From 427c33c8545138b150bb3f78253fcfcab63a7aa5 Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Tue, 18 Oct 2016 13:07:08 -0400 Subject: [PATCH 001/152] initial file merge --- gulpfile.js | 4 +- package.json | 10 +- src/js/charts/{ => charts}/ChartConfig.js | 0 .../cb-chart-grid/chart-grid-config.js | 0 .../cb-chart-grid/chart-grid-dimensions.js | 2 +- .../cb-chart-grid/draw-bar-grid.js | 2 +- .../cb-chart-grid/parse-chart-grid.js | 6 +- src/js/charts/{ => charts}/cb-charts.js | 0 src/js/charts/{ => charts}/cb-d4-mixins.js | 4 +- src/js/charts/{ => charts}/cb-xy/draw-xy.js | 4 +- src/js/charts/{ => charts}/cb-xy/parse-xy.js | 6 +- src/js/charts/{ => charts}/cb-xy/xy-config.js | 0 .../{ => charts}/cb-xy/xy-dimensions.js | 2 +- src/js/charts/{ => charts}/chart-config.js | 0 src/js/charts/charts/editors.js | 16 + src/js/charts/charts/renderers.js | 9 + src/js/charts/editors.js | 16 - src/js/charts/maps/MapConfig.js | 52 ++++ src/js/charts/maps/editors.js | 19 ++ src/js/charts/maps/map-config.js | 9 + src/js/charts/maps/mb-50/50-parse.js | 258 ++++++++++++++++ src/js/charts/maps/mb-50/mb-50-config.js | 157 ++++++++++ src/js/charts/maps/mb-50/mb-50-dimensions.js | 37 +++ src/js/charts/maps/mb-bubble/Bubble-parse.js | 285 ++++++++++++++++++ .../charts/maps/mb-bubble/mb-Bubble-config.js | 160 ++++++++++ .../maps/mb-bubble/mb-bubble-dimensions.js | 40 +++ .../maps/mb-cartogram/Cartogram-parse.js | 281 +++++++++++++++++ .../maps/mb-cartogram/mb-cartogram-config.js | 165 ++++++++++ .../mb-cartogram/mb-cartogram-dimensions.js | 37 +++ .../maps/mb-cartogram/mb-cartogram-helpers.js | 275 +++++++++++++++++ src/js/charts/maps/renderers.js | 10 + src/js/charts/renderers.js | 9 - src/js/components/ChartTypeSelector.jsx | 5 +- src/js/components/Chartbuilder.jsx | 4 +- src/js/components/RendererWrapper.jsx | 12 +- .../components/chart-grid/ChartGridBars.jsx | 2 +- .../chart-grid/ChartGridRenderer.jsx | 2 +- src/js/components/chart-grid/ChartGridXY.jsx | 2 +- src/js/components/chart-xy/XYRenderer.jsx | 6 +- src/js/components/map-50/50map.jsx | 62 ++++ src/js/components/map-50/Map50Editor.jsx | 250 +++++++++++++++ src/js/components/map-50/Map50Mobile.jsx | 88 ++++++ src/js/components/map-50/Map50Polygons.jsx | 42 +++ src/js/components/map-50/Map50Renderer.jsx | 100 ++++++ src/js/components/map-bubble/Bubblemap.jsx | 58 ++++ .../components/map-bubble/MapBubbleEditor.jsx | 189 ++++++++++++ .../components/map-bubble/MapBubbleMobile.jsx | 89 ++++++ .../map-bubble/MapBubbleRenderer.jsx | 126 ++++++++ .../components/map-cartogram/Cartogrammap.jsx | 135 +++++++++ .../map-cartogram/MapCartogramEditor.jsx | 186 ++++++++++++ .../map-cartogram/MapCartogramMobile.jsx | 93 ++++++ .../map-cartogram/MapCartogramRenderer.jsx | 145 +++++++++ src/js/components/mixins/MapEditorMixin.js | 50 +++ src/js/components/mixins/MapRendererMixin.js | 49 +++ .../shared/Cartogram_ScaleSettings.jsx | 94 ++++++ src/js/components/shared/Logo.jsx | 48 +++ .../components/shared/Map_ScaleSettings.jsx | 234 ++++++++++++++ src/js/components/svg/MapLegendSpace.jsx | 270 +++++++++++++++++ src/js/components/svg/mapFooter.jsx | 207 +++++++++++++ .../{ => chartconfig}/chart-breakpoints.js | 0 .../config/{ => chartconfig}/chart-sizes.js | 0 .../config/{ => chartconfig}/chart-style.js | 0 .../config/{ => chartconfig}/default-input.js | 0 src/js/config/mapconfig/default-input.js | 72 +++++ src/js/config/mapconfig/map-breakpoints.js | 46 +++ src/js/config/mapconfig/map-schema.js | 7 + src/js/config/mapconfig/map-sizes.js | 18 ++ src/js/config/mapconfig/map-style.js | 20 ++ .../mapfiles/county/ak-counties.json | 1 + .../mapfiles/county/al-counties.json | 1 + .../mapfiles/county/ar-counties.json | 1 + .../mapfiles/county/az-counties.json | 1 + .../mapfiles/county/ca-counties.json | 1 + .../mapfiles/county/co-counties.json | 1 + .../mapfiles/county/ct-counties.json | 1 + .../mapfiles/county/dc-counties.json | 1 + .../mapfiles/county/de-counties.json | 1 + .../mapfiles/county/fl-counties.json | 1 + .../mapfiles/county/ga-counties.json | 1 + .../mapfiles/county/hi-counties.json | 1 + .../mapfiles/county/ia-counties.json | 1 + .../mapfiles/county/id-counties.json | 1 + .../mapfiles/county/il-counties.json | 1 + .../mapfiles/county/in-counties.json | 1 + .../mapfiles/county/ks-counties.json | 1 + .../mapfiles/county/ky-counties.json | 1 + .../mapfiles/county/la-counties.json | 1 + .../mapfiles/county/ma-counties.json | 1 + .../mapfiles/county/md-counties.json | 1 + .../mapfiles/county/me-counties.json | 1 + .../mapfiles/county/mi-counties.json | 1 + .../mapfiles/county/mn-counties.json | 1 + .../mapfiles/county/mo-counties.json | 1 + .../mapfiles/county/ms-counties.json | 1 + .../mapfiles/county/mt-counties.json | 1 + .../mapfiles/county/nc-counties.json | 1 + .../mapfiles/county/nd-counties.json | 1 + .../mapfiles/county/ne-counties.json | 1 + .../mapfiles/county/nh-counties.json | 1 + .../mapfiles/county/nj-counties.json | 1 + .../mapfiles/county/nm-counties.json | 1 + .../mapfiles/county/nv-counties.json | 1 + .../mapfiles/county/ny-counties.json | 1 + .../mapfiles/county/oh-counties.json | 1 + .../mapfiles/county/ok-counties.json | 1 + .../mapfiles/county/or-counties.json | 1 + .../mapfiles/county/pa-counties.json | 1 + .../mapfiles/county/ri-counties.json | 1 + .../mapfiles/county/sc-counties.json | 1 + .../mapfiles/county/sd-counties.json | 1 + .../mapfiles/county/tn-counties.json | 1 + .../mapfiles/county/tx-counties.json | 1 + .../mapfiles/county/ut-counties.json | 1 + .../mapfiles/county/va-counties.json | 1 + .../mapfiles/county/vt-counties.json | 1 + .../mapfiles/county/wa-counties.json | 1 + .../mapfiles/county/wi-counties.json | 1 + .../mapfiles/county/wv-counties.json | 1 + .../mapfiles/county/wy-counties.json | 1 + src/js/config/mapconfig/mapfiles/nyc/nyc.json | 1 + .../mapconfig/mapfiles/us-50/us-simple.json | 1 + src/js/config/mapconfig/schemas/counties.js | 5 + src/js/config/mapconfig/schemas/nyc.js | 38 +++ src/js/config/mapconfig/schemas/us50.js | 72 +++++ src/js/config/mapconfig/states-list.js | 55 ++++ src/js/maps/MapConfig.js | 52 ++++ src/js/maps/editors.js | 19 ++ src/js/maps/map-config.js | 9 + src/js/maps/mb-50/50-parse.js | 258 ++++++++++++++++ src/js/maps/mb-50/mb-50-config.js | 157 ++++++++++ src/js/maps/mb-50/mb-50-dimensions.js | 37 +++ src/js/maps/mb-bubble/Bubble-parse.js | 285 ++++++++++++++++++ src/js/maps/mb-bubble/mb-Bubble-config.js | 160 ++++++++++ src/js/maps/mb-bubble/mb-bubble-dimensions.js | 40 +++ src/js/maps/mb-cartogram/Cartogram-parse.js | 281 +++++++++++++++++ .../maps/mb-cartogram/mb-cartogram-config.js | 165 ++++++++++ .../mb-cartogram/mb-cartogram-dimensions.js | 37 +++ .../maps/mb-cartogram/mb-cartogram-helpers.js | 275 +++++++++++++++++ src/js/maps/renderers.js | 10 + src/js/stores/ChartPropertiesStore.js | 2 +- src/js/util/ChartbuilderLocalStorageAPI.js | 4 +- src/js/util/MapbuilderLocalStorageAPI.js | 25 ++ src/js/util/colorscales.js | 129 ++++++++ src/js/util/helper.js | 2 +- src/js/util/parse-delimited-input.js | 2 + src/js/util/parse-map-type.js | 70 +++++ src/js/util/validate-data-input.js | 2 +- 147 files changed, 6774 insertions(+), 56 deletions(-) rename src/js/charts/{ => charts}/ChartConfig.js (100%) rename src/js/charts/{ => charts}/cb-chart-grid/chart-grid-config.js (100%) rename src/js/charts/{ => charts}/cb-chart-grid/chart-grid-dimensions.js (96%) rename src/js/charts/{ => charts}/cb-chart-grid/draw-bar-grid.js (96%) rename src/js/charts/{ => charts}/cb-chart-grid/parse-chart-grid.js (96%) rename src/js/charts/{ => charts}/cb-charts.js (100%) rename src/js/charts/{ => charts}/cb-d4-mixins.js (98%) rename src/js/charts/{ => charts}/cb-xy/draw-xy.js (98%) rename src/js/charts/{ => charts}/cb-xy/parse-xy.js (97%) rename src/js/charts/{ => charts}/cb-xy/xy-config.js (100%) rename src/js/charts/{ => charts}/cb-xy/xy-dimensions.js (93%) rename src/js/charts/{ => charts}/chart-config.js (100%) create mode 100644 src/js/charts/charts/editors.js create mode 100644 src/js/charts/charts/renderers.js delete mode 100644 src/js/charts/editors.js create mode 100644 src/js/charts/maps/MapConfig.js create mode 100644 src/js/charts/maps/editors.js create mode 100644 src/js/charts/maps/map-config.js create mode 100644 src/js/charts/maps/mb-50/50-parse.js create mode 100644 src/js/charts/maps/mb-50/mb-50-config.js create mode 100644 src/js/charts/maps/mb-50/mb-50-dimensions.js create mode 100644 src/js/charts/maps/mb-bubble/Bubble-parse.js create mode 100644 src/js/charts/maps/mb-bubble/mb-Bubble-config.js create mode 100644 src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js create mode 100644 src/js/charts/maps/mb-cartogram/Cartogram-parse.js create mode 100644 src/js/charts/maps/mb-cartogram/mb-cartogram-config.js create mode 100644 src/js/charts/maps/mb-cartogram/mb-cartogram-dimensions.js create mode 100644 src/js/charts/maps/mb-cartogram/mb-cartogram-helpers.js create mode 100644 src/js/charts/maps/renderers.js delete mode 100644 src/js/charts/renderers.js create mode 100644 src/js/components/map-50/50map.jsx create mode 100644 src/js/components/map-50/Map50Editor.jsx create mode 100644 src/js/components/map-50/Map50Mobile.jsx create mode 100644 src/js/components/map-50/Map50Polygons.jsx create mode 100644 src/js/components/map-50/Map50Renderer.jsx create mode 100644 src/js/components/map-bubble/Bubblemap.jsx create mode 100644 src/js/components/map-bubble/MapBubbleEditor.jsx create mode 100644 src/js/components/map-bubble/MapBubbleMobile.jsx create mode 100644 src/js/components/map-bubble/MapBubbleRenderer.jsx create mode 100644 src/js/components/map-cartogram/Cartogrammap.jsx create mode 100644 src/js/components/map-cartogram/MapCartogramEditor.jsx create mode 100644 src/js/components/map-cartogram/MapCartogramMobile.jsx create mode 100644 src/js/components/map-cartogram/MapCartogramRenderer.jsx create mode 100644 src/js/components/mixins/MapEditorMixin.js create mode 100644 src/js/components/mixins/MapRendererMixin.js create mode 100644 src/js/components/shared/Cartogram_ScaleSettings.jsx create mode 100644 src/js/components/shared/Logo.jsx create mode 100644 src/js/components/shared/Map_ScaleSettings.jsx create mode 100644 src/js/components/svg/MapLegendSpace.jsx create mode 100644 src/js/components/svg/mapFooter.jsx rename src/js/config/{ => chartconfig}/chart-breakpoints.js (100%) rename src/js/config/{ => chartconfig}/chart-sizes.js (100%) rename src/js/config/{ => chartconfig}/chart-style.js (100%) rename src/js/config/{ => chartconfig}/default-input.js (100%) create mode 100644 src/js/config/mapconfig/default-input.js create mode 100644 src/js/config/mapconfig/map-breakpoints.js create mode 100644 src/js/config/mapconfig/map-schema.js create mode 100644 src/js/config/mapconfig/map-sizes.js create mode 100644 src/js/config/mapconfig/map-style.js create mode 100644 src/js/config/mapconfig/mapfiles/county/ak-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/al-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ar-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/az-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ca-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/co-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ct-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/dc-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/de-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/fl-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ga-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/hi-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ia-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/id-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/il-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/in-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ks-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ky-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/la-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ma-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/md-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/me-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/mi-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/mn-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/mo-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ms-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/mt-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/nc-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/nd-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ne-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/nh-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/nj-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/nm-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/nv-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ny-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/oh-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ok-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/or-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/pa-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ri-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/sc-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/sd-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/tn-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/tx-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/ut-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/va-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/vt-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/wa-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/wi-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/wv-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/county/wy-counties.json create mode 100644 src/js/config/mapconfig/mapfiles/nyc/nyc.json create mode 100644 src/js/config/mapconfig/mapfiles/us-50/us-simple.json create mode 100644 src/js/config/mapconfig/schemas/counties.js create mode 100644 src/js/config/mapconfig/schemas/nyc.js create mode 100644 src/js/config/mapconfig/schemas/us50.js create mode 100644 src/js/config/mapconfig/states-list.js create mode 100644 src/js/maps/MapConfig.js create mode 100644 src/js/maps/editors.js create mode 100644 src/js/maps/map-config.js create mode 100644 src/js/maps/mb-50/50-parse.js create mode 100644 src/js/maps/mb-50/mb-50-config.js create mode 100644 src/js/maps/mb-50/mb-50-dimensions.js create mode 100644 src/js/maps/mb-bubble/Bubble-parse.js create mode 100644 src/js/maps/mb-bubble/mb-Bubble-config.js create mode 100644 src/js/maps/mb-bubble/mb-bubble-dimensions.js create mode 100644 src/js/maps/mb-cartogram/Cartogram-parse.js create mode 100644 src/js/maps/mb-cartogram/mb-cartogram-config.js create mode 100644 src/js/maps/mb-cartogram/mb-cartogram-dimensions.js create mode 100644 src/js/maps/mb-cartogram/mb-cartogram-helpers.js create mode 100644 src/js/maps/renderers.js create mode 100644 src/js/util/MapbuilderLocalStorageAPI.js create mode 100644 src/js/util/colorscales.js create mode 100644 src/js/util/parse-map-type.js diff --git a/gulpfile.js b/gulpfile.js index 8a414387..8de53b95 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -3,6 +3,7 @@ var browserSync = require("browser-sync"); var buffer = require("vinyl-buffer"); var del = require("del"); var nib = require("nib"); +var babelify = require('babelify'); var reload = browserSync.reload; // browserify @@ -62,7 +63,8 @@ gulp.task("browserify:dev", function () { debug: true, cache: {}, packageCache: {}, - fullPaths: true + fullPaths: true, + transform: [[babelify, {presets: ['es2015', 'react']}]] }; var bundler = watchify(browserify(props).transform(envify({ NODE_ENV: "dev" }))); diff --git a/package.json b/package.json index b457118f..217141f5 100644 --- a/package.json +++ b/package.json @@ -62,11 +62,19 @@ "react-addons-shallow-compare": "^0.14.7", "react-addons-update": "^0.14.7", "react-dom": "^0.14.7", + "react-d3-core": "*", + "react-d3-map-core": "*", "save-svg-as-png": "git://github.com/nsonnad/saveSvgAsPng.git#clean-svg-fonts", "sizeof": "^1.0.0", - "sugar-date": "^1.5.1" + "sugar-date": "^1.5.1", + "topojson": "^1.6.26", + "turf": "^3.0.14", + "us-abbreviations": "git://github.com/nbcnews/us-abbreviations.git" }, "devDependencies": { + "babel-preset-es2015": "6.13.2", + "babel-preset-react": "^6.11.1", + "babelify": "^7.3", "browser-sync": "2.x.x", "browserify": "^13.0.0", "browserify-shim": "^3.8.0", diff --git a/src/js/charts/ChartConfig.js b/src/js/charts/charts/ChartConfig.js similarity index 100% rename from src/js/charts/ChartConfig.js rename to src/js/charts/charts/ChartConfig.js diff --git a/src/js/charts/cb-chart-grid/chart-grid-config.js b/src/js/charts/charts/cb-chart-grid/chart-grid-config.js similarity index 100% rename from src/js/charts/cb-chart-grid/chart-grid-config.js rename to src/js/charts/charts/cb-chart-grid/chart-grid-config.js diff --git a/src/js/charts/cb-chart-grid/chart-grid-dimensions.js b/src/js/charts/charts/cb-chart-grid/chart-grid-dimensions.js similarity index 96% rename from src/js/charts/cb-chart-grid/chart-grid-dimensions.js rename to src/js/charts/charts/cb-chart-grid/chart-grid-dimensions.js index 64242e39..62555c99 100644 --- a/src/js/charts/cb-chart-grid/chart-grid-dimensions.js +++ b/src/js/charts/charts/cb-chart-grid/chart-grid-dimensions.js @@ -1,4 +1,4 @@ -var chartSizes = require("../../config/chart-sizes"); +var chartSizes = require("../../../config/chartconfig/chart-sizes"); /** * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) diff --git a/src/js/charts/cb-chart-grid/draw-bar-grid.js b/src/js/charts/charts/cb-chart-grid/draw-bar-grid.js similarity index 96% rename from src/js/charts/cb-chart-grid/draw-bar-grid.js rename to src/js/charts/charts/cb-chart-grid/draw-bar-grid.js index 9e5ef1d5..6d340e93 100644 --- a/src/js/charts/cb-chart-grid/draw-bar-grid.js +++ b/src/js/charts/charts/cb-chart-grid/draw-bar-grid.js @@ -50,7 +50,7 @@ var mixin = [ }, ]; -cb_bar_grid = d4.chart("cb-bar-grid", function() { +const cb_bar_grid = d4.chart("cb-bar-grid", function() { return d4.charts.row() .mixin(mixin) .mixout(["yAxis"]) diff --git a/src/js/charts/cb-chart-grid/parse-chart-grid.js b/src/js/charts/charts/cb-chart-grid/parse-chart-grid.js similarity index 96% rename from src/js/charts/cb-chart-grid/parse-chart-grid.js rename to src/js/charts/charts/cb-chart-grid/parse-chart-grid.js index 507f8243..8fa374e3 100644 --- a/src/js/charts/cb-chart-grid/parse-chart-grid.js +++ b/src/js/charts/charts/cb-chart-grid/parse-chart-grid.js @@ -3,9 +3,9 @@ var map = require("lodash/map"); var assign = require("lodash/assign"); var each = require("lodash/each"); -var SessionStore = require("../../stores/SessionStore"); -var dataBySeries = require("../../util/parse-data-by-series"); -var help = require("../../util/helper"); +var SessionStore = require("../../../stores/SessionStore"); +var dataBySeries = require("../../../util/parse-data-by-series"); +var help = require("../../../util/helper"); /** * see [ChartConfig#parser](#chartconfig/parser) diff --git a/src/js/charts/cb-charts.js b/src/js/charts/charts/cb-charts.js similarity index 100% rename from src/js/charts/cb-charts.js rename to src/js/charts/charts/cb-charts.js diff --git a/src/js/charts/cb-d4-mixins.js b/src/js/charts/charts/cb-d4-mixins.js similarity index 98% rename from src/js/charts/cb-d4-mixins.js rename to src/js/charts/charts/cb-d4-mixins.js index 51949bc6..30efe088 100644 --- a/src/js/charts/cb-d4-mixins.js +++ b/src/js/charts/charts/cb-d4-mixins.js @@ -1,10 +1,10 @@ -var SessionStore = require("../stores/SessionStore"); +var SessionStore = require("../../stores/SessionStore"); var separators = SessionStore.get("separators"); /** * @name cb_d4_mixins */ -mixins = { +const mixins = { /** * Render a label with a rect background to conceal what is underneath the text * @name concealer_label diff --git a/src/js/charts/cb-xy/draw-xy.js b/src/js/charts/charts/cb-xy/draw-xy.js similarity index 98% rename from src/js/charts/cb-xy/draw-xy.js rename to src/js/charts/charts/cb-xy/draw-xy.js index 57142ff5..35678a66 100644 --- a/src/js/charts/cb-xy/draw-xy.js +++ b/src/js/charts/charts/cb-xy/draw-xy.js @@ -5,9 +5,9 @@ if (process.env.NODE_ENV !== "test") { var filter = require("lodash/filter"); var each = require("lodash/each"); -var chartStyle = require("../../config/chart-style"); +var chartStyle = require("../../../config/chartconfig/chart-style"); var cb_mixins = require("../cb-d4-mixins.js"); -var help = require("../../util/helper.js"); +var help = require("../../../util/helper.js"); // TODO put this in `xy-config.js` var xy_config = { diff --git a/src/js/charts/cb-xy/parse-xy.js b/src/js/charts/charts/cb-xy/parse-xy.js similarity index 97% rename from src/js/charts/cb-xy/parse-xy.js rename to src/js/charts/charts/cb-xy/parse-xy.js index dbf909ac..50b2f33c 100644 --- a/src/js/charts/cb-xy/parse-xy.js +++ b/src/js/charts/charts/cb-xy/parse-xy.js @@ -4,9 +4,9 @@ var assign = require("lodash/assign"); var each = require("lodash/each"); var filter = require("lodash/filter"); -var dataBySeries = require("../../util/parse-data-by-series"); -var help = require("../../util/helper"); -var SessionStore = require("../../stores/SessionStore"); +var dataBySeries = require("../../../util/parse-data-by-series"); +var help = require("../../../util/helper"); +var SessionStore = require("../../../stores/SessionStore"); var scaleNames = ["primaryScale", "secondaryScale"]; diff --git a/src/js/charts/cb-xy/xy-config.js b/src/js/charts/charts/cb-xy/xy-config.js similarity index 100% rename from src/js/charts/cb-xy/xy-config.js rename to src/js/charts/charts/cb-xy/xy-config.js diff --git a/src/js/charts/cb-xy/xy-dimensions.js b/src/js/charts/charts/cb-xy/xy-dimensions.js similarity index 93% rename from src/js/charts/cb-xy/xy-dimensions.js rename to src/js/charts/charts/cb-xy/xy-dimensions.js index 42350a4b..320a69cd 100644 --- a/src/js/charts/cb-xy/xy-dimensions.js +++ b/src/js/charts/charts/cb-xy/xy-dimensions.js @@ -1,4 +1,4 @@ -var chartSizes = require("../../config/chart-sizes"); +var chartSizes = require("../../../config/chartconfig/chart-sizes"); // TODO: jsDocify this if it works diff --git a/src/js/charts/chart-config.js b/src/js/charts/charts/chart-config.js similarity index 100% rename from src/js/charts/chart-config.js rename to src/js/charts/charts/chart-config.js diff --git a/src/js/charts/charts/editors.js b/src/js/charts/charts/editors.js new file mode 100644 index 00000000..7c63de5d --- /dev/null +++ b/src/js/charts/charts/editors.js @@ -0,0 +1,16 @@ +/** + * @name editors + */ + +// Editor components for chart types, as well as their mobile override editor interfaces +module.exports = { + xy: { + Editor: require("../../components/chart-xy/XYEditor.jsx"), + MobileOverrides: require("../../components/chart-xy/XYMobile.jsx") + }, + + chartgrid: { + Editor: require("../../components/chart-grid/ChartGridEditor.jsx"), + MobileOverrides: require("../../components/chart-grid/ChartGridMobile.jsx") + } +}; diff --git a/src/js/charts/charts/renderers.js b/src/js/charts/charts/renderers.js new file mode 100644 index 00000000..88a42b5f --- /dev/null +++ b/src/js/charts/charts/renderers.js @@ -0,0 +1,9 @@ +/** + * @name renderers + */ + +// Chart renderer +module.exports = { + xy: require("../../components/chart-xy/XYRenderer.jsx"), + chartgrid: require("../../components/chart-grid/ChartGridRenderer.jsx") +}; diff --git a/src/js/charts/editors.js b/src/js/charts/editors.js deleted file mode 100644 index e4305fc2..00000000 --- a/src/js/charts/editors.js +++ /dev/null @@ -1,16 +0,0 @@ -/** - * @name editors - */ - -// Editor components for chart types, as well as their mobile override editor interfaces -module.exports = { - xy: { - Editor: require("../components/chart-xy/XYEditor.jsx"), - MobileOverrides: require("../components/chart-xy/XYMobile.jsx") - }, - - chartgrid: { - Editor: require("../components/chart-grid/ChartGridEditor.jsx"), - MobileOverrides: require("../components/chart-grid/ChartGridMobile.jsx") - } -}; diff --git a/src/js/charts/maps/MapConfig.js b/src/js/charts/maps/MapConfig.js new file mode 100644 index 00000000..42a9d9ac --- /dev/null +++ b/src/js/charts/maps/MapConfig.js @@ -0,0 +1,52 @@ +/** +* ### Chart config +* Set up a configuration object for a given chart type +* @name ChartConfig +* @class +* @property {object} settings +* @property {string} settings.displayName - How this type's name should be displayed in the interface +* @property {function} settings.parser - Func to parse input for this chart type +* @property {function} settings.calculateDimensions - Func to calculate dimensions of this chart type +* @property {object} settings.display - Static display config for this chart type, such as positioning and spacing +* @property {object} settings.defaultProps - Defaults for dynamic properties that will be used to draw the chart +*/ + +function MapConfig(settings) { + this.displayName = settings.displayName; + + /** + * Func that parses input and settings to return newly parsed `chartProps` + * @param {object} config - The parsed configuration for this chart type + * @param {object} _chartProps - Previous `chartProps` + * @param {function} callback - Function to pass new `chartProps` to upon parse completion + * @param {object} parseOpts - Additional parse options + * + * @return {Object} chartProps - Updated `chartProps` + * @memberof ChartConfig + * @instance + */ + this.parser = settings.parser; + + /** + * Func that returns an object of `{width: N, height: N}` that will determine + * dimensions of a chart + * @param {number} width - Width of container or area that will contain the chart + * @param {object} model - The `chartProps` and `metadata` of the current chart + * @param {object} chartConfig - Parsed chart configuration + * @param {boolean} enableResponsive - Should we make dimensions relative to + * container or use preset sizes + * @param {number} extraHeight - Additional height we need to account for, eg + * from wrapped text at the footer + * + * @return {Object} dimensions - Dimensions returned by calculation + * @return {number} dimensions.width + * @return {number} dimension.height + * @memberof ChartConfig + * @instance + */ + this.calculateDimensions = settings.calculateDimensions; + this.display = settings.display; + this.defaultProps = settings.defaultProps; +} + +module.exports = MapConfig; diff --git a/src/js/charts/maps/editors.js b/src/js/charts/maps/editors.js new file mode 100644 index 00000000..691309e0 --- /dev/null +++ b/src/js/charts/maps/editors.js @@ -0,0 +1,19 @@ +/** + * @name editors + */ + +// Editor components for chart types, as well as their mobile override editor interfaces +module.exports = { + map50: { + Editor: require("../../components/map-50/Map50Editor.jsx"), + MobileOverrides: require("../../components/map-50/Map50Mobile.jsx") + }, + mapcartogram: { + Editor: require("../../components/map-cartogram/MapCartogramEditor.jsx"), + MobileOverrides: require("../../components/map-cartogram/MapCartogramMobile.jsx") + }, + mapbubble: { + Editor: require("../../components/map-bubble/MapBubbleEditor.jsx"), + MobileOverrides: require("../../components/map-bubble/MapBubbleMobile.jsx") + } +}; diff --git a/src/js/charts/maps/map-config.js b/src/js/charts/maps/map-config.js new file mode 100644 index 00000000..c313d8cf --- /dev/null +++ b/src/js/charts/maps/map-config.js @@ -0,0 +1,9 @@ +// Object containing chart types and their respective configs +const mapConfig = { + map50: require('./mb-50/mb-50-config'), + mapcartogram: require('./mb-cartogram/mb-cartogram-config'), + mapbubble: require('./mb-bubble/mb-bubble-config') + +} + +module.exports = mapConfig; diff --git a/src/js/charts/maps/mb-50/50-parse.js b/src/js/charts/maps/mb-50/50-parse.js new file mode 100644 index 00000000..e38bdac1 --- /dev/null +++ b/src/js/charts/maps/mb-50/50-parse.js @@ -0,0 +1,258 @@ +import {clone, map, assign, each, filter, flatten, isEqual} from 'lodash'; + +const colorScales = require('./../../../util/colorscales'); +const dataBySeries = require("./../../../util/parse-data-by-series"); +const help = require("./../../../util/helper"); +const SessionStore = require("../../../stores/SessionStore"); + +const parseDelimInput = require("./../../../util/parse-delimited-input").parser; +const parseColumns = require("./../../../util/parse-delimited-input")._parseColumnVals; +const parseMapType = require('./../../../util/parse-map-type'); + +/** + * see [ChartConfig#parser](#chartconfig/parser) + * @see ChartConfig#parser + * @instance + * @memberof xy_config + */ + + +const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { + // Build chart settings from defaults or provided settings + + parseOpts = parseOpts || {}; + // clone so that we aren't modifying original + // this can probably be avoided by applying new settings differently + let chartProps = JSON.parse(JSON.stringify(_chartProps)); + + let bySeries = dataBySeries(chartProps.input.raw, chartProps, { + type: chartProps.input.type + }); + + const dataParsed = bySeries.data; + + let parsedInputEntries = dataParsed.entries; + const columnNames = dataParsed.columnNames; + + const scaleNames = []; + const scaleIndex = []; + + bySeries.series.forEach((d) => { + scaleIndex.push(d.name); + scaleNames.push(d.name); + }); + + const labels = chartProps._annotations.labels; + const _computed = {}; + + scaleIndex.forEach((name, i) => { + _computed[i] = { + data : [] + }; + }); + + const chartSettings = map(bySeries.series, (dataSeries, i) => { + let settings; + + if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; + else { + settings = clone(config.defaultProps.chartProps.chartSettings[0], true); + settings.colorIndex = i; + } + + if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); + else { + settings.label = settings.label || bySeries.series[i].name; + } + + const values = map(dataSeries.values, (d) => { + return +d[columnNames[2]]; + }); + + _computed[i].data = _computed[i].data.concat(values); + + return settings; + }); + + // not needed + labels.values = map(bySeries.series, (dataSeries, i) => { + + if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); + else { + return { + name: dataSeries.name + }; + } + }); + + const scale = {}; + const legends = {}; + const mobileScale = {}; + const maxPrecision = 1; + const factor = Math.pow(10, maxPrecision); + + // Calculate domain and tick values for any scales that exist + each(scaleNames, (name,j) => { + + let currScale; + const currLegend = {}; + + if (chartProps.scale) { + if (chartProps.scale[j]) currScale = chartProps.scale[j]; + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + } + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + + let domain = help.computeScaleDomain(currScale, _computed[j].data); + + assign(currScale, domain); + + if (_computed[j].data.length <= currScale.colors) currScale.colors = _computed[j].data.length; + + currScale.ticks = currScale.colors + 1; + const ticks = currScale.ticks; + + const totalcolors = currScale.colors; + + currScale.colorIndex = chartSettings[j].colorIndex; + + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); + + currScale.tickValues.forEach((v, i) => { + const tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currScale.precision) { + currScale.precision = tickPrecision; + } + currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; + + }); + + currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + + scale[j] = currScale; + chartSettings[j].scale = currScale; + + currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; + currLegend.type = currScale.type; + currLegend.label = chartSettings[j].label; + currLegend.prefix = currScale.prefix; + currLegend.suffix = currScale.suffix; + currLegend.shapes = help.constructLegendShapes(currScale.colors); + currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); + currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); + currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); + + //currLegend.spacings = help.constructLegendSpacings(); + //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); + + + legends[name] = currLegend; + chartSettings[j].legends = currLegend; + + /* + + this is not right + */ + /*if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale[name]; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: _computed.hasColumn + }); + assign(currMobile, domain); + + } + } + } else { + chartProps.mobile = {}; + } */ + + }); + + // this should all be included in one big loopa loop + + each(chartSettings, (z,g) => { + + map(bySeries.series, (dataSeries, i) => { + if (dataSeries.name === z.label) { + //chartSettings[g].scale = scale[z.label]; + if (bySeries.isNumeric) { + chartSettings[g].scale.isNumeric = bySeries.isNumeric; + + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || + clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ + } + } + }); + }); + + const firstColumn = columnNames[0]; + const allData = bySeries.series; + + let schema; + + if (priorData.length) { + + const test2 = parseMapType.first_column(priorData, firstColumn); + const test = parseMapType.first_column(allData, firstColumn); + + const test3 = help.isEqualTest(test2, test); + + if (!test3) schema = parseMapType.determine_map(firstColumn, allData); + else schema = priorSchema; + } + else { + + schema = parseMapType.determine_map(firstColumn, allData); + } + + + /* + + if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale.numericSettings; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: false + }); + assign(currMobile, domain); + + let ticks = currMobile.ticks; + currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); + each(currMobile.tickValues, function(v) { + let tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currMobile.precision) { + currMobile.precision = tickPrecision; + } + }); + } + chartProps.mobile.scale.numericSettings = currMobile; + } + } else { + chartProps.mobile = {}; + } */ + + let newChartProps = assign(chartProps, { + chartSettings: chartSettings, + data: bySeries.series, + entries: parsedInputEntries, + input: bySeries.input, + columns: columnNames, + scale: scale, + legend: legends, + schema: schema + }); + + if (callback) { + callback(newChartProps); + } else { + return newChartProps; + } +} + +module.exports = parse50; diff --git a/src/js/charts/maps/mb-50/mb-50-config.js b/src/js/charts/maps/mb-50/mb-50-config.js new file mode 100644 index 00000000..97bd481b --- /dev/null +++ b/src/js/charts/maps/mb-50/mb-50-config.js @@ -0,0 +1,157 @@ +const MapConfig = require("../MapConfig"); +let now = new Date(); + +/** + * ### Configuration of an XY chart + * @name xy_config + */ + +/** +* display +* @static +* @memberof xy_config +* @property {Nem|number} labelRectSize - Size of the legend label rectangle +* @property {Nem|number} labelXMargin - Horiz distance btwn labels +* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text +* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels +* items with colors the appropriate indexed CSS class +* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart +* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart +* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker +* @property {Nem|number} columnPaddingCoefficient - Distance relative to +* width that column charts should be from edge of the chart +* @property {Nem|number} minPaddingOuter - Minimum distance between the +* outside of a chart and a graphical element +* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn +* @property {object} aspectRatio +* @property {number|fraction} aspectRatio.wide +* @property {number|fraction} aspectRatio.longSpot +* @property {number|fraction} aspectRatio.smallSpot +* @property {object} margin - Distances btwn outer chart elements and container +* @property {object} padding - Distances btwn inner chart elements and container +*/ + + + +let display = Object.freeze({ + labelRectSize: "0.6em", + labelXMargin: "0.6em", + labelTextMargin: "0.3em", + labelRowHeight: "1.2em", + afterTitle: "1.6em", + afterLegend: "1.6em", + blockerRectOffset: "0.3em", + columnPaddingCoefficient: 0.3, + minPaddingOuter: "1em", + bottomPaddingWithoutFooter: "3em", + aspectRatio: { + wide: (6 / 7), + longSpot: (4 / 3), + smallSpot: (3 / 4) + }, + margin: { + top: "1.2em", + right: "0.8em", + bottom: "1.2em", + left: "0.8em", + maptop: "3.5em", + mapleft: "", + subtitle: "2em", + legendleft: "2em", + legendsOneRow: "23em", + legendsTwoRow: "22.5em" + }, + padding: { + top: 0, + right: 0, + bottom: "4em", + left: 0 + } +}); + +/** +* @name xy_defaultProps +* @static +* @memberof xy_config +*/ +const defaultProps = Object.freeze({ + /** + * @name chartProps + * @property {object} scale - Default settings for date and primary scales + * @property {array} data + * @property {object} input + * @property {object[]} chartSettings - Default settings for a given series (column) of data + * @property {object} extraPadding - Additional padding. This is a dynamic + * value and is mostly changed within the component itself + * @property {object} _annotations - Additional informative graphical elements + * @property {object} _annotations.labels - If labels are dragged, their + * position settings are saved here + * @property {object[]} _annotations.labels.values - Array of settings for + * dragged labels + * @property {object} mobile - Mobile-specific override settings + * @static + * @memberof xy_defaultProps + */ + chartProps: { + + data: [], + input: {}, + stylings: { + stroke:'#666', + showLegendTicks: true, + showStateLabels: false, + legendPrecision: 1 + }, + chartSettings: [ + { + colorIndex: 0, + scale: { + ticks: 5, + colors: 4, + precision: 1, + prefix: "", + suffix: "", + type: "quantize" + } + }, + ], + extraPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0 + }, + _annotations: { + labels: { + hasDragged: false, + values: [] + } + }, + mobile: {} + }, + /** + * @name metadata + * @property {string} chartType + * @property {string} size + * @static + * @memberof xy_defaultProps + */ + metadata: { + chartType: 'map50', + title: "Title", + subtitle: "Subtitle", + source: "TK", + credit: "", + size: "auto" + } +}); + +const map_config = new MapConfig({ + displayName: "US Choropleth", + parser: require("./50-parse"), + calculateDimensions: require("./mb-50-dimensions"), + display: display, + defaultProps: defaultProps +}); + +module.exports = map_config; diff --git a/src/js/charts/maps/mb-50/mb-50-dimensions.js b/src/js/charts/maps/mb-50/mb-50-dimensions.js new file mode 100644 index 00000000..3f6c104a --- /dev/null +++ b/src/js/charts/maps/mb-50/mb-50-dimensions.js @@ -0,0 +1,37 @@ +const chartSizes = require("../../../config/mapconfig/map-sizes"); + +// TODO: jsDocify this if it works + +/** + * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) + * @see ChartConfig#calculateDimensions + * @instance + * @memberof xy_config + */ +function calculate_map_dimensions(width, opts) { + let height; + let aspectRatio = opts.displayConfig.aspectRatio; + let metadata = opts.model.metadata; + + if (metadata.size == "auto" || opts.enableResponsive) { + // use current width + } else { + width = chartSizes[metadata.size].width; + } + + switch (metadata.size) { + case "auto": + height = width * aspectRatio.wide; + break; + + default: + height = width * aspectRatio.wide; + } + + return { + width: width, + height: height + opts.extraHeight + }; +} + +module.exports = calculate_map_dimensions; diff --git a/src/js/charts/maps/mb-bubble/Bubble-parse.js b/src/js/charts/maps/mb-bubble/Bubble-parse.js new file mode 100644 index 00000000..c6314dd7 --- /dev/null +++ b/src/js/charts/maps/mb-bubble/Bubble-parse.js @@ -0,0 +1,285 @@ +import {clone, map, assign, each, filter, flatten} from 'lodash'; + +const colorScales = require('./../../../util/colorscales'); +const dataBySeries = require("./../../../util/parse-data-by-series"); +const help = require("../../../util/helper"); +//const help_50 = require("./50-parse-helpers"); +const SessionStore = require("../../../stores/SessionStore"); + +const parseDelimInput = require("./../../../util/parse-delimited-input").parser; +const parseColumns = require("./../../../util/parse-delimited-input")._parseColumnVals; +const parseMapType = require('./../../../util/parse-map-type'); + +/** + * see [ChartConfig#parser](#chartconfig/parser) + * @see ChartConfig#parser + * @instance + * @memberof xy_config + */ +let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { + // Build chart settings from defaults or provided settings + + parseOpts = parseOpts || {}; + // clone so that we aren't modifying original + // this can probably be avoided by applying new settings differently + let chartProps = JSON.parse(JSON.stringify(_chartProps)); + + let bySeries = dataBySeries(chartProps.input.raw, chartProps, { + type: chartProps.input.type + }); + + const dataParsed = bySeries.data; + + let parsedInputEntries = dataParsed.entries; + const columnNames = dataParsed.columnNames; + + const scaleNames = []; + const scaleIndex = []; + + bySeries.series.forEach((d) => { + scaleIndex.push(d.name); + scaleNames.push(d.name); + }); + + /*chartProps.chartSettings.forEach((d,i) => { + if (d.label && scaleIndex[i] !== d.label) scaleNames[i] = d.label; + });*/ + + const labels = chartProps._annotations.labels; + const allColumn = true; + // check if either scale contains columns, as we'll need to zero the axis + const _computed = {}; + + scaleIndex.forEach((name, i) => { + + _computed[i] = { + data : [] + }; + + }); + + const chartSettings = map(bySeries.series, (dataSeries, i) => { + let settings; + + if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; + else { + settings = clone(config.defaultProps.chartProps.chartSettings[0], true); + settings.colorIndex = i; + } + + if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); + else { + settings.label = settings.label || bySeries.series[i].name; + } + + const values = map(dataSeries.values, (d) => { + return +d[columnNames[2]]; + }); + + _computed[i].data = _computed[i].data.concat(values); + + return settings; + }); + + // not needed + labels.values = map(bySeries.series, (dataSeries, i) => { + + if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); + else { + return { + name: dataSeries.name + }; + } + }); + + const scale = {}; + const legends = {}; + const mobileScale = {}; + const maxPrecision = 1; + const factor = Math.pow(10, maxPrecision); + + // Calculate domain and tick values for any scales that exist + each(scaleNames, (name,j) => { + + let currScale; + const currLegend = {}; + + if (chartProps.scale) { + if (chartProps.scale[j]) currScale = chartProps.scale[j]; + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + } + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + + let domain = help.computeScaleDomain(currScale, _computed[j].data); + + assign(currScale, domain); + + const totalcolors = 1; + const ticks = 2; + + currScale.ticks = ticks; + + currScale.colorIndex = chartSettings[j].colorIndex; + + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); + + currScale.tickValues.forEach((v, i) => { + const tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currScale.precision) { + currScale.precision = tickPrecision; + } + currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; + + }); + + currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + + scale[j] = currScale; + chartSettings[j].scale = currScale; + + currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; + currLegend.type = currScale.type; + currLegend.label = chartSettings[j].label; + currLegend.prefix = currScale.prefix; + currLegend.suffix = currScale.suffix; + currLegend.shapes = help.constructLegendShapes(1); + currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); + currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); + currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); + + //currLegend.spacings = help.constructLegendSpacings(); + //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); + + + legends[name] = currLegend; + chartSettings[j].legends = currLegend; + + /* + + this is not right + */ + /*if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale[name]; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: _computed.hasColumn + }); + assign(currMobile, domain); + + } + } + } else { + chartProps.mobile = {}; + } */ + + }); + + // this should all be included in one big loopa loop + + each(chartSettings, (z,g) => { + + map(bySeries.series, (dataSeries, i) => { + if (dataSeries.name === z.label) { + //chartSettings[g].scale = scale[z.label]; + if (bySeries.isNumeric) { + chartSettings[g].scale.isNumeric = bySeries.isNumeric; + + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || + clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ + } + } + }); + }); + + let allData = []; + + each(bySeries.series, (item, j) => { + + const thisItem = map(item.values, (d) => { + d.index = item.index; + return d; }); + + allData.push(thisItem); + }); + + allData = flatten(allData); + + + + const firstColumn = columnNames[0]; + const allSeriesData = bySeries.series; + + let schema; + + if (priorData.length) { + + const test2 = parseMapType.first_column(priorData, firstColumn); + const test = parseMapType.first_column(allSeriesData, firstColumn); + + const test3 = help.isEqualTest(test2, test); + + if (!test3) schema = parseMapType.determine_map(firstColumn, allSeriesData); + else schema = priorSchema; + } + else { + + schema = parseMapType.determine_map(firstColumn, allSeriesData); + } + + + + + /* + + if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale.numericSettings; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: false + }); + assign(currMobile, domain); + + let ticks = currMobile.ticks; + currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); + each(currMobile.tickValues, function(v) { + let tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currMobile.precision) { + currMobile.precision = tickPrecision; + } + }); + } + chartProps.mobile.scale.numericSettings = currMobile; + } + } else { + chartProps.mobile = {}; + } */ + + + //console.log(bySeries.series,'series'); + + let newChartProps = assign(chartProps, { + chartSettings: chartSettings, + columns: columnNames, + entries: parsedInputEntries, + input: bySeries.input, + data: bySeries.series, + alldata: allData, + scale: scale, + schema: schema, + legend: legends + }); + + if (callback) { + callback(newChartProps); + } else { + return newChartProps; + } + +} + +module.exports = parse50; diff --git a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js new file mode 100644 index 00000000..e680c7d6 --- /dev/null +++ b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js @@ -0,0 +1,160 @@ +const MapConfig = require("./../MapConfig"); +let now = new Date(); + +/** + * ### Configuration of an XY chart + * @name xy_config + */ + +/** +* display +* @static +* @memberof xy_config +* @property {Nem|number} labelRectSize - Size of the legend label rectangle +* @property {Nem|number} labelXMargin - Horiz distance btwn labels +* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text +* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels +* items with colors the appropriate indexed CSS class +* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart +* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart +* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker +* @property {Nem|number} columnPaddingCoefficient - Distance relative to +* width that column charts should be from edge of the chart +* @property {Nem|number} minPaddingOuter - Minimum distance between the +* outside of a chart and a graphical element +* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn +* @property {object} aspectRatio +* @property {number|fraction} aspectRatio.wide +* @property {number|fraction} aspectRatio.longSpot +* @property {number|fraction} aspectRatio.smallSpot +* @property {object} margin - Distances btwn outer chart elements and container +* @property {object} padding - Distances btwn inner chart elements and container +*/ + + + +let display = Object.freeze({ + labelRectSize: "0.6em", + labelXMargin: "0.6em", + labelTextMargin: "0.3em", + labelRowHeight: "1.2em", + afterTitle: "1.6em", + afterLegend: "1.6em", + blockerRectOffset: "0.3em", + columnPaddingCoefficient: 0.3, + minPaddingOuter: "1em", + bottomPaddingWithoutFooter: "3em", + aspectRatio: { + wide: (6 / 7), + longSpot: (4 / 3), + smallSpot: (3 / 4) + }, + margin: { + top: "1.2em", + right: "0.8em", + bottom: "1.2em", + left: "0.8em", + maptop: "2.5em", + mapleft: "", + subtitle: "2em", + legendleft: "2em", + legendsOneRow: "23em", + legendsTwoRow: "22.5em" + }, + padding: { + top: 0, + right: 0, + bottom: "2em", + left: 0 + } +}); + +/** +* @name xy_defaultProps +* @static +* @memberof xy_config +*/ +const defaultProps = Object.freeze({ + /** + * @name chartProps + * @property {object} scale - Default settings for date and primary scales + * @property {array} data + * @property {object} input + * @property {object[]} chartSettings - Default settings for a given series (column) of data + * @property {object} extraPadding - Additional padding. This is a dynamic + * value and is mostly changed within the component itself + * @property {object} _annotations - Additional informative graphical elements + * @property {object} _annotations.labels - If labels are dragged, their + * position settings are saved here + * @property {object[]} _annotations.labels.values - Array of settings for + * dragged labels + * @property {object} mobile - Mobile-specific override settings + * @static + * @memberof xy_defaultProps + */ + chartProps: { + + data: [], + input: {}, + stylings: { + stroke:'#fff', + radiusVal: 25, + legendMove: { + top:0, + left:0 + }, + legendText: 'Write what the legend shapes represent here' + }, + chartSettings: [ + { + colorIndex: 0, + scale: { + ticks: 5, + colors: 4, + precision: 1, + prefix: "", + suffix: "", + type: "quantize" + } + }, + ], + extraPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0 + }, + _annotations: { + labels: { + hasDragged: false, + values: [] + } + }, + mobile: {} + }, + /** + * @name metadata + * @property {string} chartType + * @property {string} size + * @static + * @memberof xy_defaultProps + */ + metadata: { + chartType: 'mapbubble', + title: "Title", + subtitle: "Subtitle", + source: "TK", + credit: "", + size: "auto" + } +}); + +const map_config = new MapConfig({ + displayName: "US Bubble", + parser: require("./Bubble-parse"), + calculateDimensions: require("./mb-bubble-dimensions"), + display: display, + defaultProps: defaultProps +}); + +module.exports = map_config; diff --git a/src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js b/src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js new file mode 100644 index 00000000..e7a1742a --- /dev/null +++ b/src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js @@ -0,0 +1,40 @@ +const chartSizes = require("../../../config/mapconfig/map-sizes"); + +// TODO: jsDocify this if it works + +/** + * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) + * @see ChartConfig#calculateDimensions + * @instance + * @memberof xy_config + */ +function calculate_map_dimensions(width, opts) { + let height; + let aspectRatio = opts.displayConfig.aspectRatio; + let metadata = opts.model.metadata; + + if (metadata.size == "auto" || opts.enableResponsive) { + // use current width + } else { + width = chartSizes[metadata.size].width; + } + + + console.log(aspectRatio,'ratio'); + + switch (metadata.size) { + case "auto": + height = width * aspectRatio.wide; + break; + + default: + height = width * aspectRatio.wide; + } + + return { + width: width, + height: height + opts.extraHeight + }; +} + +module.exports = calculate_map_dimensions; diff --git a/src/js/charts/maps/mb-cartogram/Cartogram-parse.js b/src/js/charts/maps/mb-cartogram/Cartogram-parse.js new file mode 100644 index 00000000..7ff95d19 --- /dev/null +++ b/src/js/charts/maps/mb-cartogram/Cartogram-parse.js @@ -0,0 +1,281 @@ +import {clone, map, assign, each, filter, flatten} from 'lodash'; + +const colorScales = require('./../../../util/colorscales'); +const dataBySeries = require("./../../../util/parse-data-by-series"); +const help = require("../../../util/helper"); +//const help_50 = require("./50-parse-helpers"); +const SessionStore = require("../../../stores/SessionStore"); + +const parseColumns = require("./../../../util/parse-delimited-input")._parseColumnVals; +const parseMapType = require('./../../../util/parse-map-type'); + +const parseDelimInput = require("./../../../util/parse-delimited-input").parser; + +/** + * see [ChartConfig#parser](#chartconfig/parser) + * @see ChartConfig#parser + * @instance + * @memberof xy_config + */ +let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { + // Build chart settings from defaults or provided settings + + parseOpts = parseOpts || {}; + // clone so that we aren't modifying original + // this can probably be avoided by applying new settings differently + let chartProps = JSON.parse(JSON.stringify(_chartProps)); + + let bySeries = dataBySeries(chartProps.input.raw, chartProps, { + type: chartProps.input.type + }); + + const dataParsed = bySeries.data; + + let parsedInputEntries = dataParsed.entries; + const columnNames = dataParsed.columnNames; + + const scaleNames = []; + const scaleIndex = []; + + bySeries.series.forEach((d) => { + scaleIndex.push(d.name); + scaleNames.push(d.name); + }); + + chartProps.chartSettings.forEach((d,i) => { + if (d.label && scaleIndex[i] !== d.label) scaleNames[i] = d.label; + }); + + const labels = chartProps._annotations.labels; + const allColumn = true; + // check if either scale contains columns, as we'll need to zero the axis + const _computed = {}; + + scaleIndex.forEach((name, i) => { + _computed[i] = { + data : [] + }; + }); + + const chartSettings = map(bySeries.series, (dataSeries, i) => { + let settings; + + if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; + else { + settings = clone(config.defaultProps.chartProps.chartSettings[0], true); + settings.colorIndex = i; + } + + if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); + else { + settings.label = settings.label || bySeries.series[i].name; + } + + const values = map(dataSeries.values, (d) => { + return +d[columnNames[2]]; + }); + + _computed[i].data = _computed[i].data.concat(values); + + return settings; + }); + + // not needed + labels.values = map(bySeries.series, (dataSeries, i) => { + + if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); + else { + return { + name: dataSeries.name + }; + } + }); + + const scale = {}; + const legends = {}; + const mobileScale = {}; + + const maxPrecision = 1; + const factor = Math.pow(10, maxPrecision); + + // Calculate domain and tick values for any scales that exist + each(scaleNames, (name,j) => { + + let currScale; + const currLegend = {}; + + if (chartProps.scale) { + if (chartProps.scale[j]) currScale = chartProps.scale[j]; + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + } + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + + let domain = help.computeScaleDomain(currScale, _computed[j].data); + + assign(currScale, domain); + + const totalcolors = 1; + const ticks = 2; + + currScale.ticks = ticks; + + currScale.colorIndex = chartSettings[j].colorIndex; + + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); + + currScale.tickValues.forEach((v, i) => { + const tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currScale.precision) { + currScale.precision = tickPrecision; + } + currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; + + }); + + currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + + scale[j] = currScale; + chartSettings[j].scale = currScale; + + currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; + currLegend.type = currScale.type; + currLegend.label = chartSettings[j].label; + currLegend.prefix = currScale.prefix; + currLegend.suffix = currScale.suffix; + currLegend.shapes = help.constructLegendShapes(currScale.colors); + currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); + currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); + currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); + + //currLegend.spacings = help.constructLegendSpacings(); + //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); + + + legends[name] = currLegend; + chartSettings[j].legends = currLegend; + + /* + + this is not right + */ + /*if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale[name]; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: _computed.hasColumn + }); + assign(currMobile, domain); + + } + } + } else { + chartProps.mobile = {}; + } */ + + }); + + // this should all be included in one big loopa loop + + each(chartSettings, (z,g) => { + + map(bySeries.series, (dataSeries, i) => { + if (dataSeries.name === z.label) { + //chartSettings[g].scale = scale[z.label]; + if (bySeries.isNumeric) { + chartSettings[g].scale.isNumeric = bySeries.isNumeric; + + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || + clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ + } + } + }); + }); + + let allData = []; + + each(bySeries.series, (item, j) => { + + const thisItem = map(item.values, (d) => { + d.index = item.index; + return d; }); + + allData.push(thisItem); + }); + + allData = flatten(allData); + + + const firstColumn = columnNames[0]; + const allSeriesData = bySeries.series; + + let schema; + + if (priorData.length) { + + const test2 = parseMapType.first_column(priorData, firstColumn); + const test = parseMapType.first_column(allSeriesData, firstColumn); + + const test3 = help.isEqualTest(test2, test); + + if (!test3) schema = parseMapType.determine_map(firstColumn, allSeriesData); + else schema = priorSchema; + } + else { + + schema = parseMapType.determine_map(firstColumn, allSeriesData); + } + + /* + + if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale.numericSettings; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: false + }); + assign(currMobile, domain); + + let ticks = currMobile.ticks; + currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); + each(currMobile.tickValues, function(v) { + let tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currMobile.precision) { + currMobile.precision = tickPrecision; + } + }); + } + chartProps.mobile.scale.numericSettings = currMobile; + } + } else { + chartProps.mobile = {}; + } */ + + + //console.log(bySeries.series,'series'); + + let newChartProps = assign(chartProps, { + chartSettings: chartSettings, + columns: columnNames, + entries: parsedInputEntries, + input: bySeries.input, + data: bySeries.series, + alldata: allData, + scale: scale, + schema: schema, + legend: legends + }); + + if (callback) { + callback(newChartProps); + } else { + return newChartProps; + } + +} + +module.exports = parse50; diff --git a/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js new file mode 100644 index 00000000..2ce9471e --- /dev/null +++ b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js @@ -0,0 +1,165 @@ +const MapConfig = require("../MapConfig"); +let now = new Date(); + +/** + * ### Configuration of an XY chart + * @name xy_config + */ + +/** +* display +* @static +* @memberof xy_config +* @property {Nem|number} labelRectSize - Size of the legend label rectangle +* @property {Nem|number} labelXMargin - Horiz distance btwn labels +* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text +* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels +* items with colors the appropriate indexed CSS class +* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart +* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart +* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker +* @property {Nem|number} columnPaddingCoefficient - Distance relative to +* width that column charts should be from edge of the chart +* @property {Nem|number} minPaddingOuter - Minimum distance between the +* outside of a chart and a graphical element +* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn +* @property {object} aspectRatio +* @property {number|fraction} aspectRatio.wide +* @property {number|fraction} aspectRatio.longSpot +* @property {number|fraction} aspectRatio.smallSpot +* @property {object} margin - Distances btwn outer chart elements and container +* @property {object} padding - Distances btwn inner chart elements and container +*/ + + + +let display = Object.freeze({ + labelRectSize: "0.6em", + labelXMargin: "0.6em", + labelTextMargin: "0.3em", + labelRowHeight: "1.2em", + afterTitle: "1.6em", + afterLegend: "1.6em", + blockerRectOffset: "0.3em", + columnPaddingCoefficient: 0.3, + minPaddingOuter: "1em", + bottomPaddingWithoutFooter: "3em", + aspectRatio: { + wide: (6 / 7), + longSpot: (4 / 3), + smallSpot: (3 / 4) + }, + margin: { + top: "1.2em", + right: "0.8em", + bottom: "1.2em", + left: "0.8em", + maptop: "0.5em", + mapleft: "-9.5em", + subtitle: "2em", + legendleft: "2em", + legendsOneRow: "23em", + legendsTwoRow: "22.5em" + }, + padding: { + top: 0, + right: 0, + bottom: "4em", + left: 0 + } +}); + +/** +* @name xy_defaultProps +* @static +* @memberof xy_config +*/ +const defaultProps = Object.freeze({ + /** + * @name chartProps + * @property {object} scale - Default settings for date and primary scales + * @property {array} data + * @property {object} input + * @property {object[]} chartSettings - Default settings for a given series (column) of data + * @property {object} extraPadding - Additional padding. This is a dynamic + * value and is mostly changed within the component itself + * @property {object} _annotations - Additional informative graphical elements + * @property {object} _annotations.labels - If labels are dragged, their + * position settings are saved here + * @property {object[]} _annotations.labels.values - Array of settings for + * dragged labels + * @property {object} mobile - Mobile-specific override settings + * @static + * @memberof xy_defaultProps + */ + chartProps: { + + data: [], + input: {}, + stylings: { + corners: '2', + legendText: 'Write what the legend shapes represent here', + legendMove: { + top:0, + left:0 + }, + stroke:'#aaa', + type: "grid", + radiusVal: 35, + squareWidth: '42', + cellSize: 50, + showDC: false, + showLegendTicks: false, + showStateLabels: true, + showValuesLabels: false + }, + chartSettings: [ + { + colorIndex: 0, + scale: { + prefix: "", + suffix: "", + type: "quantize" + } + }, + ], + extraPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0 + }, + _annotations: { + labels: { + hasDragged: false, + values: [] + } + }, + mobile: {} + }, + /** + * @name metadata + * @property {string} chartType + * @property {string} size + * @static + * @memberof xy_defaultProps + */ + metadata: { + chartType: 'mapCartogram', + title: "Title", + subtitle: "Subtitle", + source: "TK", + credit: "", + size: "auto" + } +}); + +const map_config = new MapConfig({ + displayName: "US Cartogram Map", + parser: require("./Cartogram-parse"), + calculateDimensions: require("./mb-cartogram-dimensions"), + display: display, + defaultProps: defaultProps +}); + +module.exports = map_config; diff --git a/src/js/charts/maps/mb-cartogram/mb-cartogram-dimensions.js b/src/js/charts/maps/mb-cartogram/mb-cartogram-dimensions.js new file mode 100644 index 00000000..3f6c104a --- /dev/null +++ b/src/js/charts/maps/mb-cartogram/mb-cartogram-dimensions.js @@ -0,0 +1,37 @@ +const chartSizes = require("../../../config/mapconfig/map-sizes"); + +// TODO: jsDocify this if it works + +/** + * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) + * @see ChartConfig#calculateDimensions + * @instance + * @memberof xy_config + */ +function calculate_map_dimensions(width, opts) { + let height; + let aspectRatio = opts.displayConfig.aspectRatio; + let metadata = opts.model.metadata; + + if (metadata.size == "auto" || opts.enableResponsive) { + // use current width + } else { + width = chartSizes[metadata.size].width; + } + + switch (metadata.size) { + case "auto": + height = width * aspectRatio.wide; + break; + + default: + height = width * aspectRatio.wide; + } + + return { + width: width, + height: height + opts.extraHeight + }; +} + +module.exports = calculate_map_dimensions; diff --git a/src/js/charts/maps/mb-cartogram/mb-cartogram-helpers.js b/src/js/charts/maps/mb-cartogram/mb-cartogram-helpers.js new file mode 100644 index 00000000..a0651eae --- /dev/null +++ b/src/js/charts/maps/mb-cartogram/mb-cartogram-helpers.js @@ -0,0 +1,275 @@ +import d3 from 'd3'; + +const colorScales = require('./../../../util/colorscales'); + +const padding = 5; + +const _gravity = (k) => { + return function(d) { + d.x += (d.x0 - d.x) * k; + d.y += (d.y0 - d.y) * k; + }; +} + +const _collideDorling = (k, nodes) => { + const q = d3.geom.quadtree(nodes); + return function(node) { + let nr = node.r + padding, + nx1 = node.x - nr, + nx2 = node.x + nr, + ny1 = node.y - nr, + ny2 = node.y + nr; + q.visit(function(quad, x1, y1, x2, y2) { + if (quad.point && (quad.point !== node)) { + let x = node.x - quad.point.x, + y = node.y - quad.point.y, + l = x * x + y * y, + r = nr + quad.point.r; + if (l < r * r) { + l = ((l = Math.sqrt(l)) - r) / l * k; + node.x -= x *= l; + node.y -= y *= l; + quad.point.x += x; + quad.point.y += y; + } + } + return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; + }); + }; +} +const _collideDemers = (k, nodes) => { + const q = d3.geom.quadtree(nodes); + return function(node) { + let nr = node.r + padding, + nx1 = node.x - nr, + nx2 = node.x + nr, + ny1 = node.y - nr, + ny2 = node.y + nr; + q.visit(function(quad, x1, y1, x2, y2) { + if (quad.point && (quad.point !== node)) { + let x = node.x - quad.point.x, + y = node.y - quad.point.y, + lx = Math.abs(x), + ly = Math.abs(y), + r = nr + quad.point.r; + if (lx < r && ly < r) { + if (lx > ly) { + lx = (lx - r) * (x < 0 ? -k : k); + node.x -= lx; + quad.point.x += lx; + } else { + ly = (ly - r) * (y < 0 ? -k : k); + node.y -= ly; + quad.point.y += ly; + } + } + } + return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; + }); + }; +} + +const enter_demers = (selection, stylings, force, data) => { + + d3.selectAll('.carto-shapes').remove(); + + selection + .append('rect') + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .attr('rx',0) + .attr('ry',0) + .style('fill',function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('class','carto-rects carto-shapes') + .call(force.drag); + + selection.selectAll('.state-values').remove(); + + selection.append('text') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .attr('dy','0.3em') + .attr('class','state-name carto-shapes') + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + +const enter_grid = (selection, stylings, force, data) => { + + d3.selectAll('.carto-shapes').remove(); + + selection.attr('transform',(d,i) => { + return 'translate('+ d.xx + ',' + d.yy +')' + }); + + selection.append('rect') + .attr("width", stylings.squareWidth) + .attr("height", stylings.squareWidth) + .attr('rx',stylings.corners) + .attr('ry',stylings.corners) + .style('fill',function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('class','carto-rects carto-shapes'); + + let adjustment = 0; + + if (stylings.showValuesLabels) { + adjustment = -2; + + selection.append('text') + .attr("x", (stylings.squareWidth / 2)) + .attr("y", 12 + (stylings.squareWidth / 2)) + .attr('dy','0.3em') + .attr('class','state-values carto-shapes') + .text((d) => d.value); + } + + selection.append('text') + .attr("x", (stylings.squareWidth / 2)) + .attr("y", adjustment + (stylings.squareWidth / 2)) + .attr('dy','0.3em') + .attr('class','state-name carto-shapes') + .text((d) => d.shp); +} + +const enter_dorling = (selection, stylings, force, data) => { + + d3.selectAll('.carto-shapes').remove(); + + selection.append('rect') + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .attr('rx', function(d) { return +d.r; }) + .attr('ry', function(d) { return +d.r; }) + .style('fill',function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('class','carto-rects carto-shapes') + .call(force.drag); + + let adjustment = 0; + + selection.selectAll('.state-values').remove(); + + selection.append('text') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .attr('dy','0.3em') + .attr('class','state-name carto-shapes') + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + + +const update_node = (selection) => { + selection.attr("transform", (d) => "translate(" + d.x + "," + d.y + ")"); +}; + + +const update_demers = (e, selection, nodes) => { + + selection.each(_gravity(e.alpha * .1)) + .each(_collideDemers(.05, nodes)) + .attr("transform", function(d) { + return "translate(" + (d.x - d.r) + "," + (d.y - d.r) + ")"; + }); +} + +const update_dorling = (e, selection, nodes) => { + + selection.each(_gravity(e.alpha * .1)) + .each(_collideDorling(.05, nodes)) + .attr("transform", function(d) { + return "translate(" + (d.x - d.r) + "," + (d.y - d.r) + ")"; + }); +} + +const switch_grid = (selection, stylings) => { + + selection.attr('transform',(d,i) => { + return 'translate('+ d.xx + ',' + d.yy +')' + }); + + selection.selectAll('rect') + .attr("width", stylings.squareWidth) + .attr("height", stylings.squareWidth) + .style('fill', function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('rx',stylings.corners) + .attr('ry',stylings.corners); + + let adjustment = 0; + + if (stylings.showValuesLabels) { + adjustment = -2; + } + + selection.selectAll('text.state-name') + .style('font-size','1.2em') + .attr("x", (stylings.squareWidth / 2)) + .attr("y", adjustment + (stylings.squareWidth / 2)) + .text((d) => d.shp); +} + + +const switch_dorling = (selection, stylings) => { + + selection.selectAll('rect') + .style('stroke',stylings.stroke) + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .style('fill',function(d) { return d.color; }) + .attr('rx', function(d) { return +d.r; }) + .attr('ry', function(d) { return +d.r; }) + + selection.selectAll('text.state-name') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .attr('dy','0.3em') + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + +const switch_demers = (selection, stylings) => { + + selection.selectAll('rect') + .style('stroke',stylings.stroke) + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .style('fill', function(d) { return d.color; }) + .attr('rx',0) + .attr('ry',0); + + selection.selectAll('text.state-name') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + + +/** + * Helper functions! + * @name helper + */ +const cartogram_helpers = Object.freeze({ + enterDemers: enter_demers, + enterDorling: enter_dorling, + enterGrid: enter_grid, + switchGrid: switch_grid, + switchDemers: switch_demers, + switchDorling: switch_dorling, + updateDemers: update_demers, + updateDorling: update_dorling, + updateNode: update_node +}); + +module.exports = cartogram_helpers; diff --git a/src/js/charts/maps/renderers.js b/src/js/charts/maps/renderers.js new file mode 100644 index 00000000..a07b99af --- /dev/null +++ b/src/js/charts/maps/renderers.js @@ -0,0 +1,10 @@ +/** + * @name renderers + */ + +// Chart renderer +module.exports = { + map50: require("../../components/map-50/50map.jsx"), + mapcartogram: require("../../components/map-cartogram/Cartogrammap.jsx"), + mapbubble: require("../../components/map-bubble/Bubblemap.jsx") +}; diff --git a/src/js/charts/renderers.js b/src/js/charts/renderers.js deleted file mode 100644 index 0e5542f8..00000000 --- a/src/js/charts/renderers.js +++ /dev/null @@ -1,9 +0,0 @@ -/** - * @name renderers - */ - -// Chart renderer -module.exports = { - xy: require("../components/chart-xy/XYRenderer.jsx"), - chartgrid: require("../components/chart-grid/ChartGridRenderer.jsx") -}; diff --git a/src/js/components/ChartTypeSelector.jsx b/src/js/components/ChartTypeSelector.jsx index 2dadefdb..d1bab5c0 100644 --- a/src/js/components/ChartTypeSelector.jsx +++ b/src/js/components/ChartTypeSelector.jsx @@ -15,7 +15,8 @@ var ChartServerActions = require("../actions/ChartServerActions"); var chartbuilderUI = require("chartbuilder-ui"); var ButtonGroup = chartbuilderUI.ButtonGroup; -var chartConfig = require("../charts/chart-config"); +var chartConfig = require("../charts/charts/chart-config"); +var mapConfig = require("../charts/maps/map-config"); /** * Select a new chart type, copying shared settings over to the new type. @@ -26,6 +27,8 @@ var ChartTypeSelctor = React.createClass({ /* Generate values for each chart type that can be used to create buttons */ getInitialState: function() { + console.log(keys(chartConfig),'hm'); + //var typesConfig = var chartTypeButtons = map(keys(chartConfig), function(chartTypeKey) { return { title: chartConfig[chartTypeKey].displayName, diff --git a/src/js/components/Chartbuilder.jsx b/src/js/components/Chartbuilder.jsx index e833db4e..3b239f61 100644 --- a/src/js/components/Chartbuilder.jsx +++ b/src/js/components/Chartbuilder.jsx @@ -34,8 +34,8 @@ var svgWrapperClassName = { }; // Associates a given chart type with its Editor and Renderer components. -var chartEditors = require("../charts/editors"); -var numColors = require("../config/chart-style").numColors; +var chartEditors = require("../charts/charts/editors"); +var numColors = require("../config/chartconfig/chart-style").numColors; /* API to localStorage that allows saving and retrieving charts */ var ChartbuilderLocalStorageAPI = require("../util/ChartbuilderLocalStorageAPI"); diff --git a/src/js/components/RendererWrapper.jsx b/src/js/components/RendererWrapper.jsx index db9008c5..c3daf948 100644 --- a/src/js/components/RendererWrapper.jsx +++ b/src/js/components/RendererWrapper.jsx @@ -23,7 +23,7 @@ var SvgText = require("./svg/SvgText.jsx"); var ChartViewActions = require("../actions/ChartViewActions"); var convertConfig = require("../util/parse-config-values"); var SessionStore = require("../stores/SessionStore"); -var breakpoints = require("../config/chart-breakpoints"); +var breakpoints = require("../config/chartconfig/chart-breakpoints"); var ChartFooter = require("./svg/ChartFooter.jsx"); /* @@ -31,9 +31,13 @@ var ChartFooter = require("./svg/ChartFooter.jsx"); * also associates a given chart type with its Editor and Renderer components. * Used here to identify the Renderer. */ -var chartConfigs = require("../charts/chart-config"); -var chartStyle = require("../config/chart-style"); -var chartRenderers = require("../charts/renderers"); +var chartConfigs = require("../charts/charts/chart-config"); +var chartStyle = require("../config/chartconfig/chart-style"); +var chartRenderers = require("../charts/charts/renderers"); + +var mapConfigs = require("../charts/maps/map-config"); +var mapStyle = require("../config/mapconfig/map-style"); +var mapRenderers = require("../charts/maps/renderers"); /** * ### RendererWrapper diff --git a/src/js/components/chart-grid/ChartGridBars.jsx b/src/js/components/chart-grid/ChartGridBars.jsx index 80521ce4..affa0eaf 100644 --- a/src/js/components/chart-grid/ChartGridBars.jsx +++ b/src/js/components/chart-grid/ChartGridBars.jsx @@ -18,7 +18,7 @@ var separators = SessionStore.get("separators"); var formatThousands = require("d3").format(separators.thousands); /* Helper functions */ -var cb_bar_grid = require("../../charts/cb-charts").cb_bar_grid; +var cb_bar_grid = require("../../charts/charts/cb-charts").cb_bar_grid; var help = require("../../util/helper.js"); /* Renderer mixins */ diff --git a/src/js/components/chart-grid/ChartGridRenderer.jsx b/src/js/components/chart-grid/ChartGridRenderer.jsx index 91f16467..48089c40 100644 --- a/src/js/components/chart-grid/ChartGridRenderer.jsx +++ b/src/js/components/chart-grid/ChartGridRenderer.jsx @@ -8,7 +8,7 @@ var React = require("react"); var PropTypes = React.PropTypes; var update = require("react-addons-update"); -var chartSizes = require("../../config/chart-sizes"); +var chartSizes = require("../../config/chartconfig/chart-sizes"); var clone = require("lodash/clone"); var assign = require("lodash/assign"); var each = require("lodash/each"); diff --git a/src/js/components/chart-grid/ChartGridXY.jsx b/src/js/components/chart-grid/ChartGridXY.jsx index 96f971f1..1d53c77c 100644 --- a/src/js/components/chart-grid/ChartGridXY.jsx +++ b/src/js/components/chart-grid/ChartGridXY.jsx @@ -14,7 +14,7 @@ var filter = require("lodash/filter"); var map = require("lodash/map"); /* Helper functions */ -var cb_xy = require("../../charts/cb-charts").cb_xy; +var cb_xy = require("../../charts/charts/cb-charts").cb_xy; var help = require("../../util/helper.js"); /* Renderer mixins */ diff --git a/src/js/components/chart-xy/XYRenderer.jsx b/src/js/components/chart-xy/XYRenderer.jsx index 1e737939..65b35d83 100644 --- a/src/js/components/chart-xy/XYRenderer.jsx +++ b/src/js/components/chart-xy/XYRenderer.jsx @@ -34,7 +34,7 @@ var SvgRectLabel = require("../svg/SvgRectLabel.jsx"); var HiddenSvg = require("../svg/HiddenSvg.jsx"); // Helpers -var cb_xy = require("../../charts/cb-charts").cb_xy; +var cb_xy = require("../../charts/charts/cb-charts").cb_xy; var help = require("../../util/helper.js"); var scaleNames = ["primaryScale", "secondaryScale"]; @@ -120,6 +120,7 @@ var XYRenderer = React.createClass({ var dimensions = this.props.dimensions; var hasTitle = (this.props.metadata.title.length > 0 && this.props.showMetadata); var yOffset = this._getYOffset(this.props, hasTitle); + let scale; // Maintain space between legend and chart area unless all legend labels // have been dragged @@ -541,6 +542,9 @@ var XYLabels = React.createClass({ var props = this.props; var dimensions = props.dimensions; var padding = computePadding(props); + let yScale_info; + let xScale_info; + let scale; var labelConfig = { xMargin: displayConfig.labelXMargin, diff --git a/src/js/components/map-50/50map.jsx b/src/js/components/map-50/50map.jsx new file mode 100644 index 00000000..cc536283 --- /dev/null +++ b/src/js/components/map-50/50map.jsx @@ -0,0 +1,62 @@ +import React from 'react'; +import update from 'react-addons-update'; +// Map + +import d3 from 'd3'; +const topojson = require('topojson'); +import PolygonCollection from './Map50Renderer.jsx'; + +const projectionFunc = require('react-d3-map-core').projection; +const geoPath = require('react-d3-map-core').geoPath; + +import ChartRendererMixin from "../mixins/MapRendererMixin.js"; + +const polygonClass = 'polygon-test'; + +const MapRenderer = React.createClass({ + + propTypes: { + chartProps: React.PropTypes.object.isRequired, + stylings: React.PropTypes.object.isRequired + }, + + render: function() { + const chartProps = this.props.chartProps; + const stylings = this.props.stylings; + + const schema = chartProps.schema.schema; + const featname = schema.feature; + console.log(topojson,'topo') + const data = topojson.feature(schema.topojson, + schema.topojson.objects[featname]); + + const projObj = { + projection: schema.proj, + scale: schema.scale, + translate: schema.translate, + precision: schema.precision + } + + const proj = projectionFunc(projObj); + const geo = geoPath(proj); + + const projection = d3.geo[schema.proj]() + .scale(proj.scale) + .translate(proj.translate); + + return ( + + ); + } +}); + +module.exports = MapRenderer; diff --git a/src/js/components/map-50/Map50Editor.jsx b/src/js/components/map-50/Map50Editor.jsx new file mode 100644 index 00000000..01936e2e --- /dev/null +++ b/src/js/components/map-50/Map50Editor.jsx @@ -0,0 +1,250 @@ +/* + * ### Editor interface for 50-state map + */ +import React, {PropTypes} from 'react'; +import update from 'react-addons-update'; +import {clone, bind, each, keys, map} from 'lodash'; +import PureRenderMixin from 'react-addons-pure-render-mixin'; + +const NumericScaleSettings = require("../shared/NumericScaleSettings.jsx"); +const Map_ScaleSettings = require("../shared/Map_ScaleSettings.jsx"); +const cx = require("classnames"); + +/* Shared Chartbuilder components */ +const DataInput = require("../shared/DataInput.jsx"); + +/* Chartbuilder UI components */ +import {ColorPicker, Dropdown, LabelledTangle, TextInput, Toggle} from 'chartbuilder-ui'; + +const colorScales = require('./../../util/colorscales'); +const MapEditorMixin = require("../mixins/MapEditorMixin.js"); + +/** + * ### Editor interface for a XY chart + * @property {object} chartProps - Properties used to draw this chart + * @property {number} numSteps - Allow the rendered component to interacted with and edited + * @instance + * @memberof editors + */ +let MapEditor = React.createClass({ + + propTypes: { + errors: PropTypes.object, + chartProps: PropTypes.shape({ + input: PropTypes.object.isRequired, + chartSettings: PropTypes.array, + entries: PropTypes.array, + data: PropTypes.array, + scale: PropTypes.object, + _annotations: PropTypes.object + }), + numSteps: PropTypes.number + }, + + mixins: [MapEditorMixin], + + getTypeOptions: function(colors) { + if (colors < 2) { + return [ + { title: "Even Breaks", content: "Even Breaks", value: "quantize" }, + { title: "Cluster", content: "Cluster", value: "cluster" } + ]; + } else { + return [ + { title: "Even Breaks", content: "Even Breaks", value: "quantize" }, + { title: "Cluster", content: "Cluster", value: "cluster" }, + { title: "Threshold", content: "Threshold", value: "threshold" } + ]; + } + }, + getDefaultProps: function() { + return { + numSteps: 4 + }; + }, + + render: function() { + let mapProps = this.props.chartProps; + /* Create a settings component for each data series (column) */ + const mapSettings = []; + + mapSettings.push( map(mapProps.chartSettings, bind(function(chartSetting, i) { + + const typeOption = this.getTypeOptions(chartSetting.scale.colors); + + return ( +
+ + + + +
+ ); + }, this))); + + //let chartProps = this.props.chartProps; + //let scaleSettings = []; + + let axisErrors = this.props.errors.messages.filter(function(e) { + return e.location === "axis"; + }); + + /* Y scale settings */ + /*mapProps.chartSettings.forEach(function(chartSetting,i) { + mapSettings.push( +
+ + + +
+ ); + });*/ + + /*if (chartProps.scale.isNumeric) { + scaleSettings.push( + + ); + }*/ + + let inputErrors = this.props.errors.messages.filter(function(e) { + return e.location === "input"; + }); + + return ( +
+
+

+ 2 + Input your data +

+ +
+
+

+ 3 + Set series options +

+ {mapSettings} +
+
+ +
+
+ ); + } + +}); + + +/** + * Series-specific settings for each column in data + * @property {boolean} allowSecondaryAxis - Should a secondary axis be allowed + * @property {object[]} chartSettings - Current settings for data series + * @property {function} onUpdate - Callback that handles new series settings + * @property {function} onUpdateReparse - Callback that handles new series settings, + * but which need to be sent back to `parse-xy` + * @property {number} numColors - Total number of possible colors + * @instance + * @memberof XYEditor + */ +const Map50_mapSettings = React.createClass({ + + propTypes: { + chartSettings: PropTypes.array, + numColors: PropTypes.number + }, + + _handleSettingsUpdate: function(ix, k, v) { + + /* Clone the array of objects so that we dont mutate existing state */ + let chartSettings = map(this.props.chartSettings, clone); + /* We need the index (ix) of the settings object to know which to update */ + chartSettings[ix][k] = v; + /* `axis` and `colorIndex` require reparsing the input and splitting it up */ + this.props.onUpdateReparse(chartSettings); + }, + + render: function() { + const chartSetting = this.props.chartSettings[this.props.index]; + const numColors = colorScales.scalesNum(); + + return ( +
+ +

+

+ +
+
+ +
+
+ +
+
+ ); + } +}); + +module.exports = MapEditor; diff --git a/src/js/components/map-50/Map50Mobile.jsx b/src/js/components/map-50/Map50Mobile.jsx new file mode 100644 index 00000000..e43aee87 --- /dev/null +++ b/src/js/components/map-50/Map50Mobile.jsx @@ -0,0 +1,88 @@ +import React, {PropTypes} from 'react'; +import update from 'react-addons-update'; +import {clone} from 'lodash'; + +var MapEditorMixin = require("../../mixins/MapEditorMixin"); +// Chartbuilder UI components +import {ButtonGroup, LabelledTangle, TextInput} from 'chartbuilder-ui'; + +var XYMobile = React.createClass({ + + mixins: [MapEditorMixin], + + _handleUpdate: function(k, v) { + var newSetting = {}; + newSetting[k] = v; + var newMobile = update(this.props.chartProps.mobile, { $merge: newSetting }); + this._handlePropUpdate("mobile", newMobile); + }, + + _handleScaleUpdate: function(k, v) { + var newSetting = {}; + newSetting[k] = v; + var newMobile = update(this.props.chartProps.mobile, { $merge: newSetting }); + this._handlePropAndReparse("mobile", newMobile); + }, + + _handleScaleReset: function() { + var mobile = clone(this.props.chartProps.mobile); + delete mobile.scale; + this._handlePropAndReparse("mobile", mobile); + }, + + render: function() { + var chartProps = this.props.chartProps; + var scaleSettings = []; + var scale = chartProps.mobile.scale || chartProps.scale; + + /* Y scale settings */ + scaleSettings.push( + + ); + + /* render a second y scale component if altAxis is specified */ + if (chartProps._numSecondaryAxis > 0) { + scaleSettings.push( + + ); + } + + return ( +
+

+ ✭ + Mobile settings +

+ + {scaleSettings} +
+ ); + } +}); + +module.exports = XYMobile; diff --git a/src/js/components/map-50/Map50Polygons.jsx b/src/js/components/map-50/Map50Polygons.jsx new file mode 100644 index 00000000..607aac51 --- /dev/null +++ b/src/js/components/map-50/Map50Polygons.jsx @@ -0,0 +1,42 @@ + +import React from 'react'; +const Polygon = require('react-d3-map-core').Polygon; + +const PolygonCollection = React.createClass({ + + propTypes: { + geoPath: React.PropTypes.func, + polygonClass: React.PropTypes.string, + onClick: React.PropTypes.func + }, + render: function() { + + const geoPath = this.props.geoPath; + const polygonClass = this.props.polygonClass; + + // override + if(this.props.onClick) { + onClick = this.props.onClick; + } + + const polygons = this.props.data.map(function (polygonData, i) { + + let polygonType = (polygonData.type) ? polygonData.type+'_' : polygonType = ''; + + return ( + + ) + }); + + return ( + {polygons} + ); + } +}); + +module.exports = PolygonCollection diff --git a/src/js/components/map-50/Map50Renderer.jsx b/src/js/components/map-50/Map50Renderer.jsx new file mode 100644 index 00000000..ab6553cd --- /dev/null +++ b/src/js/components/map-50/Map50Renderer.jsx @@ -0,0 +1,100 @@ +import React from 'react'; +import d3 from 'd3'; +import {filter} from 'lodash'; +import {centroid} from 'turf'; + +// Flux actions +const MapViewActions = require("../../actions/ChartViewActions"); + +const PolygonCollection = React.createClass({ + + propTypes: { + geoPath: React.PropTypes.func, + polygonClass: React.PropTypes.string, + onClick: React.PropTypes.func, + chartProps: React.PropTypes.object.isRequired, + stylings: React.PropTypes.object.isRequired + }, + render: function() { + + const mapSchema = this.props.schema; + + const geoPath = this.props.geoPath; + const projection = this.props.proj; + + const currSettings = this.props.chartProps.scale; + + const alldata = this.props.chartProps.data; + const columnNames = this.props.chartProps.columns; + + const showLabels = this.props.stylings.showStateLabels; + const adjustLabels = mapSchema.adjustLabels; + const translation = `translate(0,${this.props.translate.maptop})`; + + if (this.props.onClick) onClick = this.props.onClick; + + const polygonCollection = this.props.data.map((polygonData, i) => { + + let polygonType = (polygonData.type) ? polygonData.type+'_' : ''; + let thisvalue; + + alldata.forEach(function(d, j) { + if (thisvalue === undefined || !thisvalue.length) { + thisvalue = Object.assign(filter(d.values, function(o) { return mapSchema.test(o[columnNames[0]], polygonData.id); }), {index:d.index}); + } + }); + + const styles = {}; + styles.stroke = this.props.stylings.stroke; + styles.fill = (thisvalue.length) ? currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]) : '#777'; + + if (showLabels) { + + const centers = projection(centroid(polygonData).geometry.coordinates); + let attributes = {x:null, y:null}; + + if (centers) { + + const adjustStateLabels = adjustLabels(null,null,thisvalue[0][columnNames[0]]); + + attributes = { x:centers[0] + adjustStateLabels[1], + y:centers[1] + adjustStateLabels[0] + 6, + text:adjustStateLabels[2] } + } + + return ( + + + {attributes.text} + + ) + } + else { + return ( + + ) + } + }); + + return ( + {polygonCollection} + ); + } +}); + +module.exports = PolygonCollection diff --git a/src/js/components/map-bubble/Bubblemap.jsx b/src/js/components/map-bubble/Bubblemap.jsx new file mode 100644 index 00000000..db52fcaa --- /dev/null +++ b/src/js/components/map-bubble/Bubblemap.jsx @@ -0,0 +1,58 @@ +import React from 'react'; +import update from 'react-addons-update'; +import d3 from 'd3'; +// Map +const topojson = require('topojson'); + +const PolygonCollection = require('./MapBubbleRenderer.jsx'); +const projectionFunc = require('react-d3-map-core').projection; +const geoPath = require('react-d3-map-core').geoPath; + +const ChartRendererMixin = require("../mixins/MapRendererMixin.js"); + +const polygonClass = 'polygon-test'; + +let MapRenderer = React.createClass({ + + propTypes: { + chartProps: React.PropTypes.object.isRequired, + stylings: React.PropTypes.object.isRequired + }, + + render: function() { + let chartProps = this.props.chartProps; + let stylings = this.props.stylings; + + const schema = chartProps.schema.schema; + const data = topojson.feature(schema.topojson, schema.topojson.objects[schema.feature]); + + const projObj = { + projection: schema.proj, + scale: schema.scale, + translate: schema.translate, + precision: schema.precision + } + + const proj = projectionFunc(projObj); + const geo = geoPath(proj); + + const projection = d3.geo[schema.proj]() + .scale(proj.scale) + .translate(proj.translate); + + return ( + + ); + } +}); + +module.exports = MapRenderer; diff --git a/src/js/components/map-bubble/MapBubbleEditor.jsx b/src/js/components/map-bubble/MapBubbleEditor.jsx new file mode 100644 index 00000000..beb97abc --- /dev/null +++ b/src/js/components/map-bubble/MapBubbleEditor.jsx @@ -0,0 +1,189 @@ +/* + * ### Editor interface for 50-state map + */ +import React, {PropTypes} from 'react'; +import update from 'react-addons-update'; +import PureRenderMixin from 'react-addons-pure-render-mixin'; +import {clone, each, keys, map, bind} from 'lodash'; + +/* Chartbuilder UI components */ +import {ColorPicker, LabelledTangle, TextInput, Toggle} from 'chartbuilder-ui'; + +const NumericScaleSettings = require("../shared/NumericScaleSettings.jsx"); + +const Map_ScaleSettings = require("../shared/Cartogram_ScaleSettings.jsx"); +const cx = require("classnames"); +const DataInput = require("../shared/DataInput.jsx"); +const colorScales = require('./../../util/colorscales'); +const MapEditorMixin = require("../mixins/MapEditorMixin.js"); + +/** + * ### Editor interface for a XY chart + * @property {object} chartProps - Properties used to draw this chart + * @property {number} numSteps - Allow the rendered component to interacted with and edited + * @instance + * @memberof editors + */ +let MapEditor = React.createClass({ + + propTypes: { + errors: PropTypes.object, + chartProps: PropTypes.shape({ + input: PropTypes.object.isRequired, + chartSettings: PropTypes.array, + entries: PropTypes.array, + data: PropTypes.array, + scale: PropTypes.object, + _annotations: PropTypes.object + }), + numSteps: PropTypes.number + }, + + mixins: [MapEditorMixin], + + getDefaultProps: function() { + return { + numSteps: 4 + }; + }, + + render: function() { + let mapProps = this.props.chartProps; + /* Create a settings component for each data series (column) */ + const mapSettings = []; + + mapSettings.push( map(mapProps.chartSettings, bind(function(chartSetting, i) { + + return ( +
+ + + + +
+ ); + }, this)) ); + + //let chartProps = this.props.chartProps; + //let scaleSettings = []; + + let axisErrors = this.props.errors.messages.filter(function(e) { + return e.location === "axis"; + }); + + let inputErrors = this.props.errors.messages.filter(function(e) { + return e.location === "input"; + }); + + return ( +
+
+

+ 2 + Input your data +

+ +
+
+

+ 3 + Set series options +

+ {mapSettings} +
+
+ +
+
+ ); + } + +}); + + +/** + * Series-specific settings for each column in data + * @property {boolean} allowSecondaryAxis - Should a secondary axis be allowed + * @property {object[]} chartSettings - Current settings for data series + * @property {function} onUpdate - Callback that handles new series settings + * @property {function} onUpdateReparse - Callback that handles new series settings, + * but which need to be sent back to `parse-xy` + * @property {number} numColors - Total number of possible colors + * @instance + * @memberof XYEditor + */ +const MapCartogram_mapSettings = React.createClass({ + + propTypes: { + chartSettings: PropTypes.array, + numColors: PropTypes.number + }, + + _handleSettingsUpdate: function(ix, k, v) { + + /* Clone the array of objects so that we dont mutate existing state */ + let chartSettings = map(this.props.chartSettings, clone); + /* We need the index (ix) of the settings object to know which to update */ + chartSettings[ix][k] = v; + /* `axis` and `colorIndex` require reparsing the input and splitting it up */ + this.props.onUpdateReparse(chartSettings); + }, + + render: function() { + + const chartSetting = this.props.chartSettings[this.props.index]; + const numColors = colorScales.scalesNum(); + + return ( +
+ +

+

+ +
+
+ +
+
+
+
+ ); + } +}); + +module.exports = MapEditor; diff --git a/src/js/components/map-bubble/MapBubbleMobile.jsx b/src/js/components/map-bubble/MapBubbleMobile.jsx new file mode 100644 index 00000000..aadd244a --- /dev/null +++ b/src/js/components/map-bubble/MapBubbleMobile.jsx @@ -0,0 +1,89 @@ +import React, {PropTypes} from 'react'; +import update from 'react-addons-update'; +import {clone} from 'lodash'; + +var MapEditorMixin = require("../mixins/MapEditorMixin"); + +// Chartbuilder UI components +import {ButtonGroup, LabelledTangle, TextInput} from 'chartbuilder-ui'; + +var XYMobile = React.createClass({ + + mixins: [MapEditorMixin], + + _handleUpdate: function(k, v) { + var newSetting = {}; + newSetting[k] = v; + var newMobile = update(this.props.chartProps.mobile, { $merge: newSetting }); + this._handlePropUpdate("mobile", newMobile); + }, + + _handleScaleUpdate: function(k, v) { + var newSetting = {}; + newSetting[k] = v; + var newMobile = update(this.props.chartProps.mobile, { $merge: newSetting }); + this._handlePropAndReparse("mobile", newMobile); + }, + + _handleScaleReset: function() { + var mobile = clone(this.props.chartProps.mobile); + delete mobile.scale; + this._handlePropAndReparse("mobile", mobile); + }, + + render: function() { + var chartProps = this.props.chartProps; + var scaleSettings = []; + var scale = chartProps.mobile.scale || chartProps.scale; + + /* Y scale settings */ + scaleSettings.push( + + ); + + /* render a second y scale component if altAxis is specified */ + if (chartProps._numSecondaryAxis > 0) { + scaleSettings.push( + + ); + } + + return ( +
+

+ ✭ + Mobile settings +

+ + {scaleSettings} +
+ ); + } +}); + +module.exports = XYMobile; diff --git a/src/js/components/map-bubble/MapBubbleRenderer.jsx b/src/js/components/map-bubble/MapBubbleRenderer.jsx new file mode 100644 index 00000000..c32d4151 --- /dev/null +++ b/src/js/components/map-bubble/MapBubbleRenderer.jsx @@ -0,0 +1,126 @@ +import React from 'react'; +const Polygon = require('react-d3-map-core').Polygon; // https://github.com/react-d3/react-d3-map-core/blob/master/src/polygon.jsx +const convertPostaltoFIPS = require('us-abbreviations')('postal','fips'); +import {centroid} from 'turf'; + +import d3 from 'd3'; +import {filter, toNumber, assign} from 'lodash'; + +// Flux actions +const MapViewActions = require("../../actions/ChartViewActions"); + +const PolygonCollection = React.createClass({ + + propTypes: { + geoPath: React.PropTypes.func, + polygonClass: React.PropTypes.string, + onClick: React.PropTypes.func, + chartProps: React.PropTypes.object.isRequired, + stylings: React.PropTypes.object.isRequired + }, + render: function() { + + const mapSchema = this.props.schema; + + const geoPath = this.props.geoPath; + const polygonClass = this.props.polygonClass; + + const translation = `translate(0,${this.props.translate.maptop})`; + const currSettings = this.props.chartProps.scale; + + const alldata = this.props.chartProps.data; + + const showLabels = this.props.stylings.showStateLabels; + const mapStroke = this.props.stylings.stroke; + + const adjustLabels = mapSchema.adjustLabels; + const columnNames = this.props.chartProps.columns; + + const circleReturn = []; + + const projection = this.props.proj; + + if (this.props.onClick) onClick = this.props.onClick; + + const polygonCollection = this.props.data.map((polygonData, i) => { + + let polygonType = (polygonData.type) ? polygonData.type+'_' : ''; + + let thisvalue; + + alldata.forEach(function(d, j) { + if (thisvalue === undefined || !thisvalue.length) { + thisvalue = Object.assign(filter(d.values, function(o) { return mapSchema.test(o[columnNames[0]], polygonData.id); }), {index:d.index}); + } + }); + + const styles = {fill:'#E9E9E9', stroke: mapStroke}; + + const centerPoint = centroid(polygonData).geometry.coordinates; + + const centers = projection(centerPoint); + const attributes = {}; + + if (centers) { + attributes.x = centers[0]; + attributes.y = centers[1]; + } else { + attributes.x = null; + attributes.y = null; + } + + const radius = d3.scale.sqrt() + .range([0, this.props.stylings.radiusVal]); + + let renderRadius = false; + + const styles2 = {}; + + if (thisvalue.length) { + styles2.stroke = currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]); + styles2.fill = currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]); + } + else { + styles2.stroke = '#777'; + styles2.fill = '#777' + } + + assign(styles2, {fillOpacity:0.2},{strokeWidth: '1.25px'}); + + if (!thisvalue.length) return (false); + else { + const dataMax = d3.max(this.props.chartProps.alldata, function(d){ return +d[columnNames[2]]; } ); + radius.domain([0, dataMax]); + renderRadius = radius(thisvalue[0][columnNames[2]]); + } + + circleReturn.push( + + ) + + return ( + + + + ) + }); + + return ( + {polygonCollection}{circleReturn} + ); + } +}); + +module.exports = PolygonCollection diff --git a/src/js/components/map-cartogram/Cartogrammap.jsx b/src/js/components/map-cartogram/Cartogrammap.jsx new file mode 100644 index 00000000..9340d327 --- /dev/null +++ b/src/js/components/map-cartogram/Cartogrammap.jsx @@ -0,0 +1,135 @@ +import React, {Component, PropTypes} from 'react'; +import {flatten, each, clone, map} from 'lodash'; +import {centroid} from 'turf'; + +import d3 from 'd3'; +// Map + +const topojson = require('topojson'); +import update from 'react-addons-update'; + +const CartogramCollection = require('./MapCartogramRenderer.jsx'); +const ChartRendererMixin = require("../mixins/MapRendererMixin"); + +const radius = d3.scale.sqrt(); +const cartogramClass = 'cartogram-Polygons'; +const convertFipstoPostal = require('us-abbreviations')('fips','postal'); + +class MapRenderer extends React.Component{ + + constructor(props) { + super(props); + + const grid = {}; + + d3.select("#grid." + this.props.chartProps.schema.schema.name) + .text().split("\n") + .forEach(function(line, i) { + let re = /\w+/g, m; + while (m = re.exec(line)) { + grid[m[0]] = [m.index / 3, i] + } + }); + + const centroidsConst = []; + const schema = this.props.chartProps.schema.schema; + const data = topojson.feature(schema.topojson, schema.topojson.objects[schema.feature]); + + data.features.map((polygonData, i) => { + + const center = centroid(polygonData); + const id = polygonData.id < 10 ? '0' + polygonData.id.toString() : polygonData.id; + + centroidsConst.push({"type":"Feature","id":id, + "geometry":{"type":"Point","coordinates": center.geometry.coordinates}, + "properties":{"name":id} }); + }); + + this.state = { + grid: grid, + nodes: [], + centroids: centroidsConst + } + } + + render () { + + const chartProps = this.props.chartProps; + const stylings = this.props.stylings; + const schema = chartProps.schema.schema; + const grid = this.state.grid; + + const centroids = this.state.centroids; + const columnNames = this.props.chartProps.columns; + const cellSize = stylings.cellSize; + + const projection = d3.geo[schema.proj]() + .translate(schema.translate) + .scale(schema.scale); + radius.range([0, stylings.radiusVal]); + + const scales = {}; + let fillVal; + + const dataById = d3.map(chartProps.alldata, function(d) { + return schema.matchLogic(d[columnNames[0]]); }); + radius.domain([0, d3.max(chartProps.alldata, function(d){ return +d[columnNames[2]]} )]); + + let showDC = (!stylings.showDC) ? false : true; + + const nodes = centroids + .filter(function(d) { + + if (schema.name === 'states50') { + + if (showDC) return (dataById.has(schema.matchLogic(d.id)) && schema.test(d.id, d.id)); + //dc id = 11 + else return (dataById.has(schema.matchLogic(d.id)) && schema.test(d.id, d.id) && d.id != 11); + } + else return (dataById.has(schema.matchLogic(d.id)) && schema.test(d.id, d.id)); + }) + .map((d) => { + + const shp = d.id; + + const shpData = dataById.get(schema.matchLogic(shp)); + const cell = grid[shpData[columnNames[0]].replace(/\s/g, '')]; + const point = projection(d.geometry.coordinates); + + if (chartProps.chartSettings[shpData.index].scale.domain[0] === + chartProps.chartSettings[shpData.index].scale.domain[1]) { + fillVal = colorScales(chartProps.scale[shpData.index].colorIndex)[1]; + } + else fillVal = chartProps.scale[shpData.index].d3scale(shpData[columnNames[2]]); + + return { + id: +d.id, + x: 160 + point[0], y: 60 + point[1], + x0: 160 + point[0], y0: 60 + point[1], + xx: 237 + cell[0] * cellSize, yy: cell[1] * cellSize - (cellSize / 2), + r: radius(shpData[columnNames[2]]), + r0: radius(shpData[columnNames[2]]), + value: shpData[columnNames[2]], + shp: shpData.states, + color: fillVal + }; + }); + + return ( + + ); + } +}; + +MapRenderer.propTypes = { + chartProps: React.PropTypes.object.isRequired, + stylings: React.PropTypes.object.isRequired +} + +module.exports = MapRenderer; diff --git a/src/js/components/map-cartogram/MapCartogramEditor.jsx b/src/js/components/map-cartogram/MapCartogramEditor.jsx new file mode 100644 index 00000000..9a4b53fb --- /dev/null +++ b/src/js/components/map-cartogram/MapCartogramEditor.jsx @@ -0,0 +1,186 @@ +/* + * ### Editor interface for 50-state map + */ +import React, {PropTypes} from 'react'; +import PureRenderMixin from 'react-addons-pure-render-mixin'; +import update from 'react-addons-update'; + +const NumericScaleSettings = require("../shared/NumericScaleSettings.jsx"); +const Map_ScaleSettings = require("../shared/Cartogram_ScaleSettings.jsx"); + +const cx = require("classnames"); +import {bind, clone, each, keys, map} from 'lodash'; + +/* Shared Chartbuilder components */ +const DataInput = require("../shared/DataInput.jsx"); + +/* Chartbuilder UI components */ +import {ColorPicker, Dropdown, LabelledTangle, TextInput, Toggle} from 'chartbuilder-ui'; + +const colorScales = require('./../../util/colorscales'); +const MapEditorMixin = require("../mixins/MapEditorMixin.js"); + +/** + * ### Editor interface for a XY chart + * @property {object} chartProps - Properties used to draw this chart + * @property {number} numSteps - Allow the rendered component to interacted with and edited + * @instance + * @memberof editors + */ +let MapEditor = React.createClass({ + + propTypes: { + errors: PropTypes.object, + chartProps: PropTypes.shape({ + input: PropTypes.object.isRequired, + chartSettings: PropTypes.array, + entries: PropTypes.array, + data: PropTypes.array, + scale: PropTypes.object, + _annotations: PropTypes.object + }), + numSteps: PropTypes.number + }, + + mixins: [MapEditorMixin], + + getDefaultProps: function() { + return { + numSteps: 4 + }; + }, + render: function() { + let mapProps = this.props.chartProps; + /* Create a settings component for each data series (column) */ + const mapSettings = []; + + mapSettings.push(map(mapProps.chartSettings, bind(function(chartSetting, i) { + + return ( +
+ + + +
+ ); + }, this)) ); + + let axisErrors = this.props.errors.messages.filter(function(e) { + return e.location === "axis"; + }); + + let inputErrors = this.props.errors.messages.filter(function(e) { + return e.location === "input"; + }); + + return ( +
+
+

+ 2 + Input your data +

+ +
+
+

+ 3 + Set series options +

+ {mapSettings} +
+
+
+
+ ); + } +}); + + +/** + * Series-specific settings for each column in data + * @property {boolean} allowSecondaryAxis - Should a secondary axis be allowed + * @property {object[]} chartSettings - Current settings for data series + * @property {function} onUpdate - Callback that handles new series settings + * @property {function} onUpdateReparse - Callback that handles new series settings, + * but which need to be sent back to `parse-xy` + * @property {number} numColors - Total number of possible colors + * @instance + * @memberof XYEditor + */ +const MapCartogram_mapSettings = React.createClass({ + + propTypes: { + chartSettings: PropTypes.array, + numColors: PropTypes.number + }, + + _handleSettingsUpdate: function(ix, k, v) { + + /* Clone the array of objects so that we dont mutate existing state */ + let chartSettings = map(this.props.chartSettings, clone); + /* We need the index (ix) of the settings object to know which to update */ + chartSettings[ix][k] = v; + /* `axis` and `colorIndex` require reparsing the input and splitting it up */ + this.props.onUpdateReparse(chartSettings); + }, + + render: function() { + + const chartSetting = this.props.chartSettings[this.props.index]; + const numColors = colorScales.scalesNum(); + + return ( +
+ +

+

+ +
+
+ +
+
+ +
+
+ ); + } +}); + +module.exports = MapEditor; diff --git a/src/js/components/map-cartogram/MapCartogramMobile.jsx b/src/js/components/map-cartogram/MapCartogramMobile.jsx new file mode 100644 index 00000000..6c53ca6a --- /dev/null +++ b/src/js/components/map-cartogram/MapCartogramMobile.jsx @@ -0,0 +1,93 @@ +import React, {PropTypes} from 'react'; +import update from 'react-addons-update'; +import {clone} from 'lodash'; + +var MapEditorMixin = require("../mixins/MapEditorMixin"); +//var XY_yScaleSettings = require("../shared/XY_yScaleSettings.jsx"); + +// Flux stores +//var ChartViewActions = require("../../actions/ChartViewActions"); + +// Chartbuilder UI components +import {ButtonGroup, LabelledTangle, TextInput} from 'chartbuilder-ui'; + +var XYMobile = React.createClass({ + + mixins: [MapEditorMixin], + + _handleUpdate: function(k, v) { + var newSetting = {}; + newSetting[k] = v; + var newMobile = update(this.props.chartProps.mobile, { $merge: newSetting }); + this._handlePropUpdate("mobile", newMobile); + }, + + _handleScaleUpdate: function(k, v) { + var newSetting = {}; + newSetting[k] = v; + var newMobile = update(this.props.chartProps.mobile, { $merge: newSetting }); + this._handlePropAndReparse("mobile", newMobile); + }, + + _handleScaleReset: function() { + var mobile = clone(this.props.chartProps.mobile); + delete mobile.scale; + this._handlePropAndReparse("mobile", mobile); + }, + + render: function() { + var chartProps = this.props.chartProps; + var scaleSettings = []; + var scale = chartProps.mobile.scale || chartProps.scale; + + /* Y scale settings */ + scaleSettings.push( + + ); + + /* render a second y scale component if altAxis is specified */ + if (chartProps._numSecondaryAxis > 0) { + scaleSettings.push( + + ); + } + + return ( +
+

+ ✭ + Mobile settings +

+ + {scaleSettings} +
+ ); + } +}); + +module.exports = XYMobile; diff --git a/src/js/components/map-cartogram/MapCartogramRenderer.jsx b/src/js/components/map-cartogram/MapCartogramRenderer.jsx new file mode 100644 index 00000000..26411088 --- /dev/null +++ b/src/js/components/map-cartogram/MapCartogramRenderer.jsx @@ -0,0 +1,145 @@ + +import React, {PropTypes} from 'react'; +import ReactDOM from 'React-dom'; +import d3 from 'd3'; + +// Flux actions +const MapViewActions = require("../../actions/ChartViewActions"); + +// Color scales and helpers +const colorScales = require('./../../util/colorscales'); +const helperCarto = require('../../charts/maps/mb-cartogram/mb-cartogram-helpers'); + +import {filter, toNumber} from 'lodash'; + +const force = d3.layout.force() + .charge(0) + .gravity(0) + .size([650, 425]); + +let d3Nodes; + +const enterNode = (selection, stylings, data) => { + + selection.classed('node', true); + + switch(stylings.type){ + case('grid'): + helperCarto.enterGrid(selection, stylings, force, data); + break; + case('dorling'): + helperCarto.enterDorling(selection, stylings, force, data); + break; + case('demers'): + helperCarto.enterDemers(selection, stylings, force, data); + break; + } +}; + +const PolygonCollection = React.createClass({ + + propTypes: { + polygonClass: React.PropTypes.string, + onClick: React.PropTypes.func, + nodes: React.PropTypes.array, + chartProps: React.PropTypes.object.isRequired, + stylings: React.PropTypes.object.isRequired + }, + componentDidMount: function() { + + const stylings = this.props.stylings; + + d3Nodes = d3.select(ReactDOM.findDOMNode(this.refs.graph)); + + let theseNodes = d3Nodes.selectAll('.node') + .data(this.props.nodes, function (node) { return node.shp; }) + + theseNodes.enter().append('g') + .attr('class','node'); + + enterNode(theseNodes, stylings, this.props.nodes); + + theseNodes.exit().remove(); + + const d3Node = d3.select(ReactDOM.findDOMNode(this.refs.graph)).selectAll('.node'); + + + if (stylings.type !== 'grid') { + + force.on("tick", (e, i) => { + if (i > 200) force.stop(); + return (stylings.type === 'dorling') ? + helperCarto.updateDorling (e, d3Node, this.props.nodes) : + helperCarto.updateDemers (e, d3Node, this.props.nodes); + }) + .resume(); + + helperCarto.updateNode(theseNodes); + + force.nodes(this.props.nodes); + force.start(); + } + }, + componentDidUpdate: function(nextProps, nextState) { + + const stylings = this.props.stylings; + + d3Nodes = d3.select(ReactDOM.findDOMNode(this.refs.graph)); + + let theseNodes = d3Nodes.selectAll('.node') + .data(this.props.nodes, function (node) { return node.shp; }); + + d3.selectAll('.node').selectAll('*') + .data(this.props.nodes, function (node) { return node.shp; }); + + theseNodes.enter().append('g') + .attr('class','node'); + + theseNodes.exit().remove(); + + const d3Node = d3.select(ReactDOM.findDOMNode(this.refs.graph)).selectAll('.node'); + + enterNode(d3Node, stylings, this.props.nodes); + + if (stylings.type !== 'grid') { + + (stylings.type === 'dorling') ? + helperCarto.switchDorling (d3Node, stylings) : + helperCarto.switchDemers (d3Node, stylings); + + if (stylings.type !== nextProps.stylings.type + || stylings.showDC !== nextProps.stylings.showDC) { + + force.on("tick", (e, i) => { + if (i > 200) force.stop(); + return (stylings.type === 'dorling') ? + helperCarto.updateDorling (e, d3Node, this.props.nodes) : + helperCarto.updateDemers (e, d3Node, this.props.nodes); + }) + .resume(); + + force.nodes(this.props.nodes); + force.start(); + + } + else force.stop(); + } + else { + force.stop(); + helperCarto.switchGrid(d3Node, stylings) + } + }, + render: function() { + + const translation = `translate(${this.props.translate.mapleft},${this.props.translate.maptop})`; + + return ( + + ); + } +}); + +module.exports = PolygonCollection diff --git a/src/js/components/mixins/MapEditorMixin.js b/src/js/components/mixins/MapEditorMixin.js new file mode 100644 index 00000000..67695271 --- /dev/null +++ b/src/js/components/mixins/MapEditorMixin.js @@ -0,0 +1,50 @@ + +import React from 'react'; +import update from 'react-addons-update'; + +// Flux actions +const MapViewActions = require("../../actions/MapViewActions"); + +/** + * ### Functions common to chart editors + * @instance + * @memberof editors + */ +const MapEditorMixin = { + + /** + * _handlePropUpdate + * Initiate a flux action that updates a prop, that doesn't require reparsing + * @param k - `chartProp` key + * @param v - `chartProp` value + */ + _handlePropUpdate: function(k, v) { + MapViewActions.updateChartProp(k, v); + }, + + /** + * _handlePropAndReparse + * Initiate a flux action that updates a prop and then triggers a reparse + * @param k - `chartProp` key + * @param v - `chartProp` value + */ + _handlePropAndReparse: function(k, v) { + //console.info('handlePropAndReparse',k,v); + MapViewActions.updateAndReparse(k, v); + }, + + /** + * _handleStateUpdate + * Update a key in the editor component's state + * @param k - `this.state` key + * @param v - `this.state` value + */ + _handleStateUpdate: function(k, v) { + let newValue = {}; + newValue[k] = v; + this.setState(update(this.state, { $merge: newValue })); + }, + +}; + +module.exports = MapEditorMixin; diff --git a/src/js/components/mixins/MapRendererMixin.js b/src/js/components/mixins/MapRendererMixin.js new file mode 100644 index 00000000..1d592872 --- /dev/null +++ b/src/js/components/mixins/MapRendererMixin.js @@ -0,0 +1,49 @@ + +import React from 'react'; +import update from 'react-addons-update'; + +import {assign, map} from 'lodash'; + +/** + * ### Functions common to chart renderers + * @instance + * @memberof renderers + */ +const ChartRendererMixin = { + + /** + * _applySettingsToData + * Our d4 chart renderers expect any additional settings to be in the data + * that is passed to it, so we merge them in (from a separate + * `chartSettings` object). An optional `additional` parameter adds an + * arbitray object to this + * @param _chartProps - Current data and series settings + * @param additional - Optional additional object to apply + * @return {object} - Data with settings applied + */ + _applySettingsToData: function(_chartProps, additional) { + return map(_chartProps.data, function(d, i) { + let series = {}; + series.key = d.name; + if (additional) { + series = assign(series, additional); + } + return assign(series, d, _chartProps.chartSettings[i]); + }); + }, + + /** + * _handleStateUpdate + * Update a key in the renderer component's state + * @param k - `this.state` key + * @param v - `this.state` value + */ + _handleStateUpdate: function(k, v) { + let newValue = {}; + newValue[k] = v; + this.setState(update(this.state, { $merge: newValue })); + } + +}; + +module.exports = ChartRendererMixin; diff --git a/src/js/components/shared/Cartogram_ScaleSettings.jsx b/src/js/components/shared/Cartogram_ScaleSettings.jsx new file mode 100644 index 00000000..d6ecac68 --- /dev/null +++ b/src/js/components/shared/Cartogram_ScaleSettings.jsx @@ -0,0 +1,94 @@ +import React, {PropTypes} from 'React'; +import {clone, cloneDeep} from 'lodash'; + +const ScaleReset = require("./ScaleReset.jsx"); + +/* Chartbuilder UI components */ + +import {ButtonGroup, TextInput, LabelledTangle, AlertGroup} from 'chartbuilder-ui'; + +/** + * Y scale settings for XY charts. Used in both XY and chart grid, and most + * likely for future charts as well + * @instance + * @memberof editors + */ +let Map_ScaleSettings = React.createClass({ + + propTypes: { + className: PropTypes.string, + id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired, + name: PropTypes.string, + onReset: PropTypes.func, + onUpdate: PropTypes.func.isRequired, + scale: PropTypes.object, + stylings: PropTypes.object, + stepNumber: PropTypes.string, + titleOverride: PropTypes.string, + errors: PropTypes.array + }, + + _handleScaleUpdate: function(k, v) { + + let scale = cloneDeep(this.props.scale, true); + + if(k != "precision") { + scale[this.props.index].precision = 0; + } + + scale[this.props.index][k] = v; + this.props.onUpdate(scale); + }, + + _renderErrors: function() { + + if (!this.props.errors) { + return null; + } else if (this.props.errors.length === 0) { + return null; + } else { + return ( +
+ +
+ ); + } + }, + + render: function() { + + const currScale = this.props.scale[this.props.index]; + const errors = this._renderErrors(); + + let prefixSuffix = false; + + if (this.props.stylings.showLegendTicks) { + + prefixSuffix = []; + prefixSuffix.push(); + + prefixSuffix.push( + ); + } + + return ( +
+ {prefixSuffix} + {errors} +
+ ); + } +}); + +module.exports = Map_ScaleSettings; diff --git a/src/js/components/shared/Logo.jsx b/src/js/components/shared/Logo.jsx new file mode 100644 index 00000000..2e95965b --- /dev/null +++ b/src/js/components/shared/Logo.jsx @@ -0,0 +1,48 @@ +import React from 'react'; + +const logo = React.createClass({ + + render: function () { + + const styles0 = { fill : '#000000'}; + const stylesF = { fill : '#FFFFFF'}; + + const mult = 0.16; + + const translate = [this.props.transform.left / mult, (this.props.transform.bottom - 55) / mult]; + + return ( + + + + + + + + + ) + } +}); + +module.exports = logo; diff --git a/src/js/components/shared/Map_ScaleSettings.jsx b/src/js/components/shared/Map_ScaleSettings.jsx new file mode 100644 index 00000000..bebfa436 --- /dev/null +++ b/src/js/components/shared/Map_ScaleSettings.jsx @@ -0,0 +1,234 @@ +import React, {PropTypes} from 'React'; +import {clone, cloneDeep} from 'lodash'; + +const ScaleReset = require("./ScaleReset.jsx"); + +/* Chartbuilder UI components */ +import {ButtonGroup, TextInput, LabelledTangle, AlertGroup} from 'chartbuilder-ui'; +/* Available XY chart type options */ + + +/** + * Y scale settings for XY charts. Used in both XY and chart grid, and most + * likely for future charts as well + * @instance + * @memberof editors + */ +let Map_ScaleSettings = React.createClass({ + + propTypes: { + className: PropTypes.string, + id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired, + name: PropTypes.string, + onReset: PropTypes.func, + onUpdate: PropTypes.func.isRequired, + scale: PropTypes.object, + stylings: PropTypes.object, + stepNumber: PropTypes.string, + titleOverride: PropTypes.string, + errors: PropTypes.array + }, + + _handleScaleUpdate: function(k, v) { + + let scale = cloneDeep(this.props.scale, true); + + if(k != "precision") { + scale[this.props.index].precision = 0; + } + + scale[this.props.index][k] = v; + this.props.onUpdate(scale); + }, + _handleThresholdUpdate: function(k, v) { + + let scale = cloneDeep(this.props.scale, true); + + scale[this.props.index][k.key][k.iter] = v; + this.props.onUpdate(scale); + }, + + _handleDomainUpdate: function(k, v) { + let scale = cloneDeep(this.props.scale,true); + + if (k == "min") { + scale[this.props.index].domain[0] = v; + } else if (k == "max") { + scale[this.props.index].domain[1] = v; + } + + this.props.onUpdate(scale); + }, + + _renderErrors: function() { + + if (!this.props.errors) { + return null; + } else if (this.props.errors.length === 0) { + return null; + } else { + return ( +
+ +
+ ); + } + }, + + render: function() { + + const currScale = this.props.scale[this.props.index]; + const errors = this._renderErrors(); + + const thresholds = []; + let thresholdsLabel = []; + + let tangleStep; + + let prefixSuffix = false; + + // console.log(this.props.stylings,'stylings'); + + if (this.props.stylings.showLegendTicks) { + + prefixSuffix = []; + prefixSuffix.push(); + + prefixSuffix.push( + ); + } + + const range = Math.abs(currScale.domain[1] - currScale.domain[0]); + if (range <= 10) { + tangleStep = 1; + } else { + const numDigits = range.toString().length; + tangleStep = 1; + } + + if (currScale.type === 'threshold') { + + thresholdsLabel.push(
Define thresholds
); + + for (let i = 0; i < currScale.tickValues.length; i++) { + let min; + let max; + const thresholdValue = currScale.tickValues[i]; + + if ((i + 1) === currScale.tickValues.length) { + min = currScale.tickValues[i - 1] + max = currScale.tickValues[i] + 2; + } + else if (i === 0) { + thresholdsLabel = 'Threshold scales'; + min = currScale.tickValues[i] - 1; + max = currScale.tickValues[1]; + } + else { + min = currScale.tickValues[i - 1]; + max = currScale.tickValues[i + 1]; + } + + const thresholdIntent = { + key: 'tickValues', + iter: i + } + + thresholds.push() + } + } + + /* + * Figure out the amount by which to increment the tangle (drag) values: Eg + * <= 10 = 0.5 + * < 100 = 1 + * < 1000 = 10 + * < 10000 = 100 + * And so on + */ + /* + + */ + + return ( +
+ + {prefixSuffix} +
+ + + +
+ +
+
+ {thresholdsLabel} + {thresholds} + {errors} +
+ ); + } +}); + +module.exports = Map_ScaleSettings; diff --git a/src/js/components/svg/MapLegendSpace.jsx b/src/js/components/svg/MapLegendSpace.jsx new file mode 100644 index 00000000..7729ab78 --- /dev/null +++ b/src/js/components/svg/MapLegendSpace.jsx @@ -0,0 +1,270 @@ +import d3 from 'd3'; +import React, {PropTypes} from 'react'; +import ReactDom from 'react-dom'; + +const legendMargin = 5; +const groupMargin = 60; +const legendRect = 30; +const legendHeight = 16; +const legendtotal = 140; +const legendyAdjustment = 18; +const legendSecondRowwOffset = 70; +const yOffetText = legendHeight + legendyAdjustment; + + +/** + * Render a footer with the chart credit and source + * @instance + * @memberof RendererWrapper + */ +const LegendSpace = React.createClass({ + + propTypes: { + translate: PropTypes.object, + chartWidth: PropTypes.number, + className: PropTypes.string, + stylings: PropTypes.object, + metadata: PropTypes.object, + chartProps: PropTypes.object.isRequired, + }, + mountDraggyLegend: function() { + + const drag = d3.behavior.drag() + .on('drag', function (d) { + + d.x = d.x || 0; + d.y = d.y || 0; + + d.x += d3.event.dx || 0; + d.y += d3.event.dy || 0; + + d3.select(this).datum([{x:d.x,y:d.y}]) + .attr('transform', 'translate('+d.x +','+d.y+')'); + }); + + let g = d3.select('.legendsGroup'); + + if (g.size()) { + + if (!g.datum()) g.data([{x:0,y:0}]).call(drag); + + g.attr('transform', (d) => { + if (d.x === undefined) d.x = 0; + if (d.y === undefined) d.y = 0; + return 'translate('+ d.x +','+ d.y +')'; + }); + } + + }, + componentDidUpdate: function() { + this.mountDraggyLegend(); + }, + componentDidMount: function() { + this.mountDraggyLegend(); + }, + render: function() { + + const stylings = this.props.stylings; + const translate = this.props.translate; + const chartProps = this.props.chartProps; + const metadata = this.props.metadata; + + const legends = chartProps.legend; + const legendsArray = Object.keys(legends).map((k) => legends[k]); + + const showTicks = stylings.showLegendTicks; + const legendsXMargin = translate.legendleft; + + let translateLegends; + let legendheightAdjusted; + + let testTwoRow = false; + let yOffset = 0; + + if (legendsArray.length < 4) { + legendheightAdjusted = legendHeight * 1.2; + translateLegends = translate.legendsOneRow; + } + else { + testTwoRow = true; + legendheightAdjusted = legendHeight; + translateLegends = translate.legendsTwoRow; + } + + let demersdorlingRender = false; + + if (stylings.type === 'dorling' || stylings.type === 'demers' + || metadata.chartType === 'mapbubble') { + + const radius = d3.scale.sqrt().range([0, stylings.radiusVal]); + + const dataMax = d3.max(chartProps.alldata, function(d){ return +d.values; } ); + radius.domain([0, dataMax]); + + const dataCircleSm = radius(Math.round(dataMax / 10)); + const dataCirclelabelSm = Math.round(dataMax / 10); + + const dataCircleLg = radius(Math.round(dataMax / 2.2)); + const dataCirclelabelLg = Math.round(dataMax / 2.2); + + const offsetbase = -30; + const demersYOffset = offsetbase - (dataCircleLg * 2); + const demersYTextOffset = offsetbase - 2; + + const rxLg = (stylings.type === 'dorling' || metadata.chartType === 'mapbubble') ? dataCircleLg : 0; + const rxSm = (stylings.type === 'dorling' || metadata.chartType === 'mapbubble') ? dataCircleSm : 0; + + const smX = dataCircleLg - dataCircleSm; //(dataCircleLg / 2) - dataCircleSm; + const smY = (dataCircleLg * 2) - (dataCircleSm * 2); //(rxLg) - (rxSm * 2); + + const demersTransform = 'translate(' + (translate.right - 120) + ','+ demersYOffset +')'; + const demersTransformText1 = 'translate(' + (translate.right - 130) + ','+ (demersYTextOffset - 18) +')'; + const demersTransformText2 = 'translate(' + (translate.right - 130) + ','+ demersYTextOffset +')'; + + const s = stylings.legendText || ' '; + + let middle = Math.floor(s.length / 2); + const before = s.lastIndexOf(' ', middle); + const after = s.indexOf(' ', middle + 1); + + if (middle - before < after - middle) middle = before; + else middle = after; + + const legendText1 = s.substr(0, middle); + const legendText2 = s.substr(middle + 1); + + demersdorlingRender = ( + + + {dataCirclelabelLg} + + + {dataCirclelabelSm} + + + + + + + {legendText1} + + + + + {legendText2} + + + ); + } + /* + + */ + const legendRender = legendsArray.map((legendData, i) => { + + let xOffset = (i * legendtotal) + (groupMargin * i); + + if (testTwoRow && (i > 2)) { + yOffset = legendSecondRowwOffset; + xOffset = ((i - 3) * legendtotal) + (groupMargin * (i - 3)); + } + + const legendBlock = legendData.colorValues.map((thisColor, j) => { + + const styles = { + fill: thisColor || '#999' + } + const xOffetBlock = (j === 0) ? 0 : (legendData.shapes * j) + (legendMargin * j); + + return (); + }); + + const legendText = legendData.tickValues.map((thisTick, j) => { + + if (j === 0) thisTick = legendData.prefix + thisTick.toString(); + if ((j + 1) === legendData.tickValues.length) thisTick = thisTick.toString() + legendData.suffix; + + let xOffetBlock; + + if (legendData.type === 'threshold') { + xOffetBlock = (j === 0) ? legendData.shapes : (legendData.shapes * (j + 1)) + (legendMargin * (j + 1)); + } + else xOffetBlock = (j === 0) ? 0 : (legendData.shapes * j) + (legendMargin * j); + + if (legendData.tickValues.length === 2 && (legendData.tickValues[0] + === legendData.tickValues[1]) && (legendData.type !== 'threshold')) { + xOffetBlock = xOffetBlock + (legendData.shapes/2); + if (j) thisTick = false; + } + + if (showTicks) { + return ({thisTick}); + } + else return false; + + }); + + const legendLabel = ( + {`${legendData.label}`} + ); + + return ( + + + {legendLabel} + {legendBlock} + {legendText} + + ); + }); + + return ( + + {legendRender} + {demersdorlingRender} + + ); + } +}); + +module.exports = LegendSpace; diff --git a/src/js/components/svg/mapFooter.jsx b/src/js/components/svg/mapFooter.jsx new file mode 100644 index 00000000..32416973 --- /dev/null +++ b/src/js/components/svg/mapFooter.jsx @@ -0,0 +1,207 @@ +// Footer of the chart, which contains the credit and source text. +// This component is special because it must drop the source text to its own +// line when the text gets too long, and it must wrap the text when it then +// exceeds the width of the chart area. + +import React, {PropTypes} from 'react'; +import ReactDom from 'react-dom'; +import update from 'react-addons-update'; + +import SvgText from "./SvgText.jsx"; +import Logo from "./../shared/Logo.jsx"; +/** + * Render a footer with the chart credit and source + * @instance + * @memberof RendererWrapper + */ +class MapFooter extends React.Component { + + constructor(props) { + super(props); + + this._config = { + creditSourcePadding: 20, + heightPerLine: 15, + sampleString: "abcdefg hijkl mnop qrstu vwxyz 1234 56789" + } + + this.state = { + creditDimensions: { + width: 0, + height: 0 + }, + pixelsPerCharacter: 0 + }; + + this._handleStateUpdate = this._handleStateUpdate.bind(this); + } + + shouldComponentUpdate (nextProps, nextState) { + return true; + } + + _handleStateUpdate (k, v) { + let newValue = {}; + newValue[k] = v; + this.setState(update(this.state, { $merge: newValue })); + } + + _createSourceLine () { + let sourceText; + let sourceLine; + if (this.props.metadata.source && this.props.metadata.source !== "") { + sourceText = this.props.metadata.source; + } else { + sourceText = ""; + } + + if (this.props.metadata.notes && this.props.metadata.notes !== "") { + sourceLine = [sourceText, this.props.metadata.notes].join(" | "); + } else { + sourceLine = sourceText; + } + + return sourceLine; + } + + render () { + let sourceLineText = this._createSourceLine(); + let chartSource = null; + + if (sourceLineText.length > 0) { + chartSource = ( + + ); + } + + return ( + + + {chartSource} + + + ); + } +}; + +MapFooter.propTypes = { + metadata: PropTypes.object, + extraHeight: PropTypes.number, + translate: PropTypes.object, + onUpdate: PropTypes.func, + chartWidth: PropTypes.number +} + +// Credit text +const ChartCreditText = React.createClass({ + + componentDidMount: function() { + let node = ReactDom.findDOMNode(this); + let bbox = node.getBBox(); + this.props.updateState(bbox.width); + }, + + render: function() { + return ( + + ); + } +}); + +// Source text +class ChartSourceText extends React.Component{ + + constructor(props) { + super(props); + + this.state = { + ownLine: false + }; + + this._handleHeightUpdate = this._handleHeightUpdate.bind(this); + } + + _handleHeightUpdate (height) { + this.props.onUpdate(height); + } + + render () { + let _translate = this.props.translate; + let translate; + let classNameDirection; + let maxWidth; + + if (this.state.ownLine) { + translate = [_translate.left, _translate.bottom - this.props.extraHeight + this.props.heightPerLine]; + classNameDirection = "left" + maxWidth = this.props.chartWidth; + } else { + translate = [_translate.right, _translate.bottom]; + classNameDirection = "right" + maxWidth = this.props.chartWidth - this.props.creditDimensions.width - this.props.creditSourcePadding; + } + + return ( + ); + } +}; + +// Hidden element that renders the text of parent's `sampleString` and sets in +// parent state the sample string's width per character. +const HiddenPixelMeasure = React.createClass({ + + componentDidMount: function() { + let textLength = ReactDom.findDOMNode(this).getComputedTextLength(); + this.props.onUpdate(textLength / this.props.sampleString.length); + }, + + componentDidUpdate: function() { + let textLength = ReactDom.findDOMNode(this).getComputedTextLength(); + let ppc = textLength / this.props.sampleString.length; + if (ppc !== this.props.pixelsPerCharacter) { + this.props.onUpdate(ppc); + } + }, + + render: function() { + return ( + + {this.props.sampleString} + + ); + } +}); + +module.exports = MapFooter; diff --git a/src/js/config/chart-breakpoints.js b/src/js/config/chartconfig/chart-breakpoints.js similarity index 100% rename from src/js/config/chart-breakpoints.js rename to src/js/config/chartconfig/chart-breakpoints.js diff --git a/src/js/config/chart-sizes.js b/src/js/config/chartconfig/chart-sizes.js similarity index 100% rename from src/js/config/chart-sizes.js rename to src/js/config/chartconfig/chart-sizes.js diff --git a/src/js/config/chart-style.js b/src/js/config/chartconfig/chart-style.js similarity index 100% rename from src/js/config/chart-style.js rename to src/js/config/chartconfig/chart-style.js diff --git a/src/js/config/default-input.js b/src/js/config/chartconfig/default-input.js similarity index 100% rename from src/js/config/default-input.js rename to src/js/config/chartconfig/default-input.js diff --git a/src/js/config/mapconfig/default-input.js b/src/js/config/mapconfig/default-input.js new file mode 100644 index 00000000..4103f0d7 --- /dev/null +++ b/src/js/config/mapconfig/default-input.js @@ -0,0 +1,72 @@ +/** + * Tabular data that is loaded in when Mapbuilder loads initially + * @name default_input + * @memberof config + * @static + */ + +const default_input = [ + "states group values", + "Brooklyn Athletes 2", + "Manhattan Athletes 1", + "Staten Island Athletes 6", + "Queens Athletes 10", + "Bronx Athletes 20" ].join("\n"); + + +const default_input2 = [ + "states group values", + "AK Athletes 2", + "AL Athletes 1", + "AR Athletes 6", + "AZ Athletes 10", + "CA Athletes 20", + "CO Athletes 18", + "CT Athletes 8", + "DC Athletes 3", + "DE Athletes 2", + "FL Athletes 39", + "GA Athletes 14", + "HI Athletes 4", + "ID Athletes 2", + "IL Athletes 17", + "IN Athletes 13", + "IA Athletes 3", + "KS Athletes 3", + "KY Athletes 2", + "LA Athletes 3", + "ME Athletes 1", + "MD Athletes 11", + "MA Athletes 13", + "MI Athletes 10", + "MN Athletes 11", + "MS Athletes 4", + "MO Athletes 11", + "MT Athletes 0", + "NE Athletes 4", + "NV Athletes 4", + "NH Athletes 4", + "NJ Athletes 39", + "NM Athletes 2", + "NY Athletes 30", + "NC Athletes 4", + "ND Athletes 0", + "OH Athletes 13", + "OK Athletes 1", + "OR Athletes 14", + "PA Athletes 31", + "RI Athletes 4", + "SC Athletes 22", + "SD Athletes 1", + "TN Athletes 2", + "TX Athletes 33", + "UT Athletes 4", + "VT Athletes 1", + "VA Athletes 14", + "WA Athletes 16", + "WV Athletes 0", + "WI Athletes 5", + "WY Athletes 0", +].join("\n"); + +module.exports = default_input; diff --git a/src/js/config/mapconfig/map-breakpoints.js b/src/js/config/mapconfig/map-breakpoints.js new file mode 100644 index 00000000..25464ae4 --- /dev/null +++ b/src/js/config/mapconfig/map-breakpoints.js @@ -0,0 +1,46 @@ +/** + * Configuration of breakpoints for Chartbuilder renderers. + * @property {string} class_name - Applied to the renderer at this break point + * @property {number} min_size - Minimum value (most likely width) at which to + * apply this breakpoint + * @property {number} em_size - Font size at this breakpoint. This is used to + * calculate relative positioning + * @memberof config + * @static + */ +const breakpoints = [ + { + "class_name": "large", + "min_size": 900, + "em_size": 20 + }, + { + "class_name": "medium", + "min_size": 480, + "em_size": 20 + }, + { + "class_name":"small", + "min_size": 0, + "em_size": 12 + } +]; + +breakpoints.sort(function(a, b) { + return b.min_size - a.min_size; +}); + +function getBreakpointObj(enableResponsive, width) { + if (enableResponsive || !width) { + return breakpoints.filter(function(bp) { + return width > bp.min_size; + })[0]; + } else { + return breakpoints[1]; + } +} + +module.exports = { + breakpoints: breakpoints, + getBreakpointObj: getBreakpointObj +}; diff --git a/src/js/config/mapconfig/map-schema.js b/src/js/config/mapconfig/map-schema.js new file mode 100644 index 00000000..b2bc1e5b --- /dev/null +++ b/src/js/config/mapconfig/map-schema.js @@ -0,0 +1,7 @@ + +const nycSchema = require('./schemas/nyc.js'); +const us50Schema = require('./schemas/us50.js'); + +const maps = [us50Schema,nycSchema] + +module.exports = maps; diff --git a/src/js/config/mapconfig/map-sizes.js b/src/js/config/mapconfig/map-sizes.js new file mode 100644 index 00000000..d2e258a8 --- /dev/null +++ b/src/js/config/mapconfig/map-sizes.js @@ -0,0 +1,18 @@ +/** + * Default dimensions for non-responsive chart sizes. + * @name chart_sizes + * @memberof config + * @static + */ +const chart_sizes = { + card: { + width: 640, + height: 450 + }, + auto: { + width: 640, + height: 450 + } +}; + +module.exports = chart_sizes; diff --git a/src/js/config/mapconfig/map-style.js b/src/js/config/mapconfig/map-style.js new file mode 100644 index 00000000..e0fdcc46 --- /dev/null +++ b/src/js/config/mapconfig/map-style.js @@ -0,0 +1,20 @@ +/** + * Global config not specific to a chart type + * @name config + */ + +/** + * Global style config that is not specific to any one chart type + * @name chart_style + * @property {number} numColors + * @property {Nem|number} xOvertick - Font size at this breakpoint. This is used to + * @property {Nem|number} creditMargin - Distance btwn credit and the logo/text beside it + * @memberof config + * @static + */ +const chart_style = { + numColors: 11,// horizontal the distance between the yAxes and xAxis + creditMargin: "0.6em" +}; + +module.exports = chart_style; diff --git a/src/js/config/mapconfig/mapfiles/county/ak-counties.json b/src/js/config/mapconfig/mapfiles/county/ak-counties.json new file mode 100644 index 00000000..96acb228 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ak-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-179.1473399999999,51.215265027000044,179.7784800000003,71.38921046500008],"geometries":[{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02016","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02013","arcs":[[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153,154,155,156]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02130","arcs":[[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02060","arcs":[[182,183]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02070","arcs":[[[184]],[[185]],[[186]],[[187]],[[188]],[[189,190]],[[191]],[[192]],[[193]],[[194]],[[195,196,197,198,199,200]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02164","arcs":[[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[-154,222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232,233,234,-156,235,-184,236,-200,237]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02150","arcs":[[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319,-234,320,321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02110","arcs":[[[328,329]],[[330,331]],[[332]],[[333,334,335,336,337,338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351,352,353,354,355,356,357]],[[358,359]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02280","arcs":[[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383,384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461,462,463,464]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02232","arcs":[[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493,-356,-355,494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501,502,503,504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[-465,512,-329,513,-353,514]],[[515]],[[-334,516,-331,517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532,533,534,535,536]],[[537]],[[538]],[[539,540]],[[541]],[[542]],[[-338,-337,543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574,575,576,577,578]],[[579,580,581,582]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02100","arcs":[[[583]],[[584]],[[585]],[[586]],[[587]],[[-540,588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[-358,600,-359,601,-580,602]],[[603,-578,604,-582]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02220","arcs":[[[605]],[[606]],[[607]],[[608]],[[609,610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645,-384,646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[-504,656]],[[657,-502,658,-536,659]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02270","arcs":[[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679,680,681,682]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02050","arcs":[[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705,-682,706,707,708,-238,-199,709,-191,710]]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02170","arcs":[[711,712,713,714,-708,715,716,717]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02068","arcs":[[718,719,720,721,-717,722]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02020","arcs":[[[723]],[[-713,724,725,726]],[[727]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02261","arcs":[[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817,818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830,831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837,838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854,855,-725,-712,856,857,858,859]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02122","arcs":[[[860,-322]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899,-831]],[[-726,-856,900,-838,901,-818,902]],[[-321,-233,-709,-715,903]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02282","arcs":[[[904]],[[905]],[[906]],[[907]],[[908]],[[909]],[[910,911]],[[912,913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[921]],[[922]],[[923]],[[924,925,-859,926,-576,927]]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02290","arcs":[[928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,-723,-716,-707,-681,951,952,953]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02090","arcs":[[954,-721,719,-719,-951,949,-949,947,-947,945,-945,943,-943,-942,-941,939,-939]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02240","arcs":[[-857,-718,-722,-955,-938,936,-936,934,-934,932,-932,930,-930,955]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02185","arcs":[[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051,-954,1052,1053]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02188","arcs":[[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[-953,1075,1076,-1053]]]},{"type":"MultiPolygon","properties":{"name":"AK"},"id":"02180","arcs":[[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112,-1076,-952,-680,1113]]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1114]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1115]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1116]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1117]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1118]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1119]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1120]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1121]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1122]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1123]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1124]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1125]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1126]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1127]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1128]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1129]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1130]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1131]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1132]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1133]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1134]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1135]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1136]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1137]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1138]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1139]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1140]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1141]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1142]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1143]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1144]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1145]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1146]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1147]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1148]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1149]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1150]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1151]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1152]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1153]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1154]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1155]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1156]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1157]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1158]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1159]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1160]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1161]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1162]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1163]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1164]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1165]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1166]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1167]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1168]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1169]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1170]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1171]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1172]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1173]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1174]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1175]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1176]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1177]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1178]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1179]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1180]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1181]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1182]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1183]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1184]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1185]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1186]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1187]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1188]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1189]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1190]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1191]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1192]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1193]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1194]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1195]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1196]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1197]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1198]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1199]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1200]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1201]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1202]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1203]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1204]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1205]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1206]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1207]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1208]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1209]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1210]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1211]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1212]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1213]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1214]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1215]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1216]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1217]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1218]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1219]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1220]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1221]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1222]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1223]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1224]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1225]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1226]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1227]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1228]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1229]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1230]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1231]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1232]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1233]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1234]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1235]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1236]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1237]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1238]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1239]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1240]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1241]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1242]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1243]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1244]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1245]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1246]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1247]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1248]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1249]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1250]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1251]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1252]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1253]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1254]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1255]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1256]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1257]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1258]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1259]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1260]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1261]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1262]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1263]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1264]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1265]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1266]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1267]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1268]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1269]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1270]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1271]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1272]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1273]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1274]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1275]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1276]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1277]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1278]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1279]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1280]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1281]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1282]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1283]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1284]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1285]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1286]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1287]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1288]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1289]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1290]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1291]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1292]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1293]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1294]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1295]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1296]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1297]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1298]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1299]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1300]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1301]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1302]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1303]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1304]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1305]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1306]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1307]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1308]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1309]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1310]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[1311]]},{"type":"Polygon","properties":{"name":"AK"},"id":"02201","arcs":[[-463,1312]]}]},"states":{"type":"GeometryCollection","bbox":[-179.1473399999999,51.215265027000044,179.77848000000017,71.38921046500008],"geometries":[{"type":"MultiPolygon","properties":{"name":"Alaska"},"id":"02","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[89]],[[84]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[104]],[[1123]],[[1124]],[[1125]],[[105]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[106]],[[1136]],[[107]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[108]],[[109]],[[1143]],[[110]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[111]],[[112]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[113]],[[1160]],[[1161]],[[114]],[[1162]],[[115]],[[1163]],[[1164]],[[1165]],[[1166]],[[116]],[[117]],[[1167]],[[1168]],[[118]],[[1169]],[[119]],[[1170]],[[120]],[[1171]],[[121]],[[1172]],[[1173]],[[1174]],[[122]],[[123]],[[124]],[[1175]],[[1176]],[[157]],[[1177]],[[1178]],[[1179]],[[1180]],[[125]],[[1181]],[[1182]],[[126]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[127]],[[1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[128]],[[1196]],[[129]],[[130]],[[1197]],[[1198]],[[1199]],[[158]],[[1200]],[[1201]],[[159]],[[131]],[[160]],[[1202]],[[132]],[[133]],[[134]],[[1203]],[[161]],[[135]],[[162]],[[136]],[[1204]],[[137]],[[1205]],[[138]],[[1206]],[[163]],[[1207]],[[164]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[139]],[[1216]],[[165]],[[1217]],[[1218]],[[140]],[[1219]],[[166]],[[1220]],[[1221]],[[1222]],[[141]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[142]],[[167]],[[1228]],[[1229]],[[168]],[[169]],[[1230]],[[1231]],[[170]],[[143]],[[144]],[[171]],[[172]],[[1232]],[[173]],[[174]],[[145]],[[1233]],[[1234]],[[175]],[[176]],[[1235]],[[177]],[[1236]],[[178]],[[1237]],[[1238]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[201]],[[1259]],[[1260]],[[202]],[[1261]],[[203]],[[204]],[[205]],[[1262]],[[179]],[[206]],[[1263]],[[207]],[[208]],[[360]],[[1264]],[[209]],[[1265]],[[1266]],[[1267]],[[210]],[[238]],[[1268]],[[1269]],[[361]],[[362]],[[1270]],[[363]],[[180]],[[1271]],[[1272]],[[1273]],[[364]],[[365]],[[211]],[[366]],[[1274]],[[1275]],[[1276]],[[212]],[[1277]],[[1278]],[[367]],[[1279]],[[146]],[[1280]],[[1281]],[[181]],[[368]],[[369]],[[1282]],[[370]],[[1283]],[[1284]],[[1285]],[[1286]],[[239]],[[147]],[[148]],[[149]],[[371]],[[150]],[[1287]],[[372]],[[240]],[[373]],[[374]],[[1288]],[[1289]],[[375]],[[241]],[[376]],[[242]],[[377]],[[243]],[[378]],[[379]],[[244]],[[1290]],[[380]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[213]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[381]],[[1303]],[[1304]],[[245]],[[1305]],[[1306]],[[1307]],[[1308]],[[246]],[[382]],[[1309]],[[1310]],[[214]],[[215]],[[385]],[[386]],[[1311]],[[387]],[[216]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[217]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[247]],[[248]],[[218]],[[414]],[[415]],[[416]],[[417]],[[249]],[[418]],[[419]],[[420]],[[250]],[[421]],[[85]],[[422]],[[423]],[[219]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[251]],[[151]],[[152]],[[431]],[[252]],[[253]],[[605]],[[254]],[[606]],[[607]],[[432]],[[433]],[[255]],[[608]],[[609,610]],[[611]],[[434]],[[435]],[[220]],[[436]],[[437]],[[612]],[[438]],[[613]],[[614]],[[439]],[[615]],[[616]],[[617]],[[618]],[[440]],[[441]],[[221]],[[442]],[[619]],[[443]],[[444]],[[445]],[[620]],[[446]],[[447]],[[256]],[[448]],[[257]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[223]],[[455]],[[456]],[[621]],[[258]],[[224]],[[622]],[[623]],[[624]],[[225]],[[457]],[[458]],[[625]],[[226]],[[86]],[[626]],[[227]],[[459]],[[627]],[[228]],[[229]],[[628]],[[629]],[[460]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[465]],[[636]],[[87]],[[259]],[[466]],[[637]],[[260]],[[638]],[[467]],[[88]],[[468]],[[469]],[[639]],[[470]],[[471]],[[640]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[641]],[[261]],[[642]],[[262]],[[263]],[[264]],[[265]],[[266]],[[643]],[[479]],[[644]],[[267]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[268]],[[645,384,646]],[[647]],[[648]],[[649]],[[650]],[[269]],[[270]],[[271]],[[272]],[[651]],[[490]],[[652]],[[273]],[[653]],[[274]],[[491]],[[275]],[[654]],[[276]],[[277]],[[278]],[[279]],[[492]],[[280]],[[655]],[[281]],[[495]],[[282]],[[496]],[[497]],[[283]],[[498]],[[499]],[[284]],[[285]],[[286]],[[287]],[[288]],[[500]],[[289]],[[290]],[[291]],[[292]],[[293]],[[505]],[[506]],[[294]],[[507]],[[295]],[[508]],[[509]],[[510]],[[511]],[[296]],[[515]],[[518]],[[583]],[[332]],[[519]],[[520]],[[521]],[[230]],[[584]],[[522]],[[523]],[[585]],[[524]],[[586]],[[525]],[[526]],[[587]],[[297]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532,533,534,659,657,502,656,504,658,536]],[[298]],[[537]],[[538]],[[299]],[[540,588]],[[300]],[[339]],[[301]],[[541]],[[340]],[[341]],[[302]],[[303]],[[342]],[[542]],[[304]],[[305]],[[338,516,331,517,334,335,543]],[[306]],[[307]],[[308]],[[309]],[[343]],[[310]],[[311]],[[544]],[[344]],[[545]],[[546]],[[312]],[[313]],[[547]],[[345]],[[548]],[[549]],[[550]],[[346]],[[551]],[[552]],[[553]],[[554]],[[555]],[[683]],[[347]],[[314]],[[184]],[[556]],[[589]],[[590]],[[557]],[[591]],[[315]],[[185]],[[592]],[[558]],[[593]],[[559]],[[316]],[[317]],[[348]],[[560]],[[318]],[[561]],[[562]],[[563]],[[349]],[[564]],[[565]],[[186]],[[566]],[[187]],[[567]],[[568]],[[569]],[[570]],[[188]],[[191]],[[350]],[[192]],[[193]],[[322]],[[571]],[[572]],[[323]],[[324]],[[573]],[[325]],[[231]],[[326]],[[327]],[[861]],[[594]],[[595]],[[596]],[[597]],[[862]],[[598]],[[194]],[[863]],[[904]],[[905]],[[906]],[[684]],[[864]],[[865]],[[599]],[[866]],[[867]],[[907]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[908]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[909]],[[910,911]],[[881]],[[912,913]],[[882]],[[914]],[[915]],[[916]],[[883]],[[917]],[[918]],[[884]],[[885]],[[886]],[[919]],[[887]],[[888]],[[685]],[[889]],[[890]],[[920]],[[921]],[[891]],[[892]],[[686]],[[687]],[[688]],[[893]],[[689]],[[690]],[[691]],[[728]],[[692]],[[894]],[[895]],[[896]],[[693]],[[922]],[[729]],[[923]],[[694]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[897]],[[739]],[[740]],[[695]],[[696]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[697]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[898]],[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[698]],[[819]],[[699]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[700]],[[826]],[[827]],[[828]],[[829]],[[899,831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[701]],[[702]],[[847]],[[848]],[[849]],[[850]],[[851]],[[703]],[[704]],[[852]],[[853]],[[723]],[[660]],[[727]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[1077]],[[1078]],[[677]],[[678]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1054]],[[1099]],[[1100]],[[1055]],[[1056]],[[1101]],[[1057]],[[1058]],[[1059]],[[1102]],[[1060]],[[1061]],[[1062]],[[1063]],[[1103]],[[1104]],[[1064]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1065]],[[1111]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[574,927,924,925,859,854,900,838,901,818,902,726,713,903,860,319,234,156,222,154,235,182,236,200,195,196,197,709,189,710,705,682,1113,1112,1076,1053,1051,928,955,857,926,576,604,582,602,351,514,461,1312,463,512,329,513,353,494,493,356,600,359,601,580,603,578]]]}]}},"arcs":[[[13,428],[1,-3],[1,1],[1,-20],[1,-15],[1,-18],[1,-19],[1,-15],[0,-17],[0,-18],[0,-15],[0,-17],[1,-19],[1,-14],[-1,-10],[-1,-6],[1,-12],[1,-2],[2,-8],[1,-12],[0,-15],[-1,-10],[-1,-1],[-1,7],[-1,6],[-2,-12],[-2,-15],[-1,-17],[0,-16],[-1,-20],[0,-20],[-1,-22],[-2,-8],[-1,0],[-1,-6],[-2,-6],[-3,-34],[0,4],[0,12],[1,7],[-1,13],[0,12],[-1,2],[-1,15],[-1,13],[0,13],[0,16],[0,11],[-1,8],[1,8],[0,16],[0,21],[1,19],[0,16],[0,17],[0,13],[-1,14],[-1,8],[-1,2],[1,16],[-1,14],[0,15],[1,22],[2,20],[1,4],[1,-6],[0,7],[0,17],[1,19],[0,-5],[1,19],[2,11],[0,11],[2,4],[1,-9],[1,9]],[[54,870],[0,-7],[1,4],[2,-9],[2,-12],[1,-7],[1,-4],[1,-15],[1,-18],[0,-21],[0,-11],[1,-4],[0,-12],[1,-12],[1,-16],[1,-14],[-2,0],[0,-13],[0,-19],[1,-18],[0,-20],[1,-18],[-2,-4],[-2,6],[-1,8],[-2,3],[-2,6],[-1,2],[-1,13],[-2,9],[-1,-5],[-1,-6],[0,-18],[2,-23],[0,-33],[-1,-6],[-1,-11],[-1,-10],[0,-23],[-2,-17],[-1,-3],[-1,0],[0,-21],[-1,6],[-1,-3],[0,-16],[-1,-4],[0,7],[0,13],[0,17],[0,15],[0,27],[1,27],[-1,9],[0,16],[0,20],[1,15],[-1,16],[1,22],[0,17],[1,13],[1,6],[1,15],[0,13],[0,10],[-1,6],[-1,10],[-1,1],[-1,10],[0,21],[0,10],[-1,17],[1,12],[1,8],[0,17],[1,15],[1,8],[0,18],[3,19],[1,2],[2,-8],[0,-11],[0,-14],[1,-23]],[[241,1327],[1,-9],[1,-6],[0,-7],[-1,-5],[-1,-7],[-1,-1],[-1,-10],[-1,3],[-1,3],[-1,9],[-1,7],[0,12],[1,8],[1,4],[1,0],[1,-6],[1,5],[1,5],[0,-5]],[[84,1795],[2,-7],[2,1],[1,-5],[0,-8],[2,-3],[1,-21],[0,-6],[2,8],[0,-13],[2,-12],[2,-6],[2,-4],[0,-9],[1,2],[1,3],[1,-1],[2,0],[1,6],[2,1],[1,-11],[1,-10],[1,-3],[2,-5],[0,-11],[1,-10],[1,-11],[0,-15],[0,-16],[-2,-7],[-1,0],[-1,3],[-1,-3],[-1,11],[0,17],[-1,-3],[0,-8],[-1,-5],[-1,-8],[-2,-2],[-3,6],[-1,6],[-1,-7],[-2,-4],[-1,-6],[-1,7],[-1,2],[-1,6],[-1,1],[0,-9],[-1,-3],[0,7],[-1,13],[-1,16],[0,15],[0,14],[-1,9],[0,19],[-2,23],[0,12],[-1,14],[-1,12],[-2,4],[-1,4],[-1,3],[2,10],[1,3],[1,-6]],[[30,1781],[0,-13],[0,-1],[-1,-2],[0,6],[-2,0],[-1,6],[-1,0],[0,11],[0,17],[0,26],[0,13],[1,6],[1,-7],[1,-1],[1,-11],[1,-10],[0,-14],[0,-15],[0,-11]],[[159,1939],[0,-19],[1,0],[1,-8],[0,-13],[-1,-16],[-1,-6],[0,-9],[-1,-8],[1,-12],[0,-13],[0,-10],[-1,3],[0,9],[-1,2],[-1,8],[0,7],[-1,-12],[0,-16],[-1,3],[0,14],[0,18],[0,16],[-1,6],[-2,-5],[-1,6],[0,10],[1,22],[1,9],[1,-7],[1,14],[1,4],[1,-5],[0,12],[2,5],[1,-9]],[[142,1981],[1,-20],[1,-8],[1,-4],[1,3],[0,-10],[1,5],[0,11],[1,4],[1,-10],[0,-13],[-1,-17],[-1,-4],[0,-16],[0,-23],[0,-13],[-1,-8],[0,-4],[-1,8],[-1,12],[-1,5],[0,-16],[-1,-17],[-1,-4],[-1,7],[-1,14],[0,17],[-1,2],[-1,-13],[-1,-7],[-1,-5],[0,-7],[-1,5],[-1,9],[-1,2],[-1,-8],[0,16],[-1,14],[-1,13],[0,7],[0,13],[1,12],[-1,14],[1,1],[1,-3],[0,8],[1,3],[2,-6],[1,0],[0,11],[1,1],[1,1],[0,15],[2,1],[1,-7],[0,3],[1,8],[1,-2]],[[99698,2119],[2,-8],[1,-2],[1,-5],[1,10],[1,-20],[2,-7],[1,-13],[2,-5],[1,5],[1,18],[1,-1],[1,23],[1,4],[2,14],[0,-31],[0,-18],[2,-5],[1,-15],[2,-9],[0,-21],[1,-5],[1,4],[0,24],[-1,17],[2,6],[1,-16],[2,18],[2,-13],[1,-26],[1,1],[1,-6],[1,-6],[1,-9],[2,-5],[0,23],[2,-2],[1,-17],[0,-15],[1,-10],[2,3],[1,10],[1,4],[1,8],[2,-9],[2,-10],[2,-8],[2,-4],[1,-8],[1,-1],[1,-17],[2,-7],[0,-13],[2,-9],[0,-20],[-1,-33],[0,-33],[1,-11],[1,7],[2,-10],[1,-17],[2,-11],[2,-4],[1,-2],[2,2],[0,20],[1,9],[1,10],[1,8],[1,-2],[2,-13],[1,2],[1,-17],[1,-10],[-1,-18],[1,-14],[-1,-10],[1,-27],[1,-15],[0,-23],[2,-10],[0,-21],[1,-21],[4,-26],[1,-30],[0,-27],[3,-16],[2,-27],[3,7],[1,-2],[1,-34],[1,-33],[2,-34],[2,-25],[2,-7],[0,-21],[2,-7],[2,-30],[3,-12],[2,1],[1,-8],[1,-14],[2,-9],[2,-10],[0,-9],[1,-17],[2,-8],[1,-5],[1,-2],[2,-10],[4,1],[3,11],[1,-4],[-1,-16],[1,-21],[1,-12],[-2,-24],[1,-17],[0,-11],[2,2],[1,2],[0,-15],[1,-13],[2,-2],[1,-8],[0,-11],[1,-8],[-1,-15],[-1,-15],[0,-15],[1,-4],[1,-6],[1,-1],[2,-12],[0,-15],[0,-14],[-1,-7],[2,-23],[1,1],[1,3],[1,-8],[1,-12],[0,2],[1,3],[1,4],[1,2],[1,-10],[0,-11],[1,4],[1,8],[2,36],[2,1],[0,9],[1,-1],[1,1],[1,2],[0,-18],[0,-18],[-1,-9],[-2,-16],[-3,-16],[0,-17],[1,-25],[1,-13],[1,1],[1,6],[0,5],[2,8],[2,3],[1,10],[2,4],[1,7],[3,26],[2,5],[1,-4],[1,1],[1,-1],[1,3],[0,-12],[2,-9],[0,6],[1,5],[1,-9],[1,-1],[1,3],[1,7],[1,2],[2,10],[0,14],[0,13],[1,7],[1,-7],[1,-7],[1,-6],[0,-18],[0,-14],[1,-52],[0,-17],[1,-13],[0,-11],[1,-3],[1,2],[1,7],[1,-1],[1,-5],[1,6],[1,3],[1,-2],[1,-2],[1,-6],[0,-5],[1,-3],[0,-9],[1,-9],[1,-12],[1,5],[1,2],[1,-9],[0,-14],[-1,-1],[-1,-2],[-1,-5],[-1,-16],[-1,-8],[-1,6],[-1,8],[-1,4],[0,-3],[-1,-7],[-1,-4],[-1,-13],[-1,-6],[0,-2],[-1,1],[-1,-3],[-1,-4],[-2,2],[-1,-1],[-1,-6],[0,-12],[-1,-3],[-1,6],[0,14],[-1,12],[-1,6],[1,11],[0,13],[1,8],[1,14],[0,13],[-1,7],[-1,-2],[-1,-3],[-2,-8],[-2,-9],[-1,-6],[-1,0],[-1,-4],[-1,-4],[0,-2],[-1,-8],[-1,-1],[-1,0],[0,-12],[-1,1],[-1,-7],[-2,-9],[-1,-10],[-1,-2],[-1,10],[-2,3],[-1,5],[-1,-2],[-1,-6],[-1,1],[-2,-5],[-1,-3],[-1,-6],[-1,-1],[-2,1],[-1,-8],[-1,0],[-1,-3],[-1,-9],[-1,-10],[-2,-11],[0,-6],[-1,-3],[-1,-1],[-1,15],[-1,7],[-1,3],[-1,6],[-1,9],[-1,7],[-1,3],[-1,9],[1,12],[0,11],[0,16],[1,12],[0,22],[2,7],[1,12],[0,26],[-1,8],[-1,2],[-1,4],[-1,8],[-1,0],[-1,11],[0,8],[-2,5],[-1,1],[-2,-6],[-1,1],[-1,5],[-3,15],[0,1],[0,19],[-1,16],[-1,12],[0,14],[0,18],[-2,3],[-1,8],[-1,6],[-1,-1],[-1,8],[-1,2],[-1,-4],[0,8],[-1,8],[-1,11],[0,15],[-1,3],[-1,6],[-1,8],[-2,2],[-1,8],[0,12],[-1,11],[-1,16],[-1,4],[0,2],[-1,19],[-1,8],[-1,1],[-1,-3],[-1,11],[-1,15],[-1,8],[0,-2],[-1,9],[-1,4],[-1,-1],[-1,9],[0,12],[-1,13],[0,26],[-1,7],[-1,-2],[-1,7],[0,12],[-3,20],[1,11],[0,16],[-1,14],[0,19],[-1,4],[-1,1],[-1,8],[-1,18],[0,15],[-1,11],[-1,10],[-1,10],[-2,1],[-1,12],[0,11],[-1,12],[-1,5],[-1,0],[-1,8],[-1,14],[-1,12],[-1,6],[-1,12],[1,17],[0,22],[-3,26],[-1,3],[-1,8],[0,19],[-1,4],[-1,7],[-1,9],[-2,2],[0,4],[-1,1],[-2,-1],[-1,3],[-1,2],[0,-12],[-1,-3],[-1,7],[0,19],[-1,12],[0,10],[-1,-4],[-2,6],[0,17],[-1,7],[-3,1],[0,9],[0,18],[0,17],[-1,3],[-1,-7],[-1,-2],[-1,-2],[0,-12],[0,-15],[-1,-1],[-1,11],[-2,1],[1,24],[-1,15],[0,13],[-2,16],[0,5],[-2,1],[-1,6],[-1,3],[0,-6],[-1,-16],[0,-5],[-1,2],[-2,9],[-1,4],[0,-2],[-1,-2],[-1,-3],[-1,-4],[-1,5],[-1,-5],[-2,-16],[-1,-7],[0,5],[-1,3],[-1,4],[-2,7],[-1,8],[0,17],[0,4],[-1,11],[1,9],[0,12],[-1,8],[-2,-19],[-1,3],[-1,-4],[-1,7],[-1,-1],[0,1],[-1,1],[-1,5],[-1,6],[-1,5],[-2,5],[-1,9],[0,2],[-1,-1],[-1,0],[-1,-1],[-1,-4],[0,21],[0,17],[-1,6],[-1,2],[-1,11],[-1,11],[0,16],[-1,9],[-1,1],[-1,-2],[-2,6],[0,14],[-1,10],[-1,6],[-1,9],[-1,-1],[-1,3],[-1,2],[-2,4],[-1,6],[-1,6],[0,12],[0,15],[-1,12],[0,16],[-1,14],[-1,3],[-1,-4],[0,13],[1,9],[1,5],[2,-6],[2,4],[1,11],[1,16],[0,18],[0,25],[1,16],[2,4],[2,4],[1,-9],[2,-2],[2,-45],[0,-10],[2,-18],[2,-8]],[[541,2452],[1,-11],[1,-27],[-2,-13],[-1,4],[1,20],[0,27]],[[839,2847],[-1,-1],[-1,12],[-1,12],[0,14],[2,-6],[0,-7],[1,-10],[0,-14]],[[662,2891],[0,-6],[-1,1],[-1,-5],[-1,-11],[-1,8],[-1,3],[-1,0],[-1,6],[1,6],[1,2],[1,14],[1,3],[1,1],[1,1],[1,-9],[0,-14]],[[649,2935],[0,-7],[1,-3],[1,-2],[1,-11],[0,-16],[0,-7],[-1,1],[-1,1],[-1,5],[-2,8],[-1,11],[-1,20],[1,-3],[1,-4],[1,3],[1,4]],[[659,2979],[1,-29],[-1,6],[0,-11],[-1,-8],[-2,-1],[-2,5],[-2,9],[1,3],[1,1],[-1,10],[1,4],[2,2],[1,9],[-1,19],[1,0],[1,-7],[1,-12]],[[99568,3059],[2,-21],[2,-4],[1,-13],[2,-4],[1,-1],[2,-2],[2,3],[2,1],[1,-7],[2,-14],[2,5],[2,4],[1,-8],[1,-6],[1,-15],[-1,-8],[-1,-15],[1,-1],[1,-7],[1,1],[1,-9],[2,5],[1,-10],[1,-28],[1,-17],[1,-11],[1,2],[0,-8],[-1,-23],[2,-5],[1,-4],[1,-12],[0,-6],[1,-16],[1,-9],[1,-26],[1,-14],[2,-11],[0,-24],[-2,11],[-2,13],[0,18],[-1,6],[-1,0],[-1,-8],[-1,2],[-2,-4],[-1,-6],[-1,4],[-1,-8],[-5,12],[-1,15],[-2,2],[-1,9],[0,21],[-2,26],[-1,22],[-1,26],[-1,2],[-2,43],[-3,20],[-2,7],[-2,4],[0,17],[-2,8],[-1,0],[-1,-2],[-1,-6],[-2,22],[-1,8],[0,24],[-1,15],[-2,-1],[-2,8],[0,18],[1,7],[1,4],[2,-10],[1,-5],[2,-6]],[[95,3080],[1,-10],[1,4],[1,-4],[2,-10],[1,-13],[1,-10],[2,-13],[2,-10],[1,-14],[0,-19],[2,-16],[2,-17],[1,-18],[0,-11],[1,-7],[0,-19],[0,-16],[1,-32],[1,-26],[-1,-21],[-1,-31],[-1,-18],[-1,-14],[-1,-13],[1,-19],[0,-14],[-2,-15],[-1,-4],[-2,-9],[-1,-18],[-2,1],[-2,-8],[-1,-2],[-1,-3],[-2,2],[-1,2],[-2,1],[-1,4],[-1,7],[-1,10],[0,14],[-1,12],[-1,8],[-2,18],[-2,29],[-2,10],[-2,14],[0,13],[-1,14],[-2,10],[-1,8],[-1,9],[1,13],[0,19],[0,21],[1,18],[1,29],[0,20],[1,25],[0,22],[1,19],[1,14],[2,8],[0,10],[1,15],[2,9],[0,15],[2,4],[1,6],[1,12],[3,-3],[1,-12]],[[657,3051],[-2,-3],[0,11],[-1,15],[0,15],[0,15],[0,-3],[1,-5],[1,-3],[1,-8],[0,-10],[0,-13],[0,-11]],[[905,3111],[0,-17],[-1,1],[-1,3],[-1,13],[-1,3],[-1,2],[0,7],[-2,11],[1,11],[1,-2],[1,-4],[3,0],[0,-17],[1,-11]],[[798,3215],[1,-16],[0,-21],[-1,-22],[-1,-11],[0,-13],[0,-15],[0,-20],[-1,-7],[-2,-12],[-3,-3],[-2,5],[-1,4],[-3,1],[-4,1],[-1,-7],[-1,-17],[-1,-22],[1,-8],[1,4],[2,4],[2,9],[3,5],[2,-4],[2,-3],[1,-10],[0,-20],[-1,-11],[-1,-7],[-1,-9],[-1,-27],[0,-10],[1,2],[1,12],[1,10],[2,11],[1,7],[2,15],[1,19],[1,-2],[0,-17],[1,-16],[1,-3],[1,14],[1,-10],[1,-9],[-1,-18],[0,-15],[0,-13],[-1,-12],[-1,4],[-1,0],[0,-15],[1,-6],[1,-11],[0,-14],[0,-20],[-2,-4],[-1,7],[-1,-4],[2,-11],[0,-13],[2,-8],[1,-6],[1,-13],[0,-9],[0,-14],[-2,-26],[0,-5],[-1,15],[-1,4],[-2,-8],[-1,-12],[-1,-11],[0,-14],[1,-15],[-1,-9],[0,-17],[0,-15],[1,-21],[0,-25],[0,-22],[-1,-3],[-1,13],[0,15],[-1,17],[-1,23],[-1,0],[-1,6],[-1,2],[-1,5],[0,-5],[-1,15],[-1,7],[-1,-7],[-1,-11],[2,-8],[0,-7],[1,-12],[2,-30],[0,-17],[-1,-11],[0,-13],[-1,-9],[-1,6],[-1,0],[-1,-5],[0,-5],[-1,-7],[-2,-8],[-1,-15],[-1,0],[0,12],[-1,6],[-1,7],[0,8],[0,11],[-1,11],[1,10],[1,10],[0,18],[-1,7],[-1,-7],[0,-13],[-1,-6],[-1,-5],[0,-11],[-1,-4],[-1,7],[0,14],[0,18],[-1,-1],[-1,-17],[0,-15],[-1,-19],[-1,2],[-1,-7],[-1,7],[-1,1],[0,15],[0,18],[0,19],[-1,15],[1,17],[1,19],[-1,15],[0,16],[1,25],[1,19],[0,13],[-1,5],[0,4],[-2,4],[0,10],[1,21],[0,14],[0,16],[-1,8],[-1,2],[-1,8],[-1,15],[0,18],[1,15],[0,22],[0,25],[-1,27],[0,24],[2,3],[1,4],[1,1],[1,7],[2,5],[-1,8],[-1,12],[0,4],[-1,-2],[-2,-1],[-2,7],[-1,21],[-1,16],[0,24],[0,21],[0,14],[0,14],[1,9],[0,14],[1,8],[1,5],[1,5],[1,9],[1,0],[1,8],[2,-2],[3,1],[2,9],[2,-3],[2,-3],[2,-15],[1,-11],[1,-6],[2,-3],[1,7],[1,14],[2,20],[3,15],[4,1],[2,-3],[1,-8],[1,-25],[0,-8]],[[826,3311],[1,-5],[1,1],[2,-11],[0,-14],[2,-43],[2,-6],[1,-8],[1,-10],[0,-9],[1,-7],[1,-5],[1,-4],[1,-23],[0,-22],[-1,-14],[-1,-16],[0,-12],[0,-14],[0,-15],[1,-1],[2,12],[3,11],[2,3],[1,1],[0,15],[-1,14],[-1,11],[1,15],[0,6],[1,3],[1,2],[0,2],[1,6],[2,2],[3,-3],[2,-5],[1,-4],[0,-16],[0,-17],[1,-3],[1,5],[2,3],[2,-7],[2,-5],[3,-2],[0,-5],[1,-16],[0,-19],[2,-21],[1,-10],[0,-11],[0,-11],[0,-12],[1,-6],[0,-14],[0,-23],[0,-16],[2,-37],[-1,-7],[-1,9],[-1,0],[-1,2],[-1,-1],[-1,10],[2,12],[1,9],[-1,22],[0,15],[0,14],[0,13],[-1,12],[-1,7],[-2,2],[-2,-5],[-1,-18],[-1,-16],[0,-10],[-2,7],[-1,16],[-2,-2],[-1,-9],[-1,0],[-2,7],[-1,5],[-2,12],[-2,6],[-1,-2],[-2,10],[-3,6],[1,-16],[1,-15],[0,-16],[2,-13],[1,-24],[1,-14],[2,-16],[1,-19],[-1,-24],[0,-20],[0,-11],[-1,1],[-1,13],[0,4],[-2,8],[-1,12],[-1,6],[-2,-2],[-1,11],[-1,2],[-1,-3],[-2,-1],[-1,9],[1,22],[1,19],[-1,21],[-1,6],[1,12],[0,17],[0,23],[-1,10],[-1,0],[-1,-10],[-1,-17],[0,-16],[1,-11],[-1,-15],[-1,-13],[0,-17],[-1,-4],[-1,-11],[0,-16],[0,-18],[0,-14],[0,-16],[1,-12],[0,-11],[2,-8],[1,-14],[-1,-21],[1,-9],[1,-8],[-1,-17],[-1,-14],[-1,-3],[-1,18],[-1,15],[-1,9],[-1,21],[-1,16],[0,-4],[-1,1],[-1,15],[1,23],[1,3],[2,16],[0,20],[0,13],[-1,3],[-1,11],[0,9],[-1,-17],[-1,8],[-1,4],[-2,14],[-1,0],[-2,9],[-1,4],[-1,-1],[-2,-3],[-1,13],[0,13],[-1,14],[-1,10],[-1,-4],[-1,6],[0,14],[1,24],[1,20],[1,15],[2,11],[2,-8],[2,1],[0,13],[0,12],[0,13],[1,7],[-1,17],[-1,9],[-1,13],[-1,3],[0,9],[0,17],[0,15],[-1,9],[-1,13],[1,12],[1,20],[1,18],[1,20],[2,-11],[1,-5],[0,7],[1,6],[2,-4],[1,8]],[[879,3455],[1,-11],[0,-8],[1,-2],[0,-12],[-1,-10],[-1,-12],[-1,-4],[-1,-6],[-1,-2],[-1,1],[-1,0],[-1,-3],[-1,-6],[-1,-9],[0,-10],[0,-17],[-1,-2],[1,-17],[1,-8],[1,-5],[3,15],[2,11],[1,1],[1,1],[1,-9],[-1,-18],[0,-18],[2,15],[1,8],[2,20],[2,14],[1,6],[1,3],[0,-8],[0,-12],[0,-14],[2,-11],[-1,-18],[-1,-15],[-1,-2],[-1,-5],[0,-17],[0,-5],[1,-9],[1,-6],[1,-4],[-1,-11],[0,-12],[0,-10],[0,-9],[-1,-6],[-1,-5],[0,-11],[0,-17],[0,-13],[0,-13],[-1,8],[-2,5],[-1,7],[-1,0],[-1,10],[-1,4],[0,8],[-1,6],[-1,6],[-1,16],[-1,13],[-1,-7],[-1,-7],[-1,7],[-1,8],[-2,10],[-1,5],[-1,1],[-2,-6],[-2,-16],[-1,-7],[-2,4],[-1,14],[0,26],[-1,17],[0,9],[-1,-2],[-1,-1],[-2,3],[-3,13],[-1,16],[-1,4],[-1,1],[-1,3],[-2,10],[-1,11],[0,8],[1,6],[1,6],[1,1],[1,1],[1,-3],[1,2],[1,9],[0,13],[1,4],[2,3],[1,12],[3,20],[3,14],[3,6],[1,-4],[1,-1],[1,7],[1,7],[2,12],[3,5],[2,2],[1,-3],[1,5],[0,-3],[1,-1]],[[294,3490],[1,-8],[1,-8],[2,3],[1,6],[1,-3],[1,-7],[1,-10],[1,-7],[1,-2],[2,10],[1,20],[1,-7],[1,-16],[1,-9],[2,3],[1,5],[2,-2],[1,10],[1,-12],[2,-12],[1,6],[2,8],[2,5],[1,10],[1,6],[1,-8],[2,4],[1,8],[1,-1],[1,-3],[1,-9],[0,-29],[0,-23],[0,-12],[1,-6],[2,-2],[0,-11],[1,-20],[2,-21],[1,-17],[1,-5],[1,-4],[1,-12],[1,-14],[1,-7],[1,-5],[-1,-14],[-1,-10],[0,-12],[-1,-9],[-1,-17],[0,-16],[-1,-24],[1,-14],[0,-7],[2,-1],[1,2],[1,3],[0,-9],[1,-18],[1,-14],[2,-10],[1,-4],[1,0],[1,8],[0,17],[1,12],[1,3],[1,-8],[0,-12],[1,-4],[1,-2],[1,-6],[0,-13],[-1,-23],[-1,-30],[2,-18],[2,-4],[2,1],[2,6],[1,7],[1,0],[2,4],[1,18],[1,23],[2,10],[2,4],[1,-3],[1,4],[1,10],[1,3],[1,-11],[2,-9],[1,-2],[1,-3],[0,-15],[1,-20],[2,-17],[3,-13],[3,-2],[3,19],[2,13],[2,15],[2,13],[2,9],[1,13],[1,11],[0,-3],[3,4],[2,-3],[1,15],[1,1],[2,5],[3,1],[1,1],[1,3],[2,1],[1,8],[2,11],[2,11],[0,-10],[-1,-18],[-1,-26],[-1,-33],[1,-26],[-1,-6],[-2,-2],[-1,-12],[-2,-11],[-1,-18],[-1,-11],[0,-12],[-1,1],[-3,-1],[-2,0],[-2,-18],[-2,-6],[-2,5],[-1,7],[-2,0],[-4,3],[-3,-11],[-1,-12],[-2,-1],[-1,-20],[-2,3],[-1,6],[-1,-2],[-1,-5],[0,-18],[-2,-11],[-2,-16],[-2,-14],[-1,-8],[-3,-3],[-2,-10],[-3,-11],[-1,-11],[1,-13],[0,-3],[2,-6],[1,-16],[1,-4],[1,-17],[0,-20],[3,-8],[2,-5],[-1,-10],[-2,-2],[-1,-8],[-1,-6],[-3,-6],[-1,-22],[0,-15],[-1,-21],[-1,-11],[-1,-14],[-2,-17],[-2,-17],[-1,-28],[0,-16],[0,-12],[0,-16],[0,-19],[1,-13],[1,-7],[1,-6],[1,-12],[1,-2],[1,2],[0,-11],[0,-19],[-1,-2],[-1,3],[0,11],[-1,1],[-2,-8],[0,-20],[0,-8],[0,-16],[0,-12],[-1,-16],[0,-16],[-3,-1],[0,-16],[0,-18],[-1,5],[0,-11],[-2,-3],[0,-1],[-2,-4],[-1,9],[-1,1],[-1,11],[-1,10],[-1,19],[-1,-1],[-1,5],[-1,11],[-1,-5],[-1,-23],[1,-13],[1,-9],[-1,-14],[-4,-18],[-1,-8],[0,-17],[-1,-17],[-1,-16],[1,-9],[0,-9],[-2,-26],[0,-19],[0,-15],[1,-15],[0,-15],[2,-18],[0,-23],[1,-18],[0,-15],[1,-38],[1,-19],[1,-18],[1,-29],[-1,-25],[0,-18],[-1,-3],[-1,17],[-1,8],[-3,-7],[-1,8],[0,34],[-1,9],[-1,-3],[-2,4],[0,16],[-2,13],[0,13],[0,29],[1,32],[-1,34],[-2,43],[-1,12],[-1,1],[-1,-8],[-1,7],[-1,10],[-3,-8],[-2,-17],[1,-17],[-1,-2],[-1,-10],[-1,-17],[0,16],[-1,26],[0,13],[-1,2],[-1,3],[-1,1],[0,14],[-1,-6],[-1,1],[1,23],[-1,10],[-1,6],[0,-12],[-1,-11],[-1,9],[0,16],[-1,7],[0,16],[0,21],[0,8],[-2,2],[-1,-5],[-1,-8],[0,-3],[-1,-10],[-1,1],[-1,3],[-1,11],[-1,8],[-1,-11],[-1,-21],[-1,-11],[-1,3],[-1,11],[-2,3],[-1,11],[-1,4],[0,6],[-2,9],[-1,15],[-1,15],[2,4],[0,19],[0,16],[1,8],[0,18],[1,15],[-1,14],[0,14],[1,14],[-1,10],[-2,5],[1,12],[1,2],[1,-2],[2,2],[0,-12],[2,-11],[2,-3],[1,2],[2,19],[2,-6],[1,2],[1,0],[1,-9],[1,-4],[1,0],[1,5],[-1,17],[1,-2],[1,-8],[1,-9],[1,-1],[3,15],[0,20],[1,13],[1,20],[1,4],[1,1],[1,-2],[1,-1],[1,-14],[1,-2],[2,4],[1,4],[1,17],[2,1],[1,-3],[1,2],[2,15],[0,21],[1,21],[1,22],[0,23],[0,16],[-1,12],[1,14],[1,19],[-1,28],[0,36],[-2,34],[-2,19],[-1,9],[0,-6],[-1,-9],[-2,-1],[-1,9],[-1,4],[-2,7],[-1,13],[-2,19],[-2,18],[0,7],[0,8],[-2,0],[-3,-9],[-1,-17],[-1,-19],[0,-18],[-1,-2],[-1,11],[-1,12],[-2,1],[-1,-12],[0,14],[-1,16],[-1,11],[0,13],[-1,15],[-2,8],[-2,9],[-1,6],[-1,1],[-1,8],[1,17],[1,14],[0,18],[-1,16],[-2,14],[-1,14],[-2,5],[-1,2],[-1,2],[-1,15],[-1,14],[-1,16],[-2,2],[-2,-3],[-1,6],[-1,11],[-2,7],[-1,7],[-1,6],[-1,10],[-1,0],[-1,-3],[-1,21],[-1,14],[-1,1],[-1,10],[-2,15],[-2,4],[-1,4],[-1,6],[-1,3],[-1,10],[-2,17],[-1,18],[-1,20],[0,23],[1,22],[0,13],[1,21],[2,28],[2,21],[1,25],[2,23],[0,17],[0,2],[1,4],[2,-3],[1,4],[2,12],[3,10],[1,2],[2,-1],[1,4],[1,12],[3,1],[1,9],[2,5],[1,-6],[3,1],[2,0],[2,-1],[1,6],[0,-4]],[[477,3493],[1,-6],[0,7],[1,-7],[0,-13],[-1,-12],[1,-14],[1,-28],[0,-7],[1,-8],[-1,-19],[-1,-6],[-1,-1],[-1,-14],[-1,-1],[-1,0],[-1,-5],[-1,-12],[-1,5],[-1,15],[-1,18],[-1,7],[-1,3],[0,9],[0,13],[0,11],[1,14],[1,12],[1,12],[0,19],[1,17],[0,24],[1,1],[1,-7],[0,-10],[1,-9],[2,-8]],[[848,3545],[-2,-2],[-1,5],[0,16],[1,16],[0,7],[1,5],[2,5],[1,1],[1,-6],[0,-15],[-1,-22],[0,-7],[-1,-1],[-1,-2]],[[541,2452],[-3,-8],[-1,-12],[-1,-10],[-1,16],[0,-1],[-1,-12],[-1,-12],[-1,-7],[-2,-6],[1,-26],[-1,-20],[-3,-14],[-2,-12],[0,-20],[-1,-3],[-1,1],[-1,-13],[0,13],[-1,7],[-1,18],[-1,6],[0,-21],[-2,3],[0,11],[-1,-4],[-1,2],[0,11],[1,8],[0,18],[0,23],[-1,9],[-2,-17],[-1,-1],[-2,-8],[-1,-10],[-1,2],[-1,8],[1,4],[2,12],[0,20],[-1,20],[-1,16],[0,16],[-1,16],[-2,-1],[-1,12],[-1,23],[-2,6],[-1,13],[-1,3],[-1,13],[0,21],[-1,11],[-1,-1],[-1,-13],[-1,-15],[-2,8],[-3,14],[-1,-1],[-1,-20],[0,1],[-1,5],[-2,1],[-2,1],[-1,-14],[0,-25],[-1,-1],[-1,5],[0,-6],[-2,3],[-3,11],[-1,-20],[-2,-8],[-1,-20],[-1,-9],[0,-18],[-1,-1],[-1,9],[-1,-8],[0,-13],[-1,-13],[-2,-9],[-1,9],[-2,-4],[-1,-8],[-1,1],[0,-13],[-1,-9],[-1,22],[0,10],[-1,12],[-1,5],[-1,-15],[0,-14],[-2,-9],[-3,-9],[-2,3],[-1,-1],[-1,4],[-2,5],[-1,-4],[0,-13],[-2,3],[-1,14],[-1,4],[-1,-12],[-2,-6],[-1,9],[-1,3],[0,11],[-3,11],[-3,-6],[-2,-24],[-1,-4],[-1,-7],[0,-17],[1,-12],[0,-10],[0,-3],[-1,5],[-1,9],[-1,-8],[-1,-20],[2,-29],[-1,-13],[0,-25],[0,-23],[1,-14],[-1,-7],[0,-13],[1,-3],[0,-10],[-2,-5],[0,-8],[-1,-5],[-1,-3],[0,13],[0,19],[-1,12],[-2,1],[-2,-8],[-1,3],[0,11],[1,18],[-1,21],[0,25],[1,15],[0,15],[-1,18],[-1,1],[-1,-5],[-1,14],[-1,7],[-1,-1],[-1,12],[1,27],[0,33],[0,12],[-1,6],[-1,-3],[-1,-10],[-2,-7],[1,17],[1,14],[1,15],[2,13],[1,0],[3,4],[1,9],[2,9],[1,20],[1,13],[2,18],[2,20],[1,8],[0,17],[1,5],[1,-10],[0,-1],[1,-10],[2,-7],[1,-11],[3,-19],[3,-12],[3,2],[2,4],[1,-11],[1,-5],[3,-11],[2,-6],[5,2],[1,11],[1,7],[1,-4],[2,3],[1,14],[0,14],[0,13],[1,13],[0,20],[0,13],[1,-5],[1,16],[0,-8],[1,-17],[1,-5],[2,4],[2,1],[2,12],[1,16],[2,3],[1,24],[-1,14],[0,9],[1,2],[1,-8],[1,3],[1,3],[1,8],[1,1],[1,-12],[2,-5],[2,5],[3,2],[2,6],[1,17],[1,10],[2,8],[0,16],[1,20],[1,-1],[1,-5],[0,-12],[3,4],[2,20],[2,9],[2,3],[1,16],[1,5],[1,-4],[2,5],[2,-5],[2,4],[1,9],[2,2],[2,1],[3,9],[2,6],[2,14],[1,7],[1,11],[1,7],[0,12],[1,-4],[1,1],[0,13],[1,0],[1,0],[3,11],[1,16],[1,9],[3,16],[2,28],[2,41],[0,24],[-1,22],[-1,22],[0,14],[1,6],[2,9],[0,22],[0,23],[0,28],[-1,19],[0,27],[0,24],[1,44],[1,26],[-1,26],[0,33],[1,17],[0,24],[0,27],[0,26],[0,27],[0,26],[0,19],[0,13],[1,8],[1,22],[1,9],[1,7],[1,12],[1,-1],[2,1],[2,-6],[1,14],[1,-1],[3,-5],[4,-8],[1,-17],[2,-28],[1,3],[1,7],[2,9],[2,-2],[1,-7],[1,-23],[4,-41],[3,-33],[3,-31],[2,-37],[0,-17],[-1,-16],[-2,-7],[-1,-16],[-2,-9],[-2,-20],[1,-36],[0,-32],[2,-21],[0,-25],[-2,-14],[-2,-14],[-3,-17],[-2,-22],[-3,-16],[-3,-24],[-3,-29],[0,-20],[0,-36],[-2,-40],[1,-37],[1,-14],[0,-26],[0,-16],[3,-30],[1,-10],[0,-21],[-1,-15],[-1,-8],[1,-11],[1,-13],[1,-6],[-2,-10],[-2,-21],[-1,-18],[-1,-22],[0,-23],[2,-6],[-1,-15],[1,-31],[2,-23],[-1,-26],[0,-20],[-1,-18],[-1,-13],[-1,-17],[-1,-9],[-2,15],[0,5],[-1,-3],[-1,-19],[2,-20],[0,-11],[0,-17],[-1,-3],[-1,2],[-2,8],[-1,-7],[-2,9],[-1,3],[-1,-2],[-1,4],[0,-12],[-1,-13],[-2,-1],[0,9],[-1,13],[-1,10],[0,16],[0,23],[1,32],[-1,15],[0,5],[-1,-10],[0,-12],[-1,-12],[-1,-22],[0,-23],[1,-21]],[[865,3542],[-1,-6],[-1,7],[-1,5],[0,16],[0,14],[1,21],[-1,20],[1,20],[1,3],[1,4],[0,9],[1,5],[1,2],[1,3],[1,-4],[0,-17],[0,-17],[0,-15],[-1,-13],[1,-18],[1,-14],[-1,-9],[-1,-3],[-2,-4],[-1,-9]],[[833,3676],[1,-3],[1,-7],[1,-11],[1,-15],[0,-17],[-1,0],[-1,-4],[-2,4],[-1,8],[-1,0],[-1,7],[0,15],[1,7],[0,16],[0,-2],[1,1],[1,1]],[[933,3649],[1,-16],[1,-16],[1,-22],[0,-26],[1,-8],[0,-19],[1,-16],[0,-11],[2,1],[1,5],[1,10],[1,1],[0,-7],[1,-9],[-1,-17],[0,-17],[-1,-1],[-2,-11],[-1,-1],[-1,1],[-1,-1],[-1,4],[-1,-4],[-1,6],[0,12],[-1,11],[-1,3],[-1,2],[-1,0],[-1,-7],[-1,-3],[-1,10],[0,11],[-1,2],[-1,7],[-1,15],[-1,23],[0,13],[-1,5],[-2,8],[-1,-1],[-1,13],[-1,1],[-1,2],[-1,1],[-2,-1],[-1,-2],[0,4],[-1,4],[1,6],[1,5],[0,15],[1,5],[2,13],[1,5],[2,2],[1,1],[0,-2],[1,-18],[1,-6],[1,0],[1,15],[1,22],[1,7],[1,7],[3,3],[1,2],[1,0],[1,-3],[1,-5],[1,-11],[-1,-12],[-1,-10]],[[852,3687],[1,-16],[-1,-23],[-1,-11],[-1,4],[-1,7],[-1,2],[-1,-4],[-2,-3],[-1,-6],[-1,-2],[-1,-2],[-1,-2],[-1,1],[0,7],[0,11],[0,13],[-1,16],[1,15],[1,3],[1,-6],[1,-5],[1,-2],[1,11],[2,5],[1,0],[1,5],[1,3],[1,-4],[1,-8],[0,-9]],[[877,3628],[-1,-12],[-1,6],[-1,12],[0,24],[-1,13],[-1,9],[0,7],[0,9],[0,10],[1,6],[1,3],[1,0],[1,-6],[1,-12],[1,-8],[1,-8],[0,-9],[-1,-6],[-1,-6],[0,-13],[0,-19]],[[982,3697],[-1,-4],[-1,4],[-1,1],[-1,6],[-1,0],[-1,8],[-1,11],[1,3],[1,7],[0,-6],[1,-6],[1,-2],[1,-4],[1,-8],[1,-10]],[[99405,3694],[1,-5],[1,0],[1,1],[1,1],[1,-6],[1,-6],[1,-1],[2,-10],[0,-5],[2,4],[2,-4],[1,-8],[1,1],[2,-11],[-1,-11],[-1,-7],[-1,-1],[-1,-3],[-1,10],[-1,7],[-2,-6],[0,-13],[-1,-3],[-1,-8],[-1,0],[-1,1],[-1,-5],[-1,-1],[-1,-3],[-1,0],[-1,12],[0,9],[-1,0],[-1,2],[-1,10],[-1,7],[-1,2],[-1,7],[-1,17],[0,17],[1,12],[1,5],[1,3],[0,10],[1,19],[0,14],[0,11],[1,-6],[1,-13],[0,-17],[0,-17],[1,-12]],[[963,3718],[1,-8],[2,9],[0,17],[1,5],[1,12],[1,-1],[1,-6],[1,-11],[2,-11],[1,-13],[-1,-13],[-2,-3],[-1,-8],[-1,-3],[-1,2],[-2,-5],[1,-10],[-1,-1],[-2,0],[-1,3],[-2,-4],[-1,-10],[-1,1],[-1,-1],[0,-11],[-1,-11],[-1,-6],[0,-10],[1,-11],[0,-19],[-1,-12],[0,-3],[0,-12],[-2,-7],[-1,6],[-1,3],[-1,13],[-1,11],[-2,13],[-1,20],[0,22],[1,21],[1,18],[0,12],[0,12],[0,16],[0,10],[1,8],[1,16],[1,6],[1,4],[1,-8],[1,-1],[1,-1],[1,-3],[4,-12],[1,-5],[0,-11],[1,-9]],[[99602,3693],[0,-15],[0,-10],[-1,1],[-1,-1],[-2,1],[-1,-7],[-1,-12],[0,-12],[-1,-12],[-1,-4],[-1,2],[0,40],[-1,2],[0,12],[0,12],[1,2],[2,-4],[1,10],[2,4],[1,8],[0,17],[0,18],[0,14],[0,12],[1,-3],[1,-14],[1,-14],[0,-23],[1,-8],[0,-8],[-1,-8]],[[1021,3771],[-1,-8],[-2,4],[-1,0],[1,17],[0,9],[2,-1],[0,-4],[1,-7],[0,-10]],[[99637,3828],[1,-13],[1,-11],[1,-4],[1,1],[1,10],[1,14],[1,-1],[2,-22],[2,-7],[2,-9],[2,-3],[2,-12],[3,-10],[3,-22],[2,-7],[4,-45],[2,-34],[-1,-15],[1,-19],[-2,-19],[-1,-35],[-3,-42],[-3,-14],[-3,-28],[0,-26],[-1,-21],[-1,-24],[-2,2],[-2,-9],[-2,-10],[-3,2],[-2,-3],[0,16],[-2,18],[-2,17],[-1,42],[-2,22],[-2,44],[-2,-22],[-1,24],[-1,33],[-2,11],[-2,5],[-1,3],[1,24],[2,18],[3,-2],[1,7],[0,33],[-2,12],[0,26],[0,15],[-1,23],[-1,19],[1,-5],[2,-9],[1,19],[0,14],[-1,15],[2,13],[2,-9],[1,5],[1,5]],[[99588,3752],[0,-11],[-1,8],[-2,2],[-1,-9],[-1,-7],[-1,4],[-1,18],[-1,0],[-1,14],[-1,5],[0,22],[2,5],[2,10],[0,17],[1,-13],[2,-41],[3,-24]],[[1036,3793],[-1,-6],[-1,-5],[0,9],[-1,-4],[-2,0],[-1,-7],[-1,2],[-1,8],[0,-2],[-1,3],[0,17],[0,11],[1,1],[1,2],[0,15],[1,1],[0,-12],[1,-6],[1,-2],[1,-1],[1,-1],[1,-12],[1,-11]],[[904,3855],[1,-4],[1,0],[0,-13],[0,-14],[0,-11],[1,-6],[2,3],[0,20],[-1,22],[0,14],[1,0],[1,-3],[1,3],[1,-5],[3,2],[1,-8],[4,-8],[2,3],[4,16],[2,-2],[1,-8],[1,-11],[0,-23],[0,-4],[-1,2],[-1,-5],[-2,-7],[-3,-4],[-1,-7],[-2,-15],[-2,-10],[-1,0],[-1,4],[-2,12],[-2,7],[-2,-6],[-1,-8],[0,-9],[2,-13],[1,-20],[-1,-16],[-2,-12],[-1,7],[-1,3],[-2,3],[-2,12],[-3,6],[-3,8],[-2,9],[0,15],[-1,-1],[-1,-11],[-1,-7],[-1,15],[-1,11],[-1,16],[-1,13],[0,10],[1,7],[1,8],[1,6],[1,9],[2,-2],[1,2],[2,-1],[2,5],[1,14],[1,0],[1,-7],[2,-6]],[[715,3906],[2,-9],[1,-5],[0,-2],[2,-13],[1,-5],[1,-16],[0,-12],[0,-29],[0,-30],[0,-39],[0,-38],[-2,-33],[0,-29],[0,-22],[0,-22],[1,-18],[3,-25],[1,-25],[-1,-27],[0,-17],[-1,-11],[-1,-24],[0,-16],[-1,1],[0,10],[-2,12],[-1,4],[0,13],[0,16],[1,17],[1,14],[0,12],[0,12],[1,11],[-1,9],[-1,9],[0,13],[-1,26],[0,11],[0,17],[-1,7],[-1,2],[-1,-12],[-1,-11],[0,-21],[-1,-12],[0,-17],[1,-14],[0,-15],[1,-12],[1,0],[-1,-12],[-1,-10],[0,-15],[1,-10],[1,-1],[1,-5],[1,-13],[-1,1],[-2,-6],[-2,-16],[-4,-24],[-3,-17],[-1,-4],[0,-11],[0,-11],[-1,-10],[0,-17],[0,-24],[-1,-15],[0,-14],[0,-27],[0,-15],[1,-7],[-1,-15],[0,-26],[0,-16],[-1,10],[-1,-3],[-1,-1],[-1,-4],[-1,-3],[-1,-2],[-1,-2],[0,-3],[-1,-9],[0,-13],[0,-8],[1,-13],[1,-2],[0,1],[1,0],[1,8],[0,10],[2,-1],[1,3],[2,-1],[1,1],[0,2],[2,0],[3,0],[1,-3],[1,0],[0,13],[0,8],[1,1],[1,-4],[1,-11],[-1,-8],[-1,-5],[-1,-7],[-1,-21],[-1,-15],[-1,-5],[-1,-7],[-1,-2],[0,-6],[-2,-22],[-2,-13],[0,-12],[1,2],[1,1],[1,12],[1,15],[3,13],[2,-2],[1,-10],[1,3],[1,-4],[0,-34],[1,-15],[1,7],[0,20],[0,18],[-1,17],[0,12],[2,11],[3,10],[1,0],[1,-2],[1,-12],[0,-14],[1,-8],[1,-3],[1,-10],[1,-3],[2,-5],[1,-15],[2,-16],[1,-20],[0,-20],[0,-18],[1,-10],[1,7],[0,17],[0,28],[0,12],[-1,10],[-2,19],[0,15],[0,14],[0,9],[1,10],[1,17],[2,18],[2,9],[1,4],[1,4],[1,-1],[2,-2],[1,4],[2,2],[1,-11],[0,-14],[1,-14],[1,-17],[0,-16],[-1,-19],[1,-13],[0,-16],[1,-5],[2,8],[0,12],[0,3],[1,-2],[0,15],[-1,13],[0,11],[1,11],[0,19],[0,3],[1,-5],[1,-6],[0,-11],[1,-15],[1,-21],[0,-21],[0,-21],[0,-26],[0,-25],[-2,-29],[1,-14],[-1,-19],[0,-27],[1,-9],[2,-12],[1,-33],[-1,-4],[-1,-9],[-1,-5],[-1,9],[0,5],[-2,-4],[0,-16],[1,-12],[0,3],[1,5],[1,-10],[0,-20],[-1,-3],[-2,-6],[0,-19],[1,-6],[2,-19],[0,-19],[1,-2],[1,3],[2,-7],[-1,-17],[-1,-6],[0,-12],[0,-30],[0,-16],[-1,-15],[0,10],[0,11],[-1,-18],[-1,13],[0,-4],[-1,-14],[-1,-2],[-1,6],[0,-25],[-1,-22],[-1,-2],[0,10],[0,14],[-1,-4],[-1,-1],[-1,-18],[-1,-16],[-2,-4],[-1,3],[1,10],[1,3],[-1,15],[0,27],[0,24],[0,11],[-1,4],[-1,-3],[-1,23],[-1,20],[-2,18],[-1,6],[0,-14],[-1,12],[0,12],[-1,-7],[-1,-5],[0,12],[-3,-22],[0,-13],[0,-27],[-1,-12],[-1,13],[-1,-22],[1,-17],[-1,-19],[0,-23],[-1,-3],[-1,-8],[0,-19],[-1,-23],[-1,-12],[-1,-10],[-2,-2],[1,-12],[1,-7],[0,-14],[0,-16],[0,-1],[-1,-10],[-1,-9],[-1,0],[-1,-10],[-1,-19],[-1,-19],[-1,-1],[-1,-29],[0,-3],[-1,12],[-1,23],[-1,27],[-1,25],[-2,31],[-1,9],[-1,-5],[0,-17],[-2,-6],[-1,-7],[-1,-8],[-1,14],[-1,-7],[1,-6],[0,-11],[1,-5],[2,-9],[1,-15],[0,-17],[-1,-13],[-3,-7],[-2,-3],[-2,-10],[-1,12],[-1,-2],[-2,2],[-1,7],[0,15],[1,17],[1,21],[1,21],[-1,16],[-1,4],[-2,-2],[-1,4],[-2,1],[2,-14],[1,-8],[1,-14],[0,-24],[-1,-19],[0,-15],[-1,-18],[0,-18],[0,-28],[-2,-16],[0,7],[0,18],[0,16],[-1,3],[-1,-7],[-1,-2],[0,25],[-1,0],[-1,-15],[-1,3],[0,14],[1,18],[-1,-5],[-1,-15],[-2,-13],[0,15],[-1,4],[-1,-18],[-1,-10],[-1,4],[-1,-4],[-1,-21],[1,-5],[1,-11],[-1,-30],[-1,4],[-2,-5],[0,-16],[-1,-22],[0,-17],[3,-19],[0,-19],[-2,5],[0,-4],[0,-16],[3,-8],[1,2],[1,-16],[-1,-33],[-1,-48],[-1,-8],[0,4],[-1,15],[-1,-2],[-1,1],[0,10],[-1,0],[-1,7],[-2,7],[-1,4],[1,13],[0,12],[-1,-2],[-2,-27],[-1,-2],[-2,7],[-2,-15],[-2,-36],[-2,-24],[-1,-14],[-1,-18],[-1,-15],[-1,7],[-1,22],[0,18],[-1,17],[-1,1],[-1,13],[0,14],[-1,25],[-1,8],[1,26],[2,0],[1,19],[1,-5],[2,1],[0,14],[-1,7],[-2,7],[-2,12],[-1,18],[2,10],[1,13],[-1,15],[-2,14],[0,22],[-2,26],[-1,34],[1,42],[2,10],[1,11],[0,16],[-1,26],[1,23],[-1,17],[0,23],[1,18],[1,13],[-1,6],[-1,-3],[-2,4],[-1,-7],[-1,-32],[-1,-33],[0,-35],[-3,-30],[-2,-39],[-1,-19],[0,-13],[0,-25],[1,-17],[-1,-20],[0,-25],[-2,1],[-2,-20],[-1,-8],[-2,-50],[-1,-16],[-1,-14],[-1,-5],[-1,-4],[0,-14],[0,-14],[-1,-13],[0,-13],[0,-22],[-2,-17],[1,-13],[-1,-11],[-1,-27],[0,-19],[-1,-2],[-2,-19],[-1,6],[0,-19],[1,-20],[0,-23],[-3,-10],[-2,5],[-1,7],[-1,-4],[-1,12],[-2,10],[0,7],[-2,0],[-1,12],[-1,-2],[-1,9],[-1,21],[0,17],[0,21],[-1,9],[0,19],[0,20],[0,26],[1,2],[0,9],[1,6],[2,10],[0,16],[0,19],[-1,25],[0,25],[-1,24],[0,22],[2,10],[0,17],[1,16],[2,20],[-1,10],[-1,11],[1,2],[2,-3],[1,8],[1,-2],[0,17],[1,14],[2,16],[2,11],[1,16],[1,17],[0,11],[-1,14],[2,-6],[1,-10],[2,-14],[1,2],[1,0],[2,14],[1,5],[1,14],[0,13],[2,15],[0,23],[1,15],[2,11],[2,8],[1,16],[-2,4],[-1,-2],[1,11],[0,22],[1,13],[1,25],[-1,-2],[-1,-9],[-1,4],[1,19],[-1,12],[-1,-1],[-1,-7],[-1,-1],[1,17],[1,11],[2,-2],[1,0],[2,-12],[2,-31],[1,-15],[1,-10],[1,0],[1,21],[3,16],[0,22],[-1,11],[0,-9],[-1,-16],[-2,-3],[-2,3],[1,23],[2,16],[-1,14],[-3,1],[-1,2],[-2,19],[1,11],[3,6],[3,14],[2,17],[2,18],[1,11],[0,6],[-1,-2],[-1,-4],[-3,-14],[-2,-11],[-4,-11],[-2,-2],[-2,-8],[-2,10],[-1,3],[-1,10],[-1,7],[-2,4],[-1,6],[0,22],[-1,13],[-1,12],[1,19],[0,5],[0,9],[-1,6],[-1,1],[-1,-5],[0,10],[1,18],[-1,17],[1,11],[1,-10],[1,3],[-1,32],[0,16],[1,11],[1,10],[1,-1],[1,-11],[2,5],[1,5],[3,-1],[0,7],[0,12],[-1,14],[1,6],[1,7],[1,19],[1,9],[1,-12],[1,-9],[0,-18],[1,-16],[0,-18],[1,-10],[1,-7],[1,-14],[1,-10],[0,-9],[0,-14],[0,-11],[1,-5],[3,-1],[0,3],[1,-3],[0,-16],[1,-5],[1,9],[-1,10],[1,4],[2,-16],[0,-21],[0,-12],[0,-21],[1,-4],[1,12],[2,13],[4,-1],[2,-8],[2,10],[3,0],[2,8],[0,2],[1,-10],[4,-16],[2,11],[3,4],[1,8],[0,7],[0,8],[-1,4],[-2,6],[-1,1],[-1,7],[1,13],[0,13],[0,5],[-4,7],[-2,4],[0,-3],[-2,-6],[-2,4],[1,11],[-1,16],[-1,1],[-1,2],[-1,13],[0,12],[-1,8],[0,13],[-1,16],[0,18],[-1,11],[-1,1],[0,11],[0,14],[0,14],[0,14],[-1,20],[0,12],[1,9],[1,11],[0,20],[2,15],[0,9],[1,13],[1,26],[0,20],[1,-16],[0,-29],[1,-21],[2,-14],[2,9],[1,7],[0,3],[1,14],[0,5],[2,-6],[1,-16],[0,-15],[1,-2],[1,-2],[1,-7],[0,9],[-1,18],[-1,20],[0,21],[-1,9],[-1,22],[0,20],[-2,20],[-1,3],[-1,4],[-1,9],[-2,8],[-1,6],[-1,-6],[1,-16],[0,-14],[-1,1],[0,12],[-1,16],[-1,20],[-2,23],[-1,8],[-1,11],[-3,38],[-1,29],[-1,25],[-2,36],[-1,31],[1,21],[2,31],[1,25],[0,13],[1,18],[0,20],[1,22],[2,26],[2,17],[4,3],[2,1],[3,13],[2,2],[1,0],[2,1],[1,-5],[1,-8],[1,-8],[2,-1],[2,-5],[3,-18],[3,-21],[2,-11],[1,-2],[2,3],[3,8],[3,15],[1,8],[1,14],[0,19],[0,14],[1,19],[0,20],[2,17],[0,10],[0,15],[2,1],[0,17],[-1,16],[0,12],[1,-1],[3,6],[2,15],[0,1],[2,12],[1,0],[1,3]],[[99963,4020],[4,-16],[3,-52],[2,-16],[4,-14],[2,-8],[1,-24],[0,-17],[2,-49],[1,2],[1,2],[2,-26],[2,-4],[0,-28],[5,-9],[2,-2],[2,1],[2,-15],[1,-20],[-1,-16],[1,-6],[0,-18],[-1,-11],[0,-13],[-1,-10],[-1,-21],[-1,-3],[-2,-2],[-2,9],[-2,-5],[-1,-9],[-1,-38],[1,-36],[1,-15],[1,-5],[1,-13],[-2,-34],[0,-27],[-2,-20],[-7,-16],[-5,-30],[-5,-14],[-1,-3],[-1,-37],[-1,-28],[-1,-12],[-2,-5],[-1,-23],[-3,-9],[-2,0],[-3,4],[-2,-5],[-1,17],[-1,2],[-1,19],[-2,9],[-2,20],[-1,-2],[-1,23],[-5,5],[-2,3],[-2,-2],[-1,14],[-1,3],[-1,21],[-2,4],[-2,-9],[0,-3],[-1,13],[0,24],[-1,34],[-3,28],[-2,3],[-4,20],[-1,36],[-1,27],[0,17],[0,26],[2,-5],[2,16],[0,40],[-1,35],[-2,21],[1,22],[0,19],[0,51],[1,5],[1,-1],[3,-1],[4,1],[3,-13],[2,16],[1,4],[0,36],[1,9],[1,-6],[2,11],[1,24],[0,1],[1,13],[3,41],[3,19],[0,9],[2,5],[3,4],[2,-3],[3,-3],[1,-2],[0,24],[0,16],[2,-1],[1,3],[3,-2],[2,6]],[[1299,4013],[1,-12],[0,6],[1,-5],[0,-13],[1,-11],[0,-12],[-1,0],[-2,-3],[0,-4],[-1,-9],[-1,1],[-1,3],[0,11],[0,14],[0,20],[1,24],[0,16],[0,9],[0,-1],[1,-4],[1,-4],[0,-7],[1,-7],[0,-4],[-1,-8]],[[1315,4069],[1,-4],[1,5],[1,-1],[1,-3],[0,-2],[1,-10],[-1,-12],[0,-11],[-1,-1],[-1,8],[-1,6],[-1,10],[-1,-2],[-1,-2],[-1,1],[0,12],[0,12],[1,10],[1,2],[1,-6],[0,-12]],[[893,4100],[-1,-5],[-2,4],[2,23],[2,10],[2,7],[-1,-19],[-2,-20]],[[99544,4150],[1,-12],[0,-16],[2,-17],[2,-9],[1,-21],[1,1],[1,-5],[1,-20],[0,-27],[1,-22],[0,-21],[-1,-11],[1,-12],[0,-17],[2,-24],[1,-10],[-1,-8],[-1,-9],[-1,-3],[0,-18],[-2,-20],[-2,1],[-2,-9],[-2,12],[-2,-6],[0,-14],[-1,-5],[-3,-3],[-1,9],[0,20],[-2,11],[-2,11],[-2,6],[-1,-7],[-2,7],[1,8],[1,19],[-1,86],[-1,33],[0,27],[-2,10],[1,9],[1,20],[1,16],[1,0],[2,5],[1,-9],[1,-12],[2,-2],[-1,19],[-1,20],[1,15],[0,-1],[2,-4],[1,7],[1,-4],[2,-1],[1,7]],[[1725,4252],[-1,-2],[-1,8],[0,10],[0,12],[1,-5],[1,-11],[0,-12]],[[839,4448],[2,0],[1,1],[1,-8],[1,-2],[1,-1],[1,7],[1,-4],[1,-3],[2,-1],[1,-7],[1,-5],[1,-1],[3,-14],[3,0],[2,8],[0,8],[2,-13],[1,-32],[2,-40],[1,-32],[3,-28],[2,-14],[1,-7],[1,7],[1,-11],[0,-12],[0,-21],[0,-12],[-1,-12],[0,-16],[0,-14],[0,-12],[-1,-16],[1,-11],[1,-9],[0,-10],[1,-13],[2,-19],[1,-12],[1,-5],[1,3],[1,16],[1,4],[1,7],[0,-9],[0,-14],[0,-7],[-1,-6],[-1,-20],[-1,-5],[-1,-1],[-2,-7],[-1,-7],[-1,13],[-2,30],[-1,-12],[0,-11],[-1,-10],[-1,-15],[1,-19],[-1,-9],[-1,1],[-1,6],[-1,10],[-2,7],[-1,-1],[0,-3],[-1,-6],[0,-8],[-1,-20],[1,-9],[1,-9],[-1,-17],[-1,-11],[-2,-4],[-1,-2],[0,-13],[1,-14],[0,-5],[1,-6],[2,11],[1,2],[1,3],[1,-5],[0,-7],[0,-13],[1,-12],[1,-10],[1,-20],[1,-13],[0,-21],[-1,-8],[-1,-8],[0,-14],[-1,-4],[-1,-1],[-2,-13],[-1,-5],[-2,-6],[-1,-5],[-2,0],[-1,1],[-1,8],[-1,-1],[-2,0],[-1,11],[1,15],[-1,16],[0,17],[0,14],[-1,23],[0,10],[-1,7],[0,7],[-1,6],[-1,5],[-1,4],[-1,1],[-1,-7],[-1,-9],[-1,2],[-2,4],[-1,12],[-2,14],[0,1],[-1,4],[-1,-5],[0,-3],[-1,-11],[-2,-6],[-1,3],[-2,9],[-2,8],[-1,1],[-1,1],[-1,-2],[0,-2],[-1,-1],[0,3],[-1,2],[1,13],[0,13],[1,16],[1,24],[-1,39],[-1,8],[-1,7],[-1,12],[0,8],[0,16],[-1,18],[-1,13],[0,7],[0,11],[0,15],[-1,8],[1,13],[-1,15],[0,21],[-1,8],[-1,17],[0,21],[0,15],[1,21],[1,17],[2,17],[2,19],[1,19],[1,11],[0,11],[-1,16],[0,11],[1,16],[1,11],[0,-1],[2,-1],[1,3],[2,7],[1,16],[1,11],[-1,10],[0,15],[1,8],[0,9],[1,2],[1,-8],[1,-5],[1,-7],[1,-10]],[[99395,4547],[1,-3],[1,1],[0,-23],[1,-10],[1,2],[1,-4],[1,-8],[1,-16],[1,8],[1,-16],[1,5],[2,-13],[1,-15],[1,-6],[1,0],[1,-12],[-2,-12],[0,-8],[0,-17],[2,-27],[0,-16],[1,-4],[1,-6],[0,-22],[-1,-31],[-1,-26],[-1,-21],[-2,4],[1,-14],[-1,0],[-1,1],[-1,-5],[-1,-4],[-1,-1],[-2,-8],[-1,-9],[0,-19],[0,-18],[1,-14],[0,-20],[2,-26],[0,-16],[-1,-3],[-1,-1],[-1,-10],[-1,2],[-1,-8],[0,-11],[-1,-7],[-2,-11],[0,-10],[-1,-8],[0,-14],[-1,-17],[-1,7],[-1,-8],[-1,0],[-1,-10],[0,-11],[1,-9],[0,-16],[-1,-3],[0,-19],[-1,-9],[-2,4],[-1,-12],[-1,-14],[-1,-1],[0,-9],[0,-11],[-1,0],[-1,4],[-1,1],[0,6],[0,8],[-2,6],[-1,-8],[-1,-6],[3,-28],[2,-5],[2,9],[0,-15],[0,-14],[1,-16],[0,-13],[1,-17],[0,-13],[0,-14],[-2,4],[-2,15],[-1,17],[-1,9],[-1,4],[-1,-13],[0,-15],[-1,10],[-1,2],[-1,-12],[-1,-19],[-1,-12],[0,-11],[1,-25],[1,-29],[1,-11],[3,-5],[2,1],[1,-4],[1,-8],[1,-12],[1,1],[1,-5],[2,2],[1,-1],[1,10],[2,4],[2,4],[1,-18],[0,-1],[-2,-6],[0,-18],[1,-17],[1,-29],[0,-29],[-1,-10],[0,-19],[-2,-11],[1,13],[-1,9],[-1,-2],[-1,-12],[-1,8],[-1,15],[0,6],[-1,-11],[-1,-23],[0,-13],[-1,16],[-1,11],[-2,16],[-1,3],[-1,0],[0,-17],[1,-12],[-1,-18],[1,-22],[-1,-4],[-1,-15],[0,4],[-2,22],[-1,-4],[0,16],[-1,17],[-2,6],[-1,-5],[-1,7],[-1,7],[-1,-9],[-1,6],[0,14],[-1,19],[-1,21],[-1,8],[-1,8],[-1,-10],[-1,-6],[0,-18],[1,-16],[0,-6],[-2,9],[-1,13],[-2,14],[-1,2],[-1,-6],[0,-12],[0,-21],[2,-14],[2,-11],[0,-27],[-2,-36],[0,-15],[-1,8],[-1,15],[-2,7],[-1,17],[-1,5],[-1,7],[-1,-2],[-1,16],[1,17],[1,10],[1,14],[1,7],[0,15],[0,15],[-1,8],[-1,-2],[0,-7],[-3,-21],[-1,9],[-1,1],[-1,-8],[0,-21],[-1,-9],[-2,5],[-2,4],[-1,5],[-1,-13],[-1,-6],[-2,-11],[0,-10],[-2,0],[-2,-17],[-1,-7],[-1,9],[-1,-15],[-1,-5],[-1,-10],[-1,-13],[-2,-18],[-1,-15],[0,-14],[-1,-15],[1,-17],[-2,-5],[-1,-22],[-1,-22],[-1,-15],[0,-27],[-1,-12],[0,-16],[1,-8],[1,-14],[0,-24],[0,-18],[0,-13],[-1,-9],[0,-22],[1,-24],[-1,-22],[-2,-23],[0,-17],[1,-7],[-1,-11],[-1,1],[-1,-4],[-1,-9],[-1,10],[-2,11],[0,15],[-2,20],[0,17],[0,19],[-1,11],[-1,9],[-1,16],[-2,12],[-1,2],[0,16],[-1,10],[-2,5],[-1,5],[-2,16],[0,19],[-1,8],[-2,5],[-1,9],[-2,18],[0,21],[-1,8],[-1,7],[-1,-4],[-1,-14],[-1,-20],[-1,9],[-1,11],[-1,16],[1,17],[-1,12],[0,13],[0,8],[1,13],[1,2],[1,10],[1,10],[1,3],[1,17],[2,16],[1,7],[2,-4],[0,-15],[1,0],[1,12],[1,7],[1,4],[0,9],[1,13],[1,11],[1,14],[1,11],[1,-10],[1,-5],[1,1],[1,-2],[2,6],[0,14],[0,6],[1,21],[1,-3],[1,-2],[1,14],[1,11],[3,-12],[3,4],[0,11],[0,14],[-1,14],[0,11],[-1,5],[1,11],[1,7],[0,13],[0,11],[2,8],[1,12],[0,13],[1,15],[0,20],[1,15],[1,10],[2,18],[2,15],[2,10],[2,-8],[1,-5],[1,14],[1,10],[1,-7],[1,-1],[1,3],[1,0],[1,-1],[1,4],[2,-3],[1,-5],[2,6],[1,2],[1,10],[0,8],[2,11],[1,3],[1,-6],[1,1],[2,-1],[1,4],[1,-1],[1,-5],[2,0],[1,7],[1,11],[1,12],[1,8],[0,9],[0,12],[-1,18],[0,3],[-1,18],[1,7],[1,8],[1,6],[1,3],[1,18],[0,22],[-1,16],[0,14],[0,13],[1,14],[0,15],[0,22],[0,13],[0,21],[0,18],[0,8],[-1,6],[0,7],[1,4],[1,1],[1,4],[1,14],[1,14],[1,13],[0,20],[1,14],[1,9],[1,-1],[1,20],[1,8],[1,13],[0,11],[1,18],[0,23],[0,19],[0,24],[0,12],[-1,14],[1,14],[2,3],[1,10],[0,21],[0,24],[1,20],[1,8],[1,6],[2,7],[1,8],[1,17],[1,10],[2,3],[1,8],[1,14],[1,-7],[1,-15]],[[1568,4644],[0,-21],[-1,-30],[-2,-18],[-1,-30],[-3,-46],[-2,-26],[2,-21],[1,11],[1,0],[3,15],[2,-3],[1,-25],[0,-23],[0,-19],[2,-10],[0,-9],[0,-27],[1,-18],[1,7],[0,30],[-1,29],[1,7],[1,-2],[0,-11],[3,22],[2,24],[1,10],[2,14],[0,-7],[3,-7],[-2,-30],[0,-26],[3,12],[0,-10],[2,-6],[2,14],[2,21],[-1,23],[2,11],[1,-2],[1,-7],[2,4],[0,-17],[-1,-24],[1,-13],[1,-6],[1,-13],[0,-2],[2,19],[1,-4],[1,5],[1,6],[2,12],[0,20],[1,10],[2,1],[0,-13],[-1,-23],[1,-23],[1,-10],[2,-11],[1,-12],[0,-11],[0,-15],[1,-10],[0,-17],[2,9],[1,22],[1,6],[2,18],[1,8],[2,7],[2,-3],[-1,-14],[1,-12],[0,-23],[1,-11],[1,4],[1,18],[1,16],[1,21],[0,18],[2,18],[2,5],[3,8],[2,-6],[3,-7],[2,-5],[1,-12],[1,-15],[0,-18],[2,-14],[3,2],[2,16],[3,-5],[0,19],[-1,19],[1,7],[1,-16],[1,-10],[1,15],[0,24],[1,13],[2,-8],[2,4],[2,-6],[1,-10],[2,-16],[0,-25],[2,-21],[1,7],[1,8],[1,-6],[1,4],[0,22],[-1,17],[-1,19],[3,-1],[2,9],[1,-6],[1,-15],[1,-10],[1,-9],[1,-9],[1,0],[0,2],[1,-6],[4,-4],[2,5],[1,-11],[0,-19],[1,-14],[1,0],[1,12],[-1,19],[3,13],[2,0],[2,-7],[2,15],[1,-5],[3,-8],[3,-10],[4,-7],[2,2],[4,-2],[3,0],[1,-1],[0,-29],[-2,-7],[-4,-2],[-2,-6],[-5,5],[-3,-17],[0,-25],[-5,-16],[-1,11],[-3,-18],[-2,3],[-2,22],[-2,-12],[-5,7],[-5,8],[-3,-24],[-4,-24],[-4,-30],[-7,-13],[-3,4],[-1,3],[-3,0],[-3,8],[-3,25],[-2,12],[-1,-14],[-1,-35],[-4,-9],[-5,8],[-1,25],[-2,5],[-1,-18],[0,-25],[-1,-17],[-3,4],[-4,-7],[-2,22],[-4,-2],[-3,-20],[-4,-36],[-3,-15],[-1,11],[-2,-24],[-2,-14],[-2,20],[-1,41],[0,20],[2,14],[0,13],[-2,-3],[-1,-9],[-2,1],[0,-1],[1,-25],[1,-27],[0,-19],[1,-19],[1,-13],[0,-18],[-1,-6],[-2,25],[0,19],[-2,10],[-2,10],[-2,5],[-2,-13],[-2,-4],[-2,24],[-2,4],[-1,-3],[-3,-9],[-1,-3],[-1,-5],[0,23],[-1,22],[-1,5],[1,-35],[-1,-18],[-1,-5],[-1,-16],[-1,-5],[-1,-17],[2,-14],[1,-11],[1,-18],[-2,5],[-1,-8],[-1,-14],[-2,17],[-1,-8],[-2,8],[0,19],[-2,12],[-3,9],[-2,0],[-1,-9],[-2,-17],[-1,3],[-1,10],[-1,11],[-1,7],[-2,19],[0,26],[2,19],[0,12],[0,20],[0,17],[-1,-10],[-1,-11],[-2,1],[-1,2],[-3,-13],[-1,12],[-2,12],[-1,-19],[-2,-9],[-3,15],[-2,-9],[-2,13],[-1,6],[-2,1],[-1,21],[-1,3],[-1,1],[-2,-14],[0,-29],[1,-13],[-1,-6],[-1,19],[-1,-2],[-1,-1],[-1,0],[-1,-4],[-1,25],[3,43],[-1,13],[-1,27],[-1,2],[-2,-21],[0,-12],[-1,-6],[-1,-16],[-2,-9],[-1,9],[-1,2],[-1,-15],[-2,-17],[-2,1],[-1,-9],[-1,-17],[-1,-8],[-1,-2],[-1,2],[-1,16],[-1,13],[-2,-9],[-2,-3],[-3,4],[-4,-2],[-5,-26],[-1,-26],[-3,-12],[-3,11],[-1,11],[0,-3],[-1,-1],[-2,21],[-2,9],[-1,16],[-3,6],[-1,-6],[-1,-19],[-2,-4],[-1,5],[-1,-3],[-2,19],[0,18],[-1,11],[-1,-9],[-2,4],[-1,-4],[-1,-5],[-2,6],[0,36],[-1,16],[-1,16],[-1,13],[1,26],[0,17],[2,5],[-1,15],[0,6],[-2,0],[-2,-19],[-2,-3],[0,18],[-1,17],[-1,22],[-1,23],[-1,3],[-1,16],[-1,16],[-1,3],[-1,-13],[-1,-2],[0,-12],[-1,-5],[-1,-9],[0,-6],[-2,0],[-1,6],[-1,9],[-1,21],[-1,15],[-1,14],[-1,10],[-1,-9],[-1,10],[0,13],[1,13],[1,15],[0,10],[-1,6],[-1,-2],[-2,-9],[-1,1],[0,11],[-1,14],[0,15],[1,12],[1,11],[2,3],[1,-10],[1,-5],[1,-7],[1,-7],[1,-4],[2,2],[1,3],[1,1],[1,-1],[1,-11],[0,-10],[0,-12],[1,-3],[2,-1],[4,8],[2,8],[2,-2],[3,14],[3,-15],[2,21],[1,11],[2,-1],[1,2],[2,18],[2,7],[1,9],[1,11],[1,-13],[1,-18],[1,-4],[-2,-16],[1,-13],[-1,-18],[0,-19],[-1,-10],[-1,-14],[-1,-14],[0,-11],[2,-1],[2,3],[1,6],[1,15],[2,8],[1,-2],[-1,-17],[-1,-18],[3,-5],[1,15],[1,6],[3,23],[1,28],[1,14],[2,3],[0,-14],[1,-19],[-1,-16],[0,-16],[0,-14],[-1,-12],[0,-11],[1,-3],[2,3],[2,-5],[1,-24],[0,-21],[2,-20],[1,-15],[2,10],[0,14],[0,14],[-1,12],[-1,16],[0,20],[1,9],[1,13],[0,14],[2,6],[1,15],[2,17],[0,20],[1,23],[2,12],[0,1],[1,3],[1,-15],[1,8],[2,-4],[3,8],[1,-5],[2,-6],[1,0],[1,0],[-1,-8],[1,-17],[2,-2],[0,12],[1,26],[3,19],[1,-18],[1,-7],[1,-16],[2,-15],[1,-8],[1,0],[0,10],[-2,13],[-1,12],[0,22],[2,19],[3,11],[3,26],[2,-5],[2,19],[3,11],[2,5],[1,-12],[1,3],[1,-13],[0,-24],[0,-16],[1,-20],[0,17],[1,17],[0,18],[1,-9],[0,-19],[1,-11],[1,-4],[1,15],[0,14],[-1,18],[-1,14],[-1,13],[0,6],[1,1],[0,-13],[1,-11],[1,-7],[0,-16],[1,-5],[0,-21],[1,-28],[1,-18],[-2,2],[0,-9],[1,-6],[1,-5],[1,18],[1,31],[-1,13],[1,7],[2,4],[2,4],[1,25],[2,-2],[1,18],[2,3],[2,6],[1,-4],[0,17],[1,-3],[1,-8]],[[1314,4749],[-1,-14],[-1,2],[-1,7],[-1,16],[0,8],[1,3],[1,-1],[0,-3],[1,-7],[1,-11]],[[1260,4781],[-1,-16],[0,-12],[-1,-17],[0,-9],[-1,-3],[-1,5],[-2,-4],[-1,-7],[-1,1],[-1,7],[1,5],[1,15],[1,6],[1,6],[1,3],[0,8],[1,10],[1,-2],[1,6],[1,5],[0,-7]],[[1016,4686],[-1,-6],[-2,5],[-2,11],[-1,12],[-1,19],[-1,15],[0,13],[0,14],[1,10],[0,12],[1,0],[1,13],[1,2],[1,-3],[2,-10],[2,-11],[1,-20],[0,-11],[1,-9],[-1,-15],[-1,-17],[-1,-24]],[[1120,4965],[-1,-8],[-1,2],[0,13],[-1,13],[0,19],[1,4],[1,2],[1,-3],[1,-13],[0,-16],[0,-6],[-1,-7]],[[98922,5738],[2,-9],[2,0],[2,-3],[1,-3],[1,-1],[3,-6],[1,-14],[2,-20],[1,-9],[1,2],[1,4],[0,-7],[0,-8],[-1,-5],[-1,1],[-1,-4],[-1,-15],[0,-9],[-1,-7],[-1,-9],[-1,-14],[0,-16],[-1,-13],[0,-13],[-1,-3],[-1,-1],[-2,-2],[-1,2],[-2,-2],[-1,-4],[-1,0],[-2,3],[-1,6],[0,9],[-1,10],[-1,8],[-1,8],[0,6],[0,17],[-1,31],[-1,12],[-2,10],[-1,10],[1,15],[0,15],[-1,19],[-1,15],[1,2],[1,-2],[2,-8],[2,2],[1,10],[2,5],[1,-1],[2,-14]],[[1872,5809],[0,-4],[2,8],[1,11],[1,-7],[1,7],[2,-9],[-1,-17],[0,-17],[0,-15],[1,-11],[2,0],[0,1],[1,-18],[1,-13],[2,-18],[3,3],[2,4],[2,9],[1,-11],[3,-10],[2,5],[2,-1],[1,-8],[0,-18],[1,-13],[3,-10],[1,-28],[1,-42],[0,-40],[0,-21],[1,-5],[0,-14],[-1,-1],[-2,3],[-1,-13],[0,-13],[-2,-19],[-3,-15],[-3,-7],[-1,-16],[0,-15],[-3,-12],[-4,-16],[-3,-22],[-3,-21],[-1,-27],[-1,-19],[-1,3],[-2,-21],[-1,-12],[-1,3],[-2,18],[-3,2],[-3,9],[-2,-3],[0,-15],[-2,-23],[-2,-23],[-1,-19],[-3,-8],[-4,11],[-4,-18],[-2,-22],[-3,-25],[-1,-28],[-1,-7],[-1,13],[-2,16],[-1,15],[-1,-1],[-1,-2],[-1,7],[-3,-9],[-2,-13],[-1,14],[-3,-7],[-3,-5],[-1,0],[-3,11],[-1,18],[-1,13],[-2,15],[0,12],[0,23],[1,29],[0,24],[2,40],[0,46],[2,16],[4,18],[2,43],[0,25],[-1,30],[2,6],[1,14],[2,22],[2,19],[-1,34],[-1,19],[1,3],[2,-2],[2,9],[1,19],[1,-1],[2,1],[1,18],[2,-11],[1,27],[3,12],[8,28],[1,18],[3,21],[0,13],[1,16],[4,20],[3,18],[3,-2],[1,-1],[2,-18]],[[1394,5962],[0,-16],[1,-12],[1,-15],[1,-14],[2,-10],[4,-10],[5,-20],[1,-12],[0,-15],[2,2],[1,-5],[1,0],[2,-10],[1,-13],[1,-21],[0,-24],[1,-18],[1,-20],[1,-20],[2,-8],[2,-4],[1,-9],[1,-17],[1,-27],[2,-27],[1,-16],[1,-24],[1,-8],[0,-20],[1,-13],[1,-3],[0,-1],[2,-14],[1,-16],[0,-17],[1,-21],[0,-14],[-1,-18],[0,-11],[0,-15],[1,-22],[0,-14],[-1,-16],[-1,-16],[0,-9],[-2,-11],[-1,-6],[-1,-13],[-1,-17],[1,-12],[-1,-11],[-2,-27],[-2,2],[-2,-6],[-1,-2],[-1,-43],[1,-46],[0,-33],[-4,-33],[-2,-44],[-1,-19],[-2,-4],[-1,2],[-1,-3],[-2,-4],[-4,13],[-3,10],[-1,-12],[-2,-6],[-1,7],[-1,19],[-3,0],[-2,-16],[-1,-15],[-2,-1],[-1,9],[-1,10],[-2,15],[-1,12],[-1,4],[-2,-4],[-1,-18],[-3,-49],[-1,-37],[1,-27],[1,-30],[0,-16],[0,-9],[0,-5],[1,-3],[0,-15],[1,-3],[1,-12],[1,-3],[1,-26],[2,-6],[2,-14],[2,-5],[1,8],[1,-12],[-1,-21],[3,-11],[1,-3],[0,-20],[0,-16],[3,-17],[4,-39],[3,-30],[1,-14],[2,-11],[2,-40],[1,-16],[-1,-12],[0,-12],[-1,-15],[-1,-20],[2,-27],[0,-18],[-2,1],[-1,-14],[-1,-18],[-1,-4],[0,18],[-1,26],[-1,22],[-2,19],[-3,8],[-1,9],[-1,11],[1,12],[0,16],[-2,-5],[-2,-9],[-2,-19],[-2,-14],[-3,-6],[2,-22],[-2,-19],[-1,-16],[-1,14],[1,15],[-2,16],[-5,11],[-2,-4],[-2,14],[-1,2],[-1,-14],[1,-13],[1,-22],[-1,-29],[-1,4],[1,-20],[2,-14],[-3,-19],[-3,-5],[-3,2],[-2,18],[-2,1],[-3,-5],[-2,1],[-2,7],[0,12],[0,19],[-1,19],[1,25],[-2,5],[-1,-9],[-3,-5],[-2,1],[-1,6],[1,8],[1,9],[-1,28],[0,14],[-2,5],[0,-21],[-1,-4],[-1,6],[-1,4],[-1,-11],[-1,-26],[-1,-8],[-3,-22],[-3,-2],[-2,6],[-1,-3],[-1,4],[-2,-11],[-3,-10],[-2,0],[-2,-1],[-3,12],[-3,-12],[-2,9],[-2,8],[0,-19],[0,-22],[1,-21],[1,2],[3,14],[2,6],[2,7],[6,6],[3,-3],[1,-2],[1,-5],[1,-8],[0,-15],[0,-24],[-1,0],[-1,-2],[-2,8],[0,-3],[-2,7],[-2,-1],[-1,-19],[2,-9],[1,-8],[0,-4],[2,-8],[1,-13],[-2,0],[-1,-10],[-2,-8],[1,-15],[0,-14],[0,-14],[1,-18],[0,-12],[-1,-2],[-2,-17],[-1,-7],[-1,-1],[0,-19],[-1,-31],[0,-27],[-1,-10],[1,-12],[-2,20],[-2,29],[-1,3],[-1,4],[-2,-7],[-2,3],[0,16],[-2,33],[0,13],[-1,16],[-1,28],[0,31],[0,15],[1,15],[-2,8],[-2,-18],[0,-16],[0,-24],[0,-10],[-1,6],[-3,9],[-1,-2],[-1,11],[-2,-7],[-2,-11],[-1,12],[-2,20],[1,22],[-2,17],[-2,13],[-1,17],[1,23],[-1,4],[0,-3],[-3,-33],[1,-39],[3,-31],[1,-35],[3,-22],[1,-24],[1,-22],[3,-35],[2,-20],[-1,-12],[-1,2],[-1,-1],[-1,8],[-1,11],[-1,16],[-1,-2],[0,16],[-1,0],[0,24],[-2,26],[-2,3],[-2,-4],[-2,6],[-2,20],[-2,24],[-1,20],[-1,8],[0,-14],[-1,-15],[-1,-12],[1,-23],[2,-17],[2,-15],[1,-18],[2,-5],[3,-17],[0,-16],[-2,-12],[0,-9],[-1,-20],[-1,-6],[-1,-8],[-1,3],[-2,14],[-1,26],[0,22],[-3,6],[-1,-11],[-1,14],[-1,13],[-1,-10],[1,-16],[1,-12],[1,-13],[0,-11],[-1,-1],[-2,8],[0,17],[-1,11],[-1,12],[-1,-4],[-1,-13],[-1,-9],[-1,-19],[-1,-17],[0,-23],[0,-14],[-2,-4],[-1,29],[0,15],[-1,-4],[-1,-19],[-1,-10],[-1,-19],[-1,-17],[-1,3],[0,11],[0,8],[-2,17],[-1,16],[-2,23],[-1,13],[-1,20],[0,27],[-1,30],[-2,-4],[0,-5],[-1,19],[-2,-6],[-1,-14],[1,-5],[0,3],[2,-17],[0,-12],[0,-19],[0,-18],[0,-13],[0,-19],[-1,-2],[0,14],[-1,8],[-2,-16],[-2,-4],[-1,3],[0,-14],[3,-7],[1,-12],[1,-22],[1,-3],[1,-20],[-1,5],[-1,-25],[-3,-23],[-2,-10],[-4,-3],[-2,-10],[-1,18],[-1,10],[-1,20],[-2,1],[-1,5],[0,13],[-3,4],[-1,20],[1,11],[1,19],[-1,11],[-2,-8],[0,-14],[-1,-6],[-1,1],[0,19],[-2,-1],[-2,-6],[-1,0],[-1,-5],[-2,8],[-1,-11],[-1,-2],[-2,12],[-2,13],[-2,-4],[-1,13],[-2,10],[-2,4],[-1,11],[-2,3],[-3,5],[-2,3],[1,25],[-2,-13],[-1,-30],[-2,-17],[-2,1],[0,15],[-1,-2],[-2,-14],[-1,-13],[-2,-9],[-3,9],[-3,15],[-1,2],[-3,0],[-1,0],[0,-15],[-1,-18],[0,-20],[1,-18],[-2,-17],[-3,17],[-1,28],[-3,1],[-3,16],[-1,9],[-1,-4],[-1,-12],[-1,-23],[1,-16],[2,-9],[0,1],[0,-15],[0,-25],[0,-25],[0,1],[-2,-2],[-3,2],[0,12],[-3,-4],[-8,3],[-3,5],[-1,-18],[-2,-21],[0,-11],[-1,6],[-2,12],[-1,12],[-3,1],[-1,-8],[-2,5],[-1,14],[-4,14],[-2,-3],[-2,-3],[-3,6],[-3,6],[-1,-8],[-1,-1],[-3,-12],[-2,-11],[-1,-4],[-2,2],[-5,25],[-3,20],[-1,-4],[-2,-13],[-2,8],[-2,24],[-1,-5],[-2,-2],[-2,8],[-1,-8],[-1,-11],[-1,-17],[-2,-12],[-2,-5],[-2,-3],[1,14],[0,21],[-3,16],[-2,5],[0,11],[0,11],[1,6],[1,5],[1,8],[2,-2],[3,-22],[1,-23],[2,0],[1,17],[1,21],[-1,18],[0,15],[1,-3],[1,-4],[3,0],[3,22],[1,38],[1,2],[1,-16],[1,-19],[4,-16],[2,5],[1,9],[2,3],[4,-5],[3,0],[1,3],[-1,15],[-1,4],[-1,7],[1,18],[0,15],[1,16],[2,9],[3,0],[1,7],[1,-8],[1,-6],[2,14],[1,18],[3,1],[4,6],[3,-12],[1,-13],[0,-22],[1,-18],[-2,-19],[-4,-38],[1,-28],[1,3],[3,9],[2,11],[5,6],[3,41],[1,21],[3,21],[2,-10],[2,-1],[0,-18],[1,-7],[1,-5],[2,-15],[0,-15],[0,-20],[1,-23],[1,-9],[0,16],[0,23],[-1,30],[0,16],[-1,-3],[0,15],[-1,30],[-1,24],[1,26],[2,26],[0,26],[1,22],[0,9],[3,-11],[2,5],[3,5],[1,-7],[0,-16],[-1,-15],[1,-21],[1,-28],[1,-11],[1,2],[1,13],[1,-3],[2,14],[1,18],[2,8],[-2,11],[1,5],[1,16],[-1,10],[0,18],[0,3],[2,9],[3,-2],[3,-27],[3,-16],[2,7],[1,5],[-1,15],[0,18],[1,9],[-2,28],[0,19],[-2,28],[2,5],[0,19],[1,16],[2,18],[1,13],[1,2],[1,-17],[0,-16],[0,-19],[-1,-10],[0,-20],[2,-23],[0,-27],[1,-39],[1,-3],[0,13],[2,31],[0,24],[0,19],[1,10],[1,-7],[1,11],[2,10],[1,-2],[2,-1],[2,3],[-1,-14],[0,-15],[2,-5],[1,-8],[-1,-14],[1,-9],[0,7],[1,1],[1,-1],[1,1],[1,11],[2,12],[2,-6],[3,0],[2,-10],[2,-8],[1,-16],[-1,-28],[0,-15],[2,2],[2,0],[0,4],[0,19],[2,11],[-1,13],[2,8],[-1,16],[0,8],[0,9],[2,-4],[3,-19],[0,27],[2,-6],[1,8],[0,28],[-2,19],[-1,22],[-1,10],[0,9],[0,9],[2,1],[2,5],[2,9],[2,-3],[2,-15],[-1,-22],[0,-21],[1,-24],[2,3],[1,0],[2,5],[0,6],[3,-2],[0,-12],[1,5],[1,13],[1,4],[1,9],[1,-9],[2,-1],[1,-3],[1,12],[1,-19],[2,-7],[1,0],[1,-14],[1,12],[0,15],[-1,22],[1,10],[1,-9],[2,-7],[-1,-20],[0,-22],[1,-25],[-2,-25],[0,-20],[2,21],[1,31],[0,30],[0,14],[2,14],[2,-15],[4,-31],[2,10],[1,12],[-1,8],[-2,11],[-2,23],[-3,11],[-2,18],[1,3],[2,7],[2,13],[-1,19],[0,27],[-1,28],[1,11],[1,9],[2,6],[2,-18],[0,-11],[3,-1],[1,-2],[3,-6],[6,6],[6,-1],[4,-18],[3,-19],[1,-10],[1,0],[0,13],[-2,10],[-3,25],[-1,21],[-2,4],[1,13],[0,15],[-2,9],[-4,-13],[-5,11],[-3,15],[-1,24],[1,5],[1,5],[-1,16],[0,16],[-1,14],[-1,14],[0,25],[2,17],[0,3],[2,-4],[3,-7],[1,-16],[2,-7],[2,6],[1,-14],[1,-6],[1,25],[1,-6],[1,-19],[0,4],[2,31],[2,24],[3,3],[2,-4],[1,0],[0,-14],[3,-20],[2,-25],[1,-28],[1,0],[2,2],[3,13],[2,1],[2,24],[0,19],[1,9],[0,13],[-1,13],[-2,6],[-1,7],[-1,12],[-3,24],[-4,26],[-2,13],[-1,22],[-1,28],[1,18],[0,16],[2,-5],[1,4],[1,-8],[2,3],[3,-8],[3,4],[1,4],[2,-20],[1,-9],[1,8],[0,23],[0,10],[2,1],[2,-12],[1,0],[1,-16],[3,-5],[2,-7],[1,-15],[1,-29],[1,-25],[2,-7],[-1,-23],[1,-16],[1,-23],[0,-8],[1,12],[0,24],[0,28],[0,17],[0,23],[1,15],[0,15],[1,-8],[1,-7],[1,-15],[1,-16],[0,9],[0,21],[2,11],[1,19],[2,10],[0,32],[-1,25],[1,4],[1,-8],[1,-18],[1,0],[1,-21],[-1,-30],[0,-19],[1,2],[2,30],[0,26],[1,12],[1,12],[-1,20],[0,16],[1,4],[1,18],[1,8],[1,3],[2,8],[0,16],[1,1],[2,1],[1,-3],[1,21],[0,33],[0,44],[0,40],[-1,18],[-1,13],[-2,-15],[-2,-2],[-3,3],[-4,10],[-5,6],[-1,3],[0,11],[-1,20],[2,0],[2,-4],[2,8],[3,22],[3,18],[1,21],[-1,9],[-2,-6],[-3,-10],[-3,-10],[-4,-1],[-2,-4],[0,-1],[-1,0],[-1,15],[-3,60],[1,54],[7,16],[2,18],[1,51],[-7,-17],[-11,-111],[3,-22],[4,-77],[2,-33],[-3,-3],[-2,5],[-2,1],[0,-17],[-3,-1],[-3,-3],[-2,11],[0,26],[1,20],[-2,13],[-3,8],[-1,-16],[-1,-3],[0,7],[-1,0],[-1,-17],[-1,-2],[-1,13],[-3,-1],[0,17],[-2,17],[-3,10],[-3,22],[-1,40],[-1,13],[1,11],[1,4],[1,14],[2,17],[2,12],[3,-9],[2,-21],[3,-5],[2,5],[2,-3],[2,-1],[1,8],[1,-5],[1,-14],[2,-24],[1,-4],[1,4],[2,14],[3,26],[3,31],[1,26],[1,22],[1,13],[1,20],[-1,22],[0,32],[-1,18],[-2,24],[0,11],[0,19],[0,16],[1,21],[3,14],[3,-8],[5,-4],[1,-20],[1,-3],[1,10],[-1,11],[0,11],[1,15],[1,17],[1,34],[0,10],[-1,16],[0,11],[1,7],[1,-4],[1,-6],[0,-12],[1,-4],[3,11],[1,7],[3,1],[3,5],[3,14],[2,29],[1,5],[2,1],[0,11],[1,10],[1,10],[2,-6],[4,-7],[3,4],[0,18],[2,-2],[1,-6]],[[98319,6432],[1,-5],[1,3],[1,2],[1,-4],[2,0],[1,-11],[0,-15],[-1,-14],[-2,-9],[-1,-14],[-1,-16],[-3,-7],[-2,-7],[-2,-16],[-2,-22],[-1,-18],[-3,-28],[-1,-24],[-1,-26],[-2,-8],[-1,-16],[1,-12],[1,-17],[-1,-30],[-1,-18],[1,-36],[1,-6],[1,-13],[1,-12],[-2,-20],[0,-9],[0,-22],[1,-5],[2,6],[1,-6],[0,-21],[0,-25],[0,-18],[0,-40],[2,-12],[0,-35],[0,-51],[0,-27],[0,-19],[1,-37],[1,-31],[-1,-4],[-1,7],[-2,-4],[-1,1],[-1,12],[-1,10],[-2,16],[-1,-4],[-2,-3],[-1,3],[-1,-1],[-2,-12],[-2,-7],[-2,-12],[-1,-7],[-2,6],[-1,9],[0,20],[1,0],[0,10],[0,11],[0,20],[0,2],[-1,11],[-2,5],[-1,-2],[-1,-16],[-1,21],[-1,2],[-2,7],[-1,8],[0,23],[0,10],[1,12],[1,16],[0,25],[-2,5],[-1,-7],[-1,-12],[-2,-10],[-1,32],[-1,13],[-1,0],[-1,0],[-1,1],[-2,1],[-1,2],[-2,-3],[0,-5],[0,-18],[-1,0],[0,-15],[-1,-18],[-1,6],[-1,8],[-1,-8],[-1,8],[-2,-16],[-5,-22],[-2,-4],[-1,5],[-2,-8],[-3,0],[-2,3],[-1,-8],[-1,2],[-1,4],[-1,9],[-1,11],[-1,9],[-1,5],[-1,0],[-2,5],[-1,9],[-1,0],[-1,-3],[-1,-7],[-1,2],[-1,2],[-1,-12],[-1,0],[0,17],[-1,16],[0,12],[-1,7],[-2,12],[-3,7],[-2,-1],[-1,-2],[-2,4],[-1,1],[-1,-4],[-1,7],[1,12],[1,15],[1,17],[0,12],[1,16],[1,20],[1,13],[0,22],[1,14],[1,-3],[2,4],[1,-2],[0,9],[1,-4],[1,-14],[2,1],[1,9],[0,19],[1,-3],[1,-7],[1,-5],[1,11],[0,7],[1,13],[0,22],[1,6],[0,17],[1,23],[1,-5],[1,8],[0,-12],[2,-5],[1,-10],[1,-9],[2,-18],[1,-2],[1,-9],[1,9],[1,1],[1,-10],[1,-3],[1,6],[1,-8],[1,4],[1,12],[1,10],[2,4],[0,9],[1,-2],[2,-1],[1,9],[1,19],[1,22],[1,15],[0,12],[3,17],[0,14],[-2,26],[1,1],[1,-9],[1,2],[0,18],[0,9],[1,-12],[1,9],[2,2],[1,-4],[1,0],[1,-3],[1,4],[1,-9],[0,-11],[1,-9],[1,6],[1,19],[0,14],[0,22],[0,11],[1,15],[1,9],[0,18],[0,15],[0,16],[0,-3],[1,-1],[1,8],[0,4],[1,1],[1,16],[0,7],[1,-7],[0,-17],[0,-15],[1,-5],[1,2],[1,-12],[1,-13],[1,-2],[1,2],[0,9],[1,5],[2,5],[0,15],[2,20],[1,11],[1,-2],[1,-5],[0,11],[1,7],[1,9],[1,-2],[1,-8],[2,2],[1,1],[1,-3],[2,1],[1,1],[1,-7],[1,4],[4,13],[1,0],[1,-3],[1,3],[1,2]],[[2210,6186],[-2,-17],[-1,-13],[-1,-18],[0,-24],[-1,-5],[-1,14],[-1,5],[-1,-8],[-2,-2],[-1,6],[-2,5],[-2,6],[-2,26],[-1,22],[-2,2],[-1,-29],[-1,-31],[-2,-11],[-1,12],[0,24],[0,18],[-1,21],[-1,23],[0,22],[0,25],[0,39],[0,33],[1,45],[3,33],[1,17],[1,16],[1,16],[3,22],[3,10],[3,20],[1,7],[1,-14],[2,-10],[0,-7],[1,-14],[1,-12],[1,-4],[1,-13],[0,-3],[2,-9],[1,-20],[1,-24],[3,-12],[2,-14],[-1,-20],[0,-17],[-1,-20],[0,-16],[-1,-11],[-1,-37],[0,-25],[-2,-29]],[[2237,6678],[1,-18],[-2,-1],[-1,-1],[-2,-3],[-2,-3],[-1,5],[-2,11],[-2,5],[-2,-6],[-2,6],[1,12],[1,18],[1,21],[0,29],[1,22],[1,13],[2,11],[3,-3],[2,-10],[1,-8],[1,-4],[1,-13],[0,-17],[0,-18],[-1,-30],[1,-18]],[[2364,7351],[3,-13],[3,0],[2,9],[2,-14],[3,-10],[1,-3],[0,-7],[2,2],[1,-6],[1,-16],[3,-14],[2,-8],[2,-20],[0,-11],[2,-3],[1,-6],[-2,-21],[1,-10],[2,1],[-1,-18],[-1,-15],[0,-15],[1,-19],[1,-12],[0,-6],[-1,-1],[-1,-9],[1,-17],[-1,-23],[-1,-19],[-3,-41],[0,-16],[-2,-6],[-1,0],[0,-15],[0,-21],[-1,-24],[-2,-24],[-1,-28],[-4,-15],[-2,-1],[-3,-13],[-3,-1],[-3,-9],[-2,7],[-1,27],[0,10],[-1,4],[-3,-5],[-4,-20],[-2,-28],[-3,-20],[-3,-13],[-2,-26],[-1,-38],[-3,-11],[-2,-21],[-3,-42],[-2,-37],[-1,-20],[-2,-25],[-1,-7],[-2,18],[-2,21],[-2,24],[-2,17],[-3,-7],[-2,1],[-2,12],[0,18],[1,11],[0,13],[1,16],[0,20],[0,26],[0,24],[0,26],[1,21],[0,19],[-1,16],[2,25],[1,24],[1,25],[0,26],[-1,30],[1,34],[1,16],[2,10],[2,5],[3,6],[2,2],[3,1],[2,17],[2,11],[2,12],[0,17],[2,32],[2,18],[1,11],[-1,11],[-1,13],[1,21],[1,9],[1,10],[1,10],[1,4],[2,0],[2,-8],[1,0],[0,13],[1,4],[1,-4],[1,-13],[1,-3],[2,7],[1,13],[0,15],[0,19],[1,14],[1,25],[1,5],[2,0]],[[98421,7532],[1,-10],[2,2],[1,1],[1,-4],[1,-14],[2,-2],[1,-4],[1,-20],[0,-14],[0,-11],[1,-7],[1,-19],[0,-22],[0,-15],[-1,2],[-2,4],[-1,1],[-2,-2],[-3,-1],[-2,9],[-2,0],[0,-4],[-2,4],[-1,10],[-2,9],[-2,9],[-2,9],[-1,-2],[-1,7],[-1,-3],[0,5],[-2,16],[-1,17],[1,4],[1,4],[0,8],[1,21],[0,8],[1,-14],[0,-11],[2,0],[1,7],[0,11],[1,11],[0,11],[1,10],[1,13],[1,9],[1,-8],[1,-11],[1,-1],[1,-4],[1,-7],[0,-12]],[[98378,7607],[0,-4],[1,3],[1,-12],[1,-3],[2,-7],[1,5],[0,12],[1,-3],[0,-16],[1,-4],[1,7],[1,-9],[0,-3],[1,9],[0,-1],[1,-6],[-1,-22],[0,-4],[0,-2],[1,-8],[1,4],[1,-1],[1,-12],[1,-8],[1,-13],[-2,-22],[-2,1],[0,-15],[0,-12],[-2,4],[-1,10],[0,14],[-2,1],[-1,0],[-1,9],[-1,0],[-1,-1],[-1,7],[0,12],[-1,12],[-1,10],[-1,13],[0,16],[-1,4],[0,10],[-1,15],[-1,9],[-1,10],[1,4],[1,-6],[2,-7]],[[98356,7728],[1,-13],[1,-6],[1,-4],[1,9],[1,-3],[1,-6],[1,-11],[0,-10],[1,-4],[1,-4],[1,-5],[1,-13],[2,-7],[1,-3],[1,-15],[1,-11],[0,-8],[-1,-5],[0,-10],[-1,-8],[0,12],[-1,14],[-1,5],[-1,-10],[-1,-1],[0,10],[-2,6],[-2,-10],[-1,-3],[-1,-2],[0,12],[-1,10],[-2,11],[-2,9],[-1,18],[-1,22],[-1,9],[-1,10],[0,13],[1,5],[1,-2],[1,-4],[1,6],[1,-3]],[[2518,7792],[0,-8],[0,-11],[2,-10],[2,-14],[3,-5],[1,1],[1,-12],[2,-9],[2,0],[1,-7],[1,-5],[1,-10],[0,-13],[0,-17],[0,-21],[-1,-20],[0,-23],[0,-21],[-1,-24],[-1,-17],[1,-6],[0,-15],[-1,-3],[0,-2],[-2,-16],[0,-24],[-2,-19],[-3,-1],[-3,-10],[-2,-7],[-2,-3],[-3,6],[-2,15],[-2,4],[-2,-2],[-2,11],[-3,-7],[-1,-14],[-1,-7],[-1,11],[-2,9],[-1,8],[1,18],[1,17],[1,22],[-1,28],[0,22],[0,35],[1,32],[1,37],[0,25],[1,15],[0,17],[0,17],[-1,22],[2,0],[1,7],[2,-1],[1,0],[3,-2],[1,3],[2,5],[0,10],[0,10],[2,-8],[2,-3],[1,-10]],[[2782,7843],[0,-7],[0,-10],[-1,10],[-1,1],[-1,-10],[-2,-24],[-2,-28],[-3,-15],[-1,-16],[-2,-8],[-2,0],[0,5],[-3,-20],[-3,-19],[-2,-4],[0,4],[0,12],[1,1],[2,3],[1,11],[2,18],[2,11],[1,10],[2,17],[1,10],[1,7],[1,4],[1,6],[1,16],[1,10],[1,1],[1,6],[1,9],[1,6],[2,7],[1,0],[0,-16],[-1,-8]],[[2803,8019],[-1,-5],[-2,-8],[-1,-7],[-1,-14],[1,-9],[0,-12],[-1,-1],[-2,4],[-1,-6],[0,13],[1,1],[0,6],[0,16],[2,13],[1,10],[2,6],[2,-7]],[[2615,8307],[0,-9],[1,8],[0,11],[1,-1],[1,2],[1,-6],[0,-20],[1,-16],[2,-4],[1,13],[1,3],[2,11],[1,-7],[0,-11],[3,4],[1,-2],[0,-19],[1,-16],[-1,-19],[2,-14],[2,-7],[2,0],[2,0],[1,-15],[1,-17],[0,-7],[-2,-13],[0,-20],[1,-13],[-1,-11],[2,-1],[0,-8],[-1,-17],[-2,-14],[-2,-18],[0,-16],[0,-8],[-1,-12],[1,-15],[1,-16],[1,-3],[1,-8],[0,-14],[0,-9],[0,-9],[-2,7],[-1,-17],[-1,-16],[-1,1],[0,-9],[-2,-7],[-1,-10],[0,-13],[-2,-7],[0,-16],[0,-12],[0,-13],[1,-13],[1,5],[0,-7],[1,-15],[0,-18],[1,-12],[0,-17],[-1,0],[0,-7],[-1,-7],[-1,10],[-1,-4],[-1,-11],[0,-7],[-1,-2],[-1,10],[-1,8],[-1,-10],[-1,0],[0,1],[-2,17],[-1,15],[1,1],[-1,7],[-1,16],[-1,17],[0,18],[-1,17],[-1,13],[-2,6],[-1,24],[-1,13],[-1,11],[-2,-3],[-1,-7],[-1,-2],[-2,0],[-2,-7],[-1,15],[-1,27],[-2,10],[-1,-10],[0,3],[-1,5],[-1,-4],[-1,4],[-1,-1],[-1,15],[-1,4],[-1,-5],[-1,19],[0,17],[-2,4],[-2,-4],[-2,-5],[-2,-25],[0,-31],[-1,-10],[-1,-22],[-2,-10],[-1,-16],[-2,-15],[-3,-14],[0,-17],[-1,-17],[-1,-6],[-1,16],[-4,4],[-2,-11],[-1,-13],[-2,1],[-1,5],[0,10],[-1,13],[-2,2],[-1,5],[-1,14],[-1,13],[-3,16],[-1,11],[0,13],[0,12],[0,11],[0,11],[0,21],[0,14],[-1,20],[-1,0],[-1,5],[-1,15],[1,19],[1,17],[0,15],[0,14],[1,14],[1,8],[1,7],[0,17],[1,12],[4,13],[3,-1],[1,2],[1,7],[4,4],[2,-7],[1,0],[2,-10],[2,-8],[2,-7],[2,-8],[1,-10],[1,-2],[1,6],[1,-5],[1,-4],[3,5],[2,11],[2,12],[0,13],[0,13],[0,19],[-1,17],[-1,13],[0,20],[2,-3],[-1,10],[0,11],[0,1],[2,-2],[0,16],[1,-1],[0,6],[1,4],[0,-10],[1,0],[1,5],[1,-1],[1,-1],[1,-5],[2,-4],[1,-6],[1,-1],[2,5],[1,-1],[1,7],[0,7],[1,-5],[0,8],[2,6],[2,-4],[1,-1],[0,14],[0,17],[0,11],[1,10],[1,6],[1,-3],[0,-5],[2,-1],[1,-10]],[[2783,8401],[1,9],[1,-4],[1,3],[1,2],[0,-9],[-1,-4],[-1,-5],[-1,-6],[0,10],[-1,4]],[[2783,8401],[-2,-24],[-1,4],[-1,3],[1,11],[0,10],[1,9],[0,-15],[1,5],[1,-3]],[[2536,8469],[2,-9],[3,-19],[2,-5],[3,-20],[1,-10],[1,7],[1,6],[1,-3],[-1,-12],[0,-13],[1,-22],[-1,-21],[0,-14],[1,-12],[-1,-14],[0,-12],[0,-18],[-1,-25],[-2,-21],[-1,-12],[-1,-16],[-2,-17],[-3,-15],[-2,-7],[-1,-15],[-2,-9],[-2,17],[-2,18],[-2,9],[-2,2],[-2,6],[-1,6],[-1,7],[-1,16],[-1,30],[-1,34],[-2,21],[-2,5],[0,10],[-1,13],[1,17],[2,9],[3,19],[2,22],[0,30],[1,15],[1,3],[1,16],[1,1],[2,-6],[3,8],[3,1],[2,-1]],[[2979,8762],[1,-8],[1,-15],[-1,-6],[0,3],[-1,3],[-2,-8],[-1,-5],[-1,3],[-1,12],[0,11],[0,7],[-1,-5],[-1,-8],[0,-4],[-1,6],[1,11],[1,11],[1,8],[1,16],[1,7],[0,-6],[0,-14],[3,-19]],[[2995,8831],[1,-16],[-2,2],[-1,0],[0,10],[1,6],[1,-2]],[[98064,8852],[1,-7],[2,0],[4,3],[3,2],[1,-12],[3,-6],[1,-3],[2,-16],[2,5],[1,-1],[1,-21],[-2,-20],[0,-30],[1,-5],[1,9],[1,-15],[2,-3],[2,11],[1,-6],[2,-17],[3,-7],[1,-6],[0,-4],[1,17],[1,20],[1,1],[1,-11],[1,7],[1,12],[0,14],[1,20],[3,20],[2,12],[3,9],[6,0],[4,-16],[3,-10],[2,-14],[1,-14],[1,4],[1,1],[2,-11],[1,6],[2,17],[2,14],[3,12],[4,-14],[3,-14],[1,-13],[2,-20],[2,-13],[1,1],[0,-15],[2,-6],[1,-18],[1,-20],[0,-21],[1,-11],[0,-14],[-1,-14],[-1,-15],[-1,-15],[-1,-8],[0,-14],[-1,-13],[-1,-7],[-1,-7],[-1,-7],[-1,-6],[-1,-6],[-1,-3],[-1,-9],[0,-22],[1,-19],[1,1],[1,0],[1,2],[1,3],[1,5],[1,2],[1,-4],[1,0],[1,-9],[-1,-10],[-2,-18],[0,-16],[1,-7],[2,0],[3,1],[1,12],[1,6],[0,15],[1,12],[0,13],[2,14],[1,9],[1,8],[2,22],[1,15],[1,-1],[2,2],[2,3],[2,16],[3,7],[1,-1],[0,-1],[1,-10],[0,-15],[-1,-8],[-1,-12],[0,-7],[-2,-8],[0,-19],[0,-17],[2,-6],[0,15],[1,10],[0,6],[1,5],[1,9],[1,3],[3,-12],[1,-1],[1,-10],[2,-8],[2,-1],[2,-14],[1,-14],[0,-24],[-1,-14],[2,-4],[0,-10],[0,-9],[-1,-6],[0,-23],[0,-15],[-1,-15],[0,-20],[-2,-14],[-2,-9],[-1,-5],[0,-7],[-1,-10],[0,-15],[0,-6],[-2,0],[-2,3],[-1,-18],[0,-36],[1,-23],[1,-5],[1,0],[1,-9],[2,-7],[2,-4],[1,2],[2,5],[3,-8],[1,2],[2,3],[2,1],[3,0],[1,-8],[2,0],[2,-5],[2,-3],[2,-2],[1,-2],[0,-17],[2,5],[0,4],[2,-16],[1,-5],[2,-12],[2,-9],[2,8],[3,16],[1,3],[0,-13],[-2,-20],[-1,-31],[0,-17],[2,-22],[0,-13],[-2,-2],[-1,-2],[-2,2],[-1,4],[-2,5],[-3,8],[-1,9],[-4,7],[-1,-16],[-1,-7],[-1,10],[-3,-8],[-2,-9],[-1,0],[-1,3],[-2,-7],[0,-11],[-2,3],[-1,3],[-2,-6],[-1,-13],[-1,-21],[1,-21],[1,-28],[-1,2],[-1,11],[-2,8],[-1,5],[1,9],[1,13],[0,24],[-1,11],[-2,10],[-2,5],[-2,10],[-2,16],[-2,29],[-2,22],[-2,19],[-2,11],[-1,19],[-1,10],[-1,0],[-1,-5],[-2,-14],[-2,-18],[-1,-23],[0,-20],[1,-10],[1,-13],[-1,-4],[-1,2],[-2,-3],[0,-1],[-2,-13],[0,-27],[0,-20],[-1,0],[-1,0],[0,-14],[0,-16],[0,-14],[-1,-4],[-1,6],[0,16],[0,21],[-1,6],[-1,0],[-1,-2],[-1,-9],[-1,-15],[1,-14],[1,-11],[1,-13],[-1,-15],[1,-12],[2,1],[1,-14],[0,-10],[0,-16],[0,-15],[-1,-10],[-1,5],[-1,15],[-1,7],[-1,-3],[-1,-1],[-1,1],[-2,-1],[0,-13],[-1,-18],[0,-17],[-2,-9],[-4,0],[-2,8],[-1,13],[-2,19],[1,16],[-1,9],[-1,1],[-1,9],[-1,19],[-2,12],[-2,8],[0,15],[0,17],[0,9],[0,15],[0,21],[-1,14],[0,15],[-1,8],[-1,8],[-1,4],[-2,-8],[0,-21],[-1,-17],[-1,4],[-2,-1],[-1,-3],[-2,-11],[-2,-17],[-3,-7],[-2,-13],[-1,-17],[-1,-17],[-1,-7],[1,-12],[0,-25],[-2,-23],[-1,0],[-1,-16],[-1,-22],[-2,-27],[-2,-4],[-1,-10],[0,-15],[1,-13],[-3,-18],[-1,-32],[-1,-13],[-1,-12],[-2,-10],[-2,-18],[-1,-22],[-1,7],[-1,4],[-2,-14],[-2,0],[0,14],[-2,12],[1,16],[1,35],[-1,26],[-1,21],[-2,19],[0,24],[1,13],[-1,17],[0,12],[0,7],[-2,16],[-2,25],[-3,7],[0,-11],[-1,6],[-2,-16],[-1,-4],[0,2],[-1,-10],[0,-28],[-1,1],[-1,9],[-1,3],[0,11],[-1,2],[-1,16],[-1,17],[-1,12],[-1,9],[-1,2],[-1,-13],[-1,-13],[0,-14],[0,-31],[0,-14],[-2,-15],[-2,-9],[-1,-5],[-1,2],[-1,1],[-2,22],[0,11],[-1,1],[-1,1],[-1,-8],[-1,0],[-1,19],[-1,19],[-1,2],[0,-13],[-2,-6],[-2,10],[1,22],[1,18],[0,8],[2,24],[2,33],[-1,17],[1,16],[1,22],[0,22],[0,25],[1,23],[0,14],[1,31],[0,31],[-1,15],[0,8],[0,17],[1,17],[2,17],[2,17],[1,13],[1,26],[2,8],[0,13],[0,13],[-1,12],[-1,12],[-1,0],[-2,-15],[-1,-14],[-4,-29],[-2,-17],[-2,-1],[-2,4],[-1,11],[-1,13],[-1,0],[-2,-15],[-2,-18],[-1,5],[-1,0],[-2,2],[-1,9],[-2,-7],[-3,-11],[-1,-8],[-2,19],[0,7],[-2,-6],[-2,-14],[-1,-12],[-2,-1],[-3,-22],[-3,-16],[-2,-2],[-1,-1],[0,8],[0,14],[2,5],[-1,16],[2,15],[2,10],[1,18],[-1,25],[0,18],[0,27],[2,42],[3,24],[1,11],[0,18],[0,19],[-1,13],[-2,21],[-1,1],[-2,-1],[-2,-11],[-3,-6],[-2,-5],[-4,-13],[-1,13],[-2,8],[-3,-5],[-3,-27],[-2,-11],[-2,4],[-2,-14],[-3,-9],[-2,-22],[-1,-4],[-1,6],[-2,7],[-1,26],[0,24],[-1,11],[-1,-18],[-1,7],[-1,-6],[-2,-12],[-1,3],[-1,-16],[-1,-5],[-1,20],[0,16],[-1,12],[-1,8],[-2,-5],[0,-3],[-1,-3],[0,11],[1,5],[1,5],[1,5],[1,11],[3,20],[2,10],[2,14],[2,14],[2,15],[1,25],[1,24],[2,14],[2,-4],[0,-10],[1,1],[1,19],[1,9],[1,8],[2,1],[2,-3],[0,7],[1,25],[1,22],[3,23],[3,22],[3,13],[2,4],[3,22],[0,11],[2,4],[1,9],[1,15],[1,16],[1,17],[4,18],[3,1],[4,0],[5,-2],[4,-5],[2,-5],[1,-13],[2,-11],[2,1],[1,3],[0,16],[1,12],[2,4],[0,13],[2,15],[3,7],[4,6],[5,-20],[2,-22],[1,-3],[5,-12],[4,-4]],[[2853,8828],[-1,-3],[-1,1],[-2,7],[1,5],[0,2],[2,6],[0,19],[1,12],[1,7],[0,7],[0,14],[1,13],[1,-10],[0,-9],[1,-12],[-1,-9],[0,-9],[-3,-32],[0,-9]],[[2642,8953],[0,-11],[0,-14],[0,-15],[0,-13],[-1,-12],[0,-16],[2,-6],[0,-8],[0,-21],[-1,-7],[0,2],[-1,2],[-1,2],[-1,-4],[-2,-14],[-1,-21],[-1,-29],[-1,-31],[1,-16],[-1,-11],[-1,-9],[1,-11],[0,-22],[-1,-13],[0,-15],[-3,-13],[0,-3],[-2,-4],[-1,-9],[0,-14],[0,-9],[-1,-3],[-2,1],[-1,7],[-1,12],[-1,1],[-1,24],[0,22],[0,12],[0,11],[-1,5],[-2,-4],[-1,8],[-1,22],[0,18],[0,14],[1,32],[1,35],[1,12],[1,3],[1,9],[-1,10],[-1,5],[0,10],[0,13],[0,12],[0,15],[1,13],[0,18],[1,8],[0,11],[-1,9],[1,13],[1,3],[1,0],[1,-4],[1,-3],[1,-7],[0,-2],[1,4],[1,13],[1,15],[1,10],[1,7],[3,12],[3,6],[2,1],[1,-13],[0,-13],[1,-6],[1,-11],[1,-17],[0,-8]],[[2982,9054],[0,-3],[-1,11],[0,10],[0,11],[1,6],[1,-8],[1,-10],[0,-12],[-1,-4],[-1,-1]],[[2615,9252],[1,-5],[0,-5],[1,-5],[1,-5],[0,-15],[1,-16],[0,-13],[1,-7],[1,-16],[0,-21],[-1,-17],[0,-20],[0,-16],[-1,-12],[-2,-2],[-1,4],[0,5],[-1,-3],[-1,-5],[-1,6],[0,18],[-1,5],[-1,1],[-1,6],[-1,5],[-2,5],[-1,-1],[-1,9],[2,7],[1,11],[0,17],[1,20],[0,23],[1,6],[1,6],[0,13],[0,16],[1,2],[1,-4],[1,7],[1,-4]],[[3419,11128],[1,-6],[1,0],[1,-1],[0,-18],[0,-19],[0,-15],[0,-21],[0,-21],[-1,-20],[-1,-17],[0,-17],[-1,2],[-2,13],[0,18],[0,19],[0,24],[0,16],[0,15],[1,17],[0,18],[0,15],[1,-2]],[[2803,8019],[4,6],[1,7],[2,9],[0,13],[1,13],[0,22],[0,13],[2,22],[1,15],[-2,16],[0,14],[-2,11],[-1,13],[1,3],[1,0],[1,6],[2,-2],[2,1],[2,-13],[1,-4],[0,15],[1,-2],[2,12],[1,3],[2,1],[1,1],[2,-3],[1,8],[3,13],[3,10],[2,24],[2,16],[0,16],[1,22],[0,18],[0,18],[0,19],[0,29],[-1,11],[-2,-5],[0,10],[-1,7],[-1,8],[1,15],[0,15],[1,9],[1,11],[0,21],[0,15],[1,18],[1,0],[1,-6],[3,-3],[1,-2],[1,1],[1,-1],[1,1],[0,-10],[1,-11],[1,-5],[2,4],[3,20],[1,7],[1,5],[1,-9],[1,8],[2,3],[0,10],[1,14],[1,3],[0,-14],[1,-6],[1,4],[0,2],[1,9],[0,13],[1,8],[0,10],[0,13],[1,6],[1,11],[-1,9],[-1,7],[-1,9],[-1,9],[0,11],[0,14],[1,5],[0,11],[0,19],[0,19],[1,12],[0,20],[-1,18],[-2,11],[-1,5],[-1,14],[1,7],[1,6],[-1,8],[1,5],[1,6],[1,15],[-1,5],[1,12],[0,4],[1,4],[0,20],[-1,13],[1,13],[1,-9],[1,0],[1,20],[1,5],[0,-15],[-1,-16],[1,-10],[1,5],[0,13],[1,7],[2,11],[1,3],[2,7],[2,9],[1,7],[1,-9],[0,8],[0,8],[1,7],[1,7],[0,18],[0,10],[-1,6],[-1,-1],[0,16],[1,18],[1,-2],[0,-5],[2,6],[1,11],[1,13],[0,20],[2,17],[1,36],[1,-5],[1,3],[2,3],[-1,7],[-1,9],[-1,-2],[0,12],[1,15],[0,20],[1,17],[0,15],[-1,21],[0,17],[-1,12],[-1,11],[-1,8],[-1,12],[-1,6],[-1,2],[-1,8],[-3,24],[-1,15],[0,16],[0,20],[0,11],[0,11],[0,11],[1,12],[1,9],[0,7],[0,11],[0,17],[-1,16],[0,12],[0,14],[1,16],[0,13],[0,10],[1,14],[0,17],[0,19],[0,6],[1,-10],[1,2],[1,2],[1,-4],[2,31],[0,12],[1,17],[0,16],[0,20],[1,15],[1,9],[1,1],[1,14],[0,12],[1,11],[1,7],[1,-1],[1,6],[0,10],[1,9],[1,8],[1,7],[0,10],[2,10],[1,-1],[2,1],[1,6],[1,10],[0,15],[1,22],[1,8],[1,14],[0,14],[0,15],[0,19],[2,9],[1,-2],[1,-5],[2,-2],[2,2],[2,16],[1,10],[1,0],[1,13],[5,72],[1,17],[2,25],[0,26],[0,20],[0,14],[1,11],[2,6],[0,8],[1,-9],[6,-35],[1,-8],[0,-13],[1,-21],[1,-2],[1,-6],[2,-12],[1,-11],[2,-8],[1,3],[1,-9],[2,2],[2,1],[3,9],[2,8],[2,8],[1,12],[2,19],[1,7],[0,21],[0,13],[1,1],[1,6],[1,-5],[2,-2],[1,5],[1,6],[2,-5],[2,-14],[1,-18],[-1,-18],[1,-15],[1,-20],[1,-10],[2,0],[1,-1],[2,7],[2,12],[2,7],[2,7],[4,4],[2,-5],[1,-11],[0,-14],[2,-15],[1,1],[3,25],[2,29],[-1,25],[-1,20],[0,10],[1,13],[1,6],[1,6],[1,11],[-1,57],[-1,15],[-2,3],[0,-10],[-1,-7],[-1,-6],[-1,0],[-1,0],[-1,7],[0,15],[-1,9],[0,16],[0,16],[1,6],[1,11],[-1,25],[-1,17],[-1,7],[-1,2],[-1,4],[-1,6],[-2,-3],[-1,-1],[-1,4],[-2,1],[-1,-1],[-2,3],[-1,7],[-2,9],[-1,9],[-1,14],[0,10],[1,14],[0,16],[1,3],[1,2],[1,11],[1,3],[1,-9],[1,3],[1,15],[0,19],[2,44],[2,63],[1,44],[1,22],[1,28],[0,20],[-1,10],[-2,9],[-1,0],[-1,6],[-1,7],[0,14],[1,14],[0,12],[-1,11],[0,7],[-1,11],[-1,17],[1,19],[1,22],[1,12],[1,13],[1,8],[1,4],[1,4],[0,22],[1,9],[1,17],[5,71],[1,22],[2,19],[1,15],[0,10],[1,15],[0,18],[0,7],[0,18],[2,7],[1,1],[1,-2],[0,-9],[1,-3],[1,3],[1,8],[1,1],[1,6],[1,14],[1,12],[1,1],[1,4],[1,14],[1,1],[1,7],[12,114],[1,14],[0,13],[0,12],[1,16],[1,0],[1,7],[1,11],[1,-1],[2,7],[2,6],[2,2],[1,3],[1,11],[1,-5],[2,7],[1,8],[1,6],[2,12],[2,11],[1,9],[1,-6],[1,-5],[1,-1],[1,8],[1,6],[1,3],[1,11],[1,7],[1,8],[1,-2],[2,-2],[1,4],[2,6],[2,13],[2,8],[1,6],[0,7],[0,11],[1,7],[0,-3],[1,-13],[0,-14],[0,-16],[1,-6],[1,-3],[2,-1],[0,3],[2,2],[1,-7],[1,8],[2,4],[1,-1],[2,8],[1,7],[1,2],[1,2],[0,10],[1,9],[1,9],[1,3],[1,4],[1,-5],[1,-1],[1,-3],[2,-5],[2,-5],[0,-8],[1,-5],[1,-9],[2,-8],[1,-8],[1,-16],[-1,-17],[-1,-22],[0,-19],[1,-12],[2,-7],[1,-10],[1,-9],[1,-11],[1,-8],[1,-6],[1,-4],[3,-6],[2,-7],[3,-9],[1,-5],[2,0],[2,-4],[1,-1],[1,-1],[1,0],[2,1],[2,0],[1,2],[2,0],[2,0],[4,-5],[4,-5],[1,6],[3,5],[1,5],[1,3],[1,-8],[1,-16],[0,-15],[0,-22],[1,-20],[0,-22],[-1,-26],[0,-17],[-2,-34],[-2,-24],[-2,-34],[-1,-12],[-2,-21],[-2,-18],[-3,-24],[-2,-23],[-2,-31],[0,-11],[-1,-14],[0,-11],[-1,-21],[1,-24],[0,-14],[0,-17],[1,-19],[1,-11],[1,-8],[1,-17],[0,-18],[0,-20],[-1,-13],[0,-12],[0,-17],[1,-14],[0,-24],[0,-19],[-1,-13],[-1,-3],[-1,-8],[0,-16],[-1,-10],[-2,-8],[-1,-13],[-1,-14],[-1,-9],[-1,-3],[-1,1],[-3,-5],[-1,-4],[-1,-6],[-1,-23],[-2,-27],[-4,-3],[-1,-13],[-2,-7],[-1,-5],[-1,-3],[-1,-7],[-2,-16],[-2,-6],[-1,-11],[-2,-10],[-1,-5],[0,-6],[-1,-7],[-1,-10],[-2,-12],[-1,-6],[-1,-13],[-1,-13],[0,-1],[-1,-1],[0,-9],[-2,-18],[-1,-12],[-2,-11],[-2,-9],[-1,-13],[-2,-12],[0,-7],[-2,-4],[-2,-2],[-2,-12],[-1,-9],[-1,-2],[-3,-7],[-1,-2],[-3,-13],[-4,-24],[-1,-19],[-1,-15],[1,-18],[0,-11],[-1,-10],[-1,0],[-1,2],[-1,-1],[-1,-6],[-1,-4],[-3,-11],[-2,-3],[-3,-10],[-1,-5],[-1,-4],[-1,-1],[-2,-12],[-1,0],[-1,-5],[-2,-8],[-1,-4],[-1,-7],[-2,-9],[-1,-3],[-1,13],[0,11],[-1,3],[0,-11],[1,-17],[-1,-7],[-1,-1],[-1,3],[-2,-7],[-2,-12],[-2,-9],[-1,-1],[1,17],[-1,5],[-1,-13],[0,-13],[0,-5],[-1,-7],[-1,-5],[-2,-4],[-1,-6],[0,-13],[-1,-13],[-1,-3],[-1,-11],[-1,-12],[-1,-4],[-1,-5],[-1,-12],[1,-14],[-2,-8],[0,-4],[-1,-8],[0,-12],[-1,-7],[-1,-2],[0,-8],[-1,-10],[0,-6],[-1,1],[-1,-9],[-1,-9],[-1,-1],[0,-10],[-1,-26],[1,-9],[2,0],[0,-2],[1,-1],[1,-5],[0,-7],[-1,-7],[-2,-12],[-1,-9],[-1,-9],[-1,-3],[-1,-6],[0,-10],[0,-16],[-1,-13],[1,-11],[0,-12],[1,-9],[-1,-11],[-1,-15],[0,-24],[1,-20],[-1,-16],[0,-2],[-1,12],[-1,13],[-1,11],[0,13],[-1,19],[-1,7],[-1,3],[-1,-7],[-1,-6],[-1,-9],[0,-15],[0,-9],[1,-5],[1,-12],[0,-31],[-1,-10],[0,-27],[1,-19],[1,-15],[1,-21],[-1,-2],[-1,-1],[-1,-4],[0,-11],[-1,-17],[0,-1],[-2,0],[-1,-2],[-2,-10],[0,-18],[-1,-7],[-2,-12],[-1,-16],[-1,-11],[-1,-12],[0,-21],[-1,-11],[-1,-6],[-1,-9],[-2,-24],[-3,-41],[-2,-52],[-1,-66],[0,-26],[-1,-11],[-1,-4],[-2,-8],[-2,-14],[-2,-8],[-1,-17],[0,-14],[0,-14],[-1,-7],[-1,-6],[-1,-1],[0,17],[0,22],[0,19],[-1,6],[-1,2],[-1,-1],[-1,-6],[-1,-13],[-1,-14],[0,-12],[0,-12],[0,-3],[-1,-3],[-1,-8],[0,-11],[1,-13],[-1,-5],[-1,6],[-1,15],[-1,14],[-1,-3],[-1,-11],[0,-15],[-1,0],[-1,10],[0,8],[-2,-2],[-2,-7],[-1,-9],[-1,1],[-1,1],[-1,-3],[-1,-9],[-1,-3],[0,-12],[-1,-8],[0,-6],[-1,-8],[-1,-13],[-1,-10],[0,-7],[-1,-7],[-1,-16],[-1,-4],[-1,-2],[0,-10],[0,-11],[0,-4],[-1,-2],[-1,-23],[0,-20],[-2,-21],[-2,-19],[-1,-11],[-1,-15],[-1,-19],[-2,-12],[-2,-3],[-2,2],[-2,-19],[-2,-6],[-1,-15],[0,-20],[1,-21],[1,-11],[0,-18],[1,-15],[-1,-1],[-1,16],[-1,11],[-1,9],[0,17],[-1,12],[0,12],[-1,11],[-2,-1],[-3,-16],[-1,-29],[1,-13],[1,0],[0,-13],[-1,-15],[-1,-12],[-1,-13],[-1,3],[-1,13],[-2,5],[-1,15],[-2,11],[-1,9],[-2,15],[-2,-1],[-2,-20],[-2,-15],[-2,-16],[0,-16],[0,-29],[1,-11],[1,-25],[1,-8],[3,-13],[2,-18],[1,-12],[0,-14],[1,-12],[1,-12],[-1,-14],[0,-8],[0,-6],[-1,-1],[-2,2],[-1,-1],[-2,7],[-1,-8],[-1,-11],[-2,4],[0,19],[-2,29],[0,23],[-1,18],[-1,5],[-2,3],[-1,-2],[-3,-27],[-3,-30],[-2,-6],[-3,9],[-2,-7],[-1,-15],[0,-15],[-1,-16],[-1,-13],[-2,-6],[-2,-27],[-3,-18],[-1,-13],[-2,-22],[-1,-4],[-1,-11],[-1,8],[-1,6],[-1,-10],[-1,-13],[-3,-23],[-1,-13],[-2,-1],[0,-11],[-2,-7],[-2,3],[-1,7],[-2,-2],[-1,-11],[0,-14],[-1,-14],[-1,-15],[-1,-6],[-1,16],[-1,8],[-1,6],[-1,4],[-2,7],[-2,-6],[-2,-20],[-1,-22],[-1,-14],[0,-10],[-1,-9],[-2,-8],[0,-6],[-2,-15],[0,-24],[2,2],[1,-2],[-1,-11],[-1,-7],[-1,-14],[-2,4],[-1,-7],[-2,-8],[-1,2],[-2,8],[-2,4]],[[3431,12272],[0,-10],[-2,7],[-1,5],[0,14],[2,-2],[1,-14]],[[3636,13030],[3,-12],[-2,-12],[-2,-12],[-2,-18],[-2,-23],[-3,-29],[-2,-12],[-1,-5],[-1,-12],[0,-18],[0,-17],[0,-15],[1,-14],[2,-8],[1,-10],[2,-4],[2,-12],[0,-9],[-1,-17],[-2,-10],[-2,-19],[1,-15],[1,-9],[1,-4],[1,-9],[1,-12],[-3,-26],[-2,-8],[-3,0],[-3,2],[-3,-4],[-1,17],[-2,18],[-4,-11],[-2,-19],[0,-11],[1,-13],[1,-6],[2,-19],[2,-18],[2,-17],[1,-23],[1,-8],[-1,-12],[-2,-4],[-1,0],[-2,-7],[1,-11],[2,-6],[1,-14],[0,-13],[-1,2],[-1,2],[-1,-14],[-3,-10],[-2,-2],[-1,-6],[-1,7],[-2,-4],[-1,12],[-2,8],[0,-15],[0,-33],[1,-25],[1,-18],[1,-11],[2,-26],[-2,-2],[-1,10],[-2,12],[-2,-2],[-2,9],[-1,-1],[-1,12],[-2,14],[0,13],[-1,13],[-1,18],[0,18],[-2,20],[-1,13],[-2,5],[-1,-2],[-2,6],[-2,21],[0,24],[-2,31],[-1,34],[0,14],[1,38],[-1,48],[-1,25],[-1,12],[1,20],[1,24],[1,21],[0,-11],[1,-8],[1,-17],[2,-25],[1,-28],[1,-12],[0,9],[1,11],[0,25],[0,26],[1,29],[2,20],[2,2],[2,25],[0,16],[1,1],[0,-6],[1,-20],[1,-22],[0,-15],[0,-19],[0,-37],[0,-33],[1,-23],[2,-3],[0,14],[1,22],[-1,22],[1,2],[1,-2],[1,9],[0,26],[1,23],[1,31],[0,17],[-1,17],[0,16],[-1,18],[1,15],[0,18],[1,15],[1,3],[2,25],[2,9],[2,-20],[2,-21],[1,-5],[1,9],[-1,19],[-1,21],[1,20],[2,7],[2,10],[2,2],[1,-10],[4,-8],[2,24],[1,26],[1,9],[2,-8],[0,-15],[1,-14],[3,-16]],[[3653,13116],[-1,-13],[0,-4],[-1,7],[-1,-3],[-1,-3],[-2,12],[0,9],[0,10],[0,5],[2,9],[1,6],[1,4],[2,2],[-1,-19],[0,-12],[1,-10]],[[3506,13313],[0,-23],[-1,4],[-1,19],[-1,20],[2,15],[3,12],[-1,-18],[0,-10],[0,-11],[-1,-8]],[[3523,13369],[0,-5],[-1,3],[-1,0],[-1,-8],[-2,-14],[-2,-29],[-1,-17],[-1,-18],[1,-13],[1,-7],[1,-4],[-1,-9],[0,-10],[-1,-6],[-1,-17],[-1,4],[-1,4],[-1,2],[-1,-4],[0,-10],[0,-13],[0,4],[1,-9],[0,-14],[-1,-4],[0,-8],[-1,-14],[-1,-5],[0,17],[-1,16],[-1,13],[1,9],[1,8],[1,22],[1,14],[2,14],[1,29],[-1,11],[-1,13],[-1,8],[0,18],[1,28],[3,30],[2,23],[0,10],[1,2],[2,7],[1,0],[2,-10],[1,-18],[1,-12],[0,-20],[-1,-11]],[[3097,13444],[-1,-8],[0,5],[-1,9],[-1,17],[-1,14],[0,10],[1,6],[1,-1],[1,-9],[0,-15],[0,-11],[1,-17]],[[3480,13872],[1,-6],[2,9],[2,-12],[2,-15],[1,-9],[2,-29],[4,-59],[2,-28],[1,-60],[1,-34],[0,-31],[-1,-2],[-3,-14],[-2,0],[-2,-8],[-1,-17],[0,-15],[0,-26],[-2,-29],[-3,-38],[-1,-23],[1,-22],[1,-14],[-1,-7],[0,4],[-1,0],[-2,-16],[0,-8],[1,8],[2,-1],[3,-16],[2,-49],[2,-31],[-1,-9],[-1,-13],[-1,-11],[0,-10],[-2,-8],[-1,-21],[1,-19],[1,-7],[2,-13],[2,-6],[1,3],[1,24],[2,26],[2,19],[2,-9],[3,-8],[0,-8],[-1,-13],[-1,-20],[1,-18],[0,-19],[-2,-27],[0,-19],[-1,-17],[-1,-15],[-2,-19],[-1,-22],[-2,-28],[-1,-15],[0,-11],[2,-3],[0,-7],[1,0],[2,4],[2,7],[1,12],[2,23],[1,18],[0,17],[1,16],[1,11],[1,10],[1,8],[0,7],[2,9],[0,12],[2,9],[1,17],[0,26],[1,23],[1,14],[0,11],[1,-8],[1,-4],[2,-2],[1,4],[3,21],[1,23],[1,13],[2,16],[1,11],[1,6],[2,14],[1,11],[1,5],[2,2],[1,2],[0,-69],[2,-13],[0,-1],[1,23],[0,47],[1,7],[2,18],[-1,25],[1,14],[0,3],[2,7],[0,29],[-2,29],[0,20],[0,14],[1,85],[2,-2],[4,-22],[2,16],[0,25],[0,14],[-1,5],[0,9],[0,28],[0,36],[3,59],[1,9],[1,24],[3,25],[2,27],[0,25],[1,18],[1,-3],[1,-13],[1,-11],[1,-11],[1,-16],[0,-18],[0,-39],[-1,-26],[0,-26],[-1,-11],[-2,-33],[-1,-25],[-2,-20],[1,-27],[1,-23],[2,-20],[1,5],[1,8],[1,10],[1,0],[2,-14],[1,-7],[2,10],[1,19],[2,22],[1,22],[2,20],[1,7],[1,-1],[2,-6],[2,2],[1,14],[0,11],[-1,17],[1,19],[2,28],[2,-13],[2,-12],[2,-28],[-1,-18],[1,-39],[0,-31],[-1,-14],[1,-18],[1,8],[1,4],[0,-6],[1,-14],[1,-20],[-1,-44],[-2,-47],[0,-22],[-2,-3],[-2,-3],[-3,-15],[0,-16],[2,2],[2,1],[5,23],[3,25],[1,33],[1,21],[0,36],[1,2],[1,-11],[1,-18],[2,-6],[2,3],[1,-4],[0,-11],[-2,-10],[-2,-21],[0,-28],[0,-15],[1,-19],[-1,-22],[0,-18],[-1,-10],[-1,9],[-2,-8],[-2,-7],[-3,-3],[1,-17],[1,-24],[1,-33],[0,-19],[-1,-9],[-2,-6],[-1,-9],[-3,-5],[-3,-9],[-3,-8],[-3,-2],[-4,-8],[-1,2],[-2,-7],[-1,11],[-2,16],[-1,31],[0,25],[-1,23],[-1,5],[-1,-16],[-1,-21],[-1,-24],[1,2],[0,-15],[0,-17],[0,-16],[-1,-36],[0,-20],[-1,-12],[-1,-14],[-1,-11],[-2,-13],[-3,-11],[0,-11],[-1,-13],[0,-24],[-2,-23],[-5,-15],[-3,-3],[-3,-6],[0,-8],[1,-11],[3,-29],[1,-21],[1,-14],[1,-6],[-1,-7],[-2,-12],[-3,-11],[-2,-27],[-3,-7],[-1,10],[-1,11],[-1,1],[0,-13],[1,-15],[0,-11],[-1,-12],[-4,-8],[-2,0],[-4,7],[-4,7],[-3,0],[-3,-14],[-2,-8],[-2,-1],[-1,-1],[-1,-12],[2,-8],[0,-15],[1,0],[1,10],[3,3],[2,11],[2,-19],[3,-9],[3,1],[1,-4],[1,-9],[0,-10],[-1,-16],[-2,-11],[-4,-22],[-1,-20],[-3,-22],[-1,-2],[-1,-15],[-1,2],[-3,-11],[-2,-9],[-1,-1],[-1,-12],[-2,5],[-1,-12],[-2,-15],[-2,-4],[-4,-5],[-2,-4],[-2,-4],[2,-10],[5,0],[2,-2],[2,-3],[2,8],[3,-9],[1,-2],[0,-9],[-1,-24],[-1,-16],[-2,-15],[-2,-5],[-1,-6],[-3,-19],[-1,-4],[-1,1],[-2,-34],[-1,-16],[-1,-10],[-1,-12],[1,-2],[1,9],[1,11],[1,3],[1,16],[2,11],[2,-6],[-1,-18],[1,-6],[2,11],[2,14],[1,9],[2,-3],[1,-1],[2,21],[1,-5],[-1,-24],[0,-22],[2,-6],[-2,-31],[-1,-27],[-1,-3],[-2,2],[-1,-6],[-2,-9],[-3,-30],[0,-17],[2,17],[1,10],[1,6],[2,5],[1,-4],[2,5],[2,14],[2,20],[1,19],[1,29],[0,10],[1,14],[1,14],[0,20],[-1,18],[0,16],[3,24],[3,12],[1,-1],[1,-18],[0,-8],[2,-5],[0,-11],[2,-18],[-1,-24],[-1,-41],[-1,-38],[0,-18],[1,6],[1,22],[1,21],[0,16],[1,14],[2,-2],[-1,14],[0,19],[0,24],[0,18],[1,34],[-1,29],[1,26],[2,23],[2,17],[2,11],[4,33],[3,19],[1,7],[1,-2],[1,-9],[1,-18],[1,-10],[1,-13],[0,-28],[-1,-28],[0,-25],[1,-8],[1,9],[2,7],[2,-5],[1,-1],[1,-3],[0,-14],[-1,-18],[0,-22],[0,-15],[2,13],[1,14],[0,13],[0,20],[0,17],[-1,22],[-1,21],[-1,20],[0,24],[0,23],[1,-4],[0,-6],[1,6],[0,17],[0,17],[0,34],[1,6],[1,6],[1,13],[0,16],[3,23],[1,6],[1,0],[1,-1],[1,-6],[1,-10],[1,-23],[1,-41],[1,-18],[0,-19],[0,-16],[1,-11],[0,-17],[0,-25],[-1,-26],[-2,-39],[-1,-17],[0,-17],[2,2],[2,8],[2,15],[3,0],[2,-11],[2,-5],[1,-10],[2,-28],[2,-10],[0,-22],[0,-14],[1,-18],[0,-20],[0,-15],[0,-17],[-1,-10],[-1,2],[-1,0],[-2,-3],[-1,-2],[1,-16],[1,-12],[0,-13],[0,-13],[-2,-13],[-1,-3],[-2,5],[-2,-6],[-2,-6],[0,-19],[-1,-12],[0,-12],[-1,0],[-1,6],[-1,6],[-2,11],[-1,19],[-1,16],[0,15],[-1,18],[-1,0],[-1,-17],[0,-19],[1,-11],[1,5],[1,-6],[-2,-13],[0,-3],[0,-14],[0,-14],[-1,-19],[-1,-17],[-1,1],[-2,-3],[-1,1],[0,12],[0,21],[-1,25],[0,28],[0,11],[-1,1],[-1,-1],[-1,-14],[0,-18],[0,-13],[0,-25],[0,-8],[-2,12],[-1,5],[-2,4],[-1,15],[-1,2],[-2,-7],[0,-19],[1,-18],[2,-26],[1,-25],[0,-20],[-1,-14],[-1,20],[-2,15],[-2,1],[-1,5],[-1,10],[-1,0],[0,-19],[0,-17],[1,-12],[-1,-11],[-3,-24],[-1,-21],[0,-19],[0,-14],[-2,4],[-2,20],[-2,17],[0,22],[-1,3],[-1,-11],[-2,-16],[-1,3],[-3,29],[-3,16],[-1,-5],[0,-18],[2,-30],[0,-24],[1,-11],[-1,-13],[-1,-5],[-1,7],[-3,23],[-1,20],[-2,31],[-3,15],[-1,1],[0,-15],[1,-26],[2,-27],[1,-28],[-2,-20],[-4,-16],[-1,-1],[0,-14],[1,-14],[1,-12],[1,-10],[1,-4],[1,-2],[1,0],[2,-7],[1,-11],[1,-22],[1,-14],[1,-12],[0,-20],[1,-39],[0,-37],[-1,5],[-2,25],[-2,38],[-2,30],[-2,13],[-1,11],[-2,15],[-2,3],[-1,-15],[-1,-16],[1,-4],[1,-3],[0,-10],[-1,-32],[0,-31],[0,-35],[0,-44],[-2,-40],[-2,-26],[-1,2],[-1,16],[-3,18],[-2,-6],[1,-14],[0,-13],[3,-47],[1,-30],[1,-17],[2,-19],[-1,-16],[-1,2],[-2,11],[-2,15],[-1,14],[-1,21],[-2,26],[-2,20],[-1,20],[-1,29],[0,18],[-1,39],[0,33],[-1,14],[0,6],[-1,5],[-1,-15],[0,-17],[0,-3],[-1,7],[-1,19],[-1,13],[0,20],[-2,22],[0,19],[-2,12],[0,-14],[0,-18],[0,-18],[0,-17],[1,-18],[0,-18],[-1,-4],[1,-24],[3,-47],[1,-29],[0,-27],[1,-17],[1,-20],[0,-20],[0,-14],[2,-28],[0,-19],[-1,-18],[-1,-19],[0,-4],[-1,0],[-2,12],[-2,6],[-1,2],[-2,11],[-1,17],[-1,9],[-1,5],[0,3],[-1,-5],[-1,-3],[-1,5],[-1,14],[-1,11],[-2,40],[0,22],[-2,26],[-1,6],[0,-11],[0,-11],[1,-13],[-1,-11],[-1,-12],[0,-22],[0,-18],[1,-13],[3,-24],[4,-18],[3,-9],[1,-9],[2,-15],[1,-31],[1,-17],[0,-6],[2,-5],[1,-4],[0,-13],[0,-16],[1,-10],[-1,-13],[0,-16],[-1,-21],[-1,-13],[-2,-9],[0,-5],[-1,9],[-2,6],[-1,13],[-2,6],[-1,17],[0,11],[0,28],[-1,11],[-1,-11],[0,-7],[-5,-13],[-1,16],[-2,14],[-1,8],[1,17],[0,21],[-1,-9],[-1,-19],[-1,-7],[-1,20],[-1,21],[0,16],[0,21],[-1,21],[-1,20],[-1,-11],[-1,-3],[-1,10],[0,23],[-1,0],[-1,22],[-1,30],[-1,60],[1,44],[-1,1],[-2,-16],[-2,-17],[-2,-3],[0,-8],[0,-11],[0,-24],[1,-20],[1,-15],[0,-19],[1,-21],[3,-29],[1,-8],[0,-6],[-2,-6],[-1,-30],[-1,-15],[-1,-10],[1,-7],[1,2],[1,-6],[2,-14],[0,-16],[-1,-24],[1,-23],[4,-34],[3,-15],[0,6],[1,-33],[0,-27],[0,-38],[0,-21],[-2,-2],[-1,-6],[-1,-12],[0,-10],[1,-21],[1,-26],[0,-23],[-1,-7],[-2,-2],[-2,8],[-3,26],[-3,23],[-1,25],[1,22],[0,18],[-1,7],[-2,11],[-2,3],[-1,-2],[0,-9],[1,-18],[-1,-31],[-1,-20],[0,-21],[0,-13],[2,-27],[-1,-20],[-1,-6],[0,14],[-1,6],[-2,12],[-2,8],[-1,8],[-1,7],[0,16],[-1,15],[0,13],[1,11],[0,12],[1,17],[1,22],[-2,18],[-1,10],[0,-16],[0,-25],[-1,-14],[0,-6],[-1,-2],[-2,3],[-1,10],[0,16],[0,16],[0,14],[-1,-3],[-1,10],[-1,21],[1,26],[-1,31],[-1,5],[0,-6],[0,-12],[-1,-16],[0,-9],[0,-22],[0,-26],[0,-13],[0,1],[0,10],[-1,2],[-1,-17],[0,-15],[0,-15],[-1,-33],[-1,-32],[0,-35],[0,-23],[1,-18],[-2,-7],[-2,4],[-2,18],[-3,10],[-1,7],[-1,23],[0,23],[2,16],[2,12],[-1,9],[0,5],[0,13],[1,9],[-1,15],[-3,-25],[-4,-6],[0,1],[0,15],[2,14],[1,29],[-1,11],[0,-7],[-2,-5],[-1,-8],[-1,-23],[-2,-26],[-1,-13],[1,-13],[0,-20],[1,-50],[-1,-21],[-1,-25],[-2,-17],[-1,-16],[-3,-10],[-1,-2],[-1,5],[0,10],[-1,11],[0,14],[1,10],[0,21],[1,11],[2,33],[-1,28],[-1,7],[-1,-9],[-3,0],[-2,10],[0,6],[-2,-10],[-2,-14],[-3,-9],[-1,4],[1,11],[1,8],[2,12],[1,9],[1,-5],[0,14],[1,12],[0,15],[1,14],[1,14],[1,16],[1,23],[-1,-2],[-1,-14],[-1,-10],[0,15],[-1,1],[-2,-19],[0,-17],[-2,-22],[-3,-19],[-4,-17],[-1,-13],[1,-21],[1,-8],[0,-10],[-1,-14],[0,-16],[1,-23],[-1,-18],[-1,-10],[-1,-7],[-2,-6],[-1,-7],[-2,-9],[-2,-7],[-2,3],[-2,-7],[-2,-16],[-2,-17],[-1,21],[-2,26],[-3,4],[-1,-11],[-1,-11],[-3,-23],[-2,-32],[-3,-48],[0,-21],[-2,1],[-1,6],[-2,8],[-2,-8],[-2,-2],[-2,-20],[-1,-41],[-1,-12],[-1,5],[-1,2],[-3,1],[-1,-13],[-2,-18],[-4,-10],[-2,0],[-2,0],[-2,-10],[-2,-3],[0,-6],[-1,-16],[-1,-17],[1,-10],[-1,-30],[-2,-40],[1,-10],[-1,-23],[0,-26],[-1,-11],[-1,-7],[-1,-3],[-2,5],[-2,-7],[-1,0],[-2,6],[-1,1],[-1,0],[-1,-7],[-2,8],[-3,4],[-1,4],[-1,19],[-2,13],[-1,-7],[-2,-20],[-3,-27],[-2,-4],[-1,0],[-3,-12],[-1,-20],[-4,-19],[-2,4],[-1,-17],[0,-6],[0,-10],[0,-11],[1,-13],[1,1],[1,-5],[-2,-9],[-1,-6],[-2,-18],[-2,-35],[-2,-32],[-2,-19],[-1,-19],[-2,-8],[-1,-14],[1,-13],[1,-12],[0,-15],[0,-34],[-1,-18],[0,-5],[-2,1],[-2,7],[0,11],[-1,16],[-1,15],[-1,14],[-2,11],[-1,7],[-1,7],[-2,11],[-2,3],[-3,-8],[-2,1],[-1,11],[0,11],[-2,6],[-2,-5],[0,22],[-2,13],[-2,-4],[-3,-6],[-1,-11],[0,-19],[0,-21],[-1,-12],[1,-8],[-1,-15],[-1,-24],[0,-28],[0,-17],[0,-17],[1,-15],[-1,-6],[-1,9],[-1,7],[-2,5],[-2,-5],[-1,-1],[-1,-14],[-2,0],[0,-6],[0,-13],[0,-14],[-1,-7],[-1,6],[0,15],[-1,5],[0,15],[0,4],[1,8],[-1,28],[-1,13],[-2,13],[-1,11],[-2,7],[-2,11],[-2,5],[-1,-2],[0,15],[-1,14],[-1,5],[0,-10],[-1,-1],[-2,-4],[-1,5],[-1,12],[-2,4],[-1,-9],[-1,-10],[-1,-1],[-2,9],[-1,6],[0,8],[-1,21],[-2,11],[-2,-7],[0,-13],[-2,-6],[-3,1],[-2,11],[1,22],[0,20],[-1,21],[0,15],[-1,7],[-2,13],[-1,2],[-2,-7],[-1,-3],[-1,-1],[-1,7],[-1,11],[-1,7],[-1,8],[-2,16],[0,15],[0,17],[1,10],[1,7],[2,1],[1,1],[2,-11],[2,-6],[1,0],[0,20],[1,15],[1,12],[1,7],[1,3],[0,13],[1,11],[1,11],[1,10],[0,14],[2,1],[1,5],[1,11],[1,7],[1,4],[1,16],[1,7],[2,2],[1,12],[-1,11],[0,20],[1,8],[2,11],[1,-12],[1,0],[1,9],[1,8],[0,14],[-1,12],[2,13],[-1,14],[1,9],[1,-1],[1,11],[1,14],[1,-5],[0,12],[1,7],[1,-5],[2,-3],[0,16],[1,18],[1,2],[2,-1],[1,7],[1,-5],[1,-9],[0,-14],[0,-13],[0,-10],[1,-16],[1,3],[1,17],[1,32],[1,16],[0,12],[1,4],[2,-2],[1,-5],[0,-10],[1,-8],[-1,-13],[0,-33],[0,-23],[1,-5],[1,-1],[1,12],[1,21],[1,22],[0,4],[1,-15],[2,-1],[1,1],[1,-2],[1,-8],[1,-11],[0,-17],[0,-12],[1,-1],[1,6],[1,15],[-1,14],[0,9],[-1,12],[0,17],[0,5],[-1,10],[-1,9],[-1,8],[0,8],[0,9],[1,-10],[1,-2],[1,1],[2,2],[1,-2],[1,8],[0,12],[1,12],[-2,16],[0,19],[1,-5],[2,-6],[1,0],[1,4],[3,-9],[1,-11],[0,-17],[1,-22],[2,-9],[1,6],[2,3],[2,-4],[2,-3],[1,-11],[1,-17],[1,-7],[1,-13],[1,-5],[2,-5],[1,-2],[1,6],[-2,13],[-1,4],[1,16],[0,17],[-1,4],[-1,13],[-1,11],[-1,14],[-1,13],[0,10],[-1,3],[-1,14],[-1,8],[-1,0],[0,-16],[0,-21],[0,-4],[-2,6],[-1,11],[-1,11],[-2,7],[-1,15],[1,-2],[1,-4],[3,5],[1,10],[1,12],[1,-1],[1,-3],[1,0],[1,3],[2,18],[2,6],[1,-3],[2,14],[0,20],[2,24],[0,31],[0,19],[0,24],[1,-2],[2,-5],[2,-13],[1,-9],[2,-5],[2,-11],[2,-3],[3,-6],[1,-4],[0,-9],[0,-15],[1,-19],[1,-17],[1,-13],[1,-20],[2,-13],[0,4],[2,0],[1,8],[0,15],[-1,30],[-1,37],[0,37],[-2,42],[1,6],[2,-3],[0,-20],[2,-22],[1,-25],[1,-14],[2,-12],[2,-21],[1,-9],[2,-17],[2,-27],[3,-35],[2,-8],[1,12],[0,17],[0,20],[0,16],[-2,12],[-1,42],[0,15],[-2,18],[0,15],[1,26],[-3,35],[1,17],[0,4],[1,10],[1,3],[1,-8],[1,-13],[0,-13],[2,-7],[2,-9],[0,-15],[1,-17],[1,-10],[1,-8],[4,-21],[0,-10],[-1,-1],[0,-10],[1,-2],[1,5],[0,18],[-1,28],[-2,37],[0,21],[1,1],[4,-3],[3,3],[2,-8],[1,-7],[0,4],[1,7],[-1,6],[-1,16],[0,12],[-3,7],[-2,9],[-2,8],[-2,4],[-3,11],[1,14],[1,8],[2,14],[-1,9],[-1,9],[0,14],[0,15],[1,-1],[0,-10],[2,-9],[2,-4],[3,-2],[2,-17],[2,-6],[3,-6],[4,-18],[3,-16],[5,-12],[1,20],[0,17],[1,12],[1,8],[2,3],[2,-3],[2,-9],[1,-12],[1,-7],[1,3],[1,6],[2,5],[0,13],[-2,14],[-2,13],[-3,16],[-2,11],[0,7],[-1,24],[1,13],[3,1],[4,2],[-1,9],[0,11],[-1,11],[0,14],[0,21],[-1,16],[-2,2],[-1,14],[-3,10],[-2,11],[0,17],[1,14],[2,7],[2,0],[3,-5],[3,-20],[3,-3],[4,-2],[2,-9],[4,-14],[1,-3],[2,-1],[4,-17],[3,-1],[2,15],[3,17],[0,18],[1,27],[2,12],[5,-4],[4,5],[2,20],[1,5],[1,2],[1,-1],[3,-25],[1,-12],[1,-1],[0,-2],[1,25],[-1,15],[-1,11],[-1,16],[-1,10],[-1,13],[-2,-7],[-2,-13],[-4,-21],[-4,-9],[-3,4],[-2,-8],[-3,-46],[-2,-9],[-1,10],[-2,7],[-2,1],[-1,-6],[-1,13],[1,12],[-1,17],[-2,25],[-2,9],[-5,23],[-2,10],[-1,20],[0,24],[-2,16],[0,10],[1,5],[1,5],[1,7],[1,22],[-1,14],[-2,4],[-1,30],[-2,62],[-3,39],[-1,33],[0,39],[1,18],[1,-2],[2,-5],[1,4],[-1,24],[2,26],[5,14],[4,17],[2,-4],[3,3],[1,-16],[1,-16],[0,-8],[4,-25],[2,1],[1,-7],[0,-35],[1,-29],[2,-24],[2,-26],[1,13],[-1,17],[0,19],[-1,13],[1,14],[1,21],[-1,28],[-1,25],[-2,22],[0,11],[1,4],[1,-1],[3,-12],[4,-26],[4,-15],[1,-1],[3,-8],[1,-11],[2,-10],[1,5],[0,9],[-2,13],[-1,3],[-2,8],[-1,6],[1,11],[-2,15],[-2,11],[0,12],[0,18],[0,13],[-1,5],[-1,14],[-1,15],[-3,26],[-5,26],[-2,-1],[-1,12],[-2,12],[-1,11],[1,10],[1,5],[2,14],[1,8],[1,14],[0,12],[-1,0],[-2,-22],[-2,-1],[0,14],[-1,36],[0,7],[6,94],[16,66],[1,-1],[3,-7],[5,0],[3,9],[2,0],[5,10],[5,-4],[3,-7],[0,-16],[0,-24],[-1,-19],[1,-11],[1,-22],[2,-26],[2,-10],[1,-24],[1,-8],[1,-18],[1,-21],[1,-14],[-1,-24],[0,-26],[0,-27],[0,-18],[1,-16],[0,-16],[0,-29],[0,-5],[-2,-34],[0,-36],[0,-5],[1,5],[0,21],[3,28],[0,24],[1,12],[2,32],[2,25],[1,25],[0,-13],[2,-22],[1,-23],[2,-19],[0,-22],[0,-16],[2,-32],[2,-21],[2,-9],[1,18],[0,19],[-2,41],[0,3],[-1,9],[1,13],[1,11],[-1,35],[-2,25],[-1,12],[-1,16],[1,19],[-1,21],[-2,20],[0,21],[-2,8],[-1,-2],[1,12],[-1,13],[2,21],[-1,33],[-3,27],[0,13],[1,-1],[2,4],[3,6],[2,-12],[2,-13],[2,-34],[2,-22],[3,5],[4,-6],[1,12],[2,8],[1,-3],[1,15],[0,11],[-1,1],[-2,0],[-2,10],[-3,-1],[-2,-2],[-1,17],[-2,21],[-3,17],[3,11],[2,11],[3,11],[3,-15],[2,-7],[2,-5],[3,0],[2,9],[2,-7],[2,0],[2,2],[1,-10],[1,4],[0,7],[1,4],[-1,15],[-1,12],[-1,13],[-2,16],[-3,2],[-3,-2],[-1,6],[-2,0],[-2,-1],[-1,10],[-1,9],[-1,-2],[-1,12],[-2,1],[-2,-5],[-2,-3],[-3,12],[-4,11],[-3,4],[-1,11],[-2,-7],[-4,-5],[0,1],[-2,-6],[-1,-6],[-2,4],[-2,-4],[-1,2],[2,17],[2,14],[1,15],[0,15],[0,9],[-1,5],[-1,6],[-2,5],[-1,18],[-1,-3],[-2,-16],[-2,2],[-1,10],[-4,7],[-2,-1],[-2,12],[-2,18],[-3,23],[-2,14],[0,8],[-2,9],[-1,5],[-1,0],[-1,-3],[-2,-5],[-2,-19],[-2,-26],[-1,-17],[-2,-23],[-1,-13],[-1,-4],[-2,2],[-3,11],[-2,32],[-1,26],[-1,14],[-1,11],[-1,10],[0,10],[-1,10],[-2,8],[-2,9],[-2,10],[-1,4],[-2,7],[-1,18],[-1,22],[-1,8],[-1,11],[1,0],[2,-6],[1,1],[1,-2],[2,-18],[2,-19],[2,-11],[1,-9],[1,-14],[2,-13],[0,-11],[1,-9],[1,-1],[1,11],[1,3],[1,0],[1,-1],[1,6],[0,16],[0,10],[-1,8],[-1,6],[-1,2],[-1,-2],[-3,-7],[-2,4],[-1,6],[0,14],[1,18],[0,28],[-2,25],[-1,8],[-2,4],[-1,8],[-1,6],[0,-17],[0,-16],[-1,-17],[-1,6],[1,25],[0,25],[-1,19],[-1,11],[-1,7],[-2,6],[-2,7],[-2,11],[-2,6],[-4,6],[-2,-4],[-1,10],[-1,1],[-1,21],[0,17],[-1,10],[0,12],[0,13],[-1,16],[1,16],[0,21],[0,18],[1,26],[1,15],[2,1],[1,-1],[3,-6],[2,19],[3,42],[1,26],[1,34],[3,43],[1,28],[0,32],[1,30],[0,14],[1,15],[1,18],[2,9],[2,1],[1,8],[2,4],[2,3],[0,11],[1,10],[2,5],[1,18],[0,8],[-1,8],[1,10],[0,18],[1,20],[1,12],[0,13],[2,15],[1,4],[2,-1],[1,0],[2,-12],[0,-15],[1,-1],[2,6],[3,14],[5,24],[1,16],[-1,29],[1,7],[1,-2],[1,-1],[1,-1],[3,8],[4,16],[4,36],[3,15],[3,-7],[2,-17],[3,-24],[2,-23],[1,12],[1,8],[1,2],[1,-13],[1,-2],[1,-6],[0,-14],[-1,-15],[0,-8],[1,10],[1,3],[1,-7],[0,10],[0,13],[-1,16],[-1,3],[0,7],[0,10],[0,12],[2,31],[2,17],[4,12],[1,9],[2,18],[3,21],[5,14],[1,13],[3,26],[1,4],[1,-10],[2,-21],[1,-20],[1,-17],[-1,-11],[-1,-9],[0,-19],[-1,-34],[0,-37],[0,-21],[1,-11],[1,-21],[3,-7],[0,4],[0,11],[1,10],[0,13],[0,18],[0,29],[1,20],[0,5],[1,15],[-2,13],[0,2],[0,5],[2,3],[2,23],[1,15],[1,9],[0,9],[2,12],[1,15],[2,10],[3,-1],[3,-17]],[[2620,26770],[1,-4],[1,7],[3,0],[2,-4],[2,1],[3,-6],[2,-7],[4,-8],[2,-3],[2,-3],[4,-4],[3,2],[5,-3],[1,-2],[1,-5],[1,-5],[2,-3],[2,-4],[1,4],[1,11],[1,9],[1,6],[0,1],[1,-1],[1,-1],[0,2],[1,-6],[0,-14],[1,-8],[1,-2],[1,2],[1,-1],[0,5],[1,9],[0,3],[1,-1],[1,-1],[1,-1],[2,7],[1,7],[1,3],[1,0],[1,-3],[2,-1],[2,-4],[1,-7],[1,-10],[2,-7],[2,-10],[2,-4],[1,-6],[1,-11],[-1,-10],[-1,-10],[-1,-6],[-1,-13],[-1,-8],[0,-16],[0,-17],[-2,-14],[-1,-12],[-2,-12],[-1,-9],[-3,-7],[-1,2],[-1,0],[-1,-7],[-1,-5],[-1,-10],[-1,-18],[-3,-44],[-2,-46],[-2,-29],[-3,-15],[-1,-4],[-1,0],[-1,4],[-2,5],[-1,0],[-3,3],[-5,9],[-3,5],[-3,10],[-2,15],[-1,15],[-2,21],[-1,29],[0,34],[0,16],[-1,15],[0,15],[-1,2],[0,18],[-1,14],[-2,7],[-1,2],[-4,9],[-3,3],[-5,14],[-5,3],[0,4],[-1,9],[-1,11],[0,15],[-1,13],[-1,18],[-1,9],[-2,18],[-2,13],[-1,20],[2,8],[2,2],[2,3],[1,4],[3,-6],[3,-18]],[[2435,28936],[1,-6],[1,1],[1,-4],[1,-8],[-1,-9],[-1,2],[-1,-5],[-2,-4],[-1,3],[0,14],[0,8],[1,9],[1,-1]],[[2564,29581],[-1,-6],[-1,4],[1,14],[1,8],[1,-9],[-1,-11]],[[2515,29855],[-1,-13],[-1,2],[-1,9],[-1,-19],[-3,-33],[-2,-26],[0,-19],[-1,-30],[-2,-30],[0,-27],[-1,-36],[-1,-34],[0,-27],[0,-21],[-2,-39],[-1,-15],[-1,-3],[-2,0],[-3,-8],[-2,-21],[-3,-34],[-2,6],[-3,-20],[-3,-22],[-3,-22],[0,-10],[1,-3],[0,-12],[-1,-16],[0,-6],[-2,-13],[-1,-9],[0,-13],[-1,-17],[-2,-21],[-2,-23],[-2,-6],[-1,-2],[-1,3],[0,9],[0,5],[1,6],[2,1],[1,4],[1,6],[1,11],[0,8],[-1,14],[0,15],[0,6],[1,-3],[1,0],[0,9],[0,9],[-1,7],[-1,10],[-3,18],[-1,14],[3,17],[-1,16],[-1,10],[-2,25],[-3,7],[-3,2],[-2,-10],[-1,-11],[-1,-23],[-2,-7],[-1,0],[-1,15],[-1,24],[-1,9],[-1,0],[-2,3],[-5,7],[-5,6],[-3,3],[-1,6],[0,17],[0,23],[0,19],[1,28],[-1,33],[1,34],[1,8],[1,19],[2,21],[3,14],[1,7],[1,-9],[1,-9],[2,-3],[4,10],[3,7],[0,13],[1,26],[4,21],[6,8],[1,-8],[1,-9],[2,-13],[1,-3],[2,9],[2,-10],[3,-8],[4,11],[4,9],[4,14],[4,12],[2,9],[3,10],[8,29],[3,24],[2,14],[1,15],[0,16],[1,14],[0,16],[1,15],[1,4],[3,1],[2,1],[-1,-15],[0,-14],[0,-16],[1,-10],[-1,-8],[-1,-14]],[[3630,13764],[1,-5],[1,6],[1,-2],[1,-11],[0,-20],[1,-10],[1,-10],[1,-8],[1,-3],[1,-9],[1,-10],[2,-13],[0,-19],[-1,-17],[-1,-10],[0,-16],[-1,-8],[-2,-4],[-1,0],[-1,1],[-4,-17],[0,-13],[-1,15],[-1,3],[-2,0],[-1,-4],[-1,0],[-1,-1],[-3,7],[-4,9],[-5,-2],[-1,6],[-2,3],[0,17],[0,27],[0,34],[-1,32],[0,20],[2,16],[0,9],[1,8],[3,-39],[0,15],[2,4],[0,3],[0,22],[-1,21],[0,9],[1,0],[1,1],[1,4],[2,-4],[2,-6],[1,-15],[2,-5],[2,-5],[3,-6]],[[3801,13962],[-1,-4],[-1,-4],[-2,2],[-1,3],[-3,-4],[-3,-11],[-2,-12],[-2,14],[0,16],[-1,11],[-1,12],[-2,16],[0,22],[2,19],[2,12],[3,17],[2,27],[1,13],[3,16],[2,17],[2,-13],[0,-16],[-1,-13],[-1,-22],[2,-18],[4,-10],[2,-9],[2,-17],[0,-19],[-2,-13],[-1,-10],[-2,-7],[-1,-15]],[[3849,14248],[2,0],[1,22],[1,5],[2,-4],[3,-1],[3,-1],[1,2],[2,-4],[2,10],[0,2],[1,-7],[0,-19],[1,-33],[2,-3],[2,-17],[2,-36],[1,-27],[1,-10],[0,-12],[-1,-12],[-1,-11],[-1,-10],[-1,3],[-1,7],[-1,19],[-1,10],[-2,-8],[-1,-8],[-1,8],[-2,6],[-1,-21],[0,-25],[0,-30],[0,-19],[-1,-9],[-1,-11],[-2,17],[-1,10],[-1,6],[-2,0],[-1,12],[-1,23],[0,33],[-1,15],[-1,16],[-2,15],[-2,-3],[-3,14],[-1,0],[-2,5],[-1,-16],[-1,3],[-1,6],[-3,-4],[-2,2],[-2,1],[-1,6],[-2,1],[-3,-7],[-4,-13],[-3,-10],[-3,-4],[-4,13],[-3,16],[0,14],[0,7],[3,9],[1,7],[4,10],[3,8],[1,5],[2,-5],[4,-2],[2,1],[2,-1],[2,1],[2,16],[1,-6],[2,-2],[0,5],[1,22],[1,11],[2,12],[1,10],[1,-6],[1,-6],[2,-15],[2,-4],[2,-4]],[[3942,14487],[3,-15],[2,5],[1,-7],[-1,-11],[1,-5],[2,-15],[1,1],[0,18],[1,13],[3,7],[3,3],[1,0],[1,-8],[1,-10],[1,-8],[1,-14],[-1,-20],[1,-26],[1,-17],[-1,-24],[-1,-14],[0,-15],[-2,-8],[-2,5],[-1,-3],[1,-24],[0,-28],[-2,-33],[-1,-10],[0,-34],[-2,-10],[-4,7],[-2,5],[-2,16],[-1,-27],[-2,-16],[-3,9],[-3,-3],[-2,-22],[-2,-12],[-3,-4],[-1,10],[0,21],[-2,4],[-4,-6],[-2,0],[-4,5],[-2,3],[-2,5],[-1,25],[-2,20],[-4,19],[-3,-25],[0,-20],[-2,-12],[-2,10],[-1,11],[-1,13],[-2,10],[-2,1],[-1,9],[-2,7],[-2,6],[-2,-11],[-3,12],[-1,28],[-1,29],[0,9],[1,-16],[2,-9],[0,2],[1,13],[0,22],[0,22],[2,31],[3,10],[2,13],[3,-17],[3,-20],[1,5],[1,21],[2,-5],[0,18],[-1,18],[-1,14],[2,17],[1,1],[2,-9],[2,-8],[2,-2],[2,-16],[2,-22],[2,-18],[1,4],[-1,21],[0,18],[1,4],[2,4],[1,13],[1,2],[1,-8],[1,-12],[2,-13],[3,1],[2,-8],[1,-13],[1,-19],[2,-11],[1,-17],[1,-12],[1,10],[-1,14],[0,19],[1,16],[0,16],[1,7],[2,-6],[3,-15],[3,0],[2,-6],[3,-3],[1,14],[-1,17],[-1,10],[-2,12],[-1,9],[-3,5],[-2,6],[-1,13],[0,11],[1,3],[2,0]],[[3966,14500],[-1,-2],[-1,7],[-1,18],[1,9],[2,-21],[0,-11]],[[3993,14724],[-1,-12],[0,-9],[-1,-7],[-1,9],[0,10],[-1,-9],[-1,-5],[-1,2],[-1,-14],[-1,4],[-1,11],[1,15],[1,9],[1,10],[1,6],[1,-4],[2,-7],[1,-2],[1,-7]],[[3683,14900],[1,-18],[-1,-21],[2,-8],[3,5],[2,7],[3,10],[3,4],[2,-3],[2,-11],[0,-9],[0,-25],[0,-21],[0,-15],[-1,-26],[0,-25],[-2,-14],[-1,-16],[2,-35],[2,-5],[0,-11],[0,-19],[1,-17],[3,-2],[2,-14],[2,-9],[2,1],[2,16],[2,32],[3,31],[2,25],[0,5],[2,-4],[-2,-22],[-2,-31],[1,-18],[1,-3],[1,4],[1,17],[2,-5],[2,-13],[2,-7],[2,-6],[1,-9],[1,-5],[2,-7],[2,-15],[0,-8],[1,-23],[1,-13],[0,-6],[1,-5],[1,-8],[-2,2],[-3,-15],[-1,-14],[-3,-17],[-1,-2],[-1,0],[0,-1],[-1,-3],[-1,-8],[0,-1],[-1,4],[-1,2],[-1,-2],[0,-8],[-1,0],[-1,6],[-2,8],[-2,6],[-2,-1],[-1,-6],[-1,-11],[0,-20],[1,-10],[2,3],[2,1],[2,-8],[3,-14],[1,-5],[3,-10],[2,-8],[0,-5],[2,1],[2,-11],[2,-9],[1,-4],[1,4],[1,9],[0,16],[2,20],[1,5],[1,-14],[2,-6],[4,11],[5,34],[3,14],[1,-5],[1,-7],[0,-18],[0,-14],[1,-20],[-2,-10],[-3,-35],[1,-16],[0,-20],[0,-20],[-1,-12],[-1,-11],[-5,-13],[-3,2],[-3,-8],[-2,-30],[-3,-16],[-3,-14],[-3,-42],[-1,-12],[-2,-7],[-2,10],[-2,16],[-1,18],[-2,7],[-4,-2],[-1,-5],[-2,8],[-1,5],[0,14],[0,11],[-1,7],[-3,5],[-3,-13],[-1,-45],[0,-16],[0,-13],[0,-21],[-1,-12],[0,-16],[-1,-20],[-3,-14],[-1,-12],[-1,-23],[0,-18],[0,-17],[-1,-8],[-1,-1],[-2,6],[-3,13],[0,20],[0,36],[1,30],[0,20],[-2,15],[-4,14],[-4,4],[-1,8],[-1,4],[0,-17],[-1,-23],[-4,-1],[-1,12],[-1,21],[-1,18],[-3,2],[-1,-18],[-1,-19],[0,-11],[-1,-15],[0,-11],[-2,5],[-2,-6],[-3,-16],[-2,-8],[-1,-16],[-1,-11],[-1,0],[-1,1],[-2,-8],[-1,0],[-1,16],[-1,30],[-1,16],[-1,10],[0,22],[2,18],[0,9],[0,20],[0,15],[-1,22],[-2,17],[-1,22],[-1,2],[-2,3],[-1,4],[-1,12],[-1,9],[-2,46],[-1,7],[0,21],[-1,14],[-1,22],[-1,27],[1,9],[1,3],[1,12],[1,18],[-1,19],[-1,14],[1,14],[0,21],[1,12],[0,11],[2,13],[1,0],[1,5],[2,12],[0,19],[-1,21],[-1,21],[0,26],[0,14],[1,4],[1,7],[1,13],[1,13],[1,6],[1,6],[1,5],[2,2],[1,9],[1,5],[1,2],[4,4],[1,10],[1,18],[3,35],[0,15],[1,12],[0,20],[3,-3],[1,-2],[1,10],[0,23],[1,14],[2,0],[3,-8],[3,-4],[2,10],[1,14],[1,9],[1,7],[0,-8],[2,-20]],[[4000,14916],[2,-7],[1,7],[2,12],[1,-2],[1,-14],[0,-13],[-1,-14],[1,-17],[-1,-15],[-1,-9],[-2,-8],[0,12],[-2,14],[-2,3],[-2,-13],[-2,-7],[-1,-1],[-2,-10],[-1,-24],[0,-11],[-1,-4],[-3,-7],[-2,-6],[-2,-5],[-2,-13],[-1,-8],[-1,-13],[-2,6],[0,19],[-1,-2],[-1,8],[-1,2],[0,17],[1,10],[2,7],[0,16],[2,8],[2,-9],[1,2],[2,19],[2,16],[1,4],[2,4],[2,17],[1,9],[2,-2],[1,13],[2,1],[0,21],[0,18],[1,3],[0,-15],[2,-19]],[[3808,15266],[0,-33],[0,-23],[0,-9],[-1,4],[-2,12],[-4,-11],[-3,-44],[-1,-45],[-4,-23],[-4,-13],[-3,-18],[0,-17],[0,-19],[1,-36],[3,-13],[1,16],[1,-2],[1,-9],[0,-7],[-1,-14],[-1,-17],[0,-19],[0,-27],[0,-27],[2,-1],[2,19],[1,5],[1,-16],[1,-12],[1,-6],[2,14],[2,-19],[0,-7],[3,6],[2,6],[7,0],[3,-16],[3,-18],[3,13],[3,15],[1,2],[1,1],[0,-11],[3,-31],[2,-41],[0,-15],[-2,-27],[-1,-20],[-1,-28],[1,-11],[-2,-2],[-2,5],[-1,15],[-2,18],[-3,-2],[-3,-11],[-4,-4],[-4,2],[0,13],[-1,1],[-2,-13],[-1,-25],[-1,-22],[0,-17],[1,-8],[2,-18],[1,-17],[-2,-3],[-1,12],[-2,3],[-1,-20],[-2,-5],[-2,-13],[0,-27],[0,-16],[-2,-3],[-3,13],[-1,13],[-1,6],[-2,-15],[-3,-24],[0,-16],[1,-11],[2,-9],[2,-9],[0,-19],[-1,-18],[-1,-16],[0,-31],[-1,-21],[-2,6],[-1,-10],[0,-19],[-1,-6],[-1,8],[-1,3],[-2,0],[-1,7],[0,5],[-2,10],[-1,4],[-3,18],[-1,-8],[-1,-3],[-1,9],[0,19],[-2,7],[0,16],[-1,17],[-2,18],[-2,16],[0,14],[0,12],[1,18],[1,-6],[1,-4],[1,19],[2,4],[0,10],[0,17],[2,28],[2,35],[1,21],[1,26],[-1,7],[-2,-5],[-1,2],[-2,8],[-4,43],[-2,50],[0,16],[2,23],[2,20],[5,24],[3,27],[2,23],[1,18],[1,14],[-1,18],[-1,25],[-2,23],[-3,11],[-2,8],[-1,-9],[-1,-19],[-2,-36],[-4,-20],[-3,2],[-4,-5],[-1,0],[-1,6],[-1,12],[-1,21],[-2,32],[1,32],[1,15],[1,13],[1,8],[0,12],[-1,20],[2,24],[2,6],[0,8],[2,21],[1,13],[2,-1],[3,4],[2,23],[-2,28],[-1,30],[0,12],[1,4],[2,3],[3,-7],[3,-16],[1,-16],[2,-16],[1,-9],[1,-8],[0,-10],[-2,10],[-1,12],[-2,8],[0,-17],[1,-15],[0,-25],[0,-27],[0,-21],[1,-11],[1,0],[2,17],[3,12],[0,18],[0,18],[1,25],[1,39],[2,-3],[1,-10],[1,-5],[1,16],[2,28],[2,8],[1,-17],[1,-3],[1,12],[1,18],[2,0],[3,-2],[6,-11],[1,-11]],[[4644,15648],[2,-17],[2,-8],[2,-8],[1,-24],[-1,-3],[-1,10],[-1,9],[-1,3],[-1,1],[-2,-1],[-2,-6],[-2,-5],[-1,1],[-2,21],[-1,8],[-2,-3],[-1,14],[1,21],[1,-16],[2,2],[1,9],[2,8],[4,-16]],[[4564,15718],[0,-6],[-1,1],[-1,-3],[0,-11],[1,-12],[1,-16],[2,-24],[-2,4],[-2,2],[-2,10],[-1,18],[0,12],[-1,19],[1,3],[1,-2],[0,1],[1,16],[1,2],[0,13],[1,5],[0,-6],[1,-8],[0,-18]],[[4654,15825],[1,-8],[1,6],[2,9],[1,0],[1,-10],[3,0],[2,4],[1,-4],[-1,-14],[-1,-10],[-1,-13],[0,-19],[1,-17],[0,-8],[0,-15],[0,-11],[1,-10],[2,-3],[3,-1],[1,15],[2,4],[1,-4],[1,7],[1,-2],[0,-23],[-1,-17],[-1,-7],[-2,-11],[-1,-16],[0,-16],[-1,-19],[-1,1],[0,12],[-1,12],[0,22],[-1,15],[-2,-7],[-1,-6],[-2,0],[-1,5],[-2,-6],[-1,-17],[-1,-6],[-1,4],[-1,16],[-2,11],[-1,21],[-1,13],[-1,21],[-1,10],[-1,25],[-1,19],[-2,30],[-2,18],[0,31],[1,18],[1,8],[1,1],[2,-7],[1,-7],[2,-11],[2,-9],[1,-9],[0,-15]],[[4546,15925],[0,-21],[0,-11],[-2,11],[0,-13],[1,-9],[1,-11],[2,15],[1,6],[1,-10],[1,-10],[2,-21],[0,-12],[2,-11],[1,-6],[0,-17],[0,-19],[1,-16],[0,-18],[0,-15],[0,-15],[0,-16],[-1,5],[-1,11],[-1,11],[-2,2],[0,5],[-1,15],[0,16],[-1,21],[-1,13],[-2,14],[-2,20],[-1,14],[-2,11],[-1,16],[-2,8],[-1,22],[0,-4],[2,-4],[2,-1],[0,12],[0,16],[1,31],[1,-8],[1,-10],[1,-17]],[[4557,16233],[1,-11],[0,5],[1,-11],[1,-10],[1,7],[1,6],[1,-2],[2,-15],[2,-11],[2,-8],[3,-19],[2,-8],[0,4],[2,-11],[2,-13],[2,-11],[0,-4],[2,-8],[0,-12],[1,-23],[0,-17],[2,-3],[0,23],[2,5],[3,-4],[1,5],[0,-14],[-1,-17],[0,-17],[0,-13],[1,-8],[1,-1],[1,13],[2,5],[0,16],[1,7],[1,8],[1,1],[2,-1],[0,-10],[-1,-27],[2,-10],[1,-1],[1,11],[2,5],[-1,15],[1,3],[2,1],[1,-3],[4,-14],[-2,-13],[-2,-24],[2,-12],[1,-5],[2,-19],[1,-24],[2,-6],[1,6],[0,-4],[2,-7],[1,0],[2,-8],[0,-12],[-1,-9],[0,-17],[1,-13],[1,-3],[2,-16],[0,-7],[1,-6],[-1,-4],[-2,2],[-2,-22],[0,-14],[1,-12],[1,-16],[1,-23],[1,-16],[3,-24],[-1,-16],[0,-16],[-1,0],[-1,-7],[0,14],[-1,9],[-2,1],[-1,8],[-1,16],[-2,9],[-1,-9],[-1,6],[-1,5],[-2,-3],[-1,7],[-1,14],[-1,19],[-1,12],[-1,-6],[-2,-17],[0,-19],[1,-13],[2,-11],[-1,-13],[-1,-3],[-1,0],[-1,13],[-2,21],[-1,12],[-1,9],[-1,6],[-2,-4],[-2,-18],[0,-24],[1,-8],[2,-1],[3,-15],[2,-16],[2,-13],[2,-18],[-1,-10],[-1,0],[-1,4],[-2,23],[-3,10],[-2,-7],[-1,9],[-1,15],[-2,11],[-3,9],[1,15],[-1,17],[-1,19],[-2,5],[-2,-1],[-2,-13],[-1,-17],[-1,2],[-1,8],[-1,17],[-2,17],[-2,16],[-1,1],[-2,-1],[0,12],[-1,11],[-1,-5],[-3,-3],[0,13],[-1,12],[-2,12],[-2,10],[0,-21],[-1,-1],[-1,-1],[-1,13],[-2,29],[-3,29],[-1,10],[1,3],[-1,11],[-1,16],[-2,12],[-1,17],[-1,7],[-1,14],[0,22],[-1,19],[-2,-2],[0,-2],[-1,7],[1,16],[1,6],[0,12],[0,16],[2,11],[2,-7],[0,3],[1,13],[-1,17],[-1,11],[-1,18],[0,12],[-1,2],[-1,15],[0,21],[0,15],[0,13],[1,11],[1,-16],[0,-14],[0,-17],[1,-11],[0,-6],[1,9],[1,21],[1,18],[2,5],[1,9],[0,5],[1,-1],[1,-6]],[[4676,17008],[0,-23],[0,8],[1,-13],[0,-10],[0,-1],[1,0],[-1,-10],[0,-16],[0,-12],[0,-21],[-2,-13],[-1,-10],[-1,3],[0,22],[0,9],[-1,8],[-1,14],[1,17],[2,11],[-1,14],[1,8],[0,8],[0,15],[1,5],[1,-13]],[[5467,17574],[0,-11],[0,-1],[-2,-11],[-1,2],[-1,-2],[-1,-8],[-1,-10],[-1,2],[0,12],[-2,18],[-2,-12],[-4,-7],[-2,20],[-1,3],[-2,-7],[-1,7],[1,18],[1,18],[2,19],[0,21],[-1,13],[0,17],[0,24],[-1,21],[-2,2],[0,10],[1,9],[1,17],[-1,18],[-1,10],[-2,16],[0,16],[1,28],[1,10],[1,9],[0,19],[2,5],[3,5],[2,-6],[2,-25],[1,-16],[1,-22],[2,-15],[1,-8],[0,-13],[1,-9],[1,-12],[2,-16],[2,-16],[2,-13],[1,-9],[0,-15],[0,-15],[0,-14],[0,-22],[0,-16],[-1,-2],[0,-17],[0,-14],[-1,-16],[-1,-9]],[[5419,17931],[-1,-4],[-1,2],[-2,-7],[-1,-7],[0,-10],[-1,-13],[1,-16],[1,-14],[2,-10],[-2,-4],[-3,1],[-3,8],[-4,2],[-1,-6],[-2,-12],[1,-14],[0,-12],[0,-15],[-1,-7],[-2,1],[-1,-1],[-1,3],[-1,-10],[0,-18],[1,-18],[-2,-8],[-1,9],[-2,12],[-1,3],[-1,-7],[-2,2],[-1,20],[0,16],[-1,4],[-1,11],[-1,21],[-1,5],[-1,6],[2,9],[0,5],[2,2],[1,-2],[1,4],[2,18],[1,30],[1,-14],[3,-14],[2,9],[2,22],[1,28],[1,15],[1,6],[2,5],[2,16],[2,5],[1,-8],[3,-11],[3,-15],[3,-9],[1,-4],[-1,-10]],[[4533,18240],[-2,-8],[-1,4],[0,14],[-2,10],[0,12],[-1,6],[3,17],[1,-7],[0,-12],[1,-12],[1,-11],[0,-13]],[[5522,18279],[-4,-31],[-1,22],[1,24],[4,28],[2,-3],[-2,-40]],[[5538,18438],[1,-17],[1,-13],[2,-16],[3,-25],[1,-1],[2,14],[1,9],[2,15],[2,3],[3,-6],[1,-15],[-1,-11],[-1,-11],[1,-23],[-1,-55],[-1,-21],[0,-20],[-3,-50],[-2,-23],[-2,-24],[-3,-26],[-7,-35],[-4,1],[-1,-6],[-1,7],[-2,-5],[-1,2],[-1,9],[-1,22],[-1,32],[-1,21],[-2,19],[0,20],[2,42],[2,29],[0,33],[1,4],[1,-4],[1,12],[-1,19],[-1,6],[-1,11],[2,11],[2,0],[1,-14],[1,-20],[1,7],[0,20],[0,12],[1,1],[0,-20],[1,-16],[1,-1],[0,9],[1,14],[2,5],[1,8],[-1,11],[-1,5],[-1,-5],[-2,9],[-1,8],[-3,2],[-2,-7],[-1,-2],[-2,9],[-2,-2],[-1,0],[-1,8],[1,16],[2,3],[0,-3],[2,9],[1,17],[2,5],[1,10],[0,16],[2,4],[1,11],[1,10],[0,-3],[1,-8],[2,-13],[1,-7],[-1,-13],[-1,-4],[-1,-4],[0,-13],[1,-5],[1,-3]],[[5322,18428],[-1,-7],[-1,8],[0,15],[-1,12],[0,20],[-1,23],[0,19],[2,3],[1,-11],[2,-11],[0,-14],[1,-24],[0,-28],[-1,-2],[-1,-3]],[[4657,18547],[1,-6],[2,8],[-1,-14],[1,-11],[0,-17],[-1,-12],[-2,7],[0,16],[-1,5],[-1,-3],[0,12],[1,13],[1,8],[0,-6]],[[5285,18648],[-2,-6],[-1,6],[-1,4],[-1,2],[0,17],[1,14],[1,-2],[1,-7],[2,-8],[2,-8],[-1,-8],[-1,-4]],[[4695,18687],[1,-18],[2,-1],[2,6],[3,-2],[2,-8],[1,-11],[2,-12],[2,-34],[2,-32],[-1,-54],[0,-25],[0,-35],[-1,-31],[0,-19],[1,-13],[0,-12],[1,-24],[0,-30],[0,-44],[0,-28],[0,-40],[0,-37],[-1,-9],[-1,3],[-2,-13],[-2,-15],[-4,-22],[-1,-46],[-1,-48],[1,-38],[-2,-22],[-3,-20],[-2,-22],[-3,-12],[-2,-9],[-1,2],[-2,14],[-2,11],[-2,5],[-2,6],[-1,20],[0,23],[-1,20],[-1,24],[-1,10],[-1,11],[-1,14],[-1,10],[-1,5],[-2,-1],[-2,-6],[0,5],[1,22],[-1,20],[-1,24],[-2,12],[-2,-6],[-2,-2],[1,18],[-1,6],[-1,1],[-1,12],[1,13],[1,11],[-1,27],[-1,22],[-1,27],[1,42],[0,41],[-1,10],[-2,11],[-1,8],[1,6],[1,6],[2,15],[2,8],[2,-4],[2,3],[2,16],[3,19],[1,24],[1,13],[2,24],[1,29],[1,20],[1,7],[-1,12],[2,19],[2,16],[2,23],[1,11],[2,4],[1,3],[0,11],[1,0],[1,-1],[2,-5],[2,-1],[1,10],[1,7],[1,-10]],[[4814,18697],[-4,-32],[-2,67],[-3,68],[-3,30],[-2,62],[4,11],[4,-55],[1,-17],[6,-90],[-1,-44]],[[4285,19025],[1,-8],[2,1],[1,0],[1,-8],[1,-6],[1,-4],[2,-2],[3,1],[3,0],[3,-4],[2,-5],[3,-2],[2,0],[3,-3],[-2,-21],[6,-33],[6,0],[5,-1],[5,-49],[2,15],[0,68],[-6,1],[-4,0],[0,17],[1,7],[1,3],[5,2],[5,6],[3,4],[4,9],[1,-1],[1,8],[3,8],[1,-2],[2,-8],[2,-9],[1,-3],[1,-11],[2,-5],[2,2],[2,-4],[2,-7],[2,2],[2,-5],[1,-5],[1,2],[1,-10],[2,-11],[0,-15],[0,-13],[1,-12],[-1,-9],[-1,-1],[-1,-1],[-2,-1],[-1,14],[-2,6],[-2,14],[1,11],[1,-6],[0,-12],[2,-2],[2,-6],[1,4],[0,15],[-2,14],[-3,6],[-3,2],[-2,-2],[-2,6],[-2,1],[-2,4],[-1,-2],[0,18],[-1,10],[-2,0],[-1,-13],[-1,-12],[-1,-15],[0,-65],[3,-39],[0,-6],[0,-21],[2,-9],[1,-6],[5,-26],[1,-14],[2,-31],[3,-25],[3,-22],[2,-19],[2,-36],[2,-18],[1,-9],[1,-34],[3,-41],[3,-81],[1,-14],[0,-48],[2,-45],[2,-36],[1,-36],[-1,-25],[1,-16],[-1,-11],[-2,-36],[0,-17],[0,-24],[0,-19],[-1,-27],[-1,-24],[0,-9],[0,-9],[0,-11],[1,-7],[1,-6],[0,-14],[0,-14],[1,-12],[0,-10],[0,-12],[0,-13],[1,-12],[1,-1],[0,-6],[1,-8],[0,-14],[1,-10],[1,-3],[1,-2],[1,-8],[1,-11],[0,-18],[1,-27],[0,-24],[-1,-34],[1,-10],[0,-26],[0,-22],[1,-14],[0,-10],[1,-11],[2,-33],[2,-30],[2,-30],[2,-20],[1,-20],[1,-18],[2,-16],[1,-1],[0,-1],[3,16],[1,2],[3,-8],[4,7],[3,-1],[2,-1],[3,20],[3,5],[2,-10],[1,-11],[3,7],[2,28],[1,13],[3,24],[1,19],[1,9],[1,5],[1,-8],[0,-19],[3,-21],[4,5],[1,-12],[3,-11],[1,-23],[2,-27],[1,-31],[3,-31],[3,-30],[1,-40],[2,-50],[0,-32],[1,-34],[0,-19],[-1,-20],[1,-30],[3,-16],[3,3],[2,9],[2,11],[1,16],[1,-6],[1,-17],[-1,-16],[-1,-20],[0,-23],[1,-18],[1,-3],[-1,-13],[-2,-21],[-1,-17],[0,-14],[-1,6],[0,20],[-1,-1],[-4,-12],[-4,4],[-3,17],[-2,3],[-1,12],[-2,1],[-3,-2],[-3,-4],[-2,-7],[0,9],[1,17],[2,20],[1,11],[2,15],[1,13],[2,3],[1,-1],[1,0],[1,25],[0,30],[-1,8],[0,4],[-2,-6],[-2,-9],[-3,5],[-4,8],[-5,16],[-4,4],[-3,-7],[-1,-10],[-2,-15],[-1,-25],[-1,-23],[0,-25],[-2,-14],[-1,0],[0,13],[-1,33],[0,21],[-1,19],[-2,3],[-1,-6],[-2,0],[-2,5],[-1,6],[0,19],[2,23],[1,14],[0,18],[-1,6],[-2,-9],[-2,-20],[-1,-2],[-2,-14],[0,-17],[0,-19],[-1,4],[-1,6],[-3,35],[-2,35],[-3,31],[-1,12],[-1,2],[-1,4],[0,16],[0,29],[-1,22],[0,18],[1,25],[-2,19],[-1,11],[-3,9],[-2,1],[-3,-10],[-4,-16],[-3,-21],[-2,-25],[-2,-26],[-3,-27],[-2,-28],[-2,-28],[1,-24],[1,-8],[1,-8],[1,-13],[1,-34],[1,-26],[0,-30],[-1,-27],[0,-24],[-1,-37],[-1,-32],[0,-25],[-1,-10],[-1,0],[-4,6],[-5,-4],[-4,6],[-4,-6],[-4,-23],[-2,-36],[0,-18],[1,-15],[-4,-20],[-6,-7],[-3,-10],[-5,5],[-2,-24],[0,-34],[-1,-8],[-1,-20],[0,-24],[2,-34],[-1,-13],[-1,17],[-2,44],[-2,17],[-6,16],[-5,13],[-4,20],[-5,19],[-7,7],[-8,15],[-5,9],[-1,4],[-7,4],[-3,-7],[-6,11],[-4,-4],[-7,-18],[-5,4],[-7,0],[-8,-7],[-7,-12],[-4,7],[-3,6],[-7,-14],[-2,-1],[-1,0],[-3,-4],[-1,-2],[-7,-15],[-6,-13],[-1,-3],[-6,-6],[-4,-14],[0,-2],[-3,-15],[-4,-18],[-3,-13],[-5,-15],[-7,-26],[-8,-36],[-5,-25],[-3,-34],[-3,-17],[-3,-20],[-3,-31],[-2,-30],[-2,-30],[-3,-35],[-3,-19],[-3,-28],[-2,-15],[-2,-13],[0,-8],[-2,-31],[0,-42],[3,-16],[1,4],[0,-14],[-1,-22],[-4,-16],[0,-38],[2,-53],[-1,-17],[-1,-22],[-1,-25],[-2,-32],[-3,-21],[-2,-25],[-4,-39],[-3,-17],[-3,-28],[-3,-36],[-5,-21],[-2,-20],[-4,-17],[-8,-21],[-4,-7],[-6,2],[-7,-19],[-5,-24],[-5,-2],[-5,-16],[-7,-34],[-4,-22],[-2,0],[-3,3],[-1,6],[-2,4],[-1,6],[-1,10],[-2,7],[-3,12],[-5,-4],[-5,-9],[-2,-7],[-2,-12],[-3,4],[-1,5],[-1,7],[-2,7],[-2,4],[-4,11],[-3,7],[-1,7],[-1,8],[-2,15],[-3,26],[-3,5],[-2,9],[-1,24],[-1,26],[0,21],[-1,15],[-2,23],[-3,15],[-1,5],[0,32],[0,32],[0,50],[-4,35],[-4,1],[-3,39],[-1,16],[2,8],[2,19],[0,44],[-1,41],[-3,28],[-5,40],[-2,58],[0,60],[0,39],[1,33],[0,34],[-1,29],[-1,17],[0,21],[3,54],[1,39],[4,33],[6,13],[5,15],[3,31],[2,23],[1,32],[4,-2],[3,5],[2,14],[2,11],[1,13],[1,24],[2,17],[2,-6],[5,-19],[5,4],[5,24],[4,27],[5,53],[4,77],[5,114],[2,52],[5,95],[1,29],[1,22],[2,28],[3,51],[1,53],[1,73],[1,13],[1,5],[2,25],[1,21],[2,32],[2,29],[1,37],[2,52],[2,56],[2,67],[1,8],[-1,121],[4,66],[3,13],[4,9],[1,4],[1,3],[-1,12],[0,13],[1,27],[3,35],[6,51],[3,7],[3,-13],[2,7],[2,23],[4,27],[2,0],[4,-16],[4,-34],[3,-23],[4,-13],[3,-40],[3,-45],[2,-20],[4,14],[5,11],[5,11],[-1,-16],[-3,-19],[-1,-2],[-1,2],[-1,-8],[0,-14],[2,-8],[2,8],[0,-7],[2,-4],[2,0],[1,9],[0,15],[-1,2],[-2,-8],[-1,5],[1,9],[1,11],[1,12],[4,19],[2,7],[-1,-17],[2,8],[0,13],[1,2],[1,-5],[-1,-10],[0,-20],[1,-19],[2,7],[1,21],[-1,18],[0,8],[1,-1],[2,-8],[1,-14],[0,-18],[-1,-8],[-1,-7],[1,-10],[1,2],[1,21],[1,27],[1,5],[1,-10],[0,-14],[-1,-20],[2,-8],[1,-14],[1,-12],[1,-2],[0,22],[-2,30],[-1,31],[1,19],[-1,18],[1,4],[2,-3],[-1,18],[-1,11],[-2,2],[-1,-6],[-6,-30],[-3,-7],[-3,-6],[-2,-7],[-3,-16],[0,12],[1,9],[2,17],[4,13],[3,9],[4,16],[5,32],[2,6],[2,22],[1,15],[2,15],[3,28],[1,15],[2,16],[2,25],[1,24],[1,13],[1,-5],[1,-12],[1,3],[2,18],[2,24],[1,16],[1,9],[2,-10],[0,-21],[0,-23],[1,6],[2,10],[1,0],[5,-3],[7,6],[9,26],[5,37],[3,14],[1,10],[1,6],[1,10],[1,10],[1,7],[1,11],[1,8],[1,16],[2,7],[1,11],[1,14],[2,22],[1,13],[1,10],[1,16],[2,8],[1,7],[1,18],[2,18],[2,20],[0,15],[1,4],[2,10],[0,11],[1,10],[1,4],[2,0],[4,-12],[2,1],[3,1],[2,7],[2,8],[3,9],[3,10],[1,2],[1,11],[1,4],[1,5],[2,7],[1,8],[0,-1],[2,7],[1,7],[1,4],[1,1],[1,-7],[1,-5]],[[5387,18834],[-1,-8],[-2,4],[-1,-5],[-1,-3],[-1,7],[-1,23],[-1,24],[-1,29],[0,26],[-1,17],[-2,13],[0,21],[0,17],[1,16],[2,30],[0,-14],[0,-18],[0,-26],[1,-9],[2,-10],[2,-22],[1,-32],[2,-26],[-1,-24],[2,-18],[0,-12]],[[5527,19071],[1,-7],[1,4],[2,-4],[1,-11],[0,-24],[0,-11],[-1,-9],[-1,3],[-1,5],[-2,7],[-3,16],[-1,14],[-1,11],[-1,8],[1,6],[2,6],[1,-6],[1,-1],[1,-7]],[[5498,19032],[1,-1],[1,11],[2,21],[5,14],[3,-6],[3,-17],[2,-2],[1,3],[1,0],[0,-16],[1,-25],[1,-22],[-1,-22],[0,-15],[-1,-15],[-1,-8],[0,5],[-1,13],[-2,10],[-3,11],[-2,11],[-1,7],[-2,-6],[0,-21],[0,-22],[0,-19],[-1,-17],[0,-27],[1,-4],[2,3],[1,5],[3,-21],[2,-21],[-1,-12],[-1,-7],[0,-11],[1,-22],[2,-7],[1,1],[2,-5],[1,-11],[0,-22],[1,-14],[1,-12],[1,-28],[1,-25],[-1,-25],[-1,-9],[-1,2],[-1,2],[-1,-7],[-1,-13],[-2,-1],[0,5],[-3,-5],[-2,-23],[0,-26],[-1,-11],[-1,-5],[-2,-6],[-3,-10],[-4,-14],[-2,-17],[-2,-27],[-2,-2],[-4,-2],[-2,21],[-1,15],[1,9],[1,2],[1,0],[1,12],[1,10],[1,21],[-1,20],[-2,15],[-1,20],[0,23],[2,20],[1,24],[-1,21],[2,0],[0,-8],[2,-19],[2,-17],[3,-9],[3,-7],[1,10],[-1,13],[0,16],[0,23],[1,13],[0,22],[-1,3],[-2,1],[-1,2],[-1,11],[-1,30],[0,28],[0,39],[1,16],[0,22],[0,11],[2,7],[1,0],[1,11],[-2,25],[-2,17],[-2,-2],[-1,-8],[-2,-19],[-2,-37],[-1,-18],[-1,-24],[-2,-18],[-1,-1],[-2,-11],[-1,-10],[-1,-3],[-1,8],[0,12],[0,17],[0,12],[1,4],[1,5],[1,9],[1,16],[-1,15],[0,12],[1,3],[1,0],[1,13],[1,34],[0,20],[1,3],[3,-1],[1,3],[1,6],[-1,13],[-2,20],[-2,16],[-2,17],[0,12],[1,4],[1,-6],[3,-19],[3,-10],[2,-8],[2,-10]],[[5499,19088],[0,-17],[-1,7],[-1,11],[-1,19],[1,7],[2,0],[1,3],[2,-4],[-1,-9],[-2,-17]],[[4797,18970],[-2,-25],[-4,69],[0,21],[0,13],[-1,11],[-1,5],[-1,2],[0,7],[-1,30],[0,18],[0,14],[1,9],[3,-19],[0,-18],[-1,-17],[0,-15],[1,-11],[0,-9],[1,-5],[1,-7],[2,-12],[0,-13],[1,-14],[1,-13],[0,-21]],[[5480,19159],[1,-4],[2,-2],[1,-9],[0,-14],[-1,-11],[-1,5],[-1,9],[-3,0],[-1,-3],[-1,12],[1,16],[1,-1],[2,2]],[[5403,19104],[0,-12],[-2,-18],[-2,1],[0,13],[-2,13],[-1,-4],[-1,-19],[-2,-3],[-1,-11],[-2,3],[-3,14],[-1,19],[-3,2],[0,3],[0,20],[1,16],[1,11],[1,15],[0,21],[1,14],[2,16],[2,6],[2,-3],[2,-16],[1,-13],[1,-2],[1,-3],[1,-9],[1,-13],[0,-24],[0,-21],[1,-10],[2,-6]],[[4900,19060],[-1,-8],[-1,-1],[-1,2],[-1,-3],[-2,0],[0,-1],[-1,6],[-1,6],[-1,5],[-1,14],[-1,10],[-1,11],[-1,8],[-1,2],[0,3],[0,7],[1,11],[1,19],[1,13],[1,15],[1,17],[0,24],[-1,22],[-1,19],[0,10],[-1,4],[-1,6],[0,22],[-1,18],[0,17],[1,-3],[0,-11],[1,-9],[3,-32],[1,-5],[1,-4],[2,-8],[1,-10],[1,-11],[2,-32],[1,-10],[1,-3],[1,-11],[1,-25],[0,-19],[0,-41],[1,-13],[-1,-3],[0,-2],[-1,-4],[-1,-7],[0,-11],[-1,-4]],[[4806,19306],[3,-14],[1,1],[1,4],[1,-12],[1,0],[1,1],[1,-7],[0,-13],[1,-6],[-1,-16],[-1,-17],[1,-10],[-1,-6],[0,-11],[-1,0],[-1,-13],[-1,-8],[-1,4],[-1,9],[-1,12],[0,6],[-2,12],[-1,13],[-2,4],[0,15],[-1,10],[-1,7],[0,13],[-1,15],[-1,9],[2,7],[1,10],[0,13],[1,4],[1,-2],[1,-16],[1,-18]],[[5411,19204],[-3,-1],[-1,8],[-1,14],[-2,25],[0,18],[1,2],[1,7],[2,13],[0,15],[0,21],[1,12],[1,11],[-1,19],[2,23],[2,10],[1,-3],[1,-16],[1,-11],[0,-16],[0,-12],[-1,-9],[0,-13],[0,-18],[-1,-14],[-1,-23],[1,-23],[0,-15],[-1,-13],[-2,-11]],[[4830,19644],[1,-15],[1,-9],[2,-15],[3,-6],[2,-1],[2,-3],[1,9],[2,-4],[0,-8],[1,-12],[0,-14],[1,-12],[1,-13],[2,1],[1,6],[0,12],[2,2],[1,-6],[2,-14],[1,-16],[-1,-3],[-1,3],[-1,4],[-1,-2],[-1,-7],[0,-11],[2,-54],[1,-1],[1,8],[1,2],[2,-4],[1,-1],[1,-4],[2,-14],[1,-6],[2,-7],[1,-10],[1,-6],[2,-3],[2,-4],[3,3],[1,-5],[2,-10],[1,-3],[0,3],[1,-8],[0,-16],[-1,-20],[1,-10],[0,-14],[0,-19],[1,-13],[0,-13],[-1,-10],[-1,3],[-1,5],[-2,-1],[-2,-6],[-1,-6],[-1,-11],[-2,-9],[-1,-10],[-1,-22],[0,-19],[0,-14],[1,-17],[0,-15],[-1,-15],[0,-17],[0,-9],[-1,-3],[-1,11],[0,10],[-1,13],[0,10],[-1,8],[-1,5],[-2,-1],[-1,-2],[0,-13],[0,-29],[-1,-15],[-1,-16],[-2,-1],[0,-12],[-2,-1],[-1,0],[0,-18],[0,-18],[-2,-7],[0,11],[-1,2],[-1,-5],[-2,3],[-1,10],[-1,5],[-1,4],[-1,15],[0,20],[-1,16],[-1,8],[-2,-3],[-1,5],[0,13],[-1,5],[-1,10],[0,16],[-1,10],[0,16],[0,15],[1,12],[0,14],[1,14],[0,13],[1,5],[1,8],[2,13],[0,10],[1,10],[1,8],[1,7],[1,14],[0,18],[1,12],[0,13],[-1,13],[1,9],[1,11],[0,10],[-1,9],[-1,-1],[-1,-7],[0,9],[0,10],[2,9],[0,6],[0,20],[-1,12],[-1,13],[-1,8],[0,14],[-1,2],[-1,-2],[0,4],[-1,22],[-1,18],[-4,-11],[-1,2],[-2,-6],[-1,-9],[0,-12],[1,-6],[1,-5],[1,-9],[1,-1],[1,-1],[1,-23],[-2,-46],[1,-22],[-2,-42],[-1,-5],[0,-4],[-1,-12],[0,-18],[0,-23],[-2,-33],[-1,-27],[-1,3],[0,22],[1,10],[1,10],[-1,18],[0,8],[-1,8],[-1,5],[-1,8],[-2,1],[-1,5],[-1,20],[0,7],[-1,6],[-1,4],[-1,1],[-1,4],[-1,1],[-1,-1],[-2,3],[-1,-3],[-1,-1],[-1,2],[-1,-3],[0,-6],[0,12],[0,13],[-1,14],[-1,7],[-1,3],[-1,29],[1,10],[0,7],[1,11],[0,16],[0,15],[-1,9],[0,42],[1,5],[0,-9],[1,-11],[2,-2],[1,0],[1,4],[1,4],[1,8],[1,4],[2,5],[0,14],[0,21],[1,8],[1,6],[2,2],[1,0],[2,2],[1,12],[1,13],[3,-2],[1,-12]],[[5433,19612],[1,-9],[-1,4],[-2,10],[-2,9],[-2,17],[0,18],[0,14],[1,26],[1,-10],[0,-10],[2,-9],[1,-11],[0,-17],[1,-20],[0,-12]],[[4965,19846],[-1,-19],[0,-4],[-1,7],[-2,3],[-1,-15],[-1,-23],[0,-16],[1,-8],[1,-4],[0,-10],[1,-14],[1,-14],[0,-14],[1,-11],[1,-13],[0,-22],[-1,-15],[0,-12],[1,-11],[-1,-14],[0,-23],[-1,-25],[-1,-9],[-1,-9],[0,-1],[-2,4],[0,5],[-3,9],[-1,7],[-1,10],[-2,4],[-1,10],[-1,11],[-1,11],[-2,3],[-1,11],[-1,9],[-2,5],[-1,6],[-1,14],[0,17],[-1,18],[-2,12],[-2,8],[-1,-1],[-1,6],[-1,24],[1,17],[2,17],[0,12],[1,14],[1,22],[1,14],[2,12],[3,9],[1,-1],[1,-8],[1,-5],[1,-6],[1,-9],[2,-7],[3,-2],[0,10],[1,11],[1,4],[1,1],[1,5],[1,7],[1,-2],[1,-6],[2,-6],[1,-3],[1,-7]],[[4523,19931],[-1,-3],[0,3],[-1,4],[0,15],[1,2],[1,3],[1,0],[1,-9],[-1,-5],[-1,-5],[0,-5]],[[5472,19887],[0,-25],[-1,-33],[-1,-36],[-3,-28],[-1,0],[0,-9],[-1,-2],[-2,-8],[0,-29],[1,-15],[2,-2],[-1,-10],[0,-14],[-1,-21],[0,-37],[1,-21],[1,-18],[2,4],[1,9],[1,17],[0,18],[3,10],[1,-14],[0,-23],[-1,-15],[0,-13],[2,-9],[0,-15],[1,-17],[-2,-7],[-1,8],[-2,10],[-2,-12],[-2,-36],[0,-15],[2,3],[1,12],[0,8],[1,-9],[2,-21],[2,-19],[0,-18],[-1,-11],[-1,-12],[-2,-6],[-1,-27],[-1,6],[-2,20],[-3,2],[-2,-14],[2,-22],[3,-21],[1,-24],[0,-28],[-2,-8],[0,-16],[1,-11],[0,-29],[-2,-39],[0,-23],[2,-28],[3,-19],[-1,-14],[-1,-12],[0,-14],[2,-9],[2,-1],[1,16],[3,-9],[0,-14],[1,-15],[1,-7],[0,-18],[-1,-24],[-2,-14],[-2,-9],[-2,-15],[-2,16],[0,26],[-1,8],[-2,10],[-2,25],[-1,37],[-1,18],[0,28],[-2,23],[-3,18],[-1,14],[-1,-2],[-1,-6],[-1,-27],[0,-38],[1,-58],[0,-60],[0,-17],[-1,-7],[-1,-8],[-1,4],[-3,13],[-1,10],[-2,26],[-2,10],[0,27],[1,21],[0,13],[-2,-13],[0,-11],[-2,3],[-1,-2],[-1,-26],[1,-6],[0,3],[1,-6],[1,-6],[-1,-5],[-2,-5],[-2,-24],[0,-27],[0,-19],[-1,6],[-1,19],[-2,35],[1,34],[-1,22],[0,24],[1,36],[1,15],[0,31],[1,11],[3,1],[3,-6],[3,2],[2,9],[2,23],[1,12],[-2,13],[-2,2],[-2,8],[0,15],[-3,19],[-2,1],[0,18],[0,22],[-2,21],[-3,10],[-1,16],[-1,9],[1,15],[1,23],[0,14],[2,1],[2,-9],[4,-22],[3,-27],[3,-24],[2,-32],[2,-19],[3,-11],[2,-11],[1,-12],[1,6],[1,21],[0,26],[-2,13],[-4,29],[-3,35],[0,22],[2,18],[-2,12],[-1,14],[2,22],[2,7],[2,-6],[3,-16],[2,8],[2,1],[2,11],[0,14],[-1,9],[-3,22],[-5,4],[-3,6],[-2,3],[-3,15],[1,16],[-1,20],[-2,23],[2,-3],[2,-16],[1,-10],[2,-5],[3,-9],[1,5],[0,16],[0,16],[1,15],[-1,13],[-2,0],[-1,11],[0,21],[0,21],[0,18],[-1,25],[-1,33],[-1,28],[0,20],[2,13],[1,14],[1,5],[0,-20],[1,-15],[2,-33],[2,1],[3,33],[2,18],[1,4],[0,18],[-1,18],[1,-2],[1,22],[-1,26],[1,16],[1,36],[0,32],[1,17],[1,-19],[-1,-23],[1,-11],[1,-7],[2,-16],[1,-16],[-1,-10],[0,-28]],[[4908,20009],[1,-9],[-3,-33],[-1,-9],[-1,-9],[-1,-18],[0,-19],[-1,-8],[0,-8],[-1,-16],[1,-14],[0,-20],[-1,-22],[-1,-9],[0,-15],[-1,-26],[-1,2],[-1,1],[-1,2],[0,30],[-2,5],[-2,-3],[-2,-11],[-1,-9],[-2,-3],[-2,-10],[-1,-13],[-1,-13],[-1,-11],[-1,-14],[-1,-9],[-1,19],[-1,-1],[-2,2],[-1,-4],[-1,23],[-2,-2],[-1,-4],[-1,-3],[0,15],[-2,4],[0,-1],[-4,-22],[0,12],[-1,12],[-1,34],[0,26],[1,20],[1,26],[1,20],[0,16],[2,17],[2,22],[1,11],[1,8],[2,5],[1,2],[2,-3],[2,-4],[0,-3],[1,0],[2,1],[1,-5],[2,-4],[1,1],[3,7],[1,11],[1,6],[2,6],[2,15],[0,3],[2,-2],[2,4],[1,0],[1,7],[2,8],[1,7],[1,2],[2,12],[0,-5],[1,-14],[0,-6],[1,-10]],[[4590,20114],[-2,-1],[0,15],[3,13],[3,-3],[0,-19],[-4,-5]],[[5485,20171],[1,-34],[-3,-5],[-3,-9],[-2,18],[1,17],[1,5],[2,5],[2,-4],[1,7]],[[5377,20047],[1,-25],[0,-26],[0,-27],[-2,-37],[0,-20],[-1,-10],[-2,-12],[0,6],[-1,10],[-3,0],[-3,-10],[-3,0],[-1,-3],[-1,-14],[-1,-15],[1,-12],[1,-6],[2,-6],[-1,-14],[-1,-11],[0,-10],[1,-8],[2,-3],[1,10],[1,-4],[1,-18],[-1,-12],[-1,-5],[-1,-10],[-1,-34],[-1,-35],[0,-18],[0,-18],[-1,-10],[-1,-23],[0,-40],[1,-40],[0,-28],[-2,-7],[-1,-7],[1,-20],[2,9],[3,1],[2,-4],[0,-18],[0,-27],[1,-28],[2,11],[2,48],[1,34],[1,43],[0,34],[-1,34],[0,26],[2,2],[2,17],[3,-6],[2,-10],[2,-3],[2,5],[1,4],[0,-14],[1,-15],[-1,-9],[-2,-17],[-1,-7],[-1,-14],[1,0],[2,-13],[0,-16],[-1,-17],[-1,-15],[-2,-13],[0,-14],[0,-6],[2,-2],[0,-17],[-1,-26],[0,-27],[-1,-18],[-2,-1],[-2,7],[0,17],[-3,28],[-1,8],[-2,-8],[0,-11],[1,-7],[1,-29],[1,-43],[2,-29],[0,-13],[0,-9],[-2,-15],[0,-22],[-1,-4],[-2,-11],[-1,-14],[-1,5],[-1,16],[-1,6],[-1,8],[-1,15],[0,10],[-1,5],[-2,7],[-1,7],[-1,8],[-1,-7],[-1,-4],[-1,0],[0,18],[-2,21],[-1,19],[-1,24],[-2,9],[-1,-1],[-3,7],[-1,1],[-1,-10],[3,-39],[1,-30],[-1,-24],[0,-20],[-1,-22],[-1,-10],[-1,5],[-2,16],[-1,13],[-1,4],[-1,-16],[1,-37],[1,-27],[2,-19],[2,-6],[2,4],[1,10],[1,-11],[1,-21],[0,-23],[0,-14],[1,-14],[1,-13],[-1,-10],[-2,-7],[-3,7],[-1,2],[-2,6],[-3,5],[-2,3],[-2,10],[-1,5],[-1,4],[-1,15],[-1,6],[-1,-4],[-1,-9],[-2,-18],[0,-13],[0,-10],[0,-9],[1,-14],[1,-9],[0,1],[1,11],[1,-11],[1,0],[1,-8],[-1,-9],[0,-10],[0,-13],[1,-4],[2,-11],[-1,-12],[-1,-7],[0,-8],[-1,-13],[-1,-23],[-2,-14],[-1,-12],[-1,-8],[-1,-7],[-1,-10],[-1,-4],[0,10],[-1,12],[-1,2],[-2,-9],[-1,-12],[1,-23],[-2,-14],[1,-10],[0,-19],[-1,-20],[-1,-17],[-1,-5],[-1,-6],[-1,-6],[-1,-6],[-2,-7],[-2,-16],[0,-15],[-1,-12],[-2,-3],[-1,-7],[-3,-9],[-2,-7],[-1,-6],[0,-18],[0,-27],[-1,-15],[-1,-27],[0,-25],[0,-23],[1,-20],[0,-21],[-1,-9],[-2,-13],[-3,-6],[-2,4],[-2,-3],[-2,-13],[-2,-9],[-1,-3],[-2,-11],[-1,-15],[-1,-27],[0,-24],[1,-22],[0,-15],[0,-23],[1,-25],[1,-11],[-1,-4],[-2,-11],[-2,-15],[-2,-16],[-2,-17],[2,-33],[2,-17],[1,-12],[0,-8],[-2,-8],[-3,-9],[-1,-18],[-2,-19],[-2,-9],[0,30],[1,14],[-1,1],[-2,3],[0,19],[0,24],[-1,36],[-2,17],[-1,5],[-1,11],[0,16],[-1,19],[1,9],[0,17],[1,8],[-1,10],[-1,14],[1,25],[1,18],[0,17],[0,12],[-2,6],[0,15],[1,4],[1,-1],[2,-5],[1,-3],[1,12],[1,11],[2,8],[2,-6],[2,-12],[3,-16],[1,-3],[1,14],[1,19],[3,31],[0,16],[-2,30],[0,26],[-1,24],[0,10],[2,9],[1,14],[2,7],[1,15],[0,16],[1,13],[1,11],[2,7],[1,17],[0,28],[0,14],[1,16],[1,18],[1,23],[2,28],[3,17],[2,16],[1,9],[2,2],[-1,11],[0,10],[-1,5],[-1,8],[2,4],[1,5],[1,3],[2,10],[2,-1],[1,8],[1,12],[-1,16],[-1,11],[0,16],[-1,18],[-2,15],[-3,-10],[-2,-10],[-1,-6],[-5,-19],[-1,15],[-2,12],[-2,-1],[-3,11],[-1,1],[-2,6],[1,10],[0,16],[-1,27],[2,20],[0,16],[1,7],[1,-9],[1,-4],[3,-3],[1,12],[1,9],[1,-2],[2,-11],[0,-15],[2,-19],[2,4],[1,10],[3,9],[-1,14],[0,-7],[-2,-1],[0,13],[-1,22],[-1,26],[-2,17],[1,8],[0,9],[-1,-3],[-2,-1],[-2,6],[-1,3],[-4,16],[-3,18],[-1,10],[-3,11],[-2,6],[0,14],[-1,19],[1,17],[1,17],[0,17],[1,9],[2,10],[1,4],[7,-36],[3,-21],[2,-8],[3,-27],[3,-20],[1,-5],[0,-4],[2,-2],[1,-9],[0,-10],[1,-9],[2,2],[1,-5],[1,-15],[2,-23],[1,5],[1,2],[1,3],[1,9],[-1,19],[-1,15],[-2,16],[-3,22],[-2,-9],[-1,13],[-1,21],[-1,26],[-1,14],[-1,20],[-1,12],[-1,14],[-1,19],[-1,13],[-2,31],[0,21],[0,19],[1,28],[3,41],[1,-2],[0,-11],[2,-16],[1,-14],[3,-16],[2,-10],[2,-21],[2,-28],[1,-19],[1,-42],[1,-18],[-1,-10],[-1,-16],[1,-19],[1,7],[2,3],[2,8],[2,5],[1,-3],[2,2],[1,-33],[0,-34],[2,-1],[2,26],[4,12],[2,25],[3,23],[1,19],[-1,14],[-6,-33],[-2,11],[-3,0],[0,12],[0,9],[1,7],[1,14],[1,24],[-3,18],[-2,17],[0,8],[1,11],[1,7],[1,12],[3,5],[1,14],[0,6],[-1,10],[-5,-6],[0,3],[-1,-2],[-1,12],[-1,26],[-1,11],[-1,0],[-2,6],[1,15],[1,2],[0,5],[-1,10],[-1,7],[-1,18],[-1,7],[-1,7],[1,13],[-1,12],[0,6],[1,11],[0,16],[-1,12],[-2,13],[-1,3],[-1,9],[1,5],[2,8],[1,-8],[2,-1],[2,14],[1,-2],[1,1],[3,-26],[1,-8],[2,-4],[1,-7],[1,-20],[0,-11],[1,-16],[1,-16],[2,-9],[1,2],[2,-14],[1,-30],[0,-26],[1,-20],[2,-10],[1,1],[1,5],[0,21],[1,10],[0,24],[-1,30],[0,38],[-1,14],[-1,32],[-1,42],[0,15],[0,18],[-1,14],[1,-3],[1,-4],[2,3],[2,-19],[1,-12],[2,-3],[1,-2],[1,5],[0,13],[1,9],[0,13],[-1,20],[-1,14],[1,13],[2,3],[1,2],[1,2],[1,7],[-1,9],[-2,8],[-1,6],[-2,7],[0,17],[-1,11],[0,4],[-1,15],[-1,18],[0,20],[0,13],[1,-1],[1,-12],[1,-7],[2,5],[1,17],[0,16],[1,4],[1,-2],[1,0],[0,14],[-1,11],[1,7],[1,3],[0,7],[1,22],[1,19],[0,13],[1,15],[1,10],[0,15],[0,7],[1,13],[1,7],[1,5],[2,-17],[1,-8],[1,0],[0,-20],[1,-8],[1,-6],[0,-18],[0,-13],[2,-9],[1,-18],[-1,-16],[1,-17]],[[4545,20197],[0,-15],[0,3],[-1,7],[-1,11],[1,12],[0,1],[1,-4],[0,-15]],[[4507,20022],[-3,-10],[-1,17],[21,311],[3,3],[0,-14],[-1,-7],[-1,-5],[-1,-10],[-1,-24],[-6,-94],[0,-18],[-2,-26],[-3,-33],[-4,-55],[-1,-35]],[[5318,20461],[-1,-15],[2,-12],[1,-18],[2,-18],[1,-12],[1,-8],[1,-5],[2,-3],[0,-4],[1,-13],[-1,-5],[-1,3],[0,-14],[0,-27],[0,-9],[0,-14],[-1,-10],[-3,-1],[1,17],[-1,6],[-1,3],[-1,-5],[-1,3],[-1,-9],[-1,-6],[-1,-3],[-1,5],[0,12],[-1,10],[-2,1],[-2,-4],[-1,4],[-1,4],[-1,-5],[-1,0],[0,16],[0,22],[0,21],[0,18],[-1,2],[-1,0],[-1,11],[0,11],[1,14],[2,12],[1,9],[1,7],[2,8],[3,2],[1,-2],[1,1],[2,8],[1,11],[1,-3],[0,-9],[-1,-7]],[[4988,20495],[-1,-3],[0,10],[0,21],[1,3],[1,-10],[-1,-21]],[[5239,20559],[2,-13],[2,-14],[1,-21],[0,-21],[-1,-8],[-2,-1],[-1,-10],[-1,-15],[-2,-27],[0,-19],[1,-4],[0,4],[1,12],[2,11],[1,14],[1,0],[1,-13],[1,-2],[1,6],[0,-15],[-1,-16],[-1,-5],[1,-18],[0,-20],[0,-31],[2,-32],[1,-23],[1,-18],[-1,-8],[-1,-13],[0,-17],[1,-17],[-1,-8],[-2,-4],[-1,-14],[1,-10],[0,-27],[-1,-31],[-1,-24],[0,-21],[-1,-12],[1,-16],[0,-19],[0,-18],[-2,-25],[0,-6],[-1,20],[0,18],[-1,16],[-2,11],[-3,13],[-3,1],[-2,-5],[0,4],[-1,12],[0,10],[1,12],[0,31],[-2,20],[-1,19],[0,18],[0,12],[-2,7],[-1,5],[-1,3],[-2,2],[0,-6],[-2,-22],[0,-19],[-1,5],[0,17],[-1,7],[-1,14],[-1,21],[-1,14],[-2,9],[-2,-6],[-1,-16],[-1,-10],[-1,-2],[-1,-9],[-1,-4],[-1,-1],[-1,3],[-2,13],[0,8],[-2,12],[0,9],[-1,9],[-1,7],[0,6],[-3,15],[0,8],[-1,0],[-1,13],[-1,10],[-1,9],[0,10],[-1,17],[2,4],[0,3],[2,9],[1,12],[0,17],[1,4],[1,13],[1,5],[1,5],[0,6],[0,7],[-1,5],[0,-6],[-1,0],[-1,4],[0,14],[1,16],[0,19],[0,14],[1,-1],[0,-3],[1,2],[0,17],[1,23],[0,5],[1,-1],[0,-2],[1,-1],[2,1],[1,2],[1,1],[1,-16],[1,-10],[0,-15],[0,-8],[1,-5],[1,-4],[1,-4],[1,-2],[2,-12],[1,2],[1,13],[1,-11],[0,-14],[1,-8],[2,9],[2,5],[1,1],[0,9],[1,13],[3,16],[1,12],[4,21],[3,13],[-1,14],[2,5],[1,-6],[0,-2],[1,-2],[1,8],[2,3]],[[5137,20758],[2,-7],[3,2],[1,1],[2,-4],[2,-12],[2,0],[1,-4],[1,-13],[1,-16],[2,-18],[1,-28],[-1,-21],[-1,-12],[0,-19],[0,-30],[0,-24],[2,-20],[-1,-19],[-1,-17],[0,-17],[0,-16],[-1,-14],[-1,-20],[-1,-18],[-1,-25],[-1,-8],[-1,11],[1,15],[1,22],[1,16],[-1,6],[-1,1],[-1,-6],[-1,-15],[-1,-10],[1,-14],[-1,-17],[-1,-16],[-4,-13],[-1,-6],[1,-15],[1,-14],[1,-14],[1,-12],[1,-26],[1,-8],[1,-4],[2,-2],[2,1],[1,16],[1,14],[2,9],[1,4],[1,10],[0,13],[0,18],[0,9],[2,4],[0,11],[2,5],[1,15],[1,15],[3,-2],[-1,-30],[0,-11],[2,-4],[2,0],[-1,7],[-1,5],[1,11],[2,20],[0,18],[0,12],[-1,10],[-1,13],[0,19],[-2,2],[-2,13],[0,20],[1,17],[3,27],[3,36],[1,26],[2,18],[1,14],[1,10],[1,10],[-1,9],[0,15],[1,-3],[1,6],[0,1],[1,-8],[1,-2],[2,6],[2,-4],[1,-18],[1,-4],[1,-3],[1,-4],[2,-11],[1,-7],[-1,-20],[0,-20],[0,-30],[1,-14],[0,-24],[-1,-5],[-1,-13],[0,-17],[0,-19],[-1,-10],[-1,-1],[-2,-16],[-2,-12],[-2,-6],[-1,-6],[-2,-15],[-1,-19],[1,-22],[-2,-25],[-2,-24],[0,-35],[0,-23],[1,-24],[1,-16],[1,-17],[1,-4],[-1,-16],[1,-17],[0,-19],[-1,-13],[1,-20],[1,-9],[1,-1],[1,-14],[0,-10],[1,-10],[2,-6],[2,3],[1,-10],[1,-9],[1,-14],[0,-17],[-1,-18],[0,-17],[-1,-21],[-1,-8],[-3,8],[-2,6],[-2,-9],[-2,-15],[-1,-16],[1,-10],[1,-9],[2,-6],[2,1],[1,4],[1,2],[2,0],[1,-1],[1,-4],[2,-7],[1,-1],[2,2],[1,-5],[2,-6],[1,-7],[1,-8],[0,-18],[-1,-14],[-1,-35],[0,-16],[1,-15],[2,-34],[0,-9],[1,-10],[1,-5],[2,-8],[2,-1],[1,5],[1,5],[1,-15],[0,-12],[-1,0],[0,-16],[-2,-18],[-1,3],[-2,10],[-1,-4],[-1,-6],[-1,-14],[-1,7],[-1,4],[-1,1],[-1,0],[-1,6],[-1,11],[-1,16],[-2,8],[-2,-1],[-1,3],[-1,3],[-2,1],[-1,-13],[-1,-1],[0,-15],[0,-13],[0,-12],[2,-13],[1,-3],[0,6],[1,-8],[1,-2],[1,-6],[1,-4],[0,16],[-1,10],[1,2],[1,-5],[1,-12],[2,2],[1,3],[-1,-12],[1,-12],[1,-9],[2,-13],[0,-5],[0,-11],[0,-18],[0,-14],[-2,-5],[0,-16],[-1,-18],[-2,-17],[0,-20],[-1,-16],[-1,-21],[0,-18],[-1,-3],[-1,7],[-2,-1],[0,10],[0,10],[1,10],[1,19],[0,16],[-1,24],[0,25],[-3,26],[-1,2],[-1,-10],[-1,-7],[-1,-1],[0,-2],[-2,1],[-1,-5],[0,-16],[0,-18],[-2,-8],[-2,-8],[0,14],[0,22],[1,15],[-1,12],[-1,1],[-1,-4],[-1,-8],[-2,-11],[-1,-7],[-2,-17],[0,-6],[-1,9],[-1,6],[-1,10],[-1,24],[0,19],[-1,15],[0,6],[-3,-13],[-1,-7],[-2,-5],[-1,2],[1,17],[-1,10],[-1,7],[-2,-3],[-1,10],[-1,11],[-1,10],[0,19],[0,24],[0,25],[-2,31],[0,7],[1,8],[1,8],[2,18],[2,12],[1,12],[-1,15],[-1,8],[-1,1],[-1,-1],[-2,6],[-1,9],[-2,-19],[-1,-18],[-1,-4],[0,-10],[1,-5],[1,-8],[0,-19],[-1,-2],[-2,1],[-1,4],[-3,4],[-2,4],[-1,9],[-1,-7],[-3,-13],[-2,-8],[-2,-3],[-1,-18],[-1,-16],[-1,-16],[0,-15],[0,-23],[0,-22],[-2,-13],[0,-11],[0,-18],[0,-13],[-1,-5],[-2,-11],[-1,-26],[1,-18],[0,-12],[-1,-5],[-1,-3],[0,-11],[0,-25],[-1,-22],[-1,-13],[0,-10],[-2,-20],[-1,-3],[-1,-7],[-1,-1],[0,-11],[-1,-12],[-1,3],[0,17],[2,18],[0,20],[0,22],[0,15],[0,18],[1,19],[-1,18],[1,6],[1,9],[1,18],[0,21],[-1,20],[1,21],[-1,15],[-2,7],[-1,5],[1,23],[0,26],[-1,20],[-1,15],[-1,14],[-2,14],[-1,26],[-1,15],[-1,6],[-2,4],[-1,3],[1,10],[0,17],[2,32],[1,44],[2,72],[-1,48],[-1,38],[-1,19],[-1,15],[-2,15],[0,12],[0,11],[0,15],[1,20],[1,24],[2,38],[1,38],[0,19],[-2,20],[-1,26],[-2,19],[-2,7],[0,4],[0,10],[2,10],[1,5],[1,-4],[0,-6],[-1,-3],[-1,-8],[1,-8],[1,-7],[1,-11],[1,-8],[1,-11],[1,1],[0,12],[0,7],[1,17],[1,17],[-1,-3],[-1,-8],[-2,-6],[-1,20],[1,20],[1,15],[-1,28],[0,16],[3,34],[2,22],[0,8],[1,1],[2,2],[1,-2],[2,6],[1,4],[-1,10],[-1,-1],[-3,-6],[-1,-1],[-1,3],[0,12],[1,16],[2,24],[2,34],[2,37],[6,39],[3,13],[4,10],[2,14],[1,10],[1,17],[2,19],[1,15],[0,10],[1,-6],[1,-9],[1,-8],[2,-14]],[[4589,20826],[1,-12],[0,-15],[-2,-21],[-1,-12],[-2,4],[-3,-9],[-1,-5],[-1,10],[-4,-16],[-4,-24],[-2,-24],[-1,-10],[-8,-39],[-2,-8],[-2,-12],[-1,-6],[-1,-4],[-2,-8],[-2,-10],[-6,-52],[-11,-88],[0,30],[7,51],[6,51],[1,17],[1,6],[2,7],[2,11],[1,1],[1,6],[1,5],[0,5],[1,5],[2,7],[2,10],[1,17],[2,8],[5,31],[3,29],[6,30],[2,6],[2,19],[1,6],[4,-2],[1,-1],[1,6]],[[4462,20920],[1,-8],[1,-11],[1,-4],[1,-19],[1,-39],[0,-19],[0,-4],[0,-15],[-1,-27],[0,-26],[-1,-12],[0,-8],[-1,-5],[-2,-9],[-3,5],[-2,16],[-1,9],[-1,8],[-2,6],[-1,14],[-1,18],[0,12],[-1,11],[0,1],[0,9],[1,44],[0,1],[0,11],[1,12],[0,12],[1,-3],[2,1],[2,5],[0,8],[0,4],[2,6],[2,2],[1,-6]],[[5263,21045],[1,-6],[2,4],[2,-8],[1,8],[2,-1],[1,-5],[2,-3],[1,-7],[0,-8],[-1,-6],[-1,-6],[-1,-10],[1,-22],[1,-13],[-1,-5],[-1,1],[0,3],[-1,-10],[-1,-21],[-1,-22],[1,-11],[1,11],[1,13],[2,17],[1,11],[3,-5],[1,-4],[1,17],[2,17],[1,19],[2,6],[0,-8],[-1,-12],[0,-23],[1,-14],[1,-1],[1,8],[2,10],[3,20],[4,14],[0,2],[0,-11],[0,-10],[0,-18],[-1,-21],[-2,-18],[0,-17],[-1,-20],[-1,-23],[0,-33],[1,-19],[1,-18],[0,-8],[0,-15],[0,-8],[1,0],[1,-5],[0,-9],[-1,-11],[-1,-14],[0,-16],[1,-13],[1,-9],[0,-18],[-1,-19],[-1,-10],[0,-3],[-1,3],[-2,10],[-1,3],[-1,4],[1,17],[0,15],[1,18],[0,19],[-1,11],[-1,7],[-2,7],[-3,0],[-2,-1],[-2,-2],[0,-12],[0,-12],[0,-15],[-1,1],[-1,6],[-1,7],[-1,9],[0,12],[0,16],[1,10],[-1,9],[-1,8],[-3,3],[-1,10],[-1,20],[-2,6],[-2,3],[-2,-9],[-1,-6],[-2,0],[-1,-10],[0,-16],[-1,-25],[-1,-28],[-2,-6],[-2,1],[-3,-11],[-1,-2],[-2,1],[-2,2],[0,7],[-1,9],[-1,17],[-2,23],[-1,23],[-1,23],[-2,22],[0,12],[0,12],[1,13],[1,17],[1,24],[2,21],[1,14],[1,15],[2,3],[1,8],[2,10],[3,15],[3,20],[3,22],[2,12],[2,2],[1,-11]],[[5320,21252],[-3,-6],[0,2],[0,18],[0,20],[1,18],[2,13],[1,14],[1,3],[1,-3],[0,-12],[0,-17],[0,-20],[-1,-16],[-1,-6],[-1,-8]],[[4876,21297],[0,-9],[-1,-3],[-2,3],[-1,-6],[-1,0],[-1,7],[0,10],[1,14],[1,21],[1,19],[2,-2],[0,-14],[-1,-13],[0,-18],[2,-1],[0,-2],[0,-6]],[[5228,21490],[2,-4],[3,-9],[1,-24],[-1,-4],[-1,-5],[0,2],[-1,-11],[-1,-10],[0,-10],[-1,11],[0,18],[-2,19],[-3,9],[-3,6],[1,9],[1,4],[2,-1],[2,3],[1,-3]],[[5109,23310],[1,-26],[1,-23],[0,-15],[-1,-2],[-2,11],[-1,20],[-2,14],[-3,11],[-2,2],[-2,0],[-2,-6],[-4,-18],[-4,-23],[-5,-16],[-5,-12],[-1,-3],[-1,-2],[-2,-6],[-1,10],[1,6],[1,4],[2,5],[1,12],[1,15],[1,12],[1,-1],[1,-1],[2,-1],[2,3],[3,7],[3,8],[2,4],[0,12],[1,11],[1,18],[2,18],[2,34],[2,30],[3,49],[1,22],[1,16],[0,-10],[1,-11],[0,-14],[0,-17],[-1,-27],[-1,-20],[1,-17],[1,-20],[1,-35],[0,-28]],[[5023,23725],[-2,-2],[0,24],[3,12],[3,19],[3,-6],[0,-19],[-7,-28]],[[5051,23717],[0,-4],[0,4],[-1,9],[1,24],[7,54],[2,-5],[-5,-42],[-4,-40]],[[5061,23848],[2,-5],[1,3],[2,-4],[0,-11],[-1,-11],[0,-5],[-1,4],[-2,6],[-1,0],[-1,4],[-1,-1],[-1,-2],[-3,-10],[-2,-5],[-1,4],[1,14],[2,12],[2,4],[1,4],[1,1],[2,-2]],[[5102,23870],[1,-5],[2,-2],[1,-4],[0,-14],[1,-9],[0,-9],[-1,-3],[-1,4],[-2,2],[-3,7],[-2,13],[-3,10],[-2,5],[-2,-6],[-3,-5],[-4,-19],[-2,-7],[-1,-3],[-1,0],[-3,3],[-5,-12],[-1,-10],[-1,-9],[-1,6],[1,18],[1,4],[2,4],[2,11],[1,3],[3,5],[3,7],[3,6],[2,2],[3,7],[2,10],[2,4],[3,1],[3,-6],[2,-9]],[[5514,27171],[0,-25],[-1,3],[0,23],[1,-1]],[[5520,27188],[-4,-27],[-1,2],[1,11],[1,10],[2,13],[2,10],[2,5],[2,16],[2,12],[4,28],[1,-1],[0,-10],[-1,-12],[-1,-7],[-3,-14],[-2,-9],[-2,-10],[-1,-9],[-2,-8]],[[5643,28077],[0,-44]],[[5643,28033],[-1,-5],[-1,-4],[-1,5],[1,14],[-2,-2],[-1,-13],[-1,-8],[-1,-9],[-4,-27],[-3,-26],[-2,-24],[-1,-15],[-1,-10],[-1,-3],[1,-6],[1,-5],[0,3],[2,-17],[1,-27],[3,-33],[3,-38],[3,-27],[3,-23],[2,-22],[-1,-9],[1,-7]],[[5643,27695],[0,-12],[0,-10],[0,-9],[0,-12],[0,-16],[0,-14],[0,-15],[1,-28],[0,-12],[0,-14],[0,-26],[0,-72],[-39,0],[0,-420],[-69,12],[0,-450],[-88,0],[0,-429],[-74,-12],[-7,0],[-4,0],[-1,-153],[0,-115],[0,-104],[0,-151],[0,-57],[-1,-260],[10,-1],[10,-2],[7,-1],[-1,-91],[0,-137],[0,-141],[0,-67],[0,-60],[0,-129],[0,-193],[-1,-100],[0,-66],[1,-90],[0,-107],[1,-147],[1,-163],[0,-104],[0,-18],[0,-68],[-3,0],[-15,0],[0,-163],[0,-161],[0,-143],[12,0],[19,0],[22,0],[15,0],[17,0],[0,-178],[0,-108],[0,-385],[0,-197],[0,-373]],[[5456,21923],[-1,8],[-1,12],[-1,0],[-2,-4],[-1,-15],[-1,-23],[-1,-13],[0,-5],[-1,-9],[-1,-27],[-1,-30],[-1,-20],[-1,-27],[-1,-39],[-1,-17],[-1,-30],[0,-21],[1,-20],[0,-17],[2,-21],[2,-15],[1,-12],[1,-15],[-3,2],[-1,12],[-1,10],[-2,8],[-1,15],[-1,13],[0,13],[-1,9],[-2,-1],[-2,-12],[-2,-3],[-1,11],[-1,11],[-2,3],[-3,-15],[-2,-25],[-3,-12],[-2,-3],[-2,-5],[-3,-3],[-2,-7],[-1,2],[0,10],[1,11],[1,19],[2,25],[1,23],[-1,5],[-1,7],[1,9],[1,11],[3,12],[3,17],[2,8],[0,10],[-1,14],[-1,-7],[-1,-12],[-1,6],[-1,15],[-2,3],[-4,-9],[-3,-16],[-2,-11],[-1,1],[1,15],[1,14],[1,22],[3,19],[5,1],[2,7],[3,-2],[3,7],[2,0],[0,-5],[1,-7],[3,10],[1,-4],[1,-14],[1,-4],[2,-6],[1,-24],[1,-9],[0,8],[1,17],[-1,15],[0,15],[-2,13],[1,25],[1,20],[2,10],[0,7],[2,5],[1,4],[1,16],[-1,28],[-2,17],[-3,-1],[-1,-1],[-1,-1],[-1,5],[1,18],[-1,18],[-4,0],[-2,2],[-1,13],[-3,1],[-4,-2],[-2,11],[-1,5],[-1,5],[2,10],[1,5],[2,19],[1,21],[-1,14],[1,20],[2,19],[0,4],[2,-9],[1,17],[-1,15],[1,6],[1,4],[3,21],[2,14],[1,5],[2,5],[2,22],[0,26],[-1,4],[-2,8],[-1,7],[-1,4],[-1,6],[-1,-6],[-1,12],[-1,12],[-2,7],[1,14],[0,25],[0,17],[0,17],[-1,4],[0,-6],[-1,1],[-1,22],[0,19],[0,20],[0,13],[1,15],[1,17],[1,13],[1,33],[3,36],[2,37],[0,18],[0,16],[1,19],[0,17],[2,15],[1,22],[0,16],[1,7],[1,0],[2,2],[1,13],[1,8],[1,-5],[0,-16],[1,-11],[2,-5],[2,-3],[1,6],[-1,21],[-2,8],[-2,11],[-2,12],[-2,2],[-1,-2],[-1,14],[-3,29],[-3,44],[-5,19],[-2,7],[-1,5],[-2,3],[-3,9],[-2,18],[-4,18],[-4,8],[-2,2],[-2,3],[-1,1],[-3,5],[-4,14],[-2,-2],[-1,-6],[-2,7],[-2,-5],[-2,13],[-3,10],[-2,-2],[-2,-9],[-2,-7],[-2,-2],[-1,-9],[-3,-17],[-1,-28],[1,-23],[0,-19],[1,-9],[2,2],[-1,-11],[-1,-27],[0,-50],[1,-29],[0,-28],[-1,-17],[0,-9],[-2,-9],[0,-26],[-1,-13],[-2,-6],[-2,-8],[-2,0],[-2,2],[-4,29],[-2,18],[-2,12],[-2,14],[-2,13],[-1,4],[0,6],[-1,19],[-2,16],[1,24],[-1,4],[-2,9],[-2,4],[-2,-9],[0,-7],[-1,-11],[1,-40],[1,-27],[1,-30],[0,-42],[-1,-18],[-1,-21],[0,-14],[-1,-6],[-1,0],[0,10],[-2,22],[-1,19],[-1,8],[0,15],[0,23],[-2,12],[-1,5],[-1,1],[-1,-3],[-1,-3],[-2,-9],[-2,-11],[-1,-18],[-1,-26],[0,-11],[1,-15],[0,-17],[-3,-8],[-1,0],[-1,-6],[-1,-28],[0,-14],[0,-15],[1,-16],[1,-4],[1,-7],[3,-17],[1,-19],[1,-11],[1,-24],[1,-22],[0,-12],[0,-18],[0,-33],[-1,-27],[-2,-1],[-2,0],[-1,9],[-2,4],[-4,6],[-2,11],[-2,13],[-1,11],[-1,1],[-1,-6],[-1,-16],[-1,-18],[0,12],[0,17],[1,7],[-1,8],[1,5],[2,5],[2,8],[0,13],[-1,12],[-1,-1],[-2,5],[-1,-8],[-1,-10],[0,-18],[-1,-19],[0,-20],[0,-13],[1,-13],[4,-35],[1,-9],[1,-9],[2,-9],[2,-20],[2,-17],[-1,-11],[-4,11],[-2,8],[-2,-6],[-1,8],[-1,13],[-1,15],[-1,0],[-2,-14],[-1,47],[-2,26],[0,20],[-1,28],[-4,37],[-4,25],[-1,18],[-1,-8],[1,-24],[3,-45],[1,-25],[0,-51],[-1,-58],[2,-57],[1,-44],[1,-39],[0,-29],[-1,-16],[-1,-3],[-4,0],[-3,6],[-4,-1],[-3,-31],[-5,-7],[-2,-2],[-1,-6],[-1,9],[0,8],[-3,17],[-1,17],[-2,22],[-1,31],[1,22],[0,34],[-1,9],[-1,-6],[-2,-24],[-2,-10],[0,-28],[2,-9],[1,4],[1,-12],[0,-16],[1,-14],[-1,-9],[-1,-9],[-2,-23],[0,-16],[0,-14],[1,-10],[2,-2],[1,-14],[0,-21],[-1,4],[-1,5],[-1,4],[-1,16],[-3,1],[-3,-20],[0,-16],[0,-12],[-2,2],[-2,3],[-3,13],[-3,-7],[-3,15],[-5,3],[-3,24],[-5,28],[-2,-2],[-2,18],[-5,23],[-2,11],[-1,-1],[-2,-13],[-2,-23],[-1,-45],[0,-39],[1,-11],[2,-4],[2,-17],[2,-4],[4,-19],[3,-27],[3,-31],[4,-25],[1,-18],[-1,-10],[-1,-5],[-1,-16],[-4,15],[-4,-18],[-2,-37],[-2,-39],[-3,-41],[-2,-21],[-2,-4],[-1,-2],[-1,13],[-2,22],[-1,12],[0,20],[-2,1],[-3,-14],[0,-12],[1,-9],[1,-10],[1,-5],[1,-4],[1,-13],[-1,-27],[0,-14],[1,-19],[1,-18],[1,-20],[-1,-12],[-1,-19],[-1,-26],[-1,-15],[-1,-14],[-1,-17],[0,-30],[1,-18],[0,-43],[0,-43],[-3,-47],[-3,-38],[-4,-38],[-1,-15],[-6,-20],[-4,6],[0,14],[-1,37],[0,33],[-1,48],[-2,58],[-1,45],[-3,33],[-1,35],[-1,23],[-1,11],[-1,20],[0,20],[1,28],[-1,35],[-2,26],[-2,18],[0,16],[0,16],[1,21],[0,23],[1,16],[-1,11],[0,2],[-1,24],[3,14],[4,19],[0,10],[0,12],[-1,0],[-1,-8],[-2,0],[-3,-3],[-3,-11],[-1,-8],[-1,-4],[-1,-9],[-1,-6],[2,-4],[1,-6],[0,-28],[-1,9],[-2,-21],[1,-26],[2,-21],[-2,-28],[-2,-35],[-2,-28],[-2,-26],[-3,-33],[-1,-10],[-1,-5],[-1,-2],[-1,-5],[-1,-6],[-1,0],[-2,6],[-3,19],[-3,13],[-2,17],[-4,2],[-3,-3],[-2,-2],[-4,-13],[-4,-27],[-2,-42],[0,-29],[0,-9],[2,-14],[2,-1],[4,-15],[4,-8],[3,13],[3,-4],[4,-25],[6,-6],[3,1],[1,-6],[0,-11],[1,-17],[1,-22],[1,-36],[1,-40],[-1,-57],[-1,-35],[-3,-56],[-1,-13],[-1,-2],[-1,2],[-1,-9],[-3,-4],[-3,-1],[-5,11],[-6,-5],[-4,-8],[-5,-11],[-3,-15],[-4,15],[-3,21],[-2,12],[-3,35],[-4,23],[0,34],[-1,48],[2,37],[2,20],[2,29],[-1,20],[-1,25],[-3,20],[-3,18],[-5,15],[-5,-1],[-7,-13],[-1,0],[-2,-3],[-1,-16],[-1,-22],[-5,-39],[-1,-26],[-1,-29],[-2,-36],[-2,-50],[-3,-33],[0,-32],[0,-26],[-1,-34],[-1,-18],[-3,-51],[-5,-46],[-7,-27],[-5,-38],[-4,-37],[-5,-22],[-9,-51],[-3,-11],[-1,-5],[-2,-9],[-4,-13],[-5,-15],[-2,-18],[-3,-6],[0,-21],[-2,-28],[-5,-27],[-4,-41],[0,-4],[-2,10],[-3,4],[-2,-5],[-1,-3],[-1,-11],[-3,1],[-1,-5],[-3,7],[-4,9],[-4,5],[-2,8],[1,6],[1,8],[1,21],[1,29],[-1,32],[-2,8],[-3,13],[-3,12],[-6,-8],[-6,-22],[-5,-17],[-3,-18],[0,-25],[-2,-4],[-1,-1],[-3,7],[-2,0],[-3,-26],[-2,-19],[-3,-3],[-3,4],[-2,-3],[-1,14],[-3,7],[-1,22],[0,25],[-1,28],[0,24],[0,12],[0,16],[1,11],[1,16],[3,15],[1,37],[0,20],[1,18],[1,29],[1,74],[1,38],[-1,27],[1,38],[1,31],[0,29],[-1,35],[2,29],[-2,32],[-3,0],[-1,13],[2,10],[4,35],[3,25],[2,31],[3,38],[3,34],[1,6],[1,23],[1,40],[2,21],[0,-6],[1,-1],[0,21],[0,17],[2,36],[2,23],[1,14],[-1,7],[5,33],[2,29],[1,19],[0,28],[1,30],[1,10],[0,-47],[0,-19],[2,-9],[2,-19],[0,-27],[0,-24],[2,-19],[2,0],[1,-12],[0,-22],[1,-3],[1,-6],[0,-25],[1,-20],[3,-12],[4,9],[0,39],[-1,17],[1,12],[2,-26],[0,-43],[2,-43],[4,6],[3,25],[3,-19],[3,-9],[2,-27],[2,-9],[2,17],[2,0],[2,-2],[1,-28],[2,-2],[3,15],[2,0],[3,-29],[3,17],[2,18],[-1,14],[-1,2],[0,12],[0,17],[1,22],[-4,19],[-5,17],[-3,0],[-3,-24],[-5,4],[-4,12],[-3,29],[-1,13],[-3,16],[0,51],[-2,3],[-3,7],[0,50],[-3,6],[-3,59],[-5,36],[-5,8],[-5,0],[-4,-23],[-2,24],[1,-2],[1,4],[1,15],[-1,31],[-2,31],[-3,22],[-4,24],[-7,21],[-7,7],[-7,2],[-4,-1],[-6,-8],[-7,-9],[-5,-16],[-6,-24],[-6,-12],[-4,-31],[-3,-38],[1,-16],[1,-21],[0,-24],[-1,-4],[-1,7],[-1,4],[0,-9],[-1,-15],[-2,-18],[-1,-18],[0,-18],[-2,-7],[-1,-7],[-2,-6],[0,8],[-1,-4],[-1,-10],[-3,-9],[-1,6],[-2,-4],[0,-19],[2,-11],[1,3],[2,-4],[1,-7],[1,-8],[1,11],[2,16],[0,21],[1,11],[1,2],[-1,-22],[1,-19],[-1,-5],[-2,-20],[-2,-30],[-5,-43],[-2,-33],[-2,-21],[-4,-17],[-1,-29],[1,-21],[3,21],[4,54],[0,-4],[-1,-26],[-1,-14],[-2,-25],[-3,-26],[0,-24],[-1,-22],[-1,-18],[-1,-13],[-1,9],[1,18],[0,20],[0,11],[0,5],[-1,-20],[-1,-24],[0,-20],[1,-9],[1,-5],[-1,-20],[2,-15],[1,21],[0,-15],[0,-17],[0,-13],[1,-5],[0,22],[0,17],[0,11],[1,6],[0,-1],[1,-17],[0,-41],[1,-23],[0,-31],[-1,-37],[0,-23],[0,-33],[-1,-37],[0,-65],[0,-68],[2,-35],[0,-18],[1,-23],[-4,-71],[-6,-84],[-2,-22],[-1,3],[0,-12],[-1,-20],[-1,-15],[-1,3],[0,-16],[-1,-26],[-4,-40],[-6,-72],[-4,-51],[-3,-74],[-6,-99],[-1,-17],[-2,-7],[1,24],[-1,3],[-2,-13],[-2,-22],[-1,-21],[1,5],[-1,-22],[-2,-33],[-3,-85],[-1,-45],[0,-22],[-1,-11],[0,12],[0,23],[0,20],[0,31],[0,30],[0,12],[-1,-6],[-1,-26],[0,-10],[-1,7],[-2,-2],[-1,8],[0,19],[0,14],[-2,14],[-1,16],[-1,5],[0,-10],[0,-8],[1,-16],[0,-17],[1,-20],[1,-10],[0,-10],[-1,-18],[1,-6],[1,5],[1,1],[1,13],[0,-14],[1,-8],[1,-6],[1,-11],[-1,-33],[0,-15],[1,-9],[2,3],[1,11],[0,-23],[-1,-18],[-1,-8],[-2,-18],[-1,-6],[-2,1],[-1,-5],[1,-19],[0,-11],[0,-20],[-1,-6],[-1,4],[-1,-1],[-1,6],[-1,9],[-1,12],[-1,6],[-2,13],[-2,12],[-1,12],[-2,13],[-1,15],[-1,12],[1,10],[1,1],[1,-3],[1,0],[1,-8],[1,-11],[2,-14],[1,-14],[1,-10],[1,7],[1,6],[2,4],[1,2],[0,-7],[1,7],[1,11],[1,13],[-1,15],[0,11],[-2,1],[-1,-7],[-2,1],[-1,-4],[-1,-2],[-3,14],[-5,22],[-2,8],[-2,-8],[0,-14],[0,-10],[-1,-1],[-2,12],[-1,9],[-2,5],[-2,5],[0,18],[-1,-8],[0,-9],[-1,-7],[-2,1],[-1,5],[-1,5],[-3,0],[-1,1],[-1,-4],[-2,-9],[-1,-9],[0,-13],[0,-10],[0,-20],[1,-13],[1,-4],[2,2],[0,2],[1,-12],[1,-18],[1,-53],[1,-15],[0,-9],[1,-8],[0,-16],[1,-18],[0,-15],[1,-12],[1,9],[1,-10],[0,-14],[-1,-7],[-1,-25],[-1,-7],[-1,0],[-1,1],[-1,5],[-2,7],[-2,3],[-1,-1],[0,-1],[-1,-1],[-1,-7],[1,-22],[1,-6],[1,-5],[2,0],[1,2],[0,4],[1,8],[1,-16],[1,-9],[1,-2],[1,-8],[1,8],[1,-4],[1,-1],[1,-5],[1,-8],[2,-3],[2,2],[1,-6],[1,-16],[0,-8],[0,-16],[0,-28],[1,-15],[0,-14],[0,-15],[-1,-12],[1,-19],[1,-12],[1,-13],[1,-8],[1,-10],[1,-9],[-1,-10],[-1,-7],[-1,-16],[0,-19],[-1,-11],[0,-13],[-1,-14],[-1,-7],[-1,-7],[-1,-11],[-2,-7],[-2,-15],[-1,-7],[-2,-6],[-1,-1],[-1,6],[-2,-2],[-1,1],[-1,0],[-1,-10],[-2,-14],[0,-8],[-1,-11],[-2,-19],[-1,-9],[-1,-2],[-1,-13],[0,-6],[-1,-14],[-1,-3],[0,2],[-1,8],[-1,11],[0,13],[-1,8],[-1,14],[-1,13],[-2,15],[-1,8],[-1,0],[-1,8],[-1,12],[-2,18],[-2,13],[-2,3],[-1,2],[-3,26],[-2,24],[1,22],[2,25],[1,7],[2,2],[1,3],[2,7],[0,16],[-1,17],[-2,9],[-1,9],[1,18],[1,26],[2,20],[2,12],[1,11],[1,15],[0,13],[0,18],[1,10],[2,5],[1,10],[0,23],[-1,9],[0,-4],[-2,-10],[-1,-4],[-1,-5],[-1,-19],[0,-21],[0,-13],[0,-9],[-1,-5],[-2,-8],[0,-7],[-2,-5],[-2,2],[-2,5],[-1,10],[-1,4],[-2,-3],[-1,-2],[-3,-4],[-2,-5],[-2,0],[-1,-12],[0,-16],[-1,-19],[0,-21],[-1,-18],[-1,-22],[-1,-7],[-2,-3],[0,-7],[-2,-16],[-1,-15],[-1,-20],[-1,-21],[-1,-30],[0,-27],[1,-25],[2,-20],[1,-14],[1,-10],[1,1],[0,-6],[0,-6],[-1,-23],[0,-13],[0,-20],[2,-16],[2,-24],[1,-19],[0,-16],[-1,-13],[-1,-12],[-1,-19],[-2,-29],[-1,-20],[0,-16],[-1,-17],[-1,-16],[-1,-17],[-1,-2],[-1,-5],[-2,-10],[-2,-12],[-2,-11],[-1,0],[-2,4],[-2,2],[-1,7],[-3,15],[-1,14],[-1,13],[-1,10],[-1,12],[0,8],[0,6],[-1,6],[0,17],[-1,22],[0,15],[0,13],[0,17],[-1,15],[-1,8],[-1,-1],[1,21],[2,-5],[3,14],[-1,28],[1,32],[0,25],[-2,0],[-7,-68],[-1,-22],[1,-19],[-1,-66],[0,-12],[-1,-14],[-1,-14],[-1,-5],[-1,-2],[-1,1],[-1,3],[-1,3],[-1,3],[-1,4],[-2,1],[-2,2],[-2,-2],[-2,-8],[-2,-12],[-1,-9],[-1,-8],[-1,-11],[-1,6],[-1,11],[-1,2],[-1,10],[-1,5],[-2,6],[-2,9],[-1,10],[-7,31],[-1,8],[-1,17],[-1,7],[-1,10],[-1,9],[-1,19],[-1,14],[0,13],[-1,9],[0,14],[0,11],[-1,7],[-1,5],[-1,14],[-1,13],[0,17],[1,21],[-1,16],[-1,21],[-2,16],[-1,3],[1,11],[1,15],[-1,13],[0,16],[1,5],[1,4],[2,7],[2,0],[4,14],[3,6],[2,11],[1,3],[1,0],[1,-3],[1,-6],[1,-10],[1,-8],[1,-14],[1,-12],[1,-15],[1,-11],[1,-12],[1,-13],[1,-2],[1,-2],[2,8],[1,-11],[1,-14],[1,-5],[1,-3],[1,2],[1,2],[2,2],[1,5],[0,5],[2,4],[1,-6],[1,-2],[2,3],[1,3],[1,0],[1,9],[-1,15],[0,15],[-1,9],[-1,0],[-1,4],[-1,5],[-1,5],[-1,3],[-1,1],[-2,-3],[-1,2],[-1,6],[-1,4],[-1,-1],[-1,0],[-1,6],[-1,9],[-1,13],[-1,11],[-1,12],[0,6],[-2,18],[-1,12],[-1,15],[0,18],[-2,15],[0,6],[-1,14],[-1,16],[-1,8],[-2,4],[-2,6],[-2,13],[-1,9],[-2,6],[0,17],[-1,14],[0,20],[-1,22],[0,16],[-1,23],[-1,30],[1,16],[-1,9],[0,15],[0,19],[-1,21],[0,24],[0,20],[0,23],[-1,22],[-1,19],[0,26],[0,23],[0,14],[-1,6],[0,16],[0,21],[-1,15],[-1,8],[-2,11],[-2,8],[-2,5],[-1,7],[-2,15],[-2,10],[-2,3],[-1,5],[-1,7],[-2,8],[-2,5],[-2,-6],[-2,4],[-2,4],[-2,6],[0,1],[-5,5],[2,32],[3,-4],[1,-2],[2,-9],[1,-1],[1,-1],[2,2],[1,6],[1,5],[2,-3],[1,-2],[1,6],[-1,12],[-1,22],[0,12],[1,5],[1,-3],[1,-2],[1,-2],[2,-9],[-1,13],[0,15],[0,17],[-1,11],[-1,-8],[-1,-2],[-1,-2],[-1,9],[-1,-3],[-1,-6],[-1,15],[-1,5],[-2,3],[-2,-7],[-3,2],[-1,6],[-1,13],[-1,3],[-2,0],[-5,0],[-8,-88],[-4,-52],[0,-11],[1,0],[1,12],[1,0],[0,-15],[-2,-20],[-3,-50],[-1,20],[-4,-21],[-1,-25],[0,-7],[2,-29],[0,-17],[-2,-80],[1,-12],[0,-13],[1,-23],[0,-12],[1,-8],[0,-7],[1,-6],[1,1],[1,-2],[0,-6],[1,-3],[1,-9],[0,-13],[1,-8],[-1,-14],[0,-9],[1,-4],[1,-6],[2,-1],[1,-4],[1,-1],[0,3],[1,-5],[1,-1],[1,5],[0,-13],[1,-9],[1,-2],[1,-2],[1,-12],[1,-4],[1,-4],[1,-12],[0,-11],[1,-10],[1,9],[-1,11],[-1,13],[-1,9],[0,10],[-1,17],[0,15],[2,-8],[0,-14],[1,-15],[1,-14],[1,-9],[0,-9],[2,-11],[0,-12],[1,-9],[1,-12],[0,-16],[1,-20],[0,-10],[0,-31],[2,-13],[1,-7],[1,-14],[1,-20],[1,-13],[1,-11],[1,-14],[0,-10],[-1,-13],[0,-18],[-1,-9],[-1,-3],[-1,-6],[-1,-8],[0,2],[-2,3],[-1,11],[1,2],[1,-2],[1,3],[-1,12],[0,11],[0,11],[-1,9],[-1,4],[-1,5],[-1,10],[-1,4],[-2,5],[-1,1],[1,-18],[0,-20],[-1,-17],[0,-21],[1,-15],[0,10],[1,3],[0,-14],[-1,-10],[-1,-17],[0,-15],[0,-18],[0,-15],[0,-25],[0,-30],[0,-19],[0,-23],[0,-17],[0,-26],[-2,-18],[-1,-16],[0,-24],[0,-14],[0,-11],[0,-4],[1,-2],[2,1],[1,11],[1,15],[0,23],[1,13],[0,15],[1,4],[0,12],[1,12],[0,16],[0,12],[-1,9],[-1,19],[1,-4],[1,-15],[1,-15],[1,-10],[0,-17],[0,-25],[0,-17],[0,-18],[0,-15],[1,-9],[1,-13],[-1,-33],[0,-14],[1,-15],[1,-19],[0,-19],[1,-14],[1,-12],[0,-16],[0,-24],[1,-11],[0,-13],[1,-10],[1,-8],[1,-12],[1,-20],[0,-16],[0,-18],[0,-17],[-1,-16],[0,-44],[0,-17],[1,-50],[0,-43],[0,-13],[1,-5],[2,-6],[1,-16],[0,-25],[0,-8],[-2,-14],[-1,-4],[-1,16],[-2,11],[-2,1],[-1,14],[1,16],[-1,20],[0,17],[-3,24],[-3,15],[0,6],[-2,51],[-11,60],[0,9],[4,-11],[1,15],[-1,17],[-4,11],[-5,13],[1,23],[3,2],[5,-38],[6,3],[3,11],[1,25],[-1,60],[-3,82],[-3,39],[-6,3],[-8,-54],[-1,-42],[3,-15],[-1,-44],[-2,-41],[0,-28],[2,-13],[2,-41],[-1,-18],[-1,0],[-2,-2],[-1,-3],[-3,-7],[-3,-17],[-2,-23],[-1,-23],[0,-10],[2,-14],[1,-25],[1,-30],[-1,-32],[-1,-11],[-2,2],[0,-12],[-1,-11],[-2,-1],[-3,-7],[0,-19],[-1,-22],[-4,-28],[-3,-24],[-2,-3],[-3,18],[-2,18],[-3,12],[-3,-3],[-1,-3],[-1,-10],[-1,-16],[0,-16],[-2,-26],[-3,0],[-4,13],[-3,15],[-3,11],[-3,23],[-2,36],[-2,15],[-2,3],[-2,7],[1,14],[0,14],[-2,12],[0,24],[1,18],[0,17],[-1,12],[-2,10],[-3,22],[-3,24],[-1,23],[-1,26],[-3,28],[-1,10],[2,12],[0,20],[0,14],[0,14],[0,14],[1,7],[1,2],[0,-12],[1,-2],[2,-4],[1,-4],[1,-2],[1,-7],[1,-9],[2,-7],[1,-8],[1,-6],[1,0],[1,14],[0,14],[0,12],[0,16],[0,12],[-1,6],[-2,23],[-2,15],[-1,7],[-1,-2],[-1,-16],[-1,-14],[0,-11],[-1,-5],[0,20],[-1,14],[-1,8],[-1,8],[0,14],[-1,38],[-1,12],[-1,9],[-2,14],[-2,13],[0,11],[-1,30],[-2,34],[-1,29],[0,18],[-1,17],[-1,11],[-1,13],[-1,2],[-1,0],[-1,7],[-2,27],[-2,16],[-2,11],[-2,13],[-1,15],[-1,12],[-1,6],[-2,9],[-1,9],[-2,5],[-3,1],[-4,-3],[-2,-7],[-3,-8],[-2,-17],[-2,-15],[-2,-11],[-1,-7],[-2,-3],[-2,2],[-1,7],[-1,11],[2,11],[1,2],[2,-4],[1,-1],[1,4],[1,10],[1,16],[2,-2],[1,8],[1,13],[0,15],[1,9],[0,8],[2,-6],[1,-1],[1,0],[2,7],[1,-9],[0,8],[-1,15],[0,10],[-1,8],[0,7],[-2,4],[-1,3],[-2,-3],[-1,-3],[-1,0],[-2,-1],[-1,2],[-2,0],[-1,4],[0,19],[-2,-11],[-1,-12],[-1,4],[-2,3],[0,13],[-1,13],[1,8],[2,6],[1,4],[0,9],[0,5],[-1,-1],[-1,-5],[-1,1],[-2,2],[-2,-2],[-2,-10],[-1,-11],[-1,-12],[-1,-7],[0,-10],[0,-12],[1,7],[1,-1],[0,-32],[0,-22],[0,-5],[1,-8],[-1,-9],[-1,-5],[-1,-6],[-1,-9],[-1,-1],[0,-15],[1,-11],[1,-7],[0,-17],[0,-11],[2,-7],[1,-6],[0,-14],[0,-15],[-1,-9],[-1,-1],[-2,11],[-3,0],[0,7],[0,29],[0,39],[-1,24],[-1,17],[-2,1],[-2,-24],[-1,-14],[2,-18],[1,-15],[-1,-29],[0,-17],[0,-48],[2,-24],[2,0],[2,5],[1,-19],[-1,-9],[-1,-15],[0,-22],[-1,-17],[0,-17],[-1,-16],[-1,-9],[0,-22],[0,-13],[0,-20],[1,-17],[1,-20],[0,-15],[1,-10],[2,-14],[2,-10],[1,-10],[2,-13],[2,-8],[2,-10],[2,-2],[2,8],[2,-1],[1,0],[1,-11],[2,-12],[1,-10],[1,-18],[3,-27],[3,-10],[1,-12],[3,-15],[5,-33],[3,-24],[3,-31],[1,-8],[1,-12],[0,-23],[1,-19],[-1,-36],[1,-21],[2,-1],[2,7],[2,-6],[-1,-9],[-2,-23],[-5,-34],[-1,-24],[-3,-24],[-1,-6],[-1,-11],[-6,-36],[-3,-32],[-4,-25],[-5,-20],[-1,-30],[0,-17],[-2,-22],[-4,-20],[-3,-32],[-2,-17],[-2,-2],[-2,-18],[-3,-24],[-2,-23],[0,-24],[0,-32],[-3,-32],[-4,-25],[-3,-9],[-3,-4],[-3,3],[-3,-6],[-2,-3],[-2,-8],[-1,-5],[-1,-17],[0,-19],[-1,-17],[0,-15],[-2,-25],[-2,-7],[-2,2],[-1,1],[-2,0],[-2,3],[-2,-1],[-2,9],[-1,20],[1,21],[0,24],[-1,33],[0,13],[-1,11],[0,22],[-1,16],[-1,8],[0,8],[-2,9],[-1,0],[-1,31],[1,11],[1,3],[1,7],[2,12],[0,10],[3,18],[1,4],[3,15],[1,-1],[3,8],[2,18],[2,17],[0,16],[-1,22],[-1,17],[2,24],[0,15],[0,20],[1,31],[3,16],[3,7],[2,7],[1,5],[1,-17],[1,-1],[1,12],[1,13],[1,41],[-3,23],[-2,-42],[-2,-8],[-1,17],[0,20],[-1,22],[-1,-9],[-1,-17],[0,-23],[-2,-18],[-3,-9],[-2,0],[-2,1],[-2,9],[-1,29],[0,37],[1,17],[0,17],[0,28],[0,27],[1,28],[1,3],[2,-29],[5,-6],[2,-44],[3,-6],[3,13],[5,-7],[2,-5],[1,-3],[6,-57],[3,33],[-1,35],[-4,41],[-3,19],[-10,53],[-2,49],[1,57],[1,32],[0,13],[2,124],[0,15],[0,51],[-2,109],[-6,97],[-2,53],[6,108],[-1,28],[-9,-96],[-4,-34],[-1,-6],[-4,-27],[-3,-12],[-5,-26],[-2,-27],[-1,-4],[-1,-27],[0,-16],[2,-2],[3,12],[0,-21],[2,6],[2,37],[3,8],[1,-8],[-2,-37],[-3,-32],[-5,-13],[-6,5],[-1,10],[-1,61],[1,26],[5,21],[2,21],[19,139],[4,37],[1,5],[29,261],[1,3],[3,14],[4,14],[3,12],[2,8],[2,16],[2,1],[3,2],[3,4],[2,6],[2,12],[3,27],[3,26],[9,98],[3,29],[2,36],[2,15],[2,28],[1,21],[1,16],[1,11],[3,16],[1,2],[2,-6],[-1,-13],[0,-14],[0,-12],[0,-15],[-1,2],[-1,13],[0,17],[-1,-6],[-2,-6],[-1,-11],[-1,-15],[0,-21],[1,-16],[1,-9],[1,-10],[-1,-13],[-1,-17],[-3,-13],[-2,-10],[-2,-5],[-2,-28],[-2,-35],[-3,-29],[-2,-22],[-2,-20],[-1,-25],[0,-16],[2,-9],[1,-1],[0,-7],[2,-1],[1,3],[2,-1],[1,-1],[1,0],[1,-8],[1,3],[1,0],[0,-15],[1,9],[1,2],[2,8],[1,7],[1,-2],[1,3],[1,0],[1,-13],[-1,-17],[1,0],[1,5],[0,14],[0,7],[-1,5],[1,10],[1,7],[1,9],[1,1],[1,-9],[0,-11],[1,0],[2,-13],[0,13],[1,-3],[2,-12],[1,-10],[1,-10],[0,-17],[1,-8],[1,2],[1,3],[1,2],[1,-3],[0,-12],[2,3],[0,16],[0,14],[-1,9],[0,14],[1,8],[0,17],[1,4],[2,7],[1,4],[1,1],[1,-1],[0,-2],[2,-4],[1,-3],[2,9],[1,1],[2,0],[1,-7],[1,1],[2,1],[0,15],[1,2],[0,12],[0,12],[0,7],[2,15],[-2,12],[0,13],[1,30],[1,21],[0,13],[1,14],[-1,9],[1,5],[1,2],[0,12],[2,10],[1,1],[1,-5],[-1,13],[1,15],[-2,0],[0,13],[0,24],[0,14],[-1,20],[-1,9],[-1,14],[-1,7],[-1,-2],[-2,2],[-1,-3],[-1,-15],[-1,-14],[-1,-20],[0,9],[-1,3],[-1,9],[-1,-1],[-1,2],[0,11],[0,14],[1,14],[-1,11],[-1,-13],[0,-3],[0,15],[0,11],[1,4],[1,-5],[1,1],[3,6],[1,9],[0,14],[-1,3],[-1,-8],[0,15],[0,17],[0,13],[-2,7],[1,11],[1,7],[1,2],[0,-1],[1,-7],[0,-21],[2,-1],[1,5],[1,6],[-1,6],[1,7],[2,1],[-2,16],[2,8],[1,0],[1,-7],[1,-11],[1,-16],[-1,-16],[-1,-11],[1,-1],[1,5],[2,1],[1,16],[-1,13],[1,5],[2,7],[1,23],[0,20],[0,11],[1,11],[1,13],[1,6],[1,-2],[1,-19],[1,-7],[1,6],[1,0],[1,5],[0,22],[-2,-7],[-1,-4],[-1,12],[-1,18],[0,11],[-1,2],[0,16],[1,17],[2,12],[1,15],[3,8],[2,7],[1,2],[2,-1],[1,-3],[0,-15],[1,-4],[0,-11],[-1,-7],[-2,-9],[-1,-5],[-2,-1],[1,12],[-1,2],[-2,0],[-1,-7],[0,-18],[0,-12],[2,3],[1,0],[1,-2],[0,-5],[2,4],[1,19],[1,-12],[0,-6],[2,-17],[2,19],[-1,4],[-1,10],[0,15],[0,11],[2,0],[2,2],[3,29],[2,27],[2,12],[0,14],[2,32],[2,-5],[1,32],[1,10],[1,33],[-5,28],[0,12],[7,-6],[2,24],[2,2],[3,108],[4,73],[1,-10],[-3,-85],[2,-32],[3,-28],[5,-6],[2,0],[3,-28],[5,-36],[7,18],[7,60],[4,46],[0,45],[0,30],[3,12],[-1,34],[0,42],[0,24],[-2,0],[-2,45],[0,57],[3,51],[0,77],[-6,25],[-7,-51],[-5,-13],[-2,-27],[-3,-28],[-5,-58],[-3,-22],[-1,-19],[-1,-24],[-1,15],[-1,41],[-1,23],[2,45],[2,31],[4,21],[4,26],[1,15],[9,64],[14,153],[19,242],[25,313],[20,319],[7,96],[14,108],[14,58],[13,127],[12,166],[4,0],[10,32],[9,32],[11,67],[4,24],[8,63],[2,40],[4,44],[2,40],[1,15],[2,19],[1,14],[1,6],[1,-15],[1,-12],[1,1],[0,16],[1,17],[-1,9],[0,5],[0,16],[2,15],[1,18],[2,11],[2,16],[2,15],[4,6],[1,1],[1,8],[1,8],[2,3],[2,8],[2,2],[7,5],[7,19],[3,12],[1,4],[2,-1],[-1,-8],[-1,-10],[0,-6],[3,1],[3,5],[1,3],[1,3],[2,11],[1,17],[1,10],[1,16],[0,8],[3,18],[5,23],[5,30],[5,28],[3,6],[2,6],[3,2],[2,8],[2,4],[3,2],[2,7],[3,9],[2,7],[3,6],[6,12],[6,17],[7,18],[4,10],[5,15],[4,12],[6,22],[2,10],[4,9],[4,10],[3,16],[2,3],[3,10],[6,30],[2,12],[4,14],[3,14],[1,-1],[2,7],[2,12],[1,2],[1,3],[1,6],[1,4],[1,6],[3,8],[3,12],[3,8],[2,6],[3,8],[2,4],[2,4],[1,1],[2,-8],[-1,-10],[-3,-12],[-3,-7],[-2,2],[-1,5],[-3,-12],[-1,-8],[-1,-20],[0,-3],[-1,-8],[0,-8],[0,15],[0,4],[0,14],[-2,0],[0,-1],[-1,-6],[-1,-7],[0,-1],[0,-4],[-1,-2],[-2,-2],[-1,4],[-1,-7],[-1,-10],[-6,-21],[-3,-12],[-2,-11],[-2,-11],[-1,-11],[-1,-24],[-1,-12],[0,-11],[-2,3],[-1,6],[-1,6],[-1,-3],[-4,-8],[-3,-7],[-5,-28],[-4,-19],[-4,-12],[-2,-19],[-1,-26],[0,-18],[0,-18],[0,-21],[-1,-14],[-1,-29],[0,-20],[-1,-22],[0,-19],[0,-14],[-2,-16],[0,-10],[2,7],[2,15],[2,13],[0,18],[1,42],[1,27],[1,22],[0,22],[0,19],[0,13],[1,8],[4,14],[2,11],[4,6],[4,5],[2,1],[4,-1],[4,-1],[4,-2],[3,-6],[2,-4],[1,-20],[2,-16],[1,-8],[1,0],[1,8],[3,11],[3,15],[1,21],[1,12],[2,-5],[1,-6],[5,-23],[2,-5],[2,-1],[2,-2],[1,2],[1,12],[1,11],[0,16],[-1,18],[1,12],[1,-7],[2,-18],[2,-3],[1,4],[1,5],[2,0],[1,-43],[2,-26],[2,-20],[2,-17],[1,6],[2,-2],[4,13],[3,22],[1,7],[1,12],[1,4],[2,30],[0,17],[0,-3],[4,1],[3,19],[4,21],[3,7],[3,3],[2,36],[2,27],[0,24],[0,18],[1,10],[1,-11],[0,-14],[-1,-14],[0,-12],[1,11],[0,-9],[2,-4],[3,8],[3,17],[1,10],[2,1],[2,6],[1,10],[-2,-2],[-1,3],[0,10],[2,5],[2,-5],[2,1],[0,4],[0,4],[1,3],[1,-7],[0,-5],[2,-18],[1,-22],[0,-38],[0,-33],[0,-35],[0,-29],[-2,-28],[0,-21],[3,-24],[1,-3],[1,4],[0,-34],[-2,-16],[-1,-15],[0,-14],[-1,-5],[-1,5],[-1,15],[0,13],[-3,23],[-2,26],[0,24],[-2,8],[-4,-3],[-3,-12],[-3,-8],[-2,-10],[-2,-9],[-3,-10],[-2,-3],[-2,-9],[-4,-38],[-3,-35],[-4,-50],[-2,-32],[-2,-38],[-1,-24],[1,-13],[3,-18],[1,-36],[1,-33],[1,-21],[3,-1],[3,-6],[3,-11],[0,-4],[3,-6],[2,6],[3,27],[2,29],[1,23],[0,-7],[1,-30],[-1,-37],[-3,-32],[-2,-28],[-1,-29],[1,-23],[0,-26],[1,-39],[0,-16],[1,-46],[2,-16],[1,-24],[3,-35],[2,-12],[1,-10],[2,6],[2,16],[1,-6],[1,-31],[2,-33],[3,-29],[3,-46],[3,-53],[2,-33],[3,-23],[1,-10],[0,-14],[2,-21],[2,-18],[1,-15],[1,-14],[2,-21],[1,-12],[1,-14],[1,-7],[0,-7],[-2,-14],[0,-15],[0,-9],[1,-16],[1,1],[-1,13],[1,17],[2,21],[1,16],[0,19],[-2,45],[0,35],[2,18],[2,18],[1,9],[2,-6],[4,-16],[4,-25],[5,-38],[1,-13],[1,1],[0,-12],[0,-23],[1,-32],[1,-45],[1,-21],[0,-15],[1,-31],[1,-15],[1,-10],[2,-2],[1,2],[1,12],[1,14],[0,11],[0,18],[1,24],[-2,6],[-1,15],[-1,27],[-1,22],[1,17],[0,-4],[1,-16],[1,-11],[2,-1],[1,18],[1,15],[0,24],[1,20],[-1,5],[-1,19],[-1,9],[-1,10],[-2,5],[-1,14],[-1,4],[-2,3],[-1,6],[-1,5],[1,11],[2,32],[-1,18],[-1,8],[-1,1],[-1,-2],[-2,1],[0,2],[-2,-6],[0,26],[-1,10],[-1,2],[-2,-6],[-2,1],[-2,20],[-3,3],[-1,16],[-1,16],[0,21],[1,26],[0,27],[0,31],[0,33],[0,44],[-1,42],[0,35],[0,31],[0,18],[-1,17],[-2,34],[-1,29],[-2,31],[-2,23],[-1,22],[0,15],[1,20],[2,-1],[3,-2],[2,-19],[4,-23],[4,-32],[6,-25],[4,-18],[9,-15],[8,-5],[7,6],[4,8],[4,11],[5,2],[4,19],[3,8],[2,7],[2,-28],[1,-11],[2,7],[1,16],[1,10],[1,-7],[3,-19],[0,-17],[-1,-15],[-1,-21],[0,-16],[1,-7],[2,14],[1,6],[1,-14],[1,-20],[0,-24],[3,-9],[1,0],[0,-14],[-1,-18],[-2,-25],[-1,-27],[-1,-40],[1,-45],[0,-29],[1,-28],[1,-16],[3,-21],[4,-10],[1,6],[1,15],[0,32],[2,41],[4,21],[1,3],[1,3],[3,-11],[2,-17],[2,-33],[1,-30],[0,-26],[2,-23],[1,-3],[3,-23],[2,2],[3,13],[5,-18],[2,4],[1,-12],[2,-16],[4,-21],[2,-4],[1,3],[1,3],[1,6],[2,-7],[3,1],[3,21],[1,19],[-1,9],[-1,17],[0,12],[0,10],[-1,2],[0,-15],[-1,-6],[-1,-14],[-1,-7],[-1,12],[0,31],[-4,44],[-2,3],[0,13],[-1,27],[-2,11],[0,18],[-2,17],[-2,17],[-1,15],[1,10],[1,3],[2,9],[5,27],[4,21],[4,10],[4,5],[1,2],[3,11],[1,11],[-1,15],[-1,-6],[-2,1],[-1,12],[0,11],[0,18],[0,13],[-1,-11],[-1,0],[-1,14],[-2,18],[-4,1],[-2,-3],[-1,-5],[-1,-5],[-1,-5],[0,13],[-1,20],[-1,14],[-2,13],[-2,3],[0,-2],[0,-17],[-1,9],[-2,19],[-4,21],[-2,21],[-2,14],[-1,6],[-3,28],[-3,17],[-5,24],[0,14],[-3,22],[-2,22],[-2,13],[-3,4],[-4,10],[-4,4],[-2,4],[-2,14],[0,18],[-3,23],[-2,9],[-2,9],[-1,14],[-1,14],[0,19],[-1,12],[-1,6],[-2,-3],[-4,-3],[-2,-9],[-1,-15],[-3,-25],[-1,-15],[-2,-22],[-1,-25],[-1,-15],[-1,1],[0,22],[2,24],[1,20],[1,16],[2,18],[1,14],[2,31],[2,45],[2,36],[1,47],[1,17],[-1,19],[-1,14],[0,9],[2,-1],[-1,24],[-1,7],[0,6],[0,18],[-2,-7],[-2,7],[-2,5],[0,8],[-1,10],[-1,1],[0,13],[-1,-22],[-1,-8],[-1,-6],[-1,-9],[0,-13],[1,-13],[-1,3],[-1,-7],[-1,8],[0,10],[1,10],[0,10],[2,18],[0,14],[0,6],[1,21],[1,13],[2,22],[1,16],[2,25],[2,19],[3,63],[0,27],[2,16],[0,13],[2,26],[2,42],[3,45],[2,35],[2,40],[1,35],[2,28],[1,17],[1,25],[1,28],[2,33],[1,34],[0,23],[-1,16],[0,13],[0,26],[0,23],[1,22],[1,26],[2,26],[2,33],[2,37],[2,37],[2,57],[3,115],[0,36],[1,36],[1,14],[0,12],[1,25],[1,17],[1,29],[3,71],[4,69],[3,35],[2,23],[7,54],[2,12],[3,26],[6,36],[4,38],[3,35],[7,75],[5,55],[2,48],[1,24],[1,7],[1,6],[1,9],[3,25],[2,26],[2,20],[2,27],[1,6],[1,13],[1,2],[1,0],[2,5],[4,17],[2,10],[2,2],[6,16],[8,54],[6,44],[4,30],[4,26],[7,58],[11,101],[7,86],[2,19],[2,16],[2,33],[2,20],[4,45],[4,47],[7,79],[4,25],[6,27],[5,21],[2,7],[2,6],[2,-3],[1,12],[3,32],[3,26],[4,15],[3,6],[3,6],[1,2],[2,9],[4,26],[4,17],[5,31],[4,22],[4,19],[5,29],[4,17],[3,14],[2,13],[3,14],[3,11],[2,8],[1,10],[1,9],[1,15],[2,9],[1,6],[3,17],[1,13],[0,2],[14,122],[1,5],[5,40],[5,37],[5,33],[3,13],[0,-5],[-3,-22],[-8,-51],[-4,-35],[-2,-21],[-2,-5],[0,-6],[-10,-95],[-3,-20],[-2,-23],[-2,-11],[1,-6],[2,-15],[1,-10],[3,-10],[1,-2],[1,4],[0,14],[-1,23],[-1,20],[1,2],[1,3],[2,4],[2,-3],[0,-9],[1,3],[1,8],[3,8],[3,13],[2,4],[2,12],[6,24],[6,25],[9,54],[4,12],[1,13],[2,16],[2,28],[2,29],[2,22],[2,8],[1,-3],[1,-11],[1,-3],[2,-5],[2,1],[4,8],[6,22],[2,10],[1,-6],[1,-12],[0,8],[1,14],[-1,18],[-1,13],[-1,2],[-2,-12],[-2,-14],[-3,-13],[-2,-5],[-2,14],[-1,2],[-1,3],[-1,18],[1,34],[2,24],[1,-1],[1,-10],[1,-7],[1,3],[0,13],[0,14],[-1,12],[0,12],[2,6],[0,4],[1,4],[-1,9],[-2,-9],[-8,-55],[-1,6],[0,16],[12,64],[1,8],[4,31],[1,3],[1,15],[3,16],[1,14],[5,27],[3,21],[3,22],[2,24],[5,16],[3,27],[3,21],[4,7],[-1,-24],[2,1],[1,7],[1,6],[2,-9],[0,12],[1,6],[1,11],[-1,18],[-1,1],[0,-7],[-2,-4],[1,13],[2,16],[3,25],[3,27],[2,17],[1,0],[1,6],[1,-2],[1,16],[3,20],[1,13],[0,-4],[2,24],[0,5],[2,24],[2,17],[3,31],[5,47],[1,9],[1,19],[2,19],[1,13],[5,38],[3,23],[2,14],[5,33]],[[13214,19458],[-2,-13],[-1,22],[-1,5],[1,25],[2,8],[1,-1],[0,-46]],[[13301,19939],[-1,0],[-4,5],[-1,7],[-1,15],[0,8],[-1,9],[-1,11],[-1,10],[-1,15],[0,12],[-1,12],[-1,13],[-1,8],[-1,11],[1,10],[1,-4],[1,-9],[1,-1],[1,-14],[0,-10],[1,-3],[1,-1],[1,-4],[1,-9],[2,-2],[1,0],[2,-3],[0,-8],[1,-13],[2,-14],[0,-14],[0,-17],[0,-12],[-1,-7],[-1,-1]],[[13236,20081],[-1,-1],[0,12],[0,15],[0,3],[1,3],[1,2],[-1,-14],[0,-8],[0,-12]],[[13234,20126],[0,-10],[0,6],[-1,9],[0,14],[1,0],[0,-4],[0,-15]],[[13404,20255],[0,-2],[1,11],[0,7],[1,-23],[0,-21],[0,-17],[1,-13],[0,-13],[-1,-8],[-1,-4],[0,7],[-1,7],[-1,12],[-1,20],[0,18],[0,14],[0,14],[1,10],[1,-19]],[[13249,20278],[0,-12],[-2,5],[-1,0],[-1,-5],[0,6],[-1,7],[-1,6],[-1,8],[-1,4],[-1,10],[-1,8],[0,7],[-1,6],[0,2],[-1,2],[-1,4],[-1,6],[-1,13],[-1,10],[-1,7],[-1,17],[0,17],[0,8],[0,13],[1,-2],[1,-4],[1,-3],[0,-8],[1,-3],[1,-3],[1,-5],[1,-16],[5,-52],[3,-35],[1,-5],[1,-5],[0,-2],[1,-6]],[[13343,20544],[-1,-4],[-1,11],[0,11],[1,0],[1,-9],[0,-9]],[[13426,20328],[-1,-2],[-1,1],[-1,5],[0,13],[1,16],[0,35],[0,13],[0,12],[-1,17],[0,16],[-1,8],[-1,7],[-1,28],[-1,40],[0,36],[1,9],[0,13],[1,15],[1,11],[0,16],[2,2],[4,4],[1,2],[0,-21],[1,-12],[0,-21],[1,-16],[0,-17],[0,-16],[0,-13],[1,-19],[1,-26],[0,-19],[1,-9],[0,-13],[0,-16],[-1,-18],[-1,-9],[-1,-8],[0,-9],[-1,-8],[-1,-13],[-1,-12],[-1,-8],[-1,-6],[0,-8]],[[13324,20791],[-1,-17],[-1,5],[1,12],[0,11],[0,18],[2,-3],[-1,-8],[0,-18]],[[13184,20840],[1,-18],[0,3],[1,1],[1,-6],[1,-7],[1,-11],[-1,-14],[0,-13],[1,-6],[1,-11],[1,-11],[1,-10],[1,-8],[2,0],[5,-39],[1,-22],[0,-6],[1,-9],[1,-12],[1,-16],[1,-6],[1,-10],[1,-3],[1,-10],[1,-11],[0,-14],[1,-10],[1,-6],[1,5],[8,-78],[2,-31],[1,-7],[1,-6],[1,-9],[0,-20],[1,-9],[2,-13],[1,-18],[0,-17],[3,5],[0,-10],[1,-12],[1,-12],[0,-3],[1,-10],[1,-12],[1,-11],[1,-9],[0,-5],[2,-16],[2,-29],[1,-31],[0,-5],[0,-22],[-5,-5],[0,-9],[0,-11],[-1,2],[-1,4],[0,6],[-1,6],[-1,6],[0,11],[-1,13],[0,7],[-1,1],[-1,7],[0,12],[-1,8],[-1,8],[-1,10],[0,9],[-1,6],[-1,-2],[-1,1],[-1,8],[0,5],[-1,-6],[-1,9],[-1,-12],[1,-16],[0,-9],[1,-7],[1,-21],[0,-21],[-1,-19],[0,-24],[0,-20],[0,-18],[1,-9],[1,-13],[0,-11],[1,-11],[0,-12],[1,-6],[0,-9],[0,-17],[0,-15],[-1,0],[-1,11],[0,6],[-1,3],[-1,-6],[-1,-10],[0,-11],[1,-33],[0,-11],[0,-17],[1,-23],[-1,-16],[0,-17],[-1,-10],[-1,-1],[0,-2],[-1,0],[0,4],[-1,6],[-1,5],[0,4],[-1,0],[-2,0],[0,2],[-2,4],[-1,13],[-1,12],[0,11],[-1,16],[-2,13],[0,14],[0,13],[-1,12],[-1,6],[-1,4],[-1,3],[-1,7],[0,6],[-1,9],[-1,10],[-1,9],[-1,-13],[0,-16],[0,-18],[0,-10],[1,-15],[2,-15],[1,-6],[1,-12],[0,-12],[1,-11],[1,-16],[1,-13],[-1,-11],[-1,-17],[0,-25],[0,-17],[1,-2],[1,5],[1,-4],[1,-6],[0,-18],[0,-10],[2,-7],[1,-13],[1,-9],[1,-9],[1,-18],[0,-13],[0,-11],[0,-21],[-1,16],[-1,1],[-1,-1],[-1,-6],[0,-18],[1,-25],[1,-21],[0,-21],[0,-18],[-1,-14],[-2,-12],[-1,-6],[-2,-1],[-1,-1],[-1,-8],[-1,-6],[0,-11],[0,-12],[0,-10],[-1,-4],[0,-11],[1,3],[1,2],[0,-8],[1,6],[0,7],[1,-1],[0,-14],[0,-23],[0,-13],[0,-13],[0,-18],[-1,-13],[0,-15],[-2,3],[0,9],[-1,9],[0,6],[-1,4],[-1,5],[-1,-1],[0,9],[0,8],[0,5],[-1,-5],[-1,-4],[-1,3],[0,5],[1,2],[1,6],[-1,15],[0,13],[-1,4],[0,1],[-1,3],[0,28],[-1,30],[0,8],[1,10],[-1,13],[-1,6],[-1,3],[-1,3],[0,-15],[0,-9],[0,-13],[-1,15],[-1,17],[-1,19],[0,6],[1,47],[0,6],[-1,2],[-1,-7],[0,-14],[-1,-10],[-1,4],[-1,34],[-1,7],[-2,11],[0,18],[2,-9],[0,14],[-1,15],[0,16],[1,-5],[0,12],[-1,29],[0,13],[-2,64],[-1,19],[0,70],[0,15],[-2,129],[-3,37],[0,25],[0,14],[-1,17],[0,19],[0,35],[-1,24],[0,22],[-1,23],[0,17],[0,7],[2,65],[-1,18],[1,43],[0,15],[1,12],[1,0],[0,12],[0,5],[-1,3],[-1,7],[0,12],[-1,14],[0,10],[0,13],[0,7],[-1,-5],[0,-6],[-1,7],[0,12],[1,0],[1,7],[0,11],[-1,6],[-1,-6],[-1,-3],[-1,16],[0,16],[1,8],[1,-1],[0,-9],[1,6],[1,3],[1,2],[0,1],[4,-3],[3,-30],[1,2],[1,13],[-1,18],[-1,15],[-1,14],[0,9],[-1,13],[-1,9],[-1,38],[0,27],[0,28],[0,18],[-1,19],[0,12],[1,12],[1,0],[2,-5],[4,-11]],[[13275,21064],[0,-15],[0,-12],[0,-10],[-1,-10],[0,10],[-1,8],[0,18],[1,9],[0,-6],[1,8]],[[13186,21151],[-1,-12],[-1,-3],[-1,0],[-1,14],[1,-1],[1,10],[1,0],[1,-8]],[[13276,21195],[0,-13],[2,11],[1,7],[1,8],[1,8],[1,4],[-1,-12],[-1,-9],[0,-9],[-1,-8],[-1,-5],[-1,-5],[-1,-4],[-2,-4],[-1,-14],[-1,-11],[0,14],[0,20],[1,8],[0,8],[1,8],[1,8],[1,10],[1,7],[1,10],[2,5],[-1,-11],[-1,-10],[-1,-9],[-1,-12]],[[13180,21307],[-1,-5],[-1,4],[-1,13],[2,11],[0,-13],[1,-10]],[[13180,21353],[0,-11],[-1,3],[0,14],[1,9],[0,8],[1,-14],[-1,-9]],[[13203,21315],[-1,-1],[-1,7],[1,14],[0,16],[0,13],[0,12],[2,-26],[-1,-20],[0,-15]],[[13196,21429],[1,-18],[1,-14],[-1,-12],[1,-10],[1,-6],[1,-9],[0,-17],[-1,-17],[0,-27],[-1,-12],[0,-8],[-1,-10],[-2,-11],[0,-10],[-1,-10],[-1,3],[0,-3],[-2,-17],[-1,1],[-1,5],[-1,-6],[-1,-8],[-1,-12],[-1,-22],[-3,1],[-1,21],[-1,12],[1,10],[0,12],[0,15],[-1,12],[0,18],[1,14],[2,13],[1,9],[0,17],[-1,17],[0,14],[0,9],[0,13],[2,-1],[1,-6],[1,10],[0,9],[1,6],[0,12],[1,10],[1,7],[1,-4],[1,4],[1,9],[1,-1],[2,-12]],[[13203,21443],[0,-40],[-1,8],[-1,10],[0,15],[1,9],[1,-2]],[[13213,21416],[-1,-4],[0,24],[-1,10],[-1,17],[0,18],[0,16],[1,17],[0,13],[1,14],[1,9],[1,1],[1,2],[2,-3],[0,-7],[0,-21],[0,-12],[-1,-9],[-1,-8],[0,-7],[-1,-9],[-1,-14],[0,-11],[0,-14],[0,-11],[0,-11]],[[13220,21560],[-1,-7],[-1,10],[0,7],[1,10],[0,-2],[2,-4],[-1,-14]],[[13223,21590],[-1,0],[-1,6],[1,18],[1,6],[1,-9],[0,-6],[-1,-7],[0,-8]],[[13226,21630],[-1,8],[-1,4],[-1,9],[1,11],[1,2],[0,-12],[1,-7],[0,-15]],[[13227,23029],[2,-11],[1,-10],[-1,-6],[-1,1],[-1,-1],[-1,0],[-2,14],[-1,-2],[-1,-3],[-1,-7],[0,-7],[-1,-9],[-1,-5],[-1,7],[-1,5],[0,-8],[-1,-3],[-1,6],[0,9],[0,10],[0,10],[2,5],[2,4],[1,-4],[2,-1],[1,5],[1,1],[2,-4],[1,4]],[[13236,23242],[1,-20],[0,4],[1,18],[2,-4],[1,-6],[0,-7],[2,-15],[1,-12],[0,-19],[1,-18],[0,-12],[1,-8],[0,-12],[1,-9],[0,-14],[1,-17],[0,14],[1,-7],[0,-16],[1,-16],[1,-17],[-1,-15],[0,-16],[0,-13],[-1,-15],[-1,-2],[-1,-1],[-1,6],[-2,-3],[-1,5],[-1,6],[-1,-4],[-1,4],[-1,2],[-1,3],[-2,4],[-3,6],[-3,3],[-1,14],[-4,28],[0,17],[-1,-4],[-1,-7],[-1,-10],[-2,-3],[0,12],[1,11],[0,11],[1,17],[1,-2],[1,14],[1,12],[1,11],[0,4],[0,11],[-2,-13],[-1,-16],[-1,-4],[0,17],[1,13],[-1,21],[1,11],[0,9],[1,9],[2,11],[0,11],[1,14],[1,16],[2,14],[2,9],[2,7],[1,7],[1,-14],[1,-15],[0,-7],[0,-7],[-1,-6]],[[13347,23481],[2,-11],[1,-19],[1,-8],[1,-17],[1,-3],[1,-16],[6,-69],[3,-22],[2,-20],[3,-31],[2,-38],[1,-19],[1,-18],[1,-8],[1,-16],[1,-25],[2,-24],[2,-23],[1,-24],[1,-27],[1,-11],[1,-8],[2,-23],[1,-24],[2,-27],[1,1],[1,-19],[1,-26],[1,-7],[1,-18],[2,-14],[1,-47],[0,-17],[1,-8],[0,-11],[1,-4],[0,-14],[0,-19],[2,-22],[0,3],[0,-14],[0,-21],[0,-15],[1,-14],[1,-20],[0,-17],[-1,-7],[-1,-5],[0,-10],[-1,-11],[-1,0],[-2,-9],[-1,-13],[0,-13],[1,-4],[0,6],[2,11],[1,6],[1,4],[1,-6],[0,-11],[1,-3],[1,-9],[0,-11],[0,-9],[1,-12],[1,-9],[0,-17],[1,-16],[1,-7],[1,-13],[2,-29],[1,-21],[1,-25],[1,-21],[2,-16],[0,-13],[1,-4],[1,-10],[1,-16],[1,-16],[1,-9],[1,-18],[1,-15],[0,-16],[1,-19],[1,-30],[-1,-12],[-1,0],[0,-17],[0,-18],[0,-11],[1,-7],[0,-12],[0,-14],[1,-16],[1,-22],[1,4],[0,-15],[1,-10],[1,-13],[0,-14],[1,-18],[0,-27],[-1,-11],[0,-20],[1,-15],[0,-19],[1,-18],[1,-20],[0,-12],[0,-17],[-1,-12],[0,-20],[-1,-8],[-1,-12],[-1,-12],[0,-21],[0,-17],[0,-11],[-1,-11],[0,-16],[0,19],[-1,5],[-1,0],[0,18],[-2,0],[0,-4],[0,-17],[1,-22],[0,-21],[-1,-8],[1,-6],[0,1],[1,-6],[1,-9],[0,-9],[1,10],[0,14],[1,12],[1,1],[1,-1],[1,12],[1,-4],[0,-14],[0,-16],[1,0],[0,24],[2,-12],[1,-47],[-2,-14],[-1,18],[-1,-12],[0,-42],[0,-20],[0,-6],[-1,-24],[-1,1],[-3,19],[0,2],[-1,7],[0,13],[-1,7],[-1,12],[0,12],[-1,16],[0,9],[-1,6],[0,3],[-1,2],[0,-3],[0,-22],[-1,-17],[0,-23],[0,-14],[1,-17],[0,-16],[0,-11],[0,-15],[0,-10],[-1,-9],[0,-11],[-1,-1],[0,-16],[0,-16],[0,-13],[0,-11],[1,-1],[1,-11],[0,-11],[1,1],[1,-7],[0,-16],[-2,-18],[0,-15],[0,-14],[0,-13],[-4,-48],[0,-17],[1,0],[1,6],[1,6],[0,-14],[0,-12],[0,-9],[0,-12],[-1,-13],[0,-19],[-1,-11],[-1,-27],[0,-14],[1,-18],[1,-5],[0,-29],[1,-89],[0,-19],[0,-22],[0,-18],[-2,-16],[0,-7],[1,-18],[2,0],[1,-27],[-1,-47],[0,-14],[2,-18],[0,-6],[0,-18],[1,-22],[-1,-15],[-1,-18],[-1,-6],[-1,-5],[-1,-21],[-2,0],[0,16],[-2,10],[0,37],[0,26],[-1,9],[-1,11],[0,14],[-2,4],[-2,8],[0,2],[-2,-3],[0,-19],[-1,-1],[-1,-19],[0,-15],[1,-16],[0,-21],[0,-22],[0,-22],[0,-10],[1,-7],[0,-12],[1,-16],[0,-14],[0,-19],[-1,-7],[0,-7],[0,-16],[1,-13],[1,-4],[0,-18],[1,-20],[-1,-17],[-1,-5],[0,13],[-1,19],[0,10],[-1,-4],[0,-12],[0,-19],[0,-21],[0,-10],[-1,-17],[-1,-14],[0,-11],[-1,-4],[-1,6],[-1,3],[-1,-13],[-1,-3],[0,-12],[0,-11],[1,1],[1,-7],[-1,-15],[1,-19],[0,-16],[1,-22],[-1,-35],[-1,-7],[-1,-10],[0,-13],[0,-17],[0,-35],[0,-24],[0,-11],[-1,-33],[-1,-47],[-1,-5],[-1,-10],[0,-15],[-1,-10],[-1,6],[0,2],[-1,-9],[-1,-6],[-1,-11],[-1,1],[-2,-3],[0,-10],[-1,-9],[1,-4],[1,-9],[0,-11],[-2,-35],[-2,8],[-1,-9],[-4,13],[0,-6],[-1,-9],[-1,-11],[-2,2],[0,1],[-1,1],[-1,-11],[-1,-16],[1,-6],[0,-3],[1,-15],[0,-17],[0,-18],[0,-18],[-1,-14],[-1,-16],[0,-13],[-1,-8],[-2,1],[0,15],[-1,1],[-1,-6],[-1,-7],[-1,-16],[-1,-4],[0,-11],[-2,-1],[-2,0],[-1,7],[-1,-3],[-1,-5],[-1,-2],[-1,6],[-1,20],[-4,-5],[-1,9],[-7,49],[-1,21],[-1,14],[0,6],[0,27],[-1,14],[-1,12],[-1,2],[-2,-14],[-2,13],[1,33],[0,10],[-2,-5],[0,7],[-1,4],[-1,6],[-1,5],[-3,-2],[-3,13],[0,13],[1,5],[4,14],[0,2],[1,7],[2,5],[1,11],[1,6],[2,13],[3,16],[1,17],[1,8],[1,16],[3,39],[3,39],[1,18],[4,60],[0,27],[0,30],[1,30],[0,13],[1,8],[1,15],[1,23],[-1,30],[1,17],[0,15],[1,11],[1,29],[1,9],[0,9],[1,10],[1,9],[1,12],[1,7],[-1,7],[0,4],[-1,24],[-1,29],[0,22],[-1,10],[1,26],[0,17],[-1,11],[0,5],[-1,0],[-1,1],[-2,0],[-3,47],[-2,28],[0,1],[-1,-6],[0,-14],[1,-21],[0,-15],[1,-8],[0,-12],[0,-27],[-1,-2],[0,7],[-1,-11],[0,-17],[-1,-5],[-1,9],[0,12],[1,20],[-1,15],[-3,11],[-1,-13],[-1,0],[-3,-26],[-1,-7],[-1,-1],[-1,6],[0,14],[-1,2],[0,-4],[-1,-12],[0,-14],[-1,-13],[1,-15],[0,-6],[1,-17],[-1,-6],[0,-8],[2,-1],[0,-9],[0,-6],[0,-26],[0,-35],[1,-6],[2,-20],[3,-41],[2,-49],[0,-15],[0,-20],[0,-15],[-1,-12],[0,-13],[-1,-7],[-1,6],[-1,-4],[-1,-12],[0,-22],[-1,-30],[-2,-26],[0,-20],[0,-17],[0,-6],[0,-11],[0,-6],[-4,-46],[-2,7],[-1,0],[-1,-10],[-1,-8],[0,-12],[-1,-5],[-1,-32],[-1,0],[0,13],[0,13],[-1,7],[-1,6],[0,13],[0,14],[-1,14],[0,9],[-1,3],[0,-14],[0,-8],[0,-12],[0,-14],[1,-13],[0,-16],[0,-13],[-1,-8],[-1,-6],[-1,-3],[-1,-6],[-1,0],[0,12],[-2,7],[-1,12],[0,20],[0,7],[-1,-3],[-3,-29],[-1,-4],[0,-2],[-4,-12],[-2,4],[-2,9],[-1,6],[-4,30],[-2,4],[-1,7],[-1,6],[-1,13],[0,5],[-1,4],[-1,-8],[-1,-5],[-1,23],[-1,31],[-1,40],[-1,5],[-1,7],[-1,4],[0,10],[0,5],[2,3],[1,-6],[0,15],[0,11],[0,11],[2,9],[0,9],[1,7],[1,11],[1,14],[1,6],[1,5],[1,-3],[1,7],[1,7],[1,14],[3,22],[1,11],[1,7],[2,5],[1,6],[2,7],[1,5],[1,7],[1,12],[0,20],[0,20],[0,15],[-1,17],[-1,21],[0,19],[1,10],[1,5],[1,9],[1,6],[1,-6],[2,4],[0,-4],[1,15],[0,13],[2,8],[2,11],[0,1],[2,7],[0,-3],[1,-10],[1,5],[0,6],[1,-5],[-1,-15],[-1,-10],[0,-6],[1,-2],[1,7],[1,4],[1,-10],[1,9],[1,12],[-1,15],[-1,-1],[-1,35],[0,13],[1,16],[1,16],[1,23],[2,18],[2,32],[2,30],[0,14],[1,18],[4,30],[1,32],[-1,16],[-1,2],[-3,-34],[0,20],[-1,26],[1,14],[1,15],[-1,17],[0,14],[1,14],[0,27],[0,19],[-2,22],[-1,31],[-1,19],[0,15],[0,14],[0,18],[0,17],[0,13],[-1,5],[-1,0],[0,16],[0,21],[0,15],[-1,14],[0,17],[-1,15],[0,13],[-1,13],[0,13],[-1,19],[0,16],[-2,15],[-1,12],[-1,17],[1,74],[0,22],[0,21],[-3,142],[-1,11],[-1,11],[-1,20],[0,63],[0,13],[-1,12],[0,17],[1,18],[0,17],[0,48],[-1,25],[1,12],[-1,14],[0,7],[-1,-15],[0,-21],[-1,-15],[-1,-27],[0,-28],[1,-30],[-1,-32],[1,-24],[0,-32],[0,-18],[-1,-18],[1,-20],[0,-18],[0,-24],[1,-31],[1,-34],[0,-20],[1,-12],[0,-10],[1,-10],[0,-13],[-1,-11],[-1,2],[1,-15],[1,-21],[0,-24],[0,-19],[0,-14],[0,-10],[0,-11],[1,-1],[1,-6],[0,-16],[1,-25],[-1,-15],[1,-16],[1,-21],[0,-10],[2,-14],[0,-16],[0,-12],[0,-13],[0,-14],[1,-15],[-1,-17],[-1,29],[0,-25],[0,-20],[0,-14],[0,-19],[0,-16],[1,-5],[1,-17],[0,-17],[0,-27],[1,-18],[1,-11],[0,-6],[1,-8],[1,-19],[-2,-12],[0,-2],[-1,-6],[0,-33],[0,-19],[-1,-9],[-1,-3],[0,-8],[0,-4],[0,-8],[1,-13],[0,-10],[-2,-6],[-1,-8],[0,-4],[0,-9],[1,-14],[0,-17],[-1,-12],[-1,-18],[-2,-22],[-1,-8],[-2,-15],[-2,-20],[-1,-24],[-2,-1],[-1,-17],[-2,-21],[-1,-25],[-1,-14],[-1,-4],[-1,-6],[-2,-8],[-1,-13],[2,-21],[1,-27],[1,-7],[0,-25],[0,-9],[-1,-12],[-2,-15],[-1,-5],[-1,1],[-1,1],[-1,1],[-2,-7],[0,-15],[-1,-8],[-1,-2],[-1,-2],[-1,-5],[-1,-3],[-1,11],[1,22],[-1,-1],[-1,-1],[-1,-4],[0,-12],[-1,-13],[0,-11],[-1,-10],[-1,-11],[-1,-8],[-1,-8],[-1,-13],[-1,0],[1,19],[0,16],[0,17],[1,19],[2,11],[0,16],[2,12],[1,12],[1,8],[1,5],[1,7],[1,38],[0,18],[1,10],[0,5],[1,3],[0,11],[0,12],[1,6],[1,2],[1,-6],[1,8],[-1,16],[0,-1],[-2,3],[-1,2],[-1,2],[0,11],[0,15],[0,27],[-1,13],[-1,13],[-1,11],[-1,22],[-1,10],[-1,13],[0,25],[-1,19],[1,3],[-1,14],[-1,5],[-1,18],[0,17],[0,17],[0,15],[-1,11],[-1,17],[-1,10],[-1,14],[0,16],[0,18],[1,0],[2,8],[0,9],[1,11],[0,9],[0,7],[1,9],[0,13],[-1,12],[-1,-5],[0,-20],[-1,-14],[0,-14],[-1,-1],[0,8],[0,22],[-1,6],[0,1],[0,19],[-1,16],[0,25],[1,11],[1,4],[1,8],[1,11],[3,37],[0,18],[2,34],[-1,0],[-1,15],[1,27],[1,18],[0,8],[3,21],[0,3],[1,8],[1,3],[0,18],[-1,23],[-1,13],[-1,24],[-1,-38],[1,-21],[0,-15],[-1,-15],[-1,-17],[-1,-2],[-1,-15],[-1,-12],[-2,-11],[-1,-10],[-1,-6],[-1,-6],[-1,-5],[-1,-6],[-1,3],[3,27],[1,13],[-1,19],[-1,-2],[0,-13],[-1,-12],[-2,-13],[-2,10],[-2,3],[0,-24],[0,-13],[-1,-14],[0,-16],[-1,-13],[-1,-7],[0,-10],[0,-10],[-1,-27],[0,-13],[-2,-19],[0,-12],[1,-2],[0,-15],[1,-11],[0,-10],[0,-13],[0,-17],[0,-16],[1,-11],[1,-13],[0,-8],[1,-16],[0,-13],[1,-14],[3,-51],[0,-15],[-1,-16],[0,-18],[-1,-15],[2,0],[0,2],[2,-6],[1,-11],[1,-14],[1,-10],[1,-9],[1,-8],[0,-21],[1,-23],[1,-19],[1,-23],[0,-35],[1,-24],[0,-20],[-1,-23],[-1,-19],[0,-20],[-1,-18],[-1,-12],[-1,-12],[-1,-12],[0,-11],[-1,-10],[-1,-7],[0,-9],[-1,-11],[0,-19],[-1,-9],[-1,-8],[-1,-7],[-1,-12],[-1,-7],[-1,-2],[0,-5],[-1,-1],[0,-12],[1,-13],[0,-14],[0,-12],[0,-21],[0,-13],[-1,-12],[0,-10],[0,-18],[0,-18],[-1,-10],[-1,-6],[-1,-7],[-1,2],[-1,0],[-1,2],[-1,-2],[-1,5],[0,6],[-1,7],[0,8],[-1,14],[-1,9],[-1,11],[-1,3],[-1,2],[-1,8],[-1,6],[-1,5],[-1,4],[0,7],[-1,10],[-1,6],[-1,10],[0,10],[-1,5],[-1,6],[0,5],[-1,2],[0,2],[-1,10],[-1,8],[0,4],[-1,7],[-1,7],[-1,8],[0,6],[-5,28],[-1,9],[0,9],[-1,3],[-1,0],[0,3],[-1,3],[0,6],[-1,4],[-1,2],[-1,-2],[-1,1],[-1,7],[-1,12],[-2,6],[0,2],[-3,23],[-1,8],[0,3],[-1,4],[0,6],[-1,10],[-1,10],[-1,14],[-1,8],[0,8],[-1,8],[-1,8],[-1,18],[-1,12],[0,12],[0,11],[0,26],[1,19],[1,8],[1,8],[1,8],[1,7],[0,18],[-1,7],[-1,-1],[-2,-20],[0,-9],[-1,-5],[-2,-1],[0,16],[0,11],[-1,-3],[-2,9],[-1,4],[0,6],[-1,6],[-1,11],[-1,11],[0,5],[0,13],[-1,4],[0,3],[-1,8],[-1,18],[-1,0],[-1,4],[-1,8],[-1,9],[0,9],[-1,9],[-3,19],[-1,13],[0,9],[0,8],[-1,0],[-1,5],[-1,9],[-1,2],[-1,4],[0,9],[-1,15],[0,16],[0,11],[1,14],[0,24],[1,25],[4,24],[4,21],[1,-14],[1,-6],[1,7],[1,10],[0,6],[1,6],[1,16],[1,14],[1,11],[1,11],[1,10],[1,15],[0,10],[1,9],[1,13],[2,12],[1,11],[2,14],[2,13],[1,12],[1,12],[1,21],[0,14],[1,11],[1,17],[0,16],[0,13],[1,13],[0,10],[0,13],[0,14],[1,18],[0,23],[1,10],[1,8],[1,8],[1,19],[1,11],[0,-4],[0,-15],[1,-4],[1,2],[1,-13],[0,-17],[1,-8],[1,-15],[1,-8],[1,-16],[0,-14],[1,-11],[0,-18],[1,-17],[1,4],[0,17],[0,14],[0,11],[-1,16],[-1,13],[0,17],[0,17],[0,15],[1,14],[-1,15],[-1,5],[0,11],[0,11],[1,8],[0,9],[1,11],[1,10],[1,9],[1,9],[2,15],[0,7],[0,5],[-1,0],[-1,-4],[-1,-2],[-1,-10],[0,-12],[-2,-21],[-2,-9],[0,16],[0,18],[1,2],[0,1],[2,6],[1,18],[0,8],[-2,6],[1,19],[0,5],[1,7],[1,-3],[1,-4],[1,-7],[4,-14],[0,-4],[3,-3],[4,-10],[1,2],[2,-2],[0,13],[-1,12],[-2,11],[-2,0],[-3,-8],[-3,23],[-1,13],[0,15],[-1,-2],[-2,5],[-1,6],[-1,7],[-1,5],[-2,2],[-1,-1],[-2,-1],[-1,1],[0,3],[-1,5],[-2,11],[-1,5],[-2,5],[-2,6],[0,1],[-1,15],[-1,21],[-1,12],[-2,23],[-2,23],[0,17],[0,21],[0,10],[1,6],[0,13],[0,12],[1,9],[1,8],[1,9],[1,10],[0,17],[-1,13],[0,20],[0,21],[0,18],[1,16],[0,21],[0,17],[0,9],[1,4],[1,11],[1,9],[1,10],[1,-3],[0,9],[1,10],[0,-11],[1,-7],[1,0],[2,8],[1,6],[1,12],[1,11],[1,2],[1,2],[1,-6],[1,-15],[2,-4],[1,-2],[2,0],[-2,19],[-1,15],[0,14],[0,15],[1,17],[0,16],[0,14],[-1,18],[1,12],[1,-3],[1,1],[1,9],[1,15],[1,-4],[1,3],[1,4],[1,4],[2,-1],[1,-9],[0,-13],[0,-8],[1,-6],[1,0],[1,1],[1,-2],[1,4],[1,6],[1,2],[1,7],[2,-1],[1,3],[2,5],[1,2],[2,0],[1,-1],[1,6],[1,11],[2,6],[1,4],[1,12],[-2,-4],[-1,-3],[-2,5],[-1,-1],[-1,-4],[-2,-4],[-1,-3],[-1,-3],[-2,-2],[-1,-3],[-2,-4],[-2,-3],[-2,9],[-3,12],[-1,-1],[-2,7],[0,9],[-2,-3],[-1,4],[-1,-3],[-1,-8],[1,-13],[-7,-32],[-1,2],[-1,-1],[-1,11],[-1,-7],[0,-36],[1,-20],[-1,-15],[-5,-8],[1,-7],[0,-12],[0,-10],[-1,-13],[-2,-10],[-2,-10],[-1,6],[-1,-13],[-1,10],[0,14],[-1,17],[0,17],[-1,3],[-1,1],[-2,13],[0,20],[0,13],[-1,15],[-1,15],[-1,28],[1,-5],[0,-6],[1,-4],[1,13],[-1,18],[-1,30],[1,18],[1,10],[0,15],[2,5],[1,11],[1,9],[1,10],[1,5],[1,-6],[1,-11],[1,-6],[0,10],[0,17],[1,12],[1,0],[1,5],[1,15],[-1,16],[1,9],[1,9],[2,-3],[1,-3],[1,-2],[1,-1],[1,4],[2,-5],[1,-16],[2,-13],[1,-1],[2,-3],[1,4],[1,16],[2,8],[1,11],[1,13],[0,5],[1,0],[2,11],[1,22],[1,3],[1,-1],[1,-3],[1,-17],[0,-11],[1,-1],[2,5],[1,-4],[1,3],[1,-4],[0,-13],[0,-11],[0,-11],[2,15],[2,13],[1,18],[2,10],[1,10],[1,9],[4,13],[4,12],[-1,9],[-1,17],[-1,6],[-1,5],[-2,11],[-3,5],[-2,12],[-1,7],[-1,9],[1,11],[0,28],[-1,18],[-2,9],[-2,-15],[-1,-16],[0,-21],[0,-17],[2,-26],[-2,-22],[-2,-3],[-1,2],[-1,4],[-2,4],[-1,1],[-1,-2],[-1,-4],[-4,-16],[-3,-20],[-2,-4],[0,3],[-2,-6],[-1,2],[-3,2],[1,16],[-1,2],[-1,13],[-1,3],[-1,2],[-1,14],[-3,2],[-1,8],[-3,10],[-2,-3],[-1,-8],[-2,-11],[0,-11],[-1,-19],[-1,-1],[0,4],[0,15],[0,18],[0,19],[0,19],[-1,4],[-1,4],[1,19],[1,11],[0,16],[-1,16],[-1,16],[0,16],[0,30],[0,19],[0,11],[1,6],[1,0],[1,-4],[1,-3],[2,0],[1,6],[1,3],[4,5],[1,1],[2,0],[1,-7],[1,-7],[2,-2],[0,-2],[3,-10],[2,-2],[2,5],[2,6],[5,-4],[3,-4],[3,-1],[4,0],[2,-4],[0,-12],[1,-10],[1,12],[1,15],[2,-4],[1,7],[1,9],[1,5],[1,-1],[1,-1],[4,-14],[0,-5],[1,-13],[1,-3],[1,4],[1,2],[1,-4],[1,-9],[1,-1],[1,1],[2,3],[1,8],[-1,15],[1,11],[1,8],[1,9],[1,9],[2,3],[1,10],[-2,0],[-2,-2],[-1,3],[-1,4],[-2,-1],[1,-12],[0,-16],[-1,-9],[-1,-2],[-2,1],[-1,-2],[-3,4],[-2,3],[-1,1],[-2,3],[0,6],[1,2],[1,5],[2,5],[1,14],[-1,8],[-2,3],[-4,-1],[-3,5],[-1,5],[-2,3],[-1,-7],[-1,-5],[-1,8],[-1,3],[-1,-2],[0,9],[-1,8],[-1,18],[1,-6],[1,7],[0,23],[0,23],[-2,16],[-1,10],[-1,14],[0,14],[2,2],[1,9],[1,11],[-1,1],[-2,-12],[0,11],[-2,-5],[-1,9],[0,2],[-2,16],[-1,10],[-1,21],[0,17],[-1,12],[-1,10],[1,13],[0,20],[1,19],[1,9],[1,10],[2,-6],[0,-4],[2,3],[1,2],[2,-17],[1,-5],[1,-7],[1,4],[1,-2],[2,5],[1,6],[1,5],[1,2],[3,1],[2,5],[2,7],[0,12],[1,6],[2,6],[1,8],[0,11],[1,11],[1,6],[2,4],[1,3],[1,13],[0,16],[2,9],[2,5],[2,-2],[1,-2],[1,-1],[1,0],[1,-14],[3,-4],[1,1],[2,4],[2,10],[2,10],[2,8],[1,-10],[1,-7],[2,36],[1,18],[1,7],[0,14],[-1,5],[0,-1],[-2,-4],[-1,3],[1,10],[1,5],[1,6],[1,5],[1,3],[2,-3],[-1,-10],[-1,-12],[2,-1],[1,6],[2,5],[1,4],[2,8],[2,13],[2,7],[1,11],[3,14],[0,7],[1,7],[2,9],[1,1],[1,7],[1,6],[1,0],[2,3],[1,3],[1,3],[1,-3],[2,-8],[1,-16],[1,-16],[0,-15],[2,-24],[0,-14],[0,-13]],[[6096,36654],[1,18],[3,36],[2,12],[2,17],[3,26],[2,20],[3,27],[4,35],[2,27],[3,33],[2,30],[2,24],[3,22],[1,7],[2,9],[2,9],[2,17],[0,19],[1,6],[2,5],[1,6],[1,9],[2,18],[0,14],[1,6],[1,8],[0,6],[1,5],[1,8],[2,8],[1,2],[2,6],[1,4],[1,4],[1,2],[1,0],[1,-4],[1,-2],[1,3],[2,2],[1,2],[1,3],[1,0],[1,0],[1,1],[1,2],[1,3],[2,6],[1,4],[1,4],[1,4],[2,7],[1,4],[2,10],[1,4],[1,0],[1,-7],[0,15],[1,11],[1,11],[0,4],[1,2],[1,3],[2,10],[0,3],[2,3],[1,0],[1,-3],[1,-3],[1,-4],[1,-4],[1,-2],[1,-1],[1,2],[1,3],[1,4],[1,2],[1,-4],[1,-5],[1,-3],[0,-3],[1,-14],[1,-13],[0,-9],[1,-7],[1,-2],[3,-10],[2,-8],[4,-10],[0,-22],[2,-17],[2,2],[0,6],[2,17],[2,10],[3,-20],[2,-4],[1,5],[1,12],[1,8],[1,0],[1,-5],[1,-14],[0,-7],[1,-7],[1,-7],[1,-6],[0,-1],[1,1],[1,-6],[0,-8],[1,-15],[1,-30],[1,-16],[0,-19],[0,11],[1,-1],[1,-3],[1,-5],[1,-2],[1,-1],[2,-3],[2,-17],[3,-9],[4,-11],[4,-24],[1,-27],[0,-36],[4,-24],[7,15],[3,10],[3,-17],[4,-34],[0,-27],[2,-3],[2,5],[0,38],[-1,22],[-1,21],[-1,15],[-4,24],[-6,-6],[-3,-14],[-5,3],[0,26],[-2,34],[-5,33],[-5,2],[-3,12],[0,12],[-1,-6],[-1,-5],[0,1],[-2,1],[-1,2],[-1,2],[-1,3],[-1,5],[-1,9],[-1,45],[0,12],[-1,13],[-1,7],[-1,4],[0,2],[-1,2],[-1,2],[-1,7],[0,12],[-1,8],[0,10],[-1,4],[-1,2],[-1,-2],[-1,-4],[-1,-4],[-1,-9],[-1,-3],[-2,5],[-4,4],[-2,1],[-1,-11],[-1,-3],[-1,16],[-3,12],[-1,3],[-2,7],[-4,33],[-1,17],[-1,6],[-2,13],[-1,4],[-1,4],[0,2],[-2,5],[-1,0],[-1,-1],[-1,-4],[-1,1],[-2,11],[0,3],[-2,8],[-2,6],[-1,1],[-1,2],[-1,0],[-1,1],[-1,-6],[-1,-3],[-1,-2],[0,-3],[-2,-3],[-1,-6],[-1,-3],[0,-6],[-1,-3],[-2,-16],[-1,-13],[0,-4],[-1,-3],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-5],[-2,-3],[-1,-4],[-1,-2],[-1,-1],[-1,-6],[-1,-5],[-1,-2],[-1,0],[-1,1],[-1,2],[0,3],[-1,5],[-1,6],[-1,9],[-1,7],[0,9],[0,18],[0,15],[0,16],[0,17],[0,11],[0,19],[0,28],[0,39],[1,36],[0,24],[1,15],[3,34],[3,-8],[3,55],[2,55],[1,32],[2,24],[1,49],[0,55],[-2,51],[0,28],[0,30],[1,16],[-1,1],[-1,0],[0,25],[1,35],[4,33],[1,12],[2,20]],[[6174,38036],[4,0],[17,-7],[141,29],[24,9],[1,-379],[0,-39],[-1,-55],[0,-165],[0,-182],[0,-477],[0,-55],[0,-62],[-51,0],[-3,0],[-21,0],[-7,0],[-23,0],[-41,0],[-111,0],[-5,0],[-2,1]],[[5678,36430],[0,15],[0,16],[0,17],[0,6],[0,20],[-1,24],[1,-6],[0,-18],[1,-21],[0,-29],[-1,-24]],[[5338,36661],[1,-1],[1,2],[1,2],[2,-9],[1,-8],[0,-11],[0,-7],[1,-8],[0,-12],[1,-8],[-2,-11],[-1,-15],[-2,-10],[-1,-5],[-1,4],[0,9],[0,13],[-1,12],[0,11],[-1,10],[0,12],[-1,13],[-1,11],[0,10],[0,16],[1,-8],[0,-7],[1,-3],[1,-2]],[[5258,37005],[2,-12],[2,3],[1,-4],[1,-9],[0,-15],[1,-12],[1,-11],[0,-17],[0,-15],[0,-11],[-1,-13],[0,-11],[0,-16],[-1,-19],[-2,-17],[-1,-17],[-1,-11],[-1,-6],[-1,-5],[0,7],[0,16],[-1,14],[1,7],[1,8],[1,13],[-1,17],[0,15],[0,26],[-1,16],[-2,22],[-2,18],[-2,3],[-1,7],[-1,14],[-1,8],[-1,8],[-2,11],[1,19],[-1,18],[1,14],[0,13],[0,11],[0,8],[2,10],[1,15],[0,19],[-1,16],[-1,14],[1,15],[0,12],[1,18],[0,20],[1,9],[1,-10],[1,-12],[1,-10],[1,-6],[1,-9],[1,-10],[1,-10],[-1,-10],[1,-16],[0,-13],[0,-19],[0,-19],[0,-27],[-1,-20],[0,-20],[0,-17],[1,-15]],[[5216,36992],[-1,-6],[0,13],[-1,10],[-1,5],[-1,15],[0,17],[1,11],[1,20],[1,13],[0,19],[1,20],[0,19],[0,18],[0,22],[0,16],[0,14],[0,15],[1,14],[1,15],[0,15],[1,44],[2,25],[2,-10],[1,-34],[1,-19],[0,-16],[2,-20],[0,-19],[0,-18],[1,-22],[0,-20],[0,-21],[0,-20],[0,-17],[-2,-15],[-1,-13],[-1,-19],[-1,-6],[-2,-15],[-1,-7],[0,-12],[-2,-18],[-2,-13]],[[5141,37604],[-1,-33],[-2,-33],[-4,-66],[-2,-54],[-2,-39],[-3,-43],[-2,-29],[-1,-26],[-3,-38],[-3,-71],[-2,-55],[-1,-38],[-1,-28],[-2,-23],[0,-30],[-4,-63],[-1,-19],[-1,-20],[-3,-49],[-3,-53],[-3,-83],[-3,-60],[-2,-54],[-1,-57],[-1,-14],[-1,-40],[-5,-37],[-2,-16],[-2,-14],[-3,-11],[-4,-13],[-2,0],[-2,-15],[-1,-3],[-1,-9],[-3,4],[-4,19],[-2,2],[-1,-2],[-4,10],[-7,1],[-2,-2],[-1,-10],[-2,-20],[-1,-9],[-3,-11],[-1,-8],[-1,0],[-1,16],[-1,11],[0,15],[1,9],[0,17],[0,22],[1,14],[1,28],[-1,26],[-1,11],[-1,14],[-1,15],[1,22],[1,18],[1,22],[1,29],[0,13],[-1,19],[0,28],[0,20],[1,19],[-1,9],[-28,293],[-2,53],[2,12],[3,-54],[24,-250],[1,20],[1,36],[1,18],[0,32],[0,22],[0,22],[2,12],[1,7],[0,22],[0,15],[0,14],[1,18],[0,15],[0,22],[-1,21],[-4,-25],[-2,-41],[-1,16],[1,35],[2,12],[1,18],[5,9],[4,10],[6,31],[1,13],[2,12],[1,23],[2,12],[4,15],[2,15],[3,19],[3,19],[2,-2],[2,16],[2,6],[2,16],[2,7],[2,0],[2,-7],[1,3],[2,0],[4,1],[3,2],[3,12],[4,22],[2,22],[2,25],[2,20],[3,6],[3,14],[1,16],[1,10],[4,-1],[3,0],[1,20],[3,38],[1,19],[0,28],[1,19],[3,-1],[2,0],[4,10],[2,32],[0,32],[1,19],[1,6],[1,2],[1,2],[1,-9],[-1,-17],[-1,-31],[-1,-35]],[[5036,37706],[-2,-27],[-2,-3],[-2,-2],[-3,-10],[-3,-17],[-1,-11],[-1,-10],[0,-10],[-1,-6],[-1,-14],[-1,-5],[-2,22],[-1,-4],[-6,-23],[-2,-7],[-1,-22],[-1,-21],[1,-19],[-2,-15],[-1,6],[0,17],[-3,23],[-20,-18],[0,16],[-1,25],[-3,2],[-2,20],[2,18],[0,14],[-1,23],[-3,-23],[-4,-20],[1,-74],[5,-51],[17,36],[1,1],[4,5],[3,0],[0,-15],[-26,-67],[-1,-12],[0,-31],[0,-18],[-2,-16],[-2,-7],[-1,-8],[-2,-24],[-2,-23],[-1,-19],[-1,-6]],[[4962,37276],[-9,1],[1,434],[33,-6],[1,0],[48,1]],[[5589,37790],[-2,-20],[0,-13],[-1,-16],[0,-14],[0,-13],[1,-21],[-1,-12],[-1,1],[-1,13],[0,19],[-1,21],[-1,17],[-1,13],[0,12],[1,6],[1,-2],[2,-8],[1,1],[1,10],[2,6]],[[5277,37814],[1,-7],[1,-15],[1,-1],[1,-4],[3,-34],[0,-13],[0,-20],[0,-11],[0,-8],[-2,-2],[0,10],[-1,11],[-1,7],[-1,2],[-1,22],[0,20],[-1,7],[-1,2],[1,12],[-1,8],[-2,3],[-1,5],[-2,-3],[-1,3],[0,15],[-1,23],[1,17],[1,7],[1,5],[2,1],[1,-7],[1,-9],[0,-20],[0,-17],[1,-9]],[[5099,37933],[-1,6],[-1,21],[1,-4],[1,-11],[0,-12]],[[5769,38969],[-1,-5],[-1,6],[-4,15],[-1,9],[-1,16],[1,-2],[1,-4],[2,-11],[1,-8],[2,-7],[1,-9]],[[5589,37790],[0,17],[0,15],[1,20],[0,21],[0,19],[0,13],[0,18],[-1,12],[-2,-3],[-1,-3],[-1,-9],[-1,-11],[-1,-14],[-1,-12],[-2,-9],[-1,-5],[0,-7],[2,3],[2,11],[2,21],[1,11],[1,-11],[1,-47],[0,-18],[-1,-10],[-3,-4],[-2,1],[-1,-1],[-2,-7],[0,-19],[-1,-18],[1,-14],[1,-14],[1,-7],[0,-14],[0,-14],[0,-13],[1,-12],[1,-8],[2,-7],[1,-2],[1,5],[1,11],[1,18],[0,21],[0,18],[1,11],[1,2],[-1,16],[1,11],[1,4],[1,6],[1,6],[2,3],[1,-2],[2,-13],[0,-22],[1,-23],[0,-31],[0,-15],[1,-24],[1,-10],[0,-15],[0,-18],[0,-18],[0,-17],[1,-17],[1,-15],[1,-15],[1,-14],[2,-15],[1,-9],[1,-13],[1,-12],[1,-8],[2,-8],[2,-6],[2,-1],[1,6],[3,1],[2,9],[2,11],[3,7],[2,6],[6,21],[2,4],[3,22],[1,15],[5,24],[1,3],[2,1],[3,-3],[2,-20],[1,-17],[-1,-24],[-1,-6],[-2,1],[-3,2],[-4,-7],[-2,-7],[-1,-6],[-1,-7],[-1,-15],[-1,-20],[0,-16],[-1,-20],[0,-21],[1,-36],[1,-45],[0,-44],[1,-26],[0,-22],[0,-28],[1,-14],[1,-17],[1,-14],[1,-3],[1,-2],[1,-9],[1,-23],[0,-14],[1,-12],[2,-6],[1,-23],[1,-20],[0,-19],[0,-14],[1,-15],[1,-15],[1,-22],[0,-27],[0,-27],[1,-13],[1,-21],[1,-21],[1,-23],[0,-20],[0,-27],[0,-30],[1,-29],[2,-36],[2,-61],[1,-20],[1,-43],[1,-23],[1,-19],[2,-41],[2,-35],[1,-19],[1,-14],[1,-1],[1,13],[0,16]],[[5678,36430],[0,-30],[0,-18],[0,-15],[-1,-17],[1,-17],[0,-19],[1,-69],[1,-49],[1,-25],[1,-18],[-1,4],[-1,10],[0,-10],[0,-4],[0,-12],[1,-10],[1,-15],[1,-19],[0,-19],[2,-7],[1,-5],[1,0],[1,0],[0,-11],[0,-6],[2,-14],[0,10],[0,17],[0,16],[1,-11],[0,-5],[1,-7],[1,3],[-1,6],[0,10],[-1,8],[-1,10],[-3,10],[-1,12],[2,0],[1,-7],[2,-8],[2,-12],[2,-5],[1,-3],[1,-5],[1,-10],[0,-16],[-1,-16],[-1,-8],[-3,-31],[-2,-38],[-1,-16],[0,-6],[-7,-102],[-5,-63],[-1,-21],[-6,-33],[-4,-1],[-2,1],[-1,-17],[0,-11],[2,-6],[0,-14],[3,2],[3,26],[0,-5],[0,-9],[-2,-27],[-3,-14],[-1,-5],[-2,-15],[-1,-6],[-2,-8],[-1,-6],[-1,-5],[-2,-2],[-1,-5],[-6,-10],[-4,-10],[-4,-3],[-4,9],[-9,25],[-10,37],[-3,13],[-3,19],[-7,14],[-6,19],[-3,18],[-1,10],[-1,10],[0,15],[-3,76],[-1,11],[0,5],[0,7],[1,-4],[0,-6],[1,-21],[1,-5],[0,-17],[1,-11],[1,-5],[2,-6],[1,-9],[1,6],[1,9],[2,-7],[1,2],[2,8],[0,16],[0,14],[-1,9],[0,5],[0,8],[1,10],[1,4],[1,8],[-1,2],[0,1],[-1,11],[-1,7],[-1,4],[-1,5],[-1,-9],[1,-12],[1,-3],[0,-13],[-1,-9],[0,2],[-2,-2],[0,-12],[-1,-13],[0,-4],[0,-9],[-2,-4],[-1,12],[-1,10],[-1,6],[0,15],[-1,8],[-1,32],[-3,45],[0,19],[0,7],[1,4],[1,4],[1,-3],[1,-1],[0,10],[0,14],[-1,11],[1,15],[0,5],[0,6],[-1,-12],[-1,8],[0,15],[1,10],[0,12],[0,13],[0,9],[0,12],[-1,1],[-1,-42],[0,-18],[0,-13],[-1,-3],[-1,-6],[0,-13],[0,-11],[-2,-18],[-1,3],[0,15],[0,12],[1,1],[1,5],[-1,9],[-1,-4],[-1,-4],[-1,49],[-3,35],[1,22],[-1,9],[-2,0],[-1,21],[-1,24],[-2,2],[1,-18],[2,-35],[3,-63],[3,-40],[-2,4],[-1,26],[-4,67],[-4,71],[-4,68],[-4,72],[-4,69],[-4,88],[-5,99],[-6,127],[-8,139],[-5,88],[-4,67],[-2,50],[-1,10],[-1,13],[-7,108],[-4,98],[-4,58],[-6,80],[-7,80],[-9,95],[-8,64],[-5,55],[1,5],[2,-12],[2,-12],[2,-12],[1,-17],[2,-8],[2,-1],[-1,9],[-1,8],[-2,12],[-2,13],[-3,16],[0,4],[-3,13],[-1,2],[0,-5],[-2,3],[-2,15],[-3,17],[-2,9],[-1,0],[-1,1],[1,10],[0,15],[0,18],[-1,16],[0,15],[-2,6],[-1,1],[-1,6],[-1,-8],[-1,-10],[0,-13],[0,-17],[1,-10],[1,-2],[1,-11],[-1,-6],[-1,6],[-4,11],[-2,7],[-2,3],[-1,-3],[-1,-10],[0,-13],[0,-9],[-2,-3],[-1,3],[-1,11],[0,6],[-1,3],[-2,-1],[0,13],[-1,1],[-1,-10],[-2,-4],[0,6],[-1,7],[-2,3],[-1,5],[3,29],[0,30],[1,15],[2,17],[1,24],[1,27],[2,24],[1,19],[1,14],[1,14],[0,22],[1,-6],[0,-11],[1,-2],[1,19],[1,28],[0,23],[-1,22],[-1,22],[-2,35],[-2,36],[-3,43],[0,11],[1,-10],[1,1],[1,7],[0,12],[0,16],[0,7],[-1,6],[-2,14],[1,17],[0,14],[1,10],[1,6],[-1,4],[-1,1],[-1,-4],[0,-9],[0,-16],[-1,-11],[0,-13],[0,-13],[1,-13],[0,-14],[-1,-5],[-2,-5],[-1,5],[-2,8],[-1,6],[-2,0],[-4,-9],[-7,-14],[-6,-17],[-2,2],[-1,9],[-1,-3],[-4,-17],[-1,-5],[-1,17],[0,14],[-1,10],[-1,1],[-1,-8],[1,-6],[1,-9],[-1,-5],[1,-20],[1,-4],[1,-3],[1,-12],[1,-10],[1,-11],[1,-4],[0,-16],[-1,-11],[-1,-7],[0,-10],[-1,-13],[0,-15],[1,-21],[0,-14],[-2,-24],[-2,-29],[-3,-31],[-2,-20],[0,-19],[0,-23],[0,-7],[1,1],[2,0],[0,-8],[2,-13],[1,-16],[0,-13],[-1,-13],[-1,-14],[0,-22],[-1,-15],[-1,-9],[-1,-11],[0,-11],[-1,5],[-1,-3],[0,11],[0,11],[0,22],[0,19],[-1,9],[0,13],[-1,4],[-2,-1],[0,-12],[-1,-1],[-1,11],[-1,7],[-1,3],[-1,-7],[1,-7],[-1,-7],[0,-10],[-2,-22],[0,-12],[1,-8],[1,-16],[0,-19],[1,-9],[1,-6],[-1,-11],[0,-13],[0,-13],[1,-2],[1,-1],[1,-6],[-1,-13],[0,-10],[0,-17],[0,-11],[0,-16],[-1,-16],[-2,-12],[-1,-9],[-1,-9],[-1,-1],[-1,2],[-1,-4],[-1,-13],[-1,-2],[-1,9],[-1,5],[-1,9],[-3,-10],[-1,-7],[-1,-17],[0,-17],[1,-6],[0,-5],[-1,-8],[-1,-7],[-1,-1],[-2,-6],[-1,-10],[-1,-14],[-3,-4],[-2,-4],[-1,-6],[-1,-14],[0,-10],[-4,19],[1,8],[1,1],[1,7],[-1,12],[0,17],[-1,14],[0,13],[-1,1],[-1,3],[0,11],[-1,7],[-1,9],[-1,14],[-1,9],[-1,14],[-1,14],[-2,7],[-1,16],[1,11],[0,12],[-1,23],[-1,12],[-1,6],[-1,-2],[-2,-3],[0,8],[0,13],[0,16],[0,13],[0,15],[-1,14],[-1,5],[-2,-6],[-1,-1],[0,1],[0,9],[0,12],[0,12],[1,3],[1,4],[-1,7],[1,12],[-1,16],[1,11],[0,12],[1,18],[-1,13],[-1,11],[0,18],[-1,10],[-1,8],[-1,9],[-1,13],[-1,0],[-1,18],[-2,5],[-2,7],[-3,1],[-3,6],[-1,1],[-2,1],[-3,-7],[-3,-13],[-2,-9],[-2,-22],[0,-21],[0,-24],[0,-19],[-1,-18],[0,-4],[-2,8],[-2,8],[-1,-1],[0,12],[-1,12],[-1,0],[-2,1],[-2,-6],[-2,-4],[-2,-5],[-3,4],[0,6],[0,12],[0,18],[2,22],[1,21],[0,17],[0,39],[0,17],[-1,17],[1,34],[1,7],[-1,19],[0,11],[0,10],[0,6],[1,15],[0,7],[-2,12],[1,25],[2,18],[1,13],[0,11],[-1,-7],[-1,-12],[-2,-8],[-2,-17],[0,-15],[0,-17],[-1,-30],[1,0],[-1,-10],[-3,6],[-1,1],[-2,1],[-2,0],[-1,-19],[-2,-5],[-2,3],[-3,-11],[-1,-15],[0,-15],[-1,-19],[0,-12],[-1,-16],[-1,-1],[-1,-4],[-1,2],[-1,3],[0,11],[-1,20],[0,15],[0,17],[1,16],[0,18],[-2,27],[0,24],[2,23],[-1,19],[-1,10],[-1,14],[-1,26],[1,26],[-1,11],[-1,5],[-2,12],[-1,-2],[-1,-16],[1,-25],[0,-14],[-1,-11],[-1,-10],[-1,-6],[0,17],[1,15],[-1,18],[0,20],[-2,-5],[-1,-8],[0,10],[1,13],[0,12],[-2,6],[-1,-8],[-1,-5],[-3,-14],[-1,-14],[-1,7],[-1,10],[0,19],[1,14],[1,9],[1,16],[1,15],[0,15],[2,5],[1,9],[1,15],[2,14],[0,21],[2,5],[2,-4],[3,-3],[2,6],[1,14],[1,28],[0,27],[-1,30],[-1,22],[-2,19],[-3,69],[-1,14],[-7,70],[-1,9],[-3,23],[-3,33],[-1,11],[1,8],[3,-1],[3,4],[1,-4],[0,6],[1,15],[0,18],[-1,-4],[-1,-3],[-1,11],[-2,21],[-1,2],[-1,9],[-1,14],[0,13],[-1,8],[-2,-16],[0,-14],[-3,-5],[-1,-4],[-3,-34],[-1,-11],[-2,-29],[-7,-39],[-8,-53],[-5,-15],[-4,-27],[-3,-20],[-1,-12],[-5,-26],[-3,-19],[-2,-17],[-5,-23],[-2,-23],[0,-14],[0,-11],[-2,-5],[-1,-3],[-3,-12],[-2,-11],[-1,-13],[-2,-21],[-2,-8],[-1,-13],[-1,-4],[-3,-25],[-4,-16],[-6,-43],[-3,-14],[0,-10],[-1,-8],[-1,5],[1,14],[-1,-7],[-1,-17],[-1,-13],[-1,-10],[-3,-23],[-4,-42],[-2,-33],[-1,-10],[-1,-2],[-1,-4],[-2,-16],[-3,-24],[-4,-41],[-3,-25],[-2,-21],[-2,-30],[-3,-43],[-2,-46],[-1,-17],[-1,-24],[-2,-35],[-1,-42],[-2,-46],[-1,-41],[-1,-28],[-1,-24],[-1,-21],[-1,-22],[-1,-15],[0,19],[1,17],[1,21],[1,20],[0,22],[0,25],[0,27],[0,28],[-1,23],[-2,30],[-1,18],[-1,11],[-1,16]],[[5099,37933],[2,-2],[1,-3],[0,-10],[1,-9],[1,-4],[0,10],[0,19],[-1,10],[-1,1],[-1,12],[-1,10],[-1,1],[-1,6],[0,6],[-2,-5],[-1,1],[-2,10],[-1,9],[-2,15],[-4,11],[-3,-1],[-1,-9],[0,-17],[-1,-16],[-2,-12],[-3,-4],[-2,0],[-3,2],[-1,7],[0,21],[0,3],[-1,-25],[-1,-2],[-1,5],[-1,-2],[0,-20],[-1,-20],[-1,-3],[0,-6],[-2,-8],[-1,-14],[-2,-26],[-1,-15],[-1,-13],[-3,-15],[-2,-3],[-3,-17],[-3,-18]],[[5046,37793],[0,812],[45,1],[0,398],[15,4],[0,876],[31,2],[16,2],[0,191],[0,240],[45,-5],[2,-2],[1,24],[-1,414],[16,-2],[1,585],[-1,286],[32,-4],[7,0],[10,3],[0,799],[0,59],[64,12],[0,306],[1,86],[1,317],[-1,114],[0,30],[2,0],[16,-1],[25,24],[2,1],[1,36],[0,20],[0,37],[1,87],[0,46],[-1,261],[0,230],[0,99],[18,-1],[0,25],[1,397],[6,-2],[41,8],[0,251],[0,490],[0,118],[49,-3],[1,280],[1,135],[17,1],[0,12],[0,103],[1,568],[0,175],[37,1],[14,1],[0,428],[43,4],[4,1],[0,453],[4,1],[14,-2],[1,251],[1,147],[17,-1],[38,-4],[84,-6],[41,13],[115,-1],[1,-275],[0,-116],[7,4],[2,-4],[42,-6],[-1,435],[9,2],[3,-2],[38,0],[0,23],[0,419],[31,0],[36,-1],[6,0],[16,-1],[9,0],[1,-436],[74,-26],[177,12],[4,1],[69,-10],[1,0],[11,0]],[[6460,48043],[0,-317],[0,-140],[1,-1452],[0,-656],[0,-621],[1,-394],[0,-392],[0,-526],[0,-430],[-1,-986],[0,-38],[0,-25],[0,-95],[0,-26],[-12,0],[-9,0],[-25,-11],[0,-357],[0,-74],[-28,0],[-49,7],[-19,-1],[0,-108],[0,-237],[0,-83],[-16,2],[-31,3],[0,-165],[0,-276],[-27,6],[1,-389],[0,-44],[-73,10],[-23,3],[0,-103],[0,-329],[-39,7],[-5,1],[-4,1],[0,-40],[1,-839],[7,-2],[16,-3],[0,-532],[0,-101],[0,-40],[0,-202],[0,-30],[0,-10],[0,-114]],[[6126,37895],[0,2],[-4,-5],[-2,-26],[0,-19],[-2,-14],[-3,-13],[-2,-3],[-3,-15],[-3,-2],[-2,-6],[-2,-12],[-3,-7],[-2,-2],[-4,2],[-8,5],[-5,-21],[-6,-44],[-3,-31],[-8,-45],[-4,-9],[-2,-28],[-3,-25],[-4,-25],[-6,-11],[-9,-14],[-7,-38],[-7,-28],[-1,-18],[-1,-27],[-1,-13],[-2,-32],[-6,-14],[-20,-64],[-15,-44],[-7,-33],[-2,-14],[-4,-28],[-5,-27],[-3,-17],[-1,-7],[-1,-8],[-5,-36],[-6,-33],[-10,-53],[-14,-52],[-7,-38],[-14,-54],[-4,-14],[-1,-6],[-7,-31],[-3,-23],[-4,-13],[-2,-6],[-13,-47],[-10,-30],[-12,-4],[-1,-1],[-1,-1],[-7,10],[-5,21],[-1,14],[-1,8],[-1,4],[-1,9],[0,11],[-1,10],[0,-9],[-2,2],[0,3],[-3,6],[-1,15],[-2,8],[-2,13],[-3,21],[-5,45],[-3,38],[-2,27],[0,19],[1,29],[-1,58],[-2,80],[-1,53],[-2,70],[-7,101],[-7,65],[-4,29],[-2,14],[-9,35],[-9,17],[-1,2],[-1,2],[-2,4],[-3,6],[-2,5],[-5,21],[-2,12],[-2,10],[-1,22],[-2,17],[-1,10],[0,27],[0,23],[0,12],[1,6],[1,2],[1,-1],[1,6],[-1,21],[0,19],[-1,16],[0,15],[-1,23],[1,21],[0,11],[1,6],[1,3],[1,0],[1,-5],[0,-10],[2,-2],[1,1],[1,3],[2,16],[1,16],[2,19],[1,10],[-1,15],[0,18],[1,18],[1,21],[0,19],[0,30],[1,22],[-1,10],[1,9],[0,8],[0,48],[0,27],[1,5],[1,18],[1,19],[0,16],[-1,15],[1,9],[-1,42],[-1,43],[0,30],[1,20],[2,18],[2,19],[2,17],[3,17],[2,10],[1,7],[1,13],[1,4],[0,3],[6,-7],[1,9],[-1,10],[-6,21],[0,6],[1,25],[0,20],[-1,19],[1,27],[0,14],[1,4],[1,1],[1,5],[0,7],[0,3],[-1,-4],[0,4],[-2,-10],[-1,-3],[-1,-5],[0,-25],[0,-13],[0,-11],[-1,-13],[0,-9],[-4,-63],[-1,-12],[-2,4],[0,14],[0,40],[0,21],[-1,4],[-1,10],[2,11],[1,11],[1,7],[-1,3],[-1,-2],[-1,-12],[-2,-9],[-1,0],[-1,7],[0,17],[0,17],[1,7],[4,23],[1,6],[3,20],[3,15],[2,11],[1,1],[1,-12],[1,13],[1,18],[1,11],[14,66],[1,1],[2,0],[4,-15],[7,-29],[6,-23],[5,-22],[6,-12],[6,-10],[4,-3],[6,-3],[5,0],[4,-14],[5,-21],[4,-19],[1,-25],[0,-15],[1,-18],[1,-12],[1,-11],[0,-7],[1,-8],[2,-27],[4,-39],[3,-52],[1,-13],[1,-13],[3,-14],[1,-18],[2,-19],[1,-13],[-1,-13],[-1,-11],[0,-8],[-1,-10],[-1,-15],[-1,-17],[0,-41],[-1,-20],[1,-11],[1,-4],[1,-10],[1,-17],[0,-16],[4,-19],[1,-7],[1,-9],[1,-4],[1,-7],[0,-14],[1,-6],[1,4],[0,-4],[-1,-21],[-1,-9],[0,-23],[1,-1],[1,-8],[1,-11],[1,-7],[1,-6],[1,-5],[1,-3],[2,-2],[1,-4],[3,-17],[1,6],[0,7],[-1,18],[-3,10],[-4,27],[0,21],[0,15],[0,17],[-1,21],[4,11],[0,11],[1,8],[2,41],[1,34],[1,19],[1,-1],[1,-7],[2,5],[2,13],[3,26],[1,26],[1,10],[-3,4],[-3,-9],[-4,-30],[-4,-36],[-1,-11],[-2,-6],[0,-13],[-1,-21],[0,-20],[-2,-13],[0,-10],[-1,-6],[-1,0],[-1,6],[-1,17],[-2,15],[0,27],[-1,30],[0,36],[0,17],[0,17],[1,18],[1,20],[0,18],[-1,29],[0,21],[-3,27],[-1,24],[-2,15],[0,20],[-1,24],[-1,27],[-2,29],[-2,18],[-1,9],[-2,17],[-1,14],[-2,11],[1,8],[0,16],[-2,27],[-5,48],[-8,43],[-8,19],[-4,11],[-15,-9],[-5,0],[-4,14],[-5,36],[-2,21],[-1,13],[-1,-4],[-4,21],[-7,22],[-4,8],[-2,15],[0,14],[-2,-8],[-1,-9],[-1,-1],[-1,0],[-2,4],[-1,13],[-1,8],[-1,20],[-1,15],[-1,14],[-2,11],[0,5],[-2,9],[-1,5],[-2,5],[-1,9],[-3,20],[-2,16],[-1,9],[0,7],[-2,35],[-2,27],[-1,9],[-1,11],[-1,13],[0,15],[1,8],[0,6],[1,8],[-1,3],[-1,2],[0,11],[0,7],[1,11],[0,8],[1,-5],[0,17],[-1,20],[-1,12],[-1,4],[-1,3],[-1,2],[-1,3],[-2,1],[-1,3],[-1,1],[-1,0],[-1,0],[-1,10],[1,18],[0,14],[0,21],[0,19],[0,18],[-1,20],[1,5],[1,5],[1,8],[1,12],[1,13],[0,14],[-1,11],[-1,-2],[-1,-9],[0,-12],[-1,-13],[-2,-10],[-1,-9],[-1,-16],[1,-15],[0,-22],[0,-27],[0,-29],[-1,-20],[1,-17],[1,-20],[2,-13],[2,-7],[2,6],[2,1],[2,-14],[-1,-27],[-1,-21],[0,-20],[0,-18],[0,-10],[2,-15],[1,-10],[1,-12],[1,-2],[1,-6],[1,-14],[0,-9],[1,-13],[0,-11],[2,-40],[1,-5],[1,-16],[3,-19],[1,-7],[1,-4],[0,-6],[2,-9],[1,-5],[0,-7],[1,-8],[1,-4],[0,-6],[1,-8],[0,-15],[0,-16],[0,-12],[-1,-14],[-1,-12],[-1,-17],[-1,-6],[-1,-8],[-1,-11],[-1,-7],[-1,-5],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,-2],[-1,-9],[-1,-1],[-1,0],[-1,-1],[-1,4],[-1,1],[-1,-5],[-2,-11],[-1,-12],[-1,-10],[-1,-9],[0,-6],[-1,-2],[-1,-13],[-1,-9],[0,-11],[-1,-10],[0,-10],[0,-10],[1,-9],[0,-18],[0,-15],[1,-13],[-1,-13],[-1,-20],[-1,-23],[-3,-39],[-1,-10],[-2,-17],[-1,-17],[-2,-14],[-2,-19],[-2,-42],[-5,-70],[-2,-33],[-1,-69],[0,-34],[0,-16],[-1,-12],[-1,-8],[-1,0],[-2,-2],[-2,-11],[-3,-18],[-4,-40],[-3,-20],[-3,-31],[-2,-18],[-1,-10],[-2,-8],[-3,-24],[-3,-6],[-5,14],[-2,8],[-2,14],[-1,14],[-1,17],[1,14],[0,19],[1,16],[1,8],[2,22],[1,21],[1,18],[0,21],[1,16],[1,10],[0,15],[0,31],[0,16],[-3,9],[-6,11],[-1,30],[-1,80],[-1,9],[-1,10],[-1,14],[-2,-2],[-2,1],[-2,5],[1,9],[0,7],[2,0],[2,2],[1,4],[2,11],[1,8],[0,4],[2,-8],[2,-24],[5,-5],[2,21],[-1,29],[-3,20],[0,29],[1,15],[-1,13],[-3,-7],[-1,-23],[1,-27],[0,-13],[-4,3],[-6,-31],[-5,1],[-1,0],[-4,-14],[-1,-8],[0,-14],[3,-13],[3,-9],[1,-5],[1,-2],[1,-4],[2,-1],[2,-3],[1,-6],[1,-11],[0,-21],[0,-26],[0,-24],[0,-19],[1,-14],[2,-13],[1,-6],[3,2],[2,-4],[2,-14],[0,-26],[-1,-20],[-2,-48],[-1,-14],[-1,-8],[-1,-13],[-1,-12],[-1,-15],[-1,-53],[0,-25],[0,-17],[1,-10],[0,-15],[1,-11],[0,-13],[0,-23],[-1,-24],[-1,-24],[1,-30],[-1,-26],[0,-17],[-1,-33],[-2,-40],[-1,-35],[-1,-29],[1,-18],[0,-14],[1,-28],[1,-26],[1,-28],[1,-34],[1,-22],[0,-45],[-2,-46],[-2,-40],[-2,-44],[-2,-30],[-3,-24],[-3,-12],[-2,-5],[-2,-9],[-4,0],[-1,3],[-3,3],[-3,21],[-2,45],[-1,50],[-1,45],[-1,38],[1,23],[3,18],[4,5],[2,0],[5,2],[4,5],[3,9],[2,10],[1,30],[1,18],[1,25],[0,33],[-2,35],[-2,17],[-2,11],[-4,-1],[-4,-7],[-2,-14],[-3,-12],[-1,0],[0,5],[-3,-18],[-4,-17],[-3,-13],[-3,-17],[-2,-14],[-3,-18],[-3,-12],[-3,-13],[-2,-11],[-3,-3],[-2,-2],[-1,-3],[-1,2],[-3,-4],[-3,22],[-4,36],[-1,20],[-1,26],[-1,44],[0,33],[0,13],[-1,32],[-1,45],[-1,34],[0,22],[-1,7],[-3,7],[-2,-9],[-2,-12],[-2,-7],[-2,-10]],[[5503,22303],[-1,0],[0,7],[0,15],[1,19],[1,19],[2,3],[0,16],[0,21],[1,22],[-1,26],[0,15],[1,19],[0,11],[1,9],[1,5],[0,14],[0,20],[0,21],[1,16],[0,12],[1,1],[1,0],[2,2],[0,-1],[2,-8],[3,-2],[1,-1],[1,-11],[1,-10],[0,-18],[-1,-17],[-1,-7],[-2,-19],[-1,-17],[0,-10],[-2,-20],[-2,-23],[-2,-35],[-1,-12],[-1,-12],[-1,-8],[-1,-9],[-1,-2],[0,-18],[-1,-24],[-2,-9]],[[5529,22732],[0,-17],[2,2],[1,-4],[0,-26],[-1,-26],[0,-22],[1,-15],[1,-2],[1,7],[2,-14],[1,-8],[0,-18],[-1,-17],[-1,-25],[-1,-12],[-1,-6],[-2,-13],[-1,-16],[-1,-19],[-1,-15],[-1,10],[0,18],[0,18],[0,12],[-1,8],[1,18],[0,15],[-1,20],[-3,16],[-1,11],[0,16],[0,15],[-1,16],[-3,23],[-3,-5],[-1,-14],[-1,-8],[-1,10],[-1,11],[0,14],[1,18],[1,26],[1,24],[3,15],[3,4],[2,22],[2,5],[2,5],[1,10],[1,-12],[-1,-2],[-1,-16],[0,-21],[2,-23],[1,-13]],[[5516,22828],[-1,-2],[-1,0],[-2,13],[0,11],[-1,12],[-1,13],[1,16],[1,21],[1,-20],[1,-13],[1,-7],[1,-10],[0,-19],[0,-15]],[[5589,22913],[-1,14],[0,12],[2,-9],[1,-12],[-1,-3],[-1,-2]],[[5476,22948],[-1,-10],[-1,6],[-1,11],[0,11],[0,17],[1,16],[1,-5],[1,-8],[-1,-14],[0,-8],[1,-16]],[[5594,23050],[2,-6],[0,-9],[-1,-9],[-1,-7],[-1,0],[-1,-4],[-2,6],[0,19],[1,7],[0,-2],[2,4],[1,1]],[[5467,22998],[-1,-14],[0,16],[0,15],[0,14],[0,11],[1,13],[0,13],[1,8],[1,-3],[0,-12],[-1,-17],[-1,-15],[0,-15],[0,-14]],[[5589,22913],[0,-15],[-1,-1],[-1,-1],[-2,-15],[-2,-17],[-2,-16],[-2,5],[-1,6],[-2,-3],[-1,5],[-1,7],[-1,9],[-2,17],[-1,12],[-3,14],[-1,2],[-1,-7],[-1,-1],[-1,7],[-2,6],[1,8],[1,7],[1,17],[2,25],[1,14],[0,16],[1,18],[2,17],[1,18],[0,12],[1,18],[0,15],[1,-8],[1,-6],[1,-9],[4,-25],[2,-2],[1,-1],[1,-13],[0,-3],[3,-11],[1,-10],[0,-15],[-2,-12],[-1,-9],[-2,-8],[0,-16],[1,-15],[1,-6],[1,0],[1,-9],[1,-17],[2,-4]],[[5581,23147],[1,-6],[-2,-5],[-1,5],[-1,0],[-1,8],[0,11],[1,4],[2,0],[0,-6],[1,-11]],[[5672,23142],[1,-1],[1,2],[1,6],[3,-16],[2,-16],[2,-8],[1,-7],[0,-14],[0,-17],[-1,-18],[1,-18],[0,-21],[0,-21],[1,-13],[2,-4],[2,4],[2,-1],[1,-1],[1,-3],[1,-10],[1,-14],[1,-15],[1,-21],[1,-21],[-1,-11],[-1,-11],[-1,-10],[-1,-4],[-1,-4],[-2,3],[-2,8],[1,20],[1,33],[-2,11],[-2,0],[-1,4],[-2,-3],[-2,-10],[-1,-13],[-1,5],[-1,10],[-1,19],[-1,17],[-1,-5],[-3,-7],[-1,1],[-1,3],[-2,12],[0,14],[0,23],[2,19],[1,12],[-2,10],[-1,2],[-1,6],[-1,9],[-1,5],[-1,1],[0,-18],[0,-23],[-2,-5],[-5,-9],[-1,-9],[-2,-27],[-1,-16],[-1,-17],[-1,-16],[1,-21],[0,-30],[-2,-23],[-1,-8],[-1,-2],[0,-11],[0,-8],[2,-10],[1,-5],[1,3],[2,-3],[2,-3],[2,1],[0,-7],[0,-21],[-1,-4],[-2,-1],[-1,-4],[-2,-5],[-2,6],[-2,6],[-2,2],[-2,7],[0,8],[-1,13],[-1,50],[0,23],[1,22],[0,13],[0,27],[2,23],[2,21],[1,13],[-1,12],[-1,26],[-2,21],[1,19],[2,12],[1,5],[0,11],[0,12],[1,5],[2,-2],[1,5],[1,-3],[2,-1],[1,-11],[1,9],[1,11],[2,16],[2,6],[2,6],[-1,16],[-2,10],[0,14],[2,5],[1,-4],[2,-6],[3,-3],[1,-11],[1,-14],[1,-19]],[[5665,23339],[-1,-34],[-3,22],[1,30],[3,-18]],[[5656,23356],[-2,-13],[-1,18],[0,17],[1,0],[2,-6],[0,-16]],[[5867,24455],[-1,-19],[-2,-12],[-1,-6],[-1,0],[-1,-13],[-1,-20],[-1,-3],[-1,6],[-2,11],[-1,13],[-3,-1],[-1,-9],[-1,5],[-1,6],[-1,9],[0,7],[1,8],[2,2],[1,6],[2,1],[2,0],[2,2],[2,-3],[2,-7],[1,9],[1,19],[1,13],[0,16],[2,-5],[-1,-12],[1,-23]],[[5968,25115],[0,-24],[0,-17],[-1,-7],[-1,2],[-2,10],[-1,14],[0,15],[1,4],[1,0],[2,2],[1,1]],[[5730,25088],[-2,-26],[-1,11],[-1,1],[-1,-7],[0,-4],[-1,5],[0,19],[0,20],[-1,11],[1,20],[1,14],[2,9],[1,2],[2,2],[1,-13],[0,-13],[1,-11],[0,-10],[-1,-10],[-1,-20]],[[5942,25409],[3,-40],[2,-10],[2,-13],[0,-11],[0,-11],[-2,1],[-2,2],[-2,-7],[0,-11],[0,-21],[-1,-24],[-1,-1],[-3,23],[-5,19],[-1,34],[-1,25],[-2,10],[-1,3],[-2,-5],[-2,-10],[-1,2],[-1,26],[-1,11],[-2,10],[-1,12],[1,15],[1,3],[4,3],[1,15],[2,20],[1,19],[2,16],[2,15],[2,7],[2,9],[2,4],[0,-18],[2,-28],[3,-9],[1,-5],[0,-19],[0,-7],[-2,-7],[-1,-11],[0,-13],[1,-23]],[[5973,26189],[1,-18],[-1,3],[-1,0],[-2,-4],[-1,-8],[-2,-17],[-1,-5],[-1,-23],[0,-16],[0,8],[-1,13],[0,19],[0,9],[2,19],[1,22],[1,24],[-1,29],[2,-2],[1,-18],[1,-13],[1,-8],[1,-14]],[[6103,26591],[2,-15],[2,-10],[1,3],[2,9],[1,-1],[1,-2],[2,-1],[1,10],[2,5],[3,3],[1,5],[2,7],[2,-4],[1,-6],[2,8],[2,8],[1,-8],[2,-12],[1,-2],[1,6],[3,-1],[3,4],[1,3],[3,-2],[2,-10],[2,-1],[1,-11],[1,-6],[4,-30],[2,-17],[2,-10],[1,-11],[3,-8],[-1,-13],[1,-12],[2,-1],[1,4],[2,-8],[1,-13],[1,-3],[2,-3],[1,-12],[1,-10],[1,-7],[1,-10],[1,-10],[1,-19],[-1,-8],[-3,-8],[-1,-4],[-1,10],[-1,5],[-1,0],[-1,16],[0,15],[-1,21],[-2,8],[-3,3],[-3,-2],[-3,5],[-1,8],[-3,2],[-3,-2],[-1,0],[-1,-10],[-1,1],[-3,2],[-2,-1],[-1,12],[-2,7],[-2,-4],[-2,-16],[-1,-7],[-1,-12],[-2,-12],[-1,-24],[-2,-26],[0,-22],[-1,6],[-4,5],[-4,10],[-2,-17],[-1,-4],[0,-29],[-1,4],[0,17],[-1,12],[-2,8],[-2,4],[-3,-3],[-5,10],[-3,-12],[-2,-20],[-1,7],[-1,8],[-1,-1],[-4,2],[-2,4],[-2,8],[-2,-3],[-1,-10],[-1,-5],[-1,5],[-1,-7],[0,-13],[-1,15],[0,20],[0,32],[1,11],[1,4],[2,14],[2,35],[1,18],[1,21],[2,23],[1,10],[2,6],[1,9],[0,13],[1,3],[1,3],[1,17],[-1,16],[2,-8],[2,0],[0,14],[2,7],[1,14],[0,-12],[1,-14]],[[6053,26929],[1,-3],[1,2],[1,-5],[1,-12],[2,-11],[1,-2],[0,-9],[0,-14],[0,-8],[-1,-8],[-2,1],[-1,-2],[-1,1],[-1,7],[-1,5],[-1,-2],[-1,7],[0,17],[-1,21],[1,11],[2,4]],[[6208,27665],[1,-26],[1,7],[1,6],[1,-15],[2,-13],[0,-20],[-1,11],[-1,8],[-2,8],[0,-15],[0,-20],[-2,22],[-1,0],[-1,6],[0,11],[-1,13],[0,23],[2,21],[0,-16],[1,-11]],[[6201,27927],[-1,-22],[-1,0],[0,9],[-1,7],[0,11],[1,6],[1,0],[1,-11]],[[5643,28077],[2,15],[4,22],[4,14],[2,1],[2,0],[0,-4],[-1,-10],[-1,-4],[-2,0],[-2,-2],[-2,-17],[-1,-12],[-3,-26],[-1,-11],[-1,-10]],[[5702,28352],[-1,-14],[-1,-7],[-1,15],[-2,-3],[-1,-11],[-1,-5],[-1,-9],[-1,-15],[0,-18],[-1,-9],[-1,11],[1,29],[3,24],[3,21],[2,7],[0,6],[1,3],[1,-11],[0,-14]],[[6247,28594],[-1,-7],[0,23],[1,14],[1,16],[1,1],[1,1],[1,3],[1,-5],[0,-12],[-2,-4],[-1,-14],[-1,-4],[-1,-12]],[[6314,28750],[1,-2],[1,1],[1,-4],[1,-9],[1,-12],[0,-20],[-1,-3],[-2,4],[0,12],[-1,9],[-1,-3],[-1,5],[-1,10],[0,13],[1,9],[0,-5],[1,-5]],[[6310,28900],[1,-21],[1,-4],[1,-17],[0,-16],[1,-5],[1,-8],[-1,-4],[-1,-8],[-2,15],[-1,-4],[-2,-8],[-1,9],[-1,6],[-1,11],[1,10],[0,16],[1,19],[1,8],[1,-1],[1,2]],[[6337,29049],[-1,-21],[-1,-2],[-2,7],[-2,-1],[0,19],[3,6],[2,13],[1,-21]],[[6330,29182],[-1,-9],[-5,22],[0,15],[2,2],[3,-6],[1,-24]],[[6322,29223],[-1,-15],[0,14],[0,12],[1,-11]],[[6089,34650],[1,-3],[1,0],[1,-3],[2,-9],[1,-3],[1,-9],[2,-19],[0,-10],[-1,0],[0,2],[-2,3],[-1,-1],[-2,6],[-1,2],[-1,1],[-1,5],[-1,28],[0,9],[1,1]],[[6170,38309],[-1,-5],[-1,9],[-1,16],[0,19],[1,4],[2,5],[3,2],[1,-8],[0,-19],[-2,-20],[-2,-3]],[[7163,48048],[0,-419],[12,-4],[0,-937],[0,-9],[0,-9],[0,-552],[0,-231],[-37,-3],[-1,-1733],[-35,-4],[-1,-202],[0,-167],[0,-15],[0,-218],[0,-4],[0,-22],[1,-151],[0,-96],[0,-8],[0,-11],[0,-37],[0,-565],[0,-173],[-35,1],[0,-256],[-1,-97],[1,-14],[-1,-71],[-1,0],[-36,-3],[-11,0],[1,-154],[0,-18],[-1,-37],[1,-27],[0,-183],[0,-76],[0,-377],[-35,-3],[-3,0],[-9,0],[0,-39],[-1,-53],[1,-345],[-48,-8],[-33,-5],[1,-863],[-81,-7],[-1,0],[-12,-1],[0,-77],[0,-48],[1,-748],[6,-2],[4,-1],[4,-2],[0,-39],[0,-125],[0,-218],[0,-23],[0,-38],[0,-240],[0,-95],[0,-914],[15,1],[0,-401],[1,-35],[92,0]],[[6921,36837],[-1,-250],[1,-411],[1,-239],[0,-24],[-15,2],[1,-212],[-22,5],[0,-140],[-10,0],[0,-146],[-29,-3],[0,-137],[-44,-1],[0,-140],[-39,1],[0,-71],[-39,2],[1,-129],[-15,0],[1,-142],[-46,1],[0,-215],[-31,1],[0,-423],[15,3],[0,-50],[-1,-251],[-14,2],[0,-29],[0,-214],[0,-131],[0,-156],[0,-150],[1,-172],[-33,-24],[0,-220],[-25,-6],[0,-12],[-1,-117],[-43,-10],[1,-144],[0,-148],[-16,4],[0,-211],[-6,1],[1,-145],[-20,2],[-6,-1],[-3,0],[-8,-1],[0,-199],[9,3],[6,3],[0,-79],[7,0],[0,-68],[-10,1],[-2,1],[-2,0],[0,-74],[-2,1],[-5,2],[0,-59],[0,-14],[-8,4],[1,-80],[-8,1],[0,210],[-11,2],[-1,0],[-2,1],[-2,0],[-1,1],[0,-20],[0,-18],[0,-34],[-3,1],[-3,0],[-6,-1],[-3,0],[-2,0],[0,-37],[0,-36],[0,-68],[-8,-1],[-1,-82],[-8,-1],[0,-146],[-21,-9],[0,75],[-21,-6],[-14,2],[-10,1],[-1,-144],[-6,0],[-3,-1],[0,-74],[-5,2],[-10,2],[0,-223],[-14,4],[1,-197],[1,-161],[-14,9],[0,-77],[3,-1],[1,-73],[-14,3],[-8,2],[0,-152],[-1,-57],[-14,1],[-1,-143],[0,-50],[1,-81],[0,-14],[-6,1],[-3,0],[0,2],[-14,1],[0,-365],[60,-26],[19,-5],[4,3],[1,1],[27,17]],[[6350,29467],[-1,-12],[-3,-38],[-3,-20],[-2,-4],[-3,-15],[-2,1],[0,-4],[-1,-21],[1,-18],[-1,-18],[-1,1],[-1,2],[0,18],[-2,12],[-1,-10],[-1,1],[0,-21],[-1,-14],[-2,-7],[-2,3],[-2,-3],[-3,-8],[0,-13],[1,-16],[-1,-15],[-1,-14],[0,8],[-1,7],[-1,5],[-1,7],[-2,6],[-1,-15],[0,-25],[2,-5],[1,8],[0,-15],[0,-9],[1,-14],[1,0],[4,0],[2,-19],[2,-21],[1,-4],[-1,-8],[-1,-9],[1,-14],[0,-7],[0,-12],[-1,1],[-1,12],[-1,1],[-1,-15],[0,-10],[-2,2],[-1,-8],[-1,1],[0,22],[1,10],[-1,8],[-1,8],[-1,13],[0,26],[0,17],[0,14],[-1,6],[0,-18],[-1,-8],[-1,-22],[2,-25],[-1,-22],[1,-18],[0,-23],[-2,-36],[0,-20],[0,-16],[-1,-9],[-1,-1],[-1,-16],[-1,-15],[-1,-11],[-2,-20],[-2,-6],[-3,-9],[-4,-5],[-2,-4],[-1,0],[-1,4],[1,13],[-1,17],[-1,-7],[0,-17],[-1,-4],[-2,39],[-4,35],[-4,37],[-3,35],[-2,18],[-2,-9],[0,-8],[4,-53],[8,-57],[3,-33],[0,-22],[-2,10],[-2,11],[-1,-6],[-2,9],[-1,4],[0,9],[-1,18],[-3,35],[-1,3],[0,-11],[0,-16],[0,-11],[3,-29],[-1,-25],[3,-17],[5,-16],[1,-15],[0,-23],[2,-2],[2,-10],[0,-26],[2,-7],[1,-18],[1,-19],[0,-18],[2,-23],[0,-21],[-2,-13],[0,-10],[1,-17],[1,-18],[1,-11],[-1,-9],[-2,-6],[-1,11],[-2,-3],[-1,15],[-1,10],[-4,1],[-1,5],[-2,6],[-3,3],[-3,11],[-1,-4],[-2,-5],[-2,2],[-1,9],[-1,17],[0,12],[-3,9],[-1,8],[-1,-2],[-1,-5],[1,-6],[1,-21],[-1,-3],[-1,2],[-1,7],[-1,9],[-1,6],[-1,5],[1,20],[-1,25],[-1,18],[-2,33],[-1,11],[-1,23],[-1,14],[-2,12],[-1,4],[-1,14],[0,5],[-2,1],[-1,-3],[-1,-5],[-2,-9],[-2,-7],[-2,-13],[-1,-6],[0,9],[1,8],[0,15],[-1,21],[-1,4],[-1,-4],[-2,0],[-1,-9],[0,-22],[-1,-15],[-1,-20],[0,-16],[0,-16],[1,-4],[1,-8],[1,-13],[0,-14],[1,-11],[1,-8],[1,-10],[0,-16],[1,-8],[2,-2],[1,-31],[-1,-4],[-1,-23],[-3,-25],[0,-24],[-2,-16],[-3,-31],[-1,-34],[-1,-22],[0,-64],[1,-31],[-1,-16],[0,-19],[-1,-10],[0,-15],[-1,-29],[1,-24],[-2,-20],[1,-15],[-1,-9],[-1,-20],[-1,-2],[-1,9],[-1,-4],[-1,-5],[0,-20],[-1,-11],[-1,-7],[-2,7],[0,11],[-2,0],[-1,19],[-1,71],[0,27],[-1,20],[-4,36],[-3,33],[-1,26],[-2,25],[0,24],[1,16],[-1,18],[-2,5],[-4,-2],[-3,-10],[-2,-20],[-2,-11],[1,20],[2,11],[-2,10],[-2,16],[-1,12],[-1,12],[-1,25],[-1,16],[-1,-4],[-2,-26],[0,-29],[1,-18],[3,-7],[1,-12],[2,-37],[1,-27],[-1,-21],[0,-25],[0,-20],[-1,-26],[-1,-28],[1,-11],[1,-15],[1,-20],[-3,-13],[-1,-10],[0,-13],[-1,8],[-1,3],[-3,6],[-4,-1],[-2,-5],[-3,-16],[-2,-18],[-3,-28],[-3,-34],[-1,-19],[-1,-2],[-1,-4],[-2,-19],[-1,-11],[0,-12],[-1,-61],[-1,-14],[0,-19],[-2,-47],[-1,-27],[-2,-29],[0,-16],[0,-22],[0,-20],[-1,-18],[-1,-10],[-1,-7],[-1,1],[-1,15],[-1,21],[0,27],[-1,9],[-3,3],[-3,-2],[-3,-2],[1,9],[2,12],[-1,27],[-2,16],[-2,6],[-3,1],[-2,5],[-1,12],[-1,6],[-1,15],[-1,5],[-1,2],[-1,6],[-2,-7],[0,-6],[0,-5],[-1,-15],[0,-16],[0,-25],[-1,-21],[1,-16],[1,-10],[3,-10],[2,1],[1,-5],[0,9],[0,17],[1,-15],[0,-18],[-1,-26],[1,-19],[1,-22],[2,-7],[-1,-12],[4,-22],[0,-22],[-1,-10],[-2,-5],[0,-13],[1,-22],[1,-14],[0,-7],[-1,-6],[0,-13],[-1,-6],[-1,-11],[-2,-34],[-2,-11],[-1,9],[-1,1],[-1,-16],[0,-9],[-2,-6],[-2,3],[-1,-2],[-2,-23],[0,15],[-1,12],[-1,6],[-1,14],[-2,3],[-2,0],[-1,38],[-2,12],[-2,4],[0,15],[-1,15],[-2,9],[-3,-1],[-1,11],[-1,10],[-3,16],[-2,20],[0,15],[0,17],[-1,23],[-1,14],[-2,11],[-1,9],[-2,21],[-1,11],[-1,16],[-2,19],[0,11],[-3,12],[-2,15],[-1,23],[-2,17],[-1,5],[-2,6],[-1,26],[-1,11],[-2,9],[-3,5],[-3,-1],[-3,-7],[-2,-7],[-3,-14],[-3,-24],[-3,-27],[-2,-27],[-1,-27],[-1,-20],[0,-42],[3,-76],[1,-26],[1,-12],[2,-3],[0,4],[2,6],[1,2],[2,-10],[2,1],[1,-10],[0,-20],[0,-41],[0,-17],[1,-17],[1,-12],[1,-9],[1,-8],[1,-20],[-1,-39],[-1,7],[-2,21],[-1,7],[-2,-2],[-2,-8],[-3,-21],[-3,-28],[-2,-13],[-1,-3],[-1,6],[0,5],[-1,15],[-1,9],[-2,10],[-2,-3],[-1,-9],[-1,-5],[0,16],[-1,0],[-1,-3],[-1,-1],[-1,-4],[-2,-4],[-1,-12],[-2,-25],[-2,-30],[-2,-44],[-2,-43],[-1,-30],[0,-31],[-1,-31],[0,-15],[-1,-5],[-1,18],[1,16],[-1,17],[-2,12],[-1,14],[-1,12],[-1,3],[-1,5],[-1,-5],[-1,-5],[-2,-6],[0,-19],[1,-16],[2,-6],[1,-27],[0,-14],[2,-35],[2,-28],[1,-17],[1,7],[0,17],[0,9],[0,28],[4,-112],[1,-15],[1,-13],[1,2],[1,9],[3,-5],[1,-7],[1,-21],[3,-19],[1,-1],[1,2],[4,15],[2,2],[1,-40],[1,-33],[2,-22],[2,-16],[1,-14],[0,-15],[0,-18],[0,-16],[-1,-15],[-1,-21],[0,-13],[-2,-12],[-1,-2],[-1,2],[-1,-9],[-3,-13],[-2,-10],[-3,-2],[-6,-5],[-1,-7],[-1,0],[0,6],[-1,11],[-2,8],[-3,-2],[-1,3],[-4,11],[-4,4],[-4,-5],[-2,-8],[-1,1],[-2,-13],[0,-16],[-1,-4],[-2,-11],[-1,9],[-1,2],[-3,2],[-3,-5],[0,5],[-1,-9],[-1,0],[-1,2],[-1,-14],[-1,-1],[1,12],[0,17],[-1,16],[-1,13],[-3,11],[-2,9],[-1,19],[-1,21],[-1,24],[-1,13],[0,17],[0,23],[-1,22],[-1,15],[-1,16],[-1,16],[-1,13],[-1,31],[0,23],[-2,22],[-1,8],[1,-19],[-3,6],[-2,-1],[-4,-9],[-4,-12],[-2,-7],[-2,-6],[-1,-11],[-1,-9],[-3,-16],[-2,-22],[-1,-19],[0,-13],[0,-18],[-1,-20],[-1,-13],[-1,6],[-4,-3],[-1,-6],[-1,5],[0,14],[-2,6],[-2,-4],[-3,-10],[-5,-6],[-6,-35],[-3,-26],[-3,-44],[-1,-46],[-2,-21],[-2,-14],[-3,-15],[-1,-26],[-3,6],[-2,23],[-1,3],[-1,4],[-1,0],[-1,-10],[-1,-5],[0,4],[-2,-1],[-3,-22],[-2,-33],[-1,-15],[-2,-11],[-1,-12],[-1,-17],[0,-19],[-1,2],[-2,-1],[-1,-8],[-2,-5],[-1,-7],[-1,-10],[-2,-15],[-2,-14],[-1,-16],[-1,-13],[-1,-13],[-1,-11],[-1,-7],[-1,-11],[1,-19],[0,-13],[-1,-12],[-1,-14],[0,-22],[0,-15],[1,0],[0,-10],[2,-4],[1,4],[2,6],[1,6],[2,8],[3,12],[2,11],[2,10],[2,4],[2,-1],[1,8],[1,8],[2,-2],[2,6],[1,11],[2,11],[3,3],[1,7],[1,5],[1,5],[1,1],[2,-10],[2,-1],[3,18],[2,20],[4,9],[8,44],[4,14],[2,-3],[2,-14],[2,-15],[3,-12],[4,-15],[2,2],[1,-6],[2,0],[1,17],[1,-2],[1,-13],[1,-12],[1,-3],[1,3],[1,-6],[-1,-15],[1,-15],[1,-9],[-1,-8],[-1,-7],[-1,-5],[-1,-17],[0,-28],[0,-22],[1,-17],[1,-38],[1,-7],[2,-15],[0,-10],[-1,-2],[-1,8],[-2,-5],[1,-39],[1,-7],[0,-16],[-1,3],[-1,-18],[-1,-4],[-2,-2],[-4,-10],[0,-51],[-1,-47],[-3,-14],[-5,3],[-3,20],[-3,29],[-4,15],[-5,0],[-4,6],[-2,17],[-1,18],[-2,14],[-1,18],[-2,0],[-2,-18],[-3,8],[-1,-2],[0,3],[-1,11],[-1,10],[-1,6],[-2,14],[0,15],[-1,5],[-2,2],[-1,-6],[-1,2],[-2,-2],[-1,-7],[-1,10],[-1,10],[-1,2],[-1,-4],[-2,-11],[-2,-2],[-1,4],[0,10],[-1,2],[-2,1],[-2,7],[-1,18],[-1,11],[-2,-13],[-1,-1],[0,1],[-2,12],[-1,9],[-1,3],[-1,-3],[-1,-9],[-1,-13],[-1,-14],[-1,-17],[0,-14],[0,-17],[0,-9],[1,-10],[1,-10],[1,-8],[2,-10],[2,1],[-1,12],[-1,11],[1,3],[1,-2],[1,-9],[0,-9],[1,-8],[0,-6],[2,-8],[1,-16],[-1,-19],[0,-28],[-1,-19],[-1,-19],[1,-15],[0,-17],[-2,-19],[-1,-8],[-2,1],[-1,1],[0,3],[-1,7],[-2,8],[-2,7],[-1,5],[-2,-11],[-2,-16],[0,-20],[-2,0],[-1,5],[-2,15],[-2,6],[-4,-2],[-2,9],[-3,-6],[-3,-12],[0,8],[-1,17],[-2,19],[-4,22],[-1,5],[-2,13],[-2,15],[-3,6],[-4,0],[-2,3],[-3,6],[-1,-11],[-1,-8],[-2,-22],[-2,-20],[-2,-28],[-3,-26],[-1,-9],[-2,-2],[-2,-1],[-1,-4],[-1,-2],[-1,-2],[-1,-9],[-1,-15],[-1,-14],[-1,-14],[-1,-15],[-1,-17],[-1,-18],[-1,-22],[-1,-37],[-1,-15],[-2,-16],[-1,-27],[-1,-13],[-2,-12],[-1,-18],[0,-12],[-1,-13],[-1,-8],[-1,-5],[-1,-5],[-2,-23],[-1,-16],[-1,-14],[-1,1],[-1,-18],[0,1],[-1,-7],[-1,-21],[0,-17],[0,-18],[0,-18],[0,-10],[1,-15],[0,-17],[1,-26],[0,-18],[1,-16],[0,-12],[0,1],[-2,13],[-1,16],[0,13],[-1,14],[-1,4],[-1,-6],[-1,-15],[-2,-9],[-1,-9],[-2,-21],[-2,-18],[-3,-25],[-2,-11],[-2,-9],[-3,-9],[-1,-9],[-1,-14],[0,-17],[-1,-11],[-1,-3],[0,4],[-2,-8],[-1,-21],[0,-19],[-1,-14],[0,-19],[-2,-11],[0,-17],[-1,-14],[0,-12],[-1,-4],[-1,-3],[-1,-7],[-2,-7],[-1,-4],[0,-9],[-1,-10],[-1,-9],[-1,-6],[-1,-1],[-1,-11],[-2,-8],[-1,-11],[-2,-2],[0,-18],[-3,-5],[-1,-1],[-1,-3],[1,-8],[1,-6],[-2,-5],[-1,-14],[1,-7],[2,-1],[1,10],[0,4],[1,-5],[1,14],[0,13],[1,10],[1,6],[1,-2],[1,-5],[1,11],[0,7],[1,5],[2,7],[1,9],[1,4],[1,0],[1,-1],[0,-6],[0,-7],[-1,-18],[-1,-5],[-1,-10],[1,-8],[1,-5],[2,1],[1,7],[2,-1],[-1,-10],[0,-3],[0,-11],[2,-9],[2,-4],[1,3],[1,6],[1,3],[1,6],[2,0],[1,-6],[1,-7],[1,-6],[1,-5],[1,-12],[1,-6],[1,-2],[2,0],[3,-2],[2,-2],[1,4],[1,14],[-1,10],[0,18],[-1,10],[-2,5],[1,18],[-1,-1],[-1,-7],[-2,6],[0,15],[-1,15],[0,13],[-1,8],[-1,1],[0,8],[1,15],[0,23],[0,15],[1,19],[2,11],[1,12],[0,11],[0,7],[1,4],[0,2],[1,15],[0,18],[0,6],[1,3],[1,2],[0,2],[1,1],[2,7],[0,9],[1,8],[1,11],[0,16],[1,15],[1,11],[1,5],[1,4],[1,8],[1,8],[1,4],[2,7],[1,10],[1,8],[2,14],[5,6],[3,-1],[1,2],[1,-5],[0,-20],[-1,-24],[0,-11],[1,-11],[2,-9],[1,-13],[-1,-3],[-1,6],[-1,3],[0,-11],[-1,-21],[-1,-26],[-1,-16],[0,-23],[-1,-19],[-1,-10],[0,-13],[2,-2],[1,3],[0,7],[1,12],[1,16],[1,23],[1,13],[0,7],[1,8],[0,14],[1,22],[0,19],[0,13],[0,9],[1,4],[0,-11],[2,-5],[1,2],[1,-2],[0,-15],[0,-12],[0,-16],[-1,-10],[0,-10],[-2,-21],[0,-22],[0,-14],[0,-17],[1,-8],[1,-10],[1,-9],[0,-1],[1,2],[1,0],[1,-1],[1,7],[1,15],[1,14],[1,9],[-1,14],[0,11],[-1,3],[1,12],[4,17],[0,-5],[1,6],[1,11],[1,6],[2,9],[1,5],[0,7],[3,10],[2,-4],[1,-10],[1,-20],[0,-15],[2,-7],[2,7],[2,4],[1,-3],[-1,-13],[0,-20],[0,3],[-2,-9],[0,-9],[-1,-14],[-1,-2],[-1,-10],[-1,-6],[-1,-7],[-1,-21],[0,-12],[-1,-14],[-1,-15],[-1,-12],[-1,-7],[0,-10],[-1,-12],[-1,-7],[1,-12],[1,-7],[1,8],[2,17],[2,24],[1,22],[1,22],[1,15],[2,11],[0,15],[0,4],[2,7],[1,7],[1,7],[0,13],[-1,17],[2,-15],[0,-21],[1,-5],[2,11],[2,6],[2,3],[2,-7],[1,-9],[0,-27],[2,-16],[2,-4],[2,3],[2,3],[3,-4],[1,-4],[1,-3],[1,-14],[0,-11],[1,-10],[-1,-3],[-2,-7],[-2,-23],[0,-16],[-1,-11],[-1,-24],[-1,-4],[-2,-10],[-1,-17],[-2,-1],[-1,-3],[-2,-18],[-1,-20],[-1,-8],[-4,-13],[-1,-6],[-3,-6],[-2,-27],[-1,-6],[-2,-14],[-3,-9],[-2,0],[-2,-9],[-2,-8],[-3,-1],[-3,17],[-2,17],[-3,0],[-3,9],[-2,3],[-2,4],[-1,-10],[1,-17],[2,-12],[3,-16],[2,-12],[-1,-13],[-2,-31],[-1,-29],[0,-14],[-1,-18],[-1,-17],[-1,-10],[1,-2],[1,-1],[1,4],[2,11],[2,18],[0,13],[1,12],[1,18],[2,9],[4,2],[2,-10],[2,-11],[1,-8],[2,-1],[2,-1],[3,2],[1,-2],[2,-4],[0,-15],[-2,-35],[-2,-47],[-3,-33],[-2,-16],[-2,-5],[-1,-5],[1,-18],[3,2],[2,4],[2,0],[1,7],[2,6],[2,16],[4,29],[2,15],[2,7],[2,8],[3,14],[2,18],[3,21],[3,31],[4,34],[4,36],[2,25],[1,17],[1,3],[2,-1],[3,-3],[4,18],[3,4],[3,10],[1,0],[0,-6],[-1,-19],[-3,-15],[-2,-12],[-2,-12],[-3,-8],[-2,-29],[0,-16],[1,-5],[2,-4],[0,-2],[0,-12],[0,-6],[-2,-2],[-2,6],[0,6],[-1,-1],[-3,-29],[-1,-35],[0,-21],[0,-21],[-1,-6],[-3,-7],[-2,3],[-3,7],[-3,-16],[-1,-17],[-2,-3],[-1,0],[-3,-5],[-2,-13],[0,-16],[1,-7],[2,-9],[1,-5],[-1,-11],[-1,-11],[-2,-7],[-1,-12],[-1,6],[-2,10],[-2,15],[-4,-11],[-3,-15],[-3,-15],[-2,-36],[-3,9],[-1,0],[-2,-14],[-1,-22],[2,-18],[1,-11],[0,-21],[1,-21],[0,-15],[-1,-11],[-2,-7],[0,-16],[-1,-10],[-1,6],[-2,14],[-1,7],[-1,7],[-1,7],[-1,1],[-1,11],[0,27],[0,18],[-1,11],[0,23],[1,10],[1,35],[0,26],[0,49],[0,39],[-2,14],[1,19],[-2,-10],[-1,-21],[-1,-23],[0,-18],[-1,-10],[-2,-23],[0,-22],[1,-5],[0,9],[1,15],[1,5],[-1,-32],[-1,-19],[-1,-19],[-1,-28],[0,-54],[0,-21],[0,-19],[0,-15],[-1,12],[-2,16],[-2,15],[-2,12],[-1,10],[-1,0],[-1,-10],[-2,-14],[-1,-6],[0,-10],[1,-9],[2,-3],[1,5],[0,20],[1,-8],[1,-10],[1,-9],[0,-12],[1,-14],[1,-10],[0,-14],[1,-9],[0,-7],[0,-9],[1,-12],[2,-24],[1,-20],[1,-28],[1,-15],[0,-14],[1,-7],[0,-16],[-1,-37],[-1,-49],[1,-22],[-1,-13],[-1,0],[-2,13],[-2,12],[-1,5],[-1,4],[-1,20],[1,14],[1,17],[0,11],[-1,5],[-3,9],[0,17],[0,16],[-2,14],[2,18],[1,15],[-1,9],[-2,21],[0,19],[0,20],[-1,10],[-1,8],[-1,-7],[-1,-20],[1,-12],[-1,-13],[-2,-9],[-2,3],[-1,2],[-1,6],[-1,15],[-1,12],[-1,2],[0,-19],[0,-13],[0,-15],[0,-12],[-1,-10],[-2,-16],[0,-19],[2,-2],[1,8],[2,0],[1,-7],[1,-24],[2,-25],[1,-19],[1,-33],[0,-20],[-1,-5],[-2,-12],[-3,-30],[-1,-15],[-2,-26],[0,-17],[1,-1],[1,4],[1,0],[1,-10],[1,-26],[2,-18],[2,-19],[1,-16],[1,-15],[1,0],[1,3],[1,8],[1,17],[-1,19],[-1,19],[-3,22],[-1,14],[0,23],[2,12],[1,1],[1,-1],[1,-6],[1,-18],[1,-9],[2,0],[1,-11],[4,-7],[0,-5],[0,-7],[-2,-17],[-1,-10],[2,-17],[0,-16],[-1,-28],[-1,-31],[1,-11],[2,-12],[-1,-18],[0,-13],[0,-12],[-1,-7],[-1,-8],[-1,-2],[-1,-8],[0,-19],[-1,-8],[-2,-5],[-1,7],[-1,13],[-1,12],[0,4],[1,11],[-1,9],[-1,16],[0,14],[0,17],[-2,18],[-1,18],[-1,25],[-1,1],[-2,8],[0,25],[-3,26],[-2,4],[-3,-5],[0,-5],[0,-17],[0,-23],[1,-26],[0,-23],[0,-6],[-1,-14],[1,-15],[1,-9],[1,-17],[0,-20],[0,-16],[0,-9],[0,-19],[0,-25],[-1,-21],[0,-17],[-2,-5],[0,-5],[-1,0],[-1,9],[0,13],[-1,28],[-2,24],[-1,19],[0,8],[-1,14],[1,15],[-2,0],[-1,2],[0,15],[-1,12],[0,21],[0,9],[-3,20],[-1,31],[0,39],[1,32],[1,8],[1,-11],[1,-8],[1,-8],[2,-1],[0,4],[1,13],[1,11],[2,12],[1,13],[2,13],[1,13],[1,20],[2,26],[1,26],[0,12],[-1,-1],[-2,-12],[-1,-12],[-3,-21],[0,-12],[-2,-11],[-3,-16],[-3,-4],[-2,1],[-2,-15],[-4,-23],[-2,-2],[-1,-14],[-1,-20],[0,-1],[-1,10],[-1,14],[-1,10],[-1,18],[1,31],[2,28],[0,9],[0,9],[-1,15],[1,10],[2,15],[2,10],[3,2],[1,8],[2,13],[1,3],[1,4],[-1,10],[-1,8],[-2,-2],[-2,-1],[-3,-6],[-3,0],[-1,2],[-1,3],[0,18],[0,37],[1,19],[2,16],[1,12],[-1,18],[-2,9],[-1,4],[1,12],[2,15],[1,10],[2,5],[0,13],[0,10],[1,-1],[1,-6],[2,-10],[2,-16],[2,-24],[1,16],[-1,14],[0,13],[-1,13],[0,11],[0,16],[1,16],[0,8],[-2,3],[-1,4],[1,12],[1,12],[0,16],[1,21],[1,12],[1,6],[0,24],[1,18],[2,7],[2,8],[4,-3],[2,-10],[0,-12],[0,-13],[2,-8],[2,9],[-1,4],[-1,5],[1,12],[0,23],[0,13],[-1,14],[-1,17],[-1,12],[-3,10],[-2,7],[2,7],[2,4],[2,8],[1,9],[-2,5],[-2,2],[-2,8],[1,3],[3,-1],[2,3],[3,-6],[2,-14],[1,-6],[3,7],[1,0],[1,10],[0,18],[-2,12],[1,12],[-2,2],[-2,5],[-3,-11],[-1,2],[-1,0],[-3,9],[-3,4],[-3,7],[-3,0],[-4,-11],[-3,-24],[-1,-2],[0,-2],[-3,0],[-1,2],[-1,7],[-1,4],[-2,5],[0,-1],[-2,10],[-1,9],[-2,15],[-2,-6],[-1,9],[-1,6],[-1,-2],[0,-12],[1,-11],[1,-14],[1,-17],[1,-9],[2,-1],[1,-15],[3,-15],[1,-25],[2,-8],[1,4],[2,2],[2,-3],[1,2],[1,-2],[1,-5],[-1,-11],[-1,-5],[1,-6],[-2,-19],[-1,-14],[-2,-15],[-1,-14],[-1,-10],[-1,-6],[0,-14],[0,-24],[-1,-34],[-2,-18],[-2,-26],[0,-10],[-2,-19],[-1,-12],[-1,5],[-1,-13],[-2,-7],[-1,-1],[-1,-24],[-3,-9],[-1,11],[-1,3],[-1,-2],[0,-14],[-2,8],[-1,20],[1,4],[1,4],[1,8],[1,15],[1,12],[0,14],[2,35],[-1,17],[-2,11],[1,14],[-1,12],[-3,-5],[-2,3],[-1,12],[-1,6],[-2,5],[-3,7],[-5,4],[-2,2],[-1,-1],[0,-10],[1,-8],[2,0],[1,4],[0,-12],[2,-8],[2,-7],[1,-9],[2,-5],[1,-10],[1,-5],[2,-18],[-1,-12],[0,-19],[1,-27],[-1,-7],[-2,-14],[-1,-22],[-1,-26],[-1,-6],[-2,-4],[0,-14],[1,-12],[2,10],[1,3],[1,-2],[1,-9],[0,-17],[3,-10],[1,-6],[0,-17],[2,-19],[1,-11],[0,-6],[-3,-18],[-1,-22],[-1,-10],[1,-10],[2,-8],[0,-7],[0,-21],[-1,-42],[-1,-16],[0,-11],[-3,-6],[-2,-2],[0,-16],[-1,-10],[-3,-3],[-3,9],[-2,15],[-1,6],[-1,-9],[-1,-10],[-1,-21],[1,-14],[0,-16],[1,-10],[1,-12],[1,-5],[2,-1],[2,5],[2,1],[1,-9],[2,-8],[1,18],[1,6],[3,-2],[1,-5],[1,-7],[1,-4],[0,-10],[-1,-13],[-2,-14],[-1,-22],[-2,-21],[-1,-19],[-1,-21],[0,-14],[2,-9],[2,3],[2,12],[1,23],[1,33],[2,8],[0,9],[-1,12],[-1,0],[0,-8],[-1,-4],[-1,8],[2,11],[1,2],[1,-4],[1,-12],[0,-16],[1,-17],[0,-27],[0,-27],[0,-11],[0,-14],[-1,-13],[-1,-10],[0,-14],[1,-12],[1,-20],[-1,-11],[-2,-1],[-1,8],[-1,-6],[-1,-4],[-1,-1],[0,11],[-1,8],[-3,-3],[-3,-9],[-2,-17],[1,-21],[1,-7],[3,-6],[2,-13],[1,-19],[1,-6],[2,-18],[1,-21],[-2,-8],[-1,-13],[-3,-14],[-1,-2],[-1,3],[-1,15],[-1,16],[-1,8],[-1,18],[-1,22],[-2,3],[-1,-9],[-1,-11],[-1,-26],[-1,-14],[-2,-1],[-2,-13],[-1,0],[0,6],[-1,12],[-2,12],[-1,22],[1,18],[1,24],[1,8],[0,6],[4,4],[3,7],[2,4],[2,0],[0,-16],[0,3],[1,4],[0,18],[-1,15],[-2,3],[-1,-13],[-1,0],[-1,6],[-1,7],[-1,2],[-1,6],[-1,4],[0,19],[0,12],[0,19],[1,18],[0,1],[1,15],[3,2],[1,4],[-2,27],[-2,14],[-1,15],[-2,4],[0,-13],[-1,-15],[-2,-4],[-1,9],[-1,11],[-2,28],[-2,13],[0,-14],[0,-24],[0,-33],[0,-19],[0,-5],[-1,-15],[-1,-34],[-1,-12],[-1,-10],[-2,-15],[-1,-1],[-3,13],[-1,4],[-1,17],[-1,38],[0,15],[-1,13],[-1,23],[-1,18],[-1,13],[-2,0],[-1,-1],[-1,-13],[-1,-14],[-1,-15],[-1,-4],[-1,-11],[0,-24],[0,-30],[-7,-114],[-4,8],[-3,26],[-2,9],[-1,-13],[1,-20],[2,-16],[4,-25],[0,-21],[-1,-57],[-1,-20],[-1,-22],[-1,-17],[-1,-14],[0,-9],[1,-23],[0,-13],[0,-19],[0,-21],[-1,-9],[-1,-5],[-1,18],[0,15],[1,16],[1,15],[-1,10],[-2,2],[-1,1],[-3,6],[-3,16],[-5,1],[-4,-7],[-3,-18],[-2,-12],[0,-9],[-3,-20],[0,-30],[2,-33],[0,-19],[0,-24],[0,-20],[-1,-15],[0,-10],[-1,4],[-5,9],[-2,10],[-1,18],[-2,29],[-1,21],[-3,23],[0,18],[-2,15],[0,7],[-1,17],[-2,4],[0,-8],[1,-10],[-2,2],[-2,1],[-3,-10],[-2,-9],[-1,-16],[-3,-13],[-2,-9],[-1,-5],[-1,-5],[-2,2],[-1,2],[0,2],[-1,1],[-1,-1],[0,6],[-1,-6],[-2,-7],[-1,-6],[0,-9],[-1,-9],[0,-23],[0,-16],[0,-15],[0,-17],[0,-7],[-1,-2],[-1,9],[0,13],[-1,12],[-2,10],[-1,5],[-1,4],[-1,2],[-2,2],[-1,3],[-2,2],[-1,-1],[-4,-8],[-3,-10],[-4,-19],[-2,-12],[-2,-9],[-1,-13],[-1,-20],[-1,-17],[0,-15],[1,-20],[-1,-23],[-1,-5],[-2,-8],[-1,-8],[-1,-16],[-2,-9],[-2,11],[0,20],[0,23],[1,14],[-1,10],[-2,12],[-2,11],[-4,-2],[-2,-15],[-1,-14],[-2,-4],[-1,6],[-1,-4],[-2,-20],[-1,-22],[0,-13],[-1,-5],[-2,-13],[-1,-22],[0,-25],[0,-30],[-1,-25],[-1,-21],[0,-53],[-1,-26],[0,-27],[1,-27],[0,-15],[1,-8],[1,-8],[-1,-9],[-1,-17],[-1,-20],[-2,-5],[-2,2],[-1,5],[0,5],[-2,10],[-1,14],[-1,35],[0,26],[-2,17],[-1,4],[-1,-1],[0,16],[-2,41],[-2,26],[0,27],[-1,23],[1,22],[2,47],[0,33],[1,35],[-2,17],[-1,21],[2,31],[1,31],[1,30],[1,19],[-1,12],[-1,-4],[0,2],[-2,5],[-1,1],[-1,2],[-2,6],[0,1],[-1,-2],[-1,-2],[-1,-4],[-3,-15],[-2,-14],[-2,-12],[-2,-10],[-1,-11],[-1,-18],[-1,-19],[0,-14],[-1,-14],[-1,-14],[0,-3],[0,12],[0,13],[-1,-4],[-1,-12],[0,-14],[1,-14],[0,-12],[2,-13],[0,-13],[0,-12],[-1,-10],[1,-15],[1,-11],[2,-13],[1,-15],[1,-7],[1,7],[0,20],[1,0],[1,-14],[0,-31],[0,-21],[0,-26],[1,-31],[1,-27],[0,-25],[1,-19],[-1,-40],[0,-32],[1,-26],[0,-24],[0,-34],[1,-25],[0,-20],[0,-14],[0,-11],[0,-19],[-1,-14],[-1,-27],[0,-18],[-1,-12],[-1,-10],[-2,-18],[-1,-18],[0,-13],[-2,-9],[-2,-16],[-3,-51],[-1,-29],[-1,-22],[0,-12],[1,-10],[2,-7],[1,-16],[1,-22],[0,-22],[-1,-36],[0,-15],[0,-14],[0,-27],[0,-13],[1,-6],[1,-8],[0,-10],[-1,-14],[-1,-22],[0,-21],[-2,-29],[-1,-21],[-2,-12],[-1,-6],[-1,-3]],[[5643,27695],[1,-3],[2,-1],[1,-6],[3,-19],[4,-20],[5,-7],[3,-12],[3,-4],[1,-7],[1,-5],[1,11],[1,-6],[1,0],[1,-10],[0,-13],[2,-6],[3,5],[3,8],[1,13],[1,9],[2,12],[2,-3],[1,2],[1,-1],[0,-19],[0,-20],[1,-18],[1,-3],[0,13],[0,35],[0,24],[1,8],[2,-1],[3,1],[3,-6],[2,-6],[0,-11],[0,-15],[1,-20],[4,-44],[1,-20],[2,-9],[-1,23],[-2,27],[2,-6],[1,-11],[2,-9],[1,-8],[2,-14],[2,-21],[3,-17],[2,-6],[1,-1],[1,0],[0,18],[-1,13],[-1,15],[-2,20],[-1,27],[-2,18],[-1,27],[-1,42],[-1,29],[-2,20],[0,16],[0,8],[1,3],[1,-1],[1,13],[-1,21],[-1,18],[1,18],[-1,16],[0,11],[0,10],[1,5],[1,14],[-1,32],[0,25],[-2,14],[-1,5],[-1,18],[-1,12],[-1,14],[-1,2],[0,11],[0,24],[0,20],[-1,26],[-1,31],[0,18],[1,14],[1,10],[0,-6],[1,-10],[1,7],[-1,18],[-1,10],[0,12],[-1,7],[-1,4],[-1,0],[-1,-6],[0,-7],[-1,-4],[-2,10],[0,20],[2,21],[1,5],[0,14],[2,144],[0,6],[-3,58],[0,80],[0,16],[0,15],[0,10],[0,8],[1,13],[1,18],[0,12],[3,75],[9,168],[7,131],[11,117],[11,215],[26,369],[19,219],[17,197],[11,70],[6,57],[6,40],[5,30],[1,4],[1,-3],[4,20],[7,44],[4,21],[3,9],[3,15],[3,13],[2,6],[0,-3],[0,-21],[-2,-15],[-1,-15],[0,-27],[-1,-19],[0,-16],[1,0],[-1,-23],[-2,-10],[-2,-12],[-1,-5],[1,-4],[2,5],[1,1],[-1,-20],[-1,-7],[0,-9],[1,4],[1,18],[1,17],[1,12],[2,14],[1,22],[-1,18],[0,22],[1,23],[1,15],[1,11],[1,7],[1,-5],[0,-14],[2,19],[1,9],[1,7],[1,7],[2,4],[1,-2],[0,-13],[1,0],[1,-3],[1,-22],[0,-24],[0,-17],[2,-15],[1,0],[1,1],[1,0],[5,0],[1,15],[-4,10],[-3,25],[-1,35],[-1,21],[-1,9],[-1,4],[-2,1],[-3,-12],[-2,-2],[-1,13],[0,18],[1,29],[3,24],[15,137],[5,47],[1,11],[2,45],[4,60],[5,70],[5,112],[1,9],[1,13],[4,18],[7,38],[8,48],[2,26],[4,46],[2,12],[1,11],[4,48],[1,11],[1,7],[3,28],[7,55],[7,55],[8,40],[0,-23],[-4,-39],[-3,-26],[0,-16],[-2,-25],[2,-2],[1,5],[5,56],[2,30],[2,15],[1,13],[2,4],[2,1],[3,-2],[-1,-13],[0,-18],[-2,-18],[0,-14],[1,-8],[1,-2],[1,-28],[0,-30],[0,-38],[1,-10],[2,-2],[2,-18],[1,-10],[1,-17],[2,-33],[-2,-11],[0,-20],[1,-12],[0,-14],[0,-18],[0,-11],[0,-9],[-1,-27],[-1,-35],[-1,-37],[0,-25],[0,-23],[0,-29],[0,-34],[-1,-20],[1,-19],[1,-9],[1,-9],[3,-17],[4,2],[2,-2],[3,-12],[2,-10],[4,0],[2,-2],[1,-12],[1,-4],[1,-3],[1,-21],[-1,-33],[-2,-25],[-2,-26],[-3,-24],[-3,-3],[-3,-8],[-1,-13],[-2,-12],[-2,-11],[-3,-9],[-3,-14],[-2,-11],[-1,-17],[-1,-10],[0,-21],[-1,-37],[0,-23],[1,-26],[0,-29],[0,-21],[-1,-9],[-1,-10],[0,-14],[1,11],[0,-14],[2,13],[0,7],[1,16],[0,43],[0,42],[0,25],[0,29],[1,25],[2,12],[1,9],[3,14],[4,9],[2,13],[5,12],[4,16],[4,49],[2,25],[1,30],[0,22],[-1,27],[-9,36],[-6,12],[-7,16],[-3,5],[0,12],[0,55],[0,30],[1,30],[2,39],[1,24],[1,29],[1,18],[2,12],[1,-3],[1,-6],[1,-10],[1,-10],[2,-21],[3,-19],[3,-26],[7,-37],[5,-2],[6,7],[4,10],[3,7],[0,-2],[1,-13],[-2,-31],[-2,-19],[-1,-14],[-2,-39],[-2,-31],[-1,-27],[0,-26],[5,-18],[3,19],[-5,5],[-1,16],[0,26],[3,50],[3,28],[3,7],[3,24],[1,40],[0,11],[2,12],[3,2],[4,-13],[3,-9],[4,-1],[3,6],[1,9],[1,30],[1,29],[0,17],[0,13],[-1,28],[0,22],[-1,20],[0,16],[-1,10],[0,11],[-1,7],[-1,17],[-1,22],[-2,14],[-1,17],[0,21],[1,6],[3,5],[2,3],[2,8],[2,13],[2,24],[1,27],[1,14],[2,4],[1,-13],[1,-24],[1,-22],[2,-5],[1,29],[-1,15],[-2,11],[-2,28],[-3,4],[-1,-5],[-2,-12],[0,-11],[-1,-16],[-1,-4],[-4,-5],[-5,-8],[-3,-8],[-2,-31],[0,-16],[0,-21],[0,-40],[2,-15],[2,-8],[2,-19],[1,-34],[2,-48],[2,-33],[0,-18],[1,-24],[-1,-10],[-1,-9],[-1,-5],[-4,-4],[-5,21],[-5,25],[-2,9],[-7,31],[-6,20],[-3,-4],[-1,-29],[-2,-39],[-2,-17],[-3,-19],[-1,-3],[-3,17],[-3,22],[-2,20],[0,14],[-1,24],[2,28],[1,40],[2,30],[0,41],[-1,15],[-1,51],[0,37],[0,40],[0,14],[-1,11],[0,12],[0,19],[-1,64],[-1,32],[-2,92],[-1,35],[1,29],[-1,25],[0,17],[-3,15],[-2,-1],[-1,12],[-1,10],[0,14],[0,17],[2,18],[0,15],[0,20],[-1,3],[-1,-8],[-1,-17],[0,-20],[-1,-24],[0,-17],[1,-15],[1,-30],[2,-11],[2,-3],[1,-14],[0,-12],[-2,-1],[-2,-4],[-1,-4],[-2,10],[-5,10],[-4,-12],[-5,-11],[-2,6],[-2,57],[-1,17],[0,17],[-1,16],[-1,18],[-1,17],[2,270],[0,86],[0,50],[2,55],[2,56],[5,142],[7,388],[2,159],[4,340],[0,45],[4,280],[0,4],[2,226],[1,54],[0,41],[1,28],[1,36],[1,28],[0,42],[1,40],[0,15],[1,16],[1,19],[0,5],[12,268],[0,7],[1,6],[0,25],[1,22],[0,-3],[1,-3],[0,-39],[-1,-59],[0,-35],[0,-21],[3,-11],[8,4],[2,0],[5,7],[9,8],[4,18],[2,16],[1,4],[0,15],[3,44],[2,71],[0,34],[2,20],[1,17],[1,12],[3,-8],[4,-17],[10,-16],[2,-10],[1,-37],[0,-13],[2,-5],[5,-6],[2,-11],[2,-2],[1,5],[2,6],[5,15],[3,13],[2,6],[5,3],[5,-1],[3,-13],[2,-26],[2,-32],[0,-21],[0,-16],[0,-20],[0,-13],[2,-8],[2,-4],[1,-17],[0,-11],[0,-16],[0,-14],[1,-15],[2,-7],[1,2],[1,-1],[0,8],[0,19],[-2,7],[-1,26],[-2,28],[-2,17],[0,4],[-2,5],[0,13],[1,20],[-1,42],[-1,28],[-2,18],[-2,4],[-3,14],[-1,6],[-5,3],[-1,6],[-3,10],[-2,6],[-2,2],[-2,-2],[-1,-1],[-1,-7],[0,-13],[-1,-5],[0,-10],[0,-3],[-2,2],[0,1],[-1,2],[-1,7],[-3,22],[-2,18],[-6,36],[-3,12],[-2,6],[-1,30],[0,44],[1,30],[0,11],[0,9],[0,9],[1,18],[1,12],[-1,2],[-2,-15],[-1,-7],[-1,-21],[-2,-14],[1,-30],[-1,-19],[0,-6],[-1,0],[0,-10],[-2,-4],[-4,0],[-3,3],[-2,2],[-6,-13],[-3,-27],[-2,-46],[0,-19],[0,-9],[-4,-11],[-3,15],[-3,45],[-3,34],[-3,51],[0,10],[-3,32],[-2,14],[-2,17],[-1,9],[-2,13],[-3,42],[-4,39],[-2,25],[0,16],[1,15],[1,15],[2,22],[-1,22],[-1,12],[1,16],[-2,-11],[0,-14],[1,-19],[-2,12],[-1,16],[-2,30],[0,63],[0,24],[0,20],[0,22],[2,54],[0,12],[0,35],[1,38],[1,44],[0,39],[1,50],[1,35],[1,27],[0,19],[2,32],[0,35],[2,48],[3,46],[2,50],[2,50],[0,46],[1,44],[2,45],[3,50],[3,44],[2,29],[1,-1],[-1,-15],[-1,-20],[2,6],[1,13],[2,13],[2,26],[6,46],[4,40],[1,-5],[0,-12],[1,4],[2,-2],[3,16],[4,31],[2,24],[2,22],[3,42],[5,67],[3,51],[3,59],[1,27],[1,26],[1,11],[2,26],[2,22]],[[6174,38036],[2,12],[2,34],[1,21],[1,9],[-1,25],[-3,29],[0,34],[1,95],[1,25],[1,39],[2,19],[1,8],[3,18],[2,10],[5,16],[5,16],[3,10],[1,20],[1,26],[1,37],[3,24],[1,8],[0,27],[5,0],[1,7],[-1,10],[-1,4],[-2,12],[0,20],[1,17],[1,12],[1,14],[1,12],[0,19],[1,17],[1,14],[0,19],[-1,14],[0,11],[0,11],[-1,12],[-1,6],[-1,9],[-1,13],[1,18],[0,16],[-1,30],[1,21],[0,24],[1,37],[1,15],[0,11],[0,13],[1,14],[0,14],[-1,15],[0,17],[1,21],[1,14],[1,8],[2,6],[3,10],[2,10],[3,31],[2,33],[3,62],[4,35],[2,24],[3,106],[1,9],[2,2],[0,-6],[2,-15],[0,-19],[3,-17],[2,-5],[1,-12],[2,-21],[4,-16],[2,-5],[2,6],[2,5],[2,4],[2,-1],[2,-2],[2,0],[2,7],[2,14],[1,34],[1,17],[-1,9],[1,8],[-1,20],[0,27],[-1,15],[-1,23],[0,17],[0,15],[1,10],[1,3],[1,1],[1,8],[2,6],[1,1],[1,8],[2,1],[2,2],[1,-2],[1,0],[2,2],[1,4],[0,7],[-1,2],[-2,-2],[-2,-1],[-1,7],[-1,12],[-2,-6],[-2,3],[-2,2],[-1,-5],[-3,-19],[-2,-7],[0,-13],[0,-17],[0,-61],[1,-33],[2,-37],[-1,-23],[0,-22],[-1,-12],[-2,3],[-3,-2],[-2,-4],[-3,3],[-2,3],[-3,1],[-1,-5],[-2,0],[-2,9],[-2,11],[-1,24],[-2,22],[-1,18],[-2,10],[-2,5],[-2,1],[-1,-4],[-1,-6],[-2,-6],[-1,-11],[0,-11],[-1,-14],[-1,-35],[-2,-40],[0,-16],[-1,-18],[-4,-35],[-1,-22],[-1,-29],[-1,-10],[-6,-25],[-3,-15],[-1,-14],[-1,-11],[-1,-6],[-1,-7],[-1,-26],[-1,-22],[-1,-22],[0,-29],[-2,-47],[0,-3],[0,-11],[0,-14],[-1,-16],[-1,-26],[0,-14],[3,-181],[0,-14],[-1,-15],[-1,-20],[-1,-11],[-2,-22],[-2,-20],[-1,-19],[-1,-7],[-1,-12],[0,-5],[-1,-23],[-3,7],[-3,-8],[-4,-21],[-5,-18],[-1,-20],[-1,-15],[-3,-6],[-6,-45],[-5,-43],[-1,-15],[-2,-20],[-2,-56],[-1,-40],[1,-23],[-1,-56],[0,-36],[-1,-13],[-2,-22],[-3,-53],[-2,-39],[-4,-23],[-4,-36],[-5,-41],[-7,-30],[-3,-12],[-2,6]],[[6460,48043],[2,0],[96,1],[217,1],[53,-1],[15,0],[22,0],[24,-4],[18,1],[101,3],[10,0],[116,3],[27,1],[1,0],[1,0]],[[6570,22537],[-1,-19],[-1,-33],[-1,-14],[-6,-46],[-4,33],[-4,27],[-2,33],[-6,6],[-2,0],[-3,-6],[-5,-27],[-7,20],[0,33],[1,7],[-1,26],[-1,7],[-2,6],[4,46],[0,20],[-2,27],[-5,19],[-3,33],[3,27],[8,33],[13,99],[4,52],[2,60],[1,72],[3,60],[4,30],[4,21],[3,11],[3,-4],[2,-8],[3,-34],[1,-21],[0,-41],[-2,-33],[-2,-73],[-2,-40],[0,-85],[4,-113],[2,-92],[-1,-39],[2,-33],[-1,-14],[-3,-33]],[[6262,23703],[-1,-1],[-1,10],[0,3],[0,2],[1,7],[1,-2],[0,-5],[0,-14]],[[6272,23957],[-1,-16],[-1,6],[0,14],[-1,14],[2,4],[1,-12],[0,-10]],[[6257,24032],[1,-15],[-1,-13],[0,-20],[1,-16],[1,-9],[2,-27],[0,-19],[-1,-3],[-2,10],[-1,-12],[1,-11],[2,-16],[2,-13],[-1,-17],[-1,-2],[-2,0],[1,-17],[0,-15],[1,-18],[1,-19],[0,-11],[-1,4],[-2,5],[-1,-8],[0,-20],[-1,-3],[-1,7],[-1,3],[-1,6],[0,16],[1,24],[0,10],[-2,10],[-1,3],[-1,8],[-2,7],[-2,-1],[-1,-8],[-1,1],[-1,14],[-1,12],[-1,20],[0,5],[-2,13],[1,13],[1,12],[1,-2],[1,-8],[1,-14],[3,-2],[1,7],[0,21],[0,14],[1,3],[1,2],[2,-3],[2,-6],[1,6],[0,16],[0,26],[-3,14],[-1,4],[0,19],[1,14],[1,-3],[2,30],[1,-17],[1,-11]],[[6269,24071],[1,-13],[-1,0],[0,7],[-1,-1],[-2,12],[-2,11],[-1,12],[1,19],[1,2],[0,-4],[1,-9],[2,-10],[0,-14],[1,-12]],[[6248,24091],[0,-13],[-1,0],[-1,-5],[-1,1],[-1,8],[1,13],[0,12],[1,16],[0,12],[1,-8],[2,-20],[-1,-16]],[[6265,24145],[-1,-13],[-4,14],[0,17],[-2,8],[0,18],[1,10],[3,-3],[1,-11],[1,-21],[1,-19]],[[6240,24666],[-1,-2],[0,3],[-1,5],[0,10],[1,4],[0,-4],[2,-4],[0,-8],[-1,-4]],[[6235,24834],[-1,-8],[-3,-12],[0,-11],[0,-21],[0,-43],[-2,-14],[0,-23],[0,-21],[0,-13],[2,-7],[1,-8],[1,-17],[1,-17],[1,-8],[1,-5],[0,-13],[0,-15],[0,-25],[0,-28],[0,-10],[1,-12],[-1,-9],[-1,-28],[-1,-8],[-1,-16],[-1,16],[-1,9],[-1,3],[-1,11],[-1,2],[-2,-5],[-1,14],[0,26],[-1,18],[1,11],[-1,34],[1,13],[1,2],[0,6],[0,11],[-1,40],[-1,17],[1,13],[0,14],[1,4],[1,10],[1,19],[0,17],[-1,11],[0,20],[0,8],[1,14],[1,20],[0,18],[1,-6],[2,-1],[1,10],[2,6],[1,-7],[-1,-6]],[[7040,26522],[1,-10],[1,-29],[1,-27],[-1,-14],[-1,-11],[-1,-11],[-1,-12],[0,-15],[-1,-27],[-2,-10],[-1,-8],[-2,-8],[-1,-8],[-1,-18],[-2,-5],[-1,1],[-1,-7],[-1,-9],[-1,-4],[-1,-2],[-1,-4],[-1,-6],[0,-12],[-1,-10],[0,-14],[-1,-9],[-2,-4],[-1,-1],[-1,1],[-1,-7],[-2,2],[-1,-4],[-2,-10],[-2,-6],[-1,7],[-1,14],[-1,6],[-1,1],[-2,-3],[-3,1],[-3,-11],[-1,-11],[-1,-25],[-2,-3],[-3,13],[-3,4],[-3,1],[-2,2],[-3,-7],[-1,1],[-3,1],[-1,10],[-2,8],[-1,3],[-1,1],[0,11],[1,15],[2,24],[2,16],[1,17],[-2,11],[2,0],[3,-1],[0,15],[2,21],[2,11],[1,16],[2,7],[1,22],[2,25],[1,-7],[0,-20],[1,-8],[2,-7],[0,-8],[-1,-12],[1,-15],[1,-6],[1,-13],[0,14],[0,11],[-1,4],[1,23],[0,19],[1,7],[1,30],[1,21],[1,-1],[1,-7],[2,-2],[3,1],[1,4],[2,5],[2,3],[2,6],[1,4],[1,8],[1,5],[1,4],[1,5],[2,4],[2,0],[1,-8],[0,-22],[1,-18],[0,-19],[0,-13],[1,1],[1,12],[2,9],[1,14],[0,12],[-1,9],[0,8],[-1,4],[1,13],[2,11],[2,5],[1,0],[3,-4],[3,6],[2,4],[1,-1]],[[6985,26607],[2,-31],[3,-35],[2,-34],[3,-31],[-2,-8],[-1,9],[0,13],[-1,13],[-1,14],[-1,15],[-2,21],[-1,18],[0,10],[-1,26]],[[6872,26700],[1,-2],[1,0],[1,-4],[1,-7],[1,-6],[2,-10],[1,-1],[1,-1],[1,-3],[1,0],[1,-3],[1,-8],[1,-6],[1,-6],[2,-7],[3,-6],[2,-3],[0,-4],[1,-8],[1,-11],[0,-8],[1,-13],[0,-11],[0,-7],[0,-6],[1,-7],[0,-9],[0,-9],[0,-3],[-1,6],[0,11],[-1,16],[0,6],[-1,5],[-1,7],[0,-4],[0,3],[-1,13],[-1,4],[-1,-5],[0,5],[0,1],[-1,11],[0,2],[-1,-7],[1,-7],[1,-8],[0,-8],[1,-10],[3,-35],[0,-13],[2,-51],[0,-13],[-1,-4],[-1,-6],[-3,-18],[-4,-35],[-3,-12],[-1,-1],[-1,0],[-1,3],[-1,7],[0,4],[1,0],[1,-2],[1,1],[2,2],[1,10],[0,5],[1,10],[1,11],[1,6],[0,12],[1,9],[-1,8],[-1,0],[-1,-10],[-3,-28],[-2,-15],[-2,-10],[-2,-2],[-2,1],[0,4],[-1,3],[0,3],[0,6],[1,-3],[0,-2],[1,0],[1,0],[1,8],[1,9],[2,15],[2,20],[1,3],[1,-3],[0,1],[1,3],[0,10],[1,1],[0,6],[-1,0],[-1,4],[0,10],[-2,0],[-1,-5],[0,-6],[-1,2],[1,16],[1,18],[0,5],[1,5],[1,6],[0,7],[0,8],[-1,0],[-2,-3],[-1,0],[0,12],[-1,20],[0,20],[1,6],[0,4],[0,7],[-1,18],[-1,11],[-2,6],[-1,3],[0,4],[-1,-5],[-1,14],[-1,4],[-2,2],[-1,0],[-2,0],[-1,2],[-1,7],[0,2],[-1,-2],[-1,-6],[0,-6],[0,-6],[0,-2],[-1,1],[-1,11],[-1,-2],[-3,-12],[-2,-20],[0,-50],[0,-2],[0,-16],[0,-19],[-1,-23],[0,-37],[0,-54],[1,-22],[0,-7],[1,-8],[0,-9],[-1,-11],[0,-4],[0,-1],[1,-3],[0,4],[1,11],[1,16],[2,16],[0,11],[0,-3],[2,-35],[1,-36],[0,-7],[1,-47],[0,-1],[-1,-8],[2,-6],[1,0],[2,5],[2,14],[0,-18],[0,-9],[0,-9],[0,-5],[-1,4],[-1,-3],[0,-9],[1,-1],[1,3],[1,6],[1,14],[1,15],[-1,15],[-1,6],[-1,2],[0,1],[0,4],[2,1],[1,-1],[1,-7],[0,-10],[0,-37],[-1,-24],[-3,-12],[-4,-8],[-3,-7],[-4,-9],[-3,-11],[-4,-12],[-8,-34],[-6,-33],[-4,-26],[-2,-14],[-2,-17],[0,-1],[-2,-12],[-4,-34],[-2,-21],[-1,-12],[-3,-35],[-3,-42],[-3,-47],[-3,-47],[-2,-25],[-5,-50],[-3,-26],[-2,-5],[0,-3],[-2,0],[-3,-1],[-3,16],[-2,24],[-2,22],[-2,23],[-1,20],[0,19],[0,29],[1,20],[2,35],[2,40],[2,24],[0,29],[3,32],[5,75],[2,31],[2,46],[3,33],[3,41],[1,23],[3,32],[2,13],[7,46],[7,53],[2,11],[3,33],[2,15],[11,101],[5,40],[2,14],[3,16],[1,4],[1,7],[2,6],[1,9],[2,7],[1,2],[2,0],[1,0],[2,-1],[1,-2]],[[6985,26607],[-2,0],[-1,-4],[0,-21],[-1,-10],[-1,-11],[0,-16],[0,-15],[0,-17],[-1,-13],[-1,-15],[0,-17],[1,-15],[1,-13],[3,-1],[1,7],[1,5],[1,-12],[0,-19],[-1,-7],[-1,4],[-1,-12],[-1,-2],[-1,-6],[-2,-13],[-1,-19],[-1,-20],[-1,-8],[-1,-7],[-1,6],[1,14],[0,24],[2,24],[-2,5],[-2,-2],[0,-6],[0,-18],[0,-13],[-1,-19],[-1,-10],[0,-6],[-1,-23],[-2,-15],[-2,-13],[-1,-14],[-1,-10],[0,-12],[1,-11],[-2,1],[-2,2],[-3,-6],[-3,-9],[-4,-13],[-3,-23],[-3,-16],[-3,-13],[-1,-3],[-2,13],[-2,8],[-3,2],[-2,6],[-2,14],[-4,13],[-5,0],[-2,9],[-3,11],[-5,19],[-2,12],[0,16],[-1,16],[-2,18],[0,15],[0,15],[1,-14],[2,-30],[-1,22],[0,21],[2,24],[2,21],[1,11],[-2,6],[-1,11],[0,-16],[0,-16],[-2,-1],[-1,-1],[0,-16],[-1,17],[-1,15],[0,14],[2,23],[2,16],[1,-4],[1,2],[0,16],[-1,8],[0,27],[1,17],[2,35],[3,32],[4,41],[1,13],[2,18],[2,13],[0,5],[4,20],[1,4],[5,23],[3,24],[3,8],[2,8],[1,0],[1,-5],[1,-4],[2,-7],[1,-13],[3,-11],[3,-5],[4,5],[4,8],[5,15],[3,19],[4,17],[2,5],[3,0],[1,-14],[1,-20],[1,-35],[1,-31],[0,-37],[1,-35]],[[6964,27093],[-1,-2],[-1,5],[1,16],[1,14],[2,29],[0,9],[1,-3],[1,-12],[0,-9],[0,-14],[-1,-12],[-1,-6],[-1,-12],[-1,-3]],[[7024,27306],[-1,-10],[-1,13],[1,11],[1,7],[2,0],[1,-3],[-2,-9],[-1,-9]],[[6996,27272],[2,-6],[1,3],[0,-36],[0,-36],[1,-36],[1,-14],[-1,-19],[0,-15],[-2,-8],[-3,-1],[-2,-5],[-2,6],[-1,17],[-1,7],[-4,1],[-4,4],[-1,11],[-1,4],[-7,10],[-1,2],[-1,6],[-1,12],[0,18],[0,18],[1,12],[1,-3],[1,9],[2,1],[0,-13],[0,-12],[1,-8],[2,2],[2,10],[2,19],[2,17],[1,8],[2,22],[1,6],[2,1],[1,11],[1,24],[0,19],[1,-21],[1,-27],[3,-20]],[[7035,27304],[-1,-7],[0,9],[0,16],[0,6],[2,5],[0,10],[1,8],[1,15],[2,14],[1,-13],[1,-8],[0,-9],[-1,-6],[0,-1],[-1,-8],[-1,-9],[-2,-1],[-1,-8],[-1,-13]],[[7051,27393],[-1,-15],[-1,8],[0,1],[-1,7],[-1,11],[-1,2],[0,10],[0,8],[1,3],[1,1],[0,2],[1,0],[1,5],[1,-5],[0,-12],[-1,-11],[1,-15]],[[7126,28136],[0,-8],[-1,1],[-1,-8],[-1,-6],[0,-1],[-2,-5],[-1,-6],[-3,-6],[0,11],[-2,13],[-1,2],[-1,9],[-1,16],[0,11],[0,12],[1,10],[1,3],[2,10],[1,12],[2,3],[1,4],[2,4],[2,3],[1,2],[2,4],[1,3],[2,6],[2,-2],[1,-8],[0,-14],[0,-2],[-1,-8],[-1,-11],[0,-7],[-1,-8],[-1,-10],[-1,-1],[-1,-4],[0,-8],[-1,-16]],[[6962,28285],[-1,-19],[-1,-19],[0,4],[-1,5],[-2,1],[-2,-2],[-1,-7],[0,8],[-1,2],[-1,8],[-1,15],[1,7],[1,4],[0,10],[1,6],[1,-5],[1,-2],[-1,-15],[0,-14],[1,-1],[1,5],[0,10],[1,2],[0,-11],[0,-7],[1,0],[1,12],[0,13],[0,6],[1,7],[1,7],[1,-9],[-1,-21]],[[6997,28612],[-1,-11],[0,14],[0,23],[1,6],[1,-10],[0,-12],[-1,-10]],[[7226,29678],[0,-17],[-1,-3],[0,-16],[1,-10],[0,-2],[0,-16],[-1,-19],[-1,-9],[0,-18],[-1,-12],[1,-8],[1,5],[1,12],[0,13],[1,11],[1,34],[0,8],[3,9],[1,0],[1,8],[1,6],[1,-11],[2,-2],[0,-13],[-1,-18],[1,-8],[1,-5],[1,1],[0,-4],[0,-12],[0,-13],[0,-12],[0,-16],[-1,-19],[-2,-15],[-1,-24],[-2,-7],[-1,-16],[-2,-16],[-1,-13],[-1,-13],[-1,-7],[0,-3],[-2,-24],[0,-12],[0,-7],[1,-10],[2,-7],[0,12],[1,9],[1,29],[2,10],[1,16],[2,14],[2,9],[2,7],[1,3],[1,4],[1,10],[1,7],[1,7],[1,7],[1,9],[1,4],[1,3],[1,9],[1,13],[0,14],[1,9],[2,6],[2,0],[1,9],[2,15],[2,3],[2,3],[2,12],[2,11],[1,0],[1,-13],[0,-10],[-1,-9],[-1,-16],[-2,-26],[0,-19],[1,-9],[1,-9],[-1,-2],[-1,-6],[-1,-8],[0,-13],[0,-17],[-1,-13],[-1,-16],[-1,-16],[-1,-17],[-1,-16],[0,-25],[0,-20],[-1,-18],[0,-17],[-1,-15],[0,-23],[1,-16],[1,-6],[1,-1],[0,-1],[0,-3],[0,-3],[1,-5],[0,2],[1,2],[0,2],[0,12],[-1,13],[0,22],[0,24],[1,29],[1,22],[0,15],[1,14],[2,16],[1,15],[1,17],[0,16],[1,15],[2,27],[-2,9],[-1,7],[1,10],[1,9],[2,-1],[1,-9],[2,-8],[3,-5],[2,4],[1,11],[1,20],[0,19],[2,12],[1,2],[1,1],[1,9],[1,7],[1,5],[1,9],[2,2],[1,4],[1,-2],[1,2],[1,-3],[2,-4],[2,6],[1,-7],[0,-14],[0,-10],[1,-29],[1,-9],[1,-4],[1,8],[1,1],[1,-23],[1,-14],[1,-12],[1,2],[2,5],[2,9],[2,1],[1,-7],[1,-4],[1,-9],[2,-14],[0,-19],[1,-10],[0,-16],[-1,-12],[0,-11],[-2,-8],[0,-15],[-1,-12],[-2,-12],[-1,-6],[-1,-23],[-3,-26],[-2,2],[0,8],[-1,-2],[-1,1],[-1,-9],[-1,-4],[-1,-10],[-2,-8],[-2,-11],[-1,-1],[-1,6],[-1,10],[-1,0],[-3,-1],[-1,-4],[-2,-5],[-2,-5],[-1,-4],[-2,3],[-1,4],[-1,12],[-1,12],[-1,10],[-1,12],[1,15],[-1,9],[-1,4],[-1,2],[-1,-17],[-1,-27],[1,-4],[2,-2],[2,-19],[0,-14],[-1,10],[-2,8],[-2,-9],[-3,-14],[-2,-23],[-1,-17],[-1,-7],[-1,0],[-1,0],[0,1],[-1,2],[-1,0],[0,3],[-1,6],[-1,2],[0,-4],[-1,-5],[-1,-2],[-1,-6],[0,-19],[0,-20],[0,-16],[-2,-7],[-1,-6],[-1,-6],[-1,-6],[-2,-6],[-2,0],[-1,11],[-1,9],[0,18],[-1,9],[-3,2],[-2,-5],[-2,-7],[-3,-9],[-2,-10],[-1,-9],[-9,-84],[-1,-17],[-1,-21],[0,-35],[1,-13],[1,-10],[3,-2],[-1,-18],[1,-13],[1,-30],[0,-12],[-1,-23],[0,-15],[-2,-24],[-1,-17],[-2,-23],[-2,-21],[-2,-32],[0,-22],[-1,-4],[-1,3],[-1,3],[-1,-2],[-1,-2],[-1,-7],[-1,1],[-1,4],[-1,-5],[-1,-6],[0,-5],[-1,-15],[-1,-9],[-2,-3],[-1,-14],[-1,-3],[-1,-3],[-1,-7],[-1,0],[-1,3],[-1,2],[0,18],[-2,33],[-1,10],[-1,2],[-1,-3],[0,-4],[-1,-2],[-1,6],[0,14],[-3,9],[0,14],[1,11],[1,20],[2,17],[1,9],[2,18],[0,19],[0,15],[0,7],[0,11],[0,17],[0,12],[-1,12],[-1,4],[-1,7],[-2,3],[-1,-3],[-1,-9],[-2,2],[-1,2],[-1,5],[0,18],[1,9],[2,16],[1,15],[1,14],[2,7],[1,7],[1,17],[1,22],[1,22],[1,20],[-1,19],[0,18],[1,-8],[1,-3],[1,5],[2,13],[2,15],[1,8],[1,7],[0,11],[1,13],[1,10],[1,12],[-1,5],[0,2],[-1,-1],[-1,-5],[-1,-11],[-2,-19],[-1,-12],[-2,-16],[-2,-10],[-2,-13],[-2,-11],[-1,-10],[-1,-14],[-1,-13],[-1,-8],[-1,-3],[-1,-9],[-3,-15],[-2,-15],[-2,-12],[-2,-11],[-1,-14],[-2,-4],[0,18],[0,19],[-1,12],[0,26],[-1,12],[0,11],[1,9],[3,19],[0,6],[2,10],[3,14],[1,8],[0,12],[2,5],[1,19],[1,11],[1,-2],[1,-5],[1,5],[1,10],[1,12],[1,19],[-2,12],[-1,3],[-1,2],[-1,0],[-1,-5],[-1,-8],[-1,-13],[-2,-2],[-2,-4],[-2,-5],[-1,-5],[0,14],[1,30],[1,25],[1,14],[2,12],[2,17],[0,15],[2,21],[3,16],[2,5],[1,0],[1,3],[1,8],[0,14],[1,11],[0,18],[1,6],[1,12],[2,20],[1,11],[0,15],[1,11],[1,7],[1,4],[1,10],[1,8],[1,12],[0,8],[1,16],[1,14],[1,1],[0,5],[0,8],[0,9],[1,26],[-2,-3],[-1,-17],[-1,-18],[-1,-2],[0,2],[1,21],[-1,4],[0,12],[0,13],[1,7],[0,7],[1,8],[1,10],[1,2],[1,8],[1,0],[1,13],[1,7],[1,2],[0,-14],[0,-10],[1,1],[1,2],[1,-5],[1,-1],[0,6],[2,7],[2,10],[1,8],[1,3],[0,1],[1,-2],[0,-16],[1,-7],[0,-9]],[[6350,29887],[0,-18],[-3,1],[-3,5],[-1,21],[4,0],[3,-9]],[[6313,30261],[-3,-28],[-1,14],[4,80],[2,-14],[-2,-52]],[[6365,30322],[-3,-7],[0,-7],[-1,-8],[-1,-1],[-1,10],[-1,5],[0,-2],[-1,7],[-1,-3],[-1,5],[-1,-3],[-1,1],[0,11],[1,4],[1,6],[1,12],[1,15],[1,11],[1,-12],[2,-13],[1,-11],[1,-1],[1,-6],[1,-13]],[[6370,30419],[-1,-4],[-1,5],[0,5],[-1,3],[-1,2],[-2,3],[0,12],[-1,16],[-1,2],[0,10],[1,6],[1,7],[1,13],[1,2],[1,-7],[1,-2],[2,-1],[1,-7],[0,-4],[1,-8],[-2,-13],[-1,-12],[1,-13],[0,-15]],[[6377,30520],[-2,-4],[-1,2],[-1,-4],[-1,3],[-1,6],[-1,20],[1,11],[1,12],[2,11],[1,-2],[1,-8],[1,-7],[1,-5],[0,-8],[0,-12],[-1,-15]],[[6382,30581],[-1,-13],[-1,12],[-1,8],[-1,4],[1,10],[2,0],[1,-7],[0,-9],[0,-5]],[[7479,30481],[-1,0],[-1,1],[-1,5],[1,15],[0,12],[1,10],[1,10],[0,15],[1,16],[1,8],[1,13],[0,21],[0,20],[1,-7],[1,-4],[2,-3],[1,-1],[2,-7],[1,-5],[1,-2],[1,-7],[0,-16],[-1,-16],[-1,-10],[-1,-15],[-1,-11],[-2,-11],[-1,-7],[-1,-13],[-2,-3],[-2,-4],[-1,-4]],[[6398,30737],[-1,-10],[-1,4],[0,18],[2,7],[0,16],[1,7],[2,-4],[-1,-11],[-1,-13],[-1,-14]],[[7049,31317],[1,-4],[1,7],[1,0],[1,-10],[1,-13],[1,-12],[0,-20],[0,-19],[0,-11],[-1,-13],[-1,2],[-1,2],[0,-20],[1,-57],[1,-36],[0,-29],[1,-31],[-1,-61],[0,-45],[0,-50],[-1,-44],[0,-19],[1,-23],[-1,-15],[-1,3],[-2,7],[-1,8],[-1,3],[0,12],[-2,14],[-1,9],[0,3],[-1,8],[-1,13],[-1,7],[-1,16],[0,38],[0,28],[-1,15],[1,7],[1,0],[0,11],[0,12],[-1,15],[0,21],[-1,15],[-1,12],[0,12],[0,23],[0,17],[-2,-1],[1,11],[0,17],[0,14],[-1,12],[0,14],[0,13],[2,0],[1,-1],[1,5],[0,21],[1,25],[0,19],[0,22],[0,24],[-1,27],[0,22],[-1,15],[1,17],[1,9],[1,0],[1,-7],[2,-17],[1,-14],[0,-8],[1,-17],[1,-13],[0,-17]],[[7010,31855],[-1,-7],[-1,3],[-1,9],[0,14],[-1,12],[-1,4],[0,9],[-1,4],[-1,11],[1,9],[1,11],[1,0],[1,-2],[1,-4],[0,-14],[1,-10],[1,-4],[1,-9],[-1,-23],[0,-13]],[[6998,31932],[-1,-7],[-1,10],[0,11],[1,3],[1,-5],[0,-12]],[[7450,31941],[1,-16],[-2,4],[-1,6],[0,12],[0,14],[1,13],[2,14],[0,-13],[-1,-8],[0,-5],[-1,-8],[1,-13]],[[7029,32123],[-1,-2],[-2,5],[-1,19],[0,15],[1,1],[1,2],[1,8],[1,5],[0,-14],[2,-3],[0,-14],[-1,-16],[-1,-6]],[[7196,32209],[-1,-7],[-1,9],[0,2],[-1,1],[0,20],[0,13],[1,-9],[1,-1],[1,-2],[0,-12],[0,-14]],[[7189,32241],[-1,-6],[-1,0],[-1,1],[-1,-1],[-2,-1],[-1,5],[0,10],[0,10],[0,13],[0,14],[0,18],[0,16],[-1,13],[0,17],[0,17],[1,14],[0,3],[1,-2],[2,0],[1,-4],[2,-20],[1,-13],[1,-8],[1,-16],[1,-15],[0,-23],[1,-21],[-1,-13],[-2,-4],[-1,-4]],[[7451,32464],[-1,-2],[0,11],[1,5],[1,2],[0,-4],[-1,-8],[0,-4]],[[7137,32498],[-1,-5],[0,2],[-1,4],[-1,3],[-1,9],[1,10],[1,6],[1,4],[1,-1],[1,-6],[0,-16],[-1,-10]],[[7500,32555],[1,9],[1,-3],[1,-2],[1,-7],[-1,-4],[-1,2],[-2,5]],[[7456,32545],[0,-16],[0,5],[0,14],[0,17],[1,9],[1,-3],[0,-10],[0,-7],[-2,-9]],[[7452,32521],[0,-10],[-1,1],[-1,-4],[-2,-11],[0,10],[1,10],[1,11],[0,9],[0,13],[4,34],[1,-13],[-1,-10],[0,-9],[-1,-17],[-1,-14]],[[7500,32555],[-2,-12],[-2,-22],[1,-12],[-1,-13],[-2,-6],[-1,-4],[-1,-1],[-1,-7],[-1,-10],[-1,-14],[-1,-12],[-1,1],[-1,-3],[-1,-6],[-1,-7],[-1,-9],[-1,-11],[-1,-14],[-2,-2],[-1,4],[0,14],[0,13],[1,18],[1,16],[2,16],[1,8],[2,9],[1,19],[1,-9],[1,-4],[2,13],[1,9],[1,5],[2,21],[-1,9],[0,-1],[-1,-6],[-2,-2],[1,14],[1,12],[0,11],[0,11],[1,1],[1,-2],[1,-7],[0,-15],[0,-9],[1,-2],[1,-1],[2,2],[1,-3]],[[7467,32446],[-1,-5],[0,13],[0,10],[0,17],[-1,12],[-1,10],[0,9],[-1,14],[0,12],[1,10],[0,7],[1,13],[0,7],[2,5],[1,11],[0,25],[1,3],[1,1],[1,5],[1,0],[0,-20],[1,-13],[1,-12],[1,-8],[1,-3],[1,-16],[-1,-13],[-1,-9],[0,-18],[0,-12],[-1,-15],[-1,-9],[-1,-8],[-1,-5],[-1,-2],[-1,-5],[-1,-5],[-1,-6]],[[7386,33023],[0,-3],[-1,0],[0,-4],[0,1],[-1,-2],[-1,2],[0,1],[-1,-1],[-1,-3],[1,-2],[0,-2],[0,-2],[0,-2],[0,-3],[-1,-7],[0,-5],[0,-4],[0,3],[0,3],[-1,1],[-1,0],[-1,3],[-1,-1],[0,7],[0,16],[1,5],[1,-6],[0,-1],[1,1],[0,6],[0,3],[0,5],[1,1],[1,6],[3,4],[0,19],[-1,4],[-1,8],[0,7],[1,-2],[3,-2],[0,-13],[0,-4],[0,-5],[0,-5],[0,-5],[0,-9],[-1,-7],[0,-6]],[[7449,33108],[0,-3],[-1,3],[-1,7],[0,3],[0,10],[1,3],[1,-5],[0,-7],[0,-11]],[[7265,33392],[1,-18],[0,-13],[-2,3],[-2,7],[-2,12],[-1,7],[0,-4],[-1,1],[1,16],[0,13],[1,10],[1,1],[1,-10],[0,-14],[1,-4],[1,-2],[1,-5]],[[7272,33426],[2,-3],[1,2],[2,0],[1,-9],[0,-8],[-1,-4],[-1,-11],[0,-11],[-1,-6],[-1,4],[-1,17],[-1,2],[-1,-4],[-2,0],[0,3],[-1,12],[-1,12],[1,4],[1,2],[2,1],[1,-3]],[[7442,33433],[1,-15],[1,-17],[1,-6],[0,-15],[2,-13],[1,-6],[1,-1],[-1,-11],[-1,-12],[0,-5],[-1,-8],[-1,-10],[0,3],[-1,3],[-1,9],[-5,10],[0,-4],[0,-13],[5,-22],[3,-20],[2,6],[0,7],[1,2],[1,-6],[0,-9],[2,-7],[1,-2],[1,-8],[1,-6],[1,4],[2,-3],[2,2],[0,1],[2,5],[1,-1],[1,-7],[1,-4],[1,-4],[1,-10],[1,-3],[1,-4],[1,-12],[1,-5],[1,0],[1,1],[0,-16],[-2,-24],[0,-11],[0,-18],[-2,-5],[-1,-1],[-2,-7],[-1,-13],[-1,-6],[1,-10],[-1,-8],[-1,-8],[1,-9],[-1,-14],[-1,-11],[-1,4],[-3,9],[-2,20],[-2,12],[-1,7],[-1,20],[-1,13],[-2,6],[0,-1],[-2,-4],[-1,2],[0,1],[-1,-4],[-1,3],[0,3],[-1,-7],[-1,0],[-1,5],[-1,4],[-1,-1],[-1,3],[-2,6],[0,7],[-2,7],[-1,2],[-1,14],[-1,7],[-1,5],[-1,-1],[-1,-3],[-1,6],[0,15],[-1,11],[-2,13],[0,5],[-2,-20],[-1,-8],[-1,2],[-1,-5],[-1,-8],[-1,-3],[0,3],[0,10],[1,27],[1,10],[1,11],[1,3],[1,4],[1,15],[1,12],[0,16],[0,16],[2,1],[1,3],[1,13],[0,10],[1,3],[1,12],[2,21],[-1,9],[-2,-7],[-2,-7],[1,14],[0,18],[0,14],[1,5],[1,-4],[2,6],[0,2],[2,-9],[1,-10],[1,-5],[1,8],[1,30],[1,2],[1,1],[1,8],[-1,11],[2,23],[1,10],[1,-1],[2,-1],[2,-13],[0,-7],[1,-11],[-1,-13],[0,-11],[-2,-14],[-1,-5],[-3,-3]],[[7159,33450],[1,-1],[1,13],[1,5],[0,-24],[2,-12],[2,-22],[2,-12],[2,-11],[4,-9],[1,-3],[1,-11],[1,-26],[3,-25],[1,-17],[2,2],[2,-4],[1,-15],[2,-8],[1,-20],[0,-15],[2,-19],[2,-3],[1,0],[2,-18],[1,-18],[2,-11],[2,-1],[1,3],[0,-4],[2,-10],[1,0],[1,-14],[0,-14],[1,-18],[2,-21],[1,-7],[1,-9],[2,-11],[0,-10],[1,-13],[-1,-22],[1,-21],[0,-23],[1,-4],[1,1],[1,-18],[1,-4],[1,-20],[2,-17],[1,-15],[1,-18],[0,-26],[1,-23],[0,-25],[2,-26],[1,-17],[1,-26],[0,-15],[0,-16],[1,-21],[-1,-6],[-1,-16],[0,-13],[0,-16],[-1,7],[-2,17],[-1,11],[-2,5],[-2,0],[-1,12],[-2,3],[-2,2],[-3,2],[1,-14],[1,-17],[-2,-9],[-1,5],[-2,11],[0,16],[0,13],[1,4],[1,12],[0,10],[-1,15],[-1,-2],[-2,14],[-1,9],[-2,-6],[-1,5],[-1,1],[-2,-3],[-2,7],[-2,-2],[0,4],[0,12],[0,30],[1,36],[2,11],[0,4],[3,1],[0,4],[0,10],[0,5],[-3,-3],[-2,15],[-13,22],[-7,14],[0,20],[-1,26],[-3,-1],[-1,5],[0,15],[-1,4],[-1,-1],[-2,1],[-3,5],[-1,7],[-3,8],[-2,12],[-2,15],[-1,15],[0,11],[-2,11],[-1,14],[-1,12],[-1,8],[-2,12],[-1,10],[0,11],[-1,10],[-1,8],[-1,9],[-2,11],[0,9],[-2,19],[-1,18],[-1,16],[-2,31],[-1,18],[1,11],[1,12],[-1,10],[0,17],[1,5],[2,14],[0,28],[1,31],[0,14],[0,15],[0,13],[2,14],[1,14],[2,8],[2,6],[1,4],[2,7],[2,2],[1,2],[1,-1],[1,-8],[1,-14],[2,-25],[1,-21]],[[7316,33485],[-1,-6],[-1,4],[-1,16],[0,22],[1,1],[2,-11],[0,-26]],[[7362,33587],[0,-19],[0,-20],[-1,-13],[0,-5],[-1,-8],[0,-16],[-1,-21],[-1,-1],[-1,3],[-1,8],[-1,-1],[1,-17],[2,-31],[0,-14],[0,-20],[-1,-27],[0,-31],[-1,-8],[-1,-6],[0,-7],[-1,-17],[0,-15],[-1,-13],[-2,-16],[-1,-6],[-1,-7],[-1,-5],[-2,-3],[-2,2],[-1,9],[-2,12],[-1,4],[-2,3],[-1,4],[-1,12],[0,15],[-1,13],[-1,8],[-2,14],[-2,2],[-1,1],[0,3],[-2,-1],[-1,-2],[0,6],[-1,13],[0,21],[-1,15],[0,2],[-1,6],[0,19],[0,7],[0,24],[1,8],[1,9],[0,15],[1,10],[1,9],[1,4],[1,2],[2,6],[2,5],[1,4],[1,-4],[1,3],[3,12],[2,8],[2,-3],[1,-1],[4,-4],[1,4],[1,-1],[1,-6],[1,-7],[1,1],[1,3],[1,3],[0,21],[0,12],[1,8],[2,3],[2,-8],[1,4],[1,4]],[[7319,33532],[-1,-4],[-1,15],[1,16],[1,17],[-1,8],[-1,15],[5,-6],[1,-15],[0,-15],[-2,-13],[-2,-18]],[[7212,33609],[1,-8],[1,14],[1,6],[2,1],[2,-5],[1,-14],[1,-7],[2,0],[0,-18],[1,-28],[3,-19],[1,-22],[3,-15],[4,-9],[1,-8],[3,7],[3,-15],[2,-16],[3,-28],[0,-14],[1,-25],[1,-20],[2,0],[1,-9],[1,-9],[2,-6],[3,1],[2,-5],[2,-12],[2,-13],[2,-8],[1,4],[1,13],[1,-1],[1,-4],[2,-1],[1,-4],[2,-5],[0,-10],[1,-6],[1,-6],[1,-12],[1,-10],[0,-9],[1,-8],[1,-13],[0,-4],[1,-10],[2,-7],[1,-8],[2,-23],[2,2],[0,25],[-3,33],[-1,14],[0,24],[0,15],[0,12],[0,10],[1,0],[2,7],[0,10],[0,6],[-3,13],[-1,3],[-1,-6],[-2,3],[0,12],[1,3],[2,2],[0,10],[0,12],[1,3],[2,4],[0,-8],[1,-6],[4,-8],[3,-2],[1,4],[1,4],[0,3],[1,5],[1,0],[1,-1],[0,4],[2,1],[1,-5],[1,-11],[0,-7],[1,-9],[1,-10],[2,-9],[1,-3],[0,-8],[1,-6],[1,-2],[0,-3],[1,-4],[1,-3],[0,-2],[1,-2],[1,-4],[0,-2],[2,2],[1,-2],[1,-6],[0,-1],[2,3],[1,-2],[1,-3],[1,-4],[1,0],[1,-2],[1,-5],[0,-6],[1,-5],[1,-1],[0,-4],[1,-6],[2,-12],[1,-11],[1,0],[2,-2],[1,-4],[1,-10],[1,-6],[1,-9],[0,-15],[1,-20],[1,-18],[-1,-15],[-1,-3],[-1,-6],[-1,-16],[-1,-17],[-1,-11],[-1,-2],[-1,5],[-1,0],[-2,-23],[-1,-2],[-1,-4],[-1,-3],[-1,-4],[-1,-9],[-1,-7],[-1,-3],[-1,-4],[0,-11],[-1,-14],[-1,-8],[-1,-6],[0,-10],[-1,-7],[-1,-7],[0,-10],[0,-12],[-1,-4],[1,-10],[2,15],[4,44],[2,17],[2,-21],[0,-24],[-5,-13],[-1,-16],[-1,-19],[0,-17],[-5,-31],[0,-5],[-1,-11],[-1,-13],[0,-18],[-1,-12],[0,-7],[-1,-12],[0,-13],[0,-11],[1,-11],[-1,-5],[-2,-14],[1,-9],[1,-15],[-2,-16],[0,-22],[1,-11],[1,-2],[1,-13],[0,-18],[1,-16],[0,-27],[-1,-13],[-1,-16],[-1,-28],[0,-11],[-1,-5],[-2,1],[0,-17],[1,-18],[1,-12],[0,-14],[0,-22],[1,-35],[2,-18],[2,-26],[1,-10],[2,-8],[1,-1],[1,-1],[0,-16],[-1,-16],[1,-14],[1,-8],[1,-1],[2,-1],[1,-2],[1,-7],[0,-7],[1,14],[1,14],[0,18],[-1,15],[0,21],[0,15],[0,18],[0,13],[-1,15],[0,21],[0,18],[0,27],[-1,23],[1,23],[0,14],[-1,14],[1,12],[0,22],[1,21],[0,18],[0,23],[-1,21],[1,24],[0,20],[0,15],[0,21],[1,26],[1,23],[2,11],[2,38],[1,16],[1,6],[2,14],[1,12],[2,13],[1,11],[1,6],[1,11],[1,10],[1,-5],[0,-17],[0,-16],[2,-7],[1,-7],[1,-18],[1,-11],[1,-5],[1,1],[1,5],[-1,-23],[1,-14],[1,-7],[-1,-10],[0,-24],[1,-14],[1,-10],[0,-15],[0,-19],[1,-10],[1,5],[1,4],[1,0],[1,9],[0,19],[0,25],[1,25],[0,19],[1,15],[2,23],[0,20],[0,16],[-1,13],[1,16],[1,3],[0,22],[1,16],[1,12],[1,13],[1,8],[2,13],[1,7],[1,5],[1,3],[1,11],[1,4],[0,-17],[1,1],[-1,-18],[1,-16],[0,-3],[0,-9],[2,-6],[1,-6],[2,-7],[1,14],[0,8],[0,8],[1,7],[1,-5],[3,-52],[0,-4],[0,-7],[0,-27],[0,-18],[-1,-19],[0,-15],[1,-2],[1,3],[1,1],[0,22],[0,20],[0,35],[0,16],[0,20],[0,33],[0,32],[-1,15],[0,23],[0,24],[-2,15],[-1,20],[-1,11],[0,12],[0,20],[0,17],[0,17],[1,16],[0,11],[2,7],[1,2],[2,2],[1,8],[1,1],[1,-13],[0,-20],[1,-10],[1,7],[3,53],[1,-1],[0,-72],[0,-8],[2,-14],[2,-17],[1,-14],[1,-23],[2,-3],[1,11],[1,10],[4,33],[0,7],[1,12],[2,-28],[1,1],[0,8],[1,9],[1,2],[3,-12],[2,-7],[2,-10],[1,-16],[2,-10],[1,-5],[1,-2],[1,-9],[1,-9],[-1,-16],[1,-17],[1,-16],[0,-14],[2,-37],[0,-6],[1,-7],[1,-7],[1,-3],[1,-2],[2,-5],[1,0],[1,1],[0,-3],[2,-5],[0,-11],[0,-14],[0,-13],[1,-11],[1,0],[1,4],[0,1],[1,-6],[0,-7],[1,6],[1,-13],[-1,-15],[0,-11],[-1,-5],[-1,-13],[-1,-9],[-1,-9],[-1,-7],[-1,0],[-1,0],[0,-5],[-1,-1],[-1,5],[-1,5],[-1,-7],[0,-12],[0,-14],[1,-4],[0,-6],[0,-16],[1,-14],[0,-8],[1,-9],[1,-6],[0,-6],[0,-5],[-1,-8],[1,-12],[1,1],[1,6],[0,5],[1,-2],[0,2],[1,6],[0,3],[1,2],[1,3],[0,10],[1,7],[0,4],[1,5],[1,2],[1,2],[1,5],[1,1],[0,2],[1,4],[1,1],[1,-1],[1,5],[1,11],[0,13],[1,4],[0,10],[1,3],[1,-1],[1,-11],[1,-3],[0,-7],[0,-8],[0,-14],[-1,-9],[-1,-10],[0,-13],[0,-9],[1,-2],[1,-3],[1,3],[0,6],[1,8],[1,6],[1,8],[0,4],[1,2],[1,-3],[0,-15],[-1,-19],[-2,-21],[0,-5],[-2,-15],[-1,-14],[-1,-7],[0,-4],[-1,-2],[-1,-7],[0,-7],[-1,-2],[-1,-10],[-1,1],[-1,-2],[-1,-11],[-1,-5],[0,-10],[-1,-5],[-1,-5],[-1,-2],[-5,-19],[-1,-2],[-1,-4],[-1,-5],[-2,-7],[-1,0],[-1,-4],[-1,-11],[-1,-5],[0,-5],[-1,1],[-1,-9],[0,-8],[-1,-11],[0,2],[-1,-2],[0,-7],[-1,-6],[-1,-9],[-1,-12],[-1,-10],[-1,-4],[-1,-20],[0,-19],[-1,-15],[0,-17],[0,-20],[-3,-10],[0,-11],[-1,-3],[-1,-6],[0,-14],[0,-11],[0,-9],[-1,-7],[-1,-8],[-1,-4],[0,-14],[-1,-5],[-1,-12],[-1,-12],[-1,-2],[0,2],[-1,8],[0,5],[1,5],[1,7],[1,16],[1,17],[1,10],[0,7],[-1,10],[0,5],[-1,-5],[-1,-7],[-1,-6],[-1,-7],[0,-7],[-1,-11],[0,-7],[-1,-4],[-2,-15],[-1,-4],[-1,-8],[-1,-2],[-1,-4],[-1,-3],[0,-8],[0,-16],[0,-12],[-1,-7],[-1,-8],[0,-1],[-1,-12],[0,-17],[0,-13],[1,-7],[1,1],[1,-2],[0,-7],[1,-3],[1,4],[0,2],[1,2],[1,-9],[2,-10],[1,8],[1,2],[0,6],[1,8],[2,14],[0,7],[1,5],[0,6],[1,5],[1,7],[0,6],[1,9],[1,5],[0,6],[1,2],[1,14],[1,8],[1,7],[1,12],[0,6],[1,-4],[1,-4],[1,10],[1,6],[1,1],[1,-3],[1,-4],[1,11],[1,6],[1,-2],[0,-10],[0,-12],[-1,-12],[-1,-7],[-2,2],[-1,-4],[-2,-20],[-1,-15],[-1,-15],[1,-9],[1,-6],[1,-20],[-1,-23],[-1,-25],[-1,-17],[1,-15],[1,-8],[1,-7],[-1,-22],[-1,-34],[-2,-9],[-1,-10],[-1,-4],[-1,-7],[0,-13],[-2,-7],[-1,-8],[-1,-9],[-1,-1],[-1,-3],[-1,-10],[0,-15],[0,-7],[1,-7],[1,-2],[1,8],[1,5],[1,-21],[1,-7],[1,-3],[2,6],[1,6],[1,6],[1,15],[1,4],[1,11],[0,15],[1,1],[1,7],[1,7],[1,13],[1,8],[2,17],[3,24],[1,2],[1,14],[2,17],[1,8],[2,17],[2,10],[0,3],[1,-4],[0,-12],[0,-12],[-2,-11],[-2,-13],[0,-13],[-1,-17],[0,-13],[-1,-18],[-2,-20],[0,-15],[-1,-12],[-1,-13],[-2,-6],[0,-16],[1,-8],[0,-10],[2,-9],[1,-4],[-1,-11],[0,-11],[-1,-16],[-1,-18],[0,-17],[-2,-26],[-1,-21],[-1,-24],[-1,-16],[-1,-8],[-1,-7],[-1,-11],[-1,-15],[0,-10],[1,-11],[1,-12],[2,-8],[1,-2],[1,-4],[1,-3],[1,-2],[1,5],[1,1],[1,3],[1,5],[1,11],[0,9],[1,6],[1,10],[1,14],[0,10],[1,12],[1,1],[2,6],[1,12],[2,4],[1,7],[3,13],[1,10],[2,1],[2,4],[1,0],[2,5],[1,4],[0,9],[-1,13],[1,4],[2,15],[1,15],[2,5],[2,6],[-1,-13],[-1,-8],[0,-8],[-1,-15],[1,-13],[3,-31],[1,-1],[1,8],[1,7],[2,9],[1,6],[2,4],[2,6],[1,4],[0,2],[2,-1],[1,-27],[2,-12],[1,-3],[1,-6],[1,-7],[0,-2],[1,0],[1,2],[1,1],[1,3],[1,4],[1,10],[2,-2],[1,0],[2,1],[1,9],[1,18],[0,5],[2,2],[2,-2],[1,-2],[1,-10],[1,6],[1,1],[1,-2],[1,-7],[2,-8],[0,-16],[-1,-15],[-1,-10],[-1,-9],[0,-21],[0,-19],[0,-16],[1,-15],[0,-15],[1,-10],[1,-8],[0,-13],[-1,-6],[-1,-2],[-1,-2],[-1,-12],[-1,-13],[-2,-6],[0,-8],[-3,-26],[-3,-31],[-2,-10],[0,-19],[0,-12],[0,-7],[-2,-7],[-2,-16],[-3,-27],[-3,-39],[-1,-16],[-1,-11],[-2,-14],[-1,-15],[-1,-5],[-1,-1],[-3,-14],[-1,-8],[0,-6],[-1,-2],[-1,-4],[-1,-6],[0,-9],[-1,-23],[-1,-24],[-1,-26],[-1,-19],[0,-20],[0,-11],[-1,-2],[-1,-20],[-1,-40],[-2,-42],[0,-12],[1,-15],[0,-16],[-1,-19],[0,-15],[1,-18],[-1,-22],[0,-27],[1,-19],[1,-9],[0,-16],[-1,-13],[-2,-26],[-2,-8],[-2,-5],[-1,-1],[-2,4],[1,10],[-1,4],[-2,16],[-2,9],[-2,7],[-3,5],[-5,10],[-4,7],[-3,0],[-4,-3],[-2,-5],[-1,-7],[-1,-14],[-1,-18],[-1,-8],[-3,-12],[0,-6],[-2,-4],[-1,1],[-1,12],[1,18],[2,15],[1,19],[2,10],[1,10],[1,7],[1,25],[1,9],[1,14],[0,22],[0,16],[-2,22],[-1,12],[-2,10],[-2,10],[-1,5],[-1,4],[-1,2],[-1,-1],[-1,-14],[0,-47],[-1,-14],[-1,-21],[-1,-15],[-1,-18],[-1,-22],[-1,-20],[0,-10],[-1,4],[-1,5],[-1,6],[-1,10],[0,17],[0,15],[-1,7],[-2,10],[-1,3],[-1,-8],[-1,-3],[-1,3],[-1,10],[0,14],[-2,7],[-1,-5],[-1,-12],[-1,-13],[-2,-2],[-1,19],[-1,13],[-1,16],[0,18],[-2,8],[0,29],[0,15],[-1,10],[-2,17],[-2,2],[-1,-2],[-3,-10],[-2,-16],[-1,-11],[-1,-7],[-1,-5],[-1,-6],[-1,-1],[-1,0],[-2,20],[-1,3],[-2,-5],[-1,-4],[-4,39],[-1,15],[-1,10],[-1,2],[-2,-9],[0,5],[-1,17],[0,27],[0,14],[-1,16],[-1,9],[-1,6],[-2,21],[-1,18],[-1,4],[-1,2],[-1,-1],[-2,-4],[-1,-4],[-1,1],[-1,-1],[-2,-11],[-2,-10],[-1,-11],[-2,-8],[-1,-7],[-1,-3],[-2,1],[-3,6],[-2,7],[0,6],[-1,13],[-1,4],[-1,3],[-1,15],[-2,12],[-1,7],[-2,6],[-2,7],[-2,2],[-2,1],[-1,-9],[-1,-9],[-1,-12],[-1,-8],[-1,-8],[-1,-3],[-1,2],[-1,2],[-2,-3],[-1,0],[1,11],[0,8],[1,9],[-1,16],[-1,9],[-1,4],[-2,10],[-1,4],[-1,3],[0,11],[-2,2],[-1,0],[-1,2],[-1,-3],[-1,-15],[2,-18],[-1,-1],[-1,2],[-1,-3],[-1,-8],[1,-13],[1,-5],[1,-18],[1,-19],[1,-10],[1,-5],[2,2],[3,21],[0,3],[2,-6],[0,-17],[1,-13],[1,-4],[0,-5],[2,-1],[1,-3],[1,-4],[1,-11],[1,-8],[1,-11],[-1,-15],[-1,-12],[-1,0],[-2,-4],[-2,-1],[-2,-9],[-1,-2],[-2,-14],[-2,-6],[-1,4],[-1,6],[-3,3],[-2,2],[-1,-4],[-1,-4],[-1,-10],[-2,-6],[-1,1],[-2,1],[-1,2],[-1,8],[-2,2],[-1,-3],[-2,-1],[-2,0],[-1,-17],[1,-2],[3,4],[2,-1],[1,-3],[1,-10],[1,-18],[-1,-17],[-2,-15],[-1,-17],[-2,-24],[-2,-18],[-1,-17],[-3,-18],[-1,-11],[-1,-13],[-1,-12],[0,-8],[1,-6],[1,14],[1,14],[1,3],[1,3],[1,6],[1,12],[1,8],[2,11],[3,19],[1,17],[1,12],[2,5],[1,5],[1,11],[2,15],[2,8],[1,6],[1,14],[1,18],[1,2],[2,-6],[2,-16],[1,-6],[1,2],[2,3],[1,15],[1,11],[1,1],[2,-10],[0,-5],[2,1],[2,1],[1,9],[1,4],[2,4],[2,-2],[1,-6],[1,5],[3,8],[1,-8],[3,-12],[2,-5],[1,-4],[1,6],[1,10],[1,8],[2,-4],[2,-13],[2,-17],[2,-9],[1,-8],[2,-7],[2,-3],[1,0],[1,-8],[2,-15],[2,-22],[2,-13],[1,-25],[1,-8],[1,-16],[2,-15],[0,-13],[-1,-21],[1,-17],[0,-8],[2,-7],[1,-15],[1,1],[2,-3],[1,-9],[2,-6],[3,-2],[2,-3],[1,-19],[1,-14],[2,-9],[2,2],[1,8],[1,-6],[3,-1],[1,1],[1,-5],[2,-14],[0,-14],[0,-13],[0,-13],[0,-20],[1,-15],[1,0],[1,5],[1,-12],[1,-21],[-1,-25],[0,-25],[0,-19],[-1,-16],[1,-21],[0,-10],[-2,-4],[-2,-21],[-2,-17],[-1,-11],[-2,-32],[-1,-21],[0,-18],[1,-7],[1,1],[2,-9],[-1,-18],[0,-15],[-2,-24],[-1,-7],[-1,-12],[-1,-15],[-1,-15],[0,-10],[-1,-6],[-1,-3],[-1,-10],[-1,-11],[-1,-14],[-1,-9],[-2,-21],[-2,-19],[-1,-12],[-1,-18],[-2,-16],[-2,-10],[0,4],[-1,10],[1,16],[0,16],[0,17],[-1,21],[1,16],[0,14],[-1,14],[-1,10],[-1,5],[0,7],[-1,17],[-3,8],[-2,2],[-1,0],[-1,-12],[-2,-7],[-1,-10],[0,-12],[-1,-20],[-1,-10],[-1,-5],[-1,-6],[0,-18],[-1,-15],[-3,-26],[0,-19],[-1,-9],[-2,-14],[-1,-7],[-1,-12],[-1,-4],[0,-3],[-2,-12],[-1,-4],[0,14],[-1,6],[-1,10],[-1,7],[-2,0],[0,3],[-2,4],[-1,-7],[-1,-8],[-2,6],[0,10],[1,11],[2,18],[1,22],[1,22],[0,28],[0,17],[-1,17],[-2,9],[-1,1],[-2,-6],[-1,-10],[-1,-12],[-1,-13],[0,-11],[0,-7],[-1,-8],[-2,-2],[-1,3],[0,14],[-2,26],[-1,16],[1,11],[0,18],[-2,26],[-1,20],[-1,0],[-1,2],[-1,6],[0,7],[1,8],[1,13],[1,11],[1,-3],[0,-17],[1,-2],[0,22],[1,19],[1,13],[1,14],[2,7],[2,16],[1,13],[1,9],[-1,12],[-2,8],[-1,0],[-3,-5],[-1,-16],[-2,-18],[-7,-35],[-1,-4],[-3,-14],[-1,-10],[-2,-3],[-3,-4],[-2,2],[-1,3],[-1,4],[-1,10],[0,18],[0,19],[-1,5],[-3,0],[-2,-1],[-2,0],[-2,-19],[1,-24],[-1,-5],[-1,10],[-1,6],[-2,-1],[-4,-11],[-3,-8],[-2,-13],[-3,-12],[-1,-11],[-2,-13],[-1,-20],[-1,-14],[-1,-6],[-1,-4],[0,8],[-1,17],[0,4],[-7,4],[-3,6],[-2,6],[-2,72],[1,21],[0,53],[-1,29],[0,10],[-1,-5],[-1,-17],[-1,-39],[-1,-38],[0,-29],[1,-16],[-1,-33],[0,-42],[-1,-6],[-1,-8],[-2,-2],[-3,2],[-1,7],[-2,-9],[0,-9],[1,-9],[1,-10],[2,-5],[1,5],[2,7],[0,3],[2,-8],[3,-9],[2,-16],[1,-3],[2,6],[1,-4],[2,-2],[4,-6],[1,-12],[1,-9],[2,-17],[1,-14],[1,0],[3,11],[3,20],[2,3],[1,-3],[1,-7],[2,-2],[1,5],[2,6],[1,-1],[3,10],[2,11],[1,1],[0,12],[1,-4],[2,-23],[8,-48],[2,-12],[0,-20],[1,-20],[2,-29],[2,-23],[2,-21],[0,-19],[-1,-30],[-3,-22],[-3,-9],[-1,-4],[-1,-18],[-2,-16],[-2,-13],[-2,-11],[-1,-1],[-3,-7],[-2,1],[-1,0],[-2,-10],[-1,-19],[-1,-4],[-1,-18],[-2,-15],[-2,-7],[-2,-5],[-2,-8],[-2,-5],[-2,6],[-2,2],[-2,-5],[-1,3],[-2,-7],[-2,-9],[-1,-10],[0,8],[-1,14],[-1,3],[-1,-3],[-2,6],[-2,2],[-3,-1],[-1,3],[-1,14],[-1,12],[-4,8],[-3,3],[-2,2],[-1,-5],[-2,-10],[0,-17],[-1,-8],[0,-1],[-1,6],[0,18],[-1,8],[-1,5],[0,10],[-1,9],[-1,2],[-1,4],[-1,-1],[-1,1],[-1,-6],[-1,-2],[-1,1],[-1,5],[-1,11],[-1,15],[0,-13],[-1,-9],[0,-14],[1,-11],[1,-6],[1,7],[0,-12],[-1,-6],[1,-15],[0,-12],[-1,-9],[-1,-7],[0,-6],[-1,-1],[-1,-7],[-1,-8],[-1,3],[0,5],[-1,6],[-1,4],[-1,1],[-1,-1],[0,3],[-1,-7],[-1,-7],[0,-5],[0,-13],[0,-11],[-1,-8],[-1,-10],[0,-9],[-1,-5],[-1,-4],[-1,-9],[-1,-11],[-1,-7],[-1,-5],[-1,-6],[-1,-3],[-1,18],[-1,7],[-2,11],[0,4],[-1,3],[-1,11],[-1,9],[-1,2],[-1,12],[-1,3],[-1,8],[-1,10],[-2,7],[-1,3],[-1,-16],[1,-28],[0,-9],[2,-5],[1,-1],[2,-8],[0,-14],[1,-17],[0,-7],[0,-23],[1,-20],[1,-22],[0,-13],[-1,-9],[-1,-4],[-4,-10],[-1,-18],[-2,-14],[-1,-15],[-1,-10],[-1,-6],[-2,-43],[-2,-32],[-1,-26],[0,-15],[-1,-11],[-1,-4],[-3,-12],[-1,-17],[-1,-15],[-1,-15],[-1,-11],[-2,3],[-1,8],[-1,22],[0,25],[-1,4],[0,21],[0,29],[-1,16],[0,-18],[-1,-20],[-1,6],[0,12],[-1,27],[1,16],[2,19],[-1,20],[1,11],[1,34],[0,29],[0,24],[0,21],[-1,19],[-3,18],[-1,8],[-3,4],[-2,-9],[-2,-11],[-4,-8],[-2,-2],[-2,-8],[1,-5],[-1,-17],[0,-11],[2,-6],[1,-3],[-1,-19],[-2,-15],[3,7],[4,18],[3,16],[2,9],[2,2],[1,-4],[-1,-13],[0,-22],[0,-21],[-2,-28],[-1,-21],[-1,-27],[0,-16],[-2,-18],[-1,-36],[1,-24],[1,-13],[1,-13],[0,-18],[1,-23],[1,-10],[1,1],[1,-34],[0,-13],[0,-16],[1,-8],[1,-15],[0,-18],[0,-14],[0,-29],[-1,-27],[-1,-23],[-1,-20],[-1,3],[-2,11],[-1,18],[-2,11],[-3,12],[-2,5],[-1,13],[-2,10],[-1,4],[-1,13],[-1,10],[-1,8],[-2,6],[-1,8],[-1,3],[-1,0],[-1,-4],[-3,-11],[-2,-12],[-2,-5],[-3,-6],[-2,-2],[-3,6],[-2,-4],[-2,-5],[-2,0],[-1,10],[0,13],[-1,-4],[-2,-25],[-1,-26],[1,-18],[2,-8],[-1,-4],[-2,-12],[-3,-23],[-2,0],[-2,1],[-2,5],[-2,5],[-2,-8],[-1,-14],[-2,-4],[-2,-23],[-1,-15],[-2,-4],[-2,-5],[-1,-4],[-1,-14],[1,-3],[1,2],[1,4],[1,4],[1,-2],[2,10],[2,12],[1,9],[1,12],[1,6],[2,6],[1,-2],[1,-7],[0,12],[0,11],[1,-10],[0,-14],[2,-6],[3,-9],[2,-4],[2,-1],[1,-3],[2,-3],[2,2],[1,10],[2,7],[0,1],[2,5],[1,-4],[1,-14],[1,-9],[2,-4],[1,-2],[2,7],[1,11],[1,5],[2,-2],[1,-12],[1,-10],[2,-14],[1,-28],[0,-12],[-1,-15],[-3,-21],[-2,-13],[-2,-13],[0,-15],[-1,-16],[0,-14],[0,-16],[-1,-1],[0,20],[0,13],[-1,5],[-3,3],[-2,-1],[0,-6],[-1,-13],[-2,-3],[-2,-13],[-3,-13],[-1,-17],[-2,-16],[0,-18],[0,3],[2,6],[2,13],[2,18],[3,16],[1,6],[2,-2],[2,-7],[1,-12],[1,-8],[2,-3],[2,7],[0,8],[1,4],[1,1],[2,-6],[2,-2],[2,-8],[1,-11],[2,-15],[1,-15],[1,-1],[1,-4],[2,-21],[1,-15],[-1,-3],[0,-14],[-1,-11],[-1,-18],[0,-10],[0,-11],[0,-28],[-1,-9],[0,-10],[0,-14],[-2,-2],[0,-5],[-1,-13],[0,-8],[-2,-3],[-1,-5],[-1,3],[-1,-4],[-1,3],[-1,-7],[0,-13],[-1,-10],[-1,-12],[0,-19],[0,-19],[-1,-14],[1,-12],[0,-15],[0,-8],[-1,2],[-2,-2],[-1,-1],[-2,6],[-2,3],[-2,-3],[-3,-4],[-1,-4],[-1,3],[-1,-8],[-1,-3],[-1,1],[-2,-3],[-1,4],[-1,8],[-1,8],[-1,12],[0,11],[-1,1],[-1,6],[1,15],[1,17],[0,19],[1,17],[0,12],[-1,3],[0,12],[0,14],[0,29],[0,23],[-1,-6],[-1,-3],[0,-13],[0,-19],[0,-21],[-1,-14],[0,-12],[-1,-9],[-1,-7],[1,-13],[0,-2],[0,-97],[2,-98],[-4,-60],[-7,-61],[-6,-14],[-4,-23],[-2,-60],[5,-47],[2,5],[2,56],[16,51],[-1,-47],[3,0],[-7,-106],[-7,-5],[-7,-28],[-4,0],[-1,-32],[-4,-19],[-1,46],[-5,24],[-6,-47],[-3,-32],[-2,-19],[2,-42],[-4,-65],[-4,-28],[0,-13],[-4,-42],[-3,4],[-3,-41],[1,-65],[-4,-19],[-4,-9],[-3,0],[-1,-42],[-2,-28],[-4,-9],[-2,-13],[-2,-4],[-1,-2],[-2,-2],[-1,0],[-1,0],[-1,5],[-3,-6],[-1,7],[-1,22],[-1,23],[0,12],[-1,4],[-1,10],[-2,23],[-2,1],[-1,0],[-5,-22],[-3,-17],[-2,-22],[-4,-16],[-2,-12],[-3,-5],[-3,-4],[-1,-8],[-2,1],[-2,6],[-1,10],[1,25],[1,24],[1,22],[0,24],[1,18],[0,23],[2,23],[0,28],[2,10],[1,21],[1,23],[2,14],[1,24],[0,18],[2,19],[1,45],[1,28],[1,23],[2,19],[1,24],[0,18],[1,21],[4,26],[4,18],[3,5],[1,-15],[2,-1],[1,9],[2,28],[1,16],[1,11],[1,26],[0,21],[0,19],[1,13],[0,6],[1,5],[1,12],[0,18],[0,15],[1,19],[1,6],[0,8],[1,9],[1,8],[0,12],[1,12],[0,6],[1,1],[1,5],[0,1],[0,4],[6,9],[5,23],[0,9],[4,10],[2,23],[2,0],[4,0],[6,42],[4,51],[2,70],[2,27],[3,19],[6,84],[8,41],[-1,42],[-6,-32],[-6,-42],[-4,-61],[-7,-55],[0,46],[-1,37],[2,24],[2,69],[5,79],[-5,33],[-2,65],[-1,-65],[-4,-103],[-3,-106],[-2,-43],[-2,-26],[-3,-24],[-4,-14],[-5,4],[-1,0],[-1,2],[0,-2],[-1,-4],[-1,1],[-1,2],[-2,-2],[-1,-1],[0,-3],[-1,-2],[0,51],[1,42],[-1,42],[2,23],[0,19],[-1,32],[2,14],[2,33],[2,65],[5,88],[4,60],[-2,23],[0,33],[1,14],[6,37],[3,37],[3,28],[5,23],[0,8],[0,1],[6,39],[3,29],[2,18],[3,19],[1,23],[2,25],[0,21],[1,13],[2,11],[3,5],[3,3],[3,-1],[1,-2],[1,11],[0,17],[-3,4],[-2,5],[-2,12],[-1,-2],[-1,-1],[-1,3],[0,13],[0,21],[-2,12],[1,18],[1,12],[-2,11],[-1,4],[-3,-9],[-2,-10],[-1,-20],[0,-17],[-2,-22],[-1,-15],[0,-16],[0,-18],[-1,-15],[0,-12],[-1,-9],[-2,-14],[-1,-8],[-2,-8],[-1,-2],[-3,-13],[-2,-5],[-2,0],[-2,1],[-1,-3],[0,-25],[-2,-42],[-3,-42],[-5,-23],[-3,-51],[-5,-33],[-5,-51],[-1,-9],[-2,-28],[-4,-60],[-5,-93],[-3,-47],[0,4],[-1,-2],[-1,-11],[-2,-29],[-1,-30],[-2,-21],[-1,-27],[-1,-27],[-2,-13],[-1,-27],[-2,-17],[0,-15],[-1,-12],[-2,-6],[-2,-4],[-2,-4],[-1,11],[-1,9],[-1,3],[0,17],[-3,69],[-1,22],[-1,-4],[-1,4],[-2,-7],[-1,18],[1,12],[1,11],[1,15],[1,11],[0,14],[1,9],[0,17],[1,15],[1,8],[2,20],[1,30],[2,22],[-1,6],[-1,13],[1,26],[-1,18],[-1,15],[0,25],[2,-1],[3,4],[1,19],[-2,6],[1,16],[2,8],[0,17],[0,14],[2,29],[1,26],[2,15],[2,12],[1,13],[3,12],[2,15],[2,16],[1,21],[1,3],[1,-3],[1,11],[1,5],[1,1],[1,2],[1,5],[2,6],[2,17],[1,22],[1,9],[2,0],[2,0],[1,4],[0,4],[1,7],[0,5],[-2,-4],[-1,0],[-1,-2],[-1,1],[-1,11],[-1,-6],[-1,-1],[-1,-9],[-1,0],[-1,8],[0,8],[-2,-9],[-1,-5],[-1,17],[-1,17],[-3,-11],[-1,-13],[0,29],[0,21],[0,21],[-1,-11],[-1,-7],[-1,-22],[-1,-11],[-1,-9],[-4,-15],[-5,-7],[-1,22],[-2,16],[-3,17],[-4,34],[-4,21],[-5,24],[-5,-17],[-6,-2],[-1,11],[-2,10],[-3,25],[-2,21],[-3,18],[-1,-9],[-2,-25],[-1,-30],[-5,-24],[-4,-11],[-3,2],[-2,10],[-2,7],[-5,-1],[-6,4],[-4,-5],[-3,-5],[-3,-18],[-2,-45],[-4,-47],[-5,-21],[-1,2],[-1,16],[-1,22],[-2,10],[-6,4],[-3,-10],[-1,-6],[-2,-24],[-3,-38],[0,-43],[-1,-35],[2,-44],[3,-48],[1,-41],[2,-23],[2,-1],[0,-13],[3,-1],[0,-15],[1,-9],[1,-16],[0,-7],[3,-20],[2,-4],[3,16],[1,11],[1,4],[0,-17],[2,-13],[3,1],[3,23],[3,23],[1,14],[2,19],[3,50],[2,46],[3,63],[5,66],[4,17],[2,7],[3,11],[3,-5],[2,11],[3,-1],[2,12],[3,-13],[6,-15],[3,-5],[5,23],[2,-6],[1,-1],[1,16],[2,2],[1,-9],[0,-16],[1,-1],[1,-16],[2,10],[1,-11],[1,13],[-1,10],[-1,13],[2,21],[1,5],[1,-14],[2,-25],[1,8],[-1,12],[-1,21],[1,10],[2,-16],[2,-12],[0,-24],[-1,-21],[1,-13],[1,-31],[0,-26],[-1,-54],[-2,-44],[-1,-24],[-1,-26],[0,-27],[2,-7],[-1,-12],[-1,-7],[-1,-12],[0,-20],[0,-19],[1,-27],[-1,-26],[-2,-35],[0,-18],[-1,-15],[-2,3],[-1,7],[-1,15],[-2,17],[-1,-5],[1,-8],[0,-15],[1,-14],[0,-33],[-1,-40],[0,-31],[-3,-17],[-2,-20],[-3,-2],[-1,0],[-1,-11],[2,-14],[3,-14],[1,-15],[1,-15],[1,-8],[1,1],[0,-14],[1,-18],[1,-17],[-1,-15],[-1,-13],[0,-19],[1,13],[1,10],[1,-3],[2,-9],[1,1],[1,-10],[1,-15],[-1,-9],[-1,-3],[0,14],[-1,6],[0,-10],[-1,-21],[1,-13],[-1,-5],[-1,-3],[-1,-12],[0,16],[-1,24],[-2,0],[1,-16],[-1,-13],[0,-9],[-1,-1],[-1,-3],[-1,-6],[0,-1],[-1,2],[-1,0],[-1,-9],[1,-10],[-1,-8],[-1,-16],[-2,-8],[-1,3],[1,23],[1,7],[1,13],[-1,-2],[-2,-13],[-1,-10],[-2,-11],[-1,-8],[-3,2],[0,13],[0,20],[-1,-6],[-2,-8],[-2,-1],[-4,11],[-2,4],[-1,-4],[0,-22],[3,-18],[2,-9],[1,-9],[2,-9],[1,-8],[2,-11],[1,-38],[1,-25],[0,-16],[-2,-45],[-1,-7],[-2,-3],[-2,4],[-2,10],[-1,18],[-1,17],[-1,3],[-1,-5],[-1,-13],[1,-26],[1,-50],[0,-27],[-3,-28],[-2,-12],[-2,-13],[-2,-1],[0,18],[1,19],[-1,25],[0,29],[0,34],[0,42],[1,12],[0,19],[-2,6],[-2,10],[-2,12],[1,-30],[1,-34],[1,-94],[0,-74],[0,-46],[-1,-49],[1,2],[1,4],[0,10],[1,7],[-1,18],[1,14],[2,1],[0,10],[1,2],[1,-2],[0,17],[1,8],[3,24],[2,14],[1,12],[2,1],[-1,13],[0,16],[0,16],[1,-1],[2,-7],[1,-6],[1,-11],[0,-14],[0,-19],[-1,-20],[-3,-17],[-2,-7],[-2,-9],[-1,-9],[0,-11],[-1,-5],[-1,-14],[-3,-20],[-2,-13],[-2,-7],[-1,-6],[-1,-10],[-2,-12],[-1,0],[1,13],[1,14],[0,13],[1,55],[0,38],[0,40],[0,30],[0,36],[-1,32],[0,32],[-1,33],[-2,34],[-3,30],[-1,19],[-2,9],[-3,0],[-3,22],[1,13],[1,11],[0,15],[2,16],[-1,10],[2,5],[-1,10],[1,8],[3,-17],[4,-22],[2,-10],[2,-12],[2,-2],[4,46],[0,15],[1,9],[0,14],[-2,5],[-1,8],[-1,4],[-1,-4],[-2,2],[-1,12],[0,-5],[-1,2],[-1,7],[-1,-8],[-1,-3],[-4,2],[-1,3],[-1,-4],[-1,-14],[-1,-16],[-1,-9],[-2,3],[-1,-7],[-1,-21],[-1,-19],[-1,21],[-2,27],[-2,29],[-3,22],[-3,20],[-4,13],[-5,23],[-3,18],[-3,15],[-4,10],[-4,16],[-3,11],[-2,2],[-1,-8],[-2,11],[-2,4],[-1,52],[1,23],[0,12],[0,23],[1,33],[1,49],[0,46],[0,43],[0,77],[0,30],[1,41],[-1,44],[-1,42],[-1,36],[0,45],[0,30],[1,54],[-2,93],[0,53],[0,53],[-1,73],[-2,40],[1,-10],[1,-5],[1,13],[0,19],[-1,-1],[0,-13],[-1,13],[-1,7],[-1,13],[-2,29],[-1,25],[-2,23],[-2,28],[0,19],[-1,22],[0,30],[-1,27],[-3,44],[-3,42],[-3,35],[-2,17],[-3,10],[0,-7],[-2,-2],[-1,2],[-2,3],[-3,-5],[-2,-7],[-2,-1],[-2,-1],[-2,-5],[-1,6],[0,15],[1,10],[1,0],[1,-5],[0,13],[0,14],[-1,13],[-1,18],[-3,10],[-1,1],[-2,-3],[-2,-7],[-1,-10],[-2,-6],[-1,-9],[-1,-5],[-1,-13],[-1,-10],[-1,9],[0,16],[-1,2],[-2,4],[-3,6],[-2,5],[-2,0],[-1,7],[-1,10],[-1,7],[-2,16],[1,7],[1,7],[1,14],[1,9],[1,-5],[0,-13],[0,-13],[1,-14],[2,-1],[2,8],[2,12],[0,16],[0,18],[1,22],[-2,1],[-1,15],[1,7],[1,8],[0,14],[1,6],[1,14],[1,17],[-2,17],[0,22],[-3,18],[-3,6],[-1,7],[-2,4],[1,14],[-2,5],[-1,9],[0,16],[-1,12],[-1,6],[-1,3],[0,13],[2,2],[2,11],[-2,20],[3,50],[1,-1],[2,7],[0,-9],[1,-17],[0,-16],[1,-15],[1,1],[2,-5],[1,-7],[1,-3],[2,-7],[4,-16],[2,-3],[2,19],[3,-53],[2,-20],[1,4],[0,8],[-3,52],[0,5],[0,31],[-1,40],[-3,10],[-3,-30],[-1,-2],[-2,4],[1,6],[3,30],[1,21],[1,36],[0,34],[3,72],[0,59],[-1,37],[-1,3],[-2,-2],[-2,0],[0,16],[1,18],[1,18],[1,15],[1,2],[0,11],[1,12],[1,5],[1,15],[1,14],[1,8],[2,10],[1,6],[1,9],[1,2],[1,12],[1,9],[1,10],[1,7],[1,-11],[1,-22],[1,-22],[1,4],[-1,15],[1,6],[1,-1],[0,13],[-1,25],[0,20],[-2,20],[-1,7],[-1,-18],[-1,-23],[-1,-14],[0,19],[1,53],[3,62],[2,14],[-1,28],[3,42],[2,28],[2,10],[1,14],[1,6],[2,3],[1,9],[3,0],[1,11],[2,8],[3,30],[1,14],[3,24],[3,15],[2,1],[0,-14],[-2,-12],[-3,-11],[2,-19],[2,-18],[4,-16],[1,-24],[1,-36],[0,-21],[1,-13],[2,2],[-1,14],[1,21],[0,26],[-1,19],[1,12],[1,-1],[2,1],[1,11],[1,17],[-1,-2],[-2,-6],[-1,-6],[-2,0],[-1,9],[-1,15],[0,18],[-1,10],[-1,3],[0,7],[0,16],[1,14],[1,12],[-2,-3],[-1,-11],[-1,6],[1,12],[0,21],[1,35],[1,42],[0,34],[1,26],[1,5],[2,-1],[3,-21],[2,-4],[1,-3],[2,-3],[2,-10],[2,5],[5,-24],[4,-11],[3,-5],[1,-21],[3,-3],[3,4],[0,16],[-3,16],[-3,18],[-9,35],[3,19],[3,23],[1,19],[2,6],[0,15],[3,27],[2,34],[2,31],[1,13],[1,8],[2,7],[3,11],[4,17],[2,17],[1,23],[-1,25],[-3,25],[2,1],[1,2],[3,-11],[4,-6],[3,-2],[3,16],[4,4],[2,-3],[4,-2],[2,9],[1,18],[0,22],[3,12],[1,10],[2,17],[0,16],[1,8],[1,-10],[4,-5],[2,6],[2,16],[3,-31],[14,-16],[11,-26],[3,-5],[5,5],[3,12],[3,-10],[1,-5],[2,4],[0,7],[1,2],[0,-19],[1,-11],[2,-7],[2,4],[2,5],[0,-13],[0,-11],[1,-17],[1,-11],[0,-18],[1,-7],[2,-5],[0,-8],[2,-13],[0,-15],[0,-17],[0,-28],[-1,-44],[1,-36],[0,-24],[0,-22],[0,-14],[1,-25],[1,-15],[0,-13],[1,-14],[0,-21],[0,-22],[-1,-21],[-1,-17],[-1,-11],[-1,-16],[0,-17],[-1,-2],[-1,4],[-1,-2],[-1,-2],[-1,-3],[-4,-13],[-5,-6],[-5,-13],[-2,-4],[-3,-8],[-5,-11],[-4,-11],[0,-19],[-1,-15],[2,1],[3,17],[4,-15],[3,-6],[3,18],[2,7],[3,5],[3,5],[2,9],[2,-6],[2,1],[1,1],[1,9],[1,12],[0,12],[1,-4],[1,2],[1,8],[1,5],[1,0],[1,-6],[0,-5],[2,2],[1,2],[2,2],[2,-2],[2,-10],[2,-11],[1,-14],[1,-21],[0,-15],[1,-29],[0,-47],[0,-31],[0,-14],[0,-18],[0,-26],[0,-19],[1,-18],[0,-20],[1,-9],[1,-17],[0,-24],[0,-23],[0,-22],[0,-13],[1,-17],[0,-22],[0,-16],[-1,-29],[2,-39],[1,-27],[1,-35],[1,-15],[2,-22],[1,-6],[2,-2],[3,-53],[2,-8],[1,-4],[1,-5],[0,-16],[-1,-2],[-1,-4],[1,-11],[2,-14],[1,-10],[2,-6],[1,-10],[1,-33],[2,-56],[1,-6],[1,7],[1,-42],[2,-13],[0,-18],[1,-6],[1,-13],[-1,-30],[0,-13],[1,-7],[1,-3],[1,-11],[2,-31],[0,-16],[0,-15],[0,-14],[1,-14],[1,-8],[1,-9],[1,-10],[0,-3],[1,-6],[1,-14],[2,-6],[1,-2],[2,-8],[1,-7],[0,-10],[1,-6],[3,-4],[1,0],[1,3],[1,2],[1,-11],[1,-7],[1,-4],[1,1],[1,-1],[2,-20],[1,-8],[2,0],[1,1],[1,1],[1,-3],[0,-9],[2,-4],[1,-11],[1,-12],[1,-6],[1,-9],[1,-7],[1,-8],[1,-6],[1,-4],[1,7],[0,4],[1,14],[0,13],[-1,17],[0,23],[-2,19],[-2,7],[-2,4],[-2,-1],[-1,1],[-1,1],[-1,2],[-1,15],[-1,13],[0,14],[-1,13],[-1,3],[-1,3],[-1,2],[-2,-4],[-1,2],[-2,-2],[-1,6],[-1,2],[-2,4],[-2,13],[-1,9],[-2,16],[-2,6],[0,15],[-1,25],[1,21],[-1,13],[-2,12],[-1,19],[-1,26],[0,28],[-1,19],[-1,13],[0,11],[-1,8],[0,27],[0,14],[0,14],[-1,5],[-1,51],[-3,30],[-1,22],[-1,19],[-1,20],[-1,20],[-1,21],[0,10],[-1,26],[0,23],[0,18],[0,63],[-1,19],[0,26],[0,18],[0,17],[0,21],[-1,23],[1,23],[0,26],[0,14],[0,14],[0,18],[0,12],[0,19],[0,21],[-1,24],[-1,28],[0,24],[0,27],[1,10],[1,4],[1,-1],[1,-12],[2,-6],[-1,14],[0,9],[-1,8],[-1,11],[0,14],[0,26],[-1,30],[-1,11],[-2,9],[-1,12],[-1,25],[-2,42],[-1,24],[-1,25],[1,9],[1,8],[0,5],[-1,12],[0,15],[1,13],[1,-1],[1,1],[1,-5],[1,2],[1,1],[1,-8],[-1,-10],[1,-6],[0,-5],[-1,-8],[-2,0],[0,-12],[2,-5],[2,-5],[0,-23],[0,-20],[2,10],[1,-1],[1,-1],[2,0],[1,-11],[1,-23],[1,-18],[1,4],[1,-2],[1,-16],[1,-13],[2,-11],[2,-9],[2,-9],[1,-1],[0,14],[1,-1],[1,2],[-1,-16],[2,-2],[1,6],[1,-4],[8,-33],[1,-8],[1,-3],[2,1],[2,-2],[1,2],[1,18],[-1,12],[-1,7],[-1,12],[-2,8],[0,10],[-1,14],[-2,7],[1,13],[-1,6],[-2,-1],[-4,5],[-2,3],[-2,0],[-1,8],[-1,7],[-2,-1],[-1,8],[-1,10],[-2,18],[-2,12],[-1,11],[-1,3],[-2,8],[-1,12],[-1,17],[-1,33],[-2,19],[-1,16],[-2,8],[-2,23],[-1,20],[-2,24],[-2,26],[-2,15],[0,10],[-2,4],[-1,19],[-2,12],[-1,11],[0,15],[-1,14],[-2,8],[0,18],[1,16],[0,17],[0,14],[0,16],[2,19],[3,8],[2,-3],[4,-9],[2,-2],[1,-4],[1,5],[2,-1],[2,-2],[4,0],[1,3],[1,2],[2,2],[1,8],[1,-5],[3,-15],[3,-4],[1,11],[1,5],[1,-9],[1,-6],[1,-2],[1,-7],[1,-9],[1,-3],[2,2],[1,2],[1,-8],[2,-8],[2,3],[2,2],[2,-2],[0,-4],[1,-3],[2,0],[1,5],[1,1],[1,-9],[1,-10],[1,-10],[1,-2],[1,-8],[1,-14],[1,-19],[0,-16],[1,-13],[1,-19],[1,-15],[0,-18],[0,-24],[1,-22],[1,-30],[1,-15],[0,-2],[2,7],[-1,18],[1,23],[2,9],[1,-1],[1,-12],[1,-12],[1,-20],[1,-16],[1,-8],[1,12],[1,-4],[1,3],[0,12],[1,4],[0,12],[-1,9],[0,7],[0,15],[-1,13],[0,7],[-1,6],[-2,10],[-1,4],[0,16],[-1,34],[-1,25],[0,20],[-2,7],[-1,18],[-1,17],[-1,11],[-1,6],[-1,9],[0,9],[-1,6],[-1,2],[-1,5],[-1,32],[-1,3],[-1,-8],[-1,-8],[-1,1],[-1,11],[-1,13],[-1,4],[0,16],[-1,12],[-2,8],[-1,14],[-2,11],[-1,-2],[0,-1],[-2,9],[-1,13],[-2,5],[-1,2],[-2,0],[-1,4],[-2,15],[-1,4],[-2,11],[-3,6],[-3,10],[-2,11],[-1,7],[-2,1],[-1,-6],[-1,-6],[0,1],[0,19],[0,3],[-1,-2],[-2,3],[-1,14],[-2,12],[-2,7],[-3,3],[-1,-4],[-2,0],[-1,10],[-2,13],[-2,6],[-5,17],[-3,-1],[-2,-2],[-2,-4],[-1,-13],[-1,-3],[-2,3],[-1,-1],[0,15],[0,9],[2,5],[-2,15],[-2,12],[-1,6],[-1,10],[0,11],[1,22],[-1,14],[-1,-2],[-1,12],[-1,9],[-1,18],[-1,21],[1,17],[0,14],[1,15],[0,21],[0,103],[-1,59],[1,40],[0,42],[0,26],[-1,21],[0,12],[2,15],[3,16],[2,15],[3,16],[1,19],[0,31],[3,6],[4,4],[1,7],[2,7],[0,12],[1,22],[1,27],[0,16],[-1,19],[0,21],[1,11],[0,16],[1,17],[1,3],[0,-14],[0,-15],[2,-3],[1,1],[2,-9],[1,-2],[2,5],[0,10],[2,11],[2,-1],[2,-2],[1,-4],[1,-1],[1,4],[1,21],[1,14],[2,3],[2,1],[2,5],[0,20],[0,19],[1,16],[2,-2],[0,6],[2,0],[1,10],[1,11],[0,17],[1,4],[1,-10],[0,-17],[1,-13],[1,-13],[1,-11],[3,-10],[1,-2],[1,4],[1,4],[1,-7],[2,-4],[2,-3],[1,-5],[1,5],[1,-3],[1,-9],[1,1],[2,1],[1,9],[1,5],[1,-5],[1,-3],[1,1],[1,3],[1,0],[1,-6],[0,-16],[-1,-15],[-1,-23],[0,-9],[-1,-11],[0,-10],[-3,-5],[-4,10],[-3,-2],[-1,-18],[1,-15],[4,5],[6,-56],[2,-28],[4,-12],[3,13],[0,-3],[1,-10],[2,-11],[1,-4],[1,-6],[1,0],[1,-6],[1,-17],[0,-19],[1,-26],[0,-18],[1,-16],[0,-21],[1,-19],[0,-27],[1,-12],[0,-21],[0,-19],[1,-10],[0,-9],[0,-29],[1,-25],[0,-23],[1,-10],[0,-18],[-1,-10],[-1,-6],[0,-12],[0,-15],[0,-21],[-1,-19],[0,-19],[0,-30],[-1,-22],[1,-38],[0,-23],[2,-20],[0,-9],[1,-14],[0,-17],[-1,-18],[0,-18],[1,-28],[1,-29],[1,-34],[1,-24],[1,-20],[0,-17],[1,-12],[0,-25],[1,-17],[-1,-18],[1,-17],[0,-10],[1,-11],[1,-5],[0,-31],[2,-18],[0,-17],[1,-23],[1,-23],[0,-30],[2,-23],[1,-3],[2,3],[-2,12],[-1,13],[-1,10],[0,12],[0,9],[1,7],[-1,57],[-1,37],[0,31],[0,27],[-1,24],[0,30],[0,19],[0,22],[-1,42],[-4,72],[0,24],[0,31],[1,29],[1,-9],[2,-16],[1,-8],[2,-7],[1,-4],[1,-8],[1,-3],[1,3],[2,-2],[0,-9],[1,-20],[1,-13],[2,-6],[1,6],[2,-2],[1,-18],[1,-13],[1,-9],[1,-9],[1,-5],[1,0],[-1,13],[0,10],[0,13],[-3,34],[-1,23],[-1,7],[-1,5],[-1,16],[-1,21],[-2,14],[-2,9],[-2,13],[0,12],[-2,15],[-1,40],[-1,8],[0,2],[0,-2],[-1,-20],[-1,4],[-1,9],[0,33],[1,45],[2,26],[1,34],[0,29],[0,16],[1,8],[1,-4],[1,-7],[0,-8],[1,-11],[1,-10],[2,-6],[1,-3],[1,1],[2,5],[1,-3],[1,-4],[1,-3],[1,11],[1,11],[1,4],[3,-13],[1,-16],[1,-8],[2,-4],[1,-15],[1,-15],[2,-16],[0,-17],[1,-42],[0,-26],[0,-17],[2,-48],[2,-49],[1,-6],[1,-14],[1,1],[1,-8],[2,-16],[2,-11],[1,8],[2,9],[1,11],[1,-2],[1,-16],[1,-11],[1,3],[-1,21],[1,18],[1,13],[1,17],[0,23],[-1,21],[-1,21],[-2,34],[-1,26],[-1,28],[0,17],[-2,5],[-2,4],[-1,18],[-1,6],[-1,1],[-2,7],[-2,-4],[0,10],[-1,12],[0,15],[-1,14],[-1,12],[-1,7],[-2,7],[-2,17],[-2,13],[-1,18],[-1,8],[-2,8],[-2,4],[-1,-3],[-1,-6],[-2,1],[-1,9],[-1,8],[-2,9],[-1,3],[0,13],[-1,26],[-1,33],[-1,20],[-1,12],[-1,11],[0,16],[0,20],[-1,11],[0,13],[0,18],[-1,16],[0,13],[2,12],[0,14],[1,4],[2,-8],[5,-7],[3,-12],[2,-10],[3,-12],[1,-4],[1,-2],[2,-2],[1,-10],[1,-13],[4,-24],[4,-21],[3,-20],[2,-17],[2,-10],[2,-3],[-1,17],[2,-3],[2,-12],[0,-10],[2,-4],[1,-3],[1,-7],[1,16],[2,-5],[2,-10],[1,-8],[1,-9],[2,3],[2,-11],[2,-11],[2,1],[1,5],[0,15],[2,0],[1,-12],[1,-15],[1,0],[1,-7],[2,0],[2,0],[1,-1],[2,-9],[0,-8],[0,17],[1,1],[1,-12],[0,-15],[-1,-17],[-1,-33],[0,-16],[-1,-53],[-1,-34],[0,-46],[-1,-43],[-1,-32],[1,-13],[2,0],[1,-11],[1,-23],[1,-25],[0,-13],[1,-8],[0,-11],[1,-20],[1,-16],[1,-1],[2,-4],[1,-2],[0,13],[-1,22],[-1,19],[0,22],[-1,16],[-1,8],[-1,16],[0,13],[-1,17],[-1,15],[1,24],[1,19],[0,28],[1,35],[2,56],[0,22],[0,27],[0,28],[0,33],[0,23],[1,13],[-1,58],[-1,23],[1,4],[1,-3],[-1,20],[0,7],[0,19],[-1,26],[0,12],[-1,7],[-1,8],[0,18],[0,14],[-1,16],[0,22],[-2,29],[-1,26],[-2,23],[-1,18],[0,19],[-1,18],[0,14],[-1,12],[-1,20],[-1,23],[0,16],[0,11],[1,-1],[2,-1],[1,-9],[0,-10],[3,1],[1,-8],[2,-5],[1,-4],[0,-10],[2,-8],[1,-6],[2,-7],[3,-12],[0,-17],[1,-14],[1,-11],[1,-9],[1,-12],[3,-12],[1,-4],[1,-12],[1,-2],[1,-9],[2,-3],[1,-5],[1,-19],[1,-15],[0,-9],[0,-11],[2,-19],[1,-8],[2,-12],[2,-17],[2,-12],[1,-13],[2,-8],[1,1],[1,-3],[1,-10],[2,-21],[1,-15],[1,-4],[1,13],[-1,17],[-1,26],[-1,26],[-2,14],[-2,9],[-3,9],[-2,11],[-1,17],[0,25],[0,18],[-1,19],[-1,11],[0,12],[1,14],[-1,7],[-1,4],[-2,5],[-1,9],[-1,13],[-1,18],[-2,11],[-1,6],[0,6],[-1,5],[-1,11],[0,14],[0,15],[-1,10],[-3,38],[-2,14],[-2,17],[-1,11],[-1,7],[0,21],[-1,15],[-6,27],[0,5],[0,14],[-1,15],[0,9],[-1,15],[-1,12],[-2,7],[-4,10],[-2,6],[-3,34],[-3,23],[-3,16],[-2,14],[-1,21],[0,24],[-1,16],[-1,8],[0,23],[-1,10],[-1,2],[-2,16],[0,15],[-1,14],[0,13],[0,15],[1,11],[1,3],[2,6],[3,1],[2,0],[1,-3],[1,-11]],[[7311,33648],[1,-13],[1,-9],[0,-5],[1,-4],[1,-15],[-1,-22],[0,1],[-2,3],[-2,6],[-1,-2],[-1,21],[-2,17],[-1,20],[2,-1],[1,-4],[2,1],[0,8],[1,-2]],[[6739,33655],[0,-12],[2,1],[1,1],[0,-6],[-1,-2],[-3,-1],[-4,0],[-2,-1],[-3,-16],[0,-1],[-1,-2],[0,-5],[0,1],[-3,-14],[-1,-7],[-1,2],[1,10],[0,17],[2,6],[1,7],[2,4],[0,-1],[3,9],[0,4],[-1,8],[-1,2],[-1,4],[1,7],[2,4],[1,9],[2,3],[2,0],[0,-4],[1,-14],[1,-13]],[[7371,33834],[-1,-4],[-2,5],[-1,6],[0,9],[1,0],[1,0],[2,0],[0,-16]],[[6872,33940],[1,-3],[0,14],[1,-9],[0,7],[2,-3],[0,-7],[1,0],[0,-17],[-1,-5],[-1,-2],[0,-12],[-1,9],[0,6],[-1,-17],[0,-10],[-1,10],[-1,14],[-1,-7],[-1,-9],[0,-11],[-1,1],[-1,3],[-1,-11],[-1,9],[0,17],[-1,4],[-1,18],[0,13],[0,16],[1,11],[1,5],[2,8],[1,-3],[2,-15],[0,-12],[2,-12]],[[7229,34136],[3,-15],[2,-11],[2,-26],[2,-15],[1,1],[2,7],[4,5],[3,3],[3,1],[2,15],[1,-2],[2,-15],[3,-12],[1,-18],[1,-34],[1,-28],[1,-19],[2,-28],[1,-24],[1,-9],[0,-21],[3,-13],[0,-15],[1,-32],[1,-26],[-1,-16],[1,-17],[2,0],[2,16],[0,21],[1,4],[1,-11],[0,-17],[2,-5],[3,-10],[2,1],[0,-12],[3,-13],[2,-4],[1,-17],[3,-8],[2,-15],[2,-6],[2,-17],[2,-1],[1,-9],[1,-21],[0,-14],[0,-44],[0,-6],[1,-16],[1,-9],[-1,-4],[-3,1],[-4,-17],[-4,17],[-1,-2],[-1,1],[-2,0],[-2,3],[-2,13],[-2,12],[-2,6],[-4,7],[-2,9],[-1,-1],[-1,3],[-1,5],[-1,1],[-1,-2],[-1,1],[-1,1],[-1,3],[-8,11],[0,11],[-2,15],[-3,23],[-3,24],[-2,17],[-5,17],[-2,18],[-1,1],[-7,10],[-7,17],[-2,24],[-1,37],[-1,8],[-1,9],[0,17],[0,19],[-1,18],[1,23],[-2,14],[-2,13],[-3,11],[-3,26],[0,27],[-2,25],[-3,13],[-2,-3],[1,-10],[1,-10],[1,-17],[1,-37],[1,-25],[2,-10],[3,-33],[2,-22],[2,-18],[-1,-17],[-3,-2],[-3,6],[-3,3],[-3,-1],[-3,12],[-3,-5],[-6,-19],[-4,-7],[-2,-17],[-5,-4],[-1,-4],[0,16],[-2,15],[-1,14],[-1,26],[0,11],[-3,7],[-3,-7],[-1,3],[-2,12],[-2,3],[0,24],[2,29],[2,31],[4,33],[3,20],[3,10],[2,36],[1,10],[0,5],[2,3],[3,-1],[2,20],[-1,25],[-1,39],[2,23],[3,23],[1,37],[0,23],[1,13],[3,12],[3,17],[3,6],[2,3],[2,-7],[2,-8],[0,-17],[3,-15],[1,-20],[2,-23],[1,-17],[2,-16],[3,-33],[1,-18],[4,-55]],[[7620,34909],[1,-27],[1,-28],[1,-21],[-1,-20],[-2,-73],[1,-14],[0,-14],[-1,-15],[1,-20],[-1,-31],[-1,-16],[-1,-33],[0,-13],[-1,-10],[0,-14],[-2,-8],[-1,-11],[-2,-18],[-3,-16],[-3,-21],[-2,-23],[-2,-8],[-1,2],[-1,19],[-1,4],[-1,20],[0,16],[1,5],[1,8],[2,-2],[0,9],[0,8],[-2,4],[-1,-5],[-1,-2],[-3,19],[-2,27],[0,18],[1,14],[1,14],[0,19],[0,18],[-1,9],[-1,16],[2,25],[3,12],[1,12],[1,19],[1,1],[0,24],[-3,55],[1,10],[1,20],[1,24],[3,-1],[2,20],[3,17],[0,17],[1,9],[1,-2],[0,-10],[2,-2],[2,-6],[3,-18],[2,-12]],[[6929,35048],[-2,-1],[-2,1],[-1,4],[1,13],[1,14],[1,13],[2,1],[1,7],[1,-5],[0,-13],[0,-8],[-1,-16],[-1,-10]],[[6950,35157],[-1,0],[-1,4],[0,15],[0,12],[1,10],[1,18],[1,2],[1,-1],[-1,-10],[1,-13],[0,-14],[-1,-13],[-1,-10]],[[7459,35245],[-1,-30],[-2,1],[-1,39],[1,10],[1,6],[2,-26]],[[7455,35272],[-2,-3],[0,15],[0,23],[0,14],[1,6],[1,2],[0,-13],[1,-13],[0,-18],[-1,-13]],[[7321,35295],[4,-1],[2,18],[1,-16],[-1,-3],[-1,-8],[2,-5],[1,-14],[2,-1],[1,-3],[1,-3],[2,0],[-2,-19],[1,-23],[1,-7],[1,-15],[2,-8],[1,-6],[2,1],[0,21],[0,-28],[1,-14],[1,-2],[0,-40],[1,-15],[1,-20],[0,-13],[1,-23],[1,-4],[0,-11],[-2,2],[-3,13],[-3,8],[-3,8],[-1,5],[0,15],[-2,19],[-2,11],[-3,11],[-4,9],[-3,8],[-2,5],[-2,6],[-2,-4],[-3,2],[-3,3],[-2,30],[-1,39],[-1,12],[-1,24],[-2,10],[0,17],[1,14],[3,15],[2,5],[1,9],[3,4],[2,9],[2,-14],[2,-19],[3,-14]],[[7429,35346],[-1,-12],[-1,6],[1,14],[0,12],[0,5],[1,6],[2,-6],[-1,-11],[-1,-14]],[[7501,35549],[0,-16],[2,3],[0,-13],[-1,-10],[-1,-4],[-1,-4],[0,-6],[0,16],[-2,-5],[-1,11],[0,20],[1,3],[1,2],[1,8],[0,1],[1,-6]],[[7017,35573],[1,-5],[1,2],[0,-1],[0,-10],[-2,2],[-1,3],[1,9]],[[7477,35713],[0,-21],[-1,-5],[-1,6],[0,12],[0,13],[1,10],[1,1],[0,-16]],[[7472,35755],[-1,-11],[-1,2],[-1,17],[1,10],[0,3],[1,-12],[1,-9]],[[7474,35781],[0,-11],[1,1],[1,-6],[0,-14],[-1,-19],[-1,-14],[-1,2],[-1,5],[-1,14],[2,14],[0,12],[-1,17],[2,-1]],[[7373,35842],[0,-20],[-3,3],[-2,3],[-1,4],[0,13],[1,5],[1,4],[1,15],[1,-6],[1,-6],[1,-15]],[[7374,35889],[-2,-1],[-3,4],[0,11],[1,1],[1,6],[1,9],[1,8],[0,-14],[0,-11],[1,-13]],[[7477,35713],[1,12],[0,18],[1,8],[0,4],[1,-10],[0,-23],[2,2],[1,6],[1,-9],[-1,-11],[1,-10],[2,-8],[0,-10],[-1,-20],[-1,-13],[1,-5],[2,16],[2,-1],[1,-2],[0,-23],[-3,-29],[0,-15],[1,-9],[2,11],[2,-5],[1,-18],[1,-4],[1,-16],[1,-30],[1,-8],[-1,-16],[-1,-2],[-2,-7],[-2,11],[-2,4],[-1,19],[0,19],[-2,6],[-1,2],[1,-25],[1,-22],[1,-15],[2,-18],[0,-13],[1,-6],[1,-21],[0,-23],[-2,-11],[-1,-5],[1,-19],[1,-8],[1,14],[1,4],[1,-8],[1,-16],[1,-19],[1,-21],[1,6],[1,6],[-1,15],[-1,27],[0,28],[0,14],[1,14],[3,-23],[2,-40],[2,-12],[1,-16],[1,-17],[1,-21],[0,17],[0,23],[0,18],[1,13],[-2,2],[-1,11],[1,12],[2,-2],[1,-8],[2,-9],[0,20],[1,9],[2,11],[-1,17],[-1,4],[-1,12],[2,-1],[1,11],[0,12],[1,10],[1,15],[2,5],[1,16],[2,-1],[2,-9],[1,5],[0,17],[-1,17],[1,13],[1,8],[1,-7],[0,38],[2,1],[0,-15],[2,-10],[0,-28],[-1,-1],[0,-26],[-1,-11],[1,-6],[-1,-13],[-1,-5],[1,-17],[1,9],[1,-9],[2,7],[1,-5],[2,6],[1,3],[1,-3],[1,-19],[-1,-15],[-2,-5],[0,-18],[-1,-16],[-1,-29],[-1,-14],[1,-18],[-2,-16],[-2,-10],[0,-23],[0,-24],[1,-10],[1,-18],[-1,-9],[-2,-15],[-1,-27],[1,-16],[-1,-5],[-1,-16],[-2,-52],[-1,-28],[0,-44],[-1,-38],[-1,-33],[1,-33],[0,-40],[0,-15],[-1,-30],[0,-27],[2,-41],[0,-38],[0,-17],[1,-11],[1,3],[1,18],[0,27],[1,17],[-1,27],[0,30],[1,7],[2,4],[1,6],[0,22],[1,16],[1,16],[0,27],[-1,18],[1,20],[0,35],[0,25],[2,17],[1,16],[0,14],[0,24],[1,12],[1,10],[2,28],[0,26],[2,15],[2,11],[2,-5],[0,-16],[1,-3],[0,-47],[0,-28],[-2,-44],[-2,-58],[0,-27],[2,-12],[1,6],[1,10],[1,-13],[1,16],[-1,30],[2,12],[1,23],[2,18],[2,35],[1,36],[1,28],[0,15],[1,15],[1,24],[1,21],[0,19],[1,38],[2,14],[1,4],[-1,13],[1,9],[1,11],[1,6],[1,4],[0,19],[1,-10],[1,-19],[2,-20],[-1,-22],[2,-11],[1,-4],[1,-13],[-2,-22],[0,-16],[0,-18],[1,-19],[0,-46],[0,-20],[0,-13],[0,-22],[-1,-12],[-1,-10],[-1,-12],[-1,-23],[2,-16],[1,-16],[1,-22],[0,-16],[0,-28],[-1,-33],[-1,-6],[-1,-23],[-2,-22],[-1,-12],[1,-14],[2,-29],[1,-23],[-1,-18],[-1,-29],[-2,-37],[-2,-26],[-3,-9],[-4,7],[-3,6],[-2,-15],[-2,-21],[-1,-20],[-3,-22],[0,-26],[1,-21],[3,7],[0,-16],[-1,-13],[-2,-21],[-2,-41],[-4,-41],[-1,-20],[-3,-16],[-4,-12],[-2,-3],[-1,7],[1,15],[-1,16],[-2,17],[-2,-5],[-2,1],[-1,15],[0,23],[0,23],[0,19],[-1,13],[-3,17],[-1,-9],[-4,-28],[-3,-11],[-3,14],[-1,15],[-1,30],[0,23],[-3,18],[-3,16],[0,38],[1,19],[4,4],[0,13],[-1,10],[2,2],[-2,14],[-2,15],[-1,11],[1,16],[-1,25],[0,20],[-2,-6],[-2,0],[0,30],[0,31],[-2,-11],[0,18],[1,13],[1,-1],[0,19],[-1,11],[0,13],[0,27],[0,19],[-2,28],[-2,6],[1,-29],[1,-30],[0,-36],[-2,-14],[0,-20],[-1,-2],[-2,26],[0,14],[-1,18],[-2,3],[-2,15],[-2,10],[2,-30],[1,-22],[1,-23],[2,-26],[1,-15],[-2,7],[-1,-3],[-2,9],[0,18],[-1,9],[-2,-4],[-1,-6],[-1,14],[-2,0],[-2,-3],[-3,-5],[1,-11],[1,-15],[-1,-22],[-1,-21],[2,-11],[1,-10],[1,-31],[-1,-11],[-1,-15],[-1,2],[-3,16],[0,-14],[2,-22],[-1,-30],[1,-10],[2,5],[0,18],[1,13],[1,2],[2,-18],[1,-11],[3,-31],[1,-36],[0,-38],[-1,-25],[0,-18],[0,2],[-1,3],[-2,13],[-2,12],[-1,12],[-2,9],[-2,5],[0,15],[-1,2],[-1,-6],[-1,-10],[0,-5],[-1,-2],[-1,10],[1,24],[-1,11],[-2,18],[-2,6],[-1,4],[1,-14],[0,-16],[-1,-11],[-1,-6],[-1,-1],[-1,-8],[1,-3],[1,-8],[1,-3],[1,4],[1,-5],[0,-13],[1,-3],[1,-4],[2,-16],[4,-13],[1,-16],[-1,-21],[-2,0],[0,-23],[2,-18],[2,-9],[1,-6],[-1,-13],[0,-20],[-2,10],[-1,2],[0,-19],[1,-11],[3,-13],[0,25],[1,-3],[1,14],[1,8],[0,-12],[0,-16],[2,-1],[2,-10],[2,-33],[3,-11],[2,-16],[-1,-15],[-1,-17],[-1,-16],[-1,-3],[-3,1],[-1,14],[-1,-7],[-2,4],[-2,-6],[-2,1],[1,-20],[-1,-9],[-1,-11],[-2,-11],[-1,-14],[0,-16],[-1,-17],[-1,-23],[-1,3],[0,14],[0,23],[-1,8],[-2,20],[1,20],[2,-3],[0,12],[-2,12],[-1,15],[-2,1],[-1,0],[-3,4],[-1,8],[-2,-19],[0,-12],[-1,-9],[-1,-12],[-3,7],[0,9],[-1,10],[-1,19],[1,19],[0,14],[-1,-8],[-1,-12],[-1,-5],[-2,-11],[-1,1],[0,14],[-1,18],[-1,10],[0,17],[-1,8],[-2,14],[0,-12],[1,-16],[-2,-7],[-1,-10],[1,-18],[-1,-17],[-1,-12],[-2,10],[-3,8],[-2,2],[-1,-8],[-1,-31],[-3,-14],[-2,-17],[-2,-6],[-1,10],[-1,-20],[-1,-22],[-1,-21],[-1,-31],[1,-18],[-1,-13],[1,-16],[-2,6],[-1,-4],[1,-14],[-1,-9],[-2,-3],[-1,10],[-1,-1],[-1,13],[-1,30],[1,14],[0,17],[-2,12],[-1,23],[1,23],[-1,16],[1,31],[0,29],[1,21],[-1,6],[0,14],[0,6],[1,-9],[2,3],[0,15],[1,9],[-2,10],[-1,23],[0,45],[1,24],[-1,14],[0,17],[1,24],[0,27],[-1,4],[0,12],[1,13],[-1,20],[-1,-3],[-1,8],[0,20],[1,-2],[0,-12],[1,15],[-1,21],[-1,26],[0,19],[2,7],[1,3],[1,22],[-2,-4],[0,15],[-2,20],[-2,9],[1,-22],[1,-14],[-1,-41],[-1,-17],[1,4],[0,-17],[-1,-31],[-2,-12],[0,-14],[-1,5],[0,12],[0,21],[1,27],[-1,13],[0,-14],[-1,16],[-1,8],[-1,-15],[1,-22],[0,-38],[-1,-32],[0,-17],[0,-18],[0,-40],[0,-20],[-2,-6],[0,14],[-1,-3],[0,-34],[1,-33],[-1,-29],[0,-39],[2,-21],[-1,-22],[-2,-18],[1,-26],[-2,-20],[0,-25],[-2,-37],[0,-27],[-1,-22],[-1,-27],[0,-32],[0,-22],[-4,-13],[-1,-26],[-1,-5],[-2,0],[-2,7],[-1,20],[-1,-2],[0,-4],[0,-13],[3,-23],[2,-17],[-3,-6],[-3,-9],[-4,-11],[-5,-4],[0,-19],[0,-8],[0,2],[-1,4],[-3,13],[-1,-17],[-2,3],[-3,9],[-2,7],[-3,8],[0,16],[-1,24],[0,27],[0,16],[0,14],[1,23],[0,21],[0,14],[-1,-7],[-1,-5],[0,-16],[0,-19],[-1,-9],[-2,-4],[-1,-1],[-1,-2],[-1,5],[-1,13],[-1,3],[-2,-13],[2,-8],[2,-12],[0,-7],[1,-6],[1,-12],[1,-12],[0,-20],[1,-25],[0,-29],[2,-17],[1,-31],[1,-29],[1,-10],[1,-22],[0,-15],[0,1],[-1,-5],[-1,-13],[0,-18],[0,-15],[1,-10],[-1,-13],[-1,-18],[-1,-8],[-2,-8],[0,-16],[0,-10],[-1,-20],[-1,0],[-1,16],[-1,-4],[-2,-7],[-1,7],[-1,4],[-1,-1],[0,-12],[-1,3],[-2,0],[-1,-9],[-2,-3],[-1,4],[-1,8],[-1,6],[-1,-6],[-2,-8],[-1,5],[-1,5],[-1,7],[-1,0],[-1,2],[0,7],[-2,15],[-1,4],[-2,-4],[-2,17],[-1,14],[-1,4],[0,-8],[-3,10],[-2,8],[0,19],[-1,-3],[-1,12],[-2,14],[-1,11],[-1,5],[0,13],[1,10],[-2,12],[-1,16],[0,-4],[-1,-10],[1,-11],[-2,-1],[-1,11],[-1,22],[-2,5],[1,24],[-1,-1],[-3,1],[-1,-8],[0,-13],[-1,7],[-2,15],[-3,17],[-1,-6],[-1,8],[-2,3],[-2,28],[-1,14],[-1,16],[0,21],[-2,16],[-1,10],[-3,36],[-1,19],[0,13],[-1,32],[-1,9],[-1,20],[-1,18],[0,17],[1,1],[1,11],[2,4],[1,8],[1,6],[1,12],[1,13],[3,6],[-1,14],[-1,-3],[-2,1],[-2,-9],[-3,-10],[-4,0],[-1,7],[-2,3],[-1,4],[-1,0],[-2,1],[-2,-6],[-2,5],[-1,-7],[-4,-11],[-3,-17],[-1,6],[0,14],[-2,-2],[0,15],[-2,23],[1,27],[-1,24],[-2,18],[-2,12],[-1,5],[-1,25],[-2,8],[-1,4],[0,19],[-1,11],[-2,15],[0,22],[-2,12],[-2,19],[2,8],[-1,19],[1,11],[0,13],[1,14],[1,13],[0,23],[-1,10],[-1,5],[0,13],[3,38],[0,16],[1,17],[0,28],[2,0],[3,12],[1,14],[2,10],[1,7],[2,-6],[1,-10],[3,-26],[2,-9],[1,-7],[2,11],[2,-2],[1,-9],[5,-8],[1,-5],[3,-9],[1,2],[1,-15],[2,-14],[4,-3],[5,22],[2,1],[1,14],[2,-7],[1,-6],[1,-3],[1,-13],[1,-27],[1,-22],[0,-30],[0,-24],[1,-13],[1,-5],[1,-10],[1,21],[0,22],[-1,18],[-1,9],[0,15],[1,11],[0,11],[1,10],[0,4],[2,-4],[2,-2],[1,-6],[0,-17],[0,-16],[4,-26],[4,-22],[2,-3],[1,-8],[2,-19],[3,-7],[3,7],[2,-8],[7,-33],[1,-11],[2,-8],[2,-4],[1,-7],[1,17],[-6,25],[-3,19],[-2,19],[-2,5],[-3,17],[-3,18],[1,19],[-2,16],[-2,21],[0,18],[-2,1],[-3,4],[-3,-3],[-2,-2],[-2,16],[-2,11],[-3,15],[-2,10],[-2,9],[-1,9],[0,14],[2,4],[0,15],[-1,21],[-1,13],[-4,17],[-3,17],[-3,16],[-2,3],[-1,2],[-2,14],[-4,11],[-2,33],[-2,27],[-2,19],[-1,10],[-1,10],[0,11],[1,20],[3,25],[0,18],[2,0],[3,20],[0,20],[2,10],[1,13],[-1,18],[2,28],[3,13],[0,17],[0,29],[2,-10],[2,-14],[2,-8],[3,-3],[3,3],[1,-15],[2,-5],[1,-16],[2,-27],[2,-7],[4,-5],[1,8],[1,-14],[2,-11],[1,-10],[1,-2],[3,6],[1,9],[2,-5],[0,-15],[0,-17],[2,-9],[1,-5],[2,8],[1,-9],[1,-52],[1,17],[0,26],[-1,16],[2,4],[0,-23],[1,8],[1,16],[-3,31],[0,12],[1,15],[1,13],[4,-5],[4,-12],[1,-2],[1,-7],[1,-6],[0,-14],[0,19],[2,12],[2,-6],[2,-7],[1,9],[2,0],[2,-4],[2,-11],[2,-4],[1,-11],[1,-13],[1,-48],[1,-31],[1,-36],[-1,-23],[1,-7],[1,-13],[1,-9],[1,-16],[-1,-25],[1,-5],[1,8],[0,31],[-2,22],[0,18],[0,39],[1,31],[2,15],[2,6],[2,-15],[4,-13],[1,0],[-1,14],[-3,11],[-1,10],[-1,8],[-2,5],[-5,21],[-1,10],[-1,12],[2,4],[1,7],[-2,36],[0,16],[-2,23],[0,23],[1,16],[-1,18],[1,22],[1,19],[2,9],[2,-4],[4,3],[-3,8],[-6,3],[-1,10],[0,13],[-1,11],[-2,27],[-2,25],[-1,6],[-2,-2],[0,10],[0,13],[0,15],[0,10],[1,2],[3,8],[1,-5],[3,-18],[1,-10],[2,-4],[1,-12],[2,-5],[1,-13],[2,5],[2,14],[2,3],[1,0],[-1,13],[-3,-7],[-2,8],[0,14],[-1,11],[-1,10],[-1,16],[-1,13],[-2,12],[0,18],[-1,11],[-1,11],[-3,5],[-3,1],[-3,-4],[-2,9],[-1,14],[-2,-4],[-3,3],[2,7],[1,12],[1,18],[-2,4],[-2,2],[-3,3],[-1,0],[-1,29],[-3,7],[-1,24],[-2,23],[-2,8],[-1,30],[0,13],[0,7],[2,-11],[1,-6],[3,-14],[4,-3],[2,-4],[3,7],[2,-2],[2,-1],[1,4],[1,-5],[2,10],[2,5],[1,18],[2,5],[1,6],[2,4],[0,-10],[-1,-12],[1,-3],[1,-12],[0,-32],[-1,-11],[0,-15],[0,-11],[-1,-11],[0,-14],[3,0],[3,6],[2,21],[0,15],[-1,-2],[-3,20],[0,27],[-1,18],[0,23],[-2,10],[-1,1],[-1,10],[1,12],[1,-3],[1,5],[0,21],[1,28],[-1,8],[0,17],[2,19],[2,-6],[1,11],[2,5],[2,1],[-1,15],[1,15],[0,13],[2,9],[1,-2],[1,4],[1,24],[-2,4],[-1,13],[2,6],[1,6],[0,-18],[1,-6],[0,-14],[-1,-14],[1,-17],[2,-4],[1,-13],[-1,-25],[1,-1],[2,4],[0,-22],[1,-39],[1,-29],[-1,-34],[2,-2],[1,5],[2,13],[2,1],[1,5],[-1,14],[-2,17],[1,11],[2,4],[-1,11],[1,11],[0,25],[-1,10],[2,23],[-1,3],[-1,12],[0,15],[1,14],[0,25],[0,24],[-1,10],[-1,12],[2,0],[-1,12],[1,10],[1,11],[1,14],[0,10],[1,7],[2,2],[0,-25],[2,-1],[1,-10],[2,-13],[1,13],[1,5],[1,6],[2,-5],[1,0],[0,-11],[2,-24],[0,-16],[-1,-29],[-2,-21],[-1,-19],[1,-3],[2,5],[-1,-15],[2,-10],[1,-1],[0,15],[0,20],[1,-1],[1,9],[0,17],[1,11],[2,12],[1,23],[1,5],[2,-10],[1,-19],[3,-13],[0,-27],[-1,-15],[2,9],[2,11],[0,15],[2,-2],[1,14],[3,22],[2,4],[2,-3],[2,-10],[1,6],[1,-11],[2,-5],[1,-11],[-1,-5],[-1,0],[0,-19],[-1,-18],[-1,-10],[-1,-19],[-1,-19],[-2,-49],[0,-22],[-2,-16],[-2,-24],[-3,-38],[1,-28],[3,-2],[1,14],[2,-4],[1,15],[1,11],[1,-13],[0,-15],[-2,-23],[1,-8],[2,18],[2,9],[-1,-14],[0,-16],[-1,-15],[0,-21],[1,9],[0,-11],[1,13],[0,15],[1,13],[1,8],[2,-10],[1,7],[1,-7],[0,-17],[-2,-6],[-1,-22],[-1,-19],[1,-24],[-2,-14],[-2,-21],[-1,-15],[1,-15],[0,-23],[0,-18],[0,-13],[0,-17],[0,-15],[-1,-21],[1,-16],[0,-15],[1,-7],[0,-17],[1,-14],[1,-7],[1,-1],[1,10],[1,12],[1,17],[2,11],[1,8],[-1,24],[0,16],[2,-1],[1,-14],[0,-15],[1,13],[0,19],[0,14],[-1,16],[2,5],[-1,23],[-1,11],[-1,7],[1,17],[1,2],[2,8],[1,-10],[1,-7],[-1,-16],[1,0],[1,-5],[0,-16],[2,-6],[1,-6],[0,-19],[0,-25],[0,-16],[2,6],[1,-8],[1,-14],[0,-60],[-1,-26],[1,-12],[0,-22],[-1,-24],[-2,-18],[-1,-21],[-1,-25],[2,8],[1,2],[1,-8],[0,16],[1,13],[2,9],[2,14],[2,-8],[1,-3],[1,33],[0,21],[1,10],[2,10],[0,13],[0,35],[-2,22],[-1,7],[-1,5],[0,21],[-2,19],[0,6],[-1,28],[0,7],[1,-4],[2,-19],[1,3],[1,9],[1,-3],[1,-7],[1,-25],[2,-13],[0,15],[-1,29],[-1,19],[-1,21],[0,25],[-1,31],[1,16],[0,18],[1,13],[1,15],[2,-7],[1,23],[1,-2],[-1,23],[-1,28],[-1,26],[1,32],[-2,-1],[-1,13],[1,19],[0,18],[1,-7],[1,-17],[1,-7],[2,-9],[1,-2],[1,-4],[0,-26],[1,7],[2,-11],[-1,-19],[1,-6],[0,-16],[1,17],[2,-8],[1,9],[2,-6],[-1,-14],[1,-8],[2,-21],[1,-11],[1,-5],[0,21],[-2,29],[-2,23],[-2,17],[-1,13],[0,22],[1,14],[-1,10]],[[7450,36140],[0,-11],[0,-50],[-7,-43],[-3,-18],[1,37],[2,33],[2,1],[0,28],[0,16],[1,-2],[1,-1],[3,10]],[[7458,36129],[-1,-7],[-1,1],[0,18],[1,13],[1,-5],[0,-20]],[[7381,36453],[0,-19],[-2,-1],[-1,-4],[-2,14],[2,11],[2,1],[1,-2]],[[7132,36598],[-1,-8],[-2,-1],[-2,2],[-1,-5],[-2,8],[1,10],[1,13],[2,8],[1,16],[-1,9],[0,15],[2,1],[1,-11],[0,-20],[1,-25],[0,-12]],[[7381,36453],[1,5],[1,5],[3,15],[2,11],[-1,8],[-2,7],[-1,10],[1,10],[0,19],[1,-3],[-1,-18],[1,-5],[1,18],[1,9],[2,-3],[1,5],[1,-5],[1,-18],[2,-5],[0,-28],[1,-15],[2,-4],[1,11],[1,10],[-2,0],[-1,11],[0,14],[2,1],[0,18],[-2,-2],[-1,4],[-1,15],[-1,3],[-1,12],[-1,11],[1,14],[0,11],[-1,12],[1,12],[2,-6],[2,2],[2,-5],[2,4],[0,13],[0,12],[1,9],[-1,18],[2,-1],[0,14],[1,12],[1,10],[1,0],[1,-5],[1,-14],[1,-18],[1,-14],[0,-15],[-1,-19],[-1,-10],[-1,-17],[0,-13],[-1,-13],[0,-10],[0,-4],[0,-7],[0,-8],[-1,-5],[1,-4],[0,-2],[1,4],[0,7],[0,7],[0,9],[0,6],[1,0],[0,-1],[1,0],[-1,11],[1,18],[1,17],[1,-4],[0,-15],[1,-15],[0,-3],[2,0],[2,17],[1,2],[-1,-16],[-2,-17],[-1,-15],[0,-23],[-1,-6],[-1,-8],[-1,-30],[1,-14],[2,-5],[-1,-11],[-1,5],[-2,-6],[1,-13],[-2,-8],[-1,-6],[0,-14],[0,-8],[1,9],[1,8],[2,13],[1,-5],[2,13],[0,5],[0,18],[2,7],[1,3],[2,8],[2,2],[-1,11],[-2,-1],[-2,-6],[0,12],[0,34],[1,5],[0,4],[1,-2],[1,-1],[-1,23],[1,6],[3,16],[1,-6],[1,-1],[1,-5],[0,24],[3,-3],[1,12],[-2,17],[1,6],[0,-1],[2,-14],[3,-7],[1,-2],[0,10],[-1,8],[-3,37],[2,25],[2,4],[1,12],[1,-4],[1,6],[-1,9],[-1,8],[0,13],[-1,13],[0,16],[1,1],[1,1],[1,-16],[-1,-12],[1,-3],[1,8],[1,-8],[0,-11],[1,-21],[0,-18],[2,-12],[1,-6],[2,-10],[2,-10],[0,10],[2,12],[1,23],[1,28],[2,10],[-1,18],[2,5],[4,5],[1,10],[2,-1],[1,-1],[1,-5],[2,5],[1,-2],[2,13],[1,-3],[1,-1],[2,-6],[-1,-8],[-1,-2],[-1,-10],[-1,-4],[-2,6],[-1,-4],[0,-5],[0,-6],[2,-3],[0,-2],[0,-23],[2,1],[2,-8],[-1,-28],[-2,1],[-1,-4],[-1,-30],[0,-19],[-1,-24],[-1,-16],[0,-22],[1,-2],[0,14],[2,13],[1,9],[1,-21],[-1,-29],[-1,-21],[-1,-31],[-2,-5],[-2,-32],[0,-10],[-2,-13],[-1,-30],[-2,-38],[1,-17],[2,-18],[0,-11],[2,0],[0,-5],[-1,-15],[1,-22],[0,-9],[-1,-2],[-1,10],[-3,-3],[-1,-19],[-1,-19],[0,-13],[-1,-27],[-1,7],[0,34],[1,10],[0,34],[0,7],[-2,-5],[-3,-43],[0,-16],[1,0],[1,-10],[0,-13],[-4,-7],[-1,-23],[-2,-13],[-1,-13],[-1,-12],[0,-18],[-1,-16],[-1,-16],[-1,-21],[-1,-24],[-1,-5],[-2,-13],[-2,-14],[-1,-22],[-2,-9],[-1,1],[-1,2],[-2,1],[-4,2],[-1,7],[-1,8],[-1,5],[-2,3],[-1,-10],[-2,4],[-2,-1],[-1,10],[-1,5],[-1,0],[-1,0],[-1,-4],[-1,7],[0,18],[-1,12],[1,8],[-1,12],[-1,1],[-1,-7],[-1,2],[0,10],[1,23],[-1,-9],[-1,-13],[-1,-10],[-2,3],[-2,10],[0,10],[0,12],[-1,-1],[0,-2],[-1,7],[-1,1],[-2,-11],[-1,5],[-1,4],[0,17],[0,17],[0,11],[0,15],[1,14],[-1,4],[-2,-31],[0,-14],[-1,-8],[-1,4],[0,12],[-1,8],[-2,4],[-1,5],[2,8],[2,-5],[1,3],[1,2],[0,15],[-1,11],[-2,-1],[-1,-12],[-2,12],[1,9],[1,14],[1,9],[2,-5],[1,1],[1,12],[2,16],[2,14],[-1,2],[-1,7],[1,13],[1,19],[2,4],[0,17],[-3,2],[0,-11],[-2,-15],[-1,-13],[-1,-24],[-1,-7],[-1,-3],[-1,12],[1,13],[-1,28],[1,20],[-1,3],[0,-8],[-1,-27],[-2,-2],[-1,6],[-2,8],[0,14],[-1,15],[1,7],[1,3],[1,-3],[1,12],[3,8],[3,-1],[1,7],[-1,9],[1,12],[2,7],[2,0],[2,-15],[-1,-25],[2,-6],[0,-25],[2,-7],[-1,28],[1,16],[1,10],[1,-2],[2,-17],[1,-32],[1,9],[2,9],[-1,11],[0,4],[1,16],[-1,-4],[-1,1],[-1,8],[-1,20],[-1,10],[0,18],[0,13],[2,33],[2,12],[1,2],[1,2],[1,-2],[-1,11],[0,5],[-1,15],[-1,2],[-1,-9],[0,-4],[-1,-15],[-2,-10],[-2,-11],[-2,4],[-1,-1],[-1,-2],[0,15],[0,18],[-3,8],[1,6],[1,3],[0,11],[-1,-1],[-2,1],[-1,-11],[1,-10],[-1,-9],[1,-2],[1,-12],[1,-16],[1,-31],[-2,-4],[-1,-12],[-3,-7],[-3,-10],[-2,-10],[1,14],[-1,11],[-1,13],[1,19],[-1,15]],[[7476,36767],[-1,-15],[-1,3],[-1,11],[1,3],[1,-2],[1,5],[0,-5]],[[7413,36802],[-2,-6],[0,6],[-2,10],[0,6],[1,14],[0,9],[2,2],[2,2],[1,-10],[-1,-14],[1,-6],[-2,-9],[0,-4]],[[7214,37873],[1,-17],[-1,-11],[-2,7],[-1,-5],[-1,-18],[1,-13],[0,-17],[-3,5],[-1,-4],[0,-16],[-2,3],[-1,-2],[-4,12],[-3,6],[0,12],[1,13],[1,20],[-1,8],[-2,-2],[-2,9],[-1,6],[-1,-11],[2,-13],[-3,-6],[-2,-10],[-2,-17],[-2,-33],[-1,-37],[-2,-40],[0,-109],[-2,-32],[-1,-25],[0,-39],[-1,-68],[-3,-64],[-2,-53],[-3,-38],[-2,-22],[-2,-47],[-3,-32],[-2,-26],[-4,-4],[-3,18],[-2,3],[-5,-31],[-3,-46],[-1,-29],[-1,-1],[-3,4],[-4,1],[-4,-25],[-4,-45],[-2,-26],[-1,-17],[-2,-41],[-1,-47],[-1,-57],[0,-31],[-1,2],[-2,2],[-4,-2],[-2,-7],[-4,-30],[-4,-37],[-4,-28],[-3,-11],[-3,2],[-7,-4],[-6,1],[-7,-24],[-3,-4],[-1,4],[0,15],[3,8],[1,8],[0,8],[-2,-7],[-3,-8],[-1,-12],[0,-14],[-3,2],[-4,1],[-1,2],[-2,7],[-4,16],[-5,1],[-7,-11],[-4,-7],[1,12],[-1,3],[-3,0],[-1,-7],[2,-16],[-2,-46],[0,-29],[0,-51],[1,-14],[5,-4],[1,-9],[1,-24],[-2,15],[-1,1],[-2,-16],[-1,-22],[-2,-35],[-2,-24],[-2,-60],[-1,-55],[0,-33],[0,-23],[-1,-1],[0,20],[0,14],[-3,19],[-2,8],[-2,-6],[-2,-18],[1,-35],[2,-25],[2,-14],[3,10],[3,11],[2,-8],[-1,-29],[-3,-18],[1,-15],[-1,-6],[-1,-19],[-2,-15],[-1,-3],[-2,-5],[0,3],[-2,-9],[-2,-19],[-1,9],[-3,-6],[-1,17],[-2,-10],[-1,-4],[-1,11],[-2,5],[-3,-5],[-2,2],[-2,-13],[-1,0],[-1,-8],[-2,10],[-5,-1],[-2,-14],[-1,-19],[-1,-22],[-1,2],[1,12],[0,17],[1,12],[-2,-5],[-1,7],[-1,-8],[0,-20],[0,-17],[-1,-14],[1,-14],[0,-10],[1,-5],[1,20],[0,-7],[1,-38],[-1,-31],[1,-56],[0,-33],[-1,14],[1,-16],[-1,-13],[0,-22],[0,-8],[1,-15],[1,-22],[2,-2],[-2,27],[1,6],[1,-13],[1,-20],[1,-22],[1,-35],[0,-2],[-1,-11],[-1,-15],[0,-12],[1,-3],[1,15],[0,-1],[1,2],[0,11],[2,-21],[2,-8],[1,-2],[2,8],[2,-1],[2,-8],[2,-17],[0,-11],[2,-8],[2,-15],[-1,-11],[-2,-9],[0,-12],[0,-18],[-1,-27],[-1,-3],[-2,-1],[-2,-10],[-1,-8],[-3,0],[-1,-15],[-1,-21],[-1,-20],[0,-20],[-2,0],[-1,-3],[-3,0],[-2,-4],[-1,9],[-1,3],[-1,-2],[-1,7],[-2,5],[-2,-9],[-1,-14],[0,-16],[0,-19],[-1,-1],[-2,13],[-2,6],[-2,-6],[-1,6],[0,14],[-3,9],[-2,7],[-3,2],[-2,2],[-1,2],[-2,-5],[-2,-11],[-2,-5],[-1,0],[-2,-12],[-1,-17],[2,-7],[1,-7],[2,5],[1,-1],[2,-3],[0,-12],[1,5],[1,-12],[-1,-20],[0,-10],[-2,-12],[-1,-3],[-2,-9],[-1,2],[-2,12],[-2,11],[0,-14],[1,-10],[-1,-9],[-1,-2],[-1,6],[-2,6],[-1,-15],[-1,-4],[-2,-10],[-10,-57],[-3,-17],[-3,7],[-1,-17],[-2,-17],[-2,-18],[1,-12],[1,-20],[-1,-16],[-1,6],[-1,7],[-2,-9],[0,-16],[-1,-14],[-1,4],[-1,0],[-2,3],[0,-7],[-2,-8],[0,-16],[1,-7],[1,-8],[0,-12],[0,-18],[2,-8],[1,-19],[0,-20],[-1,-21],[-2,-28],[-1,-17],[2,-13],[0,12],[1,11],[2,6],[0,16],[0,11],[2,10],[0,13],[1,-3],[2,6],[1,5],[2,1],[2,4],[1,-17],[1,-10],[1,14],[1,9],[1,-9],[2,8],[1,6],[2,13],[1,19],[-1,15],[-1,18],[-1,22],[1,28],[1,8],[0,14],[1,15],[1,6],[4,4],[2,1],[2,8],[1,-2],[-1,-14],[1,-11],[2,4],[2,3],[-1,-9],[-1,-8],[-1,-5],[0,-10],[1,-6],[2,11],[1,14],[2,21],[1,26],[0,20],[0,19],[1,15],[0,18],[1,17],[1,-4],[1,0],[2,-2],[1,1],[1,-10],[1,-2],[1,-9],[2,-9],[0,-15],[0,-14],[1,-8],[0,-13],[1,-16],[1,-9],[0,-8],[0,-15],[0,-13],[1,-10],[2,-5],[1,-16],[2,-12],[1,-1],[1,0],[0,-15],[1,-2],[-1,-19],[-1,-9],[-1,-14],[-1,-10],[-2,-7],[-1,-7],[-2,6],[-1,-9],[-3,4],[-2,-1],[-3,-8],[0,-13],[-1,-1],[-2,9],[-2,-7],[-1,-2],[-1,-13],[-1,-10],[-2,7],[-1,23],[-3,1],[-2,-8],[-1,-16],[-2,-18],[-2,-19],[0,-23],[2,-6],[1,10],[-1,19],[2,9],[1,-8],[1,11],[0,15],[1,13],[1,-1],[0,-19],[1,-7],[2,1],[1,-14],[1,-1],[1,-10],[2,-16],[3,12],[1,-33],[2,-18],[2,-1],[1,-11],[1,-2],[1,-19],[-1,-5],[0,-3],[-1,-16],[1,-11],[1,-10],[1,-7],[0,-31],[0,-19],[-1,3],[-2,8],[-3,0],[-3,5],[-1,-9],[1,-16],[1,-15],[1,-17],[2,-14],[-1,-21],[-2,-14],[-1,-14],[-2,7],[-2,3],[-2,-9],[-2,-11],[-2,-5],[-2,-11],[-3,4],[-2,11],[-3,-3],[-2,20],[-1,11],[-3,26],[-3,5],[1,-14],[1,-19],[1,-14],[1,-13],[1,8],[0,-17],[1,-4],[0,-26],[-1,-5],[-2,28],[-2,18],[-1,2],[-2,17],[-1,3],[-1,6],[-1,5],[1,-19],[1,-17],[0,-15],[1,-8],[1,-14],[1,-12],[0,-18],[2,-21],[0,-20],[3,-27],[3,-5],[2,-4],[1,-9],[0,-22],[2,-14],[2,-7],[1,-9],[2,-14],[2,-35],[-2,-12],[-2,-5],[-2,0],[-5,-3],[-1,-9],[-1,1],[-1,1],[-3,-9],[-2,15],[-1,7],[-2,11],[-1,1],[-1,20],[0,22],[-1,9],[-3,14],[-1,17],[-3,23],[-2,10],[-2,-11],[1,-18],[0,-14],[1,-30],[-1,-30],[-1,-34],[0,-34],[2,-17],[2,-21],[2,-23],[0,-29],[1,-26],[0,-21],[0,-22],[1,-15],[-1,-23],[-2,-13],[-2,-3],[-1,7],[-1,-7],[-2,4],[0,12],[0,14],[0,18],[1,7],[-1,15],[0,9],[-4,3],[-2,3],[-1,-12],[-1,-6],[-1,13],[2,14],[1,16],[-1,18],[-1,20],[-1,19],[-3,29],[-3,23],[-2,15],[-2,-2],[0,13],[-2,20],[-1,7],[0,16],[-1,12],[-1,15],[-1,11],[-1,6],[-1,20],[0,22],[0,16],[1,30],[-1,9],[1,18],[1,8],[-1,12],[-1,-2],[-1,-10],[-1,7],[0,13],[-1,19],[1,12],[-2,-1],[-1,7],[-2,13],[0,10],[-2,13],[-1,3],[-1,2],[-2,25],[1,32],[-2,4],[-4,-30],[2,-33],[3,-24],[0,-33],[1,4],[1,-3],[2,-5],[1,-12],[0,-19],[-1,-16],[0,-16],[2,-15],[1,-1],[0,-21],[0,-18],[0,-16],[1,-24],[-1,-11],[-1,14],[-2,-10],[1,-21],[1,-20],[0,-20],[1,-13],[0,-20],[0,-19],[2,-5],[0,-12],[1,-18],[0,-18],[-1,-20],[0,-22],[1,-29],[0,-29],[-1,-22],[-1,-8],[0,-17],[-1,-7],[-1,-12],[-1,9],[0,14],[-1,-8],[-1,4],[0,-12],[-1,8],[0,23],[0,27],[-1,8],[-2,9],[-2,7],[-1,7],[-2,11],[-3,1],[-2,12],[-1,-26],[-1,-19],[-1,-4],[-1,-13],[-1,2],[-1,18],[1,12],[1,9],[0,10],[1,11],[1,12],[-1,2],[-1,-1],[-2,-2],[-2,2],[-2,5],[-1,1],[0,21],[-2,5],[-3,6],[-1,6],[-1,13],[-2,10],[-1,2],[0,21],[0,12],[-1,-5],[-1,-3],[-1,-14],[0,-13],[0,-18],[0,-11],[1,-6],[1,-6],[1,-1],[1,-7],[1,-13],[-2,-1],[-1,-9],[0,-19],[1,-20],[1,-5],[1,-6],[1,-9],[1,6],[1,13],[1,12],[1,10],[1,7],[2,-10],[1,-5],[1,-20],[0,-7],[1,-16],[1,-21],[-1,-2],[-2,-10],[0,-14],[2,-17],[1,-20],[2,-23],[2,-24],[-1,-16],[0,-8],[0,-18],[-1,-21],[-1,-13],[-2,-21],[-1,-22],[0,-13],[-1,-13],[-1,-28],[-1,-23],[-1,-10],[-2,-6],[-1,-17],[-1,9],[0,16],[0,12],[-1,3],[-2,1],[-1,-6],[-1,3],[-2,-1],[-1,8],[-1,4],[-2,1],[-2,9],[-2,7],[-1,3],[-1,14],[0,14],[0,15],[-1,18],[0,21],[1,17],[1,17],[-1,18],[-2,19],[-2,3],[-2,3],[-2,3],[-1,0],[-1,-14],[-2,-5],[-2,-8],[-3,-11],[-2,-14],[-2,-24],[-1,-27],[-1,-33],[0,-29],[0,-20],[0,-33],[1,-15],[-1,-18],[-2,-11],[-3,-4],[-2,-7],[-2,-16],[-1,-19],[-3,-7],[-2,3],[-1,-5],[-2,-5],[-2,1],[-2,-1],[-1,6],[-1,9],[-1,-2],[-1,16],[0,13],[0,15],[-1,21],[-1,11],[-2,7],[-3,0],[-1,-3],[-3,13],[-2,8],[-4,1],[-3,0],[-4,-9],[-2,-13],[-5,-37],[-1,-22],[-1,-23],[-1,-5],[0,8],[0,13],[2,21],[1,14],[0,11],[0,1],[1,15],[1,21],[1,15],[1,23],[-1,12],[-2,3],[-1,-6],[-2,-10],[-1,0],[-2,3],[-1,-1],[-1,-5],[-1,-10],[0,-17],[0,-18],[0,-26],[0,-10],[-2,0],[-3,-3],[-3,2],[-1,10],[-1,18],[-2,14],[-2,8],[-3,11],[-1,-2],[-1,-12],[-1,-15],[-1,-7],[0,-16],[-1,-13],[-1,-14],[0,-13],[2,-12],[1,-7],[0,-1],[0,-2],[1,-3],[1,-10],[0,-20],[0,-15],[0,-13],[0,-12],[-1,-19],[1,-11],[-1,-16],[0,-19],[0,-14],[0,-18],[-2,-27],[-1,-32],[-1,-17],[-2,-6],[-3,-1],[-1,8],[-2,4],[-1,-2],[-1,-6],[-2,-21],[-2,-3],[-1,1],[-1,-9],[-1,-6],[-1,-1],[2,-8],[1,-21],[1,-47],[2,-17],[1,-12],[2,-8],[0,-30],[1,-19],[3,-16],[0,-21],[0,-17],[0,-31],[-1,-54],[-4,-57],[-2,-16],[-2,-19],[-2,-2],[-4,4],[-4,-17],[-3,-20],[-3,-14],[-1,1],[-3,18],[-2,5],[-1,0],[-1,-12],[-2,-15],[-1,-19],[-2,-18],[0,27],[0,31],[0,19],[-2,11],[-2,5],[-1,8],[-1,4],[-3,15],[-2,10],[-1,11],[-1,21],[0,-11],[-2,1],[1,-11],[0,-9],[0,-13],[-2,-11],[1,-19],[2,-8],[2,-16],[1,-16],[3,-17],[2,-27],[0,-43],[0,-14],[-1,-13],[-2,-17],[-3,-18],[-2,5],[-4,-17],[-3,-3],[-3,2],[-2,14],[-1,-8],[-2,1],[-1,13],[-3,5],[-3,5],[-2,-10],[-2,-16],[0,-15],[0,-13],[2,-22],[2,-25],[-1,-7],[-1,-18],[1,-32],[2,-18],[2,3],[2,10],[3,10],[3,9],[-2,-22],[-2,-13],[-1,-9],[-2,6],[0,-8],[-1,-8],[-1,1],[-1,3],[-1,-2],[-1,8],[-1,14],[-1,10],[-1,-3],[-2,-8],[-2,2],[-1,2],[0,-19],[-1,-15],[0,-16],[1,-5],[1,4],[1,-10],[1,-10],[0,8],[-1,16],[-1,15],[1,8],[1,-10],[1,-16],[1,-2],[1,2],[0,-26],[4,-44],[3,-35],[2,-16],[3,-5],[1,-4],[1,-3],[0,-5],[0,-13],[-1,-9],[-1,-21],[0,-20],[0,-15],[0,-19],[0,-14],[-2,-26],[0,-20],[-2,-12],[-1,3],[-2,5],[-3,7],[-5,-17],[-2,-17],[-2,-15],[0,-9],[-1,-9],[-1,5],[-1,-4],[-2,-14],[0,9],[-2,13],[-1,10],[-1,21],[-1,23],[0,19],[-1,19],[0,14],[-1,18],[-4,22],[-1,9],[-3,-6],[-3,-3],[-2,4],[-4,1],[-1,-6],[-1,24],[-1,10],[-3,9],[-1,2],[-2,3],[-1,22],[-2,11],[-2,18],[-5,61],[-2,35],[-1,8],[0,6],[-4,12],[-3,1],[-4,-12],[-4,-17],[-2,-11],[1,15],[1,14],[-2,1],[-1,5],[0,14],[-1,1],[-1,-6],[-1,-12],[1,-25],[0,-24],[1,5],[1,-6],[-1,-13],[-1,-27],[0,-17],[0,-37],[0,-25],[1,-21],[0,-25],[-2,-36],[-1,-23],[-2,-32],[-1,-53],[0,-55],[1,-18],[1,-35],[4,-29],[1,-8],[2,-2],[3,6],[2,-4],[0,-15],[1,-17],[0,-15],[0,-20],[-2,-29],[-2,-25],[-2,-4],[-4,-11],[-4,-11],[-7,-27],[-5,-20],[-2,-19],[-3,-4],[-3,-2],[-1,-21],[-1,-15],[-2,-5],[-2,-1],[-3,-14],[-3,6],[-3,21],[-5,20],[-2,-1],[1,-32],[3,-30],[4,-28],[3,-14],[4,-2],[1,-11],[-2,-23],[-2,-44],[-1,-26],[2,-17],[1,-28],[0,-45],[-1,-69],[0,-27],[1,-22],[-1,-29],[-1,-6],[-1,3],[-2,-3],[-2,0],[-2,8],[-3,-2],[-2,4],[-2,-17],[-1,5],[-1,4],[0,9],[-1,12],[0,17],[-2,12],[-2,-2],[-2,-5],[0,9],[0,12],[1,10],[0,15],[0,15],[0,14],[0,15],[-2,7],[-2,-2],[-1,-12],[0,-25],[-1,-9],[-2,2],[-1,-1],[-1,-9],[-1,-16],[0,-22],[-1,-16],[-3,-25],[-1,-4],[-1,-10],[-1,0],[-1,3],[-2,2],[-2,9],[-1,7],[-1,-18],[0,-6],[-1,-11],[1,-27],[-1,-14],[-1,-3],[-2,4],[-2,2],[-1,3],[-2,7],[-2,3],[-2,15],[-2,9],[-2,2],[-2,17],[-2,15],[-1,14],[-1,23],[-1,13],[-2,4],[-1,2],[-1,4],[-1,17],[0,19],[-2,6],[-3,-1],[-1,-7],[-1,-5],[-2,-22],[0,-19],[0,-34],[1,-13],[2,-38],[1,-32],[1,-55],[-2,-17],[-2,15],[-4,13],[-4,-9],[-4,10],[-3,1],[0,-12],[4,-11],[4,-16],[4,1],[0,1],[2,-14],[1,-21],[-1,-25],[-2,-41],[1,-68],[3,-80],[3,-49],[3,-33],[0,-15],[0,-24],[-2,-33],[-4,0],[-1,-2],[-2,5],[-2,11],[-2,-10],[-1,-6],[-2,11],[-2,12],[-2,-12],[-2,-9],[0,11],[-2,8],[-1,-4],[-1,0],[0,10],[1,21],[-2,21],[-3,32],[-3,12],[1,18],[1,-8],[-1,21],[1,4],[2,0],[0,26],[3,16],[3,21],[0,41],[-1,2],[-1,-10],[-2,-16],[-2,-17],[-3,-18],[-1,-16],[0,-16],[-1,-1],[-2,7],[-5,8],[-2,8],[-3,24],[-1,5],[-4,-10],[-2,-23],[-1,-3],[-1,-19],[0,-28],[0,-29],[-1,-31],[-1,-40],[0,-18],[1,-10],[-3,5],[-3,-11],[0,17],[-2,2],[-3,-16],[-2,-13],[-1,-16],[-2,-15],[-2,-10],[-2,3],[-2,-7],[-2,-8],[-1,2],[-2,-9],[-1,-8],[-4,-10],[-3,-15],[-2,-31],[-4,-54],[-3,-15],[-4,-28],[3,8],[0,-13],[-2,-16],[-2,-13],[-5,-47],[-3,-29],[-1,-15],[-1,0],[-1,-1],[-2,-9],[-1,-16],[-1,0],[1,24],[-1,13],[-1,-20],[-2,-13],[-1,-15],[0,-16],[1,6],[-1,-24],[-2,-25],[0,-18],[-2,0],[-1,0],[-1,-6],[-2,6],[-1,5],[-3,-48],[-2,-4],[-1,-2],[-1,-13],[-1,-9],[-1,5],[0,-1],[-1,2],[-2,-10],[0,-13],[-1,-29],[-1,-23],[0,-20],[0,-11],[-1,-16],[-1,-53],[-1,-24],[-1,-11],[0,-23],[0,-15],[1,-10],[2,-12],[1,-20],[2,12],[1,15],[0,17],[-1,9],[3,-2],[1,-6],[1,1],[3,0],[1,13],[2,18],[1,12],[1,12],[3,11],[1,3],[1,4],[1,10],[2,-1],[2,10],[1,8],[2,3],[6,45],[4,21],[6,3],[4,22],[2,7],[1,-4],[1,-8],[2,-9],[1,1],[1,-4],[1,-6],[1,-16],[-2,-14],[-1,7],[-2,-6],[-1,-10],[0,-15],[1,-24],[2,-5],[2,1],[1,-1],[1,-9],[1,-10],[1,-10],[0,-10],[-1,-24],[0,-22],[0,-15],[-2,-117],[-2,-16],[-1,-5],[-3,3],[-4,3],[-3,-4],[-1,-3],[-2,-4],[-6,-42],[-6,-11],[-3,-23],[0,-32],[2,-5],[5,42],[2,-3],[2,-43],[0,-13],[-2,0],[2,-51],[11,-88],[2,1],[1,-15],[3,-1],[1,-4],[1,2],[0,-10],[0,-24],[1,-15],[-1,-19],[-1,-18],[-1,-7],[-2,-19],[0,-26],[-1,-22]],[[6921,36837],[74,0],[10,-9],[8,4],[45,7],[-1,431],[102,3],[-1,599],[35,-1],[6,-3]],[[7199,37868],[15,5]],[[7554,38050],[1,-7],[1,-12],[-2,-8],[-2,-3],[-1,-3],[-2,13],[1,20],[2,-1],[1,5],[1,-4]],[[7507,38085],[0,-4],[-1,3],[-1,-12],[-1,-8],[-1,-11],[-1,-3],[-1,18],[1,12],[1,19],[2,11],[2,5],[0,-17],[0,-13]],[[7575,38192],[0,-13],[-1,-10],[-3,-1],[-2,-9],[-1,-2],[-3,-1],[-1,-8],[-1,4],[-2,-10],[-3,-2],[-1,16],[0,22],[0,19],[0,7],[2,-7],[2,-16],[2,4],[0,27],[3,5],[3,7],[2,-6],[3,-11],[1,-15]],[[7559,38318],[2,-9],[1,-15],[-1,-12],[-2,-6],[-2,8],[-1,3],[-3,-18],[-3,-33],[-2,-19],[0,-25],[-1,-30],[0,-11],[-2,5],[-2,2],[-1,14],[1,19],[-1,10],[0,13],[2,10],[1,17],[1,20],[0,21],[-1,15],[1,15],[1,4],[1,0],[2,-4],[2,5],[0,20],[0,11],[1,-2],[2,-3],[1,-5],[2,-8],[1,-12]],[[7481,38373],[2,-3],[1,2],[3,-10],[1,-3],[1,-17],[0,-8],[1,-19],[2,-11],[1,-11],[2,-1],[1,8],[2,-6],[3,-9],[5,-1],[2,9],[2,12],[2,9],[1,15],[1,8],[1,-7],[2,-5],[2,-6],[1,-1],[0,-17],[-1,-22],[-1,-18],[-2,-4],[-2,-1],[0,-10],[-2,-3],[-2,3],[-2,9],[-1,4],[-1,3],[-3,-13],[-1,-7],[-1,-15],[-2,-22],[-1,-24],[-1,-13],[-2,-13],[-3,-9],[-3,-8],[-2,-10],[-2,-3],[-2,3],[-2,-5],[-2,0],[-1,-2],[-2,2],[-1,1],[-1,-7],[-2,11],[-1,-2],[-1,-5],[-1,0],[-1,15],[-1,19],[-2,1],[-1,11],[0,10],[3,4],[2,6],[2,9],[3,-3],[3,11],[0,28],[-1,19],[1,23],[2,23],[2,25],[0,21],[-2,17],[-1,4],[-1,-5],[-2,10],[0,14],[-1,11],[1,15],[2,-3],[1,-1],[1,-20],[2,-12]],[[7523,38441],[0,-16],[-1,3],[-2,6],[-2,8],[1,5],[1,2],[1,7],[1,5],[1,-20]],[[12709,33202],[-11,-139]],[[12698,33063],[-1,26],[0,15],[-1,17],[0,18],[-1,32],[1,22],[1,21],[1,3],[1,-1],[2,0],[2,-3],[3,-6],[3,-5]],[[12529,34422],[-4,-14],[-3,-8],[-35,-121]],[[12487,34279],[-1,11],[0,16],[0,12],[0,17],[1,9],[1,1],[2,7],[2,22],[1,13],[3,1],[2,-3],[1,-4],[1,-8],[1,-20],[1,11],[-1,14],[2,22],[1,9],[2,4],[4,-1],[2,-3],[2,1],[1,7],[1,8],[2,9],[1,14],[1,9],[1,1],[2,-16],[1,-12],[1,-7],[2,2],[1,-4],[1,1]],[[12415,34529],[-1,-11],[-1,4],[0,16],[1,3],[1,-1],[0,-11]],[[12485,34273],[-1,-3],[-2,-10],[-19,-63],[0,-9],[0,-9],[-1,-15],[-1,-16],[-2,-16],[-1,-3],[-2,-5],[-2,-6],[-1,-1],[-2,0],[-1,-4],[-1,-8],[-1,-7],[-1,0],[-1,1],[-2,3],[-2,-3],[-2,-4],[-2,-6],[-2,2],[-4,17],[-1,1],[0,3],[-1,-1],[0,-2],[0,-6],[-2,-17],[0,-8],[0,-19],[-2,-15],[0,-2],[0,-2],[-2,-8],[-2,-6],[-1,-4],[-2,-5],[1,-5],[1,-7],[1,-17],[1,-19],[1,-4],[2,-8],[0,-14],[-1,-23],[0,-12],[-1,-11],[-1,-2],[-1,3],[-1,-2],[-2,-6],[0,1],[-2,9],[-1,12],[-1,1],[-3,4],[-1,1],[-1,4],[-2,3],[-1,1],[-1,0],[-1,-2],[-1,-6],[-1,-8],[-2,-14],[-1,-16],[-2,-32],[-1,-21],[-1,-13],[-1,-11],[-1,-13],[-1,-5],[0,-5],[-2,-14],[-1,16],[0,5],[0,6],[-1,-2],[-1,-6],[-2,-6],[-1,1],[0,1],[-1,8],[-1,50],[-2,22],[-1,9],[-1,0],[0,4],[-1,5],[0,11],[0,13],[-1,10],[-1,10],[-2,12],[0,5],[-2,20],[-1,3],[0,8],[-2,17],[-1,18],[-1,5],[-1,7],[0,7],[1,12],[0,12],[1,8],[-1,21],[0,7],[-1,8],[0,6],[0,8],[0,1]],[[12366,34108],[0,14],[0,12],[1,16],[0,9],[1,16],[0,28],[0,25],[0,22],[-1,14],[1,17],[0,13],[0,20],[-1,25],[-1,15],[0,17],[0,21],[0,27],[0,18],[2,14],[0,15],[1,-1],[1,-5],[1,-4],[1,14],[1,5],[1,3],[1,9],[1,11],[-1,9],[0,15],[-1,15],[-1,15],[0,12],[-1,10]],[[12372,34574],[-1,-8]],[[12371,34566],[1,6],[0,2]],[[12372,34574],[3,64],[1,15],[3,58],[2,37]],[[12381,34748],[-1,-29],[0,-25],[0,-23],[0,-22],[0,-30],[0,-19],[0,-15],[2,-17],[0,-9],[0,-17],[1,-17],[0,-15],[1,-19],[-1,-17],[-1,-13],[1,-13],[0,-17],[1,-5],[1,-4],[1,-4],[2,0],[2,5],[1,0],[3,5],[2,3],[2,-1],[2,2],[2,3],[2,12],[1,12],[1,9],[2,6],[1,14],[2,3],[2,-4],[1,6],[1,13],[1,2],[0,-19],[3,-13],[2,8],[0,8],[0,9],[0,5],[-1,6],[0,12],[0,24],[0,16],[0,16],[1,13],[2,4],[0,-9],[2,-13],[1,-17],[1,-13],[4,-26],[3,-17],[2,-6],[3,-10],[3,-4],[3,-3],[1,2],[1,4],[1,6],[1,2],[2,0],[1,2],[2,-4],[1,-7],[1,-6],[1,-5],[2,0],[4,-12],[3,-20],[4,-30],[3,-26],[2,-16],[1,-1],[1,2],[2,5],[1,-4],[1,-8],[2,-9],[1,-7],[1,-13],[0,-14],[-1,-16],[0,-13],[1,-18]],[[12373,35291],[0,-15],[-1,3],[-1,8],[-1,7],[0,11],[0,13],[1,-6],[1,-9],[1,-12]],[[12393,35273],[-1,-2],[0,9],[0,16],[1,3],[0,15],[0,11],[1,9],[1,3],[1,2],[1,-4],[0,-13],[-1,-6],[0,-13],[-1,-16],[-1,-5],[-1,-9]],[[12429,35338],[1,0],[1,0],[1,-5],[0,-13],[1,-7],[1,-2],[0,-4],[1,-6],[2,-7],[1,-6],[1,-6],[0,-5],[1,-5],[1,-10],[1,-5],[0,-7],[1,-7],[0,-6],[1,-6],[1,-9],[1,-8],[2,-15],[1,-6],[1,-9],[1,-13],[1,-9],[0,-8],[1,-12],[1,-14],[1,-6],[0,-4],[1,-4],[1,-5],[0,-4],[1,-4],[1,-11],[1,-9],[1,-9],[0,-5],[1,-8],[1,-7],[0,-4],[1,-4],[1,-11],[1,-7],[2,-16],[1,-11],[1,-16],[1,-9],[2,-8],[1,-2],[1,-13],[2,-10],[2,-22],[1,-13],[2,-10],[1,-15],[1,-16],[1,-15],[1,-6],[1,-6],[1,-11],[2,-16],[1,-9],[1,-13],[1,-8],[1,-7],[0,-5],[1,-11],[1,-10],[1,-10],[2,-13],[1,-15],[1,-13],[1,-13],[1,-16],[1,-8],[1,-17],[0,-14],[1,-12],[0,-16],[-1,-8],[-1,-4],[-1,-3],[-2,-1],[-2,0],[-6,16],[-2,0],[-2,-5],[-1,8],[-1,9],[-2,-3],[-2,6],[-2,4],[-1,14],[-2,9],[-3,13],[-1,11],[-2,14],[-3,20],[-2,10],[-2,5],[-1,1],[-3,1],[-2,7],[-1,10],[-2,16],[-2,9],[-1,0],[-1,0],[-1,6],[-1,5],[-1,2],[-1,-1],[-1,-2],[-1,2],[-1,1],[-1,-1],[-1,-5],[-1,-8],[-1,-7],[-1,-5],[-2,0],[0,-12],[-1,-18],[0,-7],[-2,1],[-1,1],[-2,7],[-1,9],[-3,12],[-1,1],[-2,0],[-2,6],[-2,8],[-2,6],[-1,1],[-2,8],[-1,6],[-1,7],[-1,11],[-1,8],[-2,17],[-2,14],[-3,18],[-1,5],[-1,7],[-1,13],[-1,14],[-1,16],[-1,17],[-1,13],[-1,15],[-1,20],[-1,11],[0,4],[-1,5],[-1,8],[-1,8],[-1,12],[0,15],[-1,17],[-1,19],[0,10],[-1,11],[-1,15],[-1,13],[2,-2],[0,-9],[1,-5],[1,19],[0,14],[0,15],[1,17],[0,12],[2,3],[1,8],[1,7],[0,5],[1,8],[1,5],[1,4],[1,2],[2,5],[1,2],[1,-1],[1,3],[1,2],[1,0],[1,-1],[1,-1],[0,3],[1,5],[1,16],[0,13],[1,-1],[0,-1],[0,10],[0,8],[-1,6],[1,7],[0,4],[2,5],[1,0],[1,8],[0,12],[0,5],[1,0],[1,-11],[1,-14],[0,7],[1,7],[1,-1],[0,1],[1,3],[1,1],[0,-1],[1,0],[1,0],[1,-2],[1,-4],[0,3],[1,4],[0,11],[1,6],[1,0],[0,-3]],[[12385,35361],[0,-4],[-1,1],[0,8],[-1,13],[-1,11],[0,10],[0,11],[1,10],[1,7],[0,-17],[0,-11],[1,-13],[0,-17],[0,-9]],[[12305,35887],[0,-11],[-1,2],[-1,3],[0,6],[-1,7],[-1,19],[1,6],[1,0],[1,-7],[1,-11],[0,-14]],[[12353,35484],[0,-10],[-1,-11],[-1,10],[-1,5],[-1,-2],[-1,-3],[-2,-6],[-1,-2],[-1,-3],[-1,8],[0,12],[0,10],[0,8],[-1,8],[0,11],[-1,11],[-1,15],[-1,20],[0,13],[-4,72],[0,12],[-2,16],[-1,26],[0,17],[-1,17],[0,17],[-2,21],[-1,23],[1,11],[-1,17],[0,14],[0,14],[-1,15],[-1,4],[-1,10],[-1,17],[-1,15],[-1,14],[0,16],[-1,19],[-1,27],[1,15],[0,17],[0,11],[0,2],[1,3],[1,-2],[1,-12],[1,-8],[1,-14],[1,-18],[1,-20],[0,-17],[0,-18],[1,-13],[1,-6],[1,-12],[1,-15],[1,-9],[1,-8],[0,-23],[2,-25],[1,-16],[1,-9],[3,-42],[1,-30],[1,-22],[1,-20],[1,-31],[1,-20],[1,-22],[1,-21],[1,-11],[1,-10],[0,-16],[0,-18],[1,-11],[0,-10],[1,-12],[1,-15]],[[12299,36122],[1,-8],[2,0],[2,8],[2,-2],[2,-9],[0,-10],[-1,-13],[0,-19],[1,-24],[1,-17],[1,-12],[2,-2],[3,-19],[1,-11],[0,-17],[-1,-7],[-1,-3],[-1,2],[-1,-2],[-1,-1],[-1,4],[-1,11],[-3,16],[-2,-2],[-2,11],[-1,9],[-3,14],[0,12],[-1,19],[-1,24],[-2,34],[-2,30],[-1,29],[0,21],[0,13],[1,-1],[3,-18],[0,-13],[2,-19],[1,-10],[1,-18]],[[12291,36234],[0,-14],[-1,8],[-1,4],[-1,15],[-1,20],[1,1],[1,-17],[0,-8],[2,-9]],[[12323,36431],[1,-10],[1,9],[1,2],[1,-13],[0,-13],[1,-19],[1,-7],[-1,-4],[-2,2],[-1,-3],[-1,6],[0,10],[-1,13],[-1,18],[-1,12],[0,13],[1,-2],[1,-14]],[[12312,36755],[0,-10],[-1,6],[0,8],[0,14],[-1,20],[1,-1],[1,-12],[1,-14],[-1,-11]],[[12311,36995],[1,-15],[-1,0],[-1,14],[1,4],[0,-3]],[[12306,37754],[-4,-18],[0,9],[0,22],[3,19],[1,0],[1,1],[3,11],[2,6],[1,5],[0,2],[1,-7],[-1,-20],[-3,-23],[-4,-7]],[[12485,38419],[6,-19],[-6,-192],[7,-110],[14,-199],[80,-465],[37,-187],[37,-581],[9,-96],[4,-40],[2,-27],[13,-139],[14,-140],[50,-459],[-24,-212],[33,-552],[21,-244],[13,-183],[4,-43],[2,-35],[8,-103],[0,-4]],[[12809,34389],[-1,-14],[-93,-1102]],[[12715,33273],[-4,3],[-1,-5],[-2,-8],[-3,-4],[-3,7],[-2,5],[-3,7],[-2,-5],[0,-4],[-1,-5],[-2,-20],[-1,-14],[0,-21],[-2,-21],[0,-21],[0,-19],[0,-23],[0,-28],[0,-30],[0,-32],[0,-29],[0,-31],[0,-24],[0,-15],[-2,5],[-2,12],[-1,18],[-1,17],[-2,18],[-1,23],[-2,20],[0,12],[-1,9],[-1,-14],[0,-14],[0,-16],[-1,-28],[1,-18],[1,-18],[0,-22],[0,-17],[1,-18],[2,-15],[1,-18],[1,-26]],[[12682,32846],[-19,-231]],[[12663,32615],[-8,30]],[[12655,32645],[-2,38],[-1,22],[-1,36],[-1,13],[-1,10],[0,15],[-1,22],[0,15],[0,14],[0,27],[-1,8],[-1,13],[-1,20],[0,18],[-2,9],[-1,21],[-1,16],[-1,21],[0,23],[-1,16],[-1,8],[-1,8],[-1,13],[0,18],[-1,12],[-1,15],[-1,15],[0,21],[-2,18],[-1,16],[-2,16],[-1,22],[0,18],[-1,17],[-2,19],[-1,11],[0,8],[-2,14],[0,21],[0,21],[1,16],[-1,14],[-1,25],[1,16],[1,10],[2,10],[1,7],[1,20],[0,19],[3,11],[0,22],[1,9],[3,19],[4,22],[2,6],[2,7],[2,19],[2,15],[1,-4],[1,-7],[1,-23],[1,-26],[0,-35],[0,-23],[1,-25],[1,-23],[2,-28],[2,-25],[2,-15],[2,-4],[2,-9],[0,-18],[0,-25],[1,-19],[1,-11],[1,-4],[1,2],[1,4],[1,14],[0,13],[0,15],[-1,24],[0,7],[-1,15],[0,18],[0,16],[0,16],[-1,16],[0,15],[-1,13],[-1,16],[0,16],[0,16],[0,19],[1,14],[0,6],[2,7],[1,21],[2,26],[1,31],[1,13],[1,12],[-1,13],[0,22],[1,6],[1,10],[0,9],[1,12],[-2,-7],[-1,-5],[-1,-17],[0,-14],[-3,-14],[-2,-11],[-1,-7],[-1,-14],[0,-22],[-1,-9],[-2,-5],[0,5],[-1,9],[-2,12],[-1,14],[0,13],[-1,16],[0,10],[-2,21],[0,14],[-2,15],[-3,7],[-1,6],[-1,11],[0,21],[0,28],[1,33],[-1,35],[-1,19],[-1,8],[-1,10],[-1,4],[0,15],[1,16],[0,3],[2,4],[0,6],[1,4],[1,10],[2,16],[1,21],[1,25],[0,24],[0,21],[1,20],[0,6],[1,3],[1,3],[1,3],[1,1],[2,5],[2,5],[1,11],[1,17],[0,17],[1,14],[0,3],[2,4],[0,9],[0,20],[-1,12],[-2,7],[-2,8],[-1,22],[0,12],[0,17],[1,5],[1,-2],[1,1],[1,2],[1,9],[1,13],[1,9],[1,10],[1,9],[1,0],[2,5],[0,9],[1,7],[0,7],[-1,11],[-1,-1],[-2,-12],[-2,-6],[-1,-5],[-1,-11],[-1,-16],[-1,-7],[-1,1],[-1,3],[-1,3],[-1,1],[-1,-8],[-1,-8],[-6,-4],[-1,-26],[2,-50],[1,-13],[1,-14],[0,-14],[1,-17],[1,-16],[-1,-12],[-2,-4],[-1,-6],[-1,-3],[-1,-2],[-1,-1],[-1,-3],[-1,-16],[0,-22],[1,-16],[0,-19],[0,-25],[-1,-19],[-1,-15],[-2,-11],[-2,-7],[-1,-6],[-1,-3],[0,-9],[-1,-12],[0,-13],[-1,-22],[0,-13],[-1,-19],[1,-15],[-1,-15],[-1,-5],[-1,-4],[-1,-3],[1,-21],[0,-19],[-1,-15],[0,-15],[0,-13],[-1,-14],[1,-16],[1,-16],[3,-16],[1,-16],[1,-13],[-2,-16],[-2,-20],[-1,-10],[-2,-4],[0,-4],[-1,-4],[-2,-23],[-4,-22],[-2,-1],[-2,5],[-2,-17],[-2,-21],[-4,-31],[-3,-23],[-1,1],[-2,3],[-2,17],[-4,29],[-4,41],[-4,40],[0,11],[-2,15],[-1,18],[-1,23],[-1,11],[0,20],[-1,9],[-1,-7],[0,-16],[-1,-6],[0,9],[-1,15],[0,13],[-1,12],[0,15],[0,7],[1,2],[0,3],[2,3],[1,3],[2,4],[2,0],[1,-1],[3,9],[1,5],[0,11],[0,8],[-1,2],[-1,0],[-2,-5],[-2,-8],[-2,-9],[-2,-6],[-3,-2],[-2,0],[-1,1],[-1,14],[-1,18],[-1,8],[-1,17],[-1,18],[-1,21],[-1,1],[0,11],[-1,8],[1,17],[0,9],[1,-4],[1,-9],[2,9],[0,16],[0,16],[0,17],[0,14],[-1,13],[-1,-1],[0,-10],[-1,-14],[-1,-13],[-1,-12],[0,-14],[-2,-10],[-1,0],[0,1],[-1,0],[-2,4],[0,12],[0,19],[0,19],[-1,25],[0,18],[-1,21],[-1,27],[-1,16],[-1,24],[0,29],[0,22],[1,19],[0,20],[-1,5],[-1,-1],[-1,6],[-1,10],[0,7],[0,16],[0,12],[1,4],[1,2],[1,1],[1,0],[1,-7],[0,-12],[1,-15],[1,-2],[1,2],[1,4],[1,9],[1,5],[-1,9],[-1,4],[-2,13],[-1,8],[-2,19],[-1,10],[-1,10],[0,14],[-1,25],[0,36],[0,25],[0,24],[-1,11],[-1,14],[-1,30],[0,14],[0,18],[0,18],[0,16],[1,8],[0,12],[0,18],[1,17],[0,22],[-1,22],[0,15],[0,13],[1,5],[1,6],[1,6],[1,11],[2,7],[1,6],[0,8],[1,8],[0,12],[0,14],[0,19],[0,12],[0,13],[0,19],[-1,14],[0,20],[0,27],[-1,16],[0,18],[0,11],[-2,15],[-1,22],[-2,18],[0,10],[0,9],[1,6],[3,2],[2,4],[1,1],[3,15],[3,9],[3,11],[1,9],[2,2],[2,3],[0,18],[1,9],[1,13],[0,12],[1,20],[1,17],[1,9],[1,5],[1,4],[1,7],[0,1],[1,4],[0,12],[-1,6],[-2,15],[0,15],[-1,15],[-1,13],[-1,10],[-3,43],[0,19],[2,20],[0,11],[-1,14],[0,6],[0,10],[0,15],[0,13],[-1,13],[0,18],[0,13],[0,23],[0,15],[-3,88],[4,52],[8,47],[7,0],[4,98],[-4,108],[0,99],[3,75],[7,51],[4,28],[-2,19],[-7,-28],[-9,-9],[-4,-57],[-1,-65],[2,-85],[-1,-126],[-4,-47],[-5,-24],[-6,-75],[-5,-112],[-1,-15],[-1,-18],[-1,-25],[0,-22],[1,-23],[-1,-13],[1,-20],[-1,-26],[-1,-13],[1,-15],[1,-35],[-1,-40],[0,-15],[-2,-16],[-1,0],[-2,-5],[0,-4],[-2,-8],[-1,-6],[-1,-8],[-1,-4],[-1,-23],[-1,-3],[-2,-25],[-1,-3],[-1,-7],[-1,-6],[-1,-5],[-1,-6],[-1,-6],[-1,-1],[-2,1],[-1,0],[0,-2],[0,-9],[0,-9],[1,-8],[0,-17],[-1,-21],[-1,-19],[0,-16],[-1,-9],[1,-18],[0,-26],[1,-16],[2,-5],[0,-13],[1,-7],[1,-6],[1,-7],[1,-8],[2,-21],[2,-22],[1,-16],[1,-14],[0,-13],[0,-16],[-1,-20],[-1,-16],[-1,-4],[-1,-5],[-1,-1],[-1,1],[-1,0],[-1,-1],[-1,-6],[-1,-12],[-1,-24],[0,-18],[0,-18],[-1,-15],[0,-21],[-1,-20],[0,-15],[-1,-5],[-1,6],[0,12],[-2,5],[-1,2],[-1,0],[-1,-4],[0,1],[-1,7],[-2,4],[-1,0],[-2,-1],[-1,-5],[-1,-5],[-1,-2],[-1,-3],[-2,-3],[-1,0],[-1,6],[-1,4],[-1,5],[0,6],[-1,7],[-1,6],[-1,7],[0,9],[-1,14],[-2,13],[-1,11],[-1,8],[-1,12],[-2,8],[-1,12],[-2,13],[-1,13],[-2,13],[0,7],[-2,20],[-2,19],[-2,16],[-1,10],[-1,10],[-1,11],[-1,7],[-1,7],[-1,9],[-1,8],[-1,6],[-2,19],[-2,18],[-2,16],[-2,16],[-1,10],[-1,4],[-1,-5],[0,10],[0,10],[-1,0],[-1,-5],[0,1],[-1,6],[-1,6],[-1,6],[0,7],[0,10],[0,10],[-1,8],[0,6],[-1,7],[-1,5],[0,4],[-1,-1],[-1,-2],[-2,1],[0,3],[-1,3],[-1,11],[0,5],[-1,2],[-1,15],[-1,7],[0,-2],[-1,-2],[0,16],[-1,15],[0,8],[-1,4],[-1,8],[-1,14],[0,12],[-1,7],[-1,11],[-1,2],[-1,5],[-1,17],[-1,12],[-2,15],[-1,3],[0,10],[-1,3],[-1,15],[0,10],[-1,4],[-2,19],[-1,8],[-1,8],[0,12],[-1,8],[-1,2],[-1,-1],[0,-11],[-1,2],[-1,8],[-1,7],[-3,-6],[-1,-21],[-1,-4],[-3,5],[-1,-2],[0,-7],[-3,3],[-1,0],[-1,9],[0,-7],[-1,2],[-1,11],[0,-11],[0,-12],[-1,-7],[-1,-5],[-1,-2],[0,-4],[-1,4],[0,16],[0,10],[0,11],[0,11],[1,2],[0,14],[-1,-5],[0,2],[-1,4],[-1,-2],[0,-9],[0,-10],[0,-12],[-1,-9],[-1,7],[0,-14],[0,-18],[-1,-17],[-1,-5],[-2,-4],[-1,4],[0,9],[-1,12],[-1,5],[-1,10],[0,10],[1,8],[0,3],[1,5],[-1,13],[1,14],[-1,9],[1,13],[0,19],[0,18],[-1,15],[1,16],[0,14],[-1,9],[0,19],[-1,5],[-1,-5],[-1,-7],[-1,-6],[0,-5],[-1,-3],[-1,3],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,-9],[0,-3],[1,-6],[-1,-13],[0,-11],[0,-4],[-1,4],[-1,8],[-1,4],[0,-4],[-1,0],[-1,9],[-1,0],[-1,-1],[-1,-3],[-1,-8],[-1,-9],[-1,5],[-1,7],[-1,8],[-1,5],[0,12],[-1,12],[-1,0],[-1,2],[-1,-3],[-2,2],[0,6],[-1,11],[-1,9],[-1,11],[-1,17],[1,2],[1,-2],[1,5],[1,1],[1,-2],[1,-11],[1,-4],[1,4],[0,12],[-1,8],[-1,13],[0,12],[-1,12],[-1,9],[-1,8],[0,15],[-1,18],[0,18],[2,4],[0,-11],[1,-19],[0,-10],[0,16],[1,9],[0,14],[0,14],[-1,16],[0,19],[-1,20],[0,-10],[0,-14],[-1,2],[-1,18],[0,17],[0,18],[0,11],[-1,14],[0,12],[0,15],[-1,10],[0,23],[-1,15],[0,17],[-1,21],[0,13],[0,13],[1,4],[0,13],[0,10],[-1,7],[-1,3],[0,11],[0,15],[0,16],[0,12],[1,14],[0,6],[-1,2],[-1,8],[0,5],[-1,11],[-1,-1],[-1,6],[-1,13],[-2,11],[-2,11],[0,15],[-1,16],[0,19],[0,11],[1,5],[1,6],[1,-2],[1,-14],[1,-10],[1,2],[0,9],[-1,10],[0,12],[-1,8],[-2,1],[-1,3],[-1,8],[-1,17],[-1,8],[-2,9],[-2,15],[-2,6],[-1,12],[-1,16],[0,16],[-1,11],[0,8],[-1,12],[-2,23],[-1,16],[-1,16],[0,17],[-2,15],[0,8],[-1,10],[-1,15],[0,20],[-1,22],[-1,9],[0,14],[-1,11],[0,7],[-1,4],[-1,7],[-1,12],[0,4],[-1,6],[-1,16],[-1,16],[-1,-9],[-1,9],[-1,10],[0,10],[0,11],[0,13],[-1,19],[2,-2],[0,21],[-1,10],[0,5],[-1,5],[-1,18],[0,17],[-1,2],[-1,19],[-1,5],[-1,5],[0,10],[0,10],[-1,2],[-1,14],[-1,14],[0,20],[-2,31],[-1,40],[-1,33],[1,4],[0,5],[1,3],[1,-5],[1,-9],[1,-6],[1,-18],[1,-5],[1,-2],[1,-6],[1,-11],[1,-17],[1,-9],[1,-1],[1,1],[1,9],[0,17],[-1,20],[0,13],[0,15],[1,13],[1,-5],[0,-12],[1,-17],[1,-13],[0,-17],[1,-15],[0,-8],[1,-6],[1,-10],[1,-4],[1,13],[-1,12],[-1,15],[0,20],[-1,33],[-1,16],[-1,12],[0,12],[-1,6],[0,7],[-1,12],[-1,18],[-1,19],[-1,7],[-1,6],[0,31],[0,18],[-1,12],[1,16],[0,-10],[1,-5],[1,7],[-1,10],[0,13],[0,13],[-1,18],[1,3],[1,11],[1,11],[1,12],[0,16],[-1,11],[-1,17],[0,18],[1,8],[0,12],[1,14],[0,24],[-1,16],[0,25],[0,19],[0,13],[0,18],[0,13],[-1,14],[0,19],[-1,12],[-1,4],[-1,9],[-2,12],[0,11],[0,9],[1,12],[-1,20],[0,11],[1,6],[2,34],[0,6],[0,7],[-1,5],[-2,-7],[-2,-26],[-4,-24],[-2,10],[-1,5],[0,13],[0,15],[3,19],[1,12],[4,43],[5,62],[3,20],[1,13],[1,11],[1,16],[0,15],[0,15],[0,16],[0,17],[0,16],[1,24],[1,34],[0,21],[0,31],[0,22],[1,17],[0,19],[0,24],[-1,9],[-1,18],[-2,12],[-1,15],[0,12],[-1,21],[0,18],[0,17],[0,15],[-1,23],[0,17],[2,16],[1,21],[0,13],[-1,13],[-1,8],[0,5],[-1,10],[-1,10],[-1,10],[0,11],[-1,9],[-1,12]],[[12314,38446],[1,0],[128,-30],[42,3]],[[12251,38458],[37,-5],[23,-4]],[[12311,38449],[1,-17],[-1,-13],[0,-21],[0,-12],[1,-15],[2,-14],[0,-16],[1,-12],[1,-16],[1,-12],[0,-15],[1,-18],[0,-14],[-1,-12],[-1,-8],[0,-16],[0,-21],[0,-10],[1,-15],[2,-26],[0,-18],[0,-11],[1,11],[0,12],[1,-5],[0,-15],[0,-20],[-1,-20],[-1,-24],[0,-17],[0,-32],[-1,-23],[0,-21],[0,-28],[1,-42],[0,-17],[-1,-20],[-1,-13],[-1,-15],[-1,-2],[-2,3],[-3,1],[-2,-2],[-1,-1],[-7,-25],[0,-6],[-1,-7],[0,-29],[1,-17],[1,-20],[0,-8],[-2,-35],[0,-58],[1,-13],[0,-16],[0,-16],[1,-14],[0,-14],[-1,-4],[-2,-9],[0,-16],[1,-20],[0,-22],[-1,5],[-2,12],[-1,13],[-2,23],[-1,8],[0,6],[-1,-4],[0,-15],[1,-19],[1,-16],[0,-20],[0,-19],[0,-21],[1,-10],[1,-15],[0,-12],[0,-8],[0,-17],[-1,-4],[-1,-1],[-1,-3],[-1,-4],[0,-9],[1,-13],[1,-28],[0,-17],[1,-15],[0,-15],[-2,10],[0,18],[-2,16],[-1,18],[-1,15],[-2,14],[0,15],[-2,22],[-1,10],[-1,9],[-1,8],[0,14],[0,21],[-1,21],[0,3],[-1,12],[-1,16],[0,15],[-1,8],[0,20],[-1,6],[-1,9],[-2,43],[-2,28],[-2,19],[-1,20],[-1,7],[-2,22],[-1,5],[-1,27],[-2,29],[-1,34],[-2,36],[0,30],[-1,14],[1,9],[1,11],[1,17],[0,14],[1,14],[0,13],[0,12],[0,12],[-1,24],[-1,30],[-1,32],[0,31],[-1,19],[-1,35],[-2,29],[-1,39],[-1,35],[-2,42],[0,30],[1,23],[0,32],[-1,36],[1,28],[0,17]],[[13047,23077],[2,-10],[0,-19],[0,-13],[-1,-4],[0,8],[0,19],[-1,5],[-1,4],[-1,1],[0,-11],[1,-13],[1,-20],[0,-18],[-1,-17],[0,-11],[-1,6],[0,21],[-1,37],[-1,20],[-1,11],[0,13],[1,16],[1,17],[1,-13],[1,-10],[1,-2],[0,-17]],[[13028,23250],[2,0],[1,0],[1,-6],[2,-6],[2,-16],[1,-8],[3,-20],[0,-25],[0,-30],[0,-31],[-2,-8],[0,-15],[1,-9],[1,-3],[1,-16],[0,-19],[-2,-21],[-1,7],[0,-10],[-1,-11],[-1,-13],[-1,11],[-1,-15],[-1,-8],[-1,-3],[-1,15],[-1,25],[0,32],[0,22],[-1,13],[-2,8],[1,13],[1,8],[-2,10],[-2,-4],[0,10],[0,15],[1,7],[0,13],[1,14],[2,8],[-1,12],[-2,15],[-1,26],[0,12],[1,1],[1,1],[1,-1]],[[13047,23237],[1,-13],[2,3],[1,-2],[-1,-12],[0,-21],[-3,-17],[0,-5],[-1,-9],[-1,1],[-1,7],[-1,13],[-1,26],[-1,25],[-1,19],[-1,12],[1,3],[1,1],[1,2],[2,-8],[2,-7],[1,-18]],[[13050,23276],[2,-3],[1,2],[1,-5],[1,-11],[0,-11],[0,-14],[-3,-5],[-1,12],[0,16],[-2,16],[0,15],[1,-1],[0,-11]],[[13030,23312],[1,-1],[1,1],[1,-6],[1,-20],[1,-11],[-1,-8],[-2,3],[-1,-1],[-1,0],[0,18],[-1,23],[0,7],[1,-5]],[[13090,23330],[-2,-9],[-1,11],[2,13],[1,2],[1,-1],[1,-3],[-1,-11],[-1,-2]],[[12503,23279],[0,-30],[1,-27],[0,-23],[0,-12],[1,-20],[0,-25],[2,6],[1,18],[1,17],[0,19],[2,7],[1,-19],[1,-5],[1,31],[0,34],[2,7],[1,1],[1,3],[1,6],[1,-12],[1,-4],[0,-15],[0,-23],[1,-1],[2,36],[2,27],[1,9],[1,22],[2,7],[4,8],[2,4],[1,-11],[2,8],[3,-1],[1,-7],[0,2],[1,-2],[1,-10],[0,-10],[0,-16],[-2,-25],[0,-13],[0,-8],[-1,-23],[-1,-4],[-1,-6],[-1,8],[-1,-2],[-2,-10],[-1,-6],[-2,-6],[-2,0],[-1,-14],[-3,-26],[-1,-11],[-1,-8],[-3,-6],[-2,-11],[-1,-11],[-1,-15],[-2,-16],[-1,-11],[-1,-7],[-1,5],[0,-18],[0,-13],[-2,-28],[-2,-18],[-1,-18],[-3,-8],[-3,-1],[-1,-3],[1,-11],[0,-23],[0,-21],[1,-16],[-1,-17],[-2,-13],[-1,3],[1,21],[-1,6],[-1,13],[-1,6],[-3,-4],[0,13],[-2,-10],[-1,10],[-2,-1],[-2,5],[-1,9],[-1,12],[0,16],[-2,-7],[-1,4],[1,25],[-1,16],[0,11],[1,18],[2,20],[2,10],[1,12],[1,6],[1,15],[2,6],[3,3],[1,-2],[1,0],[1,6],[1,8],[-1,20],[-2,21],[-2,0],[-3,-8],[-1,-6],[-2,3],[0,6],[-2,-1],[0,9],[-1,17],[-2,8],[0,13],[0,17],[-2,-7],[-1,14],[0,15],[-2,20],[-1,17],[-1,0],[0,15],[1,11],[1,16],[1,10],[0,12],[2,12],[1,10],[1,11],[1,14],[1,-10],[0,-6],[1,-6],[0,-19],[1,-21],[0,-17],[2,-23],[2,-19],[0,10],[0,19],[0,23],[-2,22],[1,15],[0,5],[2,2],[-1,-19],[0,-15],[1,-21],[1,-23],[1,8],[1,34],[2,15],[1,3],[1,26],[3,19],[2,-2],[0,-8],[0,-23],[0,-24],[-1,-29]],[[12543,23385],[0,-5],[-1,1],[-2,17],[0,21],[0,17],[1,16],[2,-1],[1,0],[1,-4],[1,-10],[0,-13],[-1,-11],[0,-12],[0,-8],[-2,-8]],[[12545,23599],[1,-2],[1,0],[1,-4],[1,-8],[-1,-14],[0,-8],[-1,-9],[-1,-8],[0,-10],[0,-20],[-1,4],[-1,14],[1,14],[0,16],[-1,5],[0,14],[1,16]],[[12550,23617],[-1,-7],[-1,3],[0,15],[0,6],[1,7],[1,4],[0,-11],[0,-17]],[[13123,23641],[-1,-3],[-1,2],[0,12],[1,14],[0,17],[1,-6],[0,-15],[0,-12],[0,-9]],[[12965,23874],[1,-6],[1,2],[1,-6],[1,-6],[0,-12],[-1,-10],[-1,-7],[1,-8],[0,-14],[-1,1],[-1,10],[-1,14],[1,16],[-2,12],[1,14]],[[13106,23875],[0,-10],[-1,8],[0,10],[-1,17],[0,14],[0,13],[0,12],[1,-4],[1,-13],[0,-21],[0,-16],[0,-10]],[[12961,23897],[-3,-13],[0,13],[0,35],[0,16],[2,11],[1,32],[1,6],[1,-19],[-1,-25],[-1,-14],[0,-42]],[[13087,23973],[0,-20],[-2,4],[-1,27],[1,18],[0,7],[1,-9],[0,-7],[1,-20]],[[13098,24016],[-1,-22],[-3,15],[-1,24],[3,7],[2,-24]],[[12984,24013],[0,-18],[-1,6],[-1,7],[0,6],[-1,7],[-1,5],[0,18],[1,8],[1,15],[1,1],[1,9],[0,3],[1,-20],[0,-19],[0,-14],[-1,-14]],[[13111,24089],[-2,-4],[-1,18],[3,20],[0,-34]],[[13108,24141],[-2,-10],[-2,32],[4,20],[0,-42]],[[13127,24139],[1,-3],[1,8],[2,-14],[0,-16],[1,-13],[1,-18],[0,-20],[1,-16],[1,21],[0,-65],[1,-13],[0,-14],[0,-14],[0,-15],[1,-12],[0,-12],[1,-16],[0,-20],[1,-17],[1,-15],[0,-19],[0,-19],[0,-15],[-1,-26],[0,-22],[-1,-16],[-1,-4],[-1,8],[-1,1],[-1,-7],[0,-12],[-1,-7],[0,-20],[0,-19],[0,-19],[-1,-21],[-2,-11],[-1,-5],[-3,-18],[-1,-2],[-1,11],[1,13],[0,13],[1,12],[1,0],[1,17],[0,15],[-1,26],[-1,2],[-1,1],[0,-14],[-2,-8],[0,13],[0,14],[0,1],[1,8],[1,2],[1,-4],[0,13],[-1,14],[-1,3],[0,16],[1,11],[0,10],[0,26],[0,16],[-1,19],[-2,-11],[-1,-19],[0,-18],[-1,3],[-1,11],[0,20],[-2,4],[0,52],[0,14],[0,13],[0,-7],[-1,32],[1,22],[1,42],[1,18],[2,25],[1,31],[1,24],[1,18],[1,30],[0,9],[1,12],[0,13],[1,-21],[0,-30]],[[13117,24232],[-2,-16],[-1,27],[2,13],[1,-24]],[[13083,24625],[1,-11],[0,-9],[-2,5],[0,8],[0,6],[1,1]],[[13159,24776],[-1,-2],[-1,6],[0,8],[-1,8],[-1,11],[0,10],[0,12],[0,11],[-1,14],[0,16],[1,-24],[1,-15],[1,-13],[1,-11],[1,-12],[0,-10],[0,-9]],[[12393,24549],[0,17],[0,210],[0,202]],[[12393,24978],[0,8],[1,7],[0,7],[0,3],[1,9],[1,7],[0,13],[1,5],[0,2],[1,-1],[1,20],[0,7],[1,-13],[1,-5],[1,-12],[0,-3],[1,4],[1,-1],[0,-16],[0,-6],[0,-6],[1,-2],[0,-13],[-1,-3],[-1,-7],[0,-7],[0,-13],[-1,-8],[-1,9],[-1,0],[-1,-12],[0,4],[-1,-18],[0,-8],[0,14],[0,12],[0,11],[1,12],[0,5],[0,12],[-1,2],[-1,-1],[0,-7],[1,-3],[-1,-16],[0,-9],[-1,-11],[0,-14],[1,-9],[0,-9],[0,-1],[1,-8],[0,-8],[-1,-5],[-1,-13],[1,-16],[0,-9],[0,-13],[-1,-11],[0,-8],[0,-20],[-1,-12],[-1,-17],[1,-19],[0,-14],[1,-14],[1,-4],[0,-10],[-1,-15],[0,-14],[0,-12],[0,-14],[-1,-12],[0,-11],[0,-8],[-1,-11],[0,-12],[0,-15],[-1,-8],[0,-15],[0,-20]],[[12598,25128],[-2,-1],[-1,2],[-2,7],[-2,11],[-1,2],[-2,11],[0,20],[1,35],[2,21],[1,-7],[2,-2],[1,-7],[1,-12],[0,-21],[1,-16],[0,-11],[1,-16],[0,-16]],[[13021,25395],[2,-18],[1,-28],[1,-15],[0,-20],[2,-16],[2,-40],[1,-15],[-1,-43],[-1,-17],[-1,-30],[-1,-22],[0,-21],[0,-22],[0,-15],[1,-34],[2,-28],[0,-21],[0,-9],[-1,-17],[-1,3],[-1,3],[-1,12],[-1,-5],[1,-14],[1,-10],[-1,-31],[0,-13],[-1,-11],[-1,-25],[-2,-1],[1,-23],[0,-17],[0,-24],[-1,-24],[-2,-16],[-2,-19],[-2,-3],[-4,-1],[-3,9],[-1,-8],[-3,-2],[-1,-11],[-2,-4],[-1,-3],[-1,-11],[-2,-6],[0,9],[-1,-3],[-2,-26],[-1,-22],[0,-19],[2,1],[2,3],[0,-6],[2,8],[0,19],[1,14],[1,7],[2,8],[2,-3],[2,-8],[2,-2],[1,-4],[-1,-18],[-1,-10],[2,-3],[4,1],[3,1],[2,14],[3,13],[1,11],[0,23],[2,29],[1,30],[3,23],[0,19],[0,18],[1,6],[1,2],[1,1],[2,-13],[1,-15],[2,-12],[0,-14],[0,-14],[1,-6],[1,-15],[1,-24],[2,-21],[1,-8],[1,-19],[1,-13],[2,-14],[-1,-17],[-1,-23],[0,-15],[1,-8],[1,8],[0,32],[2,18],[1,6],[1,1],[2,4],[0,6],[1,-11],[1,-10],[1,-12],[1,10],[-1,17],[2,9],[2,-5],[1,-9],[3,8],[3,10],[2,-15],[-1,-13],[2,-21],[3,-22],[2,-13],[2,-16],[3,-17],[3,-12],[2,-31],[2,-28],[3,-35],[1,-21],[2,-34],[2,-15],[1,-4],[1,-14],[1,-12],[1,-2],[1,-19],[1,-4],[1,-21],[0,-12],[-1,-8],[-1,-16],[1,-2],[2,3],[1,2],[1,1],[1,-7],[1,-15],[1,-24],[-2,-7],[-1,-25],[-3,-25],[-1,-8],[-1,-16],[1,-7],[0,-14],[-1,-17],[-1,6],[-1,17],[1,26],[0,22],[1,17],[-1,13],[-2,-5],[-1,5],[-1,-9],[-1,-20],[-1,-40],[0,-16],[1,-18],[1,-12],[-1,-10],[-1,-4],[-1,2],[0,10],[-2,-4],[-3,4],[-2,-5],[-1,12],[-1,3],[0,33],[-2,26],[-1,-17],[-2,-18],[-3,11],[-1,22],[1,22],[-1,36],[-1,32],[0,33],[-1,35],[-1,24],[-3,37],[-3,21],[-2,4],[1,-16],[2,-22],[2,-27],[1,-19],[0,-13],[1,-22],[1,-21],[0,-17],[1,-33],[0,-24],[0,-16],[0,-15],[0,-19],[0,-15],[2,-31],[0,-15],[0,-18],[1,0],[2,-6],[1,-13],[1,-14],[2,-6],[1,2],[0,-2],[1,-4],[1,-15],[0,-15],[0,-16],[0,-13],[-2,0],[-2,1],[0,-7],[-1,-15],[-1,3],[-1,2],[-1,7],[0,6],[0,-16],[0,-17],[0,-13],[0,-11],[2,0],[0,16],[0,1],[1,3],[2,2],[1,-7],[1,2],[1,0],[1,-8],[1,-6],[0,-12],[1,-8],[0,-14],[-1,-8],[1,-20],[1,-15],[1,-21],[1,-18],[1,-12],[1,-18],[0,-23],[0,-12],[0,-5],[-2,-15],[-1,-17],[-1,-11],[-2,-3],[-1,-17],[1,-16],[0,-15],[2,10],[0,25],[3,-11],[1,-5],[0,-4],[2,-31],[1,-10],[4,-94],[0,-24],[-1,-51],[-1,-5],[-2,-12],[0,-23],[-2,-26],[-1,-2],[-1,8],[-2,-3],[-3,1],[-1,6],[-1,11],[0,17],[-1,8],[-2,9],[0,14],[0,24],[-1,20],[-1,30],[0,26],[2,22],[1,31],[0,27],[1,16],[1,13],[-1,4],[-2,53],[-2,14],[0,-26],[1,-37],[-1,-31],[0,-39],[-1,-48],[-1,-16],[0,-36],[-1,-36],[-1,-16],[-1,-6],[1,-10],[0,-9],[0,-14],[-2,-15],[-2,-7],[-1,-18],[-1,-10],[0,21],[-1,-16],[-2,0],[1,24],[-1,-2],[-1,4],[0,16],[-2,8],[-4,5],[-1,-24],[-1,-29],[-2,-9],[-1,-14],[-1,14],[-2,-7],[-4,-18],[-4,5],[-1,3],[-1,-10],[0,-17],[-2,-3],[-1,1],[-1,9],[-1,21],[-2,22],[0,21],[-1,1],[-1,7],[-1,8],[-1,19],[-2,13],[-1,15],[-1,21],[-1,13],[-1,13],[-2,7],[-1,-1],[-2,-15],[-2,17],[-1,-11],[-1,22],[-2,16],[-1,4],[-2,4],[-1,17],[1,12],[2,-3],[1,-15],[1,-5],[2,7],[1,0],[0,14],[-1,17],[1,4],[2,-8],[-1,15],[-2,17],[-1,4],[0,-16],[-3,11],[-1,8],[-1,9],[-1,10],[-1,6],[1,8],[2,-5],[2,-2],[1,-5],[0,19],[0,23],[0,13],[0,20],[0,14],[1,7],[1,2],[2,2],[1,2],[0,10],[1,11],[1,6],[2,3],[1,13],[1,15],[3,19],[1,17],[1,31],[1,26],[0,19],[-1,18],[-1,-2],[0,1],[-1,-4],[-1,12],[-1,-9],[1,-24],[0,-21],[-1,-17],[-1,-16],[-1,-11],[0,-3],[-1,2],[-2,0],[-1,5],[0,12],[-1,1],[-1,-2],[-1,2],[1,13],[-1,14],[0,13],[-1,2],[0,-20],[-1,-4],[0,13],[0,14],[-1,4],[-1,-1],[-1,-3],[-1,-5],[0,-7],[-1,-10],[1,-11],[1,6],[1,-10],[-2,-25],[0,-11],[-1,11],[0,-3],[-2,13],[-1,7],[-2,11],[-1,7],[-1,20],[0,10],[-1,-6],[-2,13],[0,25],[2,25],[0,15],[1,20],[0,13],[2,3],[0,10],[0,15],[2,9],[1,1],[1,5],[0,6],[0,18],[0,14],[-1,14],[0,20],[0,9],[-1,17],[-1,77],[0,19],[-1,33],[-1,160],[1,95],[3,5],[0,44],[-2,24],[-2,-32],[-2,-170],[1,-116],[1,-65],[-1,-48],[0,-31],[-1,-21],[-1,-13],[-1,-18],[0,-10],[-1,-8],[-1,-4],[-1,5],[-2,10],[-1,3],[-1,12],[-1,12],[-1,9],[-1,-2],[-2,-10],[0,-1],[-1,8],[-2,15],[0,19],[-1,17],[0,15],[0,9],[-1,13],[-1,5],[-2,27],[-2,44],[-1,33],[-1,29],[0,30],[0,10],[0,24],[-1,-1],[-1,8],[-1,4],[-1,12],[0,44],[1,19],[-1,13],[0,28],[-1,14],[-1,-13],[0,-21],[0,-27],[-1,10],[-1,-3],[-1,-13],[1,-15],[1,-13],[0,-19],[2,-22],[0,-19],[1,-25],[1,-11],[0,-21],[1,-10],[1,-16],[1,-38],[1,-27],[1,-26],[2,-19],[0,-13],[-1,-14],[0,-17],[1,-22],[1,-18],[-1,-17],[0,12],[-1,-11],[-1,-7],[0,-6],[-1,-9],[-1,9],[0,6],[-1,10],[-1,13],[0,14],[-1,7],[-1,15],[-1,11],[-2,4],[-1,-6],[0,-19],[0,-17],[-1,7],[-1,8],[-2,11],[-1,21],[-1,10],[0,-15],[1,-17],[1,-11],[0,-21],[1,-17],[0,-17],[-1,-17],[-1,-3],[-1,-6],[-2,-6],[1,-9],[-1,-14],[-1,-19],[-1,-3],[-1,8],[0,-12],[0,-1],[-2,0],[0,6],[-2,3],[-1,-8],[-1,17],[1,15],[-2,10],[-1,12],[0,15],[-1,8],[-1,20],[0,30],[-1,13],[-1,13],[-1,21],[0,15],[0,12],[-1,9],[-1,14],[1,10],[-1,11],[0,19],[-2,10],[-1,4],[-1,17],[1,17],[0,28],[0,16],[-1,9],[-1,18],[-1,8],[-1,16],[0,26],[-1,15],[0,11],[1,12],[1,17],[0,16],[0,25],[-1,20],[-1,14],[0,14],[1,-12],[1,0],[0,-16],[3,-22],[1,-4],[1,-6],[1,-16],[2,-12],[1,-16],[1,-1],[0,20],[-1,18],[-1,4],[-1,11],[0,12],[-1,17],[0,15],[1,-2],[0,5],[-1,15],[-1,6],[0,12],[0,19],[-1,15],[-1,7],[-1,8],[0,16],[0,15],[-1,18],[1,4],[1,15],[2,16],[1,-5],[2,11],[1,8],[-1,9],[-2,8],[-2,11],[-2,9],[-1,12],[-1,5],[-1,13],[1,7],[1,18],[2,17],[1,8],[4,54],[2,-1],[1,5],[1,-2],[2,-33],[0,-22],[0,30],[0,10],[4,-11],[2,-6],[2,7],[2,16],[1,1],[2,-9],[1,-8],[2,14],[1,7],[1,8],[1,27],[1,27],[0,29],[0,25],[2,19],[0,24],[1,41],[0,33],[2,28],[0,27],[2,28],[3,19],[2,11],[1,0],[0,13],[3,-8],[1,1],[1,18],[-1,11],[-2,1],[-1,11],[-1,16],[0,15],[1,17],[0,9],[0,16],[2,13],[2,17],[2,0],[2,-11],[3,3],[3,11],[3,6],[2,10],[3,11],[2,13],[2,18],[1,7],[1,9],[3,-9],[3,-15],[1,-17],[1,-13],[1,-23]],[[13091,25515],[-1,-12],[-2,2],[0,9],[-1,11],[0,11],[1,11],[1,-3],[1,-7],[0,-11],[1,-11]],[[12660,25660],[-1,-1],[-2,5],[0,13],[0,14],[0,11],[1,-3],[2,-6],[1,-11],[0,-18],[-1,-4]],[[12633,25779],[1,-15],[0,-13],[2,-7],[1,-16],[0,-25],[0,-16],[-1,9],[-1,2],[-2,-5],[1,-13],[-3,-4],[0,10],[-1,15],[-2,8],[0,22],[-1,25],[0,13],[1,3],[2,-5],[0,16],[-1,13],[1,7],[1,0],[2,-24]],[[12560,25824],[-3,-31],[-2,26],[-1,15],[0,29],[1,11],[1,10],[0,13],[2,-34],[2,-39]],[[13011,25821],[1,-3],[1,0],[1,-9],[1,-10],[1,-3],[0,-1],[2,-8],[1,-3],[1,-1],[1,-13],[0,-4],[2,-27],[0,-12],[0,-10],[-1,-12],[1,-18],[-1,-16],[-1,-3],[0,-6],[0,-12],[1,-6],[1,-4],[0,-5],[0,-11],[-1,0],[-2,8],[-2,1],[0,7],[-1,9],[-1,4],[-1,4],[-2,0],[-1,-11],[-2,-18],[0,-8],[-1,-16],[1,-10],[0,-6],[1,-10],[-2,-7],[-1,-2],[-3,3],[-2,-12],[-2,-7],[-1,-24],[-1,-21],[-1,-11],[-1,-19],[-1,-12],[-3,3],[-2,4],[-2,7],[-3,8],[-2,-10],[-2,-2],[-2,5],[-1,13],[2,22],[0,22],[-2,18],[0,23],[0,19],[0,26],[-1,26],[1,15],[1,15],[0,21],[1,23],[1,10],[1,2],[2,16],[2,19],[0,17],[-1,6],[0,13],[2,24],[2,5],[0,12],[2,6],[2,14],[1,16],[2,1],[2,13],[2,-1],[2,-22],[2,-6],[3,-21],[1,-10],[1,-9],[1,-8]],[[12566,25791],[-2,-2],[-1,15],[-5,96],[-4,59],[0,10],[1,14],[2,-8],[3,-71],[7,-88],[-1,-25]],[[12524,25943],[0,-7],[-1,18],[0,10],[-1,17],[2,6],[1,-2],[-1,-16],[1,-15],[-1,-11]],[[12938,25958],[2,-12],[1,-1],[1,-9],[0,3],[7,-39],[2,-35],[2,-11],[4,-34],[2,-11],[0,-18],[1,-10],[-1,-35],[-1,-12],[-2,-29],[0,-16],[1,-3],[0,10],[2,26],[1,5],[0,-17],[-1,-7],[0,-11],[-2,-19],[1,-1],[1,6],[1,4],[1,-14],[2,-12],[-3,-26],[-1,-12],[-1,-9],[-1,-1],[-2,-14],[-1,-14],[-1,-13],[1,-4],[-1,-11],[-2,-5],[-1,-37],[-2,-20],[-2,-17],[0,-14],[-1,-28],[1,-22],[0,-34],[1,-7],[4,-62],[1,-37],[-1,-16],[2,-30],[-1,-9],[1,-32],[-1,-24],[-1,-24],[0,-55],[-1,-2],[-2,-9],[-1,6],[-1,-15],[0,-2],[-3,-29],[1,16],[-2,-8],[-4,-21],[-2,-9],[-1,-8],[-3,-5],[-1,4],[-5,-9],[-2,-3],[-2,-11],[-1,-1],[-2,6],[-5,-16],[-2,-4],[-1,-15],[-1,-6],[-4,-15],[-3,-9],[-3,-12],[-2,-17],[-2,-12],[-1,-2],[-1,9],[-1,-6],[-1,-4],[0,21],[-1,19],[-1,4],[0,14],[-1,18],[-1,4],[-2,8],[1,16],[-1,16],[-2,4],[-1,9],[-2,-1],[0,18],[-2,10],[-2,16],[-3,19],[-1,13],[-1,28],[-1,28],[-1,16],[-2,20],[0,18],[-2,4],[-1,6],[-1,0],[-3,18],[-4,28],[-2,4],[-1,3],[-1,17],[-1,3],[-1,9],[-2,2],[-2,12],[-3,13],[0,19],[-2,12],[-2,8],[-2,25],[0,26],[0,14],[0,25],[0,15],[-1,27],[2,6],[1,15],[1,2],[1,26],[0,24],[2,6],[0,31],[1,29],[2,20],[2,31],[2,20],[-3,2],[1,9],[1,10],[1,17],[0,6],[2,14],[-1,12],[1,14],[2,11],[-1,23],[0,14],[1,7],[0,8],[1,17],[2,5],[2,-9],[1,-5],[1,4],[-1,21],[1,-3],[1,-1],[0,10],[0,22],[1,-9],[1,-8],[-1,-7],[0,-16],[0,-11],[3,-13],[1,-6],[1,0],[-1,44],[1,28],[0,20],[0,25],[1,21],[1,-4],[2,-5],[1,14],[1,0],[1,8],[1,8],[2,-3],[3,-3],[0,3],[3,3],[1,2],[2,-16],[2,3],[3,9],[1,-10],[7,-51],[6,-26],[3,6],[3,25],[1,1],[1,16],[1,1],[1,10],[2,-5],[1,5],[2,2],[4,26],[4,4],[1,3],[5,-18],[2,-14]],[[12551,25866],[-2,-36],[-2,18],[0,16],[-3,93],[0,28],[2,16],[2,-8],[2,-19],[1,-30],[-1,-41],[1,-37]],[[12774,25999],[1,0],[1,2],[0,-14],[-1,-3],[-1,-10],[-1,3],[-1,2],[-2,-1],[0,11],[1,8],[1,8],[1,3],[1,-1],[0,-8]],[[12828,26002],[0,-1],[1,6],[1,-14],[1,-11],[0,-7],[-1,-4],[-4,-1],[-1,18],[-2,3],[-1,11],[1,9],[0,-1],[1,-2],[2,-2],[1,-1],[1,-3]],[[12520,25968],[0,-15],[-2,14],[-1,10],[0,8],[0,18],[2,16],[1,-13],[0,-21],[0,-17]],[[12513,25965],[-1,-6],[0,4],[-2,10],[0,10],[0,16],[0,16],[0,7],[1,-1],[1,-13],[1,-14],[0,-15],[0,-14]],[[12523,25993],[-1,-1],[-1,16],[0,7],[0,11],[0,-3],[1,-9],[1,-11],[0,-10]],[[12841,26006],[-2,-20],[-4,1],[-2,9],[-3,16],[0,15],[1,7],[1,18],[4,6],[1,-10],[1,-5],[1,-10],[2,-13],[0,-14]],[[12517,26019],[-1,-5],[-1,24],[1,23],[0,14],[1,-5],[1,-13],[1,-17],[-2,-12],[0,-9]],[[12962,26135],[3,-17],[2,-17],[2,-13],[1,-9],[1,-8],[0,-11],[0,-15],[2,-5],[0,-13],[1,-8],[1,-8],[0,-19],[-2,-17],[1,-7],[-1,-16],[-3,-11],[-2,1],[0,17],[0,19],[-2,-11],[-1,-1],[-2,20],[-2,12],[-2,9],[-1,12],[-1,4],[-1,16],[-2,22],[-1,25],[0,29],[1,13],[1,-6],[2,-4],[2,9],[0,16],[1,-1],[2,-7]],[[13083,24625],[-1,19],[-1,14],[0,11],[-1,3],[-2,10],[-1,-9],[-2,8],[-2,3],[-2,9],[-2,14],[-3,13],[-1,2],[-2,3],[-1,7],[-3,10],[-1,15],[-1,16],[-2,13],[-1,21],[-2,6],[-3,27],[1,14],[-1,8],[-1,-2],[-1,8],[-1,11],[-1,3],[-1,-1],[-1,43],[-1,28],[-1,19],[-1,51],[-1,36],[-2,26],[-3,31],[0,26],[2,18],[1,23],[0,18],[1,26],[0,19],[0,17],[0,26],[0,22],[0,16],[1,14],[1,26],[0,17],[0,14],[1,15],[-2,17],[-1,4],[-1,3],[-1,12],[1,36],[0,14],[-1,20],[-1,11],[-1,27],[0,13],[0,14],[0,10],[1,11],[2,34],[0,14],[1,14],[0,4],[1,2],[1,5],[1,9],[0,9],[0,7],[0,28],[-1,16],[0,19],[0,13],[0,8],[-1,6],[-1,8],[-1,5],[0,7],[-1,8],[-1,10],[-1,15],[-1,16],[-1,17],[0,18],[-1,9],[0,18],[-1,14],[0,23],[-1,11],[0,13],[0,5],[0,20],[0,11],[-1,6],[0,10],[1,-3],[1,-13],[0,11],[0,12],[0,-5],[-1,16],[-1,8],[0,4],[-1,11],[0,12],[-1,14],[0,23],[0,13],[1,13],[1,3],[1,-6],[1,3],[0,-5],[1,-4],[1,-4],[1,1],[1,-5],[2,-17],[0,-9],[1,-10],[1,-15],[1,-4],[1,-4],[0,-3],[1,-5],[0,-9],[1,-3],[2,-7],[4,-14],[1,-3],[2,-8],[6,-8],[1,-11],[2,-20],[3,-18],[2,-22],[1,-21],[1,-25],[0,-32],[1,-21],[1,-15],[1,-18],[-1,-11],[1,-19],[-2,-17],[0,-12],[2,-25],[-1,-17],[0,-20],[2,-18],[1,-22],[1,-17],[0,-14],[2,-16],[0,-13],[2,-10],[2,-20],[1,-6],[2,-14],[1,-10],[1,-14],[1,-21],[0,-11],[1,-11],[1,-11],[0,-10],[2,-5],[1,-13],[2,-11],[2,-1],[1,-21],[2,0],[1,6],[-1,19],[-1,15],[2,10],[2,3],[2,15],[1,17],[2,19],[0,13],[1,13],[2,22],[2,-2],[2,-3],[1,-6],[1,-13],[2,-8],[1,-10],[2,0],[1,-24],[2,-13],[3,-8],[3,-12],[1,-17],[1,-19],[3,-47],[1,-24],[0,-23],[1,-10],[1,-20],[0,-5],[0,-1],[-1,-4],[1,-22],[0,-19],[0,-16],[0,-17],[0,-18],[1,-19],[1,-21],[1,-15],[0,-12],[1,-16],[0,-20],[1,-14],[1,-17],[1,-19],[1,-10],[0,-15],[1,-16],[1,-17],[0,-13],[1,-25],[0,-12],[0,-18],[1,-15],[1,-11],[1,-25],[0,-10],[1,-10],[1,-17],[1,-18],[1,-22],[1,-2],[1,-7],[0,-20],[0,-2],[0,-15],[1,-20],[0,-11],[-1,-8],[-2,-10],[-1,-8],[-2,-12],[-2,5],[-1,4],[-1,2],[-1,-3],[-1,-4],[-2,-8],[-1,-3],[-1,-4],[-1,-1],[-1,3],[0,6],[-1,7],[-1,-7],[-1,-11],[-1,0],[-2,12],[-2,22],[0,44],[-1,41],[-3,32],[-1,19],[-2,18],[-1,10],[-2,12],[-1,3],[-1,-7],[1,-14],[1,-14],[1,-21],[1,-22],[2,-41],[2,-38],[1,-23],[1,-22],[1,-23],[1,-20],[-1,-9],[1,-36],[0,-26],[0,-23],[-1,-36],[-1,-37],[-1,-15],[1,-13],[0,-20],[-1,-28],[-2,-5],[0,21],[-2,9],[-2,22],[-2,19],[-2,2],[0,-13],[1,-23],[1,-21],[0,-13],[-1,-12],[0,-11],[0,-20],[0,-9],[-2,-22],[-1,-4],[-2,4],[-1,18],[-1,7],[-3,46],[-1,27],[0,28],[-1,33],[-2,17],[-1,14],[0,25],[-1,20],[-1,12],[-1,14],[-1,18],[-2,11],[-2,12],[-1,11],[-1,-12],[1,-29],[1,-8],[1,-9],[1,-9],[2,-13],[-1,-16],[0,-18],[-1,-13],[-3,-3],[-1,17],[0,17],[1,12],[-1,2],[-1,18],[0,17],[-1,12],[0,14],[-2,6],[0,-13],[1,-9],[1,-15],[0,-9],[0,-13],[-1,10],[-1,9],[-1,4],[-2,10],[0,16],[-1,7],[2,5],[-1,18],[-1,-12],[-1,8],[-2,4]],[[12640,26049],[0,-15],[0,-15],[-1,-12],[0,-15],[-1,-12],[-1,-1],[-4,59],[-2,-4],[-2,10],[-2,39],[-3,36],[-1,26],[-1,13],[1,22],[1,17],[1,-13],[1,-4],[2,-12],[2,-4],[1,-24],[1,-16],[4,-14],[1,-26],[2,-12],[1,-7],[0,-16]],[[13003,26201],[-1,-11],[-2,4],[0,16],[0,15],[1,2],[1,-8],[1,-18]],[[12973,26264],[2,-7],[0,-9],[1,-21],[0,-14],[-1,-15],[1,-9],[2,-4],[2,-3],[-1,-10],[0,-7],[-1,-7],[-1,6],[-2,2],[1,-17],[0,-15],[-2,-2],[-2,2],[-2,1],[-1,6],[-1,4],[-2,11],[-1,19],[2,12],[-1,11],[-2,11],[0,17],[0,20],[1,7],[3,7],[1,-2],[1,4],[1,1],[1,-2],[1,3]],[[12839,26246],[0,-21],[-1,2],[-1,7],[-1,12],[0,28],[1,8],[1,-15],[0,-4],[1,-17]],[[12833,26257],[-1,-2],[-1,8],[-1,29],[2,-2],[1,-33]],[[12983,26254],[-1,-4],[-1,9],[0,18],[1,21],[1,14],[2,14],[1,-12],[1,-6],[0,-16],[-1,-18],[-1,-12],[-2,-8]],[[12840,26355],[-2,-1],[-1,8],[-1,17],[-1,22],[1,10],[0,9],[1,-2],[1,-17],[1,-11],[2,-28],[-1,-7]],[[13009,26268],[-1,-7],[-2,6],[-2,9],[-1,26],[0,15],[0,16],[0,18],[0,36],[0,39],[2,3],[1,-7],[1,-3],[2,-3],[2,-7],[1,-16],[0,-15],[1,-22],[0,-16],[0,-22],[-1,-23],[-2,-8],[-1,-19]],[[12981,26319],[-2,-2],[-1,9],[0,13],[1,36],[2,29],[2,21],[0,19],[1,23],[1,21],[1,12],[1,11],[2,-2],[1,-4],[1,-17],[-1,-29],[0,-13],[0,-17],[0,-14],[-1,-20],[0,-20],[-1,-17],[-2,-15],[-2,-7],[-3,-17]],[[12860,26664],[1,-7],[0,-20],[1,5],[1,-2],[0,-47],[0,-27],[0,-19],[1,-19],[1,-14],[1,-27],[0,-8],[0,-22],[-1,-20],[1,-29],[-1,-14],[-1,-5],[0,2],[-2,29],[-2,17],[-2,-7],[0,-9],[1,-36],[0,-4],[0,3],[1,-1],[1,-21],[-1,-4],[0,-7],[3,-37],[-1,-39],[-1,-17],[0,-9],[-9,19],[-7,34],[-4,91],[0,12],[-2,11],[0,9],[0,14],[0,9],[-2,16],[1,37],[0,30],[-1,15],[0,17],[-1,23],[1,6],[1,2],[2,0],[2,15],[2,-5],[2,4],[1,7],[1,16],[0,3],[1,5],[1,5],[1,1],[2,2],[3,14],[1,-2],[1,-2],[2,7]],[[12844,26640],[-2,-3],[-1,0],[-1,17],[2,10],[2,8],[2,-13],[1,-9],[-1,-7],[-2,-3]],[[12853,26674],[-2,-7],[-2,7],[0,17],[2,3],[1,3],[2,0],[0,-7],[-1,-16]],[[12847,26686],[-2,-6],[-2,11],[0,9],[2,3],[3,-4],[-1,-13]],[[12863,26708],[-1,-18],[-1,2],[-1,15],[0,13],[1,1],[2,-13]],[[12495,26648],[-2,-8],[-1,36],[2,46],[1,-5],[0,-2],[0,-26],[0,-41]],[[13024,26702],[-1,-23],[0,-17],[-1,-29],[-1,-13],[-1,-15],[-2,-28],[-1,-21],[-2,2],[-1,-7],[-1,6],[-1,16],[-1,27],[0,15],[-1,8],[1,8],[-1,8],[-1,18],[1,10],[0,10],[1,3],[3,7],[1,-1],[1,9],[3,17],[2,7],[2,8],[1,4],[0,-16],[0,-13]],[[12498,26744],[-1,-25],[-2,18],[0,6],[0,3],[-1,3],[0,8],[0,23],[1,12],[1,-11],[0,-13],[1,-7],[1,-17]],[[12522,26777],[-1,-6],[-1,7],[-1,1],[0,11],[0,14],[1,11],[0,1],[2,-7],[0,-16],[0,-16]],[[12496,26827],[-1,-2],[-1,8],[-1,16],[0,17],[1,0],[1,-11],[1,-12],[0,-16]],[[12811,27011],[0,-21],[-1,3],[-1,-25],[0,9],[-1,9],[-2,19],[0,11],[0,17],[1,-5],[2,-13],[1,-1],[1,-3]],[[12809,27053],[1,-7],[1,5],[2,-16],[-2,-7],[-2,12],[0,9],[0,4]],[[12984,27060],[1,-10],[-1,-9],[-2,-17],[-1,-4],[0,-12],[-2,-5],[0,-1],[-2,10],[0,15],[0,21],[1,10],[2,0],[1,2],[3,0]],[[12656,27038],[-1,-1],[0,16],[-1,16],[2,0],[1,-19],[-1,-12]],[[12974,26997],[-1,-13],[-1,6],[-1,12],[0,33],[0,26],[1,34],[1,5],[0,-4],[1,-5],[0,-20],[1,-26],[-1,-21],[1,-17],[-1,-10]],[[13017,27006],[3,-5],[1,6],[1,14],[1,-5],[1,6],[1,6],[1,10],[2,10],[1,2],[1,1],[1,-3],[1,-9],[1,-10],[1,-15],[2,-6],[2,-6],[1,-3],[3,4],[1,16],[1,18],[1,7],[1,7],[1,1],[0,-13],[0,-20],[-1,-11],[-1,-9],[-1,-20],[0,-13],[-1,-25],[-1,-30],[-2,-27],[-2,-24],[-4,-9],[-6,-41],[-4,-33],[-1,-9],[-1,-13],[-2,-6],[-4,-17],[-3,-6],[-1,-1],[-4,1],[-2,-4],[-2,3],[0,1],[-1,5],[-2,2],[-3,10],[-1,13],[1,8],[2,3],[0,14],[-3,-16],[-2,-5],[-2,-5],[0,17],[0,13],[-2,-13],[-1,7],[1,13],[0,15],[2,5],[3,-3],[4,2],[2,14],[1,21],[-3,-20],[-4,5],[-4,1],[-3,-14],[-1,-10],[-1,-10],[-1,-6],[-2,6],[-2,19],[-1,-7],[-3,31],[-1,25],[0,30],[2,41],[1,10],[2,13],[1,18],[1,20],[2,29],[1,14],[1,18],[-1,22],[-1,10],[-1,14],[0,15],[2,0],[3,-1],[6,-25],[2,-15],[3,-20],[1,-3],[2,-13],[5,-20],[4,-7],[4,-10]],[[13044,26899],[0,28],[0,1],[1,13],[0,15],[1,14],[1,17],[1,17],[0,21],[0,20],[1,28],[2,25],[2,0],[3,14],[1,16],[3,14],[1,0],[0,-21],[-1,-12],[-1,-6],[-2,-14],[0,-19],[0,-20],[0,-37],[-3,-19],[-3,-28],[-1,-26],[-3,-25],[-3,-16]],[[12604,27290],[0,-26],[1,4],[-1,-20],[-1,-4],[-1,-2],[-1,-5],[0,25],[2,12],[1,16]],[[12615,27424],[-1,-23],[0,-15],[0,-8],[-2,12],[2,30],[1,4]],[[12656,27370],[2,-14],[0,18],[-1,23],[0,7],[1,-4],[1,-4],[1,-27],[0,-23],[0,-22],[-2,-8],[-2,4],[-1,-11],[-1,-7],[-2,1],[-1,36],[1,9],[1,-5],[2,4],[0,6],[0,13],[0,14],[0,48],[1,-13],[0,-45]],[[12784,27436],[-2,-12],[0,11],[-1,19],[2,11],[1,-29]],[[12787,27539],[0,-5],[-2,12],[-1,8],[0,19],[1,7],[1,-8],[1,-16],[0,-17]],[[12628,27671],[-1,-15],[-1,8],[-1,-8],[-1,1],[1,10],[0,14],[0,9],[1,6],[1,2],[1,-2],[1,-9],[-1,-16]],[[12651,27703],[-6,-31],[0,11],[1,8],[5,12]],[[12652,27628],[-1,-6],[-1,13],[-2,14],[1,13],[4,17],[1,26],[2,9],[1,-8],[-1,-5],[-1,-16],[2,-4],[1,-9],[-2,-18],[-2,-8],[-2,-18]],[[12881,27726],[1,-5],[-1,-6],[0,-4],[0,-7],[2,-2],[1,-1],[2,-6],[1,-3],[1,-4],[0,-6],[1,-1],[1,0],[1,-6],[1,-2],[1,-12],[1,1],[1,-1],[1,4],[2,7],[2,-6],[3,-4],[4,-10],[1,-15],[4,-65],[2,-38],[2,-15],[1,-11],[1,-18],[1,-1],[1,-18],[1,-6],[2,-14],[1,-16],[1,-58],[2,-33],[2,-37],[-1,-52],[4,-20],[2,-11],[3,-30],[0,-12],[6,5],[2,-13],[0,-16],[-1,-17],[-1,-19],[0,-15],[2,-7],[3,-5],[2,-6],[2,-8],[2,-3],[0,-11],[1,-8],[2,3],[1,-29],[-1,-15],[0,-20],[0,-14],[0,-6],[2,5],[0,23],[2,27],[1,0],[1,-24],[-1,-15],[-1,-43],[-1,-17],[0,-16],[1,-23],[0,-14],[2,2],[1,-9],[1,-13],[0,-18],[2,-18],[0,-27],[1,2],[1,-28],[0,-14],[-1,-16],[3,12],[2,9],[1,-6],[1,6],[4,-39],[1,-5],[1,18],[2,-1],[1,-47],[-1,-8],[1,-6],[1,-17],[0,-43],[-2,-9],[-3,-23],[-2,-15],[-4,-33],[-3,-26],[-1,0],[-1,-1],[-4,-34],[-2,-4],[-1,-11],[-1,-1],[-5,1],[-2,-5],[-3,-35],[-2,-13],[0,-10],[-2,-9],[0,-26],[-2,-12],[-3,1],[-2,-8],[-2,16],[-5,49],[-1,28],[-2,36],[1,17],[-1,52],[0,-34],[-1,-16],[-1,34],[-2,8],[1,-19],[1,-40],[-1,-25],[-5,-14],[-4,-24],[3,-3],[1,-1],[1,4],[2,2],[1,-10],[-1,-20],[2,-3],[1,-24],[1,-19],[2,-12],[1,-3],[2,-49],[-1,-25],[-2,-5],[-1,-12],[-5,3],[-1,0],[-1,4],[-2,-18],[-1,-15],[-1,-8],[-1,10],[-1,-1],[-2,-7],[-1,-20],[-6,-6],[-2,12],[2,16],[-2,-1],[-2,-7],[-2,8],[-3,10],[-3,9],[-4,22],[-1,1],[0,-12],[-2,-5],[-3,-13],[-1,-13],[-8,40],[-2,-3],[-3,7],[-3,48],[-1,42],[0,52],[1,28],[0,27],[0,30],[0,41],[-1,12],[-2,30],[-1,82],[0,58],[3,62],[3,62],[2,9],[2,15],[2,19],[0,11],[1,0],[0,-13],[2,-4],[-1,-18],[1,-11],[1,9],[1,10],[0,7],[1,-7],[2,9],[1,1],[0,8],[-1,24],[0,1],[-2,-4],[-1,12],[2,18],[-1,7],[-1,5],[-1,12],[1,5],[0,6],[0,32],[0,4],[-2,2],[-1,22],[3,3],[0,12],[-2,1],[-2,1],[-1,19],[-1,15],[0,14],[0,20],[1,8],[-1,25],[-1,16],[0,26],[-1,16],[1,22],[-1,33],[0,26],[1,9],[2,10],[-2,66],[-1,37],[0,27],[-1,17],[-1,15],[-1,11],[-1,20],[-2,38],[0,7],[0,13],[0,24],[-1,16],[-1,3],[-1,9],[-1,7],[0,24],[0,17],[-1,16],[0,32],[0,13],[1,12],[1,4],[0,6],[1,5],[1,-1],[1,5],[1,4],[0,16],[1,18],[0,4],[2,8],[0,5],[2,9],[1,5],[1,-8],[1,-6],[1,-6],[1,-17],[1,-18],[1,-15]],[[12494,27862],[0,-5],[-3,5],[-1,10],[-2,9],[1,29],[1,-1],[1,-5],[1,-5],[1,-5],[1,-9],[0,-23]],[[12906,27897],[-1,0],[0,12],[1,8],[1,8],[1,-18],[-2,-10]],[[12487,27905],[-1,-5],[-1,6],[0,11],[-1,15],[-1,7],[-1,8],[1,7],[0,12],[1,-12],[2,-12],[1,-16],[0,-21]],[[12477,28059],[-1,-8],[-1,3],[-1,8],[-1,15],[1,4],[1,0],[1,-5],[1,-17]],[[12600,28019],[-2,-5],[-1,10],[-1,5],[-1,5],[-1,22],[0,10],[-1,11],[-1,32],[1,1],[1,1],[0,-7],[1,-11],[0,-18],[1,-7],[1,-1],[0,-1],[1,-10],[0,-20],[2,-17]],[[12884,28146],[0,-23],[-1,4],[-1,2],[0,21],[1,-4],[1,0]],[[12877,28131],[-1,-4],[-1,3],[0,19],[-1,22],[1,8],[2,-5],[-1,-13],[1,-30]],[[12569,28154],[-1,-8],[-1,13],[-1,8],[-2,19],[-1,9],[-1,4],[-2,11],[-1,8],[0,12],[2,-6],[2,-11],[2,-10],[0,-3],[4,-26],[0,-20]],[[12618,28208],[0,-13],[-1,4],[-1,12],[-2,16],[1,1],[-2,18],[-1,13],[0,12],[-2,7],[-1,21],[1,-2],[1,-6],[1,-9],[1,-3],[1,-11],[1,-13],[1,-5],[1,-12],[2,-12],[0,-11],[-1,-1],[0,-6]],[[12547,28299],[0,-21],[-1,7],[-2,7],[-1,-2],[-1,1],[0,7],[-1,12],[0,8],[1,0],[3,-11],[2,-8]],[[12582,28250],[0,-16],[-4,9],[-2,26],[-1,9],[-3,16],[-1,29],[2,9],[2,-8],[1,-28],[1,-7],[2,-15],[3,-24]],[[12560,28317],[1,-15],[-2,-5],[-1,12],[-1,-1],[-1,4],[-1,17],[1,10],[1,-6],[1,-8],[2,-8]],[[12552,28332],[1,-15],[-2,2],[-1,8],[-1,10],[1,6],[2,-11]],[[12546,28356],[1,-2],[1,2],[1,-4],[0,-10],[-1,-3],[-1,2],[0,2],[-1,10],[0,3]],[[12615,27424],[1,12],[1,6],[0,21],[-2,21],[-1,15],[1,13],[0,22],[1,17],[-1,26],[0,17],[-1,20],[-2,15],[-2,-3],[-1,19],[-1,50],[1,23],[8,8],[1,-20],[1,-6],[4,-9],[0,-8],[0,-16],[-1,-19],[1,-14],[1,5],[2,8],[1,-6],[2,-2],[0,-14],[-2,-13],[-1,-20],[-1,-17],[3,7],[1,3],[2,14],[4,22],[1,-1],[1,0],[4,0],[1,-14],[3,-17],[-2,-3],[2,-10],[5,-3],[3,-4],[-1,-16],[1,-6],[1,-14],[-2,-32],[0,-31],[-2,-42],[-2,-21],[-1,-27],[-3,-8],[0,-42],[0,-22],[-1,-14],[1,-10],[-1,-15],[3,-8],[0,-13],[-1,-15],[0,-64],[-3,-2],[2,-19],[-1,-19],[0,-7],[0,-74],[1,22],[1,-22],[1,45],[1,-15],[2,2],[-1,-16],[1,-4],[0,-17],[1,32],[1,-39],[1,-48],[1,10],[1,-35],[1,15],[1,4],[0,-17],[0,-23],[-1,-17],[1,-10],[2,9],[1,-16],[0,-20],[-1,-2],[-2,15],[-1,4],[-1,-13],[-1,-18],[-1,-10],[1,-20],[-1,-5],[1,-10],[3,6],[-1,-17],[-1,-11],[2,-6],[0,-13],[0,-14],[2,-3],[1,-22],[4,-16],[1,-35],[-4,-59],[-1,-6],[-2,3],[-2,-24],[0,-30],[-2,-28],[0,-22],[-2,-25],[-1,-17],[-2,4],[-4,-6],[-3,8],[-3,22],[-2,47],[-1,20],[1,30],[-4,23],[-1,32],[4,27],[-2,3],[-2,11],[-1,27],[-1,-9],[-1,-26],[1,-5],[-1,-22],[2,5],[-1,-15],[-1,-11],[-1,14],[-2,10],[-1,2],[0,35],[1,12],[-3,12],[-1,8],[-2,-2],[-2,-21],[-2,16],[-1,-12],[-2,4],[-4,29],[-2,2],[-1,10],[-3,-16],[-1,-9],[-3,15],[-2,14],[-1,0],[0,-13],[3,-31],[1,-35],[3,7],[2,0],[1,19],[1,10],[2,-13],[2,-30],[0,-22],[2,2],[1,-7],[0,-23],[3,-13],[2,-23],[1,11],[1,-18],[0,-11],[0,-19],[1,-11],[-1,-22],[-1,-16],[0,-19],[-2,-7],[-3,2],[-3,-15],[0,12],[-2,9],[-1,9],[-1,9],[-3,12],[-1,-16],[-3,-9],[-1,-4],[-1,1],[0,-18],[8,12],[1,4],[0,-14],[1,5],[2,-12],[0,-9],[-1,-11],[3,8],[1,-14],[3,-33],[-2,3],[0,-6],[0,-9],[-2,2],[-1,-12],[2,-5],[-1,-12],[1,-13],[0,-18],[0,-16],[0,-27],[-4,-1],[-1,4],[-1,-16],[2,-27],[-2,-18],[-3,17],[-2,17],[-1,-4],[0,-14],[-3,22],[-1,-8],[0,-17],[0,-10],[-1,-21],[0,-14],[-3,-1],[-1,0],[-5,25],[-1,-11],[0,-28],[1,-16],[4,-41],[4,-4],[1,-4],[2,-7],[3,2],[1,8],[5,3],[0,-28],[1,-8],[2,7],[0,-21],[1,5],[4,-49],[0,-19],[-2,14],[-1,-16],[2,-12],[0,-35],[0,-24],[3,-9],[1,-19],[1,-3],[1,-20],[0,-16],[1,-1],[1,-9],[1,-17],[-2,4],[-3,19],[0,-14],[0,-9],[0,-15],[-3,7],[-2,14],[-1,38],[-3,0],[-3,-2],[-1,-2],[-2,-24],[-6,8],[-3,4],[0,-12],[-1,0],[0,-15],[2,-4],[3,-9],[6,8],[3,-17],[1,-9],[0,-29],[-1,0],[6,-123],[0,-16],[-2,8],[-1,-9],[-1,-9],[-2,-3],[-6,65],[-1,5],[-1,-15],[1,-12],[0,-28],[2,-10],[-1,-7],[0,-21],[-1,19],[-1,15],[-1,-17],[2,-24],[-2,-29],[-1,-17],[4,-3],[2,-11],[5,-57],[1,4],[4,-36],[0,24],[1,14],[1,-19],[1,-20],[1,-22],[2,-8],[1,-5],[1,-48],[1,0],[1,-11],[0,-17],[1,-16],[-1,-12],[1,-16],[0,-16],[-1,-7],[-1,2],[-1,-14],[0,-16],[-1,-8],[-1,-5],[-1,-14],[-2,-10],[-2,-2],[1,-13],[2,-17],[0,-18],[1,-16],[1,-15],[-1,-18],[-1,-6],[-2,9],[0,-21],[-1,-18],[-1,-5],[-3,44],[-1,-18],[0,32],[-1,23],[1,22],[-1,11],[-1,12],[-1,-8],[-1,10],[0,-13],[-1,7],[-1,22],[-1,13],[-1,6],[-2,35],[-2,46],[-1,21],[-4,72],[-3,16],[-3,60],[-3,31],[-1,-35],[2,-13],[0,-9],[1,-23],[-2,-17],[-1,-12],[-1,-14],[1,-4],[2,-21],[-1,-9],[0,-18],[2,-25],[-2,-36],[-3,-27],[0,-18],[-2,-4],[2,-22],[2,-12],[2,2],[0,-7],[-1,-10],[-2,-116],[0,-30],[0,-17],[-1,-54],[1,-25],[2,-6],[1,4],[0,13],[-1,70],[2,13],[-1,28],[1,7],[0,-22],[2,-5],[1,2],[0,19],[0,22],[0,13],[1,2],[1,11],[1,-9],[0,-20],[2,-7],[2,-7],[3,10],[3,-8],[2,-79],[2,-24],[3,-97],[1,-12],[2,-56],[0,-15],[-3,-19],[-1,-49],[-2,-24],[0,-4],[-2,-4],[0,10],[0,34],[-2,2],[0,7],[-1,8],[-2,-7],[-1,0],[-3,-5],[-1,-13],[-2,0],[-1,-21],[0,-13],[1,-19],[1,-6],[0,-23],[-2,1],[-2,31],[-1,0],[-1,-16],[2,-20],[1,-19],[2,4],[2,-2],[1,-28],[0,-31],[1,-18],[1,-21],[1,-30],[-2,-19],[-2,-7],[1,-19],[2,-9],[1,-27],[-1,-10],[0,-26],[-2,-5],[-2,-7],[-3,-8],[0,-19],[2,-8],[1,-16],[-1,-14],[-1,-81],[0,-28],[0,-18],[-2,-33],[-1,-14],[-1,-13],[-3,17],[-2,-26],[-3,15],[-2,0],[-2,4],[-2,17],[-1,47],[-1,18],[-2,20],[-1,52],[1,45],[2,47],[1,38],[1,28],[-2,40],[2,20],[0,26],[2,2],[1,-4],[0,14],[-2,7],[-2,10],[-1,25],[-1,23],[2,4],[3,-1],[2,13],[0,16],[-1,10],[-3,1],[-1,-16],[-2,2],[1,31],[-4,41],[-3,23],[0,63],[0,30],[-1,11],[0,43],[0,15],[1,-5],[1,13],[2,47],[1,39],[-1,59],[-1,65],[-1,77],[-4,31],[0,45],[-1,26],[-2,-13],[-1,-19],[-1,-30],[2,-37],[0,-46],[0,-35],[0,-29],[-1,11],[0,12],[-1,-9],[0,-19],[0,-13],[1,-41],[1,-65],[0,-80],[-2,-20],[0,-17],[-1,-13],[0,10],[-1,18],[0,24],[-2,18],[0,14],[-1,-16],[0,-13],[1,-9],[0,-24],[-1,-9],[-1,17],[0,29],[0,35],[0,26],[1,21],[0,12],[-2,5],[-1,18],[-2,8],[-3,-4],[-1,-9],[3,-9],[3,-13],[1,-8],[-1,-10],[-1,-9],[-1,-24],[1,-45],[1,-33],[-3,-10],[-1,-19],[1,-12],[3,10],[4,-10],[1,-32],[-1,-34],[-1,-8],[-1,-13],[-2,8],[-1,-10],[3,-11],[2,0],[0,-22],[1,-22],[-2,-35],[-1,-21],[2,-17],[1,-25],[-2,-15],[-1,7],[-1,9],[-2,-5],[0,-14],[0,-16],[0,-12],[-2,7],[-1,1],[0,15],[-2,-7],[-1,4],[0,-23],[-2,5],[0,10],[-1,11],[-1,9],[-3,3],[0,7],[-2,-2],[-1,-1],[-1,15],[-3,13],[-1,28],[0,32],[-1,-4],[0,-23],[-1,-16],[0,-33],[1,-28],[4,-9],[0,-23],[0,-26],[-2,-13],[-1,-5],[7,-39],[0,-13],[0,-24],[-1,-31],[-1,-37],[1,-10],[1,24],[1,20],[3,29],[2,34],[1,6],[1,-11],[3,-11],[5,11],[2,-6],[-1,-17],[1,-12],[-1,-17],[-1,-49],[-1,-80],[2,-26],[4,-40],[-1,-25],[-1,-31],[-3,-11],[-3,-11],[0,-19],[-1,-14],[-1,11],[-1,31],[-1,29],[-2,22],[-2,7],[-1,-11],[0,-14],[3,-49],[2,-46],[3,-47],[1,-10],[3,-30],[0,-28],[-1,-48],[-2,-79],[-2,-65],[-1,-16],[-1,2],[-1,12],[1,20],[-1,12],[-1,9],[-3,5],[0,10],[-1,32],[-3,12],[0,14],[-1,11],[-2,4],[0,26],[2,0],[-1,28],[6,33],[-1,20],[-1,24],[-2,4],[-3,-4],[-4,3],[-3,14],[-4,23],[-2,6],[-2,15],[0,33],[1,72],[2,40],[0,16],[2,-11],[0,16],[1,21],[-2,16],[-3,10],[-3,13],[-5,9],[-1,28],[-1,36],[0,24],[1,5],[4,17],[2,15],[2,-3],[3,17],[1,5],[1,13],[1,24],[-1,26],[0,25],[-2,12],[-1,-4],[-1,-6],[-1,6],[-1,7],[0,18],[-1,24],[-2,13],[-1,9],[0,-15],[0,-24],[-1,-10],[-1,-12],[-1,-20],[-1,-7],[0,9],[-1,11],[2,22],[0,21],[1,17],[0,23],[0,34],[0,35],[0,17],[1,10],[1,33],[-1,22],[-1,7],[-2,12],[2,29],[-2,36],[-3,65],[-1,60],[0,49],[1,11],[4,9],[4,-1],[0,-30],[2,-62],[6,-42],[2,-19],[1,6],[0,15],[-1,18],[-1,29],[-2,26],[-3,30],[1,46],[-1,18],[1,6],[2,23],[2,28],[1,60],[1,41],[2,16],[1,-6],[2,-36],[2,-42],[5,-26],[2,-17],[0,25],[-1,20],[-1,-3],[-3,16],[-1,35],[-1,40],[1,20],[1,30],[1,19],[-1,11],[-4,3],[-2,-10],[-1,-15],[-1,6],[-1,-9],[0,-20],[-1,7],[-1,0],[-3,-16],[-2,-13],[-1,-15],[-2,-4],[-1,-16],[-1,-34],[1,-8],[1,9],[0,16],[1,10],[1,-8],[0,-18],[0,-33],[-3,-11],[-2,-9],[-1,-2],[-1,10],[-1,9],[-2,-8],[-2,-14],[-1,-10],[-1,-16],[-1,7],[0,21],[-2,3],[-1,14],[2,32],[0,21],[-1,33],[2,18],[2,-14],[2,10],[1,-12],[1,2],[1,25],[-1,18],[-2,12],[-1,20],[0,24],[-2,18],[-2,27],[0,66],[3,24],[5,47],[1,16],[1,-15],[2,-10],[1,0],[1,-26],[1,2],[3,-4],[0,8],[-1,23],[0,39],[-1,29],[-1,17],[-1,17],[-1,23],[1,-5],[1,2],[2,-4],[0,39],[0,45],[-2,35],[-3,15],[0,30],[3,26],[1,8],[1,-13],[1,-30],[3,-3],[3,-23],[3,-1],[2,-11],[1,-9],[0,10],[0,32],[1,19],[-1,29],[0,10],[-2,13],[-2,14],[1,15],[1,18],[0,17],[1,10],[1,-13],[1,-29],[1,-28],[1,-25],[0,-66],[2,-7],[1,-10],[0,-25],[2,-32],[1,-37],[-2,-17],[-1,-28],[-2,-21],[0,-23],[0,-14],[-2,-18],[-1,-21],[2,-22],[1,8],[1,20],[2,21],[1,20],[2,28],[0,20],[1,-9],[2,-18],[2,-7],[1,-15],[0,15],[0,14],[-1,11],[-1,17],[0,39],[0,34],[0,14],[1,4],[1,11],[1,15],[1,7],[2,-16],[2,-16],[1,-36],[1,-17],[1,12],[2,9],[0,2],[1,12],[1,-5],[1,-30],[-1,-45],[0,-23],[0,4],[2,26],[0,18],[1,4],[1,-1],[1,-6],[1,-13],[0,-41],[-1,-41],[-2,-7],[0,-24],[1,-15],[1,-23],[0,-34],[1,-36],[1,-10],[1,20],[0,23],[-1,54],[0,19],[1,6],[1,-2],[1,-13],[0,8],[0,37],[1,36],[0,44],[-1,19],[-2,38],[1,17],[0,1],[1,27],[1,13],[-1,7],[-1,9],[2,14],[1,28],[0,-1],[0,8],[-1,27],[-2,17],[-7,104],[0,13],[1,11],[0,2],[1,7],[0,16],[-4,-2],[-1,5],[0,16],[2,0],[1,18],[-3,8],[-2,-6],[0,14],[-1,57],[1,11],[3,7],[2,-6],[0,-19],[1,-13],[1,-2],[3,6],[1,8],[1,0],[0,-20],[1,-39],[0,-1],[1,8],[0,55],[1,21],[1,19],[-2,17],[1,15],[-1,12],[-1,-4],[-1,-21],[0,-12],[-1,-13],[-1,13],[-1,8],[1,8],[0,13],[0,15],[1,3],[1,1],[0,10],[-1,11],[-2,21],[-3,-12],[-2,7],[1,24],[0,6],[0,23],[0,35],[0,66],[0,30],[-1,3],[0,11],[-2,14],[-1,-11],[1,-27],[-1,2],[-2,-3],[0,-14],[0,-21],[0,-26],[-1,0],[0,12],[-2,12],[0,-11],[0,-34],[1,-42],[0,-30],[0,-37],[-2,-18],[0,-39],[-1,8],[-1,13],[0,8],[-1,-7],[-1,-1],[0,9],[-2,9],[0,-13],[1,-20],[0,-27],[-2,-12],[-1,-27],[-1,-3],[-1,13],[0,24],[-2,10],[0,28],[1,31],[0,11],[-1,-14],[-1,-1],[0,-6],[-1,10],[0,9],[-2,12],[-2,6],[0,18],[0,22],[-3,12],[-1,1],[-1,14],[-1,29],[-1,32],[0,3],[2,4],[1,25],[-1,10],[-2,-6],[-2,-2],[-2,7],[-2,21],[-3,9],[-3,26],[-3,27],[-1,-8],[-3,9],[-3,-1],[-5,1],[-1,-13],[-1,-21],[-3,9],[-1,-7],[-1,53],[2,17],[2,11],[2,20],[1,28],[2,1],[2,24],[2,-7],[1,28],[1,17],[2,4],[2,14],[2,5],[2,3],[1,19],[1,16],[2,8],[4,16],[3,16],[1,7],[1,-4],[2,-13],[3,-5],[1,10],[-1,10],[-2,13],[-2,7],[-2,4],[0,10],[0,20],[1,14],[3,18],[2,3],[1,-7],[3,8],[1,13],[1,15],[4,1],[4,-10],[3,-2],[-1,-44],[-1,-31],[2,-13],[3,92],[1,0],[1,5],[1,5],[2,16],[-1,22],[-2,12],[-3,4],[-1,-4],[-2,11],[-3,-5],[-2,13],[-1,-7],[-1,8],[-1,3],[-2,-8],[-1,-8],[-2,-5],[-1,-29],[-2,-18],[-2,-17],[-2,-15],[-3,3],[-1,-10],[-1,-14],[-1,-5],[-3,-1],[-4,-19],[1,-16],[-3,-4],[-1,-1],[-1,-45],[-3,-41],[-3,30],[-2,-15],[-1,2],[-1,34],[-1,11],[-1,24],[1,8],[2,-12],[1,9],[-1,7],[0,26],[-1,10],[-1,9],[0,3],[0,2],[-1,4],[0,14],[0,1],[0,6],[0,14],[0,4],[1,26],[0,6],[2,14],[1,4],[2,12],[4,-40],[1,22],[3,12],[3,26],[3,45],[1,7],[2,19],[0,16],[-1,-2],[-1,-1],[0,18],[-1,8],[-2,9],[-1,1],[-1,-10],[-1,14],[1,18],[0,27],[0,16],[-1,-4],[0,-23],[-1,-10],[-2,-5],[-1,-15],[-1,-7],[0,22],[-1,-24],[1,-45],[0,-30],[-3,-14],[-2,-14],[-1,-6],[-3,-4],[-2,-47],[-2,-7],[-3,-4],[-1,-14],[-2,-4],[-1,29],[-2,35],[-1,36],[0,1],[-2,12],[0,26],[-3,1],[0,2],[-1,-1],[0,12],[-2,17],[-1,33],[0,26],[-1,28],[-2,22],[0,1],[0,4],[-1,23],[-1,2],[0,27],[0,12],[2,6],[2,13],[4,9],[3,0],[0,9],[1,14],[-2,1],[-1,1],[-2,-10],[-4,-10],[-2,-3],[-2,-5],[-1,4],[-1,9],[-1,19],[1,33],[-1,20],[1,39],[1,48],[1,47],[-1,19],[0,26],[1,3],[-1,15],[-1,12],[0,28],[-1,42],[-3,57],[-1,77],[-1,94],[1,44],[2,42],[2,17],[3,12],[1,3],[1,-16],[1,-15],[1,-2],[0,36],[2,0],[2,-19],[2,-19],[0,-38],[2,-26],[1,-42],[0,-5],[1,-2],[1,6],[1,-7],[2,-15],[1,-30],[1,-3],[1,17],[0,-3],[1,-3],[1,-5],[3,-44],[2,2],[1,-13],[0,-34],[-1,-36],[-1,-24],[-1,0],[-1,1],[0,-31],[1,-8],[1,-1],[1,20],[1,22],[0,15],[1,6],[1,18],[0,27],[0,31],[0,14],[0,4],[-3,19],[-2,40],[0,51],[0,21],[-1,2],[-7,52],[-3,12],[0,6],[-1,3],[0,8],[0,7],[2,-2],[0,2],[0,15],[-3,18],[-1,9],[-1,27],[0,22],[0,11],[1,5],[-2,40],[2,14],[0,8],[1,1],[1,4],[1,23],[1,8],[3,-11],[0,-10],[1,2],[0,41],[1,-1],[3,-3],[1,-9],[3,-30],[1,-11],[1,16],[-4,27],[0,7],[2,5],[0,1],[1,-8],[3,-19],[2,-25],[5,-31],[1,-25],[3,-20],[2,-9],[1,-22],[3,-24],[2,-4],[1,-15],[2,-19],[2,-10],[1,-20],[5,-32],[0,-15],[1,-6],[1,-8],[1,-8],[1,3],[1,7],[1,-8],[0,-9],[1,-4],[0,12],[1,4],[-1,16],[1,-3],[2,-11],[4,-14],[1,2],[-1,22],[-1,9],[-1,10],[-1,12],[-2,16],[0,11],[-3,2],[0,22],[1,32],[1,20],[-1,12],[-2,23],[0,19],[-3,11],[-2,1],[-1,10],[-2,15],[0,3],[-3,0],[0,4],[0,-1],[-1,11],[-2,15],[-1,9],[0,3],[-2,4],[-3,5],[0,26],[1,-2],[0,1],[1,1],[3,6],[1,5],[-2,18],[-5,36],[-3,36],[-1,1],[-1,-10],[1,-20],[1,-18],[-1,-10],[-3,13],[-6,66],[0,5],[1,9],[1,-6],[2,1],[1,9],[0,3],[2,0],[3,-16],[4,-8],[3,-22],[4,-32],[4,-21],[2,-17],[1,-3],[2,6],[2,2],[1,5],[1,-6],[3,-19],[3,-11],[4,-36],[3,-22],[5,-23],[1,3],[1,-11],[3,-29],[6,-20],[1,-18],[2,-2],[3,-6],[1,3],[1,-15],[1,-16],[1,-31],[0,-36],[1,-33],[0,-39],[0,-18],[2,-11],[0,-18],[-1,-16],[-1,6],[-2,-7],[1,-12],[3,-9],[0,-13],[0,-34],[1,13],[1,38],[2,9],[2,28],[2,-6],[-2,-9],[0,-19],[2,3],[0,-21],[1,-2],[1,-81],[-3,-27],[-1,9],[-4,12],[-1,16],[-1,9],[1,-26],[-1,-4],[-2,-15],[1,-11],[1,-13],[-1,-14],[1,-10],[1,-12],[1,-2],[1,-2],[1,2],[3,0],[5,68],[0,13],[4,2],[-1,-30],[2,-32],[0,-29],[2,-34],[0,-17],[0,-24],[1,-17],[0,-20],[1,-25],[5,2],[-3,-20],[-1,-19],[-1,-13],[-2,-16],[-1,-11],[-1,-14],[-1,-20],[-1,-10],[2,-5],[0,-9],[2,2],[0,-9],[0,-27],[-1,-4],[-2,1],[0,-15],[-2,-16],[-4,-63],[1,-38],[2,-23],[0,10],[1,-5],[-1,-26],[-2,-16],[2,1],[1,-5],[-2,-16],[1,-34],[0,-18],[-2,-20],[-2,-22],[1,-10],[-3,-8],[-1,-16],[0,-17],[-2,5],[-2,-6],[0,-6],[-1,-1],[-1,8],[-2,1],[-3,0],[-2,13],[-2,8],[1,-23],[0,-10],[-3,-5],[-2,-15],[-1,-18],[1,-6],[1,12],[2,-3],[2,4],[3,-8],[2,-1],[1,-7],[0,12],[1,1],[1,-13],[1,-12],[0,-35],[1,9],[0,-19],[1,6],[2,14],[1,-6],[2,-5],[0,13],[-2,15],[0,7],[2,-1],[3,40],[1,31],[1,10],[1,22],[3,76],[0,32],[1,33],[2,38],[1,24],[1,44],[6,-5],[0,-13],[1,6],[1,30],[2,8],[1,12],[0,15],[1,12],[3,61],[1,27],[0,18],[1,26],[-2,-1]],[[12605,28368],[1,-6],[1,2],[1,-5],[1,-4],[0,-8],[1,-9],[0,-12],[1,-13],[-1,5],[-1,1],[-1,9],[-1,12],[0,-6],[0,-9],[0,-7],[1,-10],[-2,2],[-1,3],[0,7],[-2,19],[-1,11],[-2,16],[-1,10],[1,12],[1,3],[1,-5],[1,-4],[1,-6],[1,-8]],[[12547,28372],[0,-7],[-1,-4],[-2,8],[-1,-3],[-1,11],[-2,4],[-1,7],[1,12],[-1,18],[0,10],[2,-7],[2,-8],[2,-12],[0,-10],[2,-15],[0,-4]],[[12907,28619],[2,-29],[-2,5],[1,-14],[0,-20],[-1,6],[-5,43],[-1,34],[1,0],[-1,15],[-1,1],[-2,33],[0,11],[1,14],[-1,11],[0,9],[-1,14],[1,21],[1,12],[2,-1],[1,-5],[1,-18],[1,-13],[1,-16],[2,-36],[-1,-35],[-3,-10],[4,-32]],[[12886,28772],[-1,-12],[-1,5],[-1,16],[1,10],[1,-6],[1,-13]],[[12610,29159],[0,-7],[2,1],[2,-9],[6,-24],[5,-17],[2,-12],[4,-5],[1,-2],[2,-16],[2,8],[1,-4],[2,-7],[1,1],[3,-4],[2,-2],[1,-11],[4,1],[3,3],[2,-5],[2,-15],[1,-9],[3,-27],[3,-14],[3,-11],[1,-5],[2,3],[4,-4],[7,-19],[1,-3],[1,10],[3,7],[2,2],[3,-6],[2,-14],[2,-14],[1,-11],[1,-12],[1,-10],[1,-6],[3,-2],[1,-1],[2,-5],[2,-7],[1,-14],[0,-14],[2,-6],[2,-5],[2,7],[2,1],[2,1],[2,-5],[1,-3],[1,-6],[1,-11],[1,-10],[1,-11],[2,-7],[2,1],[2,-8],[2,-11],[0,-10],[1,-11],[4,-20],[3,-10],[4,-12],[4,-2],[3,4],[2,-8],[1,6],[1,0],[2,11],[1,7],[1,6],[1,-2],[1,-2],[2,-4],[0,-9],[0,-9],[-1,-1],[-1,-9],[-2,-5],[0,-4],[-1,-24],[2,-19],[2,3],[2,-5],[1,-24],[-1,-15],[-1,10],[-2,9],[-2,-6],[2,-18],[2,-25],[1,-8],[1,9],[0,19],[1,2],[1,-8],[1,-80],[3,-76],[1,15],[1,-87],[-1,-9],[3,-29],[0,-15],[1,-13],[1,5],[2,-7],[1,-9],[0,25],[1,16],[2,8],[1,-1],[1,3],[-3,20],[-1,14],[-1,17],[-1,16],[-1,23],[-1,25],[-3,50],[0,13],[0,33],[-3,23],[-1,28],[-1,21],[-2,68],[0,10],[0,23],[0,11],[1,9],[2,7],[3,-7],[4,-1],[2,-12],[4,-13],[4,-4],[2,-3],[3,-1],[1,-2],[2,7],[2,0],[1,8],[2,5],[5,-5],[3,-5],[5,-6],[5,2],[5,-4],[4,-4],[1,-9],[4,-47],[1,-15],[3,-48],[0,-18],[1,8],[1,13],[0,-23],[1,-9],[2,-26],[2,-25],[2,-57],[2,-8],[6,-14],[0,-13],[1,-12],[3,-11],[2,-41],[2,-33],[5,-176],[0,-35],[-1,-17],[1,-1],[1,4],[4,-35],[0,-13],[0,-18],[0,-12],[0,-23],[0,-16],[1,-14],[0,-11],[1,-16],[0,-11],[0,-17],[0,-9],[1,-17],[0,-13],[-2,-14],[-1,-8],[1,-7],[0,-7],[0,-11],[-1,-1],[-1,-3],[0,-1],[0,9],[-1,13],[-1,-2],[0,-14],[-2,-35],[-1,-6],[0,-6],[-1,-6],[-1,-3],[0,-5],[-1,-6],[-1,-1],[-2,-6],[0,4],[-2,14],[0,19],[-1,14],[-1,14],[-1,11],[0,11],[-1,7],[-1,3],[-1,10],[-2,25],[-1,-1],[-3,9],[-1,-2],[-1,4],[-1,0],[-2,-5],[2,-7],[1,1],[2,-14],[1,2],[2,-10],[1,-12],[1,-5],[1,-19],[2,-5],[1,-4],[0,-14],[0,-21],[1,-17],[0,-13],[0,-17],[2,-10],[0,-6],[1,-6],[1,-7],[1,-19],[0,-9],[0,-20],[0,-39],[1,-27],[0,-40],[-1,-10],[1,-18],[0,-10],[1,-21],[0,-10],[1,-22],[0,-15],[1,-7],[4,-49],[0,-13],[1,-55],[-1,-62],[0,-52],[0,-20],[0,-37],[1,-14],[0,-22],[1,-8],[1,-17],[0,-14],[1,-1],[1,-29],[2,-29],[-1,-14],[-1,-5],[-1,-22],[1,-14],[0,-15],[-2,-37],[-2,-39],[-1,-23],[0,-18],[-1,-5],[-1,-10],[-6,-58],[-1,0],[-1,0],[-2,-32],[0,-3],[-1,-6],[-4,4],[-1,1],[-1,4],[-1,16],[-2,13],[-2,20],[-1,6],[-1,4],[-1,77],[-1,16],[-1,13],[-3,18],[-11,138],[-9,66],[-11,116],[-7,114],[-1,36],[1,-4],[2,-15],[0,10],[-4,53],[-2,33],[-1,17],[-1,39],[1,7],[1,-3],[3,25],[-1,8],[-4,-7],[-1,7],[0,18],[0,24],[-1,11],[-1,32],[-1,22],[-6,109],[-3,7],[0,-5],[1,-19],[0,-24],[-1,-4],[1,-25],[0,-37],[-1,10],[-1,37],[-3,114],[0,25],[-2,42],[1,18],[-1,13],[-3,96],[-2,25],[0,38],[-1,6],[-2,12],[-3,-13],[0,-24],[1,-41],[2,-22],[0,-8],[1,3],[1,2],[1,25],[1,-11],[1,-22],[1,-43],[0,-20],[-2,-20],[1,-21],[1,-80],[0,-14],[2,-43],[1,-13],[-1,-22],[0,-20],[-1,0],[0,12],[-3,9],[0,26],[-1,8],[0,8],[0,15],[0,6],[-1,4],[-2,8],[-2,36],[-1,22],[-3,40],[-2,24],[-2,6],[-1,0],[-1,-3],[0,-23],[0,-15],[4,-47],[0,-18],[0,-13],[2,-27],[1,-14],[2,-21],[1,-23],[1,-27],[0,-21],[1,-6],[1,-14],[-1,-19],[-1,-16],[-2,4],[0,2],[-1,-2],[2,-33],[0,-14],[-2,-20],[-1,-19],[1,-11],[2,-8],[1,-30],[1,6],[1,-16],[1,-8],[0,-19],[-1,-13],[1,-15],[0,-20],[3,-18],[1,-25],[3,19],[4,5],[2,-5],[2,6],[0,16],[-1,15],[0,8],[0,-1],[2,-21],[1,6],[0,23],[-1,8],[0,8],[1,8],[2,12],[1,-44],[0,-21],[1,-18],[2,-31],[2,-37],[1,-25],[0,-13],[1,-15],[1,-17],[-1,-23],[0,-19],[-1,-10],[0,-13],[-2,-11],[-1,-9],[0,-19],[1,-23],[0,-14],[0,-17],[1,-18],[-3,3],[-1,-7],[-2,-11],[-2,6],[-1,8],[1,-29],[1,-19],[-1,6],[0,-13],[1,-9],[-1,-19],[1,-6],[0,-22],[1,-11],[-1,-6],[-1,-5],[-1,-11],[2,-6],[1,-12],[1,10],[1,-8],[1,17],[1,6],[-1,19],[1,5],[1,5],[-2,22],[-1,23],[1,-4],[1,-7],[0,-9],[2,-13],[1,3],[1,8],[1,-2],[1,-20],[8,-72],[2,-17],[0,-18],[1,0],[1,0],[0,-4],[1,4],[-1,18],[-3,37],[0,6],[1,6],[0,1],[2,-24],[2,0],[4,0],[4,-27],[2,-20],[1,-4],[1,-8],[4,-33],[1,-16],[-1,1],[-1,-5],[1,-20],[2,-36],[-2,-5],[-1,6],[-1,7],[-1,-9],[0,-9],[-1,-2],[0,-10],[-1,19],[-1,20],[-1,0],[-1,1],[-1,6],[-1,-5],[0,6],[-1,13],[-5,50],[-1,5],[-3,-15],[-1,-16],[3,-30],[1,-4],[1,-9],[0,-16],[2,-5],[3,-39],[2,-3],[1,-11],[1,-14],[1,2],[2,-6],[0,-16],[1,-16],[2,-13],[1,0],[0,-15],[1,-39],[1,-36],[1,-51],[0,-19],[0,-24],[2,-18],[1,-45],[0,-27],[-5,37],[-6,-3],[-4,7],[-1,-18],[1,-22],[-1,-22],[1,-7],[5,-18],[0,-12],[-1,0],[-1,-1],[-2,3],[-1,-19],[0,-11],[1,-10],[1,-18],[0,-19],[0,-5],[0,-9],[1,-1],[1,0],[1,-8],[-4,-57],[1,-10],[-1,-9],[-2,-7],[-1,0],[-1,-22],[1,-19],[-4,-35],[-3,-9],[-6,-42],[-2,-3],[-1,-9],[-1,14],[-2,11],[-1,7],[-2,10],[-1,-2],[1,44],[-1,8],[0,-11],[-2,-17],[0,-15],[0,-18],[0,2],[-2,11],[-2,9],[0,11],[2,9],[2,13],[-1,12],[-2,6],[-1,-6],[-1,-14],[-1,12],[2,24],[-1,15],[-1,5],[-1,4],[-6,-38],[-1,9],[-1,4],[0,11],[2,9],[0,6],[0,7],[-1,-1],[-2,-10],[-2,15],[-2,4],[-1,-21],[0,-20],[-4,-24],[-1,4],[-3,9],[-2,1],[-2,11],[-2,71],[-1,21],[-2,16],[-1,10],[-2,-4],[-4,-1],[2,19],[-1,7],[-1,-10],[-1,-3],[-1,-1],[-3,-14],[-2,-5],[-2,33],[-3,16],[0,-30],[0,-18],[0,-46],[3,-5],[0,-17],[1,-2],[2,-36],[-1,-10],[-2,5],[-1,14],[-1,20],[0,-1],[-1,-24],[-1,-8],[1,-6],[3,-43],[-1,-32],[-4,4],[-3,-8],[-1,-14],[-3,3],[-7,-16],[-3,-44],[-1,-14],[-2,5],[-1,-11],[-3,-3],[-1,10],[-2,2],[-2,-7],[-3,7],[-1,-1],[-2,2],[-1,-6],[-4,-1],[-3,-5],[-10,18],[-2,9],[-2,-13],[-1,1],[0,24],[-2,24],[1,21],[0,32],[-1,13],[-1,-10],[-1,17],[0,3],[0,13],[2,-7],[0,12],[-1,26],[-1,56],[0,20],[1,25],[1,11],[-1,8],[0,35],[-1,26],[-1,69],[0,17],[0,26],[0,11],[0,25],[1,15],[0,12],[1,12],[1,2],[1,-6],[0,13],[1,35],[2,39],[-2,3],[0,12],[-1,-17],[-1,20],[-1,6],[-1,3],[-1,9],[-1,-21],[0,31],[-1,13],[-2,-7],[-2,-29],[-1,3],[1,26],[2,12],[1,6],[0,16],[5,33],[2,2],[1,-6],[2,31],[-1,12],[3,21],[-2,13],[-1,-10],[-1,-10],[-1,7],[1,15],[0,12],[1,8],[0,14],[-1,1],[-1,-6],[-1,-11],[-1,8],[-2,5],[-1,9],[0,12],[1,3],[0,21],[0,18],[1,8],[-1,16],[-1,9],[0,25],[-1,31],[-1,6],[-1,11],[-1,-3],[-1,-5],[-1,-14],[-1,14],[1,14],[0,7],[-1,14],[-2,20],[1,10],[0,23],[-1,7],[1,7],[0,13],[0,29],[-1,-8],[-1,1],[0,23],[1,13],[-2,16],[-2,12],[-1,-1],[1,17],[1,11],[1,3],[1,-17],[1,2],[1,12],[-1,18],[-2,12],[0,9],[2,2],[1,4],[-1,19],[1,0],[1,13],[1,5],[0,14],[-1,26],[0,8],[1,5],[1,21],[1,-1],[1,19],[1,13],[1,14],[-2,-7],[-1,1],[-1,-12],[-1,-7],[-1,-7],[0,8],[-1,23],[1,-2],[0,24],[1,21],[-1,12],[1,8],[-1,16],[1,2],[-1,16],[1,21],[-2,23],[1,8],[1,1],[2,-3],[1,3],[-3,18],[-2,8],[1,9],[1,7],[1,4],[1,6],[2,16],[0,19],[-2,10],[-1,3],[-1,7],[2,10],[1,7],[-1,6],[-1,5],[-2,-2],[-2,6],[0,21],[3,18],[1,9],[3,8],[0,-9],[2,-9],[0,14],[3,-1],[1,5],[0,9],[0,9],[-4,11],[-2,18],[-2,14],[1,14],[1,4],[1,6],[-2,15],[-1,13],[0,16],[-2,18],[1,2],[1,0],[-1,14],[1,7],[3,8],[-1,5],[0,18],[-1,13],[0,8],[0,15],[-1,10],[0,15],[2,25],[0,6],[-1,-1],[-1,-10],[-1,-2],[-1,-12],[1,-29],[-1,15],[-1,16],[-2,0],[1,-18],[2,-37],[1,-18],[0,-7],[-6,-53],[-9,-57],[-1,4],[-1,-8],[-2,-18],[-2,-9],[0,13],[-1,8],[0,10],[2,12],[2,18],[0,17],[1,9],[1,10],[0,10],[-1,-2],[-4,-24],[-3,-10],[-2,1],[-2,16],[-5,28],[0,14],[-1,10],[2,10],[-2,3],[-1,-1],[0,-6],[-3,-5],[-1,27],[1,19],[1,11],[0,3],[2,-10],[1,3],[1,1],[1,3],[-1,9],[-1,9],[1,6],[-5,24],[-2,1],[-2,1],[-1,-1],[-1,-12],[-2,-35],[-2,-7],[0,13],[0,16],[2,18],[1,13],[0,10],[1,10],[2,5],[3,5],[0,3],[-1,12],[-2,5],[-1,-5],[-1,-4],[-1,3],[-1,27],[-3,13],[-1,-7],[1,-18],[2,-5],[-2,-38],[-1,-5],[-1,17],[-1,13],[-1,11],[0,28],[-1,8],[-1,17],[-1,11],[0,13],[-1,7],[1,10],[1,3],[0,14],[-1,4],[-1,15],[0,17],[0,9],[0,10],[2,3],[1,-8],[2,-1],[0,-1],[1,-15],[0,-22],[3,-44],[1,-10],[1,-17],[6,-5],[2,11],[2,0],[1,-11],[1,-3],[1,-6],[3,7],[1,13],[-1,14],[5,23],[0,-5],[1,-13],[0,-15],[4,-16],[2,1],[4,-8],[1,6],[-4,7],[-1,10],[1,9],[-2,2],[1,17],[1,-1],[1,5],[1,8],[2,0],[5,0],[-2,10],[-1,6],[-1,7],[0,7],[-6,-2],[-2,1],[-2,17],[-5,-5],[0,12],[-1,15],[-1,-2],[0,-9],[-1,-14],[-1,-4],[-2,1],[-2,2],[-4,29],[0,11],[1,7],[-2,14],[-1,1],[1,7],[-1,13],[-2,13],[-1,7],[0,15],[-1,5],[-1,-1],[-2,2],[-2,13],[1,18],[0,17],[-1,-2],[-1,1],[-1,14],[-1,10],[0,12],[-1,5],[0,8],[0,16],[-1,13],[-1,4],[0,5],[-1,11],[-1,18],[-1,7],[0,4],[-1,7],[-1,4],[-1,8],[-1,4],[-1,7],[0,14],[-1,7],[0,7],[-1,5],[-1,-1],[0,3],[-2,16],[-1,8],[-1,4],[0,16],[-1,6],[0,6],[-1,4],[-1,11],[-1,17],[0,12],[-1,10],[-1,4],[-1,8],[-1,13],[-1,11],[-1,6],[-2,5],[-1,5],[-1,17],[-2,4],[-1,2],[0,18],[0,16],[-1,14],[-2,21],[-2,-3],[-2,14],[-1,9],[-2,7],[0,9],[2,7],[3,11],[2,23],[1,27],[0,22],[-1,13],[-2,13],[0,19],[0,28],[-1,8],[1,11],[2,2],[1,10],[1,2],[0,13],[2,18],[1,5],[6,-3],[2,3],[2,-1],[1,-5],[2,-1],[2,4],[0,9],[2,12],[1,9],[1,15],[4,20],[1,10],[1,31],[2,-2],[2,-2],[1,5],[3,6]],[[12805,29172],[-1,-7],[-4,66],[-1,30],[1,30],[2,4],[1,-12],[1,-19],[1,-13],[-1,-9],[0,-15],[0,-7],[1,-9],[0,-19],[0,-20]],[[13033,30403],[33,-682],[-33,-593],[90,-231],[-22,-849],[35,-166],[35,-170],[-8,-259],[11,-251],[3,-160],[0,-44],[1,-55],[1,-89],[2,-167],[10,9],[10,10],[4,3],[4,3],[8,8],[14,12],[7,7],[14,13],[31,-295],[42,-260],[2,-15],[4,-24],[1,-3],[34,-210],[24,-215],[5,-13]],[[13395,25717],[-1,-36],[-2,-17],[-2,-35],[-1,-24],[-1,-30],[-1,-28],[-1,-36],[1,-28],[0,-24],[2,-21],[2,-20],[2,-21],[3,-9],[3,-6],[2,-5],[4,-25],[3,-20],[1,-24],[2,-24],[0,-18],[-1,-18],[-1,-10],[-3,-19],[-1,-12],[-2,-10],[-3,-8],[-2,-8],[-2,-5],[-1,-11],[1,-26],[1,-3],[2,2],[3,5],[2,4],[2,-3],[2,-10],[1,-15],[3,-6],[2,-3],[3,7],[0,-19],[1,-14],[0,-12],[-1,-11],[0,-21],[-1,-12],[0,-9],[-1,-29],[-1,-45],[-1,-5],[-2,3],[-2,2],[-3,-4],[-3,-14],[-1,-47],[-3,-43],[-2,-11],[-3,-12],[0,-21],[1,-50],[-3,-27],[-2,-18],[-3,-15],[-3,-19],[-2,-12],[-2,-8],[-3,-7],[-1,-11],[-2,-11],[-3,3],[-2,9],[-1,10],[-2,4],[-3,-2],[-1,-9],[-2,-13],[-4,-22],[-2,-27],[-2,-5],[-2,-7],[-1,-3],[-1,-2],[-1,2],[0,3],[-1,10],[1,15],[0,25],[0,20],[1,16],[0,19],[0,16],[-1,21],[-1,11],[-1,4],[-2,-1],[-2,-9],[-2,-6],[-1,-10],[-2,-15],[-3,-24],[-1,-5],[-1,1],[-1,0],[-2,-9],[-1,-14],[-1,-13],[-1,-19],[-3,-16],[-1,-11],[-1,-13],[-2,-14],[-1,-21],[-1,-30],[0,-26],[-2,-13],[-1,-8],[-2,-10],[-1,-9],[-2,-7],[-2,-10],[-1,-6],[-1,-5],[-1,0],[-2,3],[-1,4],[-2,3],[-1,0],[-3,-10],[-1,-7],[1,-25],[1,-23],[1,-31],[1,-26],[1,-35],[0,-24],[1,-17],[2,-14],[1,-22],[1,-23],[2,-23],[2,-10],[3,-21],[1,-36],[0,-27],[0,-25],[-1,-21],[0,-26],[1,-21],[1,-40],[0,-36],[1,-35],[1,-16],[1,-26],[-1,-17],[-1,-13],[-1,-5],[-1,-1],[-1,5],[-1,6],[-2,20],[-1,15],[-2,17],[-3,0],[-2,-5],[-4,-9],[-3,-11],[-2,-3],[-2,3],[-4,-7],[-3,-4],[-1,3],[-2,4],[-2,14],[0,20],[-2,17],[-1,8],[-2,3],[-3,10],[0,9],[-1,14],[0,9],[0,23],[1,13],[0,17],[1,21],[-2,13],[-1,2],[-2,1],[-2,10],[-2,3],[-1,0],[-1,-3],[-2,8],[-2,11],[-1,9],[-1,12],[-1,20],[-1,14],[-1,17],[-1,23],[0,25],[-1,21],[0,7],[-3,-9],[-2,-7],[-1,2],[-2,7],[-2,8],[-1,14],[-1,18],[-2,18],[-1,-3],[-1,-13],[-2,-6],[-1,1],[-1,-6],[-2,-9],[-1,-8],[1,-13],[1,0],[1,-13],[0,-10],[1,-19],[-1,-15],[0,-16],[2,-7],[1,1],[0,-12],[1,-13],[0,-17],[-1,-15],[-2,-17],[-1,-21],[-1,-18],[-1,-14],[-2,-12],[-1,-3],[-1,6],[-1,5],[-2,4],[-1,3],[-1,-3],[-1,8],[0,14],[0,12],[0,19],[-1,14],[-2,9],[-2,-7],[-5,-26],[-4,-22],[-3,-19],[-2,-10],[-2,-5],[-1,-3],[-1,3],[-1,4],[-1,6],[-2,-12],[-2,-19],[0,-21],[-1,-19],[-1,-17],[-1,-15],[-1,-9],[-1,-1],[-2,2],[-1,6],[0,6],[-2,-6],[-2,-7],[-2,-16],[-1,-19],[0,-18],[0,-23],[1,-16],[0,-10],[0,-3],[1,-3],[-1,-21],[-2,-9],[-3,-17],[-2,-14],[-2,-17],[0,-14],[-1,-20],[0,-10],[0,-10],[0,-16],[1,-16],[2,-18],[1,-9],[2,-14],[1,-17],[1,-18],[0,-25],[1,-16],[-1,-23],[-1,-23],[-1,-14],[-1,-17],[0,-13],[-6,-34],[-8,-43],[-3,-17],[-2,-22],[0,-15],[0,-14],[1,-16],[0,-12],[1,-14],[-1,-18],[-2,-16],[-2,-10],[-2,-9],[-2,-6],[-2,-13],[-2,-11],[-2,21],[-1,-1],[-2,-6],[-2,-12],[-3,-17],[-1,-16],[-1,-15],[0,-14],[0,-12],[1,-9],[0,-5],[2,-3],[2,1],[1,3],[2,-1],[0,-4],[2,-13],[1,-16],[2,-36],[1,-9],[2,-19],[1,-19],[3,-27],[2,-22],[1,-22],[1,-24],[1,-15],[1,-10],[1,-11],[1,-17],[0,-18],[0,-10],[-1,-15],[1,-21],[0,-20],[0,-8],[-1,-4],[-1,-4],[-2,-9],[0,-14],[-1,-26],[-1,-21],[-2,-21],[-2,-21],[-1,-22],[-1,-29],[0,-19],[-1,-97],[0,-19],[2,-12],[1,-7],[0,-9],[1,-16],[0,-11],[1,-16],[0,-14],[0,-11],[-1,-7],[-2,-5],[0,-6],[-1,-9],[0,-16],[-2,-12],[-1,-12],[-2,-10],[-1,2],[-2,10],[-1,13],[-2,17],[-1,27],[-2,25],[-2,10],[-2,-1],[-3,-16],[-3,-44],[0,-43],[0,-52],[-1,-55],[-3,-42],[-5,-45],[-1,7],[-1,9],[0,7],[0,17],[0,15],[-1,31],[-1,32],[-1,7],[-1,4],[-2,-4],[-1,-5],[-1,-2],[-1,-4],[-1,-3],[-1,-3],[-2,4],[0,3],[-2,11],[0,17],[0,8],[-2,28],[-1,36],[0,17],[0,20],[1,37],[0,19],[-2,18],[-2,17],[-7,71],[-2,26],[-3,35]],[[13073,22433],[2,-9],[1,-5],[1,-5],[1,-1],[1,8],[1,-21],[2,-14],[2,-2],[3,-5],[1,-24],[1,3],[0,16],[-1,14],[-3,21],[-3,31],[1,18],[1,36],[0,23],[0,14],[0,11],[0,18],[0,23],[0,38],[1,51],[-2,-18],[-1,3],[3,39],[0,21],[0,15],[1,7],[2,-4],[0,-15],[-1,-7],[2,-7],[3,23],[2,-5],[2,-5],[-1,24],[1,17],[3,22],[5,7],[6,-12],[3,-1],[3,-8],[2,-19],[5,-24],[4,-15],[1,-14],[2,-22],[1,-17],[1,-19],[1,-22],[0,-11],[1,11],[0,23],[-1,13],[-1,17],[0,16],[-1,18],[-1,12],[-2,22],[-2,9],[-3,19],[-2,21],[-2,13],[0,17],[0,22],[-1,23],[-2,12],[-4,14],[-1,36],[0,23],[-2,15],[-1,-6],[0,12],[1,11],[1,10],[2,10],[1,22],[1,29],[1,10],[1,22],[1,17],[2,19],[1,18],[1,10],[1,13],[2,-2],[1,-18],[0,15],[-1,16],[-1,21],[-2,39],[-1,27],[-1,24],[-2,28],[-2,45],[1,43],[1,32],[3,25],[3,11],[1,17],[-1,16],[1,16],[1,4],[1,-9],[0,13],[1,7],[2,4],[2,-3],[1,-2],[0,16],[0,13],[1,-2],[1,-9],[1,-10],[1,12],[1,-13],[1,9],[0,12],[1,0],[0,-10],[1,-10],[1,7],[1,5],[1,-7],[0,-15],[2,2],[-1,26],[1,15],[1,4],[1,9],[-1,14],[-1,5],[-1,5],[-1,14],[0,13],[-1,14],[1,13],[0,13],[1,12],[0,15],[1,-2],[1,-15],[1,-16],[1,-12],[1,-8],[1,-11],[1,-9],[1,-7],[1,-10],[1,-10],[1,4],[-1,16],[-1,9],[-1,5],[0,8],[-1,10],[0,11],[-1,10],[-1,12],[-1,15],[-1,14],[0,4],[0,11],[0,18],[0,18],[-1,18],[-1,12],[0,16],[-1,17],[0,20],[0,23],[-1,20],[-1,15],[0,19],[0,19],[0,15],[-1,9],[0,13],[0,17],[0,15],[0,9],[1,10],[1,-3],[1,-6],[1,-6],[1,-4],[0,13],[-1,4],[0,2],[-1,13],[-1,10],[-1,11],[-1,6],[-1,21],[1,16],[0,24],[0,19],[0,15],[0,12],[1,17],[0,7],[1,18],[0,22],[0,21],[1,19],[0,20],[0,27],[-1,24],[1,15],[0,16],[-1,34],[0,29],[0,23],[1,17],[1,13],[0,9],[-1,2],[-1,7],[0,23],[0,12],[1,21],[1,8],[2,0],[1,1],[1,2],[1,3],[2,4],[1,3],[1,3],[1,2],[1,2],[1,4],[1,3],[1,2],[3,2],[1,0],[1,2],[1,0],[1,4],[1,13],[0,13],[0,10],[0,18],[0,18],[1,7],[1,5],[0,7],[2,8],[1,-1],[1,5],[1,-7],[1,-7],[1,-1],[2,-3],[3,-11],[1,-9],[2,-14],[1,-10],[1,10],[0,15],[0,10],[0,8],[2,-7],[2,-6],[1,-1],[1,7],[1,6],[3,5],[1,8],[1,6],[1,7],[1,7],[1,5],[2,-14],[1,-9],[2,-4],[3,-12],[1,-10],[1,1],[2,-17],[2,-9],[1,-13],[1,-4],[2,1],[1,3],[0,8],[2,4],[1,6],[1,-2],[1,5],[3,-10],[1,-12],[1,-9],[2,-9],[1,-4],[1,4],[1,12],[0,10],[1,4],[1,-3],[1,-15],[1,-14],[1,-4],[1,-11],[2,-11],[1,-9],[0,-11],[1,-20],[0,-15],[1,-14],[1,-12],[1,-1],[0,20],[0,13],[-1,12],[-1,14],[0,16],[1,6],[2,6],[1,4],[1,10],[-1,8],[-1,-4],[-1,-8],[0,5],[-1,10],[-1,3],[-1,13],[-2,26],[2,4],[1,-1],[2,-9],[1,-8],[1,-6],[2,-10],[1,-11],[1,-6],[1,4],[1,7],[1,4],[1,5],[1,11],[0,14],[-1,17],[1,16],[1,4],[0,-2],[2,-1],[0,16],[0,13],[1,12],[1,11],[0,13],[0,13],[1,9],[1,8],[1,6],[1,4],[1,-4],[2,-7],[1,-10],[2,0],[0,8],[-1,4],[0,4],[0,8],[1,9],[0,17],[1,10],[1,7],[1,9],[1,4],[-1,11],[1,10],[-1,3],[-2,-7],[-2,-11],[-1,-6],[-1,-2],[-1,0],[-1,-3],[-1,2],[-2,0],[-2,-3],[-1,-3],[-1,-9],[-1,-5],[-1,-7],[-2,-9],[-1,-10],[0,-16],[1,-21],[-1,-16],[0,-13],[-1,-7],[1,-11],[-1,-11],[-1,-9],[0,-15],[-1,-11],[-1,2],[-1,1],[-1,4],[0,9],[-1,12],[0,11],[-1,3],[-1,8],[-1,5],[-1,-13],[-2,-6],[-1,-5],[-1,7],[-1,-3],[-1,-8],[-1,-1],[-1,-3],[-2,-3],[-1,3],[-1,4],[-1,-10],[-1,1],[-1,4],[-1,6],[-1,12],[-1,5],[-1,3],[-1,10],[0,10],[0,20],[0,15],[-1,-9],[0,-16],[-1,-12],[-1,2],[0,9],[-1,9],[-1,4],[-1,9],[-4,7],[-1,2],[-1,3],[-1,9],[-1,-7],[0,-9],[-2,-1],[-1,5],[-1,6],[-1,10],[-1,11],[-3,10],[-3,5],[-1,-2],[-1,-8],[-1,-9],[-1,-7],[-1,-8],[-1,2],[-1,-9],[-1,-4],[-1,0],[-1,3],[-2,2],[-3,2],[-1,-4],[-1,0],[-1,4],[-1,8],[-1,2],[-1,-1],[-2,5],[-2,12],[-2,10],[-1,7],[-1,5],[0,2],[-2,1],[-1,3],[0,-15],[-2,-9],[-2,-3],[-1,6],[-1,12],[-1,7],[-2,8],[-1,3],[-2,5],[-1,10],[-1,14],[-1,13],[0,20],[-1,21],[-1,20],[-1,22],[0,26],[-1,19],[-1,18],[-1,10],[0,17],[-2,26],[0,19],[-1,22],[-1,22],[-1,27],[-1,8],[0,18],[0,19],[0,16],[-1,19],[0,27],[0,18],[-1,15],[0,21],[-1,21],[1,19],[0,21],[0,18],[1,22],[1,25],[-1,12],[0,15],[1,32],[1,19],[1,9],[1,2],[1,3],[1,10],[-1,7],[0,16],[1,13],[-1,0],[-1,-3],[-1,-5],[-1,-4],[-2,-1],[-1,-5],[-1,0],[-1,-4],[-1,-5],[0,1],[-2,11],[0,-15],[0,-15],[-1,-16],[1,-19],[2,3],[0,2],[1,-16],[0,-11],[-1,-16],[1,-22],[-1,-19],[0,1],[-2,1],[0,10],[-1,21],[0,17],[0,14],[-1,-10],[0,-27],[-1,-7],[-1,-1],[0,13],[-1,6],[-2,13],[-1,5],[-2,16],[-1,5],[-2,22],[-2,9],[-2,16],[0,-12],[-2,5],[-1,7],[-3,2],[-2,-6],[-2,-13],[-2,-25],[-1,-12],[-1,-2],[-1,4],[-1,3],[-1,15],[0,29],[-2,24],[-1,8],[-2,22],[-1,14],[-2,20],[-1,32],[-2,22],[-2,-5],[0,-8],[1,-9],[0,-15],[-1,-16],[1,-15],[1,-33],[1,-30],[-1,-1],[-3,8],[-2,23],[1,11],[1,20],[-1,24],[0,19],[-1,20],[-1,18],[-2,23],[0,21],[-1,18],[0,28],[0,17],[-1,18],[0,19],[0,24],[-2,18],[1,33],[0,15],[-1,14],[1,12],[-1,11],[-2,10],[-2,5],[-2,20],[-1,24],[-1,15],[-1,8],[-1,10],[-1,8],[-2,21],[1,16],[-1,16],[0,-13],[-1,-12],[-1,15],[-1,-13],[-3,-10],[-4,8],[-1,26],[-1,27],[-2,35],[-2,18],[-2,11],[-2,15],[-2,7],[-1,13],[-2,17],[-1,21],[-2,15],[-1,26],[0,24],[0,27],[0,26],[0,9],[0,37],[-1,30],[0,19],[-1,23],[1,44],[0,31],[0,22],[0,12],[2,7],[2,2],[0,6],[3,52],[3,92],[0,35],[1,11],[3,14],[0,1],[1,6],[2,27],[1,10],[2,22],[2,28],[4,31],[1,2],[1,3],[2,6],[0,17],[-1,-2],[-2,11],[-1,11],[1,20],[0,8],[4,1],[4,17],[3,10],[3,18],[4,23],[4,7],[1,3],[4,17],[4,9],[3,-1],[2,0],[5,24],[0,19],[-4,-16],[-3,-4],[-3,0],[-7,-23],[-7,0],[-1,-22],[-2,-6],[-2,-16],[-4,-20],[-3,-9],[-1,19],[-1,24],[-2,8],[-2,-6],[-2,-10],[-1,-9],[0,-4],[-1,-13],[-3,-15],[-2,-5],[-1,0],[-1,-14],[-1,-11],[-1,-18],[-1,-7],[-2,-4],[-1,-15],[-2,-23],[-2,-4],[-1,3],[-3,8],[-1,9],[-1,17],[-2,7],[-2,3],[-3,-8],[-4,-19],[-4,5],[-2,6],[-4,1],[-2,0],[-3,24],[-3,28],[-3,20],[-3,21],[-1,7],[-5,25],[-3,10],[-4,13],[-1,41],[-4,25],[2,12],[3,12],[2,11],[1,13],[-1,14],[-2,32],[2,7],[1,-6],[3,-25],[2,11],[2,21],[1,8],[3,40],[1,27],[0,37],[-1,17],[-1,15],[0,17],[1,11],[3,0],[2,-9],[2,6],[0,15],[2,0],[2,4],[1,2],[2,-13],[0,20],[0,6],[1,12],[1,19],[1,32],[0,23],[-2,28],[-1,16],[3,15],[0,15],[1,19],[1,7],[2,-3],[3,10],[2,9],[4,-1],[2,-11],[1,10],[-1,20],[-2,8],[-2,19],[-1,-8],[-2,0],[-1,6],[-5,-10],[-5,-12],[-1,-12],[0,-31],[-2,-18],[-2,-30],[0,-26],[0,-28],[1,-18],[-1,-16],[-2,6],[-4,8],[-1,-4],[-4,-2],[-3,19],[0,-9],[1,-20],[-1,-24],[-3,-21],[0,-16],[-1,-30],[0,-30],[1,-23],[-1,-30],[0,-3],[-3,11],[0,30],[-2,5],[-5,-4],[-11,72],[-2,1],[-1,2],[-3,31],[-5,11],[-7,51],[-20,159],[-10,70],[-6,91],[-2,45],[1,8],[1,26],[-2,30],[-2,29],[0,9],[2,22],[1,37],[-1,15],[-1,-7],[-1,-10],[-1,-14],[-2,-2],[0,15],[0,25],[0,18],[-3,-3],[-1,-6],[-2,-1],[0,11],[-1,26],[-1,-1],[-2,21],[-1,7],[-1,4],[-4,18],[-1,5],[0,-4],[-1,11],[0,17],[3,-4],[-4,112],[-1,37],[0,7],[-3,6],[-1,6],[-3,35],[-2,32],[-4,23],[0,14],[-1,21],[-2,34],[3,19],[5,-9],[7,-4],[6,-39],[3,-22],[2,-21],[1,6],[0,17],[-2,18],[-6,45],[-3,17],[5,11],[1,-1],[3,-16],[3,-33],[3,-41],[1,-11],[0,-11],[3,-17],[1,-22],[1,-22],[1,-6],[1,8],[0,15],[1,4],[1,6],[1,-12],[0,2],[2,-8],[1,47],[-1,50],[-1,15],[0,16],[1,7],[2,55],[-1,13],[-1,13],[-3,42],[-4,60],[-3,68],[-2,48],[-1,35],[-1,22],[1,17],[1,8],[0,8],[1,8],[2,7],[1,2],[1,3],[0,55],[0,32],[-1,17],[-4,8],[-2,-15],[-1,-33],[-1,-7],[0,-13],[-1,-16],[-1,-7],[-1,-6],[-2,-3],[-1,2],[-1,-1],[0,-14],[0,-13],[-1,-14],[0,-12],[0,-21],[1,-44],[0,-21],[1,-20],[-1,-22],[0,-26],[-2,-21],[-2,-13],[-1,-10],[-1,-7],[-1,-1],[-2,9],[-2,18],[-1,18],[-1,24],[-2,10],[-2,17],[-2,12],[-3,9],[-4,4],[-2,11],[-2,7],[-2,3],[1,-46],[-1,-8],[-1,-7],[-2,-70],[-1,-33],[-1,2],[0,75],[0,42],[-1,27],[-1,17],[-1,9],[0,13],[0,13],[1,-4],[1,9],[-1,11],[-2,6],[-1,1],[0,-7],[0,-14],[0,-14],[-1,-10],[-2,8],[-3,17],[-5,43],[-2,32],[-2,21],[-2,8],[-2,4],[-1,0],[-1,-5],[-2,8],[-3,15],[-3,6],[-3,-5],[-3,-7],[-4,-1],[-4,6],[-2,3],[-1,5],[0,11],[6,109],[1,20],[2,30],[-1,43],[-4,44],[-1,9],[2,1],[1,7],[0,4],[2,-1],[1,-7],[1,-8],[1,-6],[1,-5],[1,-3],[2,15],[0,46],[-1,27],[-1,10],[-1,4],[-1,-2],[0,24],[0,23],[1,24],[-2,3],[-1,-15],[0,-17],[0,-19],[-1,-15],[0,2],[-1,15],[-1,15],[-2,7],[0,18],[1,4],[0,5],[-1,2],[-2,4],[-2,-4],[-1,-12],[-2,-8],[-1,-4],[0,-19],[0,-14],[0,-18],[0,-15],[-2,3],[-1,5],[-2,-1],[0,-13],[2,-16],[1,-13],[1,-13],[1,-18],[0,-19],[0,-9],[-1,-5],[-1,-4],[-4,3],[-2,2],[-1,6],[-1,-1],[-1,-5],[-2,0],[-1,9],[2,55],[2,120],[-3,17],[0,6],[-1,5],[-1,1],[0,-15],[0,-21],[-1,-10],[0,-22],[0,-19],[-1,-27],[0,-23],[-1,-13],[0,-11],[0,-14],[1,-15],[0,-20],[-1,-17],[-1,-25],[-1,-24],[0,-17],[-1,-20],[-1,-16],[-1,-12],[-2,-10],[-3,-3],[-2,-3],[-2,-2],[-1,5],[-1,18],[-1,9],[-6,17],[-2,11],[-2,10],[0,7],[0,18],[-2,15],[-3,14],[-5,17],[-3,10],[-2,1],[-2,10],[0,19],[0,11],[-4,10],[-3,5],[-2,2],[-1,5],[-1,18],[-1,13],[0,13],[-3,9],[-2,7],[-3,17],[-1,17],[-1,17],[-1,6],[-3,18]],[[12713,29555],[4,-3],[3,-5],[2,-4],[2,-2],[1,2],[1,5],[1,8],[1,15],[1,27],[2,41],[1,13],[0,9],[1,5],[1,2],[1,2],[1,-2],[1,-2],[1,0],[1,3],[2,10],[3,12],[3,21],[4,26],[4,25],[2,16],[3,10],[2,13],[3,13],[3,13],[2,6],[2,10],[1,8],[2,2],[2,-6],[3,-8],[2,-9],[3,-14],[2,-17],[1,-18],[2,-22],[2,-16],[1,-16],[2,-11],[2,-22],[1,-7],[2,0],[2,0],[2,-6],[3,-7],[1,-9],[0,-14],[1,-12],[1,-14],[1,-7],[3,-11],[2,-9],[1,-3],[5,2],[1,8],[3,9],[3,7],[3,11],[2,13],[1,19],[3,31],[0,17],[1,16],[0,13],[1,15],[0,13],[2,14],[1,10],[2,16],[1,6],[1,5],[1,12],[1,9],[0,12],[-1,17],[-1,15],[0,19],[0,22],[0,13],[1,14],[1,12],[2,10],[1,16],[1,15],[1,15],[1,17],[0,18],[0,22],[-1,16],[0,20],[0,12],[-1,15],[0,14],[1,9],[1,5],[2,10],[1,11],[1,24],[1,25],[0,23],[0,18],[0,17],[1,16],[1,11],[2,4],[2,7],[2,8],[1,9],[2,15],[1,18],[1,18],[1,12],[2,6],[2,5],[2,3],[2,3],[3,9],[2,12],[2,12],[1,13],[1,15],[1,5],[1,-1],[1,-6],[2,-10],[2,-7],[2,-3],[2,-5],[2,-3],[1,-3],[1,0],[2,-1],[2,2],[1,7],[1,10],[1,15],[0,9],[0,10],[0,22],[0,26],[0,20],[1,40],[2,20],[2,23],[2,13],[2,15],[1,8],[2,5],[2,0],[2,3],[2,16],[3,16],[2,11],[2,13],[1,4],[1,4],[1,2],[3,7],[1,3],[2,4],[3,2],[2,0],[2,-1],[2,-2],[3,-9],[2,-9],[3,-10],[3,-8],[2,-11],[3,-9],[1,-9],[1,-15],[1,-16],[2,-19],[1,-9],[1,-8],[1,-5],[1,-4],[3,5],[2,5],[2,5],[1,1],[1,0],[1,-3],[1,-7],[0,-12],[0,-13],[-1,-11],[0,-12],[-1,-13],[0,-10],[1,-11],[0,-11],[1,-4],[1,-4],[1,-9],[1,-9],[0,-13],[0,-12],[0,-20],[0,-14],[1,-13],[1,-12],[0,-6],[3,-13],[2,-6],[2,-7],[3,-8],[2,-5],[4,-7],[3,-4],[2,-4],[1,-1],[2,5],[2,7],[2,4],[1,3],[2,2],[1,-1],[1,-1],[3,-4]],[[12505,29500],[1,-2],[1,2],[0,3],[1,-4],[0,-10],[-1,-13],[0,-18],[-1,1],[-1,9],[-2,4],[-2,1],[-1,13],[-1,-4],[0,16],[0,20],[1,12],[1,6],[1,1],[1,1],[1,4],[1,-3],[-1,-10],[-1,-29],[2,0]],[[12702,29708],[-2,-5],[-1,7],[0,10],[1,6],[2,7],[0,3],[2,-11],[-1,-6],[-1,-11]],[[12714,29745],[-1,-15],[-1,8],[-1,13],[-1,10],[-1,20],[-1,23],[-1,15],[-1,17],[-1,24],[0,17],[1,5],[0,18],[0,15],[1,-2],[1,-4],[1,-11],[1,-17],[1,-22],[1,-24],[0,-15],[1,-26],[0,-19],[0,-12],[1,-18]],[[12560,29898],[-1,-12],[-1,10],[0,18],[0,15],[2,4],[1,21],[1,-13],[0,-16],[0,-11],[-2,-16]],[[12573,30112],[2,-9],[1,3],[2,-6],[1,-11],[1,-3],[0,-7],[0,-10],[0,-4],[-2,3],[-2,5],[-1,7],[-1,10],[-1,6],[-1,10],[0,10],[0,5],[1,-9]],[[12556,30134],[-1,-4],[-1,11],[1,10],[1,-4],[0,-13]],[[12579,30132],[-1,-5],[-3,2],[-1,4],[0,12],[1,14],[1,8],[2,-7],[1,-14],[0,-14]],[[12719,30166],[-2,-2],[0,19],[1,2],[1,-19]],[[12733,30175],[0,-12],[-1,6],[-1,4],[-1,5],[1,8],[1,-2],[1,-9]],[[12725,30171],[-1,-2],[-1,2],[-2,14],[2,10],[1,6],[2,-2],[1,-6],[0,-15],[0,-6],[-2,-1]],[[12622,30056],[0,-15],[-1,-13],[-1,20],[-1,-3],[0,1],[-1,6],[-1,23],[0,26],[-1,19],[0,12],[0,18],[1,14],[0,3],[1,18],[0,21],[1,-12],[1,-3],[1,-7],[1,-17],[0,-20],[0,-30],[0,-22],[0,-21],[0,-18]],[[12779,30180],[-1,-10],[-1,5],[-1,17],[0,13],[0,5],[1,7],[2,-10],[0,-7],[0,-9],[0,-11]],[[12633,30158],[0,-15],[0,-20],[-1,-6],[-1,-5],[-1,3],[-1,1],[-1,-4],[0,11],[0,17],[-1,8],[0,-7],[-1,-5],[-1,5],[-1,14],[0,16],[0,17],[1,11],[1,11],[0,17],[1,-7],[1,-6],[1,-10],[2,-7],[1,-6],[1,-16],[0,-17]],[[12552,30237],[-1,-13],[-2,9],[1,10],[2,-6]],[[12733,30739],[1,-3],[0,1],[1,-3],[1,-6],[0,-9],[0,-7],[-1,0],[0,1],[-1,5],[0,-7],[-1,-3],[-1,-1],[-1,8],[0,14],[1,10],[1,0]],[[12622,30831],[-1,-6],[-1,7],[-2,17],[0,13],[-1,15],[0,18],[1,-2],[1,-16],[1,-17],[1,-14],[1,-15]],[[12601,30919],[0,-11],[-2,9],[-1,14],[1,7],[1,-4],[0,-8],[1,-7]],[[12615,30948],[0,-15],[-1,2],[0,7],[-1,11],[0,14],[1,4],[0,-12],[1,-11]],[[12413,31006],[2,-5],[1,3],[2,-5],[1,-10],[-3,-6],[-2,-9],[-2,6],[-2,10],[-2,15],[1,14],[1,3],[3,-16]],[[12696,31137],[-1,-2],[-1,1],[-1,6],[1,17],[1,4],[1,0],[1,-6],[0,-11],[-1,-9]],[[12431,31072],[0,-5],[-2,9],[-2,12],[-1,13],[-1,7],[-1,13],[-1,10],[-1,8],[0,19],[0,13],[1,8],[2,-21],[0,-2],[1,-7],[1,-12],[1,-13],[1,-11],[2,-11],[0,-5],[1,-11],[-1,-14]],[[12425,31184],[-1,-7],[0,1],[0,8],[0,8],[1,8],[1,-7],[0,-6],[-1,-5]],[[12421,31186],[-1,0],[0,10],[1,9],[1,8],[1,7],[1,5],[0,-14],[0,-5],[-1,-7],[-1,-6],[-1,-7]],[[12435,31225],[-1,-4],[-1,7],[1,9],[0,3],[1,-2],[0,-13]],[[12427,31228],[-1,-13],[-1,2],[1,11],[0,10],[1,9],[1,1],[-1,-20]],[[12733,32136],[-2,-2],[-1,4],[-1,6],[-1,1],[-1,6],[-1,9],[0,10],[-1,13],[-1,11],[1,10],[1,-2],[1,-2],[1,-4],[1,-10],[1,-9],[2,-12],[1,-12],[1,-16],[-1,-1]],[[12684,32406],[-2,-2],[-1,4],[-1,3],[-1,3],[-1,9],[-1,6],[-1,9],[0,12],[0,11],[0,14],[1,-2],[1,-4],[2,-4],[2,-11],[1,-8],[1,-12],[1,-10],[0,-15],[-1,-3]],[[12564,32502],[0,-2],[0,13],[0,10],[-1,14],[1,13],[0,18],[0,11],[1,5],[1,0],[0,-17],[0,-24],[0,-20],[1,-10],[-1,-9],[-2,-2]],[[12663,32615],[-1,-7],[-1,-6],[-1,-2],[-1,3],[-1,7],[-1,9],[-1,13],[-1,13]],[[12682,32846],[0,-35],[-1,-13],[-1,-10],[-1,-17],[1,-14],[0,-15],[1,-23],[-2,-15],[-1,-14],[0,-18],[1,-16],[1,-17],[0,-16],[-1,-22],[0,-9],[-1,-8],[-2,-7],[-2,-5],[-2,-1],[-1,-1],[-3,3],[-1,9],[-2,17],[-1,12],[-1,4]],[[11886,32995],[-2,-22],[-1,19],[0,11],[1,7],[0,10],[1,7],[1,-6],[0,-26]],[[12526,32995],[1,-16],[0,13],[0,14],[1,-2],[1,-19],[1,-23],[2,-19],[1,-13],[1,-10],[-1,1],[-2,8],[-1,7],[1,-16],[2,-39],[1,-20],[2,-26],[3,-22],[1,-33],[3,-42],[4,-53],[2,-65],[0,-29],[1,-34],[1,-15],[-1,-18],[-2,-9],[-1,-14],[-1,-3],[-2,24],[-2,32],[0,13],[-1,29],[-2,30],[0,12],[-3,17],[-3,40],[-2,30],[-2,42],[-2,37],[0,26],[-1,18],[-1,11],[-1,16],[1,8],[1,-8],[0,-13],[1,-4],[2,-6],[0,16],[2,-12],[-2,27],[-5,95],[-2,36],[-2,30],[0,26],[-2,17],[0,11],[0,8],[1,6],[2,0],[2,-24],[1,-28],[2,-23],[0,-15],[-1,-11],[1,-16]],[[12508,33049],[-1,-2],[-1,11],[-1,5],[-1,3],[0,21],[0,21],[0,12],[1,7],[1,-5],[0,-19],[1,-16],[0,-12],[1,-12],[0,-14]],[[12535,33238],[0,-18],[1,5],[1,13],[0,-14],[1,-14],[-1,-11],[-1,8],[0,-1],[0,-17],[1,-14],[0,-14],[1,1],[1,-18],[0,-21],[-1,8],[-1,13],[-1,7],[-1,17],[0,22],[-1,22],[0,32],[-1,12],[-1,14],[1,-4],[1,-10],[1,-18]],[[12506,33404],[3,-2],[1,3],[2,-43],[4,-21],[2,-13],[4,1],[3,-26],[1,-19],[1,-22],[1,-16],[1,-17],[0,-16],[0,-13],[1,-11],[-1,-6],[-1,1],[0,16],[-1,22],[0,21],[-1,18],[-2,16],[0,-13],[0,-16],[-1,-9],[1,-17],[-1,-20],[0,-23],[-1,-13],[-3,0],[-2,15],[-1,-3],[-1,-7],[-1,-6],[-1,3],[-4,33],[-1,14],[-2,13],[0,19],[-2,38],[-1,19],[-1,23],[-1,6],[-1,27],[0,22],[-1,17],[0,14],[2,5],[2,-3],[2,-9],[1,-2]],[[12080,33569],[1,6],[1,-5],[1,0],[1,-3],[-1,-11],[-2,-1],[-1,14]],[[12013,32817],[-13,-4],[-1,0],[-41,-9],[-14,-3],[-8,-1],[-14,-3]],[[11922,32797],[-1,9],[-1,3],[-1,0],[-1,-9],[-1,1],[0,12],[0,12],[1,10],[0,21],[-1,13],[-1,-14],[-1,-9],[0,11],[-1,-12],[0,-1],[-2,5],[0,-20],[-1,-11],[1,-14],[-1,-9]],[[11911,32795],[-7,-1]],[[11904,32794],[1,14],[0,14],[1,15],[-2,10],[-1,23],[0,14],[1,10],[1,9],[1,12],[1,11],[1,1],[0,19],[-1,5],[-1,6],[0,16],[2,13],[1,12],[0,14],[1,10],[0,13],[1,9],[1,16],[1,24],[1,17],[0,24],[1,30],[2,44],[3,44],[3,19],[1,-2],[3,-15],[2,-8],[2,-7],[4,-33],[2,-11],[2,-11],[1,-21],[2,-19],[3,-15],[1,-1],[0,3],[-1,10],[1,12],[0,15],[-2,5],[-1,6],[-1,15],[-3,15],[-3,23],[-2,11],[-2,12],[-5,36],[-3,13],[-3,8],[-1,16],[0,25],[0,32],[-3,48],[0,31],[0,30],[1,44],[2,48],[2,52],[2,31],[0,-11],[1,-5],[0,-14],[3,-15],[1,-8],[1,-15],[2,-20],[3,-24],[1,-7],[1,2],[2,-10],[0,-9],[2,-6],[1,-18],[1,-13],[1,-11],[1,-3],[0,-22],[2,-3],[0,-11],[1,-13],[2,-17],[2,-22],[4,-42],[4,-33],[3,-21],[3,-32],[3,-36],[1,-22],[4,-39],[3,-38],[3,-36],[4,-41],[5,-43],[0,-15],[1,-5],[1,-10],[2,-18],[1,2],[1,-7],[3,-9],[3,-27],[3,-38],[1,-11],[1,-4],[3,-11],[0,-10],[1,-11],[2,-9],[1,-2]],[[12506,33775],[1,-1],[1,1],[1,-9],[-1,-6],[1,-20],[0,-13],[0,3],[-1,5],[-1,10],[0,14],[-1,16]],[[12116,33761],[-2,-2],[-1,5],[-1,17],[2,3],[0,-13],[1,-4],[1,-6]],[[12108,33862],[1,4],[1,2],[1,4],[2,-1],[0,-13],[1,-12],[2,-12],[1,-8],[1,-9],[0,-5],[1,-11],[-2,-2],[-2,10],[-1,7],[-2,9],[-1,8],[0,8],[-1,7],[-1,-5],[0,-1],[-1,9],[0,11]],[[12171,34119],[1,-13],[-1,1],[-1,-3],[-1,-4],[-1,-1],[-1,7],[1,9],[0,5],[1,2],[1,-1],[1,-2]],[[11882,34112],[-1,-15],[0,-20],[2,19],[1,15],[1,13],[1,6],[1,0],[1,2],[1,-4],[1,-17],[2,-26],[1,-19],[0,-12],[0,-19],[1,-21],[1,-10],[1,-21],[1,1],[0,-16],[1,3],[1,8],[1,1],[1,-13],[1,-26],[0,-25],[0,-11],[2,-1],[2,-5],[1,-12],[1,-9],[1,-3],[2,-6],[0,-6],[0,-16],[2,-4],[1,-10],[1,-7],[1,-9],[0,-14],[2,-10],[2,-12],[1,-16],[1,-10],[1,-15],[1,-16],[1,-11],[0,-12],[1,-14],[-1,-5],[-1,-5],[-2,-8],[-1,-11],[-1,-14],[-1,-9],[-2,-5],[0,-21],[-1,-13],[0,-17],[0,-26],[0,-26],[-1,-29],[-1,-25],[0,-33],[-1,-14],[0,-24],[1,-9],[1,-18],[0,-17],[0,-21],[1,-6],[0,-22],[0,-28],[-1,-25],[-2,-25],[-1,-21],[-1,-42],[-2,-35],[-1,-31],[-2,-36],[-3,-50],[-2,-38],[-1,-29],[-1,-17],[-1,-14],[-1,-13],[-1,7],[0,-10],[-1,-12],[0,-12],[-1,-8],[-1,9],[-1,17],[1,11],[-1,11],[0,12],[1,8],[1,15],[1,15],[1,11],[0,16],[-2,-5],[-1,-16],[-2,-9],[-1,18],[-1,-3],[0,13],[-1,4],[0,23],[0,13],[1,14],[1,15],[1,5],[0,-5],[1,15],[0,5],[-1,11],[-1,8],[-1,6],[-1,-6],[0,-12],[-1,-6],[-1,23],[0,12],[1,3],[1,3],[-1,13],[-1,-1],[-1,-3],[-1,13],[-1,-5],[0,-7],[-1,-1],[-1,1],[-1,4],[-1,6],[-1,5],[-1,-4],[-1,2],[0,20],[1,21],[1,16],[1,15],[2,17],[1,7],[1,-1],[2,17],[-1,12],[-1,-1],[-1,6],[0,15],[-1,-8],[-1,-7],[0,1],[1,14],[-1,15],[-1,-16],[0,-3],[-1,-13],[-1,-10],[-1,-6],[1,19],[-1,-5],[-1,11],[-1,-12],[1,-22],[-1,-13],[-1,-8],[0,-10],[0,-12],[-1,3],[-1,15],[-1,1],[-1,-5],[-1,20],[-1,-11],[-1,-15],[0,-9],[0,-10],[-1,8],[-2,-2],[1,17],[-1,4],[0,12],[-1,-3],[0,28],[0,12],[1,12],[-1,8],[2,12],[1,8],[1,12],[1,-7],[1,7],[1,23],[1,15],[-1,-8],[-1,-8],[-1,0],[0,19],[0,22],[-1,12],[-1,-1],[-1,-7],[-2,-13],[0,22],[1,28],[2,31],[1,10],[1,7],[1,14],[1,4],[1,16],[-1,21],[1,30],[1,0],[2,-2],[1,4],[-2,15],[-1,13],[1,13],[1,11],[1,14],[-2,14],[0,13],[1,15],[0,14],[-1,21],[1,18],[-2,-9],[-1,-18],[0,-16],[0,-6],[-2,11],[-1,10],[-1,7],[0,-16],[0,-20],[-1,4],[0,17],[-1,18],[-1,15],[1,12],[1,19],[1,22],[-2,8],[0,11],[0,14],[1,19],[-2,7],[1,6],[1,6],[0,26],[1,10],[0,10],[0,19],[-1,6],[1,15],[-1,15],[1,15],[0,9],[1,5],[1,7],[0,17],[-1,5],[-1,1],[0,12],[1,6],[0,9],[1,-3],[1,-13],[1,4],[0,-3],[1,14],[0,15],[0,11],[-1,6],[0,16],[1,2],[0,14],[1,8],[2,6],[2,4],[1,2],[2,-1],[1,-8],[0,11],[1,15],[0,14],[1,4],[1,-3],[0,-15],[-1,-19]],[[12550,34052],[-1,-5],[-1,4],[-1,4],[-2,2],[-1,3],[-3,14],[-2,12],[-1,9],[0,12],[0,21],[0,17],[1,8],[1,3],[2,-6],[2,-9],[2,-12],[2,-4],[1,-16],[0,-12],[1,-18],[1,-14],[-1,-13]],[[12206,34226],[1,10],[1,-8],[1,-4],[1,-5],[0,-6],[-2,-2],[-1,5],[-1,10]],[[12713,29555],[-4,18],[-2,6],[-2,-5],[-3,3],[-3,11],[0,22],[1,9],[3,4],[3,4],[3,4],[2,12],[2,15],[2,16],[1,24],[0,19],[0,22],[1,15],[1,12],[0,37],[-1,41],[-1,24],[-1,21],[-2,17],[-1,15],[-2,15],[0,20],[-1,13],[1,5],[2,-2],[1,3],[2,-2],[0,13],[-1,19],[-2,37],[0,11],[1,-3],[1,-7],[1,0],[1,3],[2,4],[2,2],[0,12],[1,18],[-1,12],[-1,8],[-1,10],[0,11],[2,-10],[1,-7],[2,-1],[0,11],[0,15],[0,8],[1,6],[6,-18],[4,-16],[2,-8],[1,-6],[1,-3],[2,-4],[7,2],[8,-19],[4,21],[2,2],[-1,39],[1,7],[2,-3],[3,-27],[2,-3],[0,6],[-1,16],[0,4],[1,-1],[1,-13],[1,-10],[1,5],[2,7],[1,-8],[1,-10],[3,1],[1,-6],[2,-7],[1,12],[1,-1],[1,-16],[0,-15],[1,-28],[3,-23],[1,-18],[2,-20],[1,-17],[0,-23],[1,-17],[1,0],[2,-23],[0,-15],[2,-12],[1,-12],[2,-8],[-2,29],[-1,24],[-1,20],[-2,20],[-1,21],[-1,21],[-2,24],[-2,14],[-1,12],[-1,20],[0,16],[-1,17],[0,20],[1,17],[1,7],[2,22],[1,14],[1,11],[1,6],[3,-4],[1,-7],[1,0],[1,11],[3,15],[2,8],[0,32],[1,19],[0,17],[1,6],[2,-15],[2,-21],[2,-21],[2,-11],[1,-7],[2,-8],[1,0],[1,7],[0,28],[0,27],[2,13],[1,6],[1,64],[-2,-22],[-1,-13],[-3,-1],[-3,14],[-2,12],[-2,11],[-1,4],[-4,-4],[-2,-24],[-2,-21],[-4,-22],[-2,-7],[-4,-6],[-2,3],[-2,11],[-1,8],[-3,7],[-2,11],[-3,13],[-2,2],[-8,-9],[-7,11],[-11,24],[-7,19],[-3,8],[-2,23],[-1,6],[0,7],[-3,7],[-3,14],[-1,10],[-2,20],[-3,69],[0,57],[2,13],[2,29],[5,7],[2,16],[0,-1],[2,2],[2,2],[0,20],[0,40],[-2,32],[4,-23],[1,-10],[0,-26],[0,-14],[2,-2],[4,3],[0,6],[1,5],[1,7],[0,1],[1,-4],[3,77],[5,51],[0,18],[0,29],[1,10],[0,12],[-1,14],[-1,-3],[-1,-12],[-1,-15],[-1,6],[-2,-9],[-1,-27],[-1,-4],[0,-6],[-3,-51],[-1,-9],[0,-4],[-1,3],[-2,-1],[-1,-1],[0,12],[-1,26],[-1,21],[-2,13],[-2,-3],[-2,2],[0,20],[-1,13],[-2,10],[-1,-10],[-1,-17],[-1,-2],[0,-6],[0,-7],[2,-4],[1,-6],[2,-9],[1,-7],[0,-13],[-1,-11],[-1,0],[-1,-1],[-1,-6],[-1,-11],[-1,-14],[-1,-5],[-1,4],[-1,31],[-2,7],[0,6],[1,8],[2,-6],[2,0],[0,15],[-1,5],[-4,8],[-3,8],[-3,27],[-2,19],[0,12],[0,19],[-1,26],[-1,18],[0,16],[-1,14],[-1,3],[-1,18],[-1,17],[1,4],[1,2],[0,18],[-1,20],[-1,15],[0,15],[0,7],[1,15],[-1,17],[-1,14],[1,15],[0,15],[1,20],[1,9],[1,-1],[1,-12],[1,7],[-1,19],[-1,25],[0,25],[-1,21],[0,21],[0,23],[0,22],[1,10],[1,11],[1,1],[0,-4],[1,-13],[1,-18],[2,32],[2,17],[1,38],[1,14],[-1,25],[0,23],[1,17],[4,-4],[3,39],[2,21],[2,-3],[2,-4],[2,-10],[2,-2],[2,3],[3,8],[2,13],[1,7],[1,4],[3,-2],[2,1],[2,-8],[0,-22],[0,-16],[2,3],[0,17],[0,20],[1,6],[1,8],[0,18],[1,13],[-1,9],[-1,4],[-4,-1],[-4,-7],[-3,-11],[-4,-13],[-2,-5],[-1,-2],[-1,5],[-2,0],[-2,-4],[-3,-3],[-2,-6],[-2,-6],[-2,-10],[-2,-6],[-1,7],[-1,1],[-4,-28],[-3,-14],[-1,-2],[-2,-4],[-1,-7],[-1,-14],[-2,3],[-1,-22],[-2,-11],[-2,-7],[-3,-7],[-2,-6],[-4,9],[-3,18],[-3,22],[-2,12],[-1,6],[-1,4],[-3,81],[-1,12],[-11,139],[-1,41],[1,5],[3,6],[4,1],[2,2],[-1,7],[-5,5],[-3,4],[-2,2],[0,31],[0,65],[1,8],[2,14],[1,0],[2,24],[0,15],[0,6],[0,9],[0,11],[0,16],[-1,2],[-1,6],[3,4],[0,70],[-1,89],[1,9],[1,8],[3,-43],[2,4],[0,16],[2,-1],[4,-5],[2,1],[1,-6],[2,1],[0,3],[2,10],[1,8],[0,32],[-2,22],[0,25],[1,35],[2,-6],[-1,-46],[2,-43],[6,-92],[1,-18],[4,-47],[2,-16],[2,-10],[1,-4],[1,3],[3,-7],[3,-15],[1,-11],[1,-8],[2,11],[1,8],[0,12],[24,-121],[24,-164],[2,4],[20,-93],[10,-79],[4,-31],[0,-18],[2,-34],[3,-30],[4,-66],[2,-28],[1,-13],[2,-31],[2,-26],[1,-18],[3,-13],[1,-8],[2,-22],[2,-19],[2,-14],[1,-12],[1,-4],[3,0],[4,25],[3,-4],[2,3],[3,-1],[2,-15],[1,-20],[1,-14],[2,-2],[2,-9],[3,-18],[6,4],[6,-6],[3,-20],[10,3],[4,14],[6,0],[5,3],[-2,27],[-3,21],[-7,0],[-5,-27],[-13,44],[-5,-10],[-8,30],[-2,8],[-3,23],[-5,18],[3,24],[2,26],[0,20],[0,14],[0,10],[-1,2],[-1,-17],[-1,-24],[-3,-26],[-3,-14],[-7,-26],[-1,23],[-3,31],[-2,6],[-6,54],[-5,63],[-2,46],[-2,40],[-3,35],[-3,47],[-2,28],[0,6],[-2,12],[-1,15],[-1,24],[3,21],[0,34],[1,38],[0,30],[0,17],[-1,5],[-1,0],[-2,-30],[0,-25],[0,-18],[-1,-16],[-1,-13],[-2,-2],[-4,21],[-3,18],[-6,50],[-2,34],[-2,34],[-5,33],[-3,26],[-3,17],[-3,0],[-2,8],[-2,-2],[-2,-4],[-2,16],[-3,35],[-3,26],[-2,16],[-3,11],[-5,51],[-2,34],[-3,26],[0,27],[0,21],[-2,8],[-1,15],[-2,20],[-3,4],[-4,19],[-6,8],[-4,25],[-4,30],[-2,24],[-2,23],[-2,22],[-2,10],[-3,8],[-2,9],[0,2],[-9,8],[-3,24],[0,13],[5,7],[2,4],[1,13],[1,24],[0,27],[0,32],[0,26],[-1,9],[-1,18],[-1,20],[-1,21],[-1,22],[-1,30],[0,36],[0,17],[1,22],[1,40],[0,42],[0,21],[1,42],[0,34],[0,27],[-1,20]],[[12709,33202],[3,1],[1,0],[0,-14],[2,-20],[1,-4],[1,-1],[2,-1],[1,9],[2,14],[2,5],[2,0],[2,-4],[3,-2],[2,7],[3,5],[2,1],[1,-7],[2,-10],[1,-9],[2,-3],[2,1],[2,-1],[1,-7],[1,-12],[1,-15],[0,-15],[1,-12],[3,-6],[1,-9],[1,-9],[3,-13],[4,-21],[5,-21],[2,-9],[2,5],[1,17],[0,19],[1,18],[0,18],[1,3],[2,-6],[2,-14],[2,-9],[2,-12],[2,-20],[3,-21],[2,-3],[2,5],[2,4],[3,4],[3,2],[2,-6],[1,-7],[3,-18],[3,-23],[1,-13],[3,-13],[2,-18],[2,12],[2,16],[0,13],[-5,18],[-2,11],[-1,6],[0,17],[-1,13],[-2,24],[-1,29],[0,16],[-1,13],[-1,-9],[0,-9],[-1,-13],[-1,-15],[-1,3],[-1,8],[-2,2],[-1,-4],[-1,-2],[-2,-4],[-4,-14],[-1,13],[-2,16],[-2,23],[-2,20],[-2,16],[-3,11],[-2,3],[-1,-3],[-2,-10],[-1,-11],[-2,-26],[-2,-32],[-2,2],[-1,3],[-1,8],[-1,7],[-1,13],[-2,10],[-3,21],[-2,22],[-2,19],[-2,15],[-3,19],[-1,-3],[-2,-2],[-2,-1],[-1,5],[0,10],[-1,16],[-3,3],[-2,1],[-3,3],[-3,-8],[-4,-15],[-2,-2],[-4,0],[-3,6],[-1,16],[-1,14],[-2,8]],[[12809,34389],[28,-756],[56,-797],[33,-712],[25,-393],[30,-596],[52,-727],[0,-5]],[[12163,34380],[0,-9],[-1,1],[-1,12],[1,11],[1,-4],[0,-11]],[[12485,34273],[-1,-4],[2,-19],[0,-11],[1,-16],[1,-8],[0,-11],[1,-9],[1,-14],[1,-1],[1,-4],[0,-12],[1,-9],[1,-10],[1,-4],[1,6],[-1,18],[-1,19],[0,13],[-1,6],[-2,10],[0,14],[0,9],[-1,8],[0,4],[-1,6],[-1,7],[-1,18]],[[12529,34422],[0,-11],[1,-14],[-1,-14],[0,-14],[-1,-10],[0,-18],[1,-8],[1,-1],[1,-12],[0,-17],[1,-15],[0,-20],[-2,-16],[-2,-6],[-2,-2],[-2,5],[-2,2],[-1,-7],[-2,-1],[-3,5],[-1,-1],[-1,-5],[2,-8],[1,-9],[2,-11],[2,-9],[1,-12],[1,-15],[1,-13],[1,0],[0,-15],[0,-15],[2,-16],[1,-18],[-1,-17],[-1,-24],[0,-16],[1,-30],[2,-31],[2,-21],[2,-7],[2,-8],[2,-15],[0,-20],[1,-19],[2,-29],[2,-17],[0,-10],[2,-30],[3,-30],[1,-19],[1,-20],[2,-14],[1,-21],[1,-19],[0,-23],[1,-20],[0,-28],[-2,-13],[-2,-25],[0,-23],[1,-20],[2,-28],[3,-29],[2,-12],[2,-12],[-1,-13],[1,-16],[2,-8],[3,-32],[1,-25],[2,-22],[1,-22],[1,-8],[1,1],[1,-16],[2,-6],[0,-13],[0,-14],[1,-19],[2,-18],[1,-11],[2,-9],[1,-14],[-1,-1],[-2,4],[1,-33],[1,-7],[1,-12],[0,-13],[0,-7],[-2,-3],[-1,-10],[3,-65],[3,-38],[1,-23],[2,-7],[-1,-20],[-1,-17],[1,-10],[2,-14],[4,-36],[3,-30],[2,-18],[1,-36],[1,-35],[1,-24],[2,-16],[2,-20],[1,-19],[0,-24],[0,-23],[0,-15],[-1,-16],[-1,-23],[0,-32],[1,-29],[0,-23],[1,-24],[1,-19],[0,-22],[3,-22],[-1,-20],[0,-17],[-1,-14],[1,-13],[2,-17],[1,-13],[1,-15],[-1,-19],[-1,-7],[-1,-10],[-2,-34],[0,-24],[0,-16],[1,-15],[-1,-19],[0,-13],[0,-14],[1,-11],[0,-25],[-1,-13],[2,-22],[1,-19],[1,-19],[4,-75],[4,-43],[1,-8],[1,-18],[3,-32],[1,-15],[1,-2],[1,-1],[1,-5],[1,-20],[1,-30],[2,-70],[0,-35],[0,-28],[0,-36],[0,-31],[0,-23],[-1,-17],[0,-15],[-2,-19],[-2,11],[-2,19],[-1,7],[-1,4],[-2,61],[-2,32],[-1,28],[-1,20],[0,16],[1,22],[0,20],[0,16],[-2,18],[-1,23],[-5,57],[-3,45],[-2,25],[-1,14],[-1,33],[-6,31],[-1,33],[-1,16],[-1,12],[-3,16],[-1,9],[-1,11],[-2,-3],[-1,12],[1,21],[-1,33],[-1,7],[0,27],[-1,19],[-1,12],[-2,7],[-1,9],[0,12],[0,11],[0,12],[0,7],[-1,9],[0,13],[0,46],[0,36],[-1,22],[-2,13],[-1,22],[-1,13],[-1,12],[0,28],[1,39],[1,29],[0,22],[-1,17],[-1,8],[-1,19],[-2,16],[1,7],[0,27],[0,31],[-1,26],[-2,13],[-3,11],[-1,13],[-1,14],[-2,4],[-1,15],[-4,34],[-2,17],[-2,15],[-1,22],[-1,19],[-1,15],[0,11],[1,-1],[1,-12],[0,-12],[1,-22],[1,-5],[0,18],[-1,21],[-1,25],[-1,17],[-3,13],[-1,-7],[-1,12],[0,11],[0,8],[0,14],[-1,34],[0,21],[-1,17],[-1,29],[-1,22],[0,15],[0,18],[0,18],[-1,27],[-1,8],[0,21],[1,26],[-1,19],[-1,22],[-2,29],[-1,27],[-1,30],[2,0],[0,-8],[2,12],[-1,11],[-2,2],[-1,3],[-1,16],[-2,19],[-3,29],[-2,43],[-1,34],[-1,42],[-4,35],[-1,19],[-1,16],[-3,39],[-2,33],[-2,28],[-2,17],[-1,27],[0,11],[1,-6],[1,-19],[1,-18],[2,-15],[2,-20],[1,-20],[2,-10],[2,-19],[2,-23],[2,-22],[1,-10],[1,-9],[1,-18],[1,-5],[1,-13],[0,-14],[1,-11],[2,-14],[0,-15],[0,-16],[1,2],[0,16],[1,-4],[0,22],[1,6],[0,12],[-1,12],[-2,8],[-1,12],[-1,20],[-1,16],[-1,13],[-1,11],[-2,10],[-2,17],[0,19],[1,-7],[1,-15],[1,-4],[0,15],[-1,21],[-2,15],[-3,22],[-1,27],[-2,28],[-2,14],[0,10],[-1,9],[-2,18],[-2,20],[-2,46],[1,12],[-2,21],[-2,22],[-1,12],[0,-14],[1,-12],[-1,-3],[-1,-7],[-1,-6],[-2,12],[1,10],[-1,13],[0,9],[-2,6],[-1,11],[-2,18],[-2,22],[-2,24],[0,14],[-1,11],[-1,4],[0,-12],[0,-8],[-1,-17],[1,-47],[1,-26],[2,-30],[2,-27],[3,-28],[2,-27],[1,-22],[1,-14],[0,-16],[0,-16],[-1,-3],[-1,-2],[0,-10],[1,-8],[1,-2],[1,-11],[1,-16],[1,-18],[1,-12],[-1,-10],[-2,14],[-1,11],[-1,11],[-1,9],[-2,6],[-3,8],[-2,8],[-1,8],[-1,8],[-2,15],[-1,7],[-1,5],[-2,6],[0,-5],[-1,-4],[-1,-5],[1,-8],[1,-5],[1,-5],[-1,-8],[1,-3],[1,-3],[1,6],[2,-6],[1,-22],[2,-21],[1,-14],[0,-13],[3,-15],[2,-23],[2,-21],[2,-15],[1,-18],[6,-62],[1,-15],[1,-10],[1,-19],[0,-20],[0,-22],[1,-22],[-4,-2],[-3,17],[-1,12],[0,9],[-3,20],[-4,14],[-4,12],[-5,35],[-2,18],[-5,-12],[-1,-11],[2,-26],[3,-22],[2,-26],[0,-17],[0,-10],[1,-16],[2,-14],[-1,-2],[0,-18],[1,-29],[2,-53],[2,-31],[0,-13],[1,1],[0,-12],[2,-21],[1,-26],[2,-37],[0,-21],[-1,-24],[-1,-2],[-1,-15],[0,-7],[2,6],[0,-23],[0,-25],[-1,-30],[-2,-52],[-1,-58],[-3,-32],[-1,-22],[0,-22],[0,-16],[1,-27],[0,-25],[-1,-28],[2,-12],[0,-15],[1,-9],[1,2],[0,13],[1,7],[1,12],[1,26],[0,24],[0,27],[0,17],[1,25],[2,21],[4,29],[2,24],[1,24],[1,-2],[1,-7],[1,-18],[3,-38],[1,-43],[3,-60],[2,-50],[5,-98],[2,-9],[-1,-9],[0,-8],[3,-29],[2,-56],[5,-63],[-1,-25],[1,-34],[1,-16],[2,-45],[2,-38],[1,-21],[3,-57],[5,-65],[7,-66],[3,-30],[-2,-5],[1,-16],[2,-17],[2,-26],[1,-37],[-2,-3],[-1,-10],[-2,1],[-3,1],[-1,-3],[-2,-11],[-1,-8],[0,-27],[-2,-15],[0,-9],[1,-9],[1,-15],[-1,-16],[-1,-20],[1,0],[2,-1],[1,13],[1,-2],[1,15],[1,12],[2,8],[1,-5],[2,-2],[1,10],[1,7],[2,-2],[1,5],[3,-4],[2,1],[2,-5],[2,-15],[1,-10],[2,-9],[1,-11],[0,-11],[1,-14],[-2,-3],[-1,-4],[-1,12],[-1,-14],[-1,-12],[1,-5],[1,-3],[1,-10],[2,0],[1,10],[1,8],[1,6],[2,-5],[4,-40],[3,-32],[1,-19],[1,-14],[1,-15],[1,-23],[-1,-39],[-1,-65],[0,-43],[-1,-29],[0,-17],[0,-17],[0,-24],[1,-40],[2,-45],[2,-36],[1,-35],[3,-30],[3,-34],[3,-42],[1,-19],[3,-64],[1,-38],[1,-28],[1,-21],[1,-28],[1,-25],[-2,6],[-2,13],[-1,14],[0,10],[-1,7],[-2,5],[1,-12],[1,-13],[0,-14],[-1,-2],[-1,10],[-1,19],[0,20],[-1,32],[0,17],[-1,22],[-2,21],[-1,15],[-2,36],[-1,26],[-2,28],[-1,22],[-1,21],[-1,15],[0,16],[-1,12],[-1,7],[-1,-19],[-1,-9],[-1,-7],[0,-20],[0,-15],[1,-4],[1,-5],[1,11],[0,6],[1,4],[2,-53],[1,-27],[1,-25],[1,-16],[1,-10],[1,-16],[0,-20],[-1,1],[0,13],[-1,9],[-1,3],[-1,-15],[1,-18],[1,-16],[1,-10],[0,-10],[-2,4],[-1,3],[-1,-4],[1,-15],[0,-7],[1,-1],[1,-13],[-1,-18],[-1,-6],[-1,11],[-1,11],[-1,11],[1,2],[0,11],[-1,16],[0,15],[-1,-9],[-1,-9],[-2,-2],[-1,-3],[-1,-15],[-1,-9],[-3,19],[-2,24],[-2,23],[-3,30],[-1,2],[-1,-9],[-1,-2],[-2,8],[-1,10],[-2,7],[-1,-2],[-1,-4],[-1,-1],[-1,-8],[0,-14],[-2,12],[-1,5],[-2,11],[-1,16],[-1,19],[-1,8],[-1,13],[0,12],[-1,11],[0,1],[-1,-4],[-1,-11],[-1,-19],[-1,3],[0,-4],[-1,2],[-1,5],[0,-15],[-2,3],[1,-9],[1,-6],[2,-15],[2,-34],[1,-9],[2,-5],[1,-5],[0,-12],[3,-6],[1,-15],[-1,-17],[-2,-18],[-4,-7],[-3,-9],[-4,-1],[0,-13],[-1,-11],[1,-18],[1,-1],[1,1],[1,3],[2,4],[2,-4],[1,1],[1,1],[1,-9],[3,1],[1,-11],[2,3],[4,-2],[1,3],[3,11],[1,-7],[3,-7],[2,11],[4,-24],[2,-16],[1,-11],[1,-10],[1,-13],[-1,-20],[0,-25],[-1,-14],[0,-16],[-1,-17],[-1,-9],[-2,-16],[-2,-16],[0,-17],[0,-23],[0,-9],[3,-1],[0,-5],[1,5],[1,8],[1,-2],[1,8],[2,13],[0,14],[1,16],[1,7],[1,-2],[1,10],[0,10],[1,10],[1,0],[1,-2],[1,4],[1,-5],[1,-18],[0,-14],[-1,-9],[0,-22],[1,-16],[1,-12],[2,-1],[1,4],[2,3],[0,5],[-1,20],[-1,18],[0,15],[-1,11],[0,10],[0,15],[-1,17],[1,23],[0,9],[1,7],[0,3],[2,-5],[0,-7],[0,-37],[1,-26],[2,-37],[1,-23],[1,-37],[1,-43],[0,-35],[1,-17],[2,-20],[1,-16],[1,-27],[-1,-15],[0,-15],[-1,-7],[2,-8],[0,2],[0,-28],[-1,-19],[-1,-9],[-1,-22],[-2,-17],[-2,-5],[-2,-5],[-1,-9],[-2,-19],[-2,-8],[-1,-9],[-1,-22],[-2,-3],[-1,-1],[-2,-7],[-1,-18],[0,-15],[0,-21],[-1,-18],[-2,-36],[-1,-18],[-2,-7],[-1,-4],[-1,-2],[-2,0],[-1,10],[-1,9],[-1,9],[-1,14],[0,9],[2,3],[2,11],[-2,5],[-1,-3],[-1,1],[-1,7],[-2,-3],[-1,20],[-1,13],[-2,8],[-1,3],[-1,12],[-1,-2],[1,-14],[-3,7],[-2,7],[-2,10],[-1,15],[0,17],[0,17],[-2,15],[-1,12],[-1,17],[-1,39],[-1,20],[0,15],[1,1],[-1,17],[-1,17],[0,12],[-1,-12],[-1,6],[-1,7],[-1,-7],[2,-24],[0,-18],[1,-19],[0,-21],[0,-22],[0,-31],[-1,-12],[-1,-8],[1,-14],[-1,-14],[1,0],[0,-14],[-1,-10],[1,-7],[-1,-13],[-1,-3],[-1,-4],[0,-3],[0,-11],[-1,-3],[-1,13],[-1,5],[0,24],[0,24],[1,15],[1,13],[0,13],[1,17],[-1,1],[-1,-13],[-1,-12],[-1,-7],[-1,10],[0,7],[0,19],[1,0],[1,5],[0,8],[-2,6],[-2,28],[-2,50],[-1,22],[-1,8],[-2,10],[0,-5],[0,-10],[1,-10],[-1,-1],[-2,4],[0,13],[-1,13],[1,0],[1,9],[-1,25],[-2,3],[-1,10],[-1,15],[-1,19],[-1,-8],[-1,-3],[-1,16],[-1,7],[-1,-7],[-1,10],[0,7],[-1,-23],[-1,-7],[0,-25],[1,-19],[1,-13],[2,-16],[0,-15],[1,-2],[1,-15],[0,-17],[2,-10],[1,-5],[2,-8],[1,-18],[0,-24],[0,-15],[-1,-17],[2,12],[-1,-17],[0,-15],[0,-9],[-2,0],[1,10],[-1,4],[-1,-9],[-1,-6],[-1,0],[-1,-1],[-1,1],[0,-10],[1,-6],[0,-17],[1,-3],[1,-2],[0,4],[1,2],[0,-17],[3,2],[1,-3],[2,-1],[1,-10],[1,-27],[-1,-17],[0,-19],[-2,-13],[-2,-18],[-1,-9],[-1,-5],[-1,-12],[3,-2],[2,-6],[2,2],[1,-9],[2,14],[1,4],[0,-16],[1,-2],[1,-12],[1,-10],[1,-7],[1,-8],[0,-19],[1,-18],[1,-6],[0,-11],[2,-10],[1,4],[-1,-32],[0,-30],[-1,-24],[-1,-21],[0,-16],[-1,-20],[0,-13],[-2,-19],[-1,-22],[0,24],[-1,28],[0,25],[0,31],[-2,-2],[-2,-1],[-1,6],[-1,2],[-1,-5],[-1,10],[-1,12],[1,-19],[1,-23],[-1,-31],[0,-24],[0,-22],[1,-64],[-1,-10],[-1,-31],[0,-26],[0,-20],[0,-23],[-4,-45],[-3,-35],[-4,-39],[-3,-24],[-2,-16],[-2,-16],[-2,-12],[-1,-5],[-1,15],[0,24],[0,28],[-1,-6],[-2,-2],[-1,3],[-2,2],[0,16],[-1,-4],[-1,-15],[-1,-11],[-1,-11],[-1,-4],[-1,-2],[-1,1],[0,41],[0,21],[1,10],[0,21],[0,30],[0,32],[0,44],[-1,48],[0,40],[0,23],[0,20],[-1,18],[-1,14],[-1,19],[0,14],[-1,-16],[-1,-12],[0,-44],[0,-33],[0,-22],[0,-17],[0,-14],[0,-13],[1,-15],[-1,-19],[-2,-9],[0,-7],[0,-12],[2,-3],[2,-6],[0,-18],[-1,-20],[-1,-14],[0,-15],[1,-13],[0,-23],[0,-29],[0,-31],[-1,-23],[0,-17],[1,-18],[0,-20],[1,-11],[1,-7],[1,7],[1,-14],[0,-13],[1,-5],[0,-21],[-2,-29],[-2,-17],[-3,-2],[-1,9],[-3,20],[-2,19],[-1,23],[-3,17],[-1,13],[-1,13],[-1,11],[-1,-26],[2,-25],[2,-14],[1,2],[1,-21],[0,-14],[0,-23],[1,-29],[0,-15],[0,-21],[-1,-5],[-2,2],[-1,9],[-2,-4],[-2,9],[-2,14],[-2,11],[-2,7],[-2,2],[-1,-16],[0,-19],[1,-16],[1,-17],[1,-19],[-1,-5],[-1,11],[-1,17],[-1,-9],[-1,3],[-2,-13],[-1,-7],[1,-23],[2,-20],[3,-23],[3,-8],[1,-3],[1,-16],[-1,-19],[-4,-26],[-6,-40],[-3,-23],[-2,-24],[-3,-20],[-5,-15],[-4,-27],[-3,-19],[-1,-13],[0,-24],[0,-32],[-1,-14],[0,8],[-2,7],[-1,1],[-1,-1],[1,-13],[0,-17],[0,-12],[-2,-2],[-1,4],[-1,0],[-1,19],[-1,17],[-1,7],[-1,-7],[-1,-1],[-1,3],[0,17],[-2,0],[0,-2],[0,-14],[-1,-13],[1,-9],[1,-13],[0,-16],[-1,-8],[-1,-1],[0,17],[-1,29],[1,27],[0,20],[0,16],[2,-7],[1,9],[-2,16],[1,15],[0,17],[-1,-2],[-1,-18],[0,-16],[-1,-14],[-1,1],[-1,-8],[1,-6],[-1,-14],[0,-17],[-2,-30],[0,-18],[-1,-33],[-1,16],[1,26],[1,30],[-1,19],[-2,-4],[-1,-2],[-1,-3],[-2,14],[-2,-22],[-1,-11],[-1,-15],[-1,-26],[-1,-23],[-1,-17],[0,-7],[-1,25],[1,6],[0,23],[-1,30],[1,36],[2,24],[-1,36],[-1,32],[-1,39],[0,19],[-1,28],[-2,36],[0,20],[1,23],[-1,36],[-1,22],[-1,15],[0,20],[1,17],[0,16],[0,-2],[1,17],[1,5],[1,6],[1,6],[-1,13],[0,9],[-2,11],[-1,7],[-1,10],[1,16],[1,17],[1,17],[2,12],[1,6],[1,2],[1,6],[1,10],[0,2],[1,12],[2,-6],[1,0],[2,12],[-2,2],[-1,5],[-1,4],[-1,-4],[-1,-9],[1,30],[1,40],[-4,-2],[-2,-11],[-2,8],[-2,9],[-1,12],[-1,6],[0,62],[-1,43],[-1,47],[-1,48],[0,46],[1,23],[0,18],[1,26],[1,10],[1,19],[3,-33],[2,-27],[4,-10],[2,-22],[1,-17],[2,-2],[2,-13],[1,2],[2,-8],[1,14],[1,12],[1,11],[1,-1],[1,-9],[2,7],[1,-3],[1,-7],[1,12],[1,3],[-1,10],[0,15],[-1,18],[-1,-18],[-1,7],[-1,18],[-2,12],[-2,7],[-2,10],[-3,4],[-2,0],[-2,24],[-2,26],[-2,15],[-2,24],[0,29],[-1,23],[3,2],[0,19],[3,5],[2,21],[2,34],[2,28],[1,29],[1,21],[2,8],[1,-3],[1,5],[1,15],[3,10],[3,7],[2,7],[2,6],[1,5],[2,-9],[1,-9],[3,9],[0,13],[1,-3],[1,-5],[1,-11],[2,1],[0,-13],[2,-8],[1,-2],[1,-7],[2,-14],[1,8],[1,9],[-1,11],[-1,-1],[-1,15],[-2,3],[-1,6],[-1,10],[-2,9],[-1,8],[0,13],[-1,7],[-1,-8],[-1,16],[-1,12],[-2,-3],[-1,-4],[-1,-6],[-1,-2],[-1,16],[0,26],[1,3],[1,5],[2,9],[1,15],[-1,3],[0,14],[-2,-5],[-4,-13],[-2,-14],[-1,1],[-2,3],[-2,-5],[-3,-4],[-2,-3],[-1,5],[-1,14],[-2,6],[0,13],[1,28],[-1,27],[2,86],[1,28],[-1,34],[-1,13],[-1,25],[0,18],[-1,21],[4,4],[1,14],[2,18],[1,-14],[2,4],[2,0],[2,-1],[2,-50],[-2,-6],[0,-20],[2,-14],[2,-9],[3,-17],[1,-12],[1,-16],[3,-17],[2,-12],[1,1],[-1,15],[3,-5],[1,-6],[2,-10],[1,8],[1,-6],[0,6],[2,-1],[1,-3],[0,-15],[1,0],[2,8],[1,5],[0,1],[0,-10],[1,-5],[1,4],[1,6],[-2,13],[3,11],[1,-23],[1,-20],[1,-10],[0,-14],[1,-14],[1,-10],[1,-21],[2,-13],[2,-4],[1,-13],[1,-19],[2,-11],[2,1],[0,-14],[1,10],[1,-2],[1,2],[1,1],[2,-7],[1,3],[1,1],[1,-3],[1,5],[0,16],[-1,10],[-1,21],[-2,-3],[-1,3],[-1,13],[-2,8],[-2,15],[-2,9],[-2,8],[-1,21],[-2,12],[-1,18],[0,19],[-1,0],[1,15],[-2,3],[-1,6],[6,9],[3,16],[4,12],[1,4],[3,11],[2,9],[1,19],[-2,8],[-2,1],[-1,2],[-1,7],[-1,-8],[-2,-15],[-1,2],[-1,5],[-2,-11],[-4,-23],[-2,-15],[-1,-9],[-1,0],[-3,-13],[-2,4],[-2,19],[-6,-7],[-1,-3],[-1,3],[-1,8],[-1,13],[0,12],[-1,-7],[-1,-7],[0,-13],[0,2],[-1,10],[1,11],[0,16],[-1,11],[-2,7],[-1,12],[-2,17],[-1,37],[-2,35],[-1,25],[-3,39],[-1,8],[-6,92],[-3,33],[1,12],[0,28],[0,18],[-2,15],[-1,11],[-1,2],[-2,6],[-1,-6],[-2,0],[-1,13],[0,16],[1,13],[-1,13],[-1,15],[-1,14],[0,28],[-1,16],[0,16],[-1,5],[0,8],[-2,8],[-1,2],[0,7],[-1,9],[0,12],[1,2],[1,-3],[1,-8],[0,-11],[1,-6],[0,-3],[1,-5],[1,-7],[1,-7],[0,-6],[2,-18],[1,-4],[2,-20],[1,-10],[1,-7],[3,-20],[3,-35],[7,-102],[2,17],[0,22],[0,8],[-1,41],[0,15],[-1,1],[-1,-2],[-1,12],[0,9],[-1,15],[-1,22],[-1,16],[-1,7],[0,16],[0,20],[2,37],[1,4],[1,1],[2,-4],[0,-18],[0,-14],[0,-11],[1,-3],[1,13],[2,20],[-1,29],[-1,16],[-1,7],[-1,7],[-1,-2],[-1,3],[0,-1],[-1,-1],[-1,-3],[0,6],[-1,4],[0,15],[5,38],[10,49],[2,-2],[-1,-21],[-4,-14],[-3,-20],[-3,-6],[0,-17],[3,-8],[4,-14],[0,6],[1,30],[1,9],[4,46],[4,-5],[2,-63],[0,-5],[1,2],[1,26],[5,20],[3,25],[5,15],[4,8],[2,18],[1,32],[-1,6],[-3,-11],[-1,1],[-2,2],[0,29],[0,9],[-2,5],[-2,-6],[0,-24],[-2,-5],[-4,9],[-2,-19],[-2,-14],[-3,1],[-2,-16],[-8,-1],[-8,-45],[-7,-55],[-1,-5],[0,-4],[-1,4],[-1,0],[-3,-31],[-1,-26],[-3,-9],[-1,-9],[-1,-7],[-1,-9],[0,-2],[-1,6],[-1,8],[0,14],[-1,9],[0,10],[-1,17],[0,15],[-1,11],[0,10],[0,15],[1,8],[0,14],[0,13],[-1,9],[-1,12],[0,18],[0,15],[0,14],[-1,16],[-1,20],[0,17],[0,12],[-1,10],[-1,18],[-1,18],[-1,7],[0,8],[-3,37],[-1,15],[-2,19],[-1,28],[-4,47],[-1,15],[0,15],[-2,14],[1,13],[0,26],[-1,10],[-1,26],[0,25],[-1,20],[0,30],[-1,18],[0,23],[-1,20],[0,21],[0,26],[-1,20],[-1,28],[0,14],[-1,9],[0,12],[0,8],[2,2],[-1,22],[-1,16],[0,15],[-1,27],[-3,19],[-1,9],[-1,20],[-1,23],[-2,30],[1,32],[0,16],[0,28],[0,25],[-1,15],[1,19],[1,14],[-1,14],[0,13],[1,12],[1,19],[2,5],[-1,8],[0,11],[1,18],[1,20],[1,22],[0,21],[-1,19],[-2,19],[0,20],[1,23],[1,29],[0,13],[0,14],[1,22],[0,35],[0,7],[1,18],[-1,19],[-1,14],[-2,17],[-1,31],[0,22],[1,10],[0,38],[-2,44],[0,21],[0,23],[-1,21],[-2,27],[0,20],[0,17],[0,5],[-2,-1],[-1,17],[2,7],[-1,16],[0,16],[-1,18],[0,22],[-1,21],[0,20],[0,32],[-2,31],[0,20],[1,2],[1,-4],[1,-1],[1,11],[-1,18],[-1,15],[-1,3],[-1,11],[-1,22],[0,16],[-1,7],[-1,20],[0,33],[0,20],[1,-4],[1,-10],[1,6],[-1,14],[1,10],[0,13],[-1,10],[0,23],[-1,34],[-2,33],[0,11],[-1,10],[-2,19],[-1,19],[-1,23],[-1,29],[-1,10],[-2,23],[0,15],[1,4],[0,20],[-1,13],[0,14],[-1,10],[0,25],[0,21],[0,17],[1,4],[1,5],[1,5],[1,-8],[0,16],[-1,21],[0,18],[0,13],[1,3],[0,-12],[1,-6],[1,-1],[1,11],[-1,21],[0,18],[1,15],[1,7],[1,-3],[0,-23],[1,-6],[1,20],[0,32],[1,21],[1,21]],[[11907,34513],[1,-2],[2,1],[4,-95],[-1,-11],[0,-3],[-1,-1],[-1,1],[0,12],[0,13],[-1,5],[-1,1],[0,7],[-1,11],[0,13],[0,15],[-1,9],[-1,19],[1,6],[0,-1]],[[12161,34549],[-1,-2],[-1,17],[1,14],[1,-13],[0,-16]],[[11916,34601],[-1,-4],[-1,7],[0,15],[1,6],[1,0],[1,5],[1,-3],[-1,-9],[0,-9],[-1,-8]],[[11913,34623],[-1,-11],[-1,1],[0,3],[-1,-10],[0,-16],[-1,-4],[-1,5],[0,15],[0,9],[0,12],[2,4],[1,4],[0,11],[2,-4],[0,-19]],[[11831,34691],[0,-25],[-2,2],[0,21],[2,2]],[[12012,34651],[-1,-2],[-2,15],[-2,12],[-1,14],[-2,9],[1,10],[1,2],[2,3],[2,5],[1,-3],[0,-16],[0,-11],[0,-10],[1,-7],[1,-8],[-1,-13]],[[11921,34766],[-1,-4],[0,3],[-2,4],[-1,7],[-1,4],[0,11],[1,12],[0,10],[-1,12],[1,-2],[1,-8],[2,-10],[1,-11],[1,-10],[0,-12],[-1,-6]],[[11924,34814],[-1,-5],[-1,2],[-2,12],[-2,12],[0,8],[-1,12],[0,13],[1,8],[1,-11],[1,-7],[1,-8],[1,-14],[1,-6],[1,-16]],[[12376,34846],[-1,-5],[-1,12],[0,12],[0,18],[0,15],[-1,18],[1,1],[1,-9],[1,-8],[1,-13],[0,-15],[-1,-12],[0,-14]],[[11930,34958],[1,-6],[1,11],[2,8],[1,-3],[1,-4],[1,-11],[0,1],[2,1],[1,-5],[1,8],[2,3],[0,-23],[-2,-19],[-1,-9],[-1,-6],[-2,-2],[-1,-5],[1,-10],[2,-6],[1,-6],[0,-9],[1,-12],[0,-13],[-1,-13],[-2,-10],[-1,-9],[-1,-16],[-1,-13],[0,-9],[-1,-5],[-1,0],[-1,7],[-2,21],[-1,16],[-1,13],[-2,15],[0,-14],[-1,9],[0,17],[-1,13],[-1,5],[1,-23],[-1,-4],[-1,5],[0,13],[0,16],[-2,9],[0,14],[-1,26],[2,16],[1,4],[1,-1],[1,-14],[1,-3],[1,-1],[1,-1],[2,-15],[1,-7],[1,-6],[1,2],[-1,8],[0,16],[0,11],[-2,2],[-1,6],[-1,8],[-1,6],[0,13],[0,10],[1,-4],[1,-12],[1,-3],[1,-1]],[[11916,34911],[0,-18],[-1,3],[-1,-6],[-1,-4],[0,21],[-2,11],[-1,14],[-1,15],[0,19],[0,12],[2,-5],[2,-4],[2,-4],[1,-6],[0,-19],[0,-12],[0,-17]],[[12375,34936],[0,-1],[-1,4],[-1,15],[0,16],[1,8],[1,7],[1,-13],[0,-11],[0,-16],[-1,-9]],[[11820,34965],[-2,-14],[0,15],[0,24],[4,-1],[-1,-9],[-1,-15]],[[11806,34975],[-3,-1],[-1,12],[4,22],[0,-33]],[[12108,33862],[-2,-8],[-1,1],[1,-15],[1,-10],[0,-11],[1,-8],[1,-11],[1,-9],[1,-12],[-2,0],[-1,9],[-2,9],[-1,4],[-1,2],[-1,-1],[1,-14],[1,-11],[2,-13],[2,-10],[3,-9],[2,0],[1,1],[2,-3],[1,1],[1,4],[0,1],[2,4],[2,-5],[1,-7],[1,-17],[0,-15],[-1,-12],[-1,-3],[-1,-9],[1,-16],[0,-16],[-1,-13],[0,-37],[-2,-15],[-3,-11],[-3,-7],[-2,5],[-2,8],[-2,5],[-2,14],[-2,11],[-2,-4],[-2,26],[-1,7],[-1,5],[-1,4],[-1,6],[0,13],[0,12],[-1,4],[-1,-3],[-1,-2],[-2,-7],[0,-7],[0,-12],[0,-14],[-1,-3],[-1,5],[-2,-3],[-1,-5],[-1,1],[-1,-4],[-1,-13],[-1,-8],[-1,-4],[-1,-11],[-1,-8],[0,-12],[1,-7]],[[12080,33569],[0,-12],[-1,-3],[-1,6],[-1,12],[-1,11],[-1,0],[-3,-2],[-1,0],[-1,-1],[-1,-10],[2,-8],[2,5],[1,-1],[0,-16],[1,-2],[1,2],[1,4],[1,-16],[3,-6],[3,7],[4,9],[2,14],[2,7],[1,5],[3,-22],[3,-22],[2,-9],[2,-4],[1,1],[1,-14],[2,-3],[1,-5],[0,-14],[0,-15],[1,6],[1,3],[1,2],[1,1],[2,2],[1,0],[1,-22],[0,-25],[1,-25],[-1,-14],[-2,-14],[-2,-6],[0,-7],[0,-11],[1,-4],[2,2],[1,4],[1,13],[1,14],[0,13],[1,0],[2,6],[0,22],[0,36],[-1,28],[-1,41],[3,9],[4,13],[3,4],[3,9],[2,12],[2,17],[2,23],[0,23],[0,16],[1,6],[1,11],[1,14],[1,12],[0,5],[0,13],[0,23],[0,18],[0,20],[1,24],[-1,11],[0,20],[1,13],[1,-2],[1,-2],[1,1],[1,11],[0,19],[0,20],[0,14],[0,13],[1,15],[1,-22],[1,5],[1,14],[1,10],[2,0],[2,10],[0,14],[1,14],[2,2],[0,10],[0,14],[1,-6],[0,-25],[1,1],[1,5],[0,11],[1,6],[-1,7],[1,5],[1,2],[1,5],[0,13],[-1,-1],[-1,-1],[-1,1],[0,12],[-1,18],[2,9],[0,5],[0,-11],[1,-10],[1,-3],[1,0],[0,-19],[0,-15],[1,7],[0,7],[1,4],[0,4],[1,5],[0,11],[1,7],[1,10],[1,3],[1,0],[1,2],[-1,-15],[1,-2],[1,8],[0,6],[1,4],[1,-1],[1,2],[-1,10],[0,9],[0,4],[-1,3],[-1,3],[-1,2],[0,11],[1,12],[0,12],[-1,23],[2,9],[-1,12],[0,6],[-1,11],[-1,8],[-1,11],[0,8],[-1,11],[-1,11],[0,17],[-1,10],[3,15],[2,0],[2,2],[3,6],[2,10],[1,13],[0,14],[1,5],[1,2],[1,3],[1,1],[2,-3],[1,-5],[1,-8],[1,-14],[1,-13],[1,-11],[2,-9],[1,-3],[1,-5],[1,-6],[2,-5],[1,-13],[1,-12],[2,0],[1,-9],[1,-11]],[[12206,34226],[-1,-11],[0,-8],[-1,-12],[-1,-11],[1,-15],[1,-9],[1,-10],[1,3],[1,13],[1,-1],[1,3],[1,-2],[1,-11],[1,-14],[1,-9],[0,-6],[1,-17],[0,-13],[1,-9],[1,-10],[1,-4],[1,3],[-1,8],[2,6],[0,1],[1,4],[1,9],[1,8],[1,2],[1,-1],[2,0],[3,-3],[1,-6],[2,-7],[1,-5],[2,3],[1,5],[1,-2],[2,-9],[2,-8],[2,-8],[1,-2],[2,-5],[2,-3],[2,3],[1,14],[2,3],[1,0],[2,-7],[1,-4],[2,-3],[1,2],[1,2],[1,-1],[1,1],[1,2],[2,6],[1,1],[1,-14],[1,-6],[2,-6],[1,-7],[2,-6],[0,-5],[1,-11],[1,-23],[0,-11],[-1,-3],[-1,-9],[-2,7],[-2,-2],[-1,-1],[-1,8],[-1,4],[-1,-8],[1,-16],[-1,-7],[-2,0],[-1,-1],[-1,-10],[3,-4],[2,-2],[1,-10],[1,-7],[1,-6],[1,-2],[-1,12],[1,4],[0,8],[1,5],[1,0],[2,-5],[1,-10],[1,-9],[1,-4],[1,3],[0,6],[1,-4],[2,-1],[2,2],[1,-3],[1,-7],[1,-2],[1,-2],[1,4],[2,0],[1,-4],[1,-7],[1,-10],[1,1],[2,-5],[1,-3],[2,-4],[1,-7],[1,-2],[1,0],[1,-4],[1,0],[1,-9],[2,0],[1,-12],[0,-9],[2,-6],[0,-3],[1,-11],[0,-12],[1,-13],[1,-13],[1,-15],[1,-12],[0,-11],[1,-12],[0,-16],[0,-20],[0,-17],[1,-17],[0,-18],[2,-35],[2,-50],[1,-37],[0,-13],[-2,-6],[-2,-4],[-2,-2],[-1,-14],[1,-5],[0,-23],[0,-17],[0,-23],[0,-21],[1,-5],[1,-3],[2,-2],[0,-29],[0,-28],[0,-23],[-1,-15],[0,-17],[0,-19],[-1,-15],[0,-6],[-2,4],[-1,8],[-1,-32],[-1,-4],[-2,0],[-1,-19],[0,-24],[-2,-15],[-2,-13],[-1,-3],[-2,-8],[-3,-13],[-2,-32],[2,-26],[3,-37],[2,-28],[2,-20],[3,-21],[2,-8],[1,-16],[1,-14],[1,-6],[1,-8],[0,-25],[-1,2],[-1,9],[-1,17],[-1,16],[-3,7],[-2,16],[-3,18],[-3,45],[-2,25],[-3,25],[-2,21],[-3,21],[-2,24],[-1,1],[-2,-9],[-1,0],[-1,0],[1,13],[-3,12],[-2,13],[-4,26],[-2,14],[-3,5],[-4,18],[-8,48],[-2,12],[-1,-1],[0,18],[-2,6],[-1,11],[-1,11],[-1,3],[-2,8],[-1,8],[-2,3],[-1,12],[-3,18],[-3,18],[-3,9],[0,-12],[0,-14],[0,-9],[1,-9],[1,7],[1,-16],[-1,-6],[-2,-6],[2,-8],[1,-12],[1,0],[2,-10],[1,-4],[1,-9],[0,-14],[1,-14],[3,-17],[3,-14],[1,-12],[-3,9],[2,-24],[0,-27],[1,-37],[1,-9],[0,-8],[1,-5],[3,-27],[4,-32],[5,-18],[6,-8],[6,-11],[0,-16],[1,-11],[0,-14],[3,-20],[2,-26],[1,2],[1,8],[1,-16],[1,-20],[0,-15],[1,-8],[-1,-16],[0,-24],[1,-2],[1,0],[1,-1],[1,14],[0,9],[2,-19],[1,0],[4,-5],[1,-16],[0,-14],[-1,-4],[-3,-2],[-1,-8],[0,-16],[2,-4],[2,-8],[3,-2],[1,-2],[2,-13],[2,-19],[2,-10],[1,-9],[0,-14],[1,-20],[1,-20],[-1,-3],[-2,-6],[-2,3],[-3,-8],[-3,-9],[-1,-13],[-1,-14],[-1,-2],[-1,-8],[-2,-17],[-1,-18],[-2,-20],[-1,-6],[-1,-2],[-1,4],[-1,-1],[-1,-3],[-1,5],[-1,-1],[-1,-9],[-1,2],[0,7],[-2,8],[-1,-4],[-1,-21],[-1,-9],[-2,24],[-1,12],[-2,7],[-1,0],[-3,-10],[-2,-7],[-1,-12],[-2,4],[-2,11],[-1,-2],[-1,-14],[-1,-4],[-2,3],[-3,0],[-3,12],[-2,-1],[-3,-5],[-1,-9],[-1,-3],[-1,-2],[0,-2],[-1,-9],[-1,7],[-1,7],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,4],[0,8],[-1,9],[-2,8],[-1,2],[-4,23],[-8,65],[-1,0],[-2,7],[-2,15],[-2,-2],[-2,16],[-1,23],[-1,10],[-3,5],[-2,24],[-3,37],[-4,40],[-6,69],[-3,21],[-5,26],[-6,30],[-5,12],[-3,8],[-3,4],[-1,4],[-2,12],[-3,2],[-1,23],[-3,31],[-4,28],[-2,28],[-3,17],[-1,11],[-2,1],[-2,-4],[-4,4],[-5,12],[-5,31],[-4,20],[-6,52],[-4,14],[-3,15],[-3,10],[0,9],[-2,1],[-1,10],[-1,15],[-2,1],[-2,0],[-1,-5],[-1,20],[-3,19],[-2,-1],[-4,12],[-3,15],[-3,24],[-2,27],[-6,42],[-2,27],[-3,29],[-2,12],[-1,8],[-2,16],[-4,16],[-5,27],[-2,6],[-2,1],[-1,5],[-1,6],[0,-5],[-1,-3]],[[12049,33638],[-1,-1],[-1,0],[0,-8],[0,-5],[-5,-94],[-17,-435],[-9,-221],[-1,-34]],[[12015,32840],[-1,17],[-1,12],[-1,2],[-2,8],[-2,16],[-3,15],[-2,18],[-1,-5],[-1,6],[0,18],[-1,13],[-3,7],[-2,9],[-1,6],[-2,23],[-2,28],[-6,63],[-2,28],[0,16],[1,-3],[0,35],[-2,4],[-1,6],[-2,9],[-1,13],[0,11],[-1,16],[-2,12],[0,12],[-2,9],[-1,5],[-1,15],[-1,8],[-1,16],[-1,26],[-1,19],[-2,16],[-1,13],[-1,13],[-1,4],[-1,7],[-1,2],[-1,0],[-1,10],[1,12],[-1,4],[-1,-1],[-1,3],[0,6],[-1,12],[0,10],[0,43],[-2,29],[-1,1],[-2,9],[-2,15],[-1,12],[-1,7],[-3,21],[-3,28],[-1,24],[-1,30],[-1,16],[-3,26],[-3,30],[-1,16],[-1,46],[-1,-1],[-2,35],[-3,26],[-3,22],[-2,6],[-1,7],[-1,-6],[-2,14],[-2,30],[-3,22],[-2,12],[-2,24],[-3,49],[0,13],[0,31],[0,19],[-1,20],[0,17],[-1,15],[-1,10],[-1,13],[0,15],[-1,18],[1,13],[2,13],[1,2],[1,0],[1,-5],[1,16],[1,13],[2,17],[1,12],[2,1],[1,-6],[2,14],[1,1],[2,5],[1,15],[0,14],[1,7],[1,10],[3,-27],[2,-12],[2,-10],[1,-9],[1,-17],[1,-12],[1,-17],[1,-19],[1,-5],[2,0],[0,1],[0,-11],[1,-4],[1,-3],[0,-6],[1,-7],[1,-8],[1,-2],[1,4],[1,-2],[0,-12],[1,-22],[0,-17],[0,-16],[1,-13],[1,-2],[1,1],[1,2],[1,4],[-1,31],[-2,32],[-1,43],[-2,29],[-1,10],[-2,-4],[-1,19],[0,19],[1,24],[1,8],[1,1],[1,-15],[0,15],[1,13],[1,4],[2,-8],[0,-11],[1,0],[0,5],[2,3],[-1,12],[-2,5],[-2,8],[-1,3],[-2,4],[-2,13],[-1,5],[-1,-2],[-2,-4],[-1,5],[-1,15],[-1,15],[0,18],[1,12],[-2,21],[-1,15],[0,15],[-1,5],[-2,17],[-2,28],[-1,25],[-1,6],[0,4],[0,13],[0,-1],[1,9],[1,-6],[0,13],[0,5],[-1,12],[-1,3],[0,15],[-1,12],[-1,10],[1,12],[1,7],[1,21],[0,15],[1,6],[1,0],[1,-3],[2,-13],[1,-15],[1,-18],[0,-16],[1,-7],[1,-2],[2,2],[1,1],[1,5],[-1,22],[2,8],[1,9],[1,12],[1,8],[1,4],[1,2],[1,2],[1,-3],[0,-30],[1,-40],[-1,-30],[1,-22],[1,-9],[1,9],[1,-10],[1,-10],[1,2],[1,-16],[1,-17],[2,-25],[1,-24],[0,-28],[0,-26],[1,-27],[0,-17],[0,-15],[2,2],[2,7],[1,0],[0,-9],[1,-2],[1,-11],[1,-31],[2,-15],[0,-16],[1,-11],[0,-6],[-1,-17],[1,-49],[-1,-31],[-1,-28],[0,-17],[0,-35],[1,-36],[1,-18],[2,-2],[1,-16],[1,-22],[5,-14],[2,-11],[1,-7],[1,-2],[3,-2],[3,2],[2,-17],[2,-11],[1,-14],[1,-12],[1,2],[1,14],[1,6],[0,13],[-1,9],[-1,-3],[-2,6],[-1,19],[-2,10],[-3,12],[-4,17],[-3,15],[-3,16],[-1,25],[-1,11],[-1,5],[-2,14],[0,21],[1,14],[-1,28],[0,28],[2,25],[2,25],[1,18],[0,18],[-2,26],[-2,37],[-1,24],[-1,26],[0,15],[-1,18],[0,18],[-1,13],[0,-10],[-2,10],[1,32],[2,37],[3,15],[1,28],[2,9],[2,19],[1,6],[1,4],[1,5],[-1,20],[2,2],[1,6],[2,0],[1,6],[0,12],[-2,-1],[-1,9],[-2,5],[-1,2],[-1,7],[2,4],[2,5],[1,14],[1,2],[2,-4],[4,-12],[2,-6],[2,-2],[2,-5],[1,-14],[2,2],[2,7],[2,1],[1,-12],[2,-8],[0,-17],[1,-8],[1,-2],[1,-6],[3,-29],[1,-20],[1,-10],[3,-24],[2,-13],[2,-14],[1,5],[-1,9],[2,6],[1,-2],[-1,-10],[1,-7],[2,-10],[1,-6],[2,-10],[1,-14],[0,-11],[2,-3],[1,5],[0,4],[1,5],[0,10],[-1,12],[0,14],[-1,12],[0,8],[-2,2],[0,8],[0,14],[1,14],[0,15],[0,10],[-2,-16],[1,21],[0,15],[1,6],[1,12],[0,12],[2,7],[1,8],[0,11],[1,4],[1,3],[1,5],[1,13],[0,13],[1,14],[1,7],[0,6],[1,8],[1,13],[1,14],[2,10],[1,15],[0,13],[1,7],[2,10],[1,5],[2,-5],[1,-1],[2,6],[2,6],[1,9],[1,14],[1,11],[2,13],[1,16],[1,8],[1,2],[1,6],[1,7],[1,19],[0,17],[0,15],[1,8],[1,9],[1,11],[1,2],[1,0],[2,6],[1,8],[1,4],[1,3],[0,1],[2,-2],[1,-3],[1,-1],[1,-11],[1,-15],[0,-24],[1,-20],[0,-19],[1,-10],[2,-2],[1,3],[1,3],[1,-9],[0,-18],[0,-14],[1,-11],[0,-10],[1,-12],[1,-10],[0,-22],[1,-14],[1,-15],[1,-7],[1,-1],[1,5],[1,-4],[1,-13],[0,-12],[1,-10],[1,-3],[2,1],[1,0],[2,-7],[2,-6],[1,-15],[1,-7],[2,-4],[2,6],[1,10],[1,9],[2,0],[1,6],[1,4],[1,-9],[1,-17],[1,-12],[1,-16],[1,-12],[0,-13],[3,-21],[1,-2],[2,-5],[1,-9],[2,-10],[1,-5],[1,-1],[1,8],[-1,6],[0,5],[-1,7],[-1,9],[1,12],[1,-1],[1,-7],[1,-10],[1,-10],[0,-9],[0,-7],[1,-4],[0,-11],[1,-20],[2,-8],[2,-5],[0,-11],[1,-13],[-1,-14],[0,-10],[0,-18],[1,-11],[1,2],[1,4],[1,9],[1,13],[0,13],[1,1],[2,-10],[2,-13],[1,-26],[1,-9],[1,-6],[1,-4],[0,-3],[1,-7],[1,-10],[-1,-6],[-1,-3],[0,-2],[-1,-9],[0,-15],[0,-5],[-1,-4],[-1,-15],[0,-12],[-1,-6],[-1,1],[-1,5],[-1,-6],[0,-22],[0,-25],[1,-20],[0,-16],[0,-14],[1,-17],[-1,-15],[0,-13],[-1,-19],[0,-16],[-1,-17],[-1,-14],[-2,-19],[0,-16],[0,-19],[-1,-13],[-2,-13],[-1,-7],[-1,-6],[-1,-6],[-1,-3],[-1,13],[-1,5],[-1,0],[-1,-1],[-1,-2],[-1,-25],[0,-17],[0,-13],[0,-16],[0,-15],[-1,-4],[-1,-17],[0,-12],[0,-12],[-1,-5],[-1,1],[-1,-1],[-1,-12],[-1,-14],[-1,-5],[0,-11],[1,-14],[0,-13],[-1,-6],[-1,-2],[-1,-4],[-1,-10],[-1,2],[-1,1],[-1,3],[-1,-1],[-1,4],[-1,2],[-2,2],[-1,7],[-2,5],[-2,0],[-2,-2],[-2,3],[-1,1],[-2,9],[-1,8],[-1,2],[-2,2],[-1,1],[-1,0],[-1,-5],[0,-15],[-1,-2],[-1,3],[-1,3],[0,-9],[-2,-4],[-1,-4],[-1,-5],[-1,12],[-2,7],[-1,-8],[-1,-1],[-2,4],[-1,7],[-1,0],[-2,-3],[1,-13],[1,-7],[0,-15],[-1,-19],[2,-14],[1,-9],[1,-6],[2,-3],[1,-26],[1,-11],[1,-12],[0,-7],[1,8],[1,19],[0,7],[2,-3],[1,-7],[0,4],[-1,12],[-1,6],[0,16],[-1,15],[0,10],[1,18],[1,6],[1,3],[1,1],[2,6],[1,5],[3,-3],[2,-4],[1,0],[1,2],[1,-5],[-1,-7],[2,-9]],[[11887,35048],[-1,-8],[-1,8],[-1,17],[-1,8],[-1,22],[-2,12],[-1,16],[0,17],[-1,3],[-1,6],[1,12],[2,-10],[1,-23],[3,-35],[3,-25],[0,-6],[0,-14]],[[12011,35145],[0,-40],[0,-45],[0,-29],[0,-25],[0,-21],[-2,1],[-3,6],[-1,4],[-1,-19],[-1,-9],[-2,-6],[-1,-11],[0,-17],[-2,-10],[-2,-5],[-1,-8],[-3,0],[-1,2],[-1,0],[-1,9],[-1,19],[-1,11],[-1,-8],[-1,-8],[-1,4],[-1,15],[-1,11],[-1,7],[-1,8],[-1,16],[0,15],[-2,6],[1,13],[2,17],[2,6],[1,6],[1,18],[2,19],[1,-2],[1,3],[1,11],[1,15],[2,11],[1,-1],[1,-5],[2,-2],[1,5],[1,0],[1,6],[2,13],[2,9],[1,15],[0,11],[2,3],[1,7],[1,9],[1,6],[1,2],[1,-36],[0,-32]],[[12173,35241],[0,-33]],[[12173,35208],[-1,2],[-1,10],[0,11],[0,11],[0,16],[1,-2],[0,-11],[1,-4]],[[12166,35325],[-1,-17],[-1,3],[-1,10],[1,12],[1,1],[1,-9]],[[12122,35524],[13,-63],[1,-14],[2,-16],[1,-14],[2,-14],[2,-14],[2,-14],[2,-15],[1,-8],[1,-9],[1,-8],[0,-16],[-1,-10],[-1,-10],[-1,-20],[-1,-12],[-1,-8],[0,-1],[-18,4],[-2,0],[-9,2],[-1,4],[-3,2],[-3,7],[-1,7],[-1,5],[0,14],[-3,27],[-1,8],[-1,19],[-2,11],[0,19],[-1,15],[-1,17],[-3,31],[1,13],[0,6],[1,8],[1,5],[1,5],[2,8],[0,3],[2,-4],[1,-1],[1,6],[1,9],[1,3],[2,4],[1,4],[2,7],[8,7],[2,-9]],[[12371,34566],[0,-2],[-1,-7],[-1,-2],[-1,-2],[0,-17],[0,-13],[0,-12],[0,-5],[0,-11],[-1,-6],[0,-7],[-1,-8],[-1,-4],[0,-3],[-1,-3],[0,-2],[-1,-12],[0,-5],[0,-6],[0,-12],[1,-17],[0,-20],[-1,-15],[0,-5],[0,-6],[1,-15],[0,-14],[0,-4],[0,-16],[-1,-12],[1,-12],[-1,-18],[0,-14],[1,-14],[0,-17],[0,-18],[-1,-20],[0,-5],[0,-13],[-1,-10],[0,-21],[0,-5],[0,-14],[-1,-7],[-1,-4],[-1,0],[0,8],[-1,10],[-2,17],[-1,12],[-1,16],[0,22],[-2,28],[0,27],[-1,31],[-1,15],[0,15],[0,20],[-1,13],[-2,21],[0,17],[-1,9],[-2,10],[-1,16],[-1,15],[0,12],[-1,17],[0,9],[-1,16],[0,18],[-2,9],[0,11],[-2,5],[-1,-1],[-1,2],[-1,6],[-2,9],[0,10],[-1,6],[-1,17],[-1,15],[-1,15],[0,16],[0,13],[-1,14],[0,13],[-1,12],[-2,19],[0,15],[-1,25],[1,13],[1,9],[0,12],[2,12],[1,3],[1,2],[1,6],[1,7],[0,12],[0,5],[1,3],[1,0],[0,7],[0,11],[1,15],[0,13],[1,12],[0,15],[-1,11],[-1,3],[-1,-8],[-1,-7],[-1,0],[-1,-5],[0,-2],[-1,1],[0,13],[-1,3],[-1,-2],[0,-15],[0,-17],[0,-13],[-1,-14],[-1,-5],[-1,-1],[0,14],[-1,5],[0,9],[-2,24],[0,21],[-1,8],[-1,23],[-1,27],[-1,19],[0,18],[-1,27],[0,17],[0,16],[0,18],[-1,22],[1,12],[-1,14],[-1,13],[0,13],[0,13],[0,11],[1,15],[0,21],[0,15],[0,13],[0,18],[0,17],[0,8],[-1,13],[0,19],[0,9],[0,18],[-1,11],[-1,-1],[0,16],[-1,17],[0,43],[0,12],[-1,12],[0,11],[1,9],[1,10],[0,10],[0,11],[0,15],[-1,20],[1,17],[1,20],[0,21],[0,14],[0,16],[1,22],[0,13],[1,-12],[1,-12],[2,-21],[1,-17],[1,-8],[0,-8],[0,-17],[2,-11],[1,-14],[1,-35],[0,-27],[2,-30],[1,-42],[0,-14],[2,-38],[0,-16],[-1,-18],[2,-34],[0,-9],[1,-11],[1,-25],[1,-30],[1,-2],[0,1],[3,-5],[1,17],[-1,28],[-1,26],[0,20],[0,27],[-1,40],[-1,21],[-1,15],[-1,30],[-1,48],[-1,17],[1,4],[1,-5],[1,-20],[1,-27],[1,-30],[0,-13],[1,-22],[1,-20],[2,-19],[1,-12],[1,0],[1,-10],[1,-11],[2,5],[1,4],[2,-12],[1,-20],[3,-28],[2,-20],[2,-19],[0,-23],[1,-22],[-1,-22],[1,-12],[0,-25],[0,-17],[1,-13],[2,-6],[1,-14],[1,-9],[1,-16],[0,-15],[0,-10],[1,-5],[2,-2],[2,-15],[2,-11],[1,-19],[0,-14],[1,-18],[0,-9],[0,-14],[-1,9],[-1,4],[1,-18],[1,-30],[1,-22],[1,-19],[1,-14],[1,-16],[0,-11],[1,-12],[1,-6],[1,3],[2,-3],[1,-7],[1,-7],[0,-15]],[[12052,36036],[1,-16],[2,-7],[1,-9],[-1,-10],[0,-12],[1,-8],[1,1],[1,-1],[1,-10],[0,-20],[-1,-8],[-2,2],[-1,1],[-2,0],[-1,-3],[-2,5],[-1,5],[-2,-2],[0,-4],[-1,-8],[-1,-2],[-1,2],[-2,-7],[-1,-19],[-1,-13],[0,-13],[-1,-9],[-1,-2],[-2,5],[0,10],[-1,9],[-2,3],[-2,15],[0,7],[1,3],[1,7],[1,10],[1,11],[2,5],[1,0],[2,-2],[1,-5],[1,9],[0,14],[-1,2],[-1,7],[1,6],[1,5],[2,7],[1,4],[1,-13],[1,-8],[1,-10],[1,4],[-1,19],[1,24],[0,18],[1,0],[1,5],[1,-4]],[[12033,36016],[2,-11],[1,-10],[1,-14],[-1,-4],[-1,-5],[-1,-13],[-1,-12],[-1,-10],[-1,2],[-1,-6],[-1,-3],[-1,-1],[-1,-6],[-3,11],[-1,10],[-1,22],[0,12],[0,18],[-1,19],[1,15],[1,13],[1,4],[2,-8],[2,-3],[1,2],[1,-7],[1,-17],[0,17],[-1,22],[-1,22],[1,8],[1,-5],[1,-13],[0,-11],[1,-10],[0,-21],[0,-7]],[[12041,36093],[2,-17],[1,-2],[1,4],[1,-5],[1,-14],[1,-8],[1,-10],[-2,-4],[-1,-8],[-1,-6],[-1,-3],[-1,-1],[-1,-4],[0,10],[0,20],[-1,8],[0,9],[-1,14],[0,2],[-1,-13],[0,-8],[-2,-6],[-1,-2],[-2,1],[0,12],[-1,11],[1,10],[2,1],[2,7],[1,10],[1,-1],[1,-7]],[[12051,36123],[-1,-9],[-2,8],[-1,6],[0,10],[0,9],[1,8],[2,7],[0,9],[1,9],[1,-15],[0,-18],[-1,-24]],[[12062,36069],[-1,-1],[-2,-1],[-1,-18],[0,-15],[-1,-5],[-1,8],[-1,9],[-1,15],[1,23],[0,15],[-1,9],[1,3],[0,17],[0,18],[1,21],[0,14],[1,10],[0,16],[1,12],[1,4],[1,-12],[0,-19],[1,-13],[-1,-17],[0,-15],[1,-13],[0,-11],[0,-15],[0,-13],[0,-11],[1,-15]],[[12021,36166],[0,-12],[-2,-7],[-1,8],[-1,1],[-2,-9],[-1,1],[0,14],[0,17],[1,18],[4,22],[1,8],[1,-1],[1,-4],[1,-6],[2,-14],[-1,-5],[-1,0],[-1,-7],[0,-10],[-1,-14]],[[11987,36246],[-1,-15],[-3,2],[1,18],[1,2],[2,-7]],[[12052,36233],[-2,-5],[0,9],[-1,20],[1,9],[0,9],[-1,3],[0,9],[1,9],[1,10],[1,11],[1,1],[0,-3],[0,-10],[1,-4],[1,-13],[-1,-8],[-1,-19],[0,-17],[-1,-11]],[[11982,36292],[0,-12],[-2,4],[-2,3],[1,20],[0,15],[1,0],[1,-6],[0,-7],[0,-9],[1,-8]],[[12038,36324],[-1,-9],[0,-14],[-1,-5],[-1,0],[-1,-7],[-1,-7],[0,3],[0,16],[0,15],[1,4],[1,-2],[1,6],[1,5],[1,-5]],[[12032,36387],[0,-13],[2,5],[1,-2],[0,-10],[-1,-5],[-1,-6],[-1,7],[-1,-12],[-1,0],[0,7],[1,15],[0,18],[2,11],[-1,-15]],[[12047,36320],[-1,-6],[-1,1],[1,19],[1,13],[1,15],[1,13],[0,13],[0,20],[1,5],[1,-16],[-1,-14],[0,-14],[0,-15],[0,-12],[-1,-5],[-1,-5],[-1,-12]],[[12042,36518],[1,-18],[1,6],[0,-18],[1,-4],[1,-3],[-1,-10],[0,-11],[0,-7],[1,-2],[0,-12],[-1,-10],[1,-9],[1,-7],[-1,-12],[0,-8],[-1,-11],[-1,-6],[-1,-4],[0,18],[0,11],[1,14],[-1,-1],[0,8],[0,10],[0,18],[-1,19],[-1,2],[-1,-6],[-1,-3],[0,10],[0,20],[1,14],[0,18],[-1,16],[0,11],[1,3],[1,0],[1,-10],[0,-10],[1,-11],[-1,-5]],[[11994,36410],[-1,-1],[-4,33],[-2,25],[-3,34],[-3,38],[-2,41],[0,36],[2,20],[1,13],[1,2],[2,-8],[7,-27],[1,-19],[1,-26],[1,-27],[2,-21],[-1,-16],[1,-9],[0,-43],[-1,-11],[0,-10],[-1,-16],[0,-7],[-1,-1]],[[11978,36701],[-1,-4],[-1,3],[-1,29],[1,1],[2,-29]],[[11974,36740],[-1,-23],[-3,7],[0,20],[-1,6],[1,11],[2,-4],[2,-17]],[[11582,36771],[-1,-8],[-1,1],[-1,12],[-1,16],[-1,9],[0,14],[1,5],[1,3],[2,-3],[1,-7],[0,-11],[1,-5],[0,-6],[-1,-20]],[[12025,36853],[-1,-7],[-1,7],[0,16],[0,17],[1,-5],[1,-13],[0,-15]],[[12004,36934],[-1,-4],[-1,37],[0,18],[2,-10],[1,-17],[0,-21],[-1,-3]],[[11965,36769],[-1,-7],[-2,10],[-1,15],[-2,10],[-3,21],[-1,26],[-1,29],[-1,22],[-1,23],[2,32],[2,23],[0,14],[2,-7],[1,-3],[1,-18],[1,-25],[1,-7],[0,-15],[-1,-20],[0,-23],[2,-25],[0,-15],[-1,-10],[1,-11],[2,-22],[0,-17]],[[12025,37163],[-1,-5],[-1,-4],[-1,5],[-1,0],[-2,-9],[-1,11],[-1,11],[0,20],[0,21],[1,-3],[2,0],[1,-12],[1,-12],[1,-3],[2,-6],[0,-9],[0,-5]],[[12008,37193],[-1,-3],[-1,12],[-1,9],[1,11],[1,6],[0,-8],[1,-15],[0,-12]],[[12022,37222],[0,-14],[-1,4],[-1,21],[-1,16],[1,0],[1,-8],[1,-7],[0,-12]],[[11889,37419],[0,-17],[-2,6],[-3,12],[-2,14],[-2,9],[-1,6],[-1,15],[2,0],[2,0],[2,-1],[2,-11],[2,-16],[1,-17]],[[11979,37355],[-1,-13],[-1,11],[-1,6],[0,13],[0,24],[0,18],[0,16],[0,15],[1,17],[1,3],[1,-11],[0,-32],[0,-19],[0,-19],[1,-14],[-1,-15]],[[11897,37433],[2,-16],[1,-13],[-2,-1],[-1,2],[-1,6],[0,10],[-1,-4],[-1,-2],[-1,8],[-1,14],[-1,3],[-2,8],[-1,13],[-1,18],[1,11],[-1,15],[1,14],[0,-1],[1,-4],[2,-4],[1,-5],[2,-12],[1,-31],[1,-19],[1,-10]],[[12001,37529],[1,-13],[-1,1],[-1,13],[0,18],[1,11],[0,-10],[1,-12],[-1,-8]],[[11867,37999],[0,-20],[-3,10],[-1,11],[-1,11],[-1,17],[-1,13],[0,11],[1,13],[1,7],[1,7],[1,-2],[1,-8],[1,-9],[0,-12],[1,-16],[0,-18],[0,-15]],[[12057,38106],[1,-1],[1,3],[0,-5],[1,-6],[1,-11],[0,-19],[-1,-20],[0,-13],[-1,-4],[-1,-9],[-1,-6],[-3,1],[-1,-6],[-1,-8],[-1,-4],[-2,-6],[-1,-5],[-1,0],[-2,10],[-1,6],[-1,-1],[-1,7],[-1,-2],[0,19],[-1,12],[1,17],[1,10],[0,-1],[2,8],[1,7],[1,5],[1,-1],[2,1],[1,4],[2,1],[1,5],[1,6],[2,9],[1,-3]],[[11802,38155],[0,-21],[-1,-19],[-3,10],[-3,10],[-1,11],[-1,0],[-1,1],[-3,19],[-2,24],[-2,23],[-2,22],[-1,16],[-1,29],[1,24],[1,18],[1,8],[1,6],[4,-12],[3,-5],[1,-8],[2,-10],[0,-34],[-1,-31],[1,-11],[1,-11],[1,-7],[1,-18],[1,-12],[2,-7],[1,-15]],[[12062,36069],[0,18],[0,13],[1,5],[0,15],[-1,19],[0,18],[1,21],[1,11],[1,12],[-1,12],[-1,12],[-1,23],[1,14],[-1,16],[0,19],[1,9],[2,16],[-1,10],[-2,4],[-2,17],[1,31],[0,45],[-1,24],[-1,-21],[0,-34],[0,-14],[-1,-9],[-1,-7],[-2,-9],[0,12],[0,10],[0,20],[-1,19],[1,16],[1,20],[-1,-7],[-1,-12],[-1,-4],[-1,13],[0,13],[0,15],[-1,-5],[-2,-12],[-1,-3],[-1,-3],[0,10],[1,14],[1,19],[1,16],[1,6],[1,6],[2,10],[3,-4],[1,2],[0,11],[1,9],[1,14],[1,6],[2,12],[1,4],[2,7],[2,12],[0,16],[-1,4],[-2,9],[-1,6],[-2,-8],[-1,1],[-1,-6],[-2,-4],[-1,-6],[-2,-3],[-2,5],[-1,8],[-2,10],[-1,8],[-1,14],[0,17],[-1,9],[-1,13],[0,11],[0,16],[-1,14],[-1,2],[-1,4],[-1,17],[1,18],[1,14],[0,20],[-2,7],[-1,11],[-2,10],[-1,29],[-2,33],[0,18],[0,28],[-2,18],[0,18],[-1,30],[0,27],[-1,27],[1,10],[1,7],[0,18],[0,13],[-1,6],[-2,-3],[0,-7],[0,-23],[-1,-3],[-2,8],[-2,-4],[-1,-17],[-1,-17],[-1,13],[1,19],[1,12],[1,14],[1,12],[1,6],[1,10],[-1,11],[-1,15],[0,10],[0,15],[0,14],[-1,8],[-1,12],[-1,23],[-3,30],[0,13],[-1,12],[-1,10],[-1,-2],[-2,11],[-1,36],[-2,8],[-2,61],[-1,38],[-2,37],[-4,62],[-6,70],[-2,36],[1,16],[3,30],[3,24],[2,10],[1,9],[1,1],[1,8],[2,14],[2,10],[3,5],[2,11],[1,11],[1,1],[2,4],[0,12],[1,5],[2,12],[1,11],[1,10],[2,9],[0,14],[1,1],[1,-2],[1,6],[1,5],[0,11],[1,15],[1,13],[1,9],[2,11],[3,12],[1,-5],[1,-4],[1,3],[1,-5],[1,-6],[0,-14],[-1,-8],[0,-9],[-3,6],[-3,11],[-2,-3],[-1,-15],[-1,-14],[-1,-17],[-1,-9],[1,-6],[1,-7],[2,-1],[2,7],[1,1],[2,7],[1,8],[2,4],[1,-1],[2,8],[1,1],[2,14],[0,10],[1,10],[3,2],[2,-2],[1,10],[4,22],[3,18],[2,-3],[2,1],[2,1],[2,12],[1,1],[4,3],[1,0],[2,-3],[1,-8],[1,0],[3,5],[1,6],[-1,12],[-1,13],[-1,11],[-1,1],[0,-4],[-1,-4],[-1,3],[-1,14],[-1,8],[-2,12],[0,20],[-1,14],[-1,4],[-1,-3],[-2,-2],[-2,6],[-2,9],[-2,8],[-1,4],[-2,3],[-1,-3],[0,-2],[-1,1],[-2,-3],[-2,-5],[-1,-2],[-2,-4],[-2,-9],[-1,-6],[-1,1],[-1,-5],[-2,7],[-2,-1],[-2,7],[-3,1],[-2,-2],[-2,13],[-1,5],[-2,16],[-1,4],[-2,-1],[-2,-1],[-1,-1],[0,-10],[1,-10],[2,-2],[1,8],[2,-5],[0,-14],[1,-17],[1,-10],[1,-14],[1,-13],[0,-14],[1,-17],[1,-12],[-1,-14],[-1,-5],[-1,-4],[-2,-7],[-1,3],[-2,1],[-1,-4],[-1,-8],[0,-18],[0,-24],[-1,-13],[-1,-13],[-1,-5],[0,3],[-2,5],[-1,3],[-1,-10],[-1,-7],[-1,-15],[-1,-12],[-2,-7],[-3,-5],[-2,-2],[-1,-7],[-1,-5],[-1,-2],[-1,10],[-1,-4],[-1,1],[0,21],[2,22],[-1,16],[0,15],[-2,13],[-1,23],[-1,28],[-1,29],[3,14],[1,20],[-1,20],[0,22],[2,31],[1,28],[-1,29],[-1,19],[-1,22],[-1,7],[-3,19],[-1,12],[-1,42],[-4,34],[-2,30],[0,20],[-2,-14],[-1,-5],[-1,17],[-1,23],[1,17],[0,10],[2,8],[2,3],[1,9],[-1,10],[-2,-3],[-1,3],[1,22],[-1,23],[1,25],[1,25],[1,21],[-1,46],[-1,16],[-1,17],[-1,13],[-2,8],[-1,-2],[-2,3],[1,18],[-2,3],[-1,12],[0,17],[1,2],[2,0],[1,7],[-1,13],[-1,7],[-1,-7],[0,-8],[-1,0],[-1,8],[-1,11],[-1,7],[-5,83],[-1,10],[-1,10],[0,4],[-3,21],[-1,0],[1,21],[0,11],[-1,-1],[-8,-6],[-6,-6],[-5,3],[-3,-12],[-4,-4],[-3,6],[-1,13],[-2,24],[-1,13],[-2,-4],[-2,16],[-3,7],[-2,7],[-2,5],[-3,6],[-1,10],[0,28],[-1,-2],[-1,8],[-1,2],[-1,-6],[0,3],[0,-13],[0,-20],[1,-29],[2,-23],[3,-15],[4,-27],[2,0],[4,-20],[3,-36],[5,-18],[8,-6],[9,8],[6,20],[2,8],[1,-9],[0,-11],[0,-2],[5,-82],[1,-64],[4,-34],[2,-27],[3,-62],[-5,-15],[2,-30],[2,-33],[2,-22],[0,-13],[-2,-6],[-1,5],[-2,3],[0,-20],[0,-21],[0,-14],[0,-21],[2,-27],[1,-23],[0,-25],[-1,-16],[-3,-19],[-2,-7],[-3,-4],[-4,-3],[-1,-1],[-2,2],[-2,-4],[-1,-2],[-1,3],[0,-13],[-1,-6],[-2,4],[-8,27],[0,2],[-2,6],[-3,15],[-4,18],[-3,4],[-1,-14],[-2,5],[-2,0],[-1,6],[-1,-5],[-2,3],[-1,3],[-3,27],[-1,2],[-1,18],[-1,11],[-1,15],[-1,7],[-3,35],[-4,52],[-3,47],[-1,9],[0,-12],[-1,-7],[-1,-7],[-1,0],[0,-10],[1,-19],[0,-10],[1,-9],[2,-15],[1,-20],[0,-20],[0,-7],[1,-18],[1,-4],[1,-7],[1,-14],[0,-8],[3,-25],[2,-12],[1,-15],[1,0],[1,-1],[1,-3],[1,-18],[4,-18],[3,-15],[2,-5],[4,-6],[2,-13],[2,-4],[1,-5],[1,-3],[1,-3],[12,-39],[1,0],[3,14],[4,10],[2,16],[0,12],[1,11],[1,-7],[1,-7],[1,4],[1,9],[2,6],[1,-6],[3,-1],[3,8],[1,8],[2,8],[1,1],[1,-5],[2,0],[0,-28],[0,-18],[2,-18],[1,-15],[2,-19],[-1,-13],[-1,2],[-3,4],[-1,-1],[-1,2],[-1,-47],[1,-15],[2,-23],[2,-15],[1,-5],[0,-19],[0,-16],[-1,-16],[1,-29],[1,-33],[1,-14],[0,-14],[0,-34],[-1,-28],[-1,-14],[0,-4],[0,-21],[0,-14],[0,-20],[-1,-8],[-1,-18],[0,-25],[-1,-24],[-1,-14],[0,-24],[-2,-19],[-1,-23],[-2,-15],[-1,-11],[0,-38],[1,-25],[1,-20],[0,-17],[-1,-2],[-1,3],[0,13],[-2,-3],[-2,-4],[-1,3],[0,-22],[-2,-14],[0,-34],[1,-20],[0,-25],[-1,-20],[-3,2],[-2,3],[-3,-11],[-2,-9],[-5,11],[-5,-2],[-1,2],[-3,21],[-3,45],[-2,21],[-8,36],[-4,4],[-4,26],[-3,33],[-3,30],[-3,20],[-5,35],[-3,25],[0,30],[0,21],[4,-10],[7,-1],[7,-8],[8,9],[2,6],[2,-3],[1,3],[1,-1],[0,-1],[1,-1],[0,17],[-2,14],[-6,3],[-4,1],[-4,-2],[-3,-6],[-1,6],[-1,-8],[-2,4],[-3,7],[-2,-5],[-1,-2],[-2,2],[1,18],[-1,15],[-1,-7],[-1,-8],[-1,-9],[-2,-9],[-2,-10],[-1,-10],[0,-8],[-1,-4],[0,-9],[-1,-8],[-1,1],[-1,19],[1,11],[-2,16],[-2,2],[-2,-3],[-1,9],[-1,-14],[0,-4],[-4,25],[-3,20],[-2,20],[0,27],[0,18],[-1,28],[-2,28],[-2,30],[1,33],[0,31],[-1,28],[-1,34],[-1,17],[0,25],[-2,26],[-2,29],[0,51],[2,16],[-1,23],[0,77],[0,32],[0,20],[3,7],[2,8],[2,14],[1,2],[1,30],[0,15],[1,23],[0,7],[-1,2],[0,1],[0,2],[-1,-5],[-2,-48],[-1,-6],[-2,3],[-4,27],[-3,-17],[-2,-9],[-3,-12],[-1,-17],[-1,-8],[-1,-5],[-1,-53],[0,-88],[-2,-45],[-1,-36],[0,-16],[-1,-5],[-1,15],[-2,10],[0,22],[-1,32],[-1,36],[-3,26],[-2,14],[-2,20],[-2,50],[-3,57],[-13,209],[-1,25],[-2,45],[-3,26],[-2,-12],[-2,-58],[6,-75],[1,-16],[4,-80],[4,-59],[1,-27],[1,-25],[2,-12],[0,-21],[2,-28],[3,-37],[2,-27],[2,-24],[1,-43],[1,-46],[0,-19],[1,-21],[-1,-15],[-1,-15],[-1,-16],[-2,4],[-3,9],[-1,5],[-1,14],[-2,3],[0,-20],[-2,-1],[-1,9],[-5,45],[-3,51],[-6,46],[-7,34],[-1,7],[-3,7],[-5,17],[-1,2],[-1,9],[0,11],[0,9],[-1,8],[0,15],[-3,-10],[-1,8],[-1,15],[-1,4],[-5,17],[-2,3],[-2,-3],[-2,7],[-2,19],[-1,6],[-2,0],[-1,7],[-3,23],[-2,32],[-3,55],[-2,25],[-1,8],[-1,12],[-2,7],[-4,35],[-4,27],[-1,16],[-1,5],[-1,12],[0,14],[-1,7],[-1,23],[-1,27],[-1,6],[-2,21],[0,7],[-2,7],[0,17],[-2,8],[-2,5],[-1,12],[0,15],[-1,17],[-1,1],[-2,20],[-1,20],[0,15],[-1,8],[-2,-17],[-2,-17],[-2,-16],[-2,-12],[-1,-11],[0,-5],[0,-18],[0,-14],[1,-13],[1,-18],[1,-14],[0,-10],[1,-3],[0,-13],[2,-27],[1,-18],[1,-13],[1,-1],[1,-14],[1,-3],[2,4],[0,8],[1,4],[2,3],[1,-4],[0,-17],[0,-17],[2,-34],[0,-19],[-1,-11],[1,-18],[2,-17],[3,-33],[2,-28],[3,-13],[2,-13],[2,3],[1,-1],[0,-24],[2,-16],[2,-25],[2,-30],[1,-27],[1,-45],[-2,-30],[-1,-19],[-1,-14],[-1,-45],[-3,2],[-3,26],[-2,10],[-2,-2],[-2,-1],[-1,-3],[-1,9],[-2,-1],[-1,-10],[-1,-9],[-1,-7],[-2,13],[-3,-3],[-5,-19],[-2,-32],[-2,-17],[-1,-6],[0,-25],[-1,-12],[-2,-17],[1,-20],[0,-22],[-1,-13],[-2,-7],[-1,-22],[-1,-21],[0,-12],[-2,-12],[-1,-8],[0,-7],[-1,-9],[-1,-11],[-1,-14],[-1,-12],[-2,4],[-1,3],[-1,-16],[-1,-31],[-1,-22],[-2,-22],[0,-19],[-1,-9],[-1,-9],[-1,-7],[-1,-6],[1,-12],[1,2],[3,-2],[0,-6],[1,-17],[1,-9],[1,30],[2,15],[2,16],[2,21],[1,7],[1,12],[1,16],[2,23],[2,20],[1,16],[2,13],[1,19],[0,16],[1,7],[2,21],[1,5],[2,12],[1,13],[0,26],[1,20],[2,20],[1,22],[1,28],[1,0],[2,-3],[2,-1],[1,7],[2,-10],[1,-4],[1,-4],[2,5],[1,-3],[2,-15],[4,-22],[1,-12],[1,-7],[1,1],[2,15],[0,21],[1,18],[3,-11],[2,-25],[2,-13],[2,-12],[2,-1],[2,10],[1,-2],[2,-12],[4,-8],[2,-7],[3,-12],[2,-28],[1,-14],[1,-20],[0,-47],[0,-38],[1,-18],[1,-13],[1,-4],[1,3],[1,19],[0,31],[0,44],[0,47],[1,28],[3,1],[3,-17],[2,-13],[1,-11],[2,17],[2,4],[2,11],[1,2],[1,-16],[2,-20],[3,-6],[2,-7],[3,-41],[3,-9],[3,0],[2,-1],[2,-26],[1,-24],[1,-25],[1,-9],[2,-1],[0,-2],[2,7],[8,29],[2,-21],[3,-9],[2,-1],[2,-5],[1,-15],[3,-14],[3,-26],[5,-40],[5,-54],[4,-30],[1,-12],[1,-2],[2,-4],[1,-11],[-1,-14],[-1,-6],[-1,0],[-1,-14],[0,-19],[-1,-8],[0,-24],[-1,-7],[-1,5],[-2,3],[-2,15],[-3,16],[-2,10],[-1,10],[-1,8],[-1,0],[1,-16],[0,-23],[-1,-6],[0,-17],[1,-16],[0,-11],[-1,-1],[0,-10],[0,1],[-2,11],[-3,19],[-3,26],[1,30],[-1,22],[-1,13],[-1,16],[-1,31],[-4,67],[-2,14],[-2,6],[-2,15],[-2,20],[0,18],[0,18],[-2,-7],[-1,-16],[-1,-11],[0,-12],[-1,-8],[0,-25],[0,-25],[1,-18],[2,-19],[0,-16],[0,-15],[1,-7],[0,-22],[1,-25],[1,-8],[1,-4],[1,-4],[1,0],[2,-6],[2,-14],[2,-13],[1,-13],[3,-16],[1,-8],[2,-9],[0,-8],[-1,-10],[-1,-4],[-1,4],[-2,7],[-1,0],[-1,10],[-1,-8],[-1,-10],[-2,2],[-1,7],[-2,15],[-1,-8],[0,-11],[1,-7],[0,-14],[-1,-2],[-1,1],[-1,-4],[1,-14],[3,-1],[5,-2],[4,10],[1,1],[1,-7],[1,-18],[2,-10],[4,-3],[3,-13],[2,-15],[2,-28],[1,-22],[0,-22],[1,-14],[0,-16],[-1,-13],[0,-12],[-1,-14],[0,-16],[0,-15],[-1,-22],[-1,-19],[0,-15],[0,-18],[1,0],[2,8],[2,3],[2,-8],[3,-23],[5,-39],[1,-18],[2,-23],[3,-26],[3,-20],[1,-24],[1,-17],[2,1],[0,25],[-6,58],[-3,16],[-2,36],[-5,46],[-3,29],[-1,12],[0,38],[0,50],[1,46],[-1,28],[-1,12],[-1,13],[1,0],[1,16],[0,19],[0,13],[1,6],[2,-12],[2,-14],[1,-7],[1,-4],[-1,-15],[0,-9],[-1,-7],[-1,-5],[0,-15],[-1,-17],[0,-14],[1,7],[1,14],[1,-3],[1,4],[1,-2],[1,5],[2,8],[1,9],[1,-1],[2,-7],[4,-20],[6,-39],[3,-9],[3,-19],[2,-14],[1,-30],[1,-13],[2,-17],[3,-23],[2,-28],[2,-20],[2,-17],[0,-14],[-1,-11],[-1,1],[0,5],[-1,-24],[-2,-33],[-2,-32],[-1,-4],[-1,-12],[-2,-12],[-2,-22],[0,-14],[-2,-16],[-2,-10],[-2,-9],[-2,-3],[0,-5],[-1,-7],[-2,-11],[-4,-22],[-2,-18],[-2,-29],[-2,-22],[-3,-26],[0,-9],[-1,-10],[-2,-26],[-1,-14],[-2,-10],[-2,4],[-2,9],[-2,4],[-2,0],[-1,3],[0,8],[-3,15],[-2,1],[1,-25],[1,-10],[2,-5],[1,-1],[1,-11],[0,-14],[2,-5],[0,-12],[2,-14],[3,-12],[3,-1],[1,-1],[1,-11],[1,-7],[0,10],[2,-1],[1,-10],[0,-10],[2,4],[1,27],[0,34],[1,27],[0,20],[1,3],[2,18],[3,23],[1,10],[4,3],[4,3],[2,-13],[1,-2],[3,-18],[3,-33],[2,-20],[1,-19],[1,-19],[1,-18],[0,-19],[1,22],[-2,50],[-1,33],[-4,45],[-2,22],[-1,29],[4,29],[3,26],[3,21],[3,8],[2,-30],[1,-21],[2,-28],[2,-13],[1,-12],[1,-11],[1,5],[-2,34],[-3,34],[-1,15],[0,20],[0,27],[-1,36],[0,36],[1,16],[2,14],[0,7],[6,-48],[8,-53],[1,-7],[1,-22],[2,-28],[1,-24],[3,-22],[2,-19],[1,-15],[2,-15],[6,-40],[1,-25],[0,-20],[0,-20],[0,-12],[-1,-2],[-2,16],[-1,12],[-2,4],[-1,1],[0,-16],[1,-18],[1,-14],[1,-27],[0,-16],[-1,-11],[0,-12],[1,-1],[3,16],[1,12],[1,3],[0,-8],[0,-11],[-1,-6],[-1,-3],[-1,-15],[1,-12],[0,-7],[0,-14],[0,-6],[2,9],[0,-13],[2,-14],[1,-11],[1,-10],[0,-13],[1,-2],[0,21],[0,22],[-1,12],[0,13],[2,-10],[0,-9],[2,-5],[2,-6],[2,-29],[1,-17],[1,-19],[0,-13],[1,-15],[-1,-9],[-2,8],[-1,8],[-2,11],[-1,3],[0,-12],[-1,-13],[-1,-12],[-1,-11],[1,-9],[-1,-6],[-1,-14],[1,-6],[0,-15],[1,-11],[1,-8],[-1,-9],[-2,-6],[-1,-2],[-2,-2],[-1,-8],[1,-10],[-2,-2],[-1,0],[-2,-4],[-1,-8],[-2,5],[-1,18],[-1,-2],[-1,-5],[0,-14],[0,-18],[0,-19],[-1,-11],[0,-11],[3,9],[1,12],[2,7],[4,-8],[4,0],[3,1],[3,7],[2,6],[2,7],[0,11],[1,17],[1,1],[1,-6],[1,-8],[0,-15],[-1,-9],[-1,-8],[0,-4],[-1,-6],[0,-13],[2,-5],[1,-2],[0,10],[1,3],[1,6],[1,14],[-1,11],[1,10],[0,10],[1,5],[1,-13],[2,-11],[2,-8],[1,-2],[0,-24],[0,-14],[-1,-18],[-1,-26],[1,-50],[1,-29],[-1,-17],[1,-23],[3,-22],[2,8],[0,1],[2,-3],[0,-43],[-1,-14],[-3,-15],[0,-8],[1,-39],[4,-15],[0,-4],[2,-22],[1,-26],[0,-21],[0,-16],[0,-15],[1,-13],[0,-14],[0,-20],[-1,-20],[0,-17],[0,-23],[0,-20],[1,-8],[2,-9],[2,-12],[0,-16],[0,-21],[-1,-5],[-1,-12],[-1,-15],[-1,-14],[-1,0],[-2,8],[-2,7],[0,-14],[1,-16],[0,-8],[-1,-7],[-1,-24],[-4,-43],[-1,-16],[-2,-20],[-3,-12],[-2,-6],[-2,4],[-3,13],[-2,-5],[-2,3],[-1,-3],[-2,-11],[-2,-6],[-2,-7],[-1,-4],[-2,27],[-3,-11],[-1,6],[-1,12],[-1,-11],[1,-44],[0,-15],[-3,-19],[-15,-51],[-7,6],[0,2],[-2,16],[-1,9],[0,26],[1,38],[1,33],[2,28],[0,14],[3,8],[1,30],[0,8],[1,3],[0,10],[0,12],[-7,55],[-1,6],[-1,3],[-1,8],[-1,7],[0,32],[-1,19],[-1,22],[-1,4],[1,26],[0,19],[0,21],[-1,6],[-1,13],[0,1],[-1,-7],[1,-16],[1,-8],[-1,-30],[0,-22],[0,-37],[0,-23],[0,-25],[1,-25],[0,-17],[1,-10],[-1,-5],[0,-1],[-1,9],[-1,18],[-2,15],[-1,-7],[-1,-14],[-1,-10],[-1,0],[0,10],[0,5],[-1,7],[-1,-3],[-3,-9],[-1,17],[-1,7],[1,43],[-1,14],[-1,-4],[-2,-25],[-1,14],[-3,27],[-1,3],[-2,17],[-1,8],[-2,-2],[-1,12],[-3,16],[-1,23],[-2,23],[-1,10],[-1,-1],[0,-6],[2,-37],[0,-14],[-1,-6],[-5,11],[-1,15],[-1,16],[-1,15],[0,11],[-1,-8],[-3,61],[0,26],[-1,31],[-3,45],[-2,25],[0,7],[-1,4],[-2,-6],[0,-8],[1,-21],[1,-39],[2,-41],[1,-28],[1,-14],[0,-16],[1,-13],[1,-18],[1,-20],[2,-15],[0,-18],[-1,-23],[-1,-27],[-1,-13],[-1,-8],[-1,-5],[0,-16],[-1,-21],[-2,-17],[-1,-5],[-2,-1],[-1,6],[-1,3],[0,8],[-1,6],[-1,8],[-1,15],[-1,9],[-1,-2],[-2,-3],[-2,8],[-2,15],[-2,14],[-1,17],[-1,9],[0,-22],[0,-14],[0,-11],[2,-7],[1,-12],[1,-5],[1,-4],[1,-8],[2,-5],[1,-7],[2,-16],[1,-14],[1,-21],[0,-24],[2,-40],[1,-12],[1,-11],[1,-7],[1,5],[1,-5],[1,-3],[1,4],[2,-8],[0,-20],[0,-14],[1,-12],[-1,-12],[0,-11],[0,-21],[0,-5],[1,-14],[2,0],[2,22],[1,0],[0,6],[1,11],[1,8],[-1,12],[-1,22],[-2,36],[0,23],[0,29],[-1,30],[-1,21],[0,16],[1,17],[0,25],[2,20],[1,19],[1,12],[0,6],[-1,15],[1,3],[1,-4],[1,-6],[1,-5],[0,-2],[1,-7],[2,-11],[1,-9],[2,-6],[1,-6],[2,-12],[1,-9],[3,-6],[1,-9],[2,-10],[0,-12],[0,-14],[0,-18],[-5,10],[-1,-13],[0,-10],[3,-18],[2,-4],[2,-1],[2,9],[1,15],[1,10],[1,3],[1,-7],[1,-15],[0,-13],[2,-25],[1,-23],[1,-19],[2,-18],[0,-22],[0,-3],[-4,1],[0,-11],[1,-6],[2,-13],[1,-6],[1,-10],[-1,-27],[-2,-19],[0,-19],[0,-10],[-2,-11],[1,-15],[0,-13],[0,-21],[-1,-11],[-1,-4],[-4,-8],[-1,4],[-1,5],[0,2],[-1,7],[-1,20],[0,21],[-3,6],[-1,0],[-1,10],[-1,4],[-1,-2],[-1,3],[-3,-6],[-1,-9],[-2,-17],[0,-17],[-1,-1],[-2,9],[-2,10],[-1,4],[-1,-7],[-1,-7],[0,-11],[-1,-4],[-1,5],[0,8],[-1,3],[-2,33],[0,32],[-3,17],[-4,63],[-1,-4],[-1,-3],[-3,-15],[-4,8],[-2,25],[-1,12],[-1,7],[0,7],[-2,21],[-1,23],[-3,30],[0,18],[-2,11],[-1,-31],[-1,-35],[-1,-6],[-1,-19],[-4,-18],[-3,-2],[-3,13],[-1,0],[-1,-14],[1,-44],[1,-42],[2,4],[0,24],[2,1],[2,-19],[2,-20],[1,-24],[2,-24],[1,-24],[1,-32],[1,-9],[1,-8],[2,-21],[1,-17],[1,-23],[1,-13],[1,-16],[1,-23],[1,-19],[0,-20],[1,-12],[0,-12],[0,-18],[0,-13],[0,-7],[0,-14],[0,-8],[-1,-19],[-1,-8],[-1,-2],[0,-21],[-2,-9],[-1,0],[0,-18],[0,-17],[0,-20],[0,-19],[-1,-19],[-1,-11],[-3,11],[-2,-24],[-3,-13],[-1,-5],[0,1],[0,4],[-1,13],[-1,2],[-1,1],[-1,-7],[0,2],[7,119],[0,20],[0,3],[-1,1],[-3,-50],[-6,-91],[-2,-14],[0,-1],[-2,3],[-1,8],[-1,9],[-1,2],[-1,9],[1,7],[-1,12],[-1,-6],[0,-1],[-3,6],[-1,2],[0,14],[-1,11],[0,1],[-1,8],[-1,8],[0,17],[1,7],[-1,13],[0,8],[-1,13],[-1,10],[-1,5],[0,41],[-3,23],[1,11],[1,12],[2,4],[1,10],[0,15],[0,12],[0,30],[1,4],[1,5],[1,6],[1,2],[1,0],[1,-6],[1,-15],[1,-17],[1,-7],[1,-1],[1,12],[-1,5],[0,11],[-1,8],[0,9],[0,20],[-1,18],[0,17],[2,12],[0,3],[-1,13],[-2,-2],[-3,-6],[-2,-9],[-2,-8],[-1,-8],[-1,-6],[-1,-4],[-1,-3],[-1,1],[-1,2],[1,22],[-1,9],[0,6],[0,16],[0,17],[1,13],[-1,6],[0,-1],[-1,-7],[-1,-5],[-2,-17],[0,-26],[-2,-22],[-1,-12],[-2,-3],[-2,6],[-1,17],[-1,10],[0,-10],[-2,-3],[-1,8],[0,15],[0,19],[1,12],[0,10],[0,18],[1,16],[-1,7],[-1,6],[1,11],[1,12],[1,10],[1,4],[1,-6],[1,14],[1,17],[0,8],[0,8],[-1,0],[-1,-3],[-1,10],[-2,-11],[-1,1],[-2,5],[-2,16],[-1,22],[1,19],[0,21],[0,13],[-2,-4],[-1,-16],[-1,-29],[1,-27],[1,-18],[1,-16],[1,-16],[0,-7],[-1,-8],[-1,-20],[-1,-18],[-1,-17],[-1,-10],[-2,6],[-1,5],[-1,9],[-1,16],[0,12],[-2,-8],[-2,7],[-1,11],[2,15],[0,17],[-1,10],[0,21],[1,1],[1,-4],[1,21],[0,26],[0,20],[-1,0],[0,11],[0,12],[0,17],[1,18],[1,36],[-1,10],[-1,7],[-1,-6],[-2,3],[-2,73],[-1,7],[-1,7],[-1,0],[-1,-18],[1,-24],[0,-33],[0,-35],[1,-10],[0,-24],[0,-19],[0,-13],[-1,-2],[-1,-9],[-1,-12],[-1,-7],[-1,-1],[-1,9],[-1,-7],[-1,-1],[-1,6],[-1,10],[-1,9],[0,14],[1,32],[1,23],[0,14],[-1,14],[2,29],[0,17],[2,19],[0,16],[0,18],[-1,-7],[-2,-20],[-1,-12],[-2,0],[-2,1],[-2,3],[1,13],[1,13],[1,3],[2,10],[1,11],[0,15],[0,14],[-2,4],[-3,13],[-1,-1],[-2,-20],[-1,-1],[-2,2],[-6,32],[-5,22],[-6,24],[-3,1],[-2,-20],[-1,-9],[-2,8],[-2,-7],[-2,-8],[-3,-9],[-2,-10],[-2,-3],[0,-31],[0,-17],[0,-19],[-1,-9],[-1,-1],[-1,-3],[-1,-5],[-2,4],[-2,21],[-1,10],[0,12],[-1,14],[1,14],[-2,13],[-2,15],[-1,10],[-2,17],[-2,20],[-2,23],[-4,35],[-1,14],[-2,5],[-2,19],[-5,32],[-4,31],[-5,38],[-2,14],[-2,3],[-2,13],[-2,-1],[-2,6],[-3,10],[-5,34],[-3,36],[-4,41],[-4,33],[-3,9],[-2,13],[-3,11],[-3,22],[-1,13],[-1,12],[-1,6],[-1,-5],[-2,8],[-1,12],[-1,19],[-1,16],[-2,12],[-1,6],[0,5],[-2,21],[-2,16],[-2,13],[-1,18],[-1,15],[-4,31],[-4,34],[-3,16],[-3,20],[-15,106],[-5,44],[-3,18],[-4,28],[-4,20],[-3,-5],[-4,-1],[-2,16],[-2,16],[-2,11],[0,8],[1,1],[1,8],[1,18],[1,15],[2,8],[2,-11],[2,-10],[1,-4],[3,1],[2,5],[4,8],[2,15],[6,31],[2,14],[2,22],[2,14],[2,7],[1,7],[3,14],[2,30],[2,25],[2,13],[1,-4],[2,-15],[1,-11],[1,4],[2,1],[1,-8],[1,-9],[1,-6],[1,4],[-2,29],[-3,28],[-3,21],[-3,22],[-1,21],[-1,21],[0,9],[-2,7],[-1,4],[0,-17],[-1,-19],[-1,-14],[0,-21],[0,-11],[-4,-15],[-3,-9],[-4,-10],[-2,-7],[-1,-18],[-2,-12],[-2,2],[-2,6],[-2,-8],[-3,-9],[-1,-10],[-2,-4],[-1,9],[-2,-20],[-1,-11],[-1,-10],[-2,-10],[-1,-15],[-1,-2],[-1,-4],[0,-16],[-1,-9],[-2,-7],[-2,-2],[-1,-10],[0,-16],[1,-10],[1,-10],[0,-9],[-2,5],[-1,17],[-1,14],[0,52],[0,34],[1,23],[0,12],[-1,38],[-1,32],[-1,23],[-2,23],[-1,8],[-22,214],[-5,52],[-5,37],[-2,13],[-15,112],[0,9],[-1,10],[-1,-6],[-5,54],[-11,105],[-1,10],[-1,40]],[[11479,37608],[117,516]],[[11596,38124],[21,9],[47,455],[30,159],[25,152],[13,79],[19,111],[26,174],[13,118],[68,29],[27,465]],[[11885,39875],[1,7],[2,-8],[2,-8],[0,13],[2,18],[2,6],[2,-17],[2,-21],[1,-26],[1,-13],[2,-8],[2,-4],[1,-6],[1,-7],[2,-3],[2,10],[3,14],[1,10],[1,-14],[2,0],[1,-9],[1,-28],[-1,-20],[0,-20],[4,-6],[2,-4],[3,-4],[1,-4],[2,2],[1,9],[2,7],[2,-4],[2,-4],[3,-12],[3,-8],[3,3],[3,-17],[1,-18],[3,-20],[2,-7],[3,-11],[2,10],[2,7],[3,11],[2,-16],[0,-36],[2,-8],[1,-13],[3,-17],[0,-20],[0,-28],[1,-13],[2,-10],[0,-2],[1,-4],[2,-2],[1,12],[2,16],[1,26],[2,38],[2,24],[3,11],[2,-2],[0,-10],[0,-17],[0,-13],[2,-14],[1,-9],[2,9],[4,10],[1,-16],[0,-25],[1,-21],[2,-20],[0,-18],[1,-15],[3,-15],[2,4],[2,4],[1,5],[1,16],[2,20],[2,2],[1,-2],[3,-10],[3,-9],[3,-6],[2,-4],[3,-5],[4,7],[1,-5],[2,-2],[2,-9],[3,-2],[4,-6],[1,-7],[2,-29],[0,-21],[1,-19],[2,-15],[2,-8],[3,2],[1,-18],[2,-14],[3,-36],[2,-21],[2,-4],[3,2],[2,9],[5,6],[4,-20],[1,-10],[1,-9],[2,-22],[4,-29],[3,-31],[5,-26],[3,-27],[-1,-14],[-1,-17],[-1,-44],[-2,-44],[-1,-44],[1,-34],[2,-65],[1,-44],[2,-40],[1,-32],[3,-55],[6,-21],[2,-39],[2,-23],[3,-19],[6,-17],[2,-18],[2,-2],[4,-3],[2,-11],[-1,-17],[0,-16],[0,-16],[0,-10],[4,-19],[2,-11],[1,-32],[-1,-33],[0,-30],[0,-22],[-2,-12],[-2,-6],[-3,-3],[1,-21],[0,-21],[-1,-4],[-2,-8],[-2,-24],[0,-18],[1,-20],[-1,-36],[3,-28],[4,-17],[4,6],[4,7],[1,-6],[2,-24],[3,-24],[2,-9],[0,-5],[-1,-8],[-2,-9],[-5,-30],[-4,-31],[-2,-35],[-4,-12],[-3,0],[-3,-15],[-3,-25],[-4,7],[-3,8],[-4,-13],[-5,2],[-1,7],[-1,-18],[1,-23],[0,-28],[0,-23],[-2,-12],[-3,-8],[-3,-33],[-1,-8],[-1,-25],[2,-30],[0,-31],[0,-20],[0,-13],[-3,-26],[-3,-36],[-1,-16],[0,-17],[0,-38],[0,-41],[-2,-26],[-4,-24],[0,-38],[0,-41],[1,-28],[1,-26],[0,-15],[1,-3],[3,2],[3,17],[3,27],[3,3],[3,-45],[3,-36],[1,-26],[3,-10],[2,14],[3,23],[1,4],[2,-6],[2,-28],[1,-22],[4,4],[2,-19],[3,4],[3,-3],[1,-13],[0,-18],[1,-9],[1,4],[2,2],[2,-4],[3,-11],[1,-11],[1,-16],[0,-21],[1,-31],[0,-18],[0,-10],[-1,-2],[0,-26],[1,-27],[1,-26],[2,-22],[2,2],[1,16],[2,4],[2,-27],[1,-13],[1,-11],[2,8],[0,13],[2,-1],[1,-18],[2,-26],[1,-24],[2,-23],[2,-10],[1,2],[3,-4],[2,-7],[2,-18],[2,-23],[2,-20],[2,-17],[1,-27],[0,-25],[0,-22],[0,-18],[0,-12],[-2,-16],[-2,-7],[-1,-13],[1,-16],[3,-29],[3,-30],[3,-22],[2,-27],[1,-25],[1,-42],[0,-21],[-1,-18],[-1,-7],[1,-25],[3,-33],[3,-14],[2,-5],[3,-31],[1,-39],[1,-28],[1,-21],[-1,-7],[0,-4],[-1,-2],[0,-2],[-1,-2],[0,-10],[-1,-8],[-1,-7],[-1,-11],[-2,-8],[-2,-4],[-2,4],[-1,9],[-1,13],[-2,17],[-1,11],[-1,11],[-2,6],[-1,3],[-1,-2],[-1,-6],[-3,6],[0,15],[-2,20],[-4,10],[-3,-1],[-3,-8],[-2,-1],[-1,-3],[-2,-2],[-2,-9],[0,-12],[-2,-9],[-1,-6],[-1,-4]],[[12162,36109],[0,14],[-1,14],[-1,17],[-1,7],[-1,8],[-2,5],[-1,-1],[-1,5],[0,-13],[0,-16],[0,-13],[-1,-5],[0,-13],[0,-16],[1,-5],[2,-7],[2,-24],[1,-15],[1,-13],[1,-17],[1,-8],[1,-7],[1,-8],[1,-13],[0,-14],[0,-19],[1,-14],[-1,-22],[0,-17],[1,-14],[0,-12],[0,-10],[-1,2],[-1,11],[-1,21],[-1,16],[-1,13],[0,23],[-1,17],[1,1],[1,8],[-1,7],[-1,8],[0,12],[-2,-1],[0,5],[-2,9],[-1,12],[0,-2],[0,-9],[1,-7],[0,-17],[1,-25],[1,-14],[0,-18],[1,-20],[0,-19],[1,-20],[0,-21],[1,-15],[1,-15],[0,-10],[2,-22],[1,-13],[0,-12],[1,-16],[1,-12],[0,-10],[1,-10],[0,-12],[0,-10],[1,-8],[0,-7],[1,-4],[1,-7],[0,-7],[1,-20],[0,-20],[-1,-14],[0,-9],[-1,-17],[0,-19],[-1,-25],[0,-15],[-1,-16],[-1,-12],[-1,-3],[-1,-1],[0,-1],[-2,3],[-1,0],[-2,8],[-1,11],[-1,14],[-1,14],[-3,28],[-2,23],[-2,11],[-1,11],[-1,10],[-1,8],[-2,18],[-1,6],[-3,-3],[-1,0],[-2,6],[-1,6],[-1,11],[-2,16],[-3,17],[-1,10],[-1,16],[-3,16],[0,1],[-2,1],[0,-4],[-1,-8],[-1,0],[0,-3],[-1,-10],[0,-11],[-1,-15],[-1,-7],[-1,1],[-1,1],[-1,-8],[-1,-7],[-1,-11],[-1,-11],[0,-3],[-1,-2],[-1,-5],[-1,2],[-1,7],[-1,0],[0,-9],[-1,-12],[-1,-7],[-1,-1],[-1,-2],[-1,-8],[-1,-7],[-1,-6],[-1,-3],[-1,2],[-1,-2],[0,-6],[-1,0],[-1,4],[-1,6],[0,10],[-1,5],[-1,-1],[-1,-5],[-1,-1],[-1,3],[-1,4],[-1,0],[-2,8],[-1,-9],[-1,-9],[-1,-3],[-1,1],[0,7],[-1,-3],[-1,-4],[-1,-14],[-2,-14],[-2,-2],[-1,-12],[-3,1],[-1,-7],[-2,-2],[-3,0],[-2,-6],[-2,-3],[-2,-8],[-2,-1],[-2,-1],[-1,-6],[-2,-1],[-1,-5],[-2,-3],[-1,-6],[-1,-4],[-2,-2],[-1,4],[-1,22],[0,16],[1,21],[2,30],[1,26],[1,29],[2,29],[-1,20],[-1,34],[1,10],[1,8],[0,20],[-1,13],[0,16],[0,28],[1,18],[1,16],[1,4],[2,8],[2,4],[2,3],[1,7],[1,14],[0,2],[-1,9],[1,16],[1,12],[1,7],[1,3],[1,4],[1,20],[1,17],[-1,12],[-1,6],[1,-17],[-1,-9],[-1,-1],[-2,9],[-1,1],[-1,0],[0,16],[0,13],[1,9],[1,11],[1,12]],[[12291,40304],[-90,-27]],[[12201,40277],[0,15],[-1,20],[0,37],[0,35],[1,23],[0,33],[0,11],[1,11],[0,14],[0,11],[1,10],[1,12],[0,12],[0,17],[0,15],[0,19],[1,14],[0,16],[0,16],[0,16],[0,16],[0,21],[0,9],[0,11],[1,13],[0,16],[1,15],[0,9],[0,13],[1,12],[0,10],[1,9],[0,8],[2,13],[-1,10],[0,-1],[-1,8],[-1,-4],[0,4],[-1,0],[0,-2],[-1,3],[0,15],[0,10],[0,18],[0,17],[0,13],[0,11],[0,15],[0,11],[0,19],[-1,2],[-1,-15],[0,-22],[-1,-14],[0,-17],[-1,-7],[0,13],[0,12],[0,14],[0,15],[0,15],[0,10],[0,11],[0,21],[-1,-7],[0,-13],[0,-4],[-1,4],[0,1],[-1,3],[-1,10],[-1,-6],[0,-3],[0,-17],[0,-18],[-1,-14],[0,-15],[0,-15],[0,-15],[0,-21],[1,-12],[0,-13],[0,-12],[1,-14],[0,-18],[0,-24],[-1,-17],[0,-14],[0,-15],[-1,-14],[0,-18],[0,-14],[-1,-14],[0,-10],[0,-15],[0,-16],[0,-16],[0,-13],[0,-17],[0,-15],[0,-17],[0,-24],[0,-12],[0,-9],[-2,-30],[0,-29],[0,-17],[0,-30],[1,-31],[-1,-17],[-1,-11]],[[12192,40336],[-62,1230],[-31,634]],[[12099,42200],[67,343],[33,-299],[30,-195],[6,-11],[3,-165],[16,-164],[2,-20],[5,-6],[6,-7],[1,-17],[24,-277],[0,-97],[0,-24],[0,-320],[-14,-114],[-6,-120],[31,-200],[-12,-203]],[[12228,34487],[0,-15],[-1,11],[0,12],[0,19],[0,15],[1,-8],[0,-18],[0,-16]],[[12268,34638],[0,-8],[-1,11],[-1,7],[-2,10],[-1,11],[0,19],[1,2],[1,-8],[1,-2],[1,-8],[0,-13],[2,-11],[-1,-10]],[[12281,34651],[0,-10],[1,-23],[-2,-5],[1,-24],[1,-6],[2,-2],[0,-11],[-1,0],[-1,0],[-1,2],[-1,2],[-1,1],[-1,7],[-1,14],[-1,24],[-2,15],[-3,16],[-2,20],[1,8],[1,10],[1,-11],[1,-11],[1,-9],[1,-1],[1,0],[1,-4],[0,-5],[1,7],[-1,22],[-1,23],[-1,19],[0,13],[-1,10],[0,15],[0,13],[0,12],[0,12],[1,-15],[1,-17],[1,-30],[1,-23],[0,-24],[1,-20],[2,-14]],[[12284,34797],[-1,0],[0,-13],[-1,-5],[0,10],[-1,15],[-1,10],[0,14],[-1,19],[1,2],[1,-6],[0,-8],[1,-11],[2,-10],[0,-17]],[[12278,34910],[-1,-2],[-1,6],[0,14],[0,16],[1,-5],[0,-14],[1,-15]],[[12173,35241],[0,-7],[1,-13],[0,-9],[-1,-4]],[[12248,36526],[-1,-11],[0,1],[-1,11],[0,11],[0,14],[0,12],[-1,18],[0,9],[1,-14],[1,-11],[0,-22],[1,-18]],[[12248,36597],[-1,-6],[0,3],[-1,9],[-1,10],[0,10],[1,-2],[1,-5],[0,-6],[1,-13]],[[12243,36644],[0,-9],[-1,8],[0,7],[0,15],[1,-7],[0,-14]],[[12251,36667],[-2,-2],[-1,8],[0,15],[1,4],[1,-6],[0,-6],[1,-13]],[[12240,36697],[1,-19],[-1,2],[-1,13],[0,15],[0,26],[1,-1],[0,-15],[0,-21]],[[12214,38263],[1,-18],[0,-17],[1,-14],[0,-16],[0,-13],[-1,0],[-1,7],[0,1],[-1,-4],[0,-8],[1,-16],[1,-19],[0,-14],[0,-20],[0,-18],[0,5],[-1,17],[-1,21],[0,26],[-2,67],[0,8],[-1,16],[-1,3],[-1,0],[0,10],[1,16],[-1,17],[-1,38],[0,28],[-2,43],[-1,30],[0,36],[0,17],[-1,30],[-1,24],[1,21],[-1,16],[1,28],[0,19],[0,16],[0,14],[1,15],[1,0],[2,-14],[2,-16],[1,-19],[0,-18],[1,-26],[0,-22],[0,-22],[2,-47],[1,-15],[0,-17],[1,-34],[2,-25],[0,-14],[0,-20],[-1,-15],[0,-18],[0,-17],[0,-18],[-1,-8],[-1,-1],[-1,-15],[1,-11]],[[12231,38656],[0,-28],[-1,0],[-1,14],[-1,30],[-1,5],[1,15],[1,6],[1,8],[0,-3],[1,-19],[1,-14],[-1,-14]],[[12224,38748],[1,-11],[1,12],[1,-8],[0,-22],[-1,6],[-1,-3],[-1,4],[-1,5],[0,28],[0,11],[1,-22]],[[12224,38831],[0,-16],[-1,1],[-3,63],[0,19],[1,-7],[2,-17],[1,-43]],[[12224,38966],[1,-17],[-2,17],[-1,19],[1,0],[0,-5],[1,-14]],[[12191,39304],[-1,-14],[0,3],[-1,4],[-1,32],[1,0],[2,-25]],[[12314,38446],[-1,30],[1,15],[-1,15],[-1,18],[-2,15],[0,-14],[0,-14],[0,-13],[1,-19],[0,-18],[0,-12]],[[12251,38458],[-1,17],[0,28],[-1,14],[0,16],[0,14],[1,16],[0,14],[-1,10],[0,24],[-2,19],[-1,34],[-2,35],[-1,40],[0,43],[2,37],[0,26],[-2,25],[-1,40],[0,34],[0,24],[-3,40],[-2,31],[0,28],[1,21],[-1,23],[-1,28],[-1,39],[-2,55],[-2,55],[-2,49],[-2,30],[-3,26],[-1,27],[-1,71],[-1,69],[1,29],[-1,6],[-2,14],[-3,-21],[0,19],[-1,13],[-1,31],[-3,35],[-2,35],[-1,17],[-1,15],[-3,33],[-1,23],[-1,24],[-1,19],[-2,20],[-2,21],[0,21],[0,29],[1,25],[0,18],[1,47],[-1,42],[0,44],[0,47],[1,39],[1,35],[1,37]],[[12291,40304],[20,-324],[72,-158],[6,-281],[32,-303],[23,2],[10,-210],[18,-250],[-7,-295],[20,-66]],[[12192,40336],[-1,-25],[0,-12],[0,-17],[-1,-20],[0,-14],[1,-23],[0,-26],[-1,-23],[0,-17],[-1,-19],[0,-14],[0,-11],[1,-11],[0,-19],[1,-22],[0,-24],[-1,-7],[-1,-11],[-2,5],[-1,16],[-1,-4],[-2,2],[-1,4],[0,10],[2,-1],[1,2],[0,22],[-2,34],[-2,42],[0,20],[-1,11],[-1,-7],[-1,-24],[0,-25],[2,-35],[0,-19],[-1,-10],[-1,-8],[-1,-1],[-2,2],[-4,10],[-3,11],[-2,14],[-5,47],[-4,29],[-3,34],[-2,3],[-2,-3],[-1,-1],[-2,0],[0,1],[-1,-3],[0,-13],[0,-9],[1,-12],[1,-8],[1,-14],[0,-11],[3,-17],[2,-13],[3,-19],[2,-17],[2,-12],[6,-40],[1,-7],[1,-6],[0,-3],[1,-5],[4,-18],[2,-11],[1,-6],[1,-9],[0,-7],[1,-15],[-1,-10],[-1,-11],[1,-27],[0,-6],[1,-10],[0,-8],[2,-29],[0,-22],[-1,-11],[-1,-8],[-1,-5],[-1,-8],[0,-9],[0,-12],[0,-19],[0,-9],[1,-3],[0,-4],[1,-5],[1,-2],[1,4],[0,-6],[1,-3],[1,-1],[1,0],[1,-2],[1,-1],[1,-8],[1,-5],[1,-5],[1,-3],[1,-12],[1,-8],[1,-7],[0,-4],[1,1],[2,2],[1,-13],[1,-2],[1,-13],[-1,-3],[-1,-2],[0,-11],[1,-9],[1,-16],[2,-29],[1,-29],[1,-32],[1,-29],[0,-20],[0,-23],[2,-36],[2,-21],[0,-18],[-1,-10],[-1,5],[-1,3],[-1,11],[-1,9],[-2,23],[-1,5],[0,-14],[2,-15],[1,-14],[1,-18],[0,-8],[1,-3],[0,-8],[-1,-9],[1,-15],[1,-17],[2,-11],[1,-18],[1,-21],[0,-23],[1,-17],[0,-18],[0,-17],[2,-25],[1,-22],[2,-23],[1,-19],[1,-24],[0,-9],[-1,-12],[-3,-21],[0,2],[-1,25],[-3,57],[0,10],[0,7],[-1,12],[-1,7],[-3,-4],[-2,16],[0,7],[-1,3],[0,3],[-1,3],[0,-2],[-1,-3],[-1,7],[-1,15],[0,13],[-1,15],[-1,22],[-2,17],[0,13],[2,-5],[1,12],[0,17],[0,17],[0,16],[-1,23],[-2,9],[0,12],[-1,16],[1,5],[0,16],[-1,6],[-1,3],[0,1],[-1,4],[-1,9],[0,12],[-1,16],[-1,14],[0,13],[0,-1],[1,-2],[2,-9],[2,-1],[0,12],[-6,70],[-6,51],[-2,25],[-1,3],[-1,8],[-1,7],[-1,12],[0,12],[-1,11],[0,11],[0,11],[0,8],[-1,6],[-1,5],[-1,8],[-1,4],[-2,7],[-1,9],[-1,6],[0,2],[-1,12],[-2,13],[0,8],[-1,3],[-1,4],[-1,3],[-1,5],[-1,4],[-3,12],[-5,31],[-3,38],[-6,17],[-5,13],[-4,8],[-4,5],[-2,4],[0,-30],[4,-8],[4,-21],[3,-39],[5,-8],[7,-93],[1,-5],[-1,-22],[1,-12],[2,-14],[2,-16],[1,-20],[1,-10],[2,-3],[1,-25],[1,-17],[1,-7],[1,-10],[1,-11],[1,-8],[0,-9],[1,-7],[-1,-6],[-1,-9],[0,-13],[1,-12],[0,-6],[1,1],[2,-1],[1,-3],[0,-8],[1,-22],[-1,-21],[0,-11],[-1,-8],[0,-12],[1,-7],[1,-35],[0,-10],[3,-62],[2,-37],[1,-48],[3,-43],[4,-5],[4,-6],[2,-16],[3,-14],[1,-6],[1,0],[1,-33],[0,-28],[-1,-34],[0,-33],[-1,-34],[-1,-17],[-1,-23],[0,-23],[-2,-88],[2,-22],[1,-10],[4,-16],[0,-28],[-2,-24],[-3,-16],[-2,-17],[0,-49],[0,-21],[1,-17],[1,-15],[1,-26],[0,-21],[-1,-13],[-2,-17],[0,-36],[1,-15],[1,-21],[1,-12],[2,-26],[2,-30],[0,-31],[1,-26],[0,-24],[-1,-22],[-1,-11],[0,-6],[3,-9],[2,-1],[1,-13],[2,-1],[2,-2],[2,-4],[2,-3],[1,-14],[-1,-13],[0,-17],[-2,-4],[0,-9],[1,-7],[2,-3],[1,-10],[-1,-14],[-1,-16],[-2,-10],[-1,-19],[1,-22],[1,-14],[1,-25],[1,-22],[2,-31],[0,-12],[1,-17],[-1,-14],[-1,-7],[1,-19],[1,-11],[1,-9],[1,-4],[1,-2],[1,-16],[1,-17],[0,-9],[0,-18],[1,-18],[1,-23],[1,-26],[0,-15],[2,-14],[1,-11],[2,-30],[1,-24],[1,-17],[0,-15],[1,-8],[2,-16],[1,-16],[0,-13],[1,-9],[0,-13],[-1,-4],[-1,8],[-1,8],[-1,6],[-1,3],[-1,-1],[-2,0],[0,-2],[0,-8],[7,-59],[2,-49],[0,-5],[1,-16],[0,-18],[0,-16],[-1,-17],[0,-14],[1,-18],[1,-28],[-1,-26],[-1,-12],[0,-9],[0,-23],[-1,-11],[0,-16],[-1,-15],[0,-15],[0,-8],[1,-5],[1,-10],[1,5],[0,14],[0,12],[1,17],[0,9],[1,7],[0,-1],[1,-6],[1,-17],[2,-17],[1,-21],[1,-23],[1,-11],[1,-14],[1,-13],[1,-18],[0,-15],[1,-20],[1,-28],[1,-20],[-1,-15],[1,-25],[1,-8],[2,-9],[1,-11],[0,-19],[1,-15],[0,-21],[1,-19],[0,-9],[1,-15],[-1,-14],[-1,-2],[-1,3],[-1,9],[-1,-6],[-1,-8],[-2,2],[0,-6],[1,-9],[1,-8],[1,-7],[1,-7],[0,2],[2,-4],[0,-3],[1,-3],[0,14],[0,12],[1,13],[1,-9],[1,-21],[1,-17],[0,-14],[1,-9],[0,-13],[-1,-8],[0,-21],[-1,-22],[1,-18],[1,-11],[1,-18],[0,-24],[1,-20],[-1,-16],[0,-15],[0,-10],[0,-12],[-1,-2],[-1,9],[0,12],[-2,11],[0,15],[-1,17],[-1,23],[1,5],[1,19],[-1,10],[0,16],[-1,19],[0,15],[-1,18],[-1,21],[-1,16],[-1,9],[-1,2],[0,-14],[-1,2],[-1,10],[-1,-12],[0,-2],[-1,3],[-1,-4],[-1,7],[-1,10],[0,16],[0,11],[1,8],[0,9],[-1,14],[-1,5],[-1,-11],[-1,-4],[-1,4],[-1,-3],[1,-17],[-1,-8],[-2,-1],[0,-13],[-2,-7],[0,-9],[0,-10],[-1,-13],[1,-23],[1,-16],[0,-19],[1,-17],[1,-18],[0,-18],[1,-18],[1,1],[2,-10],[1,-14],[1,-14],[0,-19],[1,-16],[1,-9],[2,-1],[1,-10],[0,-19],[1,-1],[2,-4],[1,-12],[1,-16],[0,-9],[-2,2],[0,-15],[1,-3],[1,-2],[0,-10],[0,-20],[0,-17],[0,-16],[0,9],[-1,-4],[-1,-13],[1,-19],[1,-12],[1,-8],[1,4],[1,-6],[1,-20],[5,-83],[1,-35],[0,-35],[2,-29],[-1,-26],[-2,-4],[-1,-4],[0,-11],[2,-31],[1,-21],[1,-43],[0,-18],[1,-20],[2,-28],[1,-22],[2,-13],[1,-18],[1,-23],[1,-30],[-1,-82],[4,-61],[0,-15],[0,-34],[1,-26],[0,-13],[-1,-19],[0,-13],[0,-4],[0,-8],[1,3],[1,-18],[-1,-10],[0,-14],[2,-7],[1,-18],[1,-34],[2,-38],[0,-47],[1,-23],[0,-8],[0,-10],[0,-15],[0,-8],[0,-44],[0,-28],[1,-16],[-1,-45],[0,-17],[0,-14],[0,-17],[-1,-9],[-1,8],[-1,24],[-1,25],[-1,12],[-1,-4],[-1,4],[0,17],[-1,22],[-1,15],[-1,-12],[0,-1],[-1,-7],[1,-16],[0,-22],[0,-15],[-1,-9],[-1,1],[-1,-23],[-1,-19],[2,-13],[0,-21],[0,-17],[1,-10],[0,-15],[-1,4],[-2,2],[-1,-3],[0,-44],[0,-29],[1,-28],[1,-22],[0,-13],[2,-24],[0,-25],[-3,-14],[-1,-2],[-1,-8],[-1,-9],[0,-24],[0,-11],[-1,4],[-1,-10],[-2,-1],[-1,2],[-1,9],[-1,1],[0,-1],[0,-4],[0,-19],[1,-19],[-1,-7],[-1,1],[-1,9],[-2,8],[0,-9],[1,-11],[0,-7],[2,-10],[0,-12],[-2,5],[-5,4],[0,11],[-2,14],[-1,5],[-1,12],[-1,14],[-2,13],[-3,10],[-3,19],[-1,12],[-1,20],[-2,6],[-3,-1],[-2,-2],[-2,-5],[-4,-6],[-3,-2],[0,3],[-2,3],[-3,21],[-3,19],[-1,19],[-2,21],[-1,18],[-3,26],[-1,32],[-1,4],[-1,18],[0,28],[-1,35],[-1,25],[-2,11],[-1,13],[0,23],[-1,22],[-1,21],[0,7],[-3,26],[-4,51],[-1,42],[-1,30],[-1,25],[-2,41],[-1,48],[-1,22],[0,24],[0,23],[-1,17],[0,10],[-1,13],[-1,18],[0,29],[0,17],[-1,17],[0,11],[0,15],[0,15],[-1,12],[-1,5],[-1,14],[0,9],[-1,12],[0,15],[0,13],[-1,10],[-1,21],[0,24],[0,26],[0,19],[-1,14],[1,17],[1,13],[-1,15],[-1,13],[-1,13],[0,16],[0,18],[-1,18],[-1,20],[-1,23],[-2,21],[-2,22],[0,13],[0,13],[-1,13],[-1,10],[0,5]],[[11885,39875],[-2,76],[7,45],[0,168],[-1,20],[-1,269],[0,444],[29,-80],[0,-1],[2,-3],[1,7],[0,2],[1,0],[15,68],[8,124],[11,173],[-1,174],[-31,200],[17,78],[5,22],[2,10],[5,19],[3,14],[12,56],[30,49],[9,15],[6,10],[7,11],[15,25],[23,115],[5,28],[21,105],[15,80],[1,2]],[[12217,27323],[-1,-9],[-1,5],[0,13],[1,11],[1,6],[0,7],[0,-19],[0,-14]],[[12239,27370],[-2,-15],[0,-15],[0,-15],[-1,-6],[1,-21],[2,-14],[1,-8],[-1,-46],[-1,-8],[0,-9],[-1,-7],[-1,5],[-1,-16],[-1,-3],[-1,14],[1,14],[0,14],[0,10],[-1,-12],[-1,-11],[-1,-5],[0,-5],[0,-16],[-1,-14],[-1,7],[-1,-12],[-1,3],[0,14],[0,20],[0,16],[1,14],[-1,-2],[-1,-7],[-1,2],[0,-12],[-1,-12],[0,-15],[-1,-1],[0,12],[-1,22],[2,15],[1,12],[2,16],[1,9],[1,14],[2,5],[1,8],[-3,0],[-1,-10],[-2,-13],[-1,-8],[-1,-5],[0,12],[1,17],[1,14],[2,3],[1,4],[1,18],[0,10],[1,7],[1,9],[0,-5],[1,-6],[2,7],[1,2],[1,8],[0,10],[2,6],[0,-19]],[[12221,27349],[1,-1],[1,3],[2,3],[0,-10],[0,-2],[-1,-8],[-1,-12],[-2,-4],[-1,-7],[-1,-6],[-2,0],[1,10],[0,14],[1,12],[-1,9],[1,21],[1,15],[1,6],[0,3],[1,-6],[0,-14],[-1,-14],[0,-12]],[[12285,27354],[-2,-1],[-1,-16],[-1,-4],[0,9],[0,9],[2,17],[1,22],[1,24],[0,15],[2,14],[1,9],[2,2],[2,-1],[1,-12],[0,-22],[-2,-20],[-1,-17],[-1,-15],[-3,-4],[-1,-9]],[[12214,27396],[6,36],[0,11],[0,4],[2,12]],[[12222,27459],[1,-9],[0,-16],[-2,-16],[-2,-14],[-1,-19],[-3,-22],[-1,-13],[0,16],[1,21],[-1,9]],[[12214,27396],[-1,-8],[-1,0],[-1,14],[0,21],[1,11],[1,-2],[1,7],[2,3],[0,20],[1,2],[0,-22],[-1,-11],[-1,-8],[0,-14],[-1,-13]],[[12204,27593],[-1,-21],[-1,-17],[0,-15],[-2,-13],[0,15],[0,17],[0,15],[-2,-2],[0,5],[0,26],[0,16],[-1,1],[-1,9],[0,20],[0,28],[0,21],[1,10],[1,-2],[0,-9],[2,-7],[0,-19],[1,-15],[1,-11],[2,-13],[1,-19],[-1,-20]],[[12189,27586],[-1,-7],[-1,7],[0,17],[1,9],[1,12],[1,15],[0,15],[1,2],[1,9],[-1,14],[1,11],[0,18],[1,8],[1,0],[0,-7],[0,-25],[-1,-26],[0,-18],[-1,-15],[-1,-19],[-1,-10],[-1,-10]],[[12222,27459],[-1,17],[2,6],[1,5],[1,7],[-1,15],[1,17],[2,14],[-3,-8],[-2,-7],[0,11],[2,15],[1,19],[4,20],[4,18],[7,40],[3,42],[3,30],[1,-33],[1,-49],[0,-62],[-1,-51],[-1,-40],[-3,-33],[-3,-15],[-2,-12],[-1,-17],[-1,-22],[-1,4],[0,25],[-1,-6],[-2,-6],[-1,-4],[-2,-22],[-1,0],[-1,-4],[-2,-4],[0,5],[0,13],[1,24],[1,12],[0,17],[1,1],[2,6],[2,8],[1,1],[0,21],[-1,-4],[-2,-7],[0,3],[0,16],[1,23],[-1,-6],[-3,-11],[-2,-15],[-3,-12],[0,-5]],[[12194,27759],[-1,-11],[-1,-1],[-1,1],[0,-1],[-1,-15],[-1,-17],[-1,-5],[-1,3],[0,18],[0,23],[-1,-8],[0,-12],[-1,-1],[-1,4],[0,23],[0,19],[1,16],[0,14],[1,3],[1,6],[1,12],[1,-7],[1,-16],[1,-8],[2,-5],[1,-8],[0,-14],[0,-13]],[[12168,27805],[-1,-14],[-2,2],[-1,19],[1,13],[0,20],[1,4],[1,1],[1,-1],[1,-6],[-1,-20],[0,-18]],[[12173,27750],[0,-5],[-1,17],[0,18],[-1,13],[0,23],[0,19],[1,6],[1,8],[0,6],[2,1],[1,-10],[0,-5],[0,-14],[-1,-15],[0,-25],[-1,-26],[-1,-11]],[[12169,27891],[1,-12],[1,12],[0,-9],[0,-13],[0,-14],[-1,-10],[0,11],[-1,11],[0,9],[0,9],[0,10],[0,-4]],[[12150,27993],[2,-4],[1,3],[0,3],[1,-12],[0,-22],[2,-8],[1,12],[0,17],[1,12],[0,-3],[1,-16],[1,-12],[-1,-11],[0,-5],[-1,-15],[-1,-25],[-1,5],[0,9],[-1,16],[-1,-2],[-1,-21],[0,-24],[-4,-35],[-1,21],[0,13],[0,17],[-1,9],[0,-6],[-2,6],[-1,-7],[-1,-3],[-1,16],[0,14],[0,18],[1,18],[0,21],[1,15],[1,14],[1,4],[1,-11],[1,-13],[2,-8]],[[12179,28123],[0,-24],[1,-13],[-1,-13],[-1,12],[0,15],[-1,-3],[-2,33],[1,1],[0,22],[1,2],[1,4],[0,-20],[1,-16]],[[12103,28610],[-1,-8],[-1,4],[0,14],[1,-2],[1,-8]],[[12095,28624],[-1,-5],[-1,16],[1,17],[0,9],[1,5],[1,-1],[1,-11],[0,-14],[0,-7],[-2,-9]],[[12199,28688],[1,-4],[1,2],[1,-1],[2,-1],[0,-10],[0,-20],[-1,2],[-1,-5],[-1,-2],[0,-8],[-1,-2],[-1,3],[-1,3],[-1,5],[-1,12],[1,19],[1,6],[1,5],[0,-4]],[[12211,28664],[-1,-9],[-1,2],[-1,6],[-1,20],[0,11],[1,2],[1,-4],[0,-4],[1,-3],[1,-21]],[[12210,28826],[0,-13],[-1,4],[-1,15],[-1,20],[1,-1],[0,-6],[1,-6],[1,-13]],[[12203,28919],[0,-10],[-1,-1],[-1,-9],[1,-14],[-1,7],[0,8],[-1,-1],[-1,18],[-1,-2],[0,-14],[-1,16],[0,16],[-1,17],[0,7],[2,-3],[1,-3],[1,-2],[0,-3],[1,-1],[1,-11],[1,-15]],[[12164,29143],[0,-10],[-1,2],[0,9],[0,7],[-1,3],[0,10],[1,6],[0,4],[0,4],[1,-8],[0,-11],[0,-16]],[[12176,29214],[0,-7],[1,1],[1,-15],[0,-22],[0,-11],[-1,-2],[0,-12],[0,-9],[0,-9],[0,-6],[1,-6],[-1,-1],[-1,-1],[0,12],[0,10],[-1,0],[-1,7],[0,-11],[0,-11],[-1,-7],[0,8],[-1,18],[-1,-1],[0,-6],[-1,4],[1,12],[-1,16],[-1,16],[0,14],[0,22],[1,19],[1,15],[1,-1],[1,-3],[1,-1],[1,-2],[0,-7],[0,-12],[1,-11]],[[12167,29175],[-1,-11],[-1,8],[0,17],[1,12],[0,12],[0,14],[1,17],[0,12],[1,1],[0,-23],[-1,-23],[0,-16],[0,-20]],[[12180,29295],[0,-11],[-1,4],[0,2],[0,3],[0,1],[0,2],[0,2],[-1,3],[0,12],[2,-8],[0,-10]],[[12183,29369],[0,-14],[-1,-13],[0,-21],[0,-12],[-1,-1],[-1,8],[-1,12],[-1,15],[1,9],[1,12],[1,-6],[1,21],[1,-10]],[[12176,29419],[-1,-12],[-1,5],[0,3],[0,12],[0,5],[1,8],[0,5],[1,-2],[1,-10],[-1,-14]],[[12174,29485],[0,-14],[1,1],[0,-10],[-1,-6],[0,2],[-2,-22],[-1,1],[0,7],[0,12],[0,9],[1,-2],[1,8],[0,10],[1,4]],[[12177,29490],[-1,-15],[-1,6],[0,6],[-1,5],[0,23],[1,-6],[0,-7],[1,-4],[0,-3],[1,-2],[0,-3]],[[12143,29532],[1,-5],[1,0],[0,-12],[1,-19],[-1,-5],[-1,-13],[-1,-5],[0,-12],[-1,-2],[0,9],[0,9],[0,-1],[-1,-3],[-1,0],[0,12],[0,14],[1,13],[0,15],[1,13],[1,-8]],[[12181,29585],[1,-4],[0,-5],[1,-2],[0,-8],[-1,-5],[0,-3],[-1,0],[-1,18],[-1,-1],[0,10],[0,-1],[1,1],[1,0]],[[12162,29692],[2,-27],[1,-23],[1,-22],[4,-33],[1,-19],[2,-15],[1,-16],[0,-17],[0,-15],[-1,7],[-1,20],[-1,13],[0,-28],[-2,8],[-1,-7],[-1,16],[-1,-2],[0,-28],[-1,-8],[-1,-10],[-1,-9],[0,-15],[-1,6],[-2,-20],[-1,-2],[-1,16],[-1,0],[0,-17],[-1,-8],[0,5],[-1,17],[0,-1],[-1,-2],[-1,-5],[0,-7],[1,-13],[0,-2],[1,-3],[2,-10],[1,-18],[0,-15],[0,-3],[-1,-2],[-1,-9],[-1,19],[-2,2],[0,-3],[0,9],[-1,1],[-1,-5],[-1,1],[-1,11],[0,15],[-1,14],[0,11],[-1,7],[-1,-5],[-1,3],[0,16],[1,20],[2,18],[1,11],[0,8],[1,28],[1,10],[2,15],[1,0],[1,-9],[0,6],[0,21],[0,9],[1,31],[-1,34],[-1,2],[0,10],[-1,-6],[-1,-33],[0,-8],[0,-37],[0,-15],[-1,0],[-1,0],[-1,-25],[0,-14],[-1,1],[-1,-4],[-1,-3],[0,15],[0,25],[1,30],[0,26],[0,23],[0,16],[0,9],[0,11],[0,15],[0,2],[1,5],[1,9],[0,13],[0,30],[0,18],[1,4],[0,12],[2,-15],[3,-34],[3,-23],[4,-34]],[[12173,29883],[2,-7],[1,0],[1,7],[1,3],[2,0],[1,0],[1,7],[1,6],[2,-5],[2,-9],[0,-2],[1,1],[1,0],[2,-13],[-1,-13],[-1,7],[-1,-6],[1,-17],[0,-18],[-1,-22],[1,-22],[0,-16],[-1,-17],[0,-18],[-1,-2],[0,-13],[-1,-18],[-1,-14],[-1,-12],[0,-10],[-1,-9],[-1,-11],[-1,-12],[-1,-9],[-1,-9],[-1,-11],[-1,-13],[0,-10],[-2,2],[-2,8],[-2,16],[-1,23],[-2,19],[-2,26],[-2,34],[-2,28],[-2,14],[-1,10],[-1,15],[-1,37],[0,12],[1,6],[2,9],[0,-2],[1,5],[1,6],[0,16],[1,17],[1,18],[2,12],[1,6],[1,-6],[3,-13],[2,-11]],[[12331,30018],[-1,-3],[-2,5],[-1,5],[0,13],[-1,19],[0,17],[0,11],[1,8],[0,17],[1,13],[1,9],[1,-3],[1,-2],[2,-5],[1,-23],[1,-9],[0,-11],[-1,-8],[-2,-7],[-1,-9],[-1,-21],[1,-6],[0,-10]],[[12323,30158],[1,-9],[-1,0],[-1,9],[1,10],[-1,11],[1,0],[0,-11],[0,-10]],[[12122,30162],[0,-2],[1,11],[0,2],[1,-5],[2,-12],[1,-16],[1,-20],[0,-16],[1,-15],[1,-21],[1,-16],[2,-15],[1,-23],[1,-16],[1,-15],[1,-13],[0,-13],[1,-12],[1,-9],[1,-18],[0,-23],[1,-28],[0,-24],[0,-26],[0,-18],[-1,1],[-2,7],[-1,4],[-1,-5],[-1,-8],[-2,15],[-2,16],[-1,4],[-1,2],[-1,13],[-2,23],[-1,15],[-2,6],[-2,5],[-1,12],[0,18],[-2,27],[0,17],[-1,11],[-1,10],[-1,5],[0,36],[-1,23],[-2,14],[0,14],[0,21],[-1,11],[-1,19],[-1,21],[0,14],[-1,10],[-1,13],[0,27],[0,13],[1,22],[0,7],[1,5],[1,-8],[3,-10],[1,-17],[4,-37],[3,-25],[1,-8]],[[12088,30372],[1,-3],[1,2],[1,-19],[0,-26],[0,-23],[1,-19],[1,-8],[1,-10],[0,24],[0,19],[1,24],[1,10],[0,2],[0,8],[1,-2],[1,-7],[0,-3],[1,-8],[1,-7],[1,-6],[1,-6],[1,-4],[0,-12],[0,-17],[1,-1],[1,-6],[0,-15],[0,-16],[-1,-14],[0,-21],[1,-11],[0,-10],[1,-19],[0,-16],[1,-4],[0,-10],[0,-22],[1,-7],[0,-13],[0,-12],[0,-13],[-1,-2],[1,-26],[3,-27],[1,-12],[2,-11],[0,-16],[1,-2],[2,1],[0,-22],[0,-19],[-1,8],[0,-10],[1,-12],[-1,-11],[0,1],[-1,2],[-1,5],[-1,0],[0,-9],[1,0],[0,-1],[1,-3],[1,-7],[0,-5],[1,0],[1,-2],[1,-10],[1,-14],[0,-6],[2,-17],[3,-30],[2,-32],[0,-28],[0,-30],[1,-34],[1,-24],[2,-15],[1,-26],[-1,-21],[0,-17],[-1,-16],[-1,-7],[-1,-1],[0,-16],[1,-7],[1,-7],[1,-3],[1,-18],[0,-19],[0,-14],[1,-3],[0,-3],[0,-12],[0,-11],[0,-14],[0,-10],[-1,-13],[1,-10],[0,-11],[2,-7],[1,8],[0,4],[0,19],[2,17],[1,0],[1,-8],[2,-2],[1,-10],[-1,-27],[0,-26],[1,-17],[0,-11],[-2,-6],[-1,-16],[0,-21],[1,-18],[0,-8],[0,-19],[-1,-11],[-1,-13],[0,-19],[0,-10],[0,-32],[1,-17],[0,-12],[-1,-7],[-2,-22],[-1,-11],[-1,-16],[-2,-15],[-1,-29],[-1,-27],[0,-18],[1,-10],[0,-9],[0,-15],[0,-7],[-2,-8],[1,-13],[0,-18],[-1,-20],[-1,-6],[-2,-12],[-2,-14],[-1,-18],[0,-14],[-2,-1],[1,-13],[0,-22],[1,-22],[0,-22],[-2,-4],[-1,-1],[-3,13],[-2,16],[-3,4],[-3,-9],[-3,-16],[-6,-21],[-2,-13],[-2,5],[-2,3],[-2,-1],[-3,-2],[-3,-11],[-1,-28],[-1,-15],[-2,-8],[-3,3],[-2,-13],[-3,5],[-2,-14],[-1,-14],[-1,-4],[-1,3],[-1,12],[-1,10],[-1,-7],[-2,5],[-2,1],[-1,9],[-1,14],[0,26],[0,13],[1,32],[1,17],[2,9],[-1,25],[-2,30],[1,23],[1,16],[1,23],[0,13],[-1,23],[-1,12],[0,16],[1,10],[1,11],[0,22],[0,22],[0,19],[-1,9],[-1,7],[1,13],[0,18],[0,16],[1,16],[0,13],[-1,6],[1,10],[1,-2],[1,-4],[2,10],[1,13],[0,17],[0,21],[2,3],[2,5],[1,7],[0,21],[2,5],[3,2],[3,1],[4,22],[2,21],[1,25],[1,15],[0,21],[0,3],[-2,21],[0,21],[1,5],[1,-1],[1,11],[1,0],[1,1],[0,13],[1,16],[0,18],[-2,16],[-1,10],[-1,11],[1,18],[2,7],[1,1],[1,8],[-1,15],[-1,-7],[-1,-5],[-2,2],[-1,-10],[-1,15],[-2,8],[-1,-1],[-1,-12],[-1,11],[-1,8],[-2,17],[-2,-28],[-1,15],[-1,-10],[-1,-6],[-1,-8],[-3,-3],[-1,11],[-1,8],[-1,-11],[-1,18],[-1,13],[1,42],[2,33],[0,26],[1,21],[1,29],[-1,15],[0,22],[0,28],[0,16],[1,14],[1,10],[1,10],[1,7],[1,17],[-1,18],[0,13],[0,21],[0,20],[1,23],[-2,-12],[-1,-18],[0,-15],[-1,1],[-2,-14],[-2,-23],[-2,-37],[-1,-22],[-1,-6],[-1,-6],[-1,-7],[-2,-4],[-1,-8],[-1,2],[-1,7],[0,5],[-2,5],[1,21],[2,7],[1,16],[1,16],[2,16],[1,16],[1,4],[1,-5],[0,10],[1,10],[1,3],[0,13],[1,11],[0,9],[-1,2],[0,25],[-1,6],[-1,10],[-1,4],[0,-11],[-2,6],[-1,10],[0,14],[2,2],[2,11],[0,17],[1,33],[0,5],[0,20],[0,3],[1,2],[-1,23],[0,3],[0,12],[0,18],[1,-13],[0,1],[1,5],[1,13],[1,27],[-1,7],[-1,17],[-1,0],[-1,20],[-1,16],[-2,8],[-2,9],[-1,13],[1,10],[0,9],[-1,12],[1,0],[2,7],[1,20],[0,16],[1,2],[1,4],[6,-1],[2,-9],[1,9],[1,11],[2,-1],[2,-16],[1,-22],[0,-19],[-1,-22],[-1,-20],[1,-11],[0,-22],[2,-14],[0,-15],[-1,-12],[2,9],[0,30],[-1,3],[0,14],[0,32],[1,17],[0,9],[-1,26],[0,6],[1,15],[1,18],[2,4],[2,0]],[[12296,30707],[-2,-3],[0,6],[-1,2],[0,7],[0,8],[1,5],[0,-8],[2,-9],[0,-8]],[[12058,30701],[0,-11],[0,-9],[-1,3],[-2,-1],[-1,9],[-2,6],[0,-1],[-1,-8],[-1,-10],[-1,-10],[-1,-1],[-1,3],[0,4],[0,6],[1,12],[0,14],[1,11],[-1,8],[0,8],[1,5],[0,6],[0,-1],[2,-11],[3,-13],[2,0],[1,-13],[1,-6]],[[12285,27354],[2,0],[3,3],[2,7],[5,28],[4,36],[-1,15],[-2,3],[-2,-11],[-1,-9],[-1,6],[0,19],[0,9],[1,4],[1,4],[-1,21],[-2,16],[0,11],[-1,26],[-1,15],[-1,3],[0,-27],[-1,-38],[-5,-52],[-3,-39],[-3,-23],[-2,-20],[-2,-36],[-6,-30],[-3,-43],[-3,-59],[-2,-48],[-5,-32],[-2,-8],[-2,-6],[0,-22],[0,-14],[-1,0],[-1,11],[-1,2],[-1,9],[-1,-11],[-1,-4],[0,-19],[-1,2],[-2,3],[-1,-4],[-1,14],[-1,31],[-2,30],[0,21],[1,10],[2,-2],[1,17],[2,-3],[1,7],[2,5],[-1,8],[0,18],[1,10],[1,-15],[3,-25],[2,-16],[1,-2],[0,26],[-2,19],[-4,20],[-2,40],[-2,27],[-2,23],[2,41],[2,28],[0,18],[1,16],[4,2],[4,6],[2,29],[4,38],[4,25],[4,42],[5,30],[2,61],[0,31],[3,26],[5,4],[4,22],[5,18],[2,1],[0,12],[-2,9],[-4,-4],[-3,-22],[-3,-2],[-5,0],[-2,-24],[-2,-18],[-2,-22],[0,-12],[0,-29],[-2,-8],[-1,-4],[0,2],[-4,-62],[-1,-9],[-3,-8],[-1,-15],[-1,-4],[-1,-22],[-3,-17],[-1,-16],[-1,-17],[-2,-5],[0,7],[0,13],[0,9],[1,4],[0,-1],[1,9],[1,13],[-1,6],[0,12],[0,16],[0,35],[-1,21],[0,11],[-2,4],[0,26],[0,30],[0,27],[0,17],[1,18],[0,13],[3,32],[2,5],[1,21],[1,13],[3,1],[4,-15],[1,-17],[3,-9],[2,11],[0,6],[0,14],[1,7],[-2,11],[-1,-9],[-2,-2],[-1,8],[-1,6],[-2,4],[-1,18],[2,13],[1,16],[3,23],[1,20],[-2,-4],[-2,-17],[-2,-16],[-3,-26],[-4,-25],[-3,-8],[-1,-18],[-3,-15],[-1,-5],[0,20],[0,18],[-2,8],[1,24],[-1,19],[1,35],[0,13],[0,9],[-1,-11],[-1,-29],[0,-23],[-1,-39],[2,-37],[-1,-42],[-1,-3],[-1,-2],[-2,-21],[-1,-8],[-1,0],[-2,-38],[-3,-18],[-1,-21],[-2,-19],[-3,-16],[-4,-14],[-2,-16],[-3,-6],[-2,9],[-2,-6],[-1,-1],[1,12],[1,7],[3,11],[-2,4],[-2,-2],[-1,15],[0,22],[1,3],[2,-1],[1,5],[-1,5],[-2,5],[-1,-4],[-2,-5],[-1,3],[0,19],[0,12],[-1,-1],[-1,3],[-2,6],[-2,7],[0,8],[2,17],[-1,-2],[-2,-4],[-1,5],[-1,16],[0,9],[1,5],[2,2],[1,6],[3,-7],[1,-8],[1,4],[-1,13],[0,23],[0,24],[0,14],[-1,2],[-1,-13],[0,-10],[-3,-18],[-1,-15],[-2,-6],[-4,-2],[-2,17],[0,14],[1,12],[0,7],[-1,8],[-1,5],[0,17],[0,13],[0,15],[3,9],[-1,10],[-1,1],[-1,17],[-1,13],[1,3],[1,2],[0,9],[-2,4],[-1,12],[0,23],[0,15],[3,9],[0,22],[-1,20],[0,21],[0,20],[0,18],[0,34],[2,2],[1,-15],[3,1],[3,-33],[1,-13],[2,-13],[1,-2],[2,7],[1,7],[1,12],[-1,12],[-2,6],[-3,18],[0,19],[-1,12],[0,18],[-1,7],[0,8],[1,12],[1,1],[1,-8],[2,-17],[-1,-17],[1,-13],[0,12],[1,1],[0,-9],[1,-19],[1,-20],[2,-8],[-1,17],[-1,16],[0,28],[1,7],[1,-6],[1,-13],[0,-13],[1,-20],[1,-11],[1,-7],[2,-6],[-2,-7],[-1,-18],[-1,-16],[-3,1],[-2,-2],[2,-16],[-2,-14],[-1,-13],[-1,-29],[-1,-18],[-2,-8],[-1,-18],[1,-11],[1,-13],[2,2],[1,32],[2,39],[1,15],[1,-5],[0,-14],[2,0],[7,90],[1,-10],[3,11],[2,16],[4,7],[2,23],[1,21],[4,12],[3,10],[2,13],[2,34],[6,32],[7,27],[4,22],[-2,12],[-2,-1],[-2,-14],[-3,-16],[-3,-10],[-3,-26],[-4,-13],[-7,-19],[-5,-9],[-3,-29],[-4,-33],[-4,-18],[-1,-9],[-1,4],[-1,5],[-8,98],[-1,3],[-1,11],[-1,21],[0,14],[-2,14],[-1,22],[-1,28],[-1,24],[-1,12],[-1,10],[-1,-3],[-1,0],[-1,1],[-1,2],[-1,8],[-2,9],[-2,3],[0,13],[-1,9],[-1,3],[-1,17],[2,-3],[3,-5],[0,-4],[0,13],[1,12],[0,11],[0,17],[1,-12],[1,1],[0,19],[0,15],[-2,14],[-1,9],[0,10],[1,7],[1,0],[1,2],[0,16],[1,4],[2,-7],[2,-2],[-1,12],[-1,7],[-2,6],[-2,9],[2,11],[2,1],[0,-12],[3,-9],[0,-5],[2,8],[2,0],[1,5],[1,0],[1,0],[0,-13],[2,11],[0,-14],[1,-13],[1,-8],[1,2],[-1,13],[1,11],[0,11],[1,-7],[2,-14],[2,-21],[2,-44],[3,-35],[1,-5],[2,-14],[3,-20],[2,-17],[3,10],[2,-5],[2,10],[-1,14],[-1,-2],[-3,4],[-2,13],[-3,15],[-4,37],[-4,50],[-2,15],[-6,44],[0,17],[2,-1],[0,3],[3,-7],[2,5],[1,20],[1,0],[2,6],[1,24],[1,8],[2,4],[2,4],[0,-1],[1,6],[-1,9],[0,-5],[-1,-1],[-1,6],[-1,4],[-1,-2],[0,-7],[-1,-4],[-1,-4],[0,-2],[-1,-3],[-1,6],[-1,-7],[0,-4],[-1,0],[-1,7],[0,12],[0,-2],[1,0],[-1,19],[-1,4],[0,4],[-1,5],[0,12],[1,-2],[1,0],[1,4],[1,3],[1,-1],[1,0],[1,-2],[1,0],[1,-5],[1,-4],[0,-6],[1,-2],[1,-5],[0,-6],[1,2],[-1,13],[-1,13],[1,3],[1,3],[1,15],[-1,11],[1,4],[0,9],[0,7],[1,8],[1,9],[1,7],[1,9],[1,5],[1,-3],[1,-7],[2,-11],[1,2],[1,-11],[1,-11],[1,-11],[1,-13],[2,-10],[2,-16],[2,-34],[1,-25],[0,-30],[2,-16],[1,-15],[1,-21],[1,-19],[1,-6],[2,1],[0,5],[1,12],[1,-2],[1,3],[0,14],[-2,11],[-4,30],[-1,37],[-1,5],[-1,14],[-1,20],[1,10],[2,7],[1,6],[-1,8],[-1,4],[-3,15],[-1,11],[-1,10],[-3,16],[-2,14],[-1,10],[-1,9],[0,15],[0,14],[-1,6],[-1,-9],[-1,-2],[0,1],[-3,11],[-1,12],[0,3],[-1,0],[-1,-9],[0,-18],[-1,-12],[-1,-5],[-1,-6],[0,-6],[-2,-13],[-1,6],[0,6],[-1,5],[0,7],[-1,1],[-1,6],[-1,1],[-1,-2],[-1,0],[0,-5],[-1,14],[-1,-8],[0,-10],[-1,20],[1,10],[0,14],[-1,8],[-1,3],[-2,1],[-1,-2],[-1,0],[0,-4],[-1,3],[-1,-2],[-1,7],[0,8],[-2,5],[-1,8],[-1,-6],[-1,-4],[0,-2],[-1,3],[-1,13],[-1,5],[0,6],[-1,13],[0,13],[-1,12],[0,3],[-1,3],[-1,0],[0,7],[-1,6],[-1,12],[0,20],[-2,19],[0,11],[-1,14],[0,13],[-1,6],[-1,13],[-1,6],[-1,18],[-1,14],[0,11],[-1,2],[0,11],[0,15],[0,14],[1,23],[1,12],[1,8],[0,7],[0,7],[0,17],[1,22],[1,-2],[1,4],[2,6],[1,8],[0,5],[-1,18],[-1,15],[1,22],[-1,34],[8,62],[4,15],[3,0],[0,-2],[3,2],[3,-5],[2,-4],[3,-5],[1,4],[1,15],[0,25],[-1,4],[-1,9],[-2,5],[-3,30],[-3,0],[-2,-7],[-2,17],[-1,6],[-2,9],[-2,11],[-4,-16],[1,-8],[2,-15],[0,-34],[0,-13],[-2,-19],[-2,-8],[0,10],[-1,-1],[-1,-15],[-2,-9],[0,-3],[-1,-2],[1,-21],[-1,-8],[0,4],[-2,-4],[0,-6],[-1,-25],[0,-14],[-1,-2],[0,-15],[-1,6],[-1,9],[-2,17],[0,6],[-2,16],[0,22],[-1,18],[0,19],[-1,18],[1,6],[1,22],[1,21],[1,4],[1,47],[3,18],[2,21],[2,13],[2,-1],[-1,14],[-1,23],[1,-4],[0,19],[0,16],[1,39],[0,22],[0,18],[1,10],[1,12],[2,20],[2,22],[1,23],[0,22],[1,22],[0,16],[-2,-10],[-1,-7],[0,-3],[-1,-10],[-2,-13],[-1,6],[-2,5],[-2,-5],[-2,1],[-2,11],[-1,-8],[-1,4],[-3,-2],[-2,-10],[-2,-11],[-3,2],[-2,3],[-1,9],[-1,-3],[-2,17],[-2,15],[-2,5],[-1,-8],[-1,-5],[-1,-5],[-2,6],[-2,8],[0,-11],[-2,-21],[-1,-12],[-1,-11],[-2,-13],[-3,-17],[-2,-9],[-3,-2],[0,-14],[-1,8],[-1,9],[0,11],[-1,17],[1,4],[-1,15],[0,19],[-2,23],[-1,22],[-2,26],[-1,30],[-1,5],[0,10],[-1,21],[-2,12],[-1,25],[-1,24],[2,-4],[0,-4],[2,-4],[2,-1],[1,6],[2,-14],[2,-8],[3,-8],[2,-4],[0,13],[-1,7],[-1,0],[-2,3],[-2,9],[-1,11],[-1,13],[-1,2],[-1,3],[-3,13],[-1,8],[-1,5],[-1,10],[-1,7],[-2,10],[-2,12],[-2,19],[-2,24],[0,20],[0,14],[-2,1],[-2,12],[-2,24],[-2,12],[-2,18],[-2,33],[-1,35],[-3,16],[0,10],[0,20],[0,17],[1,0],[1,15],[0,24],[1,-4],[1,-11],[2,-10],[1,2],[1,13],[1,19],[1,5],[1,-3],[1,-3],[1,3],[2,-8],[2,1],[2,4],[2,-11],[2,-1],[1,5],[2,-7],[2,-11],[4,-9],[5,-8],[6,1],[2,2],[2,-10],[2,-17],[2,-5],[1,-3],[1,-3],[2,-5],[2,0],[2,4],[-1,11],[1,16],[-1,19],[-2,0],[-1,4],[-2,3],[-3,6],[-1,12],[-2,14],[-4,10],[-2,6],[-2,8],[-3,6],[-2,15],[-1,10],[-2,7],[0,10],[-1,23],[-2,11],[-1,14],[-1,19],[-2,-1],[0,-21],[0,-17],[0,-21],[0,-17],[-1,-1],[-2,-1],[-2,10],[-1,12],[-1,24],[1,18],[1,3],[0,-10],[1,-2],[1,8],[1,10],[1,11],[1,13],[0,12],[1,9],[2,7],[1,4],[1,5],[1,9],[0,11],[1,-4],[2,2],[2,3],[0,9],[1,16],[1,23],[1,10],[0,-11],[1,-1],[0,11],[0,11],[0,13],[0,15],[-1,7],[0,-7],[0,-7],[-1,-7],[-1,8],[-1,6],[0,11],[1,11],[1,11],[0,15],[2,3],[1,-3],[2,-4],[1,3],[1,9],[1,9],[0,22],[0,21],[0,28],[0,26],[0,36],[0,22],[0,23],[-1,20],[0,21],[-1,22],[-2,34],[0,18],[1,0],[2,2],[2,1],[1,0],[2,14],[3,40],[5,55],[4,42],[4,34],[1,11],[3,16],[1,22],[4,21],[3,15],[1,-5],[-1,-14],[1,-10],[3,0],[4,10],[2,4],[1,-16],[2,-7],[2,-7],[3,-7],[2,-17],[1,-18],[0,-16],[2,-7],[4,-13],[0,-14],[0,-15],[2,-27],[1,-42],[2,-16],[3,-31],[-2,-28],[-1,-17],[-1,-29],[-3,-23],[-3,-7],[-6,-28],[-5,-23],[-3,-23],[-4,-27],[-3,-26],[-4,-10],[0,-18],[0,-15],[2,-19],[1,-31],[2,-23],[1,-25],[1,13],[1,18],[0,20],[1,24],[2,33],[1,20],[2,5],[1,14],[2,22],[2,29],[5,9],[2,4],[3,19],[3,10],[2,0],[0,-12],[2,-12],[1,-13],[-1,-10],[-4,-11],[-2,-10],[1,-3],[1,-12],[0,-14],[3,2],[4,15],[2,7],[1,10],[2,10],[2,9],[-2,16],[-2,3],[0,13],[1,0],[4,9],[1,4],[1,-4],[1,-5],[1,-13],[1,3],[-1,10],[-1,15],[0,9],[1,-1],[1,4],[1,10],[0,3],[3,1],[2,-6],[3,-30],[2,-33],[2,-26],[-1,-7],[2,-14],[4,-13],[2,-20],[-1,-12],[-1,-17],[-2,-7],[-3,-6],[-3,-12],[-3,-16],[-2,-22],[-1,-50],[-1,-52],[0,-24],[1,-21],[1,-17],[1,8],[-1,19],[-1,20],[1,-1],[1,8],[1,31],[0,31],[1,16],[3,7],[3,29],[4,9],[3,8],[2,-16],[1,-17],[2,-1],[3,-7],[2,-7],[4,-25],[4,-23],[8,-26],[0,-10],[-2,-3],[-1,-2],[-1,-5],[1,-9],[1,0],[2,-2],[0,-4],[-1,-9],[-1,-15],[1,2],[1,2],[2,-6],[1,-2],[5,-5],[1,-2],[1,-20],[0,-15],[2,5],[1,-5],[2,-15],[0,-2],[2,-13],[0,-4],[1,-8],[1,6],[-1,8],[-3,22],[0,3],[0,22],[1,22],[0,15],[2,18],[1,18],[0,11],[1,2],[2,13],[2,2],[1,-10],[2,2],[0,16],[2,-6],[0,6],[1,-11],[1,10],[1,2],[1,-16],[2,-4],[2,8],[1,-6],[2,10],[1,8],[3,-6],[2,-2],[1,-21],[2,5],[1,-17],[1,-6],[1,10],[1,0],[0,-12],[2,-9],[1,-13],[2,-4],[1,-4],[1,-1],[0,9],[1,7],[2,9],[1,1],[-1,-29],[-1,-3],[0,-17],[1,-14],[1,-16],[0,-13],[-1,-12],[-1,-16],[-1,-9],[1,-6],[-1,-8],[2,-7],[0,-8],[-1,-8],[2,-15],[2,-18],[1,-53],[1,-36],[1,-38],[3,-36],[0,-17],[-2,-6],[1,-22],[0,-36],[-1,-19],[0,-19],[1,-39],[-2,-10],[0,-18],[1,-23],[-1,-4],[-1,1],[-1,16],[-1,41],[-2,-6],[2,-18],[0,-19],[1,-22],[-1,0],[-1,-14],[-1,28],[-2,23],[0,22],[1,15],[-2,11],[-3,3],[-2,10],[-3,19],[-2,26],[-1,18],[-2,21],[-1,26],[-3,18],[-3,27],[-2,40],[-2,25],[-3,35],[-2,8],[-1,17],[-2,19],[-1,11],[-1,8],[0,2],[0,1],[-1,-6],[0,-15],[0,-13],[1,-14],[1,-13],[1,-14],[1,-8],[2,-28],[1,-15],[3,-29],[2,-31],[3,-26],[1,-36],[0,-9],[-1,-3],[-1,5],[-1,12],[-2,14],[-2,16],[-4,19],[-2,2],[-4,4],[-3,2],[-2,5],[-5,21],[-4,10],[-3,-1],[-2,-11],[-2,-6],[-4,-13],[-4,-13],[-1,-16],[1,-11],[1,-3],[2,5],[4,9],[2,8],[2,9],[2,3],[2,-5],[3,-2],[2,-3],[2,-7],[-1,-8],[-2,-1],[-1,-6],[1,-19],[1,-11],[3,6],[2,7],[3,8],[2,-4],[2,-14],[3,-18],[0,-10],[0,-13],[-2,-7],[-1,-17],[-1,-7],[-1,0],[-2,-10],[-1,-23],[-1,-12],[-2,-8],[-1,-10],[-2,-27],[-1,-15],[-2,-39],[1,-11],[1,-11],[-2,-22],[0,-28],[0,-39],[1,-18],[1,-3],[1,-6],[1,14],[1,2],[1,17],[0,15],[0,8],[-1,17],[0,23],[1,57],[0,22],[1,11],[1,-11],[2,11],[0,17],[1,8],[1,20],[2,14],[1,-5],[1,3],[1,-17],[0,-18],[0,-12],[2,12],[1,-10],[0,-12],[-1,-11],[0,-15],[0,-17],[1,-12],[1,-7],[0,-22],[0,-18],[-1,-13],[0,-14],[1,-15],[2,-12],[1,-25],[1,2],[1,-9],[1,4],[1,9],[1,4],[1,3],[0,16],[-1,11],[1,3],[1,-13],[1,-14],[1,-1],[1,10],[1,4],[1,-13],[0,-4],[2,7],[0,21],[4,6],[1,-10],[1,-20],[2,-30],[1,-25],[1,-25],[-1,-8],[-3,-7],[-4,-2],[-3,-8],[-2,-24],[1,-2],[1,3],[1,4],[2,5],[3,5],[3,2],[2,-4],[0,-17],[0,-25],[0,-20],[0,-26],[-1,0],[-1,-1],[-2,-1],[-2,10],[-2,0],[1,-16],[-1,-8],[-1,-6],[0,-16],[1,6],[1,-12],[1,-9],[2,-8],[2,-13],[1,-12],[-1,-14],[1,-5],[0,-14],[1,1],[2,15],[-1,-37],[2,-5],[1,-2],[1,7],[0,-16],[0,-24],[1,-7],[1,4],[1,-18],[1,-19],[0,-16],[0,-15],[1,-8],[1,-33],[-1,-1],[-2,-10],[-3,-12],[-3,-14],[-1,-12],[0,-13],[-1,-13],[0,-16],[-1,-9],[-1,-4],[0,-16],[0,-12],[-1,-5],[-1,4],[-1,5],[-1,6],[-2,11],[0,-10],[0,-13],[1,-4],[1,-6],[1,-9],[1,-3],[2,2],[1,9],[1,14],[1,19],[2,17],[0,15],[1,6],[1,13],[1,6],[1,7],[0,-22],[1,-18],[-2,-5],[-1,-10],[-2,-14],[0,-16],[-1,-14],[1,-5],[1,1],[0,-14],[1,-1],[1,3],[1,5],[0,15],[2,9],[1,4],[0,11],[1,-6],[1,13],[1,5],[1,-13],[-1,-15],[-1,-4],[-1,-6],[-2,-10],[1,-12],[0,-10],[1,-9],[1,1],[2,-3],[1,-14],[0,-17],[0,-14],[-1,-16],[1,-8],[1,-12],[1,-22],[0,-35],[-1,-7],[-2,-19],[1,-17],[-1,-6],[-3,5],[1,7],[-2,7],[-1,14],[-1,-2],[-2,-11],[-1,-14],[-2,-8],[-2,-9],[1,-8],[2,-4],[1,-7],[-2,-24],[0,-14],[2,15],[1,10],[2,3],[2,-2],[1,-1],[1,-5],[1,-8],[1,3],[1,18],[2,16],[1,-6],[1,-4],[1,0],[0,-7],[2,-41],[1,-59],[1,-17],[0,-27],[-4,-2],[1,-15],[1,-10],[1,-12],[2,-9],[0,-26],[-1,-14],[-3,-2],[-3,-1],[-3,-10],[-1,-14],[1,-7],[1,5],[1,10],[2,4],[1,2],[1,-9],[1,-5],[2,-10],[1,6],[2,0],[0,-7],[1,-17],[-1,-6],[-1,-9],[0,-10],[1,-7],[1,-14],[1,-23],[0,-14],[-1,-41],[0,-28],[0,-30],[0,-19],[-1,-14],[-2,-25],[-2,-11],[0,-18],[1,-11],[2,5],[3,2],[0,-20],[1,-24],[-1,-14],[-1,-9],[0,-12],[-1,-9],[1,-12],[2,-1],[1,4],[1,2],[0,-12],[1,-22],[0,-30],[0,-21],[0,-14],[1,4],[1,-9],[0,-23],[-1,-1],[-2,-1],[-3,5],[-3,-7],[1,-10],[2,-16],[2,-9],[0,-18],[1,6],[1,-3],[2,2],[1,-6],[1,0],[1,-19],[1,-27],[1,-11],[0,-47],[0,-25],[0,-27],[-1,-2],[-2,-2],[0,-10],[1,-7],[1,-16],[1,-17],[0,-19],[-2,-17],[0,-17],[1,2],[1,-14],[0,-29],[-2,-18],[-1,-4],[-2,21],[-2,1],[-1,9],[-2,14],[-3,14],[-4,15],[-3,12],[-1,15],[-2,2],[-1,20],[-2,5],[-2,-1],[-1,9],[0,-15],[1,-10],[2,-12],[2,-11],[1,-19],[3,-7],[3,0],[3,-26],[3,-29],[3,-11],[2,-5],[2,-12],[1,-5],[1,-17],[2,-2],[2,7],[0,-12],[-1,-8],[0,-15],[1,-8],[2,-12],[2,-13],[1,-37],[-1,-35],[1,3],[1,-6],[1,-26],[0,-28],[-1,-15],[-1,-8],[1,-9],[1,5],[1,-16],[0,-36],[0,-25],[0,-10],[-2,4],[-1,-8],[-3,9],[-4,3],[-3,1],[-2,12],[-2,11],[-1,18],[-2,4],[-2,1],[-2,2],[1,-26],[2,-16],[3,-13],[3,-18],[7,-4],[1,-13],[5,-2],[3,-16],[2,-66],[1,0],[1,-5],[-1,-18],[0,-18],[-1,-10],[1,-7],[1,8],[1,-2],[0,-22],[0,-16],[-2,-15],[-4,-5],[-2,3],[0,-3],[1,-11],[1,-7],[1,0],[2,2],[1,7],[2,8],[2,-7],[0,-25],[0,-25],[1,-21],[-2,-20],[-1,-8],[-2,1],[0,-13],[2,-1],[1,4],[1,2],[1,-16],[1,-15],[-2,-21],[0,-21],[1,-44],[1,-25],[0,-24],[-1,-7],[1,-15],[2,-17],[-2,-48],[-1,1],[-1,-13],[1,-9],[1,-21],[3,-52],[-1,-23],[-2,-19],[1,-14],[-1,0],[-1,-5],[0,-11],[2,-6],[-1,-26],[-1,-7],[1,-19],[1,-15],[-1,-55],[0,-20],[-1,-19],[1,-14],[-1,-34],[0,-68],[0,-43],[1,-15],[-1,-18],[-1,-32],[0,-19],[-2,-7],[0,16],[-1,13],[-2,47],[0,24],[0,48],[-2,39],[0,37],[-1,18],[-1,35],[0,33],[-1,21],[-1,25],[1,36],[-1,23],[0,18],[-1,8],[-1,21],[0,-22],[1,-25],[0,-24],[0,-21],[1,-36],[0,-44],[1,-52],[0,-32],[0,-29],[-1,-27],[0,-12],[0,-20],[0,-21],[1,-31],[0,-32],[-1,-20],[-3,8],[-1,5],[-2,15],[-2,1],[-5,9],[-3,16],[-3,1],[1,-19],[-3,12],[-2,-18],[-1,-16],[-1,-16],[1,-3],[2,14],[4,8],[2,5],[4,-5],[2,-12],[3,-2],[3,-10],[3,-23],[2,-17],[1,-16],[-1,-21],[0,-28],[2,0],[1,-15],[0,-16],[0,-18],[1,-8],[-1,-9],[-1,-6],[0,-17],[1,-14],[0,-17],[1,-13],[1,-17],[1,-5],[1,-12],[-1,-11],[0,-11],[2,2],[0,-30],[-1,-14],[0,-45],[-1,-28],[1,-28],[0,-25],[-1,-27],[-1,-11],[-1,3],[-3,0],[-4,13],[-2,0],[-1,4],[-5,-1],[-2,11],[-2,-4],[-3,1],[-2,2],[-1,-14],[0,-10],[3,5],[3,-4],[1,3],[3,-20],[4,-2],[3,4],[4,-5],[4,-11],[2,-11],[1,-6],[-1,-19],[1,-16],[1,-15],[1,-37],[0,-37],[-1,-22],[-1,-17],[-2,7],[-2,-8],[-1,-5],[-1,-11],[-2,-8],[-1,-15],[-3,-13],[-2,-5],[-3,10],[-1,11],[-1,7],[-1,-3],[-1,-18],[-1,-19],[-1,-22],[2,8],[2,9],[3,2],[3,-1],[4,-1],[3,7],[1,15],[3,11],[1,10],[2,0],[1,4],[0,-10],[0,-12],[0,-26],[0,-19],[1,-11],[-1,-21],[0,-37],[-2,-53],[-2,-23],[-2,-24],[-2,-26],[-2,-6],[-3,-52],[-6,-29],[-2,-24],[-3,-16],[-1,-18],[-3,-29],[-2,-17],[-1,-26],[-1,-28],[0,-3],[2,13],[2,14],[3,28],[3,33],[4,35],[4,19],[2,29],[3,19],[3,20],[2,14],[1,-3],[1,5],[1,-15],[1,-36],[1,-43],[-2,-18],[0,-6],[1,-10],[0,-15],[-1,-14],[-5,-12],[-4,-18],[-2,-11],[0,-12],[2,0],[2,-2],[2,9],[2,15],[1,2],[0,-13],[-1,-18],[-2,-14],[-1,-11],[-1,3],[-1,10],[-1,-9],[-1,-23],[1,-16],[-1,-30],[1,-28],[0,-21],[-1,-34],[-1,-22],[0,-21],[1,6],[2,16],[1,12]],[[12393,24549],[-1,-7],[0,-14],[0,-13],[-1,5],[0,1],[0,22],[-1,25],[-1,13],[-1,11],[-2,-2],[-2,-9],[-1,11],[-1,-3],[0,23],[2,16],[-2,-1],[-1,0],[0,15],[2,6],[1,19],[2,12],[1,23],[1,24],[0,27],[-2,6],[-1,4],[0,11],[-1,13],[-1,18],[1,21],[1,20],[1,28],[-2,3],[-1,-18],[-1,3],[-1,-14],[-2,-5],[-1,-10],[-2,-19],[-1,-35],[-1,-8],[-2,5],[-1,16],[-2,3],[-2,0],[-1,8],[-2,-5],[-1,13],[0,15],[-1,3],[-1,7],[-1,4],[2,7],[2,9],[3,14],[-1,8],[-1,-4],[-2,-5],[-1,8],[-2,-5],[-2,1],[-1,-6],[0,3],[-1,20],[-1,5],[0,-8],[-1,-2],[0,11],[-1,16],[1,6],[1,13],[2,19],[0,17],[1,33],[1,26],[1,12],[1,22],[1,23],[1,2],[2,-14],[1,1],[-1,10],[0,15],[0,18],[-1,13],[-1,-6],[-3,-26],[-1,-10],[-2,-20],[-2,-11],[-1,-18],[0,-23],[-1,-9],[-1,-9],[-1,15],[0,14],[-2,-6],[-1,-6],[0,17],[0,20],[2,-7],[1,11],[2,14],[-2,3],[-1,4],[1,25],[-2,4],[-2,17],[-3,23],[1,23],[1,8],[0,15],[-1,8],[2,16],[1,12],[1,6],[0,-12],[1,5],[1,17],[-1,-3],[1,24],[4,35],[-1,5],[1,30],[3,21],[0,14],[-3,-6],[-2,-18],[-1,-20],[-3,-14],[-1,-3],[0,-24],[-1,-12],[-1,-21],[-2,-26],[-1,-13],[0,19],[1,21],[1,17],[0,15],[0,22],[1,20],[1,25],[3,33],[3,23],[-5,13],[1,35],[2,22],[1,27],[2,13],[1,27],[0,26],[1,43],[-1,21],[-1,10],[-1,-19],[-1,-29],[0,-57],[-2,-14],[-2,-22],[0,-40],[-1,-39],[0,-16],[-2,-49],[-1,-31],[-1,-1],[-1,-5],[0,13],[0,17],[-1,-4],[0,-14],[-2,2],[-1,1],[1,22],[0,25],[1,19],[3,19],[-1,19],[-1,14],[0,22],[-1,6],[0,-51],[-2,11],[-1,-24],[1,-8],[0,-16],[-1,-18],[-1,-36],[0,-14],[-1,-37],[0,-33],[-2,6],[-1,-4],[0,18],[-1,21],[-2,-4],[-1,23],[1,27],[0,21],[0,22],[0,51],[1,11],[2,-8],[1,18],[-2,14],[0,13],[0,18],[-1,11],[-1,-12],[-1,-15],[-1,-16],[-1,-8],[-1,14],[0,18],[0,13],[-2,0],[0,27],[0,35],[1,22],[1,17],[1,6],[0,17],[0,15],[-1,5],[-1,12],[-1,14],[-1,-32],[0,-26],[-1,-21],[0,-22],[-2,15],[-1,-15],[-2,6],[-2,15],[0,23],[1,28],[2,36],[0,20],[1,12],[0,19],[-3,26],[0,29],[1,8],[2,26],[2,12],[2,-13],[1,7],[0,25],[0,23],[2,10],[2,17],[2,15],[-1,29],[-1,16],[-1,-16],[-3,-29],[-2,-10],[-1,-34],[-2,-11],[-1,-22],[-1,-8],[-1,-25],[-2,1],[-1,-15],[-1,-8],[-1,8],[0,14],[-1,8],[-1,17],[-1,-2],[1,15],[1,15],[-1,29],[-1,4],[-1,1],[-2,11],[1,14],[-3,64],[2,1],[-1,17],[2,7],[0,14],[0,4],[0,21],[1,-8],[2,-20],[2,-6],[3,9],[1,1],[2,13],[0,23],[0,10],[-2,3],[-1,-7],[-1,8],[-1,16],[-1,19],[-1,-13],[0,-17],[1,-16],[-1,-1],[-1,-5],[-1,-4],[-2,15],[0,1],[1,46],[0,15],[0,19],[1,15],[1,19],[0,27],[-1,4],[-1,-17],[-1,-34],[0,-23],[-1,-15],[-2,-55],[-1,-24],[-1,-24],[-1,16],[-1,15],[1,11],[-1,16],[0,9],[-1,4],[-1,11],[1,8],[-1,12],[-1,-8],[-3,63],[1,13],[0,19],[0,11],[0,19],[-2,8],[0,32],[1,2],[1,-9],[1,-10],[0,32],[-1,22],[1,10],[1,-3],[1,3],[-1,16],[-1,4],[-1,8],[-1,-9],[0,-22],[-3,-6],[-1,14],[-1,18],[-1,17],[-1,-8],[1,-23],[0,-12],[-1,5],[-1,9],[-1,17],[0,25],[0,20],[1,13],[1,-9],[1,8],[2,26],[-1,16],[1,9],[2,-20],[3,-32],[4,-25],[-1,23],[-2,35],[-1,28],[-2,4],[-1,17],[-2,5],[-1,15],[-2,18],[-1,11],[2,33],[1,-11],[0,17],[0,24],[1,4],[1,16],[1,12],[2,24],[2,10],[1,7],[0,-4],[1,-14],[0,-18],[1,-17],[1,-14],[1,-21],[2,-10],[2,-27],[1,-19],[1,2],[0,16],[0,27],[1,11],[-2,10],[-2,12],[0,16],[-2,6],[-1,31],[-1,19],[0,14],[1,-4],[1,-20],[1,-11],[2,-30],[1,3],[0,31],[1,4],[1,-12],[2,-13],[1,0],[1,2],[1,5],[2,-34],[1,-60],[1,-10],[1,18],[0,43],[-3,48],[-4,26],[0,17],[2,2],[2,27],[2,42],[3,52],[3,59],[5,28],[3,-22],[1,-1],[-1,28],[-1,50],[1,63],[5,31],[5,3],[1,-4],[-1,18],[-1,6],[-2,5],[-2,-14],[-3,-7],[0,20],[2,49],[4,60],[4,71],[3,57],[3,45],[0,22],[-3,-28],[-3,-36],[-2,-46],[-3,-47],[-3,-41],[-3,-53],[-2,-63],[-2,-36],[-3,-43],[-2,-43],[-1,-33],[-3,-30],[-1,-47],[-4,-27],[0,-24],[-1,-18],[-2,-9],[-1,-4],[-1,10],[0,24],[-2,27],[-1,6],[-4,5],[-2,22],[1,55],[2,51],[1,80],[1,38],[2,30],[0,74],[1,43],[1,5],[3,-10],[3,16],[-1,12],[-2,12],[-4,2],[-1,13],[-1,-42],[-2,-57],[-2,-72],[-1,-67],[-1,-73],[-4,-85],[-3,-51],[-1,-21],[0,-25],[-2,-10],[-3,-21],[-1,-20],[-2,7],[-1,-15],[-2,-8],[-1,4],[-1,-17],[-1,1],[-2,-18],[-3,-11],[-3,5],[-1,-4],[-1,20],[-1,3],[0,27],[-2,3],[-1,8],[0,13],[2,7],[0,26],[0,42],[-1,23],[0,20],[0,20],[1,14],[1,18],[-1,16],[-1,-11],[-5,2],[1,16],[1,39],[-1,22],[1,21],[0,30],[0,18],[2,2],[1,21],[1,25],[2,18],[2,9],[1,22],[1,23],[1,22],[2,16],[0,21],[2,6],[1,-1],[-1,-13],[1,-3],[1,7],[1,12],[3,11],[3,3],[5,32],[-1,4],[-2,12],[-2,13],[1,13]],[[12002,31429],[-1,0],[-1,8],[-1,13],[-2,8],[0,18],[1,-8],[2,-13],[1,-13],[1,-13]],[[12002,31429],[0,2],[0,12],[1,11],[-1,6],[0,-6],[-1,9],[-1,17],[1,16],[0,13],[1,6],[0,-16],[1,-24],[1,-20],[2,-17],[0,-16],[0,-18],[-1,10],[0,15],[-1,-3],[0,-14],[-2,6],[0,11]],[[12155,31610],[0,-18],[-2,2],[-3,13],[-1,18],[-3,7],[-2,8],[-2,14],[-1,18],[0,9],[1,5],[1,1],[1,15],[1,3],[2,7],[1,3],[1,-15],[2,-8],[2,-13],[1,-13],[1,-13],[1,-14],[1,-14],[-2,-4],[0,-11]],[[11970,31811],[-1,-19],[0,-15],[-1,-5],[-1,3],[-1,22],[0,12],[-1,-4],[0,12],[0,11],[-1,5],[-1,1],[0,9],[1,12],[0,6],[1,-13],[1,-2],[1,0],[1,-5],[1,-9],[0,-12],[1,-9]],[[12102,32174],[1,-2],[2,9],[2,-1],[2,-10],[4,-26],[2,-21],[2,-16],[1,-13],[1,-4],[2,-12],[1,-22],[1,-28],[1,-8],[1,-8],[3,-28],[3,-13],[2,-4],[2,-8],[0,-16],[0,-14],[-1,-9],[0,-17],[-1,-6],[-2,-5],[-2,-8],[-2,-29],[0,-14],[-2,28],[-3,-3],[-2,12],[-2,30],[-1,22],[-1,9],[-1,8],[-1,14],[-1,23],[-2,14],[-1,21],[-1,14],[-2,5],[-3,22],[-1,23],[-2,27],[-1,17],[0,19],[0,12],[1,8],[-1,5],[-1,13],[2,-2],[1,-8]],[[11965,32221],[2,-6],[2,3],[-1,-10],[1,-11],[1,-13],[1,-9],[1,-9],[1,1],[1,9],[1,-4],[1,-13],[2,-9],[1,-9],[2,-8],[1,-4],[1,-8],[0,-21],[-1,-1],[-1,-10],[0,-17],[0,-19],[-1,1],[-1,-17],[0,1],[-1,-8],[-1,2],[-1,-4],[-1,-3],[-1,-7],[1,-16],[-1,-25],[0,-15],[0,-12],[-1,-15],[-1,-9],[0,5],[0,-17],[0,-16],[-1,-21],[0,-17],[-1,-8],[-1,4],[-1,10],[-1,13],[0,22],[0,-6],[-2,6],[0,20],[-2,8],[-1,-7],[-1,-2],[-1,5],[-1,4],[-1,9],[-1,16],[1,-1],[2,-7],[1,-1],[0,10],[0,13],[-2,0],[0,13],[0,16],[-1,1],[0,6],[0,11],[-1,-2],[-2,-1],[-1,2],[0,16],[0,13],[1,13],[-1,1],[-1,5],[-1,15],[2,9],[1,4],[1,12],[1,15],[1,-3],[2,-3],[1,1],[1,2],[1,3],[1,-11],[1,10],[1,14],[0,21],[-1,16],[0,9],[-1,14],[1,13],[0,18]],[[11955,32235],[1,-16],[0,-15],[-1,-14],[2,-4],[0,-17],[-1,-10],[-1,-14],[-1,-14],[-1,-3],[0,-11],[-1,-6],[-1,5],[-1,-4],[-1,-12],[0,-2],[-1,10],[0,21],[0,16],[1,18],[-1,12],[-2,11],[-1,17],[-1,11],[-1,5],[0,11],[1,8],[1,-11],[1,3],[0,11],[1,14],[1,8],[1,3],[0,9],[3,-9],[2,-16],[1,-15]],[[11948,32456],[-1,-23],[1,-12],[1,-8],[0,-16],[1,-19],[-1,-16],[-1,-6],[-1,-15],[0,-21],[0,-14],[-1,4],[0,-10],[-1,-14],[-1,5],[-1,8],[-1,6],[-1,-5],[-1,5],[-1,15],[-1,15],[0,13],[0,17],[0,12],[-2,4],[-1,7],[-1,2],[-1,4],[0,14],[0,16],[0,11],[1,11],[0,14],[2,3],[1,2],[1,-9],[2,-4],[1,-4],[1,-2],[1,-10],[0,9],[1,11],[0,11],[0,13],[1,6],[1,6],[1,-8],[1,-28]],[[11934,32593],[0,-9],[-2,-9],[0,16],[1,7],[1,-5]],[[11911,32795],[0,-9],[0,-11],[-1,-3],[-1,-8],[-1,-15],[-1,25],[0,-25],[-1,16],[-1,-23],[-1,4],[-1,10],[1,38]],[[11934,32593],[1,10],[-2,10],[0,11],[-2,0],[-1,5],[-1,0],[-1,4],[0,14],[-1,14],[-1,7],[-1,1],[-1,-3],[-1,3],[-1,6],[-1,5],[0,14],[0,15],[1,4],[-1,12],[0,18],[-1,11],[-1,11],[0,13],[1,9],[1,-1],[1,2],[0,9]],[[12013,32817],[1,9],[1,14]],[[12049,33638],[1,-12],[0,-8],[1,-6],[5,-15],[2,-33],[2,-8],[3,-27],[3,-12],[1,-4],[3,-39],[3,-26],[2,-31],[0,-29],[0,-31],[-2,-24],[-1,-15],[1,-19],[2,8],[1,6],[1,5],[2,7],[1,2],[1,-5],[1,-19],[2,-23],[0,-13],[1,-17],[0,-9],[1,17],[1,5],[1,9],[0,14],[0,13],[1,13],[3,-7],[0,-3],[0,-10],[-1,-7],[-1,-12],[2,-9],[2,8],[0,-6],[3,-20],[-1,-16],[-1,-13],[2,-1],[1,-4],[0,-14],[-2,-11],[2,-8],[1,14],[1,14],[2,17],[1,15],[1,-6],[1,-10],[2,-8],[0,3],[2,-4],[4,-17],[1,-4],[2,-18],[1,-10],[1,-5],[2,-4],[1,-10],[2,-33],[1,-7],[1,-14],[5,-4],[2,-3],[0,-4],[1,4],[3,-17],[2,-12],[1,-2],[0,-12],[1,-8],[-1,-4],[-2,-2],[-1,-4],[-1,-13],[-1,-6],[-2,-4],[-1,-3],[-1,-9],[-1,8],[-1,-7],[-1,-7],[-2,-6],[-1,2],[0,-15],[-1,-4],[-2,-8],[-2,-3],[-2,-5],[0,-21],[1,-11],[1,2],[2,3],[4,7],[1,2],[2,13],[2,9],[3,3],[3,16],[2,3],[1,10],[1,6],[2,6],[1,9],[2,-1],[1,-14],[-1,-12],[-2,-7],[3,-6],[2,5],[2,-5],[0,-18],[-1,-16],[2,-5],[3,5],[1,-7],[0,-10],[-1,-4],[-1,-9],[1,-21],[-1,-3],[-1,3],[-2,-16],[-2,-13],[-3,-20],[-3,-9],[-5,-19],[-3,-22],[0,-20],[2,-10],[1,3],[1,6],[2,7],[3,3],[1,3],[2,-3],[1,8],[-1,4],[-1,7],[2,5],[0,10],[2,9],[1,9],[1,12],[2,4],[1,7],[2,7],[4,-12],[-3,-9],[1,-6],[5,4],[1,2],[0,-12],[-1,-11],[2,5],[2,11],[2,-7],[2,-16],[2,-14],[3,-4],[2,-2],[1,-22],[1,-12],[0,-19],[1,-15],[4,-7],[2,-20],[3,-12],[4,-20],[1,-16],[0,-21],[0,-13],[-2,-3],[-1,-20],[1,-10],[1,-15],[0,-12],[-3,-14],[-2,-3],[-3,3],[-4,-1],[-3,-1],[-2,-18],[-2,-8],[1,-7],[1,1],[1,0],[2,6],[2,-1],[1,-4],[2,-6],[2,13],[1,-6],[1,7],[2,8],[3,14],[2,-3],[2,-3],[1,-6],[1,-11],[1,-12],[2,-19],[3,-27],[1,-25],[1,-33],[-1,-2],[-1,-2],[-2,-18],[-5,-1],[-4,-11],[-5,-2],[-2,4],[-3,2],[-6,-16],[-3,-3],[-3,1],[-2,-8],[1,-18],[1,1],[1,2],[1,1],[1,-6],[1,-1],[1,2],[1,6],[1,-8],[2,-4],[2,4],[1,8],[2,0],[3,3],[3,7],[2,-19],[1,-16],[1,-17],[1,2],[3,4],[1,16],[3,21],[2,7],[3,1],[2,7],[3,14],[1,-2],[1,-7],[1,-6],[2,-3],[1,7],[1,12],[2,-15],[3,-14],[2,-10],[2,-6],[1,-15],[1,-14],[0,-26],[1,-32],[0,-31],[0,-21],[1,-2],[1,-1],[2,5],[1,17],[1,20],[0,15],[2,53],[2,14],[0,4],[2,10],[1,10],[2,2],[1,-1],[1,12],[2,11],[3,3],[2,-4],[0,-7],[2,-9],[2,9],[4,-24],[0,27],[1,30],[1,21],[1,28],[0,28],[1,9],[1,-12],[1,-14],[2,-6],[2,-6],[3,-15],[1,8],[2,-1],[2,7],[2,9],[2,-7],[2,-10],[1,-8],[1,-12],[1,-18],[1,5],[2,10],[3,20],[4,37],[3,28],[2,-11],[2,-5],[1,11],[2,-12],[2,19],[1,0],[2,-10],[1,-12],[1,-25],[-1,-14],[1,-24],[2,-20],[0,-15],[-1,-25],[1,-46],[0,-56],[0,-37],[1,-2],[2,-21],[1,-17],[0,-8],[0,-14],[0,-21],[-3,-36],[-1,-30],[1,-18],[2,-18],[2,-16],[0,-13],[-2,10],[-4,20],[-4,10],[0,-15],[1,-2],[1,-9],[5,-25],[3,-25],[4,-37],[1,-30],[0,-22],[-3,-17],[1,-4],[2,-5],[2,-2],[1,-11],[2,-33],[0,-48],[1,-31],[2,-42],[0,-45],[1,-36],[0,-38],[1,-30],[-1,-3],[0,-36],[-1,-30],[0,-36],[-2,-2],[1,-26],[0,-20],[0,-22],[1,-26],[1,-20],[1,-26],[2,-42],[0,-14],[1,3],[0,17],[1,3],[1,-23],[1,-19],[1,-19],[-1,-10],[-2,15],[-1,5],[0,-35],[1,-35],[-1,-26],[-2,-9],[-1,8],[-1,7],[-2,17],[-1,23],[-2,17],[-1,26],[-2,22],[-1,1],[-1,1],[-1,-7],[0,-21],[0,-12],[0,-13],[-1,2],[-1,8],[-1,16],[-2,32],[2,9],[-2,7],[-2,-1],[-1,9],[-2,19],[-2,28],[-1,20],[-2,17],[-3,14],[-3,25],[-4,32],[-2,25],[-1,-5],[-1,0],[0,-11],[0,-11],[1,-7],[1,-13],[0,-12],[2,-13],[2,-11],[2,-26],[2,-25],[1,-9],[2,-11],[4,-34],[3,-35],[8,-75],[2,-29],[2,-34],[3,-45],[-1,-7],[-2,0],[-1,-2],[-2,-13],[-3,-10],[-3,4],[-3,8],[-4,-10],[-9,16],[-2,-25],[-4,13],[-3,-11],[-3,-9],[-3,-11],[0,17],[-1,14],[-1,3],[-2,-2],[-1,1],[-1,3],[-1,6],[-1,4],[-1,-7],[-1,5],[-2,-2],[-2,5],[-3,4],[-2,9],[-1,17],[-4,65],[-4,51],[-3,22],[-2,2],[-5,48],[-4,27],[-1,41],[-1,-7],[0,15],[-2,6],[-2,0],[-2,24],[-1,8],[-1,10],[-1,11],[-2,12],[-2,14],[-2,14],[-2,16],[-4,26],[-7,36],[-1,16],[-2,23],[-3,16],[-3,22],[-1,8],[-2,6],[-3,29],[-3,28],[-2,14],[-1,1],[-2,0],[-1,14],[-2,4],[-1,5],[-2,5],[-2,13],[-2,19],[-2,27],[-2,16],[-3,8],[-3,18],[-1,13],[-7,41],[-3,14],[-2,22],[-9,72],[-3,0],[-2,9],[-1,14],[1,26],[-2,10],[-2,11],[-3,16],[-4,35],[-3,29],[-1,19],[-2,15],[-4,34],[-2,22],[-4,15],[-1,8],[-2,5],[-2,7],[-1,5],[-1,15],[-1,7],[-1,4],[-2,6],[-2,11],[-2,15],[-2,17],[-1,11],[-1,11],[-6,32],[-3,18],[-1,15],[-1,-5],[-1,15],[-2,15],[-2,12],[-2,14],[-3,16],[-3,15],[-3,11],[-6,53],[-2,9],[-1,-3],[-3,0],[1,-11],[-1,-4],[-2,-5],[1,-8],[1,-7],[1,-20],[-3,-6],[1,-7],[2,-8],[1,-1],[2,-6],[3,-2],[2,-13],[1,-17],[3,-21],[1,-12],[1,-16],[1,-8],[0,-13],[1,2],[1,-5],[3,13],[1,-11],[3,-21],[2,-19],[1,-16],[3,-16],[0,-17],[0,-19],[0,-15],[0,-11],[-2,4],[-3,26],[-3,27],[-2,9],[0,-20],[1,-22],[2,-22],[0,-31],[3,-13],[2,-12],[1,-4],[1,-8],[2,-16],[1,-29],[2,-15],[-2,-5],[-1,-7],[2,-13],[0,-13],[-1,-3],[-1,8],[-1,9],[0,20],[-1,17],[-1,19],[-1,2],[-2,-2],[-1,-9],[2,-16],[-1,-14],[-1,-19],[-1,-7],[-1,-10],[-2,-13],[-2,-7],[-1,-10],[-3,-14],[-3,-16],[-2,-17],[-3,-8],[-2,-15],[0,-21],[1,10],[1,-18],[2,-8],[2,8],[3,16],[2,15],[0,5],[2,3],[1,15],[1,0],[1,-4],[3,10],[2,4],[3,-5],[1,-4],[0,14],[2,-11],[2,-2],[2,7],[1,-14],[1,-18],[0,-10],[2,-12],[1,-12],[2,-8],[1,-11],[-1,-18],[0,-17],[0,-19],[-2,-16],[-2,-16],[2,-8],[0,-14],[2,3],[1,8],[1,19],[1,14],[2,3],[1,2],[0,-11],[2,-18],[6,-20],[8,-65],[3,-19],[1,-10],[6,-34],[1,-19],[1,-22],[0,-10],[-1,-8],[-2,-10],[-1,-17],[-1,-23],[-3,-14],[-3,19],[-1,14],[-2,6],[-2,14],[-1,0],[-2,-11],[-2,-5],[-1,-9],[0,-13],[-1,-15],[0,-14],[-1,2],[-2,1],[0,-8],[-2,-6],[-2,-10],[-1,-14],[0,-21],[-2,-17],[-1,-27],[1,2],[1,2],[1,1],[2,7],[0,9],[1,-1],[2,4],[2,11],[2,15],[2,21],[2,16],[1,11],[2,1],[0,-12],[1,-11],[4,-35],[2,-9],[1,-6],[3,-8],[2,-2],[1,-24],[0,-28],[-1,-43],[-3,-34],[-1,-3],[-2,2],[-2,-11],[0,-18],[1,-12],[2,8],[2,2],[1,-16],[2,-5],[0,-10],[1,-27],[0,-41],[2,-18],[1,-18],[-1,-20],[2,-16],[-1,-17],[1,-19],[-1,-23],[-1,-25],[0,-27],[0,-23],[-1,-15],[-2,-2],[-4,-8],[-2,-12],[-2,-11],[-1,-3],[-3,-6],[-2,5],[-3,19],[-3,9],[-2,10],[-3,8],[1,-17],[1,-13],[1,-10],[1,-7],[1,-10],[1,-5],[2,-1],[2,-13],[2,-12],[2,-22],[1,-17],[0,-16],[-1,-3],[-2,-12],[-2,-13],[-2,-18],[1,-9],[-1,-19],[-1,-2],[-2,-7],[-1,1],[-2,-11],[-2,0],[0,8],[-2,-3],[-1,5],[-2,-3],[-1,1],[-2,2],[1,-10],[1,-22],[1,-13],[1,-14],[2,-9],[1,-9],[1,-7],[1,-6],[-1,-15],[-1,-16],[-1,-11],[-1,-5],[0,16],[-2,12],[0,6],[-1,-3],[-2,-13],[-2,-9],[0,-29],[-1,-16],[-1,-7],[-1,-2],[-1,-9],[-1,-8],[-1,-2],[-1,8],[-1,22],[-3,-3],[-1,22],[-2,-28],[-1,15],[-1,-12],[-1,3],[-1,8],[-1,-1],[0,17],[0,12],[1,14],[-1,3],[-1,-5],[-2,-6],[1,10],[-1,13],[-1,1],[0,12],[-2,-4],[-2,-3],[-1,7],[-1,1],[-1,2],[-2,-10],[-2,2],[-2,9],[-3,11],[-3,-4],[-2,16],[0,10],[0,28],[-2,64],[0,29],[-1,26],[0,-5],[-2,-14],[-2,-9],[-2,20],[0,15],[-2,24],[-1,21],[-1,-4],[-1,13],[-1,1],[0,15],[-2,15],[-1,3],[-1,12],[-1,9],[-1,18],[-3,15],[-1,10],[-1,8],[-1,8],[-2,0],[-1,-3],[-4,26],[1,16],[-1,8],[1,9],[0,3],[0,16],[-1,6],[-1,12],[0,20],[-1,13],[-2,7],[-1,6],[-1,15],[0,10],[-1,1],[-1,27],[-1,3],[-2,-1],[-1,4],[-1,13],[1,10],[0,13],[-1,20],[-1,24],[-1,4],[-1,-1],[-1,6],[1,12],[2,-1],[1,-2],[1,3],[0,12],[0,5],[0,7],[-1,-2],[-1,21],[1,7],[1,-1],[3,-7],[1,-11],[1,-10],[1,-13],[1,-11],[3,-21],[6,-19],[3,-23],[3,-24],[2,-32],[1,-1],[1,-3],[1,-10],[1,-14],[1,-13],[1,-26],[1,-10],[1,-11],[1,-15],[1,-4],[0,13],[1,0],[1,-18],[1,-9],[3,-17],[1,-9],[3,-12],[3,-25],[3,-23],[3,-29],[3,-24],[0,16],[-1,18],[0,16],[-1,30],[0,8],[-1,-14],[-1,-7],[-1,4],[-1,15],[1,14],[3,8],[-1,21],[-1,4],[-1,-1],[-2,1],[-1,1],[-1,8],[-2,12],[-2,6],[0,6],[0,9],[0,17],[-1,-5],[-1,15],[-2,7],[0,10],[-3,-2],[-1,16],[-1,15],[-3,31],[-1,22],[-2,21],[-1,28],[0,23],[0,22],[0,-2],[-1,1],[-1,2],[0,-6],[-2,-7],[-3,1],[-2,11],[-1,9],[-2,4],[-1,8],[-1,17],[1,-1],[1,6],[1,8],[1,17],[1,13],[1,11],[2,10],[0,19],[1,3],[0,11],[0,9],[1,7],[0,12],[-2,-3],[0,-14],[-2,-17],[0,-16],[-1,5],[-1,-3],[-1,-9],[-2,-9],[-2,-23],[-1,-20],[-2,3],[-1,0],[-1,11],[-2,15],[-1,17],[0,15],[1,5],[1,-1],[1,5],[-1,9],[1,6],[1,12],[1,15],[1,9],[2,7],[1,11],[2,12],[0,19],[1,0],[1,-1],[2,2],[2,-6],[-1,13],[1,10],[1,-6],[1,-5],[2,-10],[0,-14],[0,-11],[3,-3],[0,9],[-1,8],[0,10],[-1,19],[0,17],[-1,17],[1,11],[1,6],[-1,8],[0,13],[-1,13],[-2,-9],[-3,32],[-2,-5],[-1,-7],[-1,-1],[0,-16],[-1,-4],[0,16],[-1,2],[-2,3],[-1,8],[-2,19],[-2,-4],[-2,25],[-2,3],[0,-11],[1,-10],[2,-7],[2,-20],[2,-14],[2,-12],[3,-7],[2,-19],[-2,-18],[-1,-8],[-1,-6],[0,-14],[-1,-14],[-1,-6],[-2,-9],[0,-17],[-1,-12],[-2,-12],[-2,-11],[-1,1],[-1,-12],[-1,3],[-2,2],[-2,18],[-2,13],[-2,30],[-1,27],[-3,49],[-2,29],[0,18],[1,12],[0,15],[-1,10],[0,-12],[-1,-9],[-2,-1],[0,21],[-1,13],[-1,9],[-1,-7],[-1,-11],[0,15],[-1,11],[-1,10],[-1,15],[1,9],[1,-6],[1,1],[0,14],[1,11],[-1,17],[1,16],[1,-7],[1,-10],[1,-14],[0,-13],[-1,-14],[0,-13],[1,-7],[1,3],[1,11],[0,24],[0,8],[0,14],[1,11],[0,12],[1,11],[1,20],[1,20],[1,-6],[1,-10],[0,-17],[0,2],[1,17],[-1,19],[1,7],[0,-3],[0,20],[-1,37],[-1,2],[-1,-10],[-1,-8],[-1,-14],[-1,-17],[-1,-19],[-1,-18],[-1,-12],[-1,-2],[-2,-11],[1,11],[0,10],[0,16],[0,16],[-1,14],[1,18],[0,10],[-1,2],[-1,7],[0,11],[-1,12],[-1,8],[0,17],[0,14],[1,12],[1,16],[1,12],[-1,7],[0,-8],[-1,-14],[-1,0],[-1,0],[-1,-10],[0,-13],[-1,-17],[-1,-23],[0,-15],[1,-13],[-1,-8],[0,-14],[0,-13],[0,-9],[-1,-12],[1,-21],[0,-28],[1,-26],[-1,-11],[-1,1],[-1,1],[0,10],[-2,7],[-1,3],[-1,15],[-1,2],[-2,30],[-1,15],[-1,9],[0,23],[0,7],[-1,14],[-2,-1],[0,14],[1,5],[0,10],[1,19],[0,18],[-2,9],[-1,-1],[1,15],[0,21],[-1,16],[1,4],[1,-8],[1,-10],[1,-7],[1,-10],[1,-6],[0,12],[1,-2],[0,-10],[1,-17],[0,-2],[1,16],[0,15],[0,17],[0,29],[-1,15],[-1,8],[1,11],[0,15],[1,1],[1,13],[1,-2],[1,1],[1,1],[1,-1],[1,0],[0,19],[-1,3],[-2,-1],[-1,11],[0,11],[0,6],[-2,6],[-1,8],[-2,5],[-1,1],[-1,12],[-1,3],[0,10],[1,2],[2,-2],[2,3],[3,4],[3,15],[0,8],[-1,11],[-1,8],[0,12],[-4,-26],[-2,-9],[-2,-7],[-2,-1],[-1,6],[-1,18],[-1,20],[-2,14],[-2,28],[-1,28],[1,12],[0,16],[-2,-3],[0,21],[0,21],[-1,15],[0,-17],[-1,-19],[1,-13],[0,-12],[-1,0],[-1,11],[-2,2],[-1,-2],[-1,17],[1,13],[0,14],[0,15],[0,21],[0,16],[1,18],[0,31],[1,13],[-1,11],[-1,1],[1,16],[1,18],[1,12],[-2,7],[-1,-16],[-1,-12],[-1,3],[1,-13],[-1,-14],[0,-12],[1,-4],[-1,-17],[0,-19],[-2,-21],[0,-14],[-2,-10],[-2,-3],[0,12],[0,16],[-1,13],[-1,8],[-1,2],[-1,23],[0,19],[1,8],[0,18],[1,12],[2,4],[1,5],[0,12],[1,17],[1,25],[0,13],[-1,9],[0,-13],[-1,-11],[0,-15],[0,-7],[-1,3],[-1,-11],[-1,-9],[-2,-5],[0,12],[0,15],[0,17],[-1,-16],[0,-19],[0,-20],[-1,-30],[-1,-10],[-2,12],[-2,-12],[-2,3],[-1,-6],[-1,-14],[-1,-4],[-1,-9],[-1,5],[0,19],[0,13],[1,17],[1,17],[-2,-7],[-1,15],[-1,-13],[-1,12],[0,21],[0,20]],[[3691,50341],[1,-24],[-1,5],[-1,16],[-1,27],[-1,33],[-2,25],[0,28],[-1,48],[0,33],[0,25],[1,22],[1,11],[1,-6],[1,-13],[2,-40],[1,-11],[0,-16],[-1,-13],[-1,-14],[2,-13],[0,-19],[0,-8],[-1,-9],[2,-16],[0,-13],[0,-11],[0,-8],[-1,-3],[-1,-1],[0,-12],[2,-2],[0,-10],[-2,-11]],[[3947,50901],[2,-14],[1,5],[-3,-27],[-3,-16],[-3,-7],[1,41],[2,16],[2,-7],[1,9]],[[3632,52178],[0,-15],[-1,-4],[0,11],[-1,4],[-1,-2],[-1,-1],[1,-13],[-2,10],[0,21],[-1,23],[0,22],[0,14],[0,19],[0,15],[0,27],[1,30],[1,10],[0,16],[1,8],[1,8],[1,13],[0,-13],[-1,-16],[-1,-17],[-1,-40],[0,-28],[1,-24],[1,-31],[1,-26],[1,-14],[0,-7]],[[3676,53352],[1,-17],[-2,5],[-1,6],[0,-24],[-1,-22],[0,-24],[-1,-25],[-1,-24],[0,-54],[-2,-48],[-1,-28],[-1,-34],[0,-26],[0,-17],[1,-17],[0,-27],[0,-28],[0,-25],[1,-24],[0,-19],[0,-20],[1,-9],[0,-10],[-2,-6],[-2,1],[-1,6],[-1,3],[0,9],[-1,12],[-1,43],[1,56],[1,49],[1,50],[1,51],[2,92],[2,56],[1,45],[1,36],[1,14],[1,8],[1,-2],[1,-12]],[[3677,53472],[2,-33],[-2,4],[-1,-4],[-1,-4],[-1,33],[1,10],[1,4],[1,-10]],[[3674,53796],[-1,-21],[-2,-33],[-1,-14],[-1,-19],[-2,-23],[0,-17],[1,-7],[1,-7],[1,-5],[1,-6],[1,-9],[2,-11],[2,-7],[1,-3],[1,-10],[1,-18],[0,-17],[1,-20],[1,-14],[-1,-8],[-1,15],[-1,23],[-1,15],[-1,17],[-1,5],[-2,-7],[1,-14],[1,-14],[0,-12],[0,4],[-1,7],[-2,2],[-1,0],[0,-10],[-1,-17],[-2,-11],[0,5],[-2,5],[1,13],[1,13],[-1,3],[-1,-9],[-1,-12],[-1,-10],[-1,6],[-1,9],[-1,11],[-1,20],[0,27],[2,42],[1,34],[2,29],[2,35],[1,19],[1,10],[1,-2],[0,6],[1,16],[1,10],[1,11],[1,12],[1,6],[1,-2],[1,-14],[-1,-8],[-2,-19]],[[3966,56281],[3,-10],[4,2],[2,1],[1,-7],[1,-13],[2,-29],[0,-20],[-1,-31],[-1,-25],[-2,1],[-2,1],[-1,8],[-6,9],[-10,14],[-6,9],[0,4],[-4,-5],[-2,-5],[-2,3],[-1,1],[-1,9],[2,9],[2,7],[3,6],[0,19],[1,10],[2,4],[1,9],[6,3],[2,7],[7,9]],[[3930,56403],[1,-11],[0,2],[4,-24],[0,-2],[2,-12],[0,-4],[-1,-3],[-3,-3],[-10,-29],[-2,-2],[0,17],[0,3],[0,16],[3,26],[2,7],[0,23],[1,9],[2,-2],[1,-11]],[[3952,56474],[0,-5],[0,2],[4,-41],[1,-24],[-5,-36],[-8,-3],[-1,-2],[-4,4],[-2,21],[-2,37],[-1,54],[0,29],[0,52],[0,8],[0,11],[2,34],[1,18],[2,2],[2,3],[2,-27],[0,-9],[1,-20],[2,-47],[3,-36],[3,-25]],[[3967,56765],[3,-26],[3,9],[4,5],[1,5],[5,-24],[3,-57],[0,-31],[2,-32],[3,-63],[1,-65],[1,-27],[-4,-18],[-6,-20],[-2,12],[1,21],[-4,-33],[-1,-6],[-4,17],[-1,16],[-1,-11],[-5,22],[-5,42],[-2,45],[-1,42],[0,13],[3,-20],[4,4],[2,3],[0,16],[-4,0],[-5,31],[0,1],[0,30],[0,38],[0,38],[1,37],[3,19],[3,-16],[2,-17]],[[3982,56831],[-1,-44],[-4,0],[-3,0],[-2,12],[-1,4],[-1,18],[2,9],[1,-2],[0,-1],[2,-12],[0,27],[0,16],[0,9],[3,8],[1,-17],[0,-11],[3,-16]],[[3984,56937],[0,-11],[-3,3],[-1,48],[-2,31],[0,17],[1,-5],[5,-11],[1,-17],[-1,-48],[0,-7]],[[3982,57045],[1,-22],[-6,14],[0,43],[1,13],[2,-16],[2,-32]],[[4006,57372],[2,-3],[3,8],[5,-5],[4,-13],[3,-27],[1,-29],[1,-3],[2,-36],[1,-32],[1,-13],[1,-5],[2,-9],[2,-1],[2,-9],[4,-6],[3,9],[3,19],[3,29],[5,13],[3,3],[3,9],[5,9],[2,1],[4,2],[3,4],[2,0],[3,-10],[2,-15],[1,-19],[1,-13],[-1,-6],[-2,-5],[-3,-12],[-1,-11],[0,2],[-3,-40],[-1,-59],[0,-46],[-4,-44],[-7,-78],[-6,-51],[-6,-4],[-1,-23],[-9,-62],[-8,-51],[-7,-81],[-5,-86],[-6,-35],[-7,-60],[-5,0],[0,2],[-2,0],[-2,12],[-1,27],[-1,36],[-4,64],[-1,56],[-2,69],[1,34],[0,2],[-1,19],[-1,55],[0,27],[-1,31],[1,35],[-1,32],[2,16],[3,-3],[0,4],[0,5],[-1,4],[-2,3],[-3,23],[-3,17],[0,27],[2,-10],[3,-1],[0,5],[-1,6],[-2,8],[-2,14],[-1,11],[0,43],[2,26],[0,10],[-2,50],[0,16],[1,17],[1,-4],[3,-15],[2,-14],[3,-2],[3,2],[3,0],[5,12],[1,19],[1,22],[0,29],[1,25],[-1,1],[-1,-11],[0,-22],[0,-25],[-2,-22],[-5,-11],[-5,-3],[-4,12],[-3,15],[-2,9],[-2,1],[-2,7],[-1,54],[1,1],[1,14],[2,11],[4,25],[3,4],[6,-10],[3,-12],[5,-5],[4,-5]],[[3980,57399],[-2,-5],[-2,5],[0,14],[0,47],[2,-5],[2,-10],[2,-6],[1,-8],[0,-14],[-1,-11],[-2,-7]],[[4096,58556],[7,-22],[1,0],[8,-10],[3,-6],[0,-11],[2,-4],[0,13],[10,-27],[3,-46],[2,-47],[6,-72],[7,-29],[1,1],[2,0],[4,-8],[7,-27],[1,-27],[1,-18],[0,-1],[1,-7],[-1,-15],[0,-56],[-1,-31],[3,-40],[3,-38],[4,-24],[3,-3],[0,3],[3,11],[0,26],[-1,30],[-2,24],[2,5],[3,-16],[1,-21],[1,-16],[2,-32],[3,-51],[0,-19],[1,-90],[-3,-136],[0,-18],[1,-67],[3,-67],[2,-48],[4,-65],[3,-29],[4,-16],[6,-56],[2,-8],[3,-16],[5,-46],[3,-5],[3,-19],[3,-48],[1,-32],[2,-35],[0,-1],[2,-19],[1,-36],[2,-59],[1,-24],[3,-129],[-3,-136],[0,-5],[-4,-49],[-2,-70],[0,-19],[1,3],[2,-40],[2,-27],[1,-53],[0,-34],[-1,-33],[2,-11],[-1,-32],[2,-38],[5,-34],[3,-55],[5,-13],[8,-116],[0,-44],[1,-59],[2,-11],[0,-17],[0,-2],[0,-35],[-1,-8],[-3,38],[-4,55],[-2,29],[0,-2],[-7,79],[-3,45],[-4,59],[-2,35],[-3,62],[-1,48],[0,10],[-4,29],[-1,16],[0,6],[-2,49],[-2,32],[0,-24],[-1,-41],[-1,-7],[-2,3],[-4,51],[0,52],[-4,51],[-1,34],[-4,18],[-6,164],[-9,93],[-11,84],[-9,26],[-7,25],[-7,-7],[-11,-20],[-8,-11],[-8,3],[-6,25],[-7,22],[-6,31],[-2,33],[-4,37],[2,-3],[1,15],[-5,23],[-4,5],[-5,6],[-6,11],[-3,24],[-1,28],[-3,15],[0,1],[-5,12],[-1,-1],[-1,3],[-1,1],[-2,-5],[-5,2],[-8,-20],[-1,-2],[-2,-1],[-3,-7],[0,-5],[-5,-29],[-3,-13],[-4,-5],[-5,4],[-3,13],[0,9],[-2,24],[0,24],[0,20],[0,20],[-1,6],[-1,15],[0,1],[0,15],[-6,21],[-6,-2],[-5,19],[-3,-1],[-2,6],[-1,2],[-5,-12],[-5,4],[0,21],[0,1],[-2,0],[-3,13],[-3,18],[-1,23],[-1,15],[0,14],[0,19],[1,23],[-2,8],[0,26],[1,21],[1,29],[2,20],[0,-17],[1,-16],[2,-9],[0,-2],[0,12],[0,6],[-1,12],[0,16],[-1,16],[2,16],[0,24],[0,37],[2,36],[0,19],[1,28],[0,17],[1,15],[0,19],[1,33],[0,26],[2,37],[0,32],[2,32],[1,29],[1,23],[1,20],[0,11],[1,10],[1,14],[1,8],[2,-8],[2,-25],[0,1],[1,9],[-1,11],[0,14],[-1,24],[0,35],[1,13],[0,7],[12,173],[3,29],[0,3],[2,5],[0,19],[1,11],[5,26],[1,-10],[2,28],[1,8],[3,18],[0,5],[2,-14],[4,-5],[7,-8],[2,12],[12,0],[2,0],[1,15],[3,5],[5,-15],[2,2],[4,0],[3,-27],[3,-16],[-1,27],[1,16],[0,13],[5,-13],[3,0]],[[4064,58602],[-5,-15],[-5,3],[-3,12],[0,18],[-3,20],[1,14],[3,15],[3,26],[1,2],[3,-5],[4,-1],[3,-18],[0,-24],[-2,-32],[0,-15]],[[4043,58777],[-1,-1],[0,26],[2,65],[2,34],[3,19],[2,27],[1,0],[4,-16],[2,-38],[-2,-44],[0,-1],[0,-1],[-1,-13],[-2,-13],[-1,-9],[-2,-11],[-2,-8],[-2,-4],[-2,-5],[-1,-7]],[[4207,59706],[10,-28],[4,-17],[4,-18],[2,-12],[1,-4],[4,-2],[2,-9],[2,-15],[1,-6],[3,-35],[6,3],[4,-44],[4,-6],[1,-7],[2,-10],[1,4],[1,2],[1,3],[1,11],[3,5],[1,3],[1,-5],[2,-11],[1,-9],[-1,-10],[-2,-15],[-2,-28],[0,-12],[1,9],[1,10],[3,12],[1,2],[2,-4],[1,5],[1,3],[2,-1],[1,4],[0,12],[2,7],[2,0],[3,-25],[4,14],[9,-36],[0,-7],[-1,-17],[-1,-17],[1,-26],[3,-22],[0,-5],[2,-1],[5,-41],[2,-30],[1,-43],[0,-5],[2,-2],[0,-18],[0,-47],[2,0],[2,47],[1,-8],[2,-8],[0,-9],[1,-10],[1,-7],[1,-7],[2,-8],[4,-21],[-2,-47],[-6,-37],[0,-13],[-1,-12],[-2,-12],[-1,-8],[-1,-5],[-1,-9],[-1,-1],[0,-1],[0,-7],[3,-11],[2,-4],[0,9],[1,9],[0,7],[1,8],[2,11],[1,-1],[0,-5],[2,6],[2,1],[1,-9],[1,-6],[0,-7],[2,22],[-1,-1],[0,4],[0,15],[0,18],[1,10],[1,8],[1,10],[1,17],[0,15],[0,22],[1,9],[1,7],[0,11],[1,3],[1,-13],[1,-14],[0,-16],[0,-17],[-1,-11],[3,-15],[2,5],[1,11],[1,4],[1,-1],[1,-3],[1,0],[1,-1],[1,-2],[0,-3],[3,0],[1,-30],[0,-51],[-4,-27],[-3,-5],[-3,-16],[-2,0],[-2,-3],[-2,-16],[-3,-16],[-3,0],[-2,-2],[-2,-3],[2,-14],[-1,-32],[0,-26],[0,-41],[2,-21],[-2,-40],[-3,-27],[-2,21],[2,32],[-1,14],[-2,-59],[-3,-27],[-4,-13],[-8,-57],[-5,-5],[-1,22],[-2,13],[0,-16],[-4,-46],[-6,-34],[-7,-41],[-2,-26],[1,-3],[-1,-35],[-1,-40],[-3,-19],[-2,-8],[1,-13],[-2,-27],[0,-24],[1,-32],[4,-34],[2,-28],[2,-16],[0,-8],[0,-14],[0,-4],[-1,-1],[-3,5],[-2,0],[-1,-11],[-2,-13],[-1,-37],[1,-43],[2,-24],[0,-32],[-2,0],[-2,8],[-1,19],[0,16],[-2,2],[-2,3],[-3,-9],[-1,-6],[-1,-9],[-2,-18],[-1,-3],[-1,-9],[0,-24],[1,-10],[2,-25],[-1,-8],[-5,-2],[-3,-14],[-2,-32],[-3,-3],[-5,19],[-3,32],[-2,30],[-3,24],[-4,4],[-1,-3],[-3,-10],[-2,-18],[-2,-2],[-2,2],[0,-1],[-18,-27],[-9,-47],[0,-3],[-2,33],[-2,56],[-3,29],[-3,51],[-2,36],[-2,15],[-1,-2],[-3,10],[-1,-5],[-2,-22],[2,-26],[2,-32],[-1,-1],[1,-18],[-2,-6],[-4,0],[-2,24],[-2,22],[-1,45],[0,20],[0,29],[1,51],[0,32],[-5,36],[0,4],[-5,16],[-3,5],[-4,16],[-1,10],[-2,20],[-1,8],[-1,-3],[-2,-2],[-3,26],[-3,33],[-1,32],[-2,21],[0,16],[-1,6],[0,37],[0,6],[-4,109],[-1,12],[0,-49],[-4,24],[-4,48],[-2,0],[1,-28],[0,-31],[3,-37],[1,-10],[0,-24],[-2,0],[-9,23],[-4,13],[-10,39],[-5,0],[-15,-7],[-4,27],[4,48],[-8,20],[-1,7],[-4,15],[-4,31],[0,11],[1,16],[3,21],[1,1],[0,15],[0,31],[2,-6],[0,29],[1,11],[-3,18],[-2,8],[-1,0],[0,2],[-1,0],[-1,13],[0,24],[-2,15],[0,26],[2,56],[1,5],[1,49],[6,25],[3,-20],[1,-20],[1,-3],[0,8],[0,23],[-3,43],[12,97],[2,22],[1,5],[1,12],[4,41],[1,7],[1,3],[9,79],[1,9],[1,8],[4,22],[1,7],[3,18],[6,36],[10,47],[9,12],[7,11],[1,8],[4,10],[7,19],[5,16],[1,1],[2,3],[3,5],[4,5],[2,3],[5,7],[5,-12],[1,4],[1,15],[0,7],[9,5],[5,-1],[5,10],[2,0],[2,-1],[1,0]],[[4615,59767],[8,-3],[1,-2],[3,0],[11,0],[34,6],[0,-257],[1,-172],[22,-2],[17,3],[14,-1],[0,-79],[2,-367],[49,-2],[3,-1],[0,-87],[0,-128],[0,-197],[19,0],[1,0],[3,0],[58,2],[66,1],[21,1],[42,-1],[97,-3],[10,0]],[[5097,58478],[0,-68],[-10,0],[-15,-1],[0,-495],[-5,-5],[-9,0],[0,-18],[0,-111],[-2,-814],[0,-370],[0,-403],[-13,-6],[0,-211],[0,-590],[0,-813],[0,-100],[38,-2],[-1,-746],[0,-217],[0,-48],[0,-91],[0,-72],[0,-90],[2,0],[11,0],[1,-2],[1,-3],[24,4],[15,0],[3,-6],[22,6],[7,-3],[20,-6]],[[5186,53197],[0,-43],[1,-60],[3,-80],[3,-48],[2,-41],[5,-78],[4,-36],[9,-55],[11,-35],[9,-13],[12,-11],[10,13],[4,28],[2,8],[3,7],[3,-14],[0,-16],[0,-11],[-2,-9],[-1,-7],[0,-18],[2,-6],[4,-4],[3,1],[2,-8],[1,-9],[4,-5],[2,-6],[1,-17],[-1,-19],[-1,-31],[-3,-56],[-3,1],[-1,3],[-9,21],[-4,11],[-11,10],[-13,-3],[-15,-32],[-16,-61],[-18,-100],[-20,-99],[-14,-32],[-10,-10],[-11,-24],[-14,-41],[-7,-28],[-2,-10],[-10,-49],[-3,-15],[-2,-10],[-3,-11],[-7,-44],[-16,-95],[-21,-159],[-9,-120],[-7,-69],[-3,-30],[-5,-34],[-2,-12],[-1,-3],[-42,-57],[-14,-38],[-17,-30],[-9,-13],[-8,-14],[-9,-34],[-8,-53],[-8,-36],[-9,-33],[-8,-20],[-1,-1],[-7,-1],[-5,1],[-5,2],[-4,-5],[-5,-12],[-4,-18],[-8,-42],[-5,-22],[-9,-36],[-12,-50],[-9,-44],[-6,-22],[-4,-13],[-16,4],[-12,-10],[-3,-10],[-4,7],[-4,8],[-4,8],[-3,10],[-4,15],[-12,50],[-13,38],[-14,26],[-13,2],[-7,21],[-3,11],[-7,9],[-8,-44],[-3,-28],[-9,-23],[-12,1],[-9,22],[0,49],[1,53],[-1,41],[2,53],[-3,46],[-8,18],[-6,-12],[-9,-17],[-11,-8],[-7,-19],[-7,-10],[-11,-23],[-8,-7],[-5,20],[-5,8],[-5,-38],[-7,-68],[-5,-47],[-3,-19],[-2,-14],[-2,-18],[-2,-13],[-4,-24],[-2,-7],[-13,-34],[-12,-16],[-11,2],[-18,-15],[-10,-27],[-11,-84],[-9,-42],[-8,6],[-8,13],[-2,0],[-9,1],[-7,14],[-9,42],[-1,9],[-5,37],[-3,4],[-5,-26],[-6,-29],[-3,26],[0,35],[0,41],[-2,14],[-2,-5],[-2,-8],[-3,-21],[1,-27],[2,-60],[-1,-30],[-4,-47],[-6,-35],[-5,-33],[3,-26],[3,-26],[1,-25],[0,-23],[-2,-19],[-8,-27],[-6,-3],[-3,-8],[-3,-41],[0,-56],[2,-41],[4,-45],[-1,-46],[-5,-28],[-6,-9],[-6,-43],[-6,-10],[-6,-6],[-8,0],[-4,18],[-1,16],[-2,20],[-3,16],[-2,3],[-2,-4],[-2,4],[-3,12],[-9,46],[-8,24],[-4,-24],[-6,-31],[-8,26],[-7,38],[-6,4],[-10,-22],[-7,11],[-8,22],[-2,-1],[0,-32],[0,-72],[-3,-63],[-1,-74],[3,-50],[6,-46],[-2,-60],[-2,-36],[0,-13],[3,-99],[0,-45],[-1,-47],[3,5],[3,28],[4,27],[3,-15],[3,-21],[2,-55],[1,-72],[-2,-58],[-7,-25],[-6,-20],[-8,-48],[-6,4],[-4,-33],[-2,-21],[-5,-50],[-6,-58],[0,-42],[1,-40],[-5,-34],[-8,-48],[-2,4],[0,35],[0,31],[-4,25],[-4,34],[-2,6],[-4,-12],[-4,7],[-2,-8],[-2,-22],[-3,-51],[-3,-79],[4,-23],[5,-33],[0,-31],[-1,-45],[-4,-31],[1,-29],[3,-31],[3,-22],[3,12],[7,20],[2,-16],[1,-47],[-2,-53],[0,-43],[1,-32],[-1,-50],[-1,-33],[-3,-15],[-3,-12],[-2,-25],[-5,-16],[-5,-10],[-2,-21],[2,-16],[-1,-22],[-1,-14],[-1,-7],[-1,-13],[-2,-5],[-5,3],[-3,4],[-4,-13],[-3,-37],[-2,-18],[-4,-9],[-6,26],[-5,-3],[-10,-27],[-3,-35],[-1,-27],[-2,-46],[-1,-9],[-4,33],[-3,13],[-2,-3],[-5,-28],[-4,-8],[-4,-5],[-9,-41],[-13,25],[-2,-2],[-2,-14],[-3,-3],[-1,8],[-3,41],[-1,68],[0,67],[-7,1],[-9,-12],[0,-37],[-3,14],[-2,30],[-3,19],[-3,11],[-3,-1],[-1,-13],[2,-21],[-1,-24],[-1,-9],[-3,10],[-2,26],[-2,4],[-4,-20],[-3,7],[-3,26],[-2,6],[-2,-9],[-1,-11],[-5,-10],[-2,-9],[-2,-14],[-4,-10],[-4,-1],[-5,-13],[-3,-15],[-6,-27],[-5,-26],[-6,-17],[-5,-3],[-3,-5],[-1,0],[-3,76],[-7,-37],[-11,-69],[-9,-60],[-7,-41],[-3,-8]],[[3904,48106],[-2,16],[-2,22],[-3,25],[-1,11],[-2,13],[-1,17],[0,13],[0,10],[-1,17],[0,20],[0,14],[-2,27],[-1,28],[-1,17],[-1,16],[0,14],[0,16],[2,15],[1,15],[3,24],[2,23],[3,19],[3,12],[1,20],[3,29],[2,13],[2,2],[1,4],[1,6],[2,0],[1,-4],[3,-9],[1,-6],[3,5],[1,-2],[2,-4],[2,7],[2,-4],[2,-5],[2,0],[4,-5],[2,5],[2,2],[1,5],[2,5],[1,10],[3,10],[2,8],[2,12],[1,7],[2,2],[0,-4],[1,-7],[1,-16],[-1,-19],[0,-22],[0,-25],[0,-13],[1,-11],[2,-6],[1,-9],[2,-1],[0,5],[-2,14],[-2,20],[0,16],[1,13],[1,15],[0,25],[-1,6],[-2,27],[-1,21],[0,18],[-1,13],[1,23],[0,34],[-1,24],[0,29],[0,19],[2,6],[4,30],[1,-4],[0,-10],[2,1],[0,13],[0,12],[-2,13],[-2,8],[-3,-20],[-1,1],[-1,21],[1,37],[2,29],[2,-9],[3,-20],[3,-18],[4,-14],[4,8],[5,0],[0,-14],[0,-40],[1,-32],[2,2],[1,9],[1,35],[2,25],[1,20],[3,32],[1,26],[3,36],[1,1],[3,-9],[4,-8],[1,-1],[1,-1],[1,9],[1,3],[2,11],[0,25],[-1,55],[-2,44],[-1,52],[1,22],[1,-15],[2,-31],[2,-21],[2,-8],[4,2],[3,2],[3,-1],[5,-1],[3,-11],[1,-5],[4,1],[2,9],[1,12],[-1,22],[-1,28],[-3,26],[-3,23],[-7,44],[-2,27],[2,17],[3,-4],[3,-5],[2,1],[2,6],[4,23],[3,18],[1,-3],[1,4],[1,6],[0,11],[2,4],[2,-5],[1,-18],[1,1],[0,26],[1,10],[2,26],[0,17],[0,39],[0,31],[1,21],[1,16],[1,32],[-1,18],[-2,-4],[0,-27],[-2,-30],[0,-30],[0,-42],[0,-27],[-2,-23],[-4,-16],[-4,-5],[-4,-10],[-2,-16],[-2,-22],[-1,-9],[-3,0],[-4,5],[-4,1],[-2,-18],[1,-20],[3,-39],[5,-37],[5,-31],[2,-15],[1,-21],[1,-18],[-2,-14],[-3,6],[-6,15],[-5,8],[-4,-10],[-3,-3],[-3,29],[-3,43],[-1,16],[-1,19],[-1,10],[0,-21],[0,-14],[-1,-11],[-2,-22],[0,-50],[0,-25],[1,-29],[1,-39],[1,-18],[-3,-8],[-5,6],[-2,2],[-8,6],[-7,-49],[-2,19],[-1,15],[-1,9],[-2,12],[-1,6],[-2,4],[-3,-11],[-1,0],[-1,-4],[-1,6],[0,8],[-3,0],[-5,1],[-1,-1],[-4,-5],[-3,0],[-3,-12],[-2,-14],[0,-126],[1,-14],[1,-16],[0,-13],[-1,-23],[0,-19],[-1,-22],[-2,-14],[0,-6],[-2,-7],[-2,2],[-3,8],[-1,6],[-2,7],[-2,12],[-4,16],[-3,13],[-1,0],[-2,13],[-1,7],[-2,7],[-1,9],[-1,2],[-2,9],[-1,10],[-2,11],[0,13],[0,14],[-1,13],[1,10],[1,15],[1,10],[1,26],[0,21],[0,18],[2,9],[1,-2],[1,-12],[-1,-22],[0,-18],[-1,-18],[1,-23],[0,-7],[2,-2],[2,3],[2,12],[1,5],[0,14],[0,8],[-2,-9],[-2,-10],[-1,-3],[0,12],[0,17],[0,21],[1,18],[0,19],[-1,11],[-1,6],[-1,5],[-2,0],[-1,-5],[0,-9],[-1,-8],[-1,-12],[0,-14],[-2,-6],[-1,-4],[-1,0],[-1,3],[-2,3],[-1,4],[-1,7],[-1,7],[-1,13],[-1,6],[-1,8],[-1,6],[-1,14],[0,7],[-1,5],[0,11],[-1,6],[0,11],[0,5],[2,-1],[1,8],[-2,4],[1,13],[1,19],[3,28],[2,9],[1,7],[1,-3],[1,-4],[0,12],[1,-2],[1,11],[1,13],[1,-2],[0,9],[1,5],[1,10],[0,-3],[2,-2],[-1,15],[1,23],[0,20],[-1,19],[-1,16],[-1,46],[1,42],[1,3],[0,10],[2,-6],[1,-11],[0,5],[0,6],[0,25],[0,6],[2,6],[1,1],[1,6],[2,4],[1,6],[2,12],[2,12],[1,17],[0,17],[-1,14],[-1,18],[-2,7],[-2,0],[-1,-1],[-4,15],[-2,20],[0,23],[-1,31],[-1,21],[-2,26],[0,17],[0,11],[0,10],[-2,-4],[0,-31],[0,-20],[1,-21],[1,-22],[2,-48],[2,-27],[1,-10],[2,-7],[3,-10],[3,0],[1,-14],[0,-15],[-2,-10],[-2,-7],[-2,-5],[-2,-4],[-3,-13],[-2,-5],[-2,-4],[-1,2],[-1,-8],[-2,-9],[-1,-17],[-1,-21],[0,-22],[2,-20],[-1,-14],[1,-20],[-1,0],[-1,14],[0,11],[-1,-18],[1,-14],[1,-15],[1,-16],[1,-6],[-2,-6],[1,-8],[2,-11],[-1,-19],[-2,-6],[-1,-14],[-1,-4],[-1,-1],[-1,-10],[-2,1],[-1,16],[-1,15],[0,16],[-1,16],[-1,14],[0,-12],[-1,-9],[2,-21],[0,-18],[2,-17],[-1,-18],[-1,10],[0,1],[-1,-4],[-1,4],[-1,-1],[0,-3],[-3,12],[0,22],[-1,13],[-1,-23],[-1,-4],[-2,1],[-1,3],[-1,11],[0,20],[1,10],[1,11],[0,19],[-1,2],[0,-14],[-1,-22],[-1,-14],[-1,-18],[-1,-5],[0,7],[-1,7],[-2,13],[-1,5],[-1,12],[-1,19],[-2,26],[-1,7],[-1,7],[-2,11],[-1,12],[-1,0],[-1,12],[-1,11],[0,15],[0,16],[-1,-2],[0,-11],[-1,-15],[0,-3],[-1,-1],[-2,6],[-2,5],[-2,0],[-1,8],[-1,-1],[-1,0],[-3,12],[-3,14],[-1,11],[-1,10],[0,11],[2,7],[1,6],[1,13],[2,13],[0,1],[3,52],[1,19],[3,41],[2,40],[2,38],[3,35],[2,16],[3,21],[3,10],[3,2],[3,-20],[2,-19],[2,-11],[2,7],[3,14],[3,26],[1,20],[0,13],[0,17],[-1,21],[-1,18],[0,13],[-1,18],[-1,14],[0,19],[0,18],[1,23],[1,21],[0,27],[1,31],[0,30],[-1,31],[-1,16],[-2,5],[-3,-7],[-2,-11],[-1,-7],[-2,-13],[-1,-14],[-2,-13],[-2,-1],[-1,1],[0,14],[2,23],[1,20],[2,14],[1,8],[2,19],[2,32],[2,24],[3,23],[4,14],[3,7],[2,2],[1,1],[1,-1],[2,12],[1,8],[0,17],[0,21],[-1,12],[0,13],[-2,14],[-2,22],[0,22],[0,16],[0,24],[1,14],[2,18],[1,17],[1,12],[1,5],[0,29],[0,18],[1,21],[1,12],[2,3],[3,-3],[3,-10],[5,-23],[2,-7],[2,0],[2,4],[2,10],[2,11],[3,19],[1,21],[1,23],[-1,18],[1,17],[0,15],[-1,29],[-1,20],[0,17],[2,8],[2,-6],[2,-11],[1,-3],[2,-1],[0,1],[2,6],[2,17],[1,28],[1,15],[4,15],[5,36],[7,49],[6,-3],[2,-15],[1,27],[8,3],[4,12],[1,-16],[4,-5],[5,17],[1,44],[-1,40],[0,50],[2,32],[2,10],[0,1],[7,-8],[8,31],[4,28],[1,38],[2,20],[1,39],[1,36],[-1,15],[-4,34],[-2,28],[0,19],[8,31],[7,12],[3,32],[-2,55],[-2,46],[-10,32],[-8,13],[-4,35],[-5,20],[-7,52],[-8,35],[-4,37],[-5,21],[-3,20],[0,-29],[5,-61],[11,-47],[8,-34],[7,-67],[12,-38],[4,-17],[0,-15],[-3,-12],[-1,-14],[1,-38],[0,-15],[-5,-14],[-1,-3],[-1,-8],[-2,-6],[0,-14],[0,-14],[1,-18],[-1,-7],[-2,-2],[-1,8],[-1,11],[0,5],[-1,12],[-1,-2],[0,-4],[-1,-33],[-2,-88],[1,-26],[1,-16],[-3,6],[-4,-35],[-2,-31],[-2,-1],[-1,-10],[-2,-40],[-1,-6],[0,-32],[-2,-36],[0,-19],[-2,-5],[-3,1],[-2,-18],[-4,9],[-2,7],[-2,7],[-6,-22],[-2,-30],[-3,-12],[-2,-15],[-2,14],[-3,-5],[-3,1],[-4,-16],[-1,-9],[-1,-3],[-2,-12],[-1,-12],[0,-17],[1,-31],[0,-15],[0,-15],[0,-18],[-1,-18],[-1,-4],[-1,-8],[-1,1],[-1,2],[-1,2],[-1,7],[-2,6],[-1,8],[-1,-1],[-3,-3],[-2,-4],[-1,-16],[-1,-17],[-1,-17],[1,-20],[2,-28],[1,-16],[2,-18],[1,-14],[1,-5],[0,-18],[-1,-14],[-2,-16],[-2,-11],[-2,-7],[-2,-1],[-2,4],[-2,13],[-2,8],[-1,11],[-1,-2],[-1,8],[-2,14],[-3,13],[-3,3],[-3,-10],[-2,-18],[-1,-7],[0,-23],[1,-34],[-1,-18],[-1,-24],[-2,-17],[0,-13],[-4,19],[-1,16],[0,14],[-2,8],[-2,7],[-1,-12],[1,-6],[1,-6],[2,-13],[0,-17],[0,-16],[1,-12],[2,-6],[1,-4],[2,2],[-1,-15],[-1,-24],[1,-24],[1,-20],[1,-19],[1,-12],[1,-6],[0,-20],[0,-15],[-2,-9],[-1,-5],[-3,-9],[-3,-8],[-4,-9],[-2,-11],[-2,-14],[-2,-17],[-2,-19],[-1,-30],[0,-18],[0,-10],[-2,-8],[-2,-6],[-2,-16],[-1,-20],[0,-25],[2,-37],[2,-5],[1,-5],[2,-1],[2,0],[2,8],[2,16],[0,13],[1,8],[2,24],[1,6],[1,-8],[0,-33],[0,-14],[0,-34],[-1,-40],[0,-12],[-2,-5],[-1,-8],[-1,-13],[0,-27],[0,-18],[1,-10],[1,-21],[1,-16],[1,-18],[0,-19],[-1,-13],[-1,-7],[-2,3],[-3,9],[-3,8],[-3,6],[-3,1],[-2,-8],[-2,-6],[-1,-26],[-2,-19],[-3,-20],[-2,-16],[-1,-17],[-2,-16],[-1,18],[0,-15],[1,-17],[-1,-21],[-1,-25],[-2,-25],[-3,-15],[-3,-17],[-3,-14],[-2,-15],[-2,-17],[-1,-23],[0,-15],[1,-20],[0,-25],[1,-15],[1,-11],[1,-15],[1,-16],[1,-10],[1,-8],[2,-9],[1,-2],[3,-2],[1,-4],[1,-3],[3,-3],[0,-7],[-8,-184],[-1,-27],[1,-14],[0,-8],[0,-4],[-1,-31],[-2,-131],[0,-40],[-16,-8],[-2,46],[-1,19],[-4,-47],[-3,-21],[-13,41],[-13,19],[-5,28],[-3,26],[0,11],[0,5],[-1,5],[-2,31],[-1,19],[-2,86],[1,14],[1,1],[0,26],[-2,15],[1,9],[-1,18],[0,5],[-2,13],[-1,8],[-1,22],[-1,22],[0,72],[-1,23],[1,15],[1,15],[2,3],[1,4],[0,20],[-1,18],[0,7],[-3,7],[-5,135],[1,77],[1,0],[0,5],[1,6],[2,3],[2,6],[1,8],[0,-5],[1,-13],[1,10],[0,9],[1,8],[-1,14],[0,11],[0,9],[-1,15],[-1,10],[-2,0],[-1,-9],[0,-2],[-1,-10],[-1,1],[-1,14],[1,14],[1,14],[1,10],[1,3],[1,7],[1,0],[0,-8],[1,-16],[1,-4],[0,14],[0,16],[0,4],[2,5],[0,21],[0,21],[-1,6],[0,11],[0,9],[-1,8],[0,11],[-1,17],[-1,18],[-3,12],[-1,-6],[1,-10],[1,-27],[2,-25],[0,-21],[-1,-11],[-2,3],[0,-3],[-1,-7],[-1,0],[-1,3],[0,9],[-1,10],[0,13],[0,4],[1,-10],[1,0],[0,7],[0,13],[-1,5],[-1,4],[-1,17],[-1,3],[-1,4],[-1,3],[-1,-5],[-1,-9],[-1,1],[-1,7],[-2,-1],[-2,-5],[-2,-1],[-1,2],[-3,10],[-1,4],[-1,0],[-2,14],[-3,14],[-3,10],[-1,1],[-2,4],[0,9],[0,8],[-2,-1],[1,-7],[-2,-6],[-3,10],[-2,5],[-1,0],[-1,6],[0,12],[-1,7],[-2,3],[-1,-9],[1,-4],[1,-2],[-1,-9],[-3,-3],[-2,-9],[-1,-13],[-1,-3],[-1,7],[-2,3],[-1,6],[-3,22],[-5,38],[-2,32],[-2,33],[-2,15],[0,14],[1,10],[1,17],[0,17],[0,6],[-1,-9],[0,-16],[-1,-9],[-1,32],[-1,29],[0,14],[-1,22],[0,18],[1,-13],[0,12],[-1,18],[1,9],[1,-8],[1,-6],[1,-4],[-1,10],[1,10],[-1,10],[0,2],[0,-13],[-1,11],[-1,16],[0,2],[0,4],[-2,4],[1,2],[0,4],[0,5],[1,10],[0,12],[-1,9],[-1,15],[1,8],[0,13],[1,4],[1,-9],[0,-14],[1,4],[1,10],[1,6],[-1,9],[0,23],[-1,12],[-2,5],[2,8],[-1,11],[-1,12],[0,11],[2,3],[-2,9],[0,18],[1,2],[1,-5],[0,16],[1,4],[1,-8],[1,6],[-1,18],[-1,9],[2,1],[1,-3],[0,13],[-1,5],[2,15],[1,1],[1,6],[1,-15],[1,-9],[2,2],[0,17],[0,12],[-1,22],[1,7],[1,-11],[0,-16],[1,-2],[0,19],[0,15],[0,-1],[2,5],[0,15],[1,-10],[0,3],[1,5],[1,2],[1,6],[1,-1],[1,1],[1,7],[1,7],[1,-2],[1,2],[2,-7],[0,-14],[0,-16],[0,-14],[1,-13],[0,-11],[2,-14],[2,-16],[3,-22],[1,-20],[0,-7],[2,-4],[1,0],[2,9],[1,15],[-1,20],[0,29],[1,19],[1,9],[0,2],[0,18],[-1,-3],[-3,-10],[-1,-15],[0,-21],[1,-30],[-1,-11],[-1,4],[-1,19],[-3,21],[-1,15],[-2,8],[0,21],[1,15],[0,6],[0,11],[0,8],[0,14],[0,14],[1,11],[0,18],[1,-8],[1,11],[0,13],[1,3],[2,7],[0,11],[-1,6],[-1,4],[1,14],[0,9],[1,12],[2,13],[0,3],[0,9],[-1,4],[-1,8],[0,7],[1,12],[-2,11],[0,21],[-1,17],[-2,4],[2,21],[-2,9],[-4,19],[1,13],[1,12],[-2,9],[-1,2],[-2,2],[1,15],[0,10],[-1,7],[-3,-1],[-2,14],[0,12],[-1,24],[-2,-2],[-2,-6],[-1,-10],[0,14],[-1,5],[-2,-5],[-1,-3],[-1,9],[1,10],[-2,5],[-2,-3],[-1,10],[-1,6],[-2,3],[0,17],[-1,13],[-1,-1],[-1,5],[-1,-1],[1,15],[-2,3],[-1,-4],[-2,4],[-1,5],[-1,14],[-2,7],[-1,-10],[-1,9],[-1,-2],[-2,6],[-3,-3],[-2,-2],[-2,3],[-1,-2],[-1,0],[-1,-13],[-2,-3],[-2,-7],[-1,-13],[0,-10],[-1,-4],[-1,-15],[-2,-15],[-5,-7],[-2,-10],[-3,-6],[-2,-2],[-2,-5],[-1,-3],[-2,9],[0,1],[-1,-7],[-1,-4],[-1,-1],[-1,0],[-1,-4],[0,-8],[-1,-20],[0,-22],[-2,-12],[-2,-11],[-1,-9],[2,-24],[3,-12],[3,-8],[2,-14],[1,0],[2,-6],[3,-13],[-2,-9],[-3,1],[-2,-12],[-2,-14],[-2,0],[-3,-2],[-1,-2],[-1,-2],[-2,3],[-1,13],[-1,11],[-3,37],[-3,66],[-3,49],[-1,21],[-1,28],[-1,19],[-1,21],[-1,19],[-3,82],[-1,43],[-1,32],[0,35],[2,37],[1,20],[0,20],[1,9],[0,14],[0,35],[1,90],[0,22],[-1,16],[2,21],[-1,21],[1,13],[-1,18],[1,43],[0,33],[1,66],[1,44],[1,23],[0,43],[1,38],[1,23],[1,15],[0,6],[1,2],[1,-10],[-1,-12],[0,-24],[0,-28],[1,-20],[-1,-15],[0,-16],[-1,-20],[0,-20],[-1,-27],[0,-20],[-1,-48],[-1,-30],[0,-24],[1,-8],[0,-4],[1,-17],[-1,-19],[0,-18],[1,-13],[-1,-24],[1,-27],[2,-7],[1,5],[1,4],[1,-4],[0,7],[1,-3],[1,3],[1,0],[1,1],[2,0],[2,4],[-1,8],[2,2],[2,2],[1,-8],[1,7],[2,-3],[1,-1],[1,4],[3,-2],[1,3],[1,4],[1,-2],[1,8],[2,2],[1,11],[1,7],[1,0],[2,5],[0,8],[3,6],[1,0],[2,9],[2,2],[1,-2],[1,9],[1,9],[0,-7],[2,8],[3,3],[3,1],[1,0],[1,8],[2,5],[0,7],[2,3],[3,6],[3,13],[2,4],[3,5],[6,10],[2,6],[2,-5],[2,6],[5,8],[3,9],[1,3],[2,9],[3,8],[2,6],[2,0],[1,2],[2,3],[1,-3],[1,0],[1,-4],[0,-11],[1,-17],[1,-14],[2,-14],[2,-11],[1,-9],[1,-3],[3,-2],[1,1],[2,10],[2,12],[1,10],[1,5],[2,5],[0,11],[2,7],[2,8],[1,2],[2,-4],[3,-12],[2,-7],[2,-2],[1,1],[1,19],[2,27],[0,13],[1,13],[0,12],[-1,1],[-1,-17],[-1,-16],[-1,-26],[-1,-12],[-1,1],[-1,3],[-2,8],[-1,6],[-2,4],[-2,1],[-1,0],[-2,-6],[-3,-7],[-3,-9],[-2,-14],[-2,-11],[-1,-15],[-1,-10],[-1,3],[-1,3],[-1,7],[-1,8],[-1,16],[-2,15],[0,20],[-1,20],[-1,11],[-1,3],[-2,10],[-1,8],[-3,4],[-3,5],[-2,0],[-3,-4],[-1,0],[-2,1],[-2,-3],[-3,-3],[-3,-6],[-1,-3],[-2,10],[0,13],[2,10],[1,10],[-1,16],[0,15],[-1,4],[-1,-7],[-4,1],[-3,-11],[-3,10],[-3,-4],[-3,9],[-6,22],[-3,16],[-2,27],[0,30],[2,16],[-2,9],[-1,-5],[-2,-18],[-2,2],[-2,-7],[-5,11],[-1,0],[-1,-3],[-1,8],[0,31],[0,24],[-6,80],[-3,34],[0,16],[0,29],[-2,10],[-1,3],[-1,11],[-1,11],[0,16],[-2,16],[-2,14],[-1,10],[-1,24],[0,19],[-2,16],[-1,10],[-1,14],[0,17],[0,19],[0,18],[1,14],[1,5],[2,0],[2,-6],[2,-5],[2,2],[2,11],[1,2],[2,6],[1,11],[3,3],[3,6],[3,9],[4,20],[5,25],[2,13],[2,3],[0,-19],[-2,0],[-2,-12],[-1,-8],[2,-7],[4,6],[5,11],[3,-3],[2,0],[1,3],[2,-10],[1,-3],[3,-2],[1,9],[3,-3],[1,-8],[1,-9],[2,-8],[4,6],[4,6],[2,10],[3,0],[3,3],[2,-1],[2,-8],[0,-13],[1,-10],[1,-17],[0,-19],[2,-2],[1,5],[1,7],[1,14],[1,7],[1,14],[0,6],[2,4],[1,6],[2,14],[1,12],[0,14],[0,17],[2,14],[3,9],[4,9],[3,7],[2,-5],[2,7],[3,1],[3,-5],[2,6],[1,1],[2,0],[2,-2],[1,-5],[2,-7],[3,-3],[4,-3],[9,31],[2,23],[0,13],[-9,-32],[-3,-11],[-2,-1],[-1,6],[0,15],[1,15],[1,23],[0,13],[0,16],[-1,19],[-1,8],[-3,28],[-2,17],[-2,16],[-2,16],[0,6],[-2,17],[-2,16],[-1,14],[-2,11],[-1,25],[-3,30],[-2,14],[-3,36],[-3,55],[-1,34],[-2,20],[-1,18],[-1,34],[-1,30],[-1,31],[-1,25],[-1,26],[0,25],[-1,34],[-1,31],[0,29],[-1,29],[0,38],[0,34],[0,24],[1,17],[1,22],[1,15],[0,21],[-1,15],[0,13],[0,11],[1,15],[0,10],[1,7],[-1,30],[2,33],[0,20],[1,24],[1,16],[2,10],[1,4],[1,1],[-1,10],[1,15],[1,20],[0,5],[1,-2],[2,-4],[0,11],[-1,4],[-1,7],[0,18],[1,19],[0,18],[2,38],[1,18],[1,12],[1,5],[1,-3],[1,4],[2,-1],[-1,16],[0,11],[0,20],[0,14],[1,27],[2,17],[1,5],[2,9],[1,5],[1,8],[1,7],[1,0],[1,-2],[1,4],[0,18],[-1,16],[2,38],[2,25],[1,12],[1,11],[1,12],[1,5],[1,-5],[1,11],[1,9],[1,5],[1,2],[0,6],[2,2],[1,13],[1,34],[2,23],[3,40],[1,20],[2,28],[0,11],[1,9],[1,17],[2,31],[1,21],[2,17],[3,44],[1,13],[0,6],[2,25],[3,32],[2,22],[2,8],[1,2],[0,15],[1,11],[1,16],[1,15],[1,14],[6,64],[5,48],[4,67],[8,97],[4,41],[1,29],[1,17],[1,9],[1,0],[1,-8],[1,-24],[-1,-19],[1,-17],[0,-12],[2,-15],[1,-15],[1,3],[-1,11],[-1,11],[0,14],[-1,17],[0,27],[2,24],[2,20],[1,3],[1,14],[0,27],[1,44],[3,86],[1,36],[3,36],[2,37],[1,20],[1,10],[1,16],[3,31],[2,31],[2,24],[3,27],[4,30],[1,10],[1,9],[1,23],[2,24],[5,43],[7,65],[4,42],[3,26],[4,36],[3,17],[3,33],[4,27],[2,8],[2,19],[4,24],[2,10],[1,4],[2,5],[2,-2],[1,0],[2,-2],[2,-7],[2,-6],[3,-5],[2,-5],[2,-1],[1,-9],[1,-7],[2,-9],[1,-14],[1,-8],[0,19],[4,-4],[3,-2],[2,-2],[3,-1],[3,6],[2,2],[2,3],[4,10],[4,7],[3,0],[1,-7],[1,4],[0,-26],[0,-34],[-2,-43],[-1,-16],[-2,-15],[-1,-24],[-1,-25],[-1,-16],[0,-27],[2,-23],[0,-20],[1,-19],[1,-11],[1,-12],[2,-7],[1,-11],[3,-6],[2,2],[6,1],[4,1],[2,2],[2,7],[2,0],[3,-4],[4,-12],[2,-23],[2,-24],[3,-21],[2,-15],[2,-16],[2,-15],[1,-15],[-1,-12],[2,-3],[1,5],[2,-9],[4,6],[5,-2],[7,-6],[4,-11],[2,7],[2,1],[2,-10],[0,-17],[-3,-11],[-4,-1],[-3,-1],[-1,3],[-5,-9],[-2,-4],[-2,-21],[-1,-33],[0,-24],[-1,-17],[-1,-12],[0,-10],[-2,-36],[-2,-19],[-3,-25],[-1,-8],[-2,-12],[-1,-2],[-1,-9],[-1,-6],[-1,-18],[-1,-16],[-3,5],[-2,14],[-2,5],[-4,0],[-2,-11],[3,2],[2,-10],[2,-12],[2,-3],[0,-9],[3,-6],[1,5],[2,16],[3,16],[3,12],[2,13],[2,13],[1,13],[2,11],[1,20],[2,15],[1,25],[1,42],[1,35],[0,24],[2,16],[4,5],[3,0],[4,-1],[3,2],[4,-1],[2,10],[2,-4],[2,-3],[-4,36],[0,18],[-1,28],[-1,6],[-2,9],[2,44],[-1,-1],[3,21],[2,16],[-1,19],[-2,29],[-1,17],[0,18],[2,22],[-3,-4],[-1,-14],[1,-28],[1,-20],[1,-18],[0,-20],[-2,-19],[0,3],[-3,-9],[-1,-22],[0,-13],[-2,6],[-2,1],[-2,6],[-2,-1],[-2,0],[-1,5],[-2,-5],[-2,7],[-2,-4],[-2,-8],[-3,4],[-2,29],[2,21],[0,23],[0,24],[0,17],[2,28],[1,27],[1,33],[0,29],[1,19],[1,19],[2,4],[6,-5],[1,-3],[2,2],[0,23],[-3,6],[-3,14],[-2,12],[-2,-6],[-1,0],[-2,-13],[-2,-11],[-1,-18],[0,-36],[-1,-26],[-1,-23],[-1,-11],[-1,-26],[-1,-14],[-1,-26],[1,-16],[0,-14],[-4,11],[-2,23],[-1,7],[-1,12],[-2,7],[-1,11],[-2,4],[0,16],[-2,21],[-3,7],[-1,4],[-3,-13],[-3,-7],[-3,-11],[-2,-14],[-3,-13],[-3,-9],[-2,-6],[-2,5],[-2,4],[-1,10],[0,46],[1,41],[3,33],[3,29],[2,21],[1,25],[2,15],[2,20],[1,8],[0,17],[0,18],[0,20],[0,22],[-1,10],[0,3],[-1,-9],[-2,3],[0,8],[-2,-9],[-4,12],[-1,-13],[-2,10],[-2,-9],[0,1],[-2,-5],[0,3],[-1,10],[-2,11],[-1,30],[-1,39],[2,21],[0,10],[1,23],[2,5],[2,18],[3,12],[2,10],[2,9],[5,21],[1,3],[1,2],[2,5],[2,-1],[5,26],[10,36],[1,22],[-6,4],[7,41],[6,22],[5,15],[8,67],[6,75],[7,90],[9,80],[5,78],[7,64],[2,37],[0,45],[0,37],[2,41],[3,3],[5,-4],[11,-19],[3,-28],[3,-52],[6,-65],[4,-21],[6,-19],[12,-6],[13,0],[16,-27],[15,-83],[9,-88],[11,-126],[7,-120],[7,-118],[7,-85],[0,1],[0,-11],[4,-43],[9,-101],[5,-75],[1,-48],[1,-25],[1,67],[4,-52],[3,-52],[0,-76],[0,-50],[1,-28],[2,32],[0,55],[0,61],[0,27],[5,-78],[5,-58],[8,-54],[1,-31],[4,-4],[3,-10],[-3,35],[-4,42],[-3,37],[-1,48],[-1,50],[0,6],[0,22],[-1,72],[-1,57],[-3,54],[-7,85],[-2,35],[-3,18],[-3,22],[-2,24],[-2,75],[0,40],[0,12],[-1,36],[0,3],[-1,16],[-2,38],[-1,37],[1,35],[2,54],[2,34],[2,62],[0,3],[-1,59],[1,54],[-1,7],[0,27],[-1,32],[-1,30],[0,29],[0,29],[-7,138],[0,2],[-1,16],[-2,19],[-2,24],[-3,19],[-1,7],[-1,8],[-19,123],[-6,79],[-2,16],[-2,26],[0,27],[-2,24],[0,43],[1,10],[-1,49],[0,62],[1,21],[2,83],[1,4],[1,18],[3,18],[2,9],[4,16],[5,16],[4,5],[6,5],[3,0],[2,6],[1,10],[2,11],[3,6],[2,0],[2,0],[2,-17],[1,-18],[1,-16],[2,-30],[3,-16],[5,-8],[2,-8],[0,16],[1,0],[2,30],[2,8],[3,8],[3,2],[1,11],[1,21],[-3,25],[0,13],[6,40],[3,6],[0,-17],[2,-21],[3,-11],[0,-1],[2,1],[1,9],[1,12],[0,8],[-1,20],[-2,40],[0,40],[2,27],[2,2],[2,0],[2,-2],[2,14],[0,18],[-2,35],[-2,29],[-3,22],[-2,32],[0,24],[1,16],[2,29],[1,4],[1,2],[2,43],[1,31],[2,33],[3,21],[4,13],[2,18],[14,44],[3,0],[4,0],[4,11],[-3,13],[2,20],[1,7],[6,38],[3,19],[3,26],[0,5],[1,41],[2,45],[5,78],[2,14],[16,62],[8,-5],[0,-36],[-1,-13],[1,-12],[1,-1],[1,0],[1,-8],[1,-12],[2,-11],[1,-9],[3,-12],[1,0],[2,3],[1,2],[1,-15],[1,-5],[0,-11],[-1,-9],[0,-18],[4,-9],[2,-2],[1,-6],[2,-13],[2,-19],[1,-16],[3,-27],[2,-21],[-1,-12],[-1,-7],[-1,-7],[-1,-9],[-1,-6],[-2,-12],[-1,7],[-1,2],[-1,-5],[0,-8],[1,-11],[1,-5],[1,-3],[1,1],[1,6],[2,5],[1,3],[0,-1],[1,-8],[1,-19],[1,-13],[0,-10],[1,-16],[1,-6],[1,-8],[1,-13],[2,-18],[2,-20],[1,-13],[1,-11],[2,-1],[1,-9],[1,-10],[1,-13],[1,-25],[-4,-8],[-1,-6],[1,-10],[2,1],[3,21],[0,18],[0,15],[0,14],[-2,11],[-2,11],[-2,9],[0,10],[-2,16],[-1,18],[0,26],[0,19],[1,2],[1,4],[1,10],[1,7],[1,2],[1,3],[1,4],[2,4],[1,-2],[1,4],[4,8],[3,-3],[1,-4],[1,3],[2,-1],[1,-1],[1,4],[1,3],[1,-4],[2,-8],[-1,-10],[1,2],[1,12],[2,18],[3,8],[2,1],[3,5],[3,7],[2,2],[4,3],[3,0],[5,0],[5,6],[3,8],[5,10],[9,20],[2,11],[1,8],[1,8],[2,21],[1,23],[1,9],[2,10],[0,5],[1,9],[4,50],[4,48],[6,64],[2,5],[3,12],[7,24],[3,12],[2,15],[3,27],[4,36],[2,16],[2,18],[2,15],[2,21],[1,11],[1,11],[1,11],[1,27],[-1,34],[0,46],[-1,34],[1,27],[1,25],[1,18],[3,19],[3,12],[4,17],[6,20],[1,8],[1,3],[2,-2],[1,-6],[1,-9],[1,-3],[2,3],[5,2],[4,10],[6,20],[5,32],[2,14],[1,22],[2,23],[2,13],[1,12],[1,14],[2,18],[1,17],[2,16],[1,15],[3,22],[1,13],[1,-12],[1,-4],[0,27],[0,10],[1,6],[1,2],[1,-13],[1,-7],[1,1],[-2,17]],[[4871,36400],[-1,-3],[0,6],[-1,13],[1,0],[1,-8],[0,-8]],[[4903,39129],[0,-15],[-1,-2],[-1,4],[-1,5],[-1,9],[1,3],[2,-5],[1,1]],[[4243,41916],[-2,-7],[-1,2],[-2,12],[-2,17],[-2,8],[-2,7],[-2,6],[-3,21],[-1,52],[2,-20],[3,-22],[5,-12],[2,-10],[5,-32],[0,-22]],[[4163,42621],[2,-14],[2,-26],[1,-20],[2,-8],[2,-18],[2,-18],[1,-8],[1,-5],[1,-12],[1,-7],[1,-6],[1,-6],[0,-11],[-1,0],[-2,12],[-4,35],[-2,17],[-2,12],[-1,9],[-2,24],[-1,22],[-2,28]],[[3617,42774],[0,-3],[1,-4],[0,-10],[0,-4],[0,-14],[-1,2],[-1,2],[-1,9],[0,4],[0,10],[0,8],[0,7],[0,6],[1,-3],[1,-10]],[[3609,42796],[0,-5],[1,3],[1,-1],[0,-6],[0,-12],[-1,-7],[0,-2],[-1,7],[-1,-1],[-1,2],[-1,-4],[-1,5],[0,10],[0,8],[2,2],[1,3],[1,-2]],[[3703,42888],[0,-5],[-1,1],[-1,-6],[-1,5],[0,6],[0,7],[2,6],[1,-3],[0,-7],[0,-4]],[[4163,42621],[-2,20],[-1,16],[-1,16],[-1,20],[-1,19],[-2,25],[-1,25],[-1,19],[-1,26],[0,12],[-1,18],[-1,17],[0,17],[-1,18],[0,19],[0,12],[0,9],[1,-19],[1,-27],[1,-25],[0,-20],[2,-28],[0,-22],[1,-12],[1,-15],[1,-21],[1,-15],[0,-18],[1,-12],[1,-19],[2,-24],[1,-31]],[[3709,42872],[0,-5],[-1,1],[-2,12],[0,9],[0,6],[0,15],[0,12],[0,1],[0,2],[1,3],[1,1],[0,-4],[0,-5],[-1,-9],[0,-7],[1,-7],[1,-6],[0,-6],[0,-4],[0,-9]],[[3745,42984],[1,-8],[1,1],[0,-7],[1,-4],[1,-10],[-1,-14],[-1,3],[-1,13],[-2,0],[0,13],[0,5],[1,8]],[[4128,43214],[0,-14],[-1,16],[0,10],[0,13],[0,14],[0,27],[1,17],[0,-1],[0,-14],[0,-13],[0,-21],[0,-14],[0,-20]],[[3794,43443],[-1,-5],[-1,1],[0,5],[0,8],[0,4],[0,4],[0,1],[1,6],[0,5],[1,4],[0,-8],[0,-11],[0,-14]],[[1780,44517],[-1,-6],[-1,4],[0,-4],[-1,9],[1,8],[0,9],[1,11],[1,16],[1,10],[1,4],[1,13],[1,10],[1,-1],[-1,-11],[-1,-15],[0,-10],[-2,-15],[0,-17],[-1,-15]],[[4690,44613],[0,-14],[2,-8],[3,-17],[1,-10],[1,-7],[1,4],[1,22],[1,-8],[0,-16],[2,1],[4,-76],[11,-137],[-1,-76],[-19,-125],[-1,-17],[-2,-20],[-1,-9],[-1,0],[-1,-6],[-1,-3],[-1,3],[-3,46],[-2,39],[-8,115],[0,10],[-1,34],[-1,37],[0,8],[5,46],[4,54],[2,20],[0,2],[0,10],[-1,1],[-1,8],[1,11],[0,17],[-1,17],[0,7],[0,8],[0,24],[1,0],[2,-3],[2,2],[2,6]],[[3619,45672],[1,-25],[4,2],[1,-6],[2,-10],[1,-23],[0,-24],[0,-30],[-1,-18],[-1,-6],[0,-15],[0,-12],[1,-8],[2,-21],[1,-13],[0,-17],[-1,-23],[1,-20],[1,-17],[1,-2],[1,-2],[1,-4],[0,-5],[1,-14],[0,-18],[-1,-19],[2,-18],[1,-8],[1,-7],[1,-4],[1,-9],[1,-5],[1,-4],[2,-3],[0,-12],[-1,-12],[-1,-12],[-2,-8],[-1,-11],[0,-4],[-1,3],[-2,1],[1,-14],[1,-5],[0,-12],[0,-10],[0,-10],[-1,-6],[1,-4],[1,6],[1,3],[0,-1],[3,-3],[2,-10],[2,-2],[1,0],[3,0],[2,-2],[3,-7],[4,-13],[2,-5],[4,6],[3,5],[2,3],[3,8],[1,15],[0,7],[1,-5],[1,-11],[1,-4],[1,0],[1,2],[1,-3],[1,0],[1,2],[1,5],[1,6],[-1,13],[0,25],[1,16],[1,13],[1,8],[2,6],[2,-1],[1,8],[2,5],[1,6],[2,-3],[2,-8],[2,-16],[1,-13],[1,-4],[0,7],[1,-1],[1,-5],[2,-6],[2,-7],[1,-1],[3,6],[1,0],[0,-10],[-1,-13],[1,-10],[2,-5],[1,0],[2,1],[3,4],[1,5],[1,5],[1,-6],[-1,-7],[-1,-17],[1,-13],[1,-7],[1,-11],[1,-12],[1,-7],[2,-5],[2,-4],[2,-5],[2,3],[1,3],[3,6],[1,-8],[0,-6],[-1,-1],[-2,-5],[-1,-4],[-2,0],[-2,2],[-3,-3],[2,-6],[1,-9],[1,-4],[3,-6],[2,2],[1,7],[1,-3],[1,-8],[1,-6],[1,-7],[1,-10],[1,-1],[1,1],[1,-4],[2,-13],[2,-4],[-2,-7],[-1,-13],[-2,-20],[0,-15],[1,-10],[2,-7],[1,-5],[1,-8],[0,-19],[1,-13],[-1,-5],[-1,-2],[-1,-3],[-2,-24],[0,-24],[0,-12],[-1,-11],[-1,-3],[-2,-3],[-4,-1],[-1,-7],[-1,-16],[1,-24],[0,-16],[0,-18],[0,-15],[1,-10],[1,-9],[1,-9],[1,-10],[1,-3],[1,3],[2,3],[1,-8],[-1,-4],[-1,-5],[0,-10],[0,-25],[1,-20],[1,-10],[1,-9],[2,-5],[0,-24],[-1,-20],[-2,-15],[-3,-17],[-1,-7],[-1,-13],[0,-18],[-2,-42],[0,-23],[-1,-11],[-1,-10],[-1,-9],[1,-18],[1,-17],[1,-16],[1,-4],[2,0],[1,-4],[1,0],[1,9],[2,-1],[1,1],[1,3],[1,-9],[0,-11],[1,-4],[0,-19],[-1,-10],[-1,-15],[-1,-5],[-1,-5],[-1,-12],[1,-14],[1,-6],[1,-7],[1,-12],[1,-16],[1,-6],[1,-6],[-1,-13],[0,-13],[1,-10],[-1,-23],[-1,-16],[1,-22],[2,-16],[-4,-34],[0,-20],[-3,-21],[-3,-36],[-1,-40],[-6,-43],[0,-23],[4,11],[4,3],[5,-14],[0,-17],[1,-26],[0,-11],[-1,-46],[0,-26],[5,-8],[1,0],[1,-23],[1,-3],[4,-17],[2,3],[0,-14],[-3,-6],[1,-29],[-2,-34],[-1,-20],[-1,-17],[0,-49],[5,-51],[3,-14],[0,-15],[-4,-22],[1,-12],[3,-3],[6,20],[0,29],[1,8],[1,10],[2,5],[1,8],[4,-20],[2,6],[3,20],[1,-14],[-2,-32],[-1,-31],[-4,-20],[-2,-3],[-3,-31],[0,-46],[1,-37],[2,-25],[1,6],[2,11],[0,-7],[1,-17],[0,-20],[-3,-40],[-3,-66],[-3,2],[-3,24],[-3,-8],[0,-32],[-3,-17],[-1,23],[-3,-11],[-2,11],[-5,-14],[-3,-6],[-3,-26],[-3,15],[-1,-34],[-4,1],[-1,30],[-2,26],[-1,2],[-2,-2],[1,39],[0,21],[-1,5],[-3,-1],[-2,0],[-2,35],[0,-35],[-2,-12],[-1,-10],[1,-28],[4,11],[2,12],[1,-3],[0,-17],[-2,-15],[-2,0],[-2,-20],[-1,-8],[0,1],[-3,-10],[-2,7],[-3,-10],[-2,-18],[-2,0],[-2,0],[-3,11],[-3,-22],[-3,-28],[-4,-32],[-1,-3],[-4,-8],[-2,1],[1,-37],[-1,2],[-1,4],[-1,0],[-2,10],[0,27],[0,6],[-3,0],[-4,2],[-2,0],[-2,3],[0,21],[-1,9],[-1,6],[-1,0],[-2,4],[-1,22],[-2,25],[-3,19],[-1,-1],[-1,-1],[-2,-37],[-2,7],[0,-17],[1,-4],[1,-24],[0,5],[2,30],[1,8],[1,0],[1,-7],[2,-12],[1,0],[1,-19],[1,-15],[0,-18],[2,5],[1,-11],[-1,-13],[-3,-11],[-5,-10],[-4,-17],[-5,-11],[-2,-17],[-4,-25],[-2,-7],[-3,-22],[-4,-28],[-4,-40],[-4,-22],[-2,-25],[-3,-7],[-4,9],[2,21],[1,41],[0,44],[-1,1],[-3,0],[1,21],[0,29],[-2,-8],[0,-33],[-3,0],[-1,13],[-1,11],[-1,10],[-2,9],[-2,15],[-2,11],[0,-13],[0,-10],[1,-17],[-1,-20],[-1,1],[-4,7],[-1,0],[-2,4],[-2,35],[0,-33],[1,-14],[1,-16],[-3,-5],[-1,-6],[-3,34],[-1,17],[-1,-40],[-3,-40],[-1,4],[-2,30],[-2,9],[-1,-52],[-1,-13],[0,-18],[1,-11],[0,-13],[3,0],[3,-26],[4,1],[3,-47],[5,-5],[2,3],[1,3],[2,4],[2,6],[2,7],[3,12],[2,16],[3,-24],[1,24],[2,-5],[3,-26],[6,-64],[-1,-25],[1,-35],[4,-21],[1,-37],[2,-5],[1,-37],[-2,-3],[-1,-61],[-2,-6],[-3,-5],[0,-27],[-2,17],[-7,-5],[-3,-11],[-4,1],[-2,0],[-3,-4],[-2,-2],[-2,34],[-3,40],[2,8],[-3,66],[-3,33],[-5,51],[-7,67],[-6,36],[-9,35],[-2,-2],[-3,1],[-4,51],[-1,23],[-6,46],[-8,28],[-5,10],[-1,6],[2,17],[-2,10],[-1,-11],[-2,-17],[-1,-2],[-2,-2],[-2,-8],[-1,-20],[-1,8],[-1,11],[-2,-6],[0,-17],[-1,-9],[-2,-3],[-1,10],[-2,-4],[-2,-9],[-2,9],[1,14],[1,8],[1,15],[-1,17],[1,23],[0,16],[-1,-15],[-1,-15],[0,-23],[-2,-12],[-1,-8],[-3,-16],[-2,1],[-1,-2],[-2,3],[-1,1],[-1,-6],[-2,4],[-2,-2],[-4,-5],[-3,5],[-4,2],[-2,3],[0,14],[-1,14],[-2,5],[-2,12],[-2,9],[-1,16],[0,20],[-1,11],[-1,8],[-2,15],[-2,9],[-3,18],[-1,2],[-3,7],[-7,29],[-1,3],[-2,13],[-1,0],[-4,-7],[-4,5],[-1,2],[-2,24],[-2,42],[-3,18],[-3,36],[-1,10],[-1,7],[-3,19],[-4,39],[-1,14],[-1,7],[-1,7],[-3,17],[-3,44],[-8,55],[-5,18],[-4,18],[0,9],[-2,18],[-3,16],[-3,10],[-3,2],[-3,8],[-4,26],[-2,19],[1,23],[-2,3],[-1,-4],[-2,-4],[-4,0],[-2,0],[-1,9],[1,6],[1,14],[0,5],[1,20],[-1,4],[-2,1],[-3,-6],[-1,-18],[0,-1],[0,-21],[-2,-14],[-3,-4],[-3,11],[0,5],[-1,18],[0,5],[0,10],[0,19],[1,20],[-1,13],[-1,7],[1,-21],[-1,-14],[0,-8],[-2,-2],[0,-13],[-1,-11],[0,-5],[-4,-48],[-2,4],[-1,7],[-3,15],[0,22],[0,5],[-1,19],[-1,12],[-2,10],[-2,11],[-4,21],[-3,25],[-1,12],[-1,4],[-1,4],[-1,14],[-4,36],[-3,30],[-2,20],[-1,12],[-1,13],[-2,22],[-2,29],[-1,19],[0,12],[0,11],[1,15],[-1,7],[-1,4],[0,-10],[-1,-9],[-2,1],[0,17],[0,28],[-1,15],[-1,26],[-1,-12],[1,-15],[1,-12],[0,-19],[0,-29],[-1,-18],[-1,-4],[-1,-5],[-2,3],[-2,0],[-4,2],[-3,7],[-2,9],[-1,5],[-2,5],[-1,18],[0,25],[1,21],[1,28],[0,27],[-1,32],[-1,31],[0,29],[0,29],[0,23],[-2,40],[-2,44],[-2,37],[-1,5],[-1,6],[-1,9],[-2,28],[-2,28],[-1,17],[-1,14],[-2,14],[0,26],[-1,27],[-2,11],[0,18],[-1,16],[-2,16],[-3,31],[-2,15],[-2,6],[-2,4],[0,7],[-1,24],[-1,13],[1,11],[1,-4],[1,-5],[1,-4],[2,-7],[1,-16],[2,-10],[1,-11],[2,-2],[1,0],[2,3],[2,5],[1,9],[2,14],[2,15],[1,17],[1,13],[1,9],[1,14],[2,9],[3,8],[2,4],[1,-8],[1,-5],[0,9],[0,7],[1,7],[1,11],[2,12],[1,7],[2,3],[2,1],[5,-3],[3,-10],[2,-13],[-1,-18],[-1,-15],[-1,-13],[1,-8],[2,6],[1,9],[1,-3],[2,-7],[1,-11],[1,2],[0,17],[0,21],[1,15],[1,5],[1,4],[1,13],[1,5],[1,3],[2,-4],[1,-1],[2,5],[1,0],[1,-3],[3,-6],[2,2],[2,0],[2,-7],[2,-9],[2,-21],[-1,-19],[1,-3],[2,9],[3,14],[1,4],[2,16],[1,7],[2,5],[2,11],[1,-4],[0,-17],[1,-16],[3,-12],[2,-13],[4,-8],[3,-11],[1,-4],[3,-10],[1,-3],[3,-1],[3,11],[2,5],[2,16],[3,5],[5,2],[4,4],[3,4],[1,-11],[1,-12],[0,-15],[0,-13],[-1,-16],[0,-14],[1,-18],[2,-10],[1,2],[1,-3],[2,5],[1,1],[1,-1],[1,-1],[3,5],[2,6],[0,13],[0,13],[1,8],[1,8],[0,1],[1,-1],[1,0],[2,-9],[1,-10],[0,-17],[1,-11],[1,-11],[1,-6],[1,5],[0,14],[1,14],[1,13],[1,9],[2,10],[1,13],[0,16],[0,7],[2,2],[1,5],[1,-2],[1,-1],[1,7],[0,17],[1,18],[0,21],[2,8],[0,8],[-1,7],[-1,10],[0,14],[0,14],[-1,6],[-1,7],[0,8],[2,11],[-1,14],[-1,13],[-2,12],[-1,9],[0,10],[-1,7],[-2,7],[0,9],[1,8],[1,4],[1,6],[1,11],[1,18],[0,6],[1,16],[0,6],[1,-7],[1,-2],[1,2],[1,7],[1,12],[0,16],[1,12],[1,-6],[0,-13],[0,-23],[0,-16],[1,-5],[1,0],[1,-9],[2,-9],[1,-4],[-1,13],[0,8],[-1,12],[-1,17],[0,11],[0,13],[-1,15],[1,10],[1,6],[1,17],[1,13],[1,14],[1,7],[1,-4],[0,-16],[1,-8],[1,-11],[1,-5],[1,2],[0,12],[0,15],[-1,10],[0,10],[1,10],[1,3],[1,-6],[0,-7],[1,-4],[1,-2],[2,-1],[0,-7],[1,-14],[-1,-21],[2,-12],[1,-7],[1,-5],[1,-10],[1,2],[0,9],[-1,14],[-1,8],[-2,3],[0,7],[0,12],[1,9],[1,14],[0,20],[1,17],[-1,16],[-1,11],[-1,7],[0,15],[0,15],[1,-3],[1,-6],[1,-17],[1,-6],[0,-10],[1,-6],[2,-5],[1,-2],[1,1],[3,-1],[1,3],[1,8],[1,17],[-1,11],[-1,8],[0,9],[1,5],[2,-4],[1,4],[2,-6],[2,-9],[1,-7],[1,-7],[1,-7],[1,4],[1,-7],[1,-14],[1,-1],[1,-5],[0,-15],[-1,-13],[-1,-18],[1,-3],[1,6],[1,6],[1,0],[1,-7],[1,-14],[1,-16],[0,20],[0,20],[1,7],[1,11],[0,13],[1,8],[1,5],[2,16],[0,17],[-1,17],[0,18],[-1,14],[0,15],[0,19],[-1,13],[0,14],[0,16],[1,12],[1,6],[1,5],[1,2],[1,-2],[1,2],[1,16],[0,13],[1,0],[1,-4],[1,2],[1,-1],[0,3],[1,-1],[2,12],[1,11],[1,8],[1,10],[1,11],[0,12],[1,11],[2,8],[1,11],[1,18],[0,15],[2,5],[0,-10],[-1,-17],[0,-12],[0,-18],[-1,-15],[-1,-13],[0,-19],[0,5],[1,12],[1,4],[1,3],[1,-4],[0,7],[0,17],[0,22],[1,12],[1,-2],[1,-1],[0,2],[1,-2],[1,-6],[1,-3],[2,-5],[0,-8],[1,-3],[2,-1],[2,-4],[1,-15],[2,-10],[1,-2],[1,-1],[1,-5],[2,-10],[0,-17],[1,-10],[1,-4],[2,-5],[1,-6],[1,-10],[1,-9],[-1,-13],[-2,-4],[-1,2],[-2,-10],[0,-16],[-1,-25],[-1,-14],[-1,-13],[1,-10],[1,1],[0,11],[1,0],[1,0],[1,3],[1,9],[1,14],[1,9],[1,2],[1,-2],[1,6],[0,12],[1,12],[0,15],[1,5],[0,1],[1,-6],[1,-6],[1,2],[-1,11],[2,9],[1,9],[1,13],[0,15],[1,7],[1,4],[2,0],[1,1],[1,-7],[1,9],[0,16],[1,0],[1,1],[2,8],[0,8],[1,12],[1,9],[1,3],[2,6],[1,5],[1,8],[1,-3],[1,1],[1,6],[0,3],[2,-2],[2,1],[2,3],[2,12],[1,-1],[1,-13],[0,-14],[-1,-12],[1,-6],[1,4],[1,-9],[1,-7],[0,4],[0,11],[0,15],[1,9],[0,10],[0,13],[1,0],[1,3],[2,4],[0,8],[1,1],[1,-5],[1,2],[0,2],[4,-1],[0,-8],[0,-16],[-1,-7],[0,-9],[-1,-3],[-2,4],[-2,-7],[-2,-11],[0,-5],[-1,-3],[0,-7],[0,-15],[0,-15],[-1,-17],[0,-15],[1,-16],[-1,-17],[-1,-16],[1,-19],[0,-7],[1,-7],[0,20],[0,15],[1,12],[0,9],[0,10],[0,9],[0,12],[1,16],[0,17],[0,11],[1,7],[2,10],[1,9],[1,1],[2,-13],[1,-4],[0,7],[1,13],[2,1],[1,-2],[1,-6],[1,-4],[1,-1],[1,-5],[0,-9],[1,-3],[1,7],[0,19],[1,14],[1,10],[1,11],[0,15],[0,12],[0,24],[-1,13],[-2,13],[1,11],[-2,4],[-1,-4],[-2,-21],[-2,-38],[-1,12],[2,32],[1,32],[1,33],[0,19],[-2,8],[-1,24],[1,22],[2,0],[0,-11]],[[4724,46473],[0,-1],[-1,4],[-1,10],[0,19],[1,8],[1,11],[1,8],[0,2],[2,-1],[0,-4],[0,-9],[0,-13],[-1,-12],[-2,-22]],[[1730,46539],[3,-18],[2,14],[1,-9],[0,-23],[1,-17],[1,-27],[-2,-34],[-2,-40],[-2,-41],[0,-25],[2,-30],[2,-28],[0,-17],[2,-29],[2,-41],[1,-47],[2,-52],[6,-63],[2,-27],[3,-26],[5,-27],[7,-46],[4,-39],[2,-31],[20,-141],[2,-23],[6,-12],[2,-19],[8,-36],[8,-45],[5,-40],[18,-55],[8,-13],[10,2],[9,7],[3,14],[0,19],[0,9],[1,3],[13,-35],[0,-17],[0,-25],[3,-33],[9,-71],[18,-122],[2,-21],[3,-24],[4,-11],[3,1],[2,-18],[1,-22],[-2,-13],[-2,-10],[-1,-24],[-3,-15],[-3,-6],[-5,-9],[-4,-2],[0,2],[-1,29],[-3,8],[-1,22],[1,26],[-2,49],[-2,14],[-3,12],[-5,13],[-7,19],[-8,9],[-5,-11],[-2,-12],[-2,4],[-10,11],[-6,0],[0,-2],[-4,0],[-3,-22],[-4,-18],[-5,-17],[-7,-19],[-4,-21],[-6,22],[-3,55],[-9,44],[-7,45],[-1,4],[-2,13],[-5,23],[-3,6],[-3,-5],[-1,3],[-3,44],[-3,32],[0,15],[-1,20],[-2,26],[0,14],[-6,56],[0,-1],[-1,7],[-2,4],[-1,8],[-2,22],[-1,7],[-2,16],[0,9],[-1,11],[-2,15],[-1,4],[-2,10],[-2,20],[0,12],[-1,4],[-1,8],[-2,14],[-2,12],[-2,16],[-1,9],[-2,17],[-1,14],[-2,17],[0,3],[-2,1],[-1,6],[0,11],[0,5],[-1,13],[0,10],[-2,19],[-2,16],[-1,19],[0,3],[0,9],[-1,1],[0,7],[-1,11],[-3,15],[-2,2],[-1,-4],[-1,-3],[-1,1],[-1,6],[0,4],[-2,-1],[0,-2],[-1,-3],[-2,2],[0,5],[-1,2],[-1,10],[-2,14],[-5,20],[-3,11],[0,1],[-2,-6],[-1,3],[-1,-2],[0,3],[-2,5],[-3,31],[0,9],[0,9],[2,3],[2,11],[1,16],[0,15],[-1,19],[-1,18],[1,17],[0,21],[1,15],[0,17],[-1,15],[0,18],[-2,17],[1,8],[1,0],[0,-4],[2,-1],[1,4],[0,18],[-1,27],[0,5],[0,15],[0,6],[0,10],[0,-1],[1,8],[3,-3],[2,6],[2,6],[2,20],[3,28],[2,6],[2,8],[0,2],[0,1],[1,14],[2,33],[3,56],[2,21],[1,1],[1,-5],[2,5]],[[1699,46617],[-1,-5],[-1,13],[-1,9],[-2,5],[-1,7],[-1,7],[-1,12],[-1,12],[-1,19],[-1,27],[-1,3],[-1,5],[-1,7],[-1,11],[-1,5],[-1,7],[-1,8],[-1,19],[1,18],[0,16],[1,16],[1,7],[1,13],[1,18],[1,14],[0,13],[2,18],[0,23],[1,7],[1,3],[1,15],[1,13],[2,5],[0,-12],[1,-19],[1,-13],[0,-11],[1,-15],[-1,-12],[-1,-14],[0,-18],[1,-24],[1,-13],[0,-23],[0,-13],[-1,-17],[1,-19],[-1,-12],[0,-11],[0,-13],[0,-19],[1,-16],[1,-11],[2,-21],[0,-20],[0,-17],[-1,-7]],[[4059,47744],[0,-24],[-1,-9],[-2,4],[-2,-5],[-1,11],[-1,-5],[-1,-15],[-2,-5],[-1,-2],[-2,-8],[-2,-3],[-2,7],[-3,2],[-3,-4],[-1,14],[-1,45],[6,47],[2,18],[2,10],[2,6],[2,-2],[2,-4],[1,0],[0,-11],[5,-20],[3,-13],[0,-10],[0,-24]],[[3972,47689],[-1,-10],[-2,-4],[-1,6],[-2,2],[-1,-22],[-1,0],[-2,4],[-1,-18],[-2,-3],[-1,-18],[-1,-8],[-3,-3],[-2,-5],[-2,-3],[-1,-3],[-1,-6],[-7,1],[-1,-3],[-1,-10],[-1,0],[-2,-1],[-1,3],[0,19],[-1,16],[-1,22],[0,22],[0,36],[2,18],[1,16],[0,14],[1,19],[1,14],[1,18],[0,25],[1,25],[1,35],[0,3],[4,-21],[6,-12],[4,-36],[4,-6],[4,-28],[9,-45],[1,-13],[-1,-22],[0,-18]],[[3965,48141],[1,-21],[-1,-17],[0,-16],[0,-19],[1,-27],[0,-18],[0,-8],[-1,-4],[-1,1],[0,-18],[4,11],[1,-15],[1,-17],[2,-26],[4,-50],[3,-51],[3,-12],[2,-12],[1,-4],[2,-1],[2,5],[16,102],[2,31],[3,20],[1,10],[2,5],[3,5],[2,2],[2,5],[1,0],[1,4],[2,3],[1,1],[1,4],[1,1],[1,-24],[1,7],[0,22],[0,10],[1,1],[1,-8],[0,-64],[0,8],[1,15],[0,18],[1,13],[1,15],[1,1],[2,-5],[0,-16],[1,19],[4,-15],[1,-9],[-1,-12],[-1,-6],[-1,-8],[-1,-47],[-1,-20],[-1,-21],[-2,-12],[-1,-5],[-1,-8],[-1,1],[-1,2],[0,-15],[-1,-16],[0,-8],[0,-14],[1,-9],[-2,-47],[-1,-49],[-1,-25],[0,-17],[1,-19],[2,-15],[3,-24],[5,-5],[1,-7],[1,-3],[7,11],[8,3],[1,1],[1,0],[11,1],[6,0],[5,9],[4,13],[3,11],[3,-10],[1,-7],[1,-5],[4,-3],[3,2],[2,-15],[0,-18],[3,-16],[4,-34],[0,-19],[1,-20],[2,-5],[2,12],[2,3],[2,11],[1,1],[0,16],[2,-1],[1,-1],[7,-30],[1,-18],[-1,-15],[1,-17],[2,0],[2,-18],[5,13],[2,3],[2,4],[2,0],[0,14],[4,-11],[1,-26],[1,-13],[1,-16],[0,-26],[-1,-5],[-2,5],[-1,-37],[1,-16],[2,-13],[0,-42],[0,-33],[-1,-22],[0,-17],[-1,-13],[-1,-16],[2,-12],[2,-5],[3,0],[2,11],[1,-18],[-1,-13],[-1,-19],[-1,-12],[1,-19],[2,-20],[1,-38],[0,-16],[3,-27],[1,-24],[1,-10],[2,-10],[0,-19],[0,-17],[-2,3],[-2,2],[-3,0],[-6,-9],[-2,-11],[-2,-23],[-8,-29],[-1,-15],[-1,-13],[0,-14],[-3,-20],[0,-11],[-3,-22],[-2,-131],[-3,-7],[-3,-9],[-4,-63],[0,-17],[-1,-65],[-2,-19],[0,-15],[-1,-5],[-4,-24],[-2,-14],[-5,-21],[-4,19],[-16,-13],[-1,-12],[-2,-11],[-1,0],[-1,-11],[-1,-15],[0,-10],[0,-5],[-1,-1],[-1,-3],[-2,-3],[0,-13],[0,-16],[0,-13],[1,-6],[0,-1],[4,-37],[0,-2],[1,-5],[1,-6],[1,-4],[3,-6],[2,-5],[1,-10],[3,-2],[0,-2],[3,-17],[2,-23],[2,-23],[0,-24],[0,-14],[1,-8],[1,-12],[1,-33],[0,-21],[-3,-30],[-3,-28],[-4,-13],[-6,-16],[-2,-19],[-5,-21],[-4,-15],[-2,-2],[-1,5],[-4,7],[-3,-4],[-2,-1],[-2,-14],[-2,-34],[-1,-25],[1,-17],[1,-4],[2,-26],[1,-35],[1,-25],[2,-38],[1,-36],[0,-14],[2,-19],[2,-30],[0,-37],[-2,-34],[-3,-10],[-5,-7],[-4,-1],[-6,-12],[-1,-1],[-2,-4],[-3,-26],[0,-23],[0,-47],[1,-9],[0,-14],[0,-37],[-2,-48],[-4,-17],[-7,-112],[-3,-18],[-1,-24],[-3,-32],[-4,-19],[-3,-6],[-3,6],[-1,-7],[-10,13],[-3,1],[-4,12],[-2,7],[-12,28],[-8,39],[-5,27],[-2,21],[-1,0],[-5,28],[-3,17],[0,16],[-1,0],[-6,31],[-3,27],[-4,33],[0,10],[-2,12],[-2,19],[-1,0],[-1,2],[0,9],[-1,12],[-1,9],[-2,13],[-1,10],[-1,8],[-2,15],[-1,11],[-1,14],[-1,9],[-2,13],[-1,5],[0,7],[-2,20],[-1,9],[0,13],[-1,14],[-1,9],[-1,8],[-1,11],[-1,12],[-1,6],[-1,11],[0,4],[-1,10],[-1,17],[-1,13],[-2,10],[0,10],[-1,11],[-1,12],[-2,15],[0,11],[-1,19],[0,12],[0,17],[1,17],[1,14],[1,10],[1,3],[1,-2],[0,-2],[1,-9],[1,-3],[0,14],[1,12],[1,10],[2,0],[1,1],[1,-4],[1,3],[0,7],[1,8],[1,6],[1,4],[2,1],[1,0],[0,-2],[0,-12],[1,-3],[1,10],[1,9],[1,5],[1,10],[1,9],[1,6],[1,1],[1,3],[1,6],[1,2],[0,6],[2,3],[1,12],[0,8],[1,8],[0,-4],[1,-6],[2,0],[1,10],[1,15],[-2,0],[0,-13],[-1,10],[0,11],[3,72],[-1,16],[2,30],[3,8],[2,0],[1,5],[0,21],[0,27],[1,21],[0,13],[1,14],[-1,25],[-2,19],[-1,14],[-3,9],[-2,5],[-2,-4],[-2,2],[-1,-6],[-2,2],[-2,1],[-2,7],[-3,5],[-3,4],[-2,0],[-1,-5],[-1,-12],[-1,-8],[-1,-11],[-1,-8],[-1,-6],[-1,-5],[-1,7],[-2,-3],[-2,-3],[0,-3],[-1,-14],[-1,-12],[0,-9],[-2,-4],[-1,-9],[-1,-5],[-1,-7],[-1,-2],[-2,0],[-1,-4],[0,-6],[-1,-5],[-2,-6],[-2,-1],[-1,-8],[-1,-14],[0,-13],[-1,-12],[-2,-7],[-1,-5],[-1,-3],[-1,-13],[-2,-15],[-1,-1],[-4,4],[-3,0],[-2,-4],[-2,-5],[-1,0],[-2,-2],[-1,-8],[-2,-9],[-1,1],[-2,4],[-3,9],[-2,15],[-2,12],[-2,5],[-1,7],[-2,10],[-2,3],[-3,0],[-5,3],[-1,-3],[-2,0],[-2,3],[-2,10],[-1,8],[-1,13],[-1,20],[-1,34],[-1,33],[-2,12],[-1,1],[-1,2],[0,8],[-1,15],[0,19],[0,17],[-1,5],[-1,6],[-1,9],[0,9],[0,18],[1,15],[1,3],[1,2],[1,8],[1,3],[1,3],[1,14],[1,14],[1,20],[1,26],[1,8],[2,12],[1,1],[1,-1],[2,0],[2,-2],[1,0],[2,-7],[1,0],[2,-1],[2,-4],[2,-9],[2,0],[2,2],[3,-5],[2,3],[1,2],[1,0],[1,5],[1,4],[1,8],[0,6],[1,6],[1,12],[2,23],[0,15],[0,17],[0,12],[-1,14],[0,13],[1,13],[0,15],[1,15],[2,4],[1,8],[1,12],[0,5],[1,3],[2,-3],[1,-7],[1,2],[1,5],[1,0],[2,-1],[2,1],[2,9],[2,18],[2,26],[2,27],[1,31],[2,31],[1,9],[1,11],[1,4],[8,6],[1,3],[2,4],[1,12],[1,14],[0,22],[1,13],[1,12],[0,24],[1,10],[2,5],[1,9],[1,13],[0,15],[1,9],[1,11],[1,3],[2,3],[1,-5],[1,-7],[3,-7],[2,2],[1,9],[3,13],[1,8],[1,12],[2,8],[2,12],[1,19],[2,17],[2,13],[1,13],[0,19],[1,15],[-1,18],[1,10],[-2,31],[-2,16],[-1,7],[-2,13],[-3,21],[-1,5],[-1,10],[-2,13],[-1,13],[-1,16],[-1,25],[0,7],[-1,2],[-1,14],[-1,14],[-1,34],[0,28],[0,10],[0,8],[0,13],[0,15],[1,6],[1,-7],[0,-3],[2,-4],[1,0],[1,-2],[1,5],[1,-1],[1,10],[1,-7],[2,4],[1,2],[1,1],[1,7],[1,6],[1,-1],[1,-2],[1,7],[1,3],[4,23],[1,7],[1,7],[1,3],[1,11],[1,14],[1,6],[3,14],[7,33],[1,10],[1,8],[1,2],[1,-8],[1,-2],[0,2],[1,-2],[0,4],[0,14],[-1,0],[-1,8],[1,11],[1,4],[0,7],[1,11],[1,5],[1,-12],[1,-4],[-1,25],[-1,9],[1,9],[1,21],[-1,25],[-1,27],[0,14],[0,10],[-2,7],[-1,10],[-3,13],[-1,6],[-4,15],[-2,20],[-2,9],[-3,18],[-4,30],[-4,28],[0,13],[0,10],[0,23],[0,28],[1,28],[1,20],[1,19],[1,11],[1,14],[1,10],[1,9],[1,1],[1,-2],[1,2],[1,8],[1,7],[1,-4]],[[4267,48067],[1,-12],[2,0],[1,6],[0,-16],[4,-3],[1,-10],[1,0],[1,-8],[1,2],[1,-3],[1,-16],[-1,-3],[-1,-2],[-2,-4],[-1,14],[-3,3],[-4,-5],[-2,-4],[-1,-4],[-2,-14],[-1,-4],[-1,-7],[-1,-7],[-2,-1],[-1,19],[1,16],[1,19],[3,20],[8,86],[2,8],[3,8],[3,6],[-1,-16],[-4,-11],[-2,-24],[-1,-18],[-1,-3],[-1,-2],[-2,-10]],[[4903,39129],[-1,8],[-1,3],[-1,6],[-1,6],[-2,11],[-2,5],[-2,1],[-10,83],[-2,1],[0,-1],[-3,-13],[-2,-13],[-4,-20],[-3,-20],[-2,-7],[-2,2],[-1,-5],[-2,-13],[-3,-8],[-4,-24],[-4,-10],[-1,-3],[-2,-3],[-3,6],[-2,10],[-2,19],[-1,4],[-2,0],[-2,3],[-2,4],[-1,6],[-3,4],[-1,-10],[-3,-13],[-3,-17],[-5,-37],[-4,-28],[-3,-15],[0,-10],[-1,-19],[-1,-34],[1,-29],[2,-34],[5,-11],[2,0],[-1,15],[1,2],[2,-12],[3,-10],[1,-13],[0,-13],[-1,-5],[-4,5],[-1,7],[-4,2],[-5,38],[-5,51],[-4,58],[-1,22],[-2,35],[-4,45],[-4,60],[-4,57],[-3,37],[0,19],[1,2],[2,-25],[2,-30],[2,-23],[1,24],[0,19],[0,17],[1,11],[1,-6],[1,19],[1,13],[-1,12],[-3,2],[-2,-5],[-2,-11],[-2,-4],[-1,2],[-2,9],[-1,30],[-2,37],[-2,47],[-4,143],[-4,96],[-3,85],[-2,52],[-2,47],[0,22],[-1,22],[1,21],[4,47],[4,58],[2,45],[2,38],[1,33],[2,33],[0,-61],[-2,-24],[-1,-36],[-2,-32],[-4,-39],[-3,-45],[-2,-26],[0,-20],[0,-14],[1,-22],[1,-30],[2,-54],[1,-23],[2,-12],[0,-21],[0,-22],[1,-12],[1,10],[1,12],[1,5],[2,2],[1,27],[3,8],[4,22],[3,14],[2,17],[2,43],[2,27],[0,5],[-8,6],[-1,54],[3,47],[5,13],[-1,19],[-1,5],[-1,-2],[0,10],[-1,-5],[-1,8],[0,64],[1,60],[1,53],[0,52],[0,45],[0,46],[1,65],[1,39],[2,10],[2,5],[2,18],[2,23],[2,12],[2,5],[3,-5],[0,-8],[2,9],[2,27],[2,37],[0,24],[3,45],[1,17],[1,15],[3,17],[1,2],[1,-1],[-1,-16],[-2,-11],[-2,-12],[2,-8],[2,-8],[1,-9],[1,-9],[1,-11],[1,-9],[1,-9],[0,6],[-1,16],[-2,24],[-1,15],[3,21],[3,47],[2,67],[3,63],[1,42],[2,25],[2,13],[1,2],[0,-9],[-2,-18],[-1,-19],[1,-23],[4,3],[3,2],[3,2],[2,-5],[3,23],[4,33],[2,26],[1,27],[0,55],[-2,42],[-5,73],[-6,122],[-5,67],[-4,43],[-5,47],[-4,51],[-2,54],[-1,33],[-5,70],[-5,60],[-3,62],[-1,32],[0,48],[0,31],[0,7],[-2,58],[-1,30],[1,17],[1,37],[-1,32],[-2,29],[-4,61],[-1,9],[-2,24],[-1,29],[-1,13],[-3,79],[-1,42],[-1,22],[-1,39],[-1,20],[-1,27],[-3,25],[0,15],[0,8],[0,14],[1,10],[-2,22],[-4,45],[-3,38],[-3,17],[-1,-2],[-1,2],[-1,13],[-3,32],[-5,65],[-6,83],[-1,19],[-2,35],[-2,12],[-1,11],[-2,41],[0,25],[0,24],[-5,153],[3,61],[-1,28],[0,23],[-7,83],[0,1],[-2,5],[-2,6],[-1,11],[-3,33],[-1,13],[-1,10],[-1,13],[-2,21],[-3,54],[0,4],[-1,10],[-1,23],[-1,27],[-1,26],[-1,22],[-1,24],[0,16],[0,19],[0,10],[0,30],[-1,14],[0,5],[-2,15],[-1,52],[-2,29],[0,7],[0,24],[-1,30],[0,18],[0,17],[0,17],[0,21],[1,19],[2,12],[1,14],[2,24],[1,20],[2,32],[0,21],[0,28],[0,26],[1,17],[1,3],[3,14],[-2,10],[1,24],[0,21],[0,16],[0,18],[-1,16],[-2,18],[-3,28],[-4,44],[-3,33],[-2,21],[-2,27],[-1,34],[1,0],[1,-9],[1,-18],[2,-12],[2,5],[2,19],[3,9],[3,26],[1,17],[3,4],[3,-1],[2,11],[1,12],[1,19],[0,45],[0,27],[-2,16],[-2,12],[-1,18],[1,8],[3,-3],[4,3],[3,-4],[1,-18],[-1,-32],[1,-13],[1,32],[0,27],[-1,20],[0,10],[-2,3],[-3,8],[-2,-15],[-2,-8],[-3,7],[-2,-3],[-2,-15],[-1,-17],[2,-12],[4,-13],[2,-15],[1,-27],[-1,-27],[-3,-24],[-3,-9],[-2,-2],[-1,0],[-1,-4],[-2,-6],[-3,-22],[-1,-13],[-1,-6],[-7,31],[-3,7],[-1,7],[-1,11],[-2,16],[-1,21],[1,24],[1,26],[2,9],[2,18],[0,19],[1,24],[-1,22],[0,13],[-2,14],[0,-31],[0,-23],[-2,-29],[-3,-29],[-1,-16],[-3,-47],[1,-6],[1,11],[1,-29],[-1,-7],[3,-19],[-2,-15],[-1,7],[-2,8],[-2,20],[-1,11],[-1,10],[-2,-2],[-1,-1],[-2,-2],[-1,5],[-1,28],[-2,44],[-2,20],[0,17],[1,23],[2,17],[-2,-5],[-3,-16],[-2,14],[-5,36],[-4,28],[0,14],[-2,-8],[-2,7],[-2,16],[-1,9],[-2,12],[-2,7],[-2,19],[0,20],[-2,6],[-1,7],[-1,13],[-1,21],[0,34],[0,27],[1,21],[1,8],[1,6],[2,12],[3,14],[2,4],[2,12],[2,17],[2,23],[3,31],[4,39],[2,30],[2,32],[13,107],[6,389],[4,57],[5,84],[3,46],[2,25],[6,36],[1,43],[-1,39],[0,22],[3,100],[1,31],[5,-2],[0,6],[0,10],[-4,11],[-3,-2],[1,70],[-1,15],[0,16],[1,14],[2,15],[6,16],[0,12],[2,18],[1,21],[1,19],[3,28],[7,62],[9,79],[1,25],[-6,60],[0,-9],[-1,-9],[-4,-12],[-7,-17],[-5,-10],[-6,-13],[-4,-15],[-6,-40],[-4,-50],[-2,-27],[-1,-24],[-2,-41],[0,-30],[0,-22],[-4,-67],[-5,-186],[-1,-28],[-1,-16],[-1,-12],[-1,6],[-1,-18],[-1,-28],[-1,-20],[0,-15],[-2,-6],[-1,-4],[0,-12],[0,-13],[-1,-12],[-1,-9],[0,-18],[0,-13],[0,-15],[0,-39],[0,-21],[-1,-17],[-1,-7],[-1,2],[-2,9],[0,18],[0,-12],[-1,-21],[1,-24],[-1,-3],[0,-14],[0,-17],[0,-22],[-1,-20],[-1,-18],[0,-18],[-1,-17],[0,-17],[-1,-13],[-1,-6],[-1,-9],[-1,-5],[-6,-66],[-6,19],[0,25],[0,34],[0,48],[-2,28],[-1,-9],[1,-25],[-1,-33],[-1,-28],[2,-53],[1,-39],[1,-3],[1,-4],[0,-21],[1,-13],[1,-6],[0,-4],[2,-8],[-1,-15],[0,-3],[-1,3],[-1,-1],[1,-11],[1,-9],[1,-10],[0,-4],[1,-4],[2,-4],[1,-5],[-1,-12],[0,-10],[-1,-12],[-2,-14],[-1,-6],[-1,-10],[-2,-13],[-4,-17],[-2,-4],[-1,-1],[-1,14],[0,10],[2,28],[0,24],[1,14],[0,17],[-1,-7],[-1,-19],[-1,-13],[0,-9],[-1,-6],[-1,3],[-1,9],[1,13],[0,11],[1,12],[-1,1],[-1,-10],[-1,-4],[-1,0],[-3,-25],[-1,-17],[-1,-16],[-1,-13],[0,-9],[1,-13],[1,-8],[1,-10],[0,-18],[-1,-10],[-1,-9],[-2,-8],[-1,-6],[-1,-8],[-1,-3],[-1,1],[-2,5],[0,16],[0,22],[-1,2],[0,-20],[-1,-15],[0,-17],[-1,-10],[-1,-1],[1,-20],[-1,-20],[-1,-2],[0,7],[0,11],[-1,7],[0,-25],[0,-18],[-1,-7],[-3,2],[0,10],[-1,10],[-1,12],[0,10],[-1,15],[-1,16],[1,15],[-2,2],[0,20],[-1,18],[-1,8],[-1,-1],[1,-12],[1,-14],[0,-17],[0,-18],[1,-17],[0,-13],[0,-26],[0,-18],[1,-21],[0,-19],[-1,1],[-1,13],[-1,3],[-3,13],[-2,11],[1,-12],[1,-8],[1,-3],[1,-12],[1,-9],[1,-22],[-1,-9],[-1,-5],[-1,-5],[-1,-9],[1,-9],[1,7],[1,6],[2,9],[1,9],[1,3],[2,-1],[0,-1],[1,-16],[-1,-11],[-1,-5],[-1,-8],[0,-14],[-1,-19],[-1,-7],[-2,-4],[-1,1],[-1,-4],[2,-6],[1,-3],[1,-7],[5,18],[1,-5],[1,-8],[1,-15],[-1,-15],[0,-10],[0,-1],[2,1],[1,-2],[1,-3],[1,-9],[0,-12],[0,-19],[0,-25],[0,-14],[-1,-10],[-1,0],[-1,7],[-1,-3],[2,-20],[0,-18],[-1,-10],[-1,-19],[-1,-8],[-1,-2],[0,-8],[-1,-4],[0,-1],[-4,-2],[-1,-1],[0,31],[0,19],[0,15],[0,16],[0,16],[-1,9],[-1,-85],[-1,-2],[-1,1],[-1,12],[-1,-12],[-1,-2],[0,4],[-1,6],[0,7],[-1,6],[0,-28],[-1,-8],[-1,-2],[-2,-5],[-2,12],[-1,18],[-1,7],[-3,2],[-1,-5],[-2,-9],[-2,-3],[-1,25],[-1,20],[-3,2],[-2,-10],[-1,-16],[0,-14],[0,-17],[1,7],[1,33],[1,2],[1,-2],[2,-8],[1,-20],[1,-10],[1,-3],[2,3],[2,5],[3,-36],[0,-12],[-1,-10],[-1,-11],[0,-16],[-1,-5],[-1,-3],[1,-13],[1,-6],[1,8],[0,20],[1,13],[1,16],[2,-1],[1,-5],[2,2],[3,12],[1,2],[8,-17],[1,-12],[1,-4],[1,-44],[3,-47],[5,-24],[7,-38],[10,-36],[7,-34],[1,-9],[0,-17],[0,-15],[1,-15],[0,-9],[-2,-37],[-3,-57],[-2,-36],[-4,-41],[-2,-31],[-1,-31],[0,-68],[0,-32],[1,-6],[0,-60],[1,-125],[1,-54],[2,-40],[1,-28],[0,-10],[-1,-37],[-1,-18],[1,-32],[-2,-33],[-2,-27],[-1,-1],[-1,-41],[0,-25],[-1,-22],[0,-4],[-7,-41],[-3,-36],[-5,-25],[-4,-6],[-1,9],[-2,-8],[-4,-14],[-5,-10],[-2,-5],[-6,5],[-4,10],[-4,10],[-3,13],[-1,13],[-2,7],[-1,1],[-1,2],[-1,1],[-1,1],[-2,5],[-4,30],[-2,6],[-1,12],[0,24],[0,1],[2,33],[-2,13],[-1,0],[-1,-23],[-2,-24],[0,-4],[-2,-17],[-1,-13],[2,-12],[0,-7],[5,-35],[0,-18],[1,-15],[-1,-34],[-2,-31],[-6,-96],[-36,-123],[-27,-152],[-3,-22],[-34,-133],[-3,-12],[-2,-6],[-1,-7],[-1,-6],[-5,-26],[-1,-2],[-9,-21],[-6,-8],[-4,-5],[-1,6],[-2,-4],[-3,-6],[-4,-7],[-3,-19],[-7,-29],[-9,-29],[-11,-20],[-17,-29],[-16,-23],[-15,-20],[-11,-11],[-8,-5],[-2,-2],[-3,-3],[-5,-7],[-6,-1],[-2,5],[-4,-9],[-7,3],[-4,1],[-1,-3],[-1,-1],[-5,4],[-2,2],[-3,0],[-4,6],[-3,1],[-1,-5],[-3,11],[-3,7],[-3,2],[-3,6],[-2,-10],[-2,8],[-1,-1],[-3,7],[-2,-1],[-1,-4],[-1,1],[-3,8],[-2,-1],[-3,4],[-2,13],[-2,6],[-1,0],[-3,1],[-2,14],[-2,11],[-3,1],[-2,-3],[-2,2],[-1,16],[-2,8],[-2,8],[-2,12],[-1,-8],[-1,6],[-1,7],[-1,1],[-2,-1],[-2,4],[-2,13],[-2,11],[-1,2],[-2,-4],[-3,15],[-3,7],[-2,12],[-2,11],[-5,42],[-5,55],[-3,40],[-1,25],[-2,63],[-2,34],[-2,31],[0,14],[0,20],[-1,9],[-1,6],[-1,24],[-1,29],[-1,55],[-1,36],[0,41],[0,31],[2,22],[2,20],[3,25],[3,2],[8,3],[1,0],[2,3],[3,3],[4,9],[3,9],[4,2],[2,-5],[0,-15],[-3,-18],[0,-18],[1,-14],[2,-28],[1,-12],[1,-7],[1,-7],[0,-10],[2,-16],[2,-4],[1,1],[1,2],[1,11],[-1,32],[-1,17],[0,15],[0,22],[1,15],[1,-1],[2,-9],[2,-8],[3,3],[1,4],[1,23],[1,12],[-3,21],[-1,-7],[-1,-18],[0,-22],[-2,4],[-1,5],[-2,5],[-2,-2],[-2,-12],[0,-16],[0,-30],[1,-28],[0,-18],[-2,6],[-2,19],[-2,21],[-2,29],[1,26],[3,25],[-1,18],[-2,4],[-2,3],[-3,-3],[-3,-2],[-1,1],[-1,2],[-1,7],[0,10],[-1,14],[0,24],[0,16],[1,6],[5,22],[1,9],[0,23],[-1,1],[-1,-5],[-3,-6],[-5,-25],[-1,0],[-2,12],[-4,21],[0,10],[-2,34],[-3,30],[-2,25],[-2,8],[-1,24],[-2,9],[-1,12],[-7,11],[-3,14],[-2,16],[-2,19],[-3,14],[-3,16],[-1,-1],[-5,27],[-2,10],[-2,-2],[-3,13],[-2,-7],[-2,3],[-2,18],[-2,17],[-2,12],[1,20],[-1,18],[-3,27],[-2,1],[-2,-12],[-1,6],[-1,31],[-1,0],[-1,12],[0,14],[-1,4],[-1,13],[-1,17],[-1,12],[-1,15],[-1,13],[-1,29],[-1,18],[-3,26],[-1,17],[-3,43],[-3,37],[-4,59],[-2,35],[-2,29],[1,2],[-4,37],[3,31],[7,-12],[1,-20],[2,-23],[1,-4],[3,9],[-2,4],[-2,14],[-1,22],[-2,18],[-3,2],[-1,15],[-1,-11],[-2,13],[-2,13],[-1,18],[-2,27],[-3,27],[-4,15],[-3,14],[-4,9],[-7,48],[-4,30],[-6,60],[-5,40],[-3,51],[-2,47],[0,25],[1,16],[2,-1],[2,-11],[5,2],[3,17],[1,10],[-2,-6],[-4,-4],[-2,0],[-2,11],[-1,12],[-1,5],[2,32],[0,25],[1,21],[1,10],[2,-8],[2,-7],[-1,16],[2,-2],[1,-9],[2,-4],[2,-39],[2,24],[-5,43],[-1,-4],[-5,12],[-1,18],[-2,1],[1,-17],[-1,-4],[1,-11],[-4,-68],[-2,-3],[-1,3],[-1,33],[-1,26],[1,52],[2,45],[3,49],[2,26],[3,11],[0,-51],[-1,-18],[2,-13],[3,29],[-1,30],[-1,37],[0,63],[0,33],[-1,29],[0,35],[1,22],[2,21],[4,7],[4,-7],[5,7],[4,7],[2,-1],[3,8],[0,13],[2,14],[0,29],[-2,39],[-2,44],[-1,27],[-1,43],[-2,45],[-1,18],[-1,11],[-2,26],[-1,19],[0,25],[0,23],[2,23],[2,6],[2,1],[3,-8],[2,-11],[1,0],[2,-2],[2,8],[7,39],[2,13],[0,1],[3,13],[4,12],[4,6],[3,2],[3,21],[0,37],[1,37],[-2,31],[0,30],[0,20],[0,20],[-3,43],[-3,19],[-2,10],[-3,-2],[0,2],[-2,0],[-1,4],[-1,6],[-1,10],[-2,16],[0,10],[-1,-9],[-1,6],[-2,4],[-2,12],[-1,11],[0,18],[1,13],[3,17],[3,23],[2,2],[0,-8],[1,6],[1,1],[0,-3],[0,1],[2,-1],[0,-3],[0,1],[5,10],[3,6],[1,-1],[0,-2],[1,1],[0,-1],[0,-8],[1,-7],[4,-24],[2,-9],[1,0],[2,3],[1,-2],[4,13],[2,12],[1,4],[3,23],[0,21],[0,27],[1,10],[4,35],[1,13],[1,17],[1,18],[0,15],[2,14],[3,53],[2,18],[0,7],[2,6],[2,18],[3,34],[2,31],[0,35],[1,20],[2,27],[8,47],[4,5],[10,-16],[4,-8],[5,23],[3,13],[1,9],[2,4],[3,9],[1,5],[3,51],[-1,11],[0,11],[1,6],[1,5],[1,20],[0,13],[2,14],[1,19],[-2,23],[0,26],[-1,14],[0,17],[3,23],[2,11],[2,16],[4,40],[0,18],[1,10],[1,5],[0,20],[2,21],[2,28],[0,19],[1,25],[2,17],[5,22],[10,33],[2,1],[8,33],[3,18],[2,10],[1,4],[2,-6],[1,-14],[3,-21],[1,0],[4,-2],[3,-2],[3,-11],[5,-12],[2,-11],[2,-42],[-1,-5],[-1,8],[-1,1],[-1,8],[-1,8],[-2,2],[-2,-1],[-2,-3],[0,-14],[1,-14],[2,-12],[4,-20],[2,4],[3,3],[0,15],[3,-12],[3,-9],[1,-2],[3,-5],[1,-17],[1,-10],[1,-56],[0,-17],[0,-19],[-2,-21],[-3,-19],[-1,-23],[-1,-24],[-1,-24],[0,-29],[0,-19],[-2,-14],[-1,-14],[1,-34],[5,-32],[3,-78],[-1,-10],[-3,-11],[-2,-15],[-2,-20],[-1,-18],[-1,-28],[0,-34],[0,-34],[0,-17],[0,-17],[1,-9],[4,-20],[0,-26],[0,-10],[-1,-10],[0,-18],[1,-19],[2,-29],[-1,-20],[0,-20],[2,-30],[2,-11],[4,-13],[5,-2],[6,2],[7,6],[5,23],[4,13],[5,22],[4,24],[7,52],[7,57],[4,32],[3,21],[9,65],[6,46],[6,54],[5,40],[5,54],[5,66],[2,35],[1,24],[1,21],[1,24],[0,25],[0,15],[-1,19],[0,15],[-2,11],[-1,13],[-2,22],[-3,25],[-4,36],[-2,19],[1,15],[1,3],[0,-12],[1,-11],[9,-19],[2,-2],[3,14],[1,15],[0,19],[-1,21],[-2,8],[-2,3],[-3,1],[-3,-3],[-3,0],[-4,-15],[-1,-16],[-1,16],[0,18],[0,26],[-1,31],[-1,25],[-2,21],[-1,9],[-1,14],[-1,15],[-1,16],[-1,11],[-1,10],[-1,9],[-3,5],[-5,38],[-2,0],[0,38],[1,17],[4,5],[5,27],[3,42],[3,-13],[2,31],[2,29],[4,6],[4,-19],[3,-1],[5,-12],[2,20],[5,-46],[3,11],[3,29],[2,35],[-2,33],[-3,21],[-13,32],[-13,22],[-8,-9],[-3,-30],[-1,27],[-3,6],[0,26],[-2,-6],[-3,-2],[-5,-14],[0,-30],[1,-11],[2,1],[7,-3],[0,-19],[-3,-17],[-6,-32],[-2,-31],[0,-38],[2,-36],[2,-18],[-2,-14],[2,-11],[1,-41],[-5,20],[-3,10],[-1,-1],[-3,18],[-4,9],[-2,3],[-3,9],[-1,10],[-3,2],[0,7],[-2,2],[-5,16],[-2,-1],[-2,15],[-2,0],[-1,5],[-2,6],[-2,8],[-2,4],[-2,11],[3,14],[-1,4],[-4,0],[-1,14],[-1,-4],[1,-15],[-1,-5],[-1,3],[-5,21],[1,12],[-3,2],[-2,0],[-1,-14],[-1,-4],[-2,1],[-1,-6],[-4,-2],[-1,-6],[-2,-8],[-1,-4],[-3,-2],[-1,7],[-1,11],[-1,-1],[-2,16],[-1,0],[-4,-7],[-1,2],[-2,-12],[-2,4],[-2,6],[-1,14],[-10,30],[1,21],[4,-12],[3,1],[1,14],[2,4],[2,13],[1,17],[1,16],[3,33],[1,16],[2,-4],[1,-3],[3,1],[3,21],[3,29],[2,6],[1,7],[2,13],[1,-3],[1,-14],[4,-5],[1,16],[1,14],[0,4],[2,-7],[-1,-23],[2,-17],[2,-11],[1,-4],[-1,-12],[1,-15],[1,-18],[0,-16],[-1,0],[-1,-16],[0,-18],[1,-1],[1,0],[1,5],[0,16],[1,8],[2,-9],[2,-6],[1,7],[1,-6],[2,-2],[1,-8],[1,-13],[1,-3],[2,10],[1,1],[1,-5],[-1,-10],[1,-9],[1,-1],[0,21],[3,17],[1,10],[1,11],[2,1],[1,-11],[-1,-14],[-1,-4],[1,-6],[1,-5],[1,6],[1,7],[1,-9],[1,10],[-1,13],[-1,13],[1,2],[3,14],[2,14],[1,-5],[2,9],[1,5],[3,7],[6,7],[4,21],[5,31],[2,21],[1,33],[-1,13],[-1,8],[-2,9],[-2,10],[-1,4],[0,21],[-3,-1],[-2,-2],[-2,8],[-2,1],[-2,4],[-2,-5],[-7,13],[-2,0],[-5,3],[-4,21],[-1,0],[-1,-2],[-3,-3],[-1,5],[-1,4],[-2,3],[-1,11],[-1,-2],[-1,3],[-1,2],[-1,0],[-1,-4],[-1,8],[-2,2],[-1,-8],[-1,4],[-1,3],[-1,0],[-1,5],[-1,-3],[-1,2],[-1,3],[-2,-2],[-1,-2],[-2,14],[2,10],[1,17],[2,-2],[2,8],[2,13],[0,21],[-3,30],[0,75],[1,-4],[0,-21],[2,-21],[2,-14],[3,4],[5,17],[2,11],[1,22],[2,13],[1,1],[0,-15],[3,12],[1,6],[0,28],[1,28],[-1,5],[0,21],[-1,16],[0,11],[-2,0],[-1,-4],[-1,-5],[-3,13],[-11,7],[-2,-6],[-1,-16],[-1,-24],[-1,-18],[0,-16],[-1,-16],[1,-23],[-1,-6],[-3,11],[-2,6],[-1,21],[-3,2],[-1,-8],[-1,-10],[2,-18],[2,-21],[1,-22],[0,-22],[0,-16],[-2,-2],[-2,-4],[0,-16],[0,-18],[0,-19],[-3,-9],[0,34],[-3,-13],[-1,-12],[-1,-6],[-1,-14],[-2,-2],[-1,-19],[-1,-8],[-1,-4],[-2,-13],[-1,-14],[-1,1],[-1,-9],[-1,-19],[0,-18],[-2,-9],[-1,-9],[1,-11],[-6,-47],[-1,-22],[1,-20],[-2,-25],[1,-15],[-1,-9],[-1,-28],[-2,-1],[-3,-8],[-2,-24],[-1,-23],[-1,-10],[2,-17],[-1,-25],[-1,8],[0,6],[-4,3],[-2,-1],[-3,11],[-7,-6],[-1,10],[0,17],[-2,10],[-1,-5],[1,-28],[0,-13],[-2,-11],[-1,13],[-1,13],[-3,7],[-3,-3],[-3,26],[-6,5],[-2,0],[-2,-2],[-2,-2],[-2,-9],[-1,7],[0,11],[2,17],[2,0],[2,-1],[2,1],[1,10],[1,22],[2,4],[2,18],[3,4],[4,39],[2,5],[7,-8],[-1,4],[3,-5],[4,7],[2,7],[4,35],[2,32],[1,22],[2,28],[0,29],[-2,25],[-1,6],[0,13],[0,23],[-2,36],[1,13],[3,17],[0,30],[0,11],[0,25],[-5,38],[-1,28],[-3,14],[2,10],[1,20],[-1,23],[0,16],[0,22],[0,33],[-4,13],[-1,16],[0,29],[0,37],[2,57],[-1,21],[-1,30],[-8,-13],[0,-20],[1,-40],[-2,0],[-3,9],[-3,-8],[-5,-6],[-1,-2],[-1,-14],[-2,-20],[3,-24],[5,-24],[4,-31],[6,38],[3,-36],[-2,-16],[0,-36],[1,-46],[-4,-4],[-2,-9],[0,-12],[-1,-30],[-1,12],[-1,73],[-1,14],[-4,-5],[-5,-14],[-8,-30],[0,-30],[2,-32],[3,-9],[5,4],[-1,-23],[-3,-33],[1,-25],[6,-9],[2,31],[7,1],[0,18],[0,28],[1,23],[6,4],[3,-16],[2,-37],[-3,-22],[-3,-1],[-2,-5],[0,-35],[-3,-6],[-6,-7],[-8,-7],[-5,-23],[-2,5],[2,40],[-3,29],[-3,11],[-4,-10],[0,-25],[-2,-16],[-3,0],[-2,-2],[-2,-15],[1,-14],[4,-28],[3,6],[1,28],[1,-8],[1,-21],[0,-11],[-5,-31],[0,-22],[0,-24],[1,-27],[2,-35],[1,-12],[0,-16],[2,-14],[5,-21],[4,3],[0,-25],[0,-50],[-1,-26],[-3,-11],[-2,6],[-3,-6],[-2,-8],[-1,-12],[-4,21],[-10,1],[-2,-3],[-1,-11],[-3,-3],[-2,-15],[-6,-11],[-5,-35],[-4,5],[-1,-7],[-2,4],[-1,17],[-12,16],[-2,-5],[-2,8],[-2,-11],[-3,-5],[-3,-6],[-4,4],[-3,-4],[0,7],[-3,-7],[-7,-6],[-2,-4],[-1,1],[-2,-10],[-3,-1],[-3,-3],[1,-7],[-3,-5],[-1,10],[-1,-3],[-1,-13],[-5,-11],[-3,3],[-2,-6],[-2,-8],[-4,-18],[-1,14],[-1,5],[-1,11],[-1,6],[-2,1],[-1,3],[-1,15],[-1,14],[-1,5],[-2,6],[-2,7],[-1,12],[0,8],[-2,7],[0,8],[0,15],[1,11],[1,13],[2,25],[3,84],[-1,31],[-2,21],[-2,29],[-1,12],[-1,16],[-1,9],[-2,7],[-1,10],[-1,5],[-1,0],[-2,3],[-2,2],[-1,2],[-1,0],[-1,1],[-1,0],[-1,1],[-2,7],[-1,-2],[-1,-5],[-1,-7],[-2,-4],[-1,-3],[-2,-5],[-2,-6],[-3,2],[1,16],[-1,18],[-1,16],[0,10],[-1,10],[-1,14],[-3,-13],[1,-13],[1,-14],[1,-7],[0,-9],[0,-8],[-1,-15],[1,-11],[-2,-9],[-2,-5],[-1,3],[0,12],[1,12],[-2,3],[-1,0],[-1,-15],[1,-8],[1,-9],[-1,-12],[-6,-18],[-3,-31],[-2,4],[-2,-15],[-1,-14],[1,-3],[1,-3],[0,-13],[-1,-13],[-2,-13],[-3,-5],[-2,3],[-2,5],[-1,13],[0,17],[0,21],[1,15],[1,19],[0,17],[-4,15],[-1,12],[-1,40],[-1,28],[-2,17],[-3,18],[-2,7],[-2,0],[-2,-5],[-5,-5],[-2,-4],[-2,14],[-3,8],[-2,0],[-3,-5],[-3,-13],[-2,-22],[-3,-29],[-2,-7],[-2,-13],[-2,-6],[-2,-20],[-2,0],[0,-6],[-1,-9],[-1,-11],[-1,-13],[-1,-17],[-1,-19],[-2,-10],[0,-11],[-3,2],[-2,6],[-1,6],[-1,-2],[-3,3],[-2,6],[-1,3],[-1,10],[-3,7],[-1,4],[-1,4],[-1,-1],[-2,1],[-2,13],[-1,3],[-2,4],[-2,12]],[[5186,53197],[32,-2],[48,-2],[23,9],[6,3],[23,-4],[6,-3],[21,-5],[5,-4],[3,-1],[12,2],[2,-2],[6,3],[2,-3],[10,0],[1,0],[21,2],[2,0],[20,-1],[109,-1],[1,0],[1,265],[0,155],[0,9],[85,0],[3,0],[18,0],[1,0],[16,-3],[11,-2],[1,0],[15,0],[8,2],[38,2],[8,-1],[0,49],[-1,382],[62,7],[5,0],[14,4],[1,0],[12,2],[16,2],[14,2],[81,6],[78,2],[73,26],[1,-1],[52,4],[0,-489],[121,2],[119,-2],[1,0],[1,0],[38,-1],[12,-4],[5,0],[10,0],[75,-2],[151,3],[13,-3],[43,-1],[88,-2],[70,1],[47,0],[9,0],[56,1],[14,0],[55,1],[-1,57],[-1,400],[55,4],[42,12],[0,246],[0,172],[30,9],[19,-14],[18,1],[23,1],[1,430],[18,0]],[[7284,54922],[0,-83],[0,-532],[0,-11],[1,-118],[-1,-193],[-1,-160],[1,-370],[0,-310],[0,-309],[0,-116],[0,-194],[0,-50],[0,-260],[0,-310],[0,-310],[0,-115],[0,-126],[0,-22],[0,-7],[0,-39],[0,-28],[0,-164],[0,-33],[0,-85],[0,-310],[0,-56]],[[7284,50611],[-30,3],[-46,0],[-29,5],[-3,1],[-4,1],[-6,1],[-11,2],[-1,-1],[-2,-287],[0,-10],[0,-15],[0,-19],[-1,-35],[0,-229],[1,-503],[0,-345],[13,-6],[0,-127],[-1,-118],[0,-173],[0,-6],[0,-46],[0,-6],[0,-80],[0,-89],[0,-31],[-1,-230],[0,-64],[0,-20],[0,-10],[0,-96],[0,-30]],[[5046,37793],[-2,-16],[-1,-2],[-3,-32],[-4,-37]],[[4962,37276],[-1,-1],[-3,-28],[-3,-56],[-3,-54],[0,-71],[0,-59],[0,-49],[1,-19],[17,87],[2,-12],[-1,-28],[-23,-101],[-1,4],[-1,-9],[-4,-11],[-3,-2],[-4,-22],[-5,-10],[-4,-13],[-6,-21],[-3,-9],[-5,-21],[-3,-15],[-2,-14],[-2,-21],[-1,-25],[0,-22],[0,-26],[-1,-10],[-1,-2],[0,-2],[-2,-12],[-1,-3],[-1,4],[-1,15],[-2,2],[-3,-4],[-3,-8],[-2,-13],[-1,-1],[-1,4],[-3,-7],[-3,-11],[-2,-22],[-1,-13],[-1,-14],[-1,-3],[-1,-6],[-2,-5],[-1,-8],[-2,-17],[-1,-14],[-1,-25],[0,-16],[0,-12],[0,-19],[-1,-11],[-2,-3],[-1,-1],[-1,5],[-2,1],[0,-8],[-1,-17],[0,-11],[-1,4],[-1,8],[-1,2],[-1,0],[-2,-4],[-1,-1],[-1,-2],[-1,-11],[-1,-3],[-1,1],[-2,-10],[-1,-2],[-1,8],[-1,7],[0,19],[1,10],[2,16],[0,23],[0,16],[0,12],[1,9],[1,16],[1,0],[0,-4],[1,7],[2,12],[1,-7],[1,-12],[0,-19],[1,2],[1,6],[0,8],[-1,10],[0,17],[0,17],[0,13],[1,-2],[1,-6],[0,-1],[0,12],[-1,14],[0,14],[-1,9],[-2,14],[1,11],[1,3],[1,6],[0,20],[0,15],[1,3],[1,8],[0,16],[-1,10],[-1,7],[-1,11],[-1,7],[-1,4],[-1,-5],[-1,3],[1,12],[0,15],[0,13],[0,9],[-1,11],[-1,15],[-1,3],[-1,11],[-2,2],[0,-14],[-1,-10],[0,-11],[0,-12],[-1,-21],[0,-26],[0,-23],[1,-7],[1,-7],[3,0],[0,-7],[1,-12],[-2,-10],[-1,-7],[-1,-9],[-1,11],[-1,13],[-1,14],[-1,17],[-1,11],[-1,10],[-1,4],[1,-17],[0,-15],[0,-15],[1,-14],[0,-8],[1,-7],[1,-10],[1,-13],[-1,-7],[1,-8],[1,5],[1,-6],[0,-20],[0,-18],[1,-18],[1,-27],[-2,-2],[0,7],[-1,14],[-1,14],[0,20],[-1,25],[-2,22],[0,14],[-1,15],[-1,18],[-1,12],[-1,10],[-1,10],[-1,11],[-2,13],[-2,13],[-2,8],[-3,5],[-1,-4],[0,-8],[0,-14],[-2,-1],[-1,7],[-1,12],[-2,5],[-3,2],[-1,-3],[-2,-2],[-1,4],[-1,5],[-2,1],[-1,-2],[-1,1],[-1,8],[-1,12],[-1,1],[-1,-5],[-1,-5],[-2,4],[-3,-7],[-2,-15],[-1,-16],[-2,-2],[-2,5],[-1,19],[-1,7],[-1,7],[-2,-1],[-1,-16],[-3,-4],[0,-14],[-1,-21],[-1,-7],[-1,-2],[-1,13],[0,15],[-2,10],[-2,1],[-4,0],[-2,-2],[-2,-9],[-1,-10],[-2,-5],[-3,-6],[-1,5],[-3,4],[-1,6],[-1,6],[-2,8],[-1,11],[-1,9],[-2,2],[-1,0],[-2,3],[-1,8],[-2,1],[-1,5],[-1,9],[-1,3],[-1,5],[-2,8],[0,14],[-1,5],[-1,8],[-1,3],[-1,2],[-1,10],[0,10],[1,7],[1,5],[2,3],[2,4],[1,6],[1,0],[1,8],[2,-3],[2,3],[1,10],[1,24],[0,14],[1,6],[1,-9],[1,-1],[2,1],[1,-7],[3,3],[1,-4],[1,-14],[1,-10],[1,-4],[1,-2],[3,11],[1,13],[1,19],[1,13],[0,13],[-1,9],[-2,0],[0,9],[1,-1],[2,-1],[1,-8],[4,-18],[2,-2],[2,5],[1,8],[2,9],[1,23],[3,6],[1,2],[2,-22],[1,-5],[1,-16],[1,-19],[1,-7],[2,0],[1,8],[2,17],[0,11],[0,13],[2,-3],[0,-14],[0,-13],[-1,-7],[0,-15],[0,-16],[0,-16],[-1,-11],[0,-16],[0,-25],[2,-1],[1,2],[3,0],[5,8],[4,10],[4,19],[4,39],[0,9],[5,41],[3,35],[-1,29],[0,13],[0,15],[-1,14],[-2,14],[-2,9],[-1,-4],[-1,13],[0,20],[0,17],[0,15],[4,19],[1,13],[1,19],[1,2],[1,16],[2,8],[2,4],[1,5],[1,8],[0,9],[2,6],[1,7],[0,14],[1,21],[1,11],[1,11],[0,24],[1,22],[1,5],[0,8],[1,9],[0,13],[1,-3],[2,-7],[0,-11],[1,-14],[-1,1],[0,-16],[1,-15],[0,16],[2,-1],[1,-8],[3,-7],[2,-1],[2,5],[2,5],[1,16],[2,8],[1,-1],[3,6],[2,14],[1,22],[3,31],[1,20],[0,14],[0,21],[1,21],[2,10],[1,3],[1,-3],[1,24],[3,35],[-2,-1],[-1,6],[-1,7],[-2,14],[-1,14],[0,15],[0,16],[-1,15],[-1,5],[-1,-4],[-1,2],[0,11],[-1,-6],[0,15],[-1,-2],[-3,-1],[-1,-2],[-1,-14],[-3,-14],[-2,-12],[-2,-6],[-2,-32],[-1,-21],[-1,-34],[-2,-21],[-1,-11],[-1,-15],[1,-19],[0,-30],[-1,-26],[-1,-6],[-1,-5],[-1,-4],[-1,7],[0,19],[1,16],[0,20],[1,16],[1,24],[1,25],[1,38],[1,44],[0,33],[0,28],[-1,33],[0,34],[-2,60],[-2,59],[0,12],[1,9],[-1,3],[-1,-2],[-1,26],[-1,16],[0,27],[-1,30],[-1,32],[0,41],[0,15],[0,26],[0,29],[1,11],[-1,28],[0,36],[1,26],[1,38],[0,41],[0,52],[-1,23],[-1,39],[0,22],[-1,20],[-1,21],[0,13],[-1,21],[-3,42],[-2,10],[-2,30],[-4,40],[-1,68],[1,39],[1,22],[1,14],[2,16],[0,5],[1,-12],[0,-32],[-1,-56],[-1,-40],[1,-25],[1,-1],[2,-5],[1,-1],[1,-1],[3,5],[3,13],[5,16],[9,24],[3,18],[2,21],[2,7],[2,11],[2,22],[3,16],[3,12],[4,25],[3,17],[2,11],[4,15],[3,16],[2,16],[2,5],[1,6],[1,12],[3,24],[-1,45],[-1,19],[0,5],[0,15],[1,29],[0,21],[1,11],[0,10],[4,-23],[5,-19],[5,-11],[2,4],[2,25],[0,11],[0,10],[-1,13],[1,0],[0,9],[0,14],[-1,2],[1,8],[0,7],[-1,4],[-1,-14],[0,-19],[0,-26],[-1,-16],[-1,-1],[-1,-2],[-1,3],[0,3],[-1,10],[-1,11]],[[9100,59277],[1,-221],[1,-410],[0,-24],[-1,-125],[0,-138],[0,-144],[12,-1],[-2,-425],[0,-52],[5,0],[-2,-655],[0,-317],[-1,-619],[0,-5],[0,-7],[0,-6],[0,-136],[4,-1],[-1,-375],[0,-249],[0,-104],[0,-107],[0,-80],[0,-75],[0,-254],[0,-63],[-29,2],[-3,2],[-39,6],[-64,-1],[-19,-2],[0,-46],[0,-396],[5,3],[0,-500],[1,-196],[0,-117],[0,-17],[0,-9],[0,-47],[0,-231],[0,-58],[0,-35],[0,-46],[0,-471],[5,1],[0,-196],[0,-15],[-1,-333],[0,-27],[0,-459],[0,-305],[0,-21],[0,-317],[-16,4],[-31,0],[-1,0],[-25,-1],[0,-247],[-48,4],[-93,6],[-9,1],[-158,-5],[-41,3]],[[8550,50618],[-7,1],[-18,0],[-6,0],[-11,-2],[-3,0],[-8,1],[-10,0],[-1,1],[-36,1],[-1,-1],[-23,-3],[-27,0],[-18,-10],[-7,1],[-5,0],[-3,1],[-4,0],[-2,0],[-3,0],[-10,1],[0,5],[0,75],[0,64],[-7,2],[-7,1],[0,70],[0,6],[0,42]],[[8333,50874],[1,1],[1,5],[-1,10],[-1,4],[-1,2],[-1,1],[-2,0],[0,2],[-1,0],[-1,4],[0,3],[-1,8],[0,1],[2,24],[0,5],[1,12],[-1,17],[-1,-2],[-1,-4],[-2,-6],[0,-1],[-5,-6],[-1,-1],[-1,-3],[-1,-1],[-1,0],[-1,-6],[-1,-3],[-2,-5],[-1,-4],[-1,-2],[-1,0],[-2,2],[-1,1],[-1,1],[-1,4],[-1,3],[-1,6],[-1,0],[-1,-1],[-1,-2],[-2,-3],[-1,-3],[-2,-4],[-1,-4],[-2,-5],[-1,0],[-1,-7],[-1,-6],[-2,-1],[-1,2],[-1,1],[-1,-1],[-1,1],[-1,3],[-1,3],[-1,4],[-1,2],[-1,-1],[-1,3],[0,4],[-1,7],[-1,13],[0,12],[1,3],[2,8],[4,-1],[6,0],[3,24],[3,9],[1,28],[-1,2],[-4,-3],[-4,-24],[-10,-6],[-2,-1],[0,-2],[-2,-7],[-1,-4],[-1,-5],[-1,-2],[0,-1],[-1,0],[-2,0],[-2,0],[-1,-1],[0,-1],[-1,0],[-24,-47],[0,6],[-1,16],[-1,6],[-1,3],[0,-1],[-4,-8],[0,-4],[-6,-22],[0,-4],[-1,-2],[-1,-2],[-2,-8],[-1,-5],[-1,-5],[-1,-8],[-1,-4],[-1,-6],[-1,-6],[-1,-7],[-1,-8],[0,-9],[-1,-9],[-1,-6],[-1,-3],[-1,-1],[-1,1],[-1,-5],[-1,-6],[-1,-4],[-3,-35],[0,-6],[-1,-11],[-1,-7],[-1,-3],[-1,-1],[-1,-1],[-1,-4],[-1,-6],[-1,-7],[-1,-8],[-2,-6],[0,-5],[-1,-7],[-1,-10],[0,-10],[-1,-10],[-1,-9],[-1,-8],[0,-14],[-1,-15],[0,-16],[0,-12],[-1,-12],[0,-9],[-1,-5],[0,-7],[-1,-9],[-1,-7],[-1,-6],[0,-8],[-1,-6],[0,-7],[-1,-11],[-1,-11],[0,-14],[-1,-8],[0,-7],[-1,-7],[-1,-5],[0,-4],[-1,-5],[-2,-5],[-2,-6],[-1,-3],[-2,-3],[-1,0],[-1,0],[-1,0],[-1,-2],[-1,-3],[-1,-4],[-1,-5],[-1,-6],[-1,-8],[0,-6],[-2,-26],[-1,-7],[0,-4],[-1,-9],[0,-24],[0,-11],[1,-9],[-1,-15],[0,-19],[0,-12],[-1,-9],[0,-7],[-1,-6],[0,-10],[-1,-12],[-2,-36],[-1,-18],[0,-6],[-1,-9],[0,-6],[-1,-71],[1,-16],[1,-14],[0,-11],[1,-14],[0,-12],[-1,-13],[0,-14],[-1,-15],[0,-5],[-2,-144],[0,-24],[-1,-11],[-2,-6],[-1,-6],[-1,-7],[-1,-6],[-2,-8],[-1,-4],[-1,-11],[-1,-8],[-2,-13],[-1,-6],[0,-5],[-1,-7],[-1,-14],[-1,-8],[0,-4],[-1,1],[-1,7],[-1,5],[-2,4],[-1,5],[-2,7],[-2,7],[-2,3],[-2,8],[-1,3],[-3,7],[0,1],[-7,21],[-7,10],[-9,12],[-4,1],[-12,8],[-4,-1],[-7,-15],[-5,-4],[-2,-6],[-4,-16],[-2,2],[-2,12],[-1,13],[-2,35],[-2,24],[-2,19],[0,14],[0,6],[2,0],[1,-4],[0,17],[0,6],[-1,6],[-2,2],[-2,-17],[-1,-14],[1,-12],[1,-18],[1,-20],[1,-12],[0,-21],[0,-15],[-2,-6],[0,-3],[-7,-14],[-7,-8],[-9,-3],[-9,-17],[-6,-7],[-6,2],[-4,13],[-3,20],[-3,16],[-3,30],[-4,32],[0,21],[-1,22],[0,20],[-2,25],[-1,6],[-1,19],[-1,23],[-1,42],[0,35],[-1,29],[-1,42],[0,50],[0,35],[1,15],[2,14],[3,27],[1,26],[1,20],[1,0],[0,31],[0,14],[-2,-23],[-2,-17],[-3,-12],[-3,-10],[-2,3],[-4,9],[-1,-32],[1,-14],[0,-21],[0,-17],[-1,-22],[-2,-19],[-1,-26],[-1,-29],[1,-35],[2,-25],[2,-19],[0,-53],[1,-22],[0,-11],[-1,-9],[0,-2],[-2,-18],[1,-15],[0,-15],[-1,-4],[-1,-5],[-2,0],[-3,7],[0,10],[-1,13],[-2,-2],[0,5],[-1,11],[-1,13],[-1,7],[-1,18],[-1,4],[0,95],[2,87],[-2,21],[-3,-62],[0,-5],[0,-13],[-1,-25],[-2,-22],[0,-14],[0,-17],[1,-20],[0,-28],[0,-19],[-1,-15],[0,-28],[-1,-41],[-3,-39],[-3,-32],[-6,-41],[-4,-6],[-2,-4],[-1,-15],[-2,-11],[-4,-14],[-9,-31],[-2,-10],[-3,-11],[-5,-11],[-1,4],[-1,2],[-1,-8],[-1,-18],[-2,-18],[-6,-29],[-7,-29],[-6,-8],[-3,-5],[-1,6],[-1,7],[-1,12],[2,30],[1,21],[-1,20],[-1,7],[1,-20],[-1,-17],[-1,-14],[-2,-16],[-1,-14],[0,-19],[1,-16],[-1,-24],[-3,-24],[-3,-12]],[[7850,49451],[0,91],[0,42],[0,21],[0,46],[0,17],[0,24],[-1,37],[1,29],[-3,-1],[-1,-1],[-25,4],[-20,1],[-28,-1],[-11,1],[-5,0],[-8,3],[0,18],[0,281],[0,117],[0,38],[0,37],[0,295],[0,56],[-53,6],[-14,1],[-26,0],[-29,0],[-40,0],[-61,-1],[-29,0],[-28,0],[-15,0],[-70,0],[-76,0],[-7,-1],[-17,0]],[[7284,54922],[1,249],[0,181],[-1,798],[0,464],[0,450]],[[7284,57064],[18,-3],[11,-3],[33,-6],[102,-10],[28,-1],[37,0],[20,-2],[2,0],[20,-2],[38,5],[1,359],[238,971],[11,43],[5,22],[55,217],[165,659],[52,199],[43,170],[9,40],[31,122],[28,110],[27,108],[19,1],[15,1],[5,0],[4,0],[17,1],[7,0],[1,0],[8,0],[5,0],[12,2],[15,3],[2,-1],[1,0],[1,0],[3,0],[7,-3],[4,1],[10,2],[76,11],[9,-2],[59,-9],[64,-11],[9,-1],[7,0],[19,-2],[31,0],[0,127],[0,161],[0,256],[1,105],[0,40],[19,4],[43,9],[35,-2],[160,32],[19,3],[11,3],[7,0]],[[8963,60793],[66,6],[11,1],[16,1],[43,8],[0,-7],[0,-17],[0,-61],[0,-135],[0,-57],[0,-790],[1,-465]],[[8665,65070],[1,-3],[1,1],[0,2],[1,0],[0,-2],[0,-2],[2,-12],[0,-3],[0,-3],[3,-3],[2,-3],[0,-2],[1,-3],[1,-7],[1,-2],[0,-3],[1,-1],[1,-1],[0,-4],[3,3],[1,-1],[0,-2],[1,0],[1,-4],[0,-5],[1,-5],[0,-10],[1,-6],[0,-4],[1,-4],[1,-7],[2,-4],[1,0],[0,1],[1,6],[1,2],[1,0],[0,-2],[1,-2],[0,-4],[0,-3],[0,-1],[1,-7],[1,-22],[1,-14],[0,-6],[0,-3],[1,-2],[1,-6],[1,-2],[1,0],[1,2],[1,-4],[1,-16],[1,-15],[-1,-21],[0,-4],[1,-4],[1,-5],[1,0],[1,-11],[0,-9],[1,-6],[0,-3],[1,0],[1,0],[2,-4],[1,-2],[1,-7],[0,-1],[1,-1],[1,-7]],[[8720,64787],[0,1],[0,-1]],[[8720,64787],[2,-11],[1,1],[1,1],[1,-1],[2,-5],[1,-6],[0,-5],[0,-21],[1,-6],[0,-5],[0,-11],[1,-3],[1,-13],[1,-6],[0,-6],[0,-3],[1,-6],[0,-1],[1,0],[0,-3],[1,-2],[2,-9],[0,-1],[1,-6],[1,-2],[2,-5],[30,5],[26,4],[66,3],[93,-9]],[[8956,64655],[6,-1283],[2,-400],[0,-37],[0,-166],[-1,-449],[0,-229],[-1,-897],[1,-234],[0,-167]],[[7284,57064],[7,88],[14,199],[4,51],[34,486],[91,1250],[1,20],[7,99],[0,146],[0,236],[0,206],[0,87],[-10,-6],[-14,-8],[-29,-9],[1,225],[-19,8],[-34,14],[0,13],[1,94],[0,244],[1,106],[0,132],[1,55],[-2,0],[-10,2],[-2,0],[-2,1],[-1,1],[-1,0],[2,327],[1,265],[1,249],[26,0],[2,-1],[15,1],[48,12],[79,13],[0,31],[2,669],[0,128],[4,0],[33,-1],[13,0],[0,40],[1,263],[1,159],[0,270],[0,119],[0,24],[0,1],[62,25],[0,18],[-3,56],[-6,50],[5,62],[4,35],[1,16],[7,124],[2,21],[59,15],[0,-65],[19,-67],[-4,-130],[22,-82],[2,-19],[3,-20],[35,9],[1,18],[45,593],[9,97],[30,322],[44,465],[25,266],[57,-4],[3,0],[11,0],[43,0],[2,0],[17,-4],[51,-3],[117,-26],[14,1],[86,3],[6,0],[12,1],[4,0],[1,1],[1,0],[0,-1],[2,0],[1,0],[1,0],[10,1],[8,-1],[4,0],[3,0],[0,-75],[15,-1],[6,-1],[2,-2],[7,2],[13,-4],[15,1],[32,-2],[6,0],[33,-2],[3,0],[51,5],[64,1],[21,-2],[18,-2],[13,2]],[[8056,49118],[-1,-10],[-1,1],[-2,1],[-4,3],[-1,0],[-3,3],[-1,7],[-1,11],[2,0],[2,2],[2,6],[1,4],[1,10],[2,16],[1,22],[1,34],[2,40],[0,27],[2,40],[2,14],[3,5],[2,4],[3,6],[1,1],[1,2],[1,2],[2,4],[1,1],[1,-1],[1,-6],[0,-7],[1,-11],[0,-21],[-1,-16],[-1,-20],[-1,-14],[0,-11],[-1,-7],[-1,-12],[0,-9],[-1,-10],[-1,-7],[-1,-11],[-1,-9],[-8,-63],[-3,-18],[-1,-3]],[[8550,50618],[0,-23],[0,-562],[-1,-513],[0,-200],[-5,0],[1,-427],[0,-42],[0,-352],[1,-39],[0,-62],[0,-27],[0,-157],[0,-27],[0,-426],[-29,-15],[-1,-1],[-6,-4],[-1,0],[-6,-3],[-14,0],[-19,1],[0,-201],[0,-131],[0,-42],[0,-31],[0,-9],[0,-66],[0,-77]],[[8470,47182],[-20,0],[-5,0],[-54,0],[-4,5],[1,284],[1,223],[-1,22]],[[8388,47716],[6,-25],[3,-25],[1,-11],[1,7],[1,-32],[1,-19],[0,-3],[1,3],[0,15],[-2,48],[0,10],[0,18],[1,12],[0,3],[1,10],[1,7],[-1,5],[-2,5],[0,6],[-2,14],[-2,19],[-2,17],[-2,20],[-2,15],[-3,84],[-2,17],[-1,11],[-4,38],[-5,61],[0,7],[-1,6],[-1,6],[-1,5],[0,4],[-1,5],[-1,5],[0,4],[-1,4],[-1,1],[-1,-2],[-1,-4],[-1,4],[-2,3],[-1,8],[-13,96],[-1,15],[-1,10],[-1,3],[-1,3],[0,1],[-1,-2],[-1,-4],[-1,-2],[-1,-3],[0,-2],[-3,-7],[-6,-12],[-3,-5],[-2,0],[-2,-4],[-1,1],[-3,1],[-1,-4],[-3,-1],[-2,-6],[-2,-3],[-3,-5],[-3,-9],[-2,-11],[-2,-17],[-4,13],[-3,73],[-11,40],[-9,68],[-9,42],[-6,52],[-7,16],[-3,-28],[-1,-2],[-3,2],[-2,0],[-2,1],[-2,2],[-5,-8],[-7,13],[-5,48],[-1,9],[-4,19],[-1,1],[-4,16],[-6,24],[-2,7],[-12,45],[-1,4],[-4,37],[0,8],[-1,7],[-8,72],[-1,7],[0,5],[-1,11],[-1,14],[-1,24],[-1,9],[0,7],[-2,13],[-1,11],[-4,46],[-2,19],[-6,39],[-33,213],[-19,92],[-1,3],[0,3],[-2,9],[-2,6],[-1,3],[-1,8],[-1,5],[0,12],[0,13],[1,17],[11,103],[2,91],[1,9],[1,5],[1,-1],[2,-7],[1,-4],[2,-6],[0,-4],[2,-2],[1,-1],[1,0],[1,0],[2,2],[1,3],[1,1],[1,2],[1,3],[4,17],[2,6],[10,118],[3,43],[1,17],[0,13],[1,14],[0,12],[0,11],[0,14],[0,16],[1,9],[2,16],[1,12],[1,8],[1,11],[1,13],[1,14],[1,15],[0,11],[1,17],[0,11],[3,43],[0,14],[1,11],[1,11],[0,6],[1,13],[0,9],[1,9],[0,5],[1,7],[0,8],[1,9],[1,8],[1,8],[2,10],[2,12],[1,9],[2,10],[1,5],[0,1],[1,2],[7,9],[6,6],[2,28],[1,16],[1,94],[-2,57],[1,25],[1,7],[0,9],[1,8],[1,8],[1,7],[1,2],[1,0],[2,3],[1,4],[1,4],[1,6],[1,6],[1,3],[1,-1],[1,0],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,1],[2,5],[1,4],[0,1],[1,4],[1,5],[1,5],[1,5],[0,6],[2,8],[1,8],[1,6],[1,5],[1,6],[1,9],[1,6],[1,5],[2,9],[1,8],[1,3],[0,2],[2,3],[1,0],[0,-6],[2,0],[0,-3],[1,2],[1,2],[1,2],[1,7],[1,6],[1,4],[1,9],[0,7],[2,11],[0,8],[1,10],[1,7],[1,4],[1,9],[1,7],[1,4],[1,1],[1,0],[1,3],[1,6],[1,3],[1,3],[1,5],[2,5],[1,7],[2,6],[0,5],[1,6],[1,6],[5,20],[6,93],[1,5],[1,3],[1,4],[1,6],[1,4],[1,3],[3,9],[1,1],[1,3],[1,2],[1,1],[1,0],[1,-2],[1,-3],[1,-3],[1,-2],[1,-1],[3,0],[1,0],[1,1],[1,3],[2,4],[1,7],[1,3],[1,6],[1,4],[1,0],[1,1],[2,7],[0,5],[6,8],[3,7],[1,0],[1,-7],[1,1]],[[8325,50891],[-1,-11],[-1,8],[-2,7],[1,5],[2,0],[0,-3],[1,-6]],[[8848,42927],[1,-12],[-1,-11],[-1,-10],[-1,-4],[-2,-8],[-1,-3],[-1,-3],[-1,7],[0,17],[1,11],[1,11],[2,0],[1,6],[2,9],[0,-10]],[[8634,43425],[2,-1],[1,1],[1,-16],[0,-19],[-1,-7],[-1,3],[-1,-6],[-1,8],[-1,7],[-1,8],[1,10],[1,5],[0,7]],[[9724,43457],[-3,-16],[-2,-15],[-2,-8],[-1,-20],[-3,-27],[-4,-24],[-3,-25],[-1,-22],[-2,-9],[-3,-22],[-3,-21],[-3,-26],[-2,-13],[-2,-18],[-1,-25],[-4,-30],[-3,-28],[-4,-27],[-4,-33],[-2,-33],[-1,-27],[-2,-20],[-4,-41],[-6,-51],[-4,-30],[-3,-27],[-3,-32],[-5,-50],[-3,-45],[-2,-30],[-3,-40],[-1,-12],[-2,-6],[-1,-5],[-1,-8],[-1,-15],[-1,-13],[-1,-14],[-1,-7],[-2,-4],[-1,8],[0,13],[0,19],[1,20],[2,26],[3,45],[2,25],[1,29],[0,25],[0,29],[1,30],[2,17],[1,10],[2,17],[3,29],[1,17],[2,19],[2,24],[2,27],[3,20],[2,12],[3,21],[2,24],[1,17],[2,16],[3,23],[4,45],[0,16],[0,15],[0,21],[1,23],[1,17],[1,3],[2,-3],[1,-7],[1,0],[1,3],[1,7],[1,5],[2,7],[0,4],[2,9],[1,15],[1,9],[1,5],[1,16],[0,11],[1,6],[2,18],[1,9],[1,10],[1,8],[2,11],[2,9],[1,3],[2,15],[0,14],[0,14],[0,21],[0,24],[0,12],[1,-1],[1,-5],[1,-16],[1,-16],[0,-13],[1,3],[1,14],[1,4],[1,8],[1,8],[1,10],[1,7],[2,3],[2,7],[2,11],[1,4],[1,5],[2,8],[0,9],[1,6],[1,1],[1,8],[1,4],[2,10],[1,15],[1,-18],[1,-8],[2,-1],[2,-3],[0,-14],[-2,-26],[-3,-19],[-1,-14],[-2,-10],[-2,-19]],[[8678,43738],[0,-12],[1,0],[0,-31],[0,-14],[-3,-26],[-1,-15],[-1,-12],[-1,-27],[-3,-56],[0,-4],[-1,-13],[-5,-56],[-11,-146],[-14,-68],[-12,-41],[-5,-6],[-6,-6],[-3,23],[-4,0],[3,23],[5,-9],[7,20],[4,21],[1,20],[-2,14],[-2,-20],[-2,-2],[-4,2],[-1,29],[3,0],[2,9],[4,48],[0,17],[-2,15],[-2,-9],[-6,3],[0,20],[5,17],[4,12],[3,-32],[1,-45],[2,-32],[3,12],[4,16],[4,0],[4,22],[5,50],[3,38],[3,54],[0,4],[1,22],[1,12],[1,3],[1,4],[1,21],[1,18],[2,13],[2,27],[1,10],[1,13],[2,19],[1,13],[1,14],[2,4],[2,0]],[[9689,43537],[0,-33],[0,-12],[-1,-13],[0,13],[-1,7],[-1,7],[-1,6],[-2,-7],[-1,2],[0,9],[1,11],[0,11],[0,7],[-1,32],[1,13],[1,12],[0,10],[0,14],[0,13],[-1,18],[-1,14],[0,29],[0,15],[0,14],[0,19],[-1,6],[0,18],[0,15],[1,16],[1,-2],[1,-6],[1,-11],[1,-25],[0,-18],[0,-18],[-1,-33],[1,-18],[1,-21],[0,-21],[0,-21],[0,-21],[1,-23],[1,-20],[0,-8]],[[8682,43791],[-2,-15],[-1,1],[-1,-2],[-1,11],[2,11],[1,1],[1,5],[1,-12]],[[8663,43753],[1,19],[1,10],[1,13],[2,15],[-1,-17],[1,-16],[-2,-4],[-1,-12],[-2,-8]],[[8722,43875],[2,-1],[1,11],[1,7],[1,-15],[1,-24],[1,-2],[0,-17],[0,-23],[-1,-12],[-1,-31],[-2,-21],[-4,-74],[-4,-55],[-1,-41],[-1,-32],[0,-4],[-1,-37],[-10,-101],[-29,-135],[-8,-31],[-2,40],[-3,17],[4,40],[1,8],[2,41],[2,55],[3,3],[1,37],[2,17],[2,0],[2,0],[2,32],[-1,18],[0,28],[3,10],[2,35],[1,5],[1,-5],[1,4],[2,12],[1,3],[1,2],[1,-3],[1,8],[-1,18],[0,10],[1,23],[1,20],[1,1],[1,8],[1,5],[2,3],[0,17],[0,26],[1,18],[1,8],[1,2],[1,10],[1,21],[1,22],[1,13],[2,16],[2,11],[2,13],[2,14],[2,7],[1,5],[1,-13],[0,-28],[1,-19]],[[9689,44262],[0,-3],[2,-4],[2,-21],[2,-22],[1,-15],[1,-10],[1,-10],[1,-16],[1,-15],[0,-15],[0,-18],[-1,-15],[-1,-20],[-1,-19],[-1,-9],[-1,-1],[0,-10],[-1,-15],[-1,-13],[0,-21],[-1,2],[0,7],[-1,18],[1,6],[1,5],[0,23],[0,31],[-1,35],[-2,27],[0,16],[-1,7],[-2,19],[-2,29],[-2,24],[-1,27],[0,22],[0,13],[1,9],[1,-12],[1,-17],[0,-5],[2,-3],[2,-11]],[[8663,43753],[-1,-2],[-1,-26],[-1,-19],[-2,-24],[-2,-35],[-4,-45],[0,-31],[-2,-26],[-1,-5],[0,-14],[-1,-9],[-1,-16],[-1,-3],[0,-10],[-2,-27],[-4,4],[-2,19],[-3,37],[5,4],[-1,7],[2,7],[0,6],[1,21],[-2,29],[-1,11],[-2,2],[-3,-4],[0,12],[2,3],[2,5],[1,8],[1,12],[1,14],[2,3],[3,12],[-2,8],[-1,8],[0,24],[0,11],[1,17],[0,22],[1,29],[1,10],[2,-12],[0,18],[0,23],[1,26],[2,12],[1,8],[1,14],[1,12],[2,5],[3,40],[-1,14],[1,1],[1,1],[2,18],[1,12],[1,21],[0,27],[1,2],[0,-15],[2,-10],[0,14],[-1,5],[0,20],[0,18],[1,25],[1,-5],[1,6],[1,-3],[0,27],[1,12],[2,18],[0,-15],[-1,-25],[1,-21],[1,-5],[-1,-34],[2,-16],[3,5],[-1,15],[2,8],[-2,22],[0,13],[1,25],[1,7],[1,-11],[1,9],[-2,22],[-1,20],[1,17],[1,13],[1,15],[0,11],[1,11],[1,17],[0,17],[0,19],[2,27],[-1,21],[2,-5],[1,-23],[1,-28],[1,-10],[0,-28],[0,-19],[0,-30],[0,-15],[-1,-15],[0,-38],[-1,-48],[2,-5],[1,25],[-1,25],[2,19],[0,16],[1,13],[1,9],[2,9],[1,-10],[1,-13],[1,0],[1,-7],[1,5],[1,11],[0,14],[1,8],[1,-12],[1,-26],[1,5],[1,-10],[1,-27],[1,4],[0,-18],[1,-23],[0,-14],[0,-15],[-1,-21],[-1,-12],[-2,-12],[-2,-14],[-3,-7],[-1,-13],[0,-7],[-2,-2],[-2,-14],[0,-10],[-2,-19],[-1,-12],[-4,-24],[-1,-10],[-2,-25],[0,17],[-1,-7],[-1,-8],[-1,-10],[-1,-2],[-1,5],[0,12],[-1,5],[1,11],[0,15],[0,2],[-1,0],[-1,2],[0,13],[0,14],[-1,-13],[0,-12],[0,-10],[-1,-8],[-1,-2],[0,-7],[1,-9],[-1,-10],[-1,2],[-1,1],[-1,4],[-1,7],[-1,-8],[-2,-3],[-2,-5],[-1,-7],[-1,-13],[-1,-6],[-2,-9],[-2,-19],[1,-21],[1,-10],[1,-12],[1,2],[0,-13]],[[9625,44354],[-1,-2],[-1,14],[2,14],[0,2],[0,-14],[0,-14]],[[8677,44418],[0,-17],[-1,-16],[-1,-21],[-1,-20],[-1,-21],[-2,-16],[-1,-16],[-1,-11],[-1,11],[-2,-8],[-1,14],[0,14],[0,25],[0,20],[0,18],[1,13],[0,14],[2,10],[2,-4],[0,14],[-1,16],[0,16],[2,7],[1,-8],[2,-7],[3,-27]],[[8666,44504],[0,-10],[1,-12],[-2,-34],[-2,-13],[1,-6],[0,-11],[-1,-7],[-1,-23],[0,-10],[-2,-28],[-1,-24],[0,-16],[1,-25],[-2,-8],[-1,-9],[0,-20],[0,-23],[-3,-37],[-1,-18],[-2,-30],[-1,-10],[1,-16],[0,-14],[1,-18],[1,10],[1,4],[0,-24],[-1,-21],[-1,-17],[-2,-16],[-1,-14],[-2,-36],[-1,-15],[-1,-24],[-1,-22],[-3,-26],[-1,-29],[-1,-14],[-1,-9],[1,-40],[0,-20],[-2,-29],[-4,-37],[-3,-21],[-1,-7],[-1,-7],[-2,-9],[-3,-5],[-1,-19],[-3,-1],[-3,-9],[-2,-3],[-1,-9],[-2,12],[-2,0],[-3,-10],[-4,-4],[-1,19],[-2,18],[-3,3],[-2,13],[-2,15],[-3,8],[0,16],[1,17],[3,-9],[4,-5],[5,-6],[3,-3],[3,4],[4,7],[2,7],[3,13],[5,-2],[2,1],[1,19],[-8,15],[-1,13],[-4,-6],[-2,4],[-2,-6],[-1,2],[-4,-15],[-2,3],[-3,4],[-1,-3],[-1,13],[-2,17],[-2,13],[1,15],[2,9],[1,5],[1,13],[1,4],[2,-6],[1,2],[1,12],[2,5],[1,0],[0,14],[4,-1],[1,-7],[6,-14],[1,14],[1,-5],[2,9],[2,2],[1,3],[1,6],[2,17],[-4,17],[2,11],[-1,32],[3,22],[0,11],[-3,0],[-5,-50],[-2,-6],[-2,8],[-3,10],[0,28],[-1,5],[-3,-12],[-2,-3],[-2,1],[1,18],[-1,-5],[-1,-9],[-1,-3],[-1,1],[-4,12],[0,18],[-1,21],[1,25],[1,12],[1,1],[3,12],[1,3],[2,14],[3,1],[4,8],[2,17],[2,14],[2,4],[2,13],[2,16],[2,18],[1,6],[2,-8],[1,20],[1,13],[2,16],[2,-3],[2,-18],[1,47],[2,17],[2,19],[1,18],[1,14],[1,-8],[2,-4],[2,6],[0,-15],[-2,-67],[0,-25],[2,-8],[-1,-14],[1,-16],[-1,-14],[1,-25],[1,19],[1,10],[1,32],[1,24],[1,8],[2,6],[0,37],[1,33],[0,24],[-2,6],[1,13],[1,13],[-1,13],[0,10],[3,14],[-1,19],[0,24],[1,20],[-2,17],[0,12],[1,11],[2,-1],[2,-1],[0,21],[1,7],[1,12],[0,7],[1,1],[1,0],[0,2],[1,-8],[0,-21],[2,-13]],[[9536,44677],[1,-12],[0,-14],[0,-17],[0,-13],[-1,-6],[-1,-5],[-8,6],[-5,10],[-6,10],[-3,7],[-4,4],[-4,10],[-3,6],[-2,7],[-1,20],[1,2],[3,-10],[2,-6],[2,2],[2,-1],[2,-5],[3,-5],[4,-3],[4,1],[2,2],[3,0],[3,-1],[2,14],[-1,15],[2,5],[2,-7],[1,-16]],[[9549,44702],[3,-9],[2,0],[1,-3],[2,-9],[1,0],[0,-6],[2,-6],[0,-4],[1,-6],[1,5],[2,-7],[1,-7],[0,3],[2,-9],[2,0],[1,-6],[0,-9],[2,-5],[2,1],[2,-3],[1,5],[1,5],[2,-1],[1,-3],[-1,-12],[-2,-8],[-3,-3],[-2,6],[-3,7],[-3,8],[-4,9],[-3,2],[-5,14],[-4,17],[-3,16],[-1,10],[2,8]],[[9463,44696],[1,-16],[0,7],[0,12],[0,8],[-1,8],[0,8],[1,7],[1,7],[1,12],[2,-1],[1,-17],[1,-32],[1,-26],[1,-19],[0,-1],[-1,-9],[-1,-4],[-2,-2],[-2,3],[-1,6],[-1,13],[0,5],[-7,35],[-10,21],[-5,23],[-3,20],[0,13],[1,12],[2,-7],[3,-24],[1,-5],[3,-10],[5,-23],[6,-15],[3,-9]],[[8702,44825],[-1,-23],[-1,-26],[0,-25],[0,-16],[-2,-21],[-1,-16],[-1,-14],[-1,-3],[0,-13],[0,-18],[-2,-3],[-1,16],[-1,2],[0,20],[-1,-7],[0,24],[1,13],[1,7],[1,6],[1,12],[0,18],[-1,8],[-1,-25],[0,11],[0,12],[0,25],[1,6],[1,10],[1,20],[0,22],[3,-1],[-1,16],[-1,16],[-1,5],[0,17],[2,1],[2,-10],[0,3],[2,5],[1,-14],[-2,-13],[0,-24],[1,-3],[1,-20]],[[8839,44965],[-2,-8],[1,14],[-1,12],[3,5],[-1,-23]],[[8703,44937],[-1,-10],[-2,0],[0,17],[1,16],[-1,16],[1,8],[-2,11],[2,5],[1,6],[0,9],[0,14],[2,3],[0,-25],[1,-3],[-1,-18],[0,-12],[0,-13],[-1,-24]],[[8844,45014],[0,-8],[-1,8],[2,19],[1,8],[1,2],[-1,-13],[-2,-16]],[[8860,45039],[0,-17],[0,-14],[1,-9],[-1,-40],[0,-25],[1,-22],[-1,-14],[-2,-10],[-2,-15],[-1,-9],[-5,-12],[-2,-10],[-1,-22],[0,-15],[-3,3],[-3,-8],[-2,-12],[-2,-7],[-2,-6],[-2,-28],[-2,-17],[-1,-11],[-1,-6],[-2,-11],[-2,-14],[-1,-6],[-1,-6],[-3,-8],[0,26],[-2,13],[-3,5],[2,11],[0,18],[4,23],[-2,34],[1,23],[1,16],[-2,-7],[-2,-13],[-1,-4],[-1,-4],[3,46],[2,0],[2,3],[2,-3],[5,21],[1,15],[2,6],[1,2],[1,-18],[1,2],[2,24],[1,10],[2,18],[3,13],[0,-9],[2,24],[1,4],[0,15],[0,19],[1,-4],[3,-4],[2,18],[1,9],[1,8],[2,16],[-1,-18],[2,13],[2,10],[1,-4],[0,-6]],[[9394,44951],[5,-16],[4,-12],[5,-22],[1,-5],[7,-37],[3,-9],[3,-28],[0,-22],[-1,-9],[0,-16],[2,-2],[2,-2],[1,1],[2,6],[1,8],[0,7],[0,16],[0,-5],[1,3],[2,11],[1,9],[1,-2],[-1,-14],[-1,-17],[-1,-15],[-2,-11],[-1,-3],[-2,-17],[-2,-1],[-3,6],[-3,15],[-2,45],[0,26],[-1,2],[-3,22],[-3,18],[-2,8],[-2,4],[-3,14],[-3,11],[-2,10],[1,2],[-4,11],[-6,24],[-7,37],[-3,18],[0,12],[1,14],[1,13],[0,-6],[0,-15],[1,-16],[3,-17],[3,-23],[7,-31]],[[9472,45042],[-1,0],[1,28],[1,-17],[-1,-11]],[[9465,45134],[2,-26],[-1,-19],[-3,-18],[-2,-22],[-1,11],[-2,4],[0,9],[0,11],[1,12],[1,15],[0,11],[2,-1],[2,8],[1,5]],[[9468,45075],[-1,-8],[0,6],[0,8],[1,10],[0,25],[-1,7],[-1,12],[1,14],[0,2],[1,-4],[2,-5],[0,-11],[-1,-12],[1,-24],[-1,-8],[-1,-12]],[[9347,45132],[1,-27],[0,-3],[2,-15],[2,-19],[2,-8],[2,-2],[2,-2],[3,1],[2,11],[1,5],[1,3],[1,6],[1,6],[1,10],[1,5],[0,1],[1,5],[1,1],[1,6],[1,-3],[-1,-18],[-1,-14],[-5,-18],[-3,-14],[-3,-11],[-2,6],[-2,-2],[-4,10],[-4,9],[-2,11],[-3,28],[-2,19],[1,8],[1,-9],[0,7],[-1,18],[-1,19],[1,1],[2,-12],[3,-19]],[[9482,45053],[-2,-14],[-1,-1],[0,-6],[-1,-16],[0,-4],[-1,2],[-1,3],[-1,-1],[-1,-8],[0,20],[1,2],[1,14],[-1,0],[0,19],[-1,12],[-1,14],[1,14],[0,21],[2,11],[1,13],[1,21],[2,5],[1,5],[1,-17],[-1,-29],[0,-14],[0,-13],[1,-6],[1,-5],[0,-20],[-1,-22]],[[8707,45189],[0,-8],[-1,10],[-1,12],[0,16],[2,4],[-1,-15],[1,-19]],[[9465,45266],[-1,-14],[0,-19],[1,-27],[1,-16],[0,-10],[-1,-10],[-1,-11],[-1,-7],[-2,-8],[-1,-2],[-3,3],[-2,-8],[1,-12],[2,1],[1,-2],[-1,-13],[-1,-10],[0,-5],[-2,-18],[0,-5],[-1,-17],[-2,-16],[0,2],[-1,6],[-2,7],[-1,10],[-3,12],[-1,9],[-1,9],[0,8],[1,2],[3,4],[3,2],[0,5],[0,10],[-1,2],[-5,4],[-1,-5],[-2,2],[-2,2],[-1,2],[-2,5],[-1,3],[-4,31],[0,11],[1,2],[1,5],[2,18],[2,7],[1,2],[1,3],[1,7],[2,8],[2,6],[2,11],[3,13],[2,0],[1,6],[2,15],[3,19],[1,7],[2,4],[1,7],[2,5],[1,3],[2,-6],[-1,-26],[0,-12],[0,-21]],[[9469,45290],[-1,-18],[1,4],[1,0],[0,-13],[-1,-11],[-2,-7],[0,17],[0,-7],[-1,-4],[0,11],[0,11],[2,16],[1,20],[2,20],[1,17],[2,0],[-1,-13],[-1,-7],[-1,-20],[-1,-6],[-1,-10]],[[9351,45318],[0,-14],[-1,3],[-2,8],[0,19],[0,17],[0,15],[1,-10],[1,-17],[1,-21]],[[9490,45141],[-2,-12],[0,30],[1,25],[0,19],[1,20],[1,18],[1,20],[1,23],[1,16],[1,19],[1,16],[2,10],[2,9],[1,12],[1,2],[1,-19],[-1,-24],[-1,-18],[-1,-18],[-2,-19],[0,-13],[-1,-20],[-2,-14],[-1,-17],[0,-6],[-2,-10],[-1,-30],[-1,-19]],[[9538,45379],[-1,-5],[-1,2],[0,15],[1,1],[1,3],[0,-16]],[[9280,45371],[0,-5],[-1,1],[-2,13],[-2,2],[-2,7],[-1,9],[-1,8],[0,2],[2,-6],[1,-1],[1,-4],[5,-21],[0,-5]],[[9462,45374],[-1,-5],[0,11],[0,12],[1,9],[1,14],[1,9],[1,-24],[-2,-17],[-1,-9]],[[8919,45249],[-2,-12],[0,-15],[-1,2],[1,-16],[1,-5],[2,2],[1,0],[0,4],[1,9],[-1,5],[2,5],[3,-15],[2,0],[1,-6],[2,7],[-1,22],[3,-7],[3,-4],[1,8],[3,-3],[2,2],[2,1],[1,1],[1,6],[2,6],[2,0],[3,3],[2,-4],[0,-14],[0,-15],[0,-14],[-1,-12],[0,-15],[-1,-19],[-1,-13],[-3,-13],[-1,-18],[-2,-12],[-1,-10],[-4,-27],[-3,-27],[-4,-24],[-3,-20],[0,-23],[-2,-17],[-1,-19],[-1,-14],[0,-8],[-1,-11],[0,-9],[-1,-7],[-1,-15],[-1,-16],[0,-14],[3,-3],[2,6],[1,-5],[1,3],[1,15],[2,4],[1,1],[3,16],[1,14],[0,14],[3,19],[3,5],[3,5],[1,17],[1,23],[1,2],[1,8],[1,12],[1,13],[1,7],[2,10],[2,-61],[1,-5],[1,0],[1,4],[2,85],[3,17],[1,7],[0,19],[5,20],[1,-5],[2,-2],[0,4],[2,1],[1,-2],[1,1],[1,-3],[1,-7],[0,-13],[0,-27],[0,-22],[0,-13],[0,-14],[-1,-4],[-1,-8],[-1,-16],[-1,-8],[-1,-5],[0,-8],[-1,-8],[-2,-13],[-1,-15],[0,-15],[-1,-21],[-2,-41],[-1,-18],[-1,-13],[-2,-4],[-2,-9],[-2,-8],[-1,-13],[-1,-10],[-1,-10],[-2,-65],[-3,-12],[-2,-7],[-2,-28],[-6,-43],[-3,-26],[-2,-16],[-1,-9],[-4,-7],[-1,-19],[1,-19],[-2,-9],[-3,-20],[-3,-13],[-3,-11],[-1,-7],[-1,-1],[-2,-18],[-3,-20],[-3,-30],[-4,-25],[-2,-18],[-2,-21],[-4,-24],[-3,-35],[-1,-31],[-3,-30],[-2,-23],[-1,-19],[-4,-47],[-2,-27],[-1,-19],[-1,-11],[-2,-26],[-2,-21],[-2,-19],[-2,-17],[-3,-26],[-1,-22],[-1,-18],[-2,-18],[-2,-13],[-1,-17],[-1,-10],[-1,-7],[0,-6],[-4,-59],[-3,-53],[-2,-55],[-2,-89],[0,-31],[0,-1],[3,-32],[-4,-39],[0,-6],[0,-26],[1,-31],[0,-4],[1,-2],[3,-14],[6,-21],[-3,-17],[-5,-49],[-3,46],[-2,-3],[-2,-3],[-6,32],[-5,-3],[-4,-53],[-7,-43],[-5,-28],[-1,-24],[-1,-45],[0,-37],[7,-53],[6,-28],[1,3],[3,3],[-3,-81],[0,-5],[0,-28],[1,-9],[2,-26],[-2,-43],[-3,-10],[-2,-25],[-2,-29],[-8,-8],[-1,-35],[-5,-23],[-5,-26],[0,43],[-3,26],[-7,15],[-7,0],[-7,-18],[-4,-37],[-2,-21],[-1,-11],[-1,-28],[1,-17],[2,-12],[-2,-26],[-3,-3],[-4,-40],[-1,-43],[-4,32],[-6,-6],[-4,-17],[-3,11],[-6,-23],[-3,-34],[-5,-15],[-5,-28],[-5,-44],[-6,-43],[-7,-3],[-5,23],[-6,23],[-3,32],[-1,26],[1,29],[3,6],[5,37],[0,74],[-4,64],[-1,43],[2,28],[0,5],[2,44],[5,64],[11,31],[8,6],[11,11],[4,44],[-1,33],[-9,-12],[-3,73],[-3,6],[1,35],[2,31],[4,46],[5,12],[3,17],[-1,34],[1,9],[7,69],[4,0],[5,-17],[7,23],[4,43],[-3,38],[-3,48],[-6,-3],[1,32],[2,46],[5,11],[1,4],[7,23],[1,5],[5,24],[4,10],[1,16],[1,7],[3,11],[3,21],[2,18],[2,15],[0,21],[0,15],[2,23],[2,18],[1,26],[1,7],[2,7],[2,3],[1,6],[2,10],[2,31],[3,22],[1,0],[4,6],[2,6],[0,20],[1,8],[3,25],[2,18],[3,13],[1,19],[2,7],[2,15],[0,22],[1,18],[3,16],[1,12],[2,14],[1,32],[1,21],[2,11],[1,4],[2,26],[1,25],[1,25],[-1,29],[0,28],[0,29],[1,6],[2,11],[2,14],[2,10],[2,6],[1,16],[2,28],[1,24],[2,9],[2,16],[1,16],[-2,-13],[1,19],[0,25],[0,30],[2,9],[2,5],[1,19],[-2,21],[-2,11],[-3,-5],[1,14],[2,12],[1,18],[2,12],[0,-8],[1,-3],[3,10],[2,4],[-1,-10],[-2,-15],[-3,-7],[0,-16],[3,-1],[-1,-14],[4,11],[2,5],[4,13],[1,4],[2,24],[0,15],[1,13],[-1,0],[0,19],[1,7],[3,3],[-1,-20],[2,0],[1,13],[1,8],[1,4],[1,3],[2,9],[1,5],[1,2],[0,14],[1,14],[1,6],[1,9],[1,20],[2,0],[2,10],[-1,2],[-4,-2],[-3,-6],[-2,2],[-2,-11],[-2,3],[1,16],[2,7],[3,7],[1,-1],[-1,14],[-1,2],[-2,0],[-1,4],[1,15],[1,6],[1,7],[2,0],[2,10],[-1,17],[-2,8],[-1,16],[-2,10],[0,7],[0,13],[-1,13],[0,22],[1,-11],[1,-15],[1,-2],[0,21],[0,14],[0,20],[1,-9],[1,8],[1,8],[1,1],[2,10],[-1,16],[1,-1],[2,7],[1,3],[1,7],[0,12],[-1,6],[1,15],[2,-10],[-1,15],[-2,5],[-1,11],[-2,5],[0,12],[-2,5],[-1,11],[-2,-5],[-3,-1],[-1,16],[1,22],[-1,12],[0,6],[1,15],[1,6],[0,13],[-1,-3],[1,18],[1,14],[2,2],[2,4],[0,8],[2,15],[2,16],[3,11],[2,12],[0,16],[1,8],[2,24],[2,8],[2,9],[3,8],[2,12],[1,5],[1,-6],[3,-5],[1,-9],[1,-10],[0,-21],[1,-10],[-1,-26],[-1,-11],[-1,-8],[-2,-15],[-2,-8],[-1,-3],[0,-19],[-2,-16],[-3,-17]],[[8677,45445],[-1,-13],[1,-6],[1,1],[1,8],[0,-14],[1,-17],[0,-14],[0,-12],[1,-12],[-1,-16],[0,-23],[0,-22],[-1,-32],[-1,-25],[-2,-28],[-1,-27],[0,-36],[-2,-30],[0,-8],[0,-26],[-1,-36],[0,-16],[1,-4],[-1,-25],[0,-22],[-1,-62],[-1,-3],[0,25],[-4,-8],[-6,-19],[-1,2],[0,1],[-3,8],[-2,-1],[0,-1],[-9,-9],[-2,11],[0,10],[2,0],[1,12],[1,7],[-1,22],[-1,25],[-2,6],[0,-2],[-2,-5],[-1,-15],[-2,8],[0,1],[-2,10],[0,17],[-1,17],[0,24],[0,24],[1,21],[0,18],[0,18],[1,16],[2,4],[1,3],[1,-6],[1,17],[0,-27],[1,-3],[0,27],[2,19],[1,19],[1,9],[2,15],[1,-29],[3,21],[0,17],[0,19],[0,13],[-2,3],[0,13],[1,21],[1,6],[0,13],[1,4],[0,-18],[2,1],[3,25],[2,42],[0,-2],[1,-9],[0,-15],[2,-4],[1,-4],[1,-19],[1,-6],[1,-15],[0,-37],[3,-5],[0,41],[-1,16],[0,13],[-2,22],[-1,0],[-1,9],[-1,24],[2,7],[1,-13],[2,-13],[2,13],[1,16],[1,19],[0,3],[1,-1],[1,12],[0,7],[1,-4],[0,-6]],[[9535,45408],[-1,-2],[0,16],[5,46],[0,-24],[-1,-5],[-2,-25],[-1,-6]],[[9274,45479],[6,-25],[6,-31],[4,-15],[1,-4],[3,-2],[4,-10],[4,-7],[2,5],[1,18],[0,18],[0,13],[-1,4],[-1,-10],[-1,-19],[-1,2],[-4,4],[-1,9],[1,27],[1,9],[1,5],[2,6],[1,1],[1,-4],[1,-5],[1,-5],[1,-10],[1,-10],[0,-14],[-3,-89],[-1,-1],[0,-1],[-1,-18],[-2,-38],[-3,-13],[-9,-4],[-1,1],[0,7],[-4,10],[-3,4],[-3,17],[-2,22],[-1,23],[0,10],[1,-1],[1,-1],[2,-18],[1,-4],[0,-10],[0,-12],[2,-7],[1,-2],[2,-3],[2,-3],[1,-1],[1,-1],[2,-1],[1,4],[-2,14],[-1,14],[-1,15],[0,12],[1,4],[2,-3],[1,-1],[1,3],[-1,6],[-2,9],[0,1],[-3,9],[-2,4],[-4,4],[-3,14],[-4,11],[-2,12],[-1,8],[-4,8],[-4,3],[-10,12],[-3,-4],[4,-11],[5,-8],[5,-14],[6,-23],[3,-9],[0,-12],[-4,7],[-7,31],[-6,19],[-8,10],[-6,5],[-6,16],[-3,8],[-1,13],[1,-3],[3,-11],[2,1],[2,6],[2,6],[3,2],[3,-2],[5,-4],[2,7],[2,0],[3,-3],[3,-7],[1,7],[3,7],[4,-4],[4,-9]],[[9484,45323],[-1,-33],[-3,2],[-1,-10],[2,-9],[0,3],[1,1],[0,-13],[0,-20],[-1,-30],[-2,-17],[-1,-10],[-1,-5],[-2,-14],[-1,-17],[-3,4],[1,19],[0,17],[1,14],[1,14],[-1,2],[-1,-10],[-1,-13],[1,-3],[-1,-25],[-1,-11],[-2,9],[0,17],[1,2],[1,8],[-2,7],[0,24],[2,22],[2,27],[2,17],[2,14],[1,11],[7,93],[0,13],[0,16],[1,21],[1,13],[1,16],[2,20],[1,2],[0,-8],[0,-19],[0,-23],[-1,-22],[-1,-28],[-2,-50],[-2,-38]],[[9332,45511],[2,-16],[3,1],[2,-5],[1,-2],[2,-3],[1,2],[2,-3],[-1,-10],[-1,-5],[-1,3],[-1,-1],[-2,0],[-2,-4],[-3,8],[-2,-1],[-3,7],[-3,11],[-1,16],[0,12],[1,-4],[0,-6],[2,-10],[2,-6],[0,18],[1,10],[1,6],[0,-18]],[[9551,45554],[-1,-4],[-1,1],[-1,6],[1,6],[1,-1],[1,-8]],[[9485,45543],[-5,-57],[-5,-16],[-6,-74],[-1,-4],[-1,-6],[0,-4],[-1,-2],[-1,9],[1,14],[-1,20],[2,29],[1,15],[1,7],[2,9],[1,11],[1,6],[1,2],[1,-1],[1,2],[2,9],[0,6],[2,1],[-1,-14],[1,0],[1,14],[0,14],[1,12],[2,10],[0,14],[1,14],[1,-1],[0,-14],[-1,-11],[0,-14]],[[9532,45658],[-1,-8],[0,5],[1,25],[2,-17],[-2,-5]],[[9528,45676],[-1,-8],[0,29],[2,19],[0,-17],[0,-20],[-1,-3]],[[9493,45704],[-1,-13],[-1,1],[0,18],[1,13],[1,7],[1,-13],[-1,-13]],[[9535,45703],[0,-8],[-2,2],[-1,-1],[-1,-5],[0,16],[1,11],[1,6],[1,4],[1,5],[0,-24],[0,-6]],[[9496,45726],[-1,-5],[-2,18],[1,14],[1,0],[1,11],[2,-4],[-1,-13],[0,-11],[-1,-10]],[[8744,45744],[-1,-4],[0,16],[0,15],[2,8],[-1,-9],[1,-12],[-1,-14]],[[9570,45773],[-1,0],[-1,13],[2,14],[1,-11],[-1,-16]],[[9558,45786],[-1,-14],[0,14],[1,22],[1,-12],[-1,-10]],[[9568,45798],[-1,-7],[-2,2],[-1,-1],[-1,10],[2,8],[2,-3],[1,-9]],[[9545,45827],[0,-12],[0,-11],[0,-10],[-1,-16],[-1,-13],[-1,-12],[-1,-7],[0,-10],[-1,-15],[0,-14],[-1,-14],[0,-18],[-1,-11],[-1,-6],[-1,-3],[-1,19],[1,25],[0,12],[0,15],[0,17],[1,13],[1,4],[1,1],[2,17],[-1,22],[2,24],[1,-2],[2,6],[0,-1]],[[9537,45821],[0,-24],[-1,5],[-1,2],[-2,-12],[0,20],[1,12],[0,7],[1,10],[1,4],[2,2],[-1,-10],[0,-16]],[[9235,45827],[-1,-4],[-1,1],[-1,2],[-1,-4],[-1,-8],[-1,-1],[0,16],[1,15],[1,12],[1,-2],[2,-5],[2,-9],[-1,-13]],[[9561,45864],[-2,-14],[0,20],[2,8],[0,-14]],[[9537,45860],[-4,-16],[1,15],[2,15],[1,5],[1,-12],[-1,-7]],[[9499,45869],[-1,-29],[0,7],[1,33],[0,10],[1,1],[0,-8],[-1,-14]],[[9557,45816],[-1,-15],[-1,26],[1,30],[1,9],[1,19],[-1,33],[1,-6],[0,-19],[1,-14],[-1,-16],[-1,-47]],[[9502,45870],[-1,-4],[0,8],[0,6],[0,16],[1,23],[1,-1],[0,-17],[0,-14],[-1,-17]],[[9537,45905],[-1,-19],[0,26],[1,8],[0,-6],[0,-9]],[[9565,45884],[0,-7],[-1,6],[0,6],[1,12],[1,12],[1,7],[0,-6],[0,-9],[-2,-21]],[[9546,45862],[0,-24],[-1,6],[-2,21],[0,22],[-1,6],[0,20],[1,14],[1,6],[1,-6],[0,-16],[0,-34],[1,-15]],[[9514,45927],[-1,-19],[-2,-5],[-1,5],[0,11],[0,-1],[-1,-4],[-1,-5],[-1,15],[2,5],[2,5],[3,-7]],[[9555,45915],[0,-16],[1,-18],[-1,-7],[-1,4],[0,-2],[-1,-17],[0,-19],[-1,-6],[-2,-13],[-1,-10],[-1,-1],[-1,22],[1,12],[1,14],[1,25],[1,32],[2,-9],[0,15],[0,18],[2,-24]],[[9086,45952],[1,-23],[2,-23],[-1,-2],[-1,-4],[0,-4],[-1,13],[-2,-5],[0,-12],[0,-12],[-1,-19],[0,-7],[-1,-1],[0,-3],[-1,-4],[-1,-15],[0,-12],[1,0],[0,14],[1,4],[1,3],[1,5],[2,-7],[0,-14],[1,-9],[0,10],[1,17],[-1,11],[2,2],[3,7],[1,4],[-1,10],[4,7],[2,-4],[-2,-9],[0,-12],[1,-3],[0,8],[1,3],[0,-13],[0,-16],[1,-1],[2,-3],[-1,-23],[2,-4],[-2,-14],[2,0],[0,-8],[1,-1],[0,10],[1,6],[1,6],[1,11],[1,11],[1,2],[2,-2],[0,8],[1,11],[1,6],[0,9],[1,3],[3,11],[1,8],[1,14],[2,11],[1,10],[1,1],[1,0],[1,8],[1,9],[1,-4],[1,-9],[1,-5],[0,-14],[0,-4],[-1,5],[-2,-2],[1,-27],[1,2],[1,11],[1,-3],[1,-5],[0,15],[1,0],[1,-1],[3,-8],[0,-17],[0,-5],[2,-10],[-1,-17],[-1,-14],[-1,-17],[-1,10],[-1,2],[1,-15],[-1,-13],[-1,0],[-1,-2],[-1,-16],[1,-14],[1,-2],[2,5],[1,-1],[1,3],[-1,-24],[0,-11],[1,-21],[1,-22],[-1,-26],[0,-23],[-1,-20],[1,-10],[1,-4],[-1,-11],[-1,-20],[-2,-12],[-1,-25],[0,-20],[2,-3],[1,11],[1,9],[2,0],[2,-4],[2,3],[2,14],[2,11],[2,10],[4,9],[3,8],[1,1],[2,-1],[2,4],[1,2],[2,5],[2,0],[1,-4],[1,5],[2,1],[4,12],[1,0],[2,2],[1,6],[2,4],[2,1],[2,8],[2,-2],[1,2],[3,6],[2,1],[1,7],[1,2],[2,0],[2,7],[1,-2],[1,-1],[0,-15],[0,-14],[-1,-1],[-1,-4],[1,-7],[0,-7],[1,-7],[-1,-7],[1,-17],[1,-9],[1,1],[1,1],[1,-5],[1,-1],[0,-14],[-2,-7],[-1,-1],[-1,4],[-2,-6],[-1,4],[-3,7],[-1,-1],[-1,-2],[-1,-2],[-1,6],[-1,1],[0,-8],[-1,-6],[-2,-8],[-1,-2],[-1,1],[0,-12],[-1,-9],[-2,-13],[0,-16],[2,10],[2,3],[1,-9],[0,-17],[1,1],[1,14],[1,6],[1,10],[5,3],[1,-14],[1,4],[1,-11],[3,8],[4,8],[1,16],[0,17],[1,1],[1,-13],[1,-9],[1,-19],[1,14],[-1,21],[-1,16],[-1,11],[0,5],[4,-37],[-1,-53],[-2,-14],[-2,-9],[-3,-11],[-3,-6],[-4,-4],[-3,-7],[-3,-3],[-2,-9],[-2,-5],[-2,-16],[-2,-5],[-3,-32],[-2,-15],[1,-20],[0,-22],[1,-8],[0,-17],[-1,-7],[0,-13],[-1,-2],[-2,0],[-2,-3],[-2,-5],[-1,-7],[-2,-4],[-1,-9],[-1,-10],[-1,-5],[-1,-10],[-1,-2],[-2,3],[0,14],[-1,15],[-1,13],[-1,13],[3,9],[-4,-4],[-6,-4],[-1,4],[-1,2],[-1,-8],[-1,-6],[-1,-3],[-1,-4],[-1,-5],[-2,-8],[-1,-7],[-2,-6],[-1,-6],[-3,-13],[-2,-6],[-2,-6],[-2,-2],[-1,-6],[-1,-10],[-1,-5],[-1,1],[-1,-8],[-6,-26],[-3,-16],[-3,-23],[-4,-23],[-3,-12],[-1,-13],[-3,-15],[-3,-19],[-2,-14],[-1,-11],[-1,-9],[-1,-11],[-1,-21],[-1,-1],[-1,-11],[-2,-8],[-1,-5],[0,-13],[-2,-7],[0,-5],[-1,-9],[-1,-8],[-1,-13],[-1,-1],[-1,-7],[-1,-5],[-1,-8],[-1,-8],[-1,-10],[-1,-1],[-1,-5],[-1,-14],[0,-6],[-1,-1],[-1,-15],[-2,-11],[0,-6],[-2,-5],[-2,-10],[-1,-3],[0,-14],[-1,0],[-1,-10],[-2,5],[-2,-7],[-1,2],[-2,4],[-1,3],[-1,4],[-1,5],[0,11],[-1,8],[0,9],[-1,11],[0,7],[1,23],[-1,11],[-1,3],[-1,-2],[-1,2],[-1,5],[-1,2],[0,6],[-1,-4],[-1,27],[0,11],[-1,5],[-1,6],[0,11],[-1,15],[0,18],[0,20],[1,9],[2,12],[0,17],[3,8],[1,-3],[1,3],[1,16],[0,12],[1,12],[1,5],[1,10],[1,-1],[1,-4],[1,-2],[1,-6],[1,2],[2,7],[-1,15],[1,7],[1,12],[2,22],[1,2],[1,7],[3,19],[1,-3],[1,6],[2,-1],[1,0],[2,4],[-1,8],[1,10],[1,6],[1,-1],[1,5],[0,12],[-1,11],[1,10],[1,18],[1,1],[1,-5],[1,4],[1,3],[2,-4],[0,-4],[1,5],[3,4],[1,9],[0,12],[1,10],[-1,2],[-2,5],[0,19],[1,9],[3,24],[1,10],[2,5],[1,10],[1,6],[2,1],[1,13],[1,12],[-2,1],[-1,4],[-1,9],[-1,0],[-2,-11],[-3,-15],[-2,-12],[0,-6],[-6,-24],[-4,-7],[-3,-2],[-2,6],[-1,7],[-4,5],[-2,1],[-2,7],[2,26],[1,8],[-1,9],[1,15],[1,15],[0,17],[-4,-33],[-3,-30],[-1,-7],[-1,-5],[-1,-1],[-1,-4],[-1,0],[0,-7],[-1,-2],[-1,-4],[-1,-3],[-1,-4],[-3,-14],[1,-12],[-3,8],[-2,-16],[3,-18],[1,-3],[0,-5],[1,-23],[2,-9],[1,14],[0,24],[3,11],[1,5],[1,10],[1,9],[1,4],[1,-1],[2,3],[1,-7],[0,-13],[0,-8],[-1,-5],[-1,-12],[-2,-18],[-1,-13],[0,-13],[-1,-9],[-2,-8],[-3,-5],[-1,3],[-1,18],[-1,10],[0,7],[-2,21],[-1,9],[-3,15],[-2,5],[-1,1],[-3,-14],[-2,-2],[-2,-3],[-1,5],[0,21],[-1,9],[0,13],[-1,15],[1,20],[1,23],[1,14],[-1,12],[-1,16],[0,18],[-1,23],[1,24],[0,22],[0,3],[1,-3],[4,-13],[1,-8],[1,11],[-1,14],[0,11],[-1,25],[0,18],[2,17],[1,9],[0,17],[-1,10],[1,16],[1,15],[2,20],[2,15],[1,2],[1,2],[3,6],[1,15],[0,-25],[6,-11],[0,13],[1,4],[1,7],[-2,7],[-1,5],[-1,7],[-2,8],[-1,-4],[-1,9],[-1,13],[-1,12],[1,15],[2,24],[1,21],[2,47],[3,31],[2,21],[1,7],[2,15],[0,17],[1,5],[1,8],[2,6],[1,3],[1,5],[1,0],[2,-14],[3,-6],[-2,-16],[3,-1],[0,6],[1,17],[1,7],[2,1],[1,-1],[3,1],[1,4],[1,7]],[[9548,45893],[-1,-35],[-2,31],[1,21],[0,19],[1,12],[1,7],[2,9],[-1,-16],[0,-8],[0,-11],[-1,-19],[0,-10]],[[9519,45992],[-2,-31],[-2,10],[2,12],[2,9]],[[9523,45973],[-2,-20],[-1,13],[1,18],[1,19],[1,-11],[0,-19]],[[8778,46023],[0,-18],[1,-12],[0,-8],[-1,-16],[-2,-9],[-1,-1],[-1,-2],[-1,6],[-2,1],[-1,12],[2,3],[1,5],[-3,19],[1,15],[1,-3],[0,27],[1,7],[1,0],[1,-12],[2,-5],[1,-9]],[[9534,45971],[2,-44],[-1,-31],[0,-12],[-1,-8],[-2,-13],[-1,-13],[0,-33],[-2,-10],[-1,-22],[0,-14],[-2,-11],[-1,-9],[-1,-3],[-2,4],[-3,31],[-1,13],[-2,-4],[-3,-7],[-2,-33],[-5,-9],[-5,-38],[-2,19],[-1,12],[0,14],[3,30],[3,43],[4,29],[1,11],[0,8],[2,4],[1,2],[1,4],[1,14],[1,9],[1,6],[1,9],[1,12],[3,9],[7,56],[0,-15],[-1,-20],[0,-18],[1,-11],[0,12],[0,11],[1,10],[0,20],[0,22],[0,14],[1,12],[0,5],[1,8],[1,5],[2,-38],[0,-42]],[[9518,46003],[-1,-9],[-2,4],[-1,3],[1,14],[4,39],[0,-21],[0,-20],[-1,-10]],[[9509,46046],[-1,-18],[0,-15],[-2,-10],[1,26],[-1,-4],[0,-11],[-1,-12],[0,-12],[-1,-3],[1,27],[1,29],[1,13],[2,14],[1,-13],[-1,-11]],[[9526,46027],[-1,-15],[-2,10],[0,21],[2,12],[4,15],[-3,-43]],[[8694,45991],[-2,-2],[0,31],[1,20],[2,39],[2,-14],[-1,-48],[-2,-26]],[[9547,46044],[-2,-14],[0,20],[1,22],[1,9],[0,-21],[0,-16]],[[9520,46083],[-1,-7],[-1,19],[1,0],[1,-12]],[[8702,44825],[2,34],[3,3],[2,12],[3,-41],[7,40],[1,11],[-1,19],[-3,-13],[-2,-19],[-1,11],[-3,16],[-3,-21],[0,14],[3,21],[-1,23],[-2,5],[-1,-13],[-1,12],[0,20],[1,28],[1,8],[1,10],[2,-3],[1,-13],[1,17],[1,6],[2,-2],[2,13],[-1,22],[2,-5],[0,-37],[0,-44],[3,-1],[1,59],[2,20],[2,-3],[0,-42],[2,-21],[0,-16],[4,23],[-2,38],[1,46],[4,21],[2,4],[2,11],[2,12],[2,-14],[2,9],[-4,30],[1,14],[3,5],[3,-10],[2,-1],[-1,40],[-2,16],[-1,14],[-2,29],[-1,4],[0,19],[0,24],[-1,-30],[0,-29],[-1,-22],[-1,-11],[-4,-7],[-5,-39],[-3,3],[-2,-31],[-3,-8],[-1,-9],[-4,13],[-2,-5],[-1,10],[-1,3],[0,17],[-1,2],[-1,-21],[-1,0],[0,33],[1,-1],[0,13],[0,16],[1,13],[0,14],[0,26],[2,7],[1,9],[1,2],[3,-11],[1,4],[2,-15],[1,-5],[0,-26],[1,-11],[2,13],[0,22],[2,-12],[2,9],[1,-5],[0,27],[-4,13],[-1,23],[-1,0],[0,19],[0,17],[-2,-5],[-1,-1],[-1,-16],[-2,6],[-1,-4],[-1,3],[-2,1],[-1,15],[-1,8],[1,12],[0,12],[2,0],[2,-15],[1,8],[1,19],[-1,12],[-2,0],[-2,10],[1,13],[1,14],[1,6],[2,-1],[4,0],[2,-6],[1,-22],[1,6],[1,14],[2,1],[1,8],[0,6],[0,-16],[1,7],[0,14],[0,14],[1,7],[3,-14],[0,17],[-1,5],[0,24],[2,19],[1,10],[0,19],[2,11],[0,12],[-1,17],[1,24],[-1,-11],[-2,-28],[-1,-26],[-1,-18],[-1,-14],[-3,-17],[0,19],[1,22],[0,18],[0,20],[0,4],[-1,-27],[-1,-21],[-2,-9],[-2,-22],[-1,-1],[-2,-10],[-3,-18],[-3,-3],[0,11],[0,13],[0,16],[1,8],[0,18],[0,13],[1,2],[1,6],[3,-5],[0,15],[-1,1],[-2,5],[1,17],[0,28],[1,16],[2,31],[2,15],[0,14],[-2,-10],[-1,9],[1,18],[2,-1],[-1,17],[0,4],[-1,16],[1,9],[1,7],[1,-1],[1,-1],[1,3],[2,10],[-2,10],[0,18],[2,12],[1,7],[1,20],[0,18],[0,22],[0,26],[1,6],[0,11],[1,13],[1,8],[0,13],[2,5],[0,-6],[1,-14],[2,-18],[-1,-27],[-2,-36],[-1,-35],[-1,-34],[-1,-40],[1,1],[0,-21],[0,-27],[-1,-21],[-1,-27],[1,-19],[1,23],[1,19],[1,23],[4,-3],[2,6],[-1,27],[2,15],[3,3],[1,-1],[0,-27],[-1,-34],[2,16],[1,15],[3,-8],[0,-19],[1,-5],[1,8],[0,28],[0,23],[-1,31],[1,14],[1,10],[-1,13],[0,15],[-2,3],[0,18],[0,17],[1,11],[0,4],[3,-27],[2,-17],[0,40],[-3,8],[-1,21],[-1,-5],[-2,1],[-1,0],[-1,18],[1,6],[2,-6],[1,0],[-1,18],[-1,23],[0,23],[1,14],[-1,21],[0,15],[-1,17],[1,17],[0,14],[1,-4],[1,-22],[2,15],[1,22],[0,13],[2,12],[1,-2],[0,-15],[0,-13],[1,-19],[-1,-16],[0,-16],[-1,-23],[1,1],[1,0],[1,4],[0,-20],[2,-9],[1,-14],[-1,-14],[1,-17],[0,-10],[-2,-30],[0,-19],[1,-5],[1,-6],[0,20],[2,1],[0,-1],[0,-13],[-1,-9],[0,-11],[-1,-16],[2,1],[1,11],[1,14],[0,19],[1,25],[1,13],[2,-1],[0,12],[1,2],[2,10],[1,-11],[2,-12],[-1,-12],[0,-20],[2,-23],[0,-14],[-1,-15],[-2,-11],[-2,-8],[-1,-4],[-2,-16],[1,-10],[1,-25],[2,-6],[0,-42],[1,13],[4,-10],[2,-20],[0,-40],[-3,-20],[-2,-14],[-1,-18],[-3,5],[1,-14],[-1,-9],[-3,9],[0,16],[-2,-9],[-2,-10],[-1,13],[-2,-23],[-3,-19],[-2,-31],[-2,-38],[-3,-7],[-4,3],[-4,-9],[-4,-22],[-1,-17],[3,11],[2,-1],[3,9],[3,8],[1,-16],[1,5],[0,-18],[2,-26],[-1,-22],[2,-32],[3,-3],[-1,23],[0,25],[1,15],[1,29],[0,15],[2,12],[1,-16],[1,-6],[0,-21],[2,-20],[1,23],[0,20],[0,19],[1,6],[4,-1],[3,-3],[1,7],[2,13],[-1,-19],[2,-17],[0,-8],[1,-15],[-1,-15],[0,-14],[1,-30],[-1,-18],[-1,-30],[-1,-20],[0,-9],[-1,-4],[-1,-9],[-2,-12],[1,-10],[1,-14],[-1,-12],[-1,-22],[-2,-10],[-1,-11],[-2,-1],[-1,-6],[-1,1],[-1,1],[-1,18],[1,45],[-2,-6],[-3,42],[-1,-13],[0,-18],[1,-34],[-1,-17],[3,-35],[2,-1],[2,-21],[2,-1],[0,-10],[0,-18],[-1,-13],[-2,-29],[-1,-15],[-2,-23],[-3,-7],[0,-21],[-3,-50],[-2,-11],[-1,1],[-2,-21],[-2,-8],[4,-52],[-2,-18],[-1,-5],[-2,-6],[-2,-8],[0,-11],[-2,-1],[-1,27],[-1,13],[-2,-6],[-2,-6],[1,-11],[2,-6],[0,-29],[3,-11],[3,-12],[1,-19],[0,-39],[3,0],[1,8],[1,12],[2,16],[2,6],[1,-1],[-1,-24],[-1,-64],[-2,-49],[-2,-38],[0,-41],[-3,-20],[-3,-5],[-4,19],[-1,13],[0,19],[0,16],[-2,-15],[1,-26],[0,-22],[2,-31],[3,-18],[-4,-156],[-1,-5],[-1,2],[-2,3],[-1,6],[1,10],[-3,7],[-2,29],[-1,2],[0,37],[3,23],[0,33],[-5,-6],[-5,-27],[-6,68],[-1,11],[2,9],[2,3],[1,14],[-1,33],[1,11],[1,4],[1,-11],[1,-12],[3,-4],[1,1],[3,-1],[1,13],[-1,5],[-2,-3],[-3,4],[-1,17],[0,18],[0,19],[2,13],[1,14],[2,12],[6,17],[0,12],[-2,-3],[-3,-8],[0,17],[0,13],[1,26],[-2,-5],[-2,7],[-1,8],[-1,-17],[-1,-37],[-3,-30],[-1,-19],[-4,-9],[-2,-21],[-2,-6],[-2,-5],[0,11],[-1,22],[0,22],[0,19],[2,9],[1,14],[-3,-17],[-2,-24],[-1,-14],[-1,-18],[0,1],[-1,1],[-1,27],[-2,-1],[-1,22],[1,18],[-1,-1],[-1,-20],[-2,-26],[-1,13],[-1,-4],[0,18],[2,10],[0,22],[1,24],[2,-1],[2,41],[-2,-10],[-3,3],[0,40],[-1,12]],[[9550,46043],[-1,-9],[-1,17],[1,18],[0,17],[1,9],[1,11],[1,7],[-1,-17],[1,-12],[0,-13],[-1,-11],[0,-7],[-1,-10]],[[9548,46076],[0,-1],[0,17],[1,18],[1,7],[-1,-23],[-1,-18]],[[8839,46116],[-3,-19],[0,20],[-1,11],[2,3],[2,-15]],[[9527,46122],[-2,-6],[1,11],[1,15],[2,-4],[-2,-16]],[[9555,46091],[-2,-42],[0,11],[1,30],[0,14],[-1,18],[0,14],[1,2],[1,5],[0,-15],[0,-14],[0,-23]],[[9545,46105],[-2,-12],[0,36],[2,17],[2,-13],[-2,-28]],[[9541,46129],[1,-15],[-1,2],[-3,-14],[-2,-2],[2,30],[2,18],[1,-19]],[[9513,46125],[-2,-11],[-1,4],[4,31],[0,-14],[-1,-10]],[[8869,46179],[-4,-26],[-2,0],[-2,-8],[-2,-5],[-2,5],[-8,-14],[-1,-19],[-5,7],[1,5],[3,27],[2,12],[10,13],[4,5],[3,3],[3,-5]],[[8785,46076],[0,-15],[1,8],[1,-12],[1,-16],[0,-17],[0,-12],[-1,-20],[0,-21],[0,-19],[-1,-12],[-1,-2],[0,16],[-2,35],[-1,18],[-2,17],[-1,14],[-2,20],[-2,27],[-1,21],[0,22],[-2,9],[0,17],[0,9],[0,37],[1,25],[1,17],[1,-1],[3,-17],[3,-34],[1,-1],[0,-20],[1,-2],[1,-44],[1,-5],[0,-21],[0,-21]],[[8799,46408],[1,-31],[2,13],[0,-17],[0,-37],[1,-14],[1,-19],[-3,-16],[-1,-21],[0,-26],[1,-24],[-2,-21],[-3,38],[-3,-23],[0,-16],[2,-16],[-1,-32],[-1,-4],[-3,2],[-2,28],[-1,11],[0,-28],[1,-29],[-1,-12],[-1,8],[-1,18],[1,19],[0,13],[0,19],[-1,10],[-4,75],[2,2],[1,24],[-3,17],[1,18],[1,11],[1,18],[0,-8],[2,-9],[1,-3],[0,-21],[-1,-30],[1,-16],[1,-32],[1,20],[0,17],[0,26],[1,5],[1,-12],[2,-8],[2,-11],[0,12],[0,14],[0,11],[1,16],[1,6],[-2,19],[-1,3],[-2,18],[2,18],[2,7],[2,2],[1,14],[1,-4],[-1,-12]],[[8491,43154],[7,15],[16,71],[0,305],[0,301],[4,0],[0,325],[3,0],[0,109],[0,1359],[-25,2],[-4,1],[1,173]],[[8493,45815],[1,23],[2,-18],[5,18],[3,36],[5,59],[5,52],[5,49],[6,37],[5,26],[8,43],[5,42],[5,42],[3,23],[1,3],[1,-21],[3,-35],[2,-24],[-2,-20],[-3,-17],[2,-1],[1,-23],[5,3],[3,10],[5,1],[2,-23],[4,-16],[-1,-33],[-1,-19],[-4,8],[-4,-25],[4,-25],[5,0],[4,20],[0,28],[1,3],[3,-3],[5,-21],[-2,-20],[-4,-32],[-4,-9],[2,-23],[-2,-8],[0,-38],[-2,-56],[-2,-19],[4,-11],[2,26],[2,44],[-1,18],[5,11],[1,5],[2,7],[1,10],[4,14],[3,3],[3,11],[3,20],[1,6],[1,-24],[-1,-72],[1,-79],[-4,-63],[-3,-38],[3,-11],[5,42],[4,21],[2,79],[2,46],[0,37],[0,19],[-2,48],[-2,39],[-1,40],[3,59],[3,1],[1,16],[0,35],[1,5],[5,71],[2,56],[1,11],[2,-114],[1,-79],[-1,-66],[-1,-32],[-2,-52],[1,-15],[1,-21],[2,0],[0,75],[1,9],[3,12],[2,-16],[1,-12],[0,7],[-1,54],[-1,12],[-1,64],[0,43],[-1,54],[1,47],[1,42],[1,50],[1,15],[2,36],[3,12],[4,-12],[2,23],[1,49],[3,10],[2,-15],[3,-1],[1,-17],[1,-40],[1,-69],[1,-26],[2,21],[4,5],[2,-29],[1,-17],[-2,-14],[-4,-14],[-2,-31],[-1,17],[-1,-15],[-3,-36],[0,-24],[-3,-49],[0,-29],[3,26],[3,10],[1,18],[2,-13],[3,42],[3,32],[3,12],[1,-4],[1,-30],[3,-6],[2,-2],[1,-13],[1,-25],[-2,7],[-1,-15],[-2,-36],[0,-20],[4,-5],[3,3],[3,9],[1,2],[1,-31],[3,-53],[-1,-28],[-1,-50],[-2,-27],[-2,-10],[-2,-23],[-3,-16],[-2,-32],[0,-7],[-1,16],[-1,21],[-3,-13],[-4,-14],[-3,-17],[-5,-4],[-1,17],[-3,-18],[-2,-7],[-1,-19],[0,-14],[2,3],[3,-18],[1,16],[3,-3],[2,-10],[4,21],[2,8],[4,4],[1,11],[1,1],[1,-16],[2,7],[4,14],[0,-20],[-3,-26],[-1,-32],[1,-1],[2,12],[3,13],[3,5],[0,26],[0,19],[0,20],[2,13],[2,-26],[2,-39],[2,-46],[-1,-35],[-2,-39],[-1,-39],[-3,-26],[-1,7],[-4,27],[-3,28],[-5,26],[-4,-6],[-4,-29],[-1,-24],[1,-17],[3,-5],[6,-4],[4,-14],[-1,-15],[-3,-42],[-2,-12],[-2,-14],[-4,-19],[-5,13],[-6,26],[-2,30],[3,28],[0,7],[-5,-7],[-2,17],[-1,-24],[1,-51],[2,-60],[2,-27],[0,-22],[-3,-31],[-3,28],[-3,6],[-2,33],[-3,24],[-2,35],[-1,7],[-2,14],[-2,0],[-1,-21],[0,-1],[3,-16],[0,-18],[0,-51],[3,-15],[2,-48],[2,-50],[0,-25],[-4,-35],[-5,-22],[-3,-31],[-1,2],[-2,4],[-3,14],[-3,31],[-3,9],[-2,9],[-1,35],[2,36],[-3,14],[-2,-35],[-3,24],[-1,-15],[-3,6],[-2,-19],[3,-23],[0,-26],[-3,-46],[-2,-55],[-1,-33],[2,2],[3,52],[4,64],[4,29],[1,-13],[-1,-30],[3,-22],[1,-30],[1,-38],[0,-30],[0,-21],[1,-36],[-1,-28],[-1,-8],[-4,-29],[-3,-38],[-2,-23],[-1,-10],[0,15],[-4,-30],[-4,-26],[-2,9],[-1,-23],[-2,-21],[-3,-4],[-4,-7],[1,-25],[0,-39],[-3,-11],[-2,-1],[-1,87],[0,59],[0,57],[-4,-17],[-3,10],[-3,-12],[-4,-13],[-4,-64],[0,-22],[7,-6],[4,-35],[2,-45],[2,-38],[2,-12],[2,0],[-2,-28],[-4,-40],[-3,-32],[-3,-35],[-8,-61],[-4,-31],[-6,-26],[-2,-15],[2,-19],[9,41],[6,37],[5,28],[1,12],[5,-37],[2,17],[0,41],[2,35],[2,3],[3,22],[6,60],[4,54],[3,39],[6,16],[5,24],[6,13],[2,-3],[4,-34],[1,-20],[-1,-33],[-2,-25],[-8,-4],[-4,6],[-4,5],[-2,-22],[4,-5],[-2,-28],[-2,-9],[-3,-30],[-5,-29],[-1,-34],[2,0],[9,59],[7,26],[3,-17],[3,-10],[2,-27],[3,8],[1,-41],[-2,-56],[-2,-72],[-3,-73],[-2,-59],[2,-37],[5,64],[3,32],[2,44],[1,76],[2,67],[1,14],[2,28],[0,39],[1,33],[0,46],[2,16],[1,7],[1,5],[4,-39],[1,-43],[1,-8],[1,-17],[4,3],[3,-21],[-3,-39],[-2,-8],[-3,-75],[-4,-15],[-1,-18],[2,-19],[1,-10],[-1,-30],[-1,-15],[2,4],[0,-19],[-3,-11],[-4,-48],[-10,-76],[-7,-55],[-6,-35],[-4,-17],[-2,9],[-5,-17],[-5,-14],[-1,-1],[-3,13],[1,45],[3,42],[-1,19],[0,41],[0,28],[1,20],[2,49],[-2,16],[-4,-34],[-3,20],[-4,-8],[-1,33],[2,49],[1,23],[-3,8],[-2,-2],[0,-38],[-1,-40],[-1,-40],[0,-37],[-3,7],[2,-82],[-2,-24],[-2,-13],[-2,-25],[1,-32],[1,-10],[-2,-2],[-2,-5],[-1,-37],[-3,-17],[2,-32],[4,-46],[2,-17],[-4,-14],[-1,-23],[2,-11],[0,-55],[-1,-11],[-2,-12],[-4,-5],[-4,-10],[3,-20],[1,10],[1,-24],[0,-26],[0,-35],[-1,-26],[-1,-19],[-5,-10],[-7,-1],[2,-28],[4,-16],[1,-7],[2,-18],[1,-20],[3,-1],[0,-18],[0,-33],[0,-6],[-3,-9],[-2,-32],[1,-20],[3,3],[1,-23],[-1,-43],[-3,-26],[-2,0],[0,-63],[-3,-38],[-3,-23],[-2,26],[-2,12],[-5,23],[-1,20],[0,27],[1,19],[0,13],[0,11],[-1,1],[0,4],[-2,17],[-1,0],[-1,16],[1,17],[0,33],[2,8],[1,30],[0,3],[1,16],[0,9],[-5,-17],[-4,5],[-3,33],[-1,24],[0,24],[0,21],[-3,-6],[-1,23],[0,19],[-3,7],[-2,-29],[1,-15],[2,-53],[0,-19],[0,-28],[0,-14],[0,-9],[0,-24],[1,-27],[-1,-73],[-1,-39],[-2,22],[-3,5],[-4,2],[-1,-12],[1,-19],[4,-10],[3,-31],[-1,-34],[-7,-72],[-3,-26],[-7,-48],[-13,-15],[-1,19]],[[9307,46486],[-1,-2],[-1,0],[0,11],[-1,10],[1,11],[1,14],[1,5],[1,0],[1,-5],[-1,-10],[1,-15],[-1,-10],[0,-4],[-1,-5]],[[9292,46475],[-5,-43],[0,-8],[2,-4],[2,21],[1,5],[2,-23],[2,1],[2,31],[2,27],[1,-4],[-1,-16],[0,-14],[-1,-9],[-1,-11],[0,-8],[-1,-2],[-1,-4],[0,-10],[0,-7],[-1,-6],[-1,-8],[-1,4],[0,3],[-1,-3],[-8,-37],[-1,-17],[1,-18],[4,17],[3,10],[0,-12],[-1,-7],[-1,-13],[0,-4],[-2,-6],[-2,-29],[-2,-1],[-1,6],[-1,10],[0,-1],[-1,6],[-1,4],[0,-8],[0,-20],[-1,-13],[-1,-5],[-3,-10],[-5,-24],[-3,-20],[-2,-17],[-7,-36],[-6,-1],[-8,-55],[-4,5],[-2,-24],[-1,-1],[-1,2],[0,-13],[0,-12],[-1,0],[-1,1],[-2,-1],[-1,-6],[-1,1],[-1,-2],[-2,-16],[-3,-33],[-1,-1],[-1,-6],[-1,-15],[-1,-12],[-2,-6],[0,-6],[-2,-2],[0,-12],[-2,-8],[-1,-8],[-2,-10],[-1,-8],[-2,-5],[-1,-2],[-1,-9],[-2,-1],[-1,-7],[-1,-5],[-4,-5],[-1,-3],[-2,-8],[-1,-8],[-1,-5],[-2,-8],[-3,-8],[-2,-4],[-1,-6],[-2,0],[-1,-9],[-1,-6],[-2,0],[-1,-9],[-1,-7],[-1,-2],[-2,-1],[-1,6],[-2,5],[-1,-3],[-3,-2],[-1,4],[-2,7],[0,10],[-1,9],[-1,-7],[0,-12],[0,-1],[-1,-1],[-4,8],[-4,8],[-1,0],[-1,5],[-1,1],[-1,1],[-1,15],[-2,-1],[0,9],[0,11],[1,7],[0,8],[-1,10],[0,14],[0,9],[1,23],[1,16],[0,27],[0,19],[-1,7],[0,11],[1,13],[0,13],[-1,12],[1,5],[2,-3],[1,10],[1,13],[2,-1],[1,-1],[-1,15],[0,17],[1,9],[2,-1],[1,7],[1,-1],[6,-7],[4,0],[2,8],[3,-2],[0,-18],[0,5],[1,7],[1,-2],[0,3],[-1,11],[1,8],[2,6],[1,6],[1,6],[1,7],[3,-2],[1,5],[2,2],[2,5],[3,3],[1,-5],[-1,-11],[1,-8],[1,-4],[0,-11],[1,-2],[1,-6],[1,9],[1,14],[1,-3],[1,-2],[2,-3],[0,-7],[0,-11],[1,-7],[1,-11],[1,2],[1,1],[0,8],[2,2],[1,-6],[2,-17],[1,-10],[1,3],[1,-3],[1,-13],[1,-13],[2,-8],[-1,16],[0,10],[-1,11],[-1,8],[-1,10],[-1,16],[-1,6],[-2,-6],[-1,9],[0,3],[-1,9],[-1,0],[-1,-8],[-1,-8],[-1,3],[0,8],[-1,11],[-1,11],[0,16],[1,7],[1,9],[0,14],[1,15],[1,16],[0,-21],[3,-40],[2,-5],[-1,14],[0,11],[0,17],[1,13],[1,13],[1,7],[1,7],[10,27],[1,-2],[1,8],[1,-1],[1,9],[1,9],[0,-11],[-1,-10],[1,-4],[1,3],[2,19],[1,20],[1,-4],[1,-3],[0,16],[-1,2],[1,10],[0,6],[1,12],[-1,9],[1,7],[1,2],[2,-6],[0,3],[1,-8],[1,-1],[1,-20],[2,-12],[2,-2],[3,-5],[1,-7],[1,7],[1,-1],[1,-6],[2,11],[-2,5],[-2,3],[-2,15],[-1,1],[0,11],[0,6],[0,10],[-1,4],[-1,-1],[-1,13],[1,-1],[1,2],[1,10],[1,7],[1,9],[0,14],[1,-1],[-1,-10],[2,2],[0,-5],[1,13],[1,9],[1,1],[3,-2],[2,-1],[2,1],[0,16],[1,12],[1,5],[1,1],[1,-7],[2,-7],[1,-2],[3,3],[4,1],[3,0],[0,2],[2,3],[3,6],[1,4],[2,11],[2,8],[1,1],[2,6],[3,49],[5,55],[1,3],[1,-5],[0,-8],[-3,-43],[-1,-3],[0,-6],[-1,-5],[-1,-5],[0,-6],[-1,-16],[-1,-7],[-1,-10],[0,-9]],[[9291,46581],[-2,-2],[1,20],[1,9],[1,3],[0,-15],[0,-7],[-1,-8]],[[9311,46637],[-1,-6],[-1,17],[2,6],[1,-5],[-1,-12]],[[8636,46621],[-2,-13],[-1,22],[0,17],[1,10],[1,9],[4,8],[-1,-8],[1,-13],[-1,-20],[-2,-12]],[[9240,46883],[-1,-13],[-1,-2],[-2,-5],[-1,5],[-2,5],[1,7],[1,4],[1,2],[1,-3],[1,-2],[1,7],[1,-5]],[[9254,46951],[-2,-2],[-2,0],[1,13],[2,12],[3,12],[-2,-35]],[[9124,47004],[-1,-24],[-1,-2],[-1,8],[-1,4],[1,9],[1,-2],[1,12],[1,-5]],[[8743,46828],[-2,-6],[0,22],[1,41],[4,90],[1,6],[0,29],[1,-15],[2,-1],[1,-5],[0,-16],[-3,-24],[-5,-121]],[[8834,46973],[2,-36],[2,3],[0,17],[3,4],[2,-4],[1,-16],[1,-17],[0,-14],[1,-31],[1,-10],[0,-6],[1,-17],[0,-28],[2,-39],[3,-9],[2,6],[1,69],[8,-5],[0,28],[-3,9],[1,12],[0,7],[2,7],[0,-11],[3,-24],[1,-13],[3,-5],[1,-31],[-3,-10],[-2,-23],[-3,-68],[-2,-37],[-2,-21],[-6,-11],[-6,4],[1,14],[1,-1],[1,29],[-3,1],[0,26],[-1,19],[2,33],[-1,9],[-4,-20],[-3,-30],[0,-31],[-1,-16],[-2,-18],[-2,-21],[-7,-34],[-8,2],[4,44],[3,27],[0,18],[-1,6],[2,7],[0,-22],[1,8],[3,12],[0,21],[2,24],[-2,9],[-2,-3],[-6,-11],[-5,-13],[-2,17],[-1,31],[2,4],[2,-1],[1,21],[0,-10],[4,-12],[4,-8],[3,14],[2,-3],[-1,18],[-4,-6],[-2,16],[2,20],[1,4],[2,22],[-1,9],[-1,11],[-3,8],[-4,9],[-1,4],[-2,38],[3,6],[-1,25],[1,9],[1,-6],[2,-28],[1,-1],[2,18],[-1,14],[1,21],[1,9],[2,-3],[1,-16],[0,-23]],[[8855,47056],[2,-24],[0,-22],[-4,-45],[-3,-27],[-2,0],[-1,0],[0,14],[1,12],[-1,9],[-2,17],[-4,7],[0,7],[-1,26],[1,0],[1,23],[1,1],[1,-12],[3,0],[2,22],[2,5],[3,16],[1,0],[0,-13],[0,-16]],[[8495,46928],[0,37]],[[8495,46965],[1,18],[1,24],[-1,19],[-1,12],[1,30],[3,17],[1,17],[1,17],[2,11],[1,-4],[1,-9],[-1,-21],[1,-11],[-1,-19],[0,-16],[-1,-2],[-6,-104],[-1,-6],[-1,-10]],[[9037,47057],[-1,-3],[-1,5],[-1,6],[-1,4],[0,6],[-1,17],[-1,22],[-1,16],[1,22],[1,4],[2,-25],[2,-46],[0,-14],[1,-7],[0,-7]],[[8849,47182],[-2,-21],[-2,-11],[-1,-15],[-4,-17],[-5,-14],[-4,11],[-6,7],[-4,33],[2,14],[3,4],[5,-19],[2,19],[2,-9],[0,46],[3,-31],[3,-8],[1,32],[1,4],[1,21],[4,-3],[1,-16],[0,-27]],[[8694,47151],[-2,-21],[7,-69],[2,16],[-3,54],[-2,76],[8,-17],[7,-74],[1,-26],[1,-13],[-2,8],[-1,-20],[3,-15],[2,11],[2,-43],[3,-13],[1,-18],[-1,-21],[-3,-64],[-4,20],[-2,2],[0,-12],[3,-19],[1,-23],[-2,-5],[-2,8],[-2,28],[-2,8],[0,-15],[-2,-1],[-3,9],[-1,-3],[0,57],[-1,-14],[-2,-25],[0,-17],[0,-19],[-1,-13],[1,-18],[-1,-35],[0,-21],[-1,7],[-2,21],[-4,28],[-2,25],[-2,9],[0,38],[-1,34],[-1,2],[-2,-1],[-2,-13],[-3,5],[1,24],[1,19],[0,22],[-1,14],[-1,13],[1,23],[1,16],[-1,-4],[-1,14],[-2,-6],[-1,30],[-2,24],[2,3],[2,17],[3,-1],[1,-18],[0,-27],[2,-9],[2,-9],[0,-41],[0,-13],[1,-11],[2,-6],[4,-2],[1,14],[-1,19],[-2,-2],[1,14],[-1,10],[-1,11],[-2,26],[0,29],[1,3],[2,-4],[-4,31],[-2,48],[5,52],[2,-24],[1,-14],[0,-14],[-1,-8],[3,-44],[1,-17]],[[8624,47316],[0,-27],[1,2],[2,2],[10,10],[-1,-11],[-4,-9],[-1,-17],[-2,-18],[-5,-20],[1,-15],[4,5],[7,51],[5,1],[0,-18],[3,5],[2,-24],[2,-25],[1,-58],[0,-51],[-3,-18],[-3,-11],[1,-11],[-5,-13],[-3,3],[-2,-18],[-1,26],[-2,18],[-1,-7],[-1,-15],[0,-17],[3,-6],[2,-26],[2,13],[2,16],[2,-3],[3,6],[2,2],[3,-6],[1,-8],[1,-15],[1,-44],[-1,-29],[1,-9],[2,-28],[-2,-23],[-2,0],[1,-27],[2,10],[0,-34],[-1,-7],[-2,-20],[-5,-64],[-9,-30],[-2,-36],[-2,-3],[-1,-11],[0,18],[-1,30],[0,11],[-3,50],[-1,55],[0,17],[1,8],[-3,7],[-3,15],[-2,47],[-5,55],[0,32],[-1,-1],[-2,-13],[1,27],[1,38],[1,27],[3,32],[-1,13],[-2,-13],[-1,-32],[-2,-27],[-2,27],[1,38],[3,2],[-2,7],[0,33],[5,24],[0,13],[1,9],[5,4],[1,47],[-6,-14],[3,59],[3,13],[2,4]],[[8732,47311],[-2,-13],[0,12],[1,8],[1,-7]],[[8495,46014],[0,251],[0,139],[0,447]],[[8495,46851],[6,60],[8,91],[3,-3],[2,48],[-1,23],[1,39],[1,36],[3,54],[4,23],[6,45],[2,26],[2,35],[3,21],[2,5],[4,-15],[4,-13],[1,-17],[2,-18],[3,-4],[2,2],[2,25],[0,27],[3,29],[3,25],[4,16],[3,-2],[2,-15],[1,-4],[2,-28],[3,-21],[-2,-20],[-4,-2],[-1,-17],[0,-11],[1,-13],[0,-15],[-1,-53],[3,0],[2,46],[2,-35],[-1,-41],[-3,-30],[-4,-25],[-2,-23],[-1,0],[-3,-2],[-1,-22],[2,-16],[3,2],[2,-34],[-2,-33],[2,-17],[2,-39],[0,-40],[-4,-37],[-7,-47],[-6,-40],[1,-37],[4,-12],[1,-38],[-2,-44],[0,-48],[1,-10],[3,25],[8,130],[8,23],[0,-4],[1,-10],[1,3],[1,18],[0,14],[0,5],[0,27],[-4,31],[1,35],[1,16],[2,43],[2,43],[3,29],[4,69],[4,37],[2,50],[2,28],[2,46],[1,33],[2,14],[1,6],[5,1],[3,22],[3,11],[-2,-29],[-2,-30],[-3,-31],[-1,-9],[1,-17],[1,-21],[0,-23],[-1,-29],[-1,-67],[-2,-57],[-2,-45],[-5,-49],[-2,-31],[4,32],[5,52],[2,14],[3,-29],[2,-69],[1,-33],[2,-26],[4,-32],[3,-47],[1,-45],[-2,-21],[-1,-37],[2,-12],[1,4],[2,-28],[1,-38],[-1,-12],[-5,-40],[-5,-34],[-2,26],[-2,-8],[-3,-18],[-2,-23],[-3,-37],[-3,-60],[-2,-20],[-3,11],[0,-8],[-1,-44],[0,-23],[0,-16],[-3,-41],[-4,-52],[-1,-8],[-3,10],[-4,8],[-2,28],[-1,7],[2,28],[2,10],[4,79],[-1,8],[-2,-18],[-3,-47],[-5,-55],[-3,-2],[-6,40],[-2,43],[-2,14],[-2,-3],[-2,14],[1,31],[2,22],[3,33],[3,33],[2,22],[-1,9],[0,-2],[-3,-42],[-5,-33],[-2,-13],[-3,-30],[-6,6],[-2,17],[-11,-44],[-4,-31],[-6,-40],[-8,-56],[-6,-60],[-7,-63],[-3,-44],[-3,-21],[-1,-17]],[[8719,47454],[0,-7],[0,20],[0,18],[3,0],[-1,-13],[-1,-4],[-1,-14]],[[8756,47477],[0,-23],[1,-15],[-2,-1],[-2,20],[-2,-7],[0,26],[7,38],[1,1],[0,-17],[-3,-8],[0,-14]],[[8769,47541],[-1,-13],[0,27],[2,12],[0,-13],[-1,-13]],[[8759,47606],[-1,-16],[-1,4],[-2,-10],[1,21],[3,1]],[[8748,47651],[3,5],[0,-11],[2,2],[0,-15],[0,-15],[0,-17],[-1,-6],[-3,-15],[-1,-2],[0,14],[2,26],[0,22],[-1,-7],[-2,-2],[1,21]],[[8749,47752],[0,-21],[-2,8],[0,19],[1,12],[1,-18]],[[9002,47730],[-2,-4],[-1,13],[2,8],[1,7],[0,4],[2,10],[1,8],[1,10],[2,-2],[0,-10],[-1,-6],[-2,-6],[-1,-6],[0,-13],[-1,-7],[-1,-6]],[[8826,47799],[0,-6],[-1,9],[1,9],[1,14],[1,-12],[-1,-2],[-1,-12]],[[8802,47852],[0,-23],[-1,5],[-2,3],[-2,1],[-1,11],[1,10],[0,15],[4,23],[1,-11],[1,-13],[0,-18],[-1,-3]],[[9039,47771],[1,-29],[-1,-27],[0,-1],[-2,-4],[-4,23],[0,-1],[-1,-14],[-1,-6],[0,-7],[0,-11],[2,-9],[1,8],[1,-9],[0,-19],[0,-22],[1,-26],[-1,-22],[0,-12],[-2,-13],[-3,-10],[-5,-11],[-4,-7],[-3,1],[-6,-7],[-1,12],[-1,10],[-1,12],[-1,11],[-1,15],[1,37],[0,38],[0,17],[-1,15],[0,18],[1,16],[1,11],[1,4],[1,1],[1,10],[-1,18],[1,19],[1,8],[0,16],[1,9],[2,2],[1,0],[1,-3],[1,-2],[1,-13],[1,-16],[1,-10],[1,-17],[-1,-4],[-2,-9],[-1,-6],[1,-16],[1,1],[1,8],[1,12],[1,-1],[1,8],[1,4],[1,4],[1,4],[0,10],[-1,13],[-2,19],[-1,11],[1,5],[-1,11],[-1,9],[-1,11],[-1,9],[-1,3],[0,16],[0,3],[2,6],[1,-1],[1,-5],[2,-7],[1,-1],[1,-6],[1,-7],[1,-10],[1,-22],[1,-7],[1,-9],[0,-7],[4,-26],[2,-26]],[[8839,47844],[-3,-12],[-2,10],[-4,16],[0,24],[-2,8],[0,25],[2,5],[1,4],[2,-7],[1,-5],[1,-3],[1,-4],[1,-11],[2,-7],[0,-18],[0,-25]],[[9018,47991],[2,-43],[-1,-10],[-1,-11],[0,-6],[-1,1],[-2,-1],[0,12],[0,18],[-1,9],[-1,8],[-1,-3],[-1,-1],[-1,-3],[0,4],[-1,4],[-1,8],[2,2],[0,3],[1,11],[1,3],[1,4],[1,4],[2,4],[2,-17]],[[8915,48020],[1,-16],[2,-2],[1,-3],[1,5],[0,21],[1,16],[1,-3],[1,23],[1,2],[0,-10],[0,-10],[-1,-14],[1,-4],[0,-18],[-2,4],[1,-25],[-2,-18],[-1,-19],[-4,-32],[-4,-20],[-3,-3],[3,-23],[7,27],[-1,-23],[3,10],[0,27],[3,13],[3,30],[0,15],[1,15],[1,40],[1,-57],[2,26],[3,9],[1,-28],[-1,-20],[-1,-26],[-2,-49],[-2,-9],[-2,-19],[-7,-54],[-2,-13],[-2,-7],[-5,9],[-1,21],[-3,-1],[-5,9],[0,15],[2,14],[1,26],[1,30],[0,14],[-3,-5],[-2,-12],[-2,-20],[-2,0],[-2,-2],[0,-21],[-1,-5],[-2,-3],[-1,-3],[-1,5],[-3,13],[-1,9],[-1,1],[-16,4],[-4,14],[0,11],[1,7],[2,0],[1,3],[2,11],[2,6],[0,21],[1,14],[2,0],[0,1],[2,-21],[3,-23],[3,28],[2,45],[1,32],[2,3],[2,9],[1,20],[5,-8],[0,-16],[-3,-44],[-1,-51],[4,38],[1,45],[1,18],[3,-19],[4,4],[2,9],[-1,-17],[-1,-6],[-2,-14],[-2,-21],[1,-6],[2,11],[2,9],[1,-7],[1,-31],[1,2],[1,17],[-1,20],[-1,2],[2,23],[2,-8],[0,12],[0,31],[2,17],[3,8],[1,-6],[-1,-15],[-2,-1],[-2,-33]],[[8668,48135],[4,-38],[6,-42],[1,-3],[1,11],[4,-24],[3,-32],[1,7],[3,-26],[1,-34],[2,-27],[4,-46],[-1,-9],[-2,-5],[1,-17],[0,-26],[-4,-48],[-3,25],[-3,16],[-3,28],[-1,-10],[4,-34],[3,-18],[1,-10],[1,-24],[2,7],[1,-25],[5,-33],[3,-63],[0,-31],[-2,-32],[-2,-10],[-2,-14],[-4,-16],[-4,-3],[1,38],[-3,1],[0,16],[-1,20],[0,32],[-2,0],[-1,28],[-4,-22],[3,-8],[0,-19],[1,-2],[0,-17],[-1,0],[1,-19],[-1,-95],[-13,-55],[-4,16],[-1,33],[2,10],[0,14],[4,75],[-1,-1],[-3,-44],[-1,0],[-1,-29],[-2,-4],[0,-25],[2,-16],[-3,-10],[-3,16],[-2,27],[-2,4],[0,14],[-2,18],[-2,6],[0,-16],[6,-59],[-1,-11],[-3,-2],[-10,24],[-2,23],[-1,6],[0,22],[1,28],[-1,48],[-2,6],[1,52],[3,33],[3,62],[-1,59],[-1,13],[4,45],[-1,17],[5,32],[2,-46],[-1,19],[1,29],[0,30],[0,25],[9,-21],[1,3],[0,21],[2,-6],[-2,25],[-6,-8],[-1,10],[-3,4],[-2,4],[-1,6],[1,24],[-1,18],[2,27],[2,0],[-1,16],[3,5],[-1,7],[3,11],[0,16],[1,13],[3,-11],[2,0],[3,23],[2,-9],[1,-13]],[[8952,48393],[-2,-29],[-2,8],[0,17],[-1,-14],[-1,-17],[0,-18],[-1,-10],[-2,-15],[-3,-40],[-1,-1],[-2,46],[2,21],[0,32],[1,11],[1,8],[3,43],[2,17],[6,-1],[1,-11],[-1,-47]],[[8748,47651],[-3,10],[-1,-6],[0,-7],[0,-18],[0,-12],[-1,-15],[-1,-23],[-2,-15],[-2,9],[-2,-2],[-1,4],[1,27],[1,17],[-3,-21],[-3,1],[-2,2],[0,-15],[-3,-10],[0,12],[-2,4],[0,35],[4,25],[-1,12],[3,17],[2,29],[2,27],[-3,4],[0,18],[-2,-14],[-4,-45],[-3,-3],[2,-8],[-3,-44],[-1,-5],[-2,-27],[-7,35],[-1,33],[-5,53],[-2,32],[0,31],[0,51],[0,18],[-1,15],[-1,36],[-1,19],[0,25],[-3,-2],[-2,5],[-2,30],[2,16],[1,27],[-4,-5],[-11,47],[-4,5],[-7,62],[0,9],[-1,2],[-1,25],[-3,2],[-3,-19],[-2,-4],[-1,4],[1,28],[3,14],[-1,14],[5,48],[5,35],[1,10],[3,7],[4,24],[1,7],[1,6],[0,21],[-1,8],[-4,-15],[-2,-14],[0,1],[-1,6],[1,11],[2,14],[2,30],[1,14],[0,7],[2,21],[1,10],[1,9],[2,0],[2,16],[2,43],[1,9],[2,34],[-1,7],[0,55],[1,29],[0,45],[6,50],[-1,15],[4,8],[1,15],[-2,12],[3,28],[-2,15],[0,10],[-5,-16],[-1,17],[-5,-33],[1,15],[4,36],[7,51],[6,63],[0,19],[10,118],[5,56],[0,11],[12,113],[5,60],[1,28],[3,12],[14,42],[6,25],[-1,26],[-2,0],[3,50],[2,9],[0,32],[-6,1],[-3,-6],[-6,-47],[-8,-26],[1,29],[5,66],[0,28],[1,26],[4,23],[3,35],[2,43],[2,19],[-1,55],[-6,22],[-4,-34],[-4,-34],[-6,-92],[-2,-5],[-1,-12],[-7,-79],[-1,-59],[-1,-8],[-2,-45],[-1,-22],[0,-2],[-5,-47],[-2,-25],[-3,18],[-2,-28],[0,-31],[-1,-10],[0,-7],[-2,-18],[-1,-34],[-8,-68],[-1,-34],[-3,-14],[-13,-137],[-1,-25],[-2,-22],[-4,-51],[0,-13],[-1,-138],[0,-31],[-7,-87],[-2,-32],[0,-4],[-2,-11],[-1,-42],[-2,-14],[-3,-19],[-2,-34],[-3,11],[-1,9],[0,5],[-2,21],[1,50],[2,30],[-1,29],[-4,8],[-1,-13],[-4,15],[-1,141],[-1,27],[-4,42],[0,17],[-4,83],[5,91],[-1,34],[-2,11],[-5,-60],[-2,14],[-2,-10],[-1,-59],[0,-12],[-3,-82],[-4,-16],[-9,27],[-7,-20],[-3,-35],[-4,26],[-2,4],[-2,-10],[0,-41],[2,-24],[-3,-12],[-5,14],[-3,-55],[-3,8],[-6,7],[-1,-12],[-2,10],[-8,-7],[-2,-34],[11,-47],[1,5],[3,-15],[1,-24],[-2,-10],[-3,-51],[1,-16],[-6,-99],[-7,-41],[-6,-36],[-4,-16],[0,-1],[0,-71],[5,-24],[0,12],[1,19],[2,11],[3,6],[3,26],[4,15],[2,6],[3,39],[4,53],[2,34],[2,22],[1,13],[5,85],[8,66],[2,0],[-1,15],[6,15],[0,15],[15,43],[13,48],[1,-9],[-1,-37],[-1,-19],[1,-17],[0,-18],[1,-41],[-2,-53],[-3,-115],[1,-16],[0,-30],[-1,-23],[1,-18],[1,-12],[-3,0],[-2,-9],[-1,-4],[0,20],[-1,0],[0,12],[-2,-18],[0,-26],[2,6],[0,-27],[0,-39],[2,-10],[-3,-12],[-3,-48],[-1,-20],[-1,12],[-1,19],[-1,2],[-1,8],[-2,-10],[-1,-20],[2,-31],[0,-20],[0,-14],[-1,-24],[-2,-4],[-2,-3],[-3,0],[-2,43],[-4,33],[-4,13],[-4,17],[2,25],[-2,7],[-3,-32],[-2,-12],[3,-36],[5,-20],[1,-22],[1,-26],[1,-23],[0,-36],[0,-13],[4,-10],[1,-5],[1,0],[1,-9],[-1,-35],[-2,-58],[-2,-4],[-2,-24],[-1,43],[0,13],[-2,-1],[0,14],[0,22],[-3,16],[-1,-9],[-1,-17],[1,-13],[1,-69],[3,-41],[2,-29],[-2,-12],[-1,-25],[-2,-8],[1,-31],[4,41],[0,-19],[1,-13],[-2,-69],[-2,-55],[-3,-19],[-1,12],[0,-6],[-1,28],[-2,17],[-4,26],[-2,11],[-4,-8],[-1,23],[0,15],[-2,12],[-2,3],[-1,-27],[-1,0],[-1,-16],[0,-14],[-1,-6],[-1,-11],[2,-32],[2,-4],[4,-14],[1,-8],[2,-18],[2,-21],[3,-22],[2,-1],[0,-20],[-1,-15],[0,-34],[0,-4],[-2,-13],[-2,12],[-2,-10],[-3,-6],[-1,4],[-2,5],[-1,12],[-2,30],[-3,32],[-4,24],[-3,27],[-7,13],[-8,-10],[-4,3],[-2,23],[-2,2],[0,-42],[-2,-18],[-3,-13],[-7,2],[-4,16],[-6,-1],[-4,-5],[-2,-19],[-2,-27],[-1,-17],[-1,8],[-1,-6],[-1,-8],[-1,-7],[-1,-7],[-1,-4],[-1,-6],[-1,-5],[-1,-2],[0,-5],[-1,-9],[-1,-7],[-1,-6],[-2,-8],[-1,-9],[-1,-3],[-1,-3],[-1,-5],[-1,-5],[0,-4],[-1,-3],[-1,-1],[-2,-6],[-1,-7],[0,-1],[-1,-10],[0,-16],[1,-9],[0,-8],[0,-15],[1,-1],[1,4],[1,4],[1,0],[1,2],[1,1],[1,-3],[1,-1],[0,-6],[1,-2],[1,2],[2,9],[1,1],[1,1],[0,2],[2,4],[0,1],[1,4],[1,7],[1,7],[1,5],[1,9],[1,1],[1,3],[1,6],[2,19],[2,7],[5,34],[3,18],[2,-2],[2,7],[2,11],[2,-18],[1,-22],[-2,-16],[-2,-25],[0,-24],[-1,-28],[2,29],[4,27],[4,30],[0,11],[5,14],[2,4],[3,17],[3,-14],[3,13],[5,-9],[1,-12],[-1,-25],[2,-30],[-1,-15],[-3,-25],[-7,-9],[-2,-3],[-3,2],[-2,0],[-3,14],[-5,-22],[-3,-13],[-2,-21],[-5,-25],[-4,-26],[-4,-18],[-2,-31],[-2,-23],[-3,-33],[-3,-46],[-3,-24]],[[8495,47149],[0,37],[-25,-4]],[[9100,59277],[1,9],[4,12],[3,12],[16,15],[4,8],[8,4],[0,7],[3,22],[1,-16],[1,3],[2,10],[5,-8],[3,-2],[2,-4],[5,-2],[3,-7],[2,-3],[4,4],[1,-6],[3,-8],[1,5],[2,0],[2,-4],[4,-13],[1,0],[2,8],[3,6],[1,19],[1,-16],[2,-3],[3,-2],[5,12],[1,14],[1,7],[0,18],[2,6],[0,17],[2,3],[0,108],[27,0],[3,0],[57,6],[37,-2],[1,0],[1,0],[3,0],[45,2],[35,0],[36,-1],[10,0],[9,0],[4,0],[0,-234],[0,-67],[0,-16],[0,-115],[0,-8],[1,0],[51,0],[1,0],[2,0],[1,0],[2,0],[3,0],[7,0],[26,0],[4,0],[24,-1],[5,1],[10,0],[1,0],[1,0],[7,0],[2,0],[12,-1],[0,-77],[17,2],[19,-8],[103,-4],[2,-1],[18,-4],[1,0],[24,-7],[3,-1],[1,-1],[7,1],[7,1],[64,8],[85,2],[3,0],[7,-1],[9,0],[2,0],[13,1],[19,2],[-3,-20],[1,-41],[2,-29],[1,-20],[1,-24],[0,-39],[1,-49],[0,-32],[1,-27],[1,-21],[-2,-27],[-1,-22],[0,-20],[2,-15],[4,-14],[2,-8],[2,-13],[1,-17],[2,-6],[0,-14],[-2,-9],[0,-21],[-2,-25],[-1,-19],[1,-11],[2,-6],[2,-13],[4,-4],[3,1],[6,-9],[0,-9],[2,-6],[3,-8],[2,-8],[0,-13],[0,-6],[0,-18],[1,-32],[-2,-28],[-2,-11],[-3,1],[-2,-4],[-2,-8],[-1,-11],[0,-19],[2,-17],[0,-17],[-1,-27],[-2,-8],[1,-10],[0,-6],[0,-7],[0,-3],[0,-8],[1,-5],[2,-11],[0,-12],[0,-9],[0,-15],[-1,-6],[-1,-7],[0,-10],[-1,-6],[-2,-13],[-2,-9],[-1,-2],[-1,-11],[0,-6],[0,-7],[-1,-3],[0,-10],[0,-4],[1,-4],[0,-7],[1,-15],[-1,-20],[-2,-13],[-1,-14],[0,-12],[-1,-5],[-2,-5],[-1,-13],[-2,-14],[-1,-22],[0,-22],[-1,-12],[-2,-5],[-2,1],[-2,-2],[-1,-9],[0,-9],[0,-37],[-1,-26],[-1,-13],[-1,-2],[-1,6],[-2,10],[-1,-3],[-1,-8],[-2,-22],[-1,-28],[0,-32],[0,-36],[-2,-7],[-2,-2],[-2,-6],[-1,6],[-1,3],[-1,-6],[-2,-8],[-1,-4],[0,-8],[0,-19],[1,-15],[2,-13],[3,-12],[2,-6],[0,-8],[0,-11],[1,-16],[0,-15],[2,-13],[3,-6],[1,2],[1,4],[3,9],[0,-2],[4,-23],[2,-11],[1,-13],[1,-14],[1,-3],[1,0],[1,-10],[2,-13],[3,-24],[4,-24],[2,-22],[2,0],[1,5],[3,-4],[1,1],[1,10],[2,6],[1,-1],[1,-8],[1,-13],[1,-14],[1,-10],[-2,-10],[-2,-10],[-1,-15],[0,-13],[0,-14],[-1,-26],[-2,-16],[0,-5],[-1,-8],[-1,-8],[-1,-13],[-1,-3],[-1,3],[-1,-7],[-2,-13],[0,-5],[0,-10],[0,-10],[0,-13],[-1,-5],[-1,-4],[0,-10],[0,-13],[-1,-23],[-2,-13],[-1,-5],[-1,-8],[-1,-18],[1,-13],[0,-12],[-2,-1],[-2,5],[-2,2],[-2,-8],[-3,-14],[0,-10],[-2,-11],[-1,-14],[0,-16],[1,-12],[3,-7],[1,-7],[0,-9],[-1,-11],[0,-20],[0,-17],[2,-19],[1,-13],[0,-8],[0,-11],[-2,-6],[-2,3],[-2,8],[-3,5],[-1,-1],[-1,-9],[-2,-9],[-1,-10],[-1,-16],[0,-8],[-1,-10],[1,-14],[1,-6],[2,0],[1,3],[1,-9],[-1,-7],[0,-8],[-1,-6],[-1,-6],[0,-3],[1,-10],[1,-5],[1,-14],[0,-11],[0,-13],[2,-11],[1,-6],[1,-3],[3,0],[1,-1],[1,0],[1,-3],[1,-8],[0,-13],[1,-18],[1,-10],[1,-7],[1,-2],[1,0],[2,-1],[1,-5],[1,4],[1,2],[2,1],[3,-1],[2,-3],[1,-5],[1,-7],[1,-2],[0,8],[1,9],[1,8],[2,3],[1,-4],[2,0],[1,8],[0,5],[1,-9],[1,-12],[0,-12],[1,-6],[2,-5],[1,-13],[1,-5],[1,-4],[0,-6],[1,-9],[1,-2],[1,-3],[0,-5],[0,-8],[2,-6],[3,-7],[2,2],[2,10],[2,11],[0,12],[1,14],[0,17],[1,11],[1,6],[1,-2],[2,-2],[1,-3],[1,-12],[2,-10],[1,-7],[3,2],[2,5],[1,6],[2,-3],[0,-9],[1,-12],[2,-8],[3,-8],[2,0],[1,5],[0,7],[0,10],[-1,8],[-1,14],[1,9],[1,12],[0,9],[0,15],[0,18],[0,14],[2,15],[1,10],[1,7],[0,10],[0,9],[1,9],[1,5],[1,3],[1,8],[0,6],[0,9],[0,7],[2,13],[0,9],[0,12],[0,13],[1,9],[2,4],[1,5],[2,7],[1,6],[2,1],[1,-3],[2,-7],[2,-5],[2,2],[0,7],[0,11],[0,8],[-1,10],[-2,9],[-1,15],[0,23],[0,26],[0,20],[3,6],[1,11],[1,7],[0,10],[0,8],[0,8],[0,7],[0,9],[-1,13],[0,14],[0,13],[2,15],[1,16],[2,12],[3,0],[2,-6],[1,2],[2,6],[1,-3],[3,-23],[1,-15],[1,-6],[2,-3],[2,-8],[2,-5],[0,2],[2,5],[1,-2],[0,-5],[2,-15],[1,-13],[1,-8],[-1,-9],[0,-6],[-1,-22],[1,-12],[1,0],[1,-4],[1,-3],[4,10],[1,9],[1,22],[1,19],[1,5],[1,-3],[1,-5],[1,-12],[1,-15],[2,-7],[3,-3],[2,6],[2,-2],[2,-7],[1,-12],[2,-6],[1,-4],[2,7],[1,7],[26,5],[28,6],[-1,-258],[-1,-164],[17,5],[3,1],[2,-1],[28,-19],[4,-4],[-1,-351],[0,-61],[15,-3],[32,-4],[-2,-490],[0,-28],[-1,-377],[-1,-410],[0,-55],[0,-10],[0,-6],[0,-308],[-1,-29],[-9,2],[-1,-162],[0,-25],[24,0],[8,0],[19,0],[1,0],[0,-15],[0,-16],[0,-73],[0,-7],[0,-89],[0,-37],[0,-27],[0,-37],[0,-13],[0,-58],[0,-45],[0,-49],[0,-19],[0,-60],[0,-112],[0,-115],[0,-32],[0,-124],[0,-143],[0,-24],[0,-13],[0,-15],[16,0],[10,1],[10,0],[60,6],[38,2],[72,4],[1,1],[0,-1],[17,-6],[6,-3],[1,0]],[[10628,52972],[0,-59],[0,-238],[0,-151],[0,-326],[0,-72],[0,-60],[0,-279],[0,-55],[0,-155],[0,-116],[0,-286],[0,-180],[0,-208],[0,-1007],[0,-139],[0,-70],[0,-95],[0,-43],[0,-95],[0,-349],[0,-108],[0,-138],[0,-593],[0,-171],[0,-57],[0,-53],[0,-24],[0,-177],[0,-40],[0,-26],[0,-243],[0,-130],[0,-135],[0,-43],[0,-111],[0,-1454]],[[10628,45486],[-1,0],[-58,4],[0,215],[-113,-6],[-28,-1],[-12,-1],[-1,0],[-6,0],[0,20],[0,408],[-49,4],[-169,-21],[-30,-4],[-6,-1],[-12,0],[-3,0],[-7,-1],[-2,0],[-9,0],[-1,1],[-2,2],[-49,12],[-14,4],[0,-6],[-14,0],[-3,1],[-1,0],[-12,0],[-2,0],[-3,-36],[-12,-138],[-14,-167],[-1,-11],[-4,-49],[-113,-1332],[-11,-118],[-1,-13],[-42,-498],[1,-108],[0,-101],[0,-18]],[[9824,43527],[-1,-3],[-3,1],[-3,6],[-1,1],[-10,8],[-1,5],[-9,38],[0,4],[-1,8],[0,19],[0,18],[-3,14],[0,2],[-4,17],[-5,17],[-5,7],[-5,3],[-7,-1],[-8,-4],[-6,-9],[-2,-2],[-8,-4],[-7,-3],[-7,1],[-5,3],[-3,1],[0,6],[0,8],[0,3],[1,2],[1,0],[1,7],[1,1],[1,3],[1,5],[3,3],[1,0],[0,-7],[3,1],[2,2],[2,2],[1,-3],[1,-3],[2,-1],[2,6],[2,5],[3,1],[2,-1],[2,0],[1,8],[2,0],[1,-4],[2,-2],[2,4],[4,5],[1,-3],[3,-4],[1,2],[2,3],[4,-4],[5,-1],[1,0],[5,-6],[1,-13],[3,-9],[1,29],[1,10],[1,10],[2,5],[1,6],[-2,12],[-2,2],[-2,2],[-1,29],[-1,18],[-1,-2],[-2,10],[0,7],[-2,11],[-3,25],[-3,30],[-1,8],[0,3],[-1,13],[-2,4],[-1,9],[-2,12],[0,8],[-2,13],[-1,5],[-1,10],[-1,14],[-1,10],[0,23],[-2,9],[-1,2],[1,5],[1,3],[3,9],[-1,9],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[-1,1],[-1,3],[0,4],[-1,10],[-1,18],[-2,6],[0,3],[-1,6],[-2,11],[-4,26],[-1,8],[-1,11],[-1,5],[-2,7],[-1,12],[-1,3],[-2,2],[-1,5],[-1,1],[-2,29],[1,6],[1,6],[3,39],[-4,28],[-5,-21],[-1,-2],[0,-27],[-2,-2],[-4,-3],[-1,-4],[-1,4],[-1,9],[-1,21],[2,89],[2,10],[2,4],[3,4],[2,-5],[2,-3],[2,36],[2,41],[0,9],[2,25],[0,24],[1,77],[0,8],[-1,34],[-4,12],[-1,-31],[1,-40],[0,-29],[0,-14],[-2,-21],[-2,-21],[-3,-24],[-1,-9],[-2,-1],[-2,-1],[-2,-2],[-1,4],[-1,3],[-5,0],[-2,6],[-1,13],[0,2],[-3,4],[-1,-7],[-1,-2],[-1,4],[-1,6],[-1,-1],[-1,-2],[-1,2],[-1,2],[-2,-6],[-1,-3],[-1,-1],[-2,5],[-1,4],[-1,-7],[-2,-5],[-1,-7],[0,3],[-1,4],[-3,1],[-1,-2],[-1,-6],[0,-10],[0,-12],[1,-12],[1,-15],[2,-11],[1,-9],[1,-10],[-1,-12],[-1,9],[-3,7],[-1,-5],[-1,1],[-6,-8],[-8,-11],[-5,38],[-2,17],[0,9],[-2,14],[-1,5],[-1,7],[-1,4],[-1,8],[-2,11],[0,5],[-1,9],[-1,10],[1,7],[2,-1],[1,-3],[1,1],[1,1],[1,-6],[1,-6],[0,12],[1,11],[-3,29],[0,4],[-1,5],[-1,1],[-2,1],[-1,-2],[0,-5],[-5,-34],[0,-12],[-1,-14],[0,-8],[-1,-2],[-1,2],[-1,-2],[-1,-7],[-1,-4],[-1,-11],[-1,-7],[0,-2],[-1,-11],[0,-12],[-2,-2],[-1,5],[0,5],[-1,2],[-2,4],[-1,1],[-1,-2],[-1,0],[-1,4],[-2,0],[-4,50],[-1,6],[-3,14],[-2,10],[-18,71],[0,18],[4,-9],[1,-8],[1,-4],[2,-9],[11,-50],[1,3],[-1,7],[-1,9],[0,6],[-1,5],[-1,8],[-1,13],[-3,42],[0,14],[0,26],[0,18],[0,10],[0,45],[-1,14],[-3,7],[-2,14],[-3,14],[-2,76],[0,10],[0,10],[-5,14],[-2,-11],[-1,-2],[0,2],[-1,10],[-1,8],[-1,2],[-1,-3],[-2,-2],[-1,0],[-2,11],[0,13],[0,20],[1,3],[0,12],[-3,5],[-1,3],[-1,4],[-1,3],[-1,4],[-2,10],[-2,0],[-1,2],[4,52],[-1,17],[-4,-7],[-1,0],[-1,-34],[0,-26],[0,-16],[0,-18],[-1,-10],[-1,-10],[-1,-6],[-5,23],[0,22],[0,12],[1,11],[0,11],[0,15],[0,12],[0,5],[-3,2],[-1,-20],[1,-24],[-1,-34],[-6,2],[-1,25],[1,13],[-6,15],[-2,3],[-1,-22],[0,-7],[1,-26],[0,-20],[-2,-1],[-1,-2],[-3,-2],[-2,8],[-2,6],[-3,36],[3,47],[2,38],[2,28],[1,38],[2,32],[2,37],[2,44],[1,24],[-2,22],[-1,10],[0,8],[-2,57],[1,14],[3,39],[1,10],[0,11],[1,62],[3,-6],[1,-2],[1,1],[1,0],[1,-1],[5,4],[3,7],[0,10],[-2,17],[-4,-2],[-1,2],[-2,9],[0,11],[0,4],[1,8],[2,30],[1,35],[1,18],[3,42],[0,38],[2,14],[1,6],[2,4],[2,-3],[1,-2],[2,-7],[1,7],[1,0],[2,2],[0,9],[1,8],[1,3],[1,0],[-1,19],[-1,-2],[-2,0],[-1,21],[-2,-7],[-1,4],[-1,-1],[-1,16],[3,44],[0,4],[2,21],[3,87],[-1,9],[-1,3],[-2,-25],[-1,-5],[-7,-67],[-4,11],[-3,48],[-1,6],[0,62],[1,10],[2,9],[1,8],[0,20],[0,17],[0,20],[3,0],[0,58],[-1,16],[-1,11],[0,24],[1,17],[1,14],[1,-8],[0,-4],[0,-18],[3,6],[-1,15],[0,18],[0,8],[1,21],[0,56],[2,34],[-1,51],[-2,5],[-1,8],[0,12],[1,14],[1,10],[1,26],[1,7],[1,16],[0,18],[0,28],[-6,32],[-1,-7],[-2,-2],[-2,-3],[-1,-4],[-1,-6],[-2,-29],[-1,-26],[-1,-41],[-1,-13],[0,-20],[0,-21],[-1,-15],[0,-12],[-1,-19],[-1,-8],[-2,-10],[-1,-14],[0,-29],[1,-16],[0,-14],[0,-22],[-1,-23],[-1,-12],[-1,1],[-1,0],[-1,-3],[-2,2],[-2,3],[-2,1],[-2,-7],[-2,-17],[-1,-6],[-1,5],[-2,-2],[-1,-6],[0,-22],[0,-20],[-4,0],[-1,-7],[-2,-1],[-2,-9],[-1,6],[-1,-1],[-4,-21],[-1,-9],[-2,-15],[0,-15],[-1,-17],[-1,-11],[-1,-9],[0,-13],[-1,-5],[-1,-12],[-1,-10],[0,-22],[1,-19],[-2,-47],[-1,-15],[-2,-25],[-1,-13],[-2,-22],[-5,-118],[-2,-16],[-5,-33],[0,-26],[0,-18],[-2,-25],[-6,-17],[-5,-41],[0,-10],[1,2],[2,3],[-1,-19],[-1,-18],[-2,-3],[-2,-4],[-1,0],[-1,-1],[1,15],[-1,7],[-1,-8],[-1,-9],[0,-27],[-2,-21],[1,21],[0,12],[-1,-1],[-2,-11],[1,-25],[0,-17],[-1,-25],[-2,-29],[-3,-30],[-3,-34],[-1,-5],[-1,27],[-2,1],[0,1],[-1,-7],[-3,-5],[0,-34],[2,-19],[-2,-8],[-4,-21],[-2,-3],[-2,-14],[-1,-17],[-1,-2],[-1,-6],[-1,-4],[-2,-1],[-2,-2],[-1,-7],[-1,-1],[-1,-4],[-1,5],[-1,0],[-2,1],[0,9],[0,15],[1,12],[2,16],[-1,16],[-2,-10],[-1,-13],[-1,-4],[-4,-2],[-3,11],[-2,8],[-1,8],[-2,12],[-2,29],[-3,23],[-1,14],[-2,10],[-2,14],[-1,4],[-2,0],[-2,28],[1,9],[0,20],[2,-22],[1,-2],[0,11],[0,12],[-2,18],[-2,-5],[-3,-10],[-4,19],[-3,4],[-2,8],[-2,3],[-2,13],[0,23],[1,21],[-1,6],[0,16],[1,16],[6,-16],[8,17],[4,8],[3,7],[2,4],[4,12],[3,13],[2,1],[1,-9],[1,-2],[2,2],[4,5],[4,8],[2,10],[2,1],[0,10],[-4,4],[-8,-18],[-1,2],[0,-8],[-1,2],[-1,11],[-1,3],[-1,0],[-2,-1],[-2,-11],[-4,-11],[-5,-3],[-3,3],[-2,-11],[-3,-5],[-3,18],[-4,-11],[-2,4],[-1,6],[-1,5],[-8,41],[-6,56],[0,16],[1,10],[1,12],[1,16],[0,19],[-1,4],[-1,-3],[-1,5],[0,15],[0,15],[-1,-6],[0,-22],[0,-17],[-3,-43],[-1,1],[-1,2],[-1,8],[-3,20],[-1,2],[-8,16],[-4,8],[-1,1],[-1,1],[-1,3],[0,1],[-2,34],[-1,4],[-1,1],[-1,-2],[-3,12],[-1,6],[-8,18],[-2,2],[-3,6],[-4,6],[0,16],[-1,7],[0,-13],[-1,-8],[-1,-4],[-1,-7],[-2,-5],[-1,-3],[-1,-1],[-6,-11],[-5,-30],[-4,-24],[-2,-12],[-2,-8],[-4,-24],[-5,-12],[-1,-4],[-2,0],[-1,18],[-1,11],[-1,0],[-2,-13],[-2,3],[-2,45],[0,3],[-1,-2],[-1,-6],[-2,-1],[-2,5],[-1,3],[-1,-21],[-2,3],[-1,2],[-1,12],[-2,24],[-1,11],[1,28],[1,5],[1,7],[1,6],[1,4],[1,9],[1,6],[1,9],[0,1],[2,17],[3,48],[1,6],[1,1],[1,1],[0,-14],[0,-14],[0,-24],[0,-14],[1,-11],[1,6],[1,11],[1,12],[1,10],[1,6],[1,14],[1,13],[1,5],[2,8],[2,2],[1,2],[2,5],[2,8],[-1,15],[-4,-1],[-2,0],[1,11],[1,6],[1,8],[1,8],[1,7],[1,6],[1,5],[1,0],[1,6],[2,7],[1,3],[1,6],[2,6],[2,12],[2,4],[0,13],[1,6],[0,14],[4,37],[2,-4],[3,4],[0,18],[-1,14],[0,16],[-1,15],[1,9],[0,10],[1,8],[1,10],[1,3],[1,3],[0,4],[1,10],[1,11],[-1,10],[0,12],[5,31],[6,32],[4,70],[0,68],[4,60],[2,64],[1,9],[1,0],[1,4],[2,19],[2,11],[1,7],[2,16],[1,11],[0,11],[3,11],[0,15],[1,12],[1,3],[1,5],[0,15],[-1,3],[-1,1],[-1,7],[-1,13],[-1,14],[-1,13],[-2,-1],[-1,-7],[-2,-5],[-1,-17],[-1,-3],[-1,-5],[-1,-14],[-1,-18],[-2,-19],[-2,-14],[-1,1],[-1,-12],[-1,1],[-1,-2],[-1,-2],[-2,-8],[-1,-8],[-1,-6],[-1,-6],[-1,-18],[-1,-1],[-2,-1],[-1,-4],[-2,-9],[-1,-8],[-2,-10],[-1,-7],[-1,-4],[0,-5],[-2,-5],[-1,-4],[-7,-10],[-2,-14],[-1,-7],[-3,-14],[-4,-17],[-1,-1],[-14,-10],[-2,6],[0,11],[2,23],[4,9],[0,3],[5,15],[2,8],[2,19],[1,10],[1,8],[2,5],[2,7],[1,3],[2,16],[1,26],[-1,5],[-5,-10],[1,14],[3,21],[3,13],[1,14],[-1,7],[-2,-19],[-3,4],[-6,-41],[-11,-66],[-4,-22],[0,19],[2,31],[2,16],[1,8],[1,4],[5,20],[0,19],[-3,0],[-2,0],[-2,0],[-1,-14],[-2,1],[0,1],[-2,1],[0,8],[1,9],[2,9],[1,5],[4,35],[4,56],[0,31],[3,15],[0,20],[-1,2],[0,-6],[-2,0],[0,-4],[-1,-2],[-5,-25],[-2,-15],[-1,-8],[-2,-20],[-2,-15],[-1,-18],[0,-17],[1,-6],[0,-12],[-1,2],[-2,-16],[0,-10],[-1,-8],[-1,-3],[-1,-11],[-1,-16],[-4,-86],[1,-22],[-1,-16],[-1,-2],[-1,-2],[-1,-6],[-2,-3],[0,24],[-1,9],[-1,-5],[-7,-21],[-4,-29],[-1,9],[2,35],[2,50],[0,55],[2,13],[1,11],[0,16],[1,13],[1,6],[2,0],[1,4],[1,6],[2,9],[1,45],[-1,2],[-1,2],[-2,-26],[-2,4],[0,23],[3,12],[0,2],[1,3],[6,26],[2,36],[1,10],[2,15],[2,23],[0,7],[2,10],[3,22],[-2,16],[-5,0],[-2,-27],[-4,-21],[-3,-14],[-3,-18],[-2,-7],[-9,-57],[-5,-36],[-2,-35],[-4,-8],[-1,-8],[-3,-15],[-6,-28],[-3,-5],[-1,-11],[-3,-11],[-1,-5],[-2,-9],[-4,-16],[-1,-10],[-4,-35],[-13,-36],[-3,15],[-3,-8],[-1,-1],[-4,0],[-5,-9],[-1,-12],[-1,9],[-1,11],[-1,15],[0,13],[-1,25],[-1,21],[0,18],[0,16],[1,14],[5,-3],[3,0],[1,4],[0,15],[0,7],[-1,4],[0,14],[0,10],[2,7],[2,-1],[1,5],[4,32],[0,30],[1,7],[0,4],[4,28],[0,12],[3,22],[5,8],[0,20],[1,10],[0,10],[2,15],[2,21],[3,13],[2,8],[1,2],[2,4],[6,-39],[7,-2],[1,26],[0,17],[-3,7],[-5,6],[-1,10],[2,21],[4,31],[0,12],[2,10],[2,6],[0,17],[0,2],[-1,8],[-1,-3],[1,47],[1,-5],[1,-6],[3,-9],[1,-6],[2,2],[1,-7],[1,-7],[3,-3],[2,2],[1,-2],[1,2],[0,3],[0,12],[-1,9],[-1,-3],[-1,-3],[-3,0],[-1,2],[-1,15],[-1,10],[-1,6],[-1,7],[-1,4],[-1,4],[0,3],[-2,4],[0,21],[1,8],[1,12],[0,16],[1,16],[-1,15],[0,15],[1,16],[0,15],[1,22],[0,24],[-1,7],[-1,-6],[-1,7],[-2,-1],[-1,1],[1,-24],[-1,-14],[0,-17],[-1,-20],[-1,-21],[-1,-15],[-1,-11],[-2,-24],[-1,-14],[-1,-14],[-1,-5],[0,-8],[-2,-16],[-1,-22],[-1,-10],[-2,-28],[-2,-28],[-1,-15],[-1,-1],[-1,-12],[-1,5],[0,12],[1,16],[0,11],[1,7],[3,13],[-1,11],[-2,-2],[-1,-4],[-1,3],[-1,-13],[-1,-13],[-1,-12],[-1,-8],[0,-13],[-1,-9],[-1,-13],[0,-8],[0,-16],[-1,0],[-1,1],[-1,8],[0,15],[-1,16],[-1,0],[-1,-10],[-1,7],[-1,7],[-1,4],[-2,12],[-1,7],[0,14],[0,17],[1,16],[3,3],[1,11],[1,12],[1,15],[0,15],[0,9],[-1,-10],[-1,1],[-1,-5],[-1,-8],[-1,-9],[-1,-5],[-1,-3],[-1,-10],[-2,-8],[-1,-11],[-3,1],[0,-9],[0,-14],[-1,-23],[0,-10],[0,-18],[0,-20],[-1,-28],[-2,-17],[-1,-3],[-2,-12],[-2,-4],[-2,3],[-3,-2],[-3,-1],[-1,0],[-2,-1],[-1,2],[-2,11],[-1,12],[-1,12],[0,17],[0,17],[1,18],[0,18],[0,18],[0,21],[-1,19],[1,26],[1,11],[0,11],[1,11],[1,14],[2,7],[1,10],[1,6],[1,12],[1,3],[0,7],[2,13],[1,18],[0,7],[-1,6],[-2,-12],[0,-4],[-1,-3],[0,-11],[-1,-9],[-1,-9],[-1,-8],[-2,1],[-1,5],[-2,-6],[-1,2],[-1,-6],[-1,-7],[0,-16],[-1,-10],[-1,-19],[-1,-20],[0,-15],[0,-16],[0,-14],[0,-17],[0,-13],[-2,-5],[-1,-2],[-5,-64],[0,-19],[-1,-7],[-1,-5],[-1,7],[-2,-3],[-4,-14],[0,-19],[0,-7],[-3,-22],[-1,-10],[-1,-25],[-1,-14],[-1,-15],[0,-10],[-1,-4],[-1,-5],[0,38],[2,20],[-1,12],[-1,-6],[-4,-23],[-2,-14],[0,-6],[1,-6],[1,-9],[1,-16],[-1,-1],[-4,-2],[-3,-10],[-2,-9],[-2,-21],[1,-13],[-2,-7],[-2,-8],[-1,-10],[-1,-3],[-1,1],[-1,16],[1,14],[1,19],[-1,15],[-1,7],[-1,6],[-1,8],[0,12],[0,1],[-2,-5],[-2,3],[-1,5],[-2,-1],[-1,-5],[-2,0],[-2,-5],[-1,8],[-1,5],[-2,-2],[-1,3],[-1,0],[-2,-5],[0,4],[0,19],[0,14],[-1,1],[-1,-10],[-1,-1],[-2,-7],[0,-13],[-1,-22],[-1,-12],[-2,-9],[-1,-6],[-8,26],[-4,36],[2,52],[0,35],[-7,74],[-4,52],[0,29],[2,-1],[1,-2],[2,-4],[2,-7],[1,-5],[2,-12],[0,-13],[0,-12],[0,-13],[2,-5],[1,0],[1,1],[2,-22],[1,-15],[1,-1],[1,-7],[0,-8],[1,1],[0,17],[0,9],[1,13],[0,17],[-1,17],[-1,14],[-1,-9],[2,76],[1,4],[1,4],[1,14],[1,14],[1,14],[2,11],[1,2],[1,-2],[1,-2],[1,-12],[2,-10],[1,-11],[-1,-11],[0,-22],[-1,-14],[0,-12],[-1,-18],[1,-9],[1,-16],[1,-12],[1,2],[1,0],[0,9],[-1,10],[0,25],[2,16],[1,11],[3,11],[2,6],[2,3],[1,0],[1,-7],[1,-6],[1,-5],[1,-6],[-1,-10],[-1,-14],[-1,-20],[1,-6],[1,-9],[0,12],[1,12],[1,3],[1,0],[1,9],[1,0],[2,-20],[1,10],[-3,71],[-4,24],[-2,10],[-2,14],[-3,14],[-2,10],[0,19],[1,10],[2,3],[1,4],[1,12],[1,4],[1,0],[1,-13],[1,-9],[1,3],[1,7],[0,12],[2,-2],[-1,-12],[1,-9],[2,3],[1,-2],[1,-5],[3,0],[4,-3],[1,7],[1,-6],[1,-2],[0,-7],[1,-1],[-1,-41],[2,-6],[2,-26],[1,0],[-1,19],[-1,16],[-1,10],[0,11],[1,12],[2,58],[2,-2],[2,6],[6,13],[3,3],[2,-6],[1,4],[2,9],[2,8],[1,-2],[1,-9],[2,4],[0,16],[2,1],[1,-4],[1,-1],[3,13],[2,21],[3,17],[3,15],[2,15],[1,12],[1,9],[3,4],[1,2],[3,5],[3,8],[1,-2],[2,2],[1,-6],[1,8],[1,10],[3,4],[2,4],[1,2],[3,9],[2,0],[0,7],[0,11],[-2,1],[-8,-12],[-3,-2],[-1,-6],[-1,-5],[-1,4],[-1,4],[-1,-2],[-1,13],[1,11],[0,20],[1,15],[1,17],[0,14],[-1,9],[1,16],[3,3],[1,4],[1,0],[3,9],[2,0],[2,6],[2,6],[2,-1],[3,2],[1,-20],[2,-6],[4,-2],[1,-9],[1,2],[1,-3],[3,-5],[3,-8],[3,-19],[2,-5],[2,-4],[0,-4],[1,-8],[2,-12],[2,-8],[2,-10],[3,-6],[2,21],[-2,21],[-2,8],[-1,9],[-1,1],[-3,-2],[-4,20],[-1,5],[-1,3],[-2,6],[-1,6],[-1,10],[0,13],[-2,8],[-2,-1],[-2,3],[-1,6],[0,14],[-2,11],[-1,10],[-1,2],[-1,7],[-1,5],[-2,8],[-1,9],[0,16],[-1,7],[-1,2],[-2,6],[-1,8],[0,14],[-1,11],[-1,2],[-1,-4],[-2,0],[-1,-3],[-1,-5],[-1,-7],[0,-10],[1,-2],[1,-6],[0,-13],[0,-9],[-2,-2],[-1,-3],[-2,1],[0,13],[1,8],[0,6],[1,9],[-1,21],[0,10],[0,8],[4,17],[-2,31],[-2,-6],[-1,18],[-1,-3],[-1,-27],[-1,-14],[-3,-36],[-3,-33],[-2,-20],[0,-18],[0,-23],[-1,-9],[-2,-15],[-1,-12],[-1,-10],[0,-14],[0,-22],[-1,-11],[-1,2],[-1,5],[-1,-5],[-1,-6],[-1,-9],[-1,-7],[0,-14],[0,-10],[-2,-4],[-1,-1],[-1,-4],[-1,-10],[-1,-10],[-2,-4],[-1,-2],[-1,-5],[-1,-12],[-1,1],[-1,7],[-1,0],[-2,-5],[-2,-8],[-2,-8],[-2,-7],[-1,-5],[-1,-2],[-2,2],[0,3],[-2,5],[-1,1],[-1,12],[0,15],[1,4],[1,1],[1,6],[1,9],[2,27],[0,3],[0,9],[1,4],[1,1],[1,9],[1,7],[3,15],[0,10],[-1,5],[-4,-2],[-1,0],[-1,-6],[-1,-10],[-1,-10],[-1,0],[-1,-2],[-1,-14],[-2,-13],[-2,-24],[-1,-7],[-1,-10],[-1,-6],[-1,-3],[-1,2],[-1,4],[-1,-14],[1,-12],[-1,-10],[0,-5],[-1,-5],[-1,2],[-2,-7],[-1,1],[-1,6],[-1,4],[-1,-1],[-2,-3],[-1,3],[-1,7],[-2,-2],[-2,-1],[-1,-1],[-2,-5],[-1,-1],[-1,-1],[-3,-6],[-1,-5],[-1,-2],[1,16],[0,22],[-2,3],[0,3],[-2,15],[-1,4],[-1,9],[0,13],[0,15],[1,4],[1,5],[1,5],[1,40],[-2,18],[0,5],[-1,1],[0,29],[1,-1],[1,-4],[1,-5],[1,0],[1,-12],[1,-1],[1,2],[1,5],[1,2],[5,5],[1,13],[0,16],[-1,15],[-3,7],[-1,-1],[0,-15],[-1,-2],[-1,-10],[-1,-9],[-1,-5],[-1,3],[0,6],[-1,6],[-1,0],[-1,0],[-2,8],[-2,2],[-1,-4],[-1,-4],[-2,-5],[-1,-5],[-1,-12],[-1,-17],[-1,-10],[-1,-8],[-1,-9],[0,-14],[-1,-14],[-1,-16],[0,-17],[-1,-16],[0,-16],[-1,-16],[-1,-6],[-2,0],[-1,1],[-1,7],[-1,9],[1,16],[1,8],[0,27],[0,41],[0,15],[0,6],[2,17],[1,8],[1,23],[1,-4],[0,-33],[2,-10],[1,35],[1,20],[-2,38],[-2,55],[-3,58],[-3,0],[-1,-3],[0,-33],[0,-13],[-2,-7],[-1,-10],[0,-9],[-1,-4],[-1,2],[-1,0],[-1,-22],[0,-16],[-1,-13],[-3,14],[-2,25],[-3,56],[-1,29],[0,10],[2,-2],[0,7],[-1,47],[-1,2],[-4,14],[-5,34],[0,13],[2,5],[0,9],[1,9],[0,9],[-1,22],[-1,36],[0,28],[-2,26],[-2,4],[-2,28],[0,5],[1,12],[1,9],[-1,10],[-1,16],[0,9],[1,-5],[1,3],[1,-2],[1,2],[2,-15],[1,-20],[0,-13],[1,-15],[0,-21],[1,-9],[1,-11],[1,-9],[1,-4],[2,-13],[1,-9],[3,4],[1,1],[6,7],[0,9],[1,16],[2,12],[0,-19],[0,-20],[1,-7],[1,0],[1,-2],[1,-8],[1,-13],[2,-6],[2,0],[1,4],[1,-1],[2,-13],[1,-4],[2,12],[1,11],[1,6],[0,17],[2,12],[4,-9],[2,0],[1,1],[2,21],[0,30],[-3,8],[-5,-17],[-3,-3],[-7,59],[-7,15],[-1,-4],[-1,-5],[-2,-5],[-2,-17],[-1,-2],[-7,6],[0,24],[-2,35],[-2,5],[-1,12],[-3,14],[0,43],[0,3],[1,0],[2,-20],[3,35],[1,65],[1,62],[1,14],[1,19],[0,35],[1,14],[0,9],[1,10],[0,18],[1,16],[1,9],[1,-2],[1,-8],[1,-8],[1,-14],[1,-16],[1,-5],[1,0],[0,15],[1,16],[1,6],[1,-12],[1,-5],[1,-8],[1,-8],[1,-7],[1,-9],[2,-8],[0,6],[0,11],[1,8],[9,-33],[4,-24],[4,-30],[9,-32],[2,-7],[6,-19],[2,4],[1,-1],[1,6],[-2,12],[-1,9],[-1,-2],[-1,-2],[-1,5],[-1,11],[-2,7],[-3,10],[-2,8],[-2,12],[-2,6],[-3,10],[-2,13],[-2,23],[-1,14],[-2,12],[-1,7],[-3,2],[-1,9],[1,3],[1,1],[1,-2],[4,10],[0,2],[1,7],[-2,8],[-3,1],[-2,5],[-1,4],[-2,9],[-3,11],[-3,5],[-3,4],[-5,8],[-2,1],[-1,11],[-1,22],[0,23],[-1,15],[0,16],[1,13],[1,7],[1,7],[2,9],[1,8],[1,10],[1,8],[1,2],[2,10],[0,9],[3,4],[2,-1],[2,4],[0,3],[2,-5],[4,-6],[1,-4],[0,-11],[1,-12],[2,1],[2,-3],[1,2],[1,1],[1,5],[1,8],[0,8],[1,3],[1,2],[2,1],[4,-6],[2,-6],[1,-8],[2,-6],[1,4],[0,4],[3,1],[2,-2],[1,-4],[1,-3],[1,4],[2,3],[4,10],[2,6],[1,2],[1,0],[2,3],[1,6],[1,4],[0,1],[1,0],[1,0],[1,0],[4,1],[1,-1],[1,6],[1,6],[0,6],[1,-1],[1,-6],[1,-9],[0,-4],[1,-1],[1,-2],[0,-2],[1,2],[1,1],[1,6],[1,0],[0,-3],[1,-5],[0,-4],[1,-6],[1,-5],[1,-1],[1,-2],[10,23],[1,1],[0,1],[1,-1],[1,-3],[1,-1],[1,-1],[1,0],[1,4],[0,2],[1,2],[1,2],[2,-2],[1,-1],[2,20],[0,9],[-1,8],[-2,0],[-1,0],[-1,3],[0,5],[0,44],[-5,76],[-7,59],[-1,7],[-1,9],[-2,8],[-1,4],[0,4],[-2,-1],[-2,-6],[0,-7],[-1,-6],[0,1],[0,-13],[-1,-8],[0,-9],[0,-3],[1,-14],[-1,1],[-1,-4],[-1,0],[-1,-7],[-1,2],[-1,3],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,3],[-1,-2],[-1,0],[-1,1],[-2,6],[-1,14],[-1,8],[0,7],[-1,6],[-1,13],[-1,3],[-1,-2],[-2,3],[-2,-2],[-1,-5],[-2,-2],[-3,1],[-2,-2],[-1,-5],[-2,-7],[-3,-3],[-1,-5],[-2,-16],[-2,-12],[-3,0],[-2,1],[-1,-1],[-3,-1],[-2,1],[-2,-2],[-3,-1],[-2,-9],[-3,-6],[-1,19],[1,9],[0,15],[1,26],[0,16],[-2,3],[-1,0],[0,14],[-1,13],[-1,5],[-1,-1],[-1,1],[-1,-8],[-1,-11],[2,-14],[1,-16],[1,-6],[-1,-10],[-2,-9],[0,-14],[-2,-17],[-1,-6],[-2,-2],[-1,-9],[-2,-21],[-2,-10],[-1,-10],[-2,-11],[0,-14],[-1,-12],[-1,-15],[-1,-12],[-2,-19],[-1,-12],[0,-8],[-1,-18],[0,-21],[-1,-14],[-1,-9],[0,-11],[-2,-15],[-1,-14],[0,-15],[-1,-9],[-1,-12],[0,-16],[-2,-7],[-1,-1],[-3,2],[-1,-9],[-1,-10],[-1,-7],[-1,-8],[-1,-7],[-3,-11],[-1,0],[-2,-5],[-1,-4],[-1,-2],[-1,1],[-1,7],[-1,9],[-1,19],[0,26],[1,25],[-1,16],[-1,13],[-1,2],[0,4],[-2,-10],[0,-11],[-1,-29],[-2,-27],[1,-14],[0,-12],[1,-15],[-1,-23],[1,-7],[0,12],[1,13],[0,6],[2,7],[1,-7],[-1,-12],[0,-11],[-2,-10],[0,-17],[0,-20],[-2,-17],[-1,-7],[-1,-6],[-2,-22],[-2,-26],[-2,-30],[-2,-20],[-1,-8],[-2,-8],[-1,-30],[-2,-13],[0,-16],[0,-13],[-1,-7],[0,-14],[0,-22],[-2,-29],[-2,-14],[-1,-17],[-1,-9],[-1,-10],[-2,-13],[-1,-5],[-2,-13],[-2,-14],[-2,-16],[-1,-12],[-2,-12],[-2,-12],[-2,-7],[-2,-4],[-2,-5],[-2,-9],[-2,-9],[-1,5],[-1,13],[-1,10],[-2,6],[-1,2],[-2,-16],[-5,4],[-5,11],[-3,10],[0,19],[6,-5],[3,16],[-1,20],[-2,16],[1,11],[1,6],[2,-4],[3,5],[6,30],[4,3],[1,22],[-2,18],[-2,9],[-1,4],[-1,5],[0,11],[-1,14],[2,14],[1,7],[0,13],[1,8],[0,17],[-2,18],[-1,4],[-3,-2],[-1,13],[-2,18],[-3,-12],[-4,-30],[-3,-5],[-4,23],[-6,28],[-7,21],[-3,-38],[-1,-25],[-2,-31],[-3,-36],[-1,-22],[-2,-18],[-1,-5],[-3,7],[0,47],[-1,14],[-3,-23],[2,-81],[3,-18],[1,12],[1,-8],[1,-14],[3,-85],[-2,-30],[-3,9],[-3,-9],[-2,-36],[-3,2],[-2,20],[2,21],[-2,29],[-1,6],[-1,-6],[-1,-19],[-1,-4],[-1,14],[-3,34],[-1,49],[-1,19],[2,14],[-1,34],[1,19],[-1,31],[1,27],[3,32],[-3,56],[-2,4],[-1,2],[-1,-14],[0,-14],[0,-23],[0,-6],[1,-27],[-4,-35],[-2,-12],[-1,-24],[-2,-10],[-1,-2],[-2,54],[-1,60],[-2,-12],[0,-24],[-1,0],[-1,-1],[1,-50],[3,-22],[0,-13],[-2,0],[-1,-39],[1,-39],[3,-42],[1,-11],[3,8],[0,-2],[0,-25],[0,-40],[1,-25],[-1,-18],[0,-29],[0,-14],[-2,48],[-1,-2],[-2,-19],[1,-17],[-3,-20],[-1,1],[-2,30],[-2,4],[-3,3],[-3,31],[-2,8],[-1,-12],[3,-50],[1,-17],[4,-14],[0,-40],[-3,3],[-1,16],[-3,-8],[-1,-55],[-4,-40],[-3,-11],[-1,-5],[-2,-59],[-3,-16],[-1,10],[1,14],[3,33],[-1,19],[0,1],[-1,2],[-4,14],[0,9],[2,26],[1,15],[-1,15],[-1,9],[-1,11],[-2,8],[-1,-19],[-1,-15],[-2,-40],[-4,0],[-1,20],[-5,-1],[-1,-7],[-1,8],[1,23],[2,47],[2,8],[10,39],[4,12],[2,52],[-1,5],[-4,-21],[-2,-22],[-3,1],[-8,-11],[-1,-33],[-2,2],[0,31],[1,8],[4,54],[2,33],[3,12],[3,25],[2,38],[2,-6],[1,20],[0,35],[1,22],[5,3],[1,12],[0,12],[-2,12],[-5,-13],[-2,-2],[-3,-32],[-3,-46],[-3,-14],[0,-23],[-4,-18],[-1,-36],[-2,-11],[-1,25],[-4,55],[1,22],[2,3],[1,15],[1,112],[1,25],[1,15],[1,11],[1,18],[3,10],[2,-5],[2,-13],[3,-12],[2,8],[0,17],[0,13],[-3,39],[-1,9],[-2,9],[-1,-10],[0,-24],[-4,-4],[-5,-20],[-1,-33],[-2,-23],[-1,-13],[-3,19],[-1,18],[-1,27],[1,12],[-1,35],[-2,-17],[-1,13],[0,-10],[0,-39],[2,-5],[0,-14],[2,-25],[3,-29],[-2,-25],[-2,-79],[-4,-77],[-1,-35],[0,-56],[-1,-32],[0,-30],[2,-4],[0,-14],[2,-26],[-3,-24],[-1,29],[-1,-8],[-1,-49],[0,-20],[-1,-15],[-1,3],[-1,3],[-1,12],[-4,24],[-2,23],[1,23],[1,39],[2,20],[-1,18],[2,18],[0,44],[-1,25],[1,35],[-2,39],[0,50],[1,18],[-1,27],[-2,-4],[0,7],[1,5],[2,8],[0,17],[-1,0],[0,14],[1,11],[2,0],[2,26],[0,52],[0,31],[0,9],[-3,3],[-2,0],[0,14],[2,5],[3,1],[1,-2],[2,2],[0,23],[0,14],[-2,5],[-1,6],[1,30],[0,40],[-2,38],[-2,10],[4,34],[1,6],[7,32],[3,-3],[-2,20],[-4,2],[-4,48],[1,59],[-1,14],[-3,25],[1,41],[-3,47],[-1,9],[-3,75],[6,33],[4,10],[3,-18],[1,0],[0,21],[0,41],[-5,15],[-1,-10],[-3,-7],[-3,-14],[-3,-3],[-3,-17],[-3,-80],[4,-65],[-1,-60],[1,-25],[1,-40],[-1,-51],[-3,-33],[-1,-26],[2,-31],[-6,-72],[0,-29],[-5,-68],[2,-33],[3,-15],[-1,-14],[-1,-10],[-6,-26],[-1,-2],[-6,13],[-1,8],[-1,4],[-3,48],[-1,-8],[-1,4],[0,-38],[-1,-6],[-1,13],[-1,-20],[0,-34],[2,-10],[4,-7],[0,-16],[2,-6],[1,8],[0,7],[2,-7],[0,-6],[1,6],[1,17],[3,12],[3,9],[1,15],[1,-14],[1,-19],[0,-21],[-1,-37],[-3,-67],[-2,-41],[-1,-14],[-3,-27],[-6,-13],[-6,5],[-2,-2],[2,-52],[3,0],[4,6],[4,20],[5,20],[2,1],[-1,-36],[4,-4],[2,-8],[-1,-54],[-3,-66],[-1,-29],[1,-14],[2,-51],[-1,-47],[-1,-14],[-4,5],[-2,1],[-1,1],[-1,-15],[0,-9],[1,-21],[7,-14],[4,-5],[1,-13],[1,-25],[-1,-10],[-4,-6],[-3,13],[0,-20],[2,-14],[2,4],[1,13],[2,-14],[-2,-8],[0,-33],[0,-17],[-1,-24],[-6,-21],[-1,-9],[1,27],[-2,-10],[-4,-18],[-4,-13],[-3,-2],[-1,20],[2,31],[0,29],[1,-4],[1,26],[-3,7],[-1,-44],[-1,21],[1,23],[-1,31],[2,22],[2,3],[-1,25],[0,21],[1,25],[1,20],[-3,4],[-2,-18],[-2,-3],[-1,7],[-2,3],[-1,-8],[0,-14],[-2,0],[0,-22],[-3,-2],[-3,1],[-2,14],[2,24],[-2,8],[1,10],[4,-1],[0,24],[1,29],[-5,-11],[0,22],[0,21],[2,32],[-2,14],[3,51],[2,21],[3,15],[-2,9],[-4,3],[-3,8],[-3,-20],[-2,-10],[0,-36],[-1,-25],[1,-26],[-3,-24],[-1,21],[-6,-6],[-3,15],[-2,-1],[-2,-26],[5,-11],[5,-17],[3,-19],[-6,-154],[-3,-13],[-1,4],[-1,26],[-6,10],[-1,-12],[4,-14],[0,-11],[3,-28],[1,-23],[2,-19],[2,13],[4,-6],[1,-14],[1,-13],[1,-11],[1,-16],[0,-21],[1,-17],[2,5],[1,-24],[-1,-14],[0,-2],[0,-24]],[[7199,37868],[3,13],[2,9],[2,21],[1,9],[3,9],[2,-14],[1,-13],[1,-4],[0,-16],[0,-9]],[[7179,38585],[-1,-1],[-1,4],[-1,11],[1,7],[1,4],[2,5],[1,6],[0,-9],[-1,-17],[-1,-10]],[[7074,38953],[2,-6],[1,0],[-1,-18],[-1,-4],[-3,1],[-2,8],[-2,5],[-1,6],[-1,8],[0,15],[2,-1],[3,-5],[2,-2],[1,-7]],[[7088,39008],[-2,-19],[-3,1],[-2,5],[0,19],[3,4],[4,-10]],[[7661,39182],[1,-10],[2,2],[0,-17],[0,-19],[-1,-16],[0,-18],[-1,-14],[-3,-10],[-1,-14],[-1,0],[-1,8],[-2,2],[0,8],[-5,-5],[-4,2],[-2,12],[0,18],[-1,13],[-1,14],[-1,23],[1,12],[0,15],[3,20],[2,21],[2,0],[2,8],[2,-12],[2,-19],[1,-15],[3,-6],[1,-1],[2,-2]],[[7715,39251],[2,-7],[2,1],[2,6],[1,8],[0,-14],[-1,-13],[-1,-16],[1,-50],[1,-12],[-1,-23],[-2,-16],[-2,-9],[-1,23],[-2,1],[-1,17],[-1,-5],[-5,23],[-2,20],[-1,23],[-3,0],[-2,4],[-2,9],[-1,18],[-1,12],[2,36],[-2,27],[3,6],[2,-4],[5,-17],[2,-4],[3,-2],[0,-4],[2,-20],[3,-18]],[[7619,39315],[2,-35],[-1,-17],[-1,-3],[-2,-6],[-2,9],[-2,0],[-1,7],[-3,27],[-4,7],[-4,-6],[-2,7],[-1,17],[0,23],[-3,16],[2,10],[3,18],[3,17],[3,6],[1,26],[4,27],[4,8],[3,-2],[1,-16],[2,-4],[0,-34],[0,-5],[-1,-39],[-1,-22],[0,-12],[0,-24]],[[6983,39462],[-1,-7],[-1,9],[0,12],[1,7],[1,0],[0,-10],[0,-11]],[[8008,40351],[4,-12],[2,2],[0,-15],[1,-10],[0,-15],[0,-15],[-2,-4],[-1,3],[-1,4],[-1,5],[-2,7],[1,9],[-2,16],[-3,-5],[-1,-10],[-1,-8],[-1,-13],[-1,-4],[0,18],[0,15],[0,17],[1,9],[1,4],[2,13],[4,-11]],[[6998,40409],[1,-9],[-1,-6],[-1,-7],[-2,-2],[-1,-6],[-1,-2],[-2,-13],[-1,-2],[-1,6],[0,13],[1,15],[2,5],[2,6],[1,-4],[2,1],[1,5]],[[8002,40422],[-1,-12],[-3,-2],[1,23],[2,-2],[1,-7]],[[7596,40403],[-1,-5],[-2,13],[1,16],[1,9],[2,-17],[0,-8],[-1,-8]],[[8002,40422],[-1,33],[1,2],[2,-4],[2,0],[2,2],[3,-15],[2,-6],[1,0],[0,16],[-1,15],[-1,13],[2,3],[2,1],[1,13],[1,4],[1,-16],[-2,-34],[0,-15],[0,-10],[-3,-17],[0,-21],[2,-17],[-1,-5],[-2,5],[-1,21],[0,17],[-4,4],[-1,7],[-2,6],[-1,-9],[-1,-1],[-1,8]],[[7137,40534],[1,-9],[0,-12],[1,-20],[-1,-13],[-2,-8],[0,-16],[-2,-13],[-1,-9],[0,-16],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-2],[-1,0],[-1,8],[0,13],[0,12],[2,29],[1,28],[1,4],[0,11],[1,12],[3,-1],[2,2],[0,2],[2,-1]],[[7167,40644],[1,-32],[1,12],[1,9],[2,0],[2,1],[3,-18],[1,-15],[0,-26],[0,-24],[2,-24],[1,-9],[3,-32],[4,-23],[1,-16],[0,-35],[2,-47],[-1,-16],[-2,-33],[-3,-36],[-3,-27],[-4,-13],[-3,-20],[-3,-25],[-2,-10],[0,6],[-1,19],[-2,1],[-3,-1],[-6,-9],[-3,-7],[-7,-8],[-7,-11],[0,2],[-2,6],[-2,17],[-3,22],[-1,18],[1,26],[0,20],[1,30],[0,25],[-1,35],[-1,10],[2,29],[1,-2],[1,1],[1,16],[1,14],[1,12],[2,5],[1,-3],[0,13],[0,19],[-1,6],[0,11],[-1,1],[1,12],[1,2],[2,8],[3,3],[4,9],[3,17],[1,25],[4,21],[4,18],[1,17],[2,4]],[[7947,40567],[1,-7],[1,-12],[2,-15],[-1,-11],[1,-15],[1,-11],[-2,-8],[0,10],[-2,4],[-2,14],[1,-24],[1,-8],[-1,-19],[1,-6],[0,-15],[1,-11],[1,-19],[0,-6],[-1,-15],[-1,-14],[0,-13],[-1,-3],[1,-11],[0,-19],[-1,-13],[-1,-17],[-2,2],[-1,6],[-1,6],[-1,5],[0,-19],[-1,-14],[-2,-17],[-1,-20],[-1,-27],[0,-21],[0,-19],[-3,-54],[-2,-14],[-1,-5],[0,-17],[-3,-4],[0,-12],[-2,-2],[-1,-19],[0,-13],[-1,-7],[-2,-5],[0,-9],[-2,-9],[0,9],[-1,-3],[-1,9],[0,15],[1,11],[0,17],[2,11],[1,0],[1,13],[-1,26],[-1,1],[-1,3],[-1,6],[-2,-5],[0,-5],[-1,-8],[-2,-15],[-2,-13],[-1,10],[-2,5],[0,-8],[-1,12],[-1,3],[-2,0],[1,26],[-1,20],[3,13],[2,0],[2,8],[1,4],[-1,23],[-6,25],[3,2],[1,20],[1,1],[2,-1],[2,7],[1,-17],[2,12],[-1,26],[-1,10],[1,6],[0,9],[-1,-4],[-1,14],[-1,8],[2,12],[2,2],[3,19],[2,4],[1,2],[-1,12],[-3,15],[-1,16],[3,6],[3,18],[1,16],[2,-1],[-1,16],[-1,13],[-1,18],[5,51],[-1,-2],[-1,16],[-2,7],[-1,-2],[-2,9],[1,15],[1,16],[1,26],[0,14],[-1,16],[4,-5],[4,-18],[2,-19],[3,-3],[1,-2],[3,-1],[2,-8],[2,-12],[2,-20]],[[8029,40815],[2,-12],[2,7],[0,19],[3,5],[1,1],[2,18],[1,-3],[-1,-17],[-1,-21],[0,-15],[-3,-9],[0,-29],[0,-21],[1,-14],[3,9],[-1,-29],[-1,-18],[1,-13],[0,-16],[-2,-8],[-2,3],[-1,-9],[0,18],[2,14],[1,10],[-1,11],[-1,16],[-2,1],[-2,-4],[1,20],[-1,31],[-1,16],[-2,-3],[-2,-27],[-1,-17],[1,-32],[0,-24],[0,-24],[-1,3],[-2,-1],[0,17],[-2,0],[-1,12],[-1,17],[1,14],[1,15],[0,20],[-2,-3],[-2,-16],[-2,-15],[-2,-4],[1,-25],[1,-31],[0,-27],[1,-27],[-2,-28],[-3,-12],[1,-9],[1,-15],[-1,-23],[0,-23],[-1,3],[-1,16],[-2,5],[-1,4],[-2,9],[-2,-1],[-2,13],[0,23],[1,11],[3,-5],[2,8],[0,17],[2,18],[-1,10],[-2,-7],[-3,6],[0,15],[0,14],[0,7],[3,-4],[-1,19],[0,16],[4,-15],[1,7],[1,15],[-2,17],[-1,12],[-1,8],[-2,18],[1,14],[3,-20],[2,-16],[1,10],[-1,32],[-1,24],[1,-1],[2,-7],[2,-11],[1,-11],[1,12],[-1,9],[0,17],[2,14],[1,7],[1,-9],[1,-37],[2,-16],[3,0],[0,21],[-1,30],[-1,28],[1,20],[3,4],[4,15],[1,-6],[1,-6],[-1,-18],[-3,-31]],[[7699,41088],[-5,-3],[1,14],[1,13],[2,-1],[1,-7],[1,-2],[3,0],[0,-9],[-4,-5]],[[7707,41130],[-2,-8],[-1,14],[-2,4],[-1,5],[-2,18],[0,9],[0,7],[1,8],[1,17],[2,7],[1,14],[2,1],[1,-10],[1,-19],[0,-37],[-1,-30]],[[7712,41267],[-1,-14],[-1,1],[-1,-3],[0,13],[1,10],[1,4],[1,-11]],[[8008,41387],[1,-9],[0,1],[1,0],[1,-7],[0,-15],[-2,4],[-2,2],[0,18],[1,6]],[[7781,41570],[2,-20],[-1,-12],[-6,-3],[-3,4],[-1,1],[-1,5],[0,11],[2,5],[1,-2],[7,11]],[[8224,41577],[-1,-13],[-2,3],[2,43],[-2,8],[-2,5],[2,12],[2,9],[1,-1],[1,-7],[0,-18],[-1,-41]],[[7164,41732],[-1,0],[0,10],[1,12],[1,-1],[1,-8],[-2,-13]],[[8233,41781],[-1,-25],[-2,-20],[-1,3],[-1,-4],[-1,-11],[0,7],[0,23],[1,25],[0,-3],[1,-3],[2,26],[0,15],[1,7],[0,-8],[0,-22],[1,-10]],[[8202,41853],[-1,-9],[-1,6],[-1,12],[1,17],[1,-2],[1,-11],[0,-13]],[[8222,41788],[-1,-6],[-1,14],[0,19],[1,6],[1,1],[1,6],[1,16],[0,16],[2,10],[-1,10],[2,0],[0,-11],[-1,-19],[-1,-18],[0,-18],[0,-14],[-1,-7],[-2,-5]],[[8166,41919],[4,-45],[4,-36],[1,-1],[1,-12],[1,-18],[1,-32],[1,-12],[1,-22],[2,-24],[0,-16],[4,-71],[0,-22],[-6,76],[-1,7],[-3,20],[0,13],[0,4],[-2,13],[-1,26],[-1,4],[-1,26],[0,14],[0,6],[-1,10],[-2,4],[-1,26],[1,4],[0,3],[0,13],[-1,12],[-1,0],[-1,0],[-1,11],[0,1],[0,28],[0,14],[2,-12],[0,-12]],[[8200,41912],[-1,-16],[-1,22],[-2,29],[1,19],[1,-9],[1,-3],[1,-19],[0,-1],[0,-22]],[[8219,41887],[1,-16],[-1,-20],[-1,-16],[0,-10],[0,-15],[-1,-12],[-1,1],[-1,-6],[-1,-14],[0,15],[0,11],[1,16],[0,30],[2,9],[1,13],[-1,8],[-1,-1],[-2,0],[-1,21],[1,5],[1,7],[1,17],[-1,19],[0,14],[-1,15],[1,16],[-1,13],[1,9],[-1,18],[1,11],[0,16],[1,-6],[1,-13],[1,-15],[0,-17],[-1,-11],[0,-19],[2,-12],[1,-6],[-1,-10],[-1,-21],[0,-15],[1,-14],[0,-15]],[[8242,42064],[1,-7],[1,1],[1,-2],[0,-10],[-1,-9],[-1,-3],[-1,9],[-1,8],[-1,11],[1,6],[1,-4]],[[8258,42383],[0,-15],[-1,5],[-1,13],[0,19],[1,17],[-1,9],[-2,11],[0,25],[2,-6],[1,-6],[1,-2],[1,-15],[1,-9],[-1,-16],[0,-12],[-1,-6],[0,-12]],[[8112,42521],[0,-23],[-2,7],[-2,-4],[-2,7],[1,23],[1,22],[0,18],[1,9],[0,-11],[1,-26],[2,-22]],[[8290,42887],[2,-6],[1,8],[1,-11],[1,-15],[1,-8],[1,-16],[1,-4],[0,-7],[0,-27],[0,-18],[0,-16],[-1,-11],[0,-17],[-2,-9],[-2,-8],[-1,10],[1,18],[2,2],[1,3],[-1,22],[-1,12],[-1,12],[0,14],[-1,-1],[-1,-7],[-1,-7],[0,-18],[-1,-12],[-2,-5],[0,16],[-1,13],[-1,15],[2,4],[1,6],[0,22],[0,14],[-2,20],[2,15],[1,4],[1,-7]],[[8297,42970],[1,-27],[-2,1],[-1,-1],[-2,16],[0,18],[0,13],[1,3],[1,6],[1,-12],[1,-17]],[[8201,43074],[-1,-15],[-1,11],[0,12],[0,1],[0,17],[1,23],[0,17],[1,-19],[-1,-22],[1,-25]],[[8311,43230],[1,3],[1,-1],[-1,-15],[-2,-4],[-1,-9],[0,-24],[0,-22],[0,-21],[0,-18],[-1,-15],[-1,-18],[0,-9],[-1,-10],[-1,-17],[-1,-14],[-1,7],[-1,3],[-1,2],[-1,1],[-2,13],[1,21],[2,4],[2,-3],[2,4],[1,8],[-1,14],[-1,6],[-1,8],[-1,13],[-1,7],[-1,11],[0,17],[2,8],[1,6],[1,15],[0,12],[-2,7],[0,10],[0,12],[1,10],[2,9],[2,14],[1,-7],[1,-13],[1,-10],[1,-15]],[[7395,44416],[2,-2],[1,1],[1,-4],[2,-9],[2,-19],[1,-20],[0,-18],[1,-5],[1,-21],[0,-18],[0,-20],[1,-23],[1,-21],[-1,-22],[0,-17],[0,-17],[2,-22],[0,-22],[1,-15],[0,-13],[0,-14],[0,-10],[-1,-17],[0,-26],[-1,-18],[0,-12],[-1,2],[-1,5],[-1,18],[0,12],[-1,13],[-1,5],[-1,5],[-1,9],[-1,15],[-1,10],[0,13],[-1,17],[-2,26],[-1,20],[-1,11],[-1,10],[-2,35],[-2,37],[-1,7],[-1,6],[0,12],[-1,23],[-1,41],[1,17],[1,23],[3,30],[1,18],[1,-1],[1,-12],[2,-23]],[[7595,45722],[-1,-14],[-1,-8],[-1,5],[0,6],[-3,-2],[-3,-4],[-3,-12],[-3,-14],[-2,-27],[-2,-29],[-1,-20],[-1,-11],[0,-15],[0,-14],[-1,-8],[-1,-6],[-1,-5],[-1,-7],[-1,-16],[-1,-17],[-1,-8],[1,-6],[1,-17],[1,-16],[1,-21],[2,-20],[1,-13],[1,-9],[0,-11],[0,-12],[-4,-23],[-4,-24],[-9,-34],[-4,-18],[-2,-8],[-2,-10],[-3,-14],[-2,-10],[-1,-1],[-2,3],[-1,6],[-1,9],[0,12],[1,14],[1,17],[0,29],[0,18],[1,0],[1,-4],[2,-1],[1,2],[3,-2],[3,7],[3,9],[2,18],[2,20],[1,7],[0,13],[1,17],[0,27],[0,28],[-1,14],[0,19],[-2,10],[-1,6],[1,7],[1,8],[0,7],[2,9],[1,2],[2,7],[2,11],[2,14],[1,16],[0,17],[1,17],[0,12],[1,16],[1,28],[1,25],[0,15],[0,14],[1,20],[0,13],[-1,16],[1,14],[1,11],[-1,13],[0,15],[-1,23],[-2,20],[0,14],[1,8],[1,14],[-1,14],[0,7],[-2,3],[-1,0],[0,7],[1,9],[1,1],[1,1],[1,5],[1,8],[1,8],[1,11],[1,15],[0,11],[-1,7],[0,14],[0,17],[3,13],[1,8],[1,4],[2,-1],[3,-21],[3,-23],[3,-13],[2,-9],[4,-15],[3,-10],[1,-9],[2,-12],[2,-11],[1,-9],[1,-15],[-2,-17],[-5,-25],[-4,-17],[-1,-8],[-3,-22],[-1,-16],[-1,-15],[-1,-20],[1,-24],[1,-13],[1,-12],[0,-19],[1,-18]],[[8495,46928],[-2,-23],[0,9],[1,20],[1,31]],[[8495,47149],[-4,-38],[-5,-168],[-5,-60],[-1,-30],[-2,-49],[3,-31],[0,-5],[-1,-27],[2,-6],[2,20],[1,15],[1,-41],[0,-42],[1,-3],[2,30],[1,-6],[2,1],[0,10],[-1,17],[-1,14],[2,20],[-2,26],[2,27],[3,28]],[[8495,46014],[-3,-49],[-4,-34],[-3,-47],[-5,-41],[-2,-21],[1,-18],[1,-22],[1,-15],[-1,-19],[2,-10],[3,-4],[3,11],[3,10],[1,16],[-1,24],[2,20]],[[8491,43154],[-1,6],[-1,8],[0,13],[1,11],[0,24],[1,29],[-2,11],[-3,8],[-2,4],[-3,-28],[-4,2],[-2,11],[1,17],[1,16],[-1,10],[-1,-8],[-2,21],[-3,20],[-2,10],[-3,-2],[-5,0],[-6,-34],[-5,-100],[-12,-29],[-3,3],[-2,12],[-1,14],[1,13],[1,14],[-1,19],[-1,0],[-1,0],[-1,32],[-5,41],[0,61],[-4,19],[-7,15],[-4,-17],[-5,-49],[-4,-34],[-7,-14],[-2,19],[0,42],[-6,-22],[-6,-18],[-4,-1],[-3,9],[-2,32],[-2,3],[-2,1],[-1,20],[1,56],[2,39],[2,14],[0,6],[2,27],[2,-33],[1,5],[-1,30],[0,13],[-1,4],[1,18],[1,13],[3,33],[1,29],[1,-12],[2,-9],[1,49],[5,27],[-1,26],[2,21],[2,17],[-2,17],[-1,8],[-2,16],[-3,18],[-2,10],[-2,-10],[-4,-30],[-3,-24],[-6,6],[-4,-7],[0,-42],[-2,-20],[-2,4],[-2,-2],[-3,11],[0,-26],[0,-24],[-1,-37],[-3,-54],[-4,-14],[-1,26],[-2,3],[0,-1],[-1,-8],[0,-17],[0,-14],[0,-5],[0,-16],[1,-40],[-1,-10],[-2,-2],[-2,-3],[-1,-13],[0,-5],[-1,-22],[1,0],[1,0],[0,2],[2,8],[2,1],[0,-14],[-1,-4],[0,-23],[-2,2],[0,-1],[0,-11],[0,-5],[-1,-1],[-1,-21],[0,-23],[-1,-14],[-1,-20],[-3,-5],[-1,-20],[2,-9],[2,0],[1,10],[1,-3],[1,13],[1,-32],[0,-8],[0,-22],[-2,15],[-2,-11],[-1,-5],[0,-4],[0,-1],[-1,-5],[1,-10],[-1,-15],[-1,-6],[-1,0],[-1,-25],[-1,-12],[-2,-17],[-2,-5],[-1,-7],[0,-12],[3,-26],[2,-6],[1,5],[1,12],[1,18],[2,-6],[0,-17],[0,-13],[-3,5],[0,-6],[1,-11],[-1,-12],[-2,-1],[0,-17],[0,-7],[2,7],[-1,-11],[-1,-17],[-3,-7],[0,-8],[-1,-10],[-2,-6],[-1,-24],[1,-16],[1,-18],[1,-4],[-1,-14],[-2,-9],[-2,-5],[-1,1],[-1,13],[1,3],[1,15],[1,9],[-2,15],[0,16],[-1,10],[1,14],[-2,20],[-1,0],[1,9],[1,1],[1,12],[1,15],[0,2],[-1,2],[0,12],[1,15],[0,1],[-1,9],[-1,4],[0,8],[0,27],[0,1],[-1,0],[-1,8],[1,7],[0,10],[0,8],[0,2],[-1,15],[1,15],[-1,9],[0,12],[2,12],[-1,18],[-1,10],[1,11],[1,0],[1,4],[-3,28],[0,1],[0,5],[1,9],[-1,11],[1,7],[0,17],[0,15],[0,1],[0,6],[0,6],[1,1],[2,-17],[1,4],[-1,9],[1,0],[-1,20],[-2,2],[0,23],[0,1],[0,22],[0,8],[-1,-5],[0,-1],[-2,-10],[-1,-14],[0,-1],[-1,-9],[-2,-1],[-1,7],[1,21],[0,17],[1,10],[-1,20],[-1,2],[0,7],[1,23],[0,9],[1,16],[2,1],[1,9],[1,9],[1,11],[2,11],[1,5],[0,6],[-1,10],[1,6],[0,2],[0,8],[-3,0],[-3,-1],[-3,-13],[-3,-15],[-1,-1],[0,39],[0,40],[0,67],[-1,52],[-1,37],[0,32],[0,34],[0,41],[-2,28],[0,12],[-1,9],[-2,13],[-1,14],[-1,13],[1,20],[0,29],[0,25],[0,22],[0,12],[-2,18],[-1,9],[-1,11],[-6,-6],[-1,-1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,-3],[-1,-10],[0,-6],[-1,3],[-1,1],[0,-17],[-1,-1],[0,-10],[1,-12],[0,-14],[0,-9],[0,-13],[0,-14],[0,-9],[-1,-5],[-1,-2],[0,-1],[-1,-6],[0,-13],[1,-12],[0,-15],[0,-15],[0,-14],[0,-20],[1,-18],[1,-6],[1,-17],[-2,-34],[-1,-27],[1,-24],[0,-16],[1,-12],[-1,-16],[-1,-33],[1,-38],[4,-45],[3,-29],[1,-12],[2,-22],[0,-11],[3,-19],[1,-15],[0,-3],[0,-20],[1,-53],[-5,3],[-5,-14],[-4,-73],[-4,-143],[-3,-102],[-4,13],[-3,60],[-7,-6],[-7,-51],[-2,-30],[-5,-48],[-1,-35],[1,-30],[2,-13],[-1,-51],[-4,-11],[-2,-16],[-1,-27],[0,-46],[3,2],[0,-53],[-3,29],[-3,-5],[1,-22],[-1,-38],[-5,-21],[-2,-51],[-1,-54],[0,-19],[3,-27],[5,0],[-2,-29],[2,-28],[-1,-19],[2,-13],[-1,-24],[1,-15],[1,-4],[0,-30],[-1,-40],[4,-3],[3,-3],[-2,43],[3,14],[1,11],[2,2],[4,3],[0,-40],[-3,8],[-2,-8],[1,-22],[1,-38],[2,-8],[0,-19],[-2,-5],[-1,-3],[-3,11],[-1,-27],[1,-14],[2,-13],[2,8],[1,-16],[0,-32],[-1,-8],[2,-25],[2,0],[2,22],[3,13],[0,-16],[-2,-27],[-2,-19],[0,-16],[1,-21],[0,-33],[-1,-16],[-1,8],[-2,-13],[1,40],[-1,8],[-2,-5],[0,13],[2,11],[0,23],[-1,12],[-2,11],[-2,-3],[-2,-16],[-2,-5],[-1,-30],[-2,3],[2,24],[1,27],[0,24],[-2,11],[0,35],[-1,14],[-2,10],[-2,-16],[-2,-19],[0,-16],[0,-23],[-1,-12],[-2,-19],[0,35],[-3,-2],[-1,10],[0,6],[-2,0],[-1,20],[2,16],[0,-4],[2,-4],[3,2],[2,4],[1,14],[-3,22],[0,1],[0,2],[-1,21],[1,0],[2,-14],[0,1],[2,-17],[2,6],[3,0],[2,7],[2,14],[-3,22],[-5,13],[-1,11],[-2,25],[1,11],[-1,29],[3,-5],[-1,45],[-4,-5],[-1,-11],[-3,-40],[-1,-38],[0,-9],[0,-1],[-1,-1],[0,-5],[-1,-10],[-1,20],[1,10],[-1,12],[-1,6],[-1,4],[-1,32],[2,10],[0,-9],[3,-8],[2,6],[2,29],[2,19],[0,14],[-1,21],[2,19],[-1,32],[-2,0],[-1,-24],[-4,-3],[-1,-10],[-1,-22],[-2,24],[-2,17],[2,-3],[2,13],[3,3],[-2,16],[-4,6],[-2,8],[0,13],[6,0],[3,11],[-4,16],[-5,6],[-1,10],[1,19],[3,-11],[4,-5],[3,5],[0,11],[-3,33],[-6,13],[0,7],[-2,-1],[0,18],[0,45],[1,16],[0,20],[1,10],[2,14],[2,8],[3,-22],[1,-29],[3,-2],[-3,33],[0,7],[0,6],[-2,25],[2,14],[2,16],[3,-21],[0,1],[3,8],[-2,24],[-3,30],[-4,-25],[-5,-21],[-2,-3],[-1,24],[3,30],[0,46],[4,5],[1,30],[-3,11],[-2,24],[-2,13],[2,11],[-3,30],[0,32],[0,41],[-3,29],[-1,65],[-2,23],[-5,1],[-4,0],[-3,-10],[-1,5],[-2,-35],[-1,-60],[4,-35],[0,-37],[0,-68],[1,-6],[1,-10],[0,-11],[-1,-40],[0,-27],[3,-8],[-3,-27],[-2,13],[-1,60],[-1,22],[-2,-19],[1,-35],[0,-29],[0,-54],[-2,-26],[0,-39],[2,-31],[0,-64],[1,-49],[-3,-40],[-3,16],[-4,62],[-4,56],[-4,11],[-8,0],[-5,11],[-2,5],[-2,24],[-1,1],[1,-58],[3,-2],[5,-27],[5,-32],[3,-39],[0,-29],[1,-22],[1,-36],[2,-4],[0,-3],[1,-12],[3,-14],[3,-24],[2,-23],[-2,0],[-2,0],[-2,-26],[-1,-15],[1,-23],[2,-3],[2,-16],[0,-19],[-2,-8],[-2,-7],[0,-28],[1,-26],[2,-5],[2,33],[2,3],[0,-43],[-2,-31],[-1,-28],[1,-10],[1,1],[1,-18],[1,-23],[1,-8],[2,0],[-1,-22],[0,-6],[0,-28],[2,-19],[2,7],[0,-10],[-2,-16],[-2,-24],[0,-26],[0,-26],[1,-24],[2,0],[0,1],[0,23],[1,20],[3,-8],[0,-22],[0,-1],[0,-1],[-2,-19],[-1,-13],[-1,-22],[-2,0],[-1,22],[-2,18],[0,4],[-2,-31],[1,-31],[1,-7],[1,-4],[-1,-28],[-1,-2],[0,-25],[4,-23],[1,-25],[-2,-18],[0,-5],[1,-18],[1,0],[0,-24],[0,-46],[-1,-16],[-1,-19],[-1,25],[1,36],[0,6],[-2,14],[-1,10],[0,15],[-4,-6],[-1,14],[4,17],[0,34],[-1,20],[-2,-34],[-3,-2],[-1,6],[-1,-6],[-1,16],[0,16],[2,0],[1,26],[1,33],[-2,9],[0,-1],[0,8],[-1,-1],[-1,-8],[-1,-18],[-1,2],[-1,24],[2,10],[1,21],[-2,2],[-2,-8],[-2,-4],[-3,-2],[0,16],[2,24],[3,0],[3,0],[0,28],[2,-12],[2,-12],[4,30],[1,22],[-1,8],[-4,24],[-3,18],[-2,-15],[-1,-11],[-2,-24],[-2,-14],[-3,14],[2,7],[3,14],[1,34],[0,8],[-3,26],[-3,-34],[0,6],[-1,-9],[-1,8],[-1,10],[2,26],[0,11],[-2,6],[-1,-11],[-1,4],[0,14],[2,9],[0,6],[-1,19],[1,0],[0,17],[-1,14],[-7,12],[-4,-12],[0,2],[0,-12],[-1,7],[0,13],[-1,16],[-1,7],[-1,5],[0,26],[0,26],[-1,16],[-2,26],[-1,13],[-1,0],[-2,-10],[-2,0],[-2,12],[-1,-7],[-1,14],[0,19],[-1,5],[-3,-31],[-3,5],[-3,19],[-3,25],[0,6],[-1,9],[-2,20],[-1,15],[-1,23],[-1,18],[-3,15],[-2,20],[-1,16],[0,28],[2,51],[0,11],[0,20],[-2,-3],[-2,-15],[-3,48],[-3,55],[-3,9],[-2,-35],[2,-48],[1,-19],[2,-78],[1,-5],[0,-20],[0,-38],[-2,-35],[-1,-8],[0,-15],[-2,-13],[3,-35],[0,-34],[-3,-36],[0,-1],[1,-10],[1,-8],[1,2],[2,22],[2,17],[2,7],[3,-12],[3,-21],[1,-11],[3,-4],[2,-14],[2,-20],[2,-18],[0,-10],[1,10],[2,6],[1,0],[2,-2],[0,-16],[0,-12],[2,-22],[0,-35],[-1,-34],[-2,0],[-1,-8],[-1,-15],[0,-1],[0,-20],[2,-6],[2,0],[1,14],[2,2],[1,14],[1,3],[4,28],[5,27],[1,-5],[0,-16],[-1,-6],[-3,-14],[-1,-25],[1,-68],[0,-97],[-4,-112],[-1,0],[-1,0],[-2,-4],[1,-26],[1,-10],[-1,-26],[-1,2],[-2,18],[-2,6],[-1,14],[-3,-9],[-6,34],[-2,14],[-3,-14],[1,-22],[2,-28],[1,-45],[1,-4],[0,-31],[-2,-15],[1,-19],[-2,-10],[0,-16],[-2,-9],[-2,2],[-1,-6],[1,-49],[-1,-11],[-1,7],[-4,38],[0,39],[-2,28],[1,9],[3,-4],[-2,46],[1,13],[-3,33],[-1,38],[-1,4],[-1,-7],[-2,10],[-3,4],[-1,21],[-2,22],[-4,26],[-1,8],[0,16],[-1,20],[-4,35],[-1,-5],[-1,-8],[2,-18],[0,-18],[0,-14],[0,-30],[3,-9],[2,-34],[-1,-24],[1,-17],[3,-12],[3,-16],[1,-10],[0,-42],[-1,-19],[-2,-29],[1,-25],[-1,-52],[-1,-31],[-1,-31],[-2,-12],[-4,44],[-4,61],[2,26],[-3,-9],[0,-16],[-5,-14],[3,-9],[0,-22],[0,-24],[2,-16],[4,-56],[0,-16],[3,-3],[1,-18],[1,8],[2,-10],[2,-7],[2,-17],[2,-23],[-2,3],[0,-17],[-2,-2],[-2,-7],[-1,-18],[-1,-16],[-1,7],[-1,1],[-1,-13],[-3,-9],[-2,16],[0,13],[-2,4],[-2,-19],[-2,-30],[-1,14],[-3,11],[-1,9],[-2,11],[1,33],[3,14],[-1,22],[-2,6],[-2,-16],[-3,1],[-3,-25],[1,-18],[1,-3],[1,-32],[0,-19],[1,-15],[1,-34],[1,-13],[2,-36],[2,-21],[-1,-16],[-2,-25],[-5,-45],[-2,-6],[0,12],[1,15],[1,47],[-1,35],[-2,6],[-1,-33],[-1,-40],[-1,6],[-3,-15],[-3,10],[-3,-6],[0,34],[-1,4],[-2,-34],[2,-20],[0,-18],[2,-4],[3,-26],[0,-12],[0,-25],[2,-6],[1,-17],[-1,-22],[-1,-14],[-2,-13],[0,-12],[-2,-28],[-2,20],[-2,22],[0,20],[-3,10],[-4,-7],[0,-30],[2,-17],[0,-10],[1,-7],[-1,-30],[-2,-14],[-1,30],[-3,22],[-2,10],[1,-20],[0,-31],[0,-38],[-3,-14],[-2,-24],[-2,4],[-1,-2],[-6,-18],[-2,11],[-2,8],[-2,-22],[-1,5],[-4,6],[2,23],[2,14],[-1,27],[1,13],[6,-6],[1,1],[6,21],[1,23],[-1,30],[-2,-11],[-3,-2],[-1,19],[-2,-12],[-2,5],[0,40],[1,26],[4,2],[5,-23],[3,17],[-2,18],[1,11],[4,-18],[1,0],[0,12],[0,8],[-3,17],[-2,1],[-1,1],[-1,0],[-1,-12],[-3,13],[-2,9],[1,20],[4,-6],[0,14],[0,5],[-1,19],[1,11],[0,-1],[3,0],[2,-15],[10,-84],[0,5],[1,12],[-1,16],[-2,39],[-1,33],[-2,19],[-6,-1],[-4,7],[-1,5],[0,8],[2,35],[1,12],[3,17],[3,25],[-2,27],[0,28],[3,11],[1,31],[1,18],[4,15],[-3,24],[-1,19],[-3,6],[1,35],[6,64],[0,17],[3,23],[4,43],[1,13],[-4,59],[-2,4],[0,22],[6,47],[2,23],[2,75],[0,60],[7,84],[1,97],[1,45],[0,15],[-2,15],[-3,-6],[-4,-88],[-1,-36],[-8,-91],[-1,-86],[-4,-49],[-2,-41],[-2,-59],[0,-24],[0,-26],[-2,-36],[0,-27],[-1,-3],[-2,-33],[-3,-24],[-1,-14],[-1,-9],[1,-35],[-2,-13],[-4,-49],[-1,-50],[-1,-29],[-3,-22],[0,-2],[-2,-16],[-1,1],[-1,12],[2,26],[-1,16],[-1,1],[-1,12],[-1,19],[-3,9],[-1,-12],[1,-42],[2,-16],[0,-40],[0,-16],[0,-19],[-2,-53],[-1,-35],[-2,-39],[-1,-73],[-3,-59],[-2,-38],[0,-28],[-2,-34],[-1,-29],[-3,-30],[-1,-30],[-1,-28],[-3,-2],[-2,-8],[-2,26],[-1,13],[-2,-11],[-2,28],[0,34],[5,-4],[-1,34],[5,20],[2,43],[0,58],[2,28],[-2,29],[2,50],[-1,1],[-2,-39],[-1,-41],[-2,-51],[-5,-22],[-6,11],[-4,26],[-1,13],[0,14],[6,20],[4,21],[0,18],[-2,7],[-4,-18],[-4,1],[-3,26],[-1,43],[4,40],[4,17],[0,34],[1,21],[2,11],[1,28],[3,10],[1,33],[0,13],[2,9],[4,4],[1,18],[1,9],[-3,8],[-3,10],[-1,13],[-1,18],[2,15],[1,13],[2,25],[-2,-6],[-2,-15],[-2,6],[-1,28],[-2,-8],[-2,-36],[-2,-9],[-1,-6],[-1,27],[-4,-21],[1,-28],[-1,-27],[-2,-25],[-2,-7],[-2,-34],[0,-21],[-2,-7],[0,-45],[-1,-14],[0,-19],[-1,-14],[-2,-18],[0,-19],[-1,-7],[-3,12],[-3,21],[-3,42],[-1,19],[-1,-30],[-3,-14],[-1,-6],[1,-20],[-1,-9],[2,-13],[1,-22],[3,-22],[-1,-38],[2,-11],[0,20],[3,16],[1,-12],[1,-24],[1,-6],[0,-39],[5,-43],[1,-9],[1,2],[2,-28],[1,-8],[-1,-20],[1,-17],[-1,-9],[1,-20],[0,-19],[-1,-26],[0,-13],[-2,10],[-2,16],[-2,-1],[1,-34],[-5,23],[-2,0],[-5,-10],[-4,17],[0,-15],[1,0],[2,-26],[4,-29],[4,-14],[4,-6],[4,-3],[0,-20],[1,4],[2,-28],[-1,-5],[-2,-27],[-1,1],[-1,-32],[0,-18],[-1,-13],[-3,0],[-3,-9],[-2,9],[-1,-12],[-2,-7],[-3,-2],[0,22],[-2,-3],[-4,0],[-6,28],[-1,2],[-1,1],[-2,-10],[-3,-19],[-6,-5],[0,-64],[0,-16],[-1,-38],[-2,-36],[-2,-13],[-1,-16],[-1,-38],[-1,-35],[-2,-3],[-3,-19],[-1,-16],[-1,-12],[-7,-27],[-1,-2],[-3,-6],[-2,-12],[-3,-5],[3,-5],[0,-20],[1,-3],[-1,-9],[-3,-26],[-1,-18],[-3,-38],[-2,-26],[-1,-25],[-2,-4],[-3,2],[-1,-5],[-4,-16],[-1,-19],[-3,-12],[2,23],[-1,-3],[-4,-2],[-1,-13],[-3,9],[2,-31],[1,8],[0,-18],[3,-7],[4,12],[1,-12],[1,-12],[1,-24],[1,-14],[2,-18],[1,-22],[1,-42],[0,-28],[-1,-24],[-2,-37],[-2,-30],[-4,-20],[-2,-26],[-4,-35],[-5,-4],[-2,8],[-2,10],[-3,-7],[-2,-25],[0,-23],[-1,-16],[2,-43],[1,-18],[3,-24],[3,-22],[1,-6],[-2,-13],[-4,23],[-2,9],[-3,14],[-3,17],[-1,42],[-1,12],[3,18],[0,37],[-2,16],[-1,26],[0,30],[-1,12],[3,22],[1,6],[1,9],[2,11],[5,-8],[0,19],[-3,19],[-2,7],[-1,16],[3,14],[1,13],[3,7],[1,8],[-1,19],[-3,-8],[-3,-13],[-3,-27],[-3,-3],[-2,-3],[-2,30],[0,27],[2,15],[-2,19],[-1,17],[-2,10],[-1,29],[3,36],[1,21],[2,-1],[1,20],[0,19],[0,18],[-5,1],[-1,-22],[-1,-30],[-1,-40],[-2,-13],[-2,-35],[-2,-31],[1,-19],[-1,-15],[-2,-19],[-2,-29],[0,-13],[-2,3],[-1,8],[0,12],[-6,30],[-1,39],[-1,31],[-2,10],[0,-18],[-1,-5],[-1,-12],[-2,19],[-1,1],[0,-39],[-3,3],[-2,16],[-4,21],[-1,13],[-2,11],[-1,23],[-2,5],[-1,18],[-1,7],[-2,-28],[-2,-16],[-5,2],[-4,31],[-3,16],[-7,9],[-3,-1],[-2,-4],[-2,-2],[-2,-4],[5,-15],[5,-14],[2,-20],[2,-22],[6,-14],[2,-22],[2,-28],[1,1],[1,13],[8,-16],[2,-7],[5,-2],[0,-10],[2,-21],[1,-17],[0,-2],[3,-12],[0,-14],[5,-16],[1,-8],[4,-1],[1,-26],[2,7],[1,-2],[0,4],[1,-13],[0,-11],[0,-20],[1,-31],[-1,-13],[1,-12],[-1,-9],[0,-11],[0,-14],[-1,-36],[0,-21],[-2,-9],[-1,-7],[-1,2],[-1,-22],[-3,-3],[-3,-17],[-3,-9],[-1,-7],[-3,1],[-2,10],[-2,-5],[-2,12],[2,15],[-2,19],[-3,3],[-2,9],[2,19],[-4,13],[-1,12],[-1,-15],[-1,-5],[1,-21],[1,2],[1,-14],[-2,-10],[-1,-3],[0,-14],[-4,-26],[-2,-5],[-1,13],[0,29],[-1,29],[-1,20],[-3,46],[-2,9],[-3,15],[-1,19],[0,10],[-2,13],[0,-23],[1,-46],[1,-11],[1,-3],[1,-7],[-1,-11],[1,-16],[-1,-13],[-1,-12],[-2,-18],[-1,-5],[-2,12],[-2,1],[-1,14],[-1,15],[-2,7],[-2,13],[-2,25],[-3,16],[-1,13],[-2,15],[2,10],[-3,4],[-1,11],[-1,20],[-1,-2],[-1,4],[0,12],[-1,17],[0,19],[1,4],[-1,23],[0,19],[0,23],[-2,1],[0,18],[0,15],[-2,16],[-1,-18],[0,-22],[1,-12],[0,-18],[1,-16],[0,-14],[1,-29],[1,-26],[-2,24],[-1,10],[-1,16],[-2,1],[-3,23],[-2,28],[-1,6],[1,-20],[5,-63],[-1,-20],[-1,2],[-1,7],[-3,16],[-1,-9],[0,-16],[-1,-1],[-1,-2],[0,-20],[0,-14],[1,-11],[0,-18],[-1,-9],[-1,7],[-2,5],[-2,20],[-1,1],[-2,-21],[-2,0],[-1,-12],[-2,-10],[0,-13],[-6,0],[-2,-6],[-1,-7],[-2,7],[-2,2],[-2,11],[-1,5],[-1,9],[-1,-2],[0,-13],[1,-5],[-1,-8],[-1,1],[-2,-5],[2,-12],[2,1],[0,3],[6,-14],[3,-13],[1,-15],[4,-6],[4,-15],[3,4],[1,8],[2,-9],[2,-7],[0,-14],[0,-12],[-4,-26],[-3,6],[-1,14],[-3,1],[-1,-17],[0,-8],[0,-14],[2,-10],[-1,-6],[-2,5],[-2,0],[-1,0],[-4,9],[-3,5],[-1,2],[-2,7],[-1,20],[-1,12],[-2,-5],[-2,-14],[-1,-19],[-1,-15],[-1,-16],[-2,-10],[-1,-6],[-2,-2],[-3,-5],[-2,1],[-2,-4],[0,-24],[1,4],[2,-3],[1,-2],[2,-12],[3,-2],[2,-13],[1,4],[1,-1],[1,-14],[2,-2],[0,-12],[-2,-33],[-2,-8],[-1,-10],[-1,4],[-3,3],[-3,2],[-7,-7],[-3,1],[-6,4],[-3,-10],[-4,10],[-2,-15],[-1,-10],[-2,1],[-1,-11],[-5,0],[-3,15],[-3,58],[-1,24],[1,28],[-1,49],[2,31],[-1,36],[0,21],[1,14],[0,12],[1,6],[2,-4],[1,-8],[2,-11],[2,-5],[1,-8],[2,-5],[0,-7],[4,-9],[0,10],[-3,20],[0,6],[-1,4],[-1,15],[1,13],[0,3],[2,5],[2,5],[0,5],[0,14],[-1,4],[-2,-3],[-1,-13],[-2,0],[-4,20],[-1,-11],[1,-11],[0,-11],[0,-3],[-1,8],[-2,15],[-3,2],[-1,0],[-3,-22],[-1,-11],[-2,-2],[-2,-23],[-2,-17],[-2,13],[-2,13],[-1,-3],[-2,-7],[-3,2],[0,-13],[2,-8],[1,-1],[2,-1],[1,-11],[0,-8],[-3,-7],[-2,16],[-2,19],[-1,7],[-5,-1],[-4,8],[-2,19],[-2,8],[-2,19],[-2,10],[-3,22],[-1,18],[2,27],[1,6],[5,-9],[3,5],[0,8],[-1,21],[-1,22],[0,16],[-3,4],[-3,2],[-3,1],[-2,12],[-3,-13],[-2,0],[-2,-7],[-1,-5],[-1,-9],[-1,2],[-1,16],[-4,13],[0,27],[0,23],[-1,49],[1,15],[1,10],[0,38],[-4,104],[0,13],[0,17],[1,4],[1,6],[2,6],[1,17],[1,2],[1,23],[1,31],[-1,43],[0,8],[1,16],[1,4],[2,18],[1,4],[3,-2],[1,0],[2,-10],[2,3],[0,28],[0,9],[-2,-21],[0,-5],[-1,16],[2,20],[0,6],[3,6],[3,-2],[2,-1],[4,2],[5,-18],[1,-7],[2,-3],[3,-1],[2,-10],[1,-3],[0,-12],[1,-9],[1,-8],[-1,-11],[2,-9],[2,-2],[0,17],[0,9],[2,-13],[2,-20],[0,-20],[0,-18],[0,-10],[1,-1],[1,2],[3,-21],[-1,-23],[1,-16],[2,-2],[2,19],[0,2],[0,10],[-2,19],[-1,12],[0,15],[-1,14],[1,19],[-1,5],[-1,-6],[-1,42],[-1,5],[-1,18],[-2,19],[-3,12],[-1,5],[-1,4],[-1,6],[-2,5],[-1,1],[-2,9],[-2,8],[-3,16],[-3,9],[1,4],[1,0],[1,-6],[1,-4],[0,7],[0,15],[-5,28],[0,5],[-1,7],[-3,-4],[-1,14],[-2,19],[1,17],[-2,15],[-2,-4],[1,31],[3,24],[1,22],[1,17],[0,17],[0,19],[0,19],[2,-8],[2,3],[1,19],[3,-7],[4,34],[3,1],[2,28],[3,-8],[4,0],[4,38],[2,5],[2,9],[3,-14],[2,5],[2,25],[1,5],[1,-9],[2,-20],[-1,-14],[-1,21],[-1,9],[-2,-5],[0,-7],[-1,-11],[2,-12],[1,-54],[0,-17],[1,-13],[0,-5],[2,-14],[1,-23],[0,-4],[1,-7],[1,-4],[1,0],[0,-13],[0,-4],[1,-5],[1,-7],[0,-7],[1,-10],[0,-10],[1,-3],[1,-7],[0,-9],[2,-6],[0,-16],[1,-6],[0,-5],[0,-4],[1,-12],[1,7],[1,4],[0,24],[-1,12],[0,7],[0,5],[-1,7],[-1,10],[-1,10],[-1,4],[0,14],[1,16],[-1,6],[-2,6],[-1,9],[0,7],[-1,5],[0,9],[0,3],[1,9],[-1,8],[-1,3],[-1,6],[1,25],[1,10],[0,13],[-2,27],[0,11],[0,8],[-1,34],[1,5],[0,-2],[1,-1],[1,7],[0,9],[1,13],[0,15],[-1,15],[1,10],[1,13],[1,-4],[1,-5],[1,1],[1,8],[0,4],[1,1],[1,2],[1,1],[1,3],[1,6],[1,4],[1,5],[1,8],[1,18],[1,10],[0,6],[1,6],[1,2],[1,-5],[2,-8],[1,-6],[5,-19],[1,-4],[2,-6],[1,1],[1,-2],[2,11],[2,21],[3,23],[2,-13],[1,-12],[-2,2],[-1,4],[-2,-10],[-1,-15],[-3,-15],[2,-8],[4,-22],[3,-4],[2,5],[2,11],[4,-72],[1,-10],[2,-14],[2,-13],[3,-4],[3,-2],[1,10],[0,7],[-4,3],[-5,31],[0,6],[1,6],[-1,5],[-1,13],[-2,11],[-1,10],[0,6],[1,9],[1,2],[2,7],[1,-5],[0,-18],[2,-9],[1,-1],[0,14],[-1,7],[1,29],[1,-11],[1,-19],[2,-8],[0,3],[0,6],[0,20],[2,1],[0,-12],[2,1],[3,-12],[2,-9],[2,-10],[3,-17],[1,-6],[1,-8],[2,-29],[4,-36],[1,-23],[0,-8],[-5,6],[0,-12],[2,-10],[1,-4],[3,4],[5,-13],[1,-16],[1,13],[4,-13],[2,-2],[3,-18],[2,-13],[3,-15],[1,-14],[5,-23],[2,-21],[2,-7],[1,-1],[0,17],[0,14],[-2,21],[-1,11],[-5,21],[-2,21],[-4,32],[-3,4],[-2,16],[-2,14],[-4,7],[-1,28],[-2,13],[-1,31],[-4,21],[0,4],[-1,7],[-2,11],[-2,-14],[-1,15],[0,19],[-1,5],[-1,24],[-4,10],[-1,12],[-1,32],[-1,12],[-2,13],[0,2],[-1,8],[0,13],[0,11],[0,10],[2,2],[0,-5],[2,-6],[2,9],[2,-2],[1,1],[5,6],[6,-4],[6,-23],[1,-11],[1,-27],[2,-33],[1,-33],[2,-37],[0,-25],[1,-21],[-1,-7],[1,-9],[3,20],[0,23],[-1,40],[-1,40],[-1,17],[0,29],[-2,23],[-2,33],[-4,32],[-2,17],[-6,-4],[-4,5],[-3,-11],[-4,-3],[-2,-4],[-1,9],[0,10],[5,50],[0,37],[-1,34],[2,22],[1,9],[3,3],[2,13],[1,-18],[3,-29],[8,16],[1,25],[-1,27],[1,50],[2,32],[1,7],[-1,-16],[-1,-26],[-1,-32],[1,-9],[3,8],[2,-31],[1,15],[0,24],[0,9],[1,-8],[7,-10],[1,-2],[2,-35],[0,1],[1,12],[0,26],[1,9],[2,6],[3,-16],[1,-9],[3,-15],[3,4],[2,-4],[1,8],[0,4],[-3,8],[0,3],[-2,22],[1,-2],[2,-1],[4,3],[1,13],[-1,12],[-3,2],[-2,1],[-2,2],[-10,7],[0,12],[-1,24],[-2,6],[-2,4],[-1,3],[-1,7],[1,5],[2,-3],[2,6],[1,5],[2,-3],[0,-13],[1,-1],[4,-41],[2,-3],[1,6],[0,3],[-1,29],[1,23],[0,19],[-1,2],[-2,5],[-1,20],[0,19],[1,20],[1,0],[4,-13],[1,-5],[2,-3],[4,-15],[4,5],[3,4],[0,1],[2,-1],[1,-2],[1,7],[1,4],[1,-11],[-1,-27],[-1,-21],[-2,-11],[-1,-23],[0,-49],[0,-13],[2,-1],[1,1],[0,1],[1,4],[1,42],[1,7],[0,5],[1,7],[0,12],[-2,30],[2,27],[2,1],[3,-3],[0,12],[0,3],[0,20],[-1,26],[-2,5],[-2,0],[-1,0],[-2,27],[0,17],[0,36],[-1,15],[0,-2],[-1,7],[0,32],[-2,28],[0,42],[2,44],[2,13],[0,-18],[-3,-56],[0,-17],[0,-11],[0,-5],[0,22],[2,24],[3,26],[0,5],[9,29],[0,32],[4,25],[1,5],[4,2],[1,1],[1,11],[0,5],[0,10],[-1,16],[-2,-6],[1,22],[0,21],[0,31],[1,9],[0,29],[1,13],[3,24],[3,32],[3,36],[2,21],[1,26],[0,2],[2,-25],[5,-1],[3,-26],[1,-14],[2,8],[0,22],[-1,14],[-1,-6],[-2,12],[-1,14],[0,17],[-2,12],[1,32],[7,64],[0,17],[4,29],[3,1],[5,60],[10,69],[2,15],[0,8],[1,13],[-3,7],[-2,-6],[-8,-35],[-4,-2],[-1,24],[1,6],[2,24],[0,7],[-1,20],[-2,-14],[-1,-6],[-6,-31],[-3,7],[-6,-5],[-2,-10],[-2,0],[-2,-19],[-2,-15],[-3,-3],[-2,-12],[-2,-13],[-3,-17],[-2,-22],[-1,-13],[-2,-8],[-2,-8],[-4,-35],[-3,-26],[0,-3],[-2,-13],[-2,-14],[-4,-39],[-1,-17],[-1,-16],[-1,-6],[-3,-15],[-5,-32],[-1,-8],[-3,-27],[-2,-8],[-11,-80],[-6,-33],[-4,-41],[-7,-5],[-3,-7],[-2,1],[-1,-1],[-1,-3],[-2,-5],[-1,-5],[-1,-7],[-1,-6],[-2,-3],[-1,-4],[0,-4],[-1,-2],[-1,-3],[0,-2],[-2,-5],[0,-4],[-1,-4],[-1,-4],[-1,-3],[0,-5],[-1,-6],[0,-13],[-1,-18],[0,-11],[0,-10],[0,-13],[-1,-10],[-1,-11],[-1,-9],[-1,-5],[0,-6],[-1,-6],[-1,-5],[-1,-2],[-1,-1],[0,-4],[-1,-5],[-1,-5],[-1,-4],[-1,-4],[-1,0],[-1,2],[-1,0],[-1,-3],[1,-13],[4,-14],[1,-5],[0,-4],[1,-3],[2,-4],[1,-10],[1,-9],[2,-23],[3,-31],[2,-28],[2,-14],[2,-7],[1,-4],[1,0],[1,-9],[-1,-13],[-1,2],[-1,7],[0,2],[-2,0],[-2,12],[-3,23],[-1,17],[-4,36],[-3,19],[0,11],[-1,5],[-1,7],[-1,5],[-3,15],[0,2],[-1,4],[-1,4],[0,3],[-1,2],[-1,1],[-2,-3],[-1,-5],[0,-2],[-1,1],[-1,-1],[0,-2],[-1,2],[-1,7],[-1,3],[-1,6],[-1,6],[-1,5],[-2,1],[0,1],[-2,1],[-2,2],[-1,4],[-1,2],[-1,2],[-1,3],[-1,4],[-1,3],[-1,1],[-1,1],[-1,-1],[-2,2],[-1,4],[0,-1],[-1,0],[-1,5],[-1,6],[-2,5],[-2,7],[-1,-6],[-3,21],[-2,10],[-3,14],[-4,23],[-7,47],[-10,79],[-14,89],[-9,79],[-1,24],[-5,70],[-2,52],[-2,32],[0,17],[-1,26],[0,22],[0,15],[0,14],[0,17],[1,11],[0,-17],[0,-19],[1,-3],[1,6],[0,14],[0,14],[-1,1],[0,12],[1,44],[1,22],[2,32],[4,60],[0,27],[2,35],[1,27],[2,61],[1,28],[0,35],[1,41],[1,65],[3,51],[4,43],[6,100],[2,54],[0,22],[2,58],[0,12],[4,158],[2,105],[0,1],[0,22],[1,19],[1,16],[0,21],[1,24],[1,18],[0,15],[1,19],[0,7],[1,5],[1,10],[1,10],[2,18],[1,10],[1,14],[1,11],[1,13],[1,9],[1,6],[0,11],[1,4],[0,7],[1,8],[1,12],[1,17],[0,9],[1,12],[2,23],[1,8],[0,10],[1,11],[1,10],[1,12],[0,10],[1,24],[1,13],[2,14],[1,10],[1,10],[2,11],[2,18],[3,28],[4,43],[2,11],[3,20],[3,37],[5,47],[3,48],[5,64],[9,116],[1,9],[2,26],[4,46],[3,28],[4,76],[1,53],[1,25],[1,24],[1,32],[0,30],[1,28],[1,40],[1,108],[0,66],[-1,31],[1,29],[-1,20],[0,21],[0,22],[1,28],[0,16],[0,14],[0,28],[0,32],[0,17],[1,13],[1,15],[1,15],[1,9],[1,5],[2,4],[0,4],[2,3],[1,6],[3,7],[1,5],[1,7],[1,7],[1,9],[1,7],[0,8],[1,3],[1,-2],[1,-4],[1,-9],[1,-3],[1,7],[-1,9],[0,7],[0,8],[0,10],[0,16],[1,27],[0,13],[0,20],[0,26],[0,13],[1,12],[0,14],[0,14],[0,13],[1,28],[0,19],[0,10],[1,20],[0,24],[0,27],[0,33],[0,23],[0,16],[0,29],[0,24],[0,20],[1,10],[0,18],[0,15],[0,13],[0,18],[0,16],[0,17],[0,24],[0,15],[0,13],[0,14],[0,13],[1,22],[1,18],[0,9],[0,13],[1,17],[0,18],[1,18],[1,9],[0,14],[1,0],[1,1],[1,2],[2,1],[1,0],[1,-2],[1,-9],[0,-10],[-1,-4],[-2,-6],[-1,-3],[-1,-6],[-1,-8],[0,-15],[0,-15],[1,-18],[0,-16],[1,-15],[1,-8],[1,-3],[1,-1],[1,2],[1,4],[0,6],[1,5],[0,6],[1,3],[1,1],[1,2],[1,0],[1,1],[0,2],[2,7],[-2,3],[-1,0],[-1,1],[-2,-1],[-1,-3],[-1,-5],[0,-4],[-1,-6],[-1,-7],[-1,1],[-1,7],[0,10],[-1,14],[0,15],[0,16],[1,7],[1,1],[1,1],[1,2],[1,4],[1,5],[1,7],[0,9],[0,14],[-1,9],[0,7],[-1,6],[-1,4],[-1,3],[-1,3],[-1,1],[-1,0],[-1,-3],[-1,-3],[0,-5],[-1,-2],[-1,-3],[-2,-1],[-1,4],[0,5],[-1,4],[0,3],[-1,4],[-1,5],[-1,10],[-1,7],[-1,4],[-1,3],[0,4],[-1,8],[-1,9],[-2,12],[-1,11],[-1,12],[0,10],[-1,8],[-1,11],[0,10],[-1,9],[-1,15],[0,13],[0,13],[-1,16],[0,14],[-1,15],[0,17],[0,11],[0,9],[0,12],[-1,14],[0,16],[0,15],[0,17],[0,20],[-1,13],[0,17],[-1,17],[0,9],[0,14],[-1,12],[0,13],[-1,15],[0,11],[0,14],[-1,15],[-1,14],[0,10],[-1,10],[-1,12],[-1,11],[-1,13],[-1,16],[-1,17],[-1,19],[-1,12],[0,14],[-1,14],[0,12],[0,11],[-1,9],[-1,12],[0,10],[0,12],[0,11],[-1,14],[0,10],[0,26],[0,25],[0,14],[0,5],[1,7],[1,4],[2,6],[0,7],[1,9],[1,5],[1,6],[1,5],[1,5],[1,3],[1,1],[1,4],[1,7],[1,4],[1,1],[0,1],[2,2],[1,3],[2,2],[1,3],[1,2],[1,1],[1,2],[1,2],[1,2],[2,3],[1,4],[1,3],[2,8],[1,6],[2,6],[1,8],[1,7],[2,11],[1,12],[1,20],[1,14],[0,16],[-1,24],[1,14],[2,12],[2,7],[2,9],[3,5],[4,11],[2,0],[4,-1],[2,3],[5,4],[7,4],[1,1],[1,0],[2,2],[5,3],[3,7],[3,5],[2,-1],[2,4],[3,4],[2,10],[5,21],[3,19],[0,15],[1,16],[1,12],[2,15],[2,15],[2,7],[1,10],[2,9],[1,15],[2,17],[1,10],[3,16],[4,20],[2,14],[5,35],[1,11],[1,6],[5,33],[3,29],[0,14],[2,9],[2,15],[2,15],[2,14],[1,11],[2,15],[3,16],[3,19],[2,14],[2,18],[2,14],[1,15],[2,21],[1,9],[5,40],[5,38],[3,26],[6,36],[4,31],[1,17],[2,19],[2,26],[1,19],[1,14],[1,6],[1,4],[2,7],[3,9],[4,18],[6,23],[5,20],[3,20],[2,18],[3,10],[2,14],[5,18],[2,13],[8,47],[6,36],[4,14],[6,18],[6,37],[5,33],[4,28],[2,9],[1,0],[2,1],[2,4],[1,-2],[2,-14],[3,-20],[3,-38],[4,-60],[3,-62],[2,-49],[4,-61],[3,-53],[3,-52],[4,-41],[5,-46],[2,-14],[2,-12],[3,-17],[5,-17],[3,-8],[4,-2],[2,-6],[3,-9],[6,-10],[5,-11],[1,-4],[2,2],[2,-1],[2,-8],[2,-5],[2,-2],[2,1],[3,-6],[1,-7],[1,-12],[1,-12],[2,-6],[0,-1],[1,6],[-1,8],[-1,11],[-1,29],[1,15],[2,10],[3,5],[3,9],[2,3],[2,1],[4,15],[4,7],[6,7],[6,15],[3,11],[2,11],[3,27],[2,32],[3,26],[2,26],[4,24],[1,4],[1,8],[5,7],[2,-15],[1,3],[3,3],[3,4],[2,-7],[3,2],[3,-2],[2,6],[1,-21],[2,-6],[1,-1],[1,-1],[0,-2],[1,-3],[1,-4],[1,-5],[0,-4],[3,-6],[2,-4],[1,-1],[1,1],[1,2],[0,-2],[1,-9],[4,-23],[4,-21],[1,1],[1,-2],[0,-6],[0,-14],[1,-13],[1,-18],[0,-9],[2,-21],[1,-8],[2,-17],[2,0],[6,-2],[4,15],[9,38],[3,-4],[2,-6],[4,-12],[1,-11],[3,-10],[3,-4],[3,-9],[3,-12],[3,-3],[2,-13],[2,-9],[2,-15],[1,-16],[3,-16],[2,-10],[1,-5],[2,-21],[2,30],[4,12],[1,-13],[3,-22],[5,-17],[10,-6],[12,2],[12,4],[1,-15],[1,-12],[2,-10],[3,-2],[5,-3],[1,-1],[1,3],[1,1],[1,1],[1,3],[1,-1],[1,-3],[1,-5],[1,-5],[1,0],[1,-1],[1,-7],[1,-10],[0,-4],[1,-11],[1,0],[1,-6],[0,-5],[1,-2],[1,0],[1,2],[1,2],[0,1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-4],[1,-1],[0,-3],[1,-7],[1,-10],[1,-18],[3,-14],[5,-12],[2,-14],[1,-20],[2,-15],[0,-27],[2,-18],[0,-9],[-1,-4],[1,-17],[1,0],[1,-1],[-1,14],[1,0]],[[7850,49451],[-5,-13],[-6,-28],[-4,-24],[-3,-34],[-3,-53],[-5,-66],[-2,-25],[-2,-45],[-4,-86],[-2,-28],[-3,-53],[-1,-3],[-1,2],[-1,1],[-2,-17],[0,-8],[1,-14],[1,-1],[0,-40],[-2,-36],[0,-9],[-1,-10],[0,-10],[-1,-7],[0,-10],[-1,-11],[-1,-8],[0,-12],[-1,-14],[-2,-19],[-1,-13],[-1,-13],[-1,-7],[-1,-6],[-1,-4],[-1,-4],[-1,-4],[-2,-4],[-1,0],[-3,-5],[-2,-2],[-1,-3],[-2,-1],[-4,-1],[-1,-2],[-2,0],[-2,-2],[-8,-15],[-4,-6],[-3,-13],[-1,-10],[-1,-23],[-2,-22],[-2,-19],[-1,-12],[-2,-12],[-1,-8],[-2,-8],[-4,-3],[-9,13],[-6,4],[-2,1],[-6,1],[-4,-3],[-2,-1],[-2,-5],[-2,-3],[-3,-21],[-2,-17],[-3,-7],[-2,-11],[-2,-11],[-1,-11],[-3,-16],[-3,-24],[-3,-29],[-4,-26],[-2,-14],[-3,-18],[-1,-12],[-2,-17],[-2,-15],[-2,-7],[-1,-9],[-1,-16],[-1,-14],[-1,-5],[-1,-11],[-1,-7],[0,-11],[-1,-11],[-2,-27],[-3,-18],[-1,-5],[-1,-6],[-1,-14],[0,-11],[-2,-17],[-2,-11],[-1,-7],[-1,-5],[-1,0],[-2,2],[-1,0],[-5,7],[-2,12],[0,25],[0,46],[-1,32],[-2,-4],[-1,-54],[1,-84],[6,-53],[-1,-22],[-3,-37],[-5,-42],[-3,-27],[-2,-18],[-3,-26],[-3,-28],[-1,-27],[-1,-20],[1,-74],[3,-81],[2,-59],[3,-43],[2,-25],[3,-40],[2,-40],[3,-72],[3,-61],[3,-76],[2,-30],[0,-23],[0,-17],[0,-14],[-1,-17],[0,-19],[-1,-8],[-1,-8],[-1,-3],[-1,0],[-4,5],[-2,5],[-2,9],[-1,18],[-2,18],[-3,14],[-3,12],[-3,5],[-1,2],[-2,4],[-1,7],[-1,9],[-2,24],[-1,26],[-3,25],[-1,10],[-3,16],[-1,7],[-2,-2],[-1,-2],[-1,-11],[1,-17],[1,-11],[1,-22],[1,-13],[1,-18],[-3,-16],[-3,-20],[-3,-9],[-1,-1],[-1,2],[-2,-16],[-2,-5],[-1,-3],[-2,10],[-1,15],[-1,-5],[-1,-47],[-1,-23],[0,-3],[-3,-18],[-2,-10],[-2,-4],[-1,-14],[-2,-9],[-4,-32],[-3,-31],[-2,-16],[-1,-7],[-1,2],[-1,4],[-1,-6],[0,-19],[-1,-18],[-3,-16],[-1,-11],[-1,-11],[-2,-11],[-1,-9],[-1,0],[0,35],[0,41],[1,25],[1,27],[-1,14],[-1,3],[-1,12],[-2,13],[-3,7],[-1,3],[2,-21],[2,-12],[1,-7],[1,-9],[1,-23],[-1,-15],[-2,-48],[0,-29],[0,-29],[1,-16],[1,-7],[0,-17],[0,-19],[-1,-13],[-1,-8],[-2,-7],[0,-14],[-2,-17],[-1,-8],[0,-19],[-1,-27],[-1,-19],[-1,-20],[-1,-28],[-1,-30],[-1,-24],[-1,-21],[-1,-19],[-1,-14],[-1,-4],[-2,-4],[-2,3],[-1,16],[-2,7],[-2,6],[-1,0],[-1,-5],[2,-11],[1,-12],[1,-19],[0,-16],[0,-13],[-2,-12],[-2,-5],[-1,0],[0,1],[-2,2],[-1,1],[-2,-7],[-1,-2],[-4,-17],[-2,-10],[-3,-25],[-4,-31],[-5,-39],[-3,-32],[-3,-29],[-2,-15],[0,-14],[-1,-14],[-1,-7],[-1,-7],[-1,-5],[-1,-16],[-2,-22],[-3,-35],[-2,-22],[-1,-33],[-1,-33],[-1,-12],[0,-18],[0,-19],[-2,-30],[-1,-18],[0,-29],[0,-35],[0,-40],[0,-47],[2,-41],[2,-46],[1,-26],[2,-20],[1,-10],[2,-10],[2,-9],[3,-8],[2,-15],[3,-17],[2,-20],[2,-9],[2,-4],[1,-8],[-1,-14],[-4,-19],[-2,-11],[-4,-31],[-1,-9],[-3,-21],[-2,-11],[-1,-5],[-1,-10],[-1,-6],[0,-11],[-1,-8],[-1,-1],[0,-15],[-3,-3],[-4,-4],[-4,-9],[-3,-10],[-1,-4],[-1,-16],[-2,-22],[0,-25],[0,-21],[-1,-21],[-1,-21],[0,-34],[0,-26],[-1,-27],[0,-18],[-1,-23],[-1,-13],[-1,-11],[-1,-17],[-1,-17],[-1,-13],[-3,-12],[-4,0],[-2,2],[-2,-4],[-2,-5],[-1,-14],[-2,-11],[-1,-4],[-3,-17],[-4,-31],[-3,-30],[-3,-29],[-3,-26],[-1,-21],[-2,-27],[-1,-32],[-1,-17],[-1,-22],[-1,-8],[-1,-7],[0,2],[-1,-10],[-3,-3],[-3,-2],[-1,1],[-4,-6],[-3,-4],[-3,-6],[-1,0],[-1,2],[0,9],[0,3],[1,0],[2,2],[0,-2],[2,-1],[0,3],[0,11],[0,3],[-2,-2],[-1,4],[-2,0],[-2,-3],[-1,4],[-1,17],[-1,23],[-1,17],[-2,12],[0,11],[-2,10],[-1,5],[-2,0],[-2,-10],[1,-10],[1,-6],[0,-7],[0,-10],[0,-10],[-1,-4],[-1,-2],[-1,12],[-1,8],[-1,8],[-1,11],[-1,-1],[-1,-6],[-1,4],[-1,-1],[-1,8],[-1,10],[-2,1],[0,-10],[0,-14],[-1,-11],[-1,-7],[0,-4],[-1,10],[-1,-1],[-1,-12],[1,-3],[0,-1],[0,-13],[1,-10],[0,-5],[-1,-15],[-1,2],[-1,6],[-2,13],[-1,13],[-1,-3],[-1,-8],[-2,-7],[-1,-1],[-2,-1],[-1,-2],[-3,12],[-3,17],[-3,8],[-3,9],[-1,0],[-1,1],[0,13],[-1,27],[0,25],[1,12],[1,-7],[2,-4],[2,8],[3,-1],[2,-7],[1,-6],[1,-9],[1,-12],[2,-10],[1,0],[1,12],[-1,9],[-1,8],[-1,9],[0,14],[-1,7],[-1,3],[-1,0],[-1,9],[-1,7],[-1,4],[-3,0],[-1,-3],[-1,-5],[-1,-2],[-2,2],[-2,1],[-2,5],[-1,2],[-1,-8],[-1,-10],[-1,-13],[-2,-3],[0,-4],[0,-9],[1,-8],[1,-8],[0,-7],[-2,4],[-1,4],[-1,13],[0,13],[-1,4],[-1,6],[-1,19],[1,26],[-1,11],[-1,15],[1,34],[1,27],[0,18],[-1,20],[-1,26],[-2,15],[-1,6],[-1,1],[-2,10],[-3,12],[-2,3],[-2,8],[-1,6],[-3,-2],[-2,-1],[-2,0],[-1,0],[-1,-7],[-3,-10],[-1,-6],[-2,2],[-1,9],[-1,-3],[-4,-2],[-3,-9],[-3,-4],[-3,-10],[-4,-16],[-3,-18],[-1,-8],[-4,-28],[-9,-82],[-8,-93],[-4,-52],[0,-30],[9,20],[3,2],[9,45],[5,59],[-2,85],[5,60],[8,2],[4,-40],[4,-36],[3,10],[5,15],[0,3],[3,-3],[5,43],[1,4],[1,1],[0,5],[2,3],[1,5],[1,-1],[1,-14],[-1,-9],[0,-7],[0,-14],[1,-10],[0,-2],[2,-8],[0,-21],[0,-15],[-1,-10],[-2,-15],[-1,-22],[0,-20],[0,-16],[0,-16],[0,-11],[3,-18],[0,-8],[2,-11],[1,-8],[1,-4],[1,-10],[1,-8],[1,-22],[0,-11],[1,-7],[2,-4],[0,-3],[1,-5],[1,-10],[1,-5],[2,-3],[1,-4],[1,-6],[1,-14],[2,-13],[1,-9],[1,7],[1,6],[1,-6],[1,-10],[0,-17],[4,-15],[3,-8],[2,-2],[1,2],[1,2],[2,-10],[1,-7],[2,0],[2,-3],[1,-5],[1,-14],[1,-7],[2,-4],[1,-2],[1,0],[0,-1],[0,-14],[0,-8],[1,-7],[0,-10],[0,-10],[1,-7],[1,-14],[1,-6],[1,-1],[2,-13],[3,-19],[2,-8],[4,2],[1,5],[1,1],[1,-9],[-1,-11],[-1,-8],[1,-17],[1,-12],[1,-16],[-1,-12],[-1,-20],[-1,-16],[-1,-15],[0,-9],[1,-8],[2,-15],[2,-10],[1,-7],[0,-7],[1,-14],[0,-12],[1,-6],[2,-11],[3,-8],[2,-10],[1,-19],[1,-11],[2,-7],[2,-6],[1,-10],[2,-10],[1,-10],[1,-16],[1,-17],[1,-19],[1,-17],[0,-8],[1,-6],[1,-10],[1,-14],[0,-16],[1,-23],[0,-17],[-1,-14],[-1,-20],[0,-21],[1,-26],[-1,-18],[-1,-17],[-1,-20],[-2,-24],[-1,-13],[-1,-14],[-1,-13],[-1,-14],[0,-7],[-1,6],[-3,11],[-1,3],[-1,-3],[-1,-4],[1,-11],[1,-15],[0,-17],[1,-2],[0,-9],[1,1],[1,-3],[0,-7],[1,11],[1,3],[1,-1],[-1,-21],[-2,-17],[-2,-19],[-2,-23],[-1,-2],[-6,-57],[-8,-100],[-3,-131],[-1,-44],[0,-14],[-2,-24],[0,-23],[-1,-25],[-7,-35],[-4,-20],[-7,-17],[-7,-20],[-2,-26],[-1,-8],[-1,-41],[-1,-5],[1,-10],[-6,-9],[-1,11],[-3,-3],[-2,-9],[-2,-8],[-3,4],[-1,8],[-2,14],[0,8],[-1,4],[-4,-4],[-5,-13],[-1,-8],[-4,-5],[-4,1],[1,9],[-1,12],[-6,14],[-4,1],[-1,2],[-4,11],[-2,-1],[-1,-1],[-2,0],[-4,-7],[-4,-14],[0,-4],[-3,-14],[-2,-23],[-3,-13],[-4,-6],[-4,-13],[-2,-4],[-3,-5],[-4,-9],[-1,0],[-3,-7],[0,4],[-1,1],[-1,1],[-2,-4],[-2,-5],[-2,11],[-1,6],[-2,8],[0,-8],[0,-19],[-1,-6],[-2,8],[-2,5],[-2,3],[-1,4],[-1,-16],[0,-13],[-1,-24],[-1,-12],[-2,-18],[-3,-31],[-2,-23],[-3,-25],[-2,-8],[-1,-9],[0,-10],[-1,-15],[-1,-16],[0,-15],[1,-9],[1,-13],[0,-7],[2,3],[1,-2],[2,-2],[1,1],[1,13],[1,8],[2,17],[2,17],[5,14],[5,-2],[1,2],[2,-2],[2,-10],[2,-20],[4,-22],[3,-2],[0,-8],[1,-15],[1,-6],[1,6],[1,6],[3,12],[2,6],[1,10],[2,24],[2,21],[1,11],[2,12],[3,19],[2,-3],[1,-5],[2,-2],[3,5],[2,5],[3,-1],[3,5],[3,-17],[2,-24],[1,-31],[0,-18],[1,-8],[1,-16],[0,-19],[-1,-26],[0,-31],[0,-22],[0,-16],[-1,-17],[0,-18],[-1,-9],[0,-20],[-3,-52],[-2,-65],[0,-53],[-2,-29],[-1,-56],[-2,-46],[-1,-24],[-1,-21],[0,-24],[-1,-26],[-1,-18],[-1,14],[-3,-4],[-2,-25],[-4,-22],[-3,-19],[-3,-10],[-1,-4],[-2,2],[-1,12],[-2,8],[0,-4],[-3,-36],[-1,-35],[1,-19],[-1,-21],[-2,-22],[-4,-13],[-5,-35],[-5,-32],[-3,-19],[-1,6],[-2,-6],[-3,-6],[-1,-3],[-2,11],[-2,18],[-1,16],[-1,9],[-2,53],[-1,33],[-1,32],[-3,15],[-4,-8],[-3,-15],[1,-25],[1,-48],[1,-18],[-1,-20],[2,-34],[0,-19],[-1,-8],[-1,-16],[-1,-10],[-3,-4],[-3,-13],[-1,-3],[-3,-1],[-2,18],[-2,19],[-2,24],[-2,8],[-3,13],[-2,4],[-3,-7],[-2,-4],[-1,4],[-1,6],[-1,21],[1,23],[0,13],[3,19],[3,24],[3,42],[0,52],[0,36],[1,20],[4,23],[-1,30],[-2,37],[0,37],[2,1],[2,10],[3,30],[3,-8],[2,-3],[-1,22],[-1,16],[0,2],[-1,15],[-1,12],[0,-1],[-1,-2],[-1,9],[-2,-20],[-4,1],[-2,35],[-2,26],[-2,18],[-1,14],[-2,2],[-1,14],[-1,9],[0,44],[-1,20],[-2,30],[-3,30],[-1,21],[-1,12],[-3,47],[-2,1],[0,-16],[1,-23],[1,-46],[-1,-39],[0,-10],[-1,-27],[3,-106],[0,-67],[3,-79],[0,-60],[-1,-56],[-3,-59],[-2,-89],[0,-22],[-1,-20],[-3,-44],[-2,-16],[-6,-19],[-1,-6],[-1,8],[0,23],[-1,-7],[-1,-19],[-1,-10],[0,3],[-1,-14],[-2,-12],[-1,-8],[-2,13],[-1,-13],[0,-15],[-2,-5],[-1,18],[0,24],[-1,36],[-3,28],[-2,26],[-1,6],[-2,9],[-1,6],[0,20],[-1,25],[1,32],[-1,17],[-2,9],[1,18],[1,19],[2,40],[1,27],[-1,12],[-1,-9],[-2,-15],[-1,-25],[-1,-18],[-3,2],[-1,-4],[0,-16],[2,-10],[-1,-15],[-1,-25],[-1,-22],[0,-63],[1,-42],[-1,-10],[-1,3],[-1,-1],[-2,-9],[-1,-3],[-2,-10],[0,15],[-3,-8],[-3,-7],[-3,3],[-1,2],[-1,1],[-1,-13],[-1,-9],[-2,-9],[1,-5],[2,-1],[0,-14],[-2,-15],[2,-12],[2,-1],[2,-4],[2,-10],[2,13],[4,17],[4,7],[1,-8],[2,11],[2,2],[1,0],[1,-7],[1,-36],[2,-17],[0,-13],[3,-23],[2,-8],[2,-4],[3,-7],[1,-6],[1,-1],[1,-15],[1,-28],[-1,-45],[-3,-53],[-2,-50],[-1,-57],[-3,-21],[-4,3],[-4,3],[-3,1],[-2,14],[-5,-1],[-4,-9],[-8,-12],[-7,-5],[-4,-16],[-4,-12],[-3,-6],[-3,-36],[-1,-39],[-1,-7],[-2,32],[-1,35],[1,14],[-2,7],[-2,3],[-4,19],[-2,10],[-3,-14],[-4,-12],[-3,-6],[-1,-2],[1,-11],[2,1],[6,-6],[4,-13],[3,-19],[2,-8],[1,0],[0,-21],[1,-8],[1,-8],[3,-3],[1,-6],[1,-6],[2,-16],[1,-28],[3,-23],[3,-15],[2,-20],[1,-31],[1,-26],[2,-22],[2,-39],[1,-43],[1,-15],[0,-12],[-3,-25],[-3,-11],[-2,-10],[-3,-27],[0,-18],[1,-20],[3,-15],[-1,-16],[-2,-12],[-3,-16],[-3,3],[-4,-7],[-5,-25],[-5,-21],[-3,-4],[-2,-3],[-5,10],[-5,20],[-5,-16],[-3,-13],[-2,1],[-4,-24],[-4,-42],[-3,-44],[-3,-51],[0,-4],[-1,-3],[0,10],[-1,29],[-2,22],[-3,3],[-1,-5],[-1,3],[-3,-2],[-2,-8],[1,-12],[3,-7],[0,-13],[-3,-13],[-1,-6],[-3,-11],[-1,-25],[-2,-11],[-2,31],[-3,24],[-2,9],[-2,-5],[-3,-22],[-4,-40],[-3,-33],[-4,-10],[-2,12],[-1,8],[-3,9],[-3,8],[-1,5],[0,12],[0,-32],[1,-30],[2,-12],[-1,-15],[1,-13],[2,5],[2,-32],[2,-34],[1,-1],[2,0],[4,10],[2,10],[2,1],[1,-6],[4,14],[4,23],[4,-4],[3,-3],[3,5],[3,5],[2,14],[-1,15],[-1,-3],[-1,21],[0,15],[1,16],[2,-25],[1,-15],[1,-12],[3,7],[1,-5],[2,1],[2,1],[-2,-25],[-3,-8],[-2,-6],[-4,-22],[-5,-32],[-3,-31],[-2,-33],[-4,-23],[-6,-19],[-7,-37],[-5,-33],[-4,-35],[-3,-60],[-1,-55],[-2,-21],[0,-27],[-1,-20],[1,-106],[-1,-60],[0,-34],[0,-13],[-1,-18],[1,-13],[2,-15],[1,20],[1,-3],[1,-21],[-1,-21],[0,-33],[-1,-16],[-1,0],[-4,14],[-2,-8],[-4,-17],[-3,-14],[1,-29],[2,-30],[-2,-30],[-1,-5],[-4,-16],[-4,-5],[-5,10],[-1,-17],[-3,-8],[0,-24],[-1,-12],[1,-7],[3,9],[2,9],[2,-13],[-1,-25],[-1,-7],[-1,-5],[-2,-7],[-2,1],[-1,-10],[-1,-9],[-2,-8],[-2,3],[-1,-23],[1,-51],[2,6],[1,2],[1,-24],[-1,-15],[-4,-11],[2,-6],[1,-20],[1,-13],[1,15],[1,22],[4,30],[6,-1],[4,-4],[3,-5],[2,-16],[0,-49],[2,-48],[-1,-8],[-3,-12],[-4,-33],[2,-19],[4,21],[2,2],[-2,-36],[0,-7],[-4,-36],[-2,-26],[-1,-36],[2,-4],[3,31],[0,-6],[-1,-55],[-2,-27],[0,-28],[3,-52],[2,-40],[-1,-10],[0,-7],[1,-1],[2,-13],[0,-7],[1,-11],[0,-30],[0,-6],[0,-2],[1,1],[0,23],[0,25],[2,5],[3,1],[3,36],[0,8],[3,18],[1,15],[2,10],[2,34],[2,22],[1,18],[5,70],[2,19],[1,12],[4,-1],[4,1],[0,8],[4,-4],[3,0],[3,-8],[5,-6],[4,-8],[4,-8],[5,-21],[5,-11],[4,-1],[5,-7],[2,-9],[4,-19],[3,-1],[1,0],[2,12],[3,23],[2,18],[2,6],[1,30],[2,7],[3,-4],[1,-16],[3,-10],[0,-10],[2,-12],[3,-8],[-2,-11],[-1,-16],[0,-7],[2,9],[2,4],[0,-32],[1,-11],[1,0],[0,7],[0,11],[0,3],[0,23],[0,21],[1,24],[3,7],[3,2],[1,-14],[0,-2],[0,5],[1,23],[1,13],[3,13],[1,0],[1,-4],[1,-29],[1,-23],[3,-33],[2,-34],[2,-45],[4,-59],[3,-31],[8,-80],[6,-44],[3,-21],[4,-23],[4,-25],[3,-8],[5,8],[9,84],[4,-42],[3,-26],[1,-22],[2,-21],[2,-68],[8,-2],[3,-38],[5,-55],[2,-67],[5,-31],[3,-4],[-5,-68],[-5,-28],[-5,-39],[-1,-19],[0,-21],[3,8],[3,-5],[-1,36],[9,40],[6,77],[1,-2],[1,3],[0,-62],[1,-100],[2,-17],[2,-7],[1,-9],[1,-5],[2,-6],[2,-12],[1,-6],[-1,-6],[-2,1],[-4,13],[-1,-2],[-3,-8],[-1,-9],[-2,2],[-1,-11],[0,-10],[-1,-6],[-3,-4],[0,-16],[0,-14],[1,0],[3,-4],[1,-11],[2,1],[1,-2],[3,-16],[2,-3]],[[11349,39042],[-1,-1],[-1,0],[-1,5],[1,6],[1,2],[1,-12]],[[11340,39032],[-1,-4],[0,2],[-3,13],[-3,16],[1,5],[1,-1],[5,-31]],[[11332,39067],[-1,-13],[-6,24],[0,12],[4,0],[0,-4],[1,-6],[1,-10],[1,-3]],[[11102,40309],[1,-3],[1,1],[1,-4],[8,-42],[1,-2],[1,1],[2,-3],[1,-1],[-1,-12],[1,-11],[-1,1],[-2,6],[-3,13],[-2,7],[-2,9],[-2,9],[-2,11],[-1,6],[-1,14]],[[11073,40615],[-1,-8],[-1,-4],[-2,3],[1,12],[3,-3]],[[10971,41536],[1,-17],[1,-10],[0,-23],[0,-28],[-1,-1],[-1,12],[0,-17],[-1,6],[-2,16],[0,4],[0,-36],[1,-12],[-1,-4],[-1,4],[-1,5],[0,-14],[0,-14],[1,-17],[2,-18],[-1,0],[-1,11],[-2,16],[-1,21],[-1,24],[1,24],[-1,11],[-1,18],[2,13],[2,6],[1,11],[1,7],[1,-2],[1,2],[1,2]],[[10991,41527],[-1,5],[0,11],[0,-5],[-1,-1],[-1,7],[0,11]],[[10988,41555],[1,9],[0,-1],[1,3],[1,2],[0,-9],[1,-11],[0,-14],[-1,-7]],[[10988,41555],[-1,-1],[0,9],[-1,14],[-1,8],[1,12],[0,12],[1,13],[1,2]],[[10988,41624],[0,-17],[-1,-14],[1,1],[0,-10],[0,-5],[-1,-12],[1,-12]],[[10971,41536],[0,17],[0,13],[1,7],[1,4],[0,18],[1,26],[1,14],[1,12],[1,12],[1,-2],[0,-6],[1,-5],[1,-13],[-1,-4],[-1,-4],[1,-5],[1,-4],[0,6],[1,-10],[1,-1],[0,13],[0,3],[0,-17],[0,-17],[0,-18],[0,-23],[-1,-8],[1,-19],[1,9],[1,1],[1,-3],[0,-10],[1,0],[0,-10],[0,-2],[-1,5],[-1,-23],[0,-5],[-1,3],[-1,3],[-1,9],[0,14],[-1,2],[-1,8],[-1,8],[0,11],[0,13],[0,12],[0,18],[-1,4],[0,-9],[1,-11],[-1,-9],[-1,-9],[1,-32],[1,-10],[1,-12],[0,-20],[-1,3],[0,13],[-1,-8],[-1,17],[0,22],[0,15],[-1,-3],[0,-19],[-2,6],[-1,18],[-1,-1],[0,-7]],[[10988,41624],[1,13],[0,10],[1,7],[0,13],[1,5],[1,5],[0,2],[1,-2],[1,-4],[1,0],[1,-3],[0,-13],[2,-11],[0,-9],[0,-12],[-1,-8],[0,-20],[1,-17],[0,-15],[0,-19],[0,-11],[-1,-7],[-1,2],[0,2],[-1,2],[-1,5],[-1,8],[0,14],[1,6],[0,13],[1,16],[-1,12],[-1,11],[0,10],[-1,11],[-1,4],[0,-18],[-1,-2],[-1,-6],[-1,6]],[[11003,41719],[1,-2],[1,1],[1,-7],[-2,-21],[-1,-15],[0,-8],[-1,5],[-1,4],[0,3],[-1,4],[-4,25],[0,10],[1,11],[1,11],[1,10],[1,3],[0,-6],[1,-14],[2,-14]],[[10988,41755],[-1,-16],[-1,-18],[0,-15],[-1,-3],[0,8],[-1,7],[1,26],[-1,-6],[-2,-10],[0,-13],[0,-16],[1,-14],[-1,3],[-1,1],[-1,-5],[-1,-2],[0,16],[1,26],[1,14],[0,7],[2,11],[2,10],[2,7],[1,0],[1,-9],[-1,-9]],[[11001,41767],[-1,-4],[0,5],[-1,9],[0,15],[1,9],[1,-5],[1,-9],[0,-11],[-1,-9]],[[10999,41856],[-1,-8],[-1,1],[-1,9],[0,24],[0,21],[1,5],[1,-2],[1,-4],[0,-13],[-1,-15],[1,-18]],[[11043,42067],[-1,-2],[-1,9],[1,9],[1,1],[1,-1],[1,-10],[-1,-5],[-1,-1]],[[11035,42105],[-5,-6],[-2,4],[-4,15],[0,4],[-2,11],[-1,14],[-1,18],[5,82],[1,2],[1,11],[1,5],[2,4],[0,-19],[1,-10],[2,-20],[2,-11],[1,-5],[1,-22],[1,-7],[2,-7],[1,-1],[0,-13],[-1,-25],[-1,-10],[-1,-2],[0,-7],[-1,-1],[-2,-4]],[[10534,43323],[-4,-31],[-3,2],[0,9],[7,32],[0,-12]],[[11039,43382],[0,-13],[-2,14],[-1,12],[-1,17],[1,7],[1,6],[2,5],[1,-12],[0,-16],[-1,-20]],[[11073,40615],[2,4],[0,9],[-1,4],[-1,2],[-1,3],[-1,6],[0,10],[-1,-3],[-1,-11],[-2,-13],[-2,-8],[-2,3],[-2,-1],[-2,-2],[-2,13],[-2,12],[-2,19],[1,-19],[3,-28],[0,-15],[-1,3],[-3,15],[-2,18],[-1,3],[-2,12],[-2,12],[-3,16],[-3,17],[-2,15],[0,11],[-1,17],[1,5],[1,4],[-3,11],[-2,2],[-2,14],[-1,17],[-1,13],[0,-2],[-2,7],[-1,3],[0,-9],[-1,3],[0,-4],[-1,1],[-1,2],[-1,1],[-1,-5],[2,-13],[1,-5],[1,-2],[1,-1],[2,-9],[2,-10],[1,-9],[-1,-4],[-2,-1],[-2,2],[-4,17],[-2,21],[-2,8],[-1,19],[-5,30],[-1,11],[-1,4],[-3,15],[-18,119],[-2,12],[-6,43],[-5,36],[-1,4],[-8,41],[-3,15],[-6,41],[-8,52],[-2,11],[-2,-1],[0,20],[-1,10],[-1,10],[0,9],[1,8],[1,7],[1,12],[0,13],[1,13],[2,17],[1,6],[1,-1],[1,-10],[3,-9],[2,-10],[1,-4],[0,-4],[1,-6],[0,-18],[1,-16],[2,-5],[2,1],[1,0],[3,2],[1,-3],[2,1],[2,7],[1,-1],[1,-3],[1,2],[1,3],[1,4],[1,-1],[1,8],[-2,9],[-1,4],[-1,7],[-1,5],[0,7],[-1,9],[1,13],[0,6],[0,17],[1,-11],[1,7],[1,12],[0,21],[1,2],[0,-12],[1,-8],[1,-7],[1,-7],[1,-4],[0,-6],[1,-6],[1,-4],[0,-1],[0,17],[-1,12],[1,13],[0,15],[0,15],[1,8],[1,7],[0,5],[1,21],[1,11],[-1,17],[0,14],[1,9]],[[10991,41527],[1,-6],[0,-1],[1,-8],[1,-3],[0,3],[1,-1],[1,-6],[1,-7],[0,-9],[-1,-17],[0,-14],[0,-14],[1,-16],[1,-6],[1,-9],[1,-12],[1,6],[0,2],[2,-1],[1,-4],[1,-2],[1,1],[1,8],[0,5],[-1,4],[-1,8],[-1,3],[-1,4],[0,5],[0,10],[1,7],[1,5],[1,2],[1,4],[1,4],[0,6],[1,5],[0,9],[0,12],[0,10],[1,14],[0,14],[2,0],[1,3],[1,3],[1,6],[2,8],[1,11],[2,8],[2,10],[1,22],[1,21],[-1,3],[-2,-2],[-1,-3],[-1,-7],[-1,1],[-1,6],[1,31],[2,19],[1,31],[1,36],[0,26],[1,7],[1,-2],[1,7],[2,9],[1,4],[1,14],[0,8],[1,28],[1,28],[1,13],[2,14],[1,16],[3,15],[1,12],[0,16],[1,9],[0,7],[0,10],[10,43],[1,7],[1,10],[0,10],[2,17],[0,17],[-2,19],[-2,9],[-2,17],[-2,14],[-8,75],[-5,90],[-1,17],[-1,19],[-1,31],[0,16],[-1,28],[-3,26],[-1,19],[0,12],[-1,14],[-1,28],[0,21],[-1,28],[-1,27],[-1,17],[1,34],[2,28],[-1,14],[-2,25],[-1,30],[-2,18],[-2,20],[0,16],[-1,25],[-1,37],[0,32],[0,27],[-1,24],[-1,20],[0,15],[1,14],[0,20],[0,29],[0,5],[10,48],[6,73],[2,11],[2,13],[1,10],[1,5],[1,6],[1,2],[1,41],[2,30],[1,60],[2,12],[0,21],[0,10],[2,8],[1,21],[0,13],[1,26],[-1,21],[9,-5],[7,-55],[2,-31],[2,-80],[5,-81],[4,-18],[2,-6],[1,-43],[2,-17],[1,-37],[1,-35],[3,-53],[7,-94],[3,-34],[4,-86],[0,-7],[-2,-24],[-2,-34],[-3,-41],[-1,-27],[-1,-7],[0,-22],[1,-23],[0,-19],[-1,-12],[-1,-9],[-1,-20],[-1,-38],[0,-32],[0,-47],[0,-46],[-1,-39],[1,-42],[1,-13],[1,-22],[0,-25],[0,-26],[2,-74],[1,-23],[0,-38],[2,-26],[2,-30],[2,-29],[0,-29],[1,-38],[-1,-19],[0,-13],[0,-12],[1,-14],[1,-24],[1,-32],[2,-20],[1,-15],[0,-43],[1,-21],[0,-34],[0,-11],[-1,-16],[3,-12],[1,-14],[-1,-12],[-1,-5],[-5,16],[-1,-6],[-1,-12],[2,-19],[0,-20],[-1,-8],[-2,4],[-2,2],[0,14],[-1,10],[-1,-1],[0,-23],[0,-4],[0,-12],[-1,-1],[0,-14],[0,-11],[-1,-1],[-1,14],[-2,11],[-1,2],[-1,4],[-1,-11],[-1,-19],[0,-26],[2,-13],[1,-20],[1,-8],[5,-35],[0,-2],[3,-24],[2,-18],[3,-27],[4,18],[7,36],[3,94],[0,7],[2,55],[1,3],[1,-7],[1,1],[1,0],[1,17],[-1,11],[0,28],[-1,24],[-1,23],[-2,36],[-1,30],[0,25],[-2,27],[-2,23],[-2,22],[-1,16],[1,24],[2,19],[0,14],[-1,11],[1,17],[1,30],[-1,21],[-2,41],[-3,26],[-2,30],[0,16],[-1,15],[-1,18],[0,18],[0,17],[-1,11],[0,15],[-2,5],[0,-20],[-1,-17],[0,10],[-2,35],[-1,36],[0,37],[0,30],[0,21],[2,2],[1,10],[1,14],[0,25],[3,25],[2,20],[2,8],[1,2],[1,-5],[1,8],[1,12],[1,-1],[0,12],[-1,10],[-1,15],[-1,13],[-1,4],[-2,14],[-1,20],[-1,23],[0,23],[0,18],[0,17],[-1,17],[0,13],[1,13],[2,16],[1,17],[1,1],[2,4],[3,7],[5,2],[2,3],[4,10],[1,9],[3,13],[4,12],[3,0],[1,7],[2,-1],[2,8],[2,4],[3,-14],[3,-11],[4,0],[2,1],[9,5],[2,1],[8,4],[22,-207],[2,-5],[2,5],[1,6],[1,-4],[8,-47],[5,11],[1,47],[-3,45],[-7,18],[-2,-8],[-5,11],[-7,42],[-3,32],[-2,29],[-3,34],[-2,21],[-2,12],[-3,7],[-3,9],[-2,-5],[-2,5],[-1,13],[-3,5],[-2,1],[-1,-7],[-3,-8],[-5,4],[-3,5],[-2,22],[-1,15],[-2,4],[-4,2],[-2,-4],[-2,-9],[-2,5],[-1,1],[-1,-3],[-12,-12],[-7,-7],[-5,79],[-1,13],[-8,99],[-24,342],[-1,-1],[-5,59],[-2,92],[0,5],[-2,14],[-7,8],[-8,8],[-4,31],[-2,41],[-2,64],[0,58],[-1,23],[0,30],[-4,1],[-2,-28],[-1,-5],[-1,-1],[-1,-3],[-1,-1],[-2,-3],[-2,-15],[1,-12],[0,-8],[-2,-47],[-1,-16],[-1,-7],[0,-18],[0,-2],[-1,-19],[0,-17],[-2,-16],[-2,-13],[-1,-6],[0,-1],[-1,-4],[-1,-17],[0,-7],[-1,-12],[-1,-9],[0,-21],[0,-1],[-1,-23],[0,-142],[-1,-36],[0,-29],[-4,-7],[-5,-26],[-1,-4],[-9,-35],[-8,-40],[-3,-31],[-2,-38],[0,-7],[-4,-70],[-5,-65],[-2,-30],[-2,-42],[-1,-82],[1,-6],[2,-43],[-4,-71],[-14,-16],[-1,-2],[-2,-7],[-3,-6],[-2,-18],[-2,-12],[-3,-8],[-3,-13],[-5,-22],[-3,-9],[-7,-41],[-1,5],[1,19],[-5,-13],[-1,-9],[-2,-10],[0,-5],[1,-4],[-7,-48],[-1,-3],[-2,-7],[-3,-15],[-4,-16],[-5,-46],[-7,-28],[-8,-23],[-2,-9],[-3,-7],[-3,-10],[-3,-9],[-2,-11],[-4,-19],[-2,-11],[-1,-9],[-1,-11],[-3,-51],[-2,-12],[-2,-17],[-2,-20],[-3,-15],[-3,-15],[-3,-10],[-4,-21],[-4,-13],[-4,-9],[-1,3],[0,-4],[-2,-2],[-1,0],[-3,-2],[-1,1],[-2,3],[-1,-1],[-1,0],[-6,6],[-6,0],[-8,8],[-3,4],[-3,3],[-3,4],[-4,4],[-3,4],[-6,3],[-2,3],[-11,10],[-1,1],[-5,4],[-1,1],[-19,17],[-2,0],[-3,-7],[-6,8],[-22,45],[-19,39],[-16,36],[-4,17],[-1,5],[-7,37],[-30,140],[-26,117],[-7,33],[-7,29],[-5,30],[-5,14],[-6,24],[-7,26],[-13,49],[-1,8],[-9,38],[-14,66],[-21,93],[-9,137],[-2,26],[2,47],[3,17],[2,-60],[2,-3],[6,5],[1,-16],[-3,-6],[-4,-26],[0,-53],[3,-39],[2,23],[2,36],[1,10],[1,6],[1,1],[1,11],[2,10],[1,4],[0,4],[2,-3],[1,20],[4,69],[1,3],[0,-19],[-1,-29],[0,-6],[0,-13],[6,23],[0,54],[0,6],[0,-3],[4,-7],[2,-6],[0,-1],[1,-2],[2,-6],[1,19],[3,10],[1,7],[1,5],[2,-9],[1,-6],[1,-1],[1,0],[0,44],[-1,36],[0,10],[0,11],[2,15],[0,9],[0,30],[1,3],[1,40],[3,43],[0,50],[1,5],[1,21],[-1,19],[0,2],[-3,46],[-6,145],[0,4],[-2,12],[-2,30],[-3,19],[-3,19],[-1,30],[3,-13],[1,-5],[2,4],[5,13],[3,14],[3,44],[0,24],[7,41],[2,20],[2,27],[1,10],[2,23],[3,2],[1,-1],[3,-2],[0,23],[0,1],[1,20],[2,9],[1,-12],[1,-4],[2,9],[1,7],[3,31],[3,51],[2,76],[0,30],[0,31],[-1,21],[-2,-10],[-2,-8],[-1,-3],[0,-2],[-4,-129],[-4,-30],[-2,-9],[-3,-7],[0,-1],[-6,-34],[0,-4],[-5,-30],[-5,-27],[-5,-19],[-6,-36],[-4,-4],[-5,1],[-1,-17],[-1,-6],[-1,1],[-2,18],[-1,47],[-2,17],[0,2],[-2,8],[0,31],[0,34],[0,57],[1,52],[1,35],[-4,71],[-3,21],[-8,-132],[-5,-30],[-6,35],[-4,26],[-8,48],[-4,-14],[-3,-49],[-1,-19],[0,-29],[0,-24],[0,-5],[1,-20],[0,-15],[3,16],[3,-11],[3,0],[1,-4],[1,0],[0,-19],[2,-7],[2,-22],[2,-37],[2,-21],[0,-1],[0,-9],[2,-27],[0,-4],[1,-6],[0,-10],[0,-10],[-2,-2],[-4,1],[-1,8],[-2,2],[-3,14],[-4,15],[-3,9],[-2,17],[-3,29],[-2,14],[-1,9],[-1,-3],[0,-17],[-1,-17],[0,-6],[3,-40],[1,-11],[2,-42],[2,-16],[1,-12],[1,3],[1,14],[1,0],[1,0],[3,0],[1,-10],[0,-9],[0,-6],[0,-16],[2,-22],[1,18],[0,3],[2,10],[2,16],[2,-7],[1,-21],[3,-8],[1,-1],[2,-4],[1,-1],[3,-6],[2,-4],[1,-17],[1,-27],[1,-8],[2,-9],[1,-30],[1,-5],[2,-13],[1,-21],[2,-29],[0,-9],[0,-6],[1,-9],[-1,-11],[-1,-12],[-2,-2],[-1,-12],[-3,-37],[-2,-32],[-1,-2],[-3,-3],[-4,-16],[-4,-11],[-3,-8],[-10,-24],[-3,-7],[-8,-39],[-2,-12],[-3,-14],[-1,-16],[-2,-16],[-2,-10],[-3,-11],[-4,-19],[-4,-9],[-4,-1],[-4,-1],[-13,-1],[-13,-1],[-10,39],[-14,58],[0,1],[-2,15],[-5,29],[-1,6],[-9,43],[-5,25],[-3,14],[-2,9],[-8,22],[-3,6],[-4,18],[-9,18],[-4,-1],[-8,4],[-3,0],[-3,2],[-8,12],[-2,3],[-9,18],[-15,49],[-10,30],[-7,17],[-8,16],[-5,9],[-3,7],[-5,12],[-2,3],[-11,13],[-8,8],[-7,5],[-2,-7],[0,-6],[-1,1],[0,1],[-1,1],[1,14],[-2,22],[-3,15],[-4,11],[-4,10],[-3,7],[-8,17],[-5,11],[-7,11],[-6,8],[-45,29],[-28,-2],[-1,0],[-7,-4],[-10,-11],[-11,-25],[-10,-25],[-11,-29],[-12,-28],[-11,-21],[-8,-12],[-4,7],[-2,-5],[-1,-1],[-9,-1],[-10,-11],[-12,-9],[-11,-10],[-10,-8],[-4,-5],[-7,-5],[-7,-2],[-9,-8],[-7,-8],[-3,0],[-2,-6],[-6,-8],[-5,-11],[-4,4],[-1,2],[-1,2],[1,8],[3,1],[3,1],[5,11],[3,-2],[5,11],[2,9],[2,25],[1,54],[2,28],[1,13],[0,16],[2,11],[1,-1],[1,2],[3,11],[2,4],[2,0],[0,13],[0,25],[-2,5],[-3,8],[-2,-16],[0,-20],[-2,-19],[-2,2],[-2,18],[-2,44],[-3,29],[-3,23],[-2,9],[-11,-36],[1,-10],[1,-15],[1,-17],[1,-4],[1,-1],[2,-10],[3,-46],[2,-5],[4,4],[3,-11],[2,-16],[-3,-81],[-2,-23],[-6,-12],[-13,-16],[-3,-3],[-2,-17],[-1,-13],[-4,-3],[-12,-28],[-1,0],[-3,-8],[-3,1],[-4,-15],[-6,-11],[-5,-14],[-5,-14],[-7,-21],[-7,-19],[-3,-10],[-3,-11],[-7,-24],[-4,-8],[-5,-8],[-6,-22],[0,-3],[-1,-5],[-3,-7],[-1,-3]],[[10628,45486],[0,-256],[0,-167],[19,-64],[25,-88],[17,-62],[4,-15],[14,-41],[6,-18],[9,-26],[40,-115],[8,216],[9,222],[15,-71],[79,-372],[16,-76],[16,-71],[7,-36],[3,32],[77,728],[172,86],[1,-164],[-35,-1146],[38,-437],[2,-26],[71,-348],[26,-91],[8,-302],[3,-177],[11,-204],[17,-149],[13,-117],[39,-358],[8,-74],[75,-676],[13,-121],[4,-31],[16,-152],[2,-15],[97,-908],[18,-681],[12,-600],[-7,-391]],[[11479,37608],[0,11],[2,45],[2,30],[1,37],[1,50],[0,33],[-3,72],[-1,21],[1,9],[1,20],[-1,16],[-5,71],[-5,70],[-4,46],[0,16],[-2,-1],[-14,148],[-7,73],[-4,34],[-8,64],[-1,10],[-1,8],[-4,31],[-5,34],[-2,14],[-1,9],[-2,34],[-1,10],[-1,32],[-5,46],[-1,3],[-1,10],[-2,11],[-1,20],[-2,24],[-5,28],[-3,18],[-1,0],[-1,4],[-3,17],[-4,17],[-3,18],[-1,4],[-2,5],[-4,15],[-3,7],[-2,13],[-1,9],[-1,4],[1,11],[1,0],[2,-1],[2,-4],[5,-9],[1,-2],[1,2],[4,23],[0,13],[0,6],[-3,-3],[-2,-10],[0,1],[-1,-5],[-1,0],[-3,5],[-2,4],[-2,12],[0,12],[-1,0],[-3,5],[-2,15],[-2,12],[-1,-22],[1,-24],[3,-12],[0,-13],[0,-12],[-2,5],[-2,7],[0,1],[-18,50],[-1,0],[0,11],[0,11],[1,0],[1,1],[1,-3],[1,1],[2,-5],[3,-8],[3,1],[3,15],[-1,20],[-1,7],[-1,-3],[-2,7],[-1,12],[-1,7],[1,10],[1,-2],[1,1],[1,4],[0,9],[-1,6],[-1,3],[-1,-1],[-2,4],[-2,0],[0,-3],[-2,1],[-2,-33],[-1,5],[-2,12],[-3,20],[-1,-2],[-1,7],[-1,7],[-2,-3],[-1,4],[-1,9],[-1,-1],[-1,-5],[-1,-6],[-2,0],[-1,2],[-2,-3],[0,3],[-3,3],[-1,-7],[-1,5],[-2,8],[-3,13],[-2,5],[-2,9],[-3,13],[-2,3],[0,4],[-1,2],[-2,4],[-3,13],[-4,15],[-1,2],[-1,0],[-1,7],[1,14],[0,1],[8,-26],[4,-4],[4,-2],[4,-1],[2,-5],[1,-8],[4,-12],[2,9],[0,13],[1,15],[2,10],[0,15],[0,14],[0,13],[0,16],[-2,15],[-1,20],[-1,7],[-1,-1],[-2,-5],[-2,-9],[-1,3],[1,11],[2,17],[1,13],[0,12],[1,4],[2,12],[1,11],[2,15],[0,16],[1,2],[2,7],[1,11],[1,23],[-1,23],[1,10],[1,7],[2,10],[1,4],[1,-8],[1,-12],[2,-20],[2,-8],[3,11],[1,9],[0,18],[-1,-5],[-2,-14],[-1,1],[-2,9],[-1,4],[-1,5],[0,14],[-1,15],[-1,15],[0,10],[-1,11],[-1,7],[-1,4],[-1,1],[-2,-35],[-2,-12],[-1,-2],[-1,5],[-1,6],[-2,5],[-1,1],[-2,-6],[-1,-2],[-2,5],[-2,-10],[-1,-18],[0,-27],[-2,-15],[-2,-13],[0,-8],[-2,-12],[-1,-1],[-1,1],[-2,-1],[-2,3],[-1,-10],[-1,-26],[-1,-25],[-2,-21],[-1,0],[-1,-2],[-1,-1],[0,10],[-1,8],[-1,15],[-2,17],[-1,4],[-1,-7],[0,-7],[1,-17],[-1,-12],[-1,-2],[-1,7],[-1,5],[0,-9],[0,-6],[1,-15],[-1,-8],[-2,7],[-1,11],[-2,12],[-2,7],[-1,1],[-1,-5],[0,-5],[1,-12],[1,-9],[2,-6],[1,-8],[1,-21],[2,-9],[0,-8],[1,-16],[0,-5],[4,-28],[0,-21],[-3,12],[-20,194],[-4,33],[-8,63],[-3,21],[-8,54],[-4,32],[-1,9],[-2,11],[-4,25],[0,3],[-5,33],[-3,16],[-1,12],[-2,7],[-2,16],[-2,11],[-1,3],[-4,19],[-14,66],[-13,62],[-3,14],[-7,34],[-3,15],[-1,0],[-1,8],[-2,10],[-4,13],[-2,12],[-15,65],[-4,19],[-3,12],[-8,36],[-3,14],[-1,2],[-1,4],[-6,26],[1,16],[0,3],[1,-4],[18,-80],[2,-8],[4,-19],[1,-3],[3,3],[-1,11],[-1,8],[-2,8],[-1,2],[0,9],[-1,8],[-2,10],[-2,16],[-2,20],[1,15],[1,5],[1,14],[-1,13],[-1,7],[-1,-2],[-1,-1],[-3,0],[-1,3],[-1,9],[-2,4],[-2,6],[-1,4],[-2,1],[-4,2],[-1,10],[-2,35],[-2,26],[-1,14],[-1,26],[2,6],[2,1],[1,13],[-2,13],[-1,12],[1,12],[0,18],[0,23],[1,14],[3,10],[0,2],[0,11],[-2,-4],[-1,2],[-3,3],[-2,0],[-2,-9],[-2,-12],[-1,-9],[-2,-5],[-1,-32],[-1,-10],[-1,-10],[-1,-5],[0,-12],[-1,-24],[-1,3],[-2,11],[0,-25],[1,-13],[0,-13],[0,-17],[1,-11],[1,-16],[1,-15],[-1,-5],[-1,1],[-2,5],[-3,10],[-2,11],[-2,14],[-3,19],[-2,13],[-3,12],[-3,15],[-4,26],[-2,14],[-1,6],[-4,10],[-3,22],[-3,16],[-2,13],[-2,17],[-2,7],[-1,11],[-2,15],[-3,19],[-2,3],[-2,23],[-3,15],[-2,10],[-2,13],[-2,16],[-2,15],[-2,16],[0,7],[-1,4],[0,5],[-1,5],[-1,7],[1,5],[1,-1],[0,-2],[1,-3],[1,-4],[1,-14],[2,-11],[2,-16],[2,-15],[4,-13],[2,-21],[4,-17],[1,-12],[2,-25],[3,-23],[2,-11],[1,-4],[1,-7],[2,-7],[1,-10],[1,-9],[2,-6],[3,-19],[1,0],[0,-10],[2,-1],[1,-13],[1,-5],[2,0],[-1,15],[-2,13],[1,7],[2,3],[1,-4],[1,7],[0,13],[2,-10],[0,13],[1,3],[1,2],[1,-17],[2,-7],[1,0],[-2,13],[0,8],[1,0],[1,8],[1,-3],[2,-3],[1,10],[0,19],[-1,11],[-1,10],[1,19],[1,27],[0,16],[-1,-2],[-1,-12],[-1,-20],[-1,-16],[-1,-15],[-2,-12],[-4,4],[1,9],[-1,8],[-2,7],[-2,-3],[-3,5],[-1,10],[1,10],[1,7],[-1,7]],[[10628,85669],[0,-303],[0,-235],[0,-188],[0,-200],[0,-456],[0,-8],[0,-154],[0,-198],[0,-257],[0,-234],[0,-32],[0,-205],[0,-136],[0,-69],[0,-269],[0,-216],[0,-176],[0,-182],[0,-283],[0,-78],[0,-284],[0,-296],[0,-153],[0,-259],[0,-104],[0,-166],[0,-38],[0,-130],[0,-48],[0,-73],[0,-164],[0,-147],[0,-167],[0,-172],[0,-245],[0,-270],[0,-189],[0,-278],[0,-221],[0,-294],[0,-144],[0,-263],[0,-305],[0,-189],[0,-347],[0,-324],[0,-107],[0,-258],[0,-147],[0,-265],[0,-281],[0,-118],[0,-207],[0,-311],[0,-300],[0,-84],[0,-268],[0,-66],[0,-193],[0,-241],[0,-121],[0,-238],[0,-238],[0,-173],[0,-227],[0,-164]],[[10628,72513],[-1,-4],[-2,-27],[-2,2],[0,4],[-1,-2],[-1,-2],[-2,-6],[-1,-7],[0,-4],[-1,0],[0,1],[-1,-6],[-1,-6],[0,-9],[-1,1],[0,-1],[0,-3],[0,-4],[0,-6],[0,-1],[-1,0],[0,-3],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-7],[-1,-2],[0,2],[-1,7],[-2,-8],[-1,2],[-1,6],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-4],[1,-2],[0,-3],[1,-3],[0,-2],[0,-2],[0,-7],[0,-4],[0,-2],[-1,0],[-1,3],[0,2],[-1,0],[-1,-2],[-2,-9],[0,-3],[0,-2],[0,-3],[1,-1],[0,-3],[1,-5],[-1,-3],[0,-3],[-1,0],[-1,1],[-1,0],[0,-1],[0,-4],[0,-5],[0,-4],[-1,-1],[1,-1],[-1,-13],[0,-2],[-1,-4],[0,-3],[-1,1],[0,2],[-1,-1],[-1,-3],[0,-4],[0,-5],[0,-1],[1,-5],[0,-4],[1,-1],[1,-4],[1,-4],[0,-3],[0,-3],[-1,-2],[-1,0],[-1,-2],[0,-2],[-2,1],[0,2],[-2,-12],[0,-13],[0,-3],[0,-4],[0,-3],[-2,0],[0,-3],[-1,-7],[-1,-9],[0,-9],[0,-12],[0,-2],[0,-1],[-3,-24],[-1,-5],[-1,-4],[-1,-1],[-2,-16],[0,-1],[-1,-4],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,4],[0,1],[-1,0],[0,-3],[0,-4],[-1,-3],[0,-2],[-2,1],[-1,-1],[-1,-3],[-1,-6],[0,-6],[1,-2],[0,-1],[1,0],[0,1],[1,0],[1,-3],[0,-1],[0,-2],[0,-4],[-1,-4],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-2],[0,-2],[1,-6],[0,-3],[0,-4],[0,-2],[-1,-6],[-1,-4]],[[10562,72086],[0,-1],[0,1]],[[10562,72086],[0,5],[-1,1],[0,2],[-2,-1],[1,-6],[0,-6],[0,-4],[0,-9],[0,-2],[0,-2],[-1,-1],[-1,4],[0,-1],[-1,-5],[0,-1],[0,-3],[0,-11],[0,-3],[0,-1],[-1,-2],[0,-8],[-1,-11],[0,-7],[-1,-3],[0,-10],[1,-2],[-2,-4],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-3],[-2,-5],[-1,-3],[0,-3],[0,-2],[1,-8],[0,-5],[0,-1],[0,-2],[-3,-18],[-1,-8],[-1,-3],[-1,-6],[0,-8],[0,-3],[0,-2],[-1,-6],[-1,-5],[-1,-6],[-1,-4],[0,-4],[0,-11],[0,-1],[-1,-11],[0,-7],[0,-1],[-1,-3],[-1,2],[0,1],[0,3],[0,2],[0,3],[-1,1],[-1,-3],[0,-4],[0,-3],[0,-13],[0,-6],[0,-3],[-1,-5],[-1,-8],[0,-19],[0,-9],[0,-4],[0,-8],[0,-1],[0,-4],[-1,-30],[1,-1],[1,-23],[0,-3],[1,-4],[-1,-5],[0,-4],[0,-6],[0,-4],[-1,-7],[-1,-8],[-1,-5],[0,-6],[0,-7],[0,-5],[0,-2],[0,-1],[0,-17],[0,-5],[0,-11],[-1,-5],[-1,-3],[-1,-17],[0,-4],[0,-3],[-1,-21],[0,-4],[-2,-5],[0,-2],[-1,-1],[-1,0],[-1,-2],[0,-1],[0,-18],[0,-5],[0,-3],[0,-2],[0,-5],[0,-3],[0,-2],[-1,-5],[-1,-8],[-1,-5],[-2,-7],[-1,-4],[0,-1],[0,-12],[0,-4],[1,-3],[1,-8],[0,-3],[1,-1],[1,1],[0,-1],[2,-10],[1,-3],[0,-2],[0,-6],[-1,-5],[0,-6],[0,-4],[0,-7],[0,-11],[-1,-10],[0,-10],[0,-4],[-1,-4],[0,-2],[-2,-6],[-1,-1],[-1,0],[-1,-4],[-1,-4],[-1,-3],[-1,-4],[0,-2],[0,-4],[0,-6],[-1,-8],[0,-4],[-1,-10],[-2,-5],[0,-3],[-2,-9],[-1,-18],[-2,-21],[-2,-12],[0,-1],[-1,0],[-1,2],[0,2],[-1,4],[-1,6],[-2,9],[0,5],[-2,4],[0,3],[-1,0],[-1,-1],[-1,0],[0,-3],[0,-1],[-1,-2],[0,-4],[0,-7],[1,-2],[0,-3],[1,-8],[-1,-12],[0,3],[-1,7],[-1,1],[0,-2],[0,-4],[-1,-7],[0,-4],[0,-8],[0,-2],[0,-8],[1,-19],[0,-3],[-1,-18],[0,-4],[-1,-12],[0,-4],[0,-7],[0,-3],[-1,-2],[0,-2],[-1,-2],[-1,5],[-1,6],[0,12],[0,9],[-1,2],[-1,3],[-1,5],[0,1],[-1,0],[-1,0],[-1,-3],[-1,-11],[0,-8],[0,-4],[0,-2],[0,-8],[0,-4],[0,-5],[0,-5],[0,-2],[-1,-9],[0,-7],[0,-24],[0,-9],[-1,-7],[-1,-13],[0,-6],[-1,-3],[-1,-4],[-1,-1],[0,-2],[-1,0],[-3,1],[0,1],[-1,3],[0,2],[-1,3],[-1,1],[-1,-2],[0,-2],[-1,-2],[0,-3],[0,-8],[0,-7],[0,-4],[0,-3],[1,-4],[0,-1],[0,-3],[-1,-2],[0,-1],[-2,0],[-1,2],[0,3],[-1,5],[-2,6],[-1,0],[0,-2],[-1,-5],[0,-6],[0,-9],[0,-5],[0,-1],[0,-3],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,-3],[0,-5],[0,-12],[0,-2],[-1,-6],[0,-8],[1,-11],[0,-12],[0,-1],[0,-6],[0,-6],[0,-2],[0,-2],[-1,-6],[-1,-1],[0,1],[-2,7],[-1,6],[0,3],[-1,1],[0,2],[0,4],[-1,2],[-1,0],[0,-1],[0,-2],[-1,-3],[0,-6],[-1,-9],[0,-6],[0,-4],[0,-6],[-1,-3],[0,-2],[-1,0],[-1,4],[-1,6],[-2,12],[-1,2],[-1,2],[0,1],[-1,0],[-1,-2],[-1,-3],[-1,-4],[-1,-4],[0,-4],[-1,-5],[-2,-9],[-2,-8],[-1,-3],[-1,-1],[-1,-3],[0,-1],[0,-1],[0,-4],[1,-9],[0,-4],[0,-5],[0,-1],[-2,-14],[-1,-5],[-1,-8],[-1,-2],[-1,0],[-1,2],[0,2],[0,6],[-2,11],[0,2],[-1,0],[-1,-1],[-2,-5],[-1,-3],[0,-2],[-1,-6],[-1,-5],[-1,-10],[0,-7],[0,-6],[0,-2],[0,-11],[0,-12],[0,-18],[1,-16],[0,-8],[0,-5],[0,-5],[0,-16],[0,-11],[0,-7],[-1,-3],[-1,-7],[-1,-4],[-2,-4],[-1,-1],[0,-2],[0,-2],[-1,-14],[-1,-8],[1,-4],[-2,-17],[-1,1],[-2,-4],[-1,1],[0,-1],[-1,-2],[-1,-5],[-1,-5],[-1,-8],[0,-7],[-1,-7],[0,-7],[0,-2],[1,-9],[0,-3],[0,-5],[0,-3],[0,-4],[-1,-4],[0,-3],[-3,-8],[-2,-6],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,1],[-1,7],[-1,5],[-1,6],[0,3],[0,4],[0,10],[1,9],[1,20],[1,4],[0,3],[0,5],[0,19],[0,3],[0,2],[0,4],[-1,4],[-2,4],[-1,0],[-1,-1],[0,-2],[-2,-15],[0,-4],[0,-8],[1,-6],[0,-3],[0,-4],[-1,-8],[-1,-4],[0,-4],[-1,-3],[-1,-4],[0,-5],[0,-3],[0,-3],[0,-11],[-1,-3],[0,-3],[-1,-1],[0,-1],[-2,-4],[0,-1],[-1,0],[0,1],[-1,1],[-2,3],[-1,1],[0,1],[0,2],[-3,2],[0,-2],[-1,-5],[-2,-5],[-1,-6],[-1,-5],[-1,-6],[0,-1],[-1,0],[-1,1],[0,2],[-1,9],[-1,6],[0,6],[-1,13],[-1,1],[-1,0],[-1,-5],[0,-5],[0,-2],[-1,0],[-1,2],[-1,1],[0,2],[0,3],[0,5],[0,4],[0,3],[1,7],[0,8],[0,5],[-1,4],[0,1],[-1,0],[-1,-2],[0,-3],[-1,-5],[0,-2],[0,-2],[-1,1],[-1,2],[0,3],[0,4],[0,5],[0,7],[1,5],[-1,1],[0,3],[0,2],[-1,1],[-2,0],[0,1],[-1,3],[-1,16],[0,1],[0,8],[-3,-14],[-1,-1],[0,-2],[-1,0],[0,6],[-1,3],[0,4],[-1,4],[0,1],[-1,0],[0,-1],[-1,-4],[0,-2],[0,-9],[-1,-4],[0,-2],[-1,2],[0,1],[-1,3],[0,5],[0,9],[0,1],[-1,7],[0,9],[0,1],[0,1],[-1,3],[-1,13],[-1,2],[-1,-1],[0,-2],[-2,-13],[-1,-1],[0,-1],[0,-16],[0,-1],[0,-5],[-1,-2],[-1,0],[-1,2],[0,3],[-1,6],[0,5],[-2,-3],[0,-6],[0,-2],[-1,-1],[0,-1],[-1,0],[0,1],[0,4],[0,2],[0,2],[-1,4],[0,5],[-1,1],[-1,3],[-1,1],[-1,-1],[0,-4],[-1,-7],[0,-2],[0,-4],[1,-3],[1,-4],[0,-2],[1,-2],[0,-2],[0,-5],[0,-2],[-1,-2],[0,-2],[-3,-2],[-2,0],[-2,8],[-2,-3],[-3,-14],[0,-4],[0,-4],[0,-9],[0,-1],[0,-4],[1,0],[0,-1],[0,-2],[0,-2],[-2,-5],[-1,-2],[-1,-3],[-1,0],[-1,1],[-2,0],[-1,0],[0,1],[-3,-1],[0,-19],[-1,-3],[-1,-1],[-2,-1],[0,-1],[-1,-2],[-1,-3],[-1,-6],[0,-6],[-1,-1],[-2,-6],[-1,0],[0,-2],[-1,-2],[0,-1],[-2,-6],[-1,-4],[0,-6],[-2,-5],[0,-1],[-1,-2],[0,-2],[-1,-6],[0,-3],[-1,-4],[0,-4],[1,-5],[0,-2],[0,-6],[0,-4],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,3],[-1,1],[-1,-18],[0,-2],[0,-4],[-2,-13],[0,-4],[-1,-3],[-1,-9],[-1,-3],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-5],[-1,-6],[-3,-4],[-1,4],[-1,0],[-1,-3],[-1,-3],[-1,-1],[-1,-2],[-1,-1],[0,-4],[0,-4],[0,-3],[-1,-6],[-1,-2],[-1,2],[0,3],[-1,-3],[-1,-10],[0,-4],[0,-2],[1,-2],[1,1],[1,-1],[1,-2],[0,-3],[0,-2],[0,-2],[-2,-10],[0,-1],[-1,-6],[0,-2],[-1,-2],[0,-9],[0,-4],[0,-3],[0,-2],[0,-5],[0,-3],[0,-4],[-1,-1],[-1,-6],[0,-4],[0,-2],[0,-2],[-1,-5],[0,-1],[-1,-6],[-1,-6],[-1,-9],[-1,-5],[0,-11],[-1,-7],[-1,-1],[-1,-1],[-1,-8],[0,-1],[-1,-1],[-1,-7],[0,-4],[-1,-4],[0,-1],[-1,-1],[-1,-1],[-1,2],[0,2],[-2,7],[-1,7],[-1,2],[-2,3],[0,-6],[-1,-1],[0,-2],[-1,0],[0,1],[-2,15],[0,2],[-1,7],[-3,15],[0,5],[0,3],[-1,10],[-1,12],[0,4],[0,2],[-2,9],[0,-1],[-1,0],[0,3],[-1,2],[-1,5],[-1,2],[-2,0],[-1,7],[-1,2],[-1,3],[-1,1],[-1,0],[-1,5],[-3,5],[-3,6],[-4,-11],[0,-1],[-2,-21],[-3,-23],[0,-3],[0,-5],[0,-7],[-1,-7],[0,-16],[-1,-14],[0,-4],[-3,-20],[1,-5],[-1,-1],[-1,-9],[-1,-15],[0,-3],[0,-2],[0,-14],[0,-19],[0,-6],[-1,-6],[0,-47],[-1,-33],[-1,-8],[-2,-12],[-2,-10],[-1,-1],[0,-2],[-1,-1],[-1,0],[-1,-1],[-2,-3],[0,-2],[-2,-9],[0,-5],[-1,0],[-1,-2],[0,-4],[-1,-1],[-1,-2],[-2,-6],[-1,-7],[-2,-1],[0,-3],[-2,-1],[-2,-4],[0,-4],[-4,-1],[-1,-1],[1,-6],[1,-7],[2,0],[0,-11],[1,-9],[0,-1],[0,-8],[0,-3],[0,-4],[1,-6],[1,-2],[1,1],[1,3],[0,4],[0,5],[0,7],[0,2],[1,3],[0,2],[1,-2],[0,-3],[1,-6],[1,-3],[0,-3],[0,-3],[0,-2],[-1,-6],[0,-2],[-1,-3],[-1,-3],[0,-4],[1,-1],[0,-3],[1,-1],[1,4],[1,-1],[0,-5],[1,-2],[1,0],[1,2],[1,2],[0,2],[1,2],[1,0],[0,-2],[1,-3],[0,-3],[0,-3],[-1,-6],[0,-3],[-2,0],[0,1],[-1,1],[-1,-1],[0,-3],[0,-1],[0,-3],[0,-6],[1,-9],[0,-1],[1,-4],[0,-5],[0,-4],[0,-7],[0,-5],[-2,-12],[0,-3],[0,-5],[0,-1],[1,-1],[1,1],[2,-17],[1,-4],[0,-3],[0,-3],[0,-2],[-1,-2]],[[10147,69735],[0,-1],[0,1]],[[10147,69735],[-1,5],[0,1],[-1,0],[0,-2],[-1,-3],[0,-2],[0,-2],[1,-2],[0,-3],[1,-1],[1,-2],[1,-3],[0,-1],[0,-6],[0,-5],[0,-2],[0,-1],[-1,0],[0,3],[-1,0],[0,-2],[-1,-4],[0,-5],[0,-25],[0,-2],[0,-3],[0,-3],[0,-5],[0,-3],[0,-5],[-1,-6],[-1,-7],[-1,-7],[0,-4],[0,-1],[0,-2],[1,-3],[0,-2],[1,3],[1,0],[0,-1],[1,-3],[0,-4],[0,-6],[1,-29],[0,-8],[0,-8],[0,-4],[0,-2],[0,-1],[0,-3],[-1,-8],[0,-9],[-1,-2],[0,-6],[0,-9],[0,-2],[0,-4],[1,-4],[0,-5],[0,-3],[0,-5],[0,-3],[0,-3],[0,-2],[0,-2],[-1,0],[-1,2],[0,2],[-1,11],[0,4],[-1,1],[0,2],[-2,2],[0,-3],[-1,-5],[0,-1],[0,-5],[1,-5],[0,-3],[1,-3],[2,-10],[0,-4],[0,-2],[-1,-3],[0,-3],[-2,-7],[0,-2],[-2,0],[0,1],[0,3],[-1,0],[0,-1],[-1,-3],[0,-6],[0,-5],[0,-2],[0,-5],[1,-1],[1,-1],[0,-3],[1,-4],[1,-9],[1,-3],[0,-6],[-2,-10],[-2,-5],[0,-2],[0,-3],[0,-4],[0,-5],[1,-3],[0,-2],[0,-2],[-1,-4],[-1,-2],[-1,-4],[0,-2],[0,-3],[1,-4],[0,-4],[-1,-3],[0,-2],[-1,-2],[-1,-6],[1,-13],[0,-1],[2,-8],[1,-5],[0,-5],[0,-3],[-2,-5],[0,2],[-1,0],[-1,-3],[-1,-3],[-1,-6],[0,-6],[0,-7],[0,-1],[-1,-5],[0,-1],[-1,0],[0,-1],[-1,-5],[0,-4],[0,-1],[0,-1],[-1,-18],[-1,-3],[-1,-2],[-1,0],[0,-4],[0,-4],[0,-2],[0,-4],[1,-8],[0,-2],[0,-3],[0,-6],[-1,-3],[0,-1],[-1,-1],[-1,-2],[0,-3],[-1,-4],[-1,-10],[0,-1],[0,-4],[0,-7],[-1,-5],[0,-1],[0,-1],[-1,-2],[-1,-4],[0,-1],[-1,0],[0,-1],[-1,-3],[-2,-24],[0,-14],[-1,-9],[0,-4],[0,-4],[1,-4],[1,-7],[0,-7],[0,-4],[0,-3],[-1,-9],[0,-6],[0,-1],[0,-4],[-1,-3],[0,-2],[-1,-2],[0,-5],[-3,-10],[0,1],[-1,1],[-1,3],[0,2],[-2,13],[0,2],[-1,1],[-2,0],[0,2],[-1,7],[-2,6],[0,2],[-1,2],[-1,0],[0,-1],[0,-3],[-1,-3],[0,-4],[-1,-2],[-1,1],[-1,5],[-1,-1],[-1,-2],[-1,-3],[0,-1],[-1,-6],[-2,-14],[-1,-5],[-1,-10],[-1,-6],[-1,-7],[0,-5],[0,-2],[-1,-4],[0,-9],[0,-6],[-1,-17],[-1,-8],[-1,-7],[-1,-10],[-1,-6],[-1,-2],[-2,0],[-1,2],[0,3],[-1,4],[0,4],[0,14],[0,3],[0,4],[2,14],[1,15],[0,3],[0,3],[0,3],[-1,5],[0,2],[-1,0],[0,-1],[-1,-6],[-1,-1],[-2,-11],[0,-2],[0,-3],[0,-2],[-1,-7],[0,-4],[0,-5],[-1,-7],[0,-4],[-1,-4],[0,-1],[-1,0],[-1,1],[0,3],[0,5],[0,8],[0,12],[0,6],[0,3],[-1,3],[-1,0],[-1,-2],[-1,-1],[0,-2],[-1,-6],[-1,-7],[0,-2],[0,-6],[-1,-5],[0,-8],[1,-7],[0,-4],[2,-9],[0,-4],[0,-3],[0,-2],[0,-3],[-1,-13],[0,-20],[-1,-1],[0,-2],[-2,0],[-1,2],[-2,5],[0,1],[0,5],[0,1],[-2,13],[0,8],[-2,10],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-3,-13],[0,-2],[0,-2],[0,-3],[0,-19],[0,-8],[0,-6],[0,-4],[-2,-4],[0,1],[-1,0],[0,-4],[-1,-7],[0,-11],[0,-4],[0,-8],[1,-8],[0,-36],[0,-4],[0,-9],[-1,-4],[0,-2],[0,-2],[-2,0],[0,2],[-1,6],[0,5],[-1,8],[0,9],[1,7],[0,8],[-1,6],[0,5],[0,3],[-1,1],[0,2],[-1,0],[0,-2],[0,-2],[0,-13],[0,-11],[0,-3],[0,-5],[-1,-5],[0,-3],[-1,-6],[0,-8],[-1,-8],[0,-4],[-1,-13],[-1,-4],[0,-9],[0,-7],[0,-8],[-1,-7],[0,-4],[-1,-2],[0,-1],[-1,0],[-1,2],[0,2],[-1,4],[0,2],[0,12],[0,18],[0,10],[-1,3],[0,4],[0,3],[0,4],[-1,0],[-1,0],[0,-2],[-1,0],[0,-4],[-1,-3],[0,-3],[0,-7],[0,-12],[0,-4],[0,-6],[0,-7],[0,-12],[0,-3],[0,-2],[-1,-9],[-1,-1],[-1,0],[-1,3],[0,2],[0,2],[0,2],[-1,3],[-1,1],[0,-1],[-1,-8],[-1,-4],[-1,-3],[0,-4],[-1,-8],[0,-3],[-1,-9],[0,-2],[0,-1],[-1,-4],[0,-7],[0,-16],[0,-4],[0,-4],[-2,-11],[0,-4],[0,-14],[0,-1],[0,-1],[-1,-10],[-1,-9],[-1,0],[-3,-4],[0,-2],[-1,-3],[0,-1],[0,-1],[-2,-4],[0,-3],[-2,-6],[0,-3],[0,-5],[-1,-11],[-2,-10],[0,-2],[-1,-4],[-1,-2],[-1,-5],[0,-2],[-1,-6],[-2,-4],[-2,-1],[-1,1],[-2,5],[-1,11],[-1,9],[-1,5],[-1,11],[-1,2],[0,1],[-2,0],[0,-1],[-1,-2],[-1,-7],[-1,-7],[0,-1],[-1,-3],[0,-3],[-1,-9],[-1,-6],[0,-5],[1,-3],[0,-1],[0,-1],[1,0],[1,4],[1,0],[1,-3],[0,-3],[2,-34],[1,-4],[0,-7],[0,-11],[0,-3],[-1,-8],[0,-2],[-1,0],[0,3],[-1,0],[-3,0],[0,-2],[-1,-1],[0,-3],[0,-3],[0,-15],[0,-15],[0,-7],[0,-8],[0,-7],[1,-13],[1,-4],[0,-2],[1,-2],[0,-5],[1,-9],[0,-5],[0,-3],[0,-2],[0,-3],[-1,-4],[-1,-2],[-1,0],[-1,0],[-1,1],[0,2],[-1,1],[-1,3],[-1,-1],[-3,1],[-1,1],[0,2],[0,1],[-2,0],[0,-1],[0,-1],[-1,-3],[0,-2],[0,-4],[0,-5],[0,-3],[0,-2],[2,-9],[1,-2],[0,2],[1,0],[0,-2],[1,-4],[0,-4],[0,-3],[0,-5],[0,-8],[0,-14],[0,-7],[-1,-8],[-1,-7],[0,-2],[-1,-3],[-1,-3],[-1,-1],[0,-1],[-2,-1],[-1,0],[0,1],[-1,2],[-1,4],[-1,6],[0,2],[-1,3],[-1,0],[-1,-3],[-1,-1],[-1,0],[0,2],[-1,2],[0,2],[0,2],[0,1],[-1,2],[-1,1],[0,1],[-1,-1],[-1,-5],[0,-3],[0,-2],[0,-14],[0,-7],[0,-8],[-1,-3],[0,-7],[-3,-19],[0,-6],[-1,-5],[0,-3],[0,-2],[-1,-3],[0,-3],[-2,-5],[-2,0],[-1,-2],[-2,-2],[-1,-8],[-1,-3],[0,-7],[-1,-5],[0,-4],[0,-2],[1,-7],[0,-2],[0,-3],[1,-2],[1,1],[1,1],[1,2],[1,0],[0,-2],[1,-2],[1,-5],[0,-6],[1,-4],[0,-5],[1,-8],[0,-7],[0,-10],[0,-3],[-1,-5],[0,-1],[-1,-4],[0,-2],[-1,-2],[0,-3],[0,-4],[-1,-17],[0,-6],[0,-2],[1,-4],[1,0],[1,-5],[0,-1],[1,-4],[0,-7],[0,-7],[0,-3],[1,-5],[0,-1],[0,-2],[0,-1],[0,-11],[0,-1],[0,-4],[0,-4],[1,-1],[0,-4],[2,-20],[1,-9],[-1,-12],[-1,-10],[0,-7],[0,-2],[-1,-5],[0,-3],[-1,-29],[0,-19],[0,-12],[0,-3],[-1,-25],[1,-23],[0,-5],[0,-7],[-1,-18],[0,-9],[-1,-4],[0,-1],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-4],[0,-5],[-1,-10],[0,-6],[0,-3],[0,-3],[0,-3],[0,-3],[0,-1],[0,-2],[0,-7],[0,-7],[0,-6],[0,-1],[0,-7],[0,-1],[-2,-23],[1,-33],[1,-23],[0,-7],[0,-3],[1,-2],[0,-1],[1,3],[0,5],[1,4],[0,2],[1,0],[1,-4],[1,-13],[1,-3],[0,-4],[0,-9],[1,-5],[2,-16],[1,-5],[1,-1],[0,-6],[2,-7],[0,-6],[0,-2],[1,0],[0,2],[1,0],[1,-2],[0,-2],[0,-4],[-1,-5],[0,-4],[0,-2],[0,-5],[0,-1],[0,-3],[1,-2],[1,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-4],[-1,-4],[0,-6],[0,-10],[-1,-16],[0,-3],[-1,1],[0,2],[-1,0],[-1,-1],[0,-4],[-1,-5],[-1,-3],[0,-9],[0,-1],[-1,-8],[0,-2],[-1,-6],[-1,-4],[0,-2],[-2,-20],[-1,-1],[0,-2],[-3,-1],[0,1],[-1,4],[-1,7],[-1,5],[-1,2],[0,1],[-1,0],[-3,-2],[-1,-3],[-1,-3],[-1,-5],[0,-4],[0,-16],[0,-2],[1,-9],[0,-3],[0,-1],[2,-15],[0,-2],[1,-11],[0,-2],[0,-1],[0,-7],[0,-5],[-1,-6],[0,-2],[-1,-3],[-1,-2],[-1,-2],[0,-1],[0,-9],[0,-14],[1,-10],[1,-12],[0,-4],[1,0],[1,-1],[1,1],[1,0],[0,-2],[1,-3],[0,-3],[0,-1],[2,0]],[[9932,67192],[0,1],[0,-1]],[[9932,67192],[1,-4],[0,-2],[0,-10],[1,-6],[-1,-2],[0,-2],[-1,-4],[0,-2],[0,-3],[-1,-11],[-1,-3],[-1,-3],[0,-10],[0,-5],[1,-7],[0,-1],[0,-5],[0,-4],[-1,-2],[0,-1],[-1,-2],[-1,-3],[0,-2],[0,-2],[0,-4],[-1,-1],[0,-1],[-1,-3],[0,-1],[-1,1],[-1,3],[-1,-6],[-1,-10],[0,-1],[0,-3],[0,-3],[-3,-12],[-1,-2],[0,-3],[0,-2],[0,-2],[-1,-5],[-1,-1],[0,-3],[-1,-7],[-1,-6],[-1,0],[0,-1],[-1,-3],[0,-3],[0,-4],[-1,-1],[0,-6],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-3],[0,-2],[-1,-1],[-1,-6],[-1,-6],[0,-8],[-1,-5],[0,-3],[-1,-1],[0,-7],[0,-1],[0,-1],[-1,-4],[0,-3],[0,-4],[0,-5],[1,-2],[0,-4],[-1,-6],[0,-4],[-1,-6],[0,-6],[0,-4],[0,-1],[-1,-4],[0,-3],[-1,-6],[0,-4],[1,-5],[0,-15],[-1,-2],[-1,-9],[0,-2],[0,-1],[0,-5],[0,-5],[0,-3],[0,-20],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[-2,-6],[0,-4],[0,-1],[0,-11],[0,-3],[-1,-9],[-1,-12],[0,-8],[0,-5],[0,-4],[0,-19],[-2,-13],[-1,-11],[-1,-3],[-1,-2],[0,-1],[0,-6],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[1,-4],[0,-2],[-1,-1],[-2,-9],[-1,1],[0,1],[0,2],[-2,-1],[0,-1],[-1,0],[0,-5],[0,-2],[0,-3],[0,-3],[0,-2],[0,-5],[0,-1],[0,-4],[0,-1],[-1,0],[0,2],[0,3],[0,3],[0,3],[-1,1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-23],[0,-6],[0,-1],[0,-1],[-1,0],[-1,2],[-2,-1],[0,-2],[-1,-3],[0,-1],[-2,-11],[-2,-7]],[[9869,66600],[0,-1],[0,1]],[[9869,66600],[-1,2],[0,1],[-1,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,-7],[-1,-6],[-2,-6],[-1,1],[0,1],[-2,5],[-3,-3],[0,2],[-1,1],[0,-1],[0,-2],[0,-2],[-1,0],[-1,10],[0,2],[-2,10],[0,2],[-2,0],[-1,0],[0,1],[0,1],[0,2],[-1,1],[0,-1],[-1,-2],[0,7],[0,3],[-1,0],[0,1],[-1,3],[0,-1],[0,-2],[0,-3],[-1,0],[-1,3],[-1,2],[-2,-5],[0,-1],[-2,0],[-2,2],[-1,4],[0,1],[0,3],[-1,3],[0,5],[0,2],[-1,5],[0,6],[-2,7],[-2,5],[-1,1],[-1,0],[-2,-5],[-2,-4],[0,-1],[-1,1],[0,3],[-3,7],[-1,3],[0,1],[-1,1],[0,2],[0,5],[-1,3],[0,3],[-1,2],[0,1],[-1,1],[-2,3],[-2,3],[-1,2],[-1,2],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,3],[-1,1],[-2,-1],[-1,0],[-2,2],[-1,2],[-1,1],[0,1],[-1,2],[0,3],[-1,3],[-2,11],[0,5],[-1,2],[-1,1],[0,1],[-2,-3],[-2,0],[0,1],[-1,4],[0,1],[-1,3],[-1,4],[0,1],[0,1],[0,3],[-1,10]],[[9779,66757],[0,8],[0,4],[-1,3],[0,2],[0,2],[0,5],[0,5],[0,7],[1,6],[0,8],[1,15],[0,21],[0,8],[0,3],[0,2],[0,9],[-5,18],[-6,10],[-5,2],[-3,40],[1,45],[3,43],[3,18],[-3,21],[2,29],[8,2],[7,59],[4,34],[-2,26],[-5,30],[-7,28],[-5,27],[-7,13],[-1,19],[2,16],[4,21],[1,40],[3,8],[1,15],[3,25],[0,16],[-1,23],[0,34],[-3,39],[-2,36],[3,28],[6,38],[0,34],[-2,56],[7,81],[-4,51],[-5,48],[1,6],[6,28],[6,50],[5,14],[2,7],[0,1],[1,2],[2,17],[0,16],[0,9],[0,12],[0,14],[1,13],[-1,30],[0,50],[-1,8],[-2,16],[0,1],[0,2],[-1,-6],[-3,-4],[-3,16],[-2,6],[-4,14],[-4,37],[-3,7],[-2,3],[0,7],[-2,16],[0,1],[-2,8],[-1,32],[-2,35],[1,15],[2,6],[3,4],[3,-3],[1,-3],[3,-1],[2,16],[1,18],[1,33],[1,19],[3,18],[2,9],[2,6],[2,3],[1,6],[0,6],[1,2],[1,3],[1,4],[2,0],[2,-1],[2,-1],[2,5],[1,10],[1,14],[3,9],[2,2],[1,5],[1,0],[1,3],[1,11],[1,7],[0,13],[0,9],[-1,9],[1,11],[0,6],[2,11],[2,10],[1,3],[-1,9],[0,4],[0,9],[1,7],[1,17],[1,12],[1,7],[2,10],[0,6],[-3,7],[-3,11],[-2,10],[-1,9],[-2,14],[-2,13],[-2,16],[-1,10],[-2,8],[-2,3],[-2,5],[-2,15],[-2,14],[-2,3],[-1,-2],[0,-3],[-1,-4],[-1,-7],[0,-6],[-1,-9],[0,-6],[-1,-2],[-3,-2],[-8,24],[-3,8],[-6,-18],[-4,-4],[-4,7],[-4,14],[-3,-16],[-4,-19],[-4,7],[-8,30],[-4,-5],[-5,-21],[-4,17],[-4,12],[-2,-11],[-5,-15],[-1,9],[-5,-7],[-6,-12],[-2,-4],[-1,-8],[-1,-22],[1,-25],[-2,-20],[-2,-11],[0,-19],[-4,-10],[-3,-16],[-4,-12],[-3,-7],[-3,-13],[-6,-24],[-1,-18],[-5,-34],[-3,22],[-4,37],[-4,34],[-4,-2],[-7,-24],[-5,-16],[-5,17],[-4,6],[-5,11],[-1,21],[-2,26],[-6,22],[-4,19],[-5,12],[-5,16],[-3,14],[-4,-3],[0,-23],[-1,-21],[-4,0],[-2,4],[-2,5],[-6,16],[-6,31],[-5,28],[-7,30],[-2,5],[-3,-6],[-3,-8],[-1,5],[0,9],[0,16],[-2,19],[-4,19],[-2,23],[-3,7],[-3,-25],[-5,-22],[-6,3],[-6,17],[-3,19],[-3,-8],[-6,-31],[-4,-36],[-4,-19],[-4,-9],[-2,-21],[-5,-20],[-1,-10],[-1,-12],[-2,-18],[-4,-2],[-7,0],[-4,2],[-3,-4],[-3,-20],[-5,-28],[-4,-27],[-4,-48],[-3,-15],[-1,3],[-3,4],[-3,-1],[-5,-5],[-4,-3],[-5,9],[-2,5],[-4,-12],[-1,-6],[-4,1],[-4,-1],[-2,19],[-1,19],[-3,17],[-3,14],[-2,10],[-4,1],[-4,0],[-2,-15],[-2,-29],[-2,-36],[-1,-9],[-5,-8],[-5,1],[-2,13],[-1,10],[-1,-11],[-7,-10],[-4,-5],[0,-12],[3,-24],[-2,-40],[-3,-6],[-9,-7],[-5,-4],[-3,-15],[-3,-11],[-3,1],[-4,-23],[-2,-13],[-2,10],[-2,21],[0,24],[-1,30],[-2,19],[-3,16],[-1,19],[2,18],[1,21],[-2,9],[-1,7],[-3,17],[-2,8],[-3,-4],[-5,-7],[-10,-22],[-1,4],[-1,14],[0,23],[3,32],[2,28],[2,33],[3,12],[6,19],[8,27],[2,28],[1,21],[1,39],[3,18],[3,17],[7,27],[3,19],[0,7],[-5,5],[-1,21],[-3,12],[-4,13],[-3,16],[1,22],[1,18],[0,13],[-3,23],[-1,30],[1,22],[-3,15],[-4,-5],[-5,-21],[-5,5],[-6,30],[-5,5],[-3,11],[-4,17],[-3,2],[-4,8],[-3,24],[-1,11],[-3,28],[-6,15],[-3,-21],[-3,-16],[-3,-1],[-4,-1],[-5,-9],[-2,1],[-2,2],[-3,33],[-3,36],[-3,34],[-3,22],[-4,-7],[-4,9],[-2,24],[-3,13],[-7,27],[-3,8],[-1,42],[-2,42],[-3,27],[-5,41],[-2,11],[0,7],[3,20],[2,22],[1,29],[-2,24],[0,27],[-4,11],[-1,8],[-2,10],[0,22],[2,16],[4,46],[5,35],[6,60],[6,41],[4,25],[3,1],[2,-8],[3,8],[2,31],[0,21],[0,23],[1,25],[3,25],[2,26],[2,29],[0,12],[-3,30],[-2,11],[-6,5],[-4,2],[-4,-14],[-4,-10],[-3,9],[-2,2],[-4,2],[-6,-10],[-2,10],[0,19],[1,17],[0,19],[-4,9],[-5,22],[-3,23],[0,38],[-2,37],[-2,30],[-1,15],[-1,7],[-4,5],[-2,-2],[-2,-13],[-6,-36],[-4,-8],[-6,6],[-5,-13],[-2,-10],[-4,-25],[-3,-12],[-6,14],[-5,2],[-3,-30],[-3,-12],[-3,-20],[-4,-11],[-4,6],[-2,18],[-3,43],[-2,10],[-4,5],[-2,-7],[-5,-31],[-4,14],[-4,10],[0,-6],[-3,-21],[-1,-37],[2,-28],[2,-31],[0,-34],[2,-27],[3,-20],[0,-29],[-2,-35],[-3,-27],[-4,-35],[-6,-66],[-4,-28],[-2,-17],[-8,-7],[-4,6],[-4,-17],[-2,-19],[-7,-32],[-3,0],[0,-9],[-2,-8],[0,-3],[-2,-1],[-1,-20],[-2,-11],[0,-3],[-1,1],[-1,-4],[-3,-6],[-2,-4],[-2,-13],[1,-15],[2,-17],[-2,-4],[-3,1],[-4,23],[-3,-19],[-4,-12],[-3,8],[-3,-35],[-3,-16],[-4,6],[-2,-6],[-4,-31],[-3,-4],[-2,-2],[-5,-5],[-7,-24],[-2,-30],[-3,-24],[-5,-6],[-3,10],[-5,21],[-5,27],[-4,7],[-1,-3],[-4,30],[-3,-25],[-2,-26],[-5,13],[-5,0],[-12,-51],[-2,17],[1,23],[-3,14],[-5,11],[-3,0],[0,-3],[-4,-13],[-7,-15],[-3,-6],[-3,-4],[-5,10],[-6,-2],[-3,-6],[-5,9],[-4,-16],[-5,-3],[-5,-12],[-3,-28],[-3,-23],[-4,-6],[-8,-55],[-4,-14],[-3,1],[-4,-28],[-1,-4],[-5,-7],[-2,3],[-4,-16],[-3,-13],[-3,-14],[-3,-24],[-2,-26],[-3,-23],[-3,-18],[-2,-13],[-2,0],[-68,-1],[-6,2],[-23,5],[-20,-5],[-16,2],[-4,1],[-12,-1],[-2,-3],[-7,3],[-4,-2],[-8,-1],[-85,3],[-22,-3],[-11,1],[-20,0],[0,-5],[1,-927],[1,-779],[4,-2],[-1,-457],[0,-15],[0,-53],[0,-267],[0,-88],[0,-69],[0,-170],[0,-23],[0,-6],[0,-164],[0,-7],[-1,-7],[-2,-19],[0,-9],[-2,-11],[1,-7],[0,-5],[3,-10],[1,0],[1,2],[1,3],[1,5],[0,8],[1,2],[1,14],[0,4],[0,3],[-2,8],[0,7],[0,9],[1,3],[0,10],[1,14],[2,19],[0,1],[1,-1],[0,2],[1,10],[1,10],[1,5],[2,13],[1,2],[1,-4],[0,-2],[0,-4],[0,-5],[0,-2],[2,-3],[2,-11],[1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,7],[1,0],[2,7],[0,3],[0,5],[0,3],[0,1],[1,0],[1,-3],[1,3],[1,-7],[1,-4],[0,-1],[1,-2],[0,-3],[0,-6],[-1,-5],[0,-4],[1,-5],[0,-4],[2,-9],[1,0],[1,1],[0,2],[1,0],[0,-1],[0,-5],[1,-17],[0,-4]],[[8534,66361],[0,-1],[0,1]],[[8534,66361],[2,0],[1,-7],[0,-5],[1,-3],[0,2],[1,6]],[[8539,66354],[0,2],[0,-1],[0,-1]],[[8539,66354],[1,-7],[0,-3],[2,-15],[1,-6],[0,1],[0,2],[0,4],[0,5],[1,3],[0,-1],[1,-2],[0,-12],[0,-3],[0,-3],[0,-3],[0,-5],[0,-3],[1,-1],[1,-1],[0,-2],[0,-5],[1,-3],[0,-1],[1,0],[1,5],[1,2],[1,-2],[0,-5],[0,-2],[-1,-5],[0,-6],[0,-2],[1,-1],[1,-4],[0,-7],[-1,-7],[0,-5],[1,-3],[1,1],[0,4],[1,1],[1,-4],[0,-3],[0,-3],[0,-3],[0,-2],[2,-12],[1,-3],[0,-1],[1,-4],[0,-5],[-1,-5],[-2,-1],[0,-3],[0,-14],[0,-3],[0,-2],[-1,-5],[0,-2],[-1,-1],[-1,-8],[0,-1],[0,-1],[1,-3],[1,-2],[1,-3],[0,-4],[1,-2],[1,1],[1,2],[0,4],[1,4],[0,1],[1,-1],[1,-5],[1,-7],[0,-3],[0,-3],[0,-2],[0,-2],[-1,-1],[-1,2],[-1,6],[-1,-1],[-1,0],[0,-4],[0,-5],[1,-4],[1,-7],[0,-3],[0,-2],[0,-4],[0,-4],[-1,-4],[-1,-2],[0,-4],[0,-4],[0,-2],[0,-2],[1,-4],[0,-1],[1,0],[-1,-11],[0,-5],[1,-4],[1,-4],[1,-4],[0,-4],[1,-6],[0,-4],[0,-11],[1,-7],[0,-3],[1,-1],[1,1],[0,6],[1,1],[1,-2],[0,-2],[0,-3],[0,-7],[0,-3],[0,-3],[-2,-5],[0,-1],[-1,-3],[0,-3],[1,-6],[1,0],[0,-1],[0,-1],[1,-2],[0,-4],[0,-3],[0,-3],[0,-4],[0,-2],[0,-5],[0,-2],[0,-1],[1,0],[0,1],[1,4],[0,4],[0,4],[0,2],[1,1],[0,-2],[0,-4],[0,-6],[0,-6],[0,-2],[1,-6],[1,4],[0,1],[0,6],[0,4],[0,4],[1,0],[0,-4],[1,-4],[0,-5],[-1,-8],[0,-3],[0,-3],[1,-2],[0,1],[0,1],[0,4],[0,3],[1,3]],[[8577,65966],[0,1],[0,-1]],[[8577,65966],[1,-4],[0,-1],[1,-2],[1,5],[0,1],[1,0],[1,-2],[0,-3],[0,-4],[0,-3],[-1,-6],[-1,0],[0,-2],[0,-2],[-1,-3],[0,-4],[1,-2],[0,-3],[1,-2],[0,-2],[0,-1],[0,-2],[1,-1],[1,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,2],[1,2],[0,2],[1,0],[0,-2],[1,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[3,-11],[0,-1],[1,2],[0,1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-7],[0,-2],[-1,-13],[0,-4],[0,-3],[0,-2],[0,-1],[1,0],[0,1],[0,2],[0,3],[0,2],[1,2],[0,1],[1,-1],[0,-2],[0,-3],[1,-2],[0,-3],[0,-4],[-1,-2],[-1,-8],[0,-2],[-1,-3],[0,-2],[1,-6],[0,1],[2,-6],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[1,-1],[0,1],[1,1],[0,1],[0,7],[1,2],[1,3],[0,5],[0,4],[1,1],[0,-1],[0,-13],[0,-1],[-1,0],[-1,-2],[0,-6],[0,-3],[1,-6],[0,-4],[-1,-11],[0,-8],[1,-11],[2,4],[0,-2],[1,3],[0,9],[1,4],[1,1],[1,3],[0,6],[1,-12],[0,-1],[0,-5],[0,-3],[1,0],[0,3],[1,1],[1,1],[0,-2],[0,-5],[0,-2],[1,-2],[0,-1],[1,0],[1,0],[2,-3],[0,-1],[0,-2],[0,-2],[0,-7],[0,-3],[-1,-1],[-1,-3],[0,-3],[0,-3],[0,-7],[0,-1],[0,-1],[1,0],[0,2],[0,3],[1,2],[0,1],[1,0],[0,-3],[1,-7],[0,-3],[0,-5],[0,-2],[-1,-2],[0,-3],[-1,-3],[0,-11],[0,-4],[0,-2],[1,6],[1,1],[0,-1],[1,-2],[1,-4],[1,-4],[0,-4],[0,-2],[0,-5],[-1,0],[-1,3],[0,-2],[0,-6],[-1,-13],[0,-7],[0,-4],[1,-4],[0,-2],[2,0],[1,1],[0,-7],[0,-12],[-1,-6],[-1,-2],[0,-1],[0,-6],[0,-2],[1,0],[1,-1],[0,1],[1,7],[0,2],[1,1],[0,-1],[1,-2],[0,-2],[0,-4],[0,-2],[-1,-4],[-1,0],[0,-1],[-1,-4],[0,-2],[0,-6],[1,-5],[3,-5],[1,4],[1,0],[1,-8],[0,-2],[0,-4],[0,-3],[-1,0],[0,-2],[-1,2],[-1,5],[-1,0],[0,-7],[-1,-1],[-1,-1],[0,-2],[0,-2],[0,-4],[0,-8],[1,4],[0,1],[1,1],[0,-3],[0,-4],[0,-3],[-1,-2],[0,-3],[-1,-11],[1,-8],[-1,-2],[-1,3]],[[8616,65538],[0,1],[0,-1]],[[8616,65538],[-1,-2],[0,-2],[0,-3],[1,-4],[0,-5],[1,-4],[2,-12],[0,-5],[0,-8],[0,-6],[1,-5],[0,-1],[2,0],[0,2],[0,1],[1,4],[1,-3],[0,-3],[0,-3],[-1,-8],[0,-5],[1,-5],[0,-1],[-1,-12],[0,-6],[1,-2],[0,-1],[0,-1],[1,0],[0,6],[1,0],[0,-4],[1,-2],[0,-4],[-1,-8],[-1,-3],[0,-1],[0,-4],[0,-12],[0,-1],[1,6],[0,1],[2,1],[0,1],[0,2],[0,5],[1,2],[0,3],[1,-2],[0,-4],[-1,-18],[-1,-8],[2,-2],[0,-5],[0,-19],[0,-3],[-1,-2],[0,-3],[0,-1],[0,-5],[0,-3],[1,-1],[1,-2],[1,-6],[1,-2],[1,0],[0,1],[0,3],[1,3],[0,4],[0,3],[0,1],[1,0],[0,-3],[0,-3],[0,-1],[0,-3],[0,-6],[0,-1],[1,-1],[1,2],[1,-1],[0,-5],[0,-6],[0,-7],[-1,-7],[0,-4],[0,-2],[0,-4],[1,0],[0,2],[1,7],[1,4],[1,-4],[0,-4],[-1,-9],[0,-7],[0,-1],[0,-2],[1,0],[0,6],[1,1],[2,-10],[1,-3],[0,-3],[0,-3],[0,-3],[-1,-1],[0,-2],[-1,-8],[0,-8],[0,-2],[2,-6],[1,3],[1,2],[1,-3],[0,-6],[0,-1],[-1,-8],[0,-4],[1,-4],[0,-1],[0,-6],[-2,-4],[0,-1],[-1,-1],[0,-3],[0,-4],[0,-3],[1,0]],[[8647,65203],[0,1],[0,-1]],[[8647,65203],[1,-3],[0,-2],[0,-2],[0,-3],[0,-9],[0,-2],[1,1],[1,-2],[1,-4],[1,3],[1,-1],[0,-2],[0,-2],[0,-4],[1,-9],[1,-11],[0,-12],[0,-7],[1,-3]],[[8656,65129],[0,-1],[0,1]],[[8656,65129],[0,2],[1,2],[0,3],[0,2],[1,1],[0,1],[1,-2],[0,-3],[0,-1],[0,-2],[0,-4],[0,-4],[0,-5],[0,-5],[0,-3],[1,-6],[0,-2],[0,-4],[0,-4],[1,-4],[0,-1],[0,-3],[0,-4],[0,-1],[1,0],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[1,-6],[0,-9]],[[5097,58478],[2,106],[0,414],[-1,752],[12,3],[38,4],[0,123],[-1,24],[1,11],[0,277],[-6,4],[0,450],[0,429],[38,2],[17,1],[0,379],[99,2],[11,1],[-1,436],[48,6],[0,448],[27,-3],[22,0],[1,-2],[11,-2],[3,0],[-5,804],[-1,221],[0,4],[-3,259],[-4,1],[-4,-6],[-54,-1],[-1,83],[-1,1653],[-2,1],[-2,1665],[0,55],[57,9],[-1,856],[55,4],[1,351],[0,20],[0,108],[0,351],[-3,0],[2,585],[0,265],[54,-5],[1,652],[0,162],[0,51],[-2,-1],[0,432],[-57,-2]],[[5448,70920],[0,155],[0,569],[2,580],[-4,5],[0,172],[1,677],[23,3],[119,-4],[23,-4],[11,1],[0,210],[0,61],[0,552],[104,4],[104,5],[90,1],[1,1027],[0,294],[0,421],[1,1],[42,1],[86,-9],[1,0],[7,3],[2,-1],[3,3],[3,-3],[2,2],[6,3],[81,10],[0,-506],[0,-370],[118,14],[0,109],[1,753],[27,7],[92,-4],[0,-420],[55,13],[5,4],[0,-435],[61,-3],[36,-3],[20,2],[2,571],[0,176],[0,107],[11,0],[0,433],[55,-2],[126,-5],[1,388],[0,35],[0,316],[11,1],[97,-1],[34,0],[1,0],[41,-1],[0,26],[0,410],[17,1],[1,419],[0,20],[1,143],[0,319],[-2,345],[-1,310],[0,214],[-44,-6],[-1,449],[-75,-7],[-48,23],[0,89],[0,500],[0,115],[0,576],[16,-1],[1,444],[-42,-1],[-21,0],[0,86],[2,341],[-63,-7],[0,438],[-62,3],[0,442],[13,-4],[2,565],[1,109],[0,9]],[[6645,83208],[67,6],[10,0],[83,7],[60,0],[178,4],[63,1],[130,-4],[1,0],[16,-3],[33,-12],[244,8],[3,0],[38,13],[102,5],[1,0],[25,-4],[20,-1],[21,-5],[25,0],[22,-1],[20,0],[78,-4],[5,1],[33,0],[17,0],[31,-1],[5,0],[6,-1],[21,-2],[115,-16],[2,1],[24,4],[21,-1],[9,0],[14,1],[2,2],[2,-1],[18,-6],[16,-5],[11,5],[21,10],[4,0],[9,1],[38,4],[27,2],[242,4],[196,-8],[74,-8],[116,1],[87,0],[174,1],[11,0],[0,71],[0,628],[0,60],[0,26],[0,399],[-1,742],[1,473],[0,22],[22,5],[142,43],[76,13],[2,0],[10,3],[3,-1],[211,20],[8,4],[79,-16],[3,-1],[24,-6],[365,-61],[68,-4],[125,18],[1,0],[100,23],[32,1],[120,2],[1,-1]],[[9779,66757],[0,-80],[-3,-37],[-3,-34],[-5,-1],[-4,8],[-1,-8],[-2,-17],[-4,7],[-1,2],[-4,24],[-3,-13],[-3,-16],[-2,-15],[-3,-22],[-7,31],[-9,-13],[-6,0],[-7,-15],[-5,-4],[0,-23],[-2,-30],[-1,-26],[2,-22],[-1,-27],[-1,-4],[-6,-16],[-4,-25],[-7,-25],[-7,-32],[-6,-16],[-5,-8],[-2,-21],[-4,-18],[-3,10],[-10,32],[-9,-4],[-2,45],[-8,-5],[-7,-13],[-2,2],[-3,2],[0,1],[-4,-30],[-3,-13],[-1,-2],[-3,-11],[-2,-7],[-4,25],[-6,-3],[-6,2],[-4,21],[-1,-2],[-4,-17],[-6,-42],[-2,-25],[-1,-15],[0,-16],[-4,-3],[-4,-8],[-7,-2],[-7,23],[-10,7],[-2,12],[-2,16],[-3,-5],[-1,-4],[-6,-25],[-4,-1],[-2,1],[-1,-38],[-4,-35],[-1,-11],[-3,-38],[-4,-12],[-3,-19],[-1,-46],[-4,-40],[-5,-53],[-9,-36],[-8,5],[-3,-14],[-4,-14],[-6,23],[-4,8],[-4,-2],[-6,-51],[-12,-31],[-7,28],[-7,-24],[-11,-21],[-2,-34],[0,-45],[1,-41],[-1,-33],[-4,-14],[-5,-17],[-6,-12],[-6,-14],[-2,12],[-5,-52],[-6,-41],[-3,-25],[-8,-28],[-6,17],[-4,4],[-7,6],[-2,6],[-5,9],[-2,22],[-4,44],[-9,13],[-8,56],[-4,2],[-6,28],[-1,5],[-2,-40],[-6,-57],[-6,-29],[-1,-6],[-4,-18],[-4,6],[-7,-11],[-6,2],[-4,2],[-10,-32],[-2,-31],[0,-19],[-4,-16],[-5,-38],[-4,-32],[-3,-34],[-2,-5],[-3,-22],[-7,-8],[-4,-12],[-1,-11],[-3,19],[-7,26],[-5,7],[-2,-1],[-3,3],[-5,-29],[-7,18],[-2,-31],[-3,-39],[-2,12],[-2,3],[-1,-15],[-2,-14],[-1,-8],[-2,-3],[-1,-2],[-3,-14],[-3,-30],[0,-9],[1,-19],[3,-34],[0,-16],[-1,-21],[-1,-32],[0,-34],[-2,-26],[2,-13],[-1,-30],[-4,-5],[-3,-13],[-3,-12],[-4,-2],[-4,-10],[-2,-1],[0,-23],[-4,-30],[-1,-12],[-2,-11],[0,-8],[-1,-11],[-2,-7],[-5,-23],[0,-9],[0,-4],[0,-5],[-1,0],[-2,0],[0,1],[-1,2],[-1,2],[-1,11],[-1,1],[-2,1],[-1,-3],[-1,0],[-1,3],[-1,1],[0,2],[-1,0],[-1,2],[-2,1],[-1,12],[0,1],[-4,-1],[0,2],[-1,2],[-1,1],[-1,1],[0,1],[-1,2],[0,2],[-1,1],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,5],[-2,0],[-2,-1],[-3,-2],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,-6],[-1,1],[-1,-2],[-2,-9],[-1,-4],[0,-4],[-1,-10],[-2,-15],[0,-1],[-3,-1],[0,3],[0,1],[-1,1],[-1,0],[0,-2],[-2,-7],[0,-2],[-1,-3],[-1,-8],[0,-6],[-1,-8],[0,-5],[-2,0],[-1,-2],[-1,-2],[0,-4],[-3,-11],[0,-1],[-2,2],[-1,-1],[0,1],[-2,0],[-1,0],[0,3],[-1,1],[-1,-1],[-1,-1],[0,-1],[-2,-3],[-1,-3],[-1,-1],[-2,-13],[-1,1],[-1,2],[-1,2],[-1,8],[-9,-3],[-5,0],[-1,-1],[-4,2],[-71,1]],[[10628,72513],[0,-20],[0,-45],[0,-282],[0,-196],[0,-221],[0,-298],[0,-228],[0,-214],[0,-232],[0,-231],[0,-225],[0,-222],[0,-102],[0,-326],[0,-330],[0,-219],[0,-357],[0,-281],[0,-196],[0,-371],[0,-244],[0,-149],[0,-189],[0,-198],[0,-245],[0,-122],[0,-22],[0,-113],[0,-134],[0,-124],[0,-223],[0,-91],[0,-249],[0,-105],[0,-241],[0,-248],[0,-92],[0,-71],[0,-123],[0,-47],[0,-152],[0,-169],[0,-169],[0,-292],[0,-161],[0,-143],[0,-72],[0,-260],[0,-97],[0,-139],[0,-200],[0,-115],[0,-6],[0,-138],[0,-297],[0,-208],[0,-131],[0,-267],[0,-202],[0,-206],[0,-192],[0,-99],[0,-188],[0,-245],[0,-234],[0,-210],[0,-174],[0,-243],[0,-129],[0,-219],[0,-222],[0,-99],[0,-168],[0,-239],[0,-277],[0,-257],[0,-225],[0,-209],[0,-202],[0,-124],[0,-302],[0,-128],[0,-269],[0,-186],[0,-112],[0,-5],[0,-142],[0,-95],[0,-214],[0,-257],[0,-89],[0,-263],[0,-465],[0,-414],[0,-281],[0,-192],[0,-105],[0,-182],[0,-77],[0,-131],[0,-261],[0,-52],[0,-119],[0,-195]],[[3585,85085],[-1,-2],[-1,-1],[0,2],[-1,2],[0,2],[0,4],[0,7],[0,5],[0,2],[0,3],[1,1],[1,-2],[0,-3],[0,-11],[1,-2],[0,-2],[0,-2],[0,-3]],[[4463,90226],[-1,-2],[-1,4],[0,16],[0,2],[1,-3],[1,-2],[1,-7],[-1,-8]],[[4459,90302],[1,0],[1,6],[2,9],[3,7],[1,-6],[-1,-12],[-1,-9],[1,-9],[-1,-7],[-1,4],[-1,2],[-1,-5],[1,-9],[-1,-13],[-1,-2],[-1,-4],[-1,-5],[0,-11],[-1,0],[-1,10],[0,10],[1,6],[1,10],[-2,6],[0,4],[-1,7],[-1,9],[0,22],[1,35],[1,29],[1,15],[2,2],[-1,-15],[0,-15],[0,-6],[2,-2],[2,-5],[-1,-10],[-1,-10],[-2,-17],[0,-21]],[[4459,90427],[-2,-6],[-1,6],[0,14],[-1,37],[2,103],[-1,161],[0,123],[0,99],[-1,96],[-1,86],[1,65],[0,40],[2,39],[1,49],[2,33],[1,23],[3,41],[2,25],[1,9],[1,-14],[-2,-31],[-2,-39],[-2,-40],[-2,-50],[-1,-18],[0,-33],[-1,-20],[0,-49],[-1,-61],[3,-247],[-1,-27],[-1,-19],[1,-28],[2,-13],[-1,-28],[0,-19],[0,-34],[1,-19],[-1,-17],[1,-17],[0,-30],[-1,-28],[-1,-21],[-1,-20],[1,-18],[0,-26],[0,-12],[0,-10],[0,-30],[0,-25]],[[4505,91954],[-1,-3],[-2,3],[-1,7],[-1,13],[1,10],[0,10],[2,16],[1,8],[1,7],[0,-14],[0,-12],[-1,-14],[1,-15],[0,-16]],[[4515,92065],[-2,0],[-1,4],[-1,11],[2,17],[1,3],[1,-4],[0,-9],[1,-10],[-1,-12]],[[10506,91626],[1,0],[3,1],[5,-4],[5,-13],[5,-29],[1,-15],[2,-6],[1,-8],[0,-12],[-1,-6],[-1,-5],[-2,3],[-1,13],[-2,16],[-4,29],[-1,8],[-1,-6],[-1,-16],[-1,0],[-6,17],[-5,12],[-1,5],[-19,143],[-4,32],[-6,31],[-2,20],[-9,49],[-6,31],[-7,44],[-6,33],[-11,42],[-9,35],[-7,27],[-12,31],[-11,32],[-5,12],[-1,10],[0,6],[1,5],[1,-1],[1,-1],[3,-10],[9,-32],[6,-19],[7,-19],[6,-12],[8,-30],[10,-46],[9,-43],[11,-48],[4,-25],[5,-30],[7,-35],[6,-38],[3,-27],[8,-52],[6,-41],[4,-28],[3,-20],[1,-10]],[[10364,92269],[-2,-27],[-5,12],[-5,37],[2,42],[5,-15],[5,-37],[0,-12]],[[10351,92302],[-2,-9],[-13,56],[-3,10],[0,16],[7,-11],[10,-43],[1,-19]],[[4471,91500],[1,-13],[-1,4],[-2,4],[-2,4],[0,10],[0,29],[2,51],[1,50],[2,43],[3,56],[7,186],[1,24],[2,63],[2,45],[3,43],[2,46],[2,40],[4,48],[4,37],[4,46],[7,51],[7,62],[4,36],[5,35],[4,38],[5,33],[0,1],[1,-7],[-1,-9],[0,-14],[-5,-43],[-2,-11],[-1,-9],[-1,-15],[-2,-11],[0,-8],[-1,-12],[-3,-21],[-3,-23],[-1,-10],[-3,-18],[-1,-13],[-2,-17],[-2,-22],[-2,-21],[-2,-9],[-2,-13],[-1,-19],[-1,-13],[-3,-28],[-3,-33],[-3,-33],[-1,-48],[-1,-12],[-2,-26],[-2,-47],[0,-12],[-1,-14],[-1,-34],[-1,-45],[-1,-17],[0,-22],[-1,-10],[-1,-4],[-1,-21],[0,-26],[-2,-14],[-1,-18],[-1,-28],[-1,-11],[0,-18],[0,-15],[-1,-23],[-1,-38],[-2,-26],[-1,-31],[0,-32],[-1,-34],[1,-14]],[[10328,92382],[-2,-6],[-1,2],[-2,4],[-1,4],[-2,14],[-2,2],[-4,14],[-6,22],[-9,47],[-6,33],[-6,25],[-10,61],[-5,18],[-5,21],[-1,18],[0,13],[2,0],[2,-2],[1,-3],[3,-17],[5,-30],[4,-22],[3,-16],[2,-10],[4,-28],[4,-18],[5,-23],[4,-20],[3,-11],[5,-27],[1,-4],[2,-5],[2,-8],[6,-21],[3,-12],[1,-15]],[[4547,92617],[-1,-11],[-1,0],[-1,3],[0,16],[1,16],[1,22],[2,18],[1,18],[2,8],[0,-6],[-1,-13],[-1,-11],[1,-10],[-2,-15],[0,-15],[-1,-20]],[[9538,93066],[3,-11],[0,-6],[0,-9],[-2,13],[-1,9],[-2,-1],[-2,-1],[-1,6],[1,6],[3,0],[1,-2],[0,-4]],[[4556,92744],[-2,-7],[1,16],[2,20],[4,49],[3,27],[3,24],[7,50],[2,23],[7,72],[2,37],[3,31],[3,32],[1,-32],[-2,-18],[-1,-17],[-1,-9],[0,-4],[-2,-4],[-1,-19],[0,-13],[-1,-9],[-2,-18],[2,-8],[-1,-4],[-2,-7],[-2,-8],[-1,-21],[-2,-21],[-2,-18],[-3,-20],[-3,-22],[-3,-22],[-1,-14],[-2,-7],[-1,-14],[-1,-11],[-1,-10],[-2,-12],[-1,-12]],[[9722,93312],[-3,-13],[-4,2],[0,6],[1,9],[4,8],[3,23],[3,17],[0,-14],[-4,-38]],[[4596,93147],[-2,-11],[-1,1],[0,16],[5,47],[5,50],[4,39],[3,41],[2,29],[0,24],[2,24],[1,12],[2,23],[2,23],[4,24],[2,8],[-2,-24],[-2,-13],[-2,-15],[-1,-14],[-1,-11],[-1,-22],[0,-32],[-1,-7],[-1,-16],[-3,-17],[-4,-57],[-2,-35],[-2,-19],[-3,-23],[-2,-41],[-2,-4]],[[9783,93451],[-1,-2],[-2,4],[-1,7],[-1,7],[-1,9],[0,13],[1,9],[0,6],[1,0],[1,-13],[1,-12],[1,-8],[1,-17],[0,-3]],[[4631,93513],[-2,-9],[-2,4],[2,11],[2,-6]],[[10087,93489],[1,-11],[-2,4],[-2,18],[-3,3],[-2,7],[0,4],[0,7],[5,-19],[1,-6],[2,-7]],[[9818,93499],[-4,-16],[-2,15],[2,23],[9,3],[-3,-25],[-2,0]],[[9788,93525],[4,-44],[0,-28],[0,-7],[1,-12],[1,-17],[0,-10],[-1,-10],[-1,-6],[0,-9],[-1,33],[-2,27],[-2,38],[-2,28],[0,15],[1,-1],[2,3]],[[9785,93482],[0,-12],[-1,0],[0,7],[-1,7],[-1,7],[-1,6],[0,5],[-1,5],[0,8],[-1,8],[1,4],[1,-2],[3,-27],[1,-7],[0,-9]],[[10066,93577],[-1,-5],[-3,8],[-1,6],[-4,12],[-7,29],[0,1],[-3,11],[-2,9],[-6,16],[0,6],[3,-2],[4,-14],[0,-1],[3,-12],[3,-10],[1,-5],[5,-22],[1,-1],[4,-17],[3,-9]],[[9991,93690],[-4,-21],[-2,19],[2,51],[3,12],[1,-61]],[[9904,93709],[-2,-43],[-15,-54],[-3,-50],[-2,12],[0,34],[-2,34],[-2,6],[0,12],[0,15],[-1,6],[-1,8],[-2,-2],[-1,4],[-1,8],[-1,5],[-1,10],[-2,9],[-2,6],[-1,15],[0,9],[31,19],[22,-2],[0,-8],[0,-10],[-13,-4],[-1,-7],[-1,-10],[1,-22]],[[10030,93723],[1,-6],[-2,8],[-1,3],[-2,4],[0,4],[-1,5],[-1,2],[-2,5],[0,1],[-3,3],[-2,5],[-2,8],[-2,10],[0,3],[2,-6],[2,-9],[2,-4],[3,-7],[1,-1],[3,-7],[0,-1],[2,-8],[2,-12]],[[9858,93762],[-1,-13],[-1,1],[-2,-60],[-1,-6],[-3,3],[-3,5],[-1,3],[-2,3],[-2,11],[-1,1],[-3,13],[-3,6],[-1,5],[-6,12],[-2,2],[-2,-6],[-4,7],[0,-7],[-2,-15],[0,-13],[-1,-8],[-1,-4],[-4,-19],[0,-1],[0,-9],[-4,-30],[-1,3],[-1,-3],[-2,-5],[-3,-16],[-3,-16],[-3,-10],[-3,-10],[-1,-5],[-1,-3],[-1,8],[1,13],[1,-1],[1,2],[1,0],[1,4],[1,6],[2,7],[1,9],[2,10],[1,7],[1,5],[3,4],[1,5],[1,1],[4,28],[1,12],[3,16],[1,12],[0,15],[1,13],[1,4],[1,0],[4,5],[4,-5],[3,-10],[4,-4],[3,-7],[3,-14],[1,-4],[5,-12],[6,-14],[1,1],[0,1],[2,48],[0,4],[0,13],[1,13],[1,10],[1,3],[1,3],[1,0],[0,-6],[-1,-9],[-1,-12]],[[9999,93866],[-7,-23],[-1,0],[-14,-64],[0,24],[8,37],[7,23],[4,8],[2,1],[1,0],[0,-6]],[[9912,93876],[15,-65],[5,-23],[6,-17],[11,-23],[2,-13],[-8,15],[-9,18],[-1,1],[-15,63],[-8,27],[0,-5],[-1,-16],[-1,-1],[-1,7],[0,14],[-1,-3],[0,-17],[-1,-5],[-2,-15],[0,26],[3,28],[1,3],[1,3],[1,-3],[1,5],[1,-1],[0,-1],[1,-2]],[[4758,93881],[0,20],[4,11],[1,-8],[1,-7],[-2,-15],[-4,-1]],[[9234,94065],[4,-11],[7,-30],[4,-14],[0,-8],[1,-12],[-1,-17],[0,-3],[-1,-9],[-2,16],[-5,9],[-15,69],[0,-5],[-1,-8],[-2,-4],[-1,-4],[-2,-3],[-1,-6],[-1,-1],[-1,-3],[-1,9],[-1,12],[0,13],[-1,9],[-2,18],[2,4],[1,-4],[2,-10],[2,-12],[3,-1],[2,11],[0,1],[-11,25],[-1,3],[0,6],[1,7],[12,-19],[3,-1],[6,-27]],[[8872,94125],[0,-9],[1,-6],[0,-13],[0,-13],[0,-9],[-1,-15],[-1,-2],[-1,3],[-1,4],[-1,6],[-2,5],[-1,4],[-1,8],[1,17],[1,11],[0,4],[2,2],[2,1],[1,0],[1,2]],[[9201,94123],[4,-6],[2,-4],[2,5],[1,-21],[-2,-8],[-7,20],[-2,1],[-1,2],[-2,0],[-2,-6],[0,9],[-2,3],[-1,-2],[-1,-1],[-2,1],[-2,-4],[0,2],[-1,0],[-1,-8],[-1,-3],[-1,2],[1,11],[-1,2],[-2,0],[-1,-5],[0,1],[-4,-5],[0,12],[1,7],[1,4],[3,1],[2,0],[4,2],[4,-2],[1,0],[3,-1],[4,-8],[3,-1]],[[8877,94124],[-1,-20],[-2,9],[-1,12],[1,3],[1,5],[0,3],[1,2],[1,-4],[0,-10]],[[8906,94210],[2,-19],[1,-40],[-1,-4],[-1,26],[0,16],[-1,11],[-1,4],[-1,1],[-2,-4],[-1,-6],[-1,-7],[-1,-5],[-1,-2],[-2,-2],[0,-7],[-1,0],[-1,-2],[-1,-8],[-1,-11],[0,-9],[-2,1],[0,19],[-1,6],[-2,-3],[-1,0],[-1,4],[0,1],[-2,-7],[-1,-4],[0,3],[0,8],[3,14],[0,1],[1,2],[1,6],[1,5],[2,11],[1,11],[1,12],[1,15],[1,11],[0,11],[2,3],[1,-2],[2,-9],[1,-3],[1,-3],[1,-5],[1,-8],[1,-7],[1,-17],[1,-8]],[[8883,94322],[1,-3],[1,0],[1,-8],[1,0],[0,-15],[-1,5],[-5,1],[-3,7],[1,13],[4,0]],[[4726,94276],[-1,-18],[-1,-23],[-3,-18],[-1,-2],[0,18],[3,27],[0,15],[-2,-14],[-3,-26],[-2,-6],[-3,-6],[-3,-13],[-3,-14],[-1,-13],[-1,-11],[-1,-20],[-1,-6],[-3,-4],[-3,-8],[-4,-20],[-3,-21],[-6,-34],[-1,-17],[-3,-10],[-1,-7],[-4,-32],[-3,-28],[-4,-35],[-4,-39],[-1,-18],[-4,-27],[-6,-35],[-1,-19],[-1,0],[-3,-30],[-1,-10],[-4,-23],[-2,-26],[-2,-34],[-1,-42],[-1,-28],[-2,-23],[0,-23],[-2,-13],[-2,12],[-1,2],[-1,10],[5,53],[4,83],[7,65],[7,58],[3,22],[3,17],[12,90],[10,104],[3,28],[10,53],[13,77],[6,26],[10,49],[8,37],[13,78],[8,29],[0,-14],[-2,-7],[-1,-18],[-3,-4],[-2,-12],[-3,-18],[-4,-18],[-4,-21],[-5,-20],[-1,-11],[0,-14]],[[8717,94533],[-1,-3],[-1,2],[1,12],[-1,12],[1,9],[0,4],[1,0],[1,-5],[0,-14],[-1,-17]],[[4758,94444],[-3,-2],[-1,1],[-1,-3],[-1,-1],[2,17],[5,28],[5,22],[2,11],[3,14],[8,40],[7,32],[3,2],[0,-8],[0,-6],[-4,-17],[-2,-8],[-1,-13],[-3,-4],[-3,-13],[-2,-9],[-2,-5],[-1,-5],[-1,-4],[-2,-10],[-3,-13],[-3,-15],[-2,-16],[0,-15]],[[8706,94582],[-1,-4],[-1,4],[1,21],[1,3],[0,-11],[0,-13]],[[8955,94619],[-1,-7],[-3,7],[1,18],[2,-2],[0,-1],[2,-6],[-1,-9]],[[8937,94645],[-1,-17],[-1,6],[-3,-11],[-2,-7],[0,10],[2,12],[1,5],[0,1],[2,7],[2,-6]],[[5371,94586],[-2,-18],[-4,56],[2,17],[5,13],[1,-17],[-2,-51]],[[8682,94692],[2,-1],[1,2],[1,0],[1,-9],[1,-8],[0,-10],[0,-3],[-1,-3],[-2,-2],[-1,0],[-2,3],[-1,3],[-1,1],[-2,4],[-1,3],[-2,10],[1,9],[1,7],[1,2],[1,-2],[2,-4],[1,-2]],[[4997,94611],[-2,-13],[-3,2],[-4,-7],[-5,-12],[-1,0],[-1,-9],[-2,-11],[-2,11],[2,12],[5,16],[10,32],[10,22],[2,8],[10,33],[6,15],[10,19],[5,10],[2,1],[2,-1],[0,-5],[-3,-2],[-3,-1],[-4,-8],[-2,-8],[-5,-15],[-5,-11],[-7,-17],[-4,-16],[-7,-20],[-4,-25]],[[4819,94746],[10,-17],[18,-32],[21,-35],[43,-67],[29,-17],[13,-7],[14,-9],[1,-4],[1,-16],[1,-11],[-1,1],[-6,20],[-8,5],[-3,2],[-4,0],[-8,3],[-11,8],[-10,4],[-5,5],[-3,4],[-8,7],[-6,11],[-18,26],[-22,44],[-27,46],[-7,13],[-3,3],[-1,-10],[-2,-5],[-2,-3],[-3,-13],[-2,-11],[-3,-8],[-4,-14],[-4,-19],[-3,-22],[-1,-21],[0,-10],[-2,0],[0,13],[0,14],[3,24],[3,22],[6,27],[4,22],[3,24],[5,7],[2,-4]],[[5109,94975],[0,-2],[1,0],[2,1],[-1,-3],[-4,-6],[-2,-4],[-1,-9],[1,-4],[-5,-10],[-2,-10],[-3,-16],[-5,-13],[-2,-13],[-1,-3],[-3,-6],[-4,-12],[-3,-15],[-3,-7],[-2,-12],[-3,-8],[-4,-13],[-2,-8],[-1,-1],[-4,-12],[-8,-23],[1,13],[7,21],[5,18],[2,5],[3,13],[5,22],[5,21],[9,24],[9,34],[6,15],[5,20],[2,3]],[[5341,94989],[-1,-8],[-1,1],[-3,-2],[-2,-5],[-1,3],[1,10],[0,14],[0,15],[1,5],[1,1],[2,0],[2,-7],[0,-11],[1,-16]],[[7957,95026],[-4,-76],[-2,-9],[-2,-27],[-1,-22],[-3,-17],[-2,-9],[-3,-13],[-2,-4],[-2,-3],[-2,-6],[-2,1],[0,10],[-1,3],[-1,-8],[-2,-18],[-2,-8],[-1,-5],[-2,-4],[-1,-5],[-1,0],[-4,120],[1,10],[1,14],[0,11],[1,7],[1,3],[3,4],[1,3],[4,-2],[1,4],[4,9],[1,6],[1,5],[2,2],[2,-2],[2,-2],[2,5],[9,13],[2,2],[1,5],[0,2],[1,1]],[[8828,95025],[0,-13],[-1,1],[0,2],[0,25],[-2,18],[-1,3],[-1,0],[-2,12],[-1,11],[1,5],[1,-6],[2,-6],[1,-7],[2,-8],[1,-8],[0,-18],[0,-11]],[[8814,95098],[2,-7],[0,-6],[0,-4],[-2,3],[-1,-3],[-1,-1],[-1,-1],[-2,-1],[0,8],[1,10],[2,-2],[2,4]],[[7983,95129],[2,-10],[0,-14],[-1,-10],[0,-9],[-1,-8],[-1,-13],[-1,-10],[-2,-3],[-2,-1],[-2,-9],[-2,-15],[-2,-10],[-2,-7],[-3,-8],[-1,-10],[-3,-7],[0,-2],[-2,-7],[-4,-15],[5,86],[9,41],[6,35],[4,-4],[3,10]],[[8520,95088],[-1,-11],[-1,1],[0,13],[0,18],[0,13],[-1,15],[1,4],[0,-4],[1,-19],[1,-16],[0,-14]],[[8454,95140],[1,-16],[0,-5],[-1,-1],[-3,-10],[-3,-2],[-3,-18],[-1,1],[0,7],[1,27],[0,11],[1,-3],[1,0],[1,11],[2,1],[2,1],[1,0],[1,-4]],[[8515,95170],[1,-13],[-2,2],[-2,12],[-1,10],[-3,7],[-1,12],[1,5],[3,-8],[0,-7],[2,-10],[2,-10]],[[8433,95156],[-1,-6],[0,13],[0,11],[1,5],[1,8],[0,12],[1,7],[1,3],[1,1],[1,0],[1,-1],[1,-4],[0,-2],[1,-4],[0,-10],[-1,-3],[-1,0],[-2,-3],[-1,-6],[-1,-11],[-1,-5],[-1,-5]],[[8504,95212],[-2,-1],[-1,4],[-1,2],[-1,1],[-2,1],[0,9],[2,2],[2,-3],[3,-15]],[[8495,95213],[0,-7],[-1,5],[0,10],[1,13],[1,-6],[-1,-15]],[[8023,95153],[-2,2],[-1,10],[4,22],[2,13],[1,7],[1,8],[2,10],[2,4],[2,3],[2,4],[2,-4],[-1,-10],[0,-5],[-2,-8],[-1,-12],[-3,-8],[-2,-9],[-3,-20],[-1,-4],[-2,-3]],[[8484,95238],[-1,-11],[-1,11],[0,7],[-1,8],[-1,10],[1,-1],[1,-7],[1,-8],[1,-9]],[[8475,95279],[1,-9],[-2,0],[-1,11],[-1,7],[-2,2],[-1,7],[1,7],[2,-3],[1,-7],[1,-9],[1,-6]],[[8049,95307],[0,-8],[-1,-7],[-4,-15],[-1,-7],[-1,-8],[-2,-1],[-2,-1],[-2,-3],[-1,-2],[-3,-9],[-2,-9],[-8,-52],[-4,-11],[-2,-7],[-1,-2],[-3,-12],[-2,-5],[-2,-7],[-1,-5],[-8,-37],[-1,-4],[-2,-6],[-1,0],[-2,-1],[-3,2],[-2,3],[-1,6],[1,12],[2,9],[1,7],[1,7],[3,11],[2,6],[1,1],[3,4],[2,3],[1,5],[1,6],[2,8],[2,6],[1,8],[1,6],[2,7],[2,9],[2,7],[1,6],[1,7],[1,8],[0,12],[1,13],[2,6],[1,3],[1,0],[1,0],[2,3],[1,2],[2,7],[1,9],[1,6],[5,-3],[5,0],[6,7]],[[8457,95370],[-1,-7],[0,11],[-2,24],[-1,6],[-1,13],[-2,15],[1,9],[2,-14],[1,-14],[2,-22],[1,-9],[0,-12]],[[7958,95086],[-2,-10],[0,-6],[-1,7],[-5,-33],[-2,-5],[-4,2],[1,19],[1,36],[2,46],[2,16],[0,2],[2,44],[5,23],[7,12],[8,22],[7,52],[3,55],[2,24],[5,54],[2,4],[0,-9],[0,-9],[-1,-24],[-2,-32],[-1,-13],[-1,-16],[-1,-21],[-1,-11],[0,-20],[0,-20],[2,-25],[-1,-13],[-3,-16],[-1,-8],[-4,-25],[-2,-15],[-2,-17],[-2,-14],[-2,-11],[-2,-10],[-2,-2],[-1,-4],[-1,-4],[-4,-18],[-1,-7]],[[8047,95378],[-1,-24],[-2,-1],[-3,13],[-1,-15],[-1,-6],[-2,29],[1,12],[-2,15],[-1,31],[1,20],[4,-1],[1,-9],[2,-17],[3,-27],[0,-3],[0,-1],[1,-16]],[[8436,95496],[-2,-8],[-1,3],[-3,8],[0,6],[2,-1],[1,0],[1,-1],[2,-1],[0,-6]],[[8424,95498],[-1,-23],[-3,16],[-4,-3],[0,13],[2,5],[5,-3],[1,-5]],[[8593,95496],[-1,-12],[0,3],[0,11],[-1,9],[1,2],[1,-13]],[[8024,95499],[0,-19],[0,-11],[-2,-35],[1,-19],[-3,-47],[-2,-30],[-1,-60],[-6,-32],[-13,-62],[-11,-46],[-3,1],[-5,3],[-1,-5],[-1,1],[8,63],[2,15],[2,15],[1,15],[1,14],[0,19],[0,22],[-1,15],[1,15],[0,13],[2,18],[3,58],[1,14],[1,10],[1,7],[1,2],[0,27],[3,14],[4,-3],[2,1],[1,2],[5,18],[4,0],[1,0],[4,-13]],[[8398,95518],[-1,-5],[-4,13],[0,9],[1,2],[2,-7],[1,-5],[1,-3],[0,-4]],[[8693,95558],[1,-9],[1,-9],[-2,-3],[0,-7],[-1,0],[-1,10],[1,8],[-2,9],[-1,-5],[-1,3],[-1,0],[-2,-3],[-2,-8],[-1,5],[1,8],[1,2],[2,11],[1,3],[2,-1],[1,-2],[3,-12]],[[7966,95586],[5,-15],[10,3],[3,3],[3,6],[0,-13],[3,-3],[2,-21],[1,-24],[-1,-39],[-1,-8],[-1,-12],[-2,-5],[-3,-6],[-2,-36],[0,-1],[-3,-49],[-7,-56],[-3,-31],[-9,-29],[-7,-17],[-4,-18],[-1,-21],[-2,4],[0,28],[-2,49],[-5,54],[-2,24],[0,17],[-3,1],[-5,2],[-3,10],[-3,7],[-2,3],[-4,7],[-3,7],[0,9],[-1,9],[-2,11],[-2,9],[-1,9],[-1,6],[-1,10],[-2,8],[-2,17],[5,68],[1,-1],[1,1],[2,2],[2,1],[1,3],[1,7],[1,2],[1,-5],[2,-6],[5,-1],[2,1],[2,3],[1,3],[1,-16],[0,-29],[3,-3],[3,43],[2,-2],[1,0],[1,2],[2,-4],[5,0],[7,9],[7,10],[4,3]],[[8348,95717],[3,-4],[3,-15],[2,-3],[2,-11],[6,-18],[1,-2],[1,-8],[1,-6],[2,-12],[2,-9],[2,-12],[2,-8],[4,-26],[5,-32],[-1,-12],[-2,11],[-2,-2],[0,11],[0,11],[-4,26],[-1,-7],[1,-15],[0,-15],[-1,2],[-1,16],[-1,20],[-2,15],[-3,22],[-2,14],[-3,13],[-4,11],[-2,-1],[-3,23],[-3,10],[-3,1],[-2,11],[-2,0],[-2,5],[0,6],[6,0],[1,-10]],[[8332,95737],[-1,-5],[-1,1],[-1,-8],[1,-12],[-1,-2],[-1,3],[-1,7],[-1,11],[-2,12],[-1,11],[-1,11],[1,3],[1,-3],[2,-5],[6,-24]],[[8317,95766],[-1,-4],[-1,4],[-1,9],[0,9],[1,0],[2,-2],[1,-6],[-1,-10]],[[8162,95908],[7,-14],[8,-16],[1,-2],[4,-8],[1,-2],[1,-10],[0,-9],[-4,10],[-17,40],[-16,-3],[-3,-8],[0,12],[3,9],[15,1]],[[8261,95880],[3,-6],[4,-4],[1,-1],[4,-6],[1,-1],[12,-19],[-1,-11],[-5,4],[-1,-1],[-2,0],[0,-1],[-1,-8],[-1,-5],[-1,12],[-2,6],[-1,4],[-3,4],[-2,1],[-2,6],[-2,4],[-2,6],[-2,8],[-8,6],[-3,0],[-2,-6],[-1,-8],[-1,-7],[-2,5],[-1,3],[-1,-3],[-1,-2],[-1,5],[-1,11],[-1,9],[-1,10],[-12,23],[0,25],[8,-17],[6,-22],[4,-5],[4,-6],[13,-11],[4,-2]],[[7600,95960],[1,-12],[0,-9],[-1,-5],[-1,-1],[-2,2],[-2,7],[-1,4],[-2,7],[-1,5],[-2,1],[-2,-3],[-1,0],[-1,6],[-1,12],[2,7],[2,-5],[2,-2],[2,-4],[3,-2],[2,-1],[3,-7]],[[7574,95991],[1,-2],[0,-2],[0,-5],[3,-16],[-1,-7],[-1,7],[-2,-2],[-2,10],[-1,4],[-4,11],[-1,1],[-1,-2],[0,13],[2,4],[2,-2],[1,-2],[3,-7],[1,-3]],[[7471,96094],[-5,-8],[-1,6],[-1,8],[2,29],[2,13],[0,6],[2,2],[1,0],[1,-8],[1,-8],[-1,-6],[-1,-10],[0,-11],[0,-13]],[[7363,97418],[-2,-16],[-6,23],[-6,54],[8,-8],[6,-53]],[[7327,97605],[8,-43],[2,0],[5,-42],[1,9],[2,-11],[-2,-15],[-1,-6],[-3,-8],[-8,16],[-5,33],[-3,2],[-6,13],[2,29],[8,23]],[[5669,97621],[0,-5],[1,-4],[-1,-8],[-2,-2],[-6,-1],[-1,-6],[-2,-5],[0,-3],[-1,-4],[-1,-3],[-1,0],[-1,-1],[-1,0],[-1,-2],[-1,-3],[-1,-4],[-1,-9],[-1,-5],[0,4],[-1,4],[-1,-6],[-2,-1],[-2,0],[-2,2],[-2,-4],[-1,0],[-1,-4],[-2,-1],[-1,-3],[-1,-4],[-2,-5],[-1,-5],[-2,-3],[-13,-35],[-2,-11],[-1,2],[-3,3],[-5,-6],[-3,-4],[-2,0],[-9,-31],[-2,-10],[-2,1],[1,10],[-2,6],[-1,3],[-2,3],[-1,7],[1,11],[3,14],[10,10],[9,6],[7,10],[7,4],[3,3],[2,4],[2,5],[1,4],[1,4],[2,5],[2,4],[1,4],[2,5],[2,3],[3,6],[2,4],[3,5],[3,6],[1,3],[2,7],[2,4],[2,5],[1,6],[3,6],[2,4],[2,0],[6,2],[2,-1]],[[7266,97597],[0,-14],[1,-19],[-1,-2],[-1,6],[-2,9],[-1,13],[-2,6],[-2,0],[-2,-2],[-1,4],[1,22],[2,12],[1,9],[1,8],[1,2],[1,1],[1,6],[4,-16],[0,-15],[0,-14],[-1,-16]],[[6552,97819],[0,-30],[0,-25],[0,-21],[0,5],[-2,6],[-1,3],[-2,0],[0,-7],[0,-16],[0,-4],[0,-16],[1,-13],[1,-5],[1,7],[0,-15],[1,-25],[-3,25],[-4,24],[-7,21],[-1,5],[-5,21],[-1,30],[-1,33],[5,-12],[5,5],[4,17],[5,22],[2,24],[1,18],[1,11],[2,-23],[0,-30],[-2,-35]],[[6564,98035],[-1,-20],[-2,13],[-4,31],[-2,25],[-2,20],[1,15],[1,25],[3,17],[1,3],[1,-7],[1,-12],[0,-22],[-1,-13],[1,-6],[3,-19],[0,-29],[0,-21]],[[6741,98700],[-1,-3],[-1,3],[-2,4],[-2,8],[-1,13],[1,-1],[1,-3],[1,-3],[2,-4],[1,-4],[1,-10]],[[6707,98849],[3,-8],[3,-17],[2,-4],[1,-11],[3,-13],[2,-13],[1,-4],[3,-10],[6,-32],[0,-10],[-1,1],[-1,6],[-2,7],[-1,4],[-2,12],[-6,26],[-5,18],[-1,7],[-3,12],[-3,15],[-2,10],[-1,-3],[-1,-2],[-1,4],[-2,9],[-2,8],[1,4],[1,0],[2,-2],[1,-3],[2,-3],[3,-8]],[[6690,98882],[-2,-2],[-2,5],[-3,8],[-1,8],[0,12],[-2,5],[-1,8],[-1,6],[-3,7],[-2,3],[-3,1],[-3,7],[1,6],[3,0],[2,0],[5,-9],[1,-4],[2,-11],[3,-13],[1,-11],[3,-11],[2,-15]],[[6579,99188],[6,-12],[2,-5],[1,-4],[2,-6],[2,-7],[3,-11],[1,-10],[4,-17],[2,-9],[2,-9],[1,-14],[-1,-6],[0,2],[-1,7],[-1,6],[-2,11],[-5,22],[-1,7],[-3,12],[-3,9],[-2,5],[-2,6],[-4,11],[-3,4],[-5,0],[-5,6],[-2,-3],[-1,8],[1,5],[1,2],[1,0],[5,-2],[1,-1],[3,-2],[3,-5]],[[6542,99248],[3,-4],[4,-12],[-3,-1],[-4,0],[-3,0],[-1,-2],[-2,-2],[-2,-9],[-2,-13],[-4,-18],[-2,2],[2,14],[3,13],[2,6],[0,9],[1,13],[-1,1],[-1,-1],[-1,-5],[-1,-2],[-1,1],[-3,-7],[1,-10],[-1,-5],[-1,-4],[-1,6],[0,12],[-1,-1],[-2,-2],[-1,-5],[-2,-3],[-1,6],[1,7],[16,29],[1,1],[1,-1],[2,-5],[4,-8]],[[6468,99486],[0,-15],[-1,2],[-1,11],[-1,12],[-1,11],[-1,12],[0,8],[-1,7],[-1,10],[-2,10],[-1,10],[-2,16],[1,3],[1,-4],[2,-5],[2,-11],[1,-12],[1,-16],[2,-15],[1,-21],[1,-13]],[[6449,99623],[2,-14],[-2,1],[-1,5],[-2,8],[-5,16],[-3,8],[-3,8],[-3,2],[-1,5],[-1,5],[-2,7],[-3,9],[-2,6],[-3,14],[1,3],[1,-3],[3,-5],[3,-7],[4,-11],[2,-3],[1,-6],[3,-7],[5,-17],[3,-11],[3,-11],[0,-2]],[[6415,99711],[-1,-2],[-1,3],[-1,5],[-4,8],[-1,4],[1,8],[1,-1],[1,-1],[2,-4],[1,-4],[1,-6],[1,-10]],[[6405,99747],[0,-11],[-2,1],[-2,4],[-2,3],[-2,7],[-2,7],[1,5],[1,1],[1,-2],[1,-2],[1,-3],[1,-3],[2,-2],[2,-5]],[[4758,93881],[-3,-22],[-4,-16],[-4,-10],[-1,-15],[5,-10],[3,-12],[-2,-6],[-3,-19],[1,-25],[2,6],[1,17],[1,-15],[1,-22],[2,12],[-2,23],[1,21],[-2,28],[0,25],[3,-20],[1,-25],[2,9],[-1,21],[2,9],[3,16],[4,18],[6,31],[5,-19],[2,-9],[10,-12],[7,7],[3,12],[3,-17],[2,-14],[2,0],[3,-3],[3,0],[2,4],[3,-5],[4,9],[1,10],[1,9],[3,10],[0,28],[0,19],[1,12],[2,8],[0,25],[3,2],[6,25],[4,6],[5,13],[4,-5],[4,-23],[1,-3],[2,-10],[4,-11],[-2,-30],[0,-23],[2,-16],[2,-14],[-1,-26],[0,-9],[1,10],[0,35],[-2,30],[2,25],[1,14],[3,-22],[-1,24],[-2,20],[-4,9],[-5,15],[-2,17],[-5,10],[-2,26],[3,33],[3,16],[2,23],[4,3],[5,15],[4,8],[6,9],[5,33],[1,10],[2,48],[-1,44],[4,0],[8,15],[5,-21],[5,-10],[5,-2],[6,6],[5,-11],[4,11],[4,13],[2,-1],[2,-2],[5,-5],[2,-23],[4,15],[1,16],[6,21],[6,-11],[7,-6],[1,6],[1,-4],[4,31],[4,22],[6,20],[5,0],[4,18],[6,36],[3,13],[5,17],[6,33],[3,10],[8,28],[7,13],[3,27],[1,23],[3,30],[4,4],[4,18],[2,25],[3,28],[4,29],[2,-16],[2,-16],[2,-17],[2,-19],[1,-11],[0,-16],[-1,-18],[-3,-17],[-4,-9],[-3,-16],[-1,-28],[-1,-30],[0,-13],[0,-9],[2,12],[1,42],[1,23],[4,13],[4,17],[4,12],[2,-6],[2,-29],[5,-33],[4,-15],[1,3],[0,6],[-2,17],[-2,14],[-3,14],[-1,19],[-2,18],[-1,21],[-2,14],[-1,10],[-1,14],[4,20],[12,38],[8,24],[4,13],[6,19],[5,19],[6,34],[5,42],[4,25],[4,8],[5,16],[3,8],[2,15],[5,26],[4,32],[6,66],[3,-8],[0,17],[-2,12],[2,9],[3,13],[6,21],[2,23],[4,9],[2,-4],[3,2],[3,27],[2,9],[4,20],[2,22],[6,28],[12,63],[4,53],[-3,-11],[-1,-17],[-12,-66],[-2,-8],[-4,-17],[-5,-24],[-4,-27],[-9,-43],[-5,-23],[-6,-24],[-4,-17],[-5,-18],[-4,-17],[-5,-28],[-7,-24],[-4,-24],[-5,-23],[-3,-14],[0,-5],[-1,5],[-1,9],[1,4],[8,45],[15,63],[10,40],[5,17],[13,53],[16,86],[3,13],[4,29],[12,67],[0,2],[3,14],[1,-6],[0,12],[3,17],[3,-7],[4,23],[2,39],[2,11],[4,-14],[9,66],[4,50],[4,26],[15,100],[12,82],[11,59],[6,51],[1,6],[2,24],[16,130],[-1,-36],[-2,-8],[-4,-29],[-2,-27],[0,-11],[3,15],[3,23],[1,-31],[5,-57],[2,-4],[7,-15],[8,19],[3,-2],[7,65],[3,-3],[5,-15],[8,7],[9,18],[5,13],[2,5],[1,3],[-1,-19],[-2,-25],[0,-15],[-1,-36],[1,-58],[2,-91],[-2,14],[-2,2],[-4,-15],[0,-25],[3,-14],[5,21],[1,-30],[-3,-44],[-2,-36],[-4,-20],[-5,-10],[-1,14],[-4,5],[-5,-5],[-6,-21],[-5,-13],[-4,-29],[-1,-35],[-1,-37],[0,-22],[1,-34],[-6,3],[-6,3],[-3,-14],[-3,-7],[-2,-8],[-6,-4],[-3,-1],[0,13],[-2,-14],[-2,-4],[-3,4],[-4,-7],[-3,0],[2,-9],[3,-3],[4,9],[5,-12],[9,8],[4,9],[-1,-11],[0,-13],[3,8],[4,11],[3,-7],[8,22],[3,6],[6,-4],[8,14],[3,30],[2,24],[3,25],[3,2],[3,-6],[4,7],[3,-40],[0,-41],[-2,-37],[-2,9],[1,20],[-2,3],[-4,-14],[-2,-32],[-2,-20],[-2,-5],[-3,-21],[0,-24],[-2,-11],[-1,-7],[0,-20],[-1,-12],[-3,-10],[1,-13],[1,-16],[1,-17],[0,-15],[0,-34],[-2,-28],[-1,-18],[-3,-39],[0,-24],[-2,-5],[-1,-5],[2,-8],[-3,-12],[-2,-6],[-3,-9],[-2,-11],[-3,-15],[0,-6],[1,-1],[2,-5],[2,-19],[-1,-6],[-3,-2],[-2,-9],[-4,-35],[-2,-37],[-1,-33],[-4,-6],[-2,-9],[-3,-12],[-1,0],[-2,-8],[0,-7],[2,-2],[2,-11],[-2,-12],[-3,-15],[-2,-15],[0,-18],[1,-5],[1,-15],[3,-15],[0,5],[2,12],[4,11],[6,21],[3,15],[1,23],[2,41],[1,20],[3,17],[2,10],[3,5],[1,13],[6,17],[1,1],[2,22],[2,17],[2,16],[0,17],[3,-1],[1,0],[5,-38],[4,-50],[2,-50],[2,-25],[5,-18],[-2,-20],[-3,-24],[-3,-19],[-1,-26],[2,-61],[4,-29],[-1,-12],[-1,-21],[2,11],[3,2],[2,-15],[1,-19],[-1,-21],[-2,-6],[-2,-6],[0,-18],[1,-44],[-2,-7],[-1,-9],[1,-30],[2,-1],[1,-15],[1,-10],[2,-2],[3,-22],[1,-7],[1,-2],[2,9],[1,-8],[2,-11],[3,-32],[2,-28],[2,-17],[1,-30],[1,2],[3,-1],[1,-22],[3,-34],[2,-26],[2,-34],[0,-42],[0,-38],[1,-6],[2,-1],[1,-10],[1,-15],[0,-30],[1,-8],[1,-2],[0,21],[0,17],[-1,20],[-2,17],[-1,21],[2,28],[0,-10],[1,0],[1,7],[-1,14],[-1,3],[0,36],[-1,29],[-2,12],[-2,20],[-1,12],[-1,19],[-6,52],[-2,13],[-1,11],[-3,16],[-2,11],[-2,14],[0,24],[0,18],[2,21],[0,23],[1,13],[0,7],[2,16],[-1,13],[0,14],[1,9],[0,15],[-3,13],[-1,13],[-5,50],[1,27],[1,5],[1,0],[5,-19],[3,14],[0,20],[-5,4],[-2,5],[0,50],[1,31],[2,26],[1,17],[-5,124],[-3,24],[-3,29],[-4,30],[0,24],[0,67],[2,16],[2,26],[1,13],[-1,25],[-1,24],[2,6],[1,22],[-1,31],[-2,23],[5,6],[8,25],[3,43],[2,14],[2,6],[1,9],[-3,71],[0,69],[6,41],[2,2],[4,-5],[0,-22],[-1,-57],[1,-23],[2,-17],[2,-13],[5,2],[3,10],[1,-3],[2,0],[2,-12],[1,-1],[4,-20],[0,-5],[-1,-6],[0,-14],[1,-8],[5,32],[4,15],[2,3],[3,-1],[0,8],[4,-1],[2,7],[5,4],[2,23],[2,41],[2,0],[3,3],[2,12],[1,7],[2,-1],[3,2],[6,54],[1,14],[3,6],[1,17],[2,13],[1,3],[7,-15],[3,10],[4,-78],[-1,-36],[2,-5],[2,31],[1,23],[1,19],[3,7],[7,3],[2,15],[2,9],[1,19],[3,17],[5,9],[11,7],[4,-10],[1,2],[2,13],[0,21],[0,8],[-2,6],[-10,0],[-10,-14],[-4,-28],[-7,-17],[-2,-7],[-11,8],[-4,12],[-2,-1],[-1,-12],[-3,-2],[0,14],[3,16],[-4,-5],[-3,6],[-1,-6],[-4,10],[-4,-7],[-2,-9],[-3,-3],[-2,10],[2,14],[1,13],[-3,-9],[-1,-10],[-1,-14],[1,-2],[1,-46],[-10,-2],[-6,14],[-2,31],[0,-12],[0,-15],[-1,-16],[-2,-5],[-2,-25],[2,-51],[0,-15],[-1,-13],[0,15],[-1,12],[-3,11],[-7,-7],[-2,-6],[0,-13],[-2,-6],[1,15],[-3,11],[-10,1],[-5,-5],[-1,5],[-1,10],[-1,13],[-1,43],[-5,57],[-6,46],[-9,65],[-1,22],[-1,33],[-1,75],[0,34],[-3,53],[0,22],[2,13],[1,-25],[2,-4],[6,-4],[3,3],[-1,7],[-5,3],[-2,19],[-5,17],[0,24],[-1,3],[-2,-30],[-2,32],[-15,112],[-4,12],[-8,33],[-7,24],[-12,9],[-7,-38],[-9,-59],[-2,-13],[-2,-54],[-1,-25],[0,-25],[-2,-18],[0,8],[1,29],[1,31],[1,19],[0,20],[-1,-5],[-4,-33],[-2,-12],[3,-4],[-1,-26],[-1,-2],[-2,25],[0,25],[1,20],[2,20],[0,25],[1,26],[4,18],[3,21],[4,24],[2,8],[3,21],[4,30],[1,6],[0,6],[1,8],[2,9],[3,23],[4,25],[8,55],[8,57],[2,16],[4,30],[1,11],[2,9],[1,15],[1,3],[6,39],[10,58],[11,66],[12,90],[13,100],[8,57],[1,10],[8,56],[17,75],[16,57],[9,25],[6,18],[18,43],[17,49],[14,44],[12,28],[7,19],[6,18],[10,25],[9,9],[5,11],[-1,-18],[-1,-11],[1,-4],[2,5],[1,-5],[-1,-11],[-1,-13],[-4,6],[-3,6],[-1,-5],[0,-7],[0,-9],[-2,-5],[-2,0],[0,-12],[-2,3],[-1,10],[-6,-1],[-4,-16],[-1,-8],[-5,6],[-3,-12],[-4,-8],[-5,-14],[-4,-12],[-2,2],[-1,-8],[-1,-7],[-3,-2],[-2,-14],[-1,-5],[1,-7],[2,2],[3,11],[3,-10],[2,1],[4,-9],[2,8],[3,-2],[3,2],[3,2],[2,1],[4,3],[1,1],[6,12],[2,15],[2,5],[1,18],[4,17],[1,-48],[5,-105],[7,-58],[-6,2],[-9,4],[-8,-6],[-7,-8],[-6,-4],[-2,-3],[-3,-9],[-1,-6],[-3,-2],[-2,6],[-4,-1],[-7,-26],[-2,-1],[-2,0],[-4,-3],[-1,-21],[1,-9],[0,-18],[2,-23],[-1,-17],[0,1],[-2,-10],[-3,-11],[-3,-7],[-2,-7],[-1,-23],[-2,-13],[-2,-9],[-2,3],[0,29],[-4,51],[0,15],[-2,10],[-2,-4],[1,-18],[-3,-11],[-7,-4],[1,-9],[3,-5],[1,5],[3,3],[5,-14],[0,-22],[-1,-12],[1,2],[1,-19],[2,-23],[1,-5],[1,3],[3,-2],[2,7],[1,8],[2,-3],[2,-2],[2,5],[1,-5],[-1,-12],[-1,-8],[-2,-5],[-1,-13],[-2,-12],[-3,-9],[0,-15],[-3,-27],[-2,-8],[-2,-11],[-3,-30],[2,0],[1,12],[3,21],[2,13],[3,5],[2,16],[1,17],[2,6],[1,13],[3,8],[3,22],[-1,28],[0,57],[0,5],[1,2],[1,-10],[1,-15],[3,-8],[2,0],[5,-78],[0,-23],[-2,-28],[-1,-17],[1,-13],[1,-17],[-9,3],[-3,-16],[0,-5],[0,-15],[9,10],[0,-3],[0,-16],[-2,-15],[1,-15],[3,29],[3,17],[2,1],[1,1],[3,-20],[2,-18],[0,-15],[1,-9],[0,-6],[-1,-26],[2,-34],[3,-13],[5,-12],[1,-7],[1,3],[0,-26],[2,-14],[-1,-18],[1,-20],[5,-21],[1,-9],[1,-7],[1,-12],[2,-15],[0,-44],[1,-1],[1,10],[1,25],[0,18],[0,16],[-2,15],[0,5],[-2,-2],[-1,5],[-4,26],[0,37],[0,16],[-1,14],[-2,16],[-5,30],[-5,53],[-1,31],[0,18],[-4,10],[0,88],[-1,13],[-2,16],[4,11],[1,20],[0,44],[3,-13],[3,-20],[5,-20],[7,-23],[5,4],[3,5],[8,-13],[9,7],[6,19],[5,10],[4,44],[2,6],[-1,-20],[1,-18],[2,-17],[4,-6],[2,1],[4,3],[2,5],[1,1],[1,1],[1,2],[2,5],[2,9],[2,6],[1,4],[1,11],[1,10],[1,7],[1,17],[0,18],[0,15],[-1,10],[-1,4],[-2,7],[-2,7],[-1,2],[-1,2],[-2,1],[-1,4],[-2,4],[-3,5],[-11,14],[-1,-5],[0,-15],[-1,-4],[-1,7],[-1,5],[-2,11],[-1,28],[-1,37],[0,15],[0,4],[3,-4],[3,-11],[5,-16],[5,-9],[3,3],[4,-9],[3,-12],[6,-16],[8,-18],[8,-7],[7,-10],[10,0],[6,-8],[8,-5],[2,-2],[3,3],[4,-8],[4,0],[4,4],[1,-5],[3,3],[2,-4],[6,-5],[7,-1],[7,1],[7,4],[5,10],[4,14],[0,3],[3,12],[1,1],[1,4],[2,1],[1,-6],[2,-8],[1,-7],[2,-1],[2,1],[3,4],[3,4],[3,16],[3,16],[1,6],[3,4],[1,5],[2,1],[0,-26],[3,-18],[11,10],[1,6],[2,1],[3,13],[2,20],[2,13],[1,19],[1,3],[1,8],[1,11],[1,2],[1,-1],[0,-10],[1,-5],[1,-4],[1,-4],[2,-2],[2,-3],[2,0],[1,3],[2,12],[1,16],[1,2],[-1,4],[-7,4],[-14,15],[0,2],[-25,45],[-3,7],[-12,32],[0,7],[0,10],[12,-26],[2,1],[2,-6],[24,-51],[28,-41],[1,0],[2,-4],[3,-3],[5,3],[6,3],[6,3],[6,5],[3,2],[3,5],[5,6],[7,9],[7,11],[6,16],[7,9],[3,7],[2,6],[4,12],[5,13],[4,11],[6,10],[4,13],[3,10],[4,9],[6,14],[7,22],[5,16],[3,11],[3,12],[6,20],[4,17],[4,13],[3,15],[5,22],[1,4],[0,4],[1,3],[1,4],[1,3],[1,4],[1,4],[0,3],[1,4],[1,4],[1,3],[3,16],[2,14],[4,22],[4,18],[4,18],[3,16],[2,12],[10,44],[13,65],[12,59],[11,62],[12,78],[8,55],[6,51],[3,41],[9,51],[5,39],[17,138],[9,89],[1,16],[3,30],[23,243],[7,65],[3,44],[2,11],[1,3],[-1,-19],[2,1],[1,-10],[1,-20],[1,-16],[1,5],[1,-13],[1,-15],[0,-16],[-1,-16],[0,-12],[2,-19],[1,-15],[-1,-10],[-2,-10],[-2,-11],[-1,-9],[-1,-3],[-2,2],[-1,7],[-2,-5],[2,-12],[0,-7],[2,-10],[0,-16],[0,-12],[0,-11],[1,3],[0,10],[0,9],[1,8],[0,6],[0,12],[1,7],[1,1],[2,-8],[1,8],[-2,11],[1,6],[4,8],[1,19],[0,12],[-1,11],[-1,8],[3,11],[3,-13],[6,-15],[11,-11],[1,-24],[7,-20],[8,27],[1,28],[-3,29],[1,23],[0,1],[-1,8],[-3,0],[-1,-24],[1,-24],[1,-26],[-4,0],[-3,9],[-4,26],[-5,11],[-8,15],[-7,4],[-1,8],[-2,18],[-2,12],[-1,10],[0,14],[-1,13],[0,16],[-2,9],[-1,8],[-1,5],[-1,1],[2,19],[21,203],[6,59],[11,93],[8,68],[13,110],[1,12],[3,27],[0,8],[1,6],[1,7],[1,10],[1,11],[1,8],[1,9],[1,7],[1,4],[1,2],[0,5],[1,8],[1,6],[1,5],[1,6],[0,3],[1,4],[1,3],[0,1],[1,10],[1,4],[2,8],[1,7],[1,6],[1,5],[1,4],[1,4],[0,3],[1,5],[2,9],[0,3],[1,4],[1,5],[1,3],[1,4],[1,5],[2,16],[3,15],[3,17],[6,35],[2,10],[2,12],[1,5],[1,2],[1,5],[1,5],[1,6],[1,3],[1,5],[1,3],[1,3],[1,5],[1,2],[1,3],[1,3],[2,4],[1,2],[1,3],[1,3],[1,4],[3,10],[4,11],[4,14],[6,16],[5,15],[12,97],[-1,9],[-1,6],[0,12],[1,6],[5,-7],[2,-5],[1,-5],[3,-18],[3,-14],[3,-20],[2,-17],[3,-19],[6,-20],[2,19],[3,-16],[4,-5],[1,-33],[-9,-8],[-12,66],[-11,69],[-1,-10],[-2,-17],[-2,-14],[-3,-30],[-4,-28],[-2,-19],[-3,-12],[-1,-2],[-3,-20],[-2,-4],[-18,-27],[-10,-29],[-3,-19],[0,-25],[5,-15],[6,19],[6,10],[1,-1],[1,1],[2,-62],[1,-29],[0,-11],[-5,-21],[-1,-12],[0,-15],[1,2],[5,20],[1,2],[3,-1],[1,-12],[1,-12],[1,-18],[0,-6],[-2,-16],[-2,-11],[0,-12],[0,-7],[4,0],[5,21],[2,-8],[3,-12],[4,-7],[3,-12],[1,-4],[2,4],[3,5],[3,15],[1,6],[1,-14],[1,-10],[1,-14],[1,-9],[1,-10],[1,-15],[1,-11],[1,-11],[1,-13],[-1,-9],[-1,-6],[-1,2],[-2,-1],[-2,-6],[-1,-7],[-1,-12],[-2,-7],[1,-5],[2,4],[2,-1],[2,-4],[2,12],[1,14],[1,11],[1,8],[2,-1],[2,-4],[5,-16],[4,-11],[4,-7],[6,-5],[5,8],[4,13],[2,11],[3,-1],[4,-3],[3,-5],[3,-5],[2,-2],[2,-5],[1,-9],[11,-14],[4,-21],[5,-25],[2,-16],[3,-3],[2,3],[3,-1],[2,2],[2,-4],[3,-1],[2,-3],[1,-19],[-1,-20],[0,-10],[-1,2],[-3,1],[-1,-11],[0,-17],[1,-16],[-2,2],[-1,-6],[-2,-1],[-1,3],[-1,-4],[1,-18],[1,7],[1,0],[1,-3],[1,2],[1,4],[3,-7],[1,-1],[1,10],[1,-1],[1,-20],[2,-14],[2,-3],[2,-1],[1,-17],[1,-18],[2,-13],[1,-7],[-1,-13],[-2,-19],[0,-16],[-1,-38],[0,-20],[-1,0],[-3,1],[-2,-10],[-1,-10],[-2,0],[-2,1],[-2,-10],[-2,-12],[0,-15],[0,-13],[-1,-5],[0,-4],[-2,-4],[-2,-7],[0,-7],[-1,-3],[0,-2],[0,-8],[1,-2],[1,8],[2,6],[2,1],[1,6],[1,-4],[1,-2],[0,24],[0,13],[4,-6],[4,2],[3,15],[1,-2],[3,-7],[4,8],[2,12],[2,4],[1,5],[0,1],[1,9],[0,11],[1,8],[2,3],[3,0],[2,-6],[5,32],[3,115],[2,8],[2,9],[1,-13],[0,-9],[1,-20],[2,-68],[0,-16],[0,-17],[1,-30],[4,-11],[2,-5],[4,8],[0,40],[-2,2],[-1,4],[-1,9],[0,5],[3,2],[6,0],[7,8],[5,17],[2,4],[3,-4],[5,-10],[4,6],[2,1],[0,-9],[0,-15],[0,-14],[-2,8],[-3,-4],[1,-10],[2,-10],[2,-4],[1,11],[0,20],[1,16],[1,9],[3,-23],[4,-26],[3,-13],[5,4],[4,2],[5,-4],[4,-11],[5,-20],[2,-10],[2,-2],[2,5],[3,9],[1,1],[0,-21],[3,-25],[3,-12],[0,-26],[-1,-26],[1,-31],[-1,-36],[2,-36],[0,-27],[2,-26],[3,-26],[3,-39],[4,-37],[1,-28],[1,-32],[0,-28],[0,-21],[-1,-13],[-1,-13],[-2,-12],[-2,-13],[0,-13],[-2,-20],[-2,-14],[-3,-5],[-2,-11],[-1,-3],[-2,-5],[-3,-14],[-2,-19],[0,-12],[-1,-22],[-1,-4],[-2,6],[-1,7],[-3,9],[-3,-4],[-1,-14],[-2,-17],[-2,-23],[-1,-20],[-1,-19],[-1,-18],[-2,-8],[-4,4],[-2,3],[-2,-1],[-2,-11],[-1,-9],[-1,-29],[0,-55],[0,-49],[-1,-21],[-1,-15],[-1,-8],[-2,-4],[-3,8],[-6,11],[-7,-19],[-2,-43],[-4,-39],[-3,-28],[-1,7],[-1,10],[-1,12],[-2,11],[-3,11],[-4,-5],[-4,-6],[-4,-10],[-5,-7],[-5,1],[-3,0],[-4,1],[-4,-18],[-3,5],[-3,6],[-2,-7],[-1,-3],[-2,-10],[-2,3],[-1,-4],[-1,-14],[0,-11],[-1,0],[-1,8],[-1,5],[-1,0],[-2,1],[-1,-1],[-1,5],[-1,3],[-1,3],[-2,-2],[-1,-5],[-2,-3],[-1,5],[0,5],[-2,-4],[-1,-4],[-1,-3],[-2,-2],[-1,0],[0,2],[-1,5],[-1,-2],[0,-15],[1,-6],[1,-2],[1,-2],[1,1],[2,6],[1,8],[1,3],[1,0],[1,-6],[0,-14],[0,-10],[1,-8],[2,-9],[0,-1],[1,1],[2,-1],[2,-1],[1,-1],[1,0],[1,2],[1,6],[0,8],[1,5],[1,-3],[1,-2],[1,-2],[1,-1],[2,0],[2,-2],[1,-1],[2,-27],[1,-39],[1,-40],[1,-41],[-1,-32],[-1,5],[0,16],[-2,5],[-2,-3],[-2,-4],[-3,17],[-1,6],[-2,3],[-1,1],[-2,-1],[-1,0],[-2,4],[-2,2],[-1,1],[-1,-3],[0,-9],[-1,-1],[-2,1],[-1,0],[0,-3],[-1,-5],[-1,1],[-1,2],[-1,0],[-3,-1],[-2,1],[-2,-2],[-2,-4],[-2,-4],[-1,-3],[-1,-4],[-1,4],[-1,0],[-1,4],[-1,-2],[-1,-7],[-2,-2],[-1,0],[-1,-1],[-1,0],[-2,7],[-1,6],[0,8],[1,3],[1,1],[1,1],[1,-1],[2,2],[1,1],[0,12],[0,13],[-1,9],[-1,1],[-1,8],[1,8],[2,3],[1,1],[1,5],[2,7],[1,10],[0,13],[1,2],[1,-1],[2,3],[1,5],[1,4],[-1,6],[1,12],[0,27],[0,22],[-1,20],[-1,17],[-1,16],[-1,12],[-1,9],[-1,5],[-3,9],[-1,1],[-1,-1],[-1,-2],[-1,-10],[-1,-3],[-1,-5],[-1,-8],[-1,-12],[-1,-13],[-2,-6],[-1,-12],[-1,-8],[-1,-8],[-1,-8],[-1,-10],[-1,-1],[-2,-2],[-1,-5],[0,-13],[-1,-2],[-1,-1],[-2,-3],[0,-5],[-2,2],[-1,-2],[0,-13],[1,-18],[1,-14],[0,-9],[2,-7],[0,-15],[-1,-6],[0,-6],[-4,0],[-3,0],[1,25],[-1,19],[-3,13],[-3,5],[-2,-7],[-1,-29],[1,-17],[-9,-28],[-1,-2],[0,-3],[-9,-48],[-5,-8],[-1,19],[-4,6],[-2,-11],[-3,17],[-5,-15],[-1,-1],[-1,-8],[-2,-5],[-2,28],[-2,3],[-9,-19],[0,-21],[2,-3],[1,-2],[-1,-16],[-8,18],[0,1],[-5,-5],[-1,-14],[0,-19],[1,-21],[2,-18],[3,6],[0,9],[1,31],[2,-9],[1,0],[0,2],[6,4],[3,32],[5,-11],[5,0],[5,10],[4,-18],[8,-1],[10,41],[3,13],[7,31],[4,12],[3,-7],[4,-43],[6,23],[3,29],[0,-1],[1,14],[1,-5],[1,-8],[0,-7],[2,-2],[1,1],[1,8],[0,3],[1,-5],[0,-14],[1,-15],[0,-16],[1,-12],[1,-8],[2,-9],[1,1],[2,3],[1,9],[1,-5],[1,-11],[2,-1],[1,-1],[1,-2],[2,0],[1,-1],[2,2],[1,6],[1,5],[2,4],[1,1],[3,2],[1,1],[1,0],[1,-4],[8,-12],[1,0],[1,2],[1,0],[1,-3],[1,-1],[2,0],[1,1],[1,-6],[2,-7],[1,-11],[-1,-3],[-1,2],[-2,1],[-1,4],[-1,1],[-1,-15],[-1,-4],[-1,2],[-1,7],[-1,3],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,4],[-2,4],[-1,-3],[-1,2],[-1,0],[-2,5],[-1,3],[-1,-5],[0,-5],[1,-7],[2,-23],[1,1],[1,1],[1,4],[1,-4],[1,-16],[1,2],[1,0],[1,6],[1,4],[2,-25],[2,3],[2,11],[0,3],[1,4],[1,0],[0,-4],[1,-11],[1,3],[1,4],[1,5],[1,3],[2,-8],[2,-3],[1,-1],[1,-4],[6,3],[3,1],[2,-6],[-1,-11],[0,1],[-1,4],[-1,3],[-1,0],[-1,-4],[0,-8],[2,-13],[-1,-14],[-2,-16],[-1,-37],[0,1],[-4,13],[-1,-6],[0,-13],[0,-6],[2,-7],[1,-5],[-1,-13],[-1,-18],[0,-19],[0,-15],[-1,-5],[-1,5],[0,10],[0,9],[-1,14],[-1,3],[-2,-2],[-2,1],[-1,2],[-1,5],[-2,-9],[-1,-13],[-2,-10],[-2,-5],[-1,-1],[-2,-3],[-2,0],[-2,1],[-1,2],[-2,0],[-1,0],[-1,1],[0,-15],[0,-14],[0,-12],[-2,-13],[2,-4],[1,-4],[1,-8],[1,-1],[1,1],[1,-2],[1,-8],[1,1],[1,0],[1,5],[0,14],[-1,16],[-1,3],[-1,1],[-1,2],[-1,1],[-1,9],[1,9],[1,-4],[3,-3],[2,-1],[1,-2],[2,2],[2,1],[1,2],[1,12],[1,11],[2,2],[2,-3],[1,-7],[1,-8],[1,-11],[2,-8],[0,1],[2,0],[2,10],[1,13],[0,19],[0,15],[1,2],[2,2],[1,7],[2,-7],[2,-3],[3,-16],[3,-8],[1,1],[0,-21],[-2,-12],[-1,2],[-2,4],[-3,0],[-5,-9],[-3,-13],[-1,-21],[-1,-33],[-2,-24],[0,2],[-3,16],[-2,-8],[-1,-7],[-1,-5],[-1,-5],[-2,-4],[-1,-2],[-2,-1],[-1,-1],[-1,2],[-1,2],[-1,14],[-2,16],[0,8],[-2,5],[-2,3],[-1,2],[-2,-1],[-2,0],[-1,3],[-1,5],[-2,6],[-1,7],[-1,-5],[-1,-3],[-2,-7],[-1,-10],[-2,1],[-1,9],[-2,3],[-1,-7],[-1,-9],[-2,-1],[2,-13],[2,0],[1,1],[2,3],[1,-2],[-1,-19],[1,-16],[1,-4],[2,1],[1,4],[1,10],[0,12],[2,6],[1,4],[1,4],[1,1],[1,-7],[-1,-14],[1,-8],[-1,-5],[-1,-7],[0,-13],[1,-6],[2,1],[1,5],[1,12],[1,7],[0,-10],[-1,-9],[0,-11],[-1,-11],[-1,2],[-1,-1],[-1,2],[1,-13],[0,-13],[0,-10],[0,-3],[1,10],[1,13],[2,10],[1,15],[0,10],[1,0],[0,-11],[2,-2],[1,-1],[1,0],[1,-2],[1,2],[1,6],[-2,5],[-1,7],[1,8],[1,-2],[1,-5],[1,-4],[1,-5],[1,3],[1,0],[1,3],[1,0],[1,0],[2,-2],[3,-2],[3,-3],[2,6],[1,2],[1,8],[1,8],[1,18],[0,18],[1,23],[2,5],[1,2],[2,-10],[4,-9],[2,-13],[0,-16],[-3,-9],[-3,-2],[-3,-6],[-3,-18],[-1,-20],[0,-15],[0,-25],[1,-17],[2,-7],[0,-16],[2,-28],[1,-41],[3,-29],[0,-32],[-2,-43],[-3,-35],[-4,12],[-3,-12],[-2,-34],[-1,-14],[1,-14],[0,-9],[7,0],[3,15],[0,-3],[2,-2],[1,2],[7,33],[6,-14],[2,-4],[4,21],[0,36],[2,33],[-1,15],[-3,21],[-5,41],[-3,58],[-2,37],[3,9],[3,10],[3,18],[4,42],[2,34],[2,-1],[3,-2],[4,-4],[7,14],[2,16],[4,-12],[4,-8],[6,2],[8,6],[7,9],[4,-13],[4,-29],[2,3],[1,14],[0,20],[-2,8],[-3,9],[-1,11],[-2,8],[-1,10],[1,6],[0,9],[3,-7],[4,-3],[2,4],[1,-16],[1,-35],[2,-33],[1,-10],[3,-21],[3,-10],[4,0],[1,2],[1,-11],[0,-5],[1,-5],[2,4],[-1,10],[1,5],[1,-3],[1,3],[0,14],[-2,16],[0,4],[-1,9],[0,6],[1,6],[1,14],[2,0],[1,21],[0,2],[3,9],[1,24],[1,12],[1,2],[3,6],[3,25],[4,27],[2,5],[2,-79],[3,-17],[1,-3],[-1,-14],[1,-19],[2,-16],[3,-14],[2,-20],[5,-25],[5,-17],[8,-15],[5,-6],[0,-16],[0,-3],[0,-16],[1,-11],[3,-57],[4,-28],[1,0],[1,0],[4,5],[4,23],[1,15],[0,22],[-1,27],[-2,8],[-1,11],[0,5],[1,9],[-2,4],[-4,14],[0,7],[0,14],[1,2],[1,1],[1,-12],[1,-3],[3,-8],[2,5],[1,32],[0,4],[2,14],[2,11],[0,25],[1,21],[0,6],[1,-9],[0,-30],[0,-12],[1,-6],[1,1],[1,13],[1,3],[3,-13],[1,-16],[1,-10],[1,10],[0,20],[-1,17],[-1,23],[-2,17],[-2,21],[-2,18],[-4,8],[-4,15],[-6,11],[-1,-15],[-3,-20],[-6,-15],[-2,9],[-1,1],[-3,12],[-4,14],[-4,1],[-2,-9],[-2,-20],[-1,-15],[-2,19],[-1,11],[-1,-6],[0,-22],[1,-16],[-1,-9],[-2,1],[1,19],[0,16],[0,17],[-1,5],[-1,9],[0,13],[-2,1],[0,-16],[0,-17],[-1,-12],[1,-14],[0,-6],[1,-15],[0,-13],[0,-12],[-1,-6],[-1,4],[0,16],[0,4],[-1,0],[0,3],[0,7],[0,6],[1,6],[0,10],[-2,11],[-1,9],[1,9],[2,27],[0,39],[-1,27],[-1,17],[-2,19],[1,43],[0,104],[-2,57],[-1,16],[-2,60],[-2,35],[0,29],[1,7],[2,2],[3,-2],[3,-1],[4,7],[2,15],[1,10],[3,25],[4,25],[4,24],[2,13],[2,24],[4,33],[2,36],[3,39],[4,23],[8,21],[15,63],[2,4],[0,1],[2,-5],[6,-109],[5,-53],[1,-21],[1,-1],[0,-2],[1,-3],[1,0],[2,-5],[4,3],[4,41],[2,57],[0,84],[-2,41],[-5,48],[-1,2],[-16,134],[-3,14],[-1,2],[-1,7],[-1,9],[0,16],[6,61],[3,21],[9,35],[8,34],[5,36],[1,-5],[0,-7],[2,-50],[4,-78],[1,-7],[6,-36],[4,-6],[0,-13],[1,-42],[6,-103],[1,4],[2,47],[1,45],[-1,43],[-3,15],[-2,2],[0,28],[1,23],[1,24],[0,87],[-1,46],[-1,17],[-4,32],[-4,12],[-3,12],[0,7],[1,14],[0,4],[6,-8],[0,2],[6,-1],[0,-10],[3,-12],[2,-9],[1,-29],[2,-27],[4,-11],[1,-7],[0,-20],[-2,-2],[-2,-8],[-1,-17],[-1,-5],[-2,-13],[0,-8],[0,-41],[0,-17],[2,-50],[2,-107],[0,-18],[1,-29],[1,-31],[0,-3],[1,-21],[-1,-10],[-2,-4],[-1,-5],[-3,-10],[-2,-2],[-2,-1],[0,-2],[-2,0],[-1,-36],[1,-41],[4,-41],[2,4],[3,46],[1,-6],[1,-6],[2,0],[1,4],[2,3],[1,7],[2,15],[0,17],[0,20],[1,7],[-1,26],[-1,13],[-1,1],[-1,-4],[-1,18],[0,30],[0,6],[2,52],[2,-2],[0,2],[2,-57],[3,-42],[2,3],[2,22],[0,7],[0,13],[0,28],[-2,28],[-3,10],[0,62],[1,22],[1,1],[2,-38],[1,-49],[2,-14],[5,-10],[5,28],[2,51],[0,6],[-1,38],[-1,2],[-3,1],[-2,33],[0,10],[-1,17],[-2,2],[-2,4],[-1,-2],[-1,0],[-2,-1],[-1,-2],[-1,-2],[-4,55],[1,18],[2,0],[0,-1],[3,-16],[0,-7],[3,9],[1,-11],[4,10],[3,18],[3,-9],[2,3],[1,11],[1,13],[1,3],[3,-8],[3,-9],[3,-35],[-4,-14],[-1,-18],[0,-9],[3,-35],[3,-4],[2,10],[3,-9],[1,1],[4,28],[1,-1],[1,3],[2,9],[2,7],[0,3],[-17,80],[0,14],[14,-60],[38,-242],[0,-17],[1,-16],[2,1],[0,11],[1,2],[0,-1],[12,-75],[11,-103],[6,-49],[0,-4],[1,-9],[-1,-17],[-4,-16],[-6,-55],[-2,-62],[0,-17],[1,-168],[0,-14],[0,-64],[-1,0],[-2,1],[-3,-6],[-2,2],[-1,-1],[-3,-13],[-1,-11],[-2,4],[-2,-2],[-2,-5],[-2,-15],[-1,-22],[-1,-16],[-1,-10],[-2,3],[-1,14],[-2,19],[-2,-2],[-2,-23],[-2,6],[-3,-9],[-4,-6],[-4,-5],[0,-26],[1,-38],[3,-25],[3,1],[1,0],[2,30],[0,3],[1,14],[2,5],[1,-15],[-1,-8],[1,-10],[1,-1],[0,-15],[-1,-1],[-2,-14],[0,-23],[1,-32],[0,-20],[1,-5],[2,-2],[0,14],[1,27],[0,38],[3,3],[3,-31],[3,6],[0,17],[-3,29],[0,6],[2,15],[5,40],[0,3],[2,-58],[1,2],[3,5],[1,1],[1,1],[1,-28],[1,-17],[1,-1],[2,-18],[6,-76],[3,-57],[-3,-27],[-1,-25],[4,-27],[10,3],[5,10],[3,0],[7,-2],[2,-1],[4,-3],[0,-4],[23,48],[20,-40],[13,-48],[11,-52],[2,-41],[-3,-42],[-3,0],[-4,-1],[1,-36],[3,-7],[5,-13],[9,-12],[5,-19],[3,2],[6,27],[6,20],[8,43],[8,34],[5,35],[2,12],[2,18],[4,31],[5,26],[1,6],[1,12],[4,30],[2,30],[3,42],[4,57],[3,54],[1,24],[1,12],[3,45],[2,5],[7,17],[15,4],[17,40],[8,2],[10,-12],[25,-13],[18,-17],[8,-5],[0,-15],[0,-26],[3,-21],[3,-9],[1,6],[1,5],[1,-6],[1,13],[1,14],[0,12],[-3,4],[-1,9],[1,18],[1,4],[2,-6],[9,9],[8,12],[10,26],[9,15],[9,28],[10,37],[7,29],[1,7],[2,10],[4,8],[3,5],[3,1],[2,-2],[9,-5],[6,14],[2,0],[2,-3],[1,-5],[2,-2],[1,-7],[1,-15],[1,-15],[2,-10],[1,-12],[-3,0],[-5,4],[2,-17],[0,-19],[0,-21],[-1,-20],[2,-7],[1,2],[1,2],[4,11],[3,5],[2,-2],[2,-10],[1,-5],[1,-7],[0,-23],[2,-17],[1,11],[0,18],[2,38],[0,30],[1,28],[1,9],[4,-48],[4,-26],[1,-3],[3,-5],[5,-6],[20,-7],[4,13],[0,-6],[0,-9],[0,-5],[0,-11],[-1,-38],[2,-26],[1,-21],[1,-22],[2,-28],[2,-25],[3,-20],[2,-17],[2,-10],[2,-3],[3,1],[1,1],[1,-1],[3,-1],[1,8],[5,76],[1,13],[2,46],[0,8],[3,-38],[2,-31],[5,-17],[0,-13],[-1,-106],[7,-279],[12,-202],[4,-23],[1,-5],[7,12],[5,26],[2,30],[0,39],[-1,10],[-2,-31],[-4,-25],[-5,-12],[-4,26],[-1,20],[-6,122],[-9,273],[-3,96],[2,24],[1,-12],[3,-18],[0,-9],[1,-13],[2,-60],[1,-27],[1,-25],[2,-37],[1,-45],[1,-20],[1,-44],[1,-9],[0,-9],[1,16],[1,19],[1,12],[1,45],[1,17],[1,39],[0,12],[2,18],[1,10],[1,12],[1,8],[2,11],[1,6],[2,6],[1,9],[-1,19],[0,17],[-3,67],[-3,30],[-1,6],[-1,14],[0,11],[-7,25],[-2,5],[-1,-3],[-1,-6],[-2,-8],[-1,-7],[-1,-11],[0,-3],[-2,12],[-1,2],[0,5],[1,32],[4,16],[4,-8],[18,-12],[7,3],[5,14],[10,-17],[2,-7],[3,-4],[4,-29],[28,-66],[10,-39],[7,-26],[14,-32],[1,2],[1,-7],[15,-46],[4,-14],[1,-18],[2,-37],[2,-28],[0,-5],[1,-51],[0,-20],[-2,-1],[-6,0],[-3,-4],[-4,-7],[-3,-6],[-2,-9],[-1,-5],[-3,-12],[-2,-20],[-3,-37],[-4,-58],[-7,-78],[-4,-41],[-4,-41],[-1,6],[0,11],[-1,8],[-1,10],[-1,-10],[-1,-5],[-1,-11],[-1,-7],[-1,-3],[-1,0],[-2,-1],[-1,-1],[0,-8],[1,-15],[1,-7],[1,-3],[1,1],[1,1],[1,3],[1,-2],[1,-13],[1,-11],[1,-9],[-7,-44],[-5,-48],[0,-34],[-1,-6],[-1,2],[-1,3],[-1,-3],[-1,-2],[-1,2],[-2,2],[-1,2],[-1,2],[-2,-3],[-1,-5],[-1,-10],[0,-19],[4,-157],[-1,-29],[0,-11],[-1,-19],[-1,-7],[-2,-5],[-1,-12],[-1,-10],[-1,-14],[-1,-6],[-2,2],[-1,19],[-2,10],[0,6],[-1,8],[-1,3],[-1,5],[0,21],[0,45],[-1,19],[-1,8],[-1,1],[-1,-5],[1,-12],[1,-68],[-1,-16],[-1,-13],[-7,-2],[-1,-3],[-1,-9],[3,-3],[1,1],[1,2],[2,-5],[1,1],[0,4],[2,6],[1,1],[2,-1],[1,-8],[1,-8],[2,-16],[1,-11],[1,-10],[1,-4],[1,2],[2,5],[1,2],[0,-1],[1,1],[1,13],[0,23],[0,10],[1,5],[1,-1],[4,-10],[5,-81],[2,-31],[1,-8],[1,-3],[1,-3],[1,1],[1,2],[5,-6],[1,-3],[1,-5],[5,-22],[5,-22],[2,2],[1,4],[2,9],[1,10],[1,9],[0,14],[0,12],[1,0],[1,-5],[8,-50],[6,-25],[6,-11],[6,-12],[3,-4],[3,-6],[5,-4],[3,0],[4,5],[3,2],[1,6],[3,5],[1,4],[1,2],[2,-2],[0,-3],[9,-24],[2,-3],[1,-4],[3,-9],[1,-1],[-1,-14],[-1,-73],[-1,2],[-1,4],[-1,1],[-1,0],[-2,-2],[-1,-5],[-1,-3],[-1,-4],[0,-1],[-1,12],[-1,10],[-1,4],[-1,3],[-1,3],[0,5],[-2,-5],[-1,-3],[-1,-3],[-2,5],[-1,5],[-1,8],[-1,11],[-2,5],[-3,4],[-1,1],[-2,8],[-3,12],[-2,9],[-1,4],[-2,0],[0,1],[-1,-2],[-2,-3],[-1,-4],[-1,-11],[-1,-9],[-2,-5],[-4,-19],[-1,-8],[-2,-6],[-1,3],[0,13],[-1,8],[-2,3],[-2,3],[-1,-1],[-1,1],[-3,-3],[-1,-3],[-2,-2],[-2,-4],[-1,-7],[-1,-15],[-1,1],[-1,10],[-1,14],[-1,7],[-2,2],[-6,7],[-7,-5],[-1,-3],[-2,-1],[-1,-4],[-1,-5],[-1,-11],[-1,-8],[-1,0],[-2,25],[-1,8],[-2,6],[-1,4],[-1,-3],[-1,-6],[0,-7],[-8,17],[-7,18],[-1,1],[-1,2],[-2,-1],[-1,-6],[-1,-7],[-2,-7],[-2,-10],[-1,-9],[-4,-37],[-1,-14],[0,-9],[-1,2],[-2,6],[0,5],[-2,8],[-1,2],[-2,1],[-4,-2],[-1,-10],[-1,-13],[0,-17],[0,-18],[0,-17],[1,-11],[1,-7],[1,-9],[0,-3],[3,0],[1,3],[1,2],[2,4],[2,6],[1,3],[0,8],[1,10],[1,11],[2,0],[1,-5],[1,-9],[1,-14],[1,-13],[1,-10],[1,-6],[1,-8],[1,-3],[1,-1],[1,0],[1,0],[1,-3],[3,-2],[2,4],[3,6],[2,5],[2,6],[1,9],[1,5],[1,7],[3,11],[1,8],[1,6],[1,7],[1,1],[1,-11],[2,-3],[1,-3],[1,1],[2,1],[3,-4],[6,2],[1,1],[4,0],[2,0],[1,1],[2,-19],[-1,1],[-1,-1],[-1,-1],[-1,-2],[-1,1],[-1,0],[-1,0],[-1,1],[-2,2],[0,-6],[0,-13],[0,-15],[1,-7],[1,-5],[1,-4],[1,9],[1,17],[1,-3],[7,-12],[1,0],[2,9],[2,14],[1,3],[1,0],[1,-4],[8,-5],[2,-2],[1,-5],[2,-8],[1,-1],[1,1],[1,2],[2,-3],[3,-3],[1,4],[1,4],[2,10],[1,10],[1,6],[1,3],[3,4],[2,4],[1,8],[1,2],[2,0],[0,2],[1,1],[1,4],[1,-2],[1,-9],[1,0],[1,2],[0,1],[2,0],[1,-1],[2,-1],[1,0],[3,-11],[1,-6],[1,-6],[2,-5],[1,3],[1,3],[1,7],[2,7],[1,-3],[1,-4],[1,-5],[2,-4],[1,-2],[1,1],[3,9],[1,5],[1,10],[1,15],[0,9],[1,11],[0,14],[1,3],[6,2],[2,2],[1,-8],[0,-6],[1,10],[2,14],[1,3],[3,-5],[1,-3],[2,-3],[2,1],[1,-7],[2,-19],[1,-6],[2,-3],[2,-2],[2,-1],[3,1],[2,5],[1,4],[1,1],[2,-4],[1,-7],[1,-3],[1,0],[3,-5],[2,0],[2,-5],[2,-8],[3,-15],[2,-3],[2,1],[2,2],[2,2],[6,6],[6,16],[1,7],[1,7],[2,-2],[1,6],[5,2],[2,-3],[1,-2],[1,-4],[2,-10],[0,-15],[-1,1],[0,6],[-1,5],[-1,-2],[-1,-2],[-1,-6],[1,-10],[-1,-14],[-1,-8],[-1,-3],[-1,-10],[0,-15],[-1,-11],[-1,7],[0,16],[1,18],[-1,11],[0,2],[-2,3],[-2,3],[-1,-1],[1,-9],[1,-3],[1,-5],[1,-12],[0,-16],[0,-11],[0,-10],[-1,-14],[-1,-6],[0,-8],[-1,-11],[-1,-5],[-1,-13],[-1,-9],[-1,-16],[-2,-5],[-1,-11],[-1,-12],[0,-5],[-9,-22],[-8,31],[-5,-10],[0,-28],[18,-23],[2,-11],[1,-13],[1,-9],[1,-4],[2,1],[1,4],[1,3],[5,69],[3,0],[1,-16],[-1,-42],[0,-2],[-1,-5],[-2,-7],[-1,-7],[-2,-7],[-3,-8],[-1,-2],[-1,-2],[-2,-11],[-2,-2],[-2,0],[-1,-1],[-1,3],[-2,1],[-1,-5],[-1,-4],[-2,0],[-2,1],[-1,-4],[-3,-10],[-1,-6],[-2,-10],[-2,-6],[-3,9],[-12,-12],[-6,-58],[-1,-6],[-2,-8],[-2,-13],[-2,2],[-2,2],[-1,-10],[0,-10],[5,1],[1,-8],[0,-1],[1,-15],[0,-18],[0,-8],[-1,-6],[-1,-6],[0,-29],[0,-15],[-2,-4],[-1,-2],[-1,-2],[0,4],[-2,0],[-1,-14],[1,-14],[1,-10],[1,4],[2,7],[1,0],[1,0],[1,6],[1,8],[1,10],[1,7],[1,6],[0,13],[1,12],[2,19],[1,-3],[2,-13],[2,-18],[0,-9],[1,-9],[5,-16],[2,-1],[3,11],[2,3],[4,7],[8,5],[4,0],[2,7],[2,-2],[9,-9],[6,-11],[2,2],[1,0],[1,-3],[1,-1],[1,-3],[2,-2],[1,0],[1,3],[6,16],[1,4],[1,0],[2,-3],[2,-4],[2,-7],[3,1],[2,1],[2,1],[2,7],[2,10],[2,4],[7,3],[2,-1],[2,-7],[1,-6],[2,-10],[1,-3],[2,-2],[1,4],[2,1],[1,-2],[2,-15],[2,-5],[2,-8],[1,-2],[1,-1],[1,-5],[7,-10],[2,2],[4,4],[2,4],[2,1],[1,-2],[1,-3],[1,-3],[1,-6],[9,-40],[1,-6],[1,-5],[1,-6],[1,6],[1,-1],[2,-8],[2,-3],[1,-7],[1,-3],[2,3],[2,3],[2,2],[1,-8],[1,-8],[1,-6],[1,-16],[3,-11],[3,-10],[1,-7],[1,-12],[7,-33],[1,-6],[1,-11],[2,-12],[1,-4],[2,-7],[0,-4],[2,-18],[1,-9],[1,-17],[-1,-12],[-1,-2],[-1,-4],[-1,-5],[1,-10],[1,-12],[1,-9],[2,-20],[1,-15],[2,-4],[2,-1],[1,0],[1,4],[1,12],[1,15],[-1,13],[-1,-4],[0,-5],[-1,-2],[-2,-1],[-1,0],[-1,3],[-1,5],[-1,9],[1,8],[1,3],[1,3],[2,12],[1,16],[1,-1],[0,-6],[1,-10],[3,-3],[2,4],[1,-1],[1,-1],[2,2],[0,6],[2,10],[0,17],[-1,8],[-1,6],[-2,9],[-1,3],[-2,0],[-2,7],[-2,10],[-1,12],[-1,86],[-1,31],[0,39],[2,12],[2,11],[0,5],[6,62],[1,0],[2,2],[2,6],[2,12],[1,5],[2,2],[0,-3],[0,-11],[-2,-52],[0,-10],[8,-64],[1,-14],[0,-16],[-1,-86],[1,-14],[0,-15],[2,-23],[4,-37],[1,-12],[1,-13],[0,-11],[1,-43],[-1,-33],[-2,-61],[0,-17],[0,-15],[1,-15],[3,-27],[2,-8],[4,-11],[1,-11],[1,-10],[0,-39],[0,-49],[0,-11],[1,-32],[3,-14],[1,-34],[-3,-111],[0,-42],[2,5],[2,56],[4,105],[-1,67],[-5,18],[-1,15],[1,39],[-1,25],[-1,10],[-1,8],[-1,7],[0,10],[-2,11],[-1,6],[-1,6],[-1,15],[0,9],[-1,14],[-1,7],[0,19],[0,24],[0,20],[2,28],[0,21],[0,15],[0,16],[-1,6],[-2,13],[-6,80],[-1,13],[-1,24],[0,14],[1,15],[1,18],[4,68],[2,17],[0,22],[-1,31],[0,29],[0,19],[1,17],[1,20],[2,16],[1,2],[1,-2],[1,-5],[1,-6],[1,-6],[2,-7],[1,0],[1,-1],[2,-3],[2,0],[0,1],[1,11],[0,12],[1,11],[2,1],[2,1],[1,0],[2,-1],[2,-16],[1,-3],[0,2],[0,23],[1,23],[1,8],[0,14],[12,27],[2,-17],[1,1],[1,-11],[1,-7],[2,-4],[2,-4],[3,5],[1,6],[1,3],[2,0],[1,3],[3,5],[1,3],[4,22],[0,7],[2,8],[2,5],[5,42],[5,-22],[2,-18],[1,-12],[1,-14],[1,-10],[1,-3],[3,-11],[2,-16],[1,-6],[2,5],[1,3],[2,1],[7,-20],[1,-8],[1,-4],[1,4],[0,9],[3,4],[11,-156],[-1,-32],[-2,-34],[-2,-35],[0,-28],[-1,-33],[-2,-16],[-1,0],[-2,-7],[-8,-23],[-3,-5],[-1,-1],[-2,-7],[-2,-4],[-3,-15],[-1,-12],[-2,-16],[-2,-12],[0,-16],[1,-16],[1,-20],[1,-13],[0,-15],[0,-16],[1,-27],[0,-25],[-1,-13],[-2,-13],[-1,-14],[-1,-14],[0,-21],[6,-5],[0,6],[4,58],[0,15],[2,15],[2,13],[2,9],[3,6],[4,4],[5,11],[2,5],[4,8],[2,10],[3,23],[3,21],[4,21],[6,48],[2,8],[1,2],[1,-7],[1,-9],[1,2],[1,3],[2,7],[2,5],[1,6],[2,13],[3,18],[3,15],[3,9],[3,12],[7,25],[3,10],[8,27],[3,4],[1,5],[4,8],[3,6],[9,7],[2,10],[12,48],[3,12],[2,4],[2,4],[2,9],[3,9],[2,1],[3,4],[3,8],[3,9],[3,11],[2,-3],[2,-10],[2,-4],[2,2],[3,3],[1,3],[2,1],[2,2],[3,-6],[1,-5],[2,-5],[0,-14],[0,-14],[-1,-15],[0,-11],[1,7],[1,8],[1,9],[1,10],[0,13],[0,10],[2,11],[1,4],[2,8],[3,13],[1,12],[2,13],[1,5],[2,6],[3,7],[1,6],[0,12],[2,8],[1,6],[0,9],[1,9],[2,10],[3,13],[1,6],[3,13],[1,10],[2,3],[1,5],[2,12],[2,13],[1,5],[2,17],[1,10],[2,10],[2,15],[1,9],[2,12],[2,10],[2,14],[2,9],[1,2],[1,4],[4,21],[1,11],[1,8],[0,9],[1,6],[1,4],[1,-5],[3,-25],[1,-8],[1,-9],[1,-4],[1,1],[0,1],[2,-3],[0,-12],[1,-11],[1,-14],[1,-7],[1,-4],[1,-1],[2,3],[2,4],[1,0],[1,-3],[1,-8],[0,-9],[2,-5],[1,-3],[1,-6],[1,-11],[1,-12],[1,-14],[2,9],[-1,5],[-2,11],[-1,14],[0,10],[-1,9],[1,9],[1,8],[1,10],[1,6],[1,1],[2,5],[0,-1],[0,-14],[1,3],[1,14],[2,16],[1,10],[1,7],[1,3],[2,1],[1,-2],[1,-3],[2,-31],[1,1],[1,4],[1,3],[1,-3],[0,1],[0,12],[1,6],[1,13],[1,9],[1,1],[1,-1],[1,6],[1,5],[1,-6],[1,-12],[1,-4],[2,1],[1,-1],[1,-6],[2,-5],[1,-5],[1,-1],[2,0],[2,-4],[1,-5],[2,-2],[2,-7],[1,-5],[1,-4],[2,3],[1,-1],[2,1],[2,6],[1,6],[1,3],[1,-1],[1,2],[1,-3],[1,1],[0,10],[2,3],[0,1],[1,0],[1,8],[1,8],[1,6],[1,11],[3,7],[2,4],[1,6],[2,9],[1,9],[1,4],[2,4],[0,2],[2,-6],[0,-16],[1,-6],[2,-4],[0,-3],[2,-8],[1,-11],[2,-16],[1,-17],[1,-18],[1,-12],[-1,-4],[-1,-2],[-1,2],[-1,-2],[-2,-5],[-2,-7],[-2,-2],[-1,-4],[-1,-6],[-1,-12],[-1,-6],[-2,-7],[-1,-10],[0,-4],[3,4],[2,7],[1,-5],[0,-19],[-1,-15],[1,0],[1,10],[0,21],[0,22],[3,9],[2,3],[2,1],[2,13],[1,7],[3,-2],[1,-2],[2,-7],[3,-7],[1,2],[3,10],[1,5],[1,2],[1,-1],[-1,-10],[0,-3],[-1,-9],[-1,-16],[0,-20],[2,-4],[1,0],[1,-5],[-1,-17],[1,-11],[1,0],[0,-1],[1,12],[-2,27],[0,5],[0,15],[0,7],[1,4],[3,-5],[6,0],[3,-17],[1,17],[-2,20],[-7,15],[-1,3],[0,7],[1,14],[4,22],[3,-39],[2,-3],[2,-5],[2,-5],[2,-2],[2,-3],[2,-1],[3,1],[2,14],[1,4],[1,0],[2,-9],[3,-11],[2,-8],[1,0],[1,-6],[1,0],[2,-5],[3,0],[4,-4],[2,5],[1,8],[2,0],[0,-1],[2,-16],[0,-7],[2,-7],[1,-8],[1,-12],[1,-6],[1,-12],[1,-9],[2,-4],[1,-7],[3,-8],[1,-5],[2,-3],[3,-6],[1,-5],[1,-1],[2,0],[1,2],[2,-2],[1,-3],[1,-3],[2,-19],[2,-4],[1,-5],[1,-11],[1,-6],[2,-10],[0,-14],[-1,-6],[0,-14],[0,-16],[-3,-11],[0,-20],[-1,-7],[-2,-10],[1,-3],[2,3],[1,7],[0,13],[1,9],[1,3],[1,2],[1,3],[0,5],[0,15],[1,4],[1,-6],[1,-14],[2,-17],[2,-8],[1,-2],[2,1],[2,-4],[1,-8],[0,-14],[1,-11],[1,-9],[2,-18],[-1,-15],[0,-15],[0,-13],[1,-13],[0,-13],[2,-11],[0,8],[1,13],[1,2],[1,0],[1,14],[-1,5],[-1,-5],[0,30],[2,-2],[1,-22],[0,-13],[0,-13],[0,-15],[1,-9],[0,3],[1,-13],[-1,-42],[0,-10],[0,4],[2,5],[0,-4],[0,-9],[1,6],[0,12],[-1,15],[1,22],[-1,15],[-1,5],[0,33],[0,28],[0,37],[1,-1],[1,-2],[9,26],[2,-1],[-1,-19],[-2,-18],[0,-6],[1,-4],[0,-13],[0,-13],[-1,-2],[-1,-5],[-1,-12],[-1,-27],[1,6],[1,8],[0,-14],[0,-14],[-1,-10],[0,-7],[0,-14],[1,-6],[0,1],[0,19],[1,9],[1,2],[1,1],[0,8],[0,10],[1,0],[1,-3],[1,0],[1,-1],[1,6],[0,16],[1,6],[1,3],[2,4],[2,1],[0,7],[2,5],[1,-1],[1,-4],[-1,-10],[-1,-7],[-1,-4],[-1,-5],[1,-5],[-1,-15],[0,-22],[0,-23],[-1,-14],[-1,-2],[-2,-59],[1,-9],[3,30],[2,41],[0,10],[3,0],[5,9],[0,4],[3,11],[0,2],[3,8],[1,3],[3,14],[6,17],[4,0],[0,-2],[2,-4],[3,16],[0,-5],[2,-12],[1,-7],[2,-3],[1,0],[2,1],[2,-1],[2,1],[1,2],[1,3],[1,-1],[0,2],[1,6],[1,-2],[1,-6],[1,-16],[1,-12],[1,-12],[1,-9],[1,-13],[1,-5],[1,-2],[1,3],[1,6],[2,8],[1,8],[1,2],[3,2],[1,-7],[1,-15],[1,-13],[2,-13],[0,-5],[1,-7],[3,-16],[1,-9],[1,-6],[1,-3],[2,-1],[1,1],[1,-2],[5,-24],[1,-10],[1,-5],[2,-3],[2,-7],[2,-12],[3,-30],[1,-11],[0,-14],[1,-15],[0,-15],[1,-17],[0,-9],[-1,-6],[0,2],[-1,-6],[0,-5],[1,-1],[1,1],[1,-2],[0,-4],[0,-20],[0,-14],[-2,-41],[-1,-24],[0,12],[0,13],[1,17],[-1,-6],[-1,-10],[-2,-10],[-1,-19],[-1,-12],[1,2],[0,-13],[-1,-10],[0,-10],[1,-11],[-1,-12],[-1,-11],[0,-11],[0,-11],[-2,-5],[2,-11],[0,11],[1,12],[1,6],[1,10],[1,9],[1,11],[1,10],[0,6],[2,0],[1,7],[1,-1],[3,-17],[0,-7],[2,-4],[3,-1],[2,-3],[2,-6],[1,-10],[1,-5],[2,-4],[2,6],[1,1],[2,-5],[1,2],[2,1],[2,-1],[2,0],[1,2],[2,7],[2,7],[2,8],[3,18],[1,10],[2,8],[1,7],[0,6],[1,1],[2,5],[0,6],[1,9],[1,6],[1,3],[2,5],[1,11],[1,6],[2,9],[1,11],[1,12],[1,13],[1,5],[1,4],[1,1],[1,-1],[3,0],[1,4],[1,9],[2,18],[1,8],[2,10],[1,0],[-1,-11],[-1,-12],[1,-3],[0,-6],[1,-15],[0,-19],[0,-17],[0,-10],[1,-5],[1,3],[-1,9],[0,17],[0,18],[1,6],[1,6],[2,1],[1,-3],[1,-6],[1,3],[1,9],[3,4],[1,3],[1,15],[0,6],[1,-7],[0,-13],[0,-15],[1,-11],[0,-13],[0,-8],[1,-7],[2,-10],[1,-7],[2,-9],[1,-8],[1,-4],[0,-9],[0,-11],[-1,-10],[0,-8],[-1,-9],[0,-12],[-1,-14],[1,5],[2,19],[0,15],[2,12],[1,12],[-1,9],[-1,8],[-2,7],[-2,13],[-1,11],[-1,15],[-1,8],[-1,12],[1,15],[0,7],[1,0],[1,-1],[1,4],[1,0],[2,-3],[2,-3],[1,-3],[1,-11],[2,-4],[2,-8],[0,-5],[0,-10],[0,-10],[0,-5],[12,-44],[2,-6],[2,-10],[3,-45],[1,-25],[4,5],[1,6],[2,-1],[0,-1],[1,0],[1,-3],[0,-9],[1,-11],[0,-9],[0,-19],[1,-4],[1,2],[1,9],[1,-3],[2,8],[1,11],[0,10],[1,0],[2,4],[1,6],[1,-2],[0,-13],[1,-9],[0,-10],[-1,-2],[-1,-9],[0,-6],[-1,-1],[-1,0],[-1,-1],[-1,-5],[-2,-3],[-1,2],[-2,-1],[0,-14],[1,-8],[3,-2],[2,-4],[2,-1],[-1,9],[1,8],[2,5],[1,4],[0,1],[3,12],[2,2],[0,-8],[0,-9],[-1,-6],[-4,-16],[-1,-14],[1,-6],[3,18],[2,1],[2,10],[1,4],[1,-10],[-1,-12],[0,-12],[0,-13],[0,-9],[-1,-4],[-1,-19],[-1,-9],[0,-11],[-1,-4],[0,-7],[2,-28],[1,-2],[0,7],[2,15],[4,21],[1,-13],[0,5],[0,15],[1,11],[1,5],[2,7],[1,7],[2,-7],[1,0],[1,-5],[1,2],[1,2],[2,2],[1,-5],[0,-18],[0,-13],[2,-3],[1,5],[1,19],[1,11],[1,4],[1,5],[2,11],[1,6],[1,16],[0,15],[-1,7],[-1,4],[0,13],[1,1],[1,-5],[1,-4],[1,-5],[2,-10],[0,-9],[1,-14],[0,-22],[1,-14],[1,-10],[-1,-14],[0,-4],[-1,18],[0,12],[-1,17],[0,13],[-1,13],[0,-7],[-1,-10],[-1,-7],[0,-15],[0,-11],[0,-15],[0,-17],[0,-24],[-1,-12],[0,-12],[2,-32],[3,-28],[3,4],[1,-15],[-1,-29],[-5,-35],[-1,-12],[-1,-8],[0,-6],[0,-16],[1,-12],[0,-15],[2,-8],[2,2],[1,1],[6,9],[3,-7],[1,-12],[1,-5],[2,-18],[2,-13],[3,-11],[1,-6],[2,-14],[2,-6],[2,-3],[0,1],[2,-1],[7,17],[1,2],[2,4],[1,-5],[1,-8],[2,-4],[3,15],[1,-4],[4,-14],[2,13],[0,2],[1,-8],[1,-6],[2,3],[2,-3],[6,4],[4,8],[1,3],[1,-6],[2,-5],[3,-6],[2,-4],[2,-4],[1,-4],[3,-7],[2,-7],[1,-1],[2,-8],[2,-7],[4,-13],[1,-2],[2,-1],[2,-5],[2,-6],[1,-4],[1,-2],[1,-1],[3,1],[1,0],[2,3],[0,2],[2,0],[1,2],[1,-4],[1,-3],[1,0],[2,4],[2,-3],[2,10],[1,19],[1,-2],[5,-35],[3,2],[1,-13],[-1,-9],[-1,0],[0,-8],[0,-7],[1,1],[2,11],[1,3],[0,4],[0,9],[0,7],[0,14],[-1,0],[-1,12],[0,16],[2,8],[1,10],[1,5],[1,1],[1,7],[0,14],[1,6],[1,0],[2,-3],[1,-6],[1,-11],[1,-6],[1,0],[1,0],[1,-2],[1,-7],[0,-1],[-1,-3],[-1,1],[-1,-8],[1,-3],[1,-6],[1,-4],[0,-4],[0,-12],[0,-12],[-1,-1],[-1,3],[0,12],[-1,0],[0,-18],[1,-19],[1,-3],[1,-13],[1,-15],[0,-11],[1,-18],[0,-17],[-1,-17],[1,2],[1,9],[1,9],[0,9],[0,10],[0,22],[0,13],[0,12],[1,-1],[1,-7],[1,-13],[1,-12],[1,-9],[1,1],[2,-37],[1,-14],[1,-27],[1,-20],[1,4],[2,6],[2,7],[0,7],[1,3],[2,-2],[2,-3],[2,1],[0,5],[1,1],[1,2],[0,2],[1,-1],[2,-6],[0,-8],[3,2],[1,-6],[1,1],[1,-1],[1,0],[2,0],[1,0],[1,-6],[1,-6],[1,-4],[1,-2],[1,-13],[1,-7],[2,-2],[0,-14],[1,4],[-1,19],[0,9],[1,23],[1,-3],[1,-1],[2,1],[1,3],[2,0],[1,0],[3,6],[1,-10],[0,-7],[2,-12],[1,-7],[2,0],[2,7],[3,14],[3,19],[4,20],[2,19],[1,5],[8,22],[1,0],[1,0],[2,-11],[1,-2],[3,-5],[1,1],[4,12],[1,12],[0,37],[1,5],[6,-11],[1,11],[3,-1],[5,4],[4,8],[4,5],[2,-12],[5,-11],[4,-10],[5,-1],[4,7],[1,-2],[8,-4],[7,2],[5,16],[4,2],[1,3],[2,-17],[2,0],[2,2],[11,31],[3,11],[4,-2],[4,-5],[3,-16],[14,4],[3,8],[1,13],[1,-21],[2,-3],[2,-13],[1,2],[2,4],[2,6],[1,-12],[2,-2],[2,1],[2,-6],[2,-2],[1,9],[3,-8],[2,0],[2,-4],[4,-8],[2,2],[2,-1],[2,-3],[1,15],[4,-8],[0,-13],[5,16],[3,-13],[0,-8],[0,-10],[1,-6],[0,-5],[2,-10],[2,-11],[0,-2],[5,12],[1,-6],[1,9],[2,-3],[2,-7],[0,-11],[1,-5],[1,-4],[1,5],[1,8],[1,8],[2,-12],[3,-16],[1,3],[1,-8],[1,1],[1,13],[4,-7],[1,-10],[1,-12],[2,2],[6,-57],[2,-8],[2,8],[1,9],[2,2],[2,-1],[2,13],[2,5],[2,-16],[1,-10],[3,3],[1,-10],[-1,-9],[-1,-6],[1,-8],[2,5],[1,6],[4,-31],[0,-7],[1,-12],[3,-4],[4,14],[1,21],[-3,7],[-3,-15],[-1,4],[1,15],[2,20],[3,-3],[3,-6],[2,-2],[3,-11],[1,14],[-1,10],[0,10],[1,44],[2,5],[3,29],[4,4],[1,-14],[-2,-16],[-3,-1],[0,-22],[4,4],[4,5],[1,-9],[0,-11],[-2,-10],[-1,-10],[-1,-13],[1,-16],[1,-2],[2,-21],[2,-5],[1,-2],[1,-7],[3,2],[2,4],[0,15],[-1,17],[-1,13],[-2,17],[-1,18],[1,16],[1,22],[1,17],[-1,12],[-3,9],[-5,18],[0,13],[5,-5],[5,-15],[5,-10],[8,-43],[5,-20],[2,-13],[-2,-2],[-8,33],[1,-20],[3,-24],[2,-17],[3,-8],[2,-12],[2,-11],[2,-23],[1,-15],[1,-9],[1,-4],[0,-2],[43,-217],[2,-2],[2,-18],[3,-5],[3,-5],[2,-13],[0,-15],[0,-30],[0,-14],[-4,-23],[-12,-14],[-12,22],[-11,57],[-2,-4],[0,-15],[1,-28],[7,-47],[16,-39],[12,-16],[3,34],[3,25],[2,1],[3,94],[0,34],[5,0],[2,-28],[5,-63],[6,1],[-1,-25],[2,-47],[3,5],[4,-48],[6,-5],[2,-9],[3,-10],[2,-2],[3,-3],[26,-86],[2,-6],[6,4],[3,10],[3,16],[1,16],[2,18],[2,5],[2,0],[3,5],[5,8],[4,-1],[2,-18],[-2,-15],[-3,-1],[-1,4],[-2,2],[-2,-10],[-1,-26],[-1,-26],[-1,-14],[-2,-1],[-3,-8],[-1,0],[-1,-19],[0,-24],[-1,-14],[-3,-1],[-2,-6],[-4,-20],[-1,-16],[2,4],[1,3],[3,12],[2,5],[1,-4],[1,4],[2,3],[2,5],[3,-1],[2,5],[2,-5],[3,-4],[2,3],[-1,9],[-1,8],[2,0],[2,-9],[0,-2],[2,-4],[2,-2],[3,-2],[3,-8],[4,-4],[4,-5],[4,-8],[3,-3],[2,-1],[2,0],[2,-7],[2,-7],[2,-2],[1,-1],[1,4],[1,1],[2,-4],[3,2],[4,-6],[2,-6],[2,-12],[2,1],[0,-13],[1,0],[2,-6],[1,-12],[3,-35],[2,-19],[2,-3],[1,17],[1,5],[2,-2],[3,-1],[3,1],[4,3],[4,13],[2,11],[2,10],[2,4],[1,6],[2,3],[2,-1],[1,3],[2,7],[0,16],[0,15],[-1,8],[-2,2],[0,1],[-6,0],[-5,0],[-1,1],[1,8],[2,4],[3,0],[4,-3],[4,-2],[2,-7],[3,-2],[3,-7],[3,-11],[2,-3],[2,-6],[2,-6],[2,-5],[2,-10],[5,-12],[2,-9],[5,-6],[4,-4],[1,1],[2,-3],[4,-4],[3,0],[4,1],[4,2],[4,3],[3,6],[1,6],[3,17],[4,18],[4,22],[3,18],[2,17],[2,19],[2,17],[2,19],[1,10],[6,11],[4,32],[2,36],[3,23],[1,8],[2,6],[-1,-10],[-2,-12],[-1,-14],[2,-2],[1,0],[2,1],[2,5],[3,11],[1,5],[3,-7],[9,10],[2,20],[13,15],[6,6],[6,5],[11,9],[1,1],[2,2],[1,1],[4,3],[10,25],[1,-1],[1,0],[2,7],[2,0],[0,-8],[0,-5],[0,-7],[2,-3],[3,4],[2,6],[2,11],[1,16],[1,9],[2,6],[2,-1],[2,-5],[1,-10],[1,-7],[1,0],[1,3],[1,-4],[1,-11],[0,-2],[1,6],[1,3],[1,-6],[1,-4],[0,17],[-1,3],[-3,8],[-3,7],[-4,10],[-2,9],[-3,6],[1,10],[1,15],[2,10],[4,3],[5,-1],[2,-2],[1,-1],[1,-1],[4,-7],[5,-15],[2,-20],[3,-10],[0,-15],[0,-31],[-1,-17],[-1,-12],[1,-14],[0,-12],[2,-19],[2,-19],[1,22],[0,43],[1,36],[0,18],[0,24],[-2,13],[-1,3],[-1,12],[-1,15],[-2,12],[-2,6],[-2,19],[-1,15],[3,-3],[4,-13],[1,-20],[3,-23],[2,-21],[1,-7],[2,0],[-1,13],[1,17],[1,10],[1,11],[0,15],[0,11],[-1,18],[0,15],[-1,13],[-1,8],[-1,6],[0,4],[0,4],[1,12],[2,9],[2,0],[-1,-15],[0,-14],[3,-32],[1,-26],[1,-15],[1,-6],[1,-1],[1,4],[1,5],[2,-2],[0,13],[0,14],[1,13],[1,5],[1,5],[1,2],[1,-6],[1,-14],[1,-5],[1,-12],[1,-17],[0,-22],[1,8],[0,16],[1,11],[2,3],[0,11],[1,18],[2,15],[1,13],[2,17],[5,-6],[2,-2],[3,-37],[5,10],[3,8],[2,-21],[0,12],[0,18],[2,9],[1,12],[1,7],[0,16],[1,11],[3,20],[3,12],[2,11],[2,3],[2,1],[2,-4],[2,-3],[1,5],[-1,12],[-1,1],[-2,10],[2,5],[1,4],[1,7],[1,2],[1,6],[-1,10],[1,6],[1,2],[2,4],[1,-3],[1,-4],[1,-6],[1,-7],[0,-4],[1,-13],[1,-10],[0,-12],[-2,-11],[-2,-6],[-1,-11],[0,-16],[1,-3],[2,0],[1,-3],[1,-6],[1,-2],[2,1],[1,-1],[-1,-29],[-1,-12],[-1,-13],[2,-5],[1,20],[2,5],[1,-1],[1,-11],[1,-2],[1,1],[1,9],[1,5],[1,-1],[2,3],[2,1],[3,5],[1,7],[2,2],[0,3],[2,6],[1,-1],[1,1],[2,6],[1,5],[1,-1],[2,-1],[1,-4],[1,2],[2,-7],[3,-11],[0,2],[5,17],[1,26],[-1,30],[-1,69],[-2,46],[-1,5],[1,15],[4,1],[2,-4],[1,-7],[1,-10],[-2,-32],[0,-24],[-1,-14],[0,-59],[3,-44],[15,25],[1,2],[4,7],[2,0],[1,3],[3,0],[2,0],[2,6],[1,5],[1,3],[0,-9],[2,-4],[2,0],[2,1],[3,-5],[1,1],[1,10],[2,14],[1,5],[0,11],[1,-4],[2,1],[1,5],[1,-2],[1,9],[0,11],[0,11],[0,7],[0,4],[1,-1],[1,-11],[1,-12],[1,-9],[-1,-14],[0,-13],[-1,-18],[-1,-3],[-1,-1],[0,-8],[1,-12],[0,-8],[0,-9],[1,-6],[1,-14],[2,-10],[-1,11],[0,14],[1,13],[-1,5],[-1,0],[0,14],[1,12],[1,9],[1,8],[1,8],[1,6],[1,-3],[1,3],[0,3],[1,-1],[1,-1],[1,4],[0,10],[0,13],[1,16],[0,11],[0,16],[1,12],[1,4],[5,17],[0,-8],[-2,-21],[-1,-25],[2,-11],[2,2],[1,2],[0,-14],[0,-14],[1,-14],[0,-12],[1,-3],[0,20],[1,16],[2,6],[0,19],[1,11],[1,1],[1,-9],[1,-7],[1,-2],[1,2],[1,-5],[1,-11],[2,-13],[1,-5],[1,-1],[1,-4],[1,-11],[1,-6],[1,-2],[0,4],[1,-1],[1,-10],[2,-9],[1,-15],[0,-2],[1,13],[1,-8],[1,-15],[2,-11],[1,-12],[1,-11],[1,-11],[1,-13],[3,1],[4,-1],[1,1],[1,5],[1,0],[1,-3],[3,-4],[3,1],[3,-2],[1,1],[2,9],[1,6],[2,-3],[-1,-9],[2,-6],[2,-1],[1,-5],[1,-2],[2,-2],[1,-25],[0,-11],[1,-5],[-1,-7],[-1,-7],[-1,-11],[0,-13],[1,-4],[2,1],[1,-4],[2,-3],[1,1],[1,-1],[1,-4],[1,-4],[1,-9],[-1,-17],[1,-2],[2,13],[1,10],[2,2],[3,2],[5,0],[3,-1],[3,8],[1,10],[2,6],[1,5],[1,-8],[-1,-11],[2,-9],[2,-13],[2,-6],[1,-5],[1,-2],[2,-4],[2,-2],[2,-6],[2,-2],[1,0],[0,6],[1,5],[-1,4],[-4,15],[-3,9],[-16,59],[-2,0],[-4,10],[-2,7],[-1,6],[1,1],[2,-1],[2,-3],[1,-2],[0,1],[8,-23],[6,-27],[5,-19],[5,-17],[5,-13],[3,-5],[1,-2],[3,-9],[3,-8],[4,-15],[2,-4],[2,-10],[3,-14],[3,-16],[2,-9],[2,-8],[1,-6],[2,-10],[1,-7],[2,-1],[1,-2],[1,-9],[1,-4],[1,-9],[2,-8],[2,-9],[2,-12],[4,-18],[2,-13],[2,-6],[2,-9],[2,-5],[9,-59],[2,-25],[-3,-8],[-3,-6],[2,-22],[-1,-99],[4,2],[4,1],[4,-2],[1,4],[2,15],[2,6],[0,18],[-1,27],[-1,13],[5,-9],[4,-13],[13,-58],[0,-20],[-3,13],[-4,13],[-3,9],[-3,7],[-1,-1],[-1,-7],[-1,-27],[2,-15],[1,-10],[2,-14],[2,-9],[1,-6],[3,-6],[1,1],[6,-42],[5,-4],[1,-7],[2,-7],[1,-8],[4,-3],[8,-5],[2,-1],[3,-21],[0,-4],[-6,16],[-1,-18],[-1,-7],[-7,-45],[2,-22],[1,1],[5,7],[1,4],[2,-2],[2,-10],[6,-8],[0,-8],[-2,-82],[0,-6],[0,-9],[7,-31],[1,31],[4,7],[2,-19],[4,-12],[-2,-31],[1,-12],[2,-15],[1,-15],[2,-12],[0,-3],[2,-9],[1,-9],[0,-28],[1,-5],[2,-9],[2,-24],[3,9],[2,0],[1,-5],[1,-3],[2,8],[1,2],[3,-2],[2,-1],[4,-2],[2,-2],[3,-6],[2,-3],[3,7],[1,7],[2,4],[1,-1],[3,-3],[3,-7],[3,-8],[3,-6],[1,-11],[2,-26],[1,-19],[2,-13],[0,-3],[2,-4],[1,-7],[2,-1],[2,-14],[1,-6],[2,-6],[1,-2],[1,-7],[0,-21],[-4,-30],[-1,-16],[5,-43],[6,9],[3,-2],[1,-4],[0,-9],[2,-10],[0,14],[2,-3],[2,-23],[1,-8],[2,-4],[2,0],[1,13],[1,12],[-2,18],[-1,14],[1,12],[0,5],[4,20],[2,6],[4,1],[4,-24],[2,-15],[1,-12],[0,-16],[-1,-11],[6,1],[6,-5],[5,-9],[5,-2],[5,-7],[5,-17],[2,-14],[1,-7],[1,1],[1,-2],[9,-43],[5,-19],[5,-27],[6,-33],[3,-8],[4,-21],[6,-40],[1,-12],[3,-4],[2,-10],[4,-29],[5,-20],[2,-5],[2,0],[1,-15],[1,-11],[3,-25],[3,-20],[1,-5],[2,-4],[0,-8],[1,-14],[1,-10],[1,-4],[1,-8],[1,-8],[1,-8],[0,-14],[1,-8],[1,-7],[3,-52],[0,-19],[1,-12],[1,-7],[1,2],[0,11],[1,19],[3,-44],[1,-24],[1,-22],[0,-17],[-1,-11],[1,-3],[1,-4],[1,-5],[7,-85],[5,-31],[1,-5],[4,2],[4,2],[6,-2],[4,-2],[4,-8],[4,-5],[3,-1],[2,2],[3,7],[0,10],[-1,9],[3,79],[1,13],[2,12],[2,14],[1,13],[2,17],[1,21],[0,14],[0,16],[0,15],[-3,-1],[-3,1],[-2,6],[-4,9],[-4,12],[-1,-1],[-1,-2],[-2,-4],[-2,-2],[-1,-5],[-1,-4],[-2,-6],[0,17],[1,20],[0,7],[2,5],[2,-2],[5,-6],[9,-19],[3,-2],[6,-1],[4,-7],[4,-7],[4,-9],[7,-17],[5,-12],[4,-17],[3,-11],[4,-14],[4,-21],[6,-23],[4,-21],[4,-17],[2,-7],[2,-7],[0,-275],[0,-292],[0,-276],[0,-282],[0,-170],[0,-149],[0,-273],[0,-223],[0,-237],[0,-162],[0,-116],[0,-116],[0,-284],[0,-196],[0,-125],[0,-271],[0,-232],[0,-287],[0,-170],[0,-305],[0,-141],[0,-219],[0,-214],[0,-229],[0,-155],[0,-268],[0,-21]],[[6645,83208],[-1,140],[-76,-4],[-11,-1],[-15,0],[-16,-1],[-13,0],[-2,-1],[-24,1],[-38,0],[-33,0],[-11,0],[-14,0],[-7,0],[-1,0],[0,19],[0,20],[0,51],[0,6],[0,139],[0,270],[-35,-7],[-102,-12],[-12,-4],[-8,-2],[-41,-10],[-53,-15],[-1,0],[-2,1],[-2,392],[0,52],[-263,37],[-49,-29],[-216,7],[-45,7],[-52,3],[-45,4],[-43,3],[-2,333],[-52,6],[-5,0],[-56,10],[1,-133],[1,-109],[1,-91],[-47,9],[-67,1],[-109,-4],[-48,0],[0,90],[-2,248],[-9,-2],[-81,-1],[-5,1],[-23,3],[1,-250],[0,-91],[-80,7],[-53,5],[0,91],[0,250],[-21,1],[-171,43],[-10,0],[0,-338],[-50,-3],[-41,-17],[-256,-10],[-149,4],[1,-922],[0,-85],[-39,5],[-186,5],[-1,0],[-10,6],[-4,1],[-1,1]],[[3841,83338],[-1,4],[-1,8],[-2,7],[-2,13],[-3,7],[-1,5],[-2,7],[-5,26],[-2,9],[-5,21],[-5,17],[-5,20],[-31,103],[-10,36],[-21,37],[-22,28],[-12,26],[-8,31],[-17,89],[-10,52],[-4,16],[-10,193],[-23,219],[-5,25],[-7,44],[-15,92],[-10,52],[-12,64],[-13,51],[-9,30],[-6,22],[-12,36],[-7,21],[-10,26],[-10,21],[-9,17],[-9,20],[-13,25],[-25,37],[-11,0],[-11,0],[-7,6],[-4,-16],[-2,0],[1,16],[2,18],[5,39],[3,5],[7,17],[12,46],[12,35],[11,26],[29,80],[11,41],[17,60],[4,13],[5,-21],[-4,-5],[-13,-52],[-10,-21],[-3,-10],[-1,-32],[-19,-48],[-16,-45],[-5,0],[-18,-47],[-2,-6],[-1,-10],[0,-21],[17,-47],[9,-10],[8,10],[3,11],[2,-21],[6,-26],[8,0],[6,0],[0,31],[-2,47],[-5,26],[-6,-5],[-5,-26],[0,36],[7,26],[7,-5],[6,0],[14,47],[4,31],[0,42],[8,0],[0,-36],[6,8],[5,-14],[7,-31],[1,37],[-14,52],[-2,41],[1,21],[4,-26],[4,-5],[1,16],[-3,36],[4,0],[2,-36],[1,-26],[5,-42],[4,-31],[2,41],[2,0],[2,-47],[5,-31],[5,-16],[1,-26],[7,-5],[6,31],[5,21],[-1,32],[-5,-32],[-5,0],[-6,15],[-4,43],[-3,31],[-6,26],[-5,0],[-3,47],[-2,45],[3,42],[0,29],[-5,-23],[-3,-21],[-7,-36],[-2,11],[0,19],[9,47],[9,45],[2,68],[3,23],[2,14],[0,16],[1,28],[-1,25],[0,28],[0,13],[-1,12],[0,19],[1,21],[1,28],[2,30],[0,25],[-1,18],[-1,10],[0,16],[1,14],[3,17],[1,15],[2,15],[2,14],[1,15],[1,27],[2,26],[3,26],[1,21],[0,12],[2,18],[1,23],[1,36],[0,14],[0,9],[-1,15],[-1,18],[-1,29],[-1,16],[1,35],[2,51],[1,43],[0,13],[0,9],[1,12],[1,12],[0,21],[0,21],[0,23],[-1,6],[-1,6],[-2,8],[-1,14],[1,16],[3,21],[2,25],[2,34],[2,37],[1,57],[0,28],[0,41],[-2,34],[1,16],[0,13],[0,33],[1,18],[0,28],[0,22],[0,11],[0,11],[0,25],[0,18],[0,33],[1,42],[1,34],[1,32],[-1,17],[0,13],[0,28],[-1,34],[-1,33],[-1,29],[-1,18],[0,24],[-1,25],[0,30],[-1,35],[0,39],[0,18],[-1,12],[0,13],[-1,16],[-1,27],[0,31],[-1,26],[2,11],[1,17],[1,5],[2,-2],[3,-5],[3,-4],[4,-5],[3,1],[1,0],[1,-1],[3,0],[2,-3],[4,-2],[4,-4],[5,-4],[1,-2],[2,-3],[2,-2],[3,0],[1,-2],[2,-3],[2,-4],[4,3],[3,-3],[6,-6],[5,2],[13,-8],[10,-7],[8,-8],[1,0],[3,0],[5,-4],[4,-1],[2,-4],[2,-8],[1,-4],[2,5],[1,2],[2,-2],[3,-6],[6,-5],[3,-1],[6,-9],[3,-1],[3,-2],[5,-9],[3,-3],[0,-1],[4,2],[4,-2],[2,-1],[4,-3],[1,-1],[2,-1],[4,2],[5,-4],[4,-1],[1,3],[2,1],[3,6],[4,5],[4,1],[8,1],[13,0],[10,5],[15,2],[4,3],[4,4],[1,3],[3,7],[4,1],[6,3],[4,6],[3,6],[1,2],[0,2],[3,6],[2,-1],[4,0],[2,-1],[4,5],[3,5],[2,6],[2,2],[1,3],[2,1],[1,3],[1,4],[3,7],[2,10],[2,2],[2,0],[1,0],[2,-1],[1,0],[4,3],[5,7],[3,3],[4,8],[5,3],[3,5],[11,9],[16,30],[2,4],[5,9],[11,7],[9,2],[7,17],[7,7],[10,15],[11,21],[9,19],[3,9],[4,6],[3,6],[4,7],[7,2],[3,0],[11,12],[8,5],[6,-4],[2,2],[1,3],[7,11],[6,8],[7,1],[13,12],[14,10],[13,17],[10,24],[8,22],[6,14],[1,6],[4,14],[5,19],[6,37],[6,24],[5,32],[1,4],[7,23],[11,28],[7,21],[15,96],[5,24],[3,13],[5,37],[5,47],[3,23],[5,35],[12,56],[8,31],[9,43],[10,65],[9,53],[4,36],[3,23],[2,19],[9,52],[5,36],[11,87],[6,72],[3,42],[4,53],[5,58],[5,38],[6,47],[7,66],[15,135],[5,44],[1,18],[3,31],[4,36],[3,37],[5,50],[5,67],[4,58],[3,39],[3,44],[4,60],[2,41],[3,65],[3,57],[2,99],[1,28],[2,31],[2,39],[1,-1],[1,4],[0,-18],[1,16],[3,-1],[1,-7],[-2,-7],[-1,-13],[1,-14],[-2,-12],[-1,-7],[-1,-2],[-1,-24],[-2,-27],[0,-27],[0,-24],[-1,-23],[-2,-30],[0,-16],[0,-20],[-2,-30],[-2,-23],[-1,-27],[-1,-21],[-1,-25],[-2,-20],[0,-28],[-2,-23],[-1,-27],[-2,-30],[-3,-34],[-3,-29],[-2,-29],[-1,-25],[-2,-16],[-2,-13],[-3,-19],[-2,-34],[2,9],[2,19],[2,5],[1,10],[1,12],[2,2],[2,-5],[2,-2],[1,9],[2,19],[2,34],[3,35],[1,26],[1,24],[1,12],[1,0],[2,0],[1,8],[1,17],[1,25],[2,26],[1,13],[1,15],[1,22],[1,26],[2,6],[0,-15],[1,-7],[2,-5],[1,11],[1,7],[0,12],[-1,5],[-2,-1],[-1,-1],[-1,12],[2,10],[2,14],[0,22],[1,29],[2,13],[1,10],[1,12],[1,15],[3,-6],[1,5],[1,51],[-3,37],[0,22],[0,19],[1,22],[0,26],[0,16],[0,14],[3,12],[0,21],[0,23],[0,19],[0,18],[1,30],[0,16],[0,22],[1,9],[2,18],[1,25],[-1,25],[-3,29],[0,36],[0,35],[1,8],[1,-4],[2,-6],[1,-6],[2,-4],[2,-4],[2,5],[1,9],[0,18],[2,3],[-1,30],[1,24],[2,35],[0,49],[-2,35],[-3,34],[2,5],[3,5],[2,8],[1,19],[-1,34],[-2,25],[-2,15],[1,17],[-1,13],[-4,13],[-7,42],[-6,52],[-4,28],[-2,13],[0,22],[2,11],[-1,-16],[1,-13],[1,-12],[4,18],[1,9],[1,15],[3,26],[1,30],[6,11],[4,-5],[3,1],[2,3],[3,-8],[2,6],[1,4],[-1,16],[-4,11],[0,16],[-1,24],[-1,26],[-3,14],[-3,17],[2,4],[2,9],[4,16],[5,-6],[1,4],[1,5],[-6,30],[-4,15],[-4,2],[-4,5],[0,30],[1,22],[1,14],[1,1],[1,4],[2,17],[-2,16],[-1,19],[-1,18],[0,32],[1,20],[2,-21],[3,-29],[6,-52],[6,-14],[5,15],[3,18],[3,21],[1,21],[3,21],[3,30],[-2,39],[-2,8],[0,9],[-1,11],[-1,12],[-3,20],[-3,23],[-4,14],[-5,22],[-5,18],[-2,5],[-2,-8],[-2,-1],[-1,1],[1,17],[1,28],[2,19],[1,25],[1,34],[0,22],[3,3],[2,5],[2,9],[2,-5],[1,-10],[1,-14],[1,-7],[2,-8],[2,1],[1,-4],[2,-8],[1,-7],[0,10],[0,7],[-4,26],[-2,84],[-1,28],[1,5],[1,13],[2,13],[0,5],[4,-2],[1,-5],[3,-20],[2,3],[1,4],[1,10],[0,14],[0,11],[-1,-15],[-2,-7],[-1,-4],[-1,10],[0,16],[1,13],[2,9],[2,10],[-1,19],[2,15],[3,0],[3,-1],[2,10],[2,13],[1,0],[3,10],[1,8],[3,6],[3,33],[1,72],[7,23],[4,44],[6,28],[4,51],[5,15],[1,23],[2,19],[2,21],[2,5],[-1,-16],[1,11],[7,26],[1,19],[2,19],[2,31],[2,5],[1,-22],[2,3],[-1,37],[2,14],[4,29],[4,31],[1,7],[1,3],[0,-13],[2,-9],[2,-2],[2,8],[2,24],[3,29],[2,24],[6,60],[6,56],[4,36],[0,-17],[0,-19],[2,-15],[3,-19],[1,-13],[1,-8],[1,19],[-3,23],[-1,12],[-1,15],[0,20],[0,18],[1,10],[1,3],[-1,13],[-2,1],[0,11],[3,9],[1,3],[3,39],[2,59],[1,37],[-1,14],[0,23],[-1,29],[1,31],[0,36],[1,33],[-1,31],[3,9],[5,-1],[8,6],[3,-2],[3,8],[2,6],[1,24],[2,-20],[2,-28],[4,-11],[4,-1],[1,5],[2,7],[2,9],[-2,30],[-3,6],[1,-11],[1,-7],[1,-12],[0,-7],[-2,0],[-1,-5],[-1,0],[-1,4],[-1,8],[-1,11],[-1,9],[0,15],[1,2],[2,-2],[-1,17],[-2,13],[-1,33],[-1,55],[3,22],[5,-6],[3,-6],[1,-5],[3,37],[-3,34],[-2,43],[0,19],[2,25],[6,34],[9,41],[7,50],[7,45],[3,1],[3,-11],[3,13],[5,44],[0,29],[2,38],[1,13],[2,-6],[1,5],[-1,30],[4,22],[4,6],[4,31],[3,33],[3,38],[4,18],[4,48],[3,32],[5,14],[3,28],[2,25],[5,65],[4,57],[3,48],[4,49],[6,63],[4,15],[3,20],[4,17],[6,30],[3,7],[6,-11],[-1,-26],[-4,-11],[-3,13],[-2,-26],[0,-10],[5,-30],[3,11],[1,5],[3,-6],[1,-7],[0,-4],[1,-10],[2,-22],[1,-24],[0,-8],[-1,-4],[-2,14],[-2,6],[-1,-10],[-2,17],[-3,20],[-5,26],[-1,-6],[0,-14],[0,-11],[1,-23],[2,-3],[2,10],[1,-8],[1,-9],[1,-22],[3,-10],[0,21],[1,-19],[1,-18],[1,-8],[4,-25],[6,-26],[3,35],[-2,38],[-1,15],[0,6],[-1,9],[0,8],[2,1],[4,-28],[5,-20],[6,-8],[5,-2],[3,4],[1,-7],[4,-38],[3,-59],[-2,-11],[4,-25],[-6,-15],[-7,-9],[-9,-10],[-5,8],[-5,14],[-8,28],[-4,-8],[-7,9],[-4,18],[-5,11],[-3,-24],[0,-32],[3,-31],[5,-25],[6,-16],[5,-21],[7,-18],[8,8],[3,37],[2,-28],[1,-22],[0,-15],[1,-20],[-1,-12],[-5,14],[-5,5],[-3,-26],[-3,-11],[-2,-6],[-6,33],[-10,15],[-1,-33],[-1,-13],[0,-47],[4,-38],[5,-13],[3,-37],[-3,-31],[0,-18],[-1,-7],[-2,-13],[-6,-2],[-3,6],[-4,9],[-1,-12],[-6,-6],[-2,11],[-3,-1],[-2,22],[-3,34],[-6,28],[-6,21],[0,-1],[-2,-1],[-5,-19],[-3,-2],[-1,-24],[0,-16],[-1,-17],[1,-22],[-3,13],[-3,7],[-2,-7],[-4,5],[-1,-16],[1,-10],[1,-7],[0,-4],[2,-6]],[[4798,73335],[-1,0],[0,19],[2,7],[1,-13],[-1,-6],[0,-3],[-1,-4]],[[4831,73438],[-1,-3],[-2,15],[0,11],[-1,7],[-1,3],[0,26],[2,22],[3,26],[3,16],[2,-3],[2,-7],[0,-26],[-2,-16],[0,-18],[-1,-16],[-1,-13],[0,-14],[-2,-8],[-1,-2]],[[4295,73657],[1,-9],[1,-4],[1,-8],[-1,-13],[-1,-5],[0,-10],[-1,-5],[-1,2],[-1,5],[-2,2],[-2,2],[1,8],[1,12],[0,14],[2,8],[1,0],[1,1]],[[5011,73813],[-2,-2],[-1,2],[0,9],[2,10],[2,15],[1,5],[1,-10],[1,-4],[0,-7],[-2,-6],[-2,-12]],[[5023,73865],[2,-1],[3,8],[2,7],[1,-1],[-1,-7],[-1,-9],[-2,-3],[-4,-2],[-2,-2],[-2,-3],[-3,-4],[-1,5],[-2,7],[0,16],[1,12],[3,-3],[2,-2],[1,-7],[1,-6],[2,-5]],[[5032,73887],[-2,-1],[1,24],[1,25],[1,-4],[0,-27],[-1,-17]],[[5048,74114],[-3,-29],[-1,-1],[-1,7],[0,6],[-1,-3],[-1,-12],[-1,-10],[-1,-15],[0,-7],[1,-46],[0,-7],[1,-25],[0,-6],[-1,-19],[0,-12],[-1,-11],[-2,-7],[-2,-1],[-2,26],[-1,20],[1,20],[0,9],[3,28],[2,31],[0,35],[-2,39],[-1,48],[1,2],[0,3],[6,5],[4,4],[3,14],[2,8],[0,23],[2,8],[1,-13],[0,-25],[-1,-31],[-3,-24],[-1,-10],[-1,-22]],[[4203,74296],[4,-22],[7,11],[1,-25],[-6,-39],[-9,26],[-1,20],[1,26],[3,3]],[[5054,74249],[-1,0],[0,9],[-1,20],[0,5],[0,17],[0,13],[0,17],[1,5],[1,-10],[1,-11],[2,-15],[0,-7],[0,-15],[-2,-16],[-1,-12]],[[5038,74324],[0,-14],[-1,1],[-2,20],[0,9],[0,6],[3,-3],[0,-19]],[[4832,74344],[-1,-3],[-1,0],[-1,-5],[0,-4],[-1,-2],[-2,-5],[-3,26],[-2,42],[0,18],[2,-6],[0,-1],[2,-6],[2,-6],[1,-1],[1,-2],[1,-2],[3,-1],[1,-27],[-2,-12],[0,-3]],[[5277,75669],[-2,-13],[0,16],[-1,13],[-1,25],[1,11],[0,18],[0,22],[1,13],[1,-2],[0,-14],[-1,-18],[0,-27],[2,-12],[1,-12],[-1,-20]],[[4989,75993],[1,-14],[-1,0],[0,6],[-1,9],[1,11],[0,-12]],[[4996,76107],[-1,-1],[-1,9],[-1,5],[1,15],[1,-7],[0,-9],[1,-12]],[[5241,76328],[-2,-14],[0,10],[0,9],[1,6],[1,4],[2,1],[-2,-16]],[[4865,78000],[-1,0],[0,13],[1,15],[-1,15],[1,7],[2,6],[1,-2],[0,-15],[-1,-16],[-1,-10],[-1,-13]],[[4861,78198],[1,-6],[1,2],[1,-11],[0,-19],[1,-17],[-1,-1],[-2,-1],[-1,1],[0,11],[-1,9],[-1,18],[-1,16],[1,6],[2,-8]],[[4548,78415],[-1,0],[-1,8],[1,11],[2,0],[0,-14],[-1,-5]],[[4556,78434],[-2,-3],[-1,2],[0,17],[2,6],[1,4],[2,3],[1,-3],[-2,-19],[-1,-7]],[[4571,78356],[-4,-19],[-1,10],[1,11],[1,11],[1,4],[0,-17],[1,9],[0,16],[-1,26],[1,26],[1,30],[1,15],[1,-6],[1,-8],[0,-25],[0,-27],[-1,-29],[-2,-27]],[[4065,81906],[0,-1],[1,2],[0,-12],[1,-8],[1,-5],[1,-6],[2,-16],[1,-7],[0,-8],[0,-7],[-6,34],[-8,59],[-5,32],[-2,16],[-14,105],[-1,8],[1,5],[2,-13],[4,-24],[6,-37],[5,-37],[6,-45],[1,-7],[1,-2],[0,-4],[1,-7],[1,-1],[0,-5],[1,-9]],[[5448,70920],[-14,2],[-44,-2],[0,-177],[-1,-182],[0,-72],[-4,3],[-26,0],[-29,0],[-120,13],[-22,2],[-103,0],[-23,-1],[-14,0],[-8,-6],[-46,1],[-44,1],[-45,0],[-85,0],[-52,0],[-2,-2],[-82,1],[-72,-2],[-53,-4],[-11,0],[-17,-1],[-19,5],[-8,5],[-14,-2],[-9,-2],[-8,-3],[-7,3],[-10,1],[-7,-2],[-153,-7],[-8,-1],[0,28],[-1,156],[0,613],[0,21],[0,34],[-23,-1],[-36,2],[0,115],[0,66],[0,15],[0,94],[0,185],[0,47],[0,132],[0,212],[-12,-2],[-4,-1],[-43,1],[-18,-1],[0,281],[1,555],[0,314],[0,569],[-20,7],[-1,150],[0,159],[0,44],[0,1359],[-21,1],[-1,460],[0,8],[1,5],[0,6],[1,8],[-2,3],[0,30]],[[4109,76166],[1,0],[2,-19],[0,12],[3,9],[2,-5],[2,-1],[5,3],[5,5],[4,5],[3,6],[7,1],[4,1],[5,11],[6,1],[4,3],[2,4],[4,2],[12,9],[9,4],[5,4],[9,-2],[8,5],[9,4],[5,-6],[3,8],[2,1],[-1,-15],[1,3],[2,12],[1,-3],[2,-3],[3,1],[2,1],[6,-1],[5,0],[4,-6],[2,5],[2,-2],[4,-2],[3,-1],[5,-6],[8,-6],[7,-14],[8,-15],[6,-15],[4,-6],[6,-20],[6,-20],[7,-30],[3,-18],[2,-13],[1,-13],[-2,1],[-1,1],[-2,-4],[-1,-4],[-2,-4],[-2,-3],[-2,4],[-1,4],[-1,3],[-3,9],[-2,5],[-6,11],[-5,12],[-5,12],[-5,14],[-4,8],[-4,14],[-4,4],[-4,1],[-6,10],[-3,3],[-1,2],[-3,-2],[-2,3],[-1,2],[-1,2],[-2,3],[-1,2],[1,-20],[-1,-3],[-1,-3],[-1,-7],[-1,-7],[-2,4],[-1,1],[0,17],[-1,7],[-1,2],[-1,-11],[-1,11],[-2,6],[-1,3],[0,-2],[0,-11],[0,-29],[0,-19],[1,-18],[1,-12],[1,-11],[1,-7],[2,-7],[1,0],[2,3],[1,15],[2,2],[2,-4],[1,-4],[1,-5],[3,6],[1,11],[2,11],[1,-8],[1,-2],[2,-4],[1,-5],[2,-8],[2,-8],[1,-6],[2,-6],[1,-5],[1,-3],[1,11],[1,5],[2,-3],[1,-7],[1,1],[2,-1],[3,-7],[1,-1],[0,-14],[0,-15],[0,-16],[0,-13],[0,-24],[0,-34],[2,-20],[1,-15],[1,-4],[1,8],[0,1],[1,-10],[1,-9],[1,-10],[0,-22],[0,-25],[0,-40],[-1,-36],[-1,-33],[-2,-34],[-2,-39],[-2,-28],[-1,-13],[0,-18],[-1,-16],[-1,-18],[-2,-12],[-2,-15],[-2,-18],[-3,-26],[-2,-17],[-4,-25],[-3,-19],[-2,-15],[-1,-13],[-2,-19],[-2,-29],[-1,-27],[-1,-30],[-1,-22],[-2,-21],[0,-33],[1,-30],[1,-27],[0,-18],[2,-10],[1,-6],[0,-17],[-2,-11],[0,-9],[-1,-44],[0,-28],[1,-26],[-1,-19],[-1,-22],[-2,-16],[0,-10],[-1,-16],[1,-15],[1,-9],[1,-6],[1,-14],[3,-9],[2,-9],[2,-7],[1,-14],[-1,-20],[1,-19],[0,-15],[0,-21],[0,-14],[0,-13],[0,-16],[1,-9],[1,11],[1,-3],[0,-20],[-1,-16],[-1,-22],[-1,-15],[0,-14],[-1,-11],[-4,-17],[-4,-33],[-3,-33],[-4,-34],[-2,-28],[-3,-30],[-1,-21],[-2,-16],[-1,-4],[-2,-4],[-2,1],[-1,3],[-1,5],[-2,1],[-2,-3],[-6,-5],[-6,-11],[-7,-14],[-4,-5],[-2,3],[-2,-3],[-1,-8],[-2,1],[0,-2],[-2,-12],[0,-21],[-1,-10],[-1,-13],[-1,5],[-1,3],[-1,6],[-2,1],[-2,1],[-1,-7],[1,-4],[1,-3],[0,-7],[1,-17],[-1,-2],[-1,7],[-1,2],[-1,8],[-1,4],[-1,-3],[-1,-9],[-1,1],[0,12],[-2,11],[0,-1],[-1,-3],[-2,-3],[-2,-2],[-2,-1],[-2,4],[-1,1],[-1,-8],[-1,-10],[2,-6],[-1,-6],[-1,0],[-2,6],[-1,8],[0,8],[-1,14],[-1,11],[0,-7],[0,-22],[1,-11],[1,-18],[-1,-4],[-1,-6],[1,-8],[1,-10],[1,-3],[2,-3],[2,0],[2,2],[2,-2],[2,-3],[1,4],[2,-1],[2,-1],[2,-5],[2,2],[2,5],[1,8],[1,12],[1,-1],[2,-4],[1,-4],[1,-11],[1,-2],[2,-4],[2,0],[2,-1],[2,5],[1,5],[2,1],[2,9],[1,8],[1,-2],[2,-7],[2,-12],[2,-11],[1,-3],[2,5],[1,5],[2,12],[1,9],[0,13],[1,12],[2,6],[1,11],[1,12],[1,5],[1,-16],[0,-19],[1,-14],[-1,-5],[-1,-2],[-1,-2],[-1,-13],[-1,-14],[0,-18],[1,-20],[1,-3],[2,1],[1,9],[1,10],[1,0],[2,-6],[1,-8],[1,7],[-1,23],[1,3],[1,4],[2,5],[1,10],[-1,5],[1,9],[1,9],[0,10],[1,9],[1,3],[1,8],[3,-17],[1,-49],[2,-48],[2,-56],[2,-46],[2,-35],[1,-36],[2,-42],[2,-30],[3,-26],[2,-18],[3,-35],[4,-30],[2,-16],[2,-23],[2,-22],[1,-18],[2,-11],[2,-8],[2,-18],[1,-9],[0,-42],[-1,-15],[0,-9],[1,1],[1,5],[1,2],[1,-4],[1,-4],[1,0],[1,0],[1,11],[1,9],[1,5],[1,6],[1,-2],[2,8],[0,6],[2,-2],[1,-3],[3,-16],[2,-5],[2,-10],[2,-6],[4,-12],[4,-8],[3,2],[1,3],[3,19],[1,11],[1,0],[1,1],[1,9],[1,6],[1,5],[2,5],[3,-6],[4,-3],[2,2],[2,6],[1,6],[1,8],[2,8],[1,2],[1,6],[1,6],[1,7],[1,4],[2,9],[1,9],[-1,19],[1,-3],[2,-5],[1,-2],[2,0],[1,-3],[1,0],[1,3],[1,-2],[1,-4],[1,7],[2,-1],[1,-4],[1,-4],[2,-6],[1,-6],[3,0],[2,0],[0,4],[2,8],[2,7],[1,3],[1,-3],[2,-2],[2,-6],[2,-7],[2,3],[1,7],[1,4],[1,1],[1,-1],[2,3],[1,5],[1,8],[1,0],[1,-3],[1,-10],[0,-14],[0,-12],[0,-5],[3,-17],[4,-17],[4,-13],[5,-10],[2,-1],[2,-1],[3,-1],[3,-4],[3,-5],[4,1],[4,0],[1,-1],[3,-11],[1,-9],[2,-8],[6,1],[7,7],[8,11],[5,11],[2,6],[6,9],[3,13],[4,12],[6,17],[5,22],[3,18],[2,11],[2,14],[0,21],[1,-2],[2,-10],[1,-8],[1,2],[1,0],[2,3],[1,-1],[1,-5],[1,-5],[0,-6],[3,-3],[2,-1],[1,1],[1,-4],[1,-5],[2,-8],[1,-4],[4,-1],[3,5],[4,9],[3,3],[2,6],[2,4],[1,9],[1,0],[1,-5],[2,-2],[1,3],[1,2],[1,8],[3,11],[2,6],[1,6],[1,9],[2,9],[1,6],[2,-4],[0,-3],[0,-9],[-2,-10],[-1,-9],[0,-17],[1,-14],[2,-15],[2,-16],[2,-20],[1,2],[1,-6],[1,-2],[1,-1],[1,-5],[1,1],[2,-3],[2,-10],[1,-7],[1,-18],[1,-22],[0,-18],[2,-26],[0,-5],[7,-33],[3,-30],[-1,-15],[-6,38],[-1,-1],[-1,-9],[-1,-11],[-1,-5],[-1,-4],[0,-15],[1,-16],[0,-16],[-2,-18],[0,-22],[1,-21],[0,-17],[0,-17],[0,-17],[0,-19],[1,-22],[-1,-24],[1,-19],[0,11],[3,-14],[1,-15],[-1,-12],[2,-21],[1,-14],[-1,-11],[0,-1],[1,-4],[1,21],[0,24],[0,21],[-2,25],[0,22],[0,29],[0,17],[-1,20],[0,19],[0,19],[1,12],[1,16],[2,19],[1,16],[3,21],[0,16],[1,5],[2,6],[3,7],[3,2],[1,1],[1,0],[0,-6],[1,-2],[2,-9],[0,-14],[1,-5],[2,1],[1,2],[2,6],[1,-3],[1,-7],[1,5],[3,12],[2,6],[1,2],[1,0],[1,10],[-4,1],[-9,-14],[-3,8],[0,19],[9,4],[8,12],[5,16],[5,15],[5,18],[2,8],[0,9],[1,-1],[0,-15],[1,-8],[2,-13],[2,-7],[1,-1],[1,-5],[1,-10],[1,-17],[1,-17],[1,-18],[0,-14],[3,-14],[3,-17],[2,-4],[4,0],[2,3],[2,2],[1,1],[6,11],[6,26],[4,7],[4,7],[2,8],[1,5],[5,21],[2,12],[2,4],[2,2],[1,1],[3,15],[3,18],[4,29],[2,7],[2,12],[2,12],[2,15],[3,17],[3,14],[1,3],[1,-16],[0,-15],[1,-15],[2,-10],[3,-7],[3,4],[2,4],[1,-4],[2,-1],[1,-2],[3,-1],[2,2],[3,13],[3,13],[2,-2],[1,-7],[1,-10],[0,-14],[0,-11],[4,-11],[3,-7],[3,-18],[2,-12],[2,-24],[7,-40],[6,-20],[8,-21],[3,-1],[14,-42],[0,-10],[-3,-5],[-10,30],[-1,-3],[-1,1],[-1,13],[-2,8],[-2,5],[-2,7],[-2,8],[-2,-8],[1,-9],[0,-9],[1,-7],[2,-6],[0,-10],[-2,-21],[-3,-13],[-2,-4],[-1,0],[-1,-1],[0,-10],[-1,-14],[-2,-27],[1,5],[2,9],[1,9],[3,4],[1,1],[1,-20],[-1,-14],[-1,-20],[2,4],[1,18],[1,19],[1,1],[1,13],[0,15],[0,14],[1,9],[2,3],[1,-2],[2,-5],[1,1],[1,-5],[1,-18],[0,-20],[0,-15],[1,-6],[2,-10],[1,-13],[0,-7],[-1,-19],[-3,-35],[-1,-10],[-2,-18],[0,-17],[-1,-10],[-2,-14],[0,-22],[0,-18],[1,-15],[1,-1],[1,4],[2,-1],[1,-7],[1,-3],[1,18],[1,13],[1,8],[1,7],[2,-2],[1,-10],[2,-11],[1,-16],[2,3],[1,3],[1,12],[1,4],[2,-1],[1,-1],[1,-1],[1,4],[2,4],[0,-10],[2,1],[1,9],[1,15],[1,7],[0,14],[1,14],[1,5],[0,10],[-1,1],[-1,-2],[-1,7],[-1,17],[-1,4],[-3,-4],[-1,0],[-1,9],[-3,41],[-1,10],[1,14],[1,15],[0,18],[1,7],[3,26],[0,15],[1,14],[1,16],[1,26],[0,11],[1,13],[2,16],[1,4],[2,13],[2,25],[1,8],[1,10],[1,7],[1,18],[2,22],[1,10],[2,9],[1,-19],[1,5],[1,11],[1,13],[1,13],[0,10],[1,11],[0,17],[-1,10],[1,13],[1,17],[0,16],[1,16],[-2,28],[-1,-6],[1,-15],[0,-14],[-1,-4],[0,13],[-1,-1],[-1,-17],[-1,-27],[0,-18],[1,-23],[-1,-11],[-2,-10],[-2,-24],[-2,-19],[-1,-11],[0,-1],[-2,-11],[-1,-26],[-2,-13],[-1,-4],[-1,2],[0,17],[0,29],[-1,12],[0,15],[1,17],[-1,27],[1,14],[26,188],[5,52],[5,69],[5,85],[1,44],[3,72],[1,26],[3,26],[2,29],[1,27],[2,42],[5,70],[3,54],[1,40],[4,25],[1,3],[1,0],[2,2],[3,16],[4,39],[3,26],[4,1],[6,-4],[4,-9],[4,-5],[3,-2],[1,10],[2,-6],[4,-7],[4,4],[6,6],[4,-6],[0,-8],[-2,-10],[-1,-11],[1,-10],[1,-38],[1,-33],[3,-39],[1,-25],[2,-8],[3,-16],[5,-11],[6,-12],[7,-7],[11,-9],[14,46],[5,13],[5,27],[4,22],[3,7],[5,5],[1,-4],[2,-13],[-1,-30],[-5,-34],[0,-41],[0,-32],[-1,-31],[0,-4],[1,-8],[1,-6],[-4,-23],[-3,-11],[0,-2],[0,-12],[1,-2],[1,-9],[1,-31],[1,-32],[1,-25],[1,-27],[0,-20],[-1,-19],[-2,-5],[-2,-8],[-2,-6],[0,-13],[-1,-19],[2,-20],[0,-20],[1,-35],[-2,-25],[-3,-3],[-2,6],[-4,6],[-2,1],[-3,-2],[0,-1],[-2,-8],[0,-20],[-1,-15],[-2,-7],[-1,-9],[-1,-3],[-3,-21],[-1,-22],[0,-15],[-2,-8],[0,-7],[-1,-11],[2,-11],[1,-1],[0,-1],[2,-8],[2,-7],[2,1],[2,-5],[0,-10],[0,-19],[-3,-22],[0,-5],[0,-24],[-1,-18],[2,1],[1,8],[0,1],[0,12],[0,11],[2,7],[2,30],[1,10],[0,7],[-2,19],[-4,7],[-3,15],[-1,25],[0,10],[1,5],[0,1],[3,11],[2,3],[3,16],[3,5],[4,4],[4,7],[5,1],[3,11],[1,23],[2,23],[3,18],[3,11],[3,29],[1,23],[0,17],[-1,17],[-1,34],[-1,15],[0,7],[1,6],[1,3],[2,9],[2,10],[2,31],[3,32],[2,31],[0,19],[1,20],[0,29],[2,18],[0,2],[1,28],[-1,20],[-2,20],[0,15],[0,9],[2,5],[-1,0],[0,13],[2,12],[2,18],[1,22],[-3,9],[1,18],[1,13],[-2,15],[0,3],[-1,4],[-1,22],[0,19],[-1,15],[-1,9],[-1,6],[-1,11],[-1,17],[-3,14],[-3,44],[-7,42],[-1,25],[-1,14],[2,10],[1,9],[-2,3],[-1,-2],[-2,4],[-7,102],[-6,62],[-10,59],[-1,4],[-16,33],[-12,41],[-6,30],[-3,1],[-7,23],[-12,39],[-10,13],[-12,23],[-7,23],[-11,32],[-5,14],[-2,-1],[-15,-6],[-6,1],[-8,4],[-17,-3],[-4,-21],[-9,-50],[-11,-59],[-3,-9],[-7,-36],[-6,-10],[-1,0],[-2,4],[-4,6],[0,-1],[-10,-16],[-3,-39],[0,-26],[2,-10],[0,-6],[2,-11],[-5,-53],[0,-25],[1,-8],[1,-16],[2,-19],[2,-11],[3,0],[3,5],[2,12],[1,7],[0,-12],[0,-6],[0,-5],[-1,-3],[-1,-17],[-2,-20],[-1,-56],[3,-38],[4,9],[1,-15],[2,-55],[2,-10],[3,6],[1,-3],[0,-11],[-4,-12],[-1,-3],[-5,-13],[-7,9],[-7,-6],[1,81],[0,64],[-1,63],[-3,68],[-1,5],[-6,-26],[0,60],[4,60],[5,119],[5,141],[4,119],[2,128],[1,94],[0,38],[-1,77],[-1,85],[-2,57],[-3,45],[-6,77],[-5,47],[-4,38],[-5,64],[-4,26],[-6,32],[-8,35],[-6,31],[-5,28],[-4,21],[-2,16],[-2,20],[-2,63],[-2,84],[-3,58],[-5,67],[-4,56],[-6,58],[-6,46],[-2,10],[-4,21],[-5,28],[-5,19],[-5,12],[-3,11],[0,13],[0,7],[0,1],[0,13],[0,2],[0,12],[1,20],[0,10],[1,4],[0,6],[1,4],[0,6],[-1,2],[0,4],[1,9],[1,16],[0,15],[-2,-2],[-1,12],[1,0],[2,9],[1,13],[1,11],[-2,-1],[-1,0],[-1,-5],[-1,-8],[-2,-8],[0,-8],[1,-13],[-1,-14],[-1,-9],[-1,-9],[0,-2],[-1,-8],[-1,-10],[-1,-5],[-1,-10],[0,-16],[0,-7],[0,-5],[1,-12],[1,-13],[2,-19],[-2,1],[-2,6],[-1,11],[0,10],[-3,5],[0,12],[-1,6],[0,5],[0,4],[-1,9],[0,11],[0,4],[0,5],[0,6],[-1,6],[0,1],[-1,7],[-1,2],[-1,1],[0,-7],[0,-6],[-1,-14],[0,-5],[2,3],[1,0],[0,-9],[0,-2],[0,-10],[0,-11],[1,-14],[-1,-3],[0,-5],[-5,2],[-5,0],[-3,7],[-7,14],[-9,9],[-5,-4],[-4,1],[-2,7],[-1,4],[-1,2],[-2,7],[0,5],[-2,14],[1,22],[0,36],[-1,45],[-1,55],[-1,39],[-5,68],[-3,38],[-1,28],[-3,29],[-2,33],[-3,40],[-3,34],[-3,27],[-1,7],[-1,6],[-1,7],[-3,23],[-1,14],[-1,8],[-1,21],[0,22],[0,25],[0,17],[1,34],[0,12],[1,10],[0,9],[0,8],[1,9],[0,6],[1,9],[0,10],[1,11],[0,11],[1,10],[1,11],[1,7],[1,6],[1,4],[1,5],[1,7],[1,3],[1,-1],[1,-4],[1,0],[1,-3],[1,-2],[2,-2],[1,-1],[1,-5],[0,3],[1,5],[1,8],[1,3],[0,2],[1,-3],[1,-1],[1,3],[1,-1],[0,6],[2,2],[0,1],[1,7],[1,12],[1,15],[0,12],[2,19],[0,26],[-1,21],[0,22],[1,17],[1,19],[1,17],[2,13],[3,14],[0,4],[1,0],[2,-7],[0,-24],[0,-13],[1,-8],[1,-5],[0,-16],[0,-25],[1,-18],[3,-20],[3,-16],[3,-4],[2,-3],[2,6],[1,11],[2,6],[2,7],[2,12],[2,4],[2,13],[3,8],[2,13],[2,12],[1,17],[1,16],[1,11],[1,-9],[2,-11],[3,-13],[3,-27],[3,-24],[1,-20],[0,-19],[0,-28],[3,-57],[2,-17],[1,-20],[3,-37],[2,-60],[4,-52],[4,-43],[6,-47],[4,-38],[6,-51],[3,-37],[3,-69],[5,-53],[5,-49],[3,-12],[4,-14],[7,-13],[4,2],[3,-2],[2,-4],[1,-10],[0,-19],[0,-26],[0,-33],[0,-11],[-1,-19],[-1,-18],[-1,-25],[-1,-26],[0,-21],[-1,-16],[-1,-26],[-2,-28],[-2,-10],[-3,-27],[-3,-32],[-1,-30],[-2,-33],[0,-20],[2,-35],[1,-25],[-1,-14],[0,-21],[-1,-17],[0,-32],[1,-16],[0,-21],[0,-26],[1,-28],[2,-14],[4,-28],[2,-4],[2,-7],[0,-17],[6,-61],[3,-26],[6,-71],[6,-55],[4,-94],[4,-64],[6,-68],[9,-30],[10,-62],[10,-65],[11,-71],[10,-61],[10,-31],[7,-29],[9,-87],[2,-5],[1,-19],[4,-7],[6,-25],[4,-26],[5,20],[2,-10],[2,-6],[1,3],[1,1],[3,13],[2,-4],[7,24],[5,14],[2,14],[4,1],[5,8],[7,32],[5,30],[4,30],[5,3],[6,15],[3,10],[2,20],[1,21],[2,5],[0,12],[2,19],[3,30],[2,17],[1,9],[1,7],[3,24],[5,29],[1,16],[19,81],[2,-11],[0,-28],[1,-38],[-1,-45],[1,-36],[2,-38],[6,-42],[5,-12],[5,3],[2,5],[1,22],[2,-8],[2,-5],[2,-22],[6,-53],[7,-64],[2,-28],[5,-43],[4,-58],[4,-43],[3,-1],[3,0],[10,-55],[9,-39],[6,-56],[11,-93],[8,-50],[5,-9],[9,-13],[12,2],[7,10],[5,-25],[3,-13],[5,-9],[5,6],[5,28],[6,-5],[6,-14],[6,18],[8,37],[4,18],[8,7],[7,8],[6,-5],[10,3],[5,22],[6,14],[4,3],[7,-12],[6,4],[6,14],[3,23],[1,22],[1,13],[0,-9],[2,4],[-1,38],[0,19],[1,17],[0,26],[0,19],[1,13],[-2,14],[0,24],[0,39],[0,24],[2,9],[0,20],[1,27],[0,19],[1,9],[-1,29],[0,15],[0,21],[2,17],[1,11],[1,8],[0,20],[-1,20],[-2,22],[1,14],[0,17],[1,10],[0,23],[-1,27],[-2,20],[0,27],[-3,26],[-2,22],[-1,32],[-1,13],[0,13],[-1,16],[-2,37],[-5,47],[-1,17],[-1,10],[-4,33],[-3,30],[-1,18],[0,11],[-1,6],[-1,3],[0,2],[-1,4],[0,4],[0,4],[0,7],[0,7],[0,6],[-1,3],[0,5],[2,1],[1,0],[3,0],[2,-7],[2,1],[1,-11],[1,23],[1,7],[0,6],[-1,9],[-2,15],[-3,10],[-1,8],[-1,10],[1,2],[2,3],[2,5],[2,6],[2,4],[0,20],[-2,6],[-2,-16],[-1,11],[-2,11],[-2,0],[-1,-1],[-1,13],[2,5],[1,3],[4,10],[3,7],[2,-18],[2,-4],[2,7],[1,-7],[1,3],[1,12],[1,18],[0,17],[1,20],[2,-8],[0,-5],[1,8],[1,11],[1,16],[1,17],[-1,2],[-1,-1],[-1,1],[-1,-5],[0,-3],[-1,5],[0,8],[1,0],[0,9],[0,10],[1,-2],[1,2],[0,15],[0,10],[-2,6],[-1,-5],[-2,-11],[-1,-16],[-1,-5],[0,-14],[-1,6],[-2,1],[-1,-2],[0,-6],[0,-5],[1,-9],[1,-1],[0,-7],[-2,-10],[-2,10],[-2,-32],[-1,-18],[-1,-6],[-1,3],[-2,6],[-2,4],[0,11],[0,1],[-2,-4],[-1,3],[-1,5],[-1,12],[-1,-2],[-5,-48],[-3,-42],[-1,-51],[3,-30],[-5,12],[-6,42],[-5,-10],[-2,22],[-6,0],[-8,-14],[-5,-5],[-5,-15],[-2,-9],[-2,6],[0,-33],[-1,-41],[0,-42],[-1,-10],[0,-3],[-1,-18],[0,-4],[1,-5],[-2,-14],[-6,0],[-23,38],[-8,17],[-13,59],[-9,80],[-5,76],[-4,39],[-7,41],[-5,16],[-3,19],[-6,11],[-11,7],[-8,-11],[-6,-5],[-2,2],[-2,3],[-1,8],[0,7],[-1,-15],[1,-22],[-5,-20],[-4,-5],[-2,-15],[-2,-4],[-4,-1],[-13,-9],[-8,-11],[-5,5],[-7,7],[-3,-2],[-12,-117],[-1,-24],[-2,-26],[1,-66],[1,-67],[-7,-6],[-3,2],[-1,7],[-1,-6],[0,-16],[-1,-12],[0,-9],[1,-7],[0,-18],[1,-16],[1,-1],[1,9],[1,-6],[2,-16],[0,-12],[-2,-20],[-1,-9],[-1,-17],[0,-6],[0,-22],[-1,-9],[-1,-5],[-2,25],[-1,25],[-2,2],[-1,11],[1,9],[-3,21],[0,5],[-1,0],[0,-17],[0,-15],[2,-21],[1,-14],[0,-15],[1,-10],[1,-12],[-1,-11],[-2,-12],[-4,-20],[-5,-30],[-1,-2],[0,-13],[-2,-7],[-4,9],[-1,-10],[-1,1],[-3,5],[-3,4],[-2,-3],[-6,-3],[-6,4],[-3,8],[-3,8],[0,5],[-1,5],[-1,15],[-1,1],[-2,-8],[-4,-21],[-4,-12],[-4,3],[-4,14],[-3,27],[0,8],[0,21],[-1,0],[-1,11],[-2,18],[-4,17],[-4,10],[-2,15],[1,12],[4,9],[7,8],[6,7],[3,6],[0,3],[0,2],[-3,1],[-7,0],[-5,-6],[-6,-4],[-1,8],[2,15],[2,18],[2,26],[0,15],[-2,10],[-2,20],[0,-1],[-3,6],[-2,0],[-5,5],[-3,13],[-1,16],[-1,8],[-1,11],[-3,27],[-6,32],[-6,12],[-3,14],[-1,22],[-1,-3],[-1,0],[-2,13],[-3,19],[-4,28],[-1,22],[-3,23],[-1,21],[-1,37],[-11,83],[-3,3],[-1,8],[-3,17],[-2,26],[-1,14],[-3,26],[0,14],[-1,9],[-1,-8],[-2,5],[-1,14],[-2,22],[-2,49],[-5,6],[-1,19],[2,17],[0,2],[0,13],[-1,-2],[-2,-7],[-2,4],[-1,12],[0,19],[1,16],[2,21],[1,28],[2,38],[1,12],[2,40],[2,49],[-1,40],[-3,44],[-1,32],[0,12],[1,7],[1,4],[0,11],[-1,10],[-1,-5],[0,20],[1,13],[2,-1],[1,2],[1,15],[-1,23],[0,11],[0,19],[4,13],[2,8],[2,18],[3,25],[1,21],[0,-16],[2,25],[1,29],[1,20],[1,20],[1,46],[0,20],[1,-4],[-1,27],[-1,22],[-3,48],[3,45],[4,42],[3,21],[2,7],[3,17],[2,7],[2,16],[1,15],[1,-7],[1,7],[0,20],[0,2],[0,11],[0,10],[0,16],[1,12],[0,-7],[2,-17],[0,-12],[1,-10],[1,-9],[0,22],[-1,23],[-2,16],[-1,20],[2,22],[2,20],[2,20],[1,2],[1,0],[2,-13],[2,-9],[1,2],[2,1],[2,18],[2,23],[0,22],[1,-5],[1,-4],[1,-13],[0,-14],[1,3],[0,18],[2,-10],[2,-4],[1,2],[1,-5],[1,-14],[4,-9],[2,-15],[1,-11],[1,-4],[0,7],[3,-17],[2,-7],[3,5],[2,10],[3,-1],[0,-2],[1,1],[1,-8],[2,5],[2,2],[2,2],[1,-6],[2,4],[0,3],[1,0],[0,22],[1,22],[0,29],[-1,24],[1,6],[2,8],[0,18],[-1,-4],[0,-9],[-1,6],[-2,13],[-2,20],[-1,13],[-1,18],[-3,23],[-2,17],[-2,13],[-2,7],[-3,12],[-1,-2],[-2,-9],[-2,-10],[-4,-10],[0,2],[-1,-2],[-2,1],[-2,27],[-2,36],[-2,26],[-1,14],[-1,23],[-1,1],[-2,-1],[-2,-3],[-3,-1],[-1,-4],[-1,-9],[-2,15],[1,22],[1,19],[2,13],[1,17],[-1,-2],[-2,-6],[-2,-14],[-1,-11],[-1,5],[-1,9],[-1,3],[-2,10],[-3,18],[-2,-1],[-1,-16],[0,-22],[0,-21],[-2,-12],[1,-2],[1,-4],[1,5],[2,5],[-1,-16],[-2,-17],[-1,-10],[0,-3],[-1,-16],[0,-13],[0,-8],[-1,10],[-1,20],[-1,16],[-1,15],[-2,19],[0,22],[-2,34],[-3,40],[-2,10],[-1,-19],[-1,15],[-2,9],[-1,9],[-1,14],[0,15],[-1,15],[-1,5],[-1,-17],[-1,5],[-2,15],[1,13],[-1,8],[-2,6],[-2,0],[-3,1],[-1,9],[-1,-3],[-4,2],[-4,-4],[-5,-7],[-3,-4],[-1,9],[-1,4],[1,-14],[0,-15],[-4,-4],[-6,-5],[-6,6],[-3,-13],[-4,-11],[-3,-4],[-3,5],[-7,-25],[-18,-29],[-9,-20],[-19,-67],[-3,-18],[-3,-9],[-2,-15],[-4,-21],[0,-24],[-1,-4],[-2,-1],[-3,6],[-4,2],[-3,-6],[-4,4],[-4,-3],[-3,1],[-4,3],[-4,-1],[-1,1],[-4,-4],[-3,-10],[-2,-5],[-3,-13],[-2,-8],[-2,-6],[-2,-5],[-1,2],[-3,-1],[-1,4],[-7,-18],[-8,34],[-1,30],[0,14],[4,7],[1,11],[-11,57],[-1,4],[-1,-8],[-3,-2],[-2,-2],[0,17],[-3,3],[-3,2],[-1,-4],[-3,17],[-1,5],[-1,0],[-5,17],[-2,7],[-2,15],[0,1],[-1,-8],[0,-20],[6,-42],[-1,-41],[1,-29],[-1,-65],[-6,28],[-3,55],[-3,10],[-4,17],[-2,11],[-1,7],[0,16],[0,2],[1,3],[1,0],[1,15],[0,11],[-2,6],[-1,4],[-2,8],[-1,35],[-4,6],[-5,26],[0,34],[2,18],[-1,18],[-1,-2],[-3,0],[-2,-7],[-3,-10],[-1,-6],[-2,4],[1,8],[2,16],[-1,0],[-3,-1],[-6,-26],[-1,4],[-14,-34],[-16,-36],[-5,-6],[-1,24],[1,12],[5,7],[0,1],[1,4],[0,7],[-5,-3],[-3,-11],[-4,-19],[-4,-18],[-1,-9],[0,-1],[0,-13],[1,-8],[1,0],[1,5],[0,14],[1,14],[1,-8],[1,-4],[-1,-10],[-1,-11],[-1,-11],[1,-13],[1,-4],[1,-2],[4,-14],[2,0],[1,5],[1,8],[1,-14],[1,-9],[3,-9],[1,-10],[2,4],[1,-2],[1,3],[1,16],[1,2],[1,-13],[1,-12],[1,0],[1,0],[5,-67],[0,-13],[-2,-15],[-3,-4],[-1,2],[-1,2],[-2,4],[0,4],[-1,7],[-2,5],[-3,8],[-3,18],[-5,19],[-12,43],[-8,24],[-16,31],[-19,73],[-2,0],[-3,5],[-6,11],[-3,11],[-2,10],[-5,5],[-6,8],[-5,9],[-2,4],[-6,6],[-4,10],[-5,5],[-4,6],[-3,7],[-2,8],[-5,9],[-5,11],[-5,10],[-2,8],[-8,20],[-12,36],[-15,30],[-13,14],[-10,11],[-5,12],[-8,2],[-16,44],[-15,84],[-2,49],[1,129],[0,234],[-1,28],[-2,65],[-1,69],[-6,199],[-1,21],[-1,33],[-2,61],[-7,176],[-2,48],[1,8],[-1,26],[0,7],[0,12],[0,7],[2,11],[0,8],[-1,11],[3,8],[0,6],[0,18],[1,13],[1,10],[1,14],[1,1],[1,4],[1,11],[2,14],[0,13],[1,16],[2,-1],[2,-3],[2,-2],[-1,7],[-2,8],[-2,7],[-1,11],[0,21],[-1,24],[-3,23],[-4,14],[-1,16],[-2,6],[-3,6],[-2,14],[-3,6],[-3,-8],[-3,-11],[-1,-10],[0,-17],[2,-12],[0,-14],[0,-21],[1,-20],[3,-51],[2,-61],[3,-63],[1,-10],[0,-19],[1,-10],[0,-12],[0,-13],[0,-13],[-1,-5],[-5,124],[-3,82],[-7,139],[-7,123],[-5,71],[-3,49],[-2,42],[-8,121],[-5,81],[-2,49],[-2,32],[-2,25],[-1,9],[-2,27],[-7,75],[-4,63],[-4,50],[-2,24],[-3,33],[-9,79],[-4,26],[-2,18],[-9,53],[0,4],[-7,40],[-1,6],[-1,5],[-8,36],[-1,2],[-1,6],[0,3],[-1,5],[-8,37],[0,2],[-1,5],[-6,23],[-2,9],[-7,36],[-2,10],[-4,20],[-3,9],[0,6],[-10,43],[-1,8],[-2,6],[-5,24],[-2,10],[-2,8],[-1,4],[-4,26],[-3,14],[-1,5],[-2,13],[-1,5],[-4,13],[-3,13],[-1,9],[0,2],[1,3],[1,-5],[1,1],[0,5],[1,7],[1,3],[1,-1],[2,-1],[2,-8],[0,1],[1,13],[0,4],[-3,10],[-1,9],[0,15],[-4,1],[-2,0],[-2,0],[-4,32],[-5,21],[-3,28],[-1,25],[-1,16],[-9,32],[-2,10],[0,13],[0,14],[-1,18],[-3,21],[-3,17],[-1,11],[2,16],[1,13],[1,8],[-3,6],[-4,1],[-2,5],[-1,12],[-2,10],[-3,9],[-3,4],[-1,12],[2,15],[1,18],[0,20],[0,14],[-5,27],[-4,17],[-2,19],[-1,13],[-1,7],[-3,-1],[-4,-9],[-2,-13],[-2,-10],[1,-20],[2,-15],[0,-13],[0,-11],[1,-15],[3,-13],[2,-17],[1,-12],[1,-8],[2,-7],[2,-13],[1,-12],[6,-36],[1,-6],[2,-8],[1,-16],[-1,-8],[-1,10],[-2,9],[-1,7],[-3,20],[-1,10],[-6,38],[-1,6],[-6,42],[-2,17],[-5,32],[-4,29],[-1,11],[-1,6],[-1,5],[-3,23],[-1,5],[-2,15],[-2,13],[2,2],[2,-16],[3,-11],[-4,35],[-3,18],[-1,2],[1,-15],[-1,-8],[-3,19],[-4,22],[-4,27],[-4,26],[-5,25],[-3,14],[-2,16],[-1,12],[-2,5],[-4,34],[-6,32],[-3,22],[-2,10],[-3,25],[-3,19],[-2,8],[-4,31],[-6,39],[-7,48],[-14,52],[-6,47],[-11,73],[-3,33],[-3,30],[-3,13],[-1,16],[1,3],[2,-10],[1,19],[-2,21],[-3,16],[-3,21],[-1,6],[-17,57],[-3,15],[-4,30],[-5,25],[-3,12]],[[2873,58747],[-1,-16],[-2,2],[0,27],[2,24],[2,0],[0,-6],[-1,-31]],[[2883,58809],[-2,-16],[-4,11],[0,19],[2,8],[4,12],[1,-25],[-1,-9]],[[2303,60564],[-3,-6],[-3,1],[1,12],[2,4],[0,29],[1,-2],[2,-15],[0,-23]],[[4783,60594],[0,-7],[-1,1],[-1,15],[1,7],[1,-4],[0,-12]],[[2310,60629],[-4,-38],[-1,1],[1,25],[2,30],[1,3],[1,-21]],[[4766,60688],[0,-16],[-1,-14],[-1,6],[-1,9],[1,12],[1,3],[0,-3],[1,3]],[[4777,60857],[0,-3],[-2,0],[0,10],[1,2],[1,-9]],[[2276,61231],[-1,-1],[-2,5],[-1,8],[-1,8],[-1,10],[3,0],[4,-9],[2,-5],[-1,-9],[-2,-7]],[[4848,61415],[0,-10],[-1,1],[-1,2],[-1,12],[1,11],[1,1],[1,-6],[0,-11]],[[2179,61511],[6,-12],[2,-6],[2,-13],[-1,-6],[-1,-3],[-1,4],[-2,10],[-2,5],[-1,3],[-2,2],[-1,-1],[-1,5],[-2,10],[-1,1],[-2,-6],[-1,-2],[-2,0],[-1,-10],[0,-2],[-1,-3],[-2,8],[0,9],[1,8],[2,6],[1,2],[3,4],[7,-13]],[[4659,61569],[1,-5],[1,4],[2,-2],[1,-5],[1,-3],[1,-4],[1,-11],[1,-4],[1,0],[1,-2],[1,-10],[1,-1],[0,1],[1,-7],[2,-2],[1,-5],[-1,-18],[-1,-2],[-1,0],[1,-25],[1,-17],[-1,-9],[0,-14],[3,-8],[1,-6],[1,-13],[1,-18],[2,-19],[1,-9],[1,-6],[-1,-9],[-2,-4],[-1,-6],[0,-15],[-1,-10],[-1,-5],[0,-17],[1,-15],[2,-11],[-2,-8],[-1,-3],[-1,-18],[0,-25],[1,-26],[2,-18],[1,-9],[1,0],[1,-3],[0,-14],[-1,-15],[-1,-11],[0,-11],[-1,-10],[-2,-1],[-1,4],[-1,6],[-1,1],[-1,5],[-1,2],[-1,11],[-1,17],[1,19],[0,13],[-1,8],[-3,8],[-2,0],[-1,-4],[-1,-3],[0,-14],[0,-12],[-1,-4],[0,-3],[-2,-15],[-1,-9],[-1,-6],[-1,1],[-1,-4],[0,-6],[-2,-4],[-1,6],[-2,12],[-1,-1],[-2,14],[-3,2],[-1,-2],[-1,-3],[-1,-13],[0,-11],[-4,4],[-1,1],[-2,-10],[-2,-6],[-1,-2],[-1,4],[0,11],[0,12],[-2,10],[-1,2],[-2,-1],[-2,-8],[0,-2],[-1,-21],[-1,0],[-1,-3],[0,-5],[-1,-9],[-1,13],[0,5],[-2,-8],[-1,6],[-1,9],[-2,0],[-1,-7],[-1,-9],[-1,0],[-1,6],[-1,5],[-2,-3],[-1,6],[-2,21],[-2,22],[-1,8],[-1,12],[-1,8],[0,4],[-2,3],[-1,-2],[-1,2],[-1,-10],[-1,1],[-1,0],[-2,-3],[-1,3],[-1,10],[-1,5],[-1,8],[1,8],[1,8],[-1,9],[0,9],[1,9],[1,17],[-3,12],[-3,3],[-1,-4],[0,-1],[-1,2],[-1,12],[-1,7],[1,11],[1,0],[1,-6],[1,-2],[1,4],[1,11],[2,9],[1,5],[1,19],[-1,10],[1,10],[1,4],[1,5],[1,8],[0,-2],[2,4],[1,11],[1,6],[1,0],[1,8],[1,18],[1,8],[-1,9],[0,8],[1,11],[2,10],[1,1],[1,10],[1,19],[1,5],[1,-5],[0,-11],[0,-9],[1,-8],[1,-11],[0,-13],[1,-9],[2,-3],[2,2],[0,12],[0,18],[0,25],[1,13],[-1,5],[0,10],[1,0],[1,4],[2,2],[0,9],[1,6],[1,8],[0,14],[2,3],[1,-3],[1,-6],[1,8],[1,7],[1,-1],[0,-4],[1,-7],[2,1],[1,-8],[1,-9],[2,-4],[1,4],[0,4],[1,-10],[0,-16],[2,-9],[0,-1],[1,3],[1,-7],[5,-9],[6,3],[4,6],[2,16],[2,25],[-1,11],[0,13],[0,7],[1,-4]],[[2163,61545],[1,-4],[1,-18],[-1,-9],[-1,16],[-1,5],[-1,-4],[-1,-2],[-1,7],[-1,6],[-1,-7],[0,3],[-1,18],[-3,14],[-2,11],[4,-7],[3,-10],[2,-6],[1,-6],[2,-7]],[[2085,62295],[0,-15],[1,-17],[1,-9],[1,-2],[1,-4],[1,-6],[1,-13],[0,-33],[1,-22],[0,-44],[-1,-23],[-1,-13],[-1,-5],[-1,-11],[0,-12],[1,-7],[0,-13],[1,-15],[-1,-16],[0,-17],[0,-25],[0,-20],[0,-16],[-1,-10],[0,-17],[1,-16],[1,-15],[1,-8],[0,-13],[0,-17],[-1,-17],[0,-13],[2,0],[1,5],[1,10],[2,-17],[4,-24],[8,-38],[5,-24],[2,-7],[2,-5],[2,-8],[2,-7],[1,-7],[-1,-6],[1,-4],[2,1],[11,-39],[9,-32],[5,-21],[-1,-6],[-2,-4],[-1,1],[-2,12],[-2,14],[-1,8],[-3,6],[-1,1],[-2,-3],[-1,-13],[-2,-21],[-2,-13],[-1,-10],[-1,-11],[-2,-5],[-2,1],[-1,-20],[0,-16],[1,-17],[1,-14],[1,-17],[2,-14],[2,-10],[1,-7],[-1,-13],[0,-12],[1,-12],[1,-11],[1,-5],[1,-8],[1,-10],[1,4],[1,8],[1,13],[1,9],[2,-5],[3,-4],[1,0],[1,5],[2,9],[5,-4],[4,-5],[3,-5],[3,6],[1,9],[2,7],[2,-3],[1,0],[2,-1],[4,-3],[2,8],[1,7],[2,7],[1,14],[1,-3],[1,0],[2,6],[2,7],[0,4],[1,5],[3,-2],[1,0],[2,-1],[1,1],[-1,18],[0,1],[3,-8],[1,-8],[2,-2],[1,0],[1,5],[1,5],[3,-6],[2,-6],[2,-12],[4,-16],[2,-5],[26,-62],[13,-36],[0,-18],[-14,36],[-6,-2],[-6,21],[-6,21],[-1,-1],[-3,-32],[-2,-40],[7,16],[2,9],[10,-19],[6,1],[2,-27],[0,-37],[4,-22],[0,36],[6,11],[5,2],[4,8],[2,-5],[4,-7],[1,-6],[0,-15],[1,-12],[1,-7],[2,-10],[1,-7],[2,-6],[1,-1],[2,0],[2,3],[2,1],[2,0],[1,13],[1,4],[0,-2],[1,-10],[1,2],[1,7],[2,0],[3,2],[1,3],[0,9],[0,9],[1,11],[2,7],[1,12],[1,20],[2,21],[3,3],[3,5],[3,11],[1,20],[2,14],[2,9],[1,18],[1,2],[2,20],[2,5],[3,6],[1,8],[1,16],[2,17],[2,17],[4,18],[3,11],[1,9],[1,12],[2,7],[2,23],[3,37],[6,14],[6,14],[1,13],[3,20],[3,21],[0,1],[0,25],[3,13],[2,0],[1,-12],[1,-24],[4,3],[4,0],[3,6],[1,0],[2,0],[2,10],[4,6],[1,3],[1,1],[2,1],[1,20],[1,30],[-1,28],[0,6],[4,12],[2,9],[1,8],[2,6],[0,9],[1,6],[3,13],[3,5],[1,3],[5,-25],[8,-23],[5,-15],[3,16],[1,1],[3,-12],[3,-13],[6,5],[1,-5],[1,31],[2,-3],[3,-15],[4,0],[3,-13],[5,9],[3,-51],[3,-14],[2,-31],[5,-22],[7,-29],[1,-20],[1,-38],[1,-24],[2,-16],[1,-7],[1,-9],[2,-18],[1,-21],[2,-13],[4,-18],[4,-12],[4,0],[2,-2],[2,0],[2,-6],[1,-3],[2,-6],[-1,-13],[-1,-11],[0,-10],[0,-11],[2,-15],[1,-8],[0,-15],[1,-9],[1,-5],[1,-8],[1,-20],[0,-17],[-1,-17],[1,-22],[1,-22],[1,-30],[1,-17],[1,-13],[1,-9],[1,-14],[0,-14],[-1,-16],[-1,-5],[-1,-2],[-1,-11],[1,-13],[1,-16],[1,-12],[2,-20],[0,-18],[1,-15],[1,-10],[1,-8],[0,-24],[0,-19],[-1,-14],[-2,-10],[-1,-6],[-1,-7],[0,-5],[-3,-7],[0,-24],[4,-27],[0,-8],[1,-21],[-3,-5],[-5,-14],[-2,-29],[0,-34],[1,4],[4,49],[2,6],[2,6],[1,5],[1,-1],[0,-16],[1,-9],[-1,-13],[-1,-9],[0,-19],[1,-19],[1,-10],[-1,-10],[0,-9],[0,-15],[0,-6],[1,-5],[0,14],[0,12],[0,9],[1,7],[-1,10],[0,11],[-1,12],[1,11],[1,3],[2,2],[1,3],[-4,31],[1,10],[3,-18],[1,-3],[2,-13],[3,-13],[2,-6],[3,-3],[3,-8],[2,-7],[1,0],[1,3],[1,7],[3,-12],[1,-8],[2,1],[1,3],[1,-9],[1,-12],[1,-6],[3,-8],[1,-3],[0,-5],[2,-16],[1,-9],[2,-4],[2,-3],[1,-16],[1,-15],[3,-16],[18,-31],[14,-20],[1,6],[2,-10],[-2,-7],[0,-8],[-5,14],[-12,10],[-7,16],[-1,-1],[0,-12],[2,-14],[4,-15],[4,5],[0,-32],[1,-6],[2,14],[5,14],[2,0],[5,-16],[4,14],[1,11],[0,6],[5,-4],[7,-4],[4,-2],[5,-2],[3,-6],[1,-4],[1,-12],[1,-14],[2,-21],[4,-14],[3,-21],[4,-26],[3,-16],[1,-6],[1,-2],[1,-12],[1,-25],[-1,-25],[1,-16],[1,-16],[1,-15],[-1,-2],[-1,3],[-1,-4],[0,-23],[1,-15],[1,-10],[0,-10],[1,-18],[0,-9],[2,-9],[3,1],[2,4],[1,1],[1,-3],[1,-10],[0,-6],[2,-2],[1,3],[1,-5],[0,-12],[0,-10],[2,-11],[2,0],[2,3],[1,-8],[2,-16],[1,-3],[3,3],[1,4],[1,1],[1,2],[1,-7],[1,-2],[3,1],[3,1],[1,3],[2,5],[1,7],[1,8],[0,7],[-13,8],[-19,50],[-1,-1],[-1,7],[-1,6],[0,6],[-4,16],[-1,1],[-1,7],[-1,9],[0,14],[0,6],[5,-30],[18,-57],[4,-3],[3,-9],[-1,0],[2,-4],[8,-8],[-1,1],[3,3],[2,-2],[2,4],[2,2],[5,-5],[4,-6],[3,0],[2,0],[3,-5],[3,-1],[2,-3],[2,-10],[5,-11],[1,-3],[2,-7],[0,-9],[1,-4],[1,0],[0,-12],[2,-15],[1,-5],[2,-4],[0,-25],[2,-17],[3,-9],[-1,-42],[1,-44],[4,-37],[5,-6],[2,-18],[7,0],[8,-8],[4,8],[3,6],[4,22],[2,25],[2,27],[-5,36],[-7,19],[-7,5],[-5,3],[-3,19],[-1,13],[-3,8],[-4,-20],[-4,-12],[-3,12],[-2,11],[0,10],[0,20],[-2,9],[-2,6],[-1,13],[17,-11],[26,-15],[1,3],[3,11],[5,4],[5,7],[5,-3],[3,-4],[2,2],[1,6],[2,5],[1,-4],[0,-11],[1,-8],[3,-9],[1,-1],[6,-16],[0,-11],[-2,-13],[1,-19],[3,12],[2,24],[2,3],[0,-20],[2,-1],[2,-6],[2,-2],[4,3],[3,5],[3,8],[1,-2],[3,-19],[2,-19],[3,-12],[1,-8],[4,-8],[4,-22],[6,-20],[4,-7],[2,1],[2,2],[1,2],[2,-13],[3,-3],[1,-2],[1,4],[1,1],[2,-9],[1,-10],[2,-4],[3,2],[2,1],[2,2],[0,-10],[1,-13],[1,-9],[-1,-16],[-1,-11],[-2,-11],[-1,-17],[0,-15],[0,-12],[-1,-6],[-1,-9],[-2,8],[-3,-8],[-1,-37],[-1,-27],[2,-2],[1,3],[1,24],[1,14],[-1,-35],[0,-12],[0,-15],[1,-15],[0,-13],[-1,-36],[-1,-31],[1,-25],[-1,-30],[-3,-15],[-1,-8],[-1,-5],[-1,-5],[-2,-17],[0,-9],[-2,-33],[-2,-34],[-2,-51],[-2,-24],[0,-18],[-2,-9],[0,-9],[-3,-28],[-1,-11],[-2,-25],[-2,-22],[-6,-45],[-4,-25],[-2,-5],[-2,-5],[-1,-5],[-5,8],[-6,27],[-2,5],[-6,20],[-3,14],[-3,20],[-1,10],[-5,13],[-17,34],[-17,11],[-7,3],[-2,-1],[-6,-15],[-41,-78],[-19,-66],[1,19],[19,87],[8,23],[9,14],[11,20],[12,7],[3,2],[0,42],[-5,32],[-15,4],[-24,-63],[-4,-36],[-2,32],[-2,-24],[0,-34],[-13,-93],[-1,-38],[-1,-14],[-2,-22],[-1,13],[-1,-6],[-2,44],[-3,4],[0,-22],[0,-21],[4,-46],[2,-22],[-2,-12],[-3,-15],[-3,-28],[-1,-38],[-4,-13],[-3,-43],[-4,9],[0,-2],[-7,-35],[-5,-34],[-6,-51],[-3,-38],[-2,-30],[-1,-12],[0,-9],[-2,-7],[0,-11],[-1,-16],[-1,-29],[-1,-36],[-1,-47],[2,-24],[1,-27],[0,-16],[1,-7],[1,-11],[0,-8],[1,-13],[0,-13],[1,-4],[1,5],[1,4],[1,-5],[-1,-17],[0,-20],[0,-20],[1,-14],[1,-13],[2,-13],[1,-6],[0,-14],[-1,-10],[-2,0],[-4,0],[-4,-3],[-2,-2],[-2,-11],[-3,-4],[-2,-4],[-2,-8],[-2,-16],[-1,-15],[0,-12],[-1,-13],[-1,-7],[-1,-7],[-1,-19],[1,-22],[-1,-20],[-1,-12],[-1,-19],[-4,11],[-2,8],[-1,10],[-1,6],[-1,5],[-2,6],[-2,16],[-2,8],[0,3],[-1,-1],[-1,-7],[-3,1],[-1,2],[-1,-1],[-2,7],[-2,8],[-2,3],[-2,3],[-1,10],[-2,10],[0,18],[4,32],[2,27],[-2,37],[-1,30],[-3,21],[-4,43],[1,10],[5,11],[5,-11],[3,0],[1,22],[2,23],[1,28],[0,17],[1,14],[-1,13],[1,19],[0,27],[-1,28],[-1,12],[0,11],[-1,11],[1,5],[-1,8],[-2,4],[-1,-5],[-1,-11],[0,-15],[-1,-3],[0,10],[-1,1],[-1,2],[-1,11],[-1,12],[-1,9],[-1,3],[-1,-2],[-1,-2],[0,15],[-1,6],[-1,4],[0,28],[1,13],[0,17],[0,15],[-1,17],[0,11],[-1,12],[-2,6],[-1,8],[-1,27],[0,16],[-1,17],[-2,13],[-2,9],[-1,6],[-2,7],[0,12],[0,16],[0,12],[1,7],[0,10],[-1,-5],[-1,-4],[0,-4],[0,-13],[-1,-6],[-1,6],[0,14],[-1,5],[-1,5],[-1,-4],[-2,3],[-1,6],[-1,6],[-1,3],[-1,2],[-1,18],[0,12],[0,22],[-1,10],[-1,6],[-2,10],[-2,11],[-1,13],[-1,7],[-1,3],[-1,-2],[-1,2],[-1,12],[-1,9],[-1,1],[-1,-4],[-2,-8],[-1,-8],[-1,3],[-1,10],[-1,-2],[-3,-9],[-1,-4],[0,-7],[0,-10],[2,-16],[13,-106],[4,-17],[5,-41],[1,-15],[3,-28],[3,-23],[3,-33],[1,-23],[1,-17],[1,-8],[1,-20],[2,-28],[1,-7],[1,-30],[2,-10],[0,-7],[3,-50],[2,-54],[1,-10],[1,-9],[1,-9],[0,-15],[-1,-6],[0,10],[-1,-17],[0,-30],[0,-8],[0,23],[0,21],[-1,26],[-4,85],[-2,35],[-1,14],[-2,27],[-2,30],[-2,33],[-2,37],[-3,29],[-3,38],[-5,36],[-4,39],[-4,19],[-7,54],[-8,64],[-5,39],[-1,3],[-2,0],[-2,-1],[-3,2],[-2,5],[-2,15],[-1,8],[-1,2],[-2,14],[-1,16],[-2,16],[-2,13],[-1,10],[-1,20],[0,7],[-3,5],[-1,13],[-2,3],[-3,11],[-1,2],[-2,4],[-7,17],[0,6],[5,-9],[3,-4],[0,13],[-2,22],[1,11],[1,11],[0,9],[-1,1],[-2,-10],[-7,-19],[-4,-6],[-2,-5],[-4,-8],[0,-10],[0,-5],[2,-18],[-1,-8],[-6,13],[-1,-2],[-2,6],[-3,10],[-2,-8],[-10,31],[-6,16],[0,7],[5,-1],[-1,22],[-3,-5],[1,15],[1,5],[4,42],[1,-15],[-2,-41],[4,-14],[2,39],[2,32],[-5,-1],[1,19],[0,3],[1,35],[2,14],[2,25],[-2,49],[-1,54],[-1,25],[0,38],[-2,76],[-6,36],[-11,36],[-5,7],[-4,28],[-4,49],[-2,20],[-1,42],[-7,34],[-8,28],[-2,25],[-4,29],[-12,78],[-8,35],[-12,30],[-9,89],[-3,34],[-3,-9],[-2,-16],[-3,5],[-6,-22],[-4,27],[-4,22],[1,68],[-2,23],[-3,-11],[0,-52],[-10,42],[-15,-5],[-4,5],[-9,50],[-2,47],[-5,14],[-2,30],[1,40],[-2,42],[-3,10],[-2,-11],[-2,-20],[-3,-19],[-1,-4],[-1,-11],[-1,23],[-1,18],[-1,-17],[-2,-56],[-1,0],[-1,1],[-1,-6],[0,15],[1,14],[2,29],[-1,13],[-1,-4],[-2,-6],[-1,-25],[0,-19],[0,-21],[-1,3],[-4,13],[-2,-14],[-10,-15],[-3,19],[-9,-19],[-6,10],[-5,-19],[-5,-22],[0,-10],[39,10],[8,-10],[19,-38],[20,-69],[26,-81],[11,-42],[8,-30],[2,-5],[16,-58],[5,14],[1,-25],[21,-132],[5,0],[1,-28],[1,-15],[21,-151],[2,-38],[2,-8],[1,-32],[2,-25],[4,-50],[2,-40],[4,-62],[5,-29],[-1,-69],[2,-28],[1,-50],[0,-50],[-2,-32],[-2,-1],[-1,3],[0,22],[2,11],[2,13],[0,16],[0,24],[0,18],[-1,22],[-1,14],[0,18],[-1,12],[-2,37],[-2,45],[-5,70],[-4,67],[-5,60],[-3,36],[-4,31],[-14,111],[-7,37],[-16,100],[-13,65],[-25,90],[-8,26],[-5,20],[-5,17],[-3,9],[-6,21],[-2,13],[-2,6],[-2,6],[-48,119],[-38,9],[-12,-19],[-8,-43],[0,-2],[-2,-11],[-2,-25],[-4,-10],[-3,-7],[-3,-4],[-2,-11],[-3,-5],[-5,-8],[-3,-8],[-1,-9],[-1,-6],[-5,-18],[-3,-19],[-2,-28],[0,-26],[0,-20],[1,-5],[1,-5],[1,-8],[0,-16],[-2,-11],[-2,-10],[-1,-17],[-1,-13],[-1,-8],[-2,-4],[-2,-20],[-1,-15],[2,-31],[-1,-5],[-1,8],[-2,6],[-2,0],[-2,-2],[-2,-2],[-3,-13],[-3,-6],[-2,-10],[-2,-15],[-2,-9],[-2,-13],[-2,-17],[-2,-14],[-2,-13],[-1,-3],[-1,-10],[-2,-11],[-1,-3],[-1,1],[-2,6],[-1,-2],[-1,-3],[-1,2],[-1,-4],[-2,13],[-1,26],[-1,13],[-1,9],[-2,6],[-1,8],[-2,9],[-3,12],[-2,-3],[-1,-7],[-1,-10],[-1,4],[-2,-4],[-1,-7],[-2,-6],[0,-7],[-1,0],[-1,5],[-2,6],[0,14],[-1,16],[0,17],[0,28],[-1,13],[-1,3],[-1,8],[1,11],[-1,16],[-2,-6],[0,-10],[1,-7],[-1,-10],[-1,-9],[-1,2],[-1,-1],[-1,-2],[-2,3],[-1,7],[-1,15],[-1,9],[-2,2],[-1,-3],[-2,-3],[0,5],[-1,14],[-1,8],[-1,2],[-2,-1],[-1,5],[-1,14],[-2,10],[-1,5],[-1,-6],[-1,-1],[-2,10],[-1,2],[-1,0],[-1,4],[-1,8],[-1,11],[-1,7],[-1,11],[-3,5],[-2,3],[-1,-3],[-2,-3],[-1,3],[-1,14],[0,14],[-2,31],[-1,30],[-1,17],[0,15],[-1,11],[-1,16],[-1,14],[-1,16],[-2,8],[-1,3],[-3,8],[-1,10],[0,10],[0,21],[0,14],[-3,31],[-1,14],[-1,8],[-1,13],[0,20],[-2,10],[0,15],[0,16],[1,13],[-1,14],[0,20],[1,28],[-1,25],[-1,15],[-2,6],[-1,12],[0,34],[-1,29],[-2,19],[2,22],[1,22],[-1,10],[0,19],[-1,33],[1,20],[1,13],[1,8],[1,20],[0,13],[0,10],[-1,18],[0,22],[0,19],[-1,14],[-1,19],[1,24],[0,14],[-1,14],[1,16],[1,20],[1,55],[-1,29],[1,12],[0,12],[1,7],[1,6],[2,15],[0,16],[0,12],[1,-2],[1,-4],[2,3],[1,20],[0,27],[0,25],[1,23],[1,16],[0,25],[0,22],[-2,7],[0,11],[1,8],[1,15],[1,7],[1,-1],[1,-5],[1,6],[0,10],[1,11],[1,-1],[2,-5],[1,3],[1,10],[1,11],[1,34],[2,27],[0,30],[0,23],[0,12],[-2,17],[0,23],[0,21],[0,13],[-1,11],[-1,8],[0,15],[1,21],[-1,30],[3,48],[1,18],[1,14],[2,27],[1,30],[1,28],[-1,47],[-1,32],[-1,30],[0,30],[-1,62],[-1,28],[0,20],[1,4],[2,-1],[2,-4],[4,-5],[4,-1],[1,8],[1,9],[2,11],[2,2],[1,-4],[1,-7],[1,-16]],[[4973,63936],[-1,0],[-2,2],[-1,4],[-1,7],[-1,20],[0,21],[1,17],[0,21],[1,22],[1,14],[1,9],[1,3],[2,-2],[1,-4],[1,-2],[-2,-14],[-1,-22],[0,-26],[1,-21],[0,-17],[0,-17],[0,-12],[-1,-3]],[[4979,65345],[-1,-32],[-5,20],[-1,3],[0,2],[-2,4],[-1,5],[1,12],[2,1],[0,1],[4,-9],[3,-7]],[[3607,65838],[1,-15],[-2,-43],[1,-23],[-2,-32],[-3,-4],[0,27],[-1,17],[-2,21],[0,25],[1,17],[0,3],[2,-2],[3,4],[2,5]],[[5052,67993],[1,-11],[0,-15],[-1,-20],[-1,-10],[-1,-7],[-1,-10],[-1,-6],[-1,-3],[0,14],[1,14],[1,0],[0,23],[-1,16],[1,12],[1,5],[2,-2]],[[3089,68267],[3,-10],[3,1],[2,8],[2,-1],[0,-16],[-1,-20],[0,-18],[1,-20],[1,-5],[1,-8],[-2,-24],[-2,-12],[-4,0],[-7,-11],[-3,-11],[-4,6],[-1,7],[-1,19],[-1,24],[0,23],[0,23],[3,9],[8,37],[2,-1]],[[2898,71418],[-1,-2],[-1,5],[-1,9],[1,12],[1,2],[1,-4],[1,-9],[-1,-13]],[[2855,71995],[-1,-6],[-2,-2],[-1,4],[-2,-1],[-2,-2],[-1,4],[-2,18],[-3,23],[0,10],[-1,29],[0,12],[1,12],[1,17],[3,18],[3,10],[3,7],[2,-1],[1,-3],[1,-17],[-1,-42],[0,-13],[1,-16],[1,-19],[1,-17],[-1,-11],[-1,-14]],[[3181,72139],[0,-17],[-2,-10],[-2,15],[-2,4],[-3,-9],[-1,-12],[-3,-13],[-3,-22],[-3,-7],[-1,-18],[-1,-25],[-1,-9],[-1,-17],[-3,-11],[-3,-11],[-3,-8],[-3,2],[-1,12],[1,11],[1,15],[3,15],[3,23],[2,31],[2,21],[1,14],[19,63],[3,10],[2,-4],[0,-22],[-1,-21]],[[3231,72360],[-1,-17],[0,-8],[-2,14],[-1,-20],[-3,-13],[-5,-8],[-1,-10],[-3,-24],[-4,-1],[-3,-6],[-4,-18],[-4,-18],[0,-61],[-3,-20],[2,-19],[0,-4],[1,-8],[-2,-22],[-1,-53],[-1,1],[-1,-26],[-1,-28],[-4,2],[-3,-19],[-8,23],[-1,22],[2,11],[0,19],[4,-7],[3,29],[1,31],[-1,16],[-3,1],[-1,2],[0,11],[0,41],[2,40],[6,16],[27,106],[3,16],[7,27],[2,8],[1,-4],[1,-8],[-1,-14]],[[3436,73443],[0,-7],[-2,21],[0,24],[2,12],[4,-3],[0,-22],[-2,-16],[0,-2],[-2,-7]],[[3425,73431],[-1,-5],[-3,1],[-1,-12],[-1,-10],[-1,-10],[-1,-5],[-2,-7],[-1,-5],[-1,0],[-1,0],[-1,-10],[0,-9],[-1,-8],[-1,-13],[-1,-3],[-1,4],[0,4],[-1,-5],[1,-14],[-1,-14],[-2,-9],[-2,-7],[-2,-3],[-3,-1],[-1,-9],[-1,-15],[-3,-42],[-1,-15],[-2,-3],[-8,-2],[-2,-20],[-1,-11],[-1,-10],[-1,-14],[-4,-24],[-2,-17],[-5,-13],[-5,-17],[-5,-36],[-4,-26],[-2,-25],[-1,-14],[1,-7],[1,5],[0,-9],[-3,-6],[-2,-1],[-4,3],[-3,-7],[-3,-18],[-3,-10],[-2,-22],[1,-5],[0,-14],[-3,-5],[-1,5],[-2,-13],[-2,-9],[2,-23],[-2,-16],[-2,-2],[-1,6],[-1,18],[-1,2],[-1,-16],[-1,-16],[-1,7],[1,13],[0,10],[3,22],[8,53],[12,72],[7,39],[18,101],[28,149],[1,16],[2,11],[3,19],[4,20],[3,22],[4,22],[4,24],[3,20],[4,19],[12,70],[2,1],[1,-3],[0,-24],[-2,-1],[-2,-10],[-1,-5],[-1,-3],[-1,-3],[-1,-5],[-1,-9],[0,-12],[-1,-21]],[[3439,73528],[-1,-2],[-1,5],[0,9],[1,10],[7,44],[8,47],[14,76],[5,27],[3,3],[-1,-13],[0,-11],[-1,-11],[-2,-9],[-1,-5],[-1,-8],[-3,-20],[-3,-20],[-2,-18],[-1,-9],[-2,-10],[-1,-6],[-2,-4],[-2,-5],[-2,-7],[-3,-14],[-2,-10],[-2,-17],[-2,-12],[-1,-8],[-1,0],[-1,-2]],[[3792,74045],[-1,-7],[-1,8],[1,14],[0,1],[2,-4],[-1,-12]],[[3606,74308],[-1,-11],[-2,2],[-2,-7],[-2,-9],[-2,-7],[-2,-15],[-1,-8],[-1,-12],[-1,-16],[-1,-6],[-1,-6],[-1,-8],[1,-13],[0,-7],[-2,-2],[-2,8],[-2,19],[-1,7],[-2,-1],[-2,-5],[-1,-3],[0,-9],[-2,-10],[-2,-14],[-2,-15],[-3,-16],[-1,-11],[-2,-10],[-2,-10],[-6,-29],[-4,-12],[-3,-5],[-2,-1],[-4,-9],[-4,-12],[-2,-11],[-1,-9],[-3,-12],[-3,-3],[-2,-2],[-3,-2],[-1,-3],[-1,-11],[-2,-15],[1,-3],[1,6],[1,-3],[-1,-14],[-1,-9],[-2,-5],[-2,-3],[-1,3],[-2,4],[-1,-2],[-1,-16],[2,1],[2,-5],[-3,-10],[-1,-2],[-2,-4],[-1,-5],[-1,-13],[-2,-14],[-2,-7],[0,-6],[-1,-5],[-2,-1],[-1,-5],[-2,-15],[-1,-7],[-2,-3],[-1,13],[-2,3],[-1,-12],[-2,-15],[-2,-13],[-1,-10],[-2,-7],[-1,-11],[0,-17],[-1,-13],[-2,-5],[-1,-1],[-1,5],[-1,-9],[-1,-14],[-1,-5],[-1,13],[-1,12],[0,9],[30,172],[5,34],[10,51],[11,42],[9,41],[9,32],[10,44],[10,49],[8,40],[9,32],[8,34],[3,14],[9,16],[4,6],[2,1],[1,-1],[2,-5],[1,-16],[-1,-14],[-1,-5],[-3,-6],[-4,-6],[-2,-4]],[[3650,74364],[-2,-4],[-1,9],[0,23],[1,-1],[1,-4],[0,-14],[1,-9]],[[3660,74429],[-1,-15],[-3,9],[-2,30],[0,14],[3,2],[2,-19],[1,-21]],[[3653,74579],[1,-9],[1,-11],[-1,-11],[-2,-4],[-2,-2],[-3,-5],[-3,-5],[-3,-9],[-6,-51],[-6,-68],[-1,5],[-1,-10],[-1,-21],[-2,-17],[-1,-7],[-2,15],[-2,6],[-1,21],[0,17],[1,22],[7,42],[4,29],[6,30],[4,15],[2,9],[1,6],[2,7],[1,-1],[3,4],[2,8],[2,-5]],[[3701,74769],[-4,-3],[-2,-1],[-2,3],[-2,-8],[-1,-13],[-1,-18],[-1,-4],[-1,-9],[0,-6],[0,-11],[-2,-16],[-2,-19],[-1,-11],[-1,-12],[-1,-18],[-2,-21],[0,2],[-1,0],[-2,-6],[-1,-4],[-1,-4],[-3,-16],[-4,-11],[-1,-4],[0,-2],[-2,1],[-3,1],[-1,15],[-2,19],[0,21],[0,9],[12,60],[6,37],[2,10],[7,32],[10,52],[10,48],[7,32],[4,17],[2,8],[2,4],[1,-1],[0,-8],[0,-10],[-1,-1],[-2,-7],[-2,-7],[-2,-12],[-2,-3],[-1,-4],[-2,-25],[-2,-30],[-2,-23],[-1,-21],[-2,-2]],[[3746,75007],[0,-19],[0,-8],[-1,-2],[-2,0],[-2,3],[-1,6],[-1,5],[-2,-9],[0,-16],[0,-10],[-1,-13],[-2,-8],[-1,0],[-3,10],[-1,3],[-2,-8],[-2,-10],[-1,-6],[-1,-6],[-1,0],[0,14],[1,8],[2,9],[3,16],[1,7],[3,9],[3,13],[4,16],[2,6],[1,5],[1,4],[1,2],[1,-10],[1,-11]],[[3749,74987],[0,-1],[-2,16],[-1,21],[-1,12],[3,15],[5,20],[4,13],[3,16],[2,6],[2,5],[2,7],[0,-3],[0,-7],[0,-9],[0,-1],[0,-1],[-3,-45],[-6,-31],[-3,-17],[-2,-11],[-1,-3],[-2,-2]],[[3805,75272],[1,-4],[1,4],[0,-20],[1,-16],[-1,-6],[-3,-21],[-3,24],[-2,6],[-3,-40],[-5,-32],[-10,-5],[-2,-36],[-2,-40],[-1,2],[-3,39],[-2,-3],[-2,-23],[0,-1],[0,1],[-1,16],[-1,5],[3,14],[9,35],[7,28],[6,25],[6,28],[4,15],[2,5],[1,0]],[[4015,75951],[1,-13],[0,-17],[-1,0],[0,15],[-1,2],[-1,-8],[0,-22],[-1,-9],[-2,1],[-2,6],[-2,4],[-1,2],[-1,-5],[0,-14],[-1,-16],[0,-14],[0,-8],[-4,1],[-2,5],[-3,-3],[-1,-2],[-4,5],[-2,0],[-2,-2],[-1,-9],[1,-17],[0,-24],[-1,-27],[-2,-16],[-1,-9],[-1,-12],[-2,-6],[0,-5],[-3,-3],[-2,3],[0,7],[-2,4],[-3,3],[-3,0],[-1,-4],[-1,-8],[-1,3],[-1,5],[-1,0],[-1,-1],[1,-12],[-1,-11],[-1,-2],[-3,-5],[-2,-11],[-4,-12],[-3,-5],[-3,-7],[-2,-13],[-2,-4],[0,-13],[-1,-9],[-1,-3],[-1,0],[-2,-2],[-2,-5],[-2,-9],[-2,-8],[-1,-2],[-2,-3],[-1,-7],[-2,-3],[-3,3],[-1,4],[-1,1],[-2,0],[-2,2],[-1,-4],[-3,-3],[-1,4],[-2,-1],[1,-9],[-1,-6],[-2,-13],[-2,-12],[-3,-21],[-3,-15],[-2,-17],[-2,-15],[-4,-24],[-2,-10],[-4,0],[-5,-3],[-3,6],[0,-11],[-1,-10],[-1,1],[-1,5],[-1,-4],[0,-11],[-1,-6],[0,-9],[-1,-8],[-2,-3],[-1,1],[-2,1],[-1,-6],[1,-8],[-1,-5],[-1,-3],[-2,2],[-1,-2],[-2,10],[-1,6],[-2,8],[-2,12],[-2,-6],[-1,-23],[0,-13],[-2,-9],[-2,-8],[-2,-6],[-1,1],[-2,-5],[-9,-34],[-12,-10],[-8,-65],[-1,-1],[-1,27],[0,8],[1,3],[3,13],[2,16],[4,15],[6,20],[3,17],[5,17],[4,20],[6,18],[7,24],[7,22],[3,13],[4,13],[6,21],[6,25],[7,21],[6,24],[3,9],[5,14],[6,19],[6,17],[7,22],[6,21],[7,17],[7,19],[6,16],[4,15],[9,27],[3,9],[2,0],[1,8],[10,31],[7,25],[7,15],[6,17],[6,19],[6,14],[4,13],[3,8],[3,11],[1,4],[2,0],[0,-1]],[[5052,67993],[-2,20],[0,3],[-1,0],[-2,-6],[0,-16],[-1,-44],[-1,-19],[-1,-17],[-2,-7],[-1,-5],[-2,0],[-3,9],[-5,35],[-1,16],[-1,6],[-4,12],[-3,4],[-2,-1],[-1,0],[-2,4],[-2,1],[-3,-5],[-2,-4],[-1,-1],[-1,-1],[-1,-9],[-1,-7],[-2,-15],[-1,-6],[-1,0],[-1,0],[-1,-7],[2,-14],[-1,-24],[-1,-16],[0,-17],[0,-36],[1,-21],[-2,-17],[-1,-15],[-2,-23],[0,-11],[-1,-5],[-1,-9],[-2,-6],[-1,-13],[-3,-16],[-6,-45],[-4,-24],[-4,-20],[-2,-23],[-1,-20],[-1,-16],[0,-12],[1,4],[1,10],[1,3],[1,-4],[-2,-19],[-3,-6],[-3,-24],[-1,-9],[-1,-14],[-1,-7],[0,-12],[0,-24],[-3,-16],[-1,-18],[-1,-11],[-2,-16],[0,-16],[0,-20],[-2,-25],[0,-22],[0,-35],[0,-16],[-2,-13],[-1,-16],[-1,-6],[-3,0],[-3,-1],[-3,-6],[0,-18],[0,-20],[-1,-2],[-1,-3],[-3,-14],[-2,4],[-3,6],[-3,-2],[-5,-7],[-3,-3],[-2,-10],[-2,-6],[-1,-2],[-3,-8],[-1,-8],[-1,-13],[0,-23],[-1,-27],[-2,-1],[-1,9],[-2,4],[0,9],[-1,9],[1,15],[1,19],[0,17],[-1,10],[-1,5],[-2,7],[-3,4],[-3,9],[-5,10],[-4,13],[-6,21],[-4,26],[-3,30],[-3,31],[0,7],[-1,13],[-1,5],[-2,5],[-1,13],[0,15],[-1,10],[-1,18],[-2,11],[-1,2],[-2,1],[-1,-5],[-1,-1],[-2,-4],[-3,-1],[-4,7],[-5,9],[-1,8],[0,18],[1,12],[1,9],[1,13],[1,21],[1,3],[0,18],[0,22],[0,3],[-1,9],[-2,6],[-2,-2],[-2,-14],[-1,-23],[2,-21],[-1,-34],[-1,-16],[-1,-12],[-2,-22],[0,-11],[1,-2],[1,-4],[2,-11],[2,0],[2,-1],[4,-6],[3,-8],[2,-17],[2,-18],[1,-37],[2,-16],[1,-2],[2,-3],[3,3],[2,6],[2,12],[1,12],[0,-8],[-1,-17],[-1,-10],[-1,-6],[-4,-15],[-3,-12],[-1,-2],[-6,-16],[-7,-16],[-6,-10],[-6,-19],[-8,-27],[-2,-11],[-2,-13],[-1,-6],[-2,2],[-1,4],[-1,-4],[-1,-7],[-2,-8],[-1,-11],[-3,-24],[-1,-6],[-1,-5],[-1,4],[-1,17],[0,19],[-2,3],[1,-9],[1,-16],[-1,-17],[1,-4],[1,-10],[0,-9],[-1,-5],[-1,-1],[-2,0],[1,-8],[0,-8],[-1,-8],[-1,-6],[-1,-16],[-1,-15],[-1,-36],[-2,0],[0,5],[-2,4],[-1,0],[-4,-3],[-1,-6],[2,-4],[2,1],[1,-1],[0,-8],[2,1],[0,-1],[3,-6],[1,4],[1,11],[2,11],[1,0],[1,-5],[-1,-14],[-1,-17],[2,11],[1,9],[1,-1],[2,3],[1,13],[2,11],[3,21],[2,13],[1,11],[13,82],[15,55],[1,-13],[-4,-34],[-21,-106],[-6,-46],[0,-4],[-3,-18],[-2,-4],[-2,-13],[-2,-11],[-4,-11],[-3,-6],[-4,-7],[-6,-5],[-2,-2],[-17,-23],[-1,40],[-7,28],[-1,32],[-4,12],[-5,-27],[-3,12],[-1,-19],[3,-27],[5,20],[8,-33],[1,-3],[2,-12],[0,-19],[0,-18],[-3,-1],[-1,0],[-14,-3],[-5,-7],[-4,-10],[-5,-16],[-4,-12],[-2,-18],[-3,-21],[0,-19],[-1,-21],[-4,-13],[-1,-5],[-2,-22],[0,-19],[-1,-41],[-1,-36],[-2,-36],[0,-39],[-1,-12],[-1,-8],[-3,-8],[0,-1],[-1,-1],[-2,-1],[-2,-8],[-1,-13],[0,-13],[-6,-16],[-3,-2],[-1,-7],[-2,-11],[-2,-7],[-4,-17],[-2,-21],[-3,-28],[-1,-6],[-2,-6],[-3,-15],[-2,-8],[-5,-16],[-2,-16],[-1,-24],[-2,-11],[-6,-14],[-3,-22],[-1,-17],[-2,-14],[-3,-10],[-2,-17],[-3,-22],[-2,-10],[-2,-8],[-4,-16],[-4,-13],[-1,-6],[-1,-5],[-1,-12],[-1,-15],[-1,-12],[-1,-14],[-1,-18],[-1,-30],[-2,-11],[-1,-14],[-1,-20],[-2,-22],[0,-21],[-1,-12],[-1,-9],[0,-28],[-2,-14],[-1,-14],[-2,-16],[-2,-17],[0,-18],[2,-29],[2,-22],[-1,-40],[-2,-43],[0,-49],[-2,-14],[0,-36],[-2,-21],[-1,-15],[-2,-15],[-1,-23],[0,-28],[1,-21],[2,-29],[-1,-18],[-3,-30],[-7,-21],[-3,10],[-4,-48],[-7,-39],[-4,1],[-3,-41],[-3,-54],[-4,-37],[-2,-15],[-2,-18],[-2,-8],[-1,12],[-3,41],[-1,83],[0,59],[2,50],[0,48],[0,54],[-1,51],[-4,39],[-2,17],[1,13],[-3,24],[-1,18],[2,8],[-2,36],[-2,29],[-4,13],[-4,13],[3,5],[2,31],[-1,40],[-2,36],[2,22],[3,7],[2,8],[2,0],[0,33],[-1,23],[-3,32],[-3,20],[-4,22],[-4,11],[0,5],[-2,17],[-5,21],[-2,24],[-2,56],[-2,34],[-2,22],[-4,15],[-4,7],[-2,-2],[-7,-12],[-2,-1],[-2,-4],[-1,-1],[-1,-2],[-2,-1],[0,-2],[-1,-3],[-1,-3],[-1,-3],[-1,7],[1,11],[1,9],[1,3],[1,-1],[1,2],[1,3],[1,8],[0,8],[1,15],[1,16],[0,12],[-1,18],[-1,19],[0,16],[0,9],[-1,8],[-1,6],[0,6],[-1,6],[0,14],[-1,9],[0,11],[-1,12],[-1,7],[-1,6],[-1,6],[-1,4],[0,3],[-1,4],[-2,6],[-1,4],[0,4],[-1,2],[-1,2],[-1,5],[0,11],[-1,5],[-1,4],[-1,2],[-1,2],[-1,0],[-1,0],[-2,-1],[-1,4],[0,13],[0,-8],[-1,-1],[-1,5],[-1,10],[-1,6],[-2,4],[-2,15],[0,13],[-2,24],[0,13],[1,8],[0,44],[1,9],[0,-21],[0,-19],[0,-11],[1,0],[2,-13],[0,24],[-2,29],[1,14],[1,18],[2,25],[-1,23],[-1,10],[-1,6],[-2,-9],[-4,-3],[-2,-3],[-2,2],[-6,1],[-3,-16],[-5,-19],[0,-2],[-2,-27],[-1,6],[-2,-13],[0,2],[-3,4],[-1,-2],[0,-18],[1,-11],[0,-21],[-1,-13],[-1,-5],[0,-6],[-1,1],[-3,-14],[-1,-2],[-1,-6],[-1,-2],[0,-9],[-3,-31],[-1,-14],[-1,-6],[-1,-19],[0,-6],[-1,-2],[-1,-7],[-1,-4],[-3,-15],[-2,-4],[-1,-5],[-1,2],[-3,39],[-1,15],[-1,-13],[0,-13],[0,-47],[-1,7],[-1,10],[-1,10],[0,6],[0,-26],[1,-19],[2,-3],[2,-24],[1,-6],[2,-18],[2,-15],[3,-14],[3,-21],[5,-20],[3,-26],[1,-32],[1,-11],[1,-3],[1,-7],[3,-7],[1,4],[1,-3],[1,-4],[4,0],[7,-26],[4,4],[3,14],[2,-28],[0,-34],[4,-66],[5,-36],[3,-11],[2,-3],[1,1],[1,2],[1,1],[1,4],[0,2],[1,6],[1,-1],[0,12],[1,9],[1,5],[1,4],[1,5],[1,4],[2,2],[0,-5],[1,-13],[0,-5],[1,-3],[1,-4],[1,-1],[1,-7],[1,-1],[1,0],[1,2],[1,4],[1,5],[1,6],[0,6],[1,7],[1,-9],[-1,-26],[0,-17],[-1,-10],[0,-12],[-2,-29],[0,-28],[0,-11],[0,-12],[1,1],[0,18],[1,-12],[1,-18],[1,-14],[-3,-11],[-5,-12],[-4,-15],[-2,-12],[-4,-23],[-2,-37],[0,-34],[1,-16],[1,-17],[0,-22],[0,-21],[-1,-23],[-2,-23],[0,-33],[-1,-42],[-4,-27],[-3,-4],[-2,-12],[-3,-16],[-2,3],[-2,0],[-2,0],[-1,7],[0,21],[-2,12],[-3,7],[0,37],[-5,42],[-5,33],[0,50],[-4,48],[-2,32],[0,30],[-1,36],[-3,23],[-4,17],[-1,10],[-1,14],[0,10],[-6,25],[-6,3],[-3,9],[1,20],[-2,34],[-2,15],[-7,30],[-10,65],[-11,49],[-15,50],[-10,39],[-7,20],[-9,32],[-4,8],[-3,-1],[-4,7],[-4,6],[-2,0],[-3,-2],[-2,-6],[-3,3],[-2,-2],[-4,5],[-2,-1],[-2,-3],[-5,4],[-1,11],[-4,10],[-3,7],[-3,-2],[-3,9],[-3,2],[-7,3],[-4,-3],[-2,-3],[-2,-1],[-2,0],[-3,-3],[-2,-9],[-1,-13],[-1,-8],[-2,-12],[-1,-10],[-1,-18],[-1,9],[-2,11],[-4,5],[-3,-3],[-2,-7],[0,-9],[-4,-26],[-2,-10],[-2,-7],[-5,2],[-3,15],[-4,6],[-7,16],[-8,10],[-19,15],[-2,1],[-1,-7],[-7,8],[-7,2],[-5,-3],[-7,-1],[-3,-4],[-7,-1],[-12,-15],[-9,-21],[-8,-26],[-2,-1],[-2,-5],[-1,0],[0,-5],[-3,-14],[-3,-7],[-8,-24],[-4,-16],[-3,-13],[-4,-14],[-3,-18],[-4,-20],[-9,-32],[-3,-11],[0,-1],[-8,-36],[-15,-64],[-6,-26],[-1,-9],[-2,-6],[-5,-23],[-4,-21],[-3,-17],[-3,-12],[-1,-8],[-2,2],[-2,7],[0,26],[5,16],[2,-12],[6,25],[2,18],[2,9],[1,-4],[3,13],[3,8],[2,15],[3,14],[2,15],[2,4],[2,10],[3,13],[1,4],[4,17],[2,18],[2,14],[2,-5],[1,9],[0,17],[2,5],[1,0],[1,15],[1,3],[1,-4],[1,-7],[0,-3],[1,1],[1,10],[2,7],[0,5],[-2,10],[2,9],[0,7],[0,7],[-2,-11],[-3,-8],[-1,-9],[-2,-4],[-1,-7],[0,-7],[-1,-4],[-7,-29],[-3,-32],[-3,-8],[-4,-16],[-2,1],[-1,-2],[-2,-7],[-1,-3],[-1,2],[0,2],[-1,24],[1,6],[-1,8],[-1,7],[-2,-3],[-1,-1],[-1,4],[-2,10],[-4,8],[-14,-17],[-4,-9],[-3,-8],[-8,-53],[-12,-47],[-6,-74],[-5,-5],[-2,-6],[-3,4],[-2,12],[1,29],[2,25],[2,21],[-2,75],[-2,28],[0,17],[-3,37],[-2,10],[0,-2],[1,-25],[4,-87],[-1,-45],[-3,-10],[-3,-2],[-3,0],[-1,0],[-2,-11],[0,-9],[-1,-16],[2,1],[1,-11],[5,22],[0,-29],[4,-14],[1,-40],[5,-16],[2,-4],[2,-5],[4,-11],[0,-38],[-3,-5],[-3,3],[-5,-3],[-1,8],[-1,-3],[-2,-21],[-1,-14],[0,-7],[0,-11],[12,9],[6,7],[0,1],[3,1],[1,8],[4,11],[2,10],[1,2],[2,19],[2,0],[2,7],[3,4],[2,12],[2,12],[0,8],[2,9],[2,1],[0,-6],[1,-12],[-4,-15],[-4,-20],[-6,-25],[-3,-15],[-8,-23],[-4,-8],[-6,-10],[-8,-8],[-5,0],[-1,0],[-4,3],[-5,-1],[-3,4],[-4,3],[-1,-4],[-2,-13],[-1,-10],[-2,-10],[-2,4],[-2,-2],[-2,5],[-3,13],[-3,6],[-6,24],[-4,18],[-4,9],[-3,5],[-4,12],[-7,27],[-8,22],[-7,22],[-4,12],[-12,18],[-9,31],[-4,13],[-1,2],[-2,2],[-1,1],[-4,19],[-1,3],[-1,2],[-1,3],[-1,1],[-1,2],[-1,2],[-1,2],[-2,4],[0,1],[-2,10],[-1,3],[0,1],[-1,-4],[-2,6],[-2,4],[-2,5],[-1,2],[-2,5],[-1,2],[-1,5],[-1,2],[-1,2],[-1,0],[-1,2],[-3,5],[-1,2],[-1,3],[-2,2],[-1,2],[-6,10],[-5,8],[-2,2],[-2,1],[-10,25],[-6,16],[-13,26],[-11,26],[-8,13],[-5,7],[-5,16],[-8,16],[-4,7],[-5,3],[-5,3],[-5,5],[-8,2],[-2,-5],[-6,14],[-7,28],[-5,3],[-3,6],[-2,4],[-6,16],[-6,7],[-2,7],[-5,10],[-6,8],[-5,13],[-5,4],[-7,12],[-6,12],[-4,6],[-6,17],[-1,3],[-2,4],[-2,-2],[-7,8],[-5,15],[-8,23],[-2,21],[-3,13],[-4,13],[-2,19],[-3,20],[-4,31],[-7,48],[-7,40],[-2,19],[-2,9],[0,2],[-3,14],[-4,22],[-3,25],[0,8],[0,11],[0,13],[-2,10],[0,-16],[-1,14],[-1,16],[-1,22],[-2,30],[-2,43],[-3,53],[-2,37],[-1,37],[-1,38],[-2,22],[-2,39],[-2,40],[-1,30],[1,25],[1,23],[1,31],[0,35],[-1,52],[-1,50],[0,46],[0,27],[0,27],[3,11],[2,10],[2,16],[3,6],[2,4],[4,3],[2,23],[2,42],[1,28],[1,-11],[-1,-23],[-3,-37],[-1,-20],[2,1],[1,-6],[3,12],[4,21],[1,36],[-1,22],[0,28],[-2,2],[0,11],[2,19],[-1,14],[-3,4],[0,-17],[-1,-33],[1,-25],[-2,20],[1,26],[0,39],[0,43],[-1,40],[-1,43],[-2,35],[-3,43],[2,-8],[1,-18],[2,-31],[2,-33],[1,16],[0,2],[0,6],[3,6],[1,27],[0,24],[-1,9],[0,6],[-3,-2],[-2,5],[-1,9],[-4,17],[-3,42],[4,17],[1,24],[-2,33],[-1,8],[-2,6],[-1,-2],[0,-15],[-1,-7],[-2,7],[-2,-6],[-1,-2],[-2,41],[-3,27],[-4,16],[1,8],[1,14],[-3,13],[-3,0],[0,13],[0,14],[0,15],[1,14],[0,6],[-2,15],[-1,2],[-1,-3],[0,4],[-1,-16],[0,-16],[-2,1],[-1,5],[-2,1],[-1,4],[-1,-12],[2,-12],[2,-15],[4,-11],[0,-12],[2,-13],[4,-28],[4,-37],[4,-30],[5,-53],[5,-56],[2,-35],[-2,6],[-1,16],[-4,51],[-5,52],[-9,74],[-5,32],[-6,41],[-3,13],[-1,11],[-1,6],[-8,50],[-8,43],[-6,19],[-7,33],[-9,52],[1,14],[-1,20],[-3,24],[-1,14],[3,26],[1,37],[1,27],[-1,57],[-1,31],[-5,48],[-5,40],[-7,31],[-8,43],[-10,43],[-5,30],[-6,38],[-7,74],[-4,61],[-5,68],[-6,65],[-5,86],[1,25],[1,39],[4,119],[3,116],[4,86],[2,40],[4,45],[1,23],[2,25],[3,44],[3,15],[2,6],[0,-16],[0,-18],[1,-25],[1,-19],[-2,-26],[0,-24],[0,-36],[-4,-18],[-3,-14],[-3,-17],[-4,-19],[-5,-68],[-1,-53],[-2,-33],[-4,-130],[2,-49],[3,-27],[2,-15],[-2,-14],[1,-25],[4,-30],[1,-20],[-1,-7],[-4,32],[-1,0],[-2,-6],[2,-26],[2,-10],[0,-15],[4,-40],[2,-11],[-1,-8],[2,-21],[1,0],[1,23],[-1,15],[-1,26],[0,24],[-1,9],[0,11],[3,1],[4,-10],[6,-28],[4,-15],[0,-34],[1,-29],[2,21],[2,-13],[2,-2],[6,9],[2,-22],[3,7],[3,-18],[1,-6],[1,15],[8,-22],[15,3],[9,19],[7,13],[5,10],[5,21],[3,7],[3,-24],[1,-9],[3,9],[1,16],[-1,7],[-1,22],[-1,15],[0,30],[2,-22],[2,11],[2,5],[2,7],[0,20],[2,17],[-1,10],[-3,-2],[-1,-12],[-3,-7],[-3,-5],[-1,-6],[-3,0],[-6,-19],[-2,-6],[-5,-28],[-5,-14],[0,18],[4,19],[3,4],[0,4],[8,22],[8,23],[8,20],[3,18],[4,31],[4,41],[5,48],[1,31],[0,33],[-2,24],[-1,3],[0,41],[-1,39],[0,31],[0,33],[3,34],[3,24],[4,15],[2,7],[2,20],[4,22],[2,7],[2,2],[2,17],[3,24],[1,6],[1,15],[1,8],[3,51],[1,-13],[-1,-29],[-2,-24],[1,-10],[1,-10],[1,-3],[1,-6],[1,-3],[1,-3],[2,-3],[1,-2],[1,-1],[1,-1],[1,0],[1,5],[1,8],[1,-1],[1,-1],[2,-2],[2,0],[1,0],[1,0],[2,2],[1,3],[1,4],[1,5],[1,6],[1,5],[1,1],[0,-2],[3,-17],[4,-6],[8,-2],[5,-23],[5,-27],[2,-26],[3,-15],[3,-15],[1,1],[1,-7],[2,-8],[7,1],[4,-5],[3,0],[3,15],[5,2],[0,-18],[2,-28],[2,-16],[1,-9],[1,-11],[0,-17],[-1,-16],[-2,-30],[-1,-20],[0,-26],[0,-23],[1,-9],[1,-7],[-1,-12],[-2,-18],[0,-17],[0,-19],[-3,-6],[0,-10],[1,-8],[0,12],[3,-1],[1,14],[-1,30],[2,9],[1,1],[2,18],[1,-12],[2,-7],[3,-8],[1,2],[3,-29],[2,-20],[2,-7],[1,-40],[2,-11],[3,13],[4,16],[0,-30],[-4,-31],[-1,-16],[0,-18],[2,-19],[2,-26],[2,-5],[2,9],[2,-11],[2,-32],[1,-4],[2,-13],[0,-14],[1,-10],[1,-11],[2,-57],[3,-50],[4,-27],[4,-36],[4,-16],[0,-16],[2,3],[6,-10],[11,-13],[6,4],[4,-6],[1,-9],[-2,-8],[-2,-22],[-1,-22],[2,-25],[2,-8],[6,-17],[3,-5],[3,-6],[5,-5],[1,9],[1,-9],[0,-17],[3,5],[-1,21],[-1,14],[0,18],[1,22],[4,19],[5,29],[6,55],[9,93],[5,20],[6,18],[5,27],[5,14],[6,27],[4,16],[1,16],[0,27],[-1,11],[0,15],[0,3],[2,-5],[3,-33],[1,7],[3,0],[2,26],[5,26],[4,40],[-1,26],[-1,17],[-4,15],[-3,15],[-1,14],[3,12],[0,-12],[2,-8],[2,3],[0,14],[0,30],[2,0],[-1,21],[1,11],[-1,17],[-1,20],[-3,24],[0,17],[2,-8],[4,5],[2,2],[1,-6],[2,-9],[1,-17],[1,-15],[-1,2],[-2,5],[1,-18],[1,-15],[2,-2],[-1,10],[2,10],[0,11],[3,-22],[-1,-24],[-2,-13],[0,-24],[-1,-12],[0,-31],[1,9],[1,16],[0,14],[0,19],[1,-7],[3,-22],[-1,20],[-1,12],[2,2],[4,2],[1,7],[1,6],[0,7],[1,13],[-4,-16],[-1,-4],[-2,4],[0,15],[-1,28],[-2,20],[-1,14],[-1,11],[2,-2],[1,-16],[2,-7],[-3,30],[-1,8],[-1,4],[-6,10],[-2,5],[-2,-17],[-2,5],[0,23],[0,16],[-3,6],[-1,-4],[-1,-20],[-3,-5],[-1,-6],[-1,-14],[0,-18],[-1,-17],[0,-16],[1,-37],[0,-32],[0,-21],[0,-21],[-2,-36],[-3,-5],[-4,0],[-3,-6],[-5,-9],[-4,0],[0,19],[2,14],[4,5],[0,7],[-2,24],[-4,13],[-2,-22],[-2,0],[-4,21],[-2,-9],[-5,23],[-5,-2],[-2,-3],[0,3],[-2,22],[-1,-1],[0,-18],[0,-20],[0,-3],[3,-1],[2,2],[3,-5],[2,-5],[0,-19],[0,-12],[-1,-1],[-4,3],[-2,-6],[-3,-2],[-2,-9],[-5,-15],[-5,4],[-2,4],[-4,-10],[-2,-9],[-3,-1],[-1,25],[-2,21],[-3,29],[-3,17],[-3,5],[3,4],[-2,11],[-1,10],[-1,-15],[-2,4],[-1,4],[-1,11],[-3,13],[-2,10],[-3,5],[-3,-13],[-3,-15],[-4,-3],[-6,29],[-5,7],[-4,-3],[-4,-28],[0,-35],[-1,-45],[1,-49],[4,-13],[3,-20],[2,-32],[1,-2],[0,-24],[-1,-15],[-1,-3],[-3,5],[-2,10],[-5,41],[-7,9],[-3,12],[-1,43],[0,46],[-3,20],[-3,-4],[-1,-19],[-3,-1],[-3,24],[-3,17],[-2,14],[-3,31],[-3,23],[-2,8],[-3,5],[-3,22],[1,31],[1,28],[1,20],[1,16],[-1,36],[-3,23],[-2,23],[1,10],[0,18],[-1,31],[-1,13],[-2,10],[-1,16],[-1,18],[-2,7],[-2,5],[-2,-3],[-1,23],[-2,32],[-5,26],[-6,31],[-3,27],[-4,16],[-4,10],[-7,18],[-3,14],[-3,2],[-1,0],[-3,11],[-4,19],[-4,12],[-1,2],[-1,2],[-1,1],[-1,1],[-2,1],[-2,-2],[-1,2],[-1,7],[0,5],[-2,6],[-2,7],[-2,5],[-2,3],[-3,0],[-1,-1],[-1,-2],[-1,-2],[-2,-5],[-1,-4],[-1,-4],[-1,-1],[-1,-2],[-1,-9],[-1,-9],[0,-11],[0,-15],[0,-7],[2,-28],[5,-49],[1,-39],[-2,0],[-4,57],[-3,30],[-2,34],[-2,6],[-3,24],[-7,42],[-4,24],[-7,29],[-1,4],[-3,13],[-2,9],[0,4],[-2,9],[-1,1],[0,3],[-1,-2],[-1,3],[-1,3],[-1,2],[-1,4],[-2,4],[-3,7],[-1,1],[-12,-42],[-3,34],[1,31],[4,4],[0,6],[-2,9],[-7,15],[-2,10],[-5,1],[-2,-11],[-1,-6],[-3,6],[-1,18],[-2,2],[-2,8],[-5,7],[-4,12],[-17,15],[-2,17],[-2,4],[-2,3],[-3,8],[-4,10],[-5,9],[-6,10],[-3,-3],[-1,-3],[-2,0],[-1,-9],[-2,-7],[-2,0],[-2,8],[-1,14],[0,3],[-2,1],[-2,0],[-3,-7],[-3,5],[-2,-4],[-1,-10],[2,-6],[2,-9],[4,-10],[2,-7],[4,-17],[3,-11],[1,-5],[3,4],[2,8],[1,6],[4,-26],[0,-8],[-7,7],[-1,-3],[1,-2],[1,-9],[2,-7],[3,-11],[2,-8],[2,0],[2,7],[0,16],[3,-12],[2,-6],[3,-2],[3,12],[10,11],[1,-12],[-1,-14],[-12,-10],[0,-6],[2,-8],[3,-13],[7,-14],[5,-8],[2,-13],[10,-10],[9,-11],[7,16],[3,13],[1,5],[2,7],[3,3],[1,-25],[-3,-33],[-3,2],[-3,-21],[-18,14],[-9,30],[-3,6],[-4,9],[-3,5],[-4,2],[-6,3],[-8,26],[-7,29],[-14,60],[-10,37],[-18,50],[-7,19],[-13,20],[-8,9],[-11,-4],[-3,6],[-1,1],[-4,4],[-5,16],[-7,11],[-4,-6],[-1,-1],[-5,4],[-8,3],[-7,16],[-6,2],[-4,0],[-1,-4],[-3,3],[-3,3],[-4,7],[-6,1],[-3,8],[-4,17],[-4,12],[-10,25],[-4,30],[-3,23],[-8,32],[-2,20],[-4,17],[-7,37],[-3,18],[-6,18],[-2,12],[-1,14],[-1,16],[0,14],[0,16],[-3,20],[-3,22],[-5,27],[-4,20],[-5,29],[-2,21],[-3,19],[-3,20],[-7,25],[-3,10],[-5,17],[-5,14],[-5,20],[-4,17],[-2,3],[-2,17],[0,14],[-1,12],[-1,13],[-1,14],[-3,16],[-4,15],[-9,36],[-1,0],[-1,-2],[-6,14],[-4,10],[-1,8],[-3,5],[-3,8],[-3,-2],[-2,-3],[-1,5],[-1,5],[-6,20],[-2,12],[-1,1],[-4,6],[-3,18],[-4,18],[-4,57],[-1,8],[-2,10],[0,15],[0,13],[0,12],[1,11],[-1,40],[-1,13],[-1,9],[-2,16],[-1,7],[0,6],[-2,24],[-1,8],[0,9],[-1,14],[0,9],[-1,16],[0,27],[1,19],[0,34],[1,27],[1,29],[2,39],[1,30],[1,17],[2,26],[4,31],[3,23],[2,12],[3,15],[1,4],[4,20],[3,18],[2,18],[3,15],[3,16],[1,4],[4,18],[8,41],[8,36],[1,4],[4,10],[11,41],[14,46],[-1,-9],[-1,-10],[-1,-9],[-10,-70],[0,-34],[1,-24],[-2,-16],[-3,-6],[0,19],[-2,5],[-3,-13],[-9,-27],[-2,-16],[1,-11],[1,-3],[3,10],[0,-28],[-9,-29],[-4,-13],[-2,-7],[-5,-15],[-2,-6],[-3,-8],[-2,-22],[-5,-37],[0,-14],[-1,-44],[-2,-29],[-3,-22],[-2,-18],[1,-19],[0,-22],[-3,-28],[-1,-21],[0,-22],[1,-12],[1,-8],[1,-6],[4,-17],[0,-2],[1,-2],[2,-4],[1,-3],[4,3],[1,1],[4,5],[1,4],[0,2],[2,13],[3,15],[3,22],[3,8],[1,11],[2,-1],[1,5],[1,0],[2,0],[1,-3],[1,-4],[1,2],[0,7],[0,11],[0,4],[-1,8],[0,15],[1,6],[2,-3],[6,38],[3,13],[1,16],[2,14],[1,-5],[3,34],[1,2],[4,6],[3,24],[2,12],[2,1],[5,43],[1,37],[-3,65],[1,-1],[2,-25],[9,-10],[4,-7],[0,-3],[0,-8],[1,-5],[3,1],[5,2],[0,20],[-2,2],[0,14],[3,6],[2,-8],[5,4],[4,-6],[5,-5],[3,5],[8,1],[2,-5],[6,8],[3,19],[3,5],[2,8],[2,11],[3,13],[11,71],[-2,28],[0,21],[1,19],[1,27],[2,14],[1,19],[-3,5],[-4,8],[-2,3],[-1,6],[-1,4],[2,11],[-2,9],[-2,0],[-3,-3],[-2,-10],[-2,20],[0,59],[0,14],[-2,10],[-4,10],[-1,23],[1,4],[7,10],[4,24],[4,0],[4,4],[1,-20],[4,-11],[6,4],[5,8],[2,5],[2,17],[-2,10],[-2,5],[1,10],[-2,9],[-2,2],[-3,0],[-2,4],[-2,17],[-4,9],[-4,-4],[-5,-2],[0,11],[1,15],[0,14],[2,10],[6,23],[10,48],[20,98],[20,109],[16,95],[4,7],[0,-2],[0,-10],[-1,-10],[0,-3],[-5,-18],[-1,-29],[6,-45],[1,-3],[6,-3],[4,-38],[0,-30],[-1,7],[0,-8],[0,-15],[3,-17],[6,-6],[1,-12],[-1,-21],[0,-13],[0,-5],[1,4],[1,6],[2,11],[-2,-28],[2,-18],[3,-8],[6,54],[1,7],[4,11],[4,25],[7,16],[5,16],[9,35],[4,16],[6,94],[1,6],[4,23],[3,10],[3,0],[3,-1],[1,9],[1,11],[0,23],[2,3],[1,7],[0,24],[3,10],[1,4],[0,1],[1,-3],[0,-13],[-3,-11],[0,-12],[4,14],[3,18],[3,13],[4,0],[2,19],[0,20],[-1,14],[-2,26],[-1,13],[-8,41],[-4,16],[-1,16],[-3,27],[-9,-9],[-3,3],[-1,13],[2,43],[6,3],[10,84],[6,30],[2,-4],[1,7],[4,21],[6,27],[9,23],[0,-11],[0,-13],[-7,-31],[-1,-10],[-2,-8],[-3,-8],[-2,-10],[-2,-17],[-1,-14],[-1,-16],[1,-20],[2,-13],[1,-10],[2,2],[2,-2],[1,-5],[6,3],[3,10],[3,-6],[1,-3],[5,22],[0,24],[-1,10],[1,21],[0,7],[-2,12],[-6,-2],[-1,6],[-2,15],[1,2],[2,-6],[4,4],[2,22],[1,15],[1,12],[1,6],[1,-7],[1,18],[1,23],[0,14],[0,5],[-1,7],[-1,-13],[-1,-3],[-1,9],[1,16],[2,20],[1,15],[1,8],[1,8],[2,10],[2,12],[4,31],[4,37],[3,17],[3,18],[6,28],[2,18],[3,25],[2,16],[16,77],[3,15],[4,11],[4,10],[3,11],[7,35],[9,37],[9,49],[6,28],[3,13],[4,4],[1,2],[2,1],[2,3],[1,7],[1,7],[1,7],[1,8],[3,16],[6,20],[7,29],[7,32],[4,24],[7,21],[4,11],[4,5],[2,-1],[1,1],[2,-5],[2,-4],[5,-9],[2,-13],[5,-16],[3,-5],[3,-6],[2,-10],[3,-12],[2,-10],[2,-16],[1,-19],[8,-68],[4,-12],[-1,-22],[-2,-2],[-7,61],[-4,44],[-1,3],[-1,10],[-2,4],[0,-1],[-6,-47],[0,-10],[2,-15],[1,-13],[3,-11],[4,-11],[4,-12],[3,-18],[3,-22],[0,-5],[1,-5],[0,-14],[2,-2],[2,-11],[2,-7],[2,-2],[2,1],[5,8],[3,6],[2,-2],[5,-5],[7,0],[6,4],[4,4],[3,12],[6,11],[4,-4],[5,-14],[4,-20],[4,-7],[1,-3],[2,-9],[6,-17],[6,-5],[3,-3],[5,5],[12,8],[5,3],[0,4],[0,9],[0,11],[2,16],[2,12],[1,13],[2,12],[2,1],[2,3],[0,-25],[2,3],[1,9],[2,8],[2,11],[0,-1],[0,-14],[0,-14],[1,-3],[1,10],[1,11],[1,2],[0,6],[1,-5],[1,-3],[2,7],[1,8],[1,30],[1,8],[0,6],[1,11],[2,7],[2,14],[2,12],[3,18],[2,11],[2,9],[1,0],[2,14],[2,12],[3,21],[-5,21],[-5,18],[-1,15],[0,2],[-1,3],[-1,6],[0,-2],[-1,-10],[0,-14],[1,-11],[-2,-1],[-3,6],[-3,5],[-2,10],[-2,14],[-2,17],[-3,26],[-2,18],[-2,7],[-2,5],[-2,10],[-1,14],[-1,9],[-2,15],[-5,23],[-5,24],[-6,13],[-6,10],[-7,14],[-2,2],[-3,-4],[-2,-8],[-3,2],[-5,-4],[-3,7],[-2,4],[-1,5],[1,8],[0,20],[-1,10],[-2,-10],[0,-18],[-2,-5],[-1,7],[-2,21],[-2,19],[-2,36],[-1,22],[0,33],[1,20],[2,19],[2,20],[1,22],[1,24],[1,20],[2,19],[1,12],[2,12],[3,16],[3,13],[2,16],[3,38],[1,23],[2,30],[3,29],[2,18],[2,21],[1,20],[2,-3],[1,7],[0,11],[2,10],[1,1],[1,6],[1,12],[1,14],[2,15],[2,14],[3,12],[2,8],[2,6],[1,3],[2,11],[1,7],[1,6],[21,58],[20,93],[9,43],[0,3],[6,30],[7,49],[7,9],[9,29],[6,4],[3,8],[4,13],[2,5],[2,5],[2,3],[3,0],[5,-1],[4,-4],[2,-5],[1,5],[2,8],[5,7],[4,11],[3,-1],[2,-4],[3,9],[3,11],[3,14],[4,25],[3,9],[3,2],[4,1],[4,-6],[5,-4],[6,-10],[6,-8],[1,-5],[1,-17],[-1,0],[-1,6],[-1,-2],[1,-10],[-1,-9],[-1,-9],[0,-17],[0,-20],[1,-23],[-1,-12],[-1,-21],[2,-17],[2,-8],[2,-3],[1,-9],[2,-9],[1,-8],[-1,-6],[-2,0],[0,-11],[1,-11],[1,-15],[2,8],[1,11],[0,13],[1,12],[0,12],[0,17],[0,25],[1,18],[0,18],[1,19],[1,12],[2,15],[1,3],[3,6],[2,9],[2,15],[3,11],[2,13],[1,15],[0,14],[0,15],[-1,9],[-1,10],[2,13],[1,9],[2,16],[2,20],[3,23],[2,24],[2,20],[4,16],[3,8],[4,11],[3,11],[4,18],[3,20],[1,18],[1,16],[1,8],[1,0],[1,-4],[3,12],[3,16],[6,33],[3,19],[1,7],[2,6],[5,37],[3,20],[1,17],[1,8],[1,11],[1,12],[2,25],[1,20],[-2,-6],[-4,-49],[-4,-17],[-2,22],[2,25],[5,45],[5,4],[1,5],[5,13],[3,4],[4,7],[8,20],[5,12],[7,11],[3,11],[2,5],[4,7],[0,5],[6,11],[10,22],[8,20],[4,9],[4,8],[2,3],[3,1]],[[4615,59767],[0,15],[-1,10],[2,23],[2,14],[4,56],[2,34],[3,39],[1,16],[3,31],[1,9],[1,13],[1,6],[1,8],[1,8],[0,11],[4,36],[0,10],[1,17],[3,30],[2,28],[1,15],[1,8],[0,8],[1,16],[0,19],[1,11],[2,9],[0,3],[1,-2],[0,-9],[1,-12],[1,-13],[1,-1],[-1,21],[-1,21],[0,8],[2,5],[0,14],[1,10],[1,37],[1,17],[0,6],[3,15],[2,14],[-2,-3],[-2,1],[-2,5],[1,10],[0,12],[1,6],[0,10],[1,6],[1,5],[1,13],[0,13],[1,17],[1,14],[1,6],[1,8],[2,20],[0,16],[1,15],[2,12],[1,11],[1,16],[1,15],[2,12],[1,12],[1,16],[2,9],[2,13],[1,10],[1,6],[2,13],[1,7],[2,14],[3,21],[3,19],[1,16],[3,21],[2,15],[1,15],[0,21],[-2,57],[-1,-2],[-1,2],[-1,6],[-1,10],[0,14],[0,7],[1,7],[0,21],[-1,13],[0,16],[-1,15],[0,9],[-1,3],[-1,15],[-1,17],[0,7],[-1,7],[0,6],[1,-2],[2,-5],[3,-2],[2,5],[1,-1],[1,-7],[2,-5],[1,4],[0,8],[2,7],[1,-8],[1,2],[1,0],[2,-9],[2,-16],[0,-17],[1,-14],[2,-8],[0,-14],[1,-7],[1,-5],[2,-2],[2,14],[0,15],[1,9],[1,-1],[1,1],[1,5],[2,3],[1,-14],[1,-3],[2,2],[1,-8],[0,-22],[-1,-9],[1,-5],[0,-2],[1,-6],[2,-6],[6,-19],[4,-4],[1,5],[1,-4],[1,-8],[1,2],[1,6],[0,6],[2,-1],[1,-1],[2,-1],[1,-20],[0,-9],[-1,-2],[-1,2],[-1,-1],[-1,-8],[0,-15],[1,-8],[1,-6],[1,1],[2,6],[0,-11],[2,-9],[0,1],[1,-12],[1,-13],[3,-11],[2,-9],[1,-3],[2,-4],[2,2],[1,10],[1,-6],[1,-11],[0,-10],[-1,7],[-2,-3],[0,-16],[-1,-8],[-1,5],[-1,-6],[0,-15],[-1,-3],[-1,0],[-1,7],[-1,0],[-1,-2],[-1,-11],[-1,-11],[1,-16],[0,-4],[1,-3],[0,-12],[-2,-20],[-1,3],[-1,9],[-1,10],[-3,8],[-2,-7],[-1,-18],[1,-13],[0,-20],[1,-21],[0,-12],[-1,-9],[-1,-6],[-2,-12],[-1,-3],[-1,2],[-3,-3],[-4,-14],[0,-10],[-2,-6],[-1,-6],[-1,-4],[-1,-1],[-2,-1],[-2,-9],[-1,-13],[-1,-11],[-1,-12],[0,-18],[1,-20],[1,-13],[0,13],[-1,18],[1,23],[1,4],[0,4],[1,7],[1,6],[2,1],[1,0],[1,-4],[1,4],[2,-2],[3,-1],[1,-2],[2,5],[1,0],[1,2],[1,4],[2,0],[1,6],[0,4],[1,-1],[1,2],[4,7],[0,7],[0,9],[1,-1],[1,1],[1,-5],[0,-5],[2,2],[1,-6],[1,-1],[1,7],[1,12],[1,11],[0,15],[-1,16],[1,1],[1,5],[2,-3],[1,0],[0,-3],[1,3],[1,1],[1,-17],[1,-3],[1,-10],[-1,-12],[2,-12],[1,-4],[0,-6],[2,-1],[1,-7],[1,-4],[1,12],[0,20],[1,10],[0,25],[1,16],[1,6],[1,-10],[1,5],[2,-11],[1,-12],[0,-10],[2,9],[1,-3],[2,-5],[4,7],[2,14],[1,19],[0,4],[1,-12],[2,-5],[2,9],[0,-15],[2,6],[1,-4],[3,-8],[3,-4],[1,9],[3,-1],[1,-8],[0,-15],[2,2],[1,-17],[2,8],[1,10],[1,12],[1,7],[2,7],[2,-7],[2,9],[2,6],[1,19],[2,11],[1,3],[2,-4],[1,-7],[1,14],[1,-3],[2,-5],[2,13],[2,12],[2,17],[2,-4],[1,2],[6,11],[0,2],[1,-6],[0,-12],[3,-6],[3,2],[1,-6],[1,1],[2,-4],[2,-3],[2,-18],[3,6],[1,-2],[2,-16],[2,5],[1,-13],[1,-19],[3,8],[2,4],[1,-2],[3,-3],[2,16],[3,-2],[2,4],[2,2],[0,16],[1,10],[0,13],[1,-1],[-1,14],[0,12],[1,-3],[1,14],[1,8],[4,-12],[3,-5],[1,9],[2,13],[0,-17],[1,-14],[1,-2],[0,-12],[-1,-8],[1,-8],[2,-7],[1,-16],[0,14],[3,5],[2,-1],[2,11],[3,9],[3,13],[0,13],[3,8],[3,11],[4,-6],[4,15],[4,6],[3,-11],[6,-2],[6,23],[6,12],[3,17],[4,11],[3,13],[4,2],[2,13],[2,3],[3,-1],[5,31],[2,23],[1,14],[3,-2],[2,-3],[2,9],[1,11],[-1,15],[0,20],[1,12],[-1,13],[2,11],[-1,11],[0,26],[1,6],[3,14],[2,-2],[3,19],[-1,20],[0,38],[-3,-15],[-1,13],[1,28],[1,1],[1,2],[2,5],[0,-18],[4,5],[-1,10],[0,11],[9,50],[2,14],[1,19],[1,11],[2,22],[1,21],[0,14],[0,27],[0,22],[2,10],[0,22],[1,17],[-1,15],[2,7],[0,12],[1,30],[0,23],[2,-3],[1,-18],[3,-7],[1,-16],[1,-5],[3,15],[8,71],[3,26],[3,40],[6,66],[3,54],[6,106],[1,19],[4,42],[1,9],[4,39],[2,33],[5,65],[3,40],[2,35],[2,28],[1,21],[2,34],[2,29],[0,18],[1,35],[0,25],[0,39],[0,32],[0,30],[0,56],[-1,32],[0,29],[0,2],[-3,111],[-6,134],[-1,16],[0,17],[-1,33],[0,19],[-1,37],[-3,63],[-1,24],[-3,73],[-5,90],[-4,64],[-3,49],[-3,23],[-1,20],[-1,23],[0,18],[-1,27],[0,2],[-2,53],[-2,55],[0,28],[-1,21],[-2,35],[-2,32],[-1,22],[-1,64],[-1,50],[-2,61],[0,31],[0,23],[0,24],[1,43],[1,47],[-1,35],[-1,20],[-1,13],[-1,27],[1,14],[0,17],[-1,30],[0,19],[1,27],[0,15],[0,23],[0,14],[0,55],[-1,30],[0,22],[1,30],[1,17],[1,15],[-8,157],[-4,37],[-4,30],[-1,18],[-4,32],[-2,15],[-3,32],[-4,38],[-3,36],[-2,21],[-3,18],[-11,103],[-29,280],[-1,12],[-2,26],[0,17],[1,3],[1,-3],[2,-11],[0,-12],[1,-12],[1,-11],[0,-8],[1,-3],[1,-5],[1,2],[1,-3],[1,-15],[0,-14],[0,-12],[1,-9],[1,-4],[-1,10],[1,5],[0,12],[2,-1],[2,3],[1,-6],[1,-9],[0,-6],[2,-13],[0,-10],[1,-4],[1,3],[-1,11],[1,6],[2,-2],[1,0],[1,3],[1,9],[-1,11],[0,7],[-2,5],[-1,11],[0,12],[1,5],[-1,8],[-1,7],[-1,4],[-1,2],[-1,-1],[-1,7],[1,16],[-1,1],[-1,-8],[-1,0],[-1,-3],[-2,0],[-1,4],[-1,11],[0,10],[1,7],[0,9],[-1,5],[-1,-2],[-2,-9],[-2,0],[-3,0],[-3,4],[-1,9],[-1,-9],[0,-10],[-2,-3],[-1,6],[-2,10],[-1,19],[0,21],[-1,8],[0,13],[0,8],[1,-5],[1,-2],[1,7],[1,7],[1,13],[1,-2],[2,3],[1,6],[0,15],[0,18],[2,1],[2,1],[1,-2],[2,-6],[3,-11],[2,-16],[1,-5],[1,-2],[1,8],[-1,11],[2,0],[2,6],[-1,11],[-1,-3],[-1,2],[-1,5],[-1,-5],[0,-16],[-2,4],[0,11],[-1,4],[-1,1],[-1,5],[1,17],[0,11],[-2,1],[-1,-6],[-1,-10],[0,-6],[-2,-1],[0,7],[-1,4],[-2,0],[-1,-6],[-1,-10],[0,-16],[0,-15],[-1,-1],[0,6],[-1,8],[-1,18],[0,9],[-1,9],[1,12],[-1,-2],[-1,-9],[1,-15],[-2,-2],[-1,-1],[-1,0],[-2,2],[-1,4],[-1,6],[-1,-3],[-2,-2],[-3,4],[-1,-1],[-2,0],[-1,-4],[0,-11],[0,-11],[-1,-16],[1,-19],[-2,3],[-2,10],[-5,17],[-6,23],[-3,16],[-2,12],[1,9],[0,15],[-1,13],[-1,6],[-1,9],[1,11],[-1,4],[-1,-7],[-1,-10],[-1,-10],[1,-4],[1,0],[0,-8],[-2,-5],[-2,0],[-2,-2],[-2,-2],[-2,-5],[-2,3],[-2,0],[-3,-4],[-2,-8],[-1,-13],[-1,-5],[0,-1],[-2,-11],[-2,-22],[-4,-37],[-1,-17],[0,-10],[0,-13],[-1,-7],[-1,-12],[-1,-15],[-2,-27],[-1,-6],[-1,8],[0,16],[1,10],[0,11],[2,5],[1,13],[0,17],[0,23],[-2,36],[-2,41],[2,26],[1,4],[3,4],[2,5],[2,17],[1,21],[2,16],[1,20],[1,22],[1,11],[1,19],[0,20],[-1,15],[0,28],[0,29],[1,11],[-1,30],[-1,32],[0,23],[2,10],[1,9],[1,9],[0,16],[0,16],[-1,14],[0,12],[0,14],[1,2],[2,6],[3,12],[3,2],[1,9],[2,18],[2,20],[1,3],[2,16],[2,15],[4,27],[4,11],[1,-14],[2,-26],[3,-28],[5,-23],[3,-14],[2,-6],[2,-6],[4,-4],[6,-6],[1,-1],[1,-9],[0,-7],[3,-13],[6,-15],[10,-18],[12,-10],[8,4],[3,-4],[5,3],[2,-3],[3,-7],[2,5],[1,4],[2,2],[2,6],[4,8],[4,7],[1,3],[2,9],[0,7],[1,14],[0,16],[1,4],[1,4],[1,5],[0,13],[1,8],[0,2],[0,11],[0,-1],[-1,-8],[-2,-22],[0,4],[0,10],[0,11],[-1,7],[-1,8],[-2,8],[-1,2],[-2,9],[-2,7],[-2,12],[-1,2],[-1,-2],[0,-42],[-2,-7],[-5,48],[-3,60],[1,5],[1,4],[3,-1],[4,0],[8,-9],[10,5],[6,13],[9,30],[0,7],[1,1],[1,-6],[1,7],[1,16],[1,9],[1,2],[2,7],[0,7],[-2,1],[-1,11],[-1,9],[1,13],[1,18],[2,21],[2,20],[2,14],[2,11],[3,18],[2,3],[1,0],[1,1],[2,7],[1,9],[2,14],[3,16],[3,27],[6,36],[1,18],[2,27],[0,18],[0,29],[0,27],[0,28],[0,29],[0,36],[-1,38],[0,17],[2,14],[0,12],[0,20],[1,35],[0,23],[0,40],[-1,35],[1,16],[0,17],[-1,12],[1,16],[0,23],[-2,28],[-3,41],[-4,49],[-3,31],[-3,37],[-1,28],[1,32],[-2,10],[-3,13],[-2,27],[-2,34],[0,26],[0,18],[-1,22],[0,17],[0,16],[-7,94],[2,7],[3,20],[4,11],[2,-51],[2,0],[1,35],[-3,48],[-4,2],[-8,-36],[-1,-26],[-1,-18],[-1,-4],[-1,-1],[-2,1],[-1,4],[-2,6],[-3,11],[-3,9],[-1,8],[-1,10],[-1,4],[-2,4],[-1,2],[-1,4],[-1,6],[-2,9],[0,10],[1,-5],[1,-3],[2,-1],[-2,14],[-1,15],[-1,11],[-1,9],[-2,16],[0,-1],[-1,-10],[-1,-3],[-3,4],[0,10],[-1,10],[-2,12],[-2,15],[-5,26],[-6,38],[-7,55],[-3,36],[-5,50],[-2,38],[-2,19],[-1,17],[0,18],[1,20],[2,18],[2,10],[1,2],[3,-4],[2,-9],[2,-19],[2,-32],[3,-18],[4,-13],[5,-5],[1,-1],[1,5],[3,4],[2,15],[4,20],[2,16],[1,16],[2,30],[4,5],[2,2],[2,9],[1,20],[0,25],[1,25],[-1,14],[-1,18],[-1,29],[1,17],[1,9],[1,9],[2,9],[2,0],[0,-16],[0,-3],[1,8],[1,10],[0,6],[3,19],[3,31],[-1,14],[1,21],[0,33],[-2,22],[0,20],[-2,10],[-2,8],[0,12],[2,17],[2,21],[3,17],[0,16],[-1,29],[-1,24],[-2,23],[-1,15],[0,15],[-1,11],[-1,16],[-2,25],[-1,28],[-1,-2],[-2,8],[-1,16],[0,25],[1,21],[-1,20],[0,13],[0,28],[0,35],[-1,30],[-1,13],[-2,2],[1,-11],[0,-8],[-2,-8],[2,-6],[1,-12],[0,-14],[0,-34],[0,-34],[0,-40],[0,-19],[2,-22],[2,-24],[1,-19],[0,-16],[-1,-16],[1,-26],[3,-18],[3,-11],[1,-14],[1,-29],[0,-28],[-2,-16],[-1,-5],[-1,3],[-2,-13],[-1,-19],[2,-22],[1,-11],[1,-8],[0,-10],[-1,-11],[-1,-16],[1,-17],[2,-18],[1,-19],[0,-16],[-1,-13],[-1,-12],[-1,-10],[-2,0],[-2,1],[-1,1],[-1,2],[-3,-13],[-2,-17],[-1,-33],[1,-43],[1,-40],[0,-26],[0,-17],[-2,-7],[-1,1],[-1,1],[-2,18],[-1,4],[-1,4],[-1,-3],[1,-12],[-2,-2],[-1,-6]],[[13497,17448],[1,-9],[1,2],[2,-5],[1,-14],[-2,-12],[1,-11],[1,-25],[0,-17],[-1,2],[-2,10],[-2,40],[0,14],[-2,10],[-1,14],[-1,5],[-3,43],[-1,17],[-1,4],[-1,15],[0,17],[1,10],[1,5],[1,9],[1,-3],[1,-12],[1,-3],[1,-13],[1,-24],[0,-15],[2,-25],[1,-18],[-1,-11]],[[13505,17588],[1,-17],[1,-24],[1,-14],[2,-12],[2,-36],[1,-34],[0,-25],[0,-19],[-1,-17],[-1,-7],[-2,8],[0,10],[-1,7],[-2,-10],[-1,12],[-1,11],[-1,11],[-1,15],[1,11],[2,28],[1,11],[0,16],[-1,8],[-2,-17],[-1,-22],[-2,-17],[-2,33],[-2,32],[-2,22],[0,11],[1,8],[1,3],[5,-1],[3,16],[1,-1]],[[13045,17544],[0,-26],[-2,5],[-1,26],[0,13],[0,18],[-1,16],[1,19],[3,-25],[0,-46]],[[13489,17632],[0,-13],[1,-13],[-1,0],[-1,13],[-1,1],[-1,-15],[-1,0],[0,15],[0,13],[0,9],[2,4],[1,-7],[1,-7]],[[13047,17614],[-1,-8],[-3,13],[0,25],[-2,27],[2,22],[5,-13],[-1,-66]],[[13025,17702],[1,-11],[0,-19],[0,-18],[-1,12],[-1,8],[0,10],[-1,10],[-1,-6],[0,-10],[-2,12],[0,17],[1,14],[1,11],[1,12],[1,12],[0,19],[1,-10],[0,-18],[0,-18],[-1,-10],[1,-17]],[[13519,17792],[-1,-9],[-1,6],[-1,1],[0,12],[0,11],[0,18],[1,8],[1,-7],[1,-15],[0,-25]],[[13015,17702],[0,-12],[-2,9],[1,24],[-1,19],[-1,7],[-1,8],[0,22],[1,20],[1,7],[1,13],[1,3],[0,21],[1,-2],[1,-14],[0,-15],[-1,-6],[1,-16],[0,-22],[0,-30],[1,-20],[-2,-3],[-1,-13]],[[13492,17800],[0,-6],[0,-11],[-1,-14],[0,-13],[-1,11],[0,10],[0,11],[0,6],[-1,-3],[-2,-25],[-1,-3],[0,10],[0,6],[2,56],[1,6],[0,17],[1,0],[1,-18],[1,-36],[0,-4]],[[12865,17924],[1,-9],[1,1],[1,-4],[1,-4],[1,-14],[-1,-1],[-1,4],[-1,-5],[-2,-3],[0,-20],[-1,-10],[-1,-11],[-2,-3],[-2,13],[0,16],[0,20],[1,6],[4,23],[1,1]],[[12873,17909],[-1,-3],[0,15],[0,13],[1,9],[1,-3],[-1,-31]],[[12709,17942],[1,-26],[1,-14],[1,-16],[0,-15],[1,-13],[-1,-4],[0,-15],[0,-17],[0,-12],[1,-12],[1,-16],[0,-12],[1,-20],[0,-29],[-1,-10],[-1,-16],[0,-17],[0,-18],[0,-21],[-2,-13],[1,-15],[0,-12],[-1,-13],[0,6],[0,14],[-1,3],[0,14],[0,23],[-1,5],[-1,-4],[-1,11],[0,18],[-1,5],[-1,13],[0,17],[1,22],[1,22],[0,26],[-1,4],[-1,1],[1,12],[1,16],[-1,19],[0,20],[0,24],[1,13],[1,13],[-1,17],[-2,13],[1,7],[1,-2],[1,11],[1,-7]],[[13046,17960],[-1,0],[0,5],[-1,2],[-1,3],[0,12],[-1,11],[0,14],[0,13],[1,-3],[1,-4],[0,-7],[1,-3],[1,-1],[0,-10],[1,-12],[1,-13],[0,-5],[-2,-2]],[[13358,18104],[-1,-6],[0,14],[0,6],[1,9],[2,0],[0,-10],[-1,-8],[-1,-5]],[[13342,18101],[0,-1],[1,3],[1,1],[0,-10],[-2,-18],[-1,-12],[-1,5],[0,-4],[-1,0],[0,12],[0,16],[-1,-9],[-1,-3],[0,-2],[-1,4],[-1,-10],[-1,4],[-1,-2],[-2,-4],[0,2],[-1,2],[1,11],[1,8],[0,20],[4,4],[1,4],[3,12],[0,2],[2,5],[1,-16],[-1,-14],[0,-10]],[[13141,18110],[-1,-3],[0,9],[-1,1],[-1,13],[-2,5],[-1,14],[-1,7],[0,17],[1,6],[1,-4],[2,-5],[1,-5],[1,-9],[1,-10],[0,-36]],[[13141,18201],[0,-15],[0,-17],[-1,-9],[-1,10],[-1,11],[0,13],[1,-3],[1,11],[1,-1]],[[13133,18180],[0,-14],[-2,5],[0,-1],[-3,22],[0,24],[2,-1],[1,-11],[1,-2],[1,-14],[0,-8]],[[13031,18220],[0,-6],[0,-12],[0,-15],[-1,2],[0,1],[0,1],[0,11],[0,1],[0,4],[0,6],[0,7],[0,-1],[0,4],[1,-3]],[[13026,18231],[1,-2],[0,1],[0,-8],[0,-10],[0,-3],[-1,2],[0,6],[0,1],[-1,14],[0,7],[-1,5],[1,1],[1,-1],[0,-4],[0,-9]],[[13131,18247],[1,-3],[1,0],[0,-22],[-2,-11],[-1,13],[-1,8],[0,21],[2,1],[0,-7]],[[13023,18224],[0,-12],[-1,-2],[0,-11],[-1,-2],[-1,5],[0,13],[-1,0],[0,5],[0,7],[0,5],[0,2],[0,7],[0,7],[0,2],[-1,19],[0,8],[1,13],[3,-16],[0,-2],[0,-4],[0,-13],[0,-16],[1,-15]],[[12989,18283],[0,-17],[0,-3],[-1,6],[-1,9],[1,6],[0,-2],[0,6],[0,8],[1,2],[0,-4],[0,-3],[0,-8]],[[13015,18306],[0,-8],[-1,-22],[0,-10],[1,-6],[0,-5],[0,-7],[-1,-3],[-1,9],[0,7],[0,5],[-1,9],[0,3],[0,4],[0,12],[0,1],[0,1],[0,3],[1,8],[0,-3],[1,-5],[0,2],[0,8],[0,7],[0,5],[0,7],[-1,3],[0,5],[1,2],[1,-20],[0,-12]],[[12933,18404],[0,-15],[-2,-5],[-1,-16],[-3,-4],[0,-35],[1,-7],[1,-8],[1,0],[2,-12],[0,12],[-1,13],[1,17],[1,13],[3,-13],[1,7],[1,13],[1,17],[1,3],[1,-12],[1,-11],[1,-21],[1,-12],[0,-20],[1,-18],[1,12],[2,11],[0,15],[2,-8],[0,-28],[-1,-24],[-2,-17],[-1,-16],[-1,-6],[-1,-8],[1,-11],[1,2],[1,13],[2,14],[2,-4],[2,-1],[2,-8],[1,4],[-1,18],[-2,12],[-1,8],[1,11],[1,7],[2,-12],[1,-28],[2,-38],[0,-17],[1,-9],[0,-47],[-3,14],[-1,-14],[-2,7],[-1,-24],[-1,-16],[0,-6],[0,-14],[2,-19],[1,1],[1,-18],[3,-13],[1,-37],[-2,-12],[1,-26],[-2,12],[-1,4],[-1,11],[-2,16],[-2,40],[0,7],[-2,-1],[0,-14],[1,-17],[-1,-28],[0,-9],[-3,20],[-2,19],[-2,-22],[-2,8],[-1,-9],[2,-10],[1,-12],[2,-22],[2,-9],[2,-1],[1,-16],[1,-15],[1,-12],[-2,1],[-1,6],[-1,-1],[-1,-19],[2,-1],[1,-4],[1,-10],[1,-6],[2,7],[2,-4],[1,-7],[1,-2],[1,-7],[-1,-12],[1,-14],[-1,-10],[2,-5],[2,-8],[0,-18],[0,-15],[-1,-5],[-2,-9],[2,-6],[0,-15],[2,2],[1,-15],[-1,-16],[1,-21],[1,-28],[0,-16],[-1,-15],[0,-23],[-1,17],[-2,-4],[0,-13],[0,-27],[-2,-10],[0,-13],[-1,-13],[-1,7],[-1,9],[-2,6],[-2,16],[-1,10],[-2,19],[-2,9],[-1,27],[0,25],[0,28],[-2,20],[-1,17],[-2,29],[0,33],[0,30],[-2,32],[-1,-3],[-2,13],[-1,28],[-2,10],[-2,16],[1,14],[0,10],[-1,20],[0,23],[0,19],[-3,15],[-1,-10],[0,-19],[-2,-3],[1,13],[-1,14],[-2,8],[-2,12],[-1,-5],[-2,19],[-3,43],[-3,19],[0,8],[1,14],[-1,32],[-1,17],[0,26],[1,21],[1,21],[-2,35],[-1,25],[1,6],[-2,22],[0,38],[1,11],[1,-19],[2,-38],[1,-30],[1,-18],[2,-7],[-1,13],[0,18],[-1,26],[0,21],[-1,22],[2,-1],[0,15],[1,7],[-3,6],[-2,8],[1,7],[0,14],[3,-6],[2,2],[1,-14],[1,-7],[2,-17],[1,-8],[2,-6],[-1,15],[0,11],[-1,18],[2,9],[2,3],[1,-18],[-1,-21],[1,4],[1,12],[2,7],[0,14],[2,31],[1,3],[1,-2],[0,-15],[1,-17],[1,-12],[-3,-14]],[[13256,18457],[-1,-17],[-5,5],[0,-4],[-1,-18],[0,-9],[-1,7],[0,9],[-1,12],[0,14],[0,11],[1,2],[1,-3],[1,0],[1,0],[0,-1],[3,0],[2,-8]],[[12903,18470],[0,-42],[-3,13],[0,31],[3,-2]],[[13246,18456],[-1,-1],[-2,6],[0,12],[0,9],[0,10],[1,-1],[0,-4],[0,-3],[2,-12],[0,-16]],[[12998,18475],[-2,-18],[-2,19],[1,21],[1,10],[3,-4],[1,-14],[-2,-14]],[[13251,18482],[-1,-4],[-1,1],[0,-3],[-1,11],[-1,5],[-2,22],[1,14],[2,10],[2,-6],[0,-12],[1,-22],[0,-16]],[[12896,18516],[-1,-27],[-5,33],[2,32],[3,-26],[1,-12]],[[13253,18532],[-1,-25],[-1,17],[0,17],[0,13],[2,8],[1,-13],[-1,-17]],[[13262,18523],[-3,-10],[-1,20],[0,21],[1,16],[4,-9],[1,-25],[-2,-13]],[[13270,18551],[-1,-2],[-1,8],[1,10],[0,11],[1,9],[1,-14],[0,-12],[0,-5],[-1,-5]],[[12999,18519],[-2,35],[0,26],[1,20],[2,1],[2,-13],[-2,-10],[0,-4],[0,-19],[0,-28],[-1,-8]],[[13252,18603],[-1,-35],[-2,4],[0,18],[1,24],[2,0],[0,-11]],[[12897,18560],[-1,-29],[-1,29],[-3,35],[1,38],[2,-6],[2,-67]],[[12902,18562],[-3,-6],[-1,79],[1,8],[4,-48],[0,-31],[-1,-2]],[[12937,18658],[-1,-40],[-4,34],[-1,37],[4,11],[2,-42]],[[12906,18669],[0,-17],[-2,0],[-3,23],[-2,17],[-1,20],[8,-43]],[[13322,18732],[1,-7],[1,1],[1,-6],[1,0],[1,1],[0,-3],[0,-11],[0,-8],[-1,-8],[0,-6],[1,3],[0,9],[1,3],[1,-2],[1,3],[0,-2],[0,-8],[0,-5],[-1,-12],[0,-2],[-1,-7],[-2,-9],[-1,-4],[-1,2],[0,2],[-1,-7],[-1,-10],[-1,-7],[-1,-5],[0,9],[0,13],[0,6],[1,2],[1,8],[0,17],[0,26],[-1,12],[0,6],[1,6]],[[13349,18717],[0,-20],[-1,-14],[-1,1],[0,7],[0,9],[0,6],[0,-1],[-1,4],[1,16],[0,8],[1,-1],[0,-6],[1,-9]],[[13274,18584],[-1,-9],[-1,6],[-1,8],[0,6],[-1,12],[0,7],[-1,17],[-1,17],[1,6],[-1,20],[-4,62],[1,12],[1,13],[1,0],[1,-1],[1,-1],[1,-9],[1,-3],[1,-3],[0,-9],[1,-6],[1,-9],[1,-14],[0,-14],[0,-20],[0,-78],[-1,-10]],[[13346,18773],[-1,-12],[0,-5],[0,-12],[0,-5],[-1,-22],[-1,1],[0,1],[0,-6],[0,-8],[-1,-16],[1,-2],[0,-7],[0,-18],[0,-8],[0,-11],[0,-13],[0,-8],[1,-17],[2,-1],[0,-1],[1,1],[0,-6],[-2,-30],[0,-11],[1,-16],[1,-3],[1,-14],[1,-39],[-1,-7],[-2,-14],[0,-14],[-1,-7],[-1,-6],[0,-3],[-1,-8],[0,-8],[0,-4],[1,0],[0,8],[1,1],[1,3],[0,-8],[-3,-34],[-3,-9],[-2,-14],[-3,4],[-2,6],[0,-19],[2,-17],[7,15],[4,27],[1,5],[1,17],[2,-6],[0,-10],[1,1],[1,18],[2,-6],[3,-21],[1,-1],[1,-2],[2,-11],[0,-19],[-2,-26],[-3,-29],[0,-6],[-1,-16],[-1,-9],[-1,-5],[-1,-3],[-1,-4],[-1,-12],[-1,1],[-1,13],[0,-4],[-1,-10],[-1,-6],[0,2],[-1,-11],[0,-13],[1,-2],[1,3],[2,-5],[1,-13],[1,2],[1,-6],[0,-13],[-2,-2],[-1,5],[-1,-5],[-1,-9],[0,-7],[-1,2],[0,11],[0,9],[-1,3],[0,-3],[0,-6],[0,-7],[-1,3],[-1,-4],[-1,-1],[-1,8],[0,5],[1,6],[0,14],[-1,2],[-1,-1],[-1,-5],[-1,-5],[-1,4],[-1,4],[-1,-6],[0,-20],[-1,4],[-1,3],[-1,-13],[-1,-11],[-1,3],[-1,-2],[0,-7],[-1,-5],[-1,9],[0,11],[-1,4],[0,9],[0,1],[-1,-3],[0,-11],[0,-17],[-1,-5],[0,-13],[1,-7],[-1,-14],[-1,-10],[-1,-12],[-1,-6],[-1,-6],[-2,-10],[-1,-12],[-1,19],[-2,28],[-2,9],[-1,5],[0,1],[-1,-16],[-1,-5],[-2,8],[-1,18],[-1,14],[1,19],[0,17],[0,9],[0,17],[0,9],[0,15],[0,14],[1,6],[0,10],[1,11],[-1,6],[0,11],[0,11],[2,11],[0,16],[1,11],[4,15],[0,15],[-2,7],[3,8],[0,1],[0,27],[-3,-8],[0,-4],[-1,-14],[-1,-7],[-1,-17],[-1,-19],[-1,-21],[0,-13],[-1,-6],[-1,7],[-1,5],[-1,6],[-1,-7],[0,-12],[2,-4],[1,-8],[1,-6],[0,-13],[-2,-17],[1,-10],[-7,30],[-1,-1],[0,13],[-3,10],[0,5],[0,7],[-1,7],[0,2],[-1,-6],[0,-9],[-1,1],[0,21],[0,27],[1,40],[-1,2],[-1,-9],[-1,-10],[-1,-13],[-6,-7],[0,6],[0,8],[0,12],[0,4],[-2,16],[0,8],[-1,3],[0,4],[0,3],[-1,12],[-1,4],[0,4],[-2,0],[0,10],[1,6],[1,20],[0,21],[0,24],[2,23],[2,23],[3,11],[1,2],[0,2],[2,4],[0,2],[1,14],[1,3],[1,3],[1,-5],[1,-3],[0,-6],[1,-5],[0,-2],[1,7],[1,10],[1,-3],[-1,-13],[1,-3],[0,4],[2,4],[0,1],[1,-9],[1,-1],[1,13],[-1,10],[-1,14],[0,12],[1,6],[0,-3],[1,1],[1,3],[0,14],[1,-1],[1,7],[1,6],[1,-1],[0,-6],[-1,-9],[0,-10],[-2,-52],[0,-10],[2,12],[4,65],[1,5],[1,-8],[0,3],[1,6],[1,0],[1,0],[1,-3],[0,6],[0,11],[0,6],[1,1],[1,0],[1,-10],[0,-3],[0,-14],[-1,-5],[-1,3],[-1,-6],[-1,-4],[-1,-2],[0,-5],[1,-4],[2,2],[0,-12],[1,-12],[0,-23],[1,-19],[0,8],[1,3],[2,21],[1,-9],[1,-4],[0,1],[1,-2],[0,3],[-1,16],[0,7],[0,2],[2,0],[1,-3],[2,15],[1,19],[1,14],[1,16],[1,9],[1,17],[2,-1],[0,4],[0,17],[1,24],[0,2],[1,7],[1,11],[0,8],[2,0],[1,12],[1,7],[1,2],[1,-5],[0,7],[2,1],[0,4],[0,-6]],[[13105,18779],[1,-14],[-1,-23],[-2,7],[-1,19],[1,9],[2,2]],[[13143,18771],[0,-8],[-2,2],[0,6],[0,11],[-1,11],[-1,20],[-1,9],[2,5],[1,-1],[2,-32],[0,-23]],[[13346,18941],[0,-13],[1,1],[0,-8],[0,-12],[0,-11],[-1,-8],[-1,-8],[0,-11],[0,-10],[-1,-8],[-1,-9],[0,-13],[-1,-2],[-1,1],[-1,4],[-1,1],[-1,-2],[-1,7],[-1,5],[0,8],[0,7],[1,4],[0,7],[1,-3],[1,8],[0,-2],[1,-18],[1,-3],[1,12],[0,16],[0,6],[0,-1],[1,10],[-1,7],[0,4],[1,9],[1,3],[0,7],[0,10],[1,5],[1,0]],[[13129,18937],[-1,-6],[-1,3],[-1,-1],[-1,8],[1,2],[1,5],[1,4],[1,-1],[0,-8],[0,-6]],[[13137,19023],[-1,-11],[-1,14],[1,8],[0,10],[2,-2],[0,-10],[-1,-9]],[[13115,19018],[-1,-3],[-1,12],[0,15],[2,3],[0,-19],[0,-8]],[[12897,19040],[-1,-3],[-2,1],[-1,3],[0,14],[-1,19],[1,4],[1,1],[1,-5],[2,-2],[0,-4],[1,-12],[-1,-4],[0,-12]],[[13111,19065],[-1,-11],[-1,1],[-1,-1],[0,-6],[-2,10],[0,19],[1,2],[2,2],[2,-2],[0,-14]],[[13105,19058],[-1,-7],[-1,3],[0,16],[-1,8],[2,4],[1,-3],[0,-21]],[[12881,19042],[0,29],[0,18],[2,-6],[0,9],[1,-10],[-1,-13],[0,-15],[0,-16],[-1,-10],[-1,14]],[[13131,19058],[-1,-10],[0,24],[0,18],[1,6],[1,-6],[0,-19],[-1,-13]],[[12881,19042],[0,-13],[0,-12],[-1,-16],[-1,-5],[1,-12],[-1,3],[-2,12],[0,20],[0,14],[2,4],[0,9],[0,8],[-1,11],[-1,25],[-1,18],[0,20],[1,3],[1,12],[0,-7],[1,-11],[0,-18],[0,-16],[1,-8],[0,-10],[0,-9],[1,-22]],[[12883,19131],[-1,-5],[0,10],[-1,14],[1,8],[1,-7],[1,-13],[-1,-7]],[[12897,19164],[0,-1],[-2,8],[-1,6],[1,22],[1,3],[1,1],[1,-4],[1,-3],[1,-8],[-1,-11],[-2,-13]],[[12942,19196],[0,-10],[-1,15],[0,17],[1,15],[1,-7],[-1,-18],[0,-12]],[[12886,19203],[0,-9],[-1,10],[0,10],[0,10],[0,11],[0,7],[1,2],[0,-18],[1,-14],[-1,-9]],[[13358,19287],[1,-8],[1,1],[1,17],[0,-6],[1,-17],[0,-13],[1,-10],[0,-16],[1,-5],[0,-9],[0,-14],[1,-12],[0,-15],[-1,-11],[0,-17],[-1,-5],[-1,-1],[-1,-10],[-1,-16],[-1,-15],[1,-34],[0,-27],[1,-10],[0,-11],[0,-23],[-1,-19],[-2,4],[-1,7],[-1,9],[-1,11],[-1,12],[-1,11],[-2,13],[-1,11],[-1,5],[0,-4],[-1,7],[0,12],[0,5],[-1,10],[-1,16],[0,18],[0,11],[1,14],[0,8],[1,9],[0,3],[-1,0],[0,13],[0,12],[0,6],[0,11],[1,7],[1,-7],[0,-12],[1,7],[0,9],[1,8],[1,11],[1,10],[1,9],[0,17],[1,1],[0,17],[0,16],[1,10],[0,-15],[1,-7],[1,-9]],[[12935,19454],[1,-2],[1,1],[1,-17],[1,-14],[1,-15],[1,-21],[1,0],[2,-1],[-1,-15],[0,-16],[-1,-8],[-1,-14],[-1,-39],[-1,2],[-1,9],[-1,13],[-2,19],[-1,9],[0,3],[-1,13],[0,14],[0,13],[-1,15],[0,20],[1,22],[-1,15],[2,-4],[1,-2]],[[13146,19483],[-1,-11],[-1,12],[1,12],[0,2],[1,-3],[0,-12]],[[13258,19520],[-2,-4],[-2,24],[1,21],[1,4],[0,3],[2,-21],[0,-27]],[[12855,19536],[-1,-2],[0,13],[1,7],[1,12],[1,14],[1,-7],[-1,-18],[0,-12],[-1,-3],[-1,-4]],[[12861,19563],[0,-12],[-1,5],[-1,14],[0,14],[0,21],[2,16],[1,-1],[0,-3],[0,-18],[-1,-22],[0,-14]],[[12785,19650],[1,-36],[-4,4],[1,23],[2,9]],[[12894,19637],[-1,-8],[0,1],[-1,-14],[-2,-9],[0,22],[0,12],[0,12],[1,10],[2,-3],[0,-2],[1,-4],[0,-17]],[[13322,19678],[-1,-3],[0,7],[0,12],[1,3],[0,-4],[1,-10],[-1,-5]],[[12896,19711],[-1,1],[-1,1],[1,8],[0,3],[2,2],[1,-5],[-1,-9],[-1,-1]],[[12791,19700],[0,-1],[-1,20],[2,19],[2,2],[0,-13],[-1,-7],[-2,-20]],[[12905,19705],[0,-8],[1,4],[1,-8],[0,-21],[0,-14],[1,-4],[1,-13],[-1,-5],[-1,-2],[-1,-9],[1,-3],[1,1],[0,-1],[1,1],[1,-2],[0,-4],[1,-1],[1,-1],[1,-4],[1,-6],[1,-7],[0,-5],[1,-4],[1,-5],[1,-5],[1,-6],[0,-1],[1,0],[1,-9],[0,-8],[0,-8],[1,-11],[0,-14],[0,-10],[1,1],[1,-11],[1,-7],[1,-4],[0,-9],[1,-22],[2,-18],[2,-16],[0,-32],[0,-30],[0,-17],[2,-11],[1,-12],[0,-13],[-1,5],[-1,-13],[1,-31],[1,-16],[2,8],[1,-14],[-1,-22],[1,-21],[0,-24],[-1,-10],[0,-13],[2,6],[1,-1],[0,-16],[1,-21],[0,-19],[-1,-4],[2,-25],[1,-30],[1,-28],[1,-17],[0,-9],[1,-10],[-1,-32],[0,-13],[-1,-3],[0,-23],[0,-16],[-1,-14],[-1,-4],[-1,26],[0,-32],[-1,-9],[-1,-18],[-1,11],[-1,-5],[-1,-20],[-2,-26],[-3,-15],[-1,15],[-1,14],[-1,0],[-1,-19],[-1,-17],[1,-11],[1,-23],[0,-11],[0,-9],[-1,-7],[-1,-4],[-1,7],[-2,15],[0,14],[-1,19],[0,17],[-1,12],[-1,4],[-1,17],[-1,19],[1,10],[2,-13],[1,9],[-1,20],[-1,29],[-1,-2],[-1,0],[-1,-11],[-1,-3],[0,-23],[-1,-3],[-1,17],[-1,16],[0,17],[0,14],[0,13],[-1,22],[0,9],[-1,14],[-1,4],[-1,2],[0,-15],[1,-22],[1,-20],[0,-22],[0,-17],[1,-33],[1,-13],[-2,-11],[1,-17],[-2,-1],[-4,23],[-2,18],[-3,16],[-1,-5],[-2,8],[-2,8],[-4,18],[-1,7],[-1,9],[-1,9],[0,15],[-1,11],[1,20],[1,3],[1,12],[1,5],[1,4],[0,19],[-2,20],[1,0],[1,-7],[0,-2],[1,-15],[2,-13],[1,14],[1,-1],[1,13],[1,8],[0,24],[0,14],[1,17],[0,17],[1,-2],[1,1],[1,10],[0,14],[1,1],[1,6],[1,4],[1,14],[1,11],[1,15],[1,16],[0,25],[0,16],[-1,-6],[-1,-10],[-1,-7],[0,-17],[-2,-9],[-1,6],[0,10],[0,12],[1,15],[-2,1],[-1,3],[-3,-6],[-1,13],[-1,8],[-1,3],[-1,5],[-2,8],[-1,-1],[-1,27],[-1,17],[2,1],[-1,20],[-1,18],[1,7],[2,18],[0,22],[-1,27],[0,16],[0,7],[0,8],[-2,-19],[0,17],[-1,21],[-1,22],[1,8],[0,-2],[0,18],[-1,9],[-2,8],[1,9],[0,21],[1,8],[2,4],[2,7],[1,-9],[1,4],[1,12],[0,10],[0,16],[2,13],[1,12],[1,2],[0,5],[0,12],[-1,17],[1,8],[1,-7],[1,7],[-1,8],[2,8],[0,18],[-1,9],[1,11],[0,14],[1,3],[1,-5],[0,-11],[0,-14],[1,-9],[0,-11]],[[12896,19759],[-1,-6],[-1,8],[-1,14],[1,6],[1,-14],[1,-8]],[[12901,19790],[0,-3],[1,-14],[-1,-14],[0,-7],[-1,2],[0,11],[-1,5],[1,12],[1,8]],[[13099,19792],[0,-20],[-2,10],[1,18],[1,0],[0,-8]],[[12901,19790],[-1,7],[0,2],[-1,6],[1,16],[1,-2],[1,1],[-1,-13],[0,-17]],[[12875,19850],[0,-23],[-1,-14],[-1,15],[-1,4],[0,-14],[-1,-5],[0,25],[0,14],[1,-5],[1,4],[1,5],[1,-6]],[[12879,19873],[-1,-16],[-1,1],[0,16],[2,-1]],[[12894,19861],[0,-13],[0,-14],[0,-6],[-1,1],[0,1],[-1,18],[-2,2],[-1,-9],[0,-11],[1,-3],[1,-2],[0,-19],[1,-1],[1,-2],[-1,-9],[-1,-5],[-2,1],[-1,-4],[0,-16],[1,-11],[1,-9],[0,-11],[-1,-15],[0,-20],[0,-22],[0,-20],[0,-21],[0,-18],[0,-11],[-2,-3],[-1,-9],[0,6],[0,19],[-1,25],[0,24],[2,39],[-2,9],[-1,-26],[0,-16],[-1,-15],[-1,-21],[-2,-7],[-2,-15],[-3,0],[0,18],[0,14],[0,23],[-2,-8],[-2,-4],[0,18],[1,21],[2,16],[2,7],[0,13],[-1,11],[0,22],[0,27],[0,10],[1,12],[1,10],[1,7],[1,7],[1,2],[1,2],[1,-6],[2,-10],[1,2],[0,18],[1,23],[2,2],[1,10],[3,-15],[1,-7],[1,-6]],[[13104,19878],[-2,-17],[-1,10],[1,23],[1,7],[1,-6],[0,-17]],[[12901,19900],[-1,-1],[-1,10],[0,5],[-1,9],[1,7],[1,3],[1,-2],[0,-10],[0,-21]],[[13071,19916],[-3,-48],[-2,5],[1,17],[2,30],[3,14],[0,-5],[-1,-13]],[[12951,19959],[-1,-2],[-1,6],[0,19],[1,4],[0,1],[0,4],[1,-3],[0,-10],[0,-10],[0,-8],[0,-1]],[[12838,20025],[-1,-7],[-1,0],[-1,5],[-1,9],[0,17],[1,3],[2,-10],[1,-17]],[[12827,19968],[2,-29],[0,-7],[-4,-29],[0,-21],[2,-5],[1,-13],[0,-10],[-7,-52],[-2,-16],[1,-13],[2,-14],[2,25],[3,12],[2,31],[1,7],[1,-17],[0,-42],[2,-8],[1,-23],[-2,-13],[-3,-13],[-1,-19],[1,-29],[4,20],[1,2],[2,-17],[2,-29],[1,-23],[1,-25],[-1,-22],[-4,-4],[-3,-12],[-4,1],[-2,-22],[0,-9],[2,-17],[4,2],[4,3],[2,8],[0,-19],[-1,-13],[-2,-11],[-1,-3],[0,-6],[0,-5],[5,-8],[2,-26],[2,-11],[2,3],[1,7],[2,7],[1,0],[2,-16],[3,-30],[0,-35],[-2,-30],[2,-20],[1,-41],[-1,-33],[-1,-10],[1,-33],[2,-11],[3,-14],[0,-16],[1,-20],[3,-21],[1,-14],[0,-10],[0,-15],[-1,6],[-2,7],[-1,6],[-2,7],[-3,24],[-2,14],[-1,16],[0,7],[-1,4],[-2,34],[-3,20],[-6,21],[-5,12],[-2,-3],[-2,-14],[0,-9],[-1,-19],[1,-12],[0,-2],[2,-11],[4,19],[2,-6],[3,-2],[1,-2],[5,-8],[-1,-11],[-5,-1],[-1,-9],[0,-32],[0,-2],[2,-6],[1,-4],[2,-6],[1,-8],[0,-28],[-1,-21],[-1,-15],[1,-10],[0,-2],[2,18],[2,29],[2,-11],[2,-21],[-1,-18],[-2,-23],[-4,0],[-2,-1],[-3,8],[-4,-4],[-3,2],[-2,-8],[0,-8],[2,-12],[0,-11],[2,-25],[2,2],[1,30],[4,-2],[2,-7],[2,-20],[1,-22],[-1,-29],[-1,-34],[0,-7],[0,-20],[3,-14],[1,38],[2,63],[3,4],[4,-23],[1,2],[-2,-28],[-2,-46],[0,-18],[1,-14],[2,45],[1,5],[1,-17],[3,32],[2,9],[1,-5],[0,-11],[1,-10],[1,-16],[-1,-22],[1,-56],[-3,-39],[0,-14],[3,-10],[0,-55],[1,-8],[1,-13],[0,-25],[0,-4],[-1,-22],[-1,-16],[-1,-18],[0,-12],[-3,4],[-3,-8],[-1,-19],[2,-17],[6,-15],[8,72],[2,-12],[2,-31],[1,-12],[0,-9],[-1,-4],[-5,-16],[-1,-25],[0,-19],[0,-2],[3,6],[2,22],[1,-3],[2,-2],[2,-23],[-4,-19],[-1,-30],[0,-18],[-3,5],[-1,-18],[1,-4],[2,-9],[2,17],[1,-8],[2,-19],[0,-21],[2,-14],[1,-15],[2,11],[2,-18],[3,5],[1,4],[2,-4],[-1,-13],[1,-17],[0,-36],[-2,-12],[-1,-22],[2,-7],[1,8],[2,12],[1,-6],[1,-14],[3,-29],[4,-48],[-1,-20],[-2,-12],[-1,2],[-4,-20],[-2,-5],[0,-18],[2,-8],[2,11],[2,6],[4,2],[3,12],[2,-9],[3,-30],[4,-40],[0,-21],[1,-17],[3,-20],[-1,-22],[-3,15],[0,-17],[-3,-6],[-2,-14],[-1,-20],[2,-6],[2,8],[1,-3],[1,9],[3,-9],[2,-13],[1,-7],[2,-19],[-4,-5],[1,-17],[2,-12],[1,-22],[2,-10],[1,-15],[0,-25],[-4,21],[0,-14],[3,-33],[1,-9],[0,8],[2,4],[1,-19],[-1,-15],[2,-23],[-2,-14],[-3,16],[-1,0],[-2,0],[-1,0],[-1,1],[-1,-19],[1,-9],[1,2],[2,-5],[3,-20],[0,-27],[-3,0],[-1,2],[-3,10],[-2,-7],[-3,7],[0,-14],[1,-8],[3,-13],[3,-3],[3,-7],[2,-18],[2,-8],[2,-2],[3,-10],[1,-7],[-2,-11],[0,-27],[0,-16],[1,-22],[-2,-11],[0,-14],[1,-19],[0,-11],[-4,5],[-3,-11],[2,-33],[6,-32],[3,-9],[3,-24],[2,-19],[1,-14],[0,-17],[-1,-8],[-2,-9],[-1,-1],[-2,-9],[-2,5],[-1,24],[-2,7],[-2,-22],[-2,-4],[-2,-8],[-1,13],[-4,11],[0,22],[-2,12],[-1,-10],[-1,-1],[-1,-12],[-2,-8],[0,-1],[0,9],[1,14],[2,23],[4,26],[0,19],[-1,3],[-2,25],[-2,-29],[-4,-1],[-2,-11],[-3,10],[0,20],[-1,7],[-1,17],[-1,18],[0,25],[0,27],[-2,-5],[0,-16],[0,-15],[1,-35],[-2,-28],[-2,-9],[-2,-4],[-1,-7],[-1,17],[-1,7],[-1,14],[-2,21],[-2,-15],[-1,10],[1,26],[2,19],[-1,27],[-3,3],[0,23],[2,15],[0,19],[-2,2],[0,17],[-2,11],[-1,10],[0,20],[4,23],[6,-31],[5,-5],[2,32],[-1,23],[-1,9],[-3,-15],[-4,5],[-2,4],[-4,17],[-3,49],[-1,23],[-1,5],[0,34],[-4,24],[-2,12],[-3,1],[-2,1],[-1,20],[-3,6],[-1,10],[0,9],[-2,30],[-3,24],[-1,11],[0,17],[1,11],[1,6],[0,14],[3,5],[1,24],[1,6],[3,-13],[3,38],[1,26],[-1,3],[1,13],[2,38],[0,19],[-1,4],[-1,0],[-2,0],[-2,-1],[-2,-10],[-1,-8],[-2,-8],[-1,-19],[-1,-10],[-1,-6],[-3,-3],[-3,-24],[-2,3],[-1,12],[-3,9],[0,15],[0,14],[-3,4],[1,23],[0,12],[0,12],[-1,10],[-2,14],[-1,-10],[-2,5],[1,16],[1,8],[1,-4],[2,14],[0,15],[1,13],[1,2],[1,22],[-1,15],[-2,0],[-2,-5],[-2,12],[-2,-14],[-3,5],[1,19],[0,5],[1,12],[2,13],[3,9],[2,10],[3,-8],[2,-12],[1,35],[2,13],[-2,28],[0,3],[-1,-5],[-2,-15],[-2,-26],[-2,7],[-3,-11],[-3,4],[-1,-12],[-1,11],[-3,12],[0,7],[-1,28],[-2,22],[-3,4],[-1,10],[1,9],[3,10],[1,-5],[2,2],[2,1],[2,1],[2,27],[3,16],[3,11],[1,23],[-2,6],[-2,-1],[-3,-16],[-2,0],[0,-13],[-3,-15],[-3,-2],[-4,2],[-4,-2],[-1,11],[0,20],[-1,10],[-1,-9],[0,-22],[-1,0],[-1,-1],[0,19],[-2,20],[-1,3],[0,10],[1,27],[6,14],[3,6],[0,4],[1,3],[1,9],[1,0],[2,-6],[3,-33],[2,2],[2,32],[-2,18],[-1,1],[-1,-8],[-1,1],[-2,8],[-2,10],[-2,6],[-3,6],[-3,0],[-2,8],[-3,-27],[-3,3],[-3,3],[-2,-5],[-1,3],[-2,-2],[1,19],[1,34],[2,6],[2,3],[0,10],[-1,5],[-2,1],[-1,7],[0,9],[0,13],[0,16],[2,14],[0,9],[-1,-3],[-2,0],[-1,5],[-1,8],[-1,9],[1,6],[1,15],[2,6],[0,25],[2,17],[1,12],[-2,13],[-1,22],[-1,12],[1,5],[-1,9],[-2,18],[-1,19],[2,17],[0,17],[0,14],[0,21],[-1,7],[-2,-16],[0,15],[-3,-2],[-2,6],[-1,10],[-1,8],[-2,16],[0,16],[0,16],[-1,30],[-2,15],[0,16],[0,13],[4,-8],[5,-24],[4,-8],[1,8],[-1,6],[0,17],[-1,15],[-3,10],[-2,3],[-1,9],[-2,13],[-1,14],[-4,17],[-2,22],[-1,27],[-1,31],[1,44],[1,10],[1,5],[2,2],[1,2],[4,-1],[1,-2],[2,-5],[3,-8],[4,-8],[2,1],[3,5],[2,-11],[2,-7],[2,0],[1,11],[-1,10],[-1,18],[-2,15],[-2,8],[-3,9],[-4,14],[-1,7],[3,8],[3,32],[2,18],[2,-1],[3,-19],[2,-19],[2,-5],[0,26],[-2,20],[-3,22],[-3,14],[-2,6],[-2,0],[-1,-7],[-3,-33],[-2,-30],[-3,-14],[-1,-1],[-3,0],[-3,1],[-2,15],[-1,6],[-1,24],[2,3],[2,5],[2,21],[2,1],[4,-3],[0,5],[0,7],[-2,11],[0,3],[-6,19],[-2,45],[-3,35],[-3,30],[1,13],[7,-37],[1,-3],[3,-22],[1,-1],[1,-10],[2,-4],[2,12],[0,21],[-1,3],[-2,10],[-2,6],[-2,17],[0,22],[2,11],[1,7],[0,7],[0,4],[-2,-3],[-1,-8],[-2,-1],[-2,5],[-4,7],[-1,14],[0,15],[1,5],[3,2],[2,1],[0,15],[2,5],[2,12],[4,13],[3,-2],[2,-9],[1,-8],[1,-2],[2,55],[0,21],[-1,18],[-1,-5],[0,-23],[-1,-22],[-1,4],[-2,4],[-2,9],[2,21],[0,10],[-1,3],[-1,-8],[-2,0],[-2,-12],[-1,5],[1,12],[1,18],[1,6],[-1,7],[-1,-1],[-1,1],[-3,-16],[-1,8],[-2,10],[1,24],[-1,18],[0,31],[0,20],[0,13],[1,25],[1,11],[1,8],[4,-6],[5,-1],[4,27],[6,38],[3,24],[1,5],[2,-1],[0,-20],[1,-32],[3,-40]],[[12856,20041],[-1,-51],[-4,4],[-3,-15],[-4,7],[0,38],[1,24],[-1,25],[2,9],[4,-10],[3,-21],[3,-10]],[[12810,20079],[-1,-11],[-2,3],[-1,7],[-1,9],[0,8],[1,6],[1,3],[1,-3],[0,-6],[2,-16]],[[12818,20096],[-1,-8],[-1,0],[-2,8],[-1,12],[1,2],[1,2],[1,-1],[1,-3],[1,-12]],[[13279,19994],[-1,-2],[-1,1],[0,-3],[0,-12],[1,-7],[1,-11],[0,-8],[1,-7],[1,-2],[1,-6],[0,-5],[0,-12],[0,-1],[-1,7],[-1,5],[-1,-2],[1,-10],[1,-7],[1,-12],[1,-10],[1,-9],[0,-6],[1,-7],[2,-5],[1,-11],[1,-12],[1,-4],[0,-9],[2,-11],[1,2],[1,-10],[1,-6],[1,-1],[0,13],[1,8],[0,5],[1,10],[1,-8],[2,-7],[1,-11],[1,-5],[3,-48],[0,-11],[5,-64],[12,-81],[0,-39],[-7,3],[-7,112],[-5,48],[-1,-21],[9,-125],[1,-16],[0,-12],[0,-89],[2,-23],[0,-11],[0,-23],[1,-16],[0,-31],[-1,-23],[-1,-15],[-1,-9],[-2,33],[0,-3],[-2,-6],[1,-33],[4,-38],[1,-20],[-5,-11],[-1,-27],[0,-17],[4,-28],[2,-8],[1,-24],[0,-14],[0,-23],[0,-21],[0,-16],[-1,-25],[0,-39],[0,-27],[-4,-52],[-1,-8],[-1,-8],[0,-18],[-1,-16],[1,-12],[-1,-11],[-1,-6],[-1,-13],[-1,3],[-1,3],[-1,3],[-1,-5],[-1,2],[0,3],[-2,-4],[-1,-2],[-1,-2],[-1,4],[-1,3],[-1,-4],[0,-7],[-1,6],[-1,-3],[-1,2],[-1,-1],[-1,1],[-1,5],[0,15],[0,11],[0,-2],[-1,-10],[-1,-7],[-1,-2],[0,-2],[-1,-4],[-1,-5],[-1,-5],[-1,-3],[-1,-1],[-1,-1],[-1,9],[-2,6],[-1,17],[0,14],[-1,11],[-1,13],[0,18],[0,27],[0,9],[0,12],[0,15],[0,14],[-1,20],[0,17],[-1,14],[1,17],[-1,8],[-1,9],[-1,5],[-1,8],[0,11],[-1,9],[-1,5],[-1,4],[-1,5],[0,15],[0,13],[-1,10],[0,19],[0,17],[0,13],[-1,10],[0,14],[0,10],[-1,1],[-1,-7],[0,-10],[-1,-9],[0,-12],[0,-14],[0,-10],[-1,-6],[0,-5],[-1,-9],[0,-8],[-1,-3],[-1,-8],[-1,-12],[1,-5],[1,-10],[1,-15],[0,-9],[1,-1],[1,5],[0,4],[1,4],[1,5],[1,-5],[0,-10],[1,-4],[1,-5],[0,-4],[1,-6],[-1,-4],[-1,-1],[0,-16],[1,-16],[0,-10],[0,-13],[0,-10],[1,-13],[0,-15],[1,-13],[-1,-12],[-1,-10],[0,-7],[-1,-12],[0,-11],[-1,-7],[-1,1],[-1,0],[-1,-4],[0,-14],[-1,-9],[-1,-3],[-1,5],[-1,4],[-1,-9],[-1,-9],[-1,-7],[-1,-1],[-1,-8],[1,-9],[-3,-1],[-1,-21],[1,1],[2,2],[1,1],[-1,-22],[-2,-21],[0,-4],[-1,-29],[-2,9],[0,34],[0,10],[-1,2],[0,6],[-1,7],[1,13],[0,11],[0,6],[-1,15],[-1,-8],[-1,-10],[-1,8],[-1,3],[0,12],[-3,6],[-1,22],[1,18],[-1,10],[0,10],[-1,13],[1,12],[1,3],[1,3],[1,5],[0,5],[1,-6],[1,-10],[1,3],[1,4],[0,7],[-1,5],[0,4],[0,14],[0,11],[0,23],[0,15],[1,7],[0,6],[1,1],[1,7],[-1,7],[1,8],[0,-1],[1,5],[0,10],[-1,10],[0,14],[0,14],[1,4],[1,5],[1,0],[1,12],[-1,12],[1,15],[1,10],[0,12],[1,11],[0,16],[0,10],[0,13],[-1,5],[-1,8],[0,1],[-1,-4],[-1,2],[-2,-4],[0,21],[1,19],[1,13],[0,17],[1,9],[0,10],[1,16],[0,22],[0,7],[1,7],[1,6],[1,2],[1,5],[1,6],[1,4],[0,-5],[1,-5],[1,-13],[1,0],[1,-3],[1,-6],[0,-16],[1,-6],[1,-4],[0,-6],[1,0],[1,9],[0,9],[0,17],[0,12],[1,13],[0,17],[2,10],[0,8],[1,5],[-1,7],[0,10],[-1,1],[0,8],[0,13],[1,15],[-1,3],[-1,0],[-1,2],[0,5],[-1,7],[-1,7],[-1,10],[0,17],[-1,16],[0,11],[-1,15],[0,4],[-1,-6],[-1,8],[-1,5],[-2,-2],[-2,0],[-1,1],[-1,8],[-1,3],[-1,11],[-1,6],[0,8],[0,6],[1,6],[1,-13],[0,-8],[1,-1],[1,5],[1,-1],[0,6],[0,14],[0,14],[1,-1],[0,-7],[0,-10],[1,-21],[3,-4],[0,6],[0,17],[-1,6],[-1,16],[-2,17],[0,12],[0,18],[0,15],[-1,15],[-1,11],[0,13],[-1,15],[-1,17],[-1,18],[-1,6],[0,10],[1,13],[0,8],[0,19],[-1,20],[1,20],[0,16],[-2,15],[1,13],[1,7],[0,36],[1,-5],[1,8],[0,15],[1,14],[0,15],[-1,9],[0,10],[0,16],[0,17],[1,13],[1,-2],[0,-4],[1,-1],[1,-2],[1,-5],[0,-6],[1,-6],[1,0],[1,4],[0,-1],[1,-6],[1,-5],[1,-10],[1,-13],[1,-11],[1,-4],[2,-12],[1,-6],[1,-8],[1,-6],[1,-6],[1,-8],[1,-5],[1,-4],[1,3],[-1,14],[-1,7],[-1,6],[-2,12],[-1,10],[-1,10],[-3,22],[-1,7],[-1,10],[0,9],[0,11],[-1,8],[-1,6],[0,9],[-1,7],[-2,13],[0,14],[0,3],[1,0],[1,-2],[1,-3],[0,-2],[1,-4],[1,-5],[0,-9],[1,-9],[0,-4],[2,-5],[1,-16],[1,-12],[-1,-13],[1,-13],[2,-10],[1,-2],[1,-3],[2,-2],[3,-11],[2,-6],[1,-6],[2,-14],[0,-9],[-2,-5],[1,-10]],[[13113,20213],[0,-9],[-1,8],[0,17],[1,3],[0,17],[1,-1],[0,-13],[0,-10],[-1,-12]],[[12759,20482],[2,-15],[1,9],[2,-4],[1,-5],[1,-11],[1,-16],[1,-16],[2,-20],[0,4],[1,-15],[0,-19],[-1,-26],[0,-15],[1,-14],[1,0],[0,-17],[2,-17],[-2,-29],[-4,-42],[1,-12],[-3,-9],[-4,-59],[1,4],[1,-5],[1,4],[1,-4],[1,-3],[1,-7],[2,6],[1,11],[1,34],[2,21],[2,8],[1,-18],[0,-25],[1,-15],[2,-9],[1,-3],[-1,16],[0,24],[-1,25],[1,12],[1,-11],[1,-16],[1,-11],[3,-37],[2,-13],[2,-12],[2,15],[1,0],[1,0],[3,1],[3,-2],[0,-14],[-7,-13],[-1,-11],[-1,-14],[0,-23],[0,-65],[-6,-122],[-2,-21],[-2,-1],[-8,-8],[-3,-5],[0,-1],[-1,-16],[-1,-16],[-1,-6],[-2,2],[-3,-10],[-1,13],[-1,20],[-2,44],[-2,21],[-2,9],[-2,5],[-3,4],[-1,1],[-2,-47],[0,-39],[-2,16],[-3,-15],[-2,-7],[-2,4],[-3,0],[-2,20],[-1,14],[-1,20],[-1,28],[-1,17],[0,24],[-1,22],[-2,33],[0,40],[1,24],[0,18],[-1,19],[1,23],[0,11],[2,-12],[2,-9],[1,18],[1,6],[4,-26],[2,6],[1,23],[2,31],[2,21],[-1,5],[-4,-12],[-3,1],[-3,18],[-2,15],[0,16],[-2,17],[0,22],[1,19],[0,19],[1,4],[-1,12],[1,12],[-2,10],[1,14],[1,-1],[1,-6],[1,15],[2,25],[1,11],[2,-10],[2,1],[1,5],[1,-10],[1,0],[2,-9],[1,5],[2,-12],[2,7],[1,15],[-2,16],[-2,11],[-1,28],[2,11],[2,-14],[2,-9],[1,13],[0,8],[2,8],[3,15],[2,7]],[[12876,20521],[-1,-3],[-2,0],[-1,-2],[-1,11],[1,6],[1,3],[2,-4],[1,-11]],[[12869,20527],[-1,0],[-2,9],[-1,9],[1,12],[1,4],[2,-7],[0,-16],[0,-11]],[[12857,20555],[-1,-2],[-2,6],[0,11],[-1,6],[-2,10],[1,18],[1,2],[2,8],[0,-2],[1,-10],[1,-23],[1,-5],[-1,-19]],[[12849,20644],[0,-10],[-2,7],[0,15],[1,3],[1,-15]],[[12834,20626],[-1,-3],[-1,9],[0,3],[-1,4],[0,8],[1,15],[0,-2],[1,-2],[0,-4],[1,-5],[1,-9],[-1,-14]],[[12826,20649],[-1,-1],[-1,7],[-1,7],[0,7],[1,0],[1,-2],[1,-5],[0,-13]],[[12838,20662],[-1,-9],[-1,7],[-1,12],[1,16],[1,-2],[1,-24]],[[12835,20710],[-1,-19],[-1,10],[0,20],[-1,4],[0,17],[1,-1],[0,-8],[0,-3],[2,-20]],[[12825,20731],[1,-3],[0,1],[1,-1],[0,-9],[0,-9],[-1,-2],[-1,0],[0,8],[-1,-3],[0,4],[-1,6],[0,-2],[-1,-5],[-1,-4],[0,-8],[0,-9],[-1,-4],[0,3],[-1,0],[-1,-6],[-1,-8],[0,-4],[-1,2],[-1,3],[-1,1],[0,10],[-1,9],[0,5],[0,6],[1,3],[0,1],[1,1],[1,2],[0,2],[1,2],[1,6],[1,2],[1,0],[1,-5],[0,4],[1,11],[1,5],[0,1],[1,-1],[1,-15]],[[13089,20725],[-1,-2],[-1,14],[1,6],[0,2],[1,3],[1,-7],[0,-11],[-1,-5]],[[13086,20760],[0,-17],[0,-3],[-2,-2],[-1,-7],[-2,13],[-1,6],[-1,-6],[-1,-12],[-1,6],[0,13],[0,12],[2,1],[1,3],[1,9],[2,-8],[2,-2],[1,-6]],[[12823,20799],[0,-14],[-1,0],[0,13],[0,12],[1,2],[0,-13]],[[12836,20801],[0,-12],[-1,1],[-1,15],[0,17],[1,2],[1,-17],[0,-6]],[[13005,20773],[-1,-7],[0,13],[-1,17],[0,8],[1,6],[1,16],[1,-1],[0,-15],[-1,-13],[0,-8],[0,-16]],[[12729,20803],[-2,-10],[0,8],[-1,15],[0,17],[-1,6],[1,6],[2,6],[1,-5],[1,-4],[0,-14],[-1,-13],[0,-12]],[[12736,20869],[1,-1],[1,1],[1,-1],[2,-15],[1,-23],[0,-21],[0,-33],[0,-16],[-1,-10],[0,-6],[-1,-16],[1,-18],[-1,-36],[-2,-21],[-4,-4],[-1,7],[-1,16],[1,28],[-1,33],[0,36],[1,21],[1,27],[1,27],[0,23],[1,2]],[[12699,20816],[2,-1],[5,3],[2,3],[1,2],[2,-5],[2,13],[3,2],[2,3],[2,-25],[3,-8],[2,1],[0,-11],[1,-16],[2,-14],[1,-23],[-2,-22],[0,-18],[1,-17],[0,-27],[-1,-22],[-1,-11],[-2,-16],[-2,-11],[-1,-2],[-2,-9],[-2,5],[-2,2],[-3,52],[-4,4],[-2,8],[-3,-7],[-3,-11],[-1,-16],[1,-12],[2,-8],[2,7],[2,7],[2,-7],[3,-30],[3,-22],[0,-16],[-3,-38],[-3,-38],[-3,-35],[-2,12],[-3,19],[-3,17],[-3,32],[-2,36],[1,32],[1,25],[-1,4],[-2,-2],[-1,-7],[-1,2],[1,-16],[0,-22],[-1,-21],[-1,-9],[-2,-26],[-1,-38],[-1,-53],[1,-12],[1,0],[1,38],[2,41],[1,-7],[1,-18],[2,-10],[3,-8],[0,-20],[0,-32],[0,-15],[0,-22],[-2,-29],[-1,-4],[0,-19],[-2,-21],[-2,-16],[0,-15],[0,-17],[2,-13],[-1,-25],[0,-31],[-1,-53],[-2,-52],[-1,-17],[0,-13],[1,-41],[0,-27],[-1,-6],[-1,1],[-2,11],[-1,15],[-2,22],[0,24],[-2,26],[-1,19],[1,20],[-1,19],[-2,0],[-3,11],[-1,9],[0,21],[0,19],[0,21],[-2,21],[1,20],[1,15],[1,28],[2,25],[1,15],[-2,3],[-1,-13],[-3,-31],[-3,-7],[-1,4],[-1,22],[1,26],[0,31],[1,12],[4,20],[1,8],[2,5],[2,-16],[2,1],[0,16],[-1,35],[0,41],[1,19],[1,22],[2,23],[1,17],[1,-4],[1,18],[-1,21],[-2,7],[-3,-2],[-2,-7],[0,19],[-3,7],[-2,13],[1,15],[1,13],[1,10],[2,19],[1,15],[0,15],[2,5],[1,-11],[1,-25],[3,-9],[0,25],[1,31],[1,12],[1,0],[0,21],[1,29],[-1,24],[1,33],[1,14],[1,12],[1,4],[1,15],[1,6],[2,1],[2,-2],[0,-18],[1,-20],[1,-10],[1,-2],[0,-22],[0,-7]],[[12830,20915],[0,-16],[-1,4],[0,6],[0,14],[0,2],[1,-10]],[[12829,20890],[-1,-7],[-1,12],[-1,8],[-1,6],[0,9],[0,10],[0,9],[1,6],[0,-8],[1,-11],[0,-11],[1,-5],[0,-3],[1,-15]],[[12684,20931],[0,-14],[-1,-9],[-1,-1],[-1,-6],[-1,-17],[-2,-6],[-1,-10],[-1,-15],[-1,-17],[-2,-6],[-1,4],[-1,14],[1,17],[2,9],[1,12],[0,19],[0,15],[1,13],[1,0],[2,-3],[2,4],[2,11],[1,2],[0,-16]],[[12787,20998],[2,-5],[1,2],[0,-9],[2,-14],[0,-8],[1,-18],[-1,-37],[-1,-38],[-3,-44],[-1,-31],[-1,-20],[-1,-1],[-2,3],[-1,10],[-3,5],[-1,-19],[-2,-13],[-2,-9],[-3,-6],[-2,3],[-1,8],[-1,19],[-1,30],[0,26],[1,29],[3,25],[2,38],[1,23],[1,18],[2,-1],[1,3],[2,-1],[2,13],[3,6],[1,5],[2,8]],[[13100,20981],[1,-1],[1,1],[1,0],[1,-4],[1,-12],[0,-14],[-1,-11],[-1,-6],[-1,0],[-1,-8],[-1,0],[-1,7],[-2,4],[-1,13],[-1,12],[0,16],[0,4],[2,9],[1,7],[2,-17]],[[13440,20949],[1,-8],[1,0],[1,-11],[0,-16],[0,-21],[0,-13],[0,-13],[-1,-15],[-1,-16],[0,-15],[1,-11],[1,-6],[0,-16],[0,-26],[-2,-7],[-1,17],[0,19],[-1,7],[0,13],[1,17],[-1,15],[0,12],[-1,17],[0,14],[-1,0],[-1,9],[0,19],[0,12],[1,5],[1,3],[0,10],[-1,1],[-1,2],[0,20],[1,7],[1,7],[1,16],[0,19],[0,20],[1,12],[1,6],[1,-38],[-2,-5],[0,-5],[0,-12],[0,-12],[0,-20],[0,-13]],[[12951,21034],[-1,-7],[-2,2],[-1,15],[0,18],[0,13],[1,9],[1,7],[2,3],[1,7],[1,6],[1,-3],[2,-6],[-1,-24],[0,-14],[0,-10],[-2,-8],[-1,-5],[-1,-3]],[[13049,21111],[-2,-13],[-1,4],[-1,16],[1,18],[1,0],[0,-10],[1,-6],[1,-9]],[[12813,21171],[0,-15],[0,-9],[0,-11],[-1,-14],[-1,-1],[0,10],[-1,2],[-1,8],[0,18],[-1,11],[-1,-4],[0,-6],[0,10],[0,15],[0,8],[0,12],[0,12],[0,6],[0,12],[0,11],[1,7],[2,2],[1,-11],[0,-17],[-1,-8],[1,-6],[1,-8],[1,-18],[1,0],[-1,-16]],[[13035,21284],[1,-17],[2,1],[1,1],[1,-8],[1,-11],[0,-14],[1,-16],[0,-15],[1,-6],[1,9],[2,2],[0,-13],[0,-10],[-1,-6],[-2,0],[-1,7],[-1,-8],[-2,11],[0,12],[-1,-4],[-1,-5],[-2,10],[-2,6],[-2,21],[-1,18],[1,7],[1,-4],[1,-14],[1,-7],[1,9],[-1,23],[0,17],[1,4]],[[12735,21181],[1,-17],[-1,-14],[0,-18],[1,-20],[1,-32],[1,-5],[0,-20],[-1,-11],[-1,-20],[0,-17],[1,-12],[-2,-12],[-1,-9],[-2,-15],[-2,-17],[-2,0],[-2,-10],[-1,-5],[-3,-9],[-1,0],[-1,0],[-2,-7],[-1,-4],[-1,3],[-3,-13],[-2,-2],[-4,-8],[-3,4],[-1,0],[-1,12],[0,27],[-3,26],[-3,14],[-5,16],[-3,-6],[-3,4],[-1,8],[0,14],[1,20],[0,5],[2,17],[1,26],[2,15],[1,15],[3,8],[1,-1],[2,-11],[2,35],[1,3],[2,1],[0,30],[1,19],[1,-16],[1,5],[0,21],[1,18],[0,17],[0,22],[0,19],[1,20],[0,16],[1,32],[2,34],[1,6],[0,-5],[2,-6],[1,-6],[1,-16],[2,-21],[2,-16],[4,-10],[0,-14],[1,-5],[2,-6],[2,-13],[1,-25],[2,-11],[1,-15],[1,-9],[1,-9],[1,-14]],[[12655,21513],[1,-7],[1,1],[1,11],[3,-2],[3,-3],[1,-5],[2,-6],[3,13],[2,-2],[1,-6],[-1,-19],[2,2],[2,2],[2,-18],[1,-37],[-1,-33],[1,-14],[1,4],[1,18],[1,24],[0,22],[2,14],[0,15],[1,3],[2,-6],[3,-20],[2,-11],[2,-17],[1,-12],[-1,-34],[-1,-50],[0,-29],[0,-36],[-2,-29],[-4,-29],[-4,-5],[-2,-15],[0,-15],[-1,-21],[-1,-46],[-2,-21],[0,-30],[1,-36],[-2,-34],[-2,-3],[-1,-21],[-2,-19],[0,-10],[-1,0],[-1,8],[-2,15],[-1,19],[-2,19],[-2,12],[-2,5],[-4,13],[-2,20],[-1,27],[-2,23],[-3,-3],[-2,-21],[-2,5],[-2,-15],[-2,-17],[-3,-17],[-4,-42],[-2,-27],[-1,-19],[-1,-9],[0,32],[2,8],[-1,16],[-1,17],[1,10],[1,10],[1,-3],[3,6],[1,14],[2,27],[0,35],[2,57],[0,7],[3,-13],[1,21],[-1,12],[-2,18],[1,20],[1,5],[2,-9],[1,21],[1,21],[1,5],[2,6],[3,23],[1,4],[2,7],[2,10],[1,8],[0,16],[-2,12],[-1,9],[0,13],[-4,3],[-1,2],[-2,3],[-2,5],[-1,29],[1,34],[2,26],[2,21],[1,14],[1,11],[0,16],[2,-17],[0,-16]],[[12808,21490],[-1,-11],[-1,11],[-2,11],[1,13],[0,15],[2,17],[2,-3],[1,-7],[0,-17],[-1,-11],[-1,-18]],[[12758,21588],[1,-29],[0,-20],[0,-10],[1,12],[1,22],[0,20],[1,-5],[1,4],[5,-98],[-1,-50],[2,-5],[3,16],[2,-8],[1,-1],[2,-19],[0,-22],[1,-4],[-1,-18],[-1,-9],[0,-11],[1,2],[1,5],[0,-21],[0,-19],[-2,-21],[1,-17],[2,-33],[0,-12],[-2,10],[-5,-87],[-2,-15],[-2,-27],[-1,5],[-1,25],[-1,7],[-1,-43],[-3,-20],[-2,-26],[-1,-29],[-1,-32],[0,-16],[-1,0],[0,6],[-1,13],[0,7],[-1,18],[-1,11],[-1,26],[-2,4],[-1,12],[-1,14],[-2,6],[-1,-7],[0,21],[-1,15],[-1,31],[-1,29],[1,8],[1,19],[-1,15],[-2,23],[-3,17],[-2,23],[-3,31],[0,28],[-3,40],[2,24],[0,22],[1,3],[1,17],[0,23],[0,14],[-2,2],[0,17],[1,14],[1,4],[1,1],[1,-4],[0,-25],[1,-14],[1,12],[1,15],[-1,22],[2,27],[2,14],[2,-4],[1,-4],[1,-10],[1,-13],[0,9],[2,16],[2,-10],[2,7],[3,9],[2,1]],[[12773,21621],[0,-3],[-1,10],[-1,14],[0,15],[1,7],[0,-10],[1,-4],[0,-16],[0,-13]],[[12982,21662],[-1,-16],[-1,8],[1,19],[1,6],[0,-17]],[[12985,21643],[-1,-6],[-1,7],[1,11],[0,15],[0,16],[0,9],[1,-7],[1,-20],[-1,-15],[0,-10]],[[12828,21693],[1,-2],[1,1],[1,-2],[1,-8],[1,-15],[-1,-6],[-1,6],[0,9],[-1,0],[0,-4],[-1,-13],[0,-9],[0,-12],[1,-5],[-1,-12],[0,-6],[-1,-10],[0,-15],[1,-21],[-1,-15],[-1,11],[0,14],[-1,11],[-1,11],[0,13],[0,26],[0,27],[1,23],[0,10],[0,7],[2,-3],[0,-11]],[[12684,21663],[-1,-5],[-1,10],[0,13],[-1,8],[-1,10],[-1,11],[0,11],[1,14],[1,-1],[1,-1],[1,-6],[1,-4],[1,-6],[0,-13],[0,-13],[0,-12],[-1,-6],[0,-10]],[[12819,21561],[0,-16],[1,4],[1,5],[2,18],[0,13],[1,7],[1,-6],[0,-12],[1,-18],[-1,-13],[-1,-3],[-1,-6],[0,-18],[-2,-1],[-1,1],[0,-12],[0,-25],[-1,-23],[1,-21],[-1,-28],[0,-19],[-1,-22],[-1,-18],[0,-15],[-1,3],[0,12],[1,17],[0,17],[-1,17],[-1,-8],[-1,-9],[0,8],[0,10],[0,19],[0,24],[-1,-6],[-1,34],[1,68],[0,20],[2,30],[1,32],[2,19],[2,20],[0,29],[1,22],[0,11],[1,14],[1,2],[-1,-76],[-1,-2],[0,-13],[0,-27],[-1,-34],[-1,-25]],[[12688,21682],[-1,-3],[-1,12],[-1,43],[1,6],[1,3],[1,-5],[1,-5],[1,-16],[-2,-20],[0,-15]],[[12663,21657],[0,-11],[-2,1],[-1,-2],[-2,2],[-1,-2],[0,21],[-1,10],[-1,3],[-1,6],[0,17],[0,18],[0,14],[0,12],[1,12],[1,12],[1,1],[0,-2],[1,-9],[1,-1],[1,-14],[1,-26],[1,-16],[0,-17],[0,-18],[1,-11]],[[12829,21761],[1,-8],[0,5],[1,11],[1,6],[0,7],[1,-1],[1,-1],[0,-10],[-1,-12],[1,-13],[1,2],[0,15],[1,6],[0,-1],[1,-3],[0,-7],[0,-12],[2,-2],[-1,-11],[-1,-2],[0,-10],[-1,13],[0,-11],[-1,-8],[-1,-12],[-1,-4],[0,24],[-1,11],[-1,2],[-1,-1],[0,-5],[-1,3],[-1,5],[-1,2],[0,6],[-1,12],[0,15],[1,12],[0,1],[1,-1],[1,-14],[0,-9]],[[12747,21810],[-1,-1],[-2,3],[0,14],[1,5],[0,-3],[1,-1],[1,-6],[0,-11]],[[12678,21779],[-1,-18],[-1,3],[-1,9],[0,13],[0,18],[2,11],[0,17],[1,7],[0,-19],[0,-16],[0,-25]],[[12701,21978],[1,-3],[1,4],[1,3],[0,-22],[-1,-4],[-1,-14],[-2,-33],[-1,11],[0,-16],[-1,-23],[-1,-10],[-1,-5],[-1,-11],[0,-20],[-1,-9],[-1,10],[0,14],[-1,15],[1,13],[1,22],[2,27],[0,13],[-2,-1],[0,-11],[-1,-12],[-1,-13],[-1,-4],[0,18],[0,17],[0,14],[0,20],[1,9],[1,2],[1,5],[1,3],[1,-9],[1,-11],[2,-7],[0,-10],[1,-2],[0,10],[0,10],[1,10]],[[12687,21955],[-1,-6],[-2,5],[-1,12],[0,9],[1,13],[0,8],[1,-3],[1,-11],[1,-8],[1,-5],[1,-5],[-2,-9]],[[12744,21910],[-1,0],[-2,6],[-2,10],[-2,16],[-2,13],[0,9],[1,4],[2,5],[0,12],[1,17],[1,5],[0,-29],[1,-21],[1,-12],[1,-21],[1,-14]],[[12733,22029],[-1,-4],[0,23],[0,12],[2,14],[1,2],[0,-12],[0,-14],[0,-18],[-2,-3]],[[13007,22075],[-1,-9],[-1,0],[0,10],[-1,3],[0,14],[0,15],[2,7],[-1,-18],[2,-4],[0,-18]],[[12701,21978],[-2,2],[0,14],[-1,20],[1,19],[0,19],[1,12],[0,15],[-1,-4],[-2,-7],[-3,-14],[-2,4],[-1,6],[1,18],[-1,13],[-2,13],[0,22],[-2,19],[1,4],[1,-5],[2,-6],[1,2],[2,-3],[1,0],[1,-1],[1,-4],[2,-11],[1,-6],[1,-4],[1,-18],[1,-8],[1,-3],[1,-12],[-1,-5],[-1,-2],[1,-17],[0,-19],[-1,-33],[-2,-20]],[[12975,22183],[0,-2],[-1,4],[-1,11],[0,9],[1,0],[0,-4],[1,-6],[0,-12]],[[12745,22284],[-1,-9],[-1,5],[-1,5],[-1,9],[0,11],[0,16],[0,18],[1,1],[1,2],[1,-24],[1,-14],[0,-20]],[[12761,22396],[1,-15],[-1,3],[-2,6],[1,16],[-1,21],[1,-2],[1,-11],[0,-5],[0,-13]],[[13062,22415],[0,4],[-1,14],[0,15],[1,-11],[0,-12],[1,-8],[0,-1],[-1,-1]],[[13059,22471],[-1,-13],[-1,1],[0,6],[-1,18],[0,15],[0,7],[1,-5],[1,-14],[1,-15]],[[12782,22517],[0,-1],[-1,6],[1,15],[1,8],[1,4],[1,-9],[-1,-10],[-1,-8],[-1,-5]],[[12728,22719],[-1,-17],[-1,3],[-1,12],[-1,12],[-1,8],[1,8],[1,8],[1,5],[1,-2],[1,-8],[0,-11],[0,-18]],[[12755,22749],[-1,-22],[-1,8],[-1,11],[-2,13],[1,16],[0,21],[1,-11],[1,-6],[0,-10],[1,-13],[0,-4],[1,-3]],[[12697,22902],[2,0],[1,0],[1,-8],[2,5],[1,-14],[1,-3],[1,-15],[1,-7],[2,-17],[2,-8],[3,-24],[0,-25],[1,0],[1,-4],[2,-3],[2,-13],[0,-20],[-2,-15],[0,-23],[2,-14],[-2,-21],[1,1],[1,2],[2,3],[1,4],[1,2],[2,2],[1,-5],[-1,-17],[2,4],[1,2],[1,3],[2,11],[1,-4],[3,-5],[3,-2],[1,11],[2,-3],[1,-5],[1,8],[1,18],[1,-9],[5,-27],[2,-22],[0,-11],[2,3],[1,-10],[1,16],[3,25],[-2,25],[2,11],[1,-3],[2,1],[1,5],[1,-11],[2,-7],[1,6],[-3,17],[-2,11],[-2,1],[-1,18],[1,12],[1,0],[1,1],[1,-1],[2,-5],[1,-5],[1,-8],[3,-32],[-1,-25],[-1,-14],[-1,-7],[-3,9],[-1,-9],[-2,-14],[1,-16],[2,-25],[0,-22],[-2,-4],[-1,-13],[1,-14],[0,-19],[-3,-25],[-2,-4],[-2,6],[-1,13],[-1,-1],[-1,-11],[-2,-12],[-1,-11],[-2,-11],[-1,-14],[-1,-14],[-2,-9],[-3,-11],[-3,2],[-1,17],[-2,24],[-3,12],[-3,-3],[-1,-6],[-1,15],[-2,15],[1,19],[-1,-7],[-2,-7],[-1,15],[-2,23],[0,10],[-2,21],[-1,22],[0,20],[-1,19],[0,18],[0,3],[-2,-8],[1,-21],[-1,-22],[0,-21],[-2,-13],[-1,17],[-1,14],[-3,7],[-2,5],[-2,-16],[0,-12],[2,-11],[2,-6],[2,2],[2,-23],[2,-14],[1,-15],[0,-18],[0,-18],[1,-26],[0,-11],[1,-14],[2,-20],[1,-20],[1,6],[1,-6],[0,-13],[-1,-20],[0,-40],[1,-27],[-1,-16],[-1,-19],[-1,-4],[-1,-1],[-2,-6],[-5,-43],[-5,11],[-3,5],[-2,14],[-4,10],[-2,11],[-4,32],[-2,20],[-1,5],[-3,6],[0,4],[-1,5],[-2,19],[-2,15],[-1,11],[-1,20],[-1,23],[-1,6],[1,14],[-1,33],[-1,2],[-1,6],[-1,-11],[0,23],[-1,24],[-1,15],[0,17],[1,14],[-1,8],[-1,9],[-1,1],[-1,21],[-2,9],[-2,21],[0,13],[1,6],[1,11],[2,9],[2,8],[1,4],[2,3],[2,-3],[1,8],[0,7],[-1,15],[-1,7],[-1,15],[0,13],[1,7],[0,13],[1,13],[-1,23],[1,19],[1,18],[1,4],[1,0],[1,4],[1,0],[1,8],[1,8],[-1,7],[1,11],[1,3],[1,-11],[1,-12],[1,-8],[1,-26],[1,-25],[1,-16],[1,-15],[1,-23],[0,-18],[1,-9],[1,0],[0,15],[0,27],[0,40],[-1,10],[0,17],[0,10],[0,18],[1,20],[2,8],[3,17]],[[13184,22952],[-1,-5],[-1,8],[-2,11],[0,11],[0,15],[0,15],[2,1],[1,-2],[1,-12],[1,-7],[1,-5],[0,-9],[0,-5],[-1,-9],[0,-6],[-1,-1]],[[12667,22991],[0,-10],[-1,3],[0,7],[-1,9],[1,14],[-1,14],[-1,21],[1,12],[1,8],[1,1],[0,-14],[1,-3],[1,-2],[0,-10],[-1,-16],[0,-15],[-1,-19]],[[12714,23147],[-1,-16],[-1,5],[-1,3],[1,15],[2,6],[0,-13]],[[12749,23119],[-1,-3],[-1,9],[-1,10],[0,13],[0,13],[1,4],[1,6],[1,5],[2,-1],[1,-4],[0,-12],[0,-14],[0,-14],[-1,-5],[-1,-4],[-1,-3]],[[12743,23181],[1,0],[1,5],[0,-5],[-1,-12],[0,-16],[-1,-3],[0,5],[-1,-1],[-1,-4],[-1,-11],[-1,9],[0,14],[1,13],[1,15],[1,1],[1,-10]],[[12722,23161],[-1,-21],[0,-5],[0,-8],[-1,-3],[-1,1],[0,14],[-1,2],[-2,-13],[0,1],[-1,18],[0,17],[0,11],[1,10],[1,6],[0,-2],[1,-4],[2,-6],[1,-2],[0,-8],[1,-8]],[[12661,23223],[0,-8],[0,-10],[-1,-10],[-1,-1],[-1,0],[0,13],[-1,10],[2,-1],[1,6],[1,1]],[[12764,23223],[0,-8],[-1,-8],[0,-11],[-2,-5],[-1,-10],[0,-19],[-1,-15],[-1,-1],[0,14],[0,15],[0,16],[1,17],[1,10],[0,3],[1,-3],[1,-1],[1,5],[1,1]],[[12733,23248],[-2,-5],[-1,23],[2,13],[1,-31]],[[12724,23255],[0,-15],[-2,1],[-1,3],[-1,8],[-1,12],[0,19],[1,10],[1,2],[1,-1],[2,-4],[0,-7],[0,-11],[0,-17]],[[12774,23288],[0,-28],[1,12],[0,14],[1,8],[1,-1],[2,-13],[0,-15],[1,3],[1,-7],[1,-14],[-1,-12],[-1,-21],[0,-19],[0,-11],[-1,-7],[0,-22],[-1,-6],[-1,12],[-1,-4],[0,-19],[-1,-12],[2,-12],[0,-19],[0,-16],[0,-16],[0,-24],[0,-11],[0,-6],[1,17],[1,4],[1,-8],[0,-8],[1,15],[-1,17],[0,11],[-1,8],[1,4],[1,-7],[1,-3],[1,-2],[0,14],[0,14],[2,8],[2,-2],[0,2],[1,7],[-1,12],[1,24],[1,3],[0,-12],[1,-27],[2,-23],[1,-14],[2,-23],[0,-21],[-1,-16],[0,-10],[-1,-6],[0,-14],[1,-17],[-1,-19],[1,2],[0,9],[1,-2],[1,-125],[-1,-17],[-1,-9],[-2,-42],[0,-58],[-1,8],[-1,-5],[0,-16],[0,-21],[-2,-19],[0,-15],[0,-7],[-1,-9],[0,-15],[-1,-12],[-2,14],[-1,21],[-2,14],[-1,16],[-1,12],[-1,15],[-2,21],[-2,17],[-1,16],[-1,15],[-1,11],[-1,21],[-1,1],[0,7],[1,6],[-2,7],[-1,7],[-1,10],[0,19],[0,14],[-1,15],[-2,7],[-1,4],[-1,2],[-2,27],[0,20],[-1,-2],[-1,17],[2,0],[0,-5],[1,3],[2,-3],[2,12],[1,16],[-1,11],[0,3],[6,4],[0,7],[0,10],[-5,3],[1,9],[0,5],[0,16],[-1,-11],[-1,3],[0,13],[0,4],[-1,7],[-1,2],[-1,15],[-1,6],[1,16],[-2,7],[0,10],[1,3],[1,13],[-1,10],[2,23],[2,7],[1,7],[1,3],[2,7],[0,4],[2,8],[1,5],[1,12],[-1,6],[-1,1],[-2,-2],[0,-12],[-2,11],[1,17],[1,22],[2,20],[1,23],[0,2],[2,-9],[1,-7]],[[12684,23274],[-1,-2],[0,12],[-2,17],[1,4],[1,2],[1,-8],[0,-12],[0,-13]],[[12758,23346],[-1,-5],[0,13],[1,10],[1,2],[1,-5],[-1,-12],[-1,-3]],[[12784,23347],[-1,-4],[-1,3],[-1,-5],[0,21],[1,9],[1,2],[1,-9],[0,-17]],[[12780,23325],[0,-14],[-1,7],[-1,19],[-1,16],[1,16],[1,9],[1,-2],[1,-7],[0,-19],[-1,-13],[0,-12]],[[12614,23405],[1,-3],[1,-1],[1,-8],[2,-12],[0,-29],[0,-29],[1,-15],[1,-29],[0,-34],[-2,-18],[-1,-12],[2,-7],[1,-4],[2,-19],[0,-29],[-1,-27],[-1,-12],[-1,13],[-2,1],[-2,-12],[0,-15],[1,-9],[2,-11],[2,-13],[1,-11],[-2,-11],[-3,-40],[1,-18],[-1,-26],[-2,-12],[-2,-1],[-2,-3],[-3,3],[-2,8],[-2,5],[0,10],[0,15],[-3,35],[-2,27],[-1,18],[0,17],[0,20],[0,18],[1,17],[-2,8],[-3,16],[0,26],[-1,11],[1,26],[0,24],[0,30],[1,25],[1,16],[2,12],[2,-3],[1,0],[1,2],[1,11],[1,1],[1,11],[0,15],[1,9],[2,14],[0,7],[2,-1],[2,4],[1,2],[1,-3]],[[12760,23410],[0,-11],[-1,0],[-1,1],[-1,-11],[-2,6],[1,14],[1,15],[2,5],[1,-7],[0,-12]],[[12759,23454],[-1,-7],[-2,1],[2,15],[1,6],[1,-3],[-1,-12]],[[12771,23335],[-2,-45],[-2,0],[-1,19],[0,14],[-1,-10],[-1,-19],[-1,-4],[-1,19],[0,20],[1,13],[1,17],[2,22],[0,17],[1,16],[-1,10],[-1,4],[-1,6],[0,17],[-1,2],[0,21],[0,22],[2,9],[1,4],[1,-4],[0,-14],[1,-8],[0,-18],[1,-26],[1,-17],[1,-8],[1,-18],[0,-30],[-1,-31]],[[12772,23478],[-1,-6],[-1,2],[-1,13],[0,6],[-1,5],[1,18],[1,14],[1,5],[0,-13],[0,-15],[2,-16],[-1,-13]],[[12764,23668],[1,-20],[-1,-10],[-1,13],[-1,3],[0,-14],[-2,-12],[0,-31],[-2,-30],[-2,-17],[-1,5],[-1,-14],[-1,-13],[-2,-9],[-2,-22],[0,-35],[0,-23],[-1,-26],[-1,-32],[2,-17],[1,20],[1,11],[2,-12],[0,-23],[0,-23],[0,-24],[1,-28],[-1,-17],[-1,-5],[-1,-9],[0,-12],[-1,-8],[1,-11],[-1,-23],[-1,-8],[-1,7],[1,9],[-2,6],[-2,-5],[0,-8],[-1,0],[0,12],[0,16],[-1,19],[-1,6],[-1,14],[1,17],[1,6],[3,1],[0,22],[-2,0],[-2,10],[0,9],[-2,10],[0,-24],[-1,-17],[0,-27],[0,-15],[0,-16],[-3,24],[0,17],[-1,5],[3,63],[1,17],[1,9],[-1,5],[0,29],[-1,24],[-1,21],[1,18],[0,18],[2,13],[0,9],[1,10],[2,-6],[1,-3],[0,19],[3,24],[1,9],[0,-10],[2,12],[1,26],[0,15],[1,21],[2,13],[1,6],[1,11],[1,6],[1,-8],[2,9],[1,7],[3,-9]],[[12750,23633],[-1,-13],[-1,9],[-1,18],[1,18],[-1,19],[1,4],[2,5],[1,4],[1,-5],[0,-10],[0,-22],[-1,-14],[-1,-13]],[[12738,23664],[3,-24],[1,-18],[1,16],[-1,22],[-1,33],[1,0],[1,-20],[1,-2],[1,-18],[0,-17],[0,-17],[-1,-32],[-2,-14],[0,-22],[-1,-10],[-1,-8],[-1,-10],[-2,-11],[-1,-13],[-1,-21],[0,-14],[-1,-19],[-1,-10],[0,-21],[0,-22],[-1,-7],[-1,13],[-1,15],[-2,-3],[-1,24],[-1,22],[-2,-3],[0,15],[-3,-17],[-2,14],[-3,4],[-1,19],[2,30],[3,35],[3,34],[0,26],[3,4],[1,9],[0,18],[-1,1],[-1,-5],[-1,-10],[-1,11],[-2,13],[3,15],[1,-6],[3,6],[-1,21],[2,11],[3,-3],[1,-9],[3,0],[2,-7],[0,-18]],[[13295,23466],[-1,-13],[-2,-2],[-1,9],[-2,3],[-2,-3],[-2,-9],[-1,-9],[-1,-11],[-2,-10],[-1,-8],[-1,-12],[-1,-15],[-2,-11],[-1,-18],[-1,-13],[-1,-19],[-2,-6],[0,11],[-1,1],[-1,-6],[-2,-11],[-2,-5],[-1,2],[-1,-2],[-1,-8],[-2,-1],[0,7],[-2,-7],[-2,12],[0,11],[0,12],[0,3],[-1,0],[-1,10],[1,11],[1,11],[-2,-1],[-1,-8],[-1,-7],[-1,-7],[-2,-8],[-2,-6],[-2,-3],[-1,7],[-1,12],[0,12],[3,15],[3,18],[1,12],[1,9],[1,12],[2,23],[1,3],[2,20],[1,10],[1,6],[2,16],[3,13],[2,10],[15,108],[1,15],[1,9],[4,22],[2,2],[2,16],[4,5],[1,-23],[2,-30],[2,-23],[0,-33],[1,-20],[0,-20],[0,-34],[-2,-21],[-2,-15],[-1,-11],[-1,-9]],[[12775,23682],[-1,-13],[0,16],[0,15],[1,17],[1,-5],[0,-15],[-1,-15]],[[12901,23861],[1,-25],[-2,10],[-1,12],[-1,16],[1,23],[1,0],[1,-24],[0,-12]],[[12873,24017],[4,-54],[0,-63],[0,-12],[0,-16],[0,-18],[0,-6],[0,-8],[0,-7],[0,-7],[-1,-12],[0,-5],[1,-2],[0,-2],[0,-4],[0,-4],[0,-7],[-1,-4],[0,-5],[-1,2],[0,2],[0,3],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,3],[-2,4],[0,1],[-2,5],[-1,6],[1,11],[0,4],[1,11],[-1,6],[0,1],[0,51],[-2,115],[2,-8],[2,13],[4,0]],[[12837,23979],[0,-16],[-1,4],[0,-3],[-1,6],[-1,6],[0,25],[0,16],[1,9],[1,-8],[0,-14],[1,-3],[0,-12],[0,-10]],[[12669,24214],[-1,-8],[0,14],[-1,2],[1,16],[1,10],[1,3],[0,-11],[0,-11],[-1,-15]],[[12857,24251],[-1,-15],[0,6],[-2,20],[0,22],[-1,21],[0,7],[2,-10],[0,-12],[1,-16],[1,-23]],[[12841,24341],[1,-3],[2,-13],[1,2],[0,-9],[0,-13],[1,-24],[1,2],[1,12],[1,-8],[1,7],[1,10],[1,-18],[0,-23],[2,-25],[1,-19],[2,-38],[3,-30],[2,-63],[-1,-6],[0,-22],[0,-25],[-4,-10],[-2,4],[-4,16],[-5,-3],[-2,3],[-2,-7],[1,-18],[-1,-17],[-1,10],[-2,12],[-1,6],[-1,17],[-2,52],[0,31],[0,19],[1,15],[1,25],[1,27],[1,26],[2,15],[0,16],[-1,30],[0,23],[1,14]],[[12888,24366],[1,-12],[0,-13],[1,-15],[0,-10],[0,-28],[-2,-11],[-1,-11],[-1,-1],[-1,37],[-2,-14],[1,-26],[1,-31],[0,-13],[-2,29],[-3,19],[1,26],[1,-2],[1,14],[1,13],[3,-12],[0,19],[1,0],[-1,18],[1,24]],[[12841,24341],[-1,5],[-2,-7],[0,22],[1,13],[1,14],[0,-18],[1,-17],[0,-12]],[[12877,24440],[1,-18],[1,11],[1,-1],[1,-12],[0,-2],[3,-33],[0,-19],[-1,-9],[-1,-6],[-1,-4],[0,-19],[0,-21],[-1,19],[0,17],[-1,-34],[1,-15],[-1,-16],[-1,-5],[0,17],[-2,31],[-1,4],[-1,2],[-1,14],[0,16],[2,39],[1,-1],[1,-15],[1,12],[-2,34],[1,14]],[[12888,24366],[-3,19],[-1,18],[-1,29],[0,13],[2,-3],[0,-12],[1,-5],[1,-8],[2,-5],[2,-11],[0,-25],[-1,-10],[0,13],[-1,-10],[-1,-3]],[[12738,24526],[1,-10],[2,8],[4,-4],[1,-2],[10,-35],[1,-25],[1,-5],[1,-2],[2,0],[2,51],[0,-3],[1,-9],[2,5],[1,-2],[0,-12],[1,2],[3,-4],[5,-22],[0,-36],[0,-8],[0,-36],[-2,-156],[-3,-32],[-1,8],[-1,11],[-1,8],[-3,8],[-1,-15],[0,-13],[-3,3],[-5,-14],[-2,-13],[-3,-7],[-2,-19],[-3,-26],[0,-15],[4,4],[5,38],[4,23],[7,13],[2,-9],[2,-61],[-1,-26],[-1,-13],[4,-6],[1,-15],[0,-23],[2,-16],[-1,-42],[-1,-10],[-1,-14],[0,-14],[5,-55],[-2,-10],[-1,-32],[1,-15],[1,-4],[0,-13],[-1,-12],[-2,7],[-1,-14],[-1,-3],[-1,17],[-3,8],[-1,-12],[1,-38],[-2,-13],[-1,-8],[-2,-2],[-2,-18],[-1,-15],[-1,-7],[-1,-9],[-1,-5],[-1,5],[-1,13],[1,11],[0,7],[1,4],[-1,17],[1,19],[-1,9],[-1,-6],[-1,-3],[0,22],[0,26],[0,28],[-1,3],[0,10],[1,34],[-3,31],[-1,-9],[2,-11],[-2,-22],[-2,-39],[-3,-15],[-1,8],[-1,-10],[-1,-8],[-1,-9],[-4,-1],[-1,-5],[-2,-11],[-1,-9],[-3,-4],[0,-12],[-1,-7],[-2,-3],[-2,-1],[0,34],[1,39],[-1,38],[0,31],[-3,30],[0,12],[1,15],[1,9],[-2,-4],[-1,-11],[-1,-37],[2,-37],[-2,-60],[-3,-44],[-1,-13],[-1,-18],[-1,-10],[-1,-23],[-1,-16],[-1,-14],[-2,-5],[-1,-12],[0,-22],[-1,-20],[-2,-11],[-5,-1],[-1,-3],[-1,-4],[-1,-8],[0,-10],[-1,-5],[-1,1],[-2,-6],[-1,-11],[0,-14],[-1,-26],[-1,-27],[-1,-14],[0,-8],[-1,-24],[-1,-21],[-1,1],[0,20],[0,16],[0,19],[0,20],[-2,0],[0,16],[1,24],[-1,14],[-1,11],[-1,3],[-1,-14],[-1,-7],[-1,-12],[0,-9],[-1,-13],[-1,-8],[-1,-12],[-1,1],[-1,2],[-1,-16],[0,-10],[1,-12],[0,-10],[1,-11],[1,-11],[1,-7],[1,-10],[0,-4],[2,-2],[1,-6],[1,-9],[1,-5],[-1,-9],[-1,-17],[-1,-21],[-1,9],[-1,8],[-1,-21],[-2,9],[-1,0],[-1,-12],[-2,-1],[0,-20],[-2,0],[-1,11],[0,9],[-2,-14],[-2,-13],[-1,-8],[-1,-13],[0,-17],[-1,-10],[-1,-8],[-1,-3],[-1,-1],[0,4],[-1,20],[0,18],[0,8],[0,18],[0,20],[-1,13],[-1,16],[0,-6],[-1,-14],[-1,1],[0,-16],[-1,-7],[-1,-6],[0,-6],[-1,2],[-1,5],[-1,-10],[-1,20],[-1,17],[0,16],[-2,12],[-2,-4],[-4,-34],[-1,-9],[0,7],[-1,9],[-1,6],[0,17],[-1,27],[-1,26],[-1,23],[0,28],[-1,28],[0,16],[1,-1],[1,-11],[1,3],[1,18],[-1,13],[0,9],[-1,14],[0,11],[1,10],[1,-2],[1,-15],[1,-13],[0,17],[1,9],[0,6],[1,8],[1,10],[0,17],[1,16],[0,18],[0,15],[0,12],[1,7],[1,7],[1,18],[1,12],[1,11],[0,3],[1,23],[1,18],[0,-2],[1,2],[3,63],[0,15],[1,19],[2,14],[1,-9],[1,8],[1,23],[1,14],[4,48],[1,21],[0,15],[-1,8],[1,19],[0,38],[1,15],[1,9],[1,13],[1,3],[1,-8],[2,26],[2,4],[1,16],[3,-9],[4,13],[5,2],[4,-16],[2,6],[3,-24],[1,-14],[5,-8],[2,1],[-2,33],[2,13],[1,-38],[1,18],[1,-7],[1,0],[1,1],[0,-13],[1,-3],[1,19],[1,-14],[2,-5],[3,10],[1,3],[1,50],[0,14],[-1,3],[-2,5],[0,13],[-2,1],[-6,10],[-9,1],[-3,11],[-6,21],[-2,11],[-3,2],[-3,24],[-1,32],[0,44],[1,5],[1,6],[1,5],[1,13],[1,4],[-2,8],[0,7],[1,8],[1,-3],[0,-4],[0,20],[0,9],[1,4],[2,-19],[2,-12],[2,-19],[3,-8],[3,-21],[7,-37],[3,-1],[4,-2],[2,11],[4,8],[0,10],[2,5],[1,11],[3,37],[1,6],[3,7],[2,41],[0,18],[1,11],[3,-6],[1,7],[-2,14],[0,9],[1,3],[1,16],[4,13]],[[12712,24468],[-1,-3],[0,12],[-1,21],[0,15],[0,13],[1,7],[3,-28],[0,-15],[-1,-17],[-1,-5]],[[12720,24548],[2,-30],[1,8],[0,-23],[-1,-37],[-1,-35],[-3,-30],[-1,-17],[-1,-22],[-1,5],[-3,-11],[-3,-10],[-5,1],[-7,21],[1,16],[1,13],[1,0],[1,21],[3,7],[1,-2],[1,17],[2,26],[0,-2],[5,-10],[2,3],[1,16],[2,4],[1,-4],[1,-1],[0,-4],[0,10],[0,13],[-1,14],[-1,8],[-1,6],[0,15],[1,4],[1,1],[0,15],[1,-6]],[[12884,24544],[0,-12],[1,-12],[1,-15],[-2,7],[-2,6],[-1,7],[0,-18],[-1,1],[-1,32],[-2,0],[-1,18],[-1,10],[1,19],[2,6],[1,7],[1,-19],[1,-8],[3,-29]],[[12872,24537],[-2,-1],[0,17],[-1,13],[1,8],[0,22],[2,10],[1,-9],[0,-17],[0,-13],[0,-7],[0,-17],[-1,-6]],[[12707,24625],[1,-24],[1,-6],[0,-54],[0,-22],[0,-21],[-1,1],[-2,4],[0,8],[-1,17],[-1,9],[-1,17],[1,11],[-1,11],[0,7],[0,15],[0,24],[1,0],[2,-5],[1,8]],[[12869,24604],[-2,-19],[0,4],[-1,5],[0,30],[0,9],[1,3],[1,6],[1,-5],[0,-12],[0,-21]],[[12860,24587],[3,-77],[0,-24],[0,1],[-3,4],[-4,-2],[-1,11],[0,39],[-2,47],[2,54],[0,10],[1,2],[2,-30],[1,-4],[1,-31]],[[12867,24692],[2,-18],[-1,-10],[-2,12],[-1,6],[-2,-4],[0,14],[-2,9],[1,9],[1,5],[2,-7],[1,-6],[1,-10]],[[12678,24703],[0,-7],[-1,1],[-1,2],[-1,8],[0,12],[0,13],[1,10],[0,9],[1,1],[0,-3],[1,-13],[1,-9],[-1,-11],[0,-13]],[[12841,24716],[0,-2],[-2,16],[0,4],[-1,9],[1,31],[0,6],[1,8],[1,-1],[1,-26],[1,-10],[0,-21],[-2,-5],[0,-9]],[[12672,24785],[0,-5],[1,2],[-1,-18],[0,-6],[-1,3],[-1,2],[-1,2],[0,-1],[0,-14],[-1,5],[0,20],[1,8],[0,18],[0,8],[1,-10],[1,-8],[1,-6]],[[12856,24921],[1,-2],[2,2],[2,-5],[2,-2],[1,-6],[2,-2],[3,3],[1,-14],[1,-24],[2,-4],[2,-3],[1,-13],[0,-58],[2,11],[1,-5],[1,-43],[-2,-3],[-1,21],[-3,14],[0,-17],[0,-2],[0,-27],[-2,-11],[-5,17],[-6,11],[-2,17],[-4,22],[0,20],[1,7],[-1,12],[1,18],[1,6],[-2,49],[1,11]],[[12867,25068],[0,-21],[-1,-11],[1,-26],[1,-17],[-1,-15],[0,-13],[-1,-4],[-1,-5],[-1,11],[-2,-3],[-1,-13],[-1,-3],[-1,3],[-2,16],[-1,21],[-1,14],[0,18],[1,29],[0,3],[1,24],[1,5],[0,10],[0,3],[1,-1],[2,-10],[0,-9],[0,-21],[1,7],[0,22],[2,11],[1,7],[1,-16],[1,-16]],[[12688,25485],[6,-32],[0,5],[1,6],[4,-13],[3,-12],[2,5],[2,-2],[1,-9],[0,-17],[1,3],[1,8],[1,4],[7,-13],[3,6],[1,-7],[0,-16],[2,-12],[2,-19],[1,-7],[2,1],[2,10],[2,-9],[1,-15],[-1,-11],[1,-8],[2,7],[1,7],[1,5],[1,-9],[1,0],[1,18],[1,4],[1,0],[1,-7],[1,17],[1,6],[1,1],[1,-8],[1,0],[1,7],[1,2],[4,2],[2,-5],[1,17],[1,-1],[2,-4],[1,-8],[1,-12],[0,1],[2,4],[1,-8],[2,3],[2,-28],[-1,-11],[-3,-2],[0,-14],[-1,-7],[0,-9],[-1,-6],[-1,-10],[-2,1],[-1,-19],[1,-16],[0,-14],[-1,-25],[1,-5],[1,-3],[0,-13],[1,-14],[0,-15],[1,-5],[1,-20],[-1,-20],[-3,-42],[0,-10],[-1,-10],[1,-24],[1,0],[1,2],[1,0],[0,15],[1,12],[0,-3],[1,11],[1,9],[1,22],[1,-4],[1,6],[2,-5],[1,1],[0,13],[-2,28],[0,7],[-1,10],[-2,22],[-1,20],[-1,10],[0,15],[0,10],[2,3],[0,12],[3,30],[-1,9],[2,29],[1,10],[2,-5],[0,-16],[2,16],[-1,5],[2,11],[1,5],[1,13],[1,24],[1,2],[3,-2],[1,2],[2,-7],[2,-27],[1,-2],[0,-12],[1,-3],[2,3],[1,1],[1,11],[2,12],[2,24],[2,7],[1,-13],[6,-26],[-1,-15],[1,-7],[0,-10],[1,-14],[2,-9],[3,-49],[1,-45],[0,-49],[0,-24],[-1,-5],[-1,15],[-2,32],[-1,3],[0,-38],[1,-41],[2,-27],[1,-15],[2,-8],[3,22],[0,32],[2,13],[1,-5],[1,-17],[-2,-35],[-4,-20],[-2,-2],[-1,-17],[1,-4],[0,7],[1,0],[1,-1],[1,-22],[1,9],[1,2],[1,-1],[1,4],[0,-5],[1,-15],[-1,-8],[3,-32],[3,-5],[2,19],[4,-15],[0,-1],[2,-8],[0,-29],[0,-29],[1,-24],[1,-40],[-1,-33],[-3,-118],[0,-4],[1,-19],[2,21],[0,34],[2,9],[0,-18],[2,-26],[2,-18],[1,6],[1,-14],[1,0],[1,-24],[-1,-5],[-3,-104],[0,-14],[-1,4],[-1,17],[-1,1],[0,-23],[0,-21],[-3,3],[0,-14],[0,-13],[1,-5],[1,-7],[0,-12],[-1,-13],[-1,-12],[-1,6],[-1,-9],[0,-25],[-1,-20],[0,-23],[1,-4],[0,-18],[-2,50],[-1,13],[-1,11],[0,-18],[1,-92],[-3,-27],[-1,-12],[-1,-11],[-3,50],[-2,49],[-2,12],[-1,11],[-1,9],[-2,5],[1,-36],[-1,-21],[2,-14],[1,-32],[0,-22],[-1,-15],[2,10],[1,-10],[1,-17],[1,-4],[2,-29],[-1,-30],[2,-39],[1,9],[1,-17],[0,-9],[3,-39],[0,-16],[-1,-4],[-1,-7],[0,-27],[1,-8],[2,-18],[3,-17],[2,-28],[1,-11],[1,35],[1,17],[3,6],[3,-9],[3,44],[2,13],[2,-3],[2,-26],[1,-4],[2,-23],[0,-13],[1,-8],[1,12],[-1,15],[2,-6],[0,9],[2,-1],[1,-23],[1,-13],[-1,-28],[0,-49],[1,-22],[-1,-9],[0,-18],[-1,-15],[2,-24],[1,-15],[-1,-12],[2,10],[-1,14],[2,11],[2,-3],[1,-8],[1,16],[0,3],[1,2],[0,8],[0,6],[0,2],[1,-3],[0,-1],[1,-4],[0,-2],[1,-1],[0,1],[1,1],[0,3],[0,9],[0,12],[0,8],[1,19],[2,3],[1,1],[1,12],[1,-6],[2,-8],[1,7],[1,-27],[-1,5],[0,-24],[1,3],[1,9],[0,24],[1,4],[1,-5],[1,-14],[1,-13],[1,37],[-1,7],[0,13],[-1,15],[2,-10],[0,-11],[1,16],[2,8],[0,-17],[-1,-19],[1,-2],[1,16],[0,-14],[1,-16],[0,-18],[2,-10],[0,-11],[1,-3],[1,-9],[-2,-7],[-1,-10],[-1,-14],[0,-15],[-1,-10],[0,-3],[-1,-11],[1,-3],[1,10],[1,7],[0,11],[0,13],[4,26],[1,14],[-1,9],[0,21],[1,10],[0,3],[1,-11],[1,-13],[-1,-10],[1,-3],[1,0],[1,1],[0,7],[1,3],[0,-6],[1,-17],[1,-3],[1,-19],[1,-2],[2,-17],[2,-17],[0,-10],[2,-25],[2,-15],[3,-13],[2,-5],[3,-17],[2,-18],[1,-22],[1,-12],[0,-16],[0,-14],[1,-17],[1,-19],[2,-19],[3,-29],[3,-28],[4,-22],[4,-25],[5,-41],[3,-21],[3,-36],[1,-15],[1,-16],[0,-18],[0,-24],[2,-27],[1,-15],[-1,-9],[-2,16],[-1,11],[0,-17],[-1,-10],[3,-13],[2,-18],[2,-13],[2,-17],[1,19],[1,-9],[0,-2],[2,-21],[1,-23],[1,-17],[-2,0],[-1,-6],[-1,-13],[1,-10],[1,4],[2,-6],[2,-14],[2,-15],[3,-19],[0,-23],[3,-42],[3,-34],[1,-19],[1,-17],[1,-14],[1,-11],[1,-14],[-1,-19],[2,-1],[1,-15],[1,-23],[2,-24],[1,-18],[1,-23],[0,-21],[1,11],[1,-15],[0,-22],[-1,-7],[0,-19],[-1,-16],[-2,-18],[0,-22],[0,-14],[0,-7],[-1,-15],[0,-16],[1,-15],[1,-1],[1,-33],[0,-13],[2,1],[1,-25],[1,-18],[2,-15],[1,-11],[1,-15],[0,-13],[-1,-4],[-1,4],[0,1],[0,-21],[1,-13],[1,12],[1,8],[1,-20],[0,-34],[-2,-30],[-1,17],[-1,-6],[-1,-14],[-2,9],[-1,15],[-2,18],[-1,-6],[0,-28],[1,-4],[1,-9],[2,-15],[1,-13],[1,-24],[1,-20],[-1,-16],[-2,22],[-1,10],[-1,1],[1,-18],[1,-16],[-1,-15],[-1,-10],[-1,-11],[0,-14],[-1,-3],[-2,-11],[-1,-3],[-1,-10],[-1,7],[-2,8],[-1,13],[-1,16],[-1,15],[0,13],[0,9],[-1,-9],[-1,4],[-1,-2],[-1,12],[0,12],[-2,11],[-1,4],[-2,-6],[0,-23],[-2,4],[-2,21],[-2,16],[0,12],[-2,16],[-1,2],[-2,-7],[0,3],[-2,3],[3,-22],[0,-15],[0,-15],[1,-6],[1,-3],[1,-5],[2,-14],[1,1],[2,-11],[1,-7],[1,-8],[1,-2],[1,-4],[2,-12],[1,-15],[1,-2],[1,-5],[1,-4],[1,-3],[1,-7],[1,-17],[0,-15],[2,-9],[1,-10],[1,-13],[1,-17],[0,-20],[0,-15],[2,-15],[0,-5],[0,27],[1,16],[-1,29],[-2,26],[1,15],[2,8],[1,10],[1,-16],[3,-9],[3,17],[2,14],[2,-9],[1,-25],[-3,-5],[0,-30],[1,-53],[-1,-36],[-1,-26],[-1,-7],[-1,-12],[0,-22],[0,-23],[1,-20],[0,-16],[1,19],[2,48],[2,26],[3,-12],[0,27],[0,28],[-1,28],[3,10],[1,37],[-1,23],[-1,24],[2,29],[3,-2],[3,11],[3,-18],[3,-35],[4,-48],[0,-39],[1,-36],[2,-50],[1,-49],[0,-45],[-4,-24],[0,-22],[3,7],[4,-8],[1,-22],[0,-31],[0,-27],[2,-34],[3,-42],[2,-33],[1,-30],[-1,-13],[2,-24],[-1,-28],[-1,-23],[0,-16],[2,13],[1,19],[1,2],[2,3],[1,18],[2,0],[2,-4],[1,-17],[2,-22],[3,-29],[3,-16],[4,-17],[2,-13],[3,-21],[3,-22],[3,-42],[2,-40],[1,-12],[2,-35],[0,-23],[0,-17],[2,-4],[2,-16],[0,-30],[1,-17],[0,-15],[-1,-2],[-2,-3],[-1,-20],[-2,-8],[-4,10],[-3,32],[-5,41],[-4,21],[-3,38],[0,20],[-2,22],[-2,23],[-5,13],[-3,20],[-1,8],[-2,12],[-1,16],[-4,19],[-3,19],[-3,4],[-1,6],[-2,9],[-1,6],[-2,9],[-3,15],[-2,13],[-1,10],[-1,8],[-1,8],[-2,8],[-1,7],[-2,8],[0,3],[-1,10],[-1,6],[-1,-4],[-1,0],[-1,3],[-1,6],[-1,6],[0,10],[-1,-10],[0,12],[-1,13],[-1,11],[0,9],[-1,-1],[-1,-4],[-1,0],[-1,5],[-1,6],[0,9],[-1,2],[-1,2],[-1,9],[-1,3],[-1,0],[-1,13],[-1,23],[-1,21],[-1,13],[-1,14],[-1,26],[-1,11],[0,11],[-1,20],[-1,-15],[-1,13],[0,16],[0,26],[0,17],[-2,5],[-1,1],[0,6],[-1,-2],[-2,8],[-1,8],[-2,-3],[-1,13],[-1,14],[0,10],[-1,22],[-1,13],[-1,12],[-1,11],[-1,4],[-1,-5],[1,-19],[0,-19],[0,-17],[1,-48],[4,11],[1,-9],[0,-7],[2,-26],[-2,13],[-1,0],[-1,-5],[-3,5],[0,-11],[-1,-12],[0,-18],[0,-11],[-1,-10],[-1,0],[-1,-4],[-2,11],[-1,-1],[0,-23],[1,-17],[2,-15],[0,-20],[-3,-8],[0,-5],[-1,-17],[1,-25],[1,-8],[2,11],[1,14],[1,-16],[2,-8],[2,5],[2,-17],[2,-21],[2,-11],[-1,-9],[-2,-4],[-2,-28],[-2,-16],[-1,-21],[1,-20],[-1,-10],[-3,-22],[-1,-13],[-1,-10],[-1,-14],[-1,-28],[-2,-28],[-2,-24],[1,-21],[-3,-24],[-2,-7],[-2,-10],[-3,0],[-2,-17],[1,-4],[1,-2],[-1,-7],[0,-7],[-1,-4],[-1,-9],[0,-5],[-2,2],[1,13],[-1,0],[-1,2],[0,-6],[-1,6],[1,14],[-1,5],[-1,10],[-1,-8],[-1,-7],[-2,-4],[-1,-17],[0,-25],[-1,-19],[-1,-15],[-1,-23],[-1,-13],[-1,-7],[-1,-1],[-1,4],[0,-11],[1,-12],[3,-11],[3,1],[1,-17],[0,-18],[-1,-35],[1,-26],[0,-22],[-2,-48],[-1,-14],[-2,-14],[-1,-16],[-1,-16],[-2,-28],[-1,-12],[-1,-12],[0,-16],[-1,-15],[-2,-21],[-1,-18],[-1,-5],[-1,-14],[-1,-18],[0,-14],[-1,-10],[-1,-20],[0,-18],[-1,-14],[1,-17],[0,-11],[1,-16],[0,-17],[0,-9],[1,10],[0,16],[0,14],[0,20],[1,22],[1,22],[1,12],[1,12],[1,18],[1,11],[1,10],[0,19],[2,16],[1,16],[1,22],[0,20],[4,25],[1,25],[2,22],[2,24],[1,28],[1,19],[-1,24],[0,21],[1,20],[0,26],[3,31],[2,32],[2,25],[3,14],[3,16],[2,11],[1,-3],[2,-4],[1,3],[2,9],[0,-23],[2,1],[1,18],[1,22],[1,41],[0,48],[1,33],[2,4],[1,6],[1,11],[4,22],[1,31],[1,12],[1,-9],[0,-16],[1,-22],[-2,-8],[1,-19],[-1,-17],[0,-29],[0,-18],[0,-17],[2,18],[1,29],[0,15],[2,20],[1,7],[2,-24],[-1,-9],[0,-14],[1,-15],[1,8],[2,23],[1,25],[3,5],[1,-16],[1,21],[2,13],[3,8],[3,12],[3,11],[3,-2],[1,-34],[0,-43],[0,-34],[3,-20],[0,-35],[1,-37],[3,6],[4,-8],[0,15],[4,8],[1,-15],[2,-14],[1,-23],[1,16],[0,17],[2,-18],[1,-1],[2,-7],[2,-31],[3,-22],[3,-35],[1,-20],[1,-16],[-1,-10],[-1,-4],[-2,-10],[-2,-5],[-1,5],[-1,5],[-1,3],[-1,-6],[-1,-9],[-1,11],[0,16],[-1,17],[1,8],[0,19],[0,17],[-1,-5],[-1,-11],[0,-14],[-1,-23],[0,13],[-2,-14],[-2,-4],[-2,18],[2,1],[0,16],[0,30],[-2,-2],[0,-13],[-1,-12],[-1,-11],[0,-27],[0,-25],[0,-21],[-2,-4],[-3,-9],[-2,6],[-1,12],[-1,-14],[-2,0],[-2,-6],[-2,2],[-4,-14],[-3,-2],[-3,-18],[-3,6],[-1,3],[-1,-9],[-1,-9],[-1,-12],[0,-14],[-2,-12],[-1,-34],[-2,-39],[-1,-27],[-1,-31],[-3,-39],[-1,-27],[-2,-33],[0,-25],[1,-18],[1,-28],[3,-3],[1,-2],[1,-7],[1,-13],[-2,-19],[2,-10],[2,-13],[2,-12],[0,-33],[1,-47],[0,-26],[1,-11],[1,-4],[1,-11],[1,-5],[0,14],[0,28],[0,29],[-1,15],[-1,31],[-2,35],[-2,22],[-1,16],[-2,33],[-1,23],[-2,23],[0,25],[1,27],[0,17],[1,16],[2,16],[1,19],[1,-16],[2,-25],[1,1],[3,-9],[1,11],[0,33],[0,27],[-1,-6],[-1,-17],[-2,-16],[-1,19],[2,21],[2,7],[-1,23],[1,17],[1,15],[1,1],[1,-4],[2,-1],[-2,36],[2,30],[2,3],[2,-5],[1,-10],[3,5],[1,14],[1,-14],[2,-14],[1,-11],[1,-7],[-1,-13],[-3,-14],[1,-8],[2,-1],[-1,-17],[0,-12],[1,-2],[1,7],[2,11],[2,-10],[0,-29],[0,-28],[1,-21],[1,-21],[1,-36],[0,-35],[0,-32],[1,-30],[-1,-27],[-1,-23],[2,-15],[0,-23],[0,-14],[1,-8],[0,-12],[1,-11],[1,-6],[0,13],[2,9],[1,4],[0,11],[-1,16],[-1,14],[-1,5],[-1,10],[0,28],[1,5],[0,24],[-1,27],[0,18],[0,17],[-1,14],[0,14],[1,24],[0,19],[0,13],[-1,36],[1,0],[1,16],[0,26],[0,23],[-1,15],[2,19],[2,19],[1,-21],[2,-20],[2,-18],[2,0],[1,8],[1,12],[-1,6],[1,24],[2,7],[2,-3],[-1,-14],[0,-11],[3,5],[2,20],[1,8],[1,15],[1,10],[2,-15],[3,-1],[1,-22],[-1,-26],[2,-22],[-1,-13],[-1,-12],[2,-13],[2,0],[2,-8],[0,-29],[-2,-20],[3,0],[2,-10],[0,-15],[0,-13],[-2,-12],[2,-6],[3,-12],[1,-22],[0,-16],[0,-16],[2,12],[0,16],[2,25],[1,16],[3,-20],[1,6],[2,14],[2,-18],[-1,-26],[-2,-13],[0,-12],[1,-23],[2,-21],[1,-10],[2,-7],[0,-17],[0,-18],[-1,-18],[1,-21],[1,-11],[-2,-28],[2,-18],[0,-23],[0,-19],[1,-9],[1,-3],[1,-12],[1,12],[1,7],[0,-21],[-1,-12],[-1,-6],[-3,-14],[-2,-5],[-1,14],[-1,0],[-2,-12],[-1,-10],[0,-19],[1,-14],[2,15],[3,7],[3,10],[3,12],[1,-16],[0,-19],[0,-16],[1,-11],[1,-1],[1,-24],[3,0],[2,-5],[-1,-13],[-1,-19],[1,-7],[0,-20],[1,-12],[-2,-20],[-1,-8],[-1,-11],[-2,-17],[-3,3],[-1,-9],[-2,3],[-1,-12],[-1,-2],[1,-18],[2,-18],[0,-13],[-1,-15],[-3,3],[-3,-6],[-4,15],[-2,2],[-2,9],[-1,0],[-1,2],[-1,2],[-3,10],[-2,16],[-2,22],[-1,-6],[-2,-4],[-1,7],[-2,14],[-2,16],[-2,7],[-3,16],[-1,8],[-2,4],[1,-18],[3,-27],[1,-17],[0,-4],[-5,15],[-4,5],[-3,5],[-7,10],[-3,2],[-6,3],[-7,-8],[-7,0],[-6,13],[-4,9],[-3,-7],[-2,-12],[0,-14],[1,5],[3,-5],[3,-2],[2,-7],[1,-2],[4,-18],[4,-8],[1,-17],[1,-8],[0,-13],[0,-13],[1,-9],[-1,-11],[0,-8],[2,-4],[1,17],[-1,13],[0,10],[0,13],[0,20],[2,19],[4,0],[3,4],[3,-6],[2,-4],[1,-3],[3,-12],[1,4],[3,9],[3,1],[1,-11],[0,-6],[2,-10],[0,-14],[-2,-16],[1,-22],[1,-16],[-2,-18],[-3,-38],[-4,-48],[-2,-30],[-5,-58],[-2,-66],[-1,-43],[1,-21],[1,-5],[2,-53],[-2,-72],[-1,-36],[3,12],[1,8],[1,-13],[1,-16],[1,31],[-1,37],[-1,50],[0,27],[1,18],[-1,12],[1,29],[-1,29],[0,17],[0,29],[2,28],[2,26],[1,25],[2,21],[2,10],[2,32],[1,23],[1,19],[2,-2],[2,3],[0,24],[0,19],[0,29],[1,20],[0,12],[3,1],[3,-9],[2,-1],[1,-8],[1,-20],[-2,4],[-1,-12],[0,-5],[-2,-15],[0,-35],[-2,-41],[-1,4],[-2,4],[1,-20],[1,-29],[2,-19],[1,-11],[0,-15],[0,-17],[-1,-9],[2,-13],[1,-13],[0,-4],[2,-6],[0,13],[-2,61],[-1,2],[0,14],[0,16],[2,8],[2,-6],[3,34],[0,24],[4,13],[1,-11],[1,-11],[2,-12],[1,-3],[1,2],[2,-2],[2,-2],[1,7],[2,8],[1,1],[1,-15],[1,-13],[0,-16],[-2,-1],[1,-16],[2,-19],[0,-26],[-1,-12],[0,-14],[1,-16],[2,8],[1,8],[0,13],[0,19],[0,13],[1,-4],[2,-12],[1,11],[1,0],[-1,-17],[1,-17],[2,8],[2,8],[1,-3],[1,11],[-1,17],[1,7],[1,1],[1,12],[2,8],[-2,18],[1,0],[2,15],[1,19],[-3,23],[2,4],[3,0],[-1,17],[1,20],[0,19],[-1,12],[0,21],[0,29],[2,33],[1,15],[1,20],[3,18],[1,8],[2,11],[0,16],[0,11],[1,11],[2,1],[1,8],[1,-17],[2,-7],[1,-6],[0,-16],[1,-9],[2,-3],[1,-19],[1,-17],[0,-21],[0,-15],[-1,-12],[0,-7],[-1,-10],[1,-13],[1,0],[0,-12],[0,-19],[0,-13],[1,2],[1,-10],[0,-17],[0,-14],[0,-12],[-1,-20],[1,-12],[1,-2],[1,-17],[-1,-3],[-1,-4],[-1,6],[0,2],[-1,-10],[1,-13],[0,-32],[0,-18],[1,0],[2,-23],[1,-26],[-1,-16],[1,-17],[-1,-14],[0,-14],[-1,-6],[0,-2],[-1,-10],[0,-18],[0,-16],[-1,5],[-1,-3],[-1,-8],[0,-11],[-1,-8],[0,-3],[-2,1],[-1,-6],[-1,11],[-1,-1],[1,-23],[0,-18],[-2,-3],[-2,-7],[-1,-19],[-1,-14],[0,-17],[1,-15],[1,-11],[0,-10],[-2,2],[0,-20],[-1,-12],[1,-12],[-2,-2],[-1,12],[-1,19],[-1,-4],[-1,-19],[0,-20],[-9,-6],[-1,-7],[0,-13],[9,5],[1,-2],[1,-8],[2,7],[0,-2],[2,-6],[1,1],[2,4],[2,11],[2,12],[1,-1],[1,-8],[2,-3],[1,-5],[0,-18],[1,-17],[0,-14],[-1,-9],[-1,-9],[-2,-9],[-3,-16],[-1,-20],[-2,-16],[-2,2],[-1,-11],[1,-16],[-2,-11],[-1,1],[-2,4],[-2,-3],[-2,-2],[0,-14],[-2,-5],[-2,22],[1,10],[-1,18],[0,27],[-1,28],[-1,30],[-2,12],[-1,7],[-3,7],[-3,12],[-3,14],[-2,25],[-1,17],[-1,9],[-1,-4],[1,-17],[-2,1],[-1,-8],[-1,5],[-2,16],[-2,8],[-2,-2],[0,-16],[-2,-6],[-3,-8],[1,-11],[2,-6],[3,-2],[2,15],[1,-2],[0,-14],[1,-10],[0,-23],[0,-4],[1,0],[1,20],[0,11],[1,3],[2,-10],[0,-16],[1,-14],[2,-4],[3,-10],[2,-12],[1,-10],[1,-20],[2,-36],[1,-13],[1,-27],[1,-17],[1,-13],[0,-14],[1,-16],[0,-13],[-2,-3],[-1,1],[-1,-4],[-1,2],[-1,3],[-1,-3],[-1,5],[-2,-2],[-1,-11],[-1,-2],[-1,4],[-2,1],[0,8],[-2,-9],[0,-15],[2,-4],[3,-14],[2,-6],[8,-25],[0,-3],[1,-6],[0,-41],[2,-24],[0,-26],[-3,20],[-3,-25],[-6,-6],[-1,-4],[-2,3],[0,-20],[-1,-19],[-2,-14],[-1,-10],[-2,5],[-2,10],[-1,-2],[0,-13],[1,-4],[1,-6],[-1,-3],[-2,0],[-2,-1],[0,-16],[-2,-3],[-1,-10],[-1,-8],[0,-14],[-2,1],[-1,2],[-1,0],[0,-9],[-2,6],[-2,11],[-3,24],[2,30],[-1,24],[1,18],[-1,7],[-1,17],[-1,8],[-1,-4],[-1,2],[-2,20],[-1,19],[1,15],[-1,5],[-1,12],[-1,15],[-3,3],[-1,0],[-2,14],[-1,-4],[-2,5],[-1,2],[2,-21],[2,-25],[1,11],[2,-2],[2,-23],[2,-22],[2,-29],[1,-12],[1,-13],[0,-16],[1,-13],[0,-13],[-2,-5],[-1,17],[-1,12],[-1,15],[-1,17],[-1,-18],[-1,-6],[-1,10],[-2,8],[1,-12],[1,-14],[1,-18],[2,-15],[1,-18],[0,-13],[2,-9],[1,-16],[1,-11],[1,-6],[1,5],[2,0],[0,-13],[1,-11],[-1,-8],[-1,-5],[-1,-4],[-2,-16],[-1,9],[-2,-9],[-2,5],[-2,-11],[-2,12],[-2,1],[2,-18],[1,-16],[-1,-13],[-3,-2],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-7],[1,-8],[5,-10],[4,8],[3,18],[2,11],[2,15],[2,-2],[3,15],[3,1],[3,-13],[2,1],[2,0],[1,1],[1,9],[3,4],[2,-3],[2,-4],[1,-2],[0,-10],[-1,-19],[1,-25],[1,-9],[0,-13],[-1,-19],[-2,-19],[-2,-14],[-1,-20],[-2,-16],[-1,-14],[-1,-13],[0,-15],[-1,-22],[-1,-16],[-2,-18],[-1,-9],[-1,-6],[0,-23],[0,-21],[0,-13],[1,-12],[1,-8],[0,18],[0,19],[1,2],[1,8],[1,10],[0,17],[2,25],[1,19],[1,13],[1,5],[0,14],[1,16],[2,20],[1,22],[1,10],[1,-4],[2,12],[0,24],[2,17],[2,1],[1,17],[0,21],[0,10],[-1,-9],[-1,-8],[0,-1],[-1,21],[0,28],[2,7],[1,32],[2,3],[1,-38],[0,-8],[0,11],[0,12],[1,30],[3,-15],[0,-12],[0,-21],[0,-29],[-1,-36],[1,-4],[2,-10],[1,-7],[2,-6],[0,14],[-1,25],[-1,14],[-1,11],[0,99],[3,22],[1,13],[1,-1],[1,-7],[1,6],[0,15],[1,13],[0,14],[2,8],[2,-1],[2,-9],[1,10],[-1,17],[2,18],[1,10],[-2,11],[1,13],[2,2],[0,-1],[4,-9],[1,-4],[1,-18],[1,-10],[0,32],[1,8],[0,18],[2,7],[0,-9],[1,5],[1,-1],[0,-6],[0,-7],[1,0],[1,5],[1,5],[1,-8],[-1,-21],[-1,-11],[0,11],[-1,-8],[-1,-12],[-1,-14],[0,-17],[1,4],[0,13],[1,-12],[1,-11],[-1,-8],[0,-5],[-1,1],[-1,-5],[4,-75],[1,-45],[0,-53],[-3,11],[-1,4],[0,4],[-1,20],[-3,18],[-2,-20],[-2,-5],[-2,3],[-1,-26],[1,-22],[4,33],[3,15],[2,-20],[-2,-30],[-1,-5],[-5,-19],[-1,-18],[-2,-6],[-1,19],[-2,0],[-1,-31],[-4,-35],[0,-26],[0,-29],[3,-1],[0,23],[0,18],[3,25],[2,14],[2,-8],[3,2],[1,25],[1,4],[2,4],[0,16],[2,31],[3,-25],[2,-11],[2,-24],[2,-16],[0,-46],[-2,-10],[0,-8],[-1,-1],[-1,-7],[-1,-9],[1,-5],[1,1],[1,-8],[-1,-15],[1,-12],[0,-8],[-2,7],[0,12],[-2,13],[-1,0],[-1,1],[-1,14],[-1,5],[0,-13],[-6,-52],[-1,-12],[2,-11],[2,14],[3,42],[1,-8],[0,-11],[1,-11],[1,12],[1,6],[1,-8],[0,-18],[0,-1],[0,-30],[0,-3],[1,-6],[0,-16],[-1,6],[-1,5],[0,-11],[0,-4],[0,-2],[1,-6],[1,-17],[1,-4],[1,-67],[-1,-39],[-2,-10],[-2,20],[-1,-2],[-1,1],[-2,2],[-1,13],[-2,12],[-1,10],[-2,2],[0,-16],[-1,-12],[-2,3],[-2,-8],[-2,0],[-2,-12],[-2,10],[-4,22],[-2,12],[-2,6],[-2,-4],[-1,-10],[0,-3],[-2,-4],[0,-8],[1,-10],[1,-9],[3,-11],[0,11],[2,-7],[2,4],[3,-24],[2,-14],[0,-8],[-2,-7],[-1,-14],[2,-5],[2,-6],[3,5],[1,-20],[-1,-11],[-3,-17],[-2,-22],[-2,-17],[0,-18],[2,10],[4,40],[1,-6],[1,10],[-1,-40],[-1,-29],[-1,-31],[-1,-26],[0,-19],[2,13],[1,21],[0,21],[2,12],[0,23],[1,19],[0,21],[1,15],[1,11],[1,-6],[1,-5],[1,-12],[1,0],[1,-12],[1,-3],[2,-7],[1,-13],[0,-15],[0,-12],[1,-1],[1,2],[1,0],[1,-2],[0,-9],[1,-13],[1,-3],[0,-10],[1,-23],[-1,-16],[1,-4],[1,-7],[0,-6],[1,0],[1,-6],[-1,-14],[0,-6],[0,-8],[-1,7],[0,-4],[-1,-6],[-1,-4],[-1,3],[-1,7],[-1,6],[-1,5],[-1,-4],[0,-1],[-1,0],[-1,-27],[1,6],[1,4],[1,-9],[1,-14],[1,-1],[1,2],[0,-10],[1,0],[1,-8],[1,-14],[1,3],[0,-10],[1,-14],[1,-16],[0,-11],[0,-9],[0,-6],[-1,-11],[-1,-5],[-1,1],[-2,-1],[0,-5],[-1,-1],[-1,-4],[-1,8],[-1,-5],[-2,2],[-2,2],[-1,10],[-2,-2],[-4,11],[-2,1],[-1,12],[-1,9],[-2,26],[-1,10],[-1,-3],[-1,-15],[-3,-1],[-1,11],[-1,5],[-2,2],[1,-12],[1,-9],[3,-16],[2,-10],[1,-5],[1,-8],[0,-15],[1,-8],[1,-12],[1,-5],[1,6],[3,-8],[2,2],[2,-5],[1,2],[0,-9],[1,2],[2,-4],[1,6],[1,-3],[1,-2],[0,-4],[1,4],[2,3],[1,-4],[1,-5],[1,9],[0,2],[1,-4],[1,-3],[1,0],[0,-6],[-1,-9],[-1,-4],[0,-2],[0,-15],[-1,-8],[-1,4],[0,-3],[-1,-7],[-1,-2],[0,5],[-1,-1],[-1,-2],[-1,1],[-1,2],[0,-3],[-1,-8],[-1,7],[-1,9],[-2,5],[-1,7],[-2,-4],[2,-16],[1,-12],[0,-6],[1,-10],[1,-5],[1,-4],[1,-9],[-1,-13],[0,-11],[-1,-9],[-1,10],[-1,7],[-2,-5],[1,-16],[0,-17],[0,-16],[-1,-8],[2,-10],[0,-13],[1,0],[1,3],[1,-9],[0,-17],[1,-10],[0,-11],[0,-18],[-1,-15],[1,-17],[-1,-16],[-1,-6],[-1,-21],[-1,-11],[-1,-13],[1,-19],[-2,-12],[0,-16],[0,-18],[0,-34],[0,-20],[0,-16],[-1,10],[-1,20],[-1,14],[-1,-6],[-2,-3],[-2,7],[-1,10],[-3,-1],[-2,-4],[-2,8],[-3,-2],[-2,8],[-3,41],[-2,26],[-1,23],[-5,50],[-2,10],[-2,13],[-1,15],[-2,16],[-1,10],[-1,-2],[0,-14],[1,-14],[1,-15],[1,-19],[1,-5],[2,-17],[1,-26],[2,-12],[1,6],[1,-2],[0,-16],[-2,-6],[1,-19],[1,-6],[2,-24],[1,-17],[2,-9],[-1,-23],[-2,-22],[0,4],[0,16],[0,26],[-1,7],[-1,-18],[-1,-15],[0,-8],[-1,-2],[-2,-16],[-3,9],[-1,5],[-1,-5],[-1,3],[-1,11],[1,13],[0,26],[-1,8],[1,18],[-2,3],[-2,-20],[-3,3],[-1,10],[-2,8],[0,25],[0,49],[-2,19],[-1,0],[-1,-4],[-2,-17],[-1,-6],[-1,-6],[-1,15],[-1,6],[2,20],[0,20],[-1,-1],[-2,3],[2,20],[0,18],[0,16],[-1,-11],[-2,0],[0,19],[1,17],[2,24],[1,8],[2,-6],[-1,20],[-1,18],[-1,20],[1,18],[-2,7],[-1,-35],[-1,-36],[-1,-23],[0,-29],[-1,-7],[0,-20],[0,-19],[-1,-9],[-1,-12],[-2,-2],[-1,-19],[-1,-1],[-1,2],[-2,-9],[-2,-4],[2,-9],[1,-19],[-1,-28],[0,-7],[-1,0],[-2,19],[-1,-12],[-1,18],[-2,-7],[-1,17],[1,26],[-1,10],[1,4],[1,8],[-1,5],[-1,7],[-1,16],[0,32],[0,5],[-1,9],[-1,20],[0,32],[1,35],[1,38],[2,26],[2,29],[1,-2],[1,16],[1,19],[1,15],[0,-28],[1,-4],[1,-17],[2,16],[1,27],[0,34],[2,-2],[2,-16],[3,-19],[1,-20],[1,-2],[0,16],[1,15],[-1,17],[0,18],[3,3],[-2,12],[-1,0],[-1,-9],[-2,-7],[0,18],[2,33],[-1,31],[0,14],[-1,10],[-1,-21],[-2,-22],[-1,-14],[-2,7],[-2,21],[-1,-12],[0,-24],[-3,-30],[-1,-26],[-2,-36],[-2,-38],[0,8],[0,26],[0,34],[0,17],[-1,-6],[-2,-25],[-1,10],[-3,6],[-1,7],[-1,0],[-1,10],[-2,11],[0,28],[-3,5],[-3,-42],[-1,15],[1,32],[1,7],[1,23],[-2,7],[-1,10],[2,7],[5,-8],[0,14],[1,5],[1,-11],[1,-4],[2,-1],[-1,19],[-2,6],[1,12],[2,-2],[1,12],[1,10],[1,14],[2,8],[4,-25],[2,-8],[-1,31],[1,-5],[2,-18],[0,23],[0,17],[-1,24],[-1,21],[0,29],[-2,20],[-1,-1],[1,-12],[-1,-23],[2,-16],[0,-16],[1,-23],[-2,0],[-1,11],[0,19],[-2,13],[0,18],[-2,8],[-2,8],[-2,16],[-1,14],[-3,13],[-1,8],[-2,8],[-1,3],[0,15],[0,14],[-1,15],[2,-1],[1,-12],[2,-9],[3,-8],[3,-5],[3,-8],[3,12],[2,1],[1,8],[0,14],[-3,-10],[-2,0],[-3,-2],[-2,6],[1,19],[1,28],[4,36],[2,31],[1,11],[-1,7],[-2,11],[-2,27],[-1,13],[-1,8],[-2,7],[-1,-12],[1,-6],[1,-6],[3,-13],[1,-18],[-1,-25],[-2,-21],[-1,-10],[0,-5],[1,-6],[0,-14],[-3,-21],[-1,-39],[-1,3],[-2,2],[0,14],[-1,12],[1,1],[1,16],[0,11],[0,6],[1,1],[0,11],[0,5],[-1,-4],[0,-3],[-1,-4],[0,3],[0,8],[1,4],[0,3],[0,8],[0,7],[-2,-2],[-1,-17],[0,-3],[-1,9],[-1,14],[-1,3],[1,-19],[1,-14],[1,-11],[0,-10],[-1,-2],[-1,10],[-2,9],[0,19],[-1,3],[0,2],[-1,8],[0,19],[1,4],[0,-2],[0,12],[2,13],[0,4],[0,19],[1,17],[0,13],[0,21],[-2,10],[-1,0],[-1,-23],[-1,0],[-2,-11],[0,2],[-1,18],[-1,17],[-2,14],[-1,15],[1,22],[2,22],[-1,11],[1,7],[-1,10],[-3,22],[0,2],[0,7],[0,16],[1,3],[1,6],[0,-16],[1,-17],[1,-21],[1,-14],[1,-6],[2,-9],[1,-26],[2,-32],[1,-10],[2,-5],[1,15],[-1,13],[-1,17],[-1,3],[-1,18],[0,11],[1,9],[-1,26],[-1,-9],[-1,-12],[-2,9],[-2,14],[0,19],[-1,26],[-2,24],[-2,23],[-1,23],[0,23],[1,31],[-1,18],[0,18],[1,12],[-1,21],[0,29],[0,16],[0,23],[0,8],[1,15],[1,14],[0,-10],[2,15],[1,4],[-1,23],[-2,7],[0,31],[-1,29],[0,30],[0,28],[1,12],[0,12],[1,7],[1,27],[-1,31],[1,13],[1,18],[0,37],[-1,33],[-1,0],[-1,-12],[-1,-12],[0,-14],[-1,-15],[0,-18],[0,-29],[-1,-21],[-1,-20],[0,-22],[-1,-38],[1,-37],[0,-46],[0,-36],[-1,-40],[0,-29],[-1,-18],[-1,-47],[1,-18],[0,-18],[0,-19],[-1,-14],[1,-21],[0,-32],[0,-11],[1,-18],[-1,-31],[-1,-16],[-1,-19],[0,-14],[1,-7],[0,-2],[1,-11],[-1,-7],[0,-16],[-1,-8],[0,-21],[1,-34],[2,-29],[0,-18],[1,-18],[1,-14],[-1,-4],[-2,11],[-1,7],[0,2],[-1,19],[1,8],[0,1],[0,4],[0,9],[0,7],[-1,6],[0,6],[-1,0],[0,-5],[0,-8],[-2,-12],[0,17],[-1,-7],[-1,-12],[0,-11],[1,-5],[1,6],[0,-13],[-1,0],[1,-10],[0,-2],[0,-2],[0,-7],[-1,-18],[-1,2],[0,5],[0,2],[-1,-4],[0,-1],[0,5],[0,5],[-1,13],[-2,1],[-1,-20],[0,-23],[-3,3],[0,5],[0,1],[-2,7],[0,-33],[-1,-14],[-1,4],[-1,14],[-1,-1],[-1,11],[-2,14],[-1,20],[-1,26],[-1,10],[-1,29],[1,7],[1,12],[1,0],[1,15],[1,8],[2,10],[1,5],[2,12],[2,18],[2,-5],[1,18],[0,46],[0,32],[0,38],[0,12],[-1,36],[1,8],[1,-2],[1,0],[2,22],[0,5],[1,5],[0,16],[-1,10],[-1,9],[-1,6],[0,-13],[-1,-19],[-1,-15],[-1,24],[-2,12],[-1,20],[-1,8],[0,9],[-1,27],[0,12],[-3,10],[0,-22],[1,-21],[-1,-25],[0,-18],[0,-24],[0,-22],[-1,-13],[1,-22],[0,-19],[0,-22],[1,-23],[-1,9],[-1,-8],[-1,7],[-2,14],[-2,-7],[-2,-17],[-1,-15],[0,-15],[-1,-10],[2,2],[1,5],[2,5],[2,14],[1,-11],[-1,-12],[-1,-15],[0,-18],[-1,-14],[0,-36],[-1,-8],[-1,0],[0,12],[-1,21],[-1,-2],[-1,-17],[-1,-10],[-1,-7],[-1,4],[-2,-3],[-2,18],[-1,13],[0,11],[-2,7],[-1,18],[-1,21],[-1,21],[-1,11],[0,12],[-1,0],[-1,6],[-2,8],[-1,18],[-1,21],[1,10],[1,16],[1,6],[-1,10],[-1,-1],[-2,10],[1,28],[0,16],[1,11],[1,-6],[2,1],[1,-19],[0,-15],[0,-19],[0,-22],[-1,-21],[2,2],[1,23],[2,21],[2,-7],[3,-4],[3,14],[2,11],[1,13],[0,9],[-2,4],[-3,-3],[-3,-2],[-2,12],[0,22],[0,21],[1,17],[0,22],[3,16],[1,15],[1,18],[2,27],[0,25],[-1,14],[0,4],[-3,-10],[-3,-37],[-1,-22],[-3,1],[-2,19],[0,14],[0,26],[2,33],[4,18],[2,19],[2,29],[2,-9],[2,-16],[4,-5],[1,-17],[1,2],[2,17],[2,3],[2,7],[2,6],[1,18],[2,8],[1,16],[-2,11],[-1,30],[2,37],[1,32],[1,22],[-3,14],[-2,-24],[0,-31],[-1,-29],[0,-20],[-2,-23],[-1,-10],[0,16],[-4,9],[-4,-4],[-5,6],[-2,19],[-1,21],[1,18],[2,24],[0,49],[3,14],[0,12],[1,22],[2,10],[0,24],[2,19],[2,16],[-2,22],[-1,-1],[-2,-2],[0,-11],[-1,-5],[-2,5],[-1,5],[-1,1],[-2,5],[0,17],[2,9],[0,16],[1,10],[-1,7],[-2,1],[-2,-2],[-2,-23],[-2,-31],[-2,-34],[-1,-20],[-1,-19],[-2,-59],[-2,-48],[-2,-54],[-1,-39],[0,-25],[-1,-15],[-1,-1],[-1,10],[0,31],[0,33],[-1,28],[1,36],[2,-3],[1,20],[-2,27],[-1,28],[3,25],[-1,37],[1,31],[2,44],[1,51],[1,42],[3,43],[2,26],[1,1],[1,28],[1,22],[1,6],[1,12],[-1,8],[-2,3],[-2,-2],[-2,16],[1,22],[-2,34],[-1,40],[-2,12],[-2,16],[-1,5],[0,33],[3,17],[2,12],[0,14],[-1,13],[-1,-2],[-2,-10],[-1,-14],[-3,11],[-2,34],[0,-2],[-2,5],[0,15],[-1,13],[-1,19],[0,6],[-1,0],[1,24],[0,14],[0,13],[-1,25],[0,14],[1,14],[1,13],[0,7],[0,11],[0,11],[-1,8],[0,10],[1,10],[0,6],[0,1],[1,8],[1,5],[1,4],[0,-2],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,3],[1,7],[-1,0],[0,8],[0,2],[0,1],[1,2],[0,10],[0,-1],[-1,-2],[0,-3],[0,5],[0,7],[-1,-2],[0,-1],[-1,-1],[-1,-1],[1,3],[0,2],[0,2],[0,1],[0,1],[1,3],[0,1],[1,3],[0,1],[1,0],[0,1],[1,0],[1,1],[3,-2],[0,-2],[0,-2],[1,-1],[0,-3],[1,-17],[0,-4],[0,-7],[0,-4],[0,1],[1,3],[1,0],[1,-1],[1,2],[0,3],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,5],[-1,2],[0,8],[-2,11],[-1,1],[-1,8],[-2,-3],[-1,-1],[-1,0],[-1,8],[0,-1],[-1,0],[-1,4],[0,3],[0,6],[-1,2],[-1,5],[-2,0],[-1,-1],[-1,-3],[-1,0],[0,-6],[-1,-4],[-1,-1],[-1,4],[0,4],[-1,2],[-1,1],[-2,-12],[-1,-4],[0,-13],[-1,0],[0,-6],[-1,-3],[0,-4],[-1,-3],[-3,-14],[-1,-19],[1,-4],[1,-10],[0,-13],[0,-15],[-1,-2],[0,-3],[-1,-5],[0,-10],[0,-16],[0,-3],[0,-8],[0,-12],[0,-3],[0,-13],[-1,0],[0,-11],[0,-10],[0,-9],[-1,-12],[-2,13],[-2,5],[-1,-13],[2,-13],[2,-19],[2,-14],[0,-2],[0,-1],[1,-6],[-1,-8],[0,-6],[0,-8],[0,-9],[1,-2],[0,-6],[2,-32],[2,-40],[2,-41],[2,-42],[1,-12],[1,-12],[1,-19],[1,-23],[0,-17],[0,-36],[-1,-42],[-1,-30],[-3,-7],[-2,9],[-1,-11],[0,16],[-1,5],[-1,-1],[1,-16],[0,-21],[0,-16],[-1,-20],[-1,9],[-1,14],[-2,-5],[-3,2],[-2,2],[-3,23],[-2,15],[-1,-2],[-2,23],[-2,15],[-2,10],[-2,13],[-1,17],[0,5],[-1,10],[-1,7],[0,9],[-1,5],[-1,7],[-1,4],[0,2],[-1,3],[-1,8],[-1,6],[-2,3],[-1,-2],[0,-1],[-1,2],[-1,4],[1,14],[0,15],[0,11],[1,9],[1,14],[-1,0],[-1,3],[-1,4],[-1,0],[-1,6],[0,13],[-1,2],[-1,6],[-1,4],[-1,-1],[0,9],[-1,6],[-1,6],[0,10],[1,8],[0,9],[0,13],[-1,4],[0,14],[0,13],[0,2],[-1,16],[0,15],[1,15],[0,11],[1,12],[0,15],[1,7],[0,17],[0,13],[-1,8],[-1,6],[0,3],[-1,30],[-1,15],[0,18],[-1,13],[1,11],[1,8],[1,15],[1,11],[1,9],[0,10],[-1,11],[-1,4],[-1,1],[0,-20],[0,-16],[-1,-13],[-2,5],[-2,3],[1,11],[0,18],[-2,-2],[-1,-26],[-1,-1],[-1,-10],[-1,-3],[0,-15],[0,-15],[-1,-5],[-1,-18],[-1,-30],[-2,-6],[1,-14],[2,-9],[1,-7],[-1,-23],[-2,-3],[0,-15],[0,-16],[-2,-11],[-1,8],[-2,4],[0,-17],[-1,-11],[-1,-4],[-2,13],[-2,7],[-2,-12],[-2,-15],[-2,-17],[-1,-4],[-2,7],[-2,0],[0,-14],[1,-5],[1,-8],[-2,-30],[-1,4],[0,23],[-1,35],[0,14],[-1,0],[-1,-9],[-1,-23],[-1,-24],[-3,-19],[-1,-13],[-3,-19],[-1,-15],[-1,-2],[-2,2],[-1,29],[-1,12],[-2,-19],[-2,29],[-1,37],[0,20],[2,42],[1,4],[3,1],[2,6],[2,17],[2,17],[5,15],[2,-3],[1,12],[1,15],[1,29],[2,24],[1,24],[3,12],[4,2],[2,12],[2,21],[0,8],[0,8],[-1,8],[-1,-4],[-1,-1],[-1,-5],[-2,-14],[-1,-10],[-2,9],[-1,13],[-2,-9],[-3,-9],[-3,9],[-1,2],[0,-4],[-1,-6],[-2,-5],[-2,-6],[-3,-14],[-4,7],[-1,-2],[-2,2],[-2,0],[-2,9],[-1,-12],[-1,-5],[-1,-11],[-1,15],[0,20],[-3,9],[-2,-3],[-2,9],[-2,20],[-1,18],[-1,-9],[0,-24],[2,-22],[2,-20],[-2,-16],[-1,-10],[-2,0],[-1,7],[1,12],[0,18],[-3,19],[1,4],[1,19],[-2,9],[-4,6],[-5,10],[-2,-11],[-5,-15],[-3,1],[-4,0],[-3,1],[-1,-2],[-1,5],[-3,8],[-3,25],[0,29],[1,30],[1,24],[1,24],[-1,5],[-2,8],[-3,37],[-3,32],[-4,39],[0,41],[0,26],[0,12],[1,3],[2,-5],[2,0],[3,1],[2,2],[3,1],[1,5],[-1,12],[-2,6],[-3,-1],[-2,9],[-2,-1],[-1,18],[1,18],[2,21],[2,7],[2,8],[1,18],[2,20],[2,20],[2,8],[2,1],[1,3],[0,-11],[1,-4],[1,-1],[1,1],[1,1],[1,-2],[1,-2],[0,-3],[1,-2],[0,-13],[1,-7],[1,0],[0,-9],[1,-4],[0,-12],[1,-13],[1,-5],[0,-17],[1,-16],[1,14],[0,26],[0,24],[1,3],[0,12],[1,4],[1,6],[0,8],[1,-6],[1,-2],[1,0],[0,1],[1,0],[1,1],[1,-2],[1,-4],[1,-2],[1,1],[1,-3],[0,-6],[1,-4],[2,-5],[2,-11],[1,-9],[2,-5],[1,-3],[1,-12],[3,-6],[2,-16],[2,-15],[1,-31],[0,-22],[0,-14],[1,-15],[1,3],[0,34],[2,2],[5,-23],[3,2],[2,17],[0,15],[1,12],[1,9],[2,-9],[3,-17],[2,-19],[1,10],[-2,19],[1,9],[1,-8],[1,-1],[1,3],[1,-9],[3,-6],[2,-5],[2,4],[1,-10],[1,-8],[1,2],[1,7],[2,10],[3,9],[1,2],[1,5],[2,-4],[2,-2],[1,-1],[1,0],[0,4],[1,12],[-1,7],[-2,-4],[-1,0],[-1,2],[1,17],[-2,-2],[-1,4],[-2,7],[-5,-6],[-2,-2],[-2,7],[-3,9],[-1,11],[-1,8],[-3,7],[-2,12],[-3,1],[0,-16],[-2,15],[-4,17],[-6,30],[-1,0],[-1,3],[-1,11],[-1,14],[-3,31],[-2,19],[-1,13],[-1,18],[0,17],[1,15],[2,-4],[1,14],[0,17],[1,21],[-4,4],[-5,15],[-1,8],[-1,-7],[-1,4],[-2,28],[0,11],[2,3],[2,4],[1,7],[3,13],[3,13],[3,14],[3,22],[1,10],[3,1],[3,3],[2,1],[0,10],[-1,4],[-3,10],[-3,4],[-3,-1],[-1,2],[-1,1],[-1,7],[-3,-13],[-2,-15],[-2,-3],[-2,-14],[-1,1],[-1,1],[-2,14],[0,-10],[-1,5],[-1,5],[-1,4],[-1,3],[-1,7],[0,4],[-1,1],[-1,12],[-1,5],[-1,4],[-1,0],[0,4],[-1,11],[0,16],[0,14],[0,10],[0,13],[-2,-7],[-2,-27],[1,-26],[-1,-27],[-3,27],[1,23],[1,24],[-2,4],[-1,8],[1,17],[3,0],[4,18],[0,15],[-1,9],[0,7],[-1,-3],[0,3],[-1,8],[0,8],[1,13],[0,9],[1,13],[-1,12],[0,19],[0,20],[0,30],[0,15],[2,18],[0,1],[2,38],[1,7],[2,29],[0,18],[1,3],[0,1],[-1,7],[0,2],[0,1],[0,6],[0,13],[0,5],[0,4],[-1,11],[0,6],[1,1],[-1,8],[0,10],[0,4],[1,6],[1,5],[0,-8],[0,-7],[0,-4],[0,-11],[0,-6],[0,-30],[1,0],[0,7],[0,16],[1,4],[1,-1],[0,-2],[0,-8],[0,-5],[1,2],[0,1],[0,-2],[1,-1],[0,6],[0,1],[0,3],[-1,15],[-1,4],[0,-3],[-1,-4],[0,3],[0,3],[0,3],[0,2],[-1,2],[0,3],[1,17],[-1,14],[0,12],[1,0],[0,-7],[1,-9],[0,-2],[0,-22],[1,0],[0,-1],[0,5],[1,11],[0,7],[1,6],[0,9],[0,7],[0,1],[-1,8],[0,6],[0,7],[1,5],[0,12],[-1,2],[0,6],[-1,10],[0,2],[0,1],[0,6],[0,2],[0,-1],[0,-1],[0,5],[1,4],[0,2],[0,1],[0,5],[0,4],[0,1],[0,3],[0,3],[1,6],[1,-3],[0,-1],[0,1],[0,3],[0,4],[0,1],[0,7],[1,6],[1,0],[1,4],[3,4],[0,21],[-2,0],[-3,-12],[0,19],[1,8],[1,4],[1,5],[1,1],[0,-4],[1,1],[1,3],[1,2],[1,6],[1,-2],[0,-7],[2,3],[0,8],[1,17],[0,9],[1,10],[1,13],[0,8],[1,6],[1,9],[1,6],[0,4],[1,12],[1,7],[1,6],[-1,6],[2,17],[1,1],[1,-9],[0,-5],[1,4],[2,9],[2,4],[3,-6],[2,-1],[1,2],[2,-15],[1,-4],[1,-9],[1,17],[0,25],[-2,14],[-2,7],[-3,6],[-3,8],[-2,0],[-2,-6],[-1,-2],[-1,4],[-1,3],[-1,3],[-1,-14],[-2,3],[-1,-19],[-2,-23],[-1,-11],[-1,-12],[0,-11],[-1,-15],[0,5],[-1,8],[-1,-2],[0,-22],[0,-17],[-1,-2],[-1,1],[0,-6],[-1,2],[0,16],[-1,7],[0,10],[0,13],[1,2],[-1,12],[-1,-3],[-1,9],[-1,5],[0,2],[-1,1],[0,2],[-1,-3],[-1,-6],[-1,-13],[-1,-7],[0,-6],[-1,-7],[0,-6],[-1,-6],[-1,-9],[-1,1],[-1,6],[0,9],[-1,14],[-1,-3],[0,-13],[0,-6],[-1,-2],[-1,6],[0,7],[-1,-6],[-1,-8],[-4,-13],[-1,-12],[-1,-12],[-1,8],[0,-22],[2,-7],[-3,-17],[-3,-7],[0,15],[-1,9],[-3,10],[1,-20],[-1,-30],[1,-16],[-3,-5],[-1,-12],[2,-18],[-1,-3],[-3,16],[-2,10],[-2,1],[-1,-10],[-1,-4],[-1,-16],[-2,-19],[-2,18],[-2,8],[0,12],[-1,-10],[-1,-10],[0,-22],[0,-18],[0,-4],[-3,-27],[-1,0],[0,5],[2,30],[0,22],[-2,-5],[-2,1],[-1,0],[-1,18],[0,16],[-3,0],[-2,23],[-2,7],[-3,18],[-4,12],[-3,15],[-1,25],[-2,11],[-3,12],[-3,25],[-4,26],[-1,4],[0,26],[-1,16],[-1,20],[-1,21],[0,20],[-2,11],[-1,25],[1,21],[0,33],[-1,33],[0,12],[3,-14],[1,9],[1,50],[2,6],[-1,-28],[1,-16],[3,18],[2,50],[2,14],[2,18],[-2,11],[-1,24],[-1,0],[-1,-26],[-2,-3],[-3,12],[-1,36],[0,20],[1,44],[0,32],[0,30],[0,36],[1,13],[1,-3],[1,-3],[1,-16],[0,-14],[0,-7],[1,-15],[1,-10],[1,-1],[1,-6],[0,-14],[1,-8],[0,-16],[1,-11],[1,-3],[1,-12],[1,-11],[1,1],[1,15],[1,-2],[1,-2],[1,7],[1,1],[1,-1],[-1,16],[0,13],[-1,-4],[-1,2],[-1,10],[1,15],[1,10],[1,17],[-1,-2],[-1,-8],[-1,-8],[-1,9],[0,22],[1,0],[0,-11],[1,14],[1,11],[0,9],[-1,10],[-1,6],[0,13],[-1,4],[0,8],[-1,10],[0,22],[1,14],[2,-17],[1,14],[0,25],[0,21],[1,6],[1,1],[1,-15],[0,-25],[-1,-35],[-1,-12],[2,-26],[0,-13],[2,19],[2,24],[2,19],[1,4],[0,-13],[-2,-26],[-1,-26],[1,-11],[1,-11],[0,-11],[1,28],[1,24],[2,20],[3,6],[2,-7],[2,13],[1,-8],[1,1],[-1,14],[0,10],[-1,13],[1,7],[1,16],[1,-7],[1,15],[0,-15],[1,5],[2,37],[0,25],[1,42],[1,46],[1,4],[2,4],[1,18],[2,11],[1,21],[1,36],[3,15],[2,-23],[1,5],[2,23],[1,4],[1,12],[0,22],[-2,3],[1,14],[1,-3],[2,-5],[1,-7],[1,0],[1,6],[0,13],[-1,0],[-1,-1],[-1,1],[-1,13],[-1,6],[-1,7],[-1,19],[2,24],[-2,22],[-1,21],[2,9],[3,1],[0,17],[-2,-1],[-1,0],[-1,24],[0,21],[2,28],[-1,9],[1,16],[1,13],[1,12],[1,31],[1,12],[2,-2],[0,9],[-1,7],[-2,13],[-1,4],[-1,0],[-1,10],[1,18],[0,3],[-2,-4],[-1,-16],[-1,-4],[-1,-2],[-2,7],[0,-22],[-4,1],[-1,-2],[-1,-16],[9,-13],[1,-31],[-2,-5],[-1,-18],[-1,-19],[-3,-4],[-1,-1],[0,-8],[-1,-7],[-1,6],[0,15],[-1,-3],[-2,1],[-1,4],[-1,15],[0,16],[-1,10],[1,4],[1,3],[0,4],[1,0],[1,8],[0,3],[-1,8],[0,-2],[-1,-3],[-1,-5],[0,-3],[-1,-2],[-1,8],[0,1],[-3,22],[-2,21],[-1,23],[-1,44],[-3,54],[-1,18],[1,-5],[1,-11],[1,16],[-1,27],[0,23],[1,13],[-1,9],[-1,1],[-1,14],[-1,11],[0,14],[0,23],[-1,9],[-1,10],[1,13],[-2,12],[-1,12],[-1,18],[6,6],[5,-40],[2,-3],[-1,33],[-4,31],[-1,27],[1,10],[2,-4],[1,-7],[1,-13],[1,-9],[1,9],[-2,29],[-2,11],[-2,0],[-1,11],[2,17],[-2,18],[-2,10],[1,13],[0,11],[0,16],[0,18],[-1,14],[0,2],[-1,17],[4,26],[0,14],[0,34],[1,29],[-1,-2],[-3,91],[0,28],[2,19],[-1,15],[-3,26],[-5,108],[1,62],[1,58],[1,27],[-1,19],[2,26],[0,23],[0,20],[0,8],[2,51],[0,44],[-2,31],[-1,12],[-2,17],[-3,13],[0,-4],[-6,-7],[-4,21],[-3,3],[-1,-22],[-1,-25],[-1,6],[-2,-5],[-10,24],[-3,11],[1,21],[-2,24],[-1,-10],[0,-19],[-6,-22],[-4,9],[-1,-4],[0,-25],[-2,-28],[-1,12],[0,12],[-1,16],[0,12],[-1,19],[-1,19],[3,7],[1,16],[-8,12],[-5,23],[-1,3],[-3,7],[1,40],[0,50],[-2,15],[-1,-4],[-1,-25],[-1,-64],[-2,-12],[-2,5],[0,2],[-4,11],[1,-27],[-1,-30],[-2,-5],[0,-1],[-1,8],[-1,5],[-1,-3],[-1,10],[-1,19],[1,16],[1,12],[-6,-2],[1,8],[0,18],[0,23],[-1,7],[0,15],[-2,0],[-2,6],[-1,4],[0,22],[0,12],[-1,14],[-1,2],[-1,-22],[-1,7],[0,14],[2,22],[0,22],[1,83],[-2,52],[-1,19],[1,21],[-1,11],[-2,-1],[-1,15],[0,14],[-2,67],[4,29],[5,18],[2,33],[-1,22],[-1,-2],[-2,31],[-3,7],[-1,-25],[0,-19],[-1,-6],[0,-15],[-1,6],[-1,14],[0,17],[-2,30],[2,81],[2,0],[2,-12],[2,-16],[2,-19],[0,-23],[1,-9],[0,-20],[1,2],[1,3],[2,-32],[1,-10],[0,-18],[-1,-14],[2,-31],[2,-7],[0,35],[1,11],[3,19],[-1,10],[-2,14],[-2,17],[-2,38],[-2,19],[0,23],[0,14],[1,12],[0,2],[0,7],[-2,20],[-3,19],[-3,38],[1,29],[2,29],[3,7],[3,-9]],[[13395,25717],[29,-64],[6,-15],[6,-12],[2,-5],[10,-23],[5,-13],[22,-49],[7,-76],[3,-40],[2,-25],[2,-17],[3,-35],[3,-32],[7,-74],[5,-58],[5,-63],[1,-6],[5,-59],[1,-11],[2,-9],[9,-39],[4,-13],[8,-35],[20,-22],[4,-139],[1,-59],[1,-22],[2,-120],[4,-163],[21,-65],[29,-159],[5,15],[35,116],[6,-118],[5,-103],[1,-34],[1,-7],[1,-18],[4,-99],[1,-11],[7,-133],[2,-46],[0,-34],[0,-1],[0,-5],[-1,-35],[0,-3],[-2,-226],[0,-84],[-1,-56],[0,-31],[0,-1],[4,0],[0,-23],[-5,-87],[0,-2],[-18,-336],[-6,-45],[-5,-34],[0,-13],[-4,-81],[-2,-66],[-2,-35],[0,-8],[1,-179],[1,-68],[0,-1],[10,-158],[-5,-475],[0,-30],[0,-11],[3,-98],[1,-44],[6,-235],[1,-23],[6,-105],[7,-125],[2,-211],[4,-330],[0,-23],[1,-11],[11,-175],[1,-91],[-9,-116],[-21,-258],[-6,-69],[-12,-247],[0,-6],[-2,-84],[-7,-162],[-1,-3],[0,-20],[-1,-121],[-1,-16],[-9,-165],[-8,-135],[-6,-125],[-14,-191],[-7,-87],[-3,-30],[-2,-24],[-1,-14],[-2,-19],[-5,-49],[-8,-84],[-8,-100],[0,-5],[-1,-5],[-4,-46],[-3,-26],[-4,-34],[0,-3],[-7,-58],[-6,-55],[-8,-71],[-10,-29],[-1,-4],[-1,0],[-1,-4],[0,-1],[-1,-1],[2,41],[-1,2],[-1,7],[2,19],[1,16],[1,13],[0,8],[-1,35],[2,11],[0,26],[0,13],[2,15],[1,28],[1,2],[2,11],[2,21],[2,34],[3,36],[3,27],[1,13],[0,8],[1,7],[1,-1],[1,-1],[1,6],[1,2],[1,-1],[-1,9],[0,9],[1,9],[1,2],[0,4],[1,31],[1,3],[1,9],[1,12],[1,-2],[1,9],[1,16],[0,18],[1,18],[1,9],[1,-4],[0,-7],[0,-21],[1,-23],[0,-8],[1,12],[0,13],[1,8],[1,15],[2,14],[1,11],[0,10],[1,17],[0,13],[-1,26],[-1,11],[-1,0],[-1,-25],[-1,-5],[-1,-7],[-1,1],[0,-6],[0,-5],[0,-10],[-1,-12],[-2,8],[0,5],[0,6],[-1,0],[-1,-13],[-1,-6],[-2,-43],[-1,-1],[-2,-12],[-1,-18],[-1,-11],[-1,0],[0,8],[-1,0],[0,-23],[-2,-13],[0,-6],[0,-13],[0,-4],[-1,10],[-1,-2],[-1,-37],[-3,-49],[-2,-4],[-1,-5],[0,6],[-1,0],[-1,-7],[0,-6],[-1,-32],[0,-5],[-1,-17],[-2,-22],[-3,-23],[-2,-24],[-2,-19],[-2,-2],[0,-6],[0,-8],[2,0],[1,-1],[-1,-12],[-1,-3],[0,-3],[-2,1],[0,11],[-1,8],[0,12],[-1,12],[-1,19],[0,29],[-1,22],[-1,14],[-1,23],[-3,34],[-2,7],[-1,27],[-2,38],[2,19],[1,30],[1,30],[2,21],[0,11],[0,11],[1,11],[0,16],[0,10],[-1,3],[-1,14],[1,23],[0,22],[0,15],[0,41],[-1,17],[0,22],[0,17],[1,6],[-1,17],[-2,18],[-1,3],[0,-1],[-1,-9],[-1,-16],[0,-13],[1,-33],[1,-32],[-1,-12],[1,-6],[1,-31],[0,-31],[-1,-39],[0,-18],[0,-26],[-1,-31],[-1,-19],[-1,-10],[-2,-34],[-2,-13],[0,-9],[1,-7],[-1,-16],[0,-9],[-1,-44],[1,0],[1,13],[0,14],[1,10],[0,11],[1,7],[0,-13],[1,-23],[1,-13],[1,-6],[2,-8],[2,-13],[1,-15],[1,-13],[0,-2],[1,-23],[2,-37],[2,-53],[-1,-17],[0,-11],[-1,-8],[-1,-23],[-1,-20],[1,-11],[0,-5],[1,-1],[1,-6],[1,-12],[0,-15],[-1,-5],[-1,-1],[-1,-18],[-1,-19],[0,-10],[-1,-17],[0,-17],[-1,-17],[-2,-5],[-1,-6],[0,-4],[-1,7],[0,12],[-1,8],[0,-13],[-1,-13],[-1,-11],[-2,-7],[-2,-6],[-4,-4],[-4,13],[0,9],[0,20],[0,11],[-1,13],[-1,6],[0,5],[0,14],[-1,12],[-1,16],[0,8],[1,24],[1,1],[1,-6],[1,-13],[1,21],[1,2],[1,14],[0,13],[0,15],[0,18],[0,17],[0,18],[2,-3],[1,-21],[2,-67],[1,-16],[1,2],[-1,45],[-2,82],[0,29],[0,17],[1,22],[0,22],[-1,-1],[-1,-21],[-1,21],[0,13],[0,14],[0,11],[-2,9],[0,19],[0,6],[-1,-2],[0,-20],[0,-26],[1,-19],[1,-51],[-2,32],[-1,12],[0,14],[-1,25],[-1,48],[0,35],[-1,21],[0,8],[0,12],[1,-1],[0,9],[0,11],[-1,8],[-1,6],[0,11],[0,6],[0,14],[0,14],[2,2],[0,2],[0,2],[1,30],[0,18],[-1,19],[0,22],[-1,21],[-1,46],[0,30],[0,27],[0,25],[0,12],[0,8],[0,11],[0,28],[0,32],[0,15],[-1,8],[0,13],[-2,13],[0,7],[-1,-3],[0,-15],[-1,-22],[0,-20],[1,-43],[-1,-9],[-1,-9],[0,-4],[0,-13],[0,-55],[1,-20],[-1,-26],[1,-23],[1,-35],[0,-80],[-1,-20],[0,-7],[2,-30],[1,-56],[1,-20],[0,-18],[0,-13],[-1,-21],[0,-13],[0,-18],[2,-1],[0,-22],[0,-23],[0,-26],[0,-18],[0,-21],[-1,-17],[-1,-12],[-1,-11],[-1,-2],[-1,29],[0,-4],[-1,-4],[0,-15],[0,-9],[-1,-19],[-2,15],[0,7],[0,23],[1,2],[0,13],[-1,8],[-1,1],[-1,-13],[-1,19],[0,9],[-2,38],[-2,53],[-2,13],[-2,0],[0,-12],[2,-29],[0,-7],[1,-18],[1,-38],[1,-28],[0,-25],[0,-41],[0,-46],[0,-18],[0,-5],[0,-19],[-1,-20],[0,-4],[-1,-2],[-1,-2],[0,-8],[-1,-16],[-1,-12],[-1,-12],[0,-12],[-1,0],[-1,13],[-1,-1],[-3,-31],[-1,-1],[0,-10],[-3,11],[-1,3],[-1,4],[-1,7],[0,23],[0,5],[-1,6],[-1,2],[-1,-10],[-2,-12],[-1,7],[-1,23],[-2,6],[-1,2],[-1,5],[0,3],[0,6],[-2,14],[0,5],[-1,16],[-1,3],[-1,1],[-1,16],[0,19],[-1,11],[-1,-4],[0,1],[-1,-2],[-1,5],[0,21],[0,44],[0,19],[-2,1],[0,2],[-1,3],[0,21],[0,30],[1,17],[0,22],[0,7],[1,22],[1,4],[0,12],[0,4],[0,5],[1,12],[1,0],[0,-7],[1,4],[0,4],[1,10],[-1,10],[-1,11],[-1,8],[-1,-10],[-1,-15],[-1,-4],[-1,-5],[-2,23],[0,23],[0,29],[1,30],[-2,44],[1,9],[0,6],[1,12],[0,14],[-1,9],[1,23],[-2,35],[-1,14],[-1,17],[-1,12],[0,16],[1,11],[0,16],[-1,11],[-1,5],[-2,-5],[0,3],[0,9],[1,11],[0,9],[1,13],[1,8],[0,-3],[1,-3],[1,-13],[0,15],[1,-6],[1,-3],[1,-2],[1,-10],[1,-9],[0,2],[0,15],[0,16],[-1,8],[0,23],[0,16],[0,18],[0,3],[1,-8],[1,0],[1,9],[-2,29],[-2,30],[0,9],[-1,14],[1,16],[1,12],[1,11],[2,-1],[2,-36],[1,-2],[0,15],[0,13],[-1,5],[1,18],[1,12],[2,5],[3,40],[3,-4],[1,14],[2,23],[0,11],[-1,20],[-1,12],[-1,-8],[1,-10],[-1,-9],[-1,12],[0,8],[-2,2],[-1,-14],[0,-33],[-1,-9],[0,-9],[-2,-14],[-1,-7],[-1,5],[-2,-9],[-1,-32],[-1,1],[-2,-4],[0,-2],[-1,-10],[-1,-7],[-1,-5],[-1,-24],[0,-14],[-1,-5],[-1,17],[-1,16],[-1,6],[0,12],[0,5],[1,9],[-1,13],[0,9],[-1,5],[-3,35],[-1,21],[-1,14],[-1,16],[-1,1],[-1,-8],[0,-5],[-1,-4],[0,-3],[-1,0],[0,20],[1,19],[0,17],[0,16],[0,22],[1,30],[-1,37],[2,22],[1,7],[1,13],[1,8],[1,-14],[2,1],[0,6],[0,14],[0,20],[-1,6],[-2,-8],[0,31],[7,19],[2,26],[0,13],[-1,3],[-2,-10],[-5,-3],[-1,23],[1,20],[0,2],[3,11],[2,12],[1,3],[1,8],[1,5],[1,-4],[1,11],[2,2],[1,1],[1,2],[1,-3],[1,12],[3,16],[1,9],[2,13],[1,11],[2,4],[1,15],[1,15],[2,10],[2,2],[1,4],[0,5],[0,12],[1,10],[0,3],[1,5],[1,12],[1,20],[0,3],[0,2],[0,5],[0,12],[1,12],[1,1],[1,0],[1,-2],[1,-2],[0,-3],[0,-4],[2,0],[2,-17],[0,-27],[0,-4],[1,-14],[0,-5],[-1,-23],[0,-3],[0,-12],[1,-10],[0,-9],[1,0],[1,-26],[0,-8],[0,-11],[1,-12],[0,7],[0,-10],[1,-20],[0,-10],[0,-16],[0,-21],[1,-11],[0,-12],[0,-14],[1,-7],[3,-102],[1,-19],[0,-5],[1,5],[0,6],[0,26],[-1,30],[0,20],[0,12],[-1,22],[-1,19],[0,12],[0,40],[0,13],[0,1],[0,-3],[1,1],[1,2],[2,2],[1,1],[1,5],[1,12],[0,8],[0,1],[1,10],[0,2],[0,-2],[2,12],[2,9],[1,6],[2,7],[1,3],[1,1],[0,-2],[0,-14],[0,-15],[1,-4],[0,-7],[1,-9],[1,-11],[0,-1],[0,-16],[1,-21],[0,-18],[1,-21],[1,-9],[0,-17],[-1,-11],[1,-7],[0,-10],[1,-17],[0,-21],[1,-21],[1,-38],[0,-15],[1,-3],[0,-24],[1,1],[0,-8],[0,-10],[1,13],[0,16],[0,6],[0,11],[0,3],[-1,41],[0,8],[-1,20],[0,37],[-1,23],[-1,26],[-1,21],[0,22],[-1,15],[0,8],[0,19],[-1,15],[-1,8],[0,17],[-1,18],[0,14],[0,12],[1,9],[0,20],[0,14],[1,13],[-1,15],[1,19],[0,3],[1,3],[0,-3],[2,-2],[1,-3],[2,-2],[1,-6],[1,3],[2,6],[2,-6],[1,4],[1,0],[2,6],[2,3],[0,8],[1,18],[1,12],[1,1],[1,11],[1,5],[2,9],[1,7],[1,-3],[1,2],[2,4],[1,3],[2,3],[2,7],[2,9],[2,2],[2,11],[3,10],[3,13],[0,8],[1,7],[1,5],[1,16],[1,5],[0,14],[1,11],[0,4],[0,6],[0,11],[1,22],[0,4],[0,8],[1,11],[-1,8],[0,-6],[-2,-24],[-1,-16],[-1,-15],[0,-11],[-1,-12],[-1,-5],[-1,-7],[-1,-9],[-1,-3],[-1,-4],[-1,-6],[-1,0],[-1,-2],[-1,-7],[-1,-5],[-1,0],[-1,1],[-2,-2],[0,-9],[-1,-5],[-1,-11],[-1,-4],[-1,7],[-2,5],[-1,0],[-1,-4],[-2,-14],[-2,-10],[-1,-6],[-1,-9],[-2,-2],[-1,-14],[0,-23],[-1,-9],[-1,0],[-2,-1],[0,2],[-1,-7],[-1,5],[-1,-2],[-2,-6],[-3,4],[-3,5],[-1,5],[0,6],[1,12],[0,8],[0,4],[1,9],[1,11],[0,10],[1,8],[1,16],[1,18],[0,3],[-1,2],[0,13],[1,26],[0,20],[1,11],[1,9],[1,10],[1,9],[1,13],[1,4],[1,2],[1,13],[1,7],[1,13],[1,26],[1,7],[1,6],[1,15],[1,5],[1,9],[1,11],[1,8],[2,14],[1,11],[0,13],[1,5],[1,8],[1,25],[2,8],[1,10],[0,11],[1,5],[1,16],[1,6],[1,20],[1,10],[1,13],[0,13],[1,8],[1,12],[1,15],[1,24],[0,15],[1,17],[1,20],[2,44],[0,25],[0,15],[0,9],[1,14],[2,26],[1,13],[0,14],[1,16],[0,10],[1,14],[2,17],[1,15],[1,13],[1,14],[1,16],[1,17],[1,22],[2,23],[0,15],[0,9],[0,11],[1,17],[0,15],[1,11],[1,11],[-1,3],[-2,0],[-1,-4],[-1,-7],[0,-19],[0,-20],[-1,-11],[-1,-14],[0,-18],[-1,-17],[0,-16],[-1,-2],[-1,1],[-1,-7],[-1,-9],[-1,-18],[0,-8],[-1,-1],[-1,-15],[0,-12],[-1,-17],[-1,-20],[-1,-18],[0,-16],[-1,-14],[-1,-8],[-1,-8],[-1,-3],[-1,-5],[0,-13],[0,-8],[-2,-9],[0,-13],[-1,-18],[1,-21],[-1,-20],[0,-9],[-1,-14],[-1,-28],[0,-24],[0,-17],[-1,-16],[-1,-8],[-1,-5],[-2,-14],[-1,-15],[-1,-18],[-1,-9],[-1,-7],[0,-11],[-1,-13],[-1,-13],[-1,-4],[-1,-4],[-2,-30],[-1,-3],[-2,-17],[0,-16],[-1,-14],[-1,-8],[-1,-8],[-1,-12],[0,-10],[-1,-5],[-2,-15],[-1,-18],[-4,-34],[-1,-6],[-1,-8],[-1,-13],[-2,-16],[-1,-24],[0,-7],[-1,-5],[-1,-1],[0,-2],[-1,-4],[0,-7],[-1,-10],[0,-10],[1,-1],[1,-7],[0,-5],[0,-2],[0,-15],[-1,-16],[-1,-7],[0,-13],[-2,-4],[-1,-7],[-1,0],[0,1],[-1,-5],[0,-18],[0,-12],[0,-13],[0,-9],[0,-6],[-1,-3],[0,-7],[-1,-11],[0,-5],[0,-10],[0,-8],[1,-17],[-1,-27],[-1,-8],[-2,-10],[-1,-9],[-1,-4],[-1,-5],[-2,-6],[-1,0],[0,11],[-2,9],[-2,5],[-1,17],[-1,7],[-1,16],[0,32],[0,19],[0,19],[-1,5],[0,27],[-1,15],[-1,19],[-2,30],[0,21],[0,20],[0,32],[0,33],[0,39],[0,15],[0,28],[0,20],[0,24],[0,17],[-1,13],[0,-4],[0,-16],[-1,-36],[0,-14],[1,-15],[0,-10],[0,-18],[0,-9],[0,-19],[0,-23],[0,-28],[0,-19],[0,-7],[0,-24],[-1,2],[-1,0],[0,13],[0,16],[0,6],[1,5],[-1,3],[0,4],[0,9],[0,5],[-1,5],[-1,-15],[1,-37],[0,-6],[0,-13],[0,-11],[-1,-25],[-1,-6],[-1,-5],[-1,-4],[-1,0],[-1,-5],[-1,-2],[-1,-8],[-1,-5],[-2,-8],[-1,-5],[0,-18],[0,-22],[-1,-12],[-1,-3],[-1,-11],[0,-15],[-2,-16],[-3,-23],[-2,-5],[-1,-4],[0,-7],[-2,-8],[-1,-8],[-1,-7],[-2,-6],[-1,-2],[-2,-6],[-1,-6],[-1,-2],[-2,-6],[-2,-4],[-5,-14],[-2,3],[-2,8],[-2,7],[0,1],[-2,5],[-3,9],[0,8],[0,14],[-1,13],[-1,21],[0,13],[-1,15],[0,18],[-1,1],[0,-15],[-1,-9],[-1,3],[0,8],[0,15],[-1,17],[0,5],[-2,10],[-3,9],[0,12],[-1,11],[-1,21],[0,5],[0,11],[2,7],[-1,18],[0,13],[-1,8],[1,16],[-1,15],[-1,1],[0,11],[1,7],[-1,4],[0,8],[-1,7],[-1,15],[0,20],[0,11],[1,3],[1,0],[1,3],[0,7],[-1,16],[-1,1],[0,10],[-1,7],[0,7],[1,30],[1,22],[-1,9],[-1,-2],[-1,-6],[0,-9],[0,33],[1,22],[1,2],[0,4],[1,-7],[0,8],[1,13],[1,15],[1,11],[1,4],[1,5],[1,13],[2,14],[0,10],[1,10],[1,9],[-1,7],[1,9],[1,2],[1,5],[1,4],[1,7],[1,12],[1,16],[1,19],[1,10],[0,13],[1,5],[1,-6],[1,5],[1,3],[2,5],[1,9],[1,10],[0,5],[0,13],[1,19],[1,12],[1,13],[1,13],[1,5],[1,10],[1,16],[0,18],[1,13],[1,-3],[1,10],[0,23],[0,22],[0,22],[0,15],[1,6],[1,4],[1,9],[2,3],[0,11],[1,7],[1,4],[2,-5],[1,1],[1,1],[1,-4],[1,-9],[1,-7],[1,-4],[1,6],[1,-6],[0,-5],[2,-7],[1,-6],[2,3],[0,9],[1,-3],[1,1],[1,0],[1,-2],[1,-14],[1,-1],[1,4],[1,1],[1,0],[1,-6],[2,-9],[1,9],[1,2],[2,7],[2,7],[1,6],[1,3],[2,2],[2,2],[3,5],[2,5],[2,6],[1,4],[1,6],[1,0],[0,-10],[1,-12],[1,-8],[3,3],[2,1],[1,4],[2,8],[1,10],[1,7],[2,6],[1,5],[1,4],[2,5],[2,-5],[1,-7],[1,-6],[0,-10],[1,-10],[1,-7],[1,0],[1,2],[1,0],[1,1],[1,-13],[2,4],[0,13],[1,0],[1,-4],[1,-2],[2,5],[-1,19],[-1,8],[-1,3],[-1,2],[-2,0],[-2,4],[-2,8],[-1,9],[-2,10],[-2,18],[-2,12],[-1,11],[0,28],[0,18],[1,10],[1,12],[1,11],[1,9],[1,10],[2,6],[2,8],[1,13],[1,17],[1,29],[1,14],[0,4],[0,19],[2,15],[2,6],[1,6],[1,9],[1,9],[0,15],[1,9],[1,12],[0,6],[-1,34],[1,30],[0,9],[0,7],[-1,2],[-2,-5],[0,-2],[-1,-6],[-1,-14],[0,-14],[0,-20],[0,-22],[-1,-19],[-1,-10],[-1,-3],[-1,-1],[-1,-7],[-1,-8],[0,-16],[-3,-44],[-1,-31],[-1,-6],[-1,0],[-2,-7],[-1,-10],[-4,-35],[-1,-2],[-1,-13],[-1,-40],[-2,-36],[0,-9],[-3,-58],[-1,-7],[-1,-2],[-1,7],[-1,14],[-1,8],[-1,7],[-2,4],[-1,-6],[-1,-2],[-2,1],[-1,-1],[-2,-5],[-2,-11],[-1,1],[0,12],[0,6],[-1,-10],[0,-13],[-2,-3],[-1,2],[-2,-1],[-1,-5],[-1,-4],[-5,-8],[0,-12],[-2,2],[-1,1],[-1,-2],[-1,5],[-1,18],[-1,21],[-2,7],[-1,5],[-1,2],[0,13],[0,23],[1,7],[-1,8],[-1,13],[0,25],[0,14],[-1,12],[0,15],[0,14],[0,14],[0,12],[0,15],[0,15],[0,22],[-1,10],[0,11],[0,15],[0,12],[1,9],[-1,16],[0,21],[1,17],[1,8],[-1,21],[0,22],[-1,19],[0,17],[0,20],[-1,19],[-1,12],[0,13],[-1,13],[0,19],[1,16],[0,16],[0,22],[-1,26],[0,18],[0,14],[0,14],[-1,14],[1,14],[0,15],[-1,17],[0,15],[0,11],[-1,11],[0,11],[1,31],[0,17],[0,16],[1,15],[1,16],[1,14],[2,0],[1,-8],[1,21],[-1,15],[-1,3],[-1,5],[0,14],[1,8],[1,16],[0,18],[0,21],[0,16],[-1,13],[0,15],[0,23],[0,37],[2,10],[0,15],[0,14],[0,13],[0,13],[0,10],[1,-4],[3,-4],[1,3],[3,-1],[3,-11],[2,7],[1,10],[2,12],[1,4],[1,-18],[1,-37],[1,-20],[2,-18],[2,-7],[1,-8],[2,4],[0,15],[-1,15],[0,19],[-1,21],[0,17],[-1,17],[-1,15],[-1,17],[-1,12],[-2,8],[2,15],[0,9],[1,13],[1,7],[1,1],[2,-3],[1,2],[2,7],[2,-2],[2,-7],[1,-1],[0,14],[-1,20],[1,13],[12,99],[1,-9],[0,-19],[1,-22],[0,-28],[1,-13],[1,-11],[0,-12],[2,-23],[0,-22],[0,-21],[1,-10],[0,-12],[0,-15],[0,-10],[1,-11],[0,-2],[1,10],[0,19],[0,17],[0,14],[0,16],[-1,26],[0,16],[0,13],[-1,10],[0,14],[-1,15],[-1,13],[0,21],[-1,27],[1,25],[-1,7],[1,31],[0,6],[0,4],[-2,28],[0,16],[0,13],[-1,22],[0,14],[1,15],[5,24],[4,-4],[4,15],[2,62],[-2,41],[-3,-15],[-1,-51],[-4,-24],[-5,-12],[-1,-14],[0,-3],[-1,-8],[-1,-14],[0,-15],[-1,-15],[0,-14],[1,-16],[0,-6],[0,-13],[-1,-8],[0,-8],[0,-7],[0,-21],[0,-31],[-2,0],[-1,5],[-1,1],[-2,-5],[0,-7],[-1,-2],[-2,-2],[-1,-7],[-1,-9],[0,-4],[-1,-18],[-2,-13],[-1,-7],[0,-11],[0,-17],[-1,-16],[-1,-2],[-1,-5],[-2,-4],[-1,6],[-1,6],[-1,9],[-2,3],[-1,-13],[0,-23],[-2,-14],[-1,-8],[0,-18],[-1,-14],[0,-36],[-1,-1],[-2,-15],[-1,1],[-2,2],[-2,5],[-1,2],[-1,3],[-1,1],[-1,5],[-2,10],[-1,6],[-1,12],[-1,17],[0,25],[0,32],[0,19],[-1,29],[0,15],[0,15],[1,19],[0,21],[-1,19],[-1,29],[0,17],[0,16],[1,14],[-1,14],[-1,10],[0,23],[0,18],[-1,29],[-1,14],[0,19],[-1,29],[1,12],[0,14],[0,16],[-1,17],[0,20],[0,21],[-1,35],[0,14],[0,27],[0,22],[0,20],[0,17],[1,11],[1,7],[0,16],[1,13],[2,1],[1,3],[0,6],[1,7],[1,8],[2,8],[2,18],[1,6],[5,-6],[4,9],[2,13],[2,1],[0,-1],[1,-5],[2,-5],[1,-8],[2,15],[1,9],[1,12],[0,8],[1,15],[0,19],[1,8],[1,4],[1,0],[1,-8],[0,-11],[2,-10],[0,-15],[1,-3],[1,20],[0,14],[1,24],[0,24],[1,20],[2,8],[1,3],[1,6],[2,6],[2,4],[2,-1],[1,-3],[1,9],[-1,10],[-1,4],[0,18],[0,13],[-2,1],[0,-15],[-3,-12],[-2,-8],[-2,3],[-2,-4],[-1,-4],[0,-7],[-2,-10],[-1,-12],[-1,2],[-1,0],[-1,-12],[0,-21],[-1,-11],[-1,-5],[-2,-7],[-1,-7],[-1,-18],[-3,-11],[-2,9],[-4,-3],[-1,-7],[-1,-5],[-1,-9],[-1,-4],[-1,-7],[-1,11],[-2,9],[-1,0],[-1,-7],[-1,-5],[-1,-13],[0,-8],[-1,-8],[-3,-28],[-1,-4],[0,-3],[-3,-2],[-1,-1],[0,4],[-1,8],[0,21],[-1,4],[-2,28],[-1,5],[0,18],[-1,30],[-2,36],[-2,31],[-4,65],[-2,44],[-3,35],[0,14],[0,8],[1,6],[0,6],[1,7],[1,7],[1,10],[1,7],[1,9],[1,14],[2,22],[2,48],[0,18],[1,6],[1,2],[0,19],[-1,21],[-1,-2],[-1,-5],[-1,-10],[-1,-13],[-1,-13],[-1,-12],[-1,-13],[-1,-9],[-1,-6],[-1,-8],[-1,-5],[-2,-9],[-4,-21],[-2,7],[-2,8],[-1,22],[0,7],[-1,15],[-1,18],[-4,74],[-4,85],[-1,23],[-1,15],[-2,14],[0,18],[-1,18],[-2,8],[-1,11],[0,12],[-1,19],[-1,16],[-1,19],[0,23],[-1,3],[0,2],[-1,-7],[0,11],[-1,14],[0,13],[-1,9],[-1,9],[-1,12],[-1,7],[-1,-2],[0,12],[-1,10],[-1,18],[-1,8],[-1,8],[-1,8],[0,10],[-1,16],[-1,10],[-2,34],[0,15],[1,9],[1,17],[0,19],[1,13],[1,14],[0,16],[-1,9],[-2,2],[-1,-8],[-1,-18],[0,-19],[-1,-20],[-1,-7],[0,-12],[-1,-3],[-1,4],[0,7],[-1,9],[-1,12],[-1,12],[-1,18],[-1,12],[-1,9],[-1,19],[0,8],[-1,8],[-1,17],[1,21],[0,26],[0,18],[3,71],[-1,13],[-1,-6],[0,-9],[-1,-7],[0,-21],[-1,-13],[-1,-5],[0,-14],[0,-15],[-1,-6],[0,9],[-1,11],[0,10],[0,12],[-1,4],[-1,2],[-1,11],[-1,5],[0,12],[4,39],[4,27],[0,1],[2,5],[0,10],[2,8],[1,-1],[1,5],[2,9],[1,9],[1,15],[2,12],[1,13],[2,15],[1,10],[1,14],[2,14],[1,10],[1,4],[1,11],[1,13],[1,8],[1,21],[1,10],[0,5],[2,5],[1,10],[1,9],[1,6],[2,7],[1,6],[0,10],[0,5],[-2,-6],[-1,-3],[-1,-4],[-1,-4],[-1,-7],[-3,-7],[-1,1],[0,6],[-1,3],[1,3],[8,82],[2,23],[1,19],[1,10],[-1,12],[-1,-10],[-1,-8],[-1,-6],[-2,0],[0,13],[0,9],[-1,5],[-2,13],[0,15],[-1,7],[0,-3],[0,-7],[0,-10],[1,-12],[0,-12],[-1,-15],[-1,-9],[-1,-17],[-2,-5],[-1,-14],[-1,-12],[-2,-13],[-1,-27],[-2,-31],[-1,-13],[-2,-25],[0,-6],[-1,-7],[-1,-15],[-1,-19],[-1,-8],[-1,-2],[-4,0],[-2,-29],[-5,12],[-1,18],[-2,23],[0,-3],[-1,-3],[0,-19],[1,-16],[1,-5],[1,-18],[1,-16],[1,-11],[-4,-31],[-1,-24],[-4,-16],[-2,6],[-3,-16],[-3,-6],[-5,-9],[-1,-2],[-5,-28],[-1,-5],[-2,-10],[0,-3],[-1,-20],[-1,-13],[-2,-22],[-1,-11],[-1,-8],[-1,-8],[-1,-14],[-2,-12],[0,-1],[-2,1],[-1,0],[-1,6],[-2,2],[-2,-5],[-1,-11],[0,-12],[-2,-15],[-2,0],[0,16],[-1,20],[0,16],[-1,20],[0,19],[-1,18],[-1,14],[-1,14],[-2,11],[-1,16],[0,15],[0,12],[0,5],[1,12],[0,11],[0,12],[-1,5],[0,-16],[-1,-11],[0,-7],[-1,-1],[-1,1],[-1,1],[-1,-4],[-1,-8],[0,-7],[-2,-3],[-9,-44],[-2,-24],[-2,-1],[-1,-14],[-2,-11],[-2,0],[0,14],[0,57],[0,21],[-1,12],[0,12],[-1,15],[-1,-1],[-1,-18],[1,-8],[2,-30],[0,-13],[0,-20],[-1,-31],[0,-24],[-1,-16],[-3,-16],[-3,-8],[-1,-14],[-1,-12],[-2,-11],[-2,-14],[-1,-12],[-1,-8],[-1,-9],[-1,-7],[-1,-11],[-1,-6],[-1,-9],[-1,-7],[-1,-5],[-1,-6],[-1,-8],[-2,-1],[-1,13],[0,21],[0,10],[0,15],[1,18],[0,64],[0,21],[0,38],[0,15],[-1,14],[0,3],[-2,-24],[0,-10],[1,-24],[0,-8],[0,-10],[-1,-9],[0,-15],[1,-18],[0,-19],[0,-17],[-1,-14],[-1,-14],[0,-19],[0,-18],[0,-17],[-1,-14],[-1,-12],[-1,-8],[-1,-4],[-1,-5],[-1,-6],[-1,-10],[-7,-40],[-1,-26],[-1,-8],[-2,-17],[-2,-18],[-2,-16],[-2,-19],[-2,-17],[-1,-12],[-3,-26],[-1,3],[-1,14],[-1,10],[-1,11],[-1,9],[-1,14],[-1,10],[-1,8],[-1,6],[-1,6],[-2,5],[-1,8],[0,7],[-1,13],[-1,10],[-2,9],[-1,-6],[-1,11],[-1,10],[-1,6],[-1,6],[-1,6],[-2,6],[-1,8],[-1,12],[0,16],[0,20],[0,20],[-1,9],[-1,14],[0,9],[-1,-6],[-1,-17],[0,-16],[1,-16],[0,-29],[1,-11],[0,-19],[10,-70],[1,-1],[2,-10],[3,-9],[1,-6],[0,-3],[2,-6],[2,-14],[1,-9],[0,-11],[1,-13],[0,-14],[1,-7],[2,-8],[0,-19],[-1,-11],[-1,-6],[-1,-6],[-1,1],[-1,1],[-1,4],[-1,-1],[-1,1],[-1,6],[0,16],[-1,2],[-1,-12],[-1,0],[-1,7],[-1,-3],[-1,3],[-1,7],[-1,5],[-1,-7],[1,-10],[0,-12],[1,-16],[-2,1],[-1,9],[0,15],[-1,20],[-1,17],[-1,4],[-1,5],[-1,-6],[0,-10],[1,-14],[0,-9],[1,-15],[-1,-10],[0,-5],[-1,-2],[-1,-5],[-1,-10],[-1,-2],[-1,3],[-1,-1],[-2,-1],[-2,-3],[-2,-2],[-2,-7],[-2,-7],[-2,3],[0,4],[-2,5],[-1,-5],[-1,-12],[-1,-3],[-2,-6],[0,-44],[1,-14],[2,5],[0,-2],[1,-13],[1,-8],[1,-14],[1,-16],[1,-4],[1,0],[2,-3],[2,1],[3,1],[3,3],[2,-2],[1,-13],[1,-12],[1,-3],[1,-2],[1,-3],[2,2],[1,-1],[1,-7],[2,-5],[1,-5],[2,-22],[1,-8],[1,-17],[1,-10],[0,-11],[1,-15],[1,15],[0,15],[0,1],[1,0],[1,-9],[1,-18],[0,-17],[-1,-14],[-1,-9],[-1,9],[0,-11],[1,-6],[0,-6],[1,-8],[-1,-4],[-1,5],[0,-14],[0,-13],[0,-14],[-1,-33],[0,-26],[1,-15],[-1,-26],[-1,-22],[-2,-17],[-1,-2],[-1,5],[-2,-7],[0,-18],[0,-16],[0,-20],[1,-10],[1,-7],[-1,-5],[-1,-4],[0,-13],[-1,-14],[-1,-10],[0,-18],[0,-14],[-1,-24],[0,-16],[-1,-18],[0,-14],[-1,-13],[-1,-14],[-1,1],[-1,4],[-1,9],[0,-1],[0,-12],[0,-12],[-2,18],[0,3],[-2,-3],[0,8],[-1,10],[1,5],[0,15],[0,15],[-1,8],[-1,-3],[0,-15],[0,-11],[-1,27],[0,8],[0,8],[-1,13],[0,18],[-1,-4],[-2,6],[-1,17],[0,12],[-1,14],[-1,-6],[0,-6],[0,-17],[1,-16],[1,-10],[1,-17],[1,-25],[1,-21],[0,-32],[1,-20],[1,-9],[1,-12],[1,-25],[1,-23],[2,-35],[1,-20],[1,-6],[1,-15],[0,-10],[1,-17],[0,-18],[1,-17],[2,-18],[-1,-3],[-1,-6],[-1,-8],[0,16],[-1,11],[-1,0],[0,-17],[0,-15],[0,-9],[0,-13],[0,-13],[-1,-10],[-2,-4],[-1,-14],[0,-20],[0,-16],[-1,-18],[0,-13],[0,-21],[-2,-24],[-1,0],[0,14],[0,16],[0,17],[0,15],[-1,-13],[-1,-17],[-1,-15],[-1,-17],[0,-14],[0,-16],[0,-16],[-1,6],[-1,5],[-1,8],[-1,10],[-1,-8],[-1,-14],[0,-13],[1,2],[1,6],[0,-17],[1,-23],[0,-15],[0,-12],[1,-11],[0,-21],[-1,-3],[-1,-10],[-1,7],[0,17],[-1,6],[-1,8],[0,6],[-1,8],[-1,11],[-1,15],[-1,-8],[-1,1],[-1,-2],[-2,14],[0,13],[-1,13],[-1,12],[-1,8],[-1,6],[-2,19],[-2,31],[-1,17],[-1,21],[0,17],[-1,8],[-1,5],[-1,12],[2,2],[-2,27],[-2,17],[-1,6],[-3,22],[-1,16],[-2,17],[-1,15],[-2,10],[-1,7],[-1,4],[-2,1],[-1,5],[3,-29],[1,-8],[1,-15],[2,-21],[1,-22],[1,-11],[2,-12],[1,-19],[1,-16],[0,-18],[1,-13],[1,-2],[0,-21],[2,-26],[1,-22],[1,-15],[0,-17],[1,-16],[1,-16],[1,-17],[0,-13],[0,-16],[-1,-17],[2,-3],[1,-11],[1,-7],[1,-16],[1,-16],[1,-8],[1,-16],[0,-15],[-1,-7],[-1,9],[0,-12],[-1,4],[0,15],[-1,10],[-1,5],[-1,6],[-1,1],[-1,1],[-1,6],[-2,18],[1,-21],[0,-9],[1,-3],[1,-7],[1,-9],[1,-13],[1,2],[0,-17],[2,-18],[1,-10],[0,-12],[0,-16],[1,-3],[0,-11],[0,-14],[0,-10],[1,-8],[-1,0],[-2,6],[1,-22],[1,-27],[0,-21],[0,-12],[1,-38],[0,-18],[0,-10],[-2,-6],[0,-12],[0,-12],[-1,7],[0,16],[-2,6],[-1,-2],[-1,-24],[-1,-18],[0,-17],[0,-18],[0,-37],[-1,-10],[-1,3],[0,-20],[1,-11],[-1,-19],[0,7],[-1,7],[-1,3],[-1,-10],[-1,6],[-1,16],[-1,13],[-2,30],[-1,13],[-1,1],[-2,-5],[0,4],[-3,29],[-2,32],[-3,37],[-2,22],[-2,14],[-2,7],[-3,16],[0,-20],[1,-9],[-3,6],[-1,7],[-1,18],[-2,10],[-1,3],[-3,0],[-3,22],[-1,0],[-4,19],[-2,17],[-1,29],[-2,31],[0,22],[-3,25],[-2,5],[-2,16],[0,23],[-1,38],[-2,37],[-1,38],[1,10],[0,14],[-2,29],[1,18],[0,20],[-1,45],[0,35],[0,12],[-1,8],[-1,14],[-1,22],[0,23],[-1,23],[1,25],[0,32],[-1,36],[-1,20],[-1,30],[0,14],[-1,14],[-3,30],[-2,31],[0,18],[-2,22],[-2,27],[0,13],[0,10],[0,4],[0,7],[1,6],[0,9],[0,-9],[1,-4],[0,16],[-1,10],[-1,6],[-1,2],[0,11],[0,6],[-2,13],[-3,38],[0,14],[0,18],[1,-2],[4,-14],[0,-2],[0,-4],[1,-8],[1,-7],[1,-8],[1,-18],[2,-17],[1,-15],[2,-15],[1,-13],[1,2]]],"transform":{"scale":[0.0035892940929409312,0.00020174147179471828],"translate":[-179.1473399999999,51.215265027000044]}} diff --git a/src/js/config/mapconfig/mapfiles/county/al-counties.json b/src/js/config/mapconfig/mapfiles/county/al-counties.json new file mode 100644 index 00000000..ebcf6e8d --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/al-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-88.47322184299986,30.211837347000085,-84.88802121899988,35.008021457000154],"geometries":[{"type":"Polygon","properties":{"name":"AL"},"id":"01077","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01083","arcs":[[4,5,6,-4,7]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01089","arcs":[[8,9,10,-5,11]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01071","arcs":[[12,13,-9,14]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01033","arcs":[[15,16,17,-2]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01049","arcs":[[18,19,20,-13,21]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01079","arcs":[[-7,22,23,24,25,-16,-1]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01103","arcs":[[-11,26,27,-23,-6]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01095","arcs":[[-21,28,29,30,-27,-10,-14]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01059","arcs":[[-26,31,32,33,-17]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01019","arcs":[[34,35,36,-19,37]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01093","arcs":[[38,39,40,41,42,-33]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01043","arcs":[[-31,43,44,45,-24,-28]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01133","arcs":[[-25,-46,46,-39,-32]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01009","arcs":[[-30,47,48,49,50,-44]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01055","arcs":[[-37,51,52,-48,-29,-20]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01075","arcs":[[53,54,55,-42]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01127","arcs":[[-45,-51,56,57,58,-40,-47]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01115","arcs":[[59,60,61,62,-49,-53]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01015","arcs":[[63,-60,-52,-36,64]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01029","arcs":[[65,66,67,68,-65,-35]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01057","arcs":[[-59,69,70,-54,-41]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01073","arcs":[[-63,71,72,73,-57,-50]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01121","arcs":[[-64,-69,74,75,76,-61]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01125","arcs":[[-58,-74,77,78,79,80,-70]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01117","arcs":[[-77,81,82,83,-72,-62]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01107","arcs":[[-71,-81,84,85,86,-55]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01111","arcs":[[87,88,89,90,-67]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01027","arcs":[[-91,91,92,-75,-68]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01007","arcs":[[93,94,95,-78,-73,-84]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01063","arcs":[[96,97,98,-85,-80]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01017","arcs":[[99,100,101,-89]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01123","arcs":[[-102,102,103,104,105,-92,-90]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01037","arcs":[[-106,106,107,-82,-76,-93]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01021","arcs":[[-108,108,109,110,111,-94,-83]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01065","arcs":[[-96,112,113,-97,-79]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01119","arcs":[[114,115,116,-86,-99]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01105","arcs":[[-112,117,118,-113,-95]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01051","arcs":[[119,120,121,-109,-107,-105]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01081","arcs":[[122,123,124,-103,-101]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01047","arcs":[[125,126,127,128,-118,-111]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01001","arcs":[[-122,129,130,-126,-110]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01087","arcs":[[131,132,133,-120,-104,-125]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01091","arcs":[[-114,-119,-129,134,135,136,-115,-98]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01113","arcs":[[137,138,139,-132,-124]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01101","arcs":[[-134,140,141,142,143,-130,-121]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01085","arcs":[[-144,144,145,146,-127,-131]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01023","arcs":[[147,148,149,-116,-137]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01011","arcs":[[-140,150,151,-141,-133]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01131","arcs":[[-128,-147,152,153,154,-135]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01005","arcs":[[155,156,157,158,-151,-139]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01109","arcs":[[-159,159,160,161,-142,-152]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01041","arcs":[[-162,162,163,164,-145,-143]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01025","arcs":[[-155,165,166,167,-148,-136]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01013","arcs":[[-165,168,169,170,-153,-146]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01099","arcs":[[-171,171,172,173,-166,-154]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01067","arcs":[[174,175,176,-157]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01035","arcs":[[177,178,-172,-170]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01129","arcs":[[-168,179,180,181,-149]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01045","arcs":[[-177,182,183,184,-160,-158]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01031","arcs":[[185,186,-163,-161,-185]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01039","arcs":[[-187,187,188,189,-178,-169,-164]]},{"type":"MultiPolygon","properties":{"name":"AL"},"id":"01003","arcs":[[[190]],[[191]],[[192]],[[193]],[[-174,194,195,196,197,198,-180,-167]]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01069","arcs":[[199,200,-183,-176]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01053","arcs":[[-190,201,-195,-173,-179]]},{"type":"Polygon","properties":{"name":"AL"},"id":"01061","arcs":[[202,-188,-186,-184,-201]]},{"type":"MultiPolygon","properties":{"name":"AL"},"id":"01097","arcs":[[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[-197,209]],[[210,-181,-199]]]}]},"states":{"type":"GeometryCollection","bbox":[-88.47322184299986,30.211837347000085,-84.88802121899988,35.008021457000154],"geometries":[{"type":"MultiPolygon","properties":{"name":"Alabama"},"id":"01","arcs":[[[203]],[[204]],[[190]],[[191]],[[205]],[[206]],[[207]],[[208]],[[192]],[[193]],[[11,14,21,37,65,87,99,122,137,155,174,199,202,188,201,195,209,197,210,181,149,116,86,55,42,33,17,2,7]]]}]}},"arcs":[[[33821,94799],[-110,-2],[-94,11],[-94,-14],[-39,-12],[-125,-60],[-17,-19],[-40,-20],[-52,-8],[-98,-14],[-63,-8],[-51,0],[-277,35],[-184,66],[-249,191],[-124,66],[-175,125],[-73,99],[-37,95],[-31,58],[-27,49],[-117,144],[-37,33],[-55,34],[-35,10],[-124,7],[-45,-17],[-19,-7],[-30,-16],[-53,-14],[-104,-13],[-52,-6],[-160,9],[-59,12],[-52,19],[-215,85],[-109,39],[-72,25],[-76,5],[-5,1],[-3,0],[-68,6],[-35,-2],[-110,-56],[-2,-1],[-31,-24],[-4,-4],[-155,-78],[-61,1],[-242,15],[-113,-10],[-99,-12],[-234,13],[-90,27]],[[29195,95662],[-123,38],[-56,17],[-108,32],[-94,21],[-89,19],[-78,10],[-22,7],[-114,12],[-26,7],[-45,24],[-41,23],[-92,36],[-206,17],[-37,-4],[-190,-5],[-19,0],[-51,2],[-63,4],[-20,1],[-50,9],[-80,15],[-78,22],[-38,11],[-58,28],[-87,38],[-79,26],[-280,41],[-70,38],[-75,56],[-44,49],[-25,29],[-14,5],[-143,33],[-169,12],[-5,1],[-252,-15],[-317,-13],[-44,-23],[-101,-51],[-53,-14],[-24,-2],[-50,-12],[-42,-4],[-50,0],[-46,-7],[-57,-8],[-93,-4],[-218,-33],[-130,-21],[-64,-10],[-87,-24],[-10,-5],[-75,-38],[-15,-103],[-41,-59],[-43,-40],[-5,-4],[-136,-73],[-121,-18],[-56,-10],[-462,-79],[-155,-80],[-18,-9],[-2,-1],[-1,0],[-100,-12],[-266,-34],[-55,0],[-33,0],[-59,-20],[-104,-36],[-200,-71],[-274,-67],[-111,-36],[-83,-2],[-3,0],[-16,-1],[-75,-4],[-95,-18],[-254,-59],[-40,-9],[-180,-41],[-19,1],[-4,0],[-4,-2],[-16,-8],[-105,-23],[-22,-3],[-30,-5],[-37,2],[-35,-17],[-40,-14],[-3,-1],[-48,-12],[-28,-10],[-60,-22],[-115,-58],[-5,-34],[-12,-19],[-38,-37],[-64,-61],[-62,-47],[-84,-69],[-44,-45],[-12,-35],[-3,-9],[-28,-33],[-15,-7],[-47,-25],[-83,-44],[-34,-9],[-155,13],[-86,-20],[-258,-91],[-162,-64],[-113,-47],[-2,-1],[-38,-20],[-17,-21],[-40,-21],[-87,-29],[-48,-8],[-111,-3],[-230,12],[-78,-1],[-110,8],[-35,16],[-58,3],[-130,7],[-65,-2],[-29,-8],[-14,-4],[-129,4],[-6,1],[-93,21],[-217,37],[-90,46],[-126,24],[-104,17],[-148,35],[-44,14],[-136,52],[-135,60],[-9,5],[-17,8],[-5,4],[-143,106],[-11,8],[-15,14],[-86,83],[-97,70],[-26,13],[-78,37],[-82,51],[-58,35],[-168,88],[-178,87],[-126,55],[-133,74],[-118,79],[-146,83],[-217,101],[-83,35],[-79,30],[-78,40],[-122,85],[-41,36],[-115,131],[-1,1],[0,1],[-28,39],[-30,42],[-3,6],[-69,138],[-30,89],[-3,8],[-3,14],[-1,3],[-39,156],[-16,63],[-6,11],[-27,52],[-41,67],[-37,46],[-3,4],[-10,12],[-65,79],[-85,80],[-21,20],[-81,84],[-81,83],[-33,20],[-33,34],[-19,18],[-62,33],[-23,18],[-61,42],[-62,20],[-42,19],[-37,17],[-31,18],[-82,42],[-177,96],[-118,10],[-131,44],[-124,33],[-44,12],[-82,13],[-96,15],[-50,32],[-72,9],[-31,10],[-49,14],[-85,23],[-106,29],[-63,17],[-37,10],[-110,37],[-108,38],[-89,33],[-71,24],[-37,13],[-116,36],[-109,27],[-159,23],[-96,1],[-102,-3],[-78,-7],[-91,-17],[-121,-22],[-48,-14],[-35,-11],[-66,-22],[-67,-31],[-89,-42],[-88,-38],[-77,-27],[-107,-22],[-154,-11],[-116,1],[-8,1],[-76,3],[-29,1],[-133,11],[-9,-52]],[[10469,97584],[-23,24],[-36,16],[-37,8],[-55,8],[-98,25],[-222,57],[-360,93],[-42,17],[-59,24],[-104,43],[-183,76],[-346,225],[-156,197],[-105,133],[-46,67],[-51,75],[-25,36],[-17,25],[-25,37],[-44,64],[-148,216],[-223,176],[-76,76],[-47,47],[-78,81],[-14,14],[-106,109],[-25,26],[-98,162],[-80,253],[-2,5],[11,0],[177,-2],[401,-3],[2965,-25],[2106,-11],[171,-1],[251,-2],[1620,-7],[2948,-15],[77,0],[150,-1],[2085,-10],[450,-2],[943,-5],[472,-2],[1409,-7],[367,-2],[9,0],[70,0],[768,-4],[1858,-10],[1400,-7],[2829,-15],[133,-1],[116,-1],[1427,-19],[2091,-28],[211,-5],[160,-3]],[[35213,99811],[-1,-55],[-3,-190],[-1,-74],[-4,-135],[-5,-200],[2,-37],[2,-53],[0,-29],[-4,-66],[-3,-49],[0,-50],[-3,-125],[-1,-42],[-7,-241],[0,-24],[1,-149],[-3,-231],[1,-55],[-1,-36],[-3,-30],[0,-45],[-9,-153],[-8,-31],[0,-34],[3,-33],[-3,-52],[-12,-215],[-2,-31],[-3,-34],[-4,-97],[-9,-100],[-4,-79],[-2,-41],[-2,-47],[-7,-102],[0,-86],[-6,-55],[-2,-39],[-2,-51],[-3,-108],[1,-87],[-7,-53],[0,-66],[2,-66],[-1,-67],[-3,-34],[0,-34],[0,-25],[0,-4],[0,-34],[0,-2],[0,-39],[-22,-20],[-35,-20],[-46,-31],[-53,-41],[-33,-16],[-36,-24],[-49,-23],[-36,-11],[-53,-22],[-53,-21],[-39,-21],[-37,-19],[-58,-30],[-54,-31],[-48,-26],[-41,-18],[-41,-17],[-40,-16],[-29,-15],[-38,-19],[-36,-17],[-35,-18],[-67,-24],[-164,-80],[-116,-31],[-102,-20],[-104,-18],[-101,-22],[-84,-33],[-67,-31],[-25,-33],[2,-28],[1,-14],[1,-6],[16,-54],[29,-48],[135,-60],[29,-13],[5,-2],[95,-56],[22,-73],[19,-29],[62,-10],[20,-4],[19,-5],[11,-27]],[[47126,99664],[1,-305],[-1,-308],[-1,-145],[-1,-159],[0,-23],[0,-6],[0,-201],[1,-75],[-1,-44],[-3,-255],[-7,-339],[0,-40],[1,-40],[-4,-93],[6,-202],[-1,-30],[0,-4],[-2,-62],[-7,-244],[-4,-177],[-1,-60],[-1,-65],[-2,-51],[-4,-141],[-5,-183],[-1,-61],[-8,-358],[-1,-65],[-1,-146],[-1,-71],[-4,-140],[-2,-24],[0,-24],[-1,-38],[0,-31],[0,-57],[-2,-47],[0,-30],[0,-27],[0,-38],[-1,-41],[0,-61],[-2,-59],[0,-39],[-1,-33],[0,-57],[-1,-22],[0,-32],[-1,-58],[0,-34],[-1,-36],[-1,-22],[-1,-53],[-1,-75],[-2,-63],[0,-3],[0,-26],[-1,-33],[0,-21],[0,-23],[0,-21],[-1,-30],[1,-28],[0,-23],[-1,-25],[-1,-34],[-1,-66],[-2,-57],[-1,-145],[0,-46],[-1,-47],[-1,-130],[0,-45],[-1,-68],[-1,-40],[0,-62],[1,-23],[-1,-66],[0,-21],[-1,-73],[-1,-89],[-1,-63],[-1,-56],[0,-2],[-3,-112],[-3,-138],[-1,-53],[-1,-35],[-1,-38],[0,-28],[-1,-26],[0,-6],[-7,-192],[-1,-41],[-1,-36],[-3,-90],[1,-63],[-2,-152],[-7,-107],[-1,-72],[-4,-78],[-2,-43],[-1,-27],[0,-51],[-4,-45],[-3,-143],[-3,-36],[-6,-86],[-2,-22],[1,-49],[-9,-163],[-3,-83],[-6,-138],[-5,-145],[-3,-103],[-4,-85],[-2,-41],[-2,-37],[-2,-56],[-1,-25],[-2,-59],[0,-1],[-1,-33]],[[46947,90466],[-58,6],[-41,5],[-14,2],[-46,7],[-49,7],[-42,6],[-32,4],[-46,6],[-57,9],[-7,1],[-61,10],[-34,2],[-291,17],[-99,-4],[-12,0],[-148,3],[-182,13],[-99,15],[-80,24],[-137,39],[-64,29],[-15,7],[-110,48],[-120,47],[-15,6],[-5,1],[-145,44],[-169,38],[-176,28],[-166,32],[-211,53],[-23,6],[-72,18],[-42,6],[-153,22],[-197,34],[-56,11],[-43,9],[-177,47],[-101,36],[-107,49],[-99,20],[-74,54],[-35,16],[-7,2],[-135,35],[-74,27],[-107,76],[-10,6],[-151,62],[-3,1],[-83,13],[-18,7],[-185,86],[-209,80],[-155,42],[-72,26],[-2,1],[-174,97],[-17,10],[-59,37],[-190,108],[-71,31],[-90,40],[-133,54],[-179,54],[-231,96],[-130,76],[-29,17],[-63,36],[-30,20],[-43,27],[-38,23],[-47,23],[-31,13],[-62,26],[-47,13],[-56,13],[-59,4],[-58,-2],[-60,-6],[-63,-12],[-59,-16],[-36,-11],[-38,-2],[-32,0],[-115,55],[-316,148],[-514,188],[-74,27],[-57,33],[-49,28],[-42,35],[-72,40],[-33,36],[-36,33],[-59,39],[-33,19],[-40,23],[-33,19],[-40,20],[-27,11]],[[38161,93286],[-48,27],[-47,28],[-153,89],[-40,24],[-54,3],[-117,82],[-37,33],[-7,7],[-196,177],[-7,24],[-12,37],[-34,74],[-16,36],[-15,22],[-22,27],[-20,22],[-31,25],[-87,56],[-32,15],[-40,17],[-35,15],[-153,67],[-38,17],[-94,52],[-30,12],[-46,20],[-67,24],[-125,40],[-96,36],[-54,32],[-102,44],[-83,29],[-159,55],[-77,22],[-50,13],[-44,7],[-55,2],[-45,4],[-84,2],[-86,8],[-34,6],[-4,2],[-202,53],[-96,70],[-128,72],[-18,1],[-102,28],[-141,19],[-151,11],[-27,7],[-3,6],[-241,15],[-153,10],[-136,-6],[-61,-8],[-106,-31],[-141,-11],[-6,-13],[-15,-20],[-37,-24]],[[35213,99811],[502,-7],[4200,-58],[341,-5],[1670,-23],[2539,-37],[648,-10],[160,-2],[78,-1],[21,0],[157,-3],[149,-2],[1448,1]],[[60335,99646],[0,-70],[5,-25],[22,-23],[8,-34],[-4,-34],[-6,-40],[-21,-25],[-60,-41],[-26,-26],[40,-13],[35,-14],[46,15],[50,1],[23,-38],[24,-30],[34,-7],[27,-14],[29,1],[24,12],[20,-27],[19,-27],[38,-7],[33,0],[39,-16],[16,-17],[131,27],[31,3],[11,-25],[32,-13],[-32,-22],[-4,-27],[21,-20],[13,-29],[7,-28],[11,-28],[5,-24],[19,-16],[37,-15],[25,-12],[54,-11],[30,-30],[38,-20],[48,4],[33,7],[37,-1],[60,-18],[23,-16],[12,-26],[44,-25],[61,-39],[29,-16],[51,-10],[53,-10],[72,-13],[42,1],[-4,-40],[11,-24],[23,-24],[20,-31],[13,-31],[6,-22],[-37,0],[-20,-22],[9,-19],[12,-32],[14,-19],[6,-26],[31,-10],[12,-23],[-1,-32],[-12,-28],[-41,-21],[-39,-11],[-43,-6],[-32,-13],[-13,-25],[-22,-14],[-31,-6],[-41,-2],[-37,6],[-44,9],[-25,15],[-44,1],[-45,17],[-17,31],[14,20],[-9,20],[-9,22],[-31,16],[-35,2],[-32,18],[-21,13],[-22,22],[-24,28],[-6,49],[-1,26],[-7,30],[-31,-8],[-35,0],[-30,2],[-30,2],[-40,9],[-28,3],[-41,6],[-43,42],[-2,24],[-9,21],[-29,11],[-26,9],[-65,6],[-34,-6],[-36,-27],[-42,-10],[-46,-3],[-33,-21],[-48,-17],[-30,-16],[-14,-22],[-54,-38],[-26,-13],[-38,-21],[-28,-14],[-35,-5],[-44,23],[-48,23],[-29,17],[-44,-18],[-3,-27],[-34,4],[-29,3],[-37,14],[-59,0],[-39,11],[-47,-3],[10,-25],[19,-27],[18,-29],[11,-20],[-9,-24],[18,-20],[13,-21],[27,-12],[9,-30],[-8,-27],[22,-17],[40,-12],[31,-13],[7,-22],[34,2],[33,2],[23,-24],[12,-29],[21,-20],[4,-26],[27,-26],[33,-23],[22,-22],[-1,-23],[-15,-21],[5,-23],[-26,-14],[-28,-11],[-19,-31],[-20,-28],[-33,-34],[-58,-62],[-30,-16],[-64,-13],[-31,-7],[-29,6],[-37,-7],[-31,-2],[-61,3],[-28,4],[-21,-23],[-23,-15],[-22,-24],[-35,-8],[-23,-16],[-20,-16],[-35,-14],[-53,-15],[-27,-10],[-52,4],[-28,-1],[23,-23],[14,-33],[-8,-26],[17,-25],[21,-15],[-4,-26],[-20,-20],[-2,-25],[-17,-18],[-25,-19],[-12,-28],[-24,-25],[-9,-30],[-28,-16],[-50,-36],[-19,-25],[-30,-5],[-34,-4],[-29,-9],[-18,-23],[2,-26],[26,-16],[16,-24],[35,-7],[37,-31],[37,-32],[-17,-36],[-11,-40],[11,-27],[-17,-24],[8,-28],[-22,-41],[15,-27],[25,-20],[17,-21],[29,-4],[34,11],[28,-9],[19,-22],[25,-12],[14,-22],[55,-14],[25,-11],[16,-28],[34,-36],[15,-43],[-8,-28],[-28,-34],[5,-32],[-22,-55],[-31,-20],[-25,-27],[23,-16],[42,1],[25,-15],[34,-9],[33,-15],[27,-14],[24,-16],[39,1],[28,-4],[23,-11],[29,-8],[1,-22],[-20,-16],[-31,-3],[-37,-19],[-31,-18],[-21,-23],[-19,-21],[-30,-17],[-24,-15],[-27,-16],[20,-24],[3,-24],[-32,-8],[-3,-24],[-25,-20],[-46,-11],[-39,-3],[-30,5],[-31,-16],[-28,3],[-27,-27],[5,-24],[-8,-24],[-30,-24],[6,-34],[-4,-32],[-4,-37],[15,-24],[-23,-19],[-23,-18],[15,-30],[28,-26],[25,-15],[30,1],[30,-16],[9,-23],[-4,-30],[-18,-18],[12,-20],[22,-18],[23,-22],[27,-6],[28,-7],[43,20],[25,-16],[19,-29],[-8,-22],[-1,-22],[16,-24],[13,-26],[-57,-8],[-30,0],[-28,-6],[-22,-44],[-30,-18],[-26,-24],[-15,-30],[-8,-38],[11,-21],[-9,-31],[2,-28],[3,-29],[-8,-31],[-4,-30],[23,-21],[6,-20],[11,-29],[29,-21],[-1,-21],[-2,-27],[22,-14],[20,-21],[4,-32],[0,-38],[-2,-24],[-18,-17],[-26,-43],[-4,-25],[0,-34],[-29,-25],[-33,-15],[-26,-25],[12,-29],[-3,-27],[-24,-23],[31,-28],[-13,-21],[-34,-4],[-37,-5],[-24,-12],[-40,-34],[-45,-23],[-37,-12],[-30,-5],[-35,-19],[-23,-16],[-27,-6],[-32,-19],[-64,-31],[-3,-226],[-3,-190],[3,-79],[-2,-123],[-2,-61],[2,-23],[-3,-75],[0,-28],[-2,-46],[0,-16],[-9,-698],[0,-45],[-4,-282],[0,-36],[-1,-80],[-2,-127],[151,-76],[160,-81],[363,-194],[250,-130],[-103,-20],[-30,-9],[-8,-7],[-10,-19],[-8,-24],[-1,-19],[7,-28],[10,-14],[13,-10],[66,-36],[31,-19]],[[59860,91486],[27,-17],[24,-11],[30,-3],[11,1],[16,2],[38,11],[57,8],[61,7],[45,1],[26,-8],[18,-10],[18,-15],[28,-21],[35,-25],[20,-9],[44,-9],[104,-15],[53,-24],[10,-6],[0,-1],[3,-4],[1,-10],[-67,-56],[-15,-22],[-3,-4],[-3,-8],[-5,-15],[-19,-52],[0,-35],[5,-11],[0,-1],[4,-3],[14,-3],[22,2],[52,4],[32,-4],[12,-3],[8,-4],[39,-22],[13,-17],[-1,-1],[-1,-11],[-42,1],[-40,0],[-12,-1],[-84,-20],[-95,-19],[-86,-14],[-15,-2],[-30,-4],[-96,-13],[-55,-3],[-141,-54],[-18,-10],[-21,-8],[-20,-5],[-32,-2],[-11,1],[-18,7],[-5,3],[-19,15],[-7,2],[-2,0],[-7,0],[-6,0],[-8,-2],[-3,-4],[-8,-8],[0,-3],[-4,-28],[-2,-13],[5,-12],[3,-8],[32,-69],[2,-5],[2,-1],[4,-3],[19,-10],[17,-5],[53,-6],[38,0],[102,4],[79,-10],[47,-9],[108,-27],[41,-2],[30,7],[18,11],[11,4],[10,1],[34,-13],[24,-17],[12,-10],[6,-9],[1,-7],[1,-6],[-3,-9],[-1,-1],[-5,-7],[-25,-18],[-3,-2],[-12,-10],[-3,-2],[-11,-11],[-8,-8],[-2,-2],[-54,-59],[-17,-26],[-18,-65],[-5,-20],[-9,-31],[0,-8],[21,-95],[10,-13],[6,-4],[12,-33],[2,-12],[1,-3],[-1,-3],[-4,-10],[-2,-1],[-8,-5],[-44,-17],[-57,-30],[-38,-21],[-4,-3],[-149,-91],[-14,-8],[-37,-23],[-17,-17],[-13,-16],[-49,-68],[-14,-19],[-10,-20],[-43,-94],[-2,-4],[-28,-63],[7,-5],[5,-4],[7,-11],[0,-18],[-6,-12],[-6,-4],[-127,-70],[-18,-1],[-46,5],[-19,3],[-19,11],[-44,40],[-48,31],[-9,6],[-12,6],[-50,27],[-49,21],[-17,7],[-51,22],[-23,10],[-107,53],[-32,18],[-13,13],[-9,12],[-8,10],[-4,-5],[-29,-41],[-16,-13],[-10,-5],[-63,-14],[-86,-17],[-12,-5],[-10,-9],[-3,-3],[-2,-3],[-27,-41],[-9,-14],[-60,-21],[-51,-13],[-16,0],[-15,4],[-44,18],[-45,31],[-50,23],[-62,29],[-123,39],[-31,7],[-32,-3],[-6,0],[-4,-6],[-28,-37],[-6,-7],[-11,-14],[-2,-2],[-16,-8],[-16,-5],[-19,-1],[-14,3],[-12,9],[0,6],[0,1],[0,9],[5,6],[0,9],[0,4],[-10,7],[-9,6],[-21,5],[-22,1],[-1,0],[-3,-1],[-17,-4],[-5,-2],[-9,-5],[-7,-8],[-6,-12],[0,-15],[9,-32],[7,-10],[37,-41],[-47,-102],[-2,-15],[3,-5],[17,-15],[29,-1],[27,3],[31,-45],[3,-4],[-18,-25],[-1,-1],[-2,-38],[0,-2],[1,-1],[1,-1],[11,-11],[-16,-10],[-41,-27],[-35,-23],[-22,-14],[-102,-41],[-27,-10],[-29,-5],[-14,1],[-22,1],[-7,0],[-14,5],[-11,3],[-17,7],[-38,28],[-17,3],[-7,0],[-12,-2],[-25,-6],[-10,-6],[-17,-15],[0,-2],[-28,-5],[-3,-1],[-74,-14],[-39,-7],[-26,-5],[-9,-1],[-2,-4],[-2,-2],[-42,-48],[-16,-20],[-23,-26],[-25,-20],[-2,-1],[-22,-17],[-19,-17],[-30,-23],[-21,-15],[-24,-21],[-19,-17],[-18,-16],[-22,-19],[-17,-19],[-2,-2],[-26,-21],[-12,-1],[-25,-1],[-32,7],[-27,7],[-28,6],[-9,2],[-39,8],[-30,7],[-32,11],[-28,14],[-22,16],[-27,10],[-31,0],[-2,0],[-2,0],[-30,-1],[-46,2],[-37,3],[-10,0],[-23,1],[-41,2],[-36,2],[-41,2],[-34,0],[-34,2],[-29,4],[-40,-3],[-9,-1],[-4,0],[-35,-2],[-54,-17],[-39,-19],[-28,-12],[-33,-15],[-25,-12],[-6,-3],[-42,-20],[-22,-11],[-24,-8],[-4,-2],[-17,-6],[-6,-2],[-11,-3],[-10,-4],[-54,-17],[-9,-2],[-19,-9],[-11,-5],[-34,-8],[-7,5],[-3,3],[-5,2],[-57,33],[-44,25],[-66,21],[-59,3],[-47,-5],[-97,0],[-54,6],[-86,0],[-7,0],[-64,4],[-97,12],[-47,5],[-72,13],[-110,35],[-51,26],[-388,164],[-267,120],[-22,4],[-69,34],[-32,23],[-5,4],[-20,14],[-28,18],[-26,17],[-33,52],[-7,130],[-127,182],[1,5],[-16,13],[-46,61],[-121,188],[-27,32],[-50,37],[-34,47],[-15,46],[7,42],[29,45]],[[53637,90365],[10,53],[-30,129],[-37,83],[-48,74],[-14,17],[-60,69],[-38,44],[-17,12],[-147,91],[-99,45],[-20,9],[-117,53],[-171,61],[-134,25],[-54,1],[-20,0],[-12,2],[-76,8],[-53,-1],[-122,-7],[-208,-29],[-182,-40],[-129,-39],[-103,-51],[-31,-24],[-16,-12],[-21,-16],[-245,-145],[-74,-55],[-23,-27],[-50,-53],[-21,-41],[-50,-53],[-4,-4],[-64,-45],[-76,-38],[-9,-5],[-34,-12],[-10,-2],[-67,-13],[-32,-4],[-1,0],[-87,5],[-122,16],[-80,2],[-2,0],[-6,1],[-84,17],[-58,11],[-43,12],[-22,7],[-32,9],[-36,18],[-56,28],[-24,12],[-25,20],[-18,14],[-43,33],[-23,29],[-22,63],[18,109],[-1,81],[-1,20],[0,3],[-1,2],[-16,36],[-45,64],[-40,39],[-76,56],[-6,5],[-21,8],[-80,33],[-12,5],[-53,15],[-28,5],[-73,14],[-74,14],[-4,-1],[-10,-1],[-31,8],[-22,6],[-118,15],[-20,2],[-49,3],[-27,1],[-126,-9],[-76,-13],[-82,-20],[-142,-50],[-78,-41],[-63,-33],[-159,-97],[-5,-4],[-201,-137],[-27,-19],[-146,-89],[-85,-52],[-57,-39],[-10,-10],[-7,-8],[-37,-32],[-5,-4],[-30,-15],[-88,-45],[-23,-12],[-87,-25],[-133,-23],[-144,-13],[-6,-1],[-10,-1],[-113,-17],[-117,-10],[-147,3],[-95,8],[-15,2],[-94,8]],[[47126,99664],[1526,-5],[198,-1],[1298,-4],[2887,-9],[1356,-4],[150,0],[3364,17],[188,-1],[1943,-9],[57,-1],[242,-1]],[[80609,96920],[-40,-11],[-1,0],[-32,8],[-28,-8],[-33,-9],[-20,-18],[-28,-17],[-38,-30],[-29,-10],[-25,-22],[-31,-11],[-35,-9],[-15,-1],[-38,-3],[-25,-20],[-1,0],[-46,-8],[-34,-13],[-27,-4],[-8,-9],[-7,-6],[-6,-7],[24,-26],[16,-29],[-25,-30],[-59,-43],[-3,-3],[-16,-14],[-26,-16],[-45,-22],[-29,-9],[-36,-2],[-40,-20],[-40,1],[-20,-19],[0,-1],[-47,-42],[-11,-7],[-34,-22],[-43,-8],[9,-17],[6,-10],[-54,-6],[-71,-21],[-36,-9],[-38,-5],[-8,0],[-39,-2],[-3,0],[-22,-31],[-12,-29],[-22,-37],[-19,-46],[-101,-200],[-21,-38],[-9,-23],[-1,-34],[-3,-64],[2,-28],[-2,-33],[-1,-30],[2,-46],[0,-28],[0,-22],[-11,-26],[-26,-37],[-21,-31],[-32,-46],[-27,-34],[-28,-46],[-31,-37],[-25,-33],[-31,-38],[-33,-31],[-37,-40],[-78,-74],[-15,-18],[-183,-236],[-20,-25],[-37,-43],[-77,-89],[-13,-35],[-107,-66],[-57,-35],[-195,-104],[-7,-4],[-165,-3],[-83,-3],[-136,-3],[-167,-7],[-2,-2],[-37,-36],[-148,-146],[-117,-115],[-19,-19],[-61,-59],[-113,-112],[-64,-63],[-9,-8],[-123,-121],[-27,-27],[-19,-18],[-63,-62],[-44,-43],[-28,-27],[-34,-33],[-56,-55],[-86,-85],[-27,-27],[-39,-38],[-34,-33],[-31,-30],[-159,-155],[-20,-20],[-90,-88],[-136,-132],[-59,-60],[-106,-105],[-28,-28],[-79,-79],[-61,-61],[-109,-90],[-29,-23],[-142,-131],[-74,-68],[-28,-27],[-1,-1],[-48,-46],[-121,-117],[-93,-90],[-26,-20],[-115,-56],[-389,-189],[-252,-122],[-61,-30],[-148,-72],[-105,-51],[-84,-41],[-331,-161],[-410,-199],[-81,-39],[-243,-118],[-170,-83],[-93,-45],[-83,-41],[-80,-40],[-34,-17],[-219,-109],[-102,-49],[-29,-14],[-29,-13],[-45,-22],[-66,-29],[-143,-63],[-26,-11],[-144,-62],[-17,-9],[-31,-16],[-85,-46],[-32,-18],[-95,-53],[-88,-42],[-72,-34],[-45,-21],[-27,-11],[-74,-36],[-43,-22],[-41,-20],[-50,-23],[-53,-25],[-99,-71],[-247,-182],[-119,-87],[-58,-42],[-8,-24],[-3,-4],[-39,-27],[-2,-1],[-33,-27],[-6,-12],[-8,-16],[-43,-43],[-137,-35],[-34,-9],[-46,-10],[-25,-9],[-13,-5],[-23,-15],[-38,-31],[-44,-41],[-27,-16],[-23,-7],[-4,-1],[-33,-6],[-48,-4],[-33,4],[-48,2],[-39,-2],[-14,-6],[-8,-7],[-1,-1],[-1,-1],[-4,-8],[-1,-19],[4,-12],[18,-26],[6,-7],[-9,0],[-145,-4],[-1,0],[-54,-47],[-16,-9],[-10,-4],[-16,-1],[-1,-1],[-29,6],[-15,3],[-1,0],[-24,0],[-45,-14],[-3,-1],[-52,-20],[-7,-2],[-25,-10],[-6,-2],[-24,-7],[-77,-33],[-1,0],[-20,-1],[-14,5],[-1,0],[-24,18],[-13,3],[-44,-1],[-55,-9],[-43,-2],[-44,2],[-30,4],[-14,5],[-24,7],[0,1],[-1,1],[-44,-1],[-82,3],[-28,-2],[-11,-2],[-30,-19],[-1,-1],[-12,-17],[-7,-27],[-1,0],[-4,-7],[-24,-16],[-6,-1],[-2,-3],[-15,-14],[-16,-14],[-8,-7],[-50,-15],[-196,-28],[-1,0],[-22,0],[-26,9],[-1,1],[-11,6],[-144,35],[-6,1],[-135,13],[-8,0],[-178,-25],[-67,13],[-38,0]],[[67375,88906],[-17,-2],[-40,-9],[-68,-28],[-23,-13],[-20,-17],[-31,-11],[-61,-10],[-28,-4],[-50,-13],[-5,-2],[-66,-59],[-33,-18],[-3,-2],[-15,-3],[-29,-6],[-4,-1],[-154,-25],[-55,-9],[-29,2],[-12,1],[-113,15],[-24,19],[-8,9],[1,28],[3,47],[7,43],[6,35],[17,31],[3,4],[1,8],[17,98],[0,1],[-19,20],[-32,22],[-63,43],[-77,61],[-40,60],[-48,73],[-60,63],[-30,32],[-24,20],[-25,20],[11,91],[1,7],[13,66],[2,10],[6,30],[16,80],[-66,49],[-50,36],[-3,3],[-74,53],[4,48],[-9,28],[-27,21],[-84,62],[-56,4],[-159,10],[-143,-4],[-38,-1],[-79,85],[-37,-64],[-16,-27],[-56,-98],[-142,-72],[-158,-2],[-118,-1],[20,17],[25,24],[42,46],[20,22],[40,46],[17,23],[57,80],[-71,2],[-42,27],[-4,2],[22,133],[-164,94],[-2,1],[-84,48],[-59,53],[135,-16],[9,250],[1,36],[1,22],[1,22],[0,25],[11,449],[6,223],[-532,4],[-149,2],[-34,0],[-34,0],[-104,1],[-110,1],[-469,4],[-535,4],[-62,1],[-85,0],[-266,2],[-36,1],[-55,0],[-240,2],[-130,0],[-59,0],[-49,1],[-100,-1],[-10,0],[-224,-1],[-82,0],[-186,-1],[-66,0],[-39,0],[-142,-1],[-444,-2],[-2,0],[-139,0],[-170,-1],[-124,-1],[-113,0],[-112,-1],[-81,0]],[[60335,99646],[1665,-8],[88,-1],[757,-4],[1886,-9],[1759,-8],[619,-3],[4542,-21],[54,0],[75,-1],[999,-4],[2648,-28],[1313,-13],[40,-1],[514,-5],[40,0],[161,-2],[1078,-11],[1251,-13],[172,-2],[38,-159],[37,-159],[27,-116],[16,-65],[24,-102],[20,-85],[4,-34],[13,-113],[15,-67],[35,-160],[9,-36],[1,-4],[22,-88],[18,-72],[17,-65],[44,-160],[7,-25],[6,-25],[6,-24],[3,-25],[11,-50],[13,-36],[12,-59],[12,-59],[38,-147],[50,-184],[8,-36],[19,-78],[12,-51],[22,-88],[9,-33],[9,-39],[8,-28],[3,-13],[25,-107]],[[29195,95662],[-63,-111],[76,-163],[-73,-109],[-100,3],[-48,-31],[73,-38],[-38,-24],[-15,-25],[40,-68],[150,-1],[131,-47],[50,-14],[7,-2],[12,-6],[35,-18],[26,-14],[37,-35],[-9,-54],[-65,-112],[-156,-87],[-3,-1],[-36,-16],[-17,-7],[-41,-18],[27,-44],[1,-39],[55,-94],[2,-5],[-101,-61],[-72,-55],[-8,-6],[-40,-31],[-18,-14],[-18,-160],[-2,-14],[70,-111],[28,-32],[60,-68],[22,-79],[4,-14],[-93,-54],[-248,-143],[-342,-156],[0,-1],[-23,-47],[-7,-14],[-5,-9],[1,-8],[12,-118],[47,-76],[21,-35],[44,-38],[3,-2],[69,-60],[0,-63],[0,-2],[0,-94],[-7,-98],[-1,-5],[-5,-77],[-1,-7],[-15,-50],[-1,-2],[-16,-54],[-172,-42],[-178,-53],[-141,8],[-249,62],[-176,-13],[-55,-71],[-2,-2],[-22,-47],[70,-99],[-2,-2],[-73,-98],[-7,-9],[-4,-5],[-17,-23],[-33,-17],[-16,-8],[-68,-35],[-72,-36],[-27,-14],[-84,-43],[-222,-159],[-9,-60],[0,-2],[-6,-38],[-7,-42],[-2,-5],[-52,-111],[-4,-8],[-6,-4],[-122,-74],[-14,-9],[-1,-1],[-17,-19],[-74,-83],[-6,-8],[91,-75],[29,-28],[13,-12],[49,-46],[9,-77],[0,-11],[-1,-55],[0,-9],[-68,-76],[-2,0],[-125,-8],[-32,-3],[-34,-8],[-5,-5],[-12,-12],[-40,-143],[-1,-3],[7,-5],[17,-11],[-2,-1],[-109,-18],[-59,-10],[-3,-33],[-100,0],[-46,-2]],[[26317,90803],[-488,9],[-247,3],[-134,2],[-553,8],[-55,0],[-189,2],[-176,1],[-69,1],[-71,0],[-4,1],[-105,0],[-114,7],[-255,8],[-199,5],[-59,1],[-194,-2],[-34,0],[-73,0],[-346,7],[-75,1],[-504,11],[-226,5],[-4,0],[-50,1],[-42,-1],[-40,2],[-131,2],[-479,9],[-292,5],[-494,9],[-444,6],[-121,2],[-446,5],[-110,1],[-599,7],[-83,1],[-52,0],[-28,1],[-283,3],[-28,0],[-84,1],[-279,3],[-29,1],[-34,0],[-242,3],[-131,1],[-242,3],[-134,2],[-281,3],[-280,5],[-30,0],[-54,0],[-243,4],[-417,6],[-72,1],[-374,5],[-260,0],[-218,1],[-107,1],[-375,7],[-90,3],[-87,3],[-200,6],[-209,6],[-216,6],[-93,3],[-109,3],[-65,2],[-268,7],[-29,1],[-159,2],[-205,4],[-230,3],[-212,4],[-75,1],[-152,2],[-385,13],[-351,11],[-213,6],[-130,5],[-313,10],[-457,14],[-93,3],[-297,13],[-32,1],[-15,0],[-138,1],[-109,1],[-131,1],[-177,3]],[[9295,91111],[20,126],[13,28],[32,194],[15,79],[52,279],[4,21],[21,110],[15,67],[9,42],[50,245],[3,15],[23,111],[16,83],[1,0],[48,236],[19,95],[22,110],[28,134],[26,127],[7,33],[23,130],[7,32],[9,38],[9,34],[53,212],[14,69],[10,50],[16,75],[35,186],[0,1],[7,48],[19,147],[17,171],[14,103],[15,79],[15,79],[12,62],[18,97],[17,87],[1,3],[7,42],[16,85],[24,137],[0,2],[74,419],[10,52],[21,120],[8,45],[6,36],[0,1],[2,11],[1,5],[35,204],[29,174],[8,48],[8,45],[0,2],[53,312],[4,23],[2,14],[1,6],[1,8],[18,123],[51,364],[11,67],[21,120],[13,81],[15,89]],[[82547,89912],[-81,5],[-34,17],[-24,18],[-5,0],[-14,1],[-13,1],[-8,-1],[-30,-4],[-4,-1],[-30,-13],[-34,-12],[-25,-13],[-19,-17],[-16,-22],[1,-26],[31,-32],[25,-17],[23,-16],[-1,-22],[-8,-3],[-7,-2],[-18,-5],[-9,1],[-26,4],[-33,3],[-34,-7],[-94,-30],[-3,-1],[-27,-11],[-30,-6],[-9,-5],[-25,-12],[-15,-17],[-5,-19],[-2,-8],[-6,-6],[-33,-37],[-21,-27],[-76,-27],[-28,-11],[-2,-1],[-48,-52],[-32,-63],[-3,-1],[-10,-5],[-12,-7],[-49,-1],[-12,7],[-13,7],[-31,20],[-24,15],[-33,15],[-30,10],[-30,-2],[-33,6],[-27,-15],[-22,-15],[-8,-6],[-38,12],[-34,3],[-15,-26],[7,-24],[7,-20],[6,-15],[11,-49],[2,-10],[0,-42],[-8,-33],[-37,-29],[-32,-16],[-1,-1],[-2,1],[-32,4],[-82,1],[-55,4],[-1,-1],[-32,-13],[-7,-3],[-4,-3],[-18,-14],[-21,-10],[-4,-2],[-4,-6],[-12,-18],[-21,-22],[-28,-5],[-37,-9],[-53,-3],[-28,-13],[0,-4],[-1,-20],[-1,-2],[4,-2],[34,-17],[40,-47],[23,-28],[50,-16],[11,-36],[-11,-32],[0,-32],[15,-35],[11,-23],[7,-35],[-8,-31],[-37,-13],[-4,2],[-16,10],[-6,4],[-22,31],[-29,20],[-54,12],[-63,8],[-36,-7],[-6,-1],[-6,-8],[-16,-18],[0,-3],[0,-23],[1,-1],[50,-32],[29,-43],[4,-24],[-3,-31],[-19,-34],[-1,0],[-22,-12],[0,-1],[-4,0],[-58,-3],[-10,0],[-1,0],[-35,-7],[-6,-25],[27,-57],[44,-44],[16,-22],[13,-41],[7,-44],[9,-35],[3,-29],[0,-2],[0,-6],[4,-65],[-7,-28],[-52,-48],[-15,-20],[-2,-5],[-9,-30],[0,-1],[-25,-30],[-17,-6],[-74,-26],[-68,-24],[-4,-2],[-1,-1],[-36,-28],[-1,-1],[1,-3],[5,-28],[0,-3],[3,-2],[38,-25],[2,-26],[-37,-17],[-46,-3],[-87,-24],[-45,-5],[-47,-6],[-70,-28],[-4,-8],[-10,-18],[-2,-25],[1,-2],[22,-24],[0,-1],[35,-14],[-5,-22],[-63,-22],[-68,-24],[-3,-2],[-27,-15],[-29,-9],[-2,0],[-1,-1],[-29,-24],[-4,-4],[-3,-6],[-16,-34],[-22,-27],[-9,-3],[-41,-15],[-18,-22],[-6,-49],[-14,-25],[-17,-19],[-29,-24],[-1,-2],[-1,-2],[-15,-32],[3,-22],[-6,-30],[-9,-21],[-20,-16],[-15,-4],[-3,-1],[-14,-4],[-61,10],[-73,28],[-71,28],[-27,15],[-43,9],[-1,-1],[-28,-32],[2,-7],[7,-25],[17,-20],[46,-23],[48,-28],[18,-22],[35,-16],[29,-19],[2,-30],[-41,-22],[-30,-17],[-33,-26],[-14,-27],[-90,-10],[-32,-7],[-30,-20],[-9,-37],[26,-31],[19,-34],[9,-27],[-3,-13],[-6,-23],[-5,-2],[-41,-13],[-49,-15],[-38,-18],[-35,-26],[-27,-28],[-13,-24],[-43,-10],[-85,-3],[-32,12],[-6,22],[-28,24],[-45,9],[-40,-3],[-19,-32],[8,-33],[-1,-2],[-8,-22],[-28,-23],[-57,2],[-39,0],[-34,-6],[-46,-16],[-51,-2],[-39,-5],[-83,-5],[-30,5],[-38,-2],[-39,-14],[-71,-46],[-48,-24],[-13,-18],[0,-35],[10,-32],[-46,-18],[-33,-11],[-22,-26],[-8,-16],[-13,-28],[0,-1],[-2,-1],[-47,-22],[-29,-13],[-5,-2],[-16,-25],[20,-31],[5,-22],[1,-1],[-41,-44],[-28,-19],[-135,-85],[-115,-73],[-37,-24],[-120,-76],[-177,-113],[-165,-105],[-218,-138],[-179,-114],[-63,-40],[-143,-90],[-107,-69],[-26,-16],[-123,-78],[-52,-35],[-36,-22],[-147,-94],[-105,-67],[-59,-38],[-173,-110],[-102,-66],[-25,-16],[-118,-75],[-46,-29],[-81,-52],[-73,-47],[-45,-28],[-12,-9],[-18,0],[-95,0],[-286,0],[-129,-1],[-107,-1],[-46,-1],[-148,-1],[-49,1],[-95,-4],[0,-36],[2,-145],[11,-66],[4,-158],[0,-1],[-59,0],[-10,-1],[-1,0],[-17,-1],[-100,-10],[-73,1],[-36,4],[-41,4],[-89,12],[-50,8],[-33,6],[-44,7],[-73,12],[-73,13],[-28,5],[-35,6],[-31,5],[-77,14],[-52,7],[-65,9],[-2,-59],[-1,-25],[-1,-21],[-1,-36],[-1,-34],[1,-52],[4,-46],[1,-60],[1,-25],[-1,-54],[3,-73],[1,-93],[-1,-341]],[[73343,83153],[-371,0],[-70,1],[-119,0],[-111,0],[-201,2],[-91,0],[-92,0],[-297,-2],[-82,0],[-155,-1],[-214,-2],[-11,0],[-40,0],[-113,-1],[-66,0],[-776,-5],[-25,0],[-202,-1],[-4,0],[-104,-1],[-57,0],[-334,-2],[-84,1],[-292,-5],[-308,3],[-99,-1],[-41,-3],[-74,2],[-166,2],[-142,2],[-109,1],[-135,-2],[-90,0],[-280,1],[-177,0],[-86,5],[-49,-3],[-81,1],[-347,4],[-194,8],[-53,0],[-84,1],[-66,1],[-97,1],[-76,1],[-32,0],[-46,0],[-54,1],[-33,1],[-123,1],[-99,1],[-140,2],[-126,2]],[[66025,83169],[-3,141],[-6,134],[-2,55],[-6,88],[-2,24],[-1,28],[-1,25],[1,30],[-3,57],[-2,27],[-7,155],[0,1],[-5,118],[2,36],[3,106],[1,2],[-2,22],[-4,136],[-3,121],[-4,93],[0,60],[-3,91],[-1,45],[-3,113],[0,1],[-7,238],[-2,82],[0,1],[-5,201],[0,2],[-2,52],[-2,99],[-4,131],[-3,22],[2,21],[2,24],[-3,21],[-1,35],[-1,33],[2,24],[-3,54],[-1,23],[-8,242],[-1,27],[-9,201],[-5,84],[1,26],[-1,25],[-1,33],[-2,21],[-1,45],[-1,22],[-1,45],[-1,21],[0,28],[3,41],[-1,57],[0,63],[-4,253],[-2,227],[-2,133],[-1,113],[-3,181],[-1,72],[25,17],[2,2],[202,138],[82,56],[177,122],[52,36],[6,3],[251,173],[88,60],[41,28],[127,87],[83,57],[112,76],[222,150]],[[80609,96920],[2,-6],[29,-110],[13,-50],[32,-124],[41,-160],[22,-87],[41,-159],[8,-32],[9,-34],[0,-2],[15,-53],[31,-118],[40,-151],[8,-30],[151,-563],[32,-118],[35,-134],[23,-84],[5,-21],[71,-263],[71,-250],[22,-77],[23,-79],[76,-268],[21,-74],[9,-29],[9,-33],[6,-21],[12,-42],[6,-21],[5,-16],[24,-84],[14,-51],[13,-43],[21,-72],[31,-107],[24,-82],[7,-24],[11,-36],[11,-40],[2,-6],[14,-49],[2,-7],[93,-316],[15,-50],[20,-72],[54,-182],[1,-4],[76,-261],[62,-210],[7,-26],[8,-31],[32,-124],[13,-51],[39,-148],[98,-379],[7,-23],[23,-77],[76,-257],[58,-197],[32,-108],[6,-21],[8,-26],[23,-79],[10,-31],[14,-49],[27,-93],[32,-128],[28,-116],[7,-33],[1,-2],[20,-82],[6,-22]],[[38161,93286],[-2,-158],[-2,-158],[-1,-74],[-1,-75],[-1,-28],[0,-25],[3,-24],[-4,-27],[-1,-36],[-1,-90],[0,-14],[-1,-55],[0,-22],[-3,-168],[2,-39],[0,-33],[-2,-46],[0,-5],[-1,-30],[-2,-168],[0,-86],[-1,-57],[-1,-51],[0,-3],[0,-126],[-1,-79],[-2,-186],[-1,-69],[-1,-43],[0,-77],[-2,-67],[-2,-82],[-2,-81],[-2,-46],[-3,-126],[-2,-68],[0,-21],[-1,-46],[0,-21],[0,-6],[-1,-35],[0,-44],[-2,-194],[0,-104],[0,-128],[0,-29],[-1,-83],[-1,-57],[-3,-111],[-3,-136],[-2,-43],[-1,-62],[-2,-134],[0,-101],[0,-22],[0,-6],[-2,-55],[-5,-120],[-7,-112],[-2,-40],[-3,-29],[-1,-159],[-7,-182],[-3,-64],[-2,-57],[-12,-297],[-2,-48],[0,-54],[-1,-30],[-2,-29],[-2,-46],[0,-31],[-2,-34],[-1,-44],[-2,-33],[-1,-30],[-1,-28],[-2,-55],[-2,-35],[-1,-40],[-1,-24],[-1,-29],[-1,-25],[0,-3],[-4,-223],[-1,-48],[-7,-298],[-1,-6],[-7,-33],[0,-38],[0,-30],[-1,-76],[-1,-53],[0,-53],[0,-22],[-1,-31],[2,-40],[1,-24],[0,-75],[1,-121],[0,-194],[0,-118],[-1,-258],[0,-51],[0,-25],[-1,-187],[0,-119]],[[38020,85525],[3,-119],[0,-37],[2,-101],[1,-46]],[[38026,85222],[-73,0],[-197,-1],[-46,0],[-93,-1],[-164,0],[-44,0],[-87,-1],[-138,0],[-48,2],[-29,1],[-36,-2],[-509,-2],[-67,1],[-123,1],[-94,0],[-197,2],[-68,0],[-54,1],[-63,0],[-311,1],[-141,0],[-548,-3],[-33,0],[-252,-1],[-71,0],[-106,0],[-315,-1],[-44,0],[-33,1],[-49,0],[-30,-1],[-38,2],[-53,2],[-35,0],[-37,3],[-53,-2],[-33,-1],[-72,-1],[-41,0],[-8,0],[-21,0],[-11,0],[-10,0],[-6,0],[-21,0],[-58,1],[-29,0],[-5,0],[-308,0],[-468,1],[-45,1],[-92,2],[-230,5],[-33,1],[-82,2],[-90,1],[-184,2],[-123,2],[-44,0],[-280,4],[-148,2],[-53,1],[-36,0],[-159,2],[-193,3],[-214,2],[-397,9],[-340,7],[-7,0],[-191,5],[-233,5],[-62,1],[-46,1],[-220,5],[-153,3],[-7,0],[-56,1],[-18,1],[-69,1],[-2,0],[-13,1],[-539,11],[-136,3],[-139,3],[-115,3],[-322,7],[-388,8],[-65,2],[-99,1],[-85,1],[-137,2],[-69,0],[-131,-1],[-112,-1],[-183,0]],[[26316,85333],[-4,146],[-3,109],[-1,48],[0,61],[0,99],[0,140],[-1,61],[-2,125],[-2,81],[-1,35],[-3,114],[-6,196],[-2,91],[-3,75],[-2,82],[-1,34],[0,2],[-2,279],[-1,148],[-1,100],[-1,130],[2,139],[2,213],[2,88],[0,35],[3,84],[0,29],[3,89],[1,58],[8,298],[1,56],[3,160],[0,24],[-5,35],[-1,41],[1,36],[1,29],[1,33],[2,66],[2,47],[1,35],[1,24],[1,17],[3,65],[1,24],[-1,93],[0,38],[-1,57],[1,119],[-4,47],[-3,27],[-3,38],[4,54],[3,39],[5,67],[-1,26],[1,82],[-2,28],[-1,93],[0,34],[0,70],[0,35],[-2,69],[2,111],[1,41],[0,105],[0,34],[0,35],[1,88],[1,51],[2,68],[1,40]],[[53637,90365],[-25,-10],[-28,-17],[-18,-16],[-14,-30],[4,-24],[9,-28],[-27,-114],[-53,-236],[-109,-445],[-11,-36],[-16,-70],[-35,-146],[-29,-125],[-45,-190],[-11,-50],[-6,-30],[-5,-24],[-1,-27],[-4,-11],[-18,-66],[-16,-71],[-13,-53],[-7,-29],[-23,-101],[-6,-36],[-15,-66],[-20,-86],[-34,-159],[-16,-73],[-8,-41],[-9,-40],[-8,-35],[-6,-30],[-9,-44],[-12,-57],[-10,-49],[-16,-75],[-10,-50],[-5,-25],[-55,-265],[-17,-78],[-21,-91],[-12,-53],[-30,-127],[-23,-95],[-9,-39],[-8,-47],[-7,-33],[-1,-85],[-1,-113],[0,-44],[-1,-50],[-1,-152],[-1,-55],[-1,-60],[0,-2],[-1,-103],[-2,-83],[0,-29],[0,-49],[-1,-171],[-1,-143],[0,-71],[-2,-45],[-1,-37],[-4,-95]],[[52752,85335],[-62,1],[-93,2],[-116,2],[-74,1],[-34,1],[-60,0],[-166,2],[-29,1],[-226,1],[-47,0],[-79,1],[-139,0],[-76,1],[-182,2],[-221,2],[-33,-3],[-67,2],[-263,1],[-76,-1],[-136,0],[-35,0],[-79,0],[-162,-1],[-185,11],[-206,2],[-106,1],[-84,1],[-191,2],[-67,0],[-100,2],[-95,2],[-40,0],[-39,0],[-150,1],[-49,1],[-164,1],[-48,0],[-35,0],[-166,1],[-137,2],[-67,0],[-132,2],[-30,0],[-141,2],[-38,0],[-173,2],[-101,1],[-146,2],[-134,1],[-127,1],[-432,4],[-60,0],[-169,3],[-24,0],[-142,2],[-65,2],[-54,0],[-133,2],[-673,6],[-454,4],[-69,2],[-315,6],[-178,3],[-234,6],[-35,1],[-202,5],[-16,0],[-69,2],[-122,2],[-52,2],[-57,1],[-24,0],[-193,5],[-391,9],[-72,1],[-45,0],[-107,2],[-152,2],[-335,6],[-479,9],[-116,2],[-50,1],[-109,0],[-133,1],[-102,0],[-39,1],[-126,0],[-140,1],[-37,0],[-50,2],[-97,-2],[-144,0],[-137,1],[-515,3],[-335,1],[-46,1],[-2,0],[-1037,5],[-252,1],[-92,5],[-168,11],[-246,16]],[[66025,83169],[0,-9],[1,-51],[0,-35],[4,-48],[1,-32],[1,-31],[3,-55],[2,-25],[-20,-18],[-97,2],[-139,2],[-42,0],[-69,2],[-45,1],[-95,2],[-32,0],[-80,2],[-123,2],[-30,0],[-114,2],[-60,1],[-34,0],[-143,2],[-41,0],[-100,2],[-30,0],[-33,0],[4,8],[0,3],[-9,5],[-30,11],[-9,7],[-94,9],[-91,9],[-93,10],[-18,-9],[-89,-63],[-34,-6],[-12,-2],[-50,-25],[-3,-2],[-7,-4],[-101,-25],[-1,0],[-150,-20],[-31,-2],[-18,3],[-34,13],[-17,2],[-50,-4],[-80,-5],[-4,-1],[-4,-3],[-71,-61],[-60,-52],[-80,15],[-2,0],[-51,-20],[-153,-75],[-33,-19],[-65,-37],[-68,-38],[-150,-84],[-93,-53],[-141,-79],[-45,-25],[-61,-35],[-189,-107],[-39,-22],[-106,-61],[-26,-13],[-157,-90],[-47,-26],[-37,-19],[-93,-53],[-60,-34],[-116,-66],[-101,-56],[-164,-94],[-26,-14],[-24,-13],[-142,-81],[-95,-53],[-73,-42],[-26,-14],[-153,-85],[-84,-48],[-24,-14],[-208,-118],[-26,-15],[-37,-20],[-40,-24]],[[60519,81049],[-1,1],[-33,49],[-28,19],[-35,13],[-38,18],[-4,3],[-60,44],[-11,9],[-26,27],[-1,2],[-6,28],[0,3],[-41,47],[0,1],[-47,24],[-83,20],[-52,19],[-30,11],[-21,17],[-20,26],[-29,24],[-25,19],[-15,12],[-135,105],[-130,99],[-255,191],[-71,55],[-84,64],[-38,29],[-87,68],[-106,82],[-85,65],[-1,1],[-58,43],[-64,47],[-60,45],[-79,59],[-135,97],[-93,70],[-234,177],[-92,69],[-45,35],[-99,76],[-257,194],[-42,32],[-43,34],[-43,33],[-142,131],[-22,21],[-52,46],[-10,9],[-378,353],[-2,2],[-82,75],[-86,80],[-33,30],[-109,100],[-91,83],[20,131],[6,68],[-196,4],[-43,1]],[[56357,84389],[1,13],[-48,70],[-53,1],[28,45],[28,44],[71,112],[18,32],[-29,0],[-29,0],[-58,0],[-48,0],[-51,0],[-24,1],[0,13],[2,31],[0,34],[1,38],[1,34],[0,27],[0,23],[1,25],[0,38],[1,27],[-1,14],[-51,0],[-31,-1],[-2,0],[-134,1],[-34,1],[-34,1],[-57,0],[-36,1],[-72,0],[-38,1],[-5,104],[-4,61],[-2,61],[-4,53],[-128,2],[-39,0],[-75,1],[-71,-2],[-63,1],[-52,2],[-59,1],[-53,1],[-62,0],[-1,0],[-38,-1],[-66,0],[-45,1],[-48,0],[-78,1],[-96,2],[-72,1],[-126,3],[-19,0],[-17,1],[-154,1],[-91,0],[-31,0],[-64,1],[-167,1],[-131,2],[-29,1],[-29,0],[-29,1],[-36,0],[-35,0],[-110,1],[-216,5],[-81,2],[-180,4],[-148,4],[-97,2],[-76,2]],[[26316,85333],[-78,0],[-73,1],[-58,1],[-33,0],[-171,1],[-57,1],[-239,3],[-264,3],[-237,5],[-175,4],[-79,2],[-76,1],[-156,2],[-95,1],[-89,1],[-47,1],[-186,3],[-1,0],[-174,4],[-73,2],[-48,1],[-28,0],[-43,1],[-178,4],[-30,1],[-159,5],[-81,2]],[[23388,85383],[-144,3],[-48,2],[-163,4],[-66,1],[-148,4],[-70,2],[-146,4],[-274,8],[-65,2],[-66,2],[-47,1],[-244,7],[-66,2],[-12,0],[-57,2],[-26,-1],[-5,0],[-42,1],[-44,2],[-38,2],[-46,1],[-78,2],[-98,3],[-79,1],[-131,3],[-146,4],[-54,1],[-50,0],[-57,1],[-45,1],[-127,1],[-87,1],[-95,1],[-5,0],[-69,1],[-127,2],[-106,1],[-46,1],[-442,4],[-59,1],[-72,1],[-151,1],[-64,1],[-82,0],[-43,0],[-82,0],[-19,0],[-42,0],[-201,1],[-33,0],[-35,0],[-228,0],[-73,0],[-72,1],[-178,0],[-10,0],[-148,0],[-34,1],[-176,2],[-19,0],[-10,0],[-30,0],[-46,1],[-75,1],[-166,2],[-8,0],[-143,1],[-80,1],[-77,1],[-57,1],[-67,0],[-233,3],[-179,2],[-67,1],[-54,1],[-155,2],[-381,7],[-92,0],[-30,3],[-199,2],[-6,0],[-31,0],[-101,2],[-75,1],[-47,1],[-83,1],[-51,1],[-27,0],[-10,1],[-117,2],[-338,5],[-53,1],[-337,7],[-305,7],[-588,12],[-180,4],[-212,4],[-47,0],[-107,2],[-67,1],[-161,4],[-84,2],[-50,1],[-53,1],[-84,2],[-74,2],[-57,0],[-75,3],[-67,1],[-207,6],[-128,3],[-3,0],[-49,1],[-70,3],[-206,5],[-34,0],[-89,3],[-152,4],[-79,2],[-113,3],[-92,3],[-262,8],[-78,2],[-90,2],[-90,3],[-44,2],[-195,5],[-102,3],[-29,1],[-36,1],[-132,3],[-106,2],[-79,3],[-95,2],[-98,3],[-237,7],[-40,2],[-49,1],[-894,26],[-38,1]],[[8356,85676],[4,21],[3,18],[19,113],[29,169],[13,72],[9,54],[48,277],[31,186],[27,157],[9,60],[14,73],[10,48],[4,23],[3,22],[2,31],[6,43],[7,51],[4,29],[14,81],[20,114],[5,29],[6,41],[6,37],[16,98],[10,71],[4,28],[4,21],[3,24],[6,37],[5,27],[13,83],[5,31],[10,64],[9,54],[14,81],[5,30],[0,5],[6,43],[4,21],[9,46],[4,25],[21,136],[9,67],[7,46],[0,1],[7,45],[1,3],[2,14],[5,32],[5,35],[7,46],[0,1],[6,34],[1,4],[11,63],[14,78],[8,48],[12,63],[7,43],[31,170],[12,68],[1,7],[2,18],[30,173],[60,314],[26,135],[36,190],[24,127],[12,63],[13,76],[14,76],[41,228],[34,168],[20,111],[40,214]],[[85751,78234],[-127,1],[-56,0],[-62,1],[-5,-63],[-1,-14],[-155,1],[-183,1],[-153,0],[-5,-74],[-666,-1],[-326,-1],[-178,-1],[-38,0],[-209,0],[-360,0],[-166,0],[-5,-107],[-8,-155],[-2,-41],[-115,-2],[-409,-9],[-119,-3],[-32,0],[-201,-5],[-80,-1]],[[82090,77761],[2,32],[5,84],[12,187],[-116,4],[-139,7],[-102,5],[-60,2],[-292,13],[-202,9],[-62,3],[-198,9],[-45,1],[-194,9],[-1,0],[-20,1],[-27,1],[-123,6],[-109,5],[-32,1],[-109,5],[-75,4],[-35,1],[-57,3],[-220,10],[-208,9],[-2,0],[-96,4],[-141,7],[-509,26],[-135,4],[-135,5],[-36,1],[-49,1],[-298,6],[-67,4],[-109,6],[-399,22],[-693,34],[-165,7],[-62,3],[-42,2],[-11,0],[-69,3],[-47,3],[-2,0],[-53,2],[-52,2],[-247,10]],[[76264,78324],[19,156],[27,284],[-152,220],[-65,94],[-66,92],[-69,90],[-18,22],[-21,27],[-137,190],[-31,38],[-191,267],[-135,189],[-14,20],[-125,172],[-29,41],[-19,26],[-15,20],[-10,15],[-98,136],[-257,354],[-4,6],[-18,10],[-13,8],[-2,4],[-11,19],[-6,26],[-18,28],[-19,24],[-18,21],[-26,28],[-32,39],[-26,39],[-21,42],[-6,26],[-6,23],[-4,36],[0,23],[0,6],[7,38],[2,7],[5,25],[11,23],[11,23],[11,20],[10,22],[9,18],[25,35],[22,27],[1,1],[20,22],[17,23],[24,31],[3,5],[15,23],[2,2],[4,31],[-14,29],[-33,27],[-58,31],[-14,5],[-26,9],[-39,3],[-44,-2],[-46,-8],[-54,-15],[-9,-2],[-35,-9],[-55,-10],[-54,-8],[-56,-8],[-4,0],[-40,-9],[-18,-4],[-27,-13],[-33,-15],[-53,-30],[-54,-27],[-19,-12],[-17,-10],[-54,-30],[-54,-27],[-53,-28],[-59,-35],[-63,-36],[-32,-20],[-38,-19],[-21,-8],[-15,-6],[-9,-1],[-26,-2],[-57,2],[-55,6],[-64,15],[-20,4],[-3,244],[-1,48],[0,40],[-3,144],[-1,38],[-5,166],[-1,37],[-2,73],[-2,40],[-1,31],[-11,250],[-1,38],[-2,38],[-6,112],[-9,193],[-3,48],[-5,98],[-2,180],[-2,15],[-2,22]],[[82547,89912],[14,-38],[5,-13],[26,-74],[7,-25],[7,-38],[14,-35],[7,-22],[17,-68],[16,-43],[7,-27],[19,-77],[21,-43],[16,-51],[18,-62],[7,-25],[10,-32],[20,-71],[7,-26],[11,-35],[8,-26],[44,-162],[7,-24],[6,-19],[12,-34],[19,-69],[12,-40],[16,-58],[11,-29],[7,-29],[40,-134],[30,-101],[65,-215],[91,-304],[46,-153],[35,-122],[60,-205],[31,-108],[24,-81],[79,-275],[34,-117],[67,-237],[102,-358],[12,-42],[100,-339],[1,-4],[54,-213],[18,-72],[1,0],[53,-208],[32,-116],[33,-122],[8,-30],[8,-30],[22,-78],[23,-82],[58,-208],[17,-63],[2,-29],[9,-25],[6,-24],[47,-170],[29,-98],[8,-44],[1,-2],[15,-45],[8,-29],[11,-41],[62,-226],[100,-371],[36,-135],[19,-71],[15,-57],[11,-39],[8,-28],[4,-17],[5,-18],[5,-24],[7,-48],[17,-48],[12,-43],[25,-93],[99,-371],[42,-155],[17,-62],[56,-206],[41,-141],[14,-49],[84,-301],[35,-222],[9,-38],[29,-112],[5,-22],[120,-474],[1,-2],[13,-53],[26,-100],[20,-78],[22,-86],[26,-103],[18,-68],[57,-221],[95,-367],[43,-167],[2,-7],[39,-155],[73,-282],[24,-49],[29,-111],[68,-257],[79,-299],[6,-25],[15,-58]],[[23388,85383],[0,-89],[0,-39],[0,-1],[2,-317],[0,-64],[0,-42],[1,-73],[1,-62],[1,-108],[0,-33],[1,-160],[1,-71],[0,-78],[1,-23],[0,-26],[0,-36],[1,-145],[0,-41],[1,-40],[0,-47],[0,-29],[0,-7],[0,-3],[0,-13],[0,-35],[0,-18],[1,-64],[0,-57],[-1,-90],[-1,-67],[-1,-28],[0,-27],[-1,-40],[1,-46],[-1,-22],[-1,-51],[0,-2],[-2,-56],[-1,-46],[-3,-96],[-2,-84],[-3,-87],[-1,-29],[-3,-111],[-2,-69],[-5,-166],[-3,-98],[-3,-130],[-4,-136],[-1,-28],[-5,-171],[0,-2],[-1,-16],[0,-11],[0,-2],[-1,-23],[-1,-27],[-15,-270],[-2,-41],[0,-88],[1,-48],[0,-34],[0,-142],[0,-93],[1,-37],[1,-182],[1,-55],[0,-6],[0,-56],[1,-56],[0,-39],[1,-94],[1,-53],[0,-68],[2,-75],[4,-227],[0,-8],[5,-294],[0,-100],[-1,-160],[0,-124],[-1,-56],[0,-141],[-2,-139],[-1,-142],[0,-45]],[[23349,79028],[0,-44],[1,-309],[1,-263],[0,-87],[2,-182],[0,-101],[0,-205],[0,-156],[0,-132],[0,-3],[0,-35],[1,-142],[0,-154]],[[23354,77215],[-329,0],[-367,-2],[-77,0],[-160,-1],[-55,0],[-63,0],[-362,-2],[-4,0],[-34,-1],[-4,0],[-40,0],[-210,-1],[-233,-2],[-61,0],[-76,0],[-285,0],[-53,-1],[-69,0],[-36,0],[-107,0],[-35,0],[-115,0],[-37,0],[-36,0],[-37,-1],[-3,0],[-39,1],[-102,2],[-64,2],[-89,0],[-2,0],[-37,1],[-47,2],[-51,1],[-111,4],[-476,11],[-455,14],[-41,3],[-54,2],[-36,1],[-36,1],[-147,6],[-34,1],[-32,2],[-39,1],[-27,1],[-29,-3],[-47,-1],[-90,3],[-73,2],[-119,3],[-87,3],[-2,0],[-101,3],[-58,2],[-179,7],[-35,1],[-1,0],[-126,5],[-70,3],[-302,9],[-168,5],[-46,2],[-63,-3],[-162,-5],[-32,-2],[-43,-1],[-29,5],[-38,-1],[-29,-1],[-124,-5],[-107,2],[-341,4],[-41,0],[-355,5],[-39,0],[-32,0],[-148,2],[-41,0],[-50,1],[-82,1],[-208,2],[-299,3],[-2,0],[-176,1],[-29,2]],[[14544,77314],[0,25],[-3,493],[0,38],[2,112],[0,27],[1,26],[0,51],[1,18],[0,38],[1,60],[0,187],[0,21],[-1,44],[-1,142],[0,242],[-1,146],[-1,30],[-3,45],[-2,44],[3,173],[0,94],[0,28],[0,47],[-70,3],[-80,3],[-164,0],[-61,0],[-245,0],[-354,8],[-15,22],[3,110],[3,79],[4,125],[1,114],[2,159],[-366,8],[-133,3],[-180,9],[-120,6],[-174,8],[-249,3],[-41,1],[-31,0],[-166,2],[-317,4],[-169,4],[-170,3],[-72,1],[-107,2],[-77,2],[-62,1],[-481,9],[-193,2],[-301,4],[-445,15],[-87,1],[-156,1],[-33,2],[-6,0],[-42,0],[-277,4],[-13,0],[-413,5],[-125,3],[-49,2],[-67,1],[-74,2],[-40,1],[-90,2],[-146,4],[-133,3],[-30,0],[-100,3],[-137,3],[-273,7]],[[7419,80199],[18,108],[16,100],[7,49],[53,330],[0,1],[5,31],[12,72],[21,131],[10,59],[7,32],[47,287],[6,37],[15,80],[14,74],[13,72],[64,351],[38,207],[8,50],[68,368],[34,268],[6,40],[65,231],[15,54],[5,21],[3,24],[6,97],[0,4],[9,131],[2,27],[7,54],[31,174],[68,397],[10,36],[4,20],[19,109],[6,38],[22,126],[1,3],[17,100],[18,106],[10,57],[15,86],[30,174],[10,61],[10,28],[3,20],[3,17],[2,18],[4,19],[6,36],[1,8],[4,27],[3,21],[5,34],[0,1],[37,230],[4,22],[7,38],[7,42],[6,39]],[[56357,84389],[-183,3],[-140,3],[-328,6],[-106,2],[-21,15],[-39,3],[-40,-3],[-15,-3],[-17,-9],[-9,-6],[-37,5],[-20,2],[-36,-30],[-131,-109],[-27,-17],[-44,-28],[-73,-47],[0,-1],[-34,-2],[-19,7],[-62,30],[-4,8],[-12,23],[-9,10],[-8,6],[-112,27],[-96,11],[-111,-11],[-40,-13],[-54,-17],[-20,-12],[-13,-8],[-3,-4],[0,-2],[3,-32],[-3,-27],[-4,-12],[-7,-9],[-44,-39],[-62,-48],[-5,-41],[-3,-11],[-25,-28],[-1,-1],[-8,-17],[-4,-14],[2,-25],[11,-26],[6,-6],[5,-2],[35,-7],[5,-1],[1,-2],[1,0],[2,-2],[5,-10],[1,-15],[-6,-8],[-3,-3],[-11,-14],[-24,-73],[-57,-61],[-59,-16],[-33,-8],[-18,2],[-162,22],[-75,-1],[-37,-4],[-11,-5],[0,-7],[48,-13],[6,-3],[4,-5],[0,-9],[-7,-14],[-12,-21],[-6,-9],[-17,-24],[-10,-13],[-17,-14],[-36,-30],[-37,-30],[-16,-14],[-5,8],[-3,3],[-1,0],[-70,7],[-8,-3],[-3,-3],[-1,-7],[4,-7],[1,-1],[14,-15],[32,-16],[74,-19],[4,-2],[8,-11],[-4,-13],[-16,-14],[-170,-98],[-18,-10],[-18,-5],[-14,-1],[-26,9],[-1,0],[-23,0],[-12,-2],[-1,0],[-16,-6],[-10,-8],[-1,-3],[0,-3],[72,-61],[34,-27],[23,-6],[8,-6],[1,0],[0,-1],[4,-15],[-4,-11],[-20,-19],[-1,-1],[-52,-32],[-36,-18],[-6,-3],[-11,-5],[-43,-18],[-24,-12],[-13,-14],[17,-62],[12,-18],[21,-24],[9,-6],[120,-28],[19,0],[38,12],[29,5],[3,0],[24,1],[11,-2],[1,0],[9,-5],[0,-9],[-2,-7],[-16,-23],[-20,-16],[-1,-1],[-75,-54],[-18,-9],[-103,-27],[-81,-21],[-2,0],[-1,-1],[-9,-5],[-6,-7],[-13,-11],[-3,0],[-2,0],[-88,-71],[-1,-1],[-11,-15],[-16,-21],[-37,-36],[-14,-8],[-17,-2],[-10,6],[-25,6],[-22,-3],[-22,-8],[-1,-1],[-24,-15],[-3,-3],[-29,-22],[-27,-19],[-5,-3],[-84,-82],[0,-9],[0,-3],[-3,-10],[-48,-97],[-15,-10],[-21,-4],[-3,-1],[-6,-2],[-127,-57],[-3,-1],[-8,-4],[-27,-28],[-32,-43],[-2,-20],[7,-21],[2,0],[0,-1],[4,-9],[5,-10],[-1,-2],[-2,-11],[-7,-15],[-13,-9],[-23,-9],[-28,1],[-14,5],[-36,24],[-3,1],[-15,3],[-8,0],[-2,0],[-10,-2],[-26,-20],[-2,-2],[-1,-1],[-4,-5],[-2,-15],[1,-1],[0,-1],[1,-2],[44,-44],[5,-5],[23,-54],[5,-54],[-3,-4],[-22,-16],[-15,-4],[-28,-2],[-51,2],[-1,0],[-17,-2],[-45,-11],[-3,-1],[-9,-2],[-2,-2],[-1,-1],[-119,-49],[-11,-5],[-4,-9],[-20,-39],[-14,-23],[-17,-17],[-22,-18],[-52,-51],[-4,-8],[0,-12],[1,-1],[1,-1],[1,-2],[21,-17],[4,-4],[2,-1],[15,-6],[75,-19],[1,-1],[8,-23],[-94,-37],[-67,-13],[-17,-7],[-33,-23],[-9,-9],[-27,-24],[-12,-5],[-30,-11],[-37,-12],[-6,-1],[-21,-4],[-13,0],[-4,0],[-3,1],[-15,1],[-16,5],[-23,20],[-33,66],[-1,1],[-9,7],[-82,46],[-5,3],[-36,30],[-32,7],[-11,1],[-47,-8],[-87,-34],[-31,-16],[-34,-23],[-48,-25],[-68,-22],[-73,-20],[-16,-6],[-32,-13],[-33,-18],[-20,-15],[-5,-8],[0,-11],[38,-43],[6,-7],[2,-10],[1,-1],[-4,-28],[-13,-20],[-26,-12],[-1,0],[-15,0],[-36,15],[-2,1],[-43,23],[-19,7],[-24,3],[-55,0],[-5,0],[-9,-1],[-14,0],[-9,0],[-83,-6],[-27,-3],[-15,-6],[-14,-14],[-29,-58],[-4,-21],[2,-3],[1,-2],[4,-49],[1,-14],[-1,-4],[-32,-101],[-1,-2],[-26,-56],[-21,-25],[-36,-21],[-1,-1],[-9,-4],[-14,-3],[-3,-1],[-60,-21],[-70,-29],[-40,-20],[-28,-16],[-31,-21],[-1,-2],[-1,-2],[-13,-6],[-22,-7],[-1,0],[-14,0],[-15,4],[-1,1],[-8,6],[-2,7],[0,8],[0,1],[11,21],[-6,13],[-5,8],[-17,14],[-17,9],[-16,5],[-21,-3],[-14,-5],[-13,-9],[-17,-19],[-11,-9],[-27,-23],[-10,-5],[-161,-44],[-9,-5],[-21,-10],[-37,-31],[-34,-17],[-2,0],[-13,-4],[-13,2],[-2,0],[-1,0],[-11,6],[-8,7],[-7,23],[-1,1],[0,1],[-24,106],[0,20],[27,40],[5,15],[0,21],[0,1],[-5,14],[-9,9],[-8,5],[-3,0],[-76,4],[-16,-2],[-20,-12],[-52,-68],[-57,-50],[-34,-23],[-1,0],[-15,-8],[-13,-1],[-1,-1],[-49,-19],[-24,-11],[-44,-18],[-41,-31],[-1,-12],[2,-4],[8,-11],[1,0],[50,-27],[26,-11],[47,-31],[175,-173],[4,-4],[19,-22],[19,-36],[16,-17],[2,-1],[14,-11],[92,-63],[4,-3],[43,-29],[1,0],[5,-2],[19,-22],[7,-10],[5,-20],[1,-27],[-11,-28],[-1,-1],[-12,-17],[-20,-12],[-2,-1],[-29,-7],[-6,0],[-14,0],[-18,2],[-7,1],[-4,1],[-16,5],[-13,7],[-3,1],[-1,1],[-169,107],[-6,7],[0,19],[3,30],[1,9],[-47,6],[-24,-2],[-43,-10],[-58,-23],[-23,-13],[-39,-28],[-8,-9],[-17,-40],[-3,-5],[-39,-58],[-2,-2],[-4,-5],[-47,-67],[-3,-1],[-3,-2],[-2,-6],[-9,-39],[15,-22],[25,-30],[23,-16],[12,-5],[117,-54],[2,-1],[9,-8],[18,-18],[6,-9],[6,-14],[1,-24],[-13,-25],[-12,-12],[-44,-29],[-7,-4],[-38,-30],[-9,-9],[-13,-12],[-20,-14],[-12,-9],[-43,-18],[-28,-5],[-35,-2],[-36,9],[-59,27],[-37,23],[-35,12],[-20,5],[-25,3],[-1,0],[-30,-5],[-21,-6],[-10,-6],[-12,-12],[-30,-38],[-75,-105],[-6,-14],[-1,-10],[7,-22],[8,-9],[22,-15],[2,-1],[10,-16],[7,-15],[1,-1],[0,-1],[0,-19],[-5,-10],[0,-1],[-14,-14],[-10,-6],[-20,-2],[-58,0],[-27,-6],[-6,-2],[-41,-15],[-54,-24],[-1,-2],[-12,-4],[-61,-24],[-2,-3],[-187,-63],[-3,-1],[-53,-20],[-6,-2],[-2,-4],[-2,-6],[3,-59],[0,-1],[15,-10],[4,-2],[30,-23],[26,-27],[6,-10],[1,-25],[-5,-15],[-6,-5],[-27,-23],[-20,-7],[-19,-3],[-81,-11],[-4,0],[-89,-4],[-2,0],[-1,1],[-15,0],[-22,0],[-19,0],[-2,-1],[-29,-6],[-1,0],[-23,-8],[-27,-6],[-1,0],[-149,-17],[-20,-4],[-15,-6],[-1,0],[0,-1],[-10,-9],[0,-11],[1,-1],[4,-5],[12,-6],[35,-12],[2,-1],[30,-22],[14,-15],[7,-11],[0,-6],[0,-12],[-8,-12],[-14,-13],[-121,-83],[4,-65],[-3,-83],[-1,-29],[0,-1],[-3,-10],[-10,-16],[-13,-11],[-22,-11],[-1,-1],[-1,0],[-17,-5],[-26,-2],[-125,-7],[-2,0],[-35,-1],[-23,1],[-38,1],[-1,0],[-10,-2],[-14,-5],[-23,-14],[-2,-1],[-18,-17],[-7,-10],[-1,-10],[10,-8],[18,-5],[34,-6],[48,-5],[26,-3],[14,-4],[12,-11],[6,-11],[1,-15],[0,-1],[-20,-22],[-1,-1],[-18,-9],[-16,-3],[-1,-1],[-1,0],[-19,0],[-131,34],[-118,39],[-17,0],[-8,-2],[-7,-5],[-1,0],[-19,-28],[-12,-11],[-10,-9],[-30,-17],[-32,-11],[-59,-12],[-32,-9],[-26,-10],[-36,-17],[-11,-16],[0,-15],[6,-8],[17,-9],[19,-6],[74,-14],[1,-1],[9,-3],[12,-8],[7,-9],[1,-1],[0,-1],[2,-12],[-10,-22],[-23,-31],[-22,-23],[-26,-19],[-26,-13],[-23,-8],[-24,-4],[-34,-1],[-33,3],[-26,5],[-17,4],[-50,15],[-29,13],[-39,15],[-30,6],[-27,0],[-39,-10],[-53,-11],[-13,-3],[-46,-5],[-40,0],[-29,4],[-26,5],[-24,8],[-78,24],[-2,1],[-1,2],[-92,31],[-21,5],[-5,1],[-1,0],[-13,0],[-13,-4],[-7,-4],[-1,-1],[-51,-53],[-1,-2],[-8,-14],[-4,-13],[-1,-3],[0,-22],[74,-85],[3,-3],[61,-78],[12,-15],[1,-9],[-5,-6],[-10,-6],[-32,-13],[-12,-2],[-18,-1],[-18,4],[-120,38],[-7,4],[-93,56],[-120,68],[-18,10],[-13,7],[-1,0],[-19,5],[-26,-1],[-43,-8],[-17,-3],[-59,-13],[-7,-2],[-38,-13],[-23,-12],[-94,-58],[-87,-49],[-20,-12],[-2,0],[-107,-56],[-133,-82],[-11,-6],[-13,-19],[-2,-9],[15,-24],[16,-32],[6,-31],[-7,-17],[-34,-3],[-1,0],[-49,2],[-7,1],[-22,4],[-37,15],[-4,3],[-6,4],[-2,14],[-46,15],[-34,12],[-15,5],[-66,22],[-163,47],[-6,1],[-2,1],[-13,2],[-19,0],[-3,0],[-81,-23],[-20,-5],[-8,-1],[-18,-2],[-62,-16],[-11,-4],[-2,0],[0,-1],[-7,-8],[0,-7],[3,-8],[29,-41],[11,-20],[16,-40],[13,-56],[3,-38],[-25,-47],[-9,-12],[-53,-59],[-3,-4],[-1,0],[-11,-8],[-13,-5],[-16,-2],[-28,-2],[-7,0],[-74,2],[-44,-3],[-69,-8],[-163,-31],[-72,-15],[-108,-29],[-29,0],[-40,12],[-118,56],[-38,2],[-15,-5],[-23,-19],[-45,-38],[-2,-6],[-35,-22],[-23,-12],[-55,-23],[-26,-10],[-20,-14],[-13,-12],[0,-1],[-15,-23],[-14,-48],[-25,-98],[-6,-55],[0,-1],[7,-6],[22,-6],[42,-7],[61,-9],[19,-8],[16,-8],[0,-1],[6,-6],[5,-32],[8,-43],[23,-129],[1,-18],[-17,-41],[-11,-17],[-6,-8],[-24,-25],[-57,-46],[-9,-9],[0,-9],[7,-10],[13,-9],[71,-33],[30,-15],[-1,-9],[-5,-5],[-8,-4],[-21,-3],[-63,-3],[-23,-4],[-7,-2],[-18,-6],[-160,-76],[-4,-2],[-3,-5],[-23,-8],[-16,-3],[-159,-8],[-15,-1],[-125,-2],[-46,6],[-35,11],[-1,0],[-13,6],[-103,71],[-1,1],[-20,8],[-16,-1],[-13,-11],[-7,-15],[-6,-20],[5,-24],[6,-11],[28,-34],[1,-1],[22,-21],[1,-1],[13,-9],[40,-22],[6,-3],[28,-26],[-2,-6],[-7,-5],[-23,-5],[-37,0],[-1,0],[-20,4],[-21,10],[-1,1],[-73,51],[-16,9],[-34,10],[-182,47],[-11,0],[-10,-2],[-5,-5],[-1,-9],[5,-8],[44,-35],[7,-9],[18,-20],[38,-90],[0,-10],[-6,-13],[-11,-3],[-100,7]],[[42114,76029],[-49,3],[-9,0],[-3,1],[-25,4],[-78,17],[-2,2],[-2,1],[-19,3],[-89,14],[-48,1],[-26,-6],[-66,-14],[-29,-4],[-83,6],[-80,3],[-88,0],[-52,-3],[-3,0],[-48,2],[-21,6],[-1,0],[-1,1],[-13,7],[-9,10],[-1,1],[-14,34],[-12,56],[-14,30],[-7,17],[-17,21],[-13,9],[-38,16],[-16,2],[-47,7],[-4,0],[-32,2],[-19,-3],[-32,-11],[-69,-35],[-15,-10],[-20,-21],[0,150],[0,41],[-2,113],[-4,164],[-201,2],[-211,2],[-122,2],[-408,4],[-240,2],[-70,1],[-227,2],[-74,1],[-108,2],[-169,1],[-105,1],[-117,1],[-54,1],[-259,3],[23,12],[1,1],[14,9],[8,8],[1,0],[3,7],[-3,10],[-9,9],[-21,15],[-114,46],[-47,20],[-20,4],[-32,11],[-22,7],[-18,9],[-9,9],[1,12],[13,14],[34,23],[33,11],[23,4],[30,2],[11,1],[46,1],[61,10],[100,26],[155,55],[18,10],[-5,11],[-36,87],[-1,4],[-3,10],[0,1],[-2,4],[-4,10],[-46,113],[-10,23],[-30,32],[-13,12],[-4,5],[-72,68],[-1,1],[-12,11],[-51,43],[-11,9],[-39,32],[-39,24],[-8,3],[-64,24],[-9,2],[-63,18],[-27,10],[-9,4],[-1,0],[-6,3],[-55,26],[-27,16],[-9,15],[-6,15],[-5,24],[1,0],[4,33],[-6,52],[16,13],[10,45],[-75,56],[-61,48],[-31,33],[29,49],[28,45],[-4,21],[-18,22],[-35,29],[-86,54],[-114,37],[-98,19],[-136,13],[-113,-9],[-108,6],[-65,24],[-53,55],[-3,3],[1,4],[9,36],[36,73],[3,44],[-27,33],[-46,31],[-51,48],[-26,63],[-38,21],[-103,88],[-102,55]],[[36879,78841],[143,-2],[98,-1],[112,-2],[31,-1],[77,-1],[107,-1],[149,-3],[188,-3],[184,-4],[-5,161],[0,26],[0,39],[1,60],[1,60],[0,11],[1,47],[0,8],[0,53],[0,32],[0,10],[1,45],[0,1],[0,25],[0,23],[1,103],[0,33],[1,90],[1,103],[0,88],[2,160],[0,74],[1,102],[1,85],[0,41],[1,82],[0,35],[1,61],[-1,57],[0,40],[-1,67],[-1,70],[-2,196],[-2,161],[-1,131],[-1,72],[-1,57],[-1,115],[-1,71],[-1,72],[9,188],[4,92],[4,139],[5,166],[3,75],[3,83],[3,111],[1,34],[2,104],[1,22],[1,57],[0,32],[2,101],[1,79],[4,208],[3,130],[1,54],[0,52],[4,177],[1,51],[1,53],[1,102],[1,38],[2,206],[1,252],[0,102],[2,295],[1,112],[0,28],[1,287],[0,6],[1,196]],[[36879,78841],[-63,81],[-161,62],[-89,14],[-1,0],[-89,35],[-48,31],[-37,24],[-36,1],[-77,3],[-7,0],[-9,-3],[-63,-24],[-89,-24],[-68,-2],[-5,-1],[-9,0],[-170,7],[-69,-61],[-34,-24],[-61,-59],[-49,-55],[-39,-60],[-23,-54],[-21,-52],[-39,-19],[-71,-7],[-12,2],[-35,4],[-56,22],[-40,33],[-31,36],[-76,22],[-124,44],[-35,17],[3,21],[-75,-1],[-26,0],[-15,0],[-60,3],[-59,0],[-53,1],[-47,1],[-16,0],[-28,1],[-48,0],[-31,1],[-29,0],[-301,8],[-69,1],[-82,-4],[-164,0],[-119,1],[-109,1],[-48,0],[-180,2],[-283,3],[-599,6],[-97,0],[-131,1],[-68,1],[-753,7],[-74,1],[-285,2],[-224,2],[-105,1],[-8,0],[-46,1],[-154,1],[-28,-1],[-148,0],[-176,-1],[-383,-1],[-244,0],[-152,-2],[-98,-1],[-168,5],[-54,0],[-123,1],[-294,4],[-210,4],[-32,0],[-145,3],[-2,0],[-256,6],[-28,0],[-203,1],[-3,0],[-73,0],[-121,-1],[-86,0],[-5,-1],[-28,0],[-55,-2],[-28,0],[-4,1],[-53,0],[-153,2],[-10,0],[-152,-1],[-686,26],[-148,6],[-389,15],[-367,15],[-32,1],[-96,3],[-190,6],[-156,8],[-127,3],[-144,4],[-123,3],[-142,3],[-28,1],[-145,4],[-47,1],[-78,0],[-100,0],[-59,0],[-168,2],[-78,0],[-95,3],[-89,2],[-97,6],[-75,1],[-137,3]],[[60519,81049],[0,-1],[-29,-28],[-92,-97],[-44,-46],[-16,-18],[-18,-17],[-278,-292],[-38,-39],[-21,-24],[-18,-36],[-35,-69],[-29,-58],[-100,-198],[-73,-145],[-14,-28],[-1,-26],[0,-47],[0,-22],[-1,-32],[0,-37],[2,-34],[1,-122],[0,-79],[1,-99],[-1,-25],[-3,-23],[0,-28],[0,-35],[0,-81],[0,-135],[-9,-144],[0,-229],[0,-39],[0,-6],[0,-10],[-29,-8],[-1,-1],[-51,-39],[17,-23],[20,-26],[-29,-1],[-21,-10],[-5,-2],[-13,-54],[-10,-20],[-37,-18],[-34,0],[-31,10],[-8,-1],[-29,-1],[2,-28],[11,-23],[12,-27],[32,-52],[-41,-17],[-42,-28],[-40,-15],[-5,-23],[7,-32],[-28,-17],[-70,-11],[0,-35],[-27,-22],[-36,-3],[-42,-14],[11,-30],[42,-44],[-29,-22],[-50,-16],[-27,-14],[-29,-6],[-36,-4],[-53,-11],[-43,-18],[-3,-32],[-15,-22],[-35,-27],[-19,-41],[-22,-16],[-100,-51],[-39,-13],[-39,-15],[-18,-22],[7,-29],[121,1],[206,2],[198,1],[67,1],[115,0],[117,0],[103,1],[260,2],[36,-1]],[[59901,77733],[-35,-24],[-15,-23],[4,-21],[31,-11],[22,-17],[29,-20],[32,-4],[25,-18],[-3,-29],[-26,-20],[-12,-21],[-25,-18],[-38,-3],[-48,10],[-13,-18],[-12,-26],[-25,-22],[-34,-17],[-32,-15],[-18,-16],[9,-25],[-26,-16],[-25,-26],[-29,-16],[-34,2],[-39,3],[-28,6],[-35,3],[-1,-31],[-36,-8],[-36,-5],[-27,-14],[-24,-12],[-17,-18],[-27,-14],[-14,-26],[-14,-33],[-26,-21],[1,-16],[0,-7],[-24,-20],[-4,-38],[-17,-25],[21,-21],[11,-20],[24,-37],[1,-22],[-7,-26],[22,-20],[17,-16],[24,-20],[26,-21],[38,0],[33,-12],[30,-11],[23,-20],[11,-23],[3,-25],[-26,-16],[-3,-22],[-1,-25],[-32,-25],[-24,-20],[5,-21],[-22,-14],[-29,-20],[-20,-25],[-31,-21],[-30,-11],[-27,-25],[-26,-12],[-32,-8],[-32,-3],[-26,-10],[-47,-23],[-31,-14],[-20,-19],[-22,-18],[-32,6],[-18,-22],[-27,5],[-31,-9],[-23,-15],[-39,-9],[-35,-8],[-38,-9],[-34,-17],[-30,-20],[-24,-26],[-24,-25],[-9,-26],[-16,-19],[-28,-8],[-32,-5],[-4,-21],[-26,-16],[-22,-13],[-31,-14],[-34,-17],[-38,-17],[-28,-22],[-39,-13],[-19,-19],[-51,-22],[-28,-7],[-45,-16],[-28,-20],[-44,-16],[-38,-22],[-37,-9],[-20,-15],[3,-22],[-3,-21],[-7,-25],[-99,-83],[-22,-36],[-32,-9],[-70,-39],[-33,-10],[-24,-12],[-34,-12],[-27,-13],[-69,-68],[-29,-17],[-26,-18],[-41,-17],[-29,-7],[-25,-16],[-33,-17],[-31,-3],[-37,-16],[-78,-44],[-50,-16],[-23,-16],[-33,-13],[-33,-6],[-31,-12],[-61,-29],[-36,-11],[-12,-22],[17,-23],[-11,-19],[-37,-7],[-24,-13],[-33,1],[-27,9],[-42,16],[-27,-10],[-36,-4],[-64,1],[-20,17],[-33,15],[-54,25],[-30,11],[-2,23],[-32,7],[-20,24],[-32,-11],[-16,-18],[-35,-11],[-54,-12],[-33,-12],[-35,2],[-39,4],[-64,-1],[-34,-6],[-34,-10],[-36,-3],[-35,-6],[-31,-4],[-38,-1],[-40,-10],[-28,-3],[-28,-5],[-57,-4],[-44,2],[-26,-10],[-23,-13],[-32,-12],[-71,-20],[-33,-17],[-23,-21],[-27,-9],[-29,-15],[-44,4],[-29,10],[-32,-1],[-9,-2],[-18,-5],[-20,-18],[-16,-24],[-86,-6],[-35,14],[-35,-7],[-22,-17],[-57,-1],[-31,4],[-35,-6],[-42,1],[-47,-16],[-27,-17],[-26,-13],[-41,-19],[-37,-17],[-30,42],[-33,9],[-38,4],[-50,-16],[-37,10],[-26,-9],[-9,-26],[-38,-16],[-27,-14],[-25,-17],[-61,-45],[-27,-20],[-67,-42],[-93,0],[-59,-1],[-102,0],[-32,0],[-113,0],[-193,-1],[-78,0],[-97,0],[-49,0],[-50,1],[-198,1],[-115,0],[-42,1],[-201,1],[-34,0],[-99,-1],[0,-61],[0,-92],[0,-81],[0,-59],[-1,-95],[0,-35],[-5,-234],[97,-110]],[[52966,74086],[-161,5],[-51,0],[-39,0],[-36,-1],[-41,0],[-71,1],[-53,-5],[-180,0],[-124,1],[-126,-1],[-34,0],[-47,0],[-39,0],[-33,0],[-68,0],[-40,1],[-55,1],[-88,2],[-129,5],[-41,0],[-48,1],[-89,1],[-39,0],[-20,7],[-7,2],[-30,14],[-122,54],[6,-75],[-105,1],[-140,1],[-2,83],[-1,64],[72,1],[-121,53],[-27,12],[-54,24],[-572,256],[-151,65],[-209,93],[-10,5],[-29,13],[-78,34],[-140,63],[-115,50],[-34,16],[-110,49],[-106,47],[-27,12],[-125,56],[-64,28],[-116,51],[-36,16],[-136,60],[-36,16],[-44,20],[-45,19],[-78,35],[-163,71],[-37,16],[-79,34],[-8,4],[-17,7],[-8,4],[-134,62],[-11,5],[-93,41],[0,1],[-163,72],[-63,-1],[-56,0],[-97,3],[-88,2],[-208,2],[-117,1],[-46,1],[-56,0],[-84,1],[-337,3],[-61,1],[-32,0],[-34,1],[-190,3],[-82,1],[-47,1],[-4,0],[-49,1],[-186,5],[-3,0],[-100,2],[-104,2],[-99,2],[-221,3],[-93,2],[-123,2],[-155,2],[-213,3],[-53,1],[-157,2],[-45,4],[-32,2],[-110,1],[-144,-2],[-184,-73],[-119,-46],[-186,-72],[-74,-29],[-100,-39],[-149,-60],[-45,-18],[-64,-26],[-176,-71],[-166,-66],[-140,-57],[-57,-22],[-109,0],[-134,0],[-233,0]],[[42384,75131],[0,107],[1,181],[-1,42],[-13,213],[-5,73],[-108,2],[-52,-1],[-44,1],[-37,-2],[-2,23],[-3,45],[-6,214]],[[76264,78324],[-3,-24],[-16,-135],[0,-2],[-2,-26],[-34,-504],[-98,17],[-128,22],[-1281,159],[-448,47],[-48,9],[-50,10],[-198,38],[-324,67],[-360,89],[-6,-151],[-203,2],[-31,0],[-563,4],[-190,0],[-2,-150],[-497,-3],[1,-102],[1,-138],[1,-191],[0,-332],[-103,0],[-5,0],[-191,0],[-38,0],[-246,-2],[-385,2],[-6,52],[1,28],[2,70],[-3,155],[-128,-1],[-354,-1],[0,-134],[0,-19],[-116,6],[-60,3],[-309,12],[0,-233],[0,-219],[-483,17],[0,-236],[0,-55],[-28,-12],[-209,9],[0,-34],[-6,-60],[0,-50],[0,-150],[-22,-13],[-112,2],[-329,11],[-270,12],[5,-304],[-485,16],[-45,2],[-47,0],[-14,0],[-106,5],[-10,0],[-60,2],[-2,-63],[0,-24],[-1,-13],[-2,-34],[0,-31],[-3,-67],[-49,0],[-10,1],[-295,9],[-9,1],[-53,0],[-36,2]],[[67163,75692],[51,26],[119,24],[90,12],[23,14],[14,47],[-21,90],[-46,105],[-50,46],[-92,59],[-92,39],[-62,18],[-19,11],[-17,10],[-19,-3],[-169,-27],[-77,-13],[-235,-25],[-78,1],[-103,2],[-118,48],[-2,3],[-72,128],[-1,2],[-37,54],[-41,59],[-2,4],[-55,33],[-29,17],[-31,19],[-51,39],[-3,6],[-7,15],[-33,67],[-1,2],[14,75],[13,71],[0,1],[4,2],[3,3],[2,2],[13,14],[1,1],[2,3],[3,3],[2,4],[1,3],[2,3],[4,12],[0,1],[1,3],[1,4],[1,4],[0,1],[2,43],[1,0],[3,59],[2,2],[2,4],[2,3],[2,3],[0,2],[2,4],[-68,11],[-6,1],[-17,3],[-57,9],[-2,1],[-1,-1],[0,-1],[-99,-36],[-35,-12],[-80,-32],[-76,10],[-33,6],[-4,1],[-42,28],[-29,15],[-13,7],[-42,-5],[-32,-12],[-26,-55],[-29,-46],[-34,-14],[-42,-1],[-28,6],[-34,8],[-36,16],[-16,7],[-5,2],[-53,43],[-15,50],[-32,23],[-2,30],[9,20],[-1,18],[-2,6],[-2,6],[-15,37],[-13,33],[-51,80],[-12,18],[-55,65],[-18,13],[-8,6],[-17,8],[-15,2],[-28,-2],[-3,0],[-44,-7],[-1,0],[-15,-2],[-13,0],[-58,18],[-13,4],[-40,13],[-52,17],[-19,8],[-85,54],[-2,1],[-21,10],[-21,11],[9,21],[-3,2],[-5,3],[-28,38],[-8,45],[-2,15],[-3,17],[16,35],[19,42],[6,12],[1,8],[0,6],[-8,139],[0,14],[-2,22],[-3,25],[-1,0],[-17,50],[-2,7],[-15,17],[-2,2],[-7,6],[-3,7],[-6,131],[1,12],[2,37],[2,22],[0,2],[-3,19],[18,9],[-44,20],[-18,9],[-8,3],[-39,19],[-2,1],[-26,12],[-27,-18],[-1,-1],[-2,0],[-2,0],[-45,9],[-10,1],[-31,6],[-11,3],[-14,9],[-12,13],[-8,14],[-11,14],[-3,2],[-29,23],[-20,11],[-122,32],[-10,1],[-155,24],[-6,62],[12,13],[6,9],[-3,106],[-3,21],[-43,14],[-81,13],[-14,2],[-50,3],[-13,3],[-6,5],[-7,11],[0,12],[-7,21],[-9,11],[-8,10],[-10,8],[-18,3],[-21,-6],[-43,-13],[-64,-14],[-30,-7],[-43,-7],[-73,-5],[-6,1],[-6,0],[-27,8],[-24,7],[-10,1],[-41,2],[-73,-4],[-12,-1],[-103,-25],[-30,-7],[-17,-8],[-13,-10],[-10,-11],[-9,-7],[-1,0],[-12,-6],[-11,-3],[-87,-32],[-24,-2],[-10,2],[-37,14],[-2,1],[-2,0],[-18,-1],[-10,-4],[-3,-2],[-25,-22],[-6,-6],[-25,-15],[-4,-2],[-48,-29],[-125,-70],[-18,-10],[-74,-28],[-18,-6],[-44,-12],[-64,-27],[-6,-9],[-7,-11],[-18,-23],[-29,-26],[-44,-28],[-1,0],[-27,-13],[-16,-4],[-113,98],[-2,2],[-12,1],[-108,12],[-32,5],[-56,14],[-6,2],[-58,31],[-49,32],[-35,88],[-1,0],[-50,106],[-11,13],[-62,50],[-22,11],[-11,3],[-13,2],[-4,0],[-5,4],[-23,17],[-44,2],[-19,-10],[-117,-112],[-31,0],[-175,-1],[-29,-21],[-25,-12],[-14,-19],[-10,-22],[-24,-18],[-20,-22],[-32,-16],[-23,-15],[-26,-27],[-22,-23],[-20,-24],[-24,-25],[-34,-24],[-21,-22],[-24,-25],[-27,-11],[-14,-20],[-19,-20],[-19,-18],[-30,-27],[-20,-21],[-33,-28],[-29,-19],[-37,-19],[-38,-15],[-7,-22],[-20,-21],[-33,-6],[-44,4],[-33,-5],[-31,-10],[-22,-19],[13,-29],[-10,-25],[-17,-17],[-18,-18],[-32,-20],[-29,-18],[-10,-27],[-14,-27],[-14,-19],[-30,-16],[-26,-19],[-17,-25],[17,-34],[-1,-23]],[[14544,77314],[0,-51],[-1,-141],[-2,-209],[-3,-315],[0,-1],[0,-35],[-2,-184],[3,-108],[4,-219],[1,-33],[15,-403],[11,-311],[14,-375],[6,-171],[1,-50],[3,-89],[2,-37],[5,-149],[10,-248],[2,-51],[9,-240],[4,-122],[6,-220],[0,-2],[3,-105],[14,-66],[0,-22],[-1,-23],[6,-146],[10,-237],[8,-215],[9,-426],[1,-26],[8,-288],[3,-123],[4,-26],[-2,-33],[-2,-26],[-1,-29],[-1,-22],[0,-65],[0,-27],[4,-23],[-3,-48],[-5,-67],[0,-4],[2,-87],[3,-107],[4,-143],[-8,-24],[0,-12],[1,-142],[0,-179],[0,-472],[1,-256],[0,-343],[0,-17],[0,-37],[1,-240],[0,-177],[0,-209]],[[14691,69058],[-547,16],[-347,11],[-14,1],[-316,10],[-1,0],[-161,5],[-106,3],[-40,4],[-160,3],[-78,1],[-136,3],[-268,5],[-56,1],[-186,2],[-98,1],[-104,0],[-110,1],[-117,2],[-57,2],[-29,0],[-198,8],[-144,5],[-179,7],[-131,4],[-43,2],[-147,5],[-56,2],[-52,1],[-185,5],[-90,2],[-546,12],[-277,7],[-150,3],[-144,4],[-256,5],[-82,2],[-295,6],[-84,3],[-105,2],[-331,7],[-682,16],[-143,3],[-122,0],[-204,2],[-290,1],[-279,2],[-215,1],[-105,11],[-84,1],[-159,2],[-267,3],[-90,1],[-85,2]],[[5540,69266],[4,29],[8,49],[1,2],[68,406],[4,26],[0,2],[5,27],[16,99],[4,24],[0,2],[24,102],[0,3],[1,3],[5,38],[9,69],[4,31],[5,28],[6,32],[5,31],[5,31],[6,33],[27,143],[4,25],[0,1],[3,18],[3,35],[23,134],[1,5],[46,288],[12,76],[17,109],[23,143],[2,13],[10,58],[4,23],[46,280],[10,57],[18,113],[8,43],[17,115],[0,1],[4,37],[10,70],[7,41],[5,27],[5,35],[28,132],[10,62],[21,139],[13,83],[5,29],[0,2],[3,11],[-1,4],[1,6],[0,8],[2,29],[36,261],[12,85],[8,61],[28,145],[34,212],[10,50],[6,34],[16,89],[24,107],[7,38],[35,207],[17,102],[1,5],[1,6],[43,272],[5,28],[31,292],[27,98],[14,54],[10,40],[32,125],[36,197],[18,97],[73,463],[17,80],[80,395],[5,31],[4,30],[7,46],[12,60],[6,32],[24,129],[0,1],[5,25],[5,29],[8,44],[5,31],[1,2],[0,1],[20,150],[9,51],[8,38],[4,21],[12,58],[18,89],[3,26],[60,296],[4,31],[51,339],[15,79],[30,158],[1,5],[2,10],[12,66],[74,392],[8,53],[8,49],[17,96],[15,80],[29,165],[11,59],[17,96],[2,7],[10,54],[38,212],[5,24],[28,155],[50,305],[26,164],[22,139]],[[42384,75131],[-1,-156],[-1,-146],[-67,0],[-76,2],[-55,1],[-58,0],[-161,2],[-64,2],[-2,-198],[4,-37],[-1,-71],[-140,2],[-29,0],[-180,3],[-98,2],[-104,3],[-133,3],[-126,3],[-167,0],[0,-55],[1,-53],[0,-25],[0,-65],[1,-27],[0,-81],[-112,1],[-72,0],[-88,1],[-149,1],[-33,0],[-31,0],[0,-77],[0,-52],[0,-52],[0,-123],[-1,-70],[-1,-74],[0,-23],[0,-74],[0,-62],[-144,0],[-89,0],[1,-45],[0,-36],[1,-66],[1,-89],[1,-68],[-253,-1],[3,-117],[11,-430],[0,-60],[2,-53],[1,-25],[0,-2],[4,-133],[3,-63],[0,-27],[-24,0],[-57,1],[-87,0],[-186,3],[-136,0],[-2,-45],[-1,-72],[-1,-32],[-1,-38],[-1,-43],[0,-28],[-1,-23],[0,-30],[-1,-41],[-1,-77],[-2,-66],[0,-12],[0,-75],[0,-26],[-129,2],[-167,2],[-191,2],[-126,1],[-62,1],[-45,1],[-40,0],[-59,0],[-59,1],[-55,1],[-42,0],[2,-61],[-1,-33],[-1,-39],[0,-23],[-1,-33],[1,-72],[0,-33],[-1,-84],[0,-27],[0,-29],[0,-29],[0,-61],[0,-81],[-62,-1],[-307,1],[-54,1],[-51,0],[-338,2],[-88,-1],[-147,1],[-396,4],[-1,-64],[5,-60],[-1,-53],[0,-66],[-1,-65],[-126,1],[-2,0],[-226,1],[-126,1],[-179,2],[-254,2],[-53,1],[-15,-303],[-108,1],[-33,0],[-164,0],[-72,0],[-107,0],[-4,-100],[-3,-26],[-14,-28],[6,-32],[-12,-25],[-4,-9],[-65,-64],[-75,-86],[-12,-14],[-13,-20],[-15,-23],[-10,-70],[-2,-11],[12,-32],[8,-12],[10,-15],[13,-19],[104,-106],[55,-55],[23,-24],[10,-10],[31,-23],[52,-19],[40,-6],[6,-2],[35,-9],[63,-17],[28,-12],[31,-23],[12,-23],[1,-1],[-1,-4],[-3,-22],[-3,-19],[-20,-22],[-9,-4],[-36,-15],[-5,-2],[-78,-9],[-23,2],[-2,0],[-18,-1],[-88,-7],[-15,-1],[-7,-2],[-68,-17],[-38,-20],[-22,-11],[-72,-59],[-50,-42],[-28,-24],[-96,-73],[-35,-18],[-18,-9],[-12,-6],[-7,-3],[-22,-6],[-24,-7],[-31,-3],[-18,1],[-103,6],[-13,0],[-158,25],[-28,11],[-29,11],[-45,2],[-26,2],[-6,4],[-2,2],[-7,0],[-69,4],[-61,-10],[-26,-6],[-31,-15],[-39,-18],[0,-8],[-4,-35],[-9,-78],[0,-1],[-12,-81],[-2,-11],[-38,-58],[-107,-114],[-39,-37],[-50,-29],[-18,-10],[-20,-12],[-28,-1],[-15,-1],[-108,8],[-14,1],[-5,4],[-33,25],[-70,101],[-27,51],[-28,47],[-15,25],[-11,18],[-61,45],[-48,8],[-6,1],[-104,0],[-18,0],[-35,-23],[-25,-25],[-4,-6],[-40,-65],[-6,-10],[-1,-4],[-7,-72],[-1,-10],[12,-17],[6,-8],[61,-45],[51,-20],[33,-14],[18,-9],[56,-30]],[[33646,68827],[-86,1],[-176,4],[-218,3],[-440,8],[-511,9],[-1,249],[-2,330],[0,22],[-1,69],[-1,117],[0,262],[-1,34],[0,54],[-2,390],[-160,-1],[-292,-2],[-138,-1],[-731,-4],[-144,1],[0,99],[-1,38],[-1,168],[-108,3],[-288,-2],[-202,-1],[-362,-2],[-403,8],[-103,3]],[[29274,70686],[-2,480],[0,29],[0,128],[0,72],[-1,285],[0,168],[0,26],[0,63],[0,30],[-1,89],[0,54],[0,77],[0,42],[0,232],[0,39],[-20,1],[-9,0],[-6,0],[-45,2],[-50,1],[-16,0],[-163,4],[-225,5],[-165,4],[-1021,24],[-102,-1],[-303,12],[-85,1],[-210,1],[-175,2],[-45,1],[-87,1],[-140,2],[-14,1],[-34,0],[-3,65],[-1,26],[0,3],[-1,23],[-2,61],[-7,178],[-7,168],[-6,123],[-4,140],[-2,81],[-9,247],[-3,96],[0,53],[1,97],[0,27],[0,64],[-9,281],[-2,78],[-8,255],[0,1],[-1,34],[-1,28],[-8,273],[-3,73],[-2,57],[-1,37],[-3,96],[-1,46],[-4,139],[-1,154],[-2,440],[-1,217],[-134,3],[-562,18],[-114,4],[-29,-3],[-75,-2],[-173,6],[-367,10],[-110,4],[-83,2],[-149,5],[-69,4],[-340,10],[-401,15],[-307,15],[4,65],[-1,77],[0,10],[1,102],[0,48],[-1,317],[0,190],[0,15],[0,78]],[[67163,75692],[-35,-29],[-7,-6],[0,-7],[2,-30],[39,-19],[36,-14],[87,-32],[126,-43],[29,-20],[49,-33],[27,-40],[17,-25],[0,-1],[16,-56],[-20,-40],[-43,-44],[-132,-93],[-55,-39],[-64,-47],[-22,-15],[-2,-7],[-21,-71],[-2,-18],[-5,-46],[-5,-46],[-2,-19],[-3,-23],[13,-39],[15,-42],[19,-56],[95,-98],[130,-74],[4,-5],[30,-30],[16,-15],[61,-55],[37,-35],[31,-41],[58,-73],[46,-49],[7,-56],[6,-56],[-3,-6],[-50,-74],[-21,-5],[-24,-5],[-136,11],[-128,-9],[-8,-1],[-3,-1],[-130,-39],[-20,-6],[-197,-87],[-98,-54],[-35,-34],[-37,-37],[-6,-6],[-85,-89],[-36,-37],[-37,-13],[-89,-30],[-289,-70],[-70,-16],[-17,-9],[-19,-10],[-142,-74],[-8,-4],[-104,-52],[-88,-43],[-44,-29],[-77,-52],[-50,-44],[-11,-47],[-12,-102],[-6,-7],[-21,-26],[-23,-28],[-46,-15],[-14,-5],[-24,2],[-15,2],[-75,7],[-30,9],[-53,16],[-20,6],[-81,51],[-70,14],[-52,-22],[-18,-8],[-7,-3],[-126,-88],[-61,-85],[-7,-35],[-13,-63],[0,-25],[11,-58],[30,-86],[20,-75],[-1,-68],[-3,-65],[-36,-85]],[[64926,72291],[-29,-31],[-2,-3],[-3,-2],[-71,-55],[-13,-10],[-9,-3],[-101,-42],[-22,-9],[-31,2],[-76,2],[-99,4],[-200,72],[-48,75],[-1,6],[-10,78],[-13,95],[-1,8],[-2,4],[-78,112],[-80,68],[-70,28],[-1,0],[-157,21],[-240,-39],[-193,-66],[-14,-5],[-36,-35],[-34,-33],[-24,-23],[-4,-17],[-3,-9],[-15,-52],[7,-22],[1,-4],[13,-39],[46,-72],[15,-23],[51,-26],[24,-11],[76,-38],[206,-73],[189,-55],[119,-58],[32,-58],[83,-106],[72,-92],[108,-154],[4,-6],[11,-23],[36,-76],[47,-173],[-70,-155],[-5,-11],[-14,-31],[-14,-19],[-69,-98],[0,-1],[-57,-35],[-14,-9],[-16,-1],[-208,-12],[-37,-3],[-103,7],[-22,1],[-99,-7],[-72,-5],[-52,-4],[-22,-8],[-90,-35],[-2,-1],[-2,-1],[-26,-32],[-5,-7],[-1,-7],[-1,-8],[-5,-40],[51,-43],[14,-11],[51,-25],[23,-10],[8,-4],[47,-23],[184,-55],[65,-31],[27,-27],[-4,-1],[-22,-54],[-13,-29],[-11,-26],[-44,-36],[-320,41],[-58,5],[-76,7],[-82,13],[-55,21],[-97,18],[-4,0],[-4,0],[-45,-7],[-43,-6],[-66,-33],[-54,-38],[-50,-71],[1,-1],[28,-51],[26,-46],[17,-31],[151,-109],[53,-51],[1,-1],[0,-2],[6,-40],[4,-25],[-34,-75],[29,-72],[8,-19],[0,-1],[43,-34],[22,-7],[135,-45],[46,-19],[172,-74],[94,-74],[1,-1],[26,-93],[-37,-57],[-96,-64],[-77,-40],[-77,-39],[-2,-1],[-207,-69],[-51,-30],[-132,-80],[-198,-69],[-46,-28],[-20,-12],[-7,-9],[-32,-39],[-19,-52],[-25,-67],[-53,-86],[-9,-72],[1,-9],[10,-78],[-5,-72],[-15,-14],[-37,-32],[-138,-48],[-91,-21],[-103,-8],[-82,-13],[-114,-61],[-16,-8],[-23,0],[-80,0],[-142,41],[-81,49],[-42,78],[-8,60],[-4,27],[18,21],[56,67],[1,4],[21,66],[-7,43],[-1,6],[-5,5],[-46,38],[-81,28],[-156,-12],[-12,-1],[-13,-4],[-113,-31],[-117,-57],[-4,-1],[-93,-79],[-28,-23],[-27,-68],[-1,-25],[-5,-101],[42,-97],[-13,-52],[-15,-10],[-28,-21],[-1,-1],[-2,0],[-101,-29],[-10,-6],[-98,-56],[-61,-64],[-22,-24],[-44,-71],[-8,-13],[-66,-107],[-1,-18],[0,-39],[-3,-52],[-5,-71],[0,-6],[-3,-3],[-63,-67],[-106,-56],[-319,-158],[-26,-18],[-76,-54],[-7,-5],[-5,-10],[-42,-82],[-31,-79],[-20,-23],[-26,-29],[-15,-17],[-125,-90],[-13,-3],[-50,-13],[-11,-14],[-6,-11],[-4,-2],[-5,-27],[0,-4],[-12,-12],[-14,-13],[-24,-22],[-11,-29],[-5,-12],[-23,-35],[-97,-99],[-40,-24],[-21,-12],[-82,-37],[-85,-21],[-26,-6],[-30,-3],[-61,-6],[-21,-2],[-74,2],[-11,0],[-8,4],[-70,-17],[-99,-31],[-157,-79],[-20,-17],[-23,-33],[-12,-23],[-6,-36],[-26,-28],[-69,-61],[-12,-8],[-2,-1],[-1,-3],[-8,-9]],[[58421,66283],[1,37],[1,32],[2,127],[1,39],[3,77],[1,37],[4,109],[1,40],[0,133],[0,80],[0,33],[0,412],[0,131],[0,61],[0,22],[0,15],[0,213],[0,77],[0,98],[0,125],[0,42],[-1,315],[0,26],[0,43],[-169,0],[-212,0],[-158,0],[-347,0],[-88,0],[-106,0],[-123,-1],[-221,0],[-316,-1],[-30,0],[-24,0],[-31,1],[-107,1],[-47,0],[-209,2],[-541,1],[-164,0],[1,45],[2,159],[0,77],[1,47],[0,6],[1,42],[0,35],[2,149],[2,146],[1,40],[0,36],[1,69],[0,28],[0,29],[-91,0],[-237,1],[-89,0],[-97,0],[-204,-1],[-34,-1],[-94,-2],[-33,0],[-35,0],[-69,0]],[[54569,69515],[0,23],[1,0],[1,30],[1,24],[0,19],[0,5],[0,23],[-1,29],[-38,2],[-33,1],[-51,1],[-157,4],[-47,1],[-129,1],[-17,0],[-20,1],[-73,0],[-66,1],[-1,0],[-34,0],[-35,1],[-33,1],[0,31],[-1,46],[0,27],[-1,44],[-103,6],[-18,0],[-25,1],[-32,-4],[-36,-5],[-32,-1],[-3,23],[1,25],[1,23],[1,32],[1,61],[0,29],[3,207],[5,149],[0,9],[1,37],[0,47],[1,57],[1,72],[0,3],[1,45],[0,7],[0,92],[0,38],[0,36],[0,8],[2,120],[1,111],[240,-2],[-1,173],[0,33],[1,35],[-2,60],[242,1],[0,61],[1,69],[0,103],[0,62],[1,159],[47,0],[81,0],[72,-1],[41,0],[1,83],[0,75],[1,224],[0,123],[0,41],[0,54],[0,36],[0,10],[0,63],[0,53],[0,25],[0,6],[0,39],[0,64],[0,4],[1,23],[8,212],[-1,55],[0,72],[0,97],[-60,0],[-68,0],[-117,1],[0,39],[0,36],[0,77],[2,143],[-74,2],[-10,0],[-114,2],[-49,0],[0,150],[1,107],[1,45],[-1,86],[-1,28],[-3,200],[-177,0],[-75,0],[-238,0],[-293,0],[-6,0],[-90,0]],[[74672,69730],[1,22],[2,68],[1,25],[4,33],[4,48],[1,24],[2,33],[2,21],[1,44],[3,45],[2,22],[5,62],[2,28],[3,33],[2,24],[5,59],[-13,20],[-58,1],[-33,0],[-32,0],[-35,0],[-43,0],[-34,0],[-33,-1],[-33,0],[-37,-1],[-32,1],[-32,1],[-34,1],[-37,1],[-31,1],[-34,-1],[-30,0],[-35,-1],[-41,0],[-36,0],[-33,0],[-33,2],[-33,-1],[-49,0],[-31,1],[-39,2],[-38,1],[-43,0],[-32,1],[-44,0],[-69,0],[-37,0],[-55,0],[-29,0],[-45,0],[-31,1],[-30,0],[-13,0],[-25,0],[-46,0],[-25,0],[-13,0],[-39,0],[-98,0],[-44,0],[-132,-1],[-45,0],[-29,2],[-39,0],[-35,1],[-7,0],[-28,-2],[-86,0],[-37,0],[-113,0],[-43,0],[-2,0],[-34,0],[-36,0],[-39,-1],[-38,0],[-34,-1],[-30,0],[-29,0],[-36,1],[-31,-2],[-30,0],[-32,1],[-35,1],[-70,-1],[-39,0],[-38,0],[-64,0],[-41,0],[-121,1],[-51,0],[-56,0],[-50,0],[-35,0],[-52,0],[-33,-1],[-48,-1],[-76,1],[-41,1],[-47,0],[-30,0],[-53,0],[-60,-1],[-171,-1],[-78,0],[-85,2],[-39,-1],[-77,-2],[-35,-1],[-39,1],[-36,-1],[-34,1],[-44,0],[-61,2],[-34,1],[-68,0],[-197,0],[-77,1],[-56,0],[-164,2],[-75,1],[-81,1],[-42,1],[-126,1],[-44,1],[-36,0],[-73,1],[-50,1],[-93,1],[-6,40],[-6,47],[-5,30],[-3,27],[-5,23],[-9,44],[-7,29],[-10,46],[-34,16],[-32,0],[-35,0],[-36,1],[-44,1],[-47,0],[-47,0],[-67,-1],[-42,0],[-28,0],[-35,1],[-57,1],[-41,0],[-29,0],[-36,1],[-52,0],[-33,12],[-1,25],[0,19],[0,4],[0,1],[0,22],[10,28],[1,2],[9,22],[2,7],[6,20],[5,22],[3,13],[3,24],[-2,21],[-7,41],[-1,1],[-7,20],[-11,21],[0,1],[-12,24],[-24,45],[-9,24],[-10,31],[-3,9],[-5,14],[-9,27],[-10,23],[-14,26],[-12,20],[-12,21],[-12,22],[-5,24],[-2,32],[-2,57],[-2,27],[0,21],[-1,42],[13,33],[11,20],[1,7],[2,8],[1,7],[0,23],[-6,23],[-1,1],[-1,0],[-12,18],[-22,17],[-25,16],[-26,16],[-26,13],[-85,41],[-28,21],[-14,19],[-19,23],[-11,10],[-5,5],[-8,7],[-22,18],[-27,16],[-24,15],[-26,15],[-29,17],[-31,17],[-31,11],[-31,10],[-32,11],[-24,17],[-10,19],[0,1],[-1,1],[-9,37],[-5,21],[-10,35],[-11,21],[-13,22],[-21,34],[-17,19],[-11,9],[-13,10],[-39,13],[-69,1],[-36,1],[-65,2],[-62,1],[-68,1],[-55,2],[-28,1],[-76,3],[-230,9],[-97,4],[-5,0],[-23,0],[-43,1],[-34,2],[-60,4],[-35,1],[-29,1],[-51,2],[-51,1],[-31,1],[-36,3],[-35,2],[-47,2],[-58,2],[-36,1],[-47,2],[-62,3],[-54,1],[-33,2],[-68,1],[-59,2],[-178,6],[-61,2],[-29,1],[-43,1],[-55,4],[-113,4],[-42,1],[-78,3],[-232,8],[-107,4]],[[82090,77761],[-4,-66],[-6,-105],[-10,-165],[-6,-90],[-18,-301],[-3,-58],[-1,-15],[-6,-112],[-12,-178],[-591,3],[-432,3],[-347,2],[-238,2],[-194,1],[-133,1],[-2,-308],[-246,3],[-397,10],[-279,6],[-36,1],[-21,-17],[0,-33],[0,-123],[-3,-352],[0,-89],[233,-1],[47,0],[28,0],[31,0],[302,-3],[155,-1],[149,-2],[41,0],[120,-1],[64,-1],[102,-1],[51,0],[125,-2],[0,-31],[-3,-123],[-2,-86],[-1,-31],[-3,-101],[0,-28],[-2,-69],[-1,-63],[-2,-78],[-3,-125],[-3,-106],[-2,-72],[-355,3],[-130,2],[-1,-180],[-1,-124],[-486,4],[-4,-117],[-6,-184],[-41,-1],[-63,-4],[-174,1],[-191,0],[-3,-93],[-1,-151],[-2,-170],[-1,-70],[-1,-194],[-1,-67],[0,-79],[0,-76],[0,-66],[0,-120],[0,-45],[-1,-97],[0,-27],[0,-57],[-1,-111],[0,-63],[-1,-97],[-2,-189],[-1,-226],[0,-119],[0,-169],[0,-75],[0,-54],[0,-156],[0,-34],[-183,6],[-4,0],[-49,2],[-2,-97],[-2,-54],[-114,1],[0,-75],[-53,1],[-66,2],[-3,-104],[-2,-44],[-2,-81],[-285,1],[-103,1],[-145,0],[-120,3],[-221,6],[-60,1],[-39,1],[-1,-56],[9,-105],[4,-49],[4,-42],[1,-20],[1,-8],[3,-30],[-143,1],[-77,2],[-228,4],[-320,4],[-30,0],[-98,1],[-27,0],[-18,0],[-36,1],[2,-44],[3,-61],[2,-45],[2,-69],[3,-75],[-209,4],[-149,4],[-136,4],[-2,-78],[-1,-40],[1,-128],[-1,-34],[-2,-43],[0,-22],[-2,-31],[-2,-24],[-5,-68],[-6,-66],[-11,-131],[-2,-23],[-2,-25],[-3,-34],[-3,-21],[-5,-59],[-6,-89],[-30,0],[-133,-2],[-129,0],[-88,-1],[-308,2],[-45,0],[-313,2],[-277,2],[-35,-1],[-91,2]],[[85751,78234],[22,-81],[11,-44],[1,-3],[6,-22],[35,-134],[8,-29],[51,-196],[125,-472],[46,-176],[37,-144],[9,-35],[17,-63],[19,-75],[7,-27],[81,-311],[11,-44],[11,-34],[13,-42],[20,-76],[9,-32],[18,-63],[41,-150],[3,-17],[4,-20],[20,-74],[13,-48],[17,-69],[12,-45],[11,-44],[13,-49],[35,-136],[19,-78],[9,-32],[45,-177],[68,-271],[89,-350],[45,-179],[32,-123],[6,-34],[10,-33],[11,-37],[7,-21],[7,-22],[47,-200],[10,-43],[8,-35],[17,-72],[8,-23],[6,-19],[36,-136],[1,-2],[11,-42],[3,-13],[68,-258],[74,-281],[73,-283],[23,-84],[69,-262],[38,-146],[1,-2],[22,-84],[96,-366],[6,-21],[12,-48],[44,-167],[32,-120],[66,-250],[12,-32],[87,-330],[26,-99],[75,-284],[50,-188],[12,-46],[21,-81],[63,-238],[31,-119],[10,-23],[8,-44],[28,-107],[28,-105],[22,-85],[11,-42],[3,-9],[7,-29],[4,-27],[19,-67],[5,-22],[15,-62],[16,-57],[27,-101],[7,-26],[56,-204],[36,-129],[12,-50],[36,-149],[13,-44],[14,-49],[1,-3],[7,-24],[26,-90]],[[88384,68200],[-102,-26],[-3,-1],[-1,1],[-23,17],[-54,40],[-12,9],[-43,25],[-22,13],[-1,3],[-1,2],[-27,16],[-34,13],[-15,4],[-22,0],[-12,1],[-87,-3],[-40,5],[-70,12],[-173,39],[-12,4],[-58,18],[-26,10],[-155,60],[-1,0],[-3,1],[-48,6],[-16,4],[-2,0],[-8,4],[-34,15],[-15,9],[-9,6],[-29,41],[-3,12],[-8,1],[-100,21],[-29,-22],[-6,-2],[-52,-16],[-1,-1],[-21,-36],[36,-106],[-76,1],[-239,3],[-105,0],[-204,-1],[-73,3],[-176,0],[-182,2],[-259,5],[-170,3],[-48,1],[-370,5],[-208,6],[-130,-1],[-85,1],[-51,0],[-195,4],[-219,5],[-145,3],[-110,2],[-187,2],[-333,2],[-31,0],[-445,0],[-70,-3],[-47,-1],[-251,0],[-173,1],[-33,2],[-36,1],[-47,1],[-94,2],[-35,0],[-35,-3],[-35,0],[-59,0],[-51,1],[-218,1],[-161,2],[-70,0],[-34,1],[-131,2],[-37,1],[-61,0],[-41,0],[-31,1],[-30,0],[-31,0],[-41,1],[-33,-2],[-51,0],[-584,2],[-43,0],[-237,1],[-34,0],[-211,2],[-395,2],[-84,1],[-5,0],[-28,4],[-80,1],[-436,5]],[[78928,68471],[-165,2],[-313,4],[-62,0],[-74,2],[-38,1],[-10,0],[-281,5],[-85,2],[-135,2],[-132,3],[-345,12],[-249,8],[-66,3],[-32,0],[-247,1],[-75,1],[-136,1],[-230,4],[-45,1],[-48,1],[-206,0],[-384,3],[-44,1],[4,-36],[-7,-223],[-2,-56],[-76,0],[-358,3],[-2,0],[-40,0],[-1,-67],[1,-30],[-1,-201],[-252,1],[-40,0],[-345,-3],[-94,-1],[-111,1],[-130,1],[-83,1],[-20,0],[-118,1],[-96,2],[-100,2],[-61,0],[-124,0],[-277,0],[-232,0],[-273,-1],[-53,0],[-32,0],[-131,0],[-40,-1],[-318,-1],[1,92],[2,61],[64,0],[43,0],[63,0],[184,1],[137,-2],[5,45],[16,264],[50,1],[28,-1],[57,0],[193,1],[143,1],[7,57],[7,89]],[[73114,68529],[29,1],[29,21],[21,14],[43,25],[29,17],[28,17],[85,51],[41,24],[49,29],[23,13],[34,21],[35,20],[23,14],[33,20],[101,60],[48,28],[44,26],[22,14],[33,19],[31,19],[87,51],[29,17],[24,15],[71,42],[44,26],[41,24],[116,69],[38,23],[71,42],[234,139],[4,53],[2,29],[3,43],[3,32],[3,43],[4,56],[3,44]],[[29274,70686],[-172,4],[-1,0],[-251,4],[-70,2],[-278,5],[-29,1],[-92,2],[-51,2],[-29,1],[-31,-3],[-176,2],[-52,2],[-239,5],[-266,5],[-392,25],[-94,1],[-68,0],[-272,5],[-93,0],[-277,3],[-543,15],[-273,8],[-48,2],[-62,2],[-45,-1],[-211,6],[-93,2],[-281,6],[-164,7],[-379,17],[-191,8],[-279,12],[-113,4],[-187,7],[0,-55],[0,-3],[0,-28],[0,-4],[0,-59],[1,-166],[1,-177],[0,-4],[1,-110],[-190,-4],[-289,-5],[-267,-6],[-2,-1],[-121,-2],[-108,-2],[0,-52],[0,-90],[0,-206],[-1,-204],[0,-78],[0,-55],[0,-35],[0,-239],[0,-66],[0,-187],[-54,-3],[-75,-2],[-61,-1],[-197,-3],[-197,-3],[-91,-2],[-132,-2],[-289,-6],[-120,-3],[-95,-3],[-73,-2],[-45,-1],[-27,-1],[-154,-4],[-223,-6],[-82,-2],[-37,0],[-43,2],[-81,4],[-57,3],[-192,8],[-78,4],[-262,11],[-38,1],[-204,8],[-11,1],[-16,1],[-18,1],[-28,1],[-17,1],[-54,2],[-36,2],[-41,1],[-15,1],[-73,3],[-145,7],[-259,10],[-82,3],[-75,3],[-110,4],[-337,7],[-60,2],[-49,2],[-170,4],[-287,11],[-64,2]],[[17643,69075],[-128,3],[-140,4],[-129,1],[-102,2],[-59,-1],[-33,-1],[-123,-1],[-124,-2],[-120,-2],[-102,-1],[-185,-2],[-169,-1],[-205,-2],[-3,0],[-54,-1],[-240,-2],[-335,-3],[-328,-4],[-123,-1],[-250,-3]],[[54569,69515],[0,-33],[-1,-23],[0,-27],[0,-21],[2,-47],[-4,-59],[-4,-51],[-2,-28],[-1,-79],[-1,-38],[0,-49],[-251,2],[-473,4],[-4,-69],[-1,-79],[-9,0],[-133,2],[-82,1],[-8,0],[-250,1],[-2,-79],[-1,-64],[-113,-1],[-132,0],[-7,-151],[-122,-2],[3,-77],[-117,-2],[0,-71],[-246,0],[-1,-112],[1,-190],[-243,-2],[-2,-32],[1,-117],[-246,-3],[3,-148],[-329,-4],[-31,-1],[-60,0],[-75,-1],[-44,-1],[-33,0],[-44,0],[-110,1],[-214,2],[-24,0],[-17,0],[-77,0],[-14,0],[-100,-2],[-57,-1],[-94,-1],[-92,0],[-1,0],[-89,-1],[-18,0],[-238,-1],[-189,-2],[-1,-153],[0,-3],[1,-28],[-1,-124],[-129,1],[-116,1],[-203,1],[-42,1],[0,-16],[-2,-137],[-118,2],[-1,-75],[-30,0],[-33,1],[-57,-1],[1,-16],[0,-22],[5,-110],[2,-39],[0,-37],[-81,1],[-39,1],[-35,0],[-39,1],[-40,1],[-33,0],[-17,0],[-22,1],[-29,2],[-35,0],[-37,1],[-26,0],[-52,1],[-1,-56],[0,-32],[-2,-29],[-1,-42],[-3,-73],[-4,-70],[-45,1],[-42,1],[-33,0],[-42,1],[-49,1],[-39,1],[-22,0],[-11,0],[-50,2],[-46,2],[-34,7],[-73,-3],[-81,2],[-53,1],[-32,1],[-28,1],[-29,0],[-37,0],[-61,1],[-68,2],[-34,1],[-46,-1],[-3,-28],[-1,-32],[-1,-39],[0,-1],[0,-20],[0,-27],[0,-30],[0,-29],[0,-25],[0,-32],[0,-39],[0,-29],[0,-48],[-117,1],[-2,-45],[-7,-28],[-28,-1],[-30,0],[-29,1],[-31,-12],[-1,-77],[4,-32],[2,-31],[-37,1],[-32,0],[-67,2],[-43,2],[-39,0],[-38,3],[-41,3],[-8,0],[-31,0],[-37,0],[-29,0],[-51,1],[-27,0],[-2,-26],[1,-29],[-1,-25],[-1,-20],[-1,-19],[0,-25],[0,-2],[0,-62],[0,-3],[-1,-27],[0,-28],[0,-39],[0,-42],[-1,-24],[0,-1],[0,-12],[0,-21],[-2,-55],[-117,2],[-201,3],[-47,1],[-49,0],[-84,3],[-39,0],[-13,0],[-80,2],[-33,0],[-57,2],[-2,-47],[-2,-40],[-232,6],[-12,0],[-1,-6],[-2,-59],[-102,1],[-5,0],[-55,1],[-65,0],[-241,2],[-1,-22],[-1,-51],[-1,-75],[-1,-27],[1,-30],[-2,-52],[0,-21],[0,-36],[-1,-7],[-2,-21],[-3,-32],[3,-25],[-1,-39],[0,-21],[0,-31],[-1,-21],[0,-23],[0,-28],[-1,-36],[-46,0],[-80,0],[-128,0],[-8,0],[-60,1],[-175,2],[-115,2],[-135,2],[-52,1],[-29,0],[-180,1],[-115,2],[-2,0],[-51,0],[-35,1],[-35,0],[-65,0],[-100,1],[-37,1],[1,-35],[-1,-62],[-1,-50],[-55,1],[-32,0],[-46,1],[-37,0],[-73,1],[-2,-111],[0,-42],[-41,0],[-74,0],[-6,-72],[-124,1],[1,-32],[0,-25],[1,-30],[0,-61],[-96,-1],[-26,0],[-21,0],[-38,1],[-61,-1],[2,-30],[-4,-52],[-117,0],[-119,-4],[-1,-75],[-127,2],[1,-47],[-4,-31],[-35,0],[-30,0],[-50,-1],[-1,-50],[-1,-96],[0,-11],[0,-65],[-1,-107],[1,-53],[-117,0],[-30,0],[-1,0],[-100,0],[2,-74],[-142,0],[-46,0],[-172,0],[-2,-43],[-1,-36],[-2,-43],[-2,-30],[-228,3],[-370,0],[-2,-152],[-123,-1],[-4,-74],[-113,0],[-3,-7],[0,-23],[-3,-47],[-119,2],[-3,-51],[-1,-95],[-46,0],[-63,1],[-45,0],[-41,0],[-283,2],[-50,1],[-329,3],[-31,0],[-41,0],[-50,1],[-40,0],[-31,0],[-40,1],[-4,0],[-39,0],[-93,1]],[[40343,63271],[-117,1],[-385,3],[-461,4],[-122,1]],[[39258,63280],[-1,68],[0,60],[0,22],[0,42],[0,60],[0,47],[-1,100],[2,34],[-1,151],[0,21],[-47,1],[-2,0],[-159,1],[-39,0],[1,77],[-159,-1],[-100,0],[-72,0],[-30,0],[0,15],[0,66],[0,28],[0,10],[-1,18],[1,68],[1,25],[-105,0],[-304,2],[-185,-1],[-59,0],[-282,1],[-111,0],[-49,1],[-2,79],[-1,46],[-2,100],[-2,48],[-3,43],[-329,2],[-103,-1],[-83,1],[-361,10],[-36,0],[-61,0],[-1,43],[0,31],[-4,227],[-9,0],[-69,1],[-194,0],[-215,1],[-3,141],[-7,315],[-261,2],[-168,0],[-57,1],[-1,87],[-4,226],[-260,2],[-223,2],[3,156],[-480,4],[3,168],[0,22],[-1,131],[-1,46],[-2,241],[-95,2],[-127,3],[-42,0],[-217,4],[9,174],[6,101],[2,35],[-56,-5],[-85,2],[-1,121],[0,36],[-107,0],[-174,2],[-87,0],[3,118],[1,23],[-55,3],[-123,5],[-69,3],[-65,2],[-175,8],[-1,136],[-1,124],[0,50],[-47,1],[-170,5],[-43,1],[-182,6],[-211,6],[-89,2],[-67,2],[-29,1],[1,26],[2,61],[2,97],[2,46],[0,35],[1,27],[-95,2],[-108,5],[-67,-2],[-113,3],[-75,1],[-140,2],[0,39],[1,257],[-104,0],[-68,1],[15,14],[36,23],[30,20],[34,36],[6,7],[26,27],[26,38],[10,7],[14,15],[21,23],[33,50],[34,59],[17,114],[2,13],[32,17],[88,16],[71,-4],[78,-20],[16,-7],[70,-54],[6,-5],[60,-30],[5,0],[62,-3],[2,0],[29,8],[82,35],[96,18],[86,-6],[16,-21],[46,-63],[4,-5],[35,-44],[12,-37],[19,-17],[23,-17],[56,-19],[152,-6],[53,8],[8,1],[3,2],[58,40],[20,14],[15,18],[6,39],[-28,70],[-28,41],[-37,38],[-20,36],[-22,80],[6,40],[0,1],[5,8],[5,2],[116,49],[11,4],[33,-2],[64,-6],[9,-1],[41,-7],[73,-17],[45,-22],[45,-33],[77,-23],[76,-4],[45,6],[7,1],[2,1],[75,39],[11,5],[8,7],[16,15],[11,13],[8,55],[-6,21],[-9,12],[-19,26],[-11,14],[-67,62],[-46,34],[-24,16]],[[73114,68529],[-72,2],[-208,1],[-70,1],[-67,0],[-201,1],[-69,0],[-58,0],[-120,-1],[-40,0],[-62,-1],[-187,-1],[-63,0],[-30,-1],[-90,0],[-33,-1],[-33,0],[-29,0],[-46,0],[-1,-82],[0,-22],[-1,-32],[-1,-95],[0,-32],[-1,-43],[-1,-56],[-1,-132],[-1,-45],[0,-21],[-1,-64],[0,-21],[0,-35],[3,-104],[0,-36],[-3,-27],[-4,-69],[-46,0],[-39,-1],[-6,0],[-95,0],[-51,0],[-34,0],[-40,-1],[-29,0],[-33,0],[-31,0],[-53,-1],[-29,-3],[-3,-58],[-1,-39],[0,-22],[-1,-57],[-1,-43],[-2,-73],[0,-25],[-2,-68],[-4,-179],[-1,-60],[-1,-30],[-2,-89],[0,-30],[-1,-24],[-1,-36],[0,-22],[-1,-29],[-1,-39],[0,-28],[-2,-63],[0,-21],[-1,-39],[-1,-41],[-2,-92],[-31,-7],[-56,-1],[-165,-1],[-56,0],[-91,0],[-76,-1],[-6,-110],[-2,-38],[-1,-30],[-3,-90],[-1,-30],[-44,-1],[-131,-1],[-48,-1],[-79,-1],[-31,0],[-36,-1],[-55,0],[-89,-1],[-41,0],[-43,1],[-39,1],[-116,2],[-39,0],[-46,1],[-143,3],[-5,-29],[-2,-50],[-3,-62],[1,-89],[0,-49],[-5,-70],[-2,-33],[-3,-47],[-3,-38],[-4,-66],[-2,-22],[-1,-27],[-2,-21],[-3,-44],[-2,-24],[-1,-26],[-5,-73],[-13,-191],[-5,-64],[-1,-22],[-4,-65],[-2,-23],[0,-1],[-3,-37],[-1,-19],[-1,-26],[-2,-25],[-3,-31],[-2,-39],[-3,-36],[-11,-183],[-4,-61],[-3,-56],[-9,-179],[-61,1],[-99,1],[-195,0],[-68,0],[-95,0],[-50,0],[-60,0],[-35,0],[-43,0],[-45,0],[-90,1],[-15,0],[-16,0],[-37,0],[-66,0],[-48,1],[-37,0],[-127,1],[-381,5],[-130,1],[-58,1],[-35,1],[-44,0],[-22,0],[-29,1],[-29,0],[-41,1],[-93,1],[-31,0],[-88,1],[-40,0],[-55,1],[-38,1],[-36,0],[-56,1],[-133,2],[-44,1],[-99,2],[-35,1],[-29,0],[-105,3],[-284,5],[-95,2],[-29,1],[-88,2],[-29,0],[-41,1],[-124,1],[-41,0],[-48,1],[-145,2],[-39,0],[-42,0],[-4,-33],[-1,-28],[-3,-62],[-1,-36],[-2,-48],[-1,-45],[-3,-89],[-2,-31],[0,-25],[-1,-23],[-1,-24],[-1,-28],[-2,-40],[-3,-101],[-1,-34],[-2,-33],[-1,-30],[-2,-66],[-1,-22],[-1,-27],[-3,-80],[-1,-26],[-1,-32],[-2,-25],[-8,-72],[-1,-32],[-1,-34],[-3,-99],[-1,-33],[-1,-40],[0,-121],[-1,-40],[0,-28],[0,-25],[0,-46],[-1,-25],[-2,-61],[-1,-23],[-1,-23],[-1,-26],[-3,-55],[-1,-25],[-1,-21],[-2,-42],[0,-23],[-2,-25],[-1,-26],[0,-14],[-1,-13],[0,-24],[1,-47],[1,-40],[2,-51],[-30,2],[-33,2],[-60,4],[-231,2],[-73,1],[-47,1],[-33,0],[-63,1],[-99,1],[-35,1],[-41,0],[-51,1],[-42,0],[-65,1],[-44,1],[-66,1],[-52,0],[-90,1],[-30,1],[-83,1],[-57,0],[-133,2],[-1,-41],[-2,-95],[0,-34],[-1,-24],[0,-23],[-1,-28],[-1,-47],[-1,-50],[-2,-120],[-1,-36],[0,-6],[-1,-66],[-3,-132],[-1,-45],[0,-30],[-2,-91],[-1,-30],[-1,-61],[-4,-182],[-1,-60],[-2,-80],[0,-31],[-1,-31],[-1,-50],[0,-21],[-1,-33],[0,-6],[0,-18],[-1,-64],[-1,-44],[-3,-76],[0,-27],[-1,-22],[-2,-24],[-1,-35],[-1,-25],[-2,-70],[-2,-44]],[[64120,60310],[-28,-1],[-7,0],[-63,-1],[-59,0],[-136,0],[-45,0],[-35,-1],[-106,0],[-35,0],[-92,0],[-273,-1],[-91,-1],[-55,0],[-32,0],[-58,0],[-107,-1],[-36,0],[-36,-1],[-29,0],[-31,0],[-31,0],[-36,0],[-29,0],[-4,0],[-47,0],[-29,0],[-36,0],[-52,0],[-28,-1],[-32,0],[-32,0],[-63,0],[-33,0],[-55,0],[-41,0],[-51,0],[-73,-1],[-42,0],[-28,3],[-35,3],[-1,0],[-29,0],[-64,-1],[-128,-1],[-43,0],[-33,-1],[-99,-2],[-33,0],[-30,-1],[-93,-1],[-30,0],[-57,0],[-33,-1],[-41,0],[-57,0],[-46,0],[-79,0],[-99,-1],[-208,0],[-70,0],[-44,0],[-55,0],[-131,0],[-43,0],[-83,0],[-42,-1],[-50,0],[-30,-1],[-37,0],[-31,0],[-54,-1],[-53,-1],[-64,0],[-37,-1],[-67,-1],[-194,-2],[-68,-1],[-69,-1],[-120,-1],[-98,-1],[-73,0],[-90,-1],[-269,-2],[-89,-1],[-5,0],[-28,0],[-47,0],[-49,-1],[-33,0],[-102,-1],[-34,0],[-47,0],[-54,0],[-60,0],[-124,3],[-41,2],[-93,3],[-245,9],[-32,-1],[-57,0],[-36,-1],[-35,0],[-55,0],[-57,-1],[-136,-1],[-45,-1],[-94,-1],[-37,0],[-40,0],[-51,-1],[-56,0],[-56,0],[-133,-2],[-44,0],[-49,-1],[-148,-2],[-52,-1],[-49,0],[-33,0],[-63,1],[-114,0],[-35,0],[-37,0],[-182,-1],[-57,0],[-37,0],[-38,-1],[-37,0],[-31,0],[-38,0],[-31,0],[-34,-1],[-32,0],[-29,0],[-11,0],[-37,-1],[-35,0],[-60,0],[-126,-1],[-45,0],[-40,-1],[-30,0],[-15,0],[-32,0],[-54,0]],[[55288,60279],[50,49],[15,44],[23,34],[5,6],[4,3],[10,5],[1,5],[2,15],[95,63],[87,44],[113,17],[33,-2],[38,-3],[44,6],[114,27],[60,21],[5,1],[25,9],[12,5],[57,28],[9,4],[2,2],[47,40],[5,7],[6,8],[11,70],[-12,30],[-48,43],[-52,47],[-71,54],[-64,28],[-52,18],[-40,14],[-211,108],[-28,9],[-70,109],[-15,23],[19,94],[6,30],[-1,22],[-19,38],[-18,24],[-36,50],[-53,74],[-36,27],[-21,16],[-8,6],[-50,27],[-35,8],[-67,17],[-12,3],[-5,0],[-124,13],[-44,16],[-50,37],[0,10],[0,63],[0,6],[3,3],[138,183],[15,15],[18,33],[72,108],[17,23],[31,37],[19,18],[1,2],[1,0],[60,36],[49,17],[43,16],[16,2],[37,-2],[72,-2],[53,-12],[1,0],[40,-10],[45,-13],[26,-20],[23,-17],[51,-25],[72,-25],[75,-5],[57,10],[27,9],[79,42],[1,5],[31,38],[5,38],[7,59],[2,17],[-7,25],[-1,2],[-56,43],[-77,102],[-9,24],[-5,153],[1,5],[14,89],[21,46],[32,42],[18,23],[14,17],[19,15],[52,60],[44,63],[40,31],[46,26],[57,13],[53,2],[2,0],[11,0],[2,0],[31,2],[37,-2],[38,-5],[26,-18],[17,-6],[15,-6],[82,-19],[88,-5],[35,3],[57,12],[65,36],[58,46],[54,56],[3,3],[13,24],[3,4],[37,64],[14,12],[13,19],[21,31],[30,56],[2,12],[3,19],[-5,40],[0,3],[-2,2],[-35,61],[-20,24],[-5,6],[-4,4],[-112,90],[-62,62],[-2,4],[-35,69],[-1,3],[-5,21],[0,3],[14,57],[15,17],[37,19],[21,5],[6,1],[1,0],[31,-2],[1,0],[1,0],[61,-19],[3,-1],[15,-9],[34,-18],[9,-5],[14,-11],[54,-41],[58,-35],[68,-28],[130,-32],[95,-19],[88,-6],[4,0],[47,3],[99,12],[8,1],[183,23],[31,6],[50,24],[23,20],[7,7],[65,35],[18,9],[180,86],[6,13],[1,0],[18,12],[15,7],[68,32],[1,0],[42,12],[85,17],[166,41],[9,-16],[47,30],[13,7],[59,38],[9,5],[51,32],[53,33],[24,15],[21,14],[5,4],[-5,18],[-21,42],[-5,10],[-16,30],[-35,47],[-17,22],[3,16],[1,10],[-39,68],[-11,12],[-25,30],[-82,68],[-1,2],[-2,6],[-8,7],[-14,13],[-13,24],[4,27],[5,28],[23,46],[2,5],[5,7],[12,15],[19,15],[25,48],[-2,14],[-7,55],[0,5],[-11,14],[-28,36],[-66,65],[-1,65],[5,22],[8,37],[1,4],[3,3],[50,49],[3,2],[15,8],[23,11],[13,7],[8,2],[54,15],[65,6],[72,3],[125,-2],[61,-1],[65,6],[13,2],[5,2],[14,7],[14,-1],[2,0],[53,13],[51,23],[47,52],[-9,38],[-2,8],[-2,7],[-6,9],[-10,13],[-25,33],[-38,34],[-29,26],[-61,67],[-8,12],[-6,10],[-15,14],[-22,19],[-26,21],[-32,12],[-49,35],[-69,46],[-17,25],[0,26],[-23,17],[-39,21],[-87,40],[-8,0],[-141,51],[-134,35],[-51,21],[-39,15],[-10,4],[-23,12],[-18,15],[-9,5],[-25,18],[-18,17],[-10,19],[-7,25],[9,36]],[[39258,63280],[-43,1],[-99,-1],[-74,-1],[-88,0],[-643,-444],[-83,-58],[-40,-27],[-242,0],[-63,0],[-181,0],[-2,63],[-1,34],[-1,37],[-2,59],[0,3],[-3,76],[-1,27],[-87,3],[-80,1],[-61,0],[-222,2],[-153,2],[-1,-78],[-47,0],[-72,0],[-119,0],[-97,-55],[-29,-17],[-100,-59],[-58,-32],[-144,-81],[-23,-13],[-30,-18],[-28,-15],[-92,-53],[-106,-60],[-26,-14],[-148,-85],[-94,-53],[-108,-61],[-26,-15],[-86,-49],[-1,0],[-80,-45],[-38,-24],[-1,-152],[0,-1],[1,-26],[0,-6],[1,-32],[1,-4],[1,-51],[0,-35],[-2,-111],[0,-39],[-1,-92],[-5,-83],[6,-183],[0,-25],[0,-75],[0,-64],[0,-5],[0,-42],[0,-63],[-3,-159],[0,-1],[-2,-125],[-96,0],[-5,0],[-94,0],[-265,5],[-76,1],[-72,1],[-154,4],[-59,1],[-30,1],[-186,4],[-61,1],[-77,2],[-41,2],[-198,3],[-119,3],[-358,11],[-10,0],[-143,4],[-116,3],[-62,2],[-83,2],[-75,-76],[-46,-46],[-42,-43],[-79,-71],[-1,-1],[-100,-99],[-92,-91],[-40,-40],[-38,-38],[-71,-70],[-61,-60],[-181,-180],[-13,-103],[-4,-36],[-3,-22],[-16,-135],[-29,-239],[-4,-29],[-5,-49],[-15,-121],[-6,-46],[-35,-288],[-45,-374],[0,-1],[-6,-44],[-7,-194],[-6,-149],[-97,-2],[-178,-5],[-94,-2],[-211,-6],[-104,-3],[-212,-6],[-166,-5],[-212,-6],[-51,-1],[-131,-3],[-119,-2],[-125,-2],[-220,-3],[-182,-2],[-179,-2],[-138,-2],[-286,-4],[-179,-2]],[[29323,58203],[-105,1],[-334,2],[-54,1],[-156,1],[-54,1],[-176,1],[-120,1],[-3,0],[-48,1],[-117,1],[-347,3],[-303,2],[-41,0],[-320,4],[-609,-1],[-106,-1],[-63,0],[-778,2],[-33,1],[-35,0],[-565,3],[-92,1],[-232,1],[-95,1],[-89,0],[-53,0],[-54,0],[-30,0],[-32,0],[-35,0],[-66,2],[-38,0],[-35,0],[-42,0],[-148,-2],[-6,0],[-24,0],[-33,0],[-40,0],[-82,1],[-71,1],[-8,0],[-64,1],[-196,8],[-30,1],[-65,0],[-98,2],[-555,13],[-33,0],[-28,0],[-245,4],[-377,6],[-326,5],[-31,-1],[-47,2],[-224,2],[-200,0],[-3,1]],[[21129,58275],[-9,22],[2,33],[22,29],[18,23],[5,6],[3,25],[0,1],[13,13],[31,30],[46,45],[-109,0],[-979,-5],[-51,-5],[-1,0],[-32,0],[-84,2],[-112,-2],[-70,0],[-229,-1],[-206,0],[-53,0],[-2,0],[-207,2],[-36,0],[-31,0],[-41,1],[-632,-5],[-183,3],[-212,1],[-110,-1],[5,220],[3,140],[1,28],[2,102],[-1,76],[3,67],[4,126],[1,41],[0,23],[2,77],[0,46],[0,96],[0,42],[0,35],[0,60],[-2,26],[0,38],[1,24],[0,39],[2,192],[-1,99],[-210,2],[6,339],[3,139],[0,30],[1,42],[6,77],[2,23],[-2,39],[0,23],[4,70],[6,62],[0,49],[10,229],[3,67],[2,56]],[[17731,61336],[6,122],[2,48],[5,112],[7,225],[5,144],[1,30],[-1,68],[-2,141],[0,33],[-1,27],[0,36],[-4,224],[-2,108],[-7,181],[-5,125],[-6,152],[-4,93],[-4,117],[-10,25],[-1,78],[1,46],[4,58],[-5,258],[-6,151],[0,4],[-1,42],[3,76],[0,2],[11,179],[0,23],[0,26],[0,42],[-4,363],[0,71],[2,64],[-2,45],[-5,103],[-1,51],[-1,125],[-1,96],[2,115],[3,263],[0,36],[1,73],[1,117],[1,99],[0,49],[-7,231],[1,70],[4,362],[-3,99],[-4,223],[-3,148],[-6,93],[6,33],[-5,87],[-7,298],[-3,134],[-7,304],[-5,240],[-2,58],[-1,92],[-3,73],[-6,28],[-5,53],[-3,36],[-4,47],[-6,87],[-2,59],[1,66],[0,152]],[[55288,60279],[-102,-78],[-102,-60],[-15,-9],[-55,-28],[-141,-36],[-90,-43],[-71,-33],[-11,-44],[-4,-100],[19,-43],[2,-3],[31,-28],[9,-38],[1,-5],[6,-42],[78,-66],[-11,-70],[-40,-89],[-6,-5],[-13,-10],[-44,-37],[-46,-23],[-44,-8],[-30,-1],[-80,-29],[-60,-30],[-8,-48],[-1,-3],[-2,-14],[24,-117],[18,-44],[36,-39],[29,-30],[14,-27],[6,-9],[-16,-99],[-1,-118],[-1,-73],[9,-33],[5,-16],[-6,-35],[0,-1],[-2,-13],[-18,-38]],[[54555,58564],[-61,22],[-26,6],[-47,12],[-57,11],[-139,9],[-61,3],[-82,4],[-87,4],[-51,-16],[-57,-22],[-193,-72],[-137,-12],[-66,14],[-155,7],[-63,4],[-16,6],[-26,18],[-3,10],[-10,46],[-8,24],[-13,27],[-12,12],[-16,14],[-5,5],[-4,1],[-29,6],[-12,10],[-10,7],[-87,40],[-34,9],[-96,25],[-33,5],[-76,55],[-145,119],[0,5],[-29,12],[-34,12],[-94,25],[-79,20],[-76,32],[-29,12],[-10,8],[-31,26],[-4,3],[-30,47],[-17,30],[10,36],[-23,20],[-6,5],[-13,4],[-6,0],[-48,6],[-4,0],[-34,-1],[-55,-4],[-15,-4],[-25,-7],[-121,-16],[-26,1],[-11,0],[-26,0],[-6,5],[-11,10],[-6,5],[-43,47],[2,38],[3,58],[79,50],[21,8],[47,14],[27,4],[31,2],[41,12],[20,14],[1,16],[-15,21],[-26,36],[-111,2],[-105,-1],[-150,0],[-93,0],[-73,-1],[-81,-1],[-56,0],[-221,-2],[-72,0],[-105,-1],[-47,0],[-133,-1],[-29,-1],[-79,0],[-34,0],[-6,0],[-83,0],[-105,-1],[-141,-1],[-114,0],[-91,0],[-209,-1],[-8,0],[-212,0],[-29,0],[-330,-2],[-34,0],[-74,0],[-251,-2],[-44,0],[-162,1],[-65,0],[-5,0],[-191,-1],[-110,0],[-98,0],[-33,0],[-55,0],[-19,0],[-48,1],[-26,-1],[-16,0],[-108,0],[-84,0],[-85,-1],[-81,0],[-114,0],[-137,-1],[-145,-1],[-33,-1],[-106,-1],[-67,-1],[-91,-1],[-42,2],[-36,0],[-41,-1],[-41,0],[-29,-1],[-31,-1],[-54,0],[-30,0],[-28,0],[-34,-1],[-52,0],[-33,-1],[-39,0],[-34,0],[-39,0],[-33,-1],[-37,0],[-37,-1],[-38,0],[-38,-1],[-41,0],[-29,1],[-1,0],[-40,0],[-134,-3],[-1,35],[-64,2],[-124,4],[-97,3],[-67,2],[-144,4],[-114,4],[-306,9],[-157,5],[-189,2],[-34,0],[-102,-1],[-42,0],[-58,0],[-85,1],[2,-89],[9,-306],[2,-34],[0,-29]],[[44406,59173],[-147,-1],[-204,-1],[-84,0],[-49,0],[-2,151],[-52,0],[-3,0],[-86,-1],[-1,0],[-32,1],[-78,1],[-240,1],[-1,50],[-1,31],[-49,0],[-54,0],[-4,68],[-6,0],[-228,-3],[-42,-1],[-34,0],[-35,-1],[-41,0],[-2,43],[-6,114],[2,32],[4,84],[2,34],[-163,0],[-125,-1],[-75,0],[-75,0],[-54,0],[4,90],[5,104],[3,53],[4,84],[5,83],[-89,-1],[-35,0],[-161,-1],[-120,-1],[-109,-1],[0,36],[-1,75],[1,39],[1,195],[2,211],[-2,100],[0,41],[-5,284],[-2,137],[-1,86],[-1,41],[-124,2],[-10,58],[-43,15],[-196,1],[-163,2],[-99,0],[-61,1],[-87,0],[-65,2],[-108,0],[0,79],[-80,0],[-52,0],[-124,0],[-350,0],[-1,66],[0,37],[0,108],[0,62],[0,5],[0,51],[0,21],[0,46],[0,76],[-1,41],[0,3],[0,19],[38,0],[10,0],[73,0],[1,57],[1,71],[0,9],[0,27],[-1,16],[0,8],[0,9],[-2,131],[0,7],[-1,47],[-121,-1],[-2,155],[-1,23],[0,21],[0,26],[-1,42],[0,29],[-3,149],[-10,142],[-12,153],[-1,6],[-1,20]],[[17731,61336],[-60,-32],[-200,-91],[-9,-5],[-13,-8],[-73,-2],[-38,-6],[-2,0],[-11,-5],[-7,-9],[0,-7],[2,-5],[10,-8],[0,-12],[0,-9],[-1,-2],[-2,-2],[-82,-57],[-30,-7],[-1,0],[-1,-1],[-27,-2],[-16,6],[-43,15],[-22,8],[-28,32],[-2,10],[-17,0],[-76,-16],[-15,-29],[-2,-4],[-27,-15],[-43,-16],[-210,-41],[-16,3],[-24,14],[-4,3],[-1,-1],[-149,-77],[-33,-26],[2,-14],[-7,-9],[-49,-29],[-33,-9],[-111,-32],[-23,-4],[-12,2],[-1,0],[-17,5],[-6,3],[-1,8],[-11,5],[-25,-4],[-9,-3],[-37,-9],[-64,-8],[0,-1],[-33,-19],[-88,-9],[-3,0],[-9,-1],[0,-3],[1,-9],[-27,-46],[-12,-5],[-42,-9],[-1,0],[-8,-6],[-10,-49],[1,-5],[1,-5],[-7,-5],[-22,-5],[-28,1],[-22,3],[-6,2],[-3,5],[-1,1],[1,7],[8,9],[1,0],[4,9],[-3,9],[-11,5],[-13,3],[-82,-1],[-16,-2],[-65,-14],[-14,-8],[-25,-16],[-74,-14],[-88,-64],[-41,28],[-35,15],[-28,12],[-32,-15],[-17,-39],[-16,-28],[-5,-2],[-6,-2],[-24,-2],[-14,3],[-16,-5],[-24,-26],[-22,-24],[-32,9],[-34,11],[-39,-23],[-157,-92],[-6,-1],[-4,-7],[-6,-11],[-5,-10],[-115,4],[0,-14],[-16,-26],[-44,-27],[-10,-5],[-1,-7],[-33,-125],[-1,-2],[-99,-118],[-89,-33],[10,-14],[-12,-65],[-2,-2],[-1,-2],[-6,-4],[-5,-1],[-14,0],[-123,-5],[-16,11],[-133,-114],[-2,-24],[-5,-11],[17,-9],[3,-1],[1,-8],[-2,-3],[-16,-23],[-13,-4],[-24,-2],[-38,1],[-37,1],[-3,0],[-141,3],[-7,2],[-12,10],[4,21],[1,3],[-4,3],[-11,-2],[-162,-32],[-8,1],[-3,1],[-12,1],[-56,-25],[-11,-9],[-49,-43],[-14,-11],[-37,-11],[-29,-9],[-24,4],[-18,3],[-44,2],[-23,1],[-12,-3],[-57,-39],[-4,-3],[-23,-16],[-11,1],[-102,46],[-31,14],[-1,-3],[-22,-23],[-7,-6],[-43,-25],[-5,-2],[-37,-3],[-13,-1],[-22,-8],[-234,-76],[-32,0],[-15,5],[-12,5],[4,-7],[26,-38],[-102,14],[-7,1],[-6,-2],[-52,-18],[-32,-12],[-59,-21],[-50,-30],[-20,-12],[8,-44],[4,-8],[18,-11],[2,-1],[9,-6],[53,-15],[19,-5],[0,-13],[-4,-8],[-8,-9],[-11,-8],[-27,-16],[-14,-5],[-75,-18],[-12,-2],[0,1],[-6,3],[-1,3],[-1,34],[-6,8],[-67,54],[-4,2],[-83,25],[-9,1],[-8,-2],[-7,-6],[1,-31],[2,-38],[1,-26],[0,-1],[1,0],[2,-9],[12,-20],[30,-43],[14,-18],[3,-4],[1,-1],[5,-5],[72,-59],[10,5],[2,9],[3,2],[7,4],[13,1],[6,-2],[26,-32],[4,-9],[14,-41],[0,-19],[-5,-8],[-128,-27],[-44,5],[-79,10],[-87,-76],[-1,0],[-28,-63],[33,-26],[14,-11],[-6,-8],[-5,-2],[-13,2],[-42,27],[-1,0],[-5,4],[-42,39],[-6,6],[-126,26],[-6,-7],[-9,-5],[-14,0],[-1,0],[-24,5],[-78,35],[-11,8],[-2,7],[-1,14],[-3,4],[-45,53],[-17,10],[-55,35],[-87,60],[-3,6],[-10,57],[0,4],[-2,0],[-51,-8],[-81,-5],[-15,0],[-32,4],[-27,7],[-31,14],[-21,14],[-16,3],[-61,0],[-87,-69],[-1,-2],[1,-14],[6,-14],[0,-1],[1,-1],[1,-2],[9,-7],[15,-5],[25,-2],[8,1],[16,5],[31,15],[24,17],[6,4],[8,2],[15,0],[11,-7],[5,-12],[3,-59],[0,-21],[-5,-7],[-7,-6],[-14,-10],[-12,-6],[-34,-9],[-35,-6],[-85,-4],[-1,0],[-9,1],[-8,3],[-13,8],[-2,2],[-2,1],[-4,14],[-2,12],[-1,2],[0,26],[-4,5],[-16,4],[-16,1],[-9,-2],[-12,-6],[-12,-9],[-1,0],[-13,-23],[-6,-22],[-1,-25],[2,-7],[5,-5],[11,-7],[15,-4],[46,-2],[3,0],[26,-6],[23,-9],[9,-5],[7,-7],[2,-5],[0,-9],[-5,-9],[-4,-5],[-13,-9],[-1,0],[-77,-24],[-1,0],[-41,-7],[-1,0],[-14,1],[-15,3],[-1,0],[-2,0],[-6,3],[-16,7],[-3,2],[-63,38],[-23,8],[-11,2],[-21,-3],[-10,-2],[-9,-7],[-12,-11],[-1,-1],[-9,-12],[-6,-5],[-16,-16],[-1,0],[-1,0],[-11,-7],[-19,-5],[-3,-1],[-3,0],[-16,-3],[-28,-2],[-4,0],[-5,0],[-261,7],[-4,0],[-71,20],[-13,8],[-32,18],[-2,2],[-6,1],[-9,3],[-16,6],[-4,1],[-1,0],[-22,9],[-21,14],[-10,7],[-7,9],[0,2],[-1,1],[-34,23],[-1,0],[-25,7],[-21,3],[-1,0],[-42,-2],[-18,-1],[-28,-2],[-2,0],[-1,-1],[-170,-32],[-1,0],[-11,-5],[-7,-7],[0,-6],[1,-2],[1,-2],[19,-12],[0,-8],[-2,-2],[-73,-33],[-44,-6],[-23,-2],[-29,2],[0,-2],[0,-8],[-67,10],[-6,1],[-2,1],[-20,3],[-56,9],[0,68],[-1,1],[-3,6],[-6,2],[-78,8],[-19,1],[-7,-2],[-18,-6],[-9,-7],[-5,-10],[-3,-17],[2,-2],[1,-2],[3,-23],[1,-31],[-4,-6],[-6,-5],[-20,-1],[-1,0],[-8,4],[-9,9],[-18,30],[-1,1],[-6,6],[-6,5],[-11,4],[-11,1],[-9,-2],[-24,-6],[-31,-13],[-18,-10],[-22,-18],[-3,-5],[0,-12],[3,-6],[87,-88],[1,-1],[98,-63],[16,-14],[9,-13],[2,-6],[-1,-13],[-9,-10],[-15,-8],[-2,0],[-13,-4],[-31,-3],[-3,0],[-118,-55],[-2,0],[-151,-50],[-114,-15],[-22,0],[-100,-45],[-1,0],[-75,-65],[-2,-2],[-114,-163],[-1,0],[-46,-46],[-19,-11],[11,-59],[2,-2],[9,-87]],[[8406,58046],[-557,-7],[-58,0],[-78,-1],[-608,-7],[-331,-4],[-71,-1],[-478,-12],[-73,-2],[-4,0],[-304,-8],[-31,-1],[-352,-10],[-172,-4],[-154,-4],[-133,0],[-8,0],[-29,-1],[-43,-1],[-36,-1],[-33,-1],[-35,-1],[-91,-6],[-182,-6],[-35,0],[-213,-2],[-202,-6],[-69,-2],[-28,-2],[-99,-2],[-195,-5]],[[3704,57949],[17,142],[5,44],[10,60],[77,487],[12,70],[4,25],[49,307],[0,3],[10,62],[10,66],[69,432],[60,359],[22,131],[2,8],[27,162],[19,119],[53,315],[56,365],[11,69],[5,33],[47,265],[10,56],[2,11],[4,24],[13,71],[6,39],[23,139],[1,2],[8,50],[16,93],[0,1],[2,12],[3,23],[3,25],[15,116],[20,149],[12,87],[7,38],[27,132],[10,48],[31,149],[13,91],[5,33],[9,61],[23,161],[1,3],[4,25],[3,17],[10,62],[1,10],[5,27],[2,15],[7,39],[9,65],[5,24],[3,16],[6,37],[13,75],[4,28],[5,26],[5,34],[1,3],[40,242],[6,38],[10,56],[10,61],[17,104],[5,27],[4,26],[6,35],[15,92],[8,56],[17,104],[1,2],[4,26],[50,313],[8,49],[1,1],[29,185],[20,120],[45,274],[2,10],[22,133],[11,72],[1,6],[27,164],[25,167],[20,125],[7,39],[12,74],[10,67],[32,194],[7,46],[21,128],[10,65],[56,343],[34,212],[15,94],[10,58],[20,127],[27,168],[15,92],[4,26],[1,2],[12,74],[18,112],[7,44],[6,37],[24,147],[20,124],[13,83],[1,6],[12,73],[7,47],[1,2],[16,94],[25,166],[4,21],[6,31],[6,29],[31,186],[30,177]],[[88384,68200],[29,-114],[12,-45],[48,-192],[2,-6],[47,-189],[13,-53],[39,-151],[32,-133],[75,-259],[21,-79],[20,-76],[14,-60],[9,-26],[38,-148],[107,-416],[55,-208],[24,-92],[57,-218],[3,-11],[77,-297],[30,-122],[25,-100],[29,-112],[59,-230],[69,-273],[36,-134],[42,-169],[35,-135],[63,-248],[20,-77],[39,-156],[59,-228],[25,-96],[6,-35],[35,-131],[4,-22],[13,-63],[11,-32],[28,-98],[11,-40],[32,-130],[27,-113],[40,-153],[5,-17],[2,-10],[31,-120],[22,-87],[30,-121],[46,-194],[18,-64],[43,-160],[62,-233],[43,-162],[14,-54],[9,-38],[14,-50],[49,-198],[47,-188],[23,-93],[59,-230],[8,-30],[5,-20],[5,-19],[15,-56]],[[90394,60386],[-56,0],[-25,0],[-20,0],[-159,0],[-77,0],[-67,0],[-86,1],[-83,0],[-69,0],[-34,0],[-179,0],[-237,1],[-248,0],[-147,0],[-133,0],[-213,1],[-243,0],[-2,0],[-107,0],[-68,1],[-442,1],[-36,0],[-152,0],[-232,1],[-285,1],[-31,0],[-56,1],[-48,0],[-204,-1],[-240,4],[-154,0],[-2,0],[-258,-1],[-132,0],[-105,0],[-60,0],[-60,1],[-252,2],[-200,2],[-139,1],[-497,3],[-144,0],[-247,1],[-310,0],[-54,0],[-275,-2],[-199,-1],[-258,-2],[-138,1],[-41,0],[-8,0],[-174,-4],[-6,0],[-323,0],[-146,-5],[-149,-3],[-228,-3],[-1,0],[-86,-1],[-517,-6],[-12,0],[-32,0],[-37,-1],[-3,0],[-130,-1],[-56,-1],[-142,-1],[-139,-2],[-3,0],[-367,-4]],[[80331,60370],[-475,-5],[-412,-5],[-50,0],[-156,-1],[-92,-1],[-208,-1],[-44,0],[-246,-1]],[[78648,60356],[-5,75],[-3,77],[-1,30],[-2,66],[-1,53],[1,84],[1,46],[1,116],[2,94],[1,121],[2,132],[1,189],[4,299],[2,118],[3,218],[1,85],[1,67],[1,80],[3,249],[119,-2],[3,54],[3,96],[3,29],[6,123],[-124,2],[3,86],[2,49],[2,54],[9,273],[1,25],[1,25],[2,25],[0,3],[5,93],[15,269],[-1,43],[8,117],[3,57],[6,216],[1,47],[2,72],[1,75],[3,129],[166,-2],[86,-2],[2,93],[4,138],[-121,-1],[1,75],[116,-1],[6,71],[-135,4],[-46,1],[-64,1],[9,116],[6,78],[5,102],[12,165],[2,30],[8,124],[7,101],[1,10],[10,157],[21,178],[13,146],[9,92],[2,44],[4,102],[1,24],[3,32],[2,24],[5,95],[10,164],[5,91],[3,82],[5,98],[8,150],[2,98],[2,145],[4,221],[0,130],[1,161],[0,1],[1,310],[10,166],[9,142]],[[78648,60356],[-142,0],[-129,-1],[-217,-1],[-468,-6],[-320,-4],[-1,0],[-237,-4],[-63,-1],[-122,-1],[-206,-2],[-47,-1],[-58,-1],[-182,-1],[-207,-3],[-222,-2],[-69,3],[-105,-4],[-225,-6],[-139,-4],[-170,-2],[-277,-4],[-61,0],[-245,-2],[-215,-2],[-256,1],[-186,0],[-194,1],[-373,1],[-74,0],[-27,0],[-30,0],[-19,0],[-298,0],[-478,8],[-115,0],[-361,2],[-78,1],[-75,0],[-150,1],[-43,0],[-185,0],[-264,2],[-102,0],[-5,0],[-110,0],[-1,0],[-48,0],[-229,0],[-274,3],[-294,1],[-75,0],[-60,0],[-268,0],[-11,0],[-149,-1],[2,-158],[2,-108],[0,-42],[-218,1],[-430,3],[-60,0],[-201,-9],[-56,0]],[[68728,60014],[-3,191],[0,33],[0,13],[-1,60],[-45,3],[-435,0],[-288,0],[-223,1],[-349,0],[-74,0],[-278,0],[-21,0],[-255,0],[-178,0],[-182,0],[-189,0],[-121,0],[-62,0],[-226,0],[-16,0],[-22,0],[-167,0],[-49,0],[-45,-2],[-221,-1],[-96,0],[-106,0],[-138,-1],[-46,0],[-71,0],[-100,0],[-64,0],[-207,-1],[-56,0],[-274,0]],[[44406,59173],[120,0],[1,-92],[1,-79],[1,-52],[2,-126],[1,-71],[1,-43],[0,-6],[0,-61],[1,-88],[0,-28],[1,-92],[1,-42],[6,-205],[-4,-53],[0,-111],[0,-144],[1,-83],[1,-258],[1,-351],[-1,-73],[1,-53],[0,-98],[1,-197],[0,-91],[0,-1],[1,-314],[0,-22],[1,-230],[0,-22],[1,-188],[-1,-35],[0,-79],[-1,-50],[3,-207],[2,-110],[1,-49],[0,-53],[-2,-95],[-2,-53],[-1,-67],[0,-85],[0,-56],[0,-48],[2,-95],[-2,-99],[-120,3],[-1,0],[-95,4],[-205,6],[-373,12],[-158,2],[-172,3],[-59,0],[-300,0],[-37,0],[-101,0],[-234,0],[-101,1],[-100,-2],[-38,2],[-35,1],[-35,-1],[-35,0],[-18,0],[-29,0],[-51,-1],[-32,0],[-35,-1],[-183,-1],[-2,0],[-52,-1],[-229,-3],[-96,-3],[-58,2],[-101,-1],[-28,0],[-68,1],[-288,1],[-261,-4],[-99,-1],[-158,-3]],[[40557,54734],[-361,-3],[-34,-1],[-62,-1],[-182,-4],[-34,0],[-266,-1],[-202,-1],[-10,0],[-129,0],[-134,-2],[-88,-1],[-335,-3],[-61,-1],[-306,-3],[-179,-3],[-94,-2],[-99,-1],[-60,-1],[-72,-2],[-29,0],[-215,-4],[-52,0],[-243,0],[-104,0],[-136,0],[-151,-1],[-159,-1],[-208,5],[-258,6],[-40,-1],[-33,0],[-38,-1],[-100,-2],[-41,-1],[-203,-5],[-154,-2],[-39,0],[-43,-1],[-405,0],[-12,0],[-47,0],[-212,-1],[-74,0],[-289,-60],[-2,0],[-270,-6],[-174,-5],[-81,0],[-72,0],[-32,0],[-34,0],[-172,-1],[-113,0],[-519,-2],[-117,0],[-203,0],[-72,-1],[-343,0],[-171,0],[-2,556],[-1,156],[-3,113],[-3,84],[-79,0],[-50,0],[-327,-7],[-836,-2],[-256,-2],[-82,0],[-199,-1],[-11,0],[-263,0],[-36,0],[-156,0],[-268,0],[-274,-1]],[[29343,55516],[4,29],[4,88],[4,93],[0,1],[6,124],[0,1],[8,164],[4,86],[-4,86],[-7,158],[-3,71],[-4,95],[0,81],[-2,124],[0,106],[0,44],[2,166],[4,333],[1,174],[-2,56],[-8,176],[-1,63],[-1,37],[-4,95],[-2,59],[-21,109],[2,68]],[[21129,58275],[7,-10],[45,-91],[15,-14],[6,-5],[21,-14],[8,-6],[30,-21],[93,-31],[35,-27],[7,-4],[-2,-45],[-17,-57],[-11,-20],[-27,-24],[-28,-24],[-3,-2],[-63,-33],[-18,-3],[-32,-7],[-24,-4],[-16,-1],[-99,-3],[-4,0],[-4,0],[-55,3],[-103,16],[-58,3],[-13,-2],[-16,-8],[-12,-6],[-8,-5],[-15,-10],[-113,-117],[-11,-17],[-9,-12],[-7,-11],[-6,-15],[-11,-28],[-9,-5],[-19,-10],[-6,-3],[-5,1],[-30,3],[-15,2],[-4,3],[-94,78],[-88,5],[-22,-3],[-8,-1],[-14,2],[-57,5],[-27,-4],[-11,-1],[-18,-3],[-8,-5],[-6,-4],[-9,-5],[-1,-6],[-1,-8],[-1,-7],[7,-6],[22,-18],[2,-1],[21,-8],[15,-5],[9,-7],[14,-10],[11,-8],[10,-19],[-2,-16],[-4,-27],[-3,-20],[-15,-23],[-1,-2],[0,-1],[-1,-10],[-3,-20],[5,-16],[8,-23],[2,-4],[10,-9],[26,-21],[24,-21],[53,-18],[29,-7],[48,-11],[24,-9],[23,-19],[-1,-4],[0,-4],[-2,-11],[-18,-9],[-64,-31],[-13,-7],[-35,-11],[-20,-6],[-15,-5],[-34,-7],[-27,-6],[-9,1],[-41,-22],[-5,-3],[-4,-2],[-10,-10],[-3,-23],[8,-16],[15,-30],[27,-20],[4,-3],[33,-4],[13,2],[49,16],[56,24],[29,13],[16,3],[101,17],[56,10],[45,-5],[18,-6],[18,-7],[17,-6],[4,-3],[4,-2],[18,-14],[11,-17],[-2,-11],[0,-4],[-1,-8],[-11,-18],[-15,-14],[-96,-91],[-21,-19],[-13,-8],[-26,-15],[-26,-15],[-13,-8],[-4,-4],[-60,-61],[-36,-19],[-39,-8],[-119,-7],[-11,1],[-98,5],[-69,17],[-32,15],[-59,0],[-117,-54],[-82,-40],[-14,-15],[-12,-25],[-10,-65],[9,-19],[1,-3],[-4,-29],[-13,-7],[-19,-9],[-37,2],[-38,29],[-35,27],[-15,11],[-57,14],[-34,2],[-18,-10],[-14,-12],[-8,-107],[-1,-16],[38,-28],[32,-15],[45,-13],[6,-4],[42,-29],[2,-1],[14,-19],[0,-2],[-4,-27],[34,-31],[23,-16],[62,-45],[18,-13],[-16,-85],[-14,-8],[-35,-40],[-2,-16],[-4,-42],[-27,-13],[-29,-15],[-46,3],[-35,17],[-9,4],[-17,1],[-58,-26],[-80,-30],[-137,-38],[-60,-17],[-67,8],[-16,2],[-156,3],[-52,-10],[-30,-4],[-50,5],[-6,-3],[-196,-91],[-7,-9],[-41,-62],[-11,-3],[-7,-1],[-9,0],[-53,3],[-34,7],[-24,4],[-32,15],[-26,20],[-37,47],[-6,8],[-11,-2],[-71,-10],[-13,-2],[-9,-38],[3,-8],[11,-9],[4,-3],[4,-3],[13,-1],[28,-3],[73,-20],[64,-27],[42,-29],[11,-42],[-5,-39],[-4,-29],[-1,-11],[-6,-7],[-16,-9],[-11,-5],[-29,1],[-32,20],[-47,29],[-18,12],[-7,1],[-30,8],[-24,7],[-12,1],[-7,0],[-44,2],[-7,-3],[-22,-10],[-11,-6],[-1,-3],[-1,-7],[-2,-16],[3,-97],[6,-53],[5,-15],[12,-35],[7,-19],[5,-5],[14,-12],[2,-19],[2,-13],[-5,-34],[-25,-13],[-7,-3],[-3,-1],[-35,-3],[-79,6],[-34,3],[-39,9],[-6,1],[-3,0],[-57,2],[-20,0],[-12,-7],[-15,-7],[-7,-10],[-3,-5],[0,-3],[-3,-49],[-3,-79],[21,-33],[7,-5],[38,-32],[88,-4],[150,-16],[24,-19],[6,-4],[18,-22],[-1,-33],[-50,-12],[-56,-13],[-128,10],[-3,1],[-35,-6],[-10,-7],[-25,6],[-31,-51],[0,-1],[-25,-53],[3,-13],[10,-15],[3,-5],[1,-2],[31,-25],[23,-12],[97,-29],[61,-16],[39,-4],[44,-3],[51,-16],[30,-10],[47,-28],[19,-22],[3,-3],[-1,-17],[-3,-7],[-22,-39],[-5,-9],[-12,-83],[63,-45],[16,-11],[5,-4],[0,-15],[-1,-22],[-24,-36],[-34,-50],[-14,-39],[11,-16],[42,-31],[4,-2],[27,-16],[32,-9],[35,-26],[-4,-28],[-7,-5],[-30,-20],[-47,0],[-52,-13],[-36,-16],[-10,-10],[1,-14],[0,-15],[-2,-13],[-3,-23],[9,-7],[13,-10],[3,-16],[-5,-33],[-4,-30],[-46,-60],[-55,-32],[-28,-11],[-12,-5],[-6,0],[-53,1],[-82,-17],[-27,-13],[-28,-13],[-14,-8],[-26,-13],[-49,-45],[-43,-71],[-4,-21],[-5,-30],[-38,-15],[-49,-18],[-163,-55],[-57,-18],[-37,-19],[-20,-27],[-46,-29],[-41,-19],[-28,-7],[-15,-4],[-85,-1],[-17,3],[-197,25],[-29,-1],[-11,-1],[-17,-11],[-11,-61],[-24,-68],[-1,-2],[-4,-4],[-76,-75],[0,-20],[9,-7],[1,-1],[13,-9],[218,-76],[23,-8],[33,-2],[26,4],[71,25],[52,13],[58,8],[8,1],[16,2],[55,5],[244,3],[115,0],[33,0],[6,4],[26,15],[3,26],[-13,27],[-29,65],[6,41],[8,6],[16,13],[4,4],[35,8],[32,-1],[29,-2],[44,-2],[18,-10],[13,-8],[104,-37],[39,-20],[234,-171],[107,-71],[55,-29],[69,-54],[19,-14],[25,-30],[22,-54],[0,-6],[3,-31],[-6,-26],[-4,-15],[-34,-61],[-21,-36],[0,-10],[0,-22],[-18,-33],[0,-5],[-20,-12],[-8,-5],[-9,-5],[-71,4],[-20,6],[-24,7],[-147,8],[-34,-4],[-40,-6],[-7,-2],[-79,-22],[-60,-27],[-3,-1],[-15,-13],[-27,-24],[-6,-8],[-62,-88],[-9,-18],[-15,-28],[-12,-39],[-4,-12],[-5,-16],[-6,-40],[0,-2],[-2,-10],[2,-21],[11,-22],[12,-24],[19,-31],[1,-2],[3,-2],[89,-63],[79,-41],[46,-4],[29,-3],[147,0],[6,1],[41,4],[17,7],[69,73],[36,25],[4,2],[2,2],[59,31],[33,10],[58,17],[14,4],[43,5],[17,2],[13,3],[70,17],[54,-1],[16,-12],[8,-5],[3,-3],[32,-60],[3,-14],[3,-14],[6,-9],[36,-57],[-3,-20],[-2,-3],[-9,-11],[-74,-89],[-1,0],[-2,-9],[-4,-23],[-6,-28],[3,-11],[8,-29],[14,-48],[14,-25],[11,-8],[-1,-9],[-1,-4],[26,-38],[16,-25],[26,-27],[29,-28],[72,-52],[65,-47],[9,-6],[14,-48],[-3,-16],[-1,-7],[-11,-53],[-26,-40],[-27,-24],[-2,-1],[-23,-14],[-78,-44],[-4,-2],[-39,-40],[-12,-28],[0,-6],[-1,-21],[0,-7],[7,-18],[14,-41],[28,-46],[42,-61],[37,-36],[42,-26],[28,-10],[24,-8],[69,-17],[1,0],[218,-35],[28,-5],[23,-2],[72,-8],[100,-6],[69,9],[4,1],[9,2],[103,31],[28,9],[10,6],[109,64],[54,54],[20,10],[16,7],[14,7],[9,0],[37,-2],[24,-9],[60,-20],[39,-20],[28,-23],[1,0],[13,-11],[14,-20],[2,-3],[5,-7],[14,-51],[-5,-36],[-24,-40],[-37,-65],[-6,-10],[-65,-78],[-43,-47],[-24,-27],[-3,-3],[-44,-48],[-33,-22],[-8,0],[-35,1],[-16,0],[-14,5],[-86,29],[-47,8],[-2,0],[-16,5],[-29,8],[-65,27],[-22,9],[-4,3],[-11,9],[-21,3],[-4,1],[-9,4],[-46,20],[-97,31],[-37,7],[-2,1],[-47,0],[-18,0],[-194,-51],[-11,-3],[-54,-9],[-44,-7],[-46,-7],[-66,-10],[-72,-7],[-90,5],[-55,4],[-65,4],[-195,12],[-41,2],[-15,-8],[-13,-7],[-9,-4],[-18,-17],[-5,-5],[-30,-28],[-16,-28],[-3,-18],[7,-16],[10,-12],[15,-16],[33,-33],[54,-40],[1,-1],[14,-18],[13,-17],[3,-10],[1,-2],[5,-17],[2,-38],[2,-25],[23,-35],[5,-7],[7,-10],[39,-31],[67,-54],[52,-42],[51,-35],[15,-10],[33,-16],[49,-23],[110,-30],[162,-40],[4,0],[59,-1],[10,2],[12,2],[27,13],[8,4],[7,2],[137,38],[22,6],[23,3],[135,15],[35,8],[26,14],[6,3],[140,57],[26,0],[1,0],[35,6],[7,3],[6,4],[60,6],[38,5],[30,3],[23,-1],[25,-2],[52,-3],[15,-3],[37,-8],[9,-2],[0,-3],[0,-3],[10,-45],[9,-29],[123,-230],[21,-28],[18,-22],[72,-59],[20,-15],[65,-51],[-1,-9],[-2,-26],[-18,-10],[-4,-1],[-22,-3],[-56,1],[-2,0],[-43,-3],[-86,-19],[-62,-20],[-73,-27],[-13,-7],[-7,-3],[-49,-16],[-3,-1],[-14,-1],[-51,-27],[-13,-7],[-4,-2],[-23,-19],[0,-1],[-5,-21],[-26,-16],[-4,-5],[-16,-20],[-31,-46],[-23,-43],[-1,-8],[-3,-18],[-25,-28],[-17,-13],[-11,-9],[-59,-31],[-13,-3],[-26,-7],[-4,-1],[-7,0],[-47,1],[-1,0],[-5,1],[-15,5],[-39,34],[-6,5],[-6,31],[-6,27],[0,3],[7,55],[4,3],[10,7],[12,52],[-5,8],[-18,28],[-2,2],[-26,22],[-71,30],[-190,55],[-63,1],[-18,-7],[-30,-11],[-5,-3],[-1,0],[-2,-1],[-47,-25],[-19,-20],[-2,-12],[-2,-11],[6,-111],[19,-77],[3,-5],[11,-14],[6,-48],[-4,-26],[-3,-26],[-5,-31],[-18,-44],[-36,-45],[-10,-8],[-3,-1],[-10,-8],[-18,-7],[-33,2],[-19,14],[-18,24],[0,4],[-1,17],[-38,29],[-24,9],[-9,0],[-56,3],[-10,1],[-5,-3],[-25,-15],[-7,-4],[-6,-9],[-26,-37],[-20,-30],[-10,-36],[10,-21],[23,-32],[19,-26],[42,-218],[-4,-17],[-8,-42],[-3,-13],[-45,-85],[-29,-32],[-61,-44],[-143,-75],[-24,-13],[-10,-9],[-10,-9],[-49,-34],[-6,-5],[-25,-25]],[[18427,48219],[-19,-20],[-16,-20],[-5,-12],[-7,-13],[-3,-24],[-20,-2],[-33,-4],[-3,-1],[-5,0],[-5,-2],[-5,-1],[-4,-1],[-4,-2],[-5,-2],[-4,-2],[-3,-2],[-2,-1],[-37,-26],[-32,11],[-10,3],[-16,5],[-48,19],[-19,14],[-6,16],[4,51],[2,22],[-4,16],[-10,35],[3,25],[6,40],[12,31],[7,15],[14,13],[36,16],[4,0],[25,-1],[91,47],[9,8],[2,18],[-3,3],[-34,28],[-102,87],[-4,1],[-20,5],[-20,16],[-3,1],[-20,7],[-21,3],[-25,4],[-64,10],[-17,3],[-53,-4],[-74,-5],[-73,4],[-31,1],[-20,4],[-50,11],[-23,14],[-70,9],[-42,2],[-12,-6],[-19,-10],[-7,-21],[-49,-50],[-45,-34],[-7,-5],[-49,-50],[-5,-8],[-47,-68],[-16,-16],[-8,-9],[4,-12],[0,-27]],[[17288,48376],[-183,2],[-19,0],[-29,7],[-6,3],[-29,11],[-5,1],[-5,5],[-102,75],[-140,104],[-23,20],[-15,16],[-17,17],[-8,9],[-20,38],[2,44],[14,28],[18,37],[2,4],[20,49],[5,26],[7,31],[-16,35],[-17,12],[-2,2],[-10,22],[12,142],[2,20],[-30,57],[-29,35],[-21,16],[-25,18],[-8,18],[-5,9],[-13,10],[-10,7],[-22,30],[-13,17],[-96,66],[-12,5],[-32,15],[-46,34],[-6,5],[-24,18],[-46,34],[-14,7],[-45,22],[-155,57],[-12,5],[-3,2],[-24,18],[-7,21],[-2,5],[0,30],[0,53],[4,17],[19,26],[27,28],[55,28],[50,7],[35,4],[55,9],[49,11],[39,18],[38,31],[23,24],[17,20],[21,15],[44,10],[44,1],[43,-1],[99,-3],[121,-9],[109,-11],[91,-25],[28,-10],[8,-30],[-15,-30],[-36,-58],[-17,-63],[23,-56],[101,-101],[67,-27],[37,5],[29,6],[28,24],[14,25],[12,29],[19,42],[41,54],[43,21],[89,12],[44,5],[35,13],[44,30],[30,32],[6,40],[-22,32],[-35,40],[-28,22],[-41,17],[-62,9],[-63,13],[-50,17],[-37,22],[-40,44],[-30,48],[-34,31],[-38,18],[-47,9],[-56,2],[-86,-3],[-80,-1],[-72,4],[-67,6],[-88,7],[-38,3],[-59,-3],[-34,-7],[-40,-15],[-42,-21],[-38,-16],[-37,-15],[-44,-15],[-45,-10],[-60,-7],[-55,-5],[-64,-7],[-73,-12],[-75,-11],[-50,-7],[-53,-6],[-49,62],[-3,4],[-42,61],[-126,96],[-184,96],[-81,25],[-119,17],[-46,3],[-72,-4],[-41,-10],[-15,-3],[-40,-16],[-104,-55],[-58,-21],[-26,-4],[-58,0],[-34,0],[-94,2],[-6,1],[-17,-7],[-23,-10],[-154,-56],[-90,-33],[-82,-29],[-41,-15],[-45,-12],[-34,-10],[-38,-14],[-68,-27],[-72,-38],[-23,-12],[-100,-58],[-20,-8],[-14,-5],[-19,-8],[-40,-11],[-71,-11],[-57,-8],[-15,-6],[-51,-17],[-22,-2],[-17,-3],[-142,-28],[-69,-14],[-39,-9],[-23,-10],[-4,-2],[-20,-3],[-47,-9],[-21,-7],[-25,-9],[-251,-57],[-99,-16],[-58,3],[-5,0],[-173,-6],[-96,-3],[-131,-7],[-21,1],[-38,2],[-193,-29],[-33,-7],[-53,-12],[-77,-19],[-10,-3],[-4,-1],[-146,-49],[-52,-13],[-67,-1],[-41,10],[-38,25],[-29,39],[-22,56],[-6,16],[-13,22],[-11,19],[-10,13],[-82,81],[-153,113],[-9,7],[-18,13],[-77,43],[-20,12],[-35,25],[-26,18],[-64,46],[-7,11],[-42,65],[-1,1],[-1,4],[-8,72],[-1,9],[3,13],[15,59],[0,10],[2,40],[11,13],[4,5],[12,59],[2,8],[6,12],[13,20],[2,4],[19,17],[16,9],[25,16],[27,9],[26,6],[9,2],[28,4],[10,1],[26,3],[149,-16],[8,-2],[52,-14],[49,-1],[14,-1],[13,0],[16,4],[17,5],[19,4],[6,3],[52,24],[18,9],[4,3],[15,12],[19,17],[3,5],[23,38],[6,10],[8,77],[2,25],[7,18],[32,79],[5,11],[7,53],[1,10],[-4,31],[-4,9],[-8,15],[-8,17],[-84,85],[-34,34],[-14,22],[-10,21],[12,60],[3,3],[10,13],[18,22],[107,59],[51,28],[55,30],[62,24],[22,9],[27,14],[66,35],[11,6],[43,34],[0,1],[6,12],[11,20],[-6,8],[-27,34],[-93,57],[-19,11],[-113,40],[-38,12],[-19,5],[-19,6],[-10,0],[-27,-1],[-1,0],[-7,-3],[-26,-14],[-8,-4],[-25,-30],[0,-2],[-1,-4],[-21,-23],[-18,-19],[-5,-5],[-6,-4],[-55,-31],[-3,-1],[-19,-6],[-42,-12],[-9,-2],[-10,-1],[-24,-3],[-50,-12],[-8,-2],[-20,-5],[-6,-3],[-87,-34],[-16,-9],[-176,-42],[-32,-4],[-27,-4],[-35,-5],[-34,-4],[-126,-1],[-193,5],[-9,2],[-15,5],[-45,12],[-44,16],[-118,27],[-121,37],[-85,29],[-74,32],[-14,14],[-38,39],[-57,58],[-43,44],[57,61],[3,3],[108,9],[12,-1],[91,-3],[104,-4],[6,0],[44,3],[116,27],[70,23],[79,30],[113,44],[78,59],[18,13],[74,171],[8,29],[-14,22],[-48,49],[-2,2],[-99,90],[-65,51],[-3,3],[-91,46],[-7,1],[-1,0],[-88,33],[-12,7],[-65,35],[-10,5],[-38,28],[-54,63],[-110,171],[-2,3],[-5,27],[11,84],[5,30],[-3,45],[-15,43],[-46,65],[-4,6],[-1,5],[-14,38],[-3,10],[-11,40],[4,29],[4,7],[15,25],[8,14],[6,5],[61,57],[22,25],[13,15],[15,9],[49,30],[11,4],[20,7],[51,5],[80,-1],[16,-6],[27,-4],[99,-15],[35,-5],[69,-17],[5,-2],[23,-9],[12,-4],[99,-60],[6,-3],[34,-10],[31,-8],[28,-8],[7,1],[49,8],[5,1],[45,21],[1,2],[25,39],[4,3],[20,19],[2,13],[0,5],[54,53],[19,14],[6,4],[32,17],[20,10],[49,22],[10,4],[1,2],[15,15],[3,3],[56,71],[1,4],[9,43],[-32,59],[-10,18],[-36,42],[-53,61],[-85,91],[-16,12],[-18,13],[-2,1],[-18,8],[-38,2],[-30,-4],[-74,-19],[-83,-28],[-173,-59],[-60,-26],[-11,-4],[-75,-25],[-171,-49],[-7,-1],[-2,-1],[-3,0],[-5,0],[-54,5],[-8,1],[-35,18],[-5,3],[-22,16],[-21,16],[-2,4],[-30,56],[-12,24],[-5,9],[-25,29],[-33,40],[-44,29],[-6,5],[-20,8],[-107,48],[-63,38],[-20,16],[-77,63],[-9,7],[-7,10],[-28,39],[-1,1],[-20,35],[-7,21],[-5,16],[-7,9],[-41,51],[-10,11],[-43,40],[-51,48],[-7,7],[-18,12],[-71,51],[-19,13],[-25,-1],[-4,0],[-23,7],[-22,6],[-50,3],[-56,-11],[-61,-27],[-39,-17],[-26,-12],[-29,-33],[-60,-101],[0,-1],[-22,-9],[-5,-2],[-51,-6],[-32,2],[-33,2],[-40,2],[-57,13],[-9,4],[-19,8],[-23,17],[-36,41],[-8,9],[-42,31],[-50,2],[-39,-12],[-93,-31],[-48,-10],[-47,-6],[-50,0],[-21,4],[-113,19],[-19,3],[-20,21],[-4,4],[-24,29],[-14,15],[-19,28],[-2,6],[-9,21],[-3,6],[4,19],[4,4],[9,10],[3,4],[24,15],[24,11],[7,2],[7,2],[15,5],[8,-1],[4,0],[55,-3],[11,-2],[1,0],[36,-6],[67,-10],[42,1],[32,1],[19,1],[28,6],[11,2],[5,3],[27,12],[65,49],[103,78],[33,25],[14,14],[25,26],[25,35],[11,16],[23,49],[6,12],[5,65],[22,10],[-7,12],[-38,37],[-11,11],[-7,6],[-10,7],[-5,4],[-11,5],[-37,14],[-106,-6],[-26,-5],[-5,-1],[-6,1],[-60,5],[-10,7],[-15,10],[-14,9],[-26,27],[-52,53],[-31,22],[-33,23],[-9,6],[-9,4],[-12,6],[-31,14],[-78,19],[-40,10],[-31,15],[-1,0],[-6,5],[-24,18],[-13,19],[-23,32],[-9,27],[-15,43],[0,17],[1,51],[-1,1],[-6,10],[5,10],[2,18],[13,123],[-6,56],[-56,113],[-8,11],[-45,70],[-39,89],[-9,29],[-8,29],[-24,41],[-3,2],[-6,5],[-26,21],[-48,18],[-73,17],[-94,11],[-18,3],[-22,8],[-12,4],[-31,12],[-51,29],[-11,8],[-33,25],[-5,4],[-60,89],[-7,16],[3,19],[4,5],[6,7],[18,9],[51,27],[34,17],[92,48],[8,4],[260,53],[35,-6],[22,-4],[63,-10],[209,-10],[56,5],[5,1],[17,5],[23,14],[18,10],[88,131],[1,43],[-29,34],[-61,19],[-132,12],[-47,11],[-41,16],[-29,21],[-106,111],[-56,105],[15,43],[94,57],[34,12],[53,-8],[66,-50],[39,-34],[42,-26],[95,-27],[108,-23],[76,-7],[45,6],[102,53],[16,12],[4,3],[41,32],[39,37],[16,28],[1,5],[6,22],[2,10],[-3,10],[-38,26],[-69,27],[-7,0],[-13,1],[-88,36],[-40,20],[-9,7],[-29,21],[-8,6],[-3,5],[-14,27],[-3,6],[-6,55],[11,20],[0,1],[5,68],[-6,16],[-1,4],[-11,31],[-8,5],[-31,23],[-16,17],[-21,22],[-2,5],[-16,34],[-1,4],[0,5],[21,59],[5,37],[3,26],[-12,40]],[[90394,60386],[98,-365],[10,-36],[14,-52],[7,-25],[40,-150],[8,-31],[32,-117],[27,-100],[9,-37],[3,-10],[44,-167],[16,-61],[6,-21],[11,-40],[13,-48],[0,-1],[9,-35],[5,-18],[11,-36],[7,-27],[3,-14],[7,-27],[2,-6],[14,-53],[11,-40],[15,-56],[11,-42],[37,-138],[14,-52],[6,-36],[17,-48],[28,-104],[16,-61],[1,-5],[49,-182],[19,-73],[20,-78],[2,-10],[9,-34],[25,-86],[0,-1],[20,-70],[6,-26],[8,-26],[12,-44],[11,-46],[10,-36],[5,-21],[17,-60],[27,-97],[12,-44],[12,-40],[18,-78],[10,-41],[17,-61],[7,-25],[17,-64],[3,-11],[4,-16],[16,-69],[15,-55],[44,-162],[4,-14],[4,-15],[7,-27],[33,-119],[1,-4],[26,-94],[16,-60],[14,-61],[10,-34],[8,-28],[13,-44],[28,-109],[14,-54],[9,-31],[2,-8],[6,-23],[30,-117],[4,-15],[12,-46],[2,-7],[7,-28],[22,-72],[12,-43],[14,-48],[7,-32],[10,-35],[7,-28],[2,-8],[5,-18],[9,-34],[7,-23],[6,-23],[2,-6],[26,-30],[-18,-23],[21,-74],[0,-1],[-1,0],[-5,-20],[11,-75],[74,-70],[55,-44],[33,-16],[9,-4],[43,-11],[145,-25],[58,-1],[30,15],[9,22],[64,32],[29,9],[46,5],[23,-1],[38,-14],[40,-29],[41,-48],[63,-52],[57,-58],[4,-54],[0,-20],[-9,-75],[-106,-35],[-131,-50],[-40,-19],[-37,-32],[-52,-58],[-19,-32],[-9,-45],[14,-24],[43,-39],[42,-91],[-9,-50],[-24,-37],[-1,-15],[29,-82],[34,-29],[29,-39],[89,-77],[163,-77],[21,-10],[71,-5],[51,5],[57,-7],[87,-68],[25,-32],[14,-17],[11,-10],[34,-29],[14,-21],[11,-37],[-16,-61],[20,-16],[21,-12],[100,-7],[18,-11],[30,-42],[44,-29],[76,-12],[86,-22],[50,-33],[35,-56],[7,-37],[-46,-31],[-57,-14],[-159,-49],[-96,-36],[-77,-13],[-63,-36],[-32,-26],[-15,-58],[5,-46],[64,-117],[94,-81],[8,-47]],[[93108,52847],[-39,0],[-30,0],[-269,-3],[-29,0],[-183,-1],[-112,-1],[-18,0],[-93,-1],[-64,-1],[-107,-1],[-412,-3],[-63,-1],[-28,0],[-118,-1],[-130,-1],[-44,-1],[-102,-1],[-162,-1],[-260,-2],[-41,-1],[-307,-2],[-542,-5],[-51,-1],[-35,1],[-462,2],[-116,0],[-113,-1],[-70,-1],[-63,0],[-33,-1],[-24,0],[-57,-1],[-3,-76],[-3,-80],[0,-49],[0,-95],[-89,0],[-151,0],[-146,0],[-133,0],[-154,0],[-65,0],[-92,0],[-129,0],[-64,0],[-57,0],[-123,-1],[-205,-1],[-297,-1],[-208,-1],[-77,-1],[-216,-2],[-80,0],[-148,-2],[-73,0],[-56,0],[-3,0],[-315,3],[-34,0],[-202,1],[-1,0],[-77,0],[-138,1],[-6,116],[0,1],[-2,33],[-125,-3],[-115,-3],[0,19],[0,133],[-201,3],[-1,0],[-110,1],[-72,1],[-1,0],[-92,1],[0,-306],[-105,-1],[-269,-1],[-233,1],[-48,1],[-77,0],[-66,0],[-58,1],[-78,0],[-56,1],[-192,1],[-255,1],[3,76],[2,36],[1,40],[-248,-2],[3,-148],[-180,-5],[-80,-2],[-227,-3],[-411,-4],[-8,0],[-230,-3],[-86,-1],[-156,-3],[-236,-4],[-241,-4],[-70,-1],[-78,-1],[-37,-1],[-120,-2],[0,75],[0,81],[-143,-2],[-99,-1],[-3,-156],[-134,-2],[-66,-1],[-158,-2],[-96,-2]],[[80332,52472],[-1,103],[0,93],[1,3],[0,46],[1,63],[1,50],[2,92],[-1,125],[0,2],[0,136],[0,6],[0,188],[0,96],[-1,222],[-3,263],[-1,126],[-2,163],[-2,177],[-7,226],[-1,41],[0,74],[0,66],[0,76],[0,108],[0,244],[1,98],[0,178],[3,317],[4,323],[2,220],[0,63],[3,280],[3,216],[0,70],[-4,393],[0,60],[-1,57],[0,31],[-3,246],[-1,176],[2,146],[5,37],[0,27],[0,42],[0,28],[3,46],[1,153],[0,5],[-1,276],[-2,163],[0,287],[-1,176],[0,304],[-1,461],[0,50],[0,1],[0,29],[0,43],[0,107]],[[80332,52472],[-396,-7],[-79,-1],[-2,-244],[0,-52],[-253,-5],[-55,-2],[-102,-2],[-239,-2],[-131,-2],[-200,-2],[-180,-2],[-168,-3],[-380,-5],[-192,-4],[-42,0],[5,-280],[-1,-25],[-42,-1],[-239,-5],[-157,-3],[-37,-1],[-3,-288],[-1,-120],[0,-41],[-1,-50],[-1,-108],[1,-50],[2,-153],[6,-397],[2,-95],[6,-206],[2,-78],[2,-119],[3,-95],[4,-168],[0,-1],[3,-147]],[[77467,49708],[-56,-1],[-168,-1],[-1,0],[-151,-2],[-95,-1],[1,-198],[1,-57],[0,-34],[-105,-1],[-45,-1],[-70,0],[-5,0],[-62,-1],[-261,-2],[-107,-1],[-110,-1],[-48,-1],[-107,-1],[-120,-1],[-11,0],[-60,0],[-4,0],[-91,-1],[-234,0],[-239,-3],[-278,-1],[-84,0],[-85,1],[-50,-1],[-62,-1],[-53,0],[-109,-2],[-2,-55],[1,-39],[3,-44],[7,-160],[3,-121],[2,-43],[0,-96],[0,-52],[2,-81],[2,-221],[3,-78],[4,-113],[4,-110],[3,-101],[3,-97],[2,-91],[4,-184],[2,-123],[-15,0],[-61,0],[-175,-2],[-231,-2],[-71,0],[-103,-1],[-178,-1],[-122,0],[-228,0],[-249,0],[-59,-1],[-126,-1],[-194,-3],[-93,-1],[-84,-3],[-181,-5],[-77,-1],[-203,-5],[-29,1]],[[72162,47562],[-63,43],[-5,4],[-31,39],[-16,51],[1,11],[-15,39],[-5,12],[-9,45],[18,130],[12,19],[11,17],[3,21],[-36,93],[-2,4],[-7,8],[15,50],[43,141],[41,132],[1,5],[13,15],[4,3],[7,38],[-9,9],[-12,11],[-3,32],[26,82],[19,107],[-3,37],[-22,67],[-78,208],[-11,9],[-11,96],[-1,7],[16,90],[3,22],[6,34],[3,16],[-8,10],[-23,31],[-21,73],[-10,40],[-28,183],[1,29],[-47,48],[-13,43],[-2,66],[9,49],[-5,22],[-17,25],[17,170],[8,49],[41,116],[35,82],[20,117],[24,43],[10,57],[-1,21],[-9,19],[10,63],[32,34],[14,36],[7,39],[-2,23],[-1,9],[-5,21],[-10,14],[-25,17],[-79,53],[-36,24],[-107,41],[-99,81],[5,4],[-7,14],[-77,87],[-45,29],[-27,18],[-15,38],[2,36],[-11,40],[-2,6],[-7,2],[-20,7],[-41,49],[-3,3],[-41,49],[2,10],[2,14],[1,7],[8,47],[-8,24],[-11,14],[-10,14],[12,70],[32,40],[11,63],[-14,14],[-21,54],[-1,18],[13,52],[79,39],[31,9],[25,4],[32,-2],[44,-1],[64,33],[25,14],[116,67],[42,25],[15,15],[24,43],[1,3],[30,105],[9,48],[6,36],[83,44],[9,52],[-14,40],[10,58],[88,73],[88,44],[8,41],[24,125],[-4,21],[-56,44],[-9,0],[-129,9],[-99,62],[-37,28],[11,56],[-86,0],[-44,0],[-99,1],[-24,0],[-39,0],[-39,0],[-64,0],[-34,0],[-34,0],[-107,1],[-60,0],[-95,0],[-66,0],[-37,0],[-184,1],[-43,0],[-34,0],[-164,0],[-259,1],[-155,1],[-78,0],[-2,33],[-2,25],[-3,43],[-3,46],[-10,152],[-31,0],[-104,0],[-140,1],[-53,0],[-109,0],[-43,1],[17,-298],[-488,2],[-68,0],[-47,0],[-64,0],[-108,1],[-202,-2]],[[68783,53024],[0,23],[-1,89],[2,155],[0,106],[-1,44],[0,43],[0,127],[0,27],[0,10],[0,39],[0,40],[0,29],[-1,24],[0,6],[39,6],[-18,24],[12,22],[1,2],[25,23],[-36,8],[11,24],[25,18],[0,2],[4,20],[40,12],[3,1],[27,16],[24,14],[45,11],[-38,9],[-36,-3],[-32,-10],[-24,18],[-6,3],[-22,7],[-6,3],[-7,-1],[-24,-4],[0,6],[-5,53],[-1,60],[-2,43],[-5,44],[-34,16],[-23,25],[-9,20],[-28,15],[-6,23],[-22,14],[5,25],[-34,2],[-18,22],[15,24],[16,24],[24,20],[24,1],[9,1],[33,-9],[38,11],[9,26],[-42,1],[-15,20],[-33,-9],[-10,0],[-31,0],[-36,11],[-3,28],[10,5],[22,12],[136,-3],[-1,135],[0,108],[4,158],[-6,275],[0,79],[-1,164],[-3,68],[-1,260],[-1,84],[0,3],[0,220],[-1,28],[0,58],[0,3],[-2,30],[-2,155],[-3,44],[-1,63],[-1,26],[-1,301],[-1,74],[-1,56],[0,35],[1,234],[1,55],[0,135],[0,34],[0,2],[0,23],[0,51],[0,12],[-1,111],[0,225],[0,32],[0,40],[0,39],[-1,124],[0,48],[0,32],[-2,138],[0,78],[-2,134],[0,46],[-3,189],[0,45],[-1,74],[-2,117],[-1,108],[-2,100],[0,28],[-2,159],[-1,47],[0,49],[-5,362],[-1,99],[-1,75]],[[68783,53024],[-75,0],[-105,0],[-153,0],[-34,0],[-30,0],[-143,0],[-102,0],[-273,1],[-67,0],[-142,0],[-125,-2],[-38,-1],[-32,0],[-59,0],[-80,-1],[-40,1],[-56,0],[-142,0],[-130,-1],[-170,-1],[-283,-1],[-180,-1],[-140,0],[-4,0],[-139,-1],[-352,-1],[-191,-2],[-113,-2],[-202,-2],[-180,-3],[-55,-1],[-22,0],[-27,-1],[-76,0],[-74,2],[-83,2],[-76,0],[-76,-1],[-286,-2],[-166,-1],[-30,-2],[-80,1],[-182,0],[-112,0],[-140,0],[-56,0],[-184,-8],[-57,-3],[-174,0],[-108,0],[-341,-1],[-12,0],[-62,1],[-23,0],[-41,0],[-416,1],[-2,0],[-35,0],[-410,-1],[-447,-2],[-8,0],[-73,1],[-343,2],[-222,-1],[-431,4],[4,65],[3,30],[0,28],[1,77],[1,71],[0,24],[-265,4],[-194,2],[-30,0],[-5,-30],[2,-269],[-62,-1],[-219,-2],[-220,-3],[-214,1],[-248,1],[-46,0],[-56,-1]],[[58525,52994],[-72,16],[-4,3],[-11,9],[-33,5],[-27,4],[-67,9],[-118,29],[-16,5],[-9,2],[-43,13],[-40,13],[-87,40],[-46,26],[-12,9],[-31,24],[-13,10],[1,5],[-7,12],[-51,76],[-33,26],[-51,22],[-4,3],[-3,1],[-62,45],[-35,12],[-14,11],[-65,50],[-25,28],[-47,74],[-14,71],[-4,24],[-19,38],[-42,32],[-63,22],[-23,2],[-11,0],[-5,4],[-2,2],[-77,21],[-79,5],[-42,-7],[-19,-3],[-31,2],[-3,1],[-16,1],[-35,15],[-13,10],[-9,6],[-16,13],[-3,7],[-3,9],[-21,22],[-49,37],[-14,4],[-2,0],[-27,15],[-28,15],[-85,47],[-44,18],[-27,10],[-25,15],[-40,24],[-18,13],[-14,11],[-1,1],[-9,6],[6,37],[28,15],[11,6],[45,26],[5,34],[-21,16],[-16,13],[-25,1],[-34,2],[-52,-7],[-73,-11],[-146,12],[-24,6],[-9,7],[-16,12],[-31,24],[-23,39],[-19,69],[3,18],[3,16],[-18,98],[-17,41],[-4,11],[-15,11],[-17,27],[22,112],[116,169],[27,35],[62,34],[25,11],[42,6],[23,3],[82,39],[4,47],[1,11],[-8,42],[-1,6],[-19,40],[-4,7],[-15,23],[-38,58],[-23,18],[-29,22],[-34,26],[-6,3],[-113,49],[-63,19],[-29,8],[-101,6],[-10,-3],[-3,-1],[-4,1],[-8,2],[-87,4],[-97,5],[-94,19],[-71,31],[-64,46],[-28,36],[-9,24],[3,47],[0,1],[-21,51],[-37,60],[-35,41],[-27,47],[-31,65],[-14,28],[-12,23],[-22,20],[-14,14],[-10,19],[-15,67],[-11,61],[0,26],[-7,11],[-32,36],[-68,52],[-22,17],[-10,0],[-53,1],[-117,37],[-108,9],[-49,37],[-9,19],[7,48],[1,7],[-19,23],[-2,2],[-7,8],[-3,2],[-93,54],[-30,26],[-72,80],[-33,58],[3,15],[1,5],[2,13],[32,41],[5,3],[14,11],[2,29],[2,15],[3,39],[-12,10],[-20,16],[-16,28],[-16,32],[-5,24],[8,100],[6,20],[18,54],[6,34],[-3,37],[-9,17],[-7,13],[-13,22],[-14,46],[2,13],[-1,6],[-11,48],[-4,16],[-1,7],[4,28],[6,37],[42,105],[29,48],[14,17],[2,3],[65,58],[15,69],[-1,100],[-91,116],[-49,37],[-128,136],[-9,9],[-24,38],[1,6],[20,107],[8,41],[41,147],[13,11],[16,13],[27,57]],[[58525,52994],[64,-32],[42,-27],[-54,-2],[-52,0],[-408,0],[-381,-1],[-64,0],[-166,0],[-51,0],[2,-107],[0,-98],[1,-165],[1,-108],[0,-53],[1,-119],[1,-185],[0,-66]],[[57461,52031],[-71,2],[-245,6],[-424,10],[-253,-3],[-273,-2],[-137,-2],[-134,-1],[-246,-3],[-59,-1],[-35,-1],[-5,0],[-133,0],[-70,-1],[-88,-1],[-250,-7],[-686,-3],[-238,0],[-603,-2],[-153,-1],[-170,-2],[-107,0],[-217,-2],[-97,-1],[-89,0],[-94,-1],[-70,-1],[-170,-1],[-178,-1],[-119,-1],[-17,0],[-108,-1],[-250,-2],[-120,3],[-33,-1],[-97,0],[-66,-1],[-374,-2],[-84,-1],[-143,0],[-215,-1],[-159,-1],[-160,0],[-191,-1],[-385,-3],[-2,0],[-114,-1],[-423,-2],[-43,-1],[5,-222],[4,-164],[3,-102],[3,-130],[5,-181],[1,-60],[1,-40],[-42,-18],[-124,-1],[-126,-1],[-33,0],[-30,-1],[-2,0],[-166,-1],[-2,0],[-495,-11],[-113,-1],[-443,-4],[-44,-1],[-1,0],[-243,-2],[-207,-2],[-479,-4],[-69,-1],[-59,-1],[-69,-1],[-61,0],[-69,-1],[-297,9],[-64,3],[-38,1],[-32,0],[-4,0],[-53,2],[-64,3],[-235,7],[-360,12],[-452,15],[-31,-2],[-126,7],[-358,11],[-36,2],[-130,4],[-40,2],[-107,1],[-33,2],[-275,9],[-65,-4]],[[43408,51130],[-151,2],[-24,0],[-143,-1],[-81,-2],[-600,-1],[-96,-4],[-288,-1],[-139,-1],[-48,-2],[-29,-1],[-1,0],[-381,-3],[-335,-4],[-114,0],[-112,0],[-267,-1],[2,138],[2,164],[0,1],[-2,110],[-3,188],[-1,87],[0,71],[0,144],[0,179],[-1,125],[0,144],[0,22]],[[40596,52484],[0,54],[-1,86],[1,126],[0,30],[0,45],[3,97],[-6,205],[-5,187],[0,25],[-4,280],[-2,98],[-4,191],[-6,211],[0,1],[-4,352],[-11,262]],[[29343,55516],[-1,-130],[-1,-115],[-1,-47],[-3,-166],[0,-42],[-2,-57],[-2,-89],[-1,-80],[1,-41],[3,-81],[1,-26],[1,-37],[-43,0],[-84,-1],[-167,0],[-31,-1],[-86,1],[-35,0],[-35,0],[-33,0],[-187,-1],[-100,0],[-31,-1],[-216,0],[-368,-1],[-4,-77],[-4,-68],[-2,-43],[-2,-71],[-1,-27],[1,-47],[1,-68],[1,-38],[3,-209],[1,-48],[3,-132],[1,-55],[0,-24],[-1,-82],[0,-32],[-1,-23],[-2,-180],[-1,-35],[0,-278],[0,-142],[6,-139],[-13,-91],[0,-2],[-32,-225],[0,-57],[-1,-305],[-1,-126],[1,-120],[1,-196],[0,-1],[-3,-444],[0,-198],[0,-1],[0,-60],[-113,0],[-1,0],[-225,-1],[-89,0],[-231,-1],[-69,2],[-63,0],[-168,-1],[-187,-1],[-284,-1],[-1,-46],[0,-290],[-1,-302],[-3,-126],[1,-262],[0,-115],[3,-107],[1,-62],[1,-24],[-3,-93],[1,-93],[0,-33],[0,-24],[0,-38],[0,-41],[-1,-4],[-1,-164],[1,-74],[1,-30],[1,-71],[2,-86],[5,-207],[1,-35],[3,-125],[0,-79],[0,-10],[-1,-38],[0,-41],[0,-58],[0,-43],[0,-29],[-1,-50],[-1,-117],[1,-62],[1,-55],[1,-82],[1,-57],[1,-71],[9,-173],[-1,-145],[0,-3],[-2,-56]],[[26462,47333],[-93,-1],[-456,-2],[-141,0],[-155,-1],[-78,0],[-237,-1],[-58,0],[-431,-2],[-123,0],[-114,0],[-82,0],[-473,-1],[-362,-8],[-557,-6],[-362,-4],[-147,-1],[-314,2],[-29,0],[-522,-3],[-309,0],[-139,2],[-4,0],[-259,0],[-73,2],[-179,1],[0,176],[0,27],[0,54],[-1,137],[0,2],[1,114],[1,91],[1,138],[2,141],[0,28],[-30,1],[-567,0],[-347,0],[-41,0],[-95,0],[-358,0],[-241,0],[-141,0],[-53,0],[-341,0],[-66,0],[-31,0],[-31,0]],[[17288,48376],[71,-9],[68,-12],[3,-1],[38,-6],[24,-11],[15,-7],[44,-18],[72,-57],[-3,-14],[-18,-86],[-3,-14],[-41,-48],[-27,-14],[-174,-49],[-17,-1],[-60,-10],[-19,4],[-10,2],[-89,3],[-15,0],[-104,11],[-78,12],[-94,16],[-57,14],[-57,13],[-60,16],[-39,21],[-87,5],[-42,7],[-107,11],[-89,5],[-190,10],[-19,2],[-23,3],[-3,1],[-8,5],[-27,2],[-120,8],[-28,2],[-34,-4],[-25,-7],[-63,-18],[-12,-3],[-22,-9],[-75,-31],[-46,-19],[-12,-7],[-48,-26],[-91,-51],[-6,-4],[-6,-3],[-9,-7],[-72,-63],[-14,-11],[0,-3],[-1,-5],[-88,-93],[-36,-26],[-48,-35],[-80,-56],[-39,-21],[-14,-8],[-276,-124],[-1,0],[-68,-39],[-54,-69],[-12,-16],[-58,-101],[-49,-84],[-32,-51],[-12,-9],[-37,-55],[-43,-33],[-22,-16],[-42,-32],[-302,-158],[-148,-68],[-82,-19],[-50,-7],[-31,-5],[-320,-9],[-47,-5],[-24,-6],[-19,-4],[-21,-5],[-86,-43],[-17,-11],[-22,-14],[-39,-25],[-55,-35],[-70,-52],[-72,-40],[-39,-11],[-43,-6],[-119,-41],[-122,-38],[-98,-42],[-226,-86],[-1,-1],[-5,-3],[-68,-44],[-12,-8],[-11,-13],[-77,-91],[-2,-1],[-14,-15],[-32,-51],[-26,-67],[-26,-70],[1,-21],[-23,-77],[-17,-97],[4,-5],[3,-5],[-16,-123],[-4,-5],[-6,-8],[-12,-85],[-14,-105],[0,-6],[-4,-91],[-9,-41],[-3,-16],[-10,-14],[0,-2],[-17,-30],[-13,-68],[1,-23],[25,-33],[19,-13],[28,-18],[10,-7],[48,-18],[41,-7],[220,-12],[12,-6],[92,-5],[25,4],[7,0],[64,-1],[104,-5],[49,-8],[18,-6],[2,0],[24,-10],[9,-6],[65,-48],[33,-25],[17,-19],[12,-14],[31,-24],[97,-75],[35,-28],[46,-23],[146,-74],[4,-3],[13,-12],[11,-10],[59,-52],[29,-26],[99,-45],[20,-3],[180,-62],[53,-14],[62,-3],[3,0],[34,-2],[90,16],[68,18],[23,6],[44,-2],[63,-18],[16,-5],[50,-31],[39,-52],[5,-21],[61,-109],[13,-9],[14,-11],[19,-9],[90,-20],[32,-7],[87,-5],[28,-8],[17,-5],[6,-2],[25,-12],[66,-47],[18,-13],[5,-5],[67,-68],[2,-2],[4,-7],[43,-77],[-1,-5],[29,-33],[42,-34],[13,-6],[42,-21],[243,-55],[2,1],[19,-8]],[[15133,43758],[-45,-1],[-173,-2],[-482,-6],[-161,-2],[-141,-2],[-421,-5],[-141,-1],[-38,-1],[-116,-1],[-39,-1],[-64,-1],[-113,-2],[-81,-1],[-65,0],[-77,0],[-231,0],[-77,-1],[-168,-1],[-473,-2],[-158,0],[-57,-1],[-76,0],[-185,-1],[-61,0],[-84,0],[-253,-1],[-85,-1],[-105,0],[-278,-2],[-92,0],[-80,-1],[-34,0],[-30,0],[-86,0],[-28,-1],[-85,0],[-255,-2],[-84,0],[-94,0],[-35,0],[-37,1],[-33,0],[-98,-1],[-29,0],[-42,0],[-126,-1],[-42,-1],[-67,0],[-201,-2],[-70,-1],[-31,0],[-98,-2],[-207,-6],[-28,0],[-40,4],[-1,0],[-43,0],[-133,-1],[-44,-1],[-104,-1],[-29,0],[-30,0],[-99,-1],[-33,-1],[-42,0],[-125,-2],[-42,0],[-45,-1],[-137,-1],[-49,-1],[-154,-2],[-156,-2],[-234,0],[-130,-1],[-77,0],[-91,0],[-215,-1],[-71,-1],[-91,1],[-232,1],[-41,0],[-91,0],[-36,0],[-180,0],[-54,1],[-40,1],[-120,1],[-40,0],[-48,1],[-189,3],[-63,0],[-200,-2],[-323,-3],[-262,1],[-195,0],[-100,1],[-81,2],[-170,2],[-56,1],[-69,1],[-206,3],[-72,1],[-30,0],[-102,0],[-36,0],[-49,0],[-59,0],[-64,0],[-134,2],[-45,0],[-39,0],[-84,0],[-31,0],[-67,0],[-43,1],[-69,1],[-36,1],[-32,-1],[-85,0],[-177,-3],[-44,2],[-52,1],[-84,4],[-60,1],[-125,-1],[-62,0],[-107,0],[-322,2],[-108,0]],[[1444,43718],[17,109],[0,1],[58,370],[21,132],[5,35],[34,218],[48,301],[4,32],[4,20],[22,143],[9,25],[28,102],[7,43],[9,50],[23,132],[22,123],[10,53],[14,79],[9,56],[18,112],[18,108],[1,3],[8,51],[23,143],[11,61],[27,170],[42,251],[1,10],[13,103],[17,155],[30,200],[4,26],[9,55],[22,141],[15,92],[9,44],[1,11],[10,61],[28,171],[26,176],[25,146],[35,212],[8,44],[8,47],[10,64],[16,95],[33,194],[5,28],[19,124],[19,120],[9,55],[19,126],[28,195],[17,93],[32,197],[0,1],[28,177],[9,56],[4,19],[0,1],[9,59],[9,59],[13,83],[2,10],[7,45],[25,180],[6,35],[5,23],[29,191],[8,53],[10,57],[33,203],[12,77],[6,39],[24,159],[24,149],[11,71],[6,41],[17,107],[38,245],[9,80],[33,238],[5,40],[66,344],[34,188],[14,81],[5,24],[13,73],[7,37],[6,28],[-5,24],[9,53],[33,222],[1,3],[38,244],[7,46],[41,269],[3,16],[27,182],[5,32],[43,278],[15,104],[35,225],[6,41],[46,301],[11,72],[54,349],[20,185],[44,271],[7,46],[36,225],[6,33],[24,160],[59,374],[12,73],[8,53],[68,416],[10,65],[7,44],[26,165],[12,69],[38,243],[0,1],[27,166]],[[40596,52484],[-35,-21],[-7,-23],[-29,-41],[-8,-29],[-15,-35],[4,-24],[-17,-24],[-10,-52],[-37,-42],[-44,-23],[-12,-26],[-11,-20],[-9,-26],[-29,-16],[-23,-27],[-10,-35],[1,-25],[-16,-17],[-4,-22],[-8,-23],[-9,-23],[-21,-43],[-10,-23],[-32,-57],[-19,-27],[-12,-23],[0,-23],[-13,-31],[-21,-39],[-14,-21],[-10,-23],[-10,-33],[-1,-22],[0,-29],[10,-26],[25,-27],[23,-29],[33,-13],[12,-29],[27,-26],[1,-1],[-10,-28],[-12,-34],[12,-37],[32,-24],[22,-18],[-43,-52],[-5,-9],[-57,-115],[-4,-12],[-17,-43],[-3,-7],[-12,-13],[-67,-68],[-13,-14],[-7,-6],[-122,-147],[-4,-5],[-24,-37],[-5,-8],[-58,-92],[-1,0],[-12,-20],[-9,-74],[-9,-82],[-6,-54],[-2,-10],[0,-1],[-1,-7],[-2,-18],[3,-89],[6,-49],[25,-135],[2,-4],[23,-18],[22,-5],[8,-2],[11,-6],[45,-37],[10,-11],[5,-14],[2,-20],[6,-28],[17,-47],[14,-16],[6,-5],[-6,-12],[-15,-33],[-28,-60],[-45,-49],[-2,-3],[-52,-13],[-17,-5],[-32,0],[-17,-1],[-10,-2],[-117,-51],[-48,-23],[0,-1],[-36,-16],[-11,-5],[-1,-5],[-18,-50],[0,-1],[-9,-11],[-18,-21],[-20,-15],[-2,-1],[-1,0],[-66,-24],[-1,0],[-33,-7],[-47,-21],[-14,-10],[-11,-7],[-9,-5],[-109,-51],[-31,-12],[-2,-1],[-50,-24],[-18,-12],[-10,-13],[-1,-1],[-10,-9],[-84,-36],[-15,-4],[-15,-1],[-21,2],[-11,1],[-28,-8],[-4,-1],[-11,-8],[-65,-41],[3,-24],[0,-1],[14,-31],[20,-35],[-7,-11],[-35,-54],[-9,-20],[-1,-11],[19,-33],[12,-14],[13,-8],[2,-1],[8,-5],[35,-9],[29,-11],[1,-1],[7,-5],[9,-43],[12,-2],[7,-53],[-12,-135],[-2,-14],[-84,-108],[-1,-1],[-1,-2],[-29,-42],[-1,-1],[-20,-18],[-2,-2],[-9,-4],[-6,0],[-45,13],[-9,4],[-7,3],[-18,-12],[-74,-50],[-32,-22],[-21,-15],[-41,-28],[-11,-69],[-15,-78],[0,-4],[-5,-4],[-58,-49],[-7,-5],[-7,-4],[-29,-6],[-15,-6],[-22,-12],[-16,-16],[-12,-19],[-3,-40],[3,-17],[3,-6],[34,-28],[6,-4],[-29,-3],[-37,-2],[-14,-4],[-11,-7],[-7,-9],[-53,-132],[-3,-3],[-26,-33],[-1,-1],[1,-1],[25,-31],[3,-4],[-101,-60],[-48,-25],[-8,-5],[-10,-6],[-8,-5],[-16,-14],[-3,-2],[0,-1],[-4,-7],[0,-22],[0,-1],[8,-34],[1,-10],[-3,-11],[-15,-17],[-5,-5],[-12,-14],[-38,-39],[-19,-12],[-20,-6],[-9,-3],[-5,-1],[-34,-1],[-18,-2],[-21,-8],[-31,6],[-29,9],[-30,-8],[-167,-17],[-92,-1],[-257,-2],[-182,-1],[-443,-1],[-115,-1],[-35,0],[-364,-2],[-717,-4],[-79,1],[-370,-2],[-381,-54],[-451,-3],[-109,-1],[-327,-4],[-64,0],[-114,-2],[-119,-1],[-186,-1],[-132,-1],[-72,0],[-69,-1],[-181,-2],[-92,-2],[-259,-3],[-146,-2],[-71,0],[-191,-4],[-57,1],[-7,0],[-111,-3],[-24,0],[-86,-1],[-58,-1],[-259,2],[-34,0],[-153,1],[-224,0],[-260,-2],[-1,0],[-81,-2],[-258,0],[-370,0],[-69,0],[-406,1],[-1,0],[-170,1],[-69,0],[1,-87],[3,-155],[2,-118],[0,-36],[1,-29],[2,-120],[0,-62],[3,-172],[0,-1],[2,-109],[0,-19],[1,-57],[1,-47],[4,-298],[2,-58],[1,-26],[0,-44],[-1,-108],[0,-8],[0,-38],[0,-84],[-1,-96],[0,-58],[-5,-140],[-3,-107],[-3,-85],[-2,-77],[5,-245],[1,-136],[1,-43],[-1,-131],[1,-55],[11,-347],[8,-293],[5,-157],[-390,-2],[-181,-2],[-67,0],[-322,-2],[-396,-3],[-5,0],[-68,-1]],[[27899,43696],[-97,0],[-387,-1],[-84,-1],[-70,-1],[-116,-2],[-155,1],[-259,1],[-263,-4],[-4,200],[-6,338],[-3,197],[-2,55],[-2,63],[-3,144],[-17,418],[-2,96],[36,209],[0,268],[-1,138],[0,299],[-1,155],[0,381],[0,19],[0,19],[0,43],[0,16],[0,136],[0,43],[-1,348],[0,59]],[[72162,47562],[72,-23],[123,-66],[5,-4],[15,-12],[17,-13],[16,-19],[16,-17],[26,-21],[128,-58],[13,-4],[58,-19],[25,-7],[94,-17],[12,-1],[53,-4],[9,0],[15,1],[15,2],[83,16],[39,5],[20,-1],[24,-10],[3,-2],[23,-18],[11,-9],[15,-32],[2,-26],[-10,-6],[-11,-6],[-8,-2],[-5,-2],[-1,0],[-3,-1],[-4,-2],[-2,0],[-7,0],[-12,0],[-30,1],[-47,14],[-53,16],[-50,3],[-17,-2],[-17,-3],[-8,-1],[-265,-47],[-26,-6],[-37,-18],[-96,-155],[-7,-12],[-2,-3],[0,-2],[-6,-33],[-3,-19],[-7,-80],[-73,-47],[-15,-14],[-1,-5],[-1,-5],[-2,-14],[7,-8],[66,-44],[-42,-21],[-101,-41],[-40,-8],[-73,-16],[-102,-6],[-12,1],[-31,4],[-15,1],[-24,12],[-61,31],[-36,10],[-13,1],[-60,4],[-2,0],[-81,-4],[-33,-1],[-25,2],[-45,5],[-11,0],[-69,-4],[-28,11],[-12,1],[-279,19],[-33,11],[-13,5],[-66,23],[-19,6],[-5,1],[-62,6],[-3,1],[-6,-2],[-68,-20],[-6,-2],[-12,-6],[-146,-74],[-26,-16],[-37,-23],[-18,-14],[-6,-5],[-20,-15],[-28,-14],[-32,-17],[-82,-15],[-47,-7],[-18,-2],[-41,-15],[-88,-32],[-60,-6],[-58,4],[-52,19],[-6,5],[-20,17],[-14,12],[-29,49],[2,26],[1,22],[-6,2],[-155,65],[-3,1],[-4,1],[-17,1],[-79,30],[-20,8],[-11,3],[-16,4],[-13,3],[-78,11],[-17,-5],[-27,-8],[-35,-18],[-11,-5],[-5,-8],[-1,-3],[-2,-34],[0,-2],[5,-5],[19,-18],[9,-8],[12,-4],[80,-21],[20,-9],[3,-2],[12,-10],[7,-5],[-1,-5],[-2,-13],[-2,-8],[-31,-22],[-46,-31],[-27,-19],[-46,-24],[-71,-21],[-25,3],[-22,2],[-6,1],[-12,10],[-129,118],[-9,8],[-6,14],[5,28],[0,1],[1,2],[18,60],[1,5],[-26,22],[-25,2],[-5,0],[-15,1],[-32,-13],[-16,-15],[-8,-7],[-6,-5],[-49,-71],[-2,-1],[-10,-16],[-11,-15],[4,-30],[5,-9],[0,-1],[17,-31],[39,-44],[25,-22],[52,-43],[7,-7],[8,-10],[16,-23],[-3,-12],[-9,-39],[-3,-11],[-31,-38],[-19,-14],[-74,-37],[-29,-10],[-42,-6],[-25,-3],[-33,-4],[-47,3],[-2,0],[-22,1],[-92,25],[-13,3],[-1,0],[-45,1],[-44,-19],[-14,-6],[-117,-95],[-79,-42],[-83,-23],[-4,-1],[-3,1],[-59,4],[-18,3]],[[68342,46039],[-46,16],[-51,16],[-25,11],[-22,5],[-13,3],[-7,1],[-6,2],[-9,0],[-91,6],[-52,-6],[-21,-2],[-62,-20],[-2,-1],[-122,-64],[-14,-7],[-34,-27],[-28,-43],[-4,-26],[12,-30],[7,-17],[14,-31],[-6,-37],[-3,-2],[-12,-10],[-37,-19],[-20,-10],[-37,2],[-33,2],[-32,1],[-68,23],[-20,7],[-12,2],[-29,5],[-3,1],[-1,0],[-24,2],[-192,12],[-16,1],[-34,0],[-11,8],[-14,4],[-127,29],[-81,7],[-85,7],[-24,7],[-6,3],[-22,12],[-6,3],[-1,1],[-25,18],[-90,66],[-49,36],[-49,55],[-4,4],[-19,9],[-16,1],[-15,1],[-11,1],[-22,-4],[-44,-15],[-47,-24],[-22,-11],[-3,-1],[-45,-12],[-9,-2],[-14,-1],[-62,-2],[-152,10],[-26,2],[-36,-3],[-17,-2],[-37,-3],[-48,-10],[-102,-35],[-20,-9],[-16,-7],[-41,5],[-27,18],[-1,5],[-3,9],[-4,13],[0,12],[1,43],[-7,35],[-6,6],[-3,4],[-16,17],[-1,1],[-25,6],[-22,5],[-3,-2],[-33,-18],[-15,-9],[-17,-23],[-15,-19],[-19,-10],[-21,-1],[-2,0],[-31,2],[-96,30],[-16,6],[-33,29],[6,18],[3,10],[44,27],[22,14],[83,94],[6,37],[-19,14],[-1,1],[-10,8],[-24,-9],[-51,-19],[-28,-10],[-51,-28],[-17,-5],[-73,-5],[-71,2],[-39,-8],[-156,-80],[-156,-32],[-39,-5],[-25,2],[-40,10],[-32,25],[-9,7],[-10,16],[-7,21],[-1,2],[-9,23],[4,26],[17,27],[6,9],[5,31],[-13,12],[-3,3],[-2,2],[-42,3],[-56,-13],[-33,3],[-40,15],[-63,49],[-55,25],[-40,8],[-67,1],[-211,22],[-26,-6],[-23,-12],[-63,-51],[-3,-3],[-37,-39],[-23,-12],[-19,-9],[-84,-29],[-64,-4],[-37,3],[-26,20],[-20,35],[-25,23],[-51,76],[-10,15],[96,23],[100,19],[22,9],[88,36],[30,12],[47,20],[7,3],[1,8],[0,8],[1,11],[-99,45],[-46,32],[-25,25],[-14,20],[-19,27],[-18,25],[-11,6],[-25,2],[-35,-6],[-49,-20],[-84,-50],[-87,-42],[-37,2],[-20,10],[-15,11],[-25,52],[-15,19],[-30,39],[-3,3],[-52,44],[-92,78],[-52,67],[-9,21],[0,2],[-6,36],[13,61],[2,6],[-39,33],[-47,4],[-35,-8],[-61,-36],[-23,-26],[-11,-11],[-22,-25],[-37,-18],[-48,-10],[-66,6],[-26,9],[-18,5],[-29,25],[-20,47],[25,85],[22,32],[41,19],[87,-6],[25,13],[2,1],[1,27],[-80,76],[-27,17],[-39,16],[-8,0],[-5,1],[-34,23],[-10,14],[1,5],[1,5],[-14,20],[-18,14],[-28,12],[-37,3],[-13,-2],[-32,-17],[-5,-4],[-4,-44],[0,-6],[-45,-18],[-1,0],[-40,5],[-24,9],[-29,30],[-7,7],[11,44],[63,51],[1,25],[0,7],[-19,11],[-57,9],[-124,11],[-65,-12],[-41,6],[-30,20],[-11,24],[-2,3],[-6,5],[-24,18],[-35,14],[-4,2],[-43,4],[-170,21],[-73,9],[-5,1],[-133,-3],[31,-28],[22,-60],[-22,-33],[-4,-20],[-2,-11],[15,-38],[38,-24],[4,-2],[5,-1],[74,-4],[29,-26],[-7,-70],[5,-24],[14,-15],[-4,-23],[-14,-12],[-31,-30],[-92,-49],[-40,-19],[-210,1],[-104,6],[-210,3],[-29,-12],[-70,-60],[-6,-5],[-23,-12],[-99,7],[-73,15],[-32,12],[-41,29],[-71,84],[-8,27],[7,41],[-59,49],[-38,14],[-77,30],[-41,8],[-91,6],[-46,-26],[-12,-20],[-5,-30],[-1,-10],[9,-19],[4,-3],[105,-103],[27,-39],[1,-6],[27,-127],[3,-37],[-5,-5],[-11,-67],[-2,-12],[-31,-50],[-65,-106],[-24,-41],[-77,-108],[-38,-29],[-50,-26],[-39,-3],[-91,-18],[-55,-28],[-12,-49],[8,-20],[7,-15],[3,-8],[19,-15],[32,-10],[62,-6],[62,-31],[84,-50],[96,-82],[50,-114],[8,-19],[9,-14],[7,-12],[14,-20],[46,-53],[13,-22],[6,-16],[-22,-60],[-23,-38],[-45,-44],[-42,-21],[-71,2],[-27,10],[-32,24],[-2,1],[-5,15],[-3,12],[4,24],[-12,29],[-22,19],[-8,7],[-29,25],[-39,19],[-168,50],[-40,13],[-123,45],[-54,30],[-68,46],[-38,14],[-100,37],[-92,27],[-57,11],[-130,3],[-78,-16],[-59,-30],[-11,-12],[-10,-4],[-90,0],[-244,0],[-18,0],[-89,-17],[-51,3],[-122,-27],[-78,-16],[-74,-14],[-58,-7],[-23,-3],[-21,1],[-75,5],[-72,20],[-26,-9],[-88,1],[-32,-17],[-17,-22],[-1,-7],[-3,-17],[32,-36],[64,-49],[10,-40],[1,-47],[-3,-7],[-10,-19],[-20,-22],[-53,-30],[-2,-1],[-36,-11],[-47,-5],[-61,7],[-77,-8],[-36,-6],[-12,-2],[-72,-29]],[[57515,45830],[-3,189],[0,50],[0,6],[-2,63],[0,44],[-4,186],[-2,118],[0,39],[0,6],[-1,26],[-2,119],[0,65],[0,46],[0,80],[-3,126],[0,42],[0,55],[0,40],[0,29],[-2,161],[-3,92],[0,1],[0,49],[0,23],[0,27],[-3,48],[0,8],[-1,33],[-2,78],[-1,31],[-3,73],[0,62],[1,214],[0,157],[1,35],[1,34],[0,27],[-1,25],[0,68],[-2,201],[-1,72],[1,44],[0,33],[-1,142],[-1,103],[-2,262],[1,78],[-1,98],[0,64],[-1,57],[0,167],[-2,220],[0,86],[0,19],[-1,42],[0,13],[0,14],[-5,196],[-1,220],[-1,274],[-1,179],[-1,48],[-1,199],[0,100],[-1,86],[-1,198],[0,38],[-2,373]],[[93108,52847],[132,-53],[65,-13],[49,-4],[75,-8],[165,-37],[47,-17],[59,-47],[45,-51],[0,-26],[-19,-77],[-25,-38],[-22,-21],[-106,-60],[-28,-29],[-6,-34],[23,-46],[-30,-89],[12,-34],[83,-65],[-16,-84],[14,-24],[25,-32],[36,-51],[41,-99],[-17,-89],[0,-73],[24,-19],[67,-53],[99,-52],[80,-6],[13,-6],[77,-48],[67,-53],[102,-81],[102,-134],[-12,-64],[16,-28],[-13,-32],[39,-28],[17,-7],[23,-1],[27,-22],[9,-23],[-14,-30],[-35,-18],[-23,-1],[-43,-14],[-114,-54],[-54,-27],[-17,-15],[-114,-57],[-38,-34],[-8,-42],[7,-12],[44,-34],[126,-74],[22,-4],[137,-41],[44,-3],[123,28],[39,19],[32,-2],[18,-29],[-5,-106],[-168,-91],[-7,-62],[99,-77],[66,-8],[51,-43],[13,-26],[0,-18],[72,-118],[-77,-35],[84,-112],[11,-24],[35,-89],[38,-88],[133,-139],[13,-24],[-1,-5],[33,-45],[74,-59],[95,-26],[15,-3],[111,-71],[77,-81],[81,-64],[55,-18],[87,-46],[46,-20],[33,-16],[35,-28],[30,-56],[47,-37],[35,-9],[9,0],[90,-49],[89,-55],[40,-31],[18,-46],[51,-41],[26,-7],[52,-12],[149,-45],[40,-31],[-7,-62],[4,-23],[11,-15],[146,-112],[17,-32],[-2,-8],[51,-41],[34,-11],[62,-10],[20,-10],[47,-37],[5,-26],[32,-45],[55,-43],[49,-29],[39,-31],[4,-7],[2,-4],[-90,-23],[6,-38],[8,-52]],[[96847,47925],[-145,-1],[-57,0],[-35,-1],[-146,1],[-87,0],[-35,0],[-32,1],[-51,1],[-36,-1],[-37,0],[-47,-1],[-244,-1],[-34,0],[-38,0],[-90,-1],[-56,4],[-34,-2],[-55,0],[-30,0],[-29,0],[-42,0],[-80,0],[-36,0],[-31,-1],[-35,2],[-44,0],[-19,-1],[-66,-2],[4,-61],[0,-58],[1,-20],[1,-3],[4,-67],[2,-32],[6,-110],[3,-35],[5,-80],[1,-27],[2,-32],[14,-216],[3,-38],[-28,-1],[-156,-3],[-189,-2],[-41,-1],[-39,-1],[-69,0],[-34,-1],[-52,-1],[-53,-1],[-34,-1],[-101,-2],[-55,-2],[-129,-3],[-34,0],[-89,-2],[-96,-1],[-99,-2],[-205,-3],[-172,-3],[-166,-1],[-369,-3],[-250,-3],[-92,0],[-75,-1],[-331,-3],[-35,0],[-18,0],[-231,-2],[-72,-1],[-43,0],[-47,-1],[-105,-1],[-67,0],[-206,-2],[-215,2],[-110,-2],[-7,-1],[-29,-2],[-102,-1],[-34,0],[-54,0],[-112,-1],[-170,-2],[-200,-2],[-84,-1],[-43,0],[-36,0],[-39,-1],[-37,0],[-221,-2],[-58,-1],[-164,-2],[-162,-2],[-75,-1],[-128,-2],[-65,-1],[-78,-1],[-207,-3],[-93,-1],[-33,0],[-278,-4],[-164,-2],[-265,-2],[-190,-2],[-94,-1],[-104,-1],[-3,0],[-222,-2],[5,-51],[22,-256],[25,-278],[26,-304],[14,-168],[11,-148],[-408,-5],[-159,-1],[-66,-1],[-112,-1],[-15,0],[-127,-1],[-246,-3],[-116,-1],[-845,-4],[-77,-1],[-70,0],[-11,0],[-156,-1],[-490,-4]],[[84769,45826],[-5,143],[-9,215],[-5,58],[0,2],[-18,261],[-11,170],[-15,235],[-6,97],[-17,256],[-2,35],[-25,230],[-13,119],[-180,2],[-100,-1],[-552,-2],[-57,0],[-138,-1],[-389,-1],[-68,19],[-62,19],[-100,28],[-31,13],[-91,28],[-705,217],[-178,56],[-1,1],[-110,33],[-27,9],[-381,122],[-372,115],[-1,0],[-769,238],[-165,51],[-310,96],[-411,122],[-105,31],[-54,18],[-127,39],[-243,76],[-86,26],[-40,13],[-185,58],[-158,49],[-9,3],[-1,28],[-1,53],[-1,42],[0,29],[-3,148],[-443,-3],[-52,0],[-10,0],[-33,0],[-111,-1],[-237,-2],[-74,0],[-2,109],[-3,181]],[[43408,51130],[-30,-29],[-57,-53],[-10,-10],[-3,-12],[-2,-12],[-4,-16],[-1,-5],[1,-22],[1,-40],[82,-10],[9,-3],[10,-7],[6,-9],[0,-1],[-1,-67],[2,-1],[1,-1],[11,-10],[17,-7],[30,-3],[8,3],[10,1],[9,-6],[1,0],[0,-1],[3,-5],[0,-12],[-10,-16],[-17,-12],[-42,-3],[-57,-5],[-17,-6],[-9,-7],[-6,-9],[0,-12],[5,-11],[14,-14],[28,-19],[3,-3],[5,-6],[38,-61],[0,-12],[0,-2],[-3,-12],[13,-3],[46,-10],[1,0],[10,-4],[23,-71],[38,-69],[-1,-9],[-6,-56],[-1,-3],[-25,-41],[-8,-11],[31,-48],[-5,-25],[-1,-3],[-1,-2],[-10,-18],[-1,-11],[2,-2],[0,-1],[2,-2],[17,-8],[17,-6],[5,-1],[22,-14],[5,-8],[1,-10],[-8,-66],[0,-4],[-1,-1],[-3,-5],[-38,-22],[-13,-9],[8,-4],[20,-12],[33,-20],[60,-35],[3,-2],[27,-19],[-1,-1],[-40,-43],[0,-1],[57,-86],[3,-4],[-8,-13],[-4,-6],[-5,-39],[3,-11],[4,-7],[26,-23],[2,-3],[12,-13],[14,-25],[0,-3],[0,-2],[-7,-49],[-11,-74],[0,-3],[44,-21],[8,-3],[-33,-48],[0,-1],[0,-14],[3,-5],[66,-68],[1,-1],[1,0],[17,-14],[4,0],[3,-1],[45,-25],[6,-6],[-1,-19],[-10,-12],[-13,-11],[-27,-17],[-15,-9],[-1,-10],[13,-76],[2,-11],[2,-14],[4,-5],[12,-9],[27,-10],[24,-13],[7,-12],[0,-11],[-1,-1],[-43,-125],[-2,-3],[-10,-19],[-5,-2],[1,-4],[14,-40],[0,-8],[0,-1],[0,-1],[-4,-8],[-108,-109],[-36,-43],[-32,-116],[-4,-12],[82,-46],[5,-3],[-9,-2],[-57,-14],[-18,-10],[-6,-8],[-4,-35],[-1,-5],[1,-1],[4,-5],[15,-4],[43,7],[9,2],[21,0],[16,-5],[10,-6],[11,-12],[19,-50],[1,-1],[4,-17],[-5,-9],[0,-1],[-20,-55],[43,-50],[0,-1],[-3,-17],[51,-31],[16,-11],[20,-12],[69,-43],[8,-10],[0,-8],[0,-14],[-7,-29],[0,-1],[31,-70],[7,-17],[4,-8],[54,-9],[9,-3],[12,-8],[26,-55],[4,-12],[0,-14],[0,-1],[-5,-8],[-6,-18],[-3,-6],[-2,-6],[-5,-68],[0,-3],[7,-35],[0,-1],[9,-11],[75,-33],[7,0],[10,0],[8,-10],[48,-58],[7,-2],[53,-14],[9,-4],[3,-8],[1,-1],[1,-2],[-1,-58],[-1,-8],[-28,-27],[-8,-8],[24,-7],[1,-1],[76,-33],[13,-9],[10,-12],[1,0],[-1,-1],[-2,-15],[-17,-62],[-4,-2],[-7,-1],[-78,-12],[23,-37],[5,-8],[9,-19],[134,-122],[4,-2],[44,-27],[1,0],[25,-32],[12,-17],[30,-41],[6,-9],[50,-23],[-7,-27],[-5,-23],[-3,-10],[3,-5],[1,-2],[27,-51],[1,-3],[8,-41],[1,-6],[0,-1],[8,-9],[11,-5],[74,-1],[28,0],[14,4],[17,0],[5,-4],[42,-32],[6,-14],[11,-28],[42,-68],[0,-1],[5,-4],[3,-7],[0,-15],[-56,-64],[-13,-12],[-64,-47],[-1,-1],[-6,-2],[-17,-7],[-9,-1],[-2,0],[-14,-72],[-1,-8],[-2,-23],[0,-1],[3,-14],[3,-2],[10,-4],[12,-1],[7,4],[64,21],[65,17],[24,6],[34,2],[1,0],[16,-8],[23,-13],[59,-35],[6,8],[45,23],[60,-1],[11,0],[19,-7],[14,-5],[31,-11],[49,-37],[11,-8],[57,-41],[78,-39],[40,-13],[69,-9],[9,-1],[79,-4],[65,-15],[84,-21],[21,-8],[1,-1],[38,-15],[11,-9],[58,-44],[2,-2],[-1,-15],[0,-19],[-10,-10],[-24,-10],[-73,-32],[-15,-6],[-8,3],[-18,0],[-25,-1],[-29,0],[-83,-4],[-14,-1],[-5,0],[-64,-11],[-26,-4],[-61,-20],[-12,-3],[-37,-12],[-21,-11],[-19,-10],[-5,-3],[-17,-13],[-7,-6],[-15,-20],[-6,-8],[-2,-20],[-6,-58],[9,-58],[4,-22],[25,-83],[23,-42],[8,-15],[5,-8],[24,-25],[8,-9],[44,-45],[6,-5],[35,-27],[4,-2],[61,-28],[5,-2],[53,-40],[5,-7],[9,-10],[54,-59],[7,-8],[11,-23],[11,-23],[44,-68],[44,-42],[45,-35],[78,-39],[8,2],[23,-9],[48,-21],[14,-2],[29,-13],[56,-25],[57,-42],[11,-7],[20,-28],[38,-69],[21,-40],[20,-35],[5,-7],[44,-54],[61,-90],[11,-41],[1,-8],[3,-19],[2,-12],[-9,-17],[-39,-73],[-10,-20],[-79,-50],[-88,-53]],[[46254,44388],[-69,-13],[-182,-51],[-207,-49],[-3,-1],[-55,-23],[-145,-32],[-45,-9],[-57,-17],[-227,-52],[-4,-47],[0,-59],[-1,-83],[1,-58],[1,-150],[0,-1],[257,-14],[39,-2],[78,-6],[149,-24],[162,-36],[-16,-17],[-37,-17],[-30,-23],[-35,-23],[-57,-25],[-13,-27],[-28,-4],[-48,7],[-31,-11],[-30,-16],[-9,-34],[-42,-1],[-16,-22],[-20,-18],[-30,-11],[-39,-1],[-9,-22],[-34,-3],[-30,-9],[-27,-9],[-36,-3],[-22,-14],[23,-18],[-16,-26],[28,-15],[-5,-20],[-40,-9],[-33,-23],[-33,7],[-30,4],[-31,7],[-31,-26],[-30,-18],[-29,-17],[-35,-4],[-13,-26],[-12,-20],[31,4],[17,-23],[-15,-22],[-46,-12],[-31,-12],[-30,-16],[-31,-21],[-6,-23],[3,-20],[-39,-5],[-3,-23],[6,-21],[2,-29],[28,-27],[26,-31],[9,-33],[34,-13],[34,-11],[12,-22],[36,-17],[20,-16],[29,-16],[34,-37],[0,-24],[2,-31],[3,-32],[24,-24],[31,-18],[23,-15],[21,-16],[44,-25],[19,-16],[20,-18],[35,-16],[23,-18],[39,-13],[34,-16],[17,-21],[13,-25],[16,-23],[10,-28],[35,-7],[38,-5],[56,-12],[34,-3],[27,-13],[19,-17],[1,-24],[-13,-26],[57,2],[45,-2],[26,-20],[35,-10],[30,5],[35,-11],[32,-3],[42,-4],[87,-12],[26,-12],[27,10],[34,8],[57,23],[33,13],[29,2],[25,15],[47,11],[2,-65],[1,-66],[1,-138],[-324,8],[-187,-1],[-280,1],[-239,2],[-44,0],[-113,-2],[-10,0],[-185,-2],[-94,-1],[-114,-1],[-65,-1],[-159,6],[-238,-5],[-107,1],[-186,3],[-126,2],[-118,-2],[-71,-1],[-46,0],[-32,-1],[-4,-103],[0,-23],[10,-184],[3,-34],[-3,-107],[-3,-78],[6,-39],[-1,-21],[-8,-88],[3,-46],[7,-92],[5,-73],[3,-64],[3,-53],[-1,-50],[-2,-86],[0,-30],[5,-38],[-1,-28],[-3,-124],[2,-66],[-1,-43],[-1,-81],[1,-264],[1,-43],[1,-26],[5,-207],[1,-108],[0,-4],[8,-237],[-4,-41],[7,-245],[3,-74],[-1,-44],[-1,-143],[-1,-56],[2,-39],[6,-146],[-8,-144],[0,-28],[1,-28],[4,-25],[5,-34],[-6,-204]],[[43687,38283],[-35,-1],[-90,-1],[-203,0],[-226,1],[-178,-1],[-297,-2],[-60,-2],[-11,0],[-129,-1],[-190,-2],[-53,2],[-805,-9],[-68,2],[-200,5],[-50,2],[-57,0],[-195,0],[-422,-1],[-199,-1],[-265,0],[-631,-2],[-40,0],[-8,0],[-32,0],[-107,-1],[-108,0],[-196,0],[-125,-1],[-237,-1],[-113,0],[-570,-1],[-128,-1],[-54,9],[-328,-2],[-35,1],[-63,0],[-52,0],[-76,0],[-870,-2],[-56,0],[-12,18],[21,33],[30,26],[55,46],[5,4],[-7,4],[-59,29],[-9,5],[-15,8],[24,67],[2,7],[9,27],[1,0],[16,56],[1,4],[0,6],[0,5],[-3,2],[-2,2],[-41,26],[-22,11],[-1,1],[-1,0],[-14,4],[-32,24],[-8,0],[-49,-8],[-3,0],[-57,4],[-13,3],[-73,15],[-50,17],[-45,15],[-5,1],[-4,1],[1,9],[12,16],[1,1],[-4,3],[-23,14],[-10,9],[-66,68],[0,13],[15,23],[2,-2],[16,-9],[12,-5],[18,0],[10,6],[4,6],[3,4],[53,70],[1,3],[12,30],[0,3],[-2,15],[-27,66],[-9,-2],[-1,0],[0,-1],[-5,-23],[-12,-7],[-67,-10],[-9,0],[-55,2],[-11,4],[-69,63],[-1,2],[-44,41],[-24,23],[-4,3],[-109,61],[-15,-2],[-18,-7],[-39,-19],[-31,1],[-42,1],[-28,1],[-30,1],[-27,1],[-110,4],[-65,27],[-1,0],[-71,3],[-8,-3],[-12,-6],[-9,-5],[-49,30],[-37,14],[-78,29],[-95,64],[-45,34],[-43,47],[-82,97],[12,83],[-13,25],[-14,16],[-57,43],[-116,69],[-16,10],[-10,6],[-198,45],[-34,4],[-167,16],[-14,1],[-20,1],[-12,-2],[47,42],[97,58],[32,19],[42,34],[30,35],[22,36],[16,51],[14,94],[-10,10],[-5,4],[1,6],[-1,4],[-33,-6],[-90,9],[-19,14],[-11,8],[-15,5],[-77,22],[-10,2],[-51,12],[-50,3],[-45,2],[-52,19],[-71,11],[-10,2],[-44,2],[-10,1],[-100,-22],[-13,-3],[-41,-13],[-51,-16],[-22,-12],[-37,5],[-19,14],[1,9],[2,12],[-4,58],[0,1],[-22,37],[-24,40],[-24,42],[-6,10],[-35,35],[-18,19],[-11,32],[-5,17],[-12,37],[-3,8],[-11,8],[-15,2],[-25,39],[-10,18],[-2,2],[-35,39],[-2,3],[-2,-1],[-14,-2],[-22,-10],[-18,-11],[-40,-42],[-10,-12],[-17,-9],[-16,-3],[-5,-2],[-62,-1],[-61,3],[-10,7],[1,14],[7,21],[5,4],[12,4],[43,7],[3,0],[29,6],[12,7],[3,8],[-3,2],[-5,1],[-45,-5],[-39,-5],[-18,-2],[-25,1],[-11,0],[-20,5],[-8,4],[-2,4],[3,8],[19,11],[11,7],[3,4],[2,8],[-112,128],[-116,32],[-8,2],[-19,5],[-4,4],[2,12],[0,1],[11,51],[7,13],[17,15],[2,1],[22,12],[8,6],[2,5],[1,1],[0,3],[-1,13],[-4,9],[-2,4],[-1,1],[-9,11],[-18,9],[-2,1],[-10,3],[-35,13],[-3,0],[-4,1],[-9,-3],[-6,-6],[0,-13],[0,-2],[-1,-16],[2,-2],[7,-20],[4,-13],[-1,-10],[0,-2],[-1,-1],[-4,-5],[-12,-9],[-3,-2],[-39,-17],[-13,-6],[-6,-1],[-6,-1],[-3,0],[-11,0],[-7,2],[-164,61],[-7,6],[-11,98],[0,20],[5,8],[10,8],[17,13],[11,9],[37,17],[2,3],[2,3],[1,15],[0,3],[0,1],[-5,12],[-9,11],[-95,90],[-6,5],[-15,13],[-10,2],[-19,-2],[-11,-5],[-6,-8],[1,-13],[3,-7],[7,-6],[24,-25],[0,-6],[-18,-8],[-1,0],[-7,-2],[-26,-6],[-22,-1],[-2,0],[-8,2],[-19,12],[-26,22],[-3,6],[-21,17],[0,1],[-20,4],[-8,-2],[-34,-20],[-1,0],[-60,15],[-9,2],[-44,17],[-46,18],[-13,6],[-36,17],[-11,2],[-25,-9],[-18,-29],[-4,-7],[-6,-6],[-4,-4],[-11,-7],[-7,-1],[-15,8],[-9,36],[-4,17],[-22,10],[-27,10],[-25,4],[-9,-1],[-6,-5],[0,-5],[24,-31],[-32,-10],[-38,-13],[-2,0],[-63,11],[-2,0],[-78,23],[-5,1],[-41,-41],[-26,-26],[-8,-7],[-1,-1],[-10,-3],[-111,-16],[-20,-1],[-13,3],[-3,1],[-34,12],[-4,2],[-14,8],[-12,10],[-2,4],[8,3],[1,0],[21,-2],[24,1],[3,1],[17,6],[8,6],[4,5],[2,2],[4,8],[9,19],[7,40],[1,3],[-2,2],[-5,8],[-17,13],[-11,2],[-16,0],[-11,-4],[-24,-16],[-1,0],[-21,-5],[-19,0],[-1,1],[-2,1],[-130,89],[-62,61],[-3,3],[2,9],[5,76],[4,56],[-2,39],[-33,63],[-6,12],[-1,2],[-45,2],[-6,0],[-103,6],[-58,3],[-112,8],[-18,0],[-45,-2],[6,3],[34,18],[8,4],[7,5],[11,6],[6,6],[6,5],[2,3],[1,3],[1,10],[-25,126],[-1,1],[-2,10],[-52,73],[-4,5],[-17,-1],[-40,-3],[-5,-1],[-61,52],[-3,0],[-66,-5],[-3,0],[-70,-18],[-2,-3],[-12,-6],[-84,-35],[-75,16],[-59,14],[-64,14],[-15,3],[-57,13],[-33,42],[-5,7],[-14,19],[-1,1],[-1,0],[-20,14],[-16,11],[-15,-3],[-11,-1],[-18,0],[-29,5],[-154,29],[0,1],[-13,4],[-11,9],[-44,51],[-6,18],[8,14],[0,7],[-3,2],[-2,1],[-1,1],[-46,30],[-56,37],[-91,28],[-55,25],[-4,3],[-3,3],[-85,66],[0,11],[3,46],[-15,84],[-8,3],[-60,25],[-14,6],[-99,41],[-11,0],[-12,0],[-29,-5],[-46,-6],[-41,-4],[-33,14],[-47,-14],[-50,-1],[-19,-17],[-7,-25],[-26,-8],[-36,-20],[-31,-26],[-34,0],[-35,4],[-27,-6],[-35,10],[-61,-11],[-36,13],[-37,2],[-52,0],[-31,-22],[-30,11],[-8,29]],[[27921,42806],[-3,103],[0,3],[-5,173],[-13,517],[-1,94]],[[57515,45830],[-159,-54],[-1,0],[-153,-69],[-89,-31],[-43,-10],[-8,3],[-18,-8],[-9,-4],[-337,-34],[-4,1],[-100,6],[-56,-1],[-11,0],[-27,10],[-9,3],[-94,69],[-54,24],[-111,15],[-49,-12],[-21,-4],[-9,-3],[-27,-14],[-6,-10],[-2,-12],[0,-1],[-4,-23],[24,-86],[-10,-65],[-17,-25],[-11,-42],[7,-11],[0,-8],[3,-102],[-2,-63],[-5,-32],[-5,-32],[-1,-4],[-8,-21],[-6,-14],[-6,-14],[-50,-26],[-17,-3],[-44,-9],[-41,-23],[-61,-55],[-57,-51],[-10,-63],[-55,-28],[-48,-15],[-12,1],[-59,3],[-24,10],[-49,35],[-111,9],[-47,-5],[-57,-15],[-73,-34],[-20,-25],[-5,-32],[2,-4],[7,-12],[4,-29],[14,-33],[26,-62],[2,-118],[-7,-42],[-10,-10],[-64,-33],[-83,-19]],[[55128,44464],[-128,-18],[-35,-5],[-53,-7],[-45,-5],[-85,-8],[-36,-4],[-152,-16],[-138,-25],[-26,-4],[-35,-11],[-16,1],[-74,-14],[-81,-8],[-82,7],[-19,2],[-10,1],[-77,18],[-11,8],[-8,6],[-14,14],[-7,8],[-3,4],[-36,41],[-24,38],[2,24],[3,34],[-10,69],[-39,97],[-8,27],[-11,35],[-12,58],[0,3],[-4,24],[1,5],[-29,34],[-23,27],[-5,6],[-37,26],[-24,9],[-12,3],[-37,8],[-40,4],[-21,3],[-16,-3],[-28,-5],[-18,-10],[-51,-2],[-99,7],[-93,21],[-40,16],[-44,27],[-28,17],[-122,52],[-44,11],[-61,4],[-35,2],[-139,-7],[-39,-8],[-21,-9],[-29,-12],[-36,-28],[-40,-30],[-69,-64],[-3,-18],[-15,-83],[-44,-25],[-7,-4],[-29,-17],[-71,2],[-4,2],[-56,44],[-43,18],[-44,19],[-64,19],[-23,5],[-42,7],[-55,22],[-82,39],[-119,66],[-42,31],[-37,55],[-8,27],[2,14],[8,54],[27,68],[22,55],[5,6],[21,24],[-1,58],[0,18],[8,47],[-12,83],[-43,76],[-83,69],[-2,2],[-33,9],[-12,4],[-3,0],[-17,2],[-33,2],[-8,0],[-2,-1],[-109,-60],[-101,-28],[-13,-2],[-72,-6],[-4,0],[-3,0],[-8,1],[-35,2],[-26,5],[-14,3],[-24,1],[-130,6],[-79,-8],[-24,-2],[-34,-8],[-39,-15],[-28,-10],[-101,-52],[-9,-4],[-19,-15],[-16,-23],[0,-3],[-6,-36],[0,-79],[55,-53],[-5,-26],[-36,-43],[4,-31],[-8,-52],[-1,-6],[-1,-8],[-4,-7],[-20,-38],[-12,-23],[-5,-5],[-10,-10],[-56,-36],[-116,-72],[-28,-25],[-2,-2],[-90,-68],[-2,-1],[-77,-47],[-11,-15],[-2,-2],[-18,-20],[-218,-134],[-55,-29],[-16,-4],[-43,-13],[-6,-2],[-44,-8],[-37,2],[-28,8],[-7,2],[-162,42],[-18,8],[-10,4],[-77,18],[-4,0],[-127,23],[-7,1],[-50,6],[-3,-1],[-5,-1],[-3,2],[-5,4],[-24,4],[-27,2],[-85,7],[-85,25],[-6,2],[-13,3],[-31,16],[-6,4],[-11,11],[-16,15],[0,4],[0,54],[-41,55],[-15,12],[-15,11],[-60,46],[-7,11],[-10,16],[-19,39],[30,137],[-2,53],[-1,13],[-1,6],[-21,64],[3,36],[4,56],[1,13],[10,12],[9,6],[38,25],[15,99],[-4,9],[-15,29],[-48,40],[-71,27],[-4,1],[-21,4],[-12,-1],[-47,-5],[-5,0],[-15,-4],[-45,-11],[-1,0],[-27,-14],[-4,-5],[-1,-3],[-6,-39],[-150,-96],[-36,-19],[-154,-72],[-22,-9],[-19,-8],[-8,-3],[-11,-3],[-68,-21],[-55,0],[-35,-13],[-198,-7],[-110,7],[-19,1],[-8,3],[-24,7],[-103,38],[-64,46],[-71,7],[-48,11],[-108,6],[-26,-1],[-31,-11],[-6,-3],[-95,-53],[-18,-10],[-8,-50],[8,-29],[1,-2],[9,-17],[34,-26],[-19,-123],[-2,-10],[-13,-57],[-10,-12],[-1,-6],[-6,-47],[-8,-68],[6,-18],[58,-85],[10,-14],[39,-62],[29,-45],[62,-140],[39,-121],[-7,-46],[-16,-108],[-25,-52],[-13,-27],[-22,-36],[-98,-115],[-54,-54],[-49,-34],[-1,-2],[-11,-22],[-122,-114],[-90,-83],[-12,-11],[-16,-6],[-90,-34],[-67,-20],[-51,-11],[-68,-11],[-104,-8],[-60,1],[-40,5],[-54,13],[-57,15],[-48,15],[-8,4],[-12,6],[-10,9],[-15,20],[-1,2],[0,1],[-13,19],[-60,95],[-1,3],[-20,45],[-2,98],[11,91],[0,3],[-1,2],[-4,22],[3,15],[6,41],[0,4],[14,33],[8,11],[8,12],[5,7],[52,39],[73,35]],[[84769,45826],[1,-29],[2,-138],[1,-57],[0,-35],[1,-30],[0,-24],[1,-54],[3,-180],[-5,-123],[-1,-25],[-1,-27],[-10,-230],[-2,-147],[-1,-120],[-1,-29],[-2,-257],[-1,-27],[-3,-325],[-1,-87],[2,-135],[0,-31],[1,-64],[1,-124],[1,-46],[2,-78],[6,-211],[7,-265],[2,-140],[1,-62],[-3,-90],[-3,-138],[11,-90],[1,-58],[1,-23],[1,-35],[2,-86],[0,-14],[0,-20]],[[84783,42172],[-48,3],[-27,0],[-51,-1],[-78,0],[-98,0],[-140,0],[-95,-1],[-448,-1],[-10,0],[-105,0],[-100,-1],[-61,0],[-196,0],[-230,-1],[-85,0],[-6,0],[-74,0],[-279,-4],[-102,-1],[-29,-1],[-134,-2],[-199,-2],[-272,-4],[-291,-5],[-182,-3],[-487,-2],[-107,-1],[-263,-1],[-120,0],[-77,0],[-105,1],[-298,3],[-91,0],[-450,4],[-365,0],[-408,-1],[-276,0],[-62,0],[-196,0],[-144,0],[-349,-1],[-337,0],[-38,0],[-183,0],[-1,0],[-102,0],[-45,0],[-275,-1],[-14,0],[-32,0],[-30,0],[-7,0],[-15,0],[-209,0],[-351,0],[-48,0],[-94,-1],[-203,-2],[-319,1],[-162,1],[-54,-1],[-37,-1],[-386,-7],[-288,-2],[-10,0],[-353,-3],[-60,-1],[-175,-2],[-271,-4],[-411,-5],[-94,-1],[-71,42],[-227,82],[-3,1],[-60,32],[-1,0],[0,1],[-26,45],[-23,40],[-19,35],[-2,3],[-2,6],[-8,19],[-17,-13],[-1,-1],[-32,-11],[-25,-1],[-3,0],[-1,0],[-78,14],[-15,8],[-22,66],[-1,3],[-16,51],[0,15],[0,9],[0,7],[1,37],[28,46],[2,3],[-6,4],[-31,16],[-8,13],[0,1],[-18,31],[6,34],[11,22],[27,50],[3,5],[4,8],[45,21],[46,22],[9,4],[-6,2],[-30,11],[-10,6],[0,1],[-1,6],[-1,3],[5,52],[1,7],[4,5],[2,3],[16,8],[19,-1],[10,-5],[0,-1],[9,-13],[8,-2],[37,3],[7,1],[0,8],[-24,28],[-19,31],[-1,2],[-5,8],[-59,96],[-12,20],[-3,5],[-60,97],[4,35],[0,5],[0,29],[0,2],[-6,18],[-18,4],[-16,3],[-13,6],[-4,1],[-10,6],[-14,8],[-36,28],[-22,16],[-105,9],[-1,0],[-53,4],[-30,8],[-21,15],[-1,1],[-12,18],[-16,10],[-2,1],[-4,1],[-6,2],[-19,0],[-38,1],[0,1],[2,46],[-1,7],[-15,31],[-1,2],[-25,44],[0,1],[-1,1],[-14,10],[-25,2],[-4,0],[-36,-3],[-22,-334],[0,-44],[0,-66],[-1,-31],[3,-57],[4,-32],[1,-66],[-138,-3],[-67,-1],[-370,-8],[-2,0]],[[71239,43003],[8,24],[1,2],[2,33],[-8,11],[-37,54],[-1,7],[-7,5],[-84,40],[-9,3],[-14,-1],[-1,0],[-19,-13],[-17,4],[-130,50],[4,6],[8,6],[2,1],[-137,26],[-1,0],[-66,7],[-96,45],[-96,78],[-53,40],[-7,4],[-73,34],[-1,1],[-95,70],[-42,33],[0,1],[-1,0],[-8,9],[1,20],[0,2],[-13,90],[-1,2],[0,1],[-24,24],[-9,5],[-28,15],[-5,7],[1,38],[1,10],[1,0],[20,24],[18,44],[-3,13],[-77,154],[-8,8],[-76,3],[-2,0],[-21,-4],[-103,16],[-11,8],[-1,3],[-24,53],[-7,15],[-8,18],[-1,5],[-1,3],[2,2],[4,3],[14,5],[10,3],[3,2],[1,24],[-72,39],[-38,5],[-10,1],[-175,-4],[-9,1],[-1,0],[-56,0],[-90,1],[-42,5],[-12,5],[-18,14],[-4,3],[0,9],[0,3],[-6,5],[-16,-3],[-20,-6],[-4,-2],[-32,-15],[-13,6],[-9,5],[-55,26],[-13,13],[-21,25],[-82,178],[1,7],[22,31],[7,4],[9,1],[18,-4],[6,-1],[-10,9],[-34,31],[-12,15],[-2,55],[32,76],[5,11],[-2,46],[-6,0],[-55,2],[-2,0],[-1,0],[-25,5],[-29,24],[-3,3],[-37,13],[-1,1],[-2,-1],[-10,-1],[0,6],[0,23],[0,2],[0,24],[0,3],[0,29],[0,6],[0,15],[-4,2],[-23,8],[-26,5],[-62,3],[-31,12],[-1,2],[1,2],[20,2],[29,3],[9,5],[3,15],[-9,22],[-1,1],[-23,26],[-6,7],[-13,14],[-59,46],[-70,57],[-4,4],[-39,38],[-1,1],[-12,19],[-2,4],[-2,2],[-18,16],[-17,7],[-34,15],[-10,7],[-3,3],[-6,4],[4,33],[0,1],[24,6],[12,12],[3,3],[41,42],[2,2],[3,3],[28,93],[2,12],[-4,2],[-22,14],[-59,34],[0,52],[0,7],[0,61],[71,29],[0,19],[-8,9],[-98,82],[-31,14],[-13,6],[-4,1],[-39,7],[-3,0],[-81,59],[-4,3],[-3,41],[-2,32],[0,2],[-2,2],[-43,37],[-3,2],[0,17]],[[27921,42806],[-72,13],[-25,12],[-23,33],[-32,6],[-23,-14],[-69,-11],[-27,-7],[-30,-6],[-38,2],[-22,16],[-34,11],[-7,2],[-35,10],[-47,-6],[-41,-4],[-30,-4],[-38,6],[-27,16],[-39,-10],[-64,5],[-53,-3],[-33,-2],[-35,21],[-50,-5],[-24,-28],[-25,-11],[-29,-2],[-48,5],[-37,-3],[-28,-7],[-61,-6],[-36,-15],[-50,-43],[-3,-3],[-24,-19],[-45,-19],[-19,-21],[-17,-20],[-30,-32],[-31,-26],[-5,-24],[-22,-17],[3,-82],[1,-16],[8,-92],[9,-712],[0,-12],[-1,-115],[4,-288],[2,-130],[4,-172],[11,-569],[0,-1],[0,-51],[0,-11],[-1,-57],[-2,-237],[-92,0],[-127,0],[-160,-1],[-291,0],[-171,-1],[-32,1],[-41,0],[-2,0],[-96,-1],[-185,0],[-71,0],[-10,0],[-205,-1],[-164,0],[-565,-3],[-55,-1],[-246,0],[-168,-1],[-94,0],[-31,-1],[-34,0],[-4,0],[0,-150],[2,-249],[0,-24],[2,-26],[0,-23],[1,-42],[1,-53],[5,-129],[2,-61],[1,-154],[1,-222],[-1,-53],[0,-22],[4,-206],[3,-157],[2,-46],[0,-22],[0,-3],[6,-308],[1,-95],[0,-2],[1,-261],[1,-49],[0,-43],[0,-20],[1,-44],[1,-181],[-62,0],[-419,-24],[-474,-28],[-30,-1],[-41,-3],[-3,0],[-231,-13],[0,-42],[0,-3],[5,-181]],[[22466,37102],[-249,-2],[-185,-2],[-251,-3],[-450,-6],[-52,0],[-73,-1],[-199,-1],[-242,-3],[-593,-8],[-87,1],[-68,0],[-61,1],[-15,1],[-143,0],[-36,0],[-624,4],[-71,1],[-144,0],[-293,0],[-15,0],[-307,1],[-484,-1],[-102,0],[-180,0],[-123,-1],[-468,3],[-32,0],[-166,-2],[-53,0],[-138,-1],[-113,0],[-259,-2],[-73,-1],[-111,-1],[-201,-1],[-63,0],[-385,-3],[-161,-1],[-206,-2],[-88,0],[-147,-1],[-220,0],[-303,0],[-305,0],[-156,0],[-95,0],[-60,0],[-69,0],[-98,0],[-100,0],[-41,0],[-84,0],[-395,0],[-124,0],[-277,1],[-89,1],[-46,0],[-83,0],[-398,-1],[-268,4],[-170,3],[-63,-2],[-126,1],[-35,0]],[[11150,37078],[-34,20],[-32,19],[-134,79],[-63,40],[-6,5],[-40,42],[-3,3],[-21,29],[-2,2],[-20,41],[-5,11],[-52,42],[-65,19],[-37,2],[-17,-4],[-36,-17],[-5,-8],[-1,-8],[-5,-39],[19,-48],[17,-22],[-1,-3],[40,-42],[18,-24],[-7,-23],[-1,-5],[-5,-15],[-36,-32],[-68,-4],[-107,30],[-39,16],[-41,15],[-33,7],[-30,11],[-74,42],[-29,24],[-2,1],[-11,2],[-119,95],[-24,24],[-9,10],[-4,4],[-26,59],[-35,79],[-18,29],[-26,44],[8,94],[9,7],[10,19],[13,25],[42,103],[19,75],[12,65],[2,28],[3,31],[1,20],[0,29],[-3,11],[-3,7],[-117,154],[-7,23],[-11,36],[-5,18],[8,14],[13,24],[25,25],[40,30],[20,15],[83,41],[287,144],[67,32],[44,20],[10,4],[54,19],[6,2],[47,9],[55,11],[18,3],[96,3],[28,-5],[30,-6],[52,-11],[88,-33],[74,-38],[67,-48],[66,-46],[44,-13],[7,0],[19,1],[12,0],[39,8],[9,6],[34,20],[2,1],[33,44],[18,24],[25,25],[13,13],[53,52],[125,91],[31,16],[62,31],[47,21],[47,22],[28,5],[36,7],[61,23],[1,0],[43,26],[6,3],[1,3],[7,32],[2,12],[-2,25],[-1,7],[-4,51],[-14,25],[-8,14],[-7,21],[-5,17],[-11,12],[-6,6],[-19,20],[-15,10],[-74,48],[-41,36],[-30,54],[6,44],[45,93],[56,70],[42,40],[15,15],[25,31],[34,41],[6,6],[26,43],[1,4],[15,44],[5,14],[21,115],[10,52],[31,80],[16,115],[2,21],[11,20],[15,15],[21,11],[42,23],[25,7],[14,4],[38,3],[43,-2],[49,-3],[12,-1],[1,0],[112,-27],[58,-3],[26,7],[6,3],[34,18],[42,43],[16,17],[47,69],[12,29],[13,30],[22,36],[15,22],[58,121],[19,66],[3,12],[4,5],[26,43],[5,8],[8,15],[1,22],[1,20],[14,41],[39,72],[37,90],[5,30],[11,62],[1,7],[-2,14],[-6,34],[-8,47],[-29,50],[-22,40],[-68,82],[-24,43],[-5,27],[8,55],[16,30],[43,60],[24,34],[36,48],[2,13],[19,115],[0,13],[0,13],[-9,24],[-3,11],[-45,71],[-138,157],[-11,34],[-13,38],[3,18],[5,42],[9,16],[2,4],[55,66],[85,74],[25,27],[5,6],[1,14],[5,49],[7,67],[-4,35],[-11,45],[-2,8],[-11,43],[-5,4],[-5,6],[-23,26],[-46,33],[-8,1],[-76,35],[-25,11],[-29,13],[-19,14],[-2,2],[-44,44],[-2,2],[-2,2],[-17,33],[-5,8],[18,208],[3,33],[1,15],[10,5],[1,1],[30,16],[78,-4],[56,-20],[37,-13],[83,-29],[77,-7],[2,0],[8,2],[2,1],[25,14],[4,45],[1,20],[-18,29],[-17,25],[-28,40],[-7,10],[-2,10],[-5,29],[25,33],[5,3],[72,38],[39,11],[37,-3],[29,-2],[12,-1],[34,-3],[114,-29],[44,-11],[4,0],[66,-6],[53,33],[2,1],[6,7],[127,144],[41,32],[18,13],[20,16],[31,16],[5,3],[56,13],[34,-2],[12,-1],[43,-23],[1,-1],[49,-33],[29,-28],[32,-44],[6,-8],[29,-41],[35,-26],[9,-6],[58,-18],[58,-3],[81,9],[54,13],[7,2],[49,15],[38,12],[84,32],[14,8],[22,11],[33,27],[8,5],[47,25],[8,4],[22,7],[47,8],[17,-1],[66,-4],[8,0],[52,-19],[24,-16],[41,-27],[11,-16],[3,-7],[3,-9],[-9,-65],[-31,-75],[-32,-48],[-42,-37],[-3,-2],[-92,-51],[-5,-4],[-14,-13],[-14,-13],[-3,-17],[-1,-7],[0,-2],[6,-16],[12,-10],[14,-11],[12,-10],[44,-10],[43,-1],[39,-1],[23,-1],[73,8],[67,8],[28,8],[46,12],[45,26],[11,14],[6,8],[3,3],[1,11],[2,44],[-1,3],[-35,70],[-48,74],[-7,32],[-2,8],[-2,8],[5,34],[1,1],[76,134],[6,44],[-18,25],[-5,4],[-15,11],[-16,11],[-1,1]],[[96847,47925],[113,-33],[4,-1],[-15,-52],[55,-72],[-19,-57],[16,-53],[-6,-56],[-11,-13],[-7,-37],[15,-40],[30,-59],[16,-34],[-3,-4],[-3,-3],[-2,-3],[-1,-1],[-10,-13],[-23,-31],[-1,-2],[-2,-4],[-2,-3],[-1,-4],[-1,-3],[-1,-4],[-1,-4],[0,-3],[0,-31],[0,-4],[1,-4],[1,-3],[1,-4],[1,-4],[18,-34],[12,-21],[3,-8],[-6,-33],[-22,-19],[-5,-5],[-4,-6],[-35,-62],[-7,-13],[-12,-87],[-5,-15],[1,-31],[0,-3],[2,-7],[15,-52],[14,-43],[6,-20],[2,-3],[2,-4],[1,-1],[2,-4],[2,-2],[37,-78],[9,-18],[18,-37],[18,0],[21,1],[162,-69],[161,-52],[52,-10],[25,-8],[24,-8],[1,0],[4,-1],[87,-23],[51,-21],[73,-33],[24,-24],[19,-19],[19,-33],[12,-20],[-4,-20],[27,-75],[27,-47],[16,-22],[49,-65],[-1,-2],[-1,-6],[-4,-25],[-218,-129],[-69,-31],[-104,-26],[-61,-38],[-3,-7],[-18,-34],[-8,-46],[-6,-32],[5,-68],[19,-44],[15,-18],[51,-41],[20,-10],[76,-30],[82,-15],[43,-14],[34,-34],[-6,-33],[-6,-8],[-40,-20],[-27,-4],[-113,11],[-38,3],[-14,1],[-97,6],[-80,4],[-45,-22],[-61,-60],[-25,-64],[11,-40],[23,-19],[17,-6],[53,-7],[131,7],[130,-6],[42,-15],[47,-37],[-3,-15],[-11,-35],[-30,-17],[-11,-6],[-29,-17],[-79,-11],[-147,5],[-33,-9],[-19,-9],[-6,-3],[-2,-2],[-9,-10],[-17,-17],[-10,-31],[5,-16],[9,-27],[16,-14],[19,-17],[36,-25],[-2,-34],[-19,-29],[-11,-11],[-43,-39],[-191,-133],[-196,-93],[-79,-54],[-41,-30],[-17,-51],[-49,-75],[-16,-21],[-7,-64],[25,-135],[45,-68],[48,-35],[84,-31],[7,-1],[73,-5],[73,-17],[88,-20],[106,-25],[19,-6],[105,-31],[26,-8],[33,-8],[69,-19],[14,2],[10,-8],[2,-2],[26,-5],[52,-12],[142,-47],[10,-3],[33,-7],[110,-24],[84,-28],[96,-19],[9,0],[28,-15],[17,-9],[49,-10],[33,-17],[29,-1],[23,-1],[149,-19],[90,-24],[30,-16],[44,-23],[19,-4],[41,-9],[60,-19],[41,-20],[90,-71],[69,-65],[84,-79],[94,-75],[66,-38],[194,-111],[17,-1],[32,-3],[180,-69],[14,-10],[60,-41],[24,-17],[38,-26],[11,-8],[32,-22],[5,0],[71,-5],[28,-19],[42,-15],[36,-25],[8,-1],[46,-20],[47,-37],[-9,-49],[-1,-4],[-24,-33],[-29,-12],[-20,-9],[-44,3],[-16,12],[-39,32],[-71,5],[-52,-17],[-39,-13],[-61,-26],[-163,-68],[-163,-81],[-5,-18],[-11,-43],[4,-26],[0,-3],[-3,-107],[-1,-5],[-19,-44],[-4,-8],[-12,-13],[-16,-16],[-59,-30],[-69,-34],[-5,-3],[-7,-6],[-4,-4],[-34,-39],[-9,-21],[-4,-22],[14,-43],[-2,-12],[-6,-33],[-6,-12],[-1,-4],[-27,-23],[-5,-3],[-105,-54],[-61,-18],[-15,-3],[-62,-13],[-60,0],[-42,0],[-10,-5],[-9,-4],[-78,-9],[-235,15],[-146,-12],[-132,5],[-25,1],[-1,0],[-93,1],[-40,18],[-5,2],[-13,1],[-72,3],[-41,-3],[-89,-22],[-54,-24],[-67,-46],[-23,-16],[-49,-35],[-7,-18],[-5,-8],[-6,-8],[-3,-4],[0,-3],[-7,-36],[-1,-3],[10,-8],[14,-12],[74,-61],[41,-4],[34,-4],[87,13],[121,-3],[16,-6],[1,-1],[31,-25],[53,-52],[9,-23],[-8,-44],[-38,-37],[-59,-27],[-25,-4],[-26,-3],[-119,-37],[-43,-17],[-16,-2],[-61,-12],[-73,-13],[-36,-7],[-128,-30],[-19,-5],[-71,-17],[-55,-13],[-161,-44],[-41,-6],[-55,-21],[-70,-9],[-162,-17],[-133,-66],[-20,-35],[-59,-53],[-72,-48],[-140,-77],[-15,-11],[-34,-34],[-44,-22],[-42,-31],[-109,-108],[-30,-40],[-134,-95],[-144,-122],[-29,-37],[-29,-18],[-57,-35],[-40,-20],[-19,-9],[-94,-45],[-14,-5],[-43,-3],[-12,-1],[-13,-6],[-78,-33],[-11,-5],[-2,-1],[-55,-42],[-13,-19],[-4,-25],[25,-31],[14,-23],[36,-73],[35,-79],[13,-45],[6,-22],[8,-8],[24,-24],[-2,-20],[-1,-9],[23,-70],[23,-45],[40,-78],[-1,-28],[41,-48],[46,-111],[20,-44],[3,-6],[56,-83],[-1,-6],[-2,-16],[-9,-67],[-89,-47],[-27,-24],[-25,-40],[-1,-3],[-10,-31],[-11,-13],[-17,-13],[-9,-8],[-6,-20],[-19,-65],[23,-70],[6,-14],[-2,-10],[-21,-73],[-1,-3],[-7,-12],[-7,-13],[0,-2],[-17,-34]],[[95314,38597],[-30,0],[-17,0],[-79,1],[-214,1],[-81,0],[-208,-2],[-266,-4],[-4,0],[-225,-2],[-242,-5],[4,113],[1,38],[-108,-2],[-126,-2],[-5,-150],[-123,2],[-200,-2],[-422,-4],[-11,0],[-203,-2],[-67,-1],[-217,0],[-60,0],[-78,0],[-233,0],[-106,0],[-56,-4],[-56,0],[-39,0],[-32,0],[-99,-1],[-191,62],[-19,62],[2,8],[0,1],[12,25],[-2,0],[-11,1],[-47,3],[-14,1],[-10,33],[0,1],[-21,73],[63,42],[13,8],[-25,2],[-8,2],[-66,40],[-4,4],[-39,69],[-7,14],[-1,0],[-17,-10],[-6,-4],[-12,-1],[-132,51],[-63,34],[-6,5],[-67,66],[-39,53],[-6,13],[-48,24],[-27,13],[-10,5],[-109,-28],[-7,0],[-74,27],[-6,11],[-1,2],[-5,14],[-33,10],[-4,2],[-161,92],[-23,28],[7,7],[35,25],[4,7],[-1,8],[-24,67],[-1,4],[-30,84],[-10,22],[-5,8],[-64,47],[-50,-9],[-7,26],[4,23],[4,27],[-315,-8],[2,89],[255,7],[-35,34],[-10,10],[-20,14],[-22,15],[-30,21],[-6,4],[-30,22],[-7,4],[-44,17],[-2,1],[-9,3],[-9,1],[-7,-3],[0,-11],[-59,7],[-43,4],[-42,4],[-6,1],[-31,45],[-2,3],[-15,12],[-5,5],[-47,41],[-70,37],[-10,4],[-30,6],[-34,-1],[-18,4],[-5,2],[-1,0],[-5,3],[-1,0],[-1,87],[0,1],[0,1],[1,13],[22,2],[1,1],[13,5],[18,85],[-429,2],[-371,-5],[-98,-1],[-277,-4],[-198,-2],[-440,-6],[-45,0],[-77,0],[-145,0],[-149,0],[-17,0],[-100,0],[-33,0],[-343,0],[-200,0],[-215,0],[-129,1],[-294,-3],[-77,-1],[-78,-1],[-44,0],[-492,-7]],[[85433,40340],[-128,0],[-48,-1],[-161,0],[-142,-1],[-26,311],[-3,50],[-26,259],[-7,94],[-7,61],[-3,28],[-7,61],[-6,48],[-9,68],[-3,27],[-7,74],[-7,81],[-5,50],[0,3],[-5,59],[-4,45],[-19,204],[-7,74],[-16,191],[-4,46]],[[71239,43003],[-332,-7],[-446,-10],[-88,-2],[-252,-6],[-637,-14],[-109,-3],[-16,0],[-1,-33],[0,-45],[0,-33],[0,-92],[1,-250],[-130,0],[-2,0],[-73,-1],[-147,-1],[-1,-69],[0,-1],[6,-252],[2,-73],[1,-61],[1,-21],[7,-484],[1,-102],[3,-305],[2,-285],[8,-304],[3,-145],[3,-172],[0,-1],[3,-148],[3,-191],[1,-54],[2,-126],[4,-322],[4,-257],[4,-189],[3,-144],[2,-84],[0,-82],[0,-47],[1,-133],[1,-107]],[[69071,38347],[6,-234],[3,-113],[5,-222],[3,-98],[3,-86],[3,-98],[7,-210],[0,-3],[4,-235],[2,-89],[2,-107],[0,-31],[2,-97],[2,-118],[-128,1],[-97,-7],[-102,1],[-318,0],[-2,0],[-214,0],[-352,-1],[-233,0],[-545,0],[-90,0],[-35,0],[-89,0],[-168,0],[-228,0],[-96,0],[-385,0],[-9,0],[-218,-1],[-65,0],[-20,0],[-128,0],[-93,-10],[-290,-1],[-78,-1],[-34,0],[-180,0],[-549,-1],[-391,-2],[-33,0],[-147,0],[-3,0],[-17,0],[-20,-1],[-110,0]],[[63646,36583],[-387,-1],[-302,-1],[-375,-2],[-342,-1],[-228,-4],[-90,-1],[-276,-3],[-31,0],[-136,-2],[-171,-3],[-165,-3],[-49,0],[-43,-1],[-97,-1],[-39,-1],[-124,-2],[-237,-3],[-1,67],[0,2],[-2,80],[-1,100],[-1,83],[0,2],[-1,120],[0,64],[0,25],[-2,186],[0,3],[-1,330],[-2,440],[-7,89],[-1,22],[-10,99],[-6,59],[-4,34],[-67,1],[-30,0],[-104,1],[-49,0],[-52,-3],[-50,1],[-59,1],[-65,-1],[-47,-1],[-51,0],[-155,-1],[-272,-2],[-104,-1],[-56,0],[-72,-1],[-196,-2],[-561,-7],[-161,0],[-285,-3],[-39,0],[-388,-1]],[[57652,38340],[-7,312],[0,2],[1,19],[1,10],[1,43],[-4,175],[-1,27],[-2,34],[2,88],[-4,168],[0,79],[0,7],[3,35],[-1,3],[-8,131],[-2,34],[-2,20],[0,88],[0,46],[-1,58],[0,24],[0,82],[-5,67],[-5,123],[0,60],[0,1],[-1,82],[-2,72],[-1,69],[-2,37],[-3,24],[-1,32],[-1,60],[0,36],[-5,399],[-1,39],[2,55],[-5,212],[0,147],[0,89],[-1,35],[0,86],[-1,96],[-2,52],[-1,32],[-2,60],[-3,86],[0,6],[0,56],[-1,23],[-2,74],[-2,91],[-3,82],[0,52],[1,52],[2,70],[-42,11],[-32,5],[-20,27],[2,8],[5,18],[3,11],[-3,-1],[-80,-31],[-25,-10],[-80,-31],[-131,74],[-8,24],[0,1],[2,23],[5,5],[39,15],[7,7],[1,10],[0,1],[-3,5],[-11,14],[-119,64],[-7,3],[-1,1],[-110,39],[-4,0],[-80,4],[-1,-12],[-10,-6],[-11,-2],[-9,-1],[-3,1],[-12,2],[-25,11],[-67,29],[-13,6],[-8,3],[-15,19],[-29,10],[-12,4],[-14,-3],[-2,-1],[-13,-4],[-12,-8],[-8,-2],[-2,0],[0,-1],[-15,1],[-134,46],[-5,5],[-21,68],[0,1],[2,7],[5,6],[0,1],[1,0],[11,5],[-1,1],[-50,33],[-49,32],[-41,24],[-37,22],[-12,4],[-73,6],[-39,-2],[-103,-6],[-9,-1],[-31,-11],[-23,-9],[-34,-12],[-6,-2],[-17,-5],[-97,-27],[-14,-3],[-7,-2],[-179,45],[-8,-2],[-58,-12],[44,32],[10,18],[9,16],[0,15],[-4,4],[-3,5],[-87,85],[-40,38],[-4,5],[-47,33],[-25,17],[-36,26],[-14,10],[-8,15],[-37,13],[-4,4],[-1,14],[2,3],[2,3],[9,6],[28,5],[49,1],[26,8],[10,14],[-4,10],[-4,10],[-3,6],[-4,1],[-63,14],[-17,4],[-26,5],[1,5],[26,89],[10,32],[-8,12],[-2,4],[100,-9],[8,2],[5,2],[1,8],[-14,17],[-2,2],[0,1],[-27,18],[-17,5],[-16,2],[-5,0],[-34,-2],[-41,-8],[-12,0],[-9,1],[-8,5],[-2,1],[-4,6],[1,9],[0,5],[7,18],[26,36],[125,19],[11,5],[6,10],[-13,71],[3,22],[1,2],[0,2],[55,31],[7,5],[0,15],[-3,10],[-7,10],[-12,8],[-2,1],[-80,10],[-17,7],[-13,8],[-9,10],[-4,8],[0,7],[-1,21],[7,9],[16,10],[11,3],[21,-3],[12,-8],[20,-21],[25,-20],[27,-18],[20,-10],[37,-10],[11,1],[10,1],[5,1],[13,4],[9,11],[1,1],[5,12],[12,41],[2,6],[-84,97],[9,-1],[113,-4],[22,-9],[12,-2],[48,8],[25,-1],[-13,18],[-29,40],[-19,25],[-24,33],[-46,2],[-8,0],[12,5],[86,34],[8,10],[-1,9],[-3,5],[-2,2],[-1,2],[-10,6],[-13,2],[-10,0],[-5,0],[-133,-1],[-18,0],[-5,0],[-16,-8],[-66,-46],[-13,-5],[-22,-2],[-9,8],[0,7],[0,4],[1,3],[7,15],[41,93],[9,15],[8,6],[14,4],[14,1],[13,2],[46,1],[23,5],[27,8],[8,4],[13,14],[0,2],[0,2],[-1,12],[0,2],[-4,6],[-3,0],[-86,5],[-23,6],[-9,1],[-5,0],[-4,-1],[-98,-25],[-30,-3],[-24,4],[-9,6],[-3,5],[2,13],[6,6],[1,1],[7,6],[12,3],[23,2],[21,1],[14,5],[3,5],[-1,4],[-2,2],[-22,12],[-12,3],[-5,1],[-18,0],[-22,-3],[-6,0],[-42,-14],[-10,-12],[-17,-19],[1,-2],[-11,-48],[-23,-12],[-25,2],[-31,18],[-6,13],[1,3],[9,31],[-13,10],[-2,1],[-34,-3],[-16,-4],[-34,-8],[-3,0],[0,9],[0,3],[-1,6],[26,33],[6,6],[4,17],[4,12]],[[57652,38340],[3,-144],[269,3],[2,-51],[2,-72],[0,-22],[-74,-1],[-88,-1],[-108,-2],[1,-31],[2,-52],[4,-181],[2,-76],[3,-129],[-1,-23],[3,-272],[0,-3],[4,-210],[1,-64],[2,-56],[5,-268],[1,-40],[2,-118],[-40,4],[-128,11],[-72,7],[-40,0],[-44,1],[-293,-1],[-104,-1],[-64,0],[-420,-3]],[[56482,36545],[-45,0],[-165,-2],[-169,-1],[-113,-1],[-35,0],[-231,-1],[-61,0],[-88,0],[-58,-1],[-105,0],[-157,-1],[-216,-14],[-29,0],[-92,0],[-3,0],[-104,0],[-209,0],[-314,1],[-109,0],[-66,0],[-148,0],[-21,0],[-43,0],[-150,1],[-136,1],[-130,0],[-68,0],[-294,1],[-279,0],[-170,4],[-3,0],[-225,-3],[-577,1],[-317,-6],[-35,1],[-102,-1],[-59,0],[-51,0],[-74,-1],[-240,-1],[-348,-3],[-101,-1],[-31,-1],[-64,0],[-266,-3],[-123,-2],[-831,-9],[-22,0],[-372,-3],[-160,-1],[-595,-5],[-53,-4],[-630,-2],[-652,-5],[-107,-1],[-56,0],[-70,0],[-31,1],[-176,6],[-112,2],[-61,3],[-38,2],[-57,3],[-54,0],[-50,0],[-224,-3],[-51,0],[-189,-2],[-209,0],[-32,0],[-162,0]],[[45064,36494],[-2,72],[-7,335],[-8,343],[-2,39],[0,3],[-2,64],[0,1],[-10,563],[-2,106],[61,271],[-276,3],[-84,1],[-42,1],[-44,-1],[-39,-1],[-42,-1],[-43,-1],[-45,-1],[-41,-1],[-75,1],[-100,1],[-153,-2],[-71,-1],[-118,-2],[-171,-3],[-61,-1]],[[11150,37078],[26,-16],[69,-44],[24,-15],[35,-30],[5,-4],[8,-7],[26,-20],[7,-23],[-23,-13],[-10,-4],[-10,-5],[-107,-27],[-5,-1],[-7,-3],[-41,-16],[-40,-25],[-6,-4],[-3,-5],[-6,-9],[-7,-11],[-3,-22],[0,-5],[-2,-15],[4,-32],[21,-59],[1,-4],[8,-23],[28,-43],[24,-23],[20,-19],[30,-36],[38,-46],[-8,-32],[0,-2],[-7,-4],[-63,-35],[-20,-12],[-90,-44],[-53,-27],[-9,-5],[-11,1],[-11,1],[-23,1],[-16,11],[-26,17],[-42,66],[-59,55],[-89,55],[-41,16],[-14,5],[-53,11],[-43,1],[-77,3],[-56,-13],[-72,-29],[-20,-9],[-100,-53],[-53,-28],[-391,-178],[-7,-3],[-10,-10],[-10,-10],[0,-23],[0,-12],[25,-30],[113,-127],[26,-19],[4,0],[44,-1],[6,0],[106,48],[9,4],[90,19],[19,-1],[24,-1],[15,-1],[14,-5],[34,-13],[53,-40],[103,-100],[86,-104],[90,-108],[25,-30],[27,-17],[4,-3],[7,0],[16,-1],[10,-1],[9,2],[6,2],[11,3],[54,29],[19,20],[56,28],[241,123],[24,13],[25,19],[17,13],[28,17],[40,24],[36,19],[7,0],[51,-5],[12,-1],[6,-2],[17,-7],[32,-12],[31,-19],[49,-29],[36,-22],[17,-13],[85,-66],[31,-46],[0,-30],[0,-2],[-2,-3],[-17,-26],[-7,-11],[-18,-10],[-64,-34],[-3,-2],[-4,1],[-31,1],[-2,0],[-2,2],[-6,4],[-63,17],[-3,0],[-83,22],[-65,12],[-18,1],[-52,2],[-54,3],[-50,-5],[-44,-13],[-49,-27],[-26,-27],[-47,-48],[-28,-23],[-92,-73],[-67,-31],[-131,-35],[-7,-2],[-3,1],[-5,2],[-54,-2],[-69,-13],[-46,-2],[-165,8],[-13,0],[-34,-1],[-12,-1],[-90,-19],[-113,-39],[-60,-12],[-93,6],[-146,9],[-21,1],[-42,-6],[-22,-4],[-12,-2],[-36,-19],[-20,-23],[-55,-133],[-12,-46],[-55,-214],[-16,-21],[-9,-12],[0,-11],[1,-12],[-16,-20],[-4,-6],[-54,-99],[-12,-23],[-65,-160],[-5,-23],[-45,-66],[-12,-18],[-33,-33],[-58,-31],[-39,-13],[-80,-17],[-19,-5],[-59,-7],[-66,-31],[-6,-4],[-70,-50],[-7,-5],[-64,-75],[-6,-33],[-8,-40],[6,-19],[-27,-111],[-10,-16],[-26,-15],[-24,-14],[-23,-22],[-79,-93],[-40,-48],[-15,-26],[-2,-10],[0,-5],[-30,-38],[-22,-12],[-37,-22],[-26,-9],[-70,-24],[-4,-1],[-89,-43],[-1,-6],[-27,-87],[11,-43],[11,-23],[31,-66],[60,-75],[63,-80],[16,-20],[58,-54],[20,-19],[109,-118],[32,-47],[1,-4],[4,-17],[-5,-5],[12,-8],[17,-34],[3,-4],[1,-9],[9,-64],[5,-33],[0,-52],[-1,-17],[7,-23],[6,-23],[10,-36],[4,-5],[3,-4],[13,-29],[29,-65],[73,-60],[2,-2],[86,-67],[76,-54],[73,-51],[193,-113],[59,-27],[36,-10],[21,0],[41,0],[4,0],[17,4],[19,10],[21,11],[14,42],[15,15],[49,26],[146,42],[108,26],[55,20],[23,8],[107,20],[146,11],[116,-6],[75,-28],[4,-3],[14,-11],[20,-16],[15,-25],[20,-32],[22,-34],[33,-52],[21,-49],[19,-47],[74,-101],[57,-72],[14,-19],[10,-17],[10,-16],[1,-2],[11,-42],[9,-214],[-8,-92],[-2,-4],[0,-13],[17,-99],[32,-91],[40,-114],[8,-23],[18,-56],[13,-43]],[[10735,31013],[-141,-1],[-376,-4],[-125,-2],[-105,-1],[-275,-3],[-38,0],[-105,0],[-66,0],[-199,0],[-66,0],[-73,-1],[-220,-1],[-74,0],[-48,0],[-145,0],[-49,-1],[-92,0],[-275,0],[-91,-1],[-48,1],[-144,0],[-77,0],[-86,0],[-55,0],[-104,-1],[-55,0],[-165,0],[-56,0],[-30,0],[-93,0],[-31,1],[-114,-1],[-342,0],[-114,0],[-35,0],[-104,0],[-35,0],[-78,0],[-180,0],[-56,0],[-79,0],[-59,-1],[-176,0],[-33,0],[-38,-1],[-31,0],[-125,0],[-50,0],[-37,0],[-135,0],[-218,0],[-189,0],[-145,-1],[-14,0],[-95,0],[-34,0],[-64,0],[-32,0],[-96,0],[-50,0],[-111,0],[-69,0],[-261,-1],[-110,0],[-108,0],[-323,-2],[-108,0],[-56,0],[-170,-1],[-68,0],[-33,0],[-30,0],[-76,-1],[-36,0],[-107,0],[-36,0],[-29,-2],[-38,0],[-64,0],[-136,1],[-67,1],[-36,0],[-109,0],[-36,1],[-39,0],[-33,0],[-84,1],[-37,0],[-21,0],[-32,-2],[-86,-3],[-29,-1],[-44,0],[-131,0],[-44,1],[-77,0],[-234,2],[-77,0],[-29,0],[-88,1],[-49,-1],[-77,0],[-34,0],[-100,-1],[-33,0],[-53,-1],[-159,-1],[-53,0],[-43,0],[-129,-1],[-43,-1],[-30,0],[-90,0],[-29,-1]],[[246,30983],[-4,41],[-10,121],[-2,41],[0,30],[-1,89],[-1,32],[0,23],[0,22],[-1,65],[0,22],[-1,24],[0,10],[-8,103],[-2,34],[-6,87],[-19,258],[-5,88],[-2,26],[-7,84],[-2,29],[-3,45],[-9,135],[-3,45],[-4,43],[-9,131],[-4,58],[-3,46],[-1,17],[-1,8],[-3,36],[-1,34],[-1,21],[-3,39],[-2,31],[-1,28],[-8,141],[-2,47],[-1,27],[-5,79],[-2,43],[-2,51],[-2,25],[-1,35],[0,32],[-1,23],[-4,58],[-2,25],[-1,22],[-4,55],[-2,34],[-2,37],[-7,110],[-3,37],[-2,39],[-2,28],[-10,203],[-4,71],[0,3],[-1,22],[-5,40],[-7,97],[-2,32],[-6,65],[-3,26],[-2,31],[-3,31],[-6,61],[-3,43],[-5,73],[-2,22],[0,2],[-1,32],[-5,95],[-2,31],[0,25],[-3,74],[0,25],[0,1],[-1,20],[-2,48],[-1,19],[4,43],[0,2],[8,42],[13,91],[6,44],[10,68],[7,45],[27,159],[5,28],[7,40],[7,40],[21,119],[6,42],[9,52],[2,26],[8,36],[4,22],[5,38],[7,41],[2,10],[11,73],[15,96],[20,121],[13,72],[5,30],[15,88],[8,46],[12,68],[11,67],[10,53],[26,147],[11,67],[1,5],[3,14],[3,21],[21,122],[7,40],[4,27],[12,69],[1,3],[1,7],[5,37],[4,28],[5,24],[7,42],[0,2],[2,12],[6,37],[18,108],[6,37],[7,44],[21,132],[10,57],[5,33],[16,100],[10,51],[13,55],[6,27],[4,30],[0,2],[6,32],[15,95],[8,44],[5,31],[6,36],[10,59],[31,179],[10,60],[15,84],[43,252],[14,82],[0,2],[6,33],[17,99],[6,32],[6,36],[18,108],[6,36],[6,42],[21,124],[10,61],[13,78],[8,52],[14,84],[11,72],[8,50],[0,2],[4,23],[12,68],[5,32],[6,33],[5,33],[17,99],[5,33],[10,60],[30,181],[10,60],[5,29],[14,87],[5,29],[2,18],[5,52],[5,31],[2,8],[13,59],[6,32],[6,46],[6,29],[10,39],[3,13],[0,4],[7,40],[22,131],[7,43],[6,35],[18,102],[6,34],[4,26],[14,79],[4,26],[7,43],[14,80],[35,207],[11,69],[5,31],[7,40],[6,35],[5,30],[6,33],[15,79],[5,26],[9,43],[24,128],[4,22],[1,2],[3,27],[5,32],[1,8],[4,24],[0,1],[10,60],[28,181],[9,60],[3,14],[6,44],[6,35],[10,61],[3,22],[1,6],[6,38],[16,105],[6,36],[7,47],[22,141],[8,47],[1,10],[6,37],[22,138],[7,46]],[[85433,40340],[4,-103],[2,-47],[-116,0],[-137,-1],[-232,-1],[-2,-74],[-3,-222],[-2,-133],[-16,-205],[-10,-139],[-4,-75],[-2,-29],[-2,-37],[-5,-65],[-8,-119],[-5,-122],[-12,-278],[-7,-171],[-2,-153],[12,-109],[0,-7],[11,-99],[6,-45],[12,-100],[2,-75],[3,-113],[2,-63],[3,-161],[-365,-5],[-586,-7],[-5,62],[-8,105],[-226,-2],[5,-60],[9,-109],[-246,2],[-61,0],[-511,4],[-218,-5],[-136,-5],[14,-213],[-11,-75],[2,-3],[3,-7],[-277,-5],[-13,0],[-50,-1],[-33,-2],[-51,1],[-29,4],[-29,0],[-26,-16],[-119,-77],[-92,62],[-33,-1],[-227,-4],[-128,-3],[-454,-8],[-138,-3],[-112,-2],[-91,-1],[-34,2],[-130,4],[-65,-19],[-16,-5],[-6,-2],[-6,-1],[-15,-5],[-10,-3],[-53,-28],[-9,-7],[-20,-26],[2,-19],[10,-14],[7,-14],[4,-11],[10,-39],[0,-19],[0,-1],[0,-4],[-1,-13],[-39,-79],[-40,-59],[-38,-48],[-4,-5],[-15,-9],[-101,-55],[-1,-1],[-38,-16],[-6,-5],[-31,-36],[-11,-21],[-1,-14],[5,-10],[0,-13],[-14,-97],[0,-3],[-10,-56],[-1,-3],[-20,-25],[-3,-3],[-7,-7],[-69,-59],[-13,-11],[-85,-48],[-2,-1],[-21,-35],[-2,-2],[-76,-73],[-17,-8],[-47,-21],[-10,7],[-20,-16],[-18,-13],[-15,-11],[-29,-23],[-23,-18],[7,-5],[-16,-25],[-6,-10],[-77,-78],[-9,-6],[-61,-38],[-7,-5],[-54,-35],[-4,-2],[-28,-21],[-14,-10],[0,-5],[0,-2],[-23,-30],[-35,-45],[-8,-14],[-5,-11],[-20,-22],[-19,-12],[-27,-16],[-7,-6],[-110,-82],[0,-3],[-4,-69],[13,-20],[0,-8],[-115,-101],[-70,-27],[-29,-8],[-21,-2],[-7,-13],[-4,-7],[4,-30],[4,-31],[3,-22],[-82,-74],[-19,-29],[-4,-6],[1,-4],[0,-53],[17,-4],[5,-5],[0,-6],[-19,-128],[-6,-9],[-20,-19],[-15,-6],[-15,0],[-80,27],[-12,4],[13,-11],[1,-4],[15,-19],[17,-20],[-22,-23],[2,-31],[17,-30],[-20,-20],[-22,-22]],[[78532,34786],[-125,2],[-112,0],[-8,0],[-216,0],[-184,0],[-112,0],[-124,0],[-178,0],[-134,0],[-511,0],[-128,0],[-330,0],[-201,1],[-211,0],[-57,0],[-68,1],[-78,0],[-66,0],[-63,0],[-305,-2],[-30,0],[-8,0],[-471,0],[-2,156],[-1,146],[0,28],[1,86],[2,191],[0,48],[0,69],[0,65],[0,122],[3,68],[5,109],[6,125],[4,172],[4,129],[3,151],[0,28],[3,119],[-95,0],[-18,0],[-95,0],[-38,0],[-186,0],[-34,0],[-102,-1],[-146,0],[-26,0],[-200,-1],[-51,0],[-135,1],[-144,0],[-147,1],[-74,0],[-209,0],[-129,0],[-68,0],[-191,-1],[-280,0],[-164,0],[-99,1],[1,74],[1,104],[1,73],[0,53],[-69,-2],[-64,0],[0,47],[1,69],[0,34],[-102,2],[-3,102],[-2,63],[-2,64],[0,3],[-3,145],[-18,839],[-230,0],[-267,0],[-8,154],[-240,-1],[-166,-1],[-359,-1],[-198,-1],[-1,152],[-101,0],[-129,-2],[3,-75],[121,0],[-4,-75],[-237,0],[-131,-2],[-28,0],[-50,0],[-4,0],[-266,-1],[0,-66],[-104,-2],[-123,-2],[0,-75],[-58,0],[-179,0],[0,73],[-120,2]],[[45064,36494],[-56,-1],[-9,0],[-56,0],[-40,0],[-28,0],[-22,0],[-138,-3],[-136,-7],[-319,0],[-8,0],[-535,0],[-86,0],[0,-41],[5,-174],[9,-411],[-2,-23],[2,-22],[-4,-159],[-1,-83],[8,-122],[5,-39],[2,-175],[2,-89],[2,-62],[2,-93],[1,-23],[3,-106],[5,-182],[-2,-38],[3,-68],[5,-90],[5,-103],[2,-22],[-2,-47],[-1,-36],[-2,-70],[-1,-89],[-1,-22],[0,-2],[0,-45],[2,-69],[4,-74],[0,-2],[5,-113],[-2,-38]],[[43685,33751],[-283,2],[-185,1],[-53,-2],[-236,-2],[-80,-1],[-31,0],[-38,-1],[-61,0],[-46,-1],[-136,-1],[-268,-3],[-40,-1],[-55,0],[-63,0],[-213,-2],[-23,0],[-81,0],[-47,-1],[-364,-1],[-290,-1],[-224,-1],[-173,-2],[-168,-1],[-61,-1],[-92,0],[-100,-1],[-117,0],[-5,0],[-109,0],[-58,-1],[-290,-3],[-216,-1],[-43,0],[-233,-1],[-123,-2],[-131,-1],[-59,-1],[-131,0],[-107,-1],[-104,0],[-58,-1],[-23,0],[-18,0],[-108,-1],[-34,-1],[-50,0],[-31,1],[-30,1],[-37,-1],[-55,-2],[-28,1],[-33,-1],[-45,0],[-48,1],[-29,-1],[-28,-9],[-34,0],[-28,8],[-50,0],[-136,-1],[-40,-11],[-290,0],[-132,1],[-491,1],[-142,0],[-85,0],[-243,1],[-83,0],[-44,0],[-353,1],[-45,0],[-253,0],[-24,0],[-120,0],[-180,0],[-120,18],[-85,13],[-191,30],[-126,2],[-77,1],[-112,2],[-139,3],[-151,-9],[-63,0],[-58,-1],[-432,0],[-99,0],[-244,0],[-41,0],[-163,-1],[-21,0],[-44,-1],[-13,0],[-170,0],[-64,-1],[-128,-1],[-204,-1],[-36,1],[-81,-1],[-45,0],[-78,-1],[-228,-3],[-36,-1],[-383,-2],[-62,1],[-65,1],[-35,-1],[-49,-1],[-82,-3],[-326,-2],[-34,0],[-203,0],[-174,-4],[-31,-1],[-5,0],[-35,-1],[-186,-5],[-174,-2],[-97,-1],[-153,-1],[-14,0],[-202,-3],[-342,-3],[-120,-1],[-80,-1],[-43,0],[-232,-1],[-484,-2],[-188,0],[-77,0],[-389,6],[-56,-1],[-404,-6],[-30,0]],[[27116,33722],[-38,-1],[-6,0],[-38,0],[-409,-10],[-145,-3],[-80,-2],[-218,-5],[-43,-1],[-114,-2],[-44,-1],[-36,-1],[-237,-5],[-150,-4],[-56,-1],[-155,-1],[-290,-1],[-222,-2],[-133,-2],[-118,0],[-28,-1],[-45,0],[-418,0],[-298,-1],[-2,110],[-4,241],[-2,74],[-3,33],[-5,193],[-6,223],[-1,28],[-113,42],[-172,57],[-52,19],[-75,-1],[-311,-2],[-31,0],[-411,-3],[-115,0],[0,22],[0,21],[-3,205],[0,3],[-2,193],[-2,253],[-2,107],[-2,202],[-2,164],[-4,422],[0,29],[-1,45],[0,37],[0,18],[0,3],[-1,40],[0,15],[-1,96],[-1,59],[0,47],[-3,260],[-1,119],[-1,50]],[[95314,38597],[-2,-70],[-9,-95],[-23,-103],[9,-46],[-5,-30],[5,-69],[11,-25],[2,-4],[18,-21],[11,-40],[-7,-59],[-33,-34],[0,-1],[-6,-36],[3,-28],[7,-12],[78,-62],[27,-40],[26,-38],[-3,-42],[-5,-5],[-3,-4],[-19,-14],[-3,-6],[-17,-32],[-13,-92],[-3,-20],[-25,-38],[-33,-31],[-136,-61],[-53,-66],[-5,-6],[-34,-69],[-17,-7],[-2,-5],[-2,-3],[-30,-47],[-11,-25],[-14,-21],[-7,-21],[-11,-23],[-7,-36],[0,-24],[2,-30],[-1,-14],[-1,-21],[-9,-29],[-3,-4],[-22,-25],[-25,-27],[-14,-25],[0,-25],[14,-30],[11,-25],[20,-21],[30,-20],[23,-21],[21,-27],[4,-5],[14,-29],[0,-27],[-14,-21],[-14,-25],[-25,-33],[-42,-25],[-25,-10],[-36,-12],[-23,-7],[-44,-13],[-39,-6],[-48,-6],[-39,-4],[-39,-7],[-47,-4],[-48,-8],[-12,-5],[-24,-10],[-23,-14],[-27,-23],[-14,-32],[8,-27],[25,-27],[25,-25],[12,-21],[5,-25],[6,-23],[5,-22],[3,-11],[11,-29],[14,-34],[9,-29],[58,-57],[28,-16],[17,-21],[-31,-27],[-44,-14],[-31,-11],[-31,-10],[-31,-11],[-47,-29],[-22,-16],[-20,-17],[-30,-33],[-31,-38],[-31,-33],[-36,-21],[-31,-11],[-28,-8],[-28,-6],[-27,-6],[-45,-13],[-36,-21],[-20,-25],[-11,-44],[-3,-23],[-8,-25],[-9,-20],[-30,-28],[-42,-14],[-47,-13],[-28,-18],[-34,-13],[-36,-4],[-18,-10],[-13,-7],[-36,-10],[-34,-19],[-11,-25],[11,-23],[16,-8],[10,-4],[55,-25],[20,-19],[19,-19],[12,-23],[-23,-23],[-33,-4],[-42,-6],[-20,-17],[3,-31],[17,-29],[14,-30],[11,-33],[-17,-25],[-22,-19],[-31,-18],[-25,-11],[-27,-6],[-29,-2],[-27,-2],[-37,4],[-44,4],[-31,0],[-81,-10],[-28,1],[-39,3],[-24,1],[-20,1],[-48,0],[-39,0],[-39,-2],[-19,-5],[-20,-6],[-14,-21],[1,-1],[7,-26],[16,-20],[8,-10],[7,-9],[36,-31],[25,-32],[27,-39],[2,-3],[2,-3],[8,-13],[17,-32],[9,-27],[0,-31],[-1,-5],[-5,-20],[-18,-23],[-24,-23],[-28,-31],[-42,-31],[-30,-36],[-20,-41],[-8,-38],[-14,-42],[-17,-37],[-33,-25],[-34,-25],[-39,-17],[-18,-20],[-6,-6],[-4,-28],[2,-4],[9,-25],[23,-38],[30,-31],[17,-42],[0,-39],[0,-46],[-17,-36],[-36,-29],[-36,-25],[-25,-35],[13,-38],[27,-36],[12,-16],[20,-29],[42,-42],[36,-27],[35,-15],[41,-14],[33,-21],[17,-29],[-36,-17],[-36,-30],[13,-55],[25,-25],[23,-23],[17,-21],[11,-27],[2,-48],[-8,-46],[-22,-52],[-17,-52],[3,-50],[8,-50],[6,-38],[-5,-23],[-9,-31],[3,-25],[11,-36],[0,-37],[-17,-38],[-53,-35],[-19,-15],[-28,-21],[-31,-29],[-31,-31],[-28,-24],[-36,-30],[-23,-25],[21,-38],[19,-16],[47,-30],[48,-27],[61,-33],[54,-31],[49,-27],[39,-23],[10,-5],[15,-8],[39,-23],[23,-14],[25,-19],[14,-23],[-3,-25],[-8,-29],[-17,-23],[-28,-14]],[[93327,32335],[-25,12],[-32,9],[-66,30],[-19,25],[-31,4],[28,13],[-31,0],[-25,12],[-36,12],[-50,16],[-45,2],[-19,-25],[-15,-11],[-10,-8],[-29,16],[-5,2],[-25,12],[17,20],[-39,10],[28,17],[-44,8],[-29,11],[-41,18],[-23,8],[-7,3],[-2,0],[-36,-2],[-40,11],[-4,4],[-15,14],[-10,-3],[-20,-5],[-38,-8],[-4,0],[-24,1],[-4,-4],[-17,-15],[-2,-1],[-23,-21],[-30,0],[-13,1],[-50,-10],[-10,-7],[-11,-9],[-7,-26],[-30,-20],[10,-23],[11,-21],[-9,-23],[-32,-12],[-24,-21],[-47,-21],[9,-31],[-19,-20],[-41,4],[-35,14],[-28,3],[-27,-12],[-21,-16],[-27,-20],[-1,-21],[-22,-21],[-49,-15],[-33,-8],[6,-22],[-16,-19],[-37,4],[-36,-4],[-39,-10],[-46,10],[-30,-12],[8,-27],[-25,-17],[-40,-7],[-49,-21],[-22,-17],[-9,-21],[-21,-28],[-36,0],[-21,15],[-37,7],[-43,-13],[-83,-50],[-36,-15],[-27,-11],[-42,-7],[-40,2],[-45,5],[-57,-14],[-38,-29],[-8,-22],[2,-34],[-1,-34],[-17,-19],[-29,-46],[-12,-28],[-5,-42],[-3,-50],[-21,-18],[-25,-23],[-5,-29],[4,-36],[-8,-26],[-2,-38],[1,-38],[-9,-23],[15,-28],[27,-27],[14,-24],[7,-29],[-24,-43],[-22,-21],[-62,-38],[-22,-20],[-64,-72],[-131,2],[-345,12],[-164,6],[-108,3],[-53,2],[-143,5],[-148,2],[-2,0],[-48,1],[-28,0],[-180,3],[-323,4],[-4,0],[-49,1],[-357,5],[-566,9],[-205,13],[-34,1],[-319,3],[-32,0],[-54,1],[-293,-6],[-51,-1],[-3,1],[-37,2],[-91,4],[-40,1],[-34,4],[-320,-1],[-202,-1],[-66,1],[-342,4],[-291,3],[-198,2],[-315,3],[-1,-49],[1,-46],[1,-65],[1,-67],[0,-33],[2,-169],[0,-63],[0,-30],[-10,-86],[-6,-257],[1,-61],[0,-22],[0,-31],[12,-159],[-1,-57],[-6,-351],[-1,-59],[-1,-54],[0,-6],[0,-30],[-5,-123]],[[85260,29349],[-239,4],[-2,0],[-201,3],[-29,1],[-776,12],[-49,1],[-115,1],[-223,-1],[-129,-1],[-331,-2],[-161,-1],[-74,-1],[-258,-7],[-94,-3],[-165,-5],[-7,0],[-31,-1],[-236,-6],[-220,-5],[-76,-2],[-276,-8],[-73,-2],[-178,-4],[-147,-4],[-144,-3],[-363,-5],[-7,0],[-109,-1],[-94,0],[-176,1],[-196,1],[-84,0],[-61,1],[-244,1],[-91,0],[-72,0],[-84,-1],[-83,0],[-240,1],[-275,0],[-82,0],[-58,0],[-292,1],[-302,1],[-207,0],[-303,1],[-6,0],[-72,1],[-71,0],[-240,2],[-128,2],[-456,-1],[-36,0],[-41,-1],[-31,0],[-32,3],[-396,-3],[-43,0],[-12,0],[-33,0]],[[76006,29319],[25,28],[34,-4],[35,2],[2,1],[69,0],[14,7],[28,13],[2,1],[125,80],[14,9],[91,77],[38,34],[33,45],[5,6],[0,4],[0,4],[-20,60],[-7,18],[43,5],[7,1],[2,4],[9,39],[14,27],[1,4],[10,30],[18,26],[18,29],[10,17],[3,1],[31,8],[4,3],[3,2],[38,26],[38,26],[2,1],[10,2],[15,7],[18,14],[1,1],[3,3],[19,25],[67,85],[21,104],[-2,12],[-2,1],[-4,-1],[-11,-2],[-10,-5],[-10,1],[-5,6],[-30,73],[14,66],[9,8],[58,18],[-44,137],[8,5],[10,8],[-14,8],[-2,15],[-5,52],[1,11],[5,25],[15,48],[5,15],[20,76],[0,6],[-5,8],[-10,5],[-31,43],[-7,9],[-29,19],[-6,3],[-13,8],[-7,14],[-3,44],[36,24],[2,0],[137,30],[10,0],[4,2],[27,57],[18,45],[0,4],[-2,3],[-10,14],[71,27],[13,5],[67,29],[14,9],[10,22],[1,10],[-16,24],[-19,32],[-4,0],[1,27],[1,16],[1,13],[0,2],[1,7],[1,18],[2,23],[2,30],[-22,25],[-14,10],[1,5],[63,45],[2,1],[26,-13],[8,1],[34,53],[0,3],[-40,23],[-13,21],[-16,25],[1,4],[25,36],[2,4],[7,6],[9,8],[3,16],[7,28],[6,26],[4,15],[9,42],[4,13],[0,1],[26,57],[2,5],[7,17],[18,13],[47,36],[5,17],[6,5],[7,6],[84,63],[4,4],[7,3],[4,1],[11,2],[42,-4],[5,2],[8,4],[12,7],[26,14],[7,7],[0,5],[-12,11],[40,2],[151,68],[-1,9],[-5,8],[0,1],[12,23],[13,-1],[11,-1],[9,0],[23,-1],[82,13],[31,8],[0,7],[55,40],[36,-1],[26,-1],[6,0],[80,48],[55,73],[9,12],[7,10],[1,2],[1,2],[-3,7],[-6,15],[-1,2],[4,1],[2,1],[71,116],[0,8],[-26,14],[-27,17],[-8,7],[5,8],[3,4],[8,8],[16,16],[-1,7],[1,24],[8,40],[6,5],[31,27],[15,9],[2,0],[27,10],[10,1],[2,0],[15,9],[10,10],[1,2],[7,26],[0,2],[0,10],[-7,10],[-30,6],[-59,44],[-30,26],[1,7],[4,5],[2,30],[0,7],[0,4],[-3,21],[-2,8],[-3,4],[-29,24],[-9,7],[-15,3],[-12,-1],[-9,-13],[-8,0],[-7,1],[-20,20],[-7,10],[-6,30],[2,3],[20,44],[0,3],[-1,4],[-9,27],[-15,24],[-8,8],[-18,18],[-43,63],[-5,9],[0,24],[4,4],[16,10],[21,4],[15,153],[0,1],[-7,45],[-31,9],[-28,12],[-3,3],[1,5],[51,71],[6,8],[2,2],[15,36],[5,13],[12,27],[3,6],[6,29],[6,27],[2,8],[2,8],[16,119],[1,25],[1,19],[1,7],[9,13],[-1,5],[-80,117],[-21,26],[-27,19],[-8,5],[-28,5],[-28,6],[-8,8],[-29,78],[-8,42],[1,23],[15,15],[33,23],[21,2],[28,1],[90,89],[-12,4],[-2,4],[2,4],[10,7],[19,12],[20,12],[44,23],[23,19],[95,81],[12,15],[7,9],[26,72],[2,5],[7,1],[17,8],[15,7],[31,15],[28,26],[-15,25],[33,11],[22,15]],[[76006,29319],[-48,-3],[-28,0],[-391,1],[-17,0],[-63,0],[-62,0],[-41,0],[-149,0],[-67,0],[-185,0],[-90,0]],[[74865,29317],[-177,1],[-104,1],[-24,0],[-104,0],[-304,2],[-346,1],[-147,1],[-223,1],[-236,1],[-63,0],[-247,2],[-158,0],[-79,1],[-155,1],[-136,0],[-569,4],[-150,1],[-270,2],[-104,1],[-193,1],[-7,0],[-10,0],[-36,0],[-53,0],[-14,0],[-186,1],[-158,0],[-130,0],[-146,1],[-69,0],[-147,0],[-102,1],[-254,1],[-195,1],[-38,0],[-90,0],[-80,1],[-85,0],[-161,1],[-130,0],[-114,-5],[-731,-2],[-6,0],[-174,-1],[-533,-2],[-57,0],[-121,-1],[-304,-3],[-94,-1],[-336,-2],[-182,-2],[-332,-1],[-108,-1],[-156,-1],[-207,-2],[-32,-2],[-317,-3],[-268,-3]],[[64913,29313],[-402,-3],[-73,-1],[-115,-6],[-351,-18],[11,24],[-10,18],[-1,1],[1,33],[-3,4],[-1,39],[-2,63],[1,3],[15,6],[3,1],[-2,2],[-10,12],[1,5],[7,21],[13,11],[69,29],[43,45],[83,11],[35,102],[1,3],[44,42],[40,30],[66,8],[11,-2],[18,-4],[12,-3],[9,-1],[9,1],[3,0],[4,1],[10,3],[18,11],[3,6],[8,24],[3,11],[1,2],[9,32],[2,7],[18,62],[0,3],[-8,0],[-7,1],[-4,4],[7,7],[44,35],[23,14],[-79,62],[71,68],[62,62],[4,1],[17,4],[46,13],[82,21],[11,-1],[11,0],[57,12],[28,5],[0,3],[6,187],[2,45],[-3,127],[-2,79],[-1,22],[0,3],[-2,110],[-1,25],[0,22],[0,27],[0,30],[-1,141],[-2,267],[-2,208],[-1,191],[4,145],[4,167],[2,109],[2,63],[0,90],[-2,45],[-2,60],[-3,104],[-3,84],[-4,42],[-24,269],[-358,-3],[-359,-2],[-263,-2],[-323,-3],[-120,-1],[-1,154],[0,39],[0,37],[0,124],[0,9],[22,17],[42,2],[35,11],[3,30],[6,1],[16,0],[10,1],[47,26],[-15,24],[7,33],[-3,27],[0,26],[-8,33],[21,20],[28,30],[8,5],[29,20],[30,11],[34,21],[13,26],[29,41],[20,19],[22,12],[10,4],[27,22],[13,23],[10,34],[-2,4],[-9,20],[-8,4],[-27,14],[-7,24],[-24,14],[-9,41],[-1,5],[13,35],[15,52],[16,24],[23,32],[2,3],[2,25],[0,2],[-10,26],[-8,26],[-4,23],[0,2],[2,15],[1,9],[6,35],[14,49],[16,31],[0,15],[0,12],[-5,24],[5,27],[27,20],[-1,26],[-21,19],[8,18],[1,2],[4,2],[26,11],[29,-7],[8,24],[-2,22],[-10,19],[-5,23],[-10,-1],[-22,-3],[2,25],[4,3],[22,19],[35,6],[-12,22],[7,9],[7,11],[8,11],[4,26],[-13,30],[-1,20],[0,3],[29,13],[17,33],[8,24],[-5,22],[27,16],[-4,26],[-13,30],[22,21],[37,3],[23,12],[12,22],[16,27],[8,22],[5,35],[-18,22],[-13,20],[-7,35],[18,25],[-6,23],[-23,21],[-21,16],[-11,22],[2,29],[-1,33],[2,4],[17,32],[-2,22],[-1,9],[-5,38],[2,41],[-1,38],[1,21],[0,3],[17,21],[0,29],[-5,22],[-19,24],[-13,34],[-1,2],[-10,18],[-11,22],[-2,3],[-19,25],[3,5],[7,15],[2,4],[18,76],[6,5],[13,15],[13,22],[-26,20],[-21,16],[-4,8],[-8,14],[-32,18],[-24,16],[-3,36],[0,2],[14,13],[2,3],[1,1],[-8,30],[-12,28],[-12,25],[-29,16],[-19,23],[-6,23],[1,7],[1,12],[0,2],[9,25],[2,34],[-14,36],[-9,25],[-1,2],[-20,17],[-6,27],[-5,21],[-9,20],[-21,28],[-12,34],[-16,61],[-27,12],[-25,17],[-6,4],[-35,1],[-19,17],[-43,39]],[[64913,29313],[8,-212],[7,-227],[2,-42],[9,-274],[5,-163],[2,-60],[2,-47],[2,-86],[11,-326],[2,-74],[6,-159],[-178,-1],[-180,-2],[6,-153],[-711,-3],[-117,0],[-85,-1],[-153,-1],[1,-92],[0,-23],[2,-96],[3,-238],[1,-60],[1,-112],[9,-62],[0,-1],[-2,-30],[2,-196],[2,-135],[0,-131],[3,-91],[-1,-147],[0,-115],[1,-208],[1,-138]],[[63574,25607],[-151,12],[-316,23],[-124,-1],[-41,0],[-50,-1],[-50,0],[-33,0],[-58,-2],[-40,0],[-118,0],[-3,0],[-299,-3],[-159,-1],[-33,1],[-87,2],[-115,-2],[-147,-3],[-8,0],[-63,-1],[34,219],[13,84],[-96,0],[-82,-1],[-291,-1],[-9,390],[-1,67],[-2,119],[-1,41],[-1,38],[-2,116],[-2,92],[-1,46],[-5,117],[-1,32],[-1,57],[-1,44],[-3,46],[-3,32],[-9,52],[-10,43],[-7,39],[-14,71],[-5,29],[-10,49],[-112,-3],[-95,1],[-35,0],[-58,1],[-162,0],[-58,0],[30,-13],[-14,-19],[-30,-2],[12,-27],[-1,-9],[4,-30],[-1,-4],[-83,-56],[-13,-4],[-56,-2],[-2,0],[-2,-1],[-2,-2],[-37,-23],[-123,-65],[-93,-36],[-2,-1],[-19,-5],[-23,-7],[-2,-1],[-79,-43],[-12,-6],[-13,-21],[-13,-22],[-8,-13],[-4,-7],[1,-23],[5,-3],[6,-12],[1,-7],[2,-13],[-11,-11],[-134,-45],[-33,-10],[-79,-25],[-13,-1],[-34,7],[-6,-1],[-7,-3],[4,-3],[20,-21],[5,-21],[1,-2],[-36,-24],[-8,-9],[-54,-56],[-12,-13],[-9,-9],[-3,-4],[-54,-54],[-63,-64],[-2,-1],[-37,-12],[-31,-3],[-17,3],[-9,4],[-45,30],[-66,30],[-9,2],[-16,-2],[-1,-2],[-28,-35],[1,-2],[4,-10],[14,-37],[1,-3],[4,-11],[-51,3],[-10,0],[-154,10],[-10,8],[-33,22],[-71,3],[-16,0],[-6,1],[-8,0],[0,-7],[0,-6],[-6,-3],[-9,-3],[-5,-1],[-55,-15],[-2,-1],[-10,-1],[-10,3],[-5,5],[0,9],[0,7],[-2,4],[-18,2],[-10,-6],[-1,-8],[0,-2],[13,-42],[0,-6],[0,-4],[-32,-71],[-8,-5],[-14,-4],[-32,0],[-4,-2],[-3,-2],[-4,-3],[-5,-17],[-1,-9],[-4,-20],[-6,-5],[-52,-38],[-83,-62],[-3,0],[-23,-1],[-52,-3],[-5,-1],[-32,-3],[-16,-18],[-12,-25],[18,-10],[45,-24],[5,-6],[1,-5],[-2,-3],[-8,-4],[-21,-9],[-10,-4],[-13,-6],[-11,0],[-4,0],[-11,0],[-3,-4],[-12,-24],[-15,1],[-6,1],[-57,-23],[-51,-36],[-6,-4],[-34,-24],[-5,-10],[-19,-41],[14,-8],[15,-9],[-22,-2],[-12,-1],[-8,0],[-42,-16],[-34,-12],[-65,-21],[-7,-2],[-49,-34],[-14,-14],[-6,-8],[-30,-32],[-2,-3],[-7,-7],[-8,1],[-15,-6],[-49,10],[-2,3],[-16,15],[-1,38],[0,23],[0,5],[0,5],[-1,27],[0,14],[-5,159],[-2,56],[0,6],[-2,63],[-1,24],[-4,154],[-3,119],[-1,30],[-8,289],[-1,51],[-1,43],[-3,187],[-2,69],[-4,203],[-174,-13],[-57,-4],[-141,-10],[-58,-5],[-94,-1],[-160,0],[-140,0],[-146,-1],[-695,-1],[-162,0],[-534,-1],[-41,0],[-2,0],[-328,-1],[-36,0]],[[55060,27386],[-2,190],[0,103],[-2,303],[-123,3],[-6,305],[112,1],[20,-6],[-1,115],[-2,415],[0,63],[-1,80],[0,94],[-1,58],[0,117],[-1,53],[-1,117],[1,31],[1,58],[0,5],[-2,227],[-1,321],[0,56],[245,0],[146,1],[277,2],[480,3],[56,0],[140,1],[75,0],[0,77],[3,181],[1,94],[3,241],[36,199],[31,157],[1,43],[3,174],[2,69],[1,51],[-3,115],[-3,138],[0,76],[-3,242],[-1,81],[0,2],[-6,31],[2,193],[122,-1],[-2,119],[0,191],[-121,-1],[-2,27],[0,42],[-2,43],[-1,80],[3,268],[-3,136],[0,83],[2,53],[-2,137],[1,46],[0,36],[-1,110],[1,138],[47,0],[68,0],[0,27],[0,54],[62,0],[48,0],[0,105],[0,47],[-103,1],[-21,47],[1,26],[-108,1],[-5,89],[-5,100],[-4,71],[-2,22],[-5,100],[-4,129],[-7,42],[8,46],[-1,123],[0,153],[0,86],[-1,64],[-1,129],[0,77],[0,45],[0,47],[1,83],[0,33],[0,54],[1,43],[-1,85],[-1,60],[0,293],[-2,242],[-10,189],[-5,59]],[[27116,33722],[2,-15],[1,-19],[0,-105],[0,-175],[-486,5],[3,-97],[5,-187],[2,-59],[1,-32],[3,-112],[2,-54],[5,-191],[15,-497],[1,-43],[2,-68],[12,-394],[7,-446],[1,-50],[0,-12],[1,-64],[2,-125],[-66,0],[-22,-1],[-31,0],[-701,-7],[-82,-1],[-512,-6],[1,-74],[3,-215],[4,-237],[1,-68],[1,-73],[1,-70],[1,-35],[0,-2],[0,-40],[7,-514],[1,-44],[0,-48],[1,-80],[-2,-143],[1,-77],[1,-166],[1,-83],[0,-57],[2,-239],[3,-247],[0,-46],[0,-10],[3,-124],[0,-49],[0,-54],[10,-197],[-6,-2],[-170,-71],[-13,-5],[-169,-80],[-53,-28],[-132,-80],[-109,-70],[-83,-58],[-78,-59],[-63,-49],[-16,-13],[-33,-18],[-25,-14],[-10,-6],[-39,-11],[-70,-10],[-6,-1],[-164,-44],[-34,-11],[-112,-28],[-26,-4],[-12,-2],[-80,-40],[-33,-32],[-4,-4],[-16,-16],[-1,-10],[-1,-7],[-9,-59],[18,-22],[30,-23],[298,-180],[118,-57],[30,-14],[160,-65],[132,-39],[120,-29],[48,-12],[161,-63],[4,-1],[123,-39],[3,1],[6,1],[121,-46],[126,-48],[28,-11],[18,-13],[24,-17],[22,-15],[22,-23],[9,-16],[32,-53],[12,-21],[-15,-46],[-17,-155],[-26,-64],[-42,-63],[-5,-8],[-46,-92],[-3,-13],[-30,-106],[-9,-34],[-9,-7],[-18,-36],[-11,-47],[-8,-31],[-64,-102],[-27,-30],[-17,-18],[-8,-5],[-11,-7],[-49,-34],[-130,-69],[-19,-7],[-11,-4],[-30,-17],[-150,-84],[-101,-104],[-78,-80],[-4,-4],[-15,-14],[-80,-43],[-9,-3],[-100,-35],[-39,-11],[-90,-24],[-80,-9],[-63,4],[-7,0],[-29,2],[-16,3],[-135,25],[-10,2],[-9,4],[-120,48],[-42,21],[-70,35],[-37,28],[-31,24],[-68,45],[-122,79],[-12,8],[-15,9],[-80,36],[-5,3],[-47,16],[-91,5],[-63,-7],[-71,-4],[-7,3],[-7,-4],[-2,-1],[-106,-13],[-35,-1],[-23,-1],[-127,-21],[-23,-8],[-111,-36],[-5,-1],[-61,-26],[-67,-36],[-248,-149],[-47,-38],[-14,-11],[-9,-5],[-98,-52],[-91,-30],[-72,-9],[-19,-3],[3,-2],[-38,-4],[-79,-8],[-33,-4],[-39,-4],[-30,-4],[-46,-13],[-36,-13],[-30,-13],[-27,-18],[-29,-28],[-27,-35],[-26,-39],[-97,-172],[-26,-37],[-34,-40],[-37,-31],[-39,-28],[-38,-25],[-84,-44],[-26,-10],[-22,-18],[-31,-31],[-23,-17],[-19,-30],[-2,-17],[-2,-15],[4,-12],[11,-36],[8,-27],[27,-41],[20,-23],[27,-30],[23,-75],[-1,-49],[0,-86],[0,-83],[-11,-53],[-14,-68],[0,-2],[-8,-12],[-19,-30],[-2,-2],[-26,-24],[-41,-26],[-71,-33],[-68,-27],[-2,-1],[-36,-11],[-84,-24],[-81,-20],[-47,-5],[-12,-2],[-10,0],[-110,4],[-56,9],[-61,22],[-14,5],[-4,2],[-27,16],[-52,40],[-17,29],[-8,33],[-2,26],[-1,13],[2,13],[13,97],[34,153],[0,17],[0,5],[0,10],[-5,12],[-11,23],[-9,14],[-18,30],[-13,14],[-19,22],[-35,26],[-3,2],[-19,9],[-56,16],[-62,4],[-63,-7],[-53,-32],[-16,-22],[-3,-15],[-9,-40],[-2,-76],[3,-14],[10,-47],[13,-27],[2,-43],[-3,-23],[-11,-21],[-5,-5],[-22,-26],[-8,-9],[-17,-13],[-33,-25],[-28,-21],[-35,-20],[-85,-48],[-108,-61],[-117,-72],[-10,-6],[-44,-52],[-4,-13],[-11,-34],[-7,-55],[1,-21],[0,-2],[25,-175],[0,-3],[6,-18],[17,-57],[71,-83],[3,-2],[1,-3],[24,-20],[23,-22],[36,-22],[30,-15],[31,-16],[37,-14],[34,-11],[45,-11],[47,-16],[42,-15],[31,-13],[19,-14],[7,-4],[16,-22]],[[19750,22634],[-2,-22],[-14,-23],[-22,-16],[-34,-8],[-29,-6],[-34,-3],[-45,1],[-39,10],[-37,12],[-46,17],[-52,24],[-30,14],[-30,6],[-36,1],[-35,3],[-40,1],[-51,-2],[-41,-4],[-34,-5],[-18,32],[-30,6],[-28,5],[-32,8],[-27,13],[-31,21],[-33,26],[-31,31],[-20,23],[-9,26],[-10,30],[2,21],[-10,48],[3,40],[-14,46],[-13,28],[-31,8],[-42,22],[-45,16],[-39,-3],[-40,-12],[-35,-21],[-24,-22],[-12,-20],[-6,-21],[-12,-37],[-8,-42],[10,-42],[13,-38],[28,-22],[23,-16],[25,-19],[32,-19],[31,-17],[33,-16],[16,-22],[43,-33],[19,-18],[29,-27],[25,-22],[18,-19],[53,-48],[-3,-30],[8,-25],[25,-39],[27,-22],[29,-17],[64,-27],[120,-30],[19,-12],[33,-28],[14,-22],[-8,-52],[-33,-35],[-76,-38],[-12,-3],[-46,-13],[-36,-20],[-19,-10],[-21,-8],[-36,-13],[-140,0],[-132,5],[-133,46],[-36,13],[-55,22],[-81,35],[-71,31],[-104,24],[-62,3],[-42,-5],[-39,-16],[-8,-4],[-14,-6],[-3,-4],[-35,-41],[-2,-3],[-4,-11],[-12,-26],[-2,-6],[-12,-46],[-9,-33],[-16,-65],[-7,-25],[0,-32],[-41,-58],[-46,-40],[-5,-5],[-50,-26],[-17,-9],[-27,-6],[-71,-15],[-22,-8],[-12,-4],[-27,-14],[-7,-55],[28,-36],[20,-15],[14,-10],[39,-10],[27,-20],[6,-11],[0,-6],[-3,-20],[-2,-16],[-4,-5],[-3,-3],[-13,-15],[-18,-10],[-4,-2],[-22,-11],[-22,-7],[-51,-16],[-41,-21],[-19,-23],[-2,-14],[-4,-28],[6,-21],[13,-24],[49,-37],[62,-25],[13,-1],[82,-28],[27,-20],[5,-18],[-3,-24],[-19,-23],[-54,-31],[-41,-15],[-15,1],[-43,1],[-6,0],[-35,13],[-30,23],[-3,17],[-4,28],[-42,52],[-63,50],[-15,12],[-4,3],[-42,24],[-32,9],[-34,6],[-15,2],[-53,3],[-20,1],[-12,-3],[-54,-13],[-20,-5],[-44,-24],[-37,-27],[-43,-43],[-6,-11],[-3,-6],[-8,-16],[-3,-58],[74,-120],[37,-43],[24,-29],[45,-38],[21,-18],[62,-32],[130,-47],[28,-21],[6,-4],[7,-11],[5,-22],[-1,-10],[-1,-2],[-3,-24],[-24,-20],[-5,-4],[-31,-26],[-31,-16],[-48,-14],[-33,0],[-73,6],[-68,20],[-65,35],[-93,74],[-21,33],[-30,51],[-13,10],[-15,11],[-13,10],[-24,8],[-3,1],[-79,5],[-43,-14],[-29,-17],[-6,-4],[-5,-3],[-3,-11],[-5,-22],[-1,-6],[9,-53],[16,-23],[1,-3],[14,-26],[15,-20],[17,-37],[-3,-30],[-21,-38],[-36,-38],[-33,-22],[-69,-8],[-33,25],[-23,16],[-44,17],[-30,4],[-54,9],[-13,25],[12,25],[-4,34],[-48,-7],[-54,-16],[-50,-36],[-32,-20],[-127,-41],[-73,-49],[-47,31],[-144,-2],[-37,-66],[-78,-46],[-19,-48],[-92,3],[-24,-25],[35,-30],[1,-38],[-112,-23],[-94,-3],[-114,13],[-101,38],[-66,33],[-54,10],[-74,-2],[-118,-3],[-33,14],[-21,21],[-31,19],[-53,13],[-32,-1]],[[14689,20455],[-3,8],[-6,6],[3,3],[2,2],[-12,33],[-35,46],[-5,4],[-17,16],[-14,29],[-15,32],[-7,15],[6,41],[2,3],[14,23],[10,15],[69,43],[32,4],[78,30],[65,38],[1,2],[2,2],[14,17],[4,29],[-11,11],[-2,13],[8,63],[21,33],[19,15],[101,47],[116,84],[3,2],[-41,28],[-3,2],[-104,73],[-25,24],[-81,79],[-24,30],[-15,17],[-9,22],[-12,32],[-25,26],[-12,13],[-7,8],[-60,40],[-48,15],[-3,1],[-41,12],[-214,12],[-7,0],[-64,12],[-16,3],[-5,2],[-34,10],[-13,4],[-8,4],[-57,29],[-5,3],[-30,22],[-68,91],[-12,16],[-19,14],[-19,15],[-4,2],[-31,13],[-36,7],[-44,2],[-10,1],[-9,-2],[-63,-13],[-22,-12],[-12,-9],[-25,-18],[-9,-4],[-38,-19],[-10,-5],[-59,-13],[-10,1],[-25,1],[-39,2],[-28,12],[-25,23],[-6,18],[8,34],[120,65],[47,25],[20,11],[33,30],[0,3],[1,4],[19,20],[51,40],[49,26],[69,23],[104,7],[78,-4],[80,-23],[31,-15],[19,-14],[22,-17],[43,-15],[12,-1],[47,-2],[7,-1],[25,4],[6,3],[43,21],[23,24],[10,11],[4,26],[-17,30],[-68,64],[-9,8],[-4,8],[-15,28],[-17,32],[1,25],[1,20],[1,10],[10,18],[13,10],[20,15],[39,14],[60,15],[88,45],[19,15],[31,45],[0,6],[8,58],[0,2],[-1,2],[-28,60],[-43,38],[-5,4],[-17,5],[-22,6],[-21,5],[-30,1],[-23,0],[-60,16],[-82,39],[-78,59],[-44,45],[-35,49],[-9,24],[11,50],[24,25],[44,24],[127,24],[50,-2],[7,-6],[104,-27],[70,-4],[138,11],[89,-10],[32,-9],[30,-20],[62,-49],[13,-11],[7,-2],[56,-22],[86,-7],[63,9],[17,2],[7,3],[51,24],[17,8],[12,20],[8,14],[6,10],[4,63],[-10,40],[-6,24],[1,9],[7,48],[2,16],[62,77],[7,9],[1,6],[4,29],[1,9],[-6,14],[-39,83],[2,20],[1,19],[2,24],[8,13],[6,8],[11,17],[6,3],[41,25],[3,1],[21,7],[13,0],[38,0],[3,0],[3,-1],[13,-2],[73,-15],[50,-24],[64,-48],[12,-30],[-3,-26],[-21,-33],[-68,-41],[-49,-14],[-6,-2],[-2,0],[-34,-19],[-8,-10],[-2,-2],[-1,-8],[-2,-14],[-1,-12],[20,-36],[30,-22],[16,-6],[43,-13],[71,-5],[5,-1],[13,3],[25,4],[11,2],[8,5],[35,19],[10,5],[25,33],[4,26],[-8,39],[-2,12],[1,10],[5,60],[1,11],[8,13],[14,21],[9,14],[37,30],[118,58],[6,3],[4,4],[24,21],[23,20],[3,9],[3,15],[4,15],[-4,22],[-8,47],[4,21],[6,30],[4,17],[71,99],[16,21],[14,16],[45,31],[50,33],[11,12],[1,1],[12,36],[-1,34],[-32,50],[-20,29],[-25,39],[-20,36],[-13,19],[8,20],[12,39],[31,44],[68,122],[16,45],[6,21],[11,46],[3,30],[-1,47],[-10,35],[-28,27],[-33,12],[-36,7],[-36,-2],[-27,-17],[0,-26],[33,-31],[40,-32],[28,-36],[7,-46],[-8,-21],[-25,-32],[-21,-17],[-48,-24],[-27,-9],[-41,-14],[-33,-2],[-33,-4],[-103,120],[-41,22],[-31,16],[-50,17],[-26,8],[-30,7],[-46,13],[-30,3],[-38,-2],[-31,-2],[-44,-12],[-48,-5],[-58,-6],[-41,-14],[-30,-35],[-7,-34],[9,-27],[26,-39],[55,-81],[16,-20],[9,-19],[-15,-22],[-39,-5],[-32,11],[-25,14],[-40,28],[-34,21],[-59,18],[-52,-2],[-61,-7],[-28,-9],[-50,-21],[-41,-11],[-45,-16],[-110,-32],[-34,-8],[-49,1],[-39,7],[-24,13],[-22,29],[12,27],[30,10],[46,9],[33,9],[37,16],[38,14],[27,14],[23,12],[39,24],[37,31],[12,28],[3,23],[1,26],[1,33],[5,32],[17,23],[34,31],[23,14],[45,18],[46,10],[32,-12],[28,-2],[41,-3],[45,0],[33,-5],[60,-6],[64,-7],[43,-3],[40,-4],[75,4],[32,11],[42,23],[52,18],[39,19],[6,3],[7,28],[8,29],[-7,22],[-8,24],[-1,3],[-22,28],[-41,28],[-39,11],[-45,13],[-93,19],[-59,7],[-45,-3],[-15,-5],[-21,-6],[-29,-17],[-22,-23],[-26,-15],[-35,-10],[-34,-2],[-31,-1],[-49,12],[-24,25],[-5,6],[1,19],[1,9],[42,44],[26,19],[39,30],[44,48],[23,27],[3,4],[9,7],[29,22],[29,14],[4,2],[39,9],[59,12],[38,19],[61,32],[22,28],[3,4],[-1,2],[-5,20],[-26,24],[-45,32],[-19,9],[-38,28],[-12,18],[-14,20],[-32,48],[-14,21],[-36,24],[-6,4],[-59,22],[-38,2],[-20,1],[-40,-3],[-69,-7],[-49,3],[-81,15],[-39,15],[-34,26],[-13,29],[11,47],[9,10],[35,17],[10,4],[135,25],[71,4],[75,-2],[42,6],[81,22],[63,33],[12,13],[20,21],[1,1],[6,40],[-4,16],[-6,31],[-23,81],[-12,29],[-62,148],[-7,17],[7,23],[11,14],[24,31],[66,64],[43,41],[50,60],[92,132],[61,115],[3,6],[14,27],[-9,12],[-22,28],[-8,11],[-4,4],[-36,46],[-46,-10],[-105,36],[-134,46],[-54,16],[-110,48],[-38,26],[-27,41],[-32,75],[-47,77],[-106,105],[-12,18],[-5,6],[-31,22],[-25,17],[-47,33],[-108,61],[-31,13],[-28,6],[-25,4],[-24,4],[-123,12],[-77,10],[-85,5],[-264,19],[-29,-1],[-69,9],[-81,14],[-31,10],[-15,5],[-2,1],[-32,12],[-33,26],[-35,49],[-57,43],[-37,14],[-2,1],[-8,1],[-24,6],[-211,35],[-29,1],[-109,25],[-63,21],[-93,43],[-17,5],[-57,27],[-126,60],[-8,0],[-84,23],[-57,15],[-15,5],[-45,7],[-41,4],[-53,4],[-15,5],[-4,2],[-40,14],[-92,48],[-17,8],[-6,2],[-22,8],[-148,71],[-20,15],[-9,7],[-12,9],[-29,30],[-63,80],[-15,19],[-33,34],[-31,24],[-43,33],[-15,12],[2,20],[8,26],[39,11],[50,4],[61,-3],[49,-10],[150,-53],[54,-15],[53,-9],[49,1],[46,8],[39,13],[45,35],[-2,29],[-22,31],[-54,51],[-38,36],[-27,25],[-39,24],[-56,18],[-62,7],[-31,-2],[-78,-5],[-158,-10],[-351,2],[-45,0],[-188,61],[-73,25],[-30,11],[-121,51],[-79,36],[-74,35],[-10,8],[-15,11],[-166,125],[-13,9],[-18,14],[-20,43],[4,26],[10,16],[10,12],[32,24],[37,28],[34,35],[9,16],[28,51],[1,2],[0,5],[2,45],[-4,7],[-16,31],[-25,27],[-61,44],[-60,44],[-33,34],[-81,112],[-26,68],[-6,16],[-8,20],[-10,40],[-9,35],[7,113],[-10,53],[-14,28],[-3,5],[-13,27],[-89,119],[-9,12],[-3,16],[13,7],[23,14],[14,8],[136,6],[48,3],[38,11],[45,24],[33,32],[8,60],[-3,23],[-3,22],[2,18],[2,16],[-1,55],[-5,27],[-11,37],[-27,49],[-8,9],[-12,12],[-20,21],[-34,25],[-57,43],[-22,22],[-35,49],[-22,51],[-1,53],[0,28],[2,72],[1,8],[-20,69]],[[55060,27386],[-98,-5],[-97,-5],[-387,-4],[-195,0],[-303,-4],[-772,-7],[-155,-2],[-99,-1],[-270,1],[-132,0],[-783,-3],[-64,0],[-153,-3],[-468,0],[-14,0],[-423,-1],[-277,0],[-71,-1],[-155,0],[-36,5],[-212,1],[-37,0],[-40,0],[-30,2],[-30,-2],[-30,-5],[-134,2],[-77,3],[-54,1],[-50,-1]],[[49414,27357],[-44,-1],[-62,1],[-57,-3],[-7,0],[-82,1],[-150,1],[-36,0],[-31,0],[-69,1],[-70,1],[-37,0],[-154,1],[-38,1],[-29,0],[-316,-1],[-57,1],[-13,-1],[-33,-2],[-64,-5],[-68,0],[-117,5],[-31,4],[-50,1],[-50,-1],[-31,0],[-61,0],[-31,-6],[-123,-2],[-87,-1],[-147,0],[-29,4],[-86,0],[-61,0],[-51,1],[-482,-1],[-225,15],[-118,8],[-124,8],[-74,0],[-9,0],[-289,-3],[-112,-1],[-36,2],[1,23],[-5,27],[-15,37],[-19,21],[-25,11],[-16,43],[-38,54],[-5,0],[-82,1],[-111,0],[-50,29],[-2,1],[-168,104],[-5,1],[-126,35],[-5,5],[-3,2],[-19,16],[-33,29],[-1,1],[-9,24],[-30,76],[-4,11],[-6,19],[0,2],[1,16],[0,1],[0,25],[6,4],[23,16],[-44,46],[-1,1],[-26,28],[-3,3],[21,21],[-11,24],[-10,19],[-17,26],[-12,23],[0,33],[-16,28],[-26,-9],[-54,-16],[-31,212],[-127,75],[-56,33],[-30,17],[40,75],[-38,32],[-25,21],[-50,43],[-106,132],[-28,51],[-8,14],[-46,80],[-64,120],[-22,41],[-100,113],[-39,45],[-25,28],[-54,74],[-127,172],[-3,188],[-2,33],[4,21],[-3,67],[2,21],[1,52],[0,25],[-1,38],[0,36],[-1,98],[0,46],[-1,46],[-3,116],[-2,57],[0,30],[-1,79],[-2,124],[2,24],[9,43],[10,38],[4,34],[8,36],[11,51],[5,21],[3,31],[2,29],[1,87],[-1,110],[-1,60],[-1,38],[3,303],[-13,147],[-2,72],[-3,157],[1,84],[-2,67]],[[43716,32133],[-7,294],[-2,72],[-6,275],[-1,31],[0,46],[-1,24],[0,50],[-2,184],[0,177],[-3,153],[0,33],[-1,44],[-2,75],[-1,51],[-1,48],[-4,61]],[[43716,32133],[-139,-12],[-33,-3],[-30,-9],[-31,-13],[-34,-15],[-56,-26],[-52,-5],[-32,1],[-46,-3],[-83,-17],[-56,-17],[-68,-15],[-36,-4],[-47,0],[-61,-17],[-25,-11],[-27,-16],[-27,-15],[-65,-18],[-147,-52],[-51,-15],[-11,-37],[-12,-29],[-29,-32],[-60,2],[-57,-1],[-34,-9],[-16,-26],[-21,-18],[-38,-14],[-50,-8],[-53,-14],[-150,-4],[-41,-1],[-55,-8],[-120,-28],[-74,-16],[-32,-10],[-28,-12],[-30,-11],[-37,-28],[-18,-30],[-28,-31],[-25,-12],[-55,-23],[-41,-18],[-34,-14],[-34,-11],[-50,7],[-78,11],[-42,4],[-31,-10],[-94,-24],[-29,-15],[-37,-17],[-33,-17],[-26,-10],[-37,-3],[-37,-2],[-38,-4],[-65,-11],[-43,-9],[-43,5],[-49,4],[-34,-3],[-71,10],[-41,-4],[-67,-22],[-14,-5],[-42,3],[-82,5],[-181,33],[-68,15],[-63,10],[-49,5],[-92,8],[-109,54],[-39,-8],[-40,-6],[-23,-23],[-16,-21],[-22,-31],[-17,-26],[-14,-26],[-44,-43],[-26,-17],[-35,-20],[-2,-1],[-38,-22],[-2,-2],[-20,-17],[-19,-39],[-1,-73],[-3,-68],[-2,-26],[-3,-23],[-4,-24],[-2,-28],[3,-27],[13,-34],[20,-28],[23,-28],[19,-34],[1,-26],[1,-36],[1,-1],[33,-43],[17,-27],[11,-19],[11,-19],[-39,-30],[-28,-23],[-65,-43],[-97,-61],[-33,-7],[-51,3],[-55,-7],[-47,-4],[-45,-5],[-64,-17],[-38,-13],[-43,-23],[-24,-17],[-27,-25],[-21,-18],[-39,-55],[-36,-44],[-19,-17],[-68,-52],[-65,-45],[-26,-17],[-44,-10],[-39,0],[-69,-2],[-5,0],[-208,-6],[-83,-4],[-61,-8],[-82,-17],[-38,-10],[-36,-11],[-47,-23],[-65,-28],[-24,-13],[-74,-40],[-26,-11],[-38,-8],[-29,-1],[-45,3],[-48,7],[-34,1],[-51,-9],[-69,-9],[-56,-12],[-25,-23],[-15,-62],[-9,-32],[-11,-23],[-7,-23],[-12,-64],[-8,-44],[-9,-24],[-12,-21],[-10,-31],[-8,-25],[-1,-34],[12,-31],[9,-22],[6,-25],[9,-24],[25,-71],[6,-30],[-6,-21],[-15,-17],[-40,-32],[-29,-33],[-10,-28],[-1,-102],[-9,-40],[-15,-37],[-23,-55],[-24,-72],[-13,-30],[-15,-46],[-12,-26],[-31,-29],[-45,-30],[-22,-17],[-93,-68],[-18,-20],[-29,-22],[-34,-48],[-15,-24],[-19,-34],[-12,-22],[-17,-29],[-31,-65],[-22,-36],[-12,-21],[-13,-32],[-6,-23],[-12,-36],[-10,-26],[-5,-29],[6,-26],[4,-27],[12,-42],[13,-37],[5,-38],[-8,-26],[-20,-26],[-22,-18],[-26,-18],[-24,-14],[-40,-18],[-30,-35],[-9,-22],[-9,-20],[-12,-35],[-9,-31],[-11,-31],[-18,-49],[1,-32],[5,-21],[16,-37],[7,-24],[10,-23],[9,-25],[12,-28],[11,-24],[8,-32],[-21,-26],[-47,-48],[-20,-21],[-18,-17],[-114,-115],[-23,-24],[-21,-22],[-41,-41],[-57,-57],[-74,-72],[-17,-23],[-19,-25],[-31,-45],[-40,-56],[-34,-41],[-32,-45],[-20,-21],[-21,-16],[-44,-27],[-36,-19],[-60,-10],[-24,-45],[-26,-21],[-22,-16],[-32,-21],[-16,-23],[0,-25],[14,-32],[11,-30],[0,-34],[-12,-21],[-14,-22],[-35,-30],[-67,-51],[-34,-25],[-22,-32],[-30,-46],[-5,-21],[-17,-26],[-27,-25],[-22,-13],[-34,-12],[-32,-3],[-75,-3],[-37,-3],[-143,-16],[-71,-7],[-38,-6],[-68,-11],[-55,-7],[-51,-13],[-30,-7],[-47,-39],[-15,-18],[-25,-22],[-18,-24],[-26,-22],[-43,-17],[-45,-22],[-29,-19],[-33,-27],[-24,-30],[-24,-22],[-61,-52],[-36,-13],[-34,-29],[-70,-35],[-32,-24],[-80,-47],[-43,-22],[-21,-22],[-45,-18],[-28,-16],[-39,-17],[-52,-26],[-73,-40],[-49,-26],[-23,-15],[-33,-10],[-54,-37],[-28,-26],[-13,-46],[-13,-30],[-16,-27],[-59,-49],[-36,-15],[-31,-6],[-50,-10],[-52,-7],[-3,0],[-34,-5],[-63,-8],[-41,-11],[-92,-42],[-23,-13],[-26,-9],[-23,-11],[-36,-22],[-37,-11],[-70,-28],[-42,-46],[-62,-61],[-82,-74],[-22,-15],[-27,-11],[-44,-28],[-26,-39],[-54,-82],[-21,-18],[-36,-27],[-56,-22],[-33,-15],[-27,-14],[-47,-17],[-33,-15],[-15,-28],[-8,-21],[-41,-43],[-15,-20],[-26,-39],[-25,-33],[-43,-65],[-18,-27],[-19,-24],[-56,-60],[-51,-47],[-46,-47],[-31,-27],[-50,-23],[-40,-15],[-48,-21],[-35,-17],[-29,-1],[-31,2],[-41,2],[-50,3],[-37,-10],[-27,-16],[-9,-28],[2,-44],[-7,-22],[-6,-23],[-3,-32],[-8,-31],[-54,-83],[-63,-55],[-21,-24],[-31,-30],[-36,-28],[-34,-40],[-14,-32],[-21,-29],[-22,-52],[-6,-28],[-11,-32],[-7,-32],[-12,-28],[-15,-18],[-42,-16],[-129,-31],[-36,-1],[-28,2],[-46,-16],[-27,-22],[-19,-7],[-32,-11],[-19,-25],[-35,-11],[-5,-1],[-37,-8],[-12,-6],[-101,-45],[-29,-13],[-51,-17],[-29,-12],[-38,-22],[-38,-35],[-39,-20],[-36,-16],[-60,-7],[-46,-8],[-32,-14],[-37,-25],[-69,-47],[-40,-25],[-39,-27],[-23,-28],[-43,-67],[-121,-71],[-110,-59],[-23,-12],[-23,-13],[-47,-24],[-75,-25],[-68,-58],[-38,-36],[-6,-8],[-53,-66],[-38,-54],[-43,-62],[-23,-48],[-2,-39],[-5,-36]],[[29169,21862],[-159,-1],[-555,-3],[-301,0],[-50,-1],[-40,1],[-92,-1],[-38,0],[-39,-1],[-212,0],[-86,0],[-151,-1],[-5,-4],[-18,-27],[-5,-8],[1,-4],[1,-2],[3,-9],[-16,-6],[-48,-18],[-6,-2],[-107,-46],[-4,-2],[-60,-26],[-31,-13],[-54,-9],[-19,-4],[-36,-15],[-22,-5],[-34,0],[-16,-22],[-27,-11],[-33,-3],[-13,4],[-15,-13],[-76,-2],[-6,1],[-4,0],[-15,-1],[-13,-1],[-2,0],[-49,-5],[-20,-6],[-19,-5],[-59,-11],[-29,7],[-158,-3],[-9,0],[2,-8],[-3,-10],[-2,-7],[-103,-66],[-7,-2],[-33,1],[-4,-1],[-58,-18],[-1,0],[-3,-2],[-6,-4],[-25,-28],[-11,-17],[-9,-14],[-18,-28],[-32,-4],[-8,-2],[-34,-11],[-11,-3],[-159,-62],[-1,0],[-64,-42],[-6,-5],[-48,-22],[-67,-8],[-41,-4],[-17,1],[-12,0],[-3,0],[-58,-17],[-2,0],[-53,-15],[-24,-13],[-1,-3],[-47,30],[-13,8],[-23,3],[-2,1],[-47,6],[-18,2],[-42,5],[-130,16],[-3,1],[-66,32],[-2,0],[-76,9],[-106,18],[-49,40],[-79,32],[-30,12],[-59,25],[-45,7],[-3,2],[-20,8],[-50,9],[-7,1],[-33,4],[-58,6],[-12,0],[-49,-3],[-10,0],[-9,1],[-54,9],[-62,10],[-8,11],[-14,20],[-30,3],[-37,-5],[-46,-13],[-5,-2],[-5,0],[-40,-5],[-37,0],[-22,0],[-46,4],[-24,13],[-3,1],[-22,12],[-25,13],[-6,9],[-2,3],[-9,1],[-2,1]],[[23914,21530],[-45,9],[-25,-3],[-40,3],[-17,-1],[-18,-6],[-4,-1],[-4,0],[-28,0],[-46,-9],[-4,-2],[-31,-13],[-180,-5],[-12,4],[-67,17],[-29,8],[-48,13],[-2,0],[-6,-1],[-36,-6],[-125,42],[-52,32],[-19,11],[-5,2],[-10,4],[-15,3],[-9,0],[-34,-3],[-58,-7],[-8,-1],[-12,7],[-19,11],[-8,3],[-205,44],[-27,0],[-76,73],[-36,21],[-50,27],[-8,3],[-18,0],[-20,1],[-20,7],[-57,22],[-17,6],[-22,7],[-82,24],[-22,12],[-11,7],[-2,1],[-204,163],[-38,39],[-73,63],[-11,15],[-42,64],[-3,3],[-6,13],[-9,18],[0,2],[0,18],[3,6],[1,2],[0,3],[-1,4],[-5,10],[-4,8],[-5,5],[-49,23],[-159,25],[-10,-1],[-3,-1],[-24,-12],[-10,1],[-4,1],[-44,10],[-7,2],[-18,15],[-5,5],[-8,8],[-106,171],[-1,9],[0,10],[-95,66],[-30,21],[-8,5],[-73,40],[-6,3],[-102,24],[-15,-1],[-76,-12],[-13,-11],[0,-2],[-2,-16],[-4,-4],[-7,-2],[-59,-14],[-142,5],[-6,2],[-30,15],[3,4],[5,9],[1,5],[-4,3],[-78,3],[-57,-3],[-54,-3],[-51,-3],[-121,-7],[-28,-2],[-21,-7],[-31,-14],[-24,-26],[-35,-37],[-5,-5],[-4,-5],[-36,-5],[-3,-1],[-38,3],[-8,0],[-59,4],[-16,5],[-1,4],[4,3],[3,9],[-9,7],[-31,12],[-51,-1],[-10,4],[-39,3],[-29,-5],[7,-23],[-26,-12],[-73,-6],[-43,4]],[[93327,32335],[-11,-20],[-28,-35],[-14,-21],[3,-29],[15,-23],[18,-25],[17,-29],[11,-23],[14,-25],[17,-19],[16,-21],[20,-16],[14,-30],[28,-37],[25,-36],[8,-35],[12,-33],[5,-30],[6,-23],[14,-27],[3,-21],[16,-27],[20,-31],[0,-31],[-20,-31],[-33,-19],[-23,-27],[-13,-32],[5,-27],[0,-35],[-17,-29],[-25,-15],[-25,-23],[-26,-21],[-21,-23],[-11,-29],[0,-27],[-3,-25],[-2,-25],[-1,-27],[0,-23],[-3,-23],[3,-25],[6,-27],[2,-23],[6,-25],[6,-21],[5,-27],[6,-27],[-6,-25],[-3,-33],[0,-28],[3,-23],[10,-22],[15,-20],[23,-14],[33,-31],[39,-21],[61,-19],[76,-27],[58,-27],[42,-29],[64,-117],[23,-42],[41,-37],[51,-19],[58,-44],[23,-20],[25,-25],[25,-28],[36,-25],[45,-35],[39,-27],[22,-15],[36,-27],[42,-39],[34,-32],[55,-29],[84,-23],[61,-10],[31,-7],[56,-12],[58,-10],[14,-10],[23,-15],[23,-31],[13,-20],[-11,-22],[-5,-2],[-11,-3],[-11,-3],[-29,1],[-33,0],[-34,-14],[-5,-25],[-17,-19],[-20,-31],[-15,-23],[-21,-25],[-11,-21],[-17,-17],[-17,-33],[3,-31],[20,-19],[36,-9],[31,0],[28,-4],[33,-8],[31,-8],[33,-21],[32,-28],[18,-18],[27,-25],[29,-27],[42,-34],[31,-18],[36,-19],[31,-17],[36,-14],[36,-21],[56,-15],[10,-5],[16,-9],[52,-4],[70,-27],[36,-3],[41,-40],[21,-35],[7,-32],[-23,-55],[-10,-5],[-38,-62],[-12,-64],[24,-19],[45,-6],[23,0],[5,0],[9,-43],[1,-6],[2,-8],[3,-15],[8,-42],[-3,0],[-5,-28],[-18,-29],[-18,-47],[-7,-65],[-11,-58],[8,-7],[1,-45],[-15,-78],[5,-26],[13,-26],[54,-46],[19,-39],[-46,-81],[-22,-24],[-5,-53],[108,-116],[28,-41],[14,-24],[15,-63],[31,-63],[108,-103],[18,-24],[66,-50],[50,-43],[17,-30],[9,-49],[-12,-67],[-27,-49],[-40,-50],[-25,-28],[-9,-10],[-73,-85],[-8,-44],[17,-30],[39,-25],[50,-44],[-7,-41],[-39,-35],[-56,-69],[-21,-18],[-54,-78],[-66,-66],[-29,-37],[-24,-24],[-3,-3],[-40,-58],[-60,-87],[-42,-51],[-16,-35],[0,-26],[-32,-54],[-68,-54],[-26,-21],[-61,-120],[-10,-5],[-28,-80],[-63,-100],[-15,-36],[34,-129],[16,-13],[19,-41],[2,-136],[55,-86],[43,-156],[-9,-146],[11,-25],[-7,-55],[-18,-27],[-40,-35],[-36,-16],[-27,2],[-47,32],[-34,8],[-39,-17],[-16,-15],[-21,-41],[-15,-81],[7,-12],[-9,-76],[-27,-49],[-16,-13],[-55,-58],[23,-72],[28,-42],[24,-64],[-13,-95],[-53,-57],[-20,-26],[-15,-32],[-23,-132],[-44,-70],[-50,-56],[-21,-41],[-30,-88],[-1,-6],[-69,-91],[-81,-124],[-9,-78],[6,-63],[30,-31],[97,-4],[30,-8],[22,-21],[1,-96],[-13,-45],[-3,-67],[-15,-81],[-39,-71],[-10,-8],[-4,-19],[9,-26],[23,-29],[46,-30],[47,-35],[11,-15],[17,-77],[-5,-124],[-6,-34],[-13,-22],[-21,-15],[-2,-14],[-63,-77],[-24,-53]],[[94431,22869],[-171,-5],[-413,-5],[-4,0],[-23,0],[-20,-1],[-413,0],[-115,-1],[-176,-1],[-4,0],[-108,-1],[-136,-1],[-107,0],[-327,-2],[-50,0],[-2,0],[-227,-2],[-58,-1],[-198,-1],[-233,6],[-69,2],[-163,4],[-346,11],[-590,12],[-118,2],[-358,7],[-93,1],[-145,4],[-140,3],[-60,1],[-91,2],[-226,6],[-15,1],[-39,0],[-96,2],[-41,1],[-31,1],[-107,4],[-269,10],[-84,2],[-110,4],[-416,14],[-117,4],[-56,0],[-37,0],[-67,2],[-492,14],[-167,4],[-26,1],[-111,3],[-174,5],[-225,6],[-109,3],[-40,2],[-94,0],[-91,1],[-142,1],[-125,1],[-250,2],[-5,0],[-117,0],[-140,1],[-221,3]],[[85233,23001],[0,9],[1,103],[0,32],[0,82],[-2,60],[-2,61],[0,53],[0,23],[6,28],[10,235],[6,304],[5,230],[1,34],[-5,156],[0,27],[-1,46],[1,41],[-16,259],[-2,35],[-2,68],[-2,40],[1,61],[0,33],[-5,113],[-2,90],[-1,31],[0,13],[-2,78],[-2,115],[-4,162],[3,59],[7,95],[3,47],[6,113],[12,199],[22,358],[10,163],[0,7],[12,200],[0,317],[0,351],[-2,62],[-1,24],[-7,246],[-5,129],[-4,134],[-3,274],[-1,134],[-1,148],[-1,53],[-2,207],[-1,133],[-3,273]],[[49414,27357],[3,-82],[3,-230],[1,-62],[1,-43],[0,-26],[-1,-30],[0,-23],[0,-20],[0,-17],[1,-234],[-1,-145],[-1,-158],[-1,-30],[2,-107],[1,-59],[3,-25],[1,-121],[2,-111],[0,-28],[-1,-113],[-1,-134],[0,-23],[90,0],[275,0],[308,-1],[62,-1],[2,-4],[15,-18],[37,-19],[9,-3],[35,-9],[-27,-26],[-51,-50],[-12,-12],[9,-12],[7,-9],[7,-15],[13,-27],[1,-18],[7,-19],[7,-14],[22,-20],[33,-19],[7,-2],[19,-8],[21,-5],[4,-1],[34,-6],[17,-3],[8,-5],[27,-30],[12,-16],[0,-12],[0,-3],[-2,-5],[-6,-12],[-10,-14],[-9,-4],[-16,-1],[-53,0],[-9,0],[-5,-6],[-1,-18],[9,-25],[14,-17],[3,-3],[27,-33],[8,-9],[9,-16],[0,-2],[0,-3],[-4,-19],[-3,-2],[-2,-1],[2,-2],[64,-40],[35,-34],[40,-50],[1,-2],[-2,-15],[-9,-13],[-13,-7],[-42,-23],[-7,-3],[-24,-35],[0,-18],[0,-29],[0,-9],[-13,-22],[-29,-50],[-3,-6],[-7,2],[-28,11],[-29,15],[-55,-40],[-7,-6],[-33,-24],[-15,-11],[-31,16],[-3,-8],[-14,-36],[-13,-33],[-2,-3],[-3,-8],[11,-9],[7,-2],[87,-22],[37,-22],[9,-13],[32,-91],[5,-17],[14,-37],[12,-8],[16,-33],[9,-87],[-5,-8],[-19,-12],[-3,-2],[-21,-19],[-33,-26],[-16,-13],[-8,-6],[-30,-17],[-16,-13],[-13,-7],[-32,-19],[-9,-4],[-63,-6],[-85,-60],[-1,-14],[-1,-28],[-17,-22],[-27,-34],[-57,-35],[-137,-65],[-11,-4],[-45,-16],[-78,-28],[-44,0],[-8,3],[-42,4],[-8,0],[-50,0],[-46,-12],[-8,-3],[-39,-15],[-13,-7],[-6,-7],[-2,-6],[88,-91],[-2,-19],[-17,-25],[-35,-28],[-1,-1],[14,-274],[1,-182],[2,-399],[0,-26],[0,-27],[0,-42],[0,-64],[1,-122],[0,-40],[0,-200],[0,-161],[0,-23],[0,-188],[0,-73],[8,-271],[5,-171],[2,-78],[6,-217],[2,-82],[-3,-385]],[[49451,20445],[-4,2],[-15,18],[-14,6],[-59,18],[-68,9],[-14,-2],[-13,-4],[-4,-2],[-3,-1],[-13,-9],[-4,-5],[1,-4],[0,-9],[30,-20],[10,-8],[2,-11],[-2,-6],[-8,-5],[-2,-1],[-12,-3],[-26,-3],[-26,1],[-113,2],[-4,1],[-56,3],[-132,10],[-25,-3],[-11,-4],[-3,-4],[-2,-10],[9,-12],[2,-1],[6,-3],[27,-2],[15,-3],[13,-9],[58,-43],[13,-17],[-1,-11],[-4,-4],[-27,-6],[-54,-11],[-48,13],[-3,3],[-8,4],[-25,2],[-11,0],[-12,-1],[-15,-5],[-2,-1],[-2,-1],[-46,-23],[-6,-3],[-4,8],[-16,33],[-8,9],[-10,5],[-5,0],[-7,-3],[-4,-1],[-60,-14],[-20,-1],[-55,-4],[-3,0],[-46,0],[-23,4],[-24,8],[-15,8],[-9,9],[-3,7],[0,8],[0,3],[16,22],[-15,56],[-1,1],[-29,50],[-11,15],[-33,13],[-34,6],[-21,2],[-12,0],[-36,-8],[-19,-8],[-34,-22],[-29,-15],[-4,-2],[-25,-8],[-26,-4],[-16,3],[-34,12],[-29,5],[-58,2],[-65,0],[-33,-5],[-13,-7],[-12,-7],[-22,-24],[-55,-62],[-4,-5],[-31,-52],[-46,-76],[-2,-3],[-7,-16],[-89,31],[-5,3],[-2,0],[-4,6],[-1,10],[12,6],[25,5],[9,4],[31,14],[25,18],[19,17],[4,8],[14,71],[2,10],[1,6],[-1,11],[-3,4],[-7,4],[-11,0],[-23,-4],[-27,1],[-14,3],[-4,1],[-9,11],[1,5],[1,2],[17,22],[33,32],[20,19],[3,10],[-3,7],[-6,4],[-9,2],[-18,-2],[-5,-1],[-67,-16],[-19,-1],[-2,1],[-13,4],[-17,10],[-1,0],[-17,14],[0,3],[-7,7],[-37,42],[-11,10],[-26,20],[-6,7],[1,9],[11,10],[76,24],[74,33],[24,12],[12,12],[3,7],[-3,10],[-5,6],[-11,6],[-12,0],[-38,3],[-12,1],[-46,14],[-58,17],[-4,1],[-10,5],[-3,8],[1,10],[13,20],[2,1],[48,38],[1,1],[5,3],[46,25],[76,47],[34,34],[10,16],[6,8],[5,8],[0,18],[-8,19],[-10,17],[-10,11],[-22,13],[-24,15],[-36,28],[-6,6],[-11,10],[-14,19],[-4,7],[-5,9],[1,11],[0,26],[0,19],[3,7],[3,7],[-2,18],[-18,126],[-2,4],[-4,8],[-16,19],[-18,14],[-21,11],[-16,9],[-12,14],[0,3],[0,9],[0,6],[3,5],[11,15],[11,11],[18,28],[-2,16],[-6,10],[-6,11],[-10,17],[-11,21],[8,3],[103,48],[35,19],[9,9],[7,7],[4,4],[2,5],[6,12],[4,6],[4,13],[1,25],[1,10],[7,28],[2,9],[4,10],[1,2],[3,2],[5,6],[23,7],[-97,1],[-138,2],[-421,3],[-160,1],[-120,0],[-87,0],[-205,1],[-82,0],[-112,1],[-124,1],[-37,1],[-186,2],[-264,0],[-174,1],[-74,0],[-138,0],[-119,0],[-186,-1],[-259,-1],[-111,2],[-98,-1],[-106,0],[-98,0],[-36,0],[-72,0],[-161,-1],[-159,0],[-30,-1],[-95,0],[-96,0],[-98,0],[-275,-1],[-2,0],[-77,0],[-260,-1],[-95,0],[-101,-2],[-98,-3],[-34,-1],[-47,0],[-36,0],[-58,0],[-55,-2],[-56,0],[-239,-1],[-156,-1],[-63,0],[-84,-1],[-39,0],[-283,-2],[-119,0],[-260,-2],[-73,4],[-259,1],[-177,0],[-2,0],[-156,1],[-178,0],[-39,0],[-69,0],[-59,0],[-3,0],[-162,-3],[-568,0],[-255,-2],[-51,1],[-97,-1],[-225,0],[-300,0],[-334,-2],[-79,-1],[-171,0],[-112,-1],[-140,-1],[-184,0],[-47,0],[-142,0],[-160,-1],[-116,0],[-344,-1],[-13,0],[-49,0],[-121,0],[-214,-1],[-106,0],[-145,0],[-41,1],[-58,1],[-127,-2],[-4,0],[-125,0],[-373,0],[-253,-1],[-165,0],[-4,0],[-36,0],[-33,0],[-46,-1],[-3,0],[-97,-1],[-37,0],[-176,2],[-245,-3],[-93,1],[-468,0],[-423,1],[-56,0],[-290,1],[-76,0],[-76,0],[-49,0],[-30,2],[-35,0],[-33,0],[-46,0],[-28,0],[-28,0],[-41,0],[-31,0],[-40,2],[-38,0],[-32,-1],[-45,0],[-182,-3],[-152,0],[-40,-1],[-76,0],[-3,0],[-30,1],[-56,0],[-13,-1],[-107,0],[-204,0],[-121,0],[-275,-4],[-29,4],[-43,-1],[-39,1],[-55,-1],[-35,0],[-46,0],[-102,0],[-33,0],[-58,0],[-51,-1],[-201,0],[-55,0],[-129,-1],[-176,0],[-52,0],[-151,0],[-200,-1],[-274,0],[-4,0]],[[14689,20455],[8,-28],[10,-36],[8,-41],[13,-102],[-4,-39],[-10,-32],[-24,-40],[-12,-32],[6,-36],[0,-5],[12,-30],[29,-36],[46,-37],[10,-8],[37,-30],[11,-9],[18,-22],[6,-16],[-4,-32],[-15,-17],[-49,-27],[-38,-8],[-86,4],[-52,10],[-25,5],[-49,3],[-50,-5],[-153,-32],[-86,8],[-3,0],[-4,1],[-33,6],[-125,36],[-82,4],[-43,-7]],[[13956,19825],[-30,39],[-69,31],[-177,77],[-142,62],[-27,12],[-43,-27],[-269,-170],[-164,-107],[-48,-31],[-19,-12],[-25,-16],[-27,-18],[-26,-17],[-96,-62],[-144,-92],[-32,-21],[-68,-32],[-123,-1],[-147,0],[-51,-1],[-227,0],[-90,-1],[-40,0],[-81,0],[-39,0],[-72,-1],[-114,0],[-117,-3],[-363,1],[-172,1],[-113,1],[-137,0],[-235,0],[-29,0],[-49,0],[-98,1],[-204,0],[-257,1],[-79,-3],[-187,0],[-191,-1],[-73,0],[-138,0],[-77,-1],[-133,0],[-89,0],[-300,1],[-238,1],[-211,0],[-35,0],[-164,0],[-170,0],[-58,0],[-119,0],[-130,0],[-79,-1],[-182,0],[-283,-1],[-56,0],[-119,0],[-52,-1],[-244,0],[-109,0],[-50,-3],[-51,0],[-46,0],[-144,2],[-3,0],[-41,-1],[-45,-2],[-360,0],[-124,-1],[-144,0],[-88,0],[-80,0],[-185,1],[-72,-1],[-47,0],[-431,7],[-119,-1],[-245,-3],[-11,-388],[7,-85],[0,-64],[0,-77],[-180,3],[-91,0],[-206,3],[-36,-1],[-69,-1],[-29,0],[-345,-5],[-14,0],[-301,-4],[-87,0],[-63,-1],[-44,0],[-355,3],[-140,1],[-323,1],[-78,1],[-158,0],[-328,-1]],[[1150,18816],[-10,149],[-4,49],[0,29],[-6,81],[-2,43],[-10,124],[-8,109],[-2,28],[-16,159],[-2,16],[-6,58],[-1,41],[-1,32],[2,36],[0,7],[-5,61],[-1,31],[-4,61],[-2,22],[-3,28],[1,26],[0,30],[-9,111],[-11,140],[-4,48],[-8,111],[-13,159],[-11,124],[-3,42],[-15,236],[-13,193],[-4,31],[-2,23],[-3,46],[-1,40],[-16,217],[-2,24],[7,68],[-1,52],[-16,128],[-7,56],[-10,133],[-18,226],[-7,83],[-13,161],[-4,49],[-13,161],[-10,137],[-12,145],[-2,28],[-23,290],[-7,93],[-1,8],[-9,115],[-11,135],[-10,131],[-6,73],[-11,124],[-3,28],[-8,88],[-5,57],[-5,105],[-6,42],[-13,180],[-2,33],[-6,93],[0,10],[-1,5],[-2,38],[-3,61],[-7,110],[-13,193],[-12,175],[0,21],[-19,249],[-2,55],[-17,184],[-8,82],[-7,81],[-13,145],[2,30],[-9,250],[-4,75],[-4,106],[-27,247],[-13,141],[-5,106],[-4,113],[-1,15],[-8,93],[-5,71],[-5,63],[-13,157],[-2,24],[-19,243],[-6,87],[-24,331],[-7,102],[-20,285],[-13,177],[-38,542],[-11,125],[0,2],[-6,46],[-2,3],[0,3],[-17,144],[-8,103],[-3,43],[-15,207],[-4,59],[-5,58],[-13,149],[-15,178],[-4,57],[-19,228],[-11,123],[-6,74],[-9,111]],[[85233,23001],[-3,-71],[-6,-154],[1,-71],[8,-156],[5,-75],[3,-53],[2,-21],[-35,2],[-34,0],[-4,0],[-180,0],[-354,4],[-235,4],[-92,0],[-271,0],[-144,3],[-77,0],[-10,0],[-235,5],[-236,1],[-1,-36],[-6,-230],[-4,-139],[1,-192],[1,-21],[-1,-25],[3,-73],[-2,-24],[-1,-34],[0,-34],[0,-23],[-2,-24],[-21,-4],[-41,6],[-39,-3],[-27,-8],[-35,4],[-34,6],[-36,3],[-33,8],[-18,2],[-12,1],[-8,1],[-28,3],[-46,-5],[-40,4],[-17,-9],[-14,-7],[-51,4],[-34,6],[-24,25],[-33,20],[-36,21],[-26,9],[-28,7],[-58,7],[-61,11],[-17,8],[-2,1],[-58,7],[-21,3],[-21,-3],[-38,-2],[-183,0],[-44,0],[-9,0],[-119,0],[-36,19],[-13,4],[-138,-4],[-71,11],[-22,4],[-122,18],[-31,9],[-36,11],[-22,6],[-73,21],[-5,9],[-20,16],[-142,48],[-15,0],[-29,-3],[-46,15],[-18,6],[-29,15],[-2,6],[-4,2],[-21,17],[-7,2],[-43,-11],[-5,-2],[-12,-6],[-14,-4],[-5,0],[-19,-1],[-32,5],[-4,1],[-68,26],[-25,6],[-2,1],[-63,11],[-37,1],[-79,-6],[-56,-1],[-83,-2],[-20,1],[-47,31],[-10,0],[-57,5],[1,4],[3,9],[0,8],[-1,1],[-2,1],[-2,2],[-29,11],[-96,29],[-43,13],[-55,12],[-14,3],[-47,4],[-24,18],[-62,20],[-14,3],[-104,-8],[-13,-2],[-13,-6],[-1,-2],[-2,-2],[-9,10],[-17,18],[-11,6],[-2,0],[-8,1],[-37,3],[-72,0],[-17,-1],[-11,-11],[-3,-1],[-6,-3],[-17,0],[-39,5],[3,5],[-31,6],[-11,2],[-33,6],[-30,6],[-3,1],[-42,8],[-4,-7],[-19,-1],[-51,-4],[-34,-2],[-163,-11],[-61,33],[-28,14],[-20,1],[-60,-20],[-32,-16],[-1,-1],[-10,-6],[-12,-6],[-46,-13],[-5,-1],[-1,0],[-68,-7],[-13,4],[-2,0],[-12,12],[-5,3],[-22,2],[-142,-11],[-11,-5],[-4,-3],[-25,-15],[-9,1],[-48,7],[-23,-14],[-36,-17],[-5,-1],[-2,-1],[-29,2],[-8,0],[-20,9],[-9,1],[-9,-2],[-81,-39],[-19,-1],[-61,-28],[-10,-6],[-6,-9],[-5,-13],[-23,-29],[-43,-54],[-42,-52],[-27,-32],[-33,-24],[-19,-8],[-40,-19],[-12,-6],[12,-12],[99,-100],[-1,-10],[-11,-17],[-1,-2],[-5,-4],[-194,-202],[-27,-17],[-24,-8],[-14,-2],[-23,-4],[-36,-5],[-5,0],[-34,3],[-29,5],[-27,7],[-9,3],[-19,-26],[-18,-23],[-26,-34],[-11,-15],[10,-4],[2,-5],[12,-33],[22,-63],[-38,-125],[-7,-15],[-8,-7],[-18,-9],[-1,-1],[-5,-1],[-36,-9],[-21,-1],[-3,0],[-26,-5],[-7,-5],[-7,-8],[-2,-2],[3,-9],[8,-9],[26,-16],[19,-7],[12,-6],[5,-7],[4,-14],[2,-4],[6,-8],[1,-33],[-29,-69],[-15,-10],[-13,-4],[-49,-23],[-51,-34],[-8,-8],[-2,-9],[16,-34],[-34,-14],[-74,-52],[-14,-6],[-16,0],[-89,19],[-14,5],[-3,0],[-22,-22],[6,-23],[-1,-26],[-3,-27],[-28,-14],[-26,22],[-35,8],[-40,-14],[-47,-19],[13,-25],[31,-11]],[[77048,20502],[-319,4],[-137,1],[-252,3],[-115,2],[-17,0],[-25,0],[-224,3],[-110,1],[-342,3],[-32,1],[-122,1],[-198,2],[-65,1],[-290,3]],[[74800,20527],[5,300],[1,107],[0,130],[1,68],[-3,182],[-1,52],[-4,250],[-1,33],[0,40],[-1,46],[0,2],[7,311],[5,231],[0,22],[3,108],[2,105],[-2,38],[1,27],[1,48],[-3,30],[8,209],[5,124],[2,60],[0,3],[3,57],[6,146],[3,59],[5,131],[2,110],[0,23],[0,37],[0,107],[2,144],[1,61],[1,35],[0,78],[3,164],[-2,50],[-4,166],[0,15],[0,34],[-1,24],[-4,198],[-1,102],[-5,227],[0,37],[-1,25],[0,171],[-1,129],[0,46],[-1,198],[0,58],[0,25],[4,111],[1,49],[2,48],[12,371],[3,122],[2,76],[1,39],[2,72],[1,62],[0,3],[2,81],[2,67],[1,50],[0,137],[0,90],[0,174],[0,325],[0,116],[0,2],[0,207],[0,166],[0,118],[0,334],[0,90],[0,48],[0,22],[0,88],[0,81],[0,124],[0,33],[0,187],[0,37],[0,77]],[[74800,20527],[-40,0],[-160,0],[-7,0],[-374,0],[-426,0],[-438,0],[-125,0],[-195,0],[-28,0],[-45,0],[-34,0],[-99,0],[-89,0],[-5,0],[-141,0],[-139,0],[-186,-1],[-342,-1],[-259,-1],[-86,0],[-199,-1],[-308,-1],[-107,2],[-66,0],[-42,1],[-155,2],[-289,-5],[-33,0],[-293,-3],[-161,-1],[-319,-1],[-225,-1],[-130,0],[-88,-1],[-182,-3],[-366,-7],[-377,-7],[-143,-2],[-28,-1],[-154,-3],[-102,-4],[-119,-1],[-210,-4],[-132,-4],[-3,0],[-256,-5],[-208,-5],[-288,-6],[-106,-2],[-48,-1],[-167,-1],[-106,0],[-42,-1],[-402,-1],[0,-83],[0,-107],[0,-37],[-156,-2],[-86,1],[-1,63],[-1,83],[0,27],[0,50],[-110,-1],[-342,-1],[-170,0],[-115,-1],[-20,0],[-100,-1],[-6,0],[-90,-1],[-35,0],[-268,-2],[-6,0],[-42,0],[-303,-2],[-139,-1],[-151,-2]],[[63587,20440],[-1,38],[-1,39],[-1,31],[-2,24],[-2,61],[-1,40],[-2,39],[0,23],[-1,22],[-2,43],[-1,22],[0,32],[12,20],[-8,137],[2,203],[0,35],[0,33],[0,31],[1,28],[1,34],[1,24],[1,25],[-2,22],[0,22],[-1,21],[3,17],[1,8],[3,53],[4,82],[-1,57],[-5,209],[-7,317],[0,29],[-2,82],[-1,15],[-2,124],[-2,54],[-1,65],[-3,116],[-1,75],[-7,284],[-2,116],[-2,78],[-4,185],[-8,347],[0,1],[-1,58],[-6,244],[-4,150],[-1,38],[-1,35],[0,2],[0,34],[-10,441],[-6,184],[-6,257],[0,32],[-1,25],[27,123],[24,109],[7,34],[9,38]],[[63587,20440],[9,-40],[4,-149],[2,-84],[-2,-221],[0,-28],[-1,-126],[0,-67],[-3,-345],[-1,-75],[-1,-269],[8,-119],[2,-87],[2,-53],[5,-187],[5,-165],[3,-108],[1,-41],[3,-92],[2,-53],[3,-102],[2,-89],[2,-46],[3,-91],[1,-38],[0,-15],[4,-121],[8,-223],[3,-89],[2,-60],[-2,-124],[1,-32],[2,-91],[1,-32],[0,-27],[2,-32],[2,-29],[0,-31],[1,-65],[9,-77],[1,-95],[1,-34],[1,-31],[3,-59],[47,0],[48,-1],[1,-28],[-18,-32],[8,-129]],[[63761,16308],[-101,0],[-131,1],[-138,0],[-159,0],[-236,0],[-84,1],[-268,0],[-180,3],[-128,2],[-324,-4],[-179,-6],[-44,0],[-32,-1],[-35,0],[-212,0],[-91,0],[-100,0],[-394,-2],[-34,-1],[-52,1],[-31,0],[-34,0],[-36,1],[-36,0],[-37,0],[-47,1],[-67,1],[-37,1],[-34,1],[-48,1],[-72,0],[-3,0],[-180,1],[-14,0],[-34,3],[-142,0],[-66,0],[-67,1],[-41,0],[-62,0],[-82,1],[-3,0],[-30,0],[-65,0],[-41,1],[-52,0],[-48,0],[-147,1],[-18,0],[-53,0],[-174,0],[-228,1],[-77,2],[-52,0],[-43,-1],[-31,0],[-32,0],[-32,0],[-131,-4],[-135,-1],[-134,-1],[-92,4],[-31,0],[-72,0],[-83,0],[-36,0],[-60,0],[-59,0],[-84,-7],[-155,0],[-46,0],[-220,1],[-103,-1],[-349,-2],[-202,-1],[-250,-3],[-98,4],[-70,0],[-158,-1],[-186,-4],[-74,-3],[-61,0],[-158,2],[-28,0],[-48,-1],[-64,-1],[-318,-5],[-260,5],[-98,3],[-45,0],[-38,0],[-38,-2],[-33,-1],[-30,1],[-146,0],[-126,1],[-181,6],[-186,6],[-3,0],[-185,7],[-167,5],[-236,7],[-66,1],[-33,1],[-201,-6],[-173,0],[-100,0],[-135,0],[-73,0],[-76,-1],[-103,0],[-124,0],[-162,0],[-217,0],[-189,0],[-60,-1],[-65,0],[-15,0],[-157,1],[-177,-3],[-69,-1],[-174,-1],[-74,4],[-59,-5],[-153,-1],[-180,-1],[-32,3],[-83,0],[-79,0],[-36,0],[-29,0],[-35,0],[-51,0],[-206,-3],[-95,-1]],[[49785,16318],[2,40],[5,79],[-15,5],[-324,0],[0,8],[-1,105],[0,83],[-1,114],[0,115],[0,140],[0,62],[-1,155],[0,123],[0,124],[0,238],[-2,194],[0,27],[-2,203],[0,87],[0,43],[-1,45],[-2,179],[-1,53],[-1,84],[-1,152],[-2,212],[3,25],[6,30],[-2,154],[-1,126],[0,25],[0,59],[0,4],[0,82],[1,266],[0,42],[1,31],[3,322],[1,199],[1,90],[0,2]],[[26634,1410],[-297,-23],[-53,-12],[-189,-29],[-178,-38],[-142,-22],[-127,-23],[11,89],[59,20],[16,5],[98,23],[64,18],[114,-8],[103,0],[231,17],[62,20],[152,27],[75,28],[0,-44],[1,-48]],[[27792,1793],[-89,-20],[-86,-30],[-64,-37],[-117,-22],[-111,-15],[-97,-20],[-82,-21],[-94,-14],[-87,-13],[-116,-18],[-83,-19],[-82,-19],[-95,-23],[-82,-2],[-62,-5],[-121,-30],[-74,-13],[-124,-16],[-61,-9],[-79,20],[99,23],[88,17],[89,9],[63,23],[63,25],[44,13],[115,17],[119,27],[59,39],[70,8],[74,23],[97,26],[59,48],[61,5],[74,-1],[45,28],[93,-6],[64,-3],[61,-5],[128,40],[61,14],[52,20],[60,40],[93,23],[69,13],[220,9],[93,14],[65,11],[74,0],[-13,-41],[-39,-34],[-77,-2],[-59,-17],[-69,-20],[-96,-28],[-110,-22],[-83,-10]],[[15187,9594],[31,-51],[8,-30],[5,-22],[-9,-39],[26,-72],[-22,-70],[-9,-45],[-1,-5],[-16,-59],[-36,-47],[-55,55],[-96,53],[-50,37],[9,3],[77,28],[25,55],[-19,62],[-49,50],[-94,11],[-93,20],[-49,43],[-1,0],[-2,0],[-99,-22],[-51,-59],[-63,-47],[-70,-25],[25,66],[43,53],[38,51],[3,4],[46,53],[38,49],[61,33],[-2,58],[17,47],[54,69],[24,52],[59,33],[48,74],[56,65],[146,-246],[1,-55],[5,-58],[11,-37],[9,-46],[21,-36],[0,-53]],[[14834,10426],[28,-65],[33,-76],[-36,-93],[-84,-102],[-63,-78],[-55,-101],[4,-53],[-19,-60],[-51,-63],[-82,-61],[-36,-34],[-19,-32],[-11,-18],[-90,-16],[-67,2],[-57,24],[-34,19],[5,20],[2,6],[-5,81],[116,0],[18,30],[-44,43],[-18,57],[-7,35],[-75,14],[-16,72],[84,28],[40,24],[0,30],[-40,16],[-15,51],[4,57],[-51,11],[-43,62],[22,30],[94,16],[32,49],[-79,40],[-62,-29],[-58,27],[-66,-50],[-71,-21],[-91,25],[-68,-36],[-33,-83],[-108,-119],[-69,-57],[-73,-173],[-144,-41],[-14,-17],[-37,-45],[43,-32],[26,-19],[-127,-6],[-134,36],[-25,21],[-9,7],[74,56],[37,26],[37,26],[53,34],[46,39],[35,30],[29,37],[34,34],[55,52],[53,40],[54,48],[52,54],[40,73],[25,78],[37,70],[43,77],[121,152],[1,41],[36,41],[105,103],[47,34],[60,42],[71,42],[84,34],[80,23],[292,46],[75,-4],[63,-4],[77,-9],[83,-10],[-43,-77],[-57,-91],[-38,-66],[-21,-114],[-12,-54],[0,-105],[-3,-76],[10,-75]],[[23914,21530],[-3,-42],[2,-22],[0,-86],[0,-72],[0,-179],[0,-56],[1,-41],[0,-146],[-2,-172],[1,-28],[0,-174],[-1,-167],[0,-124],[0,-91],[-1,-134],[0,-35],[6,-144],[0,-151],[-1,-44],[-1,-196],[4,-72],[-1,-31],[0,-40],[0,-26],[0,-25],[0,-27],[0,-29],[0,-33],[0,-25],[4,-76],[-8,-120],[-3,-49],[-3,-61],[4,-74],[4,-67],[2,-36],[1,-21],[6,-112],[0,-53],[0,-348],[-12,-231],[14,-59],[-3,-39],[-2,-106],[-1,-37],[2,-138],[1,-30],[2,-173],[0,-2],[-3,-299],[4,-32],[1,-24],[0,-49],[0,-28],[2,-27],[0,-30],[0,-38],[0,-23],[0,-38],[-1,-48],[-9,-23],[3,-31],[0,-6],[4,-153],[-1,-59],[125,0],[2,0],[42,1],[155,0],[136,1],[3,0]],[[24389,16380],[-8,-36],[17,-24],[6,-30],[13,-29],[3,-7],[21,-24],[5,-5],[-8,-25],[3,-10],[7,-16],[13,-12],[27,-15],[1,-1],[6,-5],[46,-63],[4,-9],[15,-51],[-1,-13],[-12,-13],[-28,-27],[2,-26],[29,-70],[24,-38],[44,-65],[2,-3],[20,-29],[14,-21],[4,-21],[1,-15],[0,-2],[-3,-9],[-12,-33],[-22,-51],[-32,-53],[8,-53],[0,-12],[-18,-41],[-106,-165],[-31,-53],[-39,-48],[-14,-9],[-24,-8],[-4,-2],[-25,-17],[-19,-16],[-36,-43],[-11,-17],[-127,-180],[-5,-7],[-8,-21],[-5,-33],[-11,-23],[-2,-5],[-41,-81],[-41,-38],[-6,-6],[-10,-19],[-9,-15],[-3,-21],[-17,-39],[-1,-3],[-46,-105],[-6,-15],[-13,-29],[-12,-27],[-106,-42],[-23,-10],[-27,-17],[-3,-2],[-12,-11],[-9,-81],[5,-8],[29,-48],[11,-21],[4,-47],[-1,-4],[-20,-28],[-5,-8],[-10,-8],[-19,-6],[-20,-3],[-26,-4],[-39,-22],[-13,-9],[-89,-65],[-14,-23],[-1,-28],[-27,-52],[-63,-105],[-37,-54],[0,-1],[-10,-17],[-1,-16],[0,-1],[10,-6],[58,-32],[5,-3],[113,-79],[10,-9],[46,-54],[7,-9],[22,-49],[-38,-84],[-1,-1],[-2,-6],[-14,-16],[-6,-20],[2,-7],[13,-11],[7,-6],[15,-12],[27,-10],[3,0],[24,-7],[14,-8],[28,-17],[19,-16],[26,-21],[52,-20],[79,-57],[3,-3],[23,-39],[1,-12],[-5,-10],[-10,-21],[0,-6],[6,-4],[136,-40],[16,-1],[13,4],[12,2],[12,-1],[118,-27],[20,-12],[5,-6],[13,-18],[1,-10],[0,-52],[17,-10],[6,-4],[44,-99],[2,-5],[9,-10],[71,-34],[3,-1],[8,-4],[22,-8],[23,-7],[7,-2],[19,-4],[24,-29],[27,-9],[48,1],[32,-5],[67,-14],[168,-55],[119,-75],[21,-14],[51,-55],[4,-5],[7,-23],[7,-10],[63,-63],[2,-3],[106,-46],[3,-2],[54,-24],[4,-1],[10,-3],[15,-4],[66,-44],[52,-34],[24,-15],[1,-1],[52,-39],[19,-15],[0,-4],[22,-17],[8,-5],[44,-26],[10,-2],[77,-42],[21,-12],[155,-110],[10,-9],[3,-7],[-3,-44],[-9,-45],[-10,-53],[49,-43],[48,-42],[47,-57],[16,-12],[12,-7],[3,-2],[52,-16],[15,-9],[15,-24],[11,-29],[6,-21],[6,-36],[8,-48],[0,-4],[0,-51],[0,-39],[0,-13],[7,-8],[30,-17],[18,-11],[44,-41],[64,-71],[0,-8],[-12,-30],[39,1],[52,-10],[2,0],[14,-4],[156,-61],[51,-22],[94,-44],[25,-18],[70,5],[3,0],[5,0],[21,-12],[161,-139],[51,-56],[7,-9],[4,-17],[15,-14],[2,-2],[5,-2],[18,-7],[37,-7],[50,0],[7,0],[8,-12],[9,-3],[66,-3],[5,-1],[2,0],[79,-11],[139,-20],[3,0],[120,-30],[40,-10],[34,-29],[5,-5],[7,-43],[60,-62],[2,-2],[73,-59],[8,-7],[63,-14],[50,-14],[13,-8],[15,-35],[5,-4],[32,-21],[10,-6],[37,-19],[77,-2],[44,-11],[2,-1],[17,-8],[44,-25],[22,-19],[72,4],[68,25],[71,16],[58,-19],[7,-5],[32,-42],[176,-91],[3,-2],[48,-33],[3,-1],[8,-24],[57,-1],[12,0],[10,-1],[173,-14],[8,-6],[56,-43],[6,-7],[83,-54],[18,-7],[46,-19],[6,-11],[8,-5],[69,-26],[4,-2],[57,-12],[14,2],[117,-30],[33,-11],[14,-4],[2,-1],[13,-4],[100,-41],[8,-7],[3,-17],[13,-65],[-6,-20],[0,-1],[1,-14],[12,-54],[88,-121],[55,-76],[11,2],[4,-1],[44,-28],[17,-11],[18,-19],[2,-2],[0,-2],[7,-13],[24,-66],[-27,-36],[-2,-13],[37,-73],[9,-12],[35,-47],[1,-1],[1,-23],[-10,-49],[-4,-13],[-1,-3],[-10,-38],[-16,-53],[0,-1],[0,-9],[55,-48],[0,-4],[1,-55],[-6,-12],[-19,-38],[-24,-46],[-3,-11],[-13,-53],[-11,-44],[0,-17],[15,-11],[23,-11],[1,-12],[-4,-10],[-12,-26],[-30,-61],[6,-7],[-42,-57],[-41,-57],[-35,14],[-4,2],[-39,-19],[-29,-14],[-69,-34],[7,-4],[-38,-16],[-3,0],[-15,0],[7,-8],[19,-24],[-4,-71],[-36,-188],[-21,-79],[-9,-11],[-54,-57],[-16,-63],[-5,-19],[26,-7],[-8,-13],[-23,-39],[-9,-15],[-21,-36],[-50,13],[-38,9],[-2,0],[-4,-5],[-34,-45],[3,-30],[5,-49],[0,-1],[-5,-12],[-6,-14],[-13,-32],[-6,-15],[-7,-15],[-23,-10],[-22,-6],[-78,9],[-8,-1],[-23,-9],[-5,-2],[-48,-17],[-8,-16],[-7,-15],[-17,-32],[-1,-8],[-7,-39],[-1,-3],[-6,-7],[-103,-85],[-10,-4],[-30,-5],[-8,0],[-29,-2],[-5,-1],[-16,-3],[-4,-2],[-4,-3],[-5,-4],[-48,-100],[5,-28],[-59,-59],[-29,-28],[-14,-11],[-15,-13],[-17,-14],[12,-12],[6,-10],[2,-3],[0,-1],[43,-103],[-2,-8],[-5,-5],[-9,-3],[-24,-4],[-23,-1],[-7,3],[-5,7],[-3,18],[-1,1],[-5,5],[-29,8],[-18,-1],[-7,-7],[-58,-87],[-1,-4],[36,-43],[-9,-31],[-8,-25],[-14,-48],[-2,-8],[4,0],[3,0],[35,-97],[0,-2],[1,-2],[-7,-17],[-14,-7],[-23,-1],[-81,19],[23,-21],[8,-9],[8,-10],[3,-32],[20,-23],[13,-10],[18,-12],[28,-14],[31,-21],[35,-7],[14,4],[52,-3],[16,-5],[3,-2],[9,-3],[44,-36],[2,-2],[9,-7],[9,-19],[0,-2],[41,-46],[27,-18],[15,-11],[8,-7],[28,-5],[22,-17],[9,-21],[-8,-90],[7,-11],[40,-31],[3,0],[21,-4],[22,-17],[1,-6],[3,-23],[-13,-18],[-4,-4],[-12,-5],[-26,7],[-25,9],[-3,1],[-16,8],[-20,-6],[-16,-2],[-4,0],[-17,-11],[0,-6],[0,-3],[1,-6],[15,-16],[4,-6],[4,-5],[8,-25],[-55,2],[-73,0],[5,-53],[27,-44],[8,-14],[49,-72],[8,-11],[37,-52],[67,-53],[89,-80],[52,-55],[80,-31],[50,-22],[57,-37],[-32,-28],[42,-44],[34,-41],[61,-31],[13,-7],[103,-20],[83,-5],[74,-6],[73,-61],[92,-19],[116,-4],[130,-6],[-123,-84],[-43,-41],[-38,-62],[-18,-44],[-10,-69],[-3,-51],[-5,-48],[-24,-39],[-26,-34],[-91,-4],[-21,-14],[-84,-58],[-78,-25],[-81,2],[-62,-1],[-101,9],[-79,-19],[-144,-3],[-99,-21],[-44,-29],[-36,-51],[-49,-44],[-19,-71],[-2,-5],[-29,-56],[-79,-37],[-65,-11],[-113,-36],[-97,-48],[-15,-47],[9,-54],[-22,-52],[-60,-90],[9,-45],[37,-64],[-58,-42],[-89,-46],[-56,-45],[-37,-33],[-30,-52],[17,-52],[-21,-58],[-36,-45],[-16,-36],[-51,-36],[-209,-110],[-124,-78],[-174,-123],[-80,-48],[-70,-4],[-46,16],[7,63],[-16,62],[-46,36],[-83,13],[-30,24],[23,24],[0,50],[2,31],[34,49],[-41,58],[-54,37],[18,35],[39,53],[-32,34],[-69,19],[-40,11],[5,-32],[65,-20],[-70,-73],[59,-83],[-38,-105],[65,-29],[-4,-23],[-32,-28],[7,-59],[84,-13],[40,-21],[-46,-57],[-59,-43],[-64,-37],[-64,-33],[-91,-20],[5,51],[-61,47],[-58,51],[-4,63],[8,56],[-28,55],[-69,33],[-7,-50],[-17,-65],[19,-70],[-67,-24],[-95,-30],[-75,-27],[-63,-58],[79,-4],[90,30],[95,40],[97,-17],[21,-55],[-36,-49],[-34,-58],[-39,-55],[-29,-66],[-13,-43],[-29,-59],[-34,-95],[-86,18],[-73,-1],[-80,0],[-60,0],[-65,3],[-71,23],[-37,-71],[-26,-48],[-36,-48],[-75,-1],[24,-44],[-16,-55],[-16,-61],[-106,3],[-96,36],[-93,31],[-29,36],[-42,80],[-42,64],[-31,-66],[3,-67],[-60,-38],[-115,47],[-61,14],[-62,0],[-66,-16],[-68,-47],[-34,-79],[-45,-51],[-68,-41],[-58,63],[-50,79],[-40,67],[-5,56],[-17,42],[-51,42],[15,56],[-20,62],[18,57],[53,42],[35,54],[79,28],[14,51],[-8,61],[-62,44],[47,23],[-29,41],[35,62],[76,12],[6,47],[-89,-11],[-81,-8],[1,-45],[-12,-50],[-47,-50],[-11,-22],[-13,-25],[-35,-56],[-82,-29],[-80,-28],[-77,9],[7,59],[-3,59],[-52,37],[-61,19],[-40,12],[-15,5],[29,74],[-27,46],[-9,61],[35,49],[-76,10],[-72,37],[-3,85],[-13,-14],[-41,-45],[-7,-63],[-125,13],[-15,1],[-26,-47],[-60,-33],[61,-10],[60,3],[81,1],[81,-29],[41,-86],[-41,-75],[-109,-49],[86,-52],[63,22],[-7,-67],[-84,-27],[-16,-53],[34,-50],[46,-36],[100,-55],[52,-57],[73,-13],[60,-9],[-53,-78],[-81,-76],[-22,-57],[-78,-73],[-61,-22],[-46,-26],[-68,14],[-78,-30],[-2,-38],[-73,-21],[-94,4],[-37,35],[-57,16],[10,-59],[-39,-12],[-44,-13],[88,-23],[67,2],[72,5],[76,-2],[62,3],[79,-11],[96,-11],[63,-17],[93,-20],[137,-14],[69,-24],[111,-25],[99,-2],[86,-2],[96,12],[113,22],[97,62],[70,78],[107,27],[92,-31],[107,-16],[101,-11],[-38,-52],[67,-21],[66,1],[80,27],[57,32],[68,45],[92,28],[78,-9],[87,36],[74,37],[60,32],[28,39],[52,19],[66,-16],[116,3],[82,-34],[4,-59],[-20,-47],[-3,-52],[-97,-3],[-80,-13],[-70,-22],[-79,-10],[-47,-5],[-90,-28],[-79,-24],[-48,-38],[-80,-45],[-50,-29],[-9,-6],[-50,29],[5,17],[-90,8],[-107,-10],[-149,-13],[-125,-30],[-84,-51],[-4,-2],[36,-54],[84,-18],[15,2],[43,-21],[-47,-51],[-84,-13],[-117,-27],[-73,-4],[-48,-16],[-28,-11],[-96,-33],[72,-20],[73,3],[65,7],[60,8],[50,25],[29,10],[139,-10],[-3,-4],[-37,-50],[-26,-60],[-163,-35],[-94,0],[-197,2],[-164,-27],[-78,-20],[-108,-13],[-150,-29],[-151,-37],[-352,-69],[-90,-14],[-118,-23],[-193,-38],[-100,-20],[-119,-22],[-113,-16],[-81,-10],[-419,-88],[-49,-7],[-301,-12],[-140,-5],[-92,-7],[-128,-9],[-124,-9],[-70,-5],[-51,-12],[-188,-28],[-145,-18],[-373,-32],[-165,-12],[-417,-18],[-85,-25],[-71,-7],[-243,-38],[-96,-14],[-88,-11],[-401,-57],[-56,-6],[-229,-34],[-60,-5],[-339,-40],[-104,-17],[-113,-8],[-118,-5],[-342,-20],[-195,-5],[-88,-4],[-126,-3],[-21,-1],[-43,-1],[-26,0],[-251,7],[-222,3],[-87,5],[-436,4],[-277,14],[-589,17],[-198,10],[-385,6],[-136,1],[-196,-4],[-117,-2],[-183,-3],[-376,-9],[-493,-36],[-180,-15],[-380,-28],[-75,-16],[-115,-17],[-82,-14],[-425,4],[-73,7],[-67,23],[173,108],[88,15],[74,13],[76,9],[84,6],[67,-3],[82,2],[130,2],[68,2],[146,3],[146,12],[111,16],[53,4],[51,-4],[152,5],[34,2],[174,6],[20,9],[18,8],[66,30],[91,40],[112,-51],[75,5],[42,29],[29,74],[-120,75],[-72,30],[62,32],[31,26],[37,18],[69,-5],[65,5],[-10,77],[74,64],[77,24],[71,1],[56,27],[143,41],[112,-58],[83,-31],[133,-75],[164,-15],[64,-44],[18,-50],[148,-63],[114,-37],[133,-42],[166,-41],[88,-11],[63,1],[32,0],[84,-8],[156,-2],[114,3],[32,2],[179,11],[55,7],[74,0],[2,0],[81,12],[89,18],[87,21],[183,51],[124,28],[96,29],[61,17],[71,19],[56,8],[166,45],[70,25],[123,22],[58,9],[90,1],[70,-8],[78,2],[109,-15],[98,-5],[217,3],[172,21],[83,19],[112,25],[113,23],[62,23],[49,18],[87,40],[75,19],[53,42],[43,57],[48,45],[87,91],[59,50],[33,31],[-1,51],[14,36],[84,18],[10,2],[45,43],[47,26],[36,55],[-20,81],[20,42],[52,6],[103,-46],[58,-73],[56,-62],[37,-36],[7,-60],[9,-34],[3,-12],[11,-40],[-62,-30],[-20,-47],[-30,-66],[11,-72],[60,-51],[89,-11],[78,18],[140,37],[61,44],[45,53],[0,44],[-19,54],[-34,44],[-2,3],[-6,7],[-44,64],[-85,-7],[-59,-2],[-77,20],[-19,46],[-83,97],[-15,55],[-39,44],[26,37],[72,48],[65,53],[101,7],[53,54],[-152,4],[-106,-39],[-105,-48],[-135,0],[-79,-9],[-46,-11],[-24,-5],[-76,-48],[-16,-42],[-41,-42],[-101,50],[-64,68],[-137,141],[-68,66],[-86,73],[-80,43],[-54,23],[-105,41],[-54,12],[-61,23],[-97,38],[-82,35],[-66,28],[-98,35],[-95,42],[-64,38],[-89,47],[-75,36],[-109,88],[-54,48],[-77,47],[-82,65],[-59,46],[-105,75],[-60,40],[-61,51],[-30,42],[-63,79],[-3,4],[-1,1],[-33,49],[-21,35],[-34,54],[-15,40],[9,69],[9,54],[101,8],[47,36],[2,57],[8,57],[-3,51],[108,60],[89,33],[86,13],[76,18],[29,-46],[29,-12],[24,-10],[37,64],[-14,64],[-104,42],[-81,33],[-5,124],[-81,114],[4,69],[-43,45],[-1,1],[-96,-57],[-6,76],[-83,-10],[-65,-36],[-7,-45],[-46,-49],[-35,-43],[-69,-35],[-36,-28],[-61,-52],[-60,-88],[-10,-47],[12,-50],[76,-74],[38,-54],[54,-78],[48,-57],[19,-52],[-98,10],[-159,7],[-186,19],[-241,73],[-90,34],[-90,41],[-206,95],[-81,45],[-51,24],[-23,11],[-64,36],[-61,25],[-63,27],[-51,29],[-69,41],[-75,29],[-60,40],[-57,18],[-82,26],[-78,30],[-61,45],[-50,79],[-12,66],[-20,40],[-11,51],[-15,70],[-18,73],[-17,84],[-24,112],[-13,52],[-2,60],[-12,49],[-27,46],[-13,60],[-28,56],[-43,85],[-12,47],[0,57],[-22,74],[-22,81],[-12,34],[-56,57],[-71,49],[-191,91],[-142,37],[86,67],[99,115],[74,83],[40,78],[29,68],[34,59],[49,53],[21,62],[71,77],[64,48],[32,37],[55,78],[24,37],[56,53],[46,74],[5,49],[51,54],[54,70],[74,78],[-17,67],[23,65],[12,47],[-17,46],[-16,46],[-2,48],[-3,46],[-8,61],[-24,69],[-46,75],[-46,59],[-36,34],[-74,53],[-30,67],[-22,48],[-42,90],[4,52],[9,93],[12,63],[-4,51],[13,38],[12,46],[7,42],[13,67],[-4,53],[-18,57],[17,49],[-25,47],[-20,34],[-34,38],[-47,48],[-50,18],[-39,36],[16,44],[27,31],[18,52],[-1,37],[-17,35],[42,35],[33,51],[0,56],[14,61],[13,72],[25,61],[-44,15],[-14,38],[-94,-2],[-26,-49],[3,-46],[-1,-74],[-45,-78],[-53,-64],[-21,87],[-18,61],[8,68],[14,46],[17,33],[21,40],[1,1],[40,133],[-28,51],[-8,44],[1,9],[0,7],[2,34],[11,23],[16,32],[20,46],[-6,26],[-6,32],[-2,6],[-14,52],[-19,78],[-66,76],[-58,78],[-38,51],[-32,56],[-30,64],[-22,51],[-8,36],[-12,55],[-3,76],[-39,38],[-64,41],[-35,45],[5,115],[17,45],[54,65],[42,60],[28,71],[35,62],[16,64],[12,44],[33,52],[73,59],[42,32],[70,53],[6,15],[9,20],[6,15],[-40,2],[-60,2],[-105,-20],[-73,-39],[-141,-42],[-103,21],[-88,-28],[-111,-8],[-92,-10],[-90,-13],[-110,-18],[-91,-22],[-65,-24],[-88,-67],[-70,-49],[-48,-43],[-124,-85],[-56,-31],[-28,-56],[-66,-59],[-4,-54],[-51,-58],[-3,-55],[-29,-100],[-35,-62],[-49,-80],[-85,-51],[-40,45],[-2,40],[97,190],[40,34],[20,51],[-77,38],[-78,31],[-75,12],[-41,-61],[-25,-50],[38,-28],[40,-42],[-35,-40],[-85,-16],[-66,7],[-53,23],[-67,41],[-84,-13],[-59,14],[-16,38],[-45,45],[-37,63],[-15,71],[2,43],[13,55],[13,45],[24,40],[47,50],[69,49],[55,26],[73,27],[66,22],[72,50],[-66,28],[28,59],[56,45],[98,63],[73,49],[75,19],[72,5],[33,69],[13,75],[-69,30],[-76,3],[-47,-43],[-27,71],[-60,70],[7,96],[-60,24],[-79,-12],[-101,-62],[-71,-14],[-121,-32],[-116,-37],[-54,-37],[0,-69],[-81,-51],[-53,-52],[0,-86],[65,-143],[11,-60],[-42,-8]],[[12659,11117],[-83,45],[-110,89],[-1,39],[99,138],[41,53],[31,44],[-2,65]],[[12634,11590],[-66,46],[56,85],[39,49],[68,55],[79,41],[65,35],[64,23],[87,15],[71,16],[30,21],[21,15]],[[13148,11991],[51,10],[5,1],[61,17],[22,7],[14,7],[109,55],[29,26],[4,4],[3,5],[18,27],[0,5],[4,23],[2,17],[-22,80],[-13,49],[-9,34],[3,27],[24,56],[38,20],[81,42],[12,3],[124,32],[68,15],[8,-1],[106,26],[68,23],[200,81],[72,15],[53,-1],[30,7],[78,-7],[15,-1],[71,4],[20,4],[13,2],[20,0],[50,-1],[70,33],[30,16],[9,5],[10,5],[28,31],[13,26],[7,13],[14,30],[7,84],[-8,30],[-12,27],[-11,26],[-4,8],[-20,46],[-48,42],[-62,62],[-89,70],[-10,7],[-47,28],[-142,79],[-86,36],[-220,70],[-227,55],[-40,15],[-5,3],[-16,10],[-28,16],[-71,54],[-11,8],[-20,36],[-14,51],[-3,52],[-1,11],[9,70],[1,6],[56,115],[80,104],[166,136],[130,85],[89,48],[78,30],[67,20],[22,7],[67,33],[38,45],[3,10],[2,2],[41,29],[3,38],[30,23],[4,119],[5,26],[2,15],[3,26],[11,38],[16,25],[28,29],[35,25],[48,27],[98,27],[58,12],[55,4],[91,4],[77,15],[116,37],[134,54],[28,4],[46,11],[3,0],[-4,72],[-38,82],[-20,20],[-23,34],[-45,34],[-31,-1],[-2,0],[-116,27],[-51,16],[-21,9],[-65,28],[-47,35],[-9,7],[-17,27],[-7,31],[-16,73],[-19,41],[-6,6],[-14,16],[-5,6],[-49,37],[-23,11],[-39,16],[-85,15],[-20,1],[-98,5],[-41,2],[-58,-4],[-44,-8],[-28,-4],[-65,3],[-20,7],[-22,17],[2,44],[11,21],[89,87],[19,34],[2,2],[0,10],[11,129],[15,25],[43,43],[45,55],[4,6],[2,10],[1,9],[4,33],[-8,63],[-27,78],[-16,39],[2,42],[-3,13],[-2,7],[-2,2],[-30,18],[-10,6],[-22,2],[-35,2],[-47,15],[-34,28],[3,24],[2,10],[60,47],[37,22],[12,7],[9,3],[46,15],[15,-1],[30,-4],[7,-2],[17,-7],[10,-1],[16,0],[23,-2],[35,22],[18,49],[5,14],[9,6],[20,13],[29,30],[11,20],[6,41],[-18,14],[-108,76],[-36,25],[-4,3],[-36,36],[-14,22],[-2,9],[-3,13],[-3,13],[1,4],[4,32],[3,5],[8,16],[23,24],[11,11],[17,8],[66,32],[139,50],[84,46],[39,28],[2,4],[14,20],[58,87],[10,15],[-5,37],[-2,12],[-5,38],[-9,62],[4,32],[2,17],[-7,38],[-32,64],[-64,49],[-43,15],[-52,11],[-4,0],[-111,4],[-133,-9],[-50,3],[-8,0],[-13,3],[-27,0],[-64,-2],[-32,-3],[-73,57],[0,9],[-3,4],[-81,111],[-12,9],[-29,22],[-35,16],[-68,51],[-18,24],[-2,2],[-8,11],[-3,4],[-20,40],[1,3],[2,50],[19,46],[19,23],[46,34],[190,98],[27,24],[11,10],[145,130],[54,57],[8,8],[21,18],[62,54],[28,27],[51,49],[2,4],[96,76],[52,42],[59,76],[13,31],[-5,83],[-2,23],[3,17],[8,67],[2,10],[4,6],[41,57],[62,65],[11,21],[9,62],[-13,30],[-45,34],[-47,16],[-10,0],[-11,0],[-41,1],[-13,-5],[-86,-27],[-85,-22],[-64,-15],[-50,-5],[-78,4],[-8,2],[-89,12],[-97,24],[-39,9],[-62,27],[-68,46],[-56,80],[-16,35],[3,21],[5,40],[1,7],[4,6],[35,32]],[[94431,22869],[23,-1],[-30,-168],[-47,-135],[-24,-38],[-87,-84],[-64,-33],[-10,-5],[-39,-21],[-56,-29],[-9,-5],[-53,-27],[-80,-7],[-45,-5],[-34,-1],[-8,-1],[-17,-2],[-41,-9],[-69,-37],[-28,-29],[-1,-34],[50,-43],[12,-29],[-3,-68],[-23,-123],[28,-67],[1,-20],[1,-8],[77,-80],[19,-38],[6,-40],[37,-65],[12,-9],[35,-51],[13,-55],[60,-109],[7,-6],[36,-51],[60,-58],[48,-105],[-9,-70],[-25,-69],[-11,-11],[-7,-36],[12,-106],[-14,-52],[-27,-27],[-100,-63],[-67,-54],[-22,-22],[-15,-35],[-21,-117],[1,-40],[8,-9],[5,-43],[-10,-33],[-5,-25],[63,-45],[61,-7],[57,-30],[42,-34],[39,-89],[-3,-3],[-3,-3],[-2,-4],[-2,-3],[-3,-5],[-27,-51],[-4,-7],[-1,-3],[-2,-4],[-1,-3],[-1,-4],[-4,-26],[-26,-93],[-1,-4],[-1,-3],[0,-3],[-1,-37],[0,-4],[1,-4],[1,-4],[1,-3],[1,-4],[2,-3],[2,-3],[3,-4],[20,-26],[2,-2],[3,-3],[3,-3],[4,-3],[3,-2],[4,-2],[4,-3],[4,-2],[2,0],[51,-21],[3,-1],[4,-2],[5,-1],[5,-1],[56,-10],[3,-1],[5,-1],[5,0],[5,0],[2,0],[10,0],[19,1],[3,0],[3,0],[1,0],[258,-21],[23,4],[85,-20],[70,-28],[23,-19],[21,-32],[120,-94],[40,-51],[54,-44],[40,-25],[45,-21],[19,-15],[28,-39],[0,-13],[14,-11],[13,-23],[48,-151],[50,-57],[49,-66],[57,-77],[45,-61],[2,-3],[77,-12],[47,-7],[23,-12],[97,-78],[40,-22],[105,-34],[78,-31],[38,-37],[-2,-36],[9,-44],[-1,-5],[52,-60],[76,-68],[39,-80],[28,-90],[43,-76],[16,-58],[-65,-143],[-26,-18],[25,-32],[52,-55],[89,-72],[65,-59],[72,-115],[43,-32],[99,-38],[23,-19],[32,-42],[8,-54],[-1,-6],[20,-38],[40,-48],[7,-35],[-15,-104],[-7,-138],[44,-74],[66,-76],[18,-46],[-3,-62],[12,-32],[35,-28],[75,-48],[20,-16],[13,-24],[-14,-103],[-19,-34],[-67,-133],[-95,0],[-257,0],[-113,0],[-136,0],[-30,0],[-28,0],[-44,0],[-72,-1],[-29,0],[-256,-1],[-6,0],[-285,0],[-37,0],[-77,0],[-75,0],[-27,4],[-447,-1],[-124,0],[-350,-1],[-359,0],[-115,0],[-187,0],[-50,0],[-169,0],[-52,0],[-81,0],[-55,1],[-251,0],[-103,0],[-93,-1],[-176,4],[-64,-1],[-280,3],[-89,0],[-29,0],[-198,-1],[-145,0],[-122,0],[-208,-1],[-259,-1],[-31,0],[-189,-1],[-68,0],[-407,2],[-82,0],[-207,0],[-68,0],[-106,0],[-80,-1],[-85,-2],[-182,-3],[-234,-4],[-183,-4],[-43,0],[-124,0],[-384,-6],[-46,-1],[-276,-3],[-219,-2],[-88,-1],[-193,-2],[-231,-3],[-4,0],[-171,-2],[-104,-1],[-310,-3],[-421,-5],[-136,-2],[-148,1],[-33,0],[-169,-2],[-260,-4],[-152,-2],[-206,-2],[-15,0],[-31,-1],[-48,0],[-55,-1],[-80,0],[-32,-2],[-180,-2],[-697,-7],[-22,0],[-47,0],[-309,-4],[-232,-2],[-122,-1],[-112,-2],[-90,-1],[-6,0],[-264,-2]],[[83256,16372],[0,65],[4,19],[7,36],[1,6],[2,66],[8,172],[1,17],[4,69],[13,216],[2,28],[2,30],[2,76],[4,165],[6,225],[2,48],[3,74],[6,179],[5,173],[2,50],[1,22],[2,28],[-2,117],[1,202],[1,71],[1,111],[0,11],[0,2],[2,219],[1,102],[0,6],[0,9],[2,57],[-1,187],[0,36],[-2,99],[0,92],[0,65],[-5,259],[-1,43],[0,23],[-1,24],[3,77],[0,8],[0,54],[-2,138],[-1,154],[1,28],[-2,38],[-2,38],[-2,194],[-28,0],[-36,-1],[-34,-1],[-112,-6],[-105,-2],[-38,-2],[-43,-2],[-43,-2],[-58,-2],[-38,-1],[-43,-1],[-41,-1],[-67,-3],[-46,-2],[-54,-2],[-31,-2],[-74,-3],[-103,-4],[-71,-1],[-96,0],[-119,-4],[-198,-7],[-88,-3],[-76,-2],[-475,-21],[-177,-8],[-300,-13],[-61,-2],[-52,-3],[-79,-3],[-143,0],[-277,3],[-5,0],[-116,-3],[-208,-1],[-217,0],[-115,0],[-3,0],[-438,1],[-170,1],[-365,1],[-257,1],[-257,0],[-189,1],[-620,2],[-110,0]],[[49785,16318],[-237,2],[-128,1],[-86,1],[-31,-4],[-29,9],[-29,2],[-100,5],[-48,9],[-46,1],[-84,3],[-19,1],[-51,8],[-76,3],[-43,2],[-30,-1],[-32,1],[-34,-5],[-49,5],[-87,-3],[-112,3],[-83,0],[-39,-2],[-111,-2],[-135,1],[-35,1],[-113,5],[-249,2],[-230,1],[-97,1],[-62,0],[-213,1],[-71,1],[-80,1],[-148,1],[-128,1],[-215,1],[-23,0],[-17,0],[-558,5],[-48,-1],[-180,1],[-302,2],[-82,0],[-73,0],[-332,2],[-339,0],[-36,0],[-33,1],[-75,1],[-56,-1],[-60,1],[-72,1],[-237,-1],[-127,-3],[-40,0],[-19,0],[-22,1],[-116,1],[-122,1],[-123,0],[-88,-1],[-78,0],[-62,1],[-83,1],[-38,0],[-158,2],[-177,2],[-248,2],[-206,2],[-150,2],[-394,4],[-60,0],[-154,2],[-303,3],[-42,7],[-122,7],[-81,0],[-69,0],[-104,0],[-294,1],[-147,-4],[-44,0],[-44,0],[-46,0],[-40,0],[-19,2],[-109,7],[-31,-7],[-30,-2],[-28,0],[-45,0],[-34,1],[-51,0],[-44,0],[-48,0],[-36,0],[-70,-3],[-144,1],[-107,1],[-81,4],[-45,-5],[-68,0],[-139,1],[-139,0],[-129,1],[-112,0],[-203,1],[-237,1],[-272,1],[-37,1],[-67,0],[-170,-13],[-57,1],[-195,7],[-44,2],[-144,5],[-241,-4],[-34,0],[-284,-5],[-64,-1],[-32,-1],[-35,0],[-139,-3],[-29,-1],[-28,0],[-43,-1],[-37,-1],[-16,0],[-96,-2],[-108,-2],[-139,-3],[-41,-1],[-103,-2],[-188,-5],[-149,-3],[-177,-5],[-177,-4],[-92,-3],[-91,-2],[-46,-3],[-91,-5],[-210,-8],[-29,1],[-33,2],[-17,1],[-5,0],[-8,1],[-30,2],[-214,19],[-71,5],[-48,2],[-42,3],[-39,-5],[-19,1],[-9,1],[-29,3],[-35,1],[-12,-19],[-2,-3],[-27,14],[-78,0],[-29,0],[-43,0],[-271,10],[-51,1],[-185,0],[-125,0],[-50,0],[-128,1],[-60,0],[-106,1],[-59,-2],[-165,1],[-66,1],[-98,-12],[-36,0],[-30,0],[-38,0],[-98,0],[-43,0],[-50,0],[-49,1],[-52,0],[-35,-1],[-50,1],[-40,-1],[-117,9],[-157,0],[-110,0],[-343,-9],[-103,1],[-42,1],[-37,-1],[-31,0],[-76,9],[-123,-7],[-551,1],[-351,0],[-217,0],[-7,0],[-287,-5],[-132,0],[-38,0],[-85,2],[-35,0],[-84,0],[-58,0],[-29,1],[-50,0],[-70,-1],[-49,0],[-43,-1],[-85,0],[-36,0],[-45,1],[-36,0],[-41,1],[-33,8],[-58,-3],[-102,0],[-41,0],[-156,0],[-137,1],[-38,0],[-33,3],[-78,-5],[-30,-1],[-129,-2],[-45,0],[-181,-1],[-56,0],[-41,-6],[-145,0],[-225,-1],[-47,-3],[-79,3],[-66,0],[-298,2],[-80,1],[-2,0],[-249,2],[-152,1],[-38,-7],[-56,2],[-45,0],[-30,0],[-37,-1],[-28,1],[-45,0],[-46,0],[-52,-1],[-43,0],[-35,-1],[-34,0],[-66,0],[-33,0],[-34,0],[-421,1],[-211,-2],[-84,-1],[-76,0]],[[83256,16372],[-121,-2],[-84,0],[-65,-1],[-8,0],[-2,0],[-44,-1],[-38,0],[-23,0],[-29,-1],[-35,0],[-116,0],[-128,-1],[-68,0],[-254,-2],[-69,0],[-55,0],[-69,0],[-57,-2],[-123,-1],[-5,-1],[-217,-1],[-42,0],[-35,-1],[-78,0],[-107,-1],[-203,-1],[-151,-1],[-131,-1],[-63,0],[-45,0],[-78,-1],[-58,0],[-40,0],[-11,0],[-80,0],[-17,0],[-327,-2],[-39,0],[-68,0],[-324,-2],[-79,0],[-78,0],[-110,-1],[-37,0],[-108,-1],[-73,0],[-154,-1],[-208,0],[-46,-1],[-6,0],[-33,0],[-140,0],[-205,-1],[-101,-1],[-122,0],[-46,0],[-42,-1],[-44,0],[-96,0],[-6,0],[-99,-1],[-45,0],[-32,-1],[-35,1],[-33,0],[-81,0],[-78,0],[-42,0],[-623,-3],[-280,-1],[-235,-1],[-174,0],[-68,-1],[-223,0],[-73,-10],[-130,-1],[-85,-1],[-67,0],[-185,-1],[-103,-1],[-195,-1],[-597,-4],[-350,-3],[-423,-2],[-45,-1],[-21,0],[-31,0],[-215,-1],[-463,-3],[-238,-2],[-147,-1],[-118,-3],[-106,-1],[-76,0],[-186,-1],[-91,-1],[-67,0],[-164,0],[-187,-1],[-145,-1],[-182,-1],[-242,-1],[-135,-1],[-33,0],[-94,0],[-24,0],[-63,-1],[-29,0],[-79,0],[-131,-1],[-94,0],[-202,-1],[-112,-1],[-47,0],[-30,0],[-37,0],[-270,-1],[-38,0],[-33,0],[-124,-1],[-40,0],[-20,0],[-50,0],[-30,0],[-46,-1],[-115,0],[-97,-1],[-3,0],[-37,0],[-37,6],[-180,1],[-138,0],[-126,0],[-233,2],[-225,0],[-77,1],[-45,0],[-441,0],[-29,1],[-35,0],[-31,0],[-100,-8],[-42,-3],[-41,0],[-38,0],[-68,0],[-143,0],[-201,0],[-196,1],[-156,0],[-314,0],[-52,0],[-226,0],[-131,0],[-121,-1],[-97,5],[-166,6],[-50,-2],[-2,0],[-355,3],[-354,3],[-134,2],[-28,0],[-39,-2],[-36,0],[-48,0],[-54,3],[-9,0],[-36,1],[-38,0],[-41,0],[-39,-2],[-80,2],[-32,2],[-197,3]],[[10836,30],[13,-30],[-114,31],[-162,46],[-145,43],[-100,41],[-84,37],[-23,10],[-2,1],[-97,50],[-86,40],[-3,0],[-17,9],[-71,37],[-45,38],[-72,53],[-22,58],[11,4],[-59,106],[24,20],[26,-20],[28,-40],[18,-22],[22,-28],[18,-36],[35,-40],[-25,-14],[47,-39],[53,-26],[124,-67],[97,-38],[31,-18],[19,-10],[38,-21],[24,-14],[62,-12],[72,-31],[54,-21],[32,-8],[74,-15],[205,-74]],[[10100,1309],[109,-53],[77,-34],[187,-100],[151,-79],[243,-119],[51,-37],[78,-46],[48,-39],[21,-42],[-75,-46],[-82,-8],[-27,1],[-31,-7],[-171,-36],[-31,-4],[-12,-1],[-1,3],[-29,-4],[-193,-27],[-171,26],[-173,5],[-162,41],[-5,-2],[-24,7],[-81,15],[-36,2],[-58,30],[-196,4],[-34,8],[-97,11],[-106,2],[-117,-1],[-42,0],[-44,1],[-124,1],[-155,0],[-250,-3],[-87,-4],[-88,-6],[-77,-3],[-89,-7],[-94,-10],[-87,-5],[-91,-6],[-71,-4],[-134,-12],[-85,-8],[-156,-18],[-96,-8],[-86,-14],[-108,-12],[-130,-17],[-119,-15],[-136,-25],[-67,-11],[-129,-15],[-106,-15],[-111,-21],[-85,-11],[-80,-16],[-88,-12],[-77,-14],[-167,-25],[-55,-13],[-60,-6],[-123,-20],[-123,-15],[-159,-26],[-115,-10],[-72,-10],[-109,-5],[-103,-9],[-112,-8],[-69,0],[-95,-4],[-50,0],[-30,5],[-93,-6],[-95,3],[-120,0],[-101,0],[-169,0],[25,34],[66,23],[127,27],[109,0],[135,-10],[61,-11],[288,15],[180,19],[113,2],[89,6],[134,12],[75,10],[159,29],[106,25],[148,37],[171,10],[59,23],[131,4],[158,36],[110,9],[94,15],[96,13],[134,18],[108,14],[180,20],[104,11],[82,11],[93,2],[69,6],[138,15],[90,12],[86,10],[88,8],[153,14],[94,4],[93,16],[105,5],[88,13],[55,-19],[118,15],[127,1],[106,3],[79,7],[65,5],[73,9],[46,-4],[84,16],[12,1],[85,10],[106,30],[120,-36],[65,-37],[45,0],[34,44],[32,37],[-4,50],[84,22],[73,-50],[229,34],[-68,63],[14,41],[18,14],[9,7],[28,-31],[82,-53],[86,-62],[49,-16],[63,-25],[55,-16],[82,-9],[63,4],[58,38],[96,-47],[22,38],[-67,77],[-72,20],[-80,39],[-113,66],[-63,57],[-77,19],[-113,37],[-46,30],[-52,-7],[-88,-58],[-9,4],[-58,25],[-3,63],[0,3],[-27,70],[-24,4],[-23,5],[-67,39],[38,35],[8,7],[67,-13],[168,-84],[130,-60]],[[7022,2235],[-115,-3],[-57,34],[120,33],[61,1],[62,-12],[-71,-53]],[[9481,2433],[-38,-61],[-24,-62],[-21,-57],[-9,-48],[-12,-49],[-11,-82],[-12,3],[-51,15],[-70,68],[-70,88],[-33,52],[-1,55],[77,43],[81,-14],[75,47],[63,70],[92,48],[25,13],[-24,-63],[-37,-66]],[[6160,2625],[11,-49],[-4,-57],[-20,-75],[-15,-39],[-18,-39],[-11,-49],[-62,3],[-63,19],[-59,79],[-22,64],[-19,43],[-49,15],[-4,24],[21,29],[75,-12],[44,25],[8,47],[53,28],[-21,53],[-56,40],[-87,12],[12,62],[44,69],[27,64],[19,70],[-8,69],[-14,56],[12,60],[57,-17],[34,-38],[17,-65],[0,-42],[-13,-88],[-2,-63],[16,-74],[11,-52],[10,-43],[46,-66],[30,-63]],[[12539,5874],[-9,-70],[-163,45],[-368,160],[-266,141],[163,115],[120,109],[94,96],[77,-12],[146,-13],[120,-90],[43,-77],[43,-404]],[[12659,11117],[20,-58],[27,-71],[12,-37],[-2,-42],[4,-54],[-7,-70],[10,-87],[27,-75],[16,-44],[39,-58],[5,-26],[63,-85],[101,-78],[62,-60],[14,-78],[-25,-68],[-47,-70],[-11,73],[18,108],[-43,70],[-131,85],[-58,5],[-36,-92],[-50,-133],[-76,-57],[-60,-44],[-9,-7],[-18,-57],[376,-138],[-43,-35],[-105,-86],[-65,-44],[0,-38],[-40,-102],[-98,-76],[-81,-8],[-53,33],[-44,46],[-29,36],[-40,48],[-35,119],[5,44],[-16,75],[21,59],[0,5],[-2,69],[-1,10],[-20,54],[-16,46],[-8,63],[1,61],[-22,50],[-2,66],[-19,99],[-33,66],[-46,89],[-4,53],[-20,44],[-8,43],[1,60],[5,48],[3,27],[26,67],[20,47],[19,38],[14,27],[24,55],[21,29],[59,89],[47,90],[24,46],[22,32],[36,48],[51,55],[52,55],[40,42],[113,-23]],[[13148,11991],[-38,8],[-117,-19],[-135,-30],[-85,-18],[-84,-45],[-202,-208],[-161,-159],[-92,-121],[-103,-154],[-106,-137],[-57,-100],[5,-46],[2,-27],[5,-57],[0,-1],[-8,-47],[5,-111],[20,-64],[11,-54],[29,-67],[3,-64],[24,-34],[21,-74],[12,-59],[-24,-47],[55,-112],[31,-150],[4,-23],[-4,-47],[-3,-37],[-4,-45],[-4,-44],[-1,-129],[16,-88],[64,-38],[-1,-63],[54,-40],[5,-54],[-4,-84],[-14,-30],[-24,-111],[-123,-68],[-108,-11],[-69,27],[-72,17],[-98,0],[-51,27],[29,38],[76,0],[105,2],[86,62],[36,63],[13,70],[-93,-43],[-286,-67],[-44,-27],[-39,-67],[-62,-38],[39,-55],[72,-6],[-15,-51],[-69,-27],[-50,2],[0,-40],[0,-54],[29,-24],[31,-28],[50,-8],[27,-43],[-6,-42],[-49,-40],[-60,-40],[-26,-59],[12,-79],[111,-126],[42,-109],[-77,-90],[-71,-110],[-13,-36],[-25,-55],[-47,-75],[-59,-102],[-187,-134],[-92,-62],[-120,-80],[-128,-78],[-83,-99],[-11,4],[-121,40],[44,49],[-22,58],[-197,77],[-128,32],[-223,225],[-60,122],[25,166],[120,90],[103,58],[112,32],[103,-32],[68,32],[-137,45],[-189,32],[-120,0],[-103,-84],[-85,-109],[-26,-160],[0,-90],[-146,7],[9,-18],[17,-34],[-86,-102],[223,0],[103,-71],[86,-134],[77,-96],[60,-116],[94,45],[129,13],[94,-77],[152,-60],[58,-23],[28,-33],[12,-49],[32,-37],[9,-61],[12,-60],[21,-74],[18,-64],[-8,-86],[-7,-45],[-21,-51],[-18,-56],[1,-114],[-109,-26],[-59,-35],[-79,-70],[-56,-52],[-43,-51],[-93,-81],[-25,-24],[-29,-40],[-31,-52],[-31,-62],[-20,-69],[12,-53],[7,-84],[8,-69],[28,-54],[15,-48],[19,-35],[19,-50],[23,-42],[21,-48],[17,-53],[14,-42],[4,-49],[-46,-55],[-47,-80],[-24,-60],[-18,-47],[-78,-39],[-25,-65],[-26,-62],[12,-66],[3,-95],[13,-64],[4,-71],[3,-59],[7,-50],[17,-68],[13,-49],[10,-62],[-1,-49],[-20,-74],[-9,-98],[-2,-41],[-11,-47],[-9,-59],[-18,-66],[-13,-44],[-9,-55],[-1,-74],[0,-58],[-2,-73],[-3,-155],[-4,-57],[-22,-70],[-25,-60],[-56,-82],[-26,-61],[-41,-75],[-25,-34],[-30,-49],[-52,-62],[-38,-40],[-67,-78],[-49,-65],[-48,-51],[-26,-35],[-40,-33],[-47,-25],[-37,9],[-8,2],[-27,22],[-16,12],[-46,56],[42,73],[-101,14],[-103,-8],[-49,-15],[-3,-42],[-13,-74],[-52,-85],[-79,-68],[-87,42],[-66,65],[-53,31],[-83,20],[-32,-44],[52,-45],[31,-61],[22,-42],[57,-29],[-42,-26],[-57,-33],[-97,-22],[-60,-6],[-74,-9],[-149,-8],[-84,-12],[-116,-28],[-129,-41],[-74,-25],[-47,-14],[-67,-27],[-99,-24],[-77,38],[-41,38],[7,48],[69,29],[-31,46],[-13,56],[-43,62],[62,35],[-39,50],[-64,35],[-21,57],[75,38],[112,-63],[53,43],[16,62],[3,74],[8,45],[32,52],[-34,76],[31,82],[43,47],[85,-8],[47,-21],[60,28],[26,12],[-88,3],[-101,24],[-86,34],[-80,-20],[-66,-33],[-68,-13],[-104,-3],[-124,-16],[-86,-24],[-60,-26],[-50,23],[-55,42],[-43,43],[-61,46],[-23,6],[-84,22],[-83,32],[-136,27],[-94,4],[-121,13],[-91,39],[-96,29],[-66,33],[-99,26],[-231,58],[-23,-1],[-112,-9],[-75,0],[-118,-3],[-92,30],[-108,2],[-104,14],[-81,17],[-135,30],[-18,51],[-40,9],[-82,10],[-104,-12],[-64,-18],[-48,-24],[-50,-45],[-47,-78],[-6,-49],[6,-64],[-40,-67],[-30,-29],[-91,-11],[-119,5],[-59,40],[23,17],[54,43],[35,50],[-15,74],[0,42],[-18,24],[-53,11],[-14,21],[47,47],[-11,73],[-50,45],[-66,31],[-67,48],[-57,13],[-81,20],[-74,32],[-69,19],[-70,26],[-81,39],[-114,-9],[-49,-15],[-67,-35],[-105,50],[-75,26],[-52,18],[-72,8],[-65,-10],[-54,-17],[-16,-82],[12,-60],[-38,-85],[-88,-108],[-77,-19],[-55,26],[50,25],[19,80],[33,55],[-27,36],[-114,-10],[-73,-55],[-69,-8],[-14,-71],[-42,-5],[-89,38],[-52,-12],[-8,-42],[51,-36],[73,-28],[0,-59],[-6,-35],[-57,-9],[-56,14],[-12,26],[13,32],[-18,24],[-70,56],[-60,-13],[-236,-35],[-73,1010],[-1,51],[-6,107],[-21,313],[-1,2],[-4,66],[-11,160],[-4,49],[-1,26],[-4,33],[0,2],[-3,33],[-1,4],[0,4],[-20,394],[-6,105],[-10,92],[-10,130],[-4,51],[-6,72],[-4,66],[-1,58],[0,21],[-2,25],[-1,39],[-13,81],[1,43],[0,30],[1,13],[-7,20],[-2,27],[-3,56],[-5,76],[-2,33],[-6,87],[-9,139],[-3,42],[-3,52],[-21,315],[-16,240],[-1,19],[-1,17],[-2,23],[-3,59],[-3,40],[-4,57],[-7,102],[-6,114],[-2,30],[-3,50],[-3,44],[-1,33],[-1,56],[-1,38],[-1,65],[-1,61],[0,42],[1,41],[0,42],[-7,17],[-2,15],[0,5],[-4,68],[-7,56],[-4,71],[-9,138],[-21,404],[-1,24],[-2,32],[-1,25],[-3,43],[-1,28],[-1,2],[-1,27],[-3,51],[-1,22],[-1,19],[-1,5],[0,2],[-2,33],[-4,71],[-3,52],[-1,23],[-1,24],[-1,23],[-2,24],[-2,30],[-1,22],[-2,20],[-1,25],[-1,17],[0,4],[-2,33],[-1,24],[-3,48],[-1,21],[-10,108],[0,48],[-2,22],[-4,59],[0,5],[-2,26],[-1,22],[-1,48],[-1,22],[-2,27],[-3,37],[-3,41],[-2,21],[-3,25],[-2,28],[-9,80],[-6,97],[-5,103],[-3,104],[-7,105],[-3,41],[-6,106],[-8,143],[-16,213],[-8,131],[-6,93],[-5,79],[-4,72],[-34,530],[-5,86],[-8,130],[-9,141],[-4,62],[-12,179],[-5,93],[-3,52],[0,4],[-2,28],[-5,64],[0,8],[-4,66],[-26,181],[-9,125],[-9,139],[-6,95],[-7,103],[-2,19],[-24,361],[-14,197],[-10,149],[-9,129],[-1,24],[-11,166],[-6,81],[-2,33],[-4,54],[-9,136],[-5,74],[-2,29],[-7,111],[-4,84],[-6,116],[-5,102],[-1,28],[-7,126],[-1,25],[-3,61],[-8,39],[-2,23],[-21,263],[-1,48],[0,21],[-7,93],[-18,229],[-6,66],[-6,82],[-14,183],[-4,57],[-14,132],[-6,59],[-1,22],[-9,140],[-7,68],[-2,31],[-3,32],[-1,48],[-4,25],[-7,144],[-1,8],[-2,39],[-2,29],[0,2],[-1,7],[-17,236],[-9,126],[0,3],[-10,163]]],"transform":{"scale":[0.00003585236476364744,0.000047962320723207926],"translate":[-88.47322184299986,30.211837347000085]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ar-counties.json b/src/js/config/mapconfig/mapfiles/county/ar-counties.json new file mode 100644 index 00000000..58e680e0 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ar-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-94.61791188699993,33.004099985000096,-89.64483228799992,36.49960445000005],"geometries":[{"type":"Polygon","properties":{"name":"AR"},"id":"05007","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05049","arcs":[[4,5,6,7]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05015","arcs":[[8,9,10,-1,11]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05135","arcs":[[12,13,14,15,16,-5]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05121","arcs":[[17,18,-14,19,20]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05009","arcs":[[21,22,23,-9,24]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05089","arcs":[[25,26,-22,27]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05005","arcs":[[-7,28,29,30,-26,31]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05021","arcs":[[32,-21,33]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05087","arcs":[[34,35,36,37,38,-2,-11]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05055","arcs":[[39,40,41,-18,-33]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05065","arcs":[[-17,42,43,-29,-6]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05075","arcs":[[-42,44,45,46,-15,-19]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05143","arcs":[[47,48,-3,-39]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05137","arcs":[[49,50,51,52,-30,-44]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05101","arcs":[[-24,53,54,55,-35,-10]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05129","arcs":[[-31,-53,56,57,-54,-23,-27]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05093","arcs":[[58,59,60,61]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05031","arcs":[[-61,62,63,-45,-41,64]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05063","arcs":[[-47,65,66,67,-50,-43,-16]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05067","arcs":[[-46,-64,68,69,70,71,-66]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05141","arcs":[[-52,72,73,74,75,-57]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05047","arcs":[[76,77,78,-37,79]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05071","arcs":[[-36,-56,80,81,-80]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05033","arcs":[[82,83,-48,-38,-79]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05115","arcs":[[-58,-76,84,85,86,-81,-55]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05023","arcs":[[-68,87,88,-73,-51]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05111","arcs":[[-60,89,90,-69,-63]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05145","arcs":[[-72,91,92,93,94,-88,-67]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05029","arcs":[[95,96,97,-85,-75]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05131","arcs":[[-78,98,99,100,-83]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05037","arcs":[[101,102,103,-70,-91]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05147","arcs":[[-104,104,105,106,-92,-71]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05035","arcs":[[-59,107,108,109,-102,-90]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05083","arcs":[[-82,-87,110,111,-99,-77]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05045","arcs":[[-89,-95,112,113,114,-96,-74]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05149","arcs":[[-98,115,116,117,118,-111,-86]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05123","arcs":[[-110,119,120,-105,-103]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05105","arcs":[[121,122,123,-116,-97,-115]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05127","arcs":[[-119,124,125,126,-100,-112]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05117","arcs":[[-107,127,128,129,-93]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05085","arcs":[[-130,130,131,132,-113,-94]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05119","arcs":[[-133,133,134,135,-122,-114]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05095","arcs":[[-121,136,137,138,-128,-106]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05077","arcs":[[-109,139,140,-137,-120]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05125","arcs":[[-136,141,142,143,-123]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05051","arcs":[[-144,144,145,-117,-124]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05097","arcs":[[-146,146,147,148,149,-125,-118]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05113","arcs":[[150,151,152,-126,-150]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05107","arcs":[[153,154,155,-138,-141]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05001","arcs":[[-139,-156,156,157,158,-131,-129]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05059","arcs":[[-143,159,160,161,-147,-145]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05053","arcs":[[-135,162,163,164,-160,-142]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05069","arcs":[[-132,-159,165,166,-163,-134]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05061","arcs":[[167,168,169,170,-151]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05109","arcs":[[171,172,173,-168,-149]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05019","arcs":[[-162,174,175,176,-172,-148]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05133","arcs":[[177,178,-152,-171]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05079","arcs":[[-158,179,180,181,-166]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05039","arcs":[[-165,182,183,184,-175,-161]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05041","arcs":[[185,186,187,-180,-157,-155]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05025","arcs":[[-182,188,189,190,-183,-164,-167]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05057","arcs":[[191,192,193,194,-169,-174]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05099","arcs":[[-177,195,196,197,-192,-173]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05081","arcs":[[-170,-195,198,199,-178]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05103","arcs":[[-185,200,201,202,-196,-176]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05013","arcs":[[203,204,-201,-184,-191]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05043","arcs":[[-188,205,206,207,-189,-181]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05011","arcs":[[-208,208,209,-204,-190]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05091","arcs":[[210,211,-199,-194]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05017","arcs":[[212,213,-206,-187]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05073","arcs":[[-198,214,215,-211,-193]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05027","arcs":[[-203,216,217,-215,-197]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05003","arcs":[[-214,218,219,-209,-207]]},{"type":"Polygon","properties":{"name":"AR"},"id":"05139","arcs":[[-205,-210,-220,220,-217,-202]]}]},"states":{"type":"GeometryCollection","bbox":[-94.61791188699993,33.004099985000096,-89.64483228799992,36.49960445000005],"geometries":[{"type":"Polygon","properties":{"name":"Arkansas"},"id":"05","arcs":[[11,24,27,31,7,12,19,33,39,64,61,107,139,153,185,212,218,220,217,215,211,199,178,152,126,100,83,48,3]]}]}},"arcs":[[[15104,99974],[0,-138],[0,-358],[0,-170],[0,-460],[0,-141],[1,-31],[1,-79],[0,-210],[0,-53],[0,-34],[0,-49],[0,-84],[0,-58],[0,-6],[-1,-115],[0,-112],[0,-142],[0,-318],[-1,-128],[53,-182],[-44,-5],[-9,-1],[-22,1],[-80,5],[-138,24],[-23,-10],[-125,-57],[-58,-72],[-44,-101],[-19,-70],[-17,-62],[-52,-231],[103,-228],[184,-137],[282,-142],[52,-27],[95,-513],[216,-268],[16,-20],[135,-159],[139,-38],[64,-53],[10,-168],[44,-123],[26,-15],[21,-3],[28,-30],[32,-31],[23,-10],[25,-10],[16,29],[28,60],[22,6],[21,2],[26,-2],[-1,-171]],[[16133,94476],[-85,3],[-31,1],[-221,9],[-143,3],[-39,0],[-123,2],[-167,4],[-47,1],[-129,1],[-87,-18],[-1,-77],[0,-87],[-2,-58],[-6,-162],[-1,-43],[1,-88],[1,-146],[-1,-38],[-1,-153],[0,-118],[0,-2],[-2,-58],[-1,-105],[-1,-118],[0,-31],[-1,-195],[-1,-107],[0,-36],[1,-333],[0,-4],[1,-99],[-112,5],[-83,2],[-170,-1]],[[14682,92430],[-33,6],[-301,7],[-211,6],[-20,0],[-86,2],[-72,2],[-167,4],[-106,2],[-67,2],[-25,1],[12,-28],[-4,-43],[-16,-10],[1,-3],[0,-13],[-4,-10],[-14,-12],[-16,-5],[-30,-2],[-75,7],[-26,4],[-22,8],[-20,14],[-5,2],[-34,14],[-6,-2],[-5,-6],[-15,-28],[-13,-31],[-7,-20],[-6,-43],[-1,-19],[2,-53],[-19,-70],[-18,-62],[-115,63],[-4,1],[-19,22],[-20,51],[-7,18],[-21,25],[-13,8],[-12,8],[-10,7],[-4,0],[-15,0],[-12,0],[-12,-7],[-4,-3],[-21,-28],[-5,-7],[-16,-35],[0,-1],[-23,-51],[-6,-41],[0,-3],[1,-43],[6,-136],[8,-58],[2,-15],[26,-102],[1,-5],[5,-44],[4,-32],[1,-18],[3,-46],[-7,-34],[-2,-7],[-7,-2],[-17,-5],[-3,-1],[-7,2],[-22,5],[-20,16],[-15,26],[-2,2],[-12,35],[-3,20],[-3,14],[-3,7],[-10,18],[-10,18],[-26,47],[-22,21],[-21,15],[-2,1],[-6,-2],[-15,-4],[-34,-17],[-37,-19],[-48,-16],[-38,-6],[-6,-1],[-45,-1],[-29,6],[-9,2],[-28,21],[-16,28],[-15,35],[-10,35],[-8,29],[-2,6],[-32,56],[-39,-10],[-27,-26],[-16,-12],[-14,-10],[-23,-4],[-15,19],[-12,16],[-5,34],[-1,23],[-1,22],[5,45],[12,38],[26,20],[5,2],[31,12],[34,9],[17,2],[15,1],[34,-7],[3,0],[13,-3],[14,-3],[13,3],[14,3],[21,26],[6,37],[-1,31],[-7,24],[-4,13],[-20,29],[-36,26],[-24,13],[-41,5],[-43,-3],[-48,-12],[-45,-19],[-38,-18],[-41,-20],[-37,-29],[-8,-6],[-49,-31],[-38,-20],[-3,-2],[-37,-16],[-32,-24],[-16,-36],[-10,-44],[-5,-61],[4,-54],[7,-34],[4,-18],[23,-26],[23,-2],[21,11],[35,33],[26,21],[10,7],[32,10],[14,-7],[8,-3],[9,-4],[18,-22],[4,-5],[2,-16],[3,-23],[0,-5],[0,-4],[-8,-35],[-13,-36],[-29,-48],[-27,-41],[-34,0],[-5,0],[-237,-4],[-42,2],[-80,5],[-85,6],[-43,2],[-99,2],[-177,7],[-179,7],[-29,0],[-151,4],[-182,4],[-54,0],[-35,2],[-92,5],[-182,1],[-91,5],[-54,2],[-26,0],[-49,1],[-4,0],[-32,1],[-96,2],[-39,0],[-3,0],[-46,3],[-28,-2],[-29,-1],[-35,0],[-29,0],[-27,1],[-49,-1],[-73,3],[-8,0],[-82,3],[-65,2],[-72,6],[-44,0],[-59,3],[-28,3],[-96,3],[-183,6],[-87,3],[-80,3],[-34,2],[-31,2],[-26,-1],[-23,0],[-126,1],[-45,5],[-80,2],[-115,3],[-68,2],[-21,0],[-168,9],[-87,2],[-125,4],[-78,2],[-37,1],[-30,0],[-2,0],[-36,1],[-22,0],[-58,1],[-34,0],[-89,3],[-27,1],[-43,1],[-26,0],[-47,2],[-29,1],[-69,2],[-431,13],[-35,2],[-42,2],[-114,1],[-72,2],[-53,4],[-63,2],[-40,1],[-68,2],[-8,0],[-89,3],[-86,3],[-22,0],[-49,2],[-25,0],[-178,5],[-150,6],[-33,-4],[-7,-216],[-7,-246],[0,-16],[-7,-244],[-1,-32],[-1,-30],[-5,-240],[-1,-57],[-3,-172],[-3,-141],[0,-32],[-2,-35],[-4,-156],[-4,-50],[-4,-123],[-1,-79],[-1,-59],[-7,-140],[-237,-5],[-45,1],[-83,2],[-57,1],[-105,2],[-253,5],[-88,2],[-208,1],[-1,-105],[-5,-303],[-1,-39],[-1,-54],[-3,-114],[-1,-47],[-10,-474],[-2,-99],[-85,2],[-45,1],[-28,1],[-60,2],[-54,2],[-328,9],[-15,0],[-25,1],[-260,2],[-93,2],[-89,2],[-114,3],[-69,1],[-36,1],[-52,1],[-55,2],[-76,5],[-89,3],[-49,1],[-64,0],[-21,1],[-60,3],[-35,2],[-330,5],[-72,3],[-108,4],[-253,5],[-34,1],[-141,3],[-117,4],[-32,0],[-30,1],[-39,0],[-52,1],[-71,-1],[-24,1],[-30,3],[-22,1],[-36,1],[-7,0],[-28,1],[-10,1]],[[1322,88631],[-1,9],[-4,27],[-4,34],[-21,168],[-12,96],[-9,74],[-7,55],[-20,166],[-3,37],[-9,85],[-1,14],[-5,36],[-32,244],[-15,119],[-4,32],[-1,6],[-10,80],[-19,169],[-5,34],[-4,31],[-7,45],[-6,47],[-5,44],[-7,55],[-6,35],[-10,68],[-6,50],[-5,42],[-19,168],[-7,50],[0,4],[-9,57],[-4,46],[-4,34],[-8,53],[-2,30],[-11,87],[-7,58],[-5,43],[-5,46],[-15,119],[-10,83],[-40,329],[-11,81],[-24,220],[-14,125],[-1,5],[-4,33],[-9,84],[-10,76],[-4,45],[-16,123],[-2,42],[-20,149],[-18,137],[-10,97],[-5,30],[-12,112],[-14,106],[-6,49],[-13,117],[-5,43],[-4,41],[-19,170],[-7,41],[-11,107],[-5,55],[-19,140],[-5,36],[-1,30],[-16,121],[-8,86],[-7,47],[-13,125],[-24,226],[-65,580],[-8,67],[-5,47],[-23,206],[-7,58],[-2,15],[-10,86],[-6,48],[-5,51],[-4,45],[-6,65],[-3,31],[-4,35],[-10,112],[-10,78],[-5,44],[-24,229],[-4,35],[-5,54],[-22,203],[-3,29],[-1,6],[-3,31],[-16,144],[-8,57],[-6,72],[-8,71],[-7,57],[-2,22],[-1,9],[-6,33],[-4,41],[-5,41],[-9,80],[-6,52],[-6,55],[-1,9],[-29,240],[-1,9],[-18,141],[-5,49],[-3,40],[-5,44],[-29,265],[-18,164],[-8,74],[-5,48],[-6,43],[-4,37],[-20,186],[-3,33],[-10,105],[-4,27],[-9,72],[-22,217],[-20,157],[-10,93],[-10,78],[-38,300],[-1,6],[-3,28],[6,0],[232,2],[43,0],[76,0],[84,0],[5,0],[30,0],[703,1],[24,-3],[71,1],[54,-1],[45,-1],[148,-1],[100,-1],[65,-1],[117,-1],[89,-2],[86,2],[271,-3],[118,-3],[53,-1],[334,2],[20,0],[44,1],[19,0],[20,0],[19,0],[359,3],[90,1],[104,1],[65,0],[70,1],[85,1],[419,4],[138,-2],[60,0],[322,-1],[61,0],[23,-2],[39,5],[77,2],[55,1],[37,1],[217,0],[65,0],[149,-1],[131,-2],[36,0],[33,0],[91,-1],[113,0],[90,-1],[244,-1],[78,-1],[435,-2],[40,0],[60,0],[45,0],[86,-1],[49,0],[29,0],[2,0],[59,-2],[8,0],[32,0],[42,0],[5,0],[45,-1],[38,0],[79,0],[113,0],[100,0],[32,1],[38,0],[297,-2],[38,-1],[116,0],[79,-1],[143,-1],[41,0],[91,-1],[30,0],[176,-1],[192,-1],[56,-1],[54,-2],[132,-1],[33,0],[339,-2],[225,-1],[24,0],[29,-1],[349,2],[184,-2],[39,0],[53,-1],[30,0],[159,3],[35,-1],[35,0],[69,0],[27,0],[167,1],[41,0],[110,1],[18,0],[63,1],[126,0],[146,0],[336,1],[102,0],[41,0],[93,0],[134,1],[21,0],[25,0],[370,0],[89,-2],[22,-1],[21,0],[40,-1],[133,0],[205,0],[26,0],[25,0],[109,0],[108,0],[41,0],[26,0],[41,0],[28,0],[121,0],[51,0],[83,0],[237,0],[46,0],[9,0],[15,0],[66,0],[26,0],[42,0],[39,0],[25,0],[76,0],[142,0],[45,0],[44,0],[123,0],[173,0],[69,0],[118,1],[58,0],[73,0],[177,0]],[[63701,99943],[-1,-49],[-8,-393],[-1,-59],[0,-34],[-6,-39],[0,-42],[-8,-147],[-3,-61],[-3,-72],[-14,-295],[-5,-116],[-5,-220],[-1,-81],[-2,-114],[0,-68],[2,-362],[-3,-111],[-12,-543],[-1,-78],[-2,-102],[-1,-35],[-3,-302],[-1,-69],[-3,-115],[-1,-320],[-1,-55],[0,-43],[-3,-306],[-1,-172],[-3,-237],[-102,3],[-86,2],[-23,1],[-44,1],[-150,5],[-57,1],[-144,4],[-29,1],[-107,3],[-93,5],[-83,6],[-33,1],[-119,3],[-35,1],[-29,1],[-34,1],[-12,1],[-94,3],[-170,5],[-32,1],[-89,1],[-63,2],[-124,0],[-67,0],[-107,0],[-155,2],[-34,0],[-84,3],[-41,-2],[1,-38],[1,-87],[-3,-161],[-1,-39],[4,-271],[0,-24],[0,-20],[0,-76],[-1,-135],[0,-29],[0,-3],[-1,-51],[0,-41],[-1,-55],[0,-65],[0,-56],[3,-128],[2,-249],[0,-34],[0,-96],[-1,-71],[0,-63],[-1,-43],[0,-44],[-1,-29],[0,-35],[-1,-41],[0,-39],[-2,-97],[0,-53],[2,-85],[0,-25],[-1,-22],[-1,-78],[-6,-118],[-56,3],[-55,2],[-54,2],[-75,5],[-166,10],[-5,0],[-33,3],[-49,3],[-44,2],[-104,7],[-83,5],[-369,23],[-29,1],[-62,1],[-78,3],[-48,2],[-33,2],[-70,6],[-119,3],[-55,2],[-68,0],[-285,8],[-1,0],[-167,3],[-95,2],[-101,-5],[-56,0],[-157,3]],[[58846,92953],[-215,3],[-206,5],[-43,1],[-85,0],[-21,-1],[-54,-4],[-107,7],[-100,6],[-84,0],[-80,2],[-62,0],[-44,0],[-33,4],[-24,1],[-29,-3],[-89,1],[-80,2],[-17,0],[-52,1],[-251,7],[-38,1],[-46,0],[-47,1],[-46,1],[-81,2],[-16,1],[-19,0],[-29,1],[-305,7],[-105,3],[-509,11],[-48,1],[-69,1],[-39,1],[-316,8],[-60,1],[-186,4],[-59,1],[-102,2],[-49,0],[-59,0],[-76,0],[-66,1],[-48,0],[-42,-1],[-50,2],[-65,0],[-44,0],[-38,1],[-26,1],[-6,0],[-60,0],[-78,1],[-72,0],[-78,1],[-48,6],[-43,1],[-21,0],[-93,1],[-45,0],[-26,-1],[-78,0],[-78,0],[-43,1],[-21,0],[-71,1],[-22,-1],[-47,3],[-27,4],[-110,2],[-151,3],[-26,1],[-77,1],[-133,3],[-94,0],[-45,1],[-30,1],[-69,0],[-41,0],[-44,0],[-72,1],[-77,11],[-62,2],[-222,8],[-290,10],[-360,12],[-85,3],[-90,3],[-763,23],[-233,8],[-121,4],[-182,5],[-28,-1],[-100,4],[-119,5],[-108,4],[-70,3],[-243,10]],[[49485,93180],[-45,2],[1,306],[1,105],[8,209],[1,25],[1,9],[1,33],[1,13],[2,49],[1,30],[0,44],[2,29],[20,340],[1,39],[0,24],[1,24],[1,62],[1,43],[2,65],[2,89],[0,40],[3,120],[2,81],[1,51],[2,89],[4,165],[16,316],[5,38],[1,30],[0,39],[14,25],[4,128],[4,134],[3,120],[-1,29],[4,78],[13,233],[-1,37],[0,37],[-1,51],[0,50],[1,73],[1,46],[2,64],[1,33],[3,31],[1,42],[6,182],[9,237],[9,212],[5,327],[4,101],[0,16],[2,50],[7,147],[-9,112],[-2,48],[-4,199],[-2,81],[6,213],[1,41],[4,74],[4,112],[-3,135],[-3,202],[-1,45],[6,84],[3,109],[7,272],[0,4],[1,67]],[[49619,99970],[195,2],[6,1],[29,0],[1,0],[22,0],[34,3],[105,2],[69,0],[44,0],[97,0],[153,-1],[21,0],[133,0],[33,0],[103,-1],[32,1],[59,2],[40,-2],[79,-1],[131,0],[43,-1],[86,0],[61,-2],[297,-1],[22,0],[199,-1],[67,0],[162,-1],[109,1],[32,-6],[36,0],[30,-1],[25,0],[27,0],[35,-1],[162,5],[5,0],[103,-1],[55,0],[24,0],[47,2],[49,-5],[176,2],[64,-1],[8,0],[263,1],[328,1],[34,0],[366,2],[78,0],[22,1],[114,0],[201,1],[93,0],[45,1],[602,2],[73,1],[147,0],[30,0],[43,0],[30,1],[109,0],[54,0],[184,1],[95,0],[80,1],[552,3],[72,3],[22,-2],[38,-1],[25,2],[45,0],[70,-1],[104,2],[122,0],[62,-1],[71,0],[220,2],[27,2],[44,1],[80,0],[39,1],[89,1],[54,0],[23,-1],[36,0],[35,0],[36,0],[33,0],[33,1],[55,0],[89,0],[142,-3],[172,6],[141,0],[36,0],[99,0],[1,0],[291,1],[24,-2],[25,-1],[28,1],[25,2],[250,1],[161,-1],[24,0],[413,-3],[223,-4],[43,4],[151,0],[84,1],[28,-1],[35,0],[36,0],[49,0],[20,2],[32,5],[29,-1],[23,-1],[22,0],[21,1],[17,-1],[6,0],[104,-9],[56,3],[34,0],[27,0],[33,0],[28,0],[79,0],[29,0],[42,0],[35,0],[36,0],[54,0],[61,-1],[46,1],[36,-1],[39,0],[28,0],[44,-1],[35,0],[37,0],[45,0],[43,0],[36,-1],[33,0],[40,-1],[22,0],[21,1],[23,-1],[40,2],[22,0],[26,0],[22,0],[49,-2],[3,0],[22,-2],[25,-2],[22,0],[33,1],[33,-1],[31,1],[6,1],[45,-1],[16,0],[124,-2],[188,-2],[86,-1],[106,-2],[119,-4],[73,-2],[480,-16],[337,-11]],[[26573,99960],[6,-28],[0,-30],[0,-2],[1,-37],[0,-7],[0,-36],[0,-11],[0,-43],[0,-5],[1,-50],[0,-36],[0,-25],[0,-24],[0,-41],[0,-40],[0,-39],[0,-22],[0,-20],[1,-33],[0,-34],[0,-3],[-1,-77],[1,-30],[0,-10],[0,-21],[0,-31],[0,-32],[2,-221],[1,-118],[0,-40],[1,-23],[0,-7],[0,-236],[1,-211],[0,-10],[-1,-23],[0,-12],[1,-239],[0,-103],[0,-4],[-8,-94],[-1,-9],[-1,-81],[0,-8],[-1,-53],[-2,-57],[-1,-54],[1,-33],[1,-36],[0,-43],[1,-36],[2,-81],[0,-51],[0,-51],[2,-49],[4,-206],[0,-32],[-1,-57],[-1,-43],[0,-51],[-1,-52],[-1,-37],[-1,-37],[-1,-37],[-1,-36],[-1,-53],[0,-28],[-1,-34],[-2,-72],[2,-66],[2,-243],[-1,-37],[0,-33],[0,-29],[-1,-48],[-4,-100],[4,-76],[0,-34],[1,-33],[-1,-35],[-1,-33],[0,-39],[-1,-30],[-4,-138],[-1,-46],[0,-20],[-1,-55],[0,-69],[-1,-4],[-2,-129],[-1,-116],[-3,-153],[-1,-92],[-2,-168],[-3,-145],[0,-3],[-1,-67],[-1,-65],[-1,-81],[-1,-55],[0,-30],[-1,-33],[-1,-19],[0,-11],[-1,-75],[0,-30],[-3,-184],[-1,-56],[-2,-165],[-5,-297],[0,-10],[-5,-348],[-1,-44],[-1,-31],[-3,-236],[-1,-99],[-1,-58],[-1,-112],[-1,-44],[-3,-244],[-3,-230],[-1,-120],[-2,-121],[-1,-136],[-2,-137],[-1,-57],[-4,-314],[-1,-70],[-1,-70],[-1,-94],[-1,-94],[-1,-105],[-2,-104],[0,-29],[-4,-326],[-1,-91],[-1,-91],[0,-8],[-7,-530],[-1,-57],[15,-108]],[[26499,89175],[-178,9],[-26,2],[-52,3],[-259,7],[-63,1],[-249,5],[-253,5],[-88,2],[-87,2],[-166,3],[-21,0],[-68,4],[-209,7],[-145,4],[-275,9],[-90,3],[-2,0],[-462,14],[-25,1],[-107,3],[-27,1],[-52,2],[-67,2],[-510,16],[-78,3],[-50,1]],[[22890,89284],[-31,3],[-86,-1],[-231,6],[-67,-2],[-280,7],[-177,5],[-243,6],[-89,2],[-64,1],[-78,2],[-89,8],[0,58],[1,59],[0,73],[1,53],[0,23],[0,9],[1,147],[1,248],[0,48],[0,102],[-126,4],[-407,11],[-115,3],[-51,1],[3,169],[0,42],[2,94],[2,151],[3,185],[1,77],[2,142],[-193,8],[-157,7],[-79,4],[-111,5],[8,281],[1,32],[0,20],[3,83],[-86,2],[-66,1],[-28,0],[5,199],[1,70],[0,2],[3,156],[7,293],[6,280],[1,68],[8,329],[7,252],[-150,7],[-56,29],[-3,2],[-30,23],[-2,2],[-5,6],[-7,14],[-1,3],[-1,2],[-50,83],[-18,26],[-28,43],[-21,10],[-15,-2],[-18,-5],[-35,-17],[-10,0],[-7,2],[-2,1],[-7,5],[-8,11],[-2,8],[1,9],[6,19],[15,28],[12,17],[99,105],[8,9],[20,25],[41,50],[11,28],[0,9],[-5,10],[-12,12],[-21,8],[-50,4],[-12,10],[-16,13],[-53,81],[-3,3],[-10,1],[-12,-6],[-12,-16],[-10,-18],[-5,-15],[-2,-16],[0,-3],[-1,-24],[-1,-17],[-1,-2],[-6,-18],[-7,-12],[-1,-1],[-2,0],[-13,0],[-8,5],[-1,1],[-4,4],[-10,12],[-6,10],[-3,4],[-4,7],[-5,14],[-1,4],[-6,18],[0,11],[-4,25],[-4,8],[-10,9],[-10,5],[-20,1],[-22,-13],[-11,-11],[-12,-17],[-5,-15],[-7,-23],[-1,-25],[1,-9],[2,-34],[-3,-5],[-6,-10],[-21,-15],[-34,-10],[-38,-11],[-2,-1],[-103,-28],[-13,-2],[-3,2],[-2,2],[-7,9],[-6,7],[0,2],[-5,12],[-4,16],[-1,3],[0,11],[11,60],[2,14],[-15,60],[-6,41],[0,33],[6,7],[7,7],[18,9],[20,5],[13,2],[48,0],[2,1],[11,5],[5,6],[1,1],[1,2],[11,16],[4,8],[2,8],[0,3],[2,7],[0,21],[0,2],[-3,15],[-10,48],[-1,1],[-51,79],[-3,6],[-2,29],[3,26],[7,15],[11,14],[27,19],[14,8],[42,18],[-1,30],[-6,38],[-22,47],[-25,35],[-177,2],[-289,4],[-217,25],[-191,1],[-196,1],[-314,1],[-20,0],[-237,1],[-137,0],[-83,-3],[-200,11],[-27,2],[-11,0],[-49,3],[-93,5],[-32,1],[-93,6],[-171,11],[-151,7],[-25,1],[-90,10],[-146,5],[-27,-5],[-25,2],[-57,5],[-118,3]],[[15104,99974],[46,0],[98,1],[245,1],[109,0],[120,1],[22,0],[67,1],[282,1],[406,2],[152,2],[227,1],[163,1],[88,0],[235,1],[15,0],[29,0],[40,0],[37,-6],[20,0],[26,0],[184,1],[53,1],[127,4],[33,1],[30,0],[27,0],[27,1],[23,1],[22,0],[45,-1],[55,0],[27,0],[28,3],[25,-1],[20,-1],[4,-1],[30,-2],[28,2],[21,-14],[31,0],[25,0],[78,11],[156,-1],[41,1],[191,-2],[68,-1],[114,-1],[236,0],[82,0],[136,-1],[35,0],[53,2],[198,-1],[136,-1],[42,0],[183,0],[127,0],[219,-1],[262,0],[31,0],[11,0],[12,0],[57,-1],[133,0],[203,0],[71,0],[1,0],[50,0],[146,0],[55,0],[24,0],[110,0],[26,0],[105,0],[144,0],[127,0],[131,0],[40,0],[60,1],[39,0],[78,0],[47,-1],[21,0],[159,2],[62,-1],[120,-1],[94,-1],[68,-1],[220,-2],[115,0],[124,-1],[33,0],[33,-1],[36,-1],[150,-2],[86,0],[84,-1],[21,1],[23,3],[48,7],[28,1],[42,-1],[27,0],[69,-1],[25,0],[25,0],[23,-1],[24,0],[30,0],[54,-1],[45,0],[30,0],[90,-1],[25,0],[30,0],[23,-1],[22,0],[20,1],[46,-7],[22,5],[112,-3],[226,3],[140,-5],[118,-5],[143,0],[232,1],[58,1],[222,3],[24,-2],[26,0],[144,-6],[96,-3],[76,2],[21,0],[28,0],[163,1],[4,0],[13,0],[3,0],[16,0],[57,0]],[[63701,99943],[63,-4],[26,3],[37,-1],[30,-1],[22,-1],[62,-3],[27,-1],[72,3],[27,-3],[35,-2],[36,0],[36,0],[26,-1],[23,-2],[30,-1],[27,-1],[22,1],[21,0],[27,0],[21,-1],[23,0],[45,0],[36,0],[26,0],[21,-1],[41,0]],[[64563,99927],[-5,-220],[-1,-64],[185,0],[-7,-182],[-1,-30],[28,0],[108,-2],[223,-4],[-4,-203],[117,-4],[155,-1],[109,0],[-2,-160],[-1,-49],[54,0],[37,0],[1,-30],[-2,-88],[1,-90],[-1,-36],[-3,-162],[46,-12],[42,0],[0,-32],[-1,-295],[-1,-96],[93,3],[-3,-292],[0,-22],[0,-10],[-1,-59],[0,-41],[100,-2],[18,0],[135,-2],[335,-6],[70,-1],[58,-1],[46,-1],[50,-1],[-2,-85],[-3,-82],[-9,-270],[-13,-405],[-1,-33],[163,-8],[209,-10],[-4,-70],[-10,-181],[-9,-152],[232,-11],[101,-3],[11,-30],[-3,-32],[3,-50],[-1,-43],[2,-32],[-2,-101],[-9,-432],[-1,-38],[2,-290],[1,-202],[352,0],[-1,-63],[-1,-185],[-3,-631],[-1,-289],[0,-67],[0,-45],[-1,-111],[0,-86],[1,-294],[-2,-134],[0,-72],[1,-111]],[[67543,93084],[0,-33],[-1,-52],[-1,-73],[-1,-66],[-3,-60],[-4,-103],[-20,-25],[-152,4],[-1,0],[-4,0],[-111,1],[-129,3],[-101,3],[-11,1],[-41,1],[-57,1],[-157,5],[-5,0],[-108,3],[-15,1],[-5,0],[-39,2],[-93,2],[-9,0],[-45,2],[-60,1],[-13,1],[-59,2],[-29,1],[-182,5],[-6,-39],[-3,-92],[-2,-79],[-7,-193],[-249,4],[-105,2],[-2,-81],[-4,-147],[-1,-40],[-4,-184],[-3,-109],[-7,-292],[-4,-201],[-1,-56],[-5,-120],[2,-34],[-11,-338],[-1,-233],[-1,-98],[0,-156],[64,-5],[-4,-279],[-1,-100],[-1,-79],[-1,-174],[-2,-169],[0,-40],[-1,-88],[1,-335],[-3,-181],[-7,-353],[-6,-310],[-3,-186],[-3,-146],[-2,-101],[-10,-191],[-10,-160],[-5,-88],[-2,-66],[-9,-330],[-6,-213],[-7,-238],[-4,-153],[-5,-262],[-3,-117],[-4,-88],[-2,-65],[0,-2],[-4,-171],[-5,-251],[-4,-161],[-1,-59],[-4,-155],[-7,-317],[0,-2],[-1,-69],[-1,-33],[-1,-51],[-4,-167],[-1,-177],[-14,-387],[-6,-165],[-4,-134],[-1,-37],[0,-32],[-2,-68],[-1,-49],[-3,-173],[-1,-59],[-4,-253],[1,-37],[-2,-64],[-1,-58]],[[65566,82577],[-360,3],[-287,8],[-320,9],[-153,4],[-29,0],[-40,1],[-74,2],[-33,1],[-105,3],[-31,1],[-29,1],[-20,1],[-34,1],[-288,8],[-44,2],[-49,1],[-213,6],[-29,1],[-22,1],[-1,28],[0,5],[0,46],[3,64],[3,69],[4,49],[7,255],[2,77],[4,244],[3,142],[4,290],[-14,1],[-8,1],[-9,-1],[-84,-1],[-60,-2],[-30,-2],[-246,-7],[-17,1],[-102,5],[-19,-1],[-101,0],[-52,1],[-139,6],[-58,3],[-495,21],[-30,2],[-113,5],[-26,-2],[-48,3],[-47,0],[-35,3],[-20,4],[-31,1],[-33,-3],[-29,-1],[-85,2],[-21,1],[-54,0],[-107,3],[-355,6],[-60,1],[-48,1],[-182,5],[-49,1],[-84,3],[-54,1],[-96,3],[-215,4],[-45,1],[-111,2],[-3,0],[-76,2],[-76,0],[-97,1],[-23,1],[-372,11],[-34,1],[-79,2],[-23,0],[-50,-1],[-29,0],[-47,1],[-51,0],[-1,0],[-52,2],[-96,33],[-154,8],[-118,5],[-180,3]],[[58462,84040],[-2,64],[-1,31],[-2,115],[1,53],[7,174],[2,90],[12,323],[1,77],[1,39],[0,23],[0,8],[1,46],[1,84],[0,51],[1,95],[0,213],[-3,54],[1,37],[2,89],[0,2],[88,23],[20,-1],[39,-1],[33,0],[91,-2],[275,-6],[2,106],[1,92],[0,3],[1,39],[1,51],[-24,28],[-159,3],[0,209],[51,1],[42,0],[-1,107],[101,0],[1,182],[0,41],[-3,149],[4,105],[1,40],[1,514],[1,223],[1,196],[0,30],[1,135],[1,254],[0,33],[2,250],[2,268],[1,156],[0,50],[0,33],[1,50],[0,35],[1,140],[0,40],[0,47],[2,134],[1,62],[4,239],[0,27],[1,69],[3,183],[6,372],[94,3],[9,120],[2,58],[3,299],[0,30],[1,76],[2,163],[1,124],[3,216],[2,167],[-90,4],[-83,3],[-31,2],[-84,4],[-36,2],[-34,2],[-6,46],[1,30],[1,51],[4,285],[0,38],[1,78],[0,52],[1,53],[1,56],[0,43],[1,47],[2,263],[2,128],[1,48],[1,45]],[[76638,93341],[-10,-481],[-4,-218],[-2,-59],[-1,-88],[-2,-65],[-4,-143],[-5,-191],[-12,-557],[-4,-52],[0,-200],[-1,-45],[-2,-141],[1,-65],[1,-49],[-4,-81],[-1,-81],[0,-65],[-1,-57],[0,-29],[0,-11],[0,-70],[0,-14],[-1,-41],[-2,-126],[-10,-427]],[[76574,89985],[-86,1],[-98,1],[-263,4],[-29,-1],[-85,3],[-36,1],[-2,0],[-49,1],[-4,1],[-70,2],[-91,4],[-34,1],[-108,5],[-151,1],[-118,1],[-55,1],[-35,0],[-142,2],[-69,0],[-9,0],[-235,3],[-58,1],[-90,-1],[-164,1],[-114,1],[-37,0],[-83,-1],[-119,1],[-111,0],[-42,0],[-248,-4],[-62,-1],[-56,-1],[-66,2],[-23,1],[-36,1],[-50,-2],[-181,3],[-68,2],[-116,2],[-30,1],[-111,2],[-32,-2],[-67,0],[-94,-1],[-23,-1],[-45,-1],[-287,6],[-172,3],[-28,1],[-336,7],[-16,-22],[2,-35],[-16,-25],[-12,-18],[-8,-2],[-38,-1],[-17,19],[-10,11],[-2,74],[-1,12],[-2,5],[-9,14],[-6,11],[-14,-1],[-7,-1],[-5,0],[-18,-15],[-35,-28],[-38,-31],[-4,-3],[-19,-20],[-27,-27],[-108,-144],[-11,-21],[-6,-75],[12,-61],[2,-11],[38,-134],[-1,-6],[-12,-48],[3,-30],[2,-17],[1,-15],[-1,-135],[-1,-119],[-2,-15],[-2,-16],[-1,-8],[-6,-6],[-17,-17],[-3,-4],[-3,0],[-42,3],[-22,-10],[-7,-6],[-43,-37],[-6,-5],[-31,-22],[-18,-13],[-5,22],[-8,7],[-61,40],[-30,37],[-44,78],[-2,25],[6,7],[3,3],[7,7],[57,14],[14,3],[32,20],[59,51],[4,3],[1,22],[0,3],[-3,3],[-3,4],[-8,1],[-47,-30],[-10,-5],[-16,-8],[-41,3],[-3,2],[-4,2],[-5,4],[-1,1],[-23,32],[-8,40],[-10,25],[-7,15],[-15,19],[-11,4],[-4,1],[-34,21],[-3,2],[-21,26],[-3,4],[-1,3],[-5,16],[1,7],[5,46],[2,4],[23,52],[15,56],[1,21],[0,11],[-6,32],[-1,2],[-6,28],[1,12],[1,32],[1,20],[2,5],[41,93],[0,4],[-1,43],[-11,43],[-6,8],[-80,-12],[-42,-24],[-45,-15],[-47,10],[-12,7],[-21,13],[-16,1],[-9,-5],[-4,-2],[-4,2],[-61,38],[-50,6],[-7,0],[-46,29],[-164,84],[-21,4],[-66,-4],[-25,-5],[-14,3],[-14,8],[-16,13],[-23,24],[-18,15],[-5,10],[-11,24],[-6,11],[-21,29],[-7,6],[-16,9],[-17,0],[-21,1],[-14,-8],[-14,-2],[-16,-5],[-50,37],[-2,17],[-9,87],[-3,3],[-18,17],[-6,6],[-1,12],[-3,6],[-3,8],[-21,26],[-10,8],[-14,-2],[-5,-6],[-7,-20],[-1,-2],[-27,-25],[-2,-1],[-27,25],[-66,155],[-48,102],[-21,44],[1,31],[41,3],[7,4],[1,1],[2,1],[9,6],[5,5],[4,10],[0,5],[0,8],[-3,7],[-9,25],[-14,16],[-29,17],[-47,28],[-3,7],[-29,88],[-2,4],[-2,5],[-2,4],[-2,3],[-7,11],[-77,103],[-20,31],[22,85],[6,24],[-10,22],[-23,40],[-26,46],[-6,11],[-42,83],[-96,28],[-3,3],[-3,3],[-3,3],[-3,2],[-3,2],[-3,2],[-2,1],[-114,48],[-33,13],[-53,23],[-30,12],[-1,1],[-4,1],[-3,1],[-4,0],[-3,0],[-4,0],[-140,-13],[-61,26],[-15,20],[-8,12],[-4,5],[-5,7],[-3,3],[-90,110],[-17,22],[-2,2],[2,24],[2,22],[4,38],[0,4],[-6,19],[-13,22],[-12,15],[-21,23],[-20,11],[-12,-1],[-14,-9],[-1,-2],[-27,-40],[-93,59],[-182,51],[-170,55],[-34,24],[-10,34],[-14,81],[-11,110],[-10,23],[-9,21],[-13,32],[-12,27],[-34,46],[-43,58],[-24,20],[-4,3],[-3,0],[-10,1],[-3,0],[-12,-12],[-2,-3],[-2,-2],[-3,-5],[-42,-78],[-5,-10],[0,-11],[3,-53],[1,-16],[-9,-46],[-3,-14],[-5,-114],[-7,-17],[-21,-48],[-7,-11],[-20,-29],[0,104],[1,39],[2,95],[1,6],[0,31],[0,4],[3,100],[3,123],[5,196],[5,118],[4,99],[-25,1],[-106,2],[-11,0],[-47,1],[-177,3]],[[64563,99927],[40,2],[235,0],[269,2],[99,1],[39,0],[91,0],[4,0],[137,1],[65,0],[244,1],[148,1],[91,0],[140,1],[58,0],[419,2],[25,0],[130,0],[157,1],[209,1],[30,0],[136,0],[30,0],[143,1],[40,0],[178,1],[42,0],[249,1],[168,-1],[36,-2],[36,0],[35,0],[36,-1],[22,-1],[12,0],[8,0],[188,1],[106,-1],[64,0],[92,0],[41,0],[102,1],[144,1],[177,-1],[8,0],[155,-1],[38,0],[315,4],[52,1],[70,0],[108,1],[33,0],[148,1],[28,0],[320,4],[37,0],[113,0],[110,1],[77,-1],[25,0],[87,0],[248,0],[29,0],[96,1],[231,1],[43,1],[36,0],[59,0],[66,0],[189,1],[277,1],[112,1],[25,3],[56,1],[108,2],[65,-1],[76,1],[29,1],[56,0],[40,0],[84,0],[74,1],[125,0],[109,1],[74,0],[183,1],[49,0],[27,0],[77,1],[139,0],[89,0],[75,0],[170,-1],[72,0],[59,0],[7,0],[179,-1],[68,0],[104,-1],[53,0],[275,0],[50,-1],[193,2],[47,1],[35,-3],[27,-7],[21,2],[36,1],[21,0],[67,2],[57,1],[128,3],[56,1],[84,4],[186,1],[38,0],[2,0],[28,0],[61,1],[331,2],[238,-1],[69,0],[20,0],[6,0],[230,-3],[26,0],[8,0],[21,0],[22,0],[19,-1],[22,0]],[[77084,99968],[21,-12],[10,-9],[16,-18],[2,-2],[18,-33],[11,-55],[9,-40],[18,-39],[16,-37],[1,-1],[29,-31],[10,-11],[21,-18],[21,-17],[30,-25],[16,-23],[19,-32],[5,-27],[1,-3],[-8,-13],[-2,-2],[0,-5],[-5,-39],[0,-6],[1,-2],[10,-23],[2,-4],[43,-61],[8,-22],[-1,-32],[-13,-14],[-1,-1],[-7,-9],[-35,-8],[-36,-7],[-6,-1],[-2,-19],[-2,-12],[-1,-8],[13,-62],[6,-18],[8,-27],[11,-32],[-2,-37],[0,-6],[-33,-212],[-12,-64],[-8,-28],[-22,-58],[-7,-19],[1,-9],[6,-49],[9,-72],[3,-5],[3,-3],[2,-18],[-2,-35],[-16,-60],[-9,-26],[-1,-3],[-26,-69],[-24,-33],[-24,-32],[1,-35],[1,-5],[7,-19],[1,-3],[4,-5],[23,-29],[42,-37],[7,-5],[11,-5],[7,-3],[18,-2],[35,-2],[7,0],[46,9],[9,2],[15,-20],[-2,-35],[0,-3],[-98,-115],[-5,-6],[-1,-2],[-13,1],[-2,1],[-16,10],[-7,5],[-20,18],[-31,28],[-16,1],[-10,-10],[-1,-18],[21,-91],[15,-19],[91,-27],[120,3],[24,31],[65,25],[7,-6],[84,-68],[4,-3],[18,-18],[3,-2],[-1,-7],[0,-11],[-1,-7],[-8,-8],[-5,-5],[-16,-3],[-7,9],[-2,2],[-28,2],[-148,-34],[-19,-6],[-17,-16],[-4,-11],[-35,-141],[0,-19],[1,-17],[7,-8],[5,-7],[9,0],[29,1],[42,19],[19,7],[21,3],[22,-3],[20,-15],[22,-24],[15,0],[9,0],[201,-2],[22,9],[10,-93],[-1,-43],[-3,-110],[-1,-48],[0,-62],[0,-97],[-1,-106],[-3,-186],[-1,-121],[0,-109],[-4,-74],[-5,-34],[-3,-204],[0,-49],[1,-30],[-1,-99],[-1,-21],[-2,-70],[-3,-46],[-4,-95],[-4,-81],[-5,-126],[-4,-310],[1,-104],[-7,-537],[-5,-248],[-1,-58],[-1,-59],[-2,-145],[0,-26],[-1,-71],[-1,-120],[-4,-109],[-2,-36],[24,-23],[20,-13],[6,-29],[-35,-12],[-33,31],[-12,28],[-11,29],[-24,20],[-50,-18],[-20,-23],[-13,25],[1,40],[-20,25],[-18,8],[-84,39],[-11,3],[-15,-4],[-33,-45],[-19,-16],[-19,-3],[-51,5],[-75,-53],[-13,-7],[-14,1],[-82,34],[-5,12],[-4,31],[4,47],[-28,68],[-22,51],[-21,48],[-1,2],[-2,4],[-10,15],[-9,5],[-2,1],[-53,7],[-26,-10],[-14,-12],[-8,-15],[-5,-27],[2,-32],[10,-42],[1,-8],[7,-30],[-44,-31],[-25,-15],[-21,-9],[-57,-4],[-20,13],[-2,34],[6,38],[-12,25],[-19,-19],[-4,-38],[-2,-34],[-17,-15],[-22,11],[1,65],[-2,37],[-65,-55],[-8,-611]],[[35468,99948],[-3,-49],[-2,-42],[0,-6],[0,-33],[0,-40],[-1,-83],[0,-19],[-1,-65],[0,-41],[0,-32],[-1,-33],[0,-55],[-1,-69],[0,-61],[-1,-61],[0,-37],[0,-32],[0,-17],[0,-41],[0,-4],[-2,-63],[-1,-67],[-16,32],[-17,33],[-22,54],[-16,54],[-29,36],[-30,28],[-32,17],[-47,15],[-48,9],[-48,8],[-21,4],[-23,8],[-32,18],[-31,47],[-24,51],[-32,65],[-12,30],[-4,16],[-3,13],[-15,66],[-15,38],[-33,47],[-17,31],[-19,17],[-22,15],[-1,-59],[-1,-77],[-1,-85],[-2,-126],[0,-35],[0,-36],[0,-110],[-2,-33],[-3,-53],[0,-42],[0,-120],[-1,-126],[-4,-227],[0,-34],[-2,-236],[0,-2],[-1,-104],[-1,-16],[-1,-48],[-2,-73],[-2,-77],[-1,-16],[-1,-23],[-1,-31],[-1,-31],[-13,-217],[0,-49],[-1,-29],[0,-30],[-1,-57],[4,-126],[0,-2],[1,-54],[-1,-38],[-1,-81],[-1,-100],[-1,-108],[-2,-105],[0,-45],[0,-39],[-1,-123],[-1,-213],[-2,-97],[-4,-254],[-1,-85],[-2,-134],[-3,-191],[-1,-77],[-2,-97],[-3,-219],[-1,-57],[-1,-65],[-3,-48],[-16,-237],[-3,-42],[-6,-94],[0,-43],[0,-59],[1,-32],[0,-37],[0,-36],[0,-65],[0,-55],[0,-36],[1,-274],[0,-95],[0,-34],[0,-40],[1,-248],[0,-48],[0,-29],[1,-107],[0,-66],[1,-86],[1,-198],[0,-5],[1,-40],[5,-179],[1,-49],[1,-53],[-1,-42],[1,-106],[-1,-133],[-1,-125],[-1,-36],[0,-65],[0,-43],[0,-72],[-1,-74],[0,-47],[-1,-246],[-1,-119],[0,-106],[-2,-205],[0,-120],[0,-2],[-2,-258],[0,-52],[0,-14],[0,-66],[-1,-163],[0,-57],[0,-2],[-1,-44],[0,-84],[0,-29],[-4,-159],[-1,-41],[-2,-106],[-8,-51],[1,-116],[0,-116],[0,-151],[0,-45],[0,-54],[-3,-154],[-1,-67],[0,-33],[-1,-112],[-1,-102],[-1,-117],[-2,-101],[-1,-97]],[[34731,88971],[-228,8],[-1,0],[-134,5],[-67,2],[-170,6],[-116,4],[-71,1],[-87,0],[-107,1],[-27,1],[-49,0],[-28,1]],[[33646,89000],[-84,11],[-100,4],[-21,0],[-63,-3],[-119,2],[-27,1],[-2,0],[-166,10],[-20,0],[-48,1],[-62,0],[-361,5],[-20,4],[-23,-1],[-31,-1],[-202,0],[-90,1],[-35,-1],[-21,2],[-22,-1],[-21,0],[-211,0],[-55,0],[-268,1],[-35,0],[-259,11],[-36,2],[-33,1],[-85,3],[-21,4],[-22,5],[-39,6],[-47,14],[-21,3],[-31,2],[-26,6],[-27,7],[-22,9],[-21,6],[-29,6],[-21,12],[-19,-14],[-34,0],[-24,0],[-26,1],[-26,1],[-26,-1],[-3,0],[-18,0],[-32,1],[-26,0],[-52,1],[-22,0],[-23,-3],[-41,2],[-62,-1],[-117,0],[-94,-1],[-98,-1],[-33,0],[-2,0],[-20,-1],[-45,-9],[-89,-14],[-29,-2],[-21,-5],[-21,-4],[-84,-13],[-341,11],[-30,1],[-30,1],[-52,1],[-213,8],[-270,9],[-271,9],[-148,5],[-84,2],[-160,6],[-171,6],[-170,5],[-22,1],[-122,4],[-126,2],[-131,3],[-176,5],[-206,6],[-91,3],[-5,0],[-56,1],[-141,7],[-2,0],[-195,10]],[[26573,99960],[22,0],[37,1],[2,0],[28,0],[5,0],[20,0],[155,1],[73,1],[165,1],[102,1],[84,0],[287,0],[60,-1],[60,0],[100,-2],[22,0],[66,-2],[91,-2],[93,-2],[28,1],[13,0],[44,1],[34,1],[52,1],[45,0],[39,0],[15,1],[7,0],[90,0],[26,0],[110,-1],[49,-1],[64,-1],[121,-1],[124,-1],[64,0],[31,0],[141,-1],[50,0],[90,-1],[35,0],[52,0],[39,0],[86,-1],[21,0],[38,0],[39,0],[194,-1],[52,0],[162,0],[131,1],[242,1],[211,1],[87,1],[67,0],[23,-4],[24,2],[21,0],[26,-1],[20,1],[21,0],[24,0],[23,1],[23,-1],[24,1],[21,0],[22,0],[22,0],[24,-1],[24,1],[24,2],[23,2],[20,-6],[75,0],[88,-1],[94,0],[110,-1],[69,-1],[26,1],[49,0],[142,2],[46,0],[180,2],[153,0],[28,0],[29,0],[13,1],[8,0],[57,-1],[8,0],[46,-1],[20,0],[94,-1],[105,-1],[42,-1],[21,0],[64,-1],[25,0],[16,0],[22,0],[38,0],[38,0],[4,0],[86,0],[67,0],[23,0],[73,1],[2,0],[22,0],[28,0],[18,0],[6,0],[72,0],[2,0],[50,0],[20,0],[166,1],[82,0],[29,0],[37,0],[26,0],[32,0],[90,0],[30,0],[20,0],[11,0],[76,-1],[27,0],[56,-1],[51,0],[154,-2],[53,0],[2,0],[34,1],[41,0],[39,0],[51,0],[141,0],[47,0],[27,1],[23,0],[20,0],[34,0],[81,1],[20,0],[41,0],[21,0],[45,0],[22,0],[63,0],[95,-1],[34,0],[17,0],[33,-1],[74,0],[25,0],[64,0],[108,-1]],[[42002,99970],[-4,-241],[-1,-45],[-4,-204],[0,-67],[0,-80],[-1,-137],[0,-28],[-2,-132],[-1,-68],[2,-89],[0,-47],[1,-33],[-4,-146],[-9,-134],[-3,-70],[-4,-138],[-12,-238],[-1,-30],[-6,-115],[-10,-201],[-2,-40],[-4,-93],[-7,-161],[-2,-34],[-3,-79],[-2,-44],[-1,-9],[-2,-35],[-2,-46],[-2,-76],[1,-95],[0,-34],[1,-28],[0,-29],[0,-31],[1,-32],[0,-36],[1,-23],[0,-37],[-63,4],[-7,1],[-16,1],[-244,4],[-25,-131],[-8,-33],[-15,-33],[-31,-37],[-28,-29],[-42,-31],[-44,-39],[-34,-34],[-28,-22],[-27,-16],[-2,-1],[-27,-13],[-26,-13],[-25,-13],[-20,-16],[-21,-20],[-22,-25],[-16,-18],[-17,-18],[-8,-8],[-13,-13],[-17,-10],[-17,-16],[-11,-2],[-16,-12],[-9,-9],[-17,-18],[-87,-47],[-8,2],[-25,-22],[-80,-43],[-68,-48],[-53,-55],[-23,-44],[0,-1],[0,-8],[0,-44],[1,-13],[9,-25],[22,-57],[1,-1],[2,-4],[28,-38],[12,-17],[13,-1],[5,-3],[14,-8],[15,-20],[24,-32],[1,-2],[36,-42],[55,-42],[44,-20],[47,-13],[10,-3],[47,-2],[26,27],[26,14],[64,8],[64,26],[32,13],[14,-1],[24,-1],[6,7],[43,14],[67,22],[44,15],[39,20],[19,10],[58,19],[10,-1],[30,-2],[24,-2],[21,-2],[38,5],[68,26],[31,9],[58,16],[26,3],[53,-13],[24,-29],[21,-26],[7,-8],[20,-55],[-2,-39],[-1,-24],[-1,-31],[-38,-222],[-17,-60],[-28,-60],[-37,-43],[-2,-2],[-26,-10],[-11,0],[-52,-1],[-15,7],[-13,5],[-6,4],[-31,23],[-83,78],[-34,41],[-40,34],[-56,20],[-35,2],[-39,-10],[-6,-3],[-32,-17],[-17,-17],[-98,-121],[-40,-50],[-43,-54],[-47,-91],[-5,-23],[-3,-14],[-7,-30],[-5,-70],[-1,-23],[-4,-11],[-52,-141],[-21,-85],[-2,-46],[6,-18],[24,-30],[22,-15],[15,-2],[25,-2],[26,-2],[16,6],[36,20],[177,111],[104,68],[3,3],[3,1],[29,13],[4,2],[5,0],[65,-3],[5,0],[94,-36],[31,-16],[34,-26],[62,-56],[40,-44],[12,-12],[32,-26],[70,-57],[55,-57],[4,-4],[2,-2],[21,-30],[12,-38],[7,-26],[4,-12],[0,-17],[-3,-69],[-10,-21],[-1,-43],[6,-11],[-1,-9],[-5,-69],[-13,-38],[-19,-55],[-18,-7],[-69,-44],[-9,-81],[-4,-38],[-5,-42],[-28,4],[-6,1],[-134,-142],[-18,-23],[-50,-44],[-36,-29],[-18,-15],[-43,-79],[23,-50],[30,-54],[23,-37],[57,-23],[55,-18],[99,32],[78,67],[53,33],[69,27],[66,21],[77,-23],[118,-64],[75,-71],[64,-65],[2,-1],[3,-3],[9,-8],[58,-46],[3,-2],[3,-2],[3,-1],[4,-2],[69,-25],[3,-1],[58,-16],[3,-1],[3,0],[40,-5],[4,0],[49,0],[3,0],[2,1],[31,4],[12,1],[93,8],[47,4],[53,-3],[20,-4],[48,-23],[17,-24],[14,-89],[-16,-45],[-30,-59],[-2,-3],[-2,-4],[-1,-4],[-2,-5],[-1,-5],[-1,-5],[-20,-107],[-20,-107],[-14,-118],[-3,-34],[-3,-41],[0,-97],[1,-11],[1,-29],[-1,-28],[11,-23],[45,-61],[37,-38],[34,-25],[14,-9],[30,-7],[63,-7],[14,-4],[30,-18],[15,-9],[9,-10],[5,-14],[3,-13],[3,-15],[2,-15],[2,-20],[0,-12],[0,-16],[0,-9],[-2,-11],[-4,-9],[-191,-150],[-5,-4],[-36,-28],[-18,-19],[-6,-5],[-14,-12],[-12,-15],[-48,-74],[-35,-70],[-1,-2],[-17,-39],[-3,-78],[42,-130],[2,-5],[2,-3],[4,-10],[116,-255],[2,-5],[3,-4],[2,-3],[1,-2],[44,-58],[1,-2],[3,-3],[3,-3],[3,-3],[3,-2],[2,-1],[57,-38],[184,-120],[202,-243],[3,-3],[3,-3],[3,-2],[3,-3],[3,-2],[61,-35],[3,-2],[3,-1],[4,-1],[1,-1],[2,0],[4,-1],[3,0],[4,0],[60,12],[4,2],[3,2],[1,1],[16,12],[47,34],[2,2],[3,3],[3,3],[2,3],[3,3],[2,4],[3,4],[2,4],[0,1],[2,5],[19,42],[13,29],[13,29],[38,65],[65,112],[7,7],[3,3],[11,-16],[3,-5],[1,-1],[-1,-36],[-11,-30],[-31,-83],[-23,-24],[-7,-14],[-14,-39],[0,-12],[2,-12],[20,-109],[42,-55],[5,-6],[17,3],[23,4],[98,14],[25,3],[45,-2],[12,-4],[58,-17],[2,0],[1,-2],[37,-45],[7,-9],[6,-11],[45,-77],[8,-47],[-2,-53],[0,-8],[-8,-9],[-4,-10],[-14,-23],[-1,-64],[-162,-13],[-77,-1],[-119,0],[-3,-175],[-2,-95],[-3,-147],[119,-1],[132,-2],[104,-1],[-1,-29],[0,-106],[0,-140],[0,-64],[0,-34],[-1,-57],[-2,-48],[-2,-52],[-6,-120],[-1,-38],[-1,-35],[-2,-86],[-3,-155],[-6,-179],[-2,-57],[-1,-40],[-6,-203],[-5,-197],[-3,-111],[-1,-40],[-4,-266]],[[44367,87502],[-245,6],[-41,1],[-114,2],[-25,0],[-221,6],[-57,2],[-27,1],[-84,2],[-175,4],[-26,0],[-74,1],[-114,2],[-45,0],[-64,0],[-31,1],[-236,2],[-120,2],[-73,1],[-158,3],[-29,1],[-61,1],[-139,4],[-23,1],[-47,1],[-186,6],[-89,2],[-63,2],[-192,5],[-113,2],[-29,1],[-164,4],[-161,4],[-112,3],[-20,0],[-66,2],[-70,2],[-155,2],[-87,2],[-40,1],[-38,0],[-58,1],[-26,0],[-97,3],[-22,0],[-152,3],[-37,1],[-44,-6],[-65,0],[-109,4],[-67,3],[-21,-1],[-49,2],[-28,-1],[-23,-5],[-118,3],[-112,2],[-26,1],[-77,3],[-123,4],[-54,2],[-89,4],[-42,2],[-79,4],[-32,2],[-65,4],[-44,3],[-170,7],[-81,1],[-99,2],[-213,4],[-28,0],[-237,4],[-128,-1],[-49,1],[-25,1],[-78,2],[-51,1],[-174,2],[-2,0],[-25,1],[-93,4],[-78,3],[-45,2],[-86,3],[-49,2],[-64,2],[-110,4],[-143,6],[-51,0],[-113,2],[-170,0],[-50,2],[-283,12],[-133,5],[-158,11],[-88,6],[-25,1],[1,43],[4,125],[0,59],[2,121],[0,73],[0,6],[5,209],[0,64],[1,41],[0,42],[2,103],[2,107],[0,9],[0,32],[1,60],[-1,51],[2,103],[-39,-1],[-48,1],[-22,0],[-175,-2],[-20,1],[-55,-2],[-51,2],[-135,4],[-182,5],[-54,1],[-201,2],[-101,0]],[[35468,99948],[21,0],[280,0],[92,0],[60,0],[96,0],[27,0],[159,0],[52,1],[33,-1],[94,-1],[67,-2],[48,-1],[4,0],[67,-1],[33,0],[22,0],[100,0],[31,0],[7,0],[35,0],[59,0],[30,0],[26,0],[3,0],[71,0],[68,0],[29,0],[29,0],[29,1],[145,5],[30,1],[48,0],[15,0],[33,0],[27,1],[26,1],[22,0],[72,-1],[83,-1],[74,0],[53,1],[6,0],[44,1],[27,0],[15,1],[32,1],[31,0],[84,0],[81,0],[107,0],[25,0],[177,-1],[94,0],[89,0],[89,0],[31,1],[33,0],[90,0],[247,1],[256,1],[32,0],[176,-1],[164,0],[70,3],[37,-1],[21,0],[39,0],[82,0],[14,0],[109,-1],[125,2],[33,1],[32,0],[63,0],[10,0],[111,1],[99,-1],[107,-1],[77,0],[328,2],[241,0],[88,1],[191,4],[31,1],[231,3],[165,1]],[[49485,93180],[-3,-109],[-2,-51],[-3,-60],[-3,-100],[-6,-222],[-1,-44],[-2,-77],[-10,-380],[-10,-458],[0,-4],[-3,-124],[-2,-86],[-4,-171],[-3,-123],[-2,-82],[-4,-208],[-2,-126],[-14,-78],[-50,0],[-22,2],[-260,12],[-23,2],[-495,15],[-221,7],[-3,-156],[-1,-55],[-1,-45],[-1,-56],[-4,-162],[0,-28],[-1,-12],[-3,-145],[-8,-372],[-1,-45],[-1,-111],[63,1],[21,-5],[2,-1],[4,0],[3,0],[4,0],[3,0],[4,1],[1,1],[30,9],[40,13],[123,6],[17,-8],[2,0],[41,-10],[33,-24]],[[48707,89511],[-3,-188],[0,-49],[-6,-284],[-1,-52],[-3,-122],[-1,-87],[1,-56],[-2,-105],[-4,-240],[-2,-100],[-1,-40],[-4,-178],[-4,-168],[-2,-100],[-8,-340],[-36,2],[-458,11],[-135,4],[-146,3],[-153,3],[-128,10],[-200,5],[-6,0],[-137,4],[-93,2],[-55,1],[-73,5],[-117,4],[-58,3],[-157,-8],[-135,1],[-71,2],[-3,-97],[-9,-238],[-4,-90],[-1,-128],[0,-45],[-1,-99],[0,-59],[-1,-34],[0,-39],[-1,-36],[-2,-107],[-2,-161],[0,-46],[0,-30],[-4,-345],[-1,-101],[-2,-93],[-1,-12],[-5,-263],[-4,-227],[-2,-112],[-1,-58],[-1,-71],[-56,2],[-41,1],[-268,5],[-77,2],[-116,2],[-88,2],[-63,1],[-100,3],[-96,2],[-42,1],[-126,3],[-295,7],[-557,17],[-175,3],[-54,2]],[[44310,85016],[2,121],[1,58],[4,29],[-2,56],[1,22],[1,22],[2,103],[-2,110],[1,56],[1,43],[3,70],[0,2],[3,110],[4,170],[4,169],[1,40],[2,47],[1,41],[1,55],[8,123],[0,46],[4,125],[0,30],[1,30],[3,140],[0,103],[6,246],[4,190],[3,129]],[[42002,99970],[117,2],[130,2],[27,0],[80,-1],[115,-3],[34,0],[41,0],[38,-1],[79,-2],[78,1],[193,1],[2,0],[22,0],[349,3],[66,0],[263,-3],[44,-2],[31,1],[201,-7],[43,-2],[111,-4],[111,-4],[44,-1],[125,0],[55,0],[193,-1],[307,-1],[37,-8],[71,-4],[21,-2],[68,-4],[98,2],[36,1],[149,1],[102,5],[43,2],[72,6],[205,-1],[55,0],[4,0],[53,0],[205,-1],[119,0],[172,2],[34,2],[103,1],[242,0],[137,1],[76,1],[38,1],[167,1],[127,1],[26,-1],[7,0],[52,0],[4,0],[43,1],[44,1],[21,0],[32,1],[47,2],[257,0],[196,2],[226,4],[45,-1],[54,0],[185,1],[58,-2],[10,0],[231,1],[27,2],[96,0],[245,2],[71,0],[77,1],[230,1]],[[89033,91467],[-5,0],[-127,3],[-25,0],[-262,-1],[-51,0],[-22,-1],[-162,-2],[-1,0],[-177,2],[-185,1],[-141,2],[-47,-16],[-87,5],[-271,-4],[-47,-1],[-21,0],[-283,-8],[-2,0],[-61,-1],[-9,0],[-21,3],[-175,-3],[-91,0],[-181,-1],[-178,0],[1,419],[0,285],[0,142],[21,1],[-1,238],[0,30],[1,50],[0,98],[1,152],[2,149],[0,115],[-86,0],[-21,0],[-25,0],[-133,6],[-93,-1],[-57,3],[-28,0],[-39,0],[-36,0],[-21,-1],[-33,0],[-153,0],[-94,1],[-36,0],[-42,1],[-43,0],[-42,0],[-92,9],[-37,-3],[-49,-2],[-94,-4],[-78,-3],[-101,-4],[-29,0],[-105,-1],[-151,2],[-43,1],[-45,0],[-273,4],[-22,0],[-51,1],[-361,5],[-86,1],[-51,2],[-173,8],[-42,-8],[-25,3],[-127,5],[-23,2],[-62,4],[-26,1],[-36,0],[-52,1],[-20,6],[-135,0],[-22,0],[-84,5],[-33,7],[-63,4],[-29,1],[-34,-1],[-83,1],[-85,0],[-233,6],[-284,7],[-188,20],[-111,12],[-63,7],[-289,14],[-255,9],[-182,1],[-18,36],[-69,0],[-267,0],[-367,10],[-8,0],[-466,18],[-186,8],[-74,3],[-183,7],[-181,7],[-8,0],[-35,1],[-42,2],[-290,11],[-182,6],[-180,8],[-134,-2],[-143,-1],[-158,-2],[-46,0],[-206,-2],[-1136,-25]],[[77084,99968],[29,0],[49,0],[32,0],[85,0],[182,-1],[129,-2],[184,7],[57,0],[119,0],[248,0],[54,-1],[116,-4],[116,-4],[72,-1],[49,0],[134,-1],[84,6],[99,0],[346,2],[329,-1],[1,0],[124,-1],[95,-1],[184,1],[287,0],[69,-2],[97,3],[86,1],[58,-3],[33,0],[52,0],[115,0],[109,0],[60,0],[120,1],[153,-1],[32,3],[84,0],[32,0],[2,0],[76,0],[51,1],[90,-1],[20,-1],[54,0],[26,0],[42,0],[81,-1],[27,0],[62,0],[41,0],[34,0],[8,0],[18,1],[35,-1],[77,0],[23,0],[31,0],[58,-1],[48,0],[65,0],[114,0],[40,0],[10,0],[53,0],[60,0],[58,0],[25,0],[80,0],[49,0],[67,-1],[137,0],[78,1],[38,0],[4,-1],[37,1],[62,-1],[24,1],[40,-1],[87,0],[38,0],[242,0],[124,0],[160,0],[2,0],[39,0],[1,0],[107,-1],[2,0],[36,0],[5,0],[24,0],[88,0],[45,0],[269,0],[121,0],[125,0],[90,-1],[236,0],[110,0],[31,0],[66,-1],[20,0],[117,0],[136,0],[50,-1],[315,-2],[23,-4],[34,1],[38,0],[22,0],[89,-1],[58,-1],[25,2],[24,0],[26,0],[107,-1],[23,0],[75,-3],[47,-1],[31,-1],[80,1],[20,1],[28,0],[26,0],[33,0],[79,0],[37,0],[121,-1],[21,0],[21,0],[62,0],[33,0],[38,0],[30,0],[46,0],[64,0],[113,-1],[26,0],[20,0],[61,-1],[23,0],[90,-1],[61,-1],[58,1],[81,-1],[35,0],[102,1],[22,0],[53,0],[43,0],[59,1],[25,0],[51,0],[116,0],[69,0],[27,0],[38,0],[24,0],[41,1],[36,1],[35,0],[40,0],[61,-1],[56,0],[48,0],[36,0],[27,0],[208,-1],[23,0],[40,0],[133,1],[93,1],[89,0],[191,1],[7,0],[4,-29],[11,-28],[7,-18],[10,-24],[7,-21],[-3,-8],[-2,-5],[-18,-15],[-27,-22],[-8,-14],[-3,-67],[-6,-41],[-15,-99],[-8,-32],[-9,-13],[-6,-8],[-24,-32],[0,-3],[-2,-10],[-1,-3],[1,-4],[4,-16],[10,-13],[1,-2],[3,-2],[30,-19],[8,-4],[110,-47],[25,-11],[28,-11],[7,-3],[20,1],[50,3],[5,0],[18,-8],[8,-19],[2,-5],[1,-5],[18,-83],[31,-181],[1,-7],[5,-29],[1,-7],[-1,-20],[-23,-81],[29,-78],[37,34],[36,-62],[36,-65],[36,-63],[-79,-62],[-3,-10],[-1,-6],[0,-3],[0,-4],[2,-6],[13,-50],[-3,-24],[2,-21],[6,-83],[0,-7],[4,-23],[22,-49],[2,-8],[8,-25],[1,-2],[1,-3],[2,-19],[1,-15],[-3,-37],[-4,-8],[-2,-6],[-6,-8],[-9,-8],[-6,-8],[-45,-51],[-2,-1],[-81,-58],[-10,-5],[-8,-3],[-7,-10],[-1,-5],[-5,-21],[-8,-40],[-4,-41],[-3,-36],[1,-15],[1,-9],[2,-5],[4,-10],[50,-50],[27,-27],[8,-8],[13,-8],[4,0],[8,0],[10,0],[3,2],[2,1],[10,6],[17,21],[12,19],[7,4],[9,6],[5,-1],[6,-11],[-11,-147],[-3,-23],[-8,-23],[-18,-21],[-2,-2],[-10,-5],[-30,-9],[-7,-7],[1,-6],[2,-8],[0,-3],[4,-3],[9,-6],[32,-2],[26,4],[40,16],[39,23],[3,2],[14,12],[19,25],[3,3],[13,8],[15,0],[11,-5],[11,-15],[1,-17],[-7,-22],[-19,-30],[-15,-24],[-6,-21],[4,-13],[6,-4],[7,-4],[60,-10],[46,-3],[28,0],[55,-33],[4,-3],[16,-12],[16,-12],[20,-16],[1,-1],[3,-48],[2,-9],[3,-2],[4,-4],[5,-2],[90,-44],[21,-10],[17,-2],[21,4],[13,8],[15,9],[11,10],[10,9],[14,4],[6,-5],[2,-2],[15,-31],[13,-31],[16,-24],[3,-2],[5,-2],[14,4],[15,19],[13,14],[17,19],[11,0],[38,-15],[35,11],[49,-13],[204,-66],[27,-13],[17,-14],[18,-33],[8,-36],[1,-27],[0,-10],[6,-4],[25,-16],[118,-64],[3,-2],[3,-2],[7,-24],[11,-41],[8,-38],[7,-35],[2,-10],[10,-79],[6,-8],[22,-8],[9,-1],[22,-4],[33,-9],[8,-7],[4,-14],[-5,-12],[-10,-17],[-12,-18],[-15,-31],[-29,-73],[1,-10],[7,-7],[7,-4],[22,-13],[2,-6],[15,-46],[4,-52],[4,-48],[-19,-120],[-20,-69],[-9,-30],[0,-3],[-15,-63],[0,-6],[1,-2],[1,-16],[8,-30],[-2,-24],[-7,-14],[-34,-30],[-40,-41],[-5,-6],[-2,-1],[-34,-60],[-32,-55],[-28,-55],[-7,-7],[-5,-1],[-18,-5],[-14,-2],[-4,-4],[-2,-13],[3,-16],[8,-14],[53,-92],[7,-20],[5,-34],[-3,-7],[-3,-8],[-1,-3],[-2,-2],[-11,-12],[-7,-1],[-14,-3],[-2,-1],[-12,0],[-8,-7],[-17,-83],[-1,-6],[-4,-22],[-1,-5],[2,-22],[5,-12],[37,-23],[5,-3],[8,-12],[-2,-21],[-28,-93],[-71,-177],[-21,-53],[-8,-19],[4,-17],[4,-9],[32,-73],[7,-7],[11,1],[12,8],[19,14],[5,4],[9,1],[7,-4],[31,-31],[3,-3],[9,-12],[103,-127],[13,-30],[6,-26],[8,-56],[5,-23],[5,-18],[10,-41],[2,-8],[9,-15],[42,-51],[3,-5],[3,-17],[-5,-10],[-8,-18],[-5,-8],[-11,-15],[-10,-12],[-27,-29],[-33,-24],[-17,-27],[-5,-15],[-1,-5],[1,-31],[1,-6],[2,-22],[-5,-16],[-28,-39],[-8,-8],[-7,-8],[-40,-41],[-3,-2],[-12,-7],[-35,-13],[-25,-9],[-20,-7],[3,-11],[4,-14],[15,-64],[3,-12],[11,-42],[20,-84],[1,-5],[4,-13],[-3,-4],[-22,-38],[-97,-162],[-3,-6],[-32,-51],[-15,-11],[-41,-12],[-41,-4],[-7,0],[-48,-4],[-66,1],[-4,-3],[-61,-35],[-48,-28],[-2,-1],[-100,-60],[-4,0],[-89,1],[-9,3],[-53,-12],[-40,-28],[-2,-12],[-20,-102],[-44,-233],[-74,-157],[-24,-50],[-11,-24],[-16,-34],[-28,-23],[-2,0],[-3,0],[-53,-3],[-4,-1],[-16,-1],[-11,-10],[-6,-22],[15,-57],[6,-24],[35,1],[49,1],[2,-77],[1,-38],[1,-43],[-11,-61],[-13,-66],[-8,-4],[-3,0],[-48,-1],[-13,0],[-22,-13],[-5,-6],[-5,-6],[-3,-16],[-3,-24],[-10,-13],[-1,-1],[-14,1],[-34,-2],[-26,7],[-41,17],[-2,0],[-70,8],[-11,0],[-137,-169],[-2,-1],[-47,-69],[-8,-61],[-6,-30],[-7,-11],[-51,-37],[-22,-17],[-14,-2],[-8,4],[-3,1],[-104,33],[-4,2],[-60,-15],[-76,-12],[-2,0],[-6,-1],[-10,-39],[-14,-20],[-40,-44],[-4,-5],[-10,-3],[-2,0],[-63,-37],[-45,-26],[-2,-2],[-56,-54],[-2,-7],[-3,-9],[0,-3],[-10,-8],[-6,-1],[-48,-10],[-4,-1],[-6,1],[-6,2],[-35,16],[-2,1],[-1,-8],[-5,-30],[-25,-59],[-6,-13],[-3,-2],[0,-2]],[[22890,89284],[-7,-409],[0,-71],[-3,-336],[0,-62],[-2,-273],[-1,-97],[696,-20],[-27,-382],[-3,-43],[-9,-142],[-13,-212],[0,-29],[-4,-262],[-3,-194],[-2,-170],[-2,-148],[-2,-80],[-2,-146],[0,-9],[-1,-48],[-1,-38],[-1,-68],[-4,-230],[-2,-107],[0,-2],[-4,-124],[0,-60],[-9,-201],[-1,-38],[-4,-124],[-2,-85],[-6,-211],[-1,-87],[-54,1],[-120,0],[-27,1],[-26,0],[-76,0],[-44,0],[-1,-72],[-3,-199],[-4,-143],[-21,1],[-184,3],[-29,1],[-123,0],[-3,-133],[-2,-226],[-1,-56],[-2,-147],[-7,-264],[-25,0],[-96,5],[-147,9],[-48,6],[-47,3],[-3,-128],[0,-97],[-1,-94],[4,-96],[-3,-71],[-3,-133],[-3,-159],[-1,-38],[-5,-141],[-2,-112],[0,-1],[-1,-57],[-4,-135],[-29,2],[-80,3],[-41,1],[-1,0],[-72,3],[-70,3],[-61,3],[-3,-46],[-2,-75],[-3,-66],[-1,-125],[-6,-211],[0,-32],[-2,-47],[-5,-124],[-8,-228],[-9,-247],[-3,-160],[-7,-298],[26,-1],[154,-7],[-3,-125],[-1,-52],[0,-1],[-6,-292],[-14,-387],[1,-39],[-3,-138],[-7,-238],[-1,-38],[2,-157],[-10,-244]],[[22093,78941],[-177,7],[-24,1],[-167,8],[-49,1],[-125,3],[-37,1],[-24,0],[-73,3],[-53,1],[-41,0],[-64,2],[-151,4],[-49,1],[-69,1],[-147,3],[-148,5],[-50,2],[-34,1],[-20,1],[-4,0],[-286,12],[-170,8],[-75,2],[-80,2],[-150,4],[-36,2],[-110,7],[-61,4],[-293,18],[-153,12],[-27,2],[-53,4],[-95,-2],[-72,6],[-59,2],[-46,6],[-95,3],[-58,3],[-51,-1],[-79,8]],[[18538,79088],[-195,5],[-82,2],[-57,2],[-30,4],[-27,4],[-78,2],[-31,3],[-214,12],[-123,7],[-21,1],[-38,2],[-75,1],[-119,6],[-113,2],[-43,2],[-91,4],[-82,2],[-41,0],[-21,1],[-411,25],[-121,0],[-89,5],[-22,1],[-35,3],[-115,2],[-123,4],[-72,1],[-62,2],[-36,1],[-42,1],[-112,2],[-156,4],[-117,5],[-55,2],[-153,4],[-21,2],[-22,1],[-55,2],[-57,1],[-67,3],[-83,4],[-96,4],[-48,1],[-112,3],[-66,2],[-129,3],[-92,3],[-80,3],[-47,1],[-138,3],[-4,-316],[-1,-99]],[[14218,78833],[-200,5],[-236,8],[-205,5],[-61,2],[-173,8],[-52,2],[-120,4]],[[13171,78867],[1,79],[1,45],[10,513],[4,171],[10,433],[6,248],[2,47],[0,3],[6,256],[6,275],[176,-1],[3,82],[2,41],[3,64],[4,138],[2,64],[2,73],[1,87],[1,130],[5,96],[0,53],[2,206],[3,162],[10,407],[1,49],[1,29],[6,346],[3,150],[2,116],[2,76],[2,97],[2,120],[1,55],[3,116],[0,17],[3,193],[2,57],[8,295],[6,234],[3,90],[5,261],[3,173],[2,68],[1,86],[8,260],[-1,70],[-1,46],[3,49],[4,114],[0,2],[1,107],[1,120],[1,41],[1,44],[5,276],[7,366],[0,22],[2,63],[2,138],[6,277],[5,278],[4,200],[1,59],[1,65],[2,77],[3,159],[1,50],[0,29],[3,134],[2,99],[134,492],[85,312],[6,20],[7,25],[14,53],[21,70],[50,184],[23,81],[34,124],[72,261],[8,31],[48,174],[9,29],[59,215],[54,196],[21,77],[79,286],[61,219],[37,136],[40,144],[46,168],[31,111],[32,116],[22,81],[54,196],[2,4],[49,179],[24,89],[12,45]],[[89033,91467],[-22,-12],[-9,-2],[-26,-12],[-8,-2],[-1,-2],[-50,-82],[-20,-34],[-4,-8],[-69,-109],[-77,-150],[2,-13],[-34,-3],[-41,-24],[-34,-35],[-17,-30],[-14,-11],[-42,3],[-8,2],[-5,2],[-43,11],[-13,5],[-7,2],[-40,13],[-30,-2],[-33,-99],[-165,-319],[0,-23],[13,-32],[1,-15],[-21,-95],[-5,-11],[-14,-15],[-23,-25],[-12,-37],[-8,-64],[22,-66],[-11,-19],[-2,-2],[1,-12],[10,-15],[7,-4],[6,-4],[2,-1],[11,-2],[3,-6],[1,-27],[0,-160],[-1,-5],[-4,-14],[-10,-16],[-15,-10],[-30,-9],[-7,-6],[0,-6],[-5,-25],[-10,-65],[-3,-15],[0,-4],[1,-33],[0,-17],[-8,0],[-11,0],[-36,-83],[-62,-78],[-55,-63],[-32,-28],[-48,-32],[-17,-8],[-4,6],[-91,-112],[-10,-14],[-8,10],[-37,47],[-3,4],[-7,-1],[-18,-2],[-19,12],[-5,2],[-2,0],[-2,-1],[-18,-4],[-19,-16],[-14,-32],[-16,-19],[-16,-23],[-19,-31],[-2,-3],[-11,-24],[-12,-24],[-17,-30],[-20,-14],[-19,-11],[-25,-13],[-27,-9],[-21,-4],[-4,-7],[-12,-20],[-20,-24],[-24,7],[-22,4],[-23,13],[-25,-5],[-22,-7],[-21,-14],[-23,2],[-20,-11],[-20,-12],[-31,-9],[-21,-2],[-26,6],[-20,-10],[-18,-14],[-24,-8],[-46,-5],[-25,-23],[-17,-26],[22,-46],[2,-36],[-23,-10],[-24,-5],[-17,-30],[-17,-20],[-10,-46],[11,-34],[-2,-48],[-16,-26],[-14,-31],[-11,-34],[1,-44],[-13,-27],[-47,-22],[-19,-15],[-25,-23],[-37,-18],[-21,-7],[-21,4],[-22,-3],[-23,4],[-31,-18],[-21,-22],[-23,-29],[-16,-26],[-14,-22],[-31,0],[-22,-17],[-13,-26],[-11,-32],[-7,-27],[22,-27],[13,-46],[-20,-45],[-3,-33],[-1,-31],[19,-18],[12,-30],[-2,-36],[8,-26],[-1,-29],[-13,-33],[-90,-89],[-23,-20],[-22,-19],[-17,-16],[-22,-25],[-30,-9],[-63,-23],[-23,-5],[-10,-33],[-8,-42],[-13,-33],[5,-34],[-19,-35],[-9,-42],[19,-23],[17,-24],[19,-18],[-9,-47],[-1,-3],[-34,-77],[-6,-32],[-6,-91],[-1,-27],[-16,-24],[-38,-52],[-42,49],[-3,4],[0,-5],[-2,-1],[-19,-19],[-19,-23],[-7,-15],[-4,-9],[4,-35],[-23,-10],[-20,-8],[-22,-22],[-21,-3],[-28,-53],[-4,-33],[4,-30],[6,-41],[8,-34],[-17,-39],[-22,-17],[-9,-34],[-11,-27],[-26,0],[-23,-5],[-8,-31],[12,-27],[26,-9],[17,-37],[-5,-34],[-3,-28],[-23,-18],[-19,-27],[-24,-38],[-10,-25],[-13,-35],[-12,-42],[-24,-22],[-26,2],[-22,-22],[-15,-26],[-12,-25],[-29,-22],[-16,-15],[-11,-27],[-2,-4],[-27,-49],[-48,-55],[-31,-71],[-12,-29],[-22,-51],[-24,-49],[-16,-46],[-16,-22],[-14,-20],[-17,-33],[-18,-38],[-21,-32]],[[85259,85583],[-24,-27],[-18,-23],[-9,-29],[-29,-39],[-30,-29],[-20,-15],[-23,-24],[-15,-34],[-4,-38],[2,-37],[1,-31],[7,-30],[7,-27],[1,-29],[9,-41],[-5,-38],[-23,-24],[-13,-23],[-1,-127],[0,-29],[-5,-29],[-9,-27],[-8,-28],[-2,-29],[2,-35],[8,-27],[-36,-17],[-124,1],[-22,0],[-16,0],[-102,1],[-112,1],[-1,0],[-51,1],[-99,0],[-1,0],[-85,1],[-74,-1],[-186,-3],[-55,0],[-123,4],[-1,0],[-229,4],[-1,0],[-138,2],[-86,1],[-90,2],[-102,1],[-74,1],[-182,1],[-180,-1],[-87,0],[-281,0],[-242,2],[-219,0],[-22,0],[-4,0],[-59,0],[-126,0],[-22,1],[-26,0],[-55,0],[-31,0],[-86,2],[-25,3],[-10,0],[-58,-2],[-67,1],[-24,-2],[-42,1],[-29,1],[-21,-1],[-31,-1],[-58,1],[-50,1],[-114,1],[-31,-1],[-54,1],[-52,0],[-37,1],[-23,0],[-38,0],[-24,0],[-32,1],[-66,1],[-44,0],[-74,2],[-200,3],[-83,3],[-7,-1],[-19,-1],[-27,3],[-170,3],[-100,1],[-117,1],[-259,6],[-46,0],[-125,1],[-37,0],[-27,0],[-56,1],[-39,1],[-30,0],[-163,1],[-21,0],[-146,0],[-58,1],[-89,-1],[-24,1],[-28,1],[-59,0],[-205,6],[-5,0],[-32,-1],[-54,0],[-66,-1],[-17,0],[-50,0],[-69,0],[-31,1],[-67,-2],[-31,0],[-22,-1],[-186,7],[-41,1],[-44,1],[-54,1],[-129,-1],[-84,1],[-180,1],[-26,0],[-294,-1],[-225,-1],[-182,0],[-95,-1],[-75,0],[-37,0],[-67,5],[-179,4],[-89,4],[-134,8],[-15,0],[-71,3],[-29,1],[-8,0],[-45,2],[-36,3]],[[75720,84790],[-3,34],[0,50],[1,1],[21,14],[22,6],[16,16],[10,10],[20,-20],[32,42],[-6,39],[2,12],[0,3],[0,23],[-4,82],[-1,4],[9,-3],[64,-22],[16,2],[9,7],[10,17],[2,12],[-1,17],[-2,31],[0,1],[-3,23],[-3,11],[0,1],[-1,1],[-7,15],[-6,8],[-1,0],[0,1],[-13,9],[-2,-2],[-38,-21],[-13,30],[-15,36],[-4,11],[-29,70],[-4,-1],[-29,0],[-26,12],[-54,56],[-36,3],[-32,-8],[-27,22],[-6,37],[-15,39],[-7,27],[-4,35],[25,18],[18,-29],[-8,-34],[17,-18],[28,21],[40,25],[6,32],[-5,13],[-27,75],[3,20],[-1,2],[-2,39],[7,23],[4,6],[3,4],[30,40],[16,20],[2,3],[39,56],[95,126],[33,67],[35,71],[2,4],[61,118],[8,15],[3,8],[3,6],[15,40],[-1,5],[0,32],[-19,86],[-34,199],[-2,20],[5,91],[9,29],[215,353],[51,86],[2,3],[10,13],[10,17],[3,5],[2,4],[6,19],[2,5],[2,289],[1,19],[1,42],[5,4],[14,13],[40,36],[0,14],[-19,24],[-3,4],[-1,3],[-8,31],[-4,14],[3,23],[3,6],[17,25],[1,3],[7,60],[1,12],[20,8],[0,32],[18,15],[25,12],[35,-2],[17,24],[26,-10],[28,33],[12,32],[22,-2],[24,12],[5,-13],[16,12],[59,55],[19,15],[33,31],[18,-15],[32,-2],[23,2],[6,34],[5,29],[22,16],[63,-36],[22,2],[10,42],[7,40],[-9,26],[25,26],[27,3],[20,17],[-14,46],[6,35],[25,11],[0,33],[11,45],[1,34],[20,12],[27,26],[23,12],[-7,27],[16,24],[20,-13],[35,1],[21,25],[21,8],[5,-37],[10,-37],[16,-2],[6,10],[19,72],[15,20],[13,7],[16,9],[65,39],[14,27],[8,22],[6,26],[6,25],[-4,58],[-11,158],[-2,21],[-9,85],[0,24],[13,24],[2,6],[48,97],[1,4],[83,168],[288,325],[38,36],[15,78],[-53,-7],[-203,5],[-171,5],[-101,2],[-78,2],[-278,3],[-88,0],[-281,3]],[[58462,84040],[-75,1],[-98,2],[-266,14],[-68,3],[-48,2],[-35,2],[-155,9],[-52,-1],[-66,-2],[-97,-109],[-88,-98],[-197,-220],[-389,-435],[-62,-69],[-57,-64],[-464,-519],[-127,-141],[-182,-204],[-71,-79],[-28,-31],[-117,-130],[-2,-2],[-21,-24],[-28,-32]],[[55669,81913],[-12,56],[-9,31],[-11,28],[-9,32],[-10,27],[-17,42],[-48,79],[-51,38],[-47,26],[-76,36],[-79,-1],[-66,5],[-41,-16],[-84,-12],[-63,-9],[-21,-3],[-24,1],[-36,2],[-17,-1],[-27,-1],[-39,10],[-8,2],[-43,11],[-81,39],[-12,10],[-6,5],[-6,5],[-26,31],[-1,16],[-11,26],[-84,104],[-49,39],[-9,10],[-9,12],[-61,42],[-50,35],[-14,11],[-28,33],[-30,35],[-25,29],[-9,12],[-43,67],[-1,3],[-2,2],[-102,85],[-74,54],[-102,116],[-64,57],[-95,131],[-38,58],[-29,44],[-16,25],[-70,103],[-6,9],[-59,107],[-81,144],[-85,71],[-73,45],[-32,16],[-63,31],[-70,16],[-67,-1],[-57,-3],[-23,-8],[-24,-9],[-52,-20],[-55,-42],[-39,-37],[-61,-87],[-25,-45],[-21,-38],[-11,-15],[-56,-74],[-69,-94],[-17,-22],[-87,-81],[-103,-60],[-77,-25],[-14,-1],[-14,-1],[-83,7],[-8,1],[-34,20],[-61,53],[-52,59],[-11,22],[-15,40],[-7,51],[0,7],[7,77],[-9,49],[-24,169],[-25,96],[-10,29],[-96,85],[-44,23],[-48,0],[-82,-12],[-60,-14],[-84,-91],[-119,-141],[-138,-108],[-50,-30],[-76,-45],[-68,-23],[-28,-9],[-131,-19],[-50,-2],[-39,-2],[-54,-13],[-12,1],[-29,4],[-28,-2],[-3,0],[-2,0],[-61,21],[-6,-4],[-130,64],[-89,61],[-73,90],[-18,29],[-22,61],[-1,1],[1,0],[10,60],[16,85],[19,51],[21,118],[37,100],[15,38],[7,20],[80,46],[129,86],[88,65],[59,66],[68,84],[24,64],[21,56],[8,114],[3,14],[-3,86],[-17,144],[-19,69],[-21,47],[-11,23],[-52,101],[-40,79],[-20,40],[-7,9],[-82,107],[-15,18],[-9,11],[-34,148],[9,103],[1,5],[0,5],[0,2],[8,47],[0,4],[1,4],[2,5],[1,3],[9,28],[0,2],[2,4],[2,5],[1,2],[25,49],[1,2],[2,4],[2,3],[56,85],[1,1],[3,4],[2,2],[4,4],[33,37],[3,3],[2,1],[14,12],[1,1],[3,2],[2,2],[40,25],[1,1],[3,2],[4,1],[40,15],[3,1],[4,1],[3,1],[59,4],[26,2],[47,4],[73,6],[195,54],[71,45],[45,47],[43,90],[4,19],[3,18],[0,38],[-17,52],[-4,7],[-15,29],[-62,121],[-33,43],[-83,69],[-5,3],[-16,12],[-6,8],[-3,3],[-52,64],[-37,54],[-5,22],[-67,57],[-29,30],[-45,48],[-48,46],[-70,46],[-15,2],[-23,3],[-12,-6],[-36,-19],[-14,0],[-83,4],[-47,33],[-101,0],[-19,0],[-65,35],[-16,13],[-8,7],[-19,15],[-42,49],[-52,60],[-15,17],[-15,28],[-9,16],[-56,100],[-11,85],[-15,26],[-27,49],[-15,29],[-3,4],[-1,4],[-7,17],[-2,5],[-1,4],[-1,3],[-35,37],[-14,15],[-29,83],[-1,12],[-6,39],[-11,13],[-56,192],[-30,68],[-12,29],[-23,69],[0,3],[-8,111],[-7,14],[-22,49],[-116,258],[-45,32],[-4,3],[-78,19],[-52,3],[-78,-14],[-41,-33],[-3,-2],[-65,-70],[-15,-29],[-8,-17],[-5,-9],[-1,-2],[-3,-4],[-2,-3],[-2,-3],[-2,-3],[-1,-1],[-49,-58],[-1,-2],[-31,-33],[-2,-2],[-3,-2],[-26,-22],[-4,-2],[-2,-2],[-28,-17],[-4,-2],[-3,-1],[-63,-26],[-3,-1],[-70,-18],[-29,-7],[-4,0],[-2,0],[-28,-1],[-4,0],[-3,1],[-39,5],[-1,1],[-4,0],[-3,2],[-2,0],[-30,14],[-1,0],[-3,2],[-72,28],[-2,1],[-4,3],[-48,43],[-4,3],[-3,8],[-24,54],[-2,4],[-8,36],[-2,28],[-2,33],[-10,69],[-3,10],[-3,8],[1,5],[13,64],[1,5],[20,32],[4,6],[0,3],[2,7],[5,11],[0,5],[-2,37],[-1,42],[-2,40],[-1,44],[-2,32],[-9,41],[-26,53],[-21,42],[-44,59]],[[75720,84790],[22,-19],[13,-28],[1,-32],[-10,-30],[-13,-25],[-24,-12],[-21,-6],[-23,-9],[-2,-30],[16,-40],[-9,-29],[-21,10],[-18,23],[-12,1],[-16,-27],[-27,-46],[-5,-8],[-24,-42],[-6,-16],[-3,-17],[-1,-10],[0,-11],[9,4],[21,12],[16,4],[6,-3],[3,-5],[30,-98],[1,-7],[1,-11],[-2,-6],[-14,-15],[-22,-13],[-34,-13],[-11,-2],[-14,4],[-12,31],[-25,-31],[-17,-27],[-7,-37],[11,-26],[25,15],[20,0],[1,0],[19,-9],[15,-24],[-15,-26],[19,-25],[-10,-27],[-19,-14],[-17,-1],[-5,0],[-28,0],[-20,-3],[-10,-26],[18,-19],[23,-17],[17,-17],[-2,-98],[-3,-141],[61,-3],[15,-25],[-7,-36],[-11,-24],[-15,-24],[6,-42],[-18,-27],[-29,1],[-71,3],[-50,2],[-66,2],[-1,-92],[0,-146],[-3,-141],[0,-30],[0,-2],[-1,-166],[-1,-55],[-3,-304],[-1,-78],[-1,-90],[-1,-115],[-48,-24],[-397,16],[-137,5],[-52,2],[-126,6],[-53,2],[-118,5],[-149,7],[-71,2],[-292,9],[-2,0],[-358,12],[-170,6],[-201,7],[-26,1],[-330,15],[-31,-1],[-151,5],[-64,-1],[-174,10],[-262,10]],[[72096,82418],[-230,13],[-61,3],[-167,9],[-22,1],[-326,22],[-85,5],[-42,3],[-140,11],[-42,3],[-22,2],[-110,6],[-55,5],[-118,11],[-204,16],[-178,10],[-37,3],[-24,2],[-65,4],[-52,4],[-160,8],[-46,1],[-121,-2],[-183,-3],[-115,-1],[-141,-1],[-28,1],[-121,0],[-70,0],[-98,2],[-40,1],[-43,-1],[-193,4]],[[68757,82560],[-25,1],[-170,3],[-285,7],[-13,0],[-57,1],[-33,1],[-34,0],[-122,2],[-241,4],[-51,1],[-23,5],[-207,0],[-33,0],[-84,1],[-117,0],[-36,0],[-133,0],[-92,-1],[-51,0],[-43,1],[-184,-4],[-1,0],[-136,-3],[-47,-1],[-230,-1],[-208,-1],[-193,0],[-342,1]],[[13171,78867],[-33,1],[-31,1],[-132,3],[-53,2],[-33,1],[-161,4],[-307,2],[-279,9],[-74,5],[-62,8],[-293,11],[-55,2],[-33,1],[-96,3],[-20,1],[-57,3],[-87,3],[-292,10],[-320,11],[-10,0],[-102,3],[-131,4],[-168,5],[-57,2],[-202,6],[-128,4],[-28,1],[-10,-329],[-3,-78],[-79,2],[-70,4],[-21,1],[-88,3],[-113,4],[-18,1],[-42,1],[-4,1],[-149,5],[-71,4],[-105,5],[-92,4],[-211,10],[-25,2],[-175,8],[-109,4],[-107,5],[-60,2],[-91,4],[-118,2],[-71,0],[-42,3],[-65,5],[-74,5],[-197,9],[-195,9],[-90,4],[-38,-1],[-103,-3],[-26,1],[-176,7],[-77,3],[-237,9],[-1,0],[-33,1],[-26,2],[-36,1],[-29,2],[-77,3],[-118,5],[-80,3],[-288,10],[-71,1],[-315,1],[-88,0],[-56,23],[-113,4],[-177,6],[-290,9],[-45,0],[-52,-1],[-192,3],[-21,0],[-24,0],[-91,2],[-359,8],[-295,9],[-16,0],[-17,0],[-32,1],[-83,2],[-208,6],[-41,1],[-63,2],[-280,10],[-170,6],[-11,0],[-40,1],[-78,3],[-350,3]],[[2509,78816],[-25,199],[-3,28],[-4,43],[-18,146],[-27,224],[-22,179],[-16,134],[-5,56],[-7,35],[-15,137],[-7,64],[0,5],[-5,38],[-7,65],[-5,40],[-35,291],[-22,202],[-7,36],[-7,66],[-14,143],[-2,15],[-6,53],[-3,34],[-7,56],[-4,28],[-4,31],[-3,33],[-7,52],[-3,29],[-4,29],[-15,128],[-16,137],[-24,201],[-46,360],[-4,33],[-32,240],[-5,54],[-14,112],[-8,67],[-23,176],[-6,53],[-4,29],[-14,123],[-2,12],[-13,138],[-4,34],[-5,49],[-3,31],[-5,42],[-29,220],[-20,205],[-14,99],[-7,68],[-4,40],[-2,30],[-7,32],[-7,55],[-7,58],[-4,32],[-3,32],[-68,548],[-7,57],[-4,33],[-4,31],[-4,35],[-5,35],[-5,46],[-5,39],[-7,47],[-5,41],[-6,45],[-7,57],[-7,51],[-5,43],[-6,53],[-1,6],[-9,68],[-7,59],[-4,34],[-6,43],[-6,49],[-12,89],[-1,12],[-2,18],[-5,47],[-6,49],[-4,36],[-7,62],[-13,109],[-18,154],[-50,412],[-17,139],[-10,79],[-44,355],[-8,68],[-7,52],[-16,134],[-22,188],[-17,140],[-22,186],[-28,204],[-4,38],[-9,75],[-13,104],[-9,75],[-17,129],[-7,60]],[[55669,81913],[0,-10],[-1,-18],[-2,-60],[0,-11],[-2,-7],[-14,-78],[-7,-96],[0,-49],[0,-27],[-1,-2],[-5,-8],[11,-119],[8,-39],[5,-26],[1,-32],[2,-38],[0,-5],[0,-4],[-17,-65],[-19,-48],[-1,-11],[-3,-21],[-18,-52],[0,-8],[-36,-123],[-2,-3],[-18,-34],[-21,-40],[-2,-5],[-45,-82],[-53,-69],[-56,-55],[-3,-3],[-5,-8],[-29,-48],[-15,-29],[-33,-84],[-4,-9],[-4,-14],[-14,-43],[-11,-42],[-2,-50],[-7,-107],[14,-62],[-3,-30],[-3,-23],[7,-11],[5,-8],[1,-73],[0,-1],[0,-69],[-5,-75],[-1,-14],[1,-15],[6,-80],[1,-9],[25,-95],[7,-30],[4,-13],[8,-26],[13,-35],[19,-49],[6,-29],[5,-28],[7,-33],[-7,-104],[-3,-57],[-4,-53],[-1,-11],[0,-7],[3,-10],[11,-45],[2,-10],[27,-41],[54,-61],[12,-14],[34,-27],[31,-15],[97,-12],[69,-76],[17,-16],[4,-5],[121,-154],[2,-4],[2,-3],[86,-159],[17,-18],[0,-51],[-3,-355],[-1,-96],[-3,-120],[-2,-66],[-3,-151],[-4,-177],[-5,-197],[-1,-43]],[[55915,77265],[-91,2],[-102,3],[-263,6],[-1,0],[-306,9],[-53,1],[-53,0],[-179,3],[-27,0],[-44,1],[-286,5],[-179,3],[-71,2],[-107,2],[-155,1],[-105,1],[-25,0],[-69,0],[-98,0],[-170,1],[-55,2],[-146,3],[-138,4],[-47,1],[-242,6],[-73,2],[-130,3],[-44,1],[-25,0],[-2,0],[-413,11],[-42,1],[-177,5],[-58,1],[-69,2],[-196,5],[-223,6],[-86,2],[-76,2],[-233,6],[-317,9],[-130,3],[-43,1],[-82,0],[-61,2],[-102,2],[-196,2],[-201,10],[-79,3],[-99,4],[-8,1],[-98,5],[-5,0],[-118,5],[-425,17],[-141,5],[-142,5],[-296,9],[-94,3],[-2,0],[-352,11],[-260,8]],[[47805,77473],[-167,5],[-115,5],[-95,3],[-47,2],[-154,4],[-218,6],[-1,0],[-152,5],[-183,5],[-319,10],[-126,3],[-174,6],[-11,0],[-131,4],[-89,3],[-156,5],[-151,5],[-28,1],[-63,2],[-127,3],[-200,8],[-51,1],[-31,1],[-72,1],[-284,6],[-67,2],[-21,0],[-78,4],[-74,3],[-51,2],[-17,1],[-22,1],[-16,1],[-4,0],[-62,1],[-20,0],[7,316],[0,8],[0,40],[1,51],[1,82],[3,226],[3,203],[1,48],[2,116],[1,65],[2,150],[3,130],[0,59],[2,111],[2,87],[3,230],[1,47],[0,3],[2,104]],[[44262,79658],[1,42],[10,555],[1,63],[0,31],[2,136],[3,159],[2,126],[6,255],[0,22],[0,20],[8,621],[0,39],[2,159],[0,51],[3,195],[1,220],[0,29],[0,4],[0,36],[1,65],[0,42],[-24,1],[-24,1],[6,180],[3,123],[4,123],[2,69],[8,248],[2,83],[4,245],[2,62],[2,97],[5,237],[2,117],[1,47],[5,234],[4,224],[4,302],[2,95]],[[33646,89000],[-1,-76],[-1,-123],[-1,-60],[0,-33],[-3,-219],[-2,-108],[-4,-372],[-3,-114],[-1,-14],[-2,-118],[29,-1],[113,-4],[-1,-200],[0,-38],[-5,-161],[-2,-50],[-1,-63],[-5,-326],[-3,-229],[-2,-132],[-5,-294],[0,-35],[-9,-468],[-1,-54],[0,-2],[-8,-107],[-3,-71],[-4,-104],[0,-9],[-1,-44],[-3,-56],[-4,-230],[-1,-60],[-2,-202],[-3,-220],[-1,-95],[-1,-66],[-9,-352],[-1,-44],[-4,-173],[-5,-169],[-1,-44],[-1,-59],[-11,-366],[-3,-135],[-14,-443],[-2,-56],[-1,-41],[-6,-185],[-7,-243],[1,-109],[0,-44],[-4,-202],[-12,-589],[-1,-31],[-2,-112],[-7,-311],[-8,-376],[-61,-1],[-3,-220],[-5,-406],[-12,-965],[-2,-210],[-5,-277],[-7,-450]],[[33512,77829],[-89,3],[-347,12],[-1,0],[-129,4],[-137,5],[-64,2],[-43,3],[-13,0],[-11,1],[-10,0],[-138,-9],[-32,1],[-1,0],[-152,4],[-54,2],[-95,2],[-4,1],[-46,1],[-74,1],[-161,4],[-228,9],[-30,2],[-28,3],[-33,1],[-121,3],[-90,2],[-45,-1],[-38,4],[-7,1],[-126,-3],[-126,5],[-35,1],[-73,3],[-126,4],[-170,5],[-48,1],[-65,1],[-28,-4],[-104,8],[-223,-3],[-151,4],[-214,3],[-64,0],[-54,-1],[-96,1],[-23,4],[-67,6],[-31,2],[-150,15],[-91,7]],[[29226,77949],[-113,4],[-125,4],[-2,0],[-242,11],[-122,5],[-111,9],[-36,0],[-178,1],[-55,1],[-46,0],[-132,1],[-67,0],[-44,0],[-186,0],[-93,0],[-171,5],[-105,0],[-54,0],[-101,1],[-175,1],[-29,0],[-3,0],[-172,1],[-150,0],[-228,0],[-110,1],[-64,0],[-186,0],[-69,0],[-102,0],[-108,0],[-195,-2],[-41,0],[-26,0],[-67,0],[-186,3],[-20,-4],[-94,-1],[-203,-1],[-26,5],[-78,3],[-25,1],[-205,5],[-309,9],[-21,6],[-3,0],[-17,0],[-234,11],[-199,6],[-61,1],[-50,3],[-226,12],[-114,7],[-117,8],[-63,4],[-81,5],[-158,10],[-185,6],[-52,0],[-48,1],[-190,4],[-77,1],[-101,5],[-122,3],[-11,0],[-156,4],[0,71],[1,159],[1,218],[1,82],[0,62],[1,65],[2,92],[1,36],[0,47]],[[44262,79658],[-167,2],[-56,1],[-81,1],[-235,3],[-63,1],[-152,2],[-132,2],[-194,2],[-25,0],[-346,5],[-38,0],[-41,1],[-2,0],[-21,0],[-47,1],[-78,2],[-48,1],[-20,0],[-26,-1],[-6,0],[-29,-1],[-26,1],[-57,0],[-47,1],[-29,0],[-163,10],[-57,1],[-94,3],[-25,0],[-31,1],[-41,1],[-62,2],[-26,0],[-23,1],[-206,-2],[-69,0],[-88,-1],[-229,4],[-195,3],[-157,0],[-136,-1],[-71,-2],[-15,0],[-128,0],[-69,0],[-4,0],[-23,0],[-48,6],[-266,11],[-94,3],[-1,-141],[-6,-282],[1,-53],[-6,-302],[-3,-168],[-3,-220],[0,-93],[-1,-39],[-2,-58],[1,-11],[1,-24],[0,-33],[-2,-79],[0,-47],[-2,-74],[-1,-68],[-3,-325],[0,-56],[-178,10],[-97,4],[-92,5],[-239,12],[-20,1],[-69,3],[-44,2],[-142,3],[-20,2],[-86,1],[-34,0],[-23,1],[-80,2],[-80,1],[-26,1],[-30,2],[-56,3],[-22,1],[-4,0],[-121,4],[-198,6],[-47,1],[-23,0],[-21,1],[-30,2],[-44,2],[-124,4],[-77,2],[-30,2],[-84,2],[-138,3],[-113,2],[-70,2],[-48,2],[-23,1],[-306,10],[-23,1],[-139,4],[-1,0],[-47,1],[-117,3],[-5,0],[-59,1],[-18,1],[-9,0],[-66,2],[-233,3],[-34,0]],[[36359,77765],[-56,1],[-133,2],[-323,8],[-46,2],[-69,2],[-46,2],[-43,1],[-48,1],[-103,3],[-123,3],[-27,0],[-132,2],[-31,1],[-136,5],[-71,2],[-308,6],[-95,2],[-289,6],[-123,3],[-1,0],[-167,4],[-126,3],[-234,4],[-38,0],[-79,1]],[[89974,69543],[-103,50],[-279,5],[-237,4],[-15,0],[-140,3],[-360,6],[-22,1],[-51,0],[-40,0],[-21,2],[-8,0],[-165,5],[-168,2],[-24,0],[-21,1],[-154,4],[-59,0],[-50,2],[-52,1],[-109,1],[-68,1],[-25,0],[-141,5],[-38,1],[-171,6],[-341,2],[-27,0]],[[87085,69645],[0,42],[-1,68],[0,111],[1,151],[1,100],[0,90],[0,268],[0,59],[1,206],[-2,165],[4,189],[1,234],[1,77],[0,50],[0,134],[0,68],[0,58],[0,2],[0,135],[1,71],[0,49],[-1,157],[-1,218],[0,156],[0,38],[-2,172],[0,41],[-1,84],[0,125],[4,296],[0,31],[0,29],[-2,59],[-4,551],[3,181],[-1,99],[0,1],[-3,412],[-1,61],[0,15],[-1,77],[5,205],[0,65],[1,201],[5,200],[1,44],[4,182],[0,13],[3,98],[0,84],[0,112],[0,1],[0,107],[0,58],[0,350],[-1,51],[-2,73],[0,177],[0,105],[-2,32],[0,47],[-2,73],[-2,68]],[[87092,77121],[-1,42],[-1,149],[-1,58],[-1,51],[0,10],[-3,143],[-1,62],[-1,106],[0,70],[-1,96],[-1,35],[0,61],[0,38],[1,57],[0,47],[0,60],[-1,43],[0,54],[1,52],[0,46],[0,163],[0,92],[0,38],[0,50],[0,28],[0,47],[0,73],[0,31],[0,66],[1,165],[0,33],[0,57],[0,150],[0,32],[-1,128],[0,50],[0,38],[0,60],[1,65],[0,46],[-1,45],[1,145],[1,68],[-1,93],[1,56],[8,228],[0,409],[0,313],[0,103],[-6,275],[-1,42],[-2,104],[2,36],[0,62],[0,65],[0,34],[0,30],[0,55],[0,137],[0,36],[-1,68],[-1,77],[-1,41],[0,52],[0,36],[-1,35],[0,36],[-1,32],[0,6],[-7,377],[1,41],[0,76],[-2,137],[-1,37],[0,176],[0,28],[-1,54],[-1,47],[0,49],[-1,31],[0,40],[0,39],[-1,36],[0,33],[-1,34],[0,36],[-1,54],[-1,43],[-1,79],[-1,59],[0,37],[-1,42],[0,41],[-1,34],[0,39],[0,44],[-2,75],[0,41],[0,37],[-1,43],[0,39],[-1,46],[-1,44],[1,43],[-1,42],[-1,43],[0,44],[-1,47],[0,55],[0,35],[-1,33],[0,57],[-1,36],[-1,36],[0,40],[0,43],[-1,41],[0,41],[-1,66],[-1,63],[0,43],[-1,42],[1,153]],[[87047,85603],[287,3],[37,0],[45,1],[27,1],[36,0],[29,0],[46,1],[29,1],[24,0],[31,0],[25,2],[65,0],[69,1],[39,0],[28,1],[9,0],[56,1],[26,0],[41,0],[11,0],[11,1],[123,2],[58,1],[43,0],[68,0],[61,1],[26,0],[44,1],[105,1],[29,1],[45,0],[35,0],[110,1],[67,0],[40,1],[23,0],[31,1],[25,1],[43,0],[22,1],[17,0],[6,0],[28,1],[21,0],[28,0],[60,0],[29,1],[88,1],[60,1],[36,1],[33,0],[44,1],[32,0],[23,0],[32,0],[23,1],[50,1],[26,0],[6,0],[21,1],[26,0],[25,1],[24,0],[47,1],[43,0],[46,1],[30,0],[40,1],[38,0],[58,1],[37,0],[48,1],[51,1],[38,0],[33,1],[26,0],[20,1],[33,-2],[14,0],[40,1],[42,0],[21,1],[5,0],[4,0],[3,0],[10,0],[23,1],[26,0],[150,4],[89,2],[272,2],[10,0],[14,0],[171,2],[38,0],[212,3],[127,1],[94,2],[48,1],[9,0],[433,7],[222,2],[268,3],[170,3],[1,0],[78,0],[9,0],[470,2],[55,-1],[27,-1],[65,-1],[1,1],[26,2],[36,-1],[21,6],[28,-5],[111,3],[160,1],[109,1],[50,1],[66,0],[60,1],[20,-1],[59,1],[54,0],[25,0],[59,0],[109,2],[23,0],[50,1],[35,1],[44,1],[4,0],[52,0],[49,-1],[43,-3],[3,0],[48,0],[28,4],[64,1],[67,1],[24,0],[32,1],[39,1],[110,1],[39,0],[47,1],[19,-4],[3,-1],[55,6],[65,1],[50,0],[77,2],[48,0],[29,1],[67,1],[32,0],[51,1],[17,0],[32,0],[63,1],[35,1],[38,0],[138,3],[31,0],[48,1],[126,1],[37,1],[42,0],[66,1],[15,0],[22,0],[26,0],[63,1],[54,1],[53,0],[50,1],[108,1],[32,1],[37,0],[54,1],[64,1],[34,1],[81,1],[46,0],[30,1],[50,0],[57,1],[212,2],[174,2],[693,21],[159,5],[114,4],[-27,-54],[-34,-69],[-104,-13],[-40,-76],[-41,-169],[-36,-187],[-14,-239],[4,-43],[7,-44],[30,-70],[69,-90],[87,-112],[27,-21],[73,-67],[20,-18],[66,-55],[17,-9],[50,-28],[85,-57],[82,-63],[61,-26],[41,-11],[64,-83],[44,-75],[2,-4],[115,-149],[116,-116],[125,-117],[51,-54],[129,-171],[50,-108],[126,-392],[-49,-270],[-33,-49],[-104,-156],[-7,-6],[-67,-51],[-159,-70],[-21,0],[-57,-1],[-80,30],[-70,40],[-66,93],[-31,43],[-101,-109],[-153,153],[-330,256],[-140,36],[-240,63],[-51,25],[-117,56],[-102,-34],[-4,-1],[-251,-257],[-50,-59],[-42,-49],[-34,-44],[-25,-52],[-37,-101],[-19,-102],[-13,-236],[4,-83],[12,-65],[42,-55],[67,-86],[277,-221],[127,-96],[98,-50],[31,-10],[107,-58],[93,-82],[39,-40],[34,-33],[25,-24],[188,-129],[35,-39],[118,-152],[-4,-175],[-10,-50],[-29,-66],[-54,-91],[-119,-94],[-208,-166],[-27,-11],[-197,-83],[-137,-12],[-332,136],[-152,-26],[-314,-118],[-265,-311],[-57,-340],[-44,-206],[-65,-96],[-94,-138],[-65,-112],[-242,-199],[-244,-44],[-237,25],[-93,-135],[-103,-147],[-256,-49],[-207,-49],[-14,48],[-85,302],[-457,142],[-65,-7],[-446,-293],[-196,-196],[-242,-176],[-99,-352],[63,-950],[172,-332],[16,-19],[68,-83],[86,-225],[282,-322],[219,-87],[257,-69],[123,29],[124,29],[40,30],[21,15],[235,360],[186,95],[40,-18],[64,-28],[82,-88],[80,-189],[14,-255],[-30,-194],[-73,-237],[-22,-70],[-4,-13],[-2,-6],[-7,-10],[-42,-42],[-36,-33],[-50,-21],[-47,13],[-11,-3],[-38,-21],[-23,-42],[-15,-7],[-112,-48],[-69,-43],[-35,-21],[-216,-155],[-42,-39],[-93,12],[-266,32],[-524,-349],[-144,-93],[-136,-146],[-81,-151],[-34,-113],[8,-91],[28,-114],[113,-294],[72,-179],[111,-201],[135,-69],[103,-67],[146,-39],[159,-19],[72,-64],[18,-100],[-37,-120],[-19,-46],[13,-22],[57,13],[9,-5],[77,-42],[19,-85],[-51,-215],[-69,-185],[-58,-53],[-40,-10],[-73,-13],[-66,-9],[-134,9],[-23,2],[-73,34],[-75,6],[-38,-12],[-60,4],[-154,85],[-166,182],[0,3],[39,169],[-18,160],[-52,103],[-381,358],[-225,147],[-155,30],[-59,-19],[-376,-125],[-199,-23],[-229,-227],[-27,-224],[-174,-597],[30,-408],[100,-345],[209,-389],[256,-242],[28,-70],[4,-85],[-157,-487],[3,-143],[-18,-141],[-67,-129],[-15,-148],[-17,-33],[-166,-118],[-74,-105],[-17,-65],[-31,-115],[-138,-173],[-66,-87],[178,-143],[9,-4],[120,-60],[-62,-102],[-196,-108],[-52,92],[-24,42],[-78,137],[-92,164],[-3,6],[-27,46],[-28,53],[149,201],[-171,232],[-71,306],[0,161],[69,359],[69,251],[1,111],[-140,221],[-159,151],[-119,36],[-217,-14],[-165,-46],[-198,-193],[-109,-229],[-95,-374],[-51,-207],[-217,-151],[-63,-47]],[[87092,77121],[-188,7],[-87,3],[-50,1],[-59,2],[-66,2],[-21,-6],[-25,4],[-22,0],[-30,2],[-213,5],[-89,0],[-63,1],[-122,-1],[-36,0],[-19,0],[-4,0],[-346,6],[-49,3],[-99,4],[-33,2],[-156,4],[-29,0],[-102,2],[-122,3],[-24,-3],[-26,-2],[-49,1],[-27,0],[-20,2],[-34,3],[-25,2],[-3,0],[-34,3],[-127,8],[-35,3],[-118,9],[-224,14],[-118,9],[-182,13],[-127,9],[-51,3],[-38,3],[-235,23],[-29,2],[-3,1],[-23,2],[-38,5],[-56,6],[-24,3],[-22,2],[-34,4],[-29,3],[-68,6],[-32,6],[-45,4],[-56,2],[-2,0],[-23,1],[-69,2],[-220,18],[-151,-5],[-26,-1],[-87,-3],[-60,-3],[-177,-4],[-37,-1],[-9,0],[-85,-3],[-80,-3],[-38,-2],[-79,-3],[-21,-2],[-109,-4],[-25,-1],[-77,-3],[-48,-2],[-67,-2],[-68,-2],[-86,-4],[-23,-1],[-69,-3],[-44,-1],[-44,-2],[-46,-1],[-27,-2],[-98,-4],[-98,-5],[-84,-4],[-96,-3],[-57,-3],[-20,-2],[-2,0],[-57,-2],[-74,-2],[-102,-2],[-85,2],[-79,1],[-27,0],[-119,1],[-26,1],[-39,0],[-22,0],[-109,3],[-35,1],[-23,6],[-57,0],[-61,0],[-21,-1],[-29,1],[-82,0],[-79,1],[-24,-1],[-2,0],[-51,0],[-24,0],[-47,0],[-27,1],[-41,0],[-23,1],[-25,-1],[-29,0],[-25,0],[-40,1],[-28,-1],[-43,0],[-50,-1],[-206,4],[-50,1],[-7,0],[-16,1],[-334,7],[-26,-1],[-182,-1],[-225,-1],[-197,-1],[-68,-1],[-21,0],[-43,4],[-121,3],[-70,2],[-181,0],[-38,1],[-69,0],[-541,-3],[-173,-1],[-211,-2],[-22,8],[-34,-1],[-326,-6],[-38,4],[-164,-1],[-11,0],[-22,3],[-25,1],[-1,0],[-38,0],[-48,1],[-90,1],[-51,2],[-25,4],[-24,-1],[-22,1],[-35,-2],[-32,0],[-36,2],[-55,0],[-43,3],[-172,1],[-37,-1],[-90,1],[-106,1],[-78,2],[-106,1],[-44,1],[-5,0],[-37,0],[-113,2],[-163,2],[-118,2],[-22,0],[-689,12],[-159,10],[-28,1],[-25,2],[-22,0],[-77,5],[-28,1],[-21,2],[-37,1],[-25,5],[-21,1],[-31,0],[-24,-1],[-21,0],[-2,0],[-31,-1],[-30,0],[-42,1],[-59,0],[-33,0],[-31,0],[-38,1],[-24,2],[-2,-1],[-19,-2],[-83,0],[-52,1],[-46,6],[-20,1],[-79,2],[-20,1],[-62,1],[-51,5],[-7,-1],[-14,0],[-44,2],[-36,-1],[-38,4],[-33,2],[-27,2]],[[72006,77369],[0,35],[5,323],[4,67],[2,179],[3,239],[1,41],[2,120],[2,210],[0,41],[1,48],[7,183],[2,45],[2,62],[7,95],[0,85],[1,103],[1,111],[-1,120],[-1,30],[-1,161],[0,29],[-1,93],[1,98],[3,117],[7,306],[1,84],[1,124],[4,209],[10,76],[0,7],[-9,98],[1,70],[6,409],[1,111],[14,479],[12,22],[-4,133],[6,286]],[[85259,85583],[56,0],[11,1],[50,1],[26,0],[16,1],[5,0],[22,-3],[52,1],[99,2],[104,1],[264,3],[36,1],[25,0],[94,2],[119,2],[24,0],[25,1],[150,2],[171,1],[79,1],[24,0],[21,1],[61,0],[31,0],[44,0],[6,0],[94,2],[79,0]],[[68757,82560],[-10,-101],[-2,-1],[-57,-53],[-41,6],[-9,-1],[-13,-3],[-19,-4],[-48,-19],[-45,-19],[-5,-5],[-2,-1],[-1,-29],[2,-2],[16,-17],[27,-30],[-4,-21],[-36,-4],[-22,39],[-3,3],[-36,39],[-23,3],[-18,3],[-3,-2],[-23,-11],[-16,-17],[-8,-21],[-2,-53],[0,-4],[1,-3],[61,-98],[15,-76],[0,-52],[-1,-41],[1,-3],[1,-12],[3,-24],[11,-26],[15,-19],[4,-3],[35,-31],[5,-6],[13,-16],[9,-12],[0,-5],[-1,-21],[-1,-24],[-8,-22],[-10,-24],[-10,-28],[-37,-41],[-38,-19],[-21,0],[-46,0],[-7,-7],[-11,-11],[-5,-5],[-3,-9],[-8,-23],[-7,-18],[-18,-56],[-5,-35],[6,-22],[18,-23],[30,-16],[21,-26],[2,-29],[-4,-4],[-9,-9],[-73,-18],[-9,-5],[-101,-67],[-1,-1],[-23,-23],[-17,-24],[-3,-3],[-10,-25],[-3,-39],[-5,-57],[-6,-16],[-1,-2],[-7,-17],[-20,-35],[-13,-13],[-59,-61],[-1,0],[-2,0],[-37,5],[-4,1],[-20,21],[-5,5],[-11,7],[-10,5],[-6,4],[-9,1],[-66,3],[-16,1],[-35,-9],[-10,-8],[-6,-5],[-1,0],[-9,-10],[0,-7],[0,-42],[0,-19],[16,-62],[5,-6],[9,-12],[4,-4],[3,-1],[21,-3],[16,-2],[40,11],[11,4],[25,-5],[6,-7],[14,-18],[27,-34],[7,-9],[46,-28],[57,-6],[3,-1],[15,-18],[-5,-22],[-16,-24],[-13,-3],[-16,1],[-18,1],[-13,1],[-10,7],[-2,1],[-29,2],[-3,-4],[-4,-3],[-12,-14],[-3,-68],[10,-43],[7,-10],[18,-25],[5,-6],[31,-13],[1,-1],[8,-3],[16,0],[39,0],[10,-1],[11,0],[2,-2],[12,-13],[10,-11],[-1,-7],[0,-8],[-1,-28],[-33,-37],[-7,-2],[-10,-2],[-41,-8],[-78,5],[-5,3],[-7,5],[-28,1],[-73,5],[-10,-2],[-21,-4],[-2,0],[-53,-25],[-77,-93],[-35,-19],[-15,2],[-10,2],[-13,2],[-17,22],[-29,59],[-16,1],[-7,-7],[-4,-5],[-5,-5],[-31,-117],[-1,-27],[0,-9],[-1,-14],[6,-14],[9,-10],[5,-6],[10,-11],[28,-1],[17,11],[2,2],[27,-1],[7,0],[70,-1],[31,-4],[10,-2],[9,-1],[7,-4],[28,-15],[2,-1],[1,-1],[16,-20],[4,-5],[3,-7],[0,-2],[-5,-54],[-1,-9],[-17,-20],[-19,-13],[-48,-12],[-51,-8],[-52,-7],[-1,0],[-4,-2],[-18,-7],[-10,-4],[-10,-8],[-8,-8],[-12,-11],[-3,-6],[-24,-46],[-17,-17],[-51,-26],[-61,-7],[-17,-13],[-18,-14],[-37,-37],[-53,6],[-18,23],[-24,26],[-33,24],[-11,0],[-21,2],[-25,-13],[-18,-20],[-14,-16],[-4,-13],[0,-1],[-5,-16],[-1,-20],[-1,-18],[0,-5],[2,-8],[15,-50],[2,-41],[-8,-16],[-23,-20],[-30,-4],[-27,-4],[-15,-6],[-4,-2],[-3,-1],[-4,-4],[-13,-13],[0,-1],[-10,-20],[-1,-11],[0,-9],[-1,-19],[8,-30],[44,-84],[23,-34],[13,-8],[37,-2],[37,3],[11,1],[6,-7],[-1,-21],[-10,-11],[-45,-22],[-82,1],[-62,11],[-23,-10],[-4,-4],[-19,-20],[-7,-14],[0,-5],[1,-18],[0,-23],[11,-16],[3,-5],[34,-50],[-5,-37],[0,-2],[-12,-10],[-10,-8],[-11,-9],[-66,4],[-108,38],[-3,0],[-32,2],[-69,-8],[-52,-6],[-24,-3],[-39,-15],[-33,-42],[-5,-50],[0,-7],[8,-25],[43,-68],[4,-6],[-5,-54],[-20,-20],[-16,-6],[-44,2],[-22,8],[-34,2],[-13,-6],[-20,-24],[0,-3],[-1,-22],[0,-1],[8,-35],[11,-31],[9,-21],[-2,-29],[0,-18],[-1,-3],[-6,-14],[-14,-13],[-25,-9],[-50,2],[-54,-18],[-1,0],[-1,-1],[-35,-40],[-29,-81],[0,-1],[-29,-29],[-15,-12],[-38,-29],[-16,-13],[-10,-24],[7,-51],[18,-19],[59,-25],[18,-15],[8,-16],[7,-13],[7,-51],[3,-72],[-2,-18],[-1,-7],[-2,-14],[-14,-28],[-1,-1],[-16,-17],[-9,-9],[-57,-40],[-5,-3],[-2,-6],[-2,-5],[-13,-27],[1,-47],[25,-80],[5,-9],[1,-2],[0,-4],[-1,-26],[-1,-3],[-6,-13],[-13,-16],[-94,-125],[-23,-21],[-21,-1],[-10,0],[-4,0],[-15,8],[-9,12],[-9,10],[-9,12],[-8,29],[1,26],[1,26],[0,1],[7,11],[8,39],[2,46],[-18,23],[-2,1],[-12,6],[-1,1],[-3,0],[-25,1],[-20,-6],[-32,-30],[-4,-11],[-2,-43],[16,-79],[-3,-54],[-7,-25],[-8,-9],[-32,-38],[-3,-4],[-48,-9],[-9,-2],[0,-1],[-7,-7],[-10,-13],[-3,-16],[-1,-9],[11,-40],[9,-13],[12,-18],[8,-13],[0,-18],[-14,-21],[-45,-33],[-16,-19],[-4,-5],[-1,-4],[-2,-8],[-1,-2],[0,-1],[-2,-59],[-1,-4],[14,-107],[3,-23],[1,-3],[16,-31],[56,-28],[42,-38],[36,-48],[16,-59],[3,-32],[1,-11],[-7,-176],[-1,-7],[0,-6],[-13,-14],[-4,-4],[-9,-9],[-41,2],[-31,16],[-19,-13],[-1,-19],[0,-3],[4,-4],[17,-22],[80,-101],[37,-20],[47,-6],[3,-1],[2,-1],[21,-23],[1,-2],[0,-1],[0,-4],[-1,-24],[-21,-42],[-3,-6],[-64,-63],[-5,-5],[-4,-21],[3,-6],[3,-9],[5,-11],[6,-6],[10,-11],[5,-6],[10,0],[11,-1],[26,-1],[52,25],[26,-1],[5,0],[30,-38],[5,-22],[1,-61],[-15,-45],[-10,-17],[-27,-44],[-7,-12],[-6,-10],[-8,-25],[1,-36],[0,-7],[0,-11],[8,-24],[1,-3],[5,-13],[8,-10],[23,-26],[5,-5],[11,-7],[8,-4],[9,-5],[18,-5],[56,-14],[6,0],[34,-16],[3,-2],[5,-4],[88,-63],[1,-2],[38,-42],[20,-68],[23,-83],[-2,-11],[-35,-23],[-32,-9],[-13,-14],[2,-18],[-38,4],[-24,3],[-32,-11],[-75,14],[-55,15],[-46,11],[-82,-56],[-26,-9],[-21,1],[-18,1],[-17,1],[-37,17],[-4,4],[-74,89],[-25,19],[-15,12],[-5,4],[-12,4],[-44,14],[-19,1],[-28,-2],[-35,-16],[-113,-70],[-5,-284],[-1,-117],[1,-120],[0,-46],[1,-205],[-1,-146],[0,-57],[0,-97],[0,-60],[-1,-54],[2,-108],[-2,-50],[0,-134],[0,-38],[-1,-112],[0,-63],[-1,-92],[-2,-349],[-2,-474],[0,-1],[-1,-34],[0,-122],[-1,-82],[-1,-124],[-1,-112],[0,-47],[0,-97],[-112,-2],[-51,1],[-6,0],[-56,1],[-17,0],[-32,1],[-30,1],[-52,1],[-30,-4],[-11,-1],[-277,6],[-51,1],[-184,4],[-84,2],[-74,2],[-57,1],[-131,4],[-172,3],[-334,7],[-34,1],[-326,7],[-92,2],[-115,3],[-63,1],[-85,1],[-27,3],[-89,3],[-52,1],[-65,-6],[-67,3],[-254,11],[-280,12],[-72,4],[-186,8],[-71,5],[-22,2],[-259,12],[-349,16]],[[61049,72273],[-60,3],[-303,14],[-37,0],[-54,3],[-178,7],[-9,0],[-203,9],[-26,1],[-41,2],[-26,3],[-3,0],[-22,1],[-30,3],[-128,4],[-62,-4],[-7,0],[-2,0],[-29,2],[-103,5],[-23,1],[-118,5],[-116,5],[-38,2],[-193,2],[-186,2],[-138,2],[-101,1],[-54,0],[-22,1],[-113,0],[-46,-2],[-47,7],[-31,-2],[-45,2],[-12,1],[-305,12],[-174,7],[-197,8],[-102,1],[-229,-4],[-233,-5],[-190,-3],[-1,0],[-35,0],[-131,6],[-35,2],[-27,1]],[[56784,72378],[3,119],[0,29],[6,274],[0,34],[6,274],[2,129],[7,361],[1,51],[4,219],[2,66],[2,150],[0,42],[1,73],[1,53],[0,7],[1,48],[3,45],[0,40],[1,56],[1,30],[1,46],[0,70],[2,98],[8,288],[4,90],[0,49],[-1,54],[-1,40],[2,197],[6,452],[1,155],[0,67],[0,1],[4,132],[2,64],[2,65],[2,40],[1,48],[1,36],[-1,128],[0,73],[-5,33],[3,49],[4,91],[2,69],[1,97],[1,48],[1,130],[-1,44],[2,115],[2,113],[-84,0],[-71,-52],[-17,-15],[-63,-52],[-30,-24],[-46,-39],[-35,-25],[-52,1],[-215,3],[-106,2],[-157,4],[-77,2]],[[72006,77369],[0,-1],[-5,-403],[-1,-180],[0,-25],[-5,-174],[0,-3],[-3,-162],[-2,-116],[0,-4],[1,-41],[0,-1],[0,-2],[-1,-36],[-1,-65],[-2,-113],[-3,-144],[-1,-63],[-2,-131],[1,-41],[0,-3],[-2,-96],[-2,-170],[-1,-140],[2,-106],[-3,-169],[0,-152],[-2,-423],[-1,-118],[-1,-154],[-1,-131],[-1,-51],[-1,-257],[0,-71],[1,-64],[-2,-288],[0,-134],[0,-2],[0,-94],[0,-277],[0,-52],[-1,-421],[-1,-137],[2,-104],[-1,-62],[-2,-119],[1,-464],[-5,-166],[-2,-210],[-1,-105],[2,-95],[0,-73],[2,-562],[-2,-195],[-2,-44],[0,-184]],[[71958,69771],[-2,-116],[-3,-339],[0,-194],[-1,-144],[-2,-482],[0,-3],[4,-206],[0,-6],[4,-210],[-2,-104],[0,-46],[1,-92],[-7,-395],[-1,-199]],[[71949,67235],[-78,2],[-21,0],[-20,-1],[-53,6],[-205,0],[-1,0],[-107,0],[-223,7],[-1,0],[-180,6],[-249,16],[-30,-1],[-53,1],[-279,6],[-216,6],[-70,-1],[-37,-1],[-241,14],[-2,0],[-240,4],[-27,1],[-84,3],[-173,-1],[-82,3],[-30,0],[-6,-1],[-29,0],[-51,0],[-30,1],[-26,0],[-78,1],[-1,0],[-119,2],[-87,1],[-72,-3],[-175,3],[-109,2],[-31,0],[-91,1],[-64,2],[-158,5],[-69,3],[-182,9],[-24,2],[-73,-2],[-53,-1],[-2,0],[-26,0],[-3,431],[-1,68],[-1,123],[-5,405],[0,4],[-1,114],[-1,242],[1,28],[-2,36],[-3,156],[-2,87],[-2,149],[-2,126],[-1,91],[-2,222],[-1,130],[-2,111],[-52,-1],[-81,-1],[-55,1],[-95,-1],[-43,0],[-110,-2],[-193,-2],[-11,0],[-364,-3],[-145,-2],[-38,0],[-157,-3],[-172,-3],[-130,-2],[-278,-5],[-21,-21],[46,-110],[4,-9],[-1,-29]],[[65767,69660],[-283,3],[-59,1],[-29,0],[-190,2],[-31,0],[-196,2],[-74,1],[-116,1],[-173,1],[-16,0],[-37,0],[-79,-1],[-26,0],[-269,1],[-7,0],[-156,0],[-29,0],[-106,2],[-25,0],[-21,0],[-20,1],[-20,0],[-47,1],[-79,1],[-71,1],[-233,3],[-237,8],[-52,1],[-301,8],[-46,1],[-1,0],[-45,7],[-273,9],[-263,8],[-75,3],[-23,0],[-86,3],[-9,0],[-275,8],[-167,5],[-163,5],[-196,5],[-170,5],[10,431],[3,197],[2,40],[8,286],[1,32],[0,142],[0,61],[0,46],[-2,54],[0,12],[1,69],[1,97],[1,78],[2,19],[10,85],[2,97],[2,94],[0,42],[-1,18],[5,192],[7,250],[4,175]],[[47805,77473],[-2,-180],[-1,-34],[-2,-160],[-2,-157],[-1,-110],[-3,-225],[-1,-152],[-3,-220],[-2,-125],[-2,-199],[-3,-259],[-1,-29],[0,-8],[0,-22],[-1,-102],[-2,-115],[-15,-193],[-7,-98],[-2,-26],[-1,-7],[-1,-41],[-1,-31],[-1,-90],[0,-39],[-1,-47],[-1,-58],[0,-68],[-2,-110],[-1,-50],[-2,-163],[-1,-83],[-4,-39],[-1,-54],[4,-33],[-1,-41],[0,-32],[-1,-86],[-1,-39],[-1,-97],[-2,-135],[0,-45],[0,-3],[-2,-123],[0,-11],[-1,-61],[0,-49],[0,-32],[-1,-14],[0,-16],[-1,-35],[-1,-44],[-2,-164],[-2,-221],[-1,-83],[-1,-30],[-1,-98],[-1,-94],[-2,-106],[-76,0],[-2,-166],[-3,-199],[-1,-45],[-2,-138],[-1,-69],[-6,-336],[0,-82],[-1,-53],[-2,-108],[-3,-202],[-4,-250],[-3,-165],[0,-6],[-1,-38],[-1,-65],[-3,-144],[0,-54],[-5,-151],[-4,-217],[-3,-211],[-2,-86],[-2,-122],[-2,-101],[-1,-72],[0,-146],[0,-2],[-1,-27],[-1,-57],[0,-71],[-1,-71],[-2,-44],[-1,-43],[-6,-120],[-1,-84],[-1,-35],[-1,-73],[-4,-225],[0,-6],[-4,-242],[-1,-41],[-2,-154],[-1,-38],[0,-10],[-2,-89],[-3,-225],[-1,-100]],[[47559,67504],[-89,4],[-267,3],[-197,-3],[-166,9],[-40,4],[-49,0],[-103,5],[-82,4],[-71,2],[-29,1],[-133,5],[-1,0],[-63,5],[-25,1],[-29,1],[-30,2],[-21,1],[-27,2],[-21,0],[-57,1],[-34,0],[-66,-2],[-128,4],[-173,7],[-179,6],[-24,1],[-46,2],[-29,1],[-85,5],[-26,1],[-45,1],[-28,0],[-46,1],[-42,2],[-24,1],[-42,1],[-48,2],[-38,1],[-30,1],[-48,2],[-25,1],[-36,0],[-23,1],[-30,1],[-30,1],[-27,0],[-103,0],[-44,5],[-25,2],[-37,0],[-42,2],[-36,1],[-3,0],[-30,3],[-35,1],[-25,1],[-92,3],[-120,5],[-84,6],[-48,-3],[-187,0],[-48,0],[-165,7],[-190,3],[-333,7],[-100,2]],[[42960,67637],[0,52],[1,30],[3,109],[7,228],[2,129],[0,3],[1,197],[0,1],[1,93],[-1,35],[1,92],[-1,65],[0,40],[2,153],[0,31],[3,125],[2,102],[5,294],[5,257],[5,59],[1,83],[1,61],[1,45],[0,40],[1,37],[0,35],[3,45],[1,42],[-19,12],[-55,1],[-27,0],[-108,4],[-53,1],[-48,-1],[-74,1],[-15,0],[-51,1],[-56,2],[-90,2],[-21,11],[-86,-9],[-4,0],[-99,4],[-110,2],[-31,1],[-114,4],[-133,7],[-22,-1],[-114,1],[-114,0],[-21,0],[-94,1],[-82,1],[-38,0],[-90,5],[-298,18],[-52,4],[-28,2],[-96,6],[-118,7],[-62,3],[-54,4],[-91,2],[-37,1],[-83,2],[-246,12],[-260,1],[-161,1],[-29,1],[-48,2],[-24,1],[-21,-1],[-34,0],[-31,-1],[-27,0],[-35,0],[-34,0],[-49,0],[-128,2],[-87,1],[-21,7],[-200,4],[-3,0],[-54,3],[-93,2],[-21,-3],[-26,3],[-29,3],[-73,-4],[-205,11],[-119,3],[-22,0],[-23,1],[-250,7],[-274,7],[-25,1],[-107,3],[-119,4],[-127,4],[-3,0],[-97,3],[-120,3],[-78,2],[-22,1],[-45,1],[-59,2],[-222,6],[-89,2],[-120,3],[-156,5],[-264,7],[-69,2],[-91,2],[-25,1],[-179,5],[-135,3]],[[35537,70342],[4,321],[2,145],[2,107],[3,261],[3,229],[1,65],[3,347],[1,188],[1,88],[1,129],[1,186],[0,34],[3,368],[183,-2],[352,-2],[188,-2],[3,217],[7,618],[1,34],[2,197],[0,52],[0,103],[1,92],[1,109],[1,156],[0,129],[2,315],[5,50],[5,70],[3,34],[1,146],[2,144],[-3,153],[2,145],[1,147],[1,64],[0,125],[1,56],[0,2],[2,103],[0,60],[8,226],[6,159],[1,47],[1,47],[1,37],[2,140],[0,38],[2,121],[3,192],[1,100],[2,91],[-1,34],[1,36],[1,30],[1,59],[1,50],[2,52],[4,181]],[[18255,67833],[-37,-19],[-49,-26],[-51,-99],[-40,-15],[-29,-4],[-50,3],[-73,11],[-64,-1],[-41,-8],[-45,-8],[-65,-35],[-25,-14],[-23,-8],[-25,-25],[-19,-20],[-23,-4],[-82,-31],[-38,-4],[-43,15],[-27,13],[-31,25],[-33,42],[-17,32],[-11,28],[-9,29],[-12,42],[-6,73],[5,40],[0,2],[-8,24],[-34,12],[-33,19],[-74,48],[-10,6],[-25,22],[-9,12],[-82,102],[-34,26],[-13,8],[-15,10],[-21,22],[-43,45],[-53,33],[-30,19],[-13,15],[-15,19],[-6,6],[-140,183],[-27,40],[-30,62],[-65,132],[-16,34],[-48,134],[-37,114],[-4,12],[-2,5],[-20,44],[-61,206],[-11,69],[-4,50],[-1,-33],[0,-29],[-1,-34],[-1,-34],[-1,-60],[-1,-28],[0,-31],[-1,-30],[-2,-97],[-1,-35],[-6,-264],[-2,-119],[-1,-34],[-4,-193],[-4,-164],[-2,-90],[0,-11],[-3,-125],[-8,-514],[-1,-24],[0,-31],[0,-31],[-1,-35],[-2,-65],[-1,-30],[-1,-37],[-1,-30],[-1,-39],[0,-31],[-1,-38],[-2,-67],[0,-43],[-2,-103],[-2,-126],[0,-28],[0,-4],[-8,-499],[-1,-56],[-2,-103],[-189,14],[-132,9],[-44,3],[-64,4],[-26,2],[-155,11],[-71,4],[-106,8],[-9,0],[-117,9],[-46,3],[-23,2],[-95,5],[-198,18],[-39,0],[-26,2],[-40,3],[-53,5],[-23,2],[-24,1],[-35,9],[-303,27],[-124,11],[-25,2],[-149,13],[-36,4],[-4,-172],[-3,-103],[-1,-58],[0,-13],[-1,-23],[-6,-283],[-3,-137],[-3,-122],[-1,-80],[-1,-45],[-1,-46],[-5,-230],[-2,-97],[-1,-66],[0,-4],[-7,-258],[-5,-236],[-13,-209],[-1,-25],[-1,-13],[7,-29],[1,-31],[-1,-30],[-2,-57],[-6,-103],[-2,-50],[0,-44],[-127,2],[-33,1],[-90,3],[-25,2],[-5,1],[-70,1],[-3,0],[-33,1],[-228,3],[-61,1],[-22,0],[-65,1],[-23,0],[-45,1],[-54,1],[-163,2],[-43,1],[-65,1],[-159,3],[-1,0],[-43,0],[-64,5],[-22,3],[-121,4],[-44,7],[-22,1],[-113,4],[-251,-1],[-97,1],[-82,0],[0,-52],[-1,-117],[-1,-49],[-1,-156],[0,-41],[0,-34],[-2,-47]],[[11851,63215],[-50,4],[-310,13],[-6,-71],[-4,-55],[-22,-291],[-152,-7],[-42,2],[-23,1],[-121,5],[7,230],[3,100],[2,93],[-358,9],[-15,27],[2,71],[0,2],[9,355],[2,63],[2,71],[3,99],[7,220],[1,64],[1,32],[3,106],[1,52],[4,164],[1,34],[3,178],[2,102],[1,54],[2,58],[2,96],[2,151],[2,65],[1,59],[12,34],[0,29],[0,43],[1,43],[3,31],[0,2],[0,51],[1,40],[2,42],[1,40],[-6,40],[-4,43],[6,46],[6,33],[0,39],[1,357],[0,1],[-9,5],[-11,5],[0,1],[1,55],[3,176],[4,75],[0,45],[1,8],[1,43],[3,109],[0,13],[6,188],[7,254],[4,117],[3,125],[4,120],[1,62],[2,143],[2,60],[0,33],[1,38],[3,102],[2,124],[2,58],[2,126],[2,69],[3,138],[20,326],[5,151],[4,150],[2,63],[1,61],[6,196],[0,4],[5,184],[1,43],[2,29],[1,28],[1,28]],[[10919,69840],[180,81],[28,23],[36,29],[65,40],[8,8],[136,80],[70,70],[76,37],[100,12],[47,-1],[81,-2],[91,42],[46,21],[-75,54],[-3,3],[-16,19],[-18,7],[-2,0],[-64,2],[-20,11],[-60,34],[-19,20],[-19,21],[-6,7],[-92,69],[-31,37],[-3,3],[-40,26],[-4,3],[-24,12],[-20,6],[-45,14],[-28,36],[-1,36],[-1,29],[29,35],[25,6],[6,0],[25,-4],[76,38],[120,61],[2,1],[11,6],[16,18],[32,67],[1,25],[-9,17],[-5,10],[-52,17],[-15,4],[-43,19],[-50,59],[-14,18],[-21,65],[0,12],[0,6],[37,41],[23,27],[25,27],[14,17],[48,38],[36,18],[5,3],[14,2],[44,5],[29,18],[36,48],[45,59],[9,7],[23,48],[24,50],[1,1],[-19,85],[-9,41],[-1,3],[2,36],[-32,147],[-11,40],[-37,72],[-1,1],[-19,33],[-8,13],[-11,28],[-3,16],[-3,25],[-1,3],[-6,38],[-4,27],[-8,14],[-6,7],[-13,6],[-28,5],[-10,5],[-7,7],[-1,4],[-4,85],[12,213],[1,65],[0,6],[6,11],[7,9],[12,5],[19,-1],[24,-7],[1,0],[16,3],[5,3],[8,11],[9,22],[3,31],[0,54],[-4,25],[-2,11],[-4,12],[-4,13],[0,2],[-2,9],[0,13],[2,9],[0,2],[1,0],[4,14],[7,6],[11,5],[66,20],[2,0],[28,10],[14,6],[15,8],[16,10],[52,33],[7,4],[1,1],[8,6],[11,12],[2,1],[7,387],[2,122],[-43,2],[-43,2],[-38,2],[-62,1],[-37,1],[-60,3],[-145,5],[-265,10],[-107,3],[-64,2],[-33,1],[-136,4],[-33,1],[-2,51],[-1,47],[2,30],[1,51],[6,129],[-1,32],[-2,63],[4,173],[7,241],[-1,120],[6,140],[5,342],[0,40],[4,146],[1,51],[2,86],[0,42],[3,85],[11,477],[1,39],[3,31],[3,65],[307,-9],[40,0],[30,0],[334,-5],[74,0],[276,-7],[47,-1],[365,-8],[322,-11],[12,511],[10,408],[4,110],[4,208],[360,-18],[3,182],[4,267],[6,372],[332,-12],[233,-9],[369,-13],[125,-4],[2,116],[3,235],[2,68],[330,-9],[41,-1],[0,48],[0,96],[7,223],[2,43],[-76,2],[-52,0],[-66,2],[-180,6]],[[18538,79088],[-6,-285],[-5,-251],[-3,-165],[-2,-106],[-2,-66],[-3,-110],[-1,-45],[-5,-190],[-3,-110],[-8,-313],[-1,-41],[-1,-39],[-3,-113],[-1,-56],[-5,-195],[-4,-137],[-2,-86],[-10,-289],[-1,-129],[0,-1],[-1,-96],[-5,-193],[-7,-233],[-2,-76],[-1,-63],[1,-54],[0,-117],[-5,-114],[-1,-72],[-1,-37],[-1,-66],[-2,-33],[-4,-64],[1,-42],[-1,-29],[-5,-156],[-1,-81],[0,-56],[-1,-44],[-2,-65],[-2,-59],[-1,-41],[-7,-304],[-2,-56],[-4,-29],[-2,-167],[-5,-356],[-1,-4],[-4,-187],[-1,-35],[-3,-69],[0,-40],[-1,-40],[-7,-207],[-3,-99],[-3,-102],[-6,-172],[-3,-65],[-3,-38],[-3,-125],[-5,-202],[0,-73],[-3,-92],[-2,-50],[-1,-31],[0,-28],[-1,-4],[-4,-130],[-2,-81],[-7,-335],[-1,-62],[-1,-47],[-1,-30],[-5,-101],[-9,-277],[0,-38],[-2,-38],[-2,-65],[-3,-133],[-6,-285],[-1,-32],[-1,-32],[-1,-47],[-1,-48],[-5,-121],[0,-33],[-2,-64],[-1,-38],[-1,-41],[-1,-37],[1,-29],[-3,-115],[0,-11],[-1,-73],[-4,-117],[-3,-94],[-1,-37],[-1,-33],[0,-41],[-3,-96],[-1,-59],[0,-44],[-1,-48],[-2,-65],[-1,-50],[-1,-64],[-1,-42],[-3,-66],[0,-12],[-1,-35],[-9,-364],[-2,-99],[-6,-180],[-4,-67],[0,-34],[-1,-88],[0,-7],[-1,-37],[0,-23],[0,-17]],[[29226,77949],[-2,-54],[-2,-98],[-1,-70],[-4,-155],[-3,-103],[0,-68],[0,-35],[0,-36],[0,-2],[-1,-125],[-3,-137],[-1,-49],[-1,-97],[3,-184],[-4,-276],[-2,-217],[-1,-62],[-1,-93],[1,-38],[2,-95],[-3,-96],[-7,-114],[-2,-33],[-5,-58],[-3,-97],[-3,-70],[-4,-86],[-3,-106],[-4,-92],[-3,-110],[-3,-114],[-1,-249],[-1,-108],[0,-102],[-1,-79],[-1,-25],[0,-36],[-1,-37],[0,-36],[-2,-110],[-210,12],[-148,6],[-128,4],[-94,4],[-22,1],[-29,0],[-182,4],[-159,3],[-101,1],[-10,-319],[-2,-148],[-3,-200],[-1,-37],[-1,-177],[-2,-54],[-5,-149],[-1,-35],[-3,-50],[11,-72],[0,-126],[-2,-104],[0,-76],[0,-65],[0,-66],[0,-251],[-6,-298],[0,-51],[0,-1],[-1,-162],[-11,-354],[-1,-43],[-2,-47],[-4,-158],[-1,-128],[-1,-142],[-2,-335],[-2,-80],[-88,2],[-32,1],[-261,9],[-32,2],[-37,0],[-94,7],[-75,0],[-24,-2],[-149,2],[-302,13],[-167,2],[-42,0],[-150,2],[-1,-43],[-2,-46],[-3,-72],[-5,-205],[-1,-130],[-2,-138],[-2,-113],[-2,-111],[0,-10],[-1,-90],[-1,-83],[-2,-107],[-1,-66],[0,-34],[-2,-143],[-3,-170],[-4,-213],[0,-35],[-2,-87],[-1,-31],[-1,-164],[-2,-188],[-1,-44],[-2,-170],[-1,-154],[-1,-67],[0,-95],[0,-71],[0,-57],[-1,-78],[-1,-40],[-2,-48],[-2,-48],[-4,-82],[1,-52],[-1,-40],[-2,-126],[-1,-113],[-2,-187],[-1,-55],[0,-2],[0,-58],[-1,-41],[-1,-70],[0,-15],[-1,-38],[0,-28],[0,-19]],[[26521,66465],[-70,24],[-166,56],[-105,74],[-42,27],[-168,110],[-18,14],[-149,48],[-35,5],[-40,0],[-56,-1],[-52,-52],[-1,0],[-46,-30],[-24,-9],[-21,-8],[-72,-12],[-73,-72],[0,-1],[-2,0],[-8,-3],[-22,-14],[-69,-1],[-37,-6],[-35,-13],[-25,-10],[-180,-44],[-71,-2],[-69,10],[-29,6],[-75,17],[-8,2],[-201,92],[-34,22],[-118,144],[2,76],[3,142],[18,89],[3,121],[2,76],[10,60],[-5,172],[-276,334],[-36,80],[-14,54],[-23,105],[-22,122],[-8,69],[4,7],[-71,85],[-54,65],[-42,87],[4,169],[-6,150],[-14,183],[-39,59],[-113,114],[-50,23],[-169,5],[-56,-9],[-117,-28],[-164,-85],[-61,-37],[-6,-6],[-6,-5],[-8,-9],[-50,-61],[-1,-15],[0,-17],[-24,-67],[-61,-81],[-6,-10],[-20,-32],[-10,-28],[-115,-125],[-14,-18],[-21,-28],[-46,-59],[-22,-25],[-92,-54],[-105,-44],[-22,-2],[-41,-5],[-15,-1],[-60,22],[-29,11],[-15,30],[-47,116],[-54,77],[-38,63],[-35,47],[-73,37],[-59,10],[-109,3],[-13,-4],[-41,-42],[-9,-10],[-43,-44],[-8,-18],[-40,-45],[-128,-122],[-38,-31],[-32,-13],[-81,-26],[-124,-50],[-57,-60],[-105,-79],[-51,-34],[-44,-13],[-78,-1],[-22,-11],[-120,-60],[-48,-28],[-32,-27],[-91,-34],[-47,-9],[-66,-12],[-12,0],[-82,2],[-47,-5],[-1,-2],[-50,-54],[-63,-23],[-29,-3],[-40,15],[-69,2],[-59,-16],[-116,3],[-59,9],[-25,15],[-70,70],[-118,29],[-60,5],[-31,19],[-102,49],[-8,37],[-36,19],[-34,37],[-48,75],[-67,110],[-50,79],[-37,66],[-22,38],[-28,24],[-42,24],[-47,14],[-70,-15],[-44,-27],[-44,-51],[-25,-55],[-12,-111],[2,-71],[-7,-49],[-19,-51],[-28,-59],[-28,-90],[-42,-77],[-57,-67],[-38,-32],[-59,-41],[-44,-33],[-24,-10],[-60,-20],[-54,-13],[-57,-5],[-56,8],[-27,0],[-52,-6],[-4,-1],[-28,-6]],[[10919,69840],[-69,-31],[-30,-9],[-83,-25],[-94,-5],[-9,2],[-47,32],[-55,23],[-187,61],[-34,4],[-28,12],[-60,1],[-56,19],[-40,37],[-43,26],[-45,1],[-3,0],[-62,2],[-19,-11],[-41,-2],[-6,0],[-18,4],[-2,2],[-38,45],[-81,34],[-34,40],[-90,2],[-83,-59],[-60,-52],[-127,-79],[-9,0],[-29,-25],[-41,-45],[-35,-57],[-33,-99],[-51,-56],[2,-79],[-4,-34],[4,-31],[8,-28],[12,-39],[10,-27],[14,-40],[13,-27],[22,-35],[16,-25],[21,-29],[21,-25],[23,-30],[33,-33],[21,-24],[22,-18],[35,-35],[29,-23],[30,-26],[36,-35],[60,-83],[93,-263],[9,-15],[41,-147],[3,-15],[0,-175],[-11,-89],[-7,-29],[-16,-28],[-13,-25],[-60,-84],[-58,-63],[-28,-7],[-66,-27],[-22,-21],[-79,6],[-53,4],[-72,-5],[-190,4],[-29,-3],[-11,7],[-30,24],[-6,4],[-13,10],[-26,22],[-30,23],[-26,24],[-17,16],[-24,20],[-21,17],[-19,18],[-22,23],[-30,25],[-32,20],[-22,7],[-20,8],[-23,6],[-24,3],[-23,2],[-24,-7],[-23,-17],[-26,-27],[-28,-32],[-27,-38],[-14,-21],[-13,-30],[-15,-41],[-11,-40],[-5,-36],[-6,-48],[-5,-44],[9,-36],[3,-30],[-3,-32],[-2,-38],[-6,-36],[-9,-45],[-15,-41],[-14,-26],[-9,-17],[-8,-14],[-14,-28],[-25,-36],[-18,-21],[-11,-15],[-14,-11],[-88,-55],[-92,-30],[-81,-13],[-126,-62],[-41,-13],[-137,6],[-56,19],[-25,19],[-59,23],[-150,3],[-84,-13],[-92,-30],[-33,-30],[-3,0],[-22,-4],[-27,10],[-8,3],[-23,9],[-24,6],[-50,14],[-23,10],[-22,9],[-30,21],[-37,24],[-30,17],[-113,50],[-28,7],[-32,-1],[-36,-6],[-47,-11],[-25,-19],[-28,-27],[-18,-28],[-16,-29],[-33,-43],[-8,-8],[-20,-23],[-19,-17],[-18,-19],[-16,-37],[-42,-15],[-23,13],[-80,44],[-17,23],[-28,13],[-24,13],[-38,18],[-31,11],[-28,9],[-64,13],[-21,7],[-19,9],[-21,2],[-16,17],[-56,20],[-21,32],[-11,25],[-21,91],[-9,44],[-8,35],[-4,17],[-3,14],[-34,140],[-104,67],[-29,19],[-37,20],[-38,21],[-11,6],[-39,21],[-52,52],[-42,97],[-2,13],[-10,45],[-11,56],[-7,32],[-3,14],[-3,18],[-5,37],[-4,37],[-3,29],[-6,54],[0,30],[11,31],[33,86],[16,45],[41,109],[1,38],[-8,31],[-6,57],[-10,83],[-8,27],[-3,67],[-28,47],[-2,43],[-18,40],[-45,55],[-12,16],[-23,27],[-65,70],[-110,103],[-7,6],[-40,23],[-13,15],[-21,28],[-50,26],[-3,2],[-15,9],[-56,44],[-67,77],[-23,10],[-2,1],[-11,13],[-75,92],[-43,62],[-15,33],[-80,98],[-22,25],[-103,38],[-77,2],[-37,-18],[-21,-10],[-24,-10],[-53,-12],[-34,1],[-41,9],[-28,11],[-13,-2],[9,-56],[2,-10],[-16,-18],[-35,-45],[-13,-23],[-12,-23],[-12,-27],[-13,-36],[4,-49],[-26,-51],[-22,-36],[-44,-41],[-9,-43],[7,-43],[-9,-36],[-16,-29],[-24,3],[-21,2],[-48,23],[-25,4],[-10,2],[-16,-28],[-24,-99],[9,-43],[8,-50],[9,-58],[0,-3],[2,-43],[-6,-222],[-7,-50],[-53,-192],[-80,-160]],[[3749,68459],[-4,29],[-31,199],[-51,414],[-3,29],[-50,392],[-30,198],[-16,182],[-1,4],[-8,68],[-2,29],[-1,12],[-5,37],[-12,27],[-113,914],[-6,40],[-20,175],[-13,100],[-1,8],[-5,31],[-3,58],[-5,51],[-1,12],[-19,167],[-10,86],[-5,42],[-7,64],[-22,193],[-17,148],[-5,47],[-34,297],[-5,42],[-5,43],[-12,105],[-14,124],[-38,329],[-4,39],[-37,325],[-17,171],[-8,77],[-4,29],[-12,103],[-7,47],[-9,77],[-8,69],[-24,206],[-13,120],[-5,37],[-5,47],[-1,10],[-16,135],[-40,334],[-14,111],[-6,56],[-5,51],[-8,76],[-11,91],[-6,60],[-16,118],[-26,216],[-27,225],[-12,101],[-22,178],[-5,41],[-4,33],[-5,45],[-19,160],[-19,159],[-11,91],[-7,56],[-6,48],[-13,104],[-8,66],[-26,198],[-7,54],[-52,458],[-7,74],[-3,44],[-12,65],[-4,40],[-23,189],[-26,220],[-4,38],[-13,134],[-15,119],[-9,77],[-5,39]],[[35537,70342],[-3,-233],[-2,-104],[-2,-152],[-7,-505],[-3,-200],[-1,-62],[-1,-39],[-1,-121],[-2,-116],[0,-9],[-1,-100],[-2,-112],[0,-102],[-1,-78],[-8,-544],[-1,-36],[-2,-100],[-3,-352],[-1,-31],[0,-37],[-2,-224],[0,-6],[-1,-44],[-1,-88],[-1,-88],[-1,-152],[0,-31],[-1,-20],[0,-32],[-1,-79],[-1,-129],[-2,-174],[-1,-165],[-1,-44],[0,-4],[-1,-136],[-1,-39],[0,-31],[-1,-45],[-1,-151],[-1,-112],[-2,-112],[0,-47],[-1,-85],[-1,-86],[0,-42],[-1,-73],[-2,-56],[0,-41],[0,-16],[-2,-196],[-2,-160],[1,-54],[-5,-119],[0,-38],[1,-108],[-3,-50],[3,-34],[1,-286],[0,-20],[-1,-17],[-2,-152],[0,-6],[0,-102],[-2,-219],[-3,-99],[-1,-39],[0,-62],[-1,-327],[-1,-93],[0,-102],[2,-395],[-5,-187],[0,-5],[-2,-46],[-131,-32],[-200,-10],[-37,-9],[-104,-7],[-167,-1],[-79,-1],[-109,0]],[[34622,61981],[-192,17],[-101,9],[-57,52],[-40,20],[-81,28],[-56,-2],[-29,9],[-39,12],[-5,1],[-132,18],[-87,3],[-191,-28],[-37,-10],[-48,-27],[-75,-80],[-71,-18],[-6,-2],[-70,-24],[-35,-20],[-34,1],[-37,27],[-15,18],[-159,6],[-32,-1],[-121,-4],[-50,-15],[-47,-14],[-163,-37],[-66,-12],[-16,1],[-26,1],[-11,0],[-41,-9],[-154,-52],[-132,-45],[-76,-33],[-79,-33],[-9,-4],[-10,-43],[-4,-19],[-1,-10],[0,-9],[-23,-28],[-17,-13],[-30,-21],[-4,-22],[0,-14],[4,-190],[10,-194],[21,-151],[6,-8],[3,-3],[1,-2],[5,-20],[8,-54],[2,-39],[-1,-10],[-3,-33],[-1,-18],[-17,-53],[-17,-28],[-17,-20],[-57,-69],[-1,0],[-24,-29],[-86,-72],[-77,-51],[-82,-37],[-100,-21],[-96,3],[-32,2],[-64,4],[-38,3],[-87,24],[-79,54],[-25,25],[-20,14],[-18,19],[-25,15],[-43,32],[-23,13],[-25,16],[-23,18],[-30,22],[-37,31],[-41,45],[-39,59],[-34,67],[-18,36],[-12,39],[-8,30],[-9,48],[6,98],[11,69],[41,79],[22,36],[27,43],[16,33],[15,30],[18,32],[9,30],[8,54],[4,46],[-2,33],[-3,62],[0,33],[9,32],[37,46],[5,6],[34,33],[4,5],[14,19],[10,13],[15,21],[28,67],[6,31],[5,32],[-5,55],[-8,31],[-9,31],[-10,28],[-20,34],[-22,30],[-23,30],[-22,17],[-22,10],[-29,7],[-26,-8],[-39,-23],[-20,-17],[-34,-38],[-24,-36],[-43,-65],[-20,-24],[-9,-10],[-21,-23],[-20,-16],[-20,-28],[-53,-13],[-135,-20],[-36,-4],[-31,-4],[-2,0],[-106,7],[-98,43],[-19,11],[-52,45],[-45,55],[-20,31],[-38,59],[-2,2],[-1,1],[-16,28],[-43,77],[1,7],[-1,2],[-5,16],[-44,98],[-6,11],[-18,33],[-17,76],[-8,39],[-10,94],[-2,179],[-16,101],[-14,50],[-38,95],[-44,105],[-74,146],[-18,47],[-39,96],[-43,104],[-38,91],[-74,153],[-33,47],[-223,268],[-1,1],[-40,48],[1,15],[-242,301],[-43,41],[-160,195],[-71,49],[-11,7],[-37,2],[-34,-3],[-69,-8],[-39,-2],[-20,4],[-96,10],[-140,5],[-114,4],[-28,7],[-95,26],[-42,13],[-38,12],[-87,20],[-68,26],[-44,36],[-32,42],[-12,29],[-22,71],[-15,22],[-5,41],[6,48],[2,15],[3,27],[4,39],[0,17],[-1,17],[1,31],[-11,33],[-1,53],[-4,31],[-12,52],[-11,27],[-66,100],[-35,44],[-81,94],[-17,17],[-21,45],[-27,28],[-157,133],[-28,17],[-34,29],[-65,52]],[[26937,66179],[-27,15],[-41,2],[-22,7],[-60,53],[-63,55],[-79,70],[-28,24],[-20,13],[-38,24],[-38,23]],[[56784,72378],[0,-38],[-1,-11],[-1,-51],[-1,-47],[-1,-30],[0,-16],[-4,-213],[-3,-142],[0,-3],[-4,-241],[-4,-181],[3,-43],[-2,-82],[-2,-135],[-1,-58],[-2,-117],[-4,-223],[-5,-298],[-2,-72],[-1,-60],[-11,-185],[-43,-1],[-6,0],[-2,0],[-35,-3],[-11,-4],[-26,-14],[0,-1],[-30,-18],[-13,-12],[-20,-14],[-18,-4],[-24,-4],[-79,42],[-6,2],[-6,0],[-15,-4],[-17,-10],[-16,-14],[-9,-12],[-23,-51],[-1,-2],[-7,-10],[-10,-9],[-1,-1],[-2,-1],[-20,-11],[-19,-6],[-24,-2],[-15,6],[-24,13],[-8,6],[-17,17],[-117,86],[-4,3],[-10,-12],[0,-1],[-1,0],[-12,-24],[-8,-21],[-10,-38],[-5,-17],[-5,-15],[-1,-1],[-19,-39],[-6,-11],[-5,-8],[-3,-7],[-2,-6],[-10,-26],[-10,-55],[-13,-41],[-6,-43],[-21,-18],[-44,-32],[-53,-32],[-28,-19],[-40,-9],[-6,-1],[-22,-7],[-75,-27],[-5,-161],[-9,-322],[-1,-19],[0,-47],[-2,-198],[-2,-42],[-1,-39],[1,-54],[-1,-102],[-9,-529],[-1,-74],[-1,-19],[-2,-154],[-4,-168],[0,-240],[0,-23],[0,-50],[-81,5],[-15,1],[-71,6],[-41,0],[-182,-1],[-76,2],[-563,10],[-133,2],[-101,3],[-65,1],[-59,1],[-262,4],[-66,1],[-33,1],[-37,1],[-145,0],[-21,0],[-136,0],[-135,1],[-70,0],[-73,1],[-110,0],[-35,0],[-68,0],[-73,0],[-191,-1],[-61,0],[-77,0],[-142,0],[-36,0],[-178,8],[-35,4],[-24,3],[-86,10],[-40,2],[-24,1],[-83,1],[-69,2],[-98,4],[-44,2],[-87,4],[-36,0],[-95,4],[-166,7],[-92,3],[-127,5],[-85,4],[-42,1],[-158,6],[-80,3],[-178,6],[-105,4],[-128,5]],[[50400,67475],[-228,-20],[-39,0],[-8,0],[-33,0],[-57,0],[-145,3],[-213,3],[-99,2],[-77,1],[-140,2],[-213,4],[-65,1],[-102,1],[-206,2],[-75,-1],[-47,1],[-2,0],[-41,1],[-26,-2],[-88,0],[-246,-1],[-127,6],[-72,2],[-39,1],[0,1],[-51,3],[-53,2],[-253,12],[-44,2],[-52,3]],[[87085,69645],[-66,1],[-177,2],[-59,1],[-11,1],[-60,0],[-9,1],[-251,4],[-327,5],[-122,2],[-171,3],[-181,6],[-1,0],[-26,0],[-140,3],[-108,2],[-22,2],[-39,-4],[-180,7],[-29,1],[-73,2],[-31,0],[-55,2],[-57,1],[-21,1],[-1,0],[-79,4],[-55,2],[-185,4],[-15,1],[-67,2],[-52,3],[-35,-1],[-109,3],[-30,0],[-41,1],[-355,8],[-141,4],[-220,4],[-21,1],[-258,5],[-29,1],[-71,1],[-81,-2],[-55,4],[-82,2],[-51,0],[-19,0],[-12,-1],[-21,2],[-29,-1]],[[82755,69735],[-140,0],[-23,1],[-23,0],[-119,1],[-61,0],[-53,-1],[-36,0],[-95,2],[-175,1],[-189,2],[-171,0],[-113,0],[-70,-1],[-166,0],[-368,-3],[-74,-1],[-73,-1],[-233,-2],[1,47],[2,157],[-34,-1],[-6,1],[-15,0],[-214,4],[-21,0],[-120,2],[-20,1],[-24,0],[-5,0],[-23,1],[-241,5],[-261,3],[-97,2],[-82,1],[-91,0],[-41,-2],[-4,0],[-12,2],[-22,2],[-4,1],[-26,-3],[-35,1],[-21,-1],[-39,-1],[-26,1],[-82,1],[-141,2],[-93,1],[-45,0],[-74,2],[-165,1],[-34,1],[-1,-113],[-188,0],[-75,0],[-68,1],[-28,0],[-129,3],[-50,1],[-36,1],[-1,0],[-48,0],[-60,0],[-32,-3],[-69,2],[-91,2],[-57,-2],[-61,0],[-25,0],[-41,-3],[-267,1],[-100,-2],[-89,-1],[-92,1],[-55,1],[-504,-2],[-57,-3],[-33,-2],[-158,-9],[-111,-6],[-543,-31],[-60,-1],[-69,-5],[-42,-1],[-349,-16],[-140,-7],[-29,-1],[-58,-3],[-133,-7],[-188,-11],[-1,0],[-188,-8],[-169,3],[-136,4],[-38,0],[-180,4],[-186,4],[-32,0],[-141,1],[-228,2],[-53,1],[-162,3],[-60,-1],[-212,4],[-85,0],[-78,-2],[-135,-1],[-56,0],[-123,8],[-36,0],[-64,1]],[[65767,69660],[-1,-25],[-21,-45],[-6,-7],[-76,-85],[-4,-4],[-71,-65],[-10,-9],[-8,-13],[-4,-6],[-5,-9],[0,-10],[1,-30],[0,-6],[3,-4],[12,-13],[12,-13],[19,-9],[18,-3],[51,-8],[74,-13],[12,-2],[15,-8],[21,-26],[3,-15],[-1,-1],[-4,-49],[-2,-21],[-37,-202],[-3,-14],[0,-4],[-15,-39],[-33,-59],[-21,-21],[-22,-23],[-35,-19],[-53,-1],[-24,18],[-7,5],[-18,26],[-62,86],[-22,66],[-10,119],[3,74],[0,1],[23,106],[0,5],[2,48],[1,11],[-11,37],[-10,12],[-8,10],[-7,4],[-5,4],[-12,1],[-16,1],[-19,1],[-29,-24],[-10,-17],[-1,-6],[-5,-51],[-11,-43],[-31,-77],[-6,-5],[-4,-5],[-1,-11],[-5,-57],[3,-33],[1,-6],[43,-106],[22,-40],[1,-1],[0,-1],[14,-43],[3,-7],[-1,-10],[-1,-35],[0,-2],[-12,-42],[-12,-19],[-6,-10],[-12,-20],[-3,-3],[-49,-51],[-81,-56],[-64,-25],[-4,-3],[-34,-20],[-88,-85],[-46,-44],[-7,-5],[-60,-38],[-76,-21],[-22,-3],[-22,-3],[-32,-4],[-23,-20],[-6,-13],[-4,-8],[-1,-32],[8,-22],[19,-21],[14,-17],[71,-50],[38,-28],[9,-11],[15,-18],[122,-155],[37,-46],[1,-2],[11,-36],[0,-7],[0,-10],[-1,-19],[-7,-21],[-7,-8],[-16,-20],[-41,-12],[-50,3],[-34,14],[-6,3],[-31,19],[-18,24],[-21,28],[-11,16],[-3,4],[-44,84],[-8,11],[-9,11],[-9,12],[-66,73],[-18,21],[-18,12],[-35,2],[-13,-3],[-15,-3],[-45,-19],[-9,-8],[-52,-49],[-1,-1],[-39,-54],[-42,-44],[-1,-1],[-7,-3],[-67,-32],[-6,-3],[-6,0],[-31,-18],[-1,0],[-13,-8],[-26,-27],[-14,-28],[-6,-79],[14,-40],[7,-8],[32,-37],[36,-16],[28,-5],[113,-4],[14,0],[5,0],[5,-3],[28,-17],[31,-46],[2,-2],[1,-4],[6,-25],[3,-11],[0,-12],[-2,-45],[-11,-36],[-33,-37],[-6,-3],[-7,-4],[-10,2],[-31,4],[-5,0],[-43,21],[-21,15],[-16,21],[-39,53],[-22,31],[-1,1],[-11,10],[-25,24],[-83,82],[-7,6],[-42,33],[-37,20],[-42,2],[-1,0],[-10,-5],[-22,-11],[-36,-34],[-18,-42],[-1,-40],[-1,-6],[22,-47],[11,-22],[2,-5],[2,-2],[38,-45],[5,-5],[6,-4],[21,-12],[43,-13],[75,-8],[20,-5],[13,-4],[20,-5],[25,-35],[4,-6],[6,-25],[-1,-16],[-1,-30],[-1,-8],[-1,-3],[-10,-32],[-30,-52],[-57,-59],[-15,-16],[-18,-10],[-77,-41],[-1,-1],[-4,-1],[-37,-6],[-6,-1],[-39,2],[-45,3],[-6,-2],[-32,-7],[-20,-10],[-26,-27],[-10,-24],[1,-56],[0,-2],[11,-36],[25,-59],[7,-9],[32,-40],[34,-16],[28,-5],[109,1],[25,-12],[57,-46],[4,-5],[35,-44],[20,-37],[8,-29],[-1,-84],[0,-20],[-49,-208],[-12,-43],[-30,-55],[-20,-20],[-16,-15],[-75,-74],[-4,-25],[5,-22],[18,-18],[56,-4],[16,0],[35,3],[12,1],[7,-9],[8,-10],[-4,-33],[-1,-2],[-6,-7],[-5,-5],[-31,-32],[-55,-33],[-15,-6],[-11,-4],[-61,-24],[-2,-1],[-1,-1],[-23,-24],[-2,-2],[-7,-17],[-1,-14],[-5,-61],[2,-41],[1,-24],[10,-61],[6,-14],[20,-52],[41,-49],[18,-10],[10,-6],[40,-9],[3,0],[37,0],[13,0],[26,13],[15,14],[38,34],[37,33],[28,26],[5,4],[49,52],[32,77],[4,20],[4,22],[10,21],[1,1],[12,10],[6,6],[2,0],[36,-6],[10,-16],[7,-13],[0,-2],[0,-60],[-1,-35],[-8,-50],[-3,-64],[0,-7],[1,-5],[4,-13],[30,-38],[8,-27],[-4,-225],[0,-10],[-2,-205],[0,-2],[-1,-42],[-1,-86],[-1,-84],[-2,-148],[106,-4],[57,0],[60,-25],[0,-3],[-1,-29],[7,-43],[12,-26],[4,-8],[31,-54],[23,-42],[71,-93],[13,-11],[38,-31],[40,-13],[53,-3],[21,4],[8,1],[31,16],[10,11],[26,29],[14,15],[2,5],[17,31],[1,2],[0,2],[7,27],[4,90],[1,10],[-2,11],[-5,50],[-6,15],[1,89],[17,28],[19,20],[23,10],[8,-1],[29,-1],[2,-2],[26,-14],[30,-39],[2,-2],[10,-24],[1,-2],[3,-7],[8,-33],[2,-36],[-3,-79],[-9,-46],[-18,-63],[-40,-59],[-9,-8],[-37,-36],[-67,-49],[-32,-24],[-51,-59],[-9,-10],[-6,-14],[-9,-20],[-5,-11],[-3,-10],[-13,-45],[-54,-196],[-1,-40],[0,-26],[0,-30],[8,-33],[4,-8],[11,-24],[13,-30],[24,-30],[5,-5],[30,-25],[1,-1],[6,-3],[68,-37],[6,0],[21,-25],[6,-7],[8,-10],[6,-14],[0,-9],[1,-41],[0,-8],[-1,-2],[-5,-11],[-5,-11],[-12,-13],[-19,-20],[-1,-1],[-2,-1],[-14,-7],[-3,-2],[-32,2],[-57,35],[-27,23],[-10,8],[-61,36],[-43,-2],[-10,-9],[-20,-21],[-7,-17],[-3,-8],[2,-17],[2,-15],[0,-7],[12,-30],[18,-22],[30,-20],[20,-6],[26,-7],[17,-1],[55,-3],[31,5],[31,-1],[4,-1],[5,-3],[16,-9],[9,-12],[15,-17],[4,-11],[1,-4],[-2,-43],[-13,-35],[-1,0],[-58,-57],[-32,-31],[-14,-14],[-64,-104],[-27,-63],[-2,-50],[11,-40],[29,-37],[18,-12],[11,-4],[14,-5],[56,-3],[3,0],[5,1],[39,7],[31,-1],[22,-14],[3,-2],[14,-18],[3,-4],[6,-15],[0,-1],[-2,-41],[-2,-47],[-7,-37],[-4,-16],[0,-4],[-25,-60],[-9,-8],[-32,-28],[-1,-1],[-1,0],[-58,0],[-52,25],[-6,3],[-64,47],[-7,8],[-70,82],[-12,25],[-6,12],[-15,65],[0,12],[2,26],[7,129],[3,51],[-3,83],[-7,50],[-14,44],[-26,52],[-24,30],[-36,20],[-20,1],[-24,1],[-22,1],[-15,-6],[-29,-16],[-26,-28],[-17,-31],[-18,-53],[-12,-53],[-13,-81],[-9,-68],[-3,-138],[0,-9],[-2,-6],[-5,-17],[-11,-37],[-20,-38],[-2,-2],[-39,-35],[-5,-3],[-6,-2],[-24,-7],[-11,-3],[-4,0],[-92,1],[-1,0],[-95,27],[-6,8],[-17,-3],[-36,-5],[-3,-3],[-20,-17],[-7,-14],[0,-13],[-2,-32],[0,-9],[0,-1],[9,-17],[11,-23],[13,-15],[19,-21],[21,-25],[16,-18],[9,-32],[1,-3],[1,-2],[0,-20],[-5,-22],[-6,-11],[-8,-11],[-6,-11],[-7,-4],[-11,-7],[-4,-3],[-14,-9],[-21,-1],[-20,6],[-18,16],[-16,16],[-17,12],[-18,0],[-1,0],[-15,-6],[-7,-17],[-5,-20],[-1,-5],[22,-17],[9,-8],[4,-2],[36,-15],[66,-10],[112,5],[35,-15],[6,-2],[2,-5],[13,-32],[2,-6],[-2,-6],[-3,-6],[-2,-4],[-12,-4],[-25,-8],[-2,-1],[-44,-5],[-39,-16],[-16,-9],[-24,-14],[-11,-26],[-13,-32],[-26,-63],[-31,-76],[-30,-51],[-8,-13],[-25,-11],[-20,-9],[-52,-4],[-38,6],[-3,0],[-7,3],[-37,15],[-19,7],[-52,40],[-71,49],[-3,3],[-6,0],[-30,4],[-18,2],[-42,-8],[-19,-23],[-43,-51],[-9,-11],[-57,-143],[-6,-33],[-3,-10],[-3,-15],[0,-15],[-2,-32],[30,-46],[14,-8],[39,-24],[7,-1],[228,-34],[44,-2],[5,0],[92,16],[57,1],[15,-4],[13,-2],[16,-4],[4,-3],[26,-26],[7,-6],[0,-7],[0,-66],[-9,-66],[-3,-23],[-12,-69],[-1,-2],[9,-68],[45,-46],[60,-37],[26,-26],[5,-6],[-4,-22],[0,-1],[-15,-23],[-45,-18],[-43,-16],[-32,-13],[-6,-1],[-44,-6],[-51,23],[-90,105],[-34,47],[-4,6],[-33,11],[-1,0],[-4,1],[-41,-11],[-12,-16],[-4,-6],[-12,-17],[-1,-6],[-4,-34],[-2,-45],[0,-15],[17,-82],[52,-137],[54,-128],[15,-18],[97,-117],[2,-2],[2,-5],[16,-47],[-13,-51],[-54,-102],[-48,-92],[-2,-32],[0,-1],[-1,-31],[10,-61],[20,-10],[10,-5],[49,-11],[4,-1],[11,2],[26,7],[14,3],[33,13],[40,43],[17,40],[28,62],[9,10],[22,24],[2,2],[31,13],[22,-2],[19,-16],[8,-16],[28,-56],[8,-17],[13,-66],[-14,-43],[-18,-26],[-12,-3],[-46,-13],[-1,0],[-242,-43],[-61,-1],[-26,8],[-14,13],[-1,-1],[-26,1],[-3,0],[-54,25],[-32,-1],[-30,-31],[-22,-68],[0,-61],[9,-62],[44,-60],[11,-16],[15,-21],[1,-1],[3,-11],[3,-11],[2,-6],[-8,-25],[-4,-4],[-24,-24],[0,-1],[-12,-2],[-27,-7],[-47,11],[-54,50],[-44,86],[-13,59],[4,31],[15,126],[-3,24],[-1,6],[-1,12],[-19,9],[-15,-2],[-17,-15],[-5,-23],[-8,-47],[-6,-31],[2,-24],[2,-48],[3,-59],[-3,-30],[-2,-21],[0,-1],[-18,-50],[-8,-23]],[[63397,59657],[-24,1],[-227,7],[-364,11],[-14,1],[-75,5],[-41,-5],[-92,2],[-141,5],[-321,9],[-136,3],[-51,2],[-26,3],[-102,2],[-237,5],[-84,1],[-456,4],[0,-2],[-1,-36],[0,-81],[-2,-97],[-8,-373],[0,-55],[0,-8],[0,-69],[0,-3],[4,-59],[0,-55],[-5,-413],[-1,-69],[-3,-222],[-2,-64],[-2,-117],[0,-72],[-1,-60],[-1,-44],[-29,35],[-8,9],[-4,5],[-3,1],[-120,18],[-13,-12],[-1,0],[-40,-6],[-23,-4],[-52,-8],[-36,-12],[-56,-17],[-2,-9],[-6,-10],[-1,-3],[-1,-1],[-30,-52],[-1,-1],[-34,-54],[-4,-4],[-9,-2],[-65,19],[-22,-5],[-24,13],[-1,1],[-13,4],[-20,6],[-1,0],[0,1],[11,60],[-27,8],[-39,36],[-116,18],[-6,3],[-2,1],[-1,0],[-1,10],[-108,-14],[-15,-16],[-16,8],[-12,3],[-38,9],[-58,3],[-97,73],[-2,21],[-3,31],[-2,17],[-3,27],[-1,4],[-6,31],[-17,37],[-4,12],[-8,26],[-4,27],[-3,16],[93,180],[-113,8],[-39,32],[-21,17],[-4,4],[1,92],[-38,-16],[-28,-13],[-2,-1],[-53,14],[-3,6],[-18,40],[-20,44],[-31,16],[-21,0],[-26,-10],[-25,16],[-3,36],[-51,0],[-26,-8],[-23,3],[-26,5],[-23,17],[-10,-29],[-30,12],[-25,-10],[-15,-22],[-14,-42],[-16,-18],[-47,19],[-21,-1],[-18,-19],[-27,1],[-2,42],[-19,21],[-15,23],[-27,0],[-23,-22],[-21,-3],[7,37],[-23,8],[-15,25],[18,16],[-16,25],[-29,-10],[-9,27],[18,28],[24,7],[2,31],[-26,8],[-23,-2],[-38,11],[-8,6],[-13,11],[-1,0],[-6,3],[-78,38],[-1,0],[-4,-4],[-51,-7],[-5,-1],[-3,2],[-29,27],[-9,-2],[-3,-4],[-3,-7],[-2,-11],[-23,-27],[-33,-26],[-9,-5],[-5,3],[-40,34],[-1,1],[-5,25],[-6,5],[-33,7],[-4,1],[-7,2],[-9,-4],[-5,-8],[0,-11],[2,-4],[2,-5],[1,-17],[-1,0],[-4,-6],[-28,-25],[-1,-2],[-33,-21],[-64,82],[-10,-98],[-11,-22],[-3,-6],[-64,25],[0,-1],[-52,-46],[-2,-37],[-1,-15],[-13,12],[-9,8],[-4,2],[-5,0],[-26,-5],[-1,0],[0,-1],[-67,-24],[-4,-10],[-9,-38],[-45,-42],[-5,-2],[-90,-38],[-10,-4],[-4,-2],[-32,16],[-4,2],[-2,-4],[-28,-47],[-1,-1],[-52,-52],[-4,0],[-37,3],[-37,3],[-40,4],[-3,2],[-33,10],[-61,15],[-47,-5],[-4,-1],[-15,-7],[-5,-1],[-1,0],[-1,0],[-42,5],[-6,4],[-1,0],[-42,39],[-12,7],[-17,6],[-9,0],[-14,-5],[-10,-10],[-17,-30],[-2,-1],[-6,-5],[-66,-33],[-3,-1],[-47,-3],[-5,0],[-92,-12],[-9,-10],[-21,-33],[-12,-34],[-16,-17],[-21,-5],[-26,-24],[-24,-17],[-41,-19],[-21,-13],[-14,-16],[-11,-13],[-19,17],[-9,27],[-40,-22],[-7,-36],[-17,17],[2,44],[-11,33],[-21,-9],[-7,-29],[-24,-1],[-18,27],[-17,11],[-74,-46],[-2,-248],[1,-41]],[[56613,57969],[-3,0],[-23,0],[-40,2],[-77,3],[-112,4],[-214,21],[-19,-12],[-37,1],[-19,-22],[-57,-61],[-1,3],[-62,59],[-4,2],[-10,-2],[-93,-22],[-12,-9],[-1,-1],[-24,-33],[-4,-5],[-6,-21],[-3,-6],[-6,0],[-33,2],[-1,0],[-4,2],[-7,9],[-2,4],[-2,3],[-3,3],[-57,8],[-9,0],[-4,-2],[-5,-6],[-25,-47],[0,-7],[8,-16],[-41,-12],[-6,-1],[-32,19],[-7,4],[-64,7],[-61,-5],[-28,-4],[-7,-7],[-15,-15],[-9,-10],[-6,-4],[-73,-5],[-1,1],[-24,18],[-1,1],[0,9],[-8,8],[-34,0],[-18,-3],[-1,0],[-1,0],[-9,-4],[-15,-8],[-1,0],[-11,-6],[-4,-6],[-4,-8],[0,-1],[-2,-11],[-7,-9],[-3,-3],[-3,1],[-1,1],[-3,0],[-66,25],[-4,3],[-19,20],[-5,7],[-2,8],[-4,15],[-1,0],[-2,8],[-4,9],[-15,21],[-4,4],[-24,13],[-3,1],[-33,2],[-5,1],[-17,-11],[0,-1],[-7,-1],[-40,20],[-7,8],[-1,2],[-4,9],[-2,8],[-11,12],[-1,1],[-4,4],[-35,34],[-5,2],[-14,4],[-73,20],[-5,1],[-5,2],[-13,0],[-21,-2],[-49,-5],[-56,-67],[-16,-22],[-5,25],[-27,36],[-10,13],[-13,17],[-17,23],[-2,3],[-36,43],[-5,0],[-44,9],[0,1],[-6,3],[-64,53],[-12,28],[-41,102],[-26,64],[-45,18],[-45,18],[-41,16],[-1,1],[-22,3],[-32,5],[-1,-1],[-37,-34],[-15,9],[-25,15],[-38,13],[-22,12],[-13,-35],[-34,-34],[-37,8],[-9,3],[-66,47],[-14,10],[-6,-3],[-25,-9],[-12,-5],[-51,-20],[-20,-8],[-25,13],[-2,1],[-26,3],[-24,30],[-1,4],[-2,5],[-17,85],[-2,2],[-72,18],[-41,13],[-37,12],[-25,0],[-22,16],[0,-31],[-13,25],[-17,-15],[-20,11],[-15,-20],[-23,-15],[-21,-19],[-16,25],[-7,38],[-29,-10],[-22,7],[11,33],[-24,4],[-31,-16],[-23,9],[15,27],[-12,31],[-14,6],[-7,-3],[-11,-4],[-24,2],[-41,24],[-8,9],[-4,7],[-3,20],[0,1],[3,12],[7,5],[23,2],[7,4],[3,2],[0,5],[-29,25],[-42,20],[-27,13],[-2,1],[-11,-6],[-4,-2],[-75,26],[-16,6],[-35,12],[-76,-51],[-4,-3],[-7,14],[0,1],[-23,46],[-45,54],[-30,2],[-23,1],[-68,70],[-40,54],[-2,3],[0,1],[-61,111],[-10,19],[-9,16],[9,31],[0,1],[4,51],[0,5],[0,1],[-30,7],[-8,-3],[-31,-18],[-3,-1],[-6,-2],[-8,-2],[-157,-92],[-7,-5],[-2,-1],[-25,-26],[0,1],[-12,38],[-2,5],[-38,9],[-126,-3],[-35,-13],[-15,-6],[-43,-16],[-22,-8],[-36,-13],[-33,-13],[-1,0],[-7,-7],[1,-7],[14,-29],[1,-1],[-1,0],[-99,-22],[-29,-3],[-51,-5],[-16,-2],[-2,0],[-31,11],[-39,13],[-22,11],[-9,4],[-1,0],[6,22],[1,3],[-13,41],[-1,3],[-18,55],[-8,8],[-10,4],[-57,15],[-13,-5],[-25,-16],[-3,0],[-127,10],[-40,3],[-8,5],[-33,19],[-4,2],[-1,-1],[-40,-41],[-4,-5],[7,-30],[1,-7],[-25,-31],[-2,-2],[-30,-36],[-31,-38],[-5,-6],[-2,5],[-11,22],[-4,4],[-10,2],[-12,1],[-12,-6],[-6,-8],[0,-8],[4,-11],[1,-7],[0,-1],[-2,-2],[0,-1],[-10,-12],[-5,-5],[-5,-5],[-9,-9],[-44,-44],[-13,-9],[-7,-1],[-42,-1],[-80,-14],[-2,0],[-4,0],[-8,0],[-13,4],[-1,0],[-48,31],[-4,2],[-26,37],[-31,45],[-4,-6],[-52,-74],[-29,-8],[-4,-1],[-25,20],[-5,4],[-14,-17],[-1,0],[-9,-3],[-9,2],[-23,7],[-68,18],[-24,12],[-11,6],[-39,-4],[-21,-2],[-5,0],[-11,-11]],[[50234,58999],[1,87],[4,187],[2,110],[1,79],[2,60],[1,43],[5,188],[4,120],[1,44],[0,201],[5,169],[6,280],[1,63],[5,47],[1,38],[-5,58],[6,124],[8,152],[0,12],[3,43],[13,258],[-1,48],[0,34],[0,128],[-1,297],[2,120],[-2,32],[5,186],[3,115],[0,9],[1,34],[2,73],[1,32],[0,82],[2,136],[0,49],[10,446],[2,92],[1,25],[0,35],[2,58],[3,116],[0,36],[1,40],[0,4],[1,34],[1,34],[1,46],[1,48],[1,49],[3,123],[2,110],[6,220],[1,42],[3,476],[2,103],[2,89],[3,132],[1,73],[2,77],[9,551],[1,4],[9,510],[2,113],[2,100],[0,1],[1,51],[1,48],[1,79],[7,341],[0,2],[2,95],[6,335]],[[42960,67637],[-5,-35],[-2,-63],[-22,-717],[-3,-101],[0,-18],[-6,-200],[0,-99],[-1,-91],[0,-7],[-2,-137],[-1,-103],[-2,-131],[-1,-89],[-1,-30],[-3,-244],[-3,-152],[-1,-72],[-1,-98],[-15,-134],[-14,-36],[-2,-35],[11,-40],[-2,-41],[-18,-25],[-25,-19],[-21,-4],[-26,13],[-33,21],[-28,-3],[-27,-25],[-15,-23],[-5,-33],[-6,-28],[-21,-42],[-20,-28],[-23,-41],[32,4],[52,10],[19,-15],[-1,-11],[-4,-7],[-7,-8],[-17,-12],[-9,-5],[-3,-2],[-48,-16],[-14,-9],[-7,-6],[-25,-24],[-8,-9],[-33,-28],[-60,-71],[-11,-18],[-14,-19],[-7,-4],[-20,0],[-46,12],[-6,2],[-15,0],[-12,0],[-4,-3],[-6,-2],[-24,-12],[-10,-11],[-2,-2],[-1,-1],[-7,-9],[-4,-11],[-1,-11],[0,-1],[0,-5],[1,-40],[4,-19],[0,-2],[8,-17],[78,-128],[5,-7],[14,-8],[18,1],[37,2],[22,-5],[15,-11],[13,-14],[5,-10],[4,-11],[6,-31],[-15,-39],[-3,-75],[6,-6],[1,-9],[-2,-8],[-5,-14],[-12,-16],[-10,-8],[-10,0],[-1,0],[-3,1],[-8,2],[-9,10],[-1,0],[-43,47],[-2,2],[-15,49],[4,36],[-1,19],[-4,7],[-12,4],[-13,-5],[-19,-19],[-6,-8],[-1,-6],[-6,-33],[-3,-100],[3,-8],[0,-11],[-19,-100],[-29,-65],[-10,-13],[-7,-3],[-57,-8],[-68,-22],[-8,-5],[-39,-66],[-1,-3],[-1,0],[-10,-2],[-13,0],[-12,7],[-5,10],[0,1],[-7,29],[-4,8],[-1,0],[-7,0],[-7,-4],[-4,-4],[-1,-1],[-3,-6],[-4,-8],[-3,-8],[-2,-6],[-16,-30],[-1,-1],[-39,-97],[-4,-19],[2,-35],[33,-97],[3,-8],[1,-1],[0,-1],[5,-8],[7,-6],[10,-5],[14,-2],[10,3],[7,7],[5,6],[5,21],[1,2],[4,11],[4,6],[7,5],[22,17],[20,10],[17,4],[5,-2],[6,-6],[63,-122],[2,-9],[-2,-16],[-3,-17],[-11,-35],[-7,-17],[-4,-5],[-5,-3],[-10,-2],[-14,11],[-3,5],[-8,14],[-2,7],[-1,3],[-1,4],[-5,13],[-3,2],[-10,-1],[-3,-3],[0,-1],[-19,-29],[-7,-12],[-3,-4],[-2,-4],[0,-1],[-46,-123],[-2,-3],[0,-1],[0,-14],[4,-82],[0,-1],[1,-4],[4,-5],[13,-7],[3,-1],[32,-8],[-3,-4],[-27,-34],[-2,-1],[0,-1],[-20,-58],[0,-16],[0,-3],[5,-37],[-3,-40],[-3,-16],[-7,-17],[-6,-11],[-10,-12],[-20,-27],[10,-5],[23,-14],[5,-3],[7,-7],[5,-12],[2,-13],[0,-1],[-11,-61],[-5,-8],[-18,-13],[0,-1],[-6,-7],[-5,-11],[0,-6],[11,-9],[51,-1],[46,-2],[9,-4],[5,-6],[2,-7],[-1,-10],[-10,-28],[-4,-11],[0,-15],[2,-5],[5,-6],[18,-10],[14,-2],[14,9],[9,11],[28,7],[2,-33],[-15,-24],[18,-21],[42,-13],[23,-15],[28,-21],[24,-15],[6,-5],[23,-11],[22,-20],[23,-49],[19,-36],[35,-36],[34,-24],[34,-8],[48,20],[3,-1],[1,-1],[14,-12],[10,-11],[1,-14],[-2,-11],[-9,-6],[-5,0],[-24,0],[-6,-2],[-3,-1],[-6,-4],[-4,-2],[-9,-11],[-6,-14],[-1,-3],[0,-1],[0,-27],[4,-10],[1,-3],[12,-15],[12,-9],[6,-3],[35,-20],[1,-8],[-2,-2],[-2,-6],[-3,-7],[-6,-6],[-9,-6],[-23,-9],[-25,0],[-6,2],[-8,6],[-1,0],[-17,17],[-1,1],[-11,6],[-9,-3],[-1,0],[-3,-3],[-5,-7],[-5,-12],[-3,-7],[-3,-7],[-5,-13],[-1,-12],[0,-3],[-1,-16],[4,-15],[1,-4],[1,-4],[1,-2],[5,-9],[10,-11],[2,-2],[0,-1],[20,-12],[57,-72],[1,0],[-27,-235],[-4,-128],[0,-3],[-28,-91],[-1,-1],[-54,-38],[-6,-4],[-6,-40],[6,-4],[8,-6],[2,-3],[8,-8],[9,-16],[1,0],[16,-39],[5,-25],[-2,-21],[-2,-9],[-4,-8],[-16,-25],[-24,-17],[-17,-11],[-26,-6],[-1,-1],[-6,-2],[-12,-13],[-2,-2],[-17,-25],[-14,-29],[0,-9],[-38,-68],[-8,-16],[-75,-250],[-1,-2],[-1,-1],[-12,-36],[-11,-35],[-4,-14],[-3,-16],[-3,-17],[0,-5],[0,-13],[-2,-11],[0,-3],[-1,-4],[-4,-16],[-4,-4],[-20,-16],[-21,-18],[-50,-41],[-158,57],[-6,1],[-4,1],[-1,0],[-9,6],[-12,15],[-21,44],[-7,15],[-23,49],[-5,10],[-88,170],[-10,13],[-2,3],[-1,0],[-7,4],[-14,-5],[-2,-1],[-17,-10],[-10,-11],[-19,-22],[-31,-39],[-1,-1],[-40,-63],[-23,-22],[-34,-38],[-31,-41],[-7,-34],[0,-3],[-3,-33],[0,-6],[3,-37]],[[41488,60339],[-16,14],[-19,3],[-52,7],[-27,23],[-115,5],[-48,-27],[-41,-23],[-52,-55],[-17,-39],[-65,-80],[-109,-113],[-23,-39],[-29,-31],[-10,-17],[-9,-19],[-46,-99],[-17,-37],[-21,-46],[-36,-52],[-27,-26],[-173,-177],[-64,-47],[-41,-24],[-133,-73],[-93,-35],[-11,-4],[-326,-62],[-103,1],[-72,15],[-16,3],[-8,31],[-8,39],[1,42],[1,5],[13,69],[17,38],[42,50],[40,38],[76,37],[108,50],[88,58],[23,15],[34,48],[26,48],[21,49],[10,42],[2,44],[-5,51],[-10,69],[-8,27],[-21,46],[-21,39],[-28,0],[-20,24],[-23,23],[-41,17],[-55,3],[-90,-18],[-40,-17],[-35,-15],[-27,-21],[-152,-124],[-84,-120],[-140,-224],[-28,-36],[-17,-26],[-17,-26],[-16,-25],[-21,-33],[-23,-23],[-130,-173],[-27,-36],[-23,-27],[-36,-14],[-21,-20],[-111,-39],[-82,-29],[-37,-13],[-7,0],[-201,-48],[-3,-1],[-14,1],[-178,10],[-40,-37],[-42,-15],[-33,3],[-35,24],[-36,14],[-7,-21],[-3,-6],[-84,3],[-100,3],[-100,3],[-83,2],[-43,1],[-46,1],[-3,0],[-170,-5],[-173,1],[-198,3],[-62,2],[-36,0],[-23,0],[-29,2],[-21,-1],[-5,0],[-52,-1],[-24,1],[-28,1],[-52,4],[-35,2],[-57,1],[-90,3],[-85,2],[-102,1],[-27,0],[-39,0],[-55,0],[-163,3],[-55,1],[-31,1],[-78,2],[-57,3],[-34,1],[-116,5],[-46,2],[-63,3],[-47,1],[-55,1],[-59,1],[-36,2],[-73,1],[-24,1],[-42,1],[-46,0],[-31,1],[-47,3],[-23,0],[-110,3],[-74,5],[-155,5],[-83,2],[-374,6],[-8,0],[-65,1],[-34,1],[-280,7],[-56,2],[-158,4],[-26,1],[-103,2],[-55,1],[-35,2],[-65,2],[-92,3],[-166,-10],[-23,0],[-55,2],[-106,4],[-4,0],[-179,2],[-391,4],[-35,0],[-37,1],[-20,0],[-154,5],[-66,2],[-35,2],[-52,4],[-24,2],[-131,10],[-52,4],[-59,5],[-90,1],[-60,0]],[[31715,59299],[2,2],[1,1],[63,86],[15,25],[35,57],[22,24],[5,6],[18,19],[33,22],[37,25],[20,19],[9,9],[7,7],[12,10],[6,14],[1,3],[13,54],[1,32],[-19,116],[-7,38],[-1,5],[-20,61],[-15,19],[-34,15],[-90,11],[-91,78],[-18,26],[1,21],[-3,21],[-7,66],[-2,17],[2,4],[16,17],[2,1],[53,32],[24,15],[6,2],[35,14],[38,10],[106,-4],[4,6],[54,67],[10,13],[5,6],[1,2],[80,83],[2,-1],[29,-7],[37,-20],[45,-48],[6,-18],[12,-15],[32,1],[31,1],[87,14],[88,29],[5,4],[9,8],[2,2],[33,10],[5,-1],[78,-18],[4,1],[3,0],[1,0],[1,0],[49,3],[2,0],[3,0],[34,-3],[4,0],[3,-1],[4,-1],[3,-2],[3,-2],[1,0],[15,-9],[2,-1],[3,-3],[90,23],[1,0],[30,17],[22,19],[9,7],[13,12],[11,13],[3,5],[3,5],[2,3],[7,18],[3,10],[-1,26],[-27,40],[-22,11],[-6,2],[1,11],[3,3],[36,6],[31,1],[12,0],[8,5],[2,1],[3,2],[13,17],[3,11],[0,20],[0,5],[-1,2],[-3,8],[-22,34],[-15,23],[-23,30],[-6,14],[-5,27],[-1,17],[5,3],[41,29],[45,31],[3,2],[2,8],[7,12],[3,6],[12,13],[14,10],[2,2],[44,11],[64,21],[24,15],[2,2],[7,6],[18,9],[6,3],[55,20],[39,17],[65,40],[11,10],[5,7],[1,1],[27,67],[1,3],[20,41],[5,12],[1,1],[81,144],[13,18],[26,30],[22,23],[17,12],[2,2],[48,29],[2,1],[25,11],[25,16],[1,0],[9,8],[16,16],[31,40],[41,68],[1,2],[21,41],[41,65],[14,17],[10,13],[10,10],[10,9],[21,15],[32,32],[22,16],[11,8],[19,14],[40,13],[57,10],[65,5],[82,3],[26,1],[80,3],[89,3],[53,11],[75,23]],[[11851,63215],[-2,-42],[-2,-57],[-4,-66],[-3,-71],[-1,-41],[-9,-460],[-4,-92],[-2,-54],[-4,-89],[-3,-69],[2,-45],[0,-32],[-2,-38],[-2,-70],[-1,-37],[-1,-56],[0,-37],[-3,-137],[-2,-73],[-1,-41],[-1,-64],[-2,-85],[-3,-124],[-1,-72],[-3,-135],[-74,3],[-192,7],[-97,3],[-125,5],[-23,1],[-24,1],[-21,0],[-14,1],[-35,1],[-51,2],[-37,4],[-80,1],[-51,1],[-102,1],[-102,1],[-37,2],[-20,1],[-86,3],[-227,8],[-290,11],[-42,2],[-36,1],[-25,1],[-47,2],[-21,0],[-31,1],[-154,4],[-129,4],[-1,-61],[-2,-59],[0,-31],[-1,-58],[-2,-204],[0,-36],[-1,-77],[0,-73],[0,-19],[-2,-76],[-1,-31],[-2,-69],[-8,-257],[-2,-69],[-3,-130]],[[9599,59950],[-106,1],[-105,2],[-38,0],[-115,2],[-4,-165],[-1,-46],[-43,0],[-39,1],[-39,0],[-111,2],[-110,1],[-26,1],[1,-99],[-90,0],[-2,-102],[-54,2],[-59,1],[-23,1],[-137,3],[-5,-210],[-103,3],[-32,1],[-45,1],[-62,2],[-32,1],[-35,1],[-185,6],[-55,2],[-1,-30],[-4,-177],[-102,2],[-20,-11],[-29,-13],[-31,-15],[-21,-11],[-28,-14],[-21,-9],[-36,-14],[-21,-8],[-26,-9],[-20,-7],[-21,-8],[-38,-13],[-28,-10],[-28,-10],[-30,-11],[-39,-17],[-15,-20],[1,-35],[0,-5],[0,-52],[-2,-36],[-3,-29],[0,-2],[0,-27],[19,-15],[29,-4],[30,-3],[21,2],[20,6],[19,-11],[23,8],[21,-1],[35,-1],[22,0],[27,-2],[25,0],[20,0],[52,-1],[21,-2],[71,-1],[-2,-61],[0,-55],[-2,-58],[-1,-32],[-2,-71],[-1,-61],[-9,-264],[-4,-205],[-3,-107],[-2,-88],[1,-1],[6,-29],[-1,-33],[-2,-47],[-5,-118],[-1,-104],[-3,-300],[-4,-224],[-1,-57],[-1,-58],[0,-15],[-1,-65],[-7,-412],[-1,-83],[-47,-26],[-20,-5],[-36,3],[-26,2],[-29,-23],[-28,-20],[-26,-4],[-30,-23],[-27,-13],[-33,2],[-27,-6],[-21,-11],[-27,0],[-26,-14],[-9,-29],[-29,-15],[-32,-40],[-28,-21],[-39,-14],[-20,14],[-21,-1],[-21,-4],[-25,-3],[-29,-25],[-26,-14],[-19,-27],[-85,-3],[-25,-1],[-40,-5],[-48,-16],[-21,0],[-48,8],[-47,-23],[-49,-9],[-21,-2],[-63,-11],[-24,-9],[-20,-12],[-44,-28],[-31,-15],[-27,-5],[-27,0],[-41,0],[-22,-2],[-33,-8],[-33,-1],[-27,7],[-34,9],[-44,-2],[-35,3],[-99,26],[-21,4],[-30,23],[-29,11],[-20,6],[-26,-4],[-23,-7],[-30,22],[-23,-4],[-27,-15],[-27,-9],[-22,-2],[-38,-13],[-32,-62],[-40,-69],[-39,-36],[-26,-6],[-40,-11],[-57,-12],[-22,-5],[-29,1],[-21,1],[-25,5],[-25,6],[-35,13],[-19,20],[-8,27],[-8,40],[-44,76],[-20,25],[-24,36],[-26,39],[-26,35],[-14,21],[-9,28],[-4,37],[-21,17],[-23,3],[-52,-11],[-26,-1],[-29,9],[-22,-19],[-20,-26],[-27,-53],[-19,-45],[-27,-46],[-14,-57],[-3,-53],[-14,-41],[-15,-25],[-14,-20],[-21,-11],[-119,-37],[-47,-18],[-62,-30],[-40,-38],[-19,-13],[-38,2],[-42,23],[-39,45],[-46,38],[-20,11],[-57,24],[-53,25],[-21,5],[-34,0],[-32,-19],[-62,-62],[-19,-22],[-18,-23],[-30,-43],[-19,-67],[-22,-54],[-15,-26],[-25,-29],[-33,-50],[-41,-33],[-22,-16],[-27,-26],[-35,-38],[-20,-18],[-35,-13],[-23,3],[-60,21],[-44,11],[-21,19],[-23,12],[-37,3],[-29,9],[-27,9],[-30,5],[-38,-6]],[[3421,55208],[6,229],[22,800],[1,32],[1,71],[2,71],[2,69],[2,63],[2,130],[3,119],[1,33],[2,104],[2,113],[2,59],[2,26],[1,19],[10,425],[2,80],[5,183],[2,100],[1,33],[4,179],[13,553],[5,188],[2,82],[2,71],[2,78],[2,104],[0,4],[4,130],[1,37],[1,45],[4,171],[3,116],[3,147],[6,235],[3,171],[2,68],[2,89],[4,115],[-1,48],[2,43],[1,42],[1,29],[2,50],[3,30],[0,32],[1,36],[1,47],[4,172],[3,177],[3,124],[4,212],[4,168],[0,17],[2,78],[0,81],[1,33],[1,44],[2,54],[2,54],[2,94],[4,125],[1,39],[1,29],[2,45],[-4,183],[-1,47],[0,60],[2,38],[3,97],[7,190],[5,71],[4,152],[3,150],[1,37],[1,27],[0,10],[1,43],[3,147],[-1,100],[-3,138],[0,29],[6,72],[18,209],[6,228],[2,29],[0,17],[1,15],[2,77],[2,96],[1,56],[2,85],[0,45],[1,35],[1,28],[0,31],[6,74],[2,58],[0,147],[1,46],[2,45],[1,31],[0,30],[-1,34],[0,1],[9,101],[6,61],[1,56],[-1,49],[0,94],[-1,15],[0,32],[2,53],[1,31],[0,29],[1,29],[1,40],[2,48],[1,29],[0,32],[1,30],[1,41],[1,29],[1,47],[1,43],[2,60],[2,76],[1,34],[1,45],[1,31],[1,58],[2,54],[1,37],[1,28],[1,35],[2,32],[1,34],[2,87],[0,43],[3,65],[1,32],[2,58],[0,38],[1,37],[1,45],[2,45],[1,30],[0,46],[1,32],[0,10],[1,34],[2,34],[-17,29],[0,51],[16,46],[1,50],[-9,40],[-24,54],[8,150],[-6,8],[21,54],[-3,113],[-9,26],[-7,8],[-20,41],[-10,19],[44,114],[29,73],[9,23],[-9,50]],[[82755,69735],[-1,-58],[0,-11],[-1,-18],[-6,-542],[-2,-205],[0,-31],[0,-60],[-1,-105],[-2,-37],[-1,-32],[0,-156],[-1,-60],[0,-270],[0,-170],[1,-43],[2,-83],[0,-1],[-4,-357],[0,-270],[-2,-218],[-1,-190],[-3,-198],[-3,-220],[-1,-74],[-1,-29],[-2,-222],[-7,-486],[0,-33],[-4,-164],[0,-105],[-1,-55],[-1,-53],[0,-41],[-2,-40],[-2,-31],[-2,-55],[3,-249],[0,-1],[-1,-40],[0,-39],[-3,-115],[-1,-74],[0,-3],[-5,-238],[-7,-665],[-1,-31],[-2,-198],[-4,-233],[-1,-75],[-6,-432],[-3,-196],[-3,-212],[87,2],[-3,-154],[-11,-656],[0,-39],[-1,-35],[-2,-105]],[[82743,61224],[-105,-21],[-109,1],[-147,3],[-421,9],[-100,2],[0,1],[-24,0],[-128,3],[-2,0],[-34,1],[-32,1],[-344,8],[-321,8],[-251,6],[-166,11],[0,31],[-192,3],[-79,2],[-58,3],[-151,6],[-41,0],[6,-28],[-7,-12],[-6,-12],[-98,5],[-71,4],[-48,2],[-114,4],[-22,1],[-13,0],[-10,1],[-54,2],[-115,4],[-23,1],[-61,3],[-422,9],[-81,2],[-232,6],[-154,3],[-165,3],[1,30],[-116,-2],[-112,-2],[-43,-1],[-11,0],[-165,-2],[-128,2],[-149,1],[-88,0],[-244,2],[-33,1],[-100,-1],[-82,0],[-212,5],[-146,1],[-116,1],[-17,0],[-3,0],[-135,1],[-90,1],[-177,21],[-35,0],[-329,1],[-40,-1],[-138,-2],[-379,-11],[-27,0],[-66,0],[-12,0],[-119,0],[-21,0],[-172,0],[-190,0],[-185,1],[-4,0],[-46,-2],[-211,10],[-36,1],[-26,-2],[-66,-4],[-21,0],[-38,-15],[-74,-6],[-84,-4],[-502,1],[-44,0],[-180,0],[-62,1],[-328,-5],[-100,2],[-16,0],[-28,1],[-1,0],[-353,7],[-31,0],[-191,4],[-136,3]],[[71891,61338],[1,95],[4,329],[1,101],[4,338],[2,193],[2,130],[0,2],[1,83],[0,8],[5,388],[1,127],[1,33],[1,104],[1,134],[1,62],[2,198],[3,209],[2,208],[0,2],[4,171],[1,47],[0,1],[2,149],[5,262],[4,211],[2,416],[1,196],[0,36],[0,85],[0,1],[2,318],[2,403],[1,311],[0,118],[2,428]],[[71891,61338],[-2,-209],[-5,-452],[-8,-397],[-2,-207],[-2,-108],[4,-55],[-2,-130],[-3,-124],[-1,-109],[-2,-138],[-1,-183],[1,-12],[1,-20],[-1,-73],[0,-12],[-4,-268],[0,-62],[-4,-321],[-3,-78],[1,-130],[-4,-219],[-2,-97],[-4,-164],[-5,-226],[-1,-80],[-4,-281],[1,-59],[-266,4],[-21,1],[-59,3],[-114,2],[-50,2],[-1,0],[-39,1],[-37,0],[-131,8],[-167,3],[-74,2],[-118,3],[-56,-2],[-200,5],[-73,-3],[-19,2],[-7,1],[-58,-1],[-116,11],[-32,1],[-157,2],[-29,0],[-279,0]],[[69736,57169],[-2,0],[-48,0],[-16,0],[-95,3],[-29,-5],[-36,-2],[-72,7],[-42,5],[-34,2],[-21,1],[-8,0],[-48,2],[-220,6],[-30,1],[-40,0],[-87,2],[-109,3],[-75,1],[-19,0],[-24,1],[-113,2],[-32,-1],[-4,0],[-114,0],[-58,5],[-67,0],[-80,6],[-1,0],[-26,0],[-127,5],[-22,1],[-50,2],[-13,-115],[-4,-123],[-5,-158],[-2,-47],[-1,-105],[-176,3],[-20,1],[-46,3],[-74,1],[-73,0],[-3,0],[-175,-3],[-181,1],[-169,2],[-48,-4],[-75,0],[-2,0],[-65,0],[-2,-131],[0,-20],[-1,-81],[-3,-179],[-2,-219],[0,-39],[-1,-41],[-1,-75],[-3,-71],[-2,-67],[-3,-150],[0,-62],[-2,-146],[-1,-123],[-1,-44],[-1,-88],[-4,-160],[-2,-118],[-1,-57],[0,-37],[-3,-170],[-94,0],[-49,1],[-79,0],[-98,2],[-87,-2],[-1,0],[-82,2],[-101,0],[-268,1],[-30,1],[-121,1],[-472,2]],[[65340,54602],[3,199],[1,54],[2,116],[1,34],[4,273],[2,152],[2,160],[3,198],[2,131],[2,148],[5,303],[1,108],[8,435],[0,37],[1,112],[0,39],[1,203],[40,-1],[1,75],[1,325],[2,66],[2,65],[3,241],[1,54],[1,44],[2,150],[2,239],[-166,22],[-61,3],[-49,1],[-78,2],[-65,8],[-57,-1],[-26,0],[-83,-1],[-93,-1],[-56,0],[-98,3],[-120,5],[-49,-9],[-26,-2],[-59,-3],[-20,-1],[-99,-4],[-238,4],[-23,1],[-84,2],[22,91],[21,104],[1,42],[-10,18],[-5,9],[-4,6],[-16,1],[-21,-4],[-27,-46],[-12,-21],[-15,-19],[-7,-10],[-10,-14],[-4,-3],[-15,-14],[-110,-52],[-120,-70],[-31,-14],[-32,-14],[-49,2],[-5,3],[-22,10],[-33,14],[-24,24],[-34,34],[-1,1],[-14,14],[-39,15],[-76,9],[-15,2],[-25,22],[-10,9],[-8,19],[-2,4],[-18,42],[6,76],[31,85],[51,61],[55,13],[35,-22],[24,-15],[11,-7],[102,-82],[15,-2],[49,-6],[18,-2],[26,11],[124,52],[89,48],[20,13],[11,7],[0,7],[0,3],[1,27],[-57,31],[-24,13],[-15,12],[-9,7],[-34,45],[-28,40],[-6,8],[-54,125],[-35,57],[-53,41],[-49,14],[-19,6],[-39,10],[-14,4],[-25,28],[1,41],[46,74],[30,29]],[[89974,69543],[-515,-376],[-32,-154],[-2,-184],[-167,-688],[13,-112],[157,-153],[120,-60],[395,0],[139,42],[51,16],[-136,252],[-77,333],[30,217],[135,195],[98,42],[51,22],[198,-40],[189,-87],[89,-171],[265,-286],[118,-72],[117,-87],[139,-104],[-53,-79],[-22,-63],[-6,-29],[-7,-31],[-41,-119],[-48,-82],[-120,-246],[-25,-63],[-48,-84],[-87,-87],[-61,-63],[-89,-110],[-102,-127],[72,-168],[41,-93],[6,-15],[-6,-156],[34,-174],[-17,-124],[-4,-18],[-27,-37],[-1,-5],[-21,-62],[-53,-230],[-90,-8],[-51,-37],[-153,32],[-77,-57],[-241,-106],[-189,121],[-90,-13],[-158,-104],[-52,-81],[-101,-404],[1,-84],[200,-472],[136,-188],[235,-106],[382,84],[163,11],[165,-38],[78,-75],[93,-90],[103,-181],[41,-20],[13,-48],[58,-90],[137,-182],[80,-131],[36,-100],[-50,-169],[-53,-58],[-105,-118],[-40,26],[-59,37],[-16,-40],[-34,-83],[-44,-137],[-57,-232],[-26,-11],[-211,116],[-118,-68],[-67,-77],[-6,-169],[64,-177],[99,-168],[14,-192],[116,-171],[201,-155],[422,-104],[49,-12],[14,-17],[37,-44],[29,-93],[-5,-72],[-9,-128],[-2,-39],[-63,-125],[-51,-89],[-51,-65],[-33,-44],[-12,-12],[-147,-152],[-55,-39],[-86,-34],[-274,23],[-222,95],[-140,78],[-39,32],[-60,33],[-121,41],[-39,13],[-52,7],[-128,9],[-115,-49],[-82,-26],[-29,-13],[-29,-19],[-70,-70],[-65,-46],[-26,-20],[-75,-77],[-47,-57],[-45,-76],[-56,-168],[-28,-188],[-39,-108],[-20,-57],[-22,-120],[-5,-100],[-241,-816],[2,-56],[10,-372],[-4,-22],[-26,-178],[-25,-61],[-33,-47],[-63,-82],[-113,-114],[-129,-84],[-6,-4],[-147,68],[-142,65],[-77,17],[-247,53],[-45,11],[-333,83],[-58,112],[-338,7],[-115,36],[-84,0],[-50,-32],[-57,-80],[-113,-373],[-140,-432],[-2,-270],[1,-5],[13,-127],[98,-308],[161,-245],[228,-199],[70,-85],[52,-35],[98,-82],[83,-89],[109,-141],[30,-35],[61,-35],[40,-7],[55,-18],[52,-32],[81,-106],[14,-30],[5,-17],[37,-133],[29,-160],[19,-109],[5,-58],[17,-69],[-10,-186],[-23,-131],[-23,-84],[-14,-39],[-115,-239],[-35,-62],[-119,-128],[-140,-127],[-48,-21],[-44,-12],[-112,4],[-10,-4],[-168,-105],[-41,-33],[-152,-115],[-96,-58],[-48,-22],[-9,1],[-119,-64],[-29,-16],[-73,-113],[44,-67],[40,-69],[4,-8],[96,-193],[25,-49],[-46,-281],[-147,-124],[-348,192],[-105,116],[-125,136],[-18,-18],[-12,-50],[-82,-84],[-2,-5],[-97,-49],[-106,-7],[-97,-21],[-54,-12],[-290,-134],[-116,-85],[-135,-91],[-29,-16],[-63,-18],[-84,-55],[-114,-93],[-40,-23]],[[84653,52320],[1,189],[0,56],[0,26],[0,10],[-1,133],[0,64],[1,32],[0,51],[-1,96],[0,130],[1,42],[-2,43],[0,54],[-1,78],[-1,33],[-1,65],[-1,59],[3,44],[3,39],[-3,145],[-1,55],[-3,187],[-2,162],[-1,87],[-2,155]],[[84642,54355],[2,216],[0,29],[1,100],[0,58],[2,160],[0,2],[-1,74],[0,87],[-1,20],[1,142],[1,73],[3,173],[1,30],[0,115],[-1,180],[2,197],[1,155],[0,64],[1,175],[0,36],[0,107],[2,264],[0,80],[0,62],[1,86],[-1,61],[0,27],[0,26],[0,16],[13,0],[94,-1],[2,83],[0,41],[0,5],[3,93],[-1,205],[1,136],[1,69],[0,57],[1,73],[2,68],[1,199],[0,14],[0,39],[2,69],[0,10],[1,102],[-1,67],[0,15],[0,14],[0,15],[-2,58],[0,9],[0,75],[0,129],[0,35],[1,93],[1,117],[0,28],[1,37],[0,19],[2,119],[0,5],[2,35],[0,60],[3,65],[0,6],[1,104],[0,52],[1,41],[1,24],[0,13],[2,225],[3,243],[0,124],[0,42],[0,6],[1,59],[1,144],[1,104],[1,63],[1,70],[1,120],[1,67],[1,67],[0,12],[0,13],[0,4],[0,35],[0,53],[0,14],[3,168],[0,37],[-1,0],[-35,0],[-54,-1],[-68,-1],[-38,0],[-92,-7],[-67,-4],[-78,-6],[-31,-3],[-67,-6],[-43,-3],[-31,-1],[-63,-5],[-38,-4],[-183,-15],[-36,-1],[-21,-1],[-202,-19],[-69,-6],[-23,-2],[-19,-2],[-52,-4],[-20,-1],[-266,-11],[-186,-9],[-3,0],[-165,-2],[-50,-1],[-58,2]],[[26937,66179],[-1,-87],[-2,-87],[0,-18],[-2,-87],[-2,-106],[0,-12],[-1,-75],[-2,-89],[-1,-43],[0,-41],[-2,-85],[-1,-68],[0,-1],[-1,-71],[-1,-63],[0,-4],[-2,-66],[0,-41],[-1,-25],[8,-54],[1,-3],[-2,-38],[0,-38],[-7,-27],[-1,-273],[0,-133],[-1,-117],[3,-43],[-2,-76],[-2,-55],[1,-71],[-2,-174],[-3,-231],[-1,-86],[-6,-496],[-65,-15],[-79,1],[-227,3],[-345,-10],[-919,27],[-100,4],[-137,4],[-33,4],[-221,9],[-579,20],[-41,0],[-87,3],[-66,3],[-106,3],[-37,2],[-35,2],[-95,3],[-389,13],[1,-208],[-127,12],[-78,8],[-147,15],[-3,-117],[1,-34],[-1,-83],[-48,2],[-36,1],[-6,0],[-95,4],[-1,-256],[0,-32],[0,-111],[-1,-158],[0,-53],[-22,1],[-176,7],[2,-200],[-131,11],[-91,1],[-129,1],[-1,-189],[-1,-46],[-1,-51],[-3,-129],[-25,0],[-249,9],[-84,0],[-4,-119],[-2,-84],[-6,-214],[-122,2],[-80,1],[-73,2],[-251,15],[-116,4],[-3,0],[-81,3],[-123,5],[-56,2],[-227,10],[-208,9],[-36,2],[-41,2],[-144,0],[-275,0],[-81,1],[-81,1],[-217,7],[-253,7],[-144,5],[-65,2],[-6,-412],[-83,1],[-26,0],[-468,19],[-131,5],[-26,2],[-60,2],[-79,3],[-1,-114],[0,-1],[0,-35],[-1,-76],[0,-56],[-5,-31],[-3,-215],[0,-32],[-1,-60],[-2,-60],[-3,-146],[-2,-49],[0,-9],[0,-74],[-3,-47],[0,-2],[-2,-22],[-2,-37],[-6,-198],[-1,-91],[-2,-111],[-2,-86],[-4,-56],[2,-56],[-1,-147],[0,-49],[-9,-662],[92,-5],[0,-139],[0,-39],[-2,-107],[-1,-81],[-2,-189],[-3,-215]],[[18359,57662],[-447,5],[-135,1],[-300,4],[-29,6],[-254,4],[-32,1],[-221,2],[-43,1],[-91,1],[-297,3],[-64,0],[-52,0],[-67,1],[-21,0],[-22,0],[-67,2],[-192,5],[-64,3],[-261,10],[-53,3],[-82,5],[-165,9],[-74,7],[-10,1],[-39,3],[-55,5],[-24,2],[-200,3],[-63,3],[-104,1],[-128,3],[-25,0],[-218,5],[-172,4],[-170,6],[-15,-25],[-104,4],[-533,25],[-51,2],[-1,0],[-317,16],[-125,7],[-29,2],[-22,2],[-80,6],[-154,3],[-175,3],[-23,1],[-1,0],[-46,1],[-21,0],[-65,1],[-23,0],[-140,2],[-35,0],[-152,-5],[-83,4],[-47,2],[-79,3],[-141,6],[-706,27],[-20,12],[3,53],[1,44],[0,1],[-2,29],[1,80],[1,52],[1,142],[2,51],[0,41],[1,43],[1,53],[3,147],[0,37],[-281,10],[-47,2],[-30,3],[-2,0],[-38,1],[-41,2],[-60,2],[-40,2],[-45,1],[-47,2],[-36,2],[-81,0],[-20,0],[-32,1],[-11,3],[-17,4],[-32,0],[-17,0],[-24,1],[-52,2],[-4,0],[-69,2],[-14,0],[-55,-1],[-3,0],[-24,2],[-24,1],[-23,0],[-23,0],[-29,-1],[-22,3],[-35,3],[-25,0],[-64,1],[-1,65],[-1,127],[0,16],[3,74],[1,23],[-4,124],[5,113],[14,469],[2,44],[0,41],[1,42],[4,121]],[[50234,58999],[-6,-295],[0,-7],[-7,-314],[-1,-31],[-3,-161],[-2,-91],[0,-3],[-5,-218],[-6,-312],[-3,-119]],[[50201,57448],[-75,3],[-85,2],[-106,2],[-29,2],[-21,0],[-45,1],[-22,1],[-34,2],[-104,3],[-149,5],[-46,2],[-40,2],[-59,1],[-22,1],[-3,0],[-68,2],[-27,0],[-139,5],[-57,-2],[-26,2],[-155,6],[-68,3],[-23,0],[-68,4],[-269,12],[-68,1],[-159,2],[-168,3],[-1,-172],[0,-10],[0,-190],[-1,-41],[-6,-330],[-1,-81],[-1,-74],[0,-36],[-2,-69],[-3,-87],[-3,-48],[-1,-58],[1,-29],[-6,-34],[-8,-384],[1,-10],[2,-22],[-2,-84],[0,-37],[-7,-70],[0,-45],[1,-19],[-3,-36],[-1,-97],[-2,-133],[3,-49],[-4,-104],[-1,-49],[-1,-30],[-1,-59],[-44,1],[-23,1],[-21,0],[-47,1],[-21,1],[-32,1],[-42,1],[-33,1],[-53,2],[-25,0],[-23,1],[-27,0],[-23,1],[-30,1],[-41,2],[-22,1],[-24,-1],[-34,0],[-23,1],[-30,1],[-26,1],[-24,3],[-57,2],[-194,5],[-56,1],[-201,5],[-143,3],[-85,2],[-34,1],[-206,6],[-28,1],[-28,0],[-74,2],[-60,2],[-49,1],[-195,4],[-71,2],[-98,2],[-74,2],[-56,1],[-22,1],[-24,0],[-29,1],[-81,2],[-66,1],[-184,4],[-141,5],[-69,6],[-28,1],[-53,2],[-75,4],[-46,2],[-76,3],[-72,4],[-70,4],[-33,3],[-32,2],[-37,-4],[-21,1],[-24,1],[-24,0],[-23,2],[-22,2],[-25,2],[-51,4],[-8,1],[-91,-11],[19,-65],[5,-6],[8,-6],[8,0],[22,4],[6,1],[28,-39],[3,-9],[4,-14],[7,-22],[1,-5],[3,-14],[-2,-5],[-8,-19],[-2,-4],[-14,-48],[2,-14],[1,-6],[0,-5],[-14,-77],[-6,-33],[-7,-36],[-4,-6],[-35,-73],[0,-1],[-2,-4],[-4,-3],[-54,-39],[-49,-37],[-15,-10],[-13,0],[-8,-1],[-76,-5],[-3,0],[-4,-10],[-5,-6],[-11,-6],[-25,-6],[-28,-6],[-23,-4],[-5,-14],[-18,-49],[-10,-27],[-14,-38],[-14,-38],[-1,0],[-9,-3],[-5,-2],[-5,0],[-6,1],[-3,0],[-35,8],[-51,43],[-3,0],[-30,-5],[-3,-1],[-42,-12],[-1,0],[-26,-8],[-9,-2],[-20,-6],[-22,-6],[-7,-33],[3,-33],[9,-33],[14,-25],[5,-9],[9,-36],[7,-32],[11,-30],[0,-4],[0,-35],[9,-51],[7,-27],[3,-34],[-5,-29],[-6,-28],[-2,-37],[-8,-27],[4,-35],[6,-38],[19,-10],[22,-32],[5,-29],[11,-33],[12,-48],[13,-27],[-7,-35],[4,-34],[-6,-31],[14,-23],[9,-35],[3,-35],[1,-29],[-6,-41],[-12,-23],[-15,-37],[-6,-53],[-10,-40],[-9,-26],[-20,-22],[-12,-29],[-6,-28],[-5,-35],[12,-32],[4,-9],[9,-21],[13,-25],[9,-31],[20,-24],[19,-25],[17,-32],[15,-28],[22,-20],[19,-21],[27,-41],[11,-33],[16,-52],[11,-37],[-14,17],[-78,64],[-33,30],[-50,17],[-33,12],[-73,46],[-85,68],[-7,8],[-53,66],[-50,81],[-32,70],[-14,54],[-12,15],[-8,33],[7,117],[28,189],[11,61],[49,155],[7,41],[4,27],[1,39],[45,131],[44,127],[34,122],[5,19],[-17,120],[-3,36],[2,143],[-26,58],[-51,63],[-34,9],[-51,63],[-5,14],[-17,69],[1,118],[-30,70],[-77,178],[-22,84],[-2,5],[-45,190],[-23,62],[-21,26],[-78,86],[-75,68],[-25,15],[-79,39],[-90,22],[-58,1],[-116,3],[-131,-13],[-84,-3],[-81,-11],[-70,-26],[-53,2],[-3,0],[-117,5],[-229,39],[-31,12],[-19,-3],[-107,19]],[[41696,55763],[-111,51],[-127,38],[-89,43],[-134,84],[-51,56],[-134,102],[-158,200],[-36,59],[-27,37],[-47,84],[-84,197],[-31,102],[-8,16],[-1,2],[-9,36],[-18,76],[-8,51],[-7,68],[1,36],[47,231],[47,84],[115,181],[29,46],[42,62],[55,59],[153,119],[28,9],[132,124],[45,48],[21,33],[2,6],[70,61],[14,43],[43,66],[67,72],[40,81],[27,67],[14,39],[49,159],[17,64],[36,143],[21,84],[29,131],[2,39],[-6,15],[3,105],[1,42],[1,0],[8,88],[5,58],[-2,25],[-11,133],[-16,86],[-22,75],[-6,20],[-46,130],[-9,26],[-8,18],[-38,84],[-4,94],[0,1],[-5,27],[-12,25],[-17,34],[-14,18],[-52,67],[-24,16]],[[31715,59299],[-51,0],[-95,1],[-66,-4],[-1,-116],[-4,-298],[-358,8],[-4,-366],[-1,-50],[-273,5],[-84,1],[0,-107],[0,-100],[-1,-202],[-72,3],[-142,3],[-154,4],[0,-41],[-2,-31],[0,-60],[0,-85],[0,-45],[0,-4],[-1,-79],[0,-63],[0,-64],[-202,16],[-160,7],[-3,-169],[-1,-76],[-3,-172],[-21,1],[-126,6],[-135,7],[-73,4],[-2,-85],[-1,-47],[-3,-150],[-4,-130],[-132,3],[-230,5],[1,-99],[0,-135],[-4,-183],[-157,4],[-28,1],[-238,6],[-1,-100],[-4,-216],[0,-31],[-1,-65],[-80,2],[-7,0],[-74,2],[-25,0],[-85,2],[-12,1],[-85,1],[-1,-37],[-7,-277],[-2,-106],[-181,3],[-16,0],[-141,3],[0,-34],[0,-4],[-1,-213],[-1,-98],[0,-83],[-356,-3],[1,-85],[0,-90],[1,-240],[-55,0],[-248,5],[-41,2],[-5,-414],[-212,0],[-151,1],[-2,-207],[0,-1],[-1,-105],[-1,-108],[-352,-14],[1,-53],[0,-276],[-1,-54],[-352,8],[0,-14],[-2,-207],[0,-43],[-1,-133],[-1,-18],[152,-1],[62,0],[9,0],[131,-6],[0,-3],[1,-197],[1,-177],[1,-153],[0,-73],[0,-121],[1,-244],[1,-155],[0,-68],[1,-158],[0,-170],[1,-221],[1,-131],[1,-202],[0,-87],[1,-347]],[[26746,50610],[-122,1],[-762,7],[-41,0],[-153,-1],[-136,-2],[-43,0],[-53,-1],[-54,0],[-32,-1],[-23,0],[-338,-6],[-187,-10],[-201,-11],[2,-439],[0,-49],[0,-45],[0,-104],[2,-192]],[[24605,49757],[-43,1],[-272,1],[-40,0],[-42,0],[-151,1],[-1,0],[-153,1],[-25,0],[-118,1],[-124,1],[-2,0],[-104,0],[-136,1],[-63,1],[-75,1],[-118,0],[-250,2],[-37,1],[-38,0],[-66,0],[-76,1],[-42,0],[-83,1],[-47,0],[-2,0],[-22,1],[-679,-1],[-47,1],[-76,0],[-356,0],[-181,0],[-69,0],[-354,4],[-183,2],[-166,1],[-332,4],[-390,4],[-4,0],[-22,1],[-67,0],[-105,1],[-152,2],[-563,6],[-89,1],[-39,2],[-350,12]],[[18251,49812],[1,136],[2,117],[2,147],[3,235],[1,32],[2,184],[3,225],[0,11],[1,65],[2,161],[4,305],[1,62],[2,142],[1,52],[2,203],[3,194],[1,42],[1,106],[1,46],[0,45],[1,39],[1,108],[4,276],[1,55],[1,82],[1,71],[2,148],[0,27],[4,255],[1,112],[-1,30],[-1,38],[0,59],[1,30],[1,36],[3,39],[0,4],[0,43],[0,165],[0,64],[2,90],[5,211],[1,79],[5,287],[1,54],[1,113],[2,134],[3,183],[2,195],[2,145],[1,52],[1,55],[1,63],[1,65],[1,98],[3,218],[2,186],[1,16],[5,389],[8,459],[3,188],[4,313],[1,66]],[[84642,54355],[-155,3],[-46,1],[-85,-1],[-44,-1],[-403,7],[-36,1],[-57,-1],[-72,1],[-35,0],[-59,0],[-113,1],[-77,-8],[-99,4],[-100,-1],[-59,0],[-283,3],[-87,2],[-31,0],[-63,11],[-121,2],[-113,3],[-179,4],[-78,2],[-11,0],[-54,1],[-417,9],[-88,0],[-372,4],[-158,4],[-255,5],[-27,1],[-34,0],[-287,6],[-106,2],[-23,1],[-16,0],[-5,0],[-106,-4],[-36,0],[-75,-1],[-497,-6],[-42,2],[-25,-2],[-27,-1],[-52,-2],[-251,-1],[-120,-2],[-21,0],[-31,-1],[-180,-4],[-66,-2],[-155,-3],[-143,-1],[-86,-1],[-81,-1],[-23,0],[-138,3],[-53,-5],[-74,-2],[-164,-4],[-60,5],[-56,0],[-58,-2],[-206,3],[-134,1],[-25,0],[-22,-5],[-146,7],[-71,2],[-219,8],[-1,0],[-56,2],[-33,1],[-78,3],[-43,1],[-152,0],[-53,0],[-95,0],[-33,1],[-131,2],[-109,2],[-71,1],[-22,0],[-131,2],[-19,0],[-146,3],[-74,0],[-196,0],[-247,4],[-215,2],[-76,0],[-181,3],[-176,2],[-2,0],[-360,-2],[-179,3],[-71,1],[-105,1],[-36,0],[-142,4],[-180,13],[-348,17],[-53,4],[-311,31],[-2,1],[-77,5],[-102,8],[-53,9],[-24,2],[-25,1],[-20,-2],[-37,1],[0,1],[-113,9],[-40,3],[-146,11],[-60,5],[-92,5],[-206,15],[-209,2],[-146,-2],[-178,2],[-172,0],[-31,0],[-71,-1],[-87,-1],[-87,-1],[-43,-1],[-50,0],[-2,-115],[-1,-122],[0,-51],[-1,-69],[0,-40],[-1,-40],[-1,-93],[-1,-46],[-2,-126],[0,-25],[-4,-323],[0,-115],[0,-36],[1,-73]],[[70743,53301],[-21,0],[-62,1],[-82,0],[-22,0],[-147,1],[-6,0],[-22,1],[0,60],[4,58],[7,103],[0,37],[1,58],[1,132],[3,188],[0,36],[0,31],[4,289],[1,50],[1,162],[1,34],[1,33],[-42,-1],[-23,0],[-10,-1],[-52,-1],[-45,-1],[-73,1],[-62,-2],[-26,-1],[-30,-1],[-57,-2],[-35,0],[-45,-1],[-32,0],[-188,12],[1,170],[2,89],[2,131],[2,93],[2,161],[1,31],[0,29],[1,38],[6,184],[2,34],[3,81],[3,179],[5,183],[3,153],[0,78],[2,68],[4,225],[6,123],[2,28],[8,386],[-2,60],[-2,68]],[[41696,55763],[-1,-39],[0,-14],[0,-48],[-1,-16],[0,-59],[-1,-59],[0,-47],[-1,-38],[-1,-72],[0,-52],[-1,-44],[-41,2],[-164,8],[-138,7],[-56,3],[-26,2],[-197,6],[-22,0],[-59,3],[-41,2],[-22,1],[-41,1],[-23,1],[-33,1],[-26,1],[-30,1],[-27,2],[-75,3],[-43,2],[-55,2],[-36,2],[-26,1],[-22,1],[-26,1],[-32,1],[-31,1],[-45,2],[-50,2],[-45,1],[-58,2],[-22,2],[-63,2],[-27,1],[-40,1],[-24,1],[-21,1],[-26,1],[-40,2],[-43,1],[-22,1],[-53,2],[-20,1],[-43,2],[-21,0],[-3,0],[-19,1],[-40,1],[-33,2],[-8,-1],[-30,-4],[-1,0],[0,-1],[-5,-26],[0,-2],[-1,-33],[-1,-42],[-1,-33],[0,-40],[-1,-17],[0,-33],[-1,-56],[-1,-37],[-1,-46],[-2,-56],[-1,-53],[-1,-41],[-1,-4],[-4,-16],[-3,-9],[-1,-88],[0,-45],[-1,-84],[0,-4],[-2,-63],[-172,2],[-101,3],[-261,4],[-24,0],[-58,1],[-7,0],[-78,1],[-263,5],[-68,1],[-171,3],[-337,5],[-191,4],[-223,4],[-62,1],[-70,-17],[-5,-214],[-11,-444],[-1,-40],[-1,-41],[-2,-37],[-7,-138],[0,-2],[-2,-103],[0,-88],[0,-4],[-6,-361],[-1,-94],[0,-63],[106,0],[135,-5],[74,-2]],[[37766,52906],[2,-39],[-4,-140],[-22,-537],[-23,46],[-37,24],[-14,23],[-17,71],[-18,22],[-48,14],[-36,17],[-14,24],[-14,28],[-14,21],[-1,34],[-12,30],[-20,17],[-58,29],[-29,-13],[-23,-8],[-22,-19],[-20,-9],[-23,-10],[-34,-25],[-38,18],[-28,28],[-10,9],[-26,29],[-24,10],[-27,-5],[-36,-15],[-63,-37],[-25,-10],[-21,-9],[-23,-14],[-24,-2],[-46,17],[-14,24],[-19,12],[-23,25],[-23,18],[-21,15],[-67,39],[-23,11],[-20,6],[-34,8],[-18,17],[-17,23],[-13,25],[-8,30],[-24,22],[-21,4],[-23,-1],[-24,-9],[-20,-13],[-29,-13],[-21,-24],[-40,-20],[-29,-1],[-27,9],[-38,23],[-48,-3],[-26,-15],[-18,18],[-17,16],[-34,12],[-33,9],[-24,10],[-20,19],[-21,15],[-57,39],[-9,26],[2,31],[-17,28],[-77,3],[-2,0],[-102,5],[-30,1],[-486,17],[-135,2],[-81,2],[-653,35],[-63,2],[-40,2],[-236,10],[-26,0],[-184,10],[-198,6],[-275,7],[-170,4],[-50,2],[-21,0],[-385,0],[-212,0],[-427,-12],[-267,-5],[-11,0],[-12,0],[-60,-1],[-49,-1],[-105,-1],[-203,-4],[-92,-1],[-70,-1],[-119,-2],[-67,-1],[-6,-316],[-2,-96],[-4,-195],[-3,-142],[-1,-75],[-3,-242],[-2,-189],[-1,-157],[-3,-235],[-3,-309],[-1,-93],[1,-75],[1,-241],[0,-26],[1,-75]],[[31022,50573],[-55,0],[-1,0],[-76,0],[-29,0],[-49,0],[-138,0],[-208,-2],[-147,-1],[-303,4],[-213,1],[-197,0],[-82,0],[-3,0],[-184,0],[-66,0],[-223,0],[-168,0],[-346,-2],[-356,0],[-195,0],[-37,0],[-128,0],[-147,1],[-25,0],[-144,2],[-83,0],[-313,0],[-360,34]],[[18251,49812],[-391,27],[-312,6],[0,-35],[-3,-124],[-6,-258],[-91,13],[-251,5],[-302,7],[-76,1],[-2,-412],[-714,2],[2,-205],[-116,4],[-141,5],[-458,17],[-226,9],[-129,5],[-1,-86],[-2,-253],[-3,-287],[-93,0],[-23,0],[-4,0],[-30,0],[0,-82],[-1,-19],[-1,-260],[0,-38],[0,-127],[-1,-52],[0,-113],[-1,-40],[-129,1],[-58,1],[-46,1],[-102,2],[-171,2],[-547,3]],[[13822,47532],[3,114],[3,159],[3,142],[-145,13],[-207,18],[-119,3],[-236,6],[-357,20],[-34,2],[-314,22],[-150,3],[-148,4],[-62,1],[0,85],[1,177],[-342,8],[-256,8],[-210,5],[-247,5],[-682,15],[-416,8],[-140,4],[-426,8],[-126,3],[-114,3],[-121,2],[-26,1],[-61,1],[-38,1],[-393,8],[-8,0],[-56,2],[-27,0],[-29,1],[-27,0],[-265,6],[-187,4],[-1,0],[-141,3],[-279,5],[-47,1],[-95,3],[-283,8],[-122,4],[-45,1],[-58,2],[-125,3],[-90,2],[-30,1],[-24,1],[-80,2],[-3,0],[-20,1],[-382,11],[6,318],[3,149],[2,86],[2,133],[3,146],[-375,9],[-132,3],[-41,1],[-25,0],[-290,7],[-286,5],[-24,0],[-101,3],[-59,1],[-102,3],[-135,3],[-65,2],[-112,3],[-158,4],[-149,5],[-81,2],[-109,3],[-111,3],[-136,4],[-26,1],[-44,2],[-97,3],[-111,3]],[[3285,49344],[3,162],[4,160],[8,289],[6,278],[1,63],[0,1],[2,114],[4,181],[10,391],[2,77],[1,26],[0,17],[4,142],[2,79],[4,135],[2,83],[7,257],[2,84],[5,166],[3,124],[2,82],[2,76],[3,164],[1,30],[1,34],[6,328],[2,75],[1,35],[1,59],[3,69],[1,53],[0,43],[-1,35],[2,33],[1,34],[0,53],[1,29],[0,29],[1,38],[1,30],[0,30],[6,189],[2,89],[1,7],[3,135],[-1,30],[1,29],[1,32],[0,19],[0,29],[-4,28],[0,20],[5,177],[4,141],[10,392],[4,130],[6,229]],[[65340,54602],[-4,-199],[0,-36],[2,-5],[12,-58],[-2,-42],[-6,-10],[-11,-16],[-2,-3],[-6,-3],[-4,-3],[-20,-12],[-30,-7],[-2,0],[-58,8],[-1,0],[-21,11],[-13,8],[-43,60],[-7,12],[-16,28],[-9,16],[-13,25],[-2,2],[-17,4],[-12,-4],[-5,-2],[-21,-12],[-22,-18],[-2,-2],[-4,-4],[-3,-4],[-3,-4],[-2,-5],[-13,-30],[-2,-5],[-1,-12],[-3,-45],[0,-1],[4,-20],[3,-15],[12,-31],[21,-31],[15,-11],[7,-6],[1,-1],[8,1],[6,3],[17,8],[12,4],[2,0],[1,1],[93,15],[2,0],[28,3],[2,0],[16,-1],[19,-7],[2,-1],[2,-1],[10,-7],[20,-17],[5,-4],[2,-3],[11,-16],[4,-9],[24,-57],[14,-42],[9,-31],[6,-24],[0,-2],[5,-19],[1,-10],[0,-1],[4,-15],[4,-10],[32,-55],[11,-17],[41,-57],[51,-63],[15,-15],[173,-149],[7,-3],[4,-2],[9,-2],[39,16],[9,4],[6,6],[11,19],[1,1],[30,18],[12,-2],[9,-8],[3,-4],[7,-13],[2,-6],[0,-2],[0,-10],[-5,-56],[-1,-5],[-2,-14],[-1,-6],[-2,-6],[-2,-7],[-4,-13],[-11,-23],[0,-1],[-7,-11],[-25,-28],[-1,-2],[-52,-38],[-3,-1],[-14,-6],[-34,-9],[-7,-2],[-31,-2],[-31,7],[-3,1],[-15,7],[-5,5],[-1,1],[-3,7],[-4,7],[0,1],[0,4],[-6,12],[-8,7],[-18,8],[-12,1],[-29,-3],[-18,-6],[-41,-16],[-19,-19],[-1,-1],[-4,-14],[1,-21],[3,-7],[3,-6],[14,-17],[9,-10],[22,-32],[16,-41],[11,-27],[1,-3],[-2,-8],[-5,-12],[-10,-71],[-2,-10],[-6,-88],[0,-4],[17,-40],[3,-8],[7,-24],[2,-30],[5,-78],[5,-77],[-12,-47],[-1,-4],[-2,-3],[-33,-38],[-46,-15],[-1,-1],[-1,0],[-37,-2],[-11,0],[-5,1],[-29,9],[-10,3],[-2,1],[-3,2],[-25,13],[-6,3],[-6,-6],[-31,-26],[-5,-4],[-25,-58],[-22,-72],[-26,-82],[-6,-62],[2,-33],[1,-7],[1,-14],[7,-30],[15,-28],[2,-4],[26,-36],[41,-45],[12,-12],[7,-7],[18,-20],[-2,-135],[-1,-39],[-11,-494],[-6,-345],[-4,-154],[-3,-171],[-3,-129],[-4,-465],[-4,-193],[-20,-346],[0,-12],[-4,-168],[-2,-115],[-1,-26],[-1,-20],[0,-57],[0,-142],[0,-17],[0,-26],[0,-36],[0,-32],[-1,-118],[0,-34],[0,-95],[1,-99],[0,-155],[-2,-74],[-1,-83],[-6,-287],[-2,-99],[-1,-70],[-7,-273],[-14,-21],[-114,3],[-47,1],[-208,6],[-253,8],[-91,3],[-276,8],[-88,3],[-363,8],[-1,-50],[-5,-167],[0,-32],[0,-7],[0,-9],[-3,-58],[0,-64],[15,-27],[-3,-107],[-1,-44],[-5,-259],[-2,-173],[-1,-62],[-3,-152],[0,-38],[-6,-417],[31,-1],[25,0],[177,-2],[124,-2],[176,-5],[86,-2],[4,0],[44,0],[46,-1],[3,0],[-5,-225],[-2,-84],[-2,-119],[63,-1],[49,-2],[69,-2],[175,-5],[184,-10],[1,0],[174,-6],[-1,-99],[-6,-323],[-1,-24],[-6,-394]],[[65153,44611],[-55,1],[-199,4],[-139,5],[-7,0],[-160,5],[-65,2],[-84,0],[-85,3],[-87,3],[-150,7],[-46,0],[-78,3],[-271,5],[-93,5],[-55,-1],[-210,8],[-29,1],[-78,3],[-18,1],[-69,2],[-136,2],[-59,1],[-46,1],[-132,3],[-109,5],[-62,-1],[-55,-3],[-38,2],[-40,1],[-144,5],[-85,5],[-316,12],[-33,0],[-182,6],[-173,6],[-18,1],[-337,8],[-31,1],[-89,3],[-108,3],[-187,6],[-1,-186],[-3,-144],[-1,-88],[-2,-102],[-8,-351],[0,-1],[-2,-135],[-1,-45],[0,-71],[-4,-129],[-1,-146],[-1,-217],[-1,-75],[2,-83],[0,-47],[-1,-30],[3,-88],[0,-147],[0,-84],[0,-172],[-3,-152],[-62,-5],[-234,-17],[-107,-5],[-38,-1],[-16,-1],[-26,0],[-109,-1],[-288,11],[-192,6],[-23,3],[-302,36],[-11,1],[-66,-63],[0,-24],[-65,-27],[-20,122],[-29,4],[-68,-4]],[[59115,42277],[-28,123],[-1,3],[20,74],[12,19],[-2,7],[0,1],[-3,15],[-54,5],[-6,6],[-39,44],[-6,11],[1,5],[46,184],[3,9],[8,5],[12,-4],[18,-3],[3,-1],[8,10],[21,29],[22,58],[7,26],[-2,10],[-1,2],[-20,41],[-2,3],[-14,14],[0,1],[4,24],[9,46],[4,25],[1,4],[27,90],[7,13],[14,6],[2,0],[39,12],[45,24],[19,37],[4,8],[5,15],[-4,27],[0,6],[-4,19],[-5,21],[2,1],[49,24],[14,16],[21,35],[44,72],[1,3],[16,20],[73,81],[129,100],[2,2],[51,37],[3,2],[4,3],[3,3],[5,5],[5,5],[3,6],[4,10],[2,7],[2,6],[4,20],[44,59],[7,9],[40,49],[38,31],[46,34],[11,9],[7,8],[68,110],[4,10],[5,58],[4,50],[3,36],[1,14],[2,45],[11,227],[0,1],[0,1],[-2,17],[-58,108],[-5,8],[-22,13],[-1,1],[-21,9],[-1,0],[-8,3],[-26,-2],[-1,0],[-6,1],[-40,39],[-2,1],[0,2],[-5,6],[-18,8],[-84,13],[-9,0],[-8,-4],[-20,-47],[0,-2],[-1,-11],[-1,-6],[-8,-11],[-1,-1],[-1,0],[-11,-8],[-7,1],[-9,4],[-8,8],[-34,45],[-5,7],[-33,46],[-48,67],[-2,10],[0,16],[4,13],[6,17],[3,16],[0,27],[-3,8],[-7,10],[-10,8],[-10,4],[-63,7],[-43,53],[-1,2],[-6,7],[-2,6],[0,9],[0,10],[16,82],[3,4],[19,7],[3,8],[15,47],[25,150],[0,3],[6,73],[0,2],[-3,70],[4,23],[1,5],[-2,3],[1,7],[19,73],[7,11],[32,35],[9,8],[9,0],[20,-12],[1,0],[14,1],[30,12],[3,1],[1,1],[11,6],[2,6],[18,70],[148,585],[-11,178],[52,34],[-20,129],[-57,65],[-29,23],[-28,23],[-3,9],[-29,42],[-43,6],[-38,-8],[-23,-2],[-7,1],[-37,20],[-3,7],[-7,24],[-21,69],[-62,161],[-47,55],[-52,61],[-1,11],[-3,13],[-2,3],[-4,10],[-46,69],[-4,4],[-24,9],[-10,-3],[-15,-9],[-6,6],[-21,26],[-6,28],[-6,1],[-10,4],[-40,18],[-79,16],[-1,0],[-28,12],[-12,45],[1,10],[5,9],[15,15],[0,9],[-5,7],[-37,28],[-25,-18],[-6,1],[-42,69],[-7,26],[-2,4],[-3,5],[-19,16],[-6,3],[-8,-3],[-5,-2],[-41,53],[-1,17],[-2,3],[-6,8],[-33,15],[-72,-21],[-8,-5],[-10,-10],[-12,-28],[-2,-6],[-12,-8],[-2,170],[2,219],[2,158],[1,46],[5,210],[1,91],[3,30],[0,83],[0,100],[2,113],[6,317],[0,43],[3,142],[8,436],[1,55],[3,111],[5,42],[-1,110],[0,34],[0,100],[5,282],[6,223],[5,192],[8,262],[2,97],[1,32],[0,9],[-1,21],[6,125],[2,76],[5,210],[2,138],[9,499],[3,56],[3,134],[5,223],[7,209],[3,205],[3,43],[6,143],[1,19],[3,209],[2,162],[6,329],[2,136],[4,268],[1,53],[1,60],[0,41],[-146,5],[-41,1],[-54,1],[-158,4],[-608,16],[-65,1],[-2,0],[-60,5],[-209,4],[-77,2],[-47,1],[-331,6],[-76,2],[-64,1],[-273,5],[-3,118],[1,88],[0,37],[0,44],[1,128],[2,179],[2,240],[0,102],[1,55],[0,34],[1,177],[3,239],[0,207],[3,279],[4,318],[-3,46],[2,103],[1,89],[2,294],[1,134],[3,103],[1,30],[2,69]],[[59115,42277],[-22,1],[-72,2],[-362,15],[-90,4]],[[58569,42299],[-183,5],[-33,1],[-22,0],[-6,0],[-55,1],[-63,1],[-312,7],[-28,1],[-20,0],[-34,-3],[-22,1],[-21,5],[-42,-1],[-27,-1],[-34,1],[-20,4],[-77,1],[-79,2],[-11,0],[-18,0],[-319,7],[-215,7],[-33,-3],[-144,4],[-40,0],[-332,4],[-21,1],[-504,30],[-164,3],[-114,7],[-30,1],[-122,7],[-45,1],[-27,2],[-20,1],[-1,0],[-181,8],[-77,4],[-94,5],[-122,5],[-18,1],[-12,0],[-200,11],[-162,7],[-96,5],[-150,10],[-29,0],[-21,1],[-24,1],[-29,0],[-41,1],[-37,1],[-28,0],[-27,0],[-25,1],[-35,1],[-40,0],[-29,1],[-24,0],[-26,1],[-35,0],[-83,2],[-7,0],[-145,4],[-82,0],[-101,1],[-20,0],[-31,2],[-152,2],[-257,7],[-36,1],[-29,0],[-43,1],[-4,0],[-21,0],[-34,1],[-32,1],[-53,-1],[-194,8],[-22,1],[-8,0],[-63,3],[-109,-4],[-55,1],[-150,0]],[[52038,42490],[0,154],[1,106],[0,12],[0,40],[-4,107],[1,29],[0,101],[3,38],[0,5],[-1,27],[0,144],[1,30],[2,119],[2,224],[1,35],[1,92],[0,9],[1,59],[-3,35],[0,5],[-3,76],[-1,32],[0,57],[-1,43],[1,33],[0,1],[2,36],[0,30],[0,82],[-1,57],[-1,33],[1,38],[1,47],[0,23],[1,31],[0,58],[0,41],[5,38],[-1,308],[0,96],[0,43],[-2,154],[2,76],[0,76],[0,7],[0,327],[0,2],[0,29],[0,34],[2,404],[-1,40],[0,54],[-110,4],[-9,1],[-111,3],[-22,0],[-65,3],[-69,3],[-75,2],[-50,2],[-25,-1],[-28,-1],[-24,1],[-26,1],[-61,1],[-24,1],[-52,-1],[-34,7],[-131,4],[-60,1],[-17,0],[-151,4],[-36,1],[-148,4],[-28,0],[-48,1],[-135,3],[-45,-1],[-67,2],[-28,0],[-5,0],[8,30],[19,73],[20,73],[12,45],[9,32],[8,31],[9,32],[1,3],[15,49],[20,48],[30,76],[12,45],[7,39],[3,15],[13,65],[15,54],[16,59],[9,35],[11,38],[11,39],[14,48],[11,38],[10,35],[8,29],[3,29],[-3,36],[-2,35],[-3,32],[-8,38],[-5,29],[-8,28],[-8,30],[-4,29],[11,44],[10,42],[6,28],[7,39],[8,52],[1,4],[4,32],[10,80],[5,41],[0,3],[5,40],[7,48],[7,27],[8,43],[0,45],[1,28],[0,5],[0,33],[-1,8],[-1,22],[-3,35],[-2,34],[2,32],[-1,38],[2,29],[4,36],[1,7],[9,40],[14,29],[23,39],[21,37],[-8,27],[-6,30],[1,39],[2,49],[7,51],[20,30],[15,23],[20,24],[18,24],[24,30],[27,32],[13,23],[16,29],[26,50],[12,32],[25,75],[11,26],[15,24],[18,31],[12,26],[10,28],[9,33],[6,34],[3,41],[-1,36],[0,35],[3,242],[-1,40],[1,86],[0,48],[4,113],[11,310],[0,2],[10,595],[1,43],[1,99],[0,7],[5,190],[6,74],[1,45],[1,51],[13,529],[1,42],[5,204],[-14,193],[5,163],[1,22],[2,60],[4,172],[0,14],[8,194],[2,69],[2,45],[14,55],[1,44],[0,96],[0,117],[-2,65],[1,112],[3,107],[4,87],[1,41],[3,79],[2,73],[2,53],[0,15],[0,31],[1,31],[1,35],[7,273],[2,31],[0,53],[1,179],[3,182],[-26,2],[6,221],[0,29],[0,41],[3,66],[1,134],[0,9],[5,234],[1,29],[3,64],[1,33],[1,34],[0,1],[1,36],[1,42],[1,40],[1,33],[2,55],[1,35],[3,106],[2,69],[0,39],[1,6],[0,42],[1,33],[2,55],[1,68],[2,63],[1,46],[0,12],[1,30],[1,43],[2,57],[1,45],[1,36],[0,37],[2,54],[1,52],[2,41],[1,40],[0,13],[1,30],[1,32],[3,67],[1,47],[0,38],[0,33],[0,55],[0,30],[-5,21],[-4,16],[-63,-1],[-43,0],[-156,4],[-120,-1],[-38,0],[-129,1],[-22,-1],[-51,5],[-87,1],[-26,0],[-64,1],[-181,2],[-28,1]],[[52038,42490],[-210,7],[-5,0],[-17,2],[-50,2],[-29,2],[-39,1],[-32,0],[-40,1],[-27,0],[-117,5],[-23,1],[-74,2],[-136,1],[-61,3],[-37,1],[-79,4],[-47,1],[-26,1],[-212,6],[-23,0],[-44,1],[-21,-4],[-21,0],[-27,1],[-31,0],[-123,2],[-247,9],[-110,3],[-306,8],[-23,0],[-49,1],[-12,1],[-60,1],[-109,3],[-67,2],[-6,1],[-111,3],[-112,3],[-204,5],[-92,3],[-3,0],[-166,4],[-206,6],[-3,0],[-58,2],[-85,2]],[[48458,42587],[-19,1],[-4,0],[-57,1],[-102,4],[-62,1],[-20,1],[-95,3],[-31,1],[-370,10]],[[47698,42609],[3,99],[2,90],[2,119],[3,207],[1,113],[4,314],[1,102],[2,152],[0,1],[1,114],[0,6],[1,129],[0,109],[2,107],[0,37],[0,52],[2,98],[2,78],[2,53],[4,477],[1,42],[-68,3],[-22,1],[-29,1],[-50,2],[-3,0],[-164,1],[-28,1],[-14,0],[-17,1],[-81,1],[-4,0],[-26,1],[-12,0],[-67,1],[-53,1],[-2,0],[-90,2],[-53,1],[-54,2],[-2,0],[-87,-1],[-55,2],[-2,0],[-19,0],[-65,1],[-47,1],[-76,0],[-62,1],[-73,2],[-11,0],[-129,3],[-154,2],[-57,1],[-3,0],[-38,0],[-68,1],[-13,0],[-70,2],[-23,1],[-211,14],[2,58],[0,10],[2,33],[7,197],[2,51],[3,68],[3,87],[2,52],[5,168],[2,34],[2,74],[3,75],[6,134],[2,52],[0,59],[0,45],[-2,34],[-30,1],[-41,2],[-28,1],[-38,1],[-24,0],[-68,1],[-22,0],[-22,1],[-52,1],[-36,2],[-153,5],[-46,0],[-32,1],[-40,0],[-46,0],[-47,3],[-31,1],[-127,0],[-86,1],[-51,1],[-39,0],[-26,-1],[-3,0],[-51,1],[-97,2],[-30,-1],[-32,0],[-28,1],[-23,0],[-20,1],[-52,3],[-27,1],[-49,1],[-40,2],[-28,1],[-27,-3],[-186,5],[-24,0],[-69,2],[-33,0],[-33,1],[-41,3],[1,45],[1,30],[0,14],[0,35],[3,42],[-5,29],[4,40],[3,30],[2,29],[1,32],[2,65],[0,9],[2,40],[0,32],[2,44],[1,39],[5,218],[0,4],[8,246],[2,77],[5,79],[0,43],[0,29],[1,36],[-32,1],[-54,2],[-32,1],[-25,1],[-78,3],[-27,1],[-59,2],[-38,1],[-26,2],[-25,1],[-302,12],[-64,3],[-173,8],[-215,11],[6,31],[3,42],[9,154],[10,178],[-22,4],[-29,3],[-29,2],[-90,6],[-32,1],[-39,1],[-134,0],[-44,1],[-23,1],[-25,1],[-29,0],[-31,1],[-43,2],[-188,9],[-40,1],[-132,6],[-27,0],[-68,3],[-39,2],[4,188],[0,83],[1,33],[4,199],[2,179],[2,60],[12,294],[1,29],[1,82],[1,33],[1,65],[1,46],[2,53],[0,3],[1,73],[1,33],[1,35],[1,42],[1,52],[0,33],[3,62],[1,54],[1,43],[-2,190],[1,45],[2,58],[-69,3],[-130,4],[-125,5],[-161,7],[-38,1],[-536,21],[-145,6],[-307,11],[-42,-1],[-437,19],[-111,5],[4,141],[9,364],[-9,26],[10,26],[-1,29],[2,32],[2,27],[0,13],[2,30],[2,34],[-1,45],[2,55],[4,158],[2,84],[5,219],[2,96],[1,13],[11,458],[-3,86],[7,222],[11,335],[-61,2],[-138,3],[-188,5],[-160,5],[-135,4],[-143,5],[-238,6],[-68,1],[-65,2],[-49,2],[-69,3],[-53,2],[-121,3],[-106,2],[-59,2],[-48,2],[-56,1],[-23,1]],[[70743,53301],[-4,-303],[-2,-83],[0,-2],[-1,-84],[-3,-216],[-1,-42],[-3,-212],[-2,-110],[0,-49],[-2,-157],[-1,-121],[0,-10],[1,-37],[0,-260],[-1,-44],[-2,-173],[-3,-73],[-5,-126],[-1,-114],[-2,-198],[-2,-37],[-2,-144],[0,-3],[-2,-116],[-3,-211],[-5,-427],[-2,-78],[-1,-115],[-1,-150],[0,-1],[-4,-90],[31,2],[94,-2],[61,-2],[52,-1],[121,-3],[95,-2],[52,-1],[209,-6],[66,-2],[38,0],[71,-2],[162,-3],[17,0],[0,-16],[-1,-72],[-5,-294],[-1,-42],[0,-30],[-3,-158],[-4,-250],[-6,-212],[-12,-627],[-7,-420],[-9,-204],[-2,-63],[0,-11],[-3,-131]],[[71705,46963],[-2,-215],[0,-85],[-3,-290],[-4,-41],[1,-62],[-1,-78],[-2,-68],[0,-67],[3,-139],[-1,-139],[0,-44],[2,-37],[0,-1],[-2,-82],[5,-116],[-7,-393],[3,-30],[1,-32],[-4,-130],[-5,-54],[-3,-161],[-3,-225],[-2,-30],[-3,-410],[-3,-234],[-1,-156],[0,-4],[-1,-31],[-3,-29],[-3,-92],[-2,-256],[-2,-144],[0,-6],[-5,-177],[1,-108],[-1,-71],[-3,-269],[-1,-78],[-2,-127],[-4,-291],[157,-6],[210,-7],[120,-5],[70,-2],[72,-3],[1,0],[108,-4],[203,-8],[3,0],[56,-1],[45,-2],[47,-1],[0,-1],[-1,-123],[0,-48],[0,-122],[0,-150],[-3,-227],[-1,-54],[-2,-153],[-1,-47],[-1,-62],[-2,-120],[-3,-184],[-1,-107],[-3,-307],[-2,-77],[0,-29],[-3,-99],[-2,-181],[-1,-112],[-3,-216],[0,-2],[-11,-123],[0,-66],[1,-34],[0,-57],[-1,-44],[1,-228],[2,-445],[-4,-394],[-163,0],[-26,1],[-38,1],[-108,3],[-22,0],[-34,0],[-33,0],[-51,0],[-72,0],[-146,1],[-2,0],[-356,4],[-30,0]],[[71618,38120],[-18,20],[-7,4],[-5,-1],[-63,-16],[-27,-7],[-78,23],[-2,0],[-1,1],[-12,7],[-22,12],[-18,10],[-25,35],[-13,20],[-24,35],[-2,4],[-30,16],[-34,18],[-6,10],[-3,5],[-15,24],[-3,4],[-1,15],[-5,61],[-7,13],[-3,8],[-11,22],[-33,-17],[-4,-12],[-11,-36],[-20,-31],[-1,-2],[-20,-6],[-47,8],[-24,4],[-62,-19],[-29,-24],[-8,0],[-44,-1],[-9,0],[-4,19],[-4,16],[-7,33],[-1,24],[-1,25],[-2,31],[-37,61],[-16,7],[-14,7],[-12,5],[-108,15],[-53,16],[-42,32],[-19,64],[11,40],[2,9],[22,25],[41,46],[17,21],[10,49],[-12,60],[-10,25],[-14,5],[-32,11],[-24,11],[-133,60],[-24,11],[-18,27],[-9,12],[-95,146],[-30,46],[-62,50],[-30,13],[-23,11],[-11,21],[-6,12],[0,1],[1,14],[0,5],[4,21],[5,31],[3,50],[-14,65],[-1,7],[-25,54],[-35,75],[-38,108],[-3,8],[-2,139],[0,5],[-8,5],[-54,30],[-2,2],[-51,-11],[-19,-9],[-26,-14],[-21,-1],[-33,-2],[-1,0],[-1,1],[-71,26],[-10,4],[-4,5],[-43,61],[-50,70],[-17,23],[-5,8],[-76,43],[-85,34],[-7,3],[-31,47],[0,16],[-1,22],[0,58],[12,43],[1,1],[10,16],[0,1],[2,2],[17,11],[15,-4],[1,0],[65,-20],[71,-17],[38,14],[7,3],[35,43],[-3,45],[-14,20],[-6,10],[-6,10],[-58,54],[-12,11],[-26,24],[-3,51],[0,83],[1,52],[-4,38],[-31,60],[-43,15],[-23,-9],[-5,-2],[-26,-16],[-3,-2],[-2,-3],[-21,-27],[-4,-4],[-14,-15],[-5,-6],[-3,1],[-25,7],[-5,14],[0,51],[10,69],[0,5],[6,40],[-20,53],[-50,48],[-13,13],[-2,18],[-6,53],[-5,43],[-3,34],[-5,28],[-4,18],[-26,40],[-54,22],[-22,-18],[-10,-8],[-20,-16],[-60,-112],[-49,-125],[-47,-55],[-5,-2],[-34,-15],[-34,-4],[-42,34],[-53,48],[-5,4],[-54,45],[-44,20],[-21,9],[-72,-15],[-98,-77],[-24,-13],[-10,-5],[-33,-4],[-45,83],[-37,50],[-24,189],[-1,11],[7,31],[38,-2],[6,0],[26,-27],[59,-49],[54,-22],[35,2],[15,2],[29,36],[2,6],[12,64],[-11,54],[-2,11],[-5,5],[-57,61],[-33,35],[-39,3],[-100,-7],[-43,15],[-32,31],[-10,10],[2,64],[62,49],[36,28],[29,43],[28,127],[13,68],[1,2],[12,31],[38,46],[11,14],[21,25],[12,19],[4,6],[8,12],[0,14],[2,25],[-10,32],[-1,1],[-50,56],[-23,25],[-54,28],[-22,-7],[-13,-4],[-15,-5],[-5,-9],[-25,-47],[-5,-12],[-20,-50],[-30,-50],[-51,-29],[-72,-11],[-17,-3],[-54,29],[-15,21],[-84,119],[-22,36],[-30,33],[-55,14],[-31,-8],[-86,-24],[-2,1],[-6,0],[-45,10],[-45,27],[-29,37],[-2,3],[0,3],[-3,74],[20,70],[30,56],[12,36],[7,20],[7,33],[0,22],[0,15],[-5,8],[-19,26],[-1,3],[-22,23],[-31,-1],[-17,0],[-9,0],[-5,-3],[-49,-25],[-53,-14],[-7,1],[-53,7],[-37,50],[-6,9],[0,16],[2,41],[29,55],[48,63],[8,31],[29,120],[-7,93],[0,4],[-11,81],[-1,7],[11,33],[7,23],[6,52],[-3,11],[-7,21],[-16,11],[-10,0],[-114,-1],[-50,-1],[-32,-1],[-11,20],[-9,16],[-24,25],[-73,36],[-4,0],[-70,1],[-84,-25],[-21,-3],[-57,-8],[-53,7],[-26,4],[-61,24],[-58,42],[-4,11],[-26,87],[-3,10],[20,40],[23,25],[36,45],[50,61],[4,11],[25,62],[6,17],[-9,61],[0,2],[-12,80],[27,109],[9,44],[14,64],[7,36],[-4,80],[-26,1],[-126,5],[-34,-2],[-61,3],[-45,2],[-35,1],[-92,-1],[-31,2],[-95,3],[-108,-3],[-193,12],[-106,5],[-254,4],[-18,0],[-82,3],[-80,4],[-108,4],[-27,1],[-65,3],[-26,1],[-70,2],[-23,0],[-30,0]],[[84653,52320],[-52,-26],[-36,-3],[-50,-3],[-28,9],[-48,15],[-74,28],[-27,23],[-4,4],[-39,70],[-59,124],[-12,42],[-22,131],[-21,166],[-5,96],[0,66],[19,76],[29,85],[7,67],[-14,92],[-23,73],[-48,99],[-26,98],[-41,92],[-35,52],[-89,70],[-96,57],[-100,48],[-106,28],[-82,7],[-87,-26],[-103,-72],[-12,-9],[-98,-75],[-63,-65],[-37,-73],[-45,-101],[-12,-60],[-10,-167],[15,-172],[24,-98],[37,-84],[106,-154],[100,-191],[106,-208],[3,-4],[37,-72],[29,-64],[59,-142],[46,-115],[1,-14],[6,-80],[-29,-104],[-30,-67],[-23,-45],[-26,-9],[-88,-91],[-3,-4],[-27,-27],[-20,-30],[-72,-146],[-27,-99],[-1,-19],[-4,-142],[47,-243],[5,-26],[10,-43],[30,-74],[4,-5],[57,-75],[55,-93],[23,-84],[120,-270],[17,-58],[36,-128],[26,-228],[-8,-157],[-22,-67],[-29,-70],[-54,-86],[-60,-61],[-83,-83],[-106,-54],[-50,-18],[-86,-17],[-172,-34],[-56,-11],[-41,4],[-175,14],[-73,23],[-231,116],[-105,75],[-80,191],[-6,31],[-1,5],[-10,187],[3,137],[22,45],[54,85],[142,124],[124,102],[18,16],[61,70],[48,99],[3,90],[-36,150],[-37,103],[-102,264],[-92,283],[-47,28],[-58,10],[-98,-11],[-81,-19],[-90,-36],[-110,-80],[-52,-69],[-81,-153],[-49,-136],[-12,-81],[19,-149],[40,-156],[44,-156],[15,-74],[12,-48],[57,-71],[44,-116],[24,-101],[1,-39],[-20,-50],[-47,-77],[-3,-2],[-22,-22],[-38,-14],[-91,-36],[-80,-33],[-86,-37],[-65,-67],[-13,-3],[-95,-101],[-38,-80],[-54,-158],[-2,-36],[1,-17],[8,-34],[75,-112],[31,-46],[84,-107],[83,-120],[158,-222],[95,-65],[48,-29],[120,-41],[135,-19],[106,0],[144,20],[114,29],[153,46],[110,20],[25,1],[32,8],[89,10],[50,5],[133,-5],[103,-30],[101,-88],[78,-131],[27,-68],[14,-59],[-3,-119],[-9,-53],[-17,-83],[-19,-75],[-28,-85],[-68,-122],[-98,-139],[-93,-123],[-56,-61],[-31,-25],[-48,-36],[-59,-55],[-53,-53],[-58,-66],[-86,-114],[-45,-61],[-41,-87],[-73,-85],[-105,-103],[-81,-73],[-25,-21],[-46,-29],[-84,-34],[-85,-23],[-86,-12],[-101,8],[-77,21],[-54,30],[-79,60],[-83,138],[-29,59],[-19,66],[-16,108],[1,104],[11,117],[26,173],[36,97],[22,47],[67,72],[125,115],[24,27],[14,34],[13,32],[5,50],[-6,119],[-8,73],[-36,107],[-51,98],[-45,54],[-37,38],[-29,43],[-30,55],[-50,46],[-66,24],[-31,-3],[-73,-28],[-10,-6],[-42,-22],[-80,-72],[-6,-10],[-110,-188],[-57,-43],[-14,-8],[-42,-23],[-25,-39],[-41,-64],[-21,-50],[-14,-35],[-38,-75],[-33,-54],[-23,-52],[-2,-66],[24,-93],[5,-116],[4,-159],[6,-64],[5,-53],[8,-39],[28,-117],[19,-49],[8,-82]],[[81130,46847],[-124,-7],[-3,-1],[-715,-5],[-62,1],[-38,0],[-21,0],[-30,1],[-20,0],[-27,1],[-31,0],[-125,4],[-45,2],[-140,3],[-20,1],[-102,2],[-50,1],[-32,0],[-90,0],[-75,0],[-91,0],[-55,0],[-48,1],[-26,1],[-317,6],[-48,0],[-24,2],[-43,0],[-61,-1],[-23,0],[-299,1],[-27,0],[-109,3],[-126,-1],[-73,1],[-60,0],[-4,0],[-172,8],[-2,0],[-291,1],[-68,0],[-353,5],[-447,5],[-38,-3],[-56,3],[-65,1],[-102,0],[-377,6],[-336,5],[-121,3],[-30,1],[-21,1],[-190,0],[-21,1],[-186,2],[-49,1],[-24,0],[-84,0],[-130,1],[-38,0],[-39,0],[-102,-1],[-41,0],[-155,2],[-22,2],[-82,1],[-67,2],[-34,-1],[-135,3],[-230,5],[-170,3],[-97,2],[-255,6],[-170,2],[-21,1],[-149,4],[-205,3],[-24,2],[-55,-1],[-31,-1],[-229,5],[-85,3],[-73,3],[-36,3],[-155,3],[-217,5],[-108,2],[-53,1]],[[47698,42609],[-87,4],[-181,3],[-86,2],[-229,5],[-278,5],[-198,5],[-41,-1],[-160,3],[-139,3],[-257,5],[-108,3],[-46,0],[-176,3],[-38,1],[-31,1],[-100,1],[-135,3],[-102,1],[-35,1],[-51,1],[-32,1],[-90,2],[-159,3],[-37,1],[-102,2],[-30,0],[-3,0],[-51,1],[-19,1],[-8,0],[-90,2],[-64,3],[-9,-52],[-2,-110],[-2,-113],[0,-53],[0,-47],[-4,-236],[-4,-124],[-3,-110],[0,-37],[-4,-235],[-3,-138],[-172,4],[-220,5],[-45,1],[-100,3],[-85,2],[-43,1],[-98,2],[-31,1],[-146,4],[-49,1],[-101,2],[-48,3],[-41,2],[-76,3],[-58,1],[-151,4],[-122,5],[-107,2],[-227,2],[-127,3],[-98,3],[-113,2],[-261,6],[-39,1],[-31,0],[-36,1],[-78,2],[-34,1],[-20,0],[-98,3],[-35,2],[-40,3],[-27,1],[-61,1],[-79,4],[-127,5],[-58,-2],[-121,6],[-2,0],[-31,-1],[-93,7],[-181,10],[-2,-4],[-22,-26],[-14,-12],[-19,-11],[-20,-10],[-32,-9],[-17,-2],[-1,-1],[-9,-2],[-13,-7],[-2,-1],[-4,-6],[-4,-11],[-23,-102],[-1,-31],[9,-68],[1,-8],[-3,-14],[-9,-20],[-53,-105],[-27,-42],[-56,-72],[-19,-23],[-106,-120],[-49,15],[-36,35],[-42,-38],[-105,-152],[-6,-8],[-12,-37],[-1,-2],[-10,-35],[-5,-21],[0,-20],[6,-34],[5,-8],[14,-21],[1,-1],[28,-28],[56,-30],[1,-1],[29,-3],[0,-1],[5,-3],[7,-17],[2,-4],[5,-24],[0,-34],[0,-2],[-4,-14],[-5,-8],[-12,-6],[-12,-1],[-11,9],[-3,5],[-11,26],[-1,1],[-6,9],[-14,5],[-2,1],[-1,0],[-12,-2],[-52,-50],[-9,-10],[-1,0],[-66,4],[-35,-1],[-34,2],[-2,0],[-102,3],[-72,2],[-176,6],[-26,2],[-226,8],[-151,6]],[[39195,40341],[-143,5],[-17,1],[-16,1],[-63,2],[-112,4],[4,217],[0,7],[2,105],[1,100],[7,387],[0,3],[1,70],[0,48],[-2,141],[0,48],[2,128],[3,110],[3,121],[2,87],[0,97],[-44,3],[-120,8],[-40,1],[-71,0],[-208,3],[-7,0],[-23,1],[-146,2],[-92,1],[-61,-1],[-101,4],[-91,1],[-21,0],[-54,1],[-3,102],[0,46],[2,269],[3,314],[6,110],[-239,8],[-46,-3],[-92,1],[-154,6],[-29,0],[-151,2],[-39,-1],[-140,-1],[-44,-3],[-147,1],[-26,0]],[[36689,42898],[0,25],[0,39],[5,47],[2,49],[3,234],[2,90],[4,287],[0,33],[4,151],[0,34],[3,119],[1,73],[3,122],[1,36],[0,24],[0,7],[3,79],[1,66],[1,41],[0,68],[2,34],[-71,13],[-199,3],[-78,2],[-1,0],[3,113],[0,3],[3,122],[2,56],[1,69],[1,63],[2,54],[0,7],[1,81],[5,239],[-48,2],[-83,-3],[-143,0],[-99,2],[-12,1],[-154,5],[-42,1],[-21,1],[-26,1],[-80,1],[-74,2],[-75,1],[-41,0],[-56,0],[-28,1],[-28,-2],[-131,2],[-23,0],[-122,4],[-65,1],[-35,0],[1,57],[15,579],[3,97],[0,2],[3,102],[0,1],[0,43],[1,32],[1,59],[7,287],[-167,8],[-58,3],[-35,-1],[-27,0],[-25,-1],[-24,0],[-35,-1],[-42,-1],[-90,3],[-131,3],[-44,1],[-1,0],[-21,0],[-51,2],[-34,1],[-37,0],[-62,3],[-113,6],[-100,2],[-64,7],[-85,2],[-23,1],[-40,1],[-31,1],[-37,0],[-36,0],[-53,-6],[-21,4],[-27,0],[-33,1],[-35,-1],[-100,9],[-78,6],[-43,0],[-23,1],[-21,0],[-62,1],[-126,3],[-66,2],[2,66],[0,62],[-6,49],[1,40],[0,65],[4,65],[-2,42],[-1,30],[0,44],[5,48],[5,104],[5,83],[4,59],[1,38],[-4,38],[1,48],[0,51],[1,41],[2,80],[-2,36],[-6,29],[0,71],[0,2],[0,87],[0,33],[-1,50],[129,2],[51,1],[15,0],[1,80],[2,107],[2,151],[0,37],[1,84],[0,14],[0,85],[1,279],[1,111],[3,94],[2,107],[1,94],[0,70],[-2,141],[0,91],[-4,320],[-1,65],[1,245],[0,1],[1,122],[2,201],[-188,-3],[-276,-5],[-34,2],[-124,2],[-439,-1],[-360,-5],[-21,0],[-130,0],[-143,0],[-58,0],[-357,0]],[[36689,42898],[-46,-1],[-6,0],[-21,0],[-192,2],[-53,2],[-144,2],[-43,1],[-109,2],[-169,4],[-176,6],[-137,3],[-143,3],[-39,1],[-34,2],[-75,3],[-27,1],[-232,18],[-95,3],[-145,4],[-300,8],[-52,1],[-210,6],[-4,-172],[-1,-66],[-2,-142],[1,-32],[0,-31],[0,-127],[2,-52],[2,-76],[5,-225],[1,-33],[3,-66],[6,-132],[2,-30],[0,-50],[0,-36],[2,-65],[1,-17],[2,-48],[7,-130],[4,-85],[1,-37],[-27,1],[-51,1],[-48,1],[-22,1],[-38,1],[-12,0],[-56,2],[-17,0],[-50,1],[-11,1],[-26,1],[-67,2],[-36,1],[-53,2],[-6,0],[-33,0],[-7,0],[-30,1],[-15,0],[-24,2],[-63,2],[0,-64],[0,-25],[0,-19],[0,-11],[0,-23],[0,-16],[0,-33],[0,-48],[0,-37],[0,-57],[0,-30],[0,-65],[0,-33],[0,-39],[0,-56],[-1,-313],[22,-2],[-6,-218],[-1,-13],[-8,-285],[-2,-64],[-8,-260],[-44,1],[-72,0],[-43,3],[-164,5],[-33,7],[-217,4],[-102,2],[-44,-16],[-34,1],[-20,2],[-26,1],[-248,11],[-32,-1],[-333,7],[-348,8],[-353,-1],[-40,3],[-2,0],[-311,20],[-77,3],[-30,1],[-37,2],[-65,3],[-89,3],[-41,2],[-357,-11],[-159,5],[-49,1],[-39,3],[-99,7],[-53,4],[-334,8],[-30,0],[-301,7],[-208,6],[-64,2],[-23,1],[-428,-2],[-65,4],[-72,5],[-52,3],[-318,21],[-31,2],[-30,2],[-89,5],[-23,2],[-33,2],[-39,2],[-68,3],[-100,4],[-38,2],[-112,5],[-65,-1],[-112,1],[-171,2],[-72,4],[-94,0],[-134,-1],[-158,0],[-208,-1],[-81,4],[-43,2],[-64,3],[-241,11],[-178,8],[-446,19],[-1,1],[-26,-1],[-26,-3],[-31,-2],[-174,3],[-90,2],[-63,1],[-14,0],[-77,2],[-170,7],[-94,0],[-219,-4],[-95,-2],[-66,-1]],[[24345,39844],[0,62],[-1,33],[2,49],[1,40],[0,30],[1,29],[1,30],[-1,69],[2,120],[2,177],[1,74],[0,61],[0,2],[2,149],[2,163],[3,295],[1,123],[2,172],[3,337],[0,60],[2,145],[3,298],[0,67],[2,209],[2,120],[0,37],[5,157],[2,151],[2,92],[7,214],[2,69],[1,14],[2,68],[2,45],[0,69],[0,283],[0,40],[0,31],[1,57],[4,314],[1,89],[1,54],[1,49],[2,159],[2,104],[0,42],[1,124],[1,32],[1,110],[0,38],[4,394],[1,43],[0,1],[0,30],[0,44],[1,98],[0,98],[1,45],[1,294],[0,4],[1,99],[0,30],[0,2],[0,34],[1,33],[1,65],[1,50],[0,10],[3,172],[2,129],[1,60],[0,11],[0,42],[1,32],[1,80],[1,87],[0,5],[2,108],[7,277],[2,110],[1,44],[0,65],[1,60],[4,236],[54,0],[5,0],[22,1],[81,17],[0,43],[-1,69],[0,73],[0,103],[-1,114],[-1,84],[0,32],[-1,44],[-1,156],[-1,103],[0,91],[0,33],[-1,33],[-1,442],[0,196],[0,31]],[[24345,39844],[-5,-326],[-2,-166],[-1,-42],[-1,-79],[0,-78],[0,-11],[0,-71],[-2,-190],[0,-48],[-1,-95],[-1,-75],[-1,-54],[-1,-70],[0,-35],[-2,-82],[0,-38],[-1,-37],[0,-143]],[[24327,38204],[-24,0],[-56,1],[-136,1],[-264,6],[-102,7],[-20,2],[-29,2],[-30,-5],[-53,1],[-27,1],[-74,1],[-45,2],[-30,2],[-307,11],[-83,3],[-138,2]],[[22909,38241],[-33,1],[-31,1],[-22,0],[-28,1],[-34,2],[-29,4],[-38,1],[-30,1],[-27,0],[-20,0],[-34,0],[-79,6],[-29,2],[-19,1],[-3,0],[-33,0],[-29,0],[-46,0],[-147,6],[-93,4],[-23,2],[-139,4],[-37,1],[-21,1],[-49,1],[-104,5],[-44,1],[-32,1],[-22,1],[-21,1],[-20,1],[-21,1],[-21,0],[-22,1],[-20,1],[-25,1],[-30,-3],[-34,3],[-35,3],[-108,5],[-5,0],[-29,1],[-20,1],[-27,1],[-21,0],[-26,2],[-22,2],[-22,1],[-68,5],[-4,0],[-21,1],[-50,2],[-29,1],[-24,1],[-126,4],[-55,3],[-38,2],[-37,2],[-28,1],[-195,10],[-108,6],[-24,1],[-25,1],[-23,2],[-90,4],[-51,1],[-24,2],[-32,1],[-50,0],[-41,-2],[-161,2],[-196,2],[-225,2],[-21,0],[-79,1],[-22,0],[-57,1],[-127,1],[-37,1],[-26,0],[-247,12],[-194,9],[-208,10],[-64,4],[-341,24],[-65,4],[-1,0],[-300,19],[-143,-1],[-42,1],[-22,0],[-85,1],[-35,0],[-50,1],[-229,-3],[-48,0],[-56,-1],[-68,1],[-190,0],[-174,1],[-269,0],[-374,-16],[-158,8],[-184,9],[-350,12],[-179,4],[-689,24],[-23,0],[-4,1],[-96,2],[-10,0],[-54,2],[-65,2],[-20,1],[-89,3],[-32,1],[-21,0],[-107,3]],[[13725,38506],[9,688],[-7,28],[4,274],[4,259],[1,99],[0,73],[0,6],[1,207],[0,85],[0,52],[0,30],[0,54],[0,353],[0,3],[1,141],[0,97],[1,82],[2,396],[4,455],[0,6],[3,313],[1,84],[0,32],[1,109],[0,52],[0,41],[2,272],[13,48],[2,113],[1,97],[3,247],[0,32],[1,75],[2,110],[1,130],[0,52],[0,130],[0,43],[1,36],[1,39],[3,117],[3,186],[0,2],[1,74],[0,258],[1,496],[0,5],[13,451],[2,195],[3,222],[1,39],[0,42],[2,321],[6,354],[1,78],[9,690],[0,53]],[[13725,38506],[-1304,39],[-429,13],[-34,1],[-153,4],[-18,0],[-181,3],[-42,0],[-7,0],[-326,5],[-250,5],[-9,0],[-342,7],[-179,3],[-28,1],[-244,2],[-261,-4],[-157,0],[-281,1],[-65,0],[-163,7],[-177,8],[-121,5],[-28,2],[-105,6],[-17,1],[-257,16],[-124,4],[-252,8],[-216,8],[-414,13],[-147,-4],[-21,1],[-69,-1],[0,-37],[-1,-3],[-2,-120],[-1,-66],[-1,-45],[0,-55],[-2,-127],[-2,-232],[0,-80],[-1,-52],[-1,-106],[-4,-284],[-2,-191],[2,-103],[-6,-143],[-1,-52],[-2,-119],[1,-381],[-2,-97],[-1,-94],[-3,-78],[119,-4],[127,8],[-1,-126],[-1,-108],[-1,-65],[0,-55],[-2,-171],[-4,-139],[-1,-322],[0,-17],[0,-63],[1,-32],[0,-50],[0,-5],[1,-76],[1,-124],[1,-46],[2,-148],[0,-64],[1,-57],[4,-78],[2,-337],[0,-119]],[[7524,33997],[-40,0],[-101,-2],[-120,-3],[-28,-1],[-153,-3],[-48,-2],[-60,-3],[-50,3],[-33,-1],[-23,0],[-25,-3],[-41,-1],[-21,1],[-22,-1],[-25,-2],[-268,-4],[-120,-3],[-34,0],[-90,-3],[-228,-5],[-2,0],[-42,-3],[-150,-6],[-31,0],[-38,0],[-4,0],[-24,-3],[-29,3],[-21,-1],[-31,0],[-31,0],[-33,-2],[-63,-6],[-154,-3],[-67,0],[-247,-3],[-147,-7],[-156,0],[-226,-1],[-137,-1],[-221,-2],[-130,-1],[-160,-1],[-113,0],[-26,-1],[-8,0],[-735,-4]],[[2968,33922],[4,234],[7,348],[3,196],[10,394],[4,213],[6,309],[3,29],[2,80],[2,211],[5,317],[2,170],[1,126],[3,131],[11,460],[4,187],[6,262],[1,65],[2,144],[2,87],[1,67],[0,50],[0,13],[1,35],[1,94],[5,359],[2,35],[4,51],[4,49],[1,72],[1,66],[-1,61],[0,50],[1,33],[2,57],[1,114],[4,130],[0,30],[2,50],[5,223],[0,9],[11,489],[3,229],[1,45],[4,51],[2,40],[1,35],[1,38],[-1,43],[1,55],[5,298],[1,13],[4,207],[6,169],[1,46],[4,193],[3,154],[2,95],[0,2],[7,417],[8,384],[3,115],[1,59],[0,5],[0,82],[4,211],[2,60],[5,243],[1,61],[4,228],[2,71],[2,116],[2,104],[4,163],[0,38],[0,72],[2,68],[10,515],[6,308],[5,252],[4,182],[3,163],[1,66],[7,347],[9,308],[3,178],[2,104],[1,45],[3,40],[-1,86],[-1,25],[-2,53],[6,89],[5,255],[11,462],[1,40],[1,59],[2,85],[1,44],[1,50],[2,90],[2,69],[1,32],[3,170],[7,287],[1,54],[0,17],[0,21],[2,59],[10,440],[3,117]],[[81130,46847],[-15,-63],[-42,-91],[-11,-113],[-2,-26],[-20,-85],[-9,-127],[-3,-44],[2,-83],[17,-71],[6,-31],[16,-66],[38,-160],[60,-169],[88,-109],[11,-20],[12,-18],[1,-4],[119,-323],[144,-207],[108,-140],[39,-20],[60,-47],[50,-65],[58,-75],[121,-245],[2,-11],[-7,-200],[-1,-33],[-9,-125],[-1,-3],[-1,-6],[-28,-89],[-2,-4],[-12,-35],[-7,-13],[-4,-7],[-10,-21],[-26,-34],[-25,-25],[-37,-39],[-85,-87],[-23,-25],[-6,-3],[-29,-16],[-157,-93],[-101,-70],[-47,-60],[-4,-9],[-3,-5],[-40,-59],[-35,-40],[-31,-34],[-60,-82],[-18,-53],[-11,-46],[-3,-33],[-5,-56],[-16,-71],[-22,-70],[-16,-24],[-25,-59],[-2,-7],[-23,-98],[-2,-10],[-28,-119],[-2,-56],[-7,-133],[-2,-169],[9,-129],[6,-62],[11,-96],[2,-23],[50,-217],[62,-98],[103,-95],[28,-26],[65,-107],[67,-167],[39,-104],[20,-103],[7,-131],[-27,-141],[-48,-136],[-12,-24],[-34,-69],[-82,-138],[-170,-180],[-138,-121],[-97,-41],[-114,-114],[-352,-239],[-92,-44],[-95,-34],[-24,-8],[-36,-22],[-60,-33],[-72,-31],[-35,-9],[-26,1],[-45,0],[-75,-34],[-61,-43],[-96,-58],[-66,-96],[61,-113],[-19,-37],[-171,-340],[-41,-150],[-1,-139],[134,-385],[55,-218],[-15,-185],[-12,-32],[-52,-129],[-160,-68],[-176,1],[-159,78],[-143,194],[-11,204],[21,125],[18,111],[103,223],[100,205],[40,156],[50,229],[5,24],[13,112],[-3,0],[-144,-52],[-79,-42],[-38,-15],[-87,-27],[-88,-19],[-54,4],[-75,4],[-10,-6],[-111,3],[-67,-42],[-75,-22],[-6,-1],[-133,8],[-29,5],[-99,17],[-46,7],[-61,15],[-36,24],[-3,3],[-58,76],[-93,6],[-133,-16],[-51,-15],[-36,-39],[-123,-134],[-28,-55],[-29,-99],[-15,-308],[14,-63],[2,-9],[40,-52],[6,-8],[41,-54],[20,-12],[13,-8],[97,-106],[11,-15],[111,-144],[82,-163],[47,-168],[14,-52],[4,-17],[0,-9],[-5,-117],[17,-23],[-3,-107],[-85,-210],[-101,-188],[-52,-96],[-116,-131],[-135,-119],[-77,-16],[-161,11],[-70,9],[-234,30],[-152,21],[-25,3],[-87,-20],[-82,-48],[-97,-27],[-41,-4],[-52,-8],[-63,-28],[-48,-33],[-75,-78],[-17,-35],[-15,-56],[-36,-105],[-12,-68],[-8,-111],[-14,-99],[-34,-120],[-32,-95],[-26,-102],[-47,-353],[-1,-7],[-16,-85],[-36,-173],[-21,-49],[-13,-78],[-11,-100],[-25,-81],[-58,-118],[-26,-55],[-141,110],[-148,6],[-76,17],[-14,3],[-119,42],[-80,37],[-149,118],[-160,137],[-77,83],[-58,136],[-63,257],[-56,101],[-42,19],[-235,40],[-105,-29],[-79,-55],[-98,-145],[-44,-92],[-2,-119],[13,-185],[20,-129],[26,-86],[149,-252],[216,-328],[145,-129],[284,-201],[138,-97],[117,59],[40,20],[47,24],[9,-6],[105,-70],[86,16],[52,9],[123,71],[161,12],[205,-70],[126,-5],[125,20],[57,-6],[62,-11],[62,-16],[97,-41],[67,-73],[51,-108],[27,-186],[3,-161],[-30,-122],[-80,-168],[-10,-22],[-131,-184],[-123,-127],[-122,-77],[-124,-47],[-229,-15],[-222,59],[-149,85],[-125,139],[-117,76],[-64,53],[-111,130],[-116,140],[-131,80],[-27,16],[-3,2],[-145,30],[-93,-98],[-22,-59],[-52,-58],[-40,-1],[-62,-14],[-139,-146],[-79,-52],[-42,-23],[-12,-3],[-31,-8],[-43,-1],[-72,-75],[-51,-90],[-113,-197],[-23,-100],[-28,-159],[-9,-111],[-14,-28],[-1,-38],[-6,-35],[16,-37]],[[73651,31890],[-71,-1],[-4,0],[-75,-1],[-67,-1],[-58,-1],[-91,0],[-24,1],[-32,1],[-52,2],[-110,1],[-1,0],[-319,8],[-174,2],[-186,3],[-37,1],[-638,-1],[-62,0],[-37,0],[-93,1],[-21,0],[-31,1],[-47,0],[-34,0],[-179,2],[-44,1],[-80,-1],[-132,-4],[-48,0],[-17,1],[-81,0],[-139,-4],[-147,-1],[-120,-2],[-22,0]],[[70378,31898],[20,45],[6,49],[1,4],[2,1],[35,23],[24,41],[6,19],[6,17],[15,47],[26,88],[10,19],[5,12],[17,3],[24,5],[19,-1],[9,-1],[9,-10],[29,-34],[6,-4],[43,-31],[27,-2],[18,-1],[8,10],[26,30],[8,79],[1,127],[9,40],[2,12],[21,17],[35,27],[92,16],[72,-20],[27,1],[18,1],[61,30],[46,22],[6,27],[3,17],[2,8],[-4,1],[-50,8],[-50,3],[-8,11],[-15,23],[-14,45],[0,2],[-17,54],[-1,5],[-3,3],[-60,83],[-5,15],[0,1],[-12,37],[-5,15],[5,6],[25,40],[2,3],[76,36],[31,36],[7,9],[6,7],[-6,25],[-6,33],[-25,44],[-22,41],[-6,10],[-1,9],[-7,83],[-32,62],[-10,9],[-16,15],[-42,29],[-55,75],[4,11],[23,64],[2,7],[41,19],[48,17],[21,8],[17,41],[-22,31],[-12,17],[-64,33],[-17,13],[-28,19],[-8,46],[-4,19],[-3,16],[3,7],[27,83],[17,32],[81,143],[-1,37],[-2,68],[4,5],[11,17],[4,6],[3,0],[26,-1],[32,-22],[2,-2],[3,-6],[6,-10],[26,-46],[7,-13],[5,-4],[45,-38],[2,-1],[1,0],[57,-9],[23,-3],[67,52],[35,48],[15,86],[-13,129],[28,136],[44,42],[68,31],[13,7],[10,6],[9,5],[0,3],[3,18],[19,15],[12,10],[-8,31],[-1,2],[-4,14],[-2,3],[-69,83],[-9,14],[-23,31],[-10,16],[-1,8],[-5,97],[-6,67],[-4,39],[2,34],[7,47],[17,51],[14,87],[-13,41],[-20,9],[-64,31],[-79,23],[-38,48],[-2,5],[-35,62],[-27,71],[-3,41],[4,27],[3,19],[36,22],[20,-36],[3,-7],[17,-21],[6,-7],[20,-27],[30,-7],[35,9],[41,15],[57,49],[48,62],[2,8],[4,20],[-3,46],[0,1],[-1,1],[-5,8],[-17,22],[-52,16],[-18,5],[-3,17],[-5,19],[2,46],[16,33],[1,1],[31,25],[10,8],[2,3],[8,13],[7,12],[-9,30],[-30,-4],[-36,-4],[-10,1],[-84,10],[-25,19],[-31,84],[8,69],[28,63],[-6,30],[-2,14],[9,19],[9,18],[-7,39],[-5,33],[-3,15],[-15,14],[-4,4],[-15,15],[-39,17],[-8,11],[-10,13],[13,16],[30,38],[5,11],[51,119],[1,13],[4,103],[4,75],[0,4],[21,48],[21,14],[2,0],[24,17],[32,2],[35,-21],[27,-47],[14,-65],[-23,-74],[-6,-60],[23,-41],[1,-2],[4,0],[63,-11],[32,13],[8,3],[28,51],[-12,84],[-56,135],[-5,33],[-2,16],[5,22],[19,86],[-4,68],[-7,19],[-12,27],[-13,31],[-42,70],[-10,20],[-5,8],[14,25],[17,2],[5,0],[4,0],[12,-7],[40,-23],[5,-3],[55,-37],[8,-5],[3,1],[47,2],[15,1],[24,49],[2,3],[10,21],[0,83],[-39,70],[-47,29],[-20,-3],[-44,-9],[-11,-2],[-50,-13],[-9,-2],[-7,4],[-8,5],[-11,7],[1,9],[1,25],[61,57],[3,3],[6,1],[86,13],[1,0],[31,11],[30,11],[-5,6],[-28,29],[-1,1],[0,2],[-20,56],[19,70],[30,74],[0,1],[3,65],[0,16],[-17,24],[-41,55]],[[70378,31898],[-3,-64],[-18,-38],[-32,-68],[-1,-9],[-6,-33],[-11,-47],[-22,-83],[-24,-41],[-21,10],[-6,2],[-61,14],[-2,1],[-36,-1],[-23,-1],[-22,7],[-57,56],[-38,55],[-56,26],[-11,4],[-31,8],[-23,-15],[-21,-162],[2,-6],[10,-22],[35,-39],[12,-32],[-4,-10],[-4,-11],[-2,-5],[-2,0],[-26,-4],[-35,8],[-34,20],[-6,3],[-6,12],[-19,43],[-27,7],[-23,-10],[1,-19],[2,-18],[19,-57],[1,-2],[5,-14],[10,-30],[-7,-47],[-4,-30],[0,-5],[4,-87],[20,-79],[1,-73],[-19,-67],[-18,-10],[-35,-19],[-7,-4],[-40,6],[-25,4],[-29,4],[-18,16],[-27,24],[-36,66],[-3,6],[-24,55],[-2,5],[-3,4],[-31,40],[-14,18],[-61,31],[-7,-4],[-33,-17],[-60,-110],[-36,-30],[-20,-16],[-5,-4],[-146,-120],[-53,-48],[-24,-94],[30,-79],[1,-6],[27,-41],[6,-11],[-2,-8],[-7,-28],[-6,-12],[-11,-23],[-16,7],[-57,24],[-15,5],[-43,13],[-23,1],[-9,0],[-12,-11],[-8,-7],[-8,-7],[-3,-13],[-1,-5],[-6,-27],[20,-75],[26,-25],[54,-52],[9,-18],[9,-17],[12,-24],[0,-3],[4,-36],[-60,-106],[-38,-54],[-3,-4],[-58,-90],[-18,-28],[1,-35],[4,-175],[2,-97],[9,-79],[10,-85],[1,-6],[3,-23],[48,-67],[19,-3],[59,-10],[3,-1],[50,-11],[9,-2],[3,-5],[10,-18],[10,-17],[5,-9],[15,-26],[0,-26],[-3,-116],[-18,-41],[-15,-88],[0,-49],[32,-15],[46,-22],[8,-3],[31,-3],[19,-2],[123,-13],[35,-16],[16,-7],[12,-20],[37,-63],[34,-57],[61,-93],[0,-1],[1,0],[27,-82],[11,-33],[24,-75],[23,-75],[39,-92],[10,-66],[-4,-93],[-12,-56],[-3,-9],[-19,-51],[-20,-56],[-2,-47],[1,-8],[3,-31],[11,-29],[3,-8],[32,-42],[43,-26],[8,-5],[23,-8],[1,-1],[17,-2],[46,-5],[11,-1],[33,-16],[20,-19],[34,-47],[1,-2],[9,-11],[21,-77],[1,-13],[1,-12],[8,-13],[29,-50],[32,-42],[55,-46],[12,-10],[7,-6],[1,-1],[30,-53],[20,-57],[22,-66],[-2,-33],[-30,-28],[-65,-34],[-42,-55],[-4,-91],[-5,-37],[-16,-35],[-67,-40],[-47,-10],[-47,-5],[-17,-21],[-10,-33],[-12,-36],[-13,-46],[-1,-5],[0,-25],[-1,2],[-31,5],[-42,16],[-27,10],[-21,16],[-55,68],[-26,55],[0,17],[-3,55],[-4,43],[-7,47],[-35,110],[-26,52],[-22,28],[-42,55],[-35,23],[-98,10],[-81,-14],[-30,-13],[-105,-47],[-72,-39],[-29,-23],[-49,-15],[-93,-16],[-86,2],[-62,18],[-60,17],[-2,1],[-40,16],[-23,30],[-6,15],[-9,52],[-8,46],[-3,68],[5,129],[-3,53],[0,5],[-8,40],[-13,36],[-26,45],[-47,60],[-32,31],[-36,23],[-36,13],[-67,15],[-102,2],[-43,-12],[-29,-24],[-48,-39],[-53,-57],[-1,-1],[-53,-79],[-27,-53],[-34,-77],[-49,-138],[-3,-9],[-54,-98],[-19,-20],[-3,-3],[-56,-23],[-7,-3],[-5,0],[-68,-2],[-4,0],[-36,2],[-15,17],[-16,19],[-22,32],[-3,3],[-8,22],[1,13],[0,16],[-13,51],[-24,88],[-61,147],[-32,41],[-84,55],[-63,29],[-55,14],[-55,-1],[-46,-65],[-7,-7],[-142,-130],[-44,-34],[-55,-40],[-59,-45],[-48,-34],[-59,-41],[-22,-13],[-52,-23],[-54,-18],[-61,-17],[-35,-7],[-98,-6],[-98,-1],[-78,-3],[-38,-5],[-51,-9],[-56,-14],[-77,-26],[-64,-20],[-31,-12],[-46,-9],[-27,9],[-42,26],[-31,23],[-41,41],[-20,31],[-11,26],[-11,46],[1,45],[18,37],[19,24],[42,42],[118,117],[19,10],[34,13],[21,8],[54,15],[47,15],[111,41],[76,51],[84,83],[58,95],[43,90],[20,67],[3,17],[3,13],[-7,72],[-11,105],[-2,7],[-34,55],[-6,11],[2,57],[0,1],[-1,2],[-37,48],[-4,5],[-60,80],[-209,56],[-27,-5],[-157,-34],[-90,-85],[-64,-67],[-84,-106],[-149,-199],[-91,-113],[-61,-65],[-51,-40],[-66,-40],[-71,-14],[-27,-5],[-63,-12],[-5,-1],[-17,2],[-25,27],[-22,31],[-9,12],[-13,20],[-68,144],[-29,155],[-60,152],[-28,52],[-17,-11],[-23,30],[-148,153],[-229,238]],[[64269,28904],[-142,63],[-24,38],[-95,154],[-49,160],[-8,185],[60,555],[3,33],[-25,190],[-16,118],[-41,147],[-25,99],[-11,40],[-107,97]],[[63789,30783],[47,23],[2,0],[1,0],[24,3],[18,6],[25,15],[10,10],[29,28],[15,15],[18,18],[20,21],[68,68],[1,3],[1,5],[0,9],[-1,2],[-8,12],[-24,15],[-18,7],[-6,3],[-5,0],[-8,1],[-3,0],[-77,-15],[-2,-1],[-4,-3],[-9,-6],[-15,-27],[-10,-9],[-1,-1],[-6,1],[-1,0],[-9,6],[-4,2],[-5,7],[-2,11],[0,11],[10,52],[9,10],[21,21],[10,10],[1,1],[9,19],[1,2],[0,15],[0,8],[0,58],[0,47],[-12,9],[-15,19],[-6,17],[-23,131],[0,11],[6,17],[22,55],[-3,50],[-8,51],[-15,95],[-2,4],[-2,3],[-10,0],[-4,0],[-2,-1],[-9,-4],[-43,-22],[-5,-3],[-6,0],[-10,0],[-8,3],[1,14],[1,11],[1,10],[36,115],[-9,15],[-31,60],[0,48],[2,63],[1,17],[3,6],[3,2],[10,-4],[5,-2],[30,0],[8,4],[24,13],[2,3],[2,5],[0,4],[-1,4],[-3,7],[-1,2],[-12,12],[-21,21],[-1,1],[-21,17],[-1,0],[-4,4],[-63,13],[-1,1],[-32,19],[-1,1],[-1,23],[-3,16],[-13,73],[-1,7],[-5,11],[-9,10],[-30,17],[-10,2],[-109,19],[-29,3],[-32,3],[-1,0],[-24,-3],[-15,-8],[-21,-20],[-8,8],[-12,12],[-7,0],[-53,1],[-33,1],[-39,0],[-32,1],[-24,1],[-27,-14],[-12,-5],[-3,-8],[-10,-27],[0,-1],[-4,-10],[-35,-57],[-212,-114],[-11,-4],[-1,0],[-3,1],[-22,4],[-11,10],[-56,75],[-7,13],[0,12],[0,3],[-1,25],[24,276],[24,165],[0,3],[0,16],[0,12],[-3,8],[-1,1],[-1,4],[-15,17],[-4,2],[-22,12],[-5,3],[-8,-1],[-7,0],[-5,0],[-41,-7],[-16,-8],[-33,-18],[-18,-9],[-16,-28],[-31,-27],[-13,-16],[-6,-11],[-3,-10],[0,-43],[-2,-14],[-3,-8],[-4,-3],[-3,-3],[-6,0],[-5,-1],[-10,0],[-78,-25],[-1,0],[-14,0],[-19,5],[-5,3],[-4,2],[-7,4],[-11,13],[-10,27],[-1,7],[0,33],[23,77],[17,61],[-5,24],[-11,78],[-8,80],[-2,12],[-5,16],[-13,21],[-46,51],[-48,89],[-3,14],[1,18],[38,112],[12,19],[31,19],[14,12],[23,34],[4,9],[1,14],[-13,24],[-16,18],[-2,3],[-13,1],[-9,1],[-31,25],[-18,21],[-39,84],[-17,40],[-22,1],[-41,2],[-41,21],[-41,43],[5,112],[26,114],[36,82],[-60,164],[-26,108],[-2,8],[-2,81],[15,37],[16,61],[19,38],[-2,49],[-3,10],[0,17],[5,44],[0,29],[-9,32],[-19,40],[-14,17],[-3,3],[-99,114],[-6,7],[-14,15],[-59,36],[-5,3],[-16,7],[-23,-3],[-31,-8],[-9,-5],[-45,-22],[-1,-1],[-35,-11],[-61,-12],[-4,0],[-9,8],[-7,6],[-52,43],[-20,17],[-12,8],[-3,2],[-3,0],[-12,2],[-6,1],[-87,-3],[-74,-13],[-16,-8],[-20,-16],[-14,-15],[-13,-8],[-8,-2],[-37,-7],[-28,-6],[-9,-2],[-10,0],[-76,-24],[-2,-1],[-72,-93],[0,-4],[2,-60],[-2,-1],[-89,-54],[-6,-3],[-86,-49],[-12,-7],[-13,-6],[-3,0],[-66,-1],[-5,0],[-9,0],[-2,1],[-7,1],[-1,1],[-10,6],[-8,11],[-22,103],[9,48],[46,191],[25,75],[10,31],[0,5],[-126,4],[0,74],[-114,3],[-27,-16],[-28,-16],[-18,1],[-167,6],[-51,2],[-119,5],[-175,10],[-149,8],[-111,7],[-276,15],[-154,12],[-21,2],[-109,6],[-178,7],[-64,3],[-92,3],[-86,2],[-268,8],[-59,1],[5,261],[5,213],[2,88],[0,30],[6,273],[1,71],[1,71],[3,128],[7,394],[1,47],[1,46],[1,74],[0,23],[1,9],[7,385],[9,415],[6,295],[2,105],[4,228],[3,126],[1,97],[1,30],[7,343],[4,240],[5,47],[5,241],[7,323],[0,32],[3,105],[-1,180],[0,35],[1,84],[0,104],[0,38],[1,65],[1,51],[0,19],[1,12],[-1,30],[1,31],[0,23],[0,43],[1,50],[2,51],[0,62],[0,41],[1,37],[1,50],[5,290],[0,2],[1,45],[3,236],[0,1],[2,113],[3,83],[2,152],[0,5],[1,46],[1,36],[3,160],[5,157],[0,45]],[[39195,40341],[-5,-198],[-3,-213],[-1,-41],[-1,-62],[0,-40],[-2,-64],[0,-60],[-1,-30],[-1,-68],[0,-13],[0,-39],[0,-56],[-1,-37],[-1,-199],[-2,-40],[-3,-199],[-5,-212],[-1,-87],[-5,-216],[-3,-202],[-4,-186],[-3,-137],[-1,-83],[-3,-156],[-4,-192],[-2,-83],[-1,-70],[-7,-340],[-1,-86],[-1,-12],[-2,-100],[-2,-120],[-2,-107],[-2,-100],[-4,-193],[-2,-50],[0,-32],[-1,-41],[-4,-206],[-6,-326],[-4,-64],[-3,-243],[-55,0],[-3,-134],[-1,-70],[-2,-108],[-1,-79],[-2,-108],[-1,-54],[-4,-224],[-1,-67],[-6,-331],[-6,-317],[-1,-72],[-3,-187],[-2,-125],[-8,-449],[-5,-242]],[[39000,32771],[-105,3],[-254,7],[-192,6],[-55,1],[-346,10],[-61,1],[-58,0],[-98,3],[-35,1],[-28,0],[-69,2],[-24,-6],[-61,3],[-45,1],[-39,3],[-130,3],[-92,1],[-51,1],[-211,4],[-143,3],[-130,2],[-94,2],[-197,3],[-208,4],[-84,7],[-62,10],[-22,4],[-40,6],[-67,11],[-102,14],[-42,4],[-23,3],[-48,3],[-23,3],[-90,3],[-190,11],[-46,2],[-58,4],[-3,0],[-33,2],[-28,4],[-38,2],[-56,3],[-23,1],[-153,11],[-30,4],[-193,9]],[[34820,32950],[-87,2],[-412,10],[-62,1],[-113,4],[-27,3],[-24,2],[-144,8],[-25,1],[-10,1],[-32,1],[-28,1],[-32,3],[-40,2],[-163,9],[-24,0],[-24,1],[-62,3],[-98,8],[-96,4],[-60,2],[-62,4],[-30,1],[-153,9],[-15,1],[-92,4],[-133,6],[-16,1],[-5,0],[-27,0],[-20,1],[-72,1],[-84,6],[-117,1],[-51,1],[-176,8],[-74,2],[-81,4],[-30,1],[-6,36],[-30,12],[-26,1],[-22,-20],[-19,-37],[-17,-50],[-9,-29],[-15,-36],[-36,-23],[-19,-10],[-13,4],[-36,3],[-13,15],[-14,17],[-4,5],[-4,5],[-17,22],[-27,57],[0,2],[2,40],[0,1],[3,6],[19,30],[8,35],[-6,26],[-1,3],[-6,16],[-23,20],[-11,14],[-15,38],[-7,30],[-2,81],[-1,111],[1,15],[11,110],[3,13],[2,13],[33,67],[15,32],[7,28],[7,32],[35,64],[9,37],[0,3],[7,26],[1,4],[8,53],[2,14],[4,51],[2,9],[2,13],[8,14],[43,14],[34,11],[-5,17],[-1,4],[3,3],[94,88],[2,2],[11,146],[-3,11],[-10,44],[-32,124],[-11,6],[-28,32],[-41,48],[-14,17],[-5,13],[-3,11],[0,20],[0,1],[1,2],[3,10],[3,8],[8,10],[1,1],[1,1],[8,7],[7,3],[17,3],[2,1],[19,11],[7,11],[6,10],[3,11],[-4,20],[-6,8],[-1,1],[-1,0],[-8,5],[-5,2],[-45,5],[-4,0],[-23,-6],[-29,-12],[-13,0],[-11,2],[-20,11],[-11,13],[-2,4],[-3,9],[-1,15],[5,36],[2,11],[9,26],[38,49],[19,19],[16,10],[10,10],[7,12],[4,13],[7,42],[0,4],[4,32],[2,43],[0,3],[0,2],[-5,21],[-10,25],[-5,12],[-6,16],[-3,3],[-2,1],[-14,4],[-67,9],[-7,1],[-1,0],[-9,1],[-121,-5],[-8,-1],[-10,-6],[-1,-1],[-9,-7],[-4,-10],[-3,-15],[-11,-7],[-30,-1],[-35,2],[-13,1],[-78,64],[-4,3],[-20,-23],[0,-1],[-9,-3],[-79,-14],[-67,-7],[-142,-13],[-33,-23],[-66,9],[-26,4],[-2,-3],[-39,-2],[-16,4],[-2,6],[7,46],[3,9],[1,0],[18,38],[1,4],[0,16],[-4,4],[-55,15],[-9,-1],[-1,-1],[-5,-7],[-18,-31],[-6,-14],[-1,-1],[-1,-61],[-3,-7],[-4,-3],[-5,0],[-68,28],[-44,19],[-5,5],[-1,4],[-6,39],[1,33],[3,24],[4,14],[1,1],[2,4],[9,5],[17,6],[1,0],[7,4],[10,8],[1,5],[0,1],[-26,76],[-108,17],[-95,4],[-1,0],[-66,0],[-6,1],[-22,0],[-70,2],[-7,0],[-39,1],[-27,1],[-30,1],[-23,1],[-6,0],[-22,0],[-58,3],[-25,1],[-4,0],[-27,1],[-24,1],[-56,-2],[-102,3],[-43,2],[-23,0],[-62,1],[-137,5],[-61,3],[-71,4],[-21,1],[-59,2],[-25,1],[-44,2],[-102,3],[-21,-1],[-26,1],[-59,3],[-98,3],[-64,2],[-121,3],[-24,1],[-84,2],[-21,0],[-119,5],[-106,3],[0,58],[4,134],[0,27],[2,52],[1,33],[0,21],[8,237],[1,34],[1,43],[2,51],[1,33],[0,10],[2,68],[1,36],[-22,1],[-53,2],[-133,2],[-121,3],[-38,1],[-195,6],[-13,0],[-14,0],[-27,2],[-30,1],[-62,2],[-16,0],[-53,2],[-47,2],[-81,1],[-39,1],[-85,4],[-14,1],[-42,0],[-7,1],[-71,0],[-21,0],[-13,0],[-127,0],[-45,0],[-23,1],[-109,3],[-154,6],[-132,4],[-5,0],[-140,5],[-19,1],[-37,1],[-65,2],[-77,4],[-114,-1],[-85,2],[-29,1],[-66,0],[-53,2],[-49,1],[-86,3],[-62,2],[-39,1],[-54,1],[-168,6],[-74,0],[-39,0],[-41,2],[-99,6],[3,206],[2,146],[0,36],[1,343],[5,207],[3,142],[5,346],[0,2],[2,241],[-43,3],[-137,2],[-210,8],[-235,1],[-379,10],[-48,2]],[[48458,42587],[0,-104],[0,-124],[0,-89],[0,-17],[-1,-38],[0,-127],[0,-55],[0,-61],[0,-32],[0,-21],[-4,-367],[-5,-394],[-5,-441],[0,-3],[-1,-94],[0,-47],[0,-4],[-2,-115],[0,-1],[-1,-84],[0,-36],[-1,-110],[-1,-52],[-1,-77],[-2,-158],[0,-44],[-4,-304],[0,-37],[0,-1],[-1,-127],[-2,-85],[-1,-115],[-5,-224],[-2,-201],[0,-44],[-2,-178],[-1,-150],[-1,-96],[-1,-95],[-2,-183],[-2,-247],[-14,-216],[-1,-115],[-2,-80],[-1,-112],[0,-30],[0,-17],[-3,-78],[0,-122],[1,-78],[-2,-116],[-2,-109],[-3,-194],[-1,-97],[-1,-97],[-2,-99],[-2,-128],[-3,-199],[-2,-156],[-3,-117],[-2,-178],[0,-49],[-2,-82],[-5,-257],[-23,2],[-59,1],[-61,2],[-119,5],[-133,5],[-1,-63],[1,-152],[1,-250],[0,-43],[3,-90],[1,-50],[0,-87],[0,-230],[2,-122],[2,-102],[-1,-36],[-3,-235],[-1,-75],[-2,-83],[2,-62],[3,-94],[-2,-38],[0,-49],[1,-105],[-1,-39],[0,-96],[0,-97],[0,-36],[0,-51],[-1,-53],[0,-21],[0,-45],[-1,-48],[0,-45],[-2,-225],[0,-25],[0,-24],[0,-51],[0,-55],[0,-1],[-1,-67],[0,-19],[-1,-21],[0,-40],[5,-35],[-1,-88],[-1,-35],[0,-36],[-1,-81],[-4,-318],[-4,-314],[-4,-325],[-4,-405],[-1,-80],[0,-79]],[[47949,30273],[-338,-9],[-202,-8],[-197,-6],[-47,-4],[-148,-4],[-64,-5],[-37,-2],[-37,-1],[-5,-1],[-308,-13],[-86,-3],[-132,-4],[-37,-2],[-167,-7],[-31,0],[-86,-3],[-111,-3],[-43,-1]],[[45873,30197],[-9,115],[-4,9],[-4,0],[-18,24],[-1,0],[-51,9],[-2,1],[-30,15],[-11,-3],[-30,-7],[-2,0],[-2,0],[-13,0],[-9,3],[-2,0],[-3,5],[-2,10],[17,26],[5,12],[-2,13],[-3,9],[-25,48],[-12,19],[-8,6],[-14,3],[-6,-3],[-7,-5],[-29,-31],[-1,-1],[-42,40],[-3,2],[-22,21],[-5,4],[1,-6],[14,-81],[0,-20],[-1,-1],[-2,-5],[-6,-7],[-9,-6],[-1,0],[-1,0],[-4,-1],[-11,0],[-11,3],[-3,1],[-1,1],[-157,80],[-38,22],[-5,3],[-30,21],[-1,1],[-13,11],[-16,15],[0,2],[0,3],[-9,10],[-14,4],[-1,0],[-19,4],[-43,15],[-11,5],[-8,7],[-10,13],[-6,14],[1,14],[1,4],[3,6],[14,0],[7,0],[5,0],[1,-8],[7,-7],[1,0],[10,3],[35,23],[3,6],[0,5],[0,1],[-5,7],[-20,14],[-1,0],[-12,14],[-9,19],[-7,20],[-5,19],[-4,27],[-2,29],[0,6],[-6,46],[-1,6],[0,2],[-4,17],[-6,14],[0,1],[-1,1],[-5,11],[-8,10],[-1,2],[-1,0],[-7,7],[-62,34],[-4,2],[-35,90],[-2,5],[-2,0],[-3,0],[-5,9],[-7,13],[-4,14],[-2,18],[-1,35],[0,1],[-2,10],[-5,10],[-7,13],[-1,1],[-14,16],[-12,8],[-15,0],[-8,-3],[-8,-9],[-3,-9],[-2,-11],[0,-36],[-4,-7],[-9,1],[-12,8],[-28,20],[-11,21],[1,7],[10,81],[-13,24],[-11,21],[-71,55],[-2,7],[-7,17],[-10,26],[-3,8],[-8,0],[-25,-10],[-9,-4],[-5,11],[-19,41],[0,1],[-7,9],[-8,-1],[-7,-4],[-18,-25],[-2,-1],[-4,-2],[-13,-5],[-7,-2],[-28,-5],[-13,2],[-6,5],[-48,73],[-8,17],[1,21],[9,16],[6,3],[5,2],[65,26],[1,0],[-37,9],[-7,2],[-6,23],[-5,19],[0,1],[6,39],[-10,22],[-15,18],[-5,6],[-15,10],[-19,12],[0,1],[-39,-21],[-6,-35],[0,-1],[-48,-21],[-12,16],[-18,24],[-1,2],[-4,6],[-19,12],[-14,9],[-37,32],[-4,4],[-3,3],[-7,11],[-3,6],[-6,11],[-4,10],[-6,14],[-31,40],[-12,10],[-13,2],[-1,0],[-15,-1],[-15,3],[-1,1],[-35,27],[-34,97],[-17,22],[-4,-42],[-25,14],[-21,4],[-22,-20],[-9,32],[6,33],[-43,6],[-19,-18],[-28,-7],[-4,39],[-21,-11],[-24,-5],[-16,-20],[-17,19],[-49,15],[-18,-14],[30,-7],[-1,-30],[-8,-45],[-34,16],[-27,12],[1,2],[-2,2],[-5,5],[-8,5],[-16,2],[-18,-41],[-2,-3],[-10,-12],[-4,-3],[-1,-1],[-13,0],[-5,5],[-43,80],[2,23],[-47,37],[-40,0],[-68,6],[24,39],[24,45],[3,7],[0,11],[-10,14],[-1,1],[-7,4],[-9,-1],[-7,-10],[-2,-15],[-2,-11],[-3,-4],[-4,0],[-35,16],[-6,6],[-1,6],[-5,26],[0,6],[-83,33],[-3,1],[-80,34],[-2,1],[26,-36],[12,-17],[-24,10],[-53,22],[-7,3],[-9,4],[-6,-33],[-1,-4],[-17,11],[-8,5],[-10,2],[-42,-4],[-1,0],[-45,-35],[-19,-14],[-61,19],[-36,11],[-91,20],[-8,2],[-64,-30],[-5,82],[-1,15],[-1,12],[-9,60],[-9,102],[-22,38],[-8,3],[-78,3],[-27,10],[-508,31],[-58,4],[-280,17],[-112,4],[-173,5],[-44,3],[-292,11],[-215,8],[-35,1],[-230,8],[-51,2],[-83,4],[-66,3],[-327,14],[-39,-2],[-93,3],[-129,3],[-138,3],[-9,0],[-348,10],[-169,5],[-185,5]],[[63789,30783],[-38,44],[-219,249],[-124,-89],[-7,-5],[-117,-79],[-136,-92],[-261,-170],[-69,-23],[-75,-25],[-42,-10],[-54,-12],[-43,27],[-66,44],[-77,50],[-200,284],[-152,216],[-113,166],[-44,64],[-94,30],[-157,49],[-82,12],[-115,17],[-116,-76],[-14,-9],[-207,-211],[-22,-27],[-95,-115],[-109,-96],[-39,-34],[-159,-19],[-110,24],[-85,60],[-72,180],[2,249],[23,69],[49,149],[2,52],[3,84],[30,21],[2,1],[63,47],[1,0],[22,16],[14,5],[80,28],[10,4],[10,-4],[56,-20],[68,25],[23,27],[111,130],[-4,35],[-17,40],[-24,39],[-30,45],[-28,24],[-24,22],[-20,12],[-39,4],[-50,-3],[-39,-7],[-21,-4],[-25,-4],[-42,-15],[-42,-20],[-26,-15],[-24,-8],[-35,-18],[-38,-10],[-39,-15],[-15,-7],[-32,-17],[-41,69],[-40,21],[-74,66],[-183,27],[-7,1],[-161,16],[-15,2],[-102,14],[-28,20],[-129,91],[-133,196],[-13,20],[-44,66],[-25,37],[-189,233],[-172,95],[-2,1],[-13,8],[-173,145],[-12,10],[-194,110],[-137,78],[-263,31],[-157,-64],[-2,-100],[0,-3],[-4,-165],[0,-46],[0,-48],[0,-51],[-1,-73],[3,-131],[22,0],[-2,-202],[0,-212],[0,-80],[0,-23],[0,-8],[0,-17],[1,-27],[0,-18],[0,-15],[0,-7],[0,-6],[0,-26],[-1,-27],[0,-5],[0,-20],[0,-15],[-1,-67],[1,-47],[0,-60],[0,-23],[0,-47],[0,-6],[-1,-514],[0,-9],[0,-99],[0,-85],[0,-17],[0,-72],[0,-350],[0,-125],[-1,-260],[-21,-1],[-152,-2],[-91,-1],[-56,0],[-46,0],[0,42],[-1,102],[-1,339],[-1,346],[-62,3],[-41,2],[-94,3],[-65,2],[-46,0],[-1,0],[-46,0],[-171,1],[-187,0],[-352,10],[-94,-2],[-96,-2],[-22,-2],[-10,-1],[-141,-1],[-254,-17],[-84,-5],[-98,-5],[-78,-2],[-39,-3],[-41,-1],[-83,1],[-41,1],[-119,-4],[-124,-1],[-56,0],[-3,0],[-46,0],[-26,1],[-97,2],[-23,1],[-124,1],[-39,0],[-157,2],[-25,0],[-29,-1],[-53,1],[-23,0],[-64,0],[-179,0],[-82,0],[-78,0],[-189,1],[-55,0],[-109,0],[-124,1],[-116,-2],[-109,-2],[-2,-130],[0,-7],[-3,-246],[1,-248],[0,-87],[0,-119]],[[53570,30325],[-87,-1],[-80,-1],[-214,-2],[-214,-1],[-100,-1],[-2,0],[-195,1],[-40,-7],[-152,6],[-118,-1],[-99,-1],[-159,-1],[-7,0],[-37,0],[-238,-3],[-19,-1],[-284,-5],[-46,-1],[-29,0],[-328,2],[-115,-1],[-187,0],[-1,0],[-114,0],[-87,1],[-88,1],[-83,1],[-69,0],[-116,1],[-134,0],[-3,0],[-59,0],[-80,-1],[-10,0],[-15,0],[-80,-1],[-268,-5],[-246,-4],[-23,0],[-225,-4],[-65,-1],[-366,-5],[-33,0],[-167,-3],[-81,-1],[-115,-2],[-174,-5],[-1,-1],[-87,-2],[-24,-1],[-57,-2]],[[13725,38506],[-4,-275],[-4,-312],[-2,-102],[-1,-118],[-2,-102],[0,-30],[-2,-159],[-1,-36],[0,-11],[-1,-30],[0,-39],[-2,-134],[0,-33],[-1,-70],[-5,-306],[0,-60],[-2,-121],[-2,-126],[-1,-107],[0,-31],[0,-52],[-1,-37],[0,-44],[17,-153],[32,0],[35,-1],[47,-1],[29,0],[93,-2],[-1,-35],[-1,-76],[-1,-95],[-1,-163],[-1,-64],[-1,-46],[0,-86],[1,-63],[0,-76],[-4,-49],[-1,-30],[0,-30],[3,-28],[-2,-67],[-1,-17],[-2,-47],[-2,-81],[-2,-103],[-2,-94],[-2,-34],[-2,-34],[2,-36],[3,-31],[0,-3],[-7,-85],[-2,-90],[2,-32],[-5,-234],[0,-32],[0,-38],[-1,-37],[0,-36],[-1,-41],[0,-58],[0,-45],[0,-40],[1,-32],[197,-12],[155,-7],[186,-3],[45,-1],[62,-1],[2,0],[198,-3],[11,0],[13,-1],[80,-2],[69,-2],[34,-1],[59,-2],[24,0],[34,-1],[99,-4],[181,-9],[98,-4],[170,-7],[37,-1],[148,-7],[96,-4],[41,-2],[74,-3],[-4,-175],[0,-43],[1,-31],[-6,-86],[-3,-244],[-1,-82],[-1,-141],[-1,-58],[-1,-75],[-1,-60],[0,-31],[-1,-79],[-7,-402],[-2,-140],[0,-37],[-1,-86],[0,-40],[0,-2],[-4,-236],[0,-4],[-1,-79],[-1,-84],[-7,-404],[0,-32],[-2,-249],[-1,-46],[-1,-100],[0,-44],[0,-31],[0,-46],[-1,-75],[0,-79],[0,-88],[-1,-93],[-1,-219],[0,-268],[0,-3],[0,-128],[0,-8],[0,-295],[1,-179],[0,-33],[-1,-90],[0,-59],[1,-88],[0,-48],[1,-35],[-1,-49]],[[15983,28745],[-4,-154],[-1,-55],[-2,-43],[-5,-228],[0,-50],[-1,-36],[0,-8],[-1,-41],[-1,-70],[-1,-46],[-1,-62],[-2,-59],[-1,-45],[-1,-47],[-1,-32],[-1,-29],[0,-32],[-1,-38],[0,-4],[-1,-60],[0,-49],[-3,-144],[-4,-257],[0,-32],[-1,-30],[-1,-11],[-7,-175],[0,-30],[-6,-170],[3,-40],[3,-42],[-3,-94],[0,-42],[-1,-16],[0,-16],[-8,-148],[-4,-113],[-3,-96],[0,-3],[-1,-177],[-2,-80],[-5,-211],[-1,-189],[-3,-139],[-3,-140],[-4,-181],[2,-63],[-1,-40],[-3,-181],[-3,-103],[-3,-131],[-1,-69],[-2,-71],[-2,-67],[-1,-33],[-2,-52],[-2,-60],[-1,-15],[-5,-141],[-8,-197],[-3,-97],[-3,-111],[-2,-38],[-5,-147],[-1,-37],[-1,-46],[-1,-50],[-4,-158],[-2,-129],[-2,-81],[-2,-79],[-3,-139],[-3,-149],[-9,-404],[-3,-128],[-1,-34],[-1,-22],[-6,-245],[-4,-177],[-4,-145],[2,-69],[-100,3],[-44,1],[-225,6],[-69,3],[-169,6],[-72,3],[-5,0],[-25,1],[-128,4],[-42,4],[-24,1],[-109,1],[-82,1],[-39,1],[-107,4],[-2,0],[-114,5],[-87,3],[-45,2],[-14,0],[-34,1],[-56,3],[-67,1],[-2,1],[-97,3],[-83,3],[-5,0],[-228,8],[-457,23]],[[13283,21365],[-30,2]],[[13253,21367],[-4,39],[8,27],[-10,38],[-17,18],[-32,-1],[-26,-16],[-25,-25],[-22,2],[-15,41],[31,16],[16,16],[29,18],[6,29],[-12,34],[-18,29],[-19,33],[-40,-6],[-22,26],[14,27],[-13,25],[3,35],[-23,-7],[-15,30],[-2,39],[18,19],[20,4],[10,30],[-24,-4],[-17,25],[21,13],[9,41],[-24,10],[-19,31],[21,17],[25,-21],[31,4],[4,35],[29,-6],[21,10],[-11,12],[-9,10],[-18,27],[14,22],[27,-10],[27,-29],[27,14],[20,31],[-14,26],[-20,-7],[-23,29],[-18,30],[9,35],[23,21],[7,30],[4,28],[3,39],[-12,25],[-16,30],[-21,10],[2,-30],[-4,-29],[-22,11],[-27,22],[-28,17],[-23,11],[18,16],[18,21],[-1,33],[-21,27],[-33,-14],[-12,25],[1,59],[20,11],[6,-29],[6,-28],[24,20],[21,20],[18,22],[-1,39],[-19,17],[-17,27],[-14,26],[-34,35],[-16,27],[-19,18],[-7,29],[0,32],[-18,13],[-19,8],[-2,33],[13,24],[19,31],[-23,16],[-21,8],[-28,1],[22,17],[20,14],[-4,32],[-26,5],[-12,9],[2,35],[1,22],[-62,127],[-12,15],[-13,0],[-7,-5],[-33,-28],[-8,-7],[-47,74],[-85,30],[-6,6],[-123,201],[-15,55],[1,6],[24,47],[-21,6],[-7,2],[-71,50],[-9,7],[-1,1],[-13,3],[0,-4],[0,-19],[-13,-3],[-9,4],[-29,33],[-29,46],[-1,6],[2,7],[5,3],[21,15],[22,33],[5,8],[4,9],[0,12],[-25,75],[-2,4],[-80,107],[-16,21],[-23,30],[-21,29],[-11,12],[-17,19],[-7,8],[-44,13],[-10,0],[-100,44],[-6,2],[4,8],[8,17],[41,81],[1,22],[-23,-5],[-17,22],[-18,18],[-18,17],[-18,16],[1,31],[0,40],[0,16],[11,28],[-14,22],[15,21],[15,22],[18,26],[8,10],[33,71],[3,8],[-2,4],[-3,4],[-6,6],[1,2],[-5,11],[-2,31],[-21,1],[-25,6],[13,35],[-12,33],[-9,-28],[-17,-19],[-22,1],[1,30],[14,25],[-17,16],[-11,26],[-14,-22],[-21,11],[-19,-19],[-24,-9],[8,31],[-12,29],[-25,22],[-24,14],[-4,-30],[-21,4],[-14,26],[-18,18],[-15,19],[-10,-26],[-23,-11],[11,29],[-21,13],[-19,21],[-4,33],[-23,9],[-17,-19],[-5,-30],[-22,9],[-25,0],[5,29],[-21,21],[-22,11],[-27,3],[-20,7],[-37,17],[-23,13],[-23,11],[-12,23],[5,30],[-21,-6],[-9,29],[-27,13],[2,28],[20,19],[-23,9],[-7,28],[21,-5],[22,-7],[-5,28],[-3,31],[-18,24],[-17,20],[-9,28],[19,-11],[29,19],[-16,30],[-23,6],[-16,21],[-21,0],[16,22],[-6,31],[-18,-14],[-5,35],[2,40],[7,39],[21,14],[-19,15],[16,18],[10,38],[-1,29],[-24,-1],[-18,19],[-11,42],[-7,34],[-12,30],[11,25],[-20,2],[-24,-6],[7,-30],[-18,-19],[-20,5],[-8,32],[-10,28],[0,37],[5,28],[-17,16],[-20,16],[21,8],[-17,18],[-4,29],[-22,-5],[-20,8],[-15,34],[-15,34],[3,31],[-8,32],[-16,25],[-9,31],[-9,33],[3,30],[-14,22],[-15,34],[-10,25],[3,37],[10,35],[-10,11],[-7,8],[-5,6],[-5,7],[-2,6],[0,5],[0,5],[0,4],[3,8],[5,5],[6,-2],[75,62],[-29,29],[-3,2],[-14,15],[9,7],[15,13],[4,7],[-1,16],[-4,11],[-11,35],[-3,3],[-2,2],[-7,-2],[2,85],[4,16],[1,7],[3,2],[37,29],[7,8],[25,40],[0,10],[0,2],[-3,137],[-38,135],[2,120],[1,20],[3,-14],[7,-29],[5,-6],[10,2],[2,0],[2,2],[132,22],[8,77],[5,49],[4,9],[0,5],[0,1],[0,15],[-15,88],[-4,19],[-14,85],[-5,7],[-10,-3],[-25,-26],[-18,17],[-18,22],[-18,16],[-8,30],[34,-6],[-1,32],[-29,16],[-10,27],[-23,8],[9,26],[-15,31],[-20,11],[-17,18],[6,29],[20,29],[18,12],[25,10],[1,29],[-21,7],[-10,38],[3,34],[-1,38],[2,31],[-1,34],[-19,13],[-3,30],[-6,30],[14,13],[-50,76],[-6,8],[0,1],[1,2],[14,25],[42,76],[3,5],[-35,-7],[-4,4],[-26,24],[-5,4],[0,1],[10,18],[1,9],[-4,10],[-5,9],[-10,6],[-3,2],[-3,3],[-8,-3],[-3,-1],[-15,-11],[-7,2],[-4,3],[-3,8],[-3,8],[-14,35],[-1,1],[-1,8],[-10,60],[0,1],[-2,37],[50,6],[33,20],[4,6],[0,14],[-13,46],[-11,9],[-44,25],[-4,2],[-43,22],[-2,1],[-12,7],[-19,16],[-9,13],[-7,28],[0,1],[-27,60],[-3,6],[3,13],[-3,14],[-71,141],[-1,3],[-43,145],[-5,17],[0,14],[12,19],[8,3],[27,1],[8,5],[4,19],[-1,18],[-6,16],[-47,26],[-7,4],[-22,12],[-5,0],[-5,5],[1,10],[2,17],[6,63],[8,80],[9,43],[19,90],[1,2],[46,72],[-1,4],[-13,70],[-4,5],[-17,21],[-11,22],[-3,5],[-13,24],[-13,24],[-5,11],[1,24],[0,41],[1,9],[1,28],[5,16],[2,6],[62,105],[8,14],[10,10],[11,6],[39,20],[9,4],[3,2],[81,8],[24,3],[5,10],[2,17],[8,101],[-2,12],[-12,26],[-15,34],[-8,15],[-8,13],[-14,17],[-10,6],[-7,-3],[-12,-7],[-60,-31],[-5,-2],[-29,-1],[-38,-1],[-20,44],[-21,22],[-5,6],[-8,9],[-12,8],[-2,1],[-21,5],[-38,6],[-12,7],[-4,4],[-4,4],[-53,60],[-2,3],[-22,32],[-2,2],[2,10],[9,49],[2,7],[10,9],[13,8],[2,1],[29,-14],[1,0],[31,-11],[7,2],[5,9],[10,135],[0,1],[12,33],[4,12],[44,66],[5,12],[50,176],[28,95],[3,13],[9,49],[0,14],[0,3],[-1,3],[-2,6],[-9,13],[-6,4],[-9,6],[-38,18],[-28,3],[-4,0],[-18,13],[-15,15],[-25,27],[-17,21],[-22,35],[-5,9],[-12,21],[-3,11],[-1,0],[-20,70],[0,8],[0,10],[3,11],[31,49],[130,209],[1,2],[31,45],[10,14],[2,2],[49,55],[1,2],[-6,2],[-7,3],[-84,57],[-11,11],[-2,2],[-11,11],[-22,27],[-15,17],[-5,4],[-10,10],[-26,26],[-23,18],[-6,2],[-24,10],[-56,22],[-17,6],[-46,10],[-34,4],[-35,16],[-7,3],[-6,9],[-1,3],[-3,9],[0,35],[3,22],[0,1],[5,10],[5,4],[30,21],[17,13],[11,2],[1,-1],[17,-5],[17,-6],[24,-11],[7,-7],[5,-4],[5,-4],[5,-16],[5,-2],[15,2],[4,0],[2,1],[3,1],[11,4],[2,2],[11,10],[6,5],[12,13],[11,45],[-3,22],[-14,25],[-17,9],[-14,4],[-43,10],[-39,36],[-2,2],[-2,2],[-2,2],[-1,5],[1,69],[81,91],[4,18],[6,21],[-1,126],[-31,33],[-11,11],[-37,11],[-21,1],[-43,19],[-18,22],[4,46],[13,15],[15,17],[28,6],[25,28],[1,30],[0,31],[-12,15],[-2,54],[15,18],[38,45],[7,14],[1,50],[-10,11],[0,9],[-5,77],[-4,76],[13,27],[9,19],[38,38],[28,32],[29,67],[1,54],[-24,26],[-32,36],[-14,15],[-67,41],[-26,9],[-21,4],[-27,5],[-57,-3],[-30,-2],[-404,12],[-254,9],[-317,11],[-38,-1],[-22,0],[-288,4],[-189,2],[-120,0],[-70,0],[-42,0],[-27,0],[-131,1],[-68,0],[-53,0],[-228,-2],[-177,1],[-191,0],[-23,0],[-46,0],[-12,0],[-10,0],[-55,0],[-23,-2]],[[22909,38241],[0,-71],[0,-40],[0,-62],[-1,-75],[-1,-38],[-1,-91],[-1,-65],[-1,-13],[0,-39],[-3,-166],[-4,-221],[0,-101],[4,-147],[0,-3],[0,-47],[0,-7],[0,-91],[0,-3],[-5,-147],[-4,-104],[-2,-67],[-4,-168],[-1,-44],[-1,-34],[-1,-93],[-1,-31],[0,-8],[-4,-147],[0,-38],[0,-2],[-1,-92],[-2,-85],[-1,-58],[0,-105],[-43,1],[-23,0],[-39,1],[-128,4],[-44,2],[-122,5],[-26,-1],[0,-105],[1,-45],[4,-30],[-2,-32],[-1,-33],[-1,-63],[1,-72],[-1,-79],[1,-61],[0,-48],[-1,-36],[-3,-74],[-2,-48],[-2,-51],[-3,-82],[-3,-70],[-1,-40],[-1,-42],[0,-74],[0,-46],[53,-20],[77,-28],[3,-1],[37,-7],[46,-9],[8,-56],[-6,-11],[-1,-6],[0,-1],[2,-7],[6,-9],[13,-20],[11,-11],[5,0],[1,0],[4,2],[14,20],[2,7],[0,1],[3,4],[5,8],[3,2],[2,1],[17,0],[37,-11],[8,-1],[58,-5],[4,0],[10,0],[21,1],[25,13],[17,4],[1,1],[6,-2],[80,-22],[81,-22],[6,-2],[37,-11],[34,-9],[54,2],[33,1],[22,1],[2,31],[4,53],[14,33],[2,5],[8,10],[5,7],[1,2],[11,8],[3,-5],[23,-43],[34,-39],[90,-103],[7,-8],[1,-2],[9,-6],[4,0],[2,0],[3,0],[4,4],[2,10],[1,19],[4,19],[2,8],[7,9],[28,12],[29,9],[35,11],[1,0],[7,1],[5,-1],[3,-3],[12,-53],[0,-11],[-2,-5],[-5,-8],[-31,-24],[-55,-46],[-2,-2],[-14,-28],[-17,-40],[-2,-9],[-5,-57],[-2,-10],[-4,-6],[-3,-4],[-10,-9],[-62,-27],[-17,-11],[-17,-19],[-86,-103],[-1,-3],[-1,-20],[11,-15],[25,-31],[28,-36],[20,-25],[20,-25],[57,-60],[36,-40],[17,-31],[14,-26],[12,-22],[-9,-25],[-18,-5],[-1,-3],[-20,-7],[-52,-19],[-18,-9],[-21,-11],[-11,-6],[-3,-6],[-1,-6],[6,-8],[8,-5],[34,-44],[21,-27],[32,-41],[-46,-10],[-21,-23],[-3,-22],[-6,-51],[-19,-167],[0,-12],[12,-125],[5,-50],[1,-15],[18,-22],[42,-26],[26,-19],[21,-18],[10,-18],[10,-34],[5,-19],[37,-41],[4,-8],[24,-44],[4,-7],[-12,-3],[-65,-13],[-7,-1],[-18,-58],[-12,-44],[-9,-44],[-5,-27],[-6,-30],[-39,13],[-14,5],[-57,19],[0,21],[-5,43],[-3,8],[-4,8],[-7,10],[-13,9],[-8,3],[-18,-2],[-14,-9],[-3,-4],[-1,-3],[-4,-4],[-1,-14],[11,-30],[7,-22],[3,-5],[3,-4],[3,-3],[13,-6],[3,-1],[16,-22],[5,-7],[7,-56],[11,-91],[2,-36],[1,-5],[-1,-3],[-2,-3],[-6,-10],[0,-1],[-3,-3],[-11,-8],[-2,-1],[-4,-1],[-6,-13],[-1,-13],[2,-7],[6,-6],[9,-4],[16,0],[23,6],[36,15],[9,6],[29,4],[31,-11],[33,-7],[40,-13],[11,-14],[3,-12],[-8,-14],[-6,-11],[-27,-18],[-6,-3],[-9,-5],[-33,-14],[-19,-9],[-15,-1],[-9,-1],[-1,0],[-4,-4],[-5,-17],[0,-3],[-1,-16],[1,-10],[0,-8],[10,-34],[4,-9],[10,-24],[1,-1],[8,-10],[9,-6],[15,-6],[9,-3],[4,-1],[29,-4],[64,-7],[10,-5],[0,-2],[0,-25],[-19,-62],[8,-63],[4,-26],[13,-44],[2,-10],[-28,-57],[-19,-43],[-4,-50],[21,-96],[30,-108],[18,-60],[3,-27],[1,-40],[0,-10],[-4,-49],[-2,-48],[12,-34],[1,-2],[7,-19],[20,-103],[2,-17],[-3,-13],[-7,-25],[-22,-20],[-39,-44],[-14,-35],[-3,-49],[10,-51],[49,-100],[48,-62],[42,-51],[8,-13],[-1,-71],[-1,-22],[-3,-79],[1,-24],[22,-87],[6,-23],[28,-90],[-18,-56],[-8,-40],[0,-26],[10,-52],[16,-38],[24,-29],[33,-26],[32,-28],[47,-50],[36,-37],[41,-43],[33,-34],[59,-60],[47,-50],[49,-50],[10,-11],[16,-16],[14,-20],[3,-4],[3,-7],[5,-18],[5,-23],[1,-1],[4,-24],[8,-16],[31,-67],[2,-6],[3,-10],[8,-28],[3,-15],[1,-3],[15,-109],[1,-7],[3,-31],[0,-1],[-1,-16],[-2,-5],[-3,-7],[-2,-4],[-12,-19],[-3,-8],[-3,-11],[-3,-36],[0,-6],[0,-9],[-1,-32],[0,-3],[0,-29],[0,-11],[6,-10],[4,-5],[3,-4],[6,-3],[78,-8],[6,0],[8,-1],[45,20],[9,4],[5,-17],[2,-11],[3,-8],[1,-6],[0,-2],[1,-13],[0,-5],[0,-14],[0,-6],[-1,-7],[-9,-10],[-1,-1],[-5,-3],[-18,-1],[-8,-3],[-6,-5],[-6,-11],[-4,-37],[-27,-27],[-10,-11],[-2,-3],[0,-1],[-2,-4],[0,-13],[5,-12],[10,-11],[10,-6],[125,-36],[25,-7],[20,-6],[4,0],[13,0],[11,0],[44,-65],[1,-1],[44,-51],[74,-75],[3,-2],[1,-2],[53,-80],[5,-9],[20,-61],[40,-87],[8,-4],[5,-7],[0,-12],[0,-2],[-3,-13],[-4,-12],[-8,-20],[-7,-10],[-25,-42],[-2,-5],[-1,-12],[2,-6],[6,-3],[7,-2],[3,1],[15,7],[10,4],[8,4],[-2,-11],[-9,-58],[0,-4],[0,-16],[0,-7],[2,-8],[2,-5],[15,-65],[0,-1],[2,-3],[1,-2],[4,-4],[6,0],[4,2],[6,9],[3,10],[0,1],[6,11],[3,4],[9,2],[5,-4],[1,-2],[1,-14],[-2,-5],[-5,-12],[-11,-19],[-31,-36],[-12,-7],[-7,0],[-11,0],[-9,2],[-9,2],[-4,-16],[8,-11],[5,-7],[2,-2],[1,-1],[2,-2],[19,-15],[27,-9],[24,1],[9,-3],[6,-6],[1,-9],[-8,-66],[-2,-16],[0,-4],[-6,-14],[-11,-22],[-6,-11],[-1,-16],[2,-13],[4,-10],[12,-22],[6,1],[21,2],[69,7],[4,0],[-4,-3],[-97,-61],[8,-22],[10,-14],[36,-50],[20,-28],[0,-1],[-6,-51]],[[25022,27259],[-6,0],[-66,15],[-28,-3],[-36,0],[-2,0],[-36,2],[-47,2],[-11,8],[-14,20],[-5,3],[-8,2],[-81,-2],[-11,-3],[-6,-5],[-3,-2],[-3,-9],[0,-11],[6,-11],[2,-3],[16,2],[31,3],[6,-2],[1,-2],[2,-2],[5,-5],[4,-9],[0,-1],[0,-8],[-13,-27],[-36,-76],[-9,-19],[-8,-7],[-13,-3],[-5,4],[-3,3],[-2,7],[1,7],[1,5],[0,6],[0,18],[-1,9],[-1,8],[-3,7],[-7,8],[-11,8],[-23,6],[-4,0],[-6,-4],[-8,-13],[-14,-43],[-3,-10],[-54,-13],[-2,0],[-51,25],[-13,0],[-119,-16],[-8,2],[-44,6],[-95,-24],[-11,-3],[-40,-23],[-36,-20],[31,43],[4,6],[-34,38],[-3,2],[-31,15],[-111,55],[-63,8],[-25,4],[-5,1],[-6,-13],[-9,-12],[-13,-10],[-18,-5],[-7,1],[-8,3],[-112,37],[-9,3],[-49,-16],[-10,4],[-9,4],[-3,1],[-79,51],[-26,17],[-11,14],[-12,26],[-6,10],[-11,15],[-14,9],[-8,3],[-12,-2],[-11,-9],[-11,-14],[-7,-12],[-43,-87]],[[23350,27256],[4,85],[1,15],[-1,5],[-1,3],[-3,10],[-7,8],[-52,54],[-8,6],[-9,2],[-4,-2],[-4,-9],[-2,-6],[1,-17],[2,-3],[4,-9],[1,-1],[13,-16],[6,-11],[1,-6],[-3,-8],[-5,-4],[-14,-6],[-56,-25],[-22,-9],[-18,-2],[-8,6],[-9,9],[-11,19],[-2,6],[-2,8],[0,19],[4,13],[6,22],[3,15],[0,14],[-3,12],[0,1],[-8,8],[-8,5],[-13,1],[-26,-12],[-13,-13],[-52,-74],[3,-5],[25,-48],[2,-13],[-5,-12],[-41,-38],[-28,-17],[-12,0],[-27,2],[18,-67],[4,-13],[0,-1],[0,-1],[1,-23],[-5,-12],[-6,-3],[-9,-2],[-1,0],[-3,2],[-6,7],[-18,23],[-17,22],[-1,1],[-6,19],[-3,17],[-3,11],[-74,26],[-12,20],[-8,5],[-7,2],[-9,-4],[-5,-8],[-2,-3],[1,-13],[1,-6],[2,-4],[2,-8],[-1,-9],[0,-4],[-4,-4],[-4,-5],[-25,-7],[-22,0],[-10,6],[-8,7],[-38,34],[-4,5],[-46,-50],[0,-3],[-23,-140],[4,-11],[1,-2],[0,-12],[-2,-7],[-1,-1],[-2,-3],[-5,-7],[-6,-4],[-27,-13],[-19,-3],[-2,-2],[-37,-33],[-1,-7],[-4,-5],[-3,-4],[-7,-3],[-12,-1],[-8,2],[-27,20],[-12,6],[-29,8],[-17,1],[-9,-2],[-5,-1],[-10,-3],[-41,-22],[-34,3],[-1,0],[-59,-10],[-11,-1],[-56,-24],[-42,-17],[-17,-1],[-9,-1],[-22,4],[-6,2],[-13,6],[-23,3],[-21,-1],[-17,-5],[-20,-12],[-13,-9],[-11,-9],[-4,-4],[-38,4],[-1,1],[-4,0],[-15,43],[-12,40],[-2,70],[1,68],[0,38],[-3,21],[-1,6],[-6,20],[-10,13],[-5,7],[-54,-1],[-15,-4],[-16,-9],[-14,-18],[-6,-16],[-9,-23],[-2,-8],[-9,-14],[-12,-6],[-22,-6],[-50,-12],[-3,-1],[-18,-3],[-28,7],[-30,12],[-13,9],[-3,2],[-68,49],[-32,24],[-14,16],[-6,15],[-1,7],[-9,12],[-5,3],[-19,0],[-50,-3],[-21,5],[-33,9],[-24,13],[-4,2],[-10,8],[-6,8],[-2,8],[0,1],[-2,3],[-22,8],[-19,-16],[-26,-2],[-23,2],[-19,-19],[-22,6],[-2,32],[17,20],[14,21],[-20,22],[-18,13],[-20,3],[-10,-36],[-19,-11],[-17,37],[-19,-9],[-21,-1],[-16,-18],[11,-25],[-21,17],[-21,-14],[-7,-31],[16,-19],[-19,-15],[-31,-6],[-1,29],[-19,23],[-21,17],[-21,9],[-23,-8],[-24,11],[-25,1],[-21,-14],[-17,17],[7,39],[-8,29],[-3,33],[-18,12],[-17,17],[-23,7],[-21,-11],[-18,-19],[3,-29],[-18,22],[-25,1],[-26,4],[-29,15],[-15,-20],[-17,-21],[-21,0],[-9,28],[5,27],[-18,20],[-21,-6],[-7,-27],[0,-28],[-9,-28],[-20,1],[-17,17],[-6,37],[10,26],[-18,-14],[-12,-28],[-10,-28],[-20,-16],[-14,-27],[-18,-14],[-17,-27],[-21,1],[-22,3],[-25,-1],[-31,18],[-24,-20],[-22,0],[-16,31],[3,28],[-5,30],[-9,36],[-12,27],[-25,17],[-25,6],[-18,-20],[-15,23],[-15,33],[-16,30],[-21,19],[-6,39],[-29,-10],[-15,-20],[12,-26],[-25,-15],[-27,18],[2,31],[21,16],[0,37],[-4,31],[22,8],[6,35],[-20,15],[-18,-22],[-21,11],[-24,1],[-23,-3],[-17,-16],[-22,-1],[-19,8],[-16,25],[-19,12],[-20,-11],[-21,-3],[-21,0],[5,31],[1,33],[-13,29],[-18,6],[-3,1],[-25,-14],[-20,-9],[-24,21],[-18,19],[5,7],[18,21],[10,26],[-6,32],[-12,24],[-9,2],[-12,2],[-17,18],[-21,-14],[-19,-22],[-25,3],[-21,4],[-29,10],[-21,6],[-28,-7],[-23,2],[-23,3],[-6,0],[-14,-1],[-3,-1],[-21,-10],[-21,-6],[-24,1],[-24,3],[-23,0],[-23,9],[-19,13],[-17,-14],[-12,18],[-2,4],[-6,-3],[-14,-8],[-21,1],[-23,7],[-22,13],[-2,1],[-20,8],[-17,-1],[-4,0],[-23,0],[-26,-2],[-22,-3],[-24,10],[-29,-8],[-26,2],[-3,16],[-4,14],[-16,1],[-12,1],[-25,13],[-14,21],[0,4],[-3,28],[-16,19],[-22,4],[-12,23],[-20,4],[-23,-4],[-2,0],[-24,16],[-2,6],[-9,21],[-20,16],[-1,1],[-19,9],[-14,26],[-15,25],[-18,19],[-19,15],[-27,18],[-15,18],[-1,1],[-21,1],[-22,-9],[-19,10],[-23,2],[-21,2],[-14,-26],[-21,6],[-20,9],[-25,5],[-22,3],[-21,-1],[-26,-9],[-23,14],[-22,-6],[-16,25],[-21,1],[-16,19],[-25,2],[-18,17],[-23,-1],[-20,-20],[-20,4],[-4,8],[-8,19],[-23,2],[-9,1],[-4,9],[-9,18],[-20,14],[-10,26],[-2,3],[-16,17],[-21,5],[-12,21],[-1,1],[-2,1],[-9,2],[-12,3],[-8,1],[-13,2],[-13,3],[-11,3],[-7,-4],[-13,-5],[-27,0],[-15,2],[-7,1],[-24,-1],[-18,-20],[-21,-5],[-22,8],[-21,9],[-27,10],[-14,-2],[-6,-2],[-20,9],[-2,5],[-17,33],[-20,23],[-14,25],[-3,3],[-14,14],[-18,24],[-71,4],[-37,2],[-132,6],[-24,1],[-26,1],[-26,2],[-32,2],[-25,1],[-36,1],[-52,2],[-10,0],[-93,3],[-25,1],[-72,2],[-86,3],[-112,6],[-26,1],[-30,2],[-169,11],[-48,1],[-36,1],[-39,0],[-43,2],[-2,0],[-22,2],[-22,1],[-22,1],[-22,0],[-22,1],[-26,1],[-26,0],[-26,0],[-42,1]],[[34820,32950],[-11,-442],[-3,-137],[-7,-234],[-1,-44],[-4,-40],[0,-9],[-4,-128],[-6,-241],[-2,-65],[-4,-158],[-1,-70],[-3,-109],[-3,-45],[-4,-142],[-2,-64],[-2,-29],[-6,-194],[-4,-131],[0,-70],[-3,-44],[-4,-78],[0,-51],[-1,-62],[-3,-61],[-2,-76],[-5,-148],[-1,-62],[-2,-66],[-3,-162],[-2,-64],[-1,-57],[-2,-68],[-1,-45],[-1,-151],[0,-2],[-3,-64],[-2,-30],[0,-74],[-2,-57],[1,-34],[-4,-135],[-6,-165],[-13,-349],[-2,-125],[-9,-356],[-262,25],[-88,5],[-70,6],[-105,8],[-109,8],[-73,7],[-111,9],[-31,0],[-65,6],[-64,6],[-41,-1],[-107,9],[-17,-16],[-26,-53],[-11,-71],[-45,-56],[-57,-66],[-8,-6],[-29,-20],[-32,-21],[-4,-6],[-2,-3],[-16,-23],[-4,-28],[29,-62],[15,-19],[9,-6],[13,-8],[8,-5],[14,-1],[25,-3],[7,-1],[7,3],[9,3],[27,-1],[18,-8],[7,-9],[13,-18],[10,-13],[2,-75],[1,-51],[12,-12],[27,-29],[28,-8],[11,-4],[19,12],[3,2],[6,3],[1,23],[-13,43],[1,40],[25,14],[25,22],[10,25],[22,9],[34,-4],[21,-8],[23,-29],[-4,-36],[-16,-29],[-4,-36],[-12,-41],[-1,-5],[-11,-31],[-4,-14],[5,-10],[50,-89],[3,-16],[9,-48],[2,-12],[0,-13],[-1,-49],[0,-12],[-7,-6],[-22,-20],[1,-35],[9,-19],[4,-5],[25,-30],[1,-1],[10,-2],[11,-1],[16,-2],[64,25],[19,7],[18,-11],[11,-7],[1,-1],[2,-1],[11,-14],[8,-11],[1,-6],[0,-5],[1,-25],[-13,-31],[-54,-84],[-55,-77],[-3,-4],[-9,-10],[-1,-8],[0,-5],[-4,-41],[5,-50],[11,-47],[1,-4],[4,-18],[6,-9],[18,-26],[9,-13],[18,-11],[36,-12],[6,-2],[18,-5],[8,-2],[15,-7],[17,-11],[15,-3],[11,-2],[6,1],[9,1],[4,1],[19,13],[39,40],[14,17],[3,10],[1,3],[5,14],[2,16],[1,1],[9,55],[17,9],[18,12],[104,-123],[7,-8],[-12,-21],[-9,-17],[-8,-15],[-4,-4],[-9,-6],[-21,0],[-10,6],[-5,2],[-34,-2],[-3,-3],[-8,-8],[-17,-17],[-3,-6],[0,-1],[-11,-28],[0,-5],[0,-8],[-1,-23],[4,-5],[4,-6],[7,-11],[11,-7],[19,-12],[12,-14],[30,-35],[25,-29],[19,-22],[73,-57],[15,-11],[8,-10],[2,-3],[7,-9],[9,-22],[1,-8],[4,-32],[9,-28],[8,-26],[-10,-11],[-3,-3],[-2,-1],[-48,-44],[0,-2],[2,-5],[0,-3],[1,-1],[12,-49],[4,-16],[24,-22],[5,-2],[13,-5],[3,-1],[1,0],[30,-1],[15,-1],[25,6],[20,-4],[20,-4],[8,-9],[51,-51],[15,3],[38,8],[15,-14],[14,-19],[12,-16],[6,-9],[1,-12],[0,-8],[1,-23],[-9,-10],[-50,-27],[-9,-3],[-19,-7],[-18,1],[-45,4],[-31,2],[-4,0],[-10,-5],[-7,-4],[-8,-4],[-5,-5],[-49,-54],[-28,-13],[-34,-7],[-9,-2],[-1,-5],[-9,-34],[-25,-41],[-20,-33],[-1,-18],[12,-29],[20,-47],[59,-89],[25,-35],[43,-57],[30,-26],[17,-43],[-4,-25],[-4,-26],[-27,-24],[-5,-5],[-37,-33],[0,-10],[-4,-63],[-1,-23],[8,-33],[8,-22],[7,-8],[25,-31],[63,-79],[6,-7],[0,-2],[3,-13],[-51,-59],[-27,1],[-7,-7],[-6,-11],[-5,-9],[-15,-29],[-4,-29],[77,-110],[3,-4],[31,-42],[2,-2],[15,-11],[9,-1],[7,0],[106,-4],[59,37],[21,23],[17,-9],[14,-7],[10,-6],[63,-45],[2,-2],[30,-34],[1,-1],[0,-1],[18,-55],[1,-2],[4,-30],[4,-28],[-1,-50],[8,-36],[8,-22],[24,-26],[49,-13],[3,-4],[9,-11],[1,-14],[3,-33],[0,-7],[0,-3],[-1,-53],[0,-5],[-4,-13],[-23,-80],[-1,-2],[-2,-3],[-2,-3],[-15,-23],[-6,-10],[-17,-7],[-145,-65],[-9,0],[-18,1],[-9,0],[-38,18],[-2,1],[-12,8],[-23,-21],[-7,-6],[-4,-4],[0,-18],[0,-19],[1,-24],[8,-25],[53,-99],[7,-10],[5,-8],[3,-4],[6,-6],[17,-17],[6,-18],[1,-3],[2,-8],[-1,-19],[0,-6],[0,-3],[-13,-18],[-24,-10],[-16,-3],[-12,1],[-52,5],[-22,-10],[-3,-4],[-22,-27],[-13,-17],[-4,-17],[-6,-30],[-46,-87],[-1,-2],[-5,-5],[2,-12],[2,-7],[1,-7],[8,-10],[3,-3],[4,-5],[14,-10],[12,-8],[7,-5],[3,0],[19,-1],[35,-44],[3,-9],[13,-39],[1,-3],[2,-18]],[[34672,23053],[-3,-29],[-4,-4],[-40,-37],[-16,-33],[-4,13],[-13,39],[-3,3],[-4,4],[-17,19],[-10,6],[-32,21],[-30,8],[-26,11],[-20,8],[-46,21],[-7,9],[-12,14],[-4,6],[-1,4],[-2,7],[-20,24],[-19,22],[-6,6],[-18,11],[-21,12],[-18,22],[-2,15],[-9,11],[4,33],[0,2],[-9,12],[-20,9],[-22,19],[-4,3],[-3,5],[-7,13],[-1,0],[-63,-20],[-2,-12],[30,-6],[4,-35],[-23,-4],[-35,0],[-21,29],[-18,-21],[-9,-33],[-8,-30],[-41,-48],[-33,3],[-10,48],[16,43],[17,22],[3,37],[-11,22],[-61,30],[-6,3],[-29,-75],[-36,-98],[0,-13],[5,-12],[1,-3],[18,-39],[5,-10],[-4,-10],[-9,-4],[-70,-23],[-9,-2],[-2,0],[-21,4],[-13,-1],[-14,-6],[-8,-8],[-8,-10],[0,-16],[0,-1],[2,-13],[10,-75],[-31,-148],[1,-81],[-4,-4],[-37,-48],[-7,-8],[-8,36],[-19,77],[0,-1],[-30,-50],[0,-1],[-1,-1],[-11,-16],[-60,-46],[-11,-6],[-1,0],[-3,-1],[-15,-4],[-4,1],[-1,0],[-7,10],[-3,8],[-1,4],[-6,9],[-1,1],[-19,16],[-17,6],[-6,0],[-11,-7],[-9,-8],[-58,-86],[-3,-3],[-78,-60],[-86,-63],[-27,-8],[-14,-1],[-36,3],[-8,0],[2,-6],[4,-10],[6,-16],[-8,-42],[-23,0],[-6,3],[-29,29],[-11,6],[-16,-4],[-50,-35],[-14,-6],[-2,-1],[-2,-1],[-17,-3],[-43,-50],[8,-17],[-3,-1],[-38,-16],[-55,-33],[-13,-11],[-1,0],[-1,-1],[-11,-7],[-8,0],[-1,0],[-2,1],[-10,7],[-9,9],[-2,2],[-15,9],[-7,0],[-66,-34],[-8,-6],[-4,-6],[-1,-11],[3,-3],[11,-8],[15,0],[22,0],[0,-4],[1,-5],[1,-9],[-2,-5],[-9,-20],[-9,-20],[-20,-47],[-1,0],[-41,-5],[-6,2],[-3,0],[-25,8],[-35,-3],[-25,13],[-1,0],[0,2],[-8,25],[-19,5],[-15,2],[-5,1],[-8,0],[-99,-1],[-20,-7],[-26,-20],[-20,-24],[-1,-4],[-19,-40],[-13,-16],[-2,-2],[0,-1],[-11,-7],[-8,-2],[-6,3],[-21,19],[-15,-8],[-14,-8],[-43,-23],[-70,-37],[-5,-3],[-37,4],[-19,2],[-36,-14],[-7,-7],[-24,-24],[-33,-35],[-1,-1],[-14,-3],[-11,1],[-11,4],[-8,10],[-3,7],[0,23],[-3,5],[-5,14],[-3,6],[-1,2],[-1,1],[-9,10],[-14,8],[-1,0],[-12,0],[-5,-2],[-4,-5],[-1,-2],[-5,-14],[0,-5],[-1,-11],[-10,-11],[-9,-5],[-1,-1],[-8,-3],[-13,-1],[-27,10],[-30,18],[-7,5],[-47,64],[-9,14],[2,13],[4,5],[9,7],[1,1],[8,5],[6,9],[2,8],[0,2],[-1,20],[-2,6],[-3,7],[0,1],[-7,15],[-14,17],[0,1],[-9,5],[-13,-2],[-46,-32],[-3,-2],[-6,-11],[0,-1],[-2,-13],[-7,-11],[-1,0],[-3,-2],[-14,-6],[-5,-1],[-1,0],[-2,0],[-13,0],[-10,2],[-2,1],[-25,12],[-27,20],[-25,12],[-5,2],[-15,6],[-15,2],[-1,5],[-24,63],[0,1],[45,42],[6,5],[-4,-1],[-66,-14],[-7,2],[-56,17],[-2,0],[-22,8],[-7,3],[-6,6],[0,1],[-2,4],[1,13],[6,13],[0,1],[14,24],[2,9],[-1,11],[-3,8],[-10,7],[-15,3],[-25,-6],[-14,-3],[-17,-4],[-4,0],[-19,1],[-18,5],[-10,8],[-5,8],[1,12],[5,10],[1,10],[-2,9],[-1,1],[-6,6],[-6,4],[-8,3],[-1,0],[-1,0],[-17,-2],[-11,-4],[-1,-1],[-21,-24],[-24,-35],[-7,-14],[-8,-17],[-10,-11],[-8,-6],[-19,-3],[-35,46],[-2,3],[-3,-3],[-21,-25],[-1,0],[-9,-6],[-13,-1],[-1,1],[-12,12],[-6,1],[-9,2],[-9,-5],[-7,-6],[-7,-13],[-1,-22],[3,-12],[9,-21],[7,-6],[5,-2],[13,0],[1,0],[35,1],[8,0],[-1,-8],[-2,-6],[-4,-8],[-42,-49],[-103,-103],[0,-1],[-14,-6],[-14,7],[-53,36],[-131,-13],[-16,0],[-79,-11],[-30,-2],[-28,-1]],[[30436,22111],[-30,22],[-17,19],[-14,6],[-18,3],[-38,-3],[-25,4],[-9,5],[-7,9],[-5,10],[0,15],[34,29],[1,1],[2,4],[0,7],[0,4],[-3,10],[-19,18],[-40,31],[-16,16],[-9,10],[-5,9],[0,9],[0,25],[0,10],[-11,2],[-9,2],[-13,2],[-40,39],[-5,13],[-4,1],[-120,63],[-27,20],[-26,20],[-7,7],[-10,9],[-1,3],[-6,12],[0,14],[3,6],[0,1],[4,6],[3,4],[20,107],[-14,37],[-21,58],[-19,29],[-9,15],[-25,41],[-4,6],[-80,166],[-64,133],[-10,12],[-4,5],[-15,9],[-15,2],[-28,5],[-15,-34],[-13,-34],[-14,-9],[0,-1],[-1,0],[-9,-1],[-8,2],[-13,2],[-25,5],[-17,2],[-9,-2],[-12,-6],[-8,-8],[-2,-1],[-11,-10],[5,-2],[56,-23],[3,-1],[3,-3],[6,-8],[15,-48],[0,-13],[-2,-2],[-1,0],[-3,-4],[-6,-1],[-79,9],[-6,1],[-85,9],[-4,3],[-7,4],[-6,7],[-4,9],[-7,86],[-8,-3],[-4,-2],[-41,-72],[-7,-12],[-39,-68],[0,-1],[-14,-12],[-48,-39],[-39,-33],[-16,-14],[-19,-16],[1,29],[0,17],[-1,7],[-6,11],[-6,7],[-17,7],[-11,5],[-14,3],[-14,-2],[-22,-14],[-2,-2],[-25,-18],[1,-14],[2,-30],[0,-10],[-3,1],[-20,1],[-7,-3],[-11,-7],[-19,-26],[-10,-22],[-15,-29],[-9,-12],[-9,-6],[-10,0],[-13,9],[-14,16],[-1,2],[-1,6],[-1,5],[-4,7],[-4,9],[-6,9],[-15,11],[-18,8],[-23,6],[-8,4],[-4,1],[-5,7],[-8,11],[-3,9],[4,17],[4,2],[2,1],[3,2],[10,10],[11,16],[4,10],[1,7],[0,12],[-1,1],[0,3],[-1,4],[-13,65],[-40,58],[-28,41],[-7,5],[-17,10],[-20,29],[-1,2],[-26,31],[-55,66],[-15,18],[-24,-19],[-13,-10],[-2,-1],[-20,-15],[-11,-6],[-2,-1],[-7,-1],[-21,0],[-3,5],[1,11],[0,1],[2,4],[30,70],[-8,8],[-2,2],[-1,0],[-8,2],[-6,-1],[-10,-1],[-9,-4],[-14,-7],[-7,-4],[-9,-1],[-14,-3],[-24,0],[-12,3],[-15,10],[-15,15],[-6,9],[-10,26],[-12,16],[0,1],[-1,0],[-8,5],[-3,2],[-11,-2],[-6,-4],[-10,-11],[-1,-20],[-24,-13],[-35,13],[-14,10],[-8,10],[-4,7],[-1,4],[0,14],[2,7],[4,15],[-1,24],[-3,16],[-5,9],[-1,2],[-4,5],[-6,6],[-6,3],[-1,0],[-9,-3],[-1,-7],[-5,-58],[-2,-12],[-8,-25],[-4,-8],[-6,-7],[-7,-10],[-14,-9],[-6,-2],[-6,0],[-10,1],[-11,5],[-7,8],[-5,10],[-3,8],[1,9],[4,9],[35,76],[3,49],[0,5],[-7,12],[-10,12],[-22,12],[-5,2],[-101,30],[-4,2],[-25,-1],[-1,0],[1,-2],[25,-41],[1,-4],[3,-7],[3,-15],[-1,-12],[-5,-14],[-1,-1],[-1,-2],[-10,-16],[-17,-13],[-7,-1],[-7,-2],[-14,0],[-6,0],[-11,7],[-3,7],[0,10],[2,7],[1,3],[4,5],[3,5],[6,11],[2,7],[1,4],[0,14],[-1,2],[0,2],[-1,3],[-5,9],[-12,18],[-9,0],[-33,-1],[-2,0],[-4,-7],[-43,-83],[-1,-3],[-18,11],[-1,2],[-3,3],[-4,5],[-4,11],[0,16],[1,1],[1,5],[2,4],[5,7],[8,13],[3,8],[2,28],[0,14],[-14,16],[-6,2],[-6,1],[-102,-51],[-3,-2],[-3,-1],[-8,-9],[-2,-5],[-1,-4],[-1,-10],[12,-12],[14,-14],[1,-2],[12,-16],[5,-8],[5,-17],[0,-2],[1,-13],[-1,-9],[-5,-14],[-7,-10],[-10,-6],[-1,0],[-3,-1],[-10,-2],[-6,3],[-9,10],[-6,22],[-8,59],[-10,7],[0,4],[-1,3],[-10,30],[-3,4],[0,1],[-4,5],[-4,5],[-60,19],[-11,4],[-8,-1],[-24,-4],[-1,0],[-9,-3],[-36,-15],[-80,-15],[-25,-5],[-24,-4],[-1,1],[-12,3],[-5,9],[-13,24],[-1,1],[-69,56],[-1,1],[-13,1],[-6,1],[-8,2],[-5,4],[-2,1],[0,1],[-7,10],[-1,1],[-6,12],[-3,8],[-5,10],[-2,8],[0,25],[9,0],[19,2],[23,2],[21,9],[25,12],[9,8],[0,3],[2,9],[0,4],[-1,20],[-5,7],[-5,4],[-92,33],[-3,1],[-12,4],[-1,0],[-19,0],[-17,-1],[-11,-1],[-5,-1],[-1,-12],[-1,-34],[-3,1],[-14,4],[-8,2],[-7,-1],[-26,-4],[-29,-11],[-17,-9],[-9,-7],[-2,-2],[-4,-3],[-16,-18],[0,-1],[-9,-5],[-4,1],[-6,0],[-7,6],[-7,9],[-3,6],[-1,4],[-2,9],[1,11],[7,32],[22,20],[6,5],[33,31],[-1,4],[-2,13],[-11,12],[-3,1],[0,1],[-1,0],[-11,-1],[-28,-13],[-20,1],[-14,4],[-9,4],[-7,4],[-58,48],[-6,6],[-9,8],[-1,0],[-78,-1],[-14,1],[-15,8],[-18,14],[0,1],[-16,18],[-6,11],[-15,34],[-10,21],[-2,6],[-8,31],[-7,17],[-8,17],[-15,24],[-25,24],[-3,3],[-6,3],[-7,11],[-5,8],[-1,1],[-39,97],[-2,7],[-2,3],[0,20],[0,2],[13,33],[3,5],[3,9],[6,24],[1,11],[0,4],[0,15],[-7,25],[-15,37],[-18,45],[-5,11],[-5,12],[-13,15],[-1,2],[-7,9],[-39,44],[-5,10],[-18,37],[-2,3],[-2,8],[-6,32],[-20,92],[0,26],[6,28],[6,23],[3,7],[0,2],[1,4],[4,25],[0,23],[-2,8],[-1,3],[-5,11],[-54,84],[-4,5],[20,1],[6,-3],[3,-2],[5,1],[1,0],[3,1],[1,1],[12,7],[4,4],[92,77],[11,9],[11,15],[7,13],[4,10],[0,118],[0,6],[-3,18],[-10,37],[-10,24],[-7,8],[-4,6],[-66,90],[-1,1],[-14,14],[-28,30],[-3,1],[-20,26],[-3,4],[-47,76],[-40,64],[-1,1],[-6,35],[-37,10],[-12,4],[-5,-5],[-1,-2],[-33,-25],[-14,-1],[-24,-3],[-13,4],[-21,11],[-45,31],[-10,9],[-11,13],[-5,10],[-6,15],[-3,6],[-2,11],[0,3],[2,22],[11,28],[-15,122],[-5,14],[-7,19],[-5,15],[-17,17],[-31,-8],[-23,-12],[-21,-13],[-21,-9],[-27,-4],[-21,17],[-25,9],[-23,-19],[-26,-18],[-29,3],[-15,24],[3,28],[26,24],[11,44],[-15,43],[-62,136],[-8,18],[-14,53],[-15,55],[-2,8],[4,5],[30,37],[2,2],[7,10],[3,7],[0,1],[4,10],[0,8],[0,1],[0,4],[-7,14],[-6,6],[-2,2],[-44,43],[-21,11],[-11,2],[-22,-2],[-4,-1],[-7,-10],[-14,-70],[-26,0],[-15,0],[-49,0],[-3,0],[-1,6],[-14,52],[-8,19],[-11,19],[-29,35],[-17,12],[-8,10],[-8,12],[-4,13],[-1,9],[1,6],[9,46],[-3,12],[-8,39],[-15,70],[-1,2],[-1,1],[-73,45],[-2,1],[-7,-11],[0,-8],[3,-3],[4,-5],[29,-13],[8,-10],[1,-10],[1,-2],[-6,-7],[-1,-2],[-2,-1],[-24,-14],[-13,-8],[-14,-2],[-1,0],[-16,7],[-1,1],[-8,10],[-3,5],[-4,14],[-7,19],[-12,15],[-4,4],[-3,4],[-1,0],[-16,13],[-18,8],[-14,3],[-23,29],[-48,60],[-1,1],[-13,25],[-26,51],[-7,13],[-11,62]],[[13253,21367],[-206,10],[-206,9],[-163,8],[-256,12],[-58,2],[-134,4],[-173,5],[-307,10],[-40,1],[-41,1],[-70,2],[-13,47],[1,34],[0,30],[2,55],[1,57],[1,28],[0,12],[2,86],[2,75],[5,215],[2,100],[2,85],[-25,2],[-107,3],[-127,5],[-96,4],[-102,4],[-103,4],[-49,0],[-65,2],[-106,5],[-118,5],[-21,0],[-3,46],[0,2],[-3,8],[-1,1],[-2,5],[0,1],[-1,1],[-26,26],[-6,6],[-82,34],[-31,-21],[-18,-2],[-25,-4],[-49,16],[-36,22],[-20,17],[-22,20],[-46,19],[-7,1],[-58,10],[-11,1],[-6,0],[-7,0],[-128,-4],[-31,12],[-12,7],[-19,10],[-14,7],[-3,2],[-11,0],[-7,1],[-7,0],[-25,-28],[-3,-40],[17,-21],[13,-15],[2,-11],[0,-47],[-16,-21],[-12,-14],[-40,1],[-2,0],[-4,0],[-14,5],[-29,10],[-12,4],[-46,19],[-13,13],[-21,22],[-9,1],[-30,2],[-22,-25],[-8,-16],[-45,-90],[-3,-34],[-1,-13],[-16,-17],[-7,-4],[-9,-4],[-5,-2],[-19,0],[-4,2],[-58,31],[-2,1],[-35,43],[-16,23],[-22,30],[-9,35],[6,27],[2,50],[-10,42],[-14,16],[-6,6],[-20,14],[-3,1],[0,3],[-4,-1],[-84,-11],[-15,-26],[4,-39],[16,-26],[15,-27],[18,-30],[6,-30],[-17,1],[-21,0],[-12,1],[-43,-31],[-47,4],[-54,16],[-25,11],[-27,53],[-6,45],[-14,55],[-26,50],[-20,28],[-36,42],[-25,25],[-22,4],[-29,-2],[-24,-16],[-7,-37],[77,-79],[14,-31],[-21,-14],[-5,1],[-1,2],[-49,12],[-18,-1],[-55,-1],[-7,0],[-86,-27],[-3,-3],[-30,-31],[-45,-45],[-14,-14],[-23,2],[-5,2],[-12,6],[-10,4],[-5,5],[-13,17],[-8,29],[-2,8],[1,23],[1,5],[0,3],[6,14],[6,5],[53,48],[25,35],[13,32],[0,22],[1,21],[0,21],[-17,101],[-10,31],[-13,38],[0,17],[0,10],[1,19],[16,29],[51,55],[8,8],[0,35],[0,8],[1,14],[-9,26],[-17,20],[-8,10],[-5,6],[-27,19],[-2,0],[-12,4],[-23,7],[-26,1],[-12,0],[-11,0],[-40,-10],[-15,-11],[-25,-20],[-81,-38],[-73,-16],[-46,-6],[-43,-5],[-10,-1],[-7,-3],[-28,-11],[-35,-13],[-3,-3],[-12,-9],[-26,-23],[0,-40],[-1,-7],[-6,-28],[-4,-4],[-19,-22],[-2,-2],[-9,-4],[-23,2],[-19,2],[-7,1],[-12,14],[-1,6],[-2,7],[-3,16],[2,27],[2,48],[-5,19],[-6,25],[0,29],[1,35],[1,69],[0,35],[-1,6],[-7,23],[-20,24],[-1,2],[-1,0],[-25,0],[-5,0],[-1,-1],[-11,-10],[-7,-6],[0,-4],[-7,-75],[-13,-25],[-18,-17],[-1,-1],[-1,-1],[-67,-37],[-12,-6],[-18,-28],[-1,-9],[-4,-59],[1,-3],[5,-33],[7,-18],[8,-19],[-4,-50],[-16,-21],[-7,-1],[-9,-2],[-21,-3],[-1,1],[-38,43],[-2,3],[-1,0],[-14,1],[-6,0],[-7,0],[-9,-4],[-47,-24],[-21,4],[-5,6],[-8,10],[-7,8],[3,13],[12,50],[-1,24],[0,17],[-1,20],[-6,18],[-7,9],[-5,5],[-41,10],[-20,2],[-15,8],[-4,5],[-19,22],[-18,22],[-10,13],[-6,0],[-31,1],[-29,6],[-8,2],[-17,10],[-1,1],[-1,1],[-10,12],[-4,5],[-3,32],[4,13],[9,27],[1,35],[-9,33],[-13,16],[-10,12],[-4,5],[-12,4],[-12,0],[-10,0],[-6,0],[-18,-10],[-23,-17],[-21,-15],[-21,1],[-11,15],[-37,47],[-15,2],[-16,2],[-15,-7],[-12,-14],[-4,-18],[-40,-38],[-25,0],[-3,2],[-21,10],[-9,11],[-11,12],[-5,24],[-8,32],[-14,36],[-9,10],[-5,5],[-10,11],[-34,-4],[-22,-2],[-4,2],[-23,13],[-8,9],[-10,13],[-6,61],[-2,21],[-15,37],[-36,43],[-6,8],[-58,22],[-43,1],[-46,-20],[-31,-32],[-13,-43],[-34,-53],[-13,-14],[-22,-21],[-142,-65],[-49,-3],[-12,8],[-21,29],[-2,47],[13,28],[18,18],[25,-1],[36,-15],[28,-1],[17,7],[1,0],[23,32],[2,4],[0,6],[2,67],[0,2],[-2,1],[-55,30],[-7,5],[-28,2],[-30,7],[-21,15],[-7,4],[-4,5],[-1,2],[-13,15],[-17,47],[-6,18],[1,57],[6,55],[-13,52],[-4,15],[-2,65],[7,25],[21,17],[38,46],[18,58],[4,13],[1,21],[1,57],[0,1],[-1,2],[-10,24],[-4,10],[-7,9],[-3,3],[-14,17],[-12,8],[-52,1],[-43,-23],[-16,-8],[-25,-2],[-10,0],[-8,-1],[-15,4],[-5,3],[-20,12],[-17,21],[-4,5],[-104,-2],[-37,-17],[-49,-10],[-37,1],[-18,22],[-3,11],[1,28],[9,22],[25,24],[33,9],[29,8],[34,24],[1,2],[25,28],[2,2],[1,9],[2,18],[0,5],[-3,7],[-3,4],[-30,40],[-3,4],[-15,11],[-9,0],[-37,1],[-34,-21],[-28,-32],[-62,-34],[-49,1],[-27,18],[-6,8],[-4,6],[-14,19],[-7,15],[-1,2],[-54,131],[-2,4],[-11,30],[-5,13],[-3,29],[1,36],[6,28],[19,32],[62,73],[7,8],[9,21],[1,9],[0,7],[0,27],[-14,27],[-8,14],[-2,3],[-3,4],[-38,46],[-7,8],[-12,9],[-9,6],[-22,8],[-24,-3],[-62,-46],[-32,-17],[-21,-10],[-14,-5],[-49,-16],[-131,-44],[-7,1],[-54,1],[-1,0],[-39,15],[-21,0],[-15,1],[-13,0],[-24,-7],[-31,-17],[-68,-2],[-43,1],[-6,7],[-9,11],[-1,2],[-16,39],[-3,9],[2,29],[0,7],[1,11],[19,21],[13,1],[20,1],[10,1],[14,-10],[35,-24],[1,0],[16,-2],[7,-2],[9,4],[13,7],[0,1],[1,0],[24,27],[42,55],[14,19],[3,4],[6,17],[1,36],[-1,2],[-2,6],[-3,7],[-10,12],[-7,8],[-7,9],[-15,9],[-8,5],[-20,12],[-65,28],[-5,2],[-1,1],[-20,17],[-67,-2],[-19,8],[-30,18],[-46,40],[-63,30],[-28,8],[-50,4],[-45,4],[-24,2],[-16,7],[-5,11],[-26,50],[30,75],[25,39],[7,23],[-1,9],[0,2],[-3,43],[0,93],[11,47],[43,116],[5,45],[1,9],[-2,14],[-11,50],[-15,36],[-24,29],[-24,15],[-7,0],[-18,-2],[-12,-1],[-18,-19],[-20,-23],[-4,-2],[-13,-6],[-20,-9],[-9,9],[-14,15],[-16,16],[-9,18],[-6,47],[-2,18],[-8,10],[-22,30],[-6,17],[0,4],[-2,94],[0,1],[13,9],[19,-2],[8,-1],[15,-1],[25,-19],[66,-87],[55,-5],[25,14],[15,18],[7,7],[24,35],[2,3],[64,114],[7,10],[2,4],[17,25],[3,54],[-12,39],[-28,80],[-40,28],[-69,50],[-14,-1],[-18,-2],[-40,-14],[-89,2],[-1,0],[-32,6],[-6,1],[-32,4],[-37,10],[-25,24],[-18,23],[-17,21],[-46,37],[-25,14],[-26,5],[-44,-17],[-31,-9],[-45,-3],[-54,3],[-30,-4],[-28,-13],[-21,-21],[-14,-55],[4,-32],[14,-28],[31,-12],[24,7],[26,1],[20,-12],[18,-19],[16,-27],[19,-53],[5,-29],[2,-32],[7,-37],[6,-47],[27,-44],[4,-29],[-2,-4],[-1,0],[-58,-20],[-34,1],[-17,4],[-113,27],[-63,15],[-39,19],[-12,14],[-3,4],[-9,39],[0,1],[-6,4],[-24,17],[-12,8],[-28,8],[-33,1],[-12,0],[-19,0],[-75,-41],[-36,-7],[-31,4],[-34,-6],[-49,-31],[-11,-1],[-42,-2],[-29,29],[-4,4],[-10,19],[-8,13],[-12,16],[-18,24],[-6,8],[-7,5],[-1,0],[-31,24],[-23,1],[-11,0],[-30,34],[-49,57],[-6,18],[-9,22],[-1,11],[0,7],[-3,6],[-43,108],[-38,32],[-7,6],[-13,-4],[-49,-56],[-3,-21],[-1,-11],[-10,-11],[-2,-3],[-19,-7],[-21,-24],[-1,-1],[-12,-7],[-9,0],[-8,1],[-2,0],[-34,13],[-14,6],[-21,17]],[[2828,26801],[1,111],[0,3],[1,95],[4,162],[0,23],[-2,55],[4,149],[4,176],[4,227],[5,262],[6,319],[2,111],[4,155],[3,110],[4,186],[3,37],[4,58],[1,37],[0,37],[0,2],[-1,30],[-1,42],[1,60],[1,61],[3,128],[1,70],[5,250],[2,123],[3,148],[0,16],[2,138],[1,9],[6,139],[7,212],[7,341],[3,124],[5,450],[0,162],[3,106],[3,122],[7,223],[2,137],[2,66],[1,101],[1,55],[2,109],[4,184],[1,50],[2,118],[2,156],[3,151],[2,169],[0,29],[4,130],[1,81],[7,316]],[[64269,28904],[-1,-89],[-1,-27],[0,-6],[-6,-289],[-1,-45],[-242,8],[-70,3],[-42,1],[-109,4],[1,29],[1,127],[-87,2],[-183,3],[-135,3],[0,-135],[-3,-138],[-4,-349],[-1,-56],[-2,-152],[-87,0],[-88,2],[-38,2],[-24,0],[-47,1],[-316,4],[-42,0],[-49,-1],[-195,4],[-160,4],[-109,2],[-327,7],[-84,2],[-62,1],[-39,1],[-3,-109],[-3,-95],[-2,-89],[-1,-28],[-2,-80],[-4,-123],[-1,-42],[-5,-177],[-2,-88],[-4,-120],[-11,-218],[-26,-685],[-1,-22],[-21,-576],[-1,-40],[-4,-102],[-12,-316],[-1,-32],[-3,-87],[-33,1],[-4,-253],[-7,-366],[-2,-106],[-4,-243],[0,-68],[-3,-193],[-1,-64],[0,-20],[-1,-46],[-3,-164],[-4,-222],[-5,-362],[-7,-399]],[[61536,22293],[-94,12],[-34,4],[-48,6],[-180,22],[-338,42],[-8,1],[-112,14],[-68,8],[-23,3],[-223,27],[-40,4],[-79,12],[-110,7],[-40,4],[-3,1],[-350,42],[-58,6],[-325,39],[-208,0],[-45,-1],[-340,0],[-233,-1],[-77,0],[-68,0],[-51,0],[-49,0],[-113,0],[-198,-1],[-32,0],[-103,-3],[-218,0],[-34,0],[-171,0],[-171,-1],[-147,0],[-82,-1],[-123,0],[-136,-1],[-80,-1],[-118,-1],[-81,-1],[-152,-1],[-2,0],[-132,-1],[-29,-1],[-33,0],[-67,0],[-25,-1],[-108,-1],[-99,0],[-88,4],[-34,1],[-25,-2],[-90,-2],[-36,1],[-51,0],[-359,-2],[-43,-4],[-86,0],[-30,3],[-243,1],[-66,0],[-33,0],[-224,1],[-28,0],[-76,0],[-394,1],[-191,1],[-246,1],[-263,1],[-21,0],[-38,0],[-26,-2],[-63,1]],[[53124,22534],[0,165],[0,251],[-1,387],[0,148],[0,39],[1,48],[0,30],[0,22],[0,38],[0,42],[0,170],[0,333],[0,52],[0,146],[0,135],[-1,287],[1,90],[0,91],[0,31],[0,158],[-1,32],[1,90],[0,77],[0,43],[-1,124],[2,75],[-3,656],[-1,307],[-1,1],[0,173],[-1,74],[-1,259],[-1,378],[-1,210],[-1,145],[165,-2],[111,-1],[24,-1],[7,0],[59,1],[89,1],[10,141],[-1,62],[-1,56],[0,38],[2,357],[-1,40],[0,36],[0,82],[0,138],[0,82],[-1,60],[0,41],[-5,460],[-1,139],[0,157],[0,59],[0,36],[0,149],[0,69],[1,54],[0,106],[-3,124]],[[45873,30197],[-200,-7],[-67,-2],[-418,-12],[-90,-5],[-102,-2],[-30,-1],[-39,-1],[-184,-4],[-49,-2],[-132,-3],[-140,2],[-25,1],[-1,0],[-95,1],[-46,-1],[-43,-2],[-98,-7],[-27,-1],[-142,-10],[-127,-5],[-191,-5],[-56,-1],[-47,-2],[-109,-2],[-38,0],[-220,-3],[0,-93],[-3,-31],[0,-39],[0,-60],[-1,-37],[0,-63],[-2,-57],[-1,-30],[-3,-80],[-2,-47],[-2,-41],[0,-67],[-5,-118],[-4,-125],[-12,-307],[-5,-122],[0,-5],[-5,-128],[-5,-109],[-3,-71],[-4,-49],[-7,-239],[-5,-160],[-7,-240],[-3,-96],[55,0],[315,-3],[1,0],[8,-42],[-16,-41],[28,-28],[9,-9],[8,-8],[31,-31],[2,-1],[1,-1],[15,-57],[24,-87],[7,-25],[0,-2],[13,-3],[50,-21],[7,-3],[48,-28],[34,-48],[36,-40],[-30,4],[-10,-28],[28,-19],[26,5],[-19,-34],[-21,1],[27,-22],[22,-4],[21,-4],[13,33],[22,9],[6,-28],[24,-26],[-23,-10],[11,-36],[25,5],[24,-10],[8,-28],[-23,4],[8,-28],[-21,4],[16,-27],[-14,-24],[18,-16],[22,-12],[30,11],[11,-28],[21,-3],[17,-26],[-17,-17],[11,-24],[31,21],[19,15],[24,-7],[0,-35],[23,-14],[23,1],[9,-31],[25,8],[23,-18],[5,-34],[1,-3],[21,-120],[0,-1],[4,-15],[37,-47],[9,-11],[55,-41],[14,2],[0,-90],[0,-24],[10,-5],[72,-35],[3,-5],[6,-98],[1,-9],[-10,-19],[-5,-4],[0,-6],[-4,-74],[0,-1],[2,-6],[9,-19],[8,-17],[16,-12],[29,-23],[80,-30],[54,-45],[4,-4],[-1,-23],[10,-194],[16,-54],[9,-29],[7,-20],[-40,-38],[33,-8],[3,-1],[15,-37],[1,-5],[21,-53],[2,-7],[15,-59],[5,-20],[9,-31],[-1,-1],[-12,-20],[-6,-5],[6,-141],[1,-7],[20,-35],[4,-7],[48,-41],[8,-7],[41,-36],[3,-9],[26,-63],[4,-3],[11,-11],[21,-20],[10,1],[4,1],[0,-16],[0,-4],[2,-3],[17,-30],[26,-44],[27,-72],[0,-1],[1,-2],[1,-8],[3,-16],[0,-4],[23,-12],[9,-4],[3,-5],[0,-4],[-5,-13],[-13,-21],[-1,-9],[2,-2],[24,-25],[12,-12],[69,-72],[20,-15],[26,-16],[81,-22],[8,0],[25,-23],[14,-13],[28,-25],[1,-1],[24,-24],[15,-16],[8,-9],[4,-4],[0,-27],[-2,-12],[0,-3],[3,-5],[1,0],[0,-1],[31,-31],[94,-53],[14,-8],[22,-11],[16,-2],[11,-9],[12,-11],[4,-8],[30,-85],[3,-34],[0,-8],[-3,-4],[-30,-30],[1,-1],[8,-9],[5,-5],[8,1],[16,19],[11,3],[14,-8],[5,-6],[4,-14],[0,-2],[-1,-11],[-10,-90],[6,-3],[56,-33],[11,-7],[39,10],[8,2],[44,-44],[5,-8],[14,-56],[13,-62],[6,-33],[1,-5],[5,-23],[1,-4],[-7,-4],[-11,-8],[23,-63],[9,-5],[6,-5],[16,-13],[14,-46],[1,-9],[-1,-5],[-27,-51],[0,-1],[-21,-31],[-10,-7],[-2,-2],[9,-29],[13,-28],[26,13],[1,-32],[-12,-39],[2,-33],[-6,-30],[-19,-18],[14,-28],[23,-6],[4,-42],[16,-25],[3,-28],[-20,-12],[25,-27],[-9,-31],[21,-4],[-13,-29],[-20,-19],[-3,-13],[-7,-25],[-9,-32],[-8,-33],[-2,-8],[-37,-77],[36,-23],[28,-35],[8,-10],[10,-20],[0,-1],[28,-69],[0,-5],[-2,-7],[-1,-5],[6,-12],[18,-36]],[[45921,22628],[-122,6],[-257,17],[-369,23],[-30,1],[-45,1],[-72,3],[-214,8],[-48,2],[-41,1],[-74,3],[-1,0],[-62,1],[-73,2],[-28,1],[-43,1],[-3,0],[-136,6],[-26,1],[-158,7],[-93,4],[-39,2],[-17,0],[-78,3],[-51,2],[-35,2],[-38,1],[-88,4],[-178,7],[-96,3],[-5,0],[-18,1],[-66,1],[-28,2],[-59,1],[-207,6],[-55,2],[-384,10],[-34,1],[-1,0],[-136,6],[-97,5],[-560,26],[-69,3],[-101,5],[-30,1],[-109,3],[-253,9],[-49,2],[-228,8]],[[40917,22832],[-8,0],[-43,1],[-140,5],[-218,6],[-215,8],[-48,1],[-88,3],[-86,3],[-60,3],[-119,4],[-35,0],[-57,7],[-176,6],[-35,-1],[-132,4],[-36,1],[-23,2],[-92,6],[-148,4],[-219,7],[-529,14],[-2,0],[-1,0],[-176,6],[-194,10],[-333,11],[-147,4],[-147,7],[-67,3],[-229,7],[-260,9],[-61,1],[-75,6],[-211,8],[-226,8],[-26,1],[-37,1],[-13,1],[-37,1],[-22,1],[-121,4],[-162,5],[-5,0],[-272,12],[-204,7],[-20,0],[-22,1],[-297,17],[-70,1],[-115,4],[-29,3],[-157,-2]],[[73651,31890],[75,-87],[53,-66],[12,-62],[34,-45],[30,-41],[19,-13],[35,-23],[55,-3],[48,-36],[59,-53],[219,-242],[24,-24],[76,-42],[142,6],[8,1],[197,39],[112,64],[67,29],[165,-26],[133,-101],[74,-140],[54,-102],[11,-129],[-36,-137],[-56,-120],[-141,-218],[-91,-178],[-4,-14],[-36,-137],[-9,-173],[40,-250],[0,-121],[-38,-103],[-65,-80],[-94,-68],[-147,-47],[-158,-28],[-76,1],[-99,27],[-41,30],[-47,-17],[-109,-31],[-66,-21],[-41,-19],[-77,-16],[-232,-18],[-135,8],[-97,24],[-91,20],[-99,6],[-44,-12],[-43,-11],[-72,-28],[-103,-44],[-42,-25],[105,-355],[44,-146],[2,-69],[13,-9],[34,-23],[130,-132],[52,-91],[95,-168],[43,-84],[0,-162],[-43,-189],[-100,-139],[-123,-59],[-172,-17],[-86,18],[-145,66],[-71,55],[-52,77],[-41,91],[-15,115],[-119,317],[-99,292],[-1,4],[-6,13],[-50,115],[-24,-20],[-24,-24],[-80,-60],[-164,-94],[-47,-15],[-41,-33],[-31,-33],[-34,-35],[-10,-23],[-17,-40],[-45,-48],[-32,-23],[-22,-9],[-49,-4],[-160,-5],[-166,10],[-18,1],[-167,-8],[-34,-16],[-37,-38],[-34,-36],[-32,-20],[-80,-85],[-47,-76],[-28,-77],[-26,-113],[-2,-55],[-3,-117],[17,-44],[-1,-8],[46,-92],[26,-34],[56,-36],[36,-30],[27,-13],[31,2],[100,-21],[75,-15],[44,-10],[61,-21],[2,-2],[57,-38],[76,-22],[62,-1],[9,0],[49,-7],[45,-13],[105,-50],[99,-52],[33,-20],[60,-29],[32,-21],[67,-43],[102,-128],[-2,-39],[12,-66],[22,-62],[42,-103],[24,-131],[8,-111],[-11,-39],[-55,-115],[-109,-173],[-38,-44],[-83,-122],[-29,-44],[-113,-127],[-211,-237],[-85,-121],[-45,-51],[-29,-55],[-38,-70],[-42,-51],[-11,-35],[-10,-222],[-7,-21],[-59,-162],[-36,-37],[-30,-5],[-33,-34],[-3,-64],[0,-12],[9,-33],[7,-25],[26,-41],[38,-178],[0,-15],[3,-50],[14,-40],[65,-116],[83,-134],[46,-60],[19,-18],[43,-40],[0,-7],[28,-59],[40,-71],[80,-188],[10,-22],[6,-12],[77,-54],[83,-58],[281,-156],[20,-11],[187,-57],[138,-29],[152,-92],[159,-181],[60,-144],[13,-72],[-15,-141],[-49,-131],[-40,-68],[-82,-83],[-33,-33],[-196,-110],[-157,-53],[-124,-25],[-146,79],[-238,189],[-193,152],[-8,7],[-77,4],[-142,-39],[-83,5],[-19,10],[-5,2],[-59,3],[-13,-13],[-28,-26],[-56,-22],[-37,-5],[-201,19],[-169,-72],[-166,-87],[-50,12],[-84,113],[-15,16],[-107,107],[-191,122],[-103,9],[-51,-33],[-71,-93],[-125,-285],[-7,-145],[29,-62],[42,-29],[7,-72],[-34,-113],[-44,-109],[8,-30],[22,-82],[-15,-43],[-21,-74],[-5,-60],[-3,-47],[5,-15],[-3,-75],[-22,-77],[3,-67],[33,-109],[43,-66],[54,-81],[186,-252],[103,-117],[157,-98],[182,-17],[21,-2],[217,28],[140,49],[183,121],[83,63],[76,27],[92,49],[91,-16],[130,-68],[179,-169],[107,-165],[16,-28],[66,-122],[46,-142],[12,-72],[89,-23],[20,-12],[7,-180],[-37,-144],[-70,-129],[-89,-58],[-92,-41],[-118,-16],[-174,-47],[-159,-106],[-182,-100],[-47,-26],[-163,-29],[-103,15],[-186,79],[-188,138],[-439,296],[-142,230],[-226,348],[-178,273],[-26,41],[-38,-2],[-10,-6],[-37,-34],[-147,-66],[-120,-22],[-77,-13],[-228,-3],[-72,-1],[-68,-3],[-38,-11],[-53,-14],[-27,-8],[-6,-3],[-64,-35],[-71,-39],[-8,-5],[-41,-44],[-13,-10],[-138,-158],[-74,-143],[-46,-220],[16,-178],[75,-138],[110,-143],[110,-62],[91,-30],[16,-20],[26,-16],[95,-6],[6,0],[122,-25],[105,-35],[79,-27],[200,-105],[28,-21],[21,-7],[17,-4],[21,-12],[24,-22],[12,-11],[61,-56],[117,-115],[6,-7],[79,-98],[117,-111],[93,-121],[75,-37],[17,-9],[54,-31],[67,-86],[28,-63],[44,-121],[18,-62],[26,-102],[22,-131],[-5,-114],[-1,-18],[-8,-50],[-43,-141],[-39,-66],[-129,-140],[-116,-83],[-49,-40],[-62,-49],[-106,-39],[-13,1],[-113,7],[-26,4],[-221,34],[-95,-38],[-8,-3],[-53,-53],[-60,-58],[-117,-86],[-103,-60],[-10,-7],[-56,-43],[-102,-29],[-191,-32],[-80,-4],[-18,-1],[-35,-13],[-14,-10],[-64,-46],[-64,-68],[-35,-66]],[[68106,15943],[-108,1],[-33,0],[-67,0],[-23,1],[-28,-1],[-16,-31],[-1,-46],[-3,-147],[-9,-456],[-10,-587],[-88,10],[-105,3],[-18,0],[-11,0],[-462,10],[-418,10],[-270,6],[-107,2],[-1,0],[-109,0],[10,212],[-185,8],[6,209],[-197,0],[-64,1],[-7,-336],[-1,-70],[-86,2],[2,62],[2,151],[0,8],[4,193],[2,114],[2,85],[5,236],[9,414],[-175,0],[-173,1],[-80,-2],[-49,-1],[-38,-1],[-178,-3],[-1,0],[-134,1],[-216,-1],[-333,-5],[-9,1],[-280,4],[-57,1],[-238,4],[-130,3]],[[63630,16009],[1,94],[4,233],[1,111],[1,63],[8,513],[1,99],[1,41],[-14,74],[2,252],[2,186],[0,91],[2,62],[1,42],[1,36],[0,40],[-2,113],[4,340],[7,492],[0,19],[0,36],[3,246],[2,150],[4,313],[3,249],[1,68],[1,79],[1,48],[0,12],[1,74],[1,22],[0,10],[0,43],[0,6],[1,29],[0,37],[1,46],[0,31],[2,111],[0,26],[1,105],[1,46],[3,264],[0,40],[3,172],[0,40],[0,128],[1,40],[0,32],[7,327],[1,55],[2,158],[2,162],[0,4],[0,29],[-1,61],[-108,0],[-26,0],[-65,0],[-76,1],[-1,0],[-72,0],[-187,1],[-2,0],[-47,0],[-172,1],[-242,1],[-353,14],[-71,3],[-70,1],[-250,11],[-220,28],[-24,2],[-147,19],[-22,2]],[[53124,22534],[1,-94],[0,-428],[0,-113],[0,-111],[1,-394],[0,-70],[2,-102],[-2,-112],[4,-236],[0,-3],[-1,-600],[-3,-42],[1,-114],[0,-81]],[[53127,20034],[-176,-1],[-57,0],[-38,0],[-217,-2],[-125,-3],[-60,1],[-222,3],[-46,0],[-1,0],[-107,1],[-16,1],[-14,0],[-57,0],[-37,0],[-28,1],[-30,0],[-22,1],[-45,0],[-77,1],[-21,0],[-33,0],[-51,-1],[-39,1],[-80,0],[-145,2],[-257,2],[-100,0],[-30,0],[-31,0],[-92,0],[-43,1],[-33,0],[-106,1],[-64,0],[-3,0],[-283,2],[-2,0],[-112,5],[-103,0],[-50,1],[-121,3],[-4,0],[-153,1],[-1,0],[-163,1],[-82,0],[-41,0],[-43,1],[-266,1],[-109,1],[-68,0],[-41,0],[-46,0],[-174,1],[-22,-1],[-28,-1],[-21,0],[-44,1],[-51,1],[-104,0],[-45,1],[-45,-1],[-40,0],[-39,-1],[-339,9],[-3,0],[-75,-2],[-56,0],[-226,0],[-73,-1],[-29,0],[-208,1],[-243,0],[-53,1],[-113,0],[-39,3],[-111,10],[-43,3],[-150,12],[-270,22],[-280,14],[-25,0]],[[45987,20131],[-19,157],[-14,19],[-4,8],[1,8],[12,84],[5,23],[1,1],[12,28],[8,23],[10,40],[-1,19],[-2,27],[-2,1],[-6,-1],[-43,-31],[-7,-5],[-5,13],[1,0],[0,1],[24,50],[10,21],[-21,-11],[-6,-3],[-17,-7],[-9,0],[-2,1],[-38,94],[0,9],[32,45],[0,1],[30,42],[0,9],[0,42],[-9,4],[-9,5],[-15,21],[-23,0],[-31,13],[9,30],[-11,30],[-26,15],[14,43],[5,21],[4,20],[-15,21],[-13,27],[-13,15],[-4,4],[-37,29],[19,14],[11,31],[-19,19],[16,23],[16,29],[1,2],[-1,1],[-13,23],[-1,33],[27,14],[6,3],[-3,13],[-4,22],[-6,38],[14,31],[17,19],[18,11],[11,36],[-3,45],[27,3],[23,30],[9,11],[-31,53],[-10,15],[26,1],[2,0],[9,4],[10,6],[1,0],[9,23],[-1,6],[-3,1],[-2,0],[-9,-2],[-6,0],[-6,7],[-2,89],[1,8],[20,3],[3,1],[-1,4],[0,4],[4,43],[0,1],[20,62],[7,20],[1,0],[40,37],[2,2],[0,1],[27,48],[-20,22],[0,15],[2,125],[1,12],[2,12],[-3,4],[-29,9],[-18,3],[-4,4],[-3,8],[-7,116],[0,13],[3,6],[2,6],[-2,3],[-7,10],[5,22],[2,7],[6,28],[-11,9],[-3,16],[-13,60],[-4,21],[-3,16],[-14,56]],[[23350,27256],[-2,-77],[-3,-139],[-1,-38],[-1,-31],[0,-29],[-1,-56],[-4,-218],[-2,-111],[-1,-58],[-2,-108],[-2,-107],[-1,-36],[-1,-62],[-2,-137],[-3,-83],[-1,-27],[-2,-60],[0,-7],[-4,-98],[-2,-57],[-7,-205],[-4,-167],[-11,-435],[2,-64],[-2,-35],[-2,-82],[-2,-91],[-5,-216],[-2,-54],[-4,-262],[-4,-209],[-4,-197],[-5,-216],[-24,0],[-11,1],[-172,5],[-6,-197],[0,-38],[-1,-41],[-1,-43],[-1,-43],[-1,-39],[3,-123],[-2,-29],[-4,-48],[-1,-29],[-1,-30],[-1,-33],[-2,-64],[-2,-63],[-1,-17],[-2,-77],[-1,-63],[-3,-77],[-1,-34],[-1,-40],[-1,-39],[-1,-40],[-1,-42],[-1,-43],[0,-36],[-4,-128],[0,-12],[-1,-57],[-4,-141],[-2,-213],[-2,-82],[-5,-108],[-4,-94],[0,-4],[0,-29],[0,-66],[-2,-108],[-13,-118],[0,-63],[-1,-35],[0,-54],[-1,-50],[-1,-30],[-1,-41],[0,-21],[-1,-22],[-2,-50],[0,-25],[-1,-24],[-1,-30],[0,-42],[-2,-99],[-2,-31],[0,-36],[-2,-160],[-4,-277],[0,-1],[-2,-31],[-1,-125],[-2,-99],[-3,-114],[-1,-81],[-1,-47],[0,-29],[-2,-59],[0,-41],[-1,-41],[-2,-47],[-1,-32],[-1,-29],[0,-1],[0,-51],[-4,-166],[-1,-30],[-5,-210],[-2,-70],[-11,-116],[-2,-212],[0,-19],[0,-25],[-3,-224],[-1,-119],[-1,-65],[-1,-62],[-3,-99],[-11,-429],[-4,-156],[-5,-190],[-2,-102],[-2,-79],[-2,-137],[-4,-214],[-3,-97],[0,-1],[-3,-74],[-4,-123],[-9,-87],[3,-100],[-8,-488],[-17,-634],[-1,-50],[-5,-199],[-1,-8],[-5,-220],[0,-2],[-1,-87],[-2,-77],[-2,-70],[-8,-403],[-1,-29],[-2,-109]],[[22819,13502],[-156,4],[-189,11],[-150,5],[-48,2],[-69,2],[-25,0],[-227,8],[-196,6],[-92,3],[-158,5],[-53,2],[-164,5],[-250,9],[-27,1],[-58,2],[-60,3],[-50,1],[-25,2],[-67,2],[-32,1],[-77,3],[-93,4],[-27,2],[-61,2],[-46,1],[-26,0],[-23,2],[-176,0],[-152,5],[-5,0],[-26,1],[-49,9],[-217,5],[-11,1],[-47,1],[-26,1],[-258,9],[-67,3],[-32,1],[-95,3],[-215,7],[-58,2],[-112,4],[-470,15],[-62,2],[-122,4],[-67,3],[-45,2],[-31,2],[-29,0]],[[17998,13670],[-71,105],[-37,76],[-27,55],[-38,91],[-1,5],[-13,60],[-20,58],[-46,62],[-6,8],[-68,82],[-44,39],[-63,34],[-38,22],[-17,21],[-33,47],[-36,57],[-24,27],[-31,66],[-8,51],[8,42],[21,10],[24,9],[21,12],[24,18],[21,22],[48,72],[25,47],[24,45],[14,41],[7,59],[-7,32],[-10,30],[-14,29],[-42,46],[-21,-7],[-10,-8],[-10,-6],[-42,-34],[-70,-71],[-50,-56],[-31,-36],[-46,-53],[-42,-65],[-23,-50],[-14,-38],[-10,-50],[-9,-44],[-2,-30],[11,-41],[17,-41],[19,-36],[16,-26],[28,-20],[22,-18],[25,-25],[22,-30],[19,-56],[0,-29],[-10,-28],[-18,-32],[-35,-42],[-29,-20],[-31,-12],[-21,-2],[-66,0],[-56,3],[-31,0],[-36,-8],[-17,18],[-21,44],[4,29],[4,42],[0,48],[0,51],[-2,51],[-4,34],[-7,35],[-9,29],[-15,33],[-16,32],[-17,27],[-22,32],[-16,30],[-15,30],[-11,44],[-1,40],[5,33],[11,32],[16,44],[-1,30],[-36,19],[-77,88],[-30,51],[-29,66],[-33,40],[-32,20],[-4,3],[-96,5],[-11,43],[8,44],[12,25],[20,31],[28,25],[40,25],[53,41],[48,46],[40,40],[24,46],[12,50],[0,46],[-12,46],[-24,35],[-24,20],[-36,10],[-32,0],[-37,-25],[-12,-35],[-4,-51],[-12,-76],[-24,-71],[-36,-66],[-24,-35],[-28,-26],[-25,-15],[-28,-10],[-32,-7],[-32,-5],[-48,3],[-24,19],[58,62],[72,102],[51,95],[35,82],[5,26],[9,56],[1,47],[-5,46],[-21,58],[-7,9],[-22,28],[-67,45],[-39,1],[-8,-1],[-115,-7],[-15,-10],[-201,13],[-12,5],[-103,48],[-30,37],[-6,14],[-1,32],[-1,36],[17,75],[16,61],[7,18],[44,92],[35,67],[5,8],[93,165],[52,128],[17,114],[13,183],[-2,44],[-2,44],[0,1],[-23,48],[-33,70],[-2,4],[-22,45],[-41,52],[-38,1],[-9,0],[-33,-20],[-38,-42],[-24,-45]],[[15926,17329],[-48,-43],[-12,-6],[-7,-2],[-70,-18],[-36,5],[-7,8],[-8,10],[-21,40],[-19,69],[-7,25],[-32,80],[-5,6],[-30,38],[-28,18],[-5,3],[-19,9],[-10,-1],[-64,-4],[-5,0],[-28,-32],[-35,-67],[-19,-21],[-1,0],[-32,1],[-7,0],[-33,12],[-52,30],[-30,26],[-32,40],[-15,43],[0,9],[1,35],[0,3],[0,2],[4,20],[15,80],[1,5],[1,11],[0,6],[0,12],[-2,9],[-4,30],[-2,11],[-4,8],[-4,8],[-4,10],[-9,11],[-35,43],[-7,8],[-39,33],[-6,0],[-29,18],[-36,21],[-23,14],[-7,2],[-40,15],[-7,2],[-46,1],[-7,-3],[-2,-1],[-13,-6],[-18,-21],[-16,-32],[-10,-55],[-4,-20],[-1,-1],[-6,-14],[-6,-13],[-25,-24],[-11,-5],[-11,-5],[-2,-1],[-27,1],[-19,1],[-6,3],[-21,15],[-24,33],[-9,26],[-3,9],[-8,23],[-8,38],[-1,2],[-1,3],[-8,19],[-52,134],[-7,8],[-4,5],[-19,23],[-12,8],[-38,5],[-5,1],[-15,2],[-34,-9],[-136,-69],[-15,-10],[-22,-32],[-7,-28],[0,-42],[-1,-12],[-9,-28],[-32,-53],[-18,-20],[-10,-12],[-9,-11],[-6,0],[-23,-4],[-11,-2],[-4,3],[-67,44],[-8,6],[5,21],[3,13],[2,12],[81,231],[10,18],[28,24],[50,12],[5,1],[46,20],[25,28],[26,65],[4,12],[2,5],[1,8],[3,21],[4,59],[0,1],[-1,3],[-17,49],[-2,6],[-27,33],[-84,81],[-13,10],[-6,4],[-30,23],[-19,10],[-44,21],[-12,15],[-1,0],[-5,7],[0,36],[29,42],[4,11],[5,14],[1,5],[0,15],[0,1],[-4,13],[-2,5],[-14,18],[-7,8],[-2,1],[-15,9],[-22,13],[-46,11],[-30,-1],[-3,-1],[-7,0],[-12,-10],[-59,-49],[-34,-3],[-16,6],[-17,6],[-46,1],[-31,-14],[-12,-14],[-2,-3],[-11,-18],[-1,-43],[6,-18],[33,-49],[12,-17],[0,-7],[1,-35],[1,-12],[-13,-35],[-4,-5],[-4,-6],[-11,-17],[-16,-18],[-7,-5],[-39,-26],[-4,-5],[-1,-2],[-23,-28],[-23,-50],[-18,-21],[-3,-3],[-2,0],[-45,-2],[-8,0],[-16,10],[-6,4],[-3,4],[-27,29],[-17,37],[-18,58],[0,30],[-3,70],[0,25],[-8,54],[-15,36],[-18,22],[-17,11],[-1,1],[-18,7],[-41,1],[-2,0],[-8,3],[-19,8],[-22,8],[-33,23],[-50,58],[-5,6],[-6,3],[-35,22],[-6,3],[-20,6],[-5,2],[-24,18],[-37,43],[-10,23],[-5,10],[-16,37],[-7,26],[-2,7],[-22,86],[4,58],[11,26],[30,36],[25,29],[6,13],[6,13],[7,13],[6,25],[-6,151],[-15,36],[-5,30],[0,3],[-8,71],[0,8],[2,18],[-3,23],[-1,10],[-11,24],[-12,117],[-11,41],[-1,34],[4,41],[20,44],[28,27],[31,11],[31,2],[26,-13],[45,-24],[35,-20],[26,-1],[32,16],[36,44],[0,31],[-5,35],[-18,24],[-41,29],[-26,33],[-7,31],[3,34],[31,50],[34,57],[20,42],[8,39],[-6,37],[-10,44],[-15,70],[-17,47],[-29,17],[-45,1],[-35,-27],[-11,-28],[7,-29],[14,-25],[11,-37],[5,-50],[-4,-41],[-11,-44],[-8,-35],[2,-58],[2,-52],[-13,-35],[-43,-22],[-27,11],[-20,20],[-13,26],[-5,30],[-3,39],[1,69],[-9,33],[-32,44],[-19,40],[-19,80],[-11,70],[5,45],[20,57],[18,22],[23,10],[28,7],[18,18],[17,52],[-11,44],[-35,0],[-35,-19],[-13,25],[-23,8],[-4,39],[-15,28],[15,24],[27,26],[34,-10],[24,-9],[22,-27],[21,-12],[12,-26],[24,-4],[33,4],[0,-29],[-4,-37],[-2,-33],[20,-25],[17,61],[25,38],[9,36],[22,-13],[33,-2],[13,30],[-15,32],[-14,37],[-23,3],[-3,47],[-8,43],[20,25],[1,42],[-2,30],[-23,-4],[-22,3],[-4,33],[-2,34]],[[30436,22111],[-1,-55],[-3,-110],[-4,-54],[1,-33],[-2,-57],[-2,-85],[-1,-29],[-1,-70],[-2,-44],[-3,-71],[-1,-104],[-1,-4],[-3,-54],[-8,-268],[-2,-103],[-2,-89],[-1,-41],[-6,-215],[-3,-166],[-6,-244],[0,-1],[-4,-232],[-4,-156],[-1,-53],[0,-3],[-1,-65],[-1,-43],[-3,-119],[-1,-33],[-5,-195],[0,-1],[-5,-195],[-3,-113],[-3,-132],[-8,-305],[-5,-223],[-2,-51],[0,-33],[-4,-148],[-4,-166],[-2,-52],[-1,-47],[-1,-33],[-1,-50],[-3,-226],[-3,-74],[-4,-165],[-9,-287],[-7,-269],[-3,-86],[-2,-58],[-1,-32],[-1,-40],[-9,-352],[-4,-123],[-6,-216],[0,-1],[-1,-49],[-1,-32],[-9,-332],[-2,-84],[-1,-40],[-9,-324],[-1,-63],[-2,-46],[-2,-88],[0,-12],[-2,-71],[-2,-76],[-1,-160],[-2,-36],[-2,-74],[0,-46],[-4,-59],[-3,-55],[-3,-89],[-9,-289],[-5,-172],[-8,-254],[-4,-130],[-1,-74],[-2,-92],[-3,-173],[-2,-78]],[[30193,12839],[-177,1],[-52,1],[-203,3],[-57,1],[-13,1],[-9,0],[-53,1],[-87,3],[-138,4],[-129,4],[-87,3],[-25,1],[-115,5],[-152,6],[-28,0],[-84,3],[-152,7],[-4,0],[-94,5],[-174,5],[-45,0],[-21,0],[-30,-1],[-175,8],[-2,-125],[-1,-61],[0,-58],[-2,-165],[-137,7],[-47,4],[-57,5],[-71,10],[-45,7],[-36,1],[-38,1],[-65,3],[-85,7],[-19,-1],[-68,-2],[-43,3],[-24,0],[-40,0],[-76,1],[-26,1],[-36,0],[-61,1],[-37,1],[-24,1],[-21,1],[-45,2],[-52,3],[-20,1],[-23,1],[-29,1],[-17,1],[-52,4],[-147,5],[-96,3],[-164,6],[-49,1],[-133,5],[-86,3],[-110,3],[-40,3],[-443,6],[-173,4],[-59,2],[-68,1],[-40,1]],[[25182,12598],[-170,3],[-23,0],[-96,4],[-33,2],[-166,7],[-112,5],[-29,1],[-221,10],[-124,4],[-2,0],[-309,13],[-184,8],[-119,5],[-265,6],[-138,3],[-22,0],[-65,1],[-59,4],[-154,2],[-90,1],[3,108],[3,103],[0,31],[2,96],[7,350],[1,49],[2,88]],[[15926,17329],[28,-50],[-2,-29],[-8,-32],[-14,-29],[-27,-32],[-23,-13],[-35,-12],[-33,0],[-73,-2],[-31,4],[-68,20],[-32,14],[-32,20],[-40,33],[-36,31],[-22,56],[-78,52],[-70,24],[-91,2],[-83,-23],[-50,-31],[-28,-35],[-7,-25],[0,-32],[10,-20],[25,-46],[29,-79],[2,-69],[-10,-46],[-16,-39],[-10,-18],[-37,-42],[-53,-38],[-55,-16],[-67,2],[-79,12],[-19,8],[-76,9],[-64,-2],[-31,-17],[-75,-91],[17,-65],[1,-144],[-34,-146],[-12,-28],[-27,-30],[-57,-7],[-73,5],[-149,50],[-83,103],[-27,26],[-60,41],[-49,15],[-37,9],[-100,-5],[-56,-17],[-46,-31],[-41,-45],[-38,-64],[-66,-145],[-14,-61],[-1,-89],[5,-26],[32,-79],[15,-19],[47,-101],[26,-94],[8,-51],[-4,-93],[-10,-28],[-41,-46],[-70,-27],[-77,-5],[-33,4],[-43,20],[-83,102],[-80,128],[-71,131],[-21,43],[-14,72],[1,40],[9,21],[8,71],[4,83],[1,61],[-11,65],[-20,47],[-39,44],[-42,33],[-46,8],[-39,5],[-49,-10],[-38,-24],[-53,-63],[-6,-36],[-1,-39],[8,-68],[24,-173],[21,-40],[40,-163],[16,-104],[4,-104],[-10,-57],[-30,-118],[-39,-142],[-67,-149],[-37,-42],[-58,-24],[-52,1],[-28,8],[-48,23],[-16,11],[-17,11],[-78,67],[-24,29],[-12,29],[-2,29],[7,75],[29,64],[103,151],[19,43],[7,25],[1,50],[-12,58],[-8,25],[-27,47],[-42,52],[-66,66],[-18,7],[-25,0],[-34,-1],[-5,-1],[-55,12],[-61,-2],[-58,-30],[-91,-90],[-24,-24],[-35,-33],[-62,-63],[-37,-21],[-68,-31],[-113,-36],[-182,-34],[-45,-9]],[[11551,15681],[-30,-13],[-13,-6],[-1,0],[-33,1],[-39,-12],[-34,12],[-20,29],[-50,-32],[-74,-34],[-68,-9],[-14,24],[-23,12],[-19,-12],[-29,7],[-41,36],[-50,40],[-43,12],[-30,58],[1,43],[33,50],[24,20],[60,23],[26,0],[23,-12],[52,-26],[36,-13],[27,2],[20,16],[45,33],[-4,105],[-13,6],[-81,59],[-45,51],[-52,2],[-230,149],[-95,51],[-114,-10],[-16,-1],[-171,-46],[-43,-30],[-26,-20],[-46,-47],[-34,-16],[-9,-5],[-73,-41],[-79,-34],[-161,2],[-125,-8],[-136,-3],[-97,-2],[-70,-2],[-149,-3],[-151,-74],[-18,17],[-101,95],[0,155],[50,155],[59,182],[-9,127],[-1,14],[-11,-1],[-147,-10],[-201,-21],[-298,-32],[-49,-71],[-14,-36],[-1,-1],[-13,-31],[-38,-43],[-55,-28],[-51,-13],[-43,1],[-176,99],[-28,-7],[-10,-2],[-8,-8],[-16,-14],[-26,-24],[-25,-31],[3,-61],[37,-116],[39,-83],[10,-239],[-42,-48],[-4,-32],[-31,-39],[-96,-66],[-37,-24],[-162,-57],[-7,0],[-76,-16],[-22,-8],[-61,-19],[-28,0],[-48,19],[-18,22],[1,47],[10,53],[0,47],[-5,43],[-20,58],[-36,76],[4,57],[19,39],[31,61],[19,21],[49,31],[59,52],[35,39],[41,85],[10,58],[0,50],[-7,118],[-8,58],[-10,48],[-31,42],[-31,12],[-67,-2],[-68,-20],[-284,-224],[-31,-31],[-60,-92],[-32,-125],[-7,-48],[-10,-74],[-23,-75],[-22,-53],[-113,-231],[-31,-31],[-40,-14],[-168,4],[-40,11],[-54,59],[-20,47],[-6,32],[1,47],[9,18],[16,17],[15,45],[5,65],[110,94],[47,43],[22,38],[-3,111],[-28,79],[-19,26],[-38,9],[-75,-2],[-51,-28],[-65,-58],[-69,-83],[-42,-71],[-52,-131],[-25,-89],[3,-6],[14,-69],[-5,-111],[-6,-28],[-32,-61],[-28,-39],[-9,-14],[-50,-56],[-47,-42],[-68,-49],[-15,-10],[-46,-14],[-58,2],[-63,30],[-31,29],[-9,13],[-53,71],[-34,208],[-2,90],[-17,90],[-32,87],[-36,44],[-24,18],[-24,8],[-77,5],[-18,-11],[-59,-49],[-65,-63],[-15,-17],[-54,-158],[-13,-37],[11,-37],[68,-146],[30,-76],[-17,-75],[-68,-106],[-47,-53],[-42,-22],[-61,1],[-27,21],[-40,24],[-73,5],[-35,7],[-61,13],[-54,-34],[-72,-6],[-94,-7],[-53,24],[-50,4],[-21,13],[-43,62],[-28,65],[-67,27],[-43,26],[-30,36],[-8,36],[-5,45],[-14,26],[-37,80],[3,35],[18,62],[39,43],[52,22],[13,32],[21,3],[38,-34],[30,-1],[57,9],[110,44],[49,54],[22,52],[25,110],[-7,69],[-31,103],[-70,72],[-66,-44],[-97,-114],[-75,-117],[-7,-11],[-15,-19],[-41,-48],[-77,-52],[-21,-10],[-1,0],[-85,1],[-30,12],[-30,22],[-16,19],[-20,25],[-32,49],[-40,52],[-68,67],[-10,10],[-33,40],[-18,37],[-6,32],[0,6],[-42,79],[-45,89],[-19,52],[-49,51],[-57,18],[-69,37],[-28,9],[-16,-5],[-33,-17],[-1,0],[-55,-38],[-2,-2],[-17,-3],[-106,-5],[-50,13],[-28,14],[-31,32],[-33,65],[-6,33],[-14,22],[-22,36],[17,57],[-17,3],[-21,-9],[-52,-47],[-30,-17],[-28,-12],[-21,-4],[-18,-9],[-11,-9],[-28,21],[18,45],[3,7],[0,12],[-13,5],[-42,53],[-12,32],[4,57],[18,18],[23,7],[32,49],[15,18],[34,30],[17,10],[6,0],[10,-5],[10,-3],[5,3],[22,31],[12,17],[6,15],[0,4],[-1,3],[39,35],[74,62],[14,22],[-2,8],[8,89],[-2,83],[3,14],[0,2],[-89,21],[-47,32],[-13,22],[-3,33],[4,69],[-22,65],[49,27],[68,17],[13,3],[139,40],[12,34],[24,82],[-1,65],[-32,62],[-124,61],[-77,10],[-49,-35],[-16,-28],[-28,-97],[-6,3],[-272,-9],[-73,-18],[-38,-9],[-55,-17],[-12,-2],[2,51],[0,41],[6,332],[-1,35],[1,145],[0,127],[13,426],[6,212],[1,63],[2,130],[6,276],[1,30],[3,147],[0,3],[2,84],[0,136],[2,36],[6,272],[5,263],[0,1],[1,85],[2,114],[1,74],[1,30],[2,126],[1,74],[2,75],[1,49],[2,68],[2,143],[1,43],[4,237],[7,389],[0,7],[5,155],[1,47],[4,195],[4,192],[7,384],[4,150],[1,55],[3,130],[1,96],[2,52],[1,68],[1,38],[4,221],[1,58],[2,84],[0,13],[8,406],[6,120],[6,182],[0,43],[6,40],[1,39],[-5,74],[0,74],[1,31],[6,241],[1,83],[1,87],[3,119],[1,119],[1,61],[2,99],[2,70],[4,180],[2,70],[3,180],[1,57],[1,34]],[[40917,22832],[-5,-164],[-2,-110],[-6,-198],[-4,-150],[-7,-277],[-2,-83],[-12,-465],[-2,-43],[0,-99],[0,-98],[0,-78],[0,-17],[0,-35],[0,-61],[-16,-18],[-22,-9],[-1,-24],[-1,-6],[1,-30],[6,-28],[-7,-36],[-204,-166],[-11,-29],[-11,-28],[-7,-19],[-14,-60],[-3,-14],[-5,-22],[0,-8],[-1,-30],[-1,-25],[-2,-62],[-2,-44],[-1,-13],[11,-28],[0,-1],[-2,-27],[-141,-158],[-72,-17],[-33,-6],[-30,-5],[-15,8],[-2,2],[-2,3],[0,-1],[-13,-35],[-13,-15],[-4,-3],[-18,-5],[-4,0],[-13,-2],[-6,-2],[-1,0],[-36,-75],[-3,-17],[-7,-45],[0,-4],[-12,-13],[-31,-10],[-48,-17],[-1,0],[-53,-7],[-12,-2],[-22,-37],[-64,-49],[-2,-1],[-50,-51],[-24,-167],[0,-1],[-4,-22],[-28,-41],[-29,-44],[-34,-51],[-1,-1],[-14,-61],[-2,-7],[0,-1],[-30,-90],[-52,-103],[-5,-9],[-25,-70],[-2,-11],[-5,-7],[-1,-1],[-10,-22],[-5,-10],[-55,-117],[-38,-42],[-11,-1],[-23,-3],[-1,0],[-27,5],[-9,1],[-44,7],[-30,0],[-73,-8],[-3,-3],[-3,-5],[-1,-6],[-9,-10],[-5,-4],[-37,-7],[-31,-4],[-29,16],[-4,0],[-28,-9],[-1,-1],[-58,-47],[-15,-12],[-6,2],[-3,1],[-29,12],[-47,18],[-157,-25],[-209,-183],[-11,-9],[-7,-1],[-45,-17],[-31,-12],[-49,-19],[-54,14],[-20,9],[-24,8],[3,36],[-21,15],[-18,17],[-12,29],[-18,15],[-28,13],[-25,-4],[-19,-12],[-20,2],[-19,-10],[-22,-4],[-22,-16],[-27,-19],[-11,-32],[-21,-6],[-29,-9],[-19,-15],[6,-29],[-16,-21],[-25,-16],[18,-26],[8,-30],[14,-21],[-20,-15],[15,-30],[4,-35],[-21,13],[-1,-29],[7,-28],[-14,-26],[-9,-29],[14,-29],[-22,-6],[-25,-18],[1,-35],[-19,17],[-12,-33],[-5,-31],[-12,-33],[-4,-34],[-8,-30],[-7,-30],[-20,18],[-5,-33],[-14,-31],[11,-35],[-20,-34],[-7,-27],[-19,-22],[18,-29],[-11,-25],[29,-10],[-11,-28],[1,-32],[15,-25],[-8,-29],[17,-45],[12,-25],[22,-21],[-2,-34],[18,-10],[21,-3],[10,27],[1,-36],[18,-16],[2,-30],[22,-5],[-5,-28],[24,0],[21,-26],[18,-30],[20,15],[21,3],[17,-33],[23,-14],[20,-2],[15,-27],[26,7],[21,-9],[4,-2],[3,-8],[53,-126],[5,-30],[9,-18],[40,-96],[14,-35],[3,-11],[-9,-356],[-2,-11],[1,-7],[0,-12],[-2,-40],[-4,-72],[-6,-60],[-4,-9],[-24,-53],[-2,-5],[-7,-107],[-4,-145],[-2,-54],[-11,-56],[1,-35],[2,-26],[2,-5],[28,-117],[-42,-34],[-9,-11],[-24,-25],[-14,-8],[-19,-2],[-14,3],[-11,8],[-4,5],[-11,1],[-14,7],[-76,64],[-21,25],[-24,36],[-1,0],[0,2],[-14,100],[-43,114],[-1,0],[-2,-2],[-57,-60],[0,-1],[-11,-10],[-59,-54],[-1,-1],[-6,-4],[-65,-51],[-5,-4],[-26,-17],[-7,-3],[-7,-8],[-26,-36],[-10,-22],[-29,-87],[-11,-47],[0,-2],[-1,-42],[1,-26],[-6,-15],[-24,-37],[-14,-15],[-60,-36],[-1,-1],[-32,9],[-4,3],[-9,6],[-18,14],[-67,83],[-2,7],[2,3],[6,0],[15,-4],[2,3],[-1,12],[-3,19],[-1,2],[-2,9],[-32,44],[-6,6],[-42,35],[-102,26],[-13,-3],[-14,-10],[-10,-12],[-16,-20],[-8,-10],[-10,-12],[-7,-14],[-4,-5],[-22,-27],[-14,-14],[-3,-4],[-1,0],[-9,-5],[-6,2],[-5,4],[-1,0],[-2,4],[-7,39],[0,8],[3,10],[1,2],[-2,10],[0,2],[-1,0],[-1,5],[-7,8],[-6,5],[-1,1],[-1,0],[-5,1],[-13,1],[-8,-2],[-2,0],[-1,-1],[-11,-7],[-5,-6],[-7,-14],[-7,-21],[0,-8],[14,-135],[-9,-8],[-7,-25],[-6,-96],[-11,-61],[2,-7],[9,-33],[10,-13],[8,-9],[33,-26],[75,-57],[31,-15],[17,-8],[3,-1],[55,-2],[14,5],[4,1],[55,2],[13,-5],[8,-3],[18,-26],[-1,-21],[0,-8],[-7,-16],[-9,-19],[-32,-49],[-45,-53],[-3,-2],[-9,-25],[0,-2],[0,-4],[1,-37],[15,-36],[2,-4],[9,-29],[13,-55],[-1,-15],[-2,-24],[-1,-7],[-22,-25],[-61,-14],[-4,-1],[-28,-17],[-85,-97],[-10,-25],[0,-23],[-1,-12],[27,-27],[40,-5],[27,-12],[67,-95],[6,-8],[4,-4],[16,-14],[1,-1],[36,-19],[30,-3],[31,-3],[24,10],[25,9],[3,0],[25,-4],[6,-1],[2,-2],[9,-14],[6,-9],[0,-13],[-1,-23],[0,-4],[-4,-4],[-9,-8],[-12,-12],[-37,2],[-25,8],[-23,8],[-34,1],[-15,-3],[-22,-13],[-19,-21],[-13,-46],[-8,-64],[-4,-16],[-6,-27],[-5,-5],[-2,-2],[0,-3],[1,-16],[1,-28],[9,-10],[13,-16],[16,-18],[99,-62],[13,-3],[18,-5],[23,-19],[18,-22],[12,-32],[12,-34],[2,-3],[3,-4],[8,-11],[7,-4],[8,-4],[2,0],[4,0],[22,-1],[46,12],[15,0],[12,-1],[39,-23],[6,-4],[19,0],[21,-1],[15,-1],[25,6],[40,20],[31,24],[19,21],[20,39],[1,23],[2,25],[2,20],[-3,14],[-16,36],[-16,33],[0,15],[-1,14],[0,15],[6,4],[13,10],[3,3],[3,0],[13,-1],[14,-1],[45,-37],[11,-16],[65,-88],[21,-15],[30,-12],[37,-1],[22,6],[8,3],[22,-1],[12,-8],[3,-4],[62,-84],[11,-15],[20,-44],[11,-40],[0,-14],[-1,-27],[-1,-23],[-6,-22],[-27,-63],[-21,-22],[-4,-5],[-29,-30],[-5,-5],[-5,-11],[-9,-25],[-3,-7],[-1,-24],[0,-20],[-1,-17],[6,-15],[8,-25],[14,-65],[-1,-25],[-7,-14],[-11,-13],[-2,-1],[-6,-7],[-18,1],[-4,0],[-8,0],[-8,11],[-8,10],[-10,13],[-5,15],[-4,10],[-20,26],[-25,1],[-9,-10],[-1,-22],[6,-19],[6,-20],[2,-8],[44,-145],[15,-26],[3,-2],[1,0],[2,-2],[6,0],[64,1],[27,-8],[15,-8],[11,-13],[6,-8],[10,-12],[8,-29],[0,-1],[0,-3],[-2,-57],[-10,-29],[0,-24],[-1,-19],[13,-16],[21,-2],[55,-3],[26,-1],[5,2],[67,28],[21,9],[11,12],[7,8],[10,11],[4,32],[-5,18],[-28,41],[-10,15],[-2,29],[10,12],[6,8],[3,4],[27,2],[15,-7],[19,-25],[13,-45],[7,-58],[-1,-40],[0,-2],[-1,-19],[-4,-12],[-1,-3],[-11,-34],[-40,-71],[-12,-20],[-1,-3],[-18,-52],[-4,-13],[-2,-50],[5,-18],[12,-43],[23,-55],[2,-29],[1,-61],[-8,-57],[-3,-7],[-3,-7],[-2,-50],[9,-22],[27,-23],[97,-15],[51,2],[49,1],[89,18],[4,0],[23,8],[35,11],[34,3],[127,-20],[16,-6],[17,-6],[16,-1],[36,-1],[15,-1],[13,5],[36,14],[10,4],[60,45],[40,30],[10,5],[42,21],[63,22],[2,1],[1,0],[6,0],[63,0],[48,-27],[9,-11],[33,-41],[11,-15],[17,-47],[-2,-25],[0,-5],[-3,-34],[-26,-42],[-7,-9],[-56,-61],[-3,-25],[-1,-10],[9,-11],[43,-2],[40,9],[28,12],[15,6],[3,2],[23,17],[36,27],[38,4],[0,-2],[-4,-98],[0,-3],[-14,-19],[-8,-12],[-14,-32],[-2,-7],[-3,-11],[-8,-31],[-1,-11],[0,-2],[-1,-30],[4,-6],[1,-2],[19,-29],[13,-2],[12,-1],[20,-3],[52,5],[4,5],[3,2],[10,-1],[53,-4],[16,-2],[26,-29],[9,-19],[1,-8],[8,-44],[4,-20],[-1,-40],[-10,-121],[-22,-32],[-9,0],[-19,-2],[-37,15],[-2,1],[-19,14],[-65,47],[-33,-6],[-16,-17],[-1,-2],[-15,-33],[-7,-22],[-1,-31],[0,-4],[10,-35],[8,-15],[7,-13],[4,-64],[0,-11],[9,-22],[14,-18],[25,-12],[7,-1],[27,-1],[2,0],[114,39],[11,14],[20,24],[34,42],[11,13],[22,14],[29,8],[23,7],[8,5],[5,3],[18,9],[10,11],[11,12],[14,15],[54,98],[0,2],[-1,4],[17,18],[17,19],[9,9],[21,14],[61,1],[24,-15],[15,-19],[3,-3],[6,-8],[25,-78],[8,-24],[13,-13],[6,-7],[2,-2],[16,-11],[8,-5],[16,-6],[20,-7],[65,-25],[4,-2],[16,0],[57,0],[10,0],[46,9],[11,5],[10,5],[70,25],[1,0],[32,2],[11,0],[36,-23],[5,-7],[38,-47],[4,-5],[2,-4],[24,-48],[20,-54],[18,-50],[6,-16],[1,-4],[13,-54],[-1,-13],[-3,-41],[-1,-14],[-13,-42],[-34,-71],[-2,-3],[-1,-6],[-5,-29],[-2,-12],[15,-29],[7,-9],[41,-52],[2,-2],[8,-11],[8,-30],[5,-19],[4,-13],[0,-10],[-2,-44],[8,-57],[11,-30],[23,-29],[21,-8],[24,-1],[15,-1],[10,0],[11,3],[32,11],[3,2],[3,3],[24,32],[2,3],[1,3],[9,34],[4,16],[6,54],[2,18],[5,5],[5,6],[9,9],[11,-1],[8,-1],[20,-3],[27,-26],[7,-22],[1,-2],[12,-35],[-2,-27],[-2,-22],[-1,-15],[-26,-67],[-4,-11],[0,-1],[-1,-20],[-1,-29],[4,-13],[14,-49]],[[41237,10387],[-21,23],[-10,-2],[-29,-4],[-3,0],[-28,11],[-11,5],[-33,14],[-46,20],[-1,0],[-93,14],[-10,3],[-2,0],[-113,31],[-73,38],[-19,11],[-6,3],[-38,1],[-31,0],[-42,-7],[-6,-2],[-1,-4],[7,-19],[12,-36],[-42,-50],[-13,-23],[-33,-58],[0,-1],[-7,-56],[11,-12],[1,-1],[41,-49],[5,-8],[2,-12],[-2,-8],[-4,-4],[-11,-2],[-32,4],[-36,7],[-16,3],[-40,8],[-48,36],[-74,-7],[-8,-21],[0,-1],[0,-1],[-19,-46],[-3,-6],[-8,-5],[-1,0],[-139,-28],[-60,5],[-33,17],[-16,9],[-18,12],[-59,38],[-1,1],[-6,13],[-44,74],[-24,24],[-1,0],[-81,42],[-41,10],[-107,26],[-17,0],[-14,-6],[-33,-15],[-3,-6],[0,-1],[0,-4],[1,-14],[0,-13],[1,-6],[-5,-14],[-13,-7],[-55,-12],[-45,-39],[-2,-3],[-31,-72],[-7,-27],[0,-24],[0,-4],[-12,-21],[-9,-11],[-7,-2],[-21,-1],[-8,-5],[-1,-25],[-15,-3],[-45,-8],[-18,-4],[-33,27],[-20,16],[-8,6],[0,1],[-11,3],[-5,2],[-39,-6],[-27,-4],[-31,-5],[-1,0],[-15,-1],[-6,-15],[-79,39],[-34,11],[-7,7],[-72,72],[-9,23],[-11,18],[-29,-18],[30,61],[4,7],[6,22],[-9,24],[0,1],[-2,2],[-77,13],[-8,1],[-11,2],[-16,2],[-134,15],[-12,1],[-38,5],[-44,5],[-27,0],[-6,-2],[2,-6],[2,-4],[14,-25],[-26,0],[-16,0],[-3,0],[-52,37],[6,16],[-1,7],[-5,6],[-1,0],[-32,16],[-55,26],[-34,4],[-30,-10],[-13,0],[-11,3],[-11,5],[-12,19],[-11,60],[0,1],[-12,64],[-6,32],[-1,3],[-1,10],[7,13],[0,1],[2,7],[0,4],[-1,24],[-7,6],[-1,0],[-14,6],[-14,2],[-1,0],[-27,14],[0,4],[-15,78],[-1,0],[1,1],[4,11],[-6,21],[-7,15],[-12,13],[-15,8],[-25,4],[-85,-3],[-12,-7],[0,-6],[7,-7],[1,0],[-15,-24],[-6,2],[-26,9],[-13,5],[-69,12],[-1,0],[-9,51],[-63,-31],[-19,-3],[-9,-2],[-27,-8],[-2,-1],[-1,0],[-13,-3],[-119,-22],[-1,0],[-8,-1],[-11,5],[-3,1],[-5,3],[-88,45],[-12,0],[-2,0],[-3,1],[-22,13],[-8,8],[0,1],[-3,6],[-4,8],[-1,2],[-2,9],[-3,5],[-35,10],[-42,0],[-38,-44],[-11,-13],[-12,-16],[-14,-14],[-91,-53],[-4,-2],[-60,0],[-25,-28],[-25,-27],[-9,-33],[4,-8],[8,-17],[-6,-8],[-34,-43],[-27,-36],[-6,-10],[-2,-2],[-3,-6],[-33,-57],[-36,15],[-44,18],[-44,37],[-16,1],[-6,0],[-47,-28],[-34,-16],[-66,-16],[0,-2],[-7,-20],[-4,-11],[-1,-2],[-42,2],[-110,4],[-50,1],[-90,4],[-47,1],[-26,1],[-172,9],[-108,-2],[-59,3],[-209,4],[-75,5],[-131,8],[-58,8],[-87,2],[-22,0],[-265,9],[-71,-2],[-149,6],[-30,1],[-118,5],[-24,1],[-43,6],[-33,0],[-271,16],[-23,1],[-4,0],[-120,3],[-39,0],[-39,1],[-250,6],[-37,3],[-20,2],[-187,6],[-439,13],[-44,0],[-207,11]],[[32966,10676],[-317,17],[-24,1],[-87,-8],[-8,0],[-31,1],[-20,0],[-79,3],[-31,1],[-35,1],[-9,1],[-29,0],[-24,1],[-19,0],[-30,1],[-59,3],[-30,1],[-79,3],[-151,5],[-125,4],[-227,7],[-40,2],[-98,3],[-126,3],[-164,6],[-6,0],[-24,0],[-67,3],[-366,11],[-36,1],[-66,2],[-42,1],[-21,1],[-253,8],[-43,1],[-28,1],[-32,1],[3,167],[1,51],[1,39],[3,91],[1,36],[1,42],[2,72],[1,58],[1,47],[1,8],[1,57],[1,45],[1,53],[1,33],[1,45],[3,112],[2,68],[1,60],[3,90],[2,43],[1,56],[5,170],[2,82],[3,74],[2,91],[2,48],[3,118],[0,54],[3,104],[1,63]],[[45987,20131],[68,-193],[-23,-65],[17,-86],[2,-10],[13,-102],[44,-42],[32,-30],[1,-1],[15,-60],[4,-18],[5,-22],[-24,-91],[-1,-10],[49,-27],[-18,-48],[-2,-5],[-4,-12],[32,-33],[0,-8],[0,-1],[-20,-54],[-1,0],[-50,-74],[-1,-1],[11,-91],[1,-5],[1,-3],[0,-15],[-1,-6],[-29,-41],[-7,1],[-9,-14],[-19,-69],[-1,-13],[1,-7],[5,-3],[2,-1],[0,-6],[0,-12],[-2,-75],[0,-34],[-1,-53],[45,-31],[3,-2],[2,-9],[9,-49],[1,-1],[-18,-51],[1,-1],[31,-226],[21,-16],[1,-1],[15,-5],[-1,-2],[-11,-29],[-14,-35],[-18,-45],[-2,-5],[-8,-56],[7,-9],[16,-21],[16,-25],[1,-1],[1,-2],[2,-5],[10,-34],[3,-12],[0,-1],[0,-4],[2,-36],[-8,-65],[-24,-6],[-7,-28],[4,-29],[-29,-15],[4,-30],[4,-38],[-11,-34],[-8,-32],[-14,-28],[-26,-43],[-18,-31],[0,-31],[-23,-26],[3,-29],[0,-35],[-3,-31],[-15,-50],[15,-21],[5,-28],[-5,-31],[0,-20],[0,-10],[6,-33],[-26,-4],[9,-34],[-21,-11],[16,-21],[15,-22],[-21,-16],[-20,-13],[25,-21],[25,-11],[18,-20],[13,-33],[-11,-41],[20,-41],[7,-47],[6,-32],[1,-30],[15,-27],[18,-17],[-10,-31],[14,-23],[13,-25],[21,-30],[3,-37],[10,-31],[-2,-30],[-4,-30],[-14,-25],[0,-42],[0,-29],[-14,-22],[4,-44],[-16,-21],[-5,-42],[-5,-32],[-7,-40],[-2,-32],[-28,-12],[15,-39],[11,-26],[22,10],[12,-25],[-12,-23],[18,-15],[18,-18],[10,-27],[27,-22],[16,-25],[-8,-33],[7,-34],[8,-29],[13,-10],[0,-23],[1,-3],[0,-10],[0,-21],[13,-88],[18,-49],[-16,-112],[-11,-50],[-1,-7],[0,-32],[1,0],[17,-19],[1,-1],[1,-1],[1,-1],[-1,-19],[0,-8],[-3,-32],[0,-8],[-1,-4],[2,-48],[-4,-18],[-36,-79],[-16,-21],[-9,-4],[-1,-1],[-7,-5],[-8,-11],[-1,-1],[-5,-7],[-13,-47],[-19,-81],[-1,-64],[0,-14],[-1,-30],[0,-13],[-8,-53],[1,-1],[88,-149],[1,0],[21,-21],[20,-55],[18,-47],[10,-27],[0,2],[5,-12],[6,-30],[-12,-29],[-2,-29],[-22,-9],[14,-26],[14,-46],[3,-31],[7,-47],[22,-10],[3,-33],[15,-29],[10,-27],[17,-21],[-15,-28],[20,-27],[-9,-32],[-1,-31],[-22,-13],[1,-31],[-9,-38],[-12,-51],[-9,-27],[-26,-23],[-33,-11],[-10,-36],[-5,-28],[23,1],[-8,-32],[-22,-14],[-3,-28],[-1,-2],[-20,5],[-4,-29],[-19,26],[-21,-1],[-12,-27],[-4,-38],[-4,-38],[3,-48],[20,-31],[10,-10],[7,-7],[1,0],[30,-132],[0,-1],[1,-7],[-8,-78],[0,-2],[-13,-86],[-24,-39],[-1,0],[-25,-26],[-1,-2],[-10,-21],[-2,-22],[-1,-3],[-64,-127],[-1,-1],[-34,-30],[-1,-1],[0,-1],[-4,-9],[-4,-15],[0,-3],[0,-1],[-2,-36],[-1,-16],[0,-20],[1,-6],[5,-49],[2,-5],[7,-26],[-14,-210],[0,-14],[-1,-6],[-78,-84],[-28,-31],[-56,-103],[-5,-17],[-22,-43],[-14,-58],[-5,-17],[-12,-26],[-5,-11],[-5,-9],[-3,-23],[-1,-3],[-3,-51],[15,-54],[1,-4],[21,-66],[1,-2],[7,-5],[18,-2],[-1,-5],[-14,-48],[-62,-207],[-3,-5],[-38,-2],[-9,2],[-108,-134],[-4,-6],[-11,-32],[-23,-74],[0,-1],[-10,-36],[-5,-6],[-38,-34],[-15,-10],[-2,-2],[-16,-28],[-6,-17],[-18,-61],[-4,-70],[3,-21],[2,-10],[1,-1],[12,-18],[0,-14],[0,-2],[-11,-66],[-16,-20],[-1,-2],[-54,-173],[-3,-12],[1,-1],[13,-48],[2,-4],[10,-10],[-22,-64],[-6,-16],[-18,-16],[-34,-21],[-26,22],[-39,34],[-30,10],[-21,-13],[-6,-28],[-26,11],[-37,-22],[-25,-3],[-26,-4],[-31,-38],[-10,-34],[7,-29],[-13,-31],[27,-45],[23,-49],[10,-30],[20,-27],[-3,-30],[23,-14],[-24,-11],[-27,-12],[-15,-22],[-19,-14],[-6,-46],[-10,-32],[-20,-41],[0,-42],[-8,-30],[5,-29],[23,-25],[-7,-34],[-19,-12],[0,-23],[-46,-68],[0,-1],[-3,-69],[0,-1],[-21,-168],[-3,-21],[-2,-74],[44,-68],[39,6],[2,0],[6,-4],[5,-6],[0,-22],[-11,-58],[-2,-11],[-5,-12],[-34,-90],[-1,-85],[-9,-29],[-2,-31],[0,-2],[0,-1],[2,-15],[31,-164],[6,-30],[8,-42],[12,-64],[33,-43],[4,-5],[8,-5],[30,-17],[7,-1],[22,1],[7,-2],[45,-33],[0,-1],[52,-79],[0,-1],[8,-13],[5,-17],[0,-8],[1,-3],[12,-27],[15,-1],[15,9],[5,3],[36,23],[3,2],[8,1],[34,5],[28,5],[24,-12],[1,0],[44,-25],[3,-2],[9,-12],[25,-34],[10,-14],[7,-16],[27,-63],[8,-20],[3,-10],[-1,-7],[-1,-9],[5,-19]],[[45595,8435],[-46,37],[-65,42],[-12,1],[-22,1],[-3,0],[-15,-7],[-19,-24],[-1,-37],[-1,-31],[-17,-143],[-12,-37],[-2,-8],[-3,-8],[-9,-10],[-14,-15],[-9,-10],[-7,-4],[-15,-9],[-34,-20],[-12,-3],[-86,-18],[-31,-38],[-57,-141],[-57,-69],[-43,-23],[-6,-4],[-5,0],[-14,-3],[-43,-8],[-64,-8],[-6,4],[-14,-1],[-77,-6],[-38,-6],[-33,-5],[-18,-3],[-43,-16],[-68,-40],[-28,-17],[-11,-3],[-58,-15],[-33,-9],[-79,-4],[-103,1],[-57,-8],[-23,-3],[-31,-9],[-10,-5],[-51,-22],[-13,-6],[-8,-6],[-70,-51],[-21,-10],[-21,1],[-19,31],[12,42],[10,31],[2,61],[-6,14],[-5,6],[-9,11],[-12,13],[-6,0],[-3,1],[-22,0],[-3,-3],[-22,-21],[-47,-48],[-43,-23],[-24,-2],[-6,-1],[-22,-2],[-30,12],[-4,5],[-8,10],[-3,4],[1,12],[9,102],[-2,36],[-6,17],[-3,7],[-5,13],[-18,22],[-7,9],[-4,6],[-118,142],[-12,7],[-30,2],[-19,-14],[-4,-7],[-1,-2],[-8,-12],[-24,-74],[-3,-7],[-3,-4],[-11,-13],[-4,-4],[-3,1],[-12,3],[-4,0],[-3,7],[-25,45],[-3,18],[-11,33],[-8,10],[-2,2],[-13,18],[-23,10],[-28,13],[-5,4],[-19,14],[-12,9],[-11,14],[-31,39],[-31,40],[-57,71],[12,26],[26,17],[24,5],[22,10],[21,11],[30,24],[18,20],[18,14],[26,18],[95,81],[16,37],[-2,39],[-25,10],[-21,-6],[-43,-22],[-19,-24],[-31,-17],[-22,1],[-31,15],[-49,47],[2,35],[22,11],[37,35],[55,81],[24,10],[30,14],[26,16],[22,22],[20,51],[2,46],[-7,43],[-21,44],[-28,11],[-17,-16],[-21,-34],[-19,-25],[-25,-27],[-17,-34],[-32,-34],[-20,-8],[-24,-3],[-30,14],[-13,40],[0,28],[-6,54],[-19,43],[-25,43],[-30,57],[-13,34],[-18,45],[-27,27],[-31,2],[-19,-16],[-72,-111],[-17,-49],[2,-43],[20,-52],[4,-44],[-13,-26],[-40,-10],[-24,2],[-24,9],[-21,37],[-13,58],[-20,55],[-78,122],[-3,4],[-30,37],[-2,4],[-24,15],[-12,0],[-14,1],[-26,1],[-27,-9],[-7,-5],[-27,-16],[-4,-3],[-2,-3],[-22,-27],[-55,-67],[-22,-16],[-15,-11],[-75,-40],[-37,-20],[-20,-19],[-71,-67],[-22,-13],[-6,1],[-33,4],[-22,18],[-11,9],[-8,13],[-6,9],[-9,15],[0,7],[-1,23],[-1,13],[4,8],[36,76],[4,29],[3,16],[3,14],[5,30],[3,22],[2,2],[3,3],[14,19],[5,3],[42,24],[25,35],[4,35],[-7,26],[0,1],[-1,2],[-9,11],[-14,15],[-37,2],[-26,-28],[-18,-20],[-10,2],[-17,2],[-9,12],[-3,3],[-1,65],[0,14],[-5,12],[-7,12],[-5,9],[-3,4],[-20,26],[-9,26],[-5,39],[17,32],[1,51],[0,3],[-8,22],[-21,26],[-41,26],[-3,3],[-35,30],[-1,1],[-2,4],[-12,19],[-18,29],[1,28],[0,7],[0,4],[7,18],[8,13],[13,20],[11,17],[35,55],[-2,36],[-4,5],[-4,5],[-6,8],[-12,5],[-6,-2],[-13,-5],[-46,-5],[-1,0],[-40,2],[-8,0],[-29,19],[-57,36],[-42,26],[-21,19],[-17,29],[1,30],[0,22],[1,20],[3,9],[7,23],[-1,47],[-12,14],[-10,1],[-5,0],[-3,-2],[-22,-15],[-50,-37],[-55,-30],[-37,-19],[-26,-14],[-31,-10],[-26,1],[-9,1],[-1,0],[-1,0],[-36,23],[-5,4],[-27,32],[-36,43],[-2,3],[-18,54]],[[63630,16009],[-7,-343],[-2,-29],[0,-100],[1,-32],[1,-147],[0,-4],[0,-102],[0,-50],[-1,-37],[-4,-171],[-1,-47],[-2,-61],[0,-1],[-1,-67],[0,-30],[-2,-38],[0,-1],[-5,-321],[-1,-94],[-3,-96],[-1,-48],[0,-76],[0,-155],[-5,-256],[-2,-81],[0,-40],[-10,-389],[-4,-189],[0,-31],[-10,-515],[-1,-39],[0,-37],[-1,-39],[-1,-72],[-1,-34],[-2,-99],[0,-22],[-1,-31],[-1,-45],[-1,-68],[-1,-120],[-2,-177],[0,-56],[-2,-196],[-2,-179],[0,-33],[-2,-195],[-1,-6]],[[63552,11010],[-9,0],[-14,0],[-80,5],[-31,2],[-207,12],[-1,0],[-22,2],[-37,2],[-48,1],[-22,1],[-56,2],[-32,1],[-121,4],[-166,5],[-35,-1],[-13,0],[-7,0],[-58,-1],[-245,10],[-96,3],[-164,7],[-114,3],[-78,2],[-74,2],[-24,1],[-25,0],[-176,6],[-142,5],[0,-17],[-37,1],[-64,2],[-221,2],[-63,1],[-28,1],[-446,9],[-35,0],[-229,5],[-153,3],[-49,5],[-65,1],[-214,5],[-134,4],[-20,0],[-241,6],[-79,0],[-1,0],[-426,7],[-201,5],[-236,4],[-160,4],[-687,10],[-21,0],[-51,0],[-76,0],[-46,4],[-48,0],[-119,4],[-29,-5],[-192,10],[-16,1],[-132,6],[-161,12],[-64,0],[-72,2],[-116,4],[-349,13],[-93,4],[-171,0],[-101,-2],[-160,8],[-53,2],[-122,6],[-55,1],[-215,9],[-23,1],[-29,0],[-159,0],[-153,1],[-51,0],[-26,1],[-253,5],[-3,0],[-180,4],[-276,5],[-201,6],[-87,3],[-304,9],[-45,0],[-27,3],[-63,1],[-210,6],[-238,7],[-37,2]],[[52839,11275],[-11,14],[-23,56],[-9,22],[-11,21],[-13,25],[-21,53],[-13,32],[-4,5],[-2,3],[-87,125],[-6,18],[-12,62],[-28,70],[-3,7],[1,17],[0,8],[0,4],[19,28],[23,31],[3,12],[19,58],[2,8],[-22,89],[-2,8],[0,3],[0,66],[17,38],[4,9],[63,110],[20,21],[56,58],[3,12],[0,3],[1,3],[-75,117],[-6,9],[-40,10],[-43,12],[-10,5],[-91,46],[-85,43],[-4,2],[-71,75],[-4,4],[-37,131],[-4,64],[1,16],[2,49],[0,7],[1,1],[4,7],[60,93],[50,120],[1,6],[14,72],[35,44],[17,16],[2,2],[60,25],[8,4],[35,34],[9,14],[4,18],[-1,49],[0,8],[-8,33],[-36,76],[-1,1],[-12,15],[-56,23],[-4,1],[3,30],[2,17],[-2,18],[-8,14],[-6,10],[-6,13],[-14,17],[-10,13],[-5,13],[-9,24],[-3,7],[5,32],[9,103],[1,7],[2,61],[0,7],[2,4],[4,11],[1,3],[2,2],[64,73],[31,36],[11,13],[16,12],[3,1],[5,1],[23,1],[5,7],[13,14],[-1,13],[-1,5],[-11,70],[-2,11],[-3,19],[-12,34],[-11,28],[5,3],[3,2],[1,22],[1,10],[0,18],[-5,7],[-1,1],[-5,7],[-23,5],[-41,9],[-14,15],[-11,11],[-10,12],[0,7],[0,1],[0,13],[16,17],[50,23],[3,1],[16,4],[6,1],[21,1],[11,0],[6,8],[-1,9],[-4,48],[-1,11],[-6,9],[-22,-1],[-59,-4],[-15,16],[-5,29],[19,23],[1,1],[5,7],[5,39],[-6,1],[-25,4],[-44,49],[-26,70],[-2,3],[-5,11],[1,50],[1,3],[20,50],[0,2],[3,22],[1,10],[165,-1],[31,1],[271,3],[25,1],[52,0],[21,1],[77,1],[0,35],[0,216],[0,155],[-1,489],[0,132],[0,217],[-1,734],[0,79],[0,181],[-2,29],[-1,54],[-2,20],[0,12],[2,178],[1,32],[1,111],[1,3],[2,53],[-1,21],[-4,93],[-1,36],[1,174],[0,60],[1,208],[0,108],[0,83],[2,30],[0,46],[0,37],[3,258],[1,75],[0,37],[0,24],[1,54],[0,38],[1,57],[1,79],[-1,43],[-1,137],[1,134],[1,36],[0,192],[0,208]],[[52839,11275],[9,-20],[20,-52],[6,-15],[2,-6],[1,-3],[9,-62],[3,-73],[1,-12],[1,-34],[8,-25],[13,-17],[1,-1],[1,-1],[17,-9],[13,-7],[33,-9],[71,2],[1,0],[22,1],[46,-13],[13,-7],[46,-25],[16,-8],[43,-25],[23,0],[21,-2],[33,-7],[45,-14],[34,-21],[17,-12],[22,-26],[10,-30],[2,-11],[3,-5],[-1,-16],[-1,-13],[-2,-20],[-1,-11],[-16,-28],[-14,-15],[-84,-91],[-44,-47],[-7,-9],[-20,-27],[-13,-35],[0,-9],[-2,-51],[-1,-5],[1,-3],[1,-1],[4,-18],[6,-15],[30,-69],[22,-73],[0,-36],[0,-54],[-20,-42],[-11,-15],[-11,-16],[-7,-15],[-36,-80],[-13,-17],[-7,-8],[-15,-16],[-10,-11],[-47,-32],[-47,-31],[-43,-16],[-26,-3],[-29,-3],[-12,-1],[-3,3],[-38,42],[-9,7],[-42,28],[-12,0],[-9,-10],[40,-239],[71,-129],[1,-1],[3,-4],[5,-6],[33,-17],[4,-10],[27,-56],[21,-19],[11,-16],[1,-2],[17,-26],[11,-27],[10,-22],[7,-17],[1,-4],[2,-11],[5,-21],[-2,-5],[-12,-38],[-1,-28],[19,-59],[6,-8],[3,-4],[3,-3],[-2,-61],[-23,-45],[2,-9],[24,-79],[1,-6],[5,-16],[-8,-11],[-23,-29],[-4,-4],[17,-134],[-3,-25],[-1,-8],[-1,-17],[-30,-104],[-1,-4],[-1,-2],[-85,-93],[-12,-3],[-10,16],[-16,25],[-5,1],[-3,0],[-90,11],[-1,0],[-1,0],[-13,1],[-62,-40],[-22,-24],[-3,-3],[-9,0],[-19,1],[-3,0],[-11,8],[-7,4],[38,34],[35,41],[0,1],[1,13],[-12,15],[-40,24],[-7,4],[14,7],[9,9],[8,7],[0,8],[-7,9],[-2,2],[-9,5],[-6,3],[-12,0],[-26,-15],[-8,-4],[-53,2],[-6,0],[-1,-1],[-85,-84],[-11,-10],[0,-10],[0,-1],[-29,-52],[-16,-18],[-10,-4],[-24,-12],[-7,-7],[0,-14],[1,-2],[9,-13],[33,-50],[23,-35],[52,-93],[41,-77],[2,-4],[5,-11],[-4,-28],[0,-1],[-47,-50],[-29,-32],[-5,-3],[-23,-15],[-3,-2],[-1,0],[-6,1],[-5,0],[-6,7],[5,64],[0,1],[-5,7],[-43,2],[-7,-2],[0,-1],[-8,-3],[-26,-28],[-10,-10],[-23,-26],[-2,-1],[-65,-40],[-2,-1],[-29,-16],[-28,-9],[-5,-9],[-66,-113],[-16,-12],[-35,-27],[-12,-8],[-10,2],[-14,2],[-18,30],[-2,4],[0,7],[1,8],[0,10],[4,7],[18,28],[2,35],[-52,86],[-18,18],[-21,1],[-19,-13],[-69,-61],[-50,-45],[-10,-10],[-9,-3],[-36,5],[-9,1],[-2,-3],[-8,-11],[-3,-3],[-1,-29],[50,-128],[9,-11],[10,1],[33,4],[14,-23],[0,-4],[0,-84],[0,-8],[-14,-46],[-6,-7],[-5,-1],[-35,-5],[-18,1],[-4,5],[-2,3],[-1,16],[-1,13],[-9,11],[-15,8],[-24,1],[-21,-21],[-18,-18],[-5,-6],[-47,-71],[0,-3],[-1,-11],[9,-17],[22,-44],[30,-58],[5,-41],[-1,0],[-35,-27],[-15,-12],[-2,-1],[-26,2],[-15,-10],[-15,-13],[-10,-7],[-9,-22],[5,-29],[0,-4],[-15,-13],[-5,-1],[-26,-2],[-36,17],[-44,31],[-17,20],[-10,13],[1,22],[6,6],[4,4],[3,18],[-6,7],[-27,-2],[-8,-6],[-1,-1],[-63,-47],[-7,-9],[-11,-13],[-7,-9],[-14,-28],[-1,-29],[12,-27],[2,-6],[0,-21],[-1,-7],[-1,-6],[-2,-9],[-3,-3],[-8,-9],[-2,-1],[-24,1],[-100,26],[-4,3],[-28,17],[-5,0],[-1,0],[-2,-2],[-16,-20],[-2,-2],[0,-22],[7,-61],[11,-19],[9,0],[6,0],[6,4],[7,6],[9,-1],[2,0],[4,0],[9,-12],[6,-7],[0,-2],[17,-117],[-1,-7],[-1,-5],[-3,-27],[-10,-43],[-16,-24],[-4,-4],[-4,-5],[-8,-8],[-12,0],[-12,22],[-1,1],[-2,3],[-1,39],[0,8],[-6,7],[-3,1],[-23,1],[-1,0],[-34,-24],[-16,-21],[-5,-9],[-1,-3],[-1,-2],[2,-13],[3,-26],[-10,-11],[-12,0],[-6,0],[-21,-1],[-30,12],[-6,8],[-47,65],[-14,20],[-10,0],[-2,1],[-6,-5],[-35,-28],[-9,-8],[-6,-7],[-14,-18],[-3,-3],[-1,-3],[-5,-10],[-6,-17],[-3,-8],[-7,-23],[0,-4],[-1,-11],[-1,-23],[5,-8],[22,-14],[4,-2],[4,-3],[20,-49],[-1,-3],[-14,-142],[-1,-7],[-3,-25],[-82,-104],[-26,-31],[-62,-33],[-117,-48],[-6,0],[-15,1],[-7,7],[-8,8],[-2,19],[-7,75],[1,3],[4,17],[5,17],[-3,2],[-2,1],[-24,-4],[-43,-8],[-41,-7],[-79,-15],[-6,-1],[-11,-49],[-3,-23],[-3,-35],[-3,-25],[17,-112],[13,-15],[0,-1],[2,-2],[8,-22],[0,-10],[-3,-39],[-3,-30],[-13,-37],[-17,-44],[-34,-35],[-10,-10],[-7,1],[-14,0],[-6,1],[-73,10],[-11,15],[0,6],[0,16],[1,19],[0,2],[-9,11],[-66,29],[-14,2],[-9,2],[-4,1],[-11,-13],[-5,-5],[-5,-13],[-8,-18],[-56,-172],[-2,-5],[-17,-71],[-3,-3],[-46,-50],[-13,-14],[-2,-2],[-10,-24],[-4,-47],[10,-17],[1,-1],[8,-37],[0,-10],[0,-3],[-1,-22],[-3,-4],[-28,-34],[-23,-27],[-6,-8],[11,-18],[66,-36],[6,0],[23,2],[4,0],[3,3],[6,6],[7,8],[7,14],[0,10],[1,19],[9,10],[3,0],[8,0],[7,-1],[20,-22],[7,-7],[0,-1],[20,-123],[-1,-25],[-4,-4],[-5,-6],[-13,1],[-29,37],[-3,4],[-4,2],[-22,11],[-12,6],[-22,1],[-5,-7],[-7,-8],[-7,-9],[0,-11],[9,-11],[65,-39],[4,-57],[-13,-18],[-19,-20],[-20,-57],[-3,-21],[1,-3],[2,-3],[8,-16],[21,-3],[15,-3],[9,-11],[2,-2],[4,-5],[2,-26],[-18,-78],[-29,-33],[-17,-20],[-17,-36],[-30,-66],[-26,-57]],[[49876,4544],[-15,23],[-23,1],[-45,-21],[-19,-21],[-34,-20],[-37,-9],[-11,3],[-13,4],[-9,2],[-11,15],[-8,36],[4,8],[70,107],[0,22],[0,2],[1,5],[-15,16],[-5,6],[-4,4],[-21,12],[-36,13],[-9,0],[-21,1],[-6,0],[-8,-8],[-52,-53],[-9,-4],[-7,1],[-20,1],[-1,0],[-69,17],[-2,0],[-37,2],[-13,-14],[0,-8],[0,-1],[-1,-16],[48,-121],[2,-7],[0,-18],[-13,-13],[-25,-9],[-3,-1],[-27,-9],[-31,1],[-4,0],[-5,1],[-84,25],[-36,17],[-6,3],[-4,5],[-10,13],[-12,16],[1,13],[0,21],[0,2],[4,4],[21,23],[1,0],[9,0],[46,23],[28,23],[18,20],[42,45],[10,11],[9,23],[1,1],[0,1],[0,3],[-1,40],[0,14],[-5,12],[-7,18],[-22,54],[-87,132],[-37,57],[-9,-9],[-4,-5],[-13,-13],[-12,0],[-5,1],[-19,1],[-8,8],[-3,3],[-4,4],[1,22],[1,23],[0,1],[0,2],[14,54],[0,1],[10,26],[10,27],[1,24],[0,15],[-8,12],[-16,0],[-6,1],[-51,-73],[-17,-14],[-14,-11],[-3,-2],[-7,0],[-15,3],[-14,2],[-15,11],[-21,30],[0,10],[0,12],[-1,18],[2,6],[18,50],[20,39],[0,2],[22,129],[0,3],[7,98],[6,89],[0,6],[3,80],[0,11],[-16,155],[-10,17],[-6,9],[-4,7],[-3,1],[-17,4],[-1,0],[-12,-9],[-10,-8],[-12,-23],[-8,-16],[-33,-88],[-4,-17],[-7,-29],[-13,-28],[0,-1],[-3,-6],[-3,-3],[-23,-31],[-3,-4],[-28,-24],[-139,-69],[-28,2],[-14,7],[-11,14],[-2,2],[-5,7],[-14,29],[-13,16],[-11,14],[-11,8],[-1,0],[-4,0],[-20,1],[-2,-2],[-70,-67],[-25,-16],[-14,-7],[-5,-2],[-3,-1],[-6,1],[-15,3],[-6,1],[-14,15],[-2,4],[-26,76],[-29,59],[-46,67],[-12,8],[-10,0],[-8,0],[-22,-6],[-12,-3],[-14,-7],[-17,-9],[-25,3],[-6,1],[-11,1],[-12,13],[-5,6],[-4,4],[-2,6],[-14,28],[-1,2],[-1,6],[-10,64],[-1,6],[0,8],[5,60],[32,146],[5,5],[16,15],[1,1],[18,0],[61,0],[30,9],[51,16],[27,9],[19,21],[6,6],[3,4],[0,25],[-1,11],[0,11],[-24,22],[-11,1],[-138,6],[-3,1],[-34,6],[-14,3],[-30,16],[-140,78],[-27,16],[-32,37],[-4,9],[-3,8],[-4,12],[0,25],[0,3],[1,1],[9,25],[2,2],[20,22],[4,3],[33,20],[10,7],[4,3],[30,31],[7,7],[35,52],[20,50],[1,6],[8,49],[7,37],[7,121],[3,44],[2,36],[0,2],[0,1],[-2,8],[-18,22],[-12,8],[-16,2],[-14,3],[-33,12],[-45,24],[-46,45],[-4,4],[-10,7],[-11,9],[-23,18],[-1,0],[-31,4],[-11,2],[-19,-17],[0,-25],[0,-87],[-8,-35],[-4,-6],[-33,-41],[-4,-5],[-7,-5],[-10,-7],[-17,-12],[-46,2],[-27,9],[-23,14],[-22,13],[-26,16],[-6,7],[-42,50],[-11,14],[-7,14],[-10,19],[-32,41],[-34,1],[-35,-20],[-52,-30],[-58,-22],[-6,0],[-44,-1],[-5,0],[-9,4],[-14,15],[-1,0],[-8,33],[0,4],[1,25],[1,14],[1,4],[9,31],[0,49],[1,29],[0,44],[-20,51],[-17,23],[-30,23],[-117,41],[-9,0],[-49,-1],[-3,0],[-15,-6],[-5,-5],[-33,-33],[-7,-7],[-4,-9],[-18,-33],[-29,-31],[-15,-6],[-6,-2],[-13,-5],[-6,1],[-17,0],[-25,1],[-27,9],[-33,23],[-15,19],[1,6],[1,44],[17,56],[14,43],[17,57],[1,50],[-5,16],[-41,123],[-1,3],[-9,12],[-2,3],[-12,15],[-24,15],[-13,2],[-25,3],[-7,1],[-16,-10],[-2,-3],[-36,-39],[-3,-3],[-5,-12],[-2,-3],[-6,-13],[-7,-39],[-5,-74],[-1,-9],[-23,-34],[-11,-1],[-16,-2],[-24,13],[-35,17],[-10,6],[-6,0],[-25,1],[-8,0],[-28,-5],[-10,-9],[-8,-6],[-7,-6],[-1,-11],[-2,-13],[-1,-19],[6,-10],[17,-23],[6,-7],[24,-26],[8,-8],[3,-5],[4,-7],[10,-18],[8,-29],[-4,-36],[-19,-24],[-8,-10],[-11,-14],[-46,-32],[-15,-10],[-26,-19],[-13,1],[-29,1],[-19,1],[-75,12],[-4,1],[-93,33],[-6,2],[11,22],[22,48],[3,32],[0,5],[2,13],[-6,13],[-17,39],[-10,25],[-13,29],[-8,33],[1,6],[6,96],[3,45],[2,32],[-5,7],[-10,15],[-5,7],[-31,-2],[-12,-15],[-29,-36],[-31,-37],[-10,-12],[-17,-8],[-4,-2],[-13,-7],[-15,0],[-8,-1],[-11,-1],[-21,9],[-11,14],[-22,29],[-62,82],[-4,5],[-54,34],[-14,5],[-13,4],[-45,2],[-95,-10],[-18,-7],[-16,-6],[-8,1],[-35,4],[-9,1],[-17,26],[2,28],[2,27],[2,45],[15,86],[8,12],[12,19],[19,39],[20,21],[2,3],[4,1],[43,22],[22,24],[6,12],[3,7],[7,16],[16,55],[-8,61]],[[17998,13670],[20,-73],[7,-119],[-16,-43],[-16,-45],[-33,-63],[-12,-22],[-34,-39],[-56,-34],[-123,-94],[-32,-35],[-16,-39],[-16,-60],[-2,-66],[0,-2],[12,-47],[17,-40],[11,-17],[1,-2],[15,-25],[28,-37],[23,-29],[5,-7],[74,-121],[18,-29],[11,-47],[-1,-57],[-10,-43],[-16,-32],[-22,-24],[-9,-4],[-6,0],[-195,2],[-20,-5],[-17,-4],[-22,-14],[-13,-15],[-18,-20],[-10,-28],[-1,-65],[6,-22],[5,-11],[15,-32],[33,-41],[42,-22],[49,-5],[28,2],[27,8],[39,8],[32,18],[32,21],[17,16],[19,18],[30,35],[26,34],[28,40],[33,45],[20,34],[18,33],[22,39],[22,33],[14,23],[15,20],[30,18],[41,7],[50,-2],[36,-13],[32,-23],[23,-25],[10,-52],[3,-42],[-9,-59],[-16,-62],[-17,-44],[-23,-36],[-30,-50],[-16,-23],[-30,-28],[-59,-3],[-41,8],[-36,2],[-25,4],[-25,-4],[-39,-11],[-39,-13],[-27,-7],[-29,-2],[-23,-12],[-18,-20],[-17,-36],[4,-3],[8,-33],[2,-61],[14,-51],[14,-40],[6,-21],[39,-48],[39,-37],[96,-64],[48,-51],[56,-91],[20,-37],[21,-54],[2,-43],[61,-153],[26,-44],[89,-115],[37,-22],[28,-12],[65,-28],[53,-12],[66,-7],[54,-3],[31,-2],[38,-3],[61,-6],[24,-11],[34,-9],[42,-20],[46,-22],[40,-25],[39,-25],[33,-42],[7,-30],[9,-47],[-8,-45],[-21,-38],[-18,-23],[-21,-22],[-21,-10],[-53,-16],[-378,-7],[-41,-14],[-35,-32],[-34,-42],[-13,-28],[-6,-14],[0,-10],[-2,-55],[12,-29],[-3,-70],[-3,-84],[-7,-46],[-15,-18],[-26,-31],[-12,-7],[-14,-15],[-27,-31],[-19,-49],[-3,-25],[-8,-65],[-2,-76],[-1,-53],[14,-83],[17,-47],[18,-22],[24,-19],[33,-11],[28,-1],[31,8],[30,8],[74,34],[3,1],[50,13],[20,5],[152,0],[76,-17],[94,-49],[36,-24],[55,-37],[62,-41],[29,-40],[18,-43],[0,-2],[11,-56],[3,-11],[-2,-81],[0,-13],[0,-3],[-17,-64],[-29,-53],[-16,-19],[-8,-9],[-21,-15],[-17,-13],[-76,-30],[-22,-3],[-85,-15],[-2,0],[-129,0],[-5,2],[-34,10],[-55,2],[-31,-7],[-34,-20],[-31,-35],[-25,-39],[-10,-25],[-5,-36],[-5,-32],[-2,-74],[0,-5],[8,-39],[42,-73],[68,-85],[42,-33],[60,-34],[34,-43],[19,-23],[38,-73],[12,-36],[-2,-101],[0,-7],[-11,-54],[-10,-46],[-45,-146],[-40,-61],[-36,-55],[-46,-52],[-38,-28],[-24,-11],[-22,-9],[-55,-10],[-76,3],[-22,8],[-29,11],[-48,34],[-11,14],[-33,41],[-22,39],[-17,30],[-11,35],[-12,34],[-11,54],[-23,58],[-30,33],[-6,6],[-14,16],[-7,4],[-14,8],[-37,1],[-12,0],[-15,-7],[-28,-31],[-97,-127],[-32,-53],[-28,-107],[-5,-17],[-1,-37],[0,-38],[5,-44],[7,-17],[19,-49],[6,-14],[22,-28],[31,-40],[18,-23],[105,-71],[126,-76],[43,-21],[51,-24],[29,-23],[51,-62],[34,-95],[17,-65],[8,-54],[0,-1],[-1,-23],[-4,-72],[-3,-8],[-16,-31],[-9,-18],[-47,-53],[-77,-48],[-49,-20],[-28,-4],[-97,-14],[-49,-13],[-59,-41],[-49,-52],[-26,-54],[-19,-71],[-1,-169],[-1,-46],[36,-69],[211,43],[59,42],[121,85],[125,47],[31,-41],[-11,-38],[-101,-88],[-17,-15],[-19,-21],[-116,-61],[-128,-55],[-58,-25],[-31,-13],[-6,-4],[-30,-17],[-274,-162],[-44,-51],[-37,-42],[-24,2],[-22,-10],[-31,-42],[-1,-47],[11,-32],[9,-26],[80,-213],[18,-48],[18,-33],[47,-55],[33,-22],[72,-67],[50,-52],[54,-62],[38,-48],[18,-33],[-1,-43],[-64,-149],[-28,-31],[-71,-46],[-30,-20],[-79,-1],[-31,12],[-30,15],[-27,22],[-38,48],[-43,123],[-2,58],[-39,91],[-5,10],[-17,22],[-48,27],[-58,1],[-34,-9],[-24,-10],[-31,-39],[-17,-50],[-2,-12],[-8,-45],[-6,-147],[33,-159],[3,-13],[27,-19],[37,-26],[119,-6],[82,37],[168,-21],[113,-116],[9,-90],[-13,-29],[-33,-77],[-44,-29],[-23,-12],[-36,-21],[-21,0],[-37,35],[-165,113],[-52,73],[-84,87],[-20,21],[-12,4],[-33,10],[-76,25],[-102,16],[-83,-36],[-60,-112],[-7,-32],[-16,-74],[11,-151],[22,-86],[9,-33],[7,-32],[19,-95],[-1,-41],[0,-43],[-40,-42],[-89,14],[-32,32],[-83,83],[-37,138],[17,73],[9,38],[2,9],[-9,109],[-10,41],[-13,52],[-13,27],[-28,55],[-65,49],[-77,7],[-72,-24],[-44,-23],[-60,-32],[-115,-61],[-93,-53],[-19,-17],[-18,-7],[-16,-10],[-40,-49],[-38,-57],[-7,-18],[-3,-6],[-3,-8],[-3,-17],[2,-76],[41,-76],[29,-39],[54,-71],[14,-44],[3,-18],[-3,-74],[-2,-62],[-2,-39],[-19,-57],[-28,-32],[-16,-7],[-45,2],[-36,19],[-33,44],[-23,32],[-24,55],[-26,69],[-41,76],[-26,58],[-80,99],[-3,3],[-51,46],[-15,7],[-24,8],[-45,1],[-49,-20],[-44,-31],[-34,-39],[-19,-46],[-5,-24],[-35,-147],[-25,-133],[-5,-28],[-8,-68],[-17,-132],[-1,-47],[-1,-32],[8,-101],[10,-31],[1,-5],[19,-101],[8,-61],[-3,-22],[-10,-56],[-4,-22],[-23,-104],[1,-111],[-19,-43],[-4,-9],[-56,-92],[-23,-104],[-1,-13],[0,-7],[1,-4],[20,-59],[5,-14],[3,-8],[6,-18],[24,-44],[53,-66],[12,-12],[122,-121],[111,-93],[35,-44],[1,-2],[10,-41],[36,-44],[56,-67],[33,-39],[39,-30],[29,-37],[61,-181],[8,-54],[1,-111],[-11,-58],[-10,-50],[-5,-53],[-13,-122],[-2,-71],[0,-8],[19,-119],[29,-62],[33,-40],[24,-15],[85,1],[150,-58],[71,-33],[6,-3],[13,-16],[54,-52],[21,-26],[2,-14],[-1,-88],[-1,-55],[-4,-24],[-12,-32]],[[16348,436],[-194,1],[-12,0],[-999,2],[-44,0],[-489,-1],[-2330,-4],[-53,0],[-22,0],[-1,0],[-44,-1],[-165,0],[-434,-1],[0,1024],[0,1533],[0,4183],[0,470],[-3,2315],[-1,963],[-1,871],[0,80],[0,264],[-1,925],[-1,275],[-1,1153],[-1,1155],[-1,38]],[[68106,15943],[-29,-56],[-2,-52],[-1,-14],[-3,-88],[17,-87],[38,-110],[39,-99],[47,-114],[15,-35],[35,-80],[37,-66],[133,-124],[68,-111],[185,-172],[138,-103],[45,-34],[154,-161],[9,-31],[21,-90],[11,-48],[2,-5],[8,-23],[5,-13],[1,-21],[-2,-16],[-4,-24],[-1,-11],[-3,-18],[-26,-32],[-70,-80],[-20,-22],[-104,-115],[-2,-1],[-29,-31],[-1,-1],[-22,-37],[-52,-102],[-10,-18],[-15,-29],[-33,-67],[-44,-96],[-8,-34],[-6,-21],[-30,-96],[-1,-2],[-20,-33],[-30,-40],[-4,-5],[-55,-43],[-27,-18],[-51,-36],[-78,-42],[-69,-11],[-3,-4],[-5,-4],[-136,-131],[-36,-40],[-13,-82],[4,-37],[4,-39],[-18,-214],[-17,-30],[-22,-30],[-12,-31],[-3,-8],[3,-27],[78,-47],[258,-80],[124,-30],[92,-5],[69,11],[81,25],[123,48],[85,34],[56,22],[50,27],[34,18],[58,38],[39,29],[28,30],[56,104],[3,6],[54,92],[7,7],[25,23],[16,31],[-23,57],[-13,48],[-1,52],[0,43],[-97,397],[-27,242],[6,134],[37,109],[64,184],[24,14],[31,18],[72,8],[213,-159],[103,-92],[141,-124],[37,-34],[66,-47],[94,-85],[21,-19],[71,-93],[18,-24],[24,-77],[61,-154],[11,-26],[32,-42],[55,-71],[11,-26],[8,-26],[13,-105],[-8,-197],[-11,-31],[-58,-106],[-20,-47],[-76,-106],[-58,-80],[-41,-120],[-27,-60],[-134,-86],[-127,18],[-160,-59],[-212,-99],[-221,-133],[-53,-14],[-124,63],[-12,6],[-40,0],[-74,-33],[-112,-7],[-101,3],[-37,-26],[-108,-174],[-40,-139],[23,-123],[67,-91],[128,-106],[50,-54],[10,-10],[17,-20],[46,-56],[39,-31],[35,-21],[6,-3],[52,-37],[5,-3],[132,-105],[69,-40],[138,-58],[230,-21],[131,-8],[74,6],[94,31],[9,3],[8,3],[43,28],[51,34],[64,32],[95,48],[2,2],[24,17],[82,44],[57,31],[54,51],[21,20],[62,59],[161,212],[77,129],[20,33],[55,92],[68,264],[-10,212],[-42,164],[25,164],[58,171],[13,36],[-14,17],[1,7],[14,26],[72,109],[16,24],[87,67],[29,19],[31,11],[63,51],[131,-12],[32,-9],[32,-9],[9,-4],[4,-2],[37,-15],[50,-39],[50,-65],[2,-2],[35,-46],[22,-52],[5,-25],[-4,-309],[-9,-190],[0,-1],[0,-2],[-26,-99],[-20,-56],[-40,-73],[-20,-32],[-59,-96],[-130,-175],[-70,-126],[-8,-27],[-137,-130],[-169,-159],[-26,-27],[-56,-59],[-93,-115],[-73,-105],[-19,-27],[-50,-105],[-36,-73],[-44,-69],[-72,-119],[-25,-31],[-23,-41],[-61,-65],[-65,-93],[-23,-42],[-32,-34],[-35,-23],[-87,-93],[-127,-134],[-8,-50],[-21,-56],[-26,-28],[6,-75],[2,-80],[6,-154],[-21,-81],[-26,-77],[-4,-74],[22,-192],[21,-184],[-2,-341],[0,-17],[8,-97],[62,-115],[81,-119],[58,-132],[70,-100],[45,-77],[-4,-137],[-6,-19],[-42,-136],[59,-77],[53,-46],[45,-38],[65,-104],[65,-235],[64,-167],[89,-118],[3,-3],[119,-102],[15,12],[19,15],[48,155],[23,161],[8,16],[41,84],[45,128],[14,75],[58,317],[30,114],[11,42],[95,147],[146,100],[128,37],[150,-8],[128,-42],[85,-75],[61,-108],[26,-98],[-3,-165],[-51,-215],[-43,-153],[-35,-165],[-65,-127],[-111,-154],[-100,-130],[-1,-2],[-29,-108],[-62,-2],[-48,-81],[0,-84],[-116,8],[-43,-29],[-16,-94],[-62,-43],[-84,-4],[-44,-9],[-40,-8],[4,-94],[2,-37],[20,-175],[60,-335],[7,-75],[12,-25],[61,-216],[17,-170],[7,-105],[-11,-193],[-22,-142],[-19,-96],[10,-173],[5,-26],[-3,-89],[-38,-242],[-36,-113],[-137,-116],[-174,-114],[-84,-30],[-55,-21],[-145,-21],[-235,-19],[-270,19],[-20,1],[-145,26],[-30,32],[-3,16],[-9,55],[-80,98],[-85,104],[-63,24],[-113,13],[-212,-18],[-137,-39],[-91,-65],[-81,-104],[-130,-275],[3,-306],[10,-179],[47,-64],[106,-67],[215,-121],[40,-29],[139,-230],[5,-8],[39,-58],[34,-15],[50,-21],[18,-8],[121,-25],[198,-100],[136,-134],[120,-118],[86,-64],[107,-130],[68,-62],[78,-148],[18,-110],[-44,-99],[-20,-68],[-4,-111],[-50,-126],[17,-57],[-31,-84],[-44,-78],[-111,-93],[-122,-76],[-50,-11],[-58,-13],[-77,-30],[-51,-21],[-186,-141],[-14,-11],[-56,-162],[-23,-77],[-11,-125],[15,-82],[-52,1],[-118,1],[-961,14],[-55,1],[-778,11],[-26,0],[-553,6],[-396,4],[-1244,13],[-1240,6],[-11,0],[-484,-5]],[[63492,52],[0,79],[0,227],[1,191],[-2,119],[3,278],[1,133],[-1,332],[0,4],[3,193],[4,217],[-1,128],[0,40],[-8,47],[0,113],[4,116],[-2,201],[0,182],[-1,163],[0,82],[0,1],[3,148],[-3,40],[-1,175],[-2,201],[-1,453],[1,186],[1,273],[0,12],[0,174],[0,1],[0,190],[0,223],[0,9],[2,598],[1,266],[0,143],[0,9],[-1,200],[3,392],[-1,52],[-2,40],[1,39],[1,58],[0,258],[0,134],[1,74],[0,57],[1,152],[1,118],[0,89],[0,46],[0,35],[3,139],[0,34],[2,78],[1,64],[4,253],[3,148],[1,44],[0,40],[6,372],[4,150],[7,267],[1,68],[3,248],[2,114],[4,196],[1,86],[3,127],[4,227],[0,118],[-1,98],[0,38],[1,50],[0,39],[1,44],[4,225]],[[25182,12598],[-2,-13],[-3,-6],[-14,-32],[-32,-72],[-2,-6],[-24,-28],[-20,-19],[-7,-38],[-14,-22],[-16,-24],[-10,-11],[-5,-1],[-35,-18],[-5,-2],[-33,-34],[-1,-1],[-2,-55],[-7,-52],[-1,-8],[-1,0],[-8,-6],[-7,-8],[-24,-56],[0,-10],[1,-1],[3,-8],[-15,-33],[-31,-71],[-7,-15],[0,-2],[-2,-3],[-59,-126],[-9,-19],[-28,-59],[-1,-5],[-1,-3],[-5,-15],[-2,-17],[-8,-69],[-4,-34],[1,-4],[1,-51],[-21,-70],[-12,-34],[-1,0],[-56,-77],[-1,0],[-1,-1],[-9,-8],[-49,-16],[-21,-17],[-16,-34],[4,-92],[12,-39],[-1,-31],[-5,-27],[-13,-14],[-17,-18],[-13,-49],[-1,-3],[0,-1],[-4,-82],[-61,-135],[-2,-7],[2,-69],[0,-4],[-1,-7],[-5,-6],[-7,-13],[-21,-37],[-3,-9],[3,-18],[11,-19],[7,-7],[4,-3],[3,-3],[3,-5],[0,-10],[-5,-12],[-1,-1],[-23,-23],[-3,-3],[-22,-19],[-7,-6],[0,-21],[0,-47],[-20,-40],[-18,-28],[-48,-67],[-11,-5],[-14,11],[-1,1],[-8,0],[-7,-4],[-5,-9],[-8,-16],[-16,-29],[-1,-3],[-4,-12],[-2,-76],[0,-4],[0,-1],[1,-9],[0,-2],[3,-14],[10,-19],[26,-46],[0,-36],[-2,-18],[-4,-27],[-6,-57],[-20,-19],[-1,-2],[-5,-23],[-13,-61],[1,-5],[5,-15],[3,-10],[-25,-19],[-36,-89],[-19,-47],[-1,-20],[-7,-103],[0,-11],[0,-1],[10,-15],[-30,-80],[-31,-19],[-2,-31],[-39,-176],[0,-1],[-19,-11],[-22,-37],[-2,-2],[15,-65],[-19,-97],[-13,-51],[-14,-51],[5,-72],[-7,-45],[0,-17],[1,-25],[9,-84],[27,-50],[8,-6],[11,-5],[-19,-77],[3,-25],[2,-14],[-2,-7],[-23,-43],[-31,-50],[-28,-18],[-15,-2],[-59,-73],[-23,-28],[-1,-2],[-39,-28],[-2,-3],[-13,-16],[-12,-19],[0,-9],[6,-46],[5,-41],[1,-8],[9,-39],[11,-48],[9,-41],[3,-11],[12,-63],[0,-1],[8,-85],[0,-5],[9,-14],[37,-56],[-10,-33],[-30,-2],[-14,-28],[-21,-43],[-27,-26],[-21,-42],[-35,-68],[-18,-35],[-14,-27],[0,-2],[-1,0],[-3,-36],[-10,-43],[-2,-6],[-23,-35],[-337,18],[-121,8],[-54,4],[-124,7],[-76,7],[-86,5],[-10,-282],[-1,-115],[-7,-302],[-3,-116],[-2,-99],[-6,-220],[-3,-113],[-2,-79],[-7,-345],[0,-2],[-2,-84],[-2,-58],[0,-19],[0,-33],[-5,-205],[-11,-546],[-7,-182],[-5,-246],[-2,-66],[-5,-198],[-6,-275],[-7,-273],[-9,-296],[0,-9],[-22,-822],[-23,-835],[-19,-711],[-3,-109],[-6,-221],[-1,-49]],[[22670,410],[-11,0],[-347,3],[-255,2],[-60,0],[-1054,7],[-1108,7],[-144,0],[-711,5],[-46,0],[-417,3],[-1305,-1],[-835,0],[-20,0],[-9,0]],[[32966,10676],[-4,-62],[1,-68],[-1,-4],[-10,-516],[-4,-71],[-4,-127],[-3,-34],[3,-140],[-8,-416],[-1,-41],[-2,-136],[0,-1],[-10,-475],[-1,-43],[-2,-101],[-3,-146],[9,-100],[-7,-248],[-4,-148],[-8,-295],[-13,-466],[-9,-44],[-2,-30],[-2,-30],[0,-1],[-6,-200],[-1,-184],[3,-327],[-2,-45],[-9,-191],[7,-279],[-6,-188],[-6,-78],[-1,-80],[1,-59],[-1,-34],[-1,-51],[-7,-470],[-1,-61],[-2,-90],[-2,-87],[-1,-67],[-4,-196],[-3,-82],[-1,-42],[-5,-141],[-2,-78],[-6,-336],[-1,-41],[-2,-64],[-7,-250],[-5,-292],[-1,-109],[-2,-134],[-2,-173],[-1,-84],[-5,-156],[-1,-41],[-2,-63],[-7,-368],[-3,-175],[-4,-256],[-2,-74],[-4,-177],[-3,-107],[-8,-353],[-4,-119],[-1,-50],[1,-49],[0,-18],[-1,-33]],[[32760,381],[-45,1],[-2746,9],[-535,2],[-71,0],[-674,2],[-954,1],[-29,0],[-1432,4],[-146,1],[-1489,4],[-603,1],[-898,3],[-448,1],[-20,0]],[[63492,52],[-1501,15],[-462,5],[-355,3],[-111,1],[-781,3],[-86,1],[-66,0],[-177,1],[-24,0],[-1079,5],[-2192,10],[-757,3],[-358,2],[-299,1],[-603,2],[-640,2],[-1001,4],[-1748,6]],[[51252,116],[-7,58],[-3,4],[-11,14],[-6,8],[-39,24],[-5,0],[-4,0],[-13,10],[-14,10],[-5,3],[-5,7],[-36,49],[-29,47],[-5,9],[-14,40],[1,12],[4,56],[1,14],[-5,33],[-9,15],[-38,45],[-8,18],[-7,65],[1,27],[2,52],[-5,15],[-3,8],[0,2],[-3,3],[-14,16],[-7,8],[-60,24],[-35,2],[-19,1],[-11,3],[-64,22],[-57,8],[-5,1],[-11,2],[-15,-3],[-1,-1],[-37,-21],[-2,-1],[-1,-2],[-46,-50],[-12,-10],[-23,-19],[-6,-5],[-14,2],[-21,3],[-7,1],[-3,2],[-45,40],[-14,18],[-14,33],[-2,8],[-3,18],[-5,25],[1,32],[9,14],[2,39],[1,51],[-15,76],[-17,37],[-35,45],[-36,23],[-20,29],[1,21],[14,28],[65,29],[36,23],[11,37],[-25,81],[-48,77],[-16,41],[-12,61],[-6,28],[-14,69],[2,51],[17,70],[-7,39],[-26,24],[-39,21],[-59,13],[-92,-11],[-24,-14],[-32,-35],[-29,4],[-6,31],[5,66],[-6,84],[-17,57],[-10,49],[-7,77],[-29,66],[-30,55],[-17,56],[-1,46],[12,42],[21,50],[18,36],[2,40],[-27,30],[-11,-2],[-13,16],[-49,3],[-21,28],[0,9],[7,12],[20,37],[13,28],[2,57],[51,148],[66,73],[11,20],[1,2],[18,34],[0,10],[5,56],[0,12],[0,39],[-1,19],[3,6],[1,1],[6,14],[11,11],[7,8],[1,2],[18,-1],[6,-1],[30,-33],[20,-16],[12,-1],[21,-3],[4,-1],[22,9],[2,1],[7,3],[18,21],[12,24],[4,10],[14,29],[4,33],[5,49],[20,60],[3,6],[40,85],[16,36],[10,20],[1,11],[0,2],[5,77],[-5,22],[-16,35],[-17,37],[-1,1],[-73,107],[-11,16],[-1,6],[-7,26],[0,2],[0,7],[1,13],[3,11],[1,0],[15,17],[3,3],[3,0],[28,-1],[20,-6],[10,-3],[1,-1],[5,-6],[56,-25],[34,-1],[24,9],[23,28],[2,75],[-8,98],[-7,30],[-33,144],[-35,51],[-18,9],[-32,11],[-92,32],[-44,15],[-48,3],[-6,-1],[-108,-19],[-17,-4],[-48,-10],[-19,-4],[-14,-2],[-13,1],[-6,1],[-20,3],[-10,3],[-7,23],[-2,12],[-5,36]],[[51252,116],[-2122,23],[-544,8],[-414,6],[-1687,25],[-319,5],[-16,0],[-111,2],[-342,5],[-1634,23],[-1874,27],[-247,4],[-15,0],[-1073,15],[-525,8],[-1590,18],[-531,6],[-144,2],[-1,0],[-2386,39],[-1004,17],[-63,1],[-1498,25],[-303,5],[-49,1]]],"transform":{"scale":[0.00004973129330293319,0.00003495539420394158],"translate":[-94.61791188699993,33.004099985000096]}} diff --git a/src/js/config/mapconfig/mapfiles/county/az-counties.json b/src/js/config/mapconfig/mapfiles/county/az-counties.json new file mode 100644 index 00000000..f9308c51 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/az-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-114.81629947499994,31.332081677000076,-109.04521236999983,37.00425429000012],"geometries":[{"type":"Polygon","properties":{"name":"AZ"},"id":"04017","arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04005","arcs":[[-4,5,6,7,8]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04001","arcs":[[9,10,-1,11]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04025","arcs":[[12,13,14,15,-7]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04007","arcs":[[-3,16,17,18,-13,-6]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04012","arcs":[[-15,19,20,21,22]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04013","arcs":[[-19,23,24,25,-20,-14]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04011","arcs":[[26,27,28,-10]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04009","arcs":[[-29,29,30,31,-17,-2,-11]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04027","arcs":[[-26,32,33,-21]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04021","arcs":[[-18,-32,34,-24]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04019","arcs":[[-31,35,36,37,-33,-25,-35]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04003","arcs":[[-28,38,39,-36,-30]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04023","arcs":[[-40,40,-37]]},{"type":"Polygon","properties":{"name":"AZ"},"id":"04015","arcs":[[-8,-16,-23,41]]}]},"states":{"type":"GeometryCollection","bbox":[-114.81629947499994,31.332081677000076,-109.04521236999989,37.00425429000012],"geometries":[{"type":"Polygon","properties":{"name":"Arizona"},"id":"04","arcs":[[11,26,38,40,37,33,21,41,8,4]]}]}},"arcs":[[[83443,99888],[0,-257],[0,-229],[0,-183],[0,-250],[0,-267],[0,-245],[0,-254],[0,-211],[0,-84],[0,-72],[0,-27],[0,-34],[0,-55],[0,-384],[0,-153],[0,-619],[0,-38],[0,-92],[0,-128],[0,-88],[0,-57],[0,-2],[0,-118],[0,-24],[0,-3],[0,-185],[0,-111],[0,-118],[0,-76],[0,-176],[0,-134],[0,-37],[0,-351],[0,-200],[0,-65],[0,-426],[0,-80],[0,-134],[0,-54],[0,-20],[0,-174],[0,-201],[0,-46],[0,-67],[0,-46],[0,-102],[0,-24],[0,-242],[0,-115],[0,-191],[0,-560],[0,-554],[0,-78],[0,-103],[0,-98],[0,-24],[0,-1],[0,-101],[0,-23],[0,-143],[0,-150],[0,-178],[0,-114],[0,-120],[0,-68],[0,-63],[0,-117],[0,-1069],[0,-170],[0,-159],[0,-39],[0,-40],[0,-1],[0,-970],[0,-27],[0,-43],[0,-70],[0,-146],[0,-9],[0,-198],[0,-128],[0,-33],[0,-40],[0,-16],[0,-69],[0,-54],[0,-41],[0,-71],[0,-49],[0,-43],[0,-174],[0,-75],[0,-165],[0,-97],[0,-463],[0,-29],[0,-70],[0,-241],[0,-341],[0,-465],[0,-41],[0,-138],[0,-52],[0,-140],[0,-201],[0,-369],[0,-108],[0,-33],[0,-38],[0,-35],[0,-285],[0,-52],[0,-91],[0,-120],[0,-65],[0,-75],[0,-37],[0,-56],[0,-165],[0,-144],[0,-61],[0,-42],[0,-39],[0,-4],[0,-3],[0,-47],[0,-48],[0,-30],[0,-271],[0,-23],[0,-51],[0,-89],[0,-27],[0,-70],[0,-132],[0,-37],[0,-29],[0,-62],[0,-19],[0,-48],[0,-120],[0,-272],[0,-133],[0,-295],[0,-4],[0,-19],[0,-24],[0,-5],[0,-35],[0,-13],[0,-21],[0,-34],[0,-99],[0,-44],[0,-324],[0,-141],[0,-30],[0,-69],[0,-63],[0,-75],[0,-142],[0,-19],[0,-97],[0,-32],[0,-48],[0,-29],[0,-71],[0,-24],[0,-196],[0,-116],[0,-43],[0,-83],[0,-183],[0,-77],[0,-26],[0,-45],[0,-5],[0,-17],[0,-25],[0,-7],[0,-86],[0,-84],[0,-87],[0,-489],[0,-83],[0,-22],[0,-4],[0,-19],[0,-24],[0,-47],[0,-22],[0,-81],[0,-72],[0,-107],[0,-66],[0,-19],[0,-99],[0,-114],[0,-42],[0,-143],[125,-1],[305,-1],[148,0],[358,-1],[27,0],[412,-2],[182,0],[203,-2],[34,0],[48,0],[1,0],[47,1],[109,2],[167,-1],[149,4],[85,1],[19,-2],[222,-4],[131,3],[135,0],[104,0],[-2,-114],[0,-18],[-1,-94],[0,-98],[0,-23],[-1,-189],[0,-43],[-1,-82],[5,-104],[0,-49],[0,-89],[3,-39],[1,-22],[0,-42],[-1,-289],[-1,-197],[0,-105],[-1,-96],[0,-68],[0,-76],[0,-60],[0,-16],[-1,-60],[0,-100],[0,-14],[0,-82],[0,-46],[-1,-22],[0,-80],[1,-152],[0,-44],[0,-41],[-32,0],[-102,2],[-158,2],[-1,-99],[-1,-105],[-1,-20],[11,-90],[-1,-162],[-2,-139],[-1,-146],[-1,-70],[-1,-47],[-1,-194],[-1,-104],[-1,-154],[0,-37],[-2,-188],[-1,-55],[0,-31],[-1,-110],[-1,-111],[-1,-115],[-2,-255],[-1,-142],[-1,-144],[11,-4],[0,-215],[0,-433],[0,-65],[0,-123],[0,-85],[0,-344],[0,-378],[0,-40],[0,-201],[0,-170],[0,-113],[0,-33],[1,-143],[0,-51],[0,-5],[0,-46],[0,-140],[0,-3],[0,-45],[0,-48],[0,-9],[0,-357],[0,-194],[0,-362],[14,0],[-3,-136],[-7,-335],[-7,-330],[-5,-362],[-3,-334],[-1,-57],[0,-30],[-2,-184],[0,-43],[-1,-19],[0,-48],[0,-34],[0,-15],[0,-4],[0,-6],[0,-42],[0,-6],[-2,-179],[-1,-124],[-1,-203],[0,-43],[0,-2],[-1,-45],[0,-8],[0,-39],[0,-16],[0,-31],[5,-329],[4,-185],[2,-115],[5,-150],[2,-46],[0,-2],[1,-44],[0,-4],[2,-44],[0,-5],[1,-43],[7,-188],[-7,-153],[0,-13],[-1,-14],[-1,-29],[-1,-19],[-1,-7],[0,-30],[-4,-128],[-7,-207],[-6,-170],[0,-222],[1,-386],[0,-105],[-2,-213],[0,-125],[2,-227],[0,-26],[1,-29],[0,-26],[0,-41],[1,-108],[0,-25],[-87,0],[-37,-1],[0,-39],[1,-11],[0,-36],[0,-23],[3,-232],[2,-128],[0,-45],[0,-28],[2,-135],[0,-6],[1,-43],[0,-2],[0,-48],[2,-151],[2,-149],[4,-201],[-2,-255],[1,-135],[0,-19],[1,-215],[0,-53],[0,-5],[1,-50],[0,-63],[1,-149],[1,-312],[0,-34],[0,-19],[1,-154],[0,-51],[0,-9],[0,-30],[0,-13],[1,-39],[0,-29],[1,-161],[0,-18],[-23,-142],[-13,-77],[-17,-101],[-12,-71],[-10,-59],[-33,-197],[-17,-102],[-38,-230],[-72,-434],[-6,-34],[-4,-20],[-6,-33],[-5,-25],[2,-26],[5,-19],[6,-31],[8,-52],[17,-81],[15,-73],[9,-45],[1,-3],[10,-47],[23,-115],[56,-272],[44,-214],[21,-92],[49,-222],[11,-47],[19,-87],[12,-54],[5,-23],[7,-35],[-25,-1],[0,-63],[0,-170],[-1,-103],[0,-178],[0,-146],[0,-115],[0,-290],[-1,-51],[0,-74],[0,-28],[0,-30],[0,-17],[-1,-19],[0,-29],[-4,-136],[2,-52],[3,-234],[-1,-776],[0,-110],[-1,-154],[-2,-256],[-1,-164],[0,-49],[-1,-1],[0,-33],[0,-14],[0,-3],[0,-45],[0,-3],[0,-44],[0,-4],[-2,-255],[-2,-292],[0,-91],[0,-18],[-1,-219],[0,-68],[0,-20],[1,-63],[0,-71],[-1,-25],[-1,-140],[0,-54],[-1,-77],[0,-94],[-1,-26],[-1,-46],[-1,-182],[-1,-211],[0,-66],[0,-62],[-1,-33],[0,-75],[0,-83],[0,-55],[0,-90],[-1,-97],[0,-84],[1,-44],[0,-94],[-20,0],[-154,1],[2,-137],[0,-58],[-1,-91],[1,-253],[0,-29],[0,-34],[0,-44],[1,-111],[0,-23],[0,-45],[0,-30],[1,-19],[0,-1],[0,-2],[0,-18],[0,-24],[0,-2],[0,-46],[0,-2],[0,-51],[0,-30],[0,-18],[0,-45],[1,-95],[0,-94],[0,-49],[1,-155],[0,-33],[0,-105],[0,-1],[0,-59],[0,-48],[1,-69],[0,-253],[-2,-147],[0,-38],[0,-109],[0,-22],[0,-36],[0,-34],[0,-64],[0,-21],[0,-23],[0,-123],[0,-214],[0,-22],[0,-119],[1,-35],[-1,-199],[0,-235],[0,-50],[-1,-49],[0,-45],[-2,-454],[-1,-311],[2,-41],[1,-97],[2,-93],[1,-120],[0,-101],[-2,-149],[0,-42],[2,-63],[-2,-97],[0,-29],[0,-15],[0,-3],[-1,-16],[0,-3],[0,-29],[0,-9],[-1,-37],[0,-17],[-1,-91],[2,-172],[0,-47],[0,-104],[-1,-202],[0,-130],[-44,-10],[-161,1],[-79,2],[-123,-1],[-122,0],[-35,0],[1,-168],[0,-134],[1,-187],[1,-267],[0,-302],[0,-108],[0,-191],[0,-27],[0,-106],[0,-49],[0,-8],[0,-41],[0,-23],[0,-189],[0,-55],[0,-41],[0,-43],[0,-26],[0,-89],[1,-375],[0,-66],[-1,-198],[0,-11],[-3,-179],[0,-10],[0,-76],[0,-26],[4,-184],[-2,-129],[-2,-187],[0,-164],[0,-42]],[[85330,39416],[-38,-11],[-22,4],[-20,9],[-14,13],[-11,32],[0,27],[3,8],[3,8],[-11,23],[-14,14],[-28,7],[-14,-1],[-22,-3],[-32,-2],[-54,3],[-97,14],[-29,-7],[-17,-12],[-38,-42],[-27,-30],[-17,-12],[-5,-4],[-11,-11],[-7,-8],[-12,-17],[-17,-5],[-2,0],[-18,8],[-26,0],[-9,0],[-21,0],[-25,19],[-19,7],[-39,4],[-34,8],[-9,1],[-20,3],[-27,2],[-37,-30],[-5,-4],[-8,-3],[-17,0],[-9,2],[-11,7],[-11,7],[-28,19],[-19,15],[-2,1],[-16,11],[-2,1],[-31,17],[-17,5],[-28,-2],[-28,-3],[-69,-16],[-18,1],[-19,5],[-10,5],[-5,3],[-3,5],[-6,13],[-1,10],[4,13],[9,21],[1,24],[-1,6],[-1,10],[-4,7],[-4,6],[-9,6],[-15,3],[-26,-1],[-6,-2],[-27,-11],[-1,-1],[-8,-9],[-4,-6],[-1,-11],[0,-21],[4,-19],[-3,-41],[-24,-3],[-13,18],[0,45],[-15,16],[-22,0],[-20,-12],[-13,0],[-21,-2],[-19,-1],[-6,0],[-22,-4],[-25,-1],[-21,0],[-38,0],[-5,2],[-9,7],[-6,17],[-4,8],[-8,9],[-9,6],[-71,33],[-27,9],[-86,21],[-7,0],[-10,0],[-10,-4],[-22,-14],[-15,-23],[-7,-19],[-2,-4],[-3,-4],[-31,-28],[-3,-3]],[[83444,39577],[0,46],[0,14],[0,6],[0,12],[0,35],[0,48],[0,13],[0,84],[0,239],[0,106],[0,14],[0,47],[0,2],[0,46],[0,10],[0,125],[0,36],[0,26],[0,371],[0,30],[0,48],[0,49],[0,16],[0,46],[0,338],[0,211],[0,43],[0,7],[0,44],[0,3],[0,48],[0,67],[0,64],[0,25],[0,9],[0,7],[0,310],[0,170],[0,182],[0,54],[0,604],[0,2],[0,1],[0,25],[0,22],[0,6],[0,2],[0,23],[0,16],[0,1],[0,25],[0,6],[0,16],[0,4],[0,61],[0,658],[0,36],[0,696],[0,80],[0,120],[0,366],[0,207],[0,75],[0,56],[0,120],[0,77],[0,133],[0,27],[0,395],[0,200],[0,216],[0,131],[-338,0],[-3,0],[-3,0],[-37,0],[-7,0],[-38,0],[-8,0],[-3,0],[-285,0],[-150,0],[-37,0],[-146,0],[-115,0],[-28,0],[-1,0],[-2,0],[-3,0],[-3,0],[-3,0],[-9,0],[-47,0],[-221,0],[-154,0],[-57,0],[-395,0],[-73,0],[-212,0],[-217,0],[-393,0],[-67,0],[-68,0],[-43,0],[-619,0],[-403,0],[-42,0],[-18,0],[-51,0],[-15,0],[-18,0],[-28,0],[-2,0],[-63,0],[-71,0],[-57,0],[-36,0],[-141,0],[-42,0],[-11,0],[-5,0],[-23,0],[-3,0],[-10,0],[-41,0],[-3,0],[-37,0],[-24,0],[-4,0],[-44,0],[-2,0],[-13,0],[-5,0],[-4,0],[-10,0],[-43,0],[-8,0],[-6,0],[-416,0],[-246,0],[-384,0],[-181,0],[-203,0],[-93,0],[-184,0],[-316,0],[-150,0],[-104,0],[-19,0],[-98,0],[-25,0],[-25,0],[-29,0],[-42,0],[-207,0],[-201,0],[-224,0],[-5,0],[-42,0],[-47,0],[-23,0],[-47,0],[-88,0],[-34,0],[-163,0],[-49,0],[-238,0],[-281,0],[-2,0],[-17,0],[-19,0],[-11,0],[-15,0],[-37,0],[-10,0],[-47,0],[-43,0],[-227,0],[-617,0],[-432,0],[-2,0],[-35,0],[-11,0],[-31,0],[-14,0],[-2,0],[-26,0],[-438,0],[-66,0],[-272,0],[-388,0],[-197,0],[-195,0],[-9,0],[-14,0],[-6,0],[-25,0],[-2,0],[-43,0],[-3,0],[-4,0],[-359,0],[-145,0],[0,348],[0,82],[0,193],[0,46],[0,287],[0,115],[0,61],[0,1],[0,61],[0,322],[0,238],[0,219],[0,231],[0,250],[0,188],[0,291],[0,174],[0,38],[0,39],[0,97],[0,19],[0,57],[0,53],[0,28],[0,41],[0,39],[0,17],[0,21],[0,6],[0,86],[0,11],[0,13],[0,204],[0,150],[0,39],[0,94],[0,184],[0,36],[0,29],[0,28],[0,206]],[[70448,51677],[0,24],[0,190],[0,115],[0,221],[0,173],[0,269],[0,49],[0,27],[0,127],[0,5],[0,43],[0,4],[0,45],[0,1],[0,79],[0,466],[0,63],[0,10],[0,58],[0,7],[0,456],[0,54],[0,20],[0,15],[0,24],[0,45],[0,11],[0,8],[0,17],[0,9],[0,43],[0,3],[0,26],[0,21],[0,42],[0,16],[0,53],[0,221],[0,51],[0,49],[0,61],[0,416],[0,157],[0,279],[0,49],[0,1],[0,10],[0,40],[0,22],[0,1],[0,17],[0,29],[0,73],[0,66],[-1,416],[0,522],[0,48],[0,101],[0,180],[0,221],[0,34],[0,305],[0,107],[0,17],[0,32],[0,49],[0,74],[0,95],[0,139],[0,43],[0,293],[0,137],[0,106],[0,113],[0,565],[0,21],[0,21],[0,44],[0,380],[0,136],[0,74],[0,369],[0,171],[0,200],[0,356],[0,264],[0,239],[0,4],[0,52],[0,54],[0,421],[0,66],[0,810],[0,52],[0,5],[0,49],[0,403],[0,14],[0,40],[0,7],[0,45],[0,2],[0,671],[0,25],[0,188],[0,21],[0,98],[0,57],[0,70],[0,45],[0,19],[0,43],[0,28],[0,103],[0,22],[0,24],[0,4],[0,27],[0,19],[0,3],[0,4],[0,35],[0,7],[0,137],[0,828],[0,199],[0,237],[0,43],[0,38],[0,443],[0,18],[0,67],[0,188],[0,89],[0,48],[0,48],[0,40],[0,48],[0,2],[0,25],[0,21],[0,306],[0,159],[0,27],[0,42],[0,5],[0,48],[0,14],[0,50],[0,167],[0,211],[0,57],[0,59],[0,75],[0,155],[0,61],[0,79],[0,23],[0,130],[0,161],[0,97],[0,54],[0,69],[0,48],[0,47],[0,22],[0,152],[0,94],[0,33],[0,96],[0,75],[0,219],[0,261],[0,194],[0,183],[0,34],[0,7],[0,45],[0,9],[0,53],[0,19],[0,307],[0,163],[0,93],[0,410],[0,95],[0,198],[0,446],[0,49],[0,19],[0,31],[0,9],[0,27],[0,6],[0,43],[0,3],[0,43],[0,2],[0,210],[0,49],[0,67],[0,162],[0,354],[0,20],[0,195],[0,736],[0,304],[0,84],[0,105],[0,87],[0,65],[0,6],[0,49],[0,36],[0,11],[0,11],[0,59],[0,80],[0,627],[0,102],[0,819],[0,43],[0,36],[0,25],[0,24],[0,19],[0,57],[0,201],[0,44],[0,143],[0,277],[0,315],[0,74],[0,64],[0,226],[0,734],[0,113],[0,31],[0,232],[0,24],[0,345],[0,54],[0,64],[0,288],[0,111],[0,49],[0,50],[0,62],[0,7],[0,45],[0,50],[0,108],[0,122],[0,4],[0,44],[0,2],[0,46],[0,150],[0,135],[0,68],[0,152],[0,72],[0,180],[0,80],[0,24],[0,139],[0,118],[0,22],[0,119],[0,134],[0,24],[0,142],[0,106],[0,211],[0,254],[0,427],[0,20],[0,241],[0,181],[0,278],[0,1],[0,783],[0,266],[0,433],[0,47],[0,90],[0,154],[0,123],[0,31],[0,218],[0,191],[0,27],[0,66],[0,320],[0,77],[0,61],[0,231],[0,401],[0,167],[0,336],[0,263],[0,180],[0,67],[0,97],[0,105],[0,30],[0,50],[0,19],[0,5],[0,40],[0,4],[0,240],[0,21],[0,63],[0,4],[0,138],[0,482],[0,34],[0,26],[0,156],[0,319],[0,90],[0,295],[0,1],[0,160],[0,47],[0,11],[0,59],[0,83],[0,83],[0,107],[0,176],[0,41],[0,36],[0,141],[0,50],[0,60],[0,212],[0,56],[0,21],[0,34],[0,176],[0,25],[0,532],[0,81],[0,24],[0,68],[0,43],[0,268],[0,302],[0,449],[0,201],[0,99],[0,97],[0,45],[0,303],[0,191],[0,153],[0,228],[0,404],[0,150],[0,30],[0,108],[0,194],[0,177],[0,27],[0,314],[0,244],[0,114],[0,121],[0,84],[0,114],[0,379],[0,64],[0,30],[0,97],[0,265],[0,376],[0,56]],[[70447,99980],[223,1],[124,1],[27,0],[172,1],[149,0],[148,1],[503,2],[357,2],[330,1],[135,-5],[31,0],[23,0],[43,1],[42,0],[69,0],[65,1],[62,0],[57,-1],[60,0],[35,0],[40,0],[80,0],[42,1],[40,1],[54,1],[41,-1],[42,1],[36,0],[44,0],[56,1],[28,1],[40,0],[46,0],[56,0],[55,0],[57,1],[59,0],[44,1],[67,0],[2,0],[235,1],[339,1],[30,0],[144,5],[94,-7],[25,-2],[51,-3],[58,-17],[158,-46],[20,0],[73,-21],[50,-14],[43,0],[2,0],[507,1],[32,0],[273,0],[297,1],[35,0],[315,0],[61,0],[72,0],[484,1],[25,0],[255,0],[10,0],[29,0],[317,1],[609,0],[68,1],[97,0],[273,0],[59,0],[306,0],[24,0],[160,1],[134,0],[200,0],[258,0],[152,1],[22,0],[66,0],[111,0],[110,0],[33,0],[28,0],[63,0],[73,0],[93,0],[51,1],[188,0],[34,0],[55,0],[189,0],[304,1],[71,0],[87,0],[152,0],[244,0],[72,0],[45,0],[366,1],[216,0],[365,-11]],[[70448,51677],[-124,-41],[-65,-23],[-29,-23],[-65,11],[8,47],[-14,99],[11,30],[75,70],[11,56],[49,50],[18,6],[-38,98],[-21,53],[-34,43],[-24,37],[-204,91],[-70,24],[-26,2],[-16,8],[0,18],[-3,19],[0,20],[18,18],[9,36],[3,33],[-19,-14],[-13,-13],[-15,-19],[-22,-23],[-11,-26],[-10,-57],[-19,-19],[-13,13],[-8,23],[4,26],[-18,13],[0,23],[18,12],[24,17],[-1,23],[-1,20],[-7,17],[-17,6],[-28,-4],[-8,-16],[-16,-15],[-25,-14],[-17,-19],[-28,36],[0,-18],[2,-27],[3,-19],[9,-20],[-27,-62],[-24,-6],[-34,-5],[-26,-4],[-26,1],[-8,16],[-13,42],[0,35],[-7,26],[-13,21],[20,11],[9,21],[-10,19],[-1,28],[-13,14],[-19,-16],[1,-18],[-31,-9],[-16,-12],[3,-23],[-3,-24],[-2,-23],[-8,-22],[-21,1],[-24,3],[24,-31],[-1,-30],[-7,-28],[-7,-48],[-23,6],[-18,21],[-29,24],[-24,5],[-19,24],[-18,1],[-24,-9],[-21,5],[-21,5],[-21,5],[0,3],[-6,37],[-28,-23],[-2,-2],[-21,11],[-17,7],[1,22],[-21,-6],[-6,-7],[-15,-15],[-22,8],[-20,23],[-17,-11],[-10,20],[-17,19],[-6,22],[-17,-11],[-5,19],[0,2],[-9,17],[-23,10],[-10,-17],[-18,-5],[-29,-7],[-19,0],[-20,6],[-13,-4],[-11,-4],[13,-16],[10,-18],[-4,-19],[22,2],[21,-4],[38,-8],[11,-19],[15,-7],[6,-3],[5,-2],[63,-19],[3,-17],[18,-4],[19,-5],[16,-19],[25,-12],[0,-4],[-2,-14],[19,-4],[13,6],[15,7],[19,-9],[24,-13],[9,-11],[44,-55],[-7,-19],[15,-13],[17,-21],[-11,-14],[-16,-10],[-24,-11],[-71,-12],[-28,-15],[-24,-9],[-18,-20],[-9,-26],[-35,-14],[-19,-4],[-19,-1],[-28,-14],[33,-5],[14,-16],[1,-26],[10,-18],[11,14],[10,22],[16,-8],[16,-19],[50,16],[36,-3],[8,-21],[-15,-21],[-18,-10],[-23,-8],[-39,-12],[-20,-17],[-15,-24],[-19,-19],[-25,-15],[-29,-2],[-44,-3],[-20,-4],[-23,-3],[-28,-5],[-24,17],[-15,9],[-5,3],[-28,15],[15,-42],[12,-27],[-8,-17],[-2,0],[-16,-1],[-7,24],[-24,15],[-40,15],[-12,18],[-3,-1],[-23,-9],[-30,21],[-18,-2],[-40,-10],[-19,-1],[-81,29],[-22,8],[-19,3],[-18,5],[-29,16],[-23,4],[-24,14],[-29,17],[-33,3],[-19,11],[-16,15],[-20,16],[-22,14],[-18,7],[-30,23],[-12,13],[-28,21],[-10,15],[-14,18],[-15,16],[-5,22],[17,13],[28,6],[4,20],[12,17],[14,13],[-19,21],[-17,19],[-20,11],[-28,10],[-22,11],[-19,1],[-37,12],[-30,15],[-4,32],[4,32],[-4,10],[-1,3],[-3,5],[-7,16],[-10,17],[-10,1],[-13,1],[-14,-5],[-19,-8],[-13,-7],[-41,-22],[-25,-3],[-22,4],[-4,0],[-25,9],[-16,14],[-35,28],[-39,13],[-9,23],[-21,-1],[-21,-7],[-26,0],[-34,21],[-15,8],[-15,9],[-17,2],[-41,12],[-19,17],[-17,18],[-13,15],[-26,7],[-25,-1],[-21,-1],[-26,4],[-21,4],[-20,-2],[-44,-5],[-23,-4],[-45,0],[-23,27],[-10,20],[-12,21],[-23,18],[-10,31],[-26,10],[-36,11],[-24,6],[-24,-3],[-5,-71],[-15,-12],[-33,-6],[-39,8],[-19,8],[-13,16],[-13,36],[-21,15],[-24,9],[-20,5],[-7,22],[-39,38],[-40,32],[-1,27],[-8,40],[-17,19],[-15,20],[-15,25],[-16,15],[-19,27],[-5,29],[-21,19],[-29,-1],[-24,0],[-22,16],[-21,7],[-39,26],[-30,-4],[-27,19],[-19,22],[-25,12],[-43,4],[-53,19],[-17,7],[-24,14],[19,38],[-8,25],[4,20],[-10,24],[-19,13],[-15,-26],[-22,2],[-17,8],[-16,17],[-23,-3],[-19,4],[-20,-2],[9,17],[11,19],[9,25],[7,21],[-6,18],[-15,24],[-6,17],[-12,25],[-19,8],[-12,13],[-19,-5],[1,-24],[-4,-25],[-26,-9],[-9,17],[-16,10],[-35,23],[-18,-2],[-33,-1],[-25,14],[-19,-1],[-19,-5],[9,20],[-13,19],[-7,21],[15,19],[9,15],[-9,16],[2,24],[5,23],[4,22],[-8,21],[-19,0],[-18,-11],[-22,-2],[1,-20],[-3,-25],[-5,-18],[-13,-14],[-19,-15],[10,-19],[-13,-13],[-9,-20],[-18,-15],[-25,-4],[-18,0],[-23,8],[-22,6],[-11,-18],[-8,-16],[27,-10],[14,-21],[24,-19],[15,-33],[-10,-15],[21,-16],[20,-14],[25,-18],[-19,-6],[-18,-3],[-15,-9],[-8,-23],[-14,-16],[-20,-16],[10,-20],[9,-18],[16,-9],[17,-16],[-3,-21],[-19,-13],[-14,-18],[17,-15],[-7,-17],[-25,2],[-21,-6],[-25,5],[-19,2],[-20,1],[-29,8],[-22,14],[-21,-1],[-19,7],[-22,-4],[-18,2],[-9,17],[-11,17],[-22,13],[-20,-1],[-5,22],[-24,-3],[-18,9],[-5,24],[-17,22],[-12,14],[-10,21],[-7,18],[-20,11],[-33,-2],[-22,3],[-5,21],[-4,19],[20,32],[-2,21],[-5,22],[19,1],[19,-8],[18,-9],[13,-15],[16,-20],[12,15],[7,17],[16,8],[16,16],[4,22],[7,22],[20,28],[20,-4],[17,13],[11,20],[17,5],[15,19],[7,18],[-1,18],[9,17],[20,12],[12,-15],[14,14],[17,5],[16,6],[-11,13],[6,22],[-18,-2],[-19,9],[-6,18],[6,18],[-19,14],[-5,18],[-17,-5],[-10,19],[-16,17],[-17,-9],[-1,-21],[-13,-18],[-23,6],[-7,-24],[10,-15],[-21,0],[-3,-20],[-18,-3],[-25,-8],[2,-19],[-11,-31],[-20,7],[-20,11],[5,23],[13,19],[4,38],[-23,14],[-13,20],[-1,18],[-24,9],[-24,5],[-23,11],[-20,1],[-10,-21],[7,-21],[-25,-13],[-17,15],[-25,15],[-26,3],[-17,9],[-19,6],[-14,-14],[-18,7],[-21,-5],[-18,-4],[-15,-11],[-21,24],[-15,11],[-26,-1],[-25,7],[13,14],[1,19],[3,17],[0,22],[9,21],[-20,13],[-18,-3],[-26,-12],[-18,-5],[5,20],[-4,17],[5,25],[-23,3],[-21,3],[-20,9],[-20,-1],[-31,6],[-18,20],[19,14],[33,15],[-24,9],[-21,3],[-13,20],[-29,-18],[-21,6],[-17,-7],[-33,-5],[-9,4],[-13,6],[-12,24],[-12,12],[-5,5],[-6,-26],[-17,-15],[-20,-2],[-9,-1],[-10,0],[9,-27],[1,-2],[-1,-2],[-12,-20],[-11,-16],[-19,15],[-5,-23],[-19,0],[-21,-2],[-25,1],[-14,13],[-26,5],[-18,5],[-17,6],[-21,-2],[-3,-20],[8,-19],[7,-25],[5,-21],[9,-20],[-11,-27],[-13,12],[-29,10],[-21,-7],[-17,4],[-19,2],[-16,-13],[-15,-19],[-19,9],[-14,10],[-19,6],[-4,-25],[-6,21],[-14,25],[0,21],[-22,6],[-12,18],[-19,1],[-13,19],[-13,21],[-19,-1],[-10,-14],[-6,-21],[-8,-20],[1,-26],[-18,9],[-21,3],[-18,7],[-20,6],[-18,10],[1,-20],[-8,-20],[-18,4],[-16,14],[-23,-4],[-16,-10],[-1,-22],[-6,-20],[3,-25],[-20,-18],[-17,-5],[-12,-19],[-8,-18],[-3,-20],[45,-15],[11,-14],[-20,-1],[-20,-3],[-19,-11],[-17,8],[-30,-4],[-15,12],[-11,17],[-19,14],[-20,11],[-22,15],[13,15],[3,19],[17,13],[-2,20],[6,21],[5,20],[-10,16],[-12,20],[-9,16],[-22,-4],[7,19],[10,18],[5,17],[-13,17],[-6,21],[-6,19],[-20,11],[-13,12],[-15,10],[-7,18],[-5,21],[-16,10],[-21,-1],[-11,19],[-18,3],[-17,11],[1,20],[-6,23],[-15,13],[-20,-4],[-15,9],[-21,-3],[-7,-18],[-20,4],[-19,-10],[-25,-12],[-25,-6],[-23,15],[-14,27],[-4,22],[-14,12],[-17,-2],[-22,-17],[-14,-19],[-21,-2],[11,21],[5,21],[-9,18],[-13,22],[-18,10],[-22,-3],[-19,-9],[-13,14],[-14,18],[-27,-1],[-17,-10],[-12,-12],[-22,-17],[-22,4],[-22,-6],[-27,-11],[-18,-10],[-23,-13],[-20,-13],[-19,1],[-13,22],[-1,23],[-15,23],[-16,7],[-25,-3],[-23,4],[-20,-3],[-20,2],[-18,4],[-33,2],[-24,-12],[-22,-2],[-13,13],[-5,32],[-15,11],[-7,24],[-25,-6],[-17,9],[-7,19],[6,21],[-7,16],[-6,19],[-20,-8],[-20,1],[-16,-8],[-18,-4],[-10,-16],[-24,7],[-12,14],[4,17],[3,24],[-9,22],[7,20],[0,18],[-3,19],[-2,23],[-14,10],[-22,-4],[-23,-1],[7,29],[-5,20],[-18,14],[-15,10],[-5,20],[-4,19],[-21,-13],[-19,5],[-19,6],[-15,-16],[-23,1],[-26,3],[-15,-18],[-10,15],[-20,-4],[-22,8],[-19,7],[6,19],[-2,25],[-7,24],[-9,17],[-7,21],[-13,19],[-23,-4],[-22,7],[-17,6],[0,20],[1,21],[2,18],[-22,-3],[-24,1],[20,29],[-3,20],[18,9],[18,13],[-5,18],[-10,16],[-11,21],[-6,23],[-24,2],[-13,17],[-18,16],[-21,9],[-6,-17],[-7,-8],[-7,-7],[-2,3],[-12,12],[-18,0],[-9,-21],[-17,-15],[-9,-19],[0,-23],[-9,-19],[-17,3],[-18,8],[-22,6],[-13,-16],[-15,-19],[-5,-18],[4,-18],[-16,-9],[-22,6],[-32,-2],[-19,-3],[-2,24],[-23,-5],[-19,-2],[-28,-2],[-19,7],[-18,-5],[-21,-23],[-21,-12],[-16,-15],[-15,-15],[-14,-16],[-18,-15],[-2,19],[-24,5],[-23,-2],[-14,-13],[-24,2],[-26,10],[-18,-1],[-12,-16],[-15,-16],[-3,-23],[-17,-13],[-22,6],[-21,9],[-19,9],[-23,-13],[-18,6],[-23,4],[-15,-12],[-12,-15],[-8,-16],[-7,-23],[-22,-11],[-17,-8],[-23,-3],[-19,2],[-17,15],[-10,16],[-21,1],[-19,-10],[-11,-16],[-6,-18],[-14,-10],[-9,-21],[-15,-13],[-6,-23],[-28,11],[-19,10],[-20,2],[-22,-15],[-17,-16],[-10,-18],[-15,10],[-22,10],[-20,1],[-12,-18],[-8,-16],[-16,-21],[-12,-19],[-18,-8],[-21,3],[-23,-8],[-17,-7],[-28,8],[0,22],[-14,11],[-22,5],[-22,-12],[-26,0],[-16,-14],[-14,-14],[-26,-4],[-13,19],[-19,12],[-22,11],[-20,4],[-27,2],[-18,-10],[-22,-1],[-16,14],[-12,-15],[-19,2],[-16,-7],[-15,-15],[-14,11],[-18,0],[-17,9],[-14,11],[-17,11],[18,9],[1,23],[-6,24],[-11,17],[20,-1],[14,14],[18,16],[8,17],[-16,16],[-22,15],[0,25],[10,17],[10,19],[3,20],[15,20],[15,11],[-20,8],[-19,-11],[-18,-4],[-17,-6],[-26,1],[-26,-6],[-10,-21],[-17,-7],[-20,-7],[-10,-18],[-23,-6],[-19,2],[0,20],[-5,17],[-19,9],[-27,0],[-12,23],[-25,-4],[-12,-15],[-18,2],[-17,8],[-14,-19],[-14,-11],[3,-19],[-24,-2],[-23,-2],[-16,-7],[-10,-25],[5,-21],[-12,-13],[-14,-18],[-11,-19],[-22,-9],[-17,14],[-7,18],[-22,5],[-20,-4],[-18,0],[3,-19],[17,-15],[-18,5],[-13,-13],[-17,-3],[-11,-15],[3,-21],[-3,-26],[-14,-12],[-11,-17],[-27,-6],[-20,-1],[-22,-5],[-15,24],[-22,2],[-19,6],[-18,7],[-1,24],[-4,18],[-23,-13],[-13,-16],[-18,-19],[-1,-22],[7,-22],[17,-10],[-15,-15],[7,-22],[0,-18],[-10,-15],[-8,-33],[3,-25],[6,-27],[-13,-28],[-12,-24],[-16,-10],[-21,-13],[-23,-7],[-17,-9],[-29,2],[-19,23],[-18,-2],[-13,-12],[-10,-21],[8,-19],[15,-10],[9,-25],[22,-10],[23,-16],[12,-13],[-12,-23],[24,-10],[17,-21],[18,-35],[24,8],[14,12],[19,2],[18,-14],[42,-8],[30,5],[33,4],[33,-6],[30,-1],[22,-1],[21,-13],[-16,-20],[-15,-24],[-14,-24],[20,-17],[-1,-22],[25,3],[27,-4],[12,-21],[-22,-26],[-14,-11],[-22,0],[-28,2],[-25,-18],[-27,-24],[-29,-1],[-17,-5],[-22,4],[9,-18],[-9,-20],[-12,-13],[-13,-11],[-26,-33],[-20,-20],[-24,2],[-17,-13],[-31,-10],[-17,-1],[-23,-11],[-20,5],[-17,2],[-14,12],[-5,27],[-18,30],[-6,18],[-21,-11],[-21,-7],[-14,-11],[-22,-14],[-18,3],[-4,-29],[-18,-18],[0,30],[-4,25],[-4,21],[-9,21],[-6,19],[2,19],[-1,25],[11,30],[-19,-5],[-28,0],[-11,18],[-11,32],[4,21],[12,26],[-17,-9],[-18,-18],[-13,-21],[-1,-23],[2,-19],[-10,-23],[-30,-13],[-18,22],[2,28],[-16,36],[18,4],[21,14],[15,16],[13,14],[9,16],[4,24],[8,25],[6,24],[5,22],[4,26],[-1,24],[3,21],[13,20],[4,19],[-7,19],[-4,22],[-17,9],[-11,25],[-13,21],[-15,15],[-26,-2],[-18,20],[19,10],[29,1],[26,-1],[-7,23],[-6,26],[-13,29],[-15,11],[-9,23],[20,5],[-3,22],[1,23],[5,21],[-1,19],[23,19],[-4,24],[21,1],[8,18],[12,19],[6,17],[12,18],[-14,11],[-29,9],[-18,8],[-8,16],[-2,18],[20,-3],[15,13],[6,17],[19,0],[17,-6],[6,-19],[31,-5],[13,-15],[-12,-20],[18,1],[5,-18],[21,3],[17,6],[17,15],[35,-1],[19,-17],[5,-23],[18,-12],[19,-5],[-7,-19],[20,-6],[18,0],[8,-24],[21,13],[-12,28],[20,11],[-17,9],[-8,17],[-2,18],[20,-1],[-3,19],[-8,18],[0,19],[-9,17],[-17,11],[20,4],[5,13],[3,9],[17,6],[20,6],[23,4],[26,5],[22,-4],[17,-3],[-13,13],[6,31],[2,11],[2,7],[-29,-9],[-23,-2],[-8,17],[-31,-2],[0,11],[1,12],[-20,1],[-23,10],[-27,4],[9,-29],[2,-5],[-17,-13],[-11,-1],[-10,-1],[-24,-4],[-15,-10],[-10,19],[-12,14],[-18,-6],[-19,6],[-23,-4],[-14,16],[-21,-10],[-18,-15],[-12,20],[-25,16],[-29,-3],[-15,16],[-18,16],[-20,14],[-18,-14],[-9,-25],[-29,-6],[-26,-16],[-16,10],[-20,2],[-26,2],[-14,16],[3,-19],[7,-20],[11,-21],[9,-23],[4,-32],[-30,-4],[-21,-19],[-16,7],[-18,12],[-16,8],[-19,2],[-25,3],[-17,8],[-19,8],[8,-28],[8,-27],[-5,-18],[-15,-15],[12,-16],[5,-30],[-16,-17],[-17,6],[-26,6],[-20,3],[-27,1],[-16,11],[-16,7],[7,-19],[-2,-18],[4,-29],[-19,-6],[-17,1],[-21,-1],[-19,-11],[-2,-19],[12,-20],[8,-17],[-20,-12],[-22,2],[-28,-5],[-8,-17],[-19,3],[-16,-14],[2,-21],[-30,-12],[1,-21],[5,-28],[-6,-19],[-19,-4],[-8,-23],[4,-18],[-17,-18],[16,-28],[13,-23],[15,-17],[-18,-13],[-28,-21],[-43,5],[17,27],[18,23],[-16,20],[-22,12],[-25,0],[-24,-2],[-20,-3],[-23,-2],[-22,-6],[-25,-6],[-27,-1],[-27,6],[-18,16],[-14,16],[17,15],[55,11],[-22,8],[-10,26],[-40,22],[14,12],[14,16],[27,13],[44,-2],[-18,2],[-17,17],[-37,7],[-28,-14],[-18,14],[-4,3],[-2,17],[9,19],[14,17],[23,13],[9,-3],[11,-3],[23,-2],[37,2],[50,-6],[33,7],[-13,19],[21,8],[25,14],[-23,7],[-37,3],[-36,-5],[-5,-1],[-28,-5],[-33,5],[14,12],[29,15],[25,15],[16,20],[26,17],[29,17],[19,14],[17,7],[-5,23],[-25,-18],[-23,-11],[-27,-5],[-26,-5],[-17,-13],[-17,-18],[-16,-22],[-24,-13],[-12,16],[14,16],[13,13],[10,11],[15,19],[-24,-9],[-18,-9],[-20,-15],[-18,-2],[-23,-8],[-24,7],[-18,20],[-17,-10],[4,-26],[6,-30],[-21,-19],[-33,-9],[-41,4],[-31,13],[-13,16],[-19,21],[-17,19],[-15,-15],[14,-20],[16,-40],[8,-36],[3,-30],[-13,-24],[16,-14],[7,-18],[-5,-22],[-6,-17],[-9,-23],[-28,-18],[-20,15],[-15,14],[-30,25],[2,31],[-10,15],[-7,17],[2,29],[-23,19],[-15,-17],[-10,-17],[-12,-16],[-9,-16],[-1,-22],[-1,-1],[-15,-17],[-18,-10],[-11,2],[-18,3],[-15,12],[-21,-5],[-7,-10],[-6,-9],[-14,-11],[-3,-5],[-10,-16],[0,-2],[0,-24],[-11,-20],[-24,-16],[-18,-7],[-16,-12],[-24,-7],[-23,-3],[-23,-2],[-19,-3],[-24,-8],[-22,-11],[-16,-12],[-35,0],[-33,9],[-43,7],[-27,-8],[-22,-5],[-18,0],[-21,1],[-18,4],[-20,8],[10,15],[16,20],[-17,4],[-16,8],[-18,-6],[-30,0],[-5,23],[-19,8],[-20,-13],[-24,-9],[-18,2],[-7,17],[-14,21],[-17,13],[-21,4],[-15,15],[15,11],[22,10],[21,17],[21,10],[16,8],[20,8],[9,17],[19,-1],[11,24],[10,18],[13,18],[-6,18],[18,-3],[9,-15],[13,-14],[13,-20],[5,-17],[18,-10],[27,-3],[20,-10],[22,4],[24,-8],[24,-2],[6,18],[-2,22],[-10,26],[-5,39],[-10,21],[6,19],[4,23],[-3,25],[-8,19],[20,5],[4,-18],[0,-21],[17,-15],[14,-19],[14,-10],[25,-8],[14,-11],[9,-19],[11,-17],[20,-6],[17,12],[7,20],[10,17],[24,5],[13,12],[-8,16],[-7,17],[-3,21],[-2,24],[-12,19],[0,26],[20,7],[17,12],[-9,15],[13,14],[19,0],[-9,25],[-19,1],[-24,3],[11,18],[13,21],[-10,15],[-19,2],[-21,-1],[-20,2],[17,10],[23,-3],[12,13],[18,-7],[16,-18],[22,-14],[16,-8],[17,9],[14,-13],[18,-8],[25,-11],[7,-17],[20,-8],[16,-16],[5,-22],[14,-13],[16,10],[15,14],[18,5],[1,19],[14,15],[12,20],[-15,25],[20,4],[19,12],[16,9],[5,22],[20,-6],[31,1],[13,19],[5,21],[15,12],[15,19],[9,21],[18,-2],[18,-4],[18,-6],[22,-2],[4,20],[1,30],[21,-4],[29,-9],[4,20],[18,1],[24,-14],[39,-14],[21,-7],[23,-7],[15,-15],[-12,22],[-10,22],[-11,15],[-5,17],[24,3],[12,19],[11,15],[15,15],[18,10],[20,-7],[19,-11],[12,-16],[19,3],[-16,13],[-12,19],[-2,36],[8,22],[-27,-2],[-22,-6],[-30,-7],[-24,1],[-22,-11],[-22,4],[-4,24],[-19,7],[-22,3],[-31,10],[-23,-7],[-9,-15],[-22,7],[-29,-12],[-18,1],[-26,2],[-20,-3],[-15,-11],[-22,0],[-20,-4],[-5,-18],[-26,-7],[-18,-8],[0,-21],[-15,10],[-24,0],[-17,-6],[-16,-23],[-20,1],[-16,-9],[-13,-13],[-23,-5],[-15,-17],[-22,12],[-19,3],[-26,1],[-18,10],[-25,0],[-14,-15],[-23,6],[-15,18],[-10,14],[-13,15],[-22,-5],[-5,-18],[-17,-10],[-5,-20],[-22,-1],[-24,-9],[-21,0],[-26,-5],[-20,-5],[-21,-2],[-23,6],[-20,-1],[-23,-7],[-23,-4],[-17,15],[-12,14],[-17,-7],[-23,-1],[-13,13],[-2,1],[3,10],[2,11],[17,5],[15,13],[3,19],[19,8],[17,7],[22,4],[21,4],[19,6],[-1,18],[21,8],[17,-5],[22,13],[26,9],[25,1],[19,3],[22,11],[19,-14],[20,-4],[13,18],[5,19],[17,8],[-7,18],[23,4],[19,9],[18,-10],[23,10],[18,9],[20,12],[0,23],[11,20],[3,18],[-9,20],[7,18],[-1,18],[3,19],[3,25],[-2,25],[4,23],[11,-19],[17,-3],[20,6],[-5,17],[-10,17],[-5,18],[-3,19],[-12,13],[-18,3],[-21,-1],[-8,20],[9,19],[19,4],[15,13],[6,17],[5,23],[-23,15],[-18,2],[-17,9],[8,19],[20,10],[20,7],[19,11],[17,10],[23,3],[3,23],[15,15],[21,-3],[18,3],[19,3],[22,3],[-1,21],[-19,-5],[-27,-2],[-20,4],[-22,-1],[-26,-8],[-16,-9],[-21,-4],[-22,-4],[-14,-18],[-22,4],[-21,3],[-14,-12],[-10,-20],[-23,7],[-2,0],[-19,3],[1,4],[6,13],[2,5],[-3,23],[5,18],[-9,5],[-8,5],[-22,8],[-4,-18],[-15,-16],[-11,-16],[-4,-4],[-10,-11],[-18,-9],[-1,-1],[1,-2],[11,-23],[10,-14],[-3,-22],[9,-18],[1,-3],[0,-3],[-4,-18],[13,-21],[13,-16],[9,-16],[-6,-20],[11,-17],[-6,-19],[10,-17],[-2,-18],[-9,-17],[-5,-25],[-8,-21],[-18,4],[-19,-10],[-9,-22],[-14,-11],[-12,-19],[-5,-23],[-11,-17],[-15,-9],[-13,-16],[-17,0],[-18,-1],[-16,-6],[-17,-12],[-15,-10],[-17,-6],[-23,-3],[-21,-11],[-6,18],[1,24],[15,12],[6,19],[-15,15],[-6,18],[-15,17],[-19,14],[1,-21],[-14,-29],[-34,-20],[-14,-19],[-3,-19],[-10,-23],[17,-27],[9,-23],[-30,2],[-17,-11],[-31,13],[-11,-23],[-14,-24],[-17,-33],[-23,21],[-9,19],[-14,67],[-9,40],[-13,18],[-22,13],[-20,21]],[[56508,55359],[0,31],[0,248],[0,184],[2,45],[6,104],[3,44],[0,5],[3,49],[6,98],[14,232],[0,94],[0,178],[0,35],[0,78],[0,48],[0,9],[0,39],[0,214],[0,137],[-1,174],[0,42],[0,296],[-1,58],[-2,253],[0,84],[0,57],[12,65],[12,18],[1,118],[1,125],[0,61],[0,36],[2,114],[-2,147],[2,116],[-3,68],[-1,21],[-2,48],[-2,46],[0,1],[-1,8],[-3,203],[2,141],[1,37],[0,18],[0,21],[3,190],[0,25],[1,69],[3,339],[0,27],[0,44],[0,56],[0,49],[-1,142],[0,120],[0,41],[-1,22],[0,65],[-1,387],[-144,0],[-221,0],[-142,1],[-198,0],[-37,0],[-3,0],[-19,0],[-27,0],[-12,0],[-35,0],[-1,0],[-392,1],[-45,0],[-88,0],[-13,0],[-46,1],[-24,0],[-23,1],[-27,1],[-28,0],[-142,-2],[-165,-1],[-147,5],[-70,2],[-106,2],[-158,4],[-80,2],[-54,0],[-177,4],[-64,2],[-60,2],[-243,5],[-22,-1],[-37,-1],[-109,1],[-146,1],[-137,0],[-142,-2],[-91,0],[-2,0],[-47,-1],[-12,0],[-31,-1],[-4,0],[-2,0],[-140,-12],[-12,92],[-10,90],[-10,89],[1,24],[3,50],[0,5],[1,66],[1,51],[2,36],[2,45],[3,47],[2,22],[1,12],[0,5],[2,25],[1,19],[2,35],[5,96],[6,102],[1,36],[0,25],[1,24],[0,9],[0,12],[0,23],[1,18],[0,9],[1,19],[0,31],[1,102],[0,45],[0,176],[0,27],[0,35],[0,26],[0,175],[-1,343],[-1,342],[0,209],[0,78],[-1,310],[0,81],[0,17],[0,36],[-12,19],[-158,-1],[-108,-1],[-182,-12],[-86,-5],[1,-52],[0,-7],[1,-12],[-6,0],[-267,0],[-157,0],[-497,0],[-173,0],[-64,0],[-330,1],[-255,0],[-34,0],[-265,1],[-65,0],[-64,0],[-67,0],[-146,0],[-87,-1],[-162,0],[-493,-1],[-187,-5],[-16,0],[-113,-2],[-53,1],[-86,3],[-100,-2],[0,-35],[-76,0],[-346,-2],[-25,4],[-43,-1],[-1127,1],[-181,-1],[-236,1],[-1025,-2],[-115,2],[-87,0],[-46,0],[-76,-2],[-178,-3],[-16,-1],[-31,2],[-3,0],[-44,1],[-50,1],[-108,-7],[-50,-3],[-101,-4],[-41,0],[-20,0],[-175,-1],[-18,0],[-151,0],[-204,-1],[-22,1],[-77,0],[-148,0],[-13,0],[-1,0],[-12,0],[-134,-1],[-22,0],[-81,0],[-40,0],[-93,0],[-200,0],[0,82],[-1,185],[-1,34],[0,32],[0,18],[0,3],[0,47],[0,28],[0,52],[0,75],[-3,103],[-1,159],[-3,307],[-1,132],[-1,296],[-1,81],[0,193],[0,32],[2,50],[3,151],[-3,89],[-6,135],[-1,30],[-3,121],[-2,34],[-2,49],[-4,48],[-1,23],[2,47],[2,43],[1,81],[4,330],[-199,3],[-181,3],[-55,1],[-259,7],[-434,2],[-241,1],[-322,2],[-31,0],[-14,0],[-6,0],[-5,0],[-47,0],[-3,0],[-6,0],[-44,0],[-3,192],[-4,206],[-4,228],[1,51],[1,162],[0,34],[2,188],[0,48],[0,10],[0,37],[0,10],[0,46],[0,4],[1,42],[0,7],[0,18],[2,36],[3,86],[3,76],[1,62],[1,8],[5,43],[1,11],[5,41],[8,65],[3,69],[5,47],[-6,32],[1,79],[1,20],[-23,-8],[-16,-6],[-37,-15],[-57,-33],[-18,-12],[-19,-26],[-12,-18],[-27,-18],[-33,-7],[-29,-7],[-23,-7],[-30,-11],[-44,-20],[-26,-14],[-42,-27],[-35,-32],[-32,-33],[-28,-40],[-15,-38],[-8,-18],[-18,2],[-49,9],[-37,8],[-26,6],[-40,8],[-38,7],[-53,11],[-94,19],[-38,3],[-31,0],[-62,0],[-51,-8],[-35,-5],[-83,-14],[-84,-13],[-398,-63],[-11,-2],[-47,-3],[-1,0],[-93,18],[-21,5],[-108,21],[-45,10],[-168,33],[-34,7],[-149,30],[-116,117],[-19,20],[-68,74],[-69,62],[-14,13],[-56,57],[-32,32],[-87,81],[-65,39],[-50,18],[-24,9],[-76,19],[-53,10],[-20,4],[10,40],[14,30],[10,37],[13,43],[1,45],[-11,49],[-5,22],[-9,22],[-15,27],[-23,31],[-25,28],[-18,13],[-15,11],[-16,8],[-39,18],[-51,19],[-57,12],[-65,2],[-57,-5],[-56,-13],[-50,-21],[-76,-49],[-17,-14],[-16,-15],[-31,-39],[-63,-3],[-23,6],[-18,26],[-28,42],[-49,62],[-49,47],[-12,6],[-33,17],[-22,15],[-17,12],[-39,25],[-9,6],[-80,31],[-79,16],[-65,21],[-96,18],[-57,1],[-38,-1],[-24,-1],[-25,-4],[-46,-14],[-33,-9],[-25,-7],[-26,-9],[-29,-9],[-36,-11],[-30,-10],[-29,-9],[-47,-7],[-54,-5],[-49,-5],[-68,-7],[-43,-5],[-43,-4],[-41,2],[-49,4],[-36,0],[-27,2],[-44,3],[-23,1],[-28,4],[-19,6],[-71,0],[-35,48],[-45,40],[-67,37],[-26,11],[-70,19],[-52,4],[-54,-1],[-39,-3],[-27,-2],[-108,14],[-21,17],[-35,25],[-60,37],[-90,48],[-68,27],[-56,15],[-60,14],[-56,9],[-71,2],[-102,23],[-93,21],[-171,39],[-270,63],[-30,3],[-19,4],[-232,57],[-138,31],[-65,22],[-25,7],[-42,9],[-17,3],[-38,7],[-12,2],[-14,3],[-20,4],[-16,2],[-8,1],[-118,19],[-19,3],[-60,10],[-212,36],[-222,36],[-35,6],[-79,14],[-110,16],[-18,2],[-34,7],[-32,6],[-77,32],[-72,30],[-127,333],[-12,30],[-22,44],[-19,36],[-54,72],[-66,67],[-44,28],[-45,38],[-106,57],[-78,39],[-90,49],[-46,21],[-43,22],[-38,22],[-23,15],[-20,8],[-23,13],[-23,13],[-45,24],[-1375,777],[-113,41],[-55,29],[-22,12],[-21,9],[-21,7],[-35,11],[-17,7],[-5,2],[-35,14],[-33,16],[-41,17],[-33,14],[-35,13],[-31,12],[-18,10],[-6,4],[-18,7],[-14,6],[-18,6],[-28,13],[-2,1],[-31,13],[-26,9],[-44,17],[-28,12],[-20,6],[-8,4],[-20,8],[-17,6],[-28,14],[-21,7],[-19,7],[-21,9],[-19,10],[-24,14],[-31,16],[-28,16],[-16,6],[-25,10],[-23,7],[-27,27],[-4,24],[-7,25],[-4,9],[-6,12],[-3,5],[-6,11],[-9,26],[-12,24],[-7,17],[-2,5],[-10,23],[-22,30],[-20,23],[-6,7],[-14,14],[-21,21],[-16,13],[-15,10],[-21,14],[-23,16],[-17,13],[-20,21],[-39,32],[-47,29],[-57,29],[-47,20],[-40,8],[-25,4],[-49,3],[-29,2],[-2,0],[-27,10],[-32,12],[-11,4],[-66,14],[-17,3],[-73,13],[-56,7],[-81,-17],[-52,-12],[-116,-6],[-92,-2],[-222,114],[-51,22],[-71,31],[-77,25],[-117,48],[-16,18],[-29,28],[-22,20],[-59,27],[-46,22],[-42,11],[-52,8],[-53,1],[-42,-6],[-43,6],[-26,-4],[-30,-4],[-60,-13],[-35,6],[-23,4],[-47,3],[-42,1],[-73,-5],[-59,14],[-57,12],[-36,3],[-63,0],[-59,-6],[-56,-2],[-24,-1],[-27,0],[-18,1],[-99,-5],[-40,-10],[-103,-30],[-80,-1]],[[25682,73974],[0,147],[0,61],[-1,57],[1,115],[0,17],[0,3],[0,23],[0,22],[0,37],[0,10],[1,169],[0,82],[1,125],[0,142],[0,64],[0,50],[0,42],[3,425],[-4,118],[0,76],[0,368],[0,379],[0,495],[0,339],[0,134],[0,221],[0,53],[0,34],[0,12],[1,53],[2,40],[0,471],[0,204],[0,130],[0,16],[1,63],[0,7],[-3,43],[8,8],[7,33],[16,14],[2,2],[5,5],[5,5],[5,13],[3,7],[9,23],[10,41],[2,6],[5,15],[2,5],[-1,5],[-1,14],[-5,5],[-3,3],[-17,15],[0,1],[-6,8],[-12,15],[-3,4],[-2,15],[-1,1],[-1,9],[-2,8],[-1,3],[-7,23],[-3,8],[0,7],[0,8],[2,8],[2,4],[8,21],[1,1],[12,12],[6,6],[6,7],[2,2],[13,12],[9,7],[4,3],[3,3],[8,4],[7,2],[4,2],[11,6],[6,3],[7,4],[2,3],[3,6],[1,2],[0,1],[2,3],[6,14],[3,8],[1,3],[1,8],[0,4],[2,8],[-1,1],[-2,12],[-1,1],[-14,17],[-5,5],[-3,3],[0,5],[0,3],[0,4],[0,10],[0,11],[0,8],[0,5],[0,2],[0,7],[1,17],[0,20],[1,11],[2,26],[4,7],[2,4],[16,33],[4,9],[5,5],[31,40],[23,29],[30,36],[35,27],[30,23],[26,30],[4,5],[3,5],[2,1],[15,30],[3,5],[4,5],[4,22],[2,8],[1,5],[3,6],[3,5],[9,19],[1,0],[6,6],[3,4],[8,12],[11,15],[-1,2],[-2,11],[-8,27],[-2,5],[-5,20],[-13,46],[-5,17],[-7,29],[-3,8],[-1,15],[5,28],[0,1],[1,8],[5,28],[8,14],[2,3],[3,12],[2,5],[7,27],[0,2],[13,27],[5,10],[2,5],[8,25],[4,21],[3,23],[0,25],[-9,37],[-2,11],[-4,17],[-14,15],[-8,7],[0,1],[-32,15],[-10,2],[-3,2],[-32,10],[-64,22],[-29,16],[-26,20],[-7,6],[-8,22],[-6,14],[-2,27],[0,6],[-10,13],[-19,24],[-8,8],[-19,25],[-9,13],[-4,7],[-1,2],[-1,3],[-10,10],[-4,4],[-7,4],[-6,3],[-12,7],[-8,0],[-3,1],[-6,3],[-7,4],[-6,3],[-6,7],[-2,1],[-25,28],[-12,14],[-4,13],[-2,7],[-5,16],[0,2],[4,19],[8,20],[3,6],[1,14],[1,5],[0,4],[18,20],[26,31],[21,32],[5,6],[23,36],[2,3],[4,32],[1,2],[4,37],[0,1],[2,2],[4,6],[4,5],[16,22],[3,3],[1,2],[6,5],[3,3],[10,33],[0,2],[1,2],[2,14],[-3,60],[-4,17],[-3,5],[-8,9],[-27,70],[-20,76],[4,18],[31,54],[1,2],[3,5],[23,25],[9,9],[7,0],[2,-1],[4,4],[2,1],[27,18],[57,40],[12,9],[1,1],[14,16],[6,8],[0,1],[-1,3],[-3,17],[-11,14],[-4,5],[-1,2],[-6,21],[-4,14],[-2,4],[0,2],[4,14],[1,2],[1,5],[3,2],[2,2],[10,6],[4,4],[-1,5],[-7,30],[1,7],[0,2],[-1,1],[-4,1],[-1,1],[-10,33],[-3,7],[-6,20],[-45,41],[-2,1],[-12,6],[-2,1],[-28,14],[-33,5],[-13,1],[-2,1],[-35,5],[-11,1],[-42,21],[-18,8],[-16,8],[-26,13],[-7,4],[-9,5],[-13,9],[-8,11],[-12,15],[-18,27],[-3,6],[-6,14],[-2,6],[-2,6],[-5,12],[-5,35],[0,4],[0,10],[-1,31],[0,2],[-1,15],[2,16],[1,14],[5,12],[1,4],[1,5],[2,14],[2,10],[1,1],[0,2],[2,8],[1,7],[4,28],[-3,43],[0,9],[0,6],[-3,2],[-2,2],[-27,30],[-11,35],[-1,3],[-7,34],[-11,11],[-3,2],[-54,30],[-25,23],[-1,8],[-5,34],[-5,29],[-11,28],[-1,1],[-1,12],[-12,94],[-8,25],[-1,5],[0,14],[0,66],[-1,18],[-13,59],[-9,12],[-7,8],[-8,30],[-15,50],[17,66],[2,8],[5,10],[31,66],[14,28],[14,18],[8,21],[16,18],[41,46],[3,3],[66,57],[7,2],[4,2],[12,12],[45,47],[12,8],[14,10],[47,32],[28,12],[5,2],[15,18],[45,83],[5,20],[2,5],[2,11],[11,37],[4,4],[1,3],[8,18],[3,8],[-4,19],[-3,14],[24,77],[16,40],[6,14],[14,19],[-9,27],[0,1],[4,6],[10,14],[14,26],[4,9],[5,12],[6,11],[12,12],[10,9],[9,10],[14,11],[36,10],[6,1],[13,6],[1,3],[6,6],[11,5],[8,1],[23,2],[15,2],[8,-1],[23,-4],[21,-3],[40,-16],[97,-53],[1,0],[25,-3],[11,1],[86,11],[7,4],[23,10],[35,2],[90,7],[52,-4],[7,0],[48,-2],[13,0],[6,-3],[15,-6],[25,-9],[12,-5],[43,-27],[5,-4],[28,-19],[9,-6],[48,-20],[11,0],[5,-1],[40,-3],[25,-10],[17,-6],[7,-3],[72,-32],[4,-2],[5,3],[42,22],[109,58],[15,8],[3,0],[10,-3],[71,-20],[15,-5],[21,-11],[5,-3],[2,-1],[103,-21],[22,-5],[10,-2],[18,3],[92,24],[16,12],[3,3],[2,4],[13,30],[22,48],[3,3],[33,28],[19,17],[18,75],[2,8],[3,9],[21,55],[1,1],[39,37],[3,2],[27,18],[17,8],[33,15],[21,18],[23,20],[1,0],[18,14],[22,22],[31,30],[5,6],[6,17],[-2,33],[-2,6],[-7,30],[-14,25],[-7,10],[-5,6],[-27,133],[0,22],[8,23],[10,28],[3,14],[4,20],[14,18],[14,19],[8,19],[10,22],[2,5],[-10,67],[2,2],[52,69],[3,5],[19,10],[18,10],[65,34],[17,0],[23,8],[21,13],[3,2],[9,4],[15,6],[9,4],[18,3],[83,16],[52,26],[13,8],[9,6],[7,3],[38,15],[51,32],[53,35],[5,7],[5,8],[13,14],[6,6],[-2,7],[-1,3],[5,16],[2,3],[21,24],[1,1],[6,4],[39,23],[18,11],[74,29],[2,0],[16,3],[19,3],[3,-1],[12,-2],[85,-12],[41,-7],[11,-5],[19,-9],[19,-8],[13,-7],[0,-1],[3,-3],[15,-16],[20,-26],[6,-17],[21,-17],[12,-7],[24,-4],[5,-1],[11,1],[6,0],[16,2],[23,14],[5,4],[10,3],[10,4],[106,40],[24,9],[7,8],[7,9],[16,6],[9,4],[10,8],[13,16],[39,48],[32,48],[7,11],[2,5],[9,21],[1,2],[11,10],[4,4],[10,9],[6,5],[1,1],[127,67],[26,15],[3,2],[21,15],[6,2],[21,7],[41,32],[1,1],[66,39],[19,7],[2,0],[57,13],[113,40],[16,6],[6,5],[4,2],[4,4],[5,2],[5,0],[6,0],[30,13],[13,5],[6,1],[34,7],[43,34],[20,16],[25,13],[29,17],[3,3],[4,5],[10,-1],[1,0],[44,13],[61,28],[20,9],[3,0],[29,6],[13,2],[16,2],[38,2],[11,4],[44,11],[14,8],[7,7],[2,2],[16,18],[34,45],[29,39],[16,24],[1,2],[72,90],[44,49],[3,4],[17,18],[40,33],[7,5],[4,3],[9,4],[32,18],[14,8],[16,7],[20,8],[12,8],[7,6],[3,1],[46,13],[16,10],[11,7],[28,10],[15,5],[44,30],[3,2],[21,14],[12,4],[27,6],[44,10],[3,0],[28,15],[16,2],[21,1],[34,1],[11,1],[25,-3],[9,-5],[23,-13],[21,-4],[5,-1],[7,-3],[24,-10],[9,-4],[27,-8],[26,-8],[26,-11],[34,-14],[41,-17],[86,-16],[18,-3],[60,-10],[17,2],[10,1],[11,2],[165,40],[8,4],[12,8],[32,-1],[26,0],[24,8],[2,1],[26,3],[22,4],[6,4],[3,4],[42,21],[18,8],[94,27],[80,9],[17,3],[1,1],[3,4],[52,7],[71,11],[29,8],[67,23],[32,22],[11,7],[10,6],[12,14],[5,6],[14,16],[17,47],[3,26],[2,13],[4,8],[11,23],[2,5],[6,8],[26,36],[4,6],[19,14],[5,1],[1,0],[85,9],[5,1],[4,1],[33,1],[15,-5],[6,-1],[0,-1],[73,-31],[32,-18],[58,-14],[4,0],[83,-7],[9,-1],[26,12],[6,3],[21,10],[33,26],[7,5],[5,1],[10,3],[57,33],[93,67],[9,10],[36,41],[15,16],[17,48],[13,42],[3,24],[2,14],[7,17],[6,7],[28,36],[1,0],[12,11],[11,6],[13,7],[13,5],[29,29],[0,1],[10,4],[38,17],[13,5],[41,4],[14,0],[5,-3],[1,-1],[112,-29],[41,-11],[92,-30],[57,-18],[21,-3],[45,-7],[9,-2],[3,1],[33,3],[12,1],[28,11],[30,18],[30,34],[22,26],[38,44],[9,11],[8,5],[6,3],[68,35],[43,12],[3,1],[2,0],[168,2],[36,2],[12,1],[77,-20],[24,-8],[66,-31],[14,-7],[36,-12],[6,-1],[30,-5],[1,0],[1,0],[85,22],[7,1],[11,13],[24,28],[2,2],[11,24],[4,20],[-2,10],[-3,23],[-4,67],[5,16],[12,40],[2,9],[5,7],[20,25],[13,12],[27,13],[46,6],[19,3],[33,-4],[1,0],[81,-2],[39,7],[32,5],[6,1],[11,6],[15,8],[31,17],[53,46],[38,43],[21,55],[3,20],[1,12],[5,52],[9,22],[9,21],[3,8],[14,30],[2,5],[4,2],[42,26],[6,3],[2,1],[3,1],[40,7],[34,6],[20,-4],[46,-21],[36,-26],[101,-56],[4,-3],[5,-1],[2,-1],[56,-20],[17,-3],[23,-4],[22,-1],[15,-1],[26,4],[10,1],[25,4],[26,8],[25,13],[41,41],[8,13],[10,30],[-2,15],[-6,33],[-3,16],[-18,29],[-6,11],[-30,48],[-7,13],[-19,46],[-7,23],[-8,27],[-3,10],[-5,46],[5,13],[2,6],[2,5],[1,1],[11,18],[2,3],[1,1],[48,38],[3,2],[31,11],[56,11],[50,9],[54,21],[48,21],[15,9],[24,14],[48,23],[72,23],[4,1],[12,2],[14,2],[23,-2],[16,-2],[10,-4],[7,5],[34,-2],[30,-12],[25,-12],[14,-13],[2,-11],[24,-98],[2,-10],[3,-9],[3,-4],[18,-23],[5,-7],[7,-5],[17,-12],[30,-19],[8,-5],[11,2],[11,2],[10,1],[44,13],[47,16],[25,12],[11,8],[8,6],[20,8],[16,6],[33,19],[18,18],[64,61],[4,0],[56,48],[30,33],[10,10],[7,6],[3,3],[4,5],[11,14],[39,49],[25,39],[22,51],[10,32],[7,49],[15,145],[2,22],[8,15],[26,46],[18,21],[47,36],[13,7],[4,2],[45,26],[12,5],[46,16],[21,8],[24,8],[75,14],[0,5],[-6,20],[0,63],[5,10],[-3,10],[-25,52],[22,37],[45,30],[43,36],[4,5],[3,10],[9,42],[2,12],[-4,6],[-11,6],[-11,14],[-5,17],[-13,43],[-26,58],[-39,79],[-6,3],[-7,13],[2,6],[7,9],[7,6],[26,21],[-3,13],[-5,8],[-12,15],[-7,5],[-6,3],[-23,-9],[-58,-24],[-11,-8],[-18,-19],[-15,-10],[-5,-2],[-10,3],[0,3],[-50,106],[10,25],[-27,77],[-2,5],[-5,6],[-8,5],[-43,16],[-4,1],[-5,2],[-6,10],[0,9],[19,16],[9,5],[9,0],[8,-3],[1,0],[12,-19],[7,-6],[10,-3],[26,-3],[13,0],[10,4],[11,8],[33,58],[2,9],[-5,6],[-9,-1],[-11,-9],[-18,-4],[-15,-2],[-10,3],[-8,7],[-2,3],[-7,16],[-5,19],[-5,6],[-9,5],[-12,1],[-11,-1],[-7,-3],[-23,-2],[-12,2],[-7,3],[-3,9],[3,5],[8,6],[13,4],[4,1],[14,-1],[29,2],[25,7],[7,2],[8,4],[-2,12],[-14,36],[-20,32],[-2,3],[-34,57],[-3,7],[26,70],[8,5],[18,3],[132,21],[35,-2],[26,16],[22,16],[9,11],[5,11],[-5,58],[37,58],[58,29],[14,10],[2,7],[-3,7],[-5,4],[-32,23],[-24,43],[1,5],[13,21],[12,16],[11,5],[25,2],[12,-1],[2,7],[2,43],[-5,7],[-72,21],[-27,5],[-19,1],[-24,-4],[-41,-18],[-18,-14],[-1,-1],[-33,-6],[-7,2],[-3,8],[0,1],[-1,17],[3,8],[-4,8],[-10,8],[-20,7],[-13,4],[-9,2],[-21,13],[-2,10],[2,8],[1,0],[8,5],[22,6],[13,1],[37,12],[6,7],[2,8],[-30,45],[-7,10],[-82,33],[-15,-16],[-8,-2],[-5,2],[-25,13],[-11,8],[-3,5],[-3,9],[2,7],[9,8],[42,-3],[16,9],[6,7],[3,8],[6,24],[-1,8],[-4,4],[-10,3],[-36,3],[-16,3],[-23,4],[-20,6],[-6,6],[0,7],[3,3],[9,4],[22,1],[5,0],[5,3],[7,7],[5,12],[2,14],[-1,21],[-3,8],[-28,40],[-4,4],[-13,0],[-17,-5],[-50,-17],[-12,3],[-3,2],[0,17],[-2,7],[-6,10],[-22,22],[-24,22],[-10,13],[-1,13],[9,13],[11,8],[34,24],[4,6],[0,15],[-3,5],[-10,6],[-12,3],[-15,3],[-5,5],[-4,18],[1,4],[4,56],[6,16],[3,5],[8,5],[15,7],[3,7],[0,23],[-1,11],[-6,5],[-12,-1],[-19,-9],[-22,-5],[-21,2],[-15,7],[-9,7],[-3,16],[0,21],[2,5],[0,9],[0,1],[5,32],[4,10],[5,7],[10,8],[31,14],[4,5],[3,5],[-1,10],[-3,5],[-7,3],[-11,1],[-23,-6],[-8,1],[-11,3],[-9,8],[-1,1],[-2,7],[1,7],[0,9],[0,1],[0,1],[3,61],[7,6],[2,0],[1,1],[9,-1],[11,-3],[47,1],[28,2],[17,5],[11,5],[9,7],[2,3],[-1,7],[-6,5],[29,81],[3,5],[0,14],[-1,5],[-14,16],[-15,8],[-11,4],[-54,3],[-10,3],[-4,3],[0,8],[4,6],[40,65],[0,1],[7,6],[9,4],[36,6],[20,8],[13,11],[18,22],[9,16],[-1,6],[-24,29],[33,3],[12,1],[73,23],[5,6],[6,42],[0,12],[-4,5],[-7,7],[-30,15],[-6,5],[0,5],[0,1],[2,2],[2,1],[2,1],[8,2],[3,0],[10,-1],[70,-13],[28,-10],[30,-5],[29,2],[10,4],[9,6],[8,16],[1,9],[-5,42],[-3,5],[-5,4],[-7,2],[-36,2],[-4,1],[-2,2],[0,8],[13,19],[3,3],[13,12],[1,0],[7,0],[48,-21],[12,1],[29,8],[5,3],[19,72],[13,22],[-48,115],[-3,6],[1,6],[6,6],[10,4],[2,1],[16,2],[71,30],[-17,49],[19,152],[9,71],[0,1],[2,4],[47,35],[3,2],[7,10],[2,8],[2,45],[-1,15],[-10,8],[-38,0],[-15,2],[0,1],[-13,8],[-3,6],[-8,64],[-3,26],[0,13],[5,23],[4,11],[11,24],[4,22],[0,9],[-4,7],[-9,4],[-38,11],[-12,6],[-7,9],[-2,4],[-4,10],[-1,6],[0,19],[0,2],[1,6],[6,13],[14,13],[3,2],[12,19],[0,10],[-3,6],[-6,8],[-6,3],[-17,6],[-3,2],[-14,7],[-7,6],[-9,16],[1,8],[7,10],[8,11],[-15,85],[16,45],[0,52],[1,76],[-1,13],[-2,4],[-8,8],[-23,9],[-9,3],[-10,3],[-27,15],[-15,16],[-8,19],[1,14],[7,20],[0,12],[-7,16],[-12,22],[-6,25],[-15,57],[-7,29],[-10,32],[-4,8],[-1,1],[-6,7],[-24,16],[-1,12],[3,7],[21,34],[26,23],[17,5],[17,5],[7,5],[4,14],[0,1],[-2,20],[-2,5],[-1,1],[-12,15],[-11,11],[-12,17],[-2,7],[3,17],[9,26],[6,9],[1,0],[1,0],[18,20],[60,80],[33,106],[11,39],[-1,9],[-10,10],[-14,8],[-30,22],[-10,14],[-2,10],[0,1],[5,17],[4,1],[73,17],[6,4],[18,21],[10,16],[6,18],[-30,41],[0,72],[18,0],[11,3],[6,6],[5,12],[0,17],[-1,17],[5,10],[7,3],[16,0],[37,-7],[27,1],[17,2],[6,6],[4,10],[0,8],[-4,5],[-5,3],[-13,4],[-52,-1],[-19,3],[-9,6],[-5,7],[0,11],[7,24],[26,80],[4,4],[5,2],[27,-4],[11,-4],[9,-7],[37,-47],[8,11],[-1,9],[-24,105],[-1,4],[-1,2],[-5,5],[-4,1],[-46,-1],[-25,5],[-9,4],[-5,6],[-1,6],[3,27],[3,11],[9,9],[19,8],[4,1],[23,-3],[8,-5],[21,-18],[2,-8],[5,-6],[7,-5],[21,-4],[14,2],[15,6],[6,6],[4,9],[-2,16],[-2,8],[-10,14],[-18,19],[-13,6],[-19,-3],[-13,0],[-12,2],[-8,7],[0,12],[17,38],[12,7],[11,0],[1,0],[14,-4],[11,-9],[11,-17],[6,-6],[11,-3],[8,1],[4,2],[1,5],[-14,33],[-5,8],[-13,23],[-30,42],[-16,22],[-7,6],[4,80],[7,9],[11,2],[7,-4],[30,-20],[3,-3],[5,-27],[5,-4],[7,-1],[17,0],[6,3],[6,10],[10,39],[-1,10],[-3,7],[-9,11],[-11,9],[-10,4],[-34,-9],[-9,0],[-8,5],[-7,10],[-22,42],[0,7],[5,10],[7,6],[12,10],[-4,8],[-8,5],[-21,7],[-8,1],[-29,4],[-20,5],[-3,3],[-1,7],[9,19],[2,11],[-1,15],[-4,8],[-6,9],[-2,0],[-4,17],[0,15],[4,5],[6,1],[16,-8],[10,-5],[9,1],[11,10],[15,29],[41,41],[0,32],[-74,100],[-15,19],[0,8],[13,11],[46,37],[43,21],[4,6],[-2,87],[-11,83],[-2,5],[-1,2],[1,9],[5,5],[72,42],[33,13],[11,-9],[46,-26],[10,1],[6,5],[6,9],[0,11],[-5,85],[61,39],[19,37],[-1,29],[6,11],[-3,52],[-2,8],[-6,7],[-18,44],[29,102],[41,27],[-4,50],[-2,14],[12,12],[32,38],[2,25],[0,29],[0,4],[33,69],[53,72],[75,66],[4,4],[0,17],[-10,14],[-19,41],[-9,96],[0,11],[3,8],[17,12],[81,53],[98,54],[-53,55],[1,8],[32,31],[29,0],[3,0],[20,50],[21,168],[1,19],[-5,5],[-21,10],[-3,11],[-5,18],[0,15],[6,12],[13,0],[17,1],[26,13],[14,34],[-6,7],[-16,4],[-8,5],[0,21],[0,2],[4,10],[25,51],[51,51],[5,4],[1,0],[42,-2],[15,1],[4,4],[20,29],[-3,4],[-14,10],[-2,1],[11,6],[151,76],[8,8],[11,84],[3,23],[13,0],[43,-1],[5,-4],[11,3],[14,28],[15,43],[3,49],[6,10],[1,20],[-8,31],[-1,4],[-10,10],[-18,33],[-3,12],[0,8],[1,23],[9,5],[8,0],[6,-1],[6,-4],[19,-11],[10,1],[6,7],[3,17],[3,28],[-1,57],[-6,16],[-14,26],[-3,11],[23,45],[2,3],[2,1],[42,21],[27,12],[24,9],[15,3],[13,15],[37,43],[24,26],[19,23],[26,30],[23,25],[7,21],[-3,13],[-8,7],[-13,7],[-16,24],[-5,13],[-2,6],[-1,3],[0,11],[4,16],[2,6],[18,23],[8,12],[2,16],[-1,8],[-5,10],[-9,16],[-8,27],[-29,91],[0,1],[-79,165],[-5,4],[-51,43],[-13,3],[-28,14],[-11,39],[-16,137],[0,3],[15,57],[17,8],[40,0],[6,3],[4,5],[7,14],[0,4],[-8,21],[-2,20]],[[39437,99936],[1,0],[30,-1],[69,2],[83,3],[14,0],[489,0],[186,0],[121,1],[51,0],[44,0],[1452,0],[207,1],[45,0],[67,0],[44,0],[68,2],[194,-2],[102,0],[165,0],[80,0],[72,0],[271,0],[1045,1],[2,0],[115,0],[96,1],[177,0],[1,0],[29,0],[79,0],[277,0],[588,0],[129,0],[791,2],[128,-3],[239,0],[1242,0],[52,0],[505,-2],[2166,4],[175,0],[1,0],[79,0],[1498,0],[413,1],[1013,2],[142,0],[93,0],[669,0],[86,0],[163,1],[164,4],[101,0],[321,0],[85,0],[240,0],[11,0],[597,1],[559,-1],[88,-2],[44,1],[4,0],[24,0],[368,0],[111,0],[251,0],[47,0],[97,0],[19,0],[269,-1],[135,0],[17,0],[46,0],[59,0],[33,-1],[20,0],[89,0],[8,0],[25,1],[41,-1],[45,0],[24,0],[18,0],[44,0],[39,1],[22,0],[72,-1],[195,-2],[213,-1],[4,0],[96,-1],[37,0],[681,-6],[4,0],[53,0],[3,0],[24,-1],[71,-1],[25,0],[26,-1],[116,-1],[3,0],[332,-4],[25,1],[213,7],[168,3],[32,-1],[40,0],[272,1],[23,0],[343,-1],[416,-1],[118,-1],[326,-2],[378,0],[16,0],[20,0],[115,0],[139,1],[415,15],[22,1],[329,9],[134,1],[126,1],[109,1],[69,0],[67,0],[133,0],[201,0],[322,-1],[72,0],[167,-2],[160,1],[11,0],[58,0],[575,3],[70,0],[574,2],[115,1],[603,2],[1167,5],[28,0],[56,0],[34,0],[179,1],[589,3],[113,-2]],[[99969,43125],[-128,1],[-242,1],[-78,1],[-359,2],[-178,2],[-227,1],[-151,1],[-446,-4],[-50,-1],[-433,-4],[-22,0],[-46,-1],[-7,0],[-41,0],[-22,-1],[-74,0],[-32,-1],[-29,0],[-189,-2],[-262,-2],[-113,-2],[-28,0],[-123,-1],[-5,0],[-105,0],[-139,-1],[-137,0],[-225,0],[-51,0],[-37,0],[-134,0],[-306,0],[-60,0],[-68,0],[-138,0],[-41,0],[-77,-1],[-117,0],[-95,0],[-140,-1],[-57,0],[11,-10],[0,-11],[-7,-11],[-13,-13],[-38,-32],[-77,-53],[-12,-19],[-2,-7],[-1,-9],[4,-12],[14,-21],[3,-9],[0,-17],[-7,-21],[-43,-66],[-41,-61],[-28,-41],[-1,-1],[-5,-8],[-22,-32],[2,-10],[6,-36],[6,-35],[-1,-1],[-36,-89],[-8,-37],[0,-12],[4,-10],[5,-9],[9,-8],[40,-37],[8,-4],[9,-2],[26,0],[13,-2],[7,-2],[3,-4],[46,-58],[5,-5],[31,-36],[-1,-2],[-9,-23],[-8,-19],[-13,-33],[-28,39],[-2,3],[-3,2],[-7,5],[-10,4],[-59,3],[-9,-4],[-9,-5],[-11,-15],[-19,-21],[-65,-41],[-10,-5],[-24,-7],[-24,1],[-34,9],[-10,3],[-43,14],[-2,1],[-44,8],[-2,-2],[-38,-22],[-23,-14],[-40,-24],[-9,-5],[-25,-11],[-8,-4],[-80,-34],[-64,-27],[-5,-8],[-1,-6],[8,-19],[1,-13],[-4,-10],[-6,-6],[-5,-2],[-15,-1],[-13,1],[-12,10],[-6,11],[-1,32],[-5,15],[-6,6],[-26,11],[-3,0],[-12,-7],[-26,-30],[-9,-19],[-12,-33],[-3,-28],[-2,-5],[-6,-5],[-11,0],[-8,5],[-18,17],[-12,18],[-15,47],[-7,6],[-8,3],[-3,1],[-8,-2],[-7,-4],[-10,-13],[-4,-8],[-6,-17],[-1,-30],[-7,-48],[-3,-7],[-8,-7],[-17,-4],[-12,0],[-49,14],[-8,3],[-7,7],[-4,9],[0,3],[-33,26],[-6,2],[-24,6],[-55,-16],[-81,0],[-42,4],[-30,7],[-40,11],[-20,5],[-3,1],[-21,9],[-24,1],[-14,-4],[-9,-2],[-4,-1],[-8,-9],[-9,-16],[-9,-9],[-37,-5],[-2,0],[-60,-37],[-38,-59],[-72,-94],[-19,-15],[-13,-5],[-9,-5],[-43,-20],[-2,0],[-2,0],[-20,-15],[-6,-10],[0,-11],[0,-5],[5,-15],[3,-5],[0,-8],[-3,-6],[-7,-4],[-20,-6],[-50,17],[-36,15],[-6,4],[-16,24],[-11,10],[-13,6],[-22,3],[-4,-2],[-13,-4],[-11,-7],[-15,-15],[-6,-19],[-1,-28],[-2,-39],[-4,-5],[-3,-1],[-2,0],[-15,-1],[-19,4],[-4,3],[-3,5],[-4,6],[-3,1],[-12,5],[-10,1],[-10,-4],[-9,-6],[-1,-2],[-1,-2],[2,-14],[5,-11],[0,-1],[9,-15],[0,-8],[-7,-11],[-1,-1],[-8,-7],[-11,-40],[-15,-60],[-4,-30],[-1,-22],[-2,-47],[-12,-22],[-6,-11],[-1,-11],[-1,-8],[9,-10],[15,-10],[32,-33],[11,-17],[4,-10],[2,-6],[4,-16],[2,-10],[-5,-37],[-7,-17],[-17,-14],[-37,-18],[-18,7],[-19,7],[-7,3],[-8,-17],[15,-16],[1,0],[20,-8],[8,-18],[-1,-31],[31,-23],[6,-19],[-19,-8],[-15,-1],[-88,22],[-19,-5],[-58,-14],[-13,-16],[-10,-6],[-17,-6]],[[92198,40915],[-6,-2],[-23,-3],[-55,5],[-1,0],[-5,-2],[-8,-6],[-27,-30],[-2,-5],[-2,-8],[2,-59],[-7,-18],[-5,-9],[-13,-15],[-6,-5],[-13,-5],[-118,-28],[-9,-2],[-30,-3],[-6,3],[-30,16],[-16,9],[-2,2],[-2,1],[-7,30],[0,3],[-3,11],[-8,1],[-10,-3],[-6,-2],[0,-2],[-1,-2],[0,-21],[5,-18],[10,-41],[2,-8],[13,-25],[6,-18],[1,-53],[-1,-5],[-1,-1],[-1,-2],[-21,-4],[-12,-6],[-5,-5],[-30,-32],[-6,-7],[-8,-9],[-19,-24],[-1,-3],[0,-2],[-11,-36],[-2,-7],[-4,-1],[-13,-6],[-14,-10],[-1,0],[-34,-49],[-2,-8],[1,-4],[4,-3],[34,-4],[5,-5],[5,-9],[12,-25],[1,-11],[-5,-10],[-9,-2],[-46,4],[-4,0],[-8,0],[-14,-4],[-11,1],[-47,14],[-28,11],[-7,6],[-19,28],[-20,27],[-13,14],[-5,2],[-14,1],[-22,-1],[-15,-9],[4,-20],[0,-11],[-8,-33],[-4,-11],[-26,-47],[-6,-5],[-17,4],[-24,6],[-15,10],[-1,2],[-1,2],[0,8],[4,11],[7,17],[0,7],[-2,3],[-14,5],[-44,8],[-15,-1],[-11,-4],[-12,-10],[-2,-4],[-8,-6],[-13,-3],[-14,0],[-12,1],[-5,2],[-15,24],[-7,17],[-2,7],[0,2],[-2,8],[-7,9],[-1,2],[0,1],[-15,16],[-15,15],[-16,12],[-1,1],[-37,-3],[-26,-13],[-113,-55],[-2,-1],[-15,-9],[-23,-14],[-18,-8],[-7,-6],[-7,-5],[-8,-6],[-16,-12],[-13,-10],[-31,-11],[-5,-2],[-6,-8],[-21,-25],[-6,-32],[-3,-6],[-15,-10],[-8,-2],[-26,-1],[-13,-1],[-32,1],[-6,7],[-2,6],[1,8],[-17,26],[-41,12],[-7,1],[-7,-3],[-26,-11],[-37,-16],[-6,-3],[-17,-2],[-7,-1],[-22,-5],[-113,-22],[-23,-12],[-18,-15],[-6,-11],[-11,-39],[-2,-8],[-1,-18],[5,-22],[3,-2],[5,-9],[16,-28],[1,-1],[18,-33],[1,-8],[-2,-5],[-2,-2],[-8,-7],[-25,-26],[-23,-42],[-6,-12],[-23,-41],[-5,-7],[-11,-7],[-23,0],[-6,2],[-5,2],[-8,4],[-3,6],[-5,9],[-8,12],[-7,2],[-10,0],[-13,-8],[-5,-5],[-23,-28],[-4,-8],[-42,-104],[-2,-9],[-1,-14],[2,-11],[-3,-6],[-8,-5],[-9,-4],[-18,0],[-18,9],[-10,11],[-5,10],[-8,40],[-3,10],[-7,16],[-4,7],[-5,3],[-1,1],[-6,3],[-12,1],[-2,0],[-12,-1],[-4,-3],[-11,-4],[-20,-12],[-10,-8],[-5,-3],[-9,-8],[-2,-5],[-6,-16],[0,-9],[-1,-2],[0,-10],[-4,-4],[-10,-5],[-18,0],[-55,1],[-33,6],[-30,8],[-56,8],[-21,3],[-11,0],[-6,-1],[-9,-5],[-1,-4],[-7,-6],[-34,-10],[-44,-14],[-35,-8],[-16,-2],[-13,10],[-1,1],[-6,6],[-20,4],[-11,0],[-2,0],[-14,-2],[-51,-10],[-4,-4],[0,-6],[2,-14],[1,-7],[5,-8],[0,-2],[5,-20],[-11,-25],[-7,-3],[-13,3],[-23,13],[-2,0],[-8,3],[-11,-1],[-17,-7],[-27,-10],[-17,-6],[-27,-34],[-3,-3],[-45,-27],[-17,-9],[-9,-5],[-12,-3],[-16,-5],[-8,-5],[2,-6],[11,-9],[9,-9],[-1,-4],[-2,-12],[-1,-3],[17,-26],[12,-19],[22,-4],[7,-3],[7,-9],[6,-14],[0,-15],[-8,-34],[-11,-29],[-14,-27],[0,-13],[2,-3],[1,-2],[6,-5],[8,-2],[43,-6],[32,-7],[20,-9],[7,-5],[3,-1],[3,-2],[5,-8],[0,-14],[-2,-7],[-7,-9],[-17,-4],[-15,-1],[-31,-2],[-13,-1],[-4,0],[-101,29],[-32,9],[-14,1],[-14,-4],[-1,-1],[-1,-1],[0,-18],[3,-12],[3,-10],[7,-21],[1,-15],[-16,-27],[-30,-49],[-5,-8],[-25,-33],[-28,-35],[-8,-8],[-21,-10],[-23,-6],[-46,-7],[-13,-11],[-24,-18],[-20,-14],[-96,-72],[-24,-9],[-12,0],[-7,1],[-16,17],[-12,14],[-9,24],[-4,13],[-8,17],[-22,4],[-13,-6],[-11,-5],[-5,-8],[-8,-11],[1,-42],[4,-4],[11,-14],[5,-30],[-1,-3],[-5,-15],[-8,-6],[-8,-7],[-12,-2],[-11,-3],[-14,-3],[-63,2],[-19,0],[-16,1],[-5,-11],[-4,-8],[-3,-7],[6,-12],[6,-11],[20,-16],[25,-14],[5,-9],[4,-6],[-2,-5],[-4,-5],[-8,-2],[-51,-13],[-20,0],[-12,-4],[-61,-28],[-9,-8],[0,-17],[22,-27],[1,-6],[-2,-4],[-13,-5],[-27,-1],[-13,5],[-15,10],[-3,8],[0,13],[16,16],[3,4],[0,7],[-3,5],[-10,11],[-15,2],[-11,-2],[-46,-9],[-11,-4],[-20,-12],[-8,-6],[-1,-2],[-4,-7],[0,-14],[4,-10],[14,-18],[-21,-72],[-13,-3],[-37,-13],[-11,-4],[-24,-10],[-7,-7],[-33,-18],[-7,-7],[-7,-7],[-10,-9],[-9,-14],[1,-7],[2,-7],[-1,-7],[-1,-1],[-18,-35],[-6,-6],[-1,-2],[-12,-44],[-4,-9],[-9,-35],[-3,-11],[7,-5],[5,-8],[9,-30],[10,-35],[2,-28],[-28,-32],[-10,-11],[-12,-6],[-2,0],[-14,-2],[-5,-5],[-8,-8],[-5,-16],[-1,-10],[5,-12],[-2,-11],[0,-3],[-7,-33],[-2,-11],[-6,-1],[-11,-7],[-5,-4],[-18,-12],[-5,-3],[-11,-7],[-6,-1],[0,-2],[-4,-3],[-32,-14],[-6,-2],[-16,-7],[-31,-6],[-29,1],[-59,15],[-13,-1],[-11,-11],[3,-46],[-15,-22],[-57,-27],[-18,-2],[-19,4],[-45,12],[-18,-2],[-28,8],[-25,8],[-30,1],[-42,-2],[-18,-1],[-28,-10],[-21,-1],[-20,11],[-2,8],[-2,14],[-2,11],[3,12],[3,13],[0,3],[0,2],[-3,13],[-6,6],[-18,9],[-61,15],[-18,13],[-2,13],[-21,11],[-46,-6],[-20,-9],[-7,-7],[-15,-2],[-12,2],[-14,12],[-4,2],[-2,5],[-11,24],[-13,28],[-12,10],[-22,2],[-21,-3],[-5,0],[-11,-11],[8,-32],[7,-12],[8,-12],[4,-5],[0,-5],[5,-26],[-9,-10],[-16,-2],[-15,9],[-14,25],[-20,12],[-10,7],[-17,-1],[-15,-1],[-12,-3],[-8,-3],[-10,-5],[-27,-1],[-16,20],[0,1],[-3,14],[3,10],[6,19],[15,20],[29,2],[27,61],[34,76],[-1,6],[-1,4],[0,2],[-1,5],[-9,5],[-6,4],[-55,-2],[-20,-9],[-16,-2],[-12,7],[0,14],[1,15],[0,3],[2,4],[3,1],[21,4],[11,3],[2,-1],[30,3],[42,-7],[1,0],[25,2],[3,0],[8,5],[9,9],[8,13],[3,7],[-2,14],[-4,10],[-4,3],[-1,1],[-2,2],[-12,5],[-41,7],[-60,-2],[-34,9],[-6,2],[-15,10],[-107,71],[-12,37],[6,16],[4,16],[1,6],[0,8],[-10,30],[-1,3],[1,10],[7,17],[6,5],[6,2],[9,3],[6,2],[5,10],[-3,21],[-4,10],[-28,4],[-19,3],[-27,5],[-30,3],[-6,3],[-8,9],[0,3],[1,13],[16,27],[10,13],[11,11],[6,8],[3,8],[-1,9],[-3,9],[-10,14],[-9,8],[-15,7],[-31,9],[-12,5],[-26,19],[-3,5],[-3,5],[-4,8],[-2,5],[-13,46],[-14,3],[-11,-3],[-11,-8],[-5,-7],[-1,-8],[-1,-56],[-21,-23],[-26,-11],[-15,-3],[-27,1],[-28,12],[-20,15],[-45,38],[-16,20],[-4,7],[-4,17],[0,17],[1,5],[6,9],[9,28],[3,19],[-2,14],[-5,5],[-4,1],[-15,-1],[-8,-6],[-34,-45],[-6,-15],[-3,-12],[2,-22],[2,-1],[-1,-11],[-2,-4],[-2,0],[-1,-1],[-5,0],[-14,5],[-13,12],[-8,12],[-11,22],[-8,20],[-3,13],[-1,2],[-2,12],[4,11],[55,64],[28,32],[3,3],[17,27],[3,5],[1,9],[0,2],[-2,7],[-19,22],[-3,1],[-6,-2],[-5,-4],[-7,-19],[-23,-21],[-65,-41],[-8,-2],[-6,3],[-22,16],[-3,6],[-4,29],[-2,5],[-56,46],[-79,54],[-67,49],[-5,6],[-3,3],[-3,6],[1,9],[13,28],[1,1],[-5,31],[-6,10],[-6,3],[-12,4],[-20,5],[-15,-2],[-14,-5],[-12,-6],[-10,-4],[-11,-10],[-10,-10],[-5,-6],[-36,-24],[-1,-1],[-2,-1],[-7,1],[-8,5],[-3,9],[-34,105],[-4,11],[-3,14],[-2,4],[-7,28],[-6,35],[-5,5],[-8,-2],[-9,-7],[-12,-19],[-6,-6],[-16,-17],[-25,-6],[-51,10],[-28,-8],[-17,-8]],[[83443,99888],[208,0],[273,-1],[172,3],[21,2],[59,-1],[140,1],[58,0],[47,1],[97,4],[88,-1],[1,0],[155,-1],[118,0],[154,0],[71,0],[235,0],[269,3],[140,-3],[104,0],[1,0],[239,-1],[121,0],[102,0],[708,-1],[256,-1],[495,-1],[129,6],[500,-1],[73,0],[189,0],[196,-1],[142,0],[323,0],[157,0],[321,-1],[73,0],[46,0],[17,0],[285,1],[4,0],[267,2],[38,0],[177,2],[18,0],[86,0],[159,1],[484,3],[129,1],[519,4],[93,0],[140,0],[145,0],[127,0],[70,0],[126,0],[128,0],[103,0],[20,0],[171,0],[47,0],[110,0],[229,0],[268,0],[73,0],[79,0],[30,1],[88,0],[23,0],[55,0],[41,-1],[227,4],[122,0],[23,0],[111,0],[119,0],[231,0],[46,0],[93,0],[51,0],[185,0],[201,0],[199,-1],[197,1],[26,-1],[31,0],[84,0],[220,1],[65,0],[40,0],[23,0],[2,0],[162,-1],[303,0],[181,0],[54,0],[192,1],[92,-2],[90,1],[349,1],[33,0],[133,1],[447,0],[94,-1],[1152,-4],[148,0],[0,-2],[0,-149],[0,-1],[0,-156],[-1,-225],[0,-54],[0,-125],[0,-374],[0,-124],[0,-76],[0,-222],[0,-272],[0,-83],[0,-128],[0,-37],[0,-87],[-3,-78],[1,-46],[0,-5],[0,-17],[0,-28],[0,-44],[1,-173],[0,-52],[1,-85],[-1,-25],[1,-30],[0,-85],[0,-7],[-1,-228],[0,-37],[0,-48],[0,-38],[1,-85],[-1,-82],[0,-129],[0,-91],[0,-228],[0,-102],[0,-114],[0,-83],[-1,-181],[0,-23],[0,-133],[0,-125],[0,-58],[0,-211],[0,-65],[-1,-216],[0,-61],[0,-22],[0,-51],[0,-19],[0,-35],[0,-10],[1,-234],[-1,-95],[0,-1],[0,-99],[-1,-89],[0,-53],[-1,-318],[0,-91],[1,-350],[0,-195],[0,-100],[0,-24],[0,-109],[0,-26],[0,-159],[0,-29],[0,-43],[1,-103],[-1,-52],[0,-15],[0,-39],[0,-44],[0,-63],[0,-35],[0,-22],[1,-34],[0,-45],[-1,-112],[1,-63],[0,-56],[0,-40],[-1,-42],[0,-38],[-1,-29],[1,-159],[1,-55],[0,-155],[-1,-129],[-1,-30],[2,-159],[-3,-282],[-1,-23],[0,-167],[0,-58],[0,-31],[0,-45],[-1,-198],[0,-294],[0,-245],[0,-11],[-1,-290],[-1,-118],[0,-165],[-1,-136],[0,-25],[5,-122],[-1,-202],[-1,-228],[-1,-29],[1,-35],[-1,-20],[0,-205],[0,-86],[0,-109],[0,-36],[0,-103],[0,-68],[0,-54],[1,-123],[0,-30],[0,-44],[0,-49],[0,-46],[0,-215],[0,-61],[-1,-98],[0,-21],[0,-31],[0,-55],[1,-93],[-2,-156],[-3,-50],[2,-28],[0,-72],[0,-149],[0,-36],[0,-59],[0,-19],[0,-203],[-2,-60],[1,-219],[0,-124],[0,-19],[1,-39],[-2,-30],[0,-42],[-3,-55],[1,-122],[2,-459],[0,-129],[1,-11],[0,-16],[0,-14],[1,-249],[3,-141],[0,-71],[0,-25],[-1,-330],[0,-71],[0,-23],[1,-109],[0,-18],[0,-93],[0,-45],[-1,-108],[0,-51],[0,-102],[-1,-98],[0,-24],[1,-30],[0,-105],[0,-20],[0,-54],[0,-5],[0,-58],[1,-30],[-1,-95],[-1,-174],[-2,-123],[0,-18],[0,-97],[0,-1],[0,-44],[0,-41],[-3,-165],[0,-247],[0,-21],[1,-48],[0,-27],[0,-76],[0,-80],[0,-54],[0,-117],[0,-241],[0,-28],[0,-26],[0,-2],[1,-175],[-1,-22],[0,-10],[1,-18],[-1,-25],[-1,-29],[0,-98],[0,-3],[0,-85],[0,-42],[0,-6],[1,-153],[0,-23],[0,-42],[0,-24],[0,-12],[1,-63],[0,-18],[0,-20],[0,-119],[0,-12],[0,-14],[0,-50],[0,-19],[0,-17],[-1,-128],[0,-90],[0,-34],[0,-72],[0,-4],[0,-67],[0,-3],[0,-12],[0,-24],[-1,-146],[0,-45],[0,-10],[0,-22],[0,-18],[0,-59],[0,-7],[0,-18],[0,-29],[0,-26],[0,-22],[0,-21],[-1,-58],[0,-101],[0,-69],[0,-52],[-1,-65],[0,-43],[-1,-452],[0,-312],[0,-3],[0,-15],[0,-29],[0,-18],[0,-48],[0,-18],[0,-36],[0,-51],[1,-19],[1,-21],[0,-87],[1,-101],[0,-34],[-1,-126],[0,-80],[0,-31],[0,-63],[-1,-106],[0,-227],[-1,-22],[0,-292],[0,-79],[0,-22],[0,-125],[0,-2],[0,-35],[0,-13],[0,-6],[0,-10],[0,-24],[0,-3],[0,-7],[0,-7],[0,-4],[-1,-49],[0,-100],[0,-118],[0,-85],[-1,-255],[3,-32],[-1,-123],[0,-35],[0,-74],[0,-45],[-1,-199],[0,-62],[0,-194],[0,-93],[-1,-154],[0,-136],[0,-23],[-1,-105],[0,-27],[0,-84],[0,-89],[0,-88],[-1,-244],[0,-249],[0,-147],[0,-106],[0,-137],[0,-119],[-1,-135],[0,-108],[0,-126],[0,-139],[-1,-38],[0,-173],[0,-23],[0,-154],[0,-95],[0,-77],[-1,-188],[0,-25],[0,-70],[0,-81],[0,-85],[-1,-18],[0,-227],[0,-80],[0,-87],[0,-1],[0,-9],[0,-26],[0,-39],[0,-10],[0,-14],[0,-16],[0,-33],[0,-2],[0,-6],[0,-20],[0,-4],[0,-40],[1,-16],[0,-21],[0,-8],[0,-34],[0,-33],[0,-41],[2,-229],[0,-96],[1,-62],[1,-174],[0,-41],[1,-138],[0,-76],[1,-64],[1,-118],[1,-263],[1,-65],[1,-179],[0,-21],[1,-185],[0,-33],[0,-20],[-1,-128],[-1,-130],[0,-125],[0,-61],[0,-48],[0,-23],[0,-24],[0,-68],[0,-141],[0,-263],[0,-25],[0,-210],[0,-63],[0,-136],[0,-290],[-1,-448],[0,-58],[1,-459],[1,-716],[0,-58],[1,-509],[0,-1],[0,-48],[0,-16],[1,-31],[0,-6],[0,-302],[2,-107],[1,-379],[0,-113],[0,-112],[0,-186],[-1,-223],[-1,-213],[0,-188],[-1,-169],[0,-140],[-2,-355],[0,-19],[0,-5],[1,-71],[0,-1],[0,-62],[0,-19],[0,-144],[0,-33],[1,-176],[-1,-308],[5,-160],[1,-20],[1,-28],[0,-3],[1,-42],[0,-2],[-8,-249],[4,-74],[9,-183],[-2,-27],[-11,-227],[0,-37],[0,-82],[0,-225],[0,-25],[0,-346],[1,-220],[0,-19],[0,-76],[0,-187],[0,-67],[0,-265],[0,-26],[-2,-863],[-1,-135],[1,-246],[0,-60],[0,-59],[-1,-39],[1,-375],[0,-28],[-2,-771],[1,-52],[0,-56],[0,-42],[0,-24],[0,-3],[0,-4],[0,-48],[0,-1],[0,-1],[1,-41],[-1,-4],[0,-19],[0,-331],[-2,-385],[0,-28],[0,-547],[0,-175],[-1,-455],[-1,-254],[0,-34],[0,-48],[-1,-24],[-1,-49],[0,-128],[0,-76],[1,-47],[0,-83],[0,-174],[0,-346],[0,-27],[0,-194],[0,-119],[0,-207],[0,-114],[-1,-54],[1,-49],[1,-122],[1,-78],[0,-9],[-2,-46],[-1,-13],[-1,-356],[-1,-166],[0,-342],[-1,-322],[-1,-17],[0,-37],[0,-26],[0,-9],[1,-55],[1,-230],[-1,-185],[-1,-121],[0,-73],[0,-48],[0,-47],[0,-22],[0,-44],[0,-154],[-1,-202],[0,-36],[0,-8],[0,-32],[0,-8],[0,-45],[0,-3],[-1,-138],[0,-241],[0,-117],[0,-21],[0,-1],[0,-13],[0,-3],[0,-20],[0,-7],[0,-29],[0,-29],[0,-30],[0,-34],[1,-121],[-1,-49],[0,-135],[-1,-138],[1,-185],[0,-46],[1,-185],[0,-65],[-1,-352],[0,-98],[-2,-284],[1,-243],[2,-499],[1,-41],[2,-344],[0,-33],[1,-271],[0,-51],[0,-46],[1,-32],[0,-63],[0,-42],[0,-26],[2,-513],[-8,-545],[0,-316],[0,-48],[0,-13],[0,-51],[0,-112],[0,-48],[0,-48],[0,-1],[-1,-525]],[[56508,55359],[0,-88],[10,-2],[2,-132],[0,-19],[3,-276],[1,-63],[-5,-7],[-6,-7],[-7,-9],[-17,-14],[-1,0],[-17,2],[-1,0],[-41,-11],[-3,-2],[-17,-10],[-10,-6],[-15,-11],[-3,-21],[2,-22],[-23,-14],[-7,-2],[-40,-9],[-2,-1],[-37,-14],[-22,-7],[-35,-5],[-3,-22],[0,-2],[-4,-16],[-4,-13],[-10,-18],[-2,-8],[-3,-11],[2,-6],[5,-16],[-8,-2],[-16,-5],[-5,-1],[-5,-2],[-13,-4],[-4,-1],[-1,-6],[-2,-16],[-7,-6],[-7,-6],[-3,-3],[-21,-3],[-42,-12],[-17,24],[-2,1],[-13,9],[-20,-2],[-3,-2],[-27,-12],[-22,-6],[-21,4],[-29,21],[-9,4],[-8,4],[-20,-1],[-1,-2],[-11,-35],[-15,-12],[-3,-2],[-2,2],[-15,13],[-13,11],[-19,3],[-17,-13],[-10,-15],[-2,-2],[-10,2],[-10,2],[-33,0],[-12,-17],[-37,-25],[-18,-20],[-1,-6],[-3,-16],[6,-21],[2,-29],[-44,-16],[-20,-9],[-16,-19],[-3,-23],[-20,-31],[-23,-18],[-30,4],[-22,-1],[-19,-13],[-19,-20],[-6,-18],[-7,-19],[-18,-11],[-28,-5],[-44,1],[-32,-11],[-21,-25],[-14,-17],[-32,0],[-21,2],[-15,-13],[1,-7],[3,-17],[10,-19],[-7,-17],[-76,-10],[-20,-3],[-23,14],[-35,6],[-11,4],[-21,7],[-13,-12],[-6,-5],[-13,-23],[-28,-1],[-8,3],[-14,6],[-8,4],[-5,2],[-9,4],[-23,-33],[-4,-18],[-11,-5],[-16,-9],[-5,-1],[-24,-2],[-8,-1],[-15,-6],[-7,-5],[-2,-1],[-8,-4],[-33,-18],[-39,-9],[-3,-2],[-3,-1],[-11,-4],[-1,-4],[1,-3],[8,-7],[9,-12],[2,-3],[4,-17],[-5,-85],[3,-47],[2,-36],[1,-4],[0,-6],[10,-76],[1,-4],[4,-18],[1,-7],[-16,-25],[-6,-6],[-6,-2],[-1,-9],[-5,-37],[-2,-10],[0,-12],[-4,-7],[-19,-23],[-12,-15],[-8,-6],[-8,-2],[-9,-5],[-6,-6],[-4,-6],[-26,-54],[-13,-39],[-8,-56],[-7,-42],[1,-33],[0,-4],[1,-31],[28,-20],[3,-6],[-3,-98],[-18,-86],[-1,-2],[0,-2],[9,-4],[19,2],[9,-2],[6,-5],[2,-7],[0,-89],[-1,-14],[0,-41],[-13,-45],[-1,-5],[-4,-12],[-6,-23],[-17,-17],[-1,-1],[2,-8],[4,-19],[-3,-11],[-6,-9],[-45,-65],[-36,-52],[-35,-7],[-6,-2],[-28,-5],[-18,-4],[-14,-13],[-21,-18],[-17,-14],[-40,-27],[-50,-36],[-13,-17],[-3,-7],[0,-17],[1,-6],[4,-9],[78,-91],[24,-25],[10,-8],[13,-5],[18,-1],[2,0],[2,2],[8,9],[14,35],[1,16],[-4,21],[13,11],[7,4],[74,27],[43,12],[15,1],[7,-3],[3,-1],[24,-16],[7,-11],[1,-4],[-1,-1],[-2,-4],[-4,-11],[-2,-31],[0,-2],[0,-34],[-9,-31],[-8,-33],[-4,-10],[-14,-14],[-10,-5],[-42,-14],[-16,-3],[-2,-1],[-44,-9],[-38,-4],[-9,0],[-82,-2],[-44,-4],[-2,-1],[-1,0],[-19,-4],[-13,-5],[-7,-7],[-3,-6],[3,-3],[28,-33],[2,-4],[11,-16],[8,-17],[4,-13],[6,-32],[1,-23],[3,-6],[18,-33],[8,-11],[30,-3],[1,-1],[7,-3],[21,-18],[1,-2],[1,-2],[1,-11],[-22,-17],[-15,-12],[-25,-19],[-2,-4],[-26,-56],[-120,-30],[-25,-9],[-6,-5],[-4,-8],[-1,-8],[1,-9],[6,-13],[0,-30],[-7,-8],[-23,-19],[-8,-6],[-39,-26],[-17,-23],[-10,-16],[-8,-10],[-12,-24],[-10,-28],[-3,-11],[0,-13],[-1,-7],[1,-2],[1,-2],[6,-5],[5,-2],[24,-3],[5,-1],[30,-20],[2,-7],[-8,-11],[-6,-6],[-6,-6],[-6,-3],[-12,5],[-3,2],[-1,-1],[-8,0],[-17,-9],[-49,-32],[-3,-7],[-1,-8],[9,-59],[3,-18],[3,-22],[3,-7],[3,-4],[17,-19],[5,-17],[3,-9],[-3,-5],[-6,-4],[-13,-1],[-13,1],[-22,0],[-11,-4],[-24,-10],[-5,-3],[-8,-20],[1,-20],[5,-15],[2,-1],[7,-27],[4,-17],[2,-32],[-2,-8],[-4,-8],[-18,-19],[-3,-4],[-4,-7],[-4,-11],[-2,-29],[-4,-36],[1,-11],[0,-1],[7,-20],[18,-6],[12,-3],[46,-12],[45,13],[1,1],[8,-1],[16,-6],[8,-6],[8,-8],[11,-14],[2,-6],[2,-13],[1,-8],[3,-8],[5,-5],[13,-10],[33,-23],[6,-4],[9,-8],[9,-36],[1,-6],[1,-39],[-1,-11],[-3,-6],[-17,-17],[-6,-10],[-21,-35],[-3,-6],[-19,-27],[-11,-7],[-2,-1],[-20,-8],[-24,-4],[-1,0],[-28,0],[-20,5],[-6,5],[-4,8],[-4,16],[1,23],[-11,15],[-12,13],[-6,4],[-95,29],[-44,5],[-7,-2],[-9,-16],[-7,-24],[1,-18],[6,-10],[32,-39],[43,-36],[5,-6],[0,-6],[-5,-5],[-29,-16],[-12,-7],[-4,-27],[-2,-10],[11,-6],[12,-2],[8,-1],[16,4],[27,6],[11,4],[18,16],[21,15],[13,5],[25,6],[28,4],[6,0],[12,2],[4,-2],[6,-2],[24,-14],[14,-13],[12,-12],[3,-5],[8,-29],[0,-11],[-9,-53],[-8,-15],[-6,-4],[-15,-3],[-20,-2],[-7,2],[-17,7],[-8,9],[-1,2],[0,1],[-8,8],[-31,6],[-15,0],[-14,-2],[-19,-7],[-19,-15],[-10,-14],[-4,-23],[0,-36],[5,-14],[1,-9],[-5,-11],[-13,-19],[-7,-9],[-103,-118],[-9,-10],[-20,-18],[-12,-5],[-26,-9],[-22,-9],[-2,-1],[-21,-4],[-16,-21],[3,-6],[9,-20],[8,-17],[11,-23],[19,-39],[2,-3],[36,-29],[3,-3],[33,-26],[4,-3],[10,-22],[5,-12],[17,-1],[32,0],[28,0],[487,-5],[193,-2],[135,0],[5,-1],[45,0],[23,0],[2,0],[26,0],[108,-1],[87,-1],[311,-2],[314,8],[475,0],[48,0],[18,0],[29,0],[462,-1],[820,-1],[79,1],[23,0],[181,2],[112,1],[-16,-21],[-24,-11],[-28,-15],[-11,-20],[-20,-23],[-2,-26],[1,-32],[-11,-21],[-35,-12],[-21,-8],[-18,-6],[-21,-20],[-17,-24],[-20,-14],[-12,-25],[-18,-24],[-2,-22],[24,-28],[18,-5],[38,5],[34,4],[18,-2],[31,1],[24,5],[34,-5],[24,-23],[-9,-32],[-10,-15],[-12,-18],[0,-1],[-10,-22],[-1,-31],[-1,-19],[19,-38],[12,-17],[31,-4],[23,-2],[5,-1],[18,-1],[18,-3],[-5,-22],[3,-21],[8,-24],[22,-23],[17,-14],[15,-18],[-9,-24],[-28,-26],[-14,-12],[1,-18],[-14,-21],[-15,-14],[-43,-17],[-12,-22],[5,-23],[-15,-12],[-28,-19],[-23,-4],[-16,-10],[-12,-17],[-24,-17],[-2,-24],[14,-20],[50,-30],[8,-33],[10,-30],[4,-18],[15,-11],[30,-10],[-9,-29],[-9,-21],[17,-16],[27,-8],[7,-43],[17,-8],[26,-10],[25,-11],[13,-24],[22,-21],[21,-4],[13,-19],[16,-8],[21,-15],[32,-16],[-4,-54],[21,-18],[11,-18],[25,-20],[0,-23],[-5,-17],[2,-18],[-8,-17],[-8,-21],[-8,-24],[-34,-11],[-29,-3],[-20,4],[-63,-4],[-23,-11],[3,-66],[12,-25],[7,-16],[20,-10],[18,-28],[8,-38],[-17,-31],[-25,-13],[-8,-23],[-4,-28],[-29,-20],[-22,-4],[-51,-8],[-23,-12],[-21,3],[-19,9],[-17,-6],[-18,1],[-12,-19],[-5,-23],[-13,-24],[-18,-11],[-34,12],[-30,13],[-24,1],[-21,9],[-13,-33],[-9,-30],[-11,-26],[-8,-22],[-29,-25],[-22,-18],[20,-29],[4,-25],[11,-23],[10,-23],[-11,-39],[-17,-34],[-12,-16],[19,-24],[4,-18],[4,-22],[-11,-18],[-20,-18],[-17,-23],[-21,-11],[-11,-31],[12,-23],[6,-23],[-5,-33],[17,-11],[33,-7],[-1,-22],[19,-35],[18,-11]],[[57554,47031],[-102,1],[-39,1],[-56,-1],[-45,0],[-181,0],[-247,-1],[-251,0],[-118,1],[-50,0],[-82,-1],[-24,0],[-165,0],[-76,0],[-232,0],[-213,0],[-389,1],[-187,0],[-42,0],[-22,0],[-149,0],[-84,0],[-80,0],[-214,0],[-87,0],[-133,0],[-107,1],[-148,-1],[-28,0],[-28,0],[-74,0],[-16,0],[-4,0],[-21,0],[-4,0],[-32,0],[-3,0],[-8,0],[-15,0],[-31,0],[-39,0],[-23,0],[-28,0],[-79,0],[-5,0],[-14,0],[-5,0],[-14,0],[-18,3],[-10,2],[-46,5],[-5,1],[-120,14],[-1,0],[-48,5],[-192,21],[-556,63],[-1,0],[-29,4],[-10,1],[-18,2],[-21,2],[-14,2],[-29,3],[-13,1],[-261,30],[-549,62],[-230,26],[-149,16],[-46,6],[-5,0],[-42,5],[-107,12],[-61,7],[-25,4],[-259,28],[-587,65],[-30,4],[-413,46],[-28,3],[-30,3],[-5,1],[-52,6],[-48,5],[-568,64],[-21,1],[-47,5],[-44,6],[-34,3],[-276,31],[-243,26],[-428,47],[-38,5],[-128,15],[-349,41],[-24,0],[-13,1],[-48,2],[-2,1],[-8,0],[-61,8],[-79,9],[-16,2],[-200,24],[-19,1],[-234,27],[-337,39],[-8,0],[-39,4],[-12,1],[-34,4],[-90,8],[-71,8],[-80,10],[16,-9],[14,-17],[1,-8],[2,-1],[60,-41],[16,1],[8,-3],[9,-3],[34,-17],[20,-15],[3,-5],[0,-9],[-2,-6],[-7,-6],[-22,-2],[-13,1],[-46,1],[-6,-1],[-49,-27],[-23,-17],[-9,-9],[-13,-21],[-3,-13],[-2,-39],[-1,-54],[4,-34],[7,-26],[18,-56],[1,-3],[1,-1],[1,0],[14,-43],[3,-1],[18,-26],[2,-5],[-1,-13],[0,-3],[-5,-15],[-10,-15],[-27,-38],[-19,-20],[-10,-4],[-11,-1],[-3,0],[-10,3],[-7,9],[-1,1],[-6,11],[-1,5],[-8,11],[-20,29],[-11,11],[-13,6],[-14,3],[-20,0],[-9,-3],[-19,-14],[-6,-5],[-18,-27],[-8,-9],[-12,-1],[-6,0],[-39,-5],[-1,0],[-45,-7],[-1,-1],[-16,-15],[-7,-12],[0,-13],[0,-29],[6,-14],[10,-13],[11,-12],[17,-26],[8,-14],[1,-10],[-2,-8],[-6,-14],[-10,-16],[-31,-19],[-38,-24],[-2,-1],[-1,-10],[-1,-11],[-5,-13],[-6,-11],[-1,-1],[-16,-12],[-36,-15],[-13,-11],[-34,-39],[-24,-33],[-1,-7],[-4,-48],[-2,-29],[-3,-31],[0,-17],[-2,-8],[-2,-19],[-2,-20],[-1,-8],[-1,-9],[-2,-39],[-2,-9],[-1,-7],[-9,-16],[-9,-17],[-2,-2],[-19,-19],[-36,-23],[-11,-6],[-23,-12],[-10,-7],[-5,-10],[-18,-3],[-18,-2],[-10,-1],[-12,-2],[-46,-6],[-30,-6],[-15,-6],[-26,-10],[-47,-20],[-10,-7],[-4,-5],[-1,-9],[16,-33],[0,-9],[-5,-5],[-10,-6],[-91,-35],[-20,-9],[-48,-32],[-7,-5],[-9,-9],[-10,-12],[-7,-8],[0,-5],[-2,-5],[-9,-10],[-20,-15],[-21,-17],[-3,-2],[-6,-3],[-12,-3],[-12,-1],[-10,4],[-6,9],[-45,14],[-22,6],[-21,5],[-11,0],[-27,2],[-11,-1],[-6,-4],[0,-13],[3,-7],[13,-29],[4,-7],[45,-73],[-48,-83],[-17,-18],[-7,-12],[-6,-15],[0,-11],[2,-5],[6,-6],[10,-4],[14,0],[39,9],[15,0],[6,-2],[67,-58],[6,-9],[2,-11],[-1,-13],[-29,-119],[-16,-50],[-4,-19],[-2,-8],[-5,-39],[-3,-48],[-1,-6],[1,-8],[0,-16],[-1,-10],[-7,-14],[-5,-5],[-3,-2],[-4,-1],[-30,-4],[-9,-1],[-43,11],[-17,5],[-18,-3],[-4,-4],[-3,-3],[-4,-3],[-3,-10],[1,-7],[3,-13],[3,-9],[6,-7],[8,-9],[17,-18],[2,-4],[4,-6],[5,-10],[3,-7],[1,-21],[-17,-29],[0,-1],[-2,-2],[-10,-8],[-3,-2],[-7,-5],[-34,-7],[-41,-9],[-30,-1],[-27,3],[-87,16],[-23,-3],[-8,-3],[-21,-8],[-19,-13],[-5,-4],[-6,-5],[-34,-36],[-14,-22],[-5,-6],[-12,-12],[-16,-13],[-7,-5],[-30,-20],[-31,-19],[-12,-6],[-14,-7],[-14,-6],[-11,-5],[-21,-8],[-34,-22],[-15,-14],[-6,-6],[-2,-2],[-8,-10],[-4,-4],[-1,-3],[-7,-17],[-1,-30],[2,-19],[1,-9],[9,-29],[6,-22],[11,-23],[-12,3],[-55,14],[-111,29],[-195,50],[-11,3],[-54,14],[-345,88],[-90,23],[-39,10],[-246,64],[-56,14],[-119,31],[-241,62],[-153,42],[-597,154],[-59,15],[-32,8],[-21,4],[-37,10],[-76,20],[-71,18],[-523,134],[-462,119],[-180,46],[-109,19],[-18,4],[-51,12],[-371,95],[-42,11],[-10,3],[-52,13],[-418,110],[-104,27],[-59,15],[-9,2],[-45,11],[-45,12],[-9,2],[-444,115],[-29,8],[-352,90],[-23,6],[-85,23],[-149,38],[-102,26],[-371,94],[-83,21],[-57,15],[-27,6],[-311,79],[-41,10],[-40,11],[-301,76],[-111,28],[-39,10],[-6,2],[-39,10],[-48,12],[-8,2],[-85,21],[-175,45],[-12,3],[-4,1],[-6,1],[-23,6],[-11,1],[-17,2],[-27,0],[-4,0],[-2,0],[-14,0],[-35,0],[-11,0],[-47,0],[-16,0],[-16,0],[-4,0],[-78,0],[-5,0],[-47,0],[-3,0],[-18,0],[-26,0],[-51,0],[-27,0],[-12,0],[-19,0],[-23,0],[-87,0],[-102,0],[-64,0],[-25,0],[-35,1],[-33,0],[-29,0],[-24,0],[-17,0],[-40,-1],[-55,0],[-38,-1],[-23,0],[-12,0],[-36,0],[-12,0],[-33,1],[-4,0],[-16,0],[-32,0],[-42,0],[-22,0],[-36,0],[-36,1],[-32,-1],[-58,1],[-2,0],[-55,0],[-15,0],[-1,0],[-10,0],[-26,0],[-29,0],[-3,0],[-64,0],[-35,0],[-30,-1],[-22,0],[-31,0],[-18,0],[-11,0],[-5,0],[-3,0],[-10,0],[-3,0],[-22,1],[-20,0],[-2,0],[-16,0],[-10,0],[-9,0],[-11,0],[-12,0],[-30,0],[-34,0],[-49,0],[-66,0],[-18,0],[-22,0],[-31,0],[-49,-1],[-27,0],[-26,0],[-11,0],[-203,-3],[-97,1],[-141,1],[-37,0],[-41,0],[-36,0],[-23,0],[-83,0],[-34,0],[-13,0],[-51,0],[-19,0],[-132,0],[-106,0],[-112,-1],[-62,-1],[-275,1],[-223,0],[-90,0],[-20,0],[-194,0],[-22,0],[-41,0],[-100,0],[-309,1],[-341,0],[-131,0],[-46,-1],[-456,0],[-356,-1],[-173,0],[-1,0],[-49,0],[-44,0],[-18,0],[-100,0],[-26,0],[-46,0],[-13,0],[-34,0],[-16,0],[-14,0],[-4,0],[-281,-1],[-597,0],[-152,0],[-36,0],[-6,0],[-13,0],[-52,-1],[-5,0],[-23,0],[-12,0],[-9,0],[-24,0],[-120,0],[-152,0],[-25,0],[-330,0],[-329,-1],[-221,-1],[-328,-1],[-150,-1],[-175,-1],[-124,0],[-303,-1],[-137,-1]],[[25689,47021],[8,29],[0,89],[-1,135],[-1,456],[-1,274],[0,174],[0,50],[0,124],[-1,282],[-1,186],[0,100],[-1,270],[7,49],[3,402],[0,48],[-3,50],[-1,14],[0,125],[0,68],[0,162],[0,52],[-1,276],[0,7],[1,3],[0,37],[0,9],[-1,43],[0,4],[-4,178],[0,28],[1,81],[2,82],[1,37],[-1,311],[0,110],[0,60],[-5,68],[0,233],[1,77],[0,114],[0,63],[0,31],[0,21],[1,209],[0,90],[1,256],[0,51]],[[25693,52639],[1,51],[4,956],[0,176],[0,59],[1,394],[0,87],[0,65],[0,50],[0,57],[0,113],[1,344],[0,132],[0,172],[1,126],[0,46],[0,6],[0,13],[0,27],[0,11],[0,168],[0,158],[-5,296],[-1,127],[0,157],[0,147],[0,51],[-1,416],[0,91],[-1,50],[0,119],[0,15],[0,11],[0,22],[0,10],[0,47],[0,3],[0,172],[0,40],[0,11],[-1,46],[0,34],[0,7],[0,25],[1,49],[7,258],[-1,488],[-2,604],[0,14],[0,32],[0,2],[-1,48],[-1,311],[0,83],[0,70],[-2,467],[0,54],[7,30],[1,569],[1,67],[0,44],[0,11],[0,54],[1,359],[0,39],[1,403],[1,106],[-2,84],[0,34],[0,64],[0,90],[-4,280],[2,80],[-1,907],[-1,265],[3,97],[1,222],[2,337],[0,195],[2,101],[0,114],[0,19],[0,66],[0,171],[-1,501],[0,38],[0,12],[0,51],[0,273],[0,66],[-1,266],[0,407],[0,44],[0,175],[-1,109],[0,185],[0,172],[0,149],[0,205],[-1,295],[0,1],[0,46],[0,45],[0,3],[0,21],[0,250],[0,22],[0,94],[0,31],[0,4],[0,89],[0,37],[-1,82],[0,15],[0,348],[-1,188],[0,237],[-1,98],[-1,398],[0,31],[-2,384],[-1,226],[0,61],[-1,283],[-1,299],[0,183],[-1,268],[-2,392],[0,136],[0,49],[0,7],[-1,57],[0,43],[-1,431],[-1,42],[0,247],[-2,88],[-4,260],[1,137],[0,12],[0,36],[0,37],[0,11],[0,8],[0,17],[0,23],[-1,120],[0,94]],[[83444,39577],[0,-1],[0,-48],[0,-3],[0,-716],[0,-110],[0,-29],[0,-75],[0,-51],[0,-49],[0,-23],[0,-26],[0,-22],[0,-49],[0,-10],[0,-118],[0,-26],[0,-207],[0,-174],[0,-221],[-387,1],[-771,3],[-47,1],[-373,0],[-244,-3],[-344,-5],[-29,0],[-209,0],[-526,-17],[15,-16],[5,-17],[-6,-20],[16,-33],[-25,-28],[8,-27],[-1,-27],[-2,-19],[8,-31],[-18,-13],[-36,-12],[-25,-12],[-14,-7],[-5,-5],[-8,-7],[-21,-8],[-21,-4],[-23,10],[-11,4],[-23,8],[-6,1],[-17,-3],[-8,-4],[-2,-6],[1,-12],[4,-5],[4,-9],[0,-11],[-3,-4],[-7,-3],[-17,3],[-12,6],[-15,10],[-39,37],[-2,3],[-29,28],[-5,5],[-9,0],[-12,-3],[-10,-8],[-9,-13],[-20,-30],[-4,-13],[0,-24],[11,-27],[6,-7],[2,-2],[28,-22],[5,-6],[3,-11],[-3,-9],[0,-1],[-1,-1],[-6,-3],[-12,0],[-27,8],[-4,1],[-5,1],[-22,3],[-20,2],[-6,6],[-9,3],[-17,1],[-14,-4],[-2,0],[-8,-6],[-8,-13],[-1,-2],[-16,-17],[-8,-7],[-12,-3],[-6,-4],[-36,-8],[-3,0],[-32,-2],[-7,1],[-24,12],[-9,10],[1,9],[-3,5],[-9,5],[-11,3],[-13,0],[-4,-1],[-3,-2],[-9,-7],[-17,-29],[0,-3],[-20,-26],[-8,-9],[-2,-2],[-20,-21],[-8,-4],[-41,-11],[-14,0],[-12,5],[-6,11],[-1,16],[-4,20],[-6,12],[-32,21],[-85,56],[-11,7],[-18,7],[-17,-2],[-7,-6],[-4,-3],[-10,-8],[-17,-11],[-56,-39],[-64,13],[-8,-7],[-12,-7],[-67,-38],[-10,-6],[-32,-15],[-23,-6],[-13,-1],[-10,2],[-8,2],[-9,5],[-8,15],[-4,2],[-9,4],[-24,6],[-19,-2],[-8,-4],[-10,-7],[-21,-21],[-7,-5],[-13,-3],[-127,-16],[-11,-1],[-14,4],[-8,4],[-69,50],[-8,10],[-3,2],[-5,11],[-2,8],[2,26],[-12,5],[-12,1],[-23,-8],[-46,-15],[-6,-4],[-5,-8],[-65,-49],[-141,-103],[-40,-21],[-19,-9],[-48,-12],[-33,-4],[-96,-2],[-9,2],[-87,25],[-50,36],[-12,13],[-2,0],[-13,7],[-15,3],[-17,0],[-19,-12],[-23,-9],[-111,-43],[-28,-13],[-43,-19],[-43,-18],[-2,-1],[-20,-1],[-9,7],[-23,8],[-31,5],[-18,-1],[-7,-1],[-1,0],[-44,-9],[-44,-9],[-13,-10],[-7,-8],[-3,-11],[0,-11],[3,-6],[16,-17],[8,-14],[0,-11],[-2,-6],[-7,-8],[-16,-11],[-31,-4],[-52,7],[-6,-2],[-2,-5],[0,-8],[34,-60],[1,-16],[-3,-11],[-9,-22],[-33,-65],[-15,-29],[-38,-75],[-1,-2],[-7,-8],[-6,-3],[-14,1],[-10,3],[-23,14],[-9,2],[-2,0],[-10,0],[-6,-2],[-20,-12],[-6,-6],[-18,-43],[-3,-5],[-13,-15],[-52,-29],[-84,-25],[-18,-2],[-10,8],[-3,6],[2,7],[7,11],[0,9],[-2,5],[-6,5],[-12,4],[-2,1],[-72,25],[-18,5],[-49,13],[-41,6],[-19,8],[-9,6],[-12,15],[1,10],[10,15],[1,2],[2,4],[0,4],[-7,5],[-6,3],[-7,2],[-13,2],[-27,-4],[-6,-13],[-15,-30],[-11,-19],[-14,-10],[-5,-1],[-17,5],[-45,12],[-4,2],[-24,10],[-14,3],[-2,0],[-7,-2],[-118,-33],[-75,-36],[-20,-13],[-10,-5],[-19,-1],[-5,1],[-3,0],[-12,5],[-9,8],[-11,19],[-1,-2],[-15,-27],[-11,-18],[-13,-24],[-8,-22],[-5,-12],[-7,-8],[-1,-2],[-17,-14],[-22,-16],[-5,-6],[-4,-12],[-8,-45],[-1,-1],[-1,-9],[0,-37],[-5,-6],[-7,-7],[-15,-12],[-4,-2],[-2,1],[-7,0],[-44,7],[-8,3],[-4,7],[-27,19],[-27,14],[-14,0],[-7,-1],[-10,-2],[-35,-10],[-37,-29],[-6,-4],[-10,-7],[-16,-7],[-23,-4],[-49,-29],[-3,-1],[-38,-22],[-13,-17],[-8,-25],[-7,-21],[0,-24],[0,-2],[2,-23],[3,-45],[6,-18],[3,-7],[10,-14],[-3,-11],[-2,-14],[-11,-15],[-9,-5],[-4,-5],[-7,-3],[-8,-4],[-2,-1],[-26,-12],[-6,-3],[-18,-35],[-3,-7],[-1,-6],[-3,-22],[-1,-32],[6,-49],[8,-47],[10,-19],[6,-19],[2,-6],[1,-2],[-1,-23],[-13,-15],[-2,-2],[-6,-13],[-14,-27],[-1,-3],[2,-19],[1,-28],[1,-2],[7,-14],[5,-11],[1,-4],[0,-3],[1,-2],[1,-7],[2,-12],[0,-5],[1,-1],[0,-3],[0,-4],[1,-3],[0,-32],[-1,-20],[11,-26],[23,-52],[5,-14],[8,-50],[4,-26],[-11,-21],[-2,-5],[-7,-13],[-6,-13],[-6,-11],[-7,-14],[-2,-4],[-9,-12],[0,-18],[2,-11],[2,-6],[4,-12],[9,-24],[2,-1],[2,-8],[3,-18],[1,-26],[-2,-6],[-7,-24],[-6,-15],[-4,-5],[-17,-44],[-6,-17],[-14,-39],[-2,-5],[-3,-4],[-19,-25],[-4,-4],[4,-9],[1,-1],[13,-27],[2,-4],[1,-2],[27,-29],[0,-7],[0,-12],[-2,-5],[-19,-27],[-1,-1],[-4,-4],[-1,-1],[-19,-12],[-1,-1],[-9,-3],[-13,-3],[-29,-5],[-4,-1],[-13,-5],[-2,-1],[-3,-8],[0,-2],[-2,-6],[-4,-10],[-1,-3],[-1,-4],[-1,-1],[-4,-14],[-2,-18],[0,-24],[12,-4],[6,-2],[8,-6],[2,-8],[1,-9],[0,-13],[-4,-35],[-4,-15],[-7,-21],[-2,-9],[-5,-16],[12,-15],[11,-12],[8,-9],[12,-15],[2,-6],[2,-5],[2,-4],[0,-13],[4,-18],[4,-16],[0,-2],[5,-10],[11,-14],[20,-26],[0,-1],[0,-12],[0,-35],[0,-12],[0,-37],[0,-11],[7,-47],[14,-14],[8,-8],[19,-16],[2,-1],[5,-2],[32,-9],[8,-2],[-1,-9],[-3,-35],[0,-3],[-1,-8],[-5,-43],[0,-4],[1,-1],[38,-25],[15,-9],[38,-25],[1,-2],[34,-29],[0,-3],[2,-26],[2,-19],[1,-26],[4,-30],[1,-3],[5,-45],[-8,-46],[-1,-5],[0,-22],[2,-13],[8,-19],[9,-11],[8,-6],[11,-2],[27,1],[5,0],[23,-7],[13,-6],[4,-2],[6,-4],[54,-47],[18,-12],[7,-5],[27,-19],[4,-3],[7,-5],[4,-2],[26,-16],[3,-2],[3,-2],[1,-7],[2,-6],[9,-54],[1,-5],[-4,-18],[2,-15],[2,-12],[3,-15],[4,-22],[28,-52],[17,-18],[8,-47],[49,-23],[2,-1],[14,-15],[12,-39],[34,-44],[39,-32],[51,-3],[6,-8],[30,-36],[31,-37],[15,-19],[-18,-31],[-18,-7],[-21,1],[-7,11],[-7,10],[-22,0],[0,-29],[-2,-4],[-8,-21],[-21,-25],[-16,-17],[-55,-7],[-17,1],[-18,1],[-17,8],[-8,2],[-12,3],[-15,-14],[-1,-2],[-2,0],[-6,-1],[-5,-1],[-9,-1],[-26,-5],[-15,20],[-7,9],[-8,11],[-9,-3],[-18,-6],[-12,-4],[-48,-8],[-5,-2],[-9,-3],[-16,-6],[-8,-3],[-20,-7],[-8,-25],[-12,-5],[-6,-3],[-2,-1],[-15,-9],[-23,-13],[-36,24],[-23,-26],[-77,21],[-57,8],[-30,9],[-5,21],[-5,19],[-14,19],[-6,6],[-14,16],[-1,1]],[[75675,32834],[-1,0],[-29,2],[-21,2],[-10,10],[-1,2],[-14,15],[-10,31],[-35,-7],[-47,-26],[-96,-67],[0,-4],[-2,-14],[8,-25],[4,-7],[26,-42],[0,-2],[0,-38],[-20,-27],[-32,-14],[-20,-4],[-74,-3],[-32,11],[-63,4],[-37,-14],[-27,1],[-60,12],[-53,0],[-51,6],[-48,14],[-40,22],[-1,0],[-1,1],[-3,2],[-3,1],[-17,9],[-49,13],[-4,1],[-32,-4],[-12,-2],[-35,-29],[-3,-3],[-37,-29],[-29,-4],[-18,-2],[-38,-5],[-16,-4],[-14,-4],[-23,-26],[-34,-25],[-3,-3],[-35,-25],[-30,-20],[-12,-1],[-21,-2],[-22,-2],[-18,4],[-10,2],[-16,4],[-2,-1],[-7,-1],[-11,-3],[-11,-2],[-10,-19],[-2,-4],[-1,-3],[-2,-12],[-2,-7],[-1,-7],[-3,-13],[-1,-7],[-5,-27],[0,-1],[0,-1],[-20,-15],[-12,-1],[-10,-2],[-5,0],[-29,-15],[-20,-17],[-4,-6],[-4,-15],[-2,-6],[-1,-15],[4,-12],[13,-17],[6,-7],[13,-13],[25,-11],[13,-5],[11,-3],[7,1],[14,6],[6,6],[4,8],[11,13],[13,0],[35,-19],[1,-1],[7,-3],[7,-10],[1,-11],[-6,-13],[-12,-12],[-10,-5],[-25,-7],[-13,-4],[-16,-1],[-28,5],[-19,10],[-32,17],[-10,4],[-9,-2],[-35,17],[-75,36],[-5,9],[-23,39],[-5,7],[-24,41],[-22,3],[-8,-3],[-5,-3],[-8,-15],[-21,-40],[-3,-6],[3,-36],[-2,-9],[-6,-20],[-10,-17],[-3,-7],[-1,-1],[-2,-2],[-6,-10],[-10,-30],[-3,-11],[7,-25],[1,-3],[3,-17],[0,-23],[-8,-8],[-37,-10],[-7,0],[-1,1],[-27,10],[-6,4],[-13,16],[-5,10],[-9,8],[-5,2],[-20,1],[-25,-2],[-5,-3],[-2,-1],[-24,-23],[-8,-8],[-2,-1],[-2,0],[-8,-11],[1,-11],[6,-11],[0,-11],[-1,-2],[-3,-15],[-10,-19],[-10,-9],[-9,-5],[-13,-1],[-6,1],[-9,1],[-18,4],[-9,1],[-11,-5],[-4,-15],[-1,-2],[-18,-24],[-12,-13],[-63,-8],[-13,-2],[-18,2],[-12,3],[-34,14],[-4,4],[-3,6],[-10,9],[-19,11],[-23,-1],[-20,-4],[-4,-4],[-2,-14],[-5,-47],[-30,-12],[-7,-5],[-2,-4],[-2,-3],[-13,-25],[-7,-17],[-18,-36],[-8,-8],[-33,-21],[-38,-17],[-31,-13],[-7,-3],[-5,0],[-42,0],[-5,2],[-10,5],[-8,7],[-16,13],[-63,53],[-61,37],[-21,13],[-18,13],[0,2],[-1,2],[-9,9],[-11,5],[-21,3],[-3,1],[-125,15],[-26,2],[-62,-4],[-13,-2],[-64,-10],[-1,0],[-19,-4],[-28,-4],[-28,1],[-18,0],[-19,-4],[-14,-7],[-5,-5],[-40,-54],[-8,-12],[-4,-11],[-1,-18],[-6,-37],[-5,-15],[-10,-9],[-35,-26],[-45,-44],[-30,-28],[-42,-49],[-67,-86],[-22,-29],[-11,-16],[-17,-9],[-3,-2],[-4,-4],[-8,-8],[0,-1],[-6,-16],[-4,-15],[-4,-3],[-9,-7],[-1,-1],[-3,-1],[-21,-11],[-6,-3],[-13,0],[-10,0],[-11,4],[-21,14],[-5,5],[-5,16],[0,7],[7,6],[5,3],[5,2],[1,2],[2,2],[0,10],[-2,4],[-12,29],[-7,14],[-45,13],[-5,2],[-13,-2],[-6,-4],[-13,-9],[-29,-20],[-8,-9],[-5,-6],[-20,-24],[-6,-5],[-75,-68],[-4,4],[-12,1],[-21,-11],[-3,-4],[-13,-40],[-2,-9],[1,-25],[5,-15],[0,-11],[-20,-74],[-1,-2],[-1,-2],[-13,-15],[-8,-3],[-23,-62],[-7,-20],[-5,-27],[1,-40],[0,-7],[1,-36],[0,-5],[-1,0],[-28,3],[-18,1],[-28,2],[-8,1],[-7,0],[-32,-4],[-14,-2],[-11,-2],[-52,-28],[-9,-7],[-3,-8],[-1,-7],[1,-7],[9,-6],[12,-6],[20,-5],[13,2],[13,4],[10,0],[14,-8],[7,-8],[7,-10],[10,-33],[0,-9],[-1,-2],[-3,-12],[-6,-11],[-14,-15],[-1,-3],[-14,-9],[-27,-15],[-4,-2],[-13,-6],[-59,22],[-18,10],[-40,25],[-8,8],[-8,14],[-10,9],[-9,4],[-22,13],[-15,7],[-5,1],[-23,-4],[-9,-1],[-14,-3],[-23,-4],[-9,-3],[-26,-9],[-9,-4],[-2,-1],[-2,-1],[-5,-2],[-4,-3],[-3,-9],[-4,-22],[-11,-28],[-3,-4],[-57,-27],[-59,-21],[-3,-5],[-19,-49],[-1,-3],[-2,-3],[-1,-2],[-2,-3],[-2,-2],[-2,-2],[-3,-3],[-15,-13],[-12,-10],[-7,-34],[21,-42],[23,-49],[2,-2],[2,-2],[23,-27],[20,-23],[3,-2],[1,-3],[2,-2],[1,-3],[2,-3],[0,-1],[17,-44],[23,-61],[1,-2],[1,-3],[1,-3],[0,-3],[0,-3],[0,-4],[0,-9],[2,-18],[2,-47],[-1,-8],[-3,-12],[-3,-13],[0,-14],[0,-2],[0,-7],[-18,-63],[-3,-5],[-8,-2],[-50,25],[-15,-7],[-3,-1],[-3,-1],[-4,-1],[-1,0],[-45,-7],[-32,-35],[-31,-35],[-2,-9],[11,-38],[4,-12],[1,-2],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-28,-71],[-11,-32],[-1,-2],[-9,-25],[-6,-9],[-5,-6],[-37,-15],[-7,-2],[-3,-1],[-34,-12],[-10,-3],[-15,-4],[-25,-21],[-10,-8],[-1,-1],[-1,-1],[-3,-2],[-1,-1],[-9,-5],[-33,-21],[-40,-25],[-9,-20],[-11,-23],[-3,-5],[0,-2],[-1,-3],[-2,-3],[-2,-2],[-2,-3],[-1,-1],[-1,-1],[-3,-4],[-18,-37],[-3,-5],[-43,-18],[-30,-14],[-35,-46],[-2,-2],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-3,-1],[-3,-2],[-2,0],[-81,-37],[-1,0],[-2,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-4,0],[-40,3],[-16,-34],[-4,-9],[-16,-34],[2,-11],[4,-36],[1,-3],[6,-47],[1,-30],[-9,-63],[-1,-2],[-8,-20],[-1,-1],[-7,-8],[-13,-10],[-4,-3],[-4,-2],[-12,-4],[-31,-3],[-46,-5],[-97,-9],[-18,-2],[-30,-2],[-1,-1],[-4,1],[-12,-1],[-35,17],[-4,7],[-10,17],[-7,9],[-7,12],[-2,4],[-7,11],[-17,28],[-4,6],[-6,9],[-21,34],[-69,110],[-15,24],[-23,39],[-3,4],[-19,33],[-9,16],[-11,17],[-9,15],[-33,56],[-14,22],[-21,36],[-82,135],[-82,136],[-34,58],[-10,16],[-39,64],[-14,24],[-87,144],[-74,123],[-102,171],[-35,57],[-139,232],[-142,235],[-91,151],[-89,149],[-29,48],[-26,44],[-4,6],[-22,38],[-22,36],[-59,99],[-29,53],[-86,132],[-81,137],[-56,96],[-134,227],[-42,62],[-138,206],[-23,40],[-11,19],[-37,63],[-53,92],[-104,177],[-28,45],[-14,24],[-213,346],[-85,139],[-71,117],[-92,155],[-17,30],[-32,45],[-18,61],[-18,60],[-116,390],[-14,49],[-15,48],[-114,381],[-14,46],[-70,228],[-35,122],[-42,142],[-14,45],[-15,49],[-89,172],[-21,42],[-7,13],[-15,29],[-69,133],[-32,62],[-67,130],[-36,70],[-114,213],[-130,255],[-98,190],[-91,176],[-194,376],[-23,46],[-3,5],[-22,42],[-119,232]],[[65436,37622],[-32,63],[-28,54],[-42,85],[-10,17],[-199,360],[-9,20],[-88,158],[-35,67],[-88,170],[-69,132],[-24,45],[-27,50],[-3,6],[-6,11],[-29,56],[-15,30],[-7,13],[-10,19],[-65,120],[-14,29],[-118,228],[-16,32],[-28,53],[-33,63],[-11,19],[-96,179],[-9,18],[-76,148],[-11,23],[-20,38],[-79,150],[-30,56],[-22,42],[-36,69],[-14,28],[-87,164],[-147,279],[-48,92],[-104,198],[-52,99],[-18,34],[-55,106],[-22,42],[-10,18],[-7,14],[-1,1],[-3,7],[-2,3],[-11,21],[-28,-19],[-21,-14],[-7,-4],[-3,-2],[-14,-14],[-16,-9],[-4,-1],[-22,-13],[-8,-5],[-22,-13],[-12,-3],[-9,-3],[-10,-3],[-11,-5],[-3,-1],[-11,-3],[-10,-1],[-5,-1],[-16,-8],[-13,-7],[-18,-9],[-10,-6],[-11,-7],[-17,-26],[-7,-22],[-6,-24],[-17,-41],[-45,-26],[-26,2],[-15,3],[-16,-2],[-25,-4],[-18,-9],[-42,-34],[-14,-13],[-13,-11],[-5,-5],[-15,-18],[-16,-17],[-18,-16],[-5,-4],[-13,-11],[-20,-18],[-62,-53],[-39,-41],[-17,-28],[-17,-35],[-7,-15],[-3,-6],[-30,-28],[-12,-11],[-12,-11],[-14,-6],[-25,-11],[-17,-5],[-8,-2],[-23,-9],[-5,-2],[-10,-12],[-7,-8],[-1,-7],[-2,-12],[-20,-41],[-1,-1],[-1,-3],[6,-73],[17,-64],[12,-46],[-3,-25],[-16,-19],[-17,-19],[-2,-1],[-17,-9],[-31,-22],[-7,-6],[-43,-39],[-7,-8],[-23,-29],[-1,-11],[-3,-37],[-9,-9],[-17,-21],[-10,-6],[-1,-2],[-18,-22],[-17,-20],[-11,-14],[0,-4],[0,-1],[-13,-20],[-22,9],[-8,3],[-3,5],[-1,2],[-5,7],[-6,9],[-18,9],[-1,1],[-11,23],[-16,12],[-21,-4],[-2,19],[-30,17],[-15,21],[-4,22],[22,15],[-12,15],[-19,5],[-19,11],[-14,12],[-29,12],[-24,6],[-4,23],[-10,24],[-24,9],[-20,11],[-17,3],[-22,12],[-20,17],[-23,0],[-23,7],[-18,17],[-14,19],[-24,12],[-17,-9],[-12,-15],[-25,-17],[-26,-6],[-15,-13],[-21,-1],[-21,1],[-26,13],[-19,6],[-18,7],[-19,15],[-13,16],[-19,12],[-14,24],[-20,12],[-16,10],[-12,12],[-14,12],[-9,20],[-3,22],[-5,18],[-9,17],[-12,13],[-37,35],[-4,22],[0,20],[-19,4],[-23,4],[-5,19],[-12,16],[-13,18],[-18,18],[-13,17],[-12,15],[9,18],[-22,11],[-24,8],[-14,24],[-10,21],[-14,12],[-22,11],[-12,17],[-5,20],[3,23],[0,24],[4,32],[-8,17],[-21,12],[-19,1],[-27,6],[-51,20],[-30,18],[-35,23],[-20,14],[-21,14],[-15,19],[-10,24],[-12,26],[-17,20],[-14,15],[-8,20],[-24,13],[-19,-2],[-17,12],[-9,16],[-18,12],[-19,21],[-22,18],[-17,26],[-19,28],[-10,23],[-18,12],[-15,9],[-27,13],[-24,8],[-19,3],[-21,9],[-19,7],[-18,4],[-19,-2],[-18,-4],[-9,18],[-19,8],[-10,15],[-28,21],[-32,11],[-10,27],[-18,17],[-15,40],[-1,19],[1,21],[-11,28],[-10,16],[-13,19],[-4,17],[-7,19],[-21,19],[-9,24],[2,24],[3,25],[7,32],[0,19],[-12,23],[-2,34],[-3,22],[2,24],[-3,23],[12,16],[1,2],[-4,23],[18,16],[4,17],[-22,14],[-16,12],[-14,5],[-5,2],[-8,21],[-19,6],[-22,6],[-15,17],[-8,18],[-1,20],[-23,8],[-10,15],[-16,20],[-22,12],[-16,10],[-14,11],[-21,7],[-19,5],[1,19],[-18,-7],[-19,-2],[-12,20],[-12,24],[4,20],[-3,27],[-14,15],[-28,24],[-20,12],[-26,4],[-29,14],[-26,5],[-21,5],[-20,3],[-23,28],[-18,2],[-25,10],[-32,4],[-16,16],[2,21],[5,18],[-8,18],[-46,8],[-2,-1],[-20,-8],[-33,-9],[-19,2],[-5,-7],[-6,-10],[-20,-1],[-22,11],[-18,3],[-18,6],[-30,18],[8,26],[1,23],[18,6],[16,17],[5,13],[4,12],[9,17],[4,10],[4,7],[9,21],[-8,23],[10,15],[-6,17],[-13,18],[-24,2],[-22,0],[-22,11],[-4,25],[-7,17],[-8,9],[-4,4],[1,2],[4,16],[-8,20],[-10,22],[5,21],[27,23],[15,10],[-15,24],[-18,13],[-15,16],[4,19],[10,20],[14,22],[15,19],[18,18],[5,25],[20,6],[21,5],[19,11],[15,17],[-10,16],[-9,17],[-1,25],[16,13],[17,21],[15,10],[12,13],[7,23],[-7,25],[-16,21],[-18,6],[-14,16],[-17,17],[-18,14],[-3,21],[-17,11],[-19,12],[-16,23],[-19,13],[-7,18],[1,18],[16,10],[9,22],[9,19],[8,17],[11,14],[3,19],[-3,26],[12,23],[10,24],[-5,21],[17,5],[21,-8],[20,2],[25,14],[24,11],[18,-9],[24,-1],[33,4],[20,8],[19,19],[-8,19],[1,24],[-2,22],[-5,22],[-16,13],[-25,9],[-17,12],[-23,15],[-22,21],[-6,30],[-16,13],[-22,14],[-8,17],[-35,22],[-20,5],[-17,1],[-21,1],[-32,5],[-28,15],[-21,12],[-21,7],[15,12],[13,25],[-19,8],[-25,14],[-22,16],[-13,18],[5,19],[-2,24],[-3,26],[14,20],[9,18],[8,21],[3,20],[5,21],[10,20],[15,18],[0,19],[1,19],[15,12],[10,20],[4,20],[16,15],[23,12],[14,15],[0,19],[-4,17],[-15,17],[-20,7],[-32,10],[-16,8],[-11,18],[-7,21],[-19,15],[-23,0],[-14,18],[10,16],[-10,19],[4,21],[-4,20],[-16,14],[-5,18],[16,13],[10,19],[-19,10],[-20,7],[-28,3],[-22,13],[-28,4],[-25,7],[-29,7],[1,20],[2,4],[6,13],[-17,10],[-14,6],[-8,3],[-8,16],[-11,-1],[-13,0],[-25,-5],[-15,12],[-14,18],[-5,19],[-1,18],[-8,17],[6,20],[17,23],[6,17],[2,5],[-10,18],[5,17],[-7,22],[-11,18],[-3,3],[-11,15],[1,21],[7,18],[10,16],[-6,19],[11,23],[14,17],[17,12],[12,5],[14,6],[3,1],[16,11],[4,22],[-11,14],[-5,19],[2,19],[7,18],[-7,20],[16,14],[14,15],[2,17],[5,17],[0,20],[17,16],[7,19],[-12,18],[-18,9],[-22,7],[-20,1],[-19,-1],[-21,6],[-15,17],[-24,2],[-26,6],[-23,0],[-20,7],[-33,17],[-34,12],[-39,10],[-17,8],[-17,11],[-20,-4],[-17,-8],[-21,-13],[-25,-12],[-17,-20],[-11,-26],[-12,-17],[-15,-14],[-19,-14],[-17,-16],[-15,-17],[-21,-12],[-25,4],[-26,4],[-20,6],[-22,5],[-21,12],[-22,9],[-21,12],[-23,-3],[-21,6],[-19,6],[-14,16],[0,20],[7,19],[-7,16],[0,22],[11,17],[7,18],[11,19],[9,22],[-7,23],[-14,13],[-17,8],[-13,18],[8,19],[20,8],[24,2],[19,1],[15,10],[-7,18],[-6,18],[-2,11],[-1,7],[10,20],[4,18],[0,15],[0,8],[-16,13],[-11,9],[-5,5],[-1,19],[-13,17],[-8,5],[-13,9],[-7,16],[-3,21],[-6,20],[3,22],[10,21],[1,23],[1,21],[21,15],[16,28],[20,18],[-6,20],[-16,19],[-19,12],[-24,0],[-13,13],[-4,21],[8,19],[2,22],[-7,20],[21,8],[15,9],[14,17],[10,23],[4,41],[7,18],[11,15],[21,10],[20,3],[14,16],[17,15],[16,15],[17,24],[19,8],[17,5],[21,-1],[16,18],[16,8],[27,8],[13,14],[3,21],[15,12],[3,19],[-6,19],[-16,18],[-16,9],[-19,-2],[-19,0],[-19,13],[-14,18],[-19,16],[-22,15],[-14,21],[12,19],[14,15],[11,19],[0,21],[-5,18],[-14,16],[-19,8],[-18,5],[-19,20],[-3,18],[-20,11],[-36,-6],[-24,-9],[-19,16],[-26,19],[-39,41],[-18,-8],[-22,-16],[-29,-20],[-23,9],[-26,13],[-21,10],[-23,5],[-12,0],[-7,0],[-16,12],[-13,16],[-16,-10],[-29,-18],[-16,-10],[-8,-13],[-4,-5],[-7,25],[-29,0],[-13,-17],[-13,12],[-20,-13],[-21,-12],[-27,-7],[-25,4],[-34,4],[-24,-17],[-19,8],[-31,-3],[-28,-2],[-41,-6],[-18,-9],[-14,-17],[-53,-2]],[[25689,47021],[0,-662],[-1,-330],[0,-95],[0,-49],[0,-50],[0,-26],[0,-57],[0,-284],[0,-129],[0,-25],[0,-20],[0,-6],[0,-50],[0,-88],[0,-18],[0,-27],[0,-5],[0,-41],[0,-9],[-1,-130],[0,-89],[6,-147],[0,-356],[2,-287],[-10,-417],[-6,-602],[7,-405],[0,-125],[0,-30],[0,-100],[0,-51],[-1,-428],[0,-25],[0,-27],[0,-331],[0,-408],[0,-428],[0,-106],[0,-116],[0,-18],[-1,-222],[8,-518],[0,-42],[4,-216],[0,-4],[0,-16],[1,-28],[0,-1],[-1,-42],[0,-5],[-1,-109],[-1,-85],[-3,-316],[0,-14],[-1,-50],[0,-51],[-1,-23],[-12,-462],[0,-34],[1,-224],[0,-57],[1,-48],[1,-262],[0,-77],[1,-379],[1,-366],[1,-74],[1,-445],[2,-195]],[[25686,36059],[-293,0],[-163,-5],[-268,1],[-399,-2],[-154,-1],[-153,-1],[-313,-2],[-8,9],[-955,-1],[-142,0],[-21,0],[-22,1],[-107,0],[-133,0],[-71,-1],[-328,0],[-299,0],[-218,0],[-43,0],[-967,4],[-213,0],[-115,0],[-146,0],[-82,0],[-151,0],[-270,0],[-449,-1],[-514,0],[-123,0],[-103,-1],[-89,1],[-710,5],[-726,-2],[-199,-4],[-155,1],[-41,0],[-38,0],[-47,-1],[-5,0],[-92,0],[-22,0],[-42,0],[-127,1],[-33,0],[-74,0],[-36,0],[-19,0],[-64,0],[-69,0],[-29,0],[-204,1],[-238,0],[-56,0],[-32,0],[-14,0],[-63,0],[-158,0],[-209,1],[0,114],[0,49],[0,48],[0,6],[0,281],[0,304],[0,710],[0,23],[-112,0],[-114,0],[-227,0],[-138,0],[-23,0],[-81,-1],[-32,1],[-3,0],[-274,0],[-282,0],[-69,-1],[-105,1],[-165,0],[-312,0],[-34,-1],[-172,0],[-80,0],[-23,0],[-229,0],[-211,-7],[-405,-10],[-263,1],[-29,-2],[-48,0],[-271,0],[-481,0],[-287,0],[-13,0],[-281,0],[-86,0],[-235,0],[-283,0],[0,-136],[0,-5],[0,-139],[0,-38],[0,-1197],[-1,-46],[-6,-356],[0,-395],[0,-88],[1,-671],[-13,-197],[1,-243],[1,-254],[-2,-105],[-1,-234],[0,-194],[0,-29],[-3,-41],[0,-171],[0,-2],[1,-77],[0,-49],[0,-33],[0,-5],[-1,-203],[-1,-36],[0,-22],[0,-65],[1,-89],[2,-311],[1,-306],[1,-94],[0,-43],[0,-95],[6,-128],[-1,-276],[0,-147],[0,-146],[-1,-336],[0,-239],[0,-53],[-1,-353],[-277,1],[-65,0],[-116,0],[-199,0],[-232,2],[-331,0],[-281,0],[-70,0],[-42,0],[-79,0],[-18,0],[-58,0],[-6,-44],[-38,0],[-404,0],[-272,0],[-417,0],[-30,0],[-290,0],[-26,0],[-304,0],[-116,1],[-2,0],[-186,2],[-130,0],[-87,-1],[-49,0],[-20,0],[-61,0],[-63,-19]],[[5219,29873],[-24,19],[-63,42],[-5,1],[-37,8],[-10,2],[-100,23],[-21,5],[-119,18],[-50,4],[-35,3],[-39,2],[-149,3],[-84,17],[-56,7],[-69,-4],[-58,14],[-61,14],[-60,-2],[-53,-25],[-36,-26],[-33,-40],[-45,-55],[-38,-23],[-26,-7],[-134,-15],[-45,-5],[-103,6],[-81,5],[-180,26],[-96,33],[-55,35],[-113,148],[-29,39],[-91,76],[-22,19],[-48,27],[-18,-9],[-44,-42],[-80,-133],[-63,-82],[-35,-20],[-43,0],[-72,44],[-51,31],[-55,63],[-17,33],[-11,22],[-15,88],[6,57],[8,94],[-42,41],[-18,18],[-116,135],[-44,49],[-21,51],[-12,29],[-2,19],[-5,33],[12,78],[-7,20],[-80,32],[-82,6],[-49,4],[-62,12],[-30,19],[-12,28],[-11,24],[-4,72],[7,52],[7,48],[31,122],[48,152],[99,255],[2,6],[5,5],[32,35],[13,14],[63,59],[6,5],[3,4],[46,69],[1,3],[42,97],[32,101],[5,16],[5,15],[2,4],[16,24],[32,48],[11,61],[-22,85],[5,32],[10,88],[22,39],[35,83],[8,64],[3,53],[-3,16],[-2,10],[-11,41],[-15,57],[-3,12],[-16,60],[-11,74],[18,62],[28,68],[3,15],[16,63],[22,70],[1,68],[-14,42],[-15,21],[-45,60],[-77,79],[-10,13],[-23,39],[-43,61],[-46,76],[-2,20],[23,27],[86,37],[43,38],[53,39],[50,19],[31,26],[16,27],[-5,35],[-30,68],[-19,40],[-32,63],[-60,60],[-60,39],[-39,18],[-49,22],[-81,27],[-56,15],[-102,26],[-141,25],[-75,20],[-44,12],[-38,19],[-23,11],[-33,22],[-65,114],[-49,93],[-24,46],[0,28],[23,30],[59,45],[50,67],[59,44],[58,38],[22,13],[11,8],[77,51],[21,20],[32,40],[65,117],[46,107],[3,7],[5,24],[20,116],[5,62],[19,64],[-4,87],[-16,73],[-107,202],[-34,65],[4,46],[-3,58],[-28,35],[-23,19],[-58,47],[-70,83],[-76,85],[-39,46],[-17,32],[-5,32],[4,18],[25,26],[52,21],[55,3],[56,-8],[34,-3],[19,0],[13,0],[114,14],[40,6],[22,12],[39,24],[25,29],[5,35],[54,36],[21,7],[96,26],[49,-2],[46,-2],[56,3],[84,2],[59,-20],[41,-18],[65,-17],[32,-12],[53,-18],[33,-7],[68,2],[57,12],[108,55],[15,11],[126,94],[33,41],[3,3],[60,52],[53,88],[-2,33],[13,32],[29,0],[8,56],[11,84],[15,49],[0,4],[-3,45],[-16,73],[8,37],[73,100],[22,30],[30,44],[31,43],[46,53],[50,44],[9,8],[19,23],[32,41],[20,18],[36,34],[14,22],[18,26],[13,33],[6,16],[25,66],[6,10],[39,63],[15,24],[24,36],[28,31],[17,19],[28,25],[53,30],[30,15],[52,26],[52,9],[30,5],[74,19],[33,15],[37,32],[35,35],[59,46],[18,20],[7,32],[-1,61],[-4,34],[16,83],[5,46],[20,24],[22,11],[29,16],[47,29],[79,50],[94,59],[21,12],[51,28],[119,64],[16,25],[29,22],[45,13],[35,17],[3,19],[-19,35],[-20,33],[-9,11],[-33,34],[-44,35],[-11,29],[-16,43],[-9,11],[-27,34],[-13,19],[-12,28],[-11,47],[-3,18],[-18,26],[-19,43],[-13,44],[-4,31],[5,104],[-5,46],[34,40],[68,96],[46,67],[15,21],[10,13],[23,29],[44,41],[57,21],[24,23],[4,22],[-9,29],[-40,30],[-53,49],[-10,17],[-22,44],[-24,26],[-3,43],[1,33],[14,20],[19,6],[49,15],[44,79],[-8,33],[-19,72],[-72,56],[-64,81],[1,57],[16,24],[29,25],[71,20],[23,6],[105,0],[4,0],[9,0],[66,37],[8,38],[-22,32],[-31,15],[-61,-3],[-100,21],[-67,52],[-32,51],[11,95],[8,30],[12,43],[45,60],[66,57],[38,21],[54,28],[102,43],[82,16],[52,18],[26,17],[69,27],[48,22],[18,29],[3,54],[8,26],[12,43],[3,53],[-4,37],[-9,72],[-8,29],[-14,35],[-8,20],[-21,18],[-50,32],[-18,24],[-14,18],[-26,61],[-19,18],[-23,22],[-51,24],[-24,19],[-11,12],[-14,14],[6,14],[34,66],[33,54],[37,80],[26,82],[1,23],[1,26],[-2,64],[-11,74],[-27,86],[-27,68],[-26,55],[-17,41],[-17,39],[-9,19],[-32,66],[-20,37],[-19,44],[-9,24],[-28,109],[-21,64],[-38,74],[-49,109],[-26,39],[-17,26],[-15,40],[11,17],[19,11],[62,43],[35,54],[5,26],[8,33],[-13,53],[-19,51],[-50,107],[-12,26],[-28,58],[-35,81],[-16,49],[-2,48],[-8,49],[11,46],[23,15],[26,17],[48,13],[44,-9],[48,-19],[38,-8],[20,3],[33,23],[41,35],[47,21],[52,27],[39,38],[7,27],[-6,13],[-7,39],[-1,28],[2,16],[5,28],[-7,19],[-25,28],[-34,24],[-56,38],[-29,26],[-15,13],[-92,85],[-73,72],[-40,60],[-13,52],[-5,41],[14,12],[26,-7],[125,-59],[45,1],[23,9],[25,11],[30,21],[16,18],[8,26],[-1,18],[-22,60],[-24,42],[-32,44],[-46,45],[-99,82],[-71,48],[-91,39],[-62,15],[-22,11],[-6,15],[-6,18],[-2,37],[3,57],[2,31],[12,24],[55,100],[1,1],[23,48],[11,19],[28,52],[84,105],[28,24],[93,36],[26,-2],[73,-13],[126,57],[60,31],[67,69],[27,29],[70,60],[43,41],[52,39],[29,39],[19,53],[26,20],[86,50],[57,42],[55,77],[22,25],[28,10],[105,8],[36,58],[-7,20],[-6,17],[-33,33],[-97,48],[-18,23],[-1,40],[24,57],[2,5],[24,18],[20,5],[148,-23],[80,28],[58,29],[52,35],[57,55],[40,58],[34,91],[11,65],[12,112],[-12,83],[-16,55],[-35,81],[-13,56],[0,57],[11,123],[3,37],[14,103],[16,55],[24,76],[4,12],[17,56],[29,89],[32,45],[13,17],[19,27],[79,98],[65,88],[26,22],[77,64],[83,38],[79,19],[79,-1],[48,-7],[127,-19],[140,75],[44,24],[27,8],[85,13],[66,14],[17,3],[44,23],[19,10],[2,1],[69,62],[27,31],[15,38],[3,8],[12,16],[23,33],[33,29],[47,27],[64,15],[32,-1],[41,-2],[107,-3],[27,-1],[29,6],[43,10],[111,28],[21,6],[61,31],[50,37],[92,69],[27,30],[56,74],[71,72],[40,44],[30,29],[22,24],[8,8],[23,28],[74,86],[36,24],[61,40],[204,24],[116,-33],[49,12],[174,44],[42,18],[129,78],[23,14],[33,33],[48,39],[170,57],[47,34],[25,56],[11,33],[-2,51],[-13,43],[-1,45],[12,33],[25,21],[143,72],[64,46],[18,21],[43,49],[85,74],[65,56],[42,39],[42,39],[67,63],[78,56],[53,38],[58,42],[42,33],[20,18],[2,9],[6,21],[1,42],[11,15],[11,16],[89,26],[51,15],[36,35],[10,30],[-1,36],[-24,55],[12,21],[110,-18],[70,-6],[43,5],[80,17],[41,1],[117,-25],[45,-6],[38,10],[30,34],[5,42],[-23,41],[-39,68],[-6,20],[-26,76],[-7,46],[17,68],[-8,39],[-11,39],[-21,58],[-18,113],[4,55],[15,44],[1,47]],[[11749,52381],[26,19],[44,-3],[48,-9],[28,10],[25,-2],[21,-18],[24,-29],[60,-32],[61,-27],[40,-30],[36,-18],[49,-6],[52,9],[46,19],[51,27],[39,20],[41,6],[54,0],[24,-4],[13,-2],[27,-4],[47,-17],[23,-37],[34,-24],[46,-8],[39,0],[21,-3],[20,-25],[18,5],[10,2],[30,0],[16,-9],[39,-17],[27,-11],[28,-8],[22,-8],[15,-20],[21,-21],[11,-31],[17,-13],[8,-15],[26,-13],[22,-13],[15,-13],[11,-24],[22,-15],[14,-12],[25,-11],[48,-1],[19,-15],[30,-13],[30,-37],[15,-23],[14,-46],[-3,-26],[9,-17],[14,-12],[42,-30],[18,-3],[19,6],[19,4],[30,-4],[13,-15],[0,-24],[-11,-33],[10,-24],[41,-17],[44,-3],[30,11],[28,19],[16,15],[12,17],[11,33],[10,16],[10,17],[23,13],[27,-2],[15,-9],[15,-17],[19,-29],[4,-29],[14,-23],[33,-34],[21,-20],[30,-18],[13,-14],[43,-24],[17,-10],[29,-12],[27,0],[28,6],[23,3],[47,9],[14,0],[35,0],[9,-1],[37,-6],[9,-1],[33,-5],[39,1],[36,6],[62,16],[6,1],[6,1],[2,1],[38,6],[37,6],[3,1],[6,1],[46,7],[6,1],[35,12],[4,0],[40,6],[64,-1],[26,0],[49,1],[16,1],[12,0],[19,0],[22,-2],[3,0],[3,-1],[3,0],[16,-2],[8,-1],[73,-8],[38,-5],[75,-15],[87,-35],[170,-76],[49,-10],[100,-3],[47,-2],[46,-2],[18,0],[112,-8],[11,-1],[47,-3],[38,1],[8,2],[61,6],[54,8],[65,4],[27,-1],[13,-1],[6,-1],[46,-6],[46,9],[15,3],[74,36],[21,12],[43,25],[2,0],[71,17],[32,5],[15,3],[17,-5],[10,-4],[45,-12],[46,-5],[79,-9],[73,-8],[22,-9],[24,-9],[21,-8],[3,-11],[13,-44],[2,-7],[1,-14],[5,-60],[2,-7],[14,-49],[5,-17],[58,-52],[30,-42],[1,-1],[20,-35],[3,-6],[20,-35],[2,-3],[1,-4],[3,-7],[6,-15],[3,-16],[4,-14],[16,-36],[17,-13],[22,-8],[5,-1],[9,-1],[5,-1],[5,-1],[27,1],[30,9],[5,1],[6,2],[4,1],[3,1],[36,12],[2,0],[44,7],[2,1],[13,13],[8,5],[18,4],[21,6],[11,5],[4,3],[17,12],[16,11],[3,6],[3,19],[1,5],[0,5],[0,19],[0,17],[0,1],[2,5],[1,5],[25,28],[6,7],[2,-1],[23,-10],[18,-9],[23,-10],[2,-3],[17,-19],[24,3],[1,0],[41,6],[6,7],[13,14],[28,6],[1,1],[1,0],[20,10],[2,1],[18,13],[11,7],[9,7],[1,0],[18,1],[8,1],[21,-3],[17,-3],[1,0],[39,-6],[7,-1],[23,-4],[7,-1],[12,-5],[25,-11],[19,-6],[25,-11],[2,-1],[14,-7],[1,0],[22,-9],[20,-5],[2,-1],[2,-1],[22,-7],[4,-3],[13,-11],[32,-22],[8,-3],[9,-4],[66,-5],[48,3],[10,1],[26,26],[21,16],[21,12],[24,9],[16,5],[52,7],[21,6],[24,10],[33,19],[22,15],[26,4],[36,19],[55,12],[33,17],[27,-11],[20,-1],[24,17],[29,9],[10,3],[6,0],[4,0],[46,3],[63,5],[5,0],[20,6],[26,5],[29,-3],[28,-14],[10,-18],[2,-5],[13,-25],[4,-7],[26,-45],[9,-16],[27,-58],[9,-19],[13,-29],[4,-10],[-6,-18],[6,-12],[11,-21],[15,-27],[15,-11],[26,-5],[18,7],[22,0],[32,-4],[16,-24],[6,-29],[16,-24],[22,-5],[20,-12],[10,1],[15,1],[15,-11],[10,-16],[5,-5],[11,-10],[1,-1],[14,-20],[11,-13],[4,-4],[2,-1],[22,-10],[2,0],[18,-5],[3,-1],[40,-3],[6,0],[34,-2],[59,-10],[36,-1],[27,0],[17,-7],[110,1],[10,0],[46,0],[27,2],[10,-2],[10,-2],[19,13],[12,30],[18,15],[35,-3],[21,-3],[20,1],[30,8],[26,0],[32,-9],[10,-3],[15,-9],[21,5],[7,17],[12,13],[8,8],[19,19],[27,29],[18,3],[17,-12],[18,-9],[25,11],[15,13],[32,36],[18,17],[34,21],[19,3],[19,-10],[14,-12],[17,8],[13,31],[8,26],[1,2],[-13,13],[1,5],[1,17],[9,6],[17,12],[25,3],[7,-9],[10,-13],[13,-30],[10,-26],[22,5],[25,17],[15,1],[3,0],[18,-8],[25,17],[18,13],[21,9],[2,2],[11,10],[52,36],[16,-5],[26,-13],[33,-3],[63,-8],[20,-2],[18,6],[4,2],[22,13],[1,1],[17,7],[19,7],[9,19],[1,1],[19,11],[16,1],[14,0],[12,1],[17,7],[17,-13],[12,-27],[17,5],[31,24],[4,3],[20,15],[15,11],[8,3],[23,9],[7,13],[4,7],[5,15],[4,13],[0,1],[17,19],[19,12],[2,1],[39,17],[1,0],[31,25],[40,31],[6,4],[34,15],[10,5],[13,46],[24,81],[6,21],[1,10],[3,17],[2,37],[10,43],[22,34],[23,19],[2,2],[17,12],[4,4],[20,15],[7,5],[29,22],[4,4],[0,1],[7,9],[20,23],[2,3],[15,17],[3,1],[47,19],[10,5],[13,7],[1,26],[-3,18],[1,8],[0,2],[1,10],[10,31],[20,9],[27,9],[9,7],[27,24],[13,19],[9,11],[16,19],[54,44],[3,2],[21,17],[16,13],[12,6],[15,7],[17,5],[1,0],[6,4],[14,9],[26,16],[33,14],[5,6],[11,12],[10,19],[5,10],[4,29],[5,17],[2,7],[3,10],[6,21],[7,19],[7,26],[13,31],[38,42],[18,25],[7,9],[3,4],[18,25],[7,9],[28,12],[1,0],[3,2],[11,5],[8,4],[4,2],[20,7],[28,4],[29,-2],[12,0],[34,12],[7,4],[14,8],[21,9],[9,4],[4,2],[15,-15],[16,-9],[3,-2],[4,-3],[24,4],[40,9],[18,12],[59,-3],[51,-32],[19,-9],[23,-24],[17,-13],[33,-14],[24,-9],[27,-5],[41,-15],[13,-4],[7,-2],[39,-4],[41,7],[1,0],[4,1],[19,6],[57,12],[17,11],[21,8],[35,-5],[56,-25],[23,-5],[23,-1],[21,11],[39,10],[4,2],[28,18],[11,-3],[19,-6],[19,-23],[1,-1],[2,-6],[8,-19],[14,-2],[13,-3],[7,2],[14,3],[4,3],[17,9],[6,6],[14,11],[23,5],[55,-21],[32,-9],[20,0],[24,-5],[29,-10],[25,-6],[39,-10],[17,-9],[20,-4],[6,0],[11,-2],[20,-4],[7,-1],[47,-3],[17,2],[29,5],[17,2],[18,6],[27,4],[8,1],[39,2],[42,17],[1,0],[20,0],[17,-6],[18,-11],[27,-6],[19,3],[4,0],[1,0],[45,0],[23,-8],[22,-8],[43,-6],[1,0],[16,-7],[17,-7],[23,-23],[10,-13],[7,-10],[27,-13],[30,-4],[19,-7],[21,14],[22,5],[32,15],[35,14],[12,4],[14,12],[20,16],[26,14],[5,1],[23,6],[20,3],[17,-3],[29,-7],[19,-4],[26,-16],[23,-10],[15,-8],[20,-11],[15,-8],[14,-7],[33,-21],[8,-1],[32,-4],[18,-2],[23,-3],[5,0],[14,-3],[3,0],[24,-13],[21,-4],[23,-3],[15,-3],[34,-1],[12,-1],[19,-5],[26,-8],[16,0],[6,0],[11,2],[22,3],[23,8],[19,7],[10,4],[15,5],[33,12],[31,9],[13,3],[24,14],[5,3],[2,2],[28,18],[6,3],[19,12],[14,10],[24,16],[2,1],[12,11],[2,2],[9,8],[6,7],[3,3],[16,18],[1,1],[11,20],[4,7],[2,2],[5,9],[17,24],[3,15],[4,12],[1,7],[9,16],[43,39],[27,17],[7,13],[-1,7],[-20,28],[-23,25],[-1,27],[6,17],[2,1],[14,10],[16,1],[16,-2],[44,-15],[47,-15],[14,1],[11,4],[11,5]],[[65436,37622],[-311,-2],[-108,-2],[-609,-5],[-415,-4],[-56,-1],[-3,0],[-52,0],[-421,0],[-208,-2],[-59,0],[-48,0],[-300,0],[-87,0],[-28,0],[-107,0],[-123,-1],[-47,0],[-46,0],[-320,-3],[-304,-1],[-237,9],[-50,2],[-10,0],[-34,0],[-5,0],[-175,1],[-341,1],[-396,1],[-192,0],[-116,2],[-397,0],[-39,0],[-8,0],[-46,1],[-120,0],[-70,0],[-24,0],[-32,0],[-19,0],[-34,0],[-77,0],[-592,0],[-83,1],[-238,0],[-235,-1],[-136,0],[-49,0],[-148,0],[-14,0],[-2,0],[-43,0],[-13,0],[-18,0],[-17,0],[-6,0],[-32,-1],[-42,0],[-44,0],[-178,-1],[-20,-1],[-140,0],[-108,1],[-89,0],[-150,1],[-33,0],[-18,0],[-25,0],[-36,0],[-83,0],[-105,1],[-22,0],[-177,0],[-47,0],[-20,0],[-37,0],[-71,0],[-194,0],[-30,1],[-1,-21],[0,-18],[0,-33],[0,-34],[0,-26],[0,-34],[-1,-32],[0,-31],[0,-34],[-2,-134],[2,-75],[1,-19],[1,-26],[2,-42],[0,-22],[1,-29],[0,-28],[1,-19],[-1,-34],[0,-24],[-1,-36],[-2,-33],[1,-25],[0,-21],[-1,-20],[0,-28],[0,-19],[0,-29],[0,-19],[0,-33],[0,-23],[-1,-37],[-2,-25],[0,-23],[0,-20],[1,-32],[0,-20],[2,-18],[1,-20],[0,-23],[-1,-64],[0,-67],[0,-2],[0,-12],[-1,-21],[0,-13],[0,-17],[0,-29],[0,-1],[0,-45],[0,-49],[-63,0],[1,-106],[0,-22],[0,-32],[1,-33],[1,-41],[0,-22],[0,-19],[1,-92],[0,-42],[1,-45],[0,-3],[0,-48],[0,-7],[0,-25],[2,-99],[0,-23],[1,-81],[0,-21],[0,-40],[1,-50],[2,-117],[1,-51],[1,-83],[0,-48],[0,-18],[0,-61],[1,-51],[1,-102],[1,-149],[1,-111],[0,-38],[0,-107],[1,-95],[-1,-46],[2,-108],[0,-50],[0,-79],[1,-102],[-1,-18],[0,-28],[1,-35],[0,-24],[1,-30],[0,-26],[1,-39],[1,-50],[1,-37],[1,-47],[0,-2],[0,-18],[0,-28],[1,-17],[1,-79],[1,-52],[0,-18],[0,-17],[-1,-50],[-1,-17],[2,-35],[-1,-118],[-44,-1],[-131,-1],[-48,0],[-77,1],[-174,-2],[-123,0],[-104,-2],[-43,-1],[-154,-1],[-75,0],[-76,-1],[-32,0],[-24,0],[-33,0],[-24,-1],[-37,-1],[-46,-2],[-28,1],[-48,-2],[-37,-2],[-20,0],[-26,1],[-19,0],[-33,0],[-46,-1],[-26,0],[-42,1],[-74,2],[-31,-1],[-40,0],[-35,0],[-19,-1],[-21,0],[-76,0],[-74,0],[-76,0],[-76,1],[-75,-1],[-33,0],[-24,0],[-17,1],[-36,-1],[-51,0],[-67,0],[-55,0],[-189,1],[-107,2],[-117,-1],[-17,0],[-41,0],[-1,0],[-26,0],[-24,0],[-12,0],[-8,0],[-42,0],[-36,0],[-71,0],[-76,0],[-79,0],[-22,0],[-42,-1],[-81,-2],[-67,0],[-74,-1],[-76,-1],[-39,-1],[-32,0],[-68,-1],[-87,-1],[-55,-1],[-36,-1],[-36,0],[-21,0],[-40,-1],[-17,0],[-91,-1],[-49,-1],[-14,0],[-72,-1],[-4,0],[-14,0],[-28,0],[-25,-1],[-16,0],[-16,0],[-13,0],[-3,0],[-15,0],[-12,-1],[-4,0],[-19,0],[-11,0],[-5,0],[-12,0],[-31,-1],[-35,0],[-28,0],[-21,-1],[-85,-1],[-44,-1],[-36,-1],[-40,0],[-95,-1],[-38,0],[-118,-2],[-68,-1],[-72,-1],[-85,-1],[-68,-1],[-1,26],[-156,1],[-48,0],[-12,0],[-47,0],[-12,0],[-26,0],[-8,0],[-13,0],[-291,-1],[-265,0],[-232,-1],[-147,0],[-181,0],[-40,-1],[-204,0],[-4,0],[-45,0],[-15,0],[-31,0],[-2,0],[-1,0],[-85,-2],[-511,0],[-509,1],[-296,-1],[-72,6],[-58,4],[-31,19],[-27,13],[-21,19],[-11,6],[-15,7],[-32,5],[6,27],[6,19],[4,12],[5,6],[11,12],[10,10],[8,7],[-1,7],[0,10],[-1,7],[0,23],[4,9],[15,33],[-1,18],[-9,37],[-7,26],[-9,23],[-29,29],[-3,2],[-46,35],[-24,22],[-1,1],[-20,1],[-22,7],[-34,6],[-12,-3],[-18,-3],[-25,-9],[-2,0],[-26,-12],[-18,-4],[-9,-2],[-47,-20],[-32,1],[-39,-10],[-25,4],[-16,15],[-8,36],[-10,17],[-20,3],[-39,14],[-19,28],[-20,11],[-74,13],[-24,-12],[-45,-34],[-22,4],[-13,11],[-17,29],[-14,37],[-5,20],[2,26],[-1,23],[-17,21],[-19,6],[-38,7],[-16,12],[-9,19],[1,35],[-19,9],[-23,21],[-25,32],[-17,14],[-21,13],[-22,10],[-22,16],[-18,8],[-21,4],[-21,2],[-20,1],[-29,0],[-19,-6],[-23,-6],[-23,2],[-31,2],[-15,11],[-8,19],[-15,14],[-17,5],[-12,4],[-15,-6],[-2,-1],[-17,8],[-9,10],[-6,8],[-16,10],[-5,6],[-9,9],[-22,2],[-9,-6],[-7,-5],[-3,-2],[-12,-16],[-18,-2],[-22,10],[-6,19],[-11,18],[-3,12],[-2,8],[7,5],[8,7],[12,16],[-23,0],[-20,-2],[-18,0],[-23,-3],[-3,0],[-23,-6],[-23,7],[-2,1],[-14,8],[-30,-2],[-27,1],[-24,-1],[-17,6],[-11,1],[-7,1],[-17,2],[-3,0],[-2,2],[-14,8],[-2,3],[-7,16],[-2,19],[0,9],[0,12],[0,1],[-2,3],[-16,20],[-10,20],[-11,16],[-8,10],[-5,6],[-18,21],[-8,17],[-5,19],[-3,19],[-8,16],[-2,18],[6,24],[5,24],[4,22],[4,6],[13,17],[0,19],[-9,16],[-9,18],[-7,22],[-3,13],[-2,4],[2,3],[12,12],[16,21],[3,24],[2,9],[4,13],[11,15],[12,17],[13,22],[-7,23],[-9,20],[-16,19],[-15,17],[-18,15],[-3,4],[-3,2],[-5,3],[-5,3],[-1,4],[-1,4],[-1,3],[-4,4],[-3,2],[-1,4],[-2,4],[-3,2],[-3,1],[-2,2],[-1,4],[-9,9],[-5,4],[-2,2],[-2,2],[-11,13],[0,4],[-4,5],[-1,3],[-7,7],[-6,5],[-3,5],[-2,5],[-3,8],[1,10],[-1,8],[-4,5],[-3,1],[-3,1],[-7,6],[0,-2],[1,-90],[2,-261],[19,0],[-2,-727],[0,-41],[2,-388],[1,-310],[-1,-70],[-4,-433],[-2,-363],[1,-32],[9,-420],[-2,-132],[-2,-26],[0,-46],[0,-74],[1,-524],[-1,-47],[1,-173],[0,-48],[0,-2],[0,-22],[-1,-24],[0,-3],[0,-15],[0,-33],[0,-80],[-2,-349],[0,-229],[-15,0],[0,-243],[-1,-69],[0,-34],[-2,-162],[0,-23],[1,-62],[0,-42],[3,-522],[1,-167],[1,-11],[0,-42],[0,-6],[-5,-46],[-10,-107],[0,-243],[1,-19],[1,-241],[2,-157],[1,-105],[1,-121],[1,-131],[1,-159],[-3,-38],[0,-125],[0,-182],[1,-293],[0,-3],[0,-32],[0,-13],[1,-16],[0,-31],[0,-10],[-1,-73],[0,-60],[0,-128],[0,-353],[0,-177],[0,-33],[0,-170],[-1,-234],[0,-191],[-5,-48],[1,-147],[0,-176],[1,-155],[0,-180],[0,-53],[1,-190],[0,-45],[1,-269],[0,-63],[0,-121],[1,-288],[1,-285],[0,-225],[-3,-72],[0,-196],[-1,-175],[0,-108],[0,-200],[0,-57],[0,-2],[0,-3],[0,-7],[0,-41],[0,-38],[0,-10],[-1,-17],[1,-112],[0,-26],[0,-31],[0,-39],[-1,-147],[0,-248],[-1,-410],[0,-40],[0,-107]],[[45270,20709],[-96,0],[-118,0],[-239,0],[-163,0],[-169,0],[-29,-2],[-121,-1],[-30,0],[-472,0],[-144,-1],[-201,-1],[-47,0],[-84,0],[-28,0],[-223,-1],[-12,0],[-27,0],[-33,0],[-20,0],[-10,0],[-399,-2],[-33,0],[-32,0],[-48,0],[-13,0],[-40,-1],[-149,1],[-85,-1],[-22,0],[-104,0],[-121,-1],[-131,-1],[-106,-1],[-121,0],[-141,-1],[-97,0],[-115,-1],[-100,0],[-122,0],[-106,-2],[-114,-1],[-45,0],[-127,1],[-95,-1],[-53,-1],[-22,0],[-79,0],[-91,0],[-67,-3],[-45,-2],[-34,4],[-23,-2],[-94,0],[-72,-1],[-65,-1],[-36,0],[-90,1],[-60,0],[-45,0],[-32,-1],[-28,0],[-11,0],[-24,0],[-6,0],[-18,0],[-2,0],[-65,0],[-10,0],[-119,-2],[-107,1],[-116,-1],[-101,-1],[-72,-1],[-110,0],[-54,-1],[-19,1],[-24,5],[-100,-2],[-49,-2],[-133,0],[-104,0],[-400,0],[-1027,5],[-3,0],[-44,0],[-22,0],[-5,0],[-20,0],[-44,0],[-51,1],[-76,0],[-436,-2],[-290,-1],[-148,-1],[-61,0],[-398,0],[-714,-1],[-218,0],[-69,0],[-86,0],[-293,0],[-304,1],[-23,0],[-31,0],[-8,0],[-2,0],[-17,0],[-25,0],[-3,0],[-12,0],[-28,0],[-7,0],[-47,0],[-147,0],[-30,0],[-339,-1],[-444,0],[-923,0],[-103,0],[-366,-2],[-108,0],[-268,-1],[-143,0],[-299,0],[-24,0],[-57,0],[-65,0],[-249,0],[-311,0],[-276,3],[-110,-2],[-214,-4],[-38,6],[-669,-1],[-93,0],[-367,0],[-142,-1],[-533,-2],[-127,-1],[-104,0],[-105,0],[-36,0],[-38,0],[-19,0],[-56,0],[-6,0],[-81,0],[-270,1],[-118,-1],[-481,-2]],[[25687,20677],[2,170],[-1,79],[0,49],[0,48],[0,52],[-1,236],[2,474],[0,104],[0,64],[1,106],[0,207],[0,92],[0,437],[0,286],[0,221],[-1,375],[0,178],[1,127],[0,154],[1,167],[0,218],[1,275],[-2,202],[0,302],[0,60],[0,61],[-1,240],[0,37],[-1,383],[1,241],[0,143],[0,47],[0,1],[0,3],[0,24],[0,20],[0,2],[0,45],[0,595],[0,829],[0,222],[0,134],[0,100],[0,131],[0,51],[0,4],[0,54],[0,2],[0,159],[0,171],[0,46],[1,69],[0,19],[-1,138],[0,75],[0,357],[0,5],[0,48],[0,5],[-1,52],[0,2],[0,2],[1,67],[0,175],[-1,230],[0,93],[0,86],[0,46],[0,124],[0,130],[1,85],[-1,40],[0,129],[0,130],[0,42],[0,59],[0,22],[0,134],[-2,140],[-1,116],[-1,142],[2,152],[0,45],[7,486],[1,130],[1,123],[1,210],[0,84],[3,314],[-8,361],[-10,41],[1,594],[5,182],[-1,281],[-3,115],[1,236],[2,597],[1,199],[-1,42]],[[99969,43125],[0,-273],[0,-224],[-3,-177],[0,-170],[0,-14],[1,-25],[0,-24],[0,-33],[0,-12],[0,-53],[0,-55],[0,-9],[1,-31],[0,-49],[2,-383],[0,-100],[1,-294],[0,-42],[0,-9],[1,-51],[1,-238],[1,-281],[0,-154],[-3,-138],[0,-333],[0,-83],[1,-551],[0,-245],[1,-708],[-3,-145],[0,-127],[1,-228],[0,-186],[-4,-80],[-4,-48],[0,-118],[5,-185],[1,-38],[-6,-59],[1,-153],[2,-346],[-3,-24],[5,-237],[3,-131],[2,-21],[-1,-49],[3,-130],[1,-44],[-6,-43],[-3,-59],[4,-70],[0,-75],[-1,-235],[0,-159],[-1,-233],[0,-94],[0,-28],[-3,-105],[1,-138],[0,-155],[1,-72],[-1,-23],[0,-89],[-1,-338],[-2,-69],[-2,-104],[-2,-115],[5,-121],[0,-18],[1,-21],[0,-10],[0,-5],[0,-51],[0,-13],[0,-8],[-2,-477],[0,-27],[0,-64],[0,-136],[-1,-209],[0,-112],[4,-468],[-1,-120],[0,-123],[0,-118],[0,-102],[-1,-267],[0,-44],[0,-3],[0,-51],[0,-2],[2,-140],[3,-77],[-1,-36],[-8,-329],[-1,-32],[0,-18],[0,-60],[-1,-111],[3,-255],[1,-33],[-1,-80],[1,-344],[-1,-238],[0,-84],[4,-138],[0,-113],[0,-17],[0,-32],[0,-29],[0,-19],[0,-68],[0,-283],[0,-181],[0,-62],[0,-352],[0,-88],[0,-162],[0,-19],[0,-122],[0,-21],[0,-78],[0,-208],[0,-76],[0,-136],[0,-105],[0,-500],[0,-94],[0,-56],[0,-23],[0,-21],[0,-33],[0,-43],[0,-155],[0,-137],[0,-64],[0,-210],[0,-105],[0,-90],[0,-32],[0,-51],[-2,-124],[0,-50],[-3,-195],[-1,-55],[-1,-60],[-1,-400],[0,-384],[0,-17],[0,-14],[-1,-39],[0,-35],[0,-6],[0,-11],[0,-11],[0,-2],[0,-37],[0,-11],[0,-11],[0,-11],[0,-10],[0,-9],[0,-7],[0,-9],[0,-41],[0,-3],[0,-50],[0,-6],[0,-44],[0,-42],[-1,-465],[0,-84],[0,-7],[0,-48],[0,-2],[0,-46],[0,-4],[-1,-112],[0,-224],[0,-114],[-1,-209],[0,-42],[0,-31],[0,-5],[0,-49],[0,-12],[0,-361],[0,-115],[0,-93],[-1,-33],[0,-56],[0,-127],[0,-112],[0,-256],[0,-230],[0,-117],[-1,-244],[1,-143],[1,-196],[0,-77],[0,-2],[0,-84],[3,-564],[0,-119],[0,-24],[1,-90]],[[99958,19292],[-113,0],[-54,0],[-836,-3],[-148,0]],[[98807,19289],[-12,11],[-18,0],[-17,-2],[-19,11],[-44,19],[-14,8],[-42,20],[-5,2],[-25,4],[-34,4],[-9,2],[-38,5],[-17,23],[-4,14],[5,14],[15,11],[11,9],[6,23],[-51,47],[-7,0],[-6,1],[-28,3],[-25,12],[-43,39],[-28,43],[-6,11],[-1,1],[-18,33],[-18,41],[-3,40],[-7,18],[-1,4],[-23,20],[-13,21],[-1,3],[-2,12],[14,31],[0,24],[-21,58],[-28,38],[-18,30],[-10,17],[-26,18],[-40,18],[-42,5],[-57,32],[-84,29],[-7,6],[-27,-6],[-29,-18],[-7,-4],[-45,-28],[-29,-7],[-29,7],[-18,13],[-10,56],[-2,19],[0,3],[-2,1],[-21,10],[-10,13],[-7,10],[6,22],[4,22],[11,44],[-2,10],[-25,43],[-3,6],[-1,1],[0,2],[-18,38],[-6,46],[-2,39],[-13,52],[-15,23],[-28,35],[-6,71],[-17,21],[-5,6],[-32,35],[-6,18],[-11,4],[-79,-21],[-4,-24],[1,-33],[-54,-14],[-12,10],[1,23],[-2,60],[-4,54],[-2,26],[-14,39],[-2,39],[-19,30],[-39,14],[-90,-4],[-20,14],[-8,31],[-6,19],[-21,12],[-53,33],[-33,3],[-28,3],[-16,1],[-46,1],[-43,30],[-1,6],[2,19],[-8,9],[-29,34],[-39,17],[-6,20],[-2,6],[-8,18],[-2,13],[2,13],[7,5],[3,3],[8,12],[0,11],[-2,11],[-2,5],[-6,18],[-8,23],[3,33],[11,7],[28,20],[3,11],[25,83],[14,23],[9,10],[14,7],[11,11],[6,5],[7,7],[9,10],[8,17],[4,11],[1,6],[-1,14],[-1,21],[-2,9],[-4,13],[-16,24],[-5,28],[41,97],[6,15],[1,3],[4,5],[15,16],[22,15],[4,4],[7,12],[44,81],[-6,40],[2,11],[4,15],[11,26],[1,5],[1,2],[2,6],[13,30],[-16,48],[-2,42],[-5,12],[-33,57],[-16,27],[-3,11],[-15,18],[-42,66],[-10,16],[-7,11],[-10,6],[-13,3],[-19,2],[-10,7],[-1,10],[-5,9],[-4,25],[1,12],[8,14],[26,37],[11,15],[15,14],[9,5],[32,10],[2,0],[14,7],[21,13],[16,10],[4,10],[3,15],[40,55],[68,68],[30,7],[13,7],[-1,9],[-11,27],[-2,20],[1,11],[9,17],[12,18],[1,10],[-25,20],[-37,89],[-1,3],[-4,17],[1,8],[-12,35],[-8,67],[-6,52],[12,18],[1,13],[0,1],[-5,5],[-6,5],[-9,5],[-3,1],[-22,-3],[-7,0],[-3,0],[-13,1],[-17,8],[-4,6],[-3,28],[-5,19],[-1,20],[6,27],[2,8],[-3,9],[-7,2],[-15,8],[-10,15],[-8,20],[1,22],[7,19],[-2,64],[-17,24],[-3,18],[7,35],[8,28],[22,8],[9,4],[12,6],[17,16],[12,20],[4,23],[-4,13],[-1,21],[-5,27],[-8,19],[1,10],[12,34],[29,18],[17,13],[9,20],[-5,14],[-16,16],[-8,10],[-31,22],[-11,11],[-7,11],[-6,43],[19,44],[7,6],[12,22],[9,15],[-32,33],[-4,7],[4,10],[19,19],[16,11],[12,1],[15,-2],[24,-13],[32,-11],[12,2],[26,11],[13,10],[19,16],[14,24],[-2,11],[-15,-1],[-16,-7],[-24,4],[-17,16],[-16,18],[-5,18],[-9,13],[-34,27],[-16,10],[-25,4],[-5,3],[-15,13],[-9,6],[13,34],[18,53],[-2,10],[-19,64],[-3,9],[-24,9],[-6,6],[-5,82],[0,6],[1,14],[15,19],[0,1],[0,2],[-2,28],[0,2],[40,93],[1,2],[-2,9],[-4,4],[-25,11],[-20,16],[-67,52],[-48,38],[-6,8],[-16,8],[-15,10],[-18,4],[-11,7],[-19,4],[-10,-4],[-12,2],[-29,15],[-7,5],[-16,11],[-45,30],[-87,55],[-55,26],[-39,19],[-39,19],[-42,22],[-11,14],[-6,8],[-8,5],[-10,-1],[-6,-6],[-8,-13],[-7,-33],[1,-2],[-2,-1],[-2,-14],[-94,-25],[-25,-5],[-19,-3],[-202,142],[-56,17],[-16,15],[-10,35],[-4,20],[-10,13],[-108,27],[-16,72],[2,21],[0,7],[19,35],[2,1],[17,21],[1,7],[-17,16],[-7,7],[-16,14],[-4,3],[-7,21],[3,11],[19,6],[12,2],[33,13],[16,14],[8,19],[5,63],[0,9],[27,118],[9,19],[14,15],[21,22],[24,1],[24,-15],[21,-4],[20,6],[34,15],[2,1],[33,20],[35,19],[11,4],[18,2],[40,-13],[17,9],[9,35],[-9,13],[-70,22],[-4,58],[7,10],[17,15],[24,25],[25,17],[13,6],[14,30],[-3,8],[-6,1],[-51,22],[-17,5],[-9,1],[-29,5],[-27,-5],[-9,-4],[-4,3],[-4,12],[-1,19],[-2,16],[1,3],[0,6],[-8,16],[-5,46],[2,31],[-1,1],[0,7],[-3,8],[-5,10],[-68,82],[-3,1],[-5,-1],[-23,-2],[-21,-7],[-6,4],[-18,10],[-5,4],[-5,5],[-8,12],[-7,5],[-6,4],[-6,4],[-13,3],[-11,2],[-11,1],[-11,2],[-22,6],[-14,0],[-30,-3],[-9,5],[-1,22],[-1,17],[-1,21],[-20,13],[-23,-1],[-32,-80],[-9,-7],[-12,5],[-177,69],[-108,42],[-5,3],[-25,-2],[-12,-2],[-10,-10],[-6,-4],[-10,-6],[-3,-1],[-1,0],[-9,-2],[-7,1],[-9,3],[-4,4],[-5,5],[-11,6],[-9,6],[-7,10],[-1,4],[-3,6],[-75,19],[-20,5],[-77,17],[-19,-4],[-3,-12],[-1,-2],[-8,-13],[-14,-12],[-5,-1],[-5,1],[-2,10],[-2,5],[-4,9],[-7,10],[-9,8],[-13,9],[-5,2],[-10,4],[-6,2],[-39,7],[-9,10],[-49,72],[-24,36],[-3,5],[-25,36],[-3,4],[-53,79],[-74,109],[-118,175],[-30,44],[-89,131],[-55,81],[-14,22],[-15,21],[-179,265],[-12,17],[-15,22],[-50,75],[-106,156],[-33,49],[-116,171],[-150,221],[-103,153],[-24,35],[-30,45],[-9,13],[-27,39],[-188,279],[-46,67],[-79,117],[-101,150],[-58,75],[-22,34],[-52,77],[-43,65],[-17,23],[-21,31],[-67,102],[-91,133],[-64,99],[-37,55],[-26,39],[-43,64],[-25,37],[-26,39],[-101,147],[-146,213],[-82,119],[-11,17],[-60,87],[-1,384],[0,236],[0,7],[0,32],[0,29],[0,26],[0,24],[2,44],[0,10],[1,31],[1,24],[1,23],[0,27],[0,45],[0,19],[0,15],[1,42],[0,56],[0,24],[0,10],[0,16],[1,51],[0,2],[0,11],[0,56],[0,19],[0,13],[0,23],[0,7],[0,3],[0,42],[0,14],[0,8],[0,6],[0,2],[0,7],[0,34],[0,2],[0,16],[-1,28],[0,4],[1,32],[0,10],[0,20],[0,2],[0,17],[1,8],[0,36],[0,2],[0,12],[1,48],[0,23],[1,48],[0,47],[1,23],[0,49],[-1,143],[-4,410],[3,142],[-1,21],[-4,112],[-3,311],[7,38],[0,70],[0,105],[0,179],[0,48],[0,48],[0,70],[0,7],[0,46],[0,29],[0,16],[0,2],[0,10],[0,49],[0,63],[-1,18],[0,13],[0,66],[0,4],[0,34],[0,49],[0,2],[0,18],[0,51],[0,11],[0,15],[0,2],[0,8],[0,12],[0,26],[1,39],[0,34],[1,49],[0,18],[1,11],[0,2],[0,46],[0,7],[1,31],[0,13],[0,5],[1,50],[0,2],[0,10],[0,4],[0,6],[0,8],[0,2],[0,6],[1,22],[0,2],[-1,21],[0,39],[0,11],[0,4],[0,22],[-1,53],[-3,340],[-1,80],[-1,97],[0,6],[0,25],[0,11],[0,18],[0,4],[0,9],[1,10],[1,16],[0,8],[0,19],[0,10],[0,20],[0,1],[0,4],[0,4],[1,10],[0,36],[0,15],[1,20],[0,6],[0,3],[0,59],[0,10],[1,10],[0,3],[1,45],[0,23],[-1,4],[-2,190],[0,36],[0,216],[3,510],[-5,391],[-1,57],[1,5],[0,57],[1,307],[-1,125],[1,82],[7,297],[1,49],[-1,50],[-2,118],[-2,132],[1,234],[-7,206],[-1,162],[-1,98],[0,32],[1,145],[2,598],[0,26],[0,49],[0,48],[0,319],[0,49]],[[98807,19289],[-111,0],[-90,0],[-22,0],[-477,1],[-151,1],[-893,2],[-22,0],[-109,1],[-86,0],[-11,-35],[-225,5],[-170,4],[-549,7],[-828,11],[-195,2],[-39,1],[-17,0],[-37,0],[-10,0],[-33,1],[-14,0],[-11,0],[-40,1],[-112,1],[-77,1],[-38,0],[-93,2],[-73,1],[-101,1],[-296,6],[-64,1],[-215,4],[-17,0],[-284,5],[-62,-2],[-184,-7],[-103,0],[-82,0],[-30,0],[-78,0],[-41,0],[-327,2],[-131,0],[-151,1],[-100,0],[-38,-1],[-56,0],[-155,0],[-49,0],[-1,-1],[-29,0],[-19,0],[-41,0],[-52,0],[-2,0],[-490,-2],[-47,0],[-124,0],[-541,-2],[-422,-2],[-130,0],[-19,1],[-446,1],[-47,0],[-11,0],[-36,0],[-98,1],[-18,0],[-27,0],[-129,0],[-30,1],[-359,1],[-110,0],[-218,1],[-48,0],[-258,1],[-24,5],[-158,-6],[-125,1],[-24,0],[-282,0],[-59,1],[-1,0],[-52,0],[-91,0],[-39,0],[-313,0],[-457,0],[-19,1],[-90,0],[-165,0],[-101,0],[-216,-1],[-132,-1],[-238,-1],[-651,-3],[-398,-2],[-122,-1],[-72,1],[-152,1],[-111,2],[-27,0],[-38,0],[-58,1],[-58,0],[-3,0],[-138,2],[-100,1],[-86,1],[-260,1],[-170,-2],[-103,1],[-163,-3],[-278,0],[-217,-1],[-35,0],[-116,-1],[-75,0],[-141,0],[-390,-2],[-132,-1],[-53,0],[-194,0],[-125,0],[-134,-4],[-68,-2],[-200,-2],[-299,2],[-351,3],[-213,1],[-413,4],[-41,0],[-75,-4],[-284,-4],[-35,0],[-1199,0],[-187,0],[-1,21],[-117,-2],[-149,1],[-194,-1],[-437,-4],[-220,-1],[-84,-1],[-4,0],[-73,4],[-167,1],[-150,0],[-56,0],[-7,-1],[-9,0],[-28,0],[-21,-1],[-58,-1]],[[75632,19309],[0,20],[0,35],[1,13],[1,48],[2,145],[-4,212],[-1,286],[0,204],[-1,77],[-2,110],[5,132],[3,77],[0,135],[0,30]],[[75636,20833],[36,0],[0,112],[1,152],[0,80],[0,57],[1,112],[0,33],[0,100],[1,92],[0,94],[0,28],[0,116],[1,61],[-1,36],[0,93],[0,70],[0,134],[0,39],[0,120],[0,114],[0,18],[0,49],[0,79],[7,173],[0,56],[0,231],[0,106],[0,83],[0,43],[0,21],[-1,108],[0,48],[0,74],[0,29],[0,31],[0,164],[1,103],[-1,188],[0,76],[0,92],[0,151],[0,162],[1,96],[0,198],[0,43],[2,101],[1,118],[0,7],[0,19],[0,26],[-1,18],[0,35],[0,148],[0,203],[0,45],[0,3],[0,47],[0,52],[0,180],[1,728],[0,159],[1,320],[0,47],[0,30],[-1,18],[0,384],[0,9],[0,47],[0,2],[0,32],[0,18],[0,103],[0,90],[0,95],[0,234],[0,191],[-17,71],[0,46],[0,140],[0,247],[0,285],[0,36],[-6,174],[0,258],[1,84],[1,196],[1,684],[3,192],[0,92],[-1,698],[0,18],[1,312],[2,97],[2,215],[2,239],[1,62],[0,39],[0,175],[0,12],[0,36],[0,19]],[[25687,20677],[0,-86],[1,-82],[-2,-166],[1,-207],[0,-250],[1,-109],[-1,-172],[0,-206],[0,-299],[0,-262],[-3,-215],[0,-80],[0,-156],[2,-96],[0,-220],[0,-291],[0,-11],[-1,-127],[-1,-278],[0,-44],[1,-19],[0,-28],[1,-53],[0,-12],[0,-38],[0,-109],[0,-89],[0,-788],[-2,-987],[-1,-82],[0,-50],[2,-237],[2,-59],[1,-34],[-1,-97],[0,-19],[0,-51],[-1,-159],[1,-429],[1,-369],[0,-48],[1,-41],[0,-7],[0,-203],[2,-262],[-3,-212],[1,-198],[0,-36],[0,-111],[1,-34]],[[25690,12459],[-803,260],[-985,314],[-1325,421],[-635,204],[-626,200],[-1359,431],[-729,232],[-774,245],[-776,247],[-695,215],[-1222,389],[-25,8],[-21,6],[-68,22],[-13,4],[-1084,340],[-405,129],[-59,18],[-149,47],[-562,174],[-544,172],[-930,291],[-993,310],[-287,88],[-255,78],[-1025,319],[-184,58],[-1070,336],[-1350,416],[-1320,410],[-1308,403],[-1114,342],[-823,253],[-640,196],[0,-1],[-1091,330],[-335,102],[-50,15],[-11,3],[-1,3],[-1,8],[-2,12],[-2,24],[2,6],[8,20],[4,10],[8,8],[3,3],[2,3],[2,3],[0,4],[0,6],[-1,5],[-16,54],[-1,6],[-3,4],[-4,10],[-2,2],[-11,12],[-11,11],[-13,13],[-3,3],[-1,2],[-2,5],[0,5],[1,5],[1,3],[2,3],[5,3],[12,5],[9,3],[8,2],[12,1],[14,-1],[15,-1],[7,-1],[16,-6],[11,-3],[6,-1],[6,0],[8,1],[11,3],[9,3],[9,4],[8,4],[50,23],[2,2],[3,2],[2,2],[6,10],[6,10],[3,7],[2,5],[4,14],[0,4],[0,4],[-1,5],[-2,11],[-2,8],[-1,6],[-6,6],[-10,6],[-3,2],[-4,2],[-23,3],[-22,2],[-12,1],[-10,2],[-10,2],[-7,1],[-8,3],[-5,2],[-6,5],[-11,8],[-1,1],[-47,100],[-2,4],[-1,4],[0,5],[2,5],[1,3],[43,43],[23,16],[12,8],[4,2],[1,2],[29,31],[71,78],[5,9],[3,6],[1,4],[3,55],[-1,2],[-2,2],[-13,11],[-9,5],[-15,9],[-4,2],[-5,6],[-6,20],[-10,38],[-3,11],[-1,10],[1,2],[2,3],[1,3],[9,11],[6,5],[7,5],[6,4],[6,4],[14,4],[25,7],[66,25],[41,18],[8,3],[6,3],[7,5],[8,6],[2,3],[26,51],[4,8],[3,7],[0,4],[0,24],[-4,109],[-3,84],[-2,5],[-4,4],[-6,2],[-5,2],[-4,0],[-7,-1],[-2,0],[-7,-2],[-4,-2],[-3,-3],[-4,-6],[-2,-2],[-2,-7],[-1,-8],[-1,-15],[-3,-7],[-37,-30],[-5,-3],[-8,-6],[-98,-60],[-49,-29],[-6,-2],[-31,-8],[-8,-1],[-7,0],[-8,2],[-7,2],[-12,2],[-7,2],[-3,2],[-4,2],[-15,13],[-5,7],[-6,8],[-3,5],[-4,9],[-3,9],[-3,12],[2,41],[3,16],[3,13],[4,14],[2,6],[3,9],[4,6],[4,5],[12,6],[22,12],[14,7],[42,18],[57,28],[11,6],[6,5],[5,5],[7,9],[2,5],[3,5],[3,6],[9,16],[3,7],[3,10],[2,11],[-2,9],[-3,8],[-4,5],[-8,8],[-12,11],[-12,12],[-4,4],[-2,5],[-2,5],[-1,4],[1,4],[2,9],[2,9],[4,7],[5,8],[6,11],[6,11],[11,13],[23,31],[5,9],[3,10],[11,65],[0,9],[-2,17],[-5,14],[-29,70],[-2,5],[-3,4],[-2,1],[-13,5],[-20,7],[-13,3],[-11,4],[-14,6],[-8,5],[-4,4],[-20,33],[-2,5],[-26,220],[2,15],[5,15],[10,31],[18,33],[4,7],[9,6],[113,54],[7,3],[7,0],[11,-1],[21,-9],[10,-5],[26,-15],[18,-12],[16,-9],[9,-3],[11,-3],[10,-2],[11,1],[7,2],[115,40],[29,67],[1,13],[3,11],[7,17],[5,9],[3,4],[12,16],[10,10],[15,14],[12,9],[13,8],[84,50],[64,37],[11,6],[12,8],[17,12],[5,4],[31,25],[10,9],[7,6],[6,12],[5,11],[1,7],[-1,7],[-1,8],[-7,9],[-9,13],[-7,12],[-4,8],[-1,12],[1,7],[4,8],[5,5],[5,5],[59,55],[9,8],[20,15],[15,11],[11,8],[12,7],[8,5],[5,3],[6,3],[19,10],[10,6],[18,11],[17,11],[10,8],[11,11],[11,14],[15,22],[3,4],[7,10],[7,12],[4,9],[38,118],[3,19],[11,50],[0,14],[3,29],[2,9],[3,12],[6,10],[69,106],[46,70],[3,4],[6,6],[9,5],[11,5],[8,5],[4,3],[7,7],[6,6],[7,9],[5,9],[20,33],[13,22],[10,19],[7,17],[18,46],[1,4],[0,3],[0,15],[-1,25],[-2,16],[0,8],[1,6],[2,4],[3,5],[4,7],[13,15],[4,4],[41,48],[23,27],[39,46],[8,14],[21,38],[10,20],[2,6],[8,17],[1,0],[27,43],[29,87],[25,62],[31,43],[14,12],[37,31],[29,37],[18,37],[18,32],[47,59],[36,31],[42,-10],[66,-48],[49,-31],[58,-48],[18,-2],[23,-3],[53,-3],[20,-1],[125,-28],[23,-4],[87,-18],[28,-3],[50,-6],[63,-2],[61,-3],[132,-15],[89,-14],[102,-5],[84,-12],[98,-23],[57,-8],[24,-3],[15,-3],[36,-5],[3,0],[31,-4],[44,0],[2,0],[0,1],[0,1],[-3,13],[13,29],[4,11],[7,55],[22,-3],[550,7],[1,130],[298,0],[1,128],[438,6],[9,124],[205,3],[-2,8],[-20,133],[-6,38],[-26,55],[-33,68],[-10,69],[13,125],[0,105],[16,40],[33,50],[19,13],[43,32],[56,49],[29,45],[25,39],[49,68],[24,34],[20,19],[58,55],[81,34],[197,87],[73,64],[3,2],[279,242],[82,78],[43,380],[13,120],[-5,45],[14,123],[25,220],[9,82],[0,6],[1,37],[4,94],[-9,43],[-17,48],[-5,4],[-51,43],[-75,61],[-68,64],[-20,28],[-15,22],[-6,17],[-39,118],[-6,33],[23,65],[28,34],[21,25],[37,45],[22,27],[34,43],[7,10],[11,20],[31,61],[11,46],[8,29],[0,40],[0,46],[0,38],[-2,9],[-4,30],[-3,16],[0,2],[-29,79],[0,1],[-4,1],[-47,28],[-40,8],[-5,1],[-66,-17],[-31,-18],[-16,-10],[-31,-18],[-7,-3],[-23,-6],[-42,-13],[-28,-8],[-5,-1],[-46,21],[-20,26],[-5,13],[-13,35],[-33,147],[-1,4],[-3,22],[-5,40],[-12,87],[-13,60],[-9,39],[-5,19],[-6,20],[-7,68],[-15,39],[-62,128],[-25,51],[-12,15],[-95,120],[-55,45],[-1,1]],[[75636,20833],[-69,1],[-217,2],[-71,0],[-325,3],[-44,0],[-75,1],[-47,0],[-7,0],[-102,-5],[-29,0],[-25,0],[-77,0],[-477,-1],[-58,-1],[-86,0],[-5,0],[-34,-1],[-42,0],[-5,0],[-47,0],[-22,0],[-34,0],[-91,0],[-312,0],[-50,1],[-201,0],[-138,-1],[-18,-1],[-24,2],[-20,-1],[-270,3],[-26,0],[-146,-2],[-28,0],[-56,1],[-21,0],[-71,0],[-125,0],[-125,0],[-91,-1],[-107,-1],[-77,0],[-133,1],[-78,0],[-130,-3],[-259,0],[-216,-1],[-224,1],[-253,-4],[-447,2],[-92,0],[-58,1],[-433,1],[-249,1],[-306,2],[-48,0],[-1,-45],[-48,0],[-191,0],[-52,0],[-33,0],[-45,1],[-39,1],[-35,1],[-36,0],[-37,1],[-24,0],[-59,0],[-23,-1],[-46,1],[-45,0],[-147,-1],[-20,0],[-24,0],[-59,0],[-19,0],[-55,1],[-39,0],[-22,0],[-29,0],[-25,-1],[-17,0],[-37,0],[-68,-1],[-34,0],[-19,0],[-16,0],[-17,0],[-28,0],[-1,0],[-39,0],[-8,0],[-13,-1],[-70,-1],[-158,-2],[-88,-1],[-182,-3],[-112,-1],[-23,0],[-80,1],[-159,1],[-27,0],[-194,1],[-55,0],[-24,0],[-29,0],[-22,-1],[-26,0],[-305,4],[-175,0],[-58,0],[-138,0],[-135,0],[-566,1],[-95,0],[-40,0],[-163,0],[-311,0],[-161,-1],[-19,8],[-264,3],[-140,1],[-140,2],[0,-84],[0,-54],[0,-44],[-23,0],[-95,0],[-173,-2],[-74,0],[-9,0],[-10,-1],[-31,-1],[-1,0],[-49,-1],[-14,0],[-87,0],[-4,1],[-5,-2],[-48,0],[-60,1],[-118,0],[-23,0],[-67,1],[-276,-1],[-25,0],[-45,0],[-29,0],[-311,-3],[-29,0],[-33,0],[-55,1],[-18,0],[-28,0],[-58,1],[-9,1],[-24,0],[-3,0],[-2,0],[-22,0],[-26,0],[-11,0],[-35,0],[-8,0],[-30,0],[-58,0],[-223,0],[-154,-1],[-146,-1],[-80,2],[-146,0],[-72,1],[-56,0],[-211,-2],[-9,0],[-15,0],[-4,0],[-79,0],[-113,0],[-44,1],[-41,0],[-113,1],[-18,0],[-16,0],[-65,0],[-16,0],[-20,0],[-66,0],[-55,0],[-95,0],[-357,-1],[-186,0],[-439,-1],[-289,0],[-194,-1],[-106,0],[-80,0],[-22,0],[-288,0],[-71,0],[-39,2],[-68,0],[-188,0],[-193,0],[-443,1],[-105,0],[-191,0],[0,94],[-359,0],[-236,0],[-68,0],[-162,1],[-135,0],[-18,0],[-134,1],[-83,1],[-894,-6],[-203,1],[-190,0],[-32,0],[-74,0],[-100,1],[-43,0],[-269,0],[-25,0],[-119,2],[-265,0],[-159,0],[-161,0],[-140,0],[-35,-1],[-61,0],[-151,0],[-43,0],[-173,0],[-27,0],[-563,-2],[-371,1],[-294,0],[-125,2],[-34,0],[-25,0],[-91,0],[-366,-1],[-315,0],[-54,0],[-7,0],[-10,0],[-25,0],[-13,0],[-15,0],[-14,0],[-18,0],[-28,-1],[-18,0],[-3,0],[-691,-1],[-37,0],[-52,0],[-155,0],[-537,0],[-921,2],[-120,0],[-104,0],[-151,0],[-126,0],[-374,0],[-482,0],[-45,0],[-155,0],[-296,0]],[[75632,19309],[-2,-160],[-1,-129],[0,-118],[0,-221],[0,-88],[0,-6],[0,-39],[0,-7],[1,-57],[2,-96],[9,-547],[1,-56],[-1,-28],[0,-150],[0,-764],[-1,-325],[0,-24],[0,-244],[56,0],[1,-29],[1,-37],[1,-328],[3,-91],[-1,-134],[3,-130],[-1,-128],[0,-62],[0,-124],[-2,-223],[-2,-284],[-1,-27],[-2,-59],[0,-7],[0,-10],[1,-52],[0,-2],[1,-101],[-7,-221],[-7,-221],[-1,-37],[-1,-54],[-2,-76],[-8,-289],[-7,-257],[-2,-85],[-25,-1],[-5,0],[0,-18],[-1,-26],[0,-6],[0,-35],[0,-17],[0,-28],[0,-2],[-2,-123],[2,-172],[0,-66],[1,-36],[-1,-31],[1,-72],[0,-97],[0,-309],[0,-73],[-1,-70],[0,-166],[1,-57],[0,-2],[2,-173],[1,-38],[0,-16],[0,-9],[1,-164],[0,-121],[0,-21],[1,-78],[0,-24],[0,-29],[1,-125],[0,-58],[1,-66],[0,-146],[2,-342],[1,-96],[1,-167],[0,-77],[2,-376],[0,-21],[0,-55],[-2,-365],[-3,-315],[-3,-263],[0,-62],[-20,0],[0,-258],[0,-154],[0,-163],[-1,-449],[0,-175],[4,-28],[1,-4],[1,-65],[1,-27],[0,-40],[0,-10],[4,-158]],[[75628,7037],[-472,1],[-128,1],[-33,1],[-54,-2],[-65,-2],[-106,-4],[-36,0],[-137,1],[-157,1],[-1131,8],[-43,0],[-1,0],[-270,2],[-72,0],[-208,1],[-62,1],[-49,-5],[-145,1],[-139,0],[-230,1],[-27,0],[-31,0],[-9,0],[-286,0],[-55,1],[-79,0],[-1155,3],[-154,0],[-491,-1],[-333,0],[-56,0],[-25,0],[-30,0],[-29,-1],[-18,0],[-383,0],[-68,0],[-232,0],[1,-89],[-241,1],[-50,1],[-40,0],[-25,1],[-30,1],[-43,-1],[-14,0],[-11,0],[-140,0],[-141,0],[-355,0],[-427,-1],[-80,0],[-169,-1],[-255,0],[-145,0],[-89,0],[-93,-1],[-48,0],[-118,0],[-24,0],[-183,-3],[-95,-1],[-347,-3],[-13,-1],[-25,0],[-23,0],[-167,-2],[-100,0],[-6,0],[-11,0],[-19,0],[-43,0],[-293,2],[-70,-1],[-27,1],[-36,0],[-30,1],[-19,-1],[-61,0],[-80,-1],[-140,-1],[-46,-1],[-57,0],[-134,-2],[-117,4],[-23,0],[-41,0],[-213,-1],[-284,-1],[-106,-1],[0,-36],[-1,-72],[0,-101],[0,-111],[0,-5],[0,-791],[0,-38],[-1,-395],[-4,1],[5,-215],[4,-124],[-1,-275],[0,-247],[-1,-252],[0,-84],[0,-97],[0,-249],[22,-107],[-1,-26],[-15,-375],[-731,-5],[-328,-2],[-158,-1],[-1,0],[-288,-1],[-98,0],[-21,0],[-235,0],[-7,0],[-13,1],[-15,0],[-4,0],[-11,-1],[-32,0],[-148,0],[-54,0],[-77,0],[-262,0],[-240,0],[-45,0],[-481,-1],[-205,1],[-61,0],[0,-108],[-3,-11],[-2,-255],[1,-88],[0,-124],[1,-197],[2,-439],[1,-185],[1,-224],[-1,-49]],[[59775,1656],[-262,87],[-218,72],[-435,138],[-721,236],[-782,254],[-613,195],[-51,17],[-732,237],[-346,115],[-943,305],[-937,302],[-426,138],[-378,121],[-2037,653],[-1248,398],[-664,215],[-800,256],[-695,223],[-619,194],[-898,286],[-783,249],[-1033,325],[-908,288],[-925,292],[-445,140],[-267,84],[-91,29],[-678,215],[-659,204],[-702,221],[-287,93],[-55,18],[-910,280],[-339,110],[-895,279],[-648,202],[-401,124],[-508,156],[-795,247],[-25,8],[-224,72],[-201,63],[-870,271],[-771,239],[-582,176],[-769,239],[-1000,307],[-565,176],[-852,257],[-733,238],[-233,75],[-802,257],[-1324,427]],[[99958,19292],[-1,-217],[0,-226],[0,-36],[0,-26],[-1,-117],[0,-41],[0,-241],[-1,-469],[0,-58],[0,-67],[0,-43],[-1,-342],[-1,-219],[0,-36],[0,-49],[0,-72],[0,-34],[0,-21],[0,-215],[0,-62],[-1,-300],[0,-162],[0,-55],[-1,-311],[0,-49],[0,-16],[0,-26],[0,-4],[0,-1],[0,-2],[0,-19],[0,-26],[0,-48],[0,-1],[-1,-61],[0,-127],[0,-258],[-1,-139],[0,-266],[-1,-217],[0,-269],[-1,-364],[0,-278],[-1,-356],[0,-88],[0,-40],[-1,-128],[0,-65],[0,-12],[-1,-77],[-6,-664],[0,-23],[2,-233],[1,-22],[0,-109],[0,-63],[2,-45],[0,-2],[0,-77],[-1,-305],[0,-74],[0,-44],[0,-99],[-2,-547],[0,-80],[0,-168],[-1,-410],[-1,-398],[-5,-94],[0,-47],[0,-25],[-1,-41],[0,-35],[0,-38],[0,-87],[0,-27],[0,-135],[0,-24],[0,-36],[0,-47],[0,-41],[0,-23],[0,-29],[0,-20],[0,-37],[0,-30],[0,-23],[0,-58],[0,-32],[-1,-76],[0,-57],[0,-19],[0,-29],[0,-28],[0,-11],[0,-13],[0,-29],[0,-26],[0,-29],[0,-32],[-1,-61],[-1,-24],[-1,-18],[1,-114],[5,-499],[-1,-210],[0,-328],[0,-168],[0,-184],[0,-67],[-1,-105],[-1,-187],[0,-168],[-1,-138],[0,-54],[1,-248],[1,-354],[0,-23],[0,-3],[-1,-16],[0,-160],[0,-30],[-1,-228],[0,-91],[-1,-65],[-1,-172],[-2,-305],[1,-296],[1,-93],[0,-31],[0,-101],[-4,-223],[-3,-179],[0,-131],[-2,-269],[-6,-345],[3,-154],[0,-101],[1,-144],[0,-159],[0,-182],[-1,-346],[-1,-106],[0,-309],[-1,-348],[1,-24],[0,-424],[0,-2],[0,-45],[1,-263],[-665,0],[-25,1],[-663,6],[-1035,9],[-731,11],[-480,4],[-158,1],[-357,0],[-228,0],[-863,1],[-846,0],[-242,0],[-670,0],[-1100,0],[-726,0],[-41,1],[-248,0],[-102,0],[-418,0],[-1151,0],[-1217,0],[-123,0],[-506,0],[-728,0],[-936,0],[-1034,1],[-178,0],[-85,0],[-280,0],[-270,0],[-602,0],[-1192,0],[-663,1],[-476,0],[-132,0],[-908,-4],[-884,-4],[-394,-1],[-934,-4],[-426,-7],[-508,-2],[-569,-2],[-611,-3],[-30,0]],[[75481,9],[0,207],[0,180],[0,191],[0,164],[6,7],[-1,144],[0,296],[0,67],[0,107],[0,222],[0,99],[0,227],[0,31],[-1,373],[0,57],[0,45],[-17,0],[1,47],[0,33],[2,348],[0,108],[0,62],[0,1],[0,73],[0,165],[0,123],[1,178],[0,386],[1,238],[0,273],[0,145],[0,134],[1,197],[1,34],[20,-1],[124,-1],[3,197],[1,102],[0,14],[0,28],[0,49],[0,18],[0,66],[0,77],[0,66],[1,223],[0,158],[3,216],[1,68],[-2,30],[0,62],[0,23],[-3,160],[0,72],[1,84],[0,2],[0,67],[4,286]],[[75481,9],[-504,0],[-278,-1],[-646,1],[-604,1],[-319,0],[-47,0],[-489,2],[-1113,4],[-361,1],[-555,6],[-705,3],[-752,2],[-338,1],[-95,-1],[-845,-14],[-446,-5],[-197,-2],[-46,0],[-28,0],[-67,0],[-254,-1],[-70,0],[-175,-1],[-99,0],[-773,-3],[-803,-2],[-41,0],[-67,27],[-963,315],[-624,202],[-968,317],[-910,297],[-433,143],[-521,167],[-570,188]],[[11749,52381],[-158,134],[-39,22],[-56,43],[-75,58],[-13,43],[-52,90],[-23,39],[-41,70],[-40,74],[-15,30],[-17,36],[-38,53],[-26,36],[-77,84],[-61,42],[-81,44],[-104,34],[-15,9],[-71,41],[-22,15],[-37,28],[-2,0],[-124,11],[-121,8],[-106,26],[-108,35],[-62,52],[-29,54],[-9,16],[-42,67],[-63,54],[-88,75],[-92,69],[-25,13],[-59,33],[-51,45],[-47,50],[-29,31],[-32,37],[-34,28],[-56,20],[-70,8],[-40,1],[-108,3],[-68,19],[-48,20],[-38,33],[-12,11],[-34,64],[-5,48],[-2,28],[-3,32],[-51,72],[-96,85],[-109,56],[-47,25],[-73,44],[-75,33],[-42,13],[-50,10],[-44,8],[-29,46],[-24,47],[-26,49],[-40,49],[-28,24],[-25,15],[-35,15],[-47,6],[-69,-6],[-71,-16],[-57,-3],[-76,-8],[-50,-13],[-69,-19],[-84,-9],[-94,-12],[-30,19],[-103,85],[-14,15],[-54,53],[-27,34],[-10,39],[10,41],[35,86],[14,34],[17,37],[18,70],[7,40],[-2,19],[-4,35],[-18,130],[0,13],[2,54],[13,78],[22,68],[47,120],[-2,44],[-2,99],[-1,37],[-6,31],[-36,185],[-93,142],[-51,78],[-25,44],[-33,57],[-98,175],[-12,22],[-44,73],[-67,112],[-52,35],[-144,94],[-86,56],[-15,10],[-3,3],[-26,27],[-193,193],[-8,9],[-12,52],[29,8],[84,24],[40,11],[26,20],[11,8],[1,0],[17,27],[2,126],[0,17],[-7,7],[-55,53],[-15,14],[-42,28],[-58,41],[-3,2],[-2,1],[-30,20],[-37,26],[-3,2],[-20,94],[-8,19],[-18,40],[4,39],[6,32],[7,39],[-1,43],[-10,47],[-33,59],[-42,43],[-59,60],[-27,23],[-86,56],[-46,34],[-4,16],[2,12],[16,23],[36,24],[53,44],[18,27],[9,26],[-7,17],[-29,29],[-25,25],[-11,18],[-5,21],[1,45],[-12,24],[-26,46],[-42,55],[-47,54],[-25,38],[-27,60],[-15,46],[-1,3],[-7,29],[-9,35],[-5,17],[-9,36],[-4,26],[-1,25],[-3,34],[-5,35],[-24,52],[-17,30],[-47,31],[-12,2],[-43,6],[-66,3],[-14,2],[-51,8],[-57,33],[0,1],[-24,46],[-3,7],[-3,7],[-20,61],[-8,9],[-23,26],[-17,10],[-76,36],[-49,30],[-30,11],[-138,48],[-77,35],[-33,20],[-9,9],[-47,47],[-100,125],[-25,21],[-48,46],[-63,37],[-126,80],[-115,85],[-92,81],[-103,123],[-36,60],[-29,49],[-28,46],[-12,33],[-11,31],[-56,80],[-32,45],[-20,42],[-8,22],[-16,54],[-14,43],[-14,39],[-5,54],[-17,82],[-14,59],[-25,66],[-34,76],[-30,61],[-40,67],[-54,86],[-32,36],[-81,76],[-86,65],[-97,63],[-45,21],[-97,46],[-74,36],[-50,26],[-62,41],[-45,42],[-36,30],[-48,54],[-36,55],[-42,98],[-14,93],[-14,95],[1,60],[16,80],[22,75],[42,97],[13,42],[10,48],[4,59],[-44,154],[-3,56],[14,100],[15,55],[32,108],[-1,108],[-24,72],[-34,99],[-32,78],[-4,99],[7,59],[21,65],[28,69],[23,56],[13,48],[10,41],[3,35],[-1,59],[-4,49],[-12,44],[-8,21],[-34,77],[-27,22],[-25,85],[-22,60],[-4,18],[-7,42],[-5,39],[-3,39],[0,41],[-5,45],[9,48],[1,21],[2,19],[21,44],[10,32],[17,42],[18,33],[15,24],[15,23],[23,36],[15,16],[13,23],[19,21],[14,18],[23,19],[107,77],[27,20],[22,15],[16,10],[27,15],[46,25],[17,8],[24,18],[45,44],[34,49],[19,44],[10,40],[3,37],[-5,32],[-17,58],[-10,20],[-14,20],[-19,23],[-23,27],[-27,24],[-62,51],[-42,30],[-50,31],[-71,38],[-57,20],[-27,11],[-83,38],[-59,17],[-61,16],[-17,7],[-28,20],[-21,10],[-15,17],[-15,16],[-18,20],[-16,22],[-3,18],[12,22],[16,33],[14,16],[23,16],[33,28],[36,45],[28,28],[40,34],[25,23],[24,24],[22,11],[18,10],[27,11],[26,10],[19,5],[35,15],[25,10],[42,8],[19,1],[22,0],[41,0],[38,-1],[25,-1],[131,-6],[34,7],[30,-4],[26,2],[17,4],[139,31],[25,8],[60,22],[32,15],[27,13],[28,12],[28,23],[8,16],[11,22],[0,1],[6,8],[41,61],[16,38],[10,25],[6,19],[-6,22],[-13,33],[-5,24],[2,23],[5,27],[41,155],[16,60],[13,57],[5,45],[6,63],[2,44],[0,8],[1,24],[-9,102],[0,87],[-7,50],[-12,38],[-9,26],[-9,39],[0,22],[-2,20],[-4,48],[-2,19],[1,20],[-1,3],[-4,21],[-19,29],[-15,24],[-3,29],[-13,22],[-26,11],[-37,13],[-16,14],[-4,18],[-2,19],[-1,80],[-7,46],[0,35],[-24,70],[-24,81],[-6,19],[0,22],[9,19],[8,19],[1,24],[-11,85],[-12,16],[-14,26],[-8,18],[-4,23],[-5,50],[-3,12],[-6,23],[3,54],[3,21],[0,44],[-1,37],[-9,42],[-6,40],[-9,31],[-6,24],[-22,42],[-19,44],[-11,35],[-9,44],[-8,34],[-18,77],[-3,11],[-10,46],[-9,27],[-23,40],[-10,31],[-10,35],[-7,46],[-11,89],[1,64],[6,45],[8,45],[22,239],[0,42],[-7,40],[-34,116],[-39,141],[-28,83],[-41,124],[-4,11],[-11,31],[-27,78],[-23,49],[-34,70],[-30,66],[-33,57],[-21,31],[-47,69],[-12,19],[-5,20],[-4,24],[-1,33],[-6,45],[-6,41],[-33,132],[-15,46],[-32,68],[-15,34],[-21,48],[-28,39],[-30,17],[-24,22],[-27,25],[-325,265],[-35,35],[-11,19],[-7,16],[-1,32],[-3,22],[-5,17],[-18,27],[-48,61],[-36,30],[-27,21],[-20,30],[-11,24],[-7,29],[-5,40],[4,31],[2,21],[-6,21],[-16,26],[-17,15],[-19,39],[8,30],[9,17],[12,31],[1,18],[-2,19],[-6,19],[-25,34],[-23,20],[-23,18],[-40,29],[-14,19],[-7,18],[2,18],[7,20],[17,31],[5,19],[-2,22],[-28,64],[-40,50],[-12,13],[-7,19],[4,27],[8,22],[-10,19],[-16,18],[-7,19],[-9,23],[0,31],[-3,20],[0,22],[3,20],[4,25],[6,24],[5,29],[4,29],[2,36],[5,34],[15,27],[10,19],[37,39],[14,12],[41,30],[15,12],[17,7],[35,-4],[20,3],[24,18],[10,18],[19,40],[11,22],[31,21],[18,22],[19,28],[11,28],[5,26],[-5,36],[-12,20],[-15,21],[-15,19],[-13,21],[-8,22],[-5,22],[-7,29],[-2,20],[8,37],[0,22],[-5,21],[-6,23],[-4,19],[0,35],[0,23],[-8,28],[-17,42],[-2,19],[8,29],[5,19],[-7,26],[-16,37],[-5,21],[-31,56],[-38,48],[-28,22],[-27,11],[-40,26],[-17,12],[-15,19],[13,21],[50,30],[33,20],[22,5],[22,10],[25,14],[47,16],[28,4],[38,14],[15,22],[8,17],[30,63],[18,35],[18,31],[11,34],[3,33],[-4,46],[-7,23],[3,29],[10,22],[3,18],[-1,26],[-7,36],[-23,41],[-23,35],[-12,18],[-25,29],[-13,15],[-21,14],[-23,6],[-29,1],[-30,14],[-13,21],[-14,21],[-25,67],[-11,20],[-22,34],[-32,45],[-20,37],[-29,51],[-26,38],[-20,23],[-31,29],[-23,16],[-52,34],[-41,22],[-33,31],[-17,18],[-9,19],[5,27],[-4,32],[-3,25],[-1,13],[-4,35],[-2,20],[-8,47],[1,20],[4,24],[11,19],[12,16],[18,22],[14,18],[17,22],[17,34],[35,68],[13,24],[8,22],[5,16],[13,40],[3,32],[-6,33],[-16,29],[-13,18],[-19,13],[-34,18],[-42,18],[-62,36],[-77,55],[-58,49],[-18,17],[-15,14],[-14,20],[-24,30],[-16,37],[-9,21],[-7,32],[-2,25],[2,23],[11,31],[11,29],[16,42],[19,48],[5,13],[26,63],[17,42],[16,51],[10,32],[8,36],[5,28],[8,47],[2,18],[3,65],[-5,62],[-5,19],[-11,21],[-2,24],[0,14],[0,7],[15,31],[1,19],[14,27],[17,9],[8,24],[-12,23],[-28,23],[-10,15],[-45,101],[-4,8],[-8,25],[-5,25],[-3,37],[0,41],[9,55],[10,51],[3,20],[4,29],[8,65],[3,25],[-1,26],[-14,29],[-27,28],[-30,34],[-19,36],[-27,39],[-48,45],[-50,51],[-9,21],[13,20],[13,15],[14,34],[16,20],[43,25],[36,36],[17,21],[17,45],[28,74],[13,19],[13,20],[33,45],[13,25],[17,30],[4,21],[1,21],[-9,20],[-20,21],[-79,83],[-11,17],[-12,23],[-8,18],[-24,27],[-4,8],[-11,25],[-4,20],[-1,29],[12,26],[16,19],[22,17],[29,12],[32,7],[58,3],[22,5],[16,8],[16,12],[8,19],[9,17],[16,26],[32,22],[30,15],[36,14],[18,8],[52,19],[24,4],[32,2],[38,11],[19,8],[23,5],[19,6],[20,6],[18,8],[8,4],[44,22],[55,24],[35,23],[6,23],[-12,20],[-15,24],[-18,9],[-51,11],[-17,7],[-16,11],[-51,39],[-92,101],[-12,17],[-16,14],[-33,23],[-64,46],[-109,71],[-48,33],[-18,19],[-11,12],[-25,19],[-23,24],[-22,23],[-15,16],[-10,23],[-6,8],[-18,22],[-14,17],[-10,17],[-27,17],[-23,27],[-8,10],[-8,11],[-9,12],[-11,32],[-1,40],[0,13],[2,18],[3,19],[6,29],[5,23],[3,13],[4,81],[-5,32],[-15,15],[-44,35],[-25,20],[-12,9],[-19,16],[-27,22],[-82,39],[-41,20],[-70,35],[-25,15],[-18,9],[-20,24],[-12,20],[-1,14],[-1,8],[7,17],[4,10],[7,31],[29,83],[3,29],[2,26],[-8,19],[-4,27],[-2,9],[-5,18],[-9,31],[-10,17],[-11,17],[-23,32],[-40,39],[-6,5],[-19,18],[-75,108],[-51,141],[-1,19],[-1,7],[-1,14],[9,28],[57,49],[9,29],[-6,15],[-3,8],[-12,30],[-5,23],[0,23],[-12,40],[-1,5],[0,4],[-2,36],[-8,36],[-5,33],[7,36],[3,11],[4,12],[21,34],[24,25],[31,27],[3,3],[0,2],[3,23],[1,7],[0,1],[17,11],[43,26],[78,50],[57,53],[10,10],[29,29],[17,32],[5,10],[-3,5],[-9,18],[-16,17],[-68,33],[-39,42],[-12,12],[-33,22],[-17,9],[-19,2],[-21,0],[-28,-4],[-26,-6],[-20,0],[-22,10],[-14,31],[-10,49],[3,43],[0,11],[14,39],[39,41],[31,23],[34,33],[11,19],[-4,39],[-13,42],[-70,60],[-18,53],[-19,42],[-2,23],[-21,34],[-29,26],[-44,24],[-38,37],[-30,26],[-25,22],[-24,26],[-18,32],[-4,37],[-1,28],[7,28],[8,16],[10,17],[14,20],[13,13],[16,15],[52,58],[66,45],[43,31],[59,43],[43,29],[17,9],[29,10],[43,8],[97,15],[100,16],[34,5],[18,3],[32,1],[18,-1],[52,-1],[19,2],[30,3],[20,8],[22,4],[25,0],[28,5],[24,9],[67,20],[22,6],[18,13],[16,13],[15,9],[35,1],[36,-10],[26,-9],[18,-9],[21,-12],[24,-14],[31,-6],[24,4],[26,9],[24,17],[18,16],[12,12],[27,30],[21,14],[17,10],[18,9],[47,0],[59,2],[24,3],[44,33],[24,33],[40,72],[45,37],[66,42],[46,22],[58,38],[65,31],[32,24],[32,6],[24,2],[19,11],[57,65],[19,26],[16,15],[35,-7],[24,-18],[56,-64],[27,-51],[29,-44],[38,-25],[26,-10],[25,-2],[39,11],[62,31],[6,3],[89,63],[106,84],[27,17],[60,20],[6,1],[49,9],[38,12],[47,21],[21,8],[52,8],[33,21],[31,29],[47,22],[56,18],[35,1],[76,-6],[80,2],[33,14],[10,4],[34,8],[20,-3],[38,-14],[40,-8],[21,-5],[6,1],[29,6],[33,9],[28,5],[69,-2],[29,-6],[53,-21],[27,-17],[3,-5],[8,-17],[21,-7],[39,2],[28,5],[18,2],[162,37],[44,10],[54,-4],[53,-15],[123,-92],[14,-23],[4,-29],[-19,-27],[-37,-14],[-33,-21],[-26,-22],[-9,-8],[-22,-31],[-14,-24],[4,-28],[9,-31],[22,-25],[43,-23],[51,-11],[51,1],[121,25],[73,11],[46,13],[20,6],[97,52],[166,110],[53,10],[52,3],[63,-8],[43,-20],[24,-30],[22,-49],[43,-66],[17,-14],[27,-23],[45,-36],[20,-6],[23,4],[73,42],[69,37],[20,11],[60,35],[86,52],[49,31],[53,56],[32,39],[51,42],[60,26],[46,7],[52,-1],[9,0],[58,-8],[68,-12],[43,-14],[27,-8],[104,-29],[119,-28],[26,1],[32,12],[25,15],[23,11],[28,3],[19,-5],[15,-4],[27,-10],[29,-31],[8,-17],[12,-25],[32,-39],[18,-39],[67,-82],[29,-29],[29,-20],[43,-27],[41,-26],[66,-44],[61,-46],[43,-47],[29,-43],[37,-37],[27,-16],[17,-25],[14,-22],[14,-17],[18,-8],[45,-5],[2,0],[36,-3],[32,-17],[25,-34],[16,-18],[20,-14],[14,-23],[10,-24],[21,-36],[31,-29],[36,-25],[32,-34],[36,-47],[106,-112],[12,-26],[15,-50],[11,-25],[10,-20],[-4,-28],[-25,-45],[-28,-32],[-49,-37],[-37,-25],[-12,-21],[-8,-14],[-13,-38],[-2,-26],[15,-26],[29,-24],[57,-12],[5,0],[128,8],[41,-3],[46,-20],[43,-29],[26,-39],[19,-31],[49,-26],[70,-14],[75,-38],[26,-5],[35,5],[38,7],[28,-4],[25,-13],[23,-31],[11,-50],[-5,-73],[11,-31],[20,-39],[25,-44],[28,-43],[34,-32],[50,-33],[150,-82],[42,-18],[40,-24],[23,-24],[16,-10],[30,-1],[29,1],[22,-7],[18,-7],[18,-17],[4,-4],[26,-5],[34,-3],[27,6],[3,1],[38,18],[26,9],[27,-2],[23,-8],[15,-5],[48,5],[47,6],[37,-3],[34,8],[19,-3],[28,4],[24,10],[78,21],[33,-1],[51,21],[20,0],[109,24],[44,9],[93,47],[64,18],[47,18],[55,32],[28,9],[24,2],[23,-2],[92,6],[39,-2],[22,-5],[33,-6],[67,-23],[46,-21],[23,-10],[34,-1],[21,7],[41,29],[33,36],[5,24],[-2,34],[0,5],[2,38],[17,23],[26,18],[10,4],[37,13],[38,17],[20,23],[24,48],[15,47],[1,26],[-7,32],[-13,56],[-4,49],[0,2],[17,65],[31,83],[30,57],[33,64],[67,78],[33,46],[49,127],[26,54],[23,30],[23,25],[30,34],[40,43],[17,28],[-8,30],[-48,58],[-48,25],[-23,11],[-30,35],[-12,29],[0,3],[1,45],[14,45],[41,54],[6,4],[37,24],[149,69],[121,-1],[22,6],[38,20],[23,60],[54,136],[31,67],[3,7],[21,51],[8,20],[33,41],[37,37],[38,39],[32,61],[65,136],[42,65],[44,113],[61,106],[39,64],[23,38],[4,6],[60,86],[46,49],[40,20],[46,15],[34,9],[49,26],[86,27],[0,5],[0,60],[0,25],[-1,51],[1,110],[-1,46],[0,225],[0,147],[3,243],[-2,34],[-4,65],[-10,155],[-10,204],[-3,59],[0,155],[-1,99],[2,51],[2,59],[1,18],[2,71],[2,52],[12,127],[4,91],[1,49],[-12,243],[1,174],[0,78],[12,261],[8,188],[2,67],[6,102],[1,23],[0,84],[0,45],[2,255],[3,253],[-1,280],[-1,238],[-2,252],[-3,128],[-9,125],[-13,162],[-7,94],[-2,137],[-2,129],[-8,191],[-1,34],[-1,34],[-1,207],[0,48],[-7,319],[-4,193],[-5,182],[-2,78],[-4,165],[-9,332],[-1,33],[-4,206],[0,29],[-6,255],[-8,309],[-2,85],[-9,366],[-1,34],[-5,223],[-3,135],[-4,123],[-1,259],[1,255],[-1,51],[-3,111],[-2,54],[0,35],[5,354],[2,157],[-1,256],[0,18],[-1,36],[0,10],[-1,137],[-1,37],[0,70],[0,40],[0,7],[0,23],[0,1],[0,33],[0,66],[0,22],[0,63],[-4,261],[1,561],[-3,357],[1,141],[4,666],[1,120],[1,50],[0,20],[1,105],[-10,752],[7,0],[10,0],[439,2],[62,-1],[28,-1],[26,1],[225,-1],[41,0],[25,1],[14,-1],[40,-1],[32,0],[1,0],[517,-6],[83,-1],[122,0],[155,0],[143,0],[26,0],[237,0],[97,0],[16,0],[59,0],[190,0],[24,0],[28,0],[382,0],[32,0],[477,0],[1160,1],[254,0],[155,0],[88,0],[252,0],[35,0],[491,0],[32,0],[3,0],[448,0],[92,0],[86,0],[295,0],[432,0],[22,0],[47,0],[3,0],[316,0],[38,0],[146,0],[154,0],[58,0],[144,0],[501,0],[218,0],[89,0],[60,0],[370,0],[96,0],[175,0],[2,0],[103,0],[170,0],[59,0],[41,0],[38,0],[7,0],[23,0],[217,0],[170,0],[3,0],[12,0],[77,0],[380,0],[87,0],[182,0],[208,0],[2,0],[114,0],[85,0],[19,0],[557,0],[86,0],[203,0],[248,0],[252,0],[246,0],[59,0],[411,0],[40,0],[104,0],[77,0],[95,0],[19,0],[111,0],[167,0],[130,0],[54,0],[62,0],[125,0],[72,0],[45,0],[40,0],[56,0],[83,0],[58,0],[93,0],[199,0],[493,0],[19,0],[24,0],[20,0],[58,0],[425,0],[91,0],[152,0],[53,0],[17,0],[258,0],[28,0],[33,0],[134,0],[98,0],[490,0],[43,0],[39,0],[61,0],[91,0],[19,0],[38,2],[18,0],[36,0],[19,0],[27,0],[35,1],[29,0],[31,0],[38,0],[48,0],[29,0],[21,0],[17,0],[39,0],[62,0],[23,0],[55,1],[49,0],[46,0],[12,0],[8,0],[22,0],[39,0],[32,0],[104,0],[273,1],[37,0],[126,0],[56,1],[382,1],[62,0],[260,1],[149,1],[247,0],[555,0],[98,0],[259,0],[679,0],[327,-1],[452,2],[1529,0],[27,0],[58,0],[101,1],[171,2],[106,0],[880,-1],[192,1],[49,0],[82,-1]]],"transform":{"scale":[0.0000577114481644827,0.000056722293352933955],"translate":[-114.81629947499994,31.332081677000076]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ca-counties.json b/src/js/config/mapconfig/mapfiles/county/ca-counties.json new file mode 100644 index 00000000..2277992b --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ca-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-124.40917464699993,32.534270766000134,-114.13119958999994,42.009505681000064],"geometries":[{"type":"Polygon","properties":{"name":"CA"},"id":"06093","arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06015","arcs":[[-5,6,7]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06049","arcs":[[8,9,-1,10]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06023","arcs":[[[11]],[[12]],[[-4,13,14,15,-7]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06105","arcs":[[16,17,18,-14,-3]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06035","arcs":[[19,20,21,22,-9]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06089","arcs":[[-10,-23,23,24,-17,-2]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06103","arcs":[[25,26,27,28,-18,-25]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06063","arcs":[[-22,29,30,31,-26,-24]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06007","arcs":[[32,33,34,35,-27,-32]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06045","arcs":[[-19,-29,36,37,38,39,-15]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06021","arcs":[[-36,40,41,-37,-28]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06091","arcs":[[-21,42,43,44,-30]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06115","arcs":[[-45,45,46,47,-33,-31]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06033","arcs":[[48,49,50,51,-38,-42]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06057","arcs":[[52,53,-46,-44]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06011","arcs":[[-35,54,55,-49,-41]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06061","arcs":[[56,57,58,59,-47,-54]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06101","arcs":[[-48,-60,60,61,-55,-34]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06017","arcs":[[62,63,64,65,-58]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06003","arcs":[[66,67,68,69,-64,70]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06113","arcs":[[-62,71,72,73,-50,-56]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06055","arcs":[[74,75,76,77,78,-51,-74]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06097","arcs":[[-52,-79,79,80,81,-39]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06067","arcs":[[[82]],[[83]],[[84]],[[85,86,87,88,-72,-61,-59,-66]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06051","arcs":[[89,90,91,92,-67,93]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06005","arcs":[[-70,94,95,-86,-65]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06095","arcs":[[[96]],[[97]],[[98]],[[99]],[[100]],[[101,-77]],[[-89,102,-75,-73]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06009","arcs":[[-69,103,104,105,-95]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06109","arcs":[[-93,106,107,108,-104,-68]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06041","arcs":[[[109]],[[110,-81]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06077","arcs":[[-96,-106,111,112,113,114,-87]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06013","arcs":[[[115]],[[116]],[[-114,117,118]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06099","arcs":[[119,120,121,-112,-105,-109]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06001","arcs":[[[122]],[[123]],[[-113,-122,124,125,-118]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06043","arcs":[[126,127,-108]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06075","arcs":[[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134,135]],[[136]],[[137]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06039","arcs":[[-92,138,139,-127,-107]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06081","arcs":[[140,141,142,143,-135]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06047","arcs":[[-140,144,145,146,-120,-128]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06019","arcs":[[147,148,149,150,151,-145,-139,-91]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06085","arcs":[[-121,-147,152,153,-142,154,-125]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06027","arcs":[[155,156,157,158,-148,-90]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06087","arcs":[[159,160,161,-143,-154]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06069","arcs":[[-146,-152,162,-160,-153]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06053","arcs":[[-163,-151,163,164,165,-161]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06107","arcs":[[166,167,-149,-159]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06031","arcs":[[168,169,-164,-150,-168]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06071","arcs":[[170,171,172,173,-157,174]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06079","arcs":[[-170,175,176,177,-165]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06029","arcs":[[-174,178,179,180,-176,-169,-167,-158]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06083","arcs":[[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[-181,187,188,-177]]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06111","arcs":[[[189]],[[190]],[[191]],[[192]],[[193]],[[194,-188,-180,195]]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06037","arcs":[[[196]],[[197]],[[198]],[[199]],[[-173,200,201,-196,-179]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06065","arcs":[[202,203,204,-171,205]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06059","arcs":[[[206]],[[207]],[[-172,-205,208,209,-201]]]},{"type":"MultiPolygon","properties":{"name":"CA"},"id":"06073","arcs":[[[210]],[[211]],[[212]],[[213,214,-209,-204]]]},{"type":"Polygon","properties":{"name":"CA"},"id":"06025","arcs":[[-214,-203,215]]}]},"states":{"type":"GeometryCollection","bbox":[-124.40917464699993,32.534270766000134,-114.13119958999994,42.009505681000064],"geometries":[{"type":"MultiPolygon","properties":{"name":"California"},"id":"06","arcs":[[[210]],[[211]],[[212]],[[196]],[[189]],[[197]],[[181]],[[206]],[[207]],[[198]],[[199]],[[190]],[[191]],[[192]],[[182]],[[183]],[[184]],[[185]],[[186]],[[193]],[[128]],[[129]],[[130]],[[131]],[[132]],[[122]],[[133]],[[123]],[[136]],[[137]],[[109]],[[82]],[[115]],[[116]],[[83]],[[96]],[[84]],[[97]],[[98]],[[99]],[[100]],[[11]],[[12]],[[10,19,42,52,56,62,70,93,155,174,205,215,214,209,201,194,188,177,165,161,143,135,140,154,125,118,114,87,102,75,101,77,79,110,81,39,15,7,5]]]}]}},"arcs":[[[28814,99872],[1,-100],[0,-57],[0,-33],[0,-87],[0,-47],[0,-84],[0,-90],[-45,-3],[-49,-1],[1,-35],[0,-2],[0,-38],[0,-3],[2,-26],[-1,-66],[-1,-78],[-1,-28],[1,-125],[-1,-44],[1,-45],[0,-27],[0,-75],[0,-35],[0,-34],[0,-27],[0,-36],[0,-29],[0,-39],[1,-37],[1,-162],[0,-3],[0,-179],[0,-46],[0,-198],[0,-180],[0,-195],[0,-40],[77,1],[-4,-279],[2,-246],[0,-366],[2,-166],[4,-204],[-4,-122],[-1,-29],[-1,-46],[-4,-116],[4,-62],[1,-80],[0,-59],[0,-40],[1,-133],[0,-39],[1,-98],[0,-33],[0,-64],[1,-38],[1,-73],[0,-67],[1,-47],[0,-96],[-1,-88],[-1,-150],[-1,-71],[-1,-50],[0,-32],[0,-26],[0,-45],[0,-41],[0,-144],[1,-47],[0,-54],[1,-165],[1,-154],[0,-93],[20,-4],[0,-75],[1,-100],[0,-141],[0,-111],[0,-142],[0,-96],[0,-46],[0,-32],[1,-175],[0,-68],[0,-11],[0,-48],[0,-81],[0,-81],[0,-5],[0,-99],[0,-132],[0,-55],[0,-190],[1,-141],[0,-61],[0,-27],[0,-52],[1,-43],[1,-104],[1,-175],[0,-49],[0,-36],[-2,-66],[-3,-149]],[[28825,91281],[-148,-1],[-98,-1],[-51,-1],[-99,0],[-42,1],[-27,-1],[-47,0],[-39,-1],[-94,2],[-447,6],[-34,1],[-37,-1],[-39,0],[-59,0],[-35,0],[-35,-1],[-55,0],[-8,0],[-78,0],[-109,-1],[-64,0],[-51,-1],[-51,0],[-54,0],[-1,0],[-27,0],[-23,-1],[-33,0],[-46,0],[-34,0],[-41,0],[-37,-1],[-11,0],[-15,0],[-124,0],[-108,0],[-5,0],[-29,0],[-27,0],[-29,0],[-89,0],[-55,0],[-107,0],[-2,0],[-59,0],[-17,0],[-8,0],[-35,0],[-85,0],[-4,0],[-20,0],[-1,0],[-83,0],[-91,0],[-82,0],[-222,-1],[-143,0],[-2,0],[-55,0],[-39,0],[-40,1],[-138,-1],[-35,0],[-31,1],[-86,0],[-131,0],[-32,0],[-36,0],[-45,0],[-89,0],[-46,0],[-47,0],[-110,0],[-110,0],[-59,0],[-147,0],[-80,0],[-215,0],[-114,0],[-48,0],[-71,0],[-96,0],[-52,-1],[-71,0],[-41,0],[-42,-1],[-131,0],[-55,0],[-47,0],[-33,-1],[-196,0],[-3,0],[-23,0],[-29,0],[-48,0],[-88,0],[-101,0],[-45,0],[-65,0],[-26,0],[-44,-1],[-24,0],[-45,0],[-25,1],[-31,3],[-66,5],[-56,4],[-38,4],[-6,0],[-32,-1],[-96,0],[-53,0],[-49,0],[-34,0],[-98,-1],[-66,0],[-37,0],[-128,0],[-106,1],[-56,-1],[-39,1],[-48,1],[-43,1],[-38,0],[-55,1],[-28,1],[-199,1],[-98,-1],[-26,0],[-6,0],[-21,0],[-30,1],[-11,0],[-27,0],[-29,-1],[-40,0],[-36,0],[-31,0],[-30,0],[-54,0],[-548,-20],[-25,-1],[-44,0],[-69,-1],[-72,0],[-40,0],[-43,0],[-188,1],[-29,0],[-37,0],[-37,0],[-34,-1],[-193,0],[-64,0],[-25,0],[-67,0],[-41,1],[-37,-1],[-47,0],[-42,-1],[-40,0],[-41,0]],[[18591,91273],[9,43],[9,29],[15,31],[-23,33],[-41,25],[-35,12],[-31,26],[-22,22],[-47,14],[-38,53],[-32,37],[16,33],[15,25],[22,17],[35,40],[11,32],[-36,71],[-17,30],[14,31],[38,20],[39,47],[-13,38],[-23,24],[-17,49],[5,36],[4,31],[-8,39],[23,31],[-14,36],[-2,27],[-3,34],[0,30],[7,31],[25,41],[57,8],[31,14],[23,25],[5,28],[-8,25],[-2,33],[-4,28],[-18,31],[4,31],[44,20],[35,11],[29,21],[31,24],[38,10],[29,27],[-17,25],[-32,15],[-38,4],[-32,20],[-23,25],[-26,21],[-38,10],[-30,30],[-4,47],[-3,44],[-26,-2],[-36,7],[-29,-3],[-54,3],[-30,-12],[-29,-8],[-31,-6],[-35,-1],[-29,2],[-29,28],[-23,19],[4,27],[-15,29],[9,28],[-31,22],[-33,29],[-26,15],[-32,28],[-71,34],[-45,-5],[-24,16],[-31,12],[-15,-26],[-39,-16],[-30,-14],[-26,-29],[-25,-11],[-5,-37],[-7,-32],[-5,-29],[9,-29],[18,-31],[28,-45],[-5,-35],[-38,-19],[-18,-26],[2,-26],[-16,-31],[-40,-15],[-30,-4],[-26,-5],[-23,14],[-20,29],[-42,6],[-45,-7],[-28,-4],[-27,-6],[-44,13],[-26,21],[-23,13],[-30,-4],[-36,-12],[-53,-28],[-23,-13],[-36,-23],[-19,-22],[1,-45],[10,-30],[2,-32],[1,-39],[5,-46],[-38,-31],[-15,-33],[-15,-22],[-5,-27],[-4,-45],[-28,23],[-40,0],[-27,3],[-38,-22],[-44,-22],[-28,-16],[-28,-30],[1,-33],[-37,-18],[-29,11],[-23,21],[-27,-6],[-46,-24],[-28,-15],[-1,0],[-30,-10],[-46,-11],[-25,-3],[-52,-9],[-30,-27],[-10,-28],[-33,-19],[-20,-34],[-21,-28],[3,-31],[-9,-38],[-4,-42],[10,-25],[-24,-21],[-27,-12],[-27,-13],[-29,3],[-31,-2],[-32,-5],[-43,-27],[-45,7],[-44,-2],[-45,-18],[-34,-16],[-8,-26],[-24,-16],[-34,-11],[-34,-11],[-29,-13],[-10,-46],[-7,-40],[-24,-48],[-30,-7],[-33,-20],[-24,-36],[-27,-4],[-25,-4],[-21,-34],[-10,-29],[-33,-25],[-29,0],[-40,-3],[-36,3],[-38,48],[-33,3],[-24,12],[-47,4],[-25,-8],[-65,-20],[-27,-20],[-14,-24],[-29,-25],[-26,0],[-57,5],[-29,15],[-44,-6],[-35,22],[-27,3],[-42,12],[-29,-9],[-24,-6],[-27,0],[-25,1],[-26,5],[-25,8],[-20,-18],[-31,-5],[-27,-7],[-23,-12],[-26,-23],[-31,-16],[-24,-7],[-18,-27],[-15,-27],[-25,-10],[-22,-15],[-17,-21],[-28,-1],[-26,5],[-30,-6],[-19,-19],[-11,-25],[-9,-30],[-25,-12],[-25,-11],[-24,-5],[-27,9],[-29,15],[-22,11],[-31,18],[-21,15],[-23,19],[-24,-16],[-25,-17],[-34,-9],[-24,-15],[0,-30],[9,-25],[22,-29],[16,-25],[21,-16],[0,-30],[-8,-27],[-2,-33],[19,-19],[-3,-29],[18,-28],[12,-24],[-12,-35],[-35,-9],[-23,-22],[-17,-29],[-23,-21],[-23,-10],[13,-23],[9,-27],[10,-30],[9,-30],[6,-26],[2,-26],[-29,-26],[-29,-15],[-19,-33],[-28,-23],[-22,-18],[-8,-48],[10,-29],[39,-15],[-5,-30],[2,-31],[-2,-28],[-5,-26],[1,-41],[21,-34],[9,-35],[30,-24],[87,-37],[17,-21],[24,-8],[43,-16],[31,-13],[25,-8],[25,5],[33,9],[24,-1],[26,1],[34,6],[32,-22],[7,-42],[23,-44],[31,-36],[0,-41],[18,-19],[21,-16],[10,-32],[19,-27],[1,-27],[10,-31],[20,-36],[22,-16],[23,-27],[22,-13],[19,-22],[-16,-26],[-25,-17],[0,-33],[4,-35],[-7,-25],[-4,-27],[-14,-31],[-20,-19],[-27,-4],[-42,0],[-19,-36],[-3,-38],[12,-27],[-17,-23],[-18,-31],[-29,4],[-33,10],[-28,-3],[-31,-10],[-25,-6],[-32,-10],[-28,-3],[-36,11],[-30,20],[-16,24],[-17,25],[-19,40],[-12,29],[-26,3],[-33,22],[-34,23],[-44,9],[-27,-1],[-27,7],[-33,3],[-37,8],[-29,8],[-32,-5],[-45,-13],[-24,8],[-28,-1],[-29,0],[-30,-7],[-25,-1],[-17,-22],[-24,-20],[-30,-10],[-23,-5],[-32,-12],[-38,-5],[-33,-10],[-28,1],[-27,8],[-23,-8],[-52,-1],[-18,21],[-14,24],[-9,31],[-23,28],[6,29],[-5,29],[-17,21],[-16,29],[-2,28],[14,28],[-5,27],[-5,26],[-19,34],[-16,21],[-18,20],[-19,20],[-6,29],[-25,3],[-24,6],[-19,21],[-22,27],[-34,11],[-36,5],[-27,9],[-23,12],[-36,23],[-35,-3],[-25,6],[-34,17],[-35,-4],[-27,3],[-15,22],[-19,20],[-44,19],[-18,22],[-17,32],[-16,24],[-8,28],[-53,5],[-28,2],[-24,8],[-33,1],[-31,-2],[-28,7],[-22,15],[-26,0],[-56,6],[-83,-23],[-39,-23],[-35,11],[-27,9],[-48,14],[-25,-4],[-28,1],[-29,-9],[-51,-15],[-28,7],[-37,15],[-26,0],[-47,-2],[-24,-21],[-32,-23],[-42,-16],[-23,8],[-40,23],[-27,-6],[-21,-11],[-26,-1],[-47,8],[-23,14],[-26,5],[-39,-4],[-41,5],[-40,1],[-32,24],[-32,22],[-17,38],[-16,27],[-21,19],[-19,22],[-36,19],[-15,35],[-12,28],[-17,35],[4,48],[-17,30],[-32,19],[-38,37],[-18,32],[-15,22],[-14,44],[-38,-2],[-48,5],[1,33],[-16,25],[-20,22],[-16,21],[-19,20],[-31,32],[-7,28],[-28,9],[-25,11],[-45,4],[-25,3],[-28,0],[-23,-13],[-24,-18],[-40,14],[-29,3],[-29,18],[-17,31],[-19,38],[-18,27],[-25,21],[-27,8],[-24,1],[-38,18],[-25,14],[-38,30],[-22,13],[-29,5],[-31,-10],[-24,-7],[-25,-10],[-28,-15],[-33,-23],[-17,-26],[-22,-27],[-31,-10],[-24,6],[-25,-2],[-22,33],[-6,35],[-23,14],[-49,11],[-15,31],[-9,37],[10,25],[-19,29],[-29,25],[-25,-3],[-35,8],[-21,30],[-21,27]],[[9738,91244],[-23,19],[-13,34],[-18,38],[-11,27],[2,29],[-22,33],[-35,11],[-25,28],[-24,16],[-23,15],[-7,29],[-11,26],[-25,22],[-22,16],[-13,38],[-1,36],[19,30],[-21,23],[-15,26],[-34,5],[-23,12],[-25,11],[-34,13],[-20,17],[-17,23],[-16,20],[16,25],[14,28],[27,22],[21,20],[18,18],[26,24],[5,31],[-4,32],[2,27],[-2,29],[-11,24],[4,26],[-17,29],[4,37],[-5,31],[-34,22],[-27,7],[-24,11],[-23,10],[-23,15],[-25,13],[-15,22],[8,28],[23,16],[23,19],[17,28],[-13,51],[-1,28],[-33,32],[5,48],[-18,48],[-5,27],[-11,26],[-19,22],[-30,4],[-38,16],[-7,30],[-12,24],[-32,13],[-14,32],[-5,37],[1,39],[9,24],[-10,27],[-20,62],[-10,52],[22,15],[16,47],[14,27],[22,26],[-6,31],[-27,19],[-26,29],[-32,9],[-16,21],[-11,13],[-8,9],[-26,10],[-25,-3],[-3,0],[-58,22],[-9,7],[-1,1],[0,2],[0,3],[1,3],[1,2],[7,10],[-4,-1],[-12,3],[-31,0],[-81,0],[-36,-1],[-30,0],[-33,0],[-58,0],[-52,-1],[-130,-1],[-73,0],[-33,0],[-59,0],[-178,0],[-139,0],[-40,0],[-50,0],[-139,0],[-55,2],[-92,-1],[-93,-1],[-30,0],[-94,-1],[-33,-1]],[[7276,93377],[10,31],[21,13],[24,18],[-5,37],[2,41],[25,9],[57,14],[26,12],[32,16],[-1,45],[25,25],[1,34],[-13,23],[-9,25],[-17,20],[-44,31],[5,27],[33,29],[26,16],[26,14],[42,7],[38,19],[38,13],[41,15],[9,33],[13,27],[10,35],[20,28],[13,23],[21,17],[-7,29],[-20,22],[19,23],[14,34],[9,34],[-34,10],[-28,13],[-34,2],[-26,24],[-24,6],[-18,34],[-23,29],[-3,28],[-9,25],[-25,24],[-28,23],[21,16],[9,25],[-16,31],[3,30],[-22,36],[-12,27],[-4,26],[-13,31],[4,32],[-20,26],[-22,19],[-12,28],[1,27],[4,27],[6,28],[22,16],[-17,22],[-17,35],[-6,37],[-14,26],[-16,32],[-22,21],[-24,-1],[-28,1],[-23,10],[-24,11],[-27,4],[-23,10],[-21,15],[-24,4],[-28,-2],[-28,4],[-25,-2],[-24,-8],[-24,19],[-14,32],[-21,13],[-7,26],[-32,4],[-4,28],[2,29],[26,20],[18,25],[7,28],[4,27],[24,13],[14,22],[21,15],[-22,19],[-12,26],[-9,25],[-20,15],[-11,24],[8,29],[25,8],[25,5],[5,39],[-8,26],[12,25],[-34,1],[-33,-8],[-25,-12],[-32,-15],[-26,-4],[-15,24],[-18,23],[-30,3],[-27,-4],[-33,-12],[-20,-15],[-26,-10],[-26,15],[-15,25],[7,29],[4,28],[7,25],[12,29],[24,11],[22,18],[-3,29],[7,28],[19,22],[21,25],[12,29],[25,18],[21,16],[22,13],[21,24],[-18,33],[17,27],[33,5],[70,3],[54,-7],[5,32],[-23,30],[-27,43],[-3,31],[-30,62],[2,50],[20,16],[-23,12],[-5,45],[-6,31],[27,37],[3,32],[26,28],[29,29],[34,15],[24,15],[9,25],[42,44],[26,32],[42,19],[-51,36],[-20,26],[7,39],[2,36],[25,16],[22,14],[22,22],[18,28],[-6,27],[9,38],[-15,29],[-4,32],[-17,19],[-29,20],[5,26],[-62,17],[-16,26],[-41,24],[-14,47],[11,35],[-19,37],[-15,30],[4,45],[-9,26],[0,39],[0,26],[-12,31],[-8,36],[-8,27],[-11,31],[-13,28],[20,38],[45,13],[51,2],[21,13],[-16,22],[4,27],[14,32],[15,22],[-24,14],[-22,12],[-30,9],[-28,10],[-33,4],[-26,15],[-11,30],[-16,27],[5,29],[-22,25],[-9,32],[-23,17],[-29,-2],[-25,22],[-3,26],[4,36],[-9,36],[28,25],[24,9],[27,26],[27,11],[35,8],[29,2],[25,5],[27,6],[28,-2],[30,-18],[25,-4],[9,32],[0,29],[-2,36],[16,21],[20,17],[23,26],[24,24],[5,37],[27,6],[36,12],[31,12],[22,13],[-17,31],[-5,28],[12,32],[5,32],[9,34],[23,13],[-18,21],[-24,5],[13,22],[24,18],[25,13],[12,29],[9,25],[27,18],[23,-18],[22,-12],[26,4],[26,0],[26,2],[27,2],[21,-23],[21,-25],[26,-16],[29,-12],[46,-1],[29,-3],[22,20],[8,26],[-8,28],[24,18],[17,21],[22,17],[3,29],[-13,27],[18,25],[22,16],[12,26],[26,5],[31,-5],[27,-4],[34,-1],[26,-7],[27,-4],[31,11],[31,-6],[29,-4],[27,2],[26,18],[24,10],[9,28],[14,27],[23,22],[11,25],[-12,26],[-1,26],[1,30],[6,29],[4,29],[16,23],[22,14],[17,24],[1,32],[26,14],[3,29],[28,25],[17,27],[11,23],[21,22],[16,21],[20,19],[-1,33],[5,28],[-5,30],[-11,30],[-18,22],[-5,31],[11,28],[-5,34],[-17,21],[2,33],[-24,18],[4,31],[35,27],[24,15],[24,0],[24,10],[35,11],[24,10],[29,13],[-6,28],[25,32]],[[8672,99908],[36,0],[27,-1],[42,0],[21,-1],[34,-2],[5,0],[20,0],[165,1],[6,0],[455,11],[201,-10],[57,-3],[111,-6],[144,-6],[55,-1],[240,0],[38,-1],[50,2],[96,4],[4,1],[31,1],[17,0],[347,15],[58,2],[116,5],[7,1],[15,0],[197,13],[178,5],[25,2],[56,2],[275,12],[38,2],[64,5],[134,11],[56,3],[101,8],[6,0],[5,1],[11,1],[1,0],[2,1],[71,10],[138,-7],[2,0],[63,-7],[44,-1],[85,-3],[88,-7],[20,-2],[169,-14],[109,-2],[73,-2],[130,-14],[58,-6],[21,0],[118,0],[128,0],[49,0],[170,1],[75,1],[253,-2],[27,0],[64,0],[105,0],[279,-4],[98,-1],[87,1],[179,6],[51,0],[2,0],[278,2],[29,0],[249,4],[64,1],[36,1],[11,0],[13,0],[7,1],[69,0],[27,-1],[50,-2],[27,0],[28,1],[100,1],[59,1],[2,0],[36,0],[48,0],[59,0],[34,0],[72,0],[106,0],[37,0],[29,0],[59,0],[90,2],[302,4],[104,1],[11,0],[23,0],[28,0],[12,0],[16,0],[41,0],[26,0],[7,0],[6,1],[94,0],[39,1],[85,3],[15,0],[18,1],[28,0],[11,1],[25,0],[169,5],[50,1],[150,5],[148,5],[53,1],[30,1],[267,8],[130,4],[157,3],[353,-2],[25,0],[99,0],[128,2],[143,1],[88,0],[40,1],[42,0],[160,7],[43,1],[3,0],[94,-2],[4,0],[38,-1],[114,-3],[21,0],[60,-1],[33,-1],[109,-2],[54,-1],[34,-1],[132,-2],[167,-4],[46,-1],[140,-2],[80,-2],[108,1],[27,0],[11,0],[101,0],[149,0],[92,0],[235,0],[20,0],[43,0],[47,0],[135,3],[22,-1],[37,-2],[12,0],[271,-11],[9,0],[5,0],[162,-5],[73,-2],[80,-1],[95,-2],[184,-3],[84,-2],[169,-3],[139,-3],[67,-1],[32,-1],[131,-2],[251,-2],[122,-1],[63,0],[26,0],[305,-2],[40,0],[98,0],[59,-1],[42,0],[53,0],[14,0],[13,0],[2,0],[128,-2],[70,0],[194,-2],[22,0],[199,-3],[12,0],[34,-1],[51,-1],[6,0],[238,-3],[123,-3],[208,-5],[60,-1],[136,-2],[191,-3],[77,-2],[16,0],[8,0],[15,0],[58,-1],[101,-1],[8,0],[51,-1],[48,-1],[28,-1],[41,0],[14,-1],[196,-3],[33,0],[42,-1],[23,0],[97,-2],[64,-1],[51,-2],[53,0],[49,-4],[18,0],[20,0],[1,0],[12,0],[14,1],[13,0],[11,0],[34,-2],[50,0],[38,-1],[10,0],[35,-1],[75,-2],[91,-1],[26,0],[109,-2],[97,-1],[44,0],[55,-1],[56,0],[16,0],[25,-1],[4,0],[44,0],[6,0],[20,0],[62,-1],[28,0],[4,0],[14,0],[87,-1],[56,-1],[25,0],[110,-2],[55,-1],[31,0],[6,0],[9,0],[99,-2],[42,3]],[[7276,93377],[-198,-2],[-29,1],[-35,0],[-27,1],[-258,-2],[-5,0],[-169,-1],[-103,-1],[-50,-7],[-48,0],[-141,1],[-8,892],[-467,-2],[-645,-2],[-610,-2],[-749,-2],[-51,0],[-33,0],[-31,0],[-5,-1],[-41,0],[-41,0],[-48,0],[-45,0],[-33,0],[-35,0],[-26,0]],[[3345,94250],[-6,49],[-8,30],[-12,28],[-7,41],[-10,31],[-17,39],[-4,33],[-10,32],[-21,35],[-3,36],[-10,43],[-20,50],[-22,27],[-5,33],[-5,39],[1,39],[-3,31],[-9,33],[4,41],[5,53],[2,42],[-2,35],[1,33],[24,-41],[9,-28],[43,14],[21,15],[27,2],[26,19],[28,2],[56,-18],[22,-18],[11,-26],[29,-35],[24,-41],[18,-37],[27,-32],[3,12],[3,16],[-10,46],[-14,36],[-30,36],[-23,28],[-16,23],[-33,20],[-27,11],[-30,3],[-65,-8],[-27,5],[-29,0],[-39,11],[-35,12],[-38,28],[-39,13],[-30,41],[-14,29],[-15,28],[-16,37],[-22,36],[-9,31],[-6,29],[12,24],[-7,27],[24,45],[9,26],[-10,25],[-18,19],[-20,26],[-16,25],[23,9],[11,35],[2,38],[-37,45],[-31,39],[-37,43],[-27,20],[-5,47],[-3,43],[-5,34],[-12,31],[-21,43],[-4,46],[-18,30],[-23,33],[-22,24],[-12,31],[-21,24],[-22,17],[-26,25],[-6,40],[-10,39],[-18,26],[-22,59],[10,26],[5,58],[-17,32],[-12,28],[-8,47],[5,26],[-12,31],[10,46],[-19,62],[4,34],[-12,40],[-24,52],[-17,31],[-17,28],[-14,24],[-16,25],[-25,37],[-27,35],[-22,28],[-31,26],[-34,25],[-29,14],[-25,8],[-31,11],[-45,-12],[-25,9],[-23,40],[-33,4],[-28,11],[-27,-22],[-27,-18],[4,-32],[-27,14],[-36,24],[-33,13],[-30,9],[-45,22],[-14,24],[-42,18],[-12,37],[-28,27],[-23,13],[-35,26],[-26,14],[-25,14],[-19,22],[-37,22],[-28,-8],[-38,15],[-17,30],[-26,24],[-20,37],[27,44],[31,16],[20,20],[21,26],[22,34],[25,41],[15,32],[20,38],[20,38],[12,28],[11,26],[12,26],[13,31],[12,32],[30,50],[10,48],[12,31],[10,32],[16,52],[11,36],[8,26],[8,26],[8,32],[12,44],[12,39],[6,27],[8,30],[6,32],[8,38],[8,35],[7,32],[6,30],[9,47],[5,27],[8,43],[5,36],[4,38],[2,39],[4,34],[3,35],[2,19],[11,269],[1,40],[8,-1],[8,-23],[4,-38],[-1,-12],[18,-26],[5,-27],[1,-7],[-5,-15],[3,-18],[2,-1],[2,0],[11,3],[4,21],[8,10],[11,16],[-13,26],[-2,51],[18,0],[2,1],[-3,18],[-6,9],[-4,14],[-6,3],[-31,26],[-20,24],[-28,-2],[-6,-5],[-5,-5],[-12,4],[-20,33],[9,44],[21,48],[10,43],[6,50],[1,43],[4,51],[-1,51],[-10,61],[-26,27],[-11,62],[-18,33],[33,0],[2,0],[93,-2],[16,0],[4,0],[34,-1],[4,0],[37,-1],[17,0],[80,-2],[315,-5],[196,-4],[94,0],[118,1],[4,0],[13,-2],[11,-1],[12,-1],[8,0],[119,-1],[23,0],[54,0],[211,-3],[110,0],[5,0],[1,0],[123,-1],[170,0],[141,-1],[319,1],[11,0],[168,0],[75,0],[57,0],[75,0],[143,0],[21,0],[37,0],[113,-1],[12,0],[19,0],[79,0],[11,0],[76,0],[41,-1],[13,0],[44,0],[97,0],[142,1],[3,0],[68,0],[76,-5],[48,-2],[10,-1],[13,0],[2,-1],[2,0],[10,0],[14,-1],[32,-1],[2,0],[77,3],[38,1],[48,1],[46,2],[1,0],[1,0],[2,0],[6,1],[18,3],[130,2],[84,2],[117,3],[31,0],[156,1],[15,0],[10,0],[43,1],[66,-2],[1,0],[26,-1],[1,0],[499,-14],[99,-3],[161,25],[87,14],[38,5],[1,0],[21,3],[8,1],[9,2],[3,0],[10,0],[22,0],[25,0],[17,0],[53,0],[3,0],[67,3],[98,0],[13,0],[54,0],[77,0],[45,1],[27,0],[14,0],[35,0],[79,0],[48,0],[35,1],[6,0],[36,1],[4,0],[65,3],[22,1],[51,1],[3,0],[45,2],[43,-2],[29,0]],[[42900,91287],[-1,-1],[-60,0],[-26,0],[-56,0],[-32,1],[-27,0],[-46,0],[-37,1],[-17,0],[-20,0],[-42,0],[-41,1],[-39,-1],[-12,0],[-130,0],[-361,2],[-4,0],[-25,0],[-29,0],[-15,0],[-29,-1],[-29,0],[-65,0],[-86,-1],[-52,0],[-58,0],[-72,0],[-80,0],[-24,0],[-56,0],[-24,0],[-138,0],[-116,0],[-10,0],[-96,0],[-78,0],[-22,0],[-9,0],[-58,0],[-35,0],[-38,0],[-28,0],[-93,0],[-25,0],[-102,0],[-28,0],[-111,1],[-209,-1],[-210,0],[-25,0],[-99,0],[-138,0],[-397,0],[-90,0],[-21,0],[-20,0],[-41,0],[-1,0],[-25,0],[-140,0],[-147,1],[-33,0],[-402,-2],[-31,0],[-30,0],[-160,1],[-65,-2],[-4,0],[-26,0],[-15,0],[-74,1],[-33,0],[-96,0],[-52,0],[-82,1],[-131,0],[-46,0],[-97,1],[-250,1],[-131,1],[-3,0],[-36,0],[-81,1],[-69,-5],[-64,0],[-53,0],[-35,0],[-84,0],[-72,0],[-67,-1],[-25,-1],[-474,16],[-1312,-1],[-866,-1],[-48,0],[-42,0],[-230,0],[-74,-9],[-26,0],[-70,0],[-43,0],[-62,0],[-59,0],[-210,1],[-61,0],[-54,0],[-98,0],[-55,0],[-68,0],[-30,0],[-28,0],[-2,0],[-32,0],[-35,0],[-32,0],[-38,0],[-4,0],[-4,0],[-17,0],[-4,0],[-85,0],[-41,0],[-31,0],[-52,0],[-30,0],[-4,0],[-35,0],[-109,0],[-66,0],[-56,0],[-141,0],[-26,0],[-25,0],[-14,0],[-26,0],[-51,0],[-29,0],[-220,0],[-24,0],[-15,0],[-13,0],[-109,0],[-8,0],[-170,0],[-253,0],[-82,-2],[-36,0],[-28,-1],[-27,0],[-133,-3],[-25,0],[-212,0],[-104,0],[-104,1]],[[29946,91286],[-151,0],[-102,0],[-53,0],[-26,0],[-66,0],[-41,0],[-127,0],[-3,0],[-22,-1],[-262,-2],[-268,-2]],[[28814,99872],[64,0],[38,-1],[23,0],[25,-1],[17,0],[23,0],[10,0],[41,-1],[46,0],[10,0],[7,0],[5,0],[27,-1],[39,0],[17,0],[10,-1],[30,0],[26,0],[19,0],[40,-1],[12,0],[140,1],[27,0],[68,-1],[80,-2],[10,0],[49,-1],[26,0],[26,0],[32,-2],[28,-1],[2,0],[28,0],[46,2],[8,1],[37,2],[131,5],[9,1],[63,2],[124,-1],[7,0],[13,0],[52,0],[33,0],[12,0],[13,0],[77,1],[78,0],[72,0],[92,0],[34,-5],[131,-2],[236,-2],[18,0],[5,0],[5,0],[67,-1],[2,0],[188,-2],[38,0],[87,-1],[130,0],[275,-3],[145,-6],[56,-2],[88,-6],[31,-1],[186,-4],[82,-3],[93,-2],[163,-4],[40,-1],[148,0],[10,0],[177,-1],[72,1],[33,0],[90,0],[2,0],[2,0],[61,1],[2,0],[99,0],[39,0],[130,1],[108,0],[79,1],[20,0],[177,1],[101,0],[53,0],[113,1],[34,0],[207,1],[14,0],[103,0],[14,0],[109,1],[34,1],[49,0],[88,1],[22,0],[1,0],[284,-1],[20,0],[11,0],[123,-2],[142,-2],[16,0],[11,0],[461,1],[54,-1],[10,0],[5,0],[10,0],[16,0],[341,-4],[40,-1],[41,-1],[31,0],[14,0],[39,0],[38,0],[83,0],[18,0],[22,0],[39,0],[2,0],[16,0],[95,0],[8,0],[5,0],[18,0],[1,0],[1,0],[53,0],[53,0],[94,1],[86,1],[14,0],[23,0],[213,4],[28,0],[122,0],[119,1],[98,0],[17,0],[12,0],[58,0],[127,-1],[1,0],[296,-1],[425,-1],[91,0],[91,-1],[46,0],[122,0],[19,0],[379,-2],[41,0],[41,0],[7,0],[19,-1],[7,0],[14,0],[27,0],[34,0],[35,0],[38,0],[14,0],[19,0],[26,-1],[23,0],[18,-1],[28,1],[4,0],[20,0],[9,0],[16,0],[26,0],[27,0],[139,2],[93,1],[46,1],[41,0],[29,0],[6,1],[20,0],[30,1],[27,0],[109,3],[22,0],[32,1],[24,0],[24,1],[28,1],[115,2],[32,1],[12,0],[12,0],[179,2],[140,0],[12,0],[51,0],[53,0],[33,0],[178,0],[74,0],[53,1],[42,0],[244,1],[2,0],[89,1],[92,0],[5,0],[37,1],[114,0],[19,0],[26,1],[16,0],[25,0],[27,0],[13,0],[12,0],[11,0],[29,0],[13,0],[34,0],[16,0],[102,0],[4,0],[69,0],[1,0],[131,-3],[8,0],[-1,-933],[0,-44],[0,-2],[-2,-2497],[-1,-1138],[0,-126],[-2,-3293],[0,-288],[-1,-236]],[[2397,87306],[-26,-1],[-8,3],[-1,15],[27,19],[33,15],[23,5],[4,1],[11,0],[7,-13],[-3,-8],[-5,-16],[-26,-4],[-36,-16]],[[2441,87432],[12,-7],[5,-3],[-6,-27],[-1,0],[-26,-12],[-27,-13],[-51,-23],[-18,-11],[-8,-5],[-17,-6],[-12,-4],[-18,-3],[-17,-3],[-7,-2],[-3,3],[-2,2],[5,25],[54,69],[26,15],[25,14],[4,-2],[25,-13],[23,8],[1,1],[21,7],[4,-3],[8,-7]],[[9738,91244],[-13,-35],[-5,-31],[-2,-32],[-34,-18],[-21,-23],[-33,-16],[-23,14],[-34,-18],[-39,-18],[-32,-9],[0,-39],[14,-30],[20,-28],[-9,-33],[-15,-24],[16,-22],[-2,-28],[7,-31],[-7,-28],[2,-44],[4,-40],[-1,-55],[-1,-30],[4,-36],[-17,-26],[-22,-26],[-13,-35],[-12,-34],[-12,-26],[6,-31],[-23,-27],[-23,-40],[0,-31],[-23,-23],[-27,-8],[-31,2],[-27,4],[-25,11],[-32,13],[-35,25],[-24,3],[12,-35],[21,-36],[20,-22],[2,-33],[-21,-17],[-28,-34],[15,-29],[24,-32],[16,-38],[31,4],[38,-16],[33,-37],[18,-20],[30,-6],[35,7],[36,-12],[21,14],[23,14],[23,-24],[25,-18],[24,-12],[-3,-27],[-11,-30],[18,-25],[-4,-35],[-4,-29],[6,-25],[17,-21],[8,-25],[12,-33],[34,-16],[24,-10],[22,-14],[39,-10],[-14,-35],[-7,-35],[-10,-26],[24,-32],[12,-29],[-2,-30],[-31,-14],[-31,-1],[-29,-6],[-38,-4],[-26,-34],[-23,-21],[-5,-31],[-21,-19],[11,-27],[-6,-32],[-7,-35],[7,-27],[-18,-28],[-24,-22],[-32,-10],[-1,-30],[-4,-27],[-12,-37],[-19,-21],[-25,-9],[-22,-13],[-27,-19],[-25,-16],[-33,-10],[-16,-28],[9,-29],[24,-10],[36,-10],[17,-20],[4,-30],[-4,-33],[-7,-33],[-18,-25],[-20,-16],[-24,-10],[-36,2],[-29,-5],[-30,-33],[-28,-12],[-29,5],[-14,-27],[-20,-17],[-28,-17],[-21,-26],[-18,-19],[-8,-35],[-10,-24],[0,-31],[-8,-25],[-11,-25],[-30,3],[-25,11],[-30,5],[-34,-4],[-26,-1],[-57,18],[-27,11],[-30,12],[-40,11],[-15,25],[-23,18],[-28,18],[-22,31],[-31,18],[-29,16],[-30,12],[-22,-30],[-24,-6],[-38,11],[-27,13],[19,35],[-9,35],[-30,21],[-52,21],[-29,15],[-26,10],[-7,31],[-25,10],[-30,2],[-26,-11],[-44,-12],[-15,-31],[16,-24],[9,-36],[-20,-26],[-37,-6],[-39,-20],[-23,-8],[-30,-13],[-18,-20],[-16,-22],[-31,-7],[-28,8],[-30,19],[-34,9],[-24,-8],[-25,-10],[-33,0],[-36,-2],[-31,15],[-28,5],[-29,5],[-17,-7],[-4,-19],[10,-23],[11,-17],[6,-2],[6,-1],[1,0],[2,0],[19,-7],[8,-4],[20,-15],[4,-3],[2,-5],[2,-12],[1,-11],[0,-15],[-10,-15],[-6,-8],[1,-3],[16,-54],[11,-13],[4,-4],[1,-1],[13,-14],[8,-6],[22,-19],[13,-18],[7,-23],[2,-7],[0,-9],[-2,-6],[-5,-8],[-5,-4],[-11,-11],[1,-6],[-12,-19],[20,-19],[23,-24],[18,-12],[11,-18],[5,-8],[13,-17],[1,-2],[7,-6],[3,-5],[0,-6],[-10,-10],[-26,-17],[-5,-3],[-15,-4],[-18,-4],[-12,-1],[-26,-2],[-6,0],[-4,3],[-14,8],[-19,-10],[3,-20],[5,-4],[11,-1],[32,-1],[6,1],[24,7],[9,1],[18,-2],[47,-13],[4,-3],[3,-5],[1,-13],[1,-10],[7,-24],[37,-47],[5,-2],[15,-3],[2,1],[29,14],[17,12],[6,1],[13,-4],[2,-1],[7,-2],[3,-2],[13,-13],[-2,-9],[0,-1],[-11,-9],[-21,-10],[-4,-3],[-1,-4],[5,-10],[2,-5],[-2,-3],[-14,-4],[-12,-3],[-23,-12],[-3,-2],[-2,-2],[0,-6],[2,-7],[3,-5],[6,-5],[8,-5],[6,-2],[7,0],[30,3],[5,-1],[6,-3],[0,-1],[22,9],[6,3],[16,2],[8,-1],[7,-2],[2,-2],[5,-8],[8,-10],[-2,-6],[-1,-1],[-1,0],[-14,0],[-4,1],[-6,5],[-4,1],[-2,-2],[0,-6],[4,-20],[2,-4],[12,-11],[13,-11],[2,-4],[0,-5],[0,-19],[-2,-2],[-7,-7],[1,-6],[11,-30],[4,-6],[9,-7],[22,-15],[7,0],[18,5],[5,1],[26,0],[7,-2],[8,-14],[0,-3],[-1,-4],[-3,-8],[-7,-1],[-20,-3],[-4,-2],[-13,-30],[0,-4],[7,-9],[22,-1],[11,0],[10,-10],[9,-7],[12,-10],[2,-3],[8,-13],[0,-4],[-1,-2],[-8,-8],[-13,-10],[-5,-9],[-7,-10],[-15,-3],[-8,0],[-14,1],[-4,-1],[-5,-5],[-7,-11],[-7,-19],[-1,-6],[1,-22],[1,-3],[9,-14],[34,-34],[19,-31],[9,-5],[24,-14],[12,-7],[10,-6],[8,-9],[3,-5],[0,-7],[-4,-10],[0,-59],[1,-3],[16,-32],[1,-15],[-2,-3],[-23,-2],[-4,0],[-11,6],[-18,5],[-31,7],[-8,2],[-8,0],[-5,-2],[-6,-4],[1,-6],[2,-7],[15,-34],[-10,-22],[12,-34],[21,11],[19,15],[6,1],[4,-1],[2,-2],[6,-10],[3,-4],[2,-5],[1,-6],[0,-6],[-8,-8],[-8,-1],[-2,-1],[-2,-4],[-2,-8],[1,-4],[22,-33],[9,-13],[12,-10],[20,-12],[11,-2],[3,-2],[12,-8],[6,-5],[7,-11],[2,-10],[-5,-9],[-9,-10],[-12,-9],[-14,-9],[-9,-10],[0,-14],[0,-19],[17,-41],[-22,-26],[17,-20],[18,-12],[2,-6],[2,-9],[0,-14],[-1,-12],[-1,-12],[0,-2],[-1,-4],[-2,-22],[12,-18],[15,-11],[26,-39],[0,-5],[-2,-11],[-6,-15],[34,-24],[21,-57],[0,-11],[-19,-2460],[-2,-339],[-1,-30],[-13,-1788],[10,-251],[0,-126],[1,-84],[4,-80],[0,-36],[0,-85],[-1,-129],[0,-71],[0,-44],[0,-28],[0,-85],[-1,-46],[0,-29],[0,-5],[0,-57],[0,-50],[0,-52],[0,-44],[0,-56],[0,-45],[0,-50],[0,-235],[0,-57],[0,-35],[-1,-51],[0,-49],[0,-49],[0,-23],[0,-39],[0,-293],[2,-189],[3,-265],[-8,-272],[0,-68]],[[8413,78811],[-288,1],[-198,0],[-6,0],[-224,-1],[-78,1],[-32,0],[-132,-1],[-26,0],[-125,0],[-125,0],[-87,0],[-29,0],[-144,-1],[-52,0],[-39,0],[-199,0],[-179,14],[-311,-3],[-48,0],[-577,-6],[-328,-7],[-115,0],[-38,-1],[-108,0],[-91,0],[-160,0],[-6,0],[-34,-1],[-25,-1],[-27,0],[-225,2],[-179,-3],[-59,2],[-149,0],[-213,-1]],[[3757,78805],[-35,27],[-29,25],[-19,31],[-27,26],[-18,20],[-29,21],[-34,12],[-24,24],[-24,9],[-32,22],[-34,18],[-72,18],[-32,-5],[-39,-35],[-35,15],[-29,35],[-18,25],[-24,20],[4,36],[-5,45],[-3,37],[1,56],[2,65],[2,62],[-2,50],[-22,52],[-13,28],[-13,35],[-27,45],[-19,20],[-31,22],[-32,50],[-42,47],[-19,18],[-26,30],[-24,38],[-25,32],[-62,27],[-27,9],[-26,20],[-47,29],[-35,18],[-40,6],[-37,21],[-44,16],[-27,4],[-39,4],[-43,24],[-32,9],[-51,13],[-47,14],[-32,7],[-23,12],[-26,20],[-29,8],[-21,18],[-38,2],[-34,14],[-20,25],[-24,34],[-41,46],[-17,23],[-21,18],[-24,31],[-28,40],[-17,23],[-19,18],[-44,46],[-34,34],[-38,17],[-58,37],[-31,34],[-21,17],[-27,18],[-46,26],[-34,10],[-27,11],[-40,20],[-40,16],[-24,12],[-35,27],[-42,34],[-21,18],[-31,30],[-52,40],[-30,10],[-36,15],[-50,24],[-28,18],[-24,22],[-30,26],[-22,21],[-28,19],[-21,15],[-25,21],[-23,18],[-22,21],[-36,31],[-26,19],[-27,17],[-21,24],[-19,29],[-13,38],[-25,30],[-27,20],[-26,9],[-51,23],[-46,21],[-26,19],[-33,21],[-25,16],[-21,32],[-17,21],[-46,27],[-15,26],[-2,35],[3,46],[-9,35],[2,28],[-4,31],[13,30],[10,30],[9,30],[25,51],[11,31],[27,16],[0,2],[-5,32],[1,41],[4,36],[16,20],[18,30],[16,23],[7,33],[-7,45],[-13,32],[-7,32],[-21,56],[-18,33],[-38,28],[-27,46],[-11,36],[-8,49],[5,41],[-3,37],[-3,62],[-4,32],[-4,35],[-8,58],[-18,56],[-13,42],[-46,94],[-26,32],[-22,16],[-37,42],[-31,24],[-27,17],[-42,41],[-18,42],[-30,31],[-27,37],[-21,30],[-8,47],[-5,45],[-3,29],[-38,30],[-17,34],[6,43],[13,25],[15,21],[27,47],[30,55],[31,52],[12,28],[17,38],[17,39],[10,30],[13,37],[2,8],[10,26],[8,26],[12,32],[15,38],[10,36],[5,50],[-33,42],[-3,28],[1,39],[9,33],[15,25],[15,39],[18,28],[30,32],[45,71],[25,46],[31,61],[13,23],[14,33],[11,26],[11,26],[12,29],[30,60],[14,36],[12,33],[15,39],[20,32],[28,66],[26,54],[17,35],[17,38],[19,38],[13,33],[22,38],[19,39],[19,30],[11,24],[26,62],[21,28],[20,39],[16,32],[17,23],[14,29],[15,31],[12,24],[20,31],[26,39],[24,15],[15,-22],[-27,-19],[-19,-33],[-25,-31],[0,-33],[40,-6],[22,-22],[27,-20],[13,-23],[61,-31],[5,-1],[16,13],[-6,14],[-42,40],[6,27],[22,6],[41,12],[26,16],[12,6],[31,6],[5,15],[-6,8],[-5,-2],[-53,-7],[-27,12],[-45,27],[-24,6],[-4,35],[13,50],[9,32],[58,103],[-7,13],[-18,-4],[-57,-98],[2,-21],[-7,-27],[-19,-9],[3,-16],[-6,-10],[-29,14],[17,41],[16,23],[50,85],[40,61],[14,27],[13,24],[21,33],[14,24],[18,27],[17,30],[15,24],[15,24],[18,28],[20,29],[17,26],[25,36],[24,35],[14,23],[15,21],[20,26],[16,24],[23,29],[23,34],[16,26],[18,26],[34,49],[25,38],[15,21],[22,35],[30,49],[23,38],[15,24],[14,23],[14,34],[23,42],[19,34],[29,-40],[13,-23],[5,-9],[33,-16],[2,-4],[-10,-29],[-64,-8],[-34,-40],[-53,-87],[-49,-34],[-17,-23],[-24,-30],[-26,-38],[-20,-18],[-15,-24],[-11,-26],[-10,-18],[-5,-14],[-6,-20],[12,-16],[-10,-20],[-31,-15],[-14,-24],[-36,-30],[3,-8],[38,-14],[63,-6],[31,-5],[36,-3],[32,-13],[50,-3],[62,-21],[12,-4],[25,-11],[24,-15],[14,-25],[35,-15],[36,-16],[29,21],[3,3],[-3,12],[-4,16],[-17,1],[-3,13],[8,26],[5,31],[-12,19],[-10,14],[8,12],[32,9],[36,12],[29,31],[-6,41],[-16,22],[-21,33],[-7,33],[-55,61],[72,113],[4,23],[-19,7],[-31,-5],[-2,2],[-5,20],[-11,14],[1,9],[47,17],[90,9],[13,4],[39,29],[50,61],[5,34],[-24,72],[-28,30],[-8,68],[10,10],[23,15],[18,4],[6,-11],[-6,-15],[-20,-29],[-1,-16],[14,-33],[14,-41],[20,2],[-19,37],[-4,32],[18,28],[13,54],[1,45],[3,24],[33,22],[33,49],[-1,37],[0,27],[23,38],[21,31],[32,14],[24,14],[23,14],[36,8],[107,10],[41,16],[13,11],[8,6],[30,4],[27,-1],[31,-21],[21,-23],[4,-4],[34,-32],[7,-6],[29,2],[22,5],[6,1],[-21,10],[-25,11],[-21,13],[-10,6],[-17,20],[-38,33],[18,0],[37,-27],[5,-2],[29,-10],[25,-10],[30,-10],[52,6],[29,8],[36,35],[36,33],[27,7],[35,3],[35,12],[33,15],[39,21],[32,19],[37,20],[17,16],[17,28],[29,49],[5,38],[-1,22],[-22,63],[3,18],[6,44],[-62,-4],[-3,33],[-62,36],[2,27],[-19,24],[-39,-3],[-22,-13],[-29,-8],[-41,-33],[-23,-18],[-31,3],[-29,25],[-22,13],[-23,14],[-38,4],[-16,19],[-18,35],[-15,10],[-74,1],[-15,1],[-17,2],[-18,4],[-1,5],[3,7],[6,22],[5,16],[-1,17],[-11,15],[26,1],[18,27],[31,13],[29,7],[9,31],[2,47],[17,64],[46,64],[-3,5],[-25,2],[-7,48],[-33,-9],[4,-38],[-5,-33],[-9,-25],[-24,-28],[10,-45],[-17,-25],[-31,-33],[-1,-30],[-28,-21],[-29,-6],[8,-31],[0,-22],[-34,-12],[7,-11],[14,-23],[9,-30],[-14,-37],[-40,-13],[-25,6],[5,-54],[-15,-20],[-19,-21],[-23,-26],[-22,-27],[-14,-23],[-23,-44],[-16,-37],[3,-46],[-2,-29],[0,-16],[-3,-6],[-17,-7],[-4,-3],[-17,-13],[-25,-25],[-29,-24],[-22,-26],[-28,-29],[-27,-47],[-12,-29],[-17,-33],[-11,-33],[-11,-25],[-6,-53],[-11,-30],[-8,-11],[-29,-64],[-57,-44],[-8,-8],[-24,-20],[-24,-17],[-24,-20],[-33,-53],[-20,-1],[-6,-7],[-14,-17],[9,-16],[-8,-41],[-25,-3],[-28,16],[-24,14],[-23,16],[-24,27],[22,14],[20,18],[36,57],[23,34],[16,21],[19,27],[22,29],[24,31],[21,31],[18,31],[24,38],[24,36],[18,26],[16,24],[23,36],[24,37],[20,32],[22,32],[17,30],[19,30],[17,29],[23,40],[15,27],[30,50],[22,40],[16,28],[20,35],[19,32],[17,33],[14,26],[18,35],[16,30],[16,31],[23,45],[14,28],[26,60],[9,32],[17,28],[18,38],[10,26],[17,37],[13,35],[17,42],[12,30],[17,41],[13,41],[14,33],[11,31],[13,40],[22,60],[13,44],[10,39],[9,38],[30,68],[12,33],[13,27],[9,31],[-4,45],[11,35],[12,28],[6,31],[9,33],[6,27],[14,63],[8,34],[11,34],[13,36],[8,52],[16,40],[1,47],[11,66],[6,41],[6,37],[6,40],[4,31],[6,52],[-12,46],[-27,17],[-24,39],[-8,25],[-15,44],[-29,31],[-17,28],[-36,31],[-37,23],[-19,18],[-32,14],[-33,10],[-34,2],[-21,-13],[-4,-32],[-27,-17],[-21,14],[7,47],[20,22],[8,29],[-18,25],[-27,35],[-31,-2],[-17,27],[-6,32],[20,26],[14,23],[-10,49],[-13,33],[27,17],[-5,29],[-24,42],[-17,47],[-33,35],[22,30],[-4,51],[19,34],[1,29],[-1,28],[-1,27],[1,32],[-22,27],[-19,24],[25,53],[-10,26],[-1,44],[29,27],[33,-5],[31,-8],[28,-3],[36,13],[21,21],[17,26],[14,25],[15,30],[12,35],[14,31],[16,48],[18,43],[13,29],[10,28],[23,15],[4,49],[23,28],[1,30],[17,42],[14,33],[13,36],[16,41],[13,31],[9,28],[12,33],[9,25],[13,36],[10,27],[10,37],[19,46],[14,32],[9,29],[4,30],[-4,28],[-13,22],[21,45],[28,52],[8,27],[11,36],[-1,33],[15,43],[9,42],[-3,28],[13,45],[15,45],[20,20],[-5,31],[15,49],[8,30],[20,48],[-5,25],[-4,24],[7,34],[10,33],[9,30],[4,26],[7,47],[11,49],[10,31],[-2,32],[9,33],[7,37],[12,40],[8,34],[5,32],[8,29],[11,36],[9,42],[8,38],[9,34],[14,50],[9,39],[7,36],[4,35],[10,49],[3,32],[7,33],[1,28],[6,43],[7,38],[5,30],[2,32],[9,54],[9,36],[4,29],[5,41],[4,30],[3,30],[4,28],[5,27],[6,40],[1,46],[5,45],[4,40],[-6,30],[-6,46],[-11,27],[-7,27],[5,29],[-1,59],[5,42]],[[18591,91273],[-4,-33],[30,-22],[31,-16],[25,-2],[37,13],[27,-1],[33,-4],[39,0],[28,-26],[20,-25],[27,-26],[29,-16],[45,1],[31,5],[23,-11],[15,-22],[16,-30],[20,-33],[38,1],[-2,-35],[-20,-25],[-4,-32],[-19,-38],[10,-51],[11,-30],[3,-36],[21,-27],[-23,-28],[-1,-39],[-5,-31],[4,-61],[-33,-38],[1,-68],[-19,-34],[-17,-25],[-12,-38],[-22,-30],[-26,13],[-34,-10],[-29,4],[-40,-16],[-42,-35],[-26,-2],[-23,-11],[-25,-8],[-38,-25],[-34,-10],[-36,-6],[-46,16],[-28,-12],[-32,-5],[-45,15],[-25,8],[-19,-17],[-34,-27],[-23,-10],[-19,-24],[-28,-21],[-27,-22],[-40,-4],[-29,-5],[-32,-30],[7,-34],[7,-35],[9,-25],[49,7],[41,-6],[32,-35],[15,-46],[4,-45],[-13,-28],[-15,-23],[-21,-19],[5,-42],[-12,-32],[-6,-36],[4,-85],[0,-29],[12,-36],[-16,-37],[9,-33],[-26,-40],[-33,-17],[-12,-32],[-27,-38],[-47,12],[-22,14],[-30,4],[-46,-13],[-24,-13],[0,-30],[-23,-16],[-27,-14],[-15,-24],[-12,-31],[-7,-34],[-28,-12],[-16,-20],[-62,-19],[-42,-7],[-26,-2],[-32,13],[-25,13],[-20,-16],[0,-45],[-15,-26],[-31,10],[-40,-24],[-9,-27],[-19,-17],[1,-27],[3,-30],[-4,-31],[-18,-29],[-23,-19],[-18,-26],[7,-28],[12,-25],[5,-28],[5,-25],[9,-43],[-17,-23],[-17,-19],[-4,-37],[-3,-31],[-10,-33],[-4,-27],[-27,-38],[5,-33],[18,-29],[-1,-28],[19,-21],[20,-15],[20,-18],[15,-26],[5,-29],[15,-35],[-27,-17],[-21,-16],[2,-31],[-5,-27],[-13,-24],[-9,-25],[-23,-27],[-23,-15],[-22,-14],[-29,-14],[-56,-3],[-24,-18],[-5,-38],[0,-28],[0,-28],[-6,-30],[-21,-15],[-20,-15],[-26,-19],[-8,-43],[-20,-18],[-18,-22],[-10,-44],[-1,-27],[-25,-32],[-24,-8],[-31,0],[-30,-5],[-31,-12],[-20,-26],[-7,-26],[-10,-28],[-20,-24],[-21,-14],[-18,-19],[-12,-23],[-1,-38],[41,-40],[13,-37],[16,-30],[20,-32],[8,-27],[-13,-24],[-7,-29],[-30,-17],[-4,-27],[-2,-29],[-2,-27],[7,-26],[18,-20],[-12,-24],[-22,-25],[-29,-18],[-17,-21],[-8,-26],[-14,-35],[-18,-22],[-25,-16],[-26,-12],[-37,-20],[-23,-13],[-22,-15],[-25,-6],[-21,-18],[-20,-16],[-34,-13],[-27,-4],[-27,-11],[1,-28],[-12,-25],[-24,-14],[-17,-28],[-25,-5],[-26,-4],[-21,-14],[-29,-6],[-10,-26],[-15,-22],[-11,-25],[20,-28],[28,-24],[17,-19],[11,-25],[25,-17],[22,-25],[5,-27],[-12,-23],[-13,-24],[-11,-25],[-11,-30],[4,-35],[-21,-19],[-28,-6],[-26,-15],[-5,-26],[-1,-32],[-18,-21],[-6,-30],[-12,-24],[-22,-14],[-26,-12],[-29,-4],[-25,11],[-24,-6],[-26,5],[-24,19],[-26,-1],[-21,-22],[-25,-9],[-24,-17],[-5,-31],[5,-28],[24,-25],[22,-13],[26,-20],[13,-25],[-5,-27],[3,-27],[5,-27],[14,-25],[17,-22],[24,-11],[23,-13],[6,-28],[-3,-31],[22,-16],[19,-18],[15,-22],[6,-26],[-18,-20],[-17,-19],[-22,-22],[-9,-25],[-15,-28],[2,-28],[18,-8],[9,-5],[28,4],[26,-2],[25,0],[25,-2],[26,-3],[24,2],[25,-12],[27,-11],[14,-26],[5,-30],[-14,-23],[2,-28],[-3,-27],[-3,-27],[7,-32],[22,-22],[22,-16],[-4,-26],[1,-29],[15,-21],[-4,-28],[18,-18],[22,-30],[-8,-28],[16,-20],[4,-28],[-2,-28],[20,-20],[19,-17],[31,-20],[-2,-31],[-11,-44],[-23,-22],[-20,-24],[-26,2],[-24,1],[-38,1],[-28,19],[-28,-4],[-26,4],[-31,27],[-26,14],[-26,-11],[-32,-16],[-29,-13],[-25,-14],[-23,-14],[-23,-23],[-23,-21],[-3,-30],[-12,-35],[-13,-25],[-25,-19],[-33,11],[-33,-1],[-29,-2],[-24,8],[-34,-1],[-29,-2],[-25,-5],[-15,-25],[-23,-17],[-23,-16],[-24,-13],[-22,-18],[-19,-22],[-23,-13],[-23,-26],[-7,-29],[11,-24],[21,-19],[-1,-30],[-22,-27],[-30,-5],[-33,-26],[-21,-25],[3,-35],[-3,-30],[5,-27],[-26,-8],[-22,-15],[-25,-13],[-34,-8],[-37,9],[-28,-2],[-51,-5],[-34,3],[-30,-16],[-31,-10],[-23,-12],[-25,-7],[-26,1],[-25,-5],[-28,1],[-30,-4],[-33,-6],[-22,-21],[-20,-17],[-24,-10],[20,-16],[18,-22],[14,-27],[0,-28],[-20,-27],[-21,-26],[-35,-29],[-20,-18],[-26,-1],[-30,-4],[-37,-2],[-36,-3],[-34,-9],[-26,-4],[-16,-23],[-30,-20],[-26,-16],[-9,-25],[-23,-29],[-24,-10],[-1,-27],[-15,-27],[-13,-27],[-31,-15],[10,-44],[-18,-44],[-21,-23],[-26,-24],[-18,-20],[-33,7],[-31,9],[-26,8],[-30,12],[-25,14],[-24,-16],[-27,-1],[-26,-8],[-29,-8],[-26,-12],[6,-33],[-24,-22],[-23,-22],[-22,-14],[-1,-29],[9,-26],[-16,-30],[-25,-14],[-26,-4],[-23,-17],[-30,-9],[-31,-16],[-30,-21],[-27,8],[-23,42],[-26,-11],[-26,-22],[-40,-9],[-27,-17],[-31,-8],[-31,-8],[-28,-5],[-24,8],[-31,-2],[-27,6],[-23,-11],[-29,0],[-27,-3],[4,-27],[-3,-27],[8,-33],[-1,-36],[-17,-22],[6,-30],[10,-30],[14,-25],[-28,-28],[-26,-9],[-26,-17],[-28,-19],[-26,-6],[-32,-16],[-27,-18],[-16,-23],[-1,-1],[9,-27],[-8,-27],[-11,-24],[9,-38],[-20,-17],[-19,-27],[-26,-6],[-31,-18],[-20,-17],[-38,-3],[-30,4],[-21,-18],[-14,-33],[-7,-27],[-24,-27],[-4,-27],[2,-33],[-23,-21],[-29,1],[-35,-2],[-23,18],[-27,1],[-31,-13],[-27,-22],[5,-29],[-8,-31],[2,-28],[-23,-12],[-12,-28],[3,-31],[13,-33],[14,-27],[17,-19],[-15,-29],[12,-24],[16,-33],[-19,-32],[-36,-7],[-14,-27],[2,-37],[11,-24],[11,-26],[13,-23],[-6,-25],[-3,-28],[4,-30],[1,-32]],[[13074,81819],[19,-28],[17,-23],[10,-28],[9,-30],[16,-20],[24,-17],[19,-18],[17,-20],[15,-21],[31,-12],[20,-17],[26,-11],[29,-4],[23,-20],[33,20],[22,16],[37,-14],[30,-4],[24,-1],[35,-2],[22,-15],[37,-13],[34,-27],[35,-28],[22,-20],[46,-7],[23,-6],[30,-10],[32,-6],[39,-16],[18,-26],[38,-37],[23,-16],[8,-26],[-19,-34],[18,-23],[19,-21],[-12,-31],[-6,-36],[-11,-31],[-17,-31],[-4,-48],[13,-57],[5,-30],[19,-20],[29,-16],[10,-38],[11,-24],[-21,-36],[-14,-24],[26,-28],[19,-27],[-19,-29],[-19,-19],[-40,-21],[-21,-19],[-3,-28],[-33,-35],[0,-29],[-1,-42],[-13,-27],[-10,-35],[8,-30],[11,-25],[-22,-41],[-13,-36],[20,-24],[31,-18],[26,-4],[51,-17],[29,-10],[25,-7],[-13,-31],[-15,-36],[-14,-31],[18,-25],[3,-29],[-4,-27],[18,-26],[-7,-39],[24,-16],[28,-35],[0,-29],[25,-52],[5,-28],[4,-35],[-17,-21],[11,-34],[11,-29],[-36,-5],[-33,-38],[-3,-28],[-16,-27],[-20,-20],[32,-41],[16,-21],[-8,-41],[24,-3],[29,-13],[20,-15],[26,-25],[27,-13],[26,-27],[10,-28],[12,-29],[6,-29],[-9,-33],[-17,-22],[-11,-34],[5,-31],[15,-42],[9,-30],[9,-25],[-8,-41],[-42,-42],[-14,-33],[10,-43],[29,-17],[24,-9],[1,-32],[-4,-43],[-8,-44],[-9,-23],[-1,-1],[15,-28],[29,-17],[26,1],[23,-24],[26,-15],[18,-22],[21,-31],[3,-27],[-12,-24],[27,-43]],[[14353,78560],[-88,0],[-84,-1],[-41,0],[-42,0],[-30,0],[-101,-1],[-151,0],[-84,0],[-32,2],[-101,-1],[-52,0],[-109,0],[-89,0],[-63,0],[-118,-1],[-1,0],[-40,0],[-64,0],[-98,0],[-25,0],[-26,0],[-3,0],[-17,0],[-110,-1],[-141,0],[-85,-1],[-74,0],[-33,0],[-138,-1],[-206,0],[-57,0],[-68,0],[-509,-1],[-28,0],[-131,-1],[-18,0],[-29,0],[-49,0],[-33,0],[-33,0],[-67,0],[-178,-1],[-116,0],[-123,0],[-146,0],[-43,0],[-90,0],[-47,-1],[-33,0],[-32,0],[-31,0],[-30,0],[-59,0],[-106,11],[-288,-1],[-64,-11],[-24,0],[-59,11],[-246,0],[-27,0],[-791,-2],[-140,-10],[1,242],[0,20]],[[42900,91287],[1,-230],[17,-5816],[1,-575],[0,-25],[4,-3528],[1,-694],[1,-573],[-10,-1055],[-4,-438],[-5,-575],[-7,-776],[-10,-1140]],[[42889,75862],[-96,-1],[-48,0],[0,-29],[1,-67],[0,-48],[-30,0],[-42,0],[-80,0],[-38,0],[-14,0],[-28,0],[-6,0],[-99,0],[-53,-1],[-36,0],[-40,1],[-102,-1],[-105,0],[-234,2],[-42,1],[-38,0],[-86,0],[-95,-6],[-111,-7]],[[41467,75706],[3,127],[3,176],[183,-2],[1,156],[83,1],[-1,25],[-3,98],[-1,31],[42,0],[46,1],[-2,46],[-1,69],[-1,30],[-1,14],[5,19],[19,86],[5,21],[3,15],[-1,74],[-1,63],[-1,74],[-2,105],[0,45],[1,160],[0,50],[0,77],[0,40],[1,43],[0,188],[85,0],[0,71],[-2,236],[-12,0],[-78,0],[0,93],[0,76],[0,1],[1,138],[-22,0],[-152,0],[0,60],[-1,27],[-15,0],[-73,0],[0,77],[-90,0],[0,76],[-44,1],[-47,0],[0,65],[-90,1],[0,44],[1,64],[1,51],[-96,2],[3,153],[-43,0],[-49,2],[-1,15],[0,3],[0,138],[-182,1],[0,56],[-1,78],[0,27],[0,105],[0,43],[-93,0],[-4,144],[19,-1],[-1,91],[-1,85],[-1,138],[-111,-4],[-74,-2],[-116,2],[-61,2],[0,58],[1,175],[-12,-1],[-36,0],[-70,0],[-66,-1],[-9,86],[-83,-11],[-91,-1],[-75,1],[-93,0],[-30,0],[-168,1],[-83,2],[-68,1],[-37,0],[0,47],[0,31],[-33,-1],[-43,0],[-111,0],[3,36],[-1,38],[-63,-1],[-89,1],[-32,0],[1,43],[1,74],[-73,-1],[-25,1],[-88,0],[0,26],[0,45],[-94,0],[2,99],[1,58],[-73,-1],[-21,0],[1,20],[3,57],[-190,2],[0,12],[0,63],[-92,2],[9,152],[-91,1],[0,31],[0,121],[-62,0],[-216,0],[3,97],[1,55],[-94,1],[1,36],[3,117],[-95,1],[-52,-1],[-38,-1],[0,28],[-1,58],[0,64],[-46,1],[-57,1],[-13,0],[-68,1],[0,8],[0,66],[-65,0],[-119,1],[-1,77],[-36,0],[-107,1],[-129,1],[-1,229],[-81,0],[-168,1],[-6,0],[-86,1],[-107,0],[2,78],[-33,-1],[-43,1],[-86,1],[-31,0],[1,41],[0,35],[-50,1],[-40,0],[-3,39],[-2,37],[-264,9],[-142,0],[-169,-1],[-8,1],[-17,0],[-68,-1],[-55,0],[0,78],[-1,1],[-23,0],[-86,-1],[-62,0],[-67,3],[-103,-1],[-27,0],[0,-43],[0,-34],[-62,0],[-29,0],[0,-18],[-1,-59],[-85,0],[-31,0],[-103,0],[-4,-5],[5,-117],[5,-104],[-3,-24],[-181,1],[-4,-75],[-183,0],[-2,-153],[-92,-2],[-1,-75],[-93,0],[1,-75],[-182,-2],[0,-4],[0,-40],[0,-85],[0,-78],[0,-105],[0,-133],[-42,0],[-21,0],[-121,0],[0,-77],[-44,-1],[-54,0],[-239,-1],[-32,0],[3,85],[2,68],[-84,0],[-62,0],[-39,1],[7,111],[2,40],[-176,0],[-39,0],[-68,0],[-251,1],[-26,0],[-2,148],[-43,-1],[-98,-2],[-40,1],[-68,0],[-71,0],[-45,0],[0,160],[0,69],[-59,0],[-26,0],[-110,-1],[1,78],[2,0],[1,157],[0,39],[0,76],[0,17],[0,29],[0,2],[0,29],[0,37],[0,36],[2,115],[0,1],[0,78],[0,28],[1,67],[0,60],[0,48],[0,34],[-1,29],[-1,66],[1,42],[-1,90],[1,89],[-1,73],[-2,412],[0,4],[0,95],[-1,62],[-1,114],[-69,0],[-26,1],[-25,-1],[-48,3],[-26,1],[-75,-3],[-113,0],[-184,-1],[-63,0],[-49,-2],[-4,0],[-79,-3],[-37,0],[-33,0],[-42,0],[-51,0],[-186,1],[-98,1],[-93,2],[-37,0],[-36,-2],[-52,-1],[-58,-1],[-361,-1],[-328,-3],[-26,0],[-52,1],[-60,-3],[-92,-4],[-64,1],[-12,0],[-37,1],[-76,0]],[[29980,83491],[2,68],[1,46],[1,27],[1,35],[1,40],[1,54],[1,35],[0,27],[1,47],[1,50],[0,51],[1,71],[36,1],[0,64],[0,47],[1,39],[0,92],[1,115],[0,100],[0,41],[0,62],[-1,153],[0,208],[6,391],[1,41],[0,35],[3,272],[0,3],[0,122],[3,208],[-1,34],[2,167],[0,37],[1,27],[0,3],[1,266],[2,155],[0,71],[0,32],[0,32],[0,32],[0,31],[0,34],[0,28],[0,33],[0,32],[0,42],[0,178],[0,167],[0,74],[-1,69],[0,68],[0,77],[0,126],[-1,34],[0,47],[2,90],[-1,49],[0,35],[0,64],[3,61],[5,51],[2,38],[1,32],[-33,-2],[-87,-4],[5,99],[6,66],[1,37],[0,31],[1,75],[0,43],[-1,87],[0,63],[0,27],[0,54],[-1,52],[0,69],[0,33],[-1,45],[1,68],[0,44],[0,43],[1,81],[0,32],[0,31],[0,29],[1,39],[0,23],[0,4],[0,139],[0,47],[0,39],[-1,78],[0,2],[-1,4],[-2,11],[0,6],[1,5],[1,3],[-1,76],[-1,129],[0,32],[-1,26],[0,3],[-1,74],[0,33],[-1,61],[0,43],[-1,51],[0,30],[0,70],[0,75],[0,29],[0,48],[1,46],[-1,61],[0,86],[0,61],[0,31],[0,36],[0,37],[0,37],[0,57],[0,27],[0,27],[0,26],[0,34],[0,34],[5,51]],[[29980,83491],[-95,2],[-56,28],[-31,16],[-39,-8],[-106,-22],[-22,-5],[-8,-1],[-114,-1],[-100,1],[-146,2],[-367,-2],[-150,-1],[-225,-1],[-114,-3],[-2,0],[-40,-1],[-37,-1]],[[28328,83494],[-34,1],[-26,-1],[-105,-7],[-47,3],[-27,1],[-8,1],[-70,7],[-21,2],[-10,0],[-20,0],[-14,0],[-275,-5],[-38,-17],[-37,-9],[-41,-9],[-18,-27],[-22,-32],[-25,-26],[-26,-9],[-21,-20],[-35,-5],[-27,3],[-27,5],[-26,-2],[-37,28],[-33,23],[-18,18],[-28,4],[-25,5],[-26,-10],[-24,-8],[-25,-1],[-25,6],[-25,1],[-30,-2],[-25,-3],[-28,-5],[-26,-1],[-23,-12],[-24,-4],[-27,-6],[-22,13],[-20,16],[-23,23],[-19,18],[-24,1],[-21,16],[-21,17],[-24,7],[-23,9],[-24,8],[-22,14],[-13,24],[-29,-4],[-24,3],[-31,9],[-22,11],[-24,7],[-24,-8],[-26,-6],[-26,-13],[-21,-16],[-23,-8],[-34,5],[-22,15],[-25,2],[-26,4],[-24,-11],[-25,-8],[-25,0],[-24,-3],[-17,-20],[-14,-22],[-19,-17],[-17,-21],[-29,-27],[-11,-11],[-6,-4],[-16,-8],[-8,-3],[-19,-3],[-37,0],[-46,9],[-12,1],[-75,-1],[-81,-1],[-24,2],[-117,13],[-29,6],[-24,16],[-14,12],[-14,13],[-7,4],[-22,9],[-8,2],[-43,-4],[-23,-5],[-13,-1],[-74,10],[-6,3],[-12,8],[-5,1],[-9,-1],[-6,-2],[-6,-5],[-10,-8],[-33,-17],[-8,-3],[-4,0],[-15,-1],[-16,-1],[-37,-7],[-88,-26],[-6,-3],[-4,-1],[-25,-2],[-39,2],[-6,1],[-3,3],[-3,8],[-99,36],[-10,3],[-12,0],[-54,-7],[-10,-2],[-50,-11],[-8,-3],[-4,-2],[-6,-7],[-1,-2],[-2,-1],[-23,-8],[-23,-11],[-12,-6],[-9,-3],[-9,0],[-11,1],[-19,3],[-6,0],[-10,-2],[-18,-7],[-5,-4],[-61,-53],[-6,-7],[-3,-6],[-1,-3],[-17,-11],[-13,-6],[-17,-6],[-8,0],[-7,2],[-9,0],[-4,-1],[-3,-1],[-15,-19],[-13,-17],[-22,-26],[-3,-1],[-9,-2],[-67,14],[-22,7],[-10,5],[-14,7],[-3,3],[-22,9],[-9,-2],[-31,-16],[-8,-3],[-2,0],[-5,-2],[-7,-6],[-20,-23],[-7,-7],[-8,-7],[-3,-2],[-9,-4],[-6,-2],[-20,-1],[-24,0],[-28,-3],[-9,-3],[-10,-7],[-7,-9],[-1,0],[-27,-6],[-7,0],[-12,4],[-5,1],[-30,9],[-5,3],[-11,8],[-1,1],[-8,4],[-14,6],[-63,2],[-29,1],[-4,1],[-12,12],[0,3],[-3,2],[-3,1],[-26,7],[-23,5],[-64,3],[-8,0],[-6,-2],[-41,4],[-57,12],[-69,16],[-2,2],[-5,2],[-10,1],[-8,-1],[-4,-3],[-8,-12],[-15,-14],[-35,16],[-19,3],[-2,1],[-15,16],[-3,1],[-8,-1],[-18,-5],[-5,0],[-3,2],[0,2],[-7,5],[-6,1],[-36,-21],[-4,-3],[-1,-23],[-4,-12],[-3,-2],[-9,0],[-7,1],[-25,23],[-4,1],[-23,8],[-16,-10],[-1,-1],[-64,-21],[-5,-4],[-2,-6],[-1,-8],[1,-4],[3,-6],[3,-4],[-16,-8],[-27,22],[-6,3],[-4,0],[-10,-3],[-23,-8],[-16,-3],[-33,0],[-11,3],[-12,9],[-9,4],[-39,6],[-6,0],[-4,-2],[-27,-17],[-8,-8],[-66,-24],[-1,-1],[-7,-2],[-11,0],[-9,2],[-11,2],[-52,-4],[-11,-4],[-9,-6],[-9,-4],[-32,-13],[-16,-4],[-9,-1],[-58,4],[-33,16],[-28,-14],[-22,-31],[-19,-1],[-6,2],[-5,4],[-1,2],[0,10],[3,20],[0,12],[-2,1],[-6,1],[-5,-3],[-31,-25],[-7,-14],[-5,-4],[-10,-5],[-41,-13],[-8,-4],[-7,-8],[0,-6],[3,-9],[0,-4],[-3,-2],[-10,-5],[-14,-1],[-10,2],[-10,4],[-14,9],[-8,2],[-3,0],[-4,-2],[-15,-14],[-3,-4],[-1,-7],[-1,-4],[-6,-2],[-28,-5],[-7,0],[-4,1],[-3,4],[-5,3],[-1,0],[-12,3],[-7,0],[-2,-1],[-1,0],[-6,-1],[-4,-4],[-3,-4],[0,-13],[3,-12],[0,-1],[1,-4],[2,-2],[1,-7],[-1,-4],[-6,-3],[-4,-1],[-34,-11],[-8,0],[-9,2],[-16,4],[-11,0],[-46,0],[-18,-1],[-24,0],[-42,-6],[-40,-7],[-25,-6],[-12,-3],[-8,-3],[0,-4],[0,-1],[-4,-5],[-24,-16],[-2,-1],[-14,1],[-55,-2],[-28,-3],[-29,-3],[-4,0],[-39,-4],[-32,-11],[-41,-35],[-4,-5],[0,-6],[5,-9],[2,-4],[8,-6],[7,-3],[37,-8],[4,2],[7,6],[5,1],[4,0],[2,0],[9,-5],[13,-7],[4,-4],[13,-16],[19,-22],[-25,1],[-25,-2],[-41,-1],[-37,26],[-27,26],[-19,22],[-5,29],[-9,33],[-13,-28],[-11,-30],[-7,-12],[-8,-16],[-14,-35],[0,-12],[0,-20],[-7,0],[-14,2],[-2,0],[-15,2],[-5,1],[-8,5],[-15,21],[-10,11],[-3,2],[-16,3],[-1,0],[-15,0],[-4,-1],[-7,-3],[-3,2],[-48,26],[-1,2],[-6,5],[-1,1],[-1,0],[-10,4],[-19,1],[-1,0],[-23,5],[-13,9],[-3,3],[-4,6],[-1,2],[-1,5],[-7,5],[0,1],[-9,2],[-14,-1],[-10,-2],[-7,-2],[-6,-7],[-2,-3],[0,-10],[-1,-1],[-2,-4],[-5,-4],[-16,-5],[-1,0],[-1,-1],[-17,-1],[-11,0],[0,1],[-33,11],[-15,1],[0,1],[-92,4],[-7,0],[-5,-2],[-9,-7],[0,-1],[-9,-8],[-7,-7],[-6,-13],[1,-19],[-2,-13],[-3,-6],[-10,-6],[-10,-4],[-16,0],[-8,2],[-7,5],[-8,3],[-8,0],[-15,-2],[-1,0],[-31,-12],[-68,-7],[-10,-2],[-9,-4],[-9,-5],[-1,-1],[-9,-4],[-20,-6],[-2,-1],[-1,0],[-1,0],[-7,0],[-14,-1],[-5,1],[0,1],[-12,6],[-1,0],[-1,1],[-8,6],[-1,2],[-4,0],[-3,0],[-17,1],[-6,0],[-8,4],[0,1],[-15,14],[-10,9],[-7,4],[-6,1],[-3,0],[-7,-3],[-8,-5],[-22,-20],[-1,-1],[-2,-3],[0,-1],[-2,-10],[-1,-2],[-7,-6],[-2,-2],[-5,-2],[-80,-41],[-9,-3],[-12,-1],[-11,2],[-15,4],[-36,15],[-8,9],[-7,4],[-14,4],[-25,3],[-24,-6],[-2,-2],[-2,-4],[-7,-5],[-25,-5],[-3,0],[-17,6],[-7,3],[-48,5],[-7,0],[-6,-1],[-5,-3],[-11,-11],[-3,-4],[-8,-11],[-5,-2],[-1,0],[-12,-2],[-16,-1],[-2,0],[-1,0],[-15,3],[-3,1],[-4,2],[-4,2],[-9,1],[-2,1],[-17,2],[-7,2],[-6,0],[-11,-1],[-12,-3],[-20,1],[-46,11],[-46,13],[-64,-16],[-11,5],[-128,12],[-29,0],[-10,-2],[-36,-14],[-5,-3],[-3,-2],[-5,1],[-78,20],[-46,0],[-36,1],[-13,4],[-2,1],[0,1],[-1,1],[-14,13],[-3,3],[0,3],[-4,6],[-3,5],[-8,11],[-5,4],[-11,4],[-44,-4],[-15,-11],[-2,0],[-24,-18],[-23,-11],[-3,-1],[-32,-9],[-11,-2],[-22,-2],[-25,-2],[-16,-6],[-8,-2],[-30,0],[-10,2],[-15,7],[-34,23],[-4,6],[-1,4],[-2,4],[-4,3],[-16,7],[-1,0],[-25,-2],[-10,-3],[-11,-7],[-5,-9],[-5,-3],[-21,-7],[-6,-2],[-11,1],[-3,1],[-2,2],[-3,16],[-2,5],[-3,5],[0,1],[-14,21],[-1,1],[-31,29],[-8,5],[-9,3],[-1,0],[-1,0],[-18,3],[-41,3],[-16,0],[-5,-2],[-3,-2],[-7,-8],[-1,-1],[-2,-3],[-10,-13],[-8,-9],[-2,-1],[-4,-3],[-12,1],[-8,3],[-4,2],[-3,3],[-2,3],[-1,2],[-6,5],[-6,4],[-22,9],[-6,1],[-14,1],[-20,-1],[-40,-10],[-1,-1],[-15,-3],[-10,2],[-9,4],[-7,5],[-3,4],[-2,5],[0,2],[0,17],[-3,8],[-24,28],[-3,1],[-10,-1],[-1,0],[-15,-9],[-7,-3],[-18,-3],[-6,0],[-20,3],[-5,1],[-8,4],[-8,7],[-3,7],[-5,8],[-1,0],[-35,30],[-10,4],[-29,5],[-6,-1],[-8,-1],[6,-21],[1,0],[3,-2],[10,-7],[13,-29],[1,-7],[-1,-3],[-3,-4],[-5,-4],[-12,-1],[-5,2],[-5,4],[-2,1],[-3,0],[-35,-23],[-16,-13],[0,-1],[-4,-4],[-2,-7],[1,-9],[4,-4],[2,-4],[-4,-8],[-10,-9],[-10,-3],[-8,0],[-12,4],[-6,5],[-11,10],[-9,5],[-12,4],[-1,0],[-8,2],[-8,0],[-9,-4],[-3,-2],[0,-5],[1,-2],[0,-1],[5,-5],[4,-11],[0,-5],[-1,-15],[-1,-7],[-3,-5],[-3,-1],[-8,-1],[-23,5],[-5,3],[-4,3],[-1,1],[-3,4],[-7,5],[-10,3],[-17,-1],[-6,-2],[-4,-2],[-2,-7],[-1,-7],[1,-3],[0,-1],[6,-9],[0,-6],[-1,-2],[-13,-12],[-39,-29],[-32,-25],[-26,-20],[-12,-8],[-7,-3],[-9,-1],[-4,1],[-6,4],[-10,10],[-6,3],[-6,0],[-31,0],[-18,0],[-2,0],[-26,3],[-24,5],[-7,-1],[-20,-6],[-3,-2],[-7,-11],[-1,-4],[1,-7],[1,-3],[3,-5],[0,-1],[0,-10],[-2,-4],[-10,-15],[0,-1],[-1,-1],[-12,-12],[-3,0],[-56,-12],[-10,-1],[-36,-10],[-16,-8],[-9,-7],[-1,-6],[-1,-1],[-2,-4],[-5,-4],[-5,-3],[-15,-8],[-3,-13],[0,-4],[-4,-7],[-4,-6],[-79,-51],[-10,-3],[-13,0],[-14,5],[-1,1],[-64,16],[-14,1],[-23,-6],[-7,-3],[-3,-3],[0,-6],[0,-1],[15,-26],[22,-15],[3,-3],[2,-5],[0,-4],[-3,-7],[-5,-4],[-19,-6],[-1,0],[-6,0],[-17,-2],[-22,-4],[-16,-1],[-1,0],[-17,-5],[-3,-2],[-3,-4],[1,-21],[-1,-6],[-11,-14],[-6,-5],[-11,-1],[-10,1],[-16,5],[-8,0],[-6,-1],[-14,-7],[-9,-3],[-9,0],[-11,1],[-7,1],[-5,0],[-5,-3],[-4,-2],[0,-1],[-6,-4],[-8,-10],[-2,-8],[-23,-23],[-3,-2],[-7,-1],[-13,2],[-27,5],[-15,4],[-9,4],[-7,5],[-1,1],[-10,5],[-36,15],[-9,0],[-6,-2],[-1,0],[-21,-12],[-21,-9],[-1,0],[-8,-1],[-22,4],[-11,2],[-5,2],[-6,6],[-5,12],[0,10],[1,4],[1,1],[-2,13],[-3,4],[-15,9],[-11,2],[-15,3],[-19,-2],[-11,-3],[-3,0],[0,-1],[-17,2],[-21,5],[-14,5],[-5,3],[-3,2],[-7,10],[-37,22],[-56,24],[-3,1],[-11,5],[-22,9],[-25,11],[-5,2],[-10,8],[-17,11],[-6,2],[-21,6],[-4,1],[-3,0],[-81,-3],[-9,-1],[-9,-1],[-1,0],[-14,-3],[-7,-3],[-12,-3],[-4,-1],[-7,0],[-4,-1],[-7,-1],[-4,0],[-6,0],[-8,1],[-3,1],[-8,2],[-6,3],[-2,2],[-2,10],[2,6],[4,7],[1,2],[7,22],[11,64],[0,3],[-68,47],[-18,13],[-8,5],[-12,4],[-10,2],[-19,2],[-11,1],[-9,0],[-20,-2],[-26,-8],[-5,-2],[-8,-6],[-2,-4],[-2,-6],[0,-2],[3,-16],[-1,-4],[-2,-3],[-6,-2],[-5,1],[-17,4],[-6,3],[-7,6],[-5,10],[-3,3],[-3,1],[-8,2],[-4,0],[-33,0],[-77,-21],[-21,-9],[-8,-8],[-1,0],[-5,-7],[-5,-3],[-4,-1],[-27,-2],[-9,2],[-12,1],[-11,-1],[-10,-2],[-1,0],[-3,-1],[-2,-1],[-7,-5],[-8,-6],[-4,-3],[-3,-4],[-26,-9],[-4,-1],[-9,-1],[-13,3],[-22,4],[-13,-2],[-21,-4],[-39,-1],[-20,4],[-8,0],[-36,0],[-11,-4],[-27,-18],[-5,-3],[-9,-10],[-3,-9],[-3,-3],[-6,-2],[-64,-8],[-56,-10],[-25,6],[-11,1],[-69,-17],[-14,-9],[-4,-5],[-4,-7],[-41,-10],[-38,-10],[-33,-8],[-1,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-8,3],[-2,0],[-2,1],[-2,0],[-12,0],[-17,3],[-11,3],[-15,7],[-55,12],[-1,1],[-18,11],[-6,-2],[-13,-6],[-19,0],[-5,1],[-4,3],[0,2],[-13,8],[-4,0],[-16,-4],[-16,-6],[-26,-11],[-15,-14],[-13,-35],[-25,5],[-2,-10],[10,-15],[-11,-9],[-30,-20],[-12,-27],[-25,-15],[-9,-4],[-108,-117],[-1,-5],[2,-5],[4,-6],[1,-2],[3,-4],[0,-2],[-20,-37],[-5,-1],[-10,16],[-3,3],[-6,2],[-5,1],[-2,-1],[-16,-19],[0,-2],[0,-2],[0,-15],[-2,-5],[-2,-4],[-1,-1],[-2,-4],[-16,-16],[-17,-11],[-24,7],[-15,-22],[-8,-14],[-5,-9],[-11,2],[-12,-6],[-1,3],[-6,5],[-18,-1],[-13,-4],[-3,-2],[-3,-1],[-5,0],[-23,6],[-19,7],[-5,4],[-3,21],[-7,1],[-2,0],[-22,6],[-3,2],[-1,2],[0,6],[0,1],[2,10],[-2,4],[-4,1],[-4,1],[-57,-10],[-8,-2],[-8,-3],[-3,-1],[-27,-13],[-1,-3],[-10,-18],[-20,-7],[-14,17],[-6,5],[-7,2],[-54,4],[-52,0],[-30,-3],[-9,0],[-8,0],[-31,2],[-5,3],[-15,14],[-3,4],[-3,7],[-29,18],[-6,1],[-5,-5],[-7,-6],[-10,-8],[-7,-3],[-9,-1],[-2,1],[-32,0],[-5,0],[-16,-11],[-3,-2],[-22,-10],[-15,-7],[-33,-5],[-59,-15],[-19,-6],[-37,-6],[-53,-6],[-5,-1],[-4,-1],[-1,-2],[-3,-9],[-1,-1],[-8,-19],[-37,-6],[-9,-2],[-22,0],[-6,0],[-14,9],[-7,5],[-9,1],[-3,-1],[-9,-4],[-3,-3],[-7,-4],[-7,-5],[-2,-1],[-54,-31],[-10,-9],[-50,-50],[-10,-14],[-1,-3],[-9,-12],[-4,-3],[-5,0],[-3,1],[-5,4],[-9,4],[-22,2],[-16,0],[-8,-14],[-20,-31],[-34,-12],[-25,-10],[-25,1],[-35,5],[-25,10]],[[28328,83494],[8,-28],[22,-18],[-17,-37],[-14,-40],[41,-34],[25,-11],[41,-1],[34,-22],[62,-7],[26,-19],[-36,-41],[-12,-23],[-2,-32],[-14,-23],[8,-27],[-16,-38],[-8,-37],[-11,-27],[-5,-35],[1,-28],[12,-25],[-11,-35],[-1,-44],[12,-30],[23,-30],[27,-17],[31,-27],[-7,-28],[-31,-27],[-25,-35],[11,-27],[3,-34],[16,-22],[32,-26],[12,-27],[8,-30],[39,-19],[32,-3],[43,6],[59,-4],[59,-10],[57,-7],[39,-2],[25,3],[31,11],[34,11],[51,-30],[26,-6],[38,-11],[28,-21],[26,-12],[31,-6],[43,-5],[36,4],[32,1],[33,-25],[44,-9],[28,2],[23,9],[25,6],[26,-13],[22,-19],[29,-29],[25,-16],[32,-15],[-1,-41],[6,-53],[25,-2],[25,2],[31,-17],[24,-14],[12,-25],[16,-21],[46,-12],[26,-14],[16,-25],[24,-11],[-7,-33],[-42,2],[-25,-9],[-9,-25],[-32,-34],[-24,-30],[-27,-1],[-29,17],[-29,19],[-52,-11],[-60,-19],[13,-33],[32,-7],[20,-33],[-1,-33],[27,-7],[37,2],[6,-38],[10,-29],[20,-17],[8,-28],[28,-5],[42,-4],[23,-20],[-5,-33],[-25,-26],[23,-24],[-5,-39],[-5,-7],[-19,-22],[-18,-21],[-13,-40],[-29,-30],[-20,-15],[-19,-16],[-35,-28],[3,-29],[15,-34],[-21,-38],[9,-38],[22,-25],[23,-33],[-7,-30],[-14,-21],[-16,-31],[-2,-36],[-18,-32],[-32,-10],[-50,-13],[-32,-2],[-39,2],[-28,-17],[-17,-24],[-16,-24],[-27,-19],[-28,-23],[-37,-5],[-26,-26],[-3,-27],[-26,-24],[-25,-13],[-30,12],[-22,19],[-26,3],[-39,3],[-36,4],[-35,-4],[-29,-2],[-38,13],[-25,-9],[-30,0],[-19,-19],[-28,-27],[12,-24],[25,-3],[17,-25],[9,-29],[-18,-26],[-38,-21],[-17,-24],[8,-40],[14,-26],[2,-28],[-7,-30],[5,-29],[-15,-22],[-9,-34],[10,-60]],[[28847,80383],[6,-221],[-100,-1],[2,-86],[-281,5],[2,-82],[-93,-1],[8,-77],[-100,-2],[7,-58],[1,-8],[-70,-1],[-76,0],[-183,-1],[-452,-3],[-44,0],[-10,-72],[-88,3],[0,-129],[0,-51],[0,-241],[-140,-3],[2,-76],[-48,-1],[-34,-1],[-4,-67],[-82,3],[-2,-148],[-87,-2],[-3,-271],[-1,-30],[-87,3],[-2,-153],[-57,-2],[-131,4],[-23,1],[-41,1],[-58,2],[-139,5],[-87,4],[-14,0],[-11,-1],[-2,-12],[-7,-27],[-18,-24],[-14,-13],[-1,-1],[-39,-31],[-33,-27],[-6,-1],[-12,-4],[-26,-2],[-17,-2],[-8,-3],[-8,-7],[-21,-21],[-4,-7],[-2,-15],[0,-6],[0,-5],[-16,-39],[-6,-17],[-7,-16],[-2,-4],[-1,-2],[-8,-11],[-4,-3],[-5,-4],[-8,-3],[-8,-2],[-7,-2],[-23,-9],[-5,-4],[-9,-12],[-55,-77],[-22,-34],[-9,-22],[-4,-6],[-3,-7],[-30,-136],[-10,-117],[2,-11],[3,-5],[2,-3],[-1,-9],[0,-5],[-3,-28],[-1,-9],[-4,-13],[-2,-4],[-2,-2],[-7,-8],[-12,-12],[-40,-18],[-8,-2],[-14,-10],[-17,-13],[-2,-1],[-1,0],[-52,-29],[-21,-18],[-10,-9],[-8,-7],[-24,-25],[-25,-25],[-297,-1],[36,-42],[-300,-8],[-95,-5],[-162,0],[-133,-1],[-105,-8],[-338,1],[-81,0],[-131,0],[-9,0],[-102,1],[-66,0],[-39,0],[-54,0],[-9,0],[-52,0],[-12,0],[-39,1],[-13,0],[-99,0],[-319,1],[-31,0],[-127,8],[-8,-20],[-23,-50],[-25,-58],[-23,-21],[-6,-6],[-48,-46],[-20,-34],[6,-35],[-1,-35],[-4,-10],[-8,-18],[-19,-35],[-9,-7],[-6,-4],[-21,-15],[-23,-13],[-26,-25],[-14,-31],[2,-4],[15,-27],[24,-34],[19,-23],[34,-19],[23,-18],[2,-4],[6,-27],[-13,-30],[-6,-16],[-3,-9],[-6,-16],[-5,-13],[-29,-24],[-15,-13],[-8,-6],[13,-32],[30,-21],[36,-30],[28,-18],[9,-2],[15,-4],[24,-11],[28,-51]],[[22988,76656],[-63,0],[-3,-1],[-37,0],[-72,0],[-114,0],[-88,0],[-171,-1],[-26,0],[-153,0],[-35,0],[-67,1],[-91,0],[-195,25],[-152,0],[-219,0],[-617,1],[-175,0],[-32,0],[-139,0],[-520,0],[-67,0],[-83,0],[-95,0],[-196,0],[-86,0],[-249,0],[-41,-2],[-44,-1],[-50,0],[-44,0],[-43,0],[-104,-1],[-52,-1],[-35,0],[-44,-1],[-58,0],[-40,0],[-68,0],[-56,0],[-125,0],[-28,0],[-39,1],[-43,1],[-38,0],[-28,1],[-25,0],[-54,0],[-50,1],[-9,0],[-43,0],[-75,0],[-4,-1],[-34,0],[-2,0],[-15,0],[-15,0],[-215,-1],[-63,0],[-230,-1],[-5,0],[-48,0],[-32,0],[-27,0],[-63,1],[-139,0],[-24,0],[-161,2],[-34,0],[-25,1],[-67,0],[-41,0],[-64,0],[-25,1],[-129,1],[-60,0],[-153,0],[-56,1],[-32,0],[-28,0],[-86,1],[-47,1],[-41,0],[-115,0],[-27,1],[-25,0],[-98,0],[-89,0],[-39,0],[-29,0],[-37,0],[-104,0],[-54,0],[-3,0],[-25,0],[-54,0],[-116,0],[-111,-4],[-24,-1],[-68,-2],[-69,-2],[-40,-1],[-33,-1],[-91,-2],[-47,-2],[-54,1],[-42,0],[-73,3],[-6,0],[0,-11],[-121,-2],[-101,-1],[-30,0]],[[14317,76661],[-28,13],[-25,20],[-10,25],[-1,30],[3,31],[-4,27],[-8,26],[-10,25],[2,31],[-5,28],[-4,33],[-2,33],[0,30],[-14,40],[-23,18],[-25,13],[-28,10],[-11,26],[-18,23],[6,29],[10,25],[1,28],[21,20],[-1,28],[0,32],[19,26],[13,22],[10,25],[7,28],[-14,24],[-10,25],[10,25],[17,26],[5,26],[-10,25],[7,27],[2,27],[9,24],[14,22],[-7,27],[-7,26],[6,27],[-3,28],[-16,20],[-1,28],[22,13],[24,7],[26,1],[24,7],[25,7],[23,9],[30,3],[33,7],[21,14],[23,12],[24,6],[18,18],[-4,30],[1,41],[-2,33],[6,28],[28,2],[27,15],[25,8],[12,25],[-24,15],[-24,15],[-26,14],[-13,22],[-23,12],[-20,25],[-27,9],[1,35],[3,30],[-4,30],[0,31],[18,26],[-4,31],[-10,33],[6,28],[-12,26],[-17,20],[-22,13],[-20,22],[-9,24]],[[41467,75706],[-179,1],[-346,1],[-30,1],[-158,0],[-13,0],[-142,1],[-27,0],[-11,0],[-80,0],[-372,-3],[-542,-4],[-336,-3],[-724,-5],[-154,-2],[1,-19],[-602,2],[-1213,5],[-10,-93],[-5,-27],[-15,-22],[-21,-35],[-11,-25],[-40,-22],[-35,-15],[-36,-5],[-18,-20],[-24,-7],[-22,-19],[-23,-12],[-18,22],[-12,23],[-39,28],[-22,20],[-18,22],[-18,18],[-19,27],[-32,7],[-24,-12],[-22,10],[-19,23],[-8,26],[-19,24],[-26,3],[-15,24],[-13,25],[-21,20],[-25,6],[-31,12],[-27,-2],[-27,-6],[-30,14],[-42,0],[-10,27],[-28,-1],[-23,10],[-25,20],[-25,24],[-23,16],[-26,23],[-33,-5],[-27,0],[-24,-16],[-58,2],[-47,-1],[-3,-27],[-15,-21],[-31,-8],[-27,-3],[-27,2],[-19,-26],[-36,0],[-28,7],[-24,13],[3,36],[-34,35],[-37,5],[-25,10],[-24,11],[-26,-3],[-26,6],[-11,33],[-14,30],[-6,30],[-4,26],[-6,30],[-8,25],[12,26],[-3,29],[-9,28],[-26,2],[-25,-21],[-26,-5],[-26,-6],[-23,8],[-10,28],[-24,10],[-44,-7],[-25,-6],[-26,18],[-13,31],[-23,13],[0,30],[-14,25],[-24,11],[-28,5],[-27,11],[-14,25],[-20,32],[-17,39],[-24,19],[-30,20],[-16,22],[-28,9],[-27,12],[-28,-14],[-20,-37],[-33,-5],[-26,-12],[-24,-21],[-24,-12],[-17,-19],[-20,-19],[-17,-19],[-25,-19],[-27,-2],[-34,8],[-18,-19],[-25,-11],[-26,1],[-26,1],[-22,-11],[-24,-34],[-29,-14],[-32,-16],[-9,-25],[-21,-44],[-48,-32],[-32,-22],[1,-152],[1,-126],[0,-32],[0,-31],[0,-28],[-13,-27],[-3,-1],[-8,-1],[-5,-3],[-2,-3],[-2,-5],[0,-3],[1,-5],[0,-1],[3,-8],[3,-19],[0,-5],[3,-26],[0,-5],[-1,-2],[-2,-2],[-2,-1],[-28,2],[7,-36],[-13,-13],[-13,-40],[-11,-17],[-6,-10],[-6,-7],[-11,-9],[-11,-8],[-20,-8],[-10,-7],[-10,-8],[-11,-9],[-1,-5],[1,-1],[4,-7],[19,-23],[1,-6],[-1,-2],[-6,-5],[-38,-29],[-6,-3],[-6,0],[-2,-1],[-3,0],[-18,3],[-1,-18],[-3,-3],[-5,-3],[-36,-11],[-10,-5],[-5,-3],[-6,-10],[-8,-34],[-1,-3],[-19,-20],[-5,-3],[-53,-38],[-23,-21],[0,-1],[0,-18],[-29,-23],[-3,0],[-5,0],[-41,0],[-3,0],[0,-1],[-2,-22],[-20,-20],[-88,-44],[-12,-4],[-46,-19],[-19,5],[-61,-14]],[[33079,74966],[-87,-41],[-19,-12],[-76,-49],[-47,-32],[-116,-76],[-5,-3],[-55,-38],[-29,-23],[-5,-3],[-70,-48],[-33,-22],[-40,-28],[-66,-45]],[[32431,74546],[-30,62],[-87,-1],[-8,110],[-76,-1],[6,14],[-1,16],[-1,65],[-186,3],[-1,57],[-151,1],[-70,1],[5,311],[-32,0],[-131,2],[-1,67],[-70,4],[-2,76],[-75,-1],[-1,19],[-2,130],[-7,33],[-87,-1],[-1,38],[-93,-1],[-2,91],[-174,-3],[3,110],[-35,4],[-3,149],[-71,3],[-98,4],[-9,134],[-198,6],[-15,148],[-83,4],[-86,3],[14,158],[-175,3],[3,129],[-52,-1],[-2,53],[-58,-1],[5,38],[-111,3],[-1,77],[-82,-6],[-15,162],[-123,-2],[-15,143],[-169,7],[-9,153],[-94,8],[-3,149],[-210,6],[-8,67],[-22,1],[-40,2],[-40,1],[-49,3],[-2,76],[-111,13],[-8,296],[-181,2],[2,158],[181,-2],[2,149],[-87,3],[-2,302],[88,1],[4,306],[-99,4],[-4,127],[-4,160],[94,1],[2,153],[99,-3],[-5,230],[216,3],[1,197],[129,-8],[-4,172],[-106,3],[-5,230],[-99,-6],[0,15],[4,61],[-176,2],[-3,373],[-309,7],[-72,2]],[[32431,74546],[-21,-120],[-273,-4],[4,-186],[-87,3],[-5,-47],[-221,1],[-4,-81],[-98,-2],[0,-301],[-87,-6],[-19,-77],[-250,-1],[-10,70],[-26,2],[-27,11],[-421,-2],[-59,-1],[-3,-153],[-336,5],[-2,67],[-273,0],[0,-220],[-47,-1],[-3,-110],[-46,-1],[3,-129],[-60,3],[-22,1],[2,-72],[-93,3],[1,-33],[-52,-1],[-2,-93],[-7,-7],[-6,-5],[-17,-10],[-34,-23],[-19,-12],[-2,-38],[-11,-34],[-1,-6],[18,-50],[4,-11],[7,-19],[11,-28],[4,-11],[13,-24],[9,-6],[8,-2],[21,1],[8,-2],[5,-4],[3,-3],[5,-11],[3,-32],[0,-9],[-16,-9],[-54,-25],[-2,0],[-92,-64],[-6,-6],[-4,-15],[-1,-7],[-5,-4],[-42,-29],[-2,-2],[-6,-2],[-6,-3],[-4,-4],[-39,-52],[-5,-8],[1,-3],[2,-2],[7,-3],[8,-4],[6,-4],[6,-5],[4,-8],[1,-18],[-1,-3],[-3,-4],[-1,-2],[-2,-1],[-3,-4],[-8,-19],[-2,-4],[-3,-14],[0,-5],[6,-9],[0,-5],[-11,-41],[-11,-39],[-20,-42],[-9,-11],[-1,-17],[-11,-17],[-2,-1],[-2,-1],[-12,-1],[-5,-1],[-7,-5],[-7,-8],[-7,-14],[0,-8],[4,-7],[2,-4],[3,-14],[2,-23],[0,-1],[-15,-22],[-24,-18],[-28,-15],[-9,-5],[-11,2],[-17,4],[-7,-5],[-31,-39],[-2,-3],[0,-6],[-6,-12],[-8,-11],[-14,-10],[-5,-2],[-10,-2],[-10,-2],[-33,-17],[-11,-9],[-34,-18],[-35,-50],[-8,-7],[-4,-1],[-22,0],[9,-19],[5,-10],[0,-9],[-12,-11],[-11,-2],[-9,-2],[-19,2],[-34,3],[-1,0],[-9,0],[-6,-1],[-29,-9],[-17,-11],[-19,-13],[-13,-9],[-6,-4],[-11,-6],[-8,-1],[-38,1],[-4,1],[-4,3],[-1,3],[-3,6],[-3,4],[-13,5],[-1,0],[-16,2],[-24,-8],[-4,-2],[-31,-34],[-5,-5],[-1,-2],[-4,-5],[-8,-6],[-41,-11],[-6,0],[-7,2],[-5,4],[-15,21],[-19,12],[-8,3],[-43,10],[-5,0],[-4,-2],[-11,-26],[-1,-2],[-33,-16],[-9,0],[-10,11],[-12,10],[-10,4],[-13,4],[-4,0],[-43,-1],[-11,-2],[-4,-2],[-6,-16],[-5,-9],[0,-1],[-16,-20],[-8,-7],[-13,-7],[-16,-7],[-7,-2],[-9,-2],[-6,-3],[-2,-2],[-5,-13],[-3,-32],[0,-4],[2,-2],[5,-2],[12,-4],[3,-3],[0,-3],[-9,-19],[-6,-3],[-25,-7],[-27,23],[-28,-3],[-28,-4],[-9,-23],[-5,-13],[-1,0],[-25,10],[-27,3],[-22,15],[-36,-9],[-24,-3],[-4,0],[-4,1],[-31,3],[-25,0],[-25,20],[-31,-4],[-25,-6],[-30,-2],[-30,-3],[-18,-19],[-20,-14],[-25,-7],[-32,2],[-26,-13],[-30,-9],[-8,-25],[-31,-21],[-50,-3],[-30,-14],[-25,1],[-26,-11],[-20,19],[-11,6],[-14,8],[-30,8],[-23,15],[-25,2],[-24,-5],[-19,0],[-19,7],[-11,-1],[-14,-3],[-10,-3],[-9,-12],[-4,-3],[-7,-5],[-11,-4],[-13,-2],[-7,-1],[-8,0],[-9,1],[-2,1],[-6,2],[-1,1],[-40,17],[-15,7],[-10,6],[-4,4],[-10,14],[-2,5],[0,11],[2,2],[0,1],[2,8],[0,8],[-4,9],[-7,12],[-38,13],[-10,2],[-20,-2],[-7,-3],[0,-21],[-1,-4],[-1,-4],[-46,-45],[-3,-3],[-6,-22],[-2,-9],[-3,-12],[-4,-56],[-1,-3],[-4,-16],[-10,-14],[-3,-7],[-3,-4],[-11,-7],[-6,-4],[-7,-6],[-3,-5],[-2,-4]],[[27100,71358],[-10,3],[-17,7],[-14,13],[-7,8],[-9,9],[-17,19],[-8,10],[24,47],[-409,-9],[-28,0],[-761,-16],[-174,-4],[-1055,11],[-282,2],[-4,0]],[[24329,71458],[2,18],[3,30],[2,19],[8,30],[13,24],[-1,25],[0,8],[5,27],[8,27],[12,24],[2,3],[8,39],[1,4],[25,46],[18,10],[5,2],[23,23],[2,31],[-29,28],[-5,26],[-8,43],[-6,31],[4,30],[1,2],[1,0],[24,8],[9,7],[4,5],[2,1],[1,1],[5,4],[6,5],[8,26],[-1,6],[0,3],[11,5],[5,2],[3,3],[0,5],[-2,4],[-4,3],[0,5],[33,54],[6,8],[3,2],[27,8],[7,11],[-20,40],[-7,11],[-7,7],[-14,20],[-11,26]],[[24511,72288],[-1,9],[0,17],[-2,46],[13,42],[10,21],[2,6],[1,2],[-1,8],[0,7],[5,12],[9,12],[2,3],[9,11],[16,46],[0,10],[-3,25],[-2,12],[30,61],[-3,12],[1,8],[1,7],[0,1],[7,10],[22,23],[21,73],[7,42],[-2,12],[-2,5],[-5,9],[-6,16],[-3,8],[18,51],[15,32],[18,16],[8,6],[1,4],[0,9],[-2,2],[-13,5],[-1,14],[0,20],[-7,12],[-11,21],[-4,40],[2,1],[23,13],[5,7],[15,20],[0,1],[3,15],[-7,8],[-5,25],[0,2],[-6,32],[-4,1],[-2,6],[-1,0],[-12,61],[2,14],[2,23],[2,2],[14,5],[2,3],[4,19],[0,3],[-8,20],[-7,16],[-6,13],[-17,41],[-7,-1],[-5,1],[-7,3],[-12,11],[-2,4],[0,10],[1,2],[4,3],[0,7],[-4,14],[-9,12],[2,9],[24,30],[1,3],[0,22],[-4,11],[-5,7],[-4,9],[0,12],[10,33],[5,14],[5,9],[10,12],[9,7],[17,17],[26,22],[6,2],[10,7],[11,9],[30,25],[8,8],[9,10],[46,63],[24,22],[23,34],[-55,0],[-780,-3],[-221,-55],[-14,-4],[-117,-29],[9,2],[-3,19],[-9,7],[-17,5],[-15,3],[-13,1],[-17,3],[-8,-2],[-9,-2],[-9,-7],[-6,-2],[-16,-5],[-9,5],[-21,10],[-31,14],[-6,1],[-6,3],[-9,-2],[-3,11],[-38,79],[-9,26],[-9,46],[-10,26],[-11,41],[-8,39],[19,20],[28,6],[31,-1],[27,6],[16,22],[-18,30],[-27,10],[-35,0],[-31,19],[-12,35],[7,27],[27,20],[26,25],[20,24],[-12,80],[5,27],[-1,35],[-7,49],[8,29],[17,33],[17,20],[45,14],[25,5],[28,15],[26,36],[-5,43],[-25,31],[-13,10],[-13,12],[-29,3],[-11,11],[-12,11],[-17,35],[14,24],[1,49],[27,34],[10,45],[19,20],[23,12],[85,13],[28,-4],[30,8],[14,40],[-16,36],[-17,22],[-27,23],[-30,35],[-31,8],[-37,-18],[-19,-21],[-34,-5],[-24,4],[-51,31],[-11,25],[-1,14],[-1,15],[34,33],[35,-6],[34,-7],[36,3],[31,17],[9,7],[11,10],[29,17],[50,16],[48,-4],[44,14],[24,39],[8,62],[28,14],[50,9],[39,13],[24,36],[-1,63],[-34,48],[-15,36],[1,30],[-14,27],[-20,24],[1,28],[12,26],[13,23],[16,28],[1,30],[-7,26],[-28,19],[-22,-12],[-10,-27],[-12,-33],[-6,-30],[-3,-27],[-38,-27],[-29,-5],[-32,21],[-20,24],[4,28],[14,28],[27,18],[19,19],[6,26],[1,29],[-10,27],[-28,31],[-1,2],[-25,-11],[-29,-29],[9,-37],[-15,-24],[-36,-2],[-26,10],[-26,1],[-40,26],[-21,38],[-14,23],[-17,25],[-36,40],[-37,38],[0,1],[-22,19],[-13,11],[-8,7],[-66,44],[-8,5],[-24,7],[-39,10],[-19,12],[-11,6],[-32,30],[-29,27],[-8,12],[-19,27],[-23,35],[-17,28],[0,14],[0,16],[16,27],[11,11],[11,10],[19,33],[4,22],[3,15],[4,24],[2,13],[1,36],[-23,17],[-7,1],[-21,2],[-28,-7],[-13,-4],[-31,-23],[0,-32],[-24,-11],[-8,-4],[-33,23],[-29,29]],[[14317,76661],[-1,-30],[0,-2],[0,-26],[0,-39],[2,-52],[-1,-39],[0,-49],[5,-72],[9,-198],[233,-3],[24,-401],[186,-4],[7,-711],[3,-251],[2,-161],[2,-236]],[[14788,74387],[2,-238],[3,-308],[-471,10],[1,-153],[-837,18],[-2,-82],[-209,-6],[-2,-82],[-168,5],[-11,-542],[-87,2],[25,-162],[-47,4],[-9,-307],[180,-9],[-4,-297],[96,3],[3,1],[-16,-159],[99,-6],[6,-283],[88,-7],[-5,-153],[92,3],[4,-469],[145,4],[4,-220],[86,-2],[4,-215],[-173,-5],[-5,-149],[-75,2],[-2,-86],[-35,-6],[-3,-57],[-46,-2],[-2,-81],[-46,-1],[3,-77],[-58,-2],[-11,0],[6,-124],[-53,3],[-2,-67],[-330,-1],[0,-378],[-69,3],[0,-86],[5,-61],[-1,-42],[-1,-37],[-1,-76],[29,-4],[1,-158],[-92,-7],[5,-230],[92,-2],[-2,-72],[179,1],[1,-153],[81,-7],[14,-306],[104,-2],[-3,-76],[87,-2],[-3,-68],[92,3],[0,-115],[92,-2],[-4,-33],[75,-3],[-2,48],[231,-7],[0,-89],[0,-55],[95,-1],[9,0],[0,-13],[-6,-375],[86,-2],[-5,-144],[75,-7],[-2,-72],[121,-6],[11,-258],[362,15],[3,-62],[155,0],[7,-148],[135,-4],[38,-1],[1,-26],[2,-50],[172,0],[-2,-76],[178,5],[4,-101],[11,0],[179,-4],[15,-81]],[[15480,66657],[-81,-1],[-50,0],[-7,1],[-11,0],[-7,0],[-10,-1],[-12,2],[-56,-1],[-28,0],[-29,0],[-40,0],[-39,1],[-30,0],[-39,0],[-29,0],[-37,0],[-31,1],[-28,0],[-32,0],[-37,0],[-36,0],[-29,0],[-38,-1],[-38,1],[-28,0],[-36,0],[-37,0],[-33,-1],[-30,1],[-31,0],[-27,0],[-53,1],[-26,0],[-45,0],[-34,-1],[-30,0],[-26,0],[-28,1],[-31,2],[-37,1],[-26,0],[-27,1],[-26,2],[-47,1],[-27,0],[-25,0],[-45,1],[-46,2],[-48,0],[-45,-1],[-45,-1],[-24,0],[-43,0],[-40,0],[-35,1],[-28,3],[-33,4],[-44,4],[-27,1],[-37,3],[-21,0],[-11,0],[-25,-1],[-1,0],[-8,0],[-26,0],[-80,-1],[-68,-1],[-56,-1],[-49,-1],[-149,2],[-25,0],[-5,-148],[-576,10],[9,-320],[-59,-3],[-64,0],[-97,0],[-10,0],[-88,0],[-54,0],[-256,1],[-57,0],[-57,-1],[-122,-1],[-61,-1],[-28,-1],[-26,0],[-48,-1],[-71,-1],[-69,0],[-102,0],[-29,0],[-52,-4],[-55,-5],[-59,-1],[-57,-2],[-509,-13],[-222,-3],[-20,-298],[-131,-5],[-198,-3],[-18,0],[-29,0],[-221,0],[-38,0],[-68,1],[-144,6],[-98,4],[-31,1],[-74,3],[-136,4],[-54,4],[2,-9],[-1,-14],[-1,-21],[-3,-6],[0,-1],[-4,-2],[-4,-1],[-18,7],[-30,-1],[-1,0],[-13,-4],[-4,-3],[-4,-6],[-2,-6],[-3,-7],[-5,-13],[-37,-27],[-12,3],[-3,0],[-3,1],[-14,-2],[-5,-4],[-1,-1],[-12,-30],[-2,-6],[-2,-13],[-1,-4],[-2,-8],[-4,-21],[-1,-3],[-4,-5],[-3,-5],[-12,-3],[-8,3],[-45,41],[-9,7],[-16,15],[-1,2],[-40,37],[-3,0]],[[8522,65794],[-39,27],[-24,11],[-18,28],[-11,26],[-27,16],[-36,21],[-22,23],[-43,11],[-25,16],[-29,5],[-1,38],[-22,26],[-24,18],[-25,18],[-30,22],[-24,22],[-26,14],[-32,21],[-38,-12],[-51,13],[-19,27],[-24,24],[-26,9],[-28,42],[-18,28],[-8,28],[-20,31],[-46,40],[-23,20],[-32,15],[-29,3],[-23,18],[-32,10],[-24,12],[-20,25],[-17,20],[-41,35],[-23,10],[-31,34],[-34,6],[-26,16],[-36,49],[-21,32],[-15,39],[-9,38],[-20,68],[-23,31],[-24,27],[-34,21],[-46,24],[-35,21],[-45,28],[-30,5],[-14,29],[-25,35],[-22,22],[-22,38],[-30,12],[-25,28],[-50,26],[-36,26],[-23,39],[-20,34],[-42,11],[20,32],[-13,23],[-54,10],[-37,16],[-44,-5],[-22,11],[-10,34],[1,44],[-13,34],[23,11],[7,49],[-13,24],[-25,19],[-16,28],[-12,26],[-21,38],[-22,27],[-12,28],[18,21],[38,-1],[28,5],[44,39],[43,49],[17,22],[14,21],[33,44],[26,43],[2,2],[25,48],[23,51],[21,37],[12,25],[15,30],[16,30],[13,36],[18,33],[3,8],[14,39],[21,66],[16,48],[11,34],[-14,27],[3,27],[33,41],[-17,36],[-21,22],[7,27],[-23,18],[40,25],[-31,46],[9,41],[-19,22],[17,43],[-18,21],[-16,31],[-23,21],[-5,34],[-22,25],[-15,29],[3,32],[-12,33],[6,37],[-28,29],[-4,30],[-9,38],[-20,30],[-8,30],[18,35],[-13,39],[-20,17],[-21,21],[-15,39],[10,26],[-14,35],[-14,22],[-25,29],[8,20],[5,11],[-17,57],[-1,34],[-29,27],[-22,11],[-26,16],[-14,25],[-25,1],[-23,-27],[2,27],[-23,-21],[-11,47],[35,24],[-27,34],[-7,26],[30,30],[11,26],[-25,4],[-13,25],[-34,37],[-36,43],[-22,31],[-25,25],[-25,21],[-19,52],[-23,17],[-16,52],[-15,37],[-19,20],[-32,-1],[-40,24],[-26,16],[-9,29],[16,29],[-7,29],[-19,51],[-18,36],[23,26],[41,9],[-22,18],[-12,24],[-18,23],[-22,12],[-13,22],[29,16],[44,1],[-12,25],[-29,9],[-25,15],[-31,1],[10,34],[18,38],[24,20],[-26,14],[-32,38],[-17,45],[-15,33],[-32,19],[27,19],[6,32],[-45,30],[1,29],[-21,56],[-25,41],[-27,-10],[-35,-1],[-23,33],[-16,28],[-1,34],[16,24],[-14,23],[-10,34],[27,26],[39,-14],[19,21],[-9,26],[14,68],[-22,17],[-44,4],[-37,-12],[-35,17],[-22,27],[5,33],[20,17],[39,18],[28,11],[11,24],[-38,62],[-25,23],[26,14],[-16,30],[-31,-1],[-35,26],[-25,19],[-12,49],[-15,27],[-21,35],[-23,12],[-29,31],[-9,28],[42,43],[-7,28],[-7,36],[29,5],[33,13],[-23,31],[-28,22],[-24,22],[21,17],[17,26],[2,26],[25,23],[-24,35],[6,41],[16,37],[-4,37],[19,16],[-23,28],[-8,50],[-5,29],[-8,27],[27,31],[28,14],[12,40],[14,39],[-22,26],[-16,29],[6,32],[28,-3],[28,9],[4,14],[7,23],[-29,9],[-31,2],[-14,27],[-15,36],[-8,26],[28,-7],[35,27],[-22,33],[7,29],[12,29],[3,32],[20,28],[18,30],[3,35],[14,40],[1,29],[25,34],[7,37],[10,41],[2,40],[4,41],[-20,26],[36,8],[37,12],[19,23],[18,32],[22,26],[16,27],[19,31],[29,52],[31,69],[18,40],[20,44],[13,44],[14,31],[17,34],[22,78],[13,52],[7,27],[8,28],[5,24],[5,30],[5,32],[-17,22],[7,32],[-24,19],[-22,30],[-9,30],[-25,16],[-22,36],[6,33],[-1,36],[-19,19],[-18,24],[-19,24],[-24,21],[-17,52],[-7,32],[-2,49],[16,27],[25,22],[15,45],[-1,67],[-7,32],[-27,32],[10,36],[-5,35],[-6,31],[-7,27],[12,32],[1,59],[2,40],[-3,32],[-15,29],[7,34],[-13,32],[-24,34],[-19,31],[5,48],[-2,55],[-3,39],[-9,30],[-15,41],[-16,25],[-26,31],[-20,27],[-18,22],[-14,36],[-6,33],[-20,26],[-9,27],[-38,23],[-25,13],[-33,15],[-36,21],[-55,36],[-25,28],[-15,34],[4,46],[21,25],[-20,39],[-27,13],[14,34],[-5,43],[-16,29],[-13,24],[-19,20],[-7,41],[1,49],[-3,28],[8,54],[4,73],[-1,29],[-6,36],[-4,58],[-8,37],[-6,52],[-26,63],[-17,42],[-18,25],[3,63],[-5,27],[-18,54],[-8,50],[-22,50],[-34,35],[-38,20],[-24,8],[-39,17],[-35,17],[-38,18],[-43,17],[-48,23],[-31,22],[-23,17],[-14,26],[-42,16],[-15,24],[-37,0],[-23,33],[-36,16],[-30,30],[-14,34],[-18,29],[-19,26],[-11,31],[-17,57],[-10,27],[-15,21],[-10,42],[-24,38],[-14,26],[-15,37],[-17,37],[-14,32],[-11,38],[-23,25],[-26,16],[-28,10],[-38,22],[-50,32],[-32,16],[-22,22],[-36,15],[-16,28],[-24,53],[-9,34],[-16,30],[-17,21],[-33,39],[-12,23],[-17,22],[-15,25],[-23,26],[-16,45],[-24,26],[-9,26],[-31,35],[-55,47],[-23,12],[-26,13],[-31,25],[-12,24],[-33,34],[-25,35],[-35,39],[-28,18],[-22,20],[-23,14],[-24,33],[-23,44],[-22,20],[-14,14]],[[24511,72288],[-221,0],[-473,1],[-34,3],[-61,4],[-328,-1],[-11,81],[-2,16],[23,44],[0,8],[0,52],[-5,5],[8,96],[-40,0],[-9,0],[-17,1],[-681,9],[-569,8],[4,-301],[-29,0],[-174,-1],[-12,0],[-284,0],[-28,0],[-249,-1],[-2914,-5],[-86,-1],[-129,-6],[-12,0],[-15,-4],[-63,5],[-1,0],[-29,1],[-103,1],[-53,1],[-25,1],[-88,0],[-36,1],[-110,0],[-35,0],[-110,-1],[-34,0],[-128,-2],[-112,-3],[-92,-1],[-8,0],[-20,0],[-64,-1],[-78,0],[-46,-1],[-2,0],[-47,0],[-68,-4],[-77,-5],[-40,-6],[-64,-3],[-41,0],[-128,3],[-31,1],[-55,-1],[-124,2]],[[16251,72284],[22,368],[6,89],[6,121],[23,509],[17,351],[-42,134],[1,169],[2,352],[-1498,10]],[[42889,75862],[-4,-471],[0,-55],[-4,-479],[0,-31],[-11,-1638],[-1,-76],[-1,-146]],[[42868,72966],[-17,0],[-53,0],[-893,-2],[-1087,-2],[-742,-1],[-170,0],[-803,-2],[-1032,-1],[-95,0],[-16,61],[-12,11],[-1,0],[-2,3],[-6,4],[-3,2],[-37,4],[-8,-1],[-7,-1],[-8,-2],[-1,0],[-10,4],[-42,16],[-30,22],[-4,3],[-1,0],[-34,14],[-19,15],[-27,16],[-1,4],[-11,36],[-4,13],[-1,18],[8,16],[2,6],[4,7],[-2,17],[-1,5],[-1,8],[-2,13],[0,28],[0,25],[0,8],[-4,3],[-15,15],[-28,22],[-7,22],[-1,4],[-17,21],[-24,6],[-24,13],[-20,15],[-2,2],[-10,28],[-11,24],[0,1],[11,22],[-11,26],[-12,4],[-16,4],[-22,17],[1,21],[3,7],[-2,7],[-10,19],[-17,34],[-8,8],[-7,7],[-4,1],[-14,-2],[-8,-1],[-25,-7],[-9,0],[-8,2],[-11,4],[-7,4],[-3,3],[-12,24],[-1,1],[-2,13],[-3,3],[-2,1],[-19,0],[-10,0],[0,-1],[-7,0],[-12,6],[-9,13],[-10,5],[-28,-4],[-9,-5],[-5,2],[-27,8],[-17,5],[-5,2],[-1,0],[-5,-1],[-10,0],[-54,-17],[-5,-3],[-3,0],[-19,-5],[-29,6],[-22,-1],[-18,-1],[-1,0],[-33,2],[-16,1],[-71,4],[-51,-6],[-8,-4],[-15,-11],[-3,-2],[-2,-1],[-11,3],[-5,6],[-8,24],[-3,5],[-15,12],[-4,2],[-6,-1],[-6,-2],[-8,-6],[-1,-1],[-9,-3],[-8,0],[-4,1],[-2,1],[-2,1],[-21,8],[-2,1],[-4,1],[-9,-2],[-7,-4],[-4,-3],[-7,-6],[-6,-3],[-14,2],[-3,2],[-4,4],[-4,0],[-4,0],[-37,-1],[-3,0],[-2,0],[-10,-3],[-13,0],[-9,3],[-13,11],[-5,6],[-41,0],[-6,0],[-71,-29],[-69,-21],[-1,-1],[-14,-8],[-35,-19],[-2,-3],[0,-3],[0,-1],[4,-4],[-1,-4],[-11,-30],[-7,-8],[-3,-1],[-25,-2],[-4,-3],[-6,-6],[-21,-21],[-2,-6],[-8,-21],[-1,-1],[-5,-5],[-2,-1],[-7,-4],[-1,-1],[-62,-24],[-13,-5],[-11,-4],[-29,-4],[-3,-2],[-5,-2],[-10,-8],[-2,-3],[-2,-5],[-2,-8],[0,-1],[0,-4],[-3,-6],[-31,-58],[-3,-4],[-4,-2],[-23,-19],[-2,-1],[-6,-3],[-26,-13],[-7,-1],[-8,1],[-17,2],[-4,-1],[-4,-2],[-1,-1],[0,-1],[0,-5],[4,-8],[19,-39],[6,-11],[2,-1],[-1,-7],[-4,-7],[-6,-5],[-10,-4],[-2,-2],[-14,-9],[-5,-2],[-17,-12],[-4,-3],[-1,-1],[-7,-7],[-26,-25],[-3,-4],[-7,-12],[-6,-7],[-12,-9],[-13,-6],[-42,-17],[-13,-1],[-2,0],[-17,3],[-2,0],[-8,0],[-2,0],[-8,-3],[-7,-4],[-3,-4],[-5,-4],[-5,-4],[-16,-9],[-21,-8],[0,-1],[11,-50],[1,-2],[-9,-10],[-28,-16],[-33,-10],[-26,2],[-7,0],[-4,-4],[-22,-33],[1,-4],[0,-1],[1,-9],[-1,-4],[-4,-4],[-9,-3],[-3,-1],[-4,0],[-17,3],[-5,4],[-7,8],[-5,2],[-6,-1],[-31,-7],[-2,-2],[-1,-15],[0,-2],[-2,-3],[-4,-3],[-4,0],[-37,-10],[-5,0],[-23,1],[-3,-2],[-1,-1],[-5,-11],[-14,19],[0,1],[-3,2],[-4,0],[-17,-8],[-84,-48],[2,-10],[-1,-3],[-1,0],[-4,-2],[-51,-29],[-8,-1],[-3,2],[-4,1],[-1,3],[-4,4],[-3,1],[-3,0],[-18,-3],[-9,-2],[-5,-4],[-3,-5],[-4,-13],[-7,-15],[-1,-1],[-2,-2],[-7,-3],[-9,-1],[-4,1],[-17,4],[-11,3],[-13,4],[-40,-26],[-11,-2],[-12,10],[0,3],[3,8],[0,5],[-7,10],[-5,6],[-6,3],[-15,5],[-3,0],[-1,-1],[-10,0],[-3,-2],[-5,-18],[-1,-11],[1,-6],[0,-4],[-1,-1],[-1,-3],[-63,-6],[-5,-3],[-2,-1],[-8,-5],[-15,12],[-47,37],[-37,9],[-7,0],[-3,-1],[-51,-29],[-4,-5],[-41,-14],[-35,-1],[-17,0],[-24,-2],[-29,-4],[-39,-19],[-5,-5],[-9,-15],[-5,-5],[-4,-5],[-6,-3],[-10,-1],[-2,1],[-5,1],[-4,0],[-16,10],[-1,0],[-7,1],[-3,0],[-2,-3],[0,-12],[0,-2],[-1,-2],[-3,-1],[-1,-1],[-105,-10],[-14,3],[-14,6],[-3,1],[-3,0],[-21,-11],[-4,-6],[-3,-3],[-27,-20],[-8,-4],[-16,-8],[-8,-3],[-8,-1],[-3,0],[-12,0],[-1,0],[-67,-1],[-20,3],[-9,3],[-32,15],[-1,1],[-8,0],[-9,-3],[-18,-9],[-5,-9],[-5,-17],[-1,-18],[0,-7],[-14,-1],[-61,13],[-5,-1],[-36,-9],[-9,-2],[-28,-19],[-4,-5],[-10,-5],[-5,-2],[-1,0],[-43,1],[-4,0],[-1,0],[-16,3],[-10,1],[-1,1],[-14,5],[-10,5],[-1,1],[-16,11],[-13,-10],[-7,-4],[-64,-18],[-4,-1],[-37,-9],[-6,-1],[-3,-1],[-10,0],[-9,2],[-3,1],[-10,5],[-33,9],[-76,18],[-6,-1],[-2,-8],[-4,-6],[-5,-2],[-11,0],[-4,1],[-12,1],[-12,3],[-6,0],[-5,-1],[-7,-3],[-3,-4],[-2,-4],[1,-7],[1,-6],[2,-6],[6,-17],[0,-11],[-4,-5],[-4,-2],[-5,0],[-52,-2],[-2,0],[-2,0],[-16,5],[-15,7],[-21,14],[-2,2],[-5,3],[-3,0],[-32,-17],[-16,-12],[-34,-26],[-6,-4],[-9,-7],[-13,-12],[-18,-17],[-9,-6],[-5,-2],[-9,-1],[-16,4],[-16,3],[-20,5],[-10,1],[-5,-3],[-2,-3],[-2,-7],[0,-1],[0,-14],[1,-2],[7,-8],[5,-2],[21,-9],[19,-9],[11,-2],[1,1],[9,2],[3,-3],[2,-3],[0,-4],[-3,-5],[-9,-7],[-13,-5],[-20,-7],[-4,0],[-20,-6],[-23,-9],[-2,0],[-9,-4],[-5,-4],[-12,-1]],[[32978,72405],[-32,328],[-50,520],[-21,208],[-20,210],[-3,1],[-8,0],[-5,-2],[-12,-3],[-9,-4],[-4,-1],[-9,2],[-9,3],[-3,2],[-3,0],[-11,-1],[-9,-1],[-21,-4],[-12,1],[-6,1],[-5,3],[-4,3],[-22,19],[-5,4],[-6,7],[-3,3],[-1,7],[-37,38],[11,6],[12,6],[1,4],[0,9],[-5,10],[-5,6],[-3,3],[-6,4],[-6,8],[-19,29],[-2,4],[-19,56],[-3,9],[0,7],[3,18],[3,8],[5,5],[6,3],[7,0],[12,1],[13,3],[12,5],[6,5],[5,6],[1,4],[0,12],[-1,6],[2,5],[13,20],[3,5],[4,5],[4,4],[7,3],[8,2],[19,0],[2,0],[8,2],[19,11],[33,19],[1,0],[34,24],[5,5],[6,12],[15,1],[73,31],[7,3],[5,23],[135,805]],[[32978,72405],[-2,-19],[-44,-41],[-33,29],[-8,13],[-28,24],[-5,2],[-21,-1],[-6,-2],[-11,-5],[-4,-5],[-1,-10],[0,-3],[1,-3],[-2,-1],[-19,-21],[-25,-27],[-3,-1],[-6,0],[-1,0],[-49,14],[-1,0],[-2,3],[-1,5],[0,6],[3,6],[2,7],[1,9],[-3,10],[-3,5],[-5,6],[-9,4],[-5,4],[-17,-1],[-10,1],[-30,-3],[-27,-3],[-11,0],[-4,-2],[-3,-5],[-5,-10],[0,-1],[-10,-18],[-5,-5],[-7,-1],[-17,-1],[-8,1],[-7,2],[-7,3],[-11,9],[-9,7],[-8,2],[-61,3],[-13,-1],[-19,-6],[-11,0],[-9,3],[-1,1],[-24,15],[-5,-1],[-25,-6],[0,-3],[-1,-6],[-1,-5],[0,-4],[0,-3],[1,-4],[1,-4],[2,-3],[4,-9],[0,-10],[-3,-4],[-19,-21],[-5,-4],[-24,-5],[-2,-1],[-3,1],[-1,0],[-30,19],[-6,0],[-5,-2],[-20,-29],[-8,-7],[-5,-4],[-7,-10],[-1,-7],[0,-8],[-4,-1],[-21,-7],[-13,-5],[-2,1],[-28,10],[-13,2],[-21,-2],[-15,-3],[-11,-8],[-6,-10],[-4,-4],[-7,-2],[-9,-1],[-50,3],[-4,1],[-13,2],[-7,2],[-24,6],[-6,2],[0,-2],[6,-22],[0,-28],[-3,-18],[-5,-10],[-6,-5],[-2,0],[-34,0],[-15,-1],[-8,-2],[-3,-2],[-2,-6],[0,-19],[-3,-5],[-12,-4],[-8,-3],[0,-1],[2,-30],[-3,-14],[-5,-9],[-8,-7],[-15,-10],[-6,-5],[-1,-1],[-38,-42],[-7,-10],[-2,-11],[6,-14],[9,-17],[4,-10],[-1,-9],[-1,-2],[-1,0],[-13,-4],[-15,0],[-47,2],[-20,-3],[-9,-5],[-3,-3],[-5,-11],[0,-1],[-1,-27],[-3,-16],[-2,-3],[-13,-19],[-5,-13],[0,-1],[-1,-5],[7,-23],[4,-26],[-5,-15],[-4,-10],[-2,-3],[-11,-4],[-7,0],[-14,2],[-13,4],[-3,3],[-2,4],[-2,23],[-2,7],[-5,14],[-1,0],[-7,12],[-6,1],[-9,1],[-34,-4],[-8,0],[-3,0],[-46,5],[-11,-1],[-28,-3],[-12,-5],[-20,-14],[-4,-5],[-2,-8],[0,-1],[-1,-10],[0,-3],[2,-13],[-2,-5],[-1,-3],[-1,-4],[-9,-10],[-10,-3],[-1,0],[-31,-1],[-1,1],[-37,-2],[-8,-2],[-13,-4],[-7,-5],[-1,-1],[-2,-3],[-7,-14],[-1,-3],[-5,-24],[-20,-29],[-3,-2],[-5,-5],[-9,-8],[-13,-3],[-7,-1],[-30,-37],[7,-46],[1,-26],[5,-15],[1,-4],[6,-9],[6,-8],[17,-11],[7,-5],[8,-9],[5,-14],[-4,-2],[-43,-27],[-33,-22],[-1,0],[-1,-2],[-10,-22],[-24,-21],[-16,-4],[-10,-3],[-5,-4],[-12,-19],[0,-7],[2,-25],[-5,-14],[-2,-6],[-3,-6],[-13,-15],[-16,-12],[-6,-2],[-7,-2],[-9,-2],[-108,6],[-1,0],[-25,5],[-27,10],[-9,1],[-39,-12],[-32,-18],[-26,-29],[-2,-2],[-1,0],[-1,-1],[-13,-8],[-11,-3],[-27,-7],[-68,-14],[-5,-6],[-1,-1],[-5,-7],[-11,-6],[-6,-4],[-3,-2],[-10,-14],[14,-53],[14,-11],[14,-12],[13,-30],[9,-21],[-1,-5],[-3,-46],[-31,-11],[-11,-1],[-22,-3],[-11,-1],[-9,-18],[-4,-6],[7,-30],[0,-8],[-1,-29],[0,-6],[-1,-3],[6,-35],[-5,-8],[-2,-1],[-11,-14],[-3,-4],[-25,-27],[-3,-2],[-12,-17],[-18,-28],[-7,-5],[-2,0],[-11,-2],[-3,1],[-6,1],[0,-10],[0,-37],[0,-73],[0,-61],[-1,-104],[0,-5],[0,-38],[0,-31],[0,-47],[0,-129],[0,-30],[0,-73],[0,-40],[0,-66],[-1,-121],[0,-55],[0,-32],[0,-86],[0,-76],[-1,-35],[1,-49],[0,-76],[0,-7],[0,-206],[1,-63],[0,-93],[0,-97],[0,-28],[0,-34],[0,-36],[0,-102],[1,-126],[0,-1]],[[30450,68603],[-39,12],[-48,8],[-29,21],[-3,2],[-2,12],[-3,15],[-5,10],[-9,17],[-4,9],[-24,12],[-9,4],[-27,13],[-23,9],[-4,13],[-5,15],[-24,21],[-30,-4],[-43,-15],[-7,-3],[-4,-7],[-12,-3],[-15,-5],[-10,-7],[-8,-7],[-6,-17],[1,-3],[-3,-9],[-8,-11],[-2,-3],[-1,-2],[-11,-6],[-11,-2],[-4,0],[-30,12],[-11,-3],[-20,-6],[-8,-3],[-5,-7],[0,-1],[-3,-1],[-10,-6],[-3,-4],[-2,-2],[-9,-9],[-9,-6],[-26,-16],[-1,-1],[-23,-11],[-10,-3],[-7,-2],[-14,-5],[-51,-17],[-28,-19],[-21,-14],[-51,-10],[-21,24],[-50,-14],[-59,-38],[-27,-30],[-18,-41],[-26,-11],[-54,-27],[7,-31],[-50,-18],[-32,-21],[-21,-38],[-47,-22],[-42,-29],[-20,-16],[0,-1],[-6,-10],[-12,-11],[-1,-1],[-33,-14],[-31,-6]],[[29133,68203],[-14,-5],[-22,-2],[-6,2],[-3,0],[-26,1],[-57,-12],[-88,-25],[-29,-11],[-34,0],[-3,16],[-25,23],[-45,19],[-63,8],[-31,-7],[-42,-15],[-39,-21],[-36,-14],[-30,-5],[-31,9],[-30,5],[-35,-10],[-23,-20],[-30,-1],[-19,-40],[-2,-32],[-137,-15],[-3,1],[-1,5],[-1,4],[-4,1],[-22,-6],[-35,-25],[-25,-25],[-25,-21],[-26,-18],[-26,-10],[-6,-5],[-9,-5],[-10,-2],[-37,-4],[-7,-1],[-16,-1],[-3,0],[-27,0],[-15,3],[-43,4],[-9,1],[-17,1],[0,-19],[0,-10],[0,-5],[0,-3],[0,-44],[-33,-86],[-5,-8],[-53,-43],[-3,-1],[-9,-1],[-36,2],[-7,-2],[-13,-6],[-4,-3],[-19,-32],[-15,-20],[-7,-6],[-11,-5],[-1,-1],[-7,-12],[-25,-40],[-10,-25],[-15,-49],[-11,-48],[-12,-42],[-17,-48],[0,1],[-4,12],[-7,7],[-7,3],[-3,2],[-10,11],[-8,13],[-4,13],[2,21],[5,10],[1,2],[7,30],[-1,17],[-10,25],[1,18],[6,12],[12,14],[3,0],[10,18],[-3,11],[-7,5],[-4,2],[-5,17],[-3,17],[2,33],[-8,18],[0,2],[1,31],[7,15],[0,5],[-7,43],[-2,13],[-7,23],[-18,29],[-13,9],[-11,33],[-12,36],[-1,2],[2,7],[5,17],[1,31],[0,4],[-2,13],[-8,25],[-6,6],[-10,32],[-3,23],[4,28],[8,20],[18,29],[31,37],[32,57],[4,8],[4,11],[-6,8],[-30,17],[-10,0],[-12,1],[-4,1],[-23,1],[-5,1],[-45,5],[-7,1],[-18,2],[-8,3],[-3,1],[-23,8],[-7,3],[-2,5],[-1,3],[3,10],[7,10],[10,10],[11,11],[5,8],[7,10],[10,15],[2,9],[1,5],[0,15],[-5,15],[-37,37],[-5,3],[-5,3],[-14,8],[-18,13],[-16,17],[-9,9],[-30,72],[-14,135],[-3,58],[3,8],[3,0],[0,1],[27,42],[28,31],[49,86],[16,28],[16,23],[17,22],[18,21],[21,16],[15,24],[17,23],[6,29],[-3,35],[-3,30],[-7,26],[-10,25],[-34,3],[-20,-18],[-25,-13],[-9,0],[-12,1],[-5,0],[-14,-1],[-9,3],[-2,8],[-1,6],[6,26],[1,14],[-9,28],[-7,18],[-4,3],[-2,4],[-4,14],[-3,28],[6,15],[19,34],[25,38],[4,9],[3,18],[2,25],[-4,10],[-13,27],[-6,20],[-2,10],[-10,12],[-13,17],[-2,2],[-22,22],[-9,8],[-6,11],[-1,2],[-1,3],[-1,1],[-2,8],[-1,2],[-1,18],[0,1],[1,4],[4,17],[8,11],[8,10],[1,19],[-7,23],[-12,15],[-3,10],[-13,35],[-5,12],[-1,1],[-3,2],[-10,16],[-6,11],[-15,28],[-15,29],[-4,6],[-3,10],[5,8],[0,1],[21,17],[7,9],[7,17],[3,21],[-4,12],[-4,3],[-3,1],[-35,18],[-1,0],[-9,12],[-15,38],[2,2],[5,9],[20,18],[13,20],[8,26],[-3,11],[0,2],[-3,12],[-7,4],[-8,5],[-18,2],[-6,2],[-29,12],[-18,8],[-8,13],[-2,3],[-10,16],[-35,54],[-1,2],[-3,11],[7,11],[5,1],[8,2],[5,-1],[33,-4],[25,7],[10,5],[9,8],[0,7],[-10,3],[-11,-2],[12,22],[20,11],[16,2],[11,12],[-2,6],[-8,30],[-13,19],[-3,11],[-3,9],[-1,6],[1,4],[3,14],[23,48],[4,20],[-1,2],[-1,1],[-13,6],[-14,2],[-3,0],[-13,-2],[-21,-10],[-6,-3],[-21,-5],[-10,1],[-6,1],[-5,0],[-15,6],[-4,3],[-6,18],[1,6],[2,10],[9,21],[-5,21],[-7,5],[-12,6],[-26,14],[-13,9],[-10,9],[0,3],[-2,5],[-4,14],[-9,38],[1,33],[6,15],[7,16],[0,14],[-8,30],[0,1],[-2,45],[6,5],[11,11],[3,2],[17,-10],[13,-7],[16,-5],[19,-6],[2,-1],[14,5],[7,3],[5,2],[6,6],[20,22],[3,4],[0,1],[-1,4],[-1,7],[-16,4],[-19,7],[-25,8],[-8,3],[-12,12],[-9,9],[-11,11],[-5,7],[-1,7],[2,8],[3,6],[7,10],[5,2],[8,2],[5,0],[9,-11],[5,-5],[11,-4],[9,-2],[5,0],[9,0],[8,2],[16,17],[5,14],[-11,18],[-4,-1],[-21,15],[-13,8],[0,1],[-4,7],[-5,10],[-5,23],[0,3],[-7,32],[0,1],[-10,30],[-4,2],[-3,6],[-10,22],[3,5],[15,-1],[10,0],[16,4],[7,2],[9,3],[9,4],[0,1],[2,3],[3,4],[4,15],[-2,5]],[[16251,72284],[-119,-2],[-73,-1],[-246,-2],[-11,0],[3,-11],[26,-23],[14,-4],[6,-1],[11,1],[46,-47],[29,-3],[24,-9],[28,27],[26,16],[31,3],[29,-18],[22,-16],[15,-24],[20,-28],[30,-3],[29,-10],[20,-16],[10,-37],[4,-39],[-9,-27],[-32,-13],[-23,-31],[-14,-33],[-21,-23],[-14,-23],[-27,-2],[-28,-12],[-26,0],[-23,-15],[-17,-22],[-1,-27],[10,-31],[-20,-30],[-16,-29],[-6,-32],[-20,-23],[-18,-32],[2,-28],[-19,-27],[-8,-26],[16,-27],[29,-14],[21,-43],[16,-24],[9,-28],[25,-16],[15,-24],[24,-22],[10,-27],[11,-28],[5,-29],[-2,-31],[38,-14],[31,-24],[30,-23],[32,-14],[33,-16],[18,-22],[25,-12],[30,-6],[24,14],[35,-19],[23,-29],[13,-31],[32,-13],[24,-10],[5,-28],[32,-15],[9,-26],[25,-14],[28,-5],[22,-17],[50,-27],[46,-22],[35,-16],[17,-20],[20,-23],[16,-29],[38,-13],[3,-41],[23,-29],[31,-20],[-17,-29],[-18,-38],[30,5],[27,3],[26,-12],[8,-28],[25,-7],[18,-19],[34,-25],[26,-9],[25,-10],[27,5],[26,-9],[28,-5],[16,23],[26,2],[42,23],[21,15],[20,22],[24,6],[24,0],[26,2],[47,4],[23,-9],[47,-14],[21,-20],[23,-12],[16,-19],[25,-4],[25,-4],[23,-10],[44,-4],[25,4],[24,-9],[26,-6],[26,-2],[27,-3],[26,-5],[23,-11],[19,-20],[20,-24],[22,-14],[24,-17],[39,-3],[37,7],[38,16],[24,2],[37,7],[31,-2],[27,2],[34,5],[37,5],[16,22],[33,20],[30,-12],[30,10],[40,-16],[29,5],[40,-15],[24,-5],[-7,-52],[5,-35],[9,-32],[24,-17],[11,-25],[24,-31],[29,1],[27,-1],[31,10],[26,-27],[13,-32],[17,-23],[-6,-47],[17,-31],[35,2],[29,-14],[35,-1],[25,-6],[24,-4],[19,-40],[-16,-33],[-22,-13],[-21,-16],[-7,-30],[13,-24],[15,-24],[10,-26],[-25,-14],[27,-15],[5,-28],[10,-25],[19,-17],[-20,-22],[-17,-21],[-19,-16],[-27,9],[-35,14],[-39,-15],[-27,-3],[-33,6],[8,-27],[9,-33],[-19,-31],[-7,-54],[-19,-19],[-3,-28],[1,-27],[18,-22],[17,-20],[19,-17],[-10,-26],[-9,-26],[9,-25],[15,-22],[14,-22],[16,-25],[18,-20],[1,-27],[11,-25],[-3,-29],[8,-26],[10,-25],[1,-28],[-14,-23],[-15,-21],[-16,-23],[2,-27],[15,-21],[3,-33],[36,-10],[-7,-26],[-24,-11],[-25,2],[12,-37],[-27,-20],[3,-27],[-3,-31],[22,-13],[25,1],[34,-6],[26,2],[34,-10],[24,-7],[24,-8],[33,-11],[35,-8],[-11,-25],[-6,-27],[25,-20],[25,-16],[24,-14],[28,-3],[25,-25],[18,-27],[24,-9],[31,-33],[20,-24],[21,-19],[49,-33],[33,2],[50,-5],[37,-13],[26,-1],[33,1],[23,-7],[35,1],[25,-20],[-4,-30],[20,-36],[-6,-7],[-11,-12],[18,-22],[-10,-26],[-10,-27],[-8,-35],[-10,-25],[-25,-3],[12,-23],[-13,-23],[-19,-19],[-17,-20],[8,-25],[2,-27],[10,-30],[4,-26],[24,-18],[24,-18],[22,-19],[19,-17],[10,-26],[-22,-12],[9,-27],[-12,-26],[17,-22],[23,-22],[20,-16],[19,-24],[25,4],[28,1],[22,-15],[20,-16],[25,-15],[23,-16],[26,-14],[20,-18],[20,-22],[18,-20],[21,-12],[22,-13],[24,-9],[27,-8],[22,-13],[19,-22],[25,-10],[24,-14],[24,-17],[25,-7],[20,-16],[24,-12],[24,-7],[26,-2],[27,-6],[12,-31]],[[20130,67438],[-18,3],[-13,1],[-5,1],[-60,3],[-53,2],[-35,-1],[-45,-1],[-27,-1],[-24,-1],[-29,-2],[-25,1],[-37,5],[-86,0],[-86,1],[-31,0],[-47,0],[-20,-32],[-27,-25],[-13,-25],[-12,-38],[-21,-25],[-25,-18],[3,-26],[-23,-13],[-23,-14],[-9,-26],[8,-28],[26,-17],[24,-11],[16,-25],[16,-26],[12,-30],[25,-26],[21,-26],[4,-26],[7,-26],[21,-14],[23,-24],[22,-11],[24,-16],[5,-28],[26,-12],[19,-17],[-21,-16],[-21,-23]],[[19596,66805],[-19,-21],[-25,-27],[-39,-40],[4,-1],[10,2],[4,-1],[3,-3],[16,-21],[70,-93],[10,-15],[0,-1],[5,-9],[2,-19],[11,-24],[6,-6],[36,-31],[22,-8],[37,-46],[20,-21],[18,-13],[-14,-25],[0,-5],[1,-15],[18,-31],[2,-49],[-2,-12],[1,-1],[5,-10],[2,-6],[-1,-6],[-10,-25],[-8,-14],[-3,-2],[-8,-1],[-1,-1],[-5,-3],[-3,-3],[-11,-18],[-4,-12],[-2,-16],[-6,-1],[-8,0],[-24,-1],[-55,6],[-37,7],[-1,1],[-31,16],[-9,1],[-6,-4],[-21,-20],[-8,-15],[-10,-15],[-16,-8],[-6,-2],[-29,-53],[-12,-32],[-1,-6],[-3,-23],[-8,-1],[-8,-3],[-7,-3],[-12,-9],[-2,-2],[0,-4],[5,-4],[1,-1],[7,-3],[3,1],[1,1],[4,6],[4,0],[18,-16],[5,-35],[-1,-53],[33,-18],[11,-8],[2,-5],[-1,-2],[-1,0],[-3,-2],[-107,-41],[-14,-4],[4,-8],[-98,-138],[-37,-53],[-69,-97],[-31,-44],[-89,-126],[-65,-93],[-79,-112],[-139,-34],[-27,-6],[-172,-43],[-49,-12],[-29,-7],[-105,-26],[-42,-11],[-30,-7],[-165,-42],[-215,-53],[-63,-16],[-26,-6],[-183,-46],[-4,-1],[-128,-33],[-214,-55]],[[17336,64728],[11,46],[8,27],[-21,30],[-23,22],[-31,30],[-7,33],[-29,16],[-26,24],[10,24],[-2,30],[-18,32],[-37,25],[5,32],[-23,20],[-13,25],[-35,-1],[-29,2],[-30,-9],[-25,4],[-29,-3],[-30,8],[-35,15],[-28,-22],[-33,8],[-32,9],[-33,0],[-25,17],[-27,10],[-40,5],[-27,23],[-12,24],[-15,37],[-3,32],[-9,29],[-21,17],[-2,27],[-27,18],[-33,12],[-32,4],[-7,25],[-8,34],[0,38],[11,31],[19,23],[-4,28],[-23,18],[-25,10],[-28,11],[-29,8],[-8,26],[-24,21],[-3,29],[-3,27],[-21,20],[-22,22],[-11,37],[-31,2],[-18,18],[-9,25],[2,28],[-14,22],[-25,24],[-31,7],[-19,28],[-22,13],[-13,28],[4,32],[6,29],[4,28],[1,27],[-11,26],[-17,18],[-28,9],[-26,8],[-25,14],[-26,22],[-22,25],[-33,15],[-8,27],[-24,16],[-14,26],[-19,19],[-28,6],[-17,20],[-21,21],[-25,12],[-30,2],[-29,14],[-21,16],[-21,13],[-16,30],[-15,25],[-12,27],[-23,-6],[-21,-15],[-24,-5],[-27,-1],[-7,3],[-7,-4],[-8,1],[-7,12],[-13,1],[-13,6],[-1,9],[8,16],[3,6],[-11,17],[-12,4],[-30,4],[-18,9],[11,18],[5,14],[-14,28]],[[42868,72966],[0,-5],[-21,-699],[-10,-330],[-11,-359]],[[42826,71573],[-1055,-2],[-333,0],[-492,-1],[-44,0],[-197,0],[-39,0],[-189,-1],[-70,0],[-733,-1],[-169,0],[-100,0],[-91,0],[-85,-1],[-501,0],[-88,0],[-286,-1],[-806,-1],[-49,0],[-99,0],[-541,-1],[-94,0],[-86,0],[-63,0],[-52,-50],[-1,0],[-30,-9],[-6,-4],[-17,-12],[-12,2],[-23,4],[-18,13],[-5,2],[-76,-1],[-8,-2],[-20,-6],[-27,-7],[-2,-1],[-35,-10],[-10,-3],[-12,-3],[-2,0],[-12,-6],[-52,-25],[-37,-16],[-31,-13],[-1,0],[-3,-1],[-50,-16],[-69,-46],[-12,-14],[-8,-14],[-4,-3],[-7,-2],[-46,-3],[-2,0],[-101,-37],[-13,-6],[-4,-3],[-8,-13],[-4,-5],[-7,-5],[-59,-42],[-44,-29],[-25,-15],[-36,-27],[-11,-17],[-2,-6],[-1,-16],[-1,-4],[-75,-67],[-16,-1],[-11,-1],[-13,1],[-6,0],[-3,0],[-3,0],[-21,-11],[-1,-2],[-1,-6],[-2,-11],[-5,-8],[-16,-26],[-20,-18],[-1,0],[-17,-5],[-6,0],[-5,-1],[-19,-2],[-4,-2],[-20,-16],[-1,-3],[0,-9],[-1,-2],[-1,-1],[-1,-1],[-9,-7],[-73,-57],[-26,-26],[-2,-1],[-41,-33],[-25,-5],[-37,-18],[-10,-11],[-2,-6],[-1,-10],[-3,-3],[-34,-22],[-1,-1],[-5,-1],[-22,-1],[-2,0],[-10,-2],[-26,-8],[-57,-26],[-25,-13],[-28,-20],[-6,-12],[-3,-2],[-49,-33],[-13,-7],[-18,-20],[-13,-3],[-9,-10],[-10,-6],[-13,-4],[-12,-2],[-17,-16],[-3,-2],[-6,-4],[-1,0],[-41,-17],[-6,-1],[-2,0],[-10,3],[-17,-5],[-39,-13],[-3,-3],[-1,0],[-17,-15],[-44,-46],[-1,-4],[2,-3],[14,-13],[-5,-9],[-6,-17],[0,-3],[-2,-23],[1,-9],[0,-10],[-27,-49],[-3,-4],[-17,-15],[-4,-2],[-11,-1],[-2,-1],[-23,-9],[-3,-2],[0,-1],[-1,-3],[3,-4],[7,-1],[8,-2],[2,-3],[0,-4],[-32,-65],[-5,-9],[-5,-5],[-14,-8],[-1,0],[-6,-3],[-4,1],[-7,3],[-1,1],[-5,0],[-4,0],[-1,0],[-77,-9],[-31,-6],[-6,-2],[-5,-11],[-5,-5],[-5,-2],[-55,-13],[-14,2],[-4,2],[-3,2],[-10,8],[-9,0],[-4,-1],[-72,-38],[-42,-29],[-1,-3],[0,-11],[2,-3],[1,0],[14,-2],[7,-14],[-2,-7],[-4,-8],[-12,-17],[-8,-1],[-3,-1],[-10,2],[-3,1],[-1,0],[-3,-1],[-24,-3],[-41,-6],[-18,-4],[-35,-15],[-1,-2],[-6,-8],[-2,-7],[-4,-16],[-3,-14],[-29,-17],[-33,7],[1,-28],[0,-3],[-59,-25],[-8,-10],[-10,-11],[-1,-22],[-1,-5],[-23,-13],[-21,4],[-7,2],[-7,-6],[-19,-15],[-6,-29],[-13,-39],[-19,-2],[-13,-9],[-1,-1],[-1,-1],[-10,-17],[-15,-14],[-23,-13],[-25,-15],[-13,-8],[-2,-1],[-10,-5],[-22,-4],[-5,-3],[-11,-15],[-10,-20],[1,-2],[2,-9],[0,-6],[-2,-10],[-2,-3],[-1,-1],[-26,-19],[-2,-2],[-5,0],[-2,0],[-12,-2],[-4,-2],[-4,-7],[-6,-26],[-4,-9],[-8,-16],[-12,-18],[0,-1],[-1,0],[-3,-4],[-3,-2],[-16,-8],[-8,-2],[-8,0],[-11,-1],[-8,1],[-23,3],[-5,2],[-9,1],[-3,0],[-13,-5],[-2,-2],[-1,-6],[0,-9],[1,-6],[1,-6],[3,-21],[5,-12],[0,-1],[10,-17],[1,-13],[-4,-36],[-1,-4],[-2,-13],[-4,-14],[-1,-10],[-6,-52],[-4,-36],[0,-10],[0,-1],[-5,-12],[-9,-12],[-1,-1],[-9,-11],[-7,-2],[-14,-2],[-23,-5],[-3,-3],[-1,-3],[0,-5],[1,-5],[2,-4],[10,-11],[10,-42],[-40,-18],[-4,-4],[-3,-5],[2,-8],[2,-6],[14,-6],[2,-3],[1,-8],[-4,-8],[-3,0],[-27,-3],[-1,0],[-10,2],[-4,0],[-5,-1],[-4,-3],[-1,0],[-7,-12],[1,-7],[5,-11],[2,-5],[0,-8],[-2,-5],[-4,-6],[-6,-4],[-6,-1],[-1,0],[-17,-2],[-7,-4],[-1,-3],[-13,-56],[-1,-14],[4,-17],[-2,-3],[-4,-8],[-47,-37],[-7,-4],[-11,-2],[-15,-2],[-13,-3],[-8,-4],[-7,-5],[-5,-6],[-3,-5],[-8,-37],[1,-11],[0,-7],[-5,-5],[-8,-4],[-1,0],[-24,-5],[-32,-5],[-15,-9],[-4,-7],[0,-3],[1,-39],[0,-16],[0,-20],[-1,-6],[-1,-2],[-3,-7],[-5,-8],[-11,-21],[-17,-16],[-13,-12],[-1,0],[-15,-42],[-7,-21],[-2,-6],[-16,-11],[-16,-10],[-2,-2],[-19,-3],[-10,-2],[-6,-1],[-28,-2],[-18,-9],[-4,-2],[-26,-17],[-25,-2],[-24,-4],[-3,-1],[-27,-4],[-13,-1],[-9,-5],[-2,-2],[-9,-9],[-1,-1],[-1,-4],[-8,-6],[-1,-1],[-1,0],[-16,-10],[-6,-3],[-1,0],[-31,0],[-53,9],[-30,7],[-7,4],[-2,3],[2,18],[-5,5],[-46,28],[-4,2],[-26,11],[-2,2],[-2,3],[-2,3],[-6,0],[-1,0],[-8,-8],[-9,-10],[-29,-12],[-7,-1],[-6,3],[-1,4],[-2,9],[-3,2],[-6,0],[-9,-1],[-14,-6],[-4,-2],[-2,0],[-20,-6],[-4,0],[-4,1],[-17,4],[-3,3],[-3,7],[-1,4],[0,26],[-1,2],[-21,19],[-6,3],[-5,0],[-1,0],[-21,-5],[-5,0],[-35,13],[-27,14],[-8,7],[-6,10],[-1,0],[-6,15],[-1,1],[-20,9],[-6,10],[0,1],[-3,29],[-6,7],[-2,1],[-16,5],[-2,2],[-3,5],[0,2],[0,1],[0,2],[1,1],[2,4],[2,1],[11,10],[0,4],[-3,2],[-8,2],[-1,0],[-26,4],[-8,3],[-6,4],[-1,0],[-2,3],[0,1],[-24,2],[-8,3],[-3,6],[-2,8],[0,1],[-4,5],[-13,10],[-9,5],[-4,0],[-17,-2],[-2,-2],[-23,-23],[-15,-11],[-22,-10],[-1,0],[-23,-6],[-11,-1],[-7,-3],[0,-1],[-1,-1],[-13,-21],[-1,-4],[-1,-1],[1,-16],[-6,-12],[-4,-4],[-8,-3],[-11,-2],[-19,-3],[-55,-17],[-6,-3],[-3,-3],[-6,-14],[-3,-2],[-62,-31],[-1,-1],[-25,-9],[-7,0],[-19,8],[-17,7],[-7,2],[-5,1],[-5,-1],[-5,-3],[-39,-43],[-9,-10],[-10,-17],[-4,0],[-5,-4],[-7,-2],[-9,0],[-4,2],[-32,27],[-1,0],[-44,12],[-2,0],[-48,0],[-4,0],[-21,-8],[-8,-4],[1,-8],[-11,-30],[-4,1],[-10,3],[-54,7],[-36,-2],[-10,-2],[-8,-3],[-14,-4],[-6,0],[-1,1],[-8,2],[-6,5],[-4,13],[-24,36],[-27,39],[-1,1],[-11,15],[-3,2],[-1,1],[-26,13],[-2,4],[-4,4],[-7,1],[-44,-9],[-7,-6],[-19,-21],[-11,7],[-6,2],[-2,1],[-16,7],[-26,17],[0,1],[-8,9],[-2,2],[-1,2],[-8,21],[-6,3],[-18,-1],[-8,-2],[-16,-4],[-14,1],[-11,5],[-6,-2],[-52,13],[-30,10],[-3,2],[-8,4],[-17,9],[-9,3],[-9,-3],[-7,5],[-19,14],[-7,3],[-18,8],[-13,5],[-27,-1]],[[24329,71458],[-47,-59],[-20,-21],[-12,-19],[-2,-3],[-13,-30],[-5,-28],[-13,-4],[-12,-5],[-4,-35],[8,-33],[-15,-27],[-17,-24],[-1,0],[-22,-19],[-14,-12],[4,-8],[-41,-44],[-6,2],[-15,-4],[-3,-2],[-1,0],[-5,-3],[-15,-9],[-1,-2],[-6,-8],[-40,-51],[0,-1],[-7,-23],[0,-8],[2,-4],[2,-3],[-4,-7],[-29,-48],[-7,-15],[-2,-6],[-9,-28],[0,-21],[-5,-33],[-2,-8],[-1,-2],[-2,-3],[-4,-21],[1,-4],[19,-21],[14,-21],[11,-23],[27,-44],[1,-4],[2,-4],[0,-1],[4,-14],[-3,-12],[8,-53],[34,-7],[-4,-4],[-13,-12],[-2,-8],[1,-6],[3,-5],[22,-33],[22,-47],[3,-8],[18,-44],[13,-33],[7,-21],[5,-15],[-16,-15],[-14,-3],[-15,-7],[-22,-10],[-3,-3],[-9,-5],[-8,-9],[5,-2],[9,-7],[10,-8],[1,-3],[0,-1],[5,-14],[-5,-11],[-5,-4],[-30,-8],[-24,-15],[-4,-2],[-16,-19],[-1,-1],[-7,-11],[-16,-25],[-2,-6],[3,-7],[1,-3],[2,-7],[23,-20],[20,-18],[12,-18],[5,-8],[2,-3],[5,-16],[2,-9],[8,-28],[22,-66],[6,-7],[10,-9],[16,-11],[42,-19],[13,-6],[2,-1],[12,-8],[46,-32],[14,-16],[6,-18],[3,-9],[1,-4],[0,-9],[-4,-19],[-2,-12],[-6,-16],[-4,-5],[-2,-4],[-2,-2],[-4,-3],[-1,-1],[-11,-3],[-8,1],[-2,1],[-23,10],[-4,0],[-8,1],[-59,7],[-21,0],[-36,0],[-15,-16],[0,-1],[5,-55],[24,-36],[4,-7],[1,-4],[0,-3],[0,-6],[1,-2],[0,-3],[8,-3],[28,-9],[17,-6],[9,0],[1,0],[33,-5],[6,-3],[5,-6],[3,-5],[25,-53],[14,-4],[1,-1],[8,2],[7,2],[8,2],[11,7],[19,7],[19,4],[4,-1],[4,-2],[1,0],[10,-11],[4,-13],[2,-3],[2,-6],[0,-16],[-1,-6],[-6,-9],[-10,-14],[-9,-6],[-6,-8],[1,-5],[0,-2],[1,-3],[5,-5],[17,-7],[14,3],[17,15],[1,1],[13,4],[6,-3],[5,-14],[11,-33],[5,-14],[-2,-8],[-1,-2],[-2,-9],[-17,-24],[-4,-7],[7,-20],[2,-2],[1,-1],[58,-46],[8,-3],[27,-9],[7,-4],[3,-1],[2,-1],[6,-18],[0,-15],[1,-6],[-7,-21],[-7,-16],[-4,-8],[0,-2],[0,-3],[-1,-8],[14,-17],[1,-1],[22,-13],[16,-13],[3,-9],[-3,-3],[-2,-3],[-4,-1],[-21,-2],[-2,-1],[-3,-1],[-4,-2],[0,-10],[1,-6],[17,-19],[3,-2],[3,-2],[2,-3],[2,-2],[12,-16],[46,-19],[85,-14],[29,-12],[6,-4],[26,-21],[3,-2],[25,-6],[5,-2],[18,4],[10,3],[3,-1],[5,0],[31,7],[10,3],[20,10],[31,15],[17,5],[17,-1],[7,-4],[2,-2],[34,-30],[17,-13],[7,-6],[28,-14],[10,-7],[2,-5],[1,-8],[-15,-71],[-4,-16],[-4,-16],[0,-1],[-1,-17],[3,-19],[0,-1],[10,-31],[0,-1],[12,-24],[2,-1],[9,-11],[25,-22],[10,-6],[5,-2],[18,-10],[5,-3],[10,-10],[3,-9],[0,-2],[0,-10],[37,-44],[13,-10],[6,-5],[3,-7],[2,-3],[3,-4],[15,-80],[1,-3],[1,-4],[1,-9],[-2,-7],[-6,-9],[-4,-5],[-35,-44],[-4,-7],[0,-1],[-4,-10],[0,-6],[3,-7],[5,-5],[56,-45],[5,-3],[3,0],[2,-1],[2,0],[4,-1],[24,-3],[7,0],[9,1],[5,2],[8,0],[50,-19],[17,-8],[7,-6],[5,-4],[28,-26],[36,-17],[14,-7],[10,-5],[3,-2],[2,-8],[1,-4],[1,-6],[-10,-15],[-32,-31],[-23,-14],[-14,-4],[-18,0],[-36,0],[-20,-4],[-62,0],[-21,-6],[-7,-11],[-7,-25],[-1,-44],[-1,-28],[1,-11],[-29,-36],[-29,-5],[-3,-1],[-19,-6],[-18,-10],[-10,-6],[-10,-8],[-2,-3],[-4,-5],[-4,-6],[-4,-15],[-1,-5],[-1,-2],[2,-9],[7,-21],[1,-6],[11,-14],[1,-1],[5,-16],[-3,-4],[-9,-7],[-40,-29],[-8,-6],[-20,-15],[-1,-1],[1,-3],[22,-23],[3,-2],[3,-9],[7,-27],[2,-4],[-3,-21],[-2,-10],[4,-8],[3,-9],[3,-8],[12,-10],[31,-17],[3,-2],[1,-1],[8,-16],[0,-1],[0,-3],[1,-2],[-12,-16],[-21,-20],[-17,-26],[-5,-9],[-18,-41],[0,-4],[1,-4],[0,-2],[10,-10],[16,-9]],[[25046,67441],[-75,2],[-9,0],[-75,1],[-27,1],[-46,1],[-51,1],[-44,0],[-73,0],[-64,0],[-67,1],[-35,0],[-91,1],[-43,0],[-36,0],[-33,1],[-9,0],[-17,0],[-38,0],[-45,0],[-39,0],[-45,0],[-26,0],[-73,0],[-32,1],[-40,0],[-46,0],[-29,0],[-24,0],[-46,0],[-51,0],[-30,0],[-43,0],[-28,0],[-54,0],[-26,0],[-48,0],[-25,0],[-12,0],[-15,1],[-29,-1],[-42,0],[-42,2],[-50,3],[-36,0],[-29,0],[-58,-1],[-43,0],[-28,0],[-37,0],[-46,0],[-27,0],[-50,0],[-34,0],[-40,0],[-34,0],[-25,0],[-35,0],[-58,-1],[-28,-1],[-39,1],[-35,0],[-29,-1],[-27,0],[-90,-1],[-173,0],[-58,1],[-41,0],[-111,-1],[-89,2],[-46,-1],[-58,-1],[-24,0],[-78,-2],[-39,0],[-63,-1],[-56,0],[-61,0],[-34,0],[-44,1],[-51,0],[-29,-1],[-52,-2],[-60,-2],[-27,0],[-43,-2],[-38,-2],[-41,-2],[-39,-2],[-56,-3],[-37,0],[-107,2],[-30,1],[-87,1],[-83,1],[-71,0],[-81,-1],[-80,0],[-63,-1],[-79,-1],[-29,0],[-28,0],[-10,-1],[-21,0],[-23,0],[-6,0],[-18,0],[-26,0],[-4,0],[-21,3]],[[42826,71573],[18,-941],[1,-48],[12,-599],[9,-558],[9,-477]],[[42875,68950],[-318,0],[-85,0],[-217,1],[-437,3],[-136,1],[-46,0],[-121,0],[-5,-72],[-67,3],[-43,1],[-2,-67],[-2,-81],[-87,-5],[1,-91],[-178,4],[-6,-67],[-472,-3],[-65,-1],[-10,0],[-11,-91],[-110,14],[-69,9],[-114,-15],[-395,8],[-1042,20],[-172,16],[-19,-8],[-11,-28],[-7,-8],[-8,-4],[-17,-5],[-5,-3],[-3,-3],[-4,-14],[-22,-38],[-2,-6],[-2,-44],[1,-15],[1,-6],[0,-13],[-5,-13],[-3,-4],[-16,-11],[-8,-6],[-7,-6],[-2,-5],[-1,-15],[0,-1],[1,-15],[-6,-20],[-2,-9],[-18,-14],[-6,-5],[-11,-27],[-1,-4],[1,-5],[14,-26],[2,-8],[9,-19],[1,-1],[0,-9],[-7,-12],[-7,-2],[-46,-11],[-23,-15],[-3,-3],[-10,-23],[-5,-17],[0,-22],[-1,-5],[-6,-9],[-19,-29],[-10,-13],[-11,-13],[-4,-3],[-7,0],[0,-1],[-6,-2],[-6,-4],[-9,-17],[-6,-5],[-2,-4],[-4,-10],[1,-19],[-2,-4],[-6,-3],[-22,-5],[0,-1],[-8,-4],[-16,-14],[-1,0],[-22,-29],[-8,-6],[-10,0],[-16,5],[-3,0],[-19,-5],[-4,-2],[-26,-76],[0,-1],[-1,0],[-3,-2],[-23,-10],[-4,-2],[-13,-10],[-4,-5],[-4,-9],[-2,-11],[1,-3],[6,-26],[3,-11],[-10,-9],[-12,-8],[-8,-3],[-12,-2],[-1,0],[-21,0],[-17,-1],[-7,-1],[-14,-5],[-4,-10],[-7,-17],[-12,-31],[-2,-7],[-36,-4],[-16,-1],[-9,-22],[-5,-10],[-4,-3],[-3,0],[-66,-7],[-38,-4],[-6,1],[-2,3],[0,1],[0,1],[-4,3],[-9,4],[-9,1],[-9,0],[-6,-2],[-1,0],[-38,-21],[-1,-1],[-2,-4],[-6,-12],[-10,-13],[-9,-7],[-10,0],[-11,1],[-34,9],[-12,4],[-9,3],[-13,-1],[-12,-5],[-3,-4],[-3,-11],[-2,-28],[0,-4],[-3,-3],[-21,-18],[-3,-2],[-20,5],[-2,0],[-9,-2],[-11,-5],[-14,-13],[-9,-16],[-5,-16],[-3,-4],[-5,-3],[-4,-1],[-8,5],[-7,3],[-4,-1],[-24,-13],[-1,0],[-15,-7],[-5,-1],[-8,-1],[-1,0],[-39,5],[-14,-2],[-16,2],[-65,25],[-8,5],[-3,5],[-8,19],[0,1],[-2,12],[-37,11],[-6,2],[-9,9],[-6,8],[-3,7],[-1,10],[10,16],[7,7],[1,4],[0,5],[-3,8],[-14,19],[-2,10],[-4,2],[-21,-2],[-1,0],[-10,0],[-15,3],[-7,2],[-6,6],[-1,3],[-1,23],[0,5],[-1,2],[-4,5],[-5,2],[-28,4],[-12,1],[-8,-2],[-14,-4],[-6,-3],[-5,-6],[-2,-5],[-11,-7],[-8,0],[-1,1],[-12,3],[-16,15],[-1,1],[-7,11],[-9,25],[-5,13],[-9,14],[-7,6],[-5,3],[-6,2],[-9,-1],[-12,-3],[-10,-1],[-47,3],[-5,1],[-10,0],[-7,5],[-13,12],[-55,18],[-11,0],[-6,-2],[-8,-5],[-28,-22],[-4,-1],[-7,-2],[-42,12],[-1,1],[-31,11],[-39,16],[-1,0],[-18,11],[-2,1],[-15,5],[-2,0],[-30,36],[-5,2],[-35,14],[-8,2],[-14,9],[-2,0],[-19,18],[0,2],[-13,8],[-39,9],[-43,19],[0,8],[-3,9],[-3,6],[-55,45],[-8,3],[-24,29],[0,12],[-6,33],[1,12],[3,5],[15,17],[5,6],[-22,29],[0,1],[-5,8],[-10,17],[0,1],[-4,6],[-2,30],[0,2],[0,3],[2,7],[1,1],[5,7],[0,9],[-2,3],[-23,9],[-6,-1],[-9,-3],[-5,-3],[-11,-11],[-19,-26],[0,-1],[-8,-6],[-44,-24],[-30,-12],[-22,-5],[-1,0],[-14,-2],[-9,4],[-1,1],[-34,21],[-7,8],[-19,16],[-5,2],[-7,1],[-18,0],[-1,0],[-10,2],[-9,8],[-5,10],[-4,12],[-5,7],[-10,9],[-25,19],[0,1],[-4,6],[-2,5],[-2,14],[0,1],[0,3],[0,18],[1,9],[-2,9],[-11,12],[-10,7],[-42,33],[-2,1],[-6,1],[-4,-2],[-9,-11],[-2,-1],[-5,-2],[-3,-1],[-4,0],[-10,-9],[-1,0],[-12,-7],[-4,-1],[-3,0],[-54,8],[-10,5],[-8,13],[-2,4],[-10,4],[-8,-1],[-9,-6],[-10,-4],[-5,0],[-3,3],[-2,3],[-2,6],[1,6],[0,1],[2,5],[6,10],[6,5],[1,1],[9,16],[1,10],[0,12],[-24,-6],[-9,-2],[-8,-2],[-10,-25],[-2,-7],[-5,-7],[-3,-3],[-5,-1],[-6,0],[-7,2],[-41,15],[-3,0],[-4,-3],[-13,-11],[-4,-1],[-15,9],[-5,3],[-4,6],[-3,14],[0,3],[-2,6],[-3,3],[-6,1],[-32,-4],[-1,0],[-3,-2],[-4,-6],[-12,-13],[-1,-2],[-6,-6],[-4,-1],[-5,-1],[-10,3],[-9,2],[-5,-6],[-12,-9],[-1,0],[-45,-19],[-11,-4],[-47,-35],[-22,-5],[-7,0],[-18,1],[-5,-1],[-6,-3],[-31,-22],[-17,-9],[-11,-3],[-31,47],[-3,4],[-7,2],[-6,1],[-34,0],[-26,-3],[-35,-9],[-2,0],[-8,-10],[-4,-8],[0,-1],[-2,-8],[-1,-10],[-4,-12],[-5,-7],[-4,-2],[-6,-3],[-11,-2],[-1,0],[-22,1],[-27,-7],[-1,0],[-7,-3],[-17,-9],[-1,-1],[-28,-24],[-2,-1],[-9,-16],[-5,-16],[0,-2],[1,-18],[4,-36],[0,-12],[-2,-4],[-15,-11],[-12,-7],[-4,-3],[-1,-3],[-2,-11],[3,-29],[-1,0],[-9,-17],[-6,-5],[-6,-3],[-5,0],[-20,0],[-11,2],[-8,6],[-5,7],[-46,30],[-1,1],[-32,10],[-6,2],[-6,-1],[-8,-5],[-30,-39],[-16,-31],[-2,-8],[-1,-1],[0,-1],[-2,-11],[0,-9],[0,-4],[4,-9],[4,-8],[16,-38],[9,-19],[-1,-3],[-10,-8],[-9,-4],[-24,-10],[-1,-1],[-15,-27],[-2,-12],[-2,-7],[-2,-6],[-1,0],[-4,-4],[-8,-2],[-8,1],[-4,6],[-3,5],[-14,13],[-5,3],[-65,12],[-51,9],[-23,7],[-7,0],[-11,0],[-5,0],[-41,14],[-5,6],[-10,5],[-20,4],[-22,-1],[-5,-2],[-27,-15],[-36,-30],[-27,-21],[-15,0],[-5,0],[-3,1],[-38,9],[-7,0],[-10,2],[-10,1],[-6,2],[-44,10],[-2,1],[-3,2],[-9,5],[-41,23],[-10,6],[-5,6],[-14,9],[-12,9],[-13,2],[-36,7],[-33,-1],[-2,2],[-16,16],[-5,3],[-5,2],[-6,-1],[-6,-1],[-11,-4],[-9,-5],[-10,-5],[-4,-10],[-1,-1],[-2,-4],[1,-14],[4,-10],[15,-18],[2,-4],[3,-72],[0,-1],[-4,-71],[0,-1],[0,-8],[-2,-52],[3,-14],[-4,-6],[-7,-2],[-20,1],[-4,0],[-15,1],[0,1],[-6,6],[-9,9],[-41,16],[-10,2],[-1,0],[-71,3],[-5,-1],[-6,-4],[-9,-16],[0,-2],[-5,-2],[-2,-2],[-46,-34],[-9,-7],[-7,1],[-28,2],[-2,0],[-1,0],[-11,0],[-5,-1],[-7,-4],[-12,-10],[-22,-18],[-18,-6],[-12,-1],[-17,-2],[-34,0],[-1,0],[-48,-10],[-1,-1],[-5,-1],[-19,-6],[-3,-1],[0,-14],[9,-17],[0,-3],[-4,-7],[-10,-6],[-23,-10],[-15,-4],[-3,-1],[-8,-7],[-12,-18],[-3,-4],[-1,-2],[-18,-4],[-18,3],[-2,2],[-21,19],[-2,1],[-10,-8],[0,-6],[0,-3],[-4,-6],[-5,-4],[-4,-1],[-23,-7],[-19,-4],[-1,0],[-4,0],[-5,2],[-13,7],[-12,4],[-31,4],[-14,-2],[-9,-2],[-19,-4],[0,-1],[-3,-1],[-13,-18],[-3,-4],[-4,-2],[-17,-4],[-30,-7],[-11,4],[-18,5],[-22,20],[-10,-7],[-6,-4],[-2,-3],[-3,-4],[-11,-15],[-2,-10],[-2,-9],[-3,-6],[-9,-18],[-18,-23],[-2,-3],[-1,-1],[-2,-2],[-10,-8],[-14,-8],[-3,-2],[-4,-1],[-8,-3],[-20,-15],[-4,-4],[-22,-18],[-10,-9],[-3,-2],[-1,-1],[-5,-10],[0,-4],[11,-23],[13,-2],[20,-7],[5,-3],[4,-1],[4,-5],[2,-2],[21,-27],[8,-11],[3,-4],[0,-4],[-1,-2],[-9,-8],[-6,-4],[-14,-7],[-8,-4],[-16,-10],[-13,-1],[-19,-1],[-74,-33],[-2,-4],[-2,-5],[0,-2],[0,-15],[29,-32],[5,-6],[21,-49],[1,-3],[12,-20],[4,-7],[1,0],[3,-6],[3,-13],[-3,-13],[-7,-18],[-7,-10],[-18,-5],[-18,-10],[-25,-25],[-4,-4],[-2,-6],[20,-51],[4,-14],[4,-8],[7,-12],[4,-5],[0,-2],[1,-3],[-1,-3],[-7,-36],[-1,-1],[-5,-4],[-14,-15],[-48,-9],[-4,-1],[-7,-1],[-35,-9],[-2,-1],[-2,1],[-12,-1],[-25,-2],[-27,-32],[-55,-44],[-19,-4],[-9,-2],[-14,-17],[-2,-3],[-16,-43],[9,-26],[1,-4],[33,-24],[18,-18],[-17,-63],[-47,-21],[-17,-2],[-24,-4],[-30,6],[-7,1],[-35,9],[15,-39],[15,-46],[-3,-42],[-14,-39],[-20,-35],[-2,-37],[5,-24],[1,-6],[-18,-47],[-45,-57],[-22,-44],[-17,-23],[-28,-19],[-26,-16],[-20,-49],[18,-85],[-17,-36],[-17,-19],[-5,-40],[-67,-160],[-48,-23],[-3,-13],[7,-35],[-2,-52],[-1,-57],[-13,-48],[-61,0],[-37,0],[-1,0]],[[31762,65198],[-126,9],[-119,9],[-271,19],[-422,31],[-315,23],[-165,9],[-24,0],[-12,0],[-29,6],[-188,13],[-415,30],[-282,23],[-92,6],[-581,42],[-270,24]],[[28451,65442],[1,167],[143,3],[6,654],[5,492],[6,618],[0,12],[1,66],[9,0],[36,1],[484,8],[-1,121],[-8,619]],[[28451,65442],[-36,3],[-189,17],[-159,-3],[-143,-4],[-6,0],[-210,-2],[-46,-2],[-363,-6]],[[27299,65445],[0,1],[8,28],[16,39],[23,36],[13,21],[9,12],[16,36],[8,18],[9,48],[1,31],[-15,51],[-27,51],[-4,7],[-17,26],[-12,17],[-5,6],[-3,3],[-17,19],[-14,11],[-2,1],[-3,3],[-8,5],[-23,11],[-45,8],[-46,12],[-19,8],[-22,13],[-31,5],[-22,-2],[-7,-3],[-14,-5],[-16,-12],[-2,-2],[7,-16],[3,-9],[15,-10],[1,-5],[2,-5],[-8,-15],[-23,-14],[-10,-15],[-3,-7],[1,-22],[-3,-20],[-17,-28],[-2,-1],[-15,14],[-14,25],[-23,19],[-25,9],[-31,5],[-24,-13],[21,-17],[28,-12],[28,-8],[4,-21],[-36,-6],[-36,-8],[-12,-8],[-44,-9],[-17,4],[-5,2],[-5,3],[-13,10],[-7,17],[-1,10],[0,2],[-6,3],[-17,1],[-23,-5],[-13,-9],[6,-33],[26,-28],[18,-20],[12,-30],[-2,-33],[-25,4],[-33,6],[-24,-8],[-20,-24],[5,-26],[3,-27],[-12,-23],[-19,-18],[-25,-2],[-18,22],[-12,26],[-3,28],[15,25],[15,22],[19,21],[18,17],[-5,12],[-39,8],[-17,1],[-6,0],[-4,2],[-3,2],[-7,4],[-9,12],[-2,5],[-2,3],[-20,9],[-38,-5],[-2,1],[-12,2],[-24,13],[-28,25],[-3,16],[11,13],[19,12],[1,0],[21,18],[13,22],[1,16],[-6,24],[-19,36],[-8,5],[-17,12],[-2,8],[-6,28],[-1,6],[-9,23],[-3,8],[0,2],[1,1],[2,12],[19,26],[2,3],[0,2],[-2,5],[-11,1],[-14,2],[-9,3],[-10,4],[-7,7],[-3,3],[-13,39],[-10,12],[-16,7],[-7,-1],[-10,-1],[-8,-1],[-8,-5],[-11,-8],[-19,-3],[-5,-1],[-10,-2],[-31,4],[-42,14],[-5,2],[-21,-2],[-17,12],[-12,20],[-2,4],[-2,3],[-2,3],[-3,3],[-3,2],[-7,30],[2,17],[1,11],[1,6],[-3,9],[-8,29],[-1,11],[10,45],[1,13],[0,3],[0,1],[-2,19],[-13,34],[-26,35],[-30,27],[-4,14],[10,35],[5,7],[3,3],[20,6],[6,2],[1,1],[2,4],[-2,5],[-21,24],[-5,21],[1,3],[13,20],[17,10],[6,36],[-1,1],[-38,63],[-7,6],[-19,8],[-29,4],[-20,4],[-3,2],[-59,30],[-15,8],[-4,2],[-9,7],[-14,51],[-3,11],[-6,3],[-101,-29],[-5,-4],[-4,-7],[-1,-7],[3,-10],[4,-5],[11,-16],[3,-9],[-3,-5],[-6,-1],[-6,1],[-3,2],[-28,13],[-18,1],[-16,-3],[-19,-14],[-16,-8],[-20,-5],[-4,2],[-25,1],[-23,-5],[-9,-5],[-20,-16],[-13,-15],[-10,-8],[-17,17],[3,9],[0,11],[-7,20],[-10,10],[-16,9],[-9,2],[-9,-2],[-10,-9],[-1,0],[-6,6],[-5,4],[-4,2],[-3,1],[-3,0],[-4,0],[-9,1],[-6,14],[-7,5],[-9,4],[-15,-5],[-23,-19],[-11,-3],[-12,6],[0,1],[-5,9],[4,10],[0,14],[-5,15],[-6,7],[-9,9],[-10,4],[-28,5],[-22,11],[-40,41],[-5,14],[-11,26],[-1,3],[-4,15],[0,2],[4,12],[2,7],[4,6],[2,2],[32,10],[13,3],[14,8],[18,14],[13,19],[9,18],[-1,7],[3,11],[2,5],[0,1],[17,27],[4,11],[1,7],[-1,5],[-7,24],[4,5],[5,0],[8,0],[1,0],[54,-13],[12,0],[21,5],[1,0],[1,1],[3,3],[15,21],[0,9],[-4,12],[-4,7],[-6,3],[-49,-9],[-34,2],[-51,10],[-50,20],[-11,7],[-23,15],[-2,8],[2,3],[8,2],[33,-11],[22,-8],[20,5],[11,6],[9,12],[0,15],[-6,13],[-7,3],[-14,2],[-17,1],[-14,-1],[-12,-1],[-6,1],[-18,3],[-61,25],[-21,2],[-32,-1],[-3,0],[-13,2],[-8,1],[-10,5],[-9,7],[-16,27],[-15,16],[-17,10]],[[42875,68950],[1,-37],[13,-677],[10,-7],[490,-366],[73,-55],[368,-274]],[[43830,67534],[-3,-29],[-6,-26],[26,-15],[22,-23],[20,-16],[16,-21],[22,-10],[22,-18],[24,5],[24,-16],[13,-30],[5,-31],[15,-25],[5,-38],[12,-25],[21,-40],[-13,-24],[-23,-16],[3,-27],[18,-19],[10,-28],[5,-27],[-20,-22],[-6,-28],[-22,-13],[-29,-6],[19,-22],[25,-16],[29,-6],[23,-19],[6,-35],[-12,-30],[-17,-28],[-29,-19],[-35,-24],[-33,-17],[-32,-25],[-28,0],[-26,3],[-28,-1],[-30,-5],[-18,-30],[-1,-28],[-8,-37],[-8,-26],[4,-26],[0,-44],[-2,-27],[-20,-26],[-27,-11],[-42,-9],[-31,-7],[-23,-15],[-3,-33],[6,-26],[15,-21],[-23,-13],[-49,-39],[-22,-17],[-5,-29],[-19,-18],[-19,-19],[-14,-23],[-23,-16],[-18,-19],[-21,-23],[-3,-28],[19,-26],[19,-19],[-16,-20],[-13,-25],[-22,-19],[-4,-4],[-16,-16],[-8,-28],[-17,-25],[-30,-9],[-26,-19],[-28,-1],[-27,-15],[-28,-10],[-99,-67],[-196,-145],[-58,-41],[-10,-8],[-24,-17],[-38,-31],[-145,-107],[-1,-1],[-100,-73],[-148,-110],[-130,-95],[-61,-45],[-48,-36]],[[42194,65100],[-6,0],[-7,-3],[-17,-10],[-44,-12],[-12,-1],[-3,0],[-9,4],[0,3],[1,12],[46,1],[0,72],[-164,0],[-37,1],[0,-4],[0,-48],[0,-2],[-53,20],[-5,2],[-30,1],[-34,-4],[-19,-27],[-31,-20],[-13,-24],[-26,-20],[-21,-15],[-7,-32],[-14,-25],[10,-36],[18,-21],[22,-30],[21,-15],[-7,-35],[-13,-28],[-15,-22],[0,-3],[-11,-27],[-2,-5],[-8,-22],[-1,-1],[-22,-13],[-27,-7],[-16,-24],[-19,-20],[-13,-26],[-13,-27],[-1,-7],[-1,-15],[0,-10],[24,-16],[-3,-31],[-15,-22],[-18,-20],[-13,-35],[-20,-16],[-26,-17],[-23,10],[-27,4],[-24,-19],[-30,3],[-12,-23],[-32,-18],[-33,-10],[-26,1],[-33,-3],[-37,-5],[-38,2],[-1,1],[-26,8],[-15,0],[-17,0],[-29,-12],[-25,-8],[-27,-3],[-27,-1],[-36,-13],[-28,-21],[-19,-25],[-23,-9],[-4,-1],[-14,24],[-22,13],[-1,0],[-23,4],[-31,7],[-25,-3],[1,-42],[-2,-31],[-25,-9],[-21,-19],[-15,-27],[-2,-26],[-8,-36],[-11,-24],[5,-37],[1,-44],[-4,-30],[-23,-22],[-15,-2],[-12,-1],[-16,-26],[-3,-31],[-16,-25],[-22,-16],[-38,-9],[-6,-1],[-29,6],[-22,-3],[-10,-1],[-24,-8],[-35,-10],[-18,-20],[-67,-42],[-15,-24],[-25,-39],[-5,-34],[0,-4],[-2,-2],[-17,-23],[4,-38],[-19,-18],[-25,0],[-24,-16],[-19,-4],[-8,-1],[-26,5],[-13,-2],[-11,-1],[-29,-16],[-22,-13],[-2,-2],[-34,0],[-67,1],[-5,0],[-21,-18],[-12,-38],[-26,-18],[-34,-18],[-45,-16],[-37,-12],[-22,-14],[-43,4],[-24,4],[-18,-1],[-16,0],[-34,6],[-33,3],[-23,6],[-1,0],[-1,-1],[-5,-3],[-16,-9],[-34,-13],[-22,-15],[-1,0],[-2,1],[-5,2],[-17,9],[-24,13],[-18,20],[-35,13],[-13,-3],[-15,-4],[-27,-12],[-27,-9],[-1,0],[-33,-1],[-35,4],[-50,0],[-1,0],[-23,-7],[-18,-6],[-17,-38],[-20,-12],[-5,-3],[-23,14],[-34,-3],[-33,-3],[-12,-2],[-14,-1],[-2,-3],[-17,-14],[-31,1],[-7,1],[-36,-23],[-30,-25],[-30,-17],[-49,-5],[-20,-2],[-17,-1],[-21,-2],[-10,-1],[-3,-2],[-22,-14],[-22,1],[-8,0],[-26,-20],[-23,2],[-15,2],[-16,10],[-7,5],[-34,-2],[-31,-1],[-39,-2],[-49,-34],[-2,-1],[-25,-9],[-6,-1],[-50,-11],[-3,-1],[-80,-12],[-1,0],[-46,-4],[-21,-2],[-60,0],[-4,0],[-7,-4],[-36,-30],[-1,-1],[-12,-6],[-34,-3],[-1,0],[-16,-3],[-13,-4],[-6,-4],[-11,-16],[-4,-3],[-55,-21],[-1,0],[-48,-8],[-12,-2],[-34,-1],[-1,0],[-27,-3],[-24,2],[-26,-2],[-25,-5],[-8,-2],[-4,0],[-2,-1],[-14,-5],[-11,-1],[-58,2],[-49,1],[-1,0],[-41,2],[-59,14],[-20,3],[-7,0],[-30,-7],[-25,-11],[-34,-14],[-83,-33],[-17,2],[-35,-9],[-2,-1],[-11,-7],[-13,-7],[-2,-1],[-23,2],[-25,3],[-30,1],[-28,-1],[-5,0],[-38,-2],[-32,-2],[-81,-12],[-76,8],[-21,2],[-21,2],[-13,1],[-77,-5],[-18,5],[-68,31],[-7,4],[-9,6],[-26,5],[-90,21],[-24,11],[-44,22],[-6,6],[-5,5],[-1,12],[-1,2],[-8,3],[-49,11],[-1,0],[-12,2],[-9,1],[-41,0],[-53,6],[-6,2],[-3,3],[-2,20],[-12,24],[-8,11],[-12,14],[-14,13],[-5,4],[-4,2],[-18,9],[-7,3],[-3,0],[-10,4],[-22,-1],[-1,0],[-1,1],[-43,19],[-55,24],[-9,8],[-12,15],[-1,0],[-25,20],[-55,12],[-5,1],[-25,18],[-10,2],[-19,10],[-25,19],[-24,38],[-10,16],[-37,0],[-68,1],[-3,0],[-17,-16],[-11,-1],[-3,1],[-12,11],[-5,5],[-2,4],[0,5],[-6,2],[-27,2],[-50,-1],[-2,3],[2,33],[-5,0],[-37,-1],[-5,-2],[-22,-4],[-6,2],[-11,7],[-8,9],[-1,1],[-17,14],[-9,5],[-1,0],[-5,2],[-8,-1],[-59,-12],[-5,-4],[-10,-8],[-67,12],[-21,6],[-4,1],[-6,0],[-5,-2],[-23,-19],[-1,-4],[-6,-6],[-1,-1],[-6,-4],[-5,-1],[-6,0],[-13,5],[-11,11],[-24,21],[-44,32],[-5,2],[-69,11],[-6,0],[-28,3],[0,-5],[-2,-2],[-7,-2],[-34,-3],[-8,0],[-4,1],[-13,11],[-5,5],[-1,2],[0,4],[5,6],[3,2],[6,0],[3,0],[7,1],[1,2],[0,4],[-2,3],[-5,3],[-24,2],[-6,0],[-9,-2],[-5,-4],[-4,-5],[-4,-8],[0,-14],[-4,-6],[-2,-2],[-5,-2],[-8,0],[-5,2],[-20,13],[-10,2],[-1,0],[-16,1],[-7,-3],[-2,-2],[0,-23],[-5,-8],[-3,-3],[-5,-2],[-11,0],[-34,5],[-1,0],[-11,0],[-12,-3],[-4,-2],[-1,0],[-4,-4],[-5,-11],[-2,-9],[-4,-12],[-8,-8],[-4,-1],[-7,-1],[-6,3],[-4,6],[-2,7],[-3,16],[-1,0],[-3,3],[-16,10],[-2,1],[-5,2],[-8,0],[-6,-2],[-13,-5],[-22,-13],[-3,-2],[-25,-18],[-11,-7],[-20,-11],[-4,-1],[-7,-1],[-9,-4],[-13,-9],[-68,-63],[-3,-7],[-2,-7],[-2,-24],[1,-4],[0,-29],[-1,-5],[-3,-5],[-4,-3],[-10,-1],[-38,5],[-15,3],[-11,7],[-10,8],[-8,8],[-7,9],[0,6],[3,4],[0,1],[2,6],[1,11],[0,1],[-3,11],[-5,5],[-8,3],[-7,0],[-1,0],[-6,-1],[-3,-2],[-3,-4],[-3,-7],[-4,-21],[-5,-7],[-42,-21],[-7,-5],[-7,-8],[-1,-6],[3,-6],[9,-14],[15,-16],[0,-1],[6,-9],[1,-5],[-1,-13],[-1,-1],[-4,-8],[-21,-27],[-8,-7],[-9,-6],[-6,-3],[-10,-3],[-6,-1],[-18,3],[-3,1],[-56,38],[-37,22],[-23,9],[-10,0],[-4,-1],[-8,-17],[-4,-17],[-9,-31],[-2,-4],[0,-1],[-4,-3],[-6,-2],[-18,1],[-5,1],[-1,-1],[-4,-5],[-13,-28],[-2,-3],[-7,-3],[-11,0],[-8,2],[-26,0],[-8,-1],[-50,-13],[-2,0],[-7,-2],[-3,-3],[-4,-7],[-12,-24],[-3,-8],[-12,-3],[-9,1],[-4,4],[-6,12],[-1,1],[-15,14],[-8,5],[-53,31],[-12,42],[-1,2],[0,1],[-6,15],[-5,7],[-8,6],[-1,1],[-3,1],[-7,2],[-9,-1],[-19,-9],[-1,-3],[-7,-22],[-3,-5],[-8,-10],[-6,-4],[-5,-4],[-1,0],[-38,-15],[-9,-4],[-14,-4],[-8,0],[-5,1],[-5,8],[-64,-3],[-1,-1],[-25,-11],[-5,-1],[-10,3],[-7,2],[-20,2],[-15,0],[-2,-1],[-1,0],[-18,-24],[-7,-14],[-12,-12],[-2,-2],[-29,-3],[-17,-4],[-11,-1],[-21,2],[-30,11],[-11,2],[-8,0],[-26,-4],[-4,-1],[-2,-2],[-8,-8],[-2,-3],[-7,-4],[-16,-8],[-7,-1],[-6,1],[-7,7],[-17,15],[-14,18],[-1,1],[-1,0],[-6,6],[-18,9],[-31,7],[-23,-5],[-13,-9],[-8,-9],[-2,-35],[-1,-1],[-27,-12],[-26,-20],[-1,-1],[-69,-20],[-22,-4]],[[32927,63052],[-281,685],[-319,777],[-240,584],[-37,90],[-19,47],[-159,-103],[-6,8],[-18,17],[-86,41]],[[46979,65176],[8,-51],[-16,-25],[-33,-27],[-20,-34],[-2,-29],[-19,-20],[-27,-23],[-2,-33],[7,-28],[-7,-26],[-7,-11],[-10,-15],[-23,-16],[-9,-29],[-7,-28],[-24,-31],[-30,-9],[-26,-17],[-29,-12],[-26,5],[-26,-13],[14,-22],[-4,-27],[0,-32],[-1,-30],[-9,-26],[1,-30],[-19,-16],[-6,-34],[7,-28],[6,-27],[2,-33],[-15,-27],[-1,-27],[1,-29],[-5,-33],[-22,-19],[9,-29],[-7,-29],[-6,-30],[-6,-27],[4,-34],[17,-26],[-7,-26],[20,-18],[31,-14],[20,-20],[16,-32],[22,-21],[36,-6],[26,-2],[34,-23],[25,-13],[9,-28],[-9,-41],[5,-39],[34,-29],[11,-28],[4,-28],[-4,-28],[13,-25],[23,-10],[0,-37],[-4,-26],[13,-25],[10,-31],[4,-29],[22,-21],[29,-24],[20,-22],[12,-26],[23,-25],[25,7],[8,-27],[20,-21],[0,-29],[12,-40],[8,-47],[28,3],[22,-16],[3,-35],[17,-35],[25,-16],[0,-27],[-13,-24],[-9,-35],[-7,-31],[14,-26],[25,-14],[34,-5],[29,-14],[33,-6],[24,-6],[-13,-29],[3,-29],[-14,-29],[3,-28],[11,-31],[12,-30],[-6,-29],[-19,-19],[-6,-30],[-19,-17],[-32,-15],[-31,-10],[-24,-25],[-11,-30],[-3,-33],[-6,-31],[10,-26],[6,-29],[2,-28],[-1,-27],[-5,-29],[-23,-18],[-13,-26],[-5,-28],[-20,-20],[-24,-13],[-28,-12],[4,-26],[9,-38],[13,-41],[14,-37],[32,-31],[-1,-32],[-1,-36],[-11,-36],[-29,-27],[-35,-26],[-27,-10],[-29,-8],[-27,-8],[-43,-23],[-11,-25],[-25,0],[-26,9],[-33,11],[-35,26],[-28,28],[-37,11],[-15,-28],[-28,-14],[-27,-12],[-30,-7],[-28,-3],[-29,-21],[-31,-38],[16,-25],[11,-40],[7,-33],[10,-32],[27,-20],[6,-35],[17,-21],[23,-21],[12,-25],[13,-32],[-41,-4],[-28,-5],[-42,-19],[-39,-24],[-20,-16],[-34,-15],[-40,-41],[-14,-24],[28,-8],[21,-15],[7,-26],[-20,-19],[-18,-19],[-3,-28],[7,-26],[-1,-32],[-14,-33],[-16,-26],[-13,-19],[-4,-6],[-26,-12]],[[46409,61134],[-124,94],[-6,4],[-47,35],[-57,43],[-61,50],[-50,30],[-49,29],[-147,89],[-50,30],[43,102],[16,35],[3,8],[-4,36],[-3,29],[-7,39],[-1,4],[-3,16],[-7,34],[-10,55],[-3,10],[-3,18],[-9,45],[3,27],[-13,23],[-6,6],[-14,15],[-19,19],[-5,5],[-13,12],[-22,12],[-17,3],[-8,2],[-24,7],[-24,-1],[-1,0],[-32,0],[-17,-1],[-12,0],[-31,-2],[-4,0],[-88,-4],[-117,-6],[-13,0],[-32,2],[-5,-2],[-19,-4],[-23,-13],[-48,-28],[-7,-4],[-13,-8],[1,-2],[-1,-2],[-6,-2],[-3,-3],[-2,-2],[-6,-5],[-2,-2],[-3,-3],[-4,-4],[-2,0],[-5,-1],[-4,-4],[-2,0],[-2,-1],[-3,-4],[-2,-2],[-5,-3],[-4,-4],[-5,1],[-15,-10],[-32,-4],[-8,2],[-10,3],[-5,1],[-35,9],[-7,-5],[-7,-4],[-31,-21],[-2,-1],[-25,-5],[-16,-4],[-17,-3],[-17,-4],[-8,-1],[-29,-6],[-36,-9],[-17,-4],[-9,-12],[-6,-6],[-13,-9],[-9,-10],[-34,-42],[-44,-53],[-12,-15],[-10,-3],[-43,-11],[-7,-1],[-40,-10],[-38,-9],[-2,0],[-31,-7],[-51,-12],[-5,-3],[-19,-11],[-110,-66],[-3,-3],[-33,-22],[-11,-3],[-10,-4],[-26,-10],[-25,-10],[-16,-5],[-47,-18],[-66,-55],[-18,-15],[-18,-15],[-560,338],[-191,115],[-26,16],[-101,60],[-296,178],[-192,116]],[[42707,62303],[-322,165],[-43,-12],[-26,-8],[-61,-24],[-44,-13],[-18,-9],[0,26],[0,59],[0,42],[0,110],[0,48],[0,43],[1,138],[-1,92],[1,106]],[[42194,63066],[0,360],[0,316],[-1,27],[0,523],[1,172],[0,71],[0,104],[0,55],[0,164],[0,82],[1,46],[0,79],[-3,-3],[-6,14],[-1,7],[10,2],[-1,10],[0,5]],[[43830,67534],[166,-125],[1054,-789],[133,-99],[677,-507],[1072,-803],[47,-35]],[[27299,65445],[-8,-32],[-8,-55],[-1,-7],[-4,-72],[-6,-14],[-29,-44],[-42,-42],[-115,-95],[-1,0],[-1,-1],[-23,-12],[-25,-19],[-25,-36],[-15,-40],[-1,-22],[7,-37],[19,-47],[6,-14],[5,-13],[6,-7],[19,-21],[4,-3],[29,-24],[135,-115],[35,-32],[8,-11],[8,-8],[57,-70],[49,-54],[28,-17],[28,-3],[29,6],[53,35],[40,18],[13,2],[38,-5],[12,-4],[33,-25],[4,-5],[25,-39],[4,-12],[26,-264],[25,-67],[40,-53],[47,-32],[2,-1],[21,-14],[21,-15],[1,0],[2,1],[37,20],[2,2],[17,11],[10,7],[23,11],[32,7],[30,2],[67,-4],[31,-6],[33,-11],[18,-9],[20,-14],[1,0],[10,-14],[15,-20],[12,-55],[9,-30],[1,-2],[-1,-14],[-1,-12],[-7,-28],[-3,-14],[-18,-43],[-2,-6],[-6,-8],[-15,-24],[-14,-13],[-20,-18],[-20,-19],[-12,-10],[-4,-8],[-9,-16],[-3,-8],[-2,-6],[-1,-5],[2,-17],[3,-9],[22,-22],[7,-7],[10,-14],[13,-31],[30,-87],[1,-2],[1,-14],[3,-22],[-20,-31],[-2,-4],[-1,-1],[-2,-3],[-38,-37],[-13,-12],[-89,-35],[-8,-4],[-18,-16],[0,-23],[20,-26],[25,-19],[5,-4],[15,-24],[-10,-18],[-23,-16],[-38,-6],[-14,-2],[-34,-3],[-44,-3],[-90,-24],[-4,-2],[-16,-9],[-10,-5],[-40,-74],[-14,-40],[-1,-21],[1,-5],[2,-15],[3,-17],[20,-28],[2,-3],[33,-48],[26,-43],[27,-39],[20,-28],[14,-14],[29,-18],[24,-10],[11,-4],[11,-2],[17,-3],[26,-1],[3,1],[23,2],[62,4],[50,0],[46,-7],[24,-5],[27,-10],[14,-11],[12,-16],[4,-16],[20,-119],[1,-3],[9,-78],[-1,-24],[0,-1],[-5,-36],[-5,-8],[-9,-14],[-2,-4],[-9,-20],[-12,-6],[-27,-16],[-18,-5],[-47,-6],[-47,0],[-80,-4],[-7,-2],[-7,-3],[-3,-4],[-15,-16],[-4,-6],[-1,-2],[-2,-7],[1,-9],[0,-4],[2,-3],[18,-45],[0,-2],[6,-7],[55,-76],[24,-41],[5,-4],[24,-33],[25,-46],[8,-20],[14,-49],[1,-5],[1,-41],[1,-5],[-3,-32],[-3,-11],[-10,-31],[-13,-22],[-37,-26],[-27,-16],[-3,-2],[-4,-4],[-2,-3],[-2,-5],[-2,-6],[-4,-25],[0,-5],[1,-6],[1,-4],[8,-19],[23,-54],[-1,-37],[0,-21],[-1,-11],[-1,-4],[-3,-2],[-33,-18],[-4,-3],[-9,-6],[-9,-9],[-87,-98],[-1,-2],[-5,-6],[-58,-20],[-38,-4],[-105,-24],[-11,-5],[-59,-52],[-56,-50],[-2,-2],[-17,-19],[-25,-40],[-2,-4],[-1,1],[-10,1],[-23,17],[-35,20],[-46,-85],[-23,-8],[-6,-4],[-35,-96],[-53,4]],[[27341,60992],[-116,9],[-89,2],[-101,2],[-240,5],[-386,7],[6,1828],[-23,4],[15,311],[3,72],[-80,38],[-43,59],[-27,9],[-15,21],[-27,-4],[-24,-9],[-23,-11],[-26,-6],[-34,13],[-26,-1],[-27,0],[-26,11],[-36,4],[-25,-8],[-25,-23],[-21,-17],[-31,-17],[-14,-4],[-16,-6],[-37,-5],[-25,-4],[-24,-10],[-22,-13],[-21,-13],[-28,1],[-14,23],[-1,17],[-1,10],[-22,14],[-25,-6],[-24,-14],[-29,-1],[-23,-16],[-17,-20],[-6,-29],[-1,-9],[-21,-2],[-5,1],[-4,0],[-15,8],[-5,2],[-24,12],[-45,21],[-10,2],[-16,0],[-98,-6],[-33,-8],[-1,0],[-2,0],[-9,0],[-10,2],[-29,10],[-72,20],[-1,0],[-10,3],[-24,0],[-15,1],[-24,3],[-7,2],[-5,4],[-59,33],[-48,21],[-54,14],[-1,0],[-3,1],[-27,5],[-26,4],[-13,3],[-1,0],[-23,3],[-10,1],[-13,-1],[-3,0],[-1,0],[-12,-3],[-14,-6],[-8,-2],[-7,0],[-29,3],[-61,4],[-67,9],[-2,1],[-7,1],[-13,-1],[-7,-2],[-27,-11],[-16,-15],[-10,-14],[-9,-8],[-12,-7],[-7,-3],[-46,-6],[-7,-1],[-15,-4],[-3,-1],[-6,-3],[-25,-11],[-5,-2],[-14,-4],[-6,-2],[-8,-2],[-6,-2],[-14,-1],[-87,0],[-26,-1],[-29,1],[-46,9],[-19,8],[-9,3],[-33,8],[-32,13],[-8,-2],[-7,-3],[-18,-7],[-7,-2],[-12,-32],[0,-1],[-11,-9],[-9,-6],[-13,-7],[-50,-16],[-40,-13],[-13,-5],[-23,-7],[-13,0],[-17,-5],[-2,-2],[-24,-16],[-42,-55],[-6,-1],[-29,-17],[-3,-2],[-11,-24],[-23,-34],[-3,-3],[-5,-3],[-56,-20],[-10,-13],[-3,-5],[-5,-9],[-15,-4],[-3,-2],[-26,-13],[-51,-15],[-2,-15],[-17,-12],[-19,-12],[-24,-19],[-18,-13],[-1,1],[-7,3],[-21,-6],[-32,-17],[-13,-12],[-14,-9],[-10,-3],[-15,1],[-18,4],[-17,7],[-14,6],[-12,3],[-14,3],[-40,8],[-17,3],[-9,4],[-12,7],[-11,7],[-36,25],[-6,6],[-13,11],[-16,18],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-10,22],[-37,55],[-48,21],[-1,1],[-2,1],[-3,2],[-56,49],[-6,1],[-31,-8],[-21,-6],[-14,-4],[-46,-14],[-3,-1],[-3,0],[-74,2],[-4,0],[-4,1],[-3,2],[-5,2],[-9,4],[-16,2],[-23,-3],[-6,-1],[-3,0],[-3,0],[-4,1],[-1,1],[-26,9],[-19,3],[-3,-1],[-34,-7],[-11,-2],[-6,-2],[-13,-2],[-3,0],[-2,0],[-12,3],[-18,5],[-5,2],[-4,0],[-5,0],[-9,-1],[0,-3],[-1,0]],[[22435,63101],[-1,3],[-7,23],[-16,23],[-37,37],[-5,26],[-19,20],[-9,34],[11,24],[-21,15],[-13,26],[13,24],[-7,29],[-11,29],[-11,27],[-7,29],[-4,27],[-11,26],[-9,33],[-5,30],[-13,27],[-34,114],[-7,27],[-15,30],[-13,30],[7,27],[-6,30],[-13,34],[-20,23],[-15,31],[2,26],[-14,27],[-15,32],[-8,31],[-13,24],[-15,21],[-25,9],[-18,22],[-5,29],[-16,19],[-23,30],[-19,23],[2,28],[-25,-6],[-27,-18],[-30,-20],[-20,-17],[-24,-6],[-23,-8],[-20,17],[1,28],[-3,29],[-8,27],[-7,26],[30,14],[29,8],[20,16],[4,29],[-19,24],[-23,18],[20,27],[7,27],[-6,29],[-15,23],[-11,25],[-17,28],[-34,12],[-23,14],[-24,9],[-28,-5],[-25,-4],[-35,10],[-22,20],[-23,17],[-21,17],[-17,26],[-22,15],[-21,19],[-9,26],[-17,27],[-19,23],[18,29],[16,29],[-10,28],[-15,23],[-10,25],[-17,26],[-21,15],[-11,24],[-26,-8],[-27,-15],[-30,14],[-29,4],[-42,51],[11,48],[-20,53],[-32,117],[26,4],[-4,30],[-3,30],[-22,17],[-21,26],[-4,32],[-25,25],[-10,25],[-26,36],[-22,12],[-24,25],[-17,31],[-23,12],[-15,29],[-17,25],[-4,29],[-9,39],[-4,34],[-6,36],[-10,42],[-12,37],[-10,35],[-4,28],[-11,26],[-21,24],[-3,31],[-18,19],[-6,27],[-19,22],[-25,36],[-29,33],[-14,31],[-17,26],[-15,23],[-6,36],[-14,38],[-26,60],[-28,27],[-13,40],[-10,27],[-13,26],[-13,38],[-13,30],[-43,-9],[-35,-4],[-35,7],[-28,5],[-5,27],[-39,-14],[-29,-6],[-40,-8],[-34,11],[-23,33],[-31,19],[-30,2],[-28,-31],[-35,-6],[-27,11],[-28,-13],[-36,-1],[-20,-17],[-26,-27],[-18,-20],[-32,2],[-23,10],[-46,24],[-29,13],[-25,14],[-41,19],[-27,9],[-20,27],[-33,21],[-25,0],[-25,16],[-30,19],[-19,28],[-26,17],[-20,30],[-11,24],[-20,25]],[[22435,63101],[-17,-30],[-12,-23],[-9,-145],[23,-39],[-16,-24],[-16,-26],[-30,-95],[-19,-24],[-72,-221],[-25,-56],[-8,-33],[-5,-26],[-16,-68],[-4,-27],[-1,-28],[5,-38],[6,-29],[19,-20],[15,-22],[15,-22],[13,-26],[19,-26],[30,-19],[19,-28],[23,-32],[8,-27],[23,-25],[21,-22],[28,-30],[26,-29],[18,-22],[23,-18],[21,-21],[16,-21],[21,-22],[16,-24],[11,-25],[15,-29],[17,-37],[69,-106],[21,-23],[0,-27],[23,-55],[7,-44],[-4,-27],[9,-38],[14,-33],[14,-26],[38,-39],[16,-65],[-20,-27],[-28,-40],[-18,-28],[30,-14],[3,-12],[-34,0],[-67,-1],[-42,0],[-140,0],[-24,0],[-79,0],[-99,-1],[-163,-1],[-2,0],[-29,0],[-195,1],[-94,1],[-44,0],[-39,0],[-96,1],[-250,1],[19,-45],[40,-28],[9,-12],[-11,-24],[5,-22],[10,-8],[15,-13],[-28,-59],[8,-71],[21,-28],[25,-24],[23,-38],[17,-20],[15,-31],[26,-46],[-46,-2],[-41,14],[-37,-8],[-71,3],[-37,6],[-23,-39],[-18,-33],[-4,-39],[38,-34],[44,-7],[27,3],[26,5],[32,-3],[28,-5],[35,-21],[-12,-24],[-7,-36],[-42,2],[-22,-16],[-25,-1],[-21,17],[-45,14],[-13,-37],[22,-14],[19,-34],[30,-2],[8,-32],[25,-7],[45,-94],[11,-25],[10,-40],[16,-43],[-28,-24],[15,-39],[-3,-31],[-25,-5],[-38,-2],[-17,-15],[-22,-19],[-2,-2],[0,-48],[-2,-78],[-55,-44],[20,-23],[-59,-16],[18,-56],[-14,-36],[38,-52],[23,-21],[55,-13],[-4,-30],[17,-2],[9,-2],[28,1],[35,-39],[-22,-27],[2,-62],[-169,0],[-350,0],[-40,0],[-376,1]],[[20593,59334],[50,117],[16,65],[10,27],[-2,28],[-31,-7],[-6,13],[-14,33],[-49,24],[-67,-8],[-7,-1],[-48,-10],[-56,146],[15,34],[8,18],[26,17],[22,34],[0,25],[0,13],[-15,29],[-6,-2],[0,-2],[-2,-12],[9,-22],[3,-7],[-1,-18],[-8,-15],[-37,-34],[-35,-54],[8,-33],[0,-14],[1,-35],[1,-36],[-32,-6],[-15,-4],[-20,-5],[-9,-3],[41,-22],[37,-19],[57,-66],[2,0],[100,-14],[15,-30],[-46,-141]],[[20508,59337],[-312,-1],[-275,-5],[-8,0],[-43,-2],[-31,-2],[-26,0],[-34,0],[-44,1],[-27,-1],[-27,0],[-52,-1],[-46,-1],[-25,0],[-25,0],[-7,0],[-32,1],[-2,0]],[[19492,59326],[-2,4],[-9,20]],[[19481,59350],[1,1],[152,36],[106,-14],[41,-13],[44,-14],[39,13],[21,85],[-9,90],[-7,76],[0,5],[72,-15],[7,-2],[4,4],[10,10],[9,9],[-6,88],[-8,11],[-21,28],[6,6],[9,8],[5,5],[88,-40],[-2,6],[-11,40],[-14,48],[-64,74],[12,24],[-8,26],[0,3],[-9,87],[12,25],[-89,231],[-36,-19],[-39,-8],[7,31],[-44,28],[-5,7],[-12,15],[-20,19],[-25,9],[-14,25],[-20,16],[-16,24],[5,29],[3,29],[4,28],[3,28],[-3,27],[-26,-7],[-25,-6],[-23,-9],[-23,11],[-20,18],[-11,28],[-13,26],[-14,22],[20,20],[11,24],[3,29],[-4,28],[-8,26],[-1,29],[-13,25],[14,24],[23,19],[27,2],[21,21],[-11,28],[-15,21],[-24,22],[-18,20],[-9,37],[-15,28],[-24,15],[-24,-10],[-5,27],[-1,29],[-23,28],[-12,30],[16,25],[-20,18],[-23,13],[-9,29],[-28,-14],[-14,24],[-16,21],[-17,26],[-21,14],[-2,28],[-19,20],[-20,15],[-23,16],[-30,16],[-20,22],[-23,13],[-28,-1],[-35,8],[-19,17],[-25,11],[-18,24],[-17,19],[-19,17],[7,26],[17,21],[24,26],[28,2],[20,47],[-41,24],[-18,24],[-63,45],[-53,24],[-25,47],[-17,28],[14,33],[-19,23],[-16,28],[-29,11],[-2,27],[-194,152],[-8,27],[28,33],[2,32],[18,23],[42,-28],[8,41],[20,25],[11,25],[30,28],[0,60],[-29,25],[-24,20],[-29,14],[-36,3],[-15,21],[-31,-10],[-26,1],[-39,12],[-25,3],[-24,22],[-14,33],[39,25],[-22,16],[-28,10],[-26,22],[-24,17],[-24,-3],[-32,2],[-27,-5],[-47,-5],[0,35],[-13,28],[-4,29],[-21,23],[-25,17],[-13,24],[-13,25],[-16,23],[-5,27],[-24,27],[-10,31],[23,19],[27,-6],[20,16],[12,23],[-35,14],[-19,17],[-16,26],[-28,12],[-27,31],[25,11],[38,6],[-5,27],[-23,12],[13,32],[-32,20],[-33,3],[-15,24],[-22,19],[-49,1],[-41,-10],[-29,2],[0,33],[-28,11],[-6,26],[-7,29],[-14,26],[-17,32],[-31,20],[-24,44],[-24,31],[-28,-3],[-13,26],[-30,5],[-52,27],[-34,13],[-27,3],[-22,28],[-42,8],[-33,-12],[-39,1],[-24,11],[-32,8],[1,35],[-13,33],[-26,18],[-22,18],[-26,-3],[-24,11],[2,33],[7,31],[-2,29],[-25,18],[-14,30],[-3,28],[-24,25],[-23,19],[-15,30],[-22,27],[-20,22],[11,24],[6,20],[2,9],[20,17],[17,19],[14,27],[1,26],[21,12],[23,18],[12,25],[4,33],[24,15],[19,25],[-15,28],[-29,8],[-10,98],[61,79],[8,32],[27,26],[4,153],[-35,33]],[[19481,59350],[-2,-8],[-2,-10],[-5,-18],[20,-41],[61,-74],[-9,-75],[-206,-78],[-45,-30],[-25,-16],[-41,-27],[-18,-12],[-56,-37],[-32,-15],[-16,4],[-14,4],[-8,2],[-32,8],[-29,22],[-35,-15],[-14,-3],[-23,-5],[-38,-8],[-26,-2],[-36,-3],[-42,-6],[-36,-6],[-34,-8],[-25,-8],[-24,-10],[-33,-8],[-49,3],[-32,10],[-1,2],[-19,30],[-9,4],[-30,14],[-21,37],[-4,22],[-28,80],[-12,29],[-12,26],[-19,25],[-30,26],[-31,24],[-46,28],[-28,13],[-22,13],[-23,19],[-71,67],[-11,16],[-4,6],[-12,35],[-4,-10],[-15,-32]],[[18123,59354],[-30,-10],[-33,10],[-29,8],[-22,17],[2,31],[20,20],[24,12],[1,2],[11,18],[3,5],[-7,4],[-10,5],[-5,3],[-5,-1],[-28,-11],[-16,-1],[-17,-1],[-29,15],[-1,28],[-2,5],[-4,14],[-3,8],[-17,6],[-9,4],[1,1],[11,28],[12,29],[-26,21],[-18,23],[-23,10],[-3,1],[1,-2],[11,-23],[-24,-14],[-6,27],[-21,5],[-7,2],[-3,0],[-22,2],[-1,1],[-10,5],[-12,6],[-23,1],[-3,0],[-24,-11],[-2,-1],[-25,-7],[-19,19],[-26,4],[-23,-10],[-4,-2],[-10,-1],[-13,-10],[-1,-1],[-2,-1],[-5,-5],[-3,-3],[-21,-9],[0,-5],[-4,-26],[-1,-7],[-10,-3],[-13,-1],[-27,5],[-17,3],[-42,11],[-8,3],[-9,0],[-12,1],[-19,0],[-5,0],[-27,0],[-18,-2],[-2,0],[-3,0],[-4,-1],[-5,-3],[-2,-10],[-1,-4],[-9,-7],[-18,-14],[-2,-1],[-14,3],[-68,13],[-41,8],[-43,4],[-6,0],[-15,0],[-11,9],[-26,19],[-12,9],[-1,1],[-10,4],[-38,16],[0,1],[-4,1],[-6,0],[-11,-1],[-5,-2],[-5,-2],[-8,-4],[-12,4],[-2,7],[-3,5],[-8,7],[-2,1],[-15,13],[-5,2],[-14,1],[-5,1],[-14,-1],[-21,-2],[-33,-1],[-6,0],[-19,0],[-12,1],[-5,2],[-70,50],[0,1],[-11,-1],[-17,-1],[-7,4],[-1,0],[-62,13],[-7,1],[-15,-1],[-7,0],[-2,0],[-4,5],[-9,11],[-21,10],[-4,0],[-4,-3],[-9,-6],[-3,-3],[-4,-7],[-21,5],[-3,2],[-31,25],[-11,11],[-6,17],[0,1],[-1,6],[-11,9],[-17,10],[-2,1],[-28,14],[-14,7],[-12,2],[-3,-1],[-96,-1],[-29,0],[-32,0],[-60,44],[-2,2],[-32,23],[-14,10],[-158,116],[-59,44],[-108,79],[-25,18],[-43,32],[-23,17],[-69,51],[-20,16],[-69,51],[-23,18],[-91,66],[-47,35],[-148,108],[-111,80],[-68,50],[-36,27],[-43,30],[-58,43],[-212,157],[-6,4],[-12,15],[0,1],[-6,1],[1,3],[-4,2],[-35,13],[-52,-24],[-6,-2],[-5,0],[-4,1],[-5,6],[-3,12],[-1,7],[-6,25],[-12,-1],[-22,-3],[-7,-8],[-7,-7],[-3,-2],[-7,-6],[-3,-21],[8,-16],[0,-2],[-13,-22],[-3,-4],[-6,-3],[-28,-14],[-6,-1],[-6,4],[-2,5],[-1,8],[-5,11],[-10,11],[-9,5],[-21,0],[-6,0],[-1,0],[-33,-12],[-24,13],[-8,11],[-13,-12],[-8,-7],[-14,-8],[-7,-4],[-1,0],[-65,2],[-1,0],[-2,0],[-15,3],[-3,2],[-28,15],[-7,2],[-30,2],[-1,0],[-8,1],[-10,5],[-30,21],[-1,0],[0,1],[-9,3],[-24,8],[-7,2],[-4,1],[-14,-4],[-1,0],[-8,-5],[-4,-7],[1,-11],[-1,-4],[0,-4],[-1,-13],[-7,-13],[-9,-7],[-9,-4],[-4,-3],[-14,5],[-13,8],[-16,2],[-9,-3],[-12,-2],[-19,0],[-17,1],[-15,-1],[-88,-51],[-23,-13],[-9,-5],[3,-9],[5,-18],[1,-12],[0,-2],[-1,-9],[-6,-7],[-14,-3],[-3,0],[-8,1],[-13,-3],[-18,-9],[-11,-9],[-6,-9]],[[13692,60810],[-31,12],[-23,14],[-19,19],[-32,28],[-22,16],[-25,15],[-24,17],[-26,15],[-29,19],[-42,14],[-53,10],[-93,1],[-28,-11],[-48,-40],[-2,-29],[-23,27],[31,44],[22,27],[104,6],[-8,30],[19,44],[-45,59],[-70,61],[-25,-6],[-24,15],[-30,18],[-18,-23],[16,-42],[20,-23],[8,-100],[-16,-21],[-2,-31],[-37,-10],[32,-50],[9,-36],[37,-11],[-8,-45],[-32,-6],[-28,4],[-31,30],[-17,19],[-9,31],[-15,24],[-14,24],[-13,29],[12,23],[-25,1],[-28,31],[-29,33],[38,13],[12,29],[12,26],[20,55],[7,51],[3,40],[-1,32],[2,36],[0,34],[3,34],[-9,43],[-12,30],[-18,32],[-25,47],[-27,32],[-18,29],[-24,24],[-4,29],[-11,29],[-15,26],[-12,45],[-31,23],[-22,16],[-49,-3],[-4,41],[-14,55],[-11,48],[-14,35],[-18,29],[-22,28],[-40,37],[-24,14],[-33,17],[-17,38],[-18,31],[-28,17],[-9,37],[-8,41],[-17,27],[-28,1],[3,31],[-21,68],[-55,47],[-52,16],[-36,2],[-13,25],[-22,14],[-43,24],[-25,24],[-21,16],[-39,24],[-28,16],[-8,39],[-30,17],[-32,20],[-30,12],[-41,31],[-47,31],[-24,15],[-25,17],[-25,12],[-21,17],[-69,26],[-20,18],[-31,14],[-38,7],[-27,12],[-31,20],[-37,-2],[-44,9],[-32,20],[-43,13],[-27,32],[-16,33],[-53,5],[-26,20],[-29,19],[-35,-27],[-27,8],[-23,11],[7,29],[-25,15],[-53,42],[-26,29],[-36,23],[12,25],[-34,27],[-42,25],[-28,-11],[-12,45],[-33,8],[-25,27],[-30,20],[-34,4],[-30,17],[-20,16],[-10,28],[-28,-3],[-26,11],[-23,41],[13,26],[-27,17],[-34,8],[-24,8],[-40,17],[-37,15],[-22,13],[-26,27],[-27,16],[-40,-3],[-32,39],[-16,20],[-12,24],[-9,32],[13,53],[32,4],[-35,14],[-30,41],[-12,29],[-20,23],[-20,22],[-19,27],[-45,17],[-31,-10],[-25,9],[-16,27],[-37,15],[-36,24],[-24,24],[48,15],[-4,27],[0,27],[-27,14],[-24,8],[-24,16],[-22,25],[-29,34],[-16,29],[-28,13],[-15,27],[-43,20],[27,-5],[-30,61],[-25,5],[-5,39],[-23,15],[-34,27],[4,27],[-6,27],[-48,30],[-29,25],[25,14],[-30,27],[-9,38],[-27,24],[-26,21],[-19,44],[-27,27],[-17,22],[-44,17],[-25,10],[-28,18],[-31,25],[18,46],[-17,38],[-27,18],[-24,32],[-8,31],[-29,32],[-18,22],[-24,9],[-22,12],[-30,24],[-18,30],[-12,29],[-30,22],[-25,30],[-38,20],[-32,15],[-30,13],[-28,-2],[-22,17],[-20,16],[-28,15],[-28,23],[-39,27],[-29,44],[-27,20],[-49,14],[-33,13],[-28,11],[-25,5],[-26,-2],[-29,15],[-21,19],[-16,21],[-35,31],[-30,10],[-14,33],[-8,36],[-31,20],[-9,27],[6,38],[-27,41]],[[25712,57959],[-94,-43],[-16,0],[-20,-3],[-3,0],[-65,-12],[-65,-2],[-1,11],[31,23],[54,2],[127,24],[34,17],[26,-1],[2,-2],[-10,-14]],[[25531,58010],[1,0],[8,51],[-1,11],[0,5],[26,-7],[96,-55],[63,7],[14,-12],[-4,-7],[-18,-4],[-24,-1],[-23,-10],[-32,-7],[-33,-8],[-26,-4],[-42,-8],[-39,-6],[-49,-4],[-41,-2],[-3,0],[-8,1],[-73,-15],[-9,-2],[-48,-12],[-46,14],[-36,33],[-36,31],[-33,29],[-46,97],[-26,118],[0,37],[0,8],[-1,1],[-17,16],[-4,15],[-1,8],[-3,10],[-1,5],[27,2],[3,0],[37,-9],[44,-10],[32,-8],[30,-18],[11,-6],[5,-3],[20,-11],[7,-1],[31,-2],[14,-3],[72,-16],[23,-2],[8,0],[0,-15],[-20,-29],[-37,-32],[1,-27],[1,-15],[-3,-10],[-2,-6],[18,-15],[11,-11],[17,-2],[52,-29],[69,-39],[7,-8],[3,-3],[8,-1],[26,-4]],[[25033,58454],[6,-13],[-14,2],[-2,0],[-48,11],[-25,20],[7,7],[23,4],[17,-4],[36,-27]],[[32927,63052],[12,-290],[15,-390],[0,-285],[0,-159],[-1,-179],[0,-196],[0,-215],[-7,-510]],[[32946,60828],[-54,-7],[-55,-11],[-3,-2],[-17,-3],[-14,-4],[-9,-4],[-6,-5],[-3,-6],[-2,-4],[-2,-4],[-48,-20],[-26,0],[-15,0],[-65,39],[-30,18],[-11,8],[-4,4],[-8,7],[-13,7],[-18,0],[-10,-1],[-8,-1],[-4,0],[-1,-1],[-15,-5],[-7,-7],[-2,-1],[0,-1],[-3,-5],[-7,-11],[-4,-4],[-50,-40],[-30,-17],[-8,-7],[-11,-9],[-20,-16],[-13,-6],[-8,-4],[-24,-11],[-15,-12],[-43,-20],[-6,-2],[0,-1],[-11,-2],[-17,4],[-45,10],[-8,-2],[-67,-20],[-36,-17],[-2,-1],[-10,-7],[-1,-1],[-7,-5],[-3,0],[-7,-3],[-1,0],[-6,0],[-12,1],[-16,3],[-28,0],[-3,0],[-10,-1],[-6,-1],[-30,-7],[-3,-1],[-3,-1],[-15,-15],[-4,-4],[-4,-1],[0,-1],[-6,-6],[-10,-11],[-6,-10],[-8,-5],[-9,-1],[-7,0],[-9,0],[-6,-2],[-5,-1],[-6,-3],[-1,-1],[-4,-4],[-7,-6],[-3,-2],[-1,0],[-13,-7],[-24,-9],[-1,0],[-12,-4],[-52,-7],[-13,0],[-13,4],[-3,2],[0,1],[0,1],[-7,7],[-3,1],[-2,0],[-29,-24],[-19,-26],[1,-6],[1,-5],[-5,-12],[-6,-7],[-4,-4],[-11,-4],[-33,-15],[-8,-1],[-33,-12],[-11,-5],[-7,-6],[-7,-14],[-2,-4],[1,-1],[-5,-5],[-8,-2],[-56,2],[-11,6],[-26,-9],[-71,-2],[-37,0],[-12,1],[-77,-57],[-2,0],[-147,-3],[-91,-6],[-60,2],[-14,2],[-40,-4],[-11,-2],[-17,-6],[-9,-2],[-15,-4],[-7,-2],[-5,0],[-7,0],[-33,1],[-8,1],[-22,5],[-3,2],[-6,8],[-1,3],[-7,8],[-11,6],[-37,16],[-60,13],[-15,2],[-18,-3],[-44,-15],[-78,-9],[-32,-23],[-7,-6],[-5,-4],[-9,-9],[-6,-8],[-15,-20],[-49,-43],[-15,-14],[-4,-4],[-4,-3],[-6,-4],[-19,-4],[-26,-7],[-41,-5],[-40,6],[-16,3],[-2,1],[1,3],[-2,1],[-15,-1],[-9,-2],[-35,-15],[-11,-6],[-35,-7],[-17,0],[-15,1],[-14,-2],[-29,-7],[-23,-8],[-8,-4],[-6,-4],[-12,-12],[-11,-9],[-1,0],[-2,-1],[-7,-3],[-17,-3],[-34,-7],[-8,-1],[-19,0],[-10,2],[-15,8],[-12,10],[-8,4],[-22,4],[-21,0],[-25,-1],[-41,-11],[-34,10],[0,1],[-6,3],[-66,1],[-25,-2],[-4,-1],[-11,-2],[-5,-1],[-12,1],[-65,12],[-15,9],[-2,2],[-2,2],[-6,1],[-7,0],[-11,-5],[-8,-8],[-12,-12],[-40,-31],[-6,-2],[-16,3],[-24,17],[-8,21],[-14,-4],[-23,2],[-7,5],[-33,13],[-5,-1],[-4,-3],[-5,-3],[-10,10],[-2,3],[-32,22],[-6,4],[-14,3],[-24,16],[-15,10],[-8,20],[-13,35],[-13,34],[-2,34],[0,2],[-2,3],[-19,20],[-14,15],[-5,4],[-7,2],[-11,-1],[-22,-5],[-4,0],[-4,0],[-40,7],[-5,3],[-2,2],[-52,11],[-10,-6],[-3,-2],[-16,-9],[-8,-2],[-7,-2],[-14,0],[-7,2],[-20,12],[-11,8],[-8,7],[-54,18],[-53,9],[-53,-3],[-5,-2],[-11,-6],[-23,-13],[-32,-37],[-4,-7],[1,-6],[4,-6],[8,-10],[3,-31],[-2,-9],[-3,-10],[-5,-7],[-40,-37],[-4,-3],[0,-1],[-22,-13],[-5,-3],[-5,-4],[-5,-12],[-2,-5],[-19,-48],[-4,-10],[-58,-59],[-110,-42],[-1,-16],[8,-47],[13,-32],[2,-32],[-31,-21],[-5,-27],[-21,-31],[-21,-15],[-61,6],[-24,-8],[-18,-22],[-17,-22],[-28,-25],[-11,-13],[9,-32],[17,-25],[11,-29],[-1,-30],[-22,-16],[11,-27],[5,-30],[14,-25],[-2,-30],[-23,-12],[-25,-22],[-17,-55],[-23,-9],[-2,-27],[-21,-16],[14,-22],[-3,-14],[-3,-14],[-22,-23],[-26,7],[-23,-11],[-5,-29],[-52,-6],[-21,-20],[-38,-5],[-51,-22],[-3,-10],[2,-7],[14,-15],[12,-12],[0,-11],[-4,-12],[-7,-3],[-23,0],[-36,-15],[-45,-24],[-56,-30],[-39,-35],[-2,-3],[-30,-35],[-19,-29],[0,-46],[11,-31],[33,-23],[12,-6],[55,-17]],[[27598,58830],[61,-60],[11,-31],[-8,-23],[-13,-7],[-24,-1],[-14,16],[-25,13],[-39,10],[-63,8],[-78,11],[-29,11],[-38,13],[-27,28],[-39,-10],[-37,-11],[-28,17],[-34,-20],[-53,-8],[-26,-7],[-55,-31],[-20,-30],[-6,-37],[-8,-36],[-25,-19],[-28,7],[-38,8],[-22,20],[-24,11],[-24,18],[-39,10],[-32,9],[-33,5],[-42,-2],[-33,-6],[-28,-7],[-34,-15],[-30,-19],[-29,-34],[-35,-45],[2,-18],[17,-54],[8,-71],[0,-39],[-2,-50],[-29,-40],[-35,-25],[-31,-26],[-21,-21],[-40,-31],[-25,-9],[-51,-24],[-31,-16],[-39,-15],[-28,-11],[-26,-15],[-30,-14],[-39,-28],[-23,-15],[-42,-24],[-26,-16],[-31,-9],[-41,-13],[-38,-11],[-30,-2],[-9,0],[-70,9],[-10,1],[-30,5],[-16,16],[-18,18],[-63,-11],[-10,8],[-54,43],[-72,24],[-24,87],[37,27],[-8,45],[-1,3],[-9,3],[-13,-14],[-49,9],[-1,14],[42,21],[46,34],[28,14],[38,18],[35,17],[37,21],[26,21],[35,22],[34,9],[26,11],[44,25],[32,19],[40,22],[38,24],[31,15],[24,-12],[44,-19],[35,-7],[40,6],[49,6],[38,6],[24,8],[37,23],[13,25],[9,27],[3,31],[0,29],[-2,33],[4,38],[54,84],[20,26],[20,24],[18,25],[15,21],[19,33],[21,45],[20,48],[3,37],[2,41],[11,26],[6,36],[15,45],[7,27],[15,34],[17,20],[13,15],[22,10],[20,22],[16,26],[11,46],[17,22],[24,24],[51,24],[29,10],[-10,6],[-22,14],[9,35],[25,17]],[[26777,59606],[30,4],[28,10],[48,35],[16,13],[8,7],[10,8],[22,15],[19,8],[13,6],[20,12],[24,9],[25,-1],[34,-6],[26,-3],[24,4],[36,14],[22,8],[19,20],[14,30],[6,22],[2,20],[-1,17],[4,11],[16,37],[20,38],[20,23],[20,35],[6,19],[4,13],[-5,31],[-2,57],[-2,55],[6,55],[3,16],[2,36],[-3,29],[1,30],[9,16],[5,16],[3,19],[-14,78],[-15,42],[-3,18],[-3,14],[19,42],[7,19],[4,25],[-4,11],[-5,14],[-18,20],[-18,26],[2,5],[9,19],[3,28],[-7,27],[48,88],[1,12],[-1,11],[7,99]],[[63985,52037],[-46,6],[-531,-1],[-234,-1],[-172,0],[-255,0],[-83,-12],[-37,-1],[-79,12],[-307,-1],[-580,-1],[-2700,-7],[-511,-2],[-1441,-4],[-276,0],[-248,-1],[-579,-1],[-184,-6],[-184,0],[-46,0],[-46,0],[-26,0],[-26,0],[-26,0],[-27,0],[-32,0],[-24,0],[-5,0],[-28,0],[-103,0],[-29,1],[-69,0],[-123,0],[-55,-1],[-56,0]],[[54817,52017],[-18,27],[-10,40],[-29,21],[-40,26],[-12,26],[-8,27],[-26,21],[-11,27],[-30,20],[-18,32],[-25,3],[-26,0],[-31,3],[-26,-17],[-33,-13],[-39,15],[-50,-13],[-26,-8],[-27,-29],[-48,-19],[-29,-8],[-21,20],[-27,-3],[-40,-10],[-24,-17],[-34,-18],[-19,-18],[-61,27],[2,28],[-12,25],[-3,28],[-16,28],[-7,25],[12,34],[-15,33],[0,29],[-23,27],[-27,20],[-22,26],[-36,9],[-28,-4],[-32,10],[-32,11],[-9,29],[-6,33],[-10,30],[-16,24],[-26,5],[-18,22],[-17,23],[-34,6],[-41,-6],[-30,8],[-8,29],[15,26],[-20,23],[-20,21],[-14,25],[-30,16],[-12,36],[-33,45],[-26,35],[-36,-1],[-33,-12],[-35,-3],[-26,8],[-25,28],[-33,17],[-25,6],[-16,32],[-5,31],[-26,21],[-25,10],[-21,20],[-24,1],[-25,1],[-22,-25],[-38,1],[-16,-23],[-14,-22],[-28,-4],[-31,1],[-35,9],[-26,-24],[-25,19],[-22,45],[-18,19],[-29,25],[-30,-4],[-26,1],[-76,25],[-20,16],[-27,14],[-24,34],[-25,21],[-25,19],[-33,20],[-26,16],[-25,4],[-28,28]],[[52411,53312],[-22,35],[-11,30],[-8,30],[-17,20],[-23,22],[-25,32],[-13,29],[5,30],[8,25],[12,43],[5,34],[2,33],[5,37],[-4,29],[-15,24],[-14,25],[-26,16],[-23,11],[-25,12],[-18,19],[-24,18],[-22,22],[-20,24],[-23,18],[-10,37],[-3,30],[-23,20],[-14,16],[-4,3],[-20,17],[-6,30],[10,27],[3,39],[-7,32],[-16,25],[-4,27],[4,26],[-9,25],[-13,31],[-10,32],[-21,19],[-20,17],[-19,17],[-17,20],[-15,26],[-31,12],[-27,12],[-24,18],[-22,20],[-16,21],[-19,18],[-27,2],[-26,24],[-23,25],[-16,31],[-17,20],[-15,20],[-11,26],[-29,20],[-17,21],[-12,31],[-22,21],[-22,18],[-21,14],[-24,17],[-28,10],[-23,17],[-24,9],[-26,10],[-33,-6],[-29,5],[-22,14],[-24,-12],[-23,-17],[-23,10],[-28,-7],[-28,-4],[-29,11],[-24,7],[-18,19],[-29,-8],[-24,5],[-25,7],[-21,14],[-26,1],[-21,-14],[-24,-20],[-27,-2],[-24,17],[-25,6],[-10,25],[-15,-23],[-24,-9],[-27,9],[-27,6],[-29,-9],[-29,-8],[-19,-25],[-9,-26],[-15,-22],[-17,-27],[-15,-23],[-24,-19],[-19,-27],[-22,-21],[-15,-24],[-22,-18],[-25,6],[-25,5],[-26,11],[-25,2],[-25,14],[-1,29],[-26,17],[-24,11],[-20,15],[-15,26],[-30,9],[-32,11],[-27,4],[-26,8],[-27,-16],[-14,-35],[-27,-7],[-21,21],[-1,33],[-10,31],[-28,2],[-11,29],[-21,17],[-16,21]],[[50011,54932],[27,9],[27,6],[26,7],[16,24],[24,10],[20,22],[0,26],[-2,29],[-6,37],[19,19],[29,1],[16,24],[15,21],[18,39],[14,30],[18,18],[24,15],[21,20],[30,8],[36,6],[9,27],[27,15],[28,4],[28,4],[14,23],[14,26],[14,41],[17,24],[24,19],[24,3],[50,9],[19,21],[5,30],[11,30],[3,40],[-21,28],[-15,27],[-14,25],[-28,13],[-22,21],[-24,12],[-27,32],[14,27],[30,39],[30,11],[30,13],[21,21],[-15,37],[-4,26],[-11,27],[18,27],[23,18],[24,5],[41,10],[-22,18],[-33,19],[-27,-4],[-34,-5],[-23,-11],[-28,11],[-29,11],[-3,29],[14,37],[25,31],[-9,28],[-3,38],[-6,54],[3,34],[17,36],[19,31],[21,39],[18,21],[28,4],[27,-8],[5,28],[-19,25],[-27,13],[-27,6],[-10,28],[-16,26],[7,25],[-13,22],[-27,-5],[-27,-4],[-32,-1],[-17,22],[-21,17],[-12,23],[-16,22],[-27,12],[-25,12],[-24,15],[-27,11],[-25,5],[-32,-12],[-30,-5],[-26,0],[-26,5],[-35,8],[-15,2],[-11,2],[-44,0],[-32,21],[4,34],[1,27],[10,47],[1,26],[-37,13],[-29,24],[-24,9],[-37,7],[-35,24],[-25,-1],[-28,-3],[-31,7],[-17,22],[-28,24],[-19,45],[-22,13],[-46,10],[-36,13],[-24,23],[-16,28],[-24,22],[-10,25],[-5,29],[1,40],[-7,36],[-22,15],[-25,13],[-22,36],[20,21],[12,34],[22,24],[21,24],[-14,29],[-20,15],[4,32],[22,28],[17,33],[12,38],[25,36],[-1,30],[10,27],[6,28],[6,42],[-7,41],[12,41],[20,46],[-20,32],[-18,35],[-17,26],[-30,4],[17,32],[15,29],[-5,47],[-30,9],[-42,21],[-30,14],[-13,29],[-9,46],[-3,52],[-18,22],[-18,28],[-28,0],[-49,6],[-9,44],[-26,28],[-16,23],[-38,57],[-27,33],[-20,19],[-29,-7],[-26,-23],[-34,14],[-24,45],[-35,20],[-30,-4],[-29,-13],[-28,24],[-6,28],[-28,0],[-27,-11],[-17,30],[-9,25],[-43,1],[-25,14],[-28,28],[-31,42],[-27,4],[-37,-6],[-32,8],[-49,14],[-33,0],[-39,-9],[-26,0],[-29,7],[-18,45],[-25,28],[-27,16],[-14,-24],[-12,-26],[-18,-31],[-21,-20],[-24,-15],[-13,-24],[5,-34],[6,-40],[-37,-16],[-28,5],[-4,27],[-17,25],[-23,-10],[-26,-26],[-33,-2],[-40,13],[-25,32],[-1,36],[22,24],[30,19],[14,32],[-47,-14],[-21,26],[-20,23],[-31,18],[-31,25],[16,29],[8,25],[1,27],[11,27],[-38,3],[-35,10],[-30,16],[-28,6],[-55,6],[-1,27],[-3,32],[1,32],[-3,28],[-19,19],[-23,11],[-24,23],[-13,25],[10,32],[-8,31],[-29,13],[-28,10],[-18,-26],[-7,-30],[-20,-18],[11,-25],[5,-28],[3,-39],[3,-32],[-11,-33],[-29,2],[-24,2],[-35,-2],[-19,21],[-33,3],[-35,12],[-22,15],[-38,20],[-24,5],[-37,-4],[-27,5],[-27,-2],[-22,-12],[-27,7],[-4,27],[7,33],[16,28],[-14,22],[-33,-3],[-25,-2],[-32,8],[-40,-3],[-26,-3],[-23,19],[-29,15],[-34,3],[-50,20],[-5,27],[-21,36],[4,29],[-13,23],[8,29],[13,27],[-13,22],[-20,27],[-18,24],[-29,23],[-27,-4],[-28,7],[-32,-22],[-28,-14],[-89,71],[-23,21],[-27,5],[-27,-2],[-29,1],[-23,10],[-23,15],[-27,13],[-26,11],[-18,25],[-19,19],[10,31],[21,20],[28,3],[13,23],[-2,29],[-16,22],[4,27],[8,26],[5,28],[13,27],[1,27],[-10,33],[22,13],[24,3],[23,14],[28,24],[53,-4],[28,13],[18,25],[-12,37],[-35,14],[-45,21],[-24,29],[-18,41],[-24,15],[-5,34],[22,19],[26,21],[34,13],[-8,29],[-24,17],[-28,7],[-30,15],[-26,16],[-28,13],[-27,9],[-10,27],[-21,24],[-27,22],[-13,25],[-25,-4],[-28,8],[-20,22],[-25,22],[-15,21],[-19,18],[24,26],[30,13],[22,16],[1,42],[-7,31],[2,28],[5,29],[12,30],[-9,31],[6,40],[-2,26],[-25,18],[5,39],[16,20],[21,15],[17,21]],[[46979,65176],[313,-236],[29,-22],[139,-104],[352,-265],[1606,-1210],[1637,-1243],[22,-17],[24,-18],[1104,-847],[371,-285],[536,-410],[21,-17],[1466,-1124],[993,-761],[2381,-1857],[152,-119],[67,-53],[1228,-961],[1057,-828],[883,-696],[316,-248],[874,-688],[407,-321],[256,-202],[73,-57],[621,-489],[78,-61]],[[42194,63066],[-36,-9],[-6,-1],[-52,-13],[-29,-6],[-39,-8],[-3,-1],[-8,3],[-6,5],[-8,-1],[-40,-9],[-7,-1],[-38,-18],[-4,-2],[-35,7],[-3,1],[-8,-7],[-1,-1],[-4,-2],[-10,-1],[-9,0],[-3,-2],[-24,-34],[-1,-6],[-2,-9],[-1,-2],[-2,-3],[-1,-1],[-15,-6],[-10,-4],[-41,-10],[-34,-5],[-2,1],[-67,9],[-22,1],[-54,2],[-39,0],[-9,0],[-12,0],[-1,0],[-5,-3],[-16,-12],[-33,-5],[-20,-1],[-15,0],[-5,-3],[-20,-11],[-22,7],[-3,0],[-33,-2],[-29,-3],[-7,0],[-1,0],[-27,15],[-5,1],[-30,4],[-5,1],[-34,-1],[-30,3],[-25,-8],[-1,-1],[-2,1],[-25,12],[-51,10],[-49,11],[-3,0],[-42,4],[-34,8],[-2,0],[-36,12],[-36,-3],[-14,-8],[-16,-9],[-29,-8],[-1,0],[-13,-4],[-6,-3],[-4,-6],[-13,-13],[-34,-29],[-32,-25],[-15,-4],[-18,-1],[-6,0],[-48,-4],[-4,-3],[-12,-11],[-33,-29],[-3,-2],[-6,-4],[-8,-2],[-13,2],[-2,0],[-1,0],[-88,15],[-3,2],[-5,4],[0,1],[-10,-1],[-26,-2],[-18,-2],[-11,-2],[-9,-4],[-6,-5],[-36,-36],[-2,-3],[-7,-9],[-2,-4],[-28,-34],[-4,-1],[-1,0],[-63,-19],[-14,-2],[-1,0],[-7,-1],[-48,-1],[-3,0],[-1,0],[-15,9],[-8,3],[-6,1],[-19,5],[-31,3],[-18,0],[-10,-2],[-1,0],[-10,-5],[-15,-9],[-4,-3],[-1,-1],[-55,-32],[-1,-1],[-8,-3],[-10,0],[-9,3],[-1,0],[-35,-2],[-68,-9],[-19,-3],[-7,-3],[-5,-3],[-13,-15],[-6,-5],[-13,-7],[-1,-1],[-4,-1],[-27,-10],[-40,-18],[-2,1],[-19,2],[-12,4],[-1,1],[-20,12],[-15,4],[-44,-3],[-64,-7],[-36,-10],[-1,0],[-6,-1],[-17,4],[-4,1],[-28,2],[-33,6],[-28,-1],[-49,-14],[-9,-4],[-9,-6],[-3,-2],[-21,-15],[-48,-17],[-14,-1],[-9,3],[-3,1],[-25,6],[-3,3],[-4,10],[-3,10],[-3,10],[-6,9],[-2,3],[-10,3],[-20,7],[-25,2],[-38,-3],[-29,-3],[-9,0],[-1,0],[-4,1],[-28,6],[-9,4],[-1,0],[-22,11],[-6,2],[-28,-1],[-21,-3],[-4,1],[-4,4],[0,4],[3,7],[1,7],[-8,14],[-10,9],[-9,4],[-10,2],[-15,-5],[-37,-5],[-22,-4],[-14,-11],[-35,-26],[-23,-16],[-16,-8],[-1,-1],[-5,-3],[-14,-8],[-10,-7],[-6,-3],[-25,-7],[-19,-6],[-12,-7],[-12,-11],[-34,-50],[-3,-6],[-2,-21],[-1,-14],[-1,-1],[-3,-3],[-125,-66],[-3,1],[-30,19],[-8,3],[-15,5],[-6,0],[-68,-6],[-10,-2],[-29,-13],[-62,-13],[-8,0],[-10,1],[-39,6],[0,1],[-29,27],[-12,6],[-10,-3],[-20,-9],[-9,-7],[-4,-4],[2,-3],[11,-16],[2,-7],[-4,-5],[-9,-2],[-16,2],[-19,3],[-16,-4],[-1,-1],[-3,-3],[-8,-8],[5,-15],[3,-5],[3,-13],[0,-7],[-2,-4],[-4,-2],[0,-1],[-15,-5],[-13,-11],[-1,-1],[-44,-58],[-24,-25],[-6,-4],[-1,0],[-32,-13],[-7,-5],[-1,-1],[-6,-7],[-6,-15],[-1,-2],[-13,-18],[-4,-4],[-3,-1],[-22,4],[-10,0],[-3,-1],[-1,0],[-1,-1],[-5,-4],[-7,-9],[-4,-4],[-4,-6],[-7,-18],[-8,-1],[-53,-4],[-8,0],[-27,6],[-4,0],[-53,4],[-46,-7],[-22,-8],[-30,-18],[-3,-3],[-37,-9],[-8,-1],[-9,1],[-2,0],[-57,-1],[-19,-4],[-2,-1],[-8,-2],[-8,-5],[-4,-3],[-1,-5],[-1,-6],[0,-1],[10,-26],[6,-20],[0,-11],[-3,-5],[-26,-43],[-7,-7],[-12,-5],[-9,-1],[-32,3],[-1,0],[-15,0],[-52,-10],[-2,-1],[-1,0],[-6,-2],[-7,-4],[-3,-3],[-6,-3],[-8,-1],[-20,0],[-3,0],[-14,2],[-16,2],[-3,0],[-54,1],[-3,0],[-25,-4],[-14,-3],[-1,0],[-1,-1],[-22,-10],[-6,-5],[-4,-8],[0,-1],[-9,-43],[-4,-10],[-5,-5],[-8,-5],[-1,-1],[-18,-6],[-7,-3],[-4,-4],[-2,-3],[0,-4],[0,-2],[5,-15],[4,-15],[0,-3],[0,-7],[0,-24],[-3,-15],[-3,-5],[-11,-12],[-13,-13],[4,-12],[22,-46],[5,-4],[15,-2],[21,-2],[4,-7],[0,-7],[-3,-7],[-3,-3],[-12,-11],[-12,-4],[-1,-1],[-32,-4],[-17,-11],[-2,-3],[-2,-5],[0,-7],[1,-3],[10,-16],[0,-1],[2,-10],[-3,-14],[-1,-2],[0,-2],[-10,-23],[-4,-5],[-4,-5],[-8,-3],[-1,0],[-12,-1],[-17,2],[-1,0],[-7,0],[-16,-8],[-15,-7],[-3,-4],[-2,-4],[-9,-46],[-2,-7],[-8,-16],[-16,-30],[0,-4],[11,-18],[1,-1],[0,-16],[-4,-14],[0,-2],[-1,-1],[-2,-4],[-4,-3],[-5,-2],[-10,1],[-1,0],[-32,8],[-11,2],[-7,0],[-10,-4],[-42,-30],[-46,-32],[-1,-1],[-71,-37],[-6,-2],[-8,-1],[-1,0],[-1,1],[-14,7],[-12,2],[-24,0],[-7,1],[-107,-10],[-4,-1],[-1,0],[-7,-5],[-4,-4],[-2,-7],[-1,-6],[-4,-4],[-4,-3],[-20,-14],[-5,-2],[-31,-12],[-4,-8],[-24,-42],[-1,-3],[-6,-6],[-7,-5],[-10,-4],[-41,-10],[-17,-1],[-2,0],[-39,2],[-7,-1],[-10,-4],[-1,0],[-12,-8],[-14,-6],[-1,-1],[-36,-5],[-1,0],[-39,-3],[-1,0],[-16,-2],[-10,-3],[-4,-8],[-37,-9],[-27,-8],[-2,-1],[-11,-9],[-4,-3],[0,-1],[-69,-28],[-7,-2],[-21,-6],[-6,-1],[-16,6],[-1,1],[-27,-4],[-8,-2],[-26,-20],[-11,-10],[-68,-69],[-4,-3],[-2,-1],[-6,-4],[-6,-4],[-2,-6],[-15,-42],[-9,-25],[-31,-15],[-3,-2],[-9,9],[-1,0],[-13,6],[-25,-1],[-4,-1],[-1,0],[-8,0],[-42,2],[-5,1],[-16,-9],[-8,-2],[-10,-4],[-8,1],[-19,2],[-14,-9],[0,-1],[-5,0],[-19,-4],[-33,4],[-2,0],[-3,1],[-28,9],[-35,-2],[-8,0],[-19,-4],[-4,-4],[-6,-2],[-30,-12],[-28,-13],[-21,16],[-26,18],[-12,-4],[-12,-4],[-25,-4],[-3,-13],[-2,-10],[-3,-10],[-9,-27],[-27,-2],[-20,21],[-27,-3],[-19,-27],[-4,-9],[-2,-7],[-6,-15],[-11,-27],[-26,-9],[-2,-1],[-7,-6],[-10,-9],[-3,-3],[-26,-20],[-2,-1],[-21,-18],[-33,-18],[-25,-6],[-27,-16],[-30,-11],[-5,0],[-24,0],[-10,-24],[-2,-5],[-7,-21],[-14,-24],[0,-2],[-13,-8],[-9,-7],[-1,0],[-12,-20],[-4,-9],[0,-3],[0,-21],[-2,-8],[-7,-11],[0,-1],[-1,-1],[-12,-9],[-8,-4],[-1,-1],[-31,-11],[-8,0],[-22,-2],[-3,-1],[-43,-9],[-16,-8],[-44,-26],[-4,-5],[0,-7],[-50,-2],[-2,-8],[-2,-10],[-5,-22],[1,-15],[1,-4],[-2,-15],[-2,-3],[-17,-23],[-9,-12],[-6,-5],[-1,-2],[-9,-4],[-1,0],[-27,-4],[-2,-4],[-11,-23],[-1,-2],[0,-1],[-1,0],[-9,-17],[-13,-26],[-27,-6],[-26,2],[-20,3],[-20,4],[-22,14],[-29,15],[-18,21],[-25,17],[-25,15],[-31,1],[-28,-6],[-25,-8],[-36,-15],[-26,-18],[-26,-20],[-21,-20],[-29,-11],[-25,12],[-31,14],[-28,10],[-28,7],[-22,11],[-24,6],[-23,-17],[-23,-20],[-32,-7],[-22,-23],[-27,-2],[-27,4],[-21,-18],[-25,1],[-26,9],[-24,14],[-23,9],[-78,29],[-38,14]],[[33237,60064],[-15,39],[-60,159],[-127,334],[-89,232]],[[23196,58423],[-29,-18],[-46,12],[-31,5],[-22,-1],[-10,0],[-46,17],[25,24],[1,1],[26,10],[32,8],[12,3],[28,-3],[46,-24],[37,-19],[-23,-15]],[[23678,58431],[-23,3],[-9,21],[10,30],[1,3],[15,-21],[1,-1],[30,-29],[-25,-6]],[[23599,58520],[30,-20],[-6,-7],[-4,-5],[-18,2],[-34,9],[-2,2],[-34,-3],[-13,24],[-5,9],[42,33],[3,2],[4,-3],[1,-1],[14,-10],[22,-32]],[[23340,58609],[6,-2],[19,-8],[24,-11],[31,-15],[19,-18],[2,-5],[1,-3],[-6,-26],[-6,-31],[-39,-13],[-51,-12],[-91,15],[-9,1],[-20,9],[-8,4],[4,15],[12,13],[-2,11],[-9,0],[-3,0],[-1,13],[-1,7],[6,11],[-22,26],[-32,18],[-45,-26],[-29,3],[-19,22],[6,35],[-23,26],[-7,8],[10,12],[50,-20],[5,-2],[34,-17],[36,-1],[56,-12],[50,-9],[25,-8],[27,-10]],[[26121,58569],[-30,-9],[-27,2],[-26,7],[-27,16],[62,52],[27,20],[38,28],[26,21],[29,22],[22,19],[40,28],[12,-31],[-1,-31],[-6,-48],[-13,-37],[-15,-28],[-18,-21],[-35,-4],[-26,-3],[-32,-3]],[[20508,59337],[16,-20],[24,-29],[5,-7],[11,-15],[37,-30],[19,-20],[29,-12],[18,-14],[6,-5],[12,-32],[-3,-47],[-6,-37],[-3,-42],[-4,-58],[16,-24],[8,-13],[32,-57],[19,-31],[30,-38],[30,-36],[27,-43],[37,-42],[33,-28],[19,-36],[28,-18],[22,-29],[24,-30],[24,-37],[-8,-38],[-21,-32],[-35,7],[-28,-35],[-16,-2],[-34,-5],[-33,-4],[-22,-2],[-20,-3],[-25,-3],[-125,221],[-24,44],[-15,21],[-12,10],[-260,204],[-376,165],[-122,84],[-121,30],[-134,32],[-68,97],[-13,12],[-8,9],[-6,7]],[[26777,59606],[-12,7],[-9,25],[-15,12],[-13,10],[-12,-14],[-14,-16],[-29,-37],[-16,-22],[-28,-37],[-47,-46],[-25,-26],[-23,-41],[-44,-50],[-5,-6],[-24,-40],[-14,-46],[-15,-24],[-4,-39],[-9,-29],[-9,-26],[-12,-34],[-11,-40],[-16,-38],[-16,-30],[-16,-24],[-20,-29],[-21,-20],[-16,-27],[-30,-29],[-20,-20],[-47,-37],[-36,-25],[-24,-17],[-31,-23],[-31,-27],[-25,-20],[-40,-32],[-31,-23],[-43,-28],[-31,-17],[-30,-14],[-44,-28],[-44,-22],[-30,-16],[-53,-28],[-36,-19],[-37,-18],[-36,-20],[-24,-27],[-30,-13],[-28,-14],[-55,-25],[-40,-19],[-30,-10],[-25,-2],[-28,8],[-28,10],[-32,13],[-40,12],[-42,19],[-32,8],[-69,17],[-39,26],[-20,19],[-41,12],[-46,-13],[-37,-8],[-24,0],[-28,-8],[-41,-9],[-26,-6],[-25,-10],[-3,-8],[-14,-32],[-1,-9],[-1,-18],[-32,-30],[-15,-8],[-25,-13],[-21,-13],[-30,-20],[-29,-14],[-33,-7],[-24,-9],[-26,-3],[-27,10],[-16,-17],[-16,-17],[-42,-9],[-42,-3],[-58,-1],[-32,5],[-8,2],[-7,0],[-17,0],[-43,7],[-25,0],[-4,0],[-7,2],[-39,8],[-27,16],[33,20],[52,5],[42,15],[18,27],[-1,31],[-4,35],[-2,15],[22,22],[3,4],[6,0],[25,-1],[37,40],[23,9],[-6,20],[-2,4],[-1,3],[-11,31],[-6,8],[-15,19],[-20,-1],[-1,0],[-17,-1],[-20,1],[-27,1],[-31,-15],[-12,-6],[-8,-3],[-38,6],[-52,-11],[-174,-49],[-14,9],[-46,35],[-17,-16],[-9,-11],[-22,-26],[-81,-14],[-5,-11],[-7,6],[-2,2],[-8,12],[-15,26],[-3,4],[-9,5],[-9,5],[-2,1],[-3,2],[-27,11],[-28,51],[-17,13],[-27,6],[-6,1],[-45,-18],[-6,5],[-38,29],[-5,2],[-9,4],[-12,6],[-22,10],[-12,5],[-17,7],[-6,3],[-1,1],[-40,17],[-9,4],[-18,6],[-22,4],[-12,3],[-12,2],[-14,14],[1,4],[1,5],[16,10],[94,13],[19,19],[44,12],[24,17],[31,11],[28,8],[11,4],[3,8],[7,18],[2,6],[3,6],[6,15],[4,2],[20,8],[32,18],[-9,43],[-18,39],[-13,23],[-24,46],[-22,29],[-14,16],[-11,12],[-20,22],[-6,7],[-34,27],[-34,16],[-36,6],[-31,-7],[-26,-12],[-34,-12],[-25,-1],[-30,6],[-59,3],[-35,-10],[-31,-9],[-26,0],[-26,0],[-20,1],[-5,0],[-12,-4],[-21,-9],[-19,-12],[-6,-4],[-54,1],[-4,4],[-18,23],[-9,28],[9,38],[14,28],[15,21],[16,20],[20,22],[0,1],[21,21],[22,33],[43,40],[17,45],[22,31],[29,21],[29,5],[46,-17],[27,-7],[86,32],[68,51],[128,44],[30,-2],[27,28],[2,2],[25,1],[-15,7],[-8,3],[-4,2],[-50,-21],[-62,-5],[-131,-50],[-52,-58],[-49,-5],[-6,0],[-13,11],[-10,10],[-34,6],[-36,-16],[-34,-16],[-16,-11],[-5,-4],[-17,-20],[-23,-30],[-25,-33],[-23,-33],[-4,-5],[-14,-17],[-31,-45],[-21,-29],[-19,-25],[-11,-25],[-5,-10],[-1,-46],[-2,-32],[2,-30],[2,-13],[4,-27],[-5,-25],[-4,-21],[-24,-14],[-27,-6],[-6,-2],[-8,1],[-50,5],[-35,13],[-15,11],[-6,4],[-2,14],[-4,24],[0,14],[1,14],[-6,11],[-5,11],[-2,3],[-6,-30],[-2,-11],[-2,-39],[13,-28],[18,-19],[41,-24],[27,-2],[57,-16],[13,-29],[-10,-26],[-11,-50],[-26,-39],[-16,-19],[-16,-16],[-8,-7],[-8,-4],[-25,-13],[-16,-21],[-10,-12],[-4,-3],[-22,-16],[-31,-28],[-17,-14],[-15,-12],[-7,-7],[-28,-25],[-39,-31],[-38,-12],[0,-30],[-39,-30],[-32,-22],[-28,-35],[-20,-20],[-36,-41],[-24,-26],[-23,-27],[-17,-24],[-11,-26],[-16,-29],[-8,-22],[-2,-5],[-7,-33],[-21,-26],[-35,-16],[-55,-6],[-44,-2],[-29,0],[-33,6],[-35,6],[-30,13],[-25,-11],[-26,10],[8,31],[-19,50],[-31,19],[-23,10],[-47,29],[-20,37],[-29,10],[-31,29],[-19,35],[-33,17],[-39,-18],[-14,-37],[1,-28],[-19,-18],[-36,5],[-25,15],[-13,24],[-24,23],[-37,1],[-27,-7],[-57,-5],[-26,-4],[-42,-3],[-15,2],[-18,3],[-23,10],[-23,25],[-30,13],[-22,20],[-18,24],[-12,31],[-23,19],[-22,13],[-17,41],[-15,39],[-24,15],[-19,25],[-27,27],[-19,18],[-22,14],[-26,30],[-27,36],[-15,23],[-10,29],[-19,25],[-18,19],[-14,26],[-18,32],[-9,45],[0,1],[0,35],[28,4],[15,33],[-7,40],[22,17],[14,29],[12,29],[-7,53],[-32,26],[-29,23],[-32,5],[-27,-4],[5,-38],[-35,38],[-30,14],[-57,56]],[[42707,62303],[-47,-97],[-23,-14],[-19,-19],[-24,-8],[-25,1],[-26,1],[-23,13],[-23,-10],[-14,-23],[-25,-6],[-23,-12],[-21,-20],[-24,-1],[-26,-3],[-18,-19],[-25,0],[-24,-3],[-18,-21],[-24,7],[-25,-9],[-22,-15],[-22,-15],[-26,-2],[-32,-12],[-25,-18],[-20,-19],[-21,-16],[-17,-22],[-1,0],[-14,1],[-5,3],[-3,0],[-74,-9],[-5,-2],[-2,-2],[-3,-7],[-2,-4],[-4,-1],[-9,0],[-10,-2],[-37,-4],[-22,4],[0,1],[-7,8],[-1,0],[-4,-1],[-54,-12],[-5,-1],[-58,-13],[-3,0],[-4,-1],[-2,1],[-69,-39],[-2,-1],[-65,4],[-2,0],[-11,-23],[-4,-8],[-29,4],[-16,3],[-3,-5],[-4,-3],[-33,-25],[-14,-11],[-14,-8],[-11,-4],[-21,-9],[-8,-8],[-30,-3],[-3,-4],[-41,-46],[-1,-1],[-59,-21],[-28,-33],[-5,-5],[-3,-3],[-4,-1],[-13,0],[-5,0],[-8,-3],[-2,-6],[0,-6],[-21,-4],[0,-2],[-4,-23],[-1,-4],[0,-1],[-1,-1],[-41,-31],[-1,-1],[-1,-1],[-15,-44],[-22,-52],[-4,-2],[-6,-3],[-1,0],[-6,-2],[-16,-6],[-8,-5],[-5,-4],[-2,-6],[-1,-1],[0,-2],[-1,-6],[0,-15],[-2,-12],[-8,-28],[-3,-3],[-10,-2],[-7,-2],[-3,-1],[-4,-4],[-4,-7],[-3,-6],[-4,-7],[-12,-25],[-1,-2],[-4,-21],[0,-2],[-19,-20],[-13,-13],[-35,-66],[-3,-8],[-3,-3],[-41,-48],[-4,-6],[-15,-17],[-8,-7],[-29,-18],[-38,-19],[-3,-1],[-1,0],[-2,-1],[-56,-27],[-1,-1],[-24,-35],[-16,-2],[-2,-3],[-8,-21],[-4,-12],[-15,-40],[-2,-3],[-2,-2],[-1,-1],[-7,-2],[-10,-3],[0,-2],[-5,-14],[0,-10],[-2,-4],[-9,-5],[-11,-7],[-4,-5],[-3,-5],[0,-6],[2,-15],[4,-4],[-23,-24],[-15,-18],[0,-1],[-6,-6],[-1,-1],[-14,-13],[-43,-31],[-9,-7],[-37,-27],[-2,-1],[-5,-2],[-13,0],[-5,0],[-9,-3],[-6,-3],[-3,-5],[-17,-26],[-7,-17],[-2,-9],[-14,-29],[-16,-17],[-2,-3],[-34,-35],[-2,-3],[-4,-3],[-20,-8],[-22,-8],[-30,-56],[-2,-11],[2,-7],[3,-4],[6,-7],[4,-5],[2,-5],[0,-1],[-1,-14],[-1,-6],[-3,-3],[-3,-3],[-45,-30],[-24,-25],[-15,-15],[-5,-4],[-1,-1],[-4,-2],[-14,-3],[-9,-6],[-45,-54],[-6,-21],[-2,-33],[1,-9],[2,-20],[-3,-29],[-2,-5],[-5,-9],[-5,-4],[-5,-3],[-18,-9],[-11,-4],[-23,-9],[-14,-6],[-24,-10],[-4,-3],[-36,-42],[-1,-2],[-29,-47],[-7,-12],[-7,-12],[0,-1],[-19,-28],[-4,-4],[-15,-17],[-14,-11],[-4,-7],[-12,-35],[-1,-4],[0,-12],[-5,-7],[-34,-48],[-4,-5],[-2,-2],[-43,-57],[-32,-12],[-8,-3],[-13,-45],[0,-9],[-1,-6],[-1,-3],[-1,-1],[-2,-3],[-32,-34],[-7,-6],[-9,0],[-10,-1],[-6,-1],[-6,-3],[-2,-3],[0,-6],[11,-16],[12,-36],[1,-1],[-1,0],[-15,2],[-5,1],[-2,-1],[-2,0],[-2,-1],[-2,-2],[-3,-4],[-4,-22],[0,-7],[1,-5],[5,-12],[1,-3],[0,-6],[-3,-5],[-4,-3],[-19,-9],[-4,-2],[-10,-4],[-2,0],[-3,-1],[-10,1],[-12,3],[-3,1],[-9,1],[-10,-2],[-1,0],[-4,-3],[-1,0],[-5,-4],[-9,-14],[-2,-8],[0,-1],[-19,-41],[-2,-1],[-2,-1],[-2,0],[-10,0],[-4,-1],[-6,-3],[-5,-2],[-4,-2],[-23,-16],[-6,-6],[-2,-4],[0,-5],[1,-4],[4,-3],[4,-2],[13,-7],[2,-3],[0,-11],[2,-23],[1,-10],[-13,0],[-1,0],[-53,-7],[-2,0],[-9,-1],[-19,-4],[-10,-4],[-1,-1],[-1,-1],[-1,0],[-19,-17],[-6,-7],[-1,0],[0,-1],[-11,-34],[-1,-2],[-7,-10],[-5,-7],[-7,-8],[-14,-15],[0,-6],[1,-2],[5,-2],[21,-2],[10,-4],[2,-1],[4,-2],[5,-4],[2,-3],[0,-14],[-4,-10],[-65,-61],[0,-8],[-1,-5],[-5,-12],[-7,-6],[-7,-5],[-23,-12],[-4,-3],[-4,-4],[-3,-4],[-3,-9],[-4,-22],[-18,-56],[-3,-10],[-6,-14],[-8,-8],[-3,-3],[-5,-4],[-10,-9],[-1,0],[-31,-20],[-11,-10],[-16,-11],[-20,-7],[-2,0],[-1,-1],[-53,-23],[-61,-53],[-4,-4],[1,-74],[0,-12],[-1,-42],[-2,-16],[-2,-3],[-1,-2],[-10,-14],[-17,-15],[-9,-7],[1,-10],[-20,-22],[-3,-4],[-20,-3],[-6,-1],[-9,-7],[-10,-8],[-7,-7],[-16,-19],[-4,-6],[0,-10],[0,-1],[2,-10],[-5,-2],[-14,-6],[-7,-3],[-15,2],[-14,1],[-4,-8],[-4,-6],[-1,-2],[-1,-41],[-3,-67],[-2,-8],[-6,-7],[-14,-4],[-4,0],[-14,4],[-3,1],[-42,-5],[-21,-22],[-10,-26],[-2,-12],[-1,-6],[-4,-20],[-14,-21],[-28,-28],[-6,-6],[-22,-26],[-18,-40],[-10,-10],[-8,-8],[-6,-11],[-3,-6],[-5,-8],[-13,-34],[-17,-21],[-9,-15],[-13,-22],[-3,-29],[0,-1],[-16,-24],[-26,-12],[-7,-3],[-27,-20],[2,-28],[0,-5],[3,-3],[15,-16],[1,-1],[1,0],[24,0],[1,-1],[16,-19],[0,-1],[-19,-20],[-1,-1],[-2,0],[-27,0],[-4,1],[-3,1],[-30,15],[-1,1],[-21,10],[-3,2],[-22,-5],[-3,-1],[0,1],[-29,1],[-27,3],[-4,-2],[-19,-14],[-1,0],[-26,-18],[-7,3],[-17,7],[0,1],[-23,10],[-1,-1],[-23,-21],[-29,-11],[-1,0],[-20,-13],[-1,-1],[2,-16],[1,-11],[2,-23],[1,-6],[6,-33],[-6,-28],[0,-1],[-2,-2],[-23,-23],[-18,-18],[-3,-3],[-6,0],[-18,0],[-5,0],[-27,13],[-11,16],[-5,6],[-2,29],[8,3],[6,3],[10,4],[-2,28],[-7,10],[-12,16],[-28,11],[-29,-9],[-15,-23],[-2,-2],[-9,-29],[-5,-24],[0,-2],[-2,-1],[-2,-1],[-18,-14],[-33,-10],[-36,-10],[-27,-4],[-14,-17],[-3,-4],[23,-21],[24,-20],[21,-24],[-12,-23],[-27,-11],[-27,-3],[-32,-7],[-32,-13],[-19,-17],[6,-13],[6,-13],[31,0],[27,7],[3,1],[29,7],[25,5],[13,-7],[11,-7],[-2,-21],[-1,-10],[7,-15],[7,-14],[25,-15],[14,-7],[6,-3],[7,-4],[6,-2],[28,-11],[18,-21],[15,-37],[4,-17],[0,-1],[3,-18],[-12,-27],[-19,-20],[-1,0],[-2,-1],[-30,-13],[-37,-18],[-4,-2],[-12,-8],[-8,-4],[-43,-21],[-2,-1],[-12,-2],[-36,-23],[-2,-2],[-1,-4],[-2,-17],[-8,-10],[-17,-22],[-2,-4],[-2,-2],[-7,-12],[-1,-8],[7,-22],[8,-13],[4,-5],[6,-5],[7,-22],[-3,-17],[-16,-21],[-21,-32],[-10,-16],[-5,-8],[-6,0],[-14,-2],[-5,3],[-1,1],[-1,0],[-6,3],[-7,5],[-8,7],[-17,3],[-10,-2],[-10,-3],[-20,-20],[-5,-8],[0,-2],[0,-4],[-16,-22],[-6,-2],[-35,-11],[-13,-4],[-3,-2],[-2,-2],[-5,-5],[-1,-5],[-1,-23],[-2,-31],[-6,-13],[-2,-5],[-1,-2],[-4,-12],[0,-7],[0,-7],[-10,-18],[-4,-6],[-12,-21],[-3,-4],[-10,-14],[-1,-2],[-2,-2],[-16,-18],[-5,-6],[-6,-3],[-11,-5],[-9,-4],[-16,2],[-13,2],[-25,9],[-8,2],[-30,5],[-19,-1],[-7,-1],[-24,-10],[-3,-1],[-7,-12],[-8,-12],[-27,-22],[-26,-12],[-7,-4],[-15,-22],[4,-28],[-9,-26],[-16,-14],[-14,-13],[-18,-15],[-2,-2],[-1,0],[-20,-15],[-1,-1],[6,-25],[-1,-2],[-1,-1],[-2,-2],[-4,-1],[-8,-2],[-10,1],[-20,-5],[-5,-1],[-5,-2],[-73,-28],[-34,-16],[-10,-4],[-6,-7],[-15,-13],[-16,-8],[-2,-2],[-11,-9],[-3,-2],[-2,-2],[-17,-7],[-3,1],[-23,-14],[-10,-5],[-1,-1],[-2,-1],[-4,-3],[-5,-6],[-11,-22],[-19,-48],[-4,-10],[0,-7],[1,-7],[1,-4],[3,-20],[0,-5],[-3,-4],[-7,-6],[-6,-4],[-8,-3],[-15,-6],[-6,-4],[-11,-11],[-2,-2],[-3,-3],[0,-5],[0,-1],[6,-14],[0,-1],[4,-4],[-1,-3],[-2,-7],[-2,-2],[-1,-1],[-6,-6],[-4,-4],[-1,-1],[-3,-2],[-13,-8],[-22,-10],[-22,-20],[-25,-33],[-1,-4],[-1,-5],[0,-3]],[[36541,55909],[-504,492],[-11,11],[-638,625],[-242,237],[-435,427],[-743,729],[-77,75]],[[33891,58505],[-95,82],[-32,29],[-30,81],[-2,4],[-29,78],[-62,168],[-27,70],[-19,52],[-120,320],[-25,68],[-41,108],[-58,155],[-1,5],[-11,26],[-34,95],[-10,29],[-21,56],[-37,133]],[[50011,54932],[-26,0],[-23,10],[-22,12],[-25,12],[-31,14],[-26,7],[-26,3],[-16,20],[-14,22],[10,41],[-2,36],[-24,17],[-19,22],[3,34],[3,39],[-20,29],[-23,13],[-27,8],[-30,22],[-29,16],[-22,32]],[[49622,55341],[-19,18],[30,16],[-2,26],[-23,20],[-2,33],[2,40],[-38,17],[-37,-5],[-35,4],[-29,39],[-22,18],[-24,-3],[-44,12],[-21,30],[-32,25],[-34,6],[-29,-5],[-18,36],[-37,23],[-33,7],[2,35],[19,25],[10,34],[6,32],[-9,26],[-142,50],[-58,20],[-13,25],[1,42],[-18,17],[-24,-6],[-27,-9],[-16,-25],[-46,6],[-24,3],[-27,0],[-37,-17],[-41,-17],[-40,27],[-1,27],[2,29],[-3,26],[-2,34],[-16,43],[-5,28],[-32,1],[-48,-5],[-27,12],[-36,21],[-19,52],[-10,31],[-34,9],[-16,-5],[-16,-4],[-24,-5],[-50,-51],[-33,-5],[6,44],[1,38],[-18,18],[-46,-8],[-28,27],[-27,-4],[-41,-11],[-37,-11],[-36,-42],[-36,-12],[-22,-30],[-23,-53],[-26,42],[-23,11],[-37,25],[-25,19],[-37,-8],[-27,-10],[-24,9],[-36,28],[-25,6],[-27,15],[-17,27],[-11,35],[-15,24],[-23,21],[-20,20],[-26,40],[-24,13],[-27,5],[-32,6],[-19,18],[-39,29],[-14,41],[-23,22],[-8,30],[4,31],[-28,10],[-29,-10],[-164,-21],[-18,23],[-43,-6],[-28,-8],[-33,-24],[-16,-22],[-31,-19],[-37,-9],[-36,-11],[-47,-38],[3,-41],[-10,-46],[-2,-33],[28,-27],[-17,-29],[-13,-23],[-20,-17],[-17,-22],[-18,-20],[-21,-23],[-17,-20],[-22,-18],[-23,-9],[-25,-10],[-28,-17],[-20,-25],[-26,1],[-26,-1],[-33,-6],[-22,-17],[-22,-25],[-3,-3],[-16,-14],[-41,-8],[-37,4],[-36,12],[-3,0],[-28,2],[-31,-8],[-36,-14],[-23,-19],[-20,-35],[-17,-29],[-28,-25],[-24,-26],[21,-39],[20,-17],[8,-27],[10,-31],[7,-26],[-29,-110],[-33,-2],[-25,-9],[-21,-24],[-32,-43],[-18,-19],[-33,-11],[-45,-1],[-34,5],[-26,1],[-26,-10],[-29,-2],[-26,7],[-34,-34],[-24,-52],[-22,-26],[-38,3],[-35,26],[-43,13],[-32,-5],[-36,-14],[-31,-27],[-26,-17],[-43,-7],[-47,5],[-41,-5],[-26,-25],[-5,-1],[-22,-3],[-28,-6],[-30,-23],[-15,-50],[-3,-10],[-15,-24],[-23,-9],[-27,-2],[-18,2],[-10,1],[-24,-9],[-31,-17],[-31,10],[-24,-10],[-17,-21],[-26,-19],[-31,-7],[-22,-20],[-28,-6],[-19,22],[-25,-2],[-24,-6],[-25,-5],[-21,-15],[-24,-12],[-25,-4],[-23,-9],[-27,-3],[-5,-28],[-16,-22],[-30,5],[-27,26],[-39,13],[-24,2],[-22,17],[-31,6],[-24,27],[-6,40],[-26,13],[-27,-2],[-44,10],[-28,-7],[-13,-26],[15,-22],[-17,-17],[-1,-2],[-33,-6],[-20,-25],[-24,-24],[-26,11],[-35,43],[-31,10],[-15,27],[-14,27],[-15,30],[-27,2],[-23,10],[-24,3],[-27,-8],[15,-35],[2,-29],[-25,-12],[-22,-26],[-27,-5],[-29,-14],[-40,-3],[-24,3],[-23,10],[-29,-8],[-30,-5],[-27,-17],[-32,-11],[-27,-1],[-20,16],[-30,14],[-21,14],[-32,-2],[-32,10],[-24,9],[-27,4],[-24,4],[-27,-17],[-25,5],[-23,-8],[-49,11],[-30,11],[-6,27],[-16,21],[-35,11],[-27,18],[-34,27],[-27,28],[-28,28],[-23,29],[-37,6],[-30,6],[-29,22],[-33,20],[-41,16],[-23,12],[-23,14],[-34,17],[-34,9],[-29,14],[-24,14],[-4,3],[-14,15],[-28,6],[-19,22],[-23,11],[-26,6],[-23,11],[-20,17],[-24,13],[-26,19],[-23,12],[-21,17],[-31,0],[-26,-3],[-25,-16],[-21,-19],[-17,22],[-23,11],[-26,14],[-29,9],[-24,-12],[-28,-1],[-27,7],[-12,29],[-5,27],[-1,2],[-11,23],[-7,26],[-13,23],[-24,11],[-19,-19],[-24,-2],[-25,10],[-25,12],[-24,10],[-24,2],[-23,13],[-26,0],[-20,-14],[-24,-4],[0,-34],[-25,-7],[-4,-1],[-17,-22],[-5,-36],[-10,-24],[18,-20],[-9,-28],[-24,-3],[-24,-22],[-27,-2],[-3,-33],[-18,-18],[-18,-29],[-36,-13],[-16,-23],[-22,-14],[-18,-16],[-27,-6],[-25,-21],[-18,-18],[-11,-24],[-32,-19],[-18,-22],[-16,-21],[-26,1],[-32,0],[-27,4],[-26,8],[-28,4],[-22,10],[-23,11],[-20,16],[-26,6],[-26,8],[-26,-2],[-25,1],[-23,-8],[-22,14],[-24,10],[-21,14],[-14,22],[-19,18],[-22,14],[2,28],[-25,-4],[-12,-23],[-24,-9],[-25,5],[-8,-26],[9,-25],[15,-23],[-17,-21],[-1,-26],[-21,-15],[-26,-20],[6,-27],[14,-21],[6,-27],[-21,-14],[-9,-25],[-14,-22],[-25,-4],[-17,21],[-27,-1],[-23,-11],[4,-31],[-18,-18],[-26,-2],[-26,-6],[-24,2],[-24,4],[-21,15],[-34,3],[-9,-25],[-28,0],[-25,-5],[-26,-3],[-17,-19],[-26,18],[-22,21],[-31,-2],[-23,11],[-23,-11],[4,-26],[-15,-26],[13,-25],[-2,-30],[-21,-16],[-22,-13],[-5,-2],[-21,-7],[-27,-2],[-32,9],[-29,-24],[-19,-20],[-3,-28],[-19,-19],[-9,-25],[1,-27],[21,-18],[-16,-20],[-31,17],[-25,9],[-27,9],[-26,9],[-32,4],[-22,16],[-17,22],[-20,19],[-18,18],[-13,-26],[-20,-20],[-9,-24],[16,-24],[13,-24],[-19,-30],[-18,-19],[-23,13],[-25,9],[-26,17],[-30,5],[-25,4],[-27,5],[-27,5],[-25,-6],[-35,-3],[-27,-4],[-12,-24],[-24,-18],[-11,-27],[-30,-7],[-27,-5],[-21,23],[-28,7],[-24,-8],[-19,-18],[-25,2],[-25,-5],[-25,7],[-21,-18],[22,-21],[8,-30],[14,-22],[3,-29],[7,-27],[16,-25],[15,-26],[27,-12],[3,-8],[7,-19],[3,-27],[20,-20],[7,-28],[20,-19],[15,-24],[14,-23],[17,-25],[24,-12],[22,-41],[15,-36],[21,-25],[12,-23],[24,-20],[13,-26],[15,-37],[16,-22],[-22,-17],[-27,-8],[-3,-26],[14,-24],[4,-28],[-19,-18],[-25,-11],[-26,-8],[-32,-18],[-25,-11],[-29,-8],[-24,11],[-19,17],[-22,18],[-8,30],[-15,26],[-24,10],[-28,18],[-22,16],[-21,23],[-4,30],[-22,21],[-14,23],[-20,16],[-25,16],[-24,5],[-26,-12],[-23,-13],[-16,25],[-21,15],[0,1],[-9,32],[-24,2],[-32,-4],[-29,5],[-19,18],[-27,-10],[-22,17],[-23,10],[-26,12],[-23,-11],[-30,-2],[0,-29],[-12,-23],[4,-27],[-16,-27],[14,-35],[-8,-27],[27,-9],[14,-23],[17,-23],[13,-22],[19,-20],[26,-14],[34,-11],[22,-23],[4,-32],[-21,-42],[-18,-21],[-14,-27],[-22,-16],[-19,-32],[-19,-33]],[[39131,53828],[-37,30],[-488,391],[-9,8],[-75,54],[-31,26],[-34,28],[-20,17],[-20,16],[-68,56],[-21,19],[-40,31],[-25,21],[-37,30],[-36,30],[-48,39],[-55,45],[-50,42],[-54,43],[-52,38],[-195,156],[-238,192],[-834,670],[-123,99]],[[19352,56205],[14,-73],[-36,10],[-28,10],[-51,7],[-46,-18],[-47,15],[-23,18],[-14,25],[-23,18],[50,18],[9,26],[22,24],[32,10],[31,30],[66,-8],[20,-31],[22,-44],[2,-37]],[[18123,59354],[131,-128],[144,-100],[6,-15],[21,-58],[0,-30],[0,-13],[36,-54],[16,-29],[11,-11],[7,-7],[16,-16],[4,-3],[34,-29],[4,-3],[30,-10],[40,-11],[70,-34],[13,-66],[31,-158],[-2,-135],[-22,-45],[-23,-36],[-25,-57],[-4,-10],[-9,-17],[-3,-7],[-6,-19],[-10,-35],[10,-13],[9,-11],[-25,-5],[-6,-29],[-12,-55],[-32,-88],[-1,-39],[7,-25],[4,-13],[6,-25],[-12,-41],[10,-21],[21,-2],[21,-7],[10,-3],[37,-5],[71,-61],[39,-20],[38,-1],[25,-17],[40,-12],[45,-11],[19,-29],[46,-36],[43,-46],[29,-36],[13,-39],[-92,-68],[-105,57],[-49,-19],[-25,-45],[-6,-34],[-22,-22],[-27,-16],[-32,-6],[-27,-6],[-50,-4],[-35,8],[2,-36],[34,-14],[11,-56],[6,-32],[16,-24],[10,-35],[8,-30],[26,-26],[43,-22],[15,-16],[6,-5],[-24,-5],[-28,-13],[-30,-6],[-27,-31],[-41,12],[-51,20],[-36,23],[-28,4],[-3,-6],[-1,-5],[-8,-21],[9,-34],[15,-51],[2,-20],[1,-11],[36,-35],[21,-25],[22,-17],[59,-8],[26,3],[23,-17],[22,-18],[40,-27],[23,-10],[11,-53],[-26,-14],[25,-37],[26,-22],[26,-10],[26,-37],[41,-6],[48,-35],[41,1],[33,4],[26,-35],[26,-43],[26,-23],[26,-21],[-13,-23],[-37,-44],[-24,-13],[-23,-13],[-18,-21],[-44,9],[-43,5],[-27,0],[8,-59],[30,-44],[-51,14],[-56,42],[-34,60],[-10,29],[30,21],[-15,37],[-58,58],[-29,16],[-28,15],[-28,33],[-60,-10],[-62,15],[-16,25],[-21,-28],[1,-39],[22,-19],[29,-30],[4,-58],[4,-37],[-45,29],[-28,29],[-40,2],[-23,16],[-51,13],[-4,3],[-17,13],[-10,27],[-32,26],[-7,-5],[6,-48],[18,-33],[30,-16],[13,-4],[22,-9],[29,-43],[37,-28],[60,-34],[38,-17],[22,-44],[31,-13],[30,-12],[29,-16],[27,-15],[36,-16],[28,-4],[-22,-78],[2,-34],[18,-29],[54,-93],[-17,-34],[-48,3],[-5,-31],[-2,-52],[-4,1],[-22,4],[-47,3],[-48,2],[-19,-19],[-21,-20],[-34,-4],[-25,-9],[-28,2],[-67,30],[-48,8],[-31,-2],[-42,-3],[-14,-25],[-20,-15],[-18,-18],[-9,2],[-14,12],[-35,45],[-26,64],[-24,9],[-88,36],[-26,61],[-24,12],[-44,37],[-17,37],[-11,25],[-49,23],[-31,4],[-34,22],[-19,29],[-37,6],[-25,-16],[-28,19],[-37,22],[-17,29],[-33,33],[-38,44],[-50,36],[-28,4],[-31,10],[-33,8],[-40,-2],[-33,0],[-52,34],[-36,16],[0,25],[-28,31],[-55,60],[-61,47],[-46,27],[-31,16],[-33,13],[-23,14],[-36,7],[-68,13],[-45,0],[-27,1],[-18,1],[-33,3],[-10,1],[1,28],[9,-3],[41,-12],[33,10],[94,5],[11,15],[2,18],[-54,38],[-13,14],[-37,44],[-49,39],[-25,-2],[-68,51],[-25,15],[-39,24],[-32,7],[-10,-15],[0,-9],[15,-7],[39,-90],[49,-2],[9,-25],[3,-17],[1,-2],[24,-13],[19,11],[52,-43],[11,-16],[-2,-3],[-37,0],[-30,-14],[-2,-13],[-8,-37],[-1,-9],[-112,-52],[-18,-11],[-31,-23],[-5,-11],[0,-12],[-22,-7],[-31,6],[-39,15],[-13,15],[-17,22],[-39,14],[-24,10],[-19,-2],[-21,3],[-16,4],[-15,6],[-9,12],[-2,28],[-12,36],[-11,21],[-10,21],[-2,20],[-8,22],[-17,36],[-26,36],[-26,19],[-28,18],[-40,20],[-42,20],[-23,21],[-21,14],[-37,5],[-31,6],[-39,16],[-18,31],[-20,22],[-23,11],[-34,-4],[-26,44],[-43,3],[-9,48],[-7,30],[-15,37],[-15,25],[-24,51],[-16,32],[-14,23],[-18,22],[-19,25],[-20,24],[-36,30],[-34,25],[-29,18],[-36,8],[-27,37],[-26,37],[-27,36],[-24,15],[-36,11],[-33,31],[-47,32],[-27,19],[-26,14],[-29,18],[-26,13],[-39,26],[-51,31],[-34,16],[-38,14],[-36,14],[-25,9],[-46,26],[-235,38],[-120,2],[-133,-1],[-15,13],[-10,8],[-3,11],[9,5],[3,2],[9,6],[17,0],[23,-4],[9,1],[32,-4],[29,-10],[8,5],[15,11],[25,0],[34,-6],[129,-21],[23,5],[1,2],[-11,16],[-4,2],[-9,20],[-18,-15],[-25,-7],[-46,-1],[-24,11],[-37,5],[-8,18],[18,22],[19,47],[4,20],[-17,6],[-10,-5],[-8,5],[11,15],[10,26],[-33,29],[-6,-55],[-9,-15],[-17,-61],[1,-10],[-4,-35],[-28,-4],[-34,3],[-16,-8],[-28,1],[-11,6],[4,8],[-7,9],[-31,6],[-30,1],[-10,26],[-24,-3],[-33,0],[-16,26],[26,56],[9,29],[19,46],[13,25],[24,13],[34,16],[72,60],[-20,16],[-5,3],[28,34],[-24,34],[-31,-52],[-12,-25],[-23,-23],[-48,27],[-6,39],[10,30],[-13,25],[-7,5],[-1,16],[13,22],[24,33],[-8,11],[-1,1],[-25,-8],[-12,-4],[-8,-7],[-21,-14],[2,-31],[0,-43],[-4,-13],[-10,-15],[-5,-34],[-3,-25],[-29,-32],[-37,6],[-8,-2],[-43,-8],[-2,2],[-12,15],[13,13],[-6,33],[8,45],[-9,38],[-14,23],[-9,1],[-1,-17],[1,-26],[7,-32],[-17,-16],[-1,-19],[16,-24],[-21,-20],[28,-16],[22,-14],[27,-6],[10,-28],[13,-14],[1,-48],[-16,-10],[-41,25],[-23,6],[-15,19],[-8,6],[-12,3],[-3,-3],[45,-55],[25,-5],[26,-22],[12,-12],[68,-70],[8,-7],[19,-41],[4,-1],[1,-10],[-13,-23],[-9,1],[-3,2],[-37,2],[-51,-9],[-66,-18],[-56,-24],[-37,-22],[-29,-22],[-30,-22],[-37,-38],[-31,-44],[-23,-35],[-9,-26],[-11,-37],[2,-30],[15,-28],[38,-13],[32,-18],[29,-6],[25,-6],[34,-36],[-48,2],[-28,12],[-26,11],[-35,1],[-36,3],[-32,-2],[-31,18],[-29,-4],[-24,-6],[-24,6],[-49,-11],[-28,7],[-22,16],[-32,-1],[-40,-13],[-54,12],[-6,33],[24,13],[36,6],[23,15],[24,38],[22,39],[13,31],[23,53],[22,46],[17,39],[24,51],[20,40],[10,35],[16,27],[17,44],[27,60],[23,52],[12,33],[20,43],[20,46],[14,36],[13,28],[18,43],[25,58],[6,27],[14,36],[25,61],[19,49],[12,31],[11,24],[11,31],[13,31],[8,28],[12,26],[8,27],[9,12],[11,14],[1,1],[0,36],[9,28],[12,38],[15,38],[12,48],[12,41],[6,39],[11,60],[3,33],[0,61],[-2,44],[-19,40],[-6,34],[-9,39],[-11,29],[-50,29],[-25,13],[-23,13],[-24,20],[12,26],[-2,62],[-2,44],[-7,36],[-14,28],[-22,19],[-13,28],[-35,29],[-34,38],[-19,26],[-5,45],[-3,31],[-22,21],[-33,29],[-12,25],[-34,39],[-18,35],[-11,37],[27,-9],[45,-17],[22,-20],[28,-24],[13,-28],[26,-23],[32,-33],[36,-22],[33,-45],[26,-31],[23,-24],[23,-37],[18,-20],[27,-13],[27,-10],[26,-26],[26,-13],[20,-25],[-12,-35],[-16,-21],[26,-15],[46,-8],[36,-25],[19,-22],[31,-14],[21,-50],[23,-33],[11,-27],[33,-28],[18,-26],[27,-32],[20,-25],[14,-33],[31,-33],[24,-5],[23,-28],[-11,-30],[17,-26],[29,-29],[4,-32],[21,-17],[24,-19],[31,-36],[-6,-26],[23,-32],[36,-10],[25,-22],[14,-28],[27,-13],[9,-27],[24,-13],[28,-28],[24,-25],[23,-11],[28,-34],[40,-36],[22,-23],[19,-19],[19,-18],[44,-41],[27,-26],[29,-36],[37,-34],[38,-8],[23,-42],[28,-21],[-12,43],[27,-14],[28,-2],[9,-1],[28,7],[15,29],[-33,34],[-46,50],[-30,25],[-14,24],[-27,19],[-25,27],[-54,-16],[-30,27],[12,43],[-23,31],[-58,14],[-49,30],[14,28],[1,53],[-23,17],[-24,15],[-31,34],[-9,28],[-5,35],[-24,16],[-41,18],[-29,24],[-15,32],[-36,9],[-34,48],[-19,29],[-19,31],[3,29],[-46,26],[-22,35],[-18,42],[-12,33],[-25,31],[-17,19],[-14,31],[-18,27],[-9,27],[-17,19],[-33,35],[-18,36],[-11,40],[-32,52],[-12,52],[1,38],[7,50],[-13,-10],[-17,-12],[-27,-30],[-27,-14],[-22,26],[-23,22],[-26,26],[-35,14],[-36,-6],[-15,-34],[-28,-19],[-12,24],[5,35],[11,34],[-9,40],[4,34],[-23,30],[-38,8],[-27,-2],[-15,-23],[-37,4],[-47,5],[9,44],[14,24],[12,42],[5,36],[6,32],[-12,38],[-18,35],[-14,38],[-29,39],[-20,29],[-5,40],[-43,13],[-48,27],[-12,32],[-8,33],[-31,17],[-38,44],[-12,31],[-26,25],[-20,53]],[[33891,58505],[0,-49],[15,-1353],[1,-41],[3,-265],[2,-177],[9,-837],[3,-278],[4,-355],[-3,-2],[-4,-4],[-4,-4],[-1,-5],[-1,-5],[1,-3],[2,-3],[7,-3],[10,-2],[22,0],[2,0],[11,1],[2,-1],[4,-4],[0,-7],[0,-8],[-1,-26],[0,-2],[-2,-13],[-6,-11],[-28,-42],[1,-38],[-4,-7],[-15,-27],[-22,-14],[-2,0],[-80,18],[-16,5],[-30,15],[-4,2],[-8,2],[-8,2],[-15,2],[-5,0],[-7,0],[-16,-4],[-3,-1],[-13,-6],[-29,-14],[-27,-9],[-15,-5],[-3,-1],[-1,0],[-14,8],[-15,10],[-47,19],[-23,11],[-6,5],[-7,5],[-8,10],[-36,19],[-7,1],[-16,8],[-14,14],[-6,10],[-13,19],[-15,7],[-17,8],[-12,6],[-10,9],[-4,4],[-5,9],[-2,3],[0,1],[-1,0],[-8,4],[-26,1],[-1,0],[-6,-1],[-3,0],[-3,1],[-39,22],[-4,3],[-3,4],[-2,9],[0,1],[-4,3],[-6,2],[-7,-1],[-9,-3],[-5,-3],[-5,-3],[-5,-3],[-5,-5],[-12,-16],[0,-1],[-3,-5],[0,-3],[1,-4],[6,-9],[-12,-11],[-18,-15],[-24,-15],[-24,-14],[-20,-11],[-3,-2],[0,-1],[-9,-1],[-27,1],[-6,3],[0,3],[4,6],[1,7],[8,43],[0,1],[1,2],[-4,3],[-12,6],[-9,2],[-8,0],[-10,-2],[-12,-4],[-8,-5],[-10,-8],[-6,-12],[-21,-39],[0,-22],[-7,-6],[-24,-24],[-8,-7],[0,-6],[-4,-9],[-4,-5],[-5,-4],[-1,0],[-14,-9],[-3,-1],[-1,1],[-4,0],[-24,10],[-6,4],[-8,4],[-1,0],[-14,3],[-16,0],[-5,-2],[-1,-1],[0,-1],[-3,-3],[0,-3],[-1,-4],[-3,-3],[-16,-19],[-1,1],[-15,13],[-7,6],[-4,2],[-52,14],[-12,-1],[-7,-2],[-4,-3],[-5,-4],[-1,-1],[-2,-1],[-3,0],[-2,1],[-2,0],[-3,2],[-3,8],[-11,29],[1,2],[9,20],[0,2],[-2,3],[-5,4],[-8,3],[-9,1],[-17,10],[-7,4],[-11,-8],[-30,-23],[-10,-8],[-4,-3],[-19,-6],[8,-10],[1,-2],[0,-1],[0,-4],[-1,-2],[-33,-39],[-8,-5],[-37,-17],[-63,-5],[-9,5],[-1,2],[-27,15],[-2,3],[-9,15],[-4,2],[-4,0],[-29,-3],[-9,-2],[-4,-3],[-1,0],[-3,-4],[-12,-26],[-2,-13],[-3,-4],[-5,-6],[-11,-7],[-4,-2],[-1,-1],[-10,-2],[-9,0],[-10,0],[-6,3],[-4,4],[-21,15],[-1,1],[-23,16],[-3,20],[-1,4],[-10,2],[-7,2],[-1,0],[-20,-12],[-1,-1],[-10,1],[-5,2],[-4,2],[-6,6],[-4,6],[-4,4],[-2,1],[-5,2],[-6,0],[-3,-1],[-4,-4],[-5,-13],[0,-6],[9,-21],[3,-11],[3,-17],[1,-2],[6,-11],[4,-7],[4,-11],[-5,-8],[-3,-2],[-4,-5],[-18,-19],[-1,-1],[-1,0],[-20,-19],[-26,-22],[-12,-9],[-33,-21],[-2,-2],[-1,0],[-1,-1],[-6,-1],[-7,2],[-4,2],[-3,3],[-18,3],[-42,4],[-41,5],[-18,2],[-13,-4],[-29,-9],[-22,-7],[-4,-2],[-7,-17],[-11,-9],[-13,-10],[-4,-2],[-5,-1],[-7,2],[-17,6],[-7,5],[-4,1],[-40,7],[-2,0],[-2,0],[-5,-2],[-35,-29],[-1,-17],[-12,-48],[-14,-29],[0,-6],[3,-5],[4,-2],[1,0],[5,-1],[12,-1],[3,-4],[1,-9],[-4,-7],[-1,-1],[-3,-2],[-1,-1],[-6,-2],[-10,-2],[-18,-1],[-8,2],[-4,4],[-1,1],[-4,0],[-3,-3],[-13,-20],[0,-1],[0,-5],[4,-5],[6,-2],[1,-1],[5,0],[6,-11],[-10,-5],[-15,-3],[-13,-1],[-1,0],[-5,2],[-1,0],[-64,44],[-4,4],[0,1],[-1,4],[0,9],[-3,6],[-4,3],[-5,2],[-4,-2],[-19,-23],[-3,-5],[2,-9],[3,-3],[4,-2],[3,0],[17,-35],[-1,-1],[-32,-40],[13,-31],[2,-6],[-2,-3],[-16,-32],[-1,-1],[-5,-2],[-1,0],[-1,-1],[-8,0],[-42,-1],[-4,1],[-45,27],[-2,4],[-9,21],[-35,5],[-16,-29],[-4,-2],[-7,0],[-17,15],[-1,4],[0,7],[1,4],[2,2],[10,8],[3,3],[2,6],[-2,6],[-15,7],[0,-1],[-4,0],[-4,-1],[-1,-3],[-11,-15],[-10,-2],[-12,5],[-1,1],[-1,2],[-7,-2],[-2,-2],[-1,-5],[0,-3],[11,-11],[1,-1],[0,-7],[1,-6],[-1,-3],[-26,-38],[-15,-12],[-1,0],[-18,1],[-9,0],[-10,2],[-29,11],[-5,-8],[-20,-14],[-6,-8],[-31,-9],[-2,-1],[0,-13],[0,-6],[-1,-6],[2,-7],[3,-8],[1,-4],[-2,-26],[0,-1],[1,-13],[5,-15],[1,-1],[8,-14],[1,-4],[-1,-12],[-5,-11],[-1,-1],[-1,-1],[-1,-1],[-6,-1],[-18,-1],[-4,0],[-12,-2],[-22,-6],[-7,-3],[-3,-1],[-1,-2],[-2,-16],[0,-13],[5,-12],[0,-6],[0,-1],[-2,-4],[-3,-4],[-8,-4],[-8,-4],[-15,-1],[-7,1],[-4,2],[-4,3],[-1,5],[-2,2],[-2,2],[-6,3],[-13,2],[-30,5],[-13,-1],[-37,-5],[-145,-131],[-119,-111],[-14,-32],[-1,-1],[-109,-94],[-5,-3],[-17,-15],[-2,-1],[-47,-40],[-230,-197],[-58,-49],[-20,-17],[-59,-53],[-30,-27],[-5,-5],[-265,-222],[-120,-100],[-21,-19],[-242,-207],[-28,-24],[-87,-74],[-236,-205],[-124,-108],[-222,-191]],[[28578,52215],[8,27],[10,29],[8,27],[-22,19],[-22,14],[-21,26],[-27,10],[-19,23],[-47,44],[-77,-1],[-26,26],[5,37],[-19,51],[-27,32],[-17,23],[23,23],[-13,36],[-31,20],[-42,-12],[-79,7],[-54,-7],[-41,21],[-21,11],[-10,-9],[-98,30],[-31,17],[-54,47],[-90,60],[0,467],[4,314],[-4,210],[0,713],[0,394],[-1,27],[0,607],[0,177]],[[27743,55755],[28,52],[16,20],[2,31],[0,41],[-4,30],[19,26],[26,-9],[32,7],[20,20],[24,19],[4,30],[3,31],[10,25],[23,20],[0,28],[-24,4],[-18,-20],[-21,24],[-2,29],[13,28],[-33,1],[-28,-12],[-23,14],[-13,24],[-14,22],[-22,-25],[-28,-1],[-24,5],[-20,-21],[7,-34],[-26,13],[-16,24],[-26,-2],[8,28],[-32,8],[-34,-8],[-21,-20],[-24,9],[9,26],[23,10],[20,22],[-13,26],[-23,19],[-15,21],[-8,28],[2,26],[14,29],[25,27],[14,23],[-10,31],[-8,24],[-1,4],[22,14],[24,8],[25,10],[4,11],[8,18],[5,29],[-5,27],[-28,20],[-18,23],[17,21],[28,17],[24,14],[17,20],[-17,28],[-16,28],[5,28],[33,13],[33,8],[29,8],[-9,11],[-12,14],[-12,28],[6,27],[1,28],[-25,21],[-6,16],[-4,10],[7,20],[1,1],[1,5],[-8,18],[-4,9],[-10,30],[21,18],[-26,6],[-23,-14],[-18,23],[7,28],[18,23],[21,16],[-27,20],[-39,-8],[-36,-6],[5,28],[29,6],[32,4],[21,13],[-14,22],[-37,19],[-22,24],[-1,28],[0,27],[-16,18],[-2,1],[-31,19],[-18,23],[30,10],[35,1],[-8,28],[-27,5],[-25,4],[-19,18],[3,27],[5,28],[10,25],[25,26],[3,27],[-23,12],[16,22],[31,0],[27,-1],[14,25],[-18,27],[-26,-2],[-28,1],[-22,14],[-7,30],[15,28],[28,12],[36,-3],[25,0],[19,23],[-29,19],[-25,12],[12,23],[30,-1],[32,-13],[24,-11],[28,-6],[1,1],[12,26],[-18,24],[-21,16],[-21,23],[-4,29],[-6,26],[-28,-7],[-30,-1],[-7,29],[4,34],[0,36],[-15,23],[-24,13],[-48,-17]],[[27500,58118],[19,60],[9,52],[-12,61],[5,29],[34,34],[-2,55],[54,29],[37,5],[30,-24],[32,-7],[6,-60],[10,-37],[47,-29],[59,-6],[25,8],[75,88],[41,15],[13,-27],[-19,-32],[-20,-51],[8,-100],[55,-58],[38,-90],[26,-33],[-15,-37],[-4,-42],[32,-10],[25,-7],[-2,-35],[9,-32],[-7,-29],[33,0],[21,89],[-39,38],[-51,7],[31,58],[3,40],[-45,98],[66,92],[27,8],[26,0],[59,-29],[18,-37],[-4,-28],[-7,-38],[19,-22],[18,20],[-13,41],[34,-14],[7,20],[4,12],[-32,32],[-51,51],[-26,9],[-25,10],[-54,5],[-56,-8],[-75,6],[20,66],[-17,65],[-54,14],[-176,-83],[27,67],[-35,58],[-129,85],[16,32],[22,16],[-45,7],[-12,64],[6,22],[35,7],[38,20],[28,31],[1,21],[-14,14],[-109,56]],[[24846,58030],[-36,-4],[-76,7],[-11,1],[-55,28],[-35,19],[-8,6],[-16,10],[10,16],[8,14],[3,5],[7,1],[18,4],[18,6],[42,16],[32,11],[1,0],[33,11],[9,3],[0,2],[4,-3],[13,-10],[70,-55],[11,-44],[8,-27],[-8,-4],[-2,-1],[-13,-7],[-13,-2],[-14,-3]],[[24960,57985],[-7,0],[-9,7],[-18,13],[-7,4],[-9,16],[0,2],[5,12],[3,10],[-29,77],[-42,34],[-10,9],[-23,21],[-19,16],[10,38],[14,5],[22,7],[12,3],[-1,13],[-1,20],[-9,20],[-3,7],[6,2],[16,3],[25,-31],[6,-8],[1,-2],[41,-128],[6,-15],[14,-44],[4,-6],[21,-28],[19,-24],[16,-22],[7,-9],[-36,-20],[-2,-2],[-23,0]],[[27743,55755],[-187,-50],[-925,-246],[-1056,-281],[-912,-243],[-631,-168],[-214,-57],[-110,109],[-27,10],[-27,1],[-25,7],[-28,6],[-63,30],[-35,47],[-73,10],[-104,88],[3,70],[6,11],[127,86],[-67,76],[-92,103],[-36,11],[-41,32],[-82,36],[-55,42],[-91,68],[-103,8],[-29,2],[-27,2],[-25,2],[-77,5],[-99,7],[-95,6],[-108,8],[-33,3],[-69,6],[-187,13],[-52,4],[-59,36],[-15,31],[-27,32],[-60,27],[-27,16],[-88,-44],[-59,23],[-41,4],[-44,35],[-43,13],[-7,29],[2,33],[-6,31],[14,24],[14,22],[-11,33],[-35,6],[-26,21],[-23,12],[-13,30],[-35,29],[-24,20],[-18,24],[-30,12],[-24,4],[-22,26],[2,5],[-23,28],[-30,31],[-40,41],[-11,6],[23,23],[28,17],[-11,31],[-39,38],[-24,32],[-32,15],[-37,16],[-33,10],[-24,6],[-18,5],[-26,-12],[-27,11],[-31,27],[-18,24],[5,30],[-11,25],[-31,2],[-7,25],[-25,6],[-5,27],[-26,4],[-23,25],[-20,19],[-30,11],[-24,-4],[-23,8],[-28,-2],[-36,-16],[-15,-27],[-30,-3],[-32,-15],[-31,-12],[-25,5],[-24,5],[-16,1],[-8,1],[-32,-7],[-20,2],[-7,1],[-21,-2],[-10,-1],[-23,-2],[-2,0],[-21,-4],[-9,-2]],[[20406,56602],[-41,17],[-62,-39],[-49,63],[71,38],[-29,19],[-55,27],[-35,7],[-35,-7],[-40,-3],[-71,-3],[-2,52],[-57,5],[-8,-43],[-61,-6],[-9,41],[-10,59],[-49,10],[14,-24],[25,-130],[-36,-7],[-40,8],[-37,34],[-26,9],[-26,5],[-35,-10],[-29,-3],[-27,14],[31,110],[-43,22],[-12,36],[-75,28],[-15,30],[-79,9],[-30,31],[-11,12],[26,30],[-13,47],[-85,34],[19,40],[-6,28],[-37,32],[-50,55],[1,38],[49,-4],[47,-23],[38,8],[40,-38],[-3,-31],[41,-16],[82,-27],[32,28],[-34,24],[27,10],[10,17],[9,15],[70,24],[3,10],[10,33],[-3,37],[24,49],[109,-15],[41,53],[41,65],[34,59],[-10,36],[-34,21],[-16,26],[-21,79],[12,58],[27,5],[20,-36],[50,-9],[54,-1],[51,-29],[33,-22],[80,-17],[40,6],[30,14],[84,69],[21,16],[29,-6],[31,-6],[52,4],[47,-3],[37,45],[27,19],[40,47],[35,6],[36,15],[27,49],[17,31],[27,60],[10,24],[32,5],[51,12],[12,23],[15,66],[14,41],[38,-11],[52,13],[40,32],[28,20],[50,2],[59,-10],[85,-10],[4,1],[44,13],[55,-3],[80,-23],[25,-6],[24,-9],[83,-11],[26,-4],[67,-46],[44,-37],[39,-62],[10,-30],[52,-66],[33,-18],[89,-41],[26,-7],[48,-12],[28,2],[39,14],[28,21],[24,3],[41,5],[23,18],[28,20],[51,20],[33,29],[1,1],[10,8],[27,20],[148,49],[27,9],[37,9],[9,6],[18,10],[79,15],[46,14],[47,15],[12,32],[3,7],[50,-1],[89,-24],[42,-2],[35,15],[4,2],[42,14],[36,25],[39,5],[58,14],[58,8],[44,-3],[3,0],[45,-1],[52,-23],[57,-18],[54,-1],[3,1],[46,2],[31,-15],[15,-7],[49,-22],[51,-23],[77,5],[2,0],[72,-3],[18,0],[30,7],[2,0],[6,-2],[31,-6],[32,28],[89,-38],[42,-17],[0,-1],[34,-11],[41,-3],[14,-2],[28,-5],[125,-25],[5,-2],[29,-9],[45,-4],[25,5],[34,8],[68,8],[40,-12],[24,-27],[12,-35],[39,3],[99,-40],[66,-7],[26,-10],[55,8],[38,-17],[60,-28],[34,-13],[34,-2],[16,-1],[70,-4],[40,-9],[68,-50],[81,-17],[33,-4],[33,12],[173,-28],[61,-1],[86,31],[79,23],[97,-6],[7,-2],[24,-5],[130,13],[23,-53],[203,-97],[19,21],[-23,20],[11,50],[19,5],[60,-42],[107,5],[6,33],[38,-9],[6,14],[-7,13],[-47,59],[-21,15],[-71,-5],[-63,-4],[-19,-28],[-80,38],[-10,4],[-66,24],[29,39],[13,29],[75,5],[80,23],[61,50],[40,29],[23,53],[35,51],[57,36],[39,9],[32,9],[8,-3],[3,25],[-31,15],[15,78],[-17,97],[-7,38],[7,47],[66,57],[90,17],[71,-45],[34,-26],[70,-13],[161,35],[30,38],[6,43],[3,20],[169,34],[129,-52],[48,-17],[74,-14],[19,-126],[19,-56],[13,-14],[0,-14],[-65,-33],[-19,-63],[-18,-8],[-19,2],[-94,11],[-118,-62],[-39,-20],[-32,-22],[-74,28],[-13,-65],[20,-34],[-1,-7],[-26,0],[-81,-2],[-23,-26],[136,-94],[106,-100],[43,-75],[2,2],[28,12],[28,20],[20,20],[19,18],[46,17],[26,15],[33,2],[27,-7],[15,23],[13,23],[-8,33],[-13,54]],[[39131,53828],[-615,-263],[-104,-44],[-110,-54],[-48,-21],[-85,-35],[-34,-14],[-22,-10],[-32,-13],[-25,-11],[-31,-13],[-82,-33],[-51,-22],[-40,-17],[-60,-25],[-87,-37],[-111,-48],[-49,-21],[-33,-14],[-85,-35],[-91,-40],[-75,-31],[-106,-45],[-81,-35],[-37,-15],[-78,-34],[-118,-49],[-46,-23],[-41,-17],[-41,-18],[-60,-24],[-49,-21],[-85,-37],[-80,-33],[-55,-24],[-63,-24],[-54,-24],[-26,-12],[-34,-15],[-81,-33],[-321,-137],[-103,-43],[-35,-14],[-49,-21],[-26,-10],[-71,-29],[0,-1],[-86,-36],[-63,-32],[-389,-166],[-81,-34],[-254,-109],[-906,-386],[-173,-74],[-92,-39],[-127,-55],[-29,-13],[-1,-2],[-1,0],[1,-1],[0,-2],[-9,-13],[-6,-4],[-14,-9],[-10,-3],[-8,-6],[-9,-12],[-27,-60],[-4,-10],[-6,-12],[1,-11],[5,-16],[4,-3],[12,14],[3,4],[7,8],[4,3],[11,2],[32,-3],[22,-2],[9,-3],[2,-3],[0,-1],[2,-16],[-11,-24],[-14,-20],[-2,-9],[4,-24],[5,-11],[13,-4],[22,7],[16,9],[26,5],[3,-2],[24,-11],[1,0],[3,-9],[0,-4],[-7,-9],[-5,-1],[-1,0],[-14,2],[-15,-3],[-9,-12],[-23,-67],[1,-3],[3,-16],[17,-78],[3,-10],[1,-4],[6,-8],[9,-12],[0,-1],[-2,-42],[2,-4],[2,-3],[8,-3],[19,2],[10,-4],[5,-2],[5,-3],[1,0],[0,-1],[1,-9],[11,-14],[6,-6],[7,-2],[6,-1],[1,0],[19,-18],[-63,-55],[-396,-340],[-23,-20],[-704,-606],[-43,-37],[-1304,-1122]],[[30965,48575],[-50,28],[-13,28],[-19,58],[-11,27],[6,28],[-9,25],[-12,24],[-26,-4],[-27,11],[-25,-4],[-30,-2],[-33,8],[-27,1],[-27,5],[-29,2],[-27,30],[-25,38],[-22,38],[-23,29],[-24,14],[-15,42],[-18,22],[-28,28],[-28,17],[-19,-18],[-25,-17],[-9,-31],[-24,-15],[-6,-29],[-6,-26],[-29,-13],[-26,-26],[-22,-13],[-32,25],[-29,-17],[-26,15],[-33,22],[-23,-7],[-21,-20],[-26,2],[-26,-5],[-29,-5],[-31,-8],[-40,42],[-25,9],[-18,18],[-39,14],[-27,8],[-12,31],[-23,25],[-34,19],[-26,10],[-42,7],[-24,12],[-28,-7],[-17,-26],[-24,-19],[-54,-27],[-12,-35],[-28,-13],[-18,-25],[-14,-22],[-32,-1],[-16,-25],[13,-27],[-7,-30],[18,-22],[-2,-29],[-9,-31],[-28,-5],[-24,-5],[-25,-7],[-15,-25],[-23,9],[-24,14],[-24,3],[-7,30],[-17,20],[-25,10],[-15,24],[-6,30],[-6,38],[1,40],[-29,19],[-24,12],[20,21],[4,27],[8,38],[10,25],[-21,26],[2,36],[4,31],[-13,24],[-9,25],[-19,24],[-13,29],[-3,31],[-6,35],[0,27],[-10,29],[-31,24],[-8,36],[2,28],[-17,20],[-25,9],[-24,18],[-23,23],[-30,-12],[-15,21],[-22,15],[-39,14],[-17,24],[-22,21],[-22,15],[-3,26],[-21,35],[-17,23],[-17,35],[-17,29],[-3,28],[8,26],[-10,26],[-10,27],[19,22],[6,31],[2,30],[2,30],[1,27],[2,28],[-17,21],[-18,22],[-8,29],[31,2],[18,20],[16,24],[21,14],[-1,48],[33,16],[26,13],[24,-30],[25,-7],[30,-9],[26,22],[23,9],[31,7],[25,4],[18,30],[36,30],[23,19],[19,17],[19,22],[38,25],[26,7],[-12,28],[-6,28],[-13,60],[-24,31],[7,33],[20,32],[-113,149],[6,27],[-4,28],[7,30],[-12,25],[-25,39],[9,35],[22,22],[14,22],[13,37],[15,41],[10,26],[22,15],[24,16],[6,33],[-9,41],[-18,35],[-40,8],[-28,6],[-44,30],[-73,7],[-33,17],[-27,-1],[-25,-13],[-21,-16],[-27,3],[-29,-17],[-33,31],[-49,9],[-16,28],[25,30],[-7,61],[-70,97],[-26,-10],[-59,84],[25,17],[-6,33],[4,33],[17,21],[16,21],[16,23],[25,10],[5,29],[-16,53],[8,29],[-2,32],[-11,25],[-31,-6],[-23,26],[-24,6],[-13,28],[-11,27],[-26,18],[-24,9],[-34,11],[-30,97],[27,11],[21,21],[19,20],[29,11],[36,20]],[[28571,52219],[7,-4]],[[21027,55404],[19,-50],[-54,15],[-24,39],[28,9],[31,-13]],[[20443,55484],[69,-15],[55,8],[29,5],[44,-11],[65,16],[58,-12],[2,0],[28,-32],[101,-50],[24,-9],[24,-9],[28,-12],[42,-30],[59,-27],[75,-44],[51,-23],[24,-12],[22,-24],[8,-90],[-76,-66],[-32,-2],[-16,-1],[-37,15],[-44,8],[-43,16],[-66,28],[-78,30],[-70,33],[-17,24],[-23,34],[-35,-3],[-36,19],[10,-41],[-64,-1],[20,37],[-50,12],[-58,19],[-32,13],[-20,9],[28,6],[27,21],[0,37],[-99,4],[-4,-43],[-59,3],[-29,30],[-61,8],[-36,11],[-38,65],[5,73],[1,29],[190,-48],[34,-8]],[[28571,52219],[-146,2],[-130,0],[-303,0],[-9,0],[-260,2],[-45,-2],[-216,2],[-208,1],[-6,0],[-117,0],[-45,0],[-38,0],[-62,1],[-255,1],[-89,-1],[-187,1],[-242,8],[-257,3],[-236,1],[-54,1],[-157,2],[-83,-3],[-47,0],[-184,2],[-36,0],[-28,1],[-7,0],[-38,0],[-20,1],[-49,0],[-81,1],[-42,0],[-51,1],[-32,0],[-60,1],[-24,-17],[-21,-22],[-16,-22],[-25,-18],[-16,-23],[-25,-11],[-16,-22],[-22,-12],[-25,9],[-24,-5],[-23,-12],[-22,-20],[-29,-3],[-31,-10],[-23,-13],[-26,-9],[-4,-1],[-28,-9],[-23,-8],[-36,-22],[-24,-13],[-12,-8],[-12,-7],[-38,-22],[-6,-3],[-28,-12],[-15,-6],[-18,13],[-27,5],[-6,5],[-6,5],[-3,3],[-24,35],[-6,15],[-31,5],[-47,31],[-6,5],[-1,9],[0,3],[2,8],[0,4],[-4,8],[-5,3],[-1,-1],[-6,-1],[-3,-1],[-3,-3],[-7,-13],[0,-4],[0,-6],[2,-6],[6,-13],[0,-10],[-7,-10],[-9,-8],[-15,-5],[-19,-1],[-10,3],[-67,31],[-54,-16],[-11,-3],[-23,-7],[-24,-6],[-27,-6],[-14,-4],[-9,1],[-41,3],[-38,12],[-24,8]],[[23571,52015],[-16,37],[-45,29],[-30,5],[-165,-19],[-1,0],[-84,-10],[-75,20],[-2,1],[-54,5],[-24,2],[-26,-4],[-11,-2],[-88,-23],[-26,42],[-8,15],[15,57],[-38,139],[104,12],[37,4],[16,2],[-45,6],[-6,0],[-64,8],[-19,2],[-43,31],[-20,14],[-2,1],[-4,1],[-58,6],[-41,15],[-35,4],[-40,16],[-12,5],[-6,2],[-22,8],[-25,26],[-20,-20],[-6,-5],[-152,-41],[-12,8],[-41,28],[-18,70],[1,16],[8,85],[-17,98],[-2,12],[-75,145],[-1,2],[-14,28],[-3,5],[-84,171],[-33,-2],[-15,28],[-14,39],[-22,29],[-23,56],[-34,51],[-16,38],[-4,27],[-2,45],[13,115],[-7,20],[-5,15],[-3,15],[-4,18],[-3,30],[-13,30],[-12,23],[-1,2],[-8,72],[-12,66],[-3,49],[-6,73],[-10,46],[-27,101],[-35,92],[-16,51],[-31,26],[-32,49],[-40,35],[-33,9],[-71,97],[-39,-3],[5,52],[-35,-1],[-29,-3],[3,34],[28,1],[1,60],[-69,-9],[-33,77],[66,36],[-43,-7],[-113,-37],[0,-87],[-28,-28],[-280,219],[-34,6],[-49,60],[50,0],[-30,49],[-24,25],[-18,24],[-34,45],[-24,11],[0,32],[38,22],[26,15],[83,10],[34,2],[35,0],[4,0],[48,-1],[75,5],[42,-39],[33,-34],[45,-89],[22,-26],[-3,31],[-18,41],[2,29],[-24,16],[-31,42],[67,-37],[23,14],[-52,58],[-3,40],[-30,29],[-26,47],[-34,-17],[-16,63],[-32,37],[-26,16],[-98,50],[-36,56],[-14,53],[-31,27],[-30,2],[-25,0],[-26,-12],[-26,-3],[-52,22],[-17,14],[-26,3],[-25,18],[-25,11],[-39,17],[-25,11],[-39,0],[-30,2],[-63,-16],[-76,0],[-83,20],[-177,43],[-22,14],[59,-9],[6,28],[-13,23],[-38,24],[-28,-18],[-46,-17],[-32,1],[-20,20],[78,43],[15,8],[106,4],[26,40],[65,48],[42,9],[-38,23],[-31,-5],[-34,-29],[0,28],[-95,-8],[16,7],[64,28],[33,39],[29,16],[44,-19],[97,19],[43,0],[-22,36],[-18,40],[-96,6],[56,16],[52,17],[-33,64],[22,48],[-46,120],[-20,-32],[-9,66],[-60,-15],[-38,-14],[-10,42],[-40,46],[54,17],[18,-37],[69,16],[-28,72],[-21,44],[-12,27],[-19,43],[67,45],[-26,51]],[[49622,55341],[-65,-55],[-45,-37],[-56,-47],[-108,-91],[-47,-39],[-30,-25],[-61,-53],[-57,-49],[-80,-69],[-102,-89],[-20,-16],[-6,-6],[-222,-191],[-256,-221],[-107,-92],[-122,-105],[-59,-52],[-21,-18],[-36,-31],[-67,-58],[-15,-13],[-168,-145],[-123,-106],[-19,-17],[-54,-46],[-117,-101],[-67,-57],[-65,-57],[-55,-47],[-21,-19],[-43,-37],[-53,-46],[-138,-118],[-30,-26],[-135,-118],[0,-285],[1,-409],[-322,0],[11,-175],[12,-184],[-293,0],[-62,0],[-2,-123],[0,-72],[-3,-270],[-763,2],[-331,1],[-173,-152],[-576,-506],[-858,-753],[-136,-120],[-111,-97],[-189,-167],[-82,-72],[-176,-154],[-295,-276],[-89,-83],[0,-1],[-4,-10],[-11,-11],[-5,-5],[-6,-2],[-11,-5],[-6,-3],[-6,-7],[-25,-25]],[[42441,49080],[-78,9],[-22,25],[-15,38],[-32,67],[-30,16],[-22,11],[-17,24],[-17,22],[-24,23],[-19,18],[-53,44],[-25,37],[-24,25],[-40,28],[-31,12],[-37,7],[-44,7],[-40,12],[-33,17],[-38,20],[-36,11],[-91,28],[-32,12],[-28,13],[-43,18],[-35,15],[-35,15],[-31,28],[-75,42],[-63,44],[-36,27],[-32,23],[-42,28],[-20,18],[-30,26],[-17,30],[-33,51],[-12,28],[-8,28],[-17,84],[10,30],[27,64],[-48,102],[-20,27],[-49,29],[-39,24],[-35,52],[-37,54],[-157,233],[-127,187],[-86,128],[-208,309],[-144,213],[8,28],[44,151],[2,8],[-33,70],[-376,790],[-30,53],[-316,562],[-83,147],[-256,456]],[[13643,54563],[22,-17],[13,-11],[5,-3],[11,-28],[-29,-1],[-10,8],[-2,0],[-14,0],[-19,9],[-3,19],[20,20],[1,0],[5,4]],[[13783,54539],[-39,-50],[-16,12],[-3,20],[-7,4],[-1,9],[-5,11],[2,16],[23,11],[46,-33]],[[13388,54843],[13,-6],[14,1],[24,-12],[2,-12],[-19,-6],[-20,10],[-6,-4],[-13,0],[7,14],[-1,7],[-2,2],[1,6]],[[12788,55170],[-33,-10],[-4,-4],[-7,1],[0,-1],[-13,3],[-14,20],[0,15],[28,3],[23,-5],[1,0],[9,-2],[12,-5],[-2,-15]],[[12743,55309],[-5,-40],[-6,4],[-3,-7],[-21,2],[-51,-14],[-23,37],[54,44],[55,-26]],[[12050,55359],[-6,-6],[-10,6],[-65,23],[-24,45],[19,18],[56,-6],[38,-33],[9,-8],[20,-7],[-4,-30],[-33,-2]],[[19609,54604],[-27,0],[-50,0],[-3,0],[-26,2],[-26,-1],[-30,0],[-30,0],[-27,1],[-28,-2],[-31,0],[-32,1],[-26,1],[-25,-2],[-30,-1],[-26,1],[-25,1],[-28,-1],[-26,1],[-25,-1],[-28,0],[-27,0],[-27,0],[-27,0],[-5,0],[-19,0],[-4,0],[-26,0],[-25,0],[-10,0],[-15,0],[-16,1],[-10,1],[-90,-2],[-48,1],[-73,-1],[-45,-1],[-2,0],[-42,0]],[[18549,54603],[-8,31],[-16,58],[-9,36],[-18,102],[-2,29],[-3,31],[-4,50],[-4,33],[-3,41],[-5,29],[-7,26],[-5,38],[-5,36],[-3,30],[-6,33],[-3,33],[0,45],[-1,28],[-13,53],[14,29],[23,17],[28,19],[22,16],[42,3],[30,-3],[29,-3],[27,2],[23,13],[31,10],[21,24],[19,44],[11,26],[13,26],[14,41],[5,26],[9,26],[2,4],[49,-18],[36,-20],[56,-21],[34,4],[53,10],[27,2],[49,-3],[37,8],[46,6],[35,-7],[71,13],[30,-13],[23,18],[27,9],[27,-2],[40,6],[43,-14],[32,-7],[28,-8],[20,-40],[29,-19],[17,-45],[26,-13],[1,-4],[4,-31],[26,-27],[15,-3],[12,-3],[10,-32],[-24,-19],[5,-27],[-5,-42],[-20,-15],[27,-5],[21,-21],[25,-25],[-27,18],[-27,-9],[34,-33],[-30,-56],[28,-17],[19,20],[7,-29],[-3,-46],[4,-26],[8,-34],[39,4],[-2,-36],[-125,-13],[-33,7],[21,-17],[57,1],[87,4],[17,-19],[46,-39],[-24,-21],[39,-14],[-47,-13],[-24,8],[-13,-26],[2,-26],[35,14],[34,-28],[26,9],[33,-8],[19,-24],[34,-6],[-4,-30],[-36,-8],[32,-4],[-41,-11],[21,-22],[-27,12],[38,-38],[-30,6],[-14,-29],[-34,2],[-38,14],[-34,11],[-20,34],[-31,-1],[-32,-4],[28,-41],[26,-16],[-10,-39],[-3,-46],[26,7],[-31,-13],[-33,7],[-44,3],[-31,2],[-32,-14]],[[19826,55739],[37,-35],[84,21],[-3,-5],[-15,-29],[-13,-36],[-49,0],[-2,1],[-49,37],[10,46]],[[19826,55739],[-76,120],[8,25],[50,31],[44,-12],[20,-18],[28,-59],[11,-32],[-16,-21],[-46,-22],[-23,-12]],[[52411,53312],[-167,-144],[-452,-390],[-54,-47],[-1,0],[-100,-87],[-234,-202],[-39,-34],[-88,-77],[-408,-358],[-44,-38],[-101,-87],[-137,-119],[-182,-157],[-26,-22],[-148,-128],[-43,-37],[-257,-219],[-63,-55],[-3,-2],[-25,-22],[-47,-44],[-2,-2],[-22,-21],[-26,-23],[-10,-10],[-11,-10],[-16,-15],[-4,-4],[-28,-32],[-24,-30],[-7,-6],[-22,-15],[-5,-3],[-16,-11],[-19,-24],[-15,-25],[-2,-2],[0,-3],[0,-24],[0,-1],[1,-1],[15,-13],[14,-12],[5,-30],[-20,-18],[-27,-11],[-5,-2],[-6,0],[-22,-2],[-7,0],[-8,-1],[-21,-2],[-23,-20],[1,-3],[11,-28],[1,-1],[1,0],[13,-8],[10,-6],[7,-4],[22,-12],[25,-15],[6,-35],[0,-1],[-3,-5],[-5,-9],[-12,-19],[-1,0],[-48,-4],[-22,-15],[-24,-23],[-22,-19],[-25,-12],[-1,-1],[-19,-20],[-1,-2],[-1,-23],[0,-7],[6,-36],[3,-7],[6,-19],[26,-18],[13,-29],[7,-30],[13,-27],[0,-4],[3,-18],[1,-7],[-7,-25],[0,-1],[-9,-19],[-5,-13],[-11,-21],[-2,-4],[-4,-38],[0,-1],[-4,-28],[0,-1],[-6,-31],[0,-1],[28,-19],[1,0],[22,-16],[9,-27],[12,-30],[1,-28],[-3,-28],[9,-35],[14,-22],[-1,-28],[3,-50],[-15,-26],[-44,-21],[-28,-25],[-9,-29],[0,-27],[-12,-69],[-7,-26],[-1,-3],[-30,-55],[4,-32],[23,-14],[2,-1],[25,-5],[2,0],[0,-1],[11,-32],[5,-27],[-5,-29],[-25,-29],[-13,-15],[-28,-24],[-17,-39],[0,-1],[-9,-29],[0,-1],[-26,-39],[-1,-2],[-1,0],[-24,-18],[-1,-1],[-34,-15],[-41,-5],[-24,-17],[-23,-20],[-1,0],[-27,-27],[-2,-26],[-1,-24],[0,-7],[3,-40],[-11,-32],[-32,-24],[-25,-7],[-35,-2],[-23,-1],[-2,0],[-21,-28],[8,-35],[-32,-30],[-32,-15],[-1,0],[-28,-12],[-9,-26],[-1,0],[-19,-11],[-3,-2],[-52,0],[-1,0],[-65,0],[-7,10],[-22,30],[-5,8],[-16,43],[-2,5],[-28,21],[-1,1],[-36,11],[-2,0],[-37,15],[-3,0],[-37,4],[-12,1],[-18,1],[-25,3],[-2,0],[-1,0],[-24,-5],[-21,-7],[-14,-6],[-2,0],[0,-1],[-7,-40],[-1,-3],[1,-39],[-2,-29],[-7,-32],[-2,-7],[-9,-8],[-8,-7],[-8,-7],[-32,-12],[-7,-3],[-9,-3],[-12,-5],[-7,1],[-50,6],[-18,3],[-14,-3],[-19,-4],[-18,5],[-8,2],[-2,0],[-1,1],[-30,5],[-3,0],[-25,-37],[-1,0],[-10,-35],[-10,-28],[-13,-33],[0,-1],[-12,-24],[-1,-1],[-10,-28],[-2,-30],[1,-1],[15,-27],[1,-2],[9,-30],[-16,-30],[-3,-8],[-13,-41],[-10,-4],[-41,-15],[-26,3],[-28,-8],[-1,-1],[0,1],[-31,10],[-1,1],[-14,25],[-1,2],[-19,30],[-16,21],[-24,19],[-8,26],[-8,28],[0,1],[0,1],[12,28],[2,35],[18,24],[7,33],[0,1],[-13,22],[-16,19],[-3,3],[-1,1],[-32,24],[-31,15],[-22,15],[-22,15],[-6,8],[-9,14],[-30,12],[-1,0],[-2,-1],[-26,-12],[-3,-1],[-22,-15],[-29,-6],[0,-1],[-13,-26],[-1,-1],[-10,-28],[-9,-31],[-15,-23],[-12,-25],[-2,-32],[-10,-26],[-1,-3],[-1,0],[-23,-1],[-2,0],[-3,2],[-17,13],[-11,8],[-19,17],[-2,2],[-1,0],[-23,12],[-2,0],[-33,8],[-24,13],[-9,19],[-5,12],[-1,0],[-30,30],[-26,24],[-22,12],[-26,5],[-27,-11],[-7,-1],[-29,-3],[-28,-23],[0,-1],[-15,-29],[0,-1],[3,-27],[-1,-37],[-1,-39],[-6,-25],[-13,-25],[-13,-30],[-18,-22],[0,-1],[3,-27],[0,-1],[33,-9],[49,0],[29,-2],[26,3],[15,7],[11,6],[1,0],[38,-10],[31,-39],[32,-25],[27,-37],[1,-37],[-8,-25],[-9,-25],[-14,-23],[-24,-10],[-34,-4],[-1,0],[-1,-1],[-50,-21],[-2,0],[0,-1],[-47,-35],[-16,-27],[-3,-5],[0,-9],[-1,-18],[-8,-20],[-3,-7],[-6,-27],[-2,-9],[-15,-30],[-1,-1],[0,-1],[19,-27],[-1,-1],[-2,-30],[3,-35],[-40,-20],[-24,-4],[-4,-1],[-1,0],[-71,16],[-48,11],[-27,-5],[-6,1],[-51,9],[-7,5],[-30,21],[-37,23],[-29,4],[-1,0],[-22,-3],[-6,-1],[-23,-7],[-7,-2],[-6,-11],[-15,-31],[-19,-31],[-2,-30],[-3,-30],[-16,-30],[-9,-15],[-1,-29],[15,-28],[2,-4],[12,-22],[-1,-2],[-36,-60],[-13,-22],[-10,-41],[-22,-20],[-4,-31],[-19,-25],[-23,-8],[-24,-7],[-4,-4],[-16,-11],[-40,-30],[-30,6],[-1,0],[-2,10],[-4,30],[38,45],[6,10],[10,14],[12,25],[0,1],[-94,90],[-5,5],[-5,0],[-27,1],[-34,3],[-13,1],[-40,-9],[-17,-13],[-7,-5],[-36,-15],[-12,-35],[-3,-9],[4,-29],[2,-11],[11,-74],[1,-17],[2,-23],[-1,-48],[0,-1],[-13,-32],[-34,-17],[-63,-19],[-67,-8],[-45,11],[-6,1],[-39,1],[-28,11],[-31,6],[-30,-11],[-40,-24],[-16,-40],[-21,-25],[-26,-17],[-7,-2],[-2,-1],[-8,-7],[-9,-17],[-2,-4],[-1,-3],[-64,-78],[-55,-34],[-10,-6],[-36,-27],[-21,-10],[-54,-44],[-25,-24],[-37,-43],[-20,-29],[-22,-137],[-1,-7],[-2,-11],[4,-12],[1,0],[3,-2],[3,-2],[8,-1],[17,3],[14,1],[13,-5],[7,-7],[19,-38],[1,-5],[1,-2],[2,-5],[-1,-13],[-12,-16],[-14,-10],[-16,-5],[-18,4],[-6,1],[-11,-4],[-6,-5],[-4,-4],[-9,-18],[-1,-1],[-4,-8],[-8,-9],[-9,-8],[-25,-15],[-11,-5],[-18,-9],[-9,-3],[-6,-7],[-2,-13],[3,-13],[10,-10],[4,-3],[5,-18],[1,-5],[0,-14],[0,-1],[-1,-2],[-6,-9],[-3,-13],[-5,-19],[7,-15],[-2,-8],[-16,-23],[-27,-27],[-3,-3],[-3,-2],[-2,-1],[-5,-1],[-9,-3],[-4,-3],[-40,-15],[-35,-4],[-7,-2],[-9,-3],[-3,-4],[-1,-4],[-5,-21],[-1,-3],[-57,-6],[-3,0],[-17,-18],[-18,-23],[-12,-16],[-46,-44],[-10,-8],[-2,-1],[-12,-5],[-1,-7],[-6,-47],[2,-37],[10,-22],[5,-11],[6,-15],[2,-19],[1,-1],[-1,-1],[-2,-27],[-7,-24],[-5,-7],[-3,-5],[-1,0],[-10,-7],[-2,-1],[-24,-5],[-26,-5],[-27,-5],[-5,-4],[-12,-15],[-27,-50],[-11,-20],[-2,-8],[-6,-8],[-9,-3],[-12,-4],[-3,1],[-7,0],[-20,-7],[-16,-36],[-17,-37],[-1,-5],[-3,-13],[0,-25],[-4,-1],[-8,0],[-20,-9],[-4,-1],[-24,-6],[-7,0],[-7,1],[-5,2],[-3,3],[-13,6],[-14,4],[-16,3],[-24,1],[-89,22],[-7,1],[-8,1],[-1,0],[0,1],[-6,22],[-8,19],[-9,7],[-4,3],[-12,10],[-6,-1],[-41,-16],[-11,-7],[-8,-11],[0,-16],[0,-3],[-5,-16],[-12,-20],[-5,-8],[-16,-11],[-18,-4],[-13,6],[-9,7],[-2,4],[-1,2],[-5,22],[-15,12],[-15,-3],[-11,-5],[-31,-30],[-43,-6],[-10,9],[-30,15],[-48,17],[-68,34],[-8,0],[-14,-5],[-7,-4],[-6,-10],[4,-20],[4,-7],[2,-6],[0,-1],[0,-12],[-6,-10],[-20,-4],[-9,-1],[-16,5],[-2,1],[-26,3],[-35,-3],[-6,-1],[-16,-2],[-6,-1],[-8,-1],[-8,-4],[-6,-3],[-1,-1],[-2,-2],[-19,-19],[-1,-2],[-1,-1],[-12,-23],[-17,-8],[-36,-8],[-35,0],[-34,19],[-46,16],[-13,4],[-6,-1],[-10,-6],[0,-1],[-3,-5],[-10,-19],[-8,-14],[-5,-10],[-8,-14],[-13,-25],[-2,-3],[-7,-17],[-5,-8],[-29,-20],[-42,-11],[-26,1],[-63,4],[-4,1],[-5,0],[-5,1],[-9,3],[-16,8],[-9,2],[-3,1],[-1,0],[-17,-1],[-9,-2],[-6,-2],[-12,-3],[-40,-20],[-5,-4],[-3,-3],[-5,-1],[-11,-2],[-2,0],[-15,4],[-6,2],[-10,2],[-32,12],[-9,5],[-8,4],[-2,2],[-9,18],[-2,6],[-5,12],[-4,4],[-4,3],[-1,1],[-16,4],[-26,8],[-29,-6],[-18,-10],[-4,-2],[-1,-1],[-7,-8],[-5,-6],[-12,-25],[2,-13],[5,-22],[1,-8],[1,-2],[-10,-16],[-8,-5],[-20,-4],[-35,-8],[-12,-3],[-6,0],[-10,0],[-19,5],[-96,3],[-4,0],[-64,-32],[-5,-5],[-5,-9],[-2,-7],[-3,-20],[-3,-14],[-3,-9],[-8,-13],[-25,-24],[-19,-9],[-1,0],[-12,-1],[-118,6],[-17,6],[-32,18],[-22,20],[-20,23],[-6,3],[-17,5],[-10,2],[-1,1],[-15,2],[-16,2],[-6,0],[-4,-1],[-12,-3],[-14,-9],[-21,-13],[-33,-11],[-28,-10],[-12,-1],[-26,13],[-1,0],[-4,5],[-5,7],[-8,16],[-6,14],[-2,5],[-5,4],[-10,5],[-18,4],[-9,0],[-22,-6],[-1,0],[-2,-1],[-39,-14],[-40,-17],[-1,0],[-1,-1],[-8,-5],[-8,-7],[-25,-28],[-1,-1],[-28,-26],[-8,-2],[-30,-10],[-20,-6],[-41,-9],[-10,0],[-1,0],[-17,3],[-8,8],[-18,3],[-5,0],[-28,-2],[-50,-9],[-67,-13],[-70,-24],[-20,-11],[-8,-5],[-7,-10],[-1,-1],[-19,-13],[-18,-10],[-2,-2],[-2,0],[-14,-5],[-15,-3],[-1,0],[-47,-28],[-40,-27],[-2,-2],[-1,-2],[-4,-7],[-5,-1],[-15,3],[-38,13],[-3,3],[-1,1],[-1,6],[-2,4],[-35,28],[-16,10],[-6,0],[-12,-2],[-9,-2],[-11,-8],[-4,-6],[-4,-9],[-1,-8],[1,-22],[4,-20],[-4,-13],[-4,-6],[-5,-6],[-12,-7],[-1,0],[-15,-5],[-4,-3],[-26,-21],[-9,-12],[-3,-6],[-2,-23],[0,-2],[9,-4],[1,-4],[-5,-16],[-13,-24],[-34,-34],[-23,-20],[-3,-3],[-13,0],[-1,0],[-12,2],[-7,2],[-70,37],[-13,14],[-1,3],[-7,19],[-1,3],[-6,20],[0,5],[2,5],[3,7],[1,18],[-4,4],[-1,0],[-19,9],[-11,1],[-16,-6],[-18,-11],[-15,-5],[-5,-1],[-3,1],[-12,6],[-10,7],[-11,3],[-16,2],[-1,0],[-4,0],[-7,-3],[-25,-18],[-2,-3],[0,-8],[3,-18],[-3,-5],[-6,-6],[-33,-21],[-8,-4],[-1,0],[-7,-2],[-7,0],[-6,1],[-33,2],[-3,0],[-6,-3],[-7,-5],[-4,-5],[-6,-10],[-1,-5],[1,-13],[12,-25],[4,-9],[17,-56],[-1,-5],[-1,-2],[-3,-2],[-12,-5],[-10,-2],[-1,0],[-12,0],[-10,4],[-8,6],[-9,10],[-6,3],[-14,3],[-26,-1],[-21,-5],[-4,0],[-1,0],[-8,3],[-5,3],[-11,8],[0,1],[-7,7],[-4,5],[-2,7],[-1,11],[0,1],[-4,3],[-4,0],[-12,0],[-8,-4],[-10,-8],[-15,-23],[-2,-5],[-3,-5],[-3,-3],[-16,-5],[-6,-1],[-9,2],[-5,1],[-6,5],[-4,5],[-11,9],[-9,4],[-1,0],[-19,2],[-15,-1],[0,-1],[-55,-6],[-56,-14],[-5,-6],[-32,-37],[-4,-4],[-5,1],[-7,2],[-5,3],[-3,2],[0,1],[-4,11],[0,13],[2,6],[8,13],[1,3],[-1,7],[0,3],[-12,10],[-9,4],[-14,-1],[-10,-2],[-8,-3],[-12,-10],[-8,-12],[-3,-13],[1,-19],[2,-8],[2,-2],[8,-8],[4,-13],[-1,-8],[-5,-8],[-10,-2],[-6,-1],[-5,-2],[-6,2],[-11,6],[-7,9],[-3,8],[-5,14],[-3,8],[3,12],[3,4],[16,20],[-3,9],[-16,8],[-26,-1],[-26,-6],[-27,-20],[-2,-1],[-22,-2],[-16,6],[-3,17],[4,6],[1,2],[6,8],[25,4],[4,0],[17,1],[4,2],[7,10],[0,8],[-3,11],[0,1],[-2,7],[-7,4],[-24,11],[-67,21],[-5,1],[-36,-15],[-2,-2],[-2,-4],[-2,-2],[-11,-6],[-11,-4],[-9,-2],[-5,-1],[-15,-1],[-13,1],[-2,1],[-10,5],[-12,10],[-5,10],[-2,16],[9,13],[1,1],[8,5],[6,14],[-3,7],[-16,12],[-42,-10],[-5,-4],[-24,-16],[-8,-5],[-5,-3],[-9,-2],[-5,1],[-8,4],[0,1],[0,2],[-6,15],[1,10],[4,9],[8,16],[0,6],[1,4],[1,13],[-2,13],[-10,7],[-17,2],[-19,-8],[-2,-1],[-1,0],[-28,-6],[-5,-2],[-1,1],[-2,1],[-10,4],[-7,8],[-8,16],[-6,17],[0,3],[-2,21],[-11,8],[-10,1],[-12,-2],[-5,-4],[-2,-4],[-1,-2],[-6,-11],[4,-12],[24,-54],[10,-10],[12,-6],[10,-4],[2,-2],[1,-2],[5,-6],[1,-6],[-1,-6],[-8,-10],[0,-1],[-2,-2],[-12,-3],[-13,3],[-16,3],[-23,13],[-10,6],[-12,4],[-17,2],[-28,-3],[-15,-3],[-16,-5],[-11,-4],[-9,-2],[-36,-8],[-3,-1],[-14,-5],[-3,4],[-25,35],[-6,8],[2,9],[20,35],[7,5],[6,8],[-3,12],[-7,11],[-25,24],[-9,14],[-1,3],[0,7],[7,19],[4,7],[19,15],[17,12],[9,9],[0,7],[-3,11],[-3,8],[-3,5],[-4,3],[-10,3],[-11,-1],[-10,-5],[-11,-9],[-1,0],[-9,-6],[-4,0],[-6,-1],[-9,3],[-9,8],[-3,5],[-1,9],[-1,12],[1,21],[1,5],[0,9],[-4,11],[-6,10],[-77,67],[-7,4],[-9,5],[-8,1],[-1,0],[-11,0],[-11,-4],[-17,-6],[-2,-1],[-40,-12],[-8,0],[-15,1],[-4,2],[-6,5],[-17,16],[-8,11],[-2,4],[-1,14],[0,1],[1,3],[0,9],[-3,13],[-1,2],[-3,14],[-9,20],[-37,69],[-3,3],[-6,2],[-8,0],[-5,-2],[-3,-4],[-1,-7],[-7,-16],[0,-1],[-4,-5],[-8,-6],[-8,-4],[-15,-2],[-1,0],[-9,2],[-8,6],[-6,9],[0,1],[-5,12],[-13,11],[-6,3],[-21,2],[-16,-2],[-10,6],[-1,0],[-18,17],[-4,15],[0,1],[-1,1],[-23,25],[-19,28],[-3,5],[-45,7],[-16,2],[-3,1],[-1,4],[4,15],[2,2],[13,24],[-1,2],[-5,4],[-23,12],[-1,1],[-9,2],[-7,0],[-16,-2],[-1,0],[-9,0],[-9,2],[-7,2],[-64,39],[-4,4],[-19,18],[-3,6],[3,4],[15,16],[12,10],[13,10],[6,4],[7,6],[5,8],[3,8],[1,9],[-3,7],[-3,4],[-5,4],[-12,5],[-34,7],[-11,3],[-9,4],[-7,7],[-1,1],[-1,1],[-5,8],[1,10],[1,6],[1,2],[0,2],[7,11],[4,4],[17,3],[13,5],[5,3],[4,7],[1,3],[0,6],[-11,16],[-15,15],[-38,16],[-36,14],[-5,3],[-12,11],[-5,9],[-1,4],[-3,5],[-1,34],[3,6],[4,6],[32,67],[-11,45],[0,8],[5,4],[9,2],[24,3],[11,-2],[26,-4],[7,1],[4,4],[42,52],[3,5],[1,9],[-2,7],[-9,9],[-7,5],[-9,3],[-12,2],[-23,0],[-12,2],[-15,4],[-1,0],[0,1],[-21,12],[-6,8],[-2,12],[5,9],[9,7],[21,10],[12,7],[3,3],[3,5],[1,8],[-3,6],[-3,5],[-20,19],[-11,6],[-9,7],[-4,4],[-8,9],[-21,37],[-1,2],[-8,16],[-3,17],[-3,5],[-7,11],[-8,8],[-1,0],[-10,5],[-33,3],[-1,0],[-10,3],[-9,5],[-6,5],[-4,7],[-31,85],[-1,14],[1,7],[9,24],[0,2],[2,9],[0,6],[-3,7],[-8,14],[-17,28],[-10,14],[-24,27],[-12,12],[-4,2],[-15,8],[-6,4],[-1,1],[-6,7],[-2,6],[-1,7],[2,4],[6,6],[23,13],[0,1],[7,4],[10,15],[1,9],[-2,5],[-5,3],[-6,4],[-33,9],[-6,1],[-38,16],[-12,5],[-49,61],[-7,15],[0,11],[0,21],[0,4],[-1,22],[-4,76],[-4,6],[-4,3],[-5,2],[-12,1],[-3,1],[-7,6],[-1,2],[1,5],[12,15],[-24,0],[-23,0],[-7,0],[-3,0],[-8,12],[-1,4],[0,7],[1,2],[11,20],[2,8],[0,1],[0,1],[-2,7],[-13,22],[-1,1],[0,1],[-9,10],[-7,7],[-11,5],[0,1],[-110,35],[-6,0],[-16,-5],[-21,-3],[-22,-1],[-4,3],[-3,4],[1,4],[11,28],[1,0],[1,8],[1,7],[-1,5],[-4,8],[-4,6],[-9,6],[-4,2],[-8,-1],[-1,0],[-2,-1],[-22,-12],[-1,0],[-6,-1],[-8,1],[-5,3],[-1,1],[0,8],[4,21],[0,8],[-2,3],[-6,6],[-8,4],[-31,10],[-12,4],[-11,6],[-5,4],[-4,10],[1,6],[1,3],[18,23],[6,6],[26,13],[15,15],[2,5],[6,61],[-2,7],[-9,5],[-12,6],[0,1],[-5,4],[-17,20]],[[37622,47594],[71,61],[61,53],[150,130],[5,4],[115,100],[57,49],[11,11],[22,19],[4,4],[28,23],[47,41],[68,58],[41,-23],[26,2],[57,41],[6,2],[13,0],[29,1],[64,8],[78,26],[4,3],[0,6],[3,3],[9,3],[17,5],[30,5],[47,7],[54,10],[6,7],[55,28],[4,2],[5,2],[2,1],[1,0],[7,2],[46,8],[15,3],[18,2],[11,3],[9,2],[32,10],[6,9],[18,27],[2,1],[23,16],[60,14],[55,14],[29,23],[6,7],[0,7],[2,2],[3,2],[37,1],[3,0],[9,-3],[9,-4],[1,-1],[4,-5],[4,-9],[4,-3],[11,-4],[13,-2],[72,-3],[3,-1],[8,-8],[7,-2],[22,-3],[52,7],[3,1],[1,3],[-2,9],[1,4],[4,4],[32,8],[8,2],[8,0],[39,3],[4,0],[30,2],[34,5],[5,1],[81,45],[45,31],[-1,10],[0,7],[1,2],[5,10],[5,4],[70,27],[13,2],[17,0],[25,7],[4,4],[13,15],[7,5],[20,7],[8,0],[37,9],[17,4],[6,10],[41,45],[6,6],[1,0],[12,11],[4,4],[1,1],[12,7],[24,16],[1,0],[8,5],[12,4],[7,2],[2,0],[1,0],[2,0],[25,1],[12,0],[20,1],[10,0],[9,-4],[27,-5],[15,-1],[6,0],[30,6],[24,11],[22,5],[33,3],[1,0],[15,7],[11,4],[107,23],[3,1],[2,0],[14,3],[12,-3],[7,-4],[9,-7],[6,-2],[10,0],[97,20],[19,5],[6,3],[6,8],[1,2],[3,4],[13,11],[42,15],[4,0],[15,-1],[4,-2],[11,-5],[34,-4],[19,8],[10,3],[42,8],[28,1],[16,-4],[24,-10],[8,-2],[65,0],[65,-18],[12,-6],[5,0],[5,2],[12,9],[10,5],[19,3],[8,1],[30,-4],[7,-2],[25,12],[3,7],[4,8],[8,14],[3,4],[1,1],[1,0],[5,3],[4,1],[3,1],[5,-1],[11,-4],[11,-3],[7,-5],[7,-6],[12,-11],[7,-4],[7,-2],[17,-1],[10,1],[11,7],[11,6],[8,4],[45,13],[28,2],[8,0],[7,-1],[19,-6],[29,-14],[39,5],[64,11],[18,12],[9,9],[2,1],[2,1],[11,0],[2,0],[28,-10],[28,-9],[17,1],[12,4],[8,2],[70,10],[29,8],[38,-5],[4,6],[11,10],[10,7],[5,2],[20,6],[9,0],[8,-2],[1,-1],[6,7],[1,1],[5,4],[19,7],[1,1],[15,5],[8,1],[15,1],[26,-4],[21,-4],[11,1],[10,3],[44,17],[30,11],[12,10],[20,8],[13,4],[5,0],[13,-4],[86,15],[23,10],[17,4],[16,2],[51,34],[37,5],[17,18]],[[19609,54604],[44,-213],[16,-75],[7,-40],[57,0],[-1,-57],[-61,-1],[-7,-30],[-45,-7],[-24,-32],[33,6],[29,7],[31,14],[45,5],[-1,-35],[-24,-6],[89,-15],[-30,-18],[-25,-16],[33,-36],[-14,-33],[-15,-46],[-70,-4],[-38,-1],[-35,-35],[-16,-35],[14,-26],[29,-6],[55,17],[28,-35],[34,-16],[-65,-3],[-23,-11],[-13,-26],[37,-33],[30,9],[34,14],[25,-13],[26,-12],[35,1],[27,1],[26,-11],[-22,-64],[34,-22],[89,-39],[-34,-59],[-106,43],[-30,5],[-53,-93],[29,-16],[29,-14],[29,-22],[42,-40],[49,-47],[25,0],[63,1],[25,-17],[17,-21],[36,-1],[29,32],[40,7],[16,-51],[93,32],[29,11],[32,-11],[21,-53],[22,-40],[32,-41],[40,-29],[30,2],[58,-4],[-2,-41],[34,-29],[24,-17],[48,9],[-35,8],[-29,23],[24,42],[39,11],[35,-12],[24,-12],[7,-30],[29,2],[44,-18],[65,40],[31,-4],[2,0],[49,-32],[48,-32],[33,-30],[18,-28],[11,-31],[7,-26],[-25,-42],[1,-12],[27,-3],[2,1],[2,3],[6,13],[5,5],[33,-4],[33,-2],[13,6],[20,0],[26,-7],[13,-12],[6,-11],[11,-5],[11,-12],[9,-12],[-1,-4],[1,0],[1,-23],[-38,-38],[-24,-44],[-2,-4],[-10,-9],[-23,-20],[-26,-9],[-23,-2],[-9,-9],[-13,-4],[-35,-36],[-15,-38],[-2,-2],[-9,-33],[0,-34],[1,-36],[8,-26],[5,-11],[14,-14],[1,0],[1,-3],[8,-8],[2,0],[4,-1],[4,-2],[1,0],[-2,9],[-1,3],[-1,4],[-6,7],[-15,29],[-3,21],[-1,19],[0,15],[0,17],[11,20],[1,0],[0,3],[15,31],[0,20],[22,24],[25,6],[23,9],[44,15],[27,29],[13,29],[16,37],[26,22],[32,7],[31,-17],[2,-9],[4,-16],[2,-11],[1,-2],[5,1],[9,10],[15,3],[22,-1],[21,4],[14,-8],[7,1],[2,-1],[2,2],[36,0],[24,-8],[12,-11],[2,-1],[4,-1],[15,-3],[12,-25],[0,-1],[10,-27],[-109,-103],[-18,-26],[-13,-22],[-44,-63],[-24,-42],[-23,-12],[-42,-16],[7,-8],[27,3],[27,8],[17,-32],[23,33],[25,82],[32,16],[14,27],[14,15],[6,4],[-4,14],[3,12],[14,12],[30,11],[17,-1],[1,0],[37,-23],[1,-6],[13,-11],[21,-17],[18,-12],[24,4],[3,1],[10,27],[8,-9],[8,-9],[19,-65],[27,-37],[50,-29],[30,-8],[12,-8],[21,-60],[27,3],[42,-2],[16,-1],[90,62],[79,34],[65,-27],[49,-58],[0,-1],[22,-87],[10,-37],[1,-4],[23,-118],[-1,-38],[15,-27],[26,-15],[22,-30]],[[22316,52048],[-3,-2],[-18,-7],[-54,-39],[-5,-6],[-1,-6],[10,-32],[8,-33],[1,-1],[-2,-6],[-2,-2],[-14,-5],[-2,0],[-6,0],[-4,-2],[-10,-3],[-14,-1],[-3,-1],[-4,0],[-21,-3],[-15,-1],[-69,33],[-8,6],[-6,10],[-11,11],[-7,4],[-9,2],[-4,0],[-9,2],[-79,-5],[-19,-19],[-12,-17],[-13,-5],[-3,-2],[-2,0],[-6,0],[-1,-1],[-1,1],[-4,3],[0,5],[-3,2],[-12,1],[-48,-18],[-19,-25],[-16,-18],[0,-1],[-2,-2],[-9,-12],[-1,-1],[-5,-6],[-3,-2],[-47,-50],[-3,-2],[-30,-14],[-2,-2],[-24,-6],[-4,-5],[-6,-16],[-44,-45],[-27,-18],[-2,-3],[-6,-67],[2,-5],[7,-6],[7,-7],[6,-4],[6,-5],[5,-24],[6,-39],[0,-6],[-4,-11],[-2,-2],[-10,-1],[-4,0],[-29,-7],[-2,-2],[-8,-7],[1,-6],[-9,-35],[0,-1],[-1,-27],[12,-25],[6,-30],[4,-26],[0,-28],[17,-29],[2,-26],[-9,-26],[-1,-27],[-8,-25],[-19,-20],[-14,-25],[-16,-26],[-15,-21],[-11,-26],[-17,-40],[-1,-31],[-12,-24],[4,-38],[15,-29],[21,-27],[14,-22],[11,-29],[7,-27],[16,-23],[21,-17],[17,-22],[28,-20],[12,-25],[20,-30],[19,-22],[20,-23],[36,-45],[-33,3],[-25,5],[-24,-6],[-13,-22],[-19,-24],[-24,-12],[-18,-26],[22,-10],[8,-4],[18,-14],[5,-4],[4,-28],[19,-23],[31,1],[22,20],[25,8],[28,-4],[28,-16],[15,-25],[15,-24],[26,-11],[11,-16],[5,-10],[-6,-28],[-19,-26],[-4,-29],[39,-15],[25,-1],[23,-15],[11,-9],[27,-23],[3,-27]],[[21956,50152],[1,-52],[0,-101],[-1,-126],[-1,-129],[0,-34],[5,-50],[4,-65],[2,-29],[-1,-25],[-6,-35],[-5,-19],[-11,-75],[-107,1],[-175,2],[-602,5],[-7,-273],[-194,-9],[-194,-21],[-342,-7],[70,-401],[19,-30],[55,-89],[30,-50],[34,-57],[15,-23],[64,-105],[16,-28],[-4,-7],[-15,-28],[-13,-25]],[[20593,48267],[-19,17],[-22,17],[-25,15],[-24,13],[-31,20],[-30,15],[-29,9],[-27,1],[-51,-14],[-46,-17],[-53,-28],[-14,34],[-20,19],[-26,3],[-25,15],[-4,37],[6,27],[4,36],[1,36],[-5,39],[-17,25],[-23,17],[-19,35],[-31,29],[-30,-3],[-33,17],[-20,17],[-26,10],[-11,30],[-8,48],[-10,47],[-8,28],[-21,48],[-13,26],[-36,29],[-33,27],[-30,27],[-21,16],[-31,9],[-32,14],[-31,6],[-29,-1],[-28,-12],[-27,30],[-11,42],[-11,38],[-42,22],[-24,26],[-3,36],[3,38],[-5,34],[-16,33],[-10,36],[8,68],[-21,44],[-10,27],[-16,24],[-30,41],[-8,36],[-13,30],[-8,39],[1,59],[14,31],[13,29],[11,24],[3,33],[11,42],[18,26],[5,33],[8,63],[5,28],[7,43],[8,55],[8,46],[1,49],[8,49],[4,48],[5,30],[3,41],[4,32],[4,28],[12,34],[-7,39],[6,30],[6,41],[5,31],[4,29],[2,27],[-1,45],[-3,53],[7,40],[5,41],[-11,39],[-24,17],[-26,10],[-20,51],[-2,28],[3,55],[-18,37],[-37,7],[-18,28],[-38,61],[-28,48],[-1,36],[-1,29],[-35,52],[-13,28],[1,32],[-23,15],[-18,24],[-35,84],[-21,40],[-20,47],[-23,43],[-14,29],[-3,29],[-6,86],[-6,67],[-7,86],[-15,43],[-33,118],[-11,40],[-98,116],[-56,69],[-42,24],[-77,27],[-59,2],[-69,-12],[-31,-39],[21,-30],[-49,-1],[-6,40],[-15,52],[-21,13],[-31,34],[-45,48],[-26,45],[-18,29],[-12,53],[-1,36],[-15,45],[-8,37],[13,26],[11,43],[15,28],[19,71],[-17,65],[2,41],[4,38],[-23,20],[-12,55],[3,33],[15,35],[-5,77],[-1,41],[-28,28],[56,39],[32,6],[44,-15],[25,15],[25,22],[6,55],[-7,27],[30,8],[14,32],[-10,29],[4,66],[18,101],[13,125],[3,33],[2,121],[-2,31],[-4,49],[-9,106],[-13,133],[-35,152],[-23,77]],[[37622,47594],[-899,-785],[-1335,-1166],[-43,-37],[-1380,-1205]],[[33965,44401],[-147,113],[-989,434],[-28,11],[-31,13],[-41,19],[-65,28],[-94,42],[-4,1],[-218,100],[-61,28],[-75,29],[-33,13],[-182,81],[-54,27],[-125,55],[-25,11],[-11,26],[2,29],[-2,26],[-8,26],[-22,17],[-10,26],[-16,23],[-10,25],[-9,27],[-16,28],[-11,25],[3,28],[-26,11],[-26,4],[-24,10],[-22,10],[-17,20],[-8,25],[-11,25],[-5,26],[-1,30],[-14,34],[-23,15],[-35,7],[-18,34],[-31,10],[-16,22],[-16,24],[-14,25],[7,26],[7,30],[-11,26],[1,34],[-19,20],[-21,22],[-26,11],[-24,-5],[-28,9],[-24,8],[-24,-11],[-30,-4],[-24,-12],[-24,1],[-24,5],[-31,11],[-28,-1],[-22,-20],[-27,3],[-4,28],[-7,32],[-9,32],[-25,0],[-29,10],[-14,24],[-21,20],[-6,28],[9,25],[12,31],[17,26],[1,33],[16,23],[18,24],[22,18],[27,2],[20,18],[24,25],[11,31],[25,31],[18,22],[-18,20],[-17,21]],[[31074,46721],[-25,12],[-35,24],[-15,23],[-29,6],[-32,3],[-27,13],[-19,21],[-32,23],[-18,23],[-17,23],[-28,28],[-20,31],[-7,42],[15,47],[7,25],[22,21],[19,21],[43,6],[18,32],[-9,25],[-21,30],[-12,28],[22,12],[25,14],[-30,29],[-13,24],[-26,24],[-19,25],[-19,21],[-16,23],[-8,31],[-7,27],[-11,27],[27,-11],[28,-5],[26,-2],[19,25],[22,28],[54,14],[57,36],[-4,28],[-2,90],[15,21],[4,28],[26,-2],[34,-6],[41,-17],[21,15],[18,22],[8,35],[-14,31],[0,35],[-37,6],[-7,1],[-26,18],[-49,26],[-15,24],[-12,38],[-40,24],[-22,22],[-21,16],[-23,15],[-63,-12],[-16,20],[0,40],[23,25],[28,3],[52,28],[25,9],[3,47],[-4,37],[29,8],[16,33],[-6,26],[27,41],[24,14],[23,42],[16,28],[-25,12],[-19,22],[-13,24],[3,29],[-36,59]],[[54817,52017],[17,-38],[24,-14],[33,-19],[34,6],[2,-28],[8,-26],[10,-32],[29,-45],[1,-34],[-6,-32],[-1,-28],[-19,-39],[-23,-11],[-19,-34],[-17,-42],[-37,-13],[-32,24],[-25,-7],[-25,-25],[-9,-29],[-19,-34],[-6,-35],[14,-41],[-15,-27],[-26,-40],[-7,-38],[-15,-26],[-15,-32],[25,-31],[16,-32],[19,-20],[10,-26],[30,-12],[1,-39],[19,-28],[27,-1],[17,-21],[26,-39],[10,-27],[-6,-29],[17,-31],[-19,-25],[-25,-5],[-37,3],[-34,-13],[-15,-27],[-26,-26],[-3,-30],[-9,-31],[-13,-34],[25,-32],[30,-27],[10,-31],[33,-4],[43,-9],[28,-12],[36,-12],[29,-10],[34,-19],[30,-11],[31,-25],[20,-21],[31,-9],[16,-22],[25,-12],[11,-27],[23,-14],[27,12],[10,4],[18,8],[25,25],[29,33],[37,11],[23,13],[79,15],[22,-29],[25,-22],[4,-29],[12,-27],[18,-26],[21,-27],[41,-41],[18,-28],[32,4],[-2,-38],[20,-23],[21,-33],[10,-33],[21,-16],[22,-14],[1,-37],[25,-33],[4,-36],[20,-23],[24,-21],[16,-34],[14,-25],[26,-16],[7,-26],[37,-29],[21,-31],[-23,-18],[-14,-24],[-27,-34],[-24,-41],[-28,-8],[-24,-23],[-26,-16],[-23,-28],[3,-40],[6,-28],[8,-36],[-22,-34],[-13,-23],[16,-24],[17,-19],[28,-20],[15,-29],[2,-51],[25,-10],[-40,-53],[-16,-30],[16,-24],[14,-24],[18,-19],[20,-16],[15,-32],[20,-21],[16,-21],[26,-19],[5,-34],[-9,-30],[14,-24],[11,-26],[-20,-21],[-3,-31],[-32,-29],[-20,-17],[14,-26],[17,-28],[19,-17],[-3,-28],[6,-26],[8,-32],[41,-29],[9,-26],[35,-11],[20,-21],[6,-37],[34,-18],[33,8],[21,-15],[41,-24],[25,6],[42,12],[32,-12],[25,0],[29,22],[25,8],[27,4],[33,8],[37,3],[26,-17],[29,-1],[22,-18],[25,-9],[29,-14],[31,2],[25,13],[26,-13],[13,-23],[10,-26],[8,-29],[14,-27],[12,-28],[22,-17],[30,2],[42,12],[30,-7],[39,-8],[4,-27],[4,-28],[13,-28],[32,-14],[36,15],[27,-7],[32,5],[34,-3],[36,14],[24,-17],[30,-4],[38,-3],[23,-24],[25,-8],[6,-26],[23,-31],[26,-9],[13,-30],[26,-28],[35,-6],[18,-19],[32,-29],[32,3],[28,15],[45,-1],[16,-28],[33,-13],[23,-30],[25,-7],[12,-30],[10,-25],[18,-25],[31,-32],[31,-6],[30,-22],[37,1],[40,-17],[12,-30],[25,-33],[29,1],[47,2],[43,5],[29,3],[41,10],[39,-37],[25,-14],[41,-43],[10,-27],[-21,-14],[19,-36],[3,-35],[-31,-24],[-14,-32],[8,-38],[23,-29],[49,-34],[28,-4],[13,-33],[22,-13],[19,-32],[13,-23],[-8,-44],[3,-34],[-22,-35],[-25,-18],[18,-19],[27,-21],[31,-22],[25,-18],[10,-31],[23,-16],[8,-32],[-29,-11],[-25,-10],[-8,-33],[2,-46],[23,-21],[31,-12],[28,-14],[19,-25],[4,-29],[-8,-27],[21,-24],[29,-10],[-4,-42],[14,-27],[4,-37],[-3,-26],[-3,-27],[37,3],[31,1],[17,-28],[26,-39],[19,-28],[18,-30],[11,-23],[18,-43],[13,-26],[11,-42],[3,-36],[11,-37],[41,-78],[18,-19],[19,-34],[16,-35],[23,-27],[22,-18],[-9,-26],[-16,-32],[10,-29],[21,-28],[15,-46],[34,-24],[7,-27],[-29,-31],[-32,-15],[-7,-30],[-7,-39],[-14,-27],[10,-27],[27,-10],[-3,-29],[1,-27],[15,-20],[26,-3],[-1,-37],[-6,-26],[-2,-40],[10,-40],[-1,-40],[-27,-29],[-31,-26],[-33,-29],[-23,-8],[-30,-8],[-25,1],[-26,-1],[-35,4],[-27,-3],[-26,-15],[-24,-25],[9,-30],[10,-34],[-1,-27],[17,-25],[29,-20],[24,-28],[2,-28],[14,-28],[36,-14],[8,-32],[12,-25],[25,-22],[8,-26],[4,-28],[-11,-24],[-13,-24],[-9,-51],[-19,-25],[-14,-22],[31,-26],[6,-26],[-1,-36],[7,-33],[24,-26],[5,-27],[-2,-31],[14,-22],[4,-33],[15,-22],[3,-31],[3,-58]],[[58767,44461],[-174,0],[-1636,3],[-1,-91],[-536,6],[-179,1],[-1517,16],[-1457,14],[-282,3],[-208,2],[-1,-239],[-1,-84],[-3,-455],[0,-107],[-56,0],[-223,1],[-1155,6],[-415,2],[-508,2],[-743,4],[-9,0],[-3,-369],[0,-10],[-5,-526],[-1213,9],[-372,2],[-20,0],[-68,-60],[-61,-54],[-561,-495],[-54,-47],[-15,-13],[-26,-23],[-257,-227]],[[47008,41732],[-562,-479],[-300,-255],[-12,30],[-6,13],[-8,6],[-28,18],[-6,6],[-1,1],[-4,6],[2,8],[3,4],[4,4],[9,6],[7,3],[1,6],[-4,8],[-7,7],[-30,-5],[-38,-6],[-22,-3],[-6,-1],[-6,-5],[-3,-2],[-10,-13],[-6,-5],[-11,-9],[-5,-2],[-6,0],[-43,-4],[-22,-6],[-16,-5],[-6,0],[-38,-1],[-8,1],[-12,4],[-12,4],[-13,11],[-10,5],[-1,0],[-3,0],[-6,-2],[-31,-20],[-4,-4],[-12,-22],[-3,-7],[-1,-9],[-1,-8],[-2,-3],[-5,-3],[-1,-1],[-4,-2],[-5,-2],[-10,-2],[-15,-2],[-44,-7],[-15,-2],[-7,1],[-5,0],[-8,4],[-2,1],[-20,12],[-20,9],[-10,2],[-12,-1],[-1,0],[-7,-1],[-3,-1],[-5,-4],[-11,-16],[0,-2],[-3,-9],[-9,-13],[-4,-2],[-6,-2],[-1,0],[-2,0],[-5,2],[-7,9],[0,4],[-2,2],[-3,2],[-7,1],[-13,0],[-57,-7],[-11,-3],[-5,-2],[-7,-5],[-11,-11],[-39,-55],[-1,-5],[7,-12],[12,-19],[2,-13],[-8,-31],[-21,-31],[-1,0],[-4,-7],[-30,-1],[-13,0],[-471,1],[-1474,2],[-6,-1491],[0,-22],[-3,-780],[-85,-70],[-104,-84],[-86,-76],[-89,-77],[-33,-24],[-9,-7],[-26,-21],[-91,-75],[-32,-27],[-52,-43],[-43,-35],[-69,-58],[-24,-22],[-38,-32],[-49,-41],[-90,-75],[-36,-30],[-48,-40],[-100,-83],[-25,-20],[-41,-35],[-27,-22],[-20,-18],[-50,-41],[-36,-30],[-46,-39],[-6,-5],[-22,-19],[-5,-4],[-34,-29],[-23,-19],[-75,-63],[-21,-18],[-67,-55],[-21,-15],[-21,-18],[-32,-27],[-21,-17],[-26,-21],[-21,-18],[-45,-37],[-115,-95],[-95,-78],[-5,-5],[-25,-20],[-89,-74],[-50,-41],[-57,-47],[-73,-61],[-4,-5],[-18,-16],[-24,-19],[-48,-41],[-65,-55],[-382,-325],[-59,-50],[-21,-17],[-37,-31],[-40,-34],[-87,-73],[-53,-46],[-44,-35],[-73,-62],[-48,-39],[-56,-47],[-57,-48],[-48,-41]],[[39834,35597],[-36,-3],[-41,9],[-22,32],[-15,24],[-31,5],[-23,21],[2,34],[-25,28],[-20,23],[0,27],[11,29],[-12,23],[1,32],[7,33],[-31,11],[-20,20],[-18,20],[-21,20],[-30,8],[-28,-1],[-32,20],[-21,20],[-3,28],[0,29],[-12,25],[-15,24],[-26,12],[15,23],[4,28],[-31,11],[-34,6],[-25,4],[-32,1],[-25,6],[-27,3],[-32,6],[-38,4],[-33,10],[-20,-14],[-30,-1],[-25,26],[-28,8],[-31,15],[-26,12],[-22,17],[-25,5],[-35,-11],[-34,2],[-30,-15],[-28,-1],[-22,-12],[-22,-11],[-27,-16],[-24,-8],[-25,16],[-13,28],[-4,38],[-20,25],[-26,13],[-22,15],[-24,23],[-25,17],[-3,31],[-30,10],[-22,12],[-22,14],[-25,18],[-30,-6],[-30,6],[-27,13],[-22,23],[-18,20],[-16,12],[-5,4],[-24,11],[-6,26],[-13,30],[10,27],[-20,22],[-25,8],[-25,-11],[-19,19],[-13,25],[-24,12],[-24,14],[-22,14],[-24,16],[-23,19],[-19,-22],[-24,13],[-26,0],[-13,23],[-26,-5],[-11,26],[-25,7],[-25,13],[-12,-26],[6,-30],[-25,-5],[-23,15],[-27,-1],[-24,11],[0,26],[-2,32],[4,30],[6,29],[-24,2],[-26,-4],[-25,6],[-25,4],[-23,14],[-18,23],[-7,28],[-3,27],[-20,16],[-23,13],[-28,10],[-21,13],[-24,7],[-26,-5],[-21,16],[-25,5],[-22,12],[-26,14],[-25,17],[-21,16],[-20,16],[-19,21],[-24,9],[-22,15],[-19,18],[-20,18],[-25,7],[-10,25],[-23,14],[-8,29],[-19,28],[-18,20],[14,28],[4,32],[14,23],[0,29],[23,13],[-28,33],[-17,24],[-25,30],[-17,27],[-29,10],[-29,2],[-26,7],[-15,-38],[-26,-10],[-10,-27],[-25,3],[-26,9],[-32,7],[-25,4],[-24,7],[-28,18],[-22,18],[-23,11],[-21,-15],[-27,4],[-25,-6],[-41,37],[-25,41],[24,22],[-4,32],[11,26],[-28,12],[-28,-3],[-19,26],[-10,33],[12,34],[-7,27],[-17,24],[-15,25],[-25,13],[-20,17],[-32,15],[-25,14],[25,17],[3,29],[0,31],[-7,27],[-9,31],[-5,28],[-7,25],[-2,29],[-17,20],[-26,22],[22,16],[29,9],[25,3],[2,17],[2,12],[10,27],[24,-11],[28,-11],[24,-13],[27,-1],[25,5],[-6,27],[-18,24],[13,23],[18,22],[14,23],[25,17],[0,27],[22,19],[1,27],[19,19],[4,31],[13,24],[13,26],[25,6],[24,8],[21,20],[20,16],[1,28],[-11,24],[-19,17],[-29,31],[-21,17],[-23,17],[-9,27],[-16,27],[-36,9],[-27,24],[-17,22],[-15,25],[-6,32],[-27,13],[-19,17],[-36,9],[-23,10],[-26,2],[-24,13],[-17,25],[-15,29],[-26,12],[-23,11],[-21,13],[-16,24],[-19,34],[10,25],[25,23],[36,4],[13,28],[-14,29],[-20,20],[-26,17],[7,29]],[[36297,39398],[33,38],[5,34],[-15,21],[11,26],[17,34],[-25,10],[-21,14],[-27,11],[-20,17],[14,22],[0,32],[-7,29],[21,21],[19,19],[16,34],[21,13],[15,22],[26,11],[17,20],[14,23],[19,30],[22,17],[25,2],[23,18],[26,-3],[29,3],[34,7],[29,6],[23,15],[27,-7],[27,1],[25,1],[26,-6],[23,-12],[20,16],[31,-2],[24,7],[26,9],[26,-3],[25,8],[20,19],[6,27],[27,-3],[25,0],[25,7],[19,16],[21,20],[31,4],[-3,45],[0,8],[1,58],[0,28],[-3,165],[-2,183],[1,96],[0,74],[0,11],[0,73],[-2,82],[-1,89],[2,28],[0,43],[3,139],[0,560],[-174,122],[-861,744],[-454,392],[-1029,890],[-608,525]],[[31074,46721],[-55,0],[-219,-1],[-235,-2],[-691,-4],[-58,0],[-65,-3],[-185,3],[-14,0],[-12,0],[-46,0],[-28,0],[-27,0],[-156,1],[-162,0],[-24,2],[-22,20],[-99,91],[-19,16],[-5,4],[-19,23],[-21,30],[-1,1],[-27,15],[-33,17],[-34,16],[-15,28],[-2,28],[-21,4],[-9,2],[-8,-5],[-13,-7],[-22,-11],[-33,-9],[-21,-2],[-9,-1],[-22,-28],[-6,-7],[20,-36],[-43,-16],[-6,-1],[-15,7],[-180,56],[-2,-2],[-91,-89],[-4,-10],[-2,-1],[-23,-23],[-15,-24],[-4,-7],[-6,-12],[-1,-4],[-5,-22],[-2,-4],[-2,-3],[-5,-2],[-1,0],[-16,-1],[-6,-4],[-3,-4],[-1,-4],[-3,-21],[-2,-4],[-3,-5],[-4,-2],[-8,-1],[-5,0],[-7,-4],[-1,-2],[-1,-1],[0,-4],[0,-3],[3,-5],[6,-4],[11,-7],[1,-6],[0,-1],[0,-15],[-2,-8],[-4,-4],[-7,-5],[-5,-3],[-2,-5],[1,-6],[2,-1],[0,-8],[1,-3],[0,-4],[0,-5],[-4,-16],[-1,-5],[-9,-17],[-2,-4],[-2,-3],[-3,-3],[-4,-2],[-14,-7],[-3,-4],[-2,-4],[-3,-7],[-16,-7],[-15,-6],[-11,-8],[-14,-13],[-1,-3],[-4,-13],[-5,-7],[-6,-5],[-53,-37],[-19,-12],[-43,-32],[-47,-39],[14,-27],[-17,-17],[-20,-21],[-2,-3],[-4,-1],[-5,-1],[-11,-4],[-3,-1],[-1,0],[-16,-7],[-17,-8],[-18,-8],[-27,-12],[-27,-19],[-1,-1],[-3,-2],[-2,-3],[-2,-3],[-3,-6],[-12,-25],[-4,-6],[-1,-4],[-1,-3],[0,-6],[0,-20],[0,-96],[-2,-2],[-3,-2],[-7,-5],[-3,-2],[-3,-1],[-5,-1],[-4,-1],[-78,4],[-25,2],[-46,3],[-4,0],[-38,44]],[[27512,46080],[0,1],[0,7],[3,190],[-87,0],[-2,73],[-164,-1],[-136,120],[-35,32],[8,-30],[-21,23],[-56,-6],[-58,-8],[-25,-10],[-15,-28],[9,-28],[-57,17],[-20,36],[-40,47],[-10,32],[6,31],[-13,34],[-41,-3],[-42,30],[0,40],[-6,36],[-22,39],[-37,-8],[-39,18],[-32,2],[-10,25],[-52,-9],[-29,5],[-29,-2],[-27,7],[-23,15],[-18,18],[-16,24],[1,27],[8,27],[6,30],[13,40],[-56,11],[-40,1],[-20,37],[-33,0],[-2,34],[-37,0],[-30,18],[-10,6],[-135,-59],[-30,-2],[-26,5],[30,10],[18,18],[28,3],[16,26],[-6,27],[105,102],[-37,14],[-39,33],[-12,-23],[-81,58],[56,72],[17,-24],[24,11],[-83,42],[-44,22],[-69,82],[-14,31],[-64,88],[-15,33],[-25,-1],[-22,-12],[-42,17],[3,32],[-70,3],[-44,22],[-26,12],[-24,10],[-35,41],[-90,23],[-55,46],[-42,11],[-26,-2],[-22,13],[-11,25],[-7,29],[-21,14],[-32,16],[15,26],[-18,30],[-22,21],[-23,23],[-21,15],[-25,-3],[-31,2],[-25,3],[-11,25],[-24,9],[-27,9],[-21,13],[-26,4],[-13,27],[-23,10],[-25,17],[-28,-6],[-91,8],[17,48],[-11,-4],[-50,-9],[-37,-7],[-57,24],[-59,24],[-28,11],[-19,-21],[-30,-13],[-7,29],[-27,-1],[-22,14],[-15,22],[-28,-4],[-23,18],[-22,-13],[-12,25],[-47,4],[-136,87],[-52,18],[-37,-2],[-76,28],[-30,11],[-24,8],[-44,9],[-28,6],[-25,10],[-22,16],[-24,8],[-22,16],[-18,18],[-31,27],[-15,22],[-25,15],[-48,-6],[-35,-1],[-20,8],[-15,6],[-24,16],[-37,10],[-21,45],[-41,46],[-11,24],[-8,27],[-22,16],[-25,1],[-25,11],[-32,2],[-25,14],[-19,24],[-25,-2],[-27,16],[-27,5],[-27,1],[6,26],[-20,19],[7,30],[4,26],[-23,8],[-8,26],[-19,29],[-10,30],[7,35],[-1,29],[-48,18],[-37,26],[-35,62],[-23,28],[-21,21],[-35,26],[-17,20],[-25,23],[-33,2],[-31,-27],[-27,6],[-18,37],[-32,31],[-27,23],[-22,12],[-24,32],[-25,-3],[-27,-6],[-27,3],[-25,4],[-31,26],[-7,40],[-33,24],[-26,14],[-44,14],[-6,33],[-9,36],[-28,32],[-65,82],[-27,37],[-30,38],[-25,11],[-41,-5],[-46,25],[-25,29],[-25,29],[-22,16],[-47,22],[-15,22],[-19,26],[-14,23],[7,43],[-15,28],[-20,23]],[[22316,52048],[30,-25],[26,-4],[40,-19],[40,19],[12,-53],[38,1],[39,-52],[52,-23],[42,3],[49,-25],[41,-1],[59,14],[32,-49],[2,-2],[41,5],[102,24],[35,8],[88,25],[54,-7],[-18,22],[-56,22],[35,28],[48,39],[19,-1],[28,-2],[23,-24],[30,-33],[5,-5],[-15,68],[257,21],[50,-5],[27,-2]],[[63985,52037],[3106,-2494],[1382,-1109],[268,-215],[566,-456],[1165,-938],[2309,-1889],[2640,-2160],[608,-505],[322,-267],[1351,-1123],[79,-65],[581,-483],[1665,-1383],[150,-125],[104,-86],[484,-402],[146,-121],[21,-18],[170,-143],[1747,-1469],[11,-10],[12,-10],[626,-531],[1712,-1453]],[[85210,34582],[-824,6],[-2,-172],[-4642,1],[-1229,0],[-860,1],[-109,0],[-236,-9],[-232,1],[-132,2],[-304,1],[-69,0],[-189,1],[-45,0],[-38,0],[-2,0],[-290,1],[-32,0],[-248,1],[-245,1],[-497,1],[-4295,2],[-1666,0],[-391,0],[-1450,1],[-372,0],[-128,3],[-25,1],[-161,2],[-190,4],[-229,-10],[-4,0],[-92,0],[-85,0]],[[65897,34421],[-2303,25],[-505,5],[14,-130],[-377,-1],[-447,7]],[[62279,34327],[-7,109],[13,29],[-21,54],[15,38],[-3,33],[1,29],[16,28],[42,24],[22,13],[12,32],[-37,18],[-22,20],[-14,41],[18,51],[-5,32],[20,31],[-24,13],[2,48],[4,37],[-13,28],[-3,33],[4,32],[5,27],[37,26],[27,24],[22,22],[30,1],[23,-32],[27,-9],[34,10],[34,16],[-10,31],[-6,29],[-12,31],[-25,18],[-21,30],[1,29],[16,23],[26,15],[3,31],[21,26],[-13,35],[-34,30],[-7,36],[7,43],[-18,36],[-13,27],[2,34],[24,26],[14,34],[16,27],[11,25],[-27,51],[7,29],[-25,34],[-18,32],[-13,25],[-21,16],[-26,-2],[-32,27],[-31,-3],[-28,-2],[-27,13],[-17,22],[3,30],[-27,23],[-25,1],[-22,17],[-8,40],[4,32],[28,23],[9,28],[7,26],[-15,27],[30,31],[18,25],[27,-6],[28,2],[-13,29],[9,48],[-19,18],[1,31],[-26,12],[-22,26],[-4,40],[-26,15],[-12,15],[-9,11],[-25,25],[-32,12],[-29,3],[-30,16],[-24,8],[-21,17],[-15,27],[-3,28],[-3,27],[-9,33],[2,29],[-7,29],[-4,28],[-20,22],[-24,2],[13,25],[-8,37],[-11,27],[-22,16],[-19,31],[23,19],[7,27],[-5,26],[-22,26],[-25,15],[4,28],[-27,19],[-7,29],[1,39],[3,29],[0,26],[5,49],[9,25],[-12,40],[-4,29],[-13,25],[-23,18],[-16,22],[-18,26],[-26,-20],[-30,3],[-28,33],[2,28],[5,40],[4,43],[-13,37],[1,27],[24,14],[-13,35],[-2,36],[-17,23],[-1,56],[-19,24],[-13,29],[6,31],[-11,25],[-13,27],[5,31],[18,25],[23,15],[24,20],[27,11],[37,29],[9,31],[0,34],[-12,30],[-25,23],[15,23],[10,27],[-1,29],[-2,30],[-17,20],[-29,16],[-20,15],[-28,20],[-8,36],[-9,43],[-14,24],[-19,16],[-24,18],[-23,23],[-33,15],[-25,20],[-53,12],[-6,26],[-20,27],[-23,24],[-25,12],[-29,18],[-22,27],[-14,22],[-12,28],[-11,42],[-2,33],[-10,25],[13,27],[27,18],[-1,26],[-12,30],[-21,23],[-22,20],[-20,24],[-11,27],[0,31],[-15,31],[-23,30],[-14,29],[0,30],[8,29],[7,34],[8,33],[-3,39],[-23,20],[-15,37],[-26,22],[-31,11],[-4,28],[10,26],[14,21],[0,29],[-6,27],[-1,31],[1,29],[-9,31],[23,7],[30,-3],[13,27],[-17,34],[31,8],[47,-1],[31,24],[-21,37],[-9,39],[-3,32],[17,24],[25,16],[26,20],[36,-4],[10,28],[20,17],[23,16],[-21,24],[-15,34],[-5,29],[4,41],[6,37],[-33,11],[-26,3],[-37,9],[-29,3],[-37,4],[-33,7],[-33,18],[15,34],[-14,26],[-12,27],[-14,25],[-23,22],[-14,35],[-5,29],[-41,4],[-28,5],[-29,4],[-13,31],[-15,22],[-31,23],[-29,6],[-32,5],[-10,36],[-11,26],[-14,24],[-27,9],[-30,4],[29,45],[23,15],[36,16],[32,7],[31,10],[27,13],[20,21],[23,20],[8,33],[4,27],[5,38],[6,36],[-9,29],[-23,21],[-31,3],[-24,29],[-23,14],[-26,2],[-27,22],[-12,29],[-11,24],[-34,-8],[-24,-11],[-25,-12],[-27,-2],[-28,-7],[-27,-17],[-28,1],[-25,3],[-34,-4],[-26,-5],[-23,7],[-29,1],[-32,-3],[-35,11],[-16,20],[-64,6],[-37,-4],[-19,20],[-20,18],[-4,29],[27,10],[10,28],[7,29],[-15,27],[-24,18],[-10,34],[-4,35],[-7,31],[-25,20],[-27,15],[-12,28],[-24,13],[-26,6],[-31,4],[-19,19],[-2,28],[-20,23],[-19,25],[0,33],[-29,3],[-27,21],[-34,9],[-28,15],[-7,33],[14,24],[24,15],[33,16],[27,5],[18,19],[25,21],[-25,21],[-19,25],[-10,27],[17,31],[10,27],[-13,28],[20,25],[-15,22],[-2,32],[1,32],[0,41],[-48,-17],[-29,-6],[-18,27],[-20,17],[0,28],[7,28],[6,43],[-4,28],[-18,19],[-9,31],[-41,6],[-26,8],[-16,21],[-7,27],[-23,26],[-30,11],[-31,-1],[-42,-13],[-20,25],[-24,24],[-37,11],[-29,5],[-32,15],[-20,26],[-3,30],[-5,26],[-1,26],[8,28],[18,24],[-19,19],[-23,14],[17,23],[10,24],[26,25],[5,26],[-11,29],[14,24],[32,0],[28,7],[36,11],[19,26],[7,32],[-48,45],[-13,25],[-26,-8],[-32,-4],[-32,4],[-30,15],[-17,20],[-20,18],[-11,30],[-23,13],[-14,27],[7,29],[-22,17],[-24,6],[-26,12],[-12,29],[-26,14],[-32,4],[-24,9],[-17,25],[4,35],[-4,28],[19,40],[-26,18],[-14,29],[-11,24],[-19,18],[-30,16],[-23,17],[-20,15],[-28,12],[-17,23],[5,28],[16,27],[22,18],[28,19],[15,30],[-19,28],[-21,21],[-63,14],[-36,-1],[-27,-3],[-11,23],[-7,29],[-20,25],[-17,35],[-35,10],[-22,17],[-32,11],[-30,15],[-19,30],[13,23],[24,17],[35,11],[30,-7],[39,-2],[34,12],[24,20],[22,23],[21,22],[34,9],[22,16],[5,28],[-9,29],[3,32],[-4,36],[-8,38],[-17,33],[-5,34],[-5,29],[-27,15],[-22,25],[-19,22],[-22,26],[-14,25],[-20,15],[-32,11],[-26,11],[-59,41],[-45,0]],[[27512,46080],[-23,3],[-21,2],[-22,2],[-6,1],[-12,-1],[-43,-2],[-19,-6],[-5,-1],[-29,-3],[-4,-5],[-31,-4],[-26,1],[-7,2],[-7,2],[-4,2],[-9,4],[-18,13],[-80,58],[-44,10],[-13,15],[-13,17],[-2,3],[-5,6],[-7,2],[-4,0],[-5,-2],[-13,-14],[-2,-3],[-38,-59],[-16,-28],[-11,-17],[-12,-25],[-2,-3],[-22,-19],[-8,-2],[-25,-6]],[[26904,46023],[-7,-1],[-8,-2],[0,12],[-1,3],[4,7],[1,4],[0,12],[-3,33],[-3,1],[-8,3],[-4,1],[-6,2],[-4,-7],[-2,-3],[-12,-12],[-4,0],[-10,5],[-3,3],[-7,7],[-4,4],[-3,9],[-1,5],[-1,4],[1,4],[2,3],[3,3],[0,12],[0,35],[-19,27],[-34,11],[-85,-4],[-1,-1],[-17,-17],[-6,-2],[-5,-3],[-17,-6],[-8,-5],[-31,-27],[-14,-15],[-8,-6],[-29,-15],[-12,-4],[-17,-4],[-9,1],[-12,5],[-49,23],[-8,4],[-6,5],[-6,8],[-12,34],[-2,4],[-7,22],[-2,6],[-9,18],[-5,8],[-6,4],[-6,2],[-5,1],[-7,-2],[-5,-3],[-8,-4],[-25,-18],[-6,-3],[-9,-2],[-10,-1],[-7,2],[-9,8],[-22,7],[-10,3],[-3,0],[-5,0],[-3,-3],[-6,-9],[-9,-35],[-2,-5],[-3,-6],[-3,-3],[-5,-3],[-7,0],[-18,9],[-10,5],[-5,4],[-17,12],[-14,15],[-21,9],[-7,2],[-1,0],[-5,1],[-9,0],[-4,-1],[-1,0],[-3,-3],[-7,-21],[-9,-7],[-60,-26],[-12,-2],[-24,-1],[-11,1],[-4,0],[-45,9],[-9,-1],[-20,-22],[-27,-16],[-8,-7],[-23,-18],[-21,-19],[-4,-4],[-6,-7],[-5,-5],[-7,-14],[0,-1],[-2,-6],[-19,-37],[-25,-20],[-7,-6],[-4,-3],[-4,-8],[0,-2],[-6,-28],[-48,-33],[-18,-12],[-5,-2],[-6,-2],[-11,-2],[-2,0],[-7,-1],[-26,-1],[-11,2],[-9,3],[-8,6],[-10,7],[-4,1],[-12,7],[-5,3],[-11,-2],[-5,-2],[-12,-5],[-3,-1],[-3,-3],[-12,-11],[-36,-30],[-15,-13],[0,-1],[-8,-10],[-12,-29],[-17,-23],[-16,-16],[-15,-12],[-23,-21],[-2,-5],[-3,-5],[0,-7],[2,-4],[0,-1],[18,-45],[3,-10],[1,-4],[0,-1],[0,-2],[4,-13],[2,-9],[-2,-8],[-3,-6],[-7,-8],[-6,-5],[-7,-5],[-4,-1]],[[25355,45607],[-23,-15],[-26,-11],[-25,-13],[-26,41],[-43,76],[-67,117],[-28,55],[-115,182],[-86,141],[-80,134],[-62,98],[-21,25],[-14,26],[-59,67],[-34,34],[-40,40],[-136,119],[-113,76],[-9,3],[-23,10],[-37,16],[-100,42],[-50,19],[-26,10],[-56,3],[-29,-7],[-28,-19],[-62,-41],[-27,-6],[-2,-2],[-39,-28],[-44,-43],[-24,-26],[-18,-25],[-27,-19],[-46,-32],[-42,-5],[-53,31],[-71,29],[-28,-12],[-90,25],[-18,-4],[-62,20],[-22,0],[-36,0],[-73,-9],[-20,-36],[15,-30],[-12,-30],[-17,-22],[-27,8],[-29,-3],[-40,10],[-27,4],[-55,-29],[-51,-14],[-25,8],[-53,1],[-50,-7],[-30,-5],[-24,8],[-38,11],[-34,4],[-36,25],[-29,-7],[-38,7],[-47,12],[-38,11],[-54,3],[-47,7],[-31,16],[-37,33],[-22,19],[-47,7],[-33,31],[-38,-7],[-40,16],[-31,8],[-58,78],[-36,18],[-35,7],[-25,-12],[-26,-1],[-13,26],[-20,49],[-44,26],[-22,24],[-39,0],[-36,48],[-26,16],[-31,19],[-45,16],[-21,13],[-1,27],[-21,14],[-28,20],[-35,29],[-32,27],[-41,28],[-26,10],[-35,7],[-46,69],[-39,17],[-23,27],[-44,4],[-53,74],[-20,51],[-14,33],[-160,155],[-30,29],[-26,25],[-27,52],[-10,28],[-28,31],[-21,31],[-22,41],[-29,11],[-12,27],[-26,50],[-38,27],[-16,57],[-17,24],[-34,25],[-37,43],[-33,22],[-36,37]],[[36297,39398],[-12,24],[-18,20],[-25,-6],[-25,4],[-24,16],[-19,23],[-13,23],[-24,9],[-13,28],[-14,23],[-23,12],[-18,22],[-23,8],[-30,-9],[-21,13],[-21,14],[-24,7],[-20,18],[-22,12],[-23,9],[-27,23],[-17,21],[-32,23],[-21,19],[-25,11],[-23,16],[-24,10],[-27,13],[-21,18],[-18,19],[-29,9],[-25,-3],[-17,-19],[-30,-2],[-25,8],[18,-25],[21,-16],[29,-6],[34,-32],[15,-9],[1,2],[25,-24],[29,-46],[14,-25],[21,-42],[5,-15],[3,-8],[4,-2],[12,-7],[11,-40],[5,-27],[6,-29],[11,-14],[24,-19],[7,-4],[3,-2],[11,-5],[15,-10],[2,-2],[-1,-7],[-1,-3],[6,-24],[5,-3],[2,-1],[19,-19],[26,-41],[9,-15],[1,-7],[2,-7],[13,-46],[3,-21],[1,-1],[11,-35],[8,-5],[5,-5],[5,-13],[2,-10],[3,-13],[8,-36],[20,-41],[6,-15],[13,-37],[8,-34],[2,-9],[-2,-34],[-1,-6],[-2,-41],[3,-8],[7,-6],[-1,-14],[1,-31],[6,-8],[0,-1],[5,-20],[0,-8],[-1,-7],[-6,-36],[-8,-25],[-2,-7],[-5,-5],[-1,-2],[-10,-9],[-14,-10],[-26,-18],[-7,2],[-7,1],[-6,0],[-11,-2],[-5,-2],[-15,-6],[-3,6],[-6,8],[-5,3],[-10,7],[-31,17],[-17,6],[-27,5],[-39,7],[-4,0],[-14,-1],[-6,-1],[-7,-2],[-6,-3],[-3,-2],[-4,-4],[-7,-7],[-5,-4],[-34,-26],[-39,-14],[-13,1],[-21,1],[-23,2],[-22,6],[-84,42],[-8,15],[-2,6],[-5,18],[-4,11],[-3,8],[-3,3],[-3,2],[-7,5],[-14,12],[-2,1],[-18,30],[-2,4],[-7,24],[-13,23],[-7,8],[-12,6],[-2,2],[-5,0],[-24,3],[-4,0],[-23,16],[-7,6],[-12,17],[0,5],[-12,27],[-1,1],[-2,5],[-4,6],[-5,6],[-5,3],[-1,0],[-14,1],[-32,9],[-3,2],[-2,3],[-3,6],[1,6],[-17,25],[-16,1],[-4,0],[-10,0],[-47,13],[-23,15],[-49,39],[-30,40],[-4,6],[-7,35],[1,15],[1,10],[0,1],[-9,9],[-25,6],[-48,12],[-4,1],[-4,1],[-8,4],[-34,22],[-6,4],[-7,5],[-5,4],[-34,24],[-31,-6],[-5,2],[-2,3],[-2,6],[1,4],[3,9],[0,5],[0,3],[-1,3],[-4,3],[-5,0],[-15,-2],[-11,-1],[-5,42],[0,3],[-4,6],[-14,25],[-6,44],[3,16],[0,1],[-2,6],[-5,9],[-45,41],[0,1],[-13,7],[-1,1],[-2,0],[-9,2],[-13,-1],[-8,3],[-4,2],[-2,2],[-1,0],[-7,7],[-2,4],[-1,5],[1,9],[1,3],[-1,6],[-2,3],[-4,2],[-7,-1],[-22,-6],[-5,-1],[-10,-6],[-1,4],[-5,13],[-10,9],[-35,28],[-15,11],[-3,3],[-24,12],[-30,16],[-7,1],[-19,-3],[-2,0],[-19,16],[-14,1],[-32,3],[-7,-1],[-43,-13],[-2,0],[-18,-6],[-7,-3],[-5,-5],[-4,-5],[-6,-11],[-1,-2],[-4,-4],[-5,-2],[-5,0],[-5,2],[-10,8],[-10,10],[-2,3],[-7,11],[-14,19],[-45,57],[-4,2],[-35,8],[-2,1],[-13,4],[1,9],[1,5],[-1,1],[-2,3],[-1,1],[-4,1],[-10,-1],[-6,-3],[-1,-1],[-2,1],[-2,0],[-2,1],[-14,6],[-8,6],[-1,1],[0,1],[-6,8],[-6,17],[-1,2],[0,1],[-2,2],[-3,4],[-8,3],[-56,21],[-6,2],[-3,1],[-6,1],[-8,-1],[-43,-17],[0,-1],[0,-10],[-2,-35],[-2,-38],[-14,-3],[-13,-3],[-3,0],[-6,4],[-5,2],[-5,0],[-6,-3],[-1,0],[-1,-1],[-18,-13],[-33,-59],[5,-11],[11,-20],[-1,-2],[-3,-9],[-2,-3],[-2,-4],[-36,-61],[-3,-4],[-3,-6],[-5,-7],[-12,-17],[-11,-6],[-32,-18],[-39,-21],[-8,0],[-34,0],[-30,10],[-1,1],[-6,12],[-1,3],[-6,19],[-2,3],[-3,1],[-5,0],[-14,1],[-8,1],[-5,-1],[-2,0],[-12,-7],[-2,23],[0,1],[-3,4],[-10,9],[-27,26],[-11,8],[-9,3],[-3,1],[-11,3],[-12,16],[-1,5],[0,2],[-14,7],[-21,-1],[-57,9],[-2,1],[-4,2],[-9,7],[-2,3],[-1,1],[-1,5],[-15,-12],[9,-9],[3,-5],[0,-2],[0,-4],[-11,-20],[-10,-18],[-8,-15],[2,-33],[0,-10],[8,-48],[-1,-6],[-3,-5],[-1,-2],[-2,-2],[-28,-35],[-4,-5],[-4,-3],[-8,-9],[-7,-2],[-16,1],[-3,0],[-13,3],[-4,-1],[-42,-2],[0,-7],[-2,-3],[-3,-5],[-5,-4],[-20,-11],[-72,-29],[-2,-1],[-2,2],[-13,15],[0,3],[0,2],[2,13],[-12,9],[-1,0],[-1,0],[-2,0],[-6,-5],[-3,-4],[0,-4],[-1,-6],[-1,-15],[-3,-17],[-2,-4],[-24,-39],[-58,1],[-23,0],[-1,2],[0,3],[-5,17],[-9,58],[-1,1],[0,3],[0,17],[1,2],[2,4],[2,1],[3,1],[7,3],[3,-1],[6,-1],[4,1],[5,4],[0,14],[-17,33],[-4,3],[-2,1],[-2,1],[-4,1],[-12,2],[-1,0],[-7,-1],[-11,-5],[-10,-2],[-5,0],[-20,4],[-3,-22],[-2,-3],[-4,-5],[-24,-12],[-19,165],[0,39],[-2,185],[0,32],[0,27],[-2,98],[-735,644],[-319,282],[-472,415],[-13,66],[-23,11],[-20,21],[-20,31],[-27,14],[-25,23],[-15,24],[-20,36],[-18,22],[-21,-13],[-21,14],[-23,-9],[-24,-10],[-21,16],[-19,18],[-5,26],[17,25],[2,43],[-21,22],[-18,26],[11,27],[-19,20],[-16,32],[-22,15],[-11,36],[-15,25],[-33,23],[-31,10],[-23,-7],[-25,-5],[-26,-12],[-34,1],[-31,-2],[-26,-8],[-25,-1],[-25,-12],[-29,1],[-22,11],[-26,-2],[-28,-7],[-29,3],[-25,21],[-26,0],[-27,9],[-26,5],[-29,-8],[-22,-10],[-25,15],[-22,-20],[-22,-18],[-23,-18],[-27,5],[-16,24],[9,26],[3,26],[17,21],[20,22],[-6,26],[12,25],[24,9],[7,26],[23,13],[18,19],[18,19],[13,25],[-13,24],[1,26],[-19,25],[-13,24],[-15,24],[-24,9],[-24,23],[-13,24],[-21,15],[-16,24],[-22,19],[-25,-5],[-22,15],[-26,19],[-24,4],[-24,7],[-27,17],[-6,27],[10,29],[-29,13],[10,24],[-9,27],[2,27],[-17,22],[-4,26],[17,21],[31,8],[24,-2],[25,11],[-13,27],[-1,28],[-21,16],[5,27],[23,15],[-3,28],[-4,27],[-1,29],[5,31],[7,28],[15,23],[26,3],[3,29],[7,28],[-29,25],[-21,14],[-15,21],[-24,23],[-19,19],[-24,11],[-18,20],[-16,21],[-14,23],[-17,25],[-24,22],[-2,26],[-17,19],[8,26],[-9,28],[-22,12],[-19,17],[-22,13],[-5,28],[-25,11],[-25,19],[-38,33],[-22,15],[-24,9],[-20,16],[-28,-4],[-25,-7],[-29,-7],[-20,-15],[-26,0],[-30,1],[-27,11],[-24,1],[-26,9],[-26,-7],[-24,5],[-33,17],[-21,-14],[-25,-2],[-32,6],[-19,21],[-7,26],[-12,24],[-12,27],[-11,27],[-8,30],[-14,25],[-26,3],[-26,3],[-23,10],[-29,10],[-21,15],[-26,17],[-29,-8],[-24,-9],[-21,-14],[-21,-16],[-26,-11],[-26,7],[-18,28],[-15,25],[-24,12],[-25,6],[-22,16],[-16,21],[-18,20],[-26,-7],[-28,-4],[-25,8],[-5,29],[-10,32],[-18,23],[-13,25],[-16,21],[-18,21],[-7,29],[-25,8],[-9,26],[-7,27],[-17,22],[-11,27],[11,25],[27,-1],[25,-1],[25,7],[24,8],[28,2],[26,5],[27,4],[25,2],[23,11],[22,15],[28,9],[23,32],[-3,32],[-21,29],[-22,25],[-22,20],[17,22],[-27,9],[-2,32],[-18,25],[-22,15],[-20,16],[-27,0],[-26,1],[-13,23],[-22,14],[-9,33],[15,31],[-5,33],[-17,24],[-23,16],[-11,25],[-27,2],[-25,-8],[-28,-1],[-26,-11],[-29,-4],[-29,-22],[-26,-2],[-21,0],[-15,-31],[-42,41],[-25,23],[-34,31],[-59,56],[-142,128],[-127,114],[-81,78],[-27,26],[-39,37],[-113,108],[-72,67],[-79,71],[-22,21],[-44,39],[-50,23],[-27,11],[-35,13],[-30,12],[-28,11],[-51,20],[-28,25],[-27,35],[-45,62],[0,1],[-72,106],[-48,68],[10,29],[7,27],[-6,32],[-5,26],[-6,35],[-7,31],[-2,14],[-6,34]],[[39834,35597],[24,7],[40,1],[38,-2],[25,-3],[33,3],[33,-2],[39,-15],[27,-1],[32,-5],[24,7],[28,7],[28,-5],[19,-18],[18,-24],[22,-14],[19,-18],[24,-17],[23,-11],[33,-28],[15,-25],[20,-19],[19,-17],[22,-12],[26,-24],[20,-21],[18,-34],[22,-16],[5,-33],[-17,-21],[9,-29],[19,-22],[19,-19],[-23,-17],[-31,-8],[-19,-19],[-13,-33],[-17,-20],[-23,-11],[-25,-6],[9,-25],[-22,-14],[-7,-36],[-8,-30],[11,-24],[25,-9],[10,-27],[18,-35],[8,-27],[14,-30],[13,-35],[24,-17],[16,-25],[35,3],[36,8],[26,-19],[33,0],[13,-24],[28,5],[30,-10],[31,-10],[18,-32],[8,-40],[-1,-27],[-11,-25],[15,-32],[-1,-27],[15,-27],[0,-29],[15,-27],[-14,-62]],[[40796,34344],[-1111,5],[-1665,8],[-134,6],[-135,1],[-131,2],[-60,0],[-140,1],[-162,2],[-38,0],[-36,0],[-42,0],[-45,0],[-56,-1],[-83,1],[-66,0],[-89,0],[-109,0],[-28,0],[-85,0],[-37,0],[-70,0],[-217,0],[-87,0],[-31,1],[-41,0],[-102,1],[-93,1],[-59,0],[-5,0],[-40,0],[-10,0],[-31,0],[-5,0],[-30,0],[-61,0],[-34,0],[-36,2],[-45,0],[-57,1],[-37,1],[-47,0],[-36,0],[-32,0],[-57,1],[-17,0],[-14,0],[-53,0],[-82,0],[-44,0],[-98,0],[-40,1],[-66,1],[-38,1],[-43,0],[-52,1],[-77,-1],[-55,0],[-36,-1],[-34,0],[-42,-1],[-116,3],[-90,1],[-165,1],[-39,0],[-31,1],[-31,0],[-25,0],[-98,1],[-60,0],[-153,1],[-116,1],[-50,0],[-96,1],[-91,1],[-109,1],[-81,-2],[-35,0],[-59,8],[-901,6],[-879,6],[-210,-3],[-257,3],[-91,1],[-227,1],[-19,0],[-62,1],[-45,0],[-307,2],[-204,1],[-46,1]],[[29797,34415],[-24,15],[-25,35],[-35,24],[-42,39],[-28,23],[-41,12],[-28,23],[-39,3],[1,31],[-27,22],[-22,15],[-32,16],[-33,20],[-28,20],[-28,32],[-22,31],[-28,45],[-36,35],[-22,23],[-14,25],[-24,25],[-19,28],[-13,30],[-15,28],[-19,23],[-33,32],[-36,9],[-34,6],[-25,9],[-29,18],[-21,22],[-35,21],[-54,24],[-18,26],[-32,12],[-18,30],[-25,32],[-22,19],[-50,31],[-24,15],[-21,32],[-17,28],[26,63],[-9,39],[-25,4],[10,49],[-16,31],[-42,48],[-14,26],[-22,15],[14,31],[0,27],[26,13],[10,36],[-26,36],[-39,15],[-19,17],[8,35],[-9,40],[-19,36],[-9,25],[-9,34],[-23,22],[-4,47],[-6,34],[-13,32],[2,28],[-8,31],[-8,39],[-17,31],[-11,31],[-18,69],[-18,26],[-20,27],[-20,27],[-18,39],[-17,41],[-20,26],[-2,2],[-34,30],[-20,16],[-48,30],[-37,7],[-62,17],[-43,35],[-26,12],[-44,12],[-28,4],[-32,3],[-31,20],[-45,13],[-40,7],[-33,4],[-25,4],[-44,0],[-33,-3],[-23,15],[-42,32],[-13,23],[-23,56],[-14,26],[-23,44],[-16,32],[-26,32],[-40,36],[-7,33],[-18,55],[2,46],[-3,39],[-46,37],[-30,15],[-61,32],[-16,38],[-39,34],[-18,26],[-19,31],[-27,30],[0,27],[-8,25],[-15,30],[-10,48],[-19,38],[-20,33],[-34,42],[-5,28],[-21,35],[-10,44],[-23,17],[-26,6],[-41,40],[-27,28],[-23,32],[-19,34],[-25,26],[-18,27],[-29,26],[-23,35],[-29,22],[-23,19],[-15,22],[-19,19],[-26,17],[-17,23],[-15,27],[-14,31],[-61,26],[-24,19],[-25,11],[-26,19],[-35,21],[-29,22],[-24,7],[-13,29],[-12,33],[-22,15],[-37,29],[-13,31],[-25,20],[-33,17],[-13,27],[-36,23],[-29,15],[-45,11],[-34,27],[-50,21],[-29,14],[29,5],[10,24],[-28,-16],[-29,14],[-48,27],[-42,7],[-32,4],[-35,35],[-35,26],[-28,17],[-22,18],[-28,17],[-45,22],[-25,20],[-61,23],[-41,8],[-27,21],[-27,18],[-36,11],[-51,15],[-55,-19],[-33,7],[-33,8],[-28,34],[-33,35],[-35,8],[-38,14],[-17,33],[-21,14],[-52,22],[1,41],[-9,32],[-19,35],[-20,37],[-25,45],[-19,28],[-28,42],[-23,21],[-35,38],[-29,14],[-26,-7],[-26,3],[-18,30],[-26,28],[-31,13],[-40,17],[-25,21],[-16,28],[-27,20],[-11,31],[-33,40],[-30,9],[-38,7],[-35,8],[-32,-12],[-23,39],[44,-6],[13,50],[13,36],[4,36],[-3,34],[1,44],[-9,26],[23,24],[11,27],[-4,29],[-4,27],[2,33],[-13,27],[-23,16],[-18,31],[-14,22],[-26,20],[-20,21],[-21,27],[27,19],[-10,26],[29,21],[-10,92],[-45,-2],[26,25],[2,37],[26,58],[0,37],[-26,42],[9,37],[-16,26],[-16,29],[-39,18],[-25,17],[0,40],[-17,34],[-12,53],[0,29],[2,5],[14,35],[5,30],[-16,42],[-19,31],[-11,26],[-12,32],[-26,38],[-14,36],[-36,49],[-7,54],[37,16],[-7,49],[-21,37],[-13,26],[-20,25],[-29,22],[-24,34],[-12,31],[0,27],[-15,42],[-14,36],[-30,40],[-2,35],[41,29],[25,34],[-12,34],[3,34],[-28,30],[-9,36],[-23,15],[-23,9],[-27,27],[-25,13],[-14,41],[33,9],[47,8],[16,-21],[35,17],[0,-31],[31,-10],[5,38],[24,-2],[35,15],[27,-9],[15,13],[15,13],[-10,28],[3,30],[-15,21],[-5,43],[-1,1],[-21,26],[-23,7],[-9,35],[21,21],[17,30],[-14,72],[-22,55],[-21,15],[-26,6],[-27,-11],[6,44],[-27,12],[-36,3],[-26,8],[-21,-41],[-8,-31],[-24,10],[-19,18],[-40,30],[-29,17],[-49,15],[-22,26],[-21,25],[-8,30],[-23,21],[15,39],[29,12],[20,-16],[51,50],[11,25],[-16,20],[25,33],[2,53],[15,42],[17,44],[27,31],[26,-16],[25,0],[29,16],[13,25],[32,41],[17,42],[5,30],[14,24],[22,47],[-21,31],[26,33],[42,1],[62,-10],[23,-9],[23,-24],[5,-32],[33,-26],[25,1],[20,-47],[34,-11],[37,-2],[23,-17],[41,-34],[21,-37],[19,-36],[11,-28],[7,-34],[36,-11],[69,-14],[80,19],[88,49],[62,45],[52,62],[82,85],[78,112],[34,68],[18,28],[20,37],[18,36],[14,28],[16,24],[40,97],[24,59],[5,43],[15,33],[14,37],[38,173],[12,55],[7,32],[13,61],[5,144],[1,34],[14,54],[-11,56],[2,44],[5,48],[2,14],[1,9],[7,21],[6,20],[6,14],[5,13],[14,30],[7,28],[3,37],[11,45],[10,35],[9,45],[10,38],[25,45],[10,25],[-3,29],[20,63],[15,31],[7,52],[27,14],[-2,-54],[16,42],[8,32],[5,3],[23,15],[27,0],[29,9],[47,1],[18,21],[31,-13],[52,3],[8,1],[2,0],[35,0],[23,8],[42,14],[8,3],[8,2],[19,22],[16,55],[8,66],[18,24],[-1,48],[-7,36],[-49,25],[-31,12],[-27,-3],[-14,24],[-21,17],[-31,33],[0,12],[-1,24],[0,34],[13,1],[28,2],[-25,17],[-25,-12],[0,-4],[0,-80],[23,-23],[20,-20],[22,-27],[20,-17],[19,-5],[15,-4],[35,-7],[4,-1],[1,-3],[14,-27],[3,-15],[3,-28],[-8,-9],[-17,-19],[-14,-35],[-10,-73],[-1,-7],[-36,-26],[-12,-3],[-34,-8],[-30,-8],[-48,-4],[-27,40],[-47,-43],[-84,-2],[-42,-27],[-7,-4],[-22,25],[-15,-26],[-32,55],[-17,27],[-14,22],[-27,49],[-12,24],[-18,44],[-29,64],[-23,61],[-21,43],[16,30],[12,39],[22,23]],[[62279,34327],[-1815,25],[-134,2],[-413,7],[-186,-1],[-207,1],[-248,2],[-7,0],[-167,1],[-97,1],[-131,1],[-86,0],[-88,-4],[-69,3],[-113,4],[-119,5],[-100,5],[-85,3],[-39,1],[-79,0],[-52,1],[-44,1],[-7,0],[-44,1],[-91,2],[-74,0],[-46,-5],[-100,-8],[-95,-9],[-59,-6],[-30,-2],[-31,-1],[-190,-1],[-2,0],[-182,0],[-117,0],[-93,1],[-57,0],[-61,0],[-96,0],[-324,1],[-33,0],[-24,-3],[-95,1],[-127,1],[-259,1],[-252,2],[-17,0],[-323,2],[-36,0],[-81,0],[-63,0],[-27,0],[-43,0],[-25,0],[-287,1],[-49,0],[-35,1],[-225,1],[-84,0],[-86,0],[-125,1],[-30,0],[-139,0],[-274,-1],[-31,0],[-89,0],[-170,0],[-42,1],[-87,0],[-309,1],[-29,0],[-129,0],[-57,-1],[-95,1],[-140,0],[-186,0],[-80,-1],[-1,0],[-46,1],[-52,0],[-53,0],[-29,0],[-67,1],[-90,-1],[-102,1],[-39,0],[-36,0],[-85,1],[-106,-1],[-90,-2],[-86,0],[-87,-1],[-85,1],[-87,-1],[-76,1],[-57,-1],[-39,0],[-45,0],[-43,0],[-86,-1],[-85,0],[-43,1],[-45,-1],[-27,1],[-60,0],[-32,-1],[-32,0],[-25,0],[-50,0],[-26,0],[-9,0],[-18,0],[-27,0],[-43,-1],[-86,0],[-86,0],[-94,0],[-72,0],[-85,-1],[-176,0],[-44,0],[-44,0],[-70,1],[-39,0],[-128,0],[-10,0],[-19,-1],[-18,0],[-167,-5],[-166,5],[-81,-1],[-134,-1],[-37,1],[-52,-1],[-35,1],[-85,-1],[-100,-1],[-54,0],[-31,0],[-85,-1],[-74,-1],[-178,0],[-97,1],[-176,-2],[-80,-2],[-6,2],[-41,-1],[-80,5]],[[47379,34360],[16,2216],[0,59],[2,254],[1,75],[2,339],[1,140],[1,168],[2,231],[1,190],[72,0],[5,1384],[500,-10],[8,628],[3,245],[6,530],[-517,5],[2,109],[0,28],[1,33],[0,60],[0,77],[1,39],[0,54],[0,57],[0,31],[1,27],[0,37],[0,64],[0,302],[-51,0],[-428,0]],[[47379,34360],[-56,-4],[-50,0],[-74,-1],[-73,0],[-68,1],[-25,2],[-41,0],[-29,0],[-75,0],[-27,0],[-37,0],[-77,-1],[-38,1],[-36,-1],[-34,0],[-26,1],[-75,-3],[-52,2],[-122,6],[-26,1],[-42,0],[-96,0],[-70,-7],[-1100,-2],[-179,0],[-61,1],[-27,-1],[-161,-2],[-233,1],[-37,-1],[-40,0],[-37,0],[-26,-1],[-26,0],[-30,0],[-2,0],[-38,0],[-32,0],[-37,0],[-25,-1],[-46,0],[-158,1],[-92,2],[-40,0],[-42,2],[-114,0],[-63,-1],[-80,0],[-59,0],[-99,0],[-44,0],[-54,-1],[-37,0],[-40,-1],[-9,0],[-43,-1],[-39,0],[-30,-1],[-51,-1],[-9,0],[-38,-2],[-59,0],[-38,1],[-43,0],[-32,-1],[-48,0],[-36,0],[-54,-1],[-37,1],[-77,0],[-56,1],[-44,-1],[-40,-1],[-45,-1],[-46,0],[-38,1],[-36,0],[-44,1],[-86,0],[-65,0],[-61,-1],[-31,0],[-21,0],[-6,0],[-26,0],[-26,0],[-26,0],[-25,0],[-31,1],[-34,0],[-49,1],[-49,0],[-35,0],[-63,1],[-38,0],[-65,1],[-54,0],[-92,0],[-49,0],[-53,0],[-85,-4]],[[41009,34347],[-149,-3],[-64,0]],[[97067,16396],[-353,-2],[-114,-1],[-2690,-22],[-227,-2],[-548,-5],[-152,-1],[-5,0],[-78,-1],[-2590,-21],[-1835,-15],[1,-90],[3,-366],[-2011,-5],[-6557,-14],[-55,-1],[-243,0],[-2144,-5],[-1397,-3],[-504,-1],[-725,-2],[-1395,-3],[-679,-2],[4,-68],[1,-113],[0,-102],[1,-30],[-41,0],[-41,0],[-83,-1],[-36,0],[-38,0],[-30,0],[-29,0],[-29,0],[-38,-1],[-28,0],[-37,1],[-48,0],[-31,-1],[-42,0],[-37,-1],[-34,-1],[-79,-3],[-50,5],[-54,1],[-60,0],[-8,0],[-14,0],[-16,1],[-6,1],[-7,1],[-8,0],[-30,0],[-29,1],[-14,0],[-8,0],[-18,1],[-9,-1],[-21,-1],[-15,0],[-40,-2],[-42,-2],[-41,-1],[-42,0],[-7,-1],[-12,0],[-41,-1],[-3,0],[-7,0],[-11,-1],[-2,-2],[-4,-1],[-6,-1],[-25,0],[-70,-1],[-892,6],[-47,0],[-132,1],[-403,-1],[-2,149],[-1029,4],[-59,0],[-285,1],[-11,0],[-24,0],[-48,1],[-7,144],[-1673,0],[-69,0],[-26,0],[-6,0],[1,-88],[4,-378],[-511,-178],[6,-489],[-321,-8],[-103,-3],[-18,-1],[2,-384],[-145,7],[-49,2],[74,-83],[-25,-66],[-13,-33],[-5,-13]],[[65538,14100],[-8,8],[-25,28],[-37,39],[-144,104],[-47,39],[-277,160],[-43,29],[-486,369],[-23,17]],[[64448,14893],[-85,91],[-7,141],[-91,6],[7,86],[162,285],[167,12],[-12,187],[254,-7],[112,-3],[13,42],[27,91],[27,92],[23,78],[19,63],[12,42],[69,233],[38,127],[10,34],[30,102],[47,156],[253,856],[38,129],[50,169],[177,597],[-54,834],[-58,898],[-24,375],[-8,126],[0,2],[-8,123],[-8,498],[-54,11],[-10,2783]],[[65564,24152],[0,1],[341,2],[2,1838],[0,140],[1,635],[-1,3194],[0,631],[0,58],[0,132],[0,72],[0,271],[0,200],[0,25],[0,627],[-1,614],[0,274],[179,10],[-7,297],[-341,1],[-9,323],[16,0],[160,4],[-2,284],[-5,636]],[[85210,34582],[133,-114],[2340,-2006],[55,-47],[10,-10],[203,-173],[1387,-1190],[1360,-1166],[189,-162],[1379,-1189],[27,-23],[160,-138],[557,-480],[469,-405],[1627,-1445],[15,-13],[19,-46],[5,-13],[6,-26],[3,-29],[0,-35],[-2,-22],[-5,-24],[-7,-29],[-13,-33],[-16,-41],[-12,-40],[-4,-35],[3,-59],[18,-46],[19,-60],[13,-43],[0,-65],[-17,-64],[-8,-33],[-9,-60],[2,-34],[25,-92],[-3,-35],[-5,-29],[-7,-25],[-24,-58],[-12,-45],[-9,-48],[-1,-36],[8,-57],[8,-56],[24,-58],[19,-33],[28,-32],[20,-18],[25,-25],[35,-25],[28,-16],[42,-21],[54,-28],[26,-12],[54,-38],[48,-39],[45,-45],[18,-22],[31,-52],[22,-40],[17,-36],[19,-45],[14,-40],[8,-36],[10,-49],[2,-32],[8,-23],[8,-26],[9,-32],[5,-14],[11,-25],[18,-26],[31,-49],[6,-18],[7,-20],[16,-27],[16,-29],[20,-36],[58,-74],[52,-49],[64,-50],[71,-48],[36,-22],[27,-28],[14,-12],[56,-75],[26,-29],[5,-5],[19,-12],[43,-21],[77,-28],[17,-7],[28,-18],[43,-22],[9,-6],[13,-15],[4,-6],[12,-36],[1,-4],[2,-4],[13,-28],[1,-1],[31,-20],[29,-4],[8,-1],[37,-2],[24,-4],[7,-1],[26,-19],[10,-17],[13,-32],[3,-20],[2,-21],[0,-15],[3,-16],[5,-21],[2,-10],[5,-21],[5,-17],[0,-2],[9,-28],[15,-36],[14,-22],[26,-33],[24,-33],[14,-27],[7,-15],[0,-27],[3,-12],[6,-11],[14,-15],[16,-17],[3,-11],[-4,-15],[-10,-16],[-30,-27],[-21,-14],[-8,-14],[-2,-7],[3,-9],[26,-21],[48,-33],[15,-14],[33,-36],[24,-26],[18,-35],[6,-28],[0,-26],[-4,-23],[-3,-19],[-2,-24],[10,-24],[4,-11],[12,-56],[1,-1],[21,-16],[17,-12],[1,-1],[2,-1],[33,-24],[23,-17],[8,-9],[31,-32],[4,-4],[0,-9],[-1,-76],[-10,-16],[-6,-5],[-15,-12],[-22,-7],[-47,-14],[-17,-5],[7,-31],[5,-5],[108,-116],[14,-16],[2,-1],[9,-7],[48,-33],[81,-57],[29,-20],[38,-68],[24,-43],[7,-13],[55,-105],[18,-34],[15,-26],[28,-47],[52,-86],[20,-110],[4,-19],[0,-22],[2,-59],[1,-26],[-27,-72],[-12,-41],[-7,-46],[-1,-33],[-1,-8],[11,-77],[2,-22],[1,-11],[-4,-24],[-10,-42],[-9,-22],[-9,-20],[-19,-51],[-6,-25],[6,-24],[15,-20],[30,-32],[9,-8],[57,-52],[17,-11],[53,7],[47,6],[39,11],[28,8],[43,4],[31,2],[41,10],[38,4],[26,-4],[20,-9],[14,-9],[16,-14],[22,-30],[15,-29],[14,-28],[16,-28],[25,-5],[28,-5],[23,-8],[42,-20],[41,-26],[27,-15],[61,-34],[54,-51],[28,-43],[2,-19],[1,-17],[3,-29],[19,-38],[7,-6],[21,-20],[27,-12],[38,-11],[61,-2],[22,-1],[40,-4],[31,-13],[19,-16],[18,-22],[17,-19],[26,-30],[28,-27],[34,-19],[14,-9],[51,-41],[50,-45],[35,-32],[24,-40],[5,-10],[16,-32],[35,-31],[61,-21],[59,-16],[68,-5],[69,-6],[2,0],[20,-17],[13,-9],[40,-24],[8,-6],[58,-20],[46,-26],[34,-26],[43,-50],[15,-22],[21,-31],[10,-22],[8,-18],[23,-44],[23,-42],[13,-23],[29,-54],[7,-26],[42,-35],[32,-25],[22,-13],[88,-81],[0,-28],[-9,-26],[-2,-33],[10,-68],[12,-34],[6,-24],[5,-23],[-10,-41],[4,-27],[15,-46],[3,-12],[22,-40],[13,-25],[-3,-25],[-17,-20],[-21,-6],[-25,3],[-66,15],[-23,-1],[-45,-10],[-24,-3],[-39,4],[-62,11],[-7,-13],[13,-33],[1,-21],[-6,-18],[-20,-21],[-28,-9],[-50,-16],[-7,-10],[-6,-8],[0,-26],[-4,-12],[-1,-5],[-11,-11],[-23,-20],[-33,-25],[-30,-23],[-44,-34],[-37,-37],[-24,-24],[-24,-23],[-36,-34],[-48,-44],[-24,-29],[-10,-13],[-36,-27],[-80,-43],[-14,-13],[-7,-20],[1,-26],[7,-26],[1,-31],[-6,-20],[-14,-33],[-26,-20],[-96,-34],[-27,-24],[-18,-19],[-13,-9],[-73,-47],[-23,-10],[-98,-27],[-27,-7],[-66,20],[-114,-14],[-34,-25],[-21,-14],[-41,-51],[-13,-17],[-5,-5],[-12,-14],[-17,-18],[-23,-26],[-39,-43],[-31,-44],[-16,-18],[-51,-42],[-28,-22],[-35,-19],[-12,-3],[-62,-17],[-24,-6],[-17,-4],[-15,1],[-60,2],[-23,1],[-18,1],[-36,-9],[-26,-16],[-19,-18],[-12,-19],[-7,-10],[-2,-5],[-8,-23],[-15,-18],[-39,-37],[-1,-1],[-11,-6],[-25,-13],[-9,-2],[-37,-9],[-48,-7],[-15,-6],[-25,-14],[-78,-44],[-72,11],[-27,4],[-44,0],[-45,-11],[-46,-23],[-44,-38],[-14,-13],[-36,-53],[-45,-59],[-10,-15],[-7,-11],[-19,-27]],[[41009,34347],[-1,-103],[-2,-553],[0,-48],[-6,-1129],[1046,-13],[1,-910],[160,-8],[12,-149],[165,-4],[6,-158],[160,-4],[1,-144],[159,1],[23,-153],[159,6],[7,-291],[1,-25],[1136,-20],[16,-924],[472,5],[130,1],[72,1],[1,-51],[8,-864],[1387,-26],[12,-915],[1095,44],[-76,-958],[694,38],[6,-158],[158,0],[0,-1467],[0,-403]],[[48011,24965],[-158,2],[-17,-20],[-119,3],[-314,7],[-14,0],[-54,44],[-29,23],[-24,16],[-25,17],[-33,20],[-23,11],[-27,18],[-11,10],[-18,10],[-37,19],[-26,14],[-24,12],[-23,10],[-25,13],[-23,14],[-24,19],[-22,16],[-20,18],[-22,27],[-17,24],[-18,25],[-25,19],[-27,23],[-28,20],[-28,22],[-59,45],[-15,10],[-21,15],[-13,7],[-14,3],[-18,-1],[-48,-11],[-15,-3],[-10,2],[-31,16],[-60,32],[-61,-2],[-31,-1],[-8,9],[-2,7],[-14,18],[-6,5],[-18,12],[-21,12],[-11,4],[-9,11],[-6,16],[-6,8],[-6,6],[-58,32],[-30,32],[-30,13],[-46,20],[-29,1],[-31,-12],[-27,-3],[-34,4],[-33,7],[-51,10],[-35,14],[-12,5],[-25,12],[-26,-4],[-51,-8],[-24,-12],[-26,-10],[-59,-18],[-31,13],[-24,14],[-20,18],[-23,-15],[-29,-4],[-34,-6],[-37,-6],[-54,7],[-52,35],[-19,18],[-26,15],[-25,6],[-31,4],[-25,10],[-42,30],[-24,15],[-48,26],[-61,21],[-23,-22],[-29,-5],[-32,12],[-30,14],[-36,17],[-30,32],[-22,26],[-29,8],[-21,15],[-33,8],[-32,3],[-11,1],[-23,14],[-25,14],[-47,13],[-53,9],[-76,73],[-13,13],[-12,11],[-33,16],[-9,26],[-15,41],[-9,27],[-34,29],[-4,29],[-26,13],[-45,-5],[-42,0],[-35,36],[-32,3],[-12,-1],[-1,0],[-22,-1],[-22,21],[-31,19],[-9,6],[-37,2],[-25,6],[-8,2],[-26,-3],[-33,-15],[-44,-7],[-37,-25],[-7,26],[-45,10],[-21,20],[3,27],[-26,6],[7,27],[-1,1],[-28,13],[-35,25],[-15,26],[-25,-4],[-19,25],[-14,4],[-11,3],[3,29],[-27,11],[-22,-22],[-24,-13],[-24,-5],[-31,-6],[-10,28],[-25,-34],[-27,16],[-32,13],[-33,2],[-36,-26],[-18,25],[-29,-16],[-11,27],[-31,5],[-35,-24],[-22,24],[-47,-6],[-38,9],[0,29],[-27,-7],[-27,5],[-17,33],[-25,-13],[-30,-6],[-25,30],[-13,15],[-12,14],[-12,15],[-10,3],[-10,3],[-18,9],[-42,4],[-12,2],[-8,4],[-9,5],[-7,7],[-10,21],[-19,35],[-1,1],[-1,0],[-31,16],[-20,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[-11,4],[-7,3],[-1,1],[-2,0],[-26,14],[-1,0],[-37,9],[-2,1],[-5,1],[-16,5],[-1,0],[-1,0],[-2,1],[-2,1],[-1,1],[-1,0],[-41,28],[-29,14],[-4,2],[-28,-10],[0,-3],[3,-4],[0,-4],[-1,-4],[-2,-2],[-3,-1],[-4,1],[-22,3],[-5,1],[-6,3],[-8,10],[-3,5],[-5,6],[-19,16],[-28,24],[-12,0],[-12,-6],[-3,-2],[-2,-2],[-12,-5],[-9,1],[-6,2],[-7,15],[-3,6],[-4,0],[-2,0],[-2,0],[-2,0],[-1,1],[-8,2],[-2,1],[-1,0],[-25,11],[-1,0],[-14,7],[-1,1],[-1,1],[-2,1],[-9,6],[-1,1],[-26,22],[-1,1],[-2,1],[-1,2],[-1,1],[0,1],[-6,8],[0,1],[-1,2],[-1,1],[-1,2],[0,1],[-5,15],[-1,3],[-6,9],[-5,4],[-32,13],[-4,1],[-58,21],[0,1],[12,26],[11,25],[1,1],[14,9],[0,4],[-8,9],[-9,6],[-4,1],[-1,0],[-42,-9],[-20,5],[-2,0],[-2,0],[-3,0],[-34,-2],[-4,-1],[-19,-6],[-12,-4],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-13,-4],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-6,-2],[-3,5],[-3,4],[-1,2],[-11,5],[-12,2],[-7,-7],[2,-8],[2,-5],[2,-8],[-1,-1],[-1,0],[-8,-3],[-1,0],[-1,0],[-1,-1],[-2,0],[-12,-5],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-10,-9],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-1],[-6,-20],[-4,-4],[-15,-5],[-30,1],[-11,7],[-8,10],[-3,1],[-6,1],[-4,-2],[-5,-4],[5,-12],[2,-4],[0,-2],[-5,-13],[-17,-13],[-32,-24],[-7,0],[-9,2],[-6,-1],[-9,-16],[-1,-7],[-14,-9],[-12,-3],[-31,8],[-12,4],[-1,1],[-2,1],[-1,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-28,-7],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-15,-3],[-12,3],[-5,0],[-5,-5],[0,-11],[2,-12],[5,-9],[4,-4],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-11,-17],[-8,-13],[-3,-6],[1,0],[3,-4],[14,-18],[9,-11],[7,-9],[2,-2],[1,-1],[-71,-49],[-1,2],[-1,0],[-4,5],[-14,15],[-6,7],[-3,3],[-6,7],[-4,4],[-1,2],[-15,-12],[-37,-29],[-21,-7],[-19,-5],[-12,-3],[-2,0],[-1,-1],[-12,-3],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-20,-15],[-1,-1],[-1,-1],[-48,-53],[-1,-2],[0,-2],[-3,-9],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-8],[-1,-30],[-1,-1],[-27,-9],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-12,-10],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-18,-28],[-1,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[-2,-26],[-3,-5],[-16,-15],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-11,-29],[-1,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[3,-17],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[10,-24],[-1,-4],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1],[1,-2],[1,-2],[6,-21],[-2,-13],[-8,-2],[-2,-1],[-2,-1],[-27,-15],[-1,0],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-8,-26],[-3,-4],[-28,-8],[-60,-7],[-2,-1],[-25,-6],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-64,-59],[-24,-9],[-13,1],[-2,0],[-22,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-29,-8],[-8,2],[-18,9],[-1,1],[-2,1],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-20,0],[-9,0],[-13,5],[-9,-8],[-1,-1],[-9,-8],[-1,-1],[-17,-15],[-4,-3],[-1,0],[-67,10],[-1,0],[-2,1],[-2,0],[-1,1],[-2,0],[-1,1],[-1,0],[-10,6],[-64,37],[-28,15],[-5,0],[-7,-11],[-1,-2],[-4,-5],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-15,-10],[-1,-1],[-1,-1],[-5,-28],[-2,-10],[-8,-10],[-17,-24],[-6,-1],[-4,2],[-4,5],[-2,5],[-3,10],[-2,5],[-4,6],[-12,12],[-9,8],[-1,0],[-29,-8],[-18,-13],[-7,-2],[-12,-1],[-5,0],[-20,7],[-11,0],[-31,-6],[-5,-3],[-15,-10],[-21,-36],[-1,-13],[0,-5],[6,-9],[10,-9],[3,-11],[-1,-2],[-5,-3],[-9,-1],[-8,2],[-14,17],[-1,0],[-7,7],[-19,15],[-9,4],[-7,3],[-29,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-29,-2],[-9,0],[-1,0],[-15,-1],[-52,-6],[-12,-5],[-11,-11],[-25,-27],[-10,-14],[-6,-6],[-30,-20],[-4,-2],[-7,-2],[-12,0],[-23,29],[-6,6],[-12,17],[0,1],[-17,23],[-3,12],[-1,1],[-2,4],[-23,15],[-9,27],[-2,-1],[-23,-15],[-22,-15],[-9,-10],[-3,-4],[-2,-1],[-14,-34],[0,-2],[0,-6],[-1,-1],[-4,-10],[-10,-20],[-2,-3],[-8,-12],[-7,-15],[-7,-29],[0,-11],[0,-1],[1,-9],[22,-65],[1,-2],[36,-60],[6,-4],[23,-17],[4,-4],[10,-8],[12,-10],[18,-12],[6,-5],[18,-8],[18,-4],[15,-4],[4,1],[2,-1],[6,-6],[3,-9],[0,-9],[-2,-13],[-6,-7],[-8,-10],[-2,-7],[-5,-13],[0,-5],[1,-4],[5,-5],[15,-9],[6,-2],[9,-2],[80,-54],[13,-9],[27,-10],[5,-9],[2,-9],[1,-7],[-1,-5],[-6,-7],[-15,-5],[-7,-7],[-17,-19],[-1,-2],[-8,-11],[1,-16],[6,-19],[2,-3],[18,-14],[9,-4],[8,-3],[32,-12],[8,-5],[15,-7],[4,-22],[5,-12],[6,-10],[8,-16],[1,-12],[-3,-47],[-5,-22],[-4,-16],[-18,-58],[3,-6],[-3,-7],[-5,-2],[3,-23],[1,-21],[1,-2],[-11,-94],[-6,-30],[-6,-15],[-6,-9],[-14,-11],[-27,-16],[-53,-19],[-35,3],[-17,2],[-12,14],[-38,66],[-14,31],[-1,3],[0,16],[-2,10],[-5,10],[-21,46],[-15,24],[-25,24],[-27,18],[-7,-6],[-6,-8],[-2,-5],[-1,-3],[-4,-7],[-4,-5],[-3,0],[-19,30],[-44,24],[-20,12],[-34,25],[-19,13],[-8,16],[-9,8],[-19,9],[-17,4],[-9,2],[-10,3],[-4,2],[-12,7],[-5,4],[0,3],[-1,5],[-6,46],[-29,17],[-95,58],[-20,13],[-51,31],[-16,10],[-36,30],[-1,12],[-12,3],[-69,43],[-100,37],[-6,0],[-8,4],[-12,6],[-17,11],[-19,11],[-20,11],[-26,13],[-8,1],[-3,11],[-9,18],[-9,14],[-5,6],[-13,10],[-32,24],[-8,5],[-81,48],[-17,3],[-1,0],[-10,5],[-7,4],[-1,1],[-11,9],[-5,4],[-16,15],[1,1],[-8,4],[-3,1],[-29,12],[-25,0],[-106,18],[-21,4],[-16,6],[-96,-19],[-138,-27],[-34,-7],[-58,-10],[-25,-5],[-75,-15],[-76,-15],[-13,-3],[-10,-1],[-11,-2],[-12,-3],[-9,-6],[-2,-4],[-14,-1],[-28,6],[-4,0],[-4,-2],[-22,-18],[-69,-16],[-32,-2],[-47,-1],[-1,0],[-18,0],[-13,-18],[-73,-33],[-23,-12],[-53,-14],[-38,9],[-21,5],[-14,1],[-10,0],[-17,1],[-21,1],[-6,0],[-20,1],[-26,1],[-30,-14],[-11,-5],[-5,-3],[-7,-7],[-6,-13],[-2,-14],[-3,-5],[-10,-9],[-18,-11],[-12,-5],[-47,-22],[-7,-3],[-13,-5],[-13,-1],[-6,1],[-9,4],[-28,15],[-8,5],[-6,5],[-30,27],[-12,12],[-1,1],[-4,2],[-21,8],[-25,5],[-13,1],[-7,-2],[-27,-13],[-8,-9],[-14,-20],[-7,-7],[-71,-52],[-10,-5],[-11,-7],[-7,-2],[-16,-1],[-2,0],[-10,-2],[-60,-25],[-1,1],[-63,69],[-80,82]],[[36576,25758],[17,24],[15,52],[13,49],[13,42],[15,53],[10,38],[13,33],[7,38],[24,106],[7,34],[6,28],[7,55],[8,45],[5,39],[6,45],[8,54],[7,52],[4,44],[4,43],[4,34],[3,117],[0,32],[1,35],[-2,35],[-2,71],[-4,54],[-1,38],[-1,19],[-3,27],[-6,40],[-5,44],[-7,35],[-11,53],[-16,53],[-10,30],[-16,30],[-13,27],[-13,27],[-24,42],[-11,25],[-27,42],[-22,24],[-20,19],[-32,18],[-47,20],[-27,14],[-31,0],[-33,-9],[-33,7],[-33,14],[-35,36],[-43,12],[-26,14],[-32,38],[-30,27],[-29,25],[-47,35],[-33,13],[-33,12],[-33,8],[-34,10],[-24,-22],[-35,16],[-48,-5],[-30,23],[-51,14],[-43,14],[-1,-1],[-32,-19],[-25,5],[-35,-4],[-36,-12],[-27,-19],[-16,-25],[-7,-25],[-3,-28],[10,-53],[-21,-27],[-34,1],[-34,14],[-28,12],[-47,30],[-44,24],[-24,12],[-13,31],[-17,20],[-13,22],[-30,23],[-35,13],[-29,-5],[-19,28],[-24,9],[-39,15],[-33,15],[-24,17],[-40,15],[-24,11],[-33,4],[-19,30],[-31,27],[-46,21],[-47,-2],[-23,12],[-27,7],[-24,23],[-24,12],[-29,6],[-15,27],[-39,8],[-42,9],[25,-1],[-29,18],[-15,23],[-23,31],[1,35],[-25,3],[-45,28],[-34,13],[-18,21],[-7,33],[-17,29],[-43,35],[-36,-1],[-19,31],[-20,18],[-24,38],[-25,31],[-21,27],[-28,16],[16,41],[-10,40],[-26,4],[24,32],[14,29],[16,34],[-1,38],[-19,26],[9,33],[29,2],[26,-1],[-2,24],[-2,29],[10,26],[20,38],[33,44],[17,23],[20,46],[13,35],[22,59],[15,36],[17,41],[8,29],[21,66],[23,81],[13,47],[8,42],[9,42],[4,34],[8,39],[0,38],[3,34],[2,27],[5,48],[-7,65],[29,-5],[20,-22],[9,-25],[2,-33],[-24,-28],[1,-36],[3,-30],[6,-32],[-2,-31],[-8,-40],[4,-34],[-2,-28],[-9,-41],[-6,-31],[-7,-36],[-13,-38],[-18,-33],[-28,-53],[17,21],[43,19],[52,16],[28,12],[24,9],[53,18],[34,12],[4,32],[-26,15],[1,50],[25,3],[37,-15],[27,1],[25,19],[17,18],[2,3],[11,27],[-45,23],[-4,1],[-21,6],[-31,3],[-7,4],[-32,15],[-6,17],[-7,16],[-1,36],[-14,41],[-16,29],[-34,23],[-17,40],[-30,82],[-50,29],[-31,-22],[-23,-29],[-33,2],[6,44],[26,-4],[20,32],[-3,62],[-5,44],[-2,32],[-9,66],[-9,37],[-19,60],[-24,36],[-16,43],[-12,28],[-9,19],[-16,32],[-14,26],[-17,30],[-16,28],[-16,25],[-16,25],[-24,34],[-22,22],[-25,24],[-28,31],[-41,32],[-35,30],[-42,20],[-31,-7],[-35,10],[-27,-8],[-42,-6],[-29,-2],[-34,-1],[-35,1],[-46,-3],[-38,-10],[-27,15],[-27,-11],[-32,8],[-23,17],[-3,27],[-24,13],[-49,22],[-31,14],[-28,15],[-26,22],[-24,-1],[-9,0],[-44,-5],[-29,3],[-36,7],[-43,13],[-34,14],[-31,11],[-21,-20],[-28,-13],[-25,1],[-35,4],[-39,38],[-9,25],[-17,24],[-35,42],[-19,18],[-17,20],[-22,19],[-18,19],[-9,27],[-21,15],[-27,14],[-22,26],[-19,16],[-47,11],[-15,32],[-32,18],[-14,32],[-28,30],[-14,28],[-39,24],[-34,18],[-41,21],[-26,33],[-24,23],[-25,25],[-21,24],[-24,22],[-23,27],[-29,34],[-35,31],[-25,26],[-35,31],[-22,20],[-26,21],[-16,20],[-23,28],[-16,28],[-32,16],[-19,25],[-8,37],[-14,41],[-23,35],[-18,36],[-20,34],[-1,3],[-15,31],[-15,48],[-32,23],[-9,27],[-37,40],[-6,30],[-31,66],[-24,29],[-26,24],[-25,18],[-46,22],[-27,14],[-19,25],[-13,26],[-14,25],[-18,29],[-30,24],[-21,19],[-13,24],[-17,26],[-17,26],[-17,23],[-22,30],[-17,27],[-25,23],[-33,23],[-44,20],[-34,10],[-35,11],[-28,11],[-45,9],[-40,-11],[-8,-43],[6,-33],[-42,20],[-21,23],[-15,24],[-26,6],[-24,-4],[-27,25],[-26,37],[-26,19],[-43,19],[-22,11],[-43,-2],[-54,-1],[-29,10],[-36,6],[-34,-8],[-30,24],[-30,4],[-27,20],[-35,36],[-19,17],[-54,25],[-25,-18],[-29,15],[-33,26],[-25,-4],[-57,9],[-25,-2],[-15,-32],[-27,9],[13,77],[-10,34],[-12,42],[-1,34],[-8,26],[-15,28],[-16,50],[-33,42],[-51,38],[-32,10],[-30,38],[-14,27],[-25,31],[-49,39],[19,49],[-5,44],[-22,19],[-20,45],[27,43],[-9,25],[2,37],[-11,24],[-10,34],[28,32],[-1,35],[-16,56],[-29,15],[-48,7],[6,36],[5,43],[0,1],[-10,40],[-8,30],[-16,27],[-19,25],[-19,24],[5,31],[-37,30],[-34,28],[-28,33],[-16,20],[-39,30]],[[65564,24152],[-1637,-11],[-139,-1],[-1126,-8],[-57,-1],[-493,-3],[-913,-6],[-313,-3],[-32,5],[-44,6],[-38,0],[-38,-1],[-29,0],[-7,0],[-24,0],[-120,-2],[-12,0],[-55,-11],[-4,12],[-95,-12],[-342,-2],[-43,11],[-44,-12],[-43,12],[-42,0],[-42,-1],[-45,0],[-42,-1],[-42,-11],[-230,-1],[-26,11],[-46,0],[-48,1],[-40,-1],[-43,-1],[-48,-11],[-1284,-7],[-37,-4],[-32,0],[-53,0],[-35,1],[-46,0],[-90,0],[-51,0],[-34,0],[-89,1],[-84,0],[-84,1],[-81,0],[-103,0],[-83,0],[-72,0],[-25,0],[-42,0],[-28,0],[-86,0],[-88,0],[-51,0],[-29,0],[-94,1],[-33,0],[-44,0],[-83,-1],[-98,1],[-165,1],[-1,3],[-172,-2],[-156,-1],[-39,-1],[-81,0],[-16,0],[-16,0],[-47,-1],[-82,-1],[-25,1],[-30,0],[-243,-2],[-69,0],[-25,0],[-26,0],[-405,-1],[-43,0],[-35,0],[-214,0],[-129,0],[-35,0],[-162,2],[-99,0],[-160,0],[-134,1],[71,-173],[58,-140]],[[53783,23789],[-936,16],[2,237],[-509,4],[-629,6],[-437,3],[-1044,9],[1,446],[-327,10],[17,225],[-285,1],[-751,1],[-5,206],[-569,6]],[[48311,24959],[-300,6]],[[52323,9857],[-32,-29],[-35,3],[-33,43],[-17,35],[6,29],[-44,60],[59,13],[40,2],[29,25],[23,15],[28,6],[-8,-30],[15,-59],[-8,-41],[-18,-22],[-5,-50]],[[42374,15864],[31,-13],[28,1],[40,-10],[-11,-42],[10,-31],[1,-29],[-23,-34],[-24,-45],[-13,-45],[11,-49],[14,-45],[5,-45],[12,-26],[34,-33],[30,-25],[42,-26],[31,-14],[48,-23],[39,-21],[43,-9],[43,-16],[19,-25],[69,-6],[37,8],[9,3],[25,7],[51,8],[41,13],[29,6],[39,0],[24,-18],[-13,-49],[3,-39],[-4,-40],[17,-32],[-1,-35],[9,-25],[1,-35],[36,-29],[30,-43],[1,-68],[20,-20],[-25,-7],[-33,-1],[-84,5],[-35,-1],[-25,0],[-25,-1],[-33,-1],[-29,-2],[-19,-4],[-12,-2],[-31,-10],[-35,-22],[-47,-7],[-27,-9],[-26,-10],[-26,-23],[-26,-31],[-42,-27],[-44,-26],[-53,-17],[-29,-13],[-31,-27],[-28,-11],[-23,-30],[-33,-24],[-50,-13],[-28,-2],[-31,-5],[-49,1],[-28,-6],[-26,-11],[-29,-22],[-44,-3],[-33,3],[-48,3],[-39,-5],[-36,-7],[-25,-11],[-38,-22],[-24,-29],[-16,-20],[-1,-31],[-30,-26],[-36,-7],[-52,9],[-34,21],[-19,17],[-27,12],[-26,17],[-24,13],[-27,3],[-21,18],[-23,10],[-32,23],[-23,13],[-39,26],[-34,8],[-1,1],[-38,25],[-32,22],[-29,-5],[-32,17],[-19,32],[-20,17],[-38,11],[-34,17],[1,42],[-24,44],[-21,38],[-13,34],[-15,36],[-16,28],[-16,24],[-28,21],[-35,5],[-19,33],[-11,28],[-22,36],[-26,30],[-10,25],[-9,25],[-25,50],[-23,16],[-26,20],[-42,23],[-18,34],[-12,40],[-33,43],[-26,13],[-28,9],[-31,8],[-29,7],[-31,47],[-34,18],[-30,-4],[-20,18],[35,28],[30,19],[25,22],[31,24],[29,1],[29,9],[33,5],[29,-1],[31,0],[35,-10],[34,-11],[38,-18],[30,-9],[31,3],[40,-9],[36,-7],[30,11],[34,13],[30,7],[38,-1],[41,-11],[6,2],[45,18],[29,2],[66,21],[33,28],[24,21],[31,20],[32,29],[20,34],[16,22],[44,3],[30,9],[29,0],[41,-14],[53,-16],[45,-5],[40,-10],[32,-18],[38,3],[29,-2],[56,4],[42,-7],[25,0],[55,5],[53,17],[37,9],[34,7],[28,9],[22,37],[35,9],[23,12],[27,15],[11,24],[19,27],[56,15]],[[38662,16065],[0,-18],[-12,-13],[-59,15],[-39,-24],[-28,-1],[-23,15],[-2,24],[5,11],[28,7],[119,-4],[11,-12]],[[39677,16064],[-16,-13],[-54,35],[3,13],[28,16],[5,1],[34,-10],[10,-19],[0,-2],[-10,-21]],[[39398,16017],[19,-22],[59,-26],[41,-8],[27,0],[38,3],[23,10],[30,10],[39,1],[24,-14],[148,-95],[14,-5],[50,-96],[5,-5],[1,-28],[2,-53],[-4,0],[-30,-8],[-33,-7],[-29,-2],[-49,-2],[-54,4],[-57,6],[-38,3],[-28,-5],[-49,4],[-34,-2],[-24,-6],[-115,-72],[-95,54],[-43,24],[-24,18],[-21,17],[-26,14],[-31,2],[-31,6],[-35,12],[-32,12],[-52,18],[-28,12],[-38,17],[-28,3],[-39,-30],[-58,-51],[-4,-1],[-45,-10],[-106,56],[-89,7],[-30,-17],[-26,15],[-3,18],[11,8],[17,-9],[15,1],[-5,20],[-27,14],[-3,17],[11,6],[18,-6],[13,16],[5,13],[8,6],[32,-6],[22,-5],[16,16],[42,12],[9,7],[23,29],[10,14],[33,29],[2,-3],[11,6],[22,13],[42,88],[34,0],[113,-79],[14,-2],[73,16],[75,44],[164,139],[27,17],[-5,16],[-17,22],[12,21],[46,-10],[31,-20],[2,-58],[27,-22],[6,-52],[20,-28],[-20,-17],[-24,-16],[3,-38]],[[43825,16261],[41,-11],[121,19],[308,-54],[24,-11],[152,-56],[52,-19],[26,-19],[28,-13],[39,-27],[22,-19],[21,-19],[41,0],[118,2],[31,3],[24,27],[31,1],[44,0],[24,0],[28,1],[38,-5],[26,1],[36,-6],[30,-6],[24,8],[14,22],[59,3],[27,-4],[21,-14],[5,-32],[42,-6],[32,-11],[52,-11],[46,-42],[39,-9],[26,16],[38,2],[33,-23],[26,-9],[39,-10],[30,-6],[28,-15],[22,-18],[22,-18],[24,-15],[3,-33],[30,-15],[26,-20],[46,-19],[28,-20],[17,-35],[14,-28],[31,-12],[15,1],[30,4],[29,-7],[26,-1],[23,-10],[59,-19],[27,7],[48,16],[33,6],[23,-19],[32,-23],[45,10],[34,-8],[20,-21],[29,1],[31,-1],[26,9],[28,8],[37,13],[38,3],[31,20],[26,24],[28,26],[20,23],[13,18],[0,67],[-20,18],[16,45],[33,16],[30,29],[23,8],[24,16],[16,27],[36,-4],[21,28],[38,26],[37,-26],[27,-5],[36,-3],[14,22],[58,5],[18,24],[25,0],[56,-23],[48,-60],[39,-1],[31,-34],[32,4],[27,-6],[25,-11],[27,-5],[31,-12],[26,-21],[23,-27],[45,-27],[-12,-26],[-33,-13],[-13,-9],[-15,-22],[-37,-17],[-27,-13],[-45,-5],[-43,-44],[1,-42],[-20,-23],[-29,-42],[9,-35],[-32,-37],[-25,-27],[-16,-26],[-35,-12],[-53,-16],[-46,11],[-36,-4],[-98,-29],[-26,-6],[-54,-34],[-138,-7],[-25,1],[-54,-14],[-32,2],[-34,5],[-35,10],[-26,-6],[-26,1],[-50,-11],[-56,2],[-37,1],[-48,1],[-48,1],[-39,-14],[-29,-3],[-145,-89],[-52,-5],[-17,-5],[-31,-18],[-25,-18],[-33,-17],[-16,-8],[-62,3],[-4,-36],[-17,-8],[-39,17],[-30,-22],[-40,-22],[-27,-36],[-48,-15],[-27,7],[-40,12],[-85,9],[-39,7],[-31,7],[-40,-1],[-42,-7],[-33,-12],[-25,-25],[-79,-7],[-60,34],[-21,-14],[-51,5],[-41,-4],[-30,-4],[-28,-9],[-31,28],[-38,6],[-74,6],[-35,-3],[-83,-36],[-11,-3],[-12,3],[-18,39],[-38,26],[-51,25],[-61,16],[-51,6],[-45,-17],[-33,-19],[-7,3],[-12,16],[-34,29],[-24,18],[-33,27],[-42,33],[-27,13],[-59,6],[-24,37],[-10,28],[-18,34],[-20,38],[-5,33],[-24,52],[-17,41],[-11,30],[48,73],[50,93],[5,83],[-30,24],[-20,16],[-23,12],[-24,11],[-13,12],[-5,33],[-62,35],[-52,53],[-30,13],[-30,21],[-29,17],[-26,9],[-32,15],[-71,-41],[-91,55],[20,19],[39,13],[34,11],[-4,40],[-19,14],[-3,23],[47,83],[74,-13],[38,-12],[35,-9]],[[48311,24959],[-1,-486],[-2,-652],[0,-70],[-4,-2052],[-2,-994],[0,-3],[-1,-261],[25,-161],[-7,-75],[16,-22],[3,-27],[4,-27],[-10,-27],[-19,-21],[3,-27],[-8,-26],[-9,-27],[-26,1],[-30,3],[-19,-20],[-7,-26],[3,-27],[-11,-25],[4,-27],[24,-27],[14,-23],[18,-22],[21,-20],[6,-28],[-6,-26],[-15,-23],[-21,-14],[-20,-38],[-20,-13],[-2,-1],[-54,-42],[-27,-15],[-21,-12],[-15,-10],[-23,-16],[-47,-50],[-2,-28],[-42,5],[0,-5],[-2,-21],[-1,-9],[11,-25]],[[47989,19417],[-31,9],[-29,39],[-21,14],[-49,27],[-66,23],[-39,1],[-42,2],[-63,19],[-57,16],[-27,20],[-48,31],[-29,16],[-33,6],[-53,7],[-85,75],[-75,67],[-67,44],[-58,14],[-23,-11],[-50,-3],[-26,-14],[-43,12],[-120,51],[-53,11],[-41,8],[-34,-4],[-44,9],[-66,3],[-27,-23],[-52,5],[-53,-9],[-39,-18],[-34,-7],[-95,17],[-45,-6],[-56,0],[-73,-4],[-52,-4],[-130,-29],[-20,-17],[-28,-18],[-22,-18],[-6,-34],[-26,-28],[-56,-22],[-13,-32],[-36,-8],[-24,-12],[-38,3],[-65,4],[-34,-5],[-54,3],[-24,9],[-27,13],[-67,34],[-33,15],[-112,29],[-168,56],[-52,23],[-75,33],[-85,17],[-82,1],[-37,-15],[-152,6],[-52,7],[-38,0],[-38,-6],[-18,-18],[-25,-22],[-32,-62],[-8,-33],[-56,36],[-35,4],[-50,7],[-49,4],[-56,0],[-43,-2],[-36,-25],[-80,75],[-19,24],[-42,41],[-78,10],[-40,26],[-95,60],[-35,18],[-25,13],[-23,11],[-35,16],[-27,7],[-46,1],[-26,4],[-42,-2],[-48,-5],[-34,-5],[-45,3],[-36,12],[-37,23],[-33,28],[-27,15],[-22,13],[-22,15],[-25,13],[-50,23],[-34,18],[-31,5],[-27,-4],[-48,35],[-30,22],[-28,16],[-21,13],[-37,20],[-31,8],[-36,3],[-32,4],[-43,-6],[-13,-26],[-30,-1],[-45,27],[-42,16],[-35,11],[-69,-6],[-31,-9],[-38,-1],[-46,-6],[-27,-2],[-25,6],[-37,5],[-39,5],[-34,-11],[-22,-14],[-58,1],[-31,1],[-33,-2],[-71,12],[-27,10],[-35,15],[-28,9],[-32,14],[-40,17],[-30,13],[-29,11],[-49,12],[-28,7],[-28,5],[-53,10],[-29,2],[-35,2],[-26,-1],[-33,0],[-55,0],[-36,-8],[-36,-9],[-30,-2],[-35,-9],[-55,-3],[-45,5],[-25,0],[-46,-5],[-26,-5],[-26,3],[-68,6],[-42,-1],[-55,-2],[-27,0],[-33,4],[-34,-1],[-40,2],[-30,-2],[-33,-2],[-32,0],[-32,-4],[-39,-16],[-29,-4],[-58,-3],[-33,-1],[-32,-1],[-37,-2],[-34,2],[-46,3],[-74,5],[-31,-9],[-27,-7],[-44,15],[-52,14],[-32,7],[-28,3],[-37,-10],[-43,-31],[-33,-1],[-31,-4],[-26,-9],[-44,-8],[-36,-12],[-43,-4],[-43,-3],[-32,-3],[-28,-8],[-19,-24],[-31,-4],[-74,-6],[-51,3],[-28,-10],[-81,-10],[-33,-2],[-34,4],[-27,-3],[-45,-4],[-35,-1],[-37,-9],[-46,-1],[-55,-3],[-58,0],[-43,-5],[-69,-12],[-36,-8],[-22,-24],[-29,-10],[-34,3],[-43,6],[-49,9],[-43,0],[-24,-4],[-25,-3],[-27,-20],[-38,-19],[3,-38],[-34,-3],[-39,24],[-31,25],[-32,15],[-47,-8],[-20,54],[-10,63],[-7,74],[-12,54],[-8,29],[-22,44],[-25,33],[-25,20],[-26,16],[-32,31],[-14,33],[-20,27],[-24,10],[-17,34],[-8,28],[-11,29],[-10,28],[-10,25],[-19,36],[0,1],[-21,27],[-30,50],[-18,23],[-15,21],[-27,20],[-26,14],[-22,14],[-41,31],[-25,12],[-34,18],[-30,20],[-28,10],[-23,15],[-22,10],[-42,17],[-57,6],[-30,6],[-34,21],[-30,18],[-24,23],[-49,35],[-31,13],[-47,29],[-25,13],[-27,9],[-27,3],[-68,-1],[-30,4],[-28,-3],[-51,-3],[-26,1],[-38,-9],[-30,-23],[-26,1],[-29,-6],[-31,5],[-38,4],[-37,40],[-32,26],[-28,13],[-22,14],[-24,10],[6,30],[-1,29],[-27,37],[-15,24],[-13,22],[-44,-1],[34,28],[0,37],[-5,42],[36,20],[18,56],[2,41],[-12,27],[-10,27],[29,24],[24,41],[7,33],[17,28],[13,39],[11,25],[22,49],[21,37],[14,30],[18,44],[13,38],[15,37],[19,39],[15,41],[15,38],[17,49],[12,31],[16,51],[9,27],[11,32],[16,45],[11,35],[10,39],[14,46],[11,22],[10,19],[2,43],[10,32],[3,37],[-6,57],[-22,32],[-29,24],[-10,35],[-16,46],[-21,16],[-6,26],[-23,42],[-11,26],[-23,24],[-21,15],[-39,16],[-22,17],[-15,35],[-17,25],[2,30],[-15,48],[-28,24],[-29,15],[6,30],[8,37],[15,55],[11,25],[13,27],[8,26],[14,33],[26,56],[12,46],[18,39],[7,28],[9,33],[5,22],[8,26],[8,31],[14,55],[11,37],[8,34],[13,56],[12,57],[18,71],[10,49],[6,31],[6,51],[0,66],[-3,32],[-10,35],[-14,31],[-19,24],[-18,20],[-17,19],[-30,18],[-20,22],[-31,19],[-42,18],[-25,17],[-23,15],[-38,36],[1,43],[-2,39],[-19,17],[-14,55],[-23,36],[-31,24],[-36,-6],[-28,0],[-74,0],[-35,0],[-48,21],[12,28],[14,34],[12,44],[29,85],[5,34],[-2,39],[-22,19],[20,30],[16,40],[14,38],[20,17],[-2,35],[21,14],[-15,25],[25,12],[-15,25],[22,19],[-10,26],[22,18],[11,28],[8,29],[6,29],[1,30],[12,20],[7,9],[-4,31]],[[47430,7919],[26,-7],[32,6],[33,-13],[22,-15],[43,-30],[33,-19],[33,-20],[31,-24],[33,-4],[25,-27],[26,-20],[41,-25],[31,1],[56,6],[31,-23],[49,-21],[32,-13],[26,-11],[44,-8],[25,-4],[36,-23],[22,-14],[29,-28],[22,-26],[25,-21],[25,-20],[26,-30],[26,-28],[28,-32],[29,-35],[21,-20],[23,-11],[23,-8],[25,-7],[31,-14],[-33,-5],[-59,-22],[-27,-34],[-13,-35],[-43,-7],[-38,2],[-24,-5],[-29,-8],[-23,-15],[-38,-10],[-54,-4],[-34,-6],[-33,-1],[-28,4],[-25,4],[-24,11],[-47,21],[-57,10],[-35,1],[-44,-11],[-24,18],[-31,5],[-40,18],[-29,7],[-32,6],[-29,25],[-43,28],[-31,7],[-53,16],[-58,5],[-41,7],[-34,-1],[-28,20],[-28,27],[-24,13],[-36,30],[-26,27],[-41,32],[-24,13],[-3,33],[1,27],[-35,37],[-37,24],[-2,55],[-8,37],[-21,37],[-17,51],[-10,24],[27,-3],[28,-16],[44,-16],[39,-30],[31,-5],[33,14],[25,12],[23,34],[18,33],[25,1],[40,0],[32,8],[31,6],[33,32]],[[48899,15545],[-46,-32],[-38,-15],[-28,3],[-3,0],[-36,-4],[-73,29],[-1,8],[13,12],[51,-8],[26,-10],[2,3],[37,1],[13,3],[62,25],[13,13],[31,15],[10,-18],[-15,-12],[-17,-12],[-1,-1]],[[48441,15631],[33,-3],[25,2],[16,-5],[28,-10],[34,-12],[38,-49],[-2,-14],[-31,-6],[-25,-4],[-34,-4],[-20,18],[-40,8],[-28,8],[-34,16],[-37,5],[-59,29],[14,13],[38,-5],[1,0],[28,1],[24,18],[31,-6]],[[49158,15649],[2,-18],[-40,-3],[-30,-13],[-2,0],[-17,-12],[-117,-10],[-2,3],[17,28],[84,13],[4,4],[38,6],[5,-1],[58,3]],[[50451,17227],[-16,-2],[-17,38],[-2,96],[39,1],[-4,-133]],[[53153,15944],[-60,24],[-24,9],[-44,26],[-34,13],[-30,15],[-27,23],[-31,16],[-40,20],[-48,15],[-30,3],[-37,20],[-28,16],[-30,11],[-26,8],[-27,5],[-53,-1],[-62,19],[-48,29],[-35,24],[-32,21],[-28,20],[-39,24],[-35,20],[-33,18],[-37,11],[-29,7],[-30,4],[-27,1],[-27,-6],[-41,14],[-29,0],[-44,16],[-27,16],[-22,13],[-13,10],[-8,1],[-27,14],[-14,10],[-2,0],[-77,44],[-24,14],[-17,2],[-13,0],[-10,9],[-22,12],[0,6],[13,-4],[7,-7],[7,-2],[11,0],[13,0],[9,-7],[18,-9],[25,-14],[33,-16],[31,-13],[1,0],[4,6],[-25,11],[-38,21],[-39,19],[-13,11],[-12,2],[-19,-2],[-22,17],[-3,17],[2,30],[0,44],[-6,3],[-2,1],[-5,-27],[-3,-39],[-1,-28],[-9,-10],[-41,0],[-25,4],[-29,3],[-6,1],[-21,3],[-23,10],[-25,6],[-12,0],[-13,1],[-25,7],[-16,18],[-1,0],[-29,-6],[20,-21],[2,-1],[19,-13],[26,-7],[20,-4],[6,-2],[6,-1],[19,-5],[26,-9],[4,0],[12,2],[12,2],[2,0],[25,-9],[27,3],[26,7],[25,-7],[-2,-4],[-5,-9],[-7,1],[-2,1],[-6,0],[-22,3],[-13,-5],[-12,-4],[-24,-15],[-8,-6],[-22,-14],[-25,-5],[-30,1],[-28,7],[-28,8],[-27,8],[-32,9],[-24,9],[-26,9],[-36,19],[-20,14],[-3,2],[-44,26],[-22,15],[-47,34],[-27,20],[-28,20],[-39,25],[-27,19],[-56,42],[-112,85],[-155,95],[-109,58],[-44,-2],[-29,5],[-3,4],[17,23],[14,5],[46,-1],[0,10],[-27,0],[-1,30],[-14,-2],[-6,0],[0,5],[1,21],[-12,0],[-2,-12],[-2,-36],[-13,-19],[-19,-20],[-6,0],[-18,1],[-5,-17],[-4,-2],[-12,14],[6,15],[-17,26],[-64,85],[16,13],[9,4],[6,26],[-9,6],[-1,15],[1,44],[0,32],[0,6],[-1,91],[-19,1],[-3,0],[-16,0],[-14,23],[-17,28],[-7,4],[-3,-2],[30,-48],[2,-95],[1,-24],[36,-69],[-1,-17],[0,-13],[-4,-3],[-5,-2],[-34,55],[-68,94],[-16,28],[-71,144],[-42,88],[-25,49],[-28,58],[-58,114],[-28,61],[-20,29],[-19,56],[-2,23],[-3,28],[-6,64],[-1,35],[8,26],[25,-26],[7,-57],[9,35],[31,0],[-28,14],[1,33],[-23,11],[-16,24],[-12,-23],[-20,28],[-13,34],[-20,42],[-20,32],[-28,38],[-37,36],[-40,28],[-47,22],[-27,3],[-36,-11],[-31,-12],[-44,2],[-22,8],[-48,18],[-37,35],[-38,40],[-38,21],[-27,11],[-24,11],[-28,12],[-28,13],[-26,18],[-23,27],[-22,35],[-23,31],[-21,27],[-26,27],[-27,23],[-32,22],[-23,10],[-20,17],[-33,34],[-23,20],[-24,18],[-23,12],[-43,12],[-34,-11],[-27,-4],[-37,-11],[-34,-9],[-36,30],[-22,30],[-19,29],[-20,29],[-30,33],[-32,22],[-30,21],[-37,19],[-35,32],[-21,24],[-28,33],[-23,26],[-18,18],[-29,29],[-32,25],[-35,6],[-50,-4],[-35,6],[-18,26],[-31,38],[-27,35],[-36,40],[-36,35],[-29,17],[-26,8],[-29,7],[-25,3],[-32,-9],[-36,-10]],[[53783,23789],[50,-102],[106,-234],[166,-369],[2,0],[22,-50],[46,-106],[26,-59],[155,-348],[9,-21],[41,-92],[44,-97],[156,-335],[28,-59],[54,-147],[912,-2016],[14,-31],[580,-1281],[-1,-129],[-1,-53],[-3,-250],[-346,-7],[-7,-758],[-315,1],[-836,3],[-255,-171],[-146,-99],[-245,-164],[-841,-565],[-20,-139],[-20,-135],[-5,-32]],[[56619,5230],[53,0],[33,9],[27,7],[27,25],[18,-18],[40,-30],[26,-25],[27,-25],[-5,-37],[4,-31],[19,-32],[12,-37],[15,-48],[39,-15],[39,-14],[18,-18],[23,-51],[7,-29],[2,-38],[11,-30],[43,-72],[45,-41],[32,-14],[29,-43],[31,-36],[46,-41],[25,-27],[41,-59],[12,-42],[21,-25],[27,-33],[29,-33],[25,-39],[33,-30],[31,-41],[25,-25],[24,-24],[32,-31],[36,-32],[46,-27],[48,-28],[34,-17],[33,-16],[24,-23],[58,-42],[23,-34],[24,-25],[18,-23],[22,-22],[37,-34],[63,-44],[27,-21],[30,-25],[21,-17],[20,-21],[35,-29],[35,-29],[41,-27],[23,-24],[33,-32],[50,-28],[22,-22],[29,-24],[23,-27],[24,-20],[28,-23],[31,-11],[15,-23],[31,-22],[31,-25],[35,-20],[14,-29],[34,-21],[30,-17],[26,-16],[27,-25],[35,-45],[29,-27],[8,-26],[31,-25],[30,-32],[32,-20],[-20,-23],[-28,-15],[-25,20],[-34,17],[-46,3],[-28,-11],[-32,13],[-33,19],[-38,20],[-64,12],[-57,-8],[-36,-20],[-45,-21],[-19,-22],[-5,-29],[-7,-31],[-23,-21],[-55,-7],[-43,2],[-19,-32],[-36,-16],[-23,-12],[-13,-29],[-33,29],[6,33],[-18,28],[-16,27],[-17,19],[-38,14],[-36,10],[-24,18],[-31,10],[-31,-6],[-15,20],[-25,28],[-14,28],[-25,11],[-25,27],[-25,17],[-50,22],[-16,35],[-38,28],[-51,23],[-27,12],[-24,8],[-24,10],[-31,12],[-13,33],[-51,24],[-34,7],[2,31],[-11,33],[-15,49],[-30,27],[-16,34],[-11,36],[9,40],[-7,34],[-22,17],[-60,32],[-34,20],[11,27],[-24,21],[-19,21],[-15,25],[-27,40],[-15,31],[-9,29],[-17,25],[-31,11],[-34,0],[-21,32],[0,43],[-16,32],[-35,14],[12,58],[-16,42],[-27,49],[-6,28],[-4,37],[-9,51],[-20,37],[-25,32],[-15,30],[-23,34],[-45,37],[-20,27],[-34,21],[-20,29],[-21,40],[-14,25],[-11,28],[-5,41],[-3,55],[-10,26],[-18,20],[-18,50],[-9,27],[-7,28],[-6,30],[-22,36],[-15,38],[-22,23],[-32,14],[-35,29],[-30,0],[-40,-11],[-16,50],[0,32],[5,32],[1,36],[-8,34],[31,6],[24,9],[26,11],[25,16],[27,-6],[9,-25],[16,-33]],[[56470,9962],[34,-7],[36,1],[43,-21],[28,-5],[35,-9],[39,0],[42,10],[43,-6],[52,3],[40,-13],[31,3],[29,-5],[25,8],[39,-9],[50,8],[37,5],[42,19],[30,-14],[28,-23],[20,-38],[32,-30],[27,-12],[17,-26],[45,-32],[25,-23],[41,-20],[28,-9],[28,-13],[33,-16],[21,-44],[11,-44],[32,-28],[29,3],[41,29],[39,11],[17,23],[30,4],[28,-5],[13,-25],[26,-27],[25,-1],[26,-2],[25,-14],[25,-8],[17,-28],[23,-11],[24,-17],[27,-17],[32,-6],[18,-21],[22,-18],[25,-9],[51,8],[28,-16],[41,0],[36,0],[59,-7],[27,-10],[42,-29],[27,-8],[29,-9],[26,0],[23,-20],[24,-7],[25,-8],[42,-16],[48,8],[20,-24],[23,-27],[20,-21],[33,-8],[26,5],[34,0],[32,-17],[26,-22],[-2,-62],[-19,-31],[-3,-29],[8,-41],[31,-30],[26,-23],[41,-46],[24,-38],[18,-26],[26,-18],[30,-33],[21,-17],[25,-26],[31,-25],[49,-34],[33,-24],[19,-39],[20,-38],[22,-34],[10,-47],[32,8],[32,-11],[25,-12],[15,-21],[15,-24],[25,-28],[17,-37],[12,-26],[4,-28],[9,-29],[23,-45],[-2,-46],[-9,-29],[-5,-39],[-24,-18],[-41,-19],[-32,-34],[-27,-14],[-37,-8],[-30,-10],[-33,2],[-26,14],[-40,10],[-34,13],[-51,26],[-29,25],[-27,11],[-22,24],[-33,28],[-45,14],[-29,3],[-52,19],[-27,11],[-21,13],[-24,6],[-42,7],[-32,2],[-32,-3],[-31,-1],[-35,-5],[-44,0],[-24,5],[-32,4],[-39,1],[-31,-6],[-28,-6],[-34,-9],[-40,-17],[-36,6],[-25,6],[-26,5],[-47,5],[-61,-7],[-31,19],[-37,-3],[-29,6],[-52,10],[-38,24],[-25,10],[-22,15],[-22,32],[-24,22],[-25,20],[-12,35],[-29,24],[-14,27],[-39,27],[-21,39],[-10,28],[-13,28],[-18,39],[14,35],[18,33],[11,29],[14,35],[-14,44],[29,11],[9,25],[0,36],[36,9],[23,20],[-10,25],[-26,8],[-24,34],[-6,30],[-9,40],[-18,30],[-15,29],[12,47],[-19,21],[7,27],[-11,34],[-16,45],[-42,32],[-30,4],[-29,-1],[-27,16],[-37,23],[-16,33],[35,49],[7,26],[-31,-17],[-37,-23],[-11,-24],[-16,-19],[-2,-29],[-6,-27],[-29,8],[-12,36],[-31,18],[-29,24],[-29,1],[-35,-2],[-40,-11],[-22,45],[-49,7],[-30,-4],[-37,8],[-28,8],[-33,-19],[-26,-2],[-45,8],[-30,32],[-39,13],[-34,8],[-18,27],[19,31],[-13,25],[-43,17],[-34,35],[-24,27],[-24,39],[-43,35],[-21,30],[-10,28],[-36,16],[-34,15],[-11,34],[-15,30],[-14,23]],[[61255,12862],[-20,-15],[-29,11],[-15,-19],[-9,0],[-26,13],[-38,6],[-5,9],[2,10],[-9,2],[-3,5],[-6,12],[6,18],[18,20],[59,-8],[21,-11],[54,-53]],[[60221,12938],[21,-43],[-10,-27],[-44,-15],[-17,44],[-2,5],[-18,-6],[-54,-19],[-119,-39],[30,-76],[75,-12],[4,0],[5,0],[28,1],[3,0],[4,1],[46,13],[3,1],[34,13],[12,4],[13,-7],[3,-2],[3,-2],[0,-1],[-48,-14],[-86,-32],[-97,18],[1,-1],[-1,1],[-14,7],[59,-157],[-137,-42],[52,-80],[-13,-11],[-33,7],[-76,11],[-25,79],[24,46],[57,27],[79,19],[29,10],[-42,101],[1,8],[-12,59],[-25,7],[-33,-30],[-10,-24],[12,-5],[2,-6],[-11,-23],[15,-39],[13,-34],[24,8],[3,-5],[0,-2],[-53,-29],[-84,-17],[-24,-8],[-6,13],[8,15],[-6,17],[-4,-4],[-8,19],[4,12],[-5,20],[-45,-22],[27,-30],[-1,-32],[2,-4],[28,-83],[-25,-9],[-6,-2],[-30,77],[-1,3],[-1,11],[-32,56],[-2,45],[37,75],[21,23],[6,6],[61,57],[22,28],[16,21],[92,34],[44,19],[29,2],[3,0],[21,2],[13,1],[15,6],[10,1],[68,19],[26,8],[22,-25],[11,-21],[19,-40]],[[64448,14893],[-88,12],[-79,0],[-260,0],[-68,0],[-73,0],[-50,-2],[-34,-2],[-155,-6],[-28,-1],[-16,0],[-32,1],[-262,2],[-51,1],[-32,0],[-1,3],[-16,4],[-25,6],[-1,-2],[-38,6],[0,-17],[-73,1],[-25,0],[-20,-1],[-10,0],[-36,1],[-48,0],[-28,-1],[-32,0],[-51,0],[-29,1],[-21,0],[-11,-1],[-10,1],[-45,0],[-9,-1],[-10,1],[-12,-1],[-82,0],[1,-32],[0,-31],[0,-14],[0,-31],[0,-51],[1,-25],[-1,-4],[0,-2],[-1,-3],[1,-24],[-1,-64],[0,-20],[0,-8],[0,-28],[-1,-9],[-1,-11],[0,-10],[0,-6],[2,-8],[-1,-6],[0,-3],[0,-18],[0,-49],[-55,1],[-1,0],[-8,1],[-11,0],[-7,-1],[-3,-1],[0,-39],[0,-8],[0,-30],[-18,1],[-12,0],[-28,0],[-27,0],[0,-39],[-2,-16],[1,-9],[1,-2],[-1,-11],[-26,0],[-15,-1],[-4,1],[-5,1],[-9,-1],[-24,0],[0,-30],[0,-11],[0,-3],[0,-9],[1,-23],[-86,0],[-1,-30],[0,-8],[1,-25],[0,-17],[-37,-1],[-10,0],[-15,0],[-4,1],[-7,0],[-8,0],[-88,-1],[0,-17],[0,-7],[1,-9],[-1,-43],[-54,0],[-7,0],[-26,0],[0,-30],[0,-7],[-7,0],[-35,-1],[0,-1],[2,-30],[1,-8],[-9,1],[-5,0],[-15,0],[-17,0],[2,-27],[0,-7],[0,-22],[-22,1],[-13,0],[-4,-1],[-3,0],[0,-2],[0,-14],[1,-14],[-2,-8],[-30,-1],[-12,0],[-1,-13],[2,-25],[-15,0],[-11,0],[-7,-1],[-9,0],[0,-15],[0,-1],[0,-62],[0,-37],[-3,-3],[-11,-1],[-8,-5],[-1,-2],[-1,-9],[-3,-3],[-15,-16],[-1,-32],[0,-7],[1,-33],[1,-55],[-33,-17],[-28,-15],[-5,-2],[-23,-12],[-21,-21],[-23,-25],[-17,-19],[-17,-18],[-17,-19],[-5,-5],[-5,-5],[-11,-12],[-1,-2],[-4,-13],[-14,-56],[-6,-11],[-5,-8],[-53,-91],[-4,-7],[-21,-37],[-8,-13],[-25,-43],[10,-22],[2,-2],[1,-2],[2,-2],[1,-2],[8,-14],[29,-51],[16,-86],[0,-10],[-37,-22],[-17,-9],[-50,-30],[-27,-15],[-8,-4],[-12,-7],[-12,-7],[-13,-7],[-8,-4],[-3,-4],[-7,-8],[-7,-7],[-11,-14]],[[61252,12784],[-3,7],[-17,36],[23,16],[21,18],[-87,84],[12,9],[12,3],[22,11],[-2,5],[-34,-11],[-16,-10],[-69,68],[-19,2],[-2,-5],[61,-60],[15,-15],[-9,-6],[-36,4],[-9,-3],[-21,-22],[-14,-20],[-4,-7],[7,-20],[25,-16],[29,-7],[10,-4],[27,-11],[50,-42],[-9,-18],[-1,-2],[-2,-5],[-48,36],[-56,25],[-109,64],[-67,24],[-101,27],[-87,18],[-97,17],[-42,-5],[-12,-8],[7,-15],[9,-19],[-8,-6],[-56,-21],[-20,0],[-22,12],[-13,20],[-16,0],[-21,-1],[-64,31],[-21,17],[0,30],[-11,0],[-6,1],[2,-35],[17,-20],[15,-20],[38,-19],[62,-41],[7,-5],[39,-9],[1,-17],[-21,-18],[36,-117],[-79,1],[-3,-9],[1,-14],[39,1],[2,6],[31,1],[6,-2],[2,-6],[9,0],[1,-26],[0,-10],[-101,1],[-8,0],[-1,29],[-54,2],[-25,28],[24,21],[0,5],[71,0],[24,20],[0,20],[-47,-1],[-4,0],[1,54],[0,12],[-13,0],[4,-46],[-2,-12],[-4,-15],[-46,2],[-24,0],[-1,59],[-5,10],[-53,-31],[49,-46],[8,-27],[2,-5],[-5,-4],[-73,56],[-1,0],[-12,10],[6,26],[-4,1],[3,35],[13,9],[16,15],[49,17],[-5,71],[-14,2],[3,-25],[-6,-21],[-3,-14],[-19,-13],[-22,4],[1,63],[-14,2],[2,-56],[-16,0],[-36,74],[-6,14],[7,17],[109,48],[2,13],[-60,-25],[-31,-15],[-15,-7],[-2,3],[-1,3],[-10,16],[21,11],[58,29],[34,22],[-6,3],[-29,-17],[-10,-3],[-57,-23],[-47,-26],[-136,-34],[-18,-4],[-4,-1],[-102,-35],[-14,27],[7,14],[14,11],[14,17],[4,19],[4,5],[1,6],[7,7],[11,6],[34,18],[-4,10],[-44,-22],[-17,-32],[-11,-14],[-84,-96],[-2,1],[-5,52],[-2,1],[-2,0],[-23,0],[-9,-10],[24,-22],[4,-43],[-50,-55],[-14,-10],[-9,35],[12,3],[-2,4],[-4,10],[-4,8],[26,40],[-4,7],[-41,-44],[6,-54],[-20,1],[-8,9],[-4,5],[-15,15],[4,21],[30,79],[-3,4],[-58,-5],[-2,5],[4,6],[-15,19],[-12,-4],[28,-50],[18,-33],[-18,-21],[-21,-22],[-52,-10],[-32,-11],[38,-2],[26,-9],[7,-3],[24,9],[9,4],[16,-10],[17,-32],[-2,-8],[-4,-14],[-28,8],[-5,2],[-4,-10],[27,-10],[3,-3],[2,-1],[6,-4],[-25,-40],[-10,-21],[10,-77],[21,-40],[33,-101],[-2,-1],[-15,-5],[-24,70],[-6,-1],[-4,-4],[28,-84],[3,-13],[6,-15],[-9,-10],[-3,-3],[-3,-3],[-3,1],[-17,12],[-11,28],[1,22],[-12,8],[-16,42],[-3,7],[-6,-14],[5,-12],[20,-60],[-28,-12],[-26,-6],[14,-23],[-1,-32],[29,-4],[37,-20],[-39,9],[-36,5],[-23,-33],[-23,-11],[-57,-3],[-8,34],[-22,14],[-37,10],[-23,10],[-34,5],[-52,26],[-49,0],[-29,20],[-20,19],[-31,5],[-74,33],[-64,23],[-28,23],[-46,7],[-33,3],[-29,32],[-76,78],[-33,12],[-28,-7],[-19,-16],[-59,15],[-29,42],[-33,6],[-28,-3],[-31,-20],[-34,-3],[-28,-16],[-17,-21],[-26,-2],[-21,19],[-17,10],[-21,30],[-25,-6],[-36,-1],[-27,70],[-8,47],[-11,37],[-26,48],[-57,63],[-4,16],[29,11],[2,2],[-4,27],[-19,15],[-23,-3],[-24,12],[-2,21],[38,33],[9,41],[38,25],[10,11],[50,30],[65,26],[-4,43],[30,52],[101,39],[31,122],[1,141],[-3,105],[-7,30],[-17,22],[-6,0],[-16,0],[-19,26],[-10,19],[-5,10],[-14,0],[-3,8],[10,6],[10,4],[-28,115],[-67,165],[-33,72],[-16,31],[-16,30],[-17,38],[-18,39],[-17,39],[-20,43],[-37,74],[-24,48],[-127,251],[-43,65],[-24,44],[-72,110],[107,61],[-3,5],[-3,5],[2,139],[-26,0],[-2,-115],[-31,-29],[-51,-24],[-28,45],[-72,101],[-50,63],[-30,22],[-65,91],[-12,25],[-27,27],[-56,58],[-42,36],[-56,67],[-62,55],[-72,51],[-29,20],[-102,62],[-54,18],[-73,36],[-128,-4],[-105,33],[-48,1],[-33,-15],[-45,-7],[-29,-11],[-14,-6],[-42,13],[-38,6],[-25,1],[-29,-6],[-27,1],[-57,-14],[-27,-13],[-57,6],[-33,3],[-36,4],[-29,-5],[-28,-3],[-37,1],[-34,-8],[-49,11],[-38,8],[-39,-5],[-33,2],[-29,5],[-52,6],[-26,1],[-52,-1],[-26,-2],[-43,-14],[-32,-35],[-19,-15],[-4,-4],[-38,-12],[-33,8],[-44,6],[-44,-4],[-32,-13],[-40,-11],[-32,-1],[-29,8],[-29,7],[-27,1],[-46,2],[-41,5],[-25,3],[-51,7],[-44,-1],[-42,-4],[-31,-5],[-39,-14],[-33,-19],[-24,-23],[-35,-12],[-27,-2],[-28,-2],[-25,-4],[-27,-6],[-24,-4],[-25,-5],[-27,-7],[-58,-13],[-24,-23],[-40,-37],[-14,-25],[-15,-24],[-10,-36],[-32,-12],[-33,-7],[-33,-28],[-15,-29],[-26,10],[-31,37],[-21,23],[-34,40],[-31,26],[-22,19],[-35,28],[-24,21],[-26,19],[-45,32],[-26,21],[-35,24],[-34,21],[-24,13],[-39,16],[-25,9],[-39,9],[-39,-6],[-41,13],[-46,12],[-25,5],[-26,5],[-28,0],[-27,1],[-45,5],[-35,4],[-41,3],[-45,13],[-29,8],[-29,4],[-41,3],[-26,-2],[-27,2],[-29,15],[-28,14],[-27,8],[-53,5],[-25,-6],[-47,-22],[-34,10],[-52,9]],[[95186,9525],[-873,-6],[-158,-1],[-153,-1],[-815,-6],[-2837,-21],[-1578,-11],[-2496,-18],[-247,-2],[-2544,-18],[-33,-1],[-68,0],[-403,-3],[-1568,-11],[-180,-2],[-220,-1]],[[81013,9423],[-79,-13],[-61,0],[-109,0],[-43,0],[-129,2],[-39,0],[-116,6],[-135,5],[-236,11],[-125,5],[-46,3],[-91,-2],[-111,-1],[-279,-5],[-38,0],[-175,0],[-308,-4],[-211,0],[-206,-3],[-316,-1],[-28,0],[-7,0],[-172,-1],[-55,0],[-71,0],[-94,-1],[-179,0],[-283,-2],[-172,0],[-26,-1],[-53,0],[-33,0],[-10,-1],[-33,0],[-171,0],[-142,1],[-31,0],[-127,1],[-86,0],[-178,1],[-28,0],[-131,1],[-52,0],[-191,1],[-50,0],[-29,-1],[-157,0],[-213,0],[-178,0],[-25,0],[-91,-1],[-125,0],[-47,0],[-98,0],[-140,-1],[-70,0],[-73,0],[-130,1],[-354,-2],[-51,0],[-32,0],[-32,-1],[-56,0],[-35,0],[-38,0],[-26,0],[-32,0],[-48,0],[-2,0],[-26,-1],[-29,0],[-48,-1],[-6,0],[-37,1],[-51,-2],[-26,3],[-75,-3],[-82,2],[-76,2],[-113,1],[-126,2],[-1191,-4],[6,48],[-1117,1],[-507,1],[-431,0],[-6,169],[-335,124],[-371,138],[-551,205],[56,134],[-103,1],[-683,4],[-18,0],[-163,0],[-131,0],[-44,0],[-122,0],[-82,0],[-59,0]],[[67128,10245],[0,43],[58,-2],[4,71],[2,50],[-41,2],[-25,0],[0,24],[-3,118],[443,624],[85,121],[384,542],[24,34],[-574,462],[-610,88],[-5,481],[-439,113],[-21,50],[-22,25],[-26,30],[-71,81],[-95,109],[-21,23],[-177,214],[-112,135],[-77,91],[-78,90],[-86,101],[-118,5],[-7,107],[2,1],[22,13],[-6,9]],[[97067,16396],[-16,-53],[-10,-33],[-2,-7],[-13,-46],[-9,-33],[-8,-62],[-2,-22],[-6,-74],[0,-33],[7,-34],[20,-49],[9,-32],[7,-50],[-7,-67],[-6,-39],[-19,-55],[-23,-34],[-32,-33],[-29,-21],[-33,-17],[-44,-17],[-83,13],[-12,-3],[-13,-10],[-1,-3],[-14,-35],[1,-23],[10,-14],[54,-29],[19,-20],[3,-10],[4,-12],[-20,-35],[-59,-4],[-16,-6],[-12,-15],[-31,-46],[-32,-26],[-48,-29],[-15,-13],[-11,-31],[-16,-24],[-29,-23],[-24,-24],[-39,-37],[-16,-17],[-37,-41],[-34,-18],[-71,-35],[-41,8],[-14,1],[-53,-21],[-15,-15],[-47,-63],[-16,-30],[-6,-12],[-13,-28],[0,-1],[-32,-60],[-6,-15],[-1,-18],[-2,-34],[1,-23],[4,-10],[3,-9],[12,-7],[35,-9],[51,-23],[40,-29],[56,-49],[25,-27],[18,-26],[14,-25],[12,-36],[1,-11],[-5,-15],[-9,-12],[-17,-12],[-14,-6],[-13,-6],[-25,0],[-70,35],[-15,4],[-8,-7],[3,-25],[7,-31],[23,-36],[41,-43],[52,-51],[8,-8],[16,-15],[32,-23],[19,-14],[14,-17],[4,-11],[-3,-17],[-1,-10],[1,-16],[4,-24],[3,-7],[-4,-17],[-22,-23],[-29,-15],[-27,-13],[-22,-21],[-19,-14],[-12,-2],[-21,5],[-27,12],[-24,5],[-27,-8],[-15,-10],[-13,-9],[-6,-27],[4,-30],[1,-28],[9,-30],[20,-48],[16,-35],[6,-16],[28,-64],[11,-30],[8,-32],[-5,-20],[-3,-15],[-19,-33],[-35,-25],[-11,-7],[-6,-10],[8,-25],[10,-15],[15,-23],[27,-66],[22,-44],[11,-38],[16,-65],[5,-14],[11,-27],[11,-22],[18,-40],[5,-11],[9,-24],[10,-24],[15,-33],[15,-40],[15,-52],[6,-44],[1,-38],[0,-16],[-1,-14],[-14,-49],[-21,-48],[-19,-33],[-19,-39],[-3,-8],[8,-9],[6,-7],[13,-11],[29,-15],[13,-13],[10,-10],[15,-37],[8,-11],[10,-14],[28,-19],[12,-11],[5,-12],[7,-21],[5,-17],[5,-43],[2,-22],[-2,-32],[-6,-26],[-5,-15],[-1,-33],[-10,-17],[-27,-13],[-39,-17],[-15,-10],[-29,-11],[-46,-9],[-57,-26],[-30,-17],[-22,-12],[-37,-34],[-25,-36],[-7,-26],[-5,-18],[-6,-57],[18,-30],[38,-31],[56,-13],[34,2],[18,-9],[12,-20],[-5,-22],[-37,-22],[-5,0],[-2,0],[-59,0],[-13,-4],[-40,-12],[-16,-15],[-9,-14],[0,-34],[35,-49],[41,-33],[10,-43],[5,-20],[-25,-47],[-27,-9],[-11,-4],[-8,-12],[0,-19],[1,-27],[14,-15],[12,-26],[6,-10],[30,-30],[22,-18],[5,-17],[-2,-14],[-14,-13],[-32,-12],[-24,-25],[-13,-18],[-6,-7],[-8,-13],[-26,-40],[-38,-58],[-19,-23],[3,-28],[-4,-62],[3,-19],[7,-26],[11,-26],[10,-15],[2,-11],[6,-29],[7,-16],[7,-12],[15,-20],[5,-6],[9,-26],[6,-18],[25,-21],[18,-20],[5,-6],[12,-20],[11,-21],[-2,-12],[-20,-9],[-25,-9],[-17,-13],[-9,-15],[-66,-38],[-29,-17],[-12,-7],[-52,-35],[-45,-30],[-26,-18],[-16,-9],[-13,-7],[-11,-14],[-3,-28],[-9,-49],[2,-20],[1,-37],[-4,-19],[-10,-12],[-33,-28],[-20,-21],[-21,-19],[-18,-9],[-42,-11],[-16,-3],[-30,-6],[-29,-15],[-17,-9],[-30,-18],[-15,-15],[-10,-12],[-16,-18],[-13,-22],[-8,-14],[-22,-38],[-4,-6],[-14,-39],[-3,-10],[-7,-19],[-10,-16],[-9,-13],[-19,-20],[-12,-12],[-18,-24],[-10,-14],[-5,-4],[-28,-27],[-27,-32],[-17,-25],[-17,-26],[-12,-19],[-41,-59],[-5,-22],[9,-44],[2,-27],[0,-2],[-8,-30],[-7,-50],[-4,-34],[-16,0]],[[63447,11338],[15,-22],[9,-22],[0,-1],[-4,-3],[-6,0],[-3,0],[-99,0],[-30,31],[-5,12],[1,8],[9,0],[15,0],[23,-5],[10,2],[50,4],[9,-4],[6,0]],[[63239,11339],[-9,-3],[-6,1],[-100,30],[-28,42],[-7,1],[-5,4],[4,8],[6,7],[33,-16],[116,-56],[5,-3],[-9,-15]],[[67128,10245],[0,-53],[3,-106],[-2,-193],[10,-13],[0,-9],[-43,-13],[-7,-3],[-5,-3],[-8,0],[-34,-19],[-81,-44],[-7,-7],[-79,-43],[-26,-15],[-10,0],[-32,-7],[-24,-6],[-23,-6],[-7,-2],[-19,-3],[-40,-7],[-17,-4],[-7,-4],[-3,-2],[-44,4],[-34,4],[-25,4],[-18,1],[-37,4],[-17,2],[-33,4],[-2,-10],[-18,-71],[-20,-77],[-9,-38],[-49,-203],[-14,-66],[-6,-27],[-24,-89],[-3,-13],[-3,-14],[-4,-27],[-7,-32],[-4,-18],[-5,-20]],[[66291,9001],[-82,138],[-36,64],[-19,22],[-27,32],[-64,74],[-41,44],[-60,50],[-52,52],[-94,76],[-38,30],[-7,4],[-26,19],[-58,45],[-40,19],[-78,47],[-51,32],[-10,7],[-60,22],[-11,6],[-5,3],[-56,-7],[1,-18],[-3,0],[-8,2],[-7,2],[-3,1],[-3,-9],[-2,-12],[-19,-12],[-93,23],[-9,18],[10,18],[-18,5],[-5,-7],[0,-12],[-11,-7],[-3,-1],[-12,4],[-32,-5],[-3,0],[-22,-2],[-10,10],[-5,33],[-26,61],[-17,29],[-1,2],[-14,14],[-32,69],[-20,32],[-4,2],[-36,9],[-11,3],[-8,-4],[-1,-6],[-2,-2],[-3,1],[-8,15],[10,15],[-8,15],[-4,1],[-12,7],[-6,-3],[-5,-4],[-3,1],[-10,19],[-7,54],[-5,5],[-15,22],[-21,18],[-20,15],[-5,6],[-34,51],[-33,42],[-3,3],[-30,26],[-33,9],[-13,26],[-23,36],[-37,51],[-23,12],[-26,22],[-26,30],[-29,30],[-18,28],[-22,33],[-24,24],[-14,4],[-23,0],[-19,7],[-17,0],[-11,11],[-8,7],[-8,7],[-10,3],[-10,-7],[-2,0],[-6,5],[-6,0],[-6,-9],[-8,0],[-4,1],[-4,16],[0,1],[-7,3],[-17,3],[-6,-6],[-7,-1],[-23,23],[-15,34],[-35,10],[-18,-19],[-9,5],[1,20],[-35,5],[-15,8],[0,20],[1,13],[-43,49],[-11,9],[-28,12],[-26,10],[-22,18],[-3,2],[-22,27],[-25,27],[-20,21],[-178,94],[-24,13],[-22,15],[-18,22],[-24,25],[-22,15],[-20,11],[-18,10],[-30,-3],[-7,2],[-11,25],[-19,61],[-12,6],[-17,8],[-6,14],[-12,28],[-3,7],[-13,16],[-13,10],[-105,0],[-27,-1],[-17,10],[-6,11],[-8,14],[0,4],[6,10],[1,17],[2,6],[6,15],[2,1],[11,0],[18,14],[40,10],[14,3],[9,-5],[-4,-32],[-5,-11],[6,-6],[12,-1],[6,4],[5,3],[2,21],[-8,13],[0,6],[1,18],[8,31],[1,7],[5,6],[13,7],[29,4],[20,20],[-2,6],[-10,8],[0,1],[3,16],[-29,29],[6,71],[24,36],[12,15],[2,8],[11,11],[21,9],[55,-2],[5,1],[75,21],[-2,6],[0,3],[-8,1],[-23,2],[-4,-3],[-18,-14],[-38,-9],[-44,2],[-4,-3],[-32,-17],[-9,6],[-7,0],[-13,-20],[-2,-3],[-5,-7],[3,-8],[-3,-21],[-10,-44],[-1,-3],[-11,-14],[-3,-14],[10,-11],[9,-6],[22,-25],[0,-15],[-2,-15],[-27,-14],[-17,-4],[-7,-8],[-2,-1],[-11,-43],[-86,-3],[-19,-18],[-11,-35],[-4,-14],[-19,-33],[-112,56],[-74,35],[-10,-4],[0,-7],[2,-3],[3,-6],[14,-23],[7,-12],[23,-40],[-1,-7],[-18,-8],[-24,22],[-4,-1],[-3,-2],[6,-13],[11,-4],[4,-9],[7,-6],[51,-5],[90,-21],[26,-11],[8,6],[24,21],[7,0],[3,-7],[0,-11],[0,-3],[25,-14],[29,-20],[22,-15],[26,-12],[85,2],[21,-21],[14,-51],[-70,25],[-53,19],[-59,21],[-59,14],[-97,23],[-35,8],[-43,15],[-32,3],[-29,8],[-58,89],[-29,37],[-23,23],[-80,46],[-24,13],[-27,16],[-30,14],[-6,4],[-67,45],[-53,32],[-33,22],[-131,85],[-125,81],[-22,14],[-24,21],[-29,26],[-24,21],[-38,31],[-30,24],[-124,105],[-52,54],[-136,156],[-123,128],[-33,22],[-120,103],[-29,34],[-58,51],[-32,19],[0,3],[-1,4],[-31,18],[-4,3],[4,4],[58,-29],[37,2],[1,-3],[9,-26],[2,-2],[2,0],[6,0],[31,-25],[26,1],[39,-18],[11,-12],[11,-1],[29,-16],[16,-9],[7,-3],[9,-27],[7,-18],[1,-7],[9,-19],[8,-24],[7,0],[1,14],[0,1],[3,1],[28,-1],[30,-4],[0,6],[-6,2],[-22,1],[-10,7],[-6,-3],[-19,-5],[-2,3],[-15,37],[-5,20],[-13,32],[-51,19],[-33,19],[-17,6],[35,28],[6,5],[0,1],[-7,-1],[-43,-28],[-20,3],[-12,4],[-8,9],[-16,8],[-6,3],[3,11],[7,1],[17,2],[14,21],[25,6],[-1,4],[2,10],[1,1],[8,5],[1,4],[1,1],[0,5],[0,1],[0,1],[0,4],[-1,3],[-4,5],[0,1],[-5,-2],[-6,-4],[-8,-3],[-16,-14],[-3,-2],[-14,-10],[6,-22],[-3,-6],[-8,6],[-2,1],[-3,5],[-1,2],[5,4],[2,20],[-1,3],[-1,6],[-1,4],[6,3],[17,8],[2,15],[2,18],[7,1],[1,0],[8,2],[0,7],[-7,3],[-3,1],[-3,-1],[-7,-2],[0,-5],[-11,-32],[-18,-14],[-2,-2],[0,-3],[0,-4],[-1,-8],[2,-4],[1,-3],[0,-4],[-3,-4],[-3,-4],[0,-6],[0,-1],[0,-1],[0,-2],[1,-2],[4,-3],[6,-5],[0,-2],[-1,-3],[-4,0],[-4,1],[-12,10],[-12,6],[-7,8],[-2,0],[-6,0],[5,-12],[-7,1],[-12,-1],[-9,4],[-3,10],[-3,19],[-9,3],[-3,-2],[-8,-8],[-20,12],[-40,27],[-6,-8],[-21,-20],[22,-13],[4,1],[8,1],[-3,-3],[-1,-1],[-4,-4],[-21,4],[-7,2],[-8,2],[-10,12],[-8,7],[-39,13],[-96,24],[16,37],[2,4],[4,18]],[[71070,830],[-13,-11],[-6,0],[-2,2],[-66,25],[14,29],[11,-5],[7,-1],[46,-18],[-1,0],[4,-1],[7,-15],[-1,-5]],[[69824,2566],[-7,-20],[3,-17],[-1,-6],[-13,-18],[-12,-4],[-12,7],[-8,-2],[-8,-8],[-12,4],[-7,5],[5,14],[-20,17],[-2,10],[6,15],[13,6],[18,-4],[-1,-14],[16,0],[0,17],[18,5],[9,5],[11,6],[7,0],[3,-7],[-6,-11]],[[69989,2601],[16,-26],[0,-14],[-2,-4],[-4,-1],[-5,0],[-29,16],[-8,6],[-5,-4],[2,-8],[2,-10],[53,-40],[22,-8],[2,-29],[-14,-21],[-15,-3],[-21,0],[-13,7],[-5,11],[-3,22],[-33,27],[-11,-12],[26,-25],[0,-15],[-8,-5],[-33,21],[-49,3],[-3,8],[3,3],[33,24],[22,39],[14,44],[13,23],[41,66],[21,4],[21,-15],[3,-16],[-5,-15],[-40,-20],[0,-18],[12,-15]],[[81013,9423],[11,-1487],[4,-475],[5,-680],[1,-163],[0,-9],[2,-300],[5,-597],[-224,-7],[19,-2113],[15,-1492],[0,-21],[0,-63],[-19,0],[-50,-2],[2,-25],[5,-74],[-1,-183],[0,-72],[0,-70],[0,-75],[0,-12],[0,-18],[0,-33],[0,-81],[0,-111],[0,-32],[-1,-32],[1,-33],[0,-15],[-1,-16],[-4,-153],[0,-31],[1,-61]],[[80784,887],[-366,-33],[-470,-40],[-424,-35],[-516,-44],[-373,-32],[-430,-40],[-295,-26],[-747,-65],[-190,-16],[-368,-35],[-119,-11],[-533,-46],[-169,-15],[-182,-17],[-194,-17],[-312,-27],[-91,-8],[-377,-34],[-320,-32],[-238,-21],[-31,-3],[-170,-15],[-69,-7],[-405,-36],[-381,-35],[-566,-54],[-369,-33],[-249,-23],[-3,0],[-29,-3],[-479,-43],[-243,-23],[-182,-16],[-24,-2],[-2,43],[-7,60],[-23,77],[-42,105],[-9,49],[1,32],[0,32],[2,34],[1,36],[0,46],[1,31],[3,71],[-3,57],[-8,54],[-2,28],[-4,34],[-7,29],[-13,74],[-14,48],[-14,39],[-20,30],[-11,25],[-25,51],[-61,115],[-27,39],[-59,98],[-45,66],[-34,41],[-89,73],[-5,4],[-26,33],[-24,17],[-37,20],[-26,15],[-31,14],[-41,7],[-70,-5],[-98,-8],[-40,-13],[-47,-22],[-2,2],[-2,7],[-19,18],[-8,17],[-4,100],[9,7],[20,59],[35,40],[42,39],[63,25],[28,6],[58,9],[44,-3],[21,-3],[44,-21],[10,-8],[-3,-28],[-7,-8],[-7,-2],[-4,-16],[23,-1],[36,-11],[40,-18],[-5,-9],[1,0],[56,-21],[4,-1],[22,-3],[58,-29],[23,-41],[5,-55],[0,-3],[1,-36],[-14,-13],[-7,-37],[-19,-16],[-15,5],[-4,4],[-48,24],[25,-40],[28,-24],[28,-6],[14,-3],[70,59],[24,-22],[14,-14],[-16,-15],[-47,-47],[-2,-32],[6,-24],[18,-16],[39,-56],[34,-8],[27,-36],[-10,-13],[-11,-6],[-6,-5],[5,-7],[13,-5],[26,0],[14,-13],[48,-110],[10,-18],[-13,-5],[-11,-5],[-2,-8],[1,-5],[12,-6],[14,-42],[4,-6],[47,23],[22,-36],[-8,-2],[0,-20],[20,-1],[11,-61],[-12,-1],[-9,19],[-8,-3],[4,-16],[27,-12],[3,-13],[-37,-37],[-14,-37],[19,-42],[35,-11],[18,-21],[7,0],[7,1],[18,-14],[3,-19],[-6,-7],[13,-55],[3,-36],[29,-10],[35,-10],[9,-6],[13,-9],[29,-4],[31,-8],[18,12],[57,37],[0,11],[-1,55],[5,0],[8,0],[7,57],[-15,5],[-6,43],[2,41],[1,13],[-4,50],[-1,8],[-12,-3],[-31,-9],[-12,34],[15,5],[4,-16],[21,6],[-14,42],[-15,0],[-25,-6],[-26,53],[5,8],[-2,12],[13,4],[5,1],[1,6],[-2,4],[0,2],[-13,25],[-9,9],[-19,3],[-30,13],[-6,5],[-8,45],[-14,15],[2,25],[-1,1],[1,2],[88,24],[16,4],[-4,10],[-85,-22],[-40,-10],[-5,2],[-1,3],[-6,26],[-8,37],[-6,-1],[-5,21],[-1,11],[41,4],[-3,16],[-4,30],[-4,36],[-4,33],[-34,1],[-1,14],[25,4],[51,33],[-7,11],[-26,-17],[-3,3],[-45,56],[-50,63],[-3,-2],[-7,-6],[-40,39],[-19,-21],[-38,18],[7,4],[13,7],[-5,13],[-12,12],[-20,-4],[-8,2],[-6,-6],[-4,-3],[-30,18],[3,4],[9,12],[-30,22],[-37,25],[-24,-7],[-66,49],[35,10],[-4,3],[-20,-4],[-14,14],[7,8],[-6,5],[-7,6],[-3,-5],[5,-6],[-11,-12],[-37,26],[-29,21],[-8,12],[-9,5],[-15,34],[-19,-10],[-2,1],[-4,18],[19,0],[4,0],[2,11],[-18,0],[-14,0],[0,25],[-1,20],[21,0],[11,1],[2,38],[-4,38],[-13,10],[-2,2],[-11,9],[-29,0],[-5,-9],[-5,-13],[-47,15],[6,11],[3,5],[-16,1],[-8,-6],[-10,-7],[-71,2],[-2,-12],[0,-1],[15,-5],[33,-4],[24,-3],[3,-5],[-1,-4],[-11,-2],[-70,9],[-50,0],[-109,-8],[-14,3],[2,5],[82,13],[18,0],[40,-1],[6,5],[3,17],[-18,6],[-92,-4],[-12,0],[-27,-2],[6,31],[58,66],[7,11],[-14,27],[-12,3],[-12,-21],[16,-16],[-58,-60],[-2,-27],[-24,-76],[-3,-5],[-13,3],[-46,31],[-6,3],[-30,-12],[0,-20],[46,-37],[18,15],[12,-4],[-18,-33],[-50,-37],[-42,-43],[-27,-12],[-12,2],[-1,11],[24,7],[77,74],[-1,15],[-24,17],[-18,-23],[-16,10],[-32,-9],[-9,-31],[-9,-34],[-12,-39],[10,-33],[-1,-11],[-25,-42],[-7,-54],[19,-68],[23,-25],[5,-10],[-28,-22],[-7,-10],[4,-39],[8,-29],[2,-22],[6,-20],[-9,-9],[-2,-6],[-1,-4],[4,-13],[0,-1],[-20,-26],[-38,-10],[-5,4],[-23,40],[-3,46],[-18,44],[-8,33],[-13,27],[-5,34],[3,25],[-11,16],[-26,43],[-13,49],[2,34],[-4,18],[1,38],[-5,46],[-4,32],[9,10],[-9,22],[-10,25],[3,18],[-2,9],[-3,16],[2,13],[4,5],[10,18],[-5,25],[-4,15],[-1,20],[7,13],[4,17],[6,36],[0,12],[-5,37],[6,26],[6,2],[7,2],[9,22],[9,54],[75,9],[-2,15],[-1,5],[0,6],[18,9],[11,19],[-3,18],[9,0],[2,-12],[52,2],[2,4],[-20,10],[-12,9],[4,13],[-5,0],[-6,-15],[-28,3],[2,22],[12,17],[14,3],[22,6],[14,-10],[2,2],[-11,16],[7,0],[17,9],[7,-2],[10,-2],[1,-24],[4,-1],[3,14],[11,-1],[4,-10],[12,0],[3,7],[21,0],[67,-23],[14,-1],[1,-19],[22,-2],[3,19],[14,1],[37,23],[4,7],[1,14],[9,4],[6,3],[0,8],[-7,-1],[-6,-1],[-4,3],[-2,19],[-10,36],[-15,26],[1,41],[3,15],[9,0],[1,-10],[2,-11],[2,-2],[8,3],[3,9],[4,17],[-7,12],[4,11],[3,1],[8,-1],[0,5],[-1,6],[-13,5],[-14,13],[1,3],[5,14],[12,24],[-5,28],[-18,9],[-29,0],[-16,-6],[-5,-2],[-1,-10],[6,-3],[39,1],[4,-2],[5,-7],[-6,-9],[-15,-5],[-33,-6],[-24,6],[-5,17],[-1,7],[-5,0],[-14,-1],[-14,-4],[6,-18],[-12,-1],[-1,2],[-5,21],[-29,-6],[-5,13],[-19,-4],[1,-20],[-16,-16],[-7,-24],[7,-6],[0,-1],[-2,-52],[-13,-23],[-19,-22],[-25,-2],[-16,22],[-6,37],[-14,44],[-18,14],[-28,9],[-17,-2],[-3,-1],[-15,-2],[-6,-10],[-14,-8],[-5,-6],[1,-22],[15,-35],[6,5],[-1,13],[6,6],[11,-5],[1,-4],[-1,-14],[5,-22],[-13,-2],[-6,14],[-9,0],[-6,-40],[22,4],[5,10],[7,-3],[3,-1],[7,-13],[3,-7],[-9,-5],[-25,-2],[-2,9],[-13,0],[7,-32],[21,-31],[19,16],[-7,18],[3,6],[15,-2],[10,-19],[-11,-22],[14,-13],[8,4],[7,-5],[0,-1],[-9,-21],[-18,-28],[0,-17],[-9,-3],[0,17],[-4,4],[9,29],[-22,16],[-15,-51],[4,-26],[13,-19],[12,-4],[-2,14],[18,3],[-1,-13],[-14,-12],[-61,-7],[-9,0],[0,13],[4,42],[-1,38],[-2,48],[0,27],[-3,44],[-3,31],[-4,28],[-7,39],[-13,52],[-9,30],[-13,34],[-12,27],[-28,33],[-8,17],[-17,9],[-12,-3],[-11,5],[-21,38],[-12,17],[-14,10],[-8,11],[1,14],[-1,11],[-1,5],[-6,6],[-8,-2],[-14,9],[-11,8],[-18,7],[-13,19],[9,27],[3,12],[-11,42],[-13,26],[7,23],[0,9],[0,17],[-8,25],[5,26],[10,16],[14,8],[3,20],[5,7],[26,26],[4,3],[16,14],[17,-2],[6,-1],[10,-3],[27,-15],[28,-1],[8,13],[10,14],[21,13],[1,1],[20,31],[24,41],[13,44],[3,11],[10,67],[8,13],[11,24],[0,19],[-8,54],[-10,33],[-2,25],[-1,33],[-2,52],[-4,52],[-9,41],[-5,25],[-12,51],[-19,47],[3,22],[-7,87],[-2,22],[0,3],[-12,57],[-2,8],[-7,32],[-14,64],[-8,29],[-10,26],[-15,37],[-10,36],[-10,39],[-1,37],[-1,28],[-20,104],[-3,15],[-11,28],[-10,39],[-8,45],[-8,48],[-15,54],[-16,26],[-6,47],[-1,36],[-9,44],[-16,31],[-6,12],[-10,21],[-35,77],[-42,87],[-10,13],[-13,5],[-9,3],[-6,12],[-8,8],[-11,43],[-8,28],[-12,42],[-10,28],[-17,60],[-35,82],[-11,27],[-36,96],[-15,49],[-10,83],[-29,60],[-84,207],[-12,26],[-56,103],[-26,25],[-15,17],[-11,21],[-8,24],[-13,29],[-1,3],[-25,44],[0,11],[-23,38],[-8,5],[-50,64],[-66,90],[-4,8],[-21,31],[-22,32],[-1,9],[-118,140],[-24,29],[-85,105],[-46,65],[-18,19],[-16,26],[-19,31],[-3,2],[-4,9],[-18,2],[-15,22],[-23,12],[-23,-5],[0,13],[11,2],[5,1],[0,7],[2,3],[13,10],[17,2],[17,6],[-32,41],[-24,-17],[13,-22],[-9,-5],[-18,-2],[-10,16],[-44,87],[-47,56],[-53,63],[-48,66],[-36,51],[-21,28],[-16,25],[-43,57],[-56,78],[-27,36],[-47,58],[-26,33],[-84,103],[-30,38],[-49,62],[-87,104],[-42,49],[-16,19],[-100,111],[-35,31],[-100,105],[-33,27],[-37,33],[-94,73],[-76,56],[-31,26],[-62,51],[-54,40],[-47,22],[-9,5],[-60,33],[-80,50],[-7,14],[-25,25],[-28,12],[-30,4],[-20,2],[-22,11],[-65,8],[-12,15],[-27,14],[-6,4],[-20,14]],[[95186,9525],[-8,-19],[2,-20],[-30,-52],[-34,-31],[-2,-2],[-18,-25],[-71,-56],[-8,-7],[-61,-33],[-32,-7],[-38,-1],[-18,4],[-31,11],[-18,7],[-36,10],[-23,11],[-33,12],[-47,-1],[-32,-2],[-25,1],[-28,1],[-54,-15],[-11,-4],[-31,-22],[-3,-21],[-14,-17],[-22,-14],[-12,-8],[-22,-3],[-65,-9],[-7,0],[-11,0],[-19,2],[-31,5],[-31,-2],[-29,-12],[-14,-16],[-2,-11],[3,-19],[9,-19],[22,-28],[43,-50],[39,-50],[32,-29],[13,-11],[16,-21],[2,-34],[-2,-28],[19,-39],[59,-121],[9,-43],[3,-52],[-11,-39],[-2,-37],[-12,-70],[-3,-14],[-1,-4],[-26,-64],[-36,-70],[-18,-24],[-13,-12],[-43,-31],[-6,-4],[-12,-8],[-33,-23],[-33,-26],[-28,-40],[-33,-27],[-13,-18],[0,-17],[13,-27],[28,-56],[37,-69],[18,-13],[13,-6],[21,-11],[25,-8],[42,-12],[79,-15],[57,-15],[32,-9],[45,-17],[28,-12],[22,-11],[34,-24],[33,-36],[18,-37],[11,-24],[17,-41],[3,-21],[-10,-16],[-17,-16],[-28,-11],[-30,-23],[-24,-23],[-48,-22],[-13,-16],[1,-13],[26,-45],[24,-37],[13,-23],[6,-8],[43,-47],[25,-36],[8,-12],[9,-25],[-1,-41],[-12,-42],[-9,-38],[-2,-9],[-16,-40],[-10,-38],[6,-44],[9,-36],[2,-7],[8,-34],[6,-25],[2,-6],[1,-9],[-2,-32],[-4,-38],[-20,-50],[-12,-23],[-6,-53],[-2,-19],[12,-51],[-6,-36],[-18,-29],[-9,-15],[-1,-2],[-3,-9],[-3,-10],[-18,-60],[-23,-58],[-1,-2],[-26,-41],[-2,-3],[-3,-3],[-35,-35],[-7,-8],[-18,-21],[-3,-3],[-1,-3],[-56,-153],[-27,-91],[-17,-73],[-4,-29],[-4,-32],[2,-42],[6,-15],[7,-16],[17,-12],[35,-7],[27,-2],[46,-4],[45,-19],[4,-12],[-7,-47],[3,-20],[1,-11],[7,-17],[12,-31],[24,-30],[65,-80],[11,-11],[23,-25],[-4,-56],[-4,-34],[9,-52],[6,-13],[9,-21],[31,-37],[29,-19],[41,-26],[24,0],[19,12],[36,49],[44,79],[25,26],[11,5],[26,-16],[13,-11],[51,-46],[16,-23],[64,-88],[31,-22],[53,-20],[101,-15],[46,-3],[57,-4],[26,3],[75,10],[15,3],[21,14],[25,33],[19,24],[20,16],[30,15],[34,1],[34,-9],[32,-8],[39,3],[32,-5],[47,-10],[83,-2],[22,-1],[20,-2],[28,-2],[67,-11],[12,-3],[56,-13],[5,-2],[21,-5],[3,0],[35,-25],[14,-12],[0,-1],[31,-26],[54,-72],[7,-9],[13,-30],[35,-77],[9,-24],[4,-40],[3,-12],[3,-11],[5,-24],[7,-36],[7,-52],[3,-24],[1,-13],[1,-2],[18,-89],[8,-20],[3,-8],[11,-16],[26,-12],[2,0],[16,5],[24,8],[12,4],[5,1],[17,11],[9,6],[17,11],[37,10],[3,-1],[22,-4],[27,-17],[2,-1],[0,-1],[17,-47],[0,-1],[1,-10],[3,-17],[0,-6],[0,-22],[0,-28],[0,-24],[-4,-17],[-6,-28],[-18,-36],[-5,-12],[-5,-6],[-19,-26],[-12,-17],[-21,-26],[-11,-15],[-16,-20],[-13,-39],[3,-20],[22,-71],[3,-10],[9,-13],[11,-17],[38,-38],[42,-37],[29,-25],[3,-3],[9,-28],[6,-26],[-3,-57],[0,-22],[-1,-4],[-5,-49],[-13,-131],[-8,-74],[3,-27],[-8,-72],[-24,-227],[-46,-47],[-157,-145],[-1,-1],[-41,-38],[-111,-52],[-46,-20],[-32,-34],[-11,-11],[-14,-20],[-27,-41],[-14,-23],[-16,-27],[-32,-30],[-24,-18],[-11,-9],[-18,-29],[-9,-25],[0,-62],[-8,-75],[6,-41],[19,-41],[14,-33],[3,-23],[12,-79],[1,-5],[-115,-2],[-5,-74],[-246,-4],[-1,-77],[-167,1],[-1,-78],[-308,-5],[-13,3],[-4,-34],[-2,-6],[-7,-18],[1,-7],[0,-1],[-1,0],[-25,-1],[-17,3],[-1,0],[-21,3],[-8,1],[-14,2],[-31,5],[-56,14],[-47,7],[-57,3],[-50,9],[-74,9],[-34,2],[-36,1],[-28,3],[-15,2],[-49,11],[-13,2],[-71,17],[-11,1],[-29,1],[-14,2],[-10,2],[-32,28],[-28,18],[-37,29],[-23,7],[-21,-19],[-26,-35],[-10,-20],[-10,-22],[-16,-22],[-21,-19],[-8,-7],[-17,-25],[-14,-38],[-17,-52],[-15,-25],[-31,-3],[-55,-4],[-28,-2],[-349,-27],[-660,-47],[-729,-53],[-447,-32],[-440,-35],[-489,-36],[-640,-47],[-556,-42],[-681,-53],[-669,-51],[-541,-41],[-20,-1],[-167,-13],[-300,-23],[-559,-46],[-190,-15],[-2,0],[-3,0],[-27,-2],[-66,-5],[-730,-58],[-536,-43],[-677,-57],[-194,-15],[-450,-37],[-443,-36],[-604,-49],[-516,-46],[-777,-64],[-771,-64],[-144,-13]]],"transform":{"scale":[0.0001027807783777837,0.00009475329668296614],"translate":[-124.40917464699993,32.534270766000134]}} diff --git a/src/js/config/mapconfig/mapfiles/county/co-counties.json b/src/js/config/mapconfig/mapfiles/county/co-counties.json new file mode 100644 index 00000000..d5ea57e4 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/co-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-109.06024520999995,36.99242006100013,-102.04157390499995,41.002913546000116],"geometries":[{"type":"MultiPolygon","properties":{"name":"CO"},"id":"08123","arcs":[[[0]],[[1,2,3,4,5,6,7]]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08107","arcs":[[8,9,10,11,12,13,14]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08057","arcs":[[15,-15,16,17]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08081","arcs":[[-13,18,19]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08075","arcs":[[20,21,22,-8,23,24,25]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08115","arcs":[[26,-25,27]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08069","arcs":[[28,29,-18,30,-6]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08095","arcs":[[31,32,-26,-27]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08087","arcs":[[-23,33,34,-2]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08049","arcs":[[35,36,37,38,39,-9,-16,-30]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08125","arcs":[[40,41,42,-21,-33]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08121","arcs":[[-43,43,44,45,46,-34,-22]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08013","arcs":[[-5,47,48,49,-36,-29]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08103","arcs":[[50,51,-19,-12]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08045","arcs":[[-11,52,53,54,55,-51]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08014","arcs":[[56,57,-48,-4],[-1]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08001","arcs":[[-47,58,59,60,-57,-3,-35]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08047","arcs":[[61,62,-37,-50]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08037","arcs":[[63,64,65,-53,-10,-40]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08117","arcs":[[66,67,68,-64,-39]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08059","arcs":[[-61,69,70,71,72,73,74,-62,-49,-58]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08031","arcs":[[75,-70,-60]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08019","arcs":[[-75,76,-67,-38,-63]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08005","arcs":[[-46,77,78,79,-71,-76,-59]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08063","arcs":[[80,81,82,-44,-42]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08035","arcs":[[83,84,85,-72,-80]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08039","arcs":[[86,87,-84,-79]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08073","arcs":[[-83,88,89,90,91,-87,-78,-45]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08093","arcs":[[-74,92,93,94,95,-68,-77]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08065","arcs":[[-69,-96,96,97,-65]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08077","arcs":[[98,99,100,101,102,-55]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08097","arcs":[[-98,103,104,-99,-54,-66]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08051","arcs":[[-105,105,106,107,108,109,110,-100]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08029","arcs":[[-111,111,-101]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08119","arcs":[[112,113,-93,-73,-86]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08041","arcs":[[-88,-92,114,115,-113,-85]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08015","arcs":[[-95,116,117,-106,-104,-97]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08017","arcs":[[118,119,-89,-82]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08043","arcs":[[-116,120,121,122,-117,-94,-114]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08085","arcs":[[-110,123,124,125,-102,-112]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08061","arcs":[[126,127,128,129,130,-90,-120]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08101","arcs":[[131,132,133,134,135,-121,-115]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08025","arcs":[[-131,136,-132,-91]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08109","arcs":[[-123,137,138,139,140,141,142,-107,-118]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08091","arcs":[[-109,143,144,145,-124]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08099","arcs":[[146,147,148,-128]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08027","arcs":[[-136,149,-138,-122]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08011","arcs":[[-149,150,151,152,-129]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08089","arcs":[[-153,153,-133,-137,-130]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08113","arcs":[[-146,154,155,156,-125]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08053","arcs":[[-143,157,158,159,160,-144,-108]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08055","arcs":[[-135,161,162,163,-139,-150]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08111","arcs":[[-161,164,165,-155,-145]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08079","arcs":[[166,167,-158,-142]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08033","arcs":[[-166,168,169,-156]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08105","arcs":[[-141,170,171,172,-167]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08071","arcs":[[-152,173,174,175,-162,-134,-154]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08003","arcs":[[-164,176,177,-171,-140]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08023","arcs":[[-176,178,179,-177,-163]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08009","arcs":[[180,-174,-151,-148]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08083","arcs":[[181,182,-169]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08067","arcs":[[-160,183,184,-182,-165]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08007","arcs":[[-168,-173,185,186,-184,-159]]},{"type":"Polygon","properties":{"name":"CO"},"id":"08021","arcs":[[-172,-178,-180,187,-186]]}]},"states":{"type":"GeometryCollection","bbox":[-109.06024520999995,36.99242006100013,-102.04157390499995,41.002913546000116],"geometries":[{"type":"Polygon","properties":{"name":"Colorado"},"id":"08","arcs":[[30,6,23,27,31,40,80,118,126,146,180,174,178,187,186,184,182,169,156,125,102,55,51,19,13,16]]}]}},"arcs":[[[58168,75816],[0,-4],[67,0],[0,-3],[0,-77],[-77,0],[-19,0],[0,77],[1,0],[2,2],[2,2],[13,8],[6,2],[2,0],[3,-7]],[[78054,88042],[-272,-6],[-2,0],[-53,-2],[-30,-2],[-51,-3],[-19,-1],[-35,-1],[-18,0],[-50,0],[-15,-2],[-30,1],[-47,1],[-194,-4],[-219,-7],[-43,0],[-21,-2],[-20,-1],[-25,0],[-19,-1],[-20,1],[-24,-2],[-20,0],[-31,-1],[-27,1],[-16,1],[-17,-3],[-30,0],[-51,0],[-21,0],[-80,0],[-31,0],[-38,0],[-47,-1],[-4,0],[-4,-3],[-3,0],[-12,2],[-15,0],[-36,2],[-24,0],[-90,3],[-16,1],[-43,1],[-33,0],[-75,1],[-20,1],[-39,1],[-373,23],[-34,-1],[-497,11],[-42,0],[-180,4],[-3,0],[-133,3],[-135,1],[-31,0],[-111,0],[-131,-1],[-270,-3],[-270,-2],[-47,0],[-172,0],[-52,0],[-139,-1],[-34,0],[-103,-1],[-85,1],[-41,0],[-47,0],[-18,0],[-33,1],[-66,0],[-38,1],[-56,-1],[-28,0],[-31,0],[-28,1],[-106,4],[-186,2],[-52,0],[-152,2],[-1,0],[-210,4],[-28,2],[-77,0],[-69,-1],[-280,0],[-23,1],[-98,-1],[-117,-1],[-33,0],[-274,0],[-114,0],[-100,0],[-58,0],[-203,1],[-70,0],[-84,0],[-45,0],[-54,0],[-60,0],[-9,0],[-25,0],[-84,0],[-78,0],[-116,0],[-1,-52],[1,-115],[1,-63],[1,-126],[2,-165],[1,-84],[0,-88],[1,-26],[0,-30],[0,-47],[1,-27],[1,-108],[0,-31],[1,-114],[1,-129],[2,-131],[1,-100],[0,-61],[3,-231],[1,-67],[1,-43],[1,-114],[0,-52],[2,-152],[-3,-218],[-1,-145],[-1,-72],[-3,-279],[-3,-171],[0,-42],[-4,-519],[2,-147],[-1,-103],[-1,-81],[0,-41],[-2,-349],[-9,-18],[-23,0],[-10,-69],[1,-151],[0,-160],[1,-37],[0,-115],[1,-54],[0,-201],[0,-1],[1,-138],[0,-170],[0,-10],[0,-73],[0,-29],[1,-45],[0,-48],[0,-151],[0,-6],[0,-29],[0,-92],[0,-57],[0,-1],[1,-100],[0,-14],[1,-565],[0,-83],[-1,-101],[-1,-68],[-2,-67],[2,-122],[-2,-172],[0,-13],[1,-55],[0,-114],[1,-690],[0,-2],[4,-386],[0,-6],[0,-30],[-3,-71],[2,-83],[0,-173],[0,-33],[-2,-236],[1,-128],[-6,-24],[5,-129],[-1,-515],[1,-29],[-1,-178],[0,-194],[-1,-521],[0,-38],[0,-321],[0,-6],[0,-532],[-1,-194],[0,-354],[0,-249],[0,-118],[-1,-247],[-1,-114]],[[69953,75013],[-19,0],[-250,-2],[-268,1],[-31,0],[-84,0],[-61,0],[-95,1],[-17,0],[-156,0],[-83,0],[-221,1],[-3,0],[-81,0],[-499,-1],[-4,0],[-158,-1],[-10,0],[-112,-1],[-261,1],[-20,0],[-105,2],[-97,1],[-16,0],[-30,0],[-22,0],[-192,-4],[-58,0],[-72,-1],[-101,0],[-81,-1],[-19,-1],[-228,4],[-9,0],[-27,0],[-273,-4],[-1,0],[-14,0],[-37,0],[-42,0],[-8,0],[-7,-1],[-17,0],[-15,1],[-56,1],[-43,1],[-24,-1],[-43,0],[-57,1],[-64,-1],[-32,0],[-76,-1],[-63,0],[-113,0],[-3,0],[-91,0],[-27,0],[-47,-1],[-41,1],[-41,-1],[-39,0],[-71,0],[-64,0],[-89,0],[-118,4],[-33,0],[-105,1],[-83,0],[-49,0],[-29,-1],[-52,0],[-103,1],[-81,2],[-208,-3],[-61,0],[-102,-1],[-1,0],[-45,-1],[-45,0],[-8,0],[-10,0],[-76,-1],[-51,-1],[-5,0],[-213,-2],[-9,-2],[-7,1],[-1,0],[-54,0],[-126,2],[-53,0],[-37,0],[-65,-1],[-37,0],[-60,1],[-55,0],[-34,0],[-92,0],[-36,0],[-114,-1],[-42,0],[-50,0],[-116,0],[-60,0],[-47,0],[-26,0],[-40,0],[-21,0],[-28,0],[-28,0],[-27,0],[-58,0],[-20,0],[-104,-1],[-22,1],[-25,-1],[-22,0],[-7,0],[-9,0],[-15,0],[-21,1],[-26,0],[-1,0],[-17,0],[-83,0],[-28,0],[-30,0],[-46,-1],[-36,0],[-25,0],[-93,0],[-18,0],[-47,0],[-91,0],[-23,0],[-22,0],[-31,0],[-57,-1],[-45,0],[-38,0],[-53,0],[-21,0],[-46,0],[-25,0],[-41,-1],[-31,0],[-16,0],[-17,0],[-16,0],[-15,0],[-19,0],[-32,0],[-22,0],[-17,1],[-21,0],[-21,0],[-16,0],[-22,0],[-35,0],[-37,-1],[-33,0],[-16,0],[-17,0],[-38,0],[-27,0],[-19,0],[-13,0],[-2,0],[-16,0],[-19,0],[-20,0],[-19,0],[-7,0],[-15,0],[-19,0],[-7,0],[-39,0],[-1,0],[-20,0],[-126,0],[-23,0],[-59,0],[-47,0],[-34,-1],[-132,0],[-129,0],[-99,0],[-107,0],[-39,0],[-16,0],[-79,0],[-70,0],[-43,0],[-17,0],[-27,-1],[-19,0],[-21,0],[-16,0],[-128,0],[-19,0],[-83,0],[-14,0],[-50,0],[-52,0],[-2,0],[-18,0],[-88,0],[-48,0],[-1,0],[-19,0],[-52,0],[-51,0],[-20,0],[-29,0],[-30,0],[-21,0],[-17,0],[-17,0],[-31,0]],[[58399,75000],[-1,44],[0,95],[1,39],[-1,70],[1,45],[0,27],[1,26],[-1,26],[0,71],[0,49],[0,31],[0,40],[0,44],[0,31],[0,88],[0,59],[0,34],[0,38],[3,152],[0,14],[0,72],[-15,-1],[-45,-1],[-28,-1],[-33,-1],[-15,0],[-47,-1],[-48,-2],[-28,0],[-6,-29],[-4,-30],[0,-51],[0,-51],[0,-59],[0,-143],[-8,0],[-78,0],[0,-85],[-165,-1],[2,-53],[2,-77],[24,0],[2,-2],[0,-3],[0,-4],[-4,-13],[-9,-25],[-5,-9],[-5,-6],[-2,-2],[-6,-10],[-1,-9],[0,-6],[-8,-14],[-10,-12],[0,-31],[120,0],[36,0],[0,-172],[-23,-8],[-107,0],[-26,-1],[-141,-5],[1,-178],[-41,0],[-24,0],[-22,0],[-39,1],[-25,0],[-24,-1],[-23,0],[-24,-1],[-46,0],[-24,1],[-47,0],[-23,0],[-39,0],[-22,0],[-32,0],[-15,0],[-31,0],[-23,0],[-20,0],[-82,-1]],[[57096,74998],[-22,0],[-15,2],[0,39],[0,77],[0,28],[0,61],[-1,34],[0,30],[1,80],[0,84],[1,96],[0,193],[0,25],[0,30],[-1,26],[0,94],[0,30],[-1,44],[0,107],[0,40],[0,29],[0,8],[0,21],[0,39],[0,47],[0,27],[0,25],[0,28],[0,31],[0,25],[0,27],[0,40],[0,78],[0,2],[0,44],[0,44],[1,57],[0,30],[0,41],[0,115],[0,41],[0,49],[0,32],[0,176],[0,2],[0,65],[0,38],[0,11],[0,26],[0,60],[0,26],[0,57],[0,44],[-1,32],[1,27],[0,101],[0,36],[0,39],[0,43],[0,30],[0,46],[0,28],[0,43],[0,74],[1,52],[0,30],[0,26],[0,52],[0,28],[0,70],[0,41],[0,83],[0,55],[-1,66],[1,38],[0,60],[0,88],[0,32],[0,31],[0,29],[0,1],[0,42],[0,40],[0,31],[1,72],[-1,17],[0,10],[1,31],[0,58],[0,33],[0,30],[0,18],[0,14],[0,36],[0,31],[0,33],[0,37],[1,28],[-1,49],[1,33],[0,80],[0,33],[0,78],[0,66],[0,65],[0,33],[0,30],[1,68],[0,78],[0,26],[0,31],[0,25],[0,30],[0,1],[0,31],[0,80],[0,25],[-1,28],[1,50],[0,27],[0,30],[0,90],[0,48],[0,27],[-1,27],[0,30],[1,27],[0,47],[0,71],[1,53],[0,34],[1,83],[1,37],[1,53],[-2,118],[-1,69],[0,45],[0,28],[0,41],[0,37],[0,27],[0,31],[0,42],[0,33],[0,80]],[[57064,81520],[0,59],[0,83],[0,42],[-1,152],[1,28],[-1,30],[0,28],[0,43],[0,81],[0,52],[0,42],[0,33],[0,52],[0,90],[0,57],[0,7],[0,26],[0,25],[0,98],[0,41],[0,16],[0,36],[0,25],[1,39],[-1,38],[-1,44],[0,39],[0,40],[-2,42],[0,40],[2,25],[0,61],[0,37],[0,60],[1,38],[0,103],[-1,48],[1,29],[-6,83],[-3,36],[-1,34],[-2,32],[-4,65],[-2,36],[-4,58],[0,8],[35,0],[20,0],[41,0],[21,0],[19,0],[20,0],[20,-1],[20,0],[30,0],[26,0],[19,0],[59,0],[34,0],[20,1],[21,0],[21,-1],[40,0],[37,0],[39,0],[65,0],[66,0],[28,0],[72,-1],[27,0],[61,0],[16,0],[71,-1],[24,0],[63,1],[18,-1],[15,0],[2,0],[18,0],[63,0],[29,0],[27,0],[23,0],[33,-1],[32,1],[19,-1],[25,0],[28,0],[28,0],[15,0],[38,0],[37,0],[99,-1],[-1,3],[1,17],[0,9],[0,50],[1,102],[0,45],[1,41],[0,38],[0,38],[1,111],[1,86],[1,54],[0,45],[1,51],[0,33],[1,78],[0,22],[0,8],[1,68],[0,36],[0,31],[1,55],[0,49],[1,20],[0,23],[0,76],[1,41],[0,44],[1,18],[0,23],[1,60],[0,4],[0,47],[0,19],[1,34],[0,42],[1,67],[1,46],[0,65],[1,73],[0,32],[0,32],[0,65],[0,50],[0,34],[0,56],[1,87],[0,37],[0,39],[0,142],[0,63],[0,117],[0,31],[1,134],[0,52],[0,44],[1,30],[0,46],[0,85],[0,36],[0,31],[0,40],[0,34],[0,3],[0,58],[0,45],[0,52],[0,1],[0,84],[0,75],[1,72],[0,41],[-1,90],[0,52],[0,69],[0,31],[0,60],[0,53],[0,18],[-1,47],[0,28],[0,37],[0,57],[0,81],[0,75],[0,32],[-1,63],[0,87],[0,43],[0,69],[0,42],[0,41],[1,67],[0,30],[0,83],[0,45],[0,54],[0,32],[0,71],[0,39],[0,32],[1,32],[0,59],[0,42],[0,55],[0,43],[0,38],[0,35],[0,66],[0,41],[0,61],[0,37],[0,32],[0,39],[0,49],[0,26],[0,29],[0,43],[0,6],[0,88],[0,89],[0,32],[0,60],[0,32],[0,28],[0,29],[0,30],[0,29],[0,55],[1,58],[0,61],[0,34],[0,96],[0,36],[0,52],[0,45],[1,40],[0,78],[0,113],[0,33],[0,37],[0,74],[0,33],[0,74],[1,27],[1,56],[0,32],[1,56],[1,59],[0,57],[1,46],[1,56],[1,61],[0,105],[0,34],[0,40],[1,94],[0,25],[0,38],[0,42],[0,25],[1,43],[0,55],[0,36],[0,47],[1,67],[0,46],[0,31],[1,40],[0,33],[0,47],[1,65],[0,29],[0,30],[1,43],[-1,28],[0,32],[-5,212],[0,176],[1,207],[0,164],[0,198],[1,124],[0,137],[0,56],[-1,80],[-1,124],[0,77],[0,109],[0,171],[0,74],[0,113],[0,76],[0,45],[0,42],[0,111],[0,31],[0,131],[0,83],[0,171],[0,193],[-1,463],[-1,330],[0,290],[0,56],[0,34],[2,190],[0,57],[1,146],[2,63],[0,49],[1,29],[0,41],[2,65],[0,65],[-1,168],[0,57],[0,68],[0,23],[0,68],[0,1],[1,166],[0,33],[0,67],[-1,269],[0,349],[0,35],[-1,117],[0,181],[0,34],[0,46],[-1,212],[0,133],[0,71],[0,148],[-1,113],[0,199],[0,42],[0,28],[0,133]],[[58656,99882],[71,0],[395,2],[52,1],[121,0],[426,3],[1368,10],[52,0],[4513,31],[1384,9],[575,4],[3,0],[3720,19],[57,0],[2320,3],[1273,2],[665,0],[314,1],[580,1],[593,0],[456,1],[564,1]],[[78158,99970],[9,-44],[4,-123],[3,-59],[-1,-49],[2,-218],[0,-42],[0,-25],[-5,-293],[-1,-37],[-2,-69],[0,-64],[1,-197],[0,-75],[1,-43],[1,-178],[1,-139],[1,-254],[-3,-54],[0,-69],[4,-244],[3,-141],[-3,-153],[0,-26],[-4,-167],[0,-57],[-2,-74],[0,-49],[-2,-56],[0,-42],[-2,-79],[1,-41],[4,-211],[0,-100],[0,-65],[0,-12],[1,-80],[1,-508],[0,-4],[0,-43],[0,-89],[2,-663],[2,-728],[1,-228],[0,-17],[0,-116],[-4,-253],[-4,-93],[1,-380],[-2,-315],[0,-4],[0,-27],[0,-21],[0,-34],[0,-4],[-2,-320],[-15,0],[-72,1],[-1,-155],[-1,-411],[-4,-258],[-2,-46],[2,-29],[-3,-287],[-3,-288],[0,-64],[-6,-365],[0,-3],[0,-47],[1,-192],[-3,-54],[2,-77],[1,-34],[-3,-174],[1,-35],[-1,-118],[0,-304],[-1,-63],[3,-167],[0,-38],[-1,-153],[-3,-189],[-1,-179],[-1,-364],[1,-359]],[[34310,86077],[-4,-487],[0,-43],[0,-78],[-1,-168],[-2,-326],[-2,-291],[0,-1],[0,-30],[-2,-311],[-1,-264],[2,-570],[29,2],[264,-2],[-2,-308],[2,-58],[0,-54],[0,-38],[-3,-256],[0,-44],[2,-35],[0,-26],[0,-32],[0,-26],[-1,-121],[0,-162],[-1,-128],[0,-158],[0,-425],[-2,-335],[0,-77],[-2,-500],[-3,-649],[-2,-621],[-55,0],[-1,-525],[-1,-428],[0,-394],[2,-35],[0,-668],[0,-444],[-1,-441],[0,-8],[0,-88],[0,-299],[0,-233],[0,-312],[0,-536],[150,-5],[6,-47],[-7,-1197],[0,-137],[0,-92],[0,-41],[0,-48],[0,-308],[0,-3],[0,-50]],[[34674,73116],[0,-152],[-170,14],[-210,18],[-198,3],[-46,1],[-50,1],[-47,2],[-58,0],[-43,1],[-270,5],[-39,1],[-9,0],[-90,2],[-32,0],[-74,0],[-67,0],[-2,0],[-104,-4],[-46,-2],[-183,-6],[-29,-2],[-226,-5],[-110,2],[-162,-3],[-90,3],[-7,2],[-56,-3],[-26,-1],[-32,-1],[-210,-4],[-129,-3],[-130,-3],[-53,-5],[-48,-1],[-246,0],[-256,-8],[-71,0],[-76,0],[-103,0],[-76,0],[-38,0],[-118,1],[-80,1],[-301,-4],[-288,2],[-123,-1],[-267,2],[-140,-2],[-100,6],[-380,-2],[-64,-1]],[[28901,72970],[-6,518],[-1,105],[-2,216],[-4,278],[13,0],[-3,456],[0,58],[-1,390],[0,1],[0,73],[-41,2],[-35,2],[0,75],[1,108],[0,229],[1,802],[0,46],[-1,45],[-1,900]],[[28821,77274],[0,79],[0,10],[0,397],[-4,348],[0,162],[0,123],[0,427],[0,301],[-10,1],[1,88],[1,101],[0,63],[1,266],[0,2],[2,237],[0,105],[0,66],[2,111],[1,62],[-2,373],[-29,12],[-115,-1],[-114,-1],[-30,3],[-22,1],[-1,0],[-25,0],[-214,1],[-162,10],[-116,8],[0,-24],[-4,0],[-49,1],[-23,0],[-82,0],[-22,0],[-21,0],[-82,0],[-116,0],[-22,1],[-111,-3],[-235,-2],[-239,-3],[-85,-1],[-1064,-14],[-47,-2],[-187,-1],[-33,-1],[-25,1],[-12,0],[-55,-1],[-335,-3],[-244,-2],[-300,-6],[-251,-5],[-7,0],[-186,-3],[-56,0],[-90,1],[-57,0],[-107,-1],[-95,1],[-91,1],[-77,1],[-132,4],[-350,-6]],[[23093,80562],[0,93],[0,75],[0,148],[-1,172],[0,109],[-9,66],[-2,105],[-2,51],[0,38],[0,2],[-1,29],[-4,148],[-3,152],[-4,177],[-6,218],[-9,406],[-3,111],[0,291],[-1,30],[0,88],[0,268],[150,3],[2,134],[1,79],[2,135],[1,67],[1,95],[7,490],[1,210],[0,37],[14,850],[6,337],[0,2],[4,204],[3,94],[1,115],[4,227],[3,287],[2,162],[0,99],[-2,118],[0,92],[0,282],[-2,445],[-1,189],[0,1],[0,40],[0,30],[-1,140],[0,31],[0,38],[0,7],[0,43],[0,59],[0,30],[206,2],[48,0],[99,1],[47,0],[42,0],[39,1],[107,0],[2,0],[52,1],[116,0],[61,0],[0,193],[0,311],[0,55],[-1,141],[0,151],[0,36],[0,12],[0,40],[0,40],[0,102],[0,247],[0,41],[-1,72],[41,3],[255,-1],[31,0],[72,1],[45,0],[19,-1],[271,1],[20,0],[63,-1],[0,32],[-1,164],[-1,420],[2,297],[1,125],[5,554],[5,560],[-3,178],[-14,1403],[-1,82],[-3,361],[-2,217],[0,91],[-1,37],[-1,125],[-3,284],[0,29],[-1,59],[-2,263],[-1,125],[-7,691],[-3,367],[-3,386],[-1,106],[0,29],[0,1],[-1,133],[-1,191],[-1,133],[-7,1132],[-1,213],[-4,581],[-3,564],[0,33],[1,74]],[[24826,99999],[150,0],[96,0],[84,0],[803,-1],[283,0],[25,0],[1360,-2],[225,0],[164,0],[51,0],[3295,-3]],[[31362,99993],[-13,-41],[-21,-27],[0,-26],[-1,-27],[-2,-26],[15,-22],[23,-24],[18,-17],[18,-13],[21,-16],[21,-14],[18,-18],[14,-11],[10,-18],[-20,-29],[-21,-18],[-17,-22],[-12,-20],[-2,-33],[-2,-30],[-5,-31],[-10,-25],[-4,-26],[-16,23],[-12,21],[-24,11],[-23,6],[-16,-7],[-20,-6],[-31,-14],[-22,-16],[-21,-12],[-11,-21],[-4,-32],[-4,-32],[-11,-33],[-9,-22],[-6,-37],[0,-34],[7,-34],[3,-25],[-3,-32],[1,-37],[3,-34],[12,-35],[14,-39],[7,-24],[4,-35],[5,-35],[-3,-42],[-3,-35],[7,-23],[16,-17],[15,-7],[20,-9],[17,-7],[13,-27],[6,-34],[6,-35],[4,-33],[5,-30],[0,-29],[-1,-28],[3,-30],[-3,-35],[-2,-36],[14,-29],[13,-20],[12,-22],[14,-12],[25,-11],[14,-9],[-3,-30],[2,-29],[19,-12],[18,-8],[18,-10],[6,-24],[-4,-25],[-4,-31],[5,-35],[17,-16],[10,-20],[12,-17],[-1,-28],[-18,-15],[-17,3],[16,-26],[21,-4],[24,7],[16,7],[24,7],[21,-6],[22,0],[16,-3],[15,-5],[19,-6],[14,-15],[16,3],[15,10],[17,0],[25,-7],[27,5],[23,14],[15,24],[12,28],[8,23],[11,21],[7,28],[1,28],[-4,24],[13,-10],[9,-26],[5,-26],[6,-29],[11,-24],[15,-21],[13,-24],[4,-32],[8,-24],[8,-23],[3,-30],[0,-28],[-8,-27],[17,-16],[16,-10],[19,-9],[23,-9],[18,-9],[16,-16],[6,-24],[7,-44],[4,-26],[9,-35],[12,-35],[7,-28],[14,-23],[12,-18],[5,-35],[0,-34],[5,-28],[-7,-26],[-20,-29],[-20,-8],[15,-20],[13,-17],[14,-18],[15,-17],[18,-8],[15,2],[16,-14],[12,-15],[19,8],[21,6],[16,17],[19,19],[7,27],[7,28],[15,17],[13,-15],[15,-6],[16,16],[21,3],[17,-1],[-14,26],[0,28],[15,0],[18,15],[15,24],[15,26],[14,17],[16,15],[16,7],[15,-8],[17,-7],[9,-21],[15,1],[22,0],[24,-5],[18,-10],[14,-15],[22,-1],[14,-6],[6,-24],[12,-25],[1,-61],[2,-27],[-16,-24],[-17,-14],[12,-18],[23,-3],[17,-2],[18,4],[18,-12],[11,-18],[13,-18],[24,-11],[18,2],[24,-4],[25,-1],[18,0],[15,0],[25,4],[21,-7],[18,-11],[17,-5],[20,-8],[25,-14],[16,-12],[18,-17],[14,-26],[-9,-38],[-18,-37],[-9,-21],[-9,-23],[-16,-36],[-12,-25],[-6,-25],[5,-36],[11,-21],[18,-10],[12,-28],[14,-15],[0,-37],[17,-67],[27,-57],[2,27],[13,26],[24,1],[18,-15],[21,-1],[22,-9],[28,-12],[28,-9],[21,3],[72,39],[30,10],[87,16],[57,25],[25,10],[15,7],[15,8],[17,17],[4,28],[10,22],[1,32],[16,27],[14,11],[13,20],[2,38],[5,25],[24,26],[21,19],[17,16],[21,19],[23,6],[18,-9],[23,-18],[21,-14],[21,-10],[14,-16],[6,-24],[-6,-28],[-3,-35],[-2,-27],[5,-27],[14,-31],[22,-17],[13,-26],[1,-29],[12,-20],[15,-15],[-2,-27],[-1,-26],[6,-28],[9,-39],[11,-20],[11,-22],[21,-8],[14,-15],[28,2],[16,-12],[20,-11],[19,-7],[22,-17],[2,-59],[6,-28],[6,-29],[4,-33],[13,-24],[16,19],[6,-36],[9,-21],[19,-18],[17,-15],[12,-15],[13,-15],[20,-12],[16,-32],[8,-23],[9,-21],[11,-26],[8,-22],[-3,-37],[8,-31],[-19,-17],[-19,-11],[-17,-8],[-13,-14],[-27,-7],[-14,-6],[0,-33],[6,-31],[-5,-23],[-8,-28],[-11,-29],[-9,-23],[-1,-28],[-2,-32],[3,-29],[11,-22],[-8,-34],[-2,-32],[-6,-33],[13,-20],[14,-2],[14,-11],[15,-9],[11,-21],[2,-28],[10,-19],[15,-4],[19,-9],[15,-8],[16,3],[19,1],[18,-5],[15,-13],[15,-9],[29,-22],[25,-5],[14,10],[20,-28],[16,-23],[13,-19],[13,-17],[16,-17],[-6,-37],[2,-33],[16,-30],[19,-10],[15,-25],[-5,-25],[-15,-42],[2,-56],[3,-33],[17,-22],[-14,-29],[10,-24],[-5,-36],[-6,-31],[-1,-39],[2,-43],[-1,-31],[-4,-31],[12,-42],[-5,-30],[-6,-25],[-9,-31],[-26,-21],[-9,-29],[-15,-13],[-18,-20],[-14,-28],[-21,-11],[-20,-21],[-14,-13],[-17,-23],[-12,-32],[-3,-25],[0,-28],[-7,-25],[4,-25],[1,-29],[-13,9],[-16,0],[-44,-27],[-14,-8],[-17,-13],[-17,-10],[-18,-11],[-13,-17],[-12,-23],[-16,-17],[-20,-56],[2,-25],[-11,-30],[-31,-32],[-23,-27],[-14,-21],[-11,-31],[-4,-34],[21,-29],[16,-10],[18,-12],[12,-15],[14,-31],[7,-44],[19,-15],[16,-18],[-10,-24],[-12,-15],[-14,-12],[-13,-33],[-6,-28],[13,-18],[7,-22],[4,-25],[9,-27],[3,-29],[-4,-24],[-15,-10],[-14,-12],[-48,-76],[-23,-7],[-17,-4],[-22,-22],[-29,-28],[-16,-1],[-8,-27],[15,0],[22,-11],[22,-34],[18,-23],[9,-37],[3,-36],[9,-27],[-9,-28],[-25,-33],[-9,-27],[-12,-14],[1,-43],[20,-4],[10,-18],[12,-18],[8,-40],[-9,-48],[-11,-37],[8,-33],[11,-50],[14,-33],[0,-36],[-33,-27],[-18,-18],[0,-26],[5,-28],[4,-35],[12,-46],[3,-27],[8,-40],[24,-44],[3,-25],[5,-32],[-8,-30],[-10,-24],[-12,-21],[-22,-52],[-13,-27],[2,-28],[-21,-29],[-18,-16],[-28,-9],[-19,-8],[-15,-15],[-3,-31],[-7,-25],[-18,-11],[-15,-6],[-28,-8],[-22,1],[-19,-1],[-3,-30],[17,-32],[15,-4],[13,-21],[13,-24],[16,-8],[8,-29],[11,-39],[-19,-13],[-33,-9],[-20,-15],[-11,-24],[-4,-54],[7,-43],[8,-54],[6,-56],[2,-39],[-16,-22],[-26,-20],[-24,-24],[-24,-7],[-1,-38],[9,-74],[38,-117],[13,-22],[19,-7],[17,-4],[29,5],[15,1],[21,-10],[6,-31],[-17,-8],[-21,-21],[-6,-23],[-3,-28],[-16,-28],[-11,-37],[-29,-38],[-17,-26],[4,-48],[8,-25],[9,-24],[5,-26],[-14,-4],[-17,13],[-31,-16],[-20,-20],[-24,-18],[-16,-33],[-15,-24],[-8,-35],[-11,-36],[-19,-4],[-19,4],[-19,-1],[-16,-1],[14,-21],[13,-22],[-9,-25],[-17,-35],[-16,-43],[2,-43],[-9,-30],[-14,-27],[-11,-31],[2,-55],[15,-37],[10,-32],[8,-26],[3,-32],[-9,-30],[10,-30],[15,-19],[7,-43],[19,-27],[19,-21],[13,-28],[0,-29],[8,-30],[23,-10],[14,-12],[8,-45],[6,-26],[2,-42],[-11,-39],[-16,-28],[-10,-18],[-20,-35],[-11,-29],[-13,-39],[3,-28],[9,-20],[0,-30],[-15,-23],[-3,-43],[-18,-28],[-13,-19],[13,-26],[20,-39],[16,-15],[9,-20],[8,-23],[10,-33],[2,-39],[9,-21],[17,-47],[12,-22],[16,-42],[12,-43],[6,-59],[-6,-35],[-9,-29],[0,-49],[21,-35],[19,-24],[18,-26],[15,-28],[21,-19],[12,-27],[9,-33],[4,-33],[8,-27],[1,-35],[12,-15],[36,2],[20,-3],[14,-20],[7,-22],[4,-48],[0,-28],[3,-25],[18,-32],[17,-13],[19,-11],[23,-16],[18,-17],[13,-40],[1,-27],[-6,-23],[-21,-35],[-18,-53],[-9,-27],[-6,-27],[-2,-27],[2,-27],[8,-31],[15,-31],[18,-18],[19,-9],[15,-1],[19,1],[21,-17],[13,-28],[20,-32],[21,-27],[20,-19],[19,-15],[-17,-32],[-11,-18],[10,-33],[15,-17],[14,-11],[15,-5],[16,-12],[7,-24],[3,-35],[-2,-55],[0,-37],[-11,-41],[1,-32],[11,-27],[7,-37],[6,-37],[14,-14],[7,-28],[-7,-43],[-19,-28],[-21,-13],[-17,-4],[-15,-13],[11,-39],[8,-52],[14,-26],[1,-40],[-13,-24],[-27,-23],[-22,-27],[-25,-21],[-18,-35],[-3,-25],[-13,-27],[-15,-9],[-18,-17],[-4,-28],[0,-30],[1,-27],[10,-21],[18,-32],[26,2],[21,14],[34,15],[25,-5],[-1,-34],[-7,-90],[4,-40],[10,-64],[-20,-55],[11,-56],[18,-28],[3,-80],[3,-53],[9,-33],[27,-17],[23,7],[9,-38],[-8,-50],[1,-42]],[[45668,87117],[-16,-36],[-16,-39],[-20,-17],[-29,-14],[-26,-45],[-30,18],[-15,11],[-14,-7],[-37,-3],[-19,-10],[-25,-57],[-26,3],[-21,-10],[-27,-9],[-24,-14],[-26,-22],[-33,5],[-39,23],[-16,-5],[-22,-18],[-33,4],[-20,-31],[3,-30],[-30,-114],[-16,-2],[-19,-5],[-36,-89],[6,-40],[5,-27],[2,-28],[2,-38],[-5,-43],[4,-31],[-22,-72],[11,-52],[0,-33],[29,-61],[-25,-61],[-2,-26],[-7,-52],[-4,-24],[-1,-34],[-12,-43],[-11,-29],[-11,-55],[-7,-50],[-9,-22],[-1,-27],[10,-34],[20,-36],[12,-20],[12,-15],[14,-17],[-1,-45],[12,-35],[-3,-33],[5,-33],[-5,-34],[5,-46],[-19,-63],[-44,-58],[-3,-66],[6,-31],[3,-63],[-17,-76],[-6,-67],[-22,-44],[-16,17],[-26,20],[-20,8],[-24,-7],[-24,16],[-15,12],[-30,2],[-50,-9],[-15,3],[-22,-68],[-23,-56],[-10,-39],[-4,-44],[-17,-20],[-27,-33],[-30,-16],[-17,-4],[-14,-28],[-29,-15],[-19,-21],[-17,-37],[-14,-9],[-22,-17],[-23,-15],[-24,8],[-24,-8],[-39,13],[4,-28],[4,-43],[-11,-84],[1,-40],[22,-22],[30,-34],[21,-21],[22,-14],[16,-22],[15,-14],[1,-30],[-2,-28],[-11,-28],[-2,-32],[5,-27],[-14,-8],[-20,-14],[-14,-15],[-20,-17],[-19,-3],[-20,-7],[-17,-7],[-19,-7],[-18,-6],[-11,-16],[-27,-28],[-12,-11],[-14,-11],[-2,-27],[-6,-26],[0,-31],[-8,-41],[-8,-21],[-13,-25],[-7,-35],[-13,-20],[-20,-47],[1,-30],[-17,-6],[-22,3],[-20,11],[-17,13],[-17,13],[-15,2],[-30,-1],[-18,14],[-15,19],[-12,27],[-6,49],[-11,36],[-17,40],[-15,31],[-15,-3],[-19,-2],[-14,20],[-28,20],[-15,42],[-22,45],[-12,15],[-16,15],[-31,7],[-16,-2],[-30,-8],[-27,4],[-18,5],[-14,-5],[-18,-14],[-17,-25],[-16,-7],[-23,0],[-62,1],[-15,-10],[-26,8],[-43,-14],[-4,51],[-20,38],[-8,62],[13,21],[8,36],[-33,8],[6,39],[-16,18],[-28,-1],[-29,12],[-32,-18],[-24,-9],[-17,-8],[-33,-26],[-19,0],[-10,-26],[-25,-35],[-19,-4],[-35,16],[-34,5],[-53,-61],[-16,-47],[-36,-47],[-16,-11],[-35,-14],[-22,-30],[-29,-30],[-18,-4],[-14,-20],[-25,-22],[-21,1],[-27,-16],[-46,10],[-30,-5],[-16,-16],[-8,-23],[-12,-32],[-59,-42],[-26,-9],[-34,-30],[-34,-29],[-16,-4],[-54,-36],[-20,-5],[-41,-24],[-14,39],[-3,29],[-34,3],[-7,1],[-25,0],[-49,26],[-40,43],[-13,31],[-18,5],[-24,-11],[-36,-72],[-13,-20],[-104,-74],[-35,-22],[-27,-12],[-53,-51],[-10,-19],[-63,-88],[-17,-12],[-16,-24],[-21,-20],[-29,-15],[-25,-3],[-16,-13],[-8,-32],[-5,-27],[-8,-30],[-4,-26],[-5,-28],[-15,-3],[-20,2],[-21,-3],[-16,-1],[-17,3],[-16,7],[-17,15],[-26,8],[-11,17],[-26,-3],[-19,31],[-10,29],[-12,25],[-18,16],[-16,12],[-15,9],[-13,20],[-14,33],[-31,38],[-17,7],[-9,31],[-16,24],[-23,9],[-14,1],[-28,1],[-23,3],[-23,11],[-26,-14],[-22,0],[-16,-20],[-11,-28],[-23,-23],[-9,-25],[-17,-33],[-8,-34],[-3,-32],[2,-29],[-17,-25],[-16,-26],[-23,-21],[-75,-97],[-2,-25],[-25,-9],[-26,-11],[-20,7],[-17,5],[-17,-19],[-22,23],[-13,15],[-15,-5],[-16,-4],[-15,-3],[-16,13],[-18,4],[-15,8],[-19,7],[-17,-1],[-22,-3],[-14,-2],[-17,6],[-20,1],[-15,1],[-23,20],[-15,7],[-24,-7],[-21,-19],[-12,-15],[-5,-27],[-16,-15],[-15,-6],[-18,-7],[-25,-11],[-19,-12],[-18,-11],[-13,-12],[-9,19],[-11,16],[-20,3],[-31,12],[-16,9],[-16,26],[-12,15],[-16,26],[3,27],[-14,33],[-17,21],[-9,29],[-11,21],[-8,38],[-12,34],[-10,19],[-18,11],[-12,18],[-15,24],[-14,11],[-19,10],[-13,18],[0,34],[-7,32],[-14,25],[-1,32],[-13,17],[3,28],[1,30],[-4,34],[-15,8],[-21,16],[-9,28],[-4,34],[-9,35],[-14,22],[-12,31],[-12,22],[-16,-2],[-15,15],[-21,27],[-16,17],[-21,-2],[-37,-27],[-5,-30],[-11,-25],[-19,2],[-13,-16],[-14,-13],[-15,-10],[-21,-11],[-15,-15],[-12,-21],[-17,3],[-12,22],[-19,8],[-16,3],[-17,10],[-14,25],[-13,21],[-6,32],[-17,-4],[-18,-13],[-16,5],[-22,-1],[-15,-22],[-22,-39],[-13,-20],[-13,-19],[-4,-33],[0,-33],[-13,-15],[-13,-14],[-14,-10],[8,-27],[4,-34],[4,-26],[-15,-31],[-1,-26],[-4,-33],[5,-39],[7,-23],[13,-20],[24,-23],[19,-12],[-10,-30],[-12,-17],[-12,-25],[7,-32],[-6,-28],[-14,-6],[-19,-21],[-7,-31],[-22,-2],[-29,-5],[-27,15],[-6,-31],[-6,-23],[-17,1],[-19,14],[-14,6],[-17,3],[-16,5],[-22,20],[-13,22],[-12,15],[-13,19],[-14,19],[-15,8],[-18,16],[-12,14],[-15,36],[-11,17],[-18,13],[-18,4],[-21,10],[-22,6],[-25,10],[-23,3],[-20,-2],[-21,0],[-17,-4],[-17,5],[-13,10],[-12,26],[0,34],[-7,29],[-15,19],[-18,21],[-12,14],[-20,18],[-15,9],[-9,31],[-3,28],[-11,33],[-20,22],[-19,14],[-14,23],[-21,17],[-5,28],[-8,31],[-13,18],[-18,19],[-19,15],[-17,6],[-15,5],[-27,5],[-16,4],[-21,-6],[-20,-7],[-15,-17],[-8,-22],[-25,-8],[-18,3],[-17,20],[-17,15],[-16,-8],[-19,-3],[-18,-20],[-18,-21],[-24,-4],[-20,-7],[-14,-13],[-18,-19],[-13,-21],[-27,2],[-19,-7],[-18,-11],[0,-33],[-11,-31],[-17,-23],[-12,-23],[-4,-28],[-14,-23],[-16,-2],[-15,5],[-21,0],[-20,14],[-14,15],[-18,-3],[-43,-30],[-18,-9],[-22,-7],[-16,-2],[-17,21],[-24,2],[-16,28],[-9,22],[-7,24],[-13,24],[-17,12],[-23,12],[-17,4],[-14,-8],[-16,-8],[-23,-5],[-22,9],[-10,33],[-13,21],[-26,3],[-28,-19],[-20,-17],[-19,-12],[-20,11],[-15,4],[-19,-10],[-14,-13],[-12,-23],[-20,7],[-16,8],[-20,6],[-25,-3],[-7,-28],[-16,-13],[-13,-19],[-18,-21],[-19,2],[-12,19],[-16,6],[-15,26],[-11,18],[-15,16],[-19,11],[-22,19],[-9,32],[-10,24],[9,22],[-6,26],[-12,27],[-25,24],[-23,2],[-17,26],[12,20],[11,22],[-5,34],[-8,42],[2,29],[-18,37],[-9,23],[-34,-3],[-14,2],[-6,38],[-9,36],[-8,39],[-1,33],[0,45],[-23,71],[-18,34],[-50,-4],[-35,9],[12,42],[16,30],[-2,29],[-20,35],[-12,49],[-14,29],[-28,19],[-20,13],[-31,-1],[-18,5],[5,24],[18,39],[3,41],[-7,30],[6,26],[21,43],[14,54],[-12,33],[11,37],[-2,30],[-14,26],[-23,36],[-38,55],[-41,42],[-41,29],[-22,7],[-15,-17],[-13,-21],[-10,-26],[-3,-26],[-18,-12],[-13,-15],[-3,-27],[-3,-29],[-6,-26],[-18,-4],[-26,4],[-15,-15],[-16,-10],[-6,-25],[-15,-29],[-2,-27],[-14,-1],[-21,-35],[-18,-23],[-11,-19],[-16,-32],[-11,-20],[-21,-18],[2,-45],[3,-41],[-11,-36],[-13,-33],[-20,1],[-15,23],[-21,6],[-18,27],[-17,30],[-16,-2],[-13,-22],[-2,-31],[-15,-6],[-20,-24],[-26,-26],[-30,-53],[1,-46],[-6,-27],[9,-18],[-5,-29],[-9,-27],[9,-25],[-9,-44],[-17,-42],[-9,-24],[-3,-25],[-3,-58],[-9,-35],[-10,-22],[-17,-20],[-21,-10],[-16,-21],[-10,18],[-12,20],[-16,25],[-12,25],[0,30],[-10,27],[-25,13],[-18,5],[-23,10],[-17,-11],[-10,-21],[-15,-12],[-15,-3],[-27,7],[-15,-1],[-15,-6],[-18,-8],[-14,11],[-12,33],[-12,26],[3,38],[-13,42],[-3,27],[-39,28],[-46,8],[-22,-14],[-16,1],[-20,4],[-41,13],[-31,1],[-36,-2],[-34,1],[-25,9],[-14,12],[-1,0],[-16,10],[-15,22],[-30,8],[-19,25],[-17,2],[-22,-16],[-25,9],[-19,-22],[-25,5],[-22,43],[-11,-15],[-3,-29],[-18,2],[-4,-32],[1,-26],[-39,-50],[-18,-17],[-28,-2],[-4,40],[-14,16],[-63,35],[-18,-36],[-15,9],[-20,14],[2,45],[-1,40],[-1,19],[-2,43],[1,43],[-16,47],[-14,29],[-16,28],[-35,55],[-9,52],[4,34],[0,57],[-8,62],[-3,24],[-7,46],[-4,25],[-20,70],[-21,39],[-21,34],[-5,25],[-6,31],[-7,45],[-17,36],[-10,21],[-19,8],[-11,32],[1,53],[4,29],[13,45],[9,32],[11,42],[13,22],[18,29],[22,19],[-10,49],[-16,-14],[-25,-5],[-25,3],[-34,20],[-22,14],[-35,-5],[-23,-6],[-35,6],[-36,53],[-32,41],[-38,32],[-37,31],[-25,31],[-8,28],[-13,30],[-4,61]],[[31362,99993],[18,0],[334,-2],[277,-1],[3270,-12],[842,-3],[272,-1],[388,-1],[939,-12],[155,-5],[393,-12],[415,-33],[15,-1],[360,-6],[927,-15],[752,-12],[167,-2]],[[40886,99875],[-17,-52],[-3,-35],[-15,-33],[-17,-29],[-9,-21],[-8,-53],[1,-36],[14,-19],[24,-3],[22,-16],[7,-34],[-2,-26],[-19,-20],[8,-22],[8,-22],[8,-29],[6,-50],[-3,-24],[-2,-40],[5,-31],[4,-25],[16,-26],[22,-22],[5,-24],[1,-26],[-2,-27],[-4,-25],[-4,-24],[-5,-30],[12,-16],[17,-2],[11,-22],[-8,-24],[3,-32],[-16,-20],[-12,-21],[1,-39],[12,-20],[14,-17],[12,-18],[2,-26],[-9,-36],[-10,-22],[-14,-31],[-14,-21],[-7,-28],[-8,-30],[-8,-37],[2,-29],[10,-29],[2,-25],[10,-31],[6,-24],[0,-37],[-7,-40],[14,-23],[9,-27],[10,-44],[18,-13],[13,-14],[22,-22],[23,-12],[15,-27],[16,-16],[12,-15],[16,-27],[8,-23],[10,-24],[16,-36],[15,-11],[22,-9],[20,-12],[7,-34],[-3,-25],[-5,-24],[7,-24],[12,-21],[26,-17],[30,-16],[18,-10],[12,-13],[13,-25],[17,-5],[16,-27],[-9,-27],[9,-41],[13,-18],[19,-11],[21,-10],[15,-11],[11,-28],[13,-25],[15,-5],[19,-9],[14,-17],[11,-22],[18,-8],[27,6],[16,3],[21,-14],[19,-21],[13,-17],[15,-10],[25,-5],[10,-29],[-1,-26],[9,-19],[22,-10],[15,-9],[14,-23],[15,-15],[8,-22],[3,-32],[-5,-28],[1,-29],[13,-36],[7,-23],[10,-22],[0,-33],[12,-23],[4,-24],[4,-29],[-6,-52],[-8,-40],[-5,-30],[-9,-21],[-6,-23],[-18,-22],[-13,-31],[12,-28],[9,-28],[13,-16],[23,-28],[12,-23],[6,-40],[19,-13],[19,-20],[15,-19],[22,0],[23,-9],[15,-34],[16,15],[30,-6],[9,-21],[14,-9],[13,-16],[25,-11],[22,-9],[22,-5],[9,-22],[0,-26],[25,-16],[19,-9],[5,-27],[-8,-33],[-11,-64],[-9,-32],[-13,-16],[-4,-34],[25,-1],[21,-1],[26,8],[14,-13],[17,-18],[25,-34],[-7,-42],[-17,-26],[-6,-56],[-3,-37],[16,-29],[26,-12],[25,-1],[21,-7],[17,-9],[15,-15],[6,-28],[13,-33],[19,-28],[20,-24],[-2,-31],[16,-36],[15,-12],[19,-12],[25,-24],[18,0],[15,-7],[18,-17],[15,-20],[24,-25],[10,-33],[12,-37],[18,-13],[13,-11],[10,-27],[16,-31],[24,-5],[17,2],[27,-12],[25,-4],[15,-28],[17,-23],[15,-7],[12,-16],[13,-14],[16,-12],[12,-34],[-1,-26],[8,-22],[13,-19],[18,3],[14,-18],[7,-30],[5,-32],[17,-15],[10,-38],[-4,-29],[-10,-32],[24,-10],[16,2],[13,-11],[18,-29],[9,-22],[-1,-36],[9,-37],[13,-70],[-10,-23],[0,-40],[5,-29],[4,-44],[15,-32],[20,-9],[9,-26],[21,-40],[10,-33],[17,-11],[30,-10],[23,4],[16,-16],[16,-16],[23,-30],[11,-29],[15,-18],[-11,-25],[-2,-27],[-5,-37],[17,7],[10,-33],[-10,-37],[5,-41],[20,-17],[21,-15],[23,-15],[-5,-26],[-10,-31],[-12,-33],[13,-17],[12,-16],[6,-28],[13,-29],[1,-33],[-7,-31],[10,-23],[12,-25],[17,-32],[8,-21],[-8,-24],[-16,-39],[11,-16],[28,-12],[18,-9],[16,-9],[28,-13],[6,-36],[-9,-27],[12,-23],[3,-32],[6,-36],[10,-24],[11,-23],[5,-29],[13,-15],[12,-24],[-2,-31],[13,-15],[17,-2],[27,-36],[7,-24],[16,-11],[13,-12],[49,-61],[27,-3],[15,-9],[19,-18],[21,-25],[6,-25],[16,-31],[19,-24],[8,-26],[11,-17],[-5,-29],[6,-44],[18,-19],[10,-22],[3,-48],[-20,-42],[-3,-37],[6,-35],[0,-29],[-3,-24],[5,-33],[5,-37],[5,-40],[16,-24],[22,-25],[22,-14],[15,0],[14,-9],[13,-20],[3,-27],[12,-24],[15,-14],[18,-9],[16,-7],[12,-37],[9,-28],[10,-25],[10,-30],[10,-32],[18,-43],[-2,-26],[-6,-26],[-14,-40],[-3,-25],[14,-38],[15,-24],[22,-22],[7,-34],[-12,-28],[-11,-20],[-5,-41],[7,-27],[11,-22],[10,-29],[19,-36],[20,-20],[9,-43],[1,-32],[8,-29],[10,-44],[0,-29],[2,-29],[17,-20],[31,-39],[17,-33],[14,-24],[12,-13],[6,-29],[6,-25],[14,-26],[15,-24],[-5,-29],[-5,-26],[-3,-42],[3,-27],[7,-32],[10,-33],[8,-27],[1,-33],[4,-36],[18,-19],[29,-20],[8,-27],[-8,-32],[15,-11],[22,-18],[3,-36],[1,-38],[1,-28],[0,-31],[0,-49],[-6,-34],[0,-32],[-1,-34],[-4,-43],[-6,-30],[7,-37],[15,-41],[20,-45],[13,-11],[7,-22],[-6,-37],[-11,-37],[-12,-38],[6,-33],[12,-22],[14,-23],[1,-25],[2,-28],[16,-39],[12,-23],[16,-16],[21,-6],[19,2],[24,-22],[15,-19],[17,-18],[25,-2],[26,-7],[18,-8],[5,-26],[8,-23],[2,-37],[-2,-28],[12,-28],[-1,-44],[6,-36],[2,-33],[-7,-34],[1,-28],[5,-33],[17,-31],[2,-42],[9,-39],[6,-47],[12,-52],[1,-28],[-8,-30],[13,-41],[3,-28],[9,-34],[14,-37],[0,-27],[14,-42],[25,-32],[15,-14],[23,-3],[16,0],[15,1],[10,-32],[22,-32],[22,-41],[3,-42],[8,-22],[5,-43],[-5,-38],[-2,-66],[-8,-31],[-3,-27],[-3,-26],[-9,-47],[7,-26],[17,-64],[9,-29],[0,-29],[4,-32],[7,-25],[13,-19],[12,-21],[-2,-31],[5,-46],[5,-26],[13,-43],[6,-42],[-8,-62],[-3,-58],[-7,-29],[-10,-38],[-11,-40],[-13,-31],[-9,-22],[-15,-30],[-11,-34],[6,-34],[9,-26],[10,-26],[11,-28],[9,-30],[15,-15],[17,-13],[24,-5],[72,94],[64,50],[32,12],[2,1],[16,7],[48,6],[55,12],[14,8],[13,20],[27,10],[15,-2],[14,-18],[19,-1],[25,-12],[17,-3],[28,-2],[19,-11],[19,-14],[23,-25],[10,-24],[6,-38],[15,-11],[15,-21],[17,-11],[17,-27],[8,-22],[7,-25],[12,-38],[12,-16],[21,-38],[9,-25],[17,0],[16,-2],[16,-9],[14,-11],[5,-25],[-1,-28],[1,-33],[4,-34],[3,-42],[-2,-25],[-2,-48],[-9,-21],[-11,-19],[-25,-40],[-10,-66],[-3,-32],[2,-39],[2,-28],[13,-36]],[[23093,80562],[1,-73],[-112,-2],[-2,1],[-19,4],[-23,-4],[-26,-1],[-44,-1],[-118,-2],[-392,-6],[-66,-1],[-71,13],[-86,0],[-261,16],[-230,11],[-296,14],[-86,3],[-224,7],[-1,0],[-22,1],[-257,13],[-75,7],[-50,6],[-72,4],[-121,7],[-120,1],[-144,3],[-48,0],[-92,-20],[-31,0],[-77,-1],[-78,2],[-25,-2],[-65,2],[-85,3],[-64,0],[-189,0],[-33,0],[-242,0],[-43,0],[-368,-4],[-3,0],[-74,8],[-42,3],[-135,-4],[-7,-27],[-44,-1],[-21,0],[-177,-2],[-114,5],[-126,0],[-147,1],[-7,0],[-20,-4],[-36,-1],[-118,-1],[-117,0],[-105,-1],[-54,-1],[-26,3],[-115,-2],[-102,-2],[-46,-1],[-222,1],[-86,-1],[-85,-1],[-120,-1],[-42,0],[-11,0],[-288,-3],[-233,-1],[-86,0],[-234,3],[-94,1],[-251,2],[-49,0],[-23,-1],[-46,2],[-54,-5],[-33,0],[-37,2],[-9,1],[-161,-6],[-312,-2],[-31,0],[-26,0],[-315,-3],[-268,-2],[-112,0],[-35,-1],[-79,0],[-210,-2],[-54,0],[-178,0],[-494,0],[-194,1],[-267,0],[-134,1],[-19,0],[-188,0],[-17,0],[-323,1],[-145,1],[-362,1],[-38,0],[-200,0],[-100,1],[-69,0],[-167,0],[-149,1],[-390,1],[-126,0],[-130,1],[-50,0],[-60,0],[-153,1],[-61,0],[-175,1],[-202,1],[-221,1],[-434,2],[-261,1],[-4,0],[-29,1],[-181,0],[-102,0],[-158,0],[-168,0],[-23,-1],[-10,1],[-34,0],[-43,0],[-165,0],[-23,0],[-185,0],[-243,0],[-110,1],[-192,0],[-39,0],[-220,0],[-66,0],[-890,5],[-11,0],[-262,2],[-15,0],[-603,4],[-37,0],[-55,0],[-46,0],[-77,0],[-162,0],[-51,-1],[-67,0],[-72,0],[-38,0],[-172,0],[-237,0],[-138,0],[-72,0],[-290,0],[-21,0],[-3,0],[-243,-1],[-72,0],[-97,0],[-27,0],[-114,-1],[-72,0],[-137,0],[-30,0],[-84,-1],[-15,0],[-413,-1],[-61,0],[-138,-1],[-70,0],[-425,-2],[-3,0],[-23,0],[-22,1],[-87,2],[-126,1],[-150,-1],[-200,0],[-54,3],[-49,-2],[-27,0]],[[134,80544],[0,210],[0,51],[-1,248],[0,172],[0,49],[0,387],[0,142],[0,5],[0,26],[0,142],[0,120],[0,66],[0,55],[0,78],[0,123],[0,57],[0,5],[0,222],[0,155],[0,322],[0,195],[0,113],[1,284],[0,114],[0,203],[0,81],[0,21],[0,13],[1,138],[-1,184],[0,235],[0,36],[0,331],[0,220],[-1,475],[0,49],[0,27],[0,106],[0,68],[1,230],[2,180],[1,268],[2,212],[0,93],[3,282],[-6,121],[4,196],[4,293],[3,507],[-1,14],[-1,15],[10,499],[8,427],[1,66],[5,417],[5,540],[0,143],[-1,99],[0,160],[-2,455],[0,47],[-4,258],[0,46],[-1,72],[0,14],[-5,348],[-2,735],[4,883],[2,481],[-1,334],[1,249],[3,683],[0,151],[-1,149],[-1,41],[0,26],[-1,33],[-2,43],[-1,94],[1,27],[-1,304],[0,100],[0,48],[0,30],[2,65],[-1,54],[-4,156],[1,48],[-1,225],[-1,196],[0,43],[0,1],[-2,442],[0,14],[-3,769],[-1,117],[-1,293],[-1,102],[-1,239],[-1,293],[-1,258],[-1,115],[-1,28],[267,-27],[3126,14],[351,0],[101,0],[1682,-1],[112,1],[1730,7],[1153,6],[6323,28],[116,1],[1094,5],[68,0],[33,0],[144,1],[1391,3],[1296,3],[40,1],[68,0],[33,0],[47,0],[210,1],[745,1],[1506,4],[1166,3],[738,2],[615,2],[18,0],[484,1],[24,0]],[[91119,85925],[-258,-2],[-7,4],[-70,0],[-16,1],[-177,2],[-7,-2],[-139,1],[-135,1],[-272,1],[-139,1],[-133,0],[-287,-8]],[[89479,85924],[-65,1],[-134,1],[-86,0],[-87,-1],[-53,-1],[-32,0],[-35,0],[-46,0],[-111,-1],[-157,-1],[-96,-2],[-82,0],[-92,1],[-34,-1],[-238,1],[-115,0],[-33,0],[-48,0],[-69,-1],[-264,-3],[-144,-2],[-40,-1],[-89,-1],[-38,1],[-31,-1],[-27,0],[-66,-2],[-25,0],[-37,-1],[-42,-1],[-19,-2],[-24,0],[-24,0],[-72,0],[-26,-1],[-17,0],[-55,-1],[-58,0],[-48,0],[-185,-4],[-24,1],[-70,-1],[-206,-2],[-12,0],[-260,-4],[-21,-1],[-120,-2],[-127,-2],[-47,0],[-21,-1],[-46,0],[-51,-1],[-39,-1],[-34,0],[-38,0],[-87,-2],[-7,0],[-24,0],[-145,-2],[-24,1],[-48,-1],[-34,0],[-25,0],[-114,-1],[-4,0],[-62,0],[-35,-1],[-188,-1],[-66,1],[-95,-2],[-47,4],[-17,0],[-45,-1],[-15,3],[-28,2],[-103,-2],[-15,-4],[-65,0],[-67,-1],[-15,0],[-34,0],[-63,-2],[-49,0],[-28,-1],[-80,0],[-127,-2],[-30,0],[-16,0],[-120,-2],[-64,-1],[-16,0],[-39,-1],[-29,0],[-39,-1],[-21,0],[-40,-1],[-22,0],[-53,-1],[-15,0],[-43,-3],[-58,0],[-20,0],[-21,1],[-22,-1],[-220,-1],[-592,-7],[-127,-1],[-16,0],[-274,-3],[-3,0],[-125,-2],[-109,-1],[-13,0],[-237,-3],[-8,0],[-159,-1],[-98,0],[-20,4],[-42,0],[-1,0],[-120,1],[-14,2],[-205,14],[-68,5],[-66,0],[-5,0],[-23,0],[-28,0],[-93,0],[-19,0],[-19,0],[-54,0],[-31,0],[-3,0],[-78,0],[-45,0],[-1,0],[-53,0],[-313,0]],[[79713,85872],[1,108],[1,406],[0,14],[-9,20],[-1,36],[0,62],[-1,77],[2,182],[-6,179],[-1,162],[-1,19],[-1,4],[0,65],[-1,122],[0,30],[-1,48],[-2,81],[1,31],[-2,159],[-1,60],[-6,302],[-45,-1],[-196,0],[-26,0],[0,-1],[-24,0],[-32,0],[-10,0],[-2,0],[-3,1],[-1,0],[-2,0],[-3,-1],[-5,0],[-8,-1],[-8,-1],[-1,0],[-3,1],[-27,0],[-109,4],[-33,0],[-273,1],[-269,1],[-273,2],[-106,-1],[-168,-6],[-4,5]],[[78158,99970],[2736,13],[100,1],[3403,0],[93,0],[526,0],[46,0],[640,0],[1654,0],[966,0],[250,0],[1837,0],[782,0],[90,1]],[[91281,99985],[0,-59],[0,-69],[7,-1112],[0,-1],[2,-299],[4,-490],[0,-16],[2,-52],[2,-214],[1,-117],[0,-2],[0,-134],[0,-26],[1,-27],[0,-20],[0,-79],[1,-91],[0,-85],[-1,-42],[0,-27],[0,-8],[1,-54],[1,-29],[0,-31],[1,-52],[0,-40],[2,-234],[0,-4],[1,-323],[2,-894],[2,-590],[1,-637],[0,-83],[0,-121],[1,-135],[0,-109]],[[91312,93679],[0,-62],[1,-55],[0,-41],[0,-84],[1,-124],[0,-52],[1,-42],[0,-52],[1,-69],[0,-91],[0,-9],[0,-54],[1,-113],[1,-214],[0,-38],[-21,-1],[-37,0],[-36,-1],[-26,0],[-46,-1],[-31,-1],[0,-477],[-1,-181],[-1,-183],[-2,-196],[0,-168],[-1,-224],[-1,-63],[0,-5],[0,-35],[0,-36],[-2,-192],[-1,-172],[-1,-69],[0,-53],[0,-4],[-1,-54],[-1,-179],[-1,-40],[0,-89],[1,-236],[1,-241],[0,-122],[0,-129],[2,-173],[1,-61],[0,-29],[1,-253],[0,-3],[0,-78],[1,-363],[1,-71],[0,-45],[0,-245],[-1,-37],[1,-31],[0,-36],[-1,-228],[1,-43],[-1,-54],[1,-231],[0,-17],[0,-54],[0,-103],[0,-68],[1,-56],[0,-150],[0,-187],[0,-28],[0,-46],[0,-34],[0,-52],[1,-97],[0,-58],[1,-72],[0,-18],[0,-124],[0,-108],[0,-49],[0,-50],[0,-106],[0,-44]],[[99858,93682],[-166,6],[-4,0],[-66,-1],[-3,0],[-22,0],[-21,0],[-55,-1],[-68,-1],[-27,0],[-176,-3],[-35,0],[-50,-1],[-23,0],[-15,0],[-142,-2],[-16,0],[-50,-1],[-87,-1],[-125,-1],[-27,-1],[-59,-1],[-75,0],[-46,-1],[-58,-1],[-20,0],[-36,-1],[-102,-1],[-94,-1],[-23,0],[-161,-2],[-75,-1],[-18,-1],[-17,0],[-23,0],[-97,1],[-29,0],[-108,0],[-23,0],[-208,1],[-70,0],[-18,0],[-84,0],[-132,-1],[-45,0],[-201,0],[-7,0],[-71,0],[-134,1],[-142,3],[-154,0],[-67,0],[-57,1],[-17,0],[-99,1],[-18,0],[-139,1],[-149,1],[-47,0],[-72,0],[-134,1],[-31,0],[-103,1],[-141,0],[-124,0],[-15,1],[-123,-1],[-130,0],[-72,-1],[-62,-1],[-137,-3],[-20,1],[-215,1],[-25,0],[-16,0],[-29,0],[-39,0],[-208,1],[-235,1],[-40,0],[-49,1],[-228,1],[-30,0],[-16,0],[-55,0],[-74,1],[-83,1],[-17,0],[-134,1],[-46,1],[-95,0],[-120,0],[-125,-2],[-31,0],[-2,0],[-194,0],[-78,0],[-35,0],[-15,0],[-33,1],[-192,0],[-60,1],[-215,-1],[-27,0],[-92,-1],[-60,0],[-63,0],[-33,-1],[-29,0],[-243,1]],[[91281,99985],[462,2],[201,1],[367,0],[1009,-1],[1687,0],[164,0],[48,0],[1417,-1],[642,0],[81,0],[257,0],[163,0],[96,0],[981,-1],[987,0],[7,-2984],[5,-1826],[1,-728],[1,-481],[1,-81],[0,-203]],[[57064,81520],[-36,-1],[-21,0],[-55,-1],[-16,0],[-40,-1],[-19,-1],[-52,0],[-15,0],[-17,-1],[-19,0],[-8,0],[-54,-1],[-28,0],[-20,1],[-37,0],[-20,-1],[-9,0],[-50,0],[-56,-1],[-21,-1],[-20,0],[-21,0],[-1,0],[-14,-3],[-29,0],[-40,0],[-24,0],[-17,-2],[-24,0],[-63,2],[-20,0],[-30,1],[-47,1],[-99,3],[-20,0],[-15,-7],[-41,-5],[-60,0],[-68,1],[-77,0],[-47,1],[-51,1],[-4,0],[-43,0],[-20,0],[-16,0],[-26,-1],[-17,0],[-22,-1],[-20,2],[-14,1],[-16,-2],[-84,-1],[-75,1],[-16,-1],[-16,-1],[-17,0],[-34,0],[-47,0],[-78,0],[-16,2],[-16,-2],[-15,0],[-114,2],[-26,0],[-69,0],[-15,1],[-6,1],[-13,1],[-108,3],[-15,1],[-42,1],[-33,2],[-71,4],[-22,1],[-19,3],[-19,0],[-16,1],[-39,1],[-61,2],[-16,1],[-64,2],[-24,2],[-23,1],[-47,0],[-23,2],[-30,0],[-28,0],[-52,2],[-25,1],[-44,0],[-47,2],[-24,0],[-170,5],[-24,-2],[-317,-13],[-31,0],[-92,-2],[-48,-2],[-16,-1],[-18,-2],[-34,0],[-26,-1],[-47,-2],[-16,-2],[-23,0],[-67,0],[-51,0],[-18,1],[-9,1],[-67,0],[-28,0],[-291,-12],[-225,-85],[-30,0],[-133,-2],[-25,0],[-28,2],[-23,0],[-19,0],[-79,3],[-29,0],[-20,2],[-24,0],[-119,5],[-26,2],[-19,0],[-15,0],[-17,3],[-15,-1],[-49,3],[-23,1],[-63,3],[-267,16],[-29,0],[-107,4],[-197,4],[-27,1],[-18,0],[-64,0],[-21,0],[-74,14],[-339,16],[-43,2],[-3,0],[-55,3],[-26,2],[-16,1],[-47,-1],[-4,0],[-22,2],[-45,1],[-17,1],[-38,0],[-34,1],[-39,2],[-72,0],[-41,1],[-36,-1],[-271,-5],[-206,-8],[-37,-2],[-27,-1],[-134,-4],[-120,0],[-114,-3],[-107,-1],[-16,-1],[-17,0],[-93,1],[-159,-1]],[[48540,81487],[-12,21],[-21,10],[-22,29],[-38,24],[-21,10],[-16,-2],[-19,22],[-13,30],[-16,22],[-29,14],[-19,-4],[-16,11],[-24,3],[-15,-6],[-15,-8],[-21,-7],[-16,10],[-22,13],[-3,25],[-10,23],[-12,19],[-16,16],[-11,17],[-4,24],[15,23],[11,31],[-4,30],[-8,24],[-4,31],[15,-4],[16,5],[-6,28],[-6,35],[-7,32],[2,34],[-10,23],[-15,8],[-25,18],[-14,12],[-16,21],[-5,26],[10,36],[12,16],[18,20],[24,13],[-15,12],[-24,5],[-26,15],[-12,19],[-2,25],[-2,28],[-6,27],[1,33],[10,28],[9,25],[8,33],[5,30],[-16,6],[-17,1],[-17,7],[-12,16],[-12,20],[-4,31],[5,25],[11,23],[-9,23],[-16,9],[-19,-1],[-23,0],[-13,17],[-12,18],[-17,5],[-22,-11],[-15,-1],[-16,21],[-9,19],[4,31],[5,28],[10,20],[9,28],[19,23],[13,18],[-3,51],[-20,27],[-15,1],[-20,14],[0,45],[-18,28],[-24,5],[-26,5],[-16,-1],[-47,6],[-19,5],[-19,14],[-15,21],[-16,24],[-17,22],[-13,19],[-18,26],[-11,14],[-17,22],[-14,10],[-18,2],[-23,13],[-18,14],[-14,13],[-15,19],[-10,28],[2,25],[3,27],[-11,20],[-8,24],[-21,12],[-14,9],[-23,26],[-16,33],[-8,23],[-7,25],[2,33],[-20,11],[-27,11],[-17,13],[-18,25],[-14,9],[-28,-21],[-22,-8],[-17,-8],[-13,14],[-27,13],[-17,8],[-12,17],[-4,31],[-11,16],[-21,-6],[-16,3],[-19,17],[-19,21],[-7,21],[-3,36],[-9,25],[-22,10],[-13,12],[-14,23],[-8,26],[-20,3],[-20,9],[-14,15],[-5,29],[-3,36],[-6,37],[-20,4],[-18,2],[-18,2],[-17,19],[-1,36],[-9,22],[-16,24],[-12,29],[-20,34],[-15,14],[-21,23],[-17,29],[-2,33],[6,26],[-48,90],[-32,29],[-3,28],[-11,27],[-4,30],[-18,28],[-13,21],[-7,40],[6,23],[-1,52],[-3,48],[-7,21],[0,63],[7,35],[2,27],[-11,27],[-30,27],[-5,27],[-31,47],[-14,31],[-14,20],[-30,35],[-11,30],[-2,43],[-10,19],[-23,20],[-41,47],[-25,33],[-41,111],[-14,13],[-17,9],[-29,30],[-11,51],[-12,15],[-4,59],[16,12],[12,21],[12,18],[-4,54],[2,35],[-12,47],[-13,38],[4,25],[24,40],[19,26],[9,37],[5,42],[24,23],[14,22],[22,23],[18,29],[11,28],[-5,39],[-15,44],[-6,40],[27,115],[-3,25],[12,34],[3,55],[6,35],[0,34],[-17,57],[-21,35],[-15,24],[-19,20],[-19,21],[28,14],[15,29],[16,21],[-9,36],[-17,13],[-15,7],[-21,11],[-25,2],[-17,-4],[-20,-9],[-67,16],[-20,13],[-16,10],[-21,13],[-47,17],[-39,33],[-35,11],[-24,-3],[-12,17],[-24,48],[-34,15],[-24,16],[-29,-16],[-38,-8],[-19,3],[-5,29],[-109,59]],[[40886,99875],[2535,1],[50,0],[2012,2],[1475,0],[1387,1],[2726,2],[910,1],[677,0],[838,1],[406,0],[104,0],[273,0],[2505,-1],[1872,0]],[[99858,93682],[1,-246],[0,-536],[0,-458],[0,-57],[-1,-2428],[0,-453],[0,-1005],[0,-2536]],[[99858,85963],[-372,-5],[-42,-1],[-134,-1],[-506,0],[-588,-1],[-248,-1],[-439,-1],[-39,6],[-39,-3],[-18,-2],[-19,4],[-378,-7],[-90,-1],[-22,0],[-77,1],[-544,1],[-3,0],[-286,0],[-28,-1],[-235,1],[-99,1],[-249,2],[-63,-1],[-98,0],[-38,1],[-22,-1],[-66,0],[-106,1],[-78,1],[-25,0],[-171,-2],[-75,3],[-140,1],[-158,-3],[-2,0],[-248,-7],[-117,-3],[-126,-2],[-29,0],[-150,-2],[-123,-2],[-80,-2],[-49,-1],[-124,0],[-19,0],[-219,-3],[-54,-1],[-238,-2],[-33,0],[-113,-2],[-128,0],[-30,0],[-272,-1],[-118,-1],[-153,0],[-42,0],[-84,1],[-70,1],[-62,1],[-11,0],[-273,-2],[-35,-1],[-164,0],[-78,-1]],[[79713,85872],[8,-430],[1,-96],[1,-39],[0,-11],[1,-48],[-1,-36],[0,-36],[1,-4],[1,-36],[1,-30],[1,-39],[-1,-119],[-1,-75],[0,-90],[0,-94],[0,-7],[-1,-70],[1,-27],[-1,-154],[-1,-89],[-1,-272],[0,-40],[-1,-179],[0,-25],[1,-47],[2,-62],[-45,-2],[-3,0],[-42,-2],[0,-6],[-2,-186],[-1,-171],[-1,-25],[0,-7],[3,-30],[-1,-95],[0,-161],[-1,-44],[-3,-721],[-5,-887],[-1,-155],[-8,-120],[0,-2],[1,-19],[0,-3],[0,-46],[-4,-93],[0,-93],[0,-43],[1,-50],[0,-6],[1,-21],[1,-75],[-4,-248],[-1,-93],[-2,-153],[-5,-335],[-3,-289],[0,-75],[-1,-314],[3,-246],[-1,-58],[-2,-67],[4,-125],[4,-319],[0,-58],[2,-167],[1,-74],[0,-29],[1,-27],[1,-126],[0,-28],[1,-70],[1,-65],[1,-124],[0,-26],[1,-46],[1,-127],[1,-99],[1,-68],[-2,-350],[0,-39],[0,-100],[0,-20],[0,-6],[0,-29],[-1,-115],[0,-59],[1,-74],[1,-155],[0,-129],[1,-59],[-1,-49],[0,-136],[0,-40],[-1,-82],[1,-89],[0,-1],[0,-26],[0,-112],[1,-177],[0,-27],[0,-63],[0,-68],[1,-118],[0,-45],[-89,-3],[-158,-1],[-64,1],[-29,0],[-163,0],[-38,0],[-91,0],[-41,0],[-56,0],[-85,0],[-64,0],[-31,0],[-249,0],[-17,0],[-34,0],[-57,0],[-44,0],[-47,-5],[-78,5],[-20,1],[-30,2],[-2,0],[-20,1],[-15,-1],[-33,0],[-19,-3],[-33,0],[-15,0],[-50,0],[-32,-1],[-4,0],[-34,0],[-26,-1],[-164,1],[-37,0],[-20,0],[-111,0],[-19,0],[-31,1],[-71,0],[-37,-7],[-128,0],[-209,0],[-46,0],[-15,0],[-67,0],[-229,2],[-268,3],[-110,1]],[[76289,75026],[-36,0],[-122,1],[-56,-2],[-18,0],[-39,-1],[-5,0],[-60,-2],[-62,3],[-30,0],[-69,1],[-30,-1],[-139,0],[-106,0],[-20,0],[-82,0],[-50,0],[-15,0],[-27,0],[-93,0],[-108,0],[-57,-1],[-19,0],[-29,0],[-46,1],[-44,-1],[-89,0],[-29,0],[-23,0],[-64,0],[-14,0],[-112,-1],[-34,0],[-45,0],[-80,0],[-73,0],[-71,0],[-43,0],[-60,-1],[-78,0],[-35,0],[-19,2],[-17,4],[-31,-4],[-4,-1],[-25,-1],[-262,0],[-49,0],[-18,0],[-190,0],[-19,0],[-55,0],[-85,0],[-113,-1],[-216,0],[-63,0],[-53,0],[-115,-1],[-116,0],[-221,0],[-38,0],[-53,0],[-6,0],[-128,1],[-52,0],[-40,-1],[-27,-2],[-2,0],[-29,1],[-17,0],[-62,0],[-52,0],[-161,1],[-22,-1],[-26,0],[-60,2],[-50,-1],[-14,0],[-26,-2],[-113,0],[-106,0],[-24,0],[-28,0],[-65,0],[-15,0],[-47,0],[-20,-1],[-16,0],[-8,0],[-8,0],[-19,0],[-52,1],[-21,-2],[-226,0],[-15,0],[-28,-1],[-33,0],[-27,0],[-26,0],[-47,0],[-103,0],[-34,0],[-16,0],[-6,0],[-12,0],[-53,-1],[-65,0],[-63,0],[-18,0],[-34,0],[-80,0],[-21,-1],[-19,1],[-5,0],[-72,0],[-43,-1]],[[48540,81487],[14,-36],[14,-25],[2,-43],[0,-34],[6,-32],[15,-20],[25,-28],[36,-29],[19,-18],[-16,-10],[-25,-8],[-31,1],[-17,5],[-16,0],[-31,-1],[-46,2],[-23,0],[-16,-8],[-8,-48],[0,-50],[-17,-31],[-11,-26],[-13,-44],[-8,-21],[-10,-24],[-12,-36],[-2,-33],[13,-36],[3,-37],[-12,-34],[-14,-20],[-16,-7],[-1,-34],[-14,-22],[0,-27],[7,-28],[-11,-24],[-8,-39],[7,-23],[19,-17],[31,-36],[21,-21],[-13,-12],[-19,9],[-26,5],[-25,-9],[-12,-17],[-10,-40],[-3,-31],[1,-29],[7,-32],[-4,-35],[-2,-27],[3,-30],[-3,-27],[7,-26],[-15,-37],[-12,-23],[-13,-23],[-11,-23],[-16,-19],[-17,-7],[-17,-18],[9,-44],[9,-24],[-8,-29],[-10,-28],[1,-36],[-2,-51],[4,-36],[-4,-36],[1,-47],[7,-24],[15,-29],[21,-21],[31,-9],[16,2],[14,-27],[0,-30],[-11,-23],[-11,-20],[2,-28],[4,-26],[10,-26],[14,-17],[16,-13],[-6,-25],[-7,-38],[10,-25],[9,-34],[2,-38],[17,-24],[-16,-4],[-17,-18],[-4,-31],[-18,-24],[-10,-34],[5,-28],[8,-42],[15,-8],[21,-19],[4,-32],[-3,-29],[14,-29],[17,-21],[16,-9],[16,-4],[17,-1],[19,-6],[3,-25],[14,-18],[23,-14],[15,-21],[9,-24],[6,-22],[21,-6],[58,-13],[26,-1],[15,8],[3,-30],[17,-25],[21,-14],[15,0],[15,-9],[23,-4],[19,-8],[22,-14],[23,-7],[18,-21],[3,-34],[-3,-34],[-2,-40],[4,-32],[14,-20],[24,-17],[15,-4],[19,-5],[11,-33],[-5,-36],[-5,-37],[1,-27],[-2,-33],[11,-45],[9,-20],[22,-18],[16,-19],[-13,-22],[-9,-21],[-17,-52],[17,-37],[-9,-31],[24,-54],[-16,-5],[-21,-35],[-11,-38],[-1,-34],[-23,-16],[-28,2],[-15,-9],[-7,-25],[-4,-26],[-4,-37],[0,-32],[-14,-35],[8,-56],[-1,-39],[0,-32],[11,-37],[20,-28],[15,-32],[13,-18],[-6,-28],[-12,-18],[-16,2],[-3,-25],[3,-48],[2,-61],[7,-21],[-14,-46],[-10,-23],[6,-25],[-13,-23],[5,-45],[21,-34],[21,0],[-19,-21],[-11,-27],[1,-62],[-4,-34],[-10,-21],[-19,-6],[-14,-19],[-20,-12],[-14,-7],[-9,-35],[1,-28],[29,-88],[-36,21],[-19,-18],[-34,-27],[-22,-21],[-12,-23],[-7,-27],[-8,-31],[-12,-49],[-23,-39],[32,-88],[5,-24],[28,-12],[13,-20],[5,-29],[8,-32],[15,-14],[18,-38],[15,-10],[17,-13],[23,-12],[14,-22],[-11,-38],[-2,-32],[-6,-31],[-5,-33],[5,-42],[-11,-20],[-15,-53],[-8,-42],[-39,-22],[-48,-83],[-32,-55],[-46,-99],[0,-40],[8,-24],[-12,-20],[-34,-14],[-19,-5],[-29,-14],[-19,-19],[-7,-24],[-15,-23],[-17,0],[-25,1],[-35,-4],[-24,5],[-15,9],[-66,-18],[-18,-9],[-27,-28],[-23,-10],[-17,-7],[-15,4],[-16,-1],[-21,10],[-32,14],[-13,13],[-17,11],[-17,-13],[-3,-25],[3,-29],[-2,-34],[5,-29],[-8,-40],[20,-58],[-34,-172],[6,-93],[79,-44],[26,-41],[-33,-65],[-9,-42],[-19,-82],[30,-90],[-13,-83],[-48,-183],[12,-81],[-7,-75],[4,-29],[11,-96],[22,-51],[-26,-71],[-32,-41],[-51,-87],[15,-32],[11,-23],[-8,-73],[-8,-67],[30,-37],[18,-23],[22,-29],[75,-104],[79,-31],[30,-12]],[[48220,73307],[-25,-71],[-16,-47],[-21,-61],[-37,-181],[-3,-18],[-47,-94],[-23,-45],[-1,-139],[-34,-105],[-51,-140],[-11,-12],[-4,-3],[-32,-28],[-15,-30],[-15,-36],[-3,-26],[26,-162],[-31,-112],[9,-122],[26,-148],[9,-93],[4,-41],[6,-54],[9,-23],[12,-26],[15,-33],[1,-37],[10,-32],[5,-25],[14,-33],[15,-29]],[[48012,71301],[-13,-16],[-63,-296],[-24,-23],[-14,-9],[-24,-14],[-17,-12],[-28,-11],[-27,-2],[-75,19],[-16,4],[-57,-27],[-49,-113],[-1,-66],[0,-37],[-30,-30],[-30,-31],[-14,-32],[-4,-29],[5,-41],[4,-48],[-7,-27],[-11,-23],[-89,-75],[-60,-173],[-80,-75],[-78,-51],[-55,-26],[-148,-104],[-20,-16],[-161,18],[-34,18],[-20,11],[-32,17],[-27,36],[-29,38],[-39,12],[-34,10],[-49,-11],[-32,-7],[-81,19],[-26,-90],[-28,-7],[-39,-11],[-33,-54],[-19,-113],[-71,-44],[-65,-16],[-206,-33],[-61,-1],[-86,34],[-93,-2],[-13,36],[-25,68],[-50,55],[-70,23],[-74,0],[-69,0],[-42,61],[-52,-16],[-85,-25],[-44,-63],[2,-76],[1,-73],[-30,-44],[-13,-22],[-11,-24],[-12,-32],[-4,-37],[8,-46],[14,-36],[14,-15],[3,-32],[5,-45],[17,-94],[14,-77],[10,-71],[54,-64],[30,-118],[-39,-107],[-19,-66],[24,-102],[-2,-95],[-6,-170],[-7,-11],[-75,-125],[-60,-38],[-145,-30],[-17,-6],[-24,-26],[-17,-25],[-3,-16],[-26,-153],[-29,-90],[-86,-101],[-48,-54],[-24,-97],[-22,-176]],[[44675,67486],[-29,-7],[-49,-29],[-38,-71],[-53,-53],[-57,-48],[-103,38],[-18,15],[-115,0],[-399,-98],[-84,-33],[-36,-39],[-395,61],[-134,122],[-43,87],[-6,60],[-26,134],[-38,197],[-79,130],[-37,44],[-41,47],[-29,3],[-43,5],[-32,37],[-15,17],[-2,125],[-22,148],[-30,195],[-30,197],[-8,55],[-16,77],[-51,261],[-26,135],[-112,527],[-53,163],[-75,228],[-32,22],[-12,32],[-5,25],[-12,31],[-12,18],[-21,26],[-400,622],[-29,55],[-23,15],[-67,43],[-35,-5],[-67,-9],[-64,-90],[-429,161],[-59,65],[-35,39],[-219,242],[-67,72],[-19,22],[-14,35],[3,29],[-58,176],[-14,33],[2,33],[-4,34],[-21,18],[-20,1],[-30,0],[-21,2],[-17,7],[-20,20],[-31,62],[-114,228],[-61,168],[-223,343],[-174,89],[-526,90],[3,-123],[-369,-5],[-78,-1],[-24,0],[-154,-1],[-72,3],[-151,-1],[-120,-1],[-50,1],[-21,1],[-115,-5],[-78,3],[-89,2],[-117,3],[3,231],[1,35],[-162,4],[-16,0],[-173,1],[-37,1],[-171,2]],[[37411,73120],[-115,-3],[-18,4],[-418,4],[-105,-1],[-70,-1],[-216,-1],[-302,0],[-3,0],[-84,4],[-78,-3],[-284,-3],[-125,-3],[-212,3],[-24,1],[-15,0],[-404,3],[-30,3],[-50,2],[-21,0],[-4,0],[-21,-1],[-27,-1],[-4,0],[-16,-3],[-45,-6],[-32,-4],[-14,2]],[[99858,85963],[2,-2264],[0,-270],[-5,-6692],[0,-125],[0,-73],[-1,-1470],[0,-77],[1,-544],[6,-3969],[4,-1351],[1,-343],[7,-2323],[2,-609],[7,-1482]],[[99882,64371],[-25,0],[-143,-4],[-25,0],[-71,-2],[-55,-1],[-141,-2],[-84,-1],[-168,-5],[-44,-1],[-8,0],[-99,-3],[-159,-2],[-56,1],[-173,-1],[-141,-3],[-142,-1],[-64,0],[-180,-2],[-66,-2],[-49,-1],[-35,-1],[-55,0],[-39,-1],[-22,0],[-145,-5],[-289,-6],[-89,-2],[-16,0],[-67,-2],[-71,-1],[-79,-2],[-24,0],[-16,-1],[-1,0],[-18,3],[-29,-4],[-113,-5],[-78,-3],[-109,-3],[-69,2],[-31,-1],[-150,0],[-51,-2],[-22,0],[-15,-3],[-45,-1],[-16,0],[-14,2],[-15,-1],[-19,1],[-16,-3],[-50,-1],[-55,-1],[-187,-3],[-124,-2],[-69,-1],[-66,-1],[-20,0],[-113,-2],[-40,0],[-55,0],[-71,-1],[-59,-1],[-80,3],[-95,-4],[0,-1],[-47,2],[-338,0],[-20,0],[-178,-2],[-42,2],[-70,-1],[-31,0],[-194,2],[-174,1],[-94,-1],[-81,0],[-47,1],[-166,-1],[-139,-2],[-19,0],[-61,0],[-188,-1],[-67,0],[-197,1],[-35,0],[-51,0],[-15,0],[-153,-1],[-15,-1],[-21,-2],[-46,-6],[-184,-23],[-24,-2],[-15,-1],[-83,-1],[-41,0],[-146,-3],[-1,0],[-297,-6],[-37,1],[-32,0],[-38,-1],[-138,-2],[-149,-2],[-117,-2],[-20,0],[-248,-3],[-19,-1],[-15,0],[-52,-1],[-137,-2],[-35,0],[-36,-1],[-88,-1],[-81,-2],[-107,-1],[-16,0],[-191,-3],[-69,-1],[-33,0],[-151,0],[-20,0],[-16,0],[-20,0],[-34,0],[-29,-1],[-41,0],[-58,0],[-60,-1],[-25,0],[-58,0],[-154,-2],[-118,-1],[-45,0],[-43,0],[-36,-1],[-46,1],[-27,0],[-76,2]],[[89152,64217],[3,584],[0,138],[0,73],[0,27],[1,30],[0,49],[-1,33],[1,87],[0,33],[0,40],[0,96],[1,42],[0,64],[0,48],[1,39],[1,42],[-1,29],[1,83],[1,224],[0,45],[0,40],[1,85],[1,235],[1,46],[0,68],[0,34],[2,190],[0,25],[0,61],[1,65],[-2,58],[2,106],[1,14],[1,18],[5,98],[-1,312],[0,378],[0,63],[-1,27],[1,47],[-5,28],[8,554],[2,183],[3,915],[2,372],[1,49],[4,599],[0,81],[-4,351],[-5,419],[-1,77],[0,52],[-3,243],[-3,252],[0,38],[-2,145],[-2,170],[-1,48],[0,50],[-1,98],[-2,219],[-2,178],[-1,35],[-1,81],[0,78],[-1,43],[-3,311],[0,26],[-1,40],[-2,178],[-1,62],[0,32],[0,125],[-2,183],[-2,76],[0,78],[-2,198],[-2,256],[-1,76],[0,64],[144,-2],[2,3],[0,2],[0,252],[-1,140],[-1,246],[0,42],[0,35],[0,122],[0,60],[0,34],[0,112],[0,37],[0,161],[-1,86],[-1,39],[-1,72],[0,75],[-2,233],[-1,53],[-1,211],[-1,151],[-1,27],[0,292],[-1,204],[0,198],[0,113],[0,55],[1,151],[0,28],[0,4],[0,25],[-1,267],[0,78],[0,201],[0,84],[0,77],[0,151],[1,47],[0,163],[1,60],[5,320],[0,28],[3,231],[0,85],[0,38],[2,324],[1,255],[1,107],[0,126],[-1,27],[0,73],[1,34],[0,102],[-1,137],[0,6],[0,87],[0,25],[0,78],[0,28],[0,333],[0,189],[0,198],[-1,190],[-1,193],[-1,339],[0,83],[-1,95],[1,30],[-1,157],[0,106],[-1,283],[12,-1],[174,-3],[4,0],[1,3],[1,52],[0,196],[0,37],[0,65],[0,14],[0,16],[1,342],[0,97],[-1,136],[1,46],[-1,54],[0,29],[1,77],[0,288],[0,32],[0,71],[0,30],[-1,227],[0,98],[2,61],[0,53],[1,110],[0,42]],[[89152,64217],[-25,0],[-138,2],[-26,1],[-80,1],[-97,1],[-33,0],[-409,9],[-18,0],[-1,0],[-55,2],[-83,-3],[-69,-3],[-46,-1],[-16,1],[-18,1],[-124,2],[-109,1],[-153,1],[-22,0],[-95,1],[-184,2],[-79,-1],[-159,-3],[-97,-1],[-19,-3],[-134,-2],[-59,-1],[-76,-1],[-269,-4],[-122,-1],[-21,0],[-30,0],[-37,-1],[-40,0],[-18,-1],[-18,0],[-48,-3],[-38,0],[-17,-2],[-41,0],[-17,-1],[-70,0],[-81,4],[-107,-4],[-29,0],[-352,-8],[-150,-7],[-15,-1],[-20,0],[-49,-1],[-16,-1],[-42,2],[-24,-1],[-152,-5],[-84,-2],[-8,0],[-7,-1],[-231,-9],[-19,0],[-183,-6],[-73,-2],[-25,1],[-38,0],[-52,0],[-37,0],[-1,-1],[-3,-6]],[[84144,64162],[-3,5],[-5,2],[-19,0],[-72,1],[-173,2],[-23,1],[-99,1],[-77,0],[-56,1],[-287,0],[-84,1],[-27,0],[-34,0],[-124,1],[-34,1],[-1,0],[-155,1],[-15,0],[-141,1],[-126,1],[-19,0],[-19,-1],[-118,2],[-108,1],[-96,0],[-64,0],[-18,0],[-130,0],[-25,1],[-17,0],[-14,0],[-36,1],[-49,0],[-25,-1],[-40,0],[-16,-3],[-54,1],[-85,-2],[-18,0],[-91,0],[-72,0],[-92,0],[-24,-1],[-59,-2],[-31,0],[-48,0],[-18,0],[-31,0],[-76,1],[-139,-3],[-133,0],[-74,-2],[-62,0],[-29,0],[-47,0],[-188,-1],[-124,-1],[-19,1],[-36,-2],[-36,0],[-57,0],[-79,0],[-34,0],[-15,0],[-30,0],[-28,-2],[-65,0],[-19,-1],[-134,1],[-91,0],[-30,0],[-70,-1],[-32,2],[-35,1],[-77,-4],[-45,-2],[-16,1],[-14,5],[-115,1],[-45,0],[-108,0],[-179,2],[-66,0],[-26,0],[-9,0],[-98,0],[-75,-1],[-31,0],[-56,0],[-32,0],[-144,0],[-43,0],[-14,0],[-34,0],[-158,1],[-30,1],[-24,0],[-8,0],[-152,-1],[-23,0],[-44,0],[-7,0],[-26,1],[-54,0],[-44,0],[-24,0],[-24,0],[-35,1],[-237,0],[-10,-3],[-7,-3],[-8,1],[-17,0],[-56,2],[-18,4],[-15,0],[-19,0],[-54,1],[-43,0],[-51,0],[-108,1],[-20,0],[-17,1],[-29,0],[-31,0],[-17,0],[-22,0],[-21,0],[-2,0],[-18,0],[-191,0],[-187,-2],[-29,0],[-113,1]],[[76270,64178],[1,205],[0,155],[0,41],[0,129],[1,76],[0,107],[1,62],[0,161],[1,212],[1,108],[1,126],[0,81],[0,158],[1,104],[0,85],[0,93],[0,68],[-1,219],[0,33],[0,73],[0,67],[0,128],[0,52],[0,31],[0,705],[0,446],[0,2],[0,24],[0,10],[0,47],[0,116],[0,44],[0,228],[1,132]],[[76277,68506],[0,1],[0,110],[0,52],[0,196],[0,51],[0,96],[0,70],[0,35],[0,28],[0,88],[1,154],[0,101],[0,74],[0,34],[0,44],[2,267],[0,49],[1,761],[1,47],[-1,90],[0,224],[0,171],[0,109],[0,79],[0,363],[0,360],[0,64],[2,283],[0,26],[0,8],[0,4],[0,68],[1,52],[0,46],[-1,173],[0,95],[0,82],[0,144],[0,84],[0,172],[0,383],[-1,123],[1,153],[2,208],[2,167],[1,59],[1,67],[0,69],[0,210],[-1,91],[0,1],[1,34]],[[57096,74998],[0,-4],[0,-2],[1,-339],[0,-195],[0,-25],[-6,-4],[-7,-4],[-37,-23],[-15,-9],[-7,-5],[-11,-7],[1,-15],[0,-10],[-2,-54],[0,-5],[0,-9],[1,-77],[1,-36],[46,-60],[14,-18],[21,5],[1,-57],[2,-61],[-1,-47],[-44,1],[-27,0],[-35,1],[-32,0],[-15,0],[-21,1],[-46,-1],[-51,0],[0,-179],[-7,0],[-52,0],[1,-100],[0,-61],[0,-24],[-5,0],[-137,0],[-69,-1],[-1,-45],[0,-7],[0,-24],[-2,-92],[-43,0],[-128,0],[-59,0],[-15,0],[-15,-16],[-14,-16],[-34,-39],[-11,-18],[-14,-17],[-21,-24],[-20,29],[-26,45],[6,24],[-4,27],[0,34],[0,42],[0,94],[-1,4],[139,0],[-1,18],[-1,13],[-1,12],[-1,7],[0,22],[0,40],[0,35],[0,35],[-131,2],[-1,0],[-15,1],[-2,0],[-4,0],[-4,0],[-6,-1],[-7,30],[-15,70],[-8,0],[-67,-1],[0,-40],[0,-101],[0,-35],[0,-25],[1,-61],[0,-19],[1,-65],[0,-34],[-132,0],[0,-2],[-2,-94],[-3,-118],[0,-46],[-45,1],[-36,0],[-49,0],[-13,1],[-1,-11],[0,-75],[-1,-79],[0,-70],[-1,-100],[0,-36],[0,-4]],[[55750,72845],[-11,0],[-11,0],[-83,0],[-111,0],[-23,0],[-18,6],[-23,-6],[-214,3],[-127,2],[-13,0],[-14,0],[-56,2],[-24,-2],[-19,-2],[-15,0],[-4,-1],[-34,1],[-39,2],[-89,3],[-13,-6],[-11,-7],[-20,7],[-19,-2],[-15,-6],[-63,13],[-128,-2],[-107,7],[-1,0],[-92,-7],[-1,0],[-264,-3],[-22,5],[-56,-5],[-165,-6],[-34,-1],[-326,7],[-15,0],[-23,-1],[-66,-1],[-12,0],[-113,-1],[-245,-2],[-39,-1],[-120,-4],[-84,-2],[-16,0],[-30,-1],[-94,-3],[-26,-1],[-28,0],[-48,-3],[-267,-6],[-79,-1]],[[52180,72820],[0,68],[0,37],[-2,22],[0,125],[0,20],[-3,12],[0,2],[0,5],[-2,10],[1,3],[-9,-1],[1,24],[8,11],[-1,3],[1,26],[2,58],[3,78],[-1,13],[-1,7],[-5,4],[0,6],[-2,18],[-37,-3],[-9,-12],[-31,-38],[-8,-12],[-43,-13],[-48,18],[-23,30],[-13,16],[-9,-22],[-15,-37],[-9,-14],[-9,-16],[-16,-28],[-5,-10],[-1,-1],[-6,-10],[-17,27],[-15,28],[-5,0],[-2,1],[-1,0],[-22,13],[-6,-1],[-16,-3],[-26,-8],[-10,-1],[-30,-6],[-20,17],[-19,35],[-13,15],[-73,85],[-7,8],[-9,12],[-17,7],[-18,-1],[-16,0],[-12,-7],[-29,-18],[-26,-4],[-20,-36],[-31,-24],[-23,-7],[-19,-7],[-2,-1],[-19,-35],[-9,-2],[-6,-3],[-18,-2],[-44,1],[-93,1],[-21,0],[-468,3],[-2,0],[-21,0],[-53,0],[-47,0],[-14,-2],[-20,2],[-30,0],[-16,0],[-15,0],[-33,-2],[-20,2],[-56,0],[-148,0],[-101,0],[-246,-3],[-250,0],[-246,3],[-213,0],[-240,0],[-44,-8],[-126,3],[-122,2],[-99,0],[-48,3],[-49,0],[-16,-1],[-38,1],[-89,0],[-84,1]],[[28821,77274],[-463,0],[-62,0],[-393,-2],[-339,-9],[-817,-4],[-3,0],[-14,0],[-447,-2],[-46,0],[-454,0],[-233,0],[-316,-1],[-109,0],[-164,-1],[-124,0],[0,-217],[0,-261],[0,-40],[0,-354],[0,-38],[-1,-802],[0,-457],[-31,0],[-1,-94],[0,-1],[7,-1531],[1,-373],[0,-215],[-143,7],[-667,28],[-644,27],[-155,6],[1,-380],[0,-142],[0,-266],[0,-277],[-2,-508],[0,-1],[0,-420],[0,-233],[-223,-2],[-412,-1],[-229,0],[-117,1],[-608,-6],[-20,0],[-62,2],[-159,6],[-262,9],[-435,15],[-56,0],[-179,5],[-45,1],[-354,3],[-147,2],[-226,3],[-86,1],[-22,0],[-54,1],[-43,3],[-302,-29],[-177,-17],[-4,0],[-321,-28],[-48,-5],[-164,-16],[-309,-32],[-176,0],[-321,-2],[-296,-1],[-21,0],[-211,-1],[-108,-1],[-5,0],[-66,0],[-56,3],[-224,0],[-233,1],[-329,0],[-110,0],[0,-287],[-1,-464],[0,-394],[-1,-207],[0,-334],[0,-184],[0,-82],[2,-360],[0,-3],[-3,-482],[0,-45],[0,-1],[-1,-141],[3,-92],[1,-178],[-41,-3],[-48,-2],[-62,0],[-284,2],[-131,-2],[-84,0],[-56,1],[-3,0],[-115,2],[-52,1],[-9,0],[-33,11],[-149,8],[-85,-5],[-108,-6],[-82,-5],[-30,2],[-108,7],[-70,3],[-33,3],[-20,2],[-132,2],[-107,-3],[-15,0],[-14,0],[-301,-1],[-198,-1],[-38,-1],[-103,1],[-97,1],[-68,-2],[0,5],[-185,-2],[-69,-1],[-142,-1],[-2,0],[-74,-1],[-67,0],[-82,2],[-88,-1],[-38,1],[-74,0],[-291,0],[-2,0],[-190,-1],[-1,-32],[-49,1],[-198,2],[-19,0],[-133,0],[-67,3],[-61,-1],[-30,1],[-63,3],[-162,4],[-103,0],[-38,-1],[-13,0],[-127,-2],[-223,9],[-8,1],[-36,2],[-241,-10],[-93,-1],[-34,-1],[-154,-2],[-38,0],[-357,1],[-76,1],[-85,1],[-128,-1],[-126,0],[-48,0],[-109,0],[-84,0],[-140,-2],[-91,0],[-96,-1],[-69,0],[-16,0],[-104,-1],[-143,-1],[-151,0],[-157,-1],[-79,-1],[-79,2],[-237,3],[-161,-5],[-47,-1],[-73,-1],[-20,0],[-68,-2],[-164,-4],[0,-160],[0,-154],[1,-307],[0,-314],[0,-3],[0,-146],[-300,-3],[-368,-4],[-173,-2],[-29,1],[-142,0],[-253,-2],[-1,0],[-162,0],[-119,-1],[-193,0],[-67,0],[-33,0],[-79,0],[-23,1],[-192,0],[-14,0],[-1,0],[-107,0],[-246,1],[-64,1],[-227,6],[-193,0],[-235,0],[-61,1],[-8,0],[-22,1],[-16,1],[-200,-1],[-60,-1],[-176,1],[-131,1],[-92,1],[-139,0],[-97,2],[-96,1],[-10,0],[-244,-3],[-71,1],[-216,1],[0,253],[-79,0],[-85,0],[-307,-1],[-583,-2],[-16,0],[-1,0],[-300,-1],[-13,-1],[-111,1],[-135,2],[-320,1],[-1,0],[-263,1]],[[130,66526],[2,1249],[0,35],[1,325],[0,66],[0,246],[1,215],[0,96],[0,4],[0,21],[0,393],[1,515],[0,282],[0,51],[0,10],[0,198],[1,286],[0,395],[1,387],[0,140],[0,142],[0,144],[0,148],[0,208],[0,413],[0,6],[-1,424],[0,373],[0,47],[0,158],[-1,37],[0,166],[0,233],[-1,266],[0,91],[-2,695],[0,1],[2,611],[-1,66],[0,4],[2,726],[0,78],[-1,160],[0,289],[-2,71],[2,300],[-2,453],[1,89],[0,32],[-1,70],[0,40],[0,82],[1,45],[2,247],[-3,328],[0,95],[0,205],[0,222],[1,102],[-1,193],[1,45],[1,182],[0,197],[0,536],[0,84]],[[28901,72970],[-77,-1],[-48,0],[-81,0],[-92,1],[-1,0],[-868,5],[1,-469],[-1,-508],[0,-44],[0,-79],[2,-205],[0,-379],[0,-1189],[0,-670],[0,-86],[0,-200],[0,-340],[0,-28],[0,-482],[0,-106],[0,-124],[1,-252],[0,-322],[1,-51],[-1,-293],[0,-22],[0,-351],[0,-80],[0,-144],[0,-124],[0,-61],[-1,-339],[-1,-327],[-1,-44],[-3,-26],[1,-115],[2,-451],[1,-262],[-1,-622],[-1,-246],[-1,-557],[-1,-237],[-1,-401],[5,-215],[0,-107],[0,-146],[0,-30],[0,-27],[-1,-29],[0,-294],[0,-177],[0,-51],[0,-40],[2,-240],[0,-33],[0,-510],[-1,-109],[0,-76],[0,-26],[0,-66],[0,-177],[0,-167],[0,-38],[0,-85],[0,-56],[0,-47],[0,-56],[0,-106],[0,-424],[2,-222]],[[27737,59185],[-157,2],[-16,-1],[-129,0],[-497,-2],[-135,0],[-183,-1],[-15,0],[-72,0],[-20,0],[-22,0],[-18,0],[-19,0],[-18,0],[-109,0],[-34,1],[-40,0],[-159,0],[-140,0],[-84,0],[-65,0],[-22,4],[-67,0],[-514,-2],[-225,0],[-167,-6],[-129,2],[-280,3],[-113,2],[-286,-3],[-31,0],[-52,1],[-105,1],[-186,1],[-103,1],[-34,-1],[-218,1],[-59,0]],[[23214,59188],[-57,0],[-543,1],[-5,0],[-258,1],[-130,-4],[-362,-1],[-118,0],[-234,0],[-23,1],[-79,0],[-24,1],[-458,0],[-1,0],[-74,0],[-146,0],[-262,6],[-281,-2],[-56,0],[-29,0],[-269,-1],[-262,-2],[-296,-1],[-55,0],[-533,3],[-27,0],[-135,0],[-452,0],[-175,0],[-351,0],[-389,0],[-171,0],[-81,1],[-129,-3],[-128,0],[-225,0],[-17,0],[-69,1],[-550,1],[-233,-1],[-189,-1],[-21,0],[-42,-1],[-32,0],[-137,3],[-9,0],[-89,-2],[-153,0],[-90,0],[-36,-1],[-61,0],[-122,1],[-97,0],[-106,0],[-94,0],[-81,0],[-86,0],[-72,0],[-19,0],[-15,0],[-24,0],[-37,0],[-36,0],[-53,-1],[-62,0],[-23,0],[-77,0],[-18,0],[-50,0],[-29,1],[-17,0],[-66,1],[-119,-1],[-49,1],[-31,0],[-112,-1],[-95,1],[-35,0],[-27,0],[-35,0],[-26,0],[-25,-1],[-29,0],[-84,1],[-77,0],[-44,1],[-15,0],[-1,0],[-69,0],[-217,-2],[-82,0],[-87,0],[-143,0],[-113,2],[-146,3],[-149,5],[-47,0],[-65,1],[-40,-7],[-22,-1],[-12,0],[-8,0],[-55,-2],[-113,3],[-126,-1],[-256,-1],[-128,0],[-279,-1],[-547,-2],[-109,0],[-113,12],[-46,-1],[-56,-5],[-45,2],[-86,2],[-147,-5],[-84,3],[-20,-12],[-145,1],[-53,0],[-73,1],[-123,0],[-143,-1],[-267,-2],[-276,1],[-91,3],[-74,0],[-52,-2],[-357,4],[-94,1],[-258,3],[-281,4],[-791,0],[-25,0],[-306,-1],[-1211,0],[-10,0],[-36,1],[-15,2],[-131,1],[-47,-3],[-34,-1],[-46,0],[-138,0],[-92,0],[-50,-1],[-192,0],[-37,0],[-115,-1],[-201,0],[-208,-1],[-24,0],[-67,0],[-20,0],[-38,0],[-98,-1],[-251,-1],[-30,0],[-68,0],[-72,7],[-158,0],[-264,0],[-48,4],[-237,-5],[-103,1],[-133,0],[-82,0],[-56,0],[-316,1],[-49,-5],[-41,-1],[-15,0],[-279,1],[-553,6],[-20,0],[-19,0],[-122,1]],[[135,59200],[-1,207],[-1,520],[-2,610],[-2,749],[0,290],[-2,590],[0,301],[-1,57],[0,393],[0,33],[1,554],[0,295],[0,128],[0,118],[0,172],[0,197],[1,321],[0,88],[0,263],[0,103],[0,155],[0,90],[0,207],[0,26],[1,445],[1,414]],[[58399,75000],[-42,0],[-26,0],[-57,0],[-19,0],[-58,0],[-5,-1],[-2,-2],[-3,-5],[-1,-2],[-3,2],[-2,1],[-8,3],[-3,1],[-2,0],[-13,3],[-33,0],[-2,-8],[-5,-26],[-3,-10],[-18,-58],[-1,-4],[-17,-53],[-9,-27],[-18,-61],[-9,-28],[-8,-29],[-4,-38],[0,-81],[0,-45],[0,-6],[0,-23],[-2,-42],[-8,-160],[0,-33],[0,-71],[-2,0],[-126,2],[-1,38],[2,60],[-2,81],[-1,70],[0,30],[0,49],[-50,-1],[-78,-1],[-111,-2],[-13,0],[-3,0],[-10,0],[1,-33],[0,-18],[0,-16],[0,-44],[0,-44],[1,-44],[0,-73],[1,-40],[0,-33],[0,-43],[0,-92],[0,-43],[0,-62],[-1,-29],[-24,-67],[-3,-24],[3,-31],[3,-8],[11,-6],[58,-20],[20,23],[0,-36],[56,0],[0,-96],[93,2],[34,-1],[16,0],[-2,-68],[-48,-1],[-37,-1],[-28,-1],[-22,1],[-128,-1],[0,-146],[1,-33],[1,-52],[1,-47],[0,-25],[1,-29],[0,-33],[1,-79],[0,-91],[0,-10],[-16,0],[-50,0],[-3,5],[-2,1],[-2,0],[-1,0],[-3,-1],[-2,0],[-1,0],[-8,0],[-25,0],[-111,5],[-28,1],[-22,1],[1,-10],[0,-25],[0,-38],[0,-27],[0,-53],[0,-34],[0,-2],[-48,0],[-15,0],[-19,0],[-23,0],[-25,0],[-26,1],[-1,0],[-107,0],[0,-11]],[[57095,72842],[-14,0],[-1,0],[-20,0],[-11,5],[-24,10],[-18,0],[-21,0],[-24,0],[0,-5],[0,-45],[3,-119],[-1,-14],[-21,0],[-116,-1],[0,-69],[0,-55],[0,-55],[-40,-2],[-22,1],[-21,1],[-5,5],[-2,2],[-8,0],[-3,0],[-9,1],[-9,2],[-3,-1],[-5,-1],[-3,-1],[-3,0],[-43,0],[0,-28],[-91,-4],[0,36],[-81,-1],[-1,5],[0,6],[-2,1],[-55,25],[4,97],[1,56],[-13,5],[-22,10],[-7,3],[-27,14],[-26,22],[-16,16],[16,30],[-10,9],[-6,30],[-7,9],[-11,15],[-17,-1],[-50,-1],[-27,0],[-15,-1],[-28,-1],[-47,-1],[-27,-1],[-26,0],[-40,-1],[-30,1],[-35,1],[-67,-2],[-33,-2],[-32,-1],[-71,-2],[0,-10],[-2,0],[-1,-177],[3,-165],[260,-3],[0,-1],[0,-5],[0,-3],[0,-60],[0,-75],[0,-27],[0,-4],[2,-68],[-17,0],[-77,-16],[-107,-3],[-54,-2],[-7,0],[-14,3],[-30,6],[-7,1],[-24,4],[-32,7],[-32,6],[-38,5],[-69,9],[0,8],[-10,2],[0,477],[76,21],[178,63],[0,7]],[[76277,68506],[-155,-1],[-92,-1],[-20,0],[-39,0],[-132,1],[-73,0],[-209,2],[-38,0],[-170,1],[-15,0],[-256,2],[-46,0],[-30,1],[-20,1],[-13,0],[-27,2],[-54,0],[-38,0],[-68,0],[-98,1],[-33,0],[-58,0],[-49,0],[-18,0],[-65,-1],[-54,1],[-139,0],[-34,0],[-18,0],[-6,0],[-50,0],[-169,1],[-121,0],[-15,1],[-179,3],[-153,3],[-110,-4],[-39,-1],[-132,2],[-101,0],[-40,0],[-24,0],[-41,-2],[-25,1],[-68,3],[-81,0],[-146,0],[-45,0],[-83,0],[-97,-3],[-14,-8],[-7,-5],[-15,4],[-15,4],[-17,1],[-16,1],[-60,-1],[-8,0],[-19,0],[-14,0],[-40,-1],[-197,-1],[-27,0],[-76,-1],[-52,0],[-129,-1],[-48,-1],[-15,0],[-18,0],[-21,0],[-32,0],[-48,-1],[-16,0],[-70,-1],[-147,0],[-130,0],[-42,0],[-49,0],[-23,-1],[-46,0],[-96,0],[-57,-1],[-76,0],[-47,0],[-16,-1],[-26,0],[-37,0],[-21,0],[-36,0],[-62,-1],[-4,0],[-21,0],[-92,0],[-32,-1],[-17,0],[-152,-2],[-19,-1],[-86,-1],[-106,-1],[-58,0],[-25,-1],[-79,-1],[-131,-1],[-136,-3],[-43,0],[-226,-4],[-55,-1],[-92,-1],[-46,0],[-5,0],[-69,-2],[-198,0],[-16,0],[-30,0],[-21,-1],[-27,0],[-107,0],[-76,-1],[-68,0],[-46,-1],[-61,0],[-140,0],[-24,0],[-45,-1],[-95,-1],[-69,-1],[-36,0],[-31,-1],[-19,0],[-41,0],[-49,0],[-62,-1],[-19,-1],[-20,-1],[-16,-1],[-25,-1],[-42,-1],[-35,0],[-41,0],[-40,-1],[-28,-1],[-24,0],[-1,0],[-17,0],[-26,-1],[-17,0],[-15,0],[-17,0],[-25,0],[-15,0],[-21,-1],[-29,0],[-16,0],[-20,0],[-18,-1],[-21,0],[-55,-1],[-263,-1],[-28,0],[-16,0],[-157,-1],[-63,-1],[-20,0],[-19,0],[-30,0],[-5,0],[-15,-1],[-19,0],[-16,0],[-17,0],[-19,0],[-48,-1],[-39,0],[-24,0],[-25,0],[-22,0],[-24,0],[-19,0],[-17,0],[-17,-1],[-15,-9],[-11,-10],[-6,-5],[-16,-4],[-14,6],[-18,15],[-17,7],[-23,2],[-23,0],[-17,0],[-33,0],[-33,0],[-3,0],[-18,0],[-26,0],[-36,0],[-34,1],[-30,0],[-15,0],[-14,0],[-5,0],[-18,0],[-17,0],[-24,0],[-78,0],[-63,1],[-54,0],[-19,0],[-26,0],[-32,0],[-15,0],[-18,1],[-31,-1],[-27,1],[-110,0],[-20,0],[-114,0],[-14,1],[-51,0],[-66,0],[-155,0],[-73,0],[-22,0],[-5,0],[-44,2],[-135,5],[-40,1],[-60,3],[-15,0],[-16,1],[-31,1],[-71,3],[-113,4],[-22,0],[-117,5],[-69,2],[-54,2],[-35,0],[-19,1],[-58,1],[-50,1],[-40,1],[-75,2],[-5,0],[-24,0],[-26,1],[-29,1],[-37,1],[-31,0],[-29,1],[-57,1],[-16,0],[-22,1],[-23,0],[-24,0],[-16,1],[-17,0],[-22,0],[-20,1],[-16,0],[-18,0],[-15,0],[-42,1],[-53,1],[-26,0],[-38,1],[-25,-1],[-23,-4],[-17,-4],[-8,-2],[-10,-4],[-12,0],[-3,0],[-26,2],[-29,2],[-16,1],[-16,1],[-44,4],[-30,-2],[-19,-2],[-45,1],[-79,0],[-36,8],[-16,3],[-28,5],[-26,2],[-5,0],[-10,-1],[-27,-2],[-26,-1],[-41,-2],[-43,-1],[-20,0],[-33,0],[-33,-1],[-18,-1],[-13,-1],[-31,-2],[-45,1],[-87,0],[-20,1],[-3,0],[-36,0],[-67,0],[-91,1],[-69,1],[-19,2],[-30,1],[-27,0],[-26,0],[-17,0],[-30,0],[-30,0],[-33,0],[-17,0],[-20,3],[-22,7],[-23,4],[-19,-2],[-4,-2],[-16,-6],[-18,-4],[-16,-1],[-37,0],[-60,0],[-37,0],[-40,0],[-28,0],[-25,0],[-25,0],[-34,0],[-62,0],[-15,0],[-16,0],[-15,0],[-18,0],[-69,0],[-46,0],[-17,0],[-58,0],[-28,0],[-31,0],[-34,1],[-17,0],[-15,0],[-20,0],[-17,0],[-22,0],[-44,0],[-26,0],[-15,0],[-56,0],[-17,0],[-17,-1],[-21,-1],[-18,-1],[-1,0],[-16,0],[-15,-1],[-17,0],[-38,1],[-12,0],[-17,0],[-24,1],[-16,0],[-39,2],[-20,0],[-35,0],[-15,0],[-8,0],[-8,0],[-27,0],[-24,0],[-22,0],[-35,0],[-29,0],[-24,0],[-52,1],[-28,0],[-34,-2],[-20,-1],[-33,0],[-41,0],[-26,0],[-17,0],[-17,0],[-16,0],[-17,0],[-17,0],[-16,0],[-17,0],[-17,0],[-17,0],[-16,0],[-2,0],[-17,0],[-15,0],[-17,0],[-17,0],[-16,0],[-17,0],[-17,0],[-17,0],[-18,0],[-14,0],[-1,0],[-17,0],[-17,0],[-16,0],[-17,0],[-17,0],[-17,0]],[[59492,68514],[0,44],[0,46],[0,45],[0,46],[23,-1],[8,0],[34,0],[1,22],[1,18],[0,27],[-1,19],[1,29],[2,35],[2,32],[15,0],[49,1],[31,3],[101,0],[103,2],[31,1],[0,121],[0,214],[0,4],[38,-3],[27,-3],[39,-6],[32,-4],[35,-4],[30,-4],[36,-5],[33,-4],[39,-16],[27,-11],[0,1],[-1,54],[32,0],[36,1],[-1,9],[-1,7],[1,12],[0,2],[3,30],[1,12],[0,4],[-2,29],[-1,13],[16,0],[39,0],[208,0],[37,1],[79,1],[43,0],[37,1],[65,1],[1,0],[20,0],[118,1],[-2,78],[138,5],[0,-130],[5,-9],[2,-3],[14,-9],[8,-3],[12,-3],[7,-1],[11,8],[6,17],[5,3],[57,0],[2,-50],[33,0],[105,0],[181,-2],[33,0],[37,0],[17,-5],[0,75],[0,15],[0,45],[1,102],[0,34],[0,42],[0,27],[0,3],[0,35],[2,152],[0,81],[0,57],[-4,341],[-122,3],[-35,0],[-4,-281],[-26,-1],[-50,0],[-31,0],[-30,0],[-75,17],[-26,94],[0,16],[1,2],[-1,3],[-1,12],[1,27],[-1,13],[-2,137],[0,40],[1,40],[44,172],[133,40],[51,0],[16,1],[4,0],[14,0],[54,0],[75,1],[17,0],[173,1],[70,1],[83,-2],[8,0],[429,-7],[10,0],[28,1],[27,-1],[138,-36],[0,-160],[29,0],[111,-4],[3,144],[35,10],[88,37],[29,0],[74,1],[1,67],[2,48],[144,-6],[34,2],[10,0],[79,-4],[23,-2],[3,395],[0,21],[0,8],[-1,300],[0,362],[-1,86],[167,2],[5,0],[10,0],[18,0],[0,26],[0,9],[-1,172],[0,3],[6,0],[15,0],[59,1],[-1,58],[-1,370],[-87,-1],[-9,0],[-266,-3],[-116,0],[1,137],[0,35],[-3,0],[-89,1],[-32,1],[-236,3],[-134,2],[-95,2],[-62,-5],[-6,5],[-4,143],[-156,-6],[-3,-120],[-19,-16],[-21,1],[-42,-1],[-117,-5],[0,-47],[-2,-111],[-46,-39],[-12,0],[-75,1],[-131,1],[-106,1],[-2,-110],[0,-64],[0,-5],[-1,-46],[-1,-137],[-2,-219],[1,-486],[-3,-198],[-1,-70],[-52,2],[-158,5],[-7,0],[-42,2],[-32,0],[-5,0],[-39,-8],[-21,-3],[-6,-2],[-25,0],[-19,1],[-16,-19],[-5,-8],[-1,-50],[-72,1],[-68,0],[-57,1],[-211,1],[1,-117],[1,-151],[0,-119],[0,-35],[-1,-37],[-2,-97],[-1,-171],[-1,-29],[0,-46],[0,-39],[0,-27],[1,-36],[0,-12],[0,-42],[1,-66],[0,-34],[0,-33],[-34,1],[-70,0],[-92,1],[-41,0],[-31,0],[-42,-1],[-19,0],[-31,0],[-54,0],[-40,-1],[-16,0],[-59,-1],[-17,-3],[-30,0],[-59,1],[-51,0],[-53,1],[-39,1],[-23,1],[-17,1],[-15,2],[-16,-1],[-93,1],[-15,0],[-15,0],[-52,1],[-20,0],[-27,0],[0,41],[0,71],[0,48],[0,84],[0,25],[0,27],[0,68],[-16,0],[-6,-1],[-17,0],[-38,0],[-64,0],[-34,0],[-50,0],[-20,0],[-19,1],[0,-29],[0,-36],[0,-108],[-1,-71],[0,-63],[-1,-59],[-170,1],[-99,2],[0,-2],[0,-5],[1,-8],[0,-12],[0,-13],[1,-47],[0,-48],[0,-29],[0,-33],[3,-57],[-6,-13],[0,-8],[0,-5],[-1,-15],[-1,-30],[2,-24],[1,-9],[-16,-1],[-76,-5],[-30,0],[-24,0],[-20,0],[-1,0],[-14,-1],[-20,0],[-22,0],[-16,-1],[-40,1],[-54,-1],[-1,83],[0,87],[0,12],[-11,0],[-8,0],[-17,0],[-29,0],[-56,-1],[-61,1],[-9,1],[-5,20],[0,4],[1,6],[3,62],[-7,1],[-9,1],[-15,-7],[-93,1],[-66,2],[-23,-1],[-2,0],[-66,-87],[-6,-4],[-105,0],[-30,0],[-270,1],[-108,0],[-3,0],[-138,1],[-253,-4],[-10,0],[-9,0],[-32,1],[-14,1],[-16,2],[-148,0],[-16,0],[-29,0],[-23,0],[-19,0],[-20,0],[-18,-1],[-36,0],[-18,0],[-4,0]],[[57090,69782],[1,55],[0,26],[0,32],[0,14],[0,26],[0,35],[1,10],[1,20],[0,2],[3,40],[0,26],[0,7],[0,19],[-1,26],[-5,33],[0,27],[0,25],[0,53],[0,33],[0,3],[0,30],[0,46],[0,40],[0,29],[0,43],[0,44],[0,26],[0,45],[0,88],[0,66],[0,27],[0,65],[0,1],[0,35],[0,28],[0,65],[0,32],[0,43],[0,67],[1,40],[0,46],[0,21],[0,20],[2,36],[4,32],[1,9],[-4,26],[-4,25],[-1,30],[1,28],[0,2],[1,48],[0,46],[0,31],[0,36],[0,60],[0,18],[0,75],[0,27],[0,80],[1,38],[0,44],[0,25],[0,37],[0,47],[0,31],[1,45],[0,28],[0,27],[0,44],[0,7],[0,81],[0,11],[0,46],[0,27],[1,51],[0,5],[0,49],[1,64],[0,30],[0,40],[-1,47],[0,45],[1,67],[0,29],[0,26],[0,1]],[[52180,72820],[0,-110],[2,-12],[0,-27],[-2,-224],[0,-49],[3,-319],[-3,-25],[-1,-27],[0,-38],[0,-49],[0,-28],[-1,-65],[0,-42],[1,-37],[6,-113],[-6,-117],[0,-27],[6,-137],[1,-30],[-2,-98],[-4,-216],[-1,-27],[0,-156],[-1,-441],[0,-1],[1,-29],[0,-116],[0,-468],[0,-176],[0,-40],[0,-111],[0,-67],[0,-74],[0,-76],[0,-116],[0,-96],[0,-258],[0,-30],[0,-62]],[[52179,68686],[-11,11],[-12,12],[-49,49],[-42,32],[-79,-38],[-133,-92],[-35,54],[12,66],[2,46],[1,49],[-60,26],[-28,-14],[-26,-13],[-61,15],[-18,4],[-153,-47],[-22,-6],[-30,-10],[-64,73],[-35,8],[-75,19],[-39,-6],[-36,-5],[-74,25],[-112,37],[-143,-43],[-66,12],[-19,66],[11,26],[14,14],[15,19],[-4,25],[-19,3],[-27,-9],[-161,22],[-111,16],[-52,24],[-21,18],[-17,15],[-15,13],[-78,32],[-19,8],[-46,19],[-93,74],[-13,17],[-22,-2],[-18,-1],[-8,30],[-30,127],[-28,116],[21,28],[19,30],[-46,48],[-26,31],[-4,4],[-46,54],[-60,70],[-59,68],[-50,58],[-119,89],[-39,28],[-9,34],[-8,73],[-1,46],[-1,62],[39,13],[6,37],[16,97],[-68,75],[-147,14],[-72,-74],[-104,-55],[-149,145],[-202,197],[-20,24],[-9,43],[-12,31],[-11,25],[-17,27],[4,42],[-11,32],[-8,24],[-8,44],[-21,18],[-23,12],[-22,2],[-18,3],[-16,4],[-15,7],[-24,24],[-15,8],[-23,0],[-16,-4],[-20,0],[-14,4],[-27,30],[-12,14],[-19,10],[-22,14],[-18,7],[-25,10],[-25,12],[-15,5],[-29,-8],[-44,-36],[-15,-18],[-23,-10],[-23,4],[-27,3],[-13,10],[-19,20],[-12,15],[-17,-7],[-11,-27],[-8,-24],[-20,-6],[-22,6],[-16,1],[-22,22],[-17,8],[-33,13],[-19,28],[-15,27],[-22,14]],[[37411,73120],[1,-38],[-15,-13],[-18,-24],[-18,-30],[-17,-19],[-9,-20],[-6,-41],[15,-47],[43,-37],[31,-21],[16,-17],[16,-34],[19,-59],[4,-43],[2,-44],[-10,-37],[-1,-57],[22,-81],[8,-82],[-3,-41],[-2,-38],[-4,-69],[-3,-51],[4,-40],[9,-50],[3,-40],[-14,-16],[-63,-156],[15,-225],[16,-54],[25,-73],[78,-226],[-9,-137],[-4,-54],[22,-68],[50,-50],[91,-231],[42,-180],[67,-292],[73,-139],[-3,-145],[69,-101],[-3,-102],[62,-48],[48,-138],[-30,-182],[79,-244],[83,-83],[27,-27],[55,-55],[122,-190],[75,0],[48,1],[39,-10],[46,108],[25,13],[28,14],[54,-33],[8,-68],[106,-122],[11,-43],[45,-179],[47,-63],[19,-46],[28,-66],[52,-31],[69,-117],[80,-54],[105,-71],[87,-101],[45,-144],[21,-153],[84,-90],[143,-71],[12,18],[11,19],[8,21],[11,23],[16,25],[16,-1],[19,-22],[14,-13],[36,-16],[33,-15],[12,-48],[10,-38],[-12,-68],[-13,-70],[-8,-41],[-10,-53],[24,-37],[35,-92],[29,-65],[127,-14],[24,-1],[28,12],[24,-2],[16,1],[18,8],[17,-8],[19,-9],[22,-3],[-10,-226],[-5,-102],[79,-123],[63,-15],[49,-12],[32,41],[25,11],[35,-11],[23,-46],[-2,-30],[-3,-24],[-7,-31],[8,-36],[21,-33],[114,-7],[100,-7],[72,-64],[112,47],[79,-42],[62,-228],[1,-45],[0,-56],[44,-128],[-2,-309],[-1,-33],[-5,-153],[-16,-60],[-26,-94],[-65,-91],[-86,8],[-102,50],[-66,-3],[-55,-83],[-14,-22],[-61,-210],[5,-160],[-13,-34],[-10,-23],[-10,-28],[-6,-235],[54,-90],[9,-142],[-4,-27],[4,-25],[8,-24],[18,-31],[13,-31],[22,-30],[16,-3],[22,0],[22,0],[28,2],[25,-8],[8,-26],[-12,-97],[-130,-102],[-51,-40],[-8,-65],[-17,-128],[6,-161],[-44,-42],[-9,6],[-6,5],[-17,10],[-22,3],[-17,-4],[-34,-10],[-18,-4],[-20,-2],[-13,16],[-119,265],[-20,140],[-42,-4],[-64,-79],[-70,-10],[-36,-75],[-27,-100],[-39,-73],[-9,-107],[2,-120],[-10,-135],[30,-49],[75,-56],[27,-89],[-12,-59],[-13,-60],[-17,-84],[-111,-120],[-14,-40],[-4,-31],[-6,-13],[1,-42],[68,-29],[78,-34],[43,-58],[-59,-219],[-25,-94],[15,-153],[-15,-76],[13,-78],[83,-80],[21,-40],[39,-73],[24,-111],[24,-86],[48,-122],[28,-72],[61,-49],[57,-114],[-18,-55],[-11,-35],[-9,-29],[-53,-55],[-35,-40],[9,-29],[15,-138],[6,-58],[141,-114],[27,-19],[20,-40],[48,-96],[9,-17],[22,-44],[2,-3],[87,-107],[42,-51],[16,-30],[0,-1],[2,-22],[1,-5],[-14,-63],[-5,-13],[-21,-65],[-15,-19],[-18,-21],[-20,-21],[-17,-24],[-12,-20],[-14,-35],[10,-32],[21,-22],[17,-21],[7,-23]],[[40656,59523],[-154,0],[-16,0],[-63,1],[-36,-1],[-6,-35],[-10,-70],[-7,-31],[-16,-8],[-18,-17],[-32,0],[-15,1],[-15,-7],[-11,-23],[-12,-19],[-13,-23],[-12,-45],[-22,-49],[-9,-22],[-40,-20],[-39,-19],[-34,-32],[-27,-38],[-12,-15],[-9,-41],[-10,-25],[-14,27],[-37,29],[-70,14],[-94,-50],[-142,-109],[-30,-32],[-195,-33],[-22,10],[-35,126],[-29,28],[-75,73],[-17,2],[-40,4],[-52,6],[-6,0],[-31,4],[-65,-42],[-77,-34],[-82,0],[-74,0],[-105,-22],[-117,-94],[-19,-16],[-69,32],[-93,104],[-20,21],[-15,11],[-18,6],[-16,-5],[-24,-4],[-17,9],[-11,27],[-6,49],[-11,21],[-32,57],[-7,13],[-24,41],[-32,116],[-17,63],[-22,4],[-39,7],[-65,30],[-96,46],[-27,13],[-59,6],[-77,-144],[-28,-49],[-73,-129],[-81,-68],[-51,-43],[-6,-5],[-29,-24]],[[37525,59081],[-369,-1],[-153,0],[-43,0],[-44,0],[-1,0],[-286,-1],[-160,13],[-123,-1],[-186,-1],[-204,0],[-125,-2],[-23,-2],[-440,0],[-680,0],[-162,3],[-22,0],[-136,2],[-152,0],[-199,-5],[-119,6],[-46,3],[-20,-1],[-201,-1],[-36,0],[-20,-2],[-64,-7],[-81,1],[-86,8],[-44,6],[-17,1],[-29,-1],[-32,-3],[-2,0],[-29,1],[-16,1],[-10,-3],[-7,-2],[-47,5],[-41,-7],[-28,3],[-135,7],[-16,0],[-340,9],[-55,1],[-67,2],[-3,0],[-103,3],[-210,6],[-3,0],[-17,1],[-15,0],[-5,0],[-90,3],[-34,1],[-5,0],[-9,0],[-53,2],[-11,0],[-12,1],[-50,1],[-12,1],[-7,0],[-27,1],[-221,8],[-416,6],[-74,1],[-117,3],[-196,4],[-460,9],[-386,7],[-160,4],[-388,7],[-62,1],[-202,4],[-56,1],[-21,0],[-90,0],[-5,0],[-23,0],[-16,0],[-16,0],[-4,0],[-21,0],[-24,0],[-44,0],[-57,-1],[-37,0],[-32,1],[-26,1],[-5,0],[-60,1],[-23,0],[-29,-3],[-24,3],[-35,-1],[-22,0],[-7,0],[-8,-1],[-121,-1],[-16,0],[-92,-1],[-34,0],[-56,0],[-323,-1],[-17,0]],[[44675,67486],[24,-46],[33,-65],[5,-44],[-23,-179],[-48,-149],[-14,-45],[-2,-111],[58,-80],[53,-42],[73,-96],[45,-22],[72,6],[22,12],[98,5],[29,-92],[12,-38],[93,-35],[54,15],[22,47],[15,33],[20,45],[11,7],[69,44],[112,27],[38,-27],[90,-195],[8,-30],[40,-202],[68,-101],[14,-12],[15,0],[25,8],[21,22],[22,17],[21,4],[25,-30],[15,-19],[37,-44],[51,-4],[78,-31],[20,17],[14,8],[17,10],[13,5],[10,-5],[8,-20],[20,-47],[9,-82],[9,-58],[18,-12],[26,15],[15,7],[21,15],[19,7],[79,-5],[101,31],[79,-6],[80,-94],[22,-19],[37,-55],[8,-58],[-1,-95],[-1,-13],[0,-41],[-1,-7],[-1,-71],[12,-26],[9,-24],[13,-19],[28,-37],[15,-24],[10,-23],[8,-27],[1,-36],[-11,-112],[-30,-41],[-55,-75],[-126,-59],[-14,-15],[-26,-59],[-73,-33],[-27,-56],[-86,-183],[-24,-19],[-96,-37],[-98,-39],[-72,14],[-53,-64],[-20,-24],[-11,-25],[-16,-16],[-14,-19],[-17,-18],[-20,-26],[0,-38],[13,-33],[12,-33],[18,-11],[15,-11],[13,-11],[21,-11],[19,-14],[13,-40]],[[46028,64142],[12,-26],[2,-30],[-3,-27],[7,-24],[10,-27],[13,-29],[10,-22],[4,-31],[15,-32],[13,-20],[21,-27],[16,-10],[36,-14],[17,1],[17,1],[6,-32],[-4,-33],[-2,-35],[-15,-18],[-14,-24],[-9,-32],[-1,-28],[2,-28],[5,-28],[7,-32],[2,-26],[5,-29],[-14,-11],[-16,-24],[-7,-36],[-8,-37],[-7,-38],[-16,-29],[-8,-27],[-14,9],[-29,12],[-17,8],[-13,12],[-16,5],[-32,-13],[-16,-16],[-17,-14],[-14,-11],[-19,-15],[-20,-16],[-16,-21],[-17,-13],[-15,-9],[-16,-5],[-15,-4],[-28,-44],[-49,13],[-20,10],[-21,10],[-21,15],[-16,17],[-19,36],[-12,26],[-15,30],[-9,24],[-20,-6],[-34,-75],[-5,-12],[-16,-35],[-7,-74],[-12,-33],[-34,-48],[-17,-44],[15,-56],[27,-36],[31,-36],[14,-17],[30,-34],[-3,-38],[34,-69],[33,-22],[9,-33],[-93,-28],[-47,-79],[-19,-68],[-12,-40],[-2,-32],[2,-25],[-29,0],[-18,15],[-17,1],[-19,-5],[-19,-16],[-14,-16],[-12,-26],[-11,-26],[-9,-21],[-14,-18],[-13,-51],[-4,-25],[5,-60],[-15,-16],[-50,8],[-19,1],[-22,-9],[-42,-10],[-17,3],[-27,-27],[1,-34],[-7,-26],[-16,-26],[-13,-36],[-34,-65],[-32,-88],[-16,-12],[-15,-49],[-9,-131],[-54,-100],[-32,-6],[-61,-49],[-65,13],[-58,10],[-30,9],[-31,10],[-18,7],[-45,-2],[-16,-10],[-40,-21],[-21,-3],[-24,12],[-26,0],[-12,-14],[-15,-34],[-12,-45],[-10,-49],[-5,-57],[8,-45],[-17,-46],[-12,-43],[0,-46],[-1,-51],[-37,-15],[-22,-10],[-35,-19],[-14,-6],[-19,-9],[-22,-12],[-20,-2],[-22,24],[-18,15],[-24,3],[-19,3],[-38,-14],[-13,-9],[-18,-22],[8,-60],[15,-61],[32,-55],[29,-55],[22,-14],[28,-7],[19,-26],[15,-23],[-1,-32],[-4,-30],[11,-70],[8,-47],[27,-94],[-6,-29],[-92,-38],[-9,-3],[-179,-73],[-28,-12],[-35,-10],[-21,-32],[-39,-17],[-18,-18],[-16,-38],[-6,-34],[-7,-24],[-15,-11],[-28,-4],[-20,4],[-14,7],[-17,6],[-15,-3],[-18,-5],[-5,-50],[-13,-51],[-11,-33],[-15,-37],[-17,-21],[-16,-5],[-18,-4],[-15,-15],[-15,-12],[-12,-14],[-23,-29],[-6,-30],[-13,-16],[-25,-25],[-17,-20],[-26,-3],[-25,-4],[-51,-42],[-14,-34],[-27,-65],[6,-42],[17,-118],[-9,-221],[-8,-24],[-57,-86],[-67,-10],[-16,-10],[-88,-59],[-31,-5],[-50,-8],[-95,-15],[-93,17],[-46,8],[-20,18],[-64,60],[-8,7],[-22,21],[-16,10],[-15,9],[-15,9],[-16,15],[-13,18],[-15,21],[-75,74],[-58,28],[-22,-23],[-20,5],[-42,9],[-39,55],[-35,51],[-62,71],[-23,27],[-57,1],[-26,0],[-150,-29],[-102,-4],[-34,20],[-41,25],[-49,9],[-18,4],[-75,15]],[[41670,59521],[-160,4],[-392,0],[-46,0],[-99,0],[-76,0],[-17,0],[-6,0],[-40,0],[-16,0],[-61,-1],[-101,-1]],[[57090,69782],[-3,-181],[0,-6],[2,-34],[0,-48],[1,-44],[-1,-43],[0,-47],[0,-48],[0,-44],[0,-43],[1,-50],[-1,-42],[1,-47],[0,-40],[-1,-48],[1,-42],[-1,-40],[1,-32],[0,-65],[2,-48],[-3,-47],[4,-25],[-3,-77],[0,-33],[0,-32],[2,-56],[0,-1],[-2,-48],[2,-47],[0,-33],[0,-54],[0,-45],[0,-43],[0,-32],[0,-38],[0,-26],[0,-3],[-2,-40],[0,-75],[0,-65],[2,-47],[0,-39],[0,-44],[0,-43],[0,-4],[-2,-40],[0,-25],[0,-42],[0,-28],[2,-30],[-2,-34],[2,-68],[0,-87],[1,-39],[0,-8],[0,-8],[-1,-37],[0,-50],[-1,-32],[-1,-65],[-81,-176],[-98,-246],[-218,3],[1,-68],[1,-82],[2,-145],[191,0],[-3,-142],[-1,-15],[-49,-175],[-80,-148],[-35,-66],[-36,17],[-69,31],[-333,-93],[2,-194],[1,-321],[183,11],[58,-13],[20,1],[2,0],[15,0],[66,0],[43,1],[49,0],[89,1],[18,0],[100,1],[82,0],[75,-4]],[[57085,65378],[0,-25],[-1,-94],[0,-27],[0,-46],[-1,-26],[0,-30],[0,-40],[0,-37],[0,-69],[0,-29],[0,-56],[-1,-54],[0,-29],[0,-45],[-1,-43],[-1,-154],[0,-38],[-1,-42],[0,-22],[0,-45],[1,-33],[-2,-30],[-1,-34],[-1,-65],[1,-56],[0,-14],[0,-22],[34,-1],[1,0],[42,-1]],[[57154,64171],[-38,-83],[-84,-13],[-40,-57],[-17,-74],[-4,-18],[-16,-9],[-10,-6],[-13,-8],[-23,-52],[-9,-54],[-2,-13],[-60,-86],[-43,-61],[-7,-61],[-14,-21],[-7,-11],[-7,-11],[-1,-4],[-19,-84],[25,-105],[-42,-163],[0,-2],[-1,-15],[0,-18],[0,-23],[-1,-21],[0,-10],[13,-122],[-14,-181],[-2,-3],[-4,-5],[-9,-7],[-9,-6],[-18,-9],[-4,-5],[-3,-6],[-2,-3],[-30,-52],[-4,-8],[-2,-6],[0,-19],[0,-7],[5,-22],[4,-17],[-3,-22],[-3,-25],[-3,-17],[-6,-17],[-1,-4],[-10,-16],[-8,-43],[-4,-20],[-1,-17],[2,-4],[13,-20],[1,-6],[1,-12],[0,-3],[-2,-7],[-5,-12],[-4,-7],[-9,-13],[-11,-10],[-8,-7],[-26,-49],[-9,-16],[-5,-10],[-3,-3],[-12,-17],[-7,-6],[-24,-23],[-24,-22],[-15,-11],[-14,-6],[-50,-19],[-17,-1],[-36,-3],[-2,0],[-38,-17],[-3,-1],[-28,-13],[-9,-4],[-34,20],[-4,-6],[-25,-40],[-2,-9],[-8,-17],[-3,-4],[-10,-13],[-14,-10],[-2,-1],[-2,0],[-1,-1],[-4,-1],[-5,3],[-22,29],[0,1],[-14,-7],[-21,-22],[-50,-51],[-14,-15],[-3,-6],[-47,-115],[-14,-90],[-3,-18],[-1,-11],[-3,-37],[4,-47],[-1,-20],[-2,-47],[1,-5],[1,-2],[11,-19],[25,-30],[4,-5],[35,-20],[2,-1],[3,-5],[8,-17],[9,-15],[14,-27],[9,-27],[3,-14],[7,-51],[6,-39],[0,-13],[0,-1],[-1,-56],[-9,-47],[-2,-9],[-10,-37],[-17,-92],[-1,-9],[0,-7],[-1,-17],[12,-62],[4,-18],[17,-38],[-33,-36],[-47,-50],[-32,-46],[-4,-6],[-8,-14],[-2,-3],[-8,-19],[-4,-18],[-20,2],[-7,0],[-4,-2],[-2,-5],[-1,-1],[-2,-3],[-2,-5],[-12,-27],[-5,-11],[-2,-9],[-5,-14],[-1,-4],[-53,-70],[-44,-41],[-106,-91],[-24,-21],[-9,-8],[-10,-7],[-21,-1],[-35,9],[-8,0],[-9,-5],[-14,-14],[-102,-106],[-9,-9],[-1,-2],[-20,-31],[-7,-19],[-1,-12],[4,-19],[3,-17],[0,-1],[15,-74],[2,-7],[31,-106],[-4,-62],[8,-23],[20,-2],[4,-12],[3,-11],[10,-32],[-22,-23],[-21,-15],[-1,-1],[-14,-10],[-21,-16],[-22,-54],[-7,-17],[-5,-105],[-6,-95],[4,-8],[31,-72],[3,-11],[30,-104],[2,-5],[13,-139],[4,-42],[2,-21],[-16,-64],[0,-2],[-1,-2],[-2,-3],[-30,-30],[-3,-2],[-6,-6],[-5,-3],[-10,-14],[-3,-10],[-1,-3],[-1,-6],[-1,-3],[-3,-16],[3,-7],[2,-10],[0,-4],[1,-26],[0,-4],[-3,-11],[-7,-12],[-57,-126],[0,-2],[-1,-25],[0,-3],[-6,-35],[-24,-108],[-4,-13],[-6,-11],[-5,-4],[-2,-2],[-3,-5],[-26,-33],[-8,-11],[-23,-49],[-3,-5],[-10,-61],[26,-23],[13,-11],[1,-1],[3,-7],[1,-14],[-3,-9],[-4,-11],[-6,-7],[-30,-16],[-5,-3],[-8,-4],[-8,-3],[-19,-5],[-4,-4],[-1,-3],[0,-1],[-2,-10],[1,-7],[3,-4],[1,-1],[15,-9],[4,-2],[4,-3],[1,-1],[5,-10],[5,-31],[0,-3],[0,-11],[-2,-5],[-3,-6],[-7,-10],[-9,-7],[-14,-9],[-10,-31],[0,-9],[0,-3],[4,-67],[0,-8],[0,-1],[-1,-6],[0,-5],[-3,-8],[-40,-74],[-12,-23],[-4,-7],[-9,-6],[-26,-16],[-6,-3],[-4,-3],[-1,2],[-2,2],[-3,2],[-2,2],[-2,2],[-3,1],[-2,1],[-3,1],[-2,0],[-3,0],[-8,0],[-3,0],[-2,0],[-3,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-4],[-1,-3],[-1,-4],[-4,-11],[35,-29],[0,-1],[11,-8],[1,-2],[0,-5],[2,-59],[0,-1],[11,-65],[5,-37],[4,-25],[-9,-16],[-1,-2],[-2,-3],[-2,-2],[-3,-3],[-2,-2],[-2,-2],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-1,0],[-14,-3],[-2,-8],[0,-1],[-6,-21],[0,-2],[-2,-4],[-1,-3],[-1,-4],[-2,-3],[-2,-4],[-1,-3],[-2,-2],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-3,-1],[-2,-1],[-3,-1],[-2,0],[-3,0],[-2,0],[-2,0],[-20,4],[-1,0],[-2,1],[-7,3],[-1,0],[-6,0],[5,-61],[2,-22],[-49,6],[-38,-2],[0,-8],[2,-37],[2,-30],[-7,-24],[-3,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-3],[-2,-4],[-1,-4],[-1,-3],[-1,-4],[-1,-5],[-1,-4],[-1,-4],[0,-3],[-2,-26],[0,-2],[-1,-4],[0,-5],[0,-4],[1,-3],[2,-37],[2,-25],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-4],[-1,-5],[0,-4],[-1,-4],[0,-4],[-1,-5],[0,-5],[-1,-2],[-1,-4],[-1,-4],[-1,-4],[0,-5],[-1,-2],[-2,-20],[-13,-24],[-1,-4],[-2,-3],[-1,-3],[-4,-13],[-4,-11],[-15,-22],[-12,-16],[-2,-2],[-1,-3],[-2,-4],[-2,-3],[-1,-4],[-1,-1],[-1,-2],[-1,-4],[-1,-3],[-4,-17],[0,-1],[-1,-4],[-1,-4],[0,-5],[-1,-4],[0,-4],[0,-5],[0,-4],[0,-5],[1,-2],[0,-1],[-18,-14],[-1,-1],[-2,-2],[-2,-2],[-2,-3],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-1,-2],[0,-2],[-1,-2],[-7,-20],[-1,-1],[-1,-4],[0,-2],[-6,-23],[-4,-16],[-1,-2],[-1,-4],[0,-4],[-1,-4],[0,-5],[-1,-4],[0,-5],[0,-8],[0,-5],[1,-4],[0,-4],[1,-5],[0,-4],[1,-4],[1,-4],[1,-4],[2,-4],[1,-3],[2,-4],[1,-2],[38,16],[9,4],[13,6],[25,10],[38,-143],[1,-15],[0,-4],[0,-5],[0,-5],[0,-5],[-1,-5],[-1,-5],[0,-5],[-65,11],[-11,-22],[-1,0],[-14,-12],[-12,-14],[-9,-1],[-7,-1],[0,-6],[0,-7],[0,-5],[0,-1],[-2,-15],[-27,11],[-2,1],[-8,3],[-62,25],[-9,-13],[-4,-7],[-13,-30],[1,-24],[0,-29],[0,-2],[-1,-10],[-2,-26],[-1,-10],[-6,-14],[-5,-4],[-4,-4],[-1,1],[-8,3],[-24,15],[-7,-16],[-14,-18],[0,-22],[0,-14],[3,-9],[10,-43],[1,-4],[0,-20],[-2,-7],[-1,-1],[-13,-31],[-11,-15],[-16,-5],[-2,-1],[-7,-3],[-42,-17],[-3,-7],[-1,-2],[-1,-3],[-2,-3],[-2,-3],[-2,-2],[-2,-3],[-3,-2],[-2,-2],[-2,-1],[-3,-1],[-2,-1],[-3,-1],[-1,0],[-12,-2],[0,-2],[-1,-4],[-1,-4],[-2,-4],[-1,-4],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-2],[-3,-2],[-2,-2],[-2,-1],[-3,-2],[-2,-1],[-3,0],[-1,-1],[-15,-2],[-3,0],[-2,0],[-3,1],[-2,0],[-3,1],[-2,2],[-2,0],[-1,1],[0,1],[-3,2],[-35,30],[-16,11],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,-7],[0,-1],[0,-4],[-1,-4],[0,-4],[-1,-5],[-1,-2],[0,-2],[-2,-3],[-1,-4],[-1,-4],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-10,-7],[-2,-6],[-12,-57],[-1,-5],[-1,-5],[-3,-9],[-21,-56],[-3,-7],[0,-1],[-45,-31],[-12,-12],[-14,-20],[-9,-18],[-8,-19],[0,-1],[0,-20],[3,-7],[18,-25],[8,-18],[4,-83],[-5,-10],[-25,-27],[0,-1],[-2,-22],[1,-8],[1,-1],[6,-15],[23,-48],[2,-2],[6,-19],[13,-112],[1,-10],[0,-3],[0,-17],[-2,-10],[0,-1],[-6,-8],[-7,-7],[-4,0],[-8,-2],[-6,-4],[-9,-21],[-3,-22],[-38,15],[-16,6],[-35,8],[-7,1],[-2,0],[-5,-2],[-6,-6],[-4,-4],[-14,-7],[-5,-2],[-13,-6],[-35,-15],[-16,-61],[-19,-74],[-46,-12],[-14,-19],[-15,-51],[-8,-38],[-17,-87],[-1,-5],[-11,-103],[-1,-49],[-1,-10],[-5,-9],[-7,-14],[-20,-37],[-12,-24],[9,-26],[12,-19],[2,-35],[2,-19],[0,-11],[-8,-24],[-22,-25],[-19,-13],[-22,-25],[-30,-30],[0,-1],[-47,-48],[-48,-49],[-5,-5],[-1,-5],[-3,-11],[-3,-19],[17,-18],[4,-22],[1,-10],[-40,-50],[-22,-27],[-1,-2],[-1,2],[-14,13],[-1,1],[-13,14],[-25,-27],[-2,-3],[-18,-18],[0,-1],[-37,-78],[-10,-20],[-25,-112],[-1,-3],[-8,-82],[2,-52],[1,-21],[3,-67],[-14,-11],[-24,2],[-34,3],[-28,2],[-1,-13],[-1,-32],[0,-1],[-1,-30],[-2,-39],[7,-39],[7,-44],[-14,-59],[-56,-90],[-27,-43],[-5,-9]],[[53163,53291],[-22,0]],[[53141,53291],[-522,-3],[-121,0],[-318,0],[2,734],[0,63],[-1,491],[0,329],[-1,155],[0,62],[0,20],[1,89],[0,43],[0,46],[-1,63],[0,43],[0,280],[0,585],[16,358],[0,13],[-18,837],[1,46],[-3,128],[0,57],[1,104],[0,55],[0,13],[0,29],[-8,260],[4,40],[-1,42],[-3,182],[0,8],[3,78],[3,166],[1,92],[-3,205],[-1,117],[0,27],[0,40],[-2,297],[9,267],[0,72],[-3,172],[0,10],[0,44],[1,176],[0,57],[0,47],[0,45],[0,63],[0,128],[0,56],[0,30],[0,52],[0,55],[0,25],[0,25],[0,27],[0,100],[0,60],[0,132],[2,25],[-1,54],[0,90],[-1,31],[-4,143],[-2,47],[-1,26],[0,43],[2,34],[3,18],[1,8],[1,32],[1,38],[0,27],[0,30],[0,53],[0,76],[0,37],[0,31],[-2,50],[0,30],[2,91],[0,33],[0,73],[-2,52],[-1,187],[0,2],[0,38],[0,41],[0,46],[-2,30],[2,150],[-2,74],[-2,274],[-1,53],[-4,217],[2,97],[0,42],[-2,412],[0,47],[-1,164]],[[52165,64174],[-1,43],[2,40],[1,11],[7,10],[1,17],[1,24],[-1,52],[-1,14],[3,42],[1,26],[-3,15],[-13,18],[1,91],[1,60],[1,79],[0,424],[1,38],[2,181],[6,124],[-4,157],[1,39],[1,52],[3,55],[-3,25],[0,29],[0,42],[0,1],[1,30],[2,28],[0,33],[0,79],[0,51],[0,40],[0,61],[0,47],[0,225],[-2,168],[0,57],[0,31],[1,37],[-1,52],[0,33],[0,63],[-1,35],[0,142],[-1,37],[-1,30],[0,170],[0,28],[0,175],[1,72],[1,33],[3,54],[-2,88],[0,40],[0,100],[1,8],[1,25],[0,200],[1,71],[0,88],[0,27],[0,80],[1,93],[2,95],[0,34],[0,6],[0,37]],[[59492,68514],[0,-3],[0,-34],[0,-36],[0,-41],[0,-36],[0,-33],[-1,-27],[0,-30],[0,-49],[0,-41],[0,-31],[61,-3],[31,0],[42,-1],[0,-58],[0,-77],[0,-30],[1,-4],[3,-7],[3,-3],[5,-4],[2,-1],[4,0],[9,0],[37,0],[0,-202],[64,22],[5,2],[0,-39],[0,-51],[0,-36],[0,-42],[-4,-3],[-26,-22],[-20,-35],[-5,-27],[-11,-55],[0,-3],[0,-49],[-63,-1],[-36,0],[-66,0],[-26,0],[-25,1],[-21,1],[-30,0],[-34,0],[-16,0],[-10,-96],[0,-2],[0,-1],[1,-81],[0,-36],[-1,-53],[-1,-2],[3,-90],[-3,-85],[-14,3],[-6,-1],[-18,-2],[-16,0],[-87,-2],[0,-48],[0,-109],[0,-27],[0,-90],[28,-1],[19,0],[20,0],[26,0],[22,0],[16,0],[30,15],[30,-15],[17,-2],[54,0],[10,0],[5,0],[17,-24],[50,-66],[10,1],[35,2],[18,-12],[119,-77],[6,-4],[34,0],[21,0],[19,0],[34,0],[34,1],[7,5],[4,7],[11,-9],[4,-3],[10,-6],[9,-4],[53,-14],[15,-5],[0,-31],[8,-3],[0,-25],[0,-2],[-24,-6],[-19,-4],[-31,-15],[-26,-20],[-18,-18],[-10,-18],[-5,-4],[-273,-224],[-44,-34],[-11,-9],[-42,-43],[-13,-11],[-16,-14],[0,-4],[0,-26],[-1,-54],[0,-75],[0,-52],[-1,-47],[0,-60],[-1,-74],[-35,-1],[-18,0],[-39,0],[-41,0],[-47,0],[-10,0],[-2,0],[-46,-3],[-4,-1],[-20,-1],[-4,3],[-1,0],[0,-1],[-8,1],[-25,2],[-32,0],[-18,0],[-30,0],[-21,-1],[2,45],[0,46],[0,54],[0,155],[0,64],[-15,21],[-23,32],[-35,48],[-12,16],[-16,22],[-11,15],[-19,24],[-71,-3],[-63,4],[-1,37],[1,53],[0,51],[0,33],[0,6],[-29,0],[-20,0],[-31,0],[-18,0],[-18,0],[-9,0],[-67,-2],[-16,-1],[-40,1],[-15,0],[-53,0],[-26,1],[14,69],[9,3],[11,2],[-4,18],[-81,0],[0,72],[0,48],[-2,0],[-50,1],[0,-3],[-1,-27],[-30,1],[-16,0],[-17,0],[-16,1],[0,40],[0,36],[0,58],[-67,0],[0,47],[-33,0],[-17,0],[-17,0],[-18,0],[-17,0],[-16,0],[-17,0],[-16,0],[-17,0],[-16,0],[-17,0],[-18,0],[-17,0],[-16,0],[-17,0],[-22,1],[-22,1],[-16,1],[-48,2],[-8,-5],[-49,-30],[-6,-21],[-2,-5],[-6,-25],[5,-92],[-74,-6],[-6,0],[-80,0],[-85,0],[-47,-1],[-131,-4],[-3,-171],[-1,-27],[0,-42],[-2,-172],[-1,-149],[-1,-159],[-154,2],[-111,1],[-1,-217],[-2,-210]],[[52165,64174],[-134,-4],[-282,-1],[-240,1],[-28,0],[-106,0],[-29,0],[-40,-1],[-23,1],[-19,0],[-16,0],[-27,1],[-23,0],[-27,2],[-236,2],[-218,-1],[-108,3],[-91,4],[-664,28],[-254,11],[-110,4],[-19,1],[-511,-29],[-24,-2],[-62,-2],[-85,-4],[-99,-3],[-150,-5],[-4,0],[-55,-1],[-14,0],[-60,-2],[-465,-16],[-379,-9],[-28,3],[-1,0],[-379,-12],[-249,0],[-52,0],[-28,0],[-19,0],[-33,0],[-6,0],[-193,0],[-547,-1]],[[76270,64178],[-27,0],[-17,0],[-60,1]],[[76166,64179],[-94,1],[-110,1],[-257,2],[-54,1],[-20,0],[-166,0],[-74,1],[-166,0],[-42,0],[-9,0],[-98,0],[-206,0],[-142,0],[-160,0],[-30,0],[-113,0],[-47,0],[-4,0],[-33,0],[-244,1],[-227,0],[-24,-1],[-76,-1],[-108,-1],[-40,-1],[-78,-1],[-138,-2],[-36,0],[-27,0],[-38,0],[-28,0],[-3,0],[-92,-1],[-189,-1],[-95,0],[-74,-1],[-26,0],[-126,1],[-147,1],[-49,1],[-4,0],[-71,0],[-47,-2],[-46,1],[-26,-4],[-178,-1],[-155,-2],[-16,0],[-23,0],[-22,-1],[-10,0],[-31,0],[-7,0],[-16,0],[-128,-1],[-25,0],[-39,0],[-119,0],[-223,0],[-84,-1],[-23,-1],[-50,-1],[-64,1],[-44,-1],[-41,-1],[-9,0],[-6,0],[-16,-1],[-15,0],[-33,0],[-3,0],[-13,0],[-61,0],[-153,-1],[-37,0],[-57,-2],[-70,-1],[-54,-1],[-27,0],[-122,-2],[-50,0],[-66,-1],[-92,0],[-107,-1],[-37,-1],[-56,0],[-39,0],[-138,-1],[-93,-1],[-16,0],[-36,1],[-32,-1],[-15,1],[-16,0],[-29,0],[-145,-2],[-65,0],[-132,-1],[-3,0],[-68,-1],[-62,0],[-38,-1],[-34,0],[-16,0],[-51,-1],[-67,0],[-66,-1],[-50,0],[-34,0],[-51,-1],[-83,-1],[-47,0],[-116,-5],[-35,-1],[-60,0],[-103,0],[-126,0],[-48,0],[-8,0],[-14,0],[-17,0],[-16,0],[-30,-1],[-24,0],[-60,-1],[-15,-1],[-41,-1],[-129,-2],[-108,-1],[-36,-1],[-20,0],[-138,1],[-125,0],[-20,0],[-23,0],[-4,0],[-13,0],[-202,-2],[-40,-2],[-16,0],[-71,-3],[-16,0],[-43,-2],[-15,-1],[-35,-1],[-30,-1],[-15,0],[-54,-1],[-52,0],[-15,0],[-126,-1],[-75,0],[-67,-1],[-67,-1],[-67,0],[-16,0],[-31,0],[-16,0],[-266,1],[-18,0],[-6,0],[-91,0],[-25,0],[-69,0],[-21,1],[-170,2],[-60,1],[-133,2],[-209,3],[-43,0],[-30,1],[-25,0],[-84,1],[-40,1],[-38,1],[-74,2],[-154,4],[-21,1],[-49,1],[-28,1],[-54,1],[-31,1],[-21,1],[-88,2],[-219,6],[-21,0],[-100,3],[-104,3],[-42,1],[-155,4],[-51,2],[-57,1],[-65,0],[-39,0],[-27,0],[-67,1],[-64,0],[-47,1],[-69,0],[-52,1],[-18,0],[-52,0],[-37,0],[-61,1],[-44,0],[-19,0],[-133,1]],[[62685,64168],[-71,0],[-61,0],[-91,1],[-48,1],[-26,0],[-79,0],[-80,0],[-211,0],[-17,0],[-17,0],[-39,0],[-91,0],[-29,0],[-64,-2],[-141,0],[-19,0],[-46,2],[-25,0],[-39,0],[-76,3],[-136,0],[-53,0],[-42,0],[-18,0],[-11,0],[-101,0],[-148,0],[-2,0],[-82,0],[-2,-1],[-38,-2],[-79,-2],[-27,0],[-69,2],[-54,3],[-42,-3],[-134,0],[-106,0],[-43,0],[-20,0],[-90,0],[-23,0],[-18,0],[-28,0],[-15,0],[-22,0],[-102,0],[-30,1],[-46,1],[-75,-1],[-18,-1],[-27,0],[-18,0],[-27,0],[-4,0],[-21,1],[-17,0],[-17,1],[-36,0],[-24,0],[-34,0],[-44,0],[-23,0],[-17,-1],[-19,0],[-19,0],[-14,0],[-22,0],[-17,0],[-20,0],[-18,0],[-19,0],[-18,0],[-38,0],[-24,0],[-29,0],[-28,0],[-16,0],[-27,0],[-31,1],[-60,0],[-70,0],[-19,0],[-65,0],[-11,0],[-14,0],[-30,0],[-30,0],[-26,0],[-70,0],[-47,0],[-20,0],[-56,1],[-31,0],[-19,0],[-71,1],[-23,0],[-6,0],[-40,0],[-17,0],[-76,-1],[-21,0],[-21,1],[-23,0],[-37,0],[-25,-1],[-16,0],[-16,1],[-24,0],[-15,0],[-36,0],[-26,-1],[-30,1],[-17,0],[-20,-1],[-19,-4],[-21,-9],[-64,9],[-22,7],[-14,-1],[-30,0],[-58,-2],[-29,-1],[-17,0],[-59,4],[-46,0],[-28,-2],[-60,1],[-34,1],[-20,-2],[-18,-1],[-18,0],[-1,0],[-17,2],[-28,0],[-21,0],[-24,0],[-25,-2],[-3,0],[-6,0],[-51,0],[-6,-1],[-52,-1]],[[99882,64371],[0,-146],[3,-1157],[5,-1956],[2,-499],[8,-2266],[1,-70],[0,-135],[9,-2253],[2,-478],[1,-400],[6,-1509],[1,-125],[0,-85],[7,-1733],[1,-329]],[[99928,51230],[-201,1],[-380,-8],[-74,0],[-13,0],[-44,-1],[-261,-3],[-149,1],[-50,-1],[-18,-1],[-361,-1],[-36,0],[-118,-1],[-23,0],[-135,-1],[-51,0],[-63,-1],[-137,-1],[-133,-2],[-77,-1],[-36,1],[-47,0],[-29,0],[-76,2],[-62,1],[-141,0],[-101,-1],[-17,0],[-45,0],[-36,0],[-84,0],[-50,1],[-22,-1],[-221,0],[-20,0],[-2,0],[-39,0],[-15,0],[-122,-2],[-16,-2],[-73,0],[-63,-1],[-81,-2],[-19,1],[-40,-2],[-56,0],[-46,-1],[-16,-1],[-32,0],[-16,0],[-31,-1],[-38,0],[-23,0],[-74,-1],[-85,-3],[-69,-1],[-61,-1],[-30,0],[-22,0],[-196,-1],[-110,-19],[-432,-15],[-49,-2],[-28,-2],[-18,2],[-32,0],[-15,0],[-66,0],[-55,-3],[-139,-10],[-189,-18],[-102,-4],[-163,-1],[-131,-8],[-346,-18],[-49,-3],[-129,-4],[-116,-1],[-353,-9],[-84,-2],[-19,-1],[-23,-1],[-48,-1],[-16,-1],[-268,-2],[-79,-2],[-45,-1],[-17,-5],[-3,0],[-82,-2],[-21,0],[-23,-1],[-18,0],[-28,-1],[-197,-5],[-179,-4],[-90,-2],[-267,-3],[-24,-1],[-52,-1],[-51,-1],[-48,-1],[-90,-1],[-259,-10],[-275,-6],[-91,-2],[-39,-1],[-119,38],[-267,-4],[-109,-2],[-115,-1],[-308,-3],[-265,-2],[-262,2],[-66,-1],[-390,-7],[-30,-1],[-95,-3],[-129,0],[-70,1],[-51,-1],[-31,1],[-574,-3],[-345,1],[-28,0],[-48,0],[-57,0],[-360,1],[-164,0],[-72,0],[-23,1],[-71,0],[-26,0],[-81,0],[-35,0],[-269,1],[-48,0],[-95,0],[-12,1],[-3,0],[-37,0],[-96,0],[-14,0],[-16,3],[-95,-3],[-5,0],[-167,-4],[-17,-1],[-330,-8],[-60,-3],[-21,-1],[-69,0],[-106,-5],[-40,-2],[-41,0],[-18,1],[-25,0],[-61,2],[-59,-4],[-132,-5],[-25,-1],[-95,-4],[-46,-1],[-59,-4],[-63,-3],[-58,-3]],[[84021,50995],[0,87],[-1,370],[-1,567],[0,14],[0,34],[2,113],[-2,260],[0,32],[1,159],[0,252],[1,189],[0,12],[0,90],[-2,17],[1,19],[1,39],[111,0],[1,196],[1,150],[0,627],[0,126],[0,33],[0,119],[1,550],[1,362],[1,236],[-1,116],[-1,83],[-2,293],[1,151],[0,205],[0,59],[-1,238],[0,75],[0,117],[0,80],[0,110],[0,25],[0,1],[0,27],[0,11],[0,17],[0,23],[1,317],[1,350],[0,206],[0,46],[0,122],[0,74],[0,286],[1,553],[0,142],[-2,31],[-1,72],[-1,278],[5,375],[1,358],[0,362],[1,362],[1,310],[0,56],[0,120],[0,240],[-1,249],[0,45],[0,69],[1,222],[-2,34],[1,30],[1,28],[0,45],[1,60],[0,10],[0,16],[1,38],[0,2],[1,25],[0,8],[-2,44],[0,81],[1,79],[0,63],[1,300],[1,285],[0,81],[0,288],[0,121]],[[62685,64168],[-1,-130],[-1,-175],[-1,-93],[-4,-233],[0,-57],[-1,-63],[-3,-204],[0,-73],[-1,-77],[0,-150],[-2,-35],[0,-74],[-1,-103],[-1,-31],[-1,-88],[-1,-58],[-1,-50],[0,-45],[0,-30],[-1,-42],[0,-27],[0,-37],[0,-34],[0,-27],[-1,-44],[0,-58],[-1,-59],[0,-44],[0,-44],[-2,-34],[1,-85],[-2,-174],[-1,-72],[-2,-120],[0,-4],[-4,-238],[1,-367],[1,-123],[-1,-43],[2,-249],[0,-192],[-1,-32],[-3,-325],[0,-54],[-1,-64],[0,-135],[-2,-264],[-2,-198],[0,-126],[0,-103],[-2,-190],[2,-169],[0,-433],[0,-194],[0,-360],[0,-182],[0,-181],[1,-907],[-1,-86],[5,-92],[-1,-287],[0,-437],[0,-32],[0,-1],[0,-127],[0,-6],[0,-60],[-1,-313],[0,-59],[0,-74],[0,-55],[0,-102],[1,-258],[0,-274],[0,-85],[1,-93],[1,-143],[-1,-47],[-1,-137],[-1,-308]],[[62650,53289],[-32,1],[-75,-5],[-70,1],[-15,1],[-32,0],[-6,0],[-105,2],[-58,0],[-29,0],[-131,1],[-93,-1],[-35,0],[-23,0],[-30,0],[-70,0],[-23,0],[-65,1],[-31,0],[-27,0],[-44,0],[-22,1],[-17,0],[-17,0],[-29,0],[-15,0],[-37,1],[-77,-1],[-32,0],[-17,1],[-25,0],[-52,1],[-57,-1],[-30,0],[-40,-1],[-15,-1],[-12,0],[-35,1],[-66,0],[-1,0],[-78,0],[-65,0],[-21,0],[-53,0],[-26,0],[-35,0],[-74,1],[-33,0],[-40,1],[-67,0],[-15,1],[-38,0],[-18,0],[-98,0],[-41,-1],[-28,0],[-66,0],[-24,0],[-28,1],[-16,2],[-41,0],[-54,1],[-19,-1],[-109,0],[-94,-1],[-46,0],[-33,-1],[-10,0],[-11,0],[-43,0],[-99,0],[-15,0],[-29,0],[-29,0],[-93,0],[-140,0],[-69,0],[-7,0],[-32,0],[-15,0],[-10,1],[-44,0],[-9,0],[-18,0],[-30,0],[-17,0],[-18,0],[-126,0],[-30,0],[-235,0],[-43,0],[-660,1],[-32,1],[-95,0],[-285,-2],[-128,0],[-57,-1]],[[57371,53294],[-223,-1],[-83,0],[-691,-4],[-8,0],[-34,0],[-250,-2],[-22,-1],[-132,0],[-55,0],[-125,0],[-210,0],[-4,0],[-143,1],[-379,1],[-36,0],[-283,1],[-196,0],[-9,0],[-158,0],[-51,-1],[-96,0],[-32,0],[-227,0],[-145,3],[-320,0],[-59,0],[-72,0],[-165,0]],[[76166,64179],[2,-271],[1,-168],[0,-31],[0,-27],[-1,-54],[-2,-254],[0,-149],[0,-76],[0,-201],[0,-110],[0,-34],[0,-152],[1,-128],[-3,-203],[0,-30],[1,-141],[-1,-26],[-1,-196],[-1,-90],[0,-124],[-2,-137],[0,-63],[0,-32],[0,-91],[-2,-185],[-1,-181],[0,-45],[-1,-109],[0,-40],[0,-117],[-2,-232],[-1,-279],[0,-85],[0,-101],[0,-29],[0,-82],[0,-11],[0,-134],[0,-225],[0,-128],[6,-28],[0,-205],[0,-101],[0,-79],[1,-165],[0,-55],[0,-97],[0,-30],[-2,-295],[0,-38],[0,-45],[-1,-122],[-1,-215],[0,-149],[-1,-26],[-5,-162],[3,-155],[1,-45],[2,-87],[1,-69],[1,-38],[0,-34],[0,-126],[0,-68],[0,-72],[0,-26],[0,-28],[0,-30],[0,-36],[0,-2],[0,-33],[0,-32],[0,-7],[-1,-48],[0,-9],[0,-24],[0,-129],[-1,-207],[1,-54],[1,-106],[-2,-367],[-1,-337],[0,-203],[-1,-146],[3,-394],[1,-93],[-3,-91],[1,-41],[0,-84],[0,-33],[-1,-26],[0,-32],[0,-27],[0,-63],[-1,-40],[-1,-100],[0,-38],[0,-28],[-1,-557],[1,-44],[0,-77],[0,-52],[-84,-3],[2,-81],[2,-58],[1,-69],[1,-64],[-1,-29],[0,-35],[0,-39],[1,-57],[-1,-27],[0,-28],[1,-65],[-1,-183],[-8,-171],[-6,-112],[-1,-44],[-2,-39],[3,-108],[4,-202],[1,-32],[0,-4],[4,-182],[3,-193],[0,-77],[0,-146],[1,-94],[0,-59],[0,-165],[-1,-87],[1,-96],[-1,-375],[-1,-52],[-3,-137],[-3,-88],[0,-67],[1,-145],[1,-125],[0,-95],[1,-154],[1,-137],[0,-2],[2,-217],[2,-277],[3,-309],[1,-46],[0,-41],[0,-69],[2,-193],[4,-475],[1,-60],[0,-1],[3,-276],[6,-389],[0,-1],[1,-37],[-4,-204],[-110,-3],[-327,-7],[-110,3],[-72,0],[-27,-1],[-148,5],[-25,0],[-28,1],[-103,0],[-52,1],[-18,-1],[-16,1],[-23,0],[-273,2],[-86,1],[-169,1],[-26,0],[-81,0],[-197,-1],[-66,2],[-23,1],[-29,0],[-17,-5],[-18,8],[-17,-1],[-20,2],[-16,1],[-51,1],[-132,7],[-22,0],[-57,1],[-21,0],[-15,1],[-85,1],[-192,4],[-118,3],[-115,2],[-241,5],[-65,1],[-4,0],[-48,1],[-161,3],[-31,1],[-209,4],[-48,1],[-16,2],[-78,0],[-177,1],[-22,0],[-22,0],[-85,-1],[-135,0],[-41,1],[-72,0],[-127,0],[-26,1],[-29,0],[-35,0],[-61,0],[-15,0],[-93,1],[-39,-2]],[[71305,46786],[1,34],[2,121],[3,208],[5,352],[1,55],[0,42],[7,386],[0,1],[4,268],[5,339],[3,125],[2,156],[0,2],[0,36],[-1,171],[0,1],[0,90],[1,260],[-4,244],[1,236],[-1,46],[0,67],[2,49],[0,137],[0,93],[0,83],[0,327],[0,33],[-1,220],[1,141],[2,145],[4,217],[2,289],[2,43],[-1,28],[7,583],[2,58],[1,365],[1,68],[2,105],[4,164],[0,82],[-83,0],[-101,0],[-80,0],[-74,2],[-38,2],[-150,-3],[-192,3],[-60,1],[-276,4],[-36,0],[-178,0],[-1,0],[-51,0],[-222,1],[-17,0],[-97,-4],[-1,0],[-47,-2],[-21,-1],[-22,0],[-90,8],[-274,-3],[-33,1],[-223,4],[-220,1],[-45,2],[-69,-2],[-76,-3],[-58,0],[-66,0],[-129,-1],[-144,1],[-22,0],[-236,1],[-72,1],[-84,2],[-43,1],[-62,2],[-130,-1],[-107,-1],[-28,0],[-265,-2],[-393,4],[-15,0],[-133,2],[-265,2],[-488,5],[-48,0],[-126,1],[-11,1],[-137,2],[-24,2],[-17,5],[-187,1],[-89,-2],[-37,-1],[-30,-1],[-75,-2],[-28,-1],[-24,0],[-39,0],[-8,0],[-64,-1],[-24,0],[-600,-3],[-14,0],[-28,1],[-2,0],[-141,0],[-364,1],[-27,-1],[-33,0],[-1,0],[-39,-1],[-117,0],[-68,0],[-42,0],[-53,-1],[-70,3],[-106,0],[-24,-1],[-33,2],[-62,2],[-28,-3],[-52,-1],[-46,2],[-23,0],[-80,0],[-92,1],[-44,1],[-38,0]],[[84021,50995],[0,-90],[0,-130],[1,-517],[-1,-168],[-1,-33],[0,-45],[0,-239],[0,-107],[0,-99],[-1,-359],[-1,-432],[0,-322],[-1,-198],[-1,-298],[0,-34],[0,-67],[0,-208],[0,-7],[0,-144],[-1,-285],[0,-72],[0,-201],[-4,-246],[0,-6],[0,-129],[0,-6],[0,-52],[0,-175],[1,-20],[0,-9],[0,-55],[0,-26],[0,-64],[-1,-167],[0,-26],[-1,-496],[0,-608],[0,-716],[0,-90],[0,-124],[0,-101],[-1,-157],[-3,-453],[0,-501],[-1,-382],[-87,-1],[-31,-1],[-1,-253],[0,-105],[0,-7],[0,-19],[0,-112],[-1,-474],[0,-309],[0,-207],[0,-41],[-2,-94],[-3,-314]],[[83880,40394],[-2,-728],[1,-90],[-1,-83],[0,-163],[0,-41],[0,-80],[1,-88],[0,-174],[1,-521],[1,-173],[0,-31],[-16,-1],[-88,-2],[-33,0],[-48,-1],[-16,-1],[-59,-1],[-33,-2],[-20,-1],[-49,-2],[-28,0],[-56,-2],[-67,-2],[-50,-2],[-28,-1],[-25,0],[-26,-1],[-17,0],[-23,-1],[-101,-4],[-22,-2],[-73,-4],[-16,-1],[-29,-1],[-40,-1],[-24,0],[-57,-2],[-63,-7],[-456,0],[-19,-1],[-66,0],[-213,0],[-282,1],[-170,0],[-19,0],[-25,0],[-132,1],[-69,0],[-65,0],[-206,-7],[-58,2],[-30,-1],[-16,-2],[-20,0],[-18,-1],[-37,0],[-21,0],[-44,1],[-43,0],[-19,0],[-30,0],[-13,0],[-16,0],[-34,0],[-51,1],[-119,1],[-217,1],[-269,5],[-17,0],[-27,1],[-89,2],[-69,0],[-45,-3],[-57,0],[-269,4],[-19,0],[-77,1],[-12,0],[-96,-3],[-14,0],[-52,-3],[0,-181]],[[79154,37999],[-19,1],[-14,0],[-53,2],[-119,2],[-691,17],[-41,1],[-50,1],[-64,1],[-172,5],[-38,0],[-19,1],[-28,1],[-20,0],[-216,5],[0,117],[-178,0],[-219,1],[-110,0],[-98,-2],[-235,-6],[-30,-1],[-34,0],[-21,-1],[-23,2],[-36,4],[-37,-1],[-27,-1],[-16,0],[-18,0],[-55,-1],[-31,-1],[-32,0],[-33,-1],[-66,0],[-15,0],[-1,0],[-17,-8],[-31,1],[-68,-4],[-20,-2],[-32,-3],[-28,5],[-206,3],[-75,2],[-172,6],[-142,-3],[-35,-1],[-92,1],[-86,-6],[-11,0],[-23,-1],[-15,-2],[-35,0],[-215,2],[-36,0],[-287,2],[-19,0],[-48,0],[-99,1],[-28,0],[-32,0],[-92,1],[-142,0],[-298,3],[-41,16],[-63,0],[-22,-1],[-60,-2],[-38,2],[-21,-1],[-17,1],[-44,3],[-19,4],[-14,-3],[-21,-2],[-19,-5],[-52,6],[-48,1],[-51,10],[-133,-4],[-15,0],[-19,0],[-15,0],[-18,0],[-23,-1],[-85,2],[-89,0],[-127,1],[-11,0],[-7,1],[-57,-4],[-51,3],[-97,0],[-154,-6],[-15,0],[-48,-2],[-33,-1],[-16,0],[-59,-2],[-199,-1],[-21,-1],[-239,-2],[-28,-1],[-58,-2],[-91,-3],[-25,0],[-43,-1],[-24,-2],[-15,6],[-40,-5],[-19,1],[-74,2],[-44,0],[-61,0]],[[71328,38149],[-4,72],[0,105],[-1,105],[0,104],[0,123],[0,26],[0,32],[0,31],[0,61],[1,63],[0,36],[-1,52],[1,201],[-1,266],[4,164],[-2,175],[-1,27],[0,107],[-2,68],[1,238],[1,257],[1,211],[1,33],[0,342],[5,356],[1,191],[1,52],[1,47],[0,31],[0,38],[1,198],[1,73],[0,41],[1,44],[4,317],[15,0],[-7,371],[-10,546],[-1,126],[0,2],[-1,39],[-10,550],[-4,414],[0,51],[0,37],[-2,32],[-2,29],[0,52],[-1,132],[0,18],[0,97],[-1,48],[0,68],[-1,155],[-1,146],[-2,362],[0,37],[-1,138],[0,87],[-1,6],[0,84],[0,4],[-1,100],[0,58],[-1,53],[0,107],[0,25],[-1,66],[0,39],[-1,35],[-1,122],[-1,114]],[[53141,53291],[0,-117],[-3,-110],[0,-3],[1,-52],[0,-53],[0,-103],[1,-58],[0,-84],[2,-366],[1,-205],[4,-852],[2,-383],[1,-67],[4,-781],[-1,-29],[1,-143],[0,-54],[3,-500],[1,-114],[1,-148],[0,-75],[1,-116],[0,-28],[0,-36],[2,-198],[3,-458],[0,-107],[2,-219],[1,-189],[0,-26],[1,-195],[1,-26],[0,-37],[0,-53],[3,-365],[-13,-150],[3,-33],[-1,-248],[2,-1041],[-3,-118],[0,-31],[-1,-313],[-1,-110],[0,-236],[0,-94],[0,-205],[0,-3],[0,-96],[1,-122],[0,-49],[0,-58],[0,-53],[0,-30],[0,-127],[4,-135],[-1,-221],[0,-25],[0,-84],[-1,-119],[0,-260],[-1,-251],[0,-3],[-2,-218]],[[53159,42508],[-661,7],[-237,1],[-617,0],[-184,1],[-76,-2],[-15,0],[-110,-1],[-147,-3],[-91,-1],[-67,-1],[-64,-1],[-140,-3],[-33,-12],[-140,-3],[-8,0],[-50,2],[-243,-16],[-559,-2],[-137,1],[-57,-1],[-416,-13],[-37,2],[-134,-3],[-78,-2],[-51,-2],[-211,-3],[-256,-5],[-305,-2],[-92,0],[-97,-1],[-31,0],[-66,0],[-66,-1],[-27,0],[-163,-2],[-111,0],[-28,0],[-135,0],[-64,3],[-128,-3],[-225,1],[-28,0],[-262,-1],[-258,-2],[-171,-4],[-7,-1],[-25,0],[-209,-6],[-101,-3],[-15,0],[-123,1],[-229,8],[-64,-3],[-22,-1],[-104,25],[-78,-20],[-57,-14],[-60,-1],[-260,-6],[-298,-9],[-39,-1],[-178,6],[-182,5]],[[44032,42416],[-3,34],[14,57],[76,103],[26,118],[125,190],[98,76],[-11,49],[-9,38],[21,36],[38,37],[-20,130],[22,100],[-8,69],[-6,48],[-52,116],[5,32],[78,45],[11,20],[1,55],[9,56],[14,40],[12,33],[10,34],[2,42],[-7,75],[-4,100],[-7,26],[-23,40],[-29,33],[15,77],[29,37],[36,13],[14,-12],[30,6],[21,9],[18,13],[18,29],[13,20],[0,29],[-5,34],[-12,26],[10,26],[1,33],[17,23],[11,17],[27,4],[6,32],[9,52],[15,12],[74,97],[48,7],[10,19],[8,37],[41,197],[62,157],[-58,127],[-8,28],[-26,42],[-34,53],[-70,108],[-12,20],[-58,90],[-137,215],[-4,5],[-94,148],[2,36],[22,42],[13,42],[-1,43],[-5,29],[-13,28],[-17,21],[-16,11],[-5,32],[6,25],[12,24],[14,29],[21,42],[12,20],[13,16],[27,20],[22,19],[19,37],[10,35],[-2,36],[1,27],[8,25],[16,17],[22,-19],[19,72],[36,74],[-17,54],[-16,6],[-30,3],[-15,5],[-18,51],[-14,41],[-14,25],[-16,27],[-13,29],[-22,25],[-14,17],[-18,27],[-11,22],[-20,13],[-33,-18],[-29,-24],[-23,-17],[-17,-4],[-39,12],[-15,7],[-23,8],[-16,-10],[-37,15],[-22,14],[-22,12],[-16,8],[-14,8],[-22,-3],[-21,-18],[-19,-16],[-40,-35],[-53,-18],[-11,32],[-19,19],[-15,33],[-7,31],[-17,46],[-4,36],[-4,34],[-1,31],[5,39],[22,14],[32,19],[23,20],[11,42],[12,23],[21,19],[17,6],[16,11],[10,55],[1,37],[18,22],[12,15],[-18,8],[-14,30],[-12,21],[-21,14],[-23,3],[-11,15],[-22,4],[-14,11],[-20,12],[9,30],[-12,28],[5,27],[-19,15],[-19,-3],[-15,5],[-15,26],[-23,18],[-19,10],[-15,24],[-30,-7],[-32,-20],[-33,-25],[-36,-22],[-21,-1],[-24,9],[-24,28],[5,35],[-10,29],[-40,55],[-31,36],[-25,39],[-26,59],[-32,34],[-30,46],[-35,76],[-43,43],[-35,5],[-59,104],[-23,57],[-27,43],[-51,-22],[-73,-32],[-177,58],[-34,12],[-94,-42],[-2,-49],[-26,-67],[-20,-12],[-27,-24],[-17,-31],[-3,-44],[-14,-20],[-65,6],[-14,41],[-36,25],[-31,-5],[-123,121],[-42,-33],[-41,-39],[-42,36],[-142,45],[-106,8],[-24,32],[-2,37],[-4,54],[4,42],[7,57],[4,47],[-20,47],[-1,38],[-4,26],[39,58],[-12,27],[-4,36],[10,25],[12,21],[33,35],[19,72],[14,53],[15,60],[2,29],[6,34],[-73,313],[-30,26],[-23,21],[-90,44],[-53,42],[-107,84],[-100,0],[-87,51],[-81,8],[-117,-69],[-26,-1],[-13,15],[-73,-59],[-15,1],[-89,126],[-26,46],[-3,6],[-20,35],[-8,60],[-27,183],[-50,24],[-15,1],[-22,20],[-10,41],[-6,34],[-22,-5],[-19,8],[-22,15],[-22,18],[-13,17],[-4,35],[10,21],[15,4],[24,19],[-1,39],[-20,85],[-3,29],[-7,38],[6,34],[36,76],[59,82],[32,44],[1,35],[-7,29],[-9,30],[-12,29],[-12,27],[-5,68],[5,34],[6,25],[3,30],[-10,29],[-13,18],[-22,22],[-14,15],[-17,21],[-13,40]],[[40880,51457],[-1,43],[-3,67],[-5,174],[5,23],[40,40],[28,40],[-4,37],[3,26],[22,42],[21,15],[16,3],[57,77],[80,107],[21,48],[21,50],[-10,118],[-12,43],[-16,63],[-86,160],[-19,3],[-48,0],[-40,5],[-25,3],[-26,-17],[-19,-4],[-28,4],[-138,0],[-37,0],[-36,1],[-19,65],[14,44],[9,32],[8,31],[50,65],[73,93],[97,113],[23,-2],[17,6],[10,33],[5,56],[25,56],[-2,50],[23,12],[30,24],[5,30],[11,19],[39,63],[33,30],[32,27],[11,26],[-5,30],[-11,27],[-9,26],[7,30],[12,24],[-18,110],[-4,83],[-2,75],[-2,49],[-20,70],[-30,105],[-8,43],[12,23],[5,39],[1,34],[-3,38],[-1,51],[0,53],[-11,35],[-15,35],[-18,32],[-18,43],[-8,51],[-16,49],[-15,54],[13,27],[34,50],[10,29],[22,42],[9,24],[-6,35],[2,40],[2,35],[0,52],[-11,63],[-15,56],[-31,49],[-2,6],[7,71],[55,62],[15,170],[56,40],[30,27],[29,30],[7,65],[-4,62],[15,16],[8,49],[-7,32],[-10,44],[-24,44],[-25,32],[-55,44],[-44,22],[-41,4],[-17,22],[-9,29],[-7,26],[10,18],[13,24],[20,51],[18,38],[-5,105],[7,163],[4,30],[-1,30],[-9,29],[-8,26],[1,36],[-3,32],[-20,46],[-13,24],[-11,56],[-11,55],[0,38],[-5,47],[-6,29],[-4,32],[6,38],[12,39],[7,29],[-5,38],[4,42],[19,32],[12,26],[14,29],[-9,39],[-1,35],[12,74],[8,46],[-17,55],[-16,140],[-3,114],[26,24],[54,10],[24,11],[14,40],[8,58],[1,27],[9,30],[15,28],[17,17],[17,27],[18,26],[95,-17],[53,-10],[97,-17],[14,6],[5,47],[6,44],[7,26],[15,27],[16,16],[28,84],[52,160],[20,36],[8,18],[-4,27],[-10,19],[-31,55],[-14,43],[-37,110],[-16,180],[-5,53],[-32,28],[-18,37],[-9,21],[5,39],[14,29],[10,29],[10,27],[10,22],[35,2],[17,2],[16,1],[39,47],[41,50],[4,43],[1,32],[8,33],[5,27],[11,28],[17,25]],[[40880,51457],[-579,8],[-211,-2],[-24,1],[-35,0],[-33,0],[-186,1],[-31,-1],[-33,0],[-17,0],[-11,0],[-6,0],[-18,0],[-262,1],[-61,0],[-170,-7],[-196,2],[-352,5],[-308,1],[-97,-5],[-192,0],[-974,16],[-536,8],[-79,6],[-134,1],[-968,9]],[[35367,51501],[2,45],[8,161],[-33,235],[1,49],[18,42],[-4,32],[-23,31],[-45,30],[-23,47],[-21,72],[4,71],[-1,87],[34,96],[32,71],[17,35],[24,17],[29,29],[180,51],[9,30],[-6,48],[-17,120],[15,44],[46,53],[36,58],[0,44],[-3,56],[-11,19],[-61,154],[-7,17],[3,57],[6,13],[4,9],[24,49],[11,24],[24,141],[-9,33],[-18,69],[-24,90],[14,92],[38,38],[77,92],[84,-4],[65,-29],[2,-1],[50,-22],[17,1],[16,23],[12,13],[1,35],[2,28],[5,26],[15,3],[45,-45],[60,-12],[130,-4],[72,53],[62,97],[-4,48],[-2,13],[-9,111],[-1,32],[21,61],[12,24],[23,11],[14,7],[31,35],[29,55],[34,251],[47,93],[5,89],[4,73],[5,56],[-13,123],[23,161],[12,84],[6,40],[16,106],[-8,83],[-34,39],[-36,40],[-37,78],[18,165],[12,33],[85,100],[25,30],[31,81],[0,2],[9,23],[16,43],[38,98],[9,71],[-31,119],[5,165],[-60,7],[-28,4],[-27,52],[-15,26],[-51,67],[-51,68],[-44,60],[-22,80],[18,104],[2,110],[47,140],[40,24],[65,38],[51,108],[36,79],[126,70],[21,-14],[10,-67],[21,-33],[23,-37],[60,3],[16,26],[31,50],[30,17],[30,16],[42,-1],[56,-1],[15,60],[60,41],[112,-4],[121,4],[68,194],[-20,93],[-30,183],[-28,26],[-12,41],[-16,55],[-6,155],[14,78],[26,143],[44,84],[40,75]],[[23214,59188],[16,-54],[13,-18],[6,-33],[-3,-36],[-7,-33],[6,-44],[-1,-31],[-11,-32],[-12,-28],[3,-113],[-16,-39],[-25,-18],[-21,-2],[-14,1],[-17,-14],[-10,-31],[-20,-46],[8,-26],[-3,-30],[-17,-17],[-18,-3],[-19,-19],[-16,-24],[-10,-37],[-20,-44],[-19,-23],[-22,-19],[-23,-23],[-6,-27],[-5,-38],[-25,-21],[-24,-6],[-18,11],[-23,-8],[-18,-14],[-24,-9],[-26,-15],[-12,-15],[3,-31],[-13,-36],[-13,-20],[-14,-20],[-6,-22],[13,-22],[11,-25],[-1,-29],[11,-28],[-2,-29],[-13,-25],[-9,-30],[19,-6],[14,-5],[14,-11],[10,-19],[9,-25],[13,-35],[14,-11],[22,-13],[-1,-30],[8,-27],[17,-5],[20,-16],[25,-31],[17,-12],[18,4],[9,21],[16,7],[16,14],[14,36],[8,21],[18,2],[18,-2],[19,-1],[15,-1],[15,14],[10,-24],[13,-34],[-5,-41],[-9,-22],[-10,-17],[-3,-34],[13,-16],[12,-22],[14,-31],[22,-2],[15,-18],[21,5],[23,7],[22,-10],[23,-7],[40,-13],[32,-18],[25,-6],[23,-30],[25,-28],[20,-9],[20,-9],[16,-26],[18,-22],[18,16],[16,12],[13,16],[16,6],[20,-21],[27,-8],[15,2],[14,9],[25,20],[26,22],[16,4],[17,-13],[1,-34],[-10,-43],[15,-18],[5,-29],[-4,-45],[2,-33],[-6,-27],[-4,-32],[8,-25],[12,-17],[18,-12],[8,-25],[-6,-26],[12,-14],[18,-1],[28,-7],[26,-15],[17,-11],[15,-16],[22,-25],[18,-18],[15,-9],[23,9],[18,1],[14,-18],[9,-37],[3,-28],[-7,-35],[-9,-23],[-19,-32],[-14,-10],[-20,-7],[-29,-13],[-39,-40],[-37,-27],[-25,-21],[-3,-31],[4,-33],[-4,-28],[-23,-23],[-8,-23],[-9,-25],[0,-25]],[[23733,56449],[-13,-15],[-27,-40],[-19,-17],[-24,-12],[-35,19],[-19,4],[-18,-4],[-26,-8],[-17,11],[-13,15],[-20,1],[-27,-2],[-23,22],[-18,9],[-33,5],[-15,-7],[-20,-5],[-18,3],[-14,12],[-22,8],[-5,24],[-16,8],[-20,4],[-16,-3],[-16,-6],[-14,-15],[4,-36],[2,-41],[-5,-29],[4,-24],[6,-24],[-11,-31],[-7,-28],[1,-40],[6,-29],[5,-34],[9,-47],[-8,-30],[-13,-17],[-18,-10],[-22,-5],[-20,-9],[-19,-14],[-14,-19],[-15,-9],[-18,-18],[-33,-10],[-15,-2],[-7,-24],[-12,-30],[-13,-12],[-18,-14],[-26,-14],[-23,-11],[-15,-22],[-15,-22],[-20,-7],[-16,0],[-19,-7],[-17,-10],[-23,-4],[-15,11],[-18,11],[-20,-25],[-17,-21],[-18,2],[-18,4],[-18,-2],[-15,-1],[-18,-1],[-18,14],[-15,2],[-19,-1],[-15,-1],[-18,8],[-17,20],[-16,16],[-2,25],[-6,23],[-12,26],[-17,3],[-17,16],[-12,21],[-15,5],[-13,-17],[-5,-27],[-1,-34],[-9,-21],[-2,-28],[-2,-35],[-7,-27],[-8,-30],[-13,-30],[-18,-27],[-14,-20],[-17,-21],[-16,-21],[-11,-33],[-10,-28],[-10,-29],[-18,-11],[-25,-13],[-15,3],[-27,9]],[[22223,55492],[-14,-4],[-18,-11],[-18,1],[-20,-8],[-13,-15],[-25,7],[-18,-2],[-19,-11],[-16,-14],[-14,-26],[-15,-16],[-12,-29],[-14,-29],[-11,-26],[-15,-24],[-12,-22],[-9,-21],[-13,-26],[-12,-15],[-20,-6],[-16,-9],[-17,-23],[-18,-10],[-18,-9],[-18,-13],[-11,-21],[9,-19],[15,-12],[19,-20],[7,-21],[10,-21],[15,-16],[-23,4],[-16,7],[-14,6],[-14,2],[-17,1],[-22,1],[-18,-4],[-20,-3],[-22,-7],[-14,-7],[-18,-9],[-13,-11],[-21,-14],[-16,-12],[-17,-17],[-11,-20],[-7,-26],[8,-33],[3,-40],[-4,-40],[-4,-32],[-6,-28],[1,-27],[20,-25],[0,-30],[-3,-31],[-29,-18],[-15,-4],[-20,-3],[-22,-4],[-19,-9],[-21,-20],[-16,-13],[-17,-8],[-14,-10],[-20,-8],[-20,-5],[-16,-1],[-17,2],[-15,1],[-12,13],[-15,16],[-16,15],[-29,20],[-22,11],[-17,-5],[-16,-24],[-6,-28],[-9,-31],[-11,-16],[-20,-22],[-18,-14],[-18,-10],[-15,-9],[-14,-6],[-27,-2],[-26,-5],[-17,-8],[-17,-12],[-10,-30],[-11,-24],[-13,-14],[-18,-25],[-13,-16],[-11,-25],[-14,-19],[-15,-12],[-18,-21],[-9,-20],[-14,-16],[-18,2],[-16,-4],[-14,-7],[-16,-6],[-16,3],[-16,-4],[-16,-7],[-14,-10],[-14,-13],[-16,-15],[-15,-10],[-16,-5],[-16,-28],[-9,-20],[-11,-18],[-9,-34],[-9,-24],[-14,-15],[-13,-13],[-14,-22],[-14,-6],[-13,10],[-19,15],[-15,-4],[-16,-12],[-11,-20],[-1,-36],[-10,-25],[-19,-19],[-19,-6],[-18,-11],[-15,-14],[-17,-14],[-15,-2],[-15,-24],[-13,-28],[-7,-24],[-5,-41],[-14,-34],[-2,-29],[-10,-23],[-20,-3],[-18,6],[-19,13],[-16,11],[-25,-22],[-14,-27],[-9,-32],[-12,-26],[-18,-26],[-16,-18],[-14,-24],[-12,-29],[-19,-42],[-12,-22],[-23,-1],[-17,-4],[-13,-31],[-13,-34],[-7,-31],[-4,-42],[-2,-37],[-16,-19],[-18,-7],[-12,-18],[-9,-21],[-12,-39],[-14,-17],[-12,-13],[-16,-17],[-11,-22],[-6,-32],[6,-30],[11,-25],[14,-17],[2,-28],[-20,-20],[-19,-17],[-22,-20],[-21,-8],[-22,-6],[-20,-2],[-14,-6],[-13,-14],[-15,-27],[-12,-37],[-5,-26],[-6,-38],[-3,-25],[-13,-28],[-24,-9],[-16,-2],[-17,3],[-17,0],[-16,-14],[-1,-29],[-10,-41],[-6,-34],[-6,-48],[-5,-27],[-15,-23],[-18,-21],[-11,-22],[-9,-27],[-13,-23],[-17,-16],[-20,-5],[-19,3],[-19,6],[-15,-9],[-4,-24],[1,-28],[-15,-2],[-26,-7],[-18,-10],[-19,-10],[-21,5],[-20,10],[-14,9],[-17,-3],[-15,-10],[-19,-12],[-20,-13],[-19,-18],[-7,-22],[-22,-19],[-16,-12],[-1,-27],[-6,-28],[-14,-39],[-13,-26],[-14,-36],[-14,-6],[-9,-22],[-11,-36],[-17,-31],[-18,-27],[-15,-22],[6,-26],[2,-55],[-20,-2],[-27,8],[-22,6],[-22,7],[-16,4],[-23,-8],[-12,-30],[-9,-41],[-20,27],[-13,37],[-35,-2],[-14,16],[-15,-14],[-40,-39],[-14,-21],[-16,-12],[-11,-33],[9,-29],[12,-18],[-4,-39],[-21,-5],[-18,-13],[-12,-25],[-27,-31],[-23,-24],[-15,10],[-15,-1],[-16,-1],[-20,-7],[-14,-27],[-2,-38],[4,-41],[-21,-9],[-10,-24],[-17,-18],[-18,0],[-19,-8],[-14,-5],[-11,-17],[-4,-27],[-14,-19],[-6,-35],[-14,12],[-22,5],[-23,-3],[-20,-4],[-9,24],[-14,27],[-19,34],[-14,9],[-16,9],[-16,26],[-14,35],[-11,29],[-16,28],[-23,13],[-14,16],[-14,5],[-21,35],[-17,22],[-20,1],[-17,1],[-8,27],[-11,25],[-10,20],[-18,33],[-21,24],[-16,9],[-21,13],[-16,11],[-18,3],[-23,12],[-16,9],[-11,27],[-25,5],[-17,6],[-22,6],[-16,12],[-17,12],[-17,3],[-24,6],[-22,11],[-15,10],[-21,14],[-13,11],[-16,12],[-14,12],[-5,29],[-15,3],[-21,-11],[-18,4],[-18,10],[-21,13],[-18,1],[-15,4],[-14,17],[-18,16],[-17,2],[-13,11],[-20,19],[-19,19],[-22,16],[-17,14],[-16,14],[-20,-3],[-18,-3],[-19,7],[-25,5],[-14,4],[-15,14],[-22,0],[-16,7],[-23,1],[-17,8],[-18,-13],[-16,-30],[-15,0],[-19,65],[-15,10],[-18,1],[-20,-29],[-8,-28],[-17,33],[-20,-31],[-17,-25],[-18,-10],[-4,-25],[-11,-19],[-21,-4],[-13,16],[-20,-15],[-18,-13],[-25,-31],[-10,-32],[-23,-11],[-15,2],[-18,2],[-17,2],[-22,-13],[-12,-15],[-17,-16],[-25,-16],[-14,-17],[-24,-30],[-15,-5],[-23,-9],[-19,-6],[-29,-1],[-20,7],[-24,0],[-16,-4],[-18,-5],[-14,-9],[-21,-34],[-19,-29],[-30,-36],[-17,-20],[-17,-6],[-15,1],[-7,24],[-14,18],[-16,9],[-25,0],[-19,13],[-16,11],[-23,12],[-26,-9],[-22,-4],[-30,-2],[-28,-6],[-21,-8],[-14,-7],[-17,3],[-23,-8],[-41,1],[-46,-10],[-22,-5],[-15,-1],[-20,-11],[-22,-12],[-23,-4],[-26,-3],[-22,1],[-15,-4],[-23,-4],[-14,-11],[-22,-5],[-31,2],[-24,2],[-19,6],[-19,2],[-18,2],[-21,-4],[-26,-5],[-17,-5],[-55,18],[-21,7],[-24,8],[-19,6],[-81,-19],[-23,-5],[-32,-9],[-14,-25],[-16,-35],[-15,-41],[-18,-49],[-9,-25],[-17,-19],[-37,-41],[-59,-48],[-22,-20],[-12,-13],[-17,-16],[-14,-16],[-4,-4],[-9,-8],[-11,-33],[-13,-22],[-28,-33],[-14,-10],[-14,-11],[-25,-18],[-21,-15],[-18,-17],[-13,-13],[-21,-30],[-29,-22],[-17,-17],[-20,-26],[-16,-22],[-26,-15],[-14,-18],[-13,-28],[-31,-32],[-14,-9],[-15,-1],[-18,-1],[-18,-14],[-20,-19],[-11,-17],[0,-1],[-10,-23],[-4,-29],[-6,-23],[-18,-31],[-9,-31],[-8,-24],[-6,-50],[-1,-31],[-19,-37],[-16,-18],[-26,-18],[-25,-18],[-20,-11],[-10,-33],[-25,-6],[-15,-1],[-14,-20],[-10,25],[-9,39],[-17,28],[-49,-27],[-11,-22],[-15,-43],[-19,-47],[-11,-21],[-19,-35],[-26,-38],[-23,-17],[-23,-17],[-15,-37],[-16,-52],[-16,-25],[-9,-22],[-16,-34],[-12,-25],[-16,-13],[-15,-14],[-17,-21],[-18,-27],[-14,-16],[-33,-22],[-15,-13],[-21,-26],[-19,-28],[-7,-26],[-9,-26],[-24,-33],[-15,-21],[-11,-36],[-36,-49],[-13,-15],[-17,-8],[-24,-4],[-19,-7],[-10,-19],[9,-26],[18,-32],[12,-27],[13,-47],[6,-47],[11,-32],[19,-27],[15,-30],[10,-26],[-5,-61],[-4,-36],[-12,-34],[-19,-44],[-13,-24],[-13,-12],[-17,-24],[-11,-23],[-21,-10],[-12,-16],[5,-39],[-20,-22],[-27,-33],[-14,-23],[-15,-32],[-15,-23],[-12,-18],[-7,-25],[-13,-25],[-14,-43],[-13,-31],[-22,-53],[-18,-43],[-13,-27],[-16,-33],[-36,-45],[-17,-32],[-13,-20],[-15,-22],[-16,-24],[-20,-70],[-21,-37],[-19,-28],[-17,-21],[-16,-16],[-21,-22],[-26,-6],[-19,-19],[-27,-19],[-28,15],[-11,27],[-14,14],[-21,20],[-27,18],[-20,-3],[-19,-20],[-7,-24],[6,-31],[3,-37],[-24,-33],[-18,-15],[-16,-25],[-6,-33],[3,-38],[20,-58],[20,-36],[11,-44],[10,-34],[-6,-48],[-15,-12],[-19,11],[-17,12],[-14,6],[-15,-2],[-16,-10],[-23,-37],[-8,-25],[-15,-47],[-14,-23],[-21,-15],[-33,8],[-16,-7],[-40,-4],[-20,8],[-24,12],[-17,8],[-19,3],[-18,-1],[-16,-11],[-17,-26],[-10,-28],[-9,-24],[-29,-11],[-22,0],[-17,-6],[-20,-17],[-6,-33],[-94,-68],[-35,-21],[-130,-75],[-94,-55],[-41,-24],[-89,-51],[-23,-12],[-174,-99],[-89,-50],[-80,-46],[-93,-50],[-124,-68],[-71,-42],[-92,-52],[-89,-52],[-246,-143],[-32,-18],[-42,-24],[-236,-136],[-4,-2],[-110,-64],[-68,-39],[-67,-39],[-125,-73],[-168,-95],[-42,-24],[-57,-31],[-33,-19],[-51,-29],[-14,-8],[-5,-3],[-50,-29],[-109,-62],[-5,-2],[-18,-10],[-31,-18],[-14,-8],[-22,-13],[-5,-4],[-10,-7],[-1,-44],[0,-105],[0,-8],[0,-46],[0,-8],[0,-476],[0,-90],[-2,-363],[0,-138],[0,-30],[0,-4],[0,-75],[0,-112],[1,-94],[0,-75],[2,-191],[0,-114],[0,-400],[0,-261],[0,-291],[1,-392],[0,-89],[1,-363],[0,-203],[0,-45]],[[9711,41782],[-1,-534],[0,-87],[0,-19],[0,-435],[0,-779],[1,-142],[0,-64],[0,-1045],[0,-4],[0,-590],[0,-250],[0,-188],[-7,-55],[-29,0],[-304,0],[-306,0],[-313,0],[-181,0],[-43,0],[-1,0],[-76,0],[-76,0],[-10,0],[-392,0],[-128,0],[-203,0],[-76,0],[-73,0],[-164,0],[-163,0],[-277,0],[-99,0],[-221,0],[-26,0],[-353,0],[-236,0],[-82,0],[-51,0],[-382,0],[-450,0],[-45,0],[-113,0],[-135,0],[-71,0],[-13,0],[-203,0],[-100,0],[-92,0],[-246,0],[-165,0],[-119,0],[-261,0],[-131,0],[-207,0],[-358,0],[-100,0],[-100,0],[-143,0],[-9,0],[-21,0],[-18,0],[-107,0],[-1146,0],[-47,0],[-32,0],[-158,0],[-845,0]],[[4,37590],[0,47],[-3,758],[0,649],[0,116],[-1,907],[1,183],[0,65],[2,307],[1,85],[1,324],[2,267],[-1,86],[0,507],[0,30],[4,1152],[2,145],[4,252],[4,318],[1,33],[1,3],[1,87],[3,182],[15,864],[3,107],[2,122],[7,241],[10,407],[1,14],[2,83],[6,339],[1,54],[13,616],[3,367],[1,213],[2,173],[-1,83],[0,117],[0,47],[1,109],[1,89],[2,299],[4,196],[1,158],[1,106],[1,10],[2,258],[3,308],[3,409],[1,175],[1,198],[1,185],[0,92],[0,16],[0,55],[1,140],[0,31],[1,118],[3,806],[2,448],[2,357],[1,339],[1,99],[0,20],[0,27],[0,44],[0,7],[1,135],[0,28],[0,409],[1,260],[1,840],[1,137],[0,53],[0,3],[0,27],[0,235],[0,42],[1,550],[0,30],[1,117],[0,76],[0,62],[0,26],[0,222],[0,111],[2,803],[1,516],[1,586],[0,389],[0,47],[1,153],[0,304]],[[35367,51501],[-1,-41],[7,-76],[-46,-112],[-50,-38],[-70,-40],[-83,-5],[-32,-14],[0,-28],[-8,-111],[-16,-62],[-8,-74],[22,-53],[51,-42],[25,-59],[13,-67],[-46,-103],[-4,-98],[4,-78],[-3,-86],[6,-68],[4,-84],[-14,-51],[-21,-41],[-20,-44],[-13,-18]],[[35064,50008],[-19,0],[-34,-20],[-32,-19],[-123,19],[-53,113],[-60,30],[-35,17],[-40,93],[-66,120],[-89,63],[-23,118],[-41,21],[-93,71],[-16,80],[2,26],[13,18],[12,20],[15,23],[8,26],[-4,35],[-1,25],[-11,36],[-9,33],[-13,10],[-16,15],[-16,26],[-11,21],[0,34],[-7,40],[-19,30],[-21,33],[-30,-11],[-19,-10],[-15,-9],[-13,-10],[-13,-14],[-15,-9],[-18,-1],[-42,23],[-45,24],[-42,23],[-161,12],[-16,19],[-5,25],[-12,36],[-17,36],[-71,132],[-87,9],[-43,1],[-73,-43],[-34,-125],[-36,-13],[-72,2],[-105,-74],[-89,29],[-106,-24],[-55,-38],[-84,-66],[40,-361],[-58,-13],[-66,-82],[-49,-84],[-66,-33],[-74,-182],[-37,-91],[-75,-33],[-17,-47],[-8,-22],[-19,-52],[-63,-50],[-17,-86],[10,-61],[12,-65],[-26,-96],[-31,-41],[-21,-23],[-99,12],[-36,-29],[-17,-15],[-27,-22],[-24,-96],[-63,12],[-28,5],[-123,59],[-62,-38],[-56,-35],[-29,-18],[-69,76],[-50,44],[-58,52],[-57,27],[-27,13],[-59,131],[-42,93],[-63,137],[-10,42],[-12,47],[-2,6],[-7,30],[-23,89],[-85,-44],[-28,-8],[-7,-2],[-47,-13],[-67,-3],[-17,-35],[-4,-27],[1,-28],[9,-26],[20,-46],[-2,-66],[-12,-22],[-6,-54],[-80,-73],[-107,-8],[-67,-23],[-97,48],[-78,13],[-4,95],[-64,84],[-18,3],[-87,14],[-42,37],[-38,34],[-58,43],[-82,60],[-71,93],[-76,92],[-70,44],[-101,-27],[-99,85],[2,79],[4,90],[4,97],[-37,31],[-16,-22],[-44,-24],[-38,-2],[-145,40],[-103,52],[-55,27],[-15,13],[-11,37],[-19,41],[-17,39],[-7,21],[-10,24],[-14,40],[14,6],[17,24],[15,37],[9,31],[-1,46],[14,32],[26,31],[25,18],[27,7],[23,10],[6,87],[-8,28],[-17,48],[3,38],[11,24],[27,8],[14,11],[11,17],[2,45],[-8,72],[-9,20],[-13,34],[-9,34],[-21,-8],[-31,-11],[-22,-7],[-39,-7],[-22,26],[-21,26],[-21,42],[-120,208],[-48,83],[-17,17],[-23,22],[-16,23],[-109,83],[-212,185],[-15,26],[-13,14],[-21,15],[-23,15],[-20,27],[-11,23],[-24,36],[-17,46],[-14,16],[-12,37],[-23,58],[-15,1],[-16,4],[-23,9],[-45,20],[-39,86],[-57,85],[-93,1],[-89,1],[-423,-2],[-2,0],[-229,-1],[-118,0],[-529,0],[-639,1],[-495,-2],[-241,-1],[-14,1],[-17,0],[-17,0],[-50,0],[-24,0],[-91,0],[13,15],[-4,39],[-14,32],[1,30],[-9,24],[-16,9],[-12,17],[8,25],[15,14],[2,35],[-9,21],[-4,9],[-14,35],[-9,44],[0,37],[1,31],[-5,29],[-12,22],[-12,40],[-9,28],[-19,22],[-17,31],[-7,24],[-14,23],[-16,12],[-6,24],[-2,26],[-6,40],[-8,28],[-3,34],[-2,34],[1,28],[-9,26],[-24,26],[-17,18],[-19,11],[-14,-8],[-29,-16],[-15,3],[-8,24],[-22,6],[-13,6],[-18,17],[-12,18],[-14,15],[-14,24],[-17,23],[-18,23],[-10,19],[-14,28],[-16,19],[-14,10],[-23,12],[-21,4],[-18,2],[-17,-1],[-20,3],[-20,-10],[-16,-3],[-29,6],[-18,9],[-17,0],[-22,8],[-20,14],[-18,22],[-9,28],[-18,6],[-16,-3],[-18,-8],[-18,-4],[-17,1],[-22,11],[-18,15],[-22,12],[-15,8],[-13,12],[-23,25],[-23,24],[-15,7],[-7,42],[-2,32],[-20,30],[-14,27],[-12,28],[-11,30],[-9,24],[-7,38],[-4,37],[-25,13],[-22,16],[-18,29],[-15,33],[-7,27],[-8,23],[-8,25],[-6,22],[-18,14],[-13,14],[-26,33],[-15,31],[-12,22],[-17,16],[-21,16],[-16,26],[-10,30],[-1,29],[3,30],[5,27],[-9,33],[-12,35],[1,31],[-13,21],[-13,24],[-2,28],[7,29],[7,27],[7,23],[10,20],[5,28],[3,27],[5,25],[1,26],[6,36],[-5,28],[1,29],[0,26],[-13,20],[-4,27],[-4,27],[0,25],[9,29],[-12,25],[-7,27],[5,30],[9,23],[7,28],[11,30],[14,37],[13,14],[21,15],[18,16],[14,10],[-7,22],[-13,12],[-15,7],[-11,20],[-14,27],[-5,31],[0,36],[-10,25],[-19,16],[-24,13],[-18,3],[-22,2],[-17,5],[-13,20],[-12,23],[-14,22],[-21,-3],[-20,1],[-16,9],[-11,22],[-8,21],[-4,54],[-12,21],[-23,25]],[[35064,50008],[27,-84],[14,-48],[12,-36],[19,-8],[23,0],[21,9],[25,14],[22,9],[14,11],[17,0],[13,-14],[27,-16],[26,12],[20,-6],[34,-32],[35,60],[28,13],[30,14],[20,15],[29,-14],[15,-4],[47,65],[18,15],[16,30],[19,10],[32,-12],[21,5],[17,9],[29,-130],[13,-35],[16,-13],[36,-8],[31,-21],[17,-31],[16,-16],[47,-49],[26,-38],[28,-38],[26,-30],[19,-8],[12,-15],[34,-15],[18,-1],[30,-103],[11,-56],[13,-51],[2,-30],[37,-61],[-18,-78],[-13,-33],[-26,-27],[-20,-42],[-15,-28],[17,-85],[6,-37],[31,-21],[20,-3],[16,-15],[19,-4],[34,-54],[22,-30],[11,-22],[24,-30],[15,-19],[28,-14],[26,-14],[19,-12],[40,-37],[-8,-37],[-1,-49],[5,-37],[11,-38],[6,-27],[24,-10],[13,-29],[17,-13],[26,-2],[36,-30],[34,-60],[21,-23],[24,-12],[11,-84],[16,-29],[13,-22],[17,-27],[15,-27],[23,-19],[27,-10],[17,-57],[17,-11],[49,-37],[20,-15],[38,-5],[31,-71],[15,-17],[22,-3],[30,-37],[27,-1],[22,14],[45,-30],[71,66],[54,7],[28,33],[28,-12],[18,18],[15,1],[23,23],[40,-2],[31,-14],[3,35],[29,46],[7,32],[10,26],[23,64],[26,46],[33,17],[43,13],[29,35],[15,14],[35,-10],[16,-26],[0,-31],[6,-49],[7,-27],[2,-36],[17,-37],[25,-32],[16,-46],[15,-15],[64,-23],[22,-44],[15,-8],[25,-45],[16,-6],[37,33],[79,8],[13,36],[-2,67],[3,33],[9,26],[48,30],[30,29],[9,46],[24,4],[16,-4],[6,24],[31,44],[25,-37],[30,-39],[-3,-28],[2,-26],[-2,-63],[10,-30],[-3,-26],[14,-70],[-5,-28],[-2,-56],[9,-21],[31,-52],[17,-5],[67,13],[25,73],[22,27],[38,35],[64,15],[32,-33],[25,-17],[22,-26],[40,-20],[20,-16],[8,-21],[21,-14],[17,14],[76,28],[53,73],[56,1],[46,-16],[25,-2],[17,-67],[11,-87],[-8,-47],[13,-53],[4,-36],[9,-33],[29,-54],[4,-29],[-11,-52],[-24,-20],[-24,-32],[-19,-40],[-9,-40],[3,-80],[-13,-30],[-24,-20],[-21,-8],[-18,-12],[-32,0],[-4,-31],[-13,-20],[-12,-74],[-10,-34],[6,-24],[5,-27],[-3,-25],[-15,-3],[-22,-1],[-19,-12],[-17,-19],[-14,-20],[-13,-15],[-17,-8],[-16,-20],[-20,-18],[-7,-24],[-16,-22],[-10,-25],[1,-34],[3,-29],[-1,-29],[0,-33],[-1,-29],[3,-34],[-3,-28],[-14,-13],[-14,8],[-16,2],[-16,1],[-19,-2],[-15,-7],[-17,1],[-18,-14],[-14,-10],[-14,-10],[-16,-7],[-16,-7],[-18,1],[-18,-10],[-7,-33],[1,-29],[0,-27],[0,-26],[3,-33],[10,-23],[-13,-23],[-16,-14],[-15,-29],[-9,-20],[-9,-23],[-13,-21],[-8,-21],[0,-32],[-18,-19],[-16,-5],[-16,-7],[-18,-12],[-13,-16],[-22,-5],[-15,-2],[-8,-29],[-15,-25],[-14,-22],[-12,-16],[-12,-23],[-3,-38],[-7,-36],[-1,-32],[-2,-27],[2,-31],[-19,-14],[-21,-7],[-21,-9],[-18,-8],[-16,-9],[-14,-9],[-15,-3],[-18,-2],[-21,-4],[-18,6],[-18,12],[-8,22],[-9,24],[-14,16],[-20,9],[-16,7],[-18,9],[-12,19],[-12,24],[-17,17],[-15,6],[-15,-19],[-14,-18],[-19,-29],[-15,-22],[-17,-15],[-16,-13],[-21,-6],[-8,-24],[4,-28],[4,-34],[5,-37],[-1,-27],[3,-27],[2,-26],[-2,-29],[-10,-25],[-19,-17],[-15,-13],[-15,-13],[-13,-15],[-9,-24],[-12,-24],[-13,-24],[-1,-30],[9,-29],[8,-26],[9,-25],[17,-26],[14,-9],[7,-25],[3,-31],[16,-12],[18,-13],[14,-16],[-2,-26],[3,-28],[1,-27],[4,-31],[6,-25],[7,-27],[4,-26],[1,-27],[-11,-19],[-16,-13],[-15,-20],[-13,-27],[0,-26],[2,-25],[9,-28],[6,-37],[6,-30],[6,-27],[10,-23],[-3,-33],[-5,-32],[-2,-30],[-9,-25],[0,-35],[-4,-26],[-10,-27],[-16,-16],[-4,-30],[-8,-35],[-10,-30],[12,-37],[15,-17],[2,-30],[8,-28],[1,-38],[3,-34],[8,-27],[7,-23],[-11,-17],[-16,-20],[-11,-24],[-10,-31],[-12,-17],[-9,-33],[4,-36],[18,-23],[2,-43],[1,-58],[3,-77],[-10,-60],[-19,-20],[22,-87],[24,-39],[2,-148],[-11,-54],[-25,-42],[-61,-78],[10,-50],[-7,-67],[-21,-86],[-8,-60],[-16,-6],[-44,-6],[-31,-28],[-19,0],[-21,13],[-29,-5],[-23,-10],[-76,15],[-17,-29],[1,-28],[-14,-35],[-29,-17],[-26,-47],[-38,-104],[8,-25],[6,-46],[39,-75],[18,-43],[13,-34],[36,-45],[27,-10],[23,-19],[33,-109],[12,-78],[-1,-33],[-14,-35],[15,-45],[12,-28],[4,-64],[25,-57],[27,-24],[16,-71],[-3,-44],[28,-117],[4,-24],[-6,-46],[-10,-58],[9,-56],[35,-14],[44,-45],[32,-52],[23,-2],[28,-37],[50,5],[29,26],[13,14],[54,17],[15,-18],[39,-6],[35,-24],[3,-67],[-11,-23],[15,-61],[39,1],[17,14],[63,-6],[38,24],[17,-3],[14,-22],[20,-9],[12,-26],[37,7],[47,-11],[-7,-35],[-22,-41],[-32,-40],[-15,-36],[-9,-56],[-6,-58],[5,-27],[8,-43],[11,-21],[17,-15],[14,-17],[4,-29],[12,-16],[17,-16],[24,-5],[25,20],[15,5],[16,-10],[48,-33],[28,-20],[31,-37],[24,-33],[15,-35],[8,-71],[0,-35],[-7,-40],[-1,-36],[-7,-32],[30,-60],[8,-29],[32,-43],[7,-30],[-14,-40],[-9,-40],[0,-27],[39,-60],[7,-26],[25,-39],[1,-27],[6,-27],[16,-29],[17,-40],[26,-42],[-18,-37],[-12,-13],[20,-66],[5,-48],[25,-53],[22,-40],[14,-14],[39,-101],[-32,-86],[3,-58],[-11,-44],[11,-54],[-28,-43],[-22,-39],[-9,-45],[4,-27],[-21,-25],[-22,-43],[-1,-70],[-10,-50],[-9,-57],[2,-28],[16,-63],[-9,-41],[-3,-35],[5,-69],[54,-48],[46,-68],[11,-62],[19,-44],[14,-48],[21,-26],[-7,-41],[-9,-60],[-19,-20],[-11,-43],[-32,-61],[11,-25],[10,-46],[16,-35],[1,-28],[17,-63],[20,-43],[21,-12],[18,-21],[16,-18],[0,-28],[7,-28],[11,-19],[15,-22],[16,-14],[12,-13],[19,-21],[12,-12],[22,-16],[15,5],[8,26],[10,22],[11,33],[16,3],[13,-12],[3,0],[13,-1],[24,0],[15,7],[22,11],[14,-32],[11,-21],[13,-16],[19,-7],[26,-3],[23,5],[17,7],[7,-23],[5,-28],[3,-33],[16,-26],[2,-29],[2,-36],[15,-52],[15,-26],[9,-34],[2,-28],[12,-28],[12,-17],[9,-22],[-6,-24],[8,-23],[14,-20],[28,-22],[17,-9],[16,0],[30,-3],[15,0],[22,-13],[15,-7],[21,-23],[16,-17],[-2,-35],[11,-19],[0,-34],[-2,-42],[-2,-28],[7,-42],[4,-35],[0,-25],[10,-35],[16,-25],[11,-19],[17,-25],[17,-23],[7,-22],[13,-21],[23,-31],[15,-9],[26,-3],[16,1],[21,12],[15,2],[25,10],[17,-69],[-7,-92],[-10,-28],[-16,-19],[28,-12],[23,-22],[28,-49],[26,-34],[46,-4],[31,8],[19,-6],[37,-8],[36,-11],[25,-9],[36,-28],[20,-13],[17,-3],[18,1],[18,-1],[-11,-20],[-13,-32],[-14,-28],[-11,-34],[-8,-35],[4,-36],[4,-28],[3,-28],[4,-35],[-5,-26],[2,-27],[7,-37],[7,-22],[10,-22]],[[40083,35665],[-52,3],[-129,1],[-89,2],[-148,1],[-67,1],[-317,4],[-226,2],[-805,13],[-158,-4],[-16,0],[-78,0],[-20,0],[-5,0],[-160,3],[-4,0],[-38,1],[-14,0],[-18,0],[-30,0],[-364,6],[-278,1],[-202,1],[-128,1],[-268,4],[-255,1],[-94,0],[-216,0],[-14,0],[-85,0],[-221,0],[-216,1],[-167,0],[-140,0],[-287,0],[-86,-3],[-388,3],[-116,1],[-23,0],[-17,0],[-57,1],[-362,4],[-438,4],[-113,1],[-267,2],[-119,2],[-26,0],[-21,0],[-3,0],[-200,0],[-41,1],[-142,0],[-99,0],[-108,1],[-102,0],[-286,0],[-140,2],[-78,1],[-78,1],[-280,-1],[-58,-3],[-216,2],[-29,0],[-69,-1],[-41,1],[-37,0],[-635,2],[-497,1],[-257,7],[0,-348],[0,-697],[0,-218],[0,-293],[0,-35],[0,-373],[0,-31],[0,-47],[0,-292],[-2,-1303],[0,-2],[0,-146],[-1,-594],[-2,-402],[-2,-703],[-1,-1290],[2,-35],[-1,-137]],[[29338,28790],[-106,-1],[-543,1],[-24,0],[-40,-2],[-10,0],[-55,2],[-37,2],[-672,-6],[-8,0],[-88,0],[-191,6],[-205,0],[-387,1],[-441,0],[-692,1],[-56,-1],[-557,-1],[-29,0],[-21,0],[-57,0],[-462,-1],[-317,3],[-3,0],[-335,-3],[-121,3],[-2,0],[-506,-1],[-366,-1],[-1,0],[-593,-1],[-192,-1],[-338,1],[-35,0],[-362,1],[-100,-1],[-2,0],[-21,0],[-26,0],[-86,2]],[[21251,28793],[2,32],[12,17],[23,8],[20,9],[10,35],[6,23],[9,73],[8,64],[-16,135],[-7,67],[-10,37],[-10,20],[-13,50],[-24,38],[9,49],[11,60],[-5,30],[-7,37],[-9,23],[-32,65],[-26,116],[-4,34],[4,31],[0,36],[-1,31],[-7,32],[-6,25],[-2,29],[-10,33],[-7,23],[-13,42],[-6,67],[5,63],[4,54],[-10,80],[-34,37],[-36,23],[12,58],[-13,82],[11,31],[14,65],[-15,65],[4,83],[-5,52],[-26,33],[-9,57],[-4,31],[-54,109],[0,106],[-25,109],[-22,75],[-9,31],[-47,37],[-49,-4],[-30,10],[-21,20],[-72,71],[-78,97],[-24,69],[-31,122],[9,28],[-33,62],[-1,71],[-40,-4],[-76,100],[1,61],[-11,77],[-21,41],[-30,56],[-2,61],[-2,45],[-1,37],[-24,46],[-34,93],[-8,24],[-7,23]],[[20306,32651],[31,0],[18,0],[25,0],[43,0],[17,0],[83,1],[16,0],[208,-1],[256,1],[156,0],[19,0],[193,0],[2,0],[111,0],[580,0],[109,1],[57,-1],[-1,209],[0,295],[0,429],[-1,615],[0,43],[-3,230],[1,67],[0,65],[0,11],[0,55],[0,173],[-1,223],[0,17],[-1,117],[0,50],[0,50],[0,113],[0,37],[0,299],[-3,174],[0,256],[0,6],[0,24],[0,24],[0,31],[0,7],[0,198],[0,29],[0,133],[0,85],[0,124],[0,117],[0,250],[0,54],[0,225],[0,103],[0,194],[0,28],[0,907],[0,216],[0,6],[0,124],[0,281],[0,848],[0,406],[0,107],[0,294],[0,708],[0,84]],[[22221,41793],[0,55],[0,401],[0,1],[0,37],[0,26],[0,197],[0,648],[0,39],[0,12],[0,573],[0,666],[0,210],[0,133],[0,192],[0,65],[0,92],[0,241],[0,358],[0,141],[1,179],[-1,35],[0,31],[0,83],[0,592],[0,4],[0,80],[1,445],[0,213],[-1,357],[0,59],[0,37],[0,6],[0,40],[0,22],[0,6],[0,76],[0,106],[0,72],[0,603],[0,649],[0,328],[0,154],[0,45],[0,56],[0,72],[0,404],[0,284],[0,68],[0,678],[0,50],[0,69],[0,1],[-1,1308],[0,71],[0,39],[1,166],[0,183],[0,224],[1,149],[-1,317],[0,35],[0,159],[0,324],[0,119],[0,119],[0,70],[2,425]],[[22221,41793],[-201,0],[-38,0],[-50,1],[-21,-1],[-103,0],[-92,-1],[-33,0],[-1,0],[-65,0],[-165,0],[-16,0],[-100,0],[-33,0],[-1,0],[-115,-1],[-26,0],[-65,0],[-69,0],[-104,0],[-73,0],[-2,0],[-40,0],[-25,0],[-16,0],[-82,-1],[-24,0],[-133,0],[-72,0],[-101,0],[-41,0],[-24,0],[-25,0],[-132,-1],[-197,0],[-56,0],[-76,-1],[-27,0],[-171,0],[-117,-1],[-19,0],[-15,1],[-343,-1],[-17,-1],[-19,0],[-15,0],[-44,0],[-47,0],[-20,0],[-62,0],[-22,0],[-17,0],[-132,0],[-37,0],[-29,-5],[-122,-1],[-53,0],[-62,0],[-102,-1],[-45,0],[-59,0],[-500,2],[-20,0],[-214,1],[-210,0],[-1,0],[-64,1],[-156,0],[-140,0],[-267,0],[-17,0],[-98,1],[-189,1],[-226,2],[-159,1],[-168,0],[-47,1],[-40,0],[-39,0],[-76,0],[-342,2],[-75,0],[-43,0],[-8,0],[-3,0],[-18,0],[-38,-2],[-19,0],[-74,0],[-106,0],[-52,0],[-20,0],[-51,0],[-72,0],[-126,0],[-155,0],[-56,0],[-2,0],[-60,0],[-18,0],[-109,1],[-134,1],[-17,1],[-171,0],[-66,0],[-2,0],[-31,0],[-18,0],[-97,0],[-104,1],[-20,-1],[-116,-2],[-48,0],[-44,-1],[-50,0],[-132,2],[-113,1],[-71,0],[-11,0],[-316,-1],[-130,-1],[-144,1],[-125,0],[-21,0],[-45,0],[-23,0],[-23,-1],[-20,0],[-120,0],[-63,0],[-25,0],[-113,0],[-67,0],[-124,-1],[-113,1],[-27,0],[-60,0],[-68,-1],[-3,0],[-310,-1],[-161,-1],[-346,-1],[-80,-1],[-613,-3],[-34,0]],[[57371,53294],[6,-120],[5,-48],[-1,-44],[-1,-55],[1,-63],[4,-70],[0,-92],[5,-78],[5,-70],[1,-61],[8,-94],[-2,-99],[-1,-50],[7,-83],[5,-55],[-1,-26],[3,-63],[-1,-62],[5,-58],[2,-88],[7,-88],[2,-63],[2,-98],[8,-93],[3,-132],[6,-115],[0,-109],[4,-60],[2,-58],[0,-31],[6,-100],[0,-60],[0,-28],[4,-79],[-3,-86],[-2,-82],[-5,-60],[0,-29],[-2,-100],[-1,-28],[-1,-31],[-8,-86],[-2,-49],[-7,-53],[2,-38],[-6,-56],[-2,-36],[-4,-24],[28,-265],[9,-86],[0,-87],[-2,-202],[-1,-79],[0,-82],[-1,-93],[-1,-60],[0,-30],[0,-70],[-1,-17],[0,-14],[0,-85],[-1,-50],[0,-28],[-1,-91],[3,-118],[1,-51],[4,-41],[2,-28],[-6,-31],[-5,-52],[-1,-57],[-1,-131],[-1,-59],[0,-70],[-1,-34],[0,-78],[-1,-28],[0,-50],[-1,-117],[-3,-358],[-2,-148],[-2,-245],[0,-41],[0,-27],[1,-86],[-3,-65],[-69,2],[-463,13],[-5,-84],[-2,-26],[-4,-66],[-4,-53],[-16,-229],[-14,-244],[-2,-29],[-30,-518],[-2,-37],[-5,-103],[-3,-68],[-3,-67],[1,-83],[4,-142],[271,-6],[322,-50],[33,-1],[16,0],[29,-1],[79,-1],[61,-1],[56,0],[85,11],[53,-2],[16,2],[211,6],[120,-4],[279,-7],[137,-4],[130,-4],[0,-115],[-2,-107],[-1,-154],[-1,-615],[-2,-178],[0,-81],[1,-113],[1,-131],[0,-33],[1,-126],[3,-468],[0,-32],[-8,-172],[-2,-151],[-1,-36],[-35,1],[0,-58],[0,-5],[-2,-605],[-1,-486]],[[58669,41328],[-125,4],[-1,0],[-76,3],[-200,6],[-345,11],[-1,0],[-80,8],[-195,2],[-83,1],[-93,2],[-41,0],[-88,0],[-58,10],[-203,33],[-12,-8],[-14,-8],[-25,-19],[-134,-48],[-28,-13],[-37,-18],[-97,-7],[-209,-12],[-87,-3],[-111,-3],[-1,0],[-33,0],[-7,0],[-24,1],[-14,0],[-49,1],[-4,1],[-134,5],[-18,0],[-17,0],[-119,0],[-74,-1],[-180,0],[-214,-1],[-298,-1],[-393,-2],[-17,0],[-5,0],[-301,-1],[-1,298],[4,283],[1,51],[1,34],[1,27],[0,22],[0,18],[31,496],[-66,2],[-116,-13],[-149,3],[-48,1],[-151,2],[-60,1],[-89,0],[-66,1],[-319,7],[-20,0],[-218,4]],[[71328,38149],[-16,0],[-248,0],[-15,1],[-142,0],[-96,-11],[-162,-3],[-112,0],[-22,-1],[-190,-2],[-17,1],[-46,1],[-76,-1],[-121,-1],[-75,0],[-33,-1],[-33,4],[-30,2],[-21,1],[-48,3],[-86,10],[-263,-9],[-114,-2],[-20,-7],[-36,1],[-216,-6],[-563,-7],[-15,-1],[-72,-1],[-151,-1],[-117,-2],[-60,0],[-158,-2],[-111,-1],[-143,-1],[-85,0],[-64,-1],[-70,0],[-48,-1],[-150,-1],[-118,0],[-115,-1],[-109,-2],[-52,0],[-1,0],[-20,0],[-82,-2],[-40,-1],[-89,3],[-74,0],[-24,-1],[-56,0],[-50,1],[-27,-1],[-32,-2],[-50,0],[-39,0],[-34,-1],[-27,0],[-34,-2],[-31,0],[-66,-1],[-123,-2],[-30,0],[-54,-1],[-28,0],[-53,1],[-25,-1],[-26,0],[-78,0],[-103,-1],[-104,1],[-96,0],[-31,-1],[-63,0],[-41,0],[-68,-1],[-23,-1],[-132,-4],[-70,-3],[-457,-2],[-491,4],[-95,-1],[-246,1],[-185,7],[-16,0],[-101,-2],[-9,0],[-60,1],[-103,-2],[-27,-1],[-26,0],[-24,0],[-7,1],[-16,0],[-17,0],[-537,-14],[-59,-1],[-143,-3],[-49,0],[-43,1],[-35,0],[-167,1],[-31,1],[-154,0],[-77,0],[-205,2],[-22,1],[-29,-1],[-131,6],[-139,0],[-147,-1],[-74,2],[-163,5],[-126,1],[-29,-4],[-28,0],[-32,0],[-194,1],[-57,-3],[-46,-3],[-41,-1],[-3,1],[-141,5],[-55,-2],[-67,0],[-82,0],[-231,2],[-42,0],[-84,2],[-56,0],[-36,0],[-90,-4],[-105,10],[-134,-1],[-89,0],[-89,0],[-6,0],[-16,0],[-66,0],[-131,0],[-18,-3],[-71,-10],[-33,-5]],[[58682,38078],[-1,84],[0,201],[-1,88],[-2,450],[0,41],[0,26],[-1,50],[0,58],[-1,43],[1,63],[-1,107],[0,1],[0,96],[-1,171],[-1,52],[0,10],[-1,167],[-3,512],[-2,409],[1,462],[0,7],[0,152]],[[44032,42416],[104,-58],[86,-21],[55,-1],[103,-2],[10,-85],[5,-49],[52,-27],[31,-16],[25,-12],[77,-36],[66,-31],[6,-2],[8,-37],[16,-22],[10,-7],[9,-5],[8,-1],[5,-48],[-28,-81],[-21,-61],[4,-75],[16,-9],[29,-17],[30,-26],[7,-37],[-10,-54],[-7,-21],[17,-8],[37,2],[60,-144],[63,-14],[-3,-81],[-12,-22],[-22,-39],[-22,-66],[19,-42],[6,-59],[-4,-42],[-16,-16],[-18,-11],[-28,-61],[-26,-27],[-6,-32],[30,-80],[24,-19],[148,-115],[54,-65],[59,26],[26,11],[38,-23],[66,-40],[23,-57],[0,-122],[12,-27],[75,-163],[4,-25],[3,-132],[-48,-157],[-43,-64],[-41,-61],[-36,-54],[-10,-44],[-12,-253],[5,-43],[80,-98],[21,-93],[-30,-98],[-72,-14],[-10,-18],[-17,-31],[1,-32],[8,-24],[4,-28],[3,-37],[-4,-43],[-16,-30],[-17,-7],[-34,4],[-19,-12],[-59,-37],[-16,-86],[2,-123],[-12,-50],[-9,-43],[5,-64],[4,-58],[14,-82],[-14,-37],[-17,-46],[-37,-105],[5,-152],[37,-68],[-7,-59],[-3,-17],[-7,-59],[-15,-23],[-17,-5],[-52,-7],[-228,-30],[-5,0],[-73,-10],[-61,-9],[-2,-2],[-17,-25],[-31,-40],[-13,-18],[-101,-138],[-23,-31],[-15,-20],[-483,-661],[-205,-281],[-126,-173],[-20,-30]],[[43447,36256],[-14,7],[-20,5],[-16,7],[-23,9],[-25,27],[3,29],[8,45],[-9,24],[-7,27],[-14,18],[-17,-1],[-18,2],[-15,-8],[-25,-7],[-19,-1],[-33,-5],[-15,2],[-16,-2],[-18,2],[-23,14],[-27,14],[-24,15],[-27,15],[-13,14],[-21,13],[-17,13],[-17,1],[-18,-13],[-14,-10],[-13,-10],[-14,-13],[-14,-8],[-19,-17],[-17,-12],[-17,-3],[-25,12],[-19,2],[-13,12],[-15,21],[-12,12],[-14,-3],[-16,-29],[-1,-32],[2,-32],[-11,-23],[-16,-21],[5,-28],[17,-26],[18,-11],[5,-24],[9,-43],[0,-36],[-10,-26],[-21,-44],[-13,-27],[-39,-82],[-9,-19],[-16,-34],[-19,-40],[-13,-5],[-12,-5],[-19,-15],[-1,-8],[6,-9],[8,-10],[1,-14],[-3,-13],[-36,-47],[-27,-37],[-7,-7],[-1,-22],[-3,-16],[-14,-25],[-41,-10],[-66,-16],[-15,-2],[-50,-8],[-13,-2],[-28,-5],[-142,-1],[-94,-1],[-264,-2],[-39,0],[-12,0],[-33,0],[-29,2],[-48,0],[-57,-1],[-46,1],[-242,3],[-61,1],[-108,1],[-46,0],[-690,8],[-318,2]],[[99928,51230],[7,-3239],[3,-1416],[0,-70],[2,-664],[0,-62],[0,-60],[7,-3202],[1,-677],[1,-1378]],[[99949,40462],[-25,-1],[-79,0],[-80,0],[-24,0],[-16,0],[-27,0],[-17,2],[-14,13],[-20,-6],[-15,-2],[-21,-6],[-27,-1],[-51,-1],[-55,0],[-64,-1],[-79,0],[-18,0],[-40,0],[-67,-1],[-105,1],[-26,0],[-273,-4],[-241,5],[-7,0],[-17,1],[-383,4],[-394,-2],[-17,0],[-255,-5],[-291,3],[-105,1],[-73,0],[-56,1],[-260,-3],[-216,-2],[-41,-1],[-499,9],[-25,-4],[-7,0],[-20,1],[-19,0],[-97,0],[-59,1],[-18,0],[-17,-1],[-22,0],[-15,1],[-26,0],[-99,-1],[-127,1],[-264,-1],[-54,-1],[-57,0],[-9,0],[-71,-1],[-43,-1],[-20,0],[-19,1],[-52,-1],[-34,0],[-63,-1],[-38,1],[-26,0],[-30,-1],[-33,-1],[-31,0],[-18,-1],[-27,-1],[-22,0],[-52,-1],[-26,-1],[-17,-1],[-34,1],[-135,0],[-83,0],[-27,0],[-24,-1],[-139,-4],[-46,-2],[-106,-4],[-34,-2],[-138,-3],[-62,-2],[-138,-5],[-100,-5],[-17,-1],[-266,-3],[-41,0],[-112,-2],[-34,0],[-65,-2],[-61,0],[-199,-1],[-25,1],[-29,-2],[-35,0],[-27,0],[-40,-1],[-35,0],[-62,0],[-16,0],[-32,1],[-1,0],[-49,0],[-48,0],[-256,-2],[-127,-8],[-71,8],[-22,0],[-85,0],[-405,6],[-23,-3],[-184,4],[-116,3],[-26,0],[-44,1],[-77,1],[-208,2],[-51,0],[-134,1],[-128,2],[-61,1],[-14,0],[-81,1],[-69,0],[-32,0],[-21,1],[-15,0],[-43,1],[-167,1],[-157,4],[-123,3],[-82,0],[-19,1],[-97,0],[-9,1],[-32,0],[-18,0],[-18,0],[-20,0],[-33,0],[-48,1],[-156,-2],[-259,1],[-401,2],[-84,1],[-304,4],[-51,1],[-204,3],[-267,4],[-168,0],[-97,0],[-524,4],[-264,-11],[-66,0],[-194,5],[-40,0],[-108,0],[-118,1],[-95,0],[-47,0],[-113,-1],[-266,-9],[-273,-9],[-229,-12],[-24,-1],[-141,-7],[-48,-2],[-76,-4],[-171,-7],[-76,-2],[-77,-3],[-197,-8]],[[58682,38078],[0,-144],[1,-120],[0,-101],[0,-44],[2,-79],[0,-207],[0,-231],[0,-95],[0,-1],[0,-66],[2,-202],[1,-162],[0,-69],[3,-581],[0,-57],[0,-367],[-1,-432],[0,-161],[0,-2],[0,-110],[0,-24],[0,-130],[0,-33],[0,-111],[0,-75],[1,-70],[0,-1],[0,-43],[0,-1],[1,-278],[1,-344],[0,-21],[0,-24],[0,-123],[0,-9],[0,-41],[0,-47],[0,-26],[1,-322],[1,-139],[0,-142],[0,-101],[1,-146],[0,-1],[1,-371],[0,-128],[0,-151],[1,-105],[0,-71],[0,-206],[-41,0],[-464,-4],[-78,0],[-10,0],[-175,0],[-28,-1],[-61,-2],[-385,-2],[-43,1],[-265,1]],[[57148,31556],[-124,0],[-79,0],[-114,-1],[-40,0],[-18,-3],[-33,0],[-117,-1],[-47,-1],[-119,0],[-97,-1],[-38,0],[-133,0],[-97,-1],[-32,-3],[-27,0],[-31,1],[-45,1],[-100,2],[-159,3],[-20,0],[-25,1],[-22,1],[-623,13],[-169,3],[-46,1],[-26,1],[-36,0],[-278,6],[-104,2],[-70,0],[-176,2],[-144,-6],[-86,-3],[-2,0],[-87,-4],[-50,-2],[-44,-2],[-59,-3],[-28,-1],[-23,1],[-59,0],[-359,17],[-61,1],[-49,0],[-27,0],[-34,0],[-317,9],[-92,2],[-5,1],[-9,0],[-70,2],[-232,6],[-45,3],[-42,2],[-169,10],[-23,1],[-22,2],[-65,4],[-139,10],[-68,2],[-23,1],[-91,4],[-204,8],[-59,2],[-69,3],[-55,2],[-69,2],[-73,3],[-62,2],[-22,1],[-140,5],[-56,-1],[-40,1],[-20,8],[-46,0],[-17,0],[-433,14],[-16,1],[-38,6],[-83,12],[-18,3],[-37,1],[-57,-3],[-41,-2],[-117,5],[-65,3],[-27,2],[-79,2],[-221,9],[-136,0],[-25,0],[-72,0],[-61,0],[-176,-1],[-222,8],[-92,-2],[-72,-3],[-58,3],[-59,-5],[-79,-2],[-238,1],[-26,4],[-44,-1],[-387,2],[-96,0],[-227,-6],[-190,5],[-176,-3],[-1,0],[-38,3],[-253,0],[-192,1]],[[46495,31732],[-38,104],[-31,22],[-17,7],[-30,12],[-41,18],[-52,21],[-123,51],[-25,48],[-19,12],[-13,15],[-42,27],[-52,162],[-29,42],[-32,20],[-63,81],[-11,15],[-84,-30],[-30,29],[-94,144],[-77,112],[-36,53],[-81,117],[-8,12],[-41,59],[-37,99],[-31,85],[-70,167],[-32,75],[-33,70],[-34,71],[-1,91],[-2,78],[-12,16],[-47,63],[-10,64],[-34,38],[-80,90],[-29,24],[-83,67],[-12,47],[-22,86],[-28,34],[-76,93],[-112,74],[-111,95],[-63,69],[-62,67],[-22,79],[-10,53],[-19,97],[-70,125],[-111,131],[-5,122],[-151,191],[-86,72],[-6,6],[-22,18],[-14,26],[-3,31],[-6,29],[-50,67],[-15,-14],[-33,-15],[-20,9],[-27,6],[-31,1],[-16,-2],[-41,23],[-10,30],[-10,26],[-14,15],[-15,31],[-8,35],[7,33],[-5,25],[-3,29],[-6,28],[-11,27],[-14,3],[-16,7],[-15,6],[-18,10],[-14,15],[-11,30],[-6,28],[-20,25],[-14,19],[-13,33],[-7,22],[-5,34],[3,26],[0,37],[1,41],[12,24],[12,14]],[[20306,32651],[-1,38],[20,76],[2,17],[2,69],[-8,14],[-23,63],[-13,80],[12,46],[28,81],[26,74],[9,41],[-30,81],[-9,26],[-25,48],[-77,0],[-210,0],[-19,0],[-39,1],[-23,0],[-42,0],[-33,0],[-18,-1],[-24,0],[-161,0],[-69,0],[-31,0],[-241,0],[-81,0],[-94,0],[-32,0],[-116,5],[-86,-3],[-39,0],[-202,0],[-227,0],[-28,0],[-32,0],[-124,0],[-10,0],[-41,0],[-17,0],[-99,0],[-78,0],[-74,0],[-154,0],[-72,1],[-31,-1],[-49,0],[-214,0],[-217,0],[-36,0],[-149,-1],[-18,3],[-111,12],[-66,-1],[-49,0],[-189,-1],[-63,0],[-108,0],[-199,-1],[-144,-1],[-258,-1],[-85,0],[-266,-1],[-300,-2],[-45,1],[-9,0],[-157,-14],[-312,0],[-16,0],[-351,-1],[-190,3],[-188,-1],[-2,0],[-286,-2],[-84,0],[-28,0],[-167,-6],[-28,-1],[-68,-1],[5,-148],[2,-71],[2,-51],[87,3],[28,1],[6,-182],[80,1],[183,2],[2,-206],[6,-416],[1,-115],[115,2],[30,0],[51,1],[58,1],[-5,-212],[-8,-331],[9,-184],[633,1],[161,1],[276,0],[0,-132],[0,-44],[157,2],[7,0],[51,0],[146,2],[30,1],[-1,-102],[-1,-259],[97,1],[138,1],[33,-3],[0,-184],[76,0],[40,0],[1,0],[143,-1],[1,-73],[1,-115],[73,1],[31,0],[30,1],[-1,-134],[-4,-570],[-3,-420],[-117,-3],[-19,-1],[0,-23],[3,-149],[7,-323],[1,-36],[-38,0],[-72,-1],[-18,0],[-141,-3]],[[15593,28921],[-59,-1],[-202,-3],[-25,0],[-104,4],[-97,4],[-9,0],[-154,5],[-137,-1],[-98,0],[-156,1],[-66,-2],[-256,-3],[-304,-3],[-431,-3],[-44,0],[-29,1],[-112,11],[-142,-1],[-72,-2],[-147,-3],[-268,-5],[-18,0],[-82,1],[-179,1],[-539,2],[-137,1],[-37,1],[-27,0],[-127,7],[-71,-1],[-15,-1],[-61,-1],[-120,0],[-143,-2],[-97,-1],[-128,-1],[-38,0],[-165,-1],[-40,0],[-38,0],[-8,0],[-13,1],[-94,1],[-23,0],[-14,-1],[-713,8],[-170,5],[-33,-1],[-141,4],[-4,0],[-143,2],[-67,1],[-38,0],[-98,-1],[-86,0],[-41,-1],[-54,0],[-58,1],[-63,2],[-178,-2],[-3,0],[-45,1],[-52,0],[-155,-1],[-152,0],[-73,-1],[-127,0],[-26,0],[-92,1],[-45,0],[-26,0],[-109,2],[-94,-6],[-43,-2],[-120,-9],[-43,1],[-143,1],[-77,0],[-36,1],[-164,1],[-126,2],[-355,3],[-282,8],[-28,-2],[-20,-1],[-45,-3],[-252,1],[-36,-1],[-65,1],[-161,0],[-246,-1],[-16,-1],[-19,1],[-91,1],[-153,3],[-37,0],[-21,-1],[-186,-1],[-18,-1],[-154,1],[-92,0],[-15,0],[-126,7],[-123,-2],[-134,-1],[-69,-1],[-67,0],[-200,4],[-63,1],[-354,4],[-210,6],[-73,-1],[-20,0],[-185,2],[-46,-2],[-237,7],[-75,-2],[-275,19],[-93,4],[0,-42],[-21,1],[-31,1],[-26,-1],[-65,-1],[-98,5],[-83,3],[-117,2],[-63,1],[-104,-5],[-112,0],[-124,-1],[-194,5],[-26,-1],[-101,-5],[-142,1],[-31,-1],[-250,-5],[-340,-5]],[[259,28939],[0,61],[1,27],[2,115],[1,88],[-19,216],[-31,330],[-7,81],[-20,218],[-28,304],[-6,61],[-3,35],[-63,684],[-6,71],[-11,127],[-2,26],[-8,65],[-50,481],[-6,63],[0,527],[-1,549],[0,234],[0,84],[0,83],[0,53],[0,104],[0,100],[0,277],[-1,470],[0,89],[0,260],[0,33],[0,47],[0,88],[0,44],[0,102],[0,39],[0,243],[0,146],[0,256],[0,40],[-1,593],[0,33],[0,207],[0,622],[0,107],[4,168]],[[99949,40462],[1,-728],[2,-2836],[0,-94],[5,-4808],[-2,-172]],[[99955,31824],[-278,1],[-19,-2],[-16,-1],[-59,-1],[-105,1],[-34,0],[-49,0],[-57,-3],[-75,0],[-12,0],[-5,0],[-95,0],[-99,0],[-20,0],[-10,0],[-5,-1],[-5,0],[-55,-1],[-7,0],[-14,0],[-14,-1],[-9,0],[-11,0],[-3,0],[-4,4],[-2,0],[-12,1],[-77,-4],[-46,-1],[-50,1],[-36,-3],[-3,0],[-15,1],[-11,2],[-29,-1],[-65,0],[-17,-1],[-33,0],[-33,-1],[-2,0],[-5,0],[-48,0],[-25,0],[-22,0],[-3,-2],[-2,2],[-6,1],[-4,1],[-14,0],[-172,-1],[-17,0],[-76,-1],[-59,-2],[-67,7],[-124,-2],[-17,-1],[-38,0],[-83,-4],[-23,-1],[-38,-1],[-17,0],[-19,0],[-25,1],[-55,-2],[-39,1],[-140,3],[-31,-1],[-250,-1],[-22,-1],[-88,-1],[-129,-1],[-294,-1],[-274,-2],[-10,0],[-19,0],[-61,0],[-35,0],[-75,0],[-43,2],[-15,0],[-258,1],[-222,0],[-45,0],[-33,0],[-183,-1],[-47,-1],[-133,0],[-82,-1],[-46,-1],[-40,0],[-86,0],[-146,-1],[-79,0],[-123,0],[-27,-1],[-25,1],[-478,-6],[-18,4],[-27,0],[-46,0],[-54,2],[-23,1],[-2,0],[-81,1],[-215,-6],[-141,-1],[-230,-2],[-662,-10],[-340,2],[-53,1],[-255,4],[-15,0],[-36,0],[-102,-1],[-44,0],[-40,1],[-27,0],[-256,-4],[-189,-1],[-258,-1],[-21,0],[-58,0],[-269,-3],[-162,-1],[-24,3],[-7,1],[-36,-1],[-88,-2],[-133,-4]],[[90015,31780],[-138,-4],[-23,0],[-21,-1],[-19,0],[-70,-2],[-66,3],[-179,10],[-206,11],[-81,1],[-327,-19],[-151,-1],[-20,0],[-34,0],[-22,-1],[-22,1],[-33,4],[-65,0],[-44,0],[-38,0],[-70,-1],[-19,0],[-31,-1],[-171,-2],[-89,-1],[-56,0],[-57,-1],[-170,-1],[-84,-1],[-117,0],[-111,-1],[-41,0],[-56,0],[-77,1],[-111,1],[-78,3],[-40,1],[-21,0],[-28,-1],[-39,-2],[-17,0],[-36,-2],[-600,0],[-156,-7],[-165,-1],[-143,1],[-228,1],[-88,0],[-32,0],[-49,1],[-144,-3],[-56,-1],[-312,-1],[-408,3],[-58,-4],[-22,2],[-127,-10],[-329,0],[-49,1],[-40,-1],[-19,0],[-19,0],[-118,-2],[-78,0],[-17,0],[-88,-1],[-94,-1],[-104,1],[-71,-2],[-47,0],[-15,0],[-23,0],[-36,0],[-5,0],[-209,-1],[-126,0],[-16,0],[-67,-1],[-21,0],[-37,0],[-36,0],[-32,0],[-31,0],[-3,0],[-21,0],[-32,0],[-25,0],[-27,0],[-18,0],[-273,-1],[-323,-1],[-2,0],[-84,0],[-536,-2],[-168,0],[-57,-1],[-59,-2],[-79,-2],[-49,0],[-113,2],[-18,1],[-89,0]],[[80646,31742],[-99,0],[-42,0],[-1,1],[-7,-4],[-34,0],[-61,-1],[-13,0],[-7,-3],[-30,-1],[-63,2],[-73,-1],[-103,-3],[-244,0],[-393,0],[-34,0],[-229,-1],[-17,0]],[[79196,31731],[-1,20],[0,22],[0,48],[1,110],[1,87],[0,77],[0,28],[0,330],[0,712],[0,47],[1,37],[2,63],[-3,245],[-2,101],[-74,-1],[1,366],[0,33],[2,418],[1,800],[4,361],[0,29],[1,161],[0,1],[5,485],[2,252],[3,297],[1,91],[1,69],[2,208],[1,84],[0,44],[9,234],[0,53],[0,173],[0,86],[0,32],[0,65]],[[71328,38149],[-4,-70],[-1,-107],[-4,-202],[-1,-116],[0,-64],[1,-38],[-2,-122],[0,-42],[-5,-194],[-2,-249],[-6,-223],[0,-28],[-2,-130],[-1,-81],[-1,-93],[-5,-297],[-2,-106],[0,-49],[2,-116],[0,-95],[1,-70],[0,-63],[1,-64],[-1,-84],[1,-55],[1,-74],[0,-47],[2,-319],[0,-37],[1,-334],[2,-365],[0,-60],[0,-50],[1,-233],[1,-31],[1,-360],[1,-47],[1,-339],[2,-191],[0,-142],[3,-374],[1,-151],[1,-224],[1,-171],[1,-183],[-40,-12],[-12,-21],[-1,-75],[1,-356],[0,-89],[2,-242],[0,-31],[0,-97],[-1,-130],[0,-138],[-2,-343],[1,-325],[0,-60],[0,-161],[2,-115],[-1,-78],[-1,-93],[0,-44],[0,-23],[1,-219],[1,-228],[0,-3]],[[71267,28776],[-1,-69],[0,-75],[-1,-273],[-14,-3435],[-2,-404],[-1,-331],[-7,-1820],[-4,-922],[0,-48],[-1,-225],[0,-28],[-1,-106],[-1,-331],[-9,-2201]],[[71225,18508],[-106,54],[-24,12],[-45,23],[-66,33],[-45,23],[-207,104],[-104,53],[-22,11],[-135,69],[-19,11],[-133,68],[-20,7],[-247,124],[-5,2],[-129,64],[-120,60],[-43,22],[-201,100],[-77,38],[-170,85],[-316,157],[-209,105],[-78,38],[-140,70],[-37,21],[-53,26],[-314,155],[-147,73],[-61,31],[-175,87],[-135,67],[-146,72],[-213,106],[-107,53],[-67,33],[-15,7]],[[67094,20572],[-25,13],[-92,45],[-33,17],[-198,97],[-44,21],[-79,40],[-31,15],[-113,56],[-61,30],[-40,20],[-105,52],[-66,32],[-13,7],[-365,180],[-173,85],[-74,37],[-104,51],[-54,27],[-266,132],[-193,95],[-137,68],[-55,27],[-183,90],[-105,51],[-211,104],[-7,3],[-81,40],[-199,96],[-119,58],[-75,36],[-107,52],[-103,49],[-103,51],[-296,145],[-195,98],[-103,51],[-3,0],[-269,-25],[-6,0],[-48,-4],[-442,-40],[-715,-62],[-348,-32],[-201,-19],[-42,-4],[-401,-37],[-126,-12],[-245,-23],[-140,-11],[-175,-14],[-103,-12],[-56,-6],[-142,-13],[-108,-9],[-62,-6],[-64,-5],[-134,-12],[-87,-8],[-190,-17],[-157,-15],[-18,2],[-17,-3],[-35,-4],[-103,-11],[-58,-4],[-204,-20],[-164,-15],[-182,-19],[-188,-20],[0,55],[-29,50],[-22,17],[-33,20],[-30,13],[-97,89],[-27,25],[-45,37],[-17,26],[3,38],[15,66],[28,134],[-20,29],[-18,-8],[-25,-22],[-20,1],[-18,8],[-6,28],[-4,31],[-7,32],[-58,36],[-9,19],[0,33],[-76,96]],[[57138,23016],[-1,167],[0,216],[-1,700],[-1,510],[-1,57],[1,36],[0,37],[1,19],[1,7],[-1,48],[-2,310],[1,58],[2,114],[1,143],[1,128],[0,2],[1,142],[3,394],[-1,215],[-1,21],[-2,214],[-4,475],[-1,152],[-2,219],[-1,112],[-2,214],[-2,235],[3,42],[3,36],[21,201],[7,69],[-3,772],[0,434],[-2,770],[-1,374],[0,252],[0,161],[-1,28],[-7,257],[1,199]],[[79196,31731],[-21,1],[-32,1],[-14,1],[-52,1],[2,-21],[0,-5],[1,-15],[0,-37],[1,-299],[1,-405],[1,-62],[1,-30],[-1,-46],[0,-58],[0,-46],[2,-408],[0,-131],[1,-304],[0,-134],[1,-62],[0,-247],[-3,0],[-88,1],[-18,0],[-278,2],[-1,0],[-26,0],[-26,0],[-116,0],[-169,3],[-64,0],[-259,-1],[-15,0],[-244,-25],[-72,-2],[-156,-4],[-32,-1],[1,-236],[3,-396],[0,-101],[0,-264],[0,-66],[-2,-356],[0,-29],[-90,-1],[-299,-5],[-214,-3],[-45,-1],[-129,-2],[-257,4],[-136,3],[-182,-1],[-474,-1],[-3,0],[-44,3],[-154,-3],[-88,-3],[-40,-1],[-91,-4],[-63,-3],[-143,-5],[-143,2],[-24,0],[-16,28],[-6,10],[-19,34],[-16,18],[-7,8],[-4,5],[-34,25],[-10,0],[-13,-1],[-9,0],[-7,-4],[-21,-17],[-77,-65],[-29,-19],[-59,-13],[-28,-3],[-74,4],[-8,3],[-39,14],[-5,2],[-4,5],[-33,35],[-5,5],[-5,9],[-30,50],[-3,6],[-4,9],[-30,67],[-1,1],[-3,12],[-11,37],[-23,25],[-7,3],[-26,12],[-56,18],[-54,17],[-4,0],[-26,0],[-17,12],[-12,9],[-4,5],[-28,29],[-15,8],[-32,6],[-20,-5],[-7,-2],[-12,-11],[-54,-55],[-41,-33],[-111,-6],[-21,13],[-26,9],[-7,3],[-6,-1],[-80,-11],[-17,-3],[-28,3],[-28,3],[-3,4],[-7,8],[-2,3],[0,5],[0,6],[0,23],[28,44],[4,6],[6,14],[3,22],[-5,14],[-4,13],[-14,17],[-3,3],[-59,23],[-9,4],[-6,6],[-39,45],[-5,3],[0,1],[-12,9],[-10,6],[-11,-2],[-7,0],[-9,-1],[-9,-8],[-6,-10],[-6,-9],[-5,-8],[-5,-22],[0,-4],[3,-23],[2,-16],[17,-58],[6,-18],[1,-23],[1,-11],[1,-15],[-2,-11],[-2,-6],[-1,-9],[-9,-16],[-7,-12],[-1,-2],[-9,-7],[-4,0],[-33,-1],[-27,7],[-5,1],[-18,23],[-1,14],[-3,55],[-4,4],[-14,18],[-2,4],[-11,-2],[-9,-1],[-1,0],[-19,-18],[-33,-54],[-7,-13],[-20,-21],[-11,-7],[-27,-6],[-42,-4],[-7,3],[-87,28],[-60,19],[-4,3],[-11,7],[-38,25],[-2,3],[-39,44],[-9,10],[-2,2],[-33,12],[-12,-1],[-96,-8],[-39,21],[-4,2],[-35,12],[-43,-6],[-56,-8],[-25,3],[-25,22],[-4,40],[27,52],[4,2],[4,4],[7,12],[6,12],[4,6],[0,8],[-1,30],[0,8],[-8,18],[-2,2],[-12,14],[-6,7],[-14,8],[-58,-16],[-1,0],[-4,0],[-31,5],[-9,2],[-16,17],[-45,47],[-11,12],[0,3],[0,3],[-30,38],[-17,10],[-14,8],[-12,8],[-28,-3],[-4,-4],[-2,-3],[-16,-2],[-13,-8],[-1,0],[-12,-19],[-2,-4],[-1,-2],[-7,-39],[-2,-3],[-3,-8],[-16,-2],[-3,0],[-7,-1],[-5,4],[-25,18],[-18,15],[-28,36],[-11,5],[-21,-3],[-18,-14],[-33,-42],[-5,-6],[-31,-23],[-6,-2],[-39,-15],[-30,-12],[-15,-5],[-2,-1],[-25,-6],[-26,0],[-45,-14],[-147,32],[0,1],[-70,4],[-15,-8],[-1,-1],[-1,1],[-18,15],[-6,60],[-33,38],[-14,16],[-99,-1],[-4,0]],[[46495,31732],[2,-34],[13,-72],[23,-72],[14,-32],[11,-23],[44,-88],[0,-54],[2,-40],[0,-29],[-2,-42],[-5,-30],[22,-46],[15,-22],[23,-22],[23,-28],[21,-10],[17,-1],[179,-129],[9,-28],[12,-27],[23,-25],[17,-12],[20,-13],[16,-11],[15,-10],[14,-8],[15,-31],[8,-20],[12,-17],[12,-24],[6,-40],[3,-33],[-5,-35],[-2,-29],[5,-33],[20,-20],[14,-16],[15,-23],[13,-20],[16,-19],[29,-1],[24,3],[25,8],[92,-119],[39,-51],[8,-33],[29,-117],[93,-57],[20,-45],[25,-59],[5,-11],[19,-44],[27,-64],[57,-132],[108,-82],[39,-120],[21,-42],[45,-87],[20,-87],[40,-42],[101,-2],[45,-16],[105,-152],[26,-11],[26,-5],[25,-5],[12,-25],[40,-123],[-2,-12],[-70,-141],[-14,-22],[7,-37],[11,-46],[24,-102],[70,-288],[13,-15],[15,-19],[7,-21],[13,-18],[22,-57],[1,-34],[11,-37],[36,-27],[27,-11],[0,-42],[-24,-67],[-9,-28],[-10,-59],[-3,-221],[17,-51],[15,-25],[14,-25],[31,-29],[13,-25],[1,-28],[-11,-32],[8,-23],[142,-223],[11,-18],[25,-38],[15,-20],[28,-16],[30,-50],[16,-28],[-11,-70],[16,-36],[14,-14],[10,-26],[15,-16],[19,-19],[40,-14],[21,-10],[13,-42],[0,-27],[9,-27],[4,-25],[0,-34],[-5,-25],[-6,-25],[-18,-35],[14,-29],[21,-22],[29,-14],[33,-21],[19,-17],[21,-11],[12,-48],[0,-37],[-4,-28],[-2,-34],[48,-123],[65,-164],[18,-45],[22,-55],[36,-7],[17,-5],[4,-30],[3,-39],[0,-26],[12,-33],[5,-24],[11,-28],[16,-12],[16,-16],[2,-29],[7,-24],[2,-41],[-4,-39],[0,-31],[17,-68],[-10,-39],[-15,-20],[-28,-21],[-51,-45],[-6,-31],[7,-30],[-4,-29],[11,-32],[16,-8],[36,-76],[43,-91],[98,-209],[13,-28],[32,-67],[14,-86],[4,-34],[35,8],[9,-21],[18,-99],[-34,-55],[-7,-33],[-9,-31],[12,-39],[23,-73],[19,6],[51,-16],[19,-23],[23,-43],[11,-28],[18,-22],[29,-65],[42,-27],[40,-42],[37,-44],[29,-47],[56,-22],[23,-4],[42,-6],[24,82],[56,54],[49,12],[45,-24],[27,-13],[37,2],[25,2],[42,-46],[46,-95],[18,-20],[33,-17],[112,-151],[16,-52],[15,-9],[35,-11],[22,-50],[17,-25],[16,-89],[3,-38],[19,-78],[11,-17],[26,-87],[28,-35],[91,-113],[51,-64],[39,-115],[32,-60],[23,-35],[28,-44],[44,-30],[12,-44],[16,-60],[62,-92]],[[51107,22529],[-7,-36],[-10,-23],[-15,-30],[-9,-30],[-9,-69],[3,-49],[-21,-117],[32,-56],[93,-19],[55,19],[74,21],[67,-27],[70,-29],[56,-97],[51,-88],[34,-58],[18,-101],[16,-90],[15,-12],[4,-28],[34,-30],[15,-10],[13,-28],[9,-29],[39,-71],[0,-33],[2,-146],[5,-38],[-29,-144],[-1,-3],[-23,-115],[-35,-89],[-10,-27],[7,-50],[12,-31],[-5,-83],[-31,-67],[15,-242],[4,-62],[1,-9],[-27,-79],[-18,-9],[-32,-16],[-21,-4],[-22,-19],[-22,-14],[-29,-24],[-15,-20],[-12,-22],[-21,-18],[-19,-10],[-23,-10],[-18,-29],[2,-29],[0,-31],[-7,-35],[1,-27],[22,-29],[17,-34],[12,-34],[3,-54],[-4,-53],[12,-26],[16,-21],[6,-36],[-2,-29],[-10,-25],[-1,-163],[-49,-82],[-57,-179],[3,-39],[7,-71],[-3,-107]],[[51335,18925],[-254,-4],[-278,-5],[-49,-1],[-20,2],[-17,2],[-50,1],[-122,1],[-20,0],[-1471,26],[-118,-10],[-256,-4],[-411,-3],[-210,-2],[-178,-2],[-1,0],[-140,-1],[-389,-3],[-196,-9],[-566,-8],[-79,-1],[-98,-2],[-28,0],[-65,-1],[-141,-2],[-275,-9],[-35,0],[-200,-10],[-261,-2],[-33,0],[-28,-2],[-19,0],[-31,0],[-1,0],[-14,1],[-4,0],[-37,0],[-60,-2],[-33,-1],[-233,-5],[-28,0],[-262,-9],[-1,0],[-28,1],[-29,0],[-176,-1],[-22,0],[-8,0],[-22,0],[-123,-3],[-82,0],[-169,1],[-86,-1],[-39,0],[-75,1],[-2,0],[-54,-1],[-115,-1],[-7,0],[-7,-1],[-138,-1],[-43,-1],[-204,-2],[-34,0],[-4,-1],[-107,-1]],[[43049,18849],[-84,1],[-39,0],[-1,0],[-132,-2],[-227,-1],[-38,0],[-178,0],[-5,0],[-58,1],[-5,0],[-14,-2],[-98,1],[-18,0],[-9,0],[-9,0],[-21,0],[-8,0],[-11,0],[-19,0],[-13,0],[-6,0],[-18,0],[-14,0],[-5,0],[-17,0],[-24,0],[-15,0],[-25,0],[-25,0],[-40,-1],[-15,0],[-46,0],[-92,0],[-30,0],[-162,-1],[-43,0],[-8,0],[-132,-1],[-38,0],[-91,1],[-134,0],[-3,0],[-127,-1],[-116,2],[-145,-1],[-261,-2],[-131,0],[-42,0],[-89,0],[-95,1],[-42,0],[-5,1],[-36,1],[-40,0],[-44,0],[-253,2],[-85,1],[-48,1],[-58,0],[-23,-4],[-53,0],[-100,-1],[-20,0],[-40,0],[-38,0],[-47,0],[-18,1],[-34,0],[-116,0],[-42,0],[-68,0],[-166,3],[-27,0],[-68,1],[-66,0],[-184,-1],[-102,0],[-104,0],[-60,0],[-42,0],[-18,0],[-196,0],[-258,-2],[-50,1],[-18,0],[-47,0],[-64,-1],[-46,0],[-22,0],[-121,0],[-24,0],[-122,0],[-187,1],[-78,0],[-126,-6],[-35,0],[-75,1],[-22,0],[-66,1],[-379,3],[-44,2],[-29,1],[-200,-3],[-551,-12],[-19,0],[-1,30],[-2,25],[2,654],[-9,246],[-2,119],[0,34],[1,1052],[-247,6],[-209,2],[-92,-7],[-972,19]],[[33716,21015],[0,160],[1,166],[1,181],[0,171],[0,231],[2,45],[-25,37],[-27,28],[-30,8],[-32,-2],[-42,-13],[-28,-21],[-11,-27],[-44,-33],[-30,-15],[-32,-2],[-29,10],[-28,14],[-17,13],[-18,16],[-25,24],[-197,322],[-198,-160],[-74,-21],[-246,123],[-78,232],[-70,116],[-171,252],[-79,101],[-83,28],[-16,14],[-149,-33],[-87,117],[-77,-21],[-247,32],[-169,232],[-3,3],[-99,137],[-16,45],[-34,138],[-65,31],[-79,179],[8,215],[-43,75],[-6,1],[-34,3],[-63,5],[-71,131],[-47,20],[-46,-45],[-59,-55],[-49,4],[-70,56],[-58,17],[-66,-34],[-71,-35],[-41,-23],[-52,-61],[-21,-12],[-2,-39],[-28,-54],[-59,-59],[-42,-14],[-27,7],[-26,39],[-13,28],[-22,1],[-25,18],[-2,56],[1,54],[-8,24],[-33,55],[-50,43],[-47,89],[-4,50],[-23,5],[-34,35],[-7,8],[-29,-6],[-1,-2],[-13,-20],[-38,-28],[-44,-42],[-32,-31],[-76,0],[-62,-73],[0,-60],[-10,-41],[-21,-26],[-38,-8],[-28,1],[-22,-15],[-25,-71],[-23,-7],[-18,-25]],[[29345,24027],[-3,239],[-10,857],[-4,1576],[0,12],[0,375],[-1,350],[8,804],[1,309],[0,1],[1,143],[1,97]],[[21251,28793],[-25,-61],[-6,-15],[-11,-27],[-10,-50],[-3,-15],[-16,-65],[-5,-37],[7,-35],[31,0],[8,-2],[7,-12],[24,-70],[24,-47],[25,-34],[12,-62],[14,-85],[-9,-70],[1,-63],[20,-54],[11,-24],[5,-37],[5,-26],[1,-36],[-6,-47],[-3,-21],[-12,-83],[0,-33],[2,-28],[-11,-27],[-15,-10],[-10,-19],[-4,-34],[13,-35],[19,-29],[10,-19],[9,-19],[12,-31],[12,-22],[4,-111],[14,-12],[17,-29],[47,-151],[18,-10],[22,-8],[14,-14],[20,8],[15,14],[31,24],[19,16],[214,-98],[74,-89],[62,-75],[67,-109],[8,-39],[17,-28],[17,-24],[2,-3],[1,-45],[-31,-33],[-25,-27],[-37,11],[-53,-28],[-10,-26],[14,-129],[13,-108],[-6,-40],[-8,-61],[-45,-84],[-3,-2],[-84,-27],[-32,-60],[-54,-73],[1,-27],[8,-27],[0,-27],[-10,-26],[-22,-5],[-13,-30],[5,-27],[17,-29],[20,-28],[-2,-56],[-6,-25],[-13,-28],[-16,-39],[-2,-41],[3,-25],[21,-69],[0,-68],[-12,-31],[-25,-24],[-41,-40],[-11,-39],[-21,-47],[-34,-76],[-37,-23],[-43,25],[-32,-6],[-20,9],[-47,57],[-78,86],[-87,21],[-25,-11],[-11,-28],[-26,-28],[-71,-77],[-34,-4],[-40,-46],[-7,-112],[-10,-13],[-17,-76],[21,-150],[35,-145],[14,-59],[-16,-33],[-15,-34],[-14,-30],[-13,-45],[17,-46],[66,-11],[90,-16],[55,-10],[45,-24],[3,-25]],[[21249,24251],[-43,0],[-75,0],[-403,-1],[-24,0],[-39,0],[-219,0],[-18,0],[-1,0],[-215,-2],[10,-198],[-22,-143],[21,-115],[-14,-72],[19,-116],[-31,-61],[36,-168],[40,-158],[-6,-67],[-16,-17],[-33,-35],[-65,-34],[-8,-50],[-27,-69],[-20,-51],[-62,-48],[-86,10],[-16,-16],[-4,-50],[-31,-73],[-28,-5],[-32,-7],[-159,31],[-19,-4],[-18,-31],[-23,-48],[-21,-2],[-19,12],[-35,11],[-16,-41],[-22,-58],[-30,-81],[-33,-53],[-33,6],[-132,27],[-8,127],[-23,14],[-29,-15],[-7,-3],[-72,-38],[-33,10],[-13,4],[-33,9],[-108,119],[-74,42],[-42,23]],[[18835,22766],[26,84],[19,61],[-26,82],[-8,78],[24,19],[12,18],[12,13],[10,33],[-21,105],[24,92],[-6,46],[-7,11],[-27,27],[-16,38],[-17,37],[-7,83],[-14,25],[-37,18],[-11,19],[-10,23],[-71,276],[-25,8],[-34,14],[-15,5],[-24,11],[-11,21],[-16,32],[-18,40],[-53,31],[-161,61],[-15,2],[-26,-10],[-22,-16],[-12,3],[-17,17],[-17,33],[-23,79],[-37,132],[-44,100],[13,18],[13,20],[3,32],[-9,21],[-20,32],[-27,26],[-14,17],[-22,98],[-23,41],[-18,13],[-148,14],[-260,-21],[-38,17],[-50,22],[-96,70],[-20,-8],[-35,-10],[-22,-4],[-31,7],[-26,8],[-28,9],[-4,45],[14,40],[10,37],[41,25],[16,16],[19,21],[12,28],[1,44],[-4,31],[-94,100],[-128,8],[-36,2],[-21,11],[-65,-23],[-18,-6],[-21,-5],[-58,-13],[-24,-5],[-18,7],[-16,13],[-17,11],[-35,-9],[-67,19],[-33,36],[-43,84],[1,47],[9,27],[6,32],[-23,155],[-12,33],[-24,2],[-18,6],[-19,3],[-14,-3],[-21,5],[-8,3],[-8,42],[5,24],[8,25],[31,133],[18,48],[1,1],[30,78],[12,86],[13,11],[20,10],[21,17],[4,24],[-18,27],[-15,18],[-12,28],[-3,34],[-4,55],[-4,86],[2,52],[-18,197],[5,168],[-43,285],[-11,73],[66,5],[-2,85],[-2,130],[-3,142],[15,1],[-4,66],[4,98],[0,199],[-264,0],[-133,-1],[-167,0],[-24,0],[-268,6],[1,221],[-1,130],[-1,266],[-1,102],[-5,0],[-191,-2],[-5,185]],[[99955,31824],[-2,-158],[0,-28],[12,-5320],[0,-60],[0,-21],[1,-356],[0,-3],[2,-1650],[3,-326],[19,-5015],[1,-283],[8,-2198],[0,-26],[0,-126]],[[99999,16254],[-202,-5],[-256,3],[-234,1],[-10,0],[-277,-1],[-130,0],[-128,0],[-2,0],[-247,0],[-42,0],[-107,5],[-20,-3],[-21,2],[-67,-3],[-277,-5],[-182,2],[-48,3],[-24,-2],[-15,0],[-179,0],[-23,0],[-42,0],[-48,2],[-150,-1],[-57,-1],[-73,-1],[-39,0],[-127,-1],[-24,1],[-18,0],[-19,0],[-35,1],[-139,-4],[-14,0],[-35,-1],[-259,1],[-120,0],[-78,3],[-3,0],[-141,0],[-21,0],[-18,0],[-40,1],[-37,0],[-6,0],[-56,1],[-255,-1],[-121,0],[-116,5],[-26,-2],[-129,-4],[-20,0],[-109,-1],[-187,0],[-71,0],[-64,-2],[-31,0],[-31,-1],[-79,0],[-55,-2],[-22,0],[-19,0],[-149,-1],[-69,-1],[-130,-1],[-212,-3],[-75,1],[-103,1],[-260,2],[-98,1],[-17,-1],[-104,0],[-195,-1],[-109,-1],[-155,0],[-43,0],[-84,-1],[-71,-1],[-34,-1],[-47,0],[-21,3],[-16,-1],[-29,1],[-235,-3],[-51,0],[-23,0],[-19,0],[-45,0],[-34,-1],[-27,0],[-6,0],[-48,0],[-26,0],[-108,-1],[-71,0],[-35,-1],[-17,0],[-55,0],[-4,0],[-69,3],[-51,0],[-30,0],[-1,0],[-27,0],[-92,1],[-138,0],[-15,0],[-49,0],[-63,1],[-179,-2],[-107,1],[-24,0],[-12,-1],[-52,0],[-1,0],[-63,0],[-79,-1],[-85,0],[-3,0],[-91,0],[-80,0],[-498,2]],[[89940,16238],[-1,721],[0,56],[-1,218],[1,91],[-1,224],[0,129],[-1,595],[0,6],[0,59],[0,69],[1,57],[0,28],[0,107],[-1,174],[0,60],[0,41],[0,55],[0,36],[0,88],[0,76],[0,45],[0,146],[0,103],[0,71],[-1,518],[0,120],[0,3],[0,3],[0,34],[0,33],[1,27],[-1,41],[0,36],[0,33],[0,35],[-1,270],[-1,69],[3,5],[84,3],[13,0],[6,3],[2,10],[0,35],[0,186],[0,85],[0,41],[1,129],[0,46],[0,171],[0,102],[0,26],[0,155],[-1,98],[0,40],[-1,150],[-1,84],[0,44],[-1,90],[0,78],[0,35],[-1,197],[0,53],[0,152],[0,173],[-1,103],[0,262],[-1,353],[-1,337],[0,27],[0,357],[0,352],[-1,188],[-1,185],[-3,53],[-1,153],[0,159],[-1,756],[-1,798],[0,82],[0,37],[0,99],[0,9],[0,51],[-2,255],[0,10],[-1,27],[0,57],[0,84],[-1,134],[0,133],[0,2],[-1,271],[-1,93],[-2,179],[-1,183],[-1,48],[-2,310],[-1,262],[0,37],[0,39],[0,389],[0,51],[0,39],[0,42],[1,90],[1,146],[-2,361],[0,173],[0,273],[0,37],[2,53],[1,38],[4,274],[-3,205],[-3,218]],[[57138,23016],[-63,50],[-19,-12],[-22,-27],[-44,5],[-17,-2],[-25,23],[-14,39],[-17,33],[4,40],[1,44],[-9,20],[-9,25],[4,30],[11,26],[22,50],[-1,34],[1,57],[2,51],[-11,41],[-24,20],[-2,45],[10,64],[-8,60],[-19,14],[-44,26],[-12,20],[-13,29],[-29,18],[-10,18],[-41,93],[-57,32],[-5,4],[-38,-17],[-10,-64],[-35,-64],[-33,-23],[-50,-8],[-75,-60],[-42,1],[-16,-1],[-76,-38],[-64,51],[-37,51],[-23,41],[-49,11],[-28,-10],[-28,23],[-14,18],[-8,29],[15,29],[-5,25],[-12,16],[-10,20],[1,31],[10,24],[-3,74],[-17,10],[-5,35],[-15,7],[-63,5],[-10,27],[-22,28],[-4,27],[5,24],[11,22],[23,56],[27,19],[1,27],[-2,29],[-14,30],[-70,76],[-47,52],[-21,12],[6,44],[18,35],[11,43],[-13,23],[-21,18],[-28,26],[-16,-11],[-20,-20],[-21,6],[-47,102],[-18,30],[-10,216],[12,30],[20,53],[36,24],[7,29],[-23,26],[-27,29],[-20,32],[-225,230],[-22,-14],[-22,-9],[-22,-22],[-28,-8],[-31,-12],[-114,-92],[-16,-17],[-17,-35],[-21,-20],[-51,-29],[-26,-26],[-42,-80],[-19,-14],[-14,-95],[11,-41],[29,-148],[-25,-56],[-21,0],[-23,7],[-29,-9],[-30,-10],[3,-27],[-1,-133],[-11,-25],[-15,-15],[-21,14],[-30,-18],[-15,-7],[-23,-10],[1,-29],[10,-32],[1,-26],[-21,-11],[-16,-19],[-11,-19],[-2,-31],[4,-40],[14,-50],[-18,-27],[-21,12],[-18,-7],[-20,-4],[-20,-8],[-16,-17],[-13,-18],[-6,-27],[0,-41],[-12,-19],[-20,8],[-24,2],[-22,9],[-43,-21],[-13,-7],[-15,-7],[-53,-26],[-16,-55],[18,-24],[9,-64],[-18,-25],[-10,-19],[-25,-32],[-64,-28],[-34,-15],[-18,-31],[-9,-30],[-19,-45],[-51,-123],[-21,-35],[-66,-108],[-34,-127],[1,-47],[-2,-98],[-19,-128],[-115,-259],[-5,-76],[-46,-89],[-35,-32],[-8,-24],[-19,-21],[-26,-25],[-18,-12],[-18,3],[-15,15],[-60,57],[-8,123],[-12,29],[-19,-1],[-16,-9],[-32,18],[-45,88],[-12,53],[-1,59],[-1,66],[12,49],[-2,37],[-54,125],[-11,30],[-59,97],[-19,32],[-38,56],[-11,16],[-5,8],[-42,27],[-46,-4],[-38,-3],[-52,-24],[-1,0],[-30,-14],[-37,-30],[-15,-13],[-38,-42],[-28,-36],[-103,-136],[-30,-40],[-20,-7],[-73,-22],[-102,-32],[-40,-12],[-49,-37],[-87,-65],[-74,-85],[-27,-31],[-110,-125],[-18,-22],[-155,-217],[-54,-74],[-146,-131],[-42,-3],[-72,-4],[-35,-2],[-102,113],[-85,32],[-28,-1],[-119,-4],[-68,-3],[-103,28],[-25,2],[-33,-15],[-47,-19],[-39,-4],[-20,-2],[-30,17]],[[89940,16238],[-41,0],[-223,-6],[-130,3],[-22,1],[-51,0],[-54,0],[-78,0],[-23,0],[-30,0],[-43,0],[-57,0],[-27,0],[-218,1],[-32,0],[-146,6],[-122,8],[-196,1],[-34,-2],[-16,0],[-29,-2],[-45,0],[-43,-1],[-139,-3],[-21,-1],[-129,1],[-69,1],[-189,1],[-125,-1],[-56,0],[-147,-1],[-43,0],[-24,0],[-124,-1],[-40,0],[-40,0],[-37,0],[-17,0],[-62,0],[-123,-1],[-55,0],[-483,-2],[-20,0],[-25,-1],[-226,-1],[-43,0],[-17,5],[-17,10],[-3,0],[-15,-1],[-19,-10],[-42,0],[-32,0],[-51,-1],[-80,0],[-48,0],[-23,0],[-65,-2],[-77,-3],[-15,-2],[-278,-2]],[[85261,16232],[-74,-1],[-2,0],[-77,1],[-399,0],[-41,-3],[-112,7],[-37,-2],[-48,4],[-41,0],[-176,-2],[-35,0],[-143,1],[-15,0],[-43,0],[-58,-2],[-26,0],[-52,0],[-35,0],[-67,1],[-42,1],[-30,0],[-38,2],[-65,3],[-23,1],[-68,3],[-86,4],[-194,-2],[-40,0],[-1,0],[-19,0],[-166,0],[-22,0],[-71,0],[-36,-1],[-32,0],[-190,-1],[-126,4],[-290,-3],[-44,-4],[-37,1],[-25,0],[-117,2],[-33,-1],[-43,0],[-63,-1],[-59,-1],[-48,-1],[-37,0],[-31,-1],[-29,-2],[-5,-1],[-14,-1],[-24,2],[-16,0],[-34,-1],[-116,-3],[-41,-1],[-203,-3],[-24,-1],[-6,0],[-62,1],[-31,1],[-105,3],[-161,-1],[-250,4]],[[80583,16238],[-1,158],[0,142],[0,63],[6,118],[1,255],[-3,45],[1,49],[0,8],[-1,48],[-4,192],[5,230],[4,138],[0,179],[0,27],[2,609],[3,391],[-1,226],[0,126],[-1,304],[0,269],[0,128],[-1,174],[0,334],[-1,254],[16,0],[39,0],[0,485],[0,81],[0,160],[0,68],[0,32],[0,264],[0,213],[1,531],[0,81],[2,239],[2,220],[2,167],[2,226],[1,159],[3,78],[3,108],[7,287],[2,37],[-2,195],[-1,136],[-1,147],[0,61],[-8,182],[0,26],[1,27],[0,66],[0,142],[0,62],[1,72],[0,106],[1,56],[-1,51],[2,212],[0,356],[0,1],[0,38],[0,17],[0,21],[1,42],[0,8],[0,54],[1,58],[-1,119],[0,30],[-1,77],[1,160],[-1,31],[0,16],[1,41],[0,118],[-1,85],[0,104],[0,110],[-1,31],[0,12],[1,47],[-1,115],[0,98],[-1,141],[1,169],[1,93],[0,2],[1,102],[-1,49],[-4,133],[2,80],[0,201],[-1,210],[-2,305],[0,28],[0,44],[-2,394],[-1,415],[-1,95],[0,92],[0,2],[0,26],[-2,376],[0,29],[-2,679],[-4,221],[-1,385]],[[80583,16238],[-307,0],[-1,0],[-81,1],[-288,2],[-236,-3],[-180,-3],[-61,-1],[-36,-3],[-180,-11],[-174,5],[-606,8],[-45,1],[-6,0],[-49,1],[-901,11],[-96,-1],[-471,-1],[-14,0],[-168,-1],[-770,-6],[-262,-1],[-1183,30],[-309,-1],[-26,2],[-57,-2],[-186,-6],[-20,-1],[-45,0],[-11,-1],[-211,-1],[-169,-2],[-34,0],[-131,-1],[-316,-3],[-111,-1],[-90,-1],[-204,-2],[-93,-1],[-245,-2],[-121,5],[-145,0],[-34,0],[-21,0],[-36,0],[-27,0],[-7,0],[-47,0],[-27,0],[-119,-1],[-127,0],[-131,1],[-101,0],[-42,2260]],[[18835,22766],[-10,-29],[-19,-31],[-10,-43],[-48,-69],[-60,-15],[-4,-94],[-25,-44],[-80,-63],[1,-77],[0,-78],[-78,-159],[-61,5],[-91,-159],[-12,-20],[-25,-44],[-103,-21],[-11,-35],[8,-23],[30,-67],[5,-95],[1,-36],[6,-113],[1,-20],[3,-59],[-8,-23],[-27,4],[-16,0],[-14,-26],[-11,-20],[-3,-30],[11,-32],[16,-19],[-10,-86],[-50,-37],[-29,-21],[-17,-21],[-5,-39],[-30,-113],[-39,-144],[-13,-46],[-16,-21],[-18,2],[-81,56],[-76,-42],[-14,-50],[-24,-13],[-17,-6],[-22,-16],[-30,-15],[-7,-22],[-9,-23],[-17,-25],[-14,-24],[-12,-18],[-40,-23],[-31,-22],[-17,-19],[-14,-11],[-9,-30],[3,-51],[40,-81],[21,-13],[-6,-24],[-15,-31],[-18,-26],[-14,-52],[13,-17],[13,-13],[13,-12],[20,-28],[16,-16],[13,-10],[-20,-59],[-6,-47],[-9,-29],[-34,-12],[-21,-32],[-78,-117],[-59,-88],[-13,-44],[-9,-44],[-10,-39],[-6,-26],[-27,-12],[-26,0],[-19,26],[-47,22],[-17,12],[-24,3],[-47,-2],[-23,-7],[-36,-6],[-19,-1]],[[17089,19526],[-8,33],[-13,18],[-21,27],[-21,16],[-31,10],[-33,33],[-4,60],[-8,31],[-24,23],[-13,16],[-85,-6],[-24,-3],[-77,-10],[-21,38],[-36,69],[10,114],[8,93],[-37,86],[-9,22],[-61,30],[-25,20],[-27,29],[-22,12],[-25,8],[-15,21],[-61,88],[-5,7],[-128,193],[-16,49],[-47,73],[-231,-14],[-56,79],[-7,10],[-29,40],[-66,163],[-32,2],[-197,-76],[-17,-1],[-18,5],[-43,11],[-20,18],[-26,51],[-20,57],[-15,35],[-8,36],[-17,38],[-14,29],[-15,15],[-23,11],[-24,24],[-9,22],[-12,30],[-11,39],[-11,33],[-5,24],[1,33],[-4,33],[-3,25],[-12,31],[-10,22],[-42,-7],[-73,-12],[-20,-4],[-15,6],[0,1],[-13,12],[-16,8],[-23,-13],[-24,-11],[-20,-17],[-18,-5],[-33,22],[-13,24],[-18,5],[-19,-11],[-21,-13],[-18,-3],[-18,-9],[-15,-3],[-16,-1],[-28,6],[-30,5],[-14,-12],[-20,-6],[-24,3],[-21,2],[-19,1],[-13,-20],[-18,-13],[-17,-18],[-20,-29],[-17,0],[-24,-8],[-29,-9],[-20,-10],[-17,-2],[-31,1],[-22,-3],[-20,-29],[-24,-41],[-15,-27],[-15,-31],[-49,-32],[3,-26],[10,-33],[-21,-18],[-26,-10],[-24,32],[-4,48],[-14,18],[-28,20],[-19,22],[-7,30],[-10,25],[-6,27],[-9,26],[-17,11],[-18,-4],[-12,-14],[-30,-70],[-36,-19],[-17,-11],[-48,-56],[-29,-6],[-12,-15],[-25,-29],[-14,-22],[-22,4],[-16,-3],[-47,-41],[-31,16],[-23,2],[-16,-1],[-4,26],[10,28],[-4,25],[-2,25],[-9,26],[-16,27],[-9,21],[-14,25],[-17,14],[-23,5],[-35,39],[-16,9],[-22,24],[-11,18],[-23,20],[-25,12],[-23,19],[-25,-15],[-23,-12],[-20,-17],[-21,-2],[-20,1],[-17,-3],[-12,-20],[-18,-14],[-20,2],[3,-54],[0,-32],[-10,-24],[-10,-34],[-8,-23],[-12,-16],[-14,-18],[-18,-12],[-18,-12],[-11,-23],[-17,-24],[-27,-33],[-25,-36],[-13,-14],[-10,-29],[-13,-17],[-11,-18],[-3,-33],[-1,-27],[-14,-11],[-12,16],[-7,31],[-11,22],[-7,31],[-7,36],[-18,1],[-18,18],[-19,-12],[-12,-19],[-7,-24],[-2,-25],[-7,-27],[-28,18],[-16,2],[-33,-16],[-29,-7],[-19,-7],[-16,-3],[-17,11],[-15,12],[-16,5],[-14,-4],[-21,-26],[-10,-21],[-9,-24],[-29,-20],[-15,5],[-19,10],[-20,11],[-22,9],[-17,-4],[-28,-20],[-20,-23],[-18,-32],[-16,-31],[-10,-20],[-15,-20],[-15,-5],[-19,-3],[-27,-8],[-19,-6],[-20,-9],[-15,-12],[-16,-9],[-20,-4],[-19,-3],[-24,1],[-17,1],[-16,-1],[-26,-20],[-29,-18],[-35,-22],[-26,-12],[-15,-6],[-22,-1],[-9,20],[14,20],[-7,32],[-10,24],[-3,42],[0,42],[-6,46],[-14,49],[-19,11],[-15,19],[-9,28],[-17,5],[-20,6],[-6,26],[13,16],[-10,28],[-19,4],[-17,15],[-15,10],[-7,27],[-11,19],[-8,25],[-18,15],[-25,18],[-3,28],[4,37],[-8,40],[-7,39],[-8,32],[-8,59],[-11,44],[-6,40],[-2,36],[2,35],[4,25],[0,36],[-21,13],[-12,23],[2,38],[-3,27],[-10,31],[-6,28],[-16,25],[-12,22],[-4,29],[-3,25],[-6,28],[-12,34],[-7,25],[-7,32],[-21,3],[-19,12],[-31,23],[-35,22],[-28,11],[-17,23],[-6,29],[-10,28],[-3,34],[-13,20],[-63,76],[-33,53],[-5,34],[17,63],[1,24],[-683,-9],[-93,-2],[-367,-6],[-159,-3],[-137,-2],[-110,6],[-33,-5],[-97,-5],[-19,4],[-216,-2],[-398,5],[-270,4],[-245,7],[-393,1],[-259,1],[-266,2],[-967,11],[-399,7],[-28,1],[-59,2],[-42,3],[-6,0],[-14,-2],[-325,0],[-151,1],[-161,-1],[-110,0],[-28,1],[-159,0],[-116,0],[-175,1],[-131,0],[-74,0],[-191,2],[-40,0],[-56,0],[-64,-2],[-176,1],[-35,0],[-84,0],[-53,1],[-147,0],[-132,1],[-80,0],[-236,2],[-17,-31],[-9,-31],[-1,-48],[1,-23],[0,-2],[9,-14],[1,-6],[1,-14],[-36,-177],[-3,-19],[-230,1],[-76,0],[-104,1],[-26,0],[-44,0],[-126,0],[-32,-1],[-28,1],[-118,1],[-134,2],[-16,0],[-29,-10],[-49,2],[-17,-2],[-19,2],[-21,2],[-48,3],[-17,0],[-53,1],[-196,2],[-37,1],[-129,1],[-145,1],[-10,0],[-1,0],[-263,0],[-43,1],[-47,0],[-10,0],[-89,0],[-57,-1],[-15,0],[-60,0],[-68,0],[-129,0],[-79,0],[-77,-2],[-108,0],[-244,0],[-153,1]],[[267,22160],[7,650],[-9,436],[-3,355],[-14,596],[-1,290],[-1,65],[1,113],[1,385],[1,73],[0,56],[0,227],[1,155],[3,1010],[1,403],[1,442],[0,36],[1,228],[0,91],[0,80],[1,389],[1,172],[0,160],[1,367]],[[29345,24027],[-24,-1],[-18,14],[-16,9],[-23,-17],[-6,-53],[-1,-76],[0,-46],[-5,-25],[-7,-23],[-19,-19],[-32,11],[-45,23],[-45,28],[-26,45],[-21,37],[-30,37],[-20,10],[-17,8],[-22,-4],[-18,-5],[-32,-27],[-9,-20],[-16,-43],[-12,-12],[-42,-17],[-51,-14],[-24,-3],[-31,3],[-16,13],[-22,21],[-26,26],[-19,23],[-25,20],[-24,4],[-19,-16],[-15,-8],[-17,3],[-18,28],[-16,38],[-11,37],[-3,34],[-11,34],[-22,13],[-21,-1],[-27,4],[-14,11],[-14,25],[-15,-11],[-4,-34],[-7,-24],[-20,-41],[-19,-36],[-24,-21],[-19,-10],[-20,-2],[-23,6],[-30,1],[-54,-15],[-34,-18],[-13,-28],[-16,-36],[-14,-13],[-19,-9],[-21,-9],[-18,0],[-17,3],[-20,19],[-19,18],[-39,28],[-24,34],[-5,39],[-16,5],[-10,-30],[-11,-46],[-13,-62],[-7,-59],[-14,-31],[-19,-32],[-32,-31],[-25,-16],[-48,-18],[-72,-22],[-16,-6],[-18,-16],[-18,-12],[-28,-23],[-22,-13],[-23,-12],[-24,-6],[-19,1],[-15,0],[-18,5],[-21,20],[-25,5],[0,-131],[0,-901],[0,-560],[-6,-227],[13,-658],[1,-44],[0,-64],[0,-1],[2,-91],[1,-40],[1,-28],[-6,-256],[0,-31],[-3,-109],[-8,-431],[-1,-20],[-2,-124],[-3,-128],[-2,-74],[-3,-162],[0,-11],[-9,-438],[-11,-179],[-29,-828],[-1,-26],[-6,-193],[-3,-89],[-2,-45],[-6,-187],[-16,-490],[278,-8],[25,-4],[1,-355],[0,-502],[0,-2],[1,-388],[-11,-322],[-11,-200],[-5,-89],[-2,-126],[-6,-538],[-4,-280],[-3,-272],[-5,-384],[-5,-391],[-7,-515],[-12,-658],[0,-227],[0,-29],[0,-63],[1,-28],[0,-151],[0,-179],[0,-78],[0,-33],[-1,-475]],[[27520,10735],[-525,0],[-16,0],[-362,0],[-28,0],[-14,0],[-31,0],[-77,0],[-2,0],[-126,0],[-79,1],[-352,-1],[-3,0],[-122,0],[-560,1],[-743,2],[-199,0],[-279,14],[-24,-1],[-276,-4],[-942,-15],[-276,-4]],[[22484,10728],[1,129],[1,725],[0,17],[0,9],[-3,994],[5,54],[-1,372],[-1,1164],[-1,644],[-1,937],[0,98],[0,263]],[[22484,16134],[0,89],[0,619],[0,57],[0,476],[0,545],[-1,817],[1,153],[-1,448],[0,3],[3,1],[38,13],[151,-86],[27,25],[-4,62],[111,323],[-3,105],[1,106],[1,72],[-36,103],[-38,70],[-17,49],[-14,39],[-11,51],[-16,82],[-8,37],[-110,146],[-75,90],[-1,1],[-27,33],[-105,83],[-60,-31],[-25,-13],[-184,53],[-89,95],[2,29],[-17,199],[-32,67],[-16,33],[-9,20],[-4,27],[15,30],[0,37],[-1,25],[10,24],[18,-1],[7,23],[2,78],[1,45],[3,45],[-25,66],[-12,32],[-48,127],[-3,8],[-48,127],[-33,31],[-36,31],[-39,41],[-17,126],[9,22],[19,34],[11,24],[19,45],[-7,29],[-8,58],[5,32],[26,-5],[18,15],[14,7],[27,34],[16,56],[-3,31],[0,42],[15,6],[41,32],[0,112],[-33,37],[-41,53],[-15,55],[-9,34],[-2,73],[6,25],[-12,45],[-14,33],[-19,25],[-26,29],[-15,15],[-14,14],[-10,24],[2,33],[10,26],[-22,67],[-12,166],[7,46],[72,154],[0,76],[-23,26],[-23,36],[-21,31],[-16,4],[-23,3],[-25,10],[-17,5],[-17,5],[-24,4],[-23,4],[-34,11],[-23,21],[-19,19],[-30,26],[-23,20],[-18,13],[-19,7],[-50,44],[-14,29],[-4,37],[-7,40],[-7,37],[-16,2],[-17,1],[-15,15],[-10,29],[2,48]],[[67094,20572],[-71,-98],[-180,-247],[-39,-53],[-20,-28],[-38,-45],[-192,-210],[-117,-128],[-332,-365],[-44,-47],[0,-1],[-295,-322],[-126,-138],[-51,-53],[16,-112],[10,-64],[-208,-511],[-78,-193],[-12,-28],[-132,-325],[-158,-390],[-23,-55],[-39,-96],[-159,-386],[-37,-84],[-113,-283],[-106,-265],[-100,-250],[-9,-22],[-85,-207],[-73,-190],[-1,-204],[-3,-653],[-103,-113],[-60,-66],[-455,-495],[-119,-130],[-133,-145],[-151,-165],[-46,-212],[-28,-135],[-24,-102],[-6,-28],[-75,-92],[-140,-180],[-93,-117],[-245,-13],[-52,5],[-1,0],[-24,4],[-29,5],[-101,17],[-45,0],[-23,-1],[-43,-30],[-13,-9],[-14,-33],[-17,-43],[-3,-6],[-58,-142],[0,-27],[15,-34],[10,-22],[34,-79],[26,-58],[-80,-241],[-27,-397],[5,-86],[5,-87],[8,-117],[-268,-146],[-154,-193],[-253,-203],[-82,-109],[9,-156],[-21,-61],[-315,-16],[-135,-59],[-49,-22],[-18,-9],[-23,-4],[-15,3],[-20,5],[-63,24],[-44,-17],[-53,17],[-64,20],[-18,-30],[-27,-48],[-41,28],[-49,0],[-13,-22],[-17,-57],[-23,3],[-20,16],[-14,8],[-16,-3],[-20,-24],[-30,-36],[-69,-5],[-39,11],[-119,32],[-9,-2],[-3,-1],[-46,-19],[-156,-127],[-214,-15],[-154,-119],[-19,17],[-13,16],[-17,18],[-25,10],[-21,8],[-113,18],[-26,4],[-125,85],[-20,20],[-213,64],[-20,19],[-21,-8],[-28,-9],[-23,-11],[-15,-12],[-11,-18],[-16,-29],[-12,-26],[-10,-32],[-17,-30],[-24,-19],[-72,27],[-171,-60],[-21,-32],[-10,-19],[-11,-22],[-20,-29],[-17,-28],[-14,-19],[-21,-27],[-16,-17],[-135,-88],[-67,-44],[-12,-16],[-23,-13],[-27,-8],[-28,12],[-18,11],[-21,29],[-23,12],[-23,1],[-20,-2],[-37,-9],[-97,-217],[-22,-36],[-49,-77],[-86,-99],[-52,-18],[-96,-34],[-10,-108],[-5,-49],[2,-43],[1,-20],[8,-165],[-21,-20],[-32,-15],[-18,1],[-18,0],[-25,8],[-26,15],[-4,3],[-103,-52],[-56,-65],[-76,-119],[-230,-113],[-19,-11],[-10,-21],[-16,-34],[-10,-23],[-12,-24],[-13,-22],[-17,-24],[-3,-25],[-4,-42],[-16,-19],[-54,-9],[-166,-26],[-41,-6],[-19,-27],[-7,-14],[-6,-12],[1,-48],[2,-91],[-59,-99],[-46,-38],[-33,-24],[-133,-98],[-24,-18],[-28,-3],[-24,-3],[-18,2],[-17,5],[-28,4],[-18,-4],[-18,6],[-18,8],[-15,12],[-15,15],[-55,15],[-182,-62],[-30,-10],[-12,-23],[-10,-23],[-15,-11],[-21,-9],[-17,4]],[[55652,7498],[-122,-83],[-21,14],[-17,31],[0,17],[1,53],[20,118],[-42,365],[21,75],[-14,92],[-4,81],[9,32],[10,24],[26,35],[6,38],[-4,25],[-8,26],[-12,23],[-12,41],[-16,18],[-13,40],[-4,29],[16,53],[8,32],[8,27],[12,21],[10,28],[-1,29],[-6,29],[-17,38],[-7,42],[1,36],[3,33],[-20,50],[0,79],[-17,82],[13,84],[28,155],[-41,110],[-3,35],[7,22],[13,40],[8,22],[10,23],[10,22],[-17,99],[-1,41],[11,60],[13,14],[36,40],[7,25],[9,30],[18,42],[23,55],[18,34],[248,58],[32,7],[24,23],[22,20],[16,11],[14,29],[5,28],[10,32],[11,28],[9,22],[-3,26],[-7,35],[-19,6],[-20,4],[-19,9],[-19,11],[-17,16],[-17,28],[-16,34],[-24,281],[-52,54],[-1,9],[-24,179],[6,40],[-2,34],[-15,52],[-61,205],[-20,60],[-38,108],[-31,22],[-19,-8],[-15,-21],[-18,-21],[-15,-17],[-19,-6],[-106,24],[-38,9],[-17,34],[2,19],[13,34],[9,44],[-7,49],[-36,293],[-13,31],[-21,29],[-11,22],[-17,17],[-1,52],[12,18],[17,15],[19,13],[16,17],[14,23],[9,21],[1,4],[4,41],[-12,43],[-15,37],[-16,16],[21,190],[45,519],[-16,124],[-48,191],[-17,78],[-72,105],[5,51],[7,79],[18,54],[23,65],[-9,25],[-32,54],[-14,30],[-142,305],[-101,195],[-155,100],[-45,64],[-17,24],[-9,15],[4,73],[13,13],[98,87],[63,118],[6,25],[40,-3],[48,-23],[38,-18],[13,-11],[9,123],[-28,96],[-1,91],[36,145],[44,84],[17,32],[28,15],[2,0],[6,37],[-16,45],[-19,13],[-51,-7],[-63,7],[-101,12],[-132,108],[-15,34],[-27,16],[-34,-34],[-19,-19],[-9,-42],[-3,-27],[-29,-12],[-21,-5],[-72,-7],[-131,41],[-68,125],[-4,30],[-16,24],[-22,15],[-18,-5],[-16,-2],[-16,2],[-17,2],[-23,11],[-16,23],[-13,28],[-4,50],[8,46],[1,30],[-11,38],[-4,24],[-14,11],[-15,2],[-15,5],[-90,-43],[-123,54],[-17,41],[-26,64],[-20,12],[-19,16],[-18,1],[-15,-19],[-15,-7],[-18,-2],[-46,119],[-10,27],[-113,60],[-3,41],[0,41],[-11,27],[-15,10],[-160,-112],[-74,-108],[-213,-147],[-29,-18],[-178,-14],[-58,-45],[-64,-50],[-97,-28],[-79,27],[-89,24],[-81,-109],[-68,-170],[-15,-8],[-24,-3],[-15,-4],[-18,-17],[-14,-22],[-10,-28],[-20,-43],[-13,-35],[-9,-32],[-96,-121],[-87,0],[-73,58],[-83,-65],[-132,35],[-303,-105],[-107,-405],[-32,-146],[-143,-131],[-39,-35],[-73,-67],[-122,-62],[-65,-19]],[[50931,14598],[-5,33],[-13,21],[-42,49],[-14,15],[-51,60],[-1,74],[-3,109],[-60,57],[-25,30],[-14,25],[-2,32],[16,17],[104,52],[-3,131],[-19,58],[-15,82],[-35,98],[20,52],[16,45],[54,158],[2,149],[23,199],[7,30],[36,143],[3,163],[15,24],[27,44],[27,44],[56,173],[13,24],[1,35],[-20,96],[17,99],[9,57],[-12,133],[-39,108],[-14,170],[16,75],[21,106],[14,139],[6,27],[16,1],[15,-1],[17,1],[17,25],[11,20],[9,33],[14,14],[101,105],[80,84],[11,21],[10,31],[18,54],[19,139],[8,54],[-5,28],[-16,26],[-9,31],[2,41],[5,30],[10,24],[5,27],[13,28],[-2,30],[-11,19],[0,27],[-8,26],[-14,18],[-17,15],[-11,21],[1,32],[0,32],[-1,55]],[[22484,16134],[-241,0],[-22,4],[-515,0],[-2,0],[-785,0],[-479,-1],[-188,0],[-212,0],[-473,-1],[-32,0],[-33,0],[-8,0],[-728,-1],[-107,20],[-119,0],[-430,-3],[-7,0],[-166,-1],[-38,0],[-31,-1],[-319,-2],[-241,-1],[-430,0],[-42,0],[-321,-2],[-32,-1],[-98,0],[-222,-3],[-6,0],[-278,-2],[-227,-1],[-27,0],[-16,1],[-20,-2],[-84,-1]],[[15505,16136],[56,22],[12,14],[29,13],[26,-5],[17,3],[30,30],[9,27],[6,37],[6,51],[11,17],[11,23],[-5,34],[-13,21],[-39,148],[-9,27],[5,38],[0,33],[-12,35],[-20,33],[-13,17],[-3,25],[3,35],[-14,54],[-6,23],[1,42],[-18,48],[-16,37],[-17,55],[1,38],[-31,59],[-22,39],[-23,18],[11,35],[22,37],[29,36],[-2,38],[2,51],[14,32],[4,25],[1,50],[18,40],[31,31],[17,23],[10,31],[13,14],[26,11],[12,16],[28,25],[7,38],[29,25],[18,19],[24,8],[29,-10],[20,11],[24,-12],[16,-2],[16,4],[16,-8],[10,-24],[14,-25],[9,-24],[28,-7],[16,-7],[22,-1],[12,12],[16,33],[7,22],[24,16],[17,30],[8,23],[20,28],[25,21],[24,9],[35,1],[15,2],[16,-8],[19,6],[50,16],[12,17],[18,14],[20,4],[21,-1],[21,18],[4,34],[-6,38],[17,3],[16,16],[19,22],[19,5],[32,13],[30,16],[14,-13],[20,17],[15,0],[16,0],[22,-15],[14,-26],[46,15],[23,8],[31,-8],[24,-7],[21,5],[19,8],[16,1],[17,-21],[20,-15],[15,-24],[33,53],[14,32],[13,17],[9,42],[-9,37],[-27,63],[0,33],[10,27],[5,40],[-1,26],[-7,33],[3,53],[-1,43],[-3,25],[-6,46],[11,19],[10,22],[17,28],[9,26],[9,22],[21,23],[8,29],[33,22],[18,8],[1,29],[8,29],[13,34],[-1,52],[13,31],[25,56],[-16,18],[-3,56],[2,26],[-37,40],[-19,4],[-49,22],[11,57],[16,47],[17,18],[19,8],[17,28],[-7,49],[24,33],[15,25],[10,19],[16,34]],[[33716,21015],[-4,-437],[0,-33],[-1,-229],[0,-158],[-1,-53],[0,-36],[-1,-311],[0,-48],[-2,-64],[0,-94],[0,-164],[-1,-231],[-9,-235],[-1,-32],[-1,-160],[-4,-589],[-1,-132],[0,-38],[0,-27],[0,-18],[0,-26],[-1,-96],[-1,-328],[0,-82],[2,-642],[-228,0],[-2,-577],[-1,-220],[4,-182],[0,-37],[1,-71],[2,-56],[1,-78],[2,-89],[1,-44],[0,-3],[0,-28],[-1,-28],[0,-12],[0,-27],[-1,-136],[1,-226],[1,-309],[0,-132],[1,-287],[0,-34],[0,-26],[0,-3],[1,-218],[1,-432],[1,-160],[0,-132],[1,-220],[0,-120],[-2,-209],[0,-57],[0,-242],[0,-158],[0,-288],[1,-439],[0,-253],[0,-53],[0,-612],[0,-1],[0,-193],[0,-92]],[[33474,10268],[0,-199],[-267,-5],[-300,-2],[-40,-1],[-281,-10],[-249,-8],[-151,-6],[-510,-17],[-49,-1],[-438,-14],[-63,9],[-315,-4],[-7,0],[-127,-2],[-457,-5],[-309,-4],[-208,-3],[-358,-5],[-312,-10],[-324,-10],[-23,0],[-8,0],[-122,0],[-94,1],[-61,0],[-57,0],[-261,2],[-28,0],[-278,0],[-37,1],[-176,0],[-45,-2],[1,288],[0,166],[0,250],[0,58]],[[15505,16136],[-96,-1],[-303,-4],[-9,0],[-95,-2],[-320,-3],[-96,-1],[-183,-2],[-81,1],[-45,0],[-24,0],[-17,0],[-22,-1],[-54,-2],[-120,-1],[-23,0],[-67,-1],[-143,-1],[-177,-2],[-63,0],[-177,-12],[-74,-4],[-210,-32],[-302,-39],[-250,-16],[-167,-13],[-50,-3],[-129,-6],[-333,-13],[-340,-10],[-213,-2],[-1,0],[-577,-9],[-18,-1],[-25,-1],[-378,-4],[-12,0],[-4,0],[-19,-1],[-359,-4],[-175,4],[-67,-1],[-87,0],[-28,0],[-48,0],[-65,-1],[-36,-1],[-63,-1],[-71,-1],[-30,1],[-97,13],[-5,1],[-92,4],[-73,1],[-16,0],[-130,2],[-74,1],[-25,-1],[-137,-6],[-24,-1],[-241,0],[-88,-1],[-39,0],[-245,1],[-162,1],[-120,0],[-40,0],[-251,1],[-21,0],[-55,0],[-260,1],[-270,1],[-141,1],[-237,0],[-224,-2],[-36,0],[-76,0],[-50,1],[-77,0],[-58,1],[-46,1],[-73,3],[-95,4],[-65,4],[0,-40],[-386,-2],[-19,0],[-8,0],[-32,1],[-29,0],[-5,0],[-8,0],[-14,0],[-364,2],[-151,0],[-15,0],[-108,1],[-20,-2],[-22,1],[-24,1],[-72,0],[-49,0],[-191,3],[-17,0],[-167,2],[-127,1],[-73,0],[-154,3],[-391,-5],[-276,3],[-264,6],[-260,-3],[-101,-1],[-229,-3],[-82,-172],[-60,-121],[-30,-61],[-105,-214],[-17,-36],[-14,-28],[-491,-1005],[-51,-105],[-52,-104],[-243,-497],[-46,-93],[-94,-191],[-17,-32],[-29,-61],[-211,-453],[-60,-116],[-144,-277],[-17,-31],[-38,-74]],[[239,12274],[5,382],[18,765],[1,399],[-1,286],[-1,272],[1,450],[1,425],[0,137],[-5,200],[2,85],[-1,67],[0,31],[0,182],[-2,438],[-1,404],[1,46],[2,301],[1,198],[0,1],[4,580],[0,49],[0,76],[1,236],[0,361],[-3,130],[-3,114],[1,110],[2,337],[0,70],[1,109],[2,302],[3,322],[-1,104],[0,106],[-1,193],[0,1],[-1,296],[-1,191],[-1,154],[0,403],[0,84],[0,64],[-1,241],[4,30],[1,154]],[[43049,18849],[-1,-199],[0,-36],[-1,-131],[0,-187],[0,-166],[-1,-191],[-1,-176],[0,-151],[0,-32],[-1,-180],[0,-182],[-1,-179],[-2,-360],[0,-360],[0,-185],[0,-178],[-1,-175],[1,-189],[0,-98],[0,-84],[0,-176],[0,-58],[-1,-157],[1,-147],[-1,-188],[0,-84],[-1,-93],[0,-104],[0,-29],[-1,-140],[0,-86],[1,-78],[0,-46],[0,-46],[-1,-185],[0,-117],[0,-108],[0,-1],[0,-70],[0,-65],[0,-88],[0,-281],[0,-284],[1,-39],[0,-31],[0,-31],[1,-55],[0,-265],[-1,-369],[0,-272],[0,-90],[1,-149],[0,-210],[0,-224],[0,-97],[0,-42],[0,-74],[-1,-286],[1,-363]],[[43040,10182],[-63,0],[-67,1],[-59,1],[-71,2],[-66,0],[-61,1],[-131,0],[-161,1],[-51,1],[-50,0],[-65,1],[-62,0],[-93,0],[-40,0],[-127,0],[-61,0],[-73,0],[-101,-1],[-29,2],[-34,0],[-95,-1],[-127,-2],[-124,-1],[-37,1],[-95,0],[-230,-2],[-43,0],[-364,-1],[-346,0],[-83,1],[-91,1],[-43,0],[-318,2],[-38,0],[-4,0],[-178,1],[-78,1],[-483,2],[-123,1],[-64,0],[-216,-9],[-54,-1],[-91,-5],[-84,-2],[-206,-4],[-490,-10],[-149,-3],[-94,-2],[-7,0],[-251,-5],[-106,-2],[-214,-5],[0,56],[-154,5],[-146,4],[-187,6],[-22,1],[-298,2],[-273,-1],[-176,2],[-176,9],[-370,-11],[-169,4],[-292,21],[-15,-3],[-435,12]],[[33936,10253],[-392,14],[-48,1],[-22,0]],[[85261,16232],[1,-83],[2,-230],[1,-133],[2,-37],[0,-5],[0,-63],[0,-26],[1,-103],[0,-133],[0,-30],[0,-293],[1,-176],[0,-66],[0,-48],[0,-55],[0,-43],[0,-257],[1,-297],[0,-71],[1,-621],[0,-298],[1,-376],[0,-44],[0,-11],[0,-39],[-1,-37],[2,-389],[1,-29],[-1,-27],[0,-60],[0,-257],[0,-218],[2,-122],[-2,-122],[1,-92],[1,-261],[-2,-409],[-1,-100],[0,-4],[6,-443],[1,-236],[1,-151],[0,-29],[-17,-1],[-95,-3],[-1,-82],[0,-82],[-3,-217],[1,-96],[0,-102],[-4,-166],[0,-96],[0,-26],[-5,-241],[1,-176],[1,-185],[-6,-365],[0,-46],[2,-297],[-3,-183],[-1,-56],[0,-34],[-2,-95],[0,-6],[-1,-101],[-5,-259],[-2,-174],[-2,-90],[-1,-106],[-2,-75],[-4,-260],[-13,-886],[0,-10],[-1,-107],[-3,-68],[-5,-323],[0,-107],[3,-227],[1,-303],[0,-124],[1,-39],[0,-28],[0,-76],[0,-25],[-1,-31],[-4,-65],[-2,-37],[0,-49],[-4,-277],[-3,-559],[0,-1],[2,-250],[2,-235],[0,-33],[3,-470],[2,-352],[1,-72],[0,-124],[1,-18],[0,-26],[2,-351],[2,-294],[1,-132],[1,-194]],[[85117,195],[-222,1],[-30,0],[-25,0],[-156,0],[-64,0],[-33,0],[-31,-3],[-30,0],[-245,1],[-67,0],[-92,-2],[-248,-3],[-59,-1],[-1,0],[-87,-1],[-65,-1],[-175,-2],[-233,-2],[-47,0],[-37,0],[-395,-4],[-16,0],[-50,0],[-200,-1],[-56,1],[-359,0],[-26,0],[-60,0],[-107,0],[-199,-1],[-156,1],[-176,-2],[-21,0],[-268,-1],[-87,0],[-64,0],[-181,-1],[-73,0],[-120,1],[-27,0],[-168,-1],[-74,-1],[-240,-1],[-82,0],[-211,-2],[-117,0],[-23,0],[-66,0],[-17,0],[-135,-1],[-29,0],[-13,0],[-133,0],[-22,0],[-134,-2],[-60,-1],[-339,-4],[-23,0],[-132,-2],[-152,-1],[-175,-1],[-376,-3],[-376,0],[-254,-4],[-4,0],[-288,-2],[-93,-1],[-169,-2],[-162,-1],[-389,-3],[-96,-1],[-36,-1],[-44,-1],[-16,1],[-23,0],[-21,0],[-16,-1],[-28,-1],[-142,0],[-242,-5],[-7,0],[-24,0],[-35,0],[-21,-2],[-17,1],[-75,-2],[-39,1],[-172,-2],[-74,-2],[-126,-2],[-128,-3],[-93,0],[-124,-1],[-107,1],[-171,-1],[-226,-1],[-3,0],[-38,-1],[-59,-2],[-24,-1],[-211,-5],[-181,-2],[-307,-3],[-3,0],[-145,-1],[-292,-1],[-144,-2],[-126,-1],[-31,0],[-104,-2],[-112,-2],[-58,-2],[-43,0],[-105,0],[-463,-6],[-34,0],[-100,-1],[-21,-1],[-76,-1],[-556,-6],[-2,0],[-23,-1],[-323,-4],[-73,-1],[-189,-2],[-52,-1],[-57,0],[-52,-1],[-187,-1],[-127,-2],[-57,-1],[-78,-1],[-258,-4],[-232,-3],[-48,2],[-1,0],[-188,-2],[-260,-3],[-337,-7],[-314,-6],[-50,-1],[-179,-3],[-138,-2],[-240,-8],[-394,-2],[-21,0],[-13,-1],[-95,2],[-465,-1],[-76,3],[-233,4],[-96,0],[-199,-1],[-163,3],[-92,0],[-121,1],[-15,0],[-29,0],[-87,0],[-47,0],[-35,0],[-21,0],[-64,0],[-38,-1],[-46,0],[-221,-2],[-226,5],[-30,1],[-534,3],[-210,0],[-30,0],[-105,0],[-75,0],[-148,0],[-142,7],[-14,-20],[-85,0],[-193,-5],[-510,2],[-290,0],[-68,1],[-1,0],[-15,0],[-356,-1],[-23,1],[-240,0],[-77,0],[-127,0],[-290,-1],[-229,-1],[-553,-2],[-235,0],[-263,-1],[-294,0],[-54,0],[-17,0],[-1423,-1],[-409,-13],[-31,1],[-4,1],[-315,22],[-173,4],[-266,14],[-499,24],[-16,1],[-68,-6],[-155,-1],[-2,0],[-263,3]],[[55640,71],[0,118],[2,547],[-1,469],[0,67],[0,247],[0,498],[0,470],[0,477],[-2,342],[1,390],[1,368],[0,188],[1,30],[1,378],[2,872],[0,351],[1,540],[6,1075]],[[50931,14598],[-15,-8],[-88,-115],[-65,-152],[15,-75],[-61,-92],[-491,-719],[-13,-19],[-102,-154],[-31,-46],[-60,-91],[-61,-89],[-53,-74],[-12,-19],[-48,-72],[-13,-20],[-44,-63],[-21,-32],[-30,-45],[-16,-19],[-23,-30],[-14,-7],[-31,-47],[-53,-76],[-63,-90],[-67,-97],[-100,-144],[-28,-41],[-74,-123],[-3,-6],[-13,-21],[-19,-26],[-248,-347],[-24,-41],[-26,-38],[-156,-240],[-6,-10],[-187,-273],[-155,-227],[-155,-226],[-221,-323],[-11,-16],[-35,-52],[-45,-66],[-235,-343],[-154,-226],[-13,-19],[-42,-62],[-49,-70],[-80,-120],[-134,-201]],[[47258,9086],[-39,-1],[-64,5],[-68,-3],[-75,-3],[-1,0],[-139,-3],[-187,-2],[-177,-2],[-133,-3],[-217,1],[-237,0],[-20,0],[-130,2],[-55,-1],[-1,0],[-85,2],[-256,-2],[-158,0],[-163,0],[-173,-1],[-157,0],[-77,0],[-9,0],[-34,2],[-122,2],[-73,1],[-65,-1],[-28,2],[-293,-5],[-27,0],[-48,1],[-35,0],[-91,0],[-228,-3],[-23,1],[-129,4],[-66,2],[-64,1],[-131,4],[-132,3],[-1,91],[-2,152],[-2,119],[0,88],[-1,36],[-1,241],[0,94],[0,179],[-1,93]],[[55640,71],[-29,0],[-58,1],[-74,-1],[-773,-3],[-33,0],[-394,11],[-8,0],[-140,0],[-233,0],[-30,0],[-19,0],[-140,0],[-627,2],[-584,2],[-127,1],[-123,0],[-144,1],[-22,0],[-118,0],[-89,1],[-209,2],[-59,0],[-62,1],[-69,1],[-125,-1],[-130,0],[-81,0],[-181,0],[-30,-1],[-38,-1],[-34,0],[-61,-2],[-49,-1],[-30,3],[-92,-1],[-27,1],[-28,1],[-22,-4],[-30,1],[-28,1],[-80,-1],[-2,0],[-55,0],[-36,-1],[-58,2],[-4,0],[-215,0],[-101,1],[-103,0],[-107,0],[-47,0],[-76,1],[-140,-1],[-42,0],[-67,-2],[-128,0],[-64,1],[-99,-2],[-27,0],[-72,-2],[-31,0],[-27,-1],[-26,0],[-103,1],[-127,1],[-217,1],[-42,1],[-16,1],[-242,-1],[-33,0],[-138,-1],[-15,0],[-19,-1],[-22,0],[-141,2],[-80,1],[-47,-1],[-28,0]],[[47613,85],[-11,30],[3,22],[8,16],[4,11],[-3,13],[-7,13],[-7,0],[-31,11],[-7,2],[-8,5],[-4,6],[-49,137],[-3,14],[-1,22],[0,1],[3,16],[6,12],[1,2],[2,2],[5,5],[6,5],[3,2],[8,9],[4,9],[0,18],[-6,29],[-1,0],[0,1],[-7,18],[-19,26],[-1,1],[-15,14],[-1,0],[-7,4],[-12,-2],[-33,-14],[-42,13],[-11,-3],[-32,-16],[-12,-8],[-19,-17],[-7,-3],[-8,0],[-66,25],[-9,4],[-10,12],[-23,46],[-28,56],[-14,54],[0,12],[1,11],[8,20],[15,25],[0,1],[4,16],[0,21],[-1,4],[-4,22],[-12,20],[-19,16],[-21,10],[-8,0],[-19,-11],[-33,-27],[-16,-9],[-26,-3],[-16,8],[-1,0],[-6,7],[-6,11],[-1,2],[-1,2],[-95,239],[-29,132],[-6,89],[0,16],[7,17],[42,110],[31,77],[16,28],[3,8],[0,7],[-5,11],[-20,42],[-12,24],[-14,29],[-26,14],[-9,11],[-5,9],[0,1],[-3,15],[0,24],[0,1],[0,1],[4,14],[9,19],[0,1],[9,12],[28,17],[12,14],[8,25],[3,10],[27,89],[8,31],[5,10],[38,86],[98,198],[0,1],[69,126],[0,26],[11,51],[13,39],[0,1],[23,48],[38,62],[14,31],[12,53],[0,2],[2,10],[-2,16],[-1,1],[0,1],[-2,6],[-7,10],[-11,7],[-21,10],[-9,9],[-8,12],[-56,150],[-7,29],[-5,83],[-3,42],[0,45],[17,84],[3,22],[3,32],[5,66],[-1,27],[-2,108],[0,2],[-8,44],[0,12],[6,26],[10,31],[51,141],[4,9],[0,1],[6,7],[3,2],[23,14],[20,18],[76,95],[11,14],[0,2],[3,5],[21,88],[0,3],[10,61],[0,46],[-3,15],[-7,20],[-47,92],[-21,23],[-10,22],[-3,12],[1,20],[20,119],[8,28],[4,7],[14,27],[25,46],[10,17],[30,55],[4,28],[0,26],[-19,85],[-26,113],[-6,16],[-7,10],[-6,4],[-9,3],[-6,0],[-17,0],[-11,2],[-13,12],[-1,0],[0,1],[-5,10],[-7,29],[-3,21],[1,19],[1,14],[6,32],[5,13],[8,13],[13,12],[4,7],[2,12],[5,41],[-2,20],[-49,302],[-3,11],[-15,18],[-12,9],[-23,21],[-9,14],[-12,31],[-3,7],[-3,10],[-3,23],[1,25],[2,9],[13,26],[4,7],[7,19],[4,17],[-1,14],[-5,26],[-3,9],[-20,40],[-9,25],[-10,49],[-1,11],[-1,8],[1,22],[5,21],[6,10],[26,27],[14,9],[2,2],[10,10],[8,13],[2,2],[7,21],[0,1],[3,14],[3,36],[-1,36],[-1,46],[0,4],[-2,18],[-20,42],[-1,60],[1,25],[2,13],[3,7],[6,4],[29,11],[2,4],[5,31],[-5,65],[-3,9],[-13,24],[-3,21],[0,35],[1,10],[16,9],[9,11],[8,13],[9,21],[12,46],[5,28],[5,3],[11,22],[1,8],[0,18],[-4,14],[0,8],[5,22],[23,51],[15,11],[0,1],[11,19],[1,0],[4,9],[10,35],[0,3],[14,35],[10,13],[26,28],[26,29],[14,12],[2,2],[9,11],[2,8],[3,20],[-1,24],[-6,26],[-31,99],[-8,13],[-21,27],[0,1],[-3,12],[2,14],[0,2],[4,16],[9,17],[13,12],[9,2],[8,-1],[11,-4],[8,-6],[4,-2],[7,-8],[18,-11],[9,0],[10,7],[7,17],[0,14],[-2,91],[-4,17],[-30,89],[-4,6],[-19,6],[-6,3],[-11,6],[-13,17],[-20,55],[-4,20],[-1,50],[0,1],[-15,76],[-5,13],[-16,-1],[-9,-4],[-8,-15],[0,-4],[-8,-20],[-6,-9],[-8,-5],[-7,2],[-12,5],[-9,8],[-6,9],[-4,11],[-8,31],[-2,6],[2,68],[-12,137],[-6,16],[-15,0],[-16,-1],[-10,4],[-12,15],[-12,21],[-1,24],[3,7],[14,12],[33,20],[10,13],[3,10],[-7,26],[-6,10],[-9,6],[-37,16],[-20,13],[-31,40],[-1,2],[-15,42],[-8,25],[-3,19],[0,6],[2,56],[-39,93],[-4,8],[-5,11],[-2,12],[0,17],[2,14],[5,12],[14,33],[2,9],[0,15],[-3,19],[-3,22],[-4,15],[-6,9],[-27,24],[-5,8],[-3,5],[-3,10],[-2,13],[1,20],[4,13],[9,15],[10,9],[16,14],[32,32],[9,15],[4,13],[-2,11],[-29,45],[42,70],[47,70]],[[99999,16254],[0,-1638],[0,-1665],[-1,-532],[0,-506],[0,-19],[0,-1554],[0,-447],[-2,-3343],[-2,-2832],[-1,-1831],[-1,-873],[0,-53],[0,-65],[0,-687],[0,-182],[-165,-12],[-315,4],[-2505,33],[-3893,51],[-193,2],[-566,7],[-2481,33],[-1224,16],[-1971,25],[-366,5],[-162,3],[-165,0],[-176,1],[-21,0],[-443,0],[-60,0],[-169,0]],[[15505,16136],[-16,-18],[-4,-24],[8,-31],[-17,-36],[-12,-33],[-2,-36],[-1,-28],[5,-34],[-13,-12],[-31,-8],[-20,-4],[-41,-13],[-14,-11],[-14,-30],[-25,-25],[-18,-11],[-22,-17],[-32,-69],[-4,-30],[-13,-16],[-16,-17],[-7,-37],[-6,-37],[-18,-32],[-36,-22],[-30,6],[-9,2],[-12,-31],[-2,-30],[0,-26],[-10,-23],[-16,-14],[-11,-25],[-12,-24],[-2,-25],[-19,-17],[-14,-6],[-18,2],[-20,-2],[-18,-14],[-15,-9],[-16,-11],[-10,-19],[-4,-36],[-11,-23],[3,-35],[11,-14],[6,-25],[1,-35],[-7,-23],[-16,3],[-16,-3],[1,-31],[-1,-30],[-3,-35],[-22,-10],[-28,-4],[-14,0],[-16,-2],[-3,-32],[15,-31],[10,-31],[8,-33],[9,-32],[-5,-28],[-5,-24],[5,-28],[5,-24],[-3,-38],[-3,-27],[7,-43],[2,-45],[-5,-33],[-12,-38],[7,-42],[11,-36],[13,-28],[-9,-36],[-9,-27],[-11,-23],[-13,-19],[-5,-25],[1,-37],[8,-38],[14,-15],[5,-26],[-10,-34],[3,-28],[2,-26],[-6,-28],[-11,-24],[-7,-22],[4,-31],[1,-34],[-12,-31],[-16,-21],[-10,-41],[1,-29],[-4,-30],[-15,-37],[1,-35],[-17,-27],[-11,-21],[-22,-38],[-16,-18],[-12,-16],[-12,-14],[-16,-17],[-13,-12],[-14,-17],[0,-34],[3,-40],[7,-33],[5,-38],[-5,-40],[-5,-25],[-3,-45],[10,-42],[12,-35],[11,-17],[-12,-41],[-12,-31],[-7,-42],[2,-41],[11,-32],[11,-27],[18,-18],[-20,-10],[-16,-9],[-23,-31],[-17,-32],[-10,-38],[-5,-29],[6,-37],[9,-32],[8,-24],[12,-23],[11,-38],[-6,-30],[-4,-30],[-2,-32],[-6,-32],[-9,-23],[-1,-59],[1,-25],[9,-51],[28,-24],[6,-30],[-3,-38],[3,-36],[5,-26],[4,-28],[-15,-16],[-8,-27],[-1,-28],[-5,-24],[-11,-30],[-5,-28],[-4,-28],[8,-23],[3,-25],[7,-28],[11,-26],[12,-35],[2,-27],[-9,-28],[-8,-38],[-2,-28],[-17,-21],[-23,-23],[-19,-63],[-6,-23],[3,-35],[11,-41],[-9,-24],[-9,-20],[-12,-18],[-18,-25],[-11,-18],[-9,-75],[-4,-25],[-9,-24],[-18,-17],[-16,1],[-15,-1],[-17,-5],[-12,-26],[-10,-23],[-14,-21],[-9,-25],[-17,-28],[-32,0],[-14,7],[-18,7],[-14,-7],[-17,-7],[-26,-3],[-23,5],[-21,10],[-17,11],[-20,-4],[-18,-10],[-20,1],[-16,9],[-14,7],[-16,7],[-18,1],[-18,0],[-15,-4],[-21,3],[-8,-23],[-13,-66],[-10,-20],[-6,-28],[-6,-24],[8,-32],[7,-49],[-17,-9],[-18,-18],[-22,-7],[-15,2],[-20,3],[-12,-26],[-3,-46],[-12,-51],[-14,-25],[-15,-30],[-17,-10],[-18,-13],[-17,-6],[-15,-10],[-17,-27],[-13,-14],[-13,-15],[-12,-29],[-4,-27],[-2,-39],[-9,-26],[-11,-22],[-7,-24],[-21,-27],[-12,-19],[-5,-24],[-13,-31],[-8,-31],[-1,-29],[-3,-36],[-3,-27],[-8,-29],[-2,-52],[-6,-37],[-2,-29],[-5,-29],[2,-41],[5,-31],[8,-31],[12,-27],[-2,-32],[-2,-29],[-2,-37],[-1,-30],[5,-34],[-12,-25],[-23,-1],[-25,-5],[-16,-9],[-26,-11],[-16,-12],[-18,-20],[-14,-19],[-8,-29],[-12,-27],[-19,-20],[-14,-12],[-26,-7],[-54,1],[-85,-1],[-18,-9],[-12,-16],[-30,-9],[-19,-6],[-17,0],[-21,-2],[-14,-16],[-10,-26],[-10,-40],[-49,-59],[-14,-35],[-18,-27],[-20,-21],[-18,-19],[-15,-11],[-23,-5],[-14,7],[-19,8],[-22,16],[-27,-12],[-21,-18],[-16,-11],[-18,0],[-23,3],[-19,11],[-17,21],[-11,27],[-15,29],[-20,11],[-22,1],[-17,1],[-15,-2],[-21,-26],[-14,-10],[-17,-10],[-24,-12],[-23,-10],[-25,-9],[-19,-10],[-16,-19],[-17,-13],[-22,-25],[-16,-10],[-15,1],[-18,-10],[-19,-18],[-25,-40],[-10,-22],[-16,-14],[-14,-14],[-8,-22],[-1,-36],[-6,-41],[-16,-25],[-22,-24],[-16,-22],[-17,-34],[-9,-28],[-12,-47],[0,-25],[-2,-34],[-6,-42],[-4,-30],[-13,-33],[-11,-51],[-7,-27],[0,-1],[-1,-26],[9,-22],[14,-39],[12,-22],[10,-25],[4,-30],[19,-29],[-16,-30],[-15,-28],[-13,-12],[-26,-18],[-17,-16],[-19,-22],[-13,-30],[-3,-42],[-6,-34],[-9,-26],[-7,-24],[-9,-24],[3,-34],[-13,-19],[-20,-8],[-13,-52],[6,-26],[-2,-45],[6,-41],[18,-26],[20,-18],[9,-25],[5,-25],[0,-27],[-15,-56],[-22,-10],[-16,-8],[-18,-4],[-11,-18],[-5,-28],[-10,-31],[0,-29],[4,-31],[-10,-31],[-2,-31],[4,-36],[-8,-28],[-14,9],[-30,-5],[-15,-4],[-20,-17],[-8,-35],[-11,-21],[-7,-25],[-8,-27],[11,-20],[3,-53],[-13,-40],[-22,-17],[-22,-7],[-14,-16],[-21,-2],[-14,-11],[-11,-66],[-14,-17],[-9,-25],[-7,-29],[0,-35],[-1,-34],[-4,-24],[-2,-29],[-4,-24],[-6,-30],[-20,-20],[-23,-6],[-17,-14],[-12,-47],[-9,-28],[-13,-23],[-14,-38],[-9,-44],[1,-39],[-3,-28],[-5,-32],[-14,-14],[-19,7],[-7,-25],[-4,-34],[-4,-24],[-26,-18],[-24,-29],[-26,-19],[-4,-35],[-12,-31],[-33,-36],[-11,-22],[-13,-43],[-3,-39],[-11,-18],[-24,-8],[-16,-12],[-22,-2],[-17,-18],[-2,-28],[-17,-44],[-19,-15],[-18,-11],[-19,-2],[-24,-1],[-15,3],[-18,-11],[-19,-26],[-20,-8],[-2,30],[-15,1],[-15,-6],[-19,-29],[-21,-21],[-23,-41],[-18,-17],[-26,-14],[-15,1],[-15,-26],[-1,-55],[-10,-31],[-22,-41],[-11,-50],[-20,-21],[-18,-32],[-3,-46],[3,-31],[-3,-43],[27,-55],[18,-44],[7,-28],[13,-22],[-4,-50],[5,-34],[0,-46],[1,-48],[-2,-26],[-13,-44],[-13,-26],[-14,-35],[1,-36],[-4,-44],[5,-39],[8,-38],[6,-48],[-1,-41],[-3,-37],[-8,-85],[-13,-43],[-14,-37],[6,-57],[7,-42],[7,-26],[12,-21],[15,-37],[5,-29],[-3,-30],[-12,-27],[-11,-32],[-8,-40],[23,-31],[20,-17],[16,-12],[25,-45],[-1,-50],[-10,-43],[-4,-29],[6,-29],[9,-30],[-5,-25],[-14,-13],[-15,-2],[-24,-22],[-95,-142],[-9,-58],[-15,-18],[-22,-7],[-13,-22],[-22,-44],[-9,-24],[-16,-23],[-21,-22],[-9,-38],[10,-29],[1,-31],[1,-27],[-19,-21],[-2,-25],[8,-24],[8,-35],[5,-24],[-13,-29],[-12,-24],[-6,-42],[4,-29],[6,-25],[18,-26],[1,-25],[-4,-31],[-16,-18],[1,-29],[11,-33],[2,-48],[-12,-23],[-16,-1],[-18,-10],[-17,-1],[-13,-20],[-16,-22],[0,-30],[5,-25],[-9,-24],[-3,-30],[-13,-16],[-25,-3],[-18,-3],[6,-24],[-4,-29],[-11,-24],[-8,-28],[-6,-34],[-3,-28],[9,-29],[-10,-27],[-4,-25],[-2,-38],[-11,-21],[-12,-21],[0,-29],[10,-27],[-4,-33],[-16,-23],[-13,-7],[9,-29],[3,-30],[-7,-26],[-18,-5],[-21,-11],[-17,-14],[11,-24],[11,-21],[13,-37],[-2,-27],[-6,-27],[-11,-19],[-20,-12],[-20,-7],[-19,-3],[-1,-26],[-12,-38],[-2,-33],[1,-38],[11,-31],[-14,-16],[-1,-33],[0,-30],[-2,-26],[3,-43],[-10,-24],[-13,-13],[-13,-19],[-19,-11],[-14,-6],[-16,-11],[-18,-26],[-9,-24],[-12,-18],[-26,-4],[-17,-6],[-13,-16],[0,-29],[-14,-42],[-12,-26],[-13,-30],[-8,-35],[-28,-44],[-21,-13],[-11,-17],[-3,-39],[-6,-28],[17,-38],[16,-19],[-18,-35],[-13,-18],[-10,-24],[-11,-46],[4,-26],[10,-22],[-16,-17],[-26,1],[-16,17],[-19,11],[-24,4],[-15,12],[-17,9],[-14,9],[-17,2],[-19,9],[-41,10],[-16,-16],[0,-44],[-11,-40],[2,-33],[9,-36],[8,-29],[-2,-25],[-16,-17],[-10,-26],[-4,-46],[-15,-26],[4,-30],[-5,-30],[-16,-21],[-7,-24],[1,-35],[-8,-30],[4,-37],[-2,-25],[-15,-15],[-14,-28],[-14,-29],[-8,-29],[-1,-34],[22,-33]],[[9703,177],[-46,0],[-112,0],[-82,-1],[-109,0],[-261,-1],[-3,0],[-236,-1],[-110,-1],[-73,0],[-206,-1],[-213,0],[-42,-1],[-230,-3],[-308,3],[-116,0],[-81,0],[-210,0],[-96,0],[-243,-1],[-127,0],[-111,-1],[-98,0],[-304,0],[-18,2],[-76,-4],[-99,0],[-15,0],[-108,-1],[-68,0],[-16,0],[-125,0],[-46,-1],[-327,-2],[-85,0],[-25,0],[-166,0],[-286,-1],[-160,-1],[-61,0],[-28,0],[-140,0],[-7,0],[-19,0],[-116,0],[-113,-1],[-45,1],[-51,0],[-15,0],[-24,0],[-36,1],[-183,-2],[-64,1],[-34,0],[-46,0],[-77,1],[-46,0],[-18,0],[-128,1],[-84,0],[-182,0],[-36,-1],[-23,0],[-192,0],[-20,0],[-100,-1],[-51,0],[-97,-1],[-17,0],[-89,0],[-178,0],[-376,1],[-66,0],[-40,0],[-142,0],[-106,0],[-3,0],[-64,0],[-41,0],[-62,1],[-33,0],[-365,0],[-199,0],[-60,1],[-6,0],[-8,0],[-305,1],[-45,0],[-49,1],[-4,0],[-134,1],[-24,0],[0,3],[-4,20],[1,82],[0,86],[0,13],[1,37],[0,38],[0,56],[1,75],[0,2],[0,106],[1,48],[0,6],[0,29],[0,259],[0,18],[0,189],[1,104],[0,666],[2,47],[0,260],[0,35],[-3,171],[1,73],[0,31],[0,298],[0,65],[-2,162],[0,41],[0,120],[-1,173],[-2,191],[-2,267],[0,39],[-1,51],[0,30],[0,1],[0,41],[-4,510],[0,56],[0,504],[0,52],[2,65],[3,96],[2,64],[0,32],[0,135],[0,56],[0,95],[0,317],[-1,14],[0,76],[-6,251],[0,433],[1,417],[0,213],[0,468],[1,237],[0,87],[0,63],[0,1],[0,61],[1,756],[0,381],[5,495],[8,685],[5,290],[4,340],[6,535],[1,27],[0,59],[0,5],[2,122],[0,15],[1,66],[1,96]],[[22484,10728],[0,-162],[-1,-967],[0,-60],[3,-93],[0,-229],[0,-174],[-1,-447],[-3,-211],[-2,-107],[2,-24],[2,-42],[0,-45],[1,-43],[0,-257],[0,-40],[0,-73],[0,-113],[-1,-208],[0,-29],[0,-72],[0,-43],[-1,-343],[0,-263],[0,-251],[2,-883],[1,-38],[-1,-322],[0,-129],[0,-242],[0,-46],[0,-374],[0,-52],[0,-209],[0,-34],[0,-411],[0,-378],[0,-41],[10,-745],[-1,-80],[0,-201],[-1,-670],[0,-49],[-1,-445],[-1,-277],[0,-321],[0,-46],[-1,-250]],[[22490,189],[-196,0],[-17,0],[-32,0],[-24,0],[-116,0],[-22,0],[-140,0],[-197,0],[-105,0],[-256,0],[-33,0],[-181,0],[-103,0],[-50,0],[-54,0],[-80,0],[-20,0],[-20,0],[-48,0],[-1,0],[-16,0],[-44,0],[-1,0],[-294,0],[-143,0],[-423,0],[-368,0],[-303,0],[-236,0],[-62,0],[-246,0],[-231,0],[-189,0],[-121,0],[-796,0],[-194,0],[-103,0],[-16,0],[-3,0],[-26,0],[-17,0],[-53,0],[-32,0],[-135,0],[-136,0],[-310,0],[-1,0],[-24,0],[-271,0],[-75,0],[-21,0],[-359,0],[-212,0],[-116,0],[-71,0],[-41,0],[-9,0],[-181,-3],[-266,-3],[-21,0],[-59,-1],[-68,0],[-74,0],[-188,-1],[-31,0],[-111,0],[-162,0],[-123,-1],[-313,-1],[-163,0],[-21,-2],[-61,-1],[-180,-1],[-23,0],[-351,-2],[-261,-2],[-24,0],[-16,0],[-98,0],[-73,-1],[-124,-1],[-49,-1],[-386,-3],[-117,-1],[-18,14],[-246,1],[-67,-1],[-54,0],[-2,0],[-164,0],[-140,-1],[-247,-1],[-64,0],[-465,-1],[-29,0],[-4,0],[-16,0],[-20,-1],[-263,3],[-51,0]],[[33936,10253],[1,-176],[0,-501],[0,-37],[3,-287],[-2,-614],[-1,-260],[-1,-333],[-2,-598],[-1,-385],[-2,-639],[5,-535],[64,-46],[46,-34],[316,-229],[3,-2],[323,-234],[160,-114],[156,-118],[86,-61],[31,-359],[41,-483],[15,-178],[30,-345],[174,-379],[40,-90],[312,-681],[17,-38],[225,-492],[494,-1082],[164,-358],[112,-324],[21,-68],[1,-2],[14,-39],[35,-99]],[[36816,33],[-104,0],[-169,-1],[-45,0],[-15,0],[-138,0],[-362,-6],[-42,0],[-29,-1],[-10,0],[-69,-2],[-39,0],[-203,-4],[-334,-5],[-79,-2],[-357,0],[-133,6],[-44,1],[-465,1],[-129,-2],[-5,0],[-70,-1],[-673,-10],[-208,-3],[-187,-3],[-356,2],[-92,-1],[-2,0],[-76,0],[-116,0],[-27,-1],[-62,1],[-564,-2],[-35,0],[-82,0],[-286,0],[-83,147],[-20,42],[-18,3],[-188,0],[-61,0],[-142,0],[-18,0],[-103,0],[-1,0],[-64,0],[-42,0],[-23,0],[-195,0],[-39,0],[-67,-1],[-20,0],[-99,0],[-46,0],[-191,1],[-57,0],[-22,0],[-66,0],[-73,0],[-222,0],[-208,-3],[-60,0],[-116,0],[-455,0],[-685,0],[-21,0],[-1,0],[-239,0],[-160,0],[-102,0],[-21,0],[-77,0],[-84,0],[-415,0],[-162,0],[-223,0],[-344,0],[-38,0],[-35,0],[-77,0],[-43,0],[-64,0],[-2,0],[-128,0],[-1,0],[-183,0],[-452,0],[-16,0],[-164,0],[-175,0],[-185,0],[-57,0],[-354,0],[-324,0],[-33,0],[-2,0],[-147,0],[-139,0],[-19,0],[-3,0],[-18,0],[-23,0],[-47,0],[-26,0],[-46,0],[-37,0],[-61,0],[-23,0],[-48,0],[-19,0],[-106,0],[-7,0],[-57,0],[-33,0],[-109,0],[-1,0],[-18,0],[-35,0],[-86,0],[-45,0]],[[47613,85],[-237,-2],[-221,-2],[-127,1],[-291,2],[-296,-1],[-319,0],[-62,-1],[-232,-1],[-400,-2],[-45,0],[-9,0],[-20,0],[-22,0],[-301,-1],[-61,0],[-368,0],[-232,0],[-328,0],[-249,-4],[-137,1],[-18,0],[-1,0],[-44,-4],[-68,2],[-18,0],[-29,-1],[-85,-1],[-185,-2],[-138,-2],[-1,0],[-36,0],[-130,-1],[-21,-1],[-33,0],[-2,0],[-81,-1],[-107,-2],[-37,1],[-29,0],[-104,-1],[-43,1],[-8,0],[-52,-2],[-10,0],[-189,-2],[-8,0],[-213,-2],[-154,4],[-31,-1],[-194,-2],[-8,0],[-170,-1],[-25,-5],[-110,-1],[-76,-1],[-20,0],[-88,0],[-36,-1],[-9,0],[-314,-7],[-271,1],[-204,0],[-18,2],[-166,1],[-41,-3],[-447,0],[-75,0],[-81,-2],[-60,-4],[-13,0],[-87,4],[-69,2],[-185,-2],[-8,-1],[-56,4],[-16,1],[-174,-2],[-48,2],[-411,-5],[-51,-1],[-448,-2],[-50,0],[-24,0],[-190,-1],[-293,-1],[-429,-2]]],"transform":{"scale":[0.00007018741492414922,0.00004010533590335887],"translate":[-109.06024520999995,36.99242006100013]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ct-counties.json b/src/js/config/mapconfig/mapfiles/county/ct-counties.json new file mode 100644 index 00000000..bd7a56bc --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ct-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-73.72777376499988,40.988988394000046,-71.7872383649999,42.05057848200005],"geometries":[{"type":"Polygon","properties":{"name":"CT"},"id":"09005","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"CT"},"id":"09003","arcs":[[4,5,6,7,-1,8]]},{"type":"Polygon","properties":{"name":"CT"},"id":"09013","arcs":[[9,10,-5,11]]},{"type":"Polygon","properties":{"name":"CT"},"id":"09015","arcs":[[12,-10,13]]},{"type":"MultiPolygon","properties":{"name":"CT"},"id":"09011","arcs":[[[14]],[[15]],[[16,17,-6,-11,-13]]]},{"type":"MultiPolygon","properties":{"name":"CT"},"id":"09001","arcs":[[[18]],[[19]],[[20,21,-3]]]},{"type":"MultiPolygon","properties":{"name":"CT"},"id":"09007","arcs":[[[22,23]],[[-18,24,25,-7]]]},{"type":"Polygon","properties":{"name":"CT"},"id":"09009","arcs":[[-26,26,-23,27,-21,-2,-8]]}]},"states":{"type":"GeometryCollection","bbox":[-73.72777376499988,40.988988394000046,-71.7872383649999,42.05057848200005],"geometries":[{"type":"MultiPolygon","properties":{"name":"Connecticut"},"id":"09","arcs":[[[18]],[[19]],[[14]],[[15]],[[8,11,13,16,24,26,23,27,21,3]]]}]}},"arcs":[[[37059,98894],[-6,0],[-608,-3651],[-45,-332],[-7,-53],[-32,-184],[-18,-124],[-29,-209],[-9,-64],[-26,-178],[-298,-2011],[523,70],[69,9],[64,5],[4,0],[800,102],[86,-10],[993,93],[205,17],[701,68],[18,1],[66,0],[146,14],[2,0],[212,21],[10,0],[620,22],[425,35],[574,42],[146,12],[160,15],[20,2],[97,4],[993,71],[408,21],[-169,-824],[-123,-587],[-36,-184],[-149,-755],[-1,-7],[-77,-365],[-35,-167],[-56,-285],[-120,-620],[-15,-75],[-192,-975],[-34,-133],[-2,-8],[-448,-2205],[-593,-66],[-103,-9],[-531,-66],[-77,-9],[-93,-500],[-20,-150],[-90,-542],[-86,-523],[-3,-179],[-1,-100],[-52,-249],[-238,-1247],[-66,-306],[-18,-80],[-2,-10],[-11,-506],[12,-51],[75,-324],[31,-188],[78,10],[93,12],[60,8],[89,12],[59,7],[54,7],[40,-30],[92,-70],[203,-154],[10,-38],[3,-11],[3,-17],[-57,-217],[-52,-260],[-62,-312],[-9,-44],[-36,-198],[-46,-188],[-7,-34],[-1,-7],[-64,-311],[-87,-422],[-100,-484],[-41,-189],[-92,-477],[-170,-39],[-23,-6],[-161,-37],[-56,-13],[-217,-50],[-572,-140],[-129,-25],[-211,-41],[-307,-67],[-185,-42],[-200,-50],[-268,-67],[-104,-26],[-883,-174],[27,-261],[13,-123],[41,-335],[50,-454],[80,-739],[17,-83],[13,-63],[34,-361],[86,-770],[35,-305],[2,-21],[53,-487],[66,-527],[201,-1555],[165,-1518],[31,-290],[20,-179],[52,-396],[87,-819],[119,-886],[15,-226],[62,-442],[36,-311],[1,-6],[25,-296],[67,-612],[4,-37],[6,-67],[3,-27],[8,-76],[8,-109],[2,-23],[36,-330],[26,-235],[15,-151],[14,-120],[23,-198],[35,-332],[26,-245],[21,-141],[15,-104],[83,-678]],[[38367,61285],[-840,-815],[-179,-169],[-53,-54],[-898,-139],[145,-1225],[-808,95],[-99,8],[-5,0],[-518,-368],[-179,-127],[-45,-32],[-252,-167],[-114,-76],[-46,-30],[-47,-85],[21,-330],[-61,-119],[-11,-22],[18,-59],[8,-26],[58,-555],[4,-38],[-37,-66],[34,-148],[6,-26],[79,-156],[-36,-75],[-36,-4],[-129,-15],[-65,4],[-84,5],[-140,-21],[-161,-15],[-211,-32],[-51,-9],[-40,-8],[-93,-9],[-57,-9],[-165,-19],[-17,-49],[-19,-55],[-13,-39],[-18,-55],[-29,-84],[-88,-250],[-42,-109],[-47,-150],[-46,-151],[-31,-94],[-31,-85],[-155,-452],[-77,-29],[-221,-105],[-16,-8],[-565,-267],[-297,-152],[-66,-23],[-118,-47],[-299,-137],[-134,-61],[-99,-38],[-59,-23],[-64,-24],[-335,-132],[-371,-151],[-953,-66],[-53,0],[110,-932],[108,-940],[17,-118],[17,-144],[14,-113],[14,-106],[29,-282],[19,-161],[13,-103],[10,-113],[4,-34],[69,-551],[12,-96],[21,-214],[0,-132],[-129,-28],[-642,-129],[-207,-51],[-370,-76],[-65,-13],[-108,-23],[-128,-26],[-518,-116],[-326,-74],[-123,29],[-73,17],[-92,14],[-90,14],[-122,32],[-79,16],[-103,16],[-118,22],[-505,109],[-369,89],[-126,27],[-154,31],[-56,3],[-45,-4],[-283,-41],[-38,-22],[-92,-11],[-123,-14],[-782,-153],[-742,-151],[-122,-32],[-402,-77],[-266,-55],[-76,-20],[-363,-77],[-531,-71],[-61,-9],[-14,-27],[-4,-18],[-25,-40],[-62,-389],[-45,-110],[-31,-59],[-198,-393],[18,-41],[36,-80],[41,-171],[9,-100],[-27,-149],[-52,-140],[-25,-137],[123,-291],[114,-267],[2,-6],[90,-200],[129,-275],[39,-83],[100,-142],[4,-3],[41,-86],[78,-110],[87,-78],[31,-27]],[[21504,45198],[-123,-132],[-39,11],[-24,-18],[-390,140],[-48,17],[-9,-3],[-28,-9],[-77,25],[-19,14],[-164,119],[-31,22],[-140,168],[-165,175],[-157,153],[-49,48],[-207,93],[-201,127],[-106,14],[-17,2],[-73,42],[-339,198],[-66,38],[-298,341],[-85,125],[-223,90],[-275,325],[-60,71],[33,135],[0,48],[-41,268],[8,164],[7,135],[-13,64],[-38,86],[-81,99],[-212,167],[-110,36],[-72,48],[-77,169],[-7,16],[-2,85],[24,138],[125,92],[26,149],[0,1],[-4,27],[-4,24],[-41,74],[-49,110],[-7,-6],[-66,-51],[-144,-75],[-31,-38],[-82,-47],[-88,-66],[-244,-163],[-137,-91],[-454,-386],[-43,-38],[-106,-94],[-32,-26],[-133,-111],[-5,-5],[-57,-43],[-355,-220],[-202,-86],[-72,-37],[-232,-264],[-92,-103],[-67,-85],[-52,-56],[-22,-26],[-86,-97],[-41,407],[-41,413],[-52,169],[26,198],[-52,471],[-36,56],[129,434],[-120,799],[-29,199],[-4,12],[-249,968],[-180,725],[-57,415],[-320,1281],[-82,325],[-258,1022],[-51,226],[-26,85],[-265,1063],[-3,11],[-220,864],[-44,172],[-450,1564],[-20,89],[-163,636],[-272,1133],[-27,109],[21,0],[26,17],[9,21],[30,116],[-5,58],[-7,79],[0,106],[49,46],[22,92],[59,68],[72,44],[57,36],[42,69],[47,-42],[62,6],[62,61],[90,27],[19,16],[13,20],[8,19],[-83,163],[-69,118],[-82,166],[-53,107],[-56,167],[-24,90],[-27,148],[-32,148],[-19,108],[-53,95],[-52,-48],[-25,-39],[-49,-76],[-56,-65],[-83,56],[-106,109],[-120,107],[-55,71],[-65,75],[-30,128],[-3,63],[-2,49],[-87,25],[-75,30],[-143,-24],[-75,-28],[-58,5],[-6,1],[-12,1],[-7,5],[-109,75]],[[10807,63850],[15,407],[53,1585],[9,163],[17,364],[11,256],[89,1636],[26,527],[30,614],[40,873],[21,452],[5,104],[13,439],[6,218],[5,205],[8,258],[0,9],[18,549],[77,1558],[51,1022],[14,235],[2,39],[12,239],[43,858],[96,2005],[9,127],[6,86],[0,4],[153,3237],[-1,6],[54,906],[3,49],[17,285],[17,274],[1,11],[16,263],[2,45],[20,351],[7,117],[40,668],[0,3],[13,216],[0,7],[11,279],[40,1038],[13,423],[24,1009],[137,2615],[0,1],[0,2],[10,130],[12,172],[4,81],[1,22],[23,435],[6,143],[32,672],[28,649],[107,2452],[23,997],[12,524],[5,200],[3,113],[5,184],[3,103],[7,256],[12,444],[42,1605],[6,241],[237,11],[278,4],[542,21],[1476,46],[72,2],[97,3],[107,2],[217,-6],[113,-3],[11,-1],[101,-4],[351,-17],[220,-10],[81,-3],[331,-16],[695,-39],[847,-42],[22,0],[950,-35],[155,-10],[378,-22],[18,-1],[90,-2],[153,-5],[10,0],[243,-15],[92,-3],[109,-5],[175,-6],[38,-2],[16,-1],[24,-1],[50,-2],[16,-1],[451,-25],[269,-15],[28,-1],[130,-6],[159,-9],[197,-10],[296,-16],[104,-7],[82,-4],[136,-11],[89,-8],[101,-6],[4,-1],[563,-29],[136,-7],[226,-12],[601,-33],[39,0],[17,1],[2,0],[44,-4],[263,-19],[159,-9],[173,-9],[290,-21],[189,-5],[143,-13],[65,-7],[118,-3],[170,-8],[231,-11],[442,-19],[417,-21],[519,-25],[161,-9],[244,-13],[665,-36],[151,-9],[137,-8],[412,-23],[104,-4],[109,-4],[326,-12],[630,-34],[63,-4],[17,-1],[167,-10],[166,-10],[174,-7],[96,-7],[136,-9],[117,-3],[340,-18],[369,-20],[872,-48],[321,-19],[197,-12],[18,-1],[13,-1],[753,-41],[125,-7],[56,-2],[102,-5],[1,0],[72,-4],[58,-2],[7,-1],[20,-1],[1,0],[10,-2],[95,-13],[7,0],[293,-12],[57,-4],[169,-8],[211,-9],[152,-6],[201,-9],[114,-3],[393,-9],[378,-15],[80,-3],[140,-2]],[[62796,98450],[28,-283],[140,-1384],[28,-271],[39,-384],[36,-273],[36,-311],[46,-490],[134,-1299],[0,-1],[19,-276],[13,-129],[4,-47],[5,-150],[31,-283],[83,-744],[23,-206],[183,-1631],[-660,-103],[-402,-95],[-15,-226],[-10,-480],[0,-2],[-16,-507],[0,-367],[-1,-46],[-25,-1085],[-5,-301],[-20,-688],[-6,-650],[-36,-640],[-15,-405],[-26,-952],[-7,-273],[-3,-150],[-21,-340],[-51,-1224],[166,54],[9,3],[268,75],[458,124],[66,18],[135,37],[-20,-160],[-52,-424],[-41,-386],[-165,-1432],[-15,-104],[-16,-122],[-77,-716],[-33,-265],[-19,-150],[-24,-224],[-6,-58],[-21,-170],[-9,-94],[-12,-122],[-36,-330],[268,47],[263,57],[78,15],[216,41],[72,9],[149,38],[103,38],[475,66],[110,-1171],[19,-195],[10,-113],[25,-226],[21,-264],[15,-194],[57,-550],[0,-1],[16,-188],[20,-226],[62,-631],[7,-52],[9,-70],[2,-52],[3,-71],[36,-336],[41,-379],[119,-1282],[61,-348],[73,-697],[14,-130],[99,-897],[51,-461],[114,-1046],[54,-477],[80,-701],[7,-68],[3,-26],[24,-222],[31,-281],[2,-15],[41,-329],[31,-161],[21,-160],[136,-1089],[23,-182],[222,-189],[335,-311],[287,-286],[120,-119],[98,-245],[340,-1083],[8,-25],[260,-813],[57,-142],[20,-244],[237,-396],[42,-311],[36,-236],[-21,-103],[-36,-123],[-16,-301],[6,-330],[-6,-734],[-26,-344],[-14,-175],[-16,-94]],[[67875,57724],[-246,-746],[-12,-36],[-82,-273],[-112,-36],[-33,-11],[-396,-85],[-83,-28],[-343,-85],[-448,-113],[-383,-98],[-94,-24],[-659,-151]],[[64984,56038],[-129,349],[-174,451],[-90,261],[-132,455],[-238,719],[-21,64],[-458,1375],[-253,763],[-355,1046],[-116,323],[-29,138],[-468,-85],[-377,-56],[-165,-57],[-98,-9],[-276,-77],[-115,-17],[-211,-29],[-289,-75],[-796,-162],[-275,-56],[-583,-121],[-593,-123],[-890,-172],[-1,0],[-284,-54],[-716,-139],[-158,-31],[-59,-19],[-77,-8],[124,649],[0,1],[-119,-38],[-201,-57],[-23,-6],[-652,-182],[-70,-8],[-12,-1],[-109,-19],[-1289,-358],[-5,-2],[-485,-117],[-26,-6],[-143,-35],[-648,-181],[-58,-17],[-597,-151],[-62,-141],[-4,-14],[-37,-144],[22,-179],[60,-78],[42,-59],[18,-141],[32,-74],[50,-40],[4,-102],[-57,-74],[-11,-128],[-5,-97],[-12,-119],[-18,-113],[-20,-120],[-31,-133],[-37,-103],[-11,-29],[-24,-91],[3,-71],[15,-47],[19,-46],[29,-56],[-185,-40],[-100,-22],[-196,-66],[-52,-18],[-107,-38],[-11,-57],[-139,-28],[-82,-537],[-152,-37],[-235,-57],[-196,-38],[-144,-49],[-201,-69],[-175,-61],[39,-1281]],[[50274,55567],[-814,-148],[-14,-3],[-51,-9],[-83,-19],[-98,-19],[-170,-37],[-118,-29],[-88,-18],[-22,-6],[-1070,-258],[-206,-612],[-207,-434],[-26,19],[-25,19],[-459,-763],[-108,-10],[-201,113],[-51,48],[0,56],[15,452],[5,283],[-104,-93],[-97,-86],[93,753],[10,57],[-46,-19],[-43,-8],[-560,-152],[-428,-167],[131,-1184],[2,-24],[12,-95],[0,-8],[9,-184],[11,-241],[10,-141],[21,-94],[31,-160],[-58,16],[-79,23],[-156,20],[-168,74],[-193,51],[-146,53],[-190,75],[-69,27],[-23,7],[-158,45],[-7,206],[-3,60],[-28,76],[-38,156],[-46,52],[-72,18],[0,6],[5,114],[-47,64],[-53,10],[-22,110],[-16,112],[-118,113],[-52,75],[-23,27],[-27,31],[-32,36],[-36,47],[4,9],[16,29],[-46,12],[-175,45],[-303,-55],[-12,-2],[-113,-19],[-126,-25],[-348,-69],[-119,-28],[-608,-123],[-19,-7],[-53,-21],[-500,-94],[-1010,-217],[40,245],[7,38],[144,1055],[82,631],[155,1215],[113,716],[47,356],[56,435],[11,113],[-16,321],[-5,94],[-14,117],[-20,189],[-17,247],[-11,153],[-10,132],[-29,377],[-110,1432],[-18,378],[-301,-65],[-212,-40],[-108,-28],[-194,-34],[-304,-54],[-194,-62],[-4,-1],[-108,-28],[-66,-12],[-192,-35],[-103,-10],[-201,-19],[-175,-37],[-144,-19]],[[37059,98894],[272,-10],[175,-7],[87,-3],[104,-2],[907,-14],[52,-1],[344,-4],[235,-4],[590,-8],[592,-8],[1,0],[8,0],[25,-1],[107,-1],[32,-1],[404,-5],[88,-2],[195,-3],[137,-2],[16,0],[151,-2],[1180,-16],[310,-4],[97,-2],[1,0],[376,-5],[201,-4],[222,-1],[53,0],[469,2],[81,-1],[59,-1],[784,-76],[598,-16],[84,-2],[331,-9],[144,0],[309,-5],[232,-5],[-165,-3664],[151,30],[272,46],[715,142],[41,8],[36,8],[950,200],[190,37],[222,38],[31,443],[87,60],[65,44],[54,37],[41,28],[-46,147],[-40,127],[-12,37],[11,18],[88,144],[60,159],[12,28],[4,9],[6,38],[-16,7],[-93,40],[-20,179],[-86,28],[0,-1],[-19,-3],[-41,-12],[-6,0],[-11,23],[-3,6],[1,6],[9,28],[5,9],[5,6],[34,75],[-7,17],[-19,23],[-10,22],[1,20],[21,10],[12,-11],[18,-17],[21,-27],[6,-38],[1,-6],[9,-22],[1,-5],[70,84],[70,77],[79,-94],[21,-26],[28,-34],[36,8],[99,236],[41,145],[5,-11],[5,-12],[89,298],[17,68],[8,28],[1,4],[24,92],[-85,153],[-39,70],[-169,92],[86,268],[2,5],[231,3],[1440,30],[92,2],[95,2],[62,0],[151,-8],[63,8],[4,1],[6,16],[4,12],[62,0],[54,0],[55,0],[574,-6],[188,-3],[103,-12],[402,-44],[2,0],[400,-57],[169,-29],[109,-18],[83,-14],[424,-71],[1,0],[139,-18],[157,-20],[299,-53],[438,-79],[93,-11],[118,-12],[114,-14],[964,-85],[63,0],[12,0],[272,-9],[178,-19],[13,-135],[39,-412],[2,0],[132,0],[77,-1],[77,0],[87,0],[67,1],[1,0],[192,-13],[263,-15],[3,0],[19,0],[95,0],[170,0],[42,3],[45,3],[66,77],[129,132],[147,155],[123,143],[613,123],[56,5],[361,66],[710,108],[406,62],[178,27],[175,0],[227,0],[5,0],[88,6],[61,4],[203,-12],[217,-12]],[[83770,97947],[12,-487],[3,-544],[0,-94],[21,-586],[9,-516],[2,-301],[2,-176],[23,-675],[16,-466],[7,-220],[0,-19],[5,-218],[17,-741],[19,-843],[4,-199],[12,-495],[-315,1],[-4,0],[-89,0],[-454,1],[-396,1],[-184,12],[-379,14],[-593,5],[-281,-1],[-14,0],[-154,0],[-72,1],[-320,3],[-285,2],[-54,2],[-137,3],[-225,-5],[-59,-1],[-298,-7],[-238,-6],[-161,-7],[-169,12],[-81,6],[-1,0],[-65,-7],[-117,-14],[-413,-47],[-510,-42],[-15,-831],[-1,-598],[15,-750],[8,-598],[1,-104],[3,-152],[0,-5],[-1,-95],[4,-169],[1,-225],[2,-194],[6,-750],[-1,-117],[-1,-145],[-2,-699],[-2,-163],[10,-226],[5,-98],[2,-236],[-1,-134],[-6,-314],[-23,-339],[-1,-161],[-2,-166],[-3,-556],[-4,-234],[-1,-33],[-8,-927],[-16,-1835],[-7,-730],[377,-4],[523,-9],[316,-3],[56,-1],[140,-1],[91,-1],[66,0],[921,-8],[12,0],[154,-2],[21,1],[62,2],[14,-445],[8,-147],[25,-438],[10,-188],[16,-286],[127,-2332],[65,-1235],[32,-609],[23,-438],[6,-113],[16,-294],[36,-677],[23,-444],[30,-30],[-75,-155],[-24,-3],[-36,-17],[-41,-86],[-134,-24],[-50,-52],[-12,-12],[-68,3],[-43,90],[-15,96],[-67,40],[-17,10],[-17,-7],[-47,-21],[-1,-2],[-20,-38],[-22,-44],[-29,-91],[-10,-28],[-28,-82],[-47,-36],[-63,84],[-21,60],[-14,40],[-21,18],[-27,24],[-15,-49],[-9,-32],[-7,-24],[-14,2],[-45,5],[10,76],[5,40],[-45,68],[-55,70],[21,96],[-3,55],[-3,47],[-87,72],[-52,12],[-62,49],[-82,1],[-58,-8],[-2,-1],[-53,-24],[-37,-17],[-79,-39],[-2,-12],[-14,-111],[-1,-13],[24,-30],[22,-28],[62,-73],[-43,-108],[-53,-12],[-31,-7],[-46,-56],[23,-176],[1,-12],[-14,-122],[-30,-49],[-13,-21],[-60,-68],[-66,-84],[-57,-99],[-16,-44],[-18,-50],[-25,-107],[-44,-142],[-15,-128],[2,-158],[19,-92],[45,-105],[25,-8],[42,-13],[48,-35],[33,-82],[1,-1],[32,-76],[-4,-95],[-48,-88],[-59,-39],[-114,-17],[-27,12],[-31,13],[-58,107],[-50,21],[-24,-85],[-9,-96],[36,-66],[36,-66],[-13,-19],[-6,-4],[-29,-2],[-12,0],[-53,-3],[-85,-1],[-8,0],[-46,-2],[-73,-2],[-54,-1],[-64,-2],[-159,0],[-354,-1],[-75,1],[-485,3],[-68,0],[-309,5],[-4,0],[-86,1],[-209,4],[-70,1],[-93,-1],[-52,2],[-28,0],[-160,0],[-72,0],[-69,0],[-97,0],[25,-48],[8,-41],[-42,-77],[-16,-114],[50,-48],[141,-24],[16,-8],[52,-25],[31,-32],[26,-27],[22,-55],[17,-41],[43,-155],[24,-118],[19,-117],[15,-92],[0,-2],[7,-38],[18,-12],[18,-8],[64,-63],[47,-69],[52,-58],[42,-48]],[[76690,68311],[-52,-66],[-53,-37],[-57,15],[-5,10],[-37,68],[-62,-5],[58,-116],[-8,-21],[-25,-61],[-20,-99],[-85,-116],[-17,-119],[-49,46],[2,-135],[0,-3],[2,-3],[59,-60],[58,11],[60,-21],[-8,-140],[-56,-9],[-35,-93],[-78,5],[-105,-28],[-36,-11],[-23,-7],[-16,-30],[-26,-47],[-4,-110],[23,-88],[41,-94],[-60,-60],[-65,34],[-52,79],[-68,26],[-60,-36],[-68,-31],[-39,-83],[-52,-52],[-60,25],[-12,6],[-8,-25],[-8,-23],[-14,-39],[4,-21],[11,-73],[-32,-76],[-6,-11],[-11,-94],[-26,-87],[-58,-59],[-26,-140],[-68,-36],[-63,-65],[-1,-1],[0,1],[-52,70],[-35,84],[-45,-72],[-1,-1],[-52,-27],[-53,64],[-61,42],[-16,18],[-36,38],[-7,-22],[-23,-71],[-27,-92],[38,-130],[90,-110],[61,-107],[34,-105],[49,-31],[-8,-104],[38,-108],[11,-103],[31,-119],[19,-178],[3,-101],[56,-63],[-26,-114],[-37,-73],[26,-99],[-23,-94],[0,-3],[-30,-88],[-15,-151],[-159,26],[-369,53],[-397,-528],[-215,-291],[-77,-91],[-51,-53],[-50,-83],[-45,-67],[-266,-341],[-187,-243],[-283,-176],[-1156,-721],[-51,-26],[-85,-53],[18,-95],[68,-351],[25,-128],[147,-745],[113,-424],[130,-615],[-22,-142],[-29,-194],[-28,-195],[-46,-315],[-60,-388],[-52,-39],[-120,-89],[-266,-198],[-73,-53],[-61,-44],[-169,-123],[-35,-25],[-20,-15],[-185,-12],[-247,-6],[-51,-20],[-72,-45],[-80,-71],[-66,54],[-72,9],[-53,77],[-51,47],[-34,115],[-64,28],[-68,-18],[-31,-86],[-69,-26],[-68,45],[-114,-30],[-60,-17],[-68,-7],[-45,82],[-55,17],[-44,68],[-82,16],[-48,-181],[-66,-317],[-137,-50],[-39,-66],[-107,-298],[-52,-273],[-79,31],[-390,308],[-335,235],[-92,87],[-76,71],[-187,247],[-83,236],[-87,-10]],[[62796,98450],[258,-5],[239,-5],[361,-4],[475,-7],[151,-2],[172,2],[387,7],[263,2],[222,1],[23,0],[91,0],[28,0],[66,-4],[342,-12],[117,-4],[133,-4],[120,-4],[277,-13],[37,0],[77,0],[100,-2],[238,-4],[465,-8],[96,-3],[1021,-30],[73,-2],[151,-3],[54,-4],[109,-2],[65,-3],[137,-11],[108,-1],[483,-6],[218,-2],[147,-2],[95,-4],[516,-14],[83,-3],[27,-1],[194,-5],[66,-2],[261,-14],[228,-13],[5,0],[52,1],[58,0],[153,2],[594,-14],[55,-1],[4,0],[201,-8],[433,-5],[74,-1],[99,-1],[125,-1],[154,-2],[2,0],[15,0],[415,-3],[212,-1],[412,-2],[315,-1],[143,-4],[304,-2],[122,0],[61,-1],[625,-14],[398,-11],[12,-1],[73,-1],[81,-1],[288,-4],[266,-4],[766,-14],[85,-1],[8,0],[287,-4],[316,-4],[194,-2],[208,-3],[151,-3],[79,-1],[76,-1],[152,-2],[400,-5],[148,-1],[170,-7],[60,-1],[72,-2],[145,-4],[104,-2],[160,-4],[375,-7],[10,0],[87,-1],[56,2],[97,4],[100,0],[103,-7],[85,-8],[116,-9],[92,-8],[7,0],[13,-1],[110,-8],[126,-9],[199,-19],[79,-6],[61,-4],[100,-2],[102,-5],[105,-6],[199,-17],[148,-13],[105,-8],[176,-14],[73,-8],[70,-9],[74,-8]],[[99977,61315],[-103,11],[-193,23],[-150,18],[-270,33],[-674,81],[-1,0],[-143,18],[-137,-3],[-1387,181],[-1,0],[-336,27],[-118,9],[-107,8],[-856,-198],[-510,-87],[-1174,-217],[-96,-22],[-626,-116],[-67,-12],[-325,-60],[-407,-76],[-1,0],[-172,-32],[-238,-44],[-79,-14],[-174,-28],[-137,-22],[-72,21],[-79,22],[-75,25],[-4,1],[-102,30],[-610,181],[-144,43],[-99,29],[-39,12],[-83,25],[-75,22],[-20,6],[-127,38],[-507,151],[-1,0],[-398,118],[-25,7],[-764,230],[-189,56],[-649,193],[-1254,375],[-175,52],[-21,6],[-40,13],[-116,30],[-431,129],[-1118,333],[-1,0],[-103,37],[-168,59],[-124,43],[-112,38],[-76,24],[-62,12],[-41,8],[-232,68],[-21,7],[-76,23],[-428,128],[-8,0],[-144,7],[-97,12],[-92,24],[-559,143],[-473,118],[-50,13],[-13,12],[-29,2],[-238,19],[-32,-99],[-52,-181],[-89,-300],[-33,-138],[-9,-37],[-81,96],[-104,122],[-291,343],[-111,130],[-201,241],[-60,67],[-75,72],[-123,178],[-63,74],[-238,259],[-91,105],[-62,71],[-361,497],[-96,131],[-179,240],[-212,283],[-264,353],[-112,132],[-63,75],[-152,178],[-133,157],[-55,73],[-51,68],[-241,320],[-116,147],[-100,128],[-226,291],[-130,168],[-71,106],[-92,157],[-72,66]],[[83770,97947],[122,-8],[241,-21],[243,-21],[65,-3],[206,-12],[87,-4],[88,-4],[139,-14],[290,-30],[71,-3],[86,-3],[175,-7],[180,-7],[52,0],[141,-1],[324,5],[27,0],[156,0],[293,-2],[90,0],[151,-6],[244,-10],[151,-5],[196,-7],[261,-6],[308,3],[195,1],[162,-9],[214,-4],[307,4],[25,0],[61,3],[188,-4],[82,-2],[297,-4],[223,-12],[226,-12],[378,-9],[202,-21],[224,-8],[49,-2],[175,-8],[18,-1],[19,-1],[81,-3],[65,-1],[43,-1],[114,-13],[258,-7],[29,-2],[61,-4],[58,-4],[80,-5],[159,-10],[77,-1],[45,-3],[845,-36],[326,-16],[607,-28],[82,-3],[17,0],[174,-9],[313,-15],[27,-2],[68,2],[117,3],[34,-2],[132,-6],[37,-3],[2,0],[231,-1],[86,-2],[141,-3],[97,7],[65,-10],[144,-5],[124,-4],[273,0],[70,0],[282,-4],[208,-3],[78,-1],[140,-2],[88,-3],[54,-1],[20,-1],[33,-1],[77,0],[62,-1],[16,0],[48,-1],[67,1],[54,0],[19,-2],[62,-4],[88,-4],[71,2],[56,-3],[126,-3],[79,-3],[116,0],[973,-23],[107,-2],[103,-18],[16,-123],[20,-611],[5,-86],[12,-217],[16,-397],[2,-274],[1,-142],[4,-335],[6,-397],[9,-639],[3,-403],[2,-173],[2,-252],[2,-316],[4,-476],[1,-154],[7,-617],[2,-97],[3,-97],[0,-12],[1,-53],[0,-49],[0,-160],[0,-122],[4,-154],[1,-124],[1,-60],[3,-3],[3,-100],[1,-207],[-4,-161],[3,-220],[2,-137],[1,-320],[4,-519],[0,-57],[0,-9],[1,-84],[0,-157],[1,-43],[0,-25],[0,-95],[2,-59],[4,-188],[2,-96],[7,-269],[3,-123],[2,-144],[2,-104],[8,-358],[1,-7],[1,-52],[1,-11],[7,-356],[5,-216],[8,-392],[2,-143],[4,-235],[2,-145],[1,-98],[3,-113],[4,-107],[2,-168],[4,-333],[13,-525],[13,-569],[4,-228],[6,-244],[5,-185],[11,-429],[3,-99],[3,-107],[20,-681],[13,-447],[5,-265],[3,-110],[2,-127],[1,-11],[4,-211],[7,-348],[4,-147],[5,-159],[10,-460],[4,-207],[8,-294],[2,-51],[5,-173],[3,-122],[3,-136],[4,-223],[0,-29],[2,-102],[5,-285],[1,-78],[1,-83],[2,-113],[7,-149],[4,-128],[1,-90],[4,-199],[0,-41],[1,-50],[0,-38],[10,-343],[11,-355],[3,-115],[9,-309],[3,-39],[0,-26],[2,-69],[4,-243],[1,-176],[0,-3],[19,-782],[5,-177],[4,-144],[8,-337],[9,-385],[19,-1338],[2,-201],[2,-140],[3,-213],[12,-211],[1,-30],[0,-1],[6,-333],[6,-164],[-1,-160],[4,-160],[2,-97],[4,-238],[7,-355],[2,-400],[1,-259],[9,-472],[2,-103],[11,-609],[4,-225],[5,-180],[2,-9],[-1,-7],[0,-108],[7,-391],[3,-140],[3,-141],[1,-74],[1,-52],[4,-210],[4,-201],[3,-162],[0,-29],[2,-96],[7,-408],[5,-223],[24,-1319],[8,-323],[1,-20],[9,-372],[3,-146],[10,-428],[0,-2],[0,-2],[-16,-1088],[-2,-193],[-3,-219],[-1,-21]],[[91013,33146],[18,-116],[-54,-101],[-9,-213],[0,-222],[-40,-218],[-17,-194],[-48,-314],[-64,-28],[-96,-386],[-162,-17],[-127,381],[-136,248],[0,347],[55,298],[87,222],[-7,79],[128,222],[185,-22],[173,127],[114,-93]],[[70041,33802],[11,-253],[-134,60],[-111,218],[-103,153],[4,300],[108,-71],[101,-101],[56,-118],[68,-188]],[[99977,61315],[-4,-235],[-3,-159],[-2,-119],[-7,-472],[0,-10],[-1,-34],[0,-25],[-1,-31],[0,-32],[-4,-278],[-5,-303],[-1,-81],[-9,-353],[-4,-151],[-9,-316],[-5,-212],[-7,-240],[-7,-293],[-6,-351],[-6,-362],[-4,-67],[-5,-114],[-5,-144],[-2,-97],[-1,-51],[-3,-149],[-4,-158],[-3,-125],[-4,-168],[-2,-69],[-3,-130],[-2,-73],[-1,-44],[0,-4],[-6,-245],[-1,-59],[-5,-210],[-5,-192],[-5,-239],[-1,-14],[0,-31],[0,-6],[-3,-133],[-10,-368],[1,-3],[-11,-457],[-8,-529],[-5,-234],[0,-16],[0,-27],[-3,-104],[0,-20],[-5,-241],[-6,-292],[-12,-568],[-15,-604],[-10,-451],[-5,-218],[-9,-350],[-4,-256],[-10,-354],[-3,-126],[-5,-198],[-8,-347],[0,-1],[-1,-10],[-2,-100],[-6,-187],[-10,-329],[-5,-186],[-3,-105],[-4,-170],[-4,-123],[-10,-383],[-10,-383],[-34,-1105],[-6,-175],[-10,-336],[-20,-642],[-12,-374],[-18,-429],[-16,-367],[-4,-206],[-4,-168],[-1,-38],[-4,-190],[-6,-265],[-1,-14],[-1,-43],[-1,-69],[-1,-18],[-1,-72],[-3,-123],[-3,-174],[-1,-20],[-1,-87],[-3,-191],[-5,-210],[-11,-478],[-1,-34],[-2,-90],[-14,-512],[-5,-202],[7,-89],[-81,-78],[-54,-25],[-58,2],[-42,34],[-42,95],[-45,24],[-52,-4],[-91,-48],[-25,-2],[-130,117],[-50,56],[-83,64],[-69,24],[-183,35],[-67,-7],[-89,-34],[-54,-34],[-4,-3],[-32,-42],[-68,-89],[-43,-67],[0,-1],[-42,-126],[-19,-21],[-84,-62],[-364,-265],[-2,-1],[-34,-2],[-22,5],[-28,6],[-59,26],[-69,13],[-64,4],[-19,-13],[-37,-46],[-38,-49],[-50,-64],[-18,-302],[-19,-152],[131,-433],[1,-28],[-58,-329],[0,-251],[0,-21],[0,-20],[0,-246],[101,17],[70,-60],[142,-122],[53,-80],[4,-8],[21,-50],[39,-138],[-1,-135],[-21,-82],[-6,-61],[-1,-36],[-45,-161],[89,-82],[35,-32],[122,-111],[-13,-69],[-24,-83],[-27,-47],[-16,-75],[-16,-71],[-38,-145],[-20,-76],[-40,-180],[24,-226],[4,-27],[-165,-289],[-82,-168],[-2,-18],[-29,-401],[43,-181],[62,-258],[45,-114],[27,-69],[69,-31],[64,-28],[35,-74],[20,-42],[28,-60],[36,-232],[71,-475],[-5,-71],[-24,-77],[-68,-122],[-102,-159],[-260,-322],[-331,-370],[-145,-97],[-48,-31],[-14,35],[-369,-519],[-290,-198],[-154,407],[-256,141],[12,493],[-181,281],[-282,60],[-86,54],[-19,12],[-46,307],[-20,323],[-64,144],[-33,-38],[-112,-125],[-85,-221],[-115,-101],[-98,-134],[-116,-175],[-46,-189],[-83,-109],[-185,18],[-150,-6],[-75,-166],[-30,-94],[-1,-6],[-9,-430],[-118,-16],[-172,512],[3,96],[-12,36],[0,166],[0,5],[0,48],[0,261],[-18,264],[-1,6],[-18,254],[-156,61],[6,256],[-108,-22],[-102,-73],[-141,-44],[-42,-291],[130,-20],[125,-44],[42,-14],[-82,-247],[23,-516],[-49,-290],[-167,-220],[-29,10],[-200,70],[-72,298],[-226,0],[-172,198],[-163,265],[-58,28],[-84,-76],[-102,-10],[-209,-127],[-89,-113],[-100,-50],[-3,-9],[-179,-87],[14,212],[123,215],[-67,297],[-155,-89],[-144,-187],[-138,238],[76,308],[-69,238],[7,60],[-90,71],[-118,-18],[-8,-12],[-3,2],[-83,130],[9,16],[-166,110],[-142,-96],[-130,-153],[-1,-306],[-123,-270],[-15,65],[-6,-57],[-188,-473],[-29,-72],[-31,-186],[-119,-711],[5,-39],[-142,-336],[-18,-55],[-12,-178],[-72,-397],[-154,215],[-36,380],[-48,32],[-72,-58],[-236,-65],[-5,7],[-14,-18],[-59,-79],[-98,0],[-29,-165],[-21,-342],[21,-280],[-44,-413],[-16,-1],[-6,0],[-124,-6],[-168,-39],[-40,80],[0,41],[18,331],[-262,248],[-111,77],[246,376],[22,76],[-93,153],[-65,370],[-125,263],[-212,30],[29,-463],[46,-272],[-152,-234],[-196,-174],[-63,-314],[-174,13],[-106,18],[-83,198],[-193,266],[-116,85],[83,285],[147,203],[73,187],[113,218],[28,296],[44,259],[-107,111],[-31,-26],[-79,-66],[30,-86],[-40,-152],[-136,-259],[-154,-148],[-77,-369],[-36,-51],[-107,-55],[-232,78],[-28,-25],[-99,58],[-154,-232],[-8,-37],[-46,-21],[-184,-221],[25,-175],[-102,-115],[-106,38],[-4,-14],[-46,32],[-21,14],[-13,9],[-155,292],[-208,127],[-27,71],[-79,90],[-109,332],[-94,358],[-18,226],[9,286],[-84,359],[-60,325],[9,496],[22,224],[-74,279],[-31,197],[-31,280],[8,314],[9,190],[12,74],[46,287],[-80,127],[-132,622],[-54,254],[58,852],[-117,321],[-152,689],[-31,257],[-19,314],[9,195],[-22,252],[43,167],[64,135],[84,122],[87,229],[-30,213],[-17,247],[-59,193],[-34,197],[-51,297],[-86,276],[179,223],[-25,256],[123,245],[-113,27],[-159,39],[-170,2],[-15,-247],[67,-157],[-100,-221],[-102,-255],[-59,-308],[155,-241],[35,-312],[-11,-329],[41,-343],[-103,-205],[13,-252],[7,-410],[-24,-240],[-78,-79],[-41,-309],[2,-18],[33,-293],[1,-3],[166,-333],[24,-47],[-81,-548],[35,-292],[38,-212],[-46,-290],[80,-563],[111,-334],[120,-216],[3,-3],[114,-121],[-13,-35],[19,-15],[-6,-62],[-35,-358],[-14,-143],[-21,-51],[-30,-72],[-93,-224],[-92,-195],[26,-323],[147,-259],[-118,-446],[-225,-187],[-16,-182],[200,-499],[126,-160],[63,-230],[120,-297],[-44,-396],[-42,-217],[-83,-125],[-10,-13],[-43,-340],[-79,-134],[-45,-76],[-3,-5],[-7,-6],[-246,-407],[-264,-138],[-116,-61],[-190,-297],[-79,0],[-230,160],[-387,-10],[-152,2],[-170,-66],[-165,-49],[-227,77],[-113,141],[-162,103],[-94,338],[-87,120],[-28,254],[-366,350],[-268,-180],[-156,-32],[-19,-265],[137,-287],[-106,-128],[-134,70],[-134,222],[-217,170],[8,301],[-64,424],[-111,146],[-90,137],[13,87],[14,93],[-125,107],[-222,64],[-378,-123],[-269,-341],[-257,-386],[-80,-259],[46,-203],[-62,-226],[-51,-132],[10,-452],[16,-311],[74,-411],[3,-336],[-20,-237],[-95,-231],[-144,-57],[-178,61],[-76,238],[-6,212],[-71,137],[-6,20],[-248,36],[-46,7],[6,96],[-4,2],[-7,203],[-100,150],[-21,34],[-105,158],[-312,-296],[-99,16],[-142,360],[-29,29],[-103,-10],[-157,-8],[-157,-56],[-108,-144],[-130,113],[-105,-22],[-69,-157],[51,-281],[-6,-165],[-37,-204],[-74,-86],[-2,-113],[-335,-479],[-226,-116],[-326,191],[-90,9],[-169,-9],[-98,-22],[-136,-67],[-160,-136],[-122,-90],[-305,-90],[-232,46],[-83,-103],[-147,-27],[-290,16],[-162,1],[-72,-88],[-124,-77],[-91,70],[-119,-21],[-151,24],[-138,15],[-232,-88],[-237,283],[-107,128],[-154,184],[-139,478],[-149,514],[-182,628],[5,174],[7,287],[-20,115],[21,166],[6,43],[-32,131],[-25,109],[79,208],[28,328],[3,222],[0,41],[75,250],[43,201],[48,302],[-80,210],[-166,175],[-164,63],[-96,83],[-89,116],[-83,309],[-17,7],[-172,67],[-163,157],[-110,122],[-20,43],[-44,92],[-58,161],[-29,251],[-57,254],[-112,280],[-148,156],[-144,238],[-47,289],[-11,193],[-1,7],[50,313],[72,301],[57,283],[96,229],[4,8],[-97,86],[-137,225],[-94,184],[-44,257],[-44,283],[-178,179],[-191,45],[-147,23],[-146,24],[-174,112],[-192,-38],[-230,19],[-216,43],[-165,115],[-204,187],[-107,153],[-124,272],[-50,242],[-54,325],[-23,189],[67,217],[-116,261],[-124,343],[-86,261],[-18,37],[-90,178],[-124,354]],[[66826,40946],[174,-37],[58,12],[146,29],[138,29],[592,119],[138,-27],[77,-8],[113,-6],[168,124],[450,89],[19,4],[152,30],[72,14],[280,55],[332,65],[673,132],[10,2],[67,13],[477,94],[574,113],[73,12],[1,0],[155,31],[31,6],[87,17],[828,162],[117,22],[62,13],[104,20],[1,0],[296,58],[-52,571],[-9,93],[0,5],[-91,999],[0,3],[-78,855],[-129,1418],[-2,25],[-140,-31],[-212,1984],[-45,444],[-53,482],[-31,312],[-38,360],[-17,181],[-3,340],[-5,270],[-6,301],[-4,404],[-6,212],[-424,-70],[-161,-20],[-58,-8],[-441,-75],[-217,-22],[-266,-35],[-86,-12],[-153,-20],[-92,-19],[-63,-26],[-674,-101],[-149,-27],[-112,-17],[-190,-45],[-269,-44],[-717,-119],[-569,-94],[-8,-1],[-243,-42],[-141,-28],[-66,-19],[-437,-68],[-166,490],[-88,208],[-116,334],[-181,548],[-46,140],[-36,104],[-42,128],[-48,158],[-103,322],[-15,52],[-14,47],[-43,109],[-26,91],[-1,3],[-105,291],[-53,178],[-151,448],[-66,216],[-85,262],[-151,429],[-192,631],[-122,400]],[[15816,5477],[-29,-17],[-34,17],[-2,0],[-100,49],[214,303],[12,77],[133,205],[30,77],[181,0],[63,-331],[-389,-380],[-79,0]],[[17547,7281],[-220,-207],[-153,116],[154,275],[196,9],[23,-193]],[[21504,45198],[119,104],[84,63],[40,27],[55,17],[63,-21],[89,-29],[60,-68],[76,-171],[24,-117],[19,-126],[10,-65],[-138,-854],[-14,-90],[-2,-158],[26,-202],[71,-157],[51,-65],[13,-5],[61,-25],[20,-8],[81,-32],[108,1],[84,69],[73,109],[116,95],[92,67],[274,128],[186,-13],[85,-28],[70,-59],[74,-134],[46,-104],[82,-182],[45,-98],[21,-80],[0,-15],[1,-52],[53,-118],[8,-18],[57,-382],[0,-11],[0,-86],[35,-141],[1,-5],[81,-148],[102,-82],[144,-47],[94,29],[95,78],[93,137],[41,61],[25,21],[156,128],[8,7],[7,5],[64,43],[66,45],[7,5],[9,-4],[107,-47],[36,-80],[15,-33],[6,-63],[4,-65],[3,-47],[-27,-148],[31,-277],[13,-77],[-4,-23],[21,-80],[98,-202],[60,-69],[15,-5],[86,-28],[216,196],[116,106],[141,39],[61,40],[15,-7],[85,-38],[78,9],[4,0],[86,-16],[55,-25],[136,-63],[50,-65],[1,0],[131,-294],[22,-48],[55,-91],[127,-187],[157,-125],[115,-208],[144,-193],[146,-328],[60,-68],[46,-40],[349,-103],[62,-32],[77,-39],[28,-51],[106,-199],[11,-186],[-39,-266],[-33,-86],[-63,-100],[-54,-201],[26,-59],[69,-154],[83,-137],[110,-260],[16,-36],[60,-79],[79,-105],[175,-230],[135,-231],[4,-7],[15,-25],[22,-7],[82,-28],[15,-15],[18,-18],[256,2],[108,19],[51,8],[100,18],[81,-47],[84,-48],[-47,-348],[52,-170],[46,-47],[78,-150],[171,-334],[65,-128],[113,-151],[63,-85],[305,-453],[107,-159],[72,-687],[108,-255],[291,-247],[220,-186],[82,-136],[57,-147],[31,-207],[45,-120],[58,-153],[135,-305],[127,-289],[52,-56],[922,-848],[62,-47],[119,-113],[118,-170],[103,-169],[6,-11],[93,-199],[25,-54],[72,-75],[165,-57],[160,-141],[67,-367],[118,-198],[387,-433],[88,-142],[56,-179],[-32,-321],[-158,-470],[-129,-179],[-217,-146],[-175,-118],[-138,-154],[-89,-100],[-25,-28],[-160,-462],[-93,-461],[24,-312],[22,-291],[-5,-490],[57,-518],[-11,-98],[-20,-166],[-63,-160],[-67,-172],[-63,-160],[-3,-7],[-48,-60],[-81,-100],[-180,-238],[-77,-101],[-176,-151],[-149,-283],[-134,-386],[-42,-83]],[[31919,22854],[-143,-218],[-178,-349],[28,-254],[-21,-192],[122,-190],[2,-450],[-41,-523],[47,-174],[51,-186],[-2,-33],[-24,-362],[-7,-15],[-111,-221],[-156,-280],[-236,-483],[-72,-287],[-108,-527],[41,-212],[-15,-165],[26,-31],[-21,-155],[136,-281],[16,-4],[63,-16],[254,-65],[48,-56],[96,-170],[82,-75],[93,-122],[-14,-10],[31,-28],[18,-198],[-80,-402],[50,-337],[170,-118],[114,19],[91,-154],[-136,-223],[-167,66],[-152,-108],[-136,-24],[-212,43],[-180,-156],[-160,-38],[-134,-65],[-183,-142],[-382,148],[-31,16],[-46,-13],[-289,215],[-932,595],[-524,165],[98,106],[84,200],[129,115],[151,-79],[98,-292],[245,-17],[-217,612],[-16,-5],[-132,120],[-28,-3],[-87,-112],[-371,199],[-176,384],[-70,39],[9,26],[-88,30],[-103,165],[-4,7],[-55,-30],[-7,-36],[-4,-23],[-32,-174],[106,-171],[83,-225],[-81,-148],[-149,-128],[-15,-309],[-103,-179],[-137,13],[-394,-5],[-279,-160],[-433,-443],[-154,-264],[-103,-224],[-18,259],[-82,228],[-169,-124],[-108,-277],[-77,-309],[-139,-304],[-233,226],[-166,-41],[-168,-550],[-103,-353],[-111,-683],[-270,-127],[-232,-142],[-510,-697],[-186,135],[-144,73],[-193,42],[-201,146],[-85,292],[-320,217],[-99,93],[-211,-138],[-154,16],[-185,-132],[-107,-74],[-7,-444],[-536,-499],[-123,160],[-410,-99],[-559,-494],[-321,222],[-100,-58],[-76,117],[-174,114],[-108,-195],[-38,-358],[-224,-219],[-128,-352],[-133,173],[-363,108],[-68,163],[-12,-11],[-133,156],[-187,104],[9,537],[-132,-102],[-138,-202],[-96,-169],[-74,-257],[0,-62],[80,-306],[235,-281],[245,-33],[54,-248],[-9,-199],[-235,-33],[-344,50],[-271,-166],[-218,-347],[-199,-496],[-58,-48],[-10,-89],[-124,-110],[-166,152],[5,32],[-45,63],[-81,165],[5,31],[-16,-2],[11,255],[1,52],[-164,260],[-96,378],[-50,-14],[-201,-55],[-42,-12],[-26,-65],[-35,-87],[31,-89],[105,-204],[-60,-213],[11,-256],[69,-232],[74,-228],[54,-670],[-20,-244],[-106,-66],[-118,-9],[-29,169],[-90,72],[-157,119],[-128,-65],[-163,-140],[-48,-154],[39,-220],[-89,-331],[-177,-222],[-72,49],[-6,114],[-5,102],[-12,147],[-89,32],[-47,-191],[-1,-4],[9,-623],[-3,-325],[-148,-11],[-127,-32],[-34,28],[-14,-12],[-382,205],[-21,12],[-293,-293],[-261,-271],[-258,60],[62,200],[114,125],[-16,179],[-166,135],[-184,22],[-32,-14],[-86,-35],[-69,-228],[15,-11],[187,-146],[-12,-238],[-76,-89],[-48,-57],[-43,-284],[-2,-9],[-20,-16],[-96,-236],[-222,-371],[2,-167],[1,-223],[-80,-114],[-127,119],[-83,385],[-104,357],[-74,-16],[-50,-11],[-14,-114],[-22,-189],[-77,-119],[-116,38],[-38,195],[0,211],[-148,233],[-137,-43],[-74,-147],[-77,-200],[-104,-33],[-163,-173],[3,-260],[-23,-173],[-78,5],[-176,213],[-200,13],[-105,14],[-126,35],[-139,-120],[-24,-503],[72,-170],[197,-118],[-89,-306],[-200,-586],[-331,-233],[-90,504],[21,532],[-94,357],[-86,106],[-168,-150],[-12,4],[-6,2],[-164,55],[-7,2],[-7,2],[-95,10],[-47,5],[8,-73],[33,-193],[-82,-358],[-119,33],[-22,-175],[10,-132],[-35,-60],[-3,-5],[-9,-16],[-65,124],[-128,82],[-152,-200],[-80,-273],[-63,-232],[-92,-40],[-320,-323],[-83,-121],[-78,-421],[0,-612],[-294,11],[-646,-49],[15,461],[184,227],[163,-238],[183,-33],[172,331],[15,477],[3,244],[-273,157],[-291,-380],[-20,-27],[-167,-146],[-111,-97],[-267,54],[-27,189],[-9,342],[80,200],[54,234],[-84,390],[48,441],[14,55],[56,215],[48,282],[26,110],[38,160],[-73,-45],[-64,-40],[-38,-165],[-5,-20],[-88,-319],[-7,7],[-26,-204],[-4,-34],[11,-19],[-176,-297],[-3,-18],[-138,-281],[-4,-56],[4,-252],[110,-267],[1,-81],[1,-28],[0,-13],[-395,-481],[-349,-255],[-116,-85],[-160,51],[-85,126],[-199,0],[15,-432],[-127,-386],[-234,221],[-96,-169],[-102,-57],[-114,66],[-76,171],[-99,288],[-15,199],[-88,-130],[-78,-296],[-56,-260],[10,3],[-42,-178],[-69,-107],[-117,-155],[-103,-211],[-110,-310],[-92,-210],[-45,134],[-58,99],[-29,50],[-41,141],[3,151],[0,20],[0,16],[2,105],[-18,137],[-17,127],[7,44],[32,128],[42,176],[23,82],[8,31],[46,176],[0,2],[37,143],[29,172],[27,167],[-34,107],[-1,2],[-52,116],[-38,80],[-38,88],[-48,106],[-26,60],[-10,25],[-3,5],[-47,76],[-45,72],[-80,129],[-29,67],[-15,34],[-8,16],[-69,159],[-30,67],[-35,79],[-3,6],[-46,103],[-125,292],[-42,82],[-39,99],[-6,13],[-109,248],[-80,157],[-28,68],[-3,4],[-3,4],[-1,3],[-2,13],[-18,41],[-2,12],[-36,93],[-75,149],[-105,233],[-101,215],[-22,50],[-156,363],[-69,162],[-103,218],[-1,2],[-22,57],[-34,84],[-49,118],[-73,168],[-35,69],[-63,125],[-56,125],[-34,76],[-350,782],[-111,250],[-25,57],[-36,84],[-280,656],[-176,411],[-33,78],[-47,108],[-60,153],[-9,20],[-35,79],[-93,158],[-105,176],[-14,36],[-1,2],[-107,265],[-81,202],[-10,26],[-6,15],[-26,66],[-23,57],[32,27],[694,591],[60,51],[1,1],[48,36],[153,133],[198,164],[99,79],[24,24],[88,90],[243,180],[120,108],[214,192],[175,151],[361,311],[118,104],[318,266],[110,92],[60,53],[86,76],[34,31],[70,55],[142,115],[254,211],[21,13],[90,85],[66,58],[407,336],[54,44],[187,155],[13,11],[103,94],[51,41],[70,57],[74,57],[107,88],[85,70],[67,55],[117,95],[104,85],[463,370],[66,55],[24,19],[216,178],[58,47],[64,52],[78,64],[101,83],[203,168],[90,84],[12,14],[46,51],[267,199],[244,202],[48,40],[85,70],[290,239],[378,317],[277,233],[56,40],[7,5],[94,80],[281,240],[124,105],[9,8],[70,60],[116,99],[554,456],[28,22],[140,117],[75,62],[501,431],[56,43],[32,27],[68,53],[48,47],[70,58],[57,50],[270,233],[69,69],[88,69],[78,63],[40,32],[70,58],[204,168],[311,245],[107,84],[42,33],[42,34],[125,98],[12,10],[179,145],[65,68],[67,52],[146,122],[-267,613],[-33,75],[-49,109],[-100,223],[-76,171],[-502,1126],[-373,841],[-156,352],[-235,512],[-48,119],[-301,650],[-27,56],[-21,43],[-3,6],[-9,21],[-45,102],[-746,1614],[-208,461],[-189,417],[-126,268],[-3,7],[57,588],[3,43],[32,393],[12,121],[0,11],[-3,226],[-26,472],[0,14],[-4,64],[-11,254],[6,99],[12,207],[18,307],[6,110],[7,138],[9,158],[3,51],[19,322],[8,158],[51,757],[45,894],[11,174],[2,37],[9,164],[7,118],[19,346],[8,168],[21,290],[18,256],[32,468],[7,97],[7,96],[30,859],[12,344],[3,76],[4,139],[3,86],[3,106],[20,427],[29,627],[14,145],[17,239],[30,428],[10,153],[73,1048],[13,192],[12,163],[4,59],[14,213],[8,140],[13,233],[11,191],[13,253],[11,230],[13,234],[4,65],[8,121],[1,171],[6,89],[4,82],[2,106],[2,42],[2,86],[3,127],[0,11],[1,7],[0,4],[3,89],[7,128],[5,236],[11,222],[9,190],[5,191],[7,158],[11,207],[8,193],[1,16],[4,94],[5,171],[1,8],[0,2],[5,94],[6,111],[7,118],[2,42],[5,165],[12,296],[24,614],[8,196],[7,179],[5,123],[3,74],[6,128],[3,74],[7,137],[33,682],[10,204],[27,552],[5,103],[14,284],[28,573],[4,82],[45,870],[12,162],[33,560],[32,550],[12,322],[71,1431],[5,318],[107,1905],[3,57],[124,2230],[22,354],[13,465],[39,1503],[12,293],[2,38],[24,588],[61,1468],[2,39]],[[61381,25056],[-212,224],[-169,179]],[[61000,25459],[35,29],[89,75],[11,1],[188,185],[111,119],[260,277],[289,133],[118,-99],[-100,-199],[-235,-182],[-131,-140],[-230,-245],[-6,-17],[-18,-340]],[[66826,40946],[-94,20],[-47,9],[-154,32],[71,-195],[61,-197],[67,-159],[132,-303],[85,-271],[-3,-417],[-133,-60],[1,-3],[93,-234],[-13,-395],[79,-289],[90,-179],[63,-234],[63,-246],[70,-178],[107,15],[87,-42],[493,-68],[235,-65],[149,58],[96,-26],[139,-82],[130,-51],[132,-55],[116,-174],[152,-321],[157,-357],[172,-430],[104,-305],[-9,-237],[-21,-182],[-18,-282],[-61,-209],[-67,-109],[-49,101],[9,331],[-27,265],[-63,330],[-118,50],[-12,-263],[-6,-117],[-72,-463],[-163,-199],[271,-347],[123,-39],[-27,-164],[-3,-259],[34,-289],[-136,179],[-157,-48],[18,-208],[132,-162],[87,-310],[47,-210],[72,-100],[165,134],[50,325],[146,111],[172,-195],[144,-78],[150,-112],[157,-231],[64,-186],[117,-225],[62,-276],[28,-223],[111,-278],[199,-116],[0,-8],[73,-66],[24,-311],[-1,-2],[-34,-308],[-46,-318],[-23,-85],[-18,-63],[-22,-198],[0,-2],[-116,-1020],[-81,-573],[-244,11],[-113,94],[-86,71],[-6,-82],[-39,-579],[307,-50],[295,298],[112,-45],[47,-117],[81,-132],[-18,-326],[-100,-68],[-49,-34],[-150,-98],[-206,63],[-190,-28],[-162,59],[-104,-99],[-69,-192],[-98,-271],[33,-337],[187,13],[112,29],[86,16],[170,-1],[151,166],[33,5],[165,25],[139,-29],[118,40],[123,129],[110,-261],[113,-142],[-31,-250],[-222,61],[-129,-17],[-154,-47],[-200,-24],[-156,-99],[-160,-115],[-114,-123],[-187,-120],[-287,57],[-157,27],[-135,-30],[-148,-116],[-9,-5],[-260,-309],[-118,347],[-253,678],[-181,546],[-119,137],[-50,-35],[-94,68],[-105,-29],[-131,-66],[-103,66],[-112,46],[-187,3],[-133,-88],[-122,-169],[-95,-138],[-130,-32],[-118,43],[-118,95],[-119,172],[-211,75],[-119,25],[-127,3],[-205,50],[-180,18],[-136,-24],[-149,-57],[-164,-112],[-180,-206],[-110,-119],[-165,-503],[-273,74],[-89,25],[-704,87],[-126,-112],[-140,-57],[-347,-227],[-167,-195],[-1,-2],[-60,-104],[-185,-324],[-2,-253],[-116,-59],[-286,188],[-192,-19],[-20,308],[-48,268],[14,260],[4,69],[-22,164],[-13,99],[-189,-50],[-106,-57],[-168,-43],[-327,-79],[-168,-163],[-110,-106],[-181,-183],[-121,-38],[-2,-1],[-17,-6]],[[60834,25775],[-19,158],[24,150],[5,33],[30,188],[-11,120],[-4,47],[-1,6],[16,146],[52,72],[18,37],[37,118],[2,43],[-37,181],[-72,355],[-7,33],[-132,113],[-127,-107],[-195,19],[-93,113],[-10,160],[-91,119],[-100,239],[-83,85],[-61,28],[-21,43],[-15,32],[-11,95],[-56,146],[-16,42],[-57,47],[-36,113],[-108,19],[-36,132],[31,85],[-66,92],[-175,248],[-39,53],[-34,31],[-262,228],[-19,30],[-5,30],[5,11],[4,9],[8,43],[-5,50],[0,4],[-1,6],[-36,46],[-130,79],[-34,76],[-11,35],[-82,256],[-41,129],[-1,4],[-65,291],[0,15],[-1,28],[3,7],[11,23],[37,45],[72,65],[21,24],[23,26],[24,47],[5,21],[5,24],[11,83],[0,8],[-11,77],[-1,5],[-9,70],[-15,122],[-17,137],[-1,4],[-4,-3],[-134,-121],[-39,-24],[-30,0],[-24,8],[-8,3],[-39,34],[-92,158],[-4,6],[-31,69],[-1,5],[-18,55],[-9,52],[-44,112],[-5,3],[-5,18],[-54,36],[-18,12],[-163,-223],[-8,-7],[-37,-13],[-8,-3],[-66,9],[-14,10],[-33,25],[-86,84],[-59,28],[-83,21],[-132,-47],[-29,30],[-5,4],[-36,53],[-84,119],[-5,7],[-20,33],[-13,46],[0,1],[-17,73],[-6,78],[0,107],[40,321],[49,402],[11,151],[82,132],[-15,141],[-11,301],[-36,114],[-20,94],[61,94],[-46,113],[-5,396],[1,11],[15,195],[4,53],[9,255],[32,26],[55,5],[63,52],[21,114],[-34,78],[-23,51],[7,12],[61,110],[0,1],[0,1],[15,77],[2,13],[4,169],[-33,163],[-51,254],[0,2],[-44,146],[-29,70],[-27,66],[-81,190],[-38,148],[-4,12],[-21,129],[22,114],[11,23],[13,25],[4,13],[54,163],[-74,71],[-105,145],[-28,58],[-18,73],[-2,9],[-9,30],[-5,15],[-33,80],[-31,41],[-9,8],[-17,15],[-91,83],[-32,29],[-125,164],[-10,16],[-2,3],[-30,48],[-55,103],[0,17],[1,69],[24,91],[-12,84],[0,1],[-1,8],[-31,30],[-11,9],[-122,105],[-14,2],[-31,50],[-52,137],[-27,108],[-53,373],[-9,67],[0,135],[7,70],[4,40],[-41,37],[-55,31],[-584,333],[-87,-9],[-42,141],[-46,28],[-46,28],[-26,85],[5,94],[46,198],[93,207],[62,66],[98,226],[51,113],[11,123],[-73,56],[-56,29],[-52,56],[-64,126],[-49,110],[5,132],[-36,47],[-72,-19],[-28,-20],[-24,-18],[-51,-38],[-98,142],[41,132],[-10,66],[-21,9],[-649,-245],[-88,-19],[-131,-13],[-394,-147],[-140,0],[-56,0],[-335,-94],[-67,-19],[-44,-13],[-115,-34],[-594,-179],[-159,-66],[-123,-40],[-527,-158],[-494,-141],[-243,-66],[-146,-46],[-3,-1],[-124,-38],[-226,-66],[-78,-28],[97,394],[119,482],[83,339],[5,28],[58,170],[31,744],[26,490],[15,226],[11,169],[10,146],[39,692],[25,362],[12,164],[0,6],[21,305],[1,7],[15,210],[64,913],[-487,-212],[-73,1373],[-10,226],[-34,772],[-23,500],[-24,669],[-27,480],[0,132],[-2,23],[-1,11],[-8,117],[-85,1458],[-2,125],[0,47],[-16,121],[-9,307],[-6,109],[-36,697],[-22,333],[-9,138],[-43,866],[-26,518]],[[60834,25775],[73,-217],[50,-53],[43,-46]],[[61381,25056],[-21,-241],[-4,-54],[-8,-89],[-67,-86],[-97,-24],[-40,-9],[-65,-58],[-69,-60],[-151,141],[-1,3],[-335,523],[-6,9],[-1,2],[-2,2],[-19,27],[-100,141],[-187,247],[-17,22],[-381,503],[-220,239],[-172,136],[-102,72],[-112,81],[-131,9],[-155,3],[-228,-103],[-303,-51],[-170,-94],[-128,41],[-173,148],[-223,-73],[-357,186],[-153,-10],[-242,-35],[-237,-85],[-223,-187],[-196,-136],[-136,-2],[-152,-11],[-427,-203],[-38,1],[-414,16],[-1,0],[-17,-8],[-185,322],[-20,36],[-64,130],[-3,7],[-14,28],[-25,53],[-106,-186],[-13,-24],[-39,-69],[-22,-85],[-29,-114],[-59,28],[-97,46],[-111,-119],[-36,-38],[-20,-21],[-27,-34],[-105,-133],[-19,-137],[-9,-61],[-10,-76],[68,-272],[-35,-205],[-341,221],[-23,-354],[-34,-24],[-44,-257],[-119,-226],[-10,-6],[-5,-59],[-263,-265],[-280,-99],[-158,0],[-14,-17],[-253,-33],[-362,397],[94,134],[54,138],[172,121],[136,168],[114,182],[-32,242],[-121,200],[-92,-81],[-271,-393],[-199,-16],[-72,181],[159,271],[16,85],[-52,129],[-738,-617],[-53,66],[-96,26],[-176,49],[43,202],[-10,199],[-136,77],[-144,-77],[-279,-277],[-189,57],[-10,3],[-18,6],[18,231],[-108,430],[-172,248],[-41,8],[-13,-139],[-144,-52],[-177,93],[-130,-160],[-122,-40],[-43,17],[-162,-223],[-123,32],[-158,167],[-416,-17],[-17,-62],[-70,-116],[-82,-167],[-115,-156],[-184,44],[-139,-107],[-81,-93],[-197,-64],[-149,-175],[-68,-272],[-129,-173],[-45,-19],[-63,-178],[-334,-165],[-27,215],[13,379],[-13,51],[-216,191],[141,247],[179,151],[128,-243],[146,82],[67,192],[118,86],[-51,224],[-56,35],[-84,51],[-215,-156],[-146,11],[-105,-180],[-117,42],[-99,133],[-120,75],[-176,-710],[-29,-66],[-10,-24],[-89,-211],[1,-79],[-9,-26],[-39,-114],[-88,-257],[-271,248],[0,631],[-41,92],[-143,-32],[-49,-126],[-113,42],[-99,-54],[20,-189],[-18,-496],[-498,-380],[-89,15],[-4,-16],[0,-1],[-81,14],[-115,-38],[-106,-9],[-219,-59],[-136,-10],[-158,-49],[-182,-131],[-199,150],[-155,56],[-189,-88],[-186,-92],[-322,359],[-173,251],[60,283],[170,233],[166,100],[131,132],[19,273],[-91,254],[-195,349],[-213,212],[-127,178],[62,179],[56,161],[-9,303],[-154,523],[23,618],[39,369],[78,326],[73,91],[62,77],[102,111],[-18,52],[-26,73],[-33,5],[-181,66],[-5,21],[-31,6],[-43,8],[-7,-130],[-11,-186],[-190,-181],[-218,-68],[-110,-129],[-132,-330],[-247,-509],[-17,-17],[-115,-333],[-2,-6],[-44,-126],[-162,-132],[-69,110],[-58,54],[-236,-10],[-2,-18],[-20,-202],[63,-290],[28,-254],[93,-189],[29,-47],[181,-80],[153,0],[245,0],[9,-149],[-326,-463],[-362,-463],[-51,19],[-121,-32],[-143,-76],[-94,-65],[-158,-31],[-199,-111],[-204,-94],[-130,-205],[-159,17],[-122,-129],[-2,-248],[-106,-172],[-131,-120],[-140,-450],[-76,-285],[-99,-159],[-101,-163],[-186,-20],[-153,94],[-242,55],[-19,-230],[-61,-255],[-201,-546],[-149,-80],[-129,-69],[-135,34],[-117,-8],[-86,-153],[-108,-515],[-116,-542],[-208,-319],[-137,-213],[-270,9],[-13,189],[-145,79],[-299,-4],[-238,-87],[-122,-136],[-84,-251],[-440,786],[-42,16],[-112,44],[-54,-58],[-52,-57],[-204,-125],[-213,-179],[-134,-217],[-184,-541],[-223,-184],[-152,23],[-343,-276],[-184,-185],[-185,-268],[-175,-286],[-255,-562],[-117,-223],[-85,-162],[-136,-169],[-204,-200],[-133,58],[-70,29],[-87,36],[-16,6],[-106,193],[-123,-11],[-86,260],[-20,17],[-126,100],[-7,108],[-13,202],[5,42],[45,378],[7,51],[262,176],[108,142],[34,45],[35,338],[63,359],[49,93],[77,147],[-36,349],[-5,47],[-10,28],[-57,160],[52,603],[85,302],[-42,541],[-40,233],[-19,271],[25,294]]],"transform":{"scale":[0.00001940554805548043,0.000010616007040070429],"translate":[-73.72777376499988,40.988988394000046]}} diff --git a/src/js/config/mapconfig/mapfiles/county/dc-counties.json b/src/js/config/mapconfig/mapfiles/county/dc-counties.json new file mode 100644 index 00000000..81e9a2ad --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/dc-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-77.11975681699994,38.80892658800002,-76.9093908829999,38.99554020900018],"geometries":[{"type":"MultiPolygon","properties":{"name":"DC"},"id":"11001","arcs":[[[0]],[[1]],[[2]]]}]},"states":{"type":"GeometryCollection","bbox":[-77.11975681699994,38.80892658800002,-76.9093908829999,38.99554020900018],"geometries":[{"type":"MultiPolygon","properties":{"name":"District of Columbia"},"id":"11","arcs":[[[0]],[[1]],[[2]]]}]}},"arcs":[[[31472,38993],[1214,-1039],[1356,-1151],[602,-698],[-158,-239],[-143,-214],[-602,-340],[-636,189],[-185,736],[-267,566],[-653,679],[-686,717],[-266,146],[-122,0],[-246,121],[-461,-24],[-364,-36],[-375,0],[-407,96],[-322,387],[-171,543],[-257,447],[-171,447],[-346,507],[-8,12],[-364,543],[-204,387],[-267,459],[-279,398],[-41,104],[-98,246],[107,314],[353,0],[686,-132],[321,-206],[236,-265],[5,-42],[156,-152],[460,-748],[306,-388],[551,-699],[1104,-1135],[642,-507],[0,-29]],[[28937,44124],[-117,-491],[-703,509],[-553,76],[-316,356],[-253,285],[-267,491],[20,81],[-22,14],[-1056,1721],[-103,1461],[1239,107],[1123,-524],[563,-1302],[-44,-77],[188,-1462],[134,-554],[167,-691]],[[89751,54030],[114,-103],[109,-96],[28,-24],[255,-225],[191,-169],[258,-229],[55,-48],[48,-43],[110,-98],[76,-68],[172,-149],[38,-32],[87,-76],[16,-14],[240,-214],[190,-168],[200,-178],[36,-33],[21,-17],[28,-24],[4,-4],[43,-37],[70,-63],[207,-182],[173,-154],[33,-29],[39,-34],[144,-128],[72,-64],[182,-161],[19,-17],[194,-169],[110,-98],[346,-306],[394,-349],[135,-121],[97,-84],[204,-180],[79,-70],[56,-50],[145,-128],[171,-150],[150,-130],[70,-63],[147,-131],[125,-111],[92,-81],[204,-181],[59,-51],[74,-65],[34,-30],[76,-68],[46,-41],[100,-87],[29,-27],[56,-50],[27,-24],[57,-50],[16,-14],[295,-263],[182,-159],[42,-37],[117,-102],[339,-299],[21,-19],[27,-23],[50,-45],[40,-35],[135,-119],[74,-67],[94,-85],[88,-77],[37,-32],[226,-199],[80,-71],[277,-245],[143,-127],[72,-62],[489,-419],[294,-266],[575,-521],[-665,-583],[-1330,-1168],[-1631,-1431],[-402,-353],[-10,-9],[-43,-38],[-17,-15],[-78,-69],[-214,-187],[-66,-58],[-383,-336],[-140,-123],[-54,-48],[-57,-49],[-22,-20],[-27,-23],[-140,-123],[-69,-60],[-42,-37],[-38,-34],[-59,-52],[-40,-36],[-127,-111],[-40,-36],[-121,-107],[-221,-194],[-10,-8],[-75,-67],[-76,-67],[-35,-31],[-454,-399],[-188,-165],[-12,-12],[-13,-11],[-12,-10],[-33,-29],[-34,-32],[-321,-290],[-725,-625],[-24,-20],[-30,-25],[-36,-30],[-80,-71],[-714,-626],[-24,-21],[-19,-18],[-344,-302],[-494,-434],[-13,-11],[-434,-380],[-34,-31],[-62,-54],[-20,-18],[-53,-46],[-235,-207],[-282,-247],[-110,-97],[-54,-48],[-357,-313],[-144,-122],[-186,-170],[-227,-201],[-147,-128],[-53,-47],[-175,-153],[-352,-305],[-55,-48],[-77,-72],[-25,-21],[-28,-25],[-39,-34],[-55,-48],[-150,-133],[-6,-5],[-70,-61],[-90,-79],[-173,-152],[-35,-31],[-227,-198],[-41,-36],[-228,-201],[-15,-13],[-283,-248],[-6,-5],[-49,-44],[-73,-63],[-456,-401],[-197,-174],[-76,-67],[-255,-223],[-160,-141],[-92,-81],[-134,-117],[-370,-326],[-60,-53],[-136,-120],[-315,-276],[-59,-52],[-508,-447],[-439,-386],[-51,-44],[-15,-14],[-66,-59],[-51,-45],[-3,-3],[-162,-142],[-282,-246],[-52,-47],[-114,-100],[-300,-266],[-20,-18],[-31,-26],[-49,-41],[-29,-26],[-106,-92],[-172,-153],[-3,-2],[-339,-297],[-183,-161],[-122,-107],[-122,-107],[-200,-177],[-289,-252],[-261,-228],[-186,-164],[-143,-125],[-401,-353],[-38,-33],[-45,-39],[-83,-74],[-26,-23],[-142,-124],[-212,-186],[-279,-245],[-173,-151],[-150,-131],[-68,-58],[-295,-259],[-14,-12],[-230,-201],[-545,-475],[-10,-9],[-637,-555],[-675,-604],[-494,-435],[-37,-32],[-92,-81],[-185,-163],[-14,-13],[-435,-382],[-257,-227],[-40,-34],[-125,-111],[-32,-27],[-154,-136],[-97,-86],[-113,-99],[-72,-64],[-82,-72],[-153,-134],[-266,-232],[-21,-19],[-217,-192],[-168,-147],[-66,-58],[-36,-32],[-221,-195],[-133,-116],[-431,-378],[-131,-116],[-119,-104],[-207,-181],[-192,-169],[-177,-156],[-59,-52],[-64,-57],[-78,-68],[-165,-146],[-27,-24],[-193,-168],[-382,-336],[-72,-63],[-163,-144],[-297,-261],[-25,-22],[-167,-147],[-42,-37],[-423,-372],[-149,-131],[-20,-17],[-174,-153],[-379,-333],[-270,-237],[-477,-420],[-562,-495],[-204,-179],[-233,-206],[-164,-144],[-66,-58],[-231,-204],[-310,-275],[-153,-136],[-11,-10],[-83,-73],[-89,-77],[-311,-275],[-41,-35],[-29,-26],[-292,-256],[-51,-45],[-81,-71],[-198,-173],[-337,-298],[-35,-30],[-39,-34],[-13,-12],[-484,-426],[-98,-86],[-51,-45],[-107,-94],[-139,-123],[-276,-243],[-645,-571],[-10,-8],[-37,-32],[-120,-104],[-61,-54],[-56,-49],[-133,-117],[-90,-79],[-171,-151],[-276,-241],[-5,-4],[-43,-38],[-265,-233],[-172,-152],[-295,-260],[-96,-85],[-631,-556],[-195,-171],[-725,-611],[-137,-121],[-156,-137],[-226,-197],[-128,-113],[-289,-256],[-210,-202],[-27,-24],[-28,-24],[-239,-204],[-34,-29],[-9,-9],[-1458,-1324],[-1086,-984],[-1224,-1072],[-3358,-2960],[-54,-48],[-11,-9],[-1581,171],[-1315,-376],[-695,503],[-796,484],[-494,1379],[-699,937],[273,928],[-29,826],[67,876],[104,1442],[93,1304],[103,864],[229,1272],[401,1141],[533,1305],[151,1344],[305,1388],[306,1382],[350,1192],[672,1942],[625,1349],[361,777],[369,816],[494,1085],[609,1292],[870,868],[1890,865],[679,773],[594,654],[915,1552],[688,1175],[6,10],[755,697],[1882,-167],[1288,-336],[799,-17],[775,279],[930,712],[330,207],[887,555],[1227,754],[1533,722],[1266,489],[1202,422],[46,17],[973,331],[888,454],[712,910],[454,764],[113,190],[1407,1543],[833,649],[857,1319],[334,970],[145,421],[293,1173],[-190,1074],[-57,318],[-946,-1399],[-233,-1120],[-300,-391],[-735,-957],[-707,-883],[-718,-915],[-537,-670],[-451,-754],[-538,-891],[-240,-237],[-508,-501],[-1299,-419],[-764,-217],[-189,-55],[-746,-216],[-779,-265],[-1145,-515],[-1161,-678],[-1518,-1071],[-35,-25],[-917,-535],[-958,176],[-1160,331],[-2122,321],[-1923,-795],[-730,-981],[-226,-304],[-976,-1538],[-884,-1146],[-1182,-204],[-847,-877],[-1155,-343],[-214,1616],[2,1391],[-223,2446],[-144,1281],[-598,416],[-1074,1411],[-1466,1302],[-1063,752],[-236,167],[-1389,208],[708,-1038],[279,-409],[1015,-849],[747,-703],[913,-1340],[506,-1378],[327,-1139],[69,-965],[31,-1120],[36,-1298],[-573,-1612],[-1560,2270],[-1092,2259],[-1274,2105],[-1068,1325],[-1305,1217],[-91,67],[-1055,778],[-133,98],[-811,929],[-1043,285],[-666,501],[-1634,1366],[-1344,1173],[-737,729],[-104,267],[-211,546],[-1050,1290],[-292,636],[-429,933],[-43,906],[-567,2090],[-1467,551],[-853,336],[-1368,748],[-1286,290],[-345,65],[-966,183],[-1232,211],[-1423,148],[-1275,65],[-1490,-113],[-1548,530],[-1843,531],[-1108,483],[-932,691],[-942,232],[-192,-1144],[-387,315],[-1456,1399],[-1502,1321],[-69,541],[-153,510],[-495,905],[-522,905],[-1263,1633],[-1176,1120],[-1397,1350],[-661,791],[-527,895],[-66,175],[-499,1325],[-491,742],[-476,458],[427,542],[805,655],[41,33],[57,53],[47,36],[10,10],[10,10],[718,661],[641,569],[981,857],[1201,1026],[1540,1340],[744,655],[975,820],[641,479],[307,241],[390,331],[542,478],[272,239],[420,371],[772,679],[652,571],[494,436],[451,399],[242,207],[30,27],[826,736],[732,656],[74,66],[244,210],[730,633],[162,140],[14,11],[81,69],[188,180],[78,77],[946,821],[384,339],[493,431],[410,360],[378,334],[642,568],[219,210],[252,241],[566,462],[324,284],[440,387],[639,556],[472,420],[255,224],[439,388],[455,399],[396,345],[1172,1032],[172,150],[30,30],[694,608],[729,647],[659,581],[614,542],[591,518],[333,292],[755,658],[4,3],[356,319],[301,260],[200,177],[639,556],[455,387],[198,170],[149,129],[644,513],[398,348],[1643,1471],[482,388],[522,454],[785,688],[315,328],[341,276],[1279,-1053],[290,-217],[428,-369],[174,-155],[33,-27],[423,-352],[208,-185],[52,-45],[672,-590],[94,-83],[240,-211],[695,-606],[406,-358],[736,-652],[408,-363],[587,-507],[9,-9],[106,-96],[463,-417],[94,-73],[515,-453],[393,-356],[425,-373],[1143,-974],[15,-11],[0,-1],[9,-5],[111,-80],[192,-139],[450,-432],[904,-786],[470,-406],[599,-494],[484,-403],[1464,-1308],[693,-618],[336,-293],[153,-136],[123,-107],[133,-116],[532,-469],[517,-452],[676,-595],[196,-170],[322,-283],[111,-98],[77,-84],[276,-295],[28,-24],[10,-8],[30,-27],[43,-39],[29,-27],[24,-23],[2,-2],[121,-121],[78,-78],[10,-10],[422,-373],[47,-41],[108,-95],[330,-291],[78,-69],[39,-34],[388,-344],[151,-131],[135,-118],[32,-28],[165,-145],[83,-72],[483,-425],[510,-450],[121,-108],[51,-45],[72,-62],[249,-220],[545,-478],[178,-158],[16,-14],[17,-15],[10,-9],[37,-33],[17,-15],[131,-115],[332,-292],[226,-203],[33,-29],[352,-311],[12,-11],[127,-111],[73,-64],[110,-97],[160,-141],[170,-151],[21,-18],[97,-86],[138,-123],[44,-39],[437,-383],[271,-239],[236,-202],[431,-377],[714,-639],[2024,-1809],[452,-394],[190,-166],[1202,-1045],[593,-516],[31,-28],[547,-481],[151,-134],[100,-89],[69,-60],[63,-55],[15,-13],[82,-72],[66,-58],[90,-80],[48,-41],[78,-70],[49,-43],[64,-56],[63,-56],[47,-41],[59,-52],[47,-41],[24,-21],[41,-36],[161,-142],[11,-10],[78,-69],[15,-13],[432,-379],[230,-201],[26,-23],[11,-10],[74,-66],[365,-325],[410,-361],[130,-114],[381,-338],[203,-178],[10,-9],[62,-55],[67,-59],[54,-48],[16,-14],[23,-21],[186,-163],[233,-204],[25,-22],[66,-58],[36,-31],[29,-26],[1,-2],[71,-63],[22,-19],[149,-132],[280,-246],[318,-281],[66,-58],[44,-39],[184,-163],[436,-383],[114,-100],[49,-44],[144,-128],[73,-65],[35,-30],[617,-543],[75,-65],[590,-513],[3350,-2895],[1789,-1539],[718,-618],[4,-4],[700,-621],[299,-263],[148,-131],[591,-526],[352,-309],[138,-117],[14,-13],[21,-18],[11,-9],[30,-25],[161,-139],[238,-204],[215,-185],[56,-48],[1010,-978],[601,-603],[31,-21],[33,-27],[56,-43],[26,-23],[64,-56],[402,-355],[85,-75],[38,-34],[88,-77],[100,-90],[108,-96],[113,-99],[5,-5],[49,-42],[6,-5],[14,-13],[15,-13],[61,-54],[253,-222],[41,-36]]],"transform":{"scale":[0.000002103680376804145,0.0000018661548715503433],"translate":[-77.11975681699994,38.80892658800002]}} diff --git a/src/js/config/mapconfig/mapfiles/county/de-counties.json b/src/js/config/mapconfig/mapfiles/county/de-counties.json new file mode 100644 index 00000000..20ed4f49 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/de-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-75.78914081299985,38.45103325600002,-75.04841149199984,39.839459074000104],"geometries":[{"type":"MultiPolygon","properties":{"name":"DE"},"id":"10003","arcs":[[[0]],[[1]],[[2]],[[3,4]]]},{"type":"Polygon","properties":{"name":"DE"},"id":"10001","arcs":[[5,6,-4,7]]},{"type":"Polygon","properties":{"name":"DE"},"id":"10005","arcs":[[8,-6]]}]},"states":{"type":"GeometryCollection","bbox":[-75.78914081299985,38.45103325600002,-75.04841149199984,39.839459074000104],"geometries":[{"type":"MultiPolygon","properties":{"name":"Delaware"},"id":"10","arcs":[[[0]],[[1]],[[2]],[[7,8,6,4]]]}]}},"arcs":[[[33599,75317],[-328,-15],[43,163],[96,137],[108,116],[182,15],[89,-88],[31,-112],[25,-127],[13,-77],[-259,-12]],[[30062,81931],[44,-75],[58,-98],[-46,-165],[-271,14],[-356,99],[-367,77],[-289,116],[-262,-5],[-189,73],[-89,34],[-53,219],[60,314],[671,-38],[342,-127],[302,-101],[236,-106],[64,-28],[145,-203]],[[31375,83233],[-846,-82],[-354,251],[-333,299],[-252,285],[-300,161],[27,176],[121,215],[199,93],[113,155],[374,51],[452,16],[433,46],[-30,-462],[-16,-51],[45,-178],[136,-210],[68,-106],[32,-107],[23,-85],[95,-126],[-91,-87],[-8,-6],[39,-122],[55,-96],[18,-30]],[[36888,65719],[-2,-5],[-37,-130],[-30,-45],[-16,-23],[-43,-7],[-230,-36],[-143,-67],[-60,-46],[-31,-24],[-27,4],[-135,22],[-146,46],[-97,3],[-151,4],[-165,-14],[-199,-38],[-152,-88],[20,-46],[17,-41],[113,-54],[28,-27],[49,-46],[-31,-75],[-199,-52],[-91,20],[-129,27],[-153,45],[-167,7],[-177,-61],[-35,-106],[-31,-56],[-26,-46],[-194,-29],[-70,19],[-257,71],[-121,75],[-97,84],[-134,76],[-187,7],[-122,-37],[-79,-82],[-24,-124],[-32,-24],[-49,-37],[-188,-4],[-22,1],[-105,6],[-30,2],[-3,2],[-140,91],[-34,72],[-108,76],[-72,22],[-64,19],[-188,11],[-96,-21],[-1,-1],[-36,-8],[-129,-68],[-70,-65],[-49,-112],[94,-59],[269,-31],[148,-75],[49,-110],[23,-96],[-16,-94],[-175,-31],[-225,32],[-184,62],[-87,72],[-121,111],[-111,45],[-112,-122],[-95,-81],[-136,-53],[-46,-101],[76,-68],[139,-28],[169,-37],[79,-83],[-38,-98],[-73,-71],[148,-89],[184,-70],[34,-78],[-85,-62],[-94,-53],[-196,-62],[-222,-29],[-274,-43],[-197,-14],[-123,-4],[-200,-6],[-14,-5],[-141,-54],[-407,-139],[-116,-103],[-24,-95],[72,-78],[21,-74],[-74,-122],[-117,-76],[-143,-99],[-82,-10],[-405,-53],[-212,-71],[-103,-73],[-752,-179],[-262,-134],[-134,-111],[-292,-27],[-46,100],[-147,71],[-170,-16],[-127,-35],[-63,-96],[-210,-137],[-133,86],[-160,24],[-119,-34],[-21,-6],[-157,21],[-133,-66],[-132,-61],[-211,9],[-141,38],[-26,109],[-44,69],[-142,-34],[-67,-74],[-165,-103],[-155,-4],[-185,49],[-92,10],[-181,20],[-152,-7],[-182,-51],[-139,-2],[-264,94],[-306,26],[-171,-3],[-190,-62],[-180,-34],[-100,-50],[-62,-98],[-130,-37],[-113,-95],[-187,-18],[-162,-6],[-124,-46],[-239,-41],[-285,-103],[-168,0],[-459,-6],[-118,-5],[-34,-2],[-341,-6],[-25,-5],[-106,-21],[-102,-73],[-127,-97],[-127,-41],[-341,-97],[-131,-39],[-178,-156],[-100,-105],[-122,-48],[-262,4],[-150,-26],[-401,14],[-182,-12],[-237,9],[-206,-17],[-274,-80],[-198,15],[-246,-39],[-175,68],[-170,23],[-226,-30],[-207,18],[-194,-17],[-210,-3],[-162,50],[-218,72],[-198,2],[-150,43],[-139,42],[-235,125],[-122,82],[-338,24],[-256,12],[-462,15],[-17,1],[-2928,109],[-3004,-90],[-1013,-26],[-30,0],[-498,-12],[-148,-9],[-143,-6],[-357,-9],[-158,-3],[-786,-10]],[[3936,60902],[-5,38],[-36,289],[-1,10],[-70,436],[-35,304],[-71,348],[-74,453],[-96,590],[-26,199],[-102,795],[-1,6],[-43,240],[-15,83],[-136,753],[-28,157],[-27,148],[-36,200],[-51,726],[-10,36],[-8,16],[-5,9],[-33,98],[-19,60],[-20,86],[-30,228],[-10,69],[-14,81],[0,1],[-9,62],[-36,318],[-20,145],[-16,154],[-12,133],[-92,540],[-63,396],[-16,101],[0,1],[-44,294],[-47,313],[-18,113],[-2,12],[-14,127],[-35,392],[-7,95],[-28,305],[-41,570],[-10,182],[-16,179],[-29,376],[-15,180],[-34,317],[-35,271],[-22,94],[-12,80],[-13,86],[-4,19],[-25,135],[-37,164],[-41,133],[-32,98],[-86,230],[-6,15],[-2,7],[-64,159],[-53,293],[-22,123],[-22,121],[-19,110],[-61,340],[-1,2],[-87,300],[-53,318],[-35,212],[-11,223],[-7,85],[-13,118],[-3,23],[-4,37],[-18,135],[-61,441],[-41,242],[-108,633],[-8,47],[-10,73],[-8,69],[-6,49],[-40,335],[-1,12],[-85,462],[-39,213],[-18,159],[-22,184],[-122,227],[0,8],[-15,295],[-42,712],[5,341],[-173,806],[-20,106],[-163,425],[-13,292],[-8,464],[0,7],[0,1],[-1,5],[0,7],[-5,53],[-21,356],[-144,714],[-86,582],[-11,29],[-9,73],[-28,222],[-10,65],[-9,54],[-11,78],[-24,102],[-2,5],[-1,5],[-2,10],[0,1],[-8,59],[-20,116],[-28,162],[-21,126],[-41,178],[-9,37],[-3,72],[-10,229],[-4,89],[1,17],[1,4],[2,8],[13,76],[17,172],[11,105],[39,354],[12,518],[-3,20],[-52,341],[-32,121],[-23,102],[-11,62],[-4,42],[-7,65],[21,178],[30,203],[26,177],[4,134],[-4,139],[-2,90],[3,48],[2,49],[17,146],[1,9],[-33,138],[0,3],[-3,86],[-3,28],[3,135],[27,793],[-11,104],[-4,59],[-1,26],[1,192],[0,1],[-2,180],[223,-1],[137,0],[167,-1],[753,-2],[719,20],[77,79],[147,152],[123,127],[385,397],[65,66],[35,35],[68,68],[174,175],[14,13],[13,13],[6,6],[350,343],[86,82],[88,75],[7,6],[4,4],[194,174],[67,51],[143,108],[15,11],[47,36],[299,225],[170,127],[267,179],[179,120],[174,114],[42,28],[70,44],[60,39],[258,164],[136,81],[102,61],[145,85],[289,163],[231,128],[53,30],[283,151],[118,63],[369,176],[334,156],[105,51],[125,60],[114,56],[214,105],[224,100],[100,44],[75,34],[281,118],[151,64],[254,107],[443,174],[311,123],[55,21],[37,14],[121,44],[238,86],[524,188],[124,44],[350,120],[183,63],[359,110],[345,105],[210,64],[330,101],[209,61],[217,64],[373,106],[699,184],[7,2],[9,3],[22,6],[6,1],[46,11],[1026,244],[826,191],[247,54],[319,67],[41,7],[28,5],[196,35],[240,43],[210,41],[609,112],[544,100],[263,40],[414,64],[171,26],[103,16],[133,16],[315,46],[229,32],[134,19],[88,12],[76,12],[133,16],[316,38],[309,37],[310,37],[36,4],[242,29],[243,29],[148,16],[404,45],[639,64],[10,1],[374,37],[457,40],[210,19],[65,5],[17,2],[557,33],[448,25],[27,1],[88,5],[177,9],[167,7],[46,1],[5,1],[13,2],[16,3],[11,0],[40,2],[17,2],[21,1],[2,0],[6,0],[28,1],[75,4],[519,29],[236,12],[337,16],[2,0],[354,17],[314,15],[4,0],[3,1],[485,23],[746,12],[117,17],[255,-20],[340,-20],[186,15],[686,-35],[334,-1],[444,-4],[67,1],[1589,22],[145,3],[29,0],[90,-3],[240,-13],[567,-39],[549,-24],[393,-17],[309,-5],[179,-12],[546,-52],[128,-51],[147,-19],[33,-2],[188,-9],[195,-9],[236,20],[403,-37],[201,-18],[349,-34],[650,-61],[110,-11],[277,-27],[343,-38],[159,-20],[951,-125],[670,-88],[1044,-164],[135,-23],[285,-37],[818,-142],[511,-95],[140,-26],[726,-175],[146,-21],[377,-49],[46,-10],[31,-6],[394,-82],[133,-35],[499,-107],[102,-26],[176,-46],[299,-82],[74,-20],[503,-110],[11,-3],[324,-83],[380,-97],[527,-158],[-319,-71],[-676,-179],[-383,25],[-585,-38],[-1348,-344],[-1134,-350],[-487,-180],[-1072,-413],[-563,-248],[-951,-661],[-655,-449],[-194,-229],[-77,-222],[-209,-120],[-296,-212],[-362,-195],[-90,-151],[-920,-471],[-541,-706],[-291,-319],[-243,-204],[-128,-187],[-273,-413],[-1063,122],[-501,78],[-970,170],[-114,198],[-28,49],[-76,168],[-23,50],[261,94],[164,58],[-279,41],[-422,149],[-89,-278],[4,-244],[0,-2],[82,-260],[3,-9],[790,-289],[9,-1],[372,-47],[253,-43],[0,-1],[666,-118],[507,-123],[46,-139],[-845,-968],[-461,-57],[-769,-425],[-66,-73],[-57,-33],[-435,-247],[-1507,-857],[-855,-433],[-184,-211],[-622,-267],[-181,-196],[-305,-206],[-298,-116],[-458,-4],[-909,-146],[-636,-132],[-635,-68],[-570,-98],[-225,-197],[-337,-226],[-660,-395],[-644,-295],[-299,-86],[-193,-151],[-213,-216],[-329,-227],[-494,-289],[-432,-103],[146,-154],[-219,-177],[222,-158],[182,-203],[-161,-159],[-134,-213],[65,-126],[160,-232],[11,-249],[242,-60],[231,-110],[276,-169],[182,-212],[618,4],[621,-180],[286,-104],[220,-149],[404,-57],[231,-99],[241,-131],[54,-157],[363,-148],[389,-94],[295,-133],[317,-72],[506,-241],[504,-132],[273,-70],[298,-145],[249,-133],[-529,-69],[-774,-37],[-284,-90],[-31,-10],[667,-51],[585,-8],[-75,-252],[-121,-172],[-52,-134],[-26,-66],[-115,-156],[-179,-244],[11,-82],[13,-87],[17,-118],[27,-159],[55,-166],[-2,-114],[-1,-118],[-5,-210],[-82,-137],[-45,-42],[-145,-137],[-68,-255],[-191,-110],[-299,-193],[-211,-382],[-44,-230],[-275,-198],[-198,-112],[-410,-219],[-26,-11],[-278,-114],[-348,-188],[95,-242],[-76,-212],[-140,-132],[-108,-101],[-179,-228],[-5,-140],[0,-10],[-1,-19],[-90,-67],[-129,-97],[-51,-39],[9,-21],[109,-261],[18,-119],[14,-93],[19,-66],[88,-292],[128,-170],[48,-64],[84,-172],[81,-55],[105,-73],[1,0],[184,-135],[349,-218],[358,-192],[156,-83],[-233,-243],[65,-3],[114,-6],[311,-16],[582,-147],[45,-17],[409,-152],[-138,-70],[-48,-24],[-146,-74],[-116,-63],[-68,-36],[-82,-45],[-34,-19],[214,6],[282,7],[371,-88],[224,-53],[127,-16],[398,-145],[167,-121],[36,-5],[220,0],[493,-161],[658,-234],[261,-205],[16,-9],[354,-203],[357,-66],[260,-59],[189,-124],[327,-86],[83,-210],[262,-277],[20,-13],[234,-155],[395,-263],[276,-207],[231,-230],[376,-213],[260,-166],[-139,-165],[493,-177],[-20,-60],[-24,-76],[140,-328],[658,-248],[-81,-201],[9,-96],[12,-139],[-416,-123],[237,-294],[3,-5],[35,-48],[11,-16],[68,-92]],[[64141,35976],[-402,150],[-358,59],[-176,-20],[-308,-174],[-255,-108],[-267,-57],[-237,68],[-212,74],[-153,4],[-209,-118],[-109,-79],[-427,-102],[-249,-8],[-323,43],[-317,32],[126,164],[83,60],[-8,85],[-95,89],[-48,121],[-114,52],[-167,-14],[-98,-136],[-87,-64],[-131,-59],[-162,-99],[-52,-76],[-3,-81],[-397,-19],[-115,44],[-207,141],[-248,89],[-72,217],[-208,88],[-168,110],[-201,16],[-134,-81],[-166,-76],[-210,-76],[-190,-17],[-75,94],[-72,66],[-87,84],[28,116],[-491,146],[-250,15],[-162,-25],[-182,-32],[-178,8],[-308,79],[-117,6],[-50,2],[-28,-32],[-35,-39],[0,-95],[-119,-209],[-95,-68],[-139,-20],[-364,-24],[-324,-38],[-119,87],[-127,56],[-221,-15],[-111,-82],[-4,-73],[-16,-98],[-201,-104],[-13,-7],[-1,0],[-343,-74],[-119,-40],[-170,-67],[-131,-64],[-67,-73],[47,-92],[214,-121],[59,-141],[-12,-114],[-87,-74],[-159,-73],[-142,-21],[-99,-51],[117,-74],[81,-50],[126,-10],[16,-2],[182,53],[210,0],[186,-72],[59,-127],[-115,-83],[-138,-13],[-178,22],[-196,-59],[-89,-27],[-21,-67],[-3,-12],[0,-78],[95,-77],[99,-65],[-76,-90],[-198,-35],[-150,-48],[-99,-113],[105,-111],[94,-99],[40,-97],[-94,-75],[-81,-22],[-68,-18],[-178,0],[-63,107],[-167,53],[-138,14],[-162,35],[35,-122],[-71,-124],[-213,-21],[-72,78],[-275,40],[-136,-15],[-284,7],[-180,-52],[-112,-28],[-14,-4],[130,-103],[-67,-71],[-148,21],[-108,45],[-137,20],[-148,-75],[-184,-16],[-144,-40],[-194,-14],[-189,-15],[-186,-8],[-176,22],[-93,-59],[-246,-31],[-105,-43],[-45,-19],[-119,-45],[-159,33],[-244,37],[-323,54],[-145,54],[-206,-24],[-167,0],[-56,3],[-100,4],[-191,-8],[-651,-68],[-333,-81],[-281,-48],[-394,-35],[-203,-4],[-221,18],[-240,18],[-190,90],[-133,-25],[-160,-43],[-200,-18],[-135,-44],[-202,-60],[-163,-70],[-228,-9],[-152,-35],[-186,-37],[-127,-52],[-209,-9],[-151,-18],[-265,-104],[-201,-14],[-123,31],[-130,-46],[-126,-27],[-126,-141],[-108,-100],[-65,-102],[-38,-82],[137,-134],[-31,-156],[-57,-91],[-188,-141],[-101,-84],[-104,-47],[-159,-28],[-184,-4],[-174,-61],[-108,-92],[-96,-143],[-118,-83],[-174,-40],[-140,-15],[-155,-46],[-154,-10],[-190,29],[-138,1],[-193,-55],[-127,-59],[-189,-44],[-24,-96],[-109,-57],[-6,-3],[-18,-79],[-514,-471],[-132,-115],[-298,-273],[-77,-74],[-121,-137],[-98,-98],[-258,-281],[-322,-62],[-912,-177],[-926,-180],[-4,-87],[55,-76],[-178,-99],[-193,-141],[-214,-83],[-241,-28],[-209,22],[-214,-15],[-245,-55],[-165,-47],[-174,-93],[-147,-94],[-280,-87],[-222,-120],[-54,-5],[-910,-71],[-819,5],[-330,2],[-1396,-27],[-272,-1],[-4,0],[-563,-10],[-56,-1],[-881,-12],[-2568,-39],[-383,-23],[-1116,-10],[-464,-9],[-1629,-41],[-203,9],[-998,-30],[-275,-3],[-1044,-10],[-2091,-41],[-154,-3],[-661,-12],[-288,-6],[-9,0],[-551,-5],[-17,0],[-95,1],[-326,5],[-493,-23],[-662,-12],[-658,-13],[-723,-15],[-425,-9],[-190,-2],[-155,0],[-384,-7],[-882,-108]],[[8962,27202],[-28,203],[-4,110],[-2,39],[-38,261],[-14,94],[-16,128],[-33,237],[-5,42],[-17,110],[0,2],[-18,89],[-21,66],[-41,205],[-13,178],[-24,174],[-24,121],[-35,195],[-8,76],[-43,290],[-34,225],[-18,64],[-62,309],[-24,132],[-19,147],[-53,546],[-16,109],[-1,19],[-20,123],[-60,431],[-16,78],[-2,15],[-19,134],[-33,242],[-3,22],[-46,310],[-42,300],[-68,479],[-25,175],[-25,118],[-85,403],[-45,509],[-219,1403],[-44,281],[-12,75],[-1,8],[-84,539],[-13,87],[-111,702],[-27,172],[-12,78],[-154,988],[-21,133],[-47,395],[4,93],[-81,514],[-98,619],[-118,418],[-31,141],[11,98],[11,61],[-21,162],[-3,22],[-14,185],[-4,57],[-24,161],[-17,105],[-18,109],[-3,14],[-19,117],[-11,69],[-11,65],[-11,108],[-6,40],[-93,634],[-28,193],[-75,517],[-83,577],[-17,118],[-18,130],[-47,290],[-15,96],[-2,219],[-132,856],[-74,290],[-26,52],[-5,11],[0,12],[0,86],[-1,7],[-25,127],[-47,126],[-27,157],[-6,47],[8,75],[-21,117],[-40,146],[-1,38],[-1,23],[-18,120],[-49,349],[0,38],[-12,177],[-2,62],[-1,205],[-65,338],[-22,145],[-25,165],[-73,481],[-17,96],[-2,12],[-26,164],[-215,1421],[-36,101],[-11,55],[-25,295],[-57,400],[-23,234],[-10,79],[-10,66],[-26,161],[-116,729],[-30,152],[-19,109],[-13,75],[0,2],[-46,289],[-94,526],[-27,151],[-13,75],[-100,766],[-24,259],[-33,211],[-68,398],[-87,503],[-17,176],[-44,292],[-81,572],[-1,4],[-3,22],[0,2],[-72,471],[-83,551],[-42,300],[-203,1428]],[[36888,65719],[6,0],[2,1],[548,64],[281,-163],[318,-170],[382,-211],[342,-88],[796,-166],[185,-117],[117,-74],[-135,-159],[-83,-96],[-145,-167],[-93,-26],[-331,-94],[-207,-55],[-253,-118],[-164,-146],[-19,-250],[303,97],[171,154],[321,39],[99,-130],[128,-168],[-68,-62],[-170,-157],[-24,-193],[201,-171],[74,-63],[302,-202],[151,48],[281,90],[-132,177],[325,-8],[245,-137],[412,-122],[13,144],[14,144],[-71,80],[-135,152],[-268,0],[-156,1],[112,81],[109,79],[56,40],[47,162],[4,13],[-266,22],[-208,88],[-218,204],[223,53],[297,-20],[315,-96],[248,-109],[434,-60],[396,-158],[174,-70],[180,-33],[200,-37],[472,-112],[156,-38],[149,9],[53,3],[227,13],[353,-105],[290,-103],[209,-129],[116,-233],[168,-142],[502,-167],[875,-109],[560,-155],[204,-219],[81,-186],[-31,-321],[3,-245],[227,-218],[37,-38],[59,-62],[57,-61],[34,-36],[7,-22],[13,-39],[54,-168],[94,-47],[410,-204],[103,-51],[235,-116],[190,-104],[28,-15],[227,-122],[563,-310],[281,-155],[473,-255],[478,-285],[515,-225],[60,-26],[167,-160],[128,-102],[130,-103],[142,-145],[112,-114],[179,-129],[41,-138],[9,-30],[-75,-216],[-39,-74],[-87,-164],[-222,-61],[-299,19],[-404,-58],[171,-27],[277,-43],[207,-33],[43,-7],[560,-270],[70,-208],[4,-27],[34,-254],[7,-79],[12,-145],[-173,-247],[-252,-209],[-258,-107],[-33,-13],[195,-27],[119,-16],[343,-137],[393,-165],[343,-104],[180,-202],[-15,-249],[131,-217],[232,-158],[80,-157],[-53,-296],[-43,-97],[-129,-289],[-50,-124],[-39,-96],[-80,-195],[-332,67],[-67,-45],[-175,-118],[-201,-234],[-89,-69],[-315,-244],[-424,-229],[-172,-93],[-3,-14],[-25,-112],[-24,-110],[-20,-74],[-43,-161],[18,-69],[28,-107],[6,-23],[90,-272],[-11,-12],[-96,-105],[0,-91],[0,-37],[-200,-156],[-78,-55],[-223,-157],[113,-255],[288,-146],[92,-191],[13,-194],[26,-103],[61,-237],[89,-190],[6,-65],[11,-120],[56,-136],[14,-37],[-3,-23],[-19,-133],[-4,-174],[10,-223],[146,-269],[116,-166],[41,-57],[51,-209],[40,-80],[67,-134],[1,-2],[85,-101],[31,-36],[66,-179],[81,-152],[9,-17],[112,-179],[75,-159],[9,-18],[-32,-363],[-5,-30],[-25,-138],[-19,-128],[-15,-106],[0,-230],[0,-283],[2,-156],[1,-126],[74,-261],[72,-207],[-171,-229],[385,-191],[186,-195],[47,-226],[251,-117],[296,-140],[144,-68],[338,-122],[16,-3],[807,-179],[897,-318],[733,-227],[347,-123],[399,-175],[379,-157],[712,-286],[631,-249],[433,-154],[33,-11],[375,-120],[165,-68],[156,-64],[83,-38],[155,-71],[241,-140],[379,-242],[145,-90],[96,-59],[298,-219],[130,-96],[284,-234],[237,-201],[136,-145],[610,-389],[212,-128],[416,-258],[294,-283],[210,-235],[161,-293],[26,-103],[17,-69],[84,-129],[87,-134],[103,-250],[12,-341],[4,-104],[-10,-36],[-42,-149],[-11,-146],[-8,-200],[-7,-48],[-19,-147],[-41,-27],[-224,-150]],[[64141,35976],[28,-38],[52,-66],[-11,-12],[-82,-88],[50,-92],[110,-35],[17,-5],[44,-14],[250,-163],[-296,-16],[-312,-148],[-48,-47],[-99,-98],[-68,-175],[-25,-65],[114,-356],[280,-260],[240,-198],[180,-148],[278,-207],[443,-345],[248,-140],[334,-159],[377,-179],[268,-124],[629,-275],[1094,-478],[703,-376],[550,-305],[363,-201],[489,-203],[673,-256],[403,-161],[348,-144],[216,-127],[256,-174],[365,-221],[232,-136],[336,-201],[297,-205],[167,-101],[196,-106],[259,-137],[366,-262],[756,-409],[320,-139],[301,-131],[687,-275],[457,-152],[476,-160],[421,-226],[419,-166],[425,-190],[349,-241],[298,-187],[356,-170],[340,-181],[241,-114],[146,-122],[303,-202],[397,-271],[480,-162],[376,-6],[781,-280],[523,-167],[492,-16],[619,-188],[454,-138],[5,-1],[147,-22],[406,-59],[157,-37],[194,-45],[834,-174],[245,-47],[470,-77],[409,-58],[609,-54],[398,-15],[648,-26],[328,10],[398,24],[272,6],[33,1],[359,18],[609,48],[574,74],[451,66],[375,85],[392,92],[276,131],[161,177],[167,76],[9,112],[28,157],[-248,193],[-143,253],[405,45],[386,-201],[230,-257],[184,-299],[136,-212],[86,-179],[94,-332],[129,-273],[201,-263],[158,-245],[54,-219],[58,-394],[-26,-259],[32,-97],[94,-292],[25,-189],[13,-93],[47,-241],[22,-268],[55,-274],[27,-136],[52,-227],[88,-184],[101,-261],[101,-275],[73,-215],[51,-251],[47,-147],[66,-196],[52,-180],[-77,-362],[194,-206],[42,-131],[50,-160],[54,-142],[88,-265],[78,-205],[126,-226],[232,-536],[83,-331],[77,-190],[98,-207],[75,-328],[95,-317],[-4,-269],[30,-186],[11,-523],[56,-300],[5,-285],[-54,-461],[58,-303],[72,-314],[68,-325],[85,-540],[-66,-214],[-110,6],[-571,30],[-427,36],[-329,40],[223,107],[-19,317],[273,20],[213,-248],[257,114],[-68,208],[102,120],[-105,123],[-460,186],[-335,103],[-332,78],[581,156],[-34,60],[-86,155],[-275,205],[-544,-1],[-189,146],[-212,204],[124,124],[132,133],[-204,156],[115,146],[35,44],[205,188],[55,2],[347,17],[1,0],[373,146],[-382,71],[-77,170],[-8,17],[455,126],[44,221],[37,217],[11,254],[-88,204],[-152,310],[-44,145],[-118,240],[6,305],[-53,187],[-161,255],[-273,235],[-736,37],[-366,-83],[-446,-4],[14,-228],[-37,-177],[-648,80],[-311,81],[-525,54],[-364,18],[-277,75],[-110,-220],[-573,14],[-589,121],[-251,126],[-219,108],[-153,-224],[127,-180],[44,-220],[-478,151],[-311,-49],[-318,0],[-329,67],[-358,61],[-195,128],[-282,132],[-454,-38],[-302,91],[-468,70],[-388,4],[-463,12],[55,-24],[253,-113],[223,-99],[398,-200],[440,-216],[293,-156],[248,-135],[228,-208],[143,-273],[295,-240],[-200,-175],[-133,-177],[211,-161],[150,-202],[151,-242],[375,-236],[-246,-197],[-205,-135],[376,-161],[152,-155],[155,-123],[-597,-89],[-436,88],[-551,78],[-259,106],[-258,-7],[179,158],[-282,227],[-90,-243],[-243,87],[26,150],[-450,157],[-105,-200],[125,-218],[45,-269],[434,-31],[262,-68],[274,-102],[318,-60],[322,11],[323,-19],[215,-165],[83,-151],[291,-67],[345,-17],[301,0],[160,-90],[42,-24],[200,-142],[273,169],[367,-31],[242,80],[414,126],[38,-38],[86,-85],[280,-2],[88,-1],[490,89],[179,-179],[-381,-77],[-304,-83],[-63,-88],[-25,-35],[-38,-53],[337,51],[298,-54],[329,63],[243,-233],[287,-113],[158,-128],[-71,-159],[-398,-88],[-288,-48],[-191,-32],[-398,21],[130,105],[-258,40],[-377,-2],[-162,-167],[-397,-101],[-456,-85],[-423,30],[-362,53],[-337,-86],[-524,-134],[-426,-114],[-360,23],[-392,-8],[-418,-9],[-386,-87],[-379,-47],[52,218],[-322,-149],[-319,14],[-569,49],[-251,-101],[213,-102],[215,-114],[-217,-204],[-321,-211],[-458,-108],[-356,-28],[-379,-5],[-293,-91],[-269,-138],[-116,-26],[-345,-79],[-461,-19],[-339,-42],[-548,-105],[-547,22],[-440,51],[-369,-113],[-686,173],[-378,109],[-372,-23],[-258,-69],[-160,-99],[-316,-114],[-312,-55],[-408,41],[-464,-48],[-338,-98],[-408,47],[-354,79],[-393,-86],[-40,-64],[-18,-29],[-54,-87],[-1,-2],[339,-18],[421,-42],[414,-114],[246,-79],[289,269],[215,127],[287,-149],[577,28],[330,83],[379,-48],[-286,-185],[480,44],[188,-110],[500,-21],[347,-35],[379,104],[216,145],[387,-23],[334,-83],[312,-119],[429,-125],[-65,-159],[-404,-13],[171,-183],[-175,-187],[-146,-187],[-142,120],[-300,-53],[-297,-59],[-451,-94],[-437,-2],[-50,-258],[504,-5],[-85,-229],[367,-39],[52,148],[352,19],[1,212],[517,-70],[500,-21],[376,139],[224,86],[334,181],[265,109],[222,38],[333,-9],[518,68],[376,182],[467,-62],[307,272],[226,137],[154,148],[233,63],[501,-76],[557,83],[512,141],[319,144],[200,53],[443,142],[316,-71],[378,-19],[499,-34],[503,-30],[458,22],[427,-55],[360,-88],[400,-130],[344,-155],[94,-166],[-385,-156],[-93,-191],[148,-123],[330,218],[445,-28],[679,-43],[-230,-214],[30,-212],[-44,-143],[251,-209],[177,-227],[317,-9],[286,-118],[148,-148],[-140,-159],[-284,-223],[289,6],[322,182],[73,301],[-126,256],[-258,73],[-231,101],[-96,213],[-296,57],[202,131],[217,87],[253,57],[229,105],[222,285],[424,-181],[578,117],[265,146],[93,213],[170,157],[307,-59],[360,-36],[16,-144],[-117,-218],[-43,-214],[566,-38],[149,93],[295,96],[386,147],[-74,194],[-68,189],[-456,106],[-197,221],[253,237],[55,171],[-251,-35],[-272,-43],[-228,99],[284,215],[-368,36],[167,119],[-297,82],[273,58],[287,31],[250,24],[452,24],[3,0],[547,-26],[60,-250],[12,-364],[47,-237],[76,-501],[87,-344],[48,-192],[96,-411],[8,-296],[31,-459],[-16,-310],[25,-351],[44,-298],[89,-169],[64,-172],[84,-228],[42,-166],[-10,-151],[-66,-239],[51,-196],[96,-197],[57,-310],[39,-383],[20,-200],[37,-207],[33,-388],[40,-241],[49,-199],[53,-197],[35,-286],[55,-237],[63,-175],[4,-290],[23,-538],[29,-142],[22,-288],[60,-385],[46,-626],[-42,-293],[-100,-258],[-414,1],[-1221,0],[-172,1],[-77,1],[-244,8],[-132,5],[-232,-8],[-265,-8],[-104,134],[-23,11],[-598,-157],[-287,224],[14,213],[-442,61],[-11,139],[-97,28],[-129,37],[-243,-28],[-68,-162],[-36,-13],[-1125,83],[-210,203],[-149,85],[-197,-208],[298,-134],[256,-68],[374,-109],[211,-187],[417,-150],[-139,0],[-458,0],[-252,0],[-662,-1],[-363,0],[-84,0],[-1021,0],[-158,0],[-611,-1],[-272,0],[-734,0],[-208,0],[-279,-2],[-471,0],[-153,-1],[-536,0],[-227,-1],[-304,0],[-664,-3],[-179,0],[-180,0],[-295,1],[-266,0],[-160,0],[-328,0],[-167,0],[-200,1],[-278,2],[-288,0],[-295,0],[-398,1],[-561,0],[-255,1],[-407,0],[-276,-1],[-291,0],[-198,0],[-158,0],[-151,1],[-246,-1],[-285,1],[-672,-15],[-336,1],[-184,1],[-1254,3],[-183,0],[-244,1],[-221,1],[-156,1],[-237,0],[-153,0],[-266,1],[-411,1],[-138,1],[-64,0],[-690,-1],[-190,1],[-25,0],[-209,1],[-16,0],[-581,2],[-165,1],[-2,0],[-166,0],[-197,1],[-183,1],[-345,1],[-955,1],[-416,0],[-155,1],[-281,3],[-787,7],[-147,1],[-166,2],[-299,0],[-581,1],[-49,0],[-786,2],[-206,1],[-332,1],[-863,2],[-899,2],[-76,0],[-3446,14],[-319,2],[-312,0],[-301,1],[-339,1],[-261,1],[-441,2],[-207,0],[-391,1],[-34,1],[-38,0],[-600,0],[-51,1],[-1,1],[-426,1],[-464,2],[-184,1],[-490,3],[-224,-7],[-139,-5],[-37,4],[-47,4],[-59,5],[-41,2],[-1221,2],[-179,0],[-137,0],[-380,-1],[-383,-1],[-156,1],[-328,0],[-210,0],[-144,0],[-142,-1],[-358,1],[-1343,1],[-104,0],[-841,8],[-167,2],[-896,8],[-249,-3],[-149,-5],[-76,-2],[-113,17],[-10,0],[-413,7],[-6,0],[-147,3],[-49,1],[-3,0],[-8,0],[-114,-3],[-309,4],[-264,2],[-65,-1],[-39,-1],[-4,-1],[-31,-3],[-121,3],[-61,1],[-227,6],[-33,1],[-182,2],[-312,4],[-221,2],[-896,10],[-334,3],[-63,1],[-85,1],[-34,0],[-21,0],[-52,1],[-106,1],[-113,1],[-3,0],[-68,1],[-69,0],[-95,1],[-265,3],[-41,0],[-73,1],[-13,0],[-87,1],[-146,2],[-162,1],[-83,1],[-159,1],[-161,2],[-8,1],[-112,1],[-145,1],[-142,2],[-149,2],[-87,2],[-199,1],[-203,3],[-201,2],[-67,0],[-141,1],[-167,3],[-50,0],[-185,2],[-28,0],[-115,2],[-110,1],[-66,1],[-87,1],[-45,0],[-112,1],[-9,1],[-83,1],[-32,0],[-285,3],[-24,0],[-57,1],[-8,0],[-35,0],[-129,1],[-142,1],[-177,3],[-46,0],[-147,2],[-302,2],[-63,1],[-119,2],[-142,1],[-117,1],[-121,1],[-102,1],[-102,1],[-153,2],[-99,1],[-248,3],[-172,2],[-166,2],[-406,4],[-220,1],[-115,1],[-230,2],[-176,2],[-164,2],[-561,5],[-149,2],[-48,1],[-304,4],[-264,3],[-819,11],[-469,7],[-247,4],[-98,1],[-205,3],[-610,8],[-273,4],[-68,1],[-252,3],[-263,4],[-216,2],[-214,3],[-600,6],[-808,10],[-23,1],[-21,0],[-69,1],[-31,0],[-218,3],[-156,1],[-27,1],[-12,0],[-12,0],[-23,0],[-6,0],[-12,1],[-52,0],[-88,1],[-90,2],[-31,0],[-13,0],[-58,1],[-250,4],[-74,2],[-78,1],[-68,1],[-8,1],[-161,3],[-250,5],[-165,4],[-229,4],[-174,3],[-276,4],[-240,2],[-97,0],[-41,0],[-52,0],[-210,3],[-62,0],[-270,5],[-8,0],[-116,1],[-144,1],[-78,0],[-292,5],[-229,4],[-82,1],[-91,1],[-110,6],[-59,3],[-139,3],[-290,5],[-203,2],[-290,4],[-175,3],[-250,3],[-469,6],[-711,15],[-142,2],[-144,1],[-231,3],[-269,5],[-217,3],[-147,3],[-254,6],[-243,4],[-252,4],[-130,2],[-223,4],[-170,1],[-206,2],[-144,2],[-201,3],[-2095,43],[-312,7],[-156,3],[-150,3],[-992,11],[-653,7],[-2,0],[-65,10],[-131,5],[-162,7],[0,-6],[-660,12],[-445,10],[-613,11],[-1236,23],[-527,20],[-22,1],[-37,1],[-230,7],[-69,418],[-39,265],[-25,154],[-57,352],[-114,670],[-60,378],[-21,86],[-13,95],[-11,74],[-17,129],[-20,174],[-11,85],[-70,453],[-25,163],[-29,182],[-2,12],[-18,109],[-25,148],[-15,137],[-10,137],[-20,223],[-2,28],[-8,36],[-3,16],[-14,80],[-12,105],[-18,119],[-13,78],[-14,123],[-1,20],[-14,79],[-20,74],[-13,75],[-7,124],[-5,59],[-17,91],[-10,66],[-7,41],[-5,25],[-9,81],[-17,89],[0,1],[-13,89],[-35,210],[-16,112],[-52,353],[-14,100],[-2,12],[-63,439],[-10,72],[-1,6],[-3,15],[-22,151],[-24,168],[-181,1222],[-32,214],[-77,408],[-23,125],[1,3],[7,26],[3,21],[0,26],[-3,30],[-5,35],[-5,32],[-37,208],[-13,90],[-7,52],[-31,207],[-15,104],[-15,112],[-22,143],[-6,54],[-7,42],[-3,22],[-8,49],[-4,18],[-9,62],[-7,42],[-17,123],[-10,54],[0,5],[-2,13],[-5,40],[-3,18],[-13,87],[-3,21],[-8,52],[-14,95],[-7,92],[-6,66],[-18,107],[-7,57],[-1,7],[-26,112],[-13,81],[-23,156],[-7,42],[-5,114],[-1,6],[-8,44],[-14,98],[-10,86],[-2,38],[-3,34],[-5,31],[-3,17],[-52,305],[-39,226],[-54,310],[-19,107],[-61,401],[-63,408],[-27,171],[-11,58],[-226,1150],[1,4],[39,205],[-24,186],[-30,258],[-31,219],[-79,502],[-34,227],[-41,318],[-1,5],[-101,669],[-30,269],[-49,292],[-42,288],[-14,98],[-31,239],[-126,567],[-18,126],[-15,178],[-42,477],[-21,178],[-27,179],[-12,79],[-33,231],[-67,465],[-1,2],[-68,467],[-32,208],[-106,707],[-18,121],[-16,107],[-25,162],[-108,728],[-15,82],[-1,7],[3,0],[-98,674],[-26,176],[-64,460],[-42,119],[-11,30],[-12,74],[-8,50],[-51,355]]],"transform":{"scale":[0.0000074073672836728716,0.00001388439702397111],"translate":[-75.78914081299985,38.45103325600002]}} diff --git a/src/js/config/mapconfig/mapfiles/county/fl-counties.json b/src/js/config/mapconfig/mapfiles/county/fl-counties.json new file mode 100644 index 00000000..379b3f7d --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/fl-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-87.63491789599993,24.523213195000153,-80.03143944599987,31.000962206000167],"geometries":[{"type":"Polygon","properties":{"name":"FL"},"id":"12063","arcs":[[0,1,2,3,4,5]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12033","arcs":[[[6]],[[7]],[[8,9]],[[10,11]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12113","arcs":[[[12,-9,13,14]],[[15,16,-12,17]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12091","arcs":[[[-15,18]],[[19,20]],[[21,22,-16,23]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12059","arcs":[[-5,24,25,26]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12131","arcs":[[-26,27,28,29,-20,30,-22,31]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12133","arcs":[[32,-28,-25,-4]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12089","arcs":[[[33]],[[34]],[[35]],[[36]],[[37,38,39]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12039","arcs":[[40,41,-1,42]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12073","arcs":[[43,44,45,-41,46]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12065","arcs":[[47,48,49,50,-44,51]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12079","arcs":[[52,53,54,55,-48,56]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12047","arcs":[[57,58,-53,59]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12013","arcs":[[60,61,62,-2]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12077","arcs":[[-46,63,64,65,-61,-42]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12023","arcs":[[66,67,68,69,70,-58,71]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12031","arcs":[[[72]],[[73]],[[74,75]],[[76,77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90,91,92,-38]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12003","arcs":[[-39,-93,93,94,95,-67,96]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12005","arcs":[[[97]],[[98]],[[99,100]],[[-63,101,102,-29,-33,-3]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12121","arcs":[[-71,103,104,-54,-59]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12123","arcs":[[105,106,107,-49,-56]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12129","arcs":[[[108]],[[109]],[[110]],[[-51,111,112,-64,-45]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12067","arcs":[[-105,113,114,-106,-55]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12109","arcs":[[[115,116]],[[117]],[[118]],[[119,120,121,122,123,-75,124]],[[-77,125]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12045","arcs":[[-66,126,127,128,129,-100,130,-102,-62]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12019","arcs":[[131,132,133,-94,-92]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12007","arcs":[[-134,134,135,136,-95]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12125","arcs":[[-137,137,-68,-96]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12037","arcs":[[[138]],[[139]],[[140]],[[141]],[[-129,142]],[[143]],[[-113,144,-127,-65]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12001","arcs":[[-136,145,146,147,148,-69,-138]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12041","arcs":[[-149,149,150,-114,-104,-70]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12107","arcs":[[[151]],[[152]],[[-123,153,154,155]],[[156,157,-146,-135,-133]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12035","arcs":[[[158,159,-154,-122]],[[-120,160]],[[161,162,163,-117]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12075","arcs":[[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[-148,180,181,182,183,184,-150]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12083","arcs":[[185,186,187,188,-181,-147,-158]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12127","arcs":[[[189,190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205,206,207,208,209,210,-155,-160,211]],[[212,-163]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12069","arcs":[[-210,213,214,215,216,-187,217]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12017","arcs":[[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231,-183]],[[-182,-189,232,233,234]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12119","arcs":[[-217,235,236,237,-233,-188]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12117","arcs":[[238,-214,-209]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12009","arcs":[[[239]],[[240]],[[241]],[[242]],[[243]],[[244,245,246,247,248,249,-208]],[[250,-190,251,-206]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12095","arcs":[[-239,-250,248,-248,252,-215]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12053","arcs":[[-238,253,254,-234]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12101","arcs":[[[255]],[[256,257]],[[-237,258,259,260,261,-254]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12105","arcs":[[262,263,264,265,-259,-236,-216]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12097","arcs":[[-247,266,267,-263,-253]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12103","arcs":[[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[-257,281]],[[282,283,-261]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12057","arcs":[[[284]],[[285]],[[286]],[[-266,287,288,-283,-260]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12061","arcs":[[[289]],[[290]],[[291]],[[292]],[[293,294,-267,-246,295]],[[296,297]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12055","arcs":[[298,299,300,301,-264]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12049","arcs":[[-302,302,303,-265]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12081","arcs":[[[304,305]],[[306]],[[307]],[[-304,308,309,310,-288]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12093","arcs":[[-295,311,312,313,-299,-268]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12111","arcs":[[[314,315]],[[316,-297]],[[317,318,319,320,-312,-294]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12115","arcs":[[[321,322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[-310,330,331,332,333,334]],[[-305,335]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12027","arcs":[[-301,336,-331,-309,-303]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12085","arcs":[[[337,338]],[[339,340,341,342,343,-313,-321,344]],[[345,-315]],[[346,-319]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12043","arcs":[[347,348,-300,-314]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12015","arcs":[[[349]],[[350]],[[351]],[[352,353]],[[354]],[[355]],[[-322,356]],[[357]],[[-334,358]],[[-349,359,360,-332,-337]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12099","arcs":[[[361]],[[-338,362]],[[363,-340]],[[364,-342]],[[365,366,367,-344]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12051","arcs":[[368,369,370,-348,-368]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12071","arcs":[[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379,380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[-371,398,399,-360]],[[400]],[[-354,401]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12021","arcs":[[[402]],[[403]],[[404]],[[405,406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446,447,448,449,-399,-370]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12011","arcs":[[450,451,-447,-369,-367]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12086","arcs":[[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477,478,479,480,481,482,-448,-452,483]]]},{"type":"MultiPolygon","properties":{"name":"FL"},"id":"12087","arcs":[[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501,502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530,531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[-481,646]],[[647]],[[-479,648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708,-407]],[[709]],[[710]],[[-483,711,-449]]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12029","arcs":[[712]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12029","arcs":[[713]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12029","arcs":[[714]]},{"type":"Polygon","properties":{"name":"FL"},"id":"12029","arcs":[[-151,-185,715,-107,-115]]}]},"states":{"type":"GeometryCollection","bbox":[-87.63491789599993,24.523213195000153,-80.03143944599987,31.000962206000167],"geometries":[{"type":"MultiPolygon","properties":{"name":"Florida"},"id":"12","arcs":[[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501,502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530,531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[452]],[[643]],[[644]],[[645]],[[647]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[453]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[454]],[[681]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[463]],[[702]],[[703]],[[704]],[[464]],[[705]],[[465]],[[706]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[707]],[[709]],[[710]],[[402]],[[403]],[[404]],[[708,405]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[474]],[[417]],[[475]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[476]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379,380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[400]],[[361]],[[349]],[[350]],[[351]],[[352,401]],[[354]],[[355]],[[322,356]],[[357]],[[323]],[[362,338]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[335,305]],[[345,315]],[[306]],[[284]],[[307]],[[268]],[[269]],[[270]],[[271]],[[289]],[[272]],[[273]],[[274]],[[290]],[[275]],[[291]],[[276]],[[277]],[[292]],[[278]],[[285]],[[316,297]],[[286]],[[279]],[[280]],[[255]],[[281,257]],[[239]],[[240]],[[241]],[[242]],[[218]],[[219]],[[220]],[[221]],[[222]],[[243]],[[223]],[[224]],[[225]],[[191]],[[192]],[[193]],[[226]],[[227]],[[228]],[[194]],[[229]],[[195]],[[196]],[[197]],[[230]],[[198]],[[199]],[[200]],[[164]],[[201]],[[202]],[[203]],[[204]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[151]],[[152]],[[712]],[[713]],[[714]],[[138]],[[163,115,161,212]],[[117]],[[139]],[[140]],[[141]],[[143]],[[118]],[[97]],[[108]],[[98]],[[109]],[[110]],[[6]],[[7]],[[72]],[[73]],[[125,77]],[[12,9,13,18]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[33]],[[89]],[[34]],[[35]],[[36]],[[477,648,479,646,481,711,449,399,360,332,358,334,310,288,283,261,254,234,231,183,715,107,49,111,144,127,142,129,100,130,102,29,20,30,22,16,10,17,23,31,26,5,42,46,51,56,59,71,96,39,90,131,156,185,217,210,155,123,75,124,160,120,158,211,250,190,251,206,244,295,317,346,319,344,363,340,364,342,365,450,483]]]}]}},"arcs":[[[36433,95532],[9,-45],[21,-38],[23,-38],[4,-7],[4,1],[1,1],[14,-38],[3,-10],[7,-18],[4,-10],[-2,-2],[-4,-34],[-13,-22],[-22,-25],[-1,-1],[-16,-21],[-23,-33],[-22,-33],[-7,-9],[-32,-46],[0,-2],[-20,-46],[-6,-16],[-16,-46],[-29,-53],[-24,-27],[-41,-30],[-28,-21],[-19,-14],[-30,-22],[-18,-14],[-13,-16],[-7,-9],[-18,-31],[-14,-40],[-2,-7],[-3,-19],[-17,-107],[-2,-13],[-1,-5],[-2,-4],[-13,-36],[-20,-31],[-78,-60],[-28,-30],[-8,-12],[-6,-20],[-5,-40],[-1,-8],[-3,-25],[3,-29],[4,-37],[-2,-33],[-1,-3],[-9,-30],[0,-1],[0,-1],[-13,-21],[-35,-38],[-40,-30],[-8,-6],[-81,-37],[-60,-13],[-13,-3],[-4,0],[-7,-3],[-35,-17],[-25,-20],[-11,-13],[-10,-20],[-9,-22],[-13,-15]],[[35540,93908],[-22,-1],[-194,-4],[-109,-2],[-19,0],[-105,-3],[-56,0],[-118,-1],[-40,0],[-82,2],[-31,0],[-89,2],[-20,1],[-171,1],[-36,1],[-185,3],[-56,1],[-446,8],[-62,1],[-5,0],[-188,4],[-43,1],[-86,1],[-224,4],[-142,3],[-17,1],[-128,-1],[-39,0],[-88,2],[-8,0],[-18,0],[-135,1],[-62,1],[-29,0],[-19,-1],[-23,0],[11,-8],[9,-7],[9,-7],[7,-21],[-7,-16],[-15,-18],[-3,-47],[-4,-22],[1,-26],[2,-18],[-26,-20],[-8,-14],[-5,-21],[-13,-19],[-3,-19],[-7,-22],[-1,-6],[-5,-34],[2,-10],[2,-6],[13,-13],[11,-9],[6,-17],[6,-30],[-18,-3],[-11,-6],[-2,-1],[-17,-23],[1,-10],[3,-18],[-12,-20],[-1,-25],[1,-9],[1,-24],[-1,-31],[15,-26],[6,-24],[1,-24],[-98,2],[-36,1],[-18,1],[-23,0],[-16,1],[-40,1],[-33,1],[-121,3],[-29,1],[-166,5],[-110,1],[-83,-1],[-29,0],[-36,0],[-93,2],[-95,7],[-46,0],[-44,0],[-61,-3],[-72,-3],[-21,2],[-21,1],[-20,-1],[-20,-1],[-56,3],[-30,1],[-54,2],[-18,0],[-83,-1],[-70,0],[-52,0],[-105,3],[-110,3],[-14,1],[-125,-2],[-25,0],[-58,3],[-66,2],[-41,-1],[-36,1],[-87,3],[-193,1],[-49,0],[-67,0],[-54,0],[-17,0],[-50,0]],[[29602,93298],[-14,0],[-39,1],[-4,0],[-102,2],[-3,0],[-36,1],[-23,0],[-19,1],[-58,1],[-105,2],[-143,2],[-43,0],[-15,0],[-62,1]],[[28936,93309],[-4,160],[0,135],[-1,318],[0,56],[0,60],[0,38],[-1,115],[6,112],[3,112],[1,59],[2,97],[2,63],[1,20],[1,40],[1,65],[1,29],[2,71],[-3,41],[3,17],[2,17],[0,18],[0,18],[0,25],[0,20],[0,20],[0,20],[0,18],[1,22],[0,22],[1,39],[1,16],[0,24],[2,27],[1,52],[1,41],[1,33],[1,22],[0,36],[0,60],[0,3],[1,74],[0,5],[0,48],[0,30],[0,29],[0,21],[1,32],[0,16],[0,30],[1,29],[-3,62],[1,15],[1,18],[0,17],[0,18],[1,16],[0,17],[0,18],[0,20],[1,35],[0,16],[-1,36],[0,2],[1,39],[0,20],[1,18],[2,27],[-1,17],[0,20],[0,18],[-2,33],[-2,19],[3,104],[3,168],[0,28],[0,87],[-98,1],[-38,0],[-18,0],[-50,0],[-69,1],[-5,0],[-36,1],[-269,3],[-81,1],[0,1],[0,15],[1,73],[0,36],[0,66],[2,23],[0,32],[0,73],[-1,33],[1,101],[0,6],[1,51],[1,53],[0,34],[1,52],[0,28],[-87,-1],[-24,-1],[-49,-1],[-72,2],[-51,1],[-2,0],[-166,1],[-26,1],[-1,0],[-175,1],[-14,1],[-1,0],[-99,0],[-15,1],[-6,0],[-218,2],[-60,0],[-57,1],[-303,3],[-121,-1]],[[26764,97366],[0,11],[-1,6],[0,28],[0,4],[4,11],[2,6],[2,12],[2,9],[3,21],[3,17],[1,12],[2,23],[-6,13],[-1,1],[-6,7],[-1,7],[0,2],[-2,20],[66,233],[2,7],[1,2],[31,78],[8,13],[7,3],[13,12],[7,6],[16,14],[8,11],[2,2],[5,12],[1,3],[23,52],[0,2],[14,25],[-3,6],[-1,9],[10,99],[1,8],[14,42],[10,13],[4,5],[18,24],[14,19],[1,1],[12,27],[3,6],[3,22],[0,4],[0,18],[6,3],[2,1],[64,89],[6,8],[3,4],[1,1],[12,15],[33,40],[1,2],[5,11],[11,10],[3,2],[2,5],[15,31],[2,7],[0,9],[6,11],[45,36],[57,81],[1,24],[37,86],[12,21],[25,33],[47,57],[23,7],[15,3],[7,1],[41,9],[38,7],[37,22],[43,37],[10,4],[2,0],[0,2],[6,36],[0,2],[-5,27],[-6,31],[0,2],[-1,5],[0,7],[13,55],[3,20],[0,3],[0,2],[0,5],[1,29],[-10,23],[-18,66],[0,8],[1,41],[-1,0],[7,42],[0,3],[2,8],[2,18],[1,2],[2,12],[5,76],[12,7],[73,40],[5,2],[5,-2],[7,0],[11,1],[5,4],[16,15],[37,34],[3,2],[11,15],[6,9],[15,23],[25,26],[34,26],[14,10],[26,16],[15,11],[9,8],[1,1],[13,15],[3,4],[21,17],[4,7],[4,6],[10,9],[8,13],[15,17],[11,23],[15,22]],[[28104,99937],[31,0],[40,1],[57,1],[124,2],[3,0],[43,1],[52,1],[58,1],[109,1],[146,3],[22,0],[11,0],[328,5],[85,2],[15,1],[38,0],[26,1],[22,0],[15,0],[7,0],[97,2],[72,2],[122,2],[80,2],[16,0],[70,-1],[64,1],[198,4],[147,3],[48,0],[81,2],[2,0],[109,2],[91,1],[41,1],[104,2],[130,2],[22,1],[180,4],[59,0],[20,0],[86,3],[111,3],[86,3],[40,1],[38,1],[49,0],[33,0],[97,0],[39,0],[192,-2],[32,0],[89,1],[15,0],[122,1],[98,0],[57,0],[69,0],[93,1],[14,0],[42,0],[132,-2],[30,0],[83,-2],[44,0],[48,0],[119,0],[26,0],[38,-1],[24,0],[80,0],[23,1],[89,-1],[54,0],[169,1],[165,0],[59,0],[210,1],[13,-3],[36,0],[36,0],[17,0],[135,0],[2,0],[121,1],[14,0],[34,0],[21,1],[13,-1],[14,1],[64,0],[53,0],[121,0],[45,0],[6,-49],[0,-3],[-7,-137],[-1,-13],[0,-8],[-12,-28],[-1,-2],[-8,-9],[-21,-61],[-5,-1],[1,-21],[1,-20],[2,-26],[1,-16],[1,0],[3,1],[1,-2],[21,-28],[3,-5],[32,-19],[3,0],[12,-2],[25,-4],[34,-13],[14,-6],[66,-16],[1,-1],[27,-6],[2,0],[23,-14],[3,-2],[27,-24],[8,-10],[16,-20],[23,-57],[3,-57],[-4,-42],[-8,-15],[-1,-3],[0,-1],[-10,-27],[-5,-16],[-15,-53],[-5,-47],[-1,-8],[-1,-10],[-9,-92],[3,-15],[2,-3],[18,-20],[21,-16],[25,-13],[54,-21],[39,-28],[13,-16],[1,-23],[6,-22],[8,-34],[15,-38],[15,-29],[82,-104],[19,-12],[42,-51],[49,-80],[27,-56],[2,-3],[72,-95],[19,-40],[14,-18],[16,-11],[30,-7],[18,-9],[4,-5],[40,-40],[-3,-25],[-1,-16],[-6,-14],[-23,-33],[-1,-1],[-2,-3],[-28,-32],[-1,-11],[-3,-41],[14,-37],[2,-4],[18,-22],[8,-7],[23,-22],[17,-18],[3,-5],[3,-7],[3,-12],[-4,-10],[0,-1],[-6,-11],[-41,-32],[-4,-3],[-1,-8],[-1,-11],[1,-7],[1,-7],[4,-17],[2,-4],[6,-19],[15,-34],[2,-2],[7,-12],[6,-9],[6,-7],[8,-7],[0,-1],[6,-3],[22,-14],[5,-8],[51,-86],[1,-2],[-1,-2],[-22,-68],[-5,-17],[-9,0],[-12,0],[-29,-2],[-7,-2],[-6,-3],[-23,-15],[-28,-18],[-6,-71],[-3,-23],[-10,-20],[-11,-108],[42,-124],[48,-182],[-6,-69],[0,-31],[31,-79],[6,-34],[12,-145],[0,-58],[47,-60],[56,-87],[7,-15],[-2,-21],[5,-24],[7,-15],[67,-86],[20,-25],[17,-18],[3,-3],[21,-17],[28,-8],[25,-15],[180,-227],[33,-17],[54,-23],[49,-25],[83,-75],[49,-78],[48,-84],[44,-42]],[[4239,89567],[-22,-78],[-131,-51],[-48,-8],[-1,-2],[-26,0],[-28,-3],[-38,-7],[-97,-17],[-39,-10],[-68,-11],[-68,-17],[-76,-19],[-56,-15],[-55,-14],[-41,-13],[-34,-10],[-45,-13],[-190,-53],[-45,-19],[-40,-9],[-22,-9],[-36,-7],[-50,-10],[-61,-14],[-38,-6],[-28,-9],[-28,-9],[-56,-11],[-55,-8],[-39,-4],[-46,-11],[-29,-2],[-58,-8],[-50,-12],[-37,-4],[-46,-11],[-74,-11],[-48,-7],[-64,-15],[-47,-12],[-53,-12],[-38,-5],[-38,-9],[-41,-11],[-44,-11],[-45,-13],[-46,-9],[-42,-12],[-32,-1],[-33,-11],[-50,-9],[-80,-17],[-29,-6],[-75,-31],[0,36],[0,32],[72,11],[51,12],[25,6],[32,16],[23,0],[29,-1],[43,3],[30,11],[43,11],[90,37],[51,17],[28,2],[32,8],[39,18],[23,-10],[44,28],[60,3],[57,14],[35,-1],[43,5],[27,2],[21,20],[11,15],[12,14],[33,48],[9,14],[1,-1],[25,36],[41,35],[46,29],[79,25],[41,-15],[28,-10],[20,-24],[2,1],[-1,-7],[25,-23],[-1,-26],[21,-7],[12,8],[-14,15],[3,27],[11,-17],[26,-46],[31,-5],[26,-11],[39,-23],[50,8],[30,21],[19,-5],[21,2],[5,22],[16,9],[22,-7],[18,-4],[28,17],[31,5],[51,22],[52,8],[34,20],[26,-2],[46,13],[35,10],[38,9],[47,13],[49,48],[12,20],[25,-4],[-4,-32],[37,-4],[14,12],[15,19],[27,-14],[-5,25],[-23,-1],[-5,3],[36,10],[28,15],[48,-16],[9,-10],[18,0],[24,11],[63,6],[25,5],[42,8],[22,6],[19,21],[4,-3],[16,-6],[18,-7],[59,19],[25,18],[9,13],[15,21],[-29,12],[-9,-6],[-5,-4],[-21,10],[28,28],[30,13],[34,2],[23,15],[12,14],[-2,14],[1,0],[26,-34],[3,-34]],[[4111,89606],[-20,-12],[-25,35],[6,17],[45,19],[19,-1],[44,-37],[-41,-9],[-28,-12]],[[9409,90332],[1,-28],[1,-26]],[[9411,90278],[-59,-19],[-138,-28],[-85,-22],[-127,-23],[-215,-45],[-185,-43],[-120,-24],[-84,-13],[-47,-11],[-84,-20],[-65,-13],[-128,-24],[-58,-13],[-52,-12],[-108,-26],[-153,-30],[-50,-8],[-26,-7],[-67,-10],[-112,-29],[-53,-10],[-160,-41],[-78,-15],[-30,-7],[-44,-12],[-45,-11],[-35,-6],[-150,-35],[-91,-16],[-55,-13],[-265,-55],[-28,-4],[-46,-13],[-35,-6],[-39,-8],[-44,-8],[-49,-8],[-268,-46],[-348,-51],[-377,-49],[-366,-18],[-103,10],[-61,31],[-94,16],[-55,43],[-96,54],[-55,39],[-17,41],[19,5],[42,-8],[50,8],[53,-21],[48,0],[107,-46],[62,-10],[89,-26],[103,-59],[136,-15],[120,-5],[81,30],[73,21],[89,-15],[90,7],[83,10],[84,21],[133,26],[70,-5],[114,25],[53,18],[65,5],[59,12],[22,13],[34,19],[40,43],[5,24],[-26,24],[31,20],[28,-33],[39,-12],[14,30],[20,26],[-15,59],[30,-23],[30,-46],[16,-51],[43,-12],[40,2],[30,10],[30,-1],[57,4],[55,15],[35,9],[39,23],[22,43],[62,-20],[33,-2],[86,20],[37,-1],[36,9],[50,8],[45,3],[37,26],[79,10],[38,40],[27,47],[22,-13],[29,-14],[49,-2],[59,19],[47,1],[49,0],[38,14],[49,49],[41,17],[20,30],[27,3],[-15,-47],[41,14],[-14,-39],[41,-14],[27,1],[26,18],[29,28],[58,6],[53,3],[68,17],[31,17],[44,28],[65,-9],[39,5],[50,16],[36,13],[47,15],[49,-4],[47,1],[48,13],[32,21],[30,10],[36,17],[35,2],[54,-10],[47,7],[71,21],[37,1],[56,16],[41,9],[30,11],[42,2],[36,12],[57,5],[26,12],[28,8],[33,17],[37,6],[42,2],[49,14],[27,-3],[30,2]],[[5999,92952],[-15,-38],[-25,51],[-39,-35],[-18,-18],[-16,-17],[-21,-72],[12,-64],[47,-89],[116,-64],[29,-17],[92,-43],[42,-41],[28,-10],[3,-1],[-18,-40],[7,-83],[26,-32],[8,-65],[10,-67],[37,-44],[49,-27],[22,-13],[-43,-29],[-62,-62],[-49,-78],[1,-52],[21,-68],[3,-55],[-11,-34],[-29,-80],[-66,-108],[-4,-16],[-14,-12],[-24,-68],[-23,-84],[8,-29],[-6,-20],[-4,-98],[-35,-93],[-32,-47],[-34,-32],[-28,-11],[-45,1],[10,16],[-1,20],[-4,6],[-10,14],[4,21],[-3,7],[-16,28],[39,39],[31,26],[-1,37],[-16,44],[-22,10],[-16,-1],[-5,28],[15,39],[17,23],[0,24],[-29,23],[-35,7],[-24,17],[-30,16],[-21,0],[-31,24],[-9,14],[-20,-1],[-38,47],[-11,14],[-13,30],[-17,15],[2,-8],[4,-11],[3,-36],[21,-14],[14,-30],[9,-21],[27,-7],[12,-10],[31,-22],[12,-7],[60,-39],[23,-8],[20,-3],[-20,-40],[-7,-41],[2,-22],[41,-62],[-60,-60],[-2,-29],[7,-28],[13,-8],[1,-1],[7,-16],[1,-26],[0,-1],[11,-13],[-10,-14],[-21,6],[-21,0],[-9,-15],[6,-72],[-7,2],[-49,16],[-36,-42],[-34,-18],[-9,-31],[-37,-33],[-16,-10],[-1,-63],[8,-56],[-20,3],[-42,-9],[-23,22],[-26,30],[-14,31],[-36,-50],[-32,29],[-23,-12],[-20,-37],[-29,25],[-30,-18],[-54,-15],[-38,-15],[-50,-31],[-44,-14],[-28,-33],[-99,-61],[-28,-19],[-44,-30],[-58,-48],[-38,-32],[-36,-22],[-44,-46],[19,-57],[-38,-36],[-12,39],[-25,-6],[-11,-2],[-36,58],[-39,-78],[-57,45],[-27,-41],[-32,24],[-54,27],[-27,7],[-26,-2],[-36,4],[-43,-27],[-30,-10],[-36,-12],[-50,12],[-10,-36],[-30,-22],[-45,-3],[-9,-26],[-29,-14],[-49,-15],[-10,-26],[56,1],[44,7],[31,16],[44,19],[43,13],[40,1],[33,24],[31,5],[35,10],[32,0],[-3,-37],[-17,-26],[-4,-34],[-6,-32],[-14,-29],[43,8],[10,56],[22,22],[30,9],[30,17],[37,1],[23,-24],[19,-27],[30,30],[32,32],[26,4],[22,3],[21,-27],[16,-32],[33,30],[17,-39],[10,-55],[26,40],[5,36],[10,36],[23,-35],[10,-51],[6,-41],[0,-43],[-1,-19],[18,-50],[-18,-72],[-20,-28],[-29,-43],[-43,6],[-47,9],[-44,6],[-38,0],[-38,3],[-42,-5],[-38,-14],[-42,-13],[-38,1],[-39,9],[-46,5],[-43,4],[-49,-27],[-37,-43],[-42,-32],[-31,-40],[-34,-51],[-57,-18],[-43,1],[-25,2],[-57,1],[-24,5],[-39,-2],[-51,-29],[-24,-24],[-41,-15],[-30,-33],[-23,11],[13,8],[-14,17],[-35,9],[-23,-24],[-25,-9],[-40,10],[-15,6],[-16,-8],[-19,-2],[-43,-2],[-11,-37],[-30,-1],[-13,-10],[-22,1],[-58,11],[-61,-10],[-51,-5],[-30,-19],[-54,-41],[-16,-31],[-15,-28],[-32,-44],[-20,-18],[-17,-39],[-22,-8],[-11,-15],[-21,30],[-33,3],[-37,10],[-30,-18],[-19,-33],[-40,37],[-7,7],[-24,7],[-24,9],[-42,23],[-34,16],[-23,10],[-183,-15],[-21,7],[-60,-10],[-30,-6],[-47,-12],[-39,-5],[-34,-19],[-33,-9],[-27,10],[-48,9],[-11,11],[-17,-1],[-33,18],[-25,-20],[-130,-10],[-39,23],[-58,2],[-21,4],[-29,5],[-22,26],[39,39],[32,23],[50,8],[17,-5],[51,-15],[62,-21],[31,-20],[41,-11],[45,1],[44,-1],[11,-2],[33,4],[48,2],[40,8],[31,9],[27,2],[49,19],[23,20],[18,30],[28,11],[16,10],[41,-5],[34,-9],[59,-2],[46,7],[45,10],[22,23],[-22,9],[-50,-9],[-39,-8],[-26,19],[-23,-19],[-67,5],[-19,9],[20,33],[23,34],[33,56],[29,31],[28,36],[53,33],[90,46],[35,22],[22,21],[14,26],[2,38],[-8,39],[-34,71],[-46,53],[16,20],[8,17],[7,32],[2,32],[26,30],[18,-20],[-1,-24],[21,-18],[35,26],[22,36],[7,34],[-30,44],[-23,12],[-79,-65],[-14,-24],[-12,-18],[-6,-34],[1,-24],[-6,-14],[-10,-24],[-9,-17],[-24,-35],[-21,-20],[-21,-32],[-62,62],[-42,48],[-38,50],[-25,32],[38,21],[60,17],[47,21],[44,42],[18,62],[2,54],[-17,44],[-18,33],[-10,42],[-6,53],[48,18],[19,52],[-15,45],[-12,51],[8,4],[21,10],[36,-11],[31,-12],[30,-6],[40,-17],[62,-10],[35,0],[40,6],[56,17],[43,22],[20,49],[16,41],[12,30],[11,24],[30,2],[31,7],[32,4],[31,0],[29,3],[40,-7],[55,27],[34,16],[32,8],[44,18],[34,11],[36,4],[20,9],[7,3],[26,22],[28,7],[25,20],[35,20],[36,26],[19,34],[30,35],[12,29],[1,5],[-10,46],[-25,44],[-23,30],[-20,40],[-36,43],[-28,34],[-26,36],[-18,47],[-5,5],[-31,31],[-23,17],[-27,13],[-21,17],[-12,8],[-15,10],[-25,8],[-23,5],[-35,3],[-28,-6],[-42,-28],[-1,0],[-47,1],[-31,-39],[-36,-12],[-16,32],[-52,-16],[-29,19],[-33,-1],[-35,-29],[-44,1],[-45,68],[-16,4],[-52,14],[-26,39],[-36,-31],[-23,16],[-15,25],[-8,39],[-25,22],[-8,26],[-6,19],[-59,-6],[-28,33],[-12,36],[11,31],[-29,36],[-25,26],[-34,3],[13,38],[24,24],[-22,6],[-4,18],[-2,4],[-1,4],[-8,12],[0,4],[0,2],[0,5],[8,8],[2,0],[7,2],[10,4],[7,-6],[2,-1],[11,-6],[13,-5],[5,3],[2,3],[7,13],[-2,17],[0,5],[-11,12],[-10,3],[-1,0],[-19,24],[-3,8],[4,66],[-5,16],[-10,13],[-13,3],[-4,5],[-7,9],[-13,13],[-19,34],[0,1],[-5,14],[-4,6],[-1,1],[-21,27],[-3,2],[-2,1],[-7,4],[-25,2],[-7,-3],[-16,6],[-15,15],[-13,10],[-8,9],[-7,8],[-9,17],[-1,23],[-4,8],[-4,7],[-11,15],[38,-14],[11,1],[7,5],[3,12],[0,2],[0,1],[-17,72],[-1,0],[-2,0],[1,6],[6,36],[4,18],[4,23],[-17,32],[1,3],[27,64],[3,5],[9,1],[14,-6],[2,-3],[1,-1],[1,-14],[2,-5],[4,-2],[10,1],[11,3],[5,2],[2,4],[1,6],[-20,76],[0,1],[-1,2],[-3,8],[-5,8],[7,10],[8,10],[6,8],[14,21],[28,44],[-3,20],[23,74],[2,4],[2,2],[2,1],[8,3],[2,0],[14,1],[3,1],[15,3],[4,3],[49,63],[3,5],[0,3],[3,29],[1,5],[8,25],[3,10],[4,12],[22,13],[3,1],[11,7],[4,1],[37,-7],[10,4],[11,8],[3,11],[3,11],[6,24],[3,10],[2,9],[0,1],[-2,36],[-2,22],[16,34],[2,3],[1,0],[18,-6],[23,-10],[11,27],[4,11],[11,28],[4,10],[-13,5],[2,14],[8,47],[26,43],[4,7],[10,59],[17,139],[1,53],[-8,17],[-3,7],[6,0],[2,0],[18,11],[-3,3],[32,25],[14,11],[18,14],[2,-1],[16,-11],[20,42],[19,42],[-2,5],[14,46],[6,19],[1,7],[0,10],[-11,8],[-7,8],[0,12],[5,33],[6,39],[2,8],[11,34],[9,28],[3,9],[-1,41],[0,3],[-26,36],[0,6],[1,1],[7,39],[5,28],[0,3],[2,9],[5,36],[-1,17],[0,1],[-17,35],[-4,9],[-17,54],[1,9],[12,27],[-11,49],[-3,10],[0,1],[-1,2],[-9,14],[-8,8],[-21,21],[-1,0],[-5,-2],[-27,57],[-41,90],[-6,40],[0,10],[0,1],[3,15],[-6,48],[-2,12],[-4,6],[-47,30],[-6,3],[-1,0],[-6,3],[-16,8],[-55,23],[-7,-2],[-27,9],[-2,2],[-32,19],[-4,4],[-3,8],[-21,14],[-9,5],[-39,40],[-3,5],[-26,32],[-4,4],[-82,11],[-4,0],[-6,1],[-27,0],[-4,18],[-1,1],[-23,25],[-1,1],[-83,67],[-15,31],[-3,4],[-28,14],[-33,-12],[-32,-19],[-34,-2],[-10,14],[-21,18],[-9,6],[-1,1],[-20,8],[-36,2],[-18,14],[-5,4],[-15,16],[-2,2],[-7,27],[-6,5],[-24,11],[-29,10],[-4,5],[-35,44],[-1,2],[-28,45],[-3,33],[-3,3],[-16,21],[-19,8],[-56,22],[-1,0],[-66,15],[-37,8],[-1,0],[-2,0],[-32,3],[-4,2],[-4,9],[-3,0],[-24,0],[-17,5],[-9,5],[-2,2],[-1,1],[-7,10],[-2,13],[-3,7],[-24,41],[-76,103],[-10,9],[-2,0],[-2,0],[-33,-4],[-12,14],[-44,33],[-24,16],[-73,45],[-7,3],[-1,0],[-25,7],[-18,0],[6,21],[0,7],[-30,52],[-21,31],[-9,7],[-14,13],[-3,6],[0,10],[0,29],[0,37],[0,3],[-4,36],[-3,27],[-2,15],[-6,21],[-7,18],[-7,7],[-24,12],[-2,1],[-6,5],[-7,9],[-22,43],[-23,31],[-23,32],[5,39],[4,33],[2,33],[-2,5],[-5,7],[-73,81],[-10,9],[-36,31],[-5,2],[-20,19],[-4,4],[-10,12],[0,3],[-10,11],[-24,29],[-1,0],[-11,12],[-24,25],[-31,33],[-8,3],[-4,2],[-2,1],[-26,18],[-1,1],[-50,34],[-1,2],[-30,47],[-3,7],[-3,17],[-2,4],[-24,41],[-10,10],[-56,55],[-79,41],[-32,10],[-15,5],[-23,-2],[-13,7],[-11,22],[-9,3],[-3,1],[-11,5],[-10,6],[-4,3],[-1,1],[-34,25],[-4,7],[-1,5],[-21,73],[-3,2],[-8,8],[0,38],[0,8],[-6,13],[-3,4],[-9,9],[-56,20],[-5,1],[-6,-1],[-6,-4],[-8,1],[-64,30],[-3,3],[0,5],[5,15],[2,7],[0,9],[-11,29],[-1,2],[-37,43],[-25,15],[-12,15],[-9,12],[-13,12],[-7,7],[-11,4],[-2,1],[-13,7],[-7,9],[-3,4],[-6,8],[-1,5],[3,15],[6,12],[2,4],[0,1],[18,63],[-11,36],[-3,7],[-22,40],[-4,6],[-53,59],[-3,2],[-27,24],[-5,4],[0,1],[0,12],[5,12],[0,1],[18,40],[29,77],[13,39],[1,21],[6,17],[42,48],[6,6],[18,17],[13,3],[9,2],[9,5],[5,6],[3,5],[9,21],[0,3],[-2,35],[-5,15],[-13,36],[-3,6],[4,60],[6,8],[2,2],[12,12],[11,7],[50,32],[6,20],[6,21],[3,12],[21,77],[1,2],[8,29],[1,15],[4,12],[5,14],[3,4],[19,28],[20,61],[1,3],[5,17],[2,25],[4,15],[2,5],[60,134],[5,12],[17,32],[9,12],[12,12],[2,2],[11,6],[7,6],[18,36],[15,39],[50,123],[8,29],[0,10],[-3,39],[15,39],[10,38],[6,24],[1,7],[0,1],[-1,11],[-1,16],[-7,15],[-9,22],[-1,2],[-21,48],[-11,29],[-14,52],[-1,19],[13,19],[6,11],[1,9],[-8,38],[-2,6],[-21,47],[-3,4],[-1,1],[-12,10],[-6,10],[-4,11],[-1,8],[3,18],[-2,4],[-9,18],[-2,5],[-6,21],[-3,22],[-8,18],[4,27],[36,0],[39,0],[100,2],[198,0],[16,0],[16,0],[31,0],[16,0],[17,0],[20,0],[24,1],[22,0],[21,0],[13,-1],[18,1],[14,0],[21,0],[26,-1],[19,4],[71,0],[117,-2],[2,0],[37,0],[141,-2],[31,0],[37,-2],[22,2],[106,1],[69,0],[19,4],[26,0],[86,1],[21,0],[61,2],[14,0],[37,4],[16,-3],[17,1],[65,-1],[73,0],[20,0],[48,0],[27,2],[16,-6],[19,0],[17,0],[21,-1],[17,0],[40,0],[21,0],[23,1],[33,0],[23,0],[14,0],[28,0],[39,0],[16,-1],[41,-1],[18,0],[62,0],[135,4],[3,0],[103,0],[165,0],[260,-1],[58,5],[36,-6],[14,0],[18,0],[20,0],[48,-1],[162,6],[52,0],[74,0],[55,-6],[19,0],[23,0],[17,0],[25,0],[23,0],[23,0],[20,0],[47,0],[17,0],[15,0],[17,0],[46,9],[31,-1],[78,-1],[28,2],[50,-1],[28,0],[60,0],[24,-1],[59,0],[87,0],[24,0],[128,-8],[20,0],[14,0],[37,0],[12,-10],[1,2],[6,14],[16,-1],[14,-2],[4,0],[9,-2],[19,5],[19,-3],[23,-1],[33,-4],[101,-14],[15,-2],[3,0],[3,0],[8,-1],[15,-2],[14,0],[99,6],[43,3],[22,2],[43,2],[43,2],[83,3],[84,4],[70,2],[89,4],[48,2],[20,0],[65,2],[51,2],[45,1],[8,0],[17,1],[21,1],[13,0],[13,0],[66,2],[17,1],[15,0]],[[6206,99969],[-2,-31],[-11,-10],[-25,-8],[-20,-16],[-9,-13],[-13,-12],[-13,0],[-1,0],[-4,0],[-7,5],[-8,9],[-15,16],[-11,10],[0,1],[-6,3],[-10,5],[-13,-28],[-1,-1],[21,-65],[2,-7],[-7,-13],[-2,-2],[-12,-11],[-7,-6],[-65,-40],[-3,-2],[-17,-9],[-7,-2],[-14,-13],[-9,-7],[-5,-4],[-12,-7],[-7,-10],[-5,-7],[-3,-5],[-10,-33],[-7,-22],[-7,-12],[0,-1],[-1,-2],[-18,-12],[-8,1],[-17,2],[-2,0],[-13,5],[-11,5],[-5,1],[-11,1],[-18,2],[-4,-6],[-10,-16],[-7,-12],[-7,-7],[-5,-4],[-46,-44],[-3,-3],[-2,-1],[-10,-8],[-24,-12],[-22,-5],[-18,-5],[-28,-13],[-15,-10],[-8,-11],[1,-29],[5,-11],[1,-4],[-1,-17],[-7,-7],[-20,0],[-7,0],[-47,24],[-1,0],[-5,0],[-5,-1],[-38,-10],[-6,-7],[-10,-4],[-33,-14],[-27,4],[-13,32],[0,2],[-1,1],[-7,16],[-2,2],[0,2],[-7,11],[-1,1],[-1,2],[-4,5],[-2,3],[0,26],[-16,-3],[-1,-2],[-3,-3],[-5,-6],[-17,-19],[-44,-50],[-2,-3],[-19,-8],[-6,-1],[-17,-1],[-8,-7],[0,-3],[0,-1],[0,-12],[7,-8],[15,-8],[1,0],[9,-2],[2,-4],[3,-4],[5,-7],[-1,-11],[-1,-4],[0,-4],[-11,-56],[-6,-5],[-16,-46],[0,-19],[-4,-3],[-42,-26],[-1,-1],[-5,-7],[-6,-8],[-38,-63],[-29,-48],[-3,-6],[-55,-96],[-10,-11],[-5,-6],[-12,-2],[-8,0],[-13,2],[-4,5],[-6,7],[-4,5],[-4,31],[0,2],[-4,8],[-7,8],[-4,-3],[-4,-3],[-1,-2],[-3,-2],[-9,-24],[-12,-32],[-2,-2],[-10,-5],[-8,1],[-7,8],[0,8],[0,37],[-7,8],[-1,1],[-2,2],[-10,0],[-7,-4],[-2,0],[-21,-22],[-6,-6],[-8,-8],[-14,-5],[-14,0],[-19,-1],[-11,-5],[-15,-14],[-3,-15],[6,-18],[5,-16],[-2,-14],[-4,-4],[-4,-3],[-4,-3],[-4,-1],[-3,-1],[-81,-20],[-4,-55],[-6,-82],[3,-4],[4,-5],[12,-57],[-1,-12],[-1,-6],[0,-2],[-4,-4],[-7,-8],[-19,-15],[-6,-4],[-2,-71],[4,-21],[-2,-22],[-5,-34],[-1,-4],[-6,-46],[9,-13],[3,-2],[17,-10],[6,-7],[4,-5],[1,-14],[-15,-57],[-15,-14],[-76,-28],[-28,-12],[-4,-1],[-2,-3],[-11,-15],[-3,-3],[-1,-2],[-44,-46],[-17,-84],[-1,-5],[0,-2],[0,-3],[9,-10],[2,-2],[14,-8],[5,-16],[-4,-11],[-4,-11],[-11,-15],[-11,-9],[-12,-10],[-3,-5],[-6,-11],[-3,-5],[0,-10],[1,-39],[-10,-8],[-4,-1],[-2,-1],[-4,-1],[-6,0],[-26,1],[-1,0],[-13,7],[-2,1],[-12,12],[-7,0],[-3,1],[-8,-9],[-5,-33],[-2,-3],[-11,-22],[0,-10],[2,-21],[-2,-25],[-9,-34],[-8,-14],[-6,-10],[-19,-39],[-6,-15],[4,-8],[2,-3],[4,-8],[4,-1],[23,-3],[2,-1],[16,5],[18,13],[3,2],[10,1],[3,-3],[3,-3],[8,-9],[2,-13],[-3,-16],[-13,-21],[-7,-10],[-2,-16],[0,-2],[0,-1],[11,-11],[6,-1],[6,0],[3,-1],[45,-11],[4,-1],[15,-54],[-1,-4],[-4,-46],[-3,-2],[-3,-3],[-8,-6],[-1,-11],[10,-62],[6,-7],[0,-1],[35,-5],[10,-13],[11,-30],[3,-18],[0,-2],[1,-4],[-7,-71],[-1,-14],[1,-16],[1,-10],[0,-12],[5,-8],[4,-8],[10,-13],[15,-11],[4,-56],[0,-3],[-49,-106],[-6,-10],[-6,-5],[-7,-5],[-2,-2],[-7,1],[-8,0],[-9,7],[-10,1],[-2,-2],[-4,-5],[-2,-2],[-29,-34],[-2,-6],[-1,-5],[-6,-51],[0,-6],[1,-23],[3,-5],[1,-1],[1,-1],[33,-12],[3,-1],[-1,-2],[-23,-34],[0,-1],[-2,2],[-3,4],[-2,2],[-1,2],[-1,0],[-1,4],[0,3],[-1,2],[-1,1],[-2,2],[-2,3],[-11,3],[-16,-4],[-4,-4],[-2,-1],[-11,-9],[-1,-4],[-1,-4],[-1,-4],[3,-4],[5,0],[19,0],[17,0],[5,-8],[-1,-8],[-2,-2],[-2,-2],[-4,-3],[-38,-10],[-8,0],[-19,1],[-8,-4],[-8,-7],[-1,-7],[8,-27],[3,-3],[5,-7],[23,-47],[0,-5],[-2,-20],[1,-9],[2,-15],[6,-6],[3,-1],[2,0],[6,0],[27,19],[3,-1],[3,-3],[1,-2],[2,-3],[-1,-13],[-19,-16],[-10,-9],[-26,-21],[-4,-4],[-8,-20],[9,-11],[2,-2],[3,-4],[9,-1],[14,0],[3,0],[11,-1],[3,-3],[4,-3],[6,-6],[11,-19],[27,-28],[-83,-116],[1,-93],[-11,-78],[-15,-118],[-13,-95],[2,-3],[5,-15],[10,-29],[10,-24],[8,-26],[11,-15],[4,-7],[4,-3],[11,-10],[4,-3],[8,-9],[4,-5],[9,-12],[5,-3],[13,-8],[13,-4],[2,-3],[13,-16],[-1,-2],[-2,-17],[-5,-12],[-1,-3],[1,0],[17,0],[15,6],[1,0],[17,-3],[1,0],[0,-2],[5,-13],[1,-1],[9,-12],[2,0],[11,2],[18,14],[-1,1],[-10,8],[-3,2],[-2,16],[-1,1],[5,2],[15,6],[11,-1],[9,-2],[7,-19],[7,-16],[14,17],[4,3],[12,9],[14,0],[6,-10],[3,-7],[3,0],[10,-4],[5,-2],[16,0],[7,2],[6,2],[13,4],[14,0],[1,0],[19,-9],[22,-38],[12,-5],[18,-3],[5,-18],[-5,-19],[16,1],[8,14],[-8,13],[-2,17],[0,1],[1,1],[6,6],[3,4],[1,0],[3,2],[10,1],[2,0],[1,0],[10,-3],[7,-10],[34,-68],[7,-14],[9,-66],[6,-82],[-1,-19],[-3,-8],[-1,-1],[-4,-2],[-10,-7],[-17,1],[-10,7],[-1,0],[-3,0],[-5,1],[-6,-6],[0,-4],[0,-2],[-2,-19],[14,-33],[17,-40],[13,-32],[3,-4],[6,-7],[7,-8],[13,-8],[2,-2],[12,-5],[12,-5],[-6,-54],[-3,-21],[0,-5],[-10,-82],[1,-5],[1,-31],[3,-47],[0,-21],[-1,-21],[0,-42],[-1,-28],[0,-7],[0,-5],[5,-7],[5,-1],[10,-2],[3,-3],[3,-4],[4,-6],[5,-18],[-1,-9],[-25,-43],[-2,-15],[6,-7],[13,-14],[7,-9],[5,-14],[2,-16],[-2,-27],[8,-84],[0,-1],[55,-138],[6,-12],[1,-1],[11,-12],[1,-1],[1,-1],[10,-15],[-1,-8],[-2,-12],[-15,-14],[-1,-2],[-1,-1],[-3,-19],[-2,-16],[-1,-13],[45,-61],[13,1],[17,-4],[11,-11],[2,-5],[1,-1],[1,-4],[-1,-11],[-8,-7],[-40,1],[-11,-8],[-5,-14],[-10,-8],[-1,0],[-27,0],[-5,-18],[4,-6],[11,-9],[10,-8],[0,-25],[10,-17],[6,-20],[-6,-15],[3,-31],[10,-8],[26,-23],[11,-9],[13,-7],[4,-4],[22,-21],[10,-10],[3,2],[4,3],[8,-4],[57,-31],[9,-10],[0,-14],[-9,-15],[-31,-22],[-2,-24],[12,-18],[8,-5],[1,-1],[2,-1],[2,0],[31,-1],[3,-4],[11,-13],[7,-5],[9,-1],[17,14],[14,5],[6,1],[15,-3],[4,-5],[14,-16],[4,-10],[3,-12],[-1,-30],[13,-14],[24,-10],[-15,-36],[4,-22],[28,-30],[43,-31],[23,-30],[9,-30],[9,-63],[11,-35],[15,-26],[22,-29],[15,-45],[76,-107],[11,-22],[21,-26],[21,-17],[14,-3],[39,-8],[25,-8],[16,-10],[4,-2],[26,-28],[31,-18],[1,2],[0,4],[34,-12],[19,-7],[11,-3],[5,-2],[0,1],[0,3],[7,-3],[143,-55],[30,-12]],[[10977,90519],[-662,-91],[-149,-23],[-117,-18],[-57,-11],[-43,-7],[-171,-30],[-159,-29],[-81,-14],[-127,-18]],[[9409,90332],[31,0],[44,14],[34,26],[77,-5],[43,7],[57,30],[43,2],[22,6],[31,-10],[28,3],[34,13],[49,23],[35,-4],[44,-2],[53,21],[48,19],[47,18],[29,17],[3,0],[164,-4],[33,18],[17,26],[43,-32],[44,0],[31,5],[47,9],[42,29],[36,-3],[43,2],[319,46]],[[10980,90606],[0,-17],[-3,-70]],[[11168,99937],[-3,-51],[-1,-33],[-6,-350],[-3,-171],[-1,-65],[-3,-158],[-1,-33],[3,-52],[0,-62],[-2,-79],[-1,-47],[-4,-168],[0,-74],[2,-62],[-1,-89],[-3,-102],[-2,-72],[-1,-34],[-4,-119],[-3,-59],[2,-45],[0,-34],[-7,-273],[-1,-28],[-2,-98],[-3,-124],[-3,-124],[-5,-192],[-1,-47],[0,-85],[-2,-25],[-2,-83],[-8,-204],[-2,-72],[0,-23],[0,-7],[-1,-75],[-1,-43],[0,-31],[0,-15],[-1,-5],[0,-22],[-1,-26],[0,-16],[-2,-110],[0,-21],[0,-2],[-1,-56],[0,-20],[-2,-23],[0,-18],[-2,-257],[-1,-124],[-2,-293],[0,-47],[-1,-43],[0,-10],[-1,-58],[-3,-154],[0,-15],[-1,-77],[-3,-140],[-1,-87],[-3,-96],[-2,-72],[-3,-137],[-2,-103],[-1,-18],[0,-25],[-4,-144],[-17,-1],[-2,-121],[-3,-87],[0,-73],[0,-146],[1,-81],[-2,-53],[-4,-173],[-1,-32],[-1,-110],[-1,-58],[-1,-72],[-2,-25],[-2,-65],[-2,-51],[-2,-40],[-1,-17],[0,-65],[0,-54],[2,-84],[-3,-48],[0,-94],[-3,-110],[-3,-128],[-2,-91],[-1,-63],[-2,-121],[0,-28],[-3,-139],[-5,-155],[-1,-27],[-1,-40],[1,-232],[0,-18],[-5,-208],[0,-71],[0,-27],[0,-1],[0,-11],[-3,-141],[2,-51],[1,-21],[-1,-27],[0,-28],[0,-1],[0,-16],[-1,-24],[-2,-63]],[[10991,90818],[-40,-5],[-45,9],[-45,9],[-43,9],[-49,7],[-37,-3],[-43,-13],[-32,-20],[-28,-14],[-29,-27],[-33,-25],[-34,26],[-37,13],[-37,-3],[-53,-10],[-37,-10],[-37,-3],[-45,-7],[-37,-7],[-37,-10],[-45,-11],[-22,3],[-22,2],[-73,5],[-45,-3],[-55,-11],[-62,-14],[-69,-10],[-50,0],[-71,2],[-41,9],[-38,1],[-38,-6],[-53,-18],[-23,-9],[-35,-6],[-38,-7],[-37,-5],[-86,17],[-42,-5],[-26,-2],[-28,-2],[-47,1],[-33,0],[-27,-4],[-33,-5],[-40,-1],[-25,-4],[-36,-13],[-44,-13],[-32,-12],[-58,-12],[-50,-9],[-31,2],[-38,-7],[-55,-11],[-67,-8],[-31,-11],[-41,-12],[-36,-14],[-26,-8],[-33,-3],[-46,6],[-29,-2],[-96,-16],[-32,-8],[-52,-6],[-31,-3],[-39,-8],[-84,-15],[-39,-8],[-40,7],[-44,9],[-16,-20],[-30,-1],[-32,-10],[-52,-21],[-29,-8],[-104,-24],[-103,-11],[-33,-1],[-31,-10],[-37,9],[-32,-6],[-28,14],[-18,-26],[-41,-10],[-24,-3],[-62,-22],[-35,-3],[-54,-11],[-32,-5],[-40,-8],[-73,-22],[-31,-6],[-57,-25],[-47,-17],[-29,1],[-23,-3],[-22,-13],[-31,-25],[-48,-14],[-37,-10],[-44,-12],[-115,-40],[-28,-7],[-31,0],[-70,-23],[-26,-17],[-40,-16],[-28,-47],[-8,1],[-36,2],[-34,-29],[-39,17],[-58,-24],[-52,0],[-33,-12],[-59,-49],[-20,-43],[-3,-33],[-35,47],[-28,48],[-36,43],[-57,51],[-47,34],[-49,56],[50,7],[42,8],[45,13],[50,31],[23,43],[-13,31],[37,-6],[45,-6],[40,4],[22,34],[9,-6],[16,-12],[40,-16],[43,-10],[56,-6],[57,-3],[62,0],[78,7],[37,10],[25,10],[32,18],[35,39],[16,49],[20,50],[23,22],[27,23],[32,26],[58,24],[34,16],[29,12],[53,19],[117,51],[40,12],[40,21],[40,16],[28,7],[37,22],[62,28],[43,13],[68,4],[39,-4],[9,0],[57,-3],[38,-4],[48,-8],[53,-4],[80,-4],[109,5],[50,4],[56,5],[48,4],[62,6],[43,7],[41,9],[49,16],[51,20],[109,50],[45,23],[36,14],[38,19],[72,36],[39,19],[55,34],[50,28],[73,55],[36,30],[35,37],[45,45],[53,52],[56,60],[30,22],[42,42],[44,48],[29,25],[49,35],[32,21],[36,21],[16,35],[23,24],[39,16],[24,-27],[31,-4],[38,4],[27,-35],[16,-39],[31,-35],[26,-9],[17,-28],[25,-6],[19,-41],[37,-25],[28,1],[48,13],[47,8],[41,8],[49,-12],[51,-11],[32,-15],[30,-7],[35,-3],[36,15],[29,11],[30,-3],[3,2],[32,29],[-3,4],[-21,36],[-9,3],[-14,4],[-31,-17],[-42,-7],[-37,24],[-52,9],[-39,9],[-28,14],[-32,6],[-44,6],[-38,1],[-30,0],[-30,-17],[-36,13],[-50,47],[-23,38],[-8,28],[-22,18],[-32,31],[-40,32],[-25,28],[-37,-17],[-26,-12],[-19,24],[-42,37],[-30,21],[-28,-12],[-45,2],[-44,18],[-30,9],[-2,1],[-27,13],[-27,14],[-16,10],[-39,24],[-32,15],[-34,20],[-36,24],[-24,15],[-23,22],[-81,63],[-42,38],[-29,23],[-44,37],[-35,21],[-32,18],[-33,20],[-40,22],[-22,11],[-20,10],[-45,28],[-38,20],[-25,16],[-91,48],[-42,48],[-26,30],[67,31],[46,26],[27,19],[25,4],[1,45],[-21,74],[-30,52],[25,42],[21,14],[25,-42],[33,-12],[4,43],[-13,35],[19,41],[13,-56],[21,-59],[45,-18],[41,21],[11,12],[8,7],[-2,43],[2,55],[-31,-27],[-5,48],[-23,21],[-38,-14],[-31,53],[-2,39],[23,13],[23,15],[2,29],[-38,-21],[20,47],[-18,48],[32,4],[-20,23],[-18,26],[34,19],[18,26],[12,27],[-13,41],[22,1],[25,-7],[2,0],[-13,27],[6,43],[42,29],[4,5],[24,37],[21,33],[28,42],[21,39],[-15,38],[-29,41],[-19,32],[-19,24],[-24,10],[-26,11],[-46,22],[-34,-13],[21,-56],[48,-19],[-47,-15],[-33,19],[-51,29],[-26,49],[-30,59],[-1,2],[-26,45],[-26,11],[-6,32],[-22,29],[-12,38],[-29,38],[-35,23],[-34,38],[-34,20],[-17,30],[-39,19],[-36,6],[5,-35],[37,-38],[49,-35],[29,-33],[-56,-30],[-14,-27],[14,-34],[39,-43],[47,-53],[31,-14],[31,-32],[12,-36],[2,-8],[33,-17],[-10,-41],[16,-31],[68,-25],[30,-24],[12,-30],[26,-17],[-22,-20],[-21,-24],[-29,-16],[-34,-42],[-3,-34],[1,-36],[-13,-28],[-25,-16],[-28,-32],[-13,-38],[19,-43],[-26,-13],[-52,-10],[-49,-7],[-36,-14],[-39,-10],[-31,-20],[-35,-34],[-41,-47],[7,-43],[2,-27],[-3,-54],[-30,-66],[-10,-40],[-20,-47],[-31,-43],[-28,-49],[-14,-64],[6,-45],[0,-50],[1,-31],[-13,-29],[-41,-63],[-32,-61],[-14,-38],[-8,-37],[-30,-79],[-33,-74],[-21,-45],[-9,-29],[-31,-81],[-9,-33],[-2,-7],[-2,-9],[-9,-36],[-3,-60],[-7,-88],[-11,-62],[-78,0],[-38,-4],[-35,-13],[-56,-34],[-55,-39],[-25,-20],[-24,-23],[-28,-5],[-52,39],[-39,26],[-3,3],[-23,38],[1,43],[17,38],[12,41],[35,94],[6,39],[9,31],[7,37],[3,29],[7,42],[14,35],[-5,62],[-15,51],[-18,36],[6,31],[-21,46],[2,39],[-1,48],[-2,46],[5,31],[18,66],[25,47],[-23,82],[-17,46],[-12,42],[-93,81],[-60,35],[-81,30],[-36,14],[-45,36],[-37,-5],[-37,2],[-9,9],[-23,21],[-5,16],[-5,18],[2,44],[2,42],[2,29],[4,31],[22,50],[-46,45],[-32,25],[-45,16],[-46,5],[-21,28],[9,46],[11,27],[4,41],[-25,43],[-33,31],[-33,54],[-10,45],[-12,31],[-31,27],[-34,22],[-35,22],[-53,5],[-21,6],[-20,6],[-50,-1],[-46,-17],[-29,-5],[-31,45],[-33,-8],[-4,2],[-23,14],[-28,-34],[-35,-15],[-18,-56],[34,-4],[-21,-36],[-32,0],[-12,-42],[23,-18],[26,-19],[11,-8],[11,-42],[-27,-26],[-6,-34],[39,-23],[35,-13],[16,20],[30,48],[32,-46],[-28,1],[8,-37],[-37,-7],[-7,-32],[64,-12],[46,-34],[-40,-16],[-26,-33],[18,-35],[45,-21],[-43,-15],[-42,-4]],[[6206,99969],[30,1],[134,4],[16,0],[113,3],[68,-4],[21,-1],[92,-5],[27,-1],[80,9],[32,0],[17,0],[128,-1],[112,-1],[96,0],[53,-1],[60,0],[66,-1],[66,0],[32,-1],[21,5],[38,-3],[51,-1],[67,-1],[33,2],[17,0],[23,0],[21,0],[24,0],[16,0],[21,0],[13,0],[14,1],[15,5],[51,-5],[9,-1],[19,0],[22,0],[21,0],[20,-1],[69,3],[139,0],[49,0],[33,0],[38,0],[58,-5],[19,-6],[143,-2],[73,-1],[28,0],[186,-3],[71,-2],[97,-1],[117,-2],[83,-1],[75,-1],[18,-1],[39,0],[29,-1],[37,0],[41,0],[58,0],[58,0],[54,-1],[11,0],[9,0],[19,-1],[60,2],[112,1],[33,0],[28,-1],[27,0],[35,0],[16,-1],[17,0],[160,0],[156,-1],[35,0],[38,-1],[143,-1],[85,0],[22,0],[263,-3],[9,0],[10,0],[102,-1],[60,-1],[70,-1],[38,0],[33,-1]],[[10980,90606],[30,18],[42,-9],[35,2],[33,1],[42,8],[33,20],[58,-10],[52,-2],[41,7],[43,6],[47,-6],[53,13],[43,31],[33,33],[37,-8],[38,-8],[55,-5],[44,10],[44,-3],[26,30],[38,7],[47,9],[45,-1],[28,6],[40,-8],[38,-8],[44,0],[38,6],[28,10],[38,1],[36,1],[38,-12],[31,-1],[64,-4],[51,-4],[45,-7],[31,6],[34,2],[44,-4],[44,14],[41,6],[26,8],[31,-17],[29,5],[34,34],[62,-2],[51,-25],[36,-28],[30,-22],[40,16],[40,1],[33,9],[112,0],[98,-8],[58,-5],[59,-7],[30,-9],[34,7],[32,-11],[28,2],[34,10],[41,-10],[28,14],[11,5],[47,15],[41,-12],[38,-37],[77,-8],[74,-11],[25,2],[56,-2],[41,-11],[47,-11],[54,5],[32,3],[23,-5],[33,-3],[25,0],[27,3],[37,-5],[46,-6],[47,3],[30,5],[26,0],[44,-10],[31,-9],[21,-16],[38,-9],[39,-11],[5,-1],[30,-4],[37,6],[11,-52],[-25,-12],[-36,-2],[-43,-6],[-33,0],[-33,2],[-45,4],[-40,5],[-40,5],[-43,5],[-32,2],[-28,5],[-41,4],[-32,4],[-51,7],[-50,9],[-51,10],[-50,7],[-49,6],[-49,7],[-49,4],[-51,4],[-663,56],[-165,3],[-49,0],[-36,-1],[-56,-2],[-42,-3],[-37,-2],[-44,0],[-42,-2],[-38,-3],[-38,-1],[-40,-4],[-49,1],[-58,-3],[-37,-2],[-32,-3],[-66,-2],[-56,-3],[-36,-1],[-31,-2],[-45,-1],[-46,-4],[-36,-2],[-34,-1],[-33,-3],[-48,-3],[-33,-1],[-33,-4],[-34,-1],[-47,-4],[-36,-2],[-50,-6],[-53,-5],[-51,-1],[-50,-4],[-41,-4],[-45,-5],[-46,-4],[-44,-7],[-57,-6],[-38,-7],[-51,-5],[-53,-6],[-52,-5],[-49,-6],[-42,-5],[-32,-4],[-24,-3],[-45,-7]],[[16282,90693],[-2,-114],[-1,-24],[-1,-39],[0,-16],[0,-2],[-1,-35],[0,-65]],[[16277,90398],[-58,2],[-43,6],[-36,4],[-35,5],[-27,4],[-45,4],[-35,3],[-34,3],[-74,7],[-56,6],[-41,4],[-40,4],[-41,1],[-38,3],[-148,9],[-216,10],[-42,-2],[-368,-7],[-41,-1],[-33,57],[-73,81],[-3,27],[-11,17],[-13,18],[170,170],[25,48],[23,37],[39,20],[23,-20],[37,-27],[27,-54],[23,-29],[29,21],[-25,34],[-29,104],[12,24],[180,-112],[190,-56],[39,3],[30,-4],[29,-2],[1,-38],[47,-23],[-8,33],[28,17],[32,27],[29,10],[34,3],[32,28],[26,-31],[16,-21],[32,-28],[44,-22],[41,-4],[20,-2],[27,0],[24,-15],[37,-16],[27,27],[33,-6],[35,-4],[30,-7],[40,-16],[31,-14],[30,-13],[46,-12]],[[16391,99894],[1,-123],[0,-89],[0,-22],[0,-66],[-2,-60],[1,-65],[-1,-117],[0,-91],[-1,-51],[0,-25],[2,-20],[-2,-21],[-1,-52],[-1,-64],[-1,-189],[2,-66],[-2,-203],[0,-30],[0,-91],[-1,-91],[0,-87],[0,-86],[-3,-98],[-5,-30],[-5,-136],[0,-111],[-1,-40],[-1,-82],[-2,-91],[-1,-77],[-1,-59],[-2,-158],[-2,-75],[-1,-101],[0,-33],[0,-143],[-1,-169],[-1,-150],[0,-5],[0,-30],[-1,-98],[0,-27],[-1,-24],[0,-67],[-2,-49],[-2,-46],[-2,-56],[-2,-30],[-3,-72],[3,-29],[1,-42],[0,-38],[0,-8],[0,-17],[0,-17],[2,-164],[0,-17],[0,-37],[0,-53],[0,-15],[-3,-216],[-1,-27],[0,-2],[-1,-34],[0,-4],[0,-3],[-1,-38],[-3,-107],[2,-55],[3,-150],[1,-23],[1,-37],[0,-65],[0,-16],[2,-59],[0,-50],[1,-30],[0,-18],[0,-28],[0,-65],[0,-4],[0,-20],[-1,-33],[0,-19],[-1,-76],[0,-56],[-3,-100],[-4,-123],[3,-36],[0,-33],[3,-40],[-2,-100],[-1,-106],[-1,-56],[-2,-204],[-1,-117],[0,-5],[-2,-124],[0,-44],[-1,-38],[0,-57],[-1,-19],[-1,-18],[-4,-231],[-1,-243],[0,-76],[0,-10],[1,-214],[0,-17],[-4,-224],[-4,-56],[-6,-227],[-2,-88],[-1,-44],[0,-22],[2,-24],[-1,-50],[-1,-32],[-1,-24],[-1,-23],[0,-29],[0,-21],[-3,-25]],[[16312,91556],[-44,-20],[-38,18],[-87,40],[-87,-16],[-24,-14],[-30,-19],[-36,-33],[-84,141],[-30,60],[-52,76],[-22,41],[-22,31],[-24,36],[-28,48],[-24,44],[-14,28],[-23,50],[-15,53],[-10,45],[-2,38],[6,37],[23,59],[25,-9],[35,19],[29,-13],[25,-10],[53,-14],[27,4],[49,-10],[42,6],[35,-9],[28,81],[3,9],[9,28],[-30,1],[-40,-1],[-41,1],[-26,-8],[-29,-2],[-40,-13],[-35,5],[-37,10],[-22,1],[-83,6],[-70,32],[-3,27],[-22,0],[-8,-31],[19,-28],[-21,-40],[12,-47],[-13,-44],[4,-32],[13,-66],[-27,-42],[-39,-36],[-127,-49],[-3,57],[10,25],[-30,33],[-30,2],[22,-60],[-53,20],[-38,55],[-15,57],[-26,47],[-23,40],[31,57],[-17,23],[1,61],[-32,38],[-37,39],[-32,47],[-43,7],[-33,14],[-33,11],[-22,1],[-10,0],[17,-43],[82,-65],[30,-23],[9,-51],[30,-33],[23,-39],[-66,-76],[39,-24],[11,-74],[39,-18],[-1,-31],[-8,-25],[27,-87],[54,-19],[-18,-33],[-4,-33],[-26,-24],[12,-44],[-36,-61],[-22,-34],[-25,-25],[-28,-26],[-30,-27],[-34,-16],[-37,-15],[-24,-15],[-29,-12],[-30,-8],[-41,-11],[-46,-16],[-33,-8],[-22,1],[-30,9],[-29,4],[-29,3],[-56,-3],[-46,-2],[-25,7],[-25,-20],[-33,-9],[-27,-13],[-52,-25],[-30,-42],[-30,-45],[-36,-41],[-6,-23],[-34,-65],[-67,-62],[2,-29],[-31,-38],[-72,26],[-156,29],[-65,11],[-34,1],[-54,76],[8,9],[27,29],[-4,48],[-23,41],[34,26],[18,23],[-72,79],[-29,9],[3,-45],[-30,-40],[-37,44],[-2,59],[38,34],[-1,37],[50,48],[-18,36],[25,39],[-12,36],[29,51],[-47,-16],[-56,6],[9,-48],[29,-26],[-41,-36],[12,-39],[-31,-40],[18,-31],[-59,-28],[-6,-56],[-9,-33],[-52,-60],[55,-16],[46,-12],[0,-48],[78,-52],[-2,-2],[-41,-36],[-26,-24],[-23,-44],[-8,-24],[-25,-83],[-44,-25],[-37,31],[-1,2],[-22,50],[-47,0],[-57,66],[10,-54],[1,-29],[-48,-3],[-23,4],[-63,39],[-25,14],[-17,-30],[-24,-23],[-40,0],[-15,-16],[21,-14],[39,12],[44,35],[62,-51],[18,-2],[23,-3],[27,1],[67,11],[3,-47],[43,-9],[8,-2],[40,-22],[59,-14],[14,27],[96,9],[17,38],[23,-105],[25,-169],[-7,-58],[-38,-14],[-30,-6],[-59,-3],[-27,-12],[-21,-28],[-2,-2],[-69,8],[-209,34],[-219,25],[-24,8],[-108,2],[-60,-2],[-106,21],[-29,9],[-186,-8],[-40,0],[-40,27],[-3,-28],[-94,-29],[-148,48],[-94,-17],[-64,6],[-57,40],[-128,-18],[-43,-20],[-55,-10],[-32,-23],[-41,-30],[-28,-14],[-21,28],[-90,-32],[-37,22],[-61,8],[-119,73],[-40,-3],[-39,8],[-108,-27],[-64,-49],[-31,-60],[-34,68],[-81,7]],[[11168,99937],[101,-1],[28,0],[46,0],[109,-1],[117,-2],[54,-3],[16,-2],[64,0],[52,1],[18,2],[40,0],[52,-2],[41,2],[24,-4],[15,4],[15,-1],[15,1],[20,-1],[36,-3],[24,-6],[9,0],[40,-3],[21,-1],[23,-6],[47,-4],[14,-2],[13,-6],[15,3],[40,-1],[61,0],[112,-2],[44,0],[97,3],[24,0],[17,0],[14,0],[17,0],[37,0],[39,0],[15,-2],[85,0],[72,1],[28,4],[35,-3],[82,1],[33,0],[83,3],[74,-1],[7,0],[30,0],[29,1],[89,0],[102,0],[77,0],[58,0],[49,0],[35,0],[35,0],[64,0],[47,0],[82,0],[94,5],[16,-1],[31,0],[111,-6],[79,-4],[87,-4],[2,-1],[87,-4],[86,-5],[59,0],[69,-1],[14,0],[16,0],[17,2],[18,0],[21,0],[47,-2],[122,-4],[150,4],[30,1],[23,0],[13,0],[75,-1],[28,0],[35,3],[88,2],[75,1],[33,0],[46,-3],[118,2],[95,1],[165,1],[48,1],[104,0],[22,-1],[73,0],[39,6],[28,0],[28,-1],[17,0],[40,0],[33,1],[15,0],[44,-4]],[[26764,97366],[4,-60],[0,-10],[2,-22],[1,-27],[1,-17],[6,-54],[-4,-53],[-5,-37],[-2,-14],[-9,-35],[-28,-124],[-1,-5],[-5,-33],[-3,-14],[-2,-13],[-6,-14],[-2,-5],[-9,-11],[-8,-8],[-4,-4],[-16,-19],[-22,-29],[-69,-108],[-15,-41],[-13,-38],[-14,-40],[-5,0],[-14,-24],[-38,-50],[0,-5],[0,-1],[0,-3],[6,-104],[3,-6],[7,-14],[5,-9],[0,-1],[-9,-32],[0,-2],[-5,-16],[-4,1],[1,-43],[2,-42],[13,-2],[9,-16],[1,-2],[3,-39],[-1,-13],[-1,-6],[0,-10],[-7,-18],[-1,-12],[0,-5],[0,-23],[-13,-3],[-12,0],[-6,0],[-113,5],[-36,2],[-75,1],[-42,1],[-155,1],[-30,0],[-17,0],[-86,1],[-17,0],[-13,0],[-28,1],[-180,2],[-40,-4],[-4,0],[-62,2],[-22,1],[-16,0],[-16,0],[-46,2],[-17,1],[-37,2],[-32,0],[-13,1],[-33,2],[-17,0],[-60,2],[-29,1],[-40,1],[-48,1],[-38,2],[-29,1],[-15,1],[-77,7],[-19,1],[-1,44],[9,15],[1,44],[0,64],[1,39],[0,3],[1,56],[0,32],[0,40],[1,63],[1,24],[0,22],[-43,2],[-67,3],[-2,0],[-44,2],[-27,0],[-39,0],[0,118],[0,32],[1,64],[0,2],[-56,3],[-115,1],[-61,1],[-91,2],[-17,0],[-164,3],[-64,1],[-68,1],[-51,1],[-20,0],[-15,0],[-101,2],[-22,0],[-36,1],[-29,0],[7,-16],[2,-2],[11,-17],[13,-32],[14,-23],[15,-18],[0,-19],[-14,-18],[-10,-9],[-4,-4],[-6,-10],[-7,-12],[-15,-2],[-17,1],[-20,-9],[-16,-13],[-2,-2],[-21,-15],[-11,-14],[0,-1],[-18,-42],[-21,-66],[-2,-19],[-2,-25],[9,-26],[13,-17],[7,-12],[3,-4],[-3,-8],[0,-2],[-5,-12],[-21,-7],[-20,5],[-9,-17],[1,-10],[1,-12],[16,-19],[12,-9],[4,-4],[19,-28],[0,-1],[6,-12],[2,-3],[-1,-16],[-35,-3],[-10,-6],[-8,-4],[-14,-17],[2,-5],[5,-14],[19,-6],[19,-2],[24,-11],[14,-19],[-1,-21],[13,-13],[15,0],[3,-3],[7,-9],[-10,-14],[-20,4],[-17,0],[-20,-7],[-9,-10],[-1,-1],[1,-1],[2,-7],[3,-11],[13,-4],[12,-8],[14,-4],[5,-6],[9,-11],[13,11],[9,3],[7,2],[6,-20],[-2,-6],[-2,-12],[0,-1],[4,-18],[-19,4],[-10,2],[-6,1],[0,-9],[1,-7],[-11,-18],[-16,-27],[-15,-22],[-1,-10],[-1,-10],[7,-13],[12,-13],[17,-3],[4,-9],[4,-9],[-12,-11],[-19,-6],[-8,-3],[-7,-1],[-15,-10],[-1,-1],[-13,-10],[-4,0],[-16,-1],[-8,15],[3,29],[-8,14],[-13,-3],[-12,-14],[0,-23],[13,-18],[7,-16],[-2,-17],[-17,-26],[-8,-13],[-1,-9],[-1,-7],[-5,-1],[-3,0],[-12,-2],[-10,17],[-15,1],[-1,0],[0,-1],[-3,-12],[-1,-6],[0,-17],[1,-1],[4,-15],[13,-6],[19,-4],[-2,-20],[4,-12],[1,-2],[15,-3],[4,-1],[5,-15],[-6,-14],[-23,1],[-12,12],[-14,8],[-2,1],[-7,0],[-10,-1],[-25,-13],[-9,-21],[2,-26],[-17,2],[-11,-6],[-2,-1],[2,-7],[2,-10],[3,-10],[7,-16],[1,-2],[-2,-3],[-7,-19]],[[23543,95400],[-189,0],[-27,0],[-7,0],[-6,0],[-18,0],[-115,3],[-34,0],[-20,-3],[-81,3],[-14,0],[-16,1],[-48,0],[-121,0],[-81,1],[-91,0],[-40,0],[-72,1],[-26,0],[-12,0],[-97,0],[-37,1],[-27,0],[-3,0],[-22,0],[-96,1],[-14,1],[-56,0],[-51,1],[-21,0],[-57,1],[-5,0],[-64,0],[-86,1],[-32,1],[-93,1],[-88,1],[-17,0],[-60,0],[-96,6],[-70,0],[-82,1],[-33,0],[-16,0],[-141,1],[-49,0],[-14,0],[-90,7],[0,27],[0,97],[0,32],[0,6],[1,102],[0,3],[0,20],[1,27],[1,38],[-1,23],[-1,27],[0,18],[0,15],[1,42],[0,30],[0,90],[1,46],[0,53],[0,133],[0,95],[-1,39],[-1,26],[-1,56],[0,1],[-3,262],[2,80],[1,79],[2,88],[0,26],[1,30],[0,48],[1,45],[0,35],[0,4],[2,240],[0,49],[1,63],[2,67],[0,39],[2,59],[1,65],[3,67],[0,28],[2,44],[0,24],[1,40],[-1,77],[0,35],[0,2],[3,66],[2,120],[-3,58],[1,43],[1,39],[0,17],[1,46],[0,22],[2,109],[1,81],[0,44],[0,25],[1,57],[0,25],[0,38],[1,26],[0,71],[1,69],[2,253],[-1,47],[0,4],[3,361],[0,148],[1,40]],[[21041,99881],[36,0],[107,-1],[109,-1],[60,0],[65,0],[85,-1],[17,-4],[18,0],[1,0],[46,0],[54,1],[22,0],[14,0],[23,0],[10,0],[19,0],[58,1],[16,0],[18,0],[127,1],[17,0],[15,0],[22,0],[53,0],[95,1],[44,0],[62,1],[37,0],[14,0],[30,0],[11,1],[44,0],[16,0],[63,0],[115,1],[85,1],[69,0],[88,1],[77,0],[32,1],[42,0],[88,1],[36,0],[50,1],[56,2],[69,1],[112,1],[219,2],[101,1],[15,0],[10,0],[21,1],[199,2],[165,1],[282,3],[92,1],[48,1],[88,1],[31,0],[40,0],[61,1],[35,7],[105,1],[32,0],[82,1],[111,0],[132,1],[294,2],[19,0],[37,0],[39,0],[15,0],[17,-1],[14,1],[22,0],[46,1],[3,0],[45,0],[21,0],[20,0],[22,0],[58,1],[47,0],[97,1],[66,0],[15,0],[3,0],[22,0],[98,1],[72,1],[35,0],[51,0],[18,0],[51,1],[37,0],[37,0],[153,1],[32,0],[18,0],[155,2],[8,0],[37,0],[6,0],[18,0],[28,0],[36,1],[22,0],[29,0],[62,0],[71,1],[96,1],[51,1],[36,0],[17,0],[20,0],[102,1],[2,1],[59,1],[26,1],[33,0],[26,0],[32,0],[120,1],[32,1],[60,0],[55,1],[17,0],[13,0],[11,0],[18,0],[21,1],[1,0],[3,0]],[[23543,95400],[-24,-20],[-15,-7],[-19,-1],[-14,1],[-13,-11],[-6,-25],[-15,2],[-8,15],[-11,-9],[-11,-14],[-15,-1],[-10,0],[-8,1],[-5,-4],[-1,-1],[-12,-38],[-2,-6],[-8,-20],[-3,-10],[-3,-7],[-2,-2],[-10,-6],[-7,-3],[-19,-12],[-7,-5],[6,-69],[-1,-22],[-4,-5],[-22,-25],[-29,-45],[-6,-8],[-16,-28],[-25,-47],[-9,-16],[-5,-11],[-1,-13],[-1,-1],[-1,-9],[7,-11],[10,-14],[4,-5],[-2,-16],[-1,-5],[0,-2],[-7,-11],[-1,-15],[11,-16],[19,-25],[11,-3],[12,-3],[5,-7],[-1,-3],[-8,-7],[-18,-4],[-15,1],[-14,11],[-4,3],[-12,1],[-8,-7],[-1,-4],[-3,-28],[-8,-9],[-9,-4],[-25,-1],[-38,-11],[-23,-35],[-34,-63],[-6,-7],[-12,1],[-8,11],[-2,20],[-6,16],[-13,16],[-1,1],[-2,1],[-19,2],[-7,0],[-13,-6],[-1,-12],[1,-6],[-23,-42],[-6,-1],[-13,-2],[-3,-1],[-2,-12],[-3,-14],[-27,-36],[-2,-2],[-20,-20],[0,2],[-2,12],[-1,1],[-6,8],[-5,0],[-8,1],[-6,-1],[-13,-11],[0,-1],[-10,-27],[-6,-19],[-4,-3],[-2,-1],[-3,-3],[-13,2],[-15,11],[-3,3],[-3,-15],[-6,-33],[-8,-21],[-4,-1],[-48,-17],[-4,-2],[-2,-2],[-42,-26],[-9,-9],[-1,-8],[5,-11],[5,-11],[24,-50],[8,-9],[7,-1],[1,0],[3,-3],[2,-1],[1,-1],[2,-5],[8,-147],[-2,-22],[-5,-7],[-12,-10],[-4,-2],[-2,-1],[-12,-6],[-9,-4],[-1,-8],[-2,-39],[0,-17],[5,-42],[9,-11],[19,-6],[5,-6],[0,-18],[-1,-4],[-5,-25],[-13,-70],[-22,-36],[-22,-35],[-2,-3],[5,-6],[13,-7],[4,-1],[7,0],[7,-1],[3,2],[7,5],[1,3],[2,12],[11,10],[10,3],[1,0],[6,0],[8,-1],[1,-1],[3,-3],[3,-5],[3,-8],[0,-5],[0,-1],[-1,-6],[-10,-11],[-10,-12],[-3,-11],[3,-12],[25,-34],[3,-5],[3,-8],[-1,-17],[-5,-4],[-14,-12],[-2,-11],[4,-5],[1,-2],[3,-1],[70,-30],[9,-1],[41,3],[2,1],[33,17],[18,4],[13,-1],[11,-8],[8,-9],[6,-8],[25,-52],[13,-26],[1,-11],[5,-38],[12,-92],[1,-10],[2,-14],[-4,-17],[-10,-8],[-19,-14],[-2,-18],[4,-13],[1,-1],[2,-8],[29,-62],[1,-2],[4,-4],[11,-1],[7,4],[12,7],[31,-3],[18,-12],[28,-42],[3,-12],[4,-14],[1,-91],[0,-7],[-13,-89],[13,-27],[0,-1],[0,-20],[0,-14],[25,-90],[-2,-18],[-6,-5],[-6,-3],[-12,1],[-4,0],[-6,9],[1,10],[2,4],[2,3],[0,14],[-2,2],[-5,6],[-9,2],[-9,-11],[-3,-16],[-2,-13],[-8,-17],[-7,-5],[-15,-12],[-26,-21],[-7,-9],[-1,-7],[-1,-6],[2,-14],[1,-8],[1,-2],[5,-7],[5,-6],[0,-1],[45,-56],[1,-1],[-5,-2],[-17,-6],[-1,0],[-13,0],[-13,-3],[-6,-2],[-3,0],[-8,-11],[-1,-10],[12,-15],[4,0],[39,-4],[17,-6],[9,-11],[31,-56],[-1,-8],[-23,-23],[-23,-23],[-9,1],[-4,-3],[-1,-1],[0,-5],[-1,-8],[10,-14],[9,-6],[4,-2],[6,-8],[14,-17],[11,-7],[8,-1],[1,0],[12,-2],[71,8],[10,5],[18,10],[11,7],[16,9],[6,4],[0,-3],[-6,-23],[0,-9],[-1,-13],[0,-4],[4,-5],[2,-3],[8,-9],[10,-2],[11,-14],[3,-3],[-9,-19],[-1,-9],[0,-4],[2,-3],[2,-5],[4,-6],[56,-14],[8,-1],[10,0],[23,-2],[3,-6],[2,-4],[1,-2],[-7,-10],[-11,-18],[-8,-16],[-1,-14],[3,-5],[7,-10],[-3,-13],[-1,-6],[-1,-4],[-10,-8],[-57,-22],[-17,-4],[-15,-12],[-36,-49],[-31,-49],[-19,-39],[-7,-23],[-2,-6],[-5,-10],[-2,-4],[-15,-61],[-13,-54],[-8,-17],[-2,-2],[-5,-4],[-9,-7],[-9,-3],[-43,-7],[-19,-2],[-9,1],[-7,0],[-3,3],[-7,4],[-5,6],[-6,7],[3,22],[3,15],[10,19],[0,1],[0,2],[2,14],[0,4],[-7,8],[-9,1],[-1,0],[-3,1],[-8,-2],[-4,-3],[-6,-4],[-3,-3],[-3,-6],[-2,-3],[0,-12],[-1,-13],[-2,-24],[-50,-188],[-2,-1],[-4,-3],[-3,-3],[-7,1],[-10,1],[-4,0],[-19,9],[-3,2],[0,-2],[-3,-26],[-1,-10],[-10,-39],[-4,-16],[-6,-24],[-11,-30],[-9,-36],[-12,-17],[-19,-15],[-18,-4],[-6,0],[-8,1],[-16,2],[-13,3],[-1,2],[-3,3],[-11,0],[-2,0],[-6,0],[-11,-9],[0,-3],[-2,-16],[-52,-40],[-35,2],[-5,5],[-41,10],[-17,3],[-33,4],[-27,12],[-27,12],[-26,1],[-14,-5],[-13,8],[-1,0],[-3,2],[-5,6],[0,2],[1,20],[1,7],[0,8],[-10,11],[-29,1],[-26,-10],[-64,-15],[-18,2],[-10,1],[-19,8],[-4,2],[-24,3],[-10,-1],[-10,0],[-27,-2],[-14,-6],[-14,-12],[-2,-2],[-18,-16],[-2,-2],[-39,-23],[-11,1],[-30,1],[-14,-4],[-12,-10],[-27,-48],[-3,-33],[-1,-12],[-6,-15],[-3,-3],[-19,-19],[-1,-1],[-2,0],[-8,-3],[-12,2],[-2,0],[-7,8],[5,21],[9,15],[6,5],[6,5],[2,10],[-3,3],[-1,2],[-2,2],[-15,1],[-11,-1],[-6,-1],[-6,-1],[-83,-63],[-15,-11],[-10,-7],[-6,-5],[-14,-12],[-3,-3],[-45,-60],[-14,-26],[0,-9],[0,-13],[5,-8],[1,-1],[0,-1],[8,-1],[8,5],[10,-1],[5,-6],[0,-7],[0,-34],[-2,-12],[-24,-22],[-3,-3],[-11,-14],[-37,-92],[0,-1],[-5,-13],[-9,-8],[-21,-21],[-8,-4],[-4,-3],[-1,-1],[-6,-17],[0,-2],[0,-26],[-1,-17],[1,-36],[1,-21],[1,-16],[0,-20],[2,-19],[4,-32],[4,-51],[0,-1]],[[21598,90559],[0,-22],[-2,-123],[-1,-75],[-1,-57],[-1,-29],[-3,-163],[0,-18],[-1,-35],[-1,-36],[-1,-58],[-4,-158],[-1,-61],[-1,-25],[-1,-51],[-2,-60],[-3,-60],[-4,-147],[0,-16],[1,-5],[0,-21],[0,-3],[1,-25],[2,-51],[1,-26],[-1,-52],[0,-33],[-1,-31],[0,-31],[-1,-50],[-11,-113],[-2,-21],[-1,-29],[0,-59],[-1,-27],[0,-3],[-1,-24],[-1,-21],[-2,-38]],[[21554,88702],[-31,15],[-34,15],[-23,7],[-59,26],[-51,24],[-45,20],[-57,29],[-52,18],[-87,39],[-45,21],[-55,23],[-53,19],[-28,14],[-60,22],[-42,16],[-48,25],[-41,19],[-40,26],[-117,38],[-38,19],[-60,24],[-51,22],[-31,15],[-28,12],[-45,16],[-37,13],[-40,14],[-48,20],[-39,14],[-45,16],[-27,10],[-56,22],[-55,19],[-63,20],[-50,19],[-115,42],[-117,44],[-47,20],[-100,43],[-34,4],[-59,15],[-57,24],[-32,13],[-36,12],[-44,15],[-41,12],[-33,12],[-29,11],[-36,10],[-75,28],[-51,20],[-29,6],[-49,16],[-30,10],[-37,11],[-41,14],[-34,9],[-42,17],[-40,12],[-48,16],[-30,13],[-38,13],[-42,12],[-27,13],[-39,11],[-61,21],[-37,10],[-54,15],[-41,17],[-34,13],[-53,13],[-63,21],[-42,14],[-59,15],[-40,12],[-62,18],[-84,24],[-52,13],[-50,13],[-36,10],[-45,13],[-29,8],[-261,57],[-471,104],[-49,11],[-149,33],[-42,7],[-56,-2],[-141,21],[-153,26]],[[16282,90693],[33,-12],[38,-23],[40,-21],[53,-21],[40,-14],[30,-13],[48,-19],[32,-12],[31,-6],[34,-6],[39,-19],[49,-6],[27,-1],[46,-7],[49,-1],[25,-9],[79,-5],[66,0],[74,23],[33,-12],[-2,-48],[32,-15],[31,33],[0,65],[-21,56],[8,54],[12,38],[27,83],[15,44],[37,114],[15,32],[21,47],[36,38],[25,20],[34,-32],[16,-22],[23,-27],[24,-39],[19,-31],[-9,-29],[-24,-42],[36,-17],[21,-42],[0,-46],[34,8],[48,-24],[45,-13],[51,-32],[13,-40],[25,37],[29,12],[29,16],[35,-12],[25,-17],[48,-4],[37,-2],[45,-2],[58,-28],[75,-42],[40,-7],[31,5],[32,-14],[67,-32],[41,42],[13,38],[-3,34],[29,14],[29,7],[61,6],[-9,47],[-36,-15],[-29,2],[-44,23],[-36,21],[-25,26],[-10,10],[-34,44],[-46,8],[-38,10],[-45,14],[-44,-40],[-46,-8],[-18,27],[36,31],[-21,41],[-30,38],[5,35],[24,17],[16,36],[42,58],[25,9],[38,0],[52,26],[26,9],[32,-1],[42,-33],[24,-32],[34,-22],[35,-20],[44,-20],[39,-2],[54,-13],[42,-35],[30,-41],[26,-38],[27,-31],[25,-22],[44,-49],[67,-57],[47,-41],[27,-18],[34,-16],[40,-21],[33,-15],[31,-12],[42,-17],[46,-17],[56,-20],[34,-17],[27,-14],[12,-4],[18,-6],[24,-34],[21,-41],[59,-14],[32,-6],[12,-42],[44,14],[62,3],[26,-4],[50,-5],[45,-4],[35,-12],[38,-8],[41,2],[41,3],[26,-1],[33,-3],[32,5],[34,6],[39,-19],[2,-37],[30,-19],[47,-6],[-1,2],[-27,45],[-27,42],[24,21],[3,2],[16,37],[33,31],[50,33],[44,22],[16,42],[-35,14],[-31,3],[-40,18],[-2,42],[-32,-3],[-48,2],[-27,-13],[-20,31],[23,25],[-20,17],[-9,34],[25,7],[34,-25],[-5,21],[-3,10],[-5,18],[1,31],[0,25],[37,38],[5,29],[-44,-19],[-32,10],[9,13],[-27,16],[-11,47],[-43,38],[-40,12],[-40,12],[-27,8],[-23,31],[52,-4],[40,-8],[3,6],[16,31],[48,-12],[31,-4],[18,33],[4,55],[-52,13],[-39,-7],[-47,0],[-46,0],[-37,-7],[-56,-1],[-44,4],[-35,7],[-29,9],[-53,8],[-1,0],[-33,35],[-14,45],[-8,48],[-2,60],[-22,53],[-12,50],[-3,44],[34,22],[61,3],[23,3],[22,-11],[17,0],[27,-23],[13,-4],[43,0],[9,-19],[3,23],[33,38],[19,3],[13,10],[-1,28],[17,19],[-23,-1],[-14,-17],[-6,-20],[-43,-25],[-40,-21],[-18,6],[-14,16],[6,25],[-23,-15],[-21,3],[-16,7],[-14,22],[23,60],[17,14],[29,-5],[27,12],[34,26],[49,27],[38,26],[24,42],[-11,34],[-22,45],[-10,-14],[-7,-11],[-28,-33],[-33,-24],[-50,-29],[-48,-12],[-22,-28],[-27,2],[-45,-23],[3,-28],[-7,-32],[-42,-13],[5,-40],[-34,-9],[-34,0],[-35,-9],[-32,-10],[-69,-9],[-52,-6],[-60,1],[-41,11],[-23,26],[-19,20],[-22,32],[-43,56],[-22,43],[-27,50],[-40,62],[-17,46],[11,34],[-12,46],[48,-5],[23,13],[8,39],[30,32],[26,42],[-18,42],[-35,33],[-3,3],[-8,37],[-17,30],[-11,-82],[-14,-47],[-42,-23],[-36,-18],[-40,-14],[-17,-33],[2,-33],[2,-30],[-18,-26],[-27,-17],[-43,-26],[-57,-22],[-37,-7],[-62,-7],[-34,2],[-47,13],[-41,28],[-40,34],[-32,34],[-24,30],[-41,34],[-4,4],[-44,15],[-40,-2],[-31,-12],[-42,-26],[-55,-22],[-36,-6],[-34,-8],[-56,-17],[-52,-11],[-59,-24],[-93,-53],[-75,-32],[-31,-12],[-50,-2],[-45,20],[-76,37],[-51,19],[-35,9],[-33,6],[-59,-2],[-41,-14],[-39,-19],[-43,-28],[-87,-60],[-32,-18],[-78,-38],[-49,-13],[-145,2],[-45,-18],[-49,-11],[-41,-12],[-37,-15],[-38,-20],[-29,-17],[-56,-35],[-31,-20],[-31,-19],[-23,-11]],[[16391,99894],[63,1],[63,1],[62,3],[15,0],[15,0],[15,0],[20,1],[25,0],[36,-2],[108,0],[82,-1],[24,0],[9,0],[69,0],[23,0],[25,0],[19,-1],[30,0],[15,0],[1,0],[39,-1],[29,0],[19,0],[32,0],[31,0],[67,-1],[16,-1],[7,-1],[85,-1],[1,0],[34,1],[23,-1],[15,-1],[18,-1],[31,0],[23,-1],[17,0],[17,0],[17,-1],[16,0],[15,0],[24,0],[16,0],[186,1],[47,1],[43,0],[100,0],[16,0],[16,0],[21,0],[84,4],[153,4],[60,-1],[85,-3],[126,0],[40,0],[111,0],[75,-1],[65,0],[62,0],[47,0],[93,-3],[16,-1],[37,-1],[18,1],[20,0],[18,0],[17,-1],[4,0],[25,-2],[23,0],[17,0],[18,2],[14,0],[63,-2],[167,-2],[167,-2],[1,0],[24,1],[78,-4],[46,-4],[57,1],[61,0],[107,0],[25,-1],[148,0],[73,0],[93,0],[95,0],[67,0],[32,0],[18,0],[19,0],[20,2],[47,6],[15,0],[16,0],[14,-1],[208,0],[21,0]],[[28936,93309],[-22,0],[-15,0],[-147,-2],[-44,-2],[-33,3],[-54,-2],[-31,0],[-153,1],[-135,1],[-20,1],[-25,0],[-1,-67],[1,-45],[1,-43],[-1,-68],[1,-350],[-2,-96],[0,-2],[2,-43],[0,-14],[6,-15],[-1,-56],[-1,-45],[-1,-26],[0,-22],[-2,-19],[-3,-57],[-1,-37],[0,-29],[-4,-21],[4,-59],[1,-46],[-2,-20],[0,-20],[0,-30],[-6,-118],[0,-38],[0,-29],[-3,-70],[-1,-25],[-2,-62],[-2,-50],[-1,-19],[3,-50],[-1,-16],[0,-16],[0,-21],[0,-23],[0,-27],[-1,-17],[0,-21],[0,-22],[-1,-33],[0,-60],[-1,-30],[-1,-25],[-1,-16],[0,-3],[-166,2],[-17,1],[-49,-1],[-122,2],[-10,0],[-16,0],[-6,0],[-63,1],[-47,0],[-34,1],[-38,1],[-67,1],[-33,3],[-105,-1],[-25,0],[-16,0],[-46,1],[-24,0],[-55,5],[-139,-2],[-27,0],[-95,1],[-28,1],[-50,0],[-46,1],[-15,0],[-45,1],[-70,1],[-59,1],[-34,5],[-64,0],[-45,-2],[-110,1],[-45,0],[-111,1],[-65,1],[-91,2],[-48,0],[-63,6],[-18,-4],[-56,4],[-53,3],[-37,-4],[-15,0],[-14,0],[-18,0],[-22,0],[-27,0],[-13,0],[-22,0],[-13,0],[-43,1],[-36,-1],[-3,0],[-38,-1],[-16,2],[-92,8],[-64,-5],[-52,-2],[-36,-1],[-103,1],[-28,1],[-82,1],[-105,1],[-5,0],[-89,1],[-4,0],[-133,2],[-22,0],[-94,2],[-32,0],[-60,1],[-65,1],[-47,1],[-48,0],[-138,1],[-41,1],[-51,0],[-35,1],[-92,0],[-33,0],[-78,1],[-25,3],[-14,2],[-126,17],[-29,0],[-17,0],[-63,0],[-59,-4],[-42,-3],[-58,-4],[-30,-1],[-75,0],[-8,0],[-14,-8],[-37,-16],[-9,-4],[-9,-4],[-9,-5],[-3,0],[-7,-4],[-6,-8],[-1,-3],[-8,-23],[-4,-6],[-10,-15],[-3,-6],[-10,-24],[-3,-13],[0,-1],[-1,-39],[-3,-12],[-1,-1],[-18,-28],[-52,-83],[-1,-1],[-26,-27],[-27,-28],[-19,-19],[-7,-8],[-32,-20],[-7,-8],[-1,-3],[-2,-8],[-4,-5],[-1,-1],[-10,-5],[-29,-16],[-25,-13],[-3,-2],[-10,-3],[-24,-1],[-40,6],[-8,-5],[-21,3],[-2,0],[-39,-7],[-2,0],[-2,0],[-5,2],[-5,5],[-2,4],[-9,5],[-18,2],[-1,-2],[-9,-9],[-16,-16],[-5,-10],[-4,-10],[-18,-16],[-65,-17],[-11,2],[-13,5],[-61,30],[-20,14],[-17,21],[-5,22],[-3,12],[-5,7],[-2,2],[-1,2],[-1,1],[-31,24],[-7,7],[-4,1],[-12,5],[-8,3],[-4,2],[-4,0],[-15,2],[-38,-6],[-21,-17],[-14,-22],[-12,-11],[-52,-30],[-69,-30],[-6,-3],[-6,-3],[-48,0],[-13,1],[-19,18],[-7,6],[-18,15],[-18,15],[-2,2],[-8,1],[-25,2],[-3,1],[-8,-2],[-117,-28],[-19,-31],[-1,-14],[-9,-7],[-30,-23],[-2,-1],[-1,-1],[-84,-58],[1,-33],[-29,-56],[-11,-9],[-27,-6],[-6,-2],[-4,-3],[-5,-4],[-29,-40],[-12,-4],[-58,-19],[-31,1],[-12,-3],[-26,-11]],[[81061,92824],[1,-35],[-22,3],[-12,2],[-8,7],[-19,16],[-21,20],[-12,11],[-30,28],[-26,27],[-9,36],[-2,22],[-1,11],[35,-32],[26,-34],[36,-33],[32,-26],[32,-23]],[[81140,93402],[-51,-2],[1,32],[16,27],[25,19],[4,2],[5,1],[22,17],[2,-32],[-7,-31],[-17,-33]],[[80979,94836],[-31,-6],[-23,16],[-7,5],[5,14],[11,29],[5,15],[6,21],[15,0],[17,1],[24,-4],[18,-3],[49,-7],[-18,-41],[-42,-26],[-29,-14]],[[80361,95666],[61,-6],[39,9],[35,2],[64,-5],[74,9],[55,-2],[0,-16],[0,-52],[-2,-14],[-5,-37],[-26,-32],[-3,-4],[-1,-1],[-21,-12],[-22,0],[-72,19],[-50,4],[-22,0],[-25,-13],[-10,-7],[-11,-8],[-2,-43],[2,-43],[11,-38],[-2,-37],[-17,-10],[-19,17],[-24,26],[-36,8],[-7,2],[-24,-4],[-13,-2],[-51,-20],[-54,-29],[-32,0],[-48,-26],[-54,-28],[-14,-11],[-7,28],[-16,41],[-3,17],[-5,21],[-24,47],[-11,20],[-8,18],[-5,10],[-30,15],[-40,8],[-29,-2],[-35,-4],[-38,-17],[-52,-13],[-25,-14],[-6,-4],[-23,-16],[-37,-1],[-33,6],[-15,18],[-2,20],[5,16],[1,17],[0,10],[-5,22],[-6,20],[2,5],[4,10],[13,9],[22,0],[31,-2],[26,-5],[25,-3],[32,0],[12,5],[9,4],[19,27],[39,8],[0,-22],[0,-23],[26,-36],[6,-1],[23,-4],[63,11],[18,12],[7,5],[21,24],[25,27],[18,6],[6,2],[17,-26],[21,-42],[22,-32],[60,-42],[44,-11],[40,17],[17,28],[11,58],[-2,36],[0,12],[-3,13],[-4,17],[9,31],[4,16],[92,-13]],[[79347,93200],[-15,-8],[-12,-11],[-9,-21],[-11,-41],[-6,-14],[-20,-12],[-19,1],[-20,11],[-12,22],[-7,24],[-5,15],[-12,21],[-10,20],[-7,21],[7,20],[20,14],[18,10],[15,7],[13,5],[13,6],[15,2],[19,3],[21,1],[16,3],[12,11],[-2,29],[-4,16],[-11,21],[-17,15],[-13,9],[-24,11],[-13,6],[-13,4],[-3,2],[-26,15],[1,19],[15,16],[20,14],[17,16],[19,25],[8,13],[8,22],[-13,20],[-19,3],[-3,1],[-23,-7],[-12,-10],[-18,-19],[-15,-19],[-15,-16],[-14,-13],[-19,1],[-16,6],[-22,12],[-22,13],[-12,10],[-20,19],[-13,25],[-14,8],[-13,-6],[-14,-12],[-16,-18],[-17,-10],[-22,-8],[-13,-3],[-23,-8],[-21,-12],[-12,-22],[-9,-24],[-21,0],[-21,20],[-13,6],[-20,0],[-11,-7],[-11,-24],[-6,-20],[-14,-16],[-4,1],[-17,7],[-21,10],[-19,-11],[-1,-36],[0,-23],[-15,-12],[-21,-4],[-21,-5],[-16,-13],[-14,-22],[-11,-16],[-12,-16],[-8,-20],[1,-25],[-4,-23],[-10,-12],[-8,-13],[-5,-17],[8,-18],[-19,7],[-18,-2],[12,-13],[7,-18],[-4,-21],[13,-14],[19,-5],[20,-8],[-6,-19],[-13,-10],[-23,-6],[-24,-6],[-17,4],[-22,10],[-11,18],[-7,20],[-18,13],[-20,6],[-23,9],[15,17],[16,0],[20,-1],[14,6],[-5,20],[5,21],[-16,8],[-13,-4],[-14,-4],[-16,-7],[-7,16],[5,16],[9,12],[16,2],[13,3],[-9,13],[-17,9],[-15,11],[-10,10],[-15,8],[-6,-10],[-3,-5],[-8,-14],[-7,-14],[-10,-15],[-14,-5],[-14,5],[-14,5],[-13,6],[-10,11],[-11,17],[-4,15],[-15,7],[-13,-18],[-11,-19],[-7,-19],[-14,2],[-9,16],[2,24],[0,15],[-20,3],[-21,6],[-13,3],[-10,-12],[0,-17],[0,-20],[-20,-12],[-17,5],[0,20],[9,15],[-1,17],[-10,19],[-10,14],[-13,10],[-13,-7],[-8,-18],[-9,-15],[-12,-11],[-7,-19],[7,-19],[-13,-7],[-24,2],[-14,6],[-3,17],[6,14],[12,11],[-14,9],[-14,-3],[-13,-1],[-15,-4],[-12,-7],[-15,-6],[-11,15],[-9,17],[-12,14],[-12,13],[-17,12],[-16,11],[-15,3],[-17,-4],[-20,-10],[-12,6],[-8,13],[-13,-11],[-1,-16],[1,-19],[-6,-19],[-14,-10],[-13,-7],[-14,-8],[-3,18],[-19,-8],[-14,-10],[-6,-14],[14,3],[15,-7],[14,-6],[9,-11],[-1,-23],[-5,-14],[-3,-8],[-6,-11],[-6,-6],[-4,-4],[-7,14],[-4,15],[0,18],[-16,3],[-18,-1],[-15,-11],[2,-20],[11,-12],[10,-18],[-3,-15],[-12,-10],[-14,13],[-12,12],[-16,2],[-13,5],[-7,-15],[-7,-15],[0,-16],[13,9],[11,-21],[1,-20],[10,-19],[9,-13],[-17,1],[-19,6],[-13,-14],[-6,-20],[-5,-18],[12,-13],[18,-2],[15,-12],[-2,-17],[-15,1],[-11,9],[-16,2],[4,-17],[15,-6],[-1,-17],[-12,-8],[-12,-12],[16,-10],[15,0],[-6,-18],[-14,-3],[1,-22],[4,-15],[-7,-14],[-6,-17],[-10,-10],[4,-17],[-19,-3],[-14,-12],[-9,-10],[-16,-4],[-9,-15],[-15,1],[-15,1],[-15,-10],[-10,-11],[-15,6],[-14,4],[-86,-3],[-115,69],[-6,-265],[-2,-3],[-38,-41],[-79,-87],[-95,-104],[-125,34],[-11,-1],[-36,-2],[-93,-165],[-2,-3],[-100,-153],[-181,-170],[-104,-94],[-3,-3],[-29,-32],[-12,-13],[-35,-36],[-39,-42],[-43,-44],[-75,-78],[-224,-234],[-184,-195],[-10,-12],[-20,-20],[-112,-117],[-104,-109],[-55,-58],[-169,-177],[-20,-19],[-59,-63],[-131,-140],[-47,-51],[-37,-36],[-70,-70],[-33,-33],[-76,-79],[-7,-7],[-33,-38],[-27,-27],[-14,-15],[-45,-46],[-19,-20],[-21,-21],[-26,-27],[-101,-106],[-30,-33],[-13,-14],[-9,-9],[-41,-44],[-150,-159],[-207,-221],[-41,-43],[-50,-50],[-1,-1],[-115,-117],[-13,-14],[-16,-16],[-139,-143],[-9,-9],[-74,-75],[-80,-80]],[[73461,88767],[-4,124],[-1,136],[-1,33],[0,15],[1,268],[0,50],[0,286],[-2,163],[-1,106],[0,24],[0,25],[-1,81],[-1,63]],[[73451,90141],[12,5],[6,4],[3,3],[11,8],[3,4],[47,18],[18,3],[6,1],[-4,11],[1,24],[0,7],[1,12],[0,1],[18,12],[13,8],[34,23],[1,4],[-2,3],[0,1],[-10,12],[-1,2],[-10,21],[-1,8],[5,13],[7,13],[1,2],[12,18],[4,7],[-6,13],[-4,16],[-9,28],[0,6],[13,24],[-15,68],[-6,26],[-1,2],[-9,40],[-8,26],[-15,24],[-9,11],[-1,1],[-1,2],[-31,112],[-1,3],[2,2],[34,24],[-1,0],[-21,19],[-2,3],[-1,2],[-1,3],[-1,3],[2,21],[2,11],[0,4],[2,5],[7,3],[11,4],[2,2],[0,5],[-2,3],[-11,5],[-6,2],[-5,34],[2,8],[1,3],[2,4],[1,1],[7,8],[28,24],[8,4],[42,17],[28,12],[8,3],[2,5],[3,107],[-1,8],[-18,51],[-2,4],[-7,3],[-5,0],[-11,25],[-25,26],[5,9],[19,39],[2,3],[10,5],[12,13],[7,11],[5,10],[1,2],[3,10],[1,7],[0,7],[11,2],[24,21],[17,16],[13,21],[9,15],[2,3],[14,73],[2,26],[0,3],[-2,3],[-12,14],[-5,5],[5,4],[16,14],[5,4],[13,14],[30,36],[-3,13],[-12,53],[-1,11],[6,27],[3,7],[55,81],[6,5],[10,5],[1,0],[3,4],[0,1],[12,22],[3,5],[-1,5],[0,3],[-4,66],[-10,34],[-3,3],[-6,3],[-5,3],[-3,2],[1,4],[22,17],[3,2],[1,0],[0,1],[4,-2],[6,-3],[4,-2],[9,-4],[-8,12],[-11,14],[-2,3],[-3,3],[-1,5],[-11,91],[2,7],[12,23],[7,20],[8,28],[6,19],[3,26],[0,3],[-13,14],[-9,10],[2,14],[5,39],[0,5],[0,1],[14,43],[0,2],[3,12],[1,5],[5,29],[0,23],[-3,84],[0,4],[-7,-1],[-38,-2],[-1,12],[0,5],[-1,23],[-2,53],[-1,42],[11,67],[4,29],[3,8],[4,15],[6,19],[11,38],[0,1],[12,22],[18,34],[1,3],[0,9],[-6,17],[10,56],[3,15],[8,26],[14,47],[32,66],[44,88],[0,8],[-7,37],[-4,7],[-3,3],[-2,3],[-9,14],[-1,3],[-11,19],[0,29],[3,85],[-3,45],[0,2],[-2,22],[0,2],[-4,1],[-4,3],[-16,20],[-3,4],[-3,4],[-2,5],[-7,34],[-5,28],[-1,4],[-1,14],[-1,11],[-3,27],[1,23],[0,1],[1,10],[-37,96],[-2,4],[-8,19],[-1,3],[-5,5],[-3,5],[-2,2],[-38,17],[-11,4],[-38,34],[-4,0],[-23,1],[-19,0],[-4,0],[0,4],[1,37],[0,4],[1,18],[0,7],[2,32],[1,8],[-1,9],[-1,10],[-4,28],[-12,53],[0,1],[0,2],[-6,23],[-2,6],[-1,3],[-3,8],[-4,1],[-8,-4],[0,-1],[-3,-4],[0,-3],[0,-1],[0,-7],[3,-8],[3,-4],[3,-4],[-1,-6],[0,-4],[-1,-2],[0,-1],[-6,-3],[-2,-1],[-15,1],[-5,7],[-5,6],[0,13],[11,21],[2,3],[1,10],[-3,7],[-5,7],[-6,10],[-3,5],[-2,4],[-3,2],[-22,10],[-8,4],[-9,10],[0,5],[3,4],[14,8],[4,4],[2,7],[0,9],[-2,4],[-1,2],[-34,39],[-14,16],[-3,1],[-12,7],[-12,6],[-3,3],[-1,5],[0,16],[1,20],[0,2],[4,25],[0,3],[5,23],[1,10],[-3,22],[-3,12],[-10,27],[-19,56],[-6,12],[-2,3],[-1,1],[-38,29],[-3,1],[-6,1],[-4,12],[-22,23],[-8,9],[-10,10],[-1,4],[-3,47],[-1,54],[3,7],[5,5],[6,-1],[3,-2],[0,-7],[1,-13],[7,-8],[3,-3],[9,1],[1,2],[2,2],[0,1],[-1,6],[-9,31],[-4,14],[-2,11],[-31,138],[-2,22],[1,13],[5,15],[23,27],[22,30],[1,1],[1,8],[-2,2],[-2,2],[-6,3],[-11,0],[-11,1],[1,11],[5,5],[10,6],[11,3],[35,6],[5,7],[8,36],[11,53],[7,33],[-1,53],[0,8],[-7,31],[6,7],[3,3],[20,22],[6,7],[3,3],[2,3],[8,16],[3,5],[12,25],[3,5],[9,18],[1,3],[2,4],[1,6],[-7,55],[0,32],[-7,22],[-3,3],[-4,5],[-6,4],[-6,4],[-7,2],[-2,8],[2,30],[1,6],[4,4],[17,7],[2,5],[-1,6],[-17,59],[-2,4],[-3,4],[-11,16],[-10,10],[-7,3],[-30,8],[-1,0],[-9,4],[-16,17],[-2,3],[0,10],[4,5],[24,20],[14,7],[2,1],[3,2],[0,6],[-5,6],[-10,2],[9,10],[3,25],[16,8],[11,12],[9,13],[12,8],[-6,17],[-14,13],[-5,29],[11,126],[10,33],[10,20],[14,29],[2,17],[4,3],[8,2],[3,-2],[1,-1],[3,-1],[25,-28],[9,-4],[47,-19],[3,-1],[14,-3],[1,1],[41,23],[22,13],[15,8],[4,1],[27,10],[20,6],[8,4],[2,4],[-1,8],[-4,3],[0,1],[-4,29],[-1,4],[57,48],[2,2],[7,-2],[2,-1],[8,-3],[3,5],[11,23],[0,11],[-6,12],[-13,29],[-2,4],[-21,43],[-7,17],[-5,21],[-11,10],[-13,37],[-3,7],[-1,6],[-4,5],[-3,5],[-10,12],[-10,14],[-9,11],[-10,14],[-8,12],[-16,21],[-11,19],[-1,5],[0,32],[4,17],[5,13],[7,7],[9,4],[6,0],[10,0],[2,2],[34,28],[16,23],[9,-2],[28,-5],[7,-3],[0,-4],[-2,-3],[-10,-8],[-5,-4],[0,-7],[8,-3],[15,2],[1,0],[22,6],[6,2],[8,7],[14,11],[1,2],[7,20],[4,8],[8,1],[8,-4],[1,-1],[13,-6],[6,-25],[18,-74],[35,13],[34,13],[18,-6],[15,-5],[1,0],[13,-4],[42,-55],[43,-42],[79,-43],[14,-1],[22,0],[43,-2],[2,1],[42,23],[5,3],[14,27],[6,37],[17,81],[17,43],[19,29],[14,13],[6,5],[7,5],[23,11],[4,3],[14,13],[9,70],[-22,50],[-10,13],[-13,18],[4,14],[2,1],[2,1],[30,18],[0,2],[4,26],[8,63],[-9,10],[-6,8],[-25,19],[5,17],[2,2],[29,28],[23,21],[26,19],[23,9],[32,24],[29,22],[1,0],[19,24],[1,1],[5,2],[8,-1],[64,-27],[26,-6],[39,24],[9,6],[1,10],[0,4],[-2,8],[-1,7],[-1,7],[16,-15],[6,-6],[10,-13],[2,-13],[2,-11],[3,-23],[1,-8],[7,-44],[8,-9],[76,-45],[10,-1],[1,0],[12,-2],[72,-9],[29,11],[17,-2],[23,-5],[14,-3],[41,-8],[25,-14],[16,-2],[46,21],[11,10],[1,4],[5,36],[-9,21],[-28,32],[-5,18],[4,27],[6,8],[8,10],[18,15],[15,9],[16,9],[1,0],[5,0],[10,-2],[44,-48],[21,-17],[17,-4],[20,5],[8,-1],[9,-14],[12,-25],[-5,-37],[0,-61],[15,-21],[1,-6],[21,-27],[12,-10],[28,-8],[10,-12],[1,-49],[2,-10],[8,-11],[14,-12],[8,-13],[-9,-64],[8,-10],[32,-5],[33,1],[25,-4],[59,-27],[11,-15],[-4,-25],[3,-8],[13,-20],[9,-5],[15,-1],[24,10],[14,6],[3,1],[15,2],[32,1],[46,0],[8,0],[15,-4],[13,0],[21,11],[10,-2],[25,-25],[30,-23],[17,-8],[28,-4],[13,5],[1,1],[15,7],[12,9],[2,1],[15,1],[7,-9],[-5,-18],[0,-1],[-23,-35],[-1,-8],[6,-11],[14,-3],[11,-2],[24,4],[51,26],[2,1],[30,9],[3,1],[23,1],[32,-5],[18,-10],[5,0],[36,-2],[17,12],[18,12],[16,1],[14,1],[71,3],[33,2],[43,-7],[4,-2],[5,-3],[47,-40],[10,-14],[8,-21],[23,-31],[21,-18],[7,0],[7,5],[0,3],[1,5],[-15,28],[2,15],[13,11],[7,7],[0,1],[1,0],[29,15],[10,-11],[0,-26],[6,-15],[28,-47],[21,-29],[36,-47],[17,-30],[9,-15],[-2,-17],[-2,-1],[-8,-6],[-21,-16],[-4,-13],[8,-11],[28,-22],[11,-16],[5,-10],[-3,-20],[-5,-7],[-6,-24],[1,-4],[9,-10],[23,-3],[18,3],[96,31],[5,3],[4,4],[2,1],[1,9],[-25,38],[3,21],[30,115],[1,4],[13,10],[20,-1],[92,-22],[14,-14],[14,-37],[16,-21],[6,-8],[22,-16],[54,-27],[40,-8],[19,0],[35,-5],[43,-20],[10,-13],[0,-16],[-16,-20],[-2,-2],[-11,-13],[1,-22],[18,-18],[52,-27],[63,-18],[-9,-60],[2,-12],[15,-18],[54,-38],[9,-5],[16,-2],[19,-2],[4,-1],[18,-4],[25,-19],[13,-4],[6,-1],[1,-1],[1,1],[24,6],[28,17],[33,15],[8,0],[15,2],[5,3],[12,2],[29,-4],[44,-29],[25,-3],[26,5],[88,38],[-2,-104],[38,0],[35,0],[35,0],[54,3],[44,-7],[39,-27],[13,-6],[15,-3],[2,1],[18,6],[18,13],[10,14],[6,17],[3,21],[-1,18],[-5,17],[-18,22],[-18,13],[-25,1],[-13,-10],[-47,-38],[-4,-3],[-14,-3],[-16,2],[-16,8],[-16,23],[4,26],[7,9],[14,10],[10,8],[29,11],[37,9],[46,-2],[38,4],[25,10],[39,26],[14,2],[23,-4],[16,-18],[8,-17],[2,-22],[-5,-21],[-7,-7],[-21,-24],[-3,-21],[46,-38],[4,-3],[3,5],[21,40],[27,-19],[2,-2],[36,-24],[-3,-31],[-23,-85],[-7,-29],[3,-33],[22,-33],[11,-10],[14,-10],[24,-6],[14,2],[35,5],[13,2],[4,1],[7,6],[26,20],[28,45],[16,10],[6,5],[17,-3],[7,-5],[18,-24],[7,-29],[16,-22],[21,-5],[6,1],[6,4],[7,5],[6,9],[2,16],[-5,42],[3,25],[8,11],[5,3],[12,10],[10,2],[25,-4],[44,-58],[8,-9],[5,-6],[1,-24],[-9,-20],[-14,-21],[-13,-22],[1,-25],[7,-12],[5,-8],[19,-3],[28,-1],[30,4],[23,0],[4,-1],[14,-18],[14,-26],[7,-32],[14,-22],[1,0],[26,-4],[1,0],[20,8],[2,15],[15,8],[17,30],[0,7],[-1,24],[-2,63],[3,28],[20,4],[17,3],[35,-10],[8,-35],[2,-10],[-6,-27],[-3,-15],[-1,-44],[19,-19],[8,-9],[36,-2],[6,0],[46,28],[30,42],[37,-6],[69,-10],[47,-1],[42,-7],[46,-44],[-14,-33],[-37,-7],[-19,0],[-18,6],[-27,11],[-40,6],[-30,-9],[-12,-23],[2,-47],[1,-77],[7,-26],[19,-14],[21,-10],[25,-3],[25,0],[25,8],[19,6],[21,5],[14,4],[3,1],[13,8],[36,22],[32,17],[27,2],[8,0],[21,-7],[24,-27],[19,-32],[0,-48],[0,-41],[-16,-28],[-6,-34],[1,-3],[21,-41],[29,-24],[33,-21],[65,5],[29,23],[21,23],[-1,25],[-3,12],[-1,8],[-1,4],[25,23],[29,11],[51,15],[26,10],[12,5],[3,2],[17,13],[13,7],[4,2],[16,2],[2,0],[14,0],[6,-3],[15,-8],[30,-28],[26,-15],[19,0],[33,17],[13,18],[6,10],[0,26],[0,22],[-17,58],[-3,36],[8,6],[8,5],[35,0],[32,-7],[19,-3],[14,-1],[24,-4],[11,-2],[34,0],[9,2],[19,4],[28,34],[5,4],[21,11],[20,34],[9,15],[7,72],[11,-1],[35,-5],[44,-30],[9,-13],[16,-25],[4,-12],[5,-18],[23,-43],[-25,-32],[-1,-24],[5,-37],[43,14],[17,-20],[17,-21],[21,-18],[15,-13],[35,-29],[29,-21],[34,-46],[50,-29],[30,-30],[0,-38],[-33,-57],[-31,-68],[-18,-25],[-37,-32],[-56,-10],[-14,-3],[-5,67],[-3,24],[-9,54],[-13,23],[-21,36],[-42,34],[-44,6],[-26,1],[-7,0],[7,29],[-56,6],[-16,-21],[-10,-13],[46,-3],[-1,-1],[-12,-21],[-27,-8],[-16,-20],[-24,-7],[-20,13],[0,17],[13,13],[11,15],[-14,51],[-9,11],[-2,2],[-5,-28],[-21,-9],[-21,23],[-11,12],[-20,17],[-6,6],[-9,9],[-11,15],[-17,-15],[11,-21],[1,-8],[0,-8],[0,-10],[-1,-9],[6,4],[13,9],[21,-9],[11,-15],[13,-12],[17,-7],[19,-2],[-2,-10],[-2,-9],[-2,-12],[-2,-8],[-1,-19],[-2,-15],[0,-1],[7,-27],[22,-6],[13,6],[9,11],[36,8],[36,22],[29,10],[-13,-40],[-8,-52],[-11,-25],[-43,-16],[-53,-10],[-51,-17],[-41,-15],[-32,-24],[-39,-19],[-25,8],[-11,11],[-10,11],[-17,41],[-12,44],[-4,6],[-12,16],[-31,11],[-55,0],[-49,8],[-28,5],[-26,6],[-51,26],[-10,14],[8,39],[-4,33],[-19,28],[-15,-5],[1,-1],[10,-12],[5,-14],[2,-26],[-2,-43],[16,-24],[38,-21],[51,-20],[53,-12],[46,0],[37,-3],[12,-17],[10,-28],[8,-23],[21,-33],[11,-15],[14,-19],[16,-6],[16,-5],[30,5],[31,15],[38,27],[27,9],[29,13],[1,0],[43,7],[8,3],[34,9],[37,17],[17,31],[2,36],[4,13],[10,27],[21,24],[8,8],[32,-20],[18,-42],[4,-17],[10,-36],[-3,-19],[12,-47],[-17,2],[-42,10],[-11,-2],[-14,-2],[-36,-19],[-41,-22],[-33,-32],[-37,-26],[-21,-12],[-105,-24],[-64,-24],[-25,0],[-71,0],[-20,-15],[-10,-21],[0,-6],[-3,-29],[9,-23],[0,-22],[-30,-34],[2,-47],[16,-43],[21,-23],[1,-1],[13,17],[-13,16],[-5,15],[6,18],[4,10],[8,15],[1,47],[0,36],[-14,28],[-1,4],[-2,15],[41,7],[18,-5],[43,9],[33,10],[1,0],[28,9],[45,9],[27,6],[83,22],[38,23],[43,43],[37,28],[29,9],[18,1],[7,1],[20,-17],[-3,-20],[-3,-21],[-12,-41],[-1,-19],[0,-22],[-19,-42],[-11,-35],[7,-39],[18,-58],[-5,-92],[-3,-37],[-13,-32],[-31,-19],[-22,-55],[27,-27],[6,-6],[9,58],[36,30],[23,0],[7,1],[23,6],[40,29],[-76,-6],[3,29],[7,50],[2,20],[1,22],[-2,67],[-9,43],[-2,17],[-1,11],[18,29],[1,2],[78,-37],[28,12],[4,3],[41,35],[37,43],[20,32],[14,30],[7,26],[5,54],[17,33],[33,46],[39,47],[3,65],[-20,45],[-5,38],[-8,36],[-6,31],[1,47],[45,39],[37,20],[70,-9],[64,-13],[89,20],[70,-37],[51,-36],[2,-160],[-2,-37],[-5,-49],[-6,-50],[-4,-43],[-6,-47],[-6,-49],[-6,-51],[-5,-33],[-5,-30],[-6,-39],[-6,-39],[-5,-36],[-4,-32],[-5,-45],[-7,-38],[-8,-44],[-3,-28],[-12,-51],[-7,-74],[-8,-48],[-7,-39],[-4,-39],[-7,-42],[-15,-50],[-10,-69],[-7,-46],[-4,-30],[-4,-36],[-8,-52],[-7,-57],[-6,-74],[-1,-43],[-2,-45],[-3,-61],[-1,-57],[-1,-45],[2,-45],[-1,-49],[-1,-48],[1,-43],[2,-51],[1,-61],[1,-39],[2,-27],[4,-56],[10,-63],[7,-35],[5,-33],[4,-42],[4,-29],[17,-44],[12,-45],[12,-41],[15,-45],[10,-40],[12,-41],[5,-46],[-10,-58],[-39,-59],[-34,3],[-29,32],[-28,35],[-12,22],[-13,25],[-28,37],[-25,31],[-27,21],[-12,9],[-20,14],[-21,24],[-5,9],[-10,20],[-23,37],[-14,21],[-8,10],[-27,34],[-11,28],[-9,25],[-11,56],[0,42],[-1,15],[-2,36],[-4,35],[-5,16],[-8,23],[-15,29],[-4,27],[-13,27],[-6,15],[-8,17],[-2,34],[36,9],[39,10],[32,36],[16,53],[4,54],[0,6],[-2,29],[-1,24],[-4,15],[-6,23],[-23,36],[-14,37],[-8,3],[-12,5],[-7,3],[-7,4],[-50,28],[-18,45],[9,16],[3,7],[-24,16],[0,-1],[-6,-26],[-8,-44],[-29,-15],[-22,25],[-3,3],[5,27],[5,24],[23,32],[20,2],[20,2],[-10,58],[-36,-19],[-28,24],[-2,2],[-4,3],[-2,1],[-42,33],[-35,20],[-9,5],[-39,21],[-3,2],[-15,47],[-39,-11],[-30,-21],[-31,-22],[44,-18],[22,-26],[9,-10],[29,-19],[14,-10],[28,-3],[38,7],[16,-26],[29,-10],[-8,-37],[-26,9],[-9,-29],[17,-60],[0,-24],[0,-35],[5,-6],[20,-18],[51,-35],[52,8],[21,-4],[6,-2],[23,9],[14,5],[15,-15],[11,-10],[2,-37],[-19,-42],[-2,-10],[-3,-11],[-27,-22],[-8,1],[-11,2],[-42,-5],[17,-34],[-23,-42],[-20,-36],[-4,-9],[-10,-25],[-12,0],[-15,-1],[4,-37],[26,-32],[19,-33],[16,-13],[14,-11],[29,-24],[9,-39],[-7,-43],[2,-47],[6,-39],[7,-42],[1,-4],[12,-49],[17,-36],[7,-18],[7,-22],[17,-36],[0,-33],[-13,6],[-7,4],[-18,31],[-21,30],[-34,34],[-33,25],[-42,36],[-2,2],[-16,20],[-18,22],[-29,42],[-16,24],[-12,17],[-3,5],[-14,25],[-19,37],[-30,37],[-25,41],[-5,52],[-17,55],[-19,22],[-10,8],[-15,12],[13,-68],[-52,-4],[-27,10],[-44,11],[-44,10],[-48,0],[-39,-5],[-39,-14],[-56,-28],[-45,-40],[-21,-51],[1,-32],[2,-28],[9,-27],[6,-16],[23,-29],[18,-30],[5,-46],[-4,-19],[-2,-13],[-10,-45],[-11,-40],[-20,-44],[-26,-45],[-23,-33],[-34,-31],[-41,-7],[-39,-18],[-39,-10],[-18,19],[-22,24],[-22,41],[-12,45],[-3,30],[-4,29],[-10,47],[1,19],[0,14],[-15,38],[-22,11],[-22,10],[-21,-17],[-29,1],[-37,-5],[-7,-5],[-28,-20],[-31,-49],[-22,-30],[-5,-7],[-44,5],[-38,11],[-28,6],[-7,2],[-14,5],[-22,10],[-43,25],[-18,17],[-11,11],[-13,15],[-14,17],[-22,26],[0,13],[0,15],[31,55],[11,19],[23,54],[18,49],[1,40],[-22,33],[-40,15],[-49,0],[-34,-18],[-27,-15],[-32,-40],[-49,-10],[-20,-20]],[[44089,95125],[-11,-17],[-32,-14],[-2,-1],[-18,-8],[-22,-11],[-40,-18],[-3,0],[-4,0],[-2,0],[-6,0],[-30,12],[-14,6],[-13,5],[0,-2],[-2,-11],[-3,-30],[-2,-6],[-2,-4],[-5,-2],[-5,0],[-2,-3],[-11,-24],[-2,-4],[0,-13],[-2,-1],[-2,2],[-1,0],[-16,9],[-20,11],[-2,0],[-1,0],[-4,-5],[-5,-6],[-3,-6],[-14,-93],[0,-8],[4,-4],[28,-24],[1,-1],[4,-5],[24,-46],[13,-23],[5,-11],[0,-7],[-1,-6],[-3,-5],[-9,-8],[-8,-4],[-12,-5],[-3,-4],[-3,-11],[-9,-28],[0,-1],[10,-20],[3,-7],[17,-11],[10,-11],[1,-4],[-6,-10],[0,-6],[-5,-47],[0,-2],[4,-8],[2,-18],[7,-52],[-1,-7],[0,-1],[-1,-9],[-3,-19],[-5,-28],[-1,-6],[-3,-9],[-4,-3],[-1,-1],[-9,-5],[-28,-10],[-20,-7],[5,-8],[10,-16],[2,-2],[1,-3],[1,-8],[-5,-9],[-15,-26],[-5,-1],[-1,-1],[-5,0],[-26,-3],[-31,-22],[-13,-9],[-18,-14],[-1,-2],[-16,-47],[-6,-20],[-16,-25],[-4,-6],[-6,-3],[-18,-10],[-2,-1],[-42,-21],[-7,-3],[-8,-9],[-11,-19],[-8,-14],[-6,-10],[-1,-1],[-8,-18],[-2,-5],[2,-10],[4,-8],[0,-9],[-4,-15],[-16,-56],[-2,-4],[-13,-1],[-2,0],[-9,5],[-5,-1],[-4,-3],[-6,-4],[-4,-4],[-20,-33],[-3,-62],[0,-14],[0,-1],[-2,-4],[-6,-14],[-17,10],[-1,-18],[14,-9],[12,10],[3,2],[12,-8],[-9,-11],[-10,-6],[-8,-9],[-5,-6],[-11,-5],[-17,-7],[-19,-2],[-7,3],[-10,3],[-5,2],[-7,3],[-7,7],[-1,8],[-2,14],[-11,-14],[-5,-7],[-8,-8],[-25,-24],[-7,-8],[-6,-2],[-5,-1],[-24,0],[-12,0],[-20,9],[16,-37],[-22,-6],[-4,-1],[-23,-21],[-10,2],[-2,0],[-8,1],[-2,-5],[-10,-3],[-4,-1],[-11,-2],[-11,-10],[-13,-11],[-1,-1],[-5,-11],[0,-22],[0,-10],[-8,-8],[-1,-1],[-34,-27],[-4,-1],[-45,-15],[-12,-4],[-12,-2],[-30,-5],[-3,0],[-6,0],[-5,-3],[-8,-7],[-11,-9],[-46,-59],[-1,-8],[5,-7],[17,-8],[1,-6],[-28,-15],[-9,-3],[-1,2],[-2,17],[-11,-9],[-4,-4],[-11,-9],[-5,-6],[0,-3],[-2,-10],[-7,-47],[-34,-76],[0,-1],[-1,-3],[-7,-23],[0,-6],[1,-33],[3,-3],[0,-83],[-1,0],[-27,-26],[-44,-42],[-3,-3],[-5,-5],[-28,-26],[2,-2],[1,-1],[17,-21],[1,-12],[1,-40],[-18,-54],[-12,-64],[-5,-22],[-5,-24],[0,-1],[0,-14],[3,-15],[-3,-2],[-18,-17],[17,-6],[15,2],[6,0],[2,-2],[2,-11],[5,-21],[1,-10],[-1,-3],[-6,-11],[-18,-37],[-21,-44],[-2,-5],[-13,-27],[-1,-2],[-27,-26],[-2,-6],[6,-20],[-4,1],[-8,-16],[-2,0],[-2,2],[-2,0],[-1,-1],[-15,-15],[-18,-18],[-22,-25],[-1,-1],[-2,0],[-5,0],[-11,3],[0,-1],[-17,-52],[-2,-5],[0,-9],[-1,-7],[-5,-65],[-1,-16],[0,-4],[6,-15],[1,0],[41,-49],[1,-2],[11,-20],[17,-31],[1,-4],[13,-24],[4,-34],[1,-11],[-1,-8],[-3,-34],[-2,-32],[-1,-9],[-12,0],[-47,-58],[-2,-1],[-24,-47],[-2,-3],[-9,-11],[-6,6],[-5,-3],[-29,-20],[-38,-25],[-18,-12],[-16,-10],[-26,-22],[-27,-23],[-4,-3],[-7,-7],[-2,-3],[-8,-13],[-11,-22],[0,-2],[-3,-2],[-10,-10],[-4,-2],[-6,-3],[-11,0],[-7,2],[-4,5],[-2,2],[-3,9],[1,5],[0,5],[0,4],[-15,12],[-4,0],[-22,-1],[-2,0],[-36,-4],[-17,-7],[-1,-1],[-1,-1],[-4,-5],[-19,-16],[-4,-3],[-2,-1],[-7,1],[-3,4],[-18,13],[-12,-18],[-3,-5],[-6,-13],[-18,0],[12,-13],[-14,-10],[-16,-3],[-10,13],[-6,3],[-7,2],[-1,-1],[-14,-7],[-19,-2],[-4,0],[-17,-6],[-16,-5],[-13,7],[-13,2],[-13,-5],[-9,16],[-18,4],[-16,-9],[-10,-17],[-12,-13],[-15,-11],[-14,-10],[-17,-12],[-13,-8],[-8,-13],[-15,-4],[-19,10],[-12,13],[-3,1],[-11,1],[-16,4],[-10,11],[-15,12],[-13,-5],[-15,-8],[-15,2],[-11,10],[-15,13],[-9,-12],[-4,-21],[-19,-2],[-16,-5],[-2,-1],[-3,6],[-4,7],[-15,15],[-8,-10],[-8,-9],[-12,15],[-2,2],[-1,-2],[-10,-10],[-9,-16],[-23,-15],[-17,-1],[-12,9],[-12,17],[-15,16],[-17,8],[-19,6],[-45,10],[-1,0],[-19,-10],[-12,-23],[-10,-12],[-5,-20],[-1,-6],[-4,-28],[-10,-16],[-17,-9],[-28,-8],[-14,-4],[-10,-12],[-21,2],[-15,-6],[-14,5],[-12,-9],[-18,5],[-16,-4],[-4,5],[-6,10],[-15,-3],[-12,11],[-10,-15],[-14,8],[-5,-3],[-7,-4],[-16,-9],[-14,2],[-14,9],[-19,-24],[-13,-11],[-26,-10],[-15,-12],[-11,-17],[-3,-17],[-9,-12],[-5,-16],[-11,-31],[-10,-21],[-19,-6],[-13,-2],[-24,-2],[-17,2],[-13,5],[-17,4],[-9,-11],[-14,-2],[-13,6],[-13,6],[-12,8],[-7,-18],[-13,7],[-17,-2],[-16,4],[0,-19],[4,-15],[-7,-18],[-16,11],[-16,-2],[-12,-17],[-27,10],[-15,-6],[-17,-11],[-11,-9],[-14,0],[-12,13],[-18,-10],[-5,-19],[-13,5],[0,26],[0,22],[-12,7],[-15,-7],[-2,-21],[-13,-15],[-15,-12],[-7,-18],[-14,6],[-12,-11],[11,-11],[15,-13],[-14,-3],[-15,2],[-10,-20],[-1,-17],[-13,-14],[1,-16],[-6,-6],[-8,-7],[-14,-9],[-19,-18],[-16,-28],[-12,-12],[-9,-7],[-5,-4],[-20,-17],[-3,0],[-18,4],[-14,-8],[-3,-19],[0,-4],[-2,-14],[-7,-4],[-6,-3],[-18,-2],[-10,-16],[-14,0],[-11,-14],[-15,-6],[-18,-5],[-16,-17],[-14,-8],[-19,-11],[-12,12],[-5,15],[-17,-6],[-13,-7],[-23,1],[-13,4],[-20,12],[-16,16],[-12,6],[-16,2],[-16,3],[-15,-8],[-16,5],[-18,9],[-10,-15],[-16,-14],[-26,-35],[-15,-10],[-8,-17],[-29,5],[-22,4],[-18,4],[-16,-3],[-27,-14],[-25,-3],[-22,-10],[-15,-13],[-13,-17],[-11,-14],[-14,-12],[-15,-12],[-19,-19],[-13,-21],[-20,-24],[-12,-12],[-14,-11],[-5,-3],[-17,-4],[-12,-9],[-9,-20],[-19,-4],[-17,3],[1,4],[1,18],[-16,0],[-13,-14],[-15,-16],[-12,-9],[-11,-8],[-9,-14],[8,-16],[11,-7],[6,-6],[7,-8],[-4,-15],[-6,-13],[0,-1],[-1,-13],[-1,-8]],[[39303,90541],[-64,0],[-194,-7],[-6,0],[-32,0],[-30,1],[-123,2],[3,81],[0,40],[0,107],[-1,188],[-1,35],[-142,0],[-66,0],[-233,-1],[0,31],[0,49],[0,97],[0,102],[0,77],[0,115],[0,196],[-38,0],[-106,0],[-77,0],[-102,-1],[-35,0],[-113,0],[-143,-3],[-267,-5],[-1,30],[0,6],[0,36],[0,74],[-1,55],[0,2],[0,43],[0,28],[-1,25],[-2,173],[0,85],[-1,66],[-1,51],[-1,67],[0,43],[-1,91],[0,4],[-1,30],[-100,1],[-119,1],[-126,-3],[-52,-1],[-47,-1],[-1,35],[0,60],[-2,130],[-189,0],[-83,-1],[-56,0],[-26,2],[-28,-1],[-58,-1],[-62,0],[-29,0],[-40,-1],[-88,0],[-118,0],[-101,2],[-1,64],[-3,247],[-1,19],[-1,30],[-4,90],[0,30],[0,120],[0,56],[0,91],[0,27],[0,85],[0,86],[0,39],[0,81],[0,54],[-47,1],[-161,3],[-30,0],[-140,0],[-43,1],[-72,3],[-100,3],[-38,1],[-17,1]],[[36433,95532],[17,0],[80,-5],[25,-1],[86,0],[23,-1],[142,-7],[146,-9],[16,-1],[13,0],[16,-1],[147,-8],[272,-16],[3,0],[229,-13],[70,-4],[47,-3],[133,-7],[45,-3],[14,0],[83,-4],[37,-2],[192,-9],[46,-2],[229,-12],[233,-11],[51,-3],[73,-4],[21,-1],[82,-4],[44,-3],[80,-4],[75,-4],[23,-1],[76,-4],[23,-1],[22,-2],[233,-16],[148,-9],[103,-6],[22,-1],[20,-1],[62,-4],[76,-4],[99,-5],[58,-3],[73,-3],[73,-5],[33,-1],[215,-12],[98,-6],[52,-3],[32,-2],[25,-2],[48,-3],[73,-4],[141,-10],[5,0],[154,-10],[15,-1],[26,-2],[39,-3],[163,-13],[133,-11],[85,-3],[10,-1],[8,0],[99,-4],[86,-3],[53,-2],[149,-4],[2,0],[215,-5],[76,-3],[91,-4],[81,-3],[223,-9],[52,-2],[1,-1],[31,-1],[3,0],[44,-2],[71,-4],[127,-8],[30,-2],[28,-1],[18,-1],[28,-2],[96,-6],[140,-9],[218,-13],[27,-2],[22,-1],[118,-6],[25,-1],[32,-2],[162,-7],[72,-5]],[[47708,94923],[-1,-232],[-2,-149],[-3,-329],[1,-16],[1,-105],[0,-27],[0,-22],[2,-71],[-1,-4],[-1,-15],[28,-2],[3,0],[3,-4],[7,-11],[14,-9],[4,-20],[-8,-14],[-7,-15],[9,-15],[-4,-16],[-2,-10],[5,-19],[1,-18],[13,-16],[11,-16],[3,-16],[1,-20],[2,-19],[-3,-19],[-1,-10],[-1,-13],[3,-11],[2,-6],[-1,-16],[-12,-9],[-2,-20],[8,-12],[3,-19],[5,-18],[13,-14],[5,-6],[4,-6],[8,-14],[12,-14],[14,-15],[9,-16],[2,-16],[0,-20],[-3,-16],[-3,-7],[-4,-8],[-10,-13],[-4,-25],[15,-5],[12,-9],[6,-14],[6,-25],[10,-15],[11,-13],[0,-15],[-1,-5],[7,-2],[9,-2],[10,-18],[1,-3],[7,-12],[3,-11],[3,-8],[8,-13],[21,-14],[4,-3],[10,-8],[10,-6],[5,-3],[14,-10],[11,-10],[25,-21],[10,-10],[11,-13],[12,-16],[9,-14],[8,-14],[-2,-18],[-7,-13],[-18,-5],[-9,14],[-7,19],[-12,7],[-14,-9],[-15,-12],[-14,-7],[-1,0],[0,-2],[-4,-21],[2,-18],[-3,-20],[8,-18],[2,-16],[0,-16],[0,-3],[10,-19],[13,-20],[9,-20],[3,-18],[0,-16],[-1,-16],[-2,-20],[-10,-15],[11,-25],[11,-11],[3,-3],[10,-10],[7,-14],[1,-2],[3,-22],[9,-32],[10,-17],[6,-24],[15,-7],[1,-1],[3,-3],[-3,0],[-19,0],[-97,-1],[-58,-1],[-21,0],[-43,0],[-17,0],[-21,0],[-21,0],[-158,0],[-74,0],[-89,0],[-53,0],[-39,0],[-3,0],[-62,0],[-14,0],[-47,1],[-2,-53],[0,-1],[-1,-19],[1,-77],[-1,-71],[2,-174],[0,-22],[0,-24],[-1,-61],[-1,-40],[0,-16],[0,-22],[0,-5],[0,-16],[-1,-43],[0,-30],[0,-22],[-1,-51],[0,-5],[0,-12],[-1,-41],[0,-2],[-1,-74],[0,-24],[-39,-40],[-30,-31],[-17,-18],[-33,-33],[-28,-29],[-61,-63],[-92,-94],[-87,-89],[-46,-46],[-4,-5],[-1,-86],[-1,-181],[0,-61],[0,-2],[-1,-98],[-3,-375],[0,-6],[-3,-103],[-2,-20],[-3,-15],[-1,-48],[0,-30],[-2,-72],[1,-231],[0,-159],[0,-5],[0,-30],[0,-98],[0,-64],[0,-47],[0,-117],[2,-161],[1,-54],[-1,-109],[0,-10],[0,-28],[2,-26],[1,-36],[-1,-60],[1,-148]],[[46812,88771],[-76,-1],[-152,-1],[-169,0],[-49,0],[-48,0],[-54,-1],[-101,4],[-43,-1],[-84,1],[-125,0],[-34,0],[-16,0],[-5,0],[-20,0],[-27,2],[-14,0],[-123,1],[-16,-1],[-22,0],[-58,2],[-73,0],[-28,0],[-36,0],[-64,0],[-14,0],[-62,0],[-47,0],[-37,0],[-16,-2],[-60,1],[-112,-1],[-195,4],[-76,1],[-18,0],[-75,0],[-1,0],[-28,1],[-5,31],[-6,29],[-29,152],[-18,96],[-7,35],[-21,109],[-29,-1],[-54,-4],[-14,0],[-23,0],[-33,0],[-67,0],[-22,0],[-14,0],[-20,0],[-26,1],[-80,0],[-79,1],[-42,0],[-63,0],[-28,3],[-16,-1],[-19,0],[-16,0],[-15,0],[-13,-1],[-19,0],[-38,-1],[-18,0],[-95,0],[-2,0],[-24,3],[-36,-3],[-17,1],[-51,0],[-39,0],[-21,-1],[-22,0],[-171,3],[-70,-2],[-2,0],[-123,-1],[-174,1],[-20,-1],[-33,0],[-21,2],[-52,0],[0,-11],[-73,0],[-151,-2],[-20,0],[-16,0],[-28,0],[-34,-1],[-130,-1],[-64,-1],[-38,0],[-5,0],[-52,0],[-46,-1],[-15,0],[-3,0],[-32,0],[-79,-1],[-121,-1],[-11,0],[-41,0],[-368,-3],[-248,-2],[-20,0],[-59,0],[-21,-1],[-47,0],[-197,-2],[-44,0],[-26,-1],[-82,-1],[-60,-1],[-469,-5],[-63,-1],[-128,-1],[-38,-1],[-38,0],[-44,-1],[-35,0],[-81,-1],[-94,-1],[-117,-3],[-46,-4],[-18,0],[-13,0],[-30,-1],[-87,0],[-37,0],[-150,0],[-100,-1],[-161,0],[-268,-1],[-160,0],[-95,1]],[[38424,89181],[9,6],[14,11],[3,2],[1,12],[1,7],[0,2],[-1,4],[-5,9],[1,5],[1,10],[30,59],[10,19],[14,19],[21,22],[12,14],[29,29],[6,11],[5,8],[5,9],[1,1],[4,25],[1,5],[-2,1],[-3,5],[-10,13],[-4,5],[-1,16],[-1,13],[-5,7],[-3,0],[-2,0],[-1,0],[-24,-6],[-3,0],[-21,2],[-9,1],[-3,1],[-14,7],[-14,14],[-36,48],[-26,36],[-6,14],[-1,26],[2,1],[5,4],[10,7],[10,7],[12,9],[10,5],[51,26],[2,1],[18,7],[16,-2],[15,-3],[10,6],[1,3],[7,21],[1,5],[2,7],[7,23],[1,4],[3,16],[4,30],[13,10],[33,26],[6,5],[15,10],[29,20],[5,3],[7,5],[2,1],[21,9],[11,4],[3,1],[15,-2],[2,0],[39,3],[12,8],[1,2],[5,17],[5,17],[6,20],[5,16],[1,2],[-10,32],[0,1],[2,19],[1,1],[17,27],[4,5],[10,12],[1,6],[2,13],[1,10],[-1,6],[-4,16],[6,9],[1,0],[3,41],[6,5],[5,0],[14,0],[22,-15],[11,-7],[22,-3],[1,-1],[2,-4],[10,-24],[6,-6],[21,-5],[8,4],[9,4],[7,6],[10,8],[38,46],[18,26],[10,14],[8,20],[-4,6],[-18,22],[5,37],[7,21],[1,2],[9,7],[11,10],[2,2],[20,14],[46,32],[33,22],[55,35],[1,1],[13,10],[5,10],[36,17]],[[44089,95125],[18,0],[167,-6],[185,-8],[54,-3],[347,-20],[93,-5],[73,-5],[118,-7],[101,-5],[43,-3],[56,-3],[156,-9],[262,-15],[2,0],[54,-3],[37,-2],[59,-3],[38,-2],[32,-2],[23,-1],[24,-2],[15,0],[19,-1],[16,-1],[82,-5],[86,-7],[35,-3],[38,-3],[16,-2],[18,-1],[33,-3],[38,-2],[160,-8],[117,-6],[145,-5],[25,-1],[82,-6],[39,-2],[28,-2],[22,0],[52,-4],[23,-2],[15,0],[22,-2],[33,-2],[27,-2],[37,-2],[26,-1],[38,-2],[29,-2],[21,-1],[100,-5],[49,-4],[38,-2],[30,-2],[29,-2],[80,-5],[14,0]],[[52913,94600],[-4,-88],[-3,-105],[102,-8],[0,-42],[0,-72],[0,-39],[0,-17],[1,-31],[-3,-72],[0,-7],[0,-62],[-2,-59],[2,-23],[3,-135],[0,-5],[3,-122],[-1,-136],[0,-47],[-25,3],[-50,-1],[-80,0],[-62,-1],[1,-33],[-1,-18],[0,-20],[-6,-155],[-49,2],[-13,0],[-153,-1],[0,-11],[0,-49],[0,-35],[2,-44],[0,-3],[0,-1],[0,-13],[-1,-71],[-42,-1],[-54,1],[-26,0],[-85,1],[-55,0],[-181,1],[0,-53],[0,-54],[1,-122],[-98,0],[-78,0],[-57,0],[-41,0],[-15,0],[-20,0],[-6,1],[-108,0],[-14,-1],[0,-29],[-1,-38],[0,-21],[0,-23],[0,-27],[0,-92],[-102,-1],[-144,0],[-35,0],[-12,-22],[0,-1],[-1,-2],[-6,-8],[-66,-94],[-4,-5],[-18,-17],[-37,-78],[-2,-10],[8,-81],[0,-1],[0,-1],[13,-28],[2,-4],[-3,-9],[-3,-8],[3,-10],[0,-3],[10,-35],[0,-1],[-12,-39],[-11,-40],[-1,-1],[7,-2],[51,-15],[62,-8],[2,-1],[8,-69],[0,-5],[0,-1],[-1,-1],[-3,-4],[-4,-4],[-2,-1],[-7,-9],[-3,-8],[-1,-1],[-2,-32],[2,-5],[10,-24],[-8,-58],[0,-5],[-5,-35],[27,-40],[16,-24],[2,-4],[10,-59],[1,-10],[5,-30],[-5,-6],[-1,-1],[-15,-12],[-1,-1],[-18,-19],[-17,-63],[-1,-6],[0,-2],[0,-2],[5,-37],[16,-57],[1,0],[44,0],[0,-41],[0,-42],[0,-2],[0,-5],[1,-3],[16,-74],[1,-8],[1,-28],[0,-3],[0,-1],[-2,-3],[-2,-4],[-7,-6],[-4,-5],[-8,-9],[-33,-29],[-24,-21],[-25,-22],[-29,-26],[-15,-13],[-46,-33],[-6,-4],[-1,-1],[-27,-18],[-7,-5],[-1,-1],[-2,-1],[-9,-19],[-16,-34],[-6,-12],[-5,-15],[-9,-14],[-22,-23],[-1,0],[-6,-5],[-2,-6],[-4,-20],[-6,-6],[-17,-8],[-9,-4],[-1,-1],[-28,-29],[-4,-5],[-8,-17],[0,-1],[0,-1],[0,-8],[6,-21],[-4,-29],[-10,-74],[-6,-16],[-26,-38],[-12,-16],[0,-1],[0,-20],[0,-1],[-15,-81],[-3,-13],[-7,-11],[-6,-12],[-8,-4],[-1,-1],[-1,-1],[-56,-25],[-41,-14],[-6,-2],[-36,-6],[-5,2],[-1,0],[-16,14],[-6,1],[-1,0],[0,1],[-29,5],[-28,-7],[-60,-14],[-4,-4],[-1,-3],[0,-3],[-2,-7],[-3,-8],[-8,-8],[-7,-5],[-6,-1],[-18,6],[-4,2],[-15,8],[-12,6],[-6,6],[-12,11],[0,1],[-9,11],[-6,15],[0,1],[1,7],[6,11],[3,18],[3,24],[0,1],[0,1],[0,13],[-2,5],[-6,6],[-14,8],[-12,5],[-4,-2],[-15,-5],[-5,-3],[-3,-3],[-6,-12],[-1,-9],[0,-1],[0,-7],[-2,-9],[0,-2],[-35,-65],[-9,-8],[0,-1],[-14,-1],[-5,3],[-6,0],[-8,-5],[-10,-10],[-65,-61],[0,-1],[-5,-8],[-8,-35],[-3,-14],[-22,-29],[-24,-31],[-2,-2],[27,-36],[0,-9],[4,-50],[0,-1],[14,-65],[1,-1],[4,-19],[1,-2],[13,-18],[5,-10],[1,-39],[-1,-6],[-12,-31],[-5,-4],[0,-1],[15,-36],[68,-16],[35,-75],[0,-4],[-1,-2],[0,-21],[11,-30],[3,-2],[25,-14],[1,-7],[5,-27],[1,-1],[1,-2],[0,-1],[6,-5],[14,-15],[13,-1],[39,-19],[8,-13],[-3,-24],[-3,-25],[-13,-47],[-5,-17],[-2,-5],[-44,-73],[-1,-1],[-1,-1],[-2,-1],[-17,-1],[-10,1],[-5,-3],[-79,-53],[-4,0],[-1,0],[-57,6],[-2,0],[-10,14],[-12,12],[-40,10],[-10,0],[-40,-9],[-12,-6],[-65,-62],[0,-1],[-4,-14],[0,-5],[3,-29],[7,-47],[16,-17],[7,-22],[-25,-14]],[[50173,89231],[-11,-56],[-20,-11],[-22,-24],[-3,-2],[-24,-31],[-28,-38],[-13,-19],[0,-12],[-42,-54],[-5,-7],[-21,-26],[-13,-17],[-11,-14],[-5,-6],[-19,-24],[-6,-8],[-4,-5],[-3,-3],[-50,-32],[-1,0],[-25,-10],[-53,-8],[-6,0],[-56,-21],[-6,-21],[-1,-1],[-4,-4],[-90,-45],[0,-1],[-1,0],[-42,-6],[-10,-2],[-56,-9],[-48,-15],[-2,-1],[-18,-1],[-3,0],[-9,1],[-25,2],[-21,3],[-4,-1],[-32,-23],[-4,-8],[0,-4],[0,-3],[-1,-6],[-1,-6],[-5,-7],[-45,-27],[-5,-2],[0,-1],[-13,0],[-8,-4],[-48,-31],[-55,-57],[-1,-1],[-5,-6],[-3,-7],[0,-1],[-5,-27],[-2,-8],[4,-11],[1,-1],[1,-7],[-5,-11],[0,-1],[-1,-1],[-23,-27],[-3,-5],[-4,-3],[-3,-3],[-31,-21],[-8,-6],[-8,-5],[-7,0],[-34,2],[-47,-3],[-39,-27],[-34,-24],[0,-2],[-9,-56],[-1,-8],[-7,-47],[1,-26],[9,-10],[0,-1],[0,-12],[-5,-12],[-19,-27],[-8,-5],[-7,-4],[-18,-8],[-11,-14],[-1,0],[-4,-8],[-1,-9],[33,-27],[8,-4],[22,-10],[3,-2],[-1,-32],[-10,-90],[-8,-40],[-4,-4],[-30,-40],[0,-1],[-36,-43],[-4,-5],[0,-1],[-14,-43],[16,-52],[-4,-17],[-5,-17],[6,-23],[-8,-29],[-26,-21],[-13,-18],[3,-6],[5,-14],[6,-19],[-18,-23],[-25,-17],[-21,2],[-12,9],[-28,11],[-17,4],[-29,6],[-18,1],[-8,1],[-29,-11],[-34,-12],[-29,-12],[-25,-13],[-21,-12],[-15,-20],[-5,-6],[7,-39],[-12,-54],[-4,-19],[-7,-13],[-1,-6],[-23,-31],[-36,-51],[-1,-39],[3,-27],[-4,-24],[-3,-17],[1,-29],[-1,-21],[-13,-4],[-15,-16],[-36,-42],[-4,-20],[4,-19],[7,-14],[8,-17],[12,-25],[-16,-11],[-15,-7],[-16,-6],[-37,-14],[-11,-11],[-17,-15],[-30,-12],[-14,-9],[-2,-1],[-10,-8],[-6,-26],[3,-12],[4,-19],[7,-29],[6,-10],[18,-17],[4,-4],[16,-7],[6,-5],[1,-4],[0,-1],[0,-8],[0,-8],[0,-4],[-13,-29],[-6,-8],[-9,-13],[0,-1],[-2,-10],[-5,-11],[-29,-38],[-2,-3],[-48,-84],[0,-1],[-17,-41],[-11,-26],[0,-1],[0,-1],[-3,-8],[-3,-49],[0,-2],[-5,-42],[-11,-26],[-24,-40],[-5,-9],[-12,-20],[-14,-22],[-3,-29],[-33,-37],[-15,-17],[-10,-13],[-3,-4],[-12,-15],[-10,-13],[-1,-8],[0,-8]],[[47909,86016],[-3,-6],[-11,-30],[-6,-54],[-2,-56],[-30,4],[-40,24],[10,13],[5,5],[8,10],[6,16],[5,11],[0,1],[-12,30],[-2,4],[-1,10],[-5,32],[-25,23],[-2,1],[2,4],[11,32],[4,11],[0,72],[-15,16],[-16,16],[-12,-66],[-7,-30],[-23,-18],[-4,45],[-19,36],[-32,-23],[15,-57],[-36,-32],[-53,-1],[-2,31],[-32,20],[-37,44],[-44,-9],[-23,-5],[-38,6],[-36,-14],[-27,22],[-36,30],[5,-44],[-38,0],[-26,-32],[-35,24],[-42,13],[-43,-9],[-35,1],[-30,-16],[-44,-10],[-71,0],[-43,-16],[-29,-10],[-41,-36],[-38,-1],[-31,21]],[[46803,86069],[1,104],[0,204],[-1,109],[0,48],[1,211],[0,93],[0,173],[-1,63],[1,263],[0,20],[0,15],[2,129],[1,10],[0,26],[-3,33],[0,218],[0,36],[0,9],[1,166],[0,52],[1,46],[2,117],[1,109],[0,86],[-1,180],[4,32],[1,53],[-1,51],[0,46]],[[47708,94923],[19,-2],[35,-2],[44,-3],[1,0],[143,-9],[176,-12],[71,-3],[58,-3],[35,-2],[28,-2],[37,-3],[49,-3],[37,-3],[27,-1],[50,-3],[29,-1],[49,-3],[64,-3],[33,-2],[147,-9],[93,-6],[107,-6],[132,-7],[26,-1],[14,0],[23,-1],[3,-1],[36,-2],[3,0],[26,-1],[23,-1],[14,0],[18,-2],[23,-1],[4,0],[28,-1],[25,-2],[29,-3],[83,-5],[112,-8],[45,-2],[74,-5],[33,-3],[61,-4],[143,-9],[25,-2],[32,-2],[19,-2],[14,0],[21,-1],[37,-2],[45,-3],[18,-1],[48,-3],[15,-1],[16,-3],[50,-3],[131,-8],[28,-1],[48,-3],[14,-1],[99,-7],[55,-2],[39,-3],[93,-5],[69,-5],[47,-3],[19,-1],[12,0],[20,-2],[33,-2],[1,0],[30,-1],[61,-4],[19,0],[63,-6],[11,0],[84,-6],[114,-7],[43,-3],[108,-6],[186,-13],[108,-5],[165,-9],[34,-3],[417,-28],[1,0],[131,-9],[41,-3],[57,-4],[141,-7],[33,-3]],[[56887,94340],[7,-20],[88,-31],[4,1],[5,4],[0,1],[2,6],[7,10],[0,1],[14,2],[2,-1],[66,-4],[1,0],[2,0],[4,-8],[2,-21],[3,-9],[3,-6],[8,-5],[105,-10],[68,4],[44,3],[19,-3],[21,-6],[12,-8],[1,-1],[6,-5],[3,-6],[0,-2],[-2,-5],[-5,-10],[0,-1],[0,-12],[1,-9],[2,-7],[3,-3],[12,-15],[7,-4],[3,-2],[2,-1],[8,-5],[5,-5],[25,-110],[0,-14],[-7,-25],[-3,-7],[0,-19],[0,-1],[0,-1],[7,-25],[57,-115],[24,-50],[0,-1],[29,-67],[1,-1],[30,-91],[1,-13],[-2,-4],[-7,-6],[-18,-7],[-28,-1],[-6,-2],[-5,-6],[-8,-16],[-1,-1],[-7,-20],[-2,-20],[1,-18],[1,-4],[4,-13],[13,-31],[15,-25],[7,-14],[0,-2],[1,-16],[-2,-6],[-4,-7],[-9,-11],[-21,-21],[0,-5],[3,-13],[2,-10],[33,-30],[17,-9],[6,-6],[4,-8],[1,0],[0,-1],[15,-47],[2,-7],[0,-35],[-1,-1],[0,-2],[-5,-5],[-25,-4],[-6,-4],[-10,-8],[-6,-13],[-8,-44],[0,-14],[0,-5],[12,-12],[73,-47],[11,-10],[4,-5],[7,-10],[1,-1],[71,-104],[31,-155],[10,-76],[0,-1],[3,-3],[5,-4],[18,4],[1,0],[7,-6],[5,-6],[3,-5],[25,-88],[1,-27],[-2,-18],[-3,-7],[-3,-3],[-9,0],[-20,21],[-5,2],[-6,-2],[-5,-6],[-1,-1],[-17,-42],[0,-35],[31,-49],[13,-19],[3,-8],[1,-11],[-1,-6],[-22,-34],[-1,-2],[-2,-8],[0,-6],[0,-11],[3,-15],[4,-42],[0,-3],[0,-68],[0,-2],[-12,-65],[0,-1],[-8,-54],[0,-2],[-1,-9],[-1,-9],[0,-25],[2,-136],[7,-6],[6,-2],[3,-1],[8,-2],[49,-8],[87,-32],[9,-4],[39,-14],[22,-11],[60,-58],[3,-3],[25,-40],[2,-7],[7,-42],[0,-5],[-4,-46],[-12,-5],[-10,-10],[-10,-12],[-9,-12],[-6,-12],[0,-10],[3,-12],[7,-16],[4,-4],[27,-60],[-1,-1],[-1,-74],[0,-2],[0,-2],[-1,-7],[-13,-88],[19,-57],[8,-28],[5,-16],[-1,-24],[-3,-6],[-5,-2],[-23,4],[-1,0],[-8,-1],[-3,-3],[-4,-4],[-3,-8],[1,-13],[1,-2],[54,-66],[15,-13],[5,-5],[10,-3],[4,2],[13,20],[4,11],[9,8],[0,1],[1,0],[10,8],[8,2],[1,1],[16,1],[11,-5],[2,-1],[0,-1],[24,-20],[8,-9],[-1,-18],[-4,-18],[0,-25],[3,-14],[8,-20],[6,-11],[6,-2],[2,0],[6,-1],[5,1],[4,6],[3,23],[2,5],[7,7],[23,7],[1,0],[89,22],[9,1],[6,-5],[13,-12],[4,-4],[12,-10],[13,-8],[21,-11],[2,-1],[67,-29],[3,-1],[39,-14],[7,-4],[4,-5],[0,-1],[0,-1],[1,-7],[-3,-8],[-1,-2],[-1,-9],[0,-10],[32,-87],[3,-6],[12,-28],[1,-2],[-14,-61],[8,-4],[49,-27],[7,-51],[14,-38],[4,-18],[5,-21]],[[58710,90494],[-3,-15],[-9,-62],[-6,-43],[-22,12],[-15,19],[-17,36],[-12,38],[0,1],[-4,-2],[-24,-15],[-76,-49],[-52,-40],[-31,-28],[-16,-21],[-1,-3],[-2,-14],[-1,-8],[0,-71],[-6,-124],[-1,-6],[0,-2],[-3,-29],[-4,-42],[34,-11],[-9,-55],[0,-1],[-10,-5],[-30,-14],[-14,-7],[-4,-2],[-24,-8],[-1,0],[-2,0],[-20,3],[-8,10],[-2,3],[-1,6],[-16,16],[-19,3],[-12,2],[-12,1],[-8,-1],[-21,-4],[-1,0],[-17,-8],[-3,-3],[-1,-1],[-1,-1],[-10,-9],[-5,-8],[-18,-30],[-7,-12],[0,-3],[-4,-24],[1,-5],[19,-94],[2,-6],[8,-23],[27,-43],[8,-25],[-2,-15],[-2,-4],[-5,-10],[-3,-7],[-10,-10],[-27,-32],[-12,-18],[-14,-29],[-8,-23],[-1,-1],[-2,-18],[-1,-6],[3,-10],[2,-12],[43,-67],[13,-25],[-2,-13],[-1,-9],[-1,-5],[-11,-26],[-14,-29],[-5,-4],[-12,-10],[-4,-3],[-4,-1],[-21,-8],[-86,-42],[-1,-1],[-37,-22],[-3,-2],[-4,-4],[-18,-18],[-16,-16],[0,-1],[-23,-33],[-6,-9],[-7,-14],[-21,-40],[-3,-4],[0,-1],[-7,-37],[0,-1],[1,-1],[19,-43],[2,-22],[-2,-33],[-59,-137],[-3,-7],[-2,-4],[-17,-32],[-17,-36],[-12,-25],[-1,-28],[0,-1],[11,-15],[6,-6],[5,-4],[10,-10],[5,-10],[5,-8],[-1,-18],[0,-1],[0,-1],[-14,-11],[-1,-2],[-5,-1],[-24,-6],[-22,0],[-8,0],[-61,6]],[[57706,88571],[-20,0],[-15,-5],[-75,0],[-144,-2],[-103,0],[-30,-1],[-45,-1],[-41,2],[-63,1],[-37,2],[-24,1],[-154,3],[-103,0],[-82,-1],[-160,0],[-21,0],[-23,0],[-166,-1],[-62,0],[-52,0],[-6,0],[-36,0],[-115,-1]],[[56129,88568],[-102,-8],[-123,2],[-313,6],[-38,0],[-210,-5],[-13,-1],[-81,1],[-19,0],[-22,1],[-14,0],[-29,1],[-92,0],[-22,0],[-68,0],[-10,0],[-27,0],[-36,0],[-67,0],[-30,0],[-27,0],[1,113],[0,39],[2,96],[0,20],[2,185],[0,19],[1,206],[-57,0],[-276,0],[-26,0],[-50,-2],[-106,0],[-193,-2],[-98,0],[-20,0],[-21,-1],[-168,0],[-21,0],[-2,0],[-35,0],[-62,0],[-13,0],[-41,0],[-22,0],[-8,0],[-71,0],[-8,0],[-23,0],[-130,0],[-64,0],[-18,0],[-16,0],[-174,-2],[-99,-1],[-26,0],[-19,0],[-186,3],[-29,1],[-91,1],[-27,0],[-7,0],[-7,0],[-27,0],[-1,0],[-23,0],[-16,0],[-28,-1],[-12,0],[-71,-1],[-90,-1],[-179,-1],[-128,-1],[-57,0],[-41,0],[-196,-1],[-65,-1],[-35,2],[-35,-2],[-14,0],[-39,0],[-83,2],[-156,4],[-127,-1],[-27,0],[-14,0],[-1,0],[-78,-1],[-49,-1],[-16,0],[-93,-1],[-51,0],[-75,-1],[-30,0],[-58,-1],[-25,0],[-44,0],[-199,-1],[-45,0],[-26,0],[-91,0],[-10,0],[-50,-1]],[[52913,94600],[152,-8],[32,-2],[44,-3],[21,-1],[230,-14],[123,-7],[53,-3],[67,-4],[58,-3],[68,-4],[135,-8],[200,-12],[90,-5],[65,-4],[132,-8],[140,-12],[123,-11],[42,-3],[74,-5],[189,-12],[91,-6],[11,-1],[117,-6],[66,-4],[14,-1],[19,-1],[26,-3],[15,1],[114,-8],[219,-16],[112,-7],[71,-3],[140,-10],[61,-5],[119,-7],[79,-6],[36,-3],[89,-6],[34,-3],[26,-1],[62,-5],[1,0],[252,-18],[26,-1],[86,-6],[22,-2],[10,-1],[18,-2]],[[65044,93773],[-2,-2],[-12,-20],[-14,-22],[-4,-4],[-8,-1],[-24,4],[-12,3],[-4,4],[-10,12],[-5,6],[-3,-14],[5,-16],[1,-4],[5,-14],[2,-4],[0,-1],[0,-17],[-6,-6],[-35,-31],[-6,-3],[-19,-1],[-6,-3],[-52,-63],[4,-29],[9,-4],[8,-8],[0,-1],[4,-5],[0,-10],[0,-1],[-1,-2],[-14,-55],[-4,-11],[-10,-19],[-1,-2],[-16,-17],[-3,-2],[-44,-29],[-2,-2],[-23,-12],[-6,-3],[-18,-8],[-31,-11],[-2,-1],[-9,-4],[-4,-5],[-1,-1],[0,-1],[-4,-8],[-1,-17],[3,-5],[4,-5],[1,-2],[8,-2],[4,2],[1,9],[0,1],[4,10],[4,5],[1,1],[8,1],[4,-4],[2,-2],[0,-13],[-4,-12],[-6,-11],[-6,-10],[-29,-29],[-11,-5],[-48,-26],[-52,-31],[-3,-10],[3,-17],[3,-8],[33,-47],[16,-87],[14,-42],[3,-5],[29,-31],[2,-2],[27,-20],[6,-5],[29,-139],[0,-9],[-2,-4],[-24,-11],[-8,-3],[-6,-2],[-9,-1],[-23,-4],[-23,-2],[-73,16],[0,-1],[-8,-8],[-2,-7],[0,-1],[-8,-64],[1,-5],[4,-9],[0,-1],[0,-1],[53,-104],[0,-1],[6,-8],[7,-4],[6,0],[10,6],[2,4],[2,19],[15,26],[1,0],[4,5],[6,3],[8,2],[3,-1],[8,-8],[2,-8],[19,-107],[4,-26],[11,-65],[6,-32],[2,-14],[90,28],[1,0],[2,-2],[26,-40],[2,-4],[1,-8],[0,-1],[-7,-14],[-3,-4],[-18,-20],[-2,-3],[-1,-2],[-5,-8],[-3,-7],[-1,-4],[-1,-18],[0,-3],[8,-13],[12,-9],[15,-9],[4,0],[0,-4],[-9,-33],[0,-1],[-1,-8],[54,-29],[0,-1],[1,0],[10,-5],[9,-3],[3,0],[13,-1],[23,2],[7,-4],[3,-5],[4,-12],[0,-19],[-1,-45],[-1,-1],[0,-1],[-22,-11],[-18,-2],[-24,5],[8,-48],[17,-16],[3,-4],[1,-8],[-16,0],[-5,-2],[-7,-6],[0,-2],[1,-10],[1,-4],[0,-1],[23,-24],[9,-9],[1,-1],[5,-3],[26,-13],[13,-6],[21,-7],[6,-2],[35,-8],[33,-8],[7,-1],[1,0],[71,-15],[3,0],[14,2],[2,0],[28,10],[10,2],[8,-3],[4,-5],[2,-7],[18,-83],[0,-12],[-1,0],[-2,-4],[-37,-2],[-2,0],[-27,0],[-3,-3],[0,-8],[6,-34],[3,-6],[47,-50],[31,-22],[3,-2],[31,-42],[9,-9],[10,-3],[33,8],[25,1],[11,-5],[11,-7],[11,-11],[10,-13],[5,-12],[3,-13],[1,-10],[-2,-3],[-8,-2],[-2,2],[-21,19],[-7,10],[-6,4],[-7,2],[-6,0],[-74,-31],[-5,-4],[-3,-5],[-2,-7],[20,-43],[1,0],[0,-1],[5,-7],[4,-3],[29,-13],[17,-11],[2,-2],[18,-14],[60,-50],[45,-20],[27,-52],[30,-56],[11,-23],[2,-8],[-17,-44],[-4,-57],[7,-7],[20,-12],[11,-8],[8,-5],[8,-11],[7,-10],[2,-4],[1,-7],[0,-1],[-8,-10],[-12,-7],[-8,-6],[-3,-5],[-1,0],[0,-11],[20,-75],[5,-13],[8,-8],[9,-6],[12,-5],[12,-1],[5,0],[8,-2],[-2,-12],[-9,-49],[0,-3],[-5,-81],[0,-18],[-3,-32],[-3,-5],[-9,-14],[-25,-33],[-3,-4],[-39,-11],[-17,-2],[-32,10],[-1,0],[-10,2],[-9,-6],[-1,0],[-3,-6],[-3,-21],[0,-15],[7,-50],[-4,-24],[-10,-19],[-5,-5],[-5,-6],[-4,-3],[-17,-7],[-2,-1],[-24,-9],[-13,-6],[-7,-6],[-9,-20],[-1,-10],[4,-8],[39,-94],[0,-2],[2,-12],[-2,-4],[0,-1],[-5,-5],[-24,-28],[-7,-8],[-1,-1],[-16,-9],[-1,0],[-45,-15],[-3,-1],[-21,-1],[-12,-3],[-18,-9],[-4,-2],[-9,-7],[-6,-6],[-4,-7],[-76,-75],[-13,-34],[-3,-6],[-22,-28],[-22,-33],[0,-1],[18,-45],[10,-24],[26,-37],[0,-1],[8,-17],[0,-16],[-1,-5],[-4,-8],[-20,-46],[-4,-7],[-2,-3],[-2,-2],[-6,-6],[-16,-10],[-3,-2],[-10,-4],[-28,-22],[-6,-8],[-5,-19],[0,-1],[-2,-5],[-7,-3],[-37,-13],[-2,0],[-11,-1],[-14,10],[-1,0],[-20,7],[-14,5],[-29,0],[-28,-8],[-19,-9],[-55,-38],[-23,-17],[-20,-17],[-1,-1],[-16,-16],[-11,-14],[-2,-2],[-4,-8],[-12,-26],[-14,-46],[-25,15],[-21,13],[-3,4],[-25,23],[-4,4],[0,1],[-4,4],[-38,55],[-2,6],[-1,7],[2,8],[9,9],[14,12],[1,3],[5,10],[0,17],[-2,5],[-7,8],[-4,2],[-12,1],[-7,-3],[-130,-60],[-8,-14],[-12,-21],[-17,-33],[-23,-42],[-1,-1],[-24,-28],[-43,-50],[-8,-3],[-18,0],[-1,0],[-81,33],[-1,1],[-8,3],[-31,23],[-2,1],[-2,2],[-49,36],[-4,3],[-11,11],[-14,47],[-2,2],[-1,2],[-2,2],[-1,1],[-4,6],[0,1],[-2,2],[-1,2],[-1,3],[-3,6],[-1,3],[0,2],[-1,3],[-1,3],[0,2],[-43,-26],[0,-1],[-8,-7],[-58,-38],[-14,-8],[-57,-29],[-6,1],[-5,3],[-1,13],[-1,0],[-2,3],[-8,4],[-10,0],[-63,-3],[-3,0],[-35,-10],[-5,-1],[0,2],[0,36],[-4,11],[-11,11],[-10,-2],[-14,-7],[-2,0],[-1,-1],[-6,-4],[-6,-6],[-13,10],[0,29],[-4,28],[-1,42],[13,17],[3,16],[-30,19]],[[63659,89747],[-17,55],[-1,1],[-1,2],[-35,39],[-15,15],[-1,1],[-2,1],[-55,18],[-13,-2],[-19,-16],[-8,-7],[1,-7],[0,-1],[4,-7],[1,-9],[-1,-15],[-5,-12],[-20,-25],[-13,-17],[-11,-12],[-5,-2],[-5,3],[0,1],[-1,1],[0,1],[0,30],[0,1],[-3,8],[-5,6],[-9,4],[-8,1],[-30,0],[-28,-1],[-22,0],[-1,0],[-48,-3],[-14,-1],[-41,60],[-19,27],[-17,26],[-15,-18],[-10,-11],[-30,-33],[-20,-12],[-15,-9],[-2,-1],[-87,-20],[-6,0],[-5,3],[-82,87],[-5,6],[-1,2],[-19,28],[0,1],[0,6],[5,13],[0,1],[3,18],[3,43],[1,27],[-3,10],[-2,5],[-4,3],[-77,24],[-2,0],[-3,1],[-10,-2],[-2,-1],[-8,-4],[-10,-8],[-1,-1],[-3,-1],[-9,-5],[-2,-1],[-7,-2],[-12,0],[-5,2],[-8,3],[-9,3],[-3,2],[-2,1],[-8,5],[-54,43],[-2,2],[-18,25],[0,7],[0,32],[1,9],[-1,0],[-44,-8],[-24,2],[-65,15],[-33,8],[-3,1],[-29,9],[-1,0],[-13,6],[-9,9],[-1,0],[0,1],[-60,74],[-1,0],[-1,4],[0,13],[0,1],[3,4],[5,6],[7,7],[4,7],[16,24],[2,8],[23,112],[0,7],[-5,3],[-11,6],[-22,17],[-46,-12],[-12,0],[-19,1],[-48,7],[-2,0],[-39,12],[-18,-2],[-7,-3],[-2,-2],[0,-7],[2,-1],[37,-11],[10,-5],[4,-9],[0,-9],[-1,-9],[-5,-11],[0,-1],[-6,-6],[-65,-14],[-17,3],[-2,1],[-30,16],[-52,28],[-1,1],[-2,1],[-6,4],[-4,1],[-37,-1],[-11,2],[-52,35],[-61,12],[-4,5],[-37,42],[-39,44],[-13,15],[-1,1],[-23,36],[-18,27],[-3,6],[-85,6],[-23,2],[-10,2],[-1,2],[0,9],[0,1],[7,22],[9,31],[-18,19],[-32,34],[-6,6],[-8,3],[-1,0],[-20,3],[-10,3],[-6,3],[-6,5],[0,1],[0,6],[5,4],[10,10],[0,9],[-21,24],[-1,0],[-25,10],[-20,-5],[-8,1],[-33,11],[-2,1],[-30,17],[-32,16],[-9,-2],[-74,8],[-3,1],[-41,12],[-4,3],[0,1],[1,22],[-8,-4],[-16,-8],[-1,0],[-2,0],[-44,-1],[-8,4],[0,25],[-17,69],[-2,3],[-14,-2],[-2,-1],[-18,2],[-9,1],[-1,1],[-15,6],[-33,27],[-1,0],[-45,7],[-3,2],[-2,4],[-1,0],[-2,8],[-4,7],[-1,1],[-8,9],[-11,6],[-1,1],[-26,-5],[-17,8],[-12,5],[-4,2],[-19,8],[-11,-2],[-3,-2],[0,-7],[4,-6],[2,-46],[-2,-1],[-8,-12],[-31,-45],[-27,-16],[0,-1],[-31,6],[-66,13],[-2,0],[-63,25],[-103,40],[-10,5],[-11,10],[-16,11],[-15,8],[-1,0],[-7,2],[-53,0],[-7,-1],[-1,-1],[-11,-5],[-14,-7],[-8,-2],[-7,1],[-1,0],[-32,9],[-49,0],[-145,-13],[-3,0],[-21,-17],[-1,-1],[-26,-6],[-53,11],[-9,-3],[-3,-3],[-1,-17],[0,-26],[-2,-3],[-2,-6],[-2,-3],[-2,-2],[-1,0],[-4,-2],[-10,-1],[-11,2],[-59,14],[-5,3],[-3,8],[-28,92],[-3,25],[-2,57],[-2,7],[-3,11],[-35,58],[-1,1],[-1,1],[-5,2],[-8,-1],[-2,0],[-1,0],[-5,-4],[-2,-4],[0,-8],[8,-21],[-1,-15],[-1,-4],[-6,-7],[-15,-8],[-44,-11],[-2,0],[-27,-4],[-66,-4],[-1,0],[-18,-6],[-4,-1],[-2,0],[-2,0],[-9,-2],[-24,-5],[-12,-2],[-16,-5],[-41,-24],[-1,0],[-7,1],[-11,1],[-33,5],[-10,1],[-29,-3],[-6,-3],[-7,-4],[-16,-7],[-22,-15],[-10,-6],[-4,-1],[-14,-3],[-19,3],[-6,1],[-8,4],[-6,3],[-1,0],[-34,-14],[-3,-2],[-48,-28],[-13,-12],[-8,-12],[-11,-16],[-26,-37],[-9,-15],[-7,-12],[-12,-13],[-6,-6],[-3,-6],[0,-4],[-1,-20],[0,-5],[-5,-4],[-2,-1],[-6,1],[-2,3],[-1,1],[-5,22],[-13,14],[-11,5],[-1,0],[-9,4],[-37,7],[-5,-3],[-2,-16],[-1,-7],[-7,-11],[-17,-14],[-17,-7],[-17,-8],[-30,-3],[-2,2],[-6,10],[-1,1],[-7,1],[-11,-9],[-5,-7],[-2,-3],[-13,-8],[-6,0],[-21,1],[-5,-3],[-2,-2],[-1,-1],[-42,-50],[0,-1],[0,-1],[-6,-9],[-11,-41],[-1,-10],[5,-6],[23,-4],[6,2],[8,2],[7,-1],[4,-5],[2,-3],[2,-3],[-5,-14],[0,-2],[-4,-10],[-28,-76],[-2,-1],[-43,-23],[-16,-3],[-13,-7],[-4,-3],[-5,-5],[-6,-7],[-5,-7],[-1,-15],[-1,-12],[-1,-4],[-4,-58],[-3,-37],[-47,-54],[-17,-20]],[[56887,94340],[235,-15],[171,-12],[38,-3],[60,-5],[57,-4],[28,-2],[113,-8],[29,-2],[47,-3],[25,-2],[282,-19],[378,-26],[143,-10],[14,1],[89,-7],[67,-6],[28,0],[8,-1],[76,-5],[35,-2],[127,-11],[224,-19],[69,-6],[85,-5],[16,0],[59,-4],[7,0],[20,-1],[36,-2],[213,-14],[139,-9],[19,-1],[3,-1],[24,-1],[128,-9],[120,-8],[73,-5],[50,-3],[24,-2],[41,-3],[161,-11],[177,-14],[20,0],[3,0],[14,-1],[224,-15],[73,-4],[54,-4],[57,-4],[192,-13],[235,-16],[21,-2],[223,-15],[50,-4],[15,-1],[39,-3],[117,-8],[480,-33],[124,-6],[37,-5],[86,-3],[122,-10],[303,-22],[31,-2],[170,-13],[2,0],[191,-14],[29,-2],[486,-36],[224,-17],[284,-14],[275,-22],[100,-8],[11,-1],[122,-8],[5,-1]],[[35540,93908],[-31,-70],[-24,-29],[-30,-26],[-64,-30],[-23,-22],[-7,-37],[4,-41],[11,-30],[15,-29],[5,-40],[0,-7],[-2,-3],[-20,-26],[-22,-18],[-20,-8],[-4,-2],[-1,0],[-37,-6],[-44,3],[-6,1],[-41,19],[-29,20],[-20,7],[-19,-4],[-5,-4],[-18,-16],[-10,-48],[3,-14],[6,-22],[34,-109],[6,-20],[11,-18],[-2,-17],[0,-4],[-8,-11],[-9,-14],[-8,-12],[-3,-2],[-64,-72],[-48,-43],[-3,-3],[-6,-9],[-12,-18],[-20,-31],[-45,-85],[-18,-53],[-1,-2],[-43,-101],[-22,-51],[-35,-56],[-9,-18],[-6,-13],[-17,-31],[-11,-19],[-9,-26],[-6,-31],[1,-7],[2,-42],[-2,-69],[13,-54],[0,-2],[3,-40],[-5,-48],[-7,-26],[-1,-1],[-1,-12],[-10,-32],[-4,-5],[-1,-1],[0,-4],[-8,-46],[-7,-80],[-11,-24],[-8,-19],[-6,-11],[-17,-27],[-28,-22],[-1,-1],[-9,-8],[-4,-4],[-30,-28],[-12,-20],[-3,-25],[0,-1],[1,-3],[4,-11],[19,-21],[8,-9],[16,-7],[10,-5],[13,-6],[42,-6],[7,-1],[23,1],[43,7],[16,3],[6,-4],[9,-8],[12,-10],[8,-37],[-8,-49],[-6,-6],[-9,-8],[-5,-5],[-4,-1],[-13,-5],[-16,-7],[-32,-23],[-2,-2],[-6,-6],[-45,-45],[-31,-32],[-2,-3],[-20,-30],[-5,-58],[11,-33],[1,-2],[13,-16],[2,-3],[20,-14],[1,-1],[20,-6],[4,-4],[2,-1],[2,0],[44,-4],[15,-1],[12,6],[4,2],[64,31],[6,3],[6,2],[9,-2],[17,-3],[7,-1],[6,-7],[1,-1],[6,-7],[2,-13],[0,-1],[-6,-24],[-2,-9],[-10,-14],[-8,-6],[-9,-5],[-1,-1],[-19,-4],[-7,0],[-28,0],[-23,-6],[-1,-1],[-4,-1],[-11,-5],[-42,-22],[-29,-10],[-28,-9],[-22,-7],[-14,-4],[-35,-10],[0,-1],[-1,0],[-15,-3],[-45,-3],[-7,-3],[-51,-7],[-39,-18],[-48,-30],[-33,-14],[-19,-18],[-12,-13],[-53,-42],[-46,-60],[-1,-1],[-3,-6],[-4,-7],[-1,-6],[-5,-35],[8,-42],[4,-16],[-1,-4],[22,-28],[7,-4],[9,-5],[7,-4],[6,0],[40,-1],[30,9],[52,6],[4,0],[23,-3],[12,-1],[2,-2],[3,-1],[9,-5],[10,-14],[4,-7],[-1,-7],[-2,-14],[0,-6],[-3,-4],[-6,-9],[-1,-2],[-14,-11],[-61,-27],[-38,-4],[-35,2],[-23,-5],[-21,-17],[-10,-13],[-2,-25],[0,-15],[6,-17],[19,-22],[23,-11],[29,-2],[39,-4],[46,-10],[10,-2],[14,-10],[12,-17],[3,-10],[-2,-4],[2,-30],[3,-48],[0,-5],[-1,-4],[-3,-27],[-31,-36],[-9,-8],[-56,-48],[-1,-1],[-21,-32],[-7,-28],[-4,-16],[-9,-8],[-8,-1],[-22,13],[-2,3],[-4,7],[-11,17],[-10,6],[-21,2],[-41,-25],[-38,-23],[-29,-31],[-16,-34],[-2,-15],[3,-27],[7,-16],[18,-23],[2,-1],[11,-7],[41,-3],[61,6],[11,-2],[27,-4],[3,-1],[1,-2],[7,-7],[5,-5],[-3,-21],[-1,-1],[-7,-13],[-25,-22],[-2,-2],[-2,0],[-49,-12],[-20,-8],[-26,-10],[-22,-12],[-33,-30],[-8,-7],[-25,-33],[-6,-16],[-20,-108],[-1,-5],[-2,-4],[-13,-22],[-40,-41],[-13,-18],[-2,-20],[4,-18],[6,-7],[62,-85],[10,-22],[-1,-24],[-1,-11],[0,-4],[-1,-2],[-18,-31],[-9,-31],[0,-2],[-2,-19],[-2,-10],[16,-25],[42,-28],[94,-36],[8,-10],[4,-5],[0,-3],[0,-8],[0,-12],[-8,-15],[-18,-15],[-16,-7],[-25,-3],[-24,3],[-36,15],[-33,22],[-1,0],[-1,0],[-22,1],[-6,-2],[-7,-3],[-14,-11],[-1,-9],[-1,-7],[0,-2],[2,-7],[3,-9],[39,-69],[-2,-21],[-2,-2],[-10,-8],[-2,-1],[-2,0],[-11,-2],[-2,0],[-18,2],[-30,22],[-14,10],[-20,2],[-16,-12],[-5,-27],[1,-6],[1,-11],[8,-34],[14,-59],[4,-7],[2,-2],[23,-85],[3,-13],[-1,-6],[-2,-16],[-13,-11],[-12,0],[-26,2],[-16,-2],[-19,-19],[-3,-6],[0,-8],[-1,-8],[-1,-26],[4,-10],[6,-18],[12,-31],[2,-15],[-3,-29],[-7,-11],[-1,-1],[-1,0],[-26,-21],[-25,-19],[-10,-15],[-3,-25],[3,-11],[5,-7],[4,-4],[6,-8],[24,-21],[18,-23],[2,-3],[2,-9],[1,-4],[-2,-12],[-1,-8],[-5,-8],[-2,-2],[-17,-12],[-8,-6],[-8,0],[-17,1],[-29,-5],[-9,-3],[-18,-15],[-10,-20],[-8,-81],[1,-4],[2,-13],[-3,-23],[-14,-11],[-24,5],[-21,17],[-15,6],[-19,3],[-4,0],[-7,-7],[-3,-2],[-13,-13],[-1,-10],[0,-18],[5,-44],[-4,-38],[-1,-4],[-2,-6],[-50,-40],[-5,-4],[-6,-35],[-1,-8],[6,-20],[43,-56],[0,-1],[0,-21],[-16,-15],[-28,-9],[-25,3],[-47,18],[-21,2],[-16,-11],[-2,-1],[-4,-23],[12,-30],[7,-16],[0,-5],[-2,-20],[-3,-6],[-3,-4],[-3,-2],[-24,-17],[-6,-4],[-45,-8],[-14,2],[-14,-10],[-6,-5],[-1,-11],[0,-9],[-1,-15],[7,-51],[-8,-12],[-20,-13],[-5,-3],[-28,8],[-22,23],[-22,45],[-10,13],[-2,2],[-10,6],[-17,1],[-6,0],[-11,-9],[-7,-14],[-5,-17],[28,-99],[-1,-1],[-13,-11],[-4,-3],[-6,0],[-6,0],[-8,0],[-21,20],[-15,14],[-8,1],[-7,1],[-9,1],[-3,-3],[-11,-8],[-5,-8],[-2,-21],[-1,-8],[12,-33],[38,-49],[2,-22],[-1,-2],[-7,-14]],[[33130,87633],[-5,0],[-14,1],[-28,0],[-23,0],[-16,0],[-17,-1],[-16,0],[-26,0],[-135,1],[-87,1],[-72,2],[-61,1],[-46,1],[-27,0],[-96,3],[-133,3],[-41,0],[-47,1],[-44,0],[-56,1],[-3,0],[-45,0],[-2,0],[-59,0],[-116,1],[-63,1],[-57,0],[-59,1],[-29,-2],[-54,1],[-20,-3],[-193,0],[-73,3],[-49,0],[-104,0],[-21,0],[-151,0],[-185,1],[-47,0],[-31,0],[-68,0],[-50,0],[-226,-1],[-3,0],[-45,-1],[-174,-4],[-33,0],[-241,6],[-216,4],[-51,-1],[-95,3],[-1,0],[-50,-7]],[[29526,87649],[1,34],[-1,187],[1,28],[0,26],[1,105],[2,78],[0,146],[0,37],[0,43],[-1,58],[1,61],[2,67],[2,34],[4,48],[3,34],[1,16],[-2,138],[-5,153],[1,42],[0,56],[0,21],[1,58],[1,97],[0,50],[5,53],[3,72],[0,5],[0,52],[-2,247],[0,14],[2,162],[-1,17],[-2,33],[2,60],[0,79],[-1,16],[3,35],[1,76],[-2,90],[0,1],[4,160],[0,22],[2,84],[0,28],[1,160],[1,95],[-3,138],[-3,19],[3,73],[16,55],[3,52],[0,20],[0,33],[-3,50],[0,2],[1,24],[0,22],[0,22],[0,22],[0,22],[1,17],[1,21],[4,238],[1,90],[0,25],[5,192],[0,8],[0,9],[1,49],[4,220],[4,146],[1,118],[1,109],[3,111],[0,27],[1,39],[1,34],[4,19],[6,225],[1,32],[0,17],[-1,132],[0,2],[-4,37]],[[38424,89181],[-3,-3],[-13,-10],[-59,-59],[-3,-2],[-2,-2],[-34,-31],[-12,-14],[-15,-16],[-2,-2],[-33,-29],[-3,-3],[-10,-8],[-13,-9],[-1,-1],[-4,-5],[-2,-4],[-8,-12],[-1,-20],[0,-6],[-3,-7],[-6,-6],[-5,-5],[-2,-17],[3,-40],[14,-13],[27,-4],[8,-12],[-4,-23],[-1,-7],[-1,-5],[-9,-6],[-29,-38],[2,-50],[-5,-2],[-74,-28],[-2,-1],[-7,-13],[-10,-18],[-1,-2],[3,-4],[9,-11],[34,-24],[47,-45],[36,-35],[12,-13],[1,-2],[1,0],[49,-22],[3,-2],[17,-13],[2,0],[40,-13],[29,-9],[2,-4],[6,-11],[8,-12],[15,-2],[7,-8],[3,-3],[15,-2],[6,3],[20,12],[5,3],[5,3],[0,3],[0,3],[21,-8],[15,-10],[2,-1],[28,-18],[4,-2],[22,-14],[10,-6],[8,-8],[28,-26],[10,-13],[-1,-6],[-6,-5],[-14,-2],[-8,-7],[-2,-16],[0,-1],[8,-11],[2,-1],[2,0],[1,-2],[17,-27],[9,-15],[0,-4],[-4,-26],[-2,-14],[-7,-46],[-35,-17],[-1,-1],[22,-66],[4,-3],[3,-2],[42,-36],[18,-41],[3,-4],[14,-2],[15,-2],[4,0],[20,0],[11,-1],[13,-1],[3,0],[8,-1],[10,-6],[42,-26],[4,-4],[1,-3],[2,-2],[15,-23],[0,-2],[0,-17],[1,-22],[-3,-26],[-2,-13],[4,-34],[6,-17],[6,-14],[-10,-47],[-2,-18],[3,-24],[7,-8],[3,-1],[29,-2],[15,-1],[2,0],[17,-10],[-2,-5],[-7,-29],[-15,-59],[-2,-10],[4,-12],[-2,-13],[-3,-24],[-3,-17],[0,-33],[15,-24],[5,-9],[3,-4],[28,-23],[2,0],[4,-1],[24,-6],[6,-1],[1,1],[8,10],[5,4],[1,1],[4,-1],[3,-3],[5,-7],[18,-24],[1,-5],[3,-16],[2,-11],[0,-5],[-5,-28],[-3,-19],[-9,-46],[4,-5],[32,-31],[6,-1],[1,-1],[5,-7],[2,-2],[5,-11],[0,-3],[-1,-8],[-1,-4],[-8,-39],[-1,-1],[-20,1],[-8,0],[-20,-17],[0,-6],[5,-6],[1,-1],[16,-1],[2,-3],[3,-4],[3,-4],[-1,-6],[-14,-71],[-21,-89],[-1,-2],[-6,-15],[-2,-3],[-11,-12],[-2,-3],[7,-18],[8,-19],[12,-31],[3,-7],[1,-3],[-3,-15],[-1,-6],[-30,-54],[0,-1],[0,-4],[1,-3],[15,-41],[1,-4],[6,-6],[6,-5],[11,-4],[6,0],[18,4],[-6,-35],[-5,-27],[-4,-33],[-2,-13],[-1,-11],[0,-1],[-16,-10],[-7,-5],[-2,-8],[-1,-2],[0,-1],[10,-29],[25,-48],[19,-16],[10,-3],[34,-18],[4,-2],[16,-30],[2,-4],[6,-13],[7,-14],[1,-8],[3,-4],[2,-2],[2,-3],[31,-13],[6,-1],[6,7],[0,7],[1,9],[0,20],[0,1],[0,1],[15,11],[16,4],[9,-1],[1,-1],[4,-5],[11,-39],[0,-6],[3,-27],[0,-5],[6,-18],[6,-8],[1,-1],[11,-15],[11,-33],[12,-38],[-1,-2],[0,-3],[0,-1],[-34,-57],[-3,-2],[-1,-1],[-2,-2],[-24,-1],[-2,0],[-9,-6],[-5,-4],[-1,-7],[15,-21],[11,-15],[12,0],[2,-3],[2,-2],[21,-29],[2,-3],[2,-12],[-1,-13],[-1,-2],[4,-5],[9,-7],[6,-2],[21,-9],[5,-1],[8,-1],[3,-3],[6,-7],[3,-6],[28,-55],[-3,-39],[2,-11],[2,-11],[44,-64],[35,-44],[1,-1],[40,-33],[6,-9],[0,-3],[0,-3],[-1,-2],[-4,-3],[-23,-4],[-4,0],[-1,-6],[23,-46],[27,-51],[12,-13],[57,-36],[2,0],[4,0],[10,0],[13,5],[13,4],[6,3],[68,21],[13,4],[5,1],[6,0],[2,-1],[7,-10],[19,-26],[11,-10],[10,-11],[12,-11],[6,-3],[3,-2],[1,-1],[17,-27],[2,-2],[5,-20],[-1,-6],[-1,-9],[33,-45],[5,-7],[1,-4],[3,-13],[9,-38],[-1,-4],[-1,-13],[20,-30],[14,-8],[9,-2],[10,0],[12,8],[16,14],[4,4],[2,2],[8,6],[11,-4],[15,-5],[17,-33],[15,-39],[0,-12],[1,-16],[-7,-5],[-11,1],[-14,9],[-9,6],[-8,1],[-7,1],[-2,0],[-8,-3],[-2,-2],[-11,-10],[-2,-2],[0,-1],[-1,-18],[5,-7],[7,-10],[1,-3],[5,-1],[6,-2],[10,-6],[5,-4],[14,-23],[0,-12],[-1,-13],[3,-2],[19,-13],[31,-43],[9,-8],[3,-3],[121,-77],[2,-2],[13,-8],[73,-39],[10,-5],[73,-5],[13,-2],[46,-15],[26,3],[2,5],[-1,2],[-9,21],[-1,3],[-6,15],[0,6],[9,-1],[23,-5],[26,-5],[3,-1],[2,-1],[10,-5],[4,-5],[8,-9],[5,-6],[4,-8],[1,-4],[6,-11],[-1,-12],[-1,-17],[-1,-6],[-2,-8],[-4,-15],[5,-6],[8,-1],[1,0],[2,0],[24,4],[24,-3],[15,-6],[8,-4],[21,17],[6,5],[56,-42],[0,-17],[-14,-11],[-14,-2]],[[40636,84715],[-34,2],[-146,-2],[-67,-1],[-17,0],[-67,0],[-30,-1],[-11,0],[-33,0],[-82,1],[-38,0],[-102,1],[-123,0],[-35,2],[-58,3],[-131,2],[-70,2],[-148,1],[-5,0],[-52,0],[-32,0],[-63,1],[-50,0],[-52,0],[-37,0],[-24,0],[-168,1],[-45,1],[-122,2],[-97,-1],[-52,0],[-52,-1],[-13,0],[-31,0],[-45,0],[-162,0],[-26,0],[-83,-1],[-134,-1],[-125,-1],[-31,0],[-25,0],[-16,-1],[-24,1],[-18,-1],[-27,0],[-37,0],[-4,0],[-15,-1],[-28,2],[-41,0],[-33,-1],[-14,0],[-6,0],[-8,0],[-10,0],[-5,0],[-37,0],[-56,0],[-28,0],[-61,-1],[-35,0],[-124,-1],[-83,0],[-23,0],[-44,0],[-16,0],[-27,0],[-14,0],[-14,0],[-29,0],[-36,0],[-48,1],[-19,0],[-148,2],[-33,0],[-115,2],[-30,0],[-31,1],[-122,3],[-55,1],[-19,0],[-26,1],[-60,1],[-102,5],[-30,2],[-70,1],[-99,2],[-57,1],[-93,2],[-10,0],[-19,0],[-45,1],[-46,1],[-95,2],[-54,1],[-28,0],[-122,2],[-46,1],[-27,0],[-109,1],[-257,3],[-23,0],[-27,0],[-9,0],[-38,1],[-17,0],[-221,1],[-27,1],[-23,-1],[-25,0],[-27,0],[4,-17],[21,-17],[2,-18],[0,-19],[-19,-19],[-20,-21],[-21,-23],[-3,-25],[11,-26],[-2,-23],[-2,-2],[-2,-1],[-19,-14],[-7,-5],[-31,-23],[-4,-11],[-4,-14],[-6,-20],[-10,-41],[-6,-31],[7,-11],[10,-1],[1,-2],[3,-3],[-1,-8],[-7,-6],[-17,0],[-11,-7],[-1,-15],[-2,-33],[-7,-9],[-4,-10],[-1,-10],[5,-15],[0,-2],[3,-8],[-8,-10],[-1,-1],[-16,-32],[-1,-1],[-47,-80],[-4,-4],[-2,-3],[-7,-1],[-8,-14]],[[34319,84105],[0,24],[0,16],[-1,15],[-34,129],[0,3],[-23,24],[-1,2],[3,29],[-5,7],[-4,4],[-18,2],[-27,18],[-31,21],[-9,1],[-15,2],[-2,0],[-13,-4],[-11,-4],[-22,-18],[-24,-8],[-6,1],[-14,1],[-18,15],[-11,8],[-38,6],[-7,9],[0,1],[2,17],[0,1],[0,2],[-2,20],[-1,6],[-4,6],[-24,37],[-8,24],[0,5],[0,23],[0,4],[-7,12],[-1,1],[-3,5],[-21,27],[-20,11],[-22,3],[-43,-1],[-7,-4],[-2,-2],[-35,4],[-49,10],[-7,1],[-29,15],[-88,45],[-21,15],[-4,6],[-5,6],[-9,11],[-7,23],[-4,12],[-7,10],[-2,3],[-5,6],[-14,1],[-4,-1],[-8,-2],[-7,-3],[-15,-10],[-30,-22],[-3,0],[-13,3],[-6,23],[-2,7],[-3,8],[-13,12],[-6,1],[-18,2],[-12,-3],[-30,-7],[-14,1],[-4,1],[-5,0],[-14,17],[2,13],[2,7],[39,32],[2,6],[2,14],[0,1],[3,28],[-1,2],[-2,5],[-9,15],[-9,2],[-1,0],[-10,1],[-4,-3],[-7,-6],[-3,-2],[-6,-40],[0,-1],[-12,-10],[-12,-3],[-17,-4],[-5,1],[-13,1],[-9,2],[-11,7],[-4,3],[-4,5],[-8,13],[-1,8],[0,26],[-9,11],[-4,1],[-6,0],[-13,-4],[-9,-7],[-16,-12],[-6,-2],[-13,-6],[-4,1],[-10,1],[-7,8],[-8,9],[-4,4],[-7,17],[-9,21],[-3,4],[-14,18],[-6,8],[-28,24],[-8,5],[-3,2],[-11,6],[-15,15],[-61,59],[-18,14],[-12,8],[-9,12],[-1,15],[9,7],[21,4],[5,3],[9,8],[2,17],[-9,11],[-14,8],[-40,5],[-6,-2],[-5,-1],[-4,0],[-10,1],[-4,6],[-2,1],[1,4],[1,9],[11,26],[3,25],[-24,63],[-3,28],[6,52],[-3,46],[-3,12],[-5,25],[0,2],[2,20],[0,3],[12,8],[4,3],[19,6],[18,15],[1,7],[2,11],[-13,14],[-27,3],[-14,8],[-9,6],[-7,10],[-1,1],[-4,7],[-1,8],[-3,26],[-1,13],[17,24],[1,1],[11,15],[5,6],[18,52],[2,16],[0,1],[1,15],[-5,8],[-14,21],[-4,1],[-9,11],[-4,17],[-14,18],[-2,3],[-10,1],[-22,1],[-10,1],[-1,0],[-10,8],[-4,5],[-7,8],[-1,1],[-6,0],[-7,1],[-19,-7],[-2,-1],[-3,0],[-5,1],[-17,2],[-67,29],[-5,5],[-8,7],[-2,5],[-1,4],[1,5],[2,8],[1,5],[28,49],[16,11],[10,-1],[4,-1],[17,-2],[6,0],[4,0],[10,2],[7,2],[9,7],[2,2],[1,5],[3,18],[-41,105],[-1,5],[-13,49],[-1,4],[-1,3],[3,24],[14,11],[18,-2],[4,-2],[21,-15],[7,-5],[11,-12],[11,-14],[17,-2],[13,13],[1,7],[1,5],[0,7],[-32,46],[3,20],[8,8],[3,4],[6,-1],[33,-4],[16,-6],[7,-1],[28,-3],[16,2],[13,5],[2,2],[10,9],[4,4],[7,11],[0,2],[-13,50],[-7,3],[-32,4],[-17,0],[-37,-2],[-26,5],[-9,1],[-11,6],[-22,11],[-6,3],[-2,3],[-6,7],[-4,6],[-2,4],[-1,3],[-2,6],[-2,19],[3,21],[2,14],[4,25],[0,2],[30,28],[16,10],[31,20],[18,17],[1,4],[2,23],[-7,30],[2,19],[4,7],[1,1],[1,2],[3,3],[14,14],[8,5],[8,5],[26,18],[7,16],[2,9],[1,6],[-4,3],[-11,12],[-3,-1],[-18,-3],[-2,0],[-21,-2],[-13,4],[-12,11],[-3,16],[-1,5],[2,3],[3,6],[7,12],[15,14],[13,14],[9,19],[5,30],[12,52],[7,32],[2,18],[-13,21],[-24,0],[-17,-5],[-22,2],[-13,16],[3,21],[9,13],[1,1],[10,13],[7,13],[-1,16],[-7,18],[-5,15],[-4,27],[5,14],[2,6],[11,7],[12,7],[14,7],[1,1],[9,7],[4,3],[1,9],[3,16],[-3,8],[-8,23],[-1,3],[-1,19],[10,18],[16,10],[44,8],[14,4],[11,6],[9,4],[4,5],[5,7],[4,5],[11,30],[6,21],[2,11],[4,20],[4,18],[1,3],[6,20],[14,23],[13,23],[11,16],[17,19],[7,4],[8,5],[11,8],[2,1],[19,16]],[[68064,93566],[2,-53],[1,-72],[3,-176],[2,-165],[2,-144],[10,-687],[0,-49],[1,-27],[2,-106],[0,-2],[2,-20],[-1,-128],[1,-126],[0,-9],[2,-56],[1,-48],[0,-11],[0,-33],[2,-40],[2,-64],[0,-56],[0,-23],[0,-33],[1,-21],[1,-35],[-17,0],[1,-134],[4,-550],[0,-1],[1,-165],[0,-193],[1,-43],[0,-151],[1,-105],[0,-61],[0,-67],[0,-76],[0,-358],[0,-65],[-3,-27],[1,-315],[4,-95],[0,-6],[1,-176],[0,-143],[0,-128],[0,-10],[-1,-103],[0,-33],[-1,-69],[0,-37],[-1,-88],[0,-20],[-1,-38],[-3,-251],[-1,-171],[0,-26],[-1,-19],[1,-109],[1,-182],[-3,-42],[-1,-33],[1,-106],[-1,-90],[0,-40],[-1,-64],[-1,-27],[0,-70],[-1,-127],[1,-10],[1,-23],[0,-24],[0,-58]],[[68080,86653],[2,-89],[3,-32],[4,-5],[35,-29],[3,-3],[6,-6],[8,-9],[12,-20],[4,-9],[0,-1],[0,-17],[-2,-9],[-12,-24],[-3,-11],[-1,-3],[-7,-39],[-4,-30],[-8,-65],[0,-15],[0,-1],[2,-6],[0,-14],[-13,-38],[-19,-42],[-7,-8],[-38,-27],[-4,-2],[-97,-54],[-16,-10],[-7,6],[-74,56],[-21,-30],[-22,-33],[-17,-27],[-20,-17],[-29,-25],[-5,-4],[-2,-1],[-7,-3],[-57,-22],[-1,-1],[-2,0],[-71,-11],[-1,0],[-1,0],[-20,-2],[-9,1],[-10,0],[-10,-6],[-7,-5],[-42,-44],[-117,-66],[-43,-35],[-15,-9],[-33,-32],[-47,-66],[-29,-45],[-5,-8],[-32,-51],[-12,-18],[-10,-16],[-31,-49],[-2,-4],[-5,-9],[-19,-33],[-25,-54],[-21,-44],[-1,-3],[-1,-8],[-1,-11],[0,-6],[0,-17],[0,-12],[-2,-3],[-15,-28],[-11,-12],[2,-9],[6,-50],[0,-19],[-1,-10],[-6,-23],[0,-1],[-11,-16],[1,-5],[15,-20],[5,-6],[1,-1],[18,-16],[31,-24],[6,-4],[-7,-46],[-2,-5],[-1,-1],[-19,-22],[-15,-18],[-36,-41],[-40,-23],[-21,-9],[-1,0],[-10,-2],[-8,3],[-30,0],[-51,-17],[-7,-3],[-1,-1],[-8,-9],[-4,-7],[-1,-1],[-4,-4],[-8,-5],[-1,0],[-36,-17],[-8,-2],[-2,-1],[-20,-1],[-4,0],[-11,4],[-4,1],[-11,1],[-4,-3],[-58,-42],[-32,-23],[-19,-15],[-4,-2],[-16,-63],[3,-11],[0,-1],[9,-43],[1,-6],[-3,-32],[-2,-6],[-16,-36],[-1,0],[-8,-48],[-7,-37],[-2,-9],[5,-55],[7,-69],[59,-133],[1,-3],[5,-4],[31,-19],[22,-13],[36,-20],[1,-1],[50,-27],[5,-3],[9,-5],[2,-2],[8,-9],[3,-5],[6,-15],[-2,-12],[-1,-22],[4,-8],[9,-9],[12,-6],[10,-2],[1,-1],[33,-3],[15,-1],[32,4],[41,5],[39,-5],[3,-1],[1,0],[17,-14],[3,-11],[4,-4],[10,-5],[8,-3],[5,-3],[25,-15],[21,-12],[5,-7],[6,-17],[3,-4],[17,-10],[7,-49],[-1,-43],[-1,-21],[0,-21],[0,-3],[4,-33],[7,-49],[2,-18]],[[67142,83635],[-3,1],[-4,-5],[0,-22],[1,-7],[7,-14],[1,-2],[1,-4],[3,-16],[1,-2],[-1,-6],[0,-14],[0,-3],[-4,-14],[-2,-2],[-6,-15],[-7,-9],[-11,-11],[-57,-38],[-65,-43],[-12,-8],[-13,-3],[-49,-4],[-24,6],[-1,0],[-4,3],[-1,1],[-11,14],[-3,5],[-2,5],[-5,11],[-1,1],[-1,1],[-4,5],[-6,2],[-13,-3],[-35,-7],[-9,-2],[-9,-2],[-34,-14],[-33,-14],[7,-19],[-1,-2],[-38,-45],[-3,-5],[-15,-18],[-17,-20],[-1,-1],[-11,-18],[-4,-3],[-7,-2],[-27,2],[-4,2],[-11,11],[-5,0],[-45,-19],[-38,-19],[-2,-2],[-10,-12],[0,-1],[-4,-7],[3,-5],[2,-2],[1,0],[43,-14],[43,-10],[9,-6],[-29,-197],[0,-3],[2,-12],[-4,-25],[-22,-27],[-42,-29],[-15,-14],[-31,-28],[-66,-38],[-20,-7],[-12,-4],[-29,-14],[-7,-7],[-6,-8],[-7,-26],[1,-26],[5,-14],[2,-5],[7,-3],[16,-6],[78,-6],[33,-12],[17,-25],[-10,-18],[-119,-35],[16,-10],[7,-6],[2,-3],[16,-55],[0,-4],[-3,-31],[-3,-4],[-53,-69],[-3,-4],[-30,-28],[-2,-2],[-21,-12],[-21,-3],[-7,1],[-9,-1],[-27,-14],[-8,-4],[-2,-3],[-2,-9],[-1,-7],[-7,-25],[-5,-4],[-1,-1],[-22,-19],[-2,-2],[-37,1],[-37,1],[-62,53],[-4,6],[-3,11],[-26,12],[-9,4],[-7,0],[-5,-4],[-2,-2],[-6,-7],[-1,-2],[-4,-6],[-20,-38],[-2,-10],[0,-2],[-2,-16],[0,-3],[1,-2],[4,-9],[1,-1],[4,-4],[7,-2],[11,-3],[27,-11],[9,-9],[4,-7],[4,-17],[1,-11],[-5,-13],[-4,-5],[-5,0],[-6,0],[-11,5],[-12,11],[-12,4],[-13,3],[-101,17],[-7,-2],[-4,-2],[-4,-10],[-9,-23],[28,-26],[-11,-31],[-2,-7],[-7,-19],[-8,-24],[-33,-10],[-1,-1],[-2,-6],[-1,-5],[-2,-24],[2,-17],[2,-3],[3,-17],[-2,-8],[-2,-6],[-8,-15],[-27,-29],[-52,-55],[0,-1],[-7,-3],[-66,-11],[-37,-7],[-12,-2],[-18,-1],[-12,7],[-8,7],[-4,6],[-11,30],[-4,5],[-8,5],[-24,6],[-16,-4]],[[65448,81924],[-9,-1],[-13,2],[-31,9],[-1,1],[-18,9],[-37,10],[-64,0],[-70,25],[-1,0],[-42,-7],[-28,-3],[-5,-1],[-3,0],[-4,1],[-8,1],[-120,20],[-1,0],[-23,7],[-14,9],[-29,23],[-45,33],[-5,1],[-6,0],[-25,4],[-2,0],[-56,79],[-18,25],[-4,6],[-11,20],[-16,6],[-26,14],[-2,1],[-1,1],[-53,40],[-14,11],[-12,16],[-6,5],[-115,46],[-1,-1],[-15,-6],[-7,0],[-2,0],[-3,1],[-8,4],[-5,5],[-1,1],[-1,1],[-35,48],[-3,6],[-1,1],[-1,8],[-8,42],[-24,22],[-11,10],[-37,33],[-15,14],[-11,7],[-10,11],[-1,1],[-88,136],[-18,32],[-2,3],[0,4],[0,47],[5,12],[0,1],[0,1],[4,37],[0,3],[-6,27],[-1,41],[-5,13],[-60,81],[-6,6],[-3,2],[-6,-2],[-6,-4],[-1,-1],[-19,-17],[-14,-6],[-25,-6],[-28,0],[-15,2],[-1,0],[-15,5],[-7,9],[-1,0],[2,16],[27,35],[2,4],[25,96],[0,6],[-8,8],[-4,0],[-30,4],[-10,0],[-15,-6],[-9,1],[-4,2],[-18,16],[-8,10],[-1,2],[-14,25],[-1,4],[1,9],[3,6],[13,7],[10,24],[1,0],[11,35],[20,149],[0,9],[-7,7],[-1,0],[-14,1],[-4,0],[-22,-2],[-8,-2],[-39,-18],[-31,-13],[-2,2],[-46,56],[-4,4],[-42,48],[-57,36],[-4,2],[-10,-1],[-1,0],[-4,-1],[-8,-8],[-1,-1],[-7,-15],[-25,-32],[-62,6]],[[63586,83502],[3,5],[15,52],[4,11],[39,51],[2,3],[48,59],[7,9],[1,3],[19,52],[16,36],[21,39],[14,26],[3,4],[68,28],[1,1],[84,38],[1,1],[21,11],[14,8],[32,18],[84,46],[3,6],[5,11],[11,39],[1,1],[6,28],[2,11],[13,55],[3,14],[0,1],[-1,64],[-12,26],[-4,20],[-2,38],[0,22],[-24,0],[-25,2],[-31,0],[-17,0],[-15,0],[-15,-1],[-18,-1],[-24,-1],[-35,-2],[-30,-1],[-35,-1],[-14,1],[-47,0],[-111,-1],[-1,228],[1,295],[-1,151],[-1,37],[0,55],[-1,137],[0,26],[0,32],[0,24],[0,48],[-1,39],[0,25],[2,33],[-2,112],[0,16],[-1,78],[-1,27],[-1,74],[-2,367],[2,16],[-1,38],[0,59],[-1,36],[-4,56],[3,22],[-2,115],[-1,106],[-1,59],[0,33],[0,28],[0,134],[2,28],[0,84],[0,87],[1,394],[1,256],[0,14],[4,343],[0,21],[0,9],[0,48],[-1,98],[-3,52],[2,113],[0,23],[-1,94],[-1,54],[0,116],[0,70],[0,16],[-1,20],[0,64],[-2,55],[1,32],[0,23],[1,113],[1,51],[0,18],[0,46],[1,59],[0,27],[1,28],[-2,66],[0,20],[4,83],[-4,25],[1,30],[-1,105],[0,64],[2,58]],[[65044,93773],[96,-6],[137,-9],[6,0],[166,-10],[134,-9],[183,-12],[121,-7],[273,-18],[57,-4],[57,-4],[68,-5],[86,-10],[25,-2],[15,-1],[116,-8],[42,-1],[27,-1],[18,-2],[24,-4],[40,-2],[11,0],[26,-2],[2,0],[20,-1],[19,-2],[22,0],[20,-1],[18,-2],[25,-1],[14,-1],[30,-2],[28,-3],[43,-4],[43,-2],[25,-1],[30,-2],[27,-2],[37,-2],[25,-2],[12,-2],[8,-1],[76,-5],[14,-1],[140,-9],[46,-3],[29,-2],[28,-2],[17,-1],[18,-1],[47,-4],[21,-2],[26,-1],[101,-8],[7,0],[32,-3],[27,-1],[30,-2],[35,-3],[21,-1],[1,0],[21,-2],[24,-2],[43,-3],[40,-3]],[[81169,90432],[2,-52],[-40,8],[-6,5],[-23,22],[-29,32],[6,24],[7,25],[46,-37],[37,-27]],[[79627,90431],[-32,-32],[-31,29],[23,36],[-3,47],[29,-30],[14,-50]],[[81600,88441],[-24,0],[-30,1],[-32,0],[1,-43],[3,-133],[2,-57],[0,-11],[1,-55],[1,-15],[1,-23],[0,-28],[1,-21],[2,-48],[4,-225],[2,-238],[2,-145],[1,-38],[1,-27],[0,-20],[1,-30],[2,-150],[2,-67],[3,-185],[1,-65],[3,-141],[8,-494],[-11,-11],[-78,-1],[-30,0],[-301,-3],[-19,0],[-17,0],[-34,0],[-21,-1],[-43,-1],[-47,-2],[-18,0],[-17,-1],[-13,-1],[-143,-3],[-17,0],[-116,-1],[-2,0],[-67,-2],[-55,-1],[-22,-1],[-20,0],[-20,0],[-71,0],[-26,0],[-5,0],[-167,-6],[-4,215],[0,35],[-22,1],[-31,0],[-88,-11],[-40,-11],[-4,-2],[-3,-4],[-3,-4],[-54,-10],[-5,-1],[-33,0],[-6,1],[-36,1],[-50,7],[-8,1],[-72,41],[-1,1],[-2,1],[-29,19],[-16,18],[-3,4],[-1,0],[-8,9],[-9,10],[-4,5],[-13,10],[-1,0],[-32,5],[-4,1],[-56,3],[-29,-4]],[[79509,86489],[-26,20],[-30,13],[-24,20],[-25,27],[-17,31],[-5,9],[-30,-24],[-42,-1],[-37,11],[-31,28],[-30,23],[-38,11],[-57,9],[-72,2],[-38,-29],[-48,-20],[-33,-14],[-54,-29],[-45,-23],[-44,-1],[-51,31],[-39,9],[-27,-12],[-36,-9],[-33,13],[-31,31],[-14,32],[-21,29],[-29,17],[-50,34],[-38,46],[-19,49],[0,49],[15,48],[5,37],[20,34],[25,21],[25,29],[25,14],[23,8],[38,5],[38,2],[43,12],[38,23],[40,18],[53,92],[7,16],[17,85],[3,44],[9,36],[15,32],[1,3],[42,9],[29,20],[18,29],[2,37],[-15,39],[-35,38],[-35,14],[-28,-1],[-22,-9],[-15,37],[29,33],[33,25],[38,23],[39,26],[35,19],[27,20],[31,29],[32,33],[39,26],[12,63],[-7,51],[-3,44],[-7,38],[-3,41],[-9,29],[-20,28],[-28,46],[-27,41],[-19,33],[-34,27],[-40,22],[-39,14],[-33,27],[-4,54],[-24,36],[-27,16],[-26,20],[-8,48],[20,34],[-29,25],[-22,39],[-26,50],[-30,44],[-33,24],[-34,19],[-42,33],[-10,54],[19,63],[14,12],[41,57],[48,64],[10,40],[-27,59],[-20,33],[-28,46],[-25,42],[-12,21],[-14,26],[-2,49],[-1,6],[-3,34],[20,33],[17,28],[33,4],[12,2],[39,-13],[15,-10],[31,-17],[83,-43],[47,-24],[33,-17],[54,-17],[68,-25],[61,37],[2,1],[25,14],[67,49],[47,11],[15,-25],[22,-15],[33,3],[16,13],[31,9],[36,12],[22,40],[21,15],[30,3],[64,-28],[7,-36],[-31,-33],[-18,-20],[-20,-21],[-23,-65],[6,-38],[31,-35],[19,-45],[9,-7],[7,-7],[5,20],[-8,32],[-27,42],[-16,45],[20,61],[14,13],[12,13],[20,13],[30,32],[4,31],[-12,27],[-42,43],[-59,15],[-22,-7],[-29,-31],[-34,-27],[-36,-13],[-42,0],[-25,27],[1,37],[5,66],[4,59],[-10,45],[11,40],[13,36],[3,35],[-4,38],[-4,63],[-7,52],[-2,47],[4,25],[-4,25],[-5,42],[-10,42],[-16,51],[-17,50],[-7,21],[-17,43],[-23,26],[-24,37],[-20,42],[-6,58],[38,78],[36,-5],[58,13],[34,-5],[14,-8],[107,-66],[50,-31],[84,-43],[17,-16],[17,-17],[83,-41],[28,2],[12,25],[28,-28],[38,-20],[47,-7],[65,-30],[44,-15],[35,-15],[40,-30],[44,-28],[2,-1],[28,-17],[28,-20],[31,-34],[39,-29],[39,-17],[31,-16],[42,-11],[34,-6],[31,8],[24,6],[26,21],[20,32],[22,48],[12,39],[5,46],[9,48],[5,59],[-15,55],[-47,27],[-40,-32],[-32,-26],[-35,0],[-31,13],[-13,42],[14,35],[24,31],[30,22],[28,1],[37,7],[35,20],[39,8],[44,8],[61,4],[48,-1],[22,-4],[43,-24],[48,-11],[23,-5],[35,1],[26,8],[21,12],[37,10],[28,17],[30,9],[42,10],[40,-1],[35,-5],[45,-28],[-15,-33],[-7,-60],[16,-46],[26,-49],[46,-21],[30,-30],[-30,-13],[-34,-35],[7,-26],[31,-21],[10,-24],[20,-10],[-12,25],[-5,13],[-30,28],[11,13],[15,19],[36,12],[30,13],[19,-2],[5,0],[37,-17],[37,6],[20,9],[12,-11],[17,-15],[29,-33],[18,-38],[20,-32],[9,-25],[3,-8],[5,-13],[12,-28],[6,-20],[3,-13],[21,-30],[2,-26],[0,-13],[0,-21],[0,-40],[0,-4],[2,-22],[8,-12],[10,-12],[1,-45],[1,-9],[10,-101],[-6,-48],[-3,-22],[-15,-63],[12,-54],[1,-2],[16,-47],[82,-84],[45,-18],[18,-6],[11,-5],[9,-51],[-3,-102],[0,-35],[16,-23],[1,-24],[0,-30],[0,-23],[24,-38],[7,-33],[3,-16],[1,-11],[2,-41],[-4,-42],[-2,-69],[-7,-116],[-4,-44],[-31,-11],[-36,-14],[19,-29],[1,-24],[-24,3],[-16,-3],[-8,-16],[-20,-9],[24,-7],[17,5],[-9,-44],[-1,-7],[-17,-86]],[[82263,88451],[-24,-1],[-61,0],[-22,0],[-2,0],[-28,0],[-51,0],[-37,-1],[-57,-1],[-17,0],[-17,-1],[-38,0],[-14,-1],[-39,0],[-17,-1],[-35,0],[-23,-1],[-17,0],[-14,0],[-2,0],[-14,-1],[-24,0],[-17,0],[-34,-1],[-33,-1]],[[81626,88441],[0,7],[0,9],[30,7],[15,37],[-11,10],[-9,8],[0,16],[0,14],[26,50],[10,-17],[3,-1],[25,-4],[40,12],[3,14],[5,29],[-4,14],[-7,24],[12,39],[-34,5],[-2,21],[-1,16],[9,150],[13,34],[-10,61],[-4,26],[-16,62],[-9,36],[-4,39],[-4,34],[-2,28],[-1,4],[-3,122],[-6,33],[-33,39],[-28,9],[-39,15],[-32,43],[-21,46],[-2,4],[-1,19],[-1,34],[-1,19],[-4,38],[-6,19],[3,55],[-2,42],[-3,61],[-13,60],[-8,78],[-1,30],[6,19],[4,15],[-16,40],[33,-11],[-3,42],[-34,5],[-11,2],[-10,44],[30,82],[-6,32],[0,1],[-36,20],[-21,21],[-13,14],[18,20],[43,24],[0,1],[7,64],[26,46],[28,45],[22,32],[17,49],[16,34],[15,23],[1,2],[34,31],[34,16],[22,17],[30,4],[42,0],[61,-8],[44,-18],[-29,-21],[-20,-24],[26,-51],[32,8],[29,21],[34,15],[47,14],[70,2],[21,0],[-47,-229],[-1,-23],[-5,-156],[-4,-134],[18,-331],[7,-54],[2,-86],[7,-42],[5,-37],[21,-156],[15,-129],[9,-66],[8,-58],[5,-31],[4,-36],[9,-44],[14,-71],[8,-43],[6,-34],[91,-452]],[[81121,90823],[28,-7],[32,5],[-4,-15],[-2,-8],[22,-42],[45,-15],[4,-51],[-25,-45],[-15,-8],[-26,-14],[-23,-32],[-15,7],[-23,12],[-30,20],[-21,29],[-32,21],[-11,7],[-26,22],[-10,9],[5,0],[25,2],[31,20],[20,20],[21,20],[30,43]],[[79665,90684],[20,-18],[76,-87],[41,-40],[21,-41],[27,-33],[29,-4],[17,-2],[49,-1],[9,0],[88,4],[63,6],[42,-11],[15,-13],[-3,-30],[-2,-64],[-38,-10],[-57,49],[-42,3],[-18,-12],[-25,-3],[-3,2],[-32,19],[-17,13],[-30,5],[-13,3],[-48,16],[-21,37],[-91,68],[-14,6],[-23,48],[-27,47],[-37,12],[-14,5],[-66,13],[-63,-7],[-25,24],[-24,40],[-20,39],[23,45],[55,30],[35,-18],[33,-27],[25,-22],[85,-91]],[[80508,90746],[18,-40],[16,-53],[-44,22],[-32,15],[-31,16],[-36,14],[-32,26],[-14,-15],[24,-29],[38,-23],[65,-48],[-49,4],[-60,-34],[-85,4],[-55,-35],[-132,-21],[-53,-9],[-31,-3],[1,30],[11,28],[11,28],[15,39],[13,34],[15,35],[16,36],[14,28],[17,34],[42,69],[16,11],[15,9],[35,8],[32,-7],[46,-23],[36,-24],[25,-16],[31,-20],[45,-31],[33,-26],[24,-33]],[[80854,90870],[-8,-21],[-35,-9],[-44,-33],[10,-42],[37,-19],[52,-24],[1,0],[-3,-8],[-6,-17],[-32,-3],[-43,-14],[-11,-28],[25,-4],[25,11],[48,7],[23,0],[-13,-20],[-80,-19],[-18,-2],[-30,-11],[-29,-3],[-31,-1],[-36,14],[-21,26],[-32,77],[-14,38],[5,17],[6,15],[16,24],[20,-7],[1,0],[16,15],[5,4],[25,29],[40,-4],[32,27],[43,12],[21,19],[16,25],[20,15],[8,-26],[-3,-23],[-4,-28],[-2,-9]],[[80906,90971],[-21,-20],[-1,1],[-8,14],[-17,8],[-28,10],[3,6],[8,21],[10,13],[7,9],[10,0],[21,2],[18,-22],[10,-17],[-12,-25]],[[81058,91047],[1,-4],[-16,-27],[2,-23],[7,-39],[8,-15],[5,-8],[6,-2],[14,-4],[30,-33],[-1,-18],[-27,-3],[-2,-41],[-29,-1],[-13,1],[-4,0],[-15,-23],[5,-15],[2,-5],[21,-12],[-15,-4],[-4,-1],[-5,-2],[-12,-8],[-23,-1],[-4,0],[-31,-30],[-52,2],[-38,26],[-17,7],[-48,19],[1,7],[1,9],[48,18],[7,3],[16,28],[-4,24],[9,24],[10,31],[4,10],[25,8],[14,15],[-1,35],[2,20],[44,30],[17,6],[22,-7],[13,7],[9,18],[13,-8],[5,-14]],[[81717,91119],[7,-26],[10,-35],[14,-34],[1,-3],[-3,-6],[-11,-27],[-1,-14],[0,-18],[4,-6],[16,-23],[34,-50],[28,-23],[38,-11],[37,-16],[34,8],[30,27],[25,-96],[-41,18],[-36,12],[-52,9],[-26,5],[-28,6],[-28,5],[-39,-8],[-25,-5],[-11,8],[-15,11],[-25,-31],[-3,-3],[-29,-16],[-41,-45],[-22,-28],[-26,-16],[-8,-47],[-17,-32],[-31,-45],[-41,-46],[-50,-35],[-52,-5],[-37,11],[-29,12],[-40,25],[-24,7],[-3,44],[26,32],[4,5],[26,17],[20,13],[26,20],[4,-2],[15,-9],[18,16],[12,11],[40,29],[58,15],[1,24],[2,27],[42,-10],[27,-5],[18,-25],[22,37],[-24,29],[-4,5],[14,25],[4,9],[22,17],[-8,7],[-23,18],[-1,1],[-40,-2],[-46,42],[-4,35],[-43,25],[-28,36],[-42,13],[2,22],[1,6],[11,43],[-30,6],[-20,-27],[-20,34],[-3,5],[-5,33],[-6,43],[14,62],[8,41],[5,11],[7,20],[6,3],[6,4],[15,20],[16,20],[9,10],[19,24],[37,21],[24,-38],[14,-10],[26,-19],[6,-4],[51,-24],[44,-7],[30,-6],[49,-11],[37,-53],[6,-52],[-7,-32],[13,-28],[12,-28],[1,-2]],[[81727,92155],[-103,-54],[-26,36],[-15,22],[47,26],[-85,35],[117,-5],[65,-60]],[[81280,92422],[29,-54],[21,-22],[34,-32],[64,-55],[49,-35],[21,-20],[32,-42],[53,-72],[11,-16],[39,-7],[11,-2],[64,-12],[34,1],[28,-9],[87,-26],[54,-957],[-70,-1],[-43,-7],[-2,4],[-11,25],[0,50],[-5,37],[2,62],[2,27],[-15,38],[-21,19],[-12,34],[3,42],[7,53],[-29,-42],[-1,-17],[0,-9],[-3,-16],[-3,-11],[-25,4],[-32,8],[-35,14],[-26,5],[-32,5],[-44,10],[-21,12],[-19,14],[-28,25],[-21,23],[-31,15],[-10,44],[-1,47],[16,36],[-28,20],[-13,45],[22,17],[-16,23],[-19,19],[-26,6],[-24,16],[-19,37],[-9,13],[-14,21],[-8,51],[8,108],[9,14],[41,33],[-1,28],[-29,23],[-17,14],[-5,4],[-4,4],[-17,14],[-16,26],[-8,15],[-24,48],[-4,7],[-56,77],[-23,28],[-12,14],[-4,8],[-3,7],[11,28],[31,0],[55,10],[27,34],[24,44],[13,-4],[14,-5],[23,-37]],[[81165,92411],[-50,-2],[-8,14],[37,61],[41,77],[8,22],[11,17],[15,4],[7,2],[13,-18],[15,-11],[8,-11],[10,-13],[9,-21],[3,-7],[-26,-39],[-7,-1],[-32,-2],[-31,-43],[-23,-29]],[[80628,92946],[68,-66],[28,-27],[-9,-25],[-43,-29],[-57,-47],[-18,-15],[25,-53],[13,-26],[3,-2],[40,-17],[47,-6],[34,-54],[17,-29],[-2,-20],[-1,-7],[-25,-17],[-57,-40],[-9,-16],[-13,-26],[13,-36],[35,-12],[32,-25],[14,-24],[-9,-28],[-25,-8],[-31,18],[-28,-2],[-24,-6],[-12,10],[-5,3],[-3,15],[-7,25],[-20,1],[-16,-19],[-1,-20],[-1,-4],[-10,-11],[-23,-16],[-20,-20],[-4,11],[-8,20],[-22,3],[-13,9],[-11,8],[-35,11],[7,19],[3,11],[4,8],[10,29],[-1,40],[-54,39],[-99,-21],[-30,-29],[-4,-9],[-6,-14],[-20,-4],[-6,-18],[-3,-8],[-11,-29],[-20,-12],[-17,-24],[-11,-10],[-3,16],[15,24],[0,46],[0,46],[-22,20],[-21,5],[-12,3],[-7,4],[-14,6],[18,24],[34,27],[1,5],[1,13],[-10,21],[-20,8],[-29,10],[-2,31],[9,8],[9,8],[30,-4],[46,-3],[38,7],[35,12],[35,21],[2,2],[22,18],[26,26],[21,33],[11,16],[14,31],[1,3],[17,37],[7,42],[21,31],[15,21],[19,-8],[14,-5],[53,17],[34,29],[43,0]],[[80769,93079],[3,-27],[-8,7],[-21,20],[-39,17],[-56,7],[-27,13],[-12,5],[-9,9],[-22,23],[-8,29],[-6,19],[-28,34],[-11,2],[-17,4],[-10,3],[-13,4],[22,31],[32,2],[44,-14],[15,-4],[20,-7],[26,-8],[27,-14],[35,-24],[36,-36],[23,-36],[2,-43],[2,-16]],[[79347,93200],[-17,-17],[37,11],[25,7],[53,28],[62,40],[27,2],[43,3],[13,-26],[-4,-22],[-19,-41],[-3,-4],[-8,-13],[-39,-75],[-9,-18],[1,-26],[-2,-25],[2,-6],[6,-21],[12,-23],[15,-43],[30,-14],[7,-4],[11,-13],[14,-18],[27,-23],[35,-24],[17,-8],[8,-4],[5,-2],[17,-10],[34,5],[57,3],[67,32],[29,35],[32,30],[44,18],[19,-10],[11,-6],[1,-49],[-7,-50],[0,-34],[15,-50],[4,-12],[9,-27],[18,-16],[9,-27],[17,-24],[8,-15],[4,-6],[-7,-22],[13,-18],[11,-15],[39,-17],[-47,-49],[-1,-18],[-2,-19],[35,-18],[35,-1],[8,-30],[5,-16],[-18,-37],[-5,-12],[5,-46],[25,-12],[32,12],[12,16],[11,17],[10,11],[8,9],[2,13],[1,10],[5,-7],[8,-13],[23,-1],[14,7],[13,5],[17,-12],[4,-3],[25,-1],[6,-3],[25,-12],[26,-18],[24,-4],[15,-3],[9,-6],[12,-9],[26,-8],[5,-2],[4,-10],[5,-14],[7,-18],[2,-6],[2,-4],[7,-17],[5,39],[2,19],[18,9],[20,19],[18,36],[2,3],[13,-34],[32,-17],[6,2],[24,10],[37,-14],[30,-2],[4,0],[23,9],[10,-31],[23,-28],[26,4],[50,2],[30,-21],[-6,-20],[-23,-32],[-29,-26],[-23,-49],[-2,-24],[33,-18],[21,-17],[-8,-20],[-6,-19],[11,-33],[16,-22],[23,-2],[-22,-29],[9,-35],[23,-6],[6,-27],[5,-10],[7,-13],[6,-3],[13,-7],[-9,19],[-2,27],[-2,26],[-15,12],[-17,-4],[4,7],[6,11],[4,14],[8,22],[-4,19],[-30,-2],[20,21],[17,34],[-46,40],[-25,17],[-18,11],[25,29],[9,23],[48,72],[-4,34],[-45,19],[-34,11],[-2,1],[-24,1],[-25,0],[0,77],[-8,19],[-18,39],[-35,23],[-12,17],[54,38],[17,37],[0,1],[6,12],[-22,49],[-38,72],[-5,4],[-9,9],[-33,31],[-7,17],[-6,15],[53,98],[2,10],[8,30],[-40,70],[-55,57],[-82,6],[-64,-49],[-26,0],[-22,27],[-9,25],[-3,7],[-3,17],[-3,19],[-2,59],[9,60],[17,6],[28,9],[41,-32],[34,-34],[12,-9],[18,-13],[8,-4],[26,-12],[65,-24],[38,-38],[28,-40],[35,-51],[30,-37],[31,-37],[24,-27],[2,-5],[14,-36],[2,-4],[44,-20],[29,-16],[28,-18],[27,-12],[30,-24],[35,-21],[37,-19],[39,-19],[-6,-40],[-86,-164],[-23,-58],[3,-43],[40,-54],[54,-65],[19,-27],[5,-21],[-20,-3],[-19,4],[2,23],[-18,20],[-10,-27],[13,-39],[34,-4],[30,3],[17,-5],[18,-42],[6,-96],[-10,-39],[-1,-20],[-4,-69],[0,-1],[22,-57],[30,-51],[12,-18],[12,-17],[0,-48],[-33,-11],[-22,-5],[-4,12],[-4,12],[-4,3],[-14,9],[1,-23],[1,-19],[-3,-13],[-1,-9],[11,-9],[17,0],[7,17],[44,2],[1,-28],[0,-23],[39,-105],[-20,-43],[-12,-28],[-42,100],[-29,18],[-12,-25],[5,-46],[-37,-33],[1,-1],[7,-29],[-2,-8],[-11,-46],[36,-3],[33,7],[21,-19],[-5,-20],[-6,-24],[-9,-25],[-25,-9],[-8,-39],[18,-7],[9,-12],[13,-59],[22,-66],[4,-27],[2,-9],[0,-9],[1,-31],[-28,-26],[-25,-27],[-20,-36],[-33,6],[-34,6],[-22,16],[-6,22],[-4,14],[11,27],[-1,11],[0,11],[-23,17],[0,8],[-1,13],[-12,12],[-7,7],[-3,36],[-3,1],[-14,3],[-25,-7],[-13,-8],[-6,-4],[-30,0],[12,19],[-7,24],[-21,2],[-3,-19],[-1,-9],[-1,-11],[-6,-1],[-18,-3],[7,32],[-5,3],[-8,5],[-29,-18],[-22,-1],[-21,-14],[-25,-16],[-21,-33],[-24,-37],[17,-43],[-1,-18],[-21,-19],[-43,-18],[-22,-2],[2,24],[-18,44],[-27,12],[-18,7],[0,9],[1,26],[4,32],[0,13],[0,20],[27,25],[43,6],[6,5],[17,15],[23,21],[-4,14],[-4,11],[34,-10],[24,7],[7,2],[-16,19],[0,16],[20,5],[-11,23],[-16,2],[-18,-29],[-3,-11],[-1,-5],[-14,-1],[-1,3],[-9,26],[2,8],[4,17],[8,5],[17,12],[5,13],[2,5],[0,16],[-11,6],[-7,4],[-16,-1],[-8,-29],[-3,-27],[-2,-13],[-5,-28],[-5,-8],[-8,-13],[-28,9],[-22,18],[-41,7],[-21,28],[6,18],[18,7],[5,32],[2,14],[20,3],[84,76],[5,34],[14,88],[-59,-110],[-32,-15],[-1,-3],[-18,-30],[-19,-4],[-11,-33],[-3,-35],[-16,-6],[-12,-22],[-4,3],[-10,7],[-31,7],[-4,42],[-20,27],[0,1],[-30,20],[0,54],[-25,9],[-17,-15],[-12,22],[-15,19],[-8,11],[-1,-33],[-32,-14],[-26,-16],[19,-24],[7,1],[12,2],[4,-2],[10,-5],[15,-7],[17,-22],[16,-19],[12,2],[5,1],[11,-11],[0,-25],[-6,-19],[-5,-5],[-15,-13],[-4,8],[-7,15],[-15,-3],[-11,-7],[-18,-10],[6,-3],[15,-7],[27,-19],[13,-4],[7,10],[4,8],[10,-13],[10,4],[6,2],[9,7],[12,10],[11,-12],[9,-8],[12,-15],[15,-16],[31,-21],[12,-8],[44,-7],[28,-13],[-15,-14],[-18,-16],[-13,-13],[-19,-19],[-1,-59],[-17,-52],[-3,-11],[-6,-40],[-22,-38],[-1,-50],[-33,-46],[-9,4],[-26,10],[-24,20],[-28,22],[-29,18],[-16,10],[-16,10],[-29,14],[-24,12],[-26,16],[-22,15],[-9,7],[-8,9],[-3,5],[-15,18],[-1,4],[-3,16],[6,5],[11,9],[23,-9],[23,2],[6,-3],[35,-19],[62,-21],[25,13],[23,5],[18,44],[-1,45],[3,13],[3,14],[-30,26],[-15,-48],[-60,-2],[-13,-31],[-7,-16],[-44,40],[-29,3],[-24,7],[-16,-26],[-16,-26],[-26,-1],[-32,17],[1,27],[0,17],[-19,-6],[-23,21],[-20,-7],[-1,-9],[0,-7],[16,-11],[19,-3],[-2,-27],[1,-17],[5,-1],[21,-2],[14,0],[29,-13],[20,-36],[-45,-10],[-27,-1],[-38,-19],[-3,-3],[-30,-26],[-3,-4],[-33,-44],[-37,-35],[3,-32],[-8,-28],[-14,-42],[-12,-43],[-22,-37],[-21,-44],[-13,-45],[-20,-48],[-19,2],[-28,4],[-36,34],[-20,28],[-25,44],[-39,53],[-40,45],[-34,40],[-26,23],[-23,20],[-29,23],[-11,23],[9,12],[13,16],[12,8],[27,19],[7,29],[4,19],[-33,30],[-10,9],[-23,51],[-10,39],[-12,46],[-10,38],[-15,45],[7,52],[-37,-28],[1,-35],[-14,-51],[15,-51],[8,-54],[11,-49],[24,-31],[-29,3],[-30,-40],[-21,-9],[-13,-6],[-26,14],[-39,14],[-37,11],[-27,16],[-1,3],[-9,25],[-35,11],[-26,10],[-31,12],[-10,27],[11,35],[-3,73],[-10,27],[-37,42],[-29,44],[-35,2],[-61,-8],[-37,-3],[-27,-1],[-46,-11],[37,-21],[44,-5],[50,-13],[51,-29],[27,-59],[6,-68],[14,-48],[16,-44],[31,2],[35,-29],[42,3],[2,-5],[13,-33],[1,-40],[-29,-10],[-39,-16],[-34,-26],[-57,-40],[-29,-17],[-55,-34],[-20,-15],[-57,-41],[-8,-16],[-31,-27],[-35,2],[-27,-9],[-27,1],[-22,25],[-1,30],[-27,-2],[-35,3],[-28,17],[-34,-14],[-10,-39],[-2,-1],[-29,-16],[-5,2],[-38,13],[-36,29],[-23,30],[-48,33],[-13,8],[-4,3],[-44,27],[-17,24],[-15,23],[-21,37],[10,50],[53,4],[-25,49],[-33,35],[-23,24],[-18,18],[-15,7],[-64,8],[-22,2],[-24,-2],[-38,-6],[-44,-28],[-31,-29],[-75,14],[-34,7],[-49,0],[-35,-3],[-69,-2],[-49,14],[-55,-14],[-49,0],[-49,0],[-29,21],[20,-37],[31,-5],[39,-2],[41,0],[42,9],[49,-11],[56,0],[34,0],[51,-3],[43,0],[24,-3],[28,-3],[30,-26],[32,-12],[43,10],[36,43],[44,-1],[26,-15],[18,-42],[19,-34],[-6,-34],[-8,-26],[-11,-40],[-14,-62],[-8,-40],[-2,-30],[-25,-23],[47,21],[0,30],[22,53],[23,31],[32,-16],[16,-27],[26,-23],[13,-22],[2,-3],[27,-15],[27,-27],[8,-44],[-12,-35],[-18,-46],[32,15],[23,48],[23,-3],[28,-15],[27,-23],[26,-11],[37,0],[12,23],[11,21],[10,3],[22,8],[12,-10],[37,-14],[26,-34],[78,-32],[12,-51],[4,-30],[-4,-41],[3,-36],[2,-31],[4,-32],[42,-26],[38,-25],[37,-40],[23,-53],[19,-49],[11,-35],[-1,-35],[-9,-52],[-22,-107],[-21,-52],[-22,-27],[-21,-82],[7,-98],[0,-7],[-8,-87],[-31,-49],[-4,0],[-32,-1],[-30,4],[-30,5],[-31,10],[-34,1],[-16,10],[-81,28],[-41,16],[-50,6],[-34,8],[-5,2],[-42,1],[-51,-8],[-5,-3],[-41,-31],[-40,-35],[-24,-46],[-3,-6],[-23,-52],[-12,-33],[-42,-13],[-68,-18],[-32,-17],[-26,-27],[-24,-20],[-33,-25],[-11,-22],[-28,-29],[-28,-51],[-26,-38],[-42,-55],[-33,-30],[-29,-14],[14,-53],[6,-32],[-34,-18],[-30,-31],[-55,-45],[-15,-15],[-12,-11],[-14,-17],[-10,-11],[-27,-42],[-25,-37],[-38,4],[-20,29],[-28,30],[-5,-35],[-4,-30],[40,-26],[28,-28],[-6,-39],[42,22],[48,-17],[13,-28],[6,-28],[20,-28],[25,-29],[19,-43],[30,-8],[-2,-42],[1,-8],[9,-49],[-1,-85],[3,-49],[24,-30],[12,25],[8,16],[6,44],[-15,37],[6,64],[4,28],[4,21],[7,46],[-28,40],[-36,39],[-28,12],[-17,29],[-10,48],[-20,40],[1,51],[10,20],[4,8],[9,34],[0,1],[31,18],[30,1],[29,1],[30,29],[39,50],[38,48],[30,-9],[13,-28],[-5,-42],[-22,-37],[-19,-34],[-9,-30],[15,-41],[23,-28],[12,-25],[11,-30],[17,-38],[24,-31],[30,-27],[27,-43],[-19,-30],[23,-33],[30,-15],[31,-13],[61,-47],[28,-21],[25,-17],[42,-32],[31,-10],[38,3],[48,-9],[23,-17],[9,-55],[-11,-58],[-36,-34],[-16,-49],[0,-48],[-6,-46],[-46,-18],[-44,-1],[-31,31],[-29,12],[-23,-13],[4,-49],[5,-52],[-4,-55],[0,-36],[-7,-55],[-29,-54],[-26,-29],[-37,-10],[-41,-34],[-11,-46],[-7,-20],[-6,0]],[[78166,87499],[-37,2],[-18,1],[-21,1],[-21,1],[-23,-2],[-26,1],[-15,-24],[7,-13],[-1,-1],[-1,0],[-17,10],[-23,-1],[-23,24],[-5,0],[-32,0],[-2,0],[-139,-2],[-48,0],[-84,29],[-23,8],[-5,-4],[-6,-6],[2,-4],[-62,-50],[-7,0],[-188,1],[-23,0],[-119,0],[-100,-2],[-17,0],[-182,-1],[-60,-1],[-31,0],[-47,-1],[-59,1],[-24,0],[-14,0],[-281,-6],[-42,0],[-104,-1],[-185,-3],[-20,-1],[-196,-6],[-44,-1],[-254,-6],[-139,-3],[-124,-3],[-30,0],[-52,-2],[-38,-1],[-5,0],[-48,0],[-116,-3],[-42,-1],[-35,1],[-16,-1],[-119,-4],[-51,-1],[-37,-1],[-56,1],[-52,2],[-84,0],[-82,1],[-154,2],[-31,0],[-49,-2],[-24,0],[-81,-1],[-17,0],[-36,-1],[-63,3],[-39,1],[-25,0],[-22,0],[-15,1],[-22,2],[-1,0],[-141,0],[-163,1],[-78,-1]],[[73459,87432],[-1,30],[2,77],[0,116],[0,3],[4,379],[2,171],[1,41],[0,19],[-1,36],[-5,390],[0,73]],[[73459,87432],[0,-343],[0,-119],[0,-128],[0,-86]],[[73459,86756],[-75,2],[-149,-3],[-104,1],[-234,1],[-85,0],[-130,-1],[-90,-1],[-125,2],[-47,1],[-187,-2]],[[72233,86756],[-38,0],[-225,-3],[-153,-1],[-153,-2],[-14,0],[-331,-3],[-45,3],[-34,-1],[-42,0],[-39,0],[-136,-5],[-200,-7],[-140,0],[-90,0],[-259,-2],[-51,-1],[-66,0],[-54,-1],[-36,0],[-113,-4],[-24,-1],[-67,-1],[-15,-1],[-43,-1],[-14,1],[-35,0],[-77,-1],[-187,0],[-50,0],[-29,0],[-20,-1],[-15,0],[-56,0],[1,-27],[-80,-1],[-87,-2],[-37,-2],[-51,-1],[-33,0],[-82,3],[-55,-1],[-7,0],[-64,-1],[-10,0],[-53,-3],[-61,-1],[-28,-1],[-101,-2],[-40,-2],[-16,0],[-34,-1],[-132,-3],[-44,0],[-19,0],[-75,0],[-49,-5],[-145,-21]],[[68064,93566],[76,-5],[2,0],[79,-6],[35,-2],[175,-13],[35,-3],[7,0],[50,-3],[38,-3],[39,-3],[54,-4],[103,-8],[18,-2],[115,-7],[37,-3],[17,-1],[24,-2],[37,-3],[14,-1],[14,-1],[17,-1],[26,-3],[93,-6],[45,-3],[53,-4],[25,-2],[21,-2],[31,-2],[60,-5],[206,-15],[280,-20],[155,-13],[18,-1],[6,0],[69,-5],[24,-2],[13,-2],[74,-5],[71,-6],[52,-4],[22,-1],[5,0],[22,-2],[34,-2],[19,-2],[60,-4],[45,-4],[20,-1],[6,-1],[42,-5],[66,-4],[72,-4],[38,-5],[43,-4],[27,-2],[15,-1],[27,-2],[25,-2],[22,-2],[61,-4],[41,-4],[17,-2],[3,0],[49,-4],[17,-1],[115,-9],[7,-15],[-5,-17],[-16,-14],[-13,-5],[-13,-4],[-26,0],[-13,0],[-14,-2],[-24,-10],[-22,-16],[-22,-14],[-22,-15],[-20,-18],[-15,-17],[-12,-14],[-17,-3],[-9,-11],[2,-30],[4,-23],[0,-17],[-1,-19],[-3,-21],[-4,-17],[-18,-17],[-19,-13],[-15,-14],[-9,-16],[-4,-21],[1,-19],[0,-25],[-9,-11],[-3,-21],[0,-22],[9,-17],[3,-15],[6,-15],[16,-22],[8,-14],[14,-14],[13,-17],[1,-1],[10,-7],[14,-17],[15,-14],[14,-12],[4,-20],[5,-38],[3,-8],[1,-21],[4,-19],[4,-24],[10,-57],[4,-22],[4,-27],[11,-17],[2,-2],[21,-31],[2,-3],[1,-1],[10,-10],[8,-6],[34,-23],[65,-45],[21,-14],[26,-18],[3,-2],[-2,0],[-12,0],[6,-23],[15,-28],[25,-32],[4,-5],[18,-14],[23,-27],[4,-6],[10,-17],[1,0],[14,-24],[2,-2],[18,-23],[13,-19],[0,-1],[-1,-1],[0,-2],[0,-3],[0,-2],[0,-17],[0,-8],[0,-1],[0,-2],[0,-1],[3,-52],[2,-30],[0,-2],[2,-12],[1,-13],[3,-24],[0,-5],[-45,-82],[-3,-6],[-2,-4],[-5,-7],[-15,-50],[-16,-56],[-3,-12],[1,-46],[2,-10],[11,-17],[4,-4],[11,0],[11,-4],[1,-2],[4,-31],[1,-7],[3,-118],[0,-9],[-7,-28],[-6,-15],[-3,-8],[-17,-63],[0,-1],[-27,-40],[-1,-1],[-2,-1],[-3,-3],[-11,-20],[-1,-13],[-4,-91],[0,-19],[-1,-4],[15,-33],[1,-2],[2,-13],[5,-37],[1,-77],[0,-4],[3,-5],[11,-9],[19,-63],[4,-7],[2,-5],[20,-38],[2,-3],[5,-23],[0,-3],[0,-5],[-9,-5],[-9,-6],[25,-34],[1,-6],[3,-20],[1,-9],[7,-25],[4,-18],[42,-74],[2,-3],[33,-28],[3,3],[4,6],[7,2],[1,-1],[5,-2],[5,-8],[10,-21],[0,-1],[17,-39],[0,-3],[0,-3],[0,-2],[-2,-2],[-11,-27],[-1,-1],[0,-53],[30,-36],[7,-7],[4,-1],[4,5],[2,3],[7,15],[16,11],[2,2],[15,7],[19,3],[0,-1],[3,-3],[0,-1],[0,-2],[1,-20],[11,-53],[37,-59],[12,-20],[5,-1],[58,-37],[3,-2],[14,-14],[2,-2],[2,-3],[-1,-7],[0,-2],[0,-12],[11,-26],[12,-20],[6,-9],[20,-14],[64,-14],[32,-2],[13,-1],[1,3],[47,29],[62,20],[40,9],[142,49],[2,-3],[14,-25],[25,-43],[31,22],[31,21],[4,2],[16,10],[33,22],[0,1],[2,3],[0,7],[51,-2],[5,0],[7,-1],[60,-25],[4,1],[11,10],[6,13],[0,3],[3,25],[1,3],[9,4],[29,2],[2,0],[4,0],[10,-14],[6,-9],[12,-16],[6,-9],[3,14],[29,15],[2,1],[1,0],[13,5],[31,9],[29,-14],[2,-1],[9,-8],[-1,-31],[-1,-19],[0,-3],[13,2],[7,1],[1,1],[47,-27],[19,-12],[7,-3],[22,3],[7,0],[14,2],[14,3],[1,1],[9,0],[77,-10],[9,-8],[6,-9],[3,-4],[3,-3],[5,-3],[1,0],[4,0],[3,0],[11,5],[46,20],[26,8],[5,2],[22,3],[5,1],[4,-2],[3,-2],[13,-9],[22,-17],[7,-8],[6,-8],[2,-4],[2,-2],[12,-25],[6,-7],[1,-1],[11,-1],[4,13],[15,33],[13,28],[2,2],[33,-4],[9,-3],[6,-6],[10,-10],[7,2],[101,48]],[[27352,84812],[40,-8],[13,-56],[14,-40],[16,-45],[-39,19],[-91,82],[-22,43],[35,0],[34,5]],[[27714,85648],[-2,0],[-34,28],[7,3],[-6,31],[52,10],[1,-39],[-18,-33]],[[29509,85013],[-1,-30],[0,-12],[-1,-8],[0,-23],[-1,-43],[0,-66],[1,-28],[0,-35],[-1,-53],[0,-35],[-1,-58],[1,-59],[2,-19],[2,-60],[0,-2],[4,-38],[7,-89],[-1,-113],[-1,-34],[4,-63],[2,-23],[2,-84],[2,-136],[1,-55],[5,-55],[3,-45],[-3,-36],[-3,-28],[2,-19],[6,-46],[1,-16],[-2,-26],[-1,-17],[2,-30],[2,-31],[1,-15],[2,-20],[0,-13],[1,-24],[-3,-21]],[[29543,83405],[-40,16],[-25,25],[-36,35],[-36,37],[-43,40],[-43,39],[-42,33],[-1,29],[-49,8],[-23,13],[-20,14],[-28,18],[-42,24],[-34,16],[-38,16],[-29,10],[-21,7],[-33,-4],[-34,4],[-28,8],[-32,13],[-45,21],[-39,17],[-26,11],[-29,12],[-44,14],[-55,10],[-32,1],[-29,-1],[-55,-10],[-37,-7],[-28,-3],[-34,6],[-36,10],[-39,0],[-43,20],[-40,20],[-45,22],[-43,19],[-32,22],[-22,17],[-26,18],[-28,15],[-34,19],[-40,31],[-29,25],[-55,45],[-45,42],[-39,38],[-25,29],[39,4],[56,4],[54,8],[25,4],[26,-6],[-3,-26],[2,-27],[6,-38],[23,-25],[24,-23],[47,-26],[50,-15],[27,-23],[53,-14],[13,-31],[29,-9],[35,-33],[46,-15],[93,24],[25,-4],[71,-25],[11,20],[14,-13],[24,-3],[27,-13],[25,22],[-19,25],[-73,22],[-40,-27],[-14,-4],[-46,22],[-65,22],[-41,27],[-22,2],[-44,18],[-35,21],[-44,25],[-29,28],[-21,17],[-28,14],[-17,20],[-12,42],[7,36],[23,-26],[13,-13],[10,-30],[38,-32],[37,-28],[81,-40],[59,-21],[110,-11],[5,3],[10,6],[-31,13],[-46,21],[-50,15],[-42,18],[-45,31],[-68,75],[-28,42],[-36,35],[-35,29],[-30,25],[-22,1],[-35,12],[-30,21],[-35,31],[-43,43],[-32,34],[-7,6],[-26,22],[-51,40],[-30,22],[-23,20],[-24,32],[-28,40],[-40,32],[-26,27],[-38,42],[-8,45],[-30,39],[-21,28],[-17,26],[-101,51],[-101,75],[-74,52],[-18,8],[-34,-10],[4,36],[-29,40],[-51,36],[-39,64],[-48,32],[-66,25],[26,-62],[23,-48],[48,-22],[1,-54],[-4,-26],[16,-24],[38,-21],[37,13],[7,-27],[-1,-38],[7,-30],[14,-39],[6,-41],[-90,73],[-104,169],[-169,183],[-42,34],[-46,36],[-57,1],[-11,-30],[-18,25],[-40,16],[-313,179],[-144,75],[-142,68],[-122,56],[-171,78],[-152,82],[-184,127],[-172,150],[-62,54],[-2,42],[32,17],[0,47],[36,14],[28,-19],[34,-42],[42,-2],[42,-31],[12,-73],[-6,-63],[0,-33],[36,-24],[50,-14],[50,-47],[28,14],[40,-49],[58,-61],[127,-49],[66,-29],[54,7],[64,-47],[92,-2],[-12,-49],[42,12],[-4,-57],[38,19],[66,2],[18,-58],[50,-17],[77,-44],[40,-25],[43,-1],[36,-22],[54,-28],[64,-37],[38,-62],[43,-27],[-1,47],[43,-20],[17,46],[-25,32],[-31,10],[-26,47],[-39,39],[-33,26],[-34,23],[-41,25],[-37,23],[-30,14],[-11,12],[-85,7],[-76,96],[-40,17],[-19,27],[-24,40],[-33,36],[-41,28],[-30,15],[-46,18],[-43,15],[-24,12],[-23,15],[-29,15],[-41,29],[-25,29],[-23,22],[-30,34],[-38,40],[-30,43],[-19,20],[-14,28],[4,63],[15,34],[38,31],[45,26],[39,42],[22,44],[24,45],[41,34],[22,-53],[27,-58],[4,-30],[-26,-18],[1,-16],[18,-38],[-22,-1],[3,-17],[20,-10],[17,23],[9,24],[5,20],[15,8],[26,-16],[4,-38],[1,-28],[-24,-13],[-9,-18],[7,-24],[26,-29],[18,18],[-17,12],[1,18],[-12,9],[35,-5],[29,-11],[21,-8],[21,18],[23,19],[30,1],[33,-12],[28,2],[20,-34],[28,-30],[34,-19],[29,-1],[38,16],[34,25],[36,8],[34,26],[36,33],[33,-33],[-3,-42],[-16,-41],[-8,-67],[-1,-56],[17,-33],[27,-21],[28,-24],[-10,-44],[-31,7],[-29,10],[-31,15],[-31,2],[-3,-50],[33,16],[25,-19],[42,-13],[31,-20],[38,-15],[-2,48],[39,7],[0,-3],[-1,-51],[20,-41],[31,-35],[42,-27],[54,11],[47,30],[38,16],[38,12],[38,-5],[3,63],[35,-41],[34,-24],[39,-7],[38,15],[25,-18],[35,-14],[33,7],[32,-16],[33,-1],[29,15],[11,-49],[4,-47],[21,-46],[25,-44],[36,6],[35,-6],[29,-19],[14,-3],[22,-3],[34,-1],[43,-4],[41,3],[52,-23],[-18,-38],[13,-35],[36,-18],[3,-49],[11,-63],[-15,-39],[-29,-17],[-30,-14],[-35,-18],[0,-1],[9,-40],[28,12],[46,-20],[57,-15],[43,1],[38,-21],[37,-15],[40,-13],[43,-9],[32,-17],[9,-63],[0,-61],[39,-29],[-31,-26],[13,-36],[9,-37],[35,1],[43,13],[35,1],[9,-30],[-13,-30],[40,-24],[38,-20],[48,-7],[22,-13],[19,-27],[28,-47],[43,-14],[34,2],[35,14],[35,-19],[28,-19],[25,-18],[12,-36],[24,-17],[37,18],[40,28],[62,13],[41,0],[43,1],[30,-4],[34,-26],[29,-14],[29,-3],[44,5],[53,22],[30,23],[21,26],[28,22],[23,2],[15,20],[-39,22],[-45,-4],[-37,-8],[-24,-19],[-42,-12],[-12,30],[0,36],[-3,38],[-30,19],[39,24],[47,11],[-15,32],[18,29],[-2,40],[39,16],[27,9],[28,21],[30,21],[13,-40],[30,-49],[30,-26],[48,-21],[42,-20],[42,14],[61,34],[40,30],[44,-21],[31,-16],[18,-24],[5,-38],[22,-47],[31,12]],[[29526,87649],[0,-42],[0,-37],[0,-4],[0,-17],[-1,-78],[0,-19],[1,-98],[2,-107],[1,-49],[0,-21],[0,-244],[-2,-22],[1,-114],[-2,-113],[-3,-136],[-2,-68],[0,-39],[0,-20],[-1,-45],[-1,-96],[-1,-28],[1,-41],[1,-30],[1,-48],[0,-46],[0,-16],[0,-20],[0,-45],[-1,-27],[0,-36],[0,-8],[0,-10],[-1,-44],[-1,-20],[1,-27],[-2,-32],[-2,-55],[0,-14],[-1,-63],[0,-69],[0,-31],[0,-104],[-1,-106],[0,-28],[-2,-172],[-1,-45]],[[29510,85115],[-31,36],[-22,32],[-33,23],[-34,-7],[-22,45],[26,15],[33,17],[40,17],[30,68],[-39,-8],[-41,-16],[-38,11],[-23,37],[-32,-35],[-32,-18],[-45,-15],[-38,-16],[-26,-11],[-23,35],[-45,20],[-39,29],[-52,19],[-57,27],[-40,18],[-19,33],[21,19],[19,54],[8,40],[-15,22],[19,31],[17,31],[15,36],[8,33],[-30,3],[-23,-54],[-22,-27],[-21,-17],[-22,-31],[-9,-44],[0,-48],[-12,-46],[-23,-53],[-1,-34],[15,-38],[-12,-51],[-26,-27],[-30,-22],[-11,-41],[-28,-34],[-34,-25],[-18,-28],[-15,-29],[-16,-42],[-12,-41],[-28,5],[-24,11],[-25,3],[-30,-2],[-38,18],[-27,10],[-31,-9],[-28,-14],[-35,-2],[-40,5],[-1,32],[-2,26],[-41,-15],[-10,34],[1,33],[3,35],[-1,42],[-8,34],[-29,28],[-28,15],[-6,23],[-6,41],[-2,67],[-1,59],[-28,22],[-30,20],[8,42],[0,29],[-6,35],[-8,44],[-3,40],[31,37],[-10,50],[23,12],[48,-14],[-3,48],[-26,8],[-5,34],[12,37],[-9,32],[4,39],[-40,-23],[-30,-31],[-26,1],[-59,19],[-30,2],[-25,30],[-43,9],[-37,15],[-24,-9],[-49,-7],[-43,-13],[-33,-3],[-11,43],[3,45],[11,44],[-13,66],[-6,47],[-8,45],[-2,46],[39,29],[5,55],[-20,37],[35,21],[14,30],[31,16],[19,39],[39,4],[42,18],[33,1],[13,20],[12,18],[-44,1],[-27,-6],[-21,3],[-37,-7],[-32,14],[-22,-16],[-12,-33],[-29,-11],[-14,-42],[-58,-14],[-32,18],[-25,31],[-4,-26],[10,-24],[11,-29],[30,-29],[-12,-37],[-23,-22],[-30,29],[-38,40],[-43,35],[-72,-13],[-40,2],[-41,-3],[-7,35],[-33,10],[-7,-38],[-30,-43],[-47,-15],[-9,36],[5,52],[11,46],[-39,40],[-30,38],[-24,50],[-8,24],[-5,15],[-20,-39],[-6,-40],[31,-22],[23,-38],[37,-34],[-16,-38],[-15,-43],[-22,-25],[-23,-20],[5,-42],[-47,-28],[-46,-8],[-37,-1],[-44,-12],[-45,18],[-32,9],[-36,3],[-27,-2],[-31,-16],[-25,-22],[-31,-43],[-29,-56],[-26,-52],[-27,33],[-2,3],[13,60],[22,44],[29,26],[23,19],[30,18],[11,46],[-33,-13],[-35,-24],[-24,-9],[-30,25],[26,27],[34,57],[-25,32],[-25,-36],[-27,30],[-19,-31],[-35,14],[-17,47],[-27,40],[-16,61],[-36,5],[-47,-1],[-34,13],[-23,7],[-42,-18],[-44,-10],[-27,41],[39,22],[21,17],[-28,29],[29,37],[16,52],[-34,-22],[-12,28],[-37,-8],[11,-54],[-34,-11],[20,-29],[-63,-14],[19,-46],[25,-20],[-19,-34],[-50,-11],[-41,10],[-28,2],[-5,30],[-11,33],[-8,42],[-32,24],[-32,20],[-45,1],[-18,34],[-12,31],[0,31],[26,-3],[8,13],[14,14],[10,24],[-11,16],[-20,-23],[-3,-21],[-16,3],[-21,-16],[-47,-7],[-22,37],[8,25],[-31,21],[-32,45],[-41,19],[-32,11],[-43,16],[-52,36],[-33,-9],[-44,6],[-52,1],[-47,15],[-35,4],[-21,0],[-29,6],[-19,38],[7,38],[-35,45],[-16,35],[-23,-4],[-25,8],[-37,12],[-27,20],[-30,10],[-44,-4],[-33,-9],[-30,-20],[-40,-12],[-25,0],[-21,2],[-4,54],[1,28],[6,25],[-15,42],[9,4],[41,17],[43,21],[30,27],[40,25],[42,13],[25,-6],[5,45],[31,41],[32,10],[31,27],[31,25],[3,49],[20,44],[24,23],[34,8],[36,2],[38,-10],[-39,43],[1,54],[26,40],[27,31],[30,-51],[33,-19],[-9,42],[33,19],[36,6],[25,-15],[8,50],[-31,18],[-36,18],[12,56],[-4,64],[-8,37],[8,30],[39,3],[30,-27],[30,-34],[38,27],[22,44],[-22,24],[16,25],[-45,-7],[-18,25],[-7,31],[-4,61],[31,15],[31,4],[28,-2],[50,-1],[50,-2],[27,-11],[14,-27],[5,-42],[31,-2],[15,28],[-21,3],[0,39],[-31,40],[19,30],[16,40],[17,23],[21,-1],[25,-21],[41,0],[36,-7],[20,-16],[6,-1],[20,0],[25,10],[53,-7],[32,-28],[44,23],[33,28],[32,-4],[26,-11],[31,7],[41,-11],[-17,-54],[-27,-37],[-4,-29],[34,17],[36,13],[13,34],[-6,33],[15,25],[42,22],[31,-13],[6,-32],[14,-27],[18,-25],[-3,-45],[28,-2],[25,-5],[15,-27],[18,-32],[40,4],[-35,44],[-21,42],[-28,21],[-22,38],[-20,38],[17,32],[21,34],[23,17],[-2,29],[6,38],[9,38],[30,-8],[20,-6],[25,11],[41,9],[15,-43],[33,-30],[32,-42],[14,37],[8,30],[-26,12],[-15,50],[-26,31],[-7,29],[13,29],[17,35],[28,33],[-6,60],[16,65],[24,43],[20,35],[22,41],[12,40],[31,36],[28,18],[35,-15],[32,-15],[19,-52],[25,-36],[12,-44],[-20,-38],[-18,-17],[24,-5],[37,-52],[95,-43],[10,-47],[40,-50],[0,-26],[43,-12],[0,21],[-14,14],[2,19],[22,15],[2,19],[-22,28],[-6,55],[8,31],[-22,-14],[-17,12],[-28,21],[0,24],[-16,-22],[-23,0],[-20,-7],[-52,41],[14,28],[-15,29],[11,47],[-24,43],[-14,29],[-4,33],[-22,44],[-36,19],[-33,3],[-28,1],[-28,1],[-37,22],[15,28],[17,56],[23,45],[17,29],[40,22],[14,45],[36,-5],[28,12],[-2,44],[33,24],[14,25],[41,11],[46,5],[39,-12],[57,2],[35,-5],[50,0],[71,-71],[37,-14],[63,-41],[105,-28],[89,-8],[20,15],[0,23],[0,3],[-6,19],[-125,7],[-37,36],[-42,-10],[-33,38],[-40,12],[3,22],[3,16],[-130,41],[-79,-15],[-77,14],[-3,37],[12,47],[-2,50],[7,24],[1,1],[0,2],[2,35],[9,56],[9,43],[-11,28],[-2,-5],[-23,-48],[-18,-27],[-29,-38],[-22,-25],[-28,-2],[-10,-38],[-11,-43],[-13,-27],[-21,-22],[-35,-24],[-46,-28],[-38,-32],[-17,70],[-33,42],[-47,26],[-13,46],[-26,14],[-5,3],[13,-55],[18,-41],[16,-58],[34,-48],[4,-48],[-28,-17],[-24,-34],[-6,-43],[-51,-26],[-39,-31],[12,-48],[-9,-33],[-24,-15],[-44,3],[35,-35],[24,4],[15,-32],[4,-34],[-23,-36],[4,-38],[-11,-35],[1,-40],[-2,-34],[-21,-62],[-9,-43],[-4,-27],[-6,-30],[-10,-30],[-4,-33],[-17,-28],[-21,-28],[-17,22],[-35,6],[-13,-22],[11,-9],[-23,-28],[30,-19],[-20,-12],[-25,-14],[-31,5],[-33,25],[-20,4],[34,5],[18,8],[9,39],[17,2],[16,14],[7,26],[-23,-3],[-20,-3],[-25,-4],[-5,-30],[-21,5],[-9,-17],[2,-16],[-22,10],[-13,27],[-13,8],[0,-21],[-18,-31],[-26,10],[-6,25],[13,42],[-9,15],[6,23],[23,32],[-16,0],[-18,-27],[-8,-12],[7,-24],[-7,-30],[-17,-6],[2,-15],[-22,-43],[-41,-29],[-22,-26],[-20,-23],[-37,-28],[-22,-8],[-22,-11],[-40,-4],[-44,-20],[-2,5],[-11,28],[-14,38],[-18,34],[-1,36],[-1,31],[27,36],[28,18],[34,11],[26,42],[22,16],[14,22],[-22,13],[-7,42],[-23,-45],[-15,-34],[-23,-22],[-26,22],[6,28],[11,40],[9,28],[-36,-9],[-13,-46],[-33,-33],[-3,-63],[-39,-37],[-14,-29],[-55,-10],[-11,-56],[-43,-31],[-48,14],[-22,2],[-23,10],[-24,2],[-6,47],[24,32],[-45,17],[-28,-25],[24,-47],[2,-33],[15,-22],[1,-29],[-29,-14],[-50,0],[-38,-13],[-30,4],[-42,-4],[-42,-7],[-16,-5],[3,15],[38,27],[7,28],[-14,16],[-19,-4],[-30,-41],[-4,18],[19,45],[-32,3],[-28,-22],[1,-70],[-1,-24],[26,-15],[-15,-22],[-18,-8],[-27,76],[-1,23],[15,-7],[0,36],[-14,7],[-15,3],[0,-92],[7,-37],[17,-13],[-6,-33],[-28,-14],[-9,-26],[-15,-35],[-1,-32],[-15,-37],[-17,-46],[-20,-51],[-40,-19],[-46,-36],[-28,-29],[-28,-5],[-34,-15],[-21,37],[-19,46],[-12,21],[-1,25],[1,31],[9,37],[7,44],[0,60],[-1,1],[-9,55],[8,18],[10,38],[-21,15],[-23,-31],[-19,-20],[-50,7],[-51,24],[-10,38],[0,38],[-4,40],[-25,50],[3,35],[11,38],[16,8],[32,0],[34,2],[-6,22],[-48,25],[-22,27],[-38,9],[-9,40],[-33,35],[-34,9],[-26,30],[-15,29],[-34,29],[-39,31],[-40,6],[6,41],[21,43],[-3,43],[-26,20],[-20,40],[-6,28],[-22,-9],[-32,16],[-31,-7],[-13,-2],[-6,-51],[33,-47],[6,-56],[-54,-58],[-17,-37],[-24,-20],[-22,-13],[-26,-18],[-38,-40],[-35,6],[-28,16],[-30,-2],[-25,0],[-29,20],[-41,27],[-20,-34],[-21,-10],[32,-36],[-37,-2],[-31,28],[-31,48],[-14,50],[-44,19],[-36,2],[-4,-32],[-16,-26],[-5,-8],[-17,-30],[-44,-16],[-41,-19],[-27,4],[-36,2],[-47,-6],[-36,3],[-47,-12],[-32,0],[-40,-3],[-33,-12],[-19,6],[-45,-20],[-22,15],[-27,28],[-24,27],[-18,48],[-25,0],[-8,37],[-37,1],[2,5],[8,35],[-33,24],[-52,15],[-29,34],[-4,16],[-25,25],[-5,-8],[-8,-9],[10,-20],[-5,-22],[-2,-16],[26,-33],[11,-16],[51,-27],[26,-30],[11,-13],[23,-27],[23,-18],[18,-23],[24,-22],[0,-54],[-21,-40],[-7,-50],[-2,-41],[-25,-27],[-3,-38],[-5,-38],[1,-44],[-3,-56],[10,-39],[-10,-35],[-18,-28],[-12,-41],[12,-37],[2,-28],[12,-27],[16,-33],[19,-37],[29,-47],[9,-55],[19,-33],[28,-25],[29,-22],[23,-16],[21,-12],[31,-11],[45,-9],[43,-7],[56,-7],[33,-6],[37,-9],[38,-13],[-30,-15],[-46,-2],[38,-41],[16,-6],[31,-12],[50,17],[-21,45],[8,38],[0,64],[20,46],[-13,38],[13,40],[38,14],[34,11],[25,17],[36,15],[31,34],[37,17],[25,0],[28,-1],[26,13],[42,2],[38,-14],[25,2],[33,-7],[30,-16],[39,-20],[26,-18],[22,8],[28,-5],[35,-47],[13,-43],[13,-23],[-45,-33],[-54,-7],[5,-37],[25,-40],[36,-8],[-42,-40],[3,-37],[47,25],[26,-6],[25,-1],[16,-30],[27,-13],[18,-17],[27,-34],[4,-44],[42,1],[20,11],[30,-14],[59,17],[-49,-46],[35,-9],[15,-24],[28,15],[15,27],[6,-45],[-2,-35],[-15,-40],[-8,-27],[-4,-12],[-19,-22],[-29,0],[-7,-52],[-3,-5],[-25,-42],[8,-64],[27,-24],[1,-1],[-28,-26],[-11,-55],[-11,-46],[1,-42],[22,-40],[-14,-50],[34,-5],[23,-14],[36,-36],[40,-32],[17,-32],[63,-19],[43,0],[36,5],[30,1],[27,-6],[32,-19],[12,-40],[14,-44],[52,-21],[35,-49],[39,-42],[26,-19],[-21,-38],[-17,-23],[-17,-25],[-19,-24],[-27,-15],[-13,-26],[-31,-20],[-3,25],[-30,14],[-45,1],[-48,35],[26,22],[19,33],[-32,37],[-20,19],[-25,-16],[-7,29],[-33,31],[-18,-37],[-3,-42],[-34,7],[-29,15],[-28,10],[-33,9],[-15,5],[0,21],[-67,43],[-43,33],[-78,50],[-63,19],[-32,30],[-39,19],[-12,-8],[11,-17],[57,-46],[59,-34],[41,-15],[10,-25],[51,-47],[73,-41],[24,-7],[13,2],[-3,-26],[29,-36],[37,-34],[40,-27],[35,-19],[33,-19],[27,-29],[27,-31],[22,-9],[25,-24],[32,-24],[-26,-26],[-60,1],[-6,-57],[-23,-39],[-23,49],[-42,35],[-27,29],[-32,33],[-39,41],[-34,35],[-28,26],[-26,27],[-28,24],[-28,26],[-24,21],[-27,24],[-31,28],[-41,36],[-26,23],[-19,17],[-27,23],[-46,38],[-40,31],[-23,20],[-18,14],[-26,17],[-28,23],[-36,26],[-36,26],[-27,18],[-24,19],[-26,17],[-25,17],[-37,25],[-42,29],[-30,18],[-28,21],[-23,16],[-30,21],[-30,20],[-31,22],[-30,21],[-26,18],[-31,21],[-26,16],[-30,19],[-38,24],[-34,24],[-34,24],[-23,16],[-49,32],[-42,29],[-32,20],[-27,20],[-38,24],[-35,23],[-28,17],[-34,22],[-32,21],[-32,20],[-38,22],[-40,26],[-37,22],[-44,26],[-35,24],[-23,16],[-24,15],[-28,16],[-29,18],[-40,22],[-45,28],[-50,50],[-44,6],[-45,26],[-54,32],[-51,29],[-35,20],[-28,16],[-28,15],[-31,17],[-48,26],[-49,27],[-26,13],[-25,14],[-38,20],[-47,24],[-33,18],[-40,22],[-29,15],[-42,22],[-35,18],[-27,14],[-44,21],[-44,22],[-49,24],[-34,16],[-38,18],[-50,22],[-34,17],[-69,29],[-110,51],[-23,10],[-36,26]],[[63586,83502],[-15,-1],[-16,-10],[-19,-1],[-10,9],[-25,12],[-8,1],[-16,2],[-1,0],[-11,-3],[-64,-41],[0,-1],[-1,-1],[-7,-6],[-13,-20],[0,-1],[-23,-30],[-2,-2],[-9,-9],[-75,-66],[-1,-1],[-62,-61],[-13,-21],[-17,-39],[-10,-11],[-15,4],[-11,12],[-1,1],[-12,5],[-54,11],[-4,0],[-7,-3],[-6,-9],[0,-1],[-2,-9],[-5,-11],[0,-1],[-6,-6],[-7,-4],[-12,1],[-9,2],[-23,12],[-16,6],[-29,7],[-43,0],[-29,0],[-11,-8],[-40,-29],[-31,-1],[-32,-2],[-2,0],[0,-2],[-46,-177],[-1,-6],[-5,-6],[-12,-7],[-15,-1],[-1,0],[-4,1],[-19,6],[-1,-1],[-4,-1],[-7,-5],[-8,-13],[-1,-1],[-7,-17],[-11,-33],[-2,-9],[-8,-30],[-6,-15],[-41,-22],[-3,-2],[-4,-2],[-8,-12],[-9,-22]],[[62538,82801],[-4,-4],[-8,-6],[-19,-27],[-8,-20],[-15,-11],[-1,-1],[-29,6],[-37,24],[-19,12],[-6,5],[-5,6],[-1,1],[-4,6],[-4,8],[-13,27],[-1,3],[1,3],[3,16],[1,2],[1,1],[12,7],[5,3],[2,-1],[14,-2],[9,-3],[2,-2],[22,-32],[2,-1],[9,-2],[8,-2],[1,1],[5,4],[6,5],[1,4],[3,19],[0,2],[-1,6],[-4,16],[-2,3],[-16,21],[-17,17],[-7,7],[-1,1],[-49,33],[-4,3],[-11,13],[-10,14],[-19,25],[-3,3],[-21,11],[-21,3],[-13,-2],[-17,-2],[-19,-4],[-10,-1],[-1,-1],[-4,-1],[-14,-6],[-6,-5],[-5,-3],[-8,-7],[-8,-13],[-8,-11],[-1,-3],[-2,-13],[8,-37],[2,-6],[-3,-17],[-17,-41],[-3,-8],[-11,-8],[-4,-3],[-5,1],[-13,1],[-6,1],[-8,4],[-10,5],[-26,23],[-2,2],[-6,9],[-7,9],[-19,36],[-5,11],[-4,12],[-1,13],[-1,7],[6,25],[4,6],[3,4],[5,8],[2,1],[2,2],[9,7],[20,6],[4,0],[4,-1],[18,12],[8,12],[2,18],[-2,3],[-10,20],[-8,7],[-13,10],[-8,2],[-33,9],[-12,6],[-2,2],[-2,2],[-1,25],[-1,18],[4,36],[1,13],[0,5],[-2,10],[-4,7],[-16,31],[-14,20],[-4,4],[-4,4],[-6,5],[-9,4],[0,1],[-4,1],[-21,5],[-1,0],[-2,2],[-6,9],[-2,8],[-1,2],[5,37],[2,2],[3,7],[1,2],[47,50],[7,11],[3,21],[-10,27],[-15,42],[-17,30],[-2,11],[-1,1],[5,33],[6,48],[-3,14],[-9,15],[-9,15],[-9,33],[0,3],[-1,15],[-7,17],[-44,83],[-10,18],[-1,1],[-11,13],[-18,3],[-1,0],[-38,-11],[-16,0],[-30,-1],[-146,20],[-4,2],[-3,1],[-9,4],[-9,7],[-1,2],[-21,32],[-2,11],[-3,14],[-3,49],[-14,22],[-5,7],[-28,35],[-9,12],[-10,18],[-21,68],[-2,36],[0,7],[-4,17],[-11,60],[-7,35],[1,18],[2,42],[-3,7],[0,15],[-4,14],[-4,11],[-2,6],[-1,2],[-7,10],[-1,1],[-10,5],[-18,10],[-1,1],[-60,7],[-39,5],[-1,1],[-3,1],[-1,1],[-2,3],[-10,16],[-1,2],[-5,29],[-1,3],[0,1],[0,17],[-3,11],[-14,49],[-4,6],[-11,15],[-3,5],[-9,4],[-6,3],[-7,4],[-34,3],[-65,-9],[-54,-14],[-89,22],[-18,6],[-18,9],[-1,0],[-2,2],[-17,20],[-3,3],[-2,5],[-2,4],[-7,18],[-20,70],[-5,24],[-1,2],[-1,8],[-2,7],[-20,53],[-4,10],[-5,12],[0,1],[-35,74],[-18,27],[-15,22],[-4,5],[-27,26],[-35,23],[-29,29],[-36,50],[-45,40],[-26,17],[-22,9],[-12,2],[-39,7],[-1,1],[-6,3],[-2,1],[-10,17],[-12,18],[-4,6],[-7,19],[-10,27],[-26,33],[-12,10],[-4,1],[-3,2],[-20,10],[-23,6],[-9,3],[-27,11],[-13,11],[-18,14],[-46,37],[-25,14],[-6,0],[-9,2],[-11,5],[-11,6],[-16,10],[-47,13],[-9,2],[-20,11],[-5,4],[-22,17],[-1,0],[0,1],[-17,23],[-5,7],[-3,6],[-4,11],[-8,19],[-3,24],[1,4],[3,38],[1,8],[5,23],[2,2],[3,3],[4,13],[4,35],[-9,17],[-22,13],[-6,1],[-24,4],[-20,4],[-43,2],[-2,-1],[-4,-2],[-39,3],[-1,0],[-2,0],[-18,-3],[-12,2],[-43,4],[-40,25],[-10,6],[-16,13],[-8,7],[-7,6],[-1,1],[-19,23],[-2,4],[-6,9],[-3,6],[-12,12],[-10,7],[-33,12],[-13,1],[-29,0],[-16,0],[-24,-5],[-14,-3],[-10,-1],[-33,0],[-12,3],[-6,2],[-8,8],[-8,7],[-5,5],[-7,17],[0,53],[0,18],[1,27],[2,23],[-3,11],[-20,22],[-9,5],[-7,5],[-14,8],[-13,2],[-14,2],[-8,1],[-26,-8],[-10,-9],[-4,-3],[-3,-2],[-2,-2],[-22,-32],[-13,-14],[-48,-38],[-31,-19],[-9,1],[-14,4],[-16,12],[-13,17],[-12,27],[-6,13],[-11,15],[-23,13],[-17,9],[-5,1],[-12,3],[-5,1],[-10,-2],[-8,-2],[-20,-9],[-40,8],[-1,0],[-7,1],[-8,4],[-5,3],[-17,9],[-38,33],[-8,5],[-26,17],[-17,8],[-9,5],[-9,4],[-24,1],[-2,0],[-3,-2],[-9,-7],[-2,-1],[-1,-1],[-10,-15],[-13,-37],[-4,-32],[0,-1],[-1,-1],[-27,-43],[-10,-17],[-14,1],[-24,1],[-37,1],[-21,1],[-6,1],[-12,0],[-33,-11],[-18,-19],[-4,-34],[-2,-12],[-6,-6],[-4,-4],[-1,-1],[-12,-4],[-1,0],[-22,3],[-11,6],[-28,35],[-23,41],[-26,35],[-35,32],[-36,21],[-37,7],[-34,-4],[-7,0],[-30,-6],[-11,-4],[-22,-8],[-44,-15],[-14,-2],[-19,3],[-2,0],[-6,4],[-10,6],[-18,24],[-1,3],[-7,12],[-12,21],[-30,36],[-2,1],[-10,8],[-14,8],[-31,16],[-17,22],[-4,13],[2,60],[16,132],[2,112],[0,17],[0,18],[-6,14],[-6,16],[-7,17],[-12,16],[-7,10],[-7,10],[-87,99],[-3,3],[-23,26],[-6,6],[-11,10],[-5,4],[-6,12],[1,4],[2,5],[4,14],[57,69],[7,9],[10,19],[6,10],[3,5],[1,8],[6,37],[2,11],[0,3],[0,1],[-2,24],[-11,21],[-8,9],[-3,3],[-9,10],[-26,17],[-18,12],[-25,16],[-2,2],[-44,36],[-27,27],[-4,6],[-6,9],[-21,29],[-2,4],[-2,5],[-18,41],[-4,16],[-2,12],[-3,24],[-6,52],[-1,31],[0,72],[-1,33],[3,35],[8,24],[6,18],[7,22],[19,57],[17,28],[11,30],[3,13],[2,15],[4,26],[-3,16],[-1,6],[1,9],[1,10],[2,12],[5,12],[10,22],[4,7],[18,29],[6,11],[5,9],[1,3],[5,25],[1,4],[-8,13],[-14,10],[-11,5],[-8,1],[-8,1],[-1,3],[-2,2],[-41,12],[-5,1],[-6,2],[-27,17],[-11,16],[-22,31],[-1,1],[-1,4],[-7,23],[-3,8],[-1,20],[3,25],[11,25],[9,21],[17,24],[9,14],[3,2],[5,4],[3,2],[4,2],[2,1],[4,2],[29,-1],[8,0],[3,1],[8,5],[8,5],[6,8],[1,2],[2,2],[1,5],[3,13],[1,5],[-3,6],[-5,7],[-15,0],[-18,1],[-17,-6],[-6,-4],[-19,-14],[-8,-7],[-2,0],[0,1],[-11,1],[-9,5],[-7,10],[-16,25],[-1,2],[-5,12],[1,25],[0,11],[-1,5],[0,3],[0,10],[4,22],[3,8],[1,4],[7,20],[8,10],[5,6],[3,4],[48,18]],[[56129,88568],[-1,-159],[-1,0],[-1,-43],[-1,-46],[0,-18],[0,-27],[4,-156],[2,-73],[0,-24],[1,-35],[3,-123],[-1,-28],[-2,-136],[0,-44],[-8,-52],[-3,-16],[-1,-19],[-2,-18],[-3,-38],[-5,-76],[-1,-89],[0,-45],[0,-29],[-2,-198],[1,-77],[0,-96],[1,-139],[0,-227],[0,-6],[0,-51],[0,-99],[-2,-167],[0,-48],[-1,-75],[-1,-107],[0,-62],[-1,-62],[-2,-218],[-3,-235],[-2,-209],[0,-16],[-4,-116],[-4,-143],[-7,-186],[3,-95],[1,-47],[1,-45],[0,-93],[0,-6],[0,-66],[0,-25],[0,-63],[-1,-40],[0,-16],[0,-28],[0,-65],[0,-86],[0,-46],[0,-148],[-1,-166],[0,-43],[0,-139],[0,-163],[0,-20],[-1,-260],[0,-54],[0,-64],[0,-16],[-1,-18],[-1,-32],[-3,-76],[43,0],[108,-1],[85,0],[2,-195],[0,-60],[0,-44],[0,-50],[0,-62],[0,-62],[0,-36],[0,-41],[0,-123],[0,-77],[0,-126],[0,-93],[0,-45],[124,2],[117,2],[46,0],[139,2],[21,1]],[[56764,81809],[-1,-23],[-1,-131],[-1,-56],[0,-32],[-1,-53],[0,-1],[-1,-112],[-1,-74],[0,-55],[-1,-51],[35,-41],[-6,-24],[-3,-6],[-83,-80],[-8,-3],[0,-1],[-15,-7],[-11,-4],[-3,-2],[-1,-2],[-3,-4],[0,-15],[8,-24],[5,-7],[-19,-16],[-10,-9],[-35,-55],[-27,-50],[-10,0],[-21,-7],[-14,-9],[-10,-10],[-19,-35],[-40,-96],[-3,-23],[-2,-34],[0,-4],[-1,-7],[-5,-14],[-10,-16],[-6,-6],[-7,-7],[-12,-6],[-8,-10],[0,-11],[5,-22],[7,-16],[4,-10],[10,-24],[3,-18],[-2,-13],[-1,-7],[-5,-6],[-19,-10],[-20,0],[-6,-3],[-4,-12],[0,-7],[0,-20],[2,-3],[4,-9],[13,-25],[18,-34],[0,-1],[-28,-53],[-3,-26],[-1,-9],[0,-2],[1,-12],[1,-3],[1,-1],[10,-18],[2,-3],[-10,-20],[-1,0],[-3,-25],[-3,-23],[0,-3],[-4,-2],[-17,-8],[-3,-5],[-12,-18],[-4,-6],[-8,-60],[-4,-28],[0,-7],[0,-26],[1,-15],[4,-58],[1,-3],[5,-38],[1,-3],[-1,-2],[-1,-10],[-1,-9],[-7,-11],[-1,0],[-14,-12],[-15,-27],[0,-1],[0,-2],[-1,-6],[1,-17],[-2,-14],[-7,-16],[-80,-104],[-22,-43],[-29,-22],[-2,-2],[-11,-14],[-3,-4],[-1,-11],[18,-58],[1,0],[6,-7],[10,-9],[-1,-17],[0,-5],[-1,-3],[-1,-2],[-8,-8],[-2,-2],[-1,-1],[-49,-27],[-26,-15],[-35,-5],[-32,10],[-53,20],[-54,21],[-7,1],[-30,-8],[-27,10],[0,16],[-17,19],[-19,10]],[[55823,79474],[-23,18],[-34,2],[-31,30],[-25,13],[-12,-4],[-12,-3],[-35,-23],[-40,-16],[-12,-5],[-40,-14],[-39,6],[-38,20],[-2,0],[-34,-11],[3,-16],[2,-12],[-24,-8],[-26,11],[-8,4],[-29,8],[-30,42],[-28,37],[-41,10],[-12,31],[-32,-26],[-34,17],[-67,-18],[-41,-24],[-54,10],[-49,-2],[-16,2],[-14,2],[-8,14],[-7,12],[-1,41],[-31,12],[-26,9],[-31,6],[-35,21],[-57,15],[-22,25],[1,30],[-17,17],[-15,15],[-34,-34],[-5,14],[-6,13],[-30,-3],[-16,-7],[-6,-2],[13,36],[-7,20],[-7,19],[2,41],[-7,14],[-10,21],[-23,26],[-4,4],[-22,1],[-23,37],[-34,56],[-32,12],[-14,5],[-6,17],[20,1],[30,1],[14,38],[-1,5],[-4,16],[1,14],[1,13],[-18,12],[13,-25],[-24,-5],[-11,-10],[-19,7],[-38,7],[-40,21],[-5,2],[-3,-8],[-7,-18],[-71,-15],[-21,28],[-39,29],[-36,9],[-42,13],[-44,14],[-39,11],[-19,42],[-24,16],[-11,-1],[-26,-3],[-23,-26],[-28,10],[-7,3],[-8,5],[-11,8],[2,26],[1,12],[-24,9],[-15,4],[-5,1],[5,18],[6,21],[11,22],[-6,22],[-14,4],[-14,4],[-11,-22],[0,-21],[0,-18],[-25,-6],[-2,0],[-41,7],[8,11],[1,1],[23,-2],[10,26],[-8,23],[2,2],[17,8],[20,6],[-20,18],[-14,-3],[-9,-2],[-5,-2],[-26,-13],[-37,39],[-39,26],[3,16],[3,13],[-16,32],[-14,30],[-3,7],[-43,0],[-1,19],[-1,35],[-11,32],[-6,17],[-12,43],[-18,22],[2,38],[-6,12],[-10,21],[4,28],[3,18],[-34,-13],[-5,8],[-17,23],[-51,-6],[-41,-5],[-18,0],[-40,0],[-14,-32],[-32,-23],[-30,8],[1,25],[1,23],[25,50],[3,-1],[26,-4],[37,0],[28,9],[28,-15],[16,2],[-1,28],[-1,17],[0,4],[9,7],[21,18],[10,2],[40,7],[-16,4],[-5,1],[-20,14],[-1,-14],[-1,-4],[-20,-1],[-16,9],[-6,-9],[-6,-9],[-3,-2],[-24,-17],[-27,14],[-5,3],[-12,11],[-11,10],[-6,6],[1,22],[1,14],[21,36],[29,19],[10,6],[-37,30],[-7,-2],[-37,-12],[-13,-1],[-14,-1],[-6,-3],[-8,-2],[-24,-9],[-28,46],[14,41],[18,-15],[12,-11],[25,-4],[23,16],[15,40],[40,15],[4,35],[2,18],[-1,7],[-2,28],[-24,51],[-30,5],[-15,2],[-28,9],[8,28],[4,14],[-3,48],[-40,-15],[-27,13],[1,14],[3,48],[30,26],[6,63],[-6,70],[0,1],[-19,54],[-30,15],[-37,4],[-3,-40],[-25,2],[-4,21],[-5,20],[3,45],[1,16],[-4,18],[-4,21],[-29,14],[-26,4],[-25,33],[-4,46],[-25,28],[-13,14],[-13,1],[-16,0],[-18,-1],[-15,-1],[-37,27],[-46,48],[-32,12],[-15,54],[-2,5],[-2,17],[-7,39],[-26,53],[-28,54],[-32,18],[8,21],[5,11],[-20,9],[-12,6],[-11,26],[-1,3],[0,15],[-1,26],[7,38],[-35,25],[-2,30],[-1,26],[-9,6],[-23,17],[-40,30],[22,32],[1,42],[-24,48],[-20,29],[-37,13],[-23,29],[-21,26],[-32,18],[-22,-2],[-32,10],[-22,39],[-17,14],[-27,21],[-11,5],[-37,14],[-10,29],[0,1],[-15,32],[-3,30],[-1,6],[-25,23],[-22,-8],[-7,-3],[-11,3],[-25,5],[-19,37],[-1,24],[-33,10],[-24,10],[-26,19],[-15,32],[-3,7],[-9,36],[-16,56],[20,42],[-31,-11],[-31,11],[-3,1],[-43,-22],[-35,4],[-40,30],[-25,30],[-28,8],[-31,25],[-25,24],[-47,14],[-1,38],[-48,-10],[-22,17],[-30,0],[-14,28],[-5,9],[-4,9],[-13,31],[-31,-24],[-5,26],[-2,15],[-9,-8],[-16,-18],[-21,24],[-36,8],[-13,2],[-15,3],[-26,5],[1,38],[-44,10],[-14,14],[-34,31],[21,17],[-30,48],[0,1],[-24,-30],[-34,33],[10,43],[-34,10],[-9,3],[-13,15],[-11,13],[0,52],[-22,48],[-9,20],[-27,-45],[-6,-16],[-8,-23],[-15,-20],[-22,-29],[-10,21],[-11,23],[-12,-5],[-28,-14],[4,37],[1,5],[23,48],[-53,-23],[-34,-19],[-3,27],[-3,14],[-6,27],[-12,4],[-29,11],[26,44],[-47,-10],[-10,38],[-24,-8],[-3,-12],[-4,-17],[-30,-5],[-7,-1],[-16,35],[-11,50],[37,-5],[-6,8],[-15,24],[-24,13],[3,37],[-33,-16],[1,-26],[0,-20],[-24,-36],[-5,18],[-5,17],[-13,27],[-23,12],[-6,27],[3,13],[9,32],[33,59],[-32,54],[-3,-48],[-4,-29],[-7,-12],[-10,-21],[-15,-13],[-19,-17],[-2,9],[-8,34],[-16,4],[-27,7],[1,-7],[6,-30],[-21,-25],[-32,11],[17,-59],[-3,-4],[-19,-28],[-8,26],[-12,16],[-16,25],[-61,2],[-43,-17],[-25,-16],[-6,15],[-9,20],[-29,35],[-27,33],[-50,-5],[-22,14],[-26,-1],[-11,0],[-37,-23],[-13,43],[7,40],[-16,8],[-6,4],[-14,-37],[-31,-49],[-9,52],[-27,11],[-14,32],[9,52],[-5,-2],[-31,-13],[-6,31],[-38,12],[-37,29],[-28,8],[3,31],[-39,5],[-35,11],[-6,31],[-39,17],[-39,3],[-26,18],[-25,43],[-45,14],[-44,13],[-36,17],[-54,17],[-38,16],[-10,4],[-10,6],[-34,20],[-32,32],[-34,26],[-41,8],[-43,12],[-31,20],[-35,21],[-29,19],[-5,3],[-20,18],[-15,12],[-14,10],[-5,4],[-22,16],[-22,42],[-29,-23],[-37,9],[-16,55],[-21,9],[-42,14],[-53,-2],[-48,11],[11,19],[5,8],[29,14],[30,38],[6,23],[3,13],[-2,35],[-27,-47],[-26,-20],[-39,-22],[-16,-4],[-14,-3],[-18,14],[-18,13],[-30,9],[20,52],[20,35],[-28,16],[-4,1],[-30,10],[-47,30],[-30,29],[-35,-10],[-11,42],[-34,23],[-40,-11],[-11,49],[0,15],[0,14],[-18,26],[-32,17],[-39,10],[-2,43],[-36,-14],[-49,17],[-2,0],[-34,2],[0,35],[-31,33],[-11,8],[-16,10],[-34,15],[-26,32],[-14,9],[-4,4],[-33,-3],[7,19],[8,22],[-14,-4],[-30,-11],[-29,2],[-12,1],[-17,-4],[-20,-5],[8,27],[13,31],[32,13],[4,2],[13,17],[17,23],[-40,-4],[3,33],[23,36],[-6,-1],[-1,0],[-26,-5],[-4,-2],[-38,-14],[-34,43],[1,52],[-15,30]],[[43303,85270],[30,-9],[6,27],[41,-34],[4,-41],[5,-34],[45,-1],[30,-3],[-32,-32],[-27,-24],[-27,-7],[-20,-44],[-29,-21],[35,-15],[21,-39],[-67,31],[-31,-35],[-37,0],[-34,-28],[31,-28],[29,-25],[-28,-43],[-16,-44],[-24,-20],[-22,-10],[-26,3],[-21,27],[-21,22],[-13,26],[11,30],[30,-2],[-1,47],[-15,42],[8,86],[23,-11],[12,30],[20,-24],[30,27],[-3,34],[20,38],[22,43],[-41,2],[-41,6],[25,34],[36,11],[-23,32],[6,35],[28,4],[64,2],[-30,-36],[17,-29]],[[44971,85890],[-23,-39],[-28,11],[-24,39],[11,43],[28,-7],[36,-47]],[[45101,85966],[22,-11],[11,40],[28,-6],[8,-41],[21,-34],[-34,-9],[-22,-41],[-35,-15],[-37,14],[-15,25],[-12,20],[15,36],[9,51],[13,25],[-23,29],[6,15],[26,-7],[22,-30],[-3,-61]],[[46803,86069],[1,-35],[-27,-14],[-39,-23],[-42,-20],[-34,-6],[-31,15],[-35,23],[-55,8],[-39,-5],[3,-27],[-61,-8],[-51,-24],[-2,39],[-27,-26],[-37,7],[-6,35],[-23,-13],[-31,10],[-19,-36],[-33,8],[-36,-3],[-16,-14],[-22,-14],[-30,2],[-7,45],[9,31],[-30,28],[-17,-27],[-11,-49],[-19,-38],[-16,-11],[-32,-23],[-1,-37],[-5,-27],[23,14],[12,-37],[-36,-23],[-47,3],[-33,-16],[-33,-4],[-36,-40],[-37,-31],[-32,0],[-26,-29],[-35,-11],[-24,-5],[-22,12],[-34,-21],[-26,24],[-62,-3],[-41,-16],[-44,20],[-20,26],[-31,40],[0,35],[17,35],[48,-5],[6,45],[15,22],[23,18],[14,62],[7,43],[-17,33],[39,41],[9,41],[-2,17],[-5,34],[-9,-21],[-14,-33],[-38,-35],[-30,28],[-7,-47],[-6,-62],[-28,-18],[-56,17],[-34,32],[-15,20],[-39,20],[-31,41],[-31,50],[-29,33],[-8,47],[-28,37],[12,35],[24,29],[26,44],[-15,23],[5,29],[-1,38],[-5,18],[-10,35],[-31,41],[-26,13],[-15,7],[11,-30],[34,-44],[5,-42],[-13,-32],[-21,-11],[-17,-61],[-60,0],[15,-52],[10,-50],[-21,-56],[18,-45],[20,-39],[6,-27],[-14,-8],[-22,2],[-10,1],[-3,1],[-11,21],[-15,1],[1,-19],[-19,4],[-20,-3],[-19,-6],[-6,25],[-4,16],[-9,-22],[-18,0],[23,-16],[6,-22],[29,-9],[25,-9],[16,17],[7,-14],[10,-33],[-10,-16],[-1,-18],[-39,-18],[-31,35],[-41,32],[-20,16],[-11,-21],[28,-25],[-11,-24],[-41,26],[-41,-19],[23,-42],[-38,-23],[-31,14],[-41,-13],[-32,-9],[-20,-39],[-28,4],[13,43],[-8,56],[-2,51],[-63,-43],[-17,35],[9,41],[7,41],[0,51],[36,11],[-57,18],[-24,-10],[-14,-7],[-35,-10],[-37,-3],[-32,17],[-33,9],[-44,-20],[-35,-39],[-5,46],[8,34],[-13,49],[-27,34],[-29,-20],[-9,23],[-26,-5],[26,-62],[-11,-50],[31,-17],[-9,-35],[-15,-42],[-25,-35],[-32,-61],[9,-63],[2,-10],[-4,-43],[-3,-39],[1,-50],[13,-64],[33,-2],[-35,-35],[24,-18],[-17,-38],[30,-23],[-24,-23],[-11,-37],[-19,-18],[-39,-32],[-7,37],[-2,6],[13,48],[-17,51],[-34,34],[0,-58],[-21,-53],[-31,-20],[-29,-5],[-1,-5],[-4,-16],[16,-17],[-3,-47],[-55,13],[-44,6],[-42,-19],[2,50],[-18,49],[-22,20],[-31,35],[-31,6],[-31,-21],[-17,48],[-26,55],[-54,22],[-37,-6],[-39,9],[17,34],[-26,-1],[-25,23],[-14,-32],[1,-42],[-34,-6],[-12,5],[-8,18],[0,24],[-8,27],[-18,35],[-25,-10],[19,-39],[0,-29],[34,-47],[14,-13],[15,-6],[15,3],[18,-4],[-13,-28],[-26,3],[-43,9],[-40,-11],[-26,11],[21,44],[-12,43],[-47,-10],[-49,33],[-48,14],[-11,-34],[-29,-16],[35,-25],[22,31],[40,-33],[9,-39],[-7,-29],[-23,-41],[-1,-32],[-30,20],[-41,14],[-31,-18],[29,-20],[-16,-30],[-42,9],[-4,30],[-28,-7],[-33,13],[-49,-22],[14,-52],[-10,-39],[0,-39],[7,-33],[1,-37],[3,-36],[1,-13],[-6,-42],[-33,-42],[19,-30],[-44,-54],[-18,-47],[-1,-41],[-15,-39],[12,-52],[5,-44],[13,-57],[32,-29],[-36,-4],[-33,-4],[-44,7],[-36,29],[11,44],[4,26],[-13,34],[-25,0],[-14,23],[43,11],[47,0],[-11,32],[-34,16],[-26,40],[-28,11],[-31,38],[-39,23],[-33,1],[-3,-81],[-14,-56],[5,-56],[7,-43],[11,-32],[4,1],[19,6],[40,-11],[-21,-27],[-14,-24],[11,-33],[-11,-28],[-14,-19],[1,-41],[-9,-53],[19,-34],[-18,-29],[19,-9],[27,-12],[-19,-50],[39,8],[13,-29],[24,-24],[9,-42],[2,-38],[43,23],[10,39],[-14,51],[-20,20],[-28,-6],[8,27],[-1,38],[-3,46],[37,-29],[32,6],[-23,42],[-14,22],[-28,1],[-14,38],[58,15],[48,-5],[47,-47],[1,-48],[25,-10],[18,-33],[14,-38],[-8,-40],[-17,-40],[9,-50],[9,-50],[19,-37],[23,-45],[45,-46],[76,-32],[-14,51],[36,41],[24,27],[21,-14],[22,-46],[12,-54],[-19,-40],[6,0],[25,1],[-23,-60],[-69,-16],[-39,11],[-47,-9],[-56,11],[-30,15],[-36,25],[-66,15],[-55,24],[-37,12],[-56,16],[-48,-15],[-5,2],[-29,11],[-38,24],[-44,25],[-30,24],[-27,12],[-55,13],[-88,16],[-28,15],[-23,-16],[-22,7],[-17,-17],[-38,-15],[-34,11],[-32,10],[-46,15],[-37,16],[-25,26],[-16,36],[-6,44],[-35,33],[-39,9],[-28,51],[26,10],[-28,18],[-20,10],[-3,1],[-23,14],[-9,5],[-23,11],[-16,-5],[48,-35],[19,-13],[2,-43],[18,-31],[34,-38],[40,-37],[-41,-24],[5,-46],[15,-52],[-1,-31],[-16,-37],[-24,24],[-24,42],[-46,13],[-21,-34],[-7,-31],[-11,-26],[-23,-57],[-2,-6]],[[41894,84135],[-16,-15],[-7,-8],[-11,-8],[-18,-4],[-15,2],[-16,8],[-11,12],[-5,6],[-10,11],[-9,20],[-2,14],[-3,36],[-3,45],[0,30],[3,22],[1,9],[0,68],[-5,40],[-5,12],[-10,24],[-6,14],[-5,7],[-15,19],[-41,40],[-17,11],[-10,7],[-44,-7],[-105,-55],[-18,-23],[-59,-74],[-50,-37],[-16,-11],[-31,-6],[-54,4],[-41,3],[-40,9],[-37,10],[-16,13],[-36,4],[-60,-4],[-11,-9],[-3,-23],[7,-24],[27,-35],[-1,-24],[-1,-1],[-1,-2],[-20,-17],[-8,-3],[-8,-3],[-50,0],[-12,3],[-29,6],[-4,1],[-24,10],[-8,11],[-4,6],[-11,14],[5,25],[11,34],[18,25],[9,13],[9,14],[11,16],[13,14],[9,9],[5,25],[0,1],[-2,14],[-1,7],[-1,3],[-10,22],[-16,34],[-1,1],[-38,64],[-3,3],[-25,27],[-10,10],[-7,5],[-7,5],[-25,1],[-7,-3],[-7,-2],[-24,-11],[-72,-34],[-9,-6],[-5,-4],[-7,-5],[-5,-9],[-1,0],[-9,-8],[-15,2],[-1,0],[-3,0],[-4,4],[-4,6],[-11,14],[-7,4],[-45,26],[-2,3],[-9,15],[-2,3],[3,14],[1,5],[5,5],[4,3],[38,28]],[[62538,82801],[34,-9],[1,0],[8,-13],[4,-6],[2,-9],[1,-4],[13,-70],[-3,-29],[-1,-14],[-1,-7],[-7,-18],[-2,-8],[-5,-12],[-1,-4],[-3,-20],[-2,-15],[0,-1],[5,-23],[10,-26],[2,-7],[0,-5],[-3,-20],[-1,-4],[-2,-5],[-27,-52],[-47,-52],[-13,-15],[-45,-57],[-15,-28],[-17,-40],[-22,-62],[-3,-24],[-9,-64],[-6,-53],[-2,-9],[-6,-45],[-3,-15],[1,-14],[1,-14],[-3,-24],[-1,-7],[0,-2],[-1,-1],[-10,-17],[-27,-18],[-18,-4],[-42,1],[-9,-4],[-42,-17],[-53,-38],[-29,-13],[-12,-2],[-30,4],[-24,23],[-26,17],[-9,4],[-9,1],[-3,0],[-25,1]],[[62001,81832],[-45,0],[-44,0],[-73,1],[-67,0],[-46,0],[-121,-2],[-51,-1],[-55,0],[-2,22],[-124,-2],[-124,-1],[-42,-1],[-56,-1],[-34,0],[-26,0],[-30,0],[-41,0],[-19,0],[-42,1],[-30,1],[-121,-1],[-55,0],[-95,-1],[-6,0],[-162,-1],[-478,-8],[-181,-3],[-488,-7],[-28,0],[-148,-1],[-86,0],[-26,0],[-150,-1],[-158,0],[-2,0],[-34,-1],[-70,0],[-67,-1],[-37,0],[-44,-1],[-18,0],[-38,0],[-41,-1],[-124,-1],[-26,0],[-40,-1],[-15,0],[-123,-2],[-174,-2],[-33,-1],[-72,-1],[-61,-1],[-57,-1],[-36,0],[-40,0],[-28,0],[-84,0],[-216,-1],[-14,0],[-198,-1],[-17,0],[-61,-1],[-1,0],[-103,0],[-25,0],[-10,0],[-31,0],[-43,0]],[[84406,79462],[-10,15],[-18,47],[-16,29],[-5,27],[-11,20],[-6,34],[-12,73],[-1,18],[-6,28],[-9,12],[-18,23],[-24,49],[-12,44],[-32,29],[-13,49],[44,11],[13,4],[9,2],[15,-5],[20,-19],[8,-36],[4,-14],[39,-143],[47,-144],[22,-61],[30,-91]],[[84464,79463],[-14,0],[-23,-1],[-1,0],[-20,0]],[[84178,80043],[-4,-35],[-32,22],[-29,25],[-20,38],[-36,42],[-14,46],[28,3],[55,-33],[34,-46],[26,-27],[-8,-35]],[[83710,82613],[16,-94],[5,-24],[12,-51],[24,-65],[6,-58],[-1,-63],[3,-69],[5,-54],[3,-42],[3,-29],[5,-41],[5,-43],[5,-44],[2,-32],[3,-30],[3,-28],[3,-38],[2,-34],[3,-30],[2,-36],[5,-46],[8,-54],[5,-43],[7,-44],[9,-56],[8,-50],[5,-33],[5,-34],[9,-41],[11,-41],[9,-48],[11,-46],[8,-40],[11,-39],[10,-32],[9,-37],[13,-44],[15,-50],[11,-37],[10,-32],[13,-51],[15,-48],[11,-36],[8,-25],[15,-44],[12,-38],[12,-36],[12,-38],[15,-40],[17,-50],[16,-42],[14,-36],[21,-53],[20,-49],[22,-54],[19,-39],[16,-35],[24,-49],[2,-52],[-23,-33],[-5,-7],[-36,21],[5,25],[12,30],[-18,19],[-75,68],[-68,37],[-16,30],[-34,90],[14,11],[29,52],[9,57],[-25,46],[-5,31],[4,27],[-2,40],[-16,34],[-14,30],[-26,40],[-10,39],[0,39],[-12,55],[-21,25],[-20,25],[-19,49],[-22,49],[-9,10],[-19,24],[-33,41],[-12,28],[-24,37],[-33,45],[0,42],[-8,42],[-9,27],[-5,22],[-15,29],[-17,37],[-8,35],[-22,44],[-20,61],[-8,30],[-4,25],[0,3],[-43,44],[-14,14],[-28,23],[-46,37],[-32,-2],[-9,0],[-30,22],[-9,25],[-13,60],[-6,19],[-11,41],[-19,40],[-43,37],[-23,24],[-17,27],[15,23],[23,91],[0,72],[-21,74],[-35,56],[-45,25],[-4,14],[-14,39],[10,27],[2,6],[9,34],[9,43],[11,38],[13,37],[18,12],[2,2],[11,32],[6,23],[2,4],[9,26],[10,50],[8,48],[-31,77],[-16,17],[-25,30],[-9,27],[-5,15],[2,59],[26,36],[30,9],[35,-24],[19,-43],[19,-46],[25,-26],[34,-24],[33,-23],[23,-27],[17,-31],[21,-23],[22,-35],[23,-30],[29,-35],[22,-35],[11,-35],[19,-33],[13,40],[-9,44],[-19,32],[-20,25],[10,26],[-42,27],[-22,27],[-28,14],[-12,45],[-26,31],[-5,45],[-30,39],[-30,0],[10,47],[-20,44],[-26,49],[28,32],[34,10],[34,8],[31,7],[53,5],[18,-27],[10,-39],[21,-57],[8,-47],[2,-37],[2,-33],[3,-30],[7,-35],[6,-36],[12,-51],[9,-34],[5,-24],[12,-37],[9,-41]],[[84381,79462],[-14,0],[-26,0],[-25,-1]],[[84316,79461],[6,16],[-46,-16],[-10,-4],[-31,-10],[-4,-7],[-9,-14],[-18,-23],[-31,-37],[-4,1],[-22,5],[-8,1],[-19,-18],[-20,0],[-25,-7],[-42,-41],[-20,-22]],[[84013,79285],[-15,0],[-26,46],[-2,3],[-1,-1],[-35,-14],[-18,15],[-34,26],[-3,2],[-6,5],[-5,7],[5,32],[0,2],[-2,4],[-5,6],[-2,4],[-17,8],[-10,6],[-24,-20],[-1,-1],[-32,-35],[-11,-11],[-8,-9],[-2,-2],[-9,1],[-6,1],[-5,-4],[-58,-46],[-2,-3],[-15,-44],[-6,-20],[-7,-21],[-3,-7],[-12,-10],[-17,-15],[-25,-21],[-4,-3],[-24,-7],[-14,-4],[-4,-2],[-14,4],[-7,1],[-3,1],[0,2],[0,11],[-36,0],[-12,0],[-23,-1],[-10,-30],[0,-1],[-10,3],[-47,15],[-19,1],[-24,2],[-38,-4],[0,-1],[-37,-4],[3,-36],[-25,-51],[-2,-15],[-6,-15],[-4,-3],[-6,-3],[-16,-6],[-4,0],[-24,0],[-15,7],[-14,15],[-14,22],[-14,18],[-10,13],[-9,12],[-14,18],[-12,15],[-9,18],[-13,5],[-13,10],[-13,7],[-15,5],[-24,9],[0,-151],[0,-29],[0,-25],[1,-76],[1,-70],[2,-77],[0,-2],[-34,0],[-76,-1],[-34,0],[-12,0],[-33,-1],[-28,0],[-43,0],[-2,0],[-97,-2],[-15,0],[-50,0],[-13,-1],[-65,0],[-39,-1],[-23,0],[-35,-1],[-56,-1],[-86,-1],[-128,-3],[-169,-4],[-18,0],[-15,-1],[-17,0],[-15,-1],[-31,0],[-57,-2],[-117,-3],[-30,-1],[-27,-1],[-28,-1],[-27,-1],[-26,-1],[-28,-1],[-25,-1],[-15,0],[-56,-1],[-43,-1],[-25,0],[-29,-1],[-50,-1],[-15,0],[-3,0],[-2,0],[-15,-1],[-56,-1],[-27,0],[-27,-1],[-1,0],[-26,0],[-27,-1],[-28,0],[-22,-1],[-32,0],[-28,-1],[-27,-1],[-38,0],[-13,-1],[-59,-1],[-24,0],[-19,-1],[-36,0],[-33,0],[-21,0],[-16,0],[-24,-1],[-69,0],[-106,-2],[-44,0],[-27,-1],[-43,2]],[[80374,78721],[-1,31],[0,22],[-1,18],[0,20],[0,17],[0,18],[0,42],[-1,62],[-1,77],[-1,75],[0,36],[0,36],[-1,64],[0,51],[-1,24],[0,24],[0,25],[0,45],[-2,114],[-1,108],[-1,111],[2,25],[1,21],[-1,15],[0,16],[0,24],[0,21],[0,19],[0,22],[-5,81],[0,29],[0,66],[0,19],[0,4],[0,34],[-1,86],[0,26],[-1,54],[0,26],[-1,36],[0,42],[0,19],[0,17],[-2,143],[-1,55],[0,32],[1,18],[-1,71],[0,36],[-1,34]],[[80353,80832],[-25,42],[14,37],[34,26],[20,36],[13,24],[1,35],[1,6],[0,16],[0,10],[-6,24],[-10,31],[-6,35],[-5,40],[-10,29],[-16,25],[-33,28],[-12,11],[-18,16],[-28,26],[-13,32],[3,16],[-9,7],[-26,22],[-26,23],[-50,29],[-56,0],[-38,13],[-31,19],[-3,44],[-3,35],[0,45],[-2,53],[-1,54],[-8,40],[-14,44],[-15,44],[1,38],[1,37],[-9,39],[2,38],[-14,41],[-24,25],[-22,28],[0,48],[16,45],[7,27],[-8,37],[12,39],[30,52],[30,39],[-2,27],[-5,-1],[-30,-8],[-37,-10],[-21,22],[-13,13],[-39,32],[-43,-8],[-36,4],[-24,20],[-8,5],[-38,29],[-22,33],[-8,36],[7,35],[5,32],[-3,32],[-7,10],[-8,12],[-9,25],[-40,0],[-31,25],[-10,39],[-18,16],[-12,10],[-21,28],[-4,5],[-4,47],[19,33],[18,34],[0,1],[-10,41],[-30,44],[-19,41],[-23,30],[9,46],[-7,26],[-18,42],[-18,44],[3,49],[18,42],[30,24],[45,14],[37,30],[49,10],[38,-8],[31,22],[36,39],[21,41],[4,53],[-3,55],[-13,40],[0,36],[-35,15],[-18,-24],[-33,13],[-54,18],[-10,46],[12,31],[19,38],[16,29],[23,34],[21,24],[17,34],[26,29],[32,34],[41,2],[32,-9],[42,10],[1,0],[45,0],[42,-7],[28,2],[8,1],[-28,32],[-39,22],[-4,6],[-21,30],[-34,45],[-34,23],[-40,13],[-31,-26],[-3,-3],[-26,-27],[-31,-7],[-25,14],[-33,23],[-22,27],[-19,38],[15,15],[19,20],[-3,39],[-11,39],[-53,-1],[-25,-6],[-19,-20],[-34,-1],[-33,31],[-45,38],[-35,18],[-45,-14],[-30,-38],[-38,33],[-2,2],[-7,62],[7,41],[-19,38],[-22,38],[-6,37],[-38,32],[-44,22],[-44,18],[-50,22],[-32,15],[-27,15],[-26,12],[-33,19],[-21,17],[-23,26],[-36,30],[-21,19],[-26,25],[-28,38],[-7,44],[-25,39],[-41,22],[-44,4],[-46,-31],[-9,-47],[-30,-10],[-28,12],[-13,46],[-3,53],[-41,46],[-1,57],[4,51],[4,47],[-18,169],[15,63],[54,139],[42,72],[11,20],[24,33],[33,35],[27,24],[42,26],[71,55],[17,18],[25,28],[22,29],[20,31],[24,35],[-27,48],[-6,41],[-12,42],[-15,34],[-15,37],[-11,33],[-1,37],[15,37],[28,40],[17,41],[34,34],[72,39],[43,30],[16,11],[66,9],[50,7],[79,-10],[47,-14],[67,4],[35,-17],[69,-32],[41,-17],[25,13]],[[81600,88441],[0,-3],[7,-33],[6,-36],[8,-16],[4,-24],[0,-3],[4,-3],[24,-14],[15,-9],[1,-1],[10,-9],[25,-30],[46,-137],[65,-184],[36,-112],[12,-47],[6,-23],[36,-179],[61,-294],[7,-47],[34,-161],[34,-162],[18,-59],[22,-46],[89,-191],[36,-74],[32,-64],[71,-151],[9,-18],[81,-182],[38,-104],[15,-20],[-1,-46],[-2,-53],[5,-53],[5,-48],[-5,-27],[-9,-61],[-36,-66],[-25,-39],[-8,-31],[14,-99],[9,-81],[20,-153],[22,-69],[6,-96],[0,-78],[21,-21],[39,-41],[60,-41],[22,-15],[47,-39],[42,-86],[1,-23],[2,-43],[20,-79],[11,-12],[38,-42],[81,-52],[50,-42],[-4,-41],[-3,-27],[27,-77],[6,-32],[-10,-30],[-9,-24],[1,-68],[8,-50],[10,-60],[11,-63],[2,-15],[4,-24],[7,-7],[3,-4],[3,-2],[21,-16],[11,-9],[23,-18],[29,-16],[32,-21],[38,-8],[18,-55],[16,-54],[1,-7],[6,-43],[-1,-25],[11,-74],[-2,-40],[20,-42],[7,-24],[3,-14],[8,-19],[14,-33],[14,-37],[13,-30],[5,-15],[7,-21],[8,-31],[10,-39],[0,-1],[5,-43],[-8,-30],[-6,-28],[-7,-28],[18,-19],[-31,-32],[-17,-16],[-20,-28],[-10,-25],[1,-34],[1,-42],[7,-30],[1,-5],[6,-30],[9,-39],[10,-44],[22,-51],[12,-31],[15,-47],[-16,-64],[-26,-45],[-12,-19],[-15,-64],[-16,-43],[-15,-48],[-4,-62],[11,-55],[0,-41],[16,-28],[34,-33],[6,-44],[6,-51],[19,-35],[2,-49],[-46,12],[-29,-38],[-19,-14],[-16,-20],[-40,-25],[14,-3],[39,-8],[32,31],[30,17],[27,-29],[46,-39],[39,-18],[7,-41],[21,-15],[0,-28],[-7,-40],[31,-26],[32,-51],[25,-41],[-14,-28],[7,-28],[33,1],[22,6],[24,-68],[5,-57],[24,-7],[3,-44],[26,-36],[18,-32],[23,-50],[4,-46],[-9,-46],[0,-37],[27,-54],[47,-18],[1,-48],[-15,-28],[4,-56],[34,-9],[37,13],[31,-22],[39,5],[4,0],[8,-9],[18,-25],[-3,-28],[20,-48],[-8,-23],[-7,-5],[-16,-12],[12,-35],[8,-12],[8,-11],[-2,-16],[-3,-17],[1,-29],[1,-27],[18,-25],[19,-24],[7,-31],[18,9],[7,3],[16,-23],[7,-14],[9,-18],[24,-19],[11,-7],[-17,-20],[-24,4],[-11,2],[-8,-6],[-17,-12],[11,-45],[6,-13],[18,-39],[29,-3],[22,-15],[22,-41],[9,-43],[-13,-64],[43,-83],[51,-56],[14,-15],[5,-6],[27,-29],[3,-15],[1,-7],[8,-10],[20,-25],[25,-20],[28,-41],[11,-23],[4,-10],[27,-47],[21,-22],[9,-21],[2,-5],[3,-11],[4,-40],[4,-28],[3,-18],[4,-25],[0,-32],[5,-15],[5,-12],[19,-35],[27,-51]],[[82263,88451],[20,-97],[19,-73],[11,-49],[13,-58],[10,-42],[17,-76],[10,-45],[9,-37],[10,-41],[9,-35],[10,-39],[6,-25],[11,-38],[13,-46],[7,-36],[7,-28],[10,-38],[10,-44],[14,-64],[14,-59],[13,-55],[10,-41],[8,-32],[11,-50],[9,-39],[11,-45],[8,-40],[8,-34],[6,-35],[10,-47],[13,-60],[8,-40],[8,-33],[7,-36],[6,-32],[8,-39],[11,-48],[9,-41],[10,-47],[11,-57],[9,-44],[6,-31],[8,-40],[11,-54],[10,-50],[8,-31],[11,-48],[6,-37],[9,-41],[11,-56],[13,-66],[6,-31],[7,-41],[11,-54],[12,-56],[12,-54],[8,-42],[11,-53],[9,-44],[10,-51],[10,-51],[9,-46],[7,-38],[8,-45],[8,-43],[8,-44],[10,-56],[8,-46],[6,-34],[7,-33],[8,-47],[12,-58],[6,-29],[5,-28],[6,-33],[8,-36],[8,-41],[10,-46],[12,-53],[12,-56],[13,-54],[13,-57],[9,-44],[10,-46],[10,-43],[9,-44],[10,-53],[12,-54],[14,-71],[9,-39],[9,-37],[10,-46],[8,-34],[6,-31],[6,-30],[7,-30],[11,-44],[8,-33],[8,-35],[12,-45],[14,-56],[11,-40],[15,-60],[15,-56],[16,-54],[17,-63],[14,-50],[10,-29],[10,-33],[19,-60],[24,-59],[12,-33],[13,-31],[21,-46],[17,-40],[19,-28],[8,-50],[-46,-46],[-50,14],[-35,58],[-10,38],[-5,14],[-23,75],[-51,108],[-31,66],[-17,54],[0,42],[-9,25],[-2,32],[-9,63],[-13,48],[-25,65],[-9,16],[-24,43],[-10,8],[-46,38],[-66,54],[-36,55],[-8,34],[-10,46],[7,69],[2,22],[4,19],[8,41],[40,26],[14,19],[17,23],[13,42],[0,2],[-2,17],[-6,39],[-15,17],[-13,16],[-27,41],[-9,27],[0,28],[-2,32],[0,3],[11,26],[17,54],[8,32],[-11,36],[-27,45],[-6,36],[12,28],[-20,-1],[-3,17],[-7,48],[-18,78],[8,26],[-2,27],[-21,24],[4,47],[-9,45],[-13,43],[-7,39],[7,35],[-10,27],[-16,40],[-13,16],[16,10],[-3,24],[-18,-7],[-16,14],[17,19],[9,41],[-12,55],[-15,65],[-47,38],[22,33],[5,52],[-12,50],[-24,42],[-17,23],[0,27],[8,25],[-12,48],[-4,23],[-1,20],[11,17],[-14,38],[-16,2],[-31,4],[-21,17],[0,-24],[24,-34],[5,-6],[-32,-12],[1,-8],[11,-100],[19,-35],[16,-1],[22,-58],[-7,-34],[-9,-33],[-1,-30],[9,-55],[17,-17],[-10,-44],[9,-29],[12,-23],[3,-25],[10,-106],[9,-17],[18,-57],[13,-44],[7,-74],[-7,-21],[19,-60],[14,-9],[8,-68],[8,-56],[-8,-13],[15,-41],[7,-26],[42,-2],[9,-17],[-11,-40],[11,-41],[16,-37],[33,-25],[-3,-54],[-17,-44],[-12,-46],[0,-38],[12,-44],[27,-41],[23,-35],[9,-34],[-1,-19],[-15,-25],[-13,-4],[-23,-31],[-37,42],[-2,61],[-11,49],[-23,32],[-30,47],[-55,42],[-40,32],[-32,25],[-20,37],[-17,87],[-13,41],[0,1],[-23,35],[-50,49],[-54,36],[-24,24],[-20,19],[-13,20],[-12,18],[-11,52],[-2,51],[-1,37],[-8,24],[-22,62],[-6,25],[-5,20],[5,10],[7,13],[32,24],[18,11],[29,10],[30,19],[17,27],[17,28],[-1,11],[-1,36],[-20,34],[-6,5],[-28,24],[-26,2],[-27,-13],[-7,-2],[-15,-4],[-37,-10],[4,-23],[57,9],[10,9],[8,7],[31,1],[22,-16],[2,-7],[9,-30],[-4,-34],[-33,-30],[-7,-5],[-26,-16],[-38,-21],[-34,-20],[-22,140],[-5,89],[5,28],[44,48],[23,55],[10,53],[9,42],[-12,84],[-2,19],[-10,99],[-1,3],[-16,40],[-14,34],[-50,108],[-42,101],[-42,92],[-31,62],[-11,24],[-9,25],[-28,53],[-8,17],[-56,112],[-59,116],[-6,24],[-35,77],[-22,92],[-48,220],[-4,38],[-26,126],[-83,401],[-11,68],[-39,111],[-11,32],[-55,154],[-32,115],[-18,35],[-47,40],[-23,30],[-8,24],[1,8],[0,18],[-15,22],[1,16]],[[34319,84105],[1,-21],[6,-18],[11,-26],[-1,-26],[-2,-6],[11,-45],[41,-109],[2,-4],[8,-22],[3,-8],[19,-30],[-15,-9],[-7,-3],[-12,-10],[-17,-1],[-46,-3],[-57,-119],[-46,-63],[-52,-96],[-41,-36],[-15,-14],[-3,-6],[-3,-10],[-2,-3],[-3,-9],[-39,-85],[-1,-3],[-1,-2],[-4,-3],[-15,-13],[-1,-1],[-21,-11],[-7,-8],[-3,-14],[16,-21],[3,-5],[0,-6],[-1,-15],[-3,-42],[-1,-14],[0,-10],[-1,-2],[-36,-65],[-5,-5],[-15,-16],[-14,-14],[-5,-5],[-2,-14],[17,-65],[14,-27],[0,-3],[4,-29],[6,-26],[15,-18],[3,-3],[41,-72],[1,-5],[3,-13],[2,-6],[-1,-8],[-2,-19],[0,-2],[1,-9],[2,-13],[9,-8],[2,-1],[8,-7],[3,-2],[28,-25],[3,-2],[10,-22],[0,-6],[-7,-68],[3,-13],[9,-20],[7,-14],[17,-35],[21,-54],[1,-3],[-1,-9],[-11,-101],[7,-49],[42,-69],[15,-24],[12,-35],[-1,-10],[-1,-15],[11,-66],[-6,-65],[-6,-20],[-5,-44],[8,-22],[-1,-4],[24,-30],[19,-13],[32,-8],[48,-12],[11,-5],[11,-14],[5,-11],[16,-38],[3,-9],[4,-19],[-1,-118],[0,-4],[-2,-14],[-1,-11],[-8,-20],[-3,-4],[-1,-1],[-9,-12],[-2,-2],[-38,-32],[-29,-24],[-58,-49],[-14,-17],[-56,-90],[-7,-16],[-14,-49],[-8,-102],[-9,-26],[-8,-7],[-9,-7],[-3,-3],[-13,-4],[-30,3],[-18,11],[-17,20],[-3,3],[-6,3],[-5,-4],[-2,-1],[-9,-24]],[[34016,81143],[-2,-20],[-1,-6]],[[34013,81117],[-18,10],[-4,3],[-50,33],[-25,23],[-3,3],[-17,19],[-22,24],[-18,16],[-22,8],[-5,2],[-5,0],[-7,1],[-15,0],[-24,-9],[-14,-11],[-13,-19],[-8,-23],[-4,-20],[-6,-58],[-7,-50],[-10,-29],[-8,-18],[-9,-13],[-10,-7],[-16,-11],[-17,-8],[-8,-4],[-23,-4],[-6,2],[-12,3],[-37,11],[-86,37],[-10,5],[-14,6],[-50,7],[-8,1],[-74,8],[-42,6],[-2,0],[-17,5],[-3,3],[-38,25],[-3,-1],[-1,0],[-20,-3],[-191,-157],[-304,-242],[-84,-66],[-41,-32],[-39,-31],[-36,-28],[-3,-3],[-29,-22],[-2,-2],[-13,-10],[-21,-16],[-73,-58],[-14,-11],[-27,-22],[-27,-21],[-28,-22],[-18,-14],[-20,-16],[-24,-19],[-38,-30],[-34,-27],[-15,-12],[-31,-24],[-53,-41],[-95,-76],[-20,-33],[-92,-157],[-13,-22],[-29,-52]],[[31788,79824],[-41,-3],[-42,-20],[-70,-11],[-32,-3],[-29,-15],[-32,-6],[-29,-20],[-34,6],[-47,-27],[-50,9],[-42,-17],[-38,-7],[-46,-26],[50,-33],[36,0],[33,6],[46,-21],[38,5],[33,5],[37,3],[50,-1],[37,-1],[54,15],[27,24],[22,11],[26,-18],[-57,-65],[-63,-35],[-26,-9],[-27,-2],[-34,-1],[-37,2],[-29,-8],[-29,8],[-76,20],[-70,22],[-65,19],[-61,13],[-121,14],[-69,6],[-64,5],[-24,12],[-55,-11],[-52,-1],[-36,-3],[-90,-6],[-73,-7],[-45,-8],[-45,-6],[-43,-9],[-28,-7],[-56,-14],[-59,-21],[-47,-27],[-42,-21],[-148,-158],[-19,-22],[-65,34],[-82,100],[-56,82],[-67,100],[-38,29],[-22,42],[-17,32],[-22,49],[-18,33],[-13,28],[-14,34],[-12,34],[-17,44],[-22,57],[-8,27],[-14,27],[-9,30],[-20,57],[-15,59],[-17,44],[-21,50],[-18,50],[-15,48],[-17,52],[-16,49],[-11,45],[-18,54],[-10,51],[-7,35],[-13,40],[-15,38],[-6,36],[-12,83],[-2,7],[-35,166],[-46,250],[-46,271],[-17,171],[-4,110],[4,107],[8,80],[14,91],[17,71],[19,68],[24,65],[37,64],[31,47],[69,73],[47,27],[49,18],[36,11],[-16,-38],[-14,-18],[-14,-17],[-11,-25],[-23,-44],[-34,-77],[-10,-49],[-12,-63],[-18,-59],[-39,-98],[-42,-107],[-26,-69],[-8,-74],[2,-38],[18,-48],[9,-49],[-5,-54],[-17,-74],[-5,-63],[1,-42],[9,-47],[16,-53],[19,-66],[15,-72],[13,-60],[21,-95],[5,-44],[-16,-40],[1,-44],[10,-66],[39,-31],[2,0],[23,-1],[28,-33],[10,-47],[5,-38],[3,-26],[29,-21],[4,-50],[10,-45],[14,-50],[7,-45],[-2,-43],[-4,-35],[3,-59],[28,-80],[32,-58],[20,-34],[19,-44],[17,-40],[9,-33],[15,-35],[21,-61],[47,-34],[30,-55],[19,-22],[-8,-48],[-29,15],[10,-72],[22,-55],[26,35],[40,1],[30,-25],[7,-36],[-2,-26],[-7,-29],[-1,-73],[46,-14],[34,49],[41,-11],[2,44],[52,-13],[61,-11],[50,11],[25,36],[53,-19],[52,20],[23,31],[40,-20],[44,-2],[47,-9],[49,27],[33,-1],[29,22],[-14,34],[20,39],[7,34],[1,53],[22,11],[-10,28],[11,82],[-3,60],[21,38],[24,38],[8,69],[-18,13],[-16,41],[23,12],[-2,27],[7,36],[-2,48],[-22,29],[6,40],[24,26],[-6,29],[19,16],[-15,17],[-3,35],[0,41],[3,67],[-3,36],[-11,46],[-10,48],[-5,58],[16,39],[9,48],[15,75],[12,41],[2,34],[4,47],[7,41],[2,39],[-1,36],[0,37],[2,40],[7,37],[7,30],[-8,30],[-6,32],[-5,49],[-12,50],[-34,40],[-43,23],[-32,29],[-18,58],[-16,44],[-5,100],[-3,35],[14,27],[-22,31],[-14,36],[-28,52],[-55,50],[-47,34],[-65,7],[-45,24],[-34,44],[-32,64],[-13,28],[-25,53],[-13,54],[-10,29],[-15,41],[-16,50],[-14,38],[-19,33],[-29,65],[-38,82],[-28,54],[-31,55],[-42,69],[-31,47],[-136,173],[-54,67],[-50,55],[-28,32],[-37,39],[-15,44]],[[29509,85013],[20,63],[-19,39]],[[78166,87499],[-6,-16],[-60,-91],[-15,-34],[3,-88],[8,-43],[5,-32],[9,-40],[3,-31],[5,-32],[-3,-55],[-12,-29],[22,-97],[-21,-29],[-44,-16],[-16,17],[0,1],[-22,18],[-23,28],[-34,35],[-35,7],[-33,0],[-55,-14],[-16,-9],[-15,-29],[-14,-5],[-27,-10],[-46,-28],[-19,-23],[-8,-51],[-27,-26],[-48,-11],[-50,-18],[-95,-22],[-76,-71],[-8,-92],[-71,-26],[-71,-45],[38,-103],[0,-23],[-107,-1],[-10,-75],[27,-95],[52,-8],[132,-23],[18,0],[26,-66],[29,-51],[22,-34],[22,-6],[4,-5],[5,-6],[11,-12],[6,22],[1,4],[-10,23],[-41,8],[-5,29],[-19,28],[-29,66],[28,42],[3,40],[-12,62],[1,43],[21,37],[46,18],[45,13],[41,15],[36,5],[40,2],[35,-1],[40,-2],[30,-6],[42,1],[25,35],[-17,28],[-39,26],[-27,30],[-16,33],[28,31],[20,29],[4,6],[12,14],[10,11],[29,15],[20,10],[16,7],[17,43],[22,52],[71,-22],[46,22],[18,-9],[3,-42],[-5,-48],[9,-34],[21,-24],[34,-78],[18,-42],[22,-88],[10,-30],[8,-27],[0,-7],[0,-14],[1,-49],[-3,-47],[9,-48],[8,-57],[-11,-31],[-8,-35],[-14,-33],[-14,-58],[11,-54],[11,-41],[2,-39],[-4,-63],[-16,-51],[-8,-41],[13,-34],[8,-38],[-4,-30],[-17,-32],[-32,-34],[-25,-21],[-19,-39],[-6,-88],[-10,-34],[-36,-33],[-24,-37],[-12,-33],[-30,-40],[-50,-8],[-6,-41],[47,-15],[34,-8],[36,-9],[34,-28],[12,-24],[28,-35],[11,-34],[26,-50],[23,-41],[13,-36],[5,-36],[-21,-30],[-29,-16],[-2,-33],[32,-10],[23,-52],[-3,-47],[20,-16],[37,4],[49,-28],[44,-29],[32,-39],[12,-42],[14,-72],[11,-57],[-7,-50],[43,-4],[48,20],[50,32],[44,-18],[83,-50],[57,-35],[76,-26],[35,-3],[99,-8],[32,-12],[24,-15],[20,-7],[5,-2],[27,-47],[33,-30],[10,-10],[13,-12],[30,-30],[32,-31],[30,-25],[17,-14],[32,-29],[19,-38],[7,-53],[1,-3],[-2,-143],[-18,-37],[3,-10],[4,-10],[4,-12],[17,-25],[31,-8],[34,-41],[-35,-45],[-40,-45],[-26,-23],[-31,-36],[-33,-27],[-2,-1],[-21,-31],[-3,-18],[-6,-23],[-10,-42],[-3,-15],[-9,-45],[5,-20],[7,-33],[6,-21],[5,-16],[8,-34],[6,-26],[-9,-37],[-7,-2],[-34,-11],[-36,-30],[2,-21],[3,-25],[48,-8],[4,-5],[17,-22],[28,-44],[12,-56],[7,-44],[-10,-24],[-11,-34],[-15,-29],[-13,-30],[-13,-33],[3,-38],[31,-57],[21,-39],[27,-30],[22,-33],[6,-36],[-21,-44],[4,-45],[23,-48],[15,-65],[32,-65],[6,-50],[17,-26]],[[79290,82070],[-97,-1],[-62,0],[-11,0],[-10,0],[-22,0],[-45,1],[-109,-3],[-72,-1],[-51,-1],[-105,-2],[-58,-2],[-22,0],[-63,-3],[-53,-1],[-134,-4],[-203,-2],[-22,-1],[-137,-3],[-19,0],[-17,-1],[-9,0],[-85,-2],[-183,-5],[-162,-2],[-19,-1],[-77,-1],[-44,0],[-8,-1],[-11,0],[-83,-1],[-28,1],[-119,-3],[-55,-1],[-31,0],[-85,-1],[-34,-2],[-169,-1],[-26,0],[-1,0],[-70,-2],[-104,-2],[-35,-31],[-21,-28],[-13,-16],[-24,-23],[-33,-56],[-17,-13],[-40,-9],[-23,-14],[-45,-37],[-37,-43],[-17,-21],[-19,-19],[-21,-18],[-36,-29],[-48,-34],[-13,-11],[-12,-10],[-13,-9],[-13,-7],[-13,-5],[-13,-5],[-20,-10],[-13,-9],[-25,-21],[-29,-21],[-15,-9],[-20,-15],[-14,-23],[-15,-13],[-17,2],[-36,7],[-57,1],[-16,-2],[-20,-2],[-17,-4],[-36,-5],[-20,-3],[-21,-4],[-24,-4],[-71,-12],[-35,-6],[-52,-24],[-17,-9],[-21,-10],[-36,-19],[-44,-10],[-27,-8],[-17,3],[-27,2],[-21,-6],[-22,-12],[-19,-10],[-14,-16],[-12,-13],[-13,-12],[-28,-20],[-11,-10],[-14,-21],[-13,-26],[-28,-56],[-7,-28],[-6,-39],[-2,-12],[-2,-16],[-6,-16],[-20,-45],[-7,-20],[-4,-26],[-3,-25],[-2,-19],[1,-26],[-3,-23],[-16,-40],[-8,-15],[-8,-16],[-8,-14],[-16,-18],[-35,-39],[-25,-31],[-19,-22],[-18,-16],[-27,0],[-19,-1],[-18,0],[-22,-1],[-57,0],[-22,0],[-27,-2],[-39,2],[-28,-2],[-21,1],[-34,-1],[-30,-1],[-18,0],[-49,-1],[-46,1],[-19,0],[-85,-21],[-43,-12],[1,-21],[-20,2],[-57,0],[-31,-10],[-41,-15],[-35,-10],[-61,-20],[-34,-10],[-35,-33],[-30,-29],[-12,-11],[-13,-13],[-17,-14],[-28,-26],[-60,-55],[-33,-29],[-14,-17],[-26,-55],[-23,-40],[-214,0],[-50,0]],[[73461,80204],[3,28],[5,55],[1,15],[3,32],[2,20],[3,25],[0,1],[3,21],[2,19],[3,24],[1,21],[7,76],[9,102],[-1,48],[-1,26],[0,31],[-1,76],[-1,35],[0,20],[0,90],[-1,23],[1,45],[1,39],[0,10],[0,30],[-1,43],[0,22],[1,43],[-1,68],[0,15],[-2,48],[-1,19],[1,13],[0,8],[-2,18],[-2,18],[1,36],[3,24],[-3,28],[1,17],[0,22],[1,80],[1,23],[-1,58],[0,17],[0,17],[0,43],[-2,30],[1,46],[-1,12],[-1,30],[-1,38],[0,5],[0,29],[0,48],[-3,54],[-1,107],[-2,238],[-1,28],[-1,160],[-1,73],[-1,102],[-2,124],[-2,241],[-2,219],[0,20],[-3,201],[0,1],[-1,278],[-1,144],[0,145],[-3,271],[0,110],[-1,236],[0,47],[-4,408],[0,68],[-1,104],[-1,287],[0,259],[-1,40],[0,37],[-1,28],[0,30],[0,6],[0,52],[0,101],[0,1],[1,45],[0,152],[0,29],[-1,276]],[[73461,80204],[-57,-5],[-11,-1],[-16,-1]],[[73377,80197],[2,17],[-1,18],[5,21],[5,17],[5,21],[4,21],[2,19],[-2,21],[-6,16],[-1,19],[4,24],[-6,20],[-1,25],[3,16],[0,17],[-6,15],[-2,19],[-3,17],[-4,17],[-5,15],[-3,18],[-4,16],[-7,19],[-3,16],[-7,15],[-9,11],[-10,11],[-11,15],[-12,15],[-12,13],[-13,11],[-11,14],[-16,17],[-11,12],[-12,13],[-17,15],[-10,9],[-15,10],[-13,11],[-23,12],[-16,5],[-24,8],[-15,3],[-30,0],[-19,1],[-15,0],[-7,-1],[-11,-2],[-1,0],[-3,-2],[-16,-7],[-20,-4],[-3,1],[-15,3],[-2,0],[0,2],[0,16],[0,1],[2,1],[18,11],[21,11],[13,5],[10,0],[7,-1],[1,0],[0,1],[10,12],[12,21],[2,5],[6,14],[2,18],[0,1],[0,16],[1,17],[-1,18],[1,26],[14,-2],[-12,6],[5,20],[0,19],[-10,12],[-16,12],[-15,12],[-13,3],[-13,4],[-24,2],[-20,1],[-18,3],[-18,-2],[-14,-2],[-14,2],[-17,5],[-3,9],[0,2],[-3,6],[8,12],[-12,-8],[-2,-1],[-14,0],[-15,2],[-19,9],[-12,9],[-18,15],[-10,9],[-1,1],[-2,1],[-18,2],[-9,-4],[-7,-3],[-2,0],[-13,0],[-26,-2],[-22,-1],[1,38],[0,11],[0,5],[2,64],[-56,-1],[-10,0],[-48,-1],[0,32],[0,72],[-1,13],[-6,0],[-19,1],[-1,37],[-1,19],[-9,0],[-17,0],[0,29],[0,25],[-10,-1],[-21,0],[0,59],[0,94],[1,105],[0,26],[-35,0],[-21,0],[-23,0],[-2,19],[-1,91],[-39,0],[0,16],[0,14],[0,12],[0,2],[0,16],[0,19],[-9,0],[-22,0],[-39,0],[-44,0],[-62,-1],[0,44],[-9,0],[-169,0],[-38,19],[-33,16],[-22,-32],[-4,-2],[-15,-4],[-22,-9],[-19,-7],[-3,-2],[-7,-3],[-14,1],[-55,16],[-11,7],[-31,27],[-34,30],[-1,1],[-27,30],[-3,3],[-50,51],[-9,5],[-20,4],[-31,0],[-3,0],[-20,1],[-29,-3],[-88,-32],[-82,-15],[-13,-3],[-30,-12],[-10,-4],[-12,-1],[-12,6],[-17,12],[-2,2],[-2,10],[-7,6],[-6,3],[-51,0],[-11,-1],[-12,-6],[-18,-6],[-9,3],[-45,27],[-40,24],[-70,37],[-11,5],[-15,6],[-19,4],[-20,-1],[-25,-4],[-87,-32],[-17,-7],[-14,-5],[-32,-14],[-107,-15],[-28,-10],[-4,-2],[-21,-23],[-1,-5],[-3,-13],[-5,-2],[-6,-3],[0,-1],[-16,-5],[-13,-6],[-101,22],[-2,0],[-17,5],[-5,2],[-17,6],[-6,2],[-2,1],[-5,3],[-14,22],[-1,1],[-7,12],[-5,4],[-16,9],[-9,3],[-25,9],[-60,22],[-4,4],[0,6],[1,4],[1,2],[-11,8],[-19,1],[-5,1],[-39,7],[-17,3],[-14,5],[-8,3],[-2,11],[-3,13],[-10,22],[-3,4],[-1,2],[-19,21],[-11,11],[-36,-4],[-5,2],[-38,14],[-7,2],[-4,1],[-5,5],[-6,10],[-8,60],[-1,16],[-77,17],[-14,3],[-1,-2],[-1,-1],[-11,-6],[-15,2],[-32,36],[-11,16],[-43,72],[-2,3],[3,25],[-20,31],[-18,8],[-8,1],[-15,3],[-26,-8],[-60,-25],[-32,-12],[-2,0],[-20,3],[-15,3],[-2,-2],[-43,-38],[-20,31],[-17,28],[-2,3],[-2,-1],[-26,-11],[-4,-2],[-2,0],[-19,0],[-3,-1],[-4,5],[-5,8],[-13,16],[-10,14],[-9,13],[-4,5],[-14,3],[-129,-27],[-14,-8],[-4,-3],[-13,9],[-25,18],[-1,1],[-10,6],[-17,11],[-16,-2],[-2,0],[-32,-6],[-18,-3],[-2,0],[-13,1],[-7,0],[-31,2],[-7,4],[-1,2],[0,10],[2,3],[-1,17],[-1,4],[-7,7],[-2,1],[-65,29],[-10,2],[-16,-4],[-9,-4],[-5,-2],[-3,12],[-1,0],[-2,10],[-1,3],[-8,26],[-1,1],[-19,8],[-4,4],[-5,7],[-14,38],[-8,24],[-6,17],[-18,50],[-18,52],[-6,19],[3,10],[13,7],[4,2],[-14,31],[-6,23],[-5,24],[-1,6],[-12,49],[-2,1],[-27,20],[-16,36],[0,3],[-1,0],[-2,18],[1,4],[1,7],[-1,17],[0,4],[-24,14],[-10,6],[-5,2],[-3,1],[-16,5],[-1,0],[-4,-2],[-5,-9],[-31,22]],[[68603,83360],[19,31],[2,1],[32,17],[5,3],[36,21],[31,18],[16,-38],[1,-4],[13,-4],[18,-7],[7,-2],[7,-1],[11,3],[4,1],[15,5],[9,7],[6,4],[21,5],[2,0],[23,-3],[27,-7],[28,-12],[5,-2],[19,2],[17,4],[6,1],[55,22],[10,6],[0,1],[2,2],[21,20],[24,22],[24,25],[35,20],[22,10],[22,10],[32,7],[13,0],[74,-17],[10,2],[11,2],[2,-2],[12,-9],[13,-6],[12,-1],[12,2],[9,4],[1,0],[1,1],[80,55],[56,71],[13,15],[12,48],[4,17],[1,6],[-3,22],[3,46],[3,65],[1,11],[9,24],[4,9],[22,32],[3,4],[11,5],[11,1],[0,-1],[5,-9],[4,-4],[6,-3],[41,-9],[30,-6],[41,-9],[11,-2],[39,-14],[2,-1],[21,-37],[39,-10],[6,0],[41,-3],[3,0],[22,2],[2,-1],[15,-2],[9,0],[22,1],[59,18],[25,9],[29,28],[19,44],[2,7],[2,43],[0,1],[1,1],[0,1],[0,1],[26,43],[68,74],[19,18],[8,5],[21,2],[0,10],[0,1],[20,69],[3,4],[41,27],[21,23],[36,40],[7,14],[5,7],[6,9],[4,5],[11,13],[1,1],[13,8],[-2,9],[0,10],[8,24],[1,2],[14,30],[19,42],[6,-2],[9,-4],[17,35],[10,19],[6,14],[2,22],[0,2],[5,21],[2,8],[-1,3],[-3,11],[-5,8],[1,5],[8,15],[2,2],[37,46],[1,1],[11,6],[4,10],[8,23],[7,19],[12,34],[0,1],[4,24],[1,1],[14,63],[0,2],[60,106],[4,1],[5,-1],[2,0],[2,0],[12,1],[17,2],[29,2],[83,7],[79,4],[11,1],[20,7],[30,10],[23,10],[37,15],[4,2],[21,8],[35,15],[37,20],[1,0],[2,1],[23,15],[24,15],[0,1],[10,10],[3,4],[16,31],[23,29],[45,42],[18,16],[4,5],[11,15],[20,27],[25,49],[3,6],[0,1],[17,13],[32,24],[37,23],[2,2],[54,35],[36,25],[3,2],[50,31],[40,28],[1,0],[13,10],[28,26],[4,5],[7,8],[28,33],[13,14],[0,1],[14,22],[14,29],[1,2],[1,5],[16,61],[1,1],[7,42],[29,159],[1,2],[0,2],[10,31],[4,10],[1,2],[0,1],[35,73],[5,6],[44,23],[1,0],[40,21],[1,1],[133,74],[12,7],[71,43],[2,10],[5,21],[3,3],[14,14],[3,4],[20,24],[0,1],[8,12],[11,25],[37,96],[6,17],[6,22],[0,29],[-5,13],[-25,50],[-9,8],[-11,-4],[-1,0],[-18,-12],[-1,0],[-11,-7],[-7,-1],[-1,0],[-7,5],[-5,8],[0,1],[-1,2],[-2,5],[-2,11],[0,1],[1,11],[0,10],[1,7],[1,7],[0,2],[5,25],[2,6],[0,1],[9,19],[26,57]],[[68603,83360],[-16,-19],[-2,-2],[-41,-20],[-12,4],[-29,10],[-34,11],[7,34],[-21,27],[-10,13],[-7,9],[-4,4],[-28,28],[-39,20],[-22,4],[-8,2],[-5,-2],[-6,-14],[-47,10],[-12,2],[-18,10],[-20,5],[-7,0],[-5,0],[-3,0],[-8,-6],[-5,-7],[-10,-17],[-8,-22],[-3,-12],[-5,-21],[-1,-3],[-10,-7],[-3,0],[-7,0],[-8,2],[-39,24],[-16,16],[-7,7],[-21,24],[-16,17],[-43,-33],[-4,-3],[-66,-52],[-6,-2],[-26,12],[-8,4],[-10,16],[-9,13],[-14,21],[-4,6],[-1,7],[-1,3],[0,9],[-1,10],[-24,40],[-89,73],[-32,4],[-27,-6],[-51,0],[-11,6],[-6,1],[-18,2],[-1,0],[-2,-1],[-7,-9],[-25,-9],[-15,-1],[-5,4],[1,17],[0,3],[-29,26],[-97,41],[-19,7],[-15,3],[-10,-9],[-26,-9],[-5,-1],[-16,-5],[-9,-3],[-7,-1],[-2,-1],[-62,-1],[-2,2],[-1,2],[0,16],[-4,3],[-22,7],[-17,-9],[-7,-4],[-6,-6],[-3,-5],[1,-8],[0,-12],[-2,-2],[-1,-1],[-3,-4],[-13,-12],[-3,-2],[-3,0],[-10,-1],[-7,-2]],[[33152,79739],[26,-10],[58,-6],[38,-10],[35,-19],[30,-7],[36,10],[38,-13],[24,-20],[23,-25],[28,-14],[29,-1],[30,-28],[36,-37],[12,-47],[57,4],[31,-6],[-37,-34],[-27,-45],[-43,-56],[-30,-62],[-31,-36],[-63,-154],[-26,-58],[-20,-57],[-19,-86],[-10,-34],[-96,-28],[-48,-11],[-32,-2],[-47,-15],[-34,-7],[-39,-7],[-27,-7],[-35,-1],[-34,6],[-31,8],[-107,51],[-42,24],[-29,19],[-19,38],[-66,32],[-31,31],[-65,64],[-27,21],[-52,44],[-31,24],[-75,55],[-35,23],[-42,32],[-67,49],[-39,29],[-50,26],[-44,28],[-46,27],[-126,55],[-81,31],[-55,17],[-68,17],[-28,26],[52,30],[49,9],[27,-3],[67,-5],[2,0],[28,10],[37,14],[57,4],[50,2],[31,6],[42,-3],[41,1],[77,-2],[39,-2],[48,-4],[72,-2],[68,-14],[37,-7],[34,-17],[31,-11],[35,-42],[10,-33],[31,-11],[35,-14],[38,-8],[32,-10],[28,-4],[53,-4],[41,-6],[41,-4],[41,-9],[31,-5],[33,-3],[53,-6],[45,-3],[43,-1],[55,22],[-23,15],[-57,8],[-27,-2],[-33,10],[-42,-2],[-44,10],[-31,1],[-27,6],[-34,9],[-33,19],[-34,5],[-30,4],[-32,2],[-34,-4],[-33,4],[-48,32],[45,2],[32,18],[55,6],[10,29],[-28,12],[-37,7],[60,39],[32,26],[39,1],[44,12],[30,6],[41,9],[42,0],[31,-1],[28,4],[27,0]],[[35030,80371],[-39,-22],[-49,51],[30,22],[16,3],[23,-6],[19,-48]],[[34986,80440],[-31,-9],[-17,0],[-25,3],[-51,45],[34,11],[87,-7],[28,-21],[-25,-22]],[[38430,80623],[-81,-112],[-50,-46],[-29,-32],[-35,-34],[-137,-139],[-67,-63],[-22,-21],[-21,-19],[-40,-36],[-37,-37],[-168,-173],[-64,-55],[-36,-21],[-36,-26],[-30,-17],[-32,-15],[-44,-28],[-57,-35],[-40,-24],[-19,-13],[-89,-46],[-54,-23],[-129,-52],[-30,-12],[-51,-22],[-50,-17],[-38,-12],[-35,-7],[-48,-14],[-59,-18],[-51,-17],[-51,-19],[-44,-16],[-34,-13],[-38,-15],[-28,-11],[-35,-15],[-43,-20],[-117,-55],[-49,-23],[-40,-21],[-58,-30],[-33,-18],[-43,-24],[-36,-24],[-111,-72],[-23,-10],[-60,-44],[-29,-18],[-47,-32],[-137,-85],[-64,-45],[-45,-31],[-50,-35],[-44,-31],[-59,-38],[-63,-36],[-135,-71],[-23,-18],[-30,-10],[-38,-15],[-147,-55],[-107,-42],[-92,-33],[-140,-53],[-65,-23],[-52,-19],[-45,-11],[-56,-19],[-65,-18],[-89,-32],[-53,-16],[-27,-12],[-43,-11],[-64,-16],[-37,-6],[-55,-9],[-24,6],[-24,39],[-23,37],[-58,79],[-59,73],[-38,38],[-82,71],[-53,43],[-48,37],[-72,42],[-43,29],[-27,13],[-33,26],[-28,27],[-15,41],[32,32],[31,-16],[26,-31],[21,-22],[25,-44],[60,-18],[25,-14],[31,-20],[4,-27],[24,-10],[29,-27],[37,-33],[47,-41],[44,-8],[55,-19],[23,-7],[29,-16],[32,-16],[45,-7],[46,-17],[54,-22],[48,-20],[95,-26],[56,-23],[41,16],[56,3],[70,12],[1,36],[12,37],[31,18],[34,3],[24,-36],[34,-9],[61,27],[60,32],[51,20],[47,13],[38,5],[32,7],[67,33],[43,15],[53,21],[23,15],[23,14],[21,11],[24,14],[27,15],[25,15],[23,17],[65,26],[50,31],[49,42],[42,22],[29,45],[22,34],[18,-11],[26,7],[27,16],[-8,41],[30,-21],[30,35],[36,-12],[5,35],[8,53],[38,21],[19,-15],[33,-16],[30,16],[-20,25],[-36,37],[-36,20],[28,22],[42,13],[37,1],[30,-1],[34,-22],[53,11],[31,6],[24,34],[28,32],[29,-13],[18,45],[42,3],[23,17],[43,-7],[28,27],[24,28],[32,15],[19,42],[52,-6],[46,20],[70,32],[42,-3],[28,20],[32,25],[42,13],[25,13],[63,22],[40,15],[43,9],[41,9],[29,9],[40,7],[57,18],[38,12],[37,14],[90,21],[40,16],[53,22],[24,30],[29,-14],[32,3],[40,17],[42,36],[35,-4],[42,36],[8,48],[-42,45],[30,9],[37,-19],[24,-24],[28,-10],[24,10],[29,14],[32,20],[36,16],[29,20],[27,17],[34,16],[31,39],[17,48],[22,42],[-25,-2],[-24,-19],[-22,-28],[-17,-47],[-33,-26],[-33,1],[-34,13],[-2,56],[27,58],[67,27],[34,14],[50,33],[49,54],[49,36],[55,29],[49,38],[46,41],[45,7],[40,6],[33,29],[39,23],[31,33],[34,25],[44,36],[24,38],[28,20],[19,36],[-40,8],[19,30],[38,-12],[6,2],[1,3],[44,32],[35,37],[42,56],[26,45],[27,65],[34,51],[38,28],[33,41],[19,-36],[-32,-58],[-73,-85],[-67,-85],[-53,-67]],[[34013,81117],[-8,-25],[30,-47],[14,-22],[28,-42],[36,-44],[40,-14],[32,-8],[10,-3],[23,-4],[8,-1],[59,-36],[58,-36],[40,-14],[34,-33],[28,-20],[36,-37],[32,-54],[17,-25],[27,-18],[48,-28],[52,-23],[20,-32],[23,-26],[20,-29],[27,-9],[41,-52],[1,-1],[41,-27],[42,-41],[30,-46],[-3,-21],[-5,-45],[-39,-36],[-38,-35],[-35,-14],[-45,-24],[-35,-6],[-47,-10],[-48,-5],[-40,-5],[-29,-1],[-33,5],[-127,-7],[-34,-10],[-46,-19],[-46,-23],[-33,-18],[-33,-5],[-22,44],[-28,22],[-37,10],[-44,16],[-37,10],[-29,7],[-34,2],[-41,7],[-43,9],[-31,10],[-57,7],[-38,9],[-39,11],[-43,2],[-35,-2],[-60,1],[-37,-5],[-31,0],[-49,5],[-25,-4],[-38,0],[-59,1],[-84,-11],[-48,-15],[-49,-3],[-30,-1],[-31,-10],[-34,-6],[-53,-15],[-38,-12],[-45,-16],[-78,-15],[-85,-22],[-32,-10],[-47,-14],[-41,-14],[-44,-12],[-31,-12],[-43,-24],[-30,-1],[-51,-13],[-29,-5],[-51,-32],[-43,-1],[-36,7],[-26,-5],[-29,-3],[-28,-13],[-28,-18],[-49,-2],[-25,-12],[-23,-25],[-24,9],[-47,-39],[14,46],[-27,-3],[-37,-7],[-35,-18],[-22,-7],[-33,-4],[-36,-16],[-33,-5]],[[40187,81871],[39,-2],[40,9],[13,-39],[-6,-107],[-19,-55],[-18,-46],[-40,-57],[-25,-17],[-66,-27],[-27,-15],[-38,-14],[-24,-19],[-49,-23],[-82,-35],[-35,-17],[-94,-48],[-65,-35],[-72,-30],[-28,-12],[-212,-70],[-177,-54],[-205,-56],[-60,48],[-3,100],[21,6],[42,-26],[57,-34],[16,-9],[59,-2],[70,9],[46,12],[54,35],[22,45],[39,16],[58,-18],[52,-5],[82,22],[59,19],[65,52],[2,0],[36,32],[45,48],[27,31],[20,31],[21,46],[20,30],[31,45],[70,32],[28,15],[60,14],[25,-38],[14,-35],[36,-24],[24,9],[-14,57],[-18,76],[25,45],[28,36],[6,60],[25,-11]],[[41894,84135],[58,66],[27,54],[42,-59],[23,-50],[-63,5],[-21,-70],[3,-4],[23,-27],[-5,-45],[-2,-42],[42,-26],[44,-5],[34,-8],[29,-11],[41,4],[54,11],[43,35],[32,29],[38,10],[30,-14],[36,-7],[25,-12],[58,-49],[42,-7],[38,3],[32,4],[72,11],[55,5],[19,5],[9,3],[48,-24],[82,-84],[38,-31],[54,-17],[23,-7],[20,-6],[19,34],[37,21],[13,-30],[32,12],[56,-20],[42,-29],[27,-24],[41,-27],[36,15],[7,-8],[48,-52],[9,-87],[21,-106],[8,-28],[3,-31],[0,-52],[-7,-45],[-6,-42],[-16,-73],[-27,-71],[-62,-124],[-36,-32],[-51,-22],[-60,-1],[-75,-4],[-53,-10],[-86,-25],[-37,-9],[-84,-6],[-94,52],[-55,0],[-65,24],[-40,16],[-56,22],[-36,11],[-55,13],[-44,21],[28,10],[34,0],[33,-7],[48,-13],[34,-12],[34,-11],[43,-16],[47,-10],[36,21],[36,-17],[32,-18],[27,-17],[87,-12],[39,15],[50,5],[31,5],[143,67],[-103,84],[-24,19],[-28,20],[-61,36],[-120,45],[-87,13],[-15,8],[-76,30],[-83,25],[-49,15],[-42,-3],[-45,-3],[-37,11],[-36,21],[-33,7],[-88,18],[-56,15],[-44,2],[-42,9],[-35,7],[-33,8],[-40,19],[-31,1],[-66,-6],[-41,3],[-27,-5],[-50,-18],[-24,-3],[-45,-19],[-24,-8],[-57,-23],[-40,-25],[-41,-32],[-32,-31],[-43,-27],[-31,-32],[-44,-37],[-26,-22],[-23,-5],[-10,33],[-20,20],[-52,7],[-56,21],[-48,11],[-31,-3],[-38,-4],[-20,-30],[-43,15],[-36,-13],[-40,-8],[-37,-7],[-31,-12],[-80,-23],[-28,-12],[-27,-18],[-68,-41],[-42,-32],[-50,-35],[-36,-32],[-47,-30],[-34,-20],[-26,-21],[-47,-24],[-20,-15],[-30,-19],[-23,-16],[-25,-10],[-41,-19],[-34,-13],[-39,-11],[-66,-38],[-38,-18],[-40,-17],[-40,-27],[-29,-12],[-67,-45],[-29,-21],[-18,-26],[-32,-32],[-32,-22],[-25,-40],[-80,-39],[-39,-36],[-47,-41],[-24,-9],[-27,-10],[-31,-22],[-30,-22],[-17,-17],[-23,-29],[-34,-14],[-40,-24],[-42,-22],[-28,-28],[-34,-12],[-29,-4],[-68,-10],[-40,-23],[-9,-36],[-9,-22],[-36,33],[-7,30],[-5,21],[-2,10],[-15,-37],[-16,-28],[-8,-51],[-24,-40],[-22,-18],[-21,5],[-36,9],[-37,-5],[2,-29],[1,-7],[43,-16],[-49,-29],[-42,7],[-28,1],[-86,-28],[-48,-26],[-58,-32],[-37,-24],[-148,-117],[-67,-56],[-57,-41],[-41,-32],[-51,-20],[-81,-40],[-26,-22],[-35,-31],[-42,-34],[-30,-27],[-22,-21],[-38,-49],[-69,-59],[-38,-10],[-17,30],[-59,6],[8,-40],[-29,-19],[-35,-16],[-77,-47],[-29,-17],[-75,-39],[-99,-61],[-36,-25],[-71,-61],[-68,-19],[-49,-19],[-93,-59],[-134,-72],[-59,-4],[-39,-8],[-42,-13],[-45,-19],[-50,-29],[-53,-35],[-22,-19],[-78,-28],[-28,-12],[-34,-14],[-37,-18],[-38,-18],[-41,-20],[-42,-30],[-58,-44],[-36,-24],[-29,-19],[-29,-26],[-20,-26],[-18,-40],[-10,-55],[-24,-43],[-69,8],[-12,38],[-20,28],[-39,31],[-25,36],[-39,44],[30,53],[24,27],[10,26],[20,33],[15,37],[21,38],[12,27],[15,36],[14,31],[21,54],[11,46],[13,32],[15,33],[20,26],[30,18],[35,16],[16,32],[23,27],[21,43],[29,30],[15,31],[15,32],[-4,44],[-15,51],[2,30],[44,6],[74,22],[50,10],[26,41],[7,11],[10,16],[-22,18],[-19,51],[-3,48],[30,26],[20,32],[21,20],[9,44],[-2,47],[-1,2],[-56,-26],[3,-41],[-27,-23],[-22,-10],[-8,-32],[-7,-32],[-8,-39],[-7,-47],[-34,-13],[-22,11],[-36,-13],[-65,-15],[-25,16],[-10,43],[-45,3],[-47,-3],[-8,36],[20,48],[-70,21],[-13,-4],[-41,-11],[-24,-2],[-2,0],[-34,12],[20,-46],[32,-3],[25,-32],[36,-49],[39,-13],[4,-1],[13,-31],[37,-17],[4,-44],[-8,-37],[2,-40],[-40,-41],[-50,-3],[-67,8],[-82,13],[-7,1],[-37,0],[-36,-11],[-42,-31],[-30,-1],[-46,0],[-55,16],[-33,26],[-27,38],[-45,26],[-25,36],[-24,36],[-16,8],[-26,13],[4,-30],[-37,9],[-13,-42],[-22,-36],[7,-38],[32,-37],[41,-20],[60,3],[27,-6],[53,-19],[47,-51],[20,-23],[3,-43],[-40,-32],[-46,26],[-34,-22],[20,-25],[23,-28],[-23,-19],[-29,30],[0,-28],[8,-40],[-29,-3],[-10,-1],[-46,13],[-13,-21],[-22,-21],[-1,-51],[10,-37],[1,-42],[-23,-19],[-39,33],[-41,-21],[-6,-42],[-7,-32],[-21,-37],[-12,-40],[-26,0],[-19,39],[-31,54],[-33,-52],[-57,-23],[-30,-7],[-44,11],[-31,22],[-8,54],[-23,59],[0,51],[5,37],[-36,-11],[-45,-8],[-43,-25],[7,-33],[0,-34],[21,-56],[32,-40],[40,-11],[28,-12],[36,-21],[27,-26],[-1,-36],[-63,26],[-61,-5],[-31,4],[-33,23],[-26,50],[-55,5],[-29,8],[-32,-18],[13,-48],[10,-44],[8,-40],[-68,49],[-48,46],[-43,30],[-66,23],[-34,23],[-40,65],[-36,47],[-50,36],[-73,58],[-36,30],[-39,16],[-63,14],[-53,13],[-41,25],[-35,42],[-31,57],[-28,32],[-16,23],[-6,10]],[[73377,80197],[2,-16],[20,-3],[13,0],[14,-4],[14,-10],[1,0],[9,-14],[0,-3],[0,-2],[2,-22],[-3,-29],[-1,-28],[-1,-16],[-1,-18],[-8,-82],[0,-3],[-17,-177],[0,-1],[-6,-32],[-27,-267],[-3,-24],[-5,-83],[-7,-96],[-1,-18],[-1,-70],[0,-54],[0,-4],[0,-49],[1,-28],[0,-25],[1,-37],[0,-29],[0,-17],[0,-83],[2,-60],[1,-33],[1,-19],[0,-27],[1,-83],[0,-22],[0,-28],[1,-28],[0,-26],[1,-38],[0,-18],[0,-68],[0,-20],[1,-87],[0,-4],[-1,-16],[0,-30],[0,-61],[0,-56],[0,-2],[-1,-52],[0,-52],[0,-19],[0,-27],[0,-26],[0,-20],[0,-38],[1,-25],[0,-17],[0,-19],[-1,-17],[0,-17],[-1,-19],[0,-17],[0,-17],[0,-19],[0,-28],[0,-41],[0,-59],[0,-52],[-1,-44],[0,-55],[-1,-59],[0,-36],[-1,-54],[0,-25],[-1,-21],[0,-8],[-1,-8],[1,-16],[-1,-48],[0,-18],[0,-51],[0,-27],[-2,-124],[2,-27],[1,-18],[-1,-66],[1,-21],[0,-98],[0,-18],[0,-18],[0,-98],[0,-29],[0,-65],[0,-79],[0,-30]],[[73374,76385],[0,-28],[-1,-60],[0,-27],[0,-26],[0,-24],[0,-39],[0,-18],[0,-21],[1,-24],[2,-52],[0,-39],[1,-36],[-6,-65],[-5,-18],[-13,-10],[-18,-2],[-19,-4],[-20,0],[-16,0],[-13,3],[-9,12],[-9,27],[-14,7],[-8,18],[-17,3],[-27,-7],[-17,-13],[8,-20],[1,-18],[9,-15],[4,-20],[-1,-16],[-6,-19],[-6,-16],[-14,0],[-20,0],[-13,10],[-12,9],[-7,18],[2,28],[-32,21],[-15,2],[-20,2],[-6,-9],[-7,-9],[-7,-6],[-5,-5],[-12,-10],[-11,-4],[-14,-6],[-14,-13],[-2,-3],[-11,-15],[-1,-3],[-6,-21],[-4,-18],[25,-6],[8,-15],[-14,-25],[-15,-8],[11,-14],[4,-20],[-3,-2],[-9,-7],[-6,10],[-12,18],[6,15],[-20,10],[2,19],[-21,-2],[-13,-6],[-13,5],[-14,-17],[-7,-18],[-2,-16],[-11,-14],[-5,-19],[2,-23],[12,-20],[4,-21],[-9,-14],[-16,-11],[-26,-3],[9,15],[-12,12],[12,13],[12,-12],[13,11],[-11,21],[-9,34],[-5,29],[14,7],[7,17],[11,9],[5,14],[-2,1],[-14,9],[-10,17],[2,6],[3,11],[-13,8],[-13,15],[9,16],[-6,18],[-16,-3],[-5,15],[-9,11],[-14,1],[-6,-1],[-10,-1],[-14,-7],[-6,-16],[-7,-13],[-2,-4],[-18,-2],[-15,2],[-10,-3],[-4,-1],[-15,-4],[-15,-2],[-10,-14],[-3,-5],[-10,-21],[-15,-3],[-16,5],[-15,-4],[-12,-10],[3,-23],[-5,-16],[-3,-3],[-3,-4],[-3,-5],[-13,4],[-5,1],[-12,5],[-21,-1],[-7,-1],[-15,-1],[-15,5],[-11,11],[-4,3],[-5,11],[-2,4],[2,5],[6,14],[-10,15],[-12,-8],[-3,0],[-13,-4],[-12,9],[-20,5],[-7,13],[-15,12],[-21,-3],[-3,-1],[-1,-2],[-1,0],[-8,-10],[-5,-12],[-2,-5],[-1,0],[-12,-3],[1,-16],[0,-4],[-5,-4],[-7,-7],[-8,-13],[-13,-11],[-4,-8],[-5,-8],[-8,-13],[-13,-11],[-3,1],[-11,4],[-8,-16],[-5,-16],[-2,-5],[-5,-13],[-2,-7],[15,-5],[14,-6],[5,-4],[10,-7],[13,-12],[-5,-19],[-15,-5],[-11,-10],[-4,-4],[-6,0],[-9,-1],[-6,-5],[-8,-7],[-8,1],[-5,1],[-18,-4],[-10,-2],[-3,-1],[-1,5],[-3,13],[-2,20],[-12,13],[-9,8],[-2,2],[1,2],[2,16],[11,8],[2,2],[-2,17],[0,4],[-5,20],[-6,17],[-10,-10],[-16,-7],[-3,-15],[0,-1],[0,-16],[-3,-18],[-6,18],[-1,3],[-6,14],[-11,17],[-13,-2],[8,-15],[8,-13],[-1,-16],[-14,-7],[-2,0],[-12,1],[-10,11],[-7,17],[-13,11],[-1,1],[-6,-2],[-13,-5],[-18,0],[-18,0],[-17,6],[-2,3],[-11,15],[-14,14],[-14,-7],[2,-8],[2,-8],[2,-16],[-19,3],[-15,6],[-4,0],[-11,-1],[-10,-11],[-15,-6],[13,-9],[-8,-15],[-18,-4],[-16,-14],[-4,-1],[-7,-3],[-2,-2],[-10,13],[-12,13],[-16,-6],[-17,1],[-22,-13],[-15,1],[-6,1],[-7,1],[-9,-2],[-8,-2],[-31,0],[-19,-1],[-15,4],[-10,-5],[-7,-3],[-22,1],[-9,9],[-5,5],[-14,6],[-14,9],[-6,-6],[-4,-5],[-14,-4],[-13,5],[-4,14],[-2,16],[-11,14],[-9,16],[-16,8],[-15,4],[-15,4],[-21,0],[-6,3],[-7,4],[-13,6],[-18,7],[-6,7],[-5,6],[-11,11],[-11,17],[-2,13],[-1,5],[-3,5],[-8,11],[4,14],[1,3],[-1,3],[-3,15],[0,23],[7,18],[0,1],[4,15],[0,17],[0,1],[-3,15],[2,16],[0,18],[1,20],[7,20],[5,17],[-3,20],[1,9],[2,8],[-7,3],[-7,4],[-7,14],[-14,15],[2,18],[-25,20],[-13,18],[-5,22],[7,22],[7,18],[13,14],[14,14],[15,1],[-4,20],[20,11],[6,19],[-13,12],[14,7],[14,-14],[14,-10],[9,-19],[19,-12],[15,-10],[13,8],[11,-20],[14,-10],[1,0],[16,-1],[23,2],[12,6],[13,-2],[19,20],[17,5],[16,-16],[17,-5],[-2,-19],[-9,-13],[-20,-21],[-15,2],[-25,4],[-9,-22],[14,-14],[31,-17],[15,-11],[14,-9],[14,-4],[11,-9],[5,16],[22,8],[15,15],[1,18],[2,17],[-5,19],[-13,7],[-6,14],[1,7],[8,16],[1,1],[-1,0],[-15,5],[-17,5],[0,15],[-15,-9],[-22,13],[-28,17],[-1,1],[-3,2],[-11,16],[-8,10],[-2,1],[-12,8],[-20,13],[6,6],[8,7],[-12,14],[-13,6],[-7,18],[-14,15],[-12,-7],[-2,-1],[-2,2],[-12,12],[-12,-9],[3,-22],[1,-2],[7,-14],[5,-17],[-1,-21],[-11,-11],[-14,1],[-10,11],[-2,21],[2,16],[0,1],[-1,15],[-11,11],[-19,1],[-3,0],[-10,-1],[-4,23],[1,2],[8,9],[14,7],[-14,5],[-13,9],[-14,14],[-10,10],[-8,12],[-3,7],[12,12],[10,15],[10,2],[6,1],[12,6],[3,13],[1,3],[-1,21],[-9,16],[-6,15],[-19,-7],[-14,-3],[-10,12],[-67,0],[-62,2],[-22,0],[-49,0],[-13,0],[-43,0],[-21,-1],[-17,0],[-21,1],[-14,0],[-18,-1],[-23,0],[-10,0],[-7,0],[-23,0],[-18,0],[-14,0],[-18,0],[-15,0],[-14,0],[-17,0],[-20,0],[-18,0],[-20,0],[-25,0],[-20,0],[-22,0],[-22,0],[-28,0],[-18,0],[-20,0],[-47,0],[-23,0],[-23,0],[-15,0],[-18,0],[-16,0],[-40,0],[-22,1],[-15,0],[-13,0],[-154,2],[-179,1],[-191,1],[-152,1],[-6,0],[-32,0],[-33,0],[-15,1],[-16,0],[-66,0],[-58,0],[-7,1],[-189,1],[-39,0],[-24,0],[-67,1],[-66,0],[-20,0],[-19,0],[-65,1],[-169,1]],[[68761,76597],[-83,1],[-1,0],[-190,1],[-23,1],[-151,1],[-92,1],[-30,0],[-26,-2],[-18,0],[-19,1],[-17,0],[-19,0],[-120,-3],[-151,2],[-6,0],[-162,3],[-12,0],[-58,1],[-2,-109],[-46,4],[-68,2],[-29,1],[-22,3],[-22,-1],[-59,1],[-16,1],[-47,1],[-43,1],[-17,0],[-22,1],[-39,1],[-32,1],[-15,0],[-22,1],[-24,1],[-20,0],[-20,1],[-19,1],[-19,1],[-18,0],[-22,1],[-31,0],[-16,1],[-16,0],[-14,0],[-19,1],[-15,0],[-24,1],[-17,0],[-1,57],[-1,45],[0,63],[-1,50],[0,97],[3,93],[3,89],[0,3],[-4,267],[0,52],[0,16],[0,20],[-1,22],[-9,14],[-22,0],[-27,0],[-26,1],[-23,0],[-18,1],[-18,0],[-15,-3],[-14,0],[-49,0],[-209,5],[-1,0],[-53,0],[-17,0],[-1,0],[-61,-3],[-34,-3],[-21,-1],[-30,-1],[-4,0],[-11,0],[-18,-2],[-31,0],[-20,0],[-4,0],[-24,-1],[-16,-2],[-38,-2],[-28,-2],[-31,-4],[-17,0],[-17,0],[-18,-1],[-13,-1],[-19,0],[-14,-1],[-14,0],[-17,0],[-20,-1],[-15,-2],[-15,0],[-21,0],[-14,1],[-203,-7],[-19,-1],[0,172],[0,32],[-1,22],[1,26],[0,27],[0,32],[0,21],[0,24],[1,16],[0,17],[-2,17],[1,17],[0,26]],[[65477,77827],[-2,111],[2,99],[0,18],[0,22],[0,17],[1,23],[0,19],[0,16],[-1,16],[0,15],[0,21],[0,21],[1,33],[-1,16],[0,18],[1,16],[-1,17],[0,22],[1,33],[-1,19],[0,33],[1,30],[0,17],[-1,18],[1,25],[0,23],[0,18],[-1,22],[1,21],[0,19],[0,17],[0,20],[0,46],[0,18],[0,25],[0,23],[0,22],[-1,19],[0,38],[0,24],[0,27],[0,51],[0,26],[-1,57],[0,25],[0,19],[-1,24],[0,17],[-1,26],[0,38],[2,96],[0,105],[1,23],[0,57],[0,44],[-1,37],[-2,16],[0,39],[-6,33],[1,25],[1,24],[0,26],[-1,29],[1,21],[0,15],[-1,30],[0,20],[0,18],[1,16],[0,115],[0,26],[0,33],[0,41],[-1,147],[-1,116],[0,21],[0,20],[0,16],[0,17],[0,21],[0,18],[0,19],[0,17],[0,23],[0,19],[0,29],[-1,20],[-2,21],[2,17],[-1,23],[0,25],[0,20],[-1,21],[1,16],[-1,18],[0,25],[-1,18],[1,21],[-1,22],[0,23],[0,21],[-1,19],[1,24],[-1,20],[0,30],[0,17],[0,27],[-1,19],[0,20],[0,23],[0,31],[0,17],[-1,31],[0,70],[-1,56],[0,17],[0,29],[0,18],[-1,96],[0,15],[0,23],[-1,35],[0,17],[-1,17],[0,24],[-1,18],[0,24],[-1,32],[-1,28],[0,22],[0,47],[0,24],[0,36],[0,29],[0,18],[0,34],[0,16],[-6,31]],[[65477,77827],[-215,-4],[-14,-1],[-30,0],[-163,-4],[-15,0],[-62,-2],[-20,-1],[-116,-5],[-16,-1],[-121,-5],[-27,0],[-21,0],[-22,0],[-24,-1],[-32,-1],[-332,-9],[-87,1],[-1,54],[-2,85],[-2,94],[-105,0],[-108,0],[1,57],[0,19],[1,35],[-22,0],[-16,0],[-73,1],[-109,-1],[-39,-2],[-181,-8],[-135,-1],[-35,0],[-18,0],[-13,0],[-24,0],[-218,3],[-44,0],[-65,-1],[-107,-1],[-2,110],[-227,-4],[-17,1],[-96,-1],[-34,0],[-40,0],[-36,0],[-60,0],[-40,0],[-63,0],[-31,-1],[-52,0],[-127,-2],[-54,0],[-20,0],[-14,-1],[-23,0],[-30,0],[-19,-1],[-23,2],[-15,2],[-21,3],[-19,1]],[[61782,78237],[-10,38],[-54,-2],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-20,-10],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-1,-2],[-16,-20],[-47,-61],[-6,-3],[-7,-3],[-23,-1],[-14,2],[-4,1],[-10,6],[-3,2],[-2,2],[-11,12],[-12,16],[-12,15],[-1,1],[-8,11],[-1,1],[-1,1],[-2,2],[-9,10],[-7,28],[-1,5],[-12,47],[-3,28],[-3,28],[-7,20],[-18,22],[-5,6],[-7,8],[-66,48],[-23,16],[-4,5],[-9,10],[-2,3],[-2,12],[0,4],[1,4],[5,23],[14,10],[7,6],[27,28],[7,13],[3,17],[-3,8],[-16,22],[-26,20],[-15,19],[-9,33],[2,28],[0,3],[9,14],[2,3],[19,30],[2,2],[16,21],[10,9],[37,32],[39,32],[6,5],[51,42],[5,6],[20,26],[7,39],[1,7],[0,12],[-3,37],[-9,78],[-5,31],[-5,20],[4,27],[3,6],[8,6],[2,2],[3,1],[28,10],[16,14],[8,7],[3,29],[-2,9],[-6,20],[-4,18],[-7,9],[-8,12],[-6,9],[-1,1],[-27,24],[-2,2],[-11,9],[-14,13],[-2,2],[-6,9],[-2,2],[1,4],[2,14],[4,7],[10,12],[8,8],[11,9],[4,5],[15,19],[5,6],[5,23],[-5,25],[-2,2],[-18,25],[-3,3],[-20,18],[-4,4],[-5,4],[-11,15],[-2,18],[3,17],[0,3],[8,17],[0,1],[19,37],[6,19],[3,23],[0,2],[0,11],[0,2],[-1,18],[-6,22],[-3,11],[-3,23],[-2,10],[0,1],[0,3],[3,24],[1,6],[3,4],[9,14],[30,23],[13,7],[14,4],[9,-2],[11,-11],[3,-3],[1,-6],[11,-15],[14,-12],[20,-10],[20,-3],[83,14],[15,13],[8,15],[2,15],[-5,7],[-3,4],[-38,3],[-25,2],[-15,10],[-1,0],[-9,15],[-7,9],[0,1],[-19,57],[-2,3],[-14,19],[-21,13],[-38,7],[-18,10],[-8,11],[-18,23],[-13,29],[-2,4],[3,22],[2,16],[1,5],[8,12],[10,9],[3,-1],[10,-1],[2,0],[1,-1],[6,-3],[2,-2],[2,-2],[51,-76],[35,-30],[16,-3],[11,7],[7,10],[7,19],[3,34],[1,10],[0,7],[-1,6],[-1,6],[-1,2],[-12,15],[-24,6],[-30,3],[-14,1],[-8,11],[-3,16],[0,4],[3,17],[1,3],[1,2],[3,8],[11,14],[12,16],[7,9],[10,13],[28,55],[17,37],[57,125],[0,3],[3,28],[1,12],[-4,45],[-1,5],[-3,16],[-11,23],[-1,2],[-4,6],[-4,6],[-6,2],[-3,1],[-27,2],[-38,-21],[-19,1],[-9,3],[-3,4],[-15,19],[-5,27],[0,5],[2,17],[27,116],[5,21],[16,27],[1,2],[5,4],[35,30],[11,14],[3,6],[10,20],[14,43],[9,21],[8,18],[19,78],[2,10],[19,26],[8,6],[29,21],[9,6],[9,7],[82,45],[51,40],[16,16],[5,9],[1,7],[1,6],[-1,2],[-1,5],[-1,4],[-5,6],[-5,7],[-13,12],[-51,21],[-21,3],[-12,-3],[-43,8],[-6,1],[-19,15],[-10,13],[-6,9],[-3,8],[-3,8],[-1,5],[-9,48],[4,29],[3,6],[51,106],[32,46],[14,16],[13,13],[1,2],[11,10],[13,8],[14,8],[23,8],[19,4]],[[78800,74385],[-34,-14],[-25,32],[20,53],[-3,40],[-30,8],[-24,11],[-2,38],[-28,117],[13,51],[51,49],[3,3],[18,87],[9,41],[0,59],[-13,50],[5,28],[27,4],[94,-40],[34,-30],[42,-35],[39,-43],[-4,-38],[27,-41],[5,-22],[-9,-48],[-43,-93],[-61,-68],[-42,-33],[-24,-39],[-21,-18],[-12,-42],[-12,-67]],[[78650,74962],[-3,-67],[-32,-22],[-28,7],[-6,1],[-10,54],[-26,8],[-9,4],[-49,10],[-13,-9],[-14,-9],[-41,21],[-7,27],[-11,41],[15,17],[84,-19],[61,-2],[49,-2],[17,-26],[23,-34]],[[80374,78721],[0,-37],[2,-55],[3,-131],[1,-96],[1,-126],[4,-117],[1,-101],[2,-87],[2,-163],[0,-16],[-1,-24],[2,-73],[2,-33],[0,-51],[3,-18],[0,-53],[3,-81],[1,-38],[0,-1],[5,-286],[0,-3],[9,-299],[-1,-27],[1,-15],[2,-16],[7,-25],[24,-58],[33,-22],[111,-156],[5,-30],[5,-27],[6,-16],[15,-38],[32,-55],[26,-35],[70,-132],[-27,-195],[-7,-19],[-14,-94],[6,-50],[11,-53],[78,-109],[49,-10],[77,-109],[16,-85],[-1,-61],[9,-55],[-5,-48],[2,-9],[68,-95],[73,-12],[223,-37],[152,114],[32,-5],[15,2],[12,1],[19,8],[1,0],[13,2]],[[81552,75261],[3,-10],[-14,-27],[-15,-21],[-30,-21],[-12,-20],[-8,-12],[0,-23],[-6,-29],[-9,-15],[5,-27],[-21,-8],[-2,-1],[-7,-18],[-21,-17],[-11,-14],[-2,-3],[-9,-13],[-18,-4],[-7,-1],[-36,-23],[-26,-10],[-13,-5],[-19,-6],[-16,-4],[-23,-8],[-12,-3],[-4,-1],[-14,-4],[-21,-4],[-25,-6],[-145,-41],[-4,0],[-63,-18],[-23,-7],[-3,-1],[-235,-67],[-99,-31],[-7,-3],[-7,-4],[-17,-5],[-13,-3],[-7,-2],[-21,-6],[-15,-5],[-30,-8],[-22,-6],[-49,5],[-19,-7],[-14,-5],[-46,-16],[-34,-11],[-40,-14],[-38,-13],[-32,-11],[-9,-4],[-24,-8],[-33,-10],[-69,-20],[-70,-17],[-91,-27],[-67,-18],[-100,-28]],[[79713,74492],[-32,22],[-77,96],[-2,2],[-54,52],[-19,20],[-69,73],[-70,83],[-128,28],[-160,-18],[-2,18],[3,31],[-17,36],[-40,43],[-66,4],[-20,26],[-49,41],[-119,64],[-115,71],[-17,51],[36,81],[-11,52],[6,37],[47,70],[1,41],[-22,22],[-11,19],[31,40],[27,116],[-36,38],[-51,-1],[-47,-11],[-109,42],[-67,50],[-37,5],[-38,-25],[-42,1],[-18,9],[-11,24],[20,12],[15,18],[6,21],[19,-4],[21,5],[16,22],[-6,28],[19,14],[8,22],[1,24],[-19,6],[-2,45],[-17,5],[-16,18],[10,25],[12,-9],[28,-5],[52,10],[39,35],[-3,17],[5,15],[14,10],[7,32],[-11,-26],[-18,0],[-4,19],[-17,43],[-21,18],[-34,-2],[-76,22],[-37,21],[-46,-18],[-15,-3],[-8,18],[1,21],[45,19],[52,41],[18,20],[9,55],[11,32],[-2,29],[7,58],[-11,39],[-17,13],[-9,20],[-16,10],[-38,10],[-22,13],[-2,33],[38,-9],[55,25],[-5,22],[-10,57],[0,50],[4,35],[-11,43],[5,19],[5,19],[4,65],[-3,70],[-21,49],[-25,64],[-26,63],[-41,17],[-15,33],[-26,39],[-41,29],[-43,-3],[-22,-2],[-51,37],[-9,18],[-17,31],[23,25],[19,26],[1,8],[3,15],[10,22],[7,16],[3,17],[5,32],[-9,40],[0,46],[2,22],[1,17],[26,61],[36,39],[26,30],[42,34],[-10,40],[41,24],[1,9],[3,19],[16,30],[20,40],[7,27],[23,-41],[-3,77],[-31,47],[-9,36],[23,25],[7,8],[41,-35],[23,-36],[13,-14],[28,-29],[20,32],[36,15],[18,30],[19,38],[46,4],[40,-10],[5,-2],[9,5],[13,6],[10,5],[27,22],[4,2],[25,14],[15,-19],[14,-18],[21,-1],[24,-21],[10,-8],[18,4],[24,6],[19,-5],[17,-5],[47,-47],[27,-6],[11,-2],[31,-58],[49,-61],[13,21],[15,23],[-40,10],[-16,46],[22,13],[48,-6],[26,-3],[24,18],[46,20],[52,23],[34,17],[25,33],[44,34],[26,25],[32,41],[35,44],[32,41],[51,56],[9,40],[-7,27],[-16,32],[-12,40],[-9,48],[21,11],[26,19],[12,39],[-9,50],[-1,36],[-8,58],[-32,47],[-21,31],[-30,31],[-35,11],[-32,5],[-32,-31],[-46,-46],[-35,6],[-45,20],[-37,26],[20,13],[17,11],[32,23],[38,37],[39,38],[5,46],[-13,40],[-30,34],[-27,0],[-33,-5],[-37,9],[-26,42],[-9,36],[-32,72],[-24,50],[-14,53],[-15,52],[-19,38],[-19,44],[0,29],[-17,40],[-20,69],[17,61],[26,10],[21,16],[29,26],[41,-2],[5,-5],[28,-29],[69,-21],[45,-3],[41,-3],[24,9],[23,9],[1,4],[16,38],[41,10],[35,-1],[58,0],[38,-3],[42,6],[53,-9],[33,-21],[45,-19],[35,12],[46,30],[45,46],[57,16],[31,35],[29,38],[37,79],[27,8],[31,5],[20,27],[36,39],[35,17],[-6,48],[-24,35],[-8,45],[19,46],[40,77],[17,30],[17,40],[-9,33],[-28,20],[-32,8],[-39,31],[10,34],[20,33],[22,33],[31,34],[36,36],[34,43],[25,-2],[30,-27],[34,-8],[4,-1],[26,2],[20,6]],[[79290,82070],[25,-22],[30,-45],[28,-54],[22,-33],[21,-33],[10,-35],[12,-26],[24,-27],[47,-50],[4,-44],[-4,-42],[5,-34],[-10,-39],[57,1],[27,-6],[38,-29],[30,-42],[-4,-38],[23,-39],[-7,-30],[-10,-45],[1,-37],[33,-8],[48,-11],[40,-42],[32,-36],[45,-51],[6,-40],[1,-44],[18,-38],[62,-9],[0,-18],[-25,-9],[-19,1],[-10,-11],[-17,-48],[1,-65],[-27,-34],[-22,-20],[-18,-19],[-1,-44],[32,-29],[-37,-16],[-4,-47],[-10,-38],[-4,-50],[11,-30],[-20,-32],[-10,-44],[-32,-52],[4,-34],[10,-30],[-24,-37],[-22,-49],[-25,-42],[-3,-31],[-37,-6],[-33,-16],[-33,-27],[-35,-41],[-37,-10],[-58,1],[-36,14],[-40,22],[-39,-20],[-79,8],[-50,-9],[-63,4],[-41,0],[-52,0],[-48,-4],[-39,-2],[-34,-6],[-29,-5],[-45,-26],[-7,-7],[-13,-14],[-26,-15],[-34,-29],[-2,-3],[-17,-20],[-33,-43],[-36,-48],[8,-27],[6,-21],[15,-11],[7,-4],[4,-30],[-25,-44],[-14,-62],[17,-54],[-4,-42],[-4,-43],[2,-15],[1,-12],[28,-29],[10,-12],[18,-21],[17,-12],[30,-21],[40,-12],[35,-11],[32,-11],[13,-4],[13,-13],[57,-57],[3,-41],[1,-18],[5,-62],[1,-12],[17,-35],[4,-47],[-12,-37],[-4,-11],[-20,-18],[-23,-19],[-26,-18],[-28,-37],[-3,-28],[-7,-22],[-4,-14],[0,-47],[23,-20],[45,-22],[25,0],[2,0],[70,7],[15,10],[9,6],[23,11],[24,11],[45,-15],[26,-2],[25,-2],[41,9],[19,8],[12,6],[17,21],[11,13],[7,23],[6,20],[8,32],[2,11],[49,-67],[29,-43],[28,-45],[-25,-13],[-27,-29],[-25,-40],[-13,-29],[-12,-34],[-2,-23],[-1,-25],[19,-56],[25,-25],[3,-37],[-15,-27],[-35,-28],[-66,-8],[-37,-22],[-9,-21],[-11,-23],[-18,-58],[-50,-40],[-99,-44],[-18,-4],[-9,-2],[-7,0],[-20,-1],[-47,6],[-48,19],[-41,43],[-24,8],[-60,7],[-56,30],[-22,2],[-26,3],[-9,-3],[-20,-7],[-26,-24],[-52,21],[-28,-2],[-10,-1],[-37,-22],[-14,-8],[-32,-33],[-36,-41],[-31,34],[-26,18],[-39,11],[-28,-4],[-8,-7],[-20,-18],[-21,-63],[9,-56],[2,-36],[-5,-28],[-13,-46],[-57,-50],[-15,-28],[-24,-24],[-12,-44],[-32,-49],[-34,-40],[-7,-13],[-23,-47],[-27,-36],[29,-5],[8,-40],[-6,-99],[-40,-51],[-8,-24],[-5,-13],[-1,-21],[-1,-13],[25,-52],[40,-36],[33,-19],[31,4],[34,1],[33,-1],[5,-6],[16,-18],[32,-58],[31,-30],[27,-18],[14,-52],[35,-73],[-29,-62],[3,-96],[-11,-57],[-3,-40],[-11,-2],[-45,-7],[-14,-30],[18,-54],[-6,-16],[-10,-22],[0,-56],[24,-32],[38,-17],[14,-6],[5,-2],[21,-5],[21,-7],[5,-48],[-20,-34],[-20,-11],[-12,-18],[-2,-50],[-51,-34],[-39,-28],[-12,-8],[-3,-3],[-2,-1],[-18,-16],[-2,-53],[19,-35],[8,-34],[11,-43],[21,-39],[-4,-44],[-22,-34],[-13,-20],[-17,-9],[-7,-3],[-33,-30],[-6,-69],[4,-18],[-3,-18],[5,-17],[1,-7],[8,-7],[15,-16],[5,-4],[17,4],[19,-4],[13,10],[11,-28],[31,-34],[55,-26],[25,-6],[18,-9],[60,-17],[39,13],[35,-14],[-10,-19],[0,-26],[45,-28],[73,-22],[25,-35],[21,-20],[-51,-75],[-29,-40],[3,-50],[-15,-49],[8,-44],[-3,-33],[-20,-32],[20,-45],[49,-52],[-25,-39],[-115,63],[-54,4],[-89,-40],[-15,12],[-19,16],[-3,6],[-9,22],[-15,-12],[13,-23],[4,-7],[-29,-55],[-8,-30],[59,-48],[18,-15],[53,-75],[25,-14],[42,-24],[39,-59]],[[78470,74848],[-277,-9],[-87,-3],[-67,2],[-35,0],[-31,0],[-81,-5],[-24,0],[-10,3],[-2,-1],[-28,1],[-99,0],[-144,0],[-75,1],[-1,36],[-3,28],[0,20],[0,377],[0,55],[0,168],[-3,106],[1,94],[0,26],[-30,-2],[-43,-1],[-31,-1],[-109,-2],[-52,-2],[-1,0],[-169,-3],[0,36],[-1,26],[0,9],[-1,57],[-10,517],[-1,64],[0,3],[-1,34],[-1,46],[0,36],[-1,39],[0,8],[-1,23],[-54,-1],[-4,0],[-26,0],[-34,-1],[-34,-1],[-13,0],[-11,0],[-3,0],[-22,-1],[-21,0],[-47,-2],[-53,-3],[-29,-1],[-97,-4],[-116,-2],[-69,0],[-16,0],[-18,0],[-53,-1],[-20,0],[-136,3],[0,135],[0,34],[3,43],[-3,106],[0,27],[0,14],[-1,43],[-1,114],[0,16],[-51,5],[-25,2],[-22,-9],[9,-19],[-7,-17],[-15,-6],[-21,-2],[-8,-19],[-33,0],[-17,-6],[-17,0],[-13,2],[-18,-15],[-15,3],[-18,-5],[-14,-11],[-14,8],[-35,-4],[-21,-7],[-17,-4],[-14,8],[-2,1],[-1,0],[-20,2],[-10,-4],[-13,-13],[-14,-9],[-20,1],[-15,-4],[-27,-2],[-16,-15],[-12,11],[-18,2],[-14,-9],[3,-17],[-18,-3],[1,-17],[-12,-10],[-12,9],[-15,4],[-17,9],[-16,18],[-18,21],[-13,2],[-15,-6],[0,18],[-1,5],[-3,12],[-17,-1],[-14,10],[-16,1],[-15,4],[-13,-11],[-20,-10],[-7,-13],[2,-16],[-14,2],[-10,18],[-6,-17],[-4,-18],[-14,-7],[6,-15],[-59,-45],[-70,19],[-1,1],[-37,33],[-5,5],[-3,3],[-19,18],[-14,4],[-15,4],[-32,9],[-33,9],[-9,24],[-11,4],[-5,-2],[-14,-3],[-7,-6],[-1,-53],[-36,2],[-55,2],[-7,-2],[-6,0],[-6,1],[-9,3],[-1,0],[-33,-9],[-13,-14],[-4,-4],[-27,-23],[0,-1],[-24,-12],[-11,-6],[-8,-2],[-16,-2],[-17,-10],[-19,-1],[-35,0],[-1,0],[-51,-29],[-1,-1],[-27,-17],[-4,-1],[-48,-11],[-17,-2],[-1,0],[-29,11],[-1,1],[-8,-2],[-53,-9],[-1,0],[-25,-4],[-55,-8],[-4,-1],[-64,-9],[-57,-7],[-10,0],[-35,4],[-16,2],[-44,5],[-2,0],[-52,-16],[-27,-9],[-22,-1],[-15,-1],[-68,-12],[-9,-6],[-12,-11],[0,-1],[-17,-7],[-40,-18],[-53,-21],[-22,-2],[-4,-2],[-6,-2],[-5,-2],[-2,-1],[-66,-35],[-1,0],[-2,-3],[-6,-18],[0,-1],[-2,-1],[-20,-23],[-26,-37],[-27,-38],[-46,-74],[-29,-45],[-17,-13],[-36,0],[-2,-1],[-26,-16],[-78,-55]],[[84013,79285],[13,-13],[26,-9],[9,11],[33,23],[45,-4],[24,-17],[27,0],[12,-23],[18,17],[17,27],[36,-23],[27,-37],[4,-41],[0,-30],[-18,-9],[-10,-25],[40,0],[35,-7],[29,-21],[36,-12],[13,-25],[18,-71],[-15,-6],[-24,50],[-34,36],[-45,26],[-21,0],[7,-22],[3,-11],[5,-16],[38,-16],[4,-2],[19,-7],[10,-53],[20,-71],[2,-37],[-49,28],[9,-32],[10,-35],[53,0],[-10,-62],[14,-25],[14,-23],[10,-46],[27,-22],[19,11],[32,-52],[28,-69],[7,-18],[18,-67],[27,-117],[37,-101],[46,-122],[64,-173],[37,-108],[22,-39],[43,-20],[39,-16],[81,-44],[15,-16],[39,-90],[61,-156],[35,-76],[30,-46],[25,-16],[9,-26],[29,-66],[37,-125],[78,-241],[33,-124],[70,-249],[5,-18],[47,-152],[43,-145],[26,-73],[23,-35],[37,-25],[20,-19],[18,-16],[48,-47],[56,-112],[26,-53],[16,-43],[17,-45]],[[85837,75701],[-36,-1],[-97,-34],[-54,-19],[-31,-8],[-16,-6],[-4,-1],[-38,-9],[-7,-4],[-7,-4],[-2,-1],[-53,-15],[-11,-2],[-25,-8],[-59,-22],[-10,-4],[-82,-19],[8,-37],[0,-38],[-102,-16],[2,-52],[2,-22],[2,-25],[0,-4],[1,-20],[3,-27],[1,-26],[6,-73],[-1,-28],[5,-71],[2,-69],[4,-16],[5,-118],[1,-50],[2,-72],[4,-139],[2,-64],[-1,-17],[3,-20],[1,-3],[-2,-18],[0,-23],[1,-7],[1,-35],[9,-342],[4,-190],[1,-11],[0,-12],[2,-57],[0,-24],[3,-96],[0,-28],[1,-6],[0,-23],[3,-102],[3,-124],[1,-28],[0,-23],[1,-25],[2,-77],[0,-71],[-28,-1],[-40,-1],[-14,0],[-32,-1],[-23,-1],[-22,-1],[-30,0],[-28,-1],[-126,-4],[-89,-3],[-20,0],[-60,-2],[-81,-2],[-62,-7],[-73,2],[-18,0],[-33,-7],[-37,-1],[-56,-2],[-101,3],[-40,-6],[-114,-1],[-14,-1],[-24,0],[-21,0],[-53,-1],[-64,-1],[-6,0],[-37,0],[-221,-4],[-45,-1],[-18,0],[-289,-5],[-2,0],[-340,-6],[-63,-1],[-17,0],[-17,-1],[-11,0],[-26,0],[-13,0],[-1,0],[-167,-3],[-53,-1],[-38,-1],[-33,-1],[-61,-1],[-20,-1],[-20,-1],[-51,0],[-43,-1],[-58,0],[-112,-2],[-106,-2],[-33,-1],[-96,-1],[-101,-1],[-74,0],[-37,0],[-5,126],[-2,50],[0,4],[-3,108],[0,5],[-2,60],[-8,314],[-4,260],[-2,112],[-8,384],[-4,136],[-1,22],[-2,63],[0,117],[-1,128],[-4,250],[-28,15],[-4,0],[-13,-17],[-7,-20],[-1,-10],[-2,-4],[-5,-3],[-58,-1],[-13,11],[-19,13],[-14,10],[-19,2],[8,-15]],[[84381,79462],[17,-50],[-6,-71],[0,-88],[0,-80],[10,-53],[-18,7],[-27,32],[12,44],[-12,27],[-22,53],[-10,58],[-11,41],[-22,19],[24,60]],[[84464,79463],[13,-38],[20,-50],[23,-56],[17,-50],[18,-47],[24,-69],[10,-27],[16,-49],[38,-111],[30,-81],[21,-60],[18,-45],[38,-93],[24,-64],[16,-45],[19,-58],[18,-51],[35,-104],[21,-61],[12,-33],[21,-59],[25,-64],[16,-44],[1,-37],[13,-37],[17,-37],[22,-65],[23,-35],[15,-30],[12,-32],[15,-43],[15,-44],[19,-48],[22,-48],[30,-77],[19,-44],[19,-42],[16,-35],[31,-80],[12,-29],[23,-55],[36,-78],[19,-46],[13,-32],[29,-68],[36,-84],[30,-68],[33,-76],[19,-44],[16,-40],[13,-33],[19,-46],[28,-69],[25,-56],[11,-33],[15,-32],[11,-42],[135,-342],[63,-166],[29,-66],[13,-36],[20,-51],[31,-76]],[[85925,75702],[-22,-1],[-17,0],[-15,0],[-13,0]],[[85858,75701],[-23,66],[-35,76],[-16,51],[-39,72],[-38,38],[-45,43],[-45,37],[-12,21],[-37,108],[-51,147],[-36,108],[-6,24],[-29,107],[-31,127],[-37,122],[-32,96],[-41,127],[-33,112],[-32,104],[-23,37],[-29,20],[-38,46],[-23,60],[-30,76],[-43,108],[-23,58],[-16,32],[-23,14],[-45,23],[-59,23],[-35,20],[-22,28],[-55,159],[-108,280],[-49,138],[-23,115],[-32,102],[-27,52],[-45,210],[-29,115],[-20,85],[-16,71],[-6,108],[-11,88],[8,35],[5,23],[-3,20],[-14,29]],[[64292,69503],[10,-39],[-54,-22],[-2,6],[-5,14],[-16,4],[-13,8],[19,31],[26,-8],[22,15],[13,-9]],[[60594,70595],[-23,-3],[-11,0],[-6,1],[-3,0],[-2,0],[-10,0],[0,-1],[0,-3],[-21,0],[-5,0],[-3,0],[-9,9],[-3,3],[19,19],[0,13],[5,4],[9,5],[4,-1],[12,-5],[18,-12],[1,0],[1,0],[8,-5],[2,-2],[1,0],[16,-22]],[[60037,70639],[21,-20],[5,4],[20,9],[27,0],[18,22],[3,-12],[4,-15],[-3,-3],[-18,-17],[-44,-5],[-2,1],[0,1],[-47,18],[-26,18],[16,18],[21,3],[5,-22]],[[60629,70951],[-21,-19],[-19,17],[-5,4],[-19,31],[-40,19],[-6,52],[47,-5],[14,-19],[10,-15],[39,-12],[0,-53]],[[59837,71028],[-20,-33],[-24,2],[-1,24],[20,18],[2,21],[1,1],[-1,2],[1,10],[-5,20],[-2,11],[-25,15],[-16,19],[18,10],[23,0],[5,-1],[11,-22],[6,-11],[3,-7],[7,-18],[0,-1],[1,0],[4,-9],[1,-4],[2,-5],[-4,-16],[-7,-26]],[[60539,71301],[-18,-4],[-10,4],[-4,1],[11,23],[0,18],[-1,13],[16,51],[6,-9],[19,-28],[-9,-27],[-6,-17],[0,-1],[-4,-24]],[[60718,71364],[-13,-12],[-9,1],[-27,1],[2,20],[1,22],[21,25],[14,40],[27,-30],[6,-47],[-22,-20]],[[60439,71300],[28,-9],[35,1],[-5,-36],[37,-22],[19,34],[34,-16],[-33,-53],[-34,-10],[-22,-6],[-39,36],[-13,15],[-20,24],[-45,-13],[-35,-46],[-26,-21],[-27,-26],[0,-22],[-1,-12],[-1,-4],[-1,-5],[-34,34],[4,34],[4,8],[20,37],[-35,8],[-3,11],[-8,28],[3,23],[6,36],[-12,47],[-26,27],[18,34],[30,19],[46,39],[38,21],[28,-6],[0,-27],[1,-10],[11,-26],[50,-48],[28,-28],[-12,-15],[-15,-19],[1,-6],[6,-30]],[[60117,71522],[-35,-6],[-4,64],[35,2],[16,-10],[4,-2],[2,-1],[14,-39],[-32,-8]],[[60841,71639],[1,-60],[-25,2],[-1,0],[-11,26],[-3,9],[-31,39],[-4,6],[41,15],[-2,38],[25,14],[9,-12],[14,-23],[-6,-25],[-7,-29]],[[60237,71579],[-18,-7],[-3,44],[14,28],[-5,22],[-5,19],[-8,31],[-34,5],[-11,40],[38,9],[29,-3],[12,-1],[32,-14],[21,-28],[-10,-55],[-1,-38],[0,-20],[-8,-7],[-16,-13],[-27,-12]],[[59936,72220],[-31,-18],[-10,60],[24,4],[11,11],[24,23],[18,9],[7,3],[24,43],[7,-43],[-1,-12],[-1,-23],[-26,-4],[-13,-19],[-6,-8],[-9,-8],[-18,-18]],[[59927,72426],[-23,-38],[-27,12],[-24,29],[20,32],[0,5],[0,28],[26,2],[36,-8],[7,-8],[27,-26],[-42,-28]],[[59930,72672],[-26,-12],[-20,1],[7,61],[13,7],[9,5],[20,-25],[2,-17],[1,-18],[-6,-2]],[[59920,72743],[-25,-8],[9,31],[-24,41],[6,23],[29,14],[27,-19],[-8,-24],[0,-17],[0,-13],[-11,-12],[-3,-16]],[[58826,73545],[1,-11],[-5,4],[-4,2],[-4,3],[-12,10],[9,10],[13,-1],[2,0],[1,-15],[-1,-2]],[[68761,76597],[0,-15],[-1,-199],[-3,-492],[0,-59],[1,-36],[3,-39],[-2,-25],[17,0],[-1,-18],[-1,-26],[0,-41],[0,-24],[0,-41],[0,-22],[1,-41],[0,-26],[0,-30],[0,-20],[0,-20],[0,-40],[0,-19],[0,-30],[0,-56],[0,-62],[-1,-34],[0,-54],[0,-21],[0,-20],[1,-94],[0,-41],[0,-18],[0,-32],[1,-20],[0,-31],[0,-24],[0,-139],[0,-1],[1,-26],[0,-36],[4,-417],[-1,-233],[3,-76],[0,-145],[5,-341],[2,-149],[1,-21],[6,-270],[0,-46],[3,-75],[0,-23],[0,-30],[1,-31],[0,-30],[1,-30],[2,-34],[0,-31],[0,-31],[1,-48],[2,-126],[-121,-1],[-146,-1],[-19,0],[-45,-1],[-98,-1],[-11,0],[-48,0],[-23,-1],[-20,-1],[-21,0],[-16,0],[-104,-1],[-14,-1],[-81,0],[-52,-1],[-70,-1],[-32,0],[-38,0],[-16,-1],[-15,0],[-22,0],[-112,0],[-25,-1],[-58,1],[-26,0],[-39,0],[-67,1],[-84,-1],[-113,-2],[-31,0],[-24,0],[-19,0],[-16,0],[-88,-1],[-33,0],[0,-21],[1,-112],[0,-106],[0,-104],[-1,-105],[0,-18],[0,-41],[0,-47],[0,-86],[0,-19],[0,-17],[0,-19],[0,-76],[1,-134],[-1,-20],[-1,-78],[-1,-75],[-1,-34],[0,-19],[0,-33],[1,-16],[2,-112],[0,-9],[1,-58],[0,-22],[3,-201],[0,-143],[0,-33],[0,-6],[0,-47],[1,-121],[1,-73],[0,-2],[0,-26],[0,-23],[0,-1],[2,-101],[1,-43],[0,-58],[1,-51],[2,-113],[1,-46],[0,-15],[-2,-30],[0,-2],[-6,-106]],[[67065,69802],[-42,23],[-49,-21],[-36,-28],[-21,-28],[-2,-6],[-16,-67],[-10,-7],[-17,-14],[-55,-8],[-6,1],[-31,5],[-22,21],[-77,9],[-59,-23],[-27,-20],[-4,-22],[-6,-37],[-28,-22],[-13,-1],[-43,-6],[-38,5],[-14,10],[-43,6],[-123,7],[-49,-37],[-12,-45],[-33,-35],[-9,-69],[12,-32],[-5,-40],[-5,-7],[-36,-29],[-31,-16],[-4,-2],[-3,0],[-26,2],[-33,-16],[-17,-8],[-28,3],[-5,1],[-3,1],[-29,19],[-63,37],[-68,17],[-2,1],[-1,0],[-45,33],[-21,10],[-30,14],[-12,2],[-20,9],[-11,5],[5,9],[-1,15],[-7,11],[-5,6],[-7,3],[-1,0],[-77,2],[-68,14],[-38,8],[-58,5],[-1,0],[-42,8],[-4,1],[-1,1],[-44,11],[-3,0],[-33,1],[-39,1],[-47,19],[-3,3],[-2,3],[-4,24],[-4,18],[-2,5],[-1,3],[-9,11],[-2,2],[-52,4],[-16,-1],[-14,-3],[-8,3],[-31,17],[-10,10],[-3,4],[-30,17],[-7,0],[-11,-6],[-13,-10],[-9,-4],[-50,-2],[-32,-1],[-37,3],[-5,2],[-12,-1],[-108,-28],[-15,-6],[-54,-39],[-36,-31],[-8,-7],[-6,-6],[-24,-30],[-61,-87],[-14,-42],[-37,4],[-31,1],[-13,-6],[-78,-34],[-5,-5],[-19,-19],[-4,-3],[-1,-4],[-1,-7],[0,-5],[-20,-29],[-3,-2],[-59,-48],[-7,-2],[-21,-8],[-44,-21],[-6,-4],[-3,-2],[-4,-4],[-2,-7],[-2,-5],[4,-20],[8,-13],[6,-17]],[[64188,69077],[-23,-22]],[[64165,69055],[-16,-10],[-17,1],[-10,-21],[-19,-16],[0,9],[-1,10],[10,15],[-12,43],[-41,33],[39,17],[16,38],[7,16],[38,27],[3,3],[13,16],[-1,30],[23,-13],[0,23],[5,21],[9,7],[18,14],[14,3],[2,0],[4,6],[7,9],[-6,3],[-13,7],[-13,-10],[-22,6],[-7,5],[-5,5],[3,22],[58,30],[40,13],[53,10],[39,22],[-29,24],[-1,6],[-5,27],[-22,-15],[-6,15],[-3,28],[8,48],[1,2],[-16,18],[-4,5],[-31,-40],[-11,-31],[-23,-15],[3,7],[6,12],[3,32],[-35,14],[32,19],[42,41],[6,6],[-53,-13],[-26,-1],[-32,7],[-27,-4],[-21,15],[-9,7],[73,21],[8,41],[37,32],[-18,7],[-7,3],[-25,-5],[1,21],[1,30],[-27,5],[-40,3],[-1,0],[10,29],[30,16],[-8,59],[39,5],[40,15],[-31,25],[52,14],[-34,13],[-6,22],[-2,7],[-2,9],[-61,-36],[-27,-7],[-3,-1],[-9,-3],[-15,-5],[-28,11],[21,20],[50,26],[26,17],[3,1],[20,9],[29,7],[7,21],[-19,26],[-23,-2],[7,-8],[5,-6],[12,-8],[3,-3],[-25,-2],[-24,-11],[0,16],[-3,-2],[-32,-22],[-30,-15],[-22,-22],[-23,-3],[-26,-1],[-56,19],[-56,-1],[1,10],[5,37],[-22,14],[-5,3],[-21,1],[-32,-4],[-3,48],[21,2],[4,1],[-2,26],[24,30],[42,17],[-28,29],[-28,1],[-24,26],[-24,-12],[-2,20],[-1,9],[-8,-7],[-4,-4],[-5,-2],[-8,-3],[-7,-19],[-9,-14],[-16,23],[-4,15],[6,27],[-7,-2],[-15,-2],[-11,-12],[-29,-6],[-25,18],[-1,0],[-5,-32],[-12,5],[-26,11],[-59,14],[-13,-24],[-3,-4],[-26,20],[-36,-17],[-31,40],[-33,-29],[-19,0],[-16,0],[7,-38],[-24,4],[-1,0],[-24,4],[3,16],[6,29],[12,31],[13,9],[22,17],[3,11],[4,18],[5,13],[5,12],[39,16],[39,5],[-6,32],[-34,7],[4,5],[18,21],[33,13],[27,16],[4,2],[2,11],[4,21],[-37,-8],[-41,-27],[-45,-22],[-29,-12],[-15,-39],[-12,-4],[-17,-5],[-28,19],[37,22],[-26,19],[-25,47],[-12,47],[-28,22],[7,7],[41,34],[8,1],[19,2],[39,5],[12,48],[21,2],[6,0],[11,-8],[18,-13],[30,7],[44,-10],[32,-36],[56,2],[30,-32],[35,1],[1,44],[-16,11],[-4,3],[-23,15],[-13,30],[-33,2],[-9,14],[-7,11],[4,32],[32,-6],[21,29],[37,-13],[47,-1],[28,7],[14,3],[-2,25],[-1,8],[-13,17],[-10,13],[-45,-2],[-25,-11],[-25,23],[-29,13],[-33,-8],[-36,3],[-4,31],[-2,9],[5,34],[-19,46],[-28,2],[-2,0],[-9,4],[-19,8],[10,8],[21,19],[13,37],[1,38],[-31,56],[24,29],[31,4],[27,-23],[1,30],[-10,27],[-34,8],[-1,41],[-6,29],[11,32],[-21,37],[-16,52],[-13,23],[-10,18],[-32,33],[44,32],[18,62],[32,38],[1,7],[5,34],[29,38],[36,20],[16,16],[-4,5],[-7,8],[-29,-9],[-46,-37],[-4,-4],[-41,-45],[-37,-25],[-14,-29],[-14,-5],[-34,-12],[-17,-3],[-30,-4],[-28,-5],[-36,-43],[-43,-22],[-50,-16],[-39,-10],[-14,-33],[-32,35],[-4,10],[-13,35],[-11,20],[-8,13],[-14,-40],[-38,19],[-19,28],[-11,17],[-34,15],[2,9],[3,14],[-25,34],[-15,21],[-1,-2],[-3,-4],[-5,-5],[24,-33],[-15,-43],[-25,5],[-8,1],[-2,-1],[-13,-10],[-44,-17],[11,34],[13,6],[30,25],[5,23],[-26,-17],[-6,-4],[-12,-9],[-4,-1],[-19,-6],[-27,-30],[-35,-9],[-3,-23],[-6,3],[-24,8],[-36,-10],[-28,15],[10,27],[15,17],[10,22],[2,5],[-14,0],[-18,-28],[-1,-9],[-1,-15],[-2,-1],[-14,-9],[-20,-11],[-10,-5],[-15,-21],[-4,-3],[-17,-13],[-31,46],[-38,-11],[-23,12],[-7,18],[-3,9],[-22,-29],[-25,-10],[-22,17],[-17,13],[-14,14],[-16,16],[-35,4],[-32,18],[-34,48],[-22,-47],[-35,-39],[-25,19],[-13,-1],[-19,-2],[-26,58],[-28,-16],[-13,-8],[-20,29],[-41,-18],[-5,16],[-6,17],[-45,-26],[-48,16],[-39,-22],[-28,20],[-6,-38],[-27,34],[-36,-38],[-15,9],[-23,15],[-46,8],[-28,-27],[-36,6],[15,31],[-3,15],[-3,19],[-34,-11],[-7,-2],[-8,-4],[-29,-15],[-43,-11],[-24,-9],[7,29],[-6,34],[-39,8],[-51,5],[-38,14],[-11,-37],[-16,-35],[-32,12],[-27,-2],[9,34],[15,38],[-36,7],[-7,-20],[-7,-21],[-38,-16],[-31,52],[24,20],[-23,36],[-19,-10],[-14,-8],[-14,36],[-41,-7],[-12,-2],[-32,0],[-2,-1],[-33,-15],[-59,-11],[-33,-13],[9,-9],[13,-14],[8,-22],[9,-23],[5,-30],[3,-24],[-1,-25],[0,-20],[-18,-34],[-50,2],[15,28],[-14,37],[-2,8],[0,20],[0,16],[-4,23],[-1,11],[-43,-15],[-43,-5],[-23,-34],[-23,-11],[-6,-3],[-3,-32],[-2,-24],[-31,55],[-38,11],[-44,-19],[-28,-12],[-3,-1],[-2,-1],[-37,-10],[-2,25],[-36,10],[-47,31],[-8,9],[-17,17],[-14,-38],[-23,29],[-15,12],[-11,37],[-7,22],[-11,12],[-10,-19],[-23,-5],[0,-27],[3,-8],[5,-17],[-34,-20],[-17,43],[-14,-4],[-17,-5],[-11,41],[12,36],[7,17],[9,20],[13,43],[7,36],[-25,10],[-24,-43],[-25,-46],[-26,-29],[27,-38],[-7,-26],[-37,16],[-38,16],[-2,9],[-6,23],[35,10],[5,45],[-44,-26],[5,52],[-35,43],[41,23],[22,33],[13,7],[-6,32],[4,8],[5,11],[-1,13],[0,2],[11,13],[2,3],[9,14],[-8,11],[-4,6],[7,26],[-15,0],[-13,-6],[-1,-8],[-2,-34],[-4,-4],[-11,-10],[-5,-20],[-12,-13],[23,2],[-3,-8],[-7,-22],[-20,-3],[-11,-8],[-12,-9],[-37,-43],[-22,16],[1,16],[1,17],[-15,-8],[-13,-7],[10,43],[5,3],[17,12],[27,13],[-7,33],[-2,6],[5,17],[8,15],[4,7],[15,-1],[22,8],[0,18],[10,20],[24,1],[7,22],[41,-2],[9,15],[7,12],[-1,12],[-3,18],[-21,-4],[-20,11],[-19,-3],[-8,-18],[-3,-7],[-3,-31],[-15,-2],[-16,-18],[-1,-26],[-15,-9],[-19,-1],[-1,-1],[-14,-13],[-18,-27],[-4,-7],[-2,-1],[-13,-13],[-5,33],[-3,7],[-6,18],[23,38],[6,33],[4,26],[28,20],[3,2],[28,26],[17,52],[4,50],[-22,29],[-28,-1],[-44,-10],[-36,-18],[-14,11],[-19,16],[-5,34],[-40,-1],[5,14],[13,31],[27,-3],[9,-1],[32,29],[-2,11],[-11,47],[24,8],[33,6],[5,6],[19,24],[40,0],[34,6],[9,-23],[11,-7],[9,-6],[33,-6],[20,5],[4,-5],[10,-10],[20,1],[-11,21],[-1,2],[6,25],[-4,29],[-18,16],[-22,-9],[-9,20],[-36,-47],[-3,24],[-2,13],[10,17],[10,17],[-24,21],[-32,-8],[-34,3],[-52,5],[-5,44],[9,15],[13,24],[-31,0],[-37,1],[-24,9],[-8,4],[10,30],[41,11],[-6,47],[-20,26],[-6,7],[-32,1],[-7,40],[38,-2],[-6,26],[15,47],[-59,-17],[-16,29],[2,19],[-11,26],[-4,12],[-2,6],[5,-5],[12,-14],[22,-17],[16,-5],[14,7],[-19,6],[-9,19],[-19,1],[-11,20],[-23,6],[-3,0],[1,10],[1,7],[14,1],[15,-2],[12,21],[0,16],[0,4],[-20,-14],[-16,-6],[-22,7],[-1,1],[0,15],[0,7],[-3,15],[-6,-18],[-6,-14],[-13,-31],[-33,-12],[-35,-9],[-29,14],[-23,-6],[-25,-1],[6,48],[13,30],[18,24],[22,18],[21,18],[41,44],[34,13],[3,40],[34,52],[4,15],[6,21],[-32,-17],[-10,-14],[-17,-24],[-20,-53],[-31,-22],[-41,-36],[-38,-36],[-49,-41],[-5,0],[-51,6],[-16,-30],[-38,-11],[-27,62],[-15,19],[-19,24],[10,12],[50,-3],[16,11],[3,1],[29,40],[22,16],[-6,26],[-17,16],[1,6],[3,12],[14,3],[-11,12],[-18,-8],[-6,-19],[13,-23],[13,-15],[-8,-7],[-3,-3],[-8,-9],[-16,-19],[-26,-23],[-22,-1],[-16,2],[-13,17],[1,10],[1,8],[-3,15],[-19,33],[-7,14],[0,34],[8,60],[3,22],[28,37],[0,15],[1,20],[-10,18],[-33,16],[0,26],[-18,23],[-17,0],[-22,11],[-2,0],[-16,-2],[6,-22],[5,-8],[10,-16],[33,5],[0,-29],[20,-18],[23,-9],[1,-13],[1,-14],[-18,-16],[-15,-24],[-1,-3],[-2,-32],[-5,-40],[-2,-20],[5,-29],[15,-33],[-3,-25],[-3,-20],[-29,-16],[-58,10],[-48,17],[9,46],[30,35],[-34,0],[-36,-24],[-28,-11],[-23,11],[-23,10],[-43,6],[-46,-13],[-21,33],[-15,31],[-30,11],[-31,17],[-46,-5],[9,14],[22,33],[-13,21],[-4,8],[-10,2],[-27,6],[-43,-16],[-24,-36],[-6,-9],[0,-1],[-5,-4],[-9,-8],[-10,14],[-1,1],[-1,2],[-8,18],[2,26],[1,14],[6,22],[6,26],[16,42],[23,26],[24,17],[63,37],[28,22],[25,35],[-1,36],[20,26],[5,23],[3,17],[-1,36],[0,25],[25,32],[48,-1],[71,-28],[29,-23],[11,-20],[8,-14],[28,2],[29,3],[61,-31],[16,-5],[41,11],[6,10],[13,19],[7,9],[9,12],[-3,23],[-4,42],[19,34],[47,9]],[[59544,74134],[39,-1],[13,24],[7,5],[6,27],[1,5],[8,34],[7,30],[21,44],[13,10],[10,2],[17,-2],[5,-3],[1,-1],[10,-6],[3,-4],[7,-9],[2,-22],[9,-11],[8,-5],[7,-5],[17,-3],[21,15],[49,60],[16,25],[15,12],[26,8],[24,1],[9,0],[30,11],[1,0],[1,1],[93,34],[14,6],[25,21],[73,59],[9,13],[1,2],[0,27],[-13,18],[-5,3],[-23,3],[-37,-10],[-17,-4],[-31,4],[-13,6],[-8,11],[-3,10],[4,25],[10,19],[2,3],[11,8],[25,14],[22,11],[23,17],[15,11],[10,17],[4,25],[-1,0],[-2,8],[-1,6],[-18,24],[-4,2],[-5,2],[-21,30],[-3,20],[4,31],[5,11],[16,20],[39,30],[27,14],[28,15],[25,10],[4,2],[9,-1],[28,-4],[28,4],[44,17],[15,13],[24,22],[30,26],[94,87],[11,24],[1,7],[1,11],[-1,10],[-1,12],[-2,5],[-7,27],[3,26],[19,17],[12,-1],[21,-2],[61,-13],[14,6],[15,13],[1,1],[2,1],[3,22],[-16,22],[-7,10],[-19,44],[0,10],[7,43],[2,2],[16,21],[15,11],[8,9],[4,5],[5,26],[1,3],[-6,15],[-5,6],[-10,12],[-31,11],[-4,1],[-1,2],[-6,8],[-7,10],[0,1],[3,23],[0,1],[4,5],[3,4],[10,7],[11,8],[17,-3],[45,-20],[13,-5],[5,-1],[8,-1],[23,18],[3,2],[4,31],[-3,8],[-16,22],[-3,2],[-30,24],[-21,29],[-6,12],[1,13],[2,18],[0,8],[10,17],[18,19],[42,41],[24,24],[20,31],[5,27],[-4,24],[-3,20],[2,20],[2,13],[5,11],[19,23],[7,9],[11,14],[54,45],[15,14],[26,36],[12,30],[1,16],[3,46],[6,15],[9,6],[0,1],[14,3],[9,-1],[64,-13],[19,1],[14,6],[12,4],[4,2],[24,18],[12,18],[6,14],[18,38],[6,33],[1,3],[-7,23],[-11,15],[-15,20],[-2,10],[3,37],[14,22],[23,24],[16,33],[6,19],[6,43],[-5,34],[-21,48],[-10,41],[9,74],[1,3],[4,7],[5,37],[4,72],[-5,21],[-2,14],[0,10],[0,4],[0,3],[5,51],[2,9],[1,5],[2,7],[7,12],[4,7],[1,3],[17,13],[12,4],[11,-1],[7,-1],[9,-1],[8,-6],[9,-7],[10,-1],[19,-3],[19,5],[2,0],[11,8],[6,5],[2,3],[8,14],[9,24],[2,16],[1,8],[1,7],[-4,20],[-6,9],[-12,17],[-2,3],[-13,8],[-40,25],[-11,12],[-4,4],[-26,37],[-2,5],[-8,16],[-1,8],[1,8],[2,8],[8,51],[12,26],[3,5],[4,8],[8,7],[11,8],[2,1],[3,1],[15,5],[17,9],[21,16],[8,6],[9,6],[6,7],[47,51],[61,62],[23,18],[27,16],[3,1],[14,2],[20,5],[9,1],[26,10],[26,9],[15,11],[2,1],[2,3],[3,5],[10,19],[0,1],[3,22],[-1,2],[-2,4],[-16,61],[0,11],[3,41],[1,7],[6,15],[2,5],[10,14],[9,13],[10,30],[1,6],[9,60],[3,19],[-1,16],[-1,8],[1,9],[4,26],[2,15],[7,12],[7,11],[20,15],[6,2],[7,2],[42,34],[1,42]],[[78470,74848],[49,-73],[18,-43],[11,-17],[11,-35],[-17,-38],[6,-16],[3,-23],[8,-24],[6,-17],[6,-16],[30,-43],[9,-21],[-8,-11],[-14,-17],[-15,-27],[-2,-18],[15,-11],[4,-2],[4,-3],[12,-7],[12,-16],[6,-18],[1,-11],[1,-7],[0,-1],[-15,-20],[-18,1],[-9,9],[-3,2],[-17,23],[-12,9],[-14,9],[-12,9],[-12,4],[-16,-1],[-13,-3],[-52,-19],[-12,-4],[-6,-1],[-3,-1],[-15,-2],[-18,-10],[-14,-16],[-7,-10],[-15,-24],[-11,-24],[-9,-22],[-3,-9],[-3,-8],[-2,-14],[-6,-34],[-2,-36],[-1,-23],[0,-1],[3,-17],[8,-15],[3,-7],[2,-20],[9,-23],[1,-3],[3,-17],[8,-22],[8,-21],[18,-42],[7,-24],[6,-14],[7,-15],[12,-17],[8,-17],[10,-12],[16,-22],[15,-17],[18,-16],[11,-13],[12,-9],[11,-10],[27,-6],[62,-14],[54,10],[21,-35],[18,-11],[9,-23],[9,-13],[9,-18],[8,-13],[18,-39],[-2,-32],[8,-16],[5,-18],[13,-21],[12,-27],[6,-24],[8,-13],[21,-22],[11,-24]],[[78819,73385],[-1,-18],[0,-29],[0,-18],[-1,-23],[0,-17],[-1,-76],[1,-80],[1,-71],[0,-45],[0,-33],[1,-49],[0,-33],[1,-79],[1,-143],[1,-80],[2,-151],[1,-127],[1,-31],[0,-5],[0,-2],[0,-17],[1,-83],[1,-118],[0,-19],[1,-80],[1,-66],[0,-48],[1,-128],[1,-59],[2,-206],[1,-116],[2,-197],[0,-39],[0,-18],[1,-8],[0,-30],[0,-40],[2,-61],[3,-173],[0,-3],[3,-208],[4,-194],[2,-109],[3,-175],[1,-41],[1,-73],[4,-119],[-20,0],[-14,0],[-44,0],[-96,0],[-27,0],[-31,0],[-38,0],[0,-25],[2,-239],[-1,-167],[0,-17],[0,-62],[0,-35],[0,-132],[0,-47],[0,-57],[1,-117],[2,-158],[0,-24],[0,-46],[1,-65],[0,-45],[1,-11],[0,-47],[1,-54],[-91,0],[-110,-1],[-49,0],[-17,-1],[-37,-4],[-45,1],[-15,0],[-28,1],[-26,0],[-18,0],[-2,0],[-29,-1],[-25,-1],[-19,1],[-29,1],[-26,2],[-31,2],[-6,0],[-33,1],[-34,1],[-32,3],[-25,2],[-1,0],[-27,1],[-40,2],[-57,2],[-13,0],[-60,-1],[-35,-1],[-16,0],[-76,-1],[-4,0],[-33,0],[-28,0],[-39,0],[-28,1],[-14,-2],[-159,-1],[-215,-1],[-98,1],[-38,0],[-28,0],[-30,0],[-101,0],[-1,0],[-192,1],[-69,0],[-16,0],[-38,0],[-28,-1],[-157,1],[-12,0],[-27,1],[-8,-18],[-89,-1],[-2,0],[-74,0],[-262,8],[-112,-5],[-66,1],[-45,0],[-15,1],[-22,1],[-19,1],[-331,0],[-46,0],[-62,0],[-16,0],[-87,0],[-67,-1],[-36,-1],[-67,-1],[-53,0]],[[74712,68493],[-148,0],[-1,0],[-179,-1],[-68,-1],[-175,0],[-29,0],[-87,1],[-129,1],[-165,1],[-24,0],[-29,1],[-24,0],[-30,0],[-9,0],[-39,0],[-170,0],[-236,1],[-95,0],[-56,0],[-69,0],[-99,-1],[-21,0],[-76,0],[-73,0],[-56,0],[-64,-1],[-30,0],[-47,1],[-16,-1],[-73,-1],[-299,0],[-15,0],[-41,0],[-41,0],[-167,-1],[-44,0],[-31,0],[-19,0],[-24,0],[-37,0],[-20,0],[-43,0],[-104,0],[-67,0],[-69,0],[-115,1],[-75,1],[-23,1],[-16,-1],[-51,0],[-30,0],[-3,0],[-1,0],[-84,1],[-96,1],[-34,1],[-22,3],[-45,0],[-147,0],[-3,0],[-194,-1],[-27,0],[-17,0],[-43,0],[-107,0],[-14,0],[-155,0],[-14,0],[-21,0],[-27,0]],[[70010,68499],[-2,17],[5,18],[0,18],[-9,25],[-7,21],[-3,8],[-2,19],[0,1],[-1,8],[-37,63],[-2,0],[-2,1],[-32,16],[-2,0],[-1,0],[-3,1],[-4,-4],[-2,-11],[0,-1],[-3,-2],[-7,1],[-1,2],[-3,22],[-4,6],[-59,29],[-3,1],[-49,24],[-2,4],[-7,12],[-3,5],[0,1],[-6,6],[-21,24],[-68,49],[-21,16],[-27,19],[-7,0],[-4,0],[-2,0],[-6,-4],[-4,-2],[-4,0],[-19,1],[-18,1],[-7,1],[-14,-17],[-3,4],[-25,29],[-26,31],[-45,14],[-4,1],[-5,2],[-5,2],[-2,1],[-59,28],[-6,3],[-2,2],[-1,0],[-7,9],[-11,31],[2,38],[-12,16],[-4,4],[1,16],[-3,4],[-18,19],[-9,0],[-5,-1],[-33,-5],[-17,-2],[-52,-5],[-6,-1],[-42,33],[0,1],[-75,46],[-32,19],[-48,-7],[-43,-1],[-1,0],[-5,3],[-38,47],[15,32],[3,4],[3,7],[-1,3],[-3,4],[0,1],[-28,36],[-4,2],[-52,24],[-3,-1],[-28,-7],[-54,-12],[-11,-4],[-1,0],[-47,-30],[-2,-1],[-4,-2],[-19,-9],[-31,-15],[-6,-2],[-14,1],[-6,2],[-20,18],[0,9],[6,24],[2,7],[-1,14],[-4,6],[-6,4],[-1,0],[-5,2],[-40,-2],[-12,3],[-60,37],[-21,25],[-3,5],[-7,25],[-9,22],[-11,16],[-25,33],[-2,2],[-11,8],[-3,2],[-23,33],[-11,16],[-88,86],[-18,6],[-7,1],[-11,-6],[-11,2],[-45,6],[-4,1],[-3,1],[-11,3],[-2,2],[-2,3],[-20,25],[-2,3],[-25,31],[-8,9],[-30,-53],[-34,27],[-37,30],[-25,20],[-22,13],[-39,24],[-2,1],[-2,2],[-2,3],[-4,6],[0,4],[1,4],[-2,2],[-6,9],[-27,14],[-8,5],[-17,9],[-29,8],[-26,-7],[-8,-2],[-19,-13],[-8,-7],[-31,-13],[-8,-2],[-92,-30],[-63,-46],[-32,-7],[-31,-2],[-48,-18],[-29,-19],[-14,-2],[-7,0],[-20,0],[-52,7],[-15,3],[-41,19],[-19,17],[-34,15],[-86,13],[-46,-26]],[[90775,65887],[-90,0]],[[90685,65887],[29,15],[-15,24],[-14,32],[-50,102],[-10,22],[-30,73],[-284,520],[-30,24],[-23,51],[-41,-22],[-32,-1],[3,28],[22,19],[2,35],[0,35],[-13,64],[17,9],[8,-21],[17,-33],[24,-41],[34,-65],[31,-56],[66,-122],[56,-111],[40,-70],[32,-58],[25,-46],[24,-45],[40,-66],[37,-73],[22,-38],[35,-61],[36,-60],[32,-64]],[[89777,67134],[24,-53],[27,-38],[-27,-26],[-11,-5],[-27,-15],[-27,16],[25,37],[-6,20],[-8,27],[-46,-5],[5,47],[25,18],[8,30],[14,29],[14,-28],[4,-9],[3,-19],[3,-26]],[[89802,67291],[-40,-15],[6,26],[-5,41],[-1,47],[4,39],[18,-27],[8,-19],[11,-26],[6,-13],[13,-26],[-3,-5],[-17,-22]],[[89672,67416],[-4,-23],[-39,4],[16,26],[26,44],[8,2],[14,2],[7,-14],[11,-24],[-2,-1],[-37,-16]],[[89622,67516],[-9,-26],[-61,-47],[25,-33],[6,-9],[3,-18],[2,-12],[-2,-27],[-27,3],[-10,2],[-19,24],[-16,2],[-15,3],[-4,-12],[-3,-7],[-27,-11],[-8,-7],[-17,-14],[-1,-23],[0,-9],[-8,-16],[-17,-2],[-6,28],[-7,11],[-3,4],[4,27],[8,44],[29,27],[-17,7],[18,49],[-28,29],[13,26],[62,-36],[34,12],[18,24],[32,1],[18,0],[5,-2],[28,-12]],[[89368,67573],[16,-69],[1,-17],[2,-26],[-55,49],[4,32],[-18,35],[24,-3],[26,-1]],[[89368,67573],[-6,34],[-5,28],[-5,16],[-10,34],[33,-28],[41,-4],[0,-43],[-48,-37]],[[89519,67763],[42,-35],[2,-13],[2,-25],[-11,-24],[-9,-23],[-36,-16],[21,56],[2,33],[-21,25],[-20,4],[-9,2],[-12,-1],[-34,-2],[-3,-13],[-2,-9],[-3,-11],[-4,-24],[-30,37],[-33,6],[-21,0],[-10,9],[-8,7],[-1,2],[8,55],[12,14],[5,6],[41,5],[39,-8],[26,-9],[27,-9],[5,-8],[10,-12],[25,-19]],[[89480,68053],[-6,-38],[-2,-33],[-6,-27],[-19,-16],[-43,4],[-21,-9],[-13,-5],[-47,-6],[-2,-1],[-22,-11],[3,-1],[27,-14],[-6,-8],[-9,-13],[-61,-9],[0,-16],[0,-24],[44,-22],[-4,-29],[-1,-48],[0,-26],[15,-89],[-31,-41],[-6,-7],[-2,-2],[-18,-19],[-25,55],[-58,128],[-42,93],[-19,84],[-8,26],[-52,161],[-13,24],[-8,15],[4,44],[38,-10],[39,16],[16,43],[37,16],[4,-23],[4,-18],[-13,-17],[-16,-23],[-25,-60],[55,-50],[1,1],[22,6],[17,23],[7,9],[78,47],[3,3],[8,8],[7,37],[2,13],[1,15],[5,11],[8,19],[34,-18],[6,-5],[19,-17],[33,-38],[29,-54],[32,-54]],[[88901,68581],[8,-30],[-21,-32],[-11,-29],[24,-2],[6,0],[14,-57],[11,-29],[4,-10],[4,-8],[16,-28],[5,-26],[4,-18],[24,-34],[-4,-34],[-9,9],[-23,24],[-29,62],[-76,92],[-51,88],[-19,43],[-15,36],[10,3],[8,2],[1,-3],[5,-16],[23,-26],[5,7],[15,19],[21,27],[3,3],[25,-19],[22,-14]],[[88555,69115],[-15,-29],[-13,26],[-18,63],[33,13],[18,-29],[-5,-44]],[[88350,70011],[-112,-1],[-49,31],[-5,3],[24,58],[21,9],[32,7],[41,25],[29,-38],[6,-8],[10,-50],[5,-6],[17,-22],[-19,-8]],[[89013,69010],[16,-36],[49,-84],[14,-26],[18,-32],[22,-42],[19,-29],[22,-44],[23,-40],[21,-38],[18,-29],[3,-25],[37,-56],[63,-94],[12,-22],[24,-40],[25,-40],[19,-34],[21,-34],[30,-51],[40,-66],[52,-91],[15,-20],[22,-38],[79,-136],[18,-32],[83,-146],[44,-76],[33,-56],[32,-54],[31,-52],[27,-43],[37,-65],[33,-60],[33,-60],[17,-31],[85,-141],[28,-60],[29,-55],[-17,-11],[-33,48],[-35,62],[-39,22],[-54,31],[-51,62],[-13,31],[-25,37],[-23,42],[10,32],[-34,33],[-26,44],[-20,22],[-28,57],[-27,30],[-64,50],[-23,13],[-83,111],[-9,30],[0,28],[3,16],[30,94],[-25,54],[-51,99],[-3,15],[-27,52],[-50,103],[-12,29],[-25,33],[-22,30],[-50,50],[-3,25],[-35,42],[-14,26],[-31,35],[-13,16],[-19,55],[-21,-2],[-22,-2],[-19,8],[0,-8],[-2,-20],[3,-15],[3,-19],[15,-28],[26,-11],[15,-13],[23,-19],[7,-6],[18,-14],[-9,-32],[-17,-30],[-65,3],[-36,-3],[-30,17],[1,20],[3,26],[4,27],[4,32],[10,21],[-21,33],[-19,-15],[-7,-9],[-8,-9],[3,-51],[-2,-17],[-3,-35],[-44,0],[-53,23],[-5,14],[-10,26],[2,26],[5,65],[-14,21],[-6,0],[-21,1],[-34,1],[-2,41],[21,32],[-37,39],[14,14],[11,10],[11,45],[5,18],[29,20],[16,-20],[36,3],[-3,21],[-4,30],[10,10],[3,3],[1,1],[23,25],[-5,56],[-51,3],[-57,102],[-37,68],[-5,-2],[-46,-16],[-27,-3],[-31,-32],[-4,-25],[-2,-14],[-46,8],[-14,3],[3,-16],[6,-35],[-40,-14],[-27,38],[-15,20],[-10,12],[-8,16],[-16,32],[17,60],[7,39],[34,12],[3,1],[35,1],[25,24],[-6,44],[-80,10],[-32,3],[-49,17],[-31,22],[-8,6],[-27,7],[-32,16],[-26,24],[-19,31],[-1,13],[-2,18],[-24,47],[-1,1],[-9,13],[-12,16],[-27,77],[-3,9],[-5,13],[54,33],[88,97],[4,35],[4,33],[2,9],[3,29],[1,47],[0,36],[-10,37],[-25,51],[-23,41],[-46,58],[-20,32],[-14,47],[-29,26],[-10,26],[-14,28],[-8,16],[11,76],[71,-9],[45,-46],[1,-27],[13,-15],[14,-36],[5,-30],[38,-108],[16,-41],[55,-125],[17,-39],[16,-37],[21,-45],[13,-30],[36,-71],[25,-48],[16,-32],[17,-34],[47,-90],[34,-67],[27,-52],[27,-48],[32,-58],[36,-58],[54,-104]],[[88165,70068],[-25,-12],[-118,231],[-10,39],[3,2],[10,6],[32,19],[8,5],[18,9],[21,-34],[31,-13],[3,-3],[18,-18],[3,-18],[41,-40],[66,-5],[1,-28],[0,-18],[-6,-22],[-29,-22],[-28,-14],[-3,-4],[-9,-12],[-1,-2],[-22,-38],[-4,-8]],[[88031,70356],[-35,-11],[-12,34],[-41,68],[-11,57],[57,9],[6,-41],[15,-3],[34,-6],[9,-18],[10,-14],[15,-24],[-47,-51]],[[90050,65885],[-114,0],[-89,1],[-28,1],[-6,1],[-11,0],[-45,-1],[-18,-1],[-26,2],[-81,-1],[-23,0],[-75,-1],[-96,0],[-15,0]],[[89423,65886],[-27,0],[-10,71],[-43,55],[-77,12],[-43,-29],[-20,-13],[12,-16],[19,-27],[5,-54]],[[89239,65885],[-43,1],[-14,0],[-33,0],[-4,0],[-80,0],[-57,1],[-27,-1],[-26,0],[-47,0],[-44,-1],[-18,0],[-18,0],[-24,0],[-1,0],[-78,-1],[-34,-1],[-22,1],[-84,-1],[-2,0],[-18,-1],[-62,-1],[-53,0],[-36,-1],[-36,0],[-63,-2],[-159,-1],[-43,-1],[-79,-1],[-35,0],[-88,-1],[-126,-2],[-53,-1],[-18,0],[-31,0],[2,-79],[0,-26],[1,-19],[0,-19],[3,-139],[2,-114],[4,-221],[1,-61],[1,-21],[1,-39],[1,-68],[1,-29],[1,-54],[3,-92],[0,-71],[1,-65],[0,-26],[3,-133],[0,-40],[1,-50],[0,-90],[1,-18],[0,-34],[3,-71],[0,-44],[0,-24],[1,-28],[0,-23],[1,-32],[1,-83],[1,-87],[0,-2],[1,-145],[1,-161],[0,-20],[1,-136],[2,-156],[0,-27],[3,-169],[4,-20],[-35,-4],[-2,-1],[-24,1],[-15,-1],[-53,0],[-31,2],[-51,4],[-60,0],[-30,-1]],[[87428,63135],[-17,3],[-17,12],[-8,15],[1,25],[12,10],[13,-6],[15,7],[6,15],[-14,28],[-3,12],[-3,1],[-39,7],[-27,-19],[-26,6],[-18,40],[-18,25],[-21,27],[-57,93],[-19,32],[-12,19],[-10,17],[-55,90],[-12,36],[25,27],[32,130],[2,15],[1,4],[2,29],[5,71],[-10,19],[-77,82],[-8,7],[-7,5],[-30,7],[-9,14],[3,17],[17,15],[8,13],[4,27],[-3,4],[-36,53],[-12,8],[-28,41],[5,34],[2,12],[4,12],[9,25],[24,16],[10,14],[4,4],[4,3],[8,12],[1,22],[-55,98],[-8,10],[-18,25],[-9,12],[-40,25],[-3,2],[-9,2],[-2,0],[-14,2],[-16,17],[-12,12],[-60,75],[5,45],[4,39],[-1,4],[-4,33],[-4,21],[-37,32],[-9,3],[-16,5],[-6,9],[-21,46],[-1,1],[0,2],[0,33],[0,15],[1,3],[0,3],[-10,35],[-14,42],[-58,82],[-40,25],[-91,129],[23,163],[14,29],[13,14],[14,25],[31,207],[-4,10],[-53,76],[-10,15],[-6,8],[-3,9],[-3,9],[-2,6],[-4,17],[-2,24],[-10,33],[-3,11],[-19,33],[-39,52],[-2,4],[-2,1],[-40,36],[-24,31],[-4,13],[3,19],[3,3],[10,7],[3,19],[4,31],[-7,40],[-30,37],[-1,0],[-46,6],[-6,4],[-2,2],[-16,12],[-2,7],[-4,19],[-2,4],[-2,6],[-7,11],[-10,8],[-7,2],[-9,-1],[-5,-5],[-1,-1],[0,-1],[-7,-15],[-6,-18],[-51,-20],[-21,2],[-14,8],[-52,72],[-10,19],[-6,18],[-5,12],[-11,7],[-14,4],[-1,1],[-1,-1],[-12,-7],[-12,-15],[-4,-5],[-13,-16],[-4,-6],[-4,3],[-29,19],[-10,8],[-4,4],[-48,61],[-10,9],[-22,4],[-2,0],[-55,0],[-3,-1],[-4,-2],[-5,-1],[-6,-6],[-3,-3],[-20,-17],[-7,-6],[-15,-2],[-41,5],[-8,1],[-6,-4],[-3,-3],[-8,-6],[-2,-3],[-15,-23],[-3,-2],[-48,-25],[-8,-5],[-3,-20],[2,-2],[5,-6],[11,-14],[10,-12],[12,-31],[7,-27],[-5,-33],[-8,-15],[-12,-16],[-23,-15],[-48,-42],[-1,-6],[16,-44],[5,-27],[-3,-33],[-5,-9],[-8,-6],[-3,-1],[-7,-1],[-6,-2],[-13,2],[-12,0],[-20,-5],[-49,-15],[-9,-6],[-2,-12],[6,-9],[10,-5],[4,-4],[26,-28],[5,-6],[-22,-22],[-20,-4],[-87,9],[-14,1],[-100,-5],[-30,1],[-10,3],[-3,1],[-17,-9],[-4,-2],[-12,-2],[-16,-1],[-7,-1],[-28,-11],[-7,-6],[-44,-39],[-15,-20],[-16,-33],[-15,-8],[0,30],[-14,13],[-7,-2],[-8,4],[-25,1],[-26,-1],[-10,-10],[1,-6],[2,-17],[-5,-23],[-10,-5],[-5,-3],[-19,8],[-11,11],[-2,3],[-1,20],[7,20],[0,2],[5,14],[3,17],[3,19],[3,29],[0,25],[-1,8],[0,5],[0,6],[-2,20],[-12,21],[-12,8],[-17,5],[-12,-5],[-17,-23],[-12,-15],[-23,-14],[-3,1],[-7,0],[-50,14],[-7,-9],[-11,-15],[-13,-14],[-20,-7],[-18,5],[-8,12],[-1,17],[-11,10],[-23,5],[-1,1],[-28,7],[-30,48],[-11,20],[-8,10],[-18,17],[-22,10],[-7,2],[-15,6],[-20,13],[-8,20],[-3,23],[-4,15],[-13,11],[-14,21],[4,27],[1,17],[2,18],[-10,26],[-15,13],[-12,14],[-17,23],[-11,18],[-16,16],[-9,2],[-17,4],[-7,15],[2,4],[9,24],[6,14],[1,2],[5,17],[-2,16],[-14,32],[-7,16],[-6,20],[-7,14],[-15,3],[-20,-3],[-16,2],[-26,2],[-95,4],[-36,1],[-110,3],[-65,2],[-145,5],[-1,1],[-283,48],[-34,-15],[-6,1],[-14,-5],[-41,-20],[-2,-1],[-44,-17],[-32,-6],[-128,20],[-26,-1],[-55,7],[-3,0],[-3,4],[-19,18],[-2,5],[-21,34],[-23,1],[-37,1],[-34,1],[-81,31],[-25,20],[-5,4],[-8,9],[-9,11],[-10,11],[-3,4],[-9,13],[-16,21],[-14,8],[-28,2],[-12,-9],[-3,-2],[-8,-1],[-4,-1],[-20,-3],[-8,2],[-22,4],[-64,12],[-54,10],[-2,0],[-2,2],[-5,3],[-11,16],[4,23],[5,7],[19,15],[8,1],[13,9],[31,31],[18,19],[9,20],[2,11],[0,1],[1,7],[-7,45],[-14,24],[-64,14],[-13,2],[-32,5],[-10,-4],[-29,13],[-1,1],[-6,11],[-5,7],[2,16],[5,11],[6,13],[4,11],[5,4],[3,2],[1,0],[1,0],[20,1],[11,8],[0,8],[1,10],[0,4],[-5,6],[-2,4],[-4,5],[-18,15],[-2,2],[-2,2],[-54,71]],[[82435,67238],[2,3],[0,4],[1,6],[2,26],[6,85],[3,21],[1,10],[8,13],[7,5],[1,1],[7,5],[8,-2],[3,-1],[13,-3],[17,-14],[12,-17],[7,-10],[6,-2],[7,-3],[7,-2],[14,9],[5,7],[5,15],[10,36],[5,17],[4,29],[3,16],[0,14],[-6,7],[-4,6],[-20,27],[-5,7],[0,1],[-6,35],[5,37],[-11,12],[-11,5],[-7,3],[-8,13],[-1,2],[-2,3],[10,105],[3,19],[6,11],[26,46],[28,38],[19,23],[7,5],[0,5],[2,9],[-5,32],[-3,9],[-4,11],[-1,3],[3,73],[2,2],[23,30],[-2,4],[-5,14],[-9,10],[-7,11],[-4,4],[1,3],[3,12],[0,1],[2,0],[12,5],[20,8],[10,10],[-2,0],[-4,2],[-11,5],[-23,-4],[-23,7],[-10,16],[3,26],[14,21],[7,14],[8,25],[-14,16],[-14,-3],[-18,-22],[-11,-14],[-12,-6],[-15,4],[2,16],[20,16],[14,8],[15,12],[15,8],[7,17],[-8,14],[-15,8],[-21,0],[-15,-2],[-14,2],[-12,9],[-3,19],[6,16],[15,5],[4,22],[-9,9],[-3,4],[-23,10],[-3,-2],[-5,-4],[-8,-5],[-16,-9],[-17,0],[-13,-6],[-21,-2],[-17,15],[-19,18],[-5,21],[26,6],[19,8],[2,-17],[11,9],[5,20],[0,24],[-9,20],[-7,15],[-10,11],[-9,20],[-7,15],[-6,15],[17,3],[19,-7],[13,-1],[15,5],[13,15],[7,22],[3,18],[2,18],[3,20],[5,14],[9,14],[4,4],[8,10],[9,7],[31,34],[7,8],[15,23],[9,23],[3,31],[-3,8],[-2,6],[-2,3],[-14,20],[-24,26],[-6,6],[-20,15],[-15,10],[-1,1],[-2,1],[-37,20],[-1,1],[-1,0],[-27,4],[-28,5],[-39,-4],[-38,8],[-7,1],[-10,8],[-27,76],[-6,19],[0,5],[-20,91],[-27,35],[-23,31],[-6,-4],[-10,-7],[-32,6],[-13,14],[-2,2],[1,10],[2,9],[10,14],[2,18],[-1,16],[-5,16],[-54,78],[-35,45],[-96,114],[-43,31],[-22,15],[-19,3],[-42,3],[-5,2],[-79,34],[-20,8],[-18,19],[-39,61],[-21,20],[-18,10],[-9,4],[-15,0],[-29,-23],[-19,5],[-3,1],[-6,6],[-1,1],[-29,29],[-3,3],[-11,10],[-14,20],[-48,75],[-4,8],[-19,39],[-1,1],[-6,8],[-21,39],[-1,5],[-5,16],[-10,11],[-23,2],[-29,-5],[-13,-6],[-1,0],[-1,0],[-36,6],[-4,1],[-2,2],[-16,20],[-2,2],[-4,19],[1,12],[2,9],[5,35],[1,6],[-5,42],[-17,16],[-36,15],[-4,2],[-5,7],[-1,2],[-7,25],[10,43],[24,20],[2,1],[5,1],[21,6],[22,13],[5,16],[-3,18],[-11,15],[-13,18],[-7,27],[-7,65],[-1,10],[1,9],[-14,13],[-1,1],[-6,3],[-19,8],[-92,39],[-21,2],[-24,-11],[-29,-18],[-4,-2],[-7,-6],[-36,-6],[-28,0],[-9,-3],[-2,-1],[-7,3],[-31,-7],[-29,-13],[-8,-1],[-10,-2],[-3,0],[-34,6],[-3,1],[-108,35],[-8,3],[-36,13],[-6,4],[-6,4],[-8,11],[4,13],[0,16],[10,13],[9,17],[1,2],[10,62],[-16,26],[-5,3],[-23,24],[-34,47],[-3,4],[1,4],[8,54],[4,37],[0,12],[2,44],[-7,25],[-3,9],[-1,8],[-8,20],[-7,16],[-25,43],[-13,24],[-18,24],[-24,32],[-9,11],[-10,25],[-1,16],[0,2],[2,2],[-3,9],[-2,6],[-2,32],[-1,4],[-2,6],[-3,6],[-17,38],[-19,45],[-2,15],[-1,5],[-12,24],[-10,15],[-32,45],[-3,9],[-14,48],[-6,19],[3,2],[11,6],[12,19],[9,52],[-10,12],[-17,19],[-27,30],[-61,17],[-18,13],[-10,17],[8,56],[-3,9],[-9,11],[-4,5],[-12,3],[-4,1],[-1,0],[-7,-3],[-24,4],[-61,20],[-31,11],[-5,2],[-9,12],[-10,18],[-8,21],[-16,15],[-17,10],[-19,0],[-2,0],[-1,0],[-20,-8],[-21,-2],[-7,5],[-5,4],[-7,5],[-3,13],[6,11],[5,7],[-1,4],[-17,52]],[[79958,72055],[-6,19],[-10,31],[2,16],[13,12],[12,-14],[16,-18],[33,17],[-1,-15],[0,-17],[23,-34],[4,1],[10,2],[6,21],[-17,2],[-1,21],[0,7],[8,12],[17,-10],[28,-3],[7,-1],[17,10],[6,4],[0,8],[1,11],[-38,-9],[-26,10],[-16,14],[-25,12],[-3,4],[-13,24],[-32,34],[-25,13],[-9,-15],[21,-22],[36,-32],[7,-6],[-3,-29],[-14,-4],[-10,14],[-17,3],[-16,-7],[-5,-2],[-9,20],[-14,33],[-43,22],[-13,6],[-41,10],[-30,8],[-9,13],[-7,10],[21,16],[84,40],[119,49],[85,6],[136,85],[93,114],[11,42],[38,138],[-16,111],[-14,136],[-2,28],[-16,36],[0,34],[-22,29],[-59,20],[-48,30],[-86,100],[8,78],[24,87],[64,95],[62,67],[40,10],[7,122],[-82,101],[-55,11],[-16,3],[-51,-18],[-28,54],[-26,71],[-20,61],[-87,166],[-73,38],[-13,39],[-122,153],[-32,41],[24,30],[-7,8]],[[85837,75701],[11,-52],[21,-90],[5,-48],[3,-21],[8,-16],[2,-2],[36,-47],[40,-66],[2,-36],[25,-52],[39,-91],[29,-63],[5,-58],[19,-15],[18,-35],[-4,-33],[10,-19],[10,-26],[8,-23],[-39,30],[-22,12],[-31,-8],[-18,-20],[0,-3],[-1,-40],[28,-55],[0,-72],[-21,-1],[-27,25],[-6,6],[-19,2],[-32,-131],[15,-92],[50,-55],[37,-22],[46,-30],[-2,-25],[33,-21],[-1,14],[-2,20],[1,23],[-19,23],[-2,18],[0,17],[-8,26],[-18,7],[1,24],[10,17],[39,19],[30,-50],[25,-58],[22,-88],[18,-43],[12,-27],[31,-100],[23,-78],[30,-58],[31,-78],[10,-22],[55,-134],[84,-193],[16,-59],[28,-85],[4,-17],[1,-7],[24,-51],[8,-16],[41,-88],[19,-46],[34,-100],[126,-312],[33,-88],[36,-39],[19,-25],[22,-26],[50,-68],[1,-1],[9,-12],[7,-18],[20,-34],[19,-40],[-26,-25],[-2,-40],[27,-41],[14,-3],[30,-41],[53,-45],[13,-45],[8,-27],[21,-47],[19,-42],[9,-22],[11,-26],[-6,-63],[58,-173],[43,-128],[13,-43],[15,-36],[4,-20],[49,-118],[21,-51],[71,-174],[6,-14],[26,-65],[69,-173],[20,-43],[8,7],[15,12],[3,3],[10,8],[6,5],[43,40],[4,0],[28,-2],[4,-13],[5,-16],[-6,-16],[-6,-15],[22,-29],[8,-32],[-1,-5],[-3,-18],[6,-18],[48,-22],[47,-40],[13,-52],[6,-24],[12,-50],[12,-30],[5,-20],[5,-23],[57,-83],[-1,-5],[-2,-30],[-7,-71],[-3,-34],[-5,-1],[-15,-4],[-41,16],[-23,1],[-19,-14],[-30,14],[-8,5],[-21,5],[-2,0],[-29,-1],[-16,-19],[-15,-21],[-23,19],[-3,2],[-11,10],[-26,36],[-37,13],[15,-33],[13,-37],[-19,-30],[-28,-41],[-46,9],[-41,-51],[-6,0],[-24,-4],[-16,-31],[-27,-63],[-21,-30],[6,-1],[9,-3],[24,32],[24,39],[28,21],[3,2],[22,11],[81,16],[46,-27],[42,-25],[-1,-59],[10,-40],[-18,-24],[27,-42],[12,-33],[-6,-22],[33,-7],[-10,-28],[-9,-17],[31,-36],[0,-36],[31,-29],[21,-32],[9,-28],[-9,-36],[5,-16],[12,-20],[7,33],[14,50],[-6,10],[-13,23],[-15,33],[-24,47],[-1,47],[8,80],[-30,62],[-18,65],[-14,72],[-23,48],[-30,26],[-19,-18],[-17,-2],[0,20],[-10,28],[18,14],[37,3],[12,8],[19,13],[20,-6],[51,-26],[32,-18],[4,6],[8,13],[-5,20],[14,31],[27,-1],[20,-18],[38,1],[33,-46],[24,-58],[15,-29],[22,-39],[4,-11],[9,-22],[68,-138],[25,-49],[20,-25],[18,-8],[22,-12],[32,-12],[21,-6],[17,-4],[36,1],[61,3],[52,-7],[27,-42],[12,-19],[8,-21],[15,-45],[15,-34],[2,-30],[1,-17],[0,-2],[3,-84],[0,-1],[-9,-51],[-25,-13],[-58,-19],[-25,-18],[-33,-25],[-16,-31],[23,-65],[2,-6],[21,-64],[17,-36],[15,-44],[7,-26],[35,-65],[41,-112],[18,-33],[9,-18],[34,-32],[28,-82],[12,-37],[33,-48],[26,-44],[31,-50],[14,-38],[7,-39],[15,-32],[39,-55],[83,-188],[75,-85],[79,-163],[15,-50],[25,-96],[68,-167],[16,-53],[100,-232],[16,-72],[44,-85],[32,-87],[10,-15],[12,-18],[11,-27],[63,-129],[38,-71],[48,-106],[25,-53],[23,-52],[21,-51],[13,-32],[17,-31],[19,-43],[46,-88],[21,-48],[23,-38],[30,-43],[39,-70],[42,-64],[26,-49],[23,-41],[25,-42],[37,-61],[27,-43],[26,-30],[16,-45],[13,-26],[11,-28],[19,-40],[31,-44],[8,-20]],[[85925,75702],[26,-64],[19,-49],[16,-37],[35,-91],[29,-80],[13,-30],[32,-80],[18,-49],[46,-116],[34,-87],[28,-73],[19,-62],[92,-226],[88,-217],[65,-163],[805,-1895],[30,-71],[111,-259],[119,-277],[191,-407],[76,-158],[54,-115],[60,-117],[59,-106],[70,-125],[92,-148],[101,-148],[63,-78],[38,-49],[-22,0],[-29,-12],[-36,-35],[-31,-2],[-42,56],[-15,7],[-40,15],[-30,26],[0,24],[5,24],[-11,35],[-10,12],[-21,33],[-31,19],[-78,40],[-8,35],[0,33],[-21,75],[-27,8],[-15,36],[20,27],[-53,78],[-12,19],[-44,66],[-32,46],[-5,47],[-34,45],[-18,55],[-9,61],[32,38],[-43,96],[-41,45],[-36,42],[-5,6],[-2,47],[-115,212],[-58,123],[-84,173],[-109,242],[-34,42],[-47,114],[-35,95],[-39,22],[0,5],[-6,43],[-25,58],[-39,86],[-10,19],[-34,68],[-11,24],[-30,70],[-6,16],[-16,44],[-12,18],[-53,110],[-21,64],[-68,153],[-42,92],[-16,40],[-34,79],[-36,86],[-30,71],[-68,162],[-91,255],[-34,72],[-32,126],[-54,146],[-13,35],[-7,21],[-15,47],[-5,23],[-27,72],[-63,181],[-32,101],[-59,163],[-5,18],[-15,38],[-2,40],[-49,99],[-43,91],[-9,43],[-33,44],[-23,40],[-24,42],[-8,48],[-15,86],[-16,67]],[[82435,67238],[6,-48],[2,-10],[1,-8],[0,-2],[1,0],[-1,-5],[-1,-2],[-3,-6],[-1,-2],[-3,-1],[-3,0],[-19,-1],[-4,-3],[-13,-13],[-17,12],[-37,-41],[-20,-29],[-16,15],[-8,-3],[-14,-9],[-61,-51],[-16,-34],[0,-4],[2,-4],[50,6],[0,-38],[-17,-90],[-8,-15],[-14,-28],[-4,-4],[-7,-5],[-21,-18],[-7,-4],[-8,-5],[-45,-23],[-18,-8],[-2,-2],[-23,-43],[-1,-8],[1,-2],[1,-3],[-1,-4],[-1,-2],[-9,-11],[-4,-4],[-4,-2],[-11,-2],[-25,-3],[-13,-1],[-76,-65],[-14,-14],[-23,-22],[-2,-10],[-4,-4],[-9,-8],[-8,-7],[-12,-27],[-2,-2],[-10,-7],[-10,-6],[-6,-3],[-8,-5],[-10,-12],[-46,-68],[-23,-65],[-4,-27],[-3,-22],[-3,-40],[-2,-42],[7,0],[18,-91],[11,-29],[20,-31],[5,-19],[17,-127],[-1,-16],[-4,-17],[-18,-40],[-4,-9],[2,-32],[13,-13]],[[81810,65790],[-219,8],[-148,1],[-102,0],[-136,0],[-144,2],[-31,0],[-232,4],[-110,2],[-98,0],[-183,0],[-21,0],[-39,0],[-13,0],[-25,0],[-24,0],[-21,0],[-13,0],[-24,0],[-119,0],[-74,0],[-102,0],[-49,0],[-16,0],[-13,0],[-14,-1],[-118,-1],[-254,0],[-222,0],[-199,0],[-7,-1],[-8,0],[-13,0],[-121,0],[-27,0],[-28,0],[-15,0],[-26,0],[-3,0],[-43,0],[-5,-2],[-10,-6],[-5,-2],[-1,-1],[-3,-24],[3,-15],[-14,2],[-18,3],[-20,-6],[-14,-1],[-12,-13],[-13,-12],[-8,-17],[-16,-13],[-22,-1],[1,-70],[0,-115],[0,-19],[0,-184],[0,-1],[3,-51],[0,-71],[0,-46],[0,-36],[0,-5],[0,-137],[0,-58],[1,-157],[1,-152],[0,-44],[0,-21],[0,-19],[0,-18],[0,-17],[0,-19],[0,-18],[2,-17],[0,-20],[0,-19],[0,-18],[0,-17],[0,-20],[-2,-16],[0,-8],[0,-9],[0,-18],[0,-19],[0,-20],[2,-26],[0,-3],[1,-364],[0,-98],[0,-63],[5,-355],[4,-266],[1,-59],[0,-143],[1,-39],[34,-17],[22,-18],[40,-48],[27,-42],[-17,-37],[-35,-49],[2,-53],[1,-15],[0,-12],[-14,-45],[-55,-28],[-3,-79],[-1,-18],[-3,-87],[0,-3],[-1,-58],[0,-1],[1,-15],[-1,-66],[1,-29],[0,-2],[0,-20],[0,-23],[0,-23],[-1,-74],[-1,-74],[0,-150],[0,-2],[0,-43],[1,-82],[0,-128],[-1,-85],[-1,-21],[-1,-98],[1,-57],[1,-225],[0,-24],[0,-342],[2,-33],[0,-21],[0,-57],[0,-22],[0,-46],[-1,-19],[0,-57],[1,-65],[0,-26],[0,-20],[-1,-56],[0,-20],[0,-18],[0,-22],[1,-143],[0,-94],[0,-178],[0,-35],[0,-88],[0,-23],[0,-4],[2,-128],[0,-24],[0,-68],[0,-13],[0,-12],[0,-29],[-1,-123],[0,-153]],[[78617,59031],[-115,-2],[-104,-1],[-1,0],[-26,-1],[-40,0],[-56,0],[-300,-4],[-19,0],[-70,-1],[-83,-1],[-31,0],[-2,0],[-86,0],[-138,-1],[-129,0],[-17,0],[-213,0],[-81,0],[-99,0],[-146,0],[0,75],[-1,102],[-1,61],[-17,0],[-68,0],[-93,0],[-35,0],[-151,-2],[-25,0],[-9,0],[-4,1],[-5,0],[-154,0],[-12,0],[-60,1],[-142,0],[-102,0],[1,-218],[0,-27],[-102,-4],[-131,-5],[-288,-1],[-4,0],[-273,-1],[-316,-1],[-203,0]],[[74666,59001],[0,206],[2,259],[16,593],[2,33],[3,16],[0,28],[-4,120],[3,304],[6,632],[1,49],[0,51],[1,103],[2,63],[0,18],[-1,20],[1,59],[3,141],[2,63],[3,66],[1,46],[2,150],[0,37],[2,151],[1,48],[-1,124],[0,122],[1,61],[1,68],[-1,85],[0,47],[-1,30],[-1,84],[0,20],[0,17],[0,17],[0,116],[-3,133],[0,54],[0,87],[0,3],[-1,96],[0,4],[-4,170],[3,104],[3,104],[0,17],[0,25],[0,64],[1,77],[0,55],[0,76],[0,60],[0,24],[0,89],[0,34],[0,30],[0,18],[0,27],[0,33],[1,49],[0,38],[1,63],[-1,17],[0,15],[0,123],[-1,33],[2,29],[2,40],[2,68],[-2,35],[0,25],[0,136],[0,16],[1,26],[4,76],[1,33],[-1,79],[-1,184],[0,32],[0,2],[0,31],[1,181],[0,6],[0,16],[1,18],[0,54],[1,39],[-1,117],[0,98],[-1,52],[0,56],[1,53],[-1,33],[-3,34],[0,13],[0,20],[1,17],[0,21],[1,68],[0,24],[1,56],[1,78],[1,38],[0,43],[1,289],[2,178],[0,88],[-1,99],[-3,219],[0,26],[-1,37],[-1,47],[0,31],[0,20],[-1,47],[0,24],[-1,55],[0,21],[-1,66],[0,56],[-1,77],[0,44],[-1,54],[0,40],[0,49],[0,35],[0,106],[0,45],[0,23]],[[78819,73385],[8,-13],[7,-18],[10,-25],[2,-22],[13,-25],[5,-20],[12,-60],[5,-28],[6,-17],[11,-30],[7,-26],[6,-29],[9,-24],[4,-16],[0,-27],[-1,-21],[1,-19],[-17,-18],[-37,-7],[12,-13],[30,-7],[9,-16],[6,-22],[23,-25],[17,-28],[15,-14],[16,-26],[18,-22],[11,-17],[17,-21],[6,-6],[15,-18],[11,-13],[7,-19],[7,-12],[7,-12],[10,-6],[5,-3],[3,-5],[6,-9],[7,-16],[6,-15],[4,-11],[0,-18],[1,-15],[19,-37],[1,-4],[4,-14],[8,-41],[-7,-13],[-8,-13],[-17,-39],[11,-27],[-3,-17],[22,-29],[29,-57],[4,-8],[13,-10],[3,-3],[23,-3],[1,-1],[19,-9],[18,-7],[13,-4],[18,-7],[15,-4],[37,-6],[26,-6],[42,-9],[47,1],[22,3],[15,2],[44,1],[30,11],[32,12],[35,12],[24,9],[20,7],[28,-42],[34,-2],[23,-2],[16,-21],[26,-5],[-15,-30],[10,-12],[20,15],[17,29],[-8,30],[53,-41],[19,-64],[36,-41]],[[65335,64450],[-33,-21],[-40,17],[15,28],[1,4],[7,3],[22,12],[-39,22],[-15,20],[8,13],[53,-4],[44,-22],[6,-3],[-14,-30],[-4,-6],[-11,-33]],[[64845,64744],[-43,-1],[-34,28],[-22,27],[23,25],[9,3],[33,8],[45,16],[10,18],[12,8],[17,-7],[10,-4],[6,-5],[7,-5],[-1,-41],[-40,-9],[-38,-23],[3,-23],[3,-15]],[[65081,64890],[0,-20],[-4,-22],[-6,-35],[-17,1],[-46,1],[-41,11],[40,37],[1,6],[4,14],[16,-3],[14,-8],[18,24],[21,-6]],[[65265,65168],[-7,-13],[-11,-20],[-6,0],[-35,0],[-2,-8],[-7,-20],[-19,27],[-29,-19],[-11,8],[-13,9],[-3,32],[27,14],[39,-12],[32,-9],[5,21],[2,6],[38,-16]],[[65296,65556],[13,-6],[16,13],[15,-7],[-6,-22],[-6,-24],[-18,-3],[-6,-22],[-4,-14],[-5,-20],[-3,-13],[14,-59],[-46,26],[-16,-3],[-36,-6],[-49,13],[0,-12],[-1,-7],[-7,-20],[-37,-9],[-19,-4],[-36,16],[4,10],[11,31],[20,23],[17,22],[39,5],[-1,39],[-22,1],[-5,0],[-14,35],[25,18],[-9,4],[-4,2],[5,9],[4,9],[4,2],[22,12],[13,12],[45,11],[14,2],[17,0],[18,-8],[7,-21],[0,-1],[10,-9],[6,-14],[3,-8],[8,-3]],[[64514,65878],[3,-9],[0,-7],[-1,-12],[0,-4],[0,-2],[-7,-4],[0,-1],[-1,-1],[-3,-2],[-9,-3],[-4,-2],[-1,-21],[-1,-20],[-12,-11],[-14,8],[6,22],[-5,13],[-4,10],[-1,10],[-2,12],[1,1],[9,15],[3,6],[1,-1],[7,10],[17,6],[16,-10],[2,-3]],[[64379,65839],[-19,-11],[-21,8],[-12,11],[11,8],[20,37],[11,29],[5,2],[17,-2],[7,-6],[10,-9],[2,-10],[-1,-3],[-2,-3],[-2,-5],[-5,-12],[-21,-34]],[[64943,66013],[3,-18],[-21,4],[-14,3],[-8,-3],[-30,-13],[-36,11],[5,10],[16,29],[-15,10],[-18,12],[23,29],[23,33],[24,-25],[33,-11],[4,-18],[8,-30],[3,-23]],[[65673,67330],[14,-23],[31,4],[3,-7],[8,-17],[-5,-9],[-6,-8],[-18,-8],[-11,13],[-26,16],[-8,11],[-6,7],[-21,10],[-9,44],[-29,4],[-8,20],[-18,8],[-18,17],[-21,31],[-3,13],[-1,5],[17,10],[24,-16],[17,-12],[17,-12],[36,-18],[8,-5],[-8,-44],[14,-4],[18,-7],[9,-23]],[[65484,67450],[-14,-5],[-15,4],[-14,16],[-17,1],[-14,9],[32,22],[42,21],[20,-32],[4,-20],[2,-12],[-23,-3],[-3,-1]],[[65272,67482],[19,-40],[-41,-12],[-26,-2],[-17,-2],[-6,1],[-22,4],[-23,38],[-48,8],[-42,-9],[-1,19],[-1,22],[55,-2],[38,3],[3,0],[38,-31],[32,42],[21,-31],[17,-7],[4,-1]],[[65375,67504],[-32,-12],[-21,24],[26,36],[55,5],[4,-47],[-14,-3],[-18,-3]],[[65123,67832],[-3,-37],[-24,12],[-19,14],[-1,1],[1,-4],[4,-14],[-2,-14],[-2,-10],[-22,-5],[-23,36],[-9,34],[8,9],[18,19],[32,30],[44,8],[34,-36],[-36,-43]],[[64188,69077],[32,-54],[-38,1],[-10,1],[-7,30]],[[70010,68499],[1,-4],[21,-36],[0,-1],[11,-14],[1,-1],[3,-12],[1,-3],[5,-7],[3,-4],[41,-42],[51,-17],[2,-1],[10,-2],[11,-13],[36,-43],[4,-5],[31,-55],[-9,-38],[-5,-6],[-2,-1],[-4,-15],[0,-2],[-4,-17],[3,-4],[2,-3],[5,-3],[14,-8],[8,-1],[3,0],[15,-2],[27,-47],[15,-26],[4,-7],[-1,-7],[0,-3],[0,-28],[3,-20],[16,-34],[44,-80],[10,-19],[1,-1],[10,-20],[4,-9],[-1,-10],[1,-1],[1,-8],[-6,-18],[0,-3],[10,-20],[13,-17],[38,-28],[5,-4],[-1,-9],[-1,-3],[16,-125],[0,-1],[1,-3],[28,-55],[1,-2],[7,-9],[5,-7],[65,-68],[28,-29],[5,-2],[26,-9],[7,-2],[20,-8],[46,-40],[12,-11],[26,-26],[5,-5],[46,-39],[21,-13],[7,-1],[19,-4],[20,-11],[46,-37],[3,-6],[4,-5],[1,-2],[37,-85],[-1,-5],[-5,-21],[-5,-25],[10,-11],[2,-4],[35,-59],[1,-7],[3,-20],[1,-4],[6,-4],[11,-8],[2,-2],[15,-15],[8,-11],[5,-6],[11,-16],[3,-4],[33,-13],[2,0],[14,-3],[3,-1],[9,-4],[27,-11],[32,10],[3,1],[50,7],[-2,-46],[0,-5],[-1,-29],[0,-12],[38,-39],[22,-22],[1,-9],[1,-5],[11,-16],[7,-6],[17,-15],[3,-3],[42,-11],[7,-2],[45,-9],[14,-24],[-5,-34],[-8,-31],[12,-17],[50,-41],[4,-3],[86,-58],[17,-3],[52,-6],[7,-5],[7,-5],[19,-17],[8,-11],[2,-4],[13,-27],[1,-3],[5,-30],[-6,-33],[-3,-17],[4,-7],[4,-6],[11,-31],[2,-22],[-1,-18],[-1,-14],[5,-20],[2,-5],[21,-34],[-1,-4],[-3,-31],[0,-6],[2,-8],[8,-11],[11,-2],[6,-1],[9,-5],[2,-3],[3,-4],[5,-4],[83,-72],[5,-17],[-21,-83],[0,-1],[-1,0],[-15,-3],[-54,-36],[-28,-18],[-50,-33],[-14,-11],[-19,-14],[-6,-4],[-9,-17],[-1,-2],[-4,-6],[-13,-10],[-22,-17],[-4,-26],[13,-19],[-6,-58],[11,-15],[2,-3],[4,-7],[13,-7],[6,-1],[21,-2],[8,-1],[8,-1],[6,-8],[5,-6],[-5,-38],[-15,-20],[-31,-32],[-2,-44],[-15,-2],[-3,-7],[-15,-9],[-45,5],[-4,0],[-3,3],[-5,4],[-13,2],[-4,1],[-9,1],[-13,-8],[-24,-25],[-13,-8],[-13,-3],[-57,-10],[-12,1],[-7,7],[-3,3],[-9,-1],[-12,-3],[-36,-42],[-5,-7],[0,-1],[-1,-1],[-62,-84],[0,-1],[-2,0],[-9,0],[-7,-2],[-2,0],[0,-1],[-4,-4],[-4,-8],[-5,-35],[0,-3],[-5,-10],[-9,-7],[-17,-13],[-81,-64],[-6,-5],[-11,-8],[-23,-9],[-22,-16],[-23,-38],[-32,-25],[-5,1],[-1,0],[-5,-54],[-4,-11],[-3,-12],[-18,-29],[-1,-2],[-5,-4],[-34,-33],[-41,-39],[-20,-18],[-8,-7],[0,-1],[-11,3],[-6,2],[-25,-16],[-2,-18],[-16,-82],[-2,-9],[-1,-6],[-2,-6],[1,-2],[12,-12],[18,-21],[1,-9],[-4,-7],[-1,-1],[0,-1],[5,-60],[0,-1],[1,-16],[-19,-43],[-5,-12],[-15,-44],[-1,-5],[-21,-36],[-2,-4],[-6,-10],[-46,-73],[-21,-44],[-1,-10],[-14,-12],[-3,-13],[11,-17],[2,-24],[-2,-26],[-3,-26],[-1,-17],[-1,-7],[-4,-27],[-10,-34],[-16,-30],[-8,-13]],[[70649,63979],[-25,-4],[-14,-3],[-38,-5],[-70,1],[-39,0],[-72,0],[-149,1],[-26,0],[-79,-1],[-110,0],[-84,-2],[-24,1],[-57,0],[-373,-13],[-114,-1],[-195,-5],[-69,1],[-15,0],[-95,0],[-28,1],[-52,0],[-17,0],[-14,0],[-15,0],[-263,2],[-1,56],[-1,52],[0,50],[-2,181],[-1,108],[-107,1],[-328,2],[-50,-1],[-58,0],[-26,-1],[-83,-1],[-118,-2],[-301,-1],[-101,0],[-1,0],[-122,-1],[-128,0],[-54,0],[-51,0],[-58,1],[-121,0],[-45,-1],[-14,0],[-22,0],[-26,0],[-28,1],[-27,0],[-26,0],[-28,0],[-26,0],[-16,0],[-5,0],[-205,0],[-15,0],[-229,-2],[-47,0],[-106,-1],[-73,0],[-14,-1],[-56,0],[-19,0],[-61,0],[-32,0]],[[65780,64392],[33,20],[34,37],[3,20],[39,26],[20,12],[-12,12],[-35,-6],[-60,-39],[-17,-38],[-44,1],[9,28],[-43,19],[-6,11],[-9,17],[9,23],[7,18],[-28,-17],[-19,15],[-3,2],[7,-43],[-29,6],[-6,-21],[-4,-13],[-35,0],[-22,-10],[-1,17],[-1,9],[11,36],[1,3],[-12,46],[-34,-16],[-31,18],[-4,-2],[-51,-37],[10,23],[5,13],[-21,50],[2,47],[-29,26],[-25,24],[-14,-47],[-34,2],[-5,8],[-12,21],[-12,37],[-23,-34],[9,-43],[-21,-18],[-36,17],[-44,7],[-13,-24],[-2,-2],[-19,-21],[-2,54],[-28,48],[-38,23],[16,13],[13,10],[9,1],[36,5],[43,-8],[1,27],[1,19],[-36,8],[5,6],[28,28],[-8,5],[-17,12],[9,15],[10,15],[-39,2],[-6,-47],[-7,6],[-19,17],[-36,14],[-9,23],[-8,21],[-3,21],[-16,-12],[-18,-14],[-5,9],[-16,25],[30,18],[32,-2],[7,7],[3,4],[29,-5],[24,39],[20,-6],[10,-4],[17,-4],[18,-6],[4,-5],[24,-30],[36,2],[25,22],[34,0],[-20,38],[7,23],[6,17],[26,-13],[44,-16],[33,18],[25,-10],[16,21],[1,1],[28,-17],[22,31],[-11,36],[7,3],[24,10],[27,7],[36,49],[-31,0],[-28,14],[-46,3],[-56,-27],[-19,26],[5,17],[6,19],[41,15],[37,16],[22,15],[12,41],[4,15],[14,10],[16,-5],[11,-8],[5,-4],[14,19],[17,-4],[7,-21],[15,14],[-2,9],[-2,8],[3,25],[22,18],[12,4],[12,3],[-5,4],[-12,11],[15,14],[-14,1],[-4,1],[-5,-1],[-10,0],[-17,-10],[18,-16],[-21,-5],[-13,14],[-4,5],[-20,20],[5,-25],[15,-4],[3,-1],[6,-26],[-19,-6],[-13,-12],[-11,8],[-13,-5],[-4,-2],[-16,2],[-10,-18],[-32,-1],[-24,3],[-12,1],[-26,-21],[-31,5],[-38,20],[41,59],[-29,3],[-7,1],[-8,-3],[-34,-13],[-4,43],[-2,22],[-1,12],[-2,11],[13,29],[4,22],[6,14],[16,24],[9,38],[-12,9],[-2,-3],[-19,-21],[0,-25],[-14,-7],[-7,-9],[-2,-3],[-12,15],[-12,7],[-8,19],[-14,17],[17,15],[24,8],[-5,20],[-7,17],[-12,-17],[-15,-16],[-16,9],[-22,-1],[-11,9],[-18,-17],[-6,-6],[-20,15],[-6,19],[-17,5],[3,-10],[2,-9],[-21,9],[-27,4],[2,-5],[5,-13],[14,-13],[15,-14],[24,-13],[-14,-10],[-18,-18],[-16,0],[-5,1],[-16,-16],[-2,-26],[-16,-1],[-2,0],[10,25],[-26,-1],[-15,-1],[-32,-18],[-26,1],[-10,1],[-2,-4],[-3,-4],[-22,7],[1,2],[1,0],[-22,20],[24,41],[-15,40],[15,44],[7,8],[24,25],[-33,14],[30,41],[21,-10],[14,-2],[14,-2],[-5,7],[-13,23],[6,12],[10,16],[9,-17],[6,-11],[10,-9],[14,-12],[18,-13],[22,4],[33,12],[18,-27],[28,-4],[13,14],[11,18],[17,4],[13,3],[6,-2],[8,-3],[19,-13],[6,0],[22,-1],[11,9],[-33,8],[-9,16],[-18,11],[-11,10],[-18,-14],[-16,-5],[-10,11],[-1,1],[-22,6],[-26,3],[6,-15],[-8,-15],[-13,-2],[-49,-8],[-10,22],[-18,40],[6,39],[25,43],[-42,1],[30,32],[1,1],[13,29],[-38,28],[-41,-24],[-36,19],[-27,42],[-20,59],[6,16],[2,5],[-15,4],[-16,11],[-2,5],[-6,24],[13,14],[14,-18],[4,-5],[17,-30],[22,-25],[9,-10],[32,29],[-3,46],[8,8],[16,18],[35,42],[25,20],[17,21],[20,14],[25,28],[16,-1],[11,-9],[-10,-11],[23,13],[17,1],[6,1],[34,-1],[12,7],[9,5],[23,2],[3,2],[12,0],[-2,-1],[19,-12],[5,-19],[37,9],[32,38],[11,10],[29,-4],[-18,-16],[-18,-19],[13,-2],[9,-1],[9,-3],[8,-2],[19,-19],[3,2],[9,7],[2,11],[1,4],[-17,10],[36,9],[14,-1],[-1,-9],[0,-7],[-16,-18],[0,-2],[-2,-21],[-25,5],[-10,-15],[-18,0],[5,-10],[3,-7],[18,-4],[5,-4],[7,-7],[17,-31],[16,10],[2,-5],[8,-25],[16,2],[1,-21],[11,-14],[25,-11],[0,-18],[-13,-16],[2,-10],[2,-9],[-2,-18],[-13,3],[-2,15],[-19,-8],[-11,-14],[4,-1],[11,0],[10,-13],[20,6],[4,-21],[-2,-21],[-5,-11],[-5,-10],[24,5],[20,-32],[-12,-16],[-3,-1],[-12,-5],[1,-9],[1,-8],[0,-2],[0,-1],[1,0],[10,-3],[1,0],[10,-3],[-5,-3],[-13,-10],[-1,-18],[18,-20],[3,-6],[5,-12],[22,-7],[20,-2],[17,-6],[2,-31],[7,-14],[6,-13],[-3,-33],[-21,-17],[22,-8],[22,25],[15,-7],[29,-5],[30,-5],[4,0],[1,7],[0,2],[2,12],[-13,5],[-17,16],[8,56],[-3,17],[-12,-2],[-4,-1],[0,-25],[-12,-49],[-9,4],[-18,7],[-15,26],[-12,20],[3,24],[-8,19],[-1,2],[-11,9],[17,25],[10,37],[-19,2],[-24,-6],[-5,-12],[-3,-8],[-20,16],[12,27],[19,3],[-15,12],[1,13],[1,7],[-6,14],[-1,3],[-14,1],[-20,45],[-1,28],[17,17],[-1,18],[-2,4],[-4,10],[15,17],[17,-8],[5,4],[10,11],[14,-10],[24,3],[7,7],[12,12],[9,15],[12,19],[5,9],[2,27],[28,10],[-2,45],[-13,11],[4,24],[10,3],[10,3],[15,14],[25,-8],[15,0],[-6,13],[0,1],[7,19],[24,25],[4,16],[-30,-3],[-7,-16],[-23,-4],[-41,-28],[-6,-24],[-25,-15],[13,-26],[3,-16],[-22,-7],[-3,-26],[-5,-15],[0,-5],[-1,-16],[-16,-4],[1,20],[-20,8],[-11,11],[5,-29],[11,-12],[19,-16],[-19,-21],[-15,2],[-14,2],[-20,-4],[-12,15],[-8,14],[-3,6],[-15,4],[-2,-1],[-17,-8],[3,7],[7,17],[22,-3],[5,0],[8,1],[1,39],[-7,25],[-9,21],[-5,11],[18,3],[14,16],[9,12],[2,2],[23,-22],[-9,41],[6,17],[15,9],[19,13],[6,6],[4,4],[3,25],[12,1],[6,0],[2,13],[2,13],[-6,11],[-1,3],[-13,0],[-3,0],[-1,19],[-11,-19],[-2,-6],[-6,-19],[-16,-2],[-5,-7],[-5,-8],[-3,-3],[-8,-7],[3,35],[-16,28],[0,-12],[1,-9],[-1,-10],[0,-6],[-14,13],[-1,9],[-2,13],[-8,20],[-15,7],[2,-18],[6,-21],[10,-24],[-7,8],[-5,5],[-12,-10],[12,-18],[0,-3],[-5,-22],[22,2],[15,12],[6,-21],[6,-15],[-23,-10],[-13,10],[-24,-23],[-8,15],[-7,-2],[-29,-9],[-25,3],[23,28],[2,21],[21,-12],[16,10],[5,3],[-18,15],[-19,-1],[-9,13],[16,0],[24,8],[7,30],[-12,10],[-14,-4],[0,-17],[-21,1],[-14,2],[-2,-21],[-1,-24],[-16,7],[-3,4],[-12,16],[-12,8],[-13,-12],[10,-11],[12,-12],[8,-9],[9,-11],[12,-24],[-15,11],[-1,-24],[0,-1],[-13,-13],[-24,-9],[-17,4],[-7,8],[-2,3],[-20,-4],[-13,29],[-3,-10],[-3,-8],[-6,-21],[-3,12],[-2,8],[-6,28],[-1,3],[22,0],[-2,16],[-1,4],[-23,-2],[2,17],[1,15],[-5,11],[-2,4],[-7,-17],[-14,5],[-14,-5],[21,-14],[-3,-23],[-14,-18],[-3,-25],[-16,-10],[-18,-19],[-19,-14],[-17,12],[-22,10],[-16,-8],[-11,13],[-2,3],[-4,22],[-21,4],[-15,2],[-5,0],[0,-19],[-14,-2],[-16,4],[4,-23],[24,1],[9,-14],[-15,0],[-13,-13],[-46,-35],[-8,-6],[-6,-1],[-31,-6],[-42,-6],[-25,-21],[-30,-12],[-12,29],[-3,13],[-4,19],[-23,-27],[-31,-44],[-25,20],[-46,-6],[-21,-5],[-27,-6],[-9,27],[-25,-17],[-26,2],[12,39],[26,41],[31,39],[34,1],[-18,28],[4,27],[50,-3],[31,-5],[33,-13],[21,-2],[8,21],[34,15],[37,-14],[20,-8],[12,9],[13,9],[6,2],[10,4],[27,10],[-37,11],[-31,-20],[-40,14],[-6,3],[-10,7],[-10,1],[-20,3],[-8,-35],[-20,-10],[-19,11],[-22,1],[-30,15],[-13,-9],[-11,-2],[-23,-3],[-40,9],[-6,10],[-12,21],[-4,-2],[-26,-13],[-16,-1],[23,-23],[13,-18],[-8,-14],[-17,2],[-2,20],[-16,24],[-10,-19],[-2,-4],[-6,-27],[-18,-9],[-9,-5],[-22,21],[-12,42],[17,25],[-41,27],[32,32],[-13,45],[37,45],[-55,9],[-10,1],[-8,17],[-10,24],[-3,36],[-41,16],[-27,25],[9,20],[-39,37],[7,1],[25,1],[15,1],[17,-10],[18,-10],[-1,2],[-6,13],[-12,16],[-16,5],[-10,49],[6,33],[28,-8],[-1,-37],[8,-26],[7,-22],[31,-38],[7,-2],[18,-5],[-3,16],[-2,8],[2,26],[-26,60],[41,15],[23,-16],[7,1],[38,4],[37,13],[-2,11],[-2,20],[-21,-2],[-22,22],[-3,4],[-34,33],[3,32],[38,-18],[24,-20],[7,-6],[31,-25],[-4,22],[-6,35],[-29,41],[56,2],[-21,34],[17,45],[27,17],[21,13],[26,-46],[-21,-31],[-10,-15],[43,-18],[24,17],[25,-16],[-14,-13],[-8,-8],[-20,-31],[-15,-35],[-13,-39],[50,11],[44,-1],[-22,40],[6,1],[31,2],[36,-14],[1,0],[13,-5],[-8,39],[38,12],[2,38],[36,28],[22,10],[4,1],[34,-14],[45,11],[57,-10],[13,56],[2,-1],[27,-6],[48,-5],[-4,-34],[38,-31],[20,-16],[7,-15],[8,-26],[5,-18],[-19,2],[-15,21],[-19,12],[-43,19],[-9,27],[-8,-7],[-4,-3],[0,-21],[-24,-4],[-18,30],[-14,7],[5,-36],[-17,-3],[14,-39],[4,-12],[27,8],[4,25],[12,-14],[3,2],[9,5],[6,8],[3,4],[9,-22],[1,-13],[0,-5],[-1,-18],[16,3],[11,19],[21,-2],[17,-51],[15,-57],[18,36],[14,27],[29,-26],[18,17],[-29,49],[46,0],[14,-28],[4,-7],[-4,-50],[31,9],[22,12],[10,6],[9,9],[27,30],[-6,23],[-5,21],[-23,53],[-30,40],[-5,25],[8,13],[16,25],[16,57],[-24,28],[-34,-21],[-44,23],[-45,19],[15,40],[25,8],[9,52],[-38,14],[-5,5],[-6,6],[2,11],[1,6],[6,2],[18,6],[1,-16],[23,-3],[7,4],[11,8],[43,-16],[-25,-7],[-2,0],[-26,-8],[-1,-16],[-1,-7],[8,5],[7,4],[14,-23],[26,-6],[0,-18],[-16,0],[24,-23],[5,57],[12,-4],[12,-5],[11,-2],[5,-1],[-2,-1],[-11,-8],[17,-11],[10,-18],[-4,-8],[-7,-14],[9,6],[22,17],[14,-21],[19,-8],[1,-15],[1,-8],[10,6],[6,3],[10,-10],[5,-5],[-4,-9],[-3,-6],[-16,9],[-12,-15],[11,-11],[7,3],[10,3],[2,0],[12,-1],[18,6],[-15,-15],[-12,-11],[-8,-11],[-4,-6],[13,-16],[4,1],[15,1],[13,-8],[-2,-6],[-5,-16],[-4,-13],[-2,-6],[-2,-6],[-6,-18],[-9,-12],[-13,-19],[-2,-19],[3,-27],[-52,-9],[0,-1],[2,-24],[13,-3],[17,12],[20,-1],[17,-12],[-2,-10],[-2,-12],[-14,-18],[10,-11],[11,-20],[-3,-6],[-9,-21],[-5,-24],[17,-15],[6,15],[3,30],[6,25],[17,-14],[13,-7],[1,13],[2,19],[-9,14],[-14,-1],[-18,-12],[-7,14],[14,16],[11,20],[-1,27],[-19,7],[-4,4],[-6,5],[-1,29],[10,21],[16,9],[15,6],[16,25],[-4,12],[-4,13],[3,27],[0,22],[22,2],[20,7],[25,27],[-28,31],[-3,3],[9,22],[-21,-7],[-2,5],[-9,16],[-20,29],[-12,17],[16,39],[29,-3],[5,-25],[20,-6],[32,-14],[5,15],[0,1],[-14,25],[-13,12],[-3,0],[-16,2],[7,16],[3,7],[26,17],[5,8],[3,5],[-15,-9],[-13,13],[-7,16],[-1,0],[-12,-7],[8,-19],[-3,-16],[-17,-16],[-4,-4],[-22,-3],[-7,-1],[-7,8],[-7,8],[-8,8],[-19,19],[-1,21],[-2,15],[-23,2],[-17,1],[-30,-31],[-20,34],[-15,28],[-13,8],[-17,9],[-34,27],[-9,20],[13,-3],[32,-7],[11,14],[-6,7],[-5,5],[-35,12],[-44,8],[-21,26],[-29,10],[-23,-15],[-14,-9],[7,-37],[-36,1],[-32,14],[-22,2],[-14,0],[-29,32],[-49,5],[9,34],[-14,27],[-49,-41],[-45,-11],[-26,-9],[-10,-4],[-33,26],[-29,31],[-27,28],[44,9],[33,-40],[17,35],[24,21],[12,21],[44,11],[3,23],[35,57],[23,10],[43,-7],[63,-53],[37,-22],[1,14],[1,11],[-42,20],[-13,28],[-20,18],[-21,6],[-40,38],[-27,22],[-4,-36],[-27,21],[-26,20],[-34,40],[-18,-33],[-25,9],[-25,13],[-31,-18],[3,-23],[2,-16],[-38,-41],[-48,-28],[8,24],[3,10],[25,46],[18,41],[5,36],[42,0],[-47,46],[-68,21],[-4,1],[-36,-10],[-40,18],[-8,26],[-6,23],[-17,47],[-6,17],[11,39],[-48,-28],[10,50],[-37,37],[-40,-9],[16,57],[-35,24],[-29,6],[-10,-4],[-15,21],[-19,38],[-1,0],[-2,11],[2,41],[1,16],[-5,5],[-1,24],[-9,22],[-3,7],[17,17],[-3,16],[-3,13],[-6,-1],[-18,-3],[-25,18],[-1,0],[0,53],[-34,-16],[-9,-4],[10,38],[-58,-1],[17,14],[11,8],[12,9],[22,4],[23,19],[-21,20],[-40,-29],[-8,2],[-17,4],[21,28],[37,8],[9,16],[-10,-3],[-7,-3],[-5,-1],[-24,-5],[3,20],[2,13],[2,21],[-2,0],[-15,4],[-9,21],[-15,-28],[-8,-31],[-33,-15],[-6,-39],[-29,7],[-3,1],[6,17],[14,37],[7,30],[5,21],[26,40],[9,63],[22,-15],[14,-55],[12,6],[33,15],[-7,19],[-5,14],[-10,57],[39,26],[42,-22],[-14,42],[-40,7],[-47,-12],[-31,32],[-24,-26],[-29,16],[13,26],[-38,-6],[-32,-8],[-5,-17],[-8,-29],[-32,16],[-27,18],[-55,4]],[[74666,59001],[-1,-279],[-2,-291],[-15,17],[-21,-1],[-38,-7],[-27,-11],[-75,4],[-25,4],[-14,-9],[-55,-33],[-1,0],[-25,-4],[-63,-7],[-8,2],[-15,7],[-11,11],[-13,15],[-15,26],[-18,39],[-1,8],[-10,20],[-36,66],[-11,13],[-48,23],[-6,0],[-9,0],[-27,4],[-7,5],[-12,12],[-5,8],[-34,13],[-12,4],[-14,-4],[-1,-1],[-25,-6],[-13,6],[-1,1],[-26,7],[-6,1],[-16,3],[-5,-1],[-19,0],[-35,-1],[-81,-3],[-13,-1],[-10,-16],[-4,-4],[-45,-17],[-56,-12],[-7,-1],[-4,-1],[-64,-11],[-12,-4],[-6,-2],[-11,-4],[-159,-103]],[[73373,58486],[0,63],[0,300],[0,31],[0,129],[2,282],[1,156],[1,18],[1,96],[0,99],[1,136],[0,146],[0,29],[0,16],[0,17],[0,17],[1,84],[0,27],[0,123],[0,7],[0,10],[0,3],[2,44],[0,178],[0,11],[0,109],[0,37],[0,97],[1,244],[-1,62]],[[73382,61057],[0,25],[0,10],[0,7],[4,165],[2,131],[0,23],[0,5],[1,159],[0,16],[2,93],[0,1],[-37,2],[0,72],[-36,38],[-2,2],[-46,38],[-17,13],[-16,10],[-19,7],[-23,7],[-33,-3],[-15,-6],[-4,-2],[-5,-2],[-39,-19],[-38,-18],[-8,-4],[-75,-36],[-4,-13],[-7,-5],[-47,-21],[-35,-2],[-13,0],[-7,8],[-21,26],[-22,27],[-2,2],[-21,47],[-4,4],[-12,12],[-14,10],[-20,15],[-18,31],[-5,11],[-8,26],[-6,20],[-4,16],[-4,15],[-1,3],[-8,15],[-16,23],[-10,11],[-4,2],[-24,-1],[-7,-3],[-8,-4],[-10,-5],[-11,-10],[-1,-1],[-23,-26],[-2,-2],[-22,-2],[-7,2],[-22,5],[-5,3],[-107,54],[-29,26],[-3,5],[-1,1],[-4,10],[-2,7],[-2,11],[-2,12],[-11,34],[-9,26],[-2,7],[-3,4],[-22,37],[0,12],[2,7],[0,4],[-7,14],[-2,8],[6,11],[0,1],[0,8],[-11,21],[-7,6],[-7,4],[0,31],[-1,4],[-6,5],[-113,54],[0,1],[-94,22],[-17,4],[-26,0],[-13,0],[-10,0],[-19,-22],[-67,-77],[-3,-2],[-15,-3],[-73,33],[-28,14],[-22,11],[-20,11],[-29,4],[-11,-2],[-10,-6],[-1,0],[-6,0],[-15,2],[-1,0],[-26,21],[-1,1],[-22,32],[0,8],[-2,5],[-5,6],[-51,20],[-10,4],[-43,16],[-13,2],[-10,-1],[-42,-43],[-86,-8],[-3,-3],[-6,-4],[-11,2],[-57,37],[-23,25],[-7,9],[-6,9],[-8,11],[-16,30],[-17,31],[-3,6],[0,3],[-2,0],[-5,8],[-6,8],[-11,43],[-6,33],[-1,9],[0,13],[-12,38],[-3,7],[-16,32],[-3,5],[-2,4],[-11,16],[0,1],[-14,13],[-7,7],[-21,36],[-10,6],[-4,2],[-52,32],[-3,4],[-15,22],[-1,1],[0,1],[-43,115],[-1,3],[-2,1],[-37,15],[0,1],[-6,-3],[-2,1],[-7,0],[-4,2],[-1,0],[-2,36],[-2,33],[-2,8],[-2,10],[-1,5],[-20,11],[-1,0],[-10,-3],[-13,4],[-3,5],[-7,20],[-6,19],[1,12],[17,52],[-47,38],[-9,8],[-1,1],[-2,-2],[-17,-7],[-15,2],[-5,7],[1,4],[-27,39],[-32,27],[-20,9],[-8,11],[-3,32],[0,7],[1,44],[3,21],[34,35],[5,23],[0,31],[0,2],[0,6],[-13,-1],[-3,4],[-2,18],[-4,4],[-7,1],[-29,-1],[-36,-5],[-24,-16],[-1,-3],[-4,-6],[-17,1],[-12,5],[-65,70],[-14,15],[-5,11],[-4,20],[6,57],[5,9],[8,6],[20,7],[19,-2],[34,-18],[1,0],[1,1],[1,0],[-1,32],[1,2],[8,21],[26,34],[29,24]],[[87428,63135],[-66,0],[-18,1],[-22,2],[-25,-2],[-33,-1],[-51,-1],[-15,-1],[-29,0],[-306,0],[-136,2],[-160,-2],[-25,0],[-174,-3],[-343,0],[-17,0],[-37,1],[-108,-1],[-3,0],[-104,-2],[-5,0],[-27,0],[-18,0],[-3,0],[-67,0],[-2,0],[-29,-2],[-35,2],[-379,-4],[-5,0],[-49,0],[-171,-2],[-48,0],[-71,-1],[-89,0],[-21,0],[-55,0],[-69,-1],[-33,0],[-49,-1],[-1,0],[-26,0],[-26,-1],[-28,0],[-16,0],[-51,0],[-69,-1],[-10,0],[-18,0],[-19,0],[-53,-1],[-17,0],[-21,0],[-38,-1],[-58,0],[-19,0],[-19,0],[-14,-1],[-61,0],[-20,2],[-40,0],[-18,0],[-14,-8],[-2,1],[-10,7],[-63,-3],[-18,1],[-19,0],[-17,-1],[-14,0],[-21,-4],[-42,0],[-59,0],[-21,-1],[-14,-1],[-10,0],[-3,0],[-15,1],[-23,-1],[-18,-1],[-17,-1],[-24,0],[-14,-1],[-14,0],[-25,-1],[-15,-1],[-13,0],[-18,2],[-24,-3],[-24,0],[-34,-1],[-28,1],[-53,0],[-6,-1],[-29,-1],[-45,-2],[-11,-1],[-2,0],[-92,-1],[-14,0],[-1,0],[-55,-2],[0,17],[1,71],[-1,26],[-1,25],[0,21],[0,20],[0,16],[0,16],[0,15],[-1,23],[-1,28],[0,19],[0,24],[-1,20],[-4,88],[-2,20],[-33,3],[-57,0],[-42,-1],[-88,-2],[-19,1],[-37,-2],[-22,0],[-20,0],[-15,0],[-13,-1],[-23,1],[-7,0],[-47,2],[-11,1],[-1,9],[2,7],[-58,0],[-25,-1],[-16,-1],[-17,0],[-17,-2],[-49,-1],[-22,0],[-66,0],[-24,0],[-13,-1],[-14,1],[-16,0],[-8,0],[-7,0],[-19,1],[-15,-1],[-19,0],[-56,0],[-14,0],[-68,-1],[-63,0],[-14,5],[-28,4],[-8,-5],[-6,-5],[-42,0],[-2,3],[-3,3],[-6,6],[-30,-2],[-41,-4],[-17,-2],[-16,-3],[-18,0],[-27,1],[-5,0],[-103,-2],[-20,1],[-29,0],[-12,1],[-18,2],[-25,1],[-16,-3],[-40,2],[-42,-2],[-67,1],[-4,0],[-24,1],[-18,-4],[-2,33],[0,22],[-1,16],[0,50],[0,25],[0,25],[0,56],[1,56],[0,60],[0,28],[1,18],[0,60],[0,15],[0,43],[0,7],[0,28],[1,20],[0,17],[0,27],[0,16],[1,26],[1,102],[0,63],[0,86],[0,165],[2,16],[0,40],[0,9],[11,18],[125,10],[68,-8],[18,10],[74,86],[19,24],[5,4],[30,40],[17,26],[10,13],[0,14],[6,15],[50,67],[36,38],[13,25],[25,54],[4,23],[-5,18],[4,29],[29,89],[11,44],[2,7],[9,22],[2,13],[6,39],[5,51],[-5,16],[-4,38],[-2,13],[0,33],[11,72],[7,41],[2,9],[5,115]],[[92104,58462],[27,8],[4,2],[22,-23],[4,-14],[7,-23],[-33,-60],[-34,18],[-4,2],[-7,31],[-3,15],[-6,17],[-4,12],[27,15]],[[91495,59268],[14,-17],[16,21],[21,-26],[-38,-26],[-13,-16],[-1,32],[-2,17],[-20,17],[0,41],[25,11],[22,-12],[-24,-26],[0,-16]],[[92104,58462],[-28,11],[-115,2],[-11,27],[5,71],[17,52],[24,15],[65,12],[30,-13],[42,16],[-19,28],[27,15],[20,12],[36,-9],[23,28],[-47,29],[16,25],[23,26],[35,2],[-1,43],[-42,3],[-40,-32],[-24,41],[31,21],[-11,46],[-40,21],[52,24],[13,29],[23,4],[9,-32],[15,-38],[44,-10],[-22,60],[34,6],[43,-3],[32,21],[-2,48],[-26,55],[13,55],[-22,-5],[-8,28],[0,1],[10,48],[15,109],[44,69],[27,47],[-10,48],[10,79],[-11,72],[-54,26],[-8,25],[-69,2],[-4,156],[-49,11],[0,40],[-41,0],[-46,-40],[-30,28],[-33,-1],[-55,10],[0,4],[2,40],[-4,31],[82,22],[-3,18],[2,60],[51,42],[44,-10],[0,-12],[-1,-32],[-29,0],[-20,-13],[13,-44],[36,-10],[0,-42],[86,0],[153,0],[106,0],[91,0],[59,-5],[-44,-101],[-53,-177],[-38,-164],[-44,-215],[-31,-218],[-15,-135],[-11,-213],[-11,-174],[6,-137],[-11,-159],[9,-119],[15,-162],[0,-85],[23,-239],[58,-439],[20,-167],[49,-361],[42,-224],[96,-423],[113,-506],[56,-232],[149,-477],[166,-456],[177,-436],[121,-284],[140,-326],[230,-485],[247,-523],[170,-332],[199,-417],[7,-14],[17,-29],[-25,-21],[-5,-4],[-14,-29],[-18,-14],[-32,-19],[-39,-4],[27,33],[19,13],[-18,53],[31,17],[-20,32],[-47,-1],[-33,15],[24,48],[-4,55],[-38,3],[-30,-50],[-42,13],[-37,-4],[-32,34],[44,29],[-14,48],[-22,31],[5,49],[21,42],[24,33],[-17,62],[-28,56],[-12,30],[-32,53],[8,34],[-41,30],[-5,55],[-6,34],[-17,35],[-61,37],[-21,18],[-41,6],[-37,28],[-25,15],[-2,1],[1,-9],[2,-33],[-18,-26],[-27,25],[-5,6],[-19,26],[-10,18],[-7,13],[6,11],[6,12],[4,5],[-5,5],[-25,26],[-6,7],[-33,26],[-3,3],[-21,43],[44,3],[8,-19],[8,-20],[8,4],[17,10],[-1,1],[-5,15],[-19,52],[-24,8],[-57,0],[-43,23],[-13,49],[-2,34],[6,32],[4,47],[32,-23],[17,-16],[14,-12],[15,46],[-21,18],[-12,11],[3,8],[9,26],[-17,12],[-22,17],[3,37],[-7,35],[-50,14],[-25,25],[16,24],[15,51],[-21,70],[-30,48],[-36,49],[-9,44],[-41,25],[-34,-14],[-22,46],[8,33],[24,35],[16,32],[9,30],[9,30],[-4,30],[-14,29],[-22,31],[-37,34],[-2,8],[-10,39],[-21,67],[-45,42],[-30,27],[-8,53],[-3,38],[-7,41],[-16,37],[-17,33],[-20,30],[-20,31],[-21,27],[-27,31],[-24,26],[-10,42],[-24,24],[-25,26],[9,47],[-11,44],[-14,42],[-54,90],[-42,49],[-25,17],[3,81],[-15,37],[-59,134],[-34,26],[-51,24],[18,83],[-22,78],[-2,5],[-42,107],[-77,50],[27,88],[-22,49],[-13,86],[-23,66],[-34,19],[0,31],[-4,71],[-21,68],[-29,38],[-68,29],[-14,40],[-6,13],[-7,17],[29,4],[3,45],[-15,28],[-31,21],[-18,66],[-9,15],[-43,132],[-16,37],[-9,43],[-7,27],[-15,35],[-10,50],[-11,129],[-9,97],[-8,45],[-8,72],[-11,107],[-8,72],[-3,35],[-6,77],[0,2],[-3,36],[-2,51],[16,57],[-3,61],[15,74],[0,42],[-1,65],[-18,79],[14,72],[29,40],[19,39],[58,185],[-1,126],[0,52],[-6,68],[-12,42],[-28,64],[-63,71],[2,34],[14,54],[48,4],[-6,88],[-37,69],[-42,-110],[-57,-15],[-32,-29],[-32,-6],[-19,37],[36,10],[12,41],[23,21],[-1,29],[47,21],[29,37],[-51,14],[-26,-26],[-23,48],[-35,14],[-67,10],[15,-61]],[[92531,62437],[1,-21],[-35,-71],[-8,-26],[-20,8],[-15,26],[26,33],[9,49],[-17,-10],[-21,29],[24,12],[7,13],[1,2],[46,-12],[2,-32]],[[90653,65515],[-8,-4],[-4,15],[7,48],[8,10],[24,30],[49,30],[14,-24],[5,-10],[-21,-34],[-26,-32],[-27,-18],[-21,-11]],[[89239,65885],[2,-18],[4,-54],[10,-19],[19,-38],[32,-166],[0,-3],[0,-117],[82,-543],[106,-471],[41,-293],[29,-153],[57,-260],[4,-26],[1,-9],[0,-3],[3,-14],[4,-30],[21,-134],[4,-188],[49,-24],[131,-81],[7,-22],[4,-14],[5,-14],[4,-13],[-37,-67],[29,-264],[41,-106],[13,-65],[13,-62],[9,-42],[6,-182],[0,-76],[24,-106],[164,-236],[21,-120],[6,-34],[5,-30],[-24,-153],[-3,-41],[2,-61],[31,-69],[26,-47],[18,-39],[8,-84],[78,-13],[-54,-15],[89,-251],[51,-84],[76,-22],[-56,-27],[5,-105],[5,-167],[32,-132],[21,-74],[15,-55],[16,-67],[26,-69],[6,-36],[29,-76],[20,-53],[-6,-47],[22,-64],[14,-28],[5,-39],[1,-4],[16,-82],[43,-71],[-1,-37],[26,-64],[41,-42],[18,-30],[-12,-54],[34,-82],[20,-65],[36,-93],[44,-58],[26,-16],[0,-1],[-2,-44],[14,-41],[15,-58],[30,-73],[13,-44],[12,-37],[21,-52],[9,-60],[31,-51],[23,-33],[23,-97],[14,-28],[30,-40],[14,-32],[62,-155],[114,-284],[26,-61],[24,-74],[-4,-66],[20,-42],[29,-53],[24,-46],[6,-23],[14,-48],[9,-47],[29,-27],[6,-38],[15,-50],[12,-37],[28,-75],[-6,-29],[-3,-49],[41,-49],[-5,-59],[32,-41],[7,-33],[31,-19],[6,-61],[10,-44],[23,-30],[12,-67],[23,-36],[9,-14],[-6,-50],[12,-41],[16,-43],[11,-40],[37,-63],[23,-37],[11,-26],[107,-244],[19,-31],[17,-76],[9,-54],[24,-57],[39,-37],[7,-36],[4,-40],[15,-27],[18,-32],[19,-31],[23,-62],[60,-104],[1,-1],[19,-55],[-11,-34],[11,-35],[27,-39],[7,-44],[7,-42],[12,-33],[13,-30],[18,-47],[56,-117],[14,-39],[50,-129],[24,-41],[32,-55],[14,-23],[20,-9],[13,-6],[10,-47],[4,-51],[20,-86],[53,-78],[19,-30],[40,-124],[41,-132],[53,-45],[18,-33],[-28,-15],[1,-39],[24,-35],[15,55],[38,-84],[13,-81],[14,-39],[20,-41],[41,-47],[30,-26],[1,-68],[7,-42],[25,-54],[37,-63],[17,-37],[2,-4],[15,-33],[12,-32],[13,-38],[27,-63],[38,-53],[32,-61],[1,-46],[12,-28],[18,-25],[36,-41],[11,-61],[16,-30],[8,-23],[23,-41],[16,-50],[28,-67],[77,-184],[5,-58],[13,-24],[37,-50],[-10,-22],[24,-12],[14,-56],[27,-42],[7,-16],[11,-27],[30,-28],[10,-67],[37,-89],[21,-50],[192,-458],[22,-54],[23,-54],[48,-115],[16,-90],[-1,-33],[-5,-3],[-21,-14],[-34,-24],[-4,-31],[-4,-33],[-7,-40],[-13,-34],[-3,-39],[-15,-36],[-2,-6],[-28,-5],[-19,-27],[-14,-39],[18,-12],[13,17],[24,-3]],[[93839,51118],[-28,-34],[-7,-9],[-38,-46],[-26,-12],[-23,-92],[-19,0],[-37,0],[-365,1],[-89,1],[-89,0],[-22,0],[-55,1],[-93,0],[-50,0],[-92,0],[-378,2],[-219,1],[-13,1],[-432,4],[-209,1],[-114,1],[-109,-1],[-232,2],[-1,0],[-145,0],[-284,1],[-22,0],[-3,0],[-93,3],[-225,7],[-43,-8],[-64,0],[-451,-2],[-30,0],[-8,0],[-90,-1],[-53,0],[-59,-1],[-112,0],[-104,-3],[-112,1],[-216,-4]],[[88985,50932],[0,25],[0,84],[-1,45],[0,46],[0,25],[-2,223],[0,55],[0,50],[-2,262],[0,23],[-3,844],[-1,109],[2,107],[0,30],[-1,24],[-1,90],[-1,86],[-3,30],[1,34],[3,61],[0,27],[-2,16],[-3,103],[3,17],[-2,53],[0,96],[0,28],[-1,37],[1,92],[0,18],[0,5],[2,182],[2,418],[1,143],[0,20],[0,115],[2,58],[1,64],[0,192],[0,113],[67,0],[17,0],[1,113],[0,7],[2,99],[0,21],[3,209],[1,73],[-3,102],[0,48],[1,115],[1,76],[1,150],[1,112],[1,102],[0,23],[0,82],[1,105],[0,57],[1,23],[1,173],[1,119],[0,18],[0,18],[0,40],[0,37],[1,60],[0,14],[0,24],[2,337],[1,22],[0,2],[0,25],[0,11],[0,79],[2,51],[0,7],[1,31],[-1,51],[-1,42],[-1,79],[-1,117],[-2,123],[-1,30],[-1,78],[-3,166],[-2,84],[-3,164],[0,18],[-2,221],[-1,64],[1,81],[-1,78],[0,2],[-1,71]],[[89064,59036],[-16,14],[-29,25],[-1,1],[-1,0],[-29,19],[-35,51],[-9,32],[-6,27],[-17,39],[-2,5],[-1,18],[5,21],[10,38],[2,10],[1,43],[0,4],[1,38],[-30,4],[-2,0],[-29,2],[-28,2],[-7,0],[-14,1],[-10,31],[5,6],[23,30],[0,1],[1,2],[-1,30],[-1,11],[-5,8],[-71,64],[-8,5],[-6,1],[-5,1],[-18,2],[-1,6],[-1,4],[3,14],[2,5],[1,5],[-1,5],[-11,44],[-9,34],[21,12],[4,3],[3,3],[1,2],[1,5],[3,22],[6,11],[4,-1],[17,-11],[2,0],[2,6],[1,5],[1,11],[0,1],[-1,10],[-10,63],[-2,7],[-4,8],[-10,17],[3,5],[2,2],[10,11],[10,16],[22,9],[-2,19],[-16,4],[-7,14],[-1,21],[-40,33],[-4,15],[-4,30],[-33,5],[-10,17],[-5,18],[-15,5],[-16,6],[-5,-17],[-17,5],[5,18],[4,16],[-3,40],[-15,7],[7,19],[-22,8],[-7,14],[25,13],[-2,16],[-12,21],[-14,25],[-11,9],[-9,3],[-10,26],[19,0],[7,14],[12,11],[17,7],[-8,13],[12,13],[14,-10],[9,13],[3,16],[6,33],[11,13],[-10,16],[2,18],[16,12],[20,4],[10,18],[-22,48],[-35,29],[-20,9],[-14,19],[0,4],[-1,22],[-11,11],[3,29],[17,3],[19,12],[12,3],[1,2],[1,2],[7,23],[4,55],[8,10],[0,8],[-3,3],[-16,3],[-4,5],[-2,16],[0,1],[2,6],[0,1],[5,3],[15,9],[34,7],[-4,-18],[14,-2],[32,31],[11,13],[16,-11],[15,9],[16,0],[17,4],[8,-20],[17,13],[15,9],[15,8],[24,-3],[-3,-16],[14,2],[12,10],[14,16],[21,-4],[1,18],[-13,18],[-13,21],[-11,20],[-5,18],[4,15],[7,17],[-6,19],[7,14],[-4,15],[-14,11],[-10,14],[-1,23],[-6,8],[2,4],[-16,8],[-9,2]],[[88868,61186],[-1,0],[1,0]],[[88868,61186],[7,23],[9,4],[10,5],[7,4],[-9,5],[-8,6],[-8,5],[-69,26],[-4,1],[-10,34],[2,5],[5,25],[2,8],[10,-1],[3,-1],[17,15],[7,45],[-3,4],[-13,47],[-20,3],[-20,29],[0,7],[1,4],[-9,33],[-2,8],[-44,32],[-6,3],[-11,6],[-5,1],[-11,3],[-6,1],[-2,0],[-11,0],[-8,0],[-4,-3],[-5,-2],[-6,-4],[-10,-17],[-15,-12],[0,-1],[-2,0],[-17,1],[-19,2],[-59,12],[-15,4],[-5,1],[-20,5],[-3,5],[-8,33],[3,19],[6,5],[9,8],[4,13],[-1,6],[-5,13],[-13,34],[-1,2],[-6,9],[-10,6],[-11,7],[-6,3],[-4,1],[-3,1],[-12,-6],[-23,-10],[-18,18],[-30,11],[-13,3],[-25,14],[-22,27],[1,5],[3,10],[1,18],[0,2],[-6,15],[-17,44],[-9,14],[-9,5],[-3,0],[-4,1],[-17,3],[-15,-6],[-3,-1],[-91,13],[-12,2],[-51,18],[-4,1],[-2,1],[-7,9],[2,92],[15,9],[33,-2],[29,-16],[13,9],[10,18],[-8,16],[-5,10],[-12,9],[-4,17],[0,23],[13,24],[-1,22],[9,20],[-10,13],[-7,17],[0,18],[11,11],[19,11],[-10,18],[-9,15],[-9,18],[16,1],[13,10],[-2,28],[20,11],[-3,16],[-14,10],[-12,10],[1,19],[-15,2],[-8,15],[-6,18],[-12,25],[-14,18],[-20,-2],[-5,16],[-15,2],[-6,15],[-7,15],[12,11],[-8,14],[-6,31],[-15,3],[-9,22],[-15,9],[-12,8],[-1,25],[-17,4],[10,20],[-14,9],[-15,5],[8,20],[-1,24],[17,-15],[-3,17],[7,15],[7,16],[9,16],[-14,15],[7,14],[13,5],[-6,15],[-23,16],[-14,10],[-12,8],[8,18],[-21,9],[-10,12],[1,25],[-17,-10],[-17,0],[-13,10],[2,21],[9,26],[5,17],[-15,5],[-16,-5],[-2,0],[-18,-5],[-18,-8],[1,-17],[-13,-4],[-19,11],[-8,18],[-7,20],[-5,1],[-10,3],[-19,0],[-4,-2],[-20,-10],[-38,12],[-13,11],[-1,19],[-53,56],[-22,-34],[-4,-4],[-1,-1],[-4,-3],[-4,0],[-7,-4],[-19,15],[-18,0],[-22,12],[-11,12],[-16,3],[-13,-8],[1,16],[-23,12],[-16,-3],[-12,13]],[[90050,65885],[14,-34],[27,-43],[16,-34],[52,-99],[42,-85],[21,-38],[40,-68],[19,-39],[48,-87],[45,-64],[24,-36],[28,-39],[21,-34],[47,-54],[35,-38],[2,-4],[21,-38],[21,-32],[33,-44],[43,-52],[42,-54],[28,-32],[20,-30],[30,-34],[20,-12],[27,-38],[26,-29],[74,-68],[17,-38],[31,-45],[47,-72],[21,-27],[26,-31],[2,-2],[16,-19],[10,-13],[50,-45],[3,-2],[17,-17],[49,-45],[49,-49],[35,-41],[64,-92],[21,-32],[36,-35],[42,-1],[69,-37],[40,-58],[32,-34],[43,-9],[17,-4],[1,4],[10,29],[38,27],[45,-7],[33,-21],[50,-24],[76,-81],[44,-7],[33,33],[3,17],[4,26],[-34,60],[-4,14],[-7,23],[-33,-8],[2,25],[1,18],[-26,-9],[-40,6],[7,-37],[-37,8],[-32,6],[-32,33],[-16,27],[24,11],[8,3],[6,2],[23,7],[43,11],[28,22],[-6,38],[-31,9],[-19,-8],[-7,-2],[2,74],[-17,18],[-2,9],[-5,26],[-59,3],[11,12],[23,9],[-13,40],[-25,29],[-23,29],[-11,29],[-88,109],[-22,65],[-106,119],[-39,22],[-26,15],[-30,38],[2,36],[-6,18],[-24,-29],[-52,-8],[-19,4],[-8,59],[-5,51],[14,54],[-25,77],[-26,28],[-62,84],[-17,36],[-20,42],[-22,26],[-17,26],[-16,-32],[-10,-21],[-11,9],[0,30],[-27,-6],[-22,-32],[-1,68],[34,19],[-11,27],[-17,9],[-14,14],[-8,23],[-20,4],[-5,-18],[2,-18],[-13,-32],[-18,19],[4,-28],[-3,-31],[-35,5],[25,46],[-22,10],[4,33],[43,28],[11,33],[21,40],[-30,-15],[-4,-39],[-14,-12],[-28,-16],[-16,-15],[-10,30],[-13,29],[-13,-3],[5,-36],[0,-24],[9,-28],[-39,-5],[-4,30],[-26,22],[-38,33],[-26,32],[22,40],[37,20],[43,-12],[29,-31],[15,-19],[-1,36],[-43,43],[-5,36],[10,10],[20,-9],[-3,18],[22,8],[6,-24],[22,-10],[-7,41],[-15,23],[-25,-1],[-47,-10],[-16,3],[15,50],[-4,64],[-31,-6],[-6,-25],[-29,8],[-27,-4],[6,60],[-40,77],[2,36]],[[90775,65887],[47,-76],[84,-141],[102,-164],[97,-170],[165,-260],[104,-161],[150,-215],[71,-99],[84,-125],[72,-107],[71,-108],[91,-140],[100,-158],[88,-156],[22,-33],[86,-135],[104,-185],[150,-207],[155,-203],[115,-158],[109,-146],[31,-70],[15,-91],[38,-98],[31,-221],[33,-187],[22,-73],[40,-150],[44,-161],[51,-128],[97,-197],[93,-213],[102,-221],[66,-163],[16,-55],[-27,-78],[-35,-41],[-13,-5],[-74,-11],[-75,-13],[-77,-44],[-16,-7],[-44,-40],[-79,-24],[-20,-15],[-78,-64],[-60,-55],[-95,-106],[-73,-117],[-22,-73],[-97,8],[-38,75],[9,52],[-42,0],[-11,-23],[0,-57],[40,-55],[-117,5],[-34,16],[-4,36],[-66,-2],[-7,-50],[-97,3],[-36,21],[5,39],[-29,10],[5,27],[0,3],[56,31],[82,-5],[49,-9],[81,19],[-4,70],[12,123],[31,114],[11,77],[4,26],[40,80],[-10,65],[-21,24],[-30,34],[39,104],[61,113],[29,80],[31,94],[-1,19],[32,104],[4,49],[0,1],[19,78],[9,211],[32,35],[26,98],[30,115],[9,55],[-3,127],[-4,42],[-16,75],[-14,9],[-16,76],[-16,13],[-21,-7],[-24,-14],[-8,-19],[-14,-33],[-16,-41],[-10,-90],[-44,-148],[-9,0],[-42,-2],[-9,-24],[-5,-20],[14,-4],[27,26],[10,1],[14,1],[20,-25],[-15,-32],[-19,-60],[-18,-15],[-58,-12],[-29,39],[0,34],[5,55],[2,54],[106,16],[13,61],[0,63],[18,84],[-20,17],[8,41],[23,25],[1,18],[0,2],[-32,6],[-3,16],[35,69],[10,13],[12,110],[-4,33],[-7,52],[-62,4],[-8,22],[-30,-10],[-16,-19],[-4,-28],[-1,-10],[-41,-28],[-28,5],[-13,20],[-17,24],[-4,20],[3,11],[6,18],[0,18],[0,29],[0,33],[-11,43],[-1,13],[-3,58],[-5,5],[-10,10],[9,10],[3,4],[21,-26],[31,-36],[10,-13],[22,-22],[13,13],[0,6],[-1,14],[-5,18],[-2,5],[-8,15],[-13,35],[24,22],[6,15],[15,12],[2,14],[1,5],[38,2],[4,40],[-17,1],[-12,1],[-10,7],[-9,6],[1,57],[0,1],[1,19],[-17,1],[-26,-31],[-19,-27],[-30,-30],[-24,-12],[-7,-20],[0,-37],[11,-17],[1,-20],[-48,30],[-3,27],[-28,6],[-111,-65],[5,-32],[46,-58],[31,-59],[22,-19],[32,0],[0,57],[-19,9],[-7,28],[31,1],[14,-15],[-10,-12],[24,-9],[12,-28],[-21,-17],[-9,-23],[21,-35],[8,-17],[-1,-65],[3,-63],[4,-62],[-8,-23],[-3,-54],[-8,-39],[-8,-70],[-25,-63],[17,-31],[18,-6],[-16,-54],[-33,-17],[16,53],[-6,10],[-23,-44],[-16,-43],[6,-66],[-80,-173],[-47,-90],[-33,-65],[-44,-80],[-72,-118],[-26,-59],[-39,-110],[-93,-239],[-80,-275],[-62,-197],[-28,-102],[-56,-499],[2,-26],[47,7],[-3,-15],[-5,-17],[-37,-40],[-46,-160],[32,-16],[-2,-67],[-8,-107],[6,-162],[18,-99],[18,-5],[11,-65],[1,-8],[-10,-48],[2,-30],[8,-68],[11,-215],[7,-93],[22,-41],[-24,-25],[7,-84],[15,-71],[9,-55],[-4,-53],[-16,-47],[-19,72],[-4,81],[-9,37],[-19,35],[-13,44],[6,49],[-12,45],[-4,50],[-14,52],[-15,29],[3,49],[-4,49],[-17,25],[-6,53],[-8,41],[3,61],[-7,19],[-4,46],[-2,19],[-9,40],[-40,27],[-25,42],[16,13],[15,71],[-4,-2],[-36,-15],[-2,-26],[-28,-19],[-16,38],[-25,22],[-6,3],[-35,14],[-41,64],[-14,38],[2,25],[1,5],[-1,1],[-5,1],[-17,7],[-22,-13],[1,-34],[27,-35],[19,-50],[-17,-53],[53,-3],[21,-17],[-32,-29],[0,-28],[8,-37],[31,-11],[15,-51],[1,-10],[8,-58],[-9,-43],[-13,-55],[-17,-57],[6,-17],[12,-32],[12,-34],[15,-42],[0,-45],[31,-92],[12,-53],[4,-26],[11,-40],[22,-50],[19,-112],[15,-49],[0,-44],[-12,-32],[2,-25],[54,-147],[16,-42],[22,-118],[16,-49],[22,-70],[14,-67],[7,-77],[43,-139],[15,-57],[16,-40],[50,-133],[14,-40],[41,-114],[21,-59],[34,-77],[42,-75],[27,-51],[13,-35],[0,-2],[25,-52],[15,-53],[26,-54],[13,-36],[26,-50],[18,-30],[30,-50],[25,-42],[7,-38],[22,-30],[-2,-21],[12,-36],[4,-25],[13,-23],[24,-20],[-9,-18],[17,-38],[20,-59],[-74,143],[-12,30],[-29,38],[-29,76],[-29,70],[-148,305],[-3,6],[-27,63],[-17,55],[-35,41],[-22,68],[-19,40],[-24,30],[-46,109],[-47,112],[-88,205],[-54,170],[-19,17],[3,34],[32,-15],[19,19],[11,37],[-19,21],[-6,43],[-59,51],[-30,11],[-10,16],[-8,34],[-108,344],[-6,17],[-110,349],[-41,56],[-40,37],[-27,58],[-28,37],[-3,38],[-7,41],[-11,54],[-24,92],[-17,17],[-18,17],[9,55],[-28,76],[-21,57],[-15,66],[-15,36],[-13,35],[-28,104],[-22,164],[18,139],[1,7],[-16,32],[-6,32],[-5,39],[-8,45],[-12,43],[-6,55],[-10,52],[-5,51],[-3,42],[-1,42],[-3,34],[2,25],[-4,65],[10,51],[5,33],[22,31],[10,41],[1,65],[11,36],[0,39],[-11,30],[-5,34],[8,48],[-6,35],[-6,33],[-2,2],[-32,35],[-37,24],[-8,4],[-11,23],[-15,31],[-14,34],[-8,17],[-17,27],[-4,24],[-3,18],[-4,49],[-3,28],[4,38],[2,24],[2,8],[10,34],[13,53],[15,26],[25,26],[-11,18],[-10,20],[15,51],[11,36],[-3,23],[-3,21],[-5,14],[-7,22],[1,43],[-11,29],[-5,15],[-3,1],[-11,4],[3,11],[5,19],[12,51],[18,113],[7,41],[33,111],[36,91],[10,32],[3,3],[16,16],[0,43],[22,0],[39,2],[28,9],[1,0],[21,-8],[49,-19],[4,-48],[-7,-28],[-2,-11],[-6,-81],[-4,-20],[-3,-14],[19,2],[17,44],[0,66],[6,23],[6,21],[-10,56],[-43,30],[15,14],[35,-5],[15,-1],[22,-3],[-5,17],[-1,3],[-38,26],[-31,-7],[-12,15],[8,63],[-15,30],[-5,10],[11,17],[8,4],[31,14],[5,21],[-8,49],[5,8],[7,16],[19,33],[-48,29],[-50,0],[-1,-1],[-6,-44],[32,-32],[0,-50],[-27,-47],[-7,2],[-8,2],[-19,-13],[13,-6],[6,-4],[18,-11],[3,-22],[-15,-41],[-14,-35],[-15,-3],[2,9],[5,19],[7,22],[-14,-4],[-12,-27],[4,-40],[-21,-30],[-13,16],[5,28],[7,41],[3,80],[2,51],[-28,30],[-4,52],[-31,139],[112,-39],[67,-28],[99,-4],[157,18],[84,-48],[40,-23],[22,8],[30,10],[39,60],[51,-14],[97,7],[9,5],[3,2],[34,19],[29,16],[27,78],[-39,57],[-36,81],[33,29],[42,-7],[110,12],[24,32],[95,34],[0,-66],[-44,0],[-7,-23],[43,-53],[57,-113],[27,3],[-27,85],[18,25],[24,-74],[67,14],[-28,56],[31,22],[44,-55],[21,43],[-29,51],[-51,49],[-84,43],[-103,85],[-109,-103],[-114,60],[12,70],[-36,100],[-22,-3],[29,-94],[-12,-73],[-20,0],[-42,-21],[-72,-81],[33,-86],[60,-35],[48,-78],[-22,-43],[-2,-3],[-45,11],[-15,3],[-85,7],[-111,-74],[-70,25],[-63,53],[-110,-20],[-50,-9],[-70,15],[-114,56],[-110,26],[-39,88],[-45,96],[-98,-38],[-98,-77],[-289,135],[-1,25],[-14,12],[-27,-10],[-70,53],[-2,40],[2,8],[6,27],[8,23],[3,8],[1,39],[-3,12],[-2,10],[-29,-25],[-6,-31],[-2,-14],[1,-60],[-11,-12],[-54,41],[-10,28],[-19,23],[32,42],[2,15],[2,17],[26,16],[14,37],[8,0],[39,1],[28,25],[-20,17],[50,30],[35,38],[22,25],[-37,53],[-2,2],[-37,-14],[-70,-73],[-11,-12],[-86,-88],[-4,-19],[1,-22],[1,-25],[13,-19],[-7,-13],[-18,-13],[-2,71],[0,10],[0,10],[-1,5],[0,11],[-1,41],[7,29],[1,5],[16,21],[3,3],[43,5],[4,9],[4,8],[-27,0],[-43,-5],[-9,41],[0,14],[1,26],[93,-24],[-6,20],[-5,14],[21,57],[-23,17],[-10,7],[-27,0],[-11,15],[-3,4],[46,51],[-3,24],[-15,-18],[-7,-7],[-16,-16],[-14,6],[2,15],[1,14],[6,66],[16,19],[0,33],[12,12],[15,15],[0,31],[6,28],[21,-3],[25,32],[10,14],[-6,25],[-12,-9],[-22,-18],[-21,-14],[-24,-8],[-2,25],[-11,17],[7,28],[-4,0],[-26,-3],[-26,47],[-10,17],[11,51],[1,6],[-16,19],[2,20],[1,7],[20,37],[8,21],[11,30],[33,9],[17,4],[7,2],[26,0],[30,0],[16,-2],[21,0],[24,-2],[38,23],[31,0],[64,29],[-6,-34],[-15,-27],[21,-37],[22,5],[2,25],[-15,48],[18,46],[-13,41],[-33,15],[46,57],[29,17],[28,18],[3,-6],[7,-16],[2,0],[47,-10],[46,1],[53,17],[1,1],[62,21],[-13,-12],[-7,-6],[-24,-28],[9,-13],[7,-9],[8,3],[26,10],[19,5],[20,9],[12,14],[2,3],[-9,7],[-7,6],[10,15],[31,-8],[8,-2],[8,-13],[16,-25],[5,2],[0,1],[14,8],[-20,42],[-34,15],[-18,23],[-22,16],[-6,34],[-28,16],[-7,-24],[-15,-37],[14,-7],[28,1],[4,-17],[-23,0],[-40,-13],[-56,-20],[-3,17],[0,24],[34,64],[-21,129],[-50,68],[-46,52],[1,-22],[17,-42],[-32,27],[-35,41],[-31,27],[-35,6],[-12,3],[25,44],[-12,41],[-34,35],[-27,33],[-13,41],[-28,33],[-25,-33],[-22,83],[-35,35],[-24,6],[-54,12],[-68,3],[-21,28],[-5,6],[-10,13],[-5,6],[-3,3],[-17,17],[-15,10],[-3,25],[-1,2],[-6,1],[-4,1],[-28,6],[-41,-12],[-20,27],[-50,-24],[-17,-7],[-26,4],[16,13],[19,17],[20,28],[11,16],[30,24],[25,23],[37,31],[-2,2],[-4,3],[-19,19],[-13,14],[-50,13],[-6,6],[-6,7],[-91,71],[-88,95],[-54,13],[-25,10],[-2,11],[-3,13],[-64,43],[-12,-7],[-17,-9],[10,-27],[-1,-41],[-1,-7],[-8,-4],[-6,-3],[0,31],[-24,35],[-14,22],[-51,22]],[[89064,59036],[-114,3],[-3,0],[-69,0],[-1,0],[-135,-1],[-20,1],[-435,2],[-45,-2],[-2,0],[-43,0],[-2,0],[-117,0],[-13,0],[-10,0],[-13,2],[-18,0],[-94,-2],[-47,1],[-116,3],[-436,9],[-67,1],[-308,-14],[-838,7],[-105,0],[-71,0],[-192,1],[-136,0],[-40,0],[-34,0],[-218,0],[-61,0],[-136,0],[-92,0],[-42,0],[-168,0],[-281,-1],[-167,0],[-163,0],[-1,0],[-13,0],[-25,0],[-58,0],[-13,0],[-73,0],[-53,0],[-39,-2],[-73,0],[-17,0],[-54,0],[-51,0],[-20,0],[-155,0],[-41,0],[-125,0],[-28,0],[-80,-1],[-14,1],[-40,-1],[-50,0],[-47,0],[-63,1],[-19,0],[-4,0],[-26,0],[-63,0],[-41,0],[-63,0],[-109,0],[-23,0],[-72,0],[-146,-1],[-34,0],[-147,0],[-108,0],[-2,0],[-58,0],[-13,0],[-44,-2],[-20,0],[-139,2],[-2,0],[-150,0],[-90,0],[-24,0],[-29,0],[-137,1],[-24,0],[-105,0],[-14,0],[-130,3],[-3,-14],[-393,-3],[-21,0],[-49,1],[-89,1],[-126,2],[-73,1],[-91,0],[-127,0],[-23,0],[-28,0],[-43,0],[-63,0],[-75,0],[-18,0],[-155,0],[-18,0],[-26,0],[-16,0],[-123,-2],[-36,0],[-33,0],[-5,0],[-117,0],[-175,-1],[-46,0],[-19,0],[-92,-2],[-57,-1],[-38,0],[-21,0],[-111,-2],[-54,-1],[-21,0],[-31,-1],[-23,-1],[-60,0],[-18,0],[-86,-2],[-16,6],[-7,3]],[[73382,61057],[-74,1],[-96,0],[-405,2],[-170,-2],[-10,0],[-57,0],[-38,1],[-64,0],[-205,-1],[-53,0],[-32,0],[-15,0],[-63,0],[-27,0],[-91,0],[-14,0],[-7,0],[-18,0],[-33,0],[-51,0],[-31,1],[-26,0],[-37,0],[-149,-1],[-82,1],[-1,0],[-39,0],[-14,0],[-15,0],[-41,-1],[-101,-1],[-37,0],[-40,0],[-31,-1],[-94,1],[-32,0],[-20,0],[-126,2],[-29,0],[-29,0],[-61,1],[-29,-1],[-20,0],[0,-29],[1,-198],[0,-109],[0,-297],[0,-41],[-217,-1],[-148,0],[-16,0],[-20,0],[-20,0],[-18,0],[-210,0],[-33,0],[-30,0],[-70,0],[-31,-1],[-66,2],[-76,-1],[-13,-1],[-180,-3],[-42,-1],[-43,0],[-15,-1],[-93,-1],[-202,-4],[-53,-1],[-120,2],[-243,-2],[-99,-1],[-201,-1],[-199,-2],[-103,-1],[-63,-1],[-17,0],[-45,0],[-7,0],[-13,1],[-35,1],[-4,0],[-19,-1],[-15,1],[-27,0],[-16,-1],[-19,1],[-37,0],[-70,-1],[-29,0],[-19,0],[-39,0],[-10,0],[-25,0],[-44,-1],[-84,-1],[-42,0],[-26,0],[-15,0],[-52,0],[-29,1],[-36,0],[-14,0],[-18,0],[-45,0],[-27,1],[-21,0],[-64,1],[-28,-1],[-54,0],[-16,2],[-63,-2],[-65,1],[-37,0],[-37,0],[-23,0],[-14,0],[-22,1],[-26,0],[-37,0],[-72,1],[-24,-1],[-17,0],[-18,0],[-46,0],[-101,0],[-16,1],[-14,-1],[-14,1],[-45,0],[-21,0],[-24,0],[-20,0],[-18,0],[-15,0],[-17,0],[-35,0],[-17,0],[-29,0],[-18,0],[-19,0],[-23,1],[-22,0],[-45,-2],[-15,0],[-14,0],[-19,0],[-17,0],[-14,-1],[-14,0],[-31,0],[-39,0],[-28,-1],[-30,-1],[-38,0],[-28,0],[-25,-1],[-16,0],[-22,0],[-16,0],[-21,0],[-2,0],[-104,2],[-87,-1],[-33,0],[-17,0],[-17,0],[-159,-1]],[[65271,60365],[2,39],[1,29],[2,13],[8,38],[34,-13],[5,33],[-10,19],[-9,17],[4,49],[47,29],[-8,21],[-1,4],[6,30],[1,5],[-23,31],[-9,24],[-8,21],[-8,1],[-32,6],[-10,-37],[-17,13],[-13,10],[-1,16],[-3,32],[-18,-15],[-16,-13],[-27,-28],[-39,9],[4,8],[10,23],[18,19],[5,5],[-9,24],[-1,4],[-38,16],[42,16],[20,12],[41,0],[18,1],[25,19],[11,10],[15,16],[11,12],[20,51],[9,28],[0,1],[-15,43],[30,23],[14,11],[1,1],[10,44],[-8,42],[3,13],[3,16],[-1,2],[-17,32],[-19,27],[-7,30],[42,37],[-25,31],[-25,30],[-8,10],[-41,17],[24,26],[1,1],[35,40],[32,14],[4,22],[1,5],[-5,11],[-10,22],[30,9],[36,13],[28,-13],[-4,-42],[28,18],[18,39],[15,29],[-11,35],[-14,20],[-4,6],[-68,27],[-15,49],[-28,28],[-22,45],[25,12],[14,6],[3,0],[25,0],[23,-3],[25,-11],[2,-3],[22,-19],[15,11],[22,18],[13,3],[5,-3],[9,-5],[29,0],[9,-29],[25,28],[-17,16],[-39,3],[-3,6],[-21,35],[22,10],[18,-6],[30,3],[19,2],[13,0],[7,-7],[15,-14],[15,10],[12,8],[6,16],[-31,0],[-18,16],[-20,1],[-16,-9],[-15,-7],[-20,8],[-14,14],[-12,13],[31,48],[27,35],[13,43],[-16,24],[-6,8],[-5,-2],[-35,-9],[-19,-33],[-39,21],[17,31],[-32,18],[-13,37],[-38,-19],[-42,11],[2,39],[26,7],[19,-5],[11,-2],[21,18],[17,-9],[17,-21],[41,-23],[24,41],[3,38],[2,13],[7,53],[25,45],[10,43],[-6,6],[-15,18],[-19,23],[12,32],[2,5],[-13,0],[-31,0],[-13,-17],[-14,-17],[-36,-2],[17,57],[-10,42],[36,20],[4,3],[38,19],[38,52],[35,20],[16,33],[-7,12],[-12,18],[-45,17],[10,19],[3,5],[54,17],[-31,14],[-6,3],[6,23],[2,8],[-54,7],[-43,26],[-14,37],[-15,41],[6,66],[26,46],[-15,33],[-36,-47],[-25,-17],[-34,-8],[-23,13],[-7,5],[37,22],[20,34],[5,38],[32,-18],[7,3],[19,10],[-3,20],[-2,22],[13,30],[-1,26],[17,-3],[24,-6],[-4,20],[-3,15],[0,16],[-2,40],[-39,20],[-36,19],[-32,0],[-24,-5],[-13,-3],[15,39],[15,32],[4,9],[-58,12],[-3,0],[14,44],[6,19],[29,10],[18,-30],[11,15],[16,24],[-50,36],[-31,15],[-14,30],[-35,9],[29,40],[46,-25],[33,24],[-6,16],[-7,17],[9,28],[7,10],[21,29],[-34,-2],[-12,22],[-10,18],[-24,-24],[3,44],[12,28],[8,10],[19,18],[20,8],[-24,2],[11,15],[19,-6],[14,-11],[37,-2],[27,0],[25,-8],[2,13],[1,3],[-23,6],[-32,-2],[-14,10],[-1,0],[-36,17],[-19,0],[-7,-11],[-10,-14],[-24,-10],[-18,-5],[-5,-1],[3,32],[2,15],[5,27],[1,11],[44,14],[20,5],[28,-2],[10,21],[20,-5],[0,-20],[-30,-8],[-10,-16],[21,-5],[21,19],[9,-4],[11,-5],[21,0],[7,-12],[37,-12],[9,18],[-20,3],[-1,22],[-11,29],[-3,2],[-10,6],[-12,-6],[-8,-14],[0,-21],[-15,5],[4,21],[-15,22],[-13,7],[13,32],[31,7],[18,-7],[15,7],[16,-28],[21,8],[14,-10],[6,-4],[0,5],[-2,18],[-2,13],[-1,5],[-19,-13],[-6,10],[-7,13],[-32,9],[-17,-16],[-41,28],[12,22],[5,8],[38,37],[5,-26],[6,-30],[52,10],[45,15],[-32,10],[-9,3],[13,15],[18,20],[2,20],[1,21],[-8,-2],[-28,-6],[-4,35],[40,14],[30,5],[-2,40],[-2,17],[4,16],[6,30],[54,23],[29,17]],[[63018,56589],[-30,-4],[-10,17],[-14,25],[7,57],[21,-20],[23,-35],[1,-19],[2,-21]],[[63002,56323],[-42,-1]],[[62960,56322],[-21,49],[-17,214],[-10,170],[-12,153],[18,40],[67,34],[57,-24],[47,-24],[-77,-22],[-31,24],[-42,-24],[26,-33],[-24,-60],[2,-76],[-8,-41],[6,-117],[16,-76],[14,-38],[-16,-29],[18,-43],[37,-28],[-8,-48]],[[73373,58486],[0,-1],[0,-128],[0,-19],[0,-21],[-1,-66],[0,-30],[0,-16],[0,-25],[0,-83],[0,-69],[0,-30],[-1,-186],[0,-142],[-19,1],[-83,2],[-113,0],[-44,0],[-2,0],[-51,0],[-133,-1],[-158,-1],[-4,0],[-52,0],[0,-19],[0,-117],[0,-125],[0,-66],[0,-4],[0,-224],[1,-9],[4,-112],[0,-424],[-1,-20],[0,-119],[1,-110]],[[72717,56322],[-249,8],[-186,-7],[-59,-1],[-103,0],[-23,0],[-36,0],[-7,0],[-20,0],[-15,0],[-25,0],[-50,0],[-60,0],[-34,0],[-33,0],[-16,0],[-59,0],[-16,0],[-38,0],[-61,2],[-73,2],[-4,0],[-224,-1],[-5,0],[-89,0],[-127,-4],[-215,-2],[-66,0],[-60,0],[-49,0],[-22,0],[-126,0],[-226,0],[-22,0],[-26,0],[-159,0],[-27,0],[-37,-1],[-16,0],[-59,0],[-123,1],[-25,0],[-38,0],[-79,1],[-241,-3],[-33,-1],[-26,0],[-17,0],[-19,0],[-16,0],[-23,0],[-4,0],[-18,0],[-16,-1],[-20,-4],[-24,-8],[-26,-7],[-32,1],[-17,2],[-21,1],[-53,1],[-1,1],[-2,0],[-15,2],[-21,6],[-16,3],[-14,0],[-15,0],[-42,0],[-14,0],[-31,1],[-22,0],[-11,0],[-115,1],[-120,0],[-61,1],[-40,0],[-20,0],[-39,0],[-43,0],[-18,-1],[-35,-1],[-14,-1],[-14,3],[-21,3],[-29,1],[-19,0],[-46,2],[-25,1],[-58,0],[-72,0],[-35,1],[-55,1],[-1,0],[-27,0],[-15,0],[-26,0],[-14,0],[-23,1],[-61,0],[-1,0],[-17,1],[-21,0],[-19,0],[-22,2],[-16,1],[-30,1],[-48,0],[-49,2],[-23,0],[-32,1],[-36,1],[-24,-3],[-15,-1],[-15,0],[-15,0],[-173,7],[-251,2],[-3,0],[-28,0],[-58,0],[-173,1],[-61,0],[-36,0],[-22,0],[-40,0],[-56,0],[-70,1],[-35,0],[-20,0],[-14,0],[-47,1],[-40,2],[-15,1],[-24,0],[-21,0],[-32,0],[-68,1],[-241,2],[-21,-1],[-50,-1],[-328,1],[-19,-1]],[[65545,56347],[-196,1],[-40,0],[-40,0],[-14,0],[-16,0],[-162,-1],[-161,0],[-77,0],[-87,-1],[-41,0],[-48,-1],[-4,0],[-11,1],[-17,0],[-14,-1],[-14,0],[-18,1],[-65,-1],[-21,0],[-34,0],[-67,-1],[-28,-4],[-2,-1],[-46,0],[-14,0],[-54,0],[-18,4],[-2,0],[-27,0],[-55,-1],[-21,0],[-16,0],[-17,-1],[-17,0],[-20,0],[-18,0],[-31,0],[-79,0],[-40,0],[-23,0],[-17,0],[-27,0],[-25,1],[-20,-5]],[[63781,56337],[-38,24],[-29,46],[-45,25],[-26,41],[-43,40],[12,48],[29,23],[27,25],[36,4],[37,30],[21,20],[13,42],[32,60],[12,67],[4,26],[22,34],[29,6],[23,-3],[18,-30],[65,18],[32,47],[30,30],[15,24],[12,31],[14,25],[-29,29],[33,20],[17,34],[24,19],[18,21],[8,-37],[18,-36],[19,42],[4,40],[43,29],[-25,27],[-51,-7],[-44,29],[-20,-11],[-23,-3],[-23,20],[16,171],[52,-42],[38,6],[36,-6],[17,42],[26,34],[35,3],[29,-17],[7,-27],[19,9],[15,-9],[10,-14],[9,13],[-15,17],[-12,8],[-18,0],[6,26],[-15,-4],[-17,6],[-7,17],[-20,8],[-12,43],[-9,23],[5,27],[6,33],[37,27],[24,3],[17,-17],[13,-11],[17,-13],[2,16],[17,-8],[11,20],[-9,20],[-39,-2],[-25,43],[-2,35],[10,47],[8,63],[-2,43],[25,20],[24,-10],[26,-36],[26,18],[29,5],[26,4],[-28,26],[-28,6],[-25,36],[-38,30],[14,43],[29,-32],[37,14],[41,28],[-12,47],[19,25],[36,-14],[3,36],[42,18],[-3,8],[-3,8],[-3,9],[-52,10],[-5,-1],[-34,-7],[-17,33],[-5,18],[-8,26],[-6,17],[-3,8],[50,-3],[-1,-18],[-8,-24],[21,17],[-2,28],[10,14],[11,-8],[1,-1],[5,-14],[10,-14],[5,11],[12,28],[14,19],[9,12],[14,4],[31,1],[4,1],[14,5],[8,19],[2,4],[1,20],[-15,2],[-32,-11],[-23,0],[16,-13],[-15,-2],[-15,-6],[-17,-37],[-22,-15],[-8,13],[-13,0],[-24,-21],[-5,2],[-8,2],[-2,56],[-34,36],[20,39],[13,51],[31,0],[-14,34],[-24,21],[19,40],[1,17],[2,38],[5,31],[3,17],[18,45],[29,19],[3,6],[12,25],[24,41],[27,36],[11,16],[9,13],[34,51],[25,51],[9,18],[10,56],[45,13],[17,47],[-50,14],[-41,0],[-2,64],[9,39],[34,-23],[33,30],[17,29],[17,36],[30,30],[21,19],[24,17],[-57,16],[2,24],[46,5],[28,17],[20,26],[1,1],[2,3],[-43,21],[-27,22],[3,5],[19,23],[-1,15],[0,14],[-3,16],[-2,15],[-21,13],[-8,38],[9,37],[2,11],[3,16],[3,16],[-3,14],[-7,36],[12,33],[6,14],[5,11],[7,8],[16,16],[22,29],[12,16],[10,15],[9,3],[21,7],[31,10],[13,4],[9,0],[25,-2],[-3,23],[-1,11],[30,5],[4,-2],[20,-10],[16,37],[3,35],[1,10],[16,7],[13,5],[14,9],[19,11],[-20,7],[-15,5],[-43,-8],[-10,-5],[-26,-12],[-35,-8],[-42,-28],[-35,-1],[-20,10],[25,28],[21,7],[13,4],[14,32],[-9,22],[-26,15],[-5,2],[22,36],[30,15],[47,-19],[43,4],[4,1],[24,18],[15,29],[-2,9],[-8,32],[21,-3],[9,-2],[33,-1],[17,31],[3,7],[17,22],[0,37],[7,-8],[20,-22],[32,31]],[[78617,59031],[0,-3],[1,-49],[1,-31],[0,-33],[2,-181],[0,-28],[-4,-70],[0,-165],[0,-111],[0,-55],[1,-53],[1,-123],[0,-98],[0,-131],[-1,-110],[0,-116],[439,2],[21,0],[85,1],[3,0],[11,0],[69,0],[58,0],[73,1],[97,0],[64,-1],[20,0],[18,0],[46,-1],[158,0],[145,0],[35,-69],[5,-8],[17,-33],[22,-38],[6,-12],[2,-4],[19,-39],[60,-123],[79,-165],[46,-95],[152,-315],[-1,-203],[-1,-136],[0,-559],[55,0],[35,-1],[42,0],[189,0],[81,0],[205,-1],[64,0],[49,0],[161,4],[22,-1],[-1,-246],[0,-26],[0,-21],[-1,-138],[4,-140],[1,-264],[1,-53],[114,-2],[24,0],[377,-1],[26,0],[472,-1],[30,0],[4,0],[9,0],[32,-1],[273,-4],[72,-1],[-15,-12],[-7,-14],[-10,-15],[5,-19],[8,-14],[8,-21],[1,-17],[-1,-9],[0,-9],[0,-16],[4,-15],[5,-18],[-3,-14],[-1,-3],[1,-2],[4,-18],[1,-19],[-12,-12],[-13,-15],[-3,0],[-11,-1],[-10,7],[-4,0],[0,1],[-4,0],[-16,-7],[-15,-13],[-13,-1],[-8,0],[-9,1],[-13,5],[-4,1],[-48,16],[-1,0],[-44,0],[-18,-1],[-3,2],[0,-2],[-2,-9],[-3,-13],[-11,-81],[3,-4],[21,-35],[21,-30],[-1,-23],[-4,-85],[-4,-29],[8,-39],[9,-18],[0,-1],[0,-4],[0,-16],[0,-3],[-1,-34],[-8,-32],[-1,-3],[-3,-6],[-4,-6],[-25,-12],[-4,0],[-9,-6],[-5,-17],[-15,-8],[-14,-12],[-9,-9],[-4,-5],[-12,-9],[-12,-14],[-5,-16],[-19,-10],[-3,-1],[-14,-4],[-10,-13],[10,-16],[1,-8],[1,-7],[-4,-9],[-2,-6],[-3,-11],[-2,-7],[-1,-1],[-25,-30],[-4,-2],[-9,-6],[-3,-1],[-1,0],[-4,-1],[-5,-1],[-2,-18],[-11,-16],[8,-9],[3,-5],[11,-23],[2,-4],[13,-8],[15,-7],[5,-19],[-2,-3],[-4,-10],[-2,-4],[-1,0],[-14,-3],[-1,-17],[-6,-14],[-1,-2],[-4,2],[-13,7],[-16,10],[-13,-9],[-1,-1],[-1,1],[-10,11],[-7,20],[-10,19],[-10,12],[-16,14],[-17,4],[-1,0],[-15,11],[-12,7],[-14,12],[-19,2],[-4,65],[-3,6],[-8,12],[-1,15],[-5,20],[-6,13],[-1,1],[-17,11],[-17,6],[-19,0],[-19,-3],[-18,2],[-16,2],[-19,-1],[-7,-2],[-14,-3],[-15,6],[-8,7],[-7,6],[-9,12],[-14,12],[-7,15],[-8,16],[-12,12],[-1,1],[-6,6],[-5,4],[-13,12],[-13,10],[-14,9],[-14,8],[-14,6],[-13,3],[-3,1],[-34,2],[-16,2],[-19,29],[-15,-13],[-8,-1],[-9,0],[-20,-2],[-3,19],[0,2],[0,15],[-14,9],[-14,-4],[-15,5],[-2,1],[-2,4],[-8,13],[-7,12],[-3,5],[-7,17],[0,6],[-4,28],[-2,19],[0,1],[-4,20],[-2,19],[-7,18],[-4,8],[-4,9],[-9,12],[-3,5],[-14,20],[-6,8],[-5,7],[-12,9],[-5,4],[-13,7],[-23,2],[-13,1],[-15,-7],[-5,2],[-9,2],[-4,-6],[-5,-6],[-14,-5],[-15,-7],[-16,-8],[-15,5],[-16,6],[-13,3],[-13,-9],[-14,-6],[-7,-15],[-16,-11],[-13,-26],[-3,-17],[0,-8],[1,-8],[-7,-4],[-6,-3],[2,-13],[1,-6],[-9,-32],[2,-17],[0,-19],[0,-4],[1,-2],[3,-18],[7,-39],[-1,-17],[0,-3],[17,-6],[11,-6],[6,-3],[10,-11],[4,-3],[20,-25],[9,-12],[10,-12],[10,-14],[13,-7],[1,-1],[14,-10],[13,-8],[12,6],[7,1],[8,1],[8,4],[5,2],[2,0],[12,-1],[14,0],[16,6],[22,1],[12,-11],[13,-13],[11,-15],[5,-18],[7,-16],[6,-15],[1,-4],[8,-23],[7,-15],[3,-5],[10,-13],[12,-9],[9,-8],[5,-3],[11,-7],[14,-10],[2,-4],[16,-32],[11,-9],[10,-13],[8,-19],[6,-19],[8,-15],[3,-6],[6,-10],[5,-20],[1,-4],[3,-8],[4,-10],[10,-17],[8,-20],[4,-16],[3,-16],[4,-15],[9,-20],[8,-17],[1,-1],[1,-1],[10,-13],[14,-18],[5,-5],[8,-6],[14,-15],[17,-10],[3,3],[12,10],[-7,14],[7,4],[21,11],[18,1],[14,-1],[1,0],[15,1],[14,4],[18,8],[17,8],[26,6],[16,0],[20,2],[19,4],[15,4],[19,6],[17,5],[21,5],[13,4],[14,1],[15,-2],[21,-6],[9,-2],[6,-1],[1,-2],[11,-25],[7,-18],[6,-13],[2,-2],[0,-2],[10,-17],[37,-51],[5,-18],[7,-18],[8,-14],[1,-2],[27,-50],[-36,-14],[-11,-51],[9,-16],[13,-8],[16,5],[17,7],[12,-8],[-3,-37],[-1,-17],[3,-18],[0,-1],[1,0],[11,-5],[3,-1],[19,-8],[16,-5],[8,4],[6,3],[16,3],[14,-17],[10,-22],[0,-4],[0,-1],[0,-14],[25,-15],[17,-3],[1,-1],[194,-129],[12,-14],[2,-2],[1,-1],[10,-13],[6,-12],[3,-7],[2,-16],[-2,-22],[-1,-25],[-2,-26],[-9,-18],[11,-17],[15,5],[24,-16],[18,-4],[8,13],[18,-10],[19,-18],[33,-2],[18,-10],[7,-21],[0,-46],[-1,-6],[-1,-14],[-9,-29],[0,-2],[-13,-42],[-7,-16],[-7,16],[-20,6],[-13,3],[-14,11],[-24,4],[-17,-4],[-12,-15],[-5,-8],[-3,-7],[-1,-1],[-2,-19],[-1,0],[1,-1],[7,-19],[18,-13],[5,-3],[10,-5],[11,5],[3,1],[3,-5],[16,-30],[13,-19],[21,1],[2,0],[10,6],[11,6],[22,-16],[15,-11],[17,-9],[17,-9],[19,-7],[17,-7],[13,-7],[18,-5],[1,0],[3,-2],[26,-12],[58,-22],[16,-8],[17,-17],[21,-21],[37,-24],[16,-21],[10,-25],[1,-24],[-3,-54],[-23,-68],[-6,-32],[-6,-21],[0,-2],[-3,-19],[-4,-69],[1,-1],[6,-26],[15,-33],[42,-68],[17,-20],[15,-22],[1,-1],[7,-13],[10,-22],[12,-28],[1,-17],[3,-19],[9,-27],[1,-12],[1,-6],[-1,-2],[-7,-11],[-11,-22],[2,-8],[2,-9],[6,-18],[2,-21],[9,-24],[11,-26],[33,-45],[7,-16],[33,-46],[5,-18],[-19,18],[-14,19],[-12,15],[-17,25],[-22,-22],[-9,-23],[-4,-22],[-1,-6],[1,-1],[12,-16],[5,-17],[23,-5],[25,-2],[4,0],[22,5],[17,-14],[31,-21],[1,0],[23,-6],[33,-7],[12,0],[22,0],[4,0],[11,1],[61,1],[-6,-20],[-1,-1],[-9,-19],[-3,-30],[-4,-15],[-13,-6],[-20,6],[-7,-22],[20,1],[21,-16],[13,13],[60,-6],[21,-8],[23,-10],[22,2],[20,-17],[20,-11],[14,-6],[32,-5],[13,-4],[24,6],[16,-14],[15,-6],[12,-10],[26,6],[13,4],[11,22],[13,7],[17,8],[16,7],[13,-10],[12,-9],[-7,-21],[11,-21],[15,4],[9,16],[3,31],[15,5],[23,2],[15,-8],[11,-11],[17,-12],[11,8],[19,-2],[9,-3],[12,-5],[3,-3],[17,-16],[30,-21],[16,0],[14,-5],[19,-6],[14,-17],[2,-3],[17,-18],[20,-16],[12,-13],[8,-14],[24,-19],[9,-5],[21,-12],[26,-27],[15,-19],[14,-14],[19,-21],[12,-18],[-7,-14],[-4,-9],[-3,-7],[14,-26],[7,-23],[19,-5],[15,-8],[39,-20],[-10,-15],[-10,-15],[8,-13],[-10,-19],[10,-20],[10,-14],[17,-27],[8,-14],[15,-11],[5,-19],[4,1],[10,3],[0,-27],[11,-20],[9,-17],[7,-22],[4,-6],[8,-10],[4,-29],[7,-26],[-3,-9],[-2,-6],[3,-21],[2,-16],[11,1],[8,1],[9,-24],[7,-13],[6,-29],[7,-24],[12,-15],[17,-11],[15,-28],[16,-18],[20,-15],[12,-9],[-2,-9],[-1,-8],[0,-18],[7,-16],[22,-19],[0,-1],[5,-5],[11,-11],[7,-14],[-4,-9],[-2,-6],[-2,-4],[-5,-11],[-11,-13],[2,-15],[14,-18],[18,-11],[5,-3],[6,2],[1,0],[6,3],[10,14],[19,6],[9,-11],[0,-21],[-4,-15],[0,-19],[13,-6],[15,14],[12,-11],[-2,-25],[-9,-19],[-2,-18],[25,-12],[17,-8],[12,-10],[10,-31],[12,-12],[9,-19],[-17,-24],[-11,12],[-16,0],[-15,-2],[-5,-7],[-7,-9],[-6,-21],[-2,-2],[-7,-17],[3,-11],[2,-6],[0,-21],[21,-25],[10,-18],[11,-11],[-4,-28],[13,-30],[16,4],[9,20],[11,-2],[2,-1],[11,-11],[8,-17],[-1,-22],[-1,-2],[-15,0],[6,-10],[3,-4],[12,-3],[2,0],[9,-2],[16,-4],[13,11],[20,-4],[8,-25],[4,-29],[0,-21],[5,-21],[-4,-23],[-15,-5],[-4,-5],[-8,-12],[5,-8],[7,-11],[-19,2],[-15,-2],[-3,-16],[2,-22],[11,-11],[-12,-18],[2,-16],[4,-21],[11,-11],[-1,-19],[25,6],[11,-1],[8,-1],[6,3],[9,3],[18,-3],[12,-25],[0,-3],[3,-30],[5,-18],[11,-12],[7,0],[8,-1],[19,2],[26,1],[17,0],[13,-11],[1,-19],[14,12],[9,-17],[0,-23],[14,-18],[9,-15],[18,-20],[17,-15],[-7,-18],[6,-24],[1,-21],[-17,-10],[1,-20],[-14,-12],[-11,-14],[9,-32],[8,-15],[-17,0],[-12,-7],[19,-21],[14,-22],[-8,-31],[-6,-21],[-1,-5],[-4,-13],[9,-4],[3,-1],[5,-2],[12,-9],[-4,-17],[-4,-6],[-1,-2],[-2,-5],[9,-23],[5,-7],[1,-2],[4,-6],[-2,-3],[-2,-3],[-4,-7],[6,-5],[6,-4],[0,-1],[5,-28],[7,-16],[-4,0],[-11,2],[8,-20],[6,-25],[-3,-20],[7,-20],[2,-4],[5,-11],[-7,-11],[-4,-6],[0,-24],[2,-9],[6,-41],[11,-11],[3,21],[18,-4],[0,-21],[21,-17],[19,-31],[20,-26],[6,-4],[8,-4],[8,-5],[22,-20],[30,-8],[8,-25],[1,-24],[-5,-24],[-4,-21],[-8,-21],[1,-3],[12,-36],[1,-16],[-12,-40],[-11,10],[-13,-5],[-2,-1],[1,-2],[5,-14],[-11,-10],[-11,-13],[-4,-4],[-13,-17],[-19,2],[13,14],[-1,26],[-18,-5],[-8,0],[-7,1],[-10,-14],[-8,-14],[-13,-26]],[[85391,48165],[-81,0],[-50,0],[-248,5],[-59,0],[-14,1],[-197,5],[-28,1],[-15,-1],[-157,5],[-14,1],[-64,2],[-88,2],[-54,2],[-101,5],[-245,8],[-176,2],[-138,2],[-385,4],[-1,0],[-118,1],[-87,1],[-86,1],[-135,2],[-16,0],[-23,0],[-36,0],[-28,0],[-80,0],[-52,0],[-71,1],[-36,0],[-2,0],[-54,0],[-23,0],[-61,0],[-36,1],[-352,0],[-26,0],[-105,0],[-25,0],[-92,0],[-93,0],[-5,0],[-496,0],[-158,0],[-69,2],[-19,-1],[-19,0],[-12,0],[-29,-1],[-123,-1],[-21,0],[-39,-1],[-128,-1],[-27,0],[-26,1],[-57,0],[-23,0],[-49,0],[-5,0],[-42,0],[-18,0],[-15,0],[-20,0],[-100,0],[-22,1],[-23,0],[-28,-1],[-43,1],[-55,1],[-62,0],[-54,1]],[[79852,48217],[-223,-1],[-101,-1],[-60,0],[-49,0],[-43,-1],[-170,-2],[-49,-1],[-10,0],[-60,1],[-43,0],[-49,2],[-62,0],[-28,0],[-103,0],[-77,0],[-1,0],[-60,0],[-108,0],[-143,0],[-189,0],[-117,0],[-36,0],[-13,0],[-97,-2],[-78,0],[-91,0],[-107,-1],[-65,0],[-107,0],[-43,0],[-55,0],[-15,0],[-43,-1],[-46,0],[-16,0],[-102,-1],[-98,0],[-53,0],[-54,0],[-14,0],[-94,0],[-54,0],[-26,0],[-89,1],[-2,0],[-125,0],[-96,0],[-14,0],[-7,0],[-14,0],[-15,0],[-7,0],[-14,0],[-21,0],[-17,0],[-19,0],[-19,0],[-23,0],[-30,0],[-107,0],[-29,0],[-25,1],[-22,-1],[-32,2],[-108,0],[-38,0],[-69,0],[-58,-1],[-1,0],[-43,0],[-51,-1],[-68,2],[-103,-1],[-43,0],[-119,2],[-60,1],[-238,-1],[-293,-1],[-4,0],[-65,0],[-141,1],[-193,2],[-5,0],[-103,0],[-158,-2],[-104,1],[-31,-1],[-19,0],[-51,-1],[-322,1],[-151,0],[-40,0]],[[73394,48213],[0,2],[0,16],[-1,16],[0,30],[0,89],[0,134],[-1,29],[-1,43],[0,42],[-1,6],[0,14],[0,30],[-1,228],[0,158],[-1,64],[0,6],[1,55],[1,17],[0,39],[0,108],[0,59],[-1,52],[0,66],[0,101],[-1,201],[5,62],[8,88],[-3,96],[3,71],[3,69],[0,3],[0,4],[-2,30],[0,97],[-11,14],[-2,3],[1,23],[2,101],[1,43],[0,37],[1,29],[4,214],[1,29],[-1,534],[0,55],[0,9],[0,87],[-15,77],[0,40],[-1,19],[0,1],[1,26],[-1,78],[0,32],[-1,47],[0,38],[-2,17],[12,145],[-3,189],[-1,23],[0,7],[0,14],[-7,276],[0,9],[0,14],[0,17],[0,28],[0,23],[0,22],[0,32],[1,22],[0,31],[0,53],[0,111],[-1,38],[-2,95],[-1,22],[0,31],[0,46],[-1,77],[-1,66],[0,29],[-1,31],[-1,51],[0,17],[0,9],[1,95],[3,38],[0,16],[0,50],[-1,54],[0,35],[0,24],[0,62],[-1,135],[0,48],[1,71],[0,4],[0,19],[0,17],[0,11],[-2,65],[-1,26],[-1,19],[1,25],[0,8],[0,8],[0,20],[0,25],[-1,17],[-2,98],[0,43],[0,19],[0,19],[0,68],[-1,78],[0,48],[0,23],[-1,21],[0,22],[0,19],[0,23],[0,25],[0,32],[0,15],[-1,20],[0,31],[0,33],[0,48],[0,18],[0,34],[0,106],[-1,59],[-1,91],[0,48],[1,32],[0,37],[0,43],[0,18],[0,22],[0,25],[3,77],[0,217],[-1,193],[0,108],[0,11],[0,9],[1,158],[0,19],[-117,0],[-6,0],[-529,1]],[[88985,50932],[-77,1],[-16,1],[-74,-1],[6,-208],[0,-26],[2,-76],[3,-374],[0,-21],[-1,-31],[3,-216],[2,-39],[2,-60],[1,-64],[1,-38],[-1,-219],[72,1],[13,2],[-1,-53],[2,-223],[0,-31],[0,-2],[0,-36],[0,-7],[1,-176],[1,-78],[0,-36],[0,-65],[1,-57],[0,-20],[0,-19],[0,-26],[1,-182],[0,-44],[0,-9],[0,-13],[1,-53],[0,-20],[0,-53],[1,-64],[0,-18],[-1,-17],[2,-19],[0,-38],[-2,-31],[2,-24]],[[88929,48150],[-17,0],[-4,0],[-59,0],[-77,0],[-41,0],[-448,0],[-259,0],[-46,1],[-44,0],[-38,0],[-197,0],[-27,0],[-182,0],[-41,0],[-48,-1],[-137,-4],[-305,-1],[-53,1],[-508,3],[-1,0],[-36,2],[-223,2],[-518,9],[-38,1],[-105,1],[-8,0],[-6,0],[-46,0],[-26,1]],[[64683,48031],[2,-44],[17,-41],[10,-29],[-9,-23],[-12,2],[-21,3],[-7,44],[-25,70],[-39,-42],[-15,20],[35,46],[31,25],[21,17],[16,14],[-4,-62]],[[64380,48197],[39,-26],[24,0],[31,-1],[35,-11],[-17,-23],[-28,-17],[-19,-37],[2,-41],[10,-42],[7,-30],[6,-42],[-9,-35],[-1,-35],[26,3],[-6,-41],[29,1],[35,-5],[25,-6],[31,10],[26,25],[33,16],[36,20],[3,2],[38,21],[42,8],[26,24],[44,26],[35,48],[-8,-59],[-26,-45],[-29,-24],[-29,-15],[-38,-21],[-41,-26],[-49,-25],[-43,-18],[-31,-12],[-37,-16],[-28,-13],[-29,12],[-21,-45],[-26,-23],[-28,2],[-9,32],[8,40],[20,60],[-10,33],[-1,33],[-16,60],[-14,28],[7,36],[-14,47],[-21,38],[1,27],[-16,25],[-5,23],[30,34]],[[64708,48167],[-27,-32],[-3,10],[-10,44],[21,34],[7,11],[28,-21],[-16,-46]],[[65075,48496],[5,-40],[-28,-5],[-41,8],[-33,-3],[-30,-20],[-10,48],[1,65],[24,29],[49,12],[13,-20],[12,-19],[17,-27],[21,-28]],[[64639,48756],[9,-40],[-30,-14],[29,-31],[-30,-24],[-28,0],[-5,-34],[7,-45],[22,-49],[10,-29],[-56,-3],[-1,1],[-37,14],[-16,37],[-1,44],[11,64],[29,51],[-7,42],[-20,-41],[-25,37],[-1,66],[4,45],[10,49],[15,45],[33,12],[32,-5],[30,-14],[29,-14],[2,-1],[16,-54],[-29,-5],[13,-52],[-15,-52]],[[64810,49278],[-4,-5],[-24,-32],[-27,-2],[-4,-25],[0,-59],[-10,-30],[-27,-14],[-4,-2],[-60,-6],[-36,1],[-5,44],[-5,42],[1,8],[6,44],[48,-4],[27,12],[13,20],[19,-9],[23,20],[69,-3]],[[64810,49278],[39,20],[31,10],[30,13],[12,-22],[15,-28],[34,-45],[-53,-35],[-23,71],[-38,2],[-42,12],[-5,2]],[[64470,49324],[28,-34],[11,32],[24,-34],[11,-52],[-34,-22],[-43,15],[-39,24],[16,-48],[21,-12],[11,-7],[22,-24],[31,-10],[29,13],[8,-49],[-12,-45],[-28,-47],[-31,-29],[-28,-33],[-23,19],[-8,-47],[-3,-39],[-6,-52],[1,-37],[-15,-32],[-22,12],[4,37],[3,43],[2,35],[3,43],[3,59],[0,38],[-3,46],[-2,42],[-4,49],[-5,33],[-6,36],[-7,33],[-11,46],[-15,49],[-14,40],[-21,51],[-26,41],[-44,56],[-38,38],[-16,29],[-8,31],[-4,22],[-7,24],[-3,16],[-19,46],[-18,24],[-3,32],[-10,48],[-7,28],[-1,7],[3,30],[27,-5],[13,-40],[29,-43],[21,-39],[33,-53],[25,-21],[1,-1],[32,0],[4,-40],[-7,-46],[30,-51],[27,-35],[12,-63],[15,-54],[10,-41],[26,-22],[50,-3],[5,-57]],[[64319,50048],[14,-14],[-24,1],[-15,-4],[9,-15],[15,-7],[-17,-20],[-12,9],[13,-36],[-10,-17],[-20,34],[-15,-4],[22,-41],[0,-17],[-16,0],[-3,20],[-19,28],[-14,-16],[25,-31],[-2,-31],[14,-38],[36,16],[7,18],[12,-47],[16,0],[1,42],[21,-45],[4,-10],[-43,-15],[-14,-6],[-4,-26],[-42,23],[-20,88],[-17,47],[-26,-18],[-26,27],[11,48],[32,-6],[31,27],[36,-8],[2,24],[-3,18],[-22,-3],[-19,27],[-7,35],[0,35],[102,-3],[-5,-16],[-6,-46],[13,-14],[-15,-13]],[[64102,49970],[-22,-20],[-17,15],[-6,84],[6,48],[15,19],[43,26],[58,-17],[-31,-25],[32,-26],[-35,-40],[-27,-27],[13,-29],[-29,-8]],[[64055,50351],[20,-60],[27,-31],[-32,-14],[15,-36],[-35,-4],[-21,-21],[-33,47],[-31,-10],[35,-48],[-16,-30],[43,0],[28,-14],[-14,-27],[-6,-26],[-2,-59],[18,-59],[22,-16],[15,-42],[2,-7],[10,-44],[8,-36],[24,-58],[38,-55],[11,-43],[-36,20],[-30,40],[-22,41],[-25,64],[-19,64],[-27,55],[-13,40],[-16,52],[-29,43],[-41,38],[-40,42],[-29,33],[-30,45],[-16,40],[16,36],[1,2],[27,0],[27,14],[44,4],[28,-26],[13,40],[38,20],[53,-14]],[[63358,53916],[15,-50],[-1,-46],[-31,52],[-51,-36],[-6,38],[-11,25],[-23,-13],[-13,-48],[9,-80],[33,-51],[8,-35],[2,-10],[-3,-34],[-10,-64],[6,-35],[-6,-75],[-11,-123],[0,-5],[-30,-34],[4,-98],[52,-25],[27,2],[29,-6],[-20,-33],[-35,-9],[-2,2],[-35,15],[-26,15],[-24,19],[-18,21],[-11,35],[7,28],[5,32],[5,37],[9,50],[5,58],[5,50],[1,90],[0,47],[0,44],[0,6],[1,45],[9,212],[14,88],[18,49],[16,40],[11,30],[15,42],[14,61],[8,56],[14,41],[16,-51],[29,-46],[-36,-21],[-10,-40],[23,-6],[21,-17],[25,-17],[-1,-33],[-23,-12],[13,-36],[-19,-35],[-7,-60],[-6,-46]],[[63122,54921],[24,-30],[12,30],[20,33],[41,2],[11,-35],[-2,-33],[-19,-46],[-6,-45],[2,-51],[12,-57],[10,-42],[26,2],[33,-34],[63,5],[39,8],[29,-1],[-9,-35],[-31,0],[-32,-18],[28,-46],[-49,4],[-22,12],[-18,-16],[-43,43],[-28,28],[-21,18],[-40,42],[-11,26],[-7,92],[-9,25],[-20,20],[-7,23],[-9,61],[16,62],[17,-47]],[[63002,56323],[7,-29],[26,-53],[-17,-33],[-25,11],[-22,54],[-11,49]],[[65545,56347],[0,-35],[1,-34],[1,-113],[0,-113],[5,-143],[4,-127],[1,-48],[4,-161],[1,-17],[1,-31],[0,-18],[0,-18],[1,-21],[2,-73],[5,-189],[1,-59],[0,-19],[0,-49],[1,-122],[0,-53],[2,-254],[0,-21],[3,-21],[2,-22],[1,-24],[1,-17],[0,-20],[0,-15],[-2,-114],[0,-25],[0,-49],[0,-20],[-1,-17],[0,-17],[0,-4],[0,-68],[0,-4],[0,-24],[1,-28],[0,-23],[0,-17],[0,-17],[0,-36],[0,-18],[0,-20],[0,-55]],[[65580,53954],[-18,18],[-26,-26],[-41,-19],[-30,-54],[13,-50],[14,-25],[-7,-42],[-10,-32],[-18,-21],[0,-31],[0,-8],[-29,8],[-17,5],[-11,-5],[-14,-6],[-3,6],[-15,21],[11,44],[1,65],[-17,40],[-17,35],[-14,40],[20,48],[8,36],[4,29],[3,33],[0,24],[-14,29],[-34,29],[-46,22],[-40,17],[-32,13],[-22,-29],[-30,-10],[-29,-7],[-41,5],[-2,2],[-20,26],[-25,16],[-1,2],[-17,30],[-24,11],[-48,-2],[0,-47],[32,-39],[37,-13],[4,-1],[12,-32],[4,-10],[16,-37],[26,-45],[25,-37],[19,-45],[8,-51],[21,-21],[17,-20],[35,-37],[21,-52],[-36,-41],[-17,-41],[-2,-4],[-25,-40],[-28,-42],[-11,-33],[-4,-36],[-24,-15],[-25,-13],[-38,-40],[-12,-37],[-24,-41],[-9,12],[13,26],[-23,16],[-18,-7],[-11,-12],[-13,8],[-14,-1],[-7,-27],[-14,-8],[2,-18],[-19,-9],[-14,-10],[19,-2],[14,-1],[16,9],[2,19],[23,-16],[13,15],[35,-7],[6,-35],[-20,-26],[-8,-25],[-12,-39],[-19,-13],[-43,-17],[-14,-32],[-14,-15],[4,-24],[19,16],[22,2],[26,2],[14,28],[23,6],[16,16],[-1,29],[19,12],[6,22],[43,20],[16,-26],[-34,-30],[-41,-72],[-22,-42],[-1,-1],[-15,-37],[-37,-13],[-34,-3],[-55,-8],[-25,-20],[-32,-17],[-48,8],[-49,-13],[-24,-31],[-32,-39],[-15,-51],[-5,-46],[31,-9],[10,-36],[6,-36],[-28,-15],[-28,-29],[-12,-43],[43,4],[38,-1],[19,-33],[52,-28],[55,-56],[31,-1],[22,-19],[40,-36],[52,-17],[30,-48],[33,0],[19,47],[13,44],[5,34],[22,-35],[19,-37],[1,-47],[11,-34],[24,-26],[43,-20],[34,0],[41,-25],[16,-15],[1,-1],[0,-1],[11,-10],[27,-15],[33,31],[34,-4],[14,-20],[7,-10],[42,-1],[11,0],[4,-1],[27,-6],[27,-32],[30,-17],[1,46],[16,-18],[30,-34],[41,-52],[7,-28],[9,-37],[-32,-50],[33,-4],[24,13],[24,13],[37,26],[16,34],[-5,34],[-44,-19],[-16,48],[-26,26],[21,35],[36,-14],[24,-33],[30,-28],[33,18],[21,16],[28,20],[23,5],[15,3],[-33,-38],[-29,-29],[-28,-37],[-26,-41],[-5,-33],[-10,-13],[-16,23],[-15,-10],[-36,-68],[-18,-20],[26,-19],[34,-33],[11,-13],[6,20],[-2,15],[3,14],[1,4],[6,1],[15,2],[5,-17],[3,-9],[34,-19],[29,-21],[32,22],[-9,28],[40,-20],[35,-23],[24,-27],[18,-24],[2,-15],[2,-17],[28,3],[27,-7],[17,-19],[10,-12],[19,-24],[2,-7],[6,-20],[12,-33],[2,-5],[0,-1],[2,-2],[318,91],[74,10],[40,5],[-105,-50],[-120,-33],[-198,-55],[-21,-18],[-15,-51],[-4,-42],[-30,-12],[-46,-16],[-21,-2],[7,-25],[-2,-26],[37,4],[16,14],[13,27],[19,13],[6,-23],[31,7],[27,29],[-4,45],[29,14],[3,34],[25,-25],[34,-43],[42,-2],[40,-13],[-7,-40],[-1,-41],[-16,-39],[40,-46],[-26,-47],[45,-59],[-4,-59],[13,-30],[17,-36],[13,-20],[16,-22],[15,-51],[-3,-39],[-10,-15],[-22,-31],[-32,12],[-15,42],[-4,11],[-13,-11],[-10,-9],[15,-25],[-21,-19],[-13,30],[-5,12],[-1,12],[-1,31],[-34,-2],[-3,35],[0,2],[10,24],[4,11],[-12,12],[-19,17],[-25,10],[-3,6],[-8,19],[-25,31],[-63,35],[2,17],[1,19],[22,1],[25,12],[9,26],[-2,22],[-1,9],[-31,16],[-29,32],[-27,4],[-7,2],[-29,1],[-34,-4],[-31,-15],[-16,-79],[9,-28],[46,-22],[31,-5],[5,-28],[23,-23],[-9,-39],[19,-36],[22,27],[19,41],[23,-36],[26,-20],[17,-24],[-24,-39],[11,-26],[-16,-33],[11,-38],[20,-51],[59,-11],[23,-22],[45,8],[48,-34],[19,-26],[24,-5],[24,-10],[-22,-43],[-21,-38],[-22,28],[-39,-6],[-35,-43],[-22,-43],[-31,-49],[-35,-38],[-17,-44],[-14,-1],[-9,33],[8,31],[-3,21],[-22,19],[-73,0],[0,17],[-27,-11],[11,-6],[-14,-43],[-2,-11],[-33,2],[-6,19],[-79,-10],[51,-29],[29,-7],[17,13],[17,-15],[-9,-24],[42,-15],[19,10],[7,28],[-36,18],[-3,26],[17,23],[27,-5],[12,-22],[-2,-15],[40,-27],[13,-26],[-17,-19],[-16,-69],[15,-13],[32,12],[-8,-28],[-51,-30],[-40,15],[-12,-26],[-26,24],[-18,-22],[-21,9],[-16,2],[-14,7],[1,20],[-36,-2],[-11,19],[-38,-1],[15,18],[13,10],[0,21],[-23,-1],[-5,-18],[-15,10],[-17,1],[-1,17],[10,23],[23,18],[-29,21],[-19,-12],[-10,-36],[13,-41],[19,-19],[10,-21],[42,-7],[11,-17],[15,-13],[30,-13],[7,-28],[-15,-50],[-22,-53],[-9,-54],[-12,-9],[-38,6],[-24,-44],[45,3],[12,15],[15,0],[-1,-25],[-2,-16],[-19,-41],[-54,-18],[11,-32],[72,20],[25,-6],[-25,-120],[-26,20],[-70,4],[6,-53],[15,4],[33,-12],[-15,-51],[0,-51],[8,-31],[55,-13],[22,-59],[-36,5],[-31,-4],[-39,8],[-39,-34],[-40,-20],[-27,-32],[-7,-34],[15,-34],[45,29],[29,0],[28,25],[25,6],[14,25],[12,-34],[11,-27],[8,-56],[3,-38],[-7,-35],[-9,-32],[-20,-54],[-16,-30],[-15,32],[-16,28],[-41,8],[-9,-46],[0,-36],[28,-25],[27,-3],[-6,-42],[-18,-65],[-37,-20],[-17,-33],[-7,-41],[-30,-13],[-52,-23],[-31,-11],[-34,-9],[-35,-11],[-49,-4],[-49,16],[-41,11],[-67,30],[-49,12],[-40,11],[-37,8],[-29,15],[-29,15],[-22,23],[-14,30],[-43,-27],[-41,25],[-23,18],[-16,18],[-22,26],[-5,27],[-20,16],[-7,6],[6,37],[11,45],[37,23],[23,79],[0,60],[-1,38],[-4,38],[-34,-19],[-38,-1],[-35,-2],[-36,-1],[-36,-4],[-33,-8],[-44,-16],[-33,25],[-39,1],[9,37],[-29,12],[-9,-33],[-36,46],[-37,27],[-18,27],[-31,38],[5,45],[10,36],[-46,-23],[-11,82],[-39,-27],[-14,-60],[10,-56],[16,-47],[-28,-3],[-26,14],[-21,24],[28,7],[2,25],[-30,30],[-18,8],[-1,2],[-4,21],[3,55],[-11,19],[20,19],[5,35],[-15,13],[-6,19],[2,70],[-15,51],[-17,13],[-14,28],[-17,28],[-4,41],[-32,14],[-15,36],[-18,40],[-15,25],[-21,36],[-13,49],[-10,22],[-6,52],[-7,37],[1,26],[-8,24],[0,39],[-10,62],[-20,39],[-25,35],[0,1],[44,8],[3,51],[31,49],[-20,46],[35,40],[-3,82],[2,25],[1,23],[-26,-5],[-19,-36],[-7,-33],[-8,-33],[-37,-41],[-31,-22],[3,38],[-19,32],[-18,67],[-19,28],[-26,35],[-18,-12],[-26,-1],[-23,14],[-8,14],[-22,6],[2,39],[-3,50],[-9,16],[16,13],[-16,10],[5,38],[4,16],[12,27],[-5,39],[-17,17],[-9,15],[12,13],[-8,20],[4,14],[-5,14],[13,26],[-1,24],[10,20],[-8,50],[5,27],[21,3],[9,28],[15,6],[8,27],[11,10],[14,43],[-13,30],[-4,16],[5,15],[-1,25],[-8,20],[4,16],[-13,28],[-11,11],[-21,3],[-17,4],[-7,-25],[-5,-17],[6,-26],[-2,-50],[-10,-42],[19,-1],[0,-63],[-23,1],[-2,-30],[15,13],[0,-20],[-6,-32],[-12,-39],[-8,-13],[-17,-10],[-12,-15],[-18,-8],[-14,5],[2,-28],[17,-8],[-14,-4],[15,-10],[-11,-18],[-1,-57],[-17,-11],[-1,-18],[17,-12],[5,-32],[-4,-19],[5,-26],[2,-104],[11,-13],[20,-18],[-5,-18],[12,-8],[9,-27],[34,-45],[21,-16],[13,2],[16,15],[15,21],[11,-42],[13,-20],[1,-35],[-9,-38],[19,-41],[13,-36],[21,-25],[17,-34],[7,-38],[-5,-4],[-20,-18],[-11,-52],[2,-35],[-24,-49],[2,-41],[-35,-7],[-21,25],[-34,39],[-36,30],[-43,42],[-32,25],[-46,-18],[-35,-29],[-37,16],[9,37],[-31,24],[-31,18],[21,53],[-19,9],[-20,-10],[-28,8],[2,25],[8,29],[2,30],[-45,5],[8,36],[-35,12],[-23,23],[-20,24],[-46,37],[-40,29],[-29,25],[-44,13],[-49,29],[-40,4],[-39,-14],[16,-53],[-1,-3],[-11,-50],[22,-45],[42,5],[10,41],[43,-26],[33,-17],[22,-46],[-13,-35],[-45,-26],[21,-42],[36,-29],[29,22],[8,-33],[27,-22],[39,33],[-15,-52],[16,-24],[32,-6],[-9,-25],[6,-28],[33,-3],[35,-40],[24,27],[44,-11],[32,-11],[-19,-44],[21,-51],[14,-27],[24,-12],[29,2],[-20,33],[14,38],[25,17],[24,-13],[22,-43],[51,6],[-2,-52],[-2,-39],[-43,14],[-72,-2],[5,-22],[30,-10],[30,-4],[35,-19],[28,-26],[-1,-29],[-20,-38],[-15,-11],[-14,-9],[-29,41],[-27,43],[-24,32],[-23,26],[-29,29],[-33,30],[-43,38],[-34,28],[-36,33],[-29,27],[-18,16],[-18,16],[-19,16],[-30,23],[-46,37],[-32,30],[-26,29],[-24,29],[-27,32],[-27,62],[-40,43],[-16,35],[-21,39],[-22,39],[-25,43],[-15,25],[13,40],[-38,8],[-22,47],[-20,47],[-16,38],[-11,31],[-13,43],[-13,45],[-8,34],[-11,47],[2,52],[-8,47],[2,60],[-23,13],[17,28],[-21,60],[-1,48],[0,31],[15,22],[-7,54],[6,43],[7,49],[5,37],[7,55],[7,58],[5,38],[6,29],[11,51],[7,35],[6,38],[9,48],[11,56],[10,44],[12,49],[12,43],[8,28],[11,50],[11,34],[16,31],[15,29],[33,80],[16,55],[9,38],[12,47],[5,45],[-2,46],[43,-22],[37,-25],[16,-26],[7,-12],[-25,-46],[-22,-24],[-24,-29],[-25,-29],[-28,-51],[-16,-61],[-19,-47],[-21,-36],[-10,-82],[-24,-21],[4,-43],[21,-16],[-21,-44],[-19,-54],[3,-33],[14,-25],[-17,-19],[-20,-28],[-17,-33],[11,-57],[39,14],[22,-24],[-19,-30],[-33,-10],[16,-40],[-41,-7],[3,-41],[35,-50],[-35,-29],[-23,-41],[-4,-47],[39,-2],[-36,-54],[15,-10],[18,-10],[17,20],[20,41],[26,36],[39,61],[28,51],[22,33],[-37,9],[12,37],[18,50],[30,55],[35,52],[0,65],[37,-3],[22,39],[2,56],[-51,6],[8,28],[21,27],[43,4],[40,43],[21,37],[14,41],[19,35],[15,46],[1,62],[-12,26],[53,10],[11,35],[0,39],[26,36],[14,52],[10,47],[18,38],[-10,41],[8,17],[17,34],[10,34],[0,32],[-2,42],[25,48],[11,51],[6,46],[1,48],[37,27],[3,46],[9,30],[3,23],[2,26],[9,38],[1,5],[10,45],[6,67],[-13,68],[23,24],[5,35],[12,64],[-4,40],[-6,43],[3,52],[5,32],[6,45],[28,37],[16,47],[3,54],[3,49],[13,43],[6,47],[30,28],[8,31],[39,8],[25,13],[5,26],[-10,28],[-27,23],[-28,-6],[-21,2],[3,26],[-5,56],[29,35],[28,35],[11,34],[28,36],[23,-20],[28,41],[10,41],[-22,24],[-42,1],[7,-30],[-22,-8],[-39,17],[-27,-4],[-12,45],[21,49],[0,45],[7,44],[9,40],[11,45],[-9,41],[-24,43],[-13,42],[23,4],[18,-42],[33,-38],[32,24],[-1,48],[-7,40],[0,42],[-31,9],[-18,32],[-26,35],[20,25],[19,65],[-10,42],[-42,-6],[-1,41],[27,4],[15,32],[-34,21],[1,28],[-10,36],[-9,37],[4,41],[-22,9],[-22,-4],[10,44],[-11,43],[-16,42],[-8,31],[-20,46],[-21,9],[-24,2],[13,32],[-2,35],[-6,29],[-30,40],[29,51],[-29,59],[-29,1],[-34,17],[26,27],[24,4],[28,-15],[17,17],[21,-10],[14,-42],[30,-30],[23,-19],[18,13],[19,-23],[20,-5],[26,-18],[2,-34],[41,-25],[10,-11],[35,-5],[22,7],[-9,-30],[-15,-2],[-23,9],[-1,-16],[16,-16],[21,-22],[1,-61],[19,-21],[-9,-27],[18,-8],[17,23],[-9,34],[0,34],[-4,25],[-16,11],[1,22],[10,17],[49,-96],[9,-20],[-8,-16],[2,-17],[22,-8],[1,-24],[-13,-32],[-19,-20],[3,-25],[18,-10],[36,1],[8,12],[-20,28],[-1,24],[19,19],[13,21],[13,-9],[14,-5],[-4,16],[-20,8],[-22,-6],[-12,11],[-22,11],[8,12],[-4,34],[-3,35],[-29,22],[-17,25],[-8,27],[2,17],[2,12],[-16,11],[-40,-1],[-19,2],[-16,28],[-22,27],[-13,43],[-56,13],[-24,35],[-11,23]],[[64108,47221],[13,-61],[-56,28],[-24,27],[-9,40],[-6,54],[1,55],[7,44],[9,42],[9,40],[24,47],[41,-17],[12,-35],[-3,-45],[-6,-53],[-7,-54],[-8,-62],[3,-50]],[[68429,50935],[-46,0],[-50,10],[-28,30],[15,193],[26,31],[93,-15],[-10,-249]],[[68465,51575],[-56,0],[-43,8],[-7,73],[26,234],[143,-10],[5,-79],[-9,-79],[-52,-68],[-7,-79]],[[73394,48213],[-2,0],[-27,0],[-14,0],[-22,0],[-38,-1],[-70,0],[-114,-1],[-23,0],[-17,0],[-99,-1],[-43,0],[-17,0],[-17,0],[-22,0],[-55,-1],[-79,0],[-178,-1],[-23,1],[-16,0],[-52,-1],[-127,4],[-104,0],[-52,0],[-7,0],[-169,1],[-442,2],[-21,0],[-86,0],[-51,0],[-36,0],[-32,0],[-89,-1],[-106,1],[-42,0],[-279,1],[-49,0],[-15,0],[-72,0],[-40,-1],[-65,-2],[-83,2],[-110,2],[-36,-1],[-44,-1],[-21,0],[-20,0],[-8,1],[-9,1],[-41,0],[-25,1],[-84,-1],[-119,-1],[-40,0],[-3,0],[-14,0],[-55,0],[-153,0],[-30,-1],[-3,0],[-25,-1],[-50,-1],[-36,-1],[-37,0],[-68,0],[-71,1],[-117,-2],[-22,1],[-90,2],[-21,0],[-50,-1],[-27,0],[-22,0],[-5,0],[-16,0],[-110,-1],[-73,0],[-43,-1],[-286,-2],[-110,-1],[-53,0],[-84,-1],[-59,0],[-49,-1],[-19,0],[-32,0],[-68,-1],[-37,0],[-53,-1],[-16,0],[-75,-1],[-175,-2],[-112,-1],[-21,-1],[-16,-1],[-246,0],[-86,0],[-9,0],[-64,1],[-26,0],[-21,0],[-42,0],[-43,0],[-100,1],[-23,0],[-16,-1],[-16,0]],[[66844,48199],[11,50],[22,47],[16,37],[26,17],[1,5],[5,16],[10,34],[19,35],[24,2],[5,0],[15,52],[18,40],[6,20],[5,16],[7,14],[17,36],[38,14],[1,20],[1,27],[39,19],[14,29],[6,14],[38,-17],[44,-9],[25,-31],[22,-26],[25,-58],[16,-24],[40,12],[29,49],[41,31],[23,0],[7,0],[15,5],[15,4],[18,27],[26,14],[25,20],[41,13],[-43,29],[-26,23],[-8,-25],[-22,-9],[-29,-18],[-30,-14],[-41,-8],[-33,-9],[-30,14],[-32,-23],[5,38],[-7,34],[-6,37],[-26,29],[-3,35],[0,51],[24,34],[32,7],[-17,-44],[42,18],[33,32],[17,24],[18,30],[21,22],[20,10],[14,18],[26,10],[28,16],[31,24],[30,25],[32,17],[39,16],[57,-8],[54,3],[46,5],[33,-9],[31,17],[37,-1],[37,-18],[15,-26],[45,-2],[34,-7],[10,29],[13,35],[44,-5],[25,-38],[9,16],[11,17],[-21,31],[-20,36],[-22,-19],[-26,21],[-31,27],[-29,-8],[-34,-3],[-33,-2],[-45,12],[-11,50],[-34,-9],[-34,-8],[-34,9],[21,24],[16,24],[18,32],[-6,37],[26,29],[-9,17],[-9,18],[0,14],[3,42],[-13,48],[38,33],[-26,33],[-30,23],[22,41],[33,5],[17,19],[39,5],[40,-20],[12,6],[12,6],[7,4],[5,11],[6,14],[11,-11],[12,-12],[3,-37],[32,40],[12,45],[3,10],[20,-4],[24,9],[47,29],[12,27],[29,11],[27,-23],[22,28],[6,8],[46,27],[5,12],[6,12],[44,-3],[1,28],[11,15],[11,15],[10,8],[14,12],[5,4],[29,22],[-31,18],[25,28],[35,18],[16,37],[30,5],[26,45],[31,-7],[-13,32],[-23,26],[-24,15],[-17,-27],[-30,-25],[-39,-32],[-9,-35],[-35,25],[8,34],[27,33],[18,23],[21,25],[23,24],[36,36],[25,30],[28,43],[16,20],[21,4],[42,-8],[-19,-40],[-24,-34],[-29,-18],[-39,-19],[4,-33],[24,-19],[25,12],[21,8],[11,22],[32,19],[12,32],[59,-25],[34,55],[62,48],[-54,22],[-33,-1],[-56,2],[10,60],[2,44],[-13,37],[9,37],[35,29],[-26,23],[19,31],[36,5],[37,8],[32,22],[37,7],[29,4],[46,13],[26,42],[44,21],[37,17],[0,32],[-29,26],[-38,10],[-30,-16],[-5,30],[-4,36],[-6,33],[-16,26],[0,53],[44,13],[-19,34],[-15,31],[0,39],[16,29],[22,28],[15,44],[-5,31],[-41,-25],[-39,4],[-16,42],[32,13],[49,-6],[16,32],[46,34],[41,7],[5,0],[21,1],[17,-19],[4,-4],[22,-6],[34,-9],[39,1],[42,-1],[52,8],[45,-5],[37,-15],[29,32],[41,-3],[28,-10],[43,1],[26,11],[3,2],[21,17],[18,15],[12,48],[-30,-15],[-18,-32],[-7,2],[-27,5],[-18,-17],[-39,18],[-50,7],[-35,-17],[-47,10],[-59,16],[-36,-8],[-39,-1],[-54,7],[-32,29],[-28,30],[-2,-2],[-14,-14],[-7,-33],[-1,0],[-31,-9],[-34,-11],[-18,-17],[-33,-21],[-41,-14],[-51,-26],[-34,-4],[-15,25],[11,43],[31,13],[-7,37],[-11,57],[-9,67],[-11,43],[6,40],[14,27],[12,38],[-13,37],[-27,37],[-21,36],[-17,30],[-24,42],[-25,49],[-21,44],[-32,33],[-29,23],[-25,-8],[-52,1],[-99,-10],[-37,-16],[-15,46],[43,18],[62,1],[-13,34],[-18,34],[35,26],[10,7],[4,50],[18,36],[37,68],[11,30],[-17,45],[6,5],[31,24],[34,5],[26,16],[4,38],[-5,39],[-2,41],[-10,34],[18,36],[22,24],[22,0],[26,18],[32,21],[37,17],[9,0],[14,1],[23,0],[18,-1],[14,-1],[40,11],[-54,15],[-3,1],[-43,2],[-9,4],[-14,7],[-38,-25],[-33,-18],[-29,-11],[-19,40],[-13,27],[-16,31],[25,27],[-44,20],[-33,-1],[-9,-28],[23,-49],[-7,-39],[27,-38],[-46,-8],[-41,7],[-10,54],[-34,7],[-41,-13],[-49,-56],[-12,-23],[-12,-31],[4,-39],[1,-33],[0,-9],[1,-66],[60,-61],[2,-42],[1,-28],[1,-46],[0,-37],[-8,-67],[-18,-28],[-29,-30],[-35,-45],[-22,17],[-13,27],[-14,30],[-12,23],[-10,36],[-20,28],[-13,39],[16,36],[-42,8],[-10,42],[7,32],[-9,35],[7,39],[0,37],[8,34],[24,51],[31,20],[-24,16],[14,47],[-2,32],[6,52],[-15,64],[-11,-52],[0,-31],[-3,-45],[-15,-28],[-31,-12],[-21,-5],[-23,-10],[8,-5],[22,-12],[18,-22],[-11,-39],[-15,-24],[10,-19],[-2,-35],[-16,-52],[-13,47],[-33,21],[-9,-36],[16,-16],[45,-96],[19,-41],[23,-51],[6,-42],[-19,-48],[-56,13],[-20,-27],[-21,-21],[-39,-3],[-34,-2],[-26,21],[8,36],[-13,40],[-1,27],[19,12],[-22,40],[16,32],[-14,26],[3,37],[17,23],[-11,28],[28,13],[-20,45],[-3,73],[-37,-2],[-22,-14],[-16,-25],[-12,-28],[-25,-9],[-41,-11],[-27,-26],[-30,-28],[-49,-36],[-37,-26],[-27,-20],[-29,-29],[-30,-36],[-12,-47],[2,-42],[11,-39],[7,-41],[7,-72],[6,-66],[-2,-32],[22,-32],[19,-15],[19,-37],[26,-17],[19,-19],[23,-23],[-22,-18],[-3,-38],[-9,-43],[-6,-37],[-22,-20],[-29,-35],[-24,-45],[-9,-36],[-3,-43],[6,-44],[15,-41],[27,-48],[18,-20],[32,-30],[24,-43],[34,-25],[28,-22],[49,-52],[22,-78],[0,-48],[-11,-54],[-30,-63],[10,-46],[-13,-70],[-32,-10],[-25,-14],[-24,3],[-29,6],[-40,-6],[-27,8],[-44,11],[-56,33],[-60,3],[-60,22],[-37,7],[-37,11],[-37,15],[-25,13],[-32,14],[-39,17],[-43,21],[-38,18],[-30,24],[-30,9],[-24,-20],[-33,-28],[-49,42],[11,22],[13,35],[-15,25],[-23,24],[-26,39],[-39,41],[-23,22],[-27,32],[4,38],[19,39],[-6,41],[-42,-22],[1,-34],[-24,-32],[-12,-35],[-7,-31],[-22,-18],[-6,43],[19,32],[7,29],[9,45],[5,62],[19,26],[44,2],[36,-10],[33,11],[40,28],[25,31],[38,40],[29,45],[12,52],[-3,41],[0,78],[-10,35],[-35,-7],[-53,-7],[-40,6],[5,45],[19,22],[-32,9],[-4,1],[17,33],[37,14],[62,16],[17,47],[-19,10],[-27,18],[2,52],[29,4],[28,17],[4,32],[-15,29],[0,36],[0,27],[10,43],[-5,107],[26,41],[-43,3],[25,40],[-27,43],[7,54],[49,36],[-38,26],[-27,19],[-13,29],[-27,-17],[-31,31],[-22,43],[-11,21],[8,16],[-10,38],[-39,9],[-27,-3],[-1,47],[43,1],[-11,35],[-20,30],[-18,36],[-26,51],[-29,29],[-22,29],[-6,6],[-30,32],[-13,-8],[-32,16],[-60,0],[-10,-26],[-10,-15],[-32,-47],[-41,-25],[-27,17],[16,16],[-23,24],[23,24],[12,10],[8,8],[16,38],[39,28],[-14,29],[-34,13],[-39,3],[-46,6],[-46,25],[-32,10],[-26,13],[-32,-1],[-31,2],[-23,10],[-36,-6],[-44,5],[-55,-9],[-29,55],[-26,11],[-22,25],[-20,30],[-96,74],[-38,18],[-35,17],[-29,78],[-19,11],[-54,32],[-38,20],[-14,-4],[-40,35],[-39,59],[-9,39],[-8,54],[-20,59],[-40,-23],[-26,-5],[-26,16]],[[95528,48365],[-11,-23],[-8,12],[-17,26],[-30,34],[2,44],[-16,21],[-19,27],[-8,13],[-11,20],[1,42],[1,28],[-23,73],[41,-25],[19,-21],[45,-51],[7,-7],[31,-25],[-26,-52],[-2,-25],[19,-58],[1,-12],[4,-41]],[[95159,49304],[-20,-12],[-39,19],[-34,52],[-29,58],[6,41],[27,0],[48,-33],[7,-37],[14,-37],[2,-6],[18,-45]],[[95000,49920],[26,-19],[17,-4],[22,-6],[-19,27],[43,-3],[3,-4],[18,-23],[1,-63],[-12,-6],[5,-49],[21,-17],[-6,-12],[-4,-10],[14,-26],[32,-33],[19,-11],[9,-23],[-4,-20],[14,-19],[4,-5],[7,-17],[0,-46],[-12,-22],[-6,-12],[0,-53],[6,-16],[-10,-7],[-6,-5],[-3,2],[-15,8],[-41,46],[-11,17],[-6,9],[-20,1],[-59,48],[-2,7],[-6,23],[-13,40],[-6,37],[-2,11],[-33,18],[1,40],[7,21],[1,2],[14,-2],[4,-16],[16,12],[14,-4],[3,-1],[15,-12],[10,-21],[18,-1],[15,4],[20,14],[-43,14],[-14,15],[-7,8],[-2,12],[-1,7],[29,-1],[7,2],[12,5],[-18,26],[-23,-6],[-49,-14],[30,32],[-5,32],[-9,28],[-3,9],[-20,14],[-27,-21],[-32,6],[-28,29],[-20,20],[-2,41],[-2,3],[-6,9],[-1,22],[14,9],[14,-12],[19,-26],[10,-12],[11,-15],[8,-11],[24,-16],[31,-8]],[[94824,50154],[19,-2],[20,22],[5,7],[1,17],[2,1],[17,3],[-6,-36],[-1,-34],[-1,-33],[1,-28],[-12,8],[-13,9],[-38,29],[-39,40],[-24,32],[2,16],[2,18],[2,11],[1,10],[34,-11],[-5,-20],[1,-4],[7,-30],[25,-25]],[[95727,46837],[-29,0],[-14,0],[-35,0],[-81,1],[-7,0],[-5,0],[-7,0],[-50,0],[-15,1],[-21,3],[-49,0],[-38,0],[-54,-1],[-33,0],[-55,0],[-55,0],[-30,1],[-39,0],[-41,0],[-21,0],[-37,0],[-34,0],[-18,0],[-18,-1],[-14,0],[-22,0],[-54,0],[-39,0],[-15,0],[-23,1],[-30,0],[-18,0],[-48,2],[-43,0],[-15,0],[-35,0],[-57,2],[-51,-1],[-21,0],[-37,1],[-55,1],[-53,2],[-31,0],[-29,0],[-25,0],[-26,0],[-24,0],[-27,0],[-22,0],[-31,1],[-95,1],[-65,1],[-51,1],[-45,1],[-44,0],[-77,0],[-36,1],[-74,2],[-51,1],[-59,2],[-49,-6],[-214,1],[-219,1],[-213,1],[-367,1],[-241,2],[-100,-3],[-128,-1],[-33,0],[-22,0],[-1,0],[-42,0],[-15,0],[-52,1],[-37,-1],[-26,0],[-31,0],[-27,0],[-26,0],[-134,1],[-50,-1]],[[91472,46856],[-138,-1],[-17,0],[-21,0],[-35,0],[-40,0],[-33,0],[-32,0],[-106,0],[-127,-1],[-91,0],[-166,4],[-36,-1],[-15,3],[-63,2],[-159,1],[-51,-1],[-151,-2],[0,39],[0,13],[0,6],[-1,268],[0,12],[0,18],[0,42],[0,16],[0,21],[-1,195],[0,17],[-1,66],[0,34],[0,21],[0,47],[0,33],[-1,42],[0,21],[0,41],[-2,76],[-2,39],[-1,67],[-3,170],[-175,-2],[-31,0],[-176,-2],[-113,-1],[-133,-2],[-87,-1],[-71,0],[-45,-1],[-46,0],[-46,-1],[-33,-1],[-17,-1],[-8,-1],[-10,0],[-47,-1],[-22,1],[-38,-1],[-34,-2],[-19,2],[-18,2],[-30,-2],[-51,0]],[[93839,51118],[18,-8],[37,37],[3,3],[18,27],[5,44],[12,42],[15,42],[-7,56],[24,30],[2,2],[33,-40],[82,-104],[42,-87],[13,-33],[19,-42],[16,-44],[52,-113],[29,-63],[40,-86],[13,-33],[14,-28],[16,-36],[29,-58],[22,-41],[25,-49],[28,-53],[32,-60],[103,-141],[20,-38],[26,-53],[7,-61],[41,-78],[91,-170],[11,-21],[14,-27],[258,-484],[19,-37],[45,-85],[22,-44],[11,-29],[17,-40],[38,-81],[12,-28],[26,-48],[7,-34],[14,-30],[11,-35],[19,-34],[19,-44],[7,-55],[5,-13],[7,-20],[19,-49],[11,-41],[4,-10],[8,-23],[11,-33],[31,-58],[14,-28],[11,-22],[9,-21],[12,-11],[11,-47],[3,-37],[12,-38],[0,-4],[-8,-49],[1,-64],[4,-63],[5,-42],[1,-45],[0,-90],[1,-30],[0,-4],[2,-28],[12,-33],[10,-42],[10,-32],[10,-27],[10,-25],[14,-27],[13,-38],[6,-32],[5,-21],[2,-9],[15,-45],[19,-46],[5,-13],[0,-58],[5,-33],[0,-31],[-5,-47],[8,-64],[7,-26],[0,-1],[7,-22],[6,-46],[11,-28],[14,-38],[16,-49],[13,-47],[20,-42],[-1,-37],[12,-60]],[[96190,46839],[-26,-1],[-33,0],[-34,-1],[-17,0],[-35,1]],[[96045,46838],[6,52],[2,16],[7,9],[7,9],[13,1],[-5,-18],[-8,-21],[10,-13],[14,14],[2,20],[5,12],[4,9],[2,1],[7,6],[3,3],[-18,20],[-17,-13],[-29,-9],[-60,25],[-15,49],[34,67],[1,19],[-28,3],[31,38],[46,3],[2,25],[-28,1],[-39,0],[-67,64],[-15,14],[-17,38],[0,27],[-16,40],[4,25],[45,18],[14,-5],[14,1],[16,12],[22,2],[-17,13],[-13,9],[-81,17],[-20,-5],[-2,-28],[-21,6],[15,35],[38,14],[26,-6],[18,-4],[1,33],[-15,2],[-25,20],[-62,133],[-16,34],[-13,28],[-51,111],[-8,24],[-4,20],[-21,22],[-14,-7],[6,-20],[13,-10],[0,-28],[-21,21],[-11,46],[-6,20],[0,45],[-16,-3],[-20,4],[-10,31],[1,45],[-6,47],[19,19],[19,-18],[-7,40],[-35,-16],[-24,25],[-1,61],[13,-7],[14,-29],[16,0],[3,27],[-72,70],[-18,21],[-16,10],[-6,18],[-3,8],[-7,21],[15,21],[-2,68],[-4,66],[6,16],[45,-10],[-23,36],[-15,14],[0,24],[49,-11],[-7,36],[-64,6],[-28,23],[-34,39],[-17,27],[28,-5],[19,14],[51,-7],[18,47],[-14,25],[-13,20],[-1,-1],[-8,-10],[-7,-8],[-12,-20],[-10,-16],[-27,-2],[-37,-5],[-17,1],[-14,1],[22,42],[-7,32],[-26,18],[-26,10],[-17,33],[21,33],[15,5],[8,14],[4,6],[-29,-5],[-14,-4],[0,4],[-2,15],[-26,22],[-5,8],[-7,9],[10,16],[7,14],[1,3],[2,5],[6,20],[-8,12],[-4,6],[-25,65],[-15,27],[-2,2],[-22,25],[-1,1],[-3,22],[-3,26],[6,14],[8,18],[-10,6],[-6,4],[-5,9],[-3,4],[-8,15],[-11,19],[-4,8],[-18,35],[-8,15],[-1,2],[-1,22],[2,20],[23,1],[13,0],[60,20],[1,0],[12,1],[17,-3],[-3,-74],[-29,12],[-21,7],[-17,12],[6,-53],[14,-31],[12,8],[2,20],[18,-16],[13,-29],[-1,-39],[24,-40],[4,-60],[0,-47],[10,5],[13,8],[2,78],[-11,47],[-1,38],[-13,32],[-7,29],[3,97],[-25,25],[-46,-2],[-38,-4],[-10,12],[-3,18],[10,45],[1,83],[5,29],[-23,34],[-40,49],[-22,33],[-21,87],[2,50],[-27,58],[-35,18],[-46,9],[-27,8],[-16,14],[-17,12],[-7,11],[-10,19],[-34,30],[-14,21],[-5,31],[1,40],[13,21],[10,-11],[-8,-19],[28,13],[-17,37],[-14,8],[-15,44],[-8,57],[-21,-20],[-21,-21],[-34,0],[-36,14],[-40,35],[-27,39],[41,-4],[-6,40],[-24,48],[-16,5],[10,14],[23,3],[12,8],[37,-9],[-4,-28],[-2,-30],[3,-32],[13,9],[18,84],[-4,23],[24,1],[0,-45],[-8,-40],[9,-21],[16,-28],[10,-18],[16,13],[-10,30],[-16,77],[0,48],[-23,48],[-20,20],[-50,28],[-47,15],[-36,9],[-6,2],[-55,45],[-5,19],[-5,16],[15,25],[4,7],[27,41],[-13,77],[-12,40],[27,-2],[23,-21],[7,-7],[6,-5],[17,-14],[33,-9],[37,-8],[14,-3],[-18,45],[8,31],[-28,28],[-7,68],[-31,65],[-32,71],[-85,179],[-63,14],[-35,25],[-26,27],[-17,25],[-13,9],[64,89],[10,14],[4,5],[10,-11],[58,-112],[53,-117],[54,-116],[46,-101],[15,-32],[9,-27],[32,-66],[42,-101],[14,-32],[15,-38],[58,-129],[33,-69],[26,-54],[13,-26],[22,-51],[35,-76],[33,-76],[14,-33],[38,-90],[15,-34],[26,-60],[16,-36],[31,-55],[29,-57],[36,-76],[18,-44],[23,-55],[25,-62],[40,-121],[17,-51],[9,-46],[9,-38],[15,-55],[10,-41],[17,-65],[28,-79],[19,-71],[12,-45],[16,-48],[14,-45],[17,-57],[16,-53],[10,-28],[22,-82],[9,-35],[12,-51],[10,-39],[20,-72],[13,-49],[8,-38],[8,-38],[14,-41],[6,-26],[8,-31],[23,-86],[15,-56],[15,-76],[-5,-33],[0,-70],[9,-52],[28,-79],[24,-54],[24,-50],[28,-49],[36,-51],[24,-35],[63,-93],[23,-48],[11,-31],[10,-42],[10,-52],[7,-35],[7,-42],[7,-44],[11,-54],[8,-41],[14,-80],[9,-48],[18,-74],[29,-108]],[[85391,48165],[14,-15],[-18,-23],[10,-18],[-31,-6],[4,-19],[3,-22],[18,-7],[1,0],[10,-44],[-7,-22],[-9,-12],[-2,-26],[10,-14],[20,3],[-9,-15],[-5,-15],[8,-6],[6,-5],[-8,-2],[-7,-2],[-4,-20],[-9,-54],[-1,-5],[-5,-8],[-7,-9],[2,-4],[6,-14],[-13,-15],[-2,-3],[-9,-18],[5,-6],[5,-5],[15,-18],[4,-24],[0,-1],[0,-16],[0,-1],[6,-18],[9,-16],[10,-21],[-8,-13],[-5,-7],[22,-35],[-13,-12],[4,-21],[3,-25],[-16,-6],[-1,-4],[-3,-11],[0,-2],[-14,-25],[-17,-4],[-23,-3],[-15,-2],[-3,0],[-22,-3],[-2,0],[0,-1],[-8,-15],[0,-1],[-1,-5],[-3,-11],[-1,-4],[-21,-8],[-2,-1],[-5,-2],[-16,-6],[-8,-17],[-13,-13],[1,-25],[3,-15],[5,-24],[-9,-21],[-11,-9],[-9,-6],[-8,-7],[-7,-23],[-4,-20],[-1,-8],[-3,-24],[0,-1],[1,-22],[6,-21],[6,-19],[7,-17],[-27,-12],[-11,-12],[-8,-15],[-13,-7],[6,14],[2,19],[13,15],[-16,6],[-10,-1],[-5,-1],[-16,-8],[-18,-11],[-19,20],[-9,-17],[-18,-14],[4,-30],[-15,-15],[0,-6],[1,-8],[0,-3],[-12,-11],[-15,-11],[6,-26],[-15,1],[-14,-11],[-15,1],[-11,-11],[-7,-15],[11,-11],[-13,-13],[2,-18],[-8,-14],[-13,1],[-11,-8],[7,-17],[1,-1],[-4,-1],[-7,-2],[-10,-2],[-34,-1],[-20,-1],[-11,2],[-6,2],[-5,1],[-8,15],[-17,-13],[-14,-6],[-18,-10],[-23,-6],[7,-19],[-16,-14],[19,-9],[-4,-7],[-5,-9],[-11,-5],[-3,-1],[-13,1],[-18,5],[-9,-20],[16,-3],[6,-1],[16,-5],[-10,-10],[-15,-8],[-12,-9],[-1,8],[-3,13],[-14,-10],[-13,-22],[-5,-17],[-9,-12],[-12,-9],[-19,0],[-16,4],[-8,5],[-8,6],[-33,12],[-14,-9],[4,-18],[16,-17],[-7,-21],[-1,-18],[12,-5],[5,-17],[16,-10],[6,-16],[-22,-20],[-4,-3],[-13,-11],[-20,-7],[-22,-20],[8,-43],[-3,-15],[6,-25],[-16,-3],[-14,15],[-17,5],[-7,-14],[-7,-16],[-7,-18],[32,-7],[-3,-44],[-15,-9],[10,-16],[7,-15],[30,-28],[22,-22],[-4,-23],[15,-17],[9,-15],[13,-10],[17,5],[2,-19],[17,-8],[-2,28],[14,8],[1,0],[3,-2],[3,-2],[6,-4],[-2,-26],[0,-4],[0,-14],[0,-6],[0,-8],[9,-5],[4,-2],[0,-6],[0,-7],[0,-4],[-17,-4],[-21,-12],[-4,-22],[15,-5],[-12,-38],[-13,-27],[29,-29],[5,-16],[-17,8],[-3,-18],[-5,-16],[-17,9],[-7,-14],[-1,-25],[-6,-23],[1,-19],[-14,-17],[1,-31],[6,-15],[16,-7],[26,8],[12,-8],[13,-14],[2,-24],[19,7],[-5,25],[21,-8],[3,-28],[21,-7],[14,-11],[8,12],[15,-10],[15,-2],[11,-18],[23,-25],[10,0],[7,0],[22,-8],[14,11],[13,-4],[4,7],[4,7],[5,9],[8,-15],[14,-5],[1,-21],[28,-29],[15,-15],[5,-16],[-3,-11],[-2,-4],[0,-7],[0,-4],[-1,-5],[7,-9],[6,-7],[5,-15],[12,-11],[4,-3],[12,-5],[15,-16],[7,-13],[5,-16],[6,-19],[14,-8],[-6,-7],[-3,-4],[-7,-8],[5,-17],[-5,-20],[-14,-3],[27,-34],[21,-24],[20,-5],[15,12],[-2,-19],[11,-13],[8,-17],[14,3],[10,-1],[21,-3],[9,-3],[21,-4],[-6,14],[13,-4],[9,-21],[-8,-18],[11,-13],[9,16],[15,-8],[31,-6],[31,-25],[-21,-8],[1,-22],[0,-2],[10,-18],[14,-14],[1,-19],[18,-11],[12,16],[1,1],[5,-4],[7,-6],[2,-1],[14,10],[3,-6],[5,-13],[16,-12],[1,-21],[18,-7],[6,-33],[19,-21],[4,-22],[11,-21],[-4,-20],[16,-10],[5,-19],[-3,-19],[-8,-24],[-2,-19],[-12,-21],[12,-15],[2,-18],[1,-7],[7,-16],[9,-15],[-19,1],[-10,-17],[3,-15],[-2,-29],[-13,-29],[-2,-20],[-22,-11],[18,-29],[3,-6],[1,-27],[27,-1],[17,-16],[-8,-12],[15,-15],[10,8],[9,8],[-1,-21],[1,0],[22,-15],[12,12],[5,-15],[13,-18],[8,17],[3,7],[17,-11],[17,-1],[3,-1],[-1,-1],[-8,-22],[11,-11],[18,-15],[28,-11],[11,-11],[16,-2],[-14,-7],[-13,-9],[-10,-3],[-3,0],[10,-16],[1,-2],[8,-43],[10,-14],[-10,-13],[-8,-20],[7,-13],[1,-1],[16,-10],[13,-12],[30,-13],[-9,-17],[25,-5],[15,4],[19,-5],[-1,-23],[16,-4],[6,-16],[14,-12],[12,-18],[3,-4],[12,-2],[5,-1],[15,-4],[22,-1],[21,-8],[19,-10],[17,-1],[37,1],[16,-23],[2,-8],[3,-9],[22,-14],[16,5],[2,1],[15,15],[15,10],[4,0],[10,1],[6,-4],[10,-6],[7,2],[9,3],[6,-6],[5,-4],[22,1],[14,-5],[3,4],[8,8],[-8,12],[14,9],[15,-12],[13,5],[-4,17],[12,19],[4,2],[10,6],[4,3],[16,8],[1,-11],[0,-5],[15,-7],[26,-11],[12,8],[44,-20],[15,10],[19,-13],[14,-5],[15,4],[12,-7],[23,-19],[20,-6],[16,-1],[0,-18],[5,-9],[7,-11],[11,-23],[3,-24],[8,-13],[13,10],[5,-16],[14,-6],[22,3],[15,-14],[16,-3],[17,0],[13,-14],[21,-8],[5,-17],[-10,-20],[-14,-22],[7,-14],[-18,-11],[-4,-2],[9,-2],[8,-3],[2,0],[1,-8],[2,-21],[17,-6],[16,1],[44,6],[13,1],[21,0],[14,-3],[15,-6],[11,-19],[-1,-1],[-11,-12],[7,-14],[18,5],[5,-4],[4,-3],[3,-2],[4,-1],[4,0],[11,-1],[20,-1],[-3,-20],[16,-6],[5,-19],[-18,-6],[4,-22],[19,-9],[23,-14],[5,-17],[-9,-32],[-13,-26],[-8,-21],[-11,-12],[-7,-3],[-10,-5],[-14,18],[16,3],[5,3],[8,5],[2,3],[11,19],[-7,19],[-18,10],[-1,-17],[0,-1],[-8,-14],[-23,-10],[-17,-11],[-14,0],[-15,9],[-16,-10],[6,-25],[5,-18],[0,-1],[-26,-27],[-18,-15],[-11,-8],[-9,-6],[0,-1],[4,-8],[4,-6],[1,-19],[4,-30],[9,-29],[12,-27],[1,-21],[-1,-22],[5,-17],[21,-5],[29,24],[11,-15],[18,3],[1,-16],[18,1],[9,-12],[14,-7],[1,-1],[13,-12],[11,-8],[1,-2],[22,-16],[12,-20],[-3,-6],[-3,-8],[-6,-14],[-11,12],[-14,-4],[1,-24],[2,-19],[28,-21],[5,-43],[4,-20],[5,-16],[13,-3],[9,8],[6,6],[0,-18],[0,-8],[5,-33],[0,-17],[-15,-14],[-3,20],[-15,-4],[2,-30],[24,-38],[16,-19],[5,-7],[18,-11],[21,-5],[12,-13],[13,11],[-5,16],[13,8],[29,-31],[26,-4],[2,20],[5,-17],[16,-31],[12,-16],[8,20],[12,12],[-15,3],[14,7],[8,0],[10,-1],[24,13],[16,0],[5,20],[35,-7],[-1,-24],[7,-20],[10,-16],[20,-5],[14,2],[7,-18],[0,-16],[9,-14],[18,5],[8,12],[7,8],[5,6],[18,-3],[-4,-19],[-1,-1],[-14,-18],[-13,-12],[-5,-18],[-15,-16],[12,-14],[-1,-21],[11,-16],[-2,-22],[-12,-12],[-4,-16],[-7,-16],[14,-13],[10,-14],[-11,-11],[-15,-7],[5,-21],[6,-15],[0,-18],[-11,-20],[13,-6],[-8,-20],[5,-18],[-1,-27],[-9,-7],[-3,-2],[-5,-18],[-4,-8],[-7,-14],[12,-16],[0,2],[5,14],[7,-17],[10,-14],[6,-18],[0,-21],[-14,0],[8,-15],[8,-20],[-4,-11],[-3,-8],[3,-16],[2,2],[8,14],[-1,-18],[3,-22],[5,-18],[1,-3],[8,13],[11,-12],[14,-15],[16,-19],[-15,-7],[5,-15],[3,-16],[5,-8],[5,-6],[9,-7],[9,-7],[17,-2],[37,-14],[26,-17],[13,-16],[16,0],[22,-5],[0,-26],[-2,-18],[-8,14],[-14,-4],[6,-17],[11,-10],[-2,-17],[-19,8],[5,-16],[-1,-18],[5,-12],[1,-3],[2,-3],[9,-20],[-2,-5],[-9,-15],[-3,-31],[-14,-7],[-16,-14],[-3,-18],[12,-6],[14,10],[22,-6],[14,-16],[8,-18],[14,-14],[18,-25],[20,-21],[6,-14],[11,-23],[11,-20],[6,-14],[2,-5],[13,-19],[18,-18],[1,-2],[6,-6],[6,-1],[13,-3],[7,-1],[6,0],[18,-4],[23,-12],[35,-10],[16,11],[-15,2],[-23,4],[-7,18],[11,10],[20,0],[5,0],[11,12],[16,3],[34,14],[5,15],[7,15],[5,7],[6,10],[15,-5],[11,10],[14,18],[14,-8],[-5,-14],[-12,-19],[8,-17],[13,14],[18,11],[15,-3],[-5,-15],[-10,-11],[4,-17],[5,-4],[8,-6],[17,-18],[14,-16],[7,-26],[9,-14],[13,-12],[9,-18],[7,-16],[-11,-9]],[[88008,41486],[-20,0],[-224,5],[-5,0],[-26,0],[-98,-1],[-111,0],[-19,-1],[-24,-1],[-61,0],[-61,-1],[-95,-1],[-37,0],[-28,0],[-98,-1],[-219,-1],[-158,-1],[-31,0],[-30,0],[-54,0],[-229,-1],[-22,0],[-23,0],[-86,-1],[-15,0],[-21,0],[-22,-2],[-17,-1],[-27,0],[-20,2],[-87,0],[-19,0],[-76,-4],[-43,2],[-28,1],[-173,-2],[-1,0],[-80,0],[-31,0],[-286,1],[-1,0],[-57,0],[-23,-1],[-183,-5],[1,-151],[1,-138],[2,-225],[0,-57],[1,-56],[0,-40],[1,-73],[-1,-122],[0,-50],[2,-84],[0,-59],[0,-17],[1,-82],[0,-17],[0,-22],[0,-7],[0,-20],[0,-82],[1,-56],[-321,-4],[-245,-2],[-247,-2],[-259,0],[-236,-2],[5,-366],[1,-46],[1,-108],[1,-4],[0,-49],[-2,-163],[0,-30],[-1,-58],[1,-21],[1,-365],[0,-158],[-327,0],[-493,-1],[-46,0],[0,65],[0,46],[-117,0],[-5,-29],[-2,-25],[0,-1],[-3,-22],[0,-23],[0,-3],[0,-9],[-21,0],[-32,0],[-69,0],[-180,0],[-120,-1],[-141,2],[-76,0],[-49,1],[-169,1],[-94,1],[-71,-2],[-74,2],[-39,1],[-4,0],[-81,2],[-102,2],[-145,1],[-23,0],[-92,1],[-16,0],[-57,0],[-58,0],[-88,2],[-107,0],[-14,1],[-104,0],[-40,-2],[-31,1],[-55,0],[-42,0],[-68,0],[-409,2],[-34,0],[-14,0],[-64,0],[-111,6]],[[79860,38755],[-1,51],[0,114],[1,184],[0,107],[1,112],[1,467],[1,169],[0,24],[1,140],[0,8],[0,39],[0,23],[2,255],[0,67],[-4,502],[-2,213],[0,174],[1,67],[-2,290],[-1,338],[-1,40],[-9,692],[0,85],[0,124],[0,20],[0,158],[0,51],[-1,199],[0,27]],[[79847,43495],[0,120],[0,122],[0,16],[0,44],[1,204],[1,28],[-3,111],[0,132],[1,134],[-3,181],[2,51],[0,1],[0,53],[1,94],[0,91],[-3,58],[4,168],[0,14],[1,49],[1,75],[0,33],[0,232],[0,110],[0,24],[-1,33],[0,53],[0,3],[0,36],[0,2],[0,35],[0,58],[0,26],[0,38],[0,34],[0,76],[0,30],[0,3],[-1,112],[0,55],[1,79],[0,74],[0,107],[-1,305],[0,68],[1,57],[0,52],[3,117],[0,40],[-2,155],[0,29],[0,49],[0,146],[0,18],[0,59],[0,118],[0,59],[0,26],[1,84],[1,100],[0,17],[0,224]],[[79847,43495],[-20,0],[-67,-1],[-115,0],[-98,0],[-12,0],[-76,0],[-21,0],[-15,-1],[-38,0],[-15,0],[-46,0],[-40,0],[-16,0],[-1,0],[-3,0],[-183,-1],[-37,0],[-23,0],[-92,1],[-111,-2],[-50,0],[-207,-2],[-59,0],[-153,0],[-191,-1],[-244,0],[-52,-1],[-127,0],[-81,-1],[-166,0],[-88,0],[-513,0],[-182,-1],[-38,0],[-8,0],[-29,0],[-273,0],[-10,0],[-1,0],[-16,0],[-131,0],[-53,1],[-164,1],[-16,0],[0,-19],[0,-20],[-1,-15],[-47,0],[-45,1],[-117,1],[-60,1],[-38,0],[-157,2],[-7,0],[-277,1],[-453,3],[-1,0],[-133,1],[-288,3],[-126,2],[-1,0],[-103,1],[-58,0],[-32,1],[-207,1],[-61,1],[-226,3],[-152,2]],[[73376,43457],[1,542],[0,1],[0,29],[0,266],[0,63],[2,483],[0,20],[1,514],[0,147],[-1,17],[0,3],[1,55],[1,83],[0,20],[0,26],[2,150],[1,82],[2,193],[0,200],[0,29],[2,246],[0,24],[1,156],[0,68],[-1,93],[0,25],[4,279],[0,41],[1,59],[0,52],[0,1],[0,58],[0,30],[-1,141],[0,3],[0,232],[2,325]],[[65719,44251],[-23,0],[-14,0],[-14,0]],[[65668,44251],[-16,9],[-34,50],[-26,40],[-16,23],[-21,33],[-16,27],[-33,53],[-26,37],[-21,28],[-22,26],[-15,18],[-24,27],[-30,32],[-45,45],[-35,34],[-30,28],[-36,28],[-43,33],[-30,29],[-32,38],[-39,40],[-31,27],[-32,30],[-8,28],[4,30],[27,15],[1,-28],[10,-26],[25,14],[21,7],[33,11],[26,-22],[0,-38],[23,-36],[34,-32],[-16,-26],[26,-2],[18,-13],[38,4],[42,-60],[36,-34],[46,0],[39,-33],[44,-51],[14,-48],[3,-38],[-8,-27],[19,-32],[26,-34],[28,-36],[25,-45],[22,-40],[18,-29],[17,-26],[71,-88]],[[64648,46298],[22,-21],[-3,46],[7,35],[24,1],[39,-14],[23,-31],[33,-8],[0,-29],[-22,-27],[4,-35],[-47,18],[-12,-57],[61,-8],[-7,-29],[-21,-23],[-18,-43],[24,-27],[2,-27],[14,-37],[27,-33],[21,-25],[15,-17],[8,-10],[11,-54],[8,-38],[-1,-27],[8,-44],[7,-60],[23,-70],[14,-48],[5,-47],[23,-41],[21,-40],[35,-167],[10,-19],[33,-26],[7,-57],[13,-46],[-37,-17],[-12,30],[-8,31],[-15,42],[-21,61],[-47,143],[-12,38],[-11,43],[-16,40],[-7,28],[-13,33],[-18,42],[-15,56],[-16,47],[-17,42],[-24,54],[-17,44],[-14,30],[-14,28],[-5,24],[-18,23],[-15,27],[-20,33],[-29,44],[-31,47],[-21,30],[-26,33],[-23,26],[-39,41],[-28,28],[-33,34],[-28,31],[-27,38],[-28,33],[-19,36],[-22,51],[-9,39],[44,11],[33,-20],[38,-44],[29,-3],[22,-16],[26,-17],[26,-23],[38,-25],[35,-5],[19,-21],[-49,-12],[13,-26],[45,-38],[25,-9]],[[66611,47996],[-37,-5],[-28,27],[-13,44],[26,7],[31,-30],[21,-43]],[[73376,43457],[-7,-716],[0,-1],[-1,-252],[1,-247],[2,-142],[0,-52],[-2,-276],[-1,-108],[-2,-221]],[[73366,41442],[-214,4],[-20,0],[-21,0],[-117,1],[-64,0],[-82,-1],[-22,0],[-16,1],[-38,0],[-36,0],[-19,1],[-65,1],[-28,0],[-33,-2],[-15,0],[-14,0],[-17,0],[-15,0],[-28,0],[-17,-1],[-18,0],[-27,0],[-82,3],[-2,0],[-47,2],[-16,0],[-119,0],[-64,1],[-1,0],[-48,0],[-1223,8],[-14,-1],[-50,1],[0,25],[1,199],[0,220],[0,17],[0,20],[2,160],[0,83],[2,200],[0,39],[0,120],[0,77],[0,46],[0,10],[0,34],[2,19],[0,58],[-1,81],[1,38],[0,54],[2,103],[0,3],[0,72],[0,42],[1,66],[0,45],[0,52],[1,64],[1,235],[1,136],[0,188],[4,63],[-1,168],[-20,0],[-23,1],[-49,0],[-16,0],[-100,0],[-1,0],[-115,1],[-40,0],[-93,0],[-131,0],[-4,0],[-182,-2],[-33,0],[-22,0],[-194,3],[-29,0],[-53,1],[-56,0],[-83,1],[-49,0],[-38,0],[-281,1],[-39,0],[-149,3],[-44,0],[-58,-5],[-15,0],[-22,0],[-19,-1],[-69,0],[-36,0],[-15,0],[-23,0],[-43,0],[-18,0],[-14,0],[-63,0],[-18,0],[-14,0],[-19,-1],[-25,0],[-53,0],[-22,0],[-17,0],[-16,1],[-14,5],[-25,13],[-15,7],[-16,8],[-56,1],[-17,0],[-20,0],[-14,0],[-12,1],[-6,0],[-16,0],[-16,0],[-25,0],[-13,-1],[-21,-2],[-15,-2],[-26,-2],[-30,0],[-42,0],[-18,0],[-40,1],[-14,0],[-33,0],[-32,0],[-19,0],[-14,0],[-21,0],[-18,1],[-15,0],[-41,0],[-16,0],[-13,0],[-3,0],[-23,0],[-49,1],[-16,0],[-15,0],[-37,0],[-19,0],[-53,7],[-54,1],[-54,1],[-18,-1],[-45,1],[-25,0],[-20,-2],[-25,-3],[-19,-1],[-15,0],[-19,1],[-14,0],[-17,0],[-18,2],[-19,2],[-20,0],[-13,-2],[-1,0],[-14,-7],[-11,8],[-1,1],[-29,1],[-17,0],[-18,0],[-4,0],[-10,1],[-11,0],[-3,0],[-27,-4],[-22,0],[-34,2],[-34,1],[-18,0],[-55,0],[-15,0],[-15,1],[-20,1],[-20,-1],[-19,1]],[[66666,44242],[-19,42],[-15,44],[-9,33],[-16,50],[-28,59],[-33,46],[-26,26],[-21,27],[-1,44],[-40,6],[13,41],[-38,17],[-40,18],[-31,-14],[-33,36],[-26,24],[-35,20],[-33,21],[-26,10],[-30,24],[-38,9],[-52,5],[-36,7],[-42,1],[-49,-9],[-26,23],[-28,16],[-26,21],[-33,21],[-38,37],[-32,29],[-34,26],[-17,29],[-35,27],[-32,19],[-13,8],[-30,-9],[-12,15],[-12,16],[-7,-5],[-1,-1],[-18,-13],[-27,-8],[-32,-11],[-71,7],[-64,54],[-1,0],[-25,29],[-2,20],[-2,23],[24,0],[5,-3],[24,-17],[8,13],[3,5],[9,2],[41,12],[34,14],[-39,16],[-34,37],[-50,19],[-44,13],[-40,24],[-26,14],[-31,18],[-32,11],[-34,17],[-20,22],[-21,9],[-30,-3],[-28,18],[-22,42],[-5,43],[-22,41],[20,37],[39,-11],[49,-10],[33,12],[24,-7],[29,-14],[51,-7],[36,-15],[13,-29],[35,-42],[44,-17],[26,17],[18,-24],[11,-32],[38,-17],[47,29],[46,19],[35,3],[54,43],[18,24],[5,38],[-21,32],[-21,43],[-14,73],[19,42],[-9,69],[-4,46],[3,20],[4,24],[5,54],[0,15],[-23,12],[-30,18],[-42,10],[-23,-1],[-23,-2],[-63,-43],[-5,-25],[-13,-18],[5,-28],[-3,-11],[-2,-8],[1,-19],[-3,-19],[-12,-13],[-13,-9],[-12,13],[-11,-15],[14,-16],[-7,-14],[4,-25],[-12,-12],[-10,33],[-10,25],[-4,18],[-19,17],[-12,21],[-16,10],[5,-34],[9,-25],[2,-16],[10,-14],[-1,-17],[-17,-10],[-34,6],[-33,-1],[-31,-8],[-28,-24],[-47,-14],[-46,1],[0,40],[35,30],[34,35],[0,46],[-24,6],[-16,-31],[-32,-31],[-25,-20],[3,48],[-2,41],[5,11],[16,33],[2,61],[1,47],[-6,43],[25,60],[34,-10],[18,-45],[23,-46],[29,-17],[23,-20],[25,-37],[35,-34],[35,17],[-11,27],[-32,37],[-27,47],[-30,62],[-14,48],[-23,29],[46,48],[41,10],[52,17],[34,20],[34,2],[41,-3],[38,-16],[37,4],[34,9],[29,-1],[44,26],[46,11],[-9,-45],[26,-33],[25,1],[30,-2],[26,-16],[27,-7],[17,-37],[28,-28],[36,-6],[50,3],[36,3],[-15,-44],[23,-20],[22,-27],[38,5],[29,-11],[34,-16],[36,-20],[41,-9],[42,-1],[25,-29],[32,-5],[28,3],[38,6],[39,-30],[55,-14],[41,-29],[28,46],[36,-21],[47,2],[19,0],[38,1],[8,0],[59,20],[0,-1],[28,-27],[25,-8],[31,5],[39,-14],[23,6],[28,8],[30,11],[29,5],[36,9],[34,12],[21,4],[28,10],[17,24],[41,-21],[33,-34],[16,-30],[20,-34],[7,-12],[8,-35],[21,-1],[15,-22],[3,-40],[1,-34],[32,-24],[18,-49],[47,9],[37,-1],[16,-54],[27,27],[36,17],[33,-10],[17,-20],[32,-24],[23,-22],[17,-26],[11,-16],[7,52],[21,-37],[17,17],[-9,31],[-5,25],[-21,32],[-30,19],[-25,-8],[-36,28],[-53,59],[-37,25],[-19,18],[-25,24],[17,29],[-76,59],[-6,5],[-38,26],[-20,21],[-2,27],[8,45],[25,-2],[54,-11],[47,14],[22,24],[16,38],[26,26],[11,40],[8,33],[11,49],[2,1],[39,12],[47,8],[31,6],[32,7],[39,-16],[43,-15],[-26,-19],[-30,-46],[-14,-55],[12,-39],[29,27],[23,26],[28,6],[28,11],[25,23],[32,21],[31,8],[24,-15],[28,4],[24,12],[33,14],[49,-6],[41,21],[19,22],[27,4],[16,23],[24,-22],[6,-43],[24,-19],[40,-12],[49,-7],[38,9],[39,-4],[-13,23],[27,16],[11,6],[22,23],[5,5],[13,11],[9,9],[-48,7],[-41,-4],[-42,-23],[-32,4],[-31,12],[-25,39],[-42,11],[-27,16],[-22,21],[-33,14],[-23,19],[-48,12],[-55,13],[-41,14],[-31,21],[-15,-36],[-38,-38],[-26,-19],[-33,8],[-43,28],[-40,9],[-38,-8],[-33,2],[-35,0],[-18,-25],[-33,5],[-41,-13],[-39,-8],[-5,-3],[-33,-20],[-26,-47],[-13,-48],[-28,-7],[-17,-28],[-33,-11],[-37,-9],[-39,3],[-25,-9],[-34,2],[-31,-9],[-18,-22],[-36,-34],[-30,-9],[-33,-9],[-35,-23],[-62,25],[-37,1],[-27,-18],[-34,-11],[-43,-15],[-40,-16],[-5,12],[-14,33],[-12,50],[-20,-27],[-27,12],[-6,-4],[-46,-33],[-2,1],[-31,11],[-53,9],[-57,13],[-40,11],[-36,6],[-43,37],[-7,43],[-26,-4],[-28,2],[-43,-12],[-45,-15],[-1,37],[-28,27],[-21,17],[-19,13],[-24,18],[-39,8],[-27,0],[-24,-4],[-35,-12],[-22,35],[-23,34],[-43,30],[-33,17],[-34,14],[-46,14],[-52,4],[-36,8],[44,28],[27,9],[46,24],[45,-20],[44,4],[30,-13],[44,7],[44,-14],[31,8],[26,-18],[13,30],[-13,41],[-20,28],[49,5],[35,15],[30,1],[-12,-39],[16,-44],[-13,-37],[-47,-63],[23,-44],[33,-23],[15,-22],[42,11],[33,32],[-9,35],[28,5],[30,25],[24,35],[25,25],[23,29],[28,36],[18,45],[35,41],[22,27],[45,27],[31,-1],[49,-6],[10,35],[-13,50],[-7,48],[-3,43],[9,27],[36,-31],[22,28],[26,43],[-25,55],[-187,8],[-31,-28],[-26,-44],[-24,-34],[-16,-24],[-47,-6],[-32,-7],[-3,-1],[-26,-2],[-29,-22],[-21,-8],[-22,-10],[-51,-19],[-38,-48],[-41,-2],[-38,-7],[-49,-18],[-30,-13],[-15,-6],[-14,3],[-57,15],[-19,-31],[-20,19],[10,24],[12,21],[5,8],[7,16],[11,25],[11,19],[5,10],[26,38],[19,12],[56,44],[14,15],[6,6],[9,11],[22,29],[32,38],[25,-2],[-6,-39],[2,-26],[-21,-7],[-22,-36],[40,-21],[10,-6],[20,-9],[5,0],[31,0],[30,-23],[21,38],[30,22],[34,-2],[3,0],[12,25],[3,6],[18,33],[27,28],[11,37],[46,-7],[20,9],[27,10],[-15,38],[-34,-4],[-24,0],[-37,7],[13,56],[-8,3],[-28,11],[-30,-28],[-38,-24],[-49,13],[12,44],[14,34],[-16,23],[10,8],[19,14],[52,7],[31,-7],[22,39],[48,15],[2,0],[7,4],[37,19],[52,12],[39,1],[-5,18],[-7,20],[-12,36],[27,20],[11,8],[17,-20],[22,-15],[49,-37],[-5,14],[-15,42],[-7,25],[-8,32],[-7,40],[-10,-2],[-31,-6],[9,47],[29,30],[49,8],[11,-54],[17,7],[18,7],[34,-6],[26,-2],[32,-21],[30,-13],[22,-29],[4,-6],[4,-2],[15,-10],[24,-15],[4,37],[-21,14],[-5,26],[37,-8],[38,-7],[47,12],[-44,33],[6,33],[-29,41],[-11,16],[-39,-12],[-20,3],[-13,2],[-4,45],[11,27],[-20,4],[-10,2],[-5,41],[-7,-2],[-35,-8],[1,-24],[1,-44],[-39,-21],[-39,-6],[24,44],[16,32],[4,21],[3,18],[6,11],[7,13],[6,36],[-7,43],[-4,30],[-1,13],[-1,4],[15,50],[42,2],[13,40],[-51,20],[3,41],[48,12],[16,49],[32,17],[42,34]],[[91472,46856],[0,-54],[0,-59],[0,-71],[0,-34],[0,-24],[-1,-62],[0,-37],[0,-40],[-2,-43],[1,-40],[0,-37],[0,-19],[1,-53],[0,-92],[0,-17],[2,-163],[2,-53],[1,-22],[0,-30],[2,-85],[1,-50],[0,-20],[1,-62],[1,-55],[1,-114],[-1,-78],[-2,-155],[0,-17],[5,-56],[2,-19],[2,-35],[0,-2],[-1,-21],[0,-20],[0,-29],[0,-29],[0,-16],[-1,-32],[0,-15],[0,-18],[0,-21],[0,-30],[-1,-42],[0,-33],[0,-52],[1,-28],[0,-30],[1,-111],[1,-52],[0,-43],[1,-66],[2,-130],[0,-10],[0,-48],[0,-31],[0,-19],[1,-28],[1,-55],[1,-35],[0,-22],[1,-63],[-1,-48],[1,-63],[1,-331],[2,-580],[0,-64],[1,-42],[-1,-54],[-11,-73],[2,-417],[1,-120],[1,-138],[5,-88],[-1,-36],[1,-20],[0,-173],[1,-367]],[[91497,41415],[1,-47],[0,-94],[0,-197],[1,-250],[0,-32],[0,-47],[1,-36],[0,-18],[0,-2],[0,-17],[0,-32],[2,-115],[1,-101],[0,-61],[1,-75],[0,-77],[0,-44],[-1,-50],[-12,-20],[-11,-11],[-45,-45],[-143,-141],[-387,-361],[-176,-164],[-177,-166],[-238,-212],[-18,-16],[-836,-744],[-48,-44],[-504,-465],[-22,-19],[-121,-111]],[[88765,37601],[16,238],[26,401],[41,594],[41,594],[5,86],[14,191],[0,76],[1,15],[25,374],[9,134],[1,19],[3,43],[4,79],[1,2],[0,1],[1,21],[2,28],[-10,23],[-14,21],[3,6],[7,15],[19,13],[5,22],[-7,20],[-6,15],[-18,11],[-26,22],[-22,17],[-19,36],[-31,58],[-10,21],[17,17],[15,12],[-3,22],[-17,-6],[-31,-14],[-34,-15],[-13,-7],[-12,-5],[-44,-29],[-5,9],[-11,17],[-13,14],[-8,-12],[-15,-9],[-8,17],[-23,-4],[-20,6],[5,20],[7,22],[-1,16],[-19,4],[-12,-10],[-17,-2],[-16,-9],[-17,-4],[21,23],[-17,1],[-15,13],[-20,8],[-14,9],[-13,7],[-12,12],[-20,19],[0,16],[19,-1],[4,19],[1,16],[22,8],[6,21],[-14,-3],[-11,21],[-6,22],[11,9],[-9,14],[-6,20],[14,7],[7,13],[5,7],[8,16],[-13,10],[-10,-12],[-6,1],[-7,2],[-13,8],[-14,6],[0,17],[3,12],[1,4],[-4,1],[-11,0],[-15,2],[1,-19],[-17,-14],[-19,15],[-16,4],[-13,-6],[-17,15],[-7,19],[-1,15],[-14,2],[-10,-10],[-15,3],[-13,17],[-15,9],[-1,30],[-13,10],[-16,-10],[-16,-8],[-13,1],[3,16],[25,6],[10,11],[-29,11],[-23,13],[-16,0],[0,-19],[-13,-19],[-13,-18],[0,-1],[-16,5],[8,24],[-26,8],[-12,6],[-6,19],[0,22],[3,39],[-11,9],[-19,2],[-13,14],[-20,15],[-10,10],[-3,24],[1,14],[0,7]],[[97783,42295],[-17,0],[-11,0],[-8,1],[-16,0],[-25,0],[-26,0],[-28,0]],[[97652,42296],[4,17],[4,20],[9,43],[-10,47],[-34,61],[6,28],[-30,33],[-2,51],[-19,40],[-16,6],[-119,-50],[-6,18],[-18,64],[70,31],[-62,36],[1,53],[24,90],[25,52],[7,35],[-21,72],[-22,84],[-58,101],[-47,44],[-39,36],[39,8],[-32,19],[-15,40],[0,92],[-19,37],[-38,3],[-78,-58],[-31,33],[-35,40],[-56,52],[-16,33],[19,7],[50,-26],[38,0],[31,41],[31,72],[4,9],[-7,-1],[-15,-3],[-36,-37],[-24,-25],[-59,3],[-22,37],[9,19],[6,14],[-11,4],[-23,7],[-2,22],[-8,85],[0,48],[19,110],[0,59],[-25,29],[-14,89],[-7,42],[-4,24],[-38,33],[0,73],[-28,52],[0,48],[-3,-3],[-47,-34],[-37,11],[-10,28],[-6,20],[-1,5],[-3,11],[-24,83],[-35,121],[-37,125],[31,15],[-16,33],[-53,19],[-25,-26],[-53,-7],[-72,58],[-13,122],[31,110],[6,1],[14,2],[1,0],[8,1],[47,29],[0,55],[-22,74],[-19,40],[-60,-14],[-22,14],[19,37],[-59,-4],[-19,-62],[-91,-22],[-28,26],[-35,-26],[-22,30],[-6,7],[19,29],[56,0],[60,52],[28,0],[16,11],[37,36],[66,33],[48,10],[27,5],[0,-51],[22,-70],[69,-184],[69,-213],[9,-28],[4,-14],[81,-264],[71,-186],[26,-71],[84,-214],[17,-44],[81,-169],[13,-25],[48,-112],[64,-146],[94,-224],[112,-350],[30,-73],[15,-37],[20,-45],[14,-35],[21,-60],[14,-41],[14,-35],[11,-42],[15,-31],[18,-50],[17,-40],[13,-31],[20,-41],[22,-60],[20,-55],[17,-45],[11,-26],[29,-90]],[[96190,46839],[10,-37],[26,-93],[10,-47],[12,-52],[22,-95],[22,-93],[88,-259],[74,-174],[8,-15],[30,-92],[31,-112],[15,-69],[37,-91],[23,-69],[-41,-11],[-17,-4],[-34,8],[-30,-21],[-49,-12],[27,42],[-36,17],[-54,51],[-60,1],[2,13],[2,18],[19,39],[31,35],[24,29],[21,35],[7,30],[-19,13],[-1,21],[47,37],[-2,24],[-12,0],[-4,-7],[-6,-13],[-1,-4],[-2,2],[-2,4],[-3,5],[2,15],[-12,8],[-15,-37],[-6,-13],[-16,-39],[2,-13],[5,-24],[-39,-46],[-9,60],[-8,35],[-7,33],[1,6],[1,8],[22,6],[13,17],[-10,9],[-32,-14],[-11,-14],[-11,-14],[-4,-31],[2,-22],[2,-22],[0,-48],[8,-32],[5,-29],[-31,-30],[-42,39],[-17,35],[29,13],[-23,19],[-16,13],[-4,14],[-6,18],[1,18],[0,15],[12,35],[0,1],[12,38],[-12,24],[-46,3],[20,29],[5,8],[-21,40],[-24,18],[25,23],[27,21],[-13,42],[-47,36],[11,32],[30,-4],[14,37],[-28,13],[-48,-3],[16,48],[6,18],[-8,35],[21,60],[23,40],[29,-21],[27,-20],[29,-26],[-9,75],[-13,24],[-47,24],[-28,13],[-1,1],[-39,22],[-31,17],[-10,10],[-13,12],[-32,24],[-19,18],[-14,23],[3,14],[9,34],[14,11],[7,5],[35,7],[0,-9],[2,-23],[14,8],[21,11],[24,23],[-5,36],[-43,29],[-30,15],[0,15],[0,13],[11,13]],[[95727,46837],[15,-45],[-3,-38],[28,-32],[13,-51],[9,-37],[-1,-35],[-5,-30],[20,-29],[11,-49],[17,-26],[6,-63],[18,-77],[21,-70],[11,-51],[11,-47],[8,-53],[17,-71],[14,-48],[15,-56],[13,-39],[14,-42],[13,-39],[14,-29],[7,-36],[7,-43],[13,-47],[-1,-27],[8,-32],[8,-30],[7,-27],[27,-41],[2,-2],[17,-17],[23,-36],[31,-2],[1,0],[30,-67],[-21,-25],[-5,-43],[-6,-29],[2,-7],[13,-65],[8,-30],[12,-29],[-5,-45],[53,-171],[84,-264],[35,-92],[10,-26],[17,-47],[12,-32],[27,-73],[19,-42],[12,-35],[14,-36],[11,-30],[13,-30],[21,-49],[22,-59],[19,-45],[22,-49],[15,-32],[14,-35],[21,-51],[17,-45],[22,-51],[26,-58],[15,-33],[14,-34],[13,-33],[17,-41],[20,-47],[13,-28],[20,-49],[26,-64],[18,-36],[11,-36],[17,-46],[16,-43],[18,-39],[17,-36],[26,-65],[21,-43],[16,-37],[17,-39],[17,-37],[15,-33],[20,-44],[23,-52],[16,-35],[15,-32],[15,-35],[14,-24],[13,-24],[21,-47],[21,-58],[12,-37],[20,-36],[21,-46],[10,-31],[26,-37],[20,-30],[30,-42],[14,-24]],[[97348,42295],[-15,0],[-34,0],[-7,0],[-15,0],[-17,0],[-13,0],[-20,0],[-5,0],[-10,0],[-84,3],[-15,0],[-85,2],[-120,3],[-97,2],[-38,1],[-15,0],[-68,2],[-14,-1],[-9,-1],[-1,-67],[0,-83],[-1,-75],[0,-21],[0,-31],[-5,-29],[1,-32],[2,-79],[0,-31],[0,-48]],[[96663,41810],[-83,78],[-9,46],[-98,47],[-117,4],[-37,-22],[-12,30],[-50,15],[-43,27],[-18,52],[1,33],[-34,30],[-22,18],[-2,-31],[-1,-15],[11,-51],[8,-36],[2,-1],[22,-11],[8,-14],[14,-24],[-19,-10],[-21,-11],[4,-34],[11,-21],[37,-6],[39,-24],[28,-22],[47,-6],[34,-6],[45,-24],[32,-24],[40,-21],[21,-32],[23,-31],[29,-39],[29,-39],[24,-19],[11,-36],[16,-65],[25,-45]],[[96658,41470],[0,-55],[-15,-1],[-63,0],[-26,0],[-129,-1],[-162,-9],[-202,2],[-12,0],[-5,0],[-101,0],[-449,5],[-27,-1],[-235,3],[-68,0],[-9,0],[-25,0],[-33,0],[-147,2],[-225,1],[-6,0],[-41,1],[-39,-1],[-10,0],[-52,1],[-65,1],[-60,0],[-47,1],[-119,0],[-63,0],[-31,1],[-19,0],[-13,0],[-70,1],[-5,0],[-6,0],[-20,-1],[-155,1],[-36,0],[-28,0],[-34,0],[-29,0],[-33,0],[-7,0],[-23,0],[-25,0],[-6,0],[-30,0],[-29,-1],[-31,1],[-24,0],[-5,0],[-32,-1],[-2,0],[-28,0],[-30,0],[-30,-1],[-31,0],[-41,0],[-31,-1],[-77,1],[-31,0],[-73,-1],[-88,-2],[-6,0],[-107,0],[-56,0],[-83,-1],[-8,0],[-14,0],[-20,0],[-2,0],[-95,1],[-342,2],[-141,1],[-237,-1],[-424,-3],[-38,0]],[[69234,37402],[-35,0]],[[69199,37402],[-29,28],[-31,62],[-26,49],[-10,41],[29,-24],[34,-36],[28,-39],[20,-36],[20,-45]],[[69081,37703],[26,-40],[-40,7],[-24,26],[-35,22],[-21,34],[-21,34],[-24,36],[-16,30],[-22,35],[-19,35],[-15,30],[-17,35],[-21,49],[-15,38],[-25,61],[-13,30],[-13,57],[33,-39],[10,-29],[16,-21],[15,-29],[15,-29],[20,-44],[19,-45],[21,-37],[21,-49],[26,-27],[23,-34],[7,-56],[19,-30],[37,-27],[33,-23]],[[67487,41393],[8,-20],[-13,-7],[-5,22],[-14,-5],[-12,-27],[9,-18],[0,-1],[1,0],[4,-14],[2,-9],[11,-42],[11,-30],[0,-1],[9,-20],[10,-28],[14,-41],[4,-17],[11,-25],[1,-20],[15,-14],[13,-8],[-17,-17],[8,-18],[10,-19],[7,-32],[11,-18],[12,-8],[7,14],[8,-20],[12,-16],[-4,-17],[-2,-1],[1,-27],[30,-54],[9,-12],[4,-16],[14,-24],[9,-16],[7,-16],[9,-12],[7,-21],[13,-9],[9,-25],[3,-15],[16,-9],[3,-15],[5,-21],[7,-14],[11,-23],[9,-19],[17,-10],[14,0],[-16,-23],[13,-25],[29,-59],[12,-9],[0,-23],[14,-5],[18,-18],[21,-3],[0,-16],[2,-15],[-1,-20],[-10,-15],[-17,6],[11,-17],[17,-25],[2,-24],[8,-18],[-5,-30],[6,-17],[12,-23],[4,-30],[11,-54],[5,-19],[10,-20],[13,-40],[7,-16],[-11,-12],[-24,-7],[-16,-4],[13,14],[-2,21],[-8,43],[-12,62],[-8,40],[-8,37],[-8,31],[-12,50],[-9,40],[-6,23],[-7,24],[-39,100],[-60,124],[-32,75],[-34,62],[-27,49],[-14,24],[-14,24],[-9,20],[-19,36],[-37,54],[-7,26],[-17,66],[-27,49],[4,31],[-17,42],[-9,39],[-16,36],[-19,39],[-1,5],[-15,44],[-13,26],[-20,29],[-17,35],[-3,37],[35,-17],[15,-13],[21,-2],[15,-9]],[[67457,41572],[6,-22],[-10,-13],[10,-17],[-11,-9],[13,-20],[-9,-18],[-12,-13],[-10,-12],[-20,4],[-15,4],[-9,12],[17,20],[-1,23],[4,19],[-21,24],[-10,21],[22,-9],[20,-2],[5,25],[12,-6],[19,-11]],[[66815,42802],[11,-29],[-34,3],[14,-42],[5,-37],[21,-17],[17,-26],[12,-41],[24,-36],[14,-38],[29,-37],[17,8],[11,-42],[15,-62],[18,-43],[4,-20],[10,-15],[5,-25],[12,-9],[32,-46],[33,-46],[21,-32],[12,-21],[10,-20],[8,-12],[8,-17],[20,-37],[4,-19],[7,-26],[17,-26],[21,-33],[38,18],[-9,-18],[-15,-16],[6,-36],[13,-39],[21,-17],[3,-16],[12,-26],[4,-32],[16,-31],[11,-10],[23,-62],[6,-30],[9,-19],[0,-17],[7,-50],[34,-63],[-12,-12],[-21,38],[-25,13],[-16,42],[-14,36],[-14,35],[-15,36],[0,39],[-22,41],[-6,33],[-25,14],[-23,41],[-24,34],[-27,28],[1,39],[-40,4],[-34,37],[-17,40],[-2,36],[-19,49],[-18,33],[-23,34],[-23,30],[-26,29],[-36,33],[-48,35],[-35,23],[-40,21],[-56,19],[-43,22],[-8,30],[-29,29],[-27,37],[-9,40],[3,25],[24,21],[21,19],[20,28],[22,45],[17,30],[15,42],[9,67],[1,47],[6,30],[36,42],[51,3],[21,-2],[26,-9],[27,-16],[-24,-12],[-7,-23],[-56,-11],[-1,-36],[-12,-21]],[[66770,43061],[-28,-31],[-19,30],[-15,27],[-3,30],[2,37],[13,29],[-19,24],[-6,48],[30,36],[34,15],[-11,-39],[1,-36],[9,-28],[33,-17],[1,-34],[-5,-45],[-17,-46]],[[66565,43169],[19,-50],[17,22],[22,-25],[3,-38],[-6,-41],[24,-50],[35,-33],[-14,-52],[7,-43],[-11,-28],[-35,17],[-22,30],[-22,50],[-23,50],[-24,38],[-27,39],[-31,42],[-22,25],[-22,16],[-26,15],[-26,38],[-12,55],[15,39],[21,28],[30,27],[36,12],[-17,-36],[-16,-44],[34,-42],[28,-12],[33,-11],[32,-38]],[[66558,43388],[-26,-26],[-35,13],[16,31],[23,24],[29,17],[13,-27],[-20,-32]],[[73366,41442],[-1,-60],[0,-2],[-1,-149],[0,-18],[-5,-233],[-2,-221],[-1,-63],[-1,-162],[-2,-213],[-2,-151],[3,-86],[0,-231],[-1,-437],[-1,-211],[0,-105],[0,-21],[0,-31],[1,-126],[0,-31],[0,-84],[0,-30],[0,-12],[0,-4],[-2,-30]],[[73351,38731],[-27,0],[-19,0],[-43,0],[-14,0],[-15,0],[-18,0],[-16,0],[-19,0],[-19,0],[-18,0],[-19,0],[-20,0],[-31,1],[-17,0],[-28,0],[-39,1],[-19,0],[-28,0],[-18,4],[-14,-3],[-18,-1],[-72,1],[-48,1],[-13,3],[-68,0],[-35,0],[-36,0],[-69,0],[-20,0],[-23,-1],[-18,1],[-22,0],[-20,0],[-24,0],[-20,0],[-16,0],[-36,0],[-18,0],[-31,0],[-14,0],[-18,1],[-25,0],[-26,0],[-27,0],[-24,0],[-17,1],[-27,0],[-19,0],[-15,0],[-25,0],[-16,0],[-40,0],[-51,0],[-16,0],[-46,1],[-46,0],[-16,0],[-46,0],[-19,0],[-73,0],[-61,0],[-18,0],[-58,1],[-96,0],[-18,2],[-32,-2],[-5,0],[-10,-1],[-24,1],[-40,0],[-49,0],[-43,1],[-19,0],[-14,0],[-51,0],[-60,0],[-38,0],[-21,0],[-18,0],[-18,1],[-27,0],[-27,0],[-25,0],[-23,0],[-14,0],[-23,0],[-36,0],[-29,-1],[-8,0],[-14,1],[-25,0],[-1,-25],[0,-4],[-1,-195],[0,-43],[0,-84],[0,-68]],[[70751,38325],[-27,2],[-39,6],[-13,28],[13,41],[-33,31],[-30,-36],[-25,51],[-24,27],[34,12],[-13,41],[-18,27],[-11,40],[17,23],[-30,1],[-1,30],[0,2],[-4,2],[-26,10],[-24,-39],[-4,-66],[18,-47],[8,-31],[29,-31],[14,-35],[6,-42],[18,-34],[34,-13],[16,-16],[6,-54],[39,-33],[49,2],[21,-8]],[[70751,38216],[1,-71],[0,-75],[-1,-54],[0,-44],[0,-51],[-1,-79],[0,-52],[0,-31],[0,-29],[0,-38],[0,-23],[0,-52],[-1,-37],[0,-24],[0,-42],[0,-36],[0,-24],[0,-26],[-1,-37],[-42,-1],[-42,1],[-23,0],[-52,0],[-63,1],[-51,0],[-56,1],[-19,1],[-92,0],[-14,0],[-82,0],[-48,0],[-53,2],[-129,1],[-14,0],[-19,0],[-19,0],[-31,0],[-19,-1],[-17,0],[-10,1],[-6,0],[-29,2],[-40,1],[-15,-1],[-22,0],[-24,0],[-24,0],[-20,0],[-23,-6],[-51,6],[-16,0],[-10,0],[-10,0],[-15,0],[-21,0],[-1,0],[-23,1],[-26,0],[-19,1]],[[69458,37401],[-20,27],[-18,53],[-27,42],[-23,31],[-32,5],[2,37],[-25,43],[-32,24],[-16,30],[-17,48],[-28,29],[-31,0],[-12,47],[-24,30],[-31,45],[-30,29],[-24,22],[-35,12],[-1,31],[-30,38],[-20,55],[-26,-1],[-12,23],[-6,30],[18,14],[16,25],[8,42],[-32,-39],[-31,-16],[-33,20],[-29,35],[-24,40],[-15,27],[-14,31],[-31,45],[-25,44],[-22,17],[-4,3],[-14,-34],[19,-23],[16,-38],[13,-37],[7,-34],[-30,27],[-13,31],[-26,59],[-20,40],[-6,41],[-10,45],[-27,21],[-20,38],[-24,36],[-18,29],[-26,26],[0,61],[-31,44],[-36,38],[7,42],[-44,9],[-18,57],[-28,53],[-23,36],[-23,47],[-27,37],[-26,35],[-13,26],[-19,6],[-7,49],[-11,33],[-23,29],[-10,33],[3,24],[-15,31],[-17,25],[-10,50],[-19,50],[-14,44],[-10,40],[-8,25],[-13,36],[-19,56],[-19,52],[-17,58],[-12,39],[-11,32],[-17,46],[-18,42],[-15,28],[-20,11],[20,-1],[15,-11],[15,6],[37,14],[3,-27],[6,-24],[-17,-16],[26,-22],[15,-4],[25,4],[20,15],[14,7],[43,-11],[27,-17],[-2,-21],[27,-23],[22,-8],[25,-17],[-4,6],[-2,2],[-7,11],[-13,7],[-5,19],[-18,12],[-15,17],[8,21],[-9,37],[6,15],[-1,21],[-27,8],[-56,-16],[-10,-14],[-28,-24],[-7,15],[6,20],[-3,16],[24,-5],[17,2],[19,31],[11,10],[10,14],[-11,28],[-6,16],[-14,-11],[-15,-14],[-26,-26],[-37,-13],[-25,-11],[-5,-15],[-16,4],[-12,26],[-18,-1],[-15,34],[20,-4],[12,-23],[15,19],[10,34],[8,19],[1,20],[16,24],[-18,-11],[-19,16],[10,15],[5,15],[-24,-4],[-7,-15],[5,-49],[-8,-17],[-10,-18],[-9,23],[-10,13],[-13,9],[-12,6],[-5,29],[-3,24],[6,26],[-10,23],[0,40],[6,25],[3,18],[2,19],[0,20],[-2,23],[-7,29],[2,25],[-11,9],[-14,11],[5,23],[-13,56],[-8,23],[-34,22],[-4,23],[-27,34],[-28,44],[-8,12],[-13,28],[-10,15],[-20,7],[-17,21],[-10,16],[0,18],[-11,27],[5,15],[-15,16],[-4,25],[-7,24],[-16,20],[16,-2],[16,9],[-9,11],[-23,5],[-13,6],[-24,13],[2,17],[-3,22],[-11,9],[-14,-6],[-7,16],[18,0],[15,25],[0,21],[-4,19],[17,27],[-10,41],[0,40],[-16,11],[-9,13],[3,45],[-13,54],[-7,25],[-21,21],[-16,16],[-40,1],[18,14],[15,9],[-12,15],[-4,32],[-10,16],[-11,17],[0,18],[11,19],[2,18],[8,15],[-8,21],[-19,13],[9,17],[-14,5],[-19,50],[4,31],[-3,23],[0,18],[14,4],[-40,24],[-5,17],[4,58],[-22,15],[-19,24],[-2,39],[-18,8],[-6,16],[-22,-18],[-17,15],[-14,16],[-19,48],[-19,11],[-21,-23],[-19,7],[15,13],[13,12],[-2,22],[-19,16],[1,24],[5,24],[-13,9],[-7,-17],[-17,0],[-11,19],[-20,6],[-9,14],[-43,24],[-25,-4],[-19,39],[0,21],[8,13],[-5,17],[-20,12],[-17,-1],[-17,5],[-12,19],[14,-6],[-13,20],[10,15],[2,20],[-4,16],[-36,39],[-1,17],[26,16],[22,2],[14,2],[14,14],[22,12],[7,13],[-19,-2],[-38,-17],[-18,-4],[-28,-6],[-29,-4],[-22,4],[-7,47],[-8,14],[0,18],[41,36],[-3,57],[-6,65],[5,38],[-32,21],[27,8],[4,34],[3,47],[-17,49],[3,44],[15,60],[24,25],[-8,37],[5,32],[-6,44],[-23,16],[-24,3],[-26,10],[22,41],[15,53],[18,29],[-5,35],[-13,52],[-30,14],[-29,2],[11,49],[-39,5],[-20,-53],[-32,49],[19,29],[16,23],[-17,19],[1,33],[20,55],[4,35],[-19,43],[-14,47],[-18,37],[-21,42],[-3,44],[-37,72],[-18,40],[-37,52],[-35,40],[-11,41],[11,42],[-5,61],[-11,48],[-3,31]],[[65719,44251],[39,-75],[9,-36],[-2,-38],[14,-34],[30,-21],[25,60],[14,29],[19,19],[48,-14],[41,-29],[47,-41],[-5,-62],[-23,-23],[16,-43],[-4,-26],[14,-33],[11,-29],[15,-29],[29,-30],[14,-30],[5,-36],[18,-23],[24,-18],[15,-31],[37,4],[38,-39],[41,-21],[-2,-42],[29,-30],[32,-20],[31,-26],[37,-14],[37,-10],[39,-9],[-14,-49],[-35,-1],[-17,-29],[5,-32],[-21,-21],[-26,3],[-33,27],[-47,58],[-28,39],[-30,38],[-50,58],[-85,91],[-33,34],[-40,56],[-43,52],[-28,29],[-30,47],[-37,56],[-32,49],[-24,37],[-22,33],[-32,52],[-20,34],[-13,26],[-18,40],[-30,73]],[[79860,38755],[-486,1],[-59,0],[-96,0],[-197,0],[-106,0],[-51,0],[-48,0],[-55,1],[-29,0],[-15,0],[-39,0],[-51,0],[-57,0],[-9,0],[-7,0],[-14,0],[-24,0],[-55,0],[-14,0],[-50,0],[-20,0],[-15,0],[-46,0],[-36,0],[-76,0],[-32,0],[-75,1],[-158,2],[-200,-3],[-87,1],[-28,0],[-146,0],[-107,0],[-25,0],[-84,0],[-42,0],[-111,0],[-5,0],[-274,2],[-26,0],[-218,2],[-102,0],[-81,1],[-18,0],[-260,2],[-1,0],[-60,1],[-20,0],[-54,0],[-50,1],[-58,0],[-195,2],[-68,0],[-45,1],[-64,0],[-16,0],[-127,1],[-255,2],[-180,1],[-19,0],[-18,0],[-138,1],[-107,1],[-3,0],[-11,-1],[-39,1],[-32,-1],[-16,1],[-6,1],[-25,-1],[-177,3],[-20,0],[-30,1],[-28,-12],[-32,-12],[-1,-1],[-13,-5],[-12,-5],[-56,-19],[-3,0],[-33,-2],[-110,1],[-333,2],[-91,1],[-113,1],[-41,0],[-46,0],[-3,1],[-26,1]],[[99356,37780],[-23,0]],[[99333,37780],[-1,23],[-22,51],[-29,80],[-47,96],[-10,29],[5,17],[-6,51],[-2,41],[-11,23],[0,34],[2,28],[-25,82],[-23,57],[-40,109],[-64,177],[-41,100],[-6,44],[-23,72],[-14,47],[-23,19],[7,18],[-8,25],[-26,15],[-39,6],[-17,26],[-2,34],[6,37],[-10,13],[9,14],[0,18],[-20,0],[-8,-18],[-16,29],[-19,69],[-26,57],[-52,147],[-13,29],[-11,63],[-12,15],[-68,73],[15,-1],[31,-20],[-2,36],[-16,9],[-17,-6],[-13,10],[-10,114],[-9,26],[-16,25],[-19,60],[-17,36],[15,1],[-5,25],[-2,51],[-17,56],[-1,2],[-40,43],[-34,30],[-23,53],[1,9],[2,18],[2,11],[1,6],[-1,11],[-2,19],[12,24],[3,21],[-14,-6],[-6,-21],[-5,-6],[-5,-7],[0,-36],[-94,126],[-44,58],[-14,66],[-4,25],[-3,23],[-1,42],[-42,20],[-30,42],[-9,14],[-2,2],[-21,-2],[-27,24],[-32,28],[-7,27],[-31,28],[12,26],[40,-21],[25,-4],[80,21],[39,2],[68,-20],[83,-206],[17,-82],[11,-55],[20,-43],[5,-12],[6,-16],[15,-48],[8,-30],[9,-32],[7,-22],[10,-37],[1,-34],[23,-72],[8,-23],[31,-89],[22,-50],[11,-23],[21,-50],[17,-40],[24,-45],[20,-44],[22,-46],[17,-36],[17,-30],[20,-30],[15,-33],[15,-32],[19,-37],[24,-54],[23,-61],[6,-22],[11,-40],[8,-29],[25,-52],[24,-58],[21,-49],[13,-31],[14,-42],[9,-24],[16,-48],[16,-43],[6,-26],[11,-34],[37,-79],[15,-36],[13,-38],[15,-52],[20,-62],[13,-38],[10,-39],[10,-34],[12,-50],[12,-44],[10,-38],[7,-39],[6,-51],[4,-32],[4,-40],[6,-48],[16,-55],[14,-37],[12,-36],[13,-29],[15,-44],[18,-56],[14,-83]],[[99284,37782],[-22,0],[-14,0],[-28,0],[-42,0],[-11,0],[-7,1],[-15,0],[-20,0],[-14,0],[-17,0],[-22,0],[-15,0],[-19,1],[-14,-1],[-36,0]],[[98988,37783],[-37,43],[-16,18],[-7,29],[5,17],[16,17],[-9,22],[-3,26],[-29,14],[13,-31],[4,-32],[-12,-43],[0,-23],[14,-26],[18,-29]],[[98945,37785],[-35,0],[-17,0],[-74,0],[-33,1],[-18,0]],[[98768,37786],[-16,37],[-19,2],[-13,8],[-14,0],[-15,12],[-7,18],[-6,21],[-50,31],[-36,30],[-4,40],[-17,6],[-5,26],[-23,19],[-14,-28],[12,-17],[3,25],[13,-13],[0,-18],[22,-18],[-1,-23],[14,-21],[22,-16],[17,-16],[35,-16],[5,-14],[0,-21],[30,-28],[23,-3],[13,-23],[-24,0],[-33,6],[-20,24],[0,40],[-23,-2],[-17,-31],[44,-37]],[[98664,37786],[-20,0],[-14,0],[-16,0],[-37,0],[-29,0],[-3,-72],[0,-56],[-1,-92],[-31,-1],[-79,0],[-46,0],[-78,0],[-51,0],[-14,0],[-16,0],[-20,0],[-32,0],[-83,0],[-85,0],[-76,0],[-28,1],[-29,1],[-58,2],[-49,1],[-145,0],[-18,0],[-172,0],[-154,3],[-67,2],[-85,-2],[-34,1],[-36,1],[-10,0],[-412,9],[-699,5],[-82,0],[-24,1],[-106,0],[-103,1],[-130,1],[-11,0],[-22,0],[-33,0],[-5,0],[-68,0],[-46,0],[-387,-10],[-165,1],[-127,1],[-39,0],[-95,1],[-1,0],[-39,0],[-388,0],[-226,4],[-255,-1],[-168,0],[-388,-2],[-36,0],[-177,0],[-36,-1],[-219,0],[-56,0],[-79,-1],[-7,0],[-8,0],[-19,0],[-23,0],[-28,0],[-145,0],[-65,-1],[-485,6],[-1094,13],[-1575,0],[-69,0],[-143,-1]],[[96658,41470],[14,-48],[11,-21],[2,-5],[45,6],[43,-3],[27,-1],[15,-15],[36,2],[9,30],[17,-28],[6,-50],[11,-34],[12,-36],[-31,-32],[-18,-30],[-27,-29],[3,-30],[36,-25],[22,-35],[-10,-52],[26,-53],[12,-40],[29,-38],[0,-2],[7,-33],[-5,-37],[23,-39],[45,-32],[0,-56],[-11,-42],[28,12],[25,16],[13,-8],[15,-8],[15,52],[-8,46],[-31,23],[10,51],[-26,34],[2,35],[-27,23],[-3,3],[-17,22],[-10,31],[-1,39],[-2,40],[10,46],[10,28],[-25,41],[-17,32],[27,28],[10,35],[18,56],[1,2],[3,-1],[11,-3],[28,-7],[29,-10],[28,-8],[33,-5],[34,7],[46,25],[42,-3],[27,-11],[34,-1],[30,-2],[48,47],[27,18],[41,11],[29,9],[34,-10],[45,-23],[8,-57],[28,-30],[17,-18],[-8,-77],[9,-68],[40,-59],[45,-31],[32,-15],[32,-5],[32,-7],[-26,-40],[-13,-24],[-24,-26],[11,-44],[37,-30],[18,-30],[18,-33],[38,-14],[-5,-33],[37,15],[47,14],[22,15],[36,-3],[25,-26],[7,-37],[36,-41],[51,-37],[17,-25],[20,-36],[23,-40],[12,-32],[13,-28],[24,-44],[41,-56],[43,-47],[57,-78],[19,-31],[12,-10],[5,-21],[-20,8],[10,-28],[-15,-32],[2,-20],[30,-19],[20,-32],[26,-61],[26,-48],[52,-94],[19,-46],[19,-51],[7,-84],[12,-58],[69,-83],[23,-70],[6,-27],[38,-103],[41,-105],[25,-62],[-30,-37],[13,-13],[14,-8],[6,-67],[42,-59],[6,-40],[56,-78],[20,-20],[0,-26],[28,-24],[9,-49],[2,-52],[20,-41],[3,-42],[29,-69],[18,-56],[15,-48],[31,-68],[8,-16],[28,-19],[7,-45],[20,-27],[8,-32],[12,-26],[16,-54],[0,-47],[-5,-31],[11,-66],[38,-100],[26,-39],[-2,-45],[12,-27],[4,-17]],[[97783,42295],[9,-19],[63,-145],[15,-32],[8,-24],[11,-26],[21,-37],[15,-36],[20,-34],[12,-30],[12,-28],[20,-48],[26,-58],[29,-59],[11,-31],[26,-50],[16,-33],[20,-40],[23,-46],[21,-39],[5,-36],[45,-51],[103,-236],[7,-79],[81,-233],[-41,-25],[-92,29],[-86,43],[-10,75],[4,57],[85,75],[27,-3],[-7,69],[-42,112],[-61,92],[-3,26],[-25,32],[-24,-20],[-36,-9],[-29,9],[-34,23],[-21,38],[-11,19],[-14,27],[7,20],[14,66],[-2,67],[-7,44],[-6,37],[-18,42],[-23,31],[-15,29],[-32,27],[-25,11],[-22,21],[-33,37],[55,5],[10,44],[-20,36],[-1,0],[-6,3],[-33,13],[-7,38],[-1,4],[-12,27],[-11,25],[-30,23],[-2,2],[-35,-7],[-39,-16],[-41,27],[0,70],[0,36],[5,20]],[[97348,42295],[16,-21],[15,-39],[11,-42],[16,-40],[22,-49],[72,-157],[26,-58],[45,-98],[44,-24],[12,-41],[5,-29],[19,-46],[13,-40],[13,-31],[18,-35],[13,-28],[15,-30],[17,-26],[16,-32],[18,-34],[11,-23],[11,-22],[24,-48],[29,-54],[28,-51],[55,-66],[4,-40],[19,-59],[-1,-55],[-13,-49],[-41,-6],[-6,80],[-19,46],[-35,39],[-33,55],[-24,41],[-19,37],[-17,70],[-13,47],[-2,6],[-9,22],[-32,38],[-20,64],[-16,53],[-20,49],[-30,26],[-27,1],[-40,-7],[-25,3],[-29,18],[-40,22],[-41,-10],[-42,-30],[-37,-17],[-43,1],[-34,-12],[-37,-20],[-46,17],[-42,-1],[-34,-3],[-38,4],[-29,-19],[-18,-24],[-8,-22],[-3,-9],[-7,-14],[-15,-26],[-3,5],[-26,35],[-35,33],[-42,7],[-44,15],[-36,10],[-20,45],[-17,60],[-10,40],[-9,35],[-6,28],[-29,18],[-30,32]],[[88765,37601],[-52,-193],[-111,-414],[-26,-97],[-158,-587],[-274,-1024],[-45,-168],[-89,-332],[-31,-116],[-143,-2],[-1,0],[-27,0],[-18,-1],[-102,-1],[-25,2],[-36,0],[-76,-1],[-102,-1],[-3,0],[-182,-1],[-20,1],[-48,-2],[-60,1],[-54,-3],[-1,0],[-25,0],[-156,0],[-57,0],[-562,-2],[-107,-1],[-10,0],[-284,-2],[-110,0],[-27,0],[-123,0],[-47,1],[-27,0],[-18,0],[-62,-1],[-16,0],[-71,0],[-220,0],[-159,0],[-17,0],[-49,3],[-59,-1],[-82,2],[-86,1],[-42,0],[-90,1],[-23,0],[-84,4],[-170,0],[-44,0],[-57,0],[-200,2],[-21,-5],[-102,1],[-56,0],[-126,1],[-105,2],[-109,2],[-77,0],[-140,-2],[-66,0],[-30,0],[-39,-1],[-27,1],[-103,1],[-175,2],[-271,-7],[-53,-1],[-15,0],[-38,0],[-68,0],[-30,0],[-14,0],[-63,0],[-13,0],[-27,0],[-29,0],[-14,0],[-23,0],[-15,0],[-26,0],[-62,0],[-14,-1],[-45,1],[-17,0],[-15,0],[-16,0],[-64,5],[-136,-5],[-34,-1],[-52,3],[-15,1],[-27,-1],[-11,0],[-57,-1],[-18,1],[0,10],[1,10],[1,18],[0,20],[0,40],[0,51],[1,26],[0,53],[-14,0],[-17,0],[-6,0],[-20,0],[-26,0],[-25,1],[-46,0],[-37,1],[-32,-1],[-79,0],[-20,0],[0,-39],[-1,-33],[0,-34],[0,-18],[0,-26],[0,-24],[-1,-27],[0,-25],[-29,0],[-21,-1],[-18,0],[-39,-1],[-17,1],[-22,-2],[-16,1],[-37,2],[-26,1],[-42,1],[-19,0],[-12,0],[-42,0],[-20,-3],[-74,2],[-36,1],[-60,-2],[-146,-1],[-81,-1],[-22,0],[-25,1],[-129,4],[-43,0],[-27,3],[-192,5],[-26,0],[-2,0],[-17,0],[-34,0],[-35,-1],[-38,0],[-22,0],[-31,0]],[[79818,34678],[2,216],[0,19],[1,90],[1,61],[0,37],[1,38],[2,200],[0,49],[2,190],[1,89],[1,93],[1,102],[0,9],[2,158],[0,169],[2,48],[4,356],[1,102],[2,98],[0,23],[3,268],[3,269],[-1,19],[0,6],[2,132],[1,27],[0,15],[0,14],[2,161],[1,144],[1,76],[1,117],[2,148],[0,11],[0,21],[1,46],[0,73],[0,2],[3,381]],[[71302,35035],[5,-11],[29,-1],[12,-6],[2,-29],[-3,-7],[-7,-2],[-17,8],[-15,12],[-8,1],[-1,4],[-2,3],[-1,-1],[-20,26],[-18,-6],[-6,-3],[-5,-10],[-1,-3],[0,-1],[-10,-1],[-9,7],[2,5],[3,8],[2,1],[5,2],[5,8],[7,6],[20,16],[13,-6],[12,-12],[0,-2],[2,-2],[4,-4]],[[71661,35022],[-62,0],[-29,18],[-1,11],[-4,25],[47,56],[11,14],[5,23],[1,5],[23,6],[1,1],[1,1],[2,0],[1,0],[33,-7],[14,-47],[-1,-6],[-4,-16],[0,-1],[-2,-8],[-6,-7],[-9,-46],[-4,-21],[-17,-1]],[[71362,35214],[37,-11],[57,1],[3,-1],[51,-32],[-1,-1],[-6,-15],[-2,-4],[2,-40],[-10,-9],[-14,-14],[-18,26],[-26,-5],[-6,2],[-27,8],[-2,-16],[-21,-16],[-29,12],[-29,-2],[-9,24],[1,1],[-11,25],[-6,15],[66,52]],[[70529,34986],[-12,31],[-19,36],[-13,37],[-29,25],[-24,32],[-26,42],[-25,53],[-10,44],[34,32],[28,-11],[34,-45],[5,-7],[21,-48],[33,-35],[-5,-39],[6,-38],[31,-26],[-8,-30],[32,-53]],[[70582,34986],[-16,0],[-19,0],[-2,0],[-16,0]],[[69619,36704],[-10,-73],[-26,12],[-14,28],[-21,38],[-4,38],[-13,30],[-18,33],[-28,30],[24,42],[3,52],[32,-46],[35,-24],[11,-40],[37,-25],[24,-35],[-4,-28],[-28,-32]],[[69462,36956],[9,-69],[-36,25],[-24,48],[-17,35],[20,29],[33,-17],[15,-51]],[[69234,37402],[16,-32],[22,-51],[33,-67],[34,6],[34,-23],[10,-40],[-27,-30],[31,-33],[35,29],[-16,-62],[-10,-47],[-40,24],[-25,43],[-36,69],[-27,51],[-23,38],[-28,61],[-18,64]],[[74119,37679],[-36,-16],[-47,25],[32,58],[5,52],[14,35],[27,24],[17,-26],[4,-45],[-1,-32],[1,-27],[-1,-3],[-15,-45]],[[70751,38216],[26,-25],[27,-52],[32,-36],[21,-26],[22,-26],[41,-50],[10,-56],[-10,-60],[5,-45],[35,-62],[-6,-36],[38,-35],[50,-49],[40,-1],[45,-64],[32,-19],[33,-30],[27,-5],[27,0],[44,-4],[7,-1],[57,-12],[26,-29],[28,-38],[23,-48],[-38,-20],[37,-18],[32,25],[13,-50],[53,-23],[30,34],[44,-30],[36,-45],[42,-24],[-2,-34],[15,-51],[6,-39],[0,-1],[3,-64],[10,-58],[19,-51],[15,-47],[10,-25],[5,-13],[6,-27],[2,-5],[12,-26],[3,-17],[2,-10],[4,-8],[20,-36],[10,-27],[15,-44],[31,-94],[-3,-52],[19,-16],[4,-8],[11,-22],[7,-43],[9,-25],[8,-23],[5,-25],[11,-40],[17,-50],[10,-29],[12,-32],[14,-45],[13,-37],[12,-44],[17,-48],[7,-41],[-1,-43],[12,-45],[4,-33],[3,-21],[-14,-48],[20,-27],[10,-41],[1,-24],[1,-18],[-2,-26],[0,-2],[9,-46],[3,-34],[3,-19],[4,-37],[6,-49],[1,-11],[8,-38],[3,-14],[2,-15],[6,-35],[3,-37],[5,-31],[4,-44],[7,-40],[4,-48],[-1,-38],[13,-30],[-4,-16],[-6,-26],[-25,-19],[-4,-14],[-9,-27],[-23,-53],[25,-25],[-25,-13],[-33,-2],[-28,-4],[-28,-9],[-30,-10],[-45,-5],[-3,15],[-4,30],[-7,37],[-11,31],[-24,39],[-9,24],[-5,16],[-29,36],[19,28],[25,39],[2,56],[-3,35],[-11,37],[48,43],[36,-14],[-9,37],[11,63],[5,0],[24,-3],[25,-18],[0,-1],[24,48],[-23,0],[-4,0],[-21,9],[-10,46],[-3,47],[-32,-5],[-27,-6],[-8,-2],[-27,-34],[-50,-29],[-11,-49],[-1,-4],[-15,-18],[-8,-9],[-5,-5],[-21,-41],[-17,-39],[-10,-29],[-10,-25],[-24,-20],[-14,-1],[-21,-1],[-9,-10],[-16,-17],[5,-2],[-10,-8],[-25,-19],[-5,2],[-1,0],[-40,23],[1,-8],[1,-34],[-17,1],[-7,19],[-19,25],[-18,4],[-22,5],[-28,4],[-11,-1],[-20,1],[-9,-2],[-23,21],[-33,12],[2,2],[-33,19],[-7,32],[13,32],[22,15],[32,51],[13,45],[-22,12],[-35,-59],[-40,-38],[-30,-27],[3,-51],[-31,-23],[-26,-16],[-25,31],[-26,33],[-3,3],[-33,9],[-28,27],[-45,-23],[-46,-3],[-4,-2],[-48,-24],[-3,-26],[-2,-26],[-44,23],[-34,29],[-33,39],[13,23],[12,20],[26,-15],[8,-16],[5,-11],[44,1],[-14,40],[-10,11],[-11,12],[-8,2],[-23,6],[11,31],[1,3],[-6,12],[-7,14],[10,25],[8,12],[9,12],[24,-4],[29,7],[15,4],[-25,62],[20,66],[-38,1],[-51,0],[0,-4],[5,-35],[17,-23],[-19,-29],[-15,-17],[-8,-9],[-5,-12],[-9,-21],[-30,-16],[-10,-5],[-5,-10],[-10,-20],[-32,-9],[-11,29],[-4,14],[-8,29],[-21,42],[-5,14],[-7,19],[-18,18],[-4,5],[-14,28],[-2,4],[-1,-6],[-5,-28],[-28,7],[-53,9],[-21,-33],[-1,-2],[-20,47],[6,34],[-35,48],[-33,15],[-28,25],[-26,22],[-54,20],[-30,4],[18,24],[-31,16],[-50,21],[-32,26],[-35,1],[-15,1],[-2,-29],[-32,10],[-22,-19],[30,-28],[38,-10],[39,27],[27,-38],[-35,-30],[35,-18],[-42,-9],[29,-54],[26,-42],[10,-34],[38,-41],[39,-38],[12,-60],[7,-61],[-23,2],[-27,50],[-28,53],[-47,76],[-34,54],[-43,68],[-5,54],[-25,-1],[-17,28],[-21,32],[-35,54],[-23,37],[-26,43],[-33,50],[-3,39],[-27,37],[-24,55],[-27,28],[-21,8],[-10,34],[-10,37],[-16,42],[-19,30],[-20,22],[-42,23],[-21,32],[-30,12],[-27,21],[-30,42],[-35,66],[6,46],[0,40],[24,18],[26,6],[29,-42],[31,-58],[35,-51],[28,-53],[-39,-8],[32,-40],[22,-4],[30,-6],[21,-28],[37,-67],[39,-35],[3,4],[20,27],[12,50],[-31,71],[-3,47],[-9,39],[-34,75],[-30,20],[-32,45],[-24,29],[-8,42],[-52,70],[-23,58],[-20,36],[15,66],[-27,30],[18,21],[6,26],[-22,3],[-39,-9],[-59,22],[2,40],[30,19],[18,34],[17,25],[-32,16],[-29,-32],[-27,28],[-12,69],[-28,-30],[-21,40],[-29,33],[-26,-40],[-11,31],[21,39],[-16,37],[-23,42]],[[79818,34678],[-213,0],[-216,0],[-139,0],[-76,0],[-66,0],[-521,0],[-10,0],[-26,0],[-21,0],[-84,0],[-344,0],[-296,0],[-53,0],[-16,0],[-19,0],[-11,0],[-6,0],[-78,0],[-223,0],[-144,0],[-5,0],[-276,1],[-291,1],[-82,0],[-57,1],[-117,0],[-15,0],[-29,0],[-13,0],[-175,1],[-13,0],[-34,0],[-194,1],[-28,0],[-27,0],[-126,0],[-21,0],[-57,0],[-23,0],[-18,0],[-52,1],[-59,0],[-16,0],[-23,0],[-452,1],[-39,0],[-7,0],[-18,0],[-309,1],[-147,0],[-288,1],[-134,1],[-74,0],[-160,0],[-55,1],[-197,1],[-20,0],[-8,0],[-35,0],[-60,1],[-49,0],[-34,0],[-14,1],[-14,0],[-50,-2],[-13,0]],[[73328,34690],[23,60],[16,39],[-2,61],[10,50],[10,35],[-24,34],[28,13],[3,26],[41,0],[-6,28],[4,47],[5,57],[38,17],[-22,47],[33,-8],[-3,41],[-25,-4],[-35,21],[33,22],[0,38],[32,38],[-40,40],[-8,42],[27,44],[-32,33],[-13,50],[-24,39],[12,34],[-25,20],[20,33],[-6,44],[14,30],[2,6],[-18,36],[42,12],[-7,36],[-26,36],[-1,-15],[-1,-34],[-36,17],[-14,25],[6,42],[-14,20],[-4,6],[23,43],[15,33],[15,32],[18,24],[14,18],[3,32],[9,42],[-18,29],[-22,12],[-17,9],[-6,31],[-9,61],[-46,11],[3,39],[6,47],[-17,-13],[-13,-8],[-26,47],[-29,-8],[-22,10],[-27,13],[-29,-8],[-35,2],[-23,8],[-17,2],[-8,1],[-11,5],[-22,11],[-42,25],[-33,15],[-87,128],[1,16],[0,19],[-6,16],[-5,13],[-10,35],[-13,36],[3,46],[-1,5],[-6,29],[-16,28],[0,29],[14,31],[16,32],[20,32],[22,29],[32,27],[31,28],[27,15],[45,1],[38,-44],[42,13],[55,14],[43,-15],[37,14],[3,61],[27,-16],[34,33],[34,35],[18,19],[13,37],[10,27],[18,13],[11,8],[36,16],[8,-29],[37,14],[46,29],[46,25],[25,17],[32,40],[25,28],[25,-6],[31,21],[44,7],[41,8],[9,-6],[23,-16],[20,28],[29,11],[40,-11],[33,5],[27,7],[29,-8],[15,32],[15,19],[30,15],[33,24],[13,31],[21,30],[22,33],[37,31],[52,37],[20,46],[-28,30],[-15,-9],[-10,-6],[-7,34],[-3,11],[11,31],[3,10],[44,3],[16,13],[19,15],[40,21],[39,-9],[28,22],[2,2],[-28,27],[-3,3],[-35,-6],[-24,-25],[-26,-5],[-30,-13],[-42,-2],[-8,-8],[-30,-32],[-11,-40],[-30,-18],[1,50],[0,7],[5,9],[10,17],[20,28],[28,21],[7,45],[5,35],[10,46],[0,2],[25,36],[3,43],[6,58],[25,66],[2,16],[2,15],[18,28],[22,37],[-10,63],[-14,34],[-15,34],[-20,26],[-3,6],[-38,28],[8,-25],[8,-21],[2,-7],[16,-29],[2,-5],[7,-23],[9,-34],[-9,-48],[-19,-46],[-36,-16],[4,-17],[5,-19],[-8,-28],[-2,-37],[0,-31],[-16,-50],[-24,-25],[-17,-18],[1,-33],[1,-4],[-6,-30],[-6,-28],[-23,-29],[-28,-8],[-45,-31],[-39,-65],[-28,-27],[-23,-28],[-24,-12],[-25,-16],[-29,-30],[-46,-18],[-23,-6],[-27,-7],[-45,-1],[25,27],[33,17],[-37,17],[-37,-1],[-25,-7],[-25,4],[-31,-14],[-38,-36],[-68,-15],[-49,14],[-16,-14],[-21,3],[-31,-6],[-30,-14],[-29,-21],[-25,-41],[-39,-50],[-10,-28],[-14,-31],[18,-68],[-3,2],[-22,11],[-13,25],[-18,19],[-30,14],[-29,11],[-31,11],[-24,9],[-28,12],[-35,15],[-43,5],[-41,9],[-56,-6],[-30,-26],[-22,-11],[-26,-25],[-42,-12],[-37,13],[-7,35],[15,39],[-55,19],[-45,5],[-43,12],[-28,5],[-9,25],[-1,4],[-51,3],[-13,29],[-19,22],[-18,-48],[15,-22],[23,-31],[-9,-45],[-5,-26],[-9,-50],[6,-14],[6,-15],[36,-11],[-33,-44],[-39,-16],[-31,-13],[-13,-46],[-2,-7],[-7,-25],[-33,-27],[-8,-21],[-11,-30],[-30,-23],[-17,-13],[-22,4],[-18,3],[-31,12],[-27,39],[-33,-5],[-26,8],[-40,-1],[-14,4],[-42,12],[24,-51],[0,-2],[2,-37],[18,-42],[29,14],[10,18],[8,14],[32,17],[1,-9],[6,-24],[12,-2],[25,-2],[32,-10],[13,-9],[9,-6],[-1,-14],[0,-22],[-37,-37],[-23,-18],[-10,-8],[-13,1],[-26,3],[-41,12],[-36,7],[-9,1],[-35,-9],[-18,19],[-16,16],[-23,23],[-5,6],[-13,16],[-17,16],[-6,5],[-24,17],[-24,11],[-28,19],[-5,76],[-34,12],[-8,4],[-37,25],[-3,18],[-4,18],[14,25],[27,36],[-8,11],[-8,12],[-12,-4],[-24,-9],[-44,15],[-27,32],[-7,22],[-7,25],[18,25],[-23,30],[-18,43],[37,-2],[-18,34],[-10,32],[-6,44],[23,-3],[9,-1],[31,32],[0,1],[-9,45],[-23,24],[-46,-8],[-23,37],[-4,37],[-6,38],[-33,42],[-18,-46],[13,-39],[-14,-41],[0,-36],[-10,-47],[15,-19],[-3,-33],[-26,-22],[-31,-7],[-25,-17],[-24,-13],[-40,18],[-12,-24],[-41,10],[-49,-23],[-38,-17],[-4,5],[-28,38],[-41,12],[-34,9],[-19,36],[-34,34],[-52,21],[-45,11],[15,56],[28,51],[18,36],[-6,25],[11,36],[-18,29],[-12,33],[-36,-13],[-29,18],[-2,42],[-17,52],[-11,40],[-9,42],[-73,48],[-24,15],[-17,30],[-24,25],[-30,-3],[-32,-7],[-47,-32]],[[99824,34697],[-26,-16],[-33,12],[8,47],[34,45],[42,-7],[1,-34],[-26,-47]],[[99356,37780],[10,-44],[22,-63],[18,-75],[23,-83],[15,-42],[12,-29],[16,-58],[-44,6],[-27,10],[-16,21],[2,35],[1,57],[-2,52],[-26,104],[-15,54],[-11,38],[-1,17]],[[99284,37782],[-7,-15],[29,-13],[15,-54],[34,-98],[14,-59],[3,-82],[-20,-35],[-57,3],[-37,1],[-33,-2],[-1,3],[-12,23],[-20,21],[-37,0],[-32,5],[1,26],[-29,25],[-29,43],[0,32],[26,26],[6,33],[-33,17],[-27,31],[-17,25],[-21,31],[-12,14]],[[98945,37785],[10,-12],[12,-20],[31,-14],[31,-60],[29,-23],[-18,-24],[-2,-25],[-1,-50],[15,-30],[22,-15],[13,-16],[-13,-14],[-31,10],[-33,39],[-31,0],[-36,2],[-1,22],[-49,45],[-30,2],[5,31],[1,37],[-22,45],[-21,49],[-50,5],[-8,17]],[[98664,37786],[16,-13],[54,-39],[17,-48],[34,-23],[24,-2],[3,-42],[4,-39],[3,-34],[33,-27],[22,8],[43,-29],[13,-18],[21,4],[-3,-54],[-37,-26],[-40,-5],[-56,-27],[8,-29],[0,-28],[23,33],[40,9],[46,10],[35,9],[6,19],[42,-23],[28,7],[44,13],[36,1],[23,18],[21,-12],[22,-18],[9,26],[8,-3],[13,-5],[-10,-21],[-11,-37],[30,-15],[12,10],[-18,24],[12,11],[31,-44],[21,-43],[0,-1],[12,-17],[1,47],[-32,39],[-18,38],[29,7],[24,0],[45,2],[26,-32],[39,0],[68,-9],[11,-64],[17,-78],[13,-76],[10,-48],[9,-39],[16,-61],[28,-107],[10,-35],[40,-146],[29,-110],[47,-182],[10,-35],[10,-33],[11,-38],[8,-27],[11,-36],[7,-40],[40,-160],[58,-322],[80,-346],[54,-279],[-14,-42],[-10,-101],[13,-77],[2,-131],[-53,-12],[-30,0],[-9,14],[-22,66],[10,11],[-2,56],[-47,4],[2,28],[26,-1],[1,-20],[26,2],[2,33],[-4,40],[-18,2],[-22,4],[-3,68],[17,63],[23,3],[72,12],[1,46],[-22,129],[-20,74],[-39,14],[-35,-6],[-24,-14],[3,-36],[-47,102],[17,22],[18,3],[8,-71],[28,15],[70,0],[-2,35],[-13,51],[-5,46],[-16,48],[-5,37],[-9,21],[-8,25],[-26,3],[9,-85],[21,-72],[14,-46],[-14,-8],[-16,4],[-13,15],[0,25],[-19,59],[-13,18],[-15,3],[-13,22],[-15,78],[-17,51],[-10,31],[-27,33],[-23,6],[-41,-38],[8,-38],[16,-34],[11,-23],[29,-17],[12,-13],[-2,-29],[-15,-11],[-13,-10],[-5,-5],[-4,-31],[5,-42],[19,-57],[9,-31],[22,-128],[10,-138],[-11,-31],[2,-56],[7,-41],[8,-45],[-8,-12],[8,-27],[23,-6],[8,-47],[-8,-17],[-31,-52],[-8,-29],[-2,-28],[15,-28],[-3,-32],[5,-44],[0,-174],[-5,-71],[5,-43],[5,-41],[5,-16],[17,-34],[-3,-35],[-3,-37],[-1,-77],[-3,-68],[-14,-38],[9,-37],[13,-62],[0,-22],[1,-19],[0,-31],[1,-24],[5,-36],[-18,-17],[-10,-39],[19,-23],[16,-24],[-22,-10],[-9,-44],[0,-24],[2,-98],[5,-35],[-5,-61],[26,-72],[-6,-118],[-3,-38],[19,-37],[-18,-38],[2,-104],[20,-50],[-9,-68],[-2,-44],[40,-67],[1,-26],[-12,-11],[0,-1],[-16,-40],[1,-45],[-15,-22],[0,-31],[20,-1],[-3,-118],[6,-180],[-11,-11],[-21,-80],[-15,-105],[3,-94],[2,-22],[4,-52],[8,-107],[13,-2],[10,-16],[-16,-11],[-32,-12],[1,-17],[-2,-307],[0,-19],[0,-26],[-12,-10],[-15,-51],[-6,-71],[0,-68],[-13,-50],[8,-18],[6,-25],[-3,-49],[-4,-40],[-12,-49],[4,-26],[1,0],[15,-3],[13,50],[5,62],[28,6],[7,32],[-2,65],[21,5],[23,27],[-19,20],[0,21],[32,-3],[14,42],[0,53],[11,88],[12,45],[11,74],[8,88],[17,106],[-29,39],[0,-34],[-15,-64],[0,-60],[-10,-62],[17,-16],[-17,-78],[-18,-4],[-7,-72],[-16,0],[0,47],[7,71],[7,85],[-2,105],[14,103],[8,59],[22,119],[20,0],[-13,-43],[-3,-65],[6,-29],[11,55],[10,55],[8,45],[5,50],[-4,67],[2,108],[0,70],[-22,14],[0,105],[12,7],[0,31],[-8,24],[1,86],[0,45],[-27,0],[-7,95],[20,0],[5,-29],[13,0],[2,29],[4,31],[-6,45],[17,22],[0,89],[-8,163],[0,66],[-5,65],[-6,23],[0,35],[6,42],[14,78],[17,55],[-20,45],[-17,21],[9,21],[-12,8],[-32,-12],[-3,-68],[-19,3],[3,157],[20,31],[-35,12],[0,57],[22,3],[1,106],[-17,9],[25,89],[13,109],[1,150],[-4,115],[0,97],[8,102],[3,100],[-7,63],[-16,22],[8,17],[34,20],[44,6],[25,0],[-30,-69],[0,-57],[4,-97],[10,-62],[12,-150],[0,-142],[-1,-85],[7,-114],[13,-114],[7,-113],[0,-155],[-19,-152],[-10,-111],[-11,-53],[-1,-53],[1,-97],[-11,-26],[4,-144],[-5,-93],[-1,-110],[-3,-114],[5,-115],[0,-107],[2,-154],[-2,-95],[3,-85],[-4,-67],[-1,-80],[-7,-123],[-11,-162],[-17,-92],[-18,-86],[-10,-100],[3,-82],[-11,-38],[-16,-62],[-50,-212],[-6,-48],[-6,-52],[-9,-63],[-12,-67],[-39,-237],[-35,-257],[-7,-63],[-31,-213],[-12,-121],[-21,-155],[-7,-58],[-2,-30],[-11,-93],[-9,-90],[-47,-546],[-9,-150],[-6,-94],[-8,-113],[-1,-71],[-1,-26],[-13,-170],[-32,-227],[-42,-231]],[[99428,27754],[-25,-2],[-14,0],[-23,0],[-12,-2],[0,3],[-96,0],[-3,0],[-8,13],[-7,20],[-4,14],[-13,19],[-6,10],[-5,7],[-19,1],[-19,-13],[-4,-2],[-11,-13],[-14,-27],[-5,-3],[-2,-1],[-4,-1],[-8,0],[-3,1],[-6,4],[-3,3],[-3,8],[2,17],[0,1],[-4,15],[-8,26],[-1,5],[-3,2],[-225,0],[-17,0],[-27,1],[-102,1],[-180,0],[-151,0],[-2,0],[-200,0],[-17,0],[-6,0],[-413,0],[-12,1],[-8,0],[-10,2],[-188,63],[-52,17],[-3,2],[-25,8],[-29,10],[-18,0],[-15,0],[-67,0],[-107,-2],[-96,-1],[-226,-1],[-55,0],[-46,0],[-41,0],[-16,0],[-239,-1],[-16,0],[-11,0],[-438,-2],[-555,4],[-1644,2],[-457,0],[-16,0],[-17,0],[-23,0],[-10,-14],[0,-2],[-321,-2],[-800,-4],[-149,-1],[-392,-2],[-1403,-15],[-31,1],[-9,15],[-17,-13],[-6,-1],[-462,-6],[-242,-5],[-14,2],[-29,0],[-76,-1],[-450,-3],[-72,-1],[-20,-1]],[[88824,27910],[-10,231],[25,-1],[-8,234],[-8,218],[-4,229],[-16,666],[-5,219],[0,206],[0,17],[-1,252],[-1,240],[-3,74],[-1,27],[-3,215],[0,115],[-3,100],[-2,40],[-1,75],[-1,114],[-2,113],[-2,225],[-4,159],[-3,185],[-1,109],[-3,222],[0,10],[-2,111],[-1,113],[-1,23],[-1,83],[-1,112],[0,113],[-1,113],[-1,170],[0,43],[0,18],[0,224],[0,110],[0,105],[0,9],[0,108],[0,110],[0,116],[0,111],[0,112],[0,86],[0,45],[0,24],[0,17],[0,17],[0,12],[-2,72],[1,272],[0,2],[4,1655],[2,1136],[1,155]],[[88824,27910],[-1,-211],[1,-53],[1,-17],[-1,-211],[0,-5],[4,-160],[7,-227],[2,-56],[4,-167]],[[88841,26803],[-19,-1],[-393,-9],[-544,-16],[-12,0],[-11,-1],[-120,-2],[-478,-7],[-29,-5],[-52,1],[-30,1],[-238,-2],[-132,-1],[-107,-1],[-199,-2],[-326,-4],[-33,0],[-45,-1],[-24,0],[-193,-3],[-212,-10],[-24,-1],[-425,-9],[-97,-2],[-36,-1],[-19,-1],[-33,0],[-98,-2],[-139,-2],[-178,2],[-21,0],[-204,-4],[-192,-6],[-202,-6],[-149,-2],[-40,-1],[-58,-1],[0,72],[0,64],[0,42],[-3,102],[0,16],[-6,200],[-5,172],[0,5],[-2,223],[-2,171],[0,51],[-3,266],[-1,66],[-2,100],[-5,217],[0,39],[-1,82],[-6,319],[0,26],[-6,384],[0,215],[1,185],[-1,54],[1,85],[-1,27],[0,23],[-1,40],[-1,53],[1,68],[0,25],[0,95],[1,84],[0,146],[-1,91],[0,185],[1,83],[-1176,-12],[-116,-2],[-63,1],[-75,1],[-67,2],[-90,1],[-59,-1],[-70,0],[-17,-1],[-29,0],[-42,0],[-16,-1],[-102,-1],[-79,-4],[-126,-7],[-22,0],[-38,-1],[-85,0],[-25,-2],[-26,-3],[-53,-5],[-36,-3],[-22,-2],[-180,-18],[-54,1],[-24,0],[-69,1],[-35,1],[-14,1],[-69,-1],[-120,-1],[-137,-1],[-157,0],[-116,-1],[-177,0],[-1,0],[-52,0],[-202,0]],[[79846,30722],[0,77],[-5,142],[-1,20],[1,64],[-1,78],[-2,97],[-1,71],[-2,166],[0,67],[-1,249],[-3,186],[-1,34],[-1,99],[-1,45],[-1,42],[0,17],[-1,55],[0,62],[-1,48],[-1,58],[-1,52],[-1,60],[0,56],[-1,54],[-1,119],[0,51],[-1,67],[-3,325],[-1,63],[-2,171],[0,125],[0,205],[0,61],[0,9],[0,11],[0,28],[0,150],[0,45],[0,114],[1,216],[2,134],[0,32],[2,16],[-1,47],[1,68]],[[75874,28880],[5,-29],[24,12],[-6,-32],[13,-57],[-3,-45],[28,-18],[-3,-36],[-1,-29],[-1,1],[-48,12],[-44,-17],[-30,56],[-35,25],[-27,35],[-29,26],[-29,40],[-20,24],[-26,9],[-23,42],[19,38],[38,9],[10,-42],[13,-30],[29,-46],[0,23],[0,26],[1,19],[0,32],[-4,38],[-9,33],[-4,19],[2,19],[0,7],[2,19],[34,-3],[29,-26],[2,-1],[43,-27],[-9,-29],[-1,-4],[24,-3],[36,-90]],[[75675,29206],[-21,-46],[-54,8],[-37,30],[29,17],[51,15],[32,-24]],[[75822,29203],[19,-63],[-39,-16],[-50,18],[11,27],[6,14],[-27,0],[-1,10],[-1,20],[7,29],[39,-24],[36,-15]],[[75946,29296],[-50,-37],[-29,37],[1,28],[2,26],[70,32],[3,-21],[4,-24],[-1,-41]],[[75301,29582],[10,-32],[-27,11],[-14,6],[-48,23],[-2,55],[32,-26],[37,-1],[12,-36]],[[75655,29042],[-38,-18],[-126,15],[-79,88],[-23,88],[-78,130],[-32,36],[-165,157],[-40,27],[-155,103],[-38,19],[-39,17],[-45,22],[-45,21],[-72,34],[-60,43],[-37,40],[-25,31],[-5,47],[54,-49],[77,-35],[24,-9],[15,-6],[64,-28],[26,-7],[26,-1],[46,-20],[47,-19],[52,-35],[69,-29],[33,-51],[42,-44],[45,-43],[44,-14],[51,-32],[48,-39],[52,-21],[20,-33],[3,-42],[30,-32],[30,-12],[52,-65],[6,-37],[12,-44],[19,-39],[27,-28],[64,-12],[12,-37],[4,-13],[8,-24]],[[71703,30242],[13,1],[4,0],[19,1],[2,8],[7,26],[4,15],[9,12],[13,18],[23,55],[22,37],[30,3],[25,-6],[20,-5],[12,-79],[47,-23],[55,1],[-13,-51],[68,-34],[1,-27],[0,-38],[38,38],[44,-18],[39,-19],[20,-5],[10,-3],[7,-5],[31,-25],[42,26],[10,7],[44,15],[32,4],[11,2],[8,-1],[18,-1],[22,-56],[22,-44],[48,13],[10,3],[46,-29],[35,-19],[32,-11],[91,-43],[13,-13],[35,-12],[23,-20],[3,-8],[5,-14],[27,-39],[16,-24],[45,-42],[41,2],[23,1],[29,26],[42,59],[24,35],[19,24],[30,15],[44,16],[45,-1],[33,-8],[15,0],[-36,-17],[-37,1],[-18,-15],[-30,-24],[-118,-95],[-88,-134],[3,-33],[1,-6],[56,-26],[75,0],[96,33],[71,94],[20,57],[-12,18],[-4,7],[-10,17],[-9,4],[-12,6],[16,5],[7,2],[10,4],[15,6],[21,-7],[10,-3],[19,37],[-8,8],[-3,4],[-3,8],[-3,10],[-5,-2],[-14,-5],[18,24],[19,0],[2,53],[15,15],[13,16],[19,-14],[33,4],[3,-12],[9,-32],[29,-18],[31,-5],[83,-64],[29,-22],[44,-43],[25,-15],[17,-10],[61,-31],[84,8],[39,3],[42,4],[38,15],[30,-18],[-65,-61],[-235,-158],[-45,-29],[-92,-57],[-117,-74],[-84,-43],[-14,-7],[-63,-26],[-92,-26],[-69,-5],[-34,5],[-97,14],[-103,31],[-58,26],[-60,26],[-13,5],[-31,14],[-28,13],[-92,42],[-82,42],[-47,31],[-38,34],[-140,166],[-25,23],[-52,49],[-34,33],[-15,11],[-17,13],[-29,15],[-40,28],[-14,10],[-36,-1],[-66,37],[-67,42],[-44,76],[-27,31],[-33,49],[-23,55],[-5,14]],[[73737,30485],[-28,-27],[-37,2],[-2,25],[-2,25],[46,9],[4,-6],[19,-28]],[[71703,30242],[-23,40],[-16,50],[-16,60],[-11,49],[-5,42],[-6,46],[-11,32],[-9,38],[-5,35],[-12,44],[10,41]],[[71599,30719],[20,-35],[25,-46],[20,-48],[14,-72],[10,46],[-7,57],[-3,31],[-4,45],[4,52],[20,25],[25,0],[1,-46],[-3,-43],[17,-48],[5,-25],[17,-42],[18,-33],[14,-37],[-10,-38],[-28,-26],[3,-28],[-12,-24],[-12,-27],[-19,-18],[-1,-36],[0,-7],[-10,-54]],[[71599,30719],[-24,32],[-13,54],[-17,87],[-7,32],[-5,27],[-4,49],[-9,57],[-6,58],[2,36],[9,31],[-11,28],[-19,29],[-16,38],[-25,41],[32,17],[31,-2],[10,-66],[34,-29],[-1,-32],[26,-8],[12,-35],[9,-24],[-5,-38],[-37,9],[-9,-67],[31,-61],[16,30],[19,-27],[-2,-37],[11,-31],[7,-42],[-13,-38],[-13,-42],[-8,-35],[-5,-41]],[[73123,31665],[-2,-15],[-38,10],[-17,-40],[-26,41],[-5,16],[-6,18],[40,17],[34,-16],[22,-14],[-2,-17]],[[73343,31876],[-40,-19],[12,36],[14,39],[24,31],[34,29],[1,-25],[2,-23],[-18,-21],[-13,-16],[-16,-31]],[[71387,31673],[-10,-56],[-28,40],[-22,32],[-23,42],[-32,57],[-27,43],[-28,40],[-27,37],[-12,33],[-13,42],[-22,59],[3,60],[24,49],[48,9],[32,-34],[11,-30],[-26,-5],[1,-28],[8,-34],[38,-19],[9,-50],[4,-48],[22,-57],[71,-53],[-47,-33],[-7,-37],[34,-36],[19,-23]],[[71152,32367],[46,-3],[-5,-46],[-8,-46],[-20,14],[-8,36],[-5,45]],[[71152,32367],[-13,28],[-11,26],[-14,32],[2,48],[35,-29],[28,-36],[-27,-69]],[[73162,32548],[24,-16],[11,2],[14,2],[-16,-38],[-10,-23],[-29,7],[-8,2],[7,33],[0,3],[7,28]],[[72698,32680],[7,-11],[46,18],[17,-7],[40,-17],[34,-41],[34,6],[0,-1],[14,-51],[28,-20],[33,-18],[1,14],[2,14],[27,7],[21,-10],[27,25],[22,-28],[6,-8],[16,-33],[17,-42],[13,-25],[2,-4],[10,-17],[11,-20],[7,-10],[28,-37],[32,-36],[-5,-54],[27,-33],[15,0],[15,1],[-1,-12],[-3,-26],[-3,-7],[-13,-42],[3,-30],[2,-28],[0,-1],[-21,-23],[-25,-56],[-29,-36],[-9,-28],[-4,-15],[1,-13],[1,-15],[12,-38],[-2,-24],[-2,-25],[17,11],[7,5],[10,-8],[-2,-16],[-1,-11],[-22,-40],[-62,17],[-10,3],[-22,-6],[-10,-3],[-10,-3],[-16,12],[-14,9],[-1,-1],[-18,-19],[-5,-4],[0,-1],[-2,-2],[-43,46],[-4,2],[-18,10],[-6,21],[-2,1],[-13,7],[-1,0],[-16,8],[-1,1],[-19,26],[-2,3],[-3,4],[-10,14],[-17,24],[-6,12],[-16,34],[-26,56],[-8,17],[-10,22],[0,3],[0,1],[-1,71],[-29,131],[-3,3],[-14,22],[-6,32],[23,-4],[-7,36],[-2,5],[-6,12],[-17,28],[-11,27],[-10,12],[3,-18],[0,-2],[2,-5],[-13,23],[-1,2],[-1,2],[3,34],[-2,9],[-3,10],[-2,8],[7,16],[5,13],[-14,4],[-9,3],[-2,0],[3,68],[3,9],[6,14],[18,49],[8,-12]],[[71834,32646],[-19,-38],[-30,14],[12,26],[11,26],[34,42],[23,-1],[16,-1],[-39,-52],[-8,-16]],[[71794,32799],[-9,-25],[-17,28],[-10,15],[5,14],[3,12],[4,11],[7,17],[-14,30],[14,35],[9,-29],[24,-35],[-6,-30],[-7,-34],[-3,-9]],[[71127,32963],[14,-24],[35,9],[-1,-1],[9,3],[7,-17],[3,0],[32,-6],[-3,-12],[-9,-44],[-21,-13],[-49,32],[-58,68],[13,16],[22,0],[6,-11]],[[71657,32839],[-11,-18],[-48,29],[-5,2],[-35,14],[-5,20],[-7,28],[7,36],[-2,14],[-4,31],[6,41],[0,8],[35,6],[-2,-29],[-2,-19],[12,-33],[9,-23],[33,-7],[29,-21],[9,-26],[5,-15],[-24,-38]],[[71348,33110],[3,-99],[-31,-41],[0,-75],[-21,-5],[-6,6],[-2,26],[4,11],[3,15],[-11,29],[-5,6],[-11,12],[-9,37],[10,15],[5,-5],[5,-11],[6,-1],[0,4],[27,10],[9,16],[1,23],[12,30],[11,-3]],[[71491,33435],[6,-25],[-8,-52],[-12,6],[-9,18],[-6,13],[-5,20],[-30,0],[-17,-12],[-7,-15],[27,-30],[19,-16],[18,-1],[2,0],[8,-19],[15,-34],[-39,-35],[-20,44],[-7,14],[3,1],[-39,60],[-25,17],[5,38],[0,1],[21,0],[5,7],[8,10],[39,7],[48,-16],[0,-1]],[[71003,33435],[22,-32],[1,0],[5,-7],[115,-128],[3,-18],[-33,-25],[-13,13],[-14,43],[-58,15],[-3,14],[6,11],[3,20],[-29,32],[-10,35],[-20,-15],[-10,0],[-3,55],[-21,26],[15,12],[18,-9],[26,-42]],[[72048,33689],[23,-40],[50,5],[2,-1],[33,-3],[10,4],[29,10],[30,3],[45,-20],[52,-2],[39,-45],[36,-23],[63,3],[8,-56],[36,-36],[9,-26],[16,-39],[9,-16],[10,-16],[4,-3],[18,-13],[2,-5],[15,-30],[-43,11],[8,-67],[10,-36],[14,-39],[26,-10],[10,-3],[4,-35],[-8,-33],[16,-29],[19,13],[5,2],[18,8],[6,46],[24,-19],[18,-54],[4,-26],[5,-27],[4,-29],[3,-20],[-1,-35],[-2,-40],[-14,14],[-18,18],[-25,-31],[-1,-5],[-6,-42],[-7,-57],[-3,-25],[18,-66],[-15,2],[-21,-62],[-2,-67],[-1,-42],[0,-18],[0,-20],[0,-16],[28,-84],[2,-4],[7,-19],[9,-24],[5,-4],[7,-16],[9,-20],[6,-20],[4,-17],[5,-2],[3,-12],[10,-37],[-3,-7],[15,-64],[-1,-5],[2,-2],[7,-40],[9,-62],[9,-19],[2,-4],[8,-17],[7,-14],[1,-5],[1,-3],[4,-15],[6,-18],[2,-7],[2,-7],[1,-2],[7,-20],[2,-6],[2,-5],[5,-12],[15,-20],[9,-10],[8,-20],[12,-9],[28,-41],[23,-39],[19,-32],[20,-58],[17,-28],[2,-31],[6,-16],[12,-29],[1,-14],[2,-25],[27,-35],[22,7],[3,-4],[14,-19],[15,-38],[0,-1],[-12,-42],[-13,-40],[-3,-20],[-3,-19],[5,-46],[15,-50],[2,-3],[18,-24],[23,-23],[8,-6],[21,-15],[22,-21],[-27,-9],[-20,-6],[-1,-37],[24,-27],[35,31],[36,-25],[-17,-50],[-27,-15],[0,-20],[0,-31],[-1,-28],[0,-19],[-11,-67],[15,-43],[3,-7],[9,-36],[2,-5],[13,-37],[10,-51],[43,-36],[6,-41],[4,-11],[8,-24],[34,-20],[5,-3],[6,-2],[27,-14],[27,-32],[-5,-38],[-29,-20],[-18,23],[-38,-16],[-7,-3],[-4,0],[-65,-10],[-2,0],[-54,-11],[-35,-11],[-34,-11],[-36,-10],[-37,2],[-27,26],[-10,-3],[-15,-6],[-16,-53],[-39,-27],[-23,-12],[-20,-10],[-36,-6],[-30,-1],[-33,4],[-4,1],[-7,7],[-21,20],[5,40],[3,20],[59,-9],[48,-13],[52,0],[-16,42],[-9,33],[-30,30],[-14,39],[-35,23],[7,33],[9,6],[23,15],[19,65],[1,42],[0,3],[-34,2],[-13,47],[-39,33],[-6,-2],[-31,-6],[-36,6],[23,38],[32,3],[46,-3],[18,39],[-33,51],[8,60],[-47,-12],[-29,52],[-19,25],[-4,5],[-2,-2],[-18,-32],[-31,32],[16,23],[4,7],[4,23],[4,25],[31,35],[-3,57],[-25,-17],[-31,2],[-18,38],[18,36],[16,18],[17,20],[-29,12],[-13,30],[13,70],[-1,-1],[-29,-8],[-12,19],[-3,5],[-22,20],[28,11],[5,22],[10,38],[-24,27],[-12,13],[-37,13],[-2,32],[5,26],[3,13],[-2,50],[-38,18],[47,30],[2,62],[-17,-16],[-31,-30],[-3,44],[13,18],[17,24],[-8,39],[-10,22],[-8,17],[-26,25],[-17,18],[-2,3],[-1,22],[0,27],[19,30],[-42,9],[-3,32],[-1,14],[-1,26],[10,11],[17,17],[-2,23],[-2,17],[-26,-34],[-10,39],[-16,32],[-8,44],[-11,38],[-3,30],[-1,4],[21,58],[-27,1],[-2,-3],[-19,-21],[-6,44],[-27,25],[-6,-3],[-34,-11],[-45,2],[-3,39],[28,-1],[10,-1],[23,34],[20,46],[1,3],[13,35],[-28,18],[-27,-17],[19,56],[5,14],[-55,11],[1,33],[25,18],[1,1],[28,8],[-24,52],[-37,29],[-33,8],[7,41],[-27,27],[-17,18],[-15,10],[-25,16],[-11,40],[-4,15],[-24,36],[-15,14],[-29,26],[-44,37],[-56,62],[-20,58],[-10,49],[-27,5],[-36,20],[-27,-3],[-2,0],[-35,22],[-13,5],[5,25],[3,18],[2,9],[2,2],[11,28],[29,22],[22,20],[-4,28],[-1,38],[-3,35],[-26,-21],[-54,-23],[-27,47],[9,11],[5,9],[15,23],[7,0],[25,1],[-9,40],[-2,10],[15,13],[8,6],[9,8],[17,13],[36,17],[2,1],[47,-1],[11,0],[18,1],[8,4],[28,13],[51,2],[30,-12]],[[70964,32881],[23,-45],[30,49],[17,-53],[39,-56],[22,-34],[-44,-26],[33,-23],[-36,-10],[20,-38],[17,-48],[-32,22],[-17,27],[-14,23],[-32,35],[-46,37],[-32,52],[-3,56],[-9,34],[-20,32],[-28,49],[-8,53],[-15,60],[-16,53],[-28,45],[-22,22],[-13,21],[-18,52],[-12,41],[-17,62],[18,42],[12,43],[2,75],[1,68],[11,56],[5,30],[32,32],[55,7],[36,-39],[6,-46],[11,-53],[4,-35],[-16,-84],[-2,-68],[17,-42],[22,-38],[29,-26],[45,-25],[27,-31],[-43,-17],[-46,-40],[13,-32],[23,-27],[-36,-28],[10,-42],[24,-34],[12,-47],[-9,-38],[-2,-53]],[[79846,30722],[1,-43],[0,-37],[2,-120],[6,-421],[3,-111],[0,-45],[3,-118],[0,-59],[1,-77],[5,-369],[-64,-1],[-4,0],[-142,-3],[-254,-4],[-139,-3],[-74,-1],[-86,-2],[-60,-1],[-24,0],[-42,-1],[-85,-2],[-89,-2],[-62,-1],[-140,-3],[-15,-2],[1,-47],[3,-182],[1,-26],[2,-128],[5,-277],[1,-44],[2,-195],[2,-240],[2,-228],[2,-229],[-428,-4],[-208,-2],[-80,0],[-17,-1],[-123,-1],[-64,0],[-37,-1],[-29,0],[-24,0],[-17,0],[-15,0],[-102,-1],[-16,0],[-14,-1],[-34,0],[-61,-2],[-105,-1],[-280,-5],[-27,0],[-7,0],[-24,0],[-12,0],[-157,-2],[-41,1],[-14,0],[-51,0],[-20,0],[-100,0],[-12,18],[0,42],[-1,21],[1,28],[-1,27],[0,28],[0,25],[0,28],[0,2],[-25,0],[-28,0],[-51,0],[-54,0],[-22,-1],[-17,-1],[-32,1],[-8,0],[-15,-1],[-20,0],[-17,0],[-15,0],[-1,0],[-14,1],[-26,-1]],[[76143,27897],[-32,66],[-16,43],[-20,54],[-8,62],[-30,37],[-27,64],[-13,28],[-14,26],[-15,28],[-19,57],[-29,21],[-6,54],[-8,27],[3,39],[-18,37],[-16,46],[43,-5],[26,28],[4,4],[42,-2],[-18,-30],[14,-32],[33,-5],[21,-49],[-23,-37],[29,-16],[28,-40],[-39,-39],[-48,-9],[18,-55],[40,31],[28,-14],[24,-33],[-8,-46],[-47,21],[4,-34],[37,-21],[27,-3],[-7,-54],[40,21],[25,6],[9,3],[12,-8],[30,-20],[25,-17],[5,6],[14,17],[-3,32],[-1,9],[14,35],[-2,14],[-7,42],[-17,36],[6,47],[-2,25],[-9,22],[0,1],[-5,12],[2,25],[1,14],[-5,35],[-12,36],[-2,5],[-3,21],[-2,15],[1,35],[10,80],[-38,55],[-5,29],[-4,20],[-2,30],[2,37],[9,51],[-6,21],[-3,9],[11,41],[-6,15],[-13,31],[-8,-14],[-12,-20],[-2,-18],[-2,-21],[-18,18],[-26,19],[-19,36],[-6,39],[37,40],[3,9],[6,29],[-16,26],[-18,30],[-23,50],[19,31],[32,38],[-29,28],[-20,13],[-15,10],[-9,6],[-21,14],[-19,28],[-22,32],[-2,4],[-5,7],[13,41],[14,42],[-1,40],[29,24],[0,9],[-1,27],[-28,45],[-38,24],[-6,4],[-8,6],[-33,22],[-11,31],[-2,4],[-17,12],[-10,8],[-11,34],[-1,65],[0,1],[9,46],[-39,-5],[-27,24],[-41,34],[-10,15],[0,20],[-7,6],[-5,4],[-20,0],[-4,17],[-12,16],[-13,8],[-13,22],[-5,20],[-6,22],[-9,11],[7,26],[-10,16],[-2,23],[-11,16],[-7,11],[11,28],[-5,3],[-8,5],[-16,-21],[4,-23],[10,-21],[-2,-13],[-2,-12],[12,-22],[0,-16],[-1,-19],[3,-3],[17,-18],[3,-36],[17,-38],[30,-34],[27,-10],[21,-33],[28,-31],[17,-25],[1,-6],[5,-43],[-43,-15],[-29,-14],[-11,-29],[13,-49],[-1,-35],[-1,-10],[-37,25],[-7,-2],[-17,-4],[-14,-37],[-35,-42],[-1,-23],[-1,-18],[-4,-6],[-14,-19],[-31,26],[-30,41],[-5,-8],[-16,-22],[-26,-22],[-2,-1],[-13,0],[-46,0],[-41,17],[-36,5],[-8,-21],[-6,-16],[-15,44],[-7,31],[-5,23],[13,0],[21,0],[-13,28],[-10,56],[0,31],[-1,23],[-7,28],[-4,19],[4,31],[1,11],[7,30],[-25,12],[-39,17],[-39,-11],[-26,-17],[-12,-35],[5,-15],[2,-10],[-14,3],[-13,2],[-13,-44],[29,-46],[-30,-15],[15,-64],[35,7],[3,-37],[-2,-6],[-10,-26],[-29,-32],[-23,14],[-15,9],[-11,20],[-5,7],[-21,30],[-13,14],[-13,14],[-8,11],[-18,26],[-30,31],[-52,30],[-1,23],[0,5],[-1,28],[-13,30],[33,12],[7,41],[-41,15],[-18,-14],[-9,-6],[-16,33],[-17,37],[-19,34],[-3,5],[-3,5],[-13,28],[-40,11],[-38,-44],[-7,-39],[27,-17],[-34,-24],[45,-29],[14,-40],[25,-14],[24,-18],[24,23],[34,-34],[17,-20],[-9,-25],[-40,-7],[-33,10],[-36,13],[-42,14],[-33,11],[-31,-6],[-3,-1],[-7,25],[-3,37],[-4,72],[-66,57],[-62,53],[-34,18],[-12,7],[-46,33],[-1,0],[-115,44],[-47,9],[-36,8],[-54,22],[-66,16],[-42,6],[-34,-7],[-63,0],[-44,6],[-14,10],[-11,7],[-6,32],[5,38],[10,34],[2,6],[9,20],[23,13],[0,-16],[1,-20],[10,-27],[3,-6],[36,6],[33,19],[22,5],[15,-6],[16,-6],[24,39],[-5,35],[40,-20],[29,8],[-25,35],[-46,26],[2,53],[-25,38],[-12,33],[-18,-52],[-11,-26],[-7,5],[-12,8],[-17,17],[-3,3],[-30,10],[-21,29],[-6,31],[-4,19],[-4,17],[-10,37],[13,58],[3,40],[31,-1],[26,13],[2,16],[3,17],[64,37],[24,-27],[0,-12],[0,-13],[0,-1],[0,-2],[34,-37],[28,-36],[26,-26],[20,-21],[39,-7],[7,-1],[33,-14],[10,-6],[31,-21],[47,33],[6,48],[39,1],[57,29],[36,36],[31,32],[72,23],[28,23],[25,11],[17,26],[29,23],[37,-6],[46,5],[38,17],[29,32],[19,45],[14,57],[47,29],[26,7],[55,5],[-24,-31],[51,-28],[17,44],[-7,34],[-28,20],[2,47],[22,44],[9,30],[16,52],[5,46],[15,19],[7,52],[36,16],[33,6],[59,24],[43,36],[65,80],[18,29],[31,42],[-8,42],[11,70],[5,27],[33,80],[19,72],[-1,39],[14,50],[18,65],[15,62],[11,40],[22,76],[6,40],[25,74],[25,53],[19,40],[23,55],[4,32],[34,31],[33,21],[25,30],[6,9],[25,37],[43,24],[17,5],[52,16],[25,11],[28,24],[31,28],[34,45],[18,30],[37,27],[34,39],[59,44],[33,26],[82,74],[40,43],[28,23],[32,37],[29,23],[23,20],[44,8],[41,7],[11,14],[33,39],[29,14],[29,35],[23,17],[-35,7],[-31,8],[-33,5],[-13,-22],[-6,-10],[-60,15],[40,35],[23,12],[3,1],[36,13],[41,0],[35,-3],[46,18],[42,8],[8,-7],[40,-37],[33,38],[30,20],[31,7],[23,29],[16,36],[-6,40],[31,2],[61,-27],[44,-3],[34,6],[27,29],[27,63],[14,41],[12,45],[-13,-6],[-13,-6],[-18,-31],[-16,-27],[-19,-45],[-15,-15],[-12,-13],[-10,-11],[-9,1],[-20,2],[-6,31],[-2,14],[-35,35],[-43,-19],[-33,-41],[-17,-40],[-23,-29],[-15,5],[-29,10],[-27,-13],[-25,5],[-29,-9],[-4,-1],[-29,-7],[-16,20],[-16,21],[-34,-15],[-39,-13],[-28,-56],[-30,-12],[-7,-3],[-38,-6],[-7,-1],[-15,-5],[-41,-11],[-39,-16],[-42,0],[-9,0],[-36,7],[-50,-11],[-30,-13],[-31,-26],[-20,-25],[-26,-30],[-32,-19],[-27,-22],[-24,-44],[-49,-73],[-49,4],[-35,0],[-30,-32],[-7,-30],[-35,-26],[-54,-19],[-24,-36],[-26,-29],[-16,-34],[-7,-33],[-3,1],[-23,4],[-30,-15],[-16,-38],[20,-64],[2,-9],[-43,52],[-32,-2],[-71,-12],[-28,8],[-15,-32],[2,-44],[-7,-51],[-24,-26],[-33,-20],[-32,-30],[-46,-32],[-24,-59],[-39,-41],[-28,-38],[-28,-35],[-23,-41],[-10,-39],[5,-44],[2,-11],[4,-38],[3,-18],[4,-35],[-31,-26],[11,-32],[1,-3],[22,26],[26,-32],[3,-12],[8,-38],[1,-5],[-26,-62],[-54,-34],[-41,-19],[-47,-17],[-21,-66],[-23,-50],[11,-43],[7,-71],[-20,-55],[-30,-51],[7,-82],[-26,-64],[-53,-84],[-10,-55],[-44,-12],[-36,-21],[-26,-78],[-23,-57],[0,-46],[-4,-31],[-3,-46],[-36,9],[-25,19],[-75,52],[-28,-14],[-38,13],[-41,15],[-51,-14],[-34,-18],[-30,-14],[-2,-53],[-20,-12],[-15,-40],[-12,-20],[-8,-13],[-27,-17],[-2,0],[-69,3],[-30,-4],[-50,-13],[-50,-20],[-21,22],[-6,5],[16,15],[26,25],[5,24],[6,27],[-1,0],[-41,-7],[-34,-1],[-39,-19],[-36,8],[-8,51],[-1,-1],[-8,-33],[-6,-27],[19,-34],[-40,-19],[-32,-9],[-16,-24],[-5,-7],[-25,-14],[-3,37],[-25,-34],[-28,-18],[-71,15],[-35,-2],[-32,-15],[-30,-19],[-11,-1],[-21,-3],[-58,-29],[-29,-3],[7,19],[2,6],[22,26],[-8,53],[-45,5],[-21,15],[7,5],[15,13],[-5,13],[-13,32],[-16,35],[-8,17],[-21,-1],[-12,-1],[-20,17],[-5,4],[-22,36],[-12,11],[-8,7],[-23,31],[-27,26],[22,57],[-38,75],[13,34],[-27,13],[-13,7],[-22,22],[-5,12],[-16,39],[16,29],[41,32],[39,5],[58,2],[21,36],[-10,31],[10,26],[18,41],[30,41],[0,33],[10,56],[-17,29],[4,8],[12,25],[7,14],[10,22],[-12,35],[4,29],[-2,8],[-8,24],[-9,20],[-10,22],[10,29],[24,28],[-25,42],[-1,50],[-43,47],[-20,29],[-24,25],[35,7],[6,37],[-12,36],[-25,7],[-13,33],[-44,20],[-26,13],[-28,35],[-30,39],[-43,-30],[8,17],[13,26],[6,11],[7,15],[24,7],[-30,48],[-11,50],[23,17],[-9,31],[-5,15],[-6,23],[-4,19],[-14,-36],[-4,4],[-17,20],[1,45],[-32,17],[19,27],[-15,15],[-22,22],[-13,36],[-10,11],[-7,8],[-2,14],[-3,12],[-28,13],[-43,38],[16,26],[11,25],[-4,5],[-23,25],[23,49],[26,-22],[11,40],[-7,5],[-35,23],[-27,-16],[-26,33],[-34,-6],[-11,2],[-27,5],[41,34],[1,1],[37,8],[18,40],[-14,49],[28,32],[18,54],[14,32],[7,14],[24,-19],[6,19],[5,14],[-2,25],[0,14],[-3,35],[-15,22],[19,38],[-3,50],[-10,-7],[-28,-20],[-2,10],[-8,24],[15,32],[29,46],[-19,16],[-27,-20],[-4,36],[22,37],[0,7],[-3,34],[22,35],[17,26],[34,49],[24,61],[21,73],[35,44],[2,52],[8,40],[4,57],[6,53],[16,42],[14,74],[16,69],[9,44],[15,39]],[[70664,34591],[50,-16],[20,37],[34,13],[-19,-42],[-20,-36],[0,-52],[39,-44],[2,-36],[-5,-33],[-36,-13],[13,-32],[-28,-16],[-11,-33],[37,1],[-6,-92],[-21,-55],[-12,-42],[-17,-62],[3,-30],[1,-35],[16,-19],[4,-42],[-24,-37],[-20,9],[-29,14],[-6,39],[11,63],[-3,147],[-3,141],[-1,35],[-3,59],[-2,68],[-5,65],[-9,64],[-7,59],[-6,66],[1,50],[6,-6],[27,-32],[29,-7],[-16,-47],[16,-71]],[[70582,34986],[41,-45],[1,-5],[2,-79],[-9,-45],[-17,0],[-5,0],[-15,45],[-10,39],[-23,46],[-18,44]],[[81968,19844],[9,-42],[-20,-39],[-34,-2],[-13,13],[-11,10],[-11,29],[36,-8],[-7,45],[51,-6]],[[81437,19880],[-35,-36],[-46,1],[20,58],[-28,35],[19,35],[57,-31],[10,-1],[31,-1],[-1,-11],[-3,-24],[-24,-25]],[[82360,19867],[-16,-57],[-16,1],[-6,0],[-9,-8],[-33,-26],[-20,48],[2,17],[3,19],[-40,12],[-10,23],[-9,20],[7,17],[11,23],[6,11],[12,20],[15,-7],[19,-8],[-7,-25],[35,-14],[1,-19],[1,-24],[54,-23]],[[81553,19760],[16,15],[4,46],[1,9],[-34,15],[-26,47],[9,2],[34,6],[-2,43],[11,31],[24,17],[20,-32],[-11,-61],[10,-14],[9,-13],[4,-46],[-6,-64]],[[81616,19761],[-46,-1],[-17,0]],[[82546,19865],[-24,-18],[-32,14],[-27,42],[11,34],[35,37],[27,45],[18,-25],[13,-28],[1,-64],[-22,-37]],[[81113,19988],[-5,-30],[-39,15],[-54,35],[23,28],[20,22],[47,-27],[8,-43]],[[80977,20072],[-26,-38],[-35,20],[-26,25],[-32,18],[4,50],[1,43],[41,-3],[2,-55],[11,-10],[25,-24],[35,-26]],[[80834,20087],[-5,-11],[-29,31],[-4,38],[-4,12],[-15,46],[58,0],[3,-29],[3,-38],[8,-18],[-15,-31]],[[81815,20112],[6,-47],[30,-16],[12,-6],[43,26],[17,-18],[4,-4],[26,18],[17,17],[23,21],[8,-23],[7,-21],[19,25],[14,18],[33,-15],[28,-51],[7,-15],[15,-34],[-42,-33],[-5,-37],[-1,-13],[-1,-29],[2,-10],[6,-27],[-39,10],[-41,38],[32,63],[-48,33],[-2,1],[-34,-1],[-38,8],[-13,-42],[-25,-1],[-21,13],[-32,-2],[-3,-1],[7,-51],[-1,-54],[18,-37],[-4,-37],[-2,-17],[-29,3],[-12,2],[1,9],[1,23],[-5,24],[-5,20],[4,42],[-21,32],[1,17],[2,21],[-4,3],[-29,23],[-3,-8],[-12,-39],[-9,-36],[-4,-15],[-24,-48],[-34,41],[17,32],[-16,59],[-11,17],[-6,9],[-5,12],[-10,23],[-44,1],[-10,11],[-30,34],[54,17],[24,21],[25,-20],[26,-6],[31,15],[-14,35],[-5,11],[14,32],[3,6],[27,26],[5,-11],[18,-39],[21,-23],[21,-9],[4,-2],[21,-14]],[[80989,20155],[-1,-6],[-65,41],[13,72],[2,0],[27,-31],[20,-33],[10,-17],[-6,-26]],[[81558,20204],[34,-23],[31,28],[3,-9],[5,-16],[-27,-32],[-59,0],[-31,10],[-32,40],[6,54],[10,3],[49,13],[0,-61],[11,-7]],[[80774,20345],[-5,-11],[-9,-23],[-4,-11],[-8,-23],[-37,-18],[-33,-4],[-14,35],[-3,7],[2,8],[4,19],[6,9],[12,18],[25,-7],[24,10],[40,-9]],[[81730,20267],[-7,-30],[-29,32],[-3,3],[-7,30],[4,9],[15,32],[31,11],[0,-6],[-2,-43],[-2,-38]],[[81588,20305],[-11,-13],[-19,0],[-11,0],[14,48],[16,38],[34,10],[-11,-29],[-4,-9],[3,-34],[-11,-11]],[[80676,20373],[-15,-6],[-9,21],[-5,6],[-5,6],[-26,19],[-21,20],[-1,9],[-3,16],[23,10],[1,0],[33,-30],[24,-10],[14,-18],[0,-22],[-1,-1],[-9,-20]],[[81215,20517],[13,-16],[37,28],[-4,-11],[-9,-34],[19,-37],[34,8],[54,-10],[-13,38],[25,6],[33,-27],[20,-40],[28,19],[8,6],[-1,12],[-5,33],[6,13],[14,28],[31,-9],[22,-6],[0,7],[33,14],[47,-28],[-5,-71],[-2,-25],[-24,-6],[-17,-5],[-5,-16],[-29,-33],[-42,-41],[-25,-23],[-24,-40],[-25,46],[3,20],[1,11],[11,39],[-12,-7],[-14,-8],[-12,-4],[-14,-4],[-19,-14],[-11,-8],[-5,11],[-47,0],[-23,-14],[-13,-9],[-1,-9],[0,-14],[2,-16],[1,-5],[22,-18],[8,1],[24,5],[-17,-34],[17,-43],[19,35],[11,1],[31,3],[34,-7],[-2,-16],[-2,-17],[-25,-24],[-28,-29],[-15,-48],[-25,-28],[-10,-11],[-18,-12],[-14,-8],[-32,-7],[-33,3],[-24,39],[6,32],[-14,45],[-5,33],[2,20],[1,11],[-20,31],[-11,17],[-3,4],[10,80],[15,-7],[0,-20],[19,-2],[1,-1],[18,1],[8,22],[-25,43],[-4,4],[-3,3],[2,18],[1,23],[-11,-2],[-4,-1],[-15,-14],[12,-26],[7,-13],[-12,-9],[-7,14],[-16,4],[-4,16],[-1,3],[-27,10],[-1,0],[-10,-13],[7,-26],[-4,-22],[11,-14],[19,-10],[-1,-15],[0,-3],[6,-26],[-14,-9],[-14,2],[-14,2],[-17,41],[-33,-1],[-29,29],[-22,43],[8,1],[34,2],[26,3],[-13,44],[-31,50],[-41,8],[-30,14],[36,43],[48,35],[3,14],[4,21],[0,17],[16,32],[8,14],[20,-11],[4,-1],[13,-3],[36,-6],[6,0],[0,-1],[15,-5],[1,-1],[3,-1],[42,-15],[4,-38],[-8,-14],[8,-17],[13,-26],[9,-10]],[[80241,20650],[10,-14],[14,2],[7,-12],[6,-10],[-10,-13],[-34,-3],[-7,4],[-16,7],[-2,20],[-2,23],[5,23],[21,9],[4,-4],[14,-13],[-10,-19]],[[79767,20707],[24,-28],[2,8],[4,17],[17,-1],[13,-20],[-2,-16],[9,-30],[13,11],[-4,29],[26,-11],[0,-17],[-16,-24],[-14,-4],[-6,-33],[-58,36],[1,33],[-21,19],[-26,28],[-8,35],[19,3],[22,-17],[4,-15],[1,-3]],[[81025,20755],[19,-4],[16,17],[11,-8],[4,-3],[16,-2],[3,-16],[2,-7],[2,-8],[-6,-23],[0,-10],[0,-6],[3,-2],[-17,-8],[-1,3],[-1,1],[-12,9],[-16,-9],[-12,11],[14,32],[-8,6],[-16,12],[-20,15],[-17,14],[-7,15],[-15,14],[1,12],[1,10],[13,-19],[17,-24],[26,-22]],[[79661,20722],[-3,-16],[-27,15],[-4,2],[-5,16],[-8,25],[-1,7],[-4,21],[6,27],[8,17],[18,20],[-6,-27],[4,-15],[5,-25],[10,-23],[8,-22],[-1,-19],[0,-3]],[[80103,20802],[-1,-38],[-20,-27],[-5,-7],[-7,-9],[-3,26],[-6,24],[-10,-7],[-6,-5],[-19,15],[22,36],[3,9],[2,7],[-10,14],[11,17],[12,8],[16,-16],[5,-20],[14,-23],[2,-4]],[[80224,20858],[14,-10],[14,5],[-6,-12],[-18,-32],[1,-43],[-34,-30],[-1,-8],[-4,-43],[5,-31],[-23,-41],[-10,-49],[-18,-4],[-20,-33],[-18,-14],[-21,-10],[-15,-13],[-5,13],[-3,10],[4,42],[6,35],[18,28],[0,32],[1,10],[-7,26],[31,24],[22,34],[4,36],[2,20],[7,5],[21,19],[-2,41],[24,3],[18,3],[13,-13]],[[79984,20699],[28,-56],[-20,-17],[-5,-4],[-27,10],[-25,25],[0,20],[-2,4],[-6,10],[-3,-1],[-16,-2],[-10,-19],[-39,52],[-19,27],[2,28],[1,8],[-27,24],[3,35],[40,32],[28,-1],[11,-11],[-16,-26],[15,-3],[3,0],[9,-13],[4,-19],[15,-18],[7,-15],[4,-24],[4,-21],[41,-25]],[[79956,20885],[-16,-27],[-20,-1],[-22,19],[13,48],[12,17],[4,-25],[10,2],[3,1],[13,-7],[3,-27]],[[79774,20849],[-3,-13],[-1,-8],[-17,-4],[-14,13],[-14,-6],[-28,-30],[7,40],[3,21],[13,12],[13,8],[9,5],[5,54],[12,15],[6,-24],[-10,-29],[4,-17],[11,-27],[4,-10]],[[79605,21110],[7,-8],[4,-5],[21,2],[6,-16],[1,-3],[-12,-9],[-17,11],[-7,5],[-8,7],[-49,-41],[1,-17],[1,-25],[1,-31],[-6,-8],[-17,-21],[-35,5],[-20,27],[-10,26],[19,43],[3,29],[2,20],[30,11],[26,-4],[18,7],[5,19],[23,-5],[-10,-15],[23,-4]],[[80356,21170],[22,-19],[14,21],[12,6],[23,-14],[22,-2],[2,-18],[-7,-27],[36,-19],[16,7],[18,1],[9,-9],[2,-2],[0,-20],[18,1],[-7,20],[5,21],[-1,14],[0,4],[-8,18],[21,-7],[6,-15],[1,-12],[2,-18],[10,-15],[6,-14],[-9,-14],[-1,-9],[-1,-10],[-13,8],[6,14],[-9,12],[-11,-18],[-17,-16],[1,-11],[1,-9],[17,-14],[12,-24],[-4,-14],[-2,-5],[-11,13],[-20,28],[-12,-14],[-6,6],[-5,6],[-14,0],[-18,-26],[7,-29],[12,-9],[8,-16],[12,-8],[33,2],[26,-11],[24,0],[14,-18],[16,-4],[16,0],[14,-17],[18,-3],[-15,-20],[2,-5],[3,-11],[5,-4],[5,-4],[-6,2],[-21,7],[-1,-18],[-41,-5],[12,-7],[9,-6],[8,-9],[3,-3],[10,-11],[5,-15],[16,8],[18,-4],[-15,-17],[-2,-4],[-11,-18],[0,-1],[1,-1],[0,-8],[0,-5],[-9,-17],[18,-16],[9,15],[7,-14],[10,-23],[16,-6],[16,4],[-8,-21],[22,-11],[12,-8],[7,20],[18,6],[4,5],[6,7],[-4,3],[-8,7],[15,17],[2,19],[21,1],[-9,-13],[21,-4],[11,27],[-12,7],[-22,7],[-18,2],[11,24],[-20,5],[-11,-9],[-18,0],[-3,4],[-8,8],[6,19],[23,10],[15,0],[8,12],[12,23],[15,4],[45,-27],[15,-6],[1,-27],[-12,-27],[18,0],[5,7],[4,4],[6,-7],[28,-35],[13,12],[4,3],[2,1],[12,6],[16,-5],[0,-9],[0,-16],[24,-11],[4,5],[7,10],[14,14],[-2,2],[-5,4],[0,9],[0,4],[24,-13],[-6,-12],[0,-1],[-1,-5],[-3,-8],[-7,-52],[-22,-29],[-18,-24],[-18,-16],[-8,-28],[-37,-6],[-3,-52],[-26,-43],[-24,-19],[-13,-10],[-14,51],[-39,-10],[-33,2],[-16,1],[-14,16],[-24,-6],[-24,4],[-10,17],[-1,2],[16,3],[3,-2],[9,-9],[16,-2],[10,11],[-5,19],[17,18],[19,-3],[-10,-6],[-6,-4],[7,-16],[20,-7],[9,24],[16,-14],[-7,-12],[2,-10],[7,-4],[9,2],[23,4],[14,7],[0,2],[14,10],[2,34],[-9,42],[-10,6],[-5,2],[-1,0],[2,12],[0,2],[0,1],[3,18],[26,-19],[5,29],[-17,16],[-12,2],[-17,2],[-6,-5],[-16,-14],[-2,-5],[-2,-7],[-3,-11],[-4,-16],[-9,-24],[-8,13],[-1,6],[-5,11],[-15,-13],[14,-25],[-13,-9],[-5,12],[-1,3],[-13,-5],[-1,-11],[-1,-8],[-13,-19],[-7,-2],[-10,-3],[-14,5],[-29,11],[3,12],[7,25],[-20,33],[-35,21],[-31,8],[-6,-9],[-33,-44],[3,-7],[7,-18],[5,-29],[21,-1],[-13,-10],[-23,-2],[12,-15],[0,-25],[17,-5],[10,17],[1,-10],[1,-9],[-1,-12],[-1,-16],[19,-20],[38,-31],[4,-41],[-3,-11],[-12,-55],[-4,-16],[-1,-5],[-33,-28],[-4,39],[2,20],[0,5],[13,28],[8,14],[3,5],[-2,1],[-12,8],[-27,8],[-4,33],[-2,28],[-5,17],[-2,9],[-35,35],[-2,-16],[-2,-19],[16,-55],[-2,-14],[-4,-23],[-24,-16],[-30,12],[-31,-15],[-40,27],[-22,43],[0,1],[22,31],[27,18],[1,0],[4,29],[1,45],[0,12],[47,26],[-52,26],[-6,40],[7,15],[5,11],[14,25],[15,-1],[3,-8],[3,-8],[-7,-16],[12,-19],[16,-2],[15,9],[6,19],[4,17],[-30,-6],[11,14],[1,1],[5,0],[11,-2],[-16,23],[-17,-2],[-11,0],[-5,0],[-13,5],[15,32],[2,2],[14,19],[1,17],[-14,5],[-3,16],[-13,11],[-12,-14],[-15,6],[-17,-9],[3,-20],[10,-11],[14,0],[10,-13],[-3,-23],[-12,-6],[-6,7],[-5,5],[-8,-14],[-2,-13],[-4,-26],[-6,-16],[-7,-19],[-9,-41],[-19,0],[2,34],[-7,15],[-6,11],[10,20],[9,18],[10,36],[-15,21],[-3,5],[-22,-32],[-8,13],[-14,19],[-11,6],[-17,10],[-9,25],[-7,23],[7,29],[11,13],[15,4],[15,1],[6,6],[6,7],[-11,20],[-3,7],[-6,15],[-5,33],[0,25],[4,19],[-8,3],[-24,7],[-26,3],[-24,5],[-14,14],[-4,18],[12,-9],[14,-8],[17,19],[11,-6],[5,-2],[16,9],[2,20],[2,17],[9,12],[17,17],[1,4],[2,14],[-20,6],[-1,6],[-2,10],[13,-4],[6,14],[18,14],[22,-14]],[[79956,20885],[17,-1],[4,0],[15,2],[-10,15],[-15,22],[-12,20],[-5,37],[-2,32],[29,30],[-43,10],[-45,7],[-2,10],[-5,23],[1,16],[0,18],[20,22],[15,16],[12,10],[-7,9],[-3,3],[4,28],[14,11],[1,0],[20,-1],[25,-10],[3,-2],[7,-13],[-15,-11],[-9,-16],[-3,-5],[11,-9],[13,-8],[14,6],[1,0],[8,22],[3,6],[7,15],[21,0],[-16,-15],[-3,-6],[-4,-7],[1,-3],[7,-17],[15,-7],[2,-22],[0,-9],[0,-13],[16,2],[14,-1],[15,2],[10,11],[0,-1],[1,-15],[15,3],[8,16],[19,0],[-11,-15],[-20,-20],[-3,-27],[-9,-20],[8,-16],[12,-1],[8,-1],[17,11],[8,4],[2,-15],[4,-4],[7,-8],[13,-9],[0,-10],[1,-13],[4,-1],[16,-3],[-3,16],[-2,9],[8,25],[22,-8],[14,-11],[21,-2],[18,-10],[9,-14],[2,-27],[3,-29],[-10,-28],[-15,-13],[-35,-1],[-14,0],[-11,13],[14,5],[17,4],[22,14],[-17,19],[-21,-1],[-15,-13],[-40,18],[10,-33],[-39,-3],[-15,43],[-2,17],[-13,28],[-1,1],[-23,11],[-18,11],[-8,-3],[-13,-3],[-20,7],[-10,-4],[-14,-6],[3,-11],[2,-7],[3,-36],[6,-13],[8,-17],[-2,-27],[5,-36],[-12,-18],[-14,-22],[-47,-20],[-15,16],[-18,-3],[-3,32],[16,10],[21,-18],[16,21],[-10,15],[-6,18]],[[78265,21164],[-47,-3],[-21,13],[-31,19],[-9,9],[-16,17],[17,2],[15,2],[33,14],[50,-11],[67,-25],[-33,-22],[-20,-12],[-5,-3]],[[78555,21142],[-17,-34],[26,-20],[4,-3],[-40,-54],[-33,-22],[-7,-5],[-36,-18],[-42,-22],[-46,1],[-23,13],[-13,8],[-6,5],[-18,16],[-42,60],[47,-15],[9,-3],[28,16],[17,28],[-5,17],[-2,8],[-51,-18],[-29,9],[23,33],[41,21],[46,16],[25,12],[26,24],[28,17],[30,12],[8,3],[16,0],[19,0],[25,-13],[13,-8],[-4,-22],[-6,-28],[-11,-34]],[[79155,21248],[-2,-18],[6,1],[11,3],[-2,-8],[-6,-19],[-24,-35],[4,-13],[7,-18],[-8,-28],[-20,32],[-22,1],[9,11],[5,6],[-13,46],[-25,10],[-9,4],[-15,12],[0,21],[22,10],[3,1],[52,-12],[27,-7]],[[78676,21203],[-15,-29],[-25,31],[-11,16],[-21,30],[39,22],[2,-3],[22,-25],[9,-42]],[[77919,21180],[5,-20],[19,7],[34,-17],[37,-36],[20,-18],[-13,-12],[-21,-53],[16,-1],[28,-1],[31,-14],[41,-5],[31,24],[-28,30],[-37,71],[58,-21],[72,-50],[27,-28],[26,-32],[19,-25],[18,-53],[-27,-44],[40,-6],[17,-33],[28,36],[30,-10],[15,-5],[6,-10],[21,-33],[20,-48],[2,-23],[1,-22],[-19,-58],[-21,-73],[-13,-23],[-11,-20],[-9,-23],[-3,-7],[-2,-2],[-9,-18],[-27,-50],[2,-46],[-28,-17],[-28,28],[-40,58],[-23,27],[-6,17],[4,16],[2,6],[12,15],[23,-9],[-2,-8],[-3,-12],[-14,-13],[26,3],[19,12],[24,23],[25,15],[12,18],[-7,22],[-19,-2],[-11,-9],[-14,-14],[-1,13],[-1,19],[17,16],[16,-10],[-7,22],[-6,2],[-18,6],[16,18],[2,16],[-9,14],[0,19],[-10,6],[-3,2],[-15,-29],[-15,10],[9,-25],[14,-14],[-25,-18],[-2,-6],[-3,-10],[-8,-18],[-3,-7],[7,-20],[-1,-8],[-3,-15],[-11,-1],[-10,-2],[-17,-20],[-18,25],[-5,19],[-7,27],[-11,13],[-8,9],[-14,38],[-10,26],[-50,77],[0,19],[-18,27],[-12,13],[-6,22],[-49,97],[-12,24],[-13,36],[-9,24],[-26,56],[-21,44],[-12,17],[-11,17],[-42,62],[-9,30],[-2,8],[48,-35],[28,-59]],[[79334,21188],[24,-5],[5,5],[6,5],[-12,10],[7,18],[-1,6],[-1,9],[35,-7],[15,1],[-5,-49],[0,-9],[-22,-26],[-59,-18],[-1,23],[-2,34],[-41,18],[-10,0],[-26,1],[23,40],[-11,35],[4,-3],[13,-12],[2,-6],[3,-13],[-6,-16],[-5,-10],[18,0],[38,-18],[9,-13]],[[78029,21216],[-16,-11],[-14,11],[-44,13],[-39,28],[-11,10],[-5,4],[1,6],[1,14],[12,3],[6,1],[48,-11],[34,-21],[12,-6],[15,-41]],[[78797,21259],[-6,-55],[-8,15],[-3,5],[-6,2],[-17,3],[-3,4],[-11,17],[7,11],[3,5],[3,18],[5,19],[29,-14],[7,-30]],[[79202,21672],[16,-20],[-5,-17],[-2,-8],[1,-7],[1,-18],[10,-10],[14,7],[17,24],[6,-3],[11,-7],[10,-14],[20,2],[15,11],[14,-14],[0,-1],[8,-15],[-1,-17],[7,-4],[9,-7],[20,-15],[10,-16],[-16,0],[-13,14],[-8,10],[-14,-13],[-15,11],[-13,9],[-17,-5],[-14,-11],[1,-10],[1,-6],[-7,6],[-4,3],[-4,-10],[-2,-6],[-32,2],[7,27],[5,16],[-40,-14],[-17,-27],[-15,-38],[-19,-37],[-33,17],[3,7],[4,10],[15,28],[9,21],[-13,14],[-3,3],[17,15],[5,15],[1,19],[-3,34],[10,13],[25,31],[3,-8],[3,-8],[12,17]],[[77717,22210],[28,-1],[24,37],[16,30],[92,-44],[20,-28],[16,1],[-1,-7],[-4,-41],[46,-58],[45,-40],[40,-10],[36,-22],[45,-47],[29,2],[22,-30],[28,-43],[-18,-20],[8,-30],[10,30],[5,1],[22,2],[19,3],[-14,19],[-8,12],[-13,4],[-3,15],[0,1],[13,11],[2,1],[3,4],[8,7],[2,-24],[0,-8],[34,17],[-14,6],[-7,3],[-10,17],[-30,-17],[-9,18],[-7,12],[-14,25],[-4,17],[-1,6],[0,23],[15,10],[32,-24],[-18,-16],[13,-12],[4,-3],[0,-9],[1,-10],[20,6],[4,19],[29,6],[10,-10],[1,-1],[17,-41],[16,-10],[11,-8],[8,-7],[22,-18],[1,-31],[12,-8],[9,15],[5,-2],[9,-3],[16,-24],[14,-12],[24,5],[-3,3],[-13,20],[-3,8],[-3,7],[-6,12],[-3,4],[-9,16],[-15,17],[0,33],[1,15],[-14,-2],[-2,-16],[2,-21],[-2,-16],[-13,4],[-23,7],[-12,10],[4,14],[3,11],[-24,16],[-6,16],[-1,2],[24,-1],[19,5],[9,6],[6,5],[18,-3],[24,-2],[-5,-7],[-6,-8],[33,0],[32,4],[12,-12],[34,-33],[42,-51],[33,-14],[50,0],[19,-27],[1,-44],[1,-39],[-12,-54],[4,-8],[29,-58],[3,-6],[18,-30],[0,-1],[53,15],[33,-2],[27,-37],[-21,-45],[-26,-17],[-31,7],[-28,-21],[-32,-1],[-3,0],[-33,-13],[-29,-24],[-21,-48],[-18,-22],[-26,-3],[-8,10],[-5,6],[19,24],[22,23],[0,29],[-22,22],[-18,-1],[-14,0],[0,20],[3,19],[1,7],[16,27],[13,18],[-35,-5],[-12,24],[-25,-47],[-3,-17],[-2,-6],[-7,-24],[-2,-26],[-3,-3],[-9,-9],[-14,3],[-8,11],[-10,14],[1,7],[0,9],[14,22],[-14,17],[-5,10],[-6,10],[-8,-12],[4,-14],[2,-6],[0,-57],[16,-19],[7,-16],[2,-14],[2,-15],[8,-28],[-16,10],[-2,-2],[-14,-14],[0,-10],[-1,-27],[4,-15],[18,-11],[8,0],[19,1],[34,27],[29,-4],[3,0],[19,-13],[10,-6],[27,6],[26,26],[1,18],[0,29],[17,31],[3,2],[10,6],[33,-4],[3,-12],[2,-10],[-8,-20],[-1,-16],[9,-2],[7,-1],[7,-14],[-14,-4],[18,-13],[13,-3],[3,0],[16,0],[4,-26],[-18,-9],[22,-3],[15,-17],[7,24],[-2,4],[-7,13],[9,13],[-6,22],[-25,5],[14,10],[8,6],[17,4],[-1,20],[-13,-2],[-5,24],[13,16],[12,14],[18,-2],[17,-1],[7,-10],[18,-27],[-30,-7],[-15,-5],[-2,-22],[2,-9],[2,-9],[25,-16],[16,-7],[16,-33],[6,-18],[4,-12],[-38,-19],[-8,33],[-18,30],[-15,10],[-4,-15],[11,-26],[5,-11],[7,-14],[-36,-13],[-16,3],[-15,24],[-6,-20],[-5,-16],[-27,11],[-4,19],[-15,2],[-3,5],[-9,11],[-16,2],[-25,8],[-14,-1],[-3,-1],[2,-14],[2,-16],[24,-6],[8,4],[7,3],[20,-3],[12,-9],[-1,-21],[-48,7],[-27,17],[-49,-5],[-38,-31],[-22,-9],[-8,-4],[-14,-6],[-19,-8],[-20,17],[-2,2],[-28,-16],[-11,-7],[-5,-1],[-27,-5],[-15,7],[-17,-1],[-50,2],[-17,1],[-20,0],[-16,10],[-34,-1],[-20,19],[13,31],[34,-20],[33,7],[58,10],[18,30],[31,18],[24,41],[4,44],[-18,38],[-17,14],[-16,13],[-3,22],[0,2],[-7,14],[-10,2],[-7,1],[-5,12],[-2,4],[4,23],[14,7],[1,0],[8,9],[22,24],[27,21],[-1,4],[-2,12],[-20,12],[-35,7],[-17,35],[-27,35],[-23,36],[-28,2],[-36,-7],[-21,-11],[-18,-29],[-3,-42],[-32,-13],[-25,-35],[4,-53],[12,-36],[3,-33],[0,-30],[28,-31],[24,-39],[-31,-39],[-65,-19],[-21,32],[-12,-36],[-11,28],[-31,-35],[-4,33],[-20,10],[-6,19],[-23,26],[3,26],[18,29],[16,-3],[15,-15],[29,1],[25,8],[7,15],[-6,23],[18,25],[6,19],[-37,33],[-33,0],[-1,-20],[-32,-20],[-13,-9],[-18,-34],[-4,-16],[0,-29],[-10,-16],[-16,0],[-4,-31],[12,-11],[15,-6],[25,0],[-34,-8],[-36,4],[-34,42],[-13,-38],[-6,-26],[4,-28],[-31,3],[-107,-5],[-14,62],[3,55],[-1,53],[-5,38],[-8,39],[-8,41],[-7,26],[-12,40],[-30,76],[-21,20],[-36,39],[-113,86],[-42,50],[34,-20],[95,-73],[21,0],[-37,53],[-39,41],[-44,33],[-32,21],[2,47],[-11,34],[7,29],[38,28],[17,19],[29,24],[35,34],[14,24],[6,32],[35,35],[41,17],[24,0],[0,-56],[-94,-33],[-22,-35],[2,-42],[18,-6],[-3,-82],[12,-9],[51,53],[7,28],[-30,-11],[4,14],[27,28],[50,39],[-8,72],[-3,41],[34,4],[27,-27],[10,-45],[-7,-63],[15,-49]],[[77802,22422],[12,-10],[5,-4],[9,14],[14,4],[22,7],[-8,15],[14,5],[16,-13],[-12,-31],[-8,-27],[-15,-8],[-16,9],[-5,3],[-27,23],[-9,8],[-51,-1],[-28,20],[-12,22],[25,5],[10,2],[16,3],[6,-6],[5,-6],[23,0],[-7,-22],[3,-1],[18,-11]],[[77593,22550],[-20,-30],[-11,14],[-9,12],[-17,49],[-5,45],[-1,20],[-11,27],[-8,37],[-9,30],[23,4],[4,-14],[2,-4],[7,-36],[4,-18],[2,-8],[4,-11],[12,-11],[62,-5],[30,-48],[-32,-18],[-18,-23],[-9,-12]],[[77397,22877],[25,-18],[33,20],[32,-12],[7,-2],[31,-7],[-4,-7],[-10,-18],[-39,-5],[0,-28],[-1,-54],[12,-45],[16,-42],[6,-43],[-4,-27],[12,-47],[17,-32],[5,-10],[-2,-34],[-26,-16],[-14,6],[-5,1],[-9,14],[-7,14],[10,33],[-4,44],[-16,28],[-4,29],[-2,16],[-16,24],[-13,-13],[0,-5],[1,-17],[17,-13],[-8,-20],[34,-68],[-8,-35],[-2,-19],[-15,19],[-9,53],[-18,41],[-11,54],[0,42],[-6,22],[-17,38],[-3,29],[-6,63],[-2,14],[-2,18],[-8,18],[-17,38],[-7,10],[-5,5],[0,47],[17,-2],[22,-3],[36,-12],[-29,-33],[9,-31],[7,-22]],[[77269,23306],[20,-20],[6,3],[16,9],[-6,-25],[-2,-8],[9,-15],[16,12],[5,-5],[9,-8],[12,-5],[3,-1],[5,-4],[6,-6],[3,-12],[2,-4],[9,-11],[15,-21],[7,-21],[26,17],[-12,8],[-7,4],[15,6],[10,-13],[21,-3],[-14,-5],[-1,-3],[-5,-15],[-3,-6],[-6,-10],[14,-3],[16,-13],[5,-26],[3,5],[9,13],[2,9],[2,9],[22,16],[-5,-10],[-7,-13],[-4,-7],[-8,-12],[-6,-8],[-7,-9],[6,-19],[-4,-23],[15,0],[3,-13],[2,-11],[-15,0],[-15,17],[-15,9],[-8,-16],[-35,-24],[-59,15],[-51,7],[-8,1],[11,-36],[-14,-43],[13,-12],[36,-46],[27,-53],[10,-23],[-2,-40],[-43,55],[-48,75],[-4,60],[-18,44],[-17,54],[22,2],[0,1],[-2,15],[-16,20],[-4,5],[-4,17],[1,10],[1,8],[-30,43],[-10,46],[12,12],[23,10],[15,-2],[8,-22],[1,-2],[8,-17],[15,-6],[15,-10],[18,3],[-16,20],[-15,19],[-10,2],[-14,3],[0,16],[-4,9],[-5,11],[-3,0],[-12,3],[-16,11],[0,-26],[-18,2],[1,-22],[-5,4],[-17,13],[0,15],[-28,31],[-3,33],[-1,11],[-44,46],[-16,23],[7,13],[3,4],[9,-2],[28,-6],[24,-2],[5,-1],[22,-4],[15,-20],[0,-16],[34,-41],[22,-31],[1,-1],[21,-17]],[[76892,24220],[-2,-23],[-3,-6],[-4,-8],[5,-22],[11,-11],[4,-4],[-6,-1],[-17,-5],[-14,-17],[4,-18],[-11,-12],[-10,-10],[0,-18],[5,-15],[6,-9],[4,-7],[14,-15],[-2,-20],[4,2],[15,7],[18,10],[2,1],[14,1],[61,-137],[11,-14],[5,-15],[2,-5],[3,-4],[6,-9],[2,-18],[1,-4],[-16,-29],[-7,-16],[2,-9],[4,-17],[4,-16],[-3,-26],[8,-13],[1,-20],[-3,-37],[-4,-25],[2,-6],[4,-17],[12,-12],[4,-29],[-19,-4],[21,-13],[12,-17],[27,-57],[-10,-16],[13,-44],[19,-18],[24,-16],[13,-40],[27,-52],[19,-39],[0,-43],[19,-47],[16,-23],[0,-34],[12,-60],[17,-35],[12,-40],[3,-34],[23,-35],[23,-44],[40,-52],[25,-36],[15,-40],[13,-36],[-8,-15],[-40,38],[-33,52],[-35,54],[-54,123],[-9,35],[-11,17],[-17,52],[-9,41],[-14,79],[0,38],[-35,51],[-31,71],[-74,151],[-20,36],[-10,41],[-82,168],[-24,55],[-5,25],[-26,72],[-19,60],[-10,44],[-36,74],[-17,47],[-19,28],[-15,50],[-20,64],[17,7],[21,-1],[9,20],[0,13],[0,13],[6,17],[10,1],[3,0],[5,-4],[7,-6],[18,-4],[-1,-31],[26,-20],[-1,-19],[21,0],[3,23],[-14,11],[-9,23],[-18,31],[22,6],[22,5],[8,1],[3,7],[6,13],[9,-13],[-4,-15],[2,-11],[0,-8],[0,-12],[0,-5],[2,-40]],[[88841,26803],[2,-141],[0,-12],[1,-366],[2,-284],[2,-276],[2,-257],[0,-8],[19,-468],[1,-22],[0,-1],[13,-235],[6,-279],[2,-57],[15,-640],[2,-51],[13,-464],[11,-358],[2,-81],[-3,-140],[1,-18],[0,-165]],[[88932,22480],[0,-109],[-1,-337],[-3,-260],[-1,-23],[-2,-181],[-2,-188],[1,-508],[0,-109],[-1,-91],[1,-19],[2,-148],[0,-24],[1,-58],[1,-21],[0,-17],[0,-27],[1,-427],[0,-47],[0,-25],[1,-64],[0,-2]],[[88930,19795],[-22,-2],[-293,-6],[-449,-5],[-344,-5],[-316,-5],[-242,-1],[-1331,-10],[-313,6],[-1162,4],[-290,1],[-20,0],[-173,2],[-100,1],[-16,0],[-27,-2],[-15,-1],[-64,-2],[-306,-3],[-50,2],[-30,1],[-6,0],[-21,1],[-45,1],[-43,-1],[-26,0],[-108,-3],[-84,-1],[-46,-3],[-250,-2]],[[82738,19762],[-5,35],[-9,50],[-3,17],[-12,52],[-3,8],[-16,44],[8,21],[0,24],[0,13],[12,23],[21,5],[10,4],[10,5],[4,16],[3,9],[-7,23],[3,6],[4,7],[13,4],[14,12],[8,6],[0,25],[17,16],[36,3],[7,0],[8,-1],[-4,3],[-5,4],[-13,10],[7,17],[-4,15],[-11,1],[-5,0],[-7,-14],[-6,-10],[-2,-2],[-21,-18],[-11,-18],[-5,-26],[-19,-3],[-21,-18],[0,-22],[-3,-29],[-18,-5],[-18,-4],[-14,-3],[-9,-12],[-9,-12],[-45,14],[-43,26],[-53,16],[-7,2],[-65,44],[-55,58],[-4,4],[-43,76],[-27,47],[0,42],[-77,-4],[-40,-3],[-5,7],[-21,29],[-38,18],[-21,42],[-17,48],[28,22],[19,-2],[10,12],[-28,5],[-12,3],[-33,8],[-24,-7],[-26,17],[-43,22],[-32,2],[-9,-3],[-55,-14],[-12,14],[-9,11],[-10,8],[-20,18],[-29,24],[-17,23],[-20,34],[-40,25],[-45,17],[-47,2],[-13,-7],[-42,-25],[-26,-23],[-25,-8],[-20,16],[-6,5],[-6,5],[-32,27],[3,30],[-5,21],[-20,13],[-15,11],[-15,8],[-18,10],[4,-25],[15,-11],[30,-10],[-7,-21],[-9,-26],[3,-6],[14,-28],[5,-18],[2,-6],[-30,8],[-18,21],[-1,1],[-35,8],[19,46],[-1,0],[-24,2],[-13,26],[-27,0],[-23,0],[-9,-5],[-28,-18],[-6,-3],[-1,-2],[-53,-30],[-34,-32],[-6,-27],[-22,15],[21,17],[9,34],[34,25],[0,34],[-8,22],[2,2],[0,1],[0,1],[12,16],[1,0],[1,0],[17,17],[17,23],[3,33],[-3,20],[-10,-27],[-26,-13],[-28,4],[-23,0],[-11,-36],[-20,3],[1,11],[1,15],[-15,14],[-19,29],[-3,18],[-17,2],[-6,21],[-12,18],[1,29],[-6,13],[-7,15],[-9,24],[-18,21],[1,19],[-13,12],[0,-22],[0,-4],[4,-15],[-11,7],[-8,5],[-13,26],[1,18],[0,8],[12,10],[1,2],[4,11],[6,16],[-20,-16],[-18,-16],[-6,-12],[-5,-10],[0,-24],[-17,11],[-14,1],[-27,-1],[-25,-12],[0,-2],[-7,-14],[0,-18],[-20,-21],[-27,39],[-17,0],[-3,1],[-32,-30],[-26,16],[-34,1],[-17,-4],[-19,-13],[-9,-16],[-3,-7],[-16,-15],[-11,-10],[-20,-11],[-3,27],[-11,14],[-20,7],[-1,0],[3,17],[23,14],[-5,14],[-18,18],[-3,15],[-3,9],[21,25],[0,1],[0,61],[-14,24],[-10,26],[-23,30],[-5,-18],[-3,-19],[-10,-12],[-14,1],[15,26],[2,19],[1,3],[1,20],[1,6],[2,10],[-19,-12],[4,-28],[-10,-12],[-15,10],[-22,-6],[-13,-15],[-16,-13],[-20,9],[-23,3],[-10,-5],[-9,-5],[-20,-9],[-32,-2],[-6,25],[-1,2],[22,44],[1,4],[4,11],[8,21],[25,47],[9,30],[-52,-41],[-6,-26],[-14,-23],[-30,-12],[-8,14],[-5,-3],[-20,-14],[-3,-4],[-12,-15],[-7,-9],[-2,-4],[-1,0],[-20,-12],[-3,-3],[-15,-10],[-1,-18],[-8,-10],[-2,-3],[-15,1],[-13,-15],[-21,6],[-14,-8],[-22,-7],[-17,15],[29,15],[22,-3],[-22,25],[3,15],[2,5],[-12,14],[7,15],[-11,11],[23,0],[15,7],[-3,18],[-14,-2],[-14,2],[3,5],[8,12],[0,15],[17,-7],[15,5],[11,22],[2,4],[-5,16],[-1,27],[-10,23],[-11,19],[-26,3],[-19,21],[-13,-15],[-20,3],[12,16],[-14,19],[-32,3],[-7,-3],[-35,-16],[-46,-2],[-20,10],[-5,3],[-16,8],[-2,-16],[-15,-16],[-1,-38],[-11,-11],[6,-16],[14,-7],[-11,-13],[13,-16],[-4,-24],[8,-15],[12,-12],[25,-4],[30,-15],[10,-22],[6,-11],[21,9],[24,22],[8,43],[2,21],[6,4],[12,6],[15,-11],[10,-32],[0,-21],[-6,0],[-11,0],[-11,7],[-5,3],[-7,-20],[-8,-26],[-3,-4],[-12,-17],[-38,-3],[-7,-23],[21,-10],[16,-1],[10,9],[25,22],[5,15],[11,13],[18,-12],[4,-2],[-16,-2],[-13,-7],[0,-1],[10,-10],[12,-14],[19,5],[-21,-22],[-13,12],[-7,-15],[-21,4],[-2,0],[-18,-8],[-5,-16],[-1,-6],[-78,12],[-18,-14],[-26,-19],[-20,-16],[-21,-11],[-14,30],[0,18],[-4,8],[-10,18],[-17,12],[-18,-6],[-13,9],[-11,-4],[-4,-1],[-15,-20],[-5,-12],[-7,-15],[1,-24],[3,-4],[11,-14],[27,6],[12,21],[5,-1],[18,-3],[16,-11],[8,-6],[3,-7],[3,-7],[-56,-30],[-34,5],[-15,27],[-1,1],[-37,-7],[-5,-19],[-2,-9],[-11,-15],[-8,-14],[-46,6],[-24,18],[0,19],[-2,16],[13,14],[2,2],[15,-4],[16,-9],[24,12],[5,12],[3,9],[6,15],[-15,3],[-16,-5],[-5,10],[-6,11],[-3,-19],[-14,-5],[-15,7],[-2,1],[-20,-5],[-7,-4],[-8,-3],[-3,-20],[-22,1],[-5,0],[0,12],[1,7],[18,19],[13,9],[22,1],[-11,11],[-11,11],[0,16],[-21,9],[-8,-23],[-12,-13],[-14,-4],[8,-15],[6,-10],[-12,-8],[-10,-8],[0,-17],[9,-23],[1,-10],[0,-6],[-35,-1],[-12,28],[-27,30],[17,33],[4,7],[-35,12],[-38,-15],[-4,12],[-2,7],[-6,2],[-22,4],[-1,11],[-1,10],[-7,0],[-25,2],[-10,15],[-13,-3],[-33,9],[-7,27],[5,31],[-44,0],[-25,24],[-4,36],[-2,17],[10,32],[12,9],[19,3],[25,-6],[33,-2],[12,-10],[-9,-16],[6,-9],[9,-16],[25,-11],[4,3],[8,9],[-17,15],[-2,8],[-4,16],[13,10],[12,-11],[3,-2],[8,-21],[22,4],[-12,23],[-13,16],[31,-10],[23,-13],[15,0],[2,-3],[7,-10],[-15,-1],[-3,0],[-8,-16],[16,-10],[3,-3],[8,-9],[7,15],[3,9],[3,9],[-7,18],[12,16],[17,4],[17,12],[8,-14],[-7,-14],[-22,-25],[-13,-9],[14,-9],[13,-1],[20,-2],[16,-12],[10,-14],[15,-16],[8,-3],[5,-2],[3,-15],[1,-6],[8,-1],[11,-1],[15,-1],[0,-6],[1,-17],[10,-14],[2,1],[11,2],[16,10],[3,2],[4,-19],[-2,-15],[-1,-6],[21,3],[1,16],[1,11],[11,-17],[17,-11],[11,-11],[10,17],[7,7],[5,6],[-7,14],[-21,2],[-4,-2],[-14,-5],[3,8],[4,15],[5,17],[2,6],[-43,27],[0,18],[-1,8],[10,13],[-1,16],[-18,8],[-16,10],[7,27],[13,-12],[13,-12],[20,55],[12,19],[-5,27],[-4,8],[-5,9],[12,10],[2,18],[-17,-4],[-15,-12],[-13,-23],[-2,-7],[-2,-8],[-6,-19],[-15,-3],[-20,18],[-23,-1],[-1,-6],[-4,-19],[-24,-2],[4,7],[7,14],[7,15],[-13,11],[-6,-3],[-11,-6],[-19,-2],[-4,15],[-13,-4],[-2,23],[-10,-14],[-12,10],[5,8],[6,10],[24,29],[-20,2],[-12,-8],[-2,-13],[0,-5],[-14,3],[0,-11],[0,-4],[-12,-12],[-10,-9],[19,1],[11,-9],[4,-4],[-11,-11],[-24,6],[-17,-7],[0,-4],[0,-13],[18,-2],[6,-11],[3,-5],[-5,-22],[-14,-2],[-2,0],[1,2],[10,18],[-21,3],[-1,-1],[-13,-6],[-21,36],[-3,5],[-11,16],[15,5],[13,6],[1,-17],[10,18],[-3,13],[-3,18],[9,14],[5,9],[5,23],[1,8],[2,15],[-10,23],[-4,8],[14,12],[5,16],[2,3],[18,10],[3,6],[5,9],[15,16],[1,16],[35,25],[35,36],[10,13],[-30,-15],[-14,-7],[-42,-29],[-18,-28],[-10,-17],[-9,-6],[-4,-2],[-18,-15],[-10,-17],[-15,4],[-17,-4],[-45,-31],[-14,6],[-42,12],[-29,13],[-8,-19],[-3,3],[-13,14],[-20,1],[-10,15],[-18,0],[-4,1],[5,19],[5,29],[-2,22],[17,82],[-5,27],[-23,55],[0,29],[-13,-4],[-5,-14],[-12,-30],[4,-8],[7,-16],[-8,-4],[-16,-8],[-24,-4],[-6,-2],[-16,-15],[-2,-3],[-10,-15],[-23,5],[-12,-17],[7,-24],[11,-14],[-1,-5],[-2,-20],[9,-17],[15,-13],[10,-15],[7,-10],[7,-10],[7,-9],[10,-3],[4,-1],[15,-1],[5,6],[6,5],[24,-6],[2,-5],[6,-17],[-10,4],[-14,14],[-13,-8],[-4,-3],[-2,1],[-12,3],[-30,4],[-15,18],[-2,7],[-6,20],[-30,23],[-25,5],[-2,9],[-2,12],[13,8],[5,3],[0,6],[1,10],[-4,17],[-1,2],[-20,-11],[-12,-9],[4,-22],[-31,-29],[10,-16],[12,-17],[13,-11],[0,-20],[16,-7],[5,-2],[4,-2],[21,-16],[-8,29],[16,-9],[17,-12],[23,-4],[15,-14],[-19,3],[2,-16],[23,-21],[15,-10],[8,18],[0,35],[16,1],[14,-10],[-12,-13],[-3,-4],[0,-21],[16,-1],[19,9],[-2,-5],[-5,-14],[-14,-19],[-14,-35],[5,-15],[-3,-18],[-21,-20],[1,-7],[3,-11],[0,-24],[1,-16],[-10,-13],[-14,-18],[4,-23],[-3,-6],[-5,-8],[14,-14],[12,-12],[14,-41],[18,16],[18,-5],[-3,-22],[-11,-9],[-5,-4],[-2,-12],[-3,-11],[-13,15],[-5,-15],[-10,19],[9,13],[-14,14],[-7,10],[-5,7],[-12,10],[-13,9],[3,-9],[6,-30],[17,-28],[4,-16],[3,-12],[-31,-5],[-48,7],[-15,-27],[-12,-20],[-24,-40],[-18,-16],[-13,-12],[-56,44],[-10,34],[2,33],[13,40],[18,38],[23,23],[13,46],[7,24],[16,-4],[2,16],[31,-3],[21,-8],[13,-15],[1,-7],[0,-11],[15,10],[-7,15],[11,10],[1,22],[-29,-8],[-13,10],[-3,7],[-4,9],[15,21],[23,5],[12,16],[6,21],[-1,6],[-3,15],[-8,9],[-6,7],[17,18],[14,-5],[-12,32],[-7,-3],[-7,-2],[-6,17],[4,10],[4,9],[-13,3],[-3,5],[-7,12],[-13,-9],[-15,7],[-8,-17],[-6,-13],[-3,-5],[13,-8],[14,2],[3,0],[2,1],[11,3],[7,-16],[-16,-5],[-17,-7],[-14,6],[-31,2],[-10,4],[-6,2],[-11,6],[-2,1],[-1,-36],[9,-12],[0,-16],[-10,-20],[5,-10],[7,-17],[0,-5],[0,-18],[-22,-35],[14,-3],[9,-20],[-11,-36],[-32,-14],[-10,-5],[-4,12],[-11,29],[-5,31],[-8,35],[-4,7],[-16,35],[-15,30],[26,28],[40,-8],[-7,45],[15,34],[29,3],[-15,60],[17,28],[-10,24],[-8,22],[-57,1],[-47,15],[-1,-40],[-43,23],[-18,-26],[-12,-12],[-18,-20],[-1,31],[-41,-4],[2,50],[-11,66],[-8,13],[-16,5],[-25,12],[-4,1],[-37,3],[-26,15],[-24,46],[-34,31],[-34,11],[-19,6],[-14,5],[-13,2],[-44,8],[-28,13],[-20,16],[-27,-14],[-30,-21],[-24,27],[1,12],[0,5],[15,5],[5,26],[1,-3],[9,-15],[21,7],[13,14],[15,3],[-15,17],[-5,9],[-4,6],[14,7],[5,9],[2,4],[0,27],[-1,4],[-9,-14],[-14,-12],[-12,-9],[-13,-10],[-4,-2],[-10,13],[-6,-8],[-6,-8],[-16,2],[-12,17],[-22,-17],[3,-26],[6,-20],[12,-13],[-6,0],[-27,-3],[-17,16],[-6,31],[-19,-11],[-15,-6],[-27,10],[-37,28],[12,27],[10,22],[27,10],[5,2],[61,5],[31,-12],[14,-19],[14,-1],[-14,17],[13,9],[4,3],[23,2],[2,0],[16,-6],[16,6],[10,-14],[6,7],[18,20],[33,-10],[15,-25],[1,-5],[6,-20],[15,3],[16,2],[-5,-18],[-12,-7],[-7,-8],[-7,-7],[17,-3],[19,6],[0,-3],[1,-12],[4,-2],[16,-7],[14,15],[14,4],[-14,-32],[-10,-7],[-4,-3],[1,-17],[1,-9],[14,5],[19,4],[14,4],[5,-5],[9,-8],[10,26],[-9,14],[-4,10],[-6,17],[-15,14],[5,2],[12,7],[26,22],[16,36],[9,24],[17,-20],[1,5],[4,15],[-4,18],[-10,12],[24,2],[31,12],[19,46],[-9,11],[-7,22],[15,20],[-9,5],[-4,2],[-45,16],[-5,6],[-8,8],[-7,15],[-25,18],[-28,8],[-10,-45],[8,-13],[2,-4],[4,-3],[9,-5],[0,-22],[-15,9],[-5,0],[-10,0],[4,-10],[4,-13],[4,-1],[15,-3],[14,-7],[23,-14],[21,-3],[-5,-14],[-5,-12],[-11,12],[1,-18],[0,-6],[-15,1],[-8,0],[-8,13],[1,18],[0,2],[-6,-12],[-4,-10],[-3,-3],[-19,-16],[-20,-2],[15,13],[4,3],[9,6],[1,13],[0,9],[-9,15],[-16,4],[-8,14],[-4,7],[-6,-12],[-3,-6],[-14,16],[-5,7],[-7,8],[-17,-2],[4,-19],[9,-11],[1,-43],[-26,-13],[-32,-6],[-15,1],[-11,0],[-18,23],[-7,1],[-32,5],[-17,12],[-18,-31],[1,-27],[-14,14],[-18,12],[-13,-15],[1,-11],[2,-7],[-10,-1],[-26,-3],[-28,3],[-5,0],[1,15],[0,12],[24,12],[4,13],[2,7],[13,1],[3,0],[19,8],[30,4],[22,17],[31,18],[45,22],[47,42],[30,10],[1,10],[1,10],[21,8],[25,0],[15,1],[25,1],[21,5],[15,4],[-2,18],[0,19],[-14,-4],[-30,4],[-23,-6],[-23,-1],[-24,-14],[-15,0],[-16,-4],[-5,-1],[-2,-5],[-5,-11],[-10,2],[-4,2],[-12,-15],[-7,13],[-3,6],[-15,-9],[-6,21],[-10,20],[-4,-2],[-14,-4],[1,-19],[-5,-13],[-5,-16],[-6,-5],[-9,-8],[1,-32],[0,-12],[0,-9],[-4,-6],[-8,-10],[-27,-1],[3,-10],[3,-15],[-12,-13],[-14,1],[-2,3],[-12,15],[-4,-4],[-9,-11],[-12,-7],[-9,-4],[-34,-25],[-15,-12],[-3,-2],[-17,-14],[-16,0],[10,11],[-9,13],[24,-6],[16,13],[-6,20],[27,-1],[24,16],[-11,54],[-3,39],[-32,16],[-16,6],[-19,7],[-41,-46],[6,-32],[4,-18],[-29,-60],[-17,-29],[-12,-21],[-11,-6],[-26,-13],[-2,4],[-23,47],[-27,19],[-8,31],[2,17],[13,19],[4,7],[4,5],[8,12],[15,-12],[17,0],[18,0],[3,22],[5,26],[14,19],[-14,10],[-4,15],[-9,12],[-15,4],[-16,9],[3,16],[0,9],[1,9],[-14,11],[-21,-3],[-5,-14],[-13,-7],[-14,9],[-13,-11],[-13,-15],[-8,2],[-29,5],[-16,3],[-10,18],[-14,0],[1,-30],[-17,-12],[-20,-1],[-15,16],[-15,-5],[21,-32],[11,-16],[11,15],[18,0],[14,13],[12,-14],[-13,-12],[14,-4],[1,-18],[-25,6],[-12,11],[-25,-11],[-24,-15],[-12,-5],[-21,13],[-8,-17],[9,-14],[-43,4],[-53,-33],[-29,-2],[25,34],[41,38],[32,38],[45,32],[28,30],[3,25],[3,22],[51,12],[33,2],[32,15],[17,8],[-8,15],[-9,16],[-39,-5],[-24,-2],[-21,17],[-16,5],[-6,2],[-10,1],[-16,3],[-24,-19],[-37,15],[-24,36],[-15,58],[-10,50],[-15,48],[-6,41],[-2,11],[-2,20],[-12,8],[-9,-11],[-7,-13],[-2,-3],[-2,3],[-9,13],[-19,14],[-6,5],[16,-4],[18,-10],[10,21],[-5,13],[-2,5],[-14,8],[-17,-5],[5,20],[-1,10],[-1,6],[17,-22],[13,6],[35,39],[19,21],[8,19],[-6,22],[-4,11],[-15,4],[9,13],[1,22],[1,4],[17,2],[6,-8],[5,-7],[22,-4],[7,14],[26,8],[2,2],[13,9],[-6,17],[15,3],[10,18],[9,-2],[5,-1],[9,7],[8,7],[19,6],[6,1],[7,6],[12,10],[38,9],[14,21],[1,0],[17,-3],[-20,18],[-15,-6],[1,8],[0,11],[21,29],[25,43],[15,20],[18,5],[27,36],[-27,-6],[-9,-13],[-15,-11],[-15,-6],[-19,-23],[-14,-17],[-54,-47],[-7,-17],[-12,-6],[-4,-2],[-17,-2],[-7,-3],[-19,-6],[-14,-11],[-7,-6],[-11,-13],[-20,-2],[9,12],[1,1],[-10,20],[-3,6],[-15,1],[-2,-3],[-8,-12],[8,-14],[-10,-18],[-3,7],[-2,8],[-18,0],[-4,0],[-10,3],[-13,9],[-4,11],[-2,4],[-13,-12],[-16,-4],[-4,-22],[15,4],[-7,-14],[14,-11],[6,-17],[1,6],[2,10],[6,-8],[8,-12],[5,-13],[5,-13],[-21,-16],[-23,6],[-16,12],[17,28],[-11,9],[-17,1],[-11,13],[-13,2],[-3,0],[10,22],[2,3],[8,10],[16,19],[-33,-4],[-15,8],[-4,10],[-2,7],[-24,2],[3,5],[9,15],[-20,9],[-3,-17],[-21,0],[-16,-35],[-8,8],[-5,5],[21,11],[-5,19],[-17,17],[-26,-16],[-1,9],[-1,7],[1,3],[8,17],[-27,9],[-16,7],[-20,-13],[-3,17],[-11,16],[-14,0],[-17,-4],[-5,18],[0,3],[13,-1],[17,-6],[1,22],[-4,17],[-25,0],[-6,32],[-22,7],[-17,7],[11,14],[-21,-5],[-1,-9],[-1,-9],[-3,23],[3,28],[-22,10],[-17,-9],[-7,-3],[-4,1],[-13,4],[5,-16],[-1,-12],[-1,-12],[3,-16],[-20,-2],[1,0],[18,-10],[13,3],[0,7],[0,10],[-9,17],[19,-8],[4,-16],[-4,-17],[19,-12],[4,0],[10,2],[15,-9],[23,-28],[0,-17],[-21,9],[-15,22],[-9,-26],[-5,-16],[-6,3],[-16,5],[-28,16],[20,10],[-16,3],[-11,2],[-16,-2],[-8,-2],[-26,-6],[-10,16],[-3,6],[-20,40],[-7,21],[-2,12],[-1,13],[-6,15],[-2,4],[-6,31],[-1,13],[-1,9],[8,16],[15,21],[19,4],[2,20],[23,12],[7,16],[-14,4],[-2,-3],[-9,-13],[-7,9],[-4,7],[-16,17],[-2,18],[-5,25],[-3,15],[10,15],[-9,33],[-5,7],[-11,14],[-29,43],[7,16],[-16,10],[-1,12],[0,13],[-35,61],[0,23],[0,17],[8,27],[-4,6],[-6,11],[6,19],[0,18],[0,19],[27,36],[-12,12],[-16,22],[7,29],[-17,26],[2,21],[-21,13],[30,21],[-6,11],[-6,13],[-4,7],[-6,25],[10,40],[-5,18],[18,19],[12,7],[-19,15],[12,23],[-13,22],[8,35],[11,41],[-15,38],[-19,-23],[2,-32],[-5,-17],[-26,-3],[-13,27],[-11,48],[13,37],[11,36],[3,22],[12,46],[-19,30],[9,24],[-5,23],[-37,27],[-7,-17],[-17,-22],[-10,-14],[16,-4],[-20,-8],[-2,-23],[-11,-10],[-12,-22],[23,-25],[17,20],[13,-46],[-12,-34],[-6,-15],[7,-42],[-12,-10],[35,-41],[12,-12],[6,-16],[16,-32],[-8,-22],[2,-63],[21,-30],[-8,-19],[0,-42],[-16,-14],[-45,-37],[-13,10],[-47,3],[-3,-23],[-24,-14],[-4,-25],[1,-23],[-16,-8],[-11,10],[-7,13],[-26,241],[-12,123],[-13,118],[-5,47],[-8,47],[-5,51],[-5,50],[-3,31],[-4,44],[-5,43],[-2,42],[-9,66],[-6,35],[-12,49],[-3,33],[-10,59],[1,0],[-13,92],[14,76],[7,11],[13,53],[-2,2],[-13,25],[3,4],[10,12],[7,9],[0,7],[0,18],[-2,31],[0,5],[0,2],[0,19],[-1,33],[1,1],[12,6],[2,1],[0,35],[0,1],[-8,15],[-4,7],[0,1],[8,37],[-2,3],[-3,4],[-10,15],[-3,4],[5,17],[1,4],[4,13],[-9,0],[-6,0],[2,29],[1,14],[1,6],[-13,7],[-17,8],[5,-92],[0,-11],[9,-45],[-13,-41],[10,-46],[-10,-41],[3,-58],[0,-11],[0,-1],[-1,-44],[-6,-56],[-23,-2],[-13,116],[-4,28],[2,4],[0,5],[-3,56],[-14,278],[7,50],[26,-16],[14,7],[14,25],[-12,30],[2,9],[1,6],[-29,12],[-19,-11],[-14,44],[-5,13],[-3,11],[-26,218],[-6,48],[-7,47],[-10,46],[-9,51],[-3,17],[-4,22],[-4,34],[-5,39],[-58,301],[-11,53],[-7,43],[-14,68],[-14,38],[2,27],[7,3],[4,2],[9,4],[20,14],[14,-9],[63,30],[19,-3],[6,-24],[7,25],[22,5],[24,4],[-11,-13],[-5,-24],[-4,-19],[14,2],[19,11],[7,1],[7,0],[-1,5],[-3,14],[-3,10],[-3,9],[12,9],[-3,15],[0,1],[-30,-9],[-14,1],[-45,-9],[-8,36],[-5,6],[0,1],[-6,8],[-15,8],[0,1],[-3,-1],[-11,-1],[5,19],[13,13],[-2,11],[-1,6],[-5,15],[-10,13],[-9,8],[-7,7],[-16,4],[-4,8],[-6,15],[-2,10],[-3,20],[-5,16],[-14,25],[5,11],[8,19],[-3,8],[-6,18],[-12,9],[-7,6],[-19,-10],[4,-9],[2,-6],[-9,-1],[-14,-2],[-4,-8],[-6,-10],[31,-19],[22,-10],[11,-17],[-2,0],[-16,2],[-18,8],[-8,-7],[-4,-3],[25,-20],[0,-1],[12,-16],[3,-31],[15,-8],[-6,-20],[0,-1],[0,-15],[2,-17],[11,-11],[-5,-4],[-11,-11],[13,-13],[11,8],[12,13],[7,-25],[-13,-6],[-2,-1],[3,-2],[13,-6],[0,-4],[0,-12],[6,-15],[-9,-14],[-6,-2],[-15,-3],[-13,0],[-1,-1],[-5,-7],[-1,-1],[-3,-5],[-7,-10],[-5,-7],[-16,28],[-5,42],[-10,50],[-7,38],[-28,102],[-9,32],[-11,38],[-12,35],[-12,36],[-13,53],[-17,42],[-11,37],[-12,40],[-11,32],[-10,40]],[[99428,27754],[-5,-37],[0,-34],[-8,-126],[-4,-54],[-5,-61],[-25,-259],[-11,-182],[-4,-41],[-9,-88],[-4,-47],[-14,-33],[-23,-49],[-35,-231],[-51,-288],[-11,-72],[-32,-192],[-7,-56],[-7,-66],[-7,-35],[-2,-41],[0,-40],[-6,-48],[-3,-55],[-31,-235],[-7,-50],[-10,-63],[-5,-41],[-4,-33],[-19,-118],[-11,-153],[-14,-213],[-11,-144],[-6,-71],[-9,-233],[-41,-3],[-108,-5],[-12,87],[-11,13],[-14,17],[-3,-35],[-5,-41],[2,-33],[-1,-32],[-6,-29],[8,-78],[63,0],[10,-72],[8,14],[16,28],[-6,53],[12,52],[57,9],[-25,-67],[-9,-98],[-3,-90],[-8,-27],[-1,-37],[1,-185],[-5,-57],[-3,-32],[-18,-133],[-21,-308],[-11,-198],[-14,-175],[-16,-211],[-13,-178]],[[98851,22414],[-41,-2],[-27,-1],[-4,-9],[-4,0],[-123,-3],[0,11],[-110,-3],[-17,-2],[-16,-2],[-16,0],[-26,-1],[-25,0],[-10,-1],[-26,-1],[-22,-1],[-14,-1],[-23,0],[-15,-1],[-28,-1],[-26,-1],[-33,-1],[-15,-3],[-7,-1],[-36,0],[-49,0],[-25,-1],[-50,-1],[-36,0],[-19,-1],[-20,-1],[-14,0],[-71,-1],[-47,-2],[-20,-1],[-28,-1],[-23,-1],[-39,-1],[-17,0],[-14,-1],[-12,-2],[-2,0],[-50,-2],[-32,-2],[-32,-1],[-62,-1],[-43,0],[-22,0],[-14,0],[-18,0],[-23,0],[-12,-1],[-8,-1],[-25,-1],[-193,-4],[-2,0],[-16,0],[-37,-2],[-125,-6],[-32,-1],[-198,-4],[-16,-1],[-95,-2],[-112,-4],[-4,0],[2,-82],[0,-13],[0,-3],[0,-53],[-3,-62],[-50,2],[-41,1],[-112,3],[-18,0],[-19,0],[-29,0],[-144,0],[-163,-1],[-14,1],[-13,0],[-7,0],[-26,0],[-1,0],[0,-1],[-5,-2],[-100,1],[-96,1],[-199,0],[-13,0],[-4,0],[-94,-3],[-100,0],[-118,2],[-62,-1],[-46,1],[-17,0],[-195,2],[-106,-1],[-6,0],[-110,0],[0,-3],[-9,0],[-121,-2],[-17,0],[-1,0],[-53,0],[-128,0],[-452,1],[-112,1],[-178,1],[-95,0],[-88,1],[-211,-1],[-421,1],[-633,-1],[-633,-1],[0,131],[0,110],[0,45],[0,51],[-39,1],[-878,1],[-352,2],[-63,1],[-280,0],[-87,1],[-355,3],[-483,2]],[[93170,9819],[-47,-21],[-18,5],[-4,1],[-1,3],[-1,5],[48,63],[5,6],[32,-12],[7,-25],[2,-8],[-3,-4],[-6,-6],[-14,-7]],[[95823,12431],[23,-8],[2,3],[3,4],[44,-4],[3,-51],[7,-27],[-18,-3],[-4,0],[-5,2],[-8,3],[-8,-10],[-18,-25],[-37,81],[9,37],[7,-2]],[[97231,12767],[-10,-22],[-3,-7],[-33,-12],[-25,-25],[-35,4],[-28,21],[-3,16],[-4,28],[34,-15],[23,-10],[39,27],[45,-5]],[[96559,13240],[-2,-20],[-9,-15],[-15,-23],[-40,-3],[-40,7],[-30,12],[23,25],[34,-2],[8,28],[19,17],[12,12],[12,40],[29,-2],[13,-35],[-11,-17],[-3,-24]],[[97231,12767],[-40,37],[-32,14],[-31,7],[-24,1],[-20,31],[-26,12],[-31,27],[-13,53],[3,32],[33,-5],[47,4],[21,-42],[-20,-33],[29,-11],[23,20],[3,35],[12,7],[34,21],[16,29],[23,44],[47,57],[-2,40],[-1,16],[-25,3],[-8,5],[-10,6],[28,49],[7,38],[-6,33],[-1,6],[26,22],[10,-3],[14,-5],[38,17],[2,-50],[38,-20],[-20,-33],[-16,-37],[-5,-13],[-9,-20],[-4,-38],[-12,-40],[-10,-30],[-27,-22],[-1,-10],[-4,-41],[-9,-24],[-12,-31],[-17,-40],[-13,-27],[14,-42],[12,-23],[0,-25],[-31,-1]],[[97137,13095],[-45,-30],[-17,37],[-27,21],[-1,34],[13,40],[-1,13],[-1,17],[3,10],[5,20],[43,30],[18,32],[31,20],[37,1],[2,-1],[39,-17],[-5,-62],[-41,-15],[-22,-42],[-24,-51],[-7,-57]],[[97269,13449],[21,-8],[-3,-39],[-64,7],[-3,22],[-2,13],[-65,-5],[15,36],[5,11],[41,24],[37,-11],[-7,-43],[25,-7]],[[97382,13520],[-32,-20],[-38,6],[13,44],[38,17],[26,-4],[-7,-43]],[[96474,13642],[0,-7],[-1,-18],[-29,-41],[-21,5],[-5,1],[-10,39],[7,6],[7,13],[9,1],[0,-1],[1,1],[21,0],[13,1],[8,0]],[[97728,13893],[-2,-46],[5,-30],[2,-54],[-15,-29],[-23,-33],[-42,-28],[-24,-24],[-33,-45],[-26,-22],[-31,-27],[-39,-31],[-43,-21],[-43,-59],[-31,13],[17,28],[38,62],[19,32],[24,40],[36,8],[50,5],[37,62],[46,49],[22,36],[16,55],[7,44],[-39,-32],[-6,38],[8,43],[12,37],[20,36],[25,37],[16,46],[15,38],[19,66],[23,61],[23,49],[8,32],[8,35],[14,43],[21,65],[12,60],[9,44],[0,29],[16,52],[31,63],[4,32],[15,34],[78,152],[-60,58],[-37,32],[-12,43],[0,70],[25,24],[67,2],[52,21],[8,-41],[-3,-58],[3,-65],[-21,-39],[31,-12],[-4,-37],[-2,-33],[11,-47],[-12,-33],[-17,-42],[-13,-31],[-20,-34],[-17,-45],[-31,-49],[-7,-43],[-21,-25],[-15,-31],[-14,-35],[-7,-44],[5,-58],[-12,-54],[-16,-57],[-22,-37],[-16,-36],[-15,-46],[-22,-50],[-17,-39],[-20,-45],[-33,-25],[-37,-71],[22,-33]],[[98088,15225],[-30,38],[4,16],[2,8],[2,31],[1,17],[18,16],[7,6],[11,-30],[-2,-12],[-4,-29],[-2,-47],[-7,-14]],[[98356,17969],[11,-50],[9,-50],[7,-48],[13,-56],[0,-50],[-29,-57],[-34,-23],[-22,24],[-11,32],[-14,38],[-6,60],[-34,25],[-96,98],[-16,-3],[-38,56],[44,-2],[-11,29],[-14,26],[25,65],[29,40],[22,20],[18,32],[7,71],[-86,31],[0,40],[103,0],[22,66],[152,138],[-41,17],[-31,38],[20,24],[48,8],[41,-22],[26,-44],[-1,-61],[-13,-41],[-18,-41],[-14,-43],[-5,-28],[1,-29],[-7,-41],[-22,-44],[-24,-53],[-9,-38],[-4,-33],[0,-33],[-2,-42],[4,-46]],[[98532,18867],[-21,-48],[-38,-44],[-44,-26],[-42,-27],[-42,-28],[-38,-19],[-31,-19],[-26,-1],[-23,10],[-12,21],[10,21],[-18,40],[-21,23],[-23,25],[-29,34],[-20,44],[49,-28],[29,-29],[29,-29],[48,-8],[-12,62],[-24,29],[-22,32],[42,-11],[30,-18],[27,-26],[23,56],[35,10],[0,48],[19,22],[28,29],[24,36],[38,-22],[9,-38],[3,-24],[15,-18],[25,-28],[3,-51]],[[98598,19157],[45,-33],[-21,-38],[-11,-33],[-40,-28],[-22,25],[-33,40],[-61,39],[0,26],[42,-8],[55,3],[24,10],[22,-3]],[[98214,19335],[67,-34],[111,-43],[112,-50],[-10,-14],[-207,-8],[-38,37],[-27,14],[-34,17],[-27,11],[-33,21],[-75,43],[-20,26],[-6,27],[0,3],[17,32],[25,-9],[25,-13],[55,-27],[37,-19],[28,-14]],[[98450,19304],[-18,0],[-12,16],[-11,60],[3,30],[21,12],[19,-23],[8,-62],[-10,-33]],[[98362,19365],[-22,-15],[-56,30],[-30,10],[-55,37],[13,21],[57,-26],[70,-32],[23,-25]],[[98371,19423],[-13,-18],[-45,22],[-34,17],[-35,14],[-13,22],[17,16],[81,-40],[42,-33]],[[98133,19496],[19,-64],[-17,0],[-22,1],[-38,23],[-5,59],[0,3],[63,-22]],[[98289,19595],[-3,-58],[-3,-3],[4,-7],[-22,1],[-7,36],[3,0],[-2,32],[14,10],[16,-11]],[[98390,19522],[-30,-4],[1,28],[-3,41],[0,22],[6,17],[25,-4],[1,-100]],[[98338,19498],[-28,-1],[-14,64],[1,30],[7,48],[32,0],[0,-40],[6,-38],[-4,-23],[1,-17],[-1,-23]],[[98358,20474],[57,-1],[54,1],[20,-17],[11,-8],[-5,-54],[-53,-3],[-70,-1],[-12,69],[-2,14]],[[98358,20474],[-2,-14],[-7,-70],[-34,-2],[-1,70],[0,29],[44,-13]],[[98779,21256],[43,-16],[-10,-33],[1,-33],[4,-39],[3,-42],[8,-42],[5,-41],[3,-42],[-5,-42],[2,-38],[6,-58],[6,-65],[2,-53],[1,-52],[2,-48],[-1,-60],[0,-49],[1,-33],[1,-37],[-2,-39],[-1,-36],[-1,-41],[-1,-41],[-2,-36],[-1,-48],[-2,-55],[-2,-28],[-3,-39],[-2,-33],[-2,-31],[-6,-44],[-6,-49],[-6,-36],[-8,-44],[-9,-36],[-8,-35],[-19,-66],[-5,-33],[-7,-46],[-12,-44],[-6,-34],[-3,-29],[-5,-38],[-5,-39],[-3,-28],[-6,-35],[-9,-35],[-8,-36],[-6,-33],[-4,-44],[7,-65],[-40,17],[-42,23],[-20,28],[-35,59],[-13,29],[-5,10],[-10,54],[-5,56],[-12,42],[-17,43],[-10,26],[-27,-4],[-27,19],[1,32],[20,14],[36,-24],[3,-21],[21,23],[-12,33],[0,38],[-15,27],[-15,36],[4,51],[30,37],[40,-3],[41,36],[22,18],[-48,8],[-29,1],[-24,5],[-16,4],[26,28],[21,24],[27,25],[18,19],[17,40],[12,63],[39,50],[28,41],[14,51],[-23,54],[-12,31],[6,47],[19,22],[21,19],[21,35],[-29,0],[-29,12],[22,41],[68,3],[38,-4],[-8,41],[-25,28],[-34,-23],[-27,-1],[-33,-14],[-28,-22],[-33,-14],[-41,-2],[-35,16],[-8,11],[-24,35],[-6,43],[8,30],[18,25],[30,21],[26,6],[44,2],[34,6],[12,25],[18,39],[20,43],[15,33],[-72,52],[-25,-18],[-36,-10],[-28,5],[-20,35],[0,27],[4,40],[6,42],[16,31],[32,-7],[-7,28],[-9,35],[24,67],[39,25],[41,-4],[19,-40],[11,62],[0,43],[23,23],[33,14],[7,3]],[[98779,21256],[-8,19],[-11,29],[9,55],[1,44],[0,44],[2,38],[7,36],[-8,28],[-7,28],[-9,25],[-31,7],[-4,41],[34,44],[-3,17],[-7,41],[-1,80],[36,121],[23,10],[-3,25],[-43,29],[-15,35],[-2,3],[-59,6],[-27,-30],[-15,-29],[1,-37],[3,-48],[5,-16],[10,-21],[17,-37],[7,-17],[7,-21],[7,-78],[-1,-14],[0,-9],[10,-118],[10,-24],[13,-68],[-3,-40],[-13,-38],[-8,-50],[-26,-6],[-15,45],[18,50],[-50,17],[0,-45],[-30,20],[-1,-43],[2,-26],[9,-28],[24,-11],[-25,-31],[-14,-7],[-154,-168],[-17,-49],[-16,-35],[-29,-34],[-62,-52],[-29,-6],[-21,-30],[-11,-43],[-12,-73],[-28,-26],[-19,-20],[-29,-10],[-2,-39],[-9,-115],[-5,-53],[-7,-99],[-5,-64],[-46,-51],[-12,-14],[-22,-20],[-12,-16],[-8,-36],[-4,-40],[11,-41],[11,-58],[9,-53],[-25,-60],[-33,-29],[-34,-43],[14,-39],[0,-4],[-6,-368],[-2,-112],[-2,-129],[-37,-17],[-1,-10],[-6,-66],[-3,-34],[-4,-37],[-3,-36],[-48,-46],[-94,-90],[-26,-24],[-30,-12],[-31,-15],[-37,-24],[-23,-27],[-11,-52],[-32,-24],[-49,16],[-37,-8],[-3,-27],[-30,-20],[-48,-14],[-36,-23],[-29,-26],[-18,-53],[-32,-35],[-32,11],[-31,-37],[-33,-49],[-27,-44],[-21,-32],[-28,-26],[-1,-39],[15,-37],[11,-23],[0,-61],[21,-33],[-10,-55],[-27,-34],[-2,-32],[-4,-30],[-26,-51],[-25,-19],[-3,22],[-26,-20],[-36,-21],[-12,-27],[-5,-18],[0,-32],[45,-49],[-17,-12],[-23,22],[-32,27],[-6,-16],[8,-9],[29,-31],[9,-34],[-32,-25],[-8,-7],[-14,-20],[-25,-37],[-1,-12],[-6,-43],[-2,-9],[-8,-29],[-28,-44],[3,-21],[3,-25],[-37,-3],[15,-39],[7,-15],[4,-9],[9,-20],[-40,-12],[-1,-42],[-3,-6],[-2,-8],[-1,-1],[-3,-9],[-5,-16],[-5,-36],[-7,-52],[-35,-26],[-26,-41],[-21,-46],[-10,-23],[-11,-24],[-14,-18],[-12,39],[-7,35],[-2,11],[-12,3],[-13,3],[-4,1],[-6,1],[-5,-8],[-3,-5],[-4,-6],[-15,-54],[-28,-11],[-15,4],[-26,4],[-35,-21],[-45,-22],[-5,-53],[2,-53],[-32,-27],[-31,-9],[-20,-26],[-14,-23],[-8,-29],[-6,-30],[-10,-35],[-6,-24],[3,-88],[0,-80],[-3,-58],[10,-30],[2,-11],[62,-266],[-10,-49],[-43,-99],[-15,-76],[-8,-39],[-5,-13],[-28,-67],[-4,-45],[-23,0],[-35,-6],[-11,-10],[46,-25],[7,-25],[3,-10],[-18,-90],[-25,-4],[-4,11],[-4,10],[6,32],[-3,15],[-48,-10],[-40,-17],[-25,-28],[-9,-11],[-18,-22],[-1,-2],[-8,-10],[-25,-31],[-16,-33],[-7,-14],[1,-43],[-10,-56],[8,-59],[-35,-24],[-10,-29],[-1,-3],[-6,-24],[-5,-19],[-6,-39],[25,-25],[4,-29],[3,-18],[-29,17],[-31,-24],[-17,-50],[-25,-40],[26,-39],[4,-40],[-23,-34],[4,-40],[7,-53],[1,-50],[-8,-29],[0,-8],[-2,-30],[1,-29],[-2,-18],[-2,-22],[1,-2],[9,-35],[3,-14],[-12,-5],[46,-85],[34,3],[-13,-30],[-24,-47],[13,-63],[19,-35],[27,-22],[26,-43],[-1,-11],[-3,-33],[-4,-47],[33,-37],[26,-57],[38,9],[38,-10],[-27,-48],[-37,-34],[-27,-23],[-19,-36],[24,-30],[18,-22],[-10,-52],[9,-22],[4,-12],[-23,-38],[2,-13],[1,-15],[10,-29],[3,-10],[1,-33],[-25,-29],[-1,-7],[-5,-30],[7,-15],[8,-18],[3,-31],[-26,-28],[0,-2],[7,-28],[19,-21],[10,-29],[22,-20],[8,-6],[28,-17],[30,-44],[39,-1],[1,-17],[1,-16],[19,-23],[9,-12],[36,21],[14,40],[30,21],[30,-17],[8,-46],[-27,-8],[-17,-5],[7,-38],[-11,-43],[0,-6],[-4,-41],[-4,-38],[-2,-18],[-15,-37],[-3,-4],[-28,-46],[-32,-33],[-14,-14],[-17,-8],[-30,-13],[-18,-15],[-6,-5],[-7,-13],[-17,-28],[-33,-42],[-18,-45],[-4,-10],[-11,-26],[-30,-46],[0,-1],[-6,-30],[-14,-29],[-6,-13],[-15,-24],[-14,-23],[-33,-44],[-14,-17],[-13,-17],[-16,-29],[-22,-26],[-41,15],[-48,-16],[-34,-30],[-43,-5],[-28,-8],[-33,-2],[-34,-4],[-20,-19],[-7,-7],[1,-15],[0,-15],[-27,-7],[-40,-13],[-20,-29],[2,-10],[6,-39],[-11,2],[-27,6],[-9,-24],[-9,-26],[-1,-9],[-3,-14],[14,-10],[3,-4],[5,-6],[-7,-32],[-14,-60],[-3,-42],[-1,-12],[1,-3],[35,-104],[-45,-27],[36,-64],[-9,-10],[-32,-33],[-50,59],[-78,0],[0,43],[31,19],[19,13],[28,-32],[41,53],[10,25],[4,8],[-37,91],[30,110],[-3,0],[-18,5],[-24,-6],[-2,-11],[-4,-30],[-14,-59],[15,-58],[-24,-3],[-20,-3],[-28,-50],[-37,-11],[-14,-5],[-1,-11],[-3,-27],[4,-47],[-29,-16],[-29,9],[-6,-5],[-11,-11],[-18,-1],[-32,-3],[-23,-23],[4,-12],[12,-36],[-45,15],[-16,-46],[-3,-35],[-2,-25],[-16,-43],[48,-24],[26,-15],[27,5],[-10,-45],[0,-1],[-10,-33],[-1,-24],[0,-21],[-8,-43],[-24,20],[-3,8],[-16,37],[-4,-3],[-41,-23],[-19,5],[-10,15],[23,7],[7,9],[5,7],[3,0],[11,-2],[31,14],[22,11],[1,26],[-36,22],[0,-19],[-1,-13],[8,-13],[-9,-5],[-6,-2],[-8,7],[-18,16],[10,16],[-23,8],[-9,4],[-7,4],[-6,17],[-1,6],[-22,0],[-4,2],[-19,7],[-14,-13],[0,-4],[0,-14],[31,-15],[-1,-14],[0,-6],[-18,6],[0,-21],[18,-13],[7,17],[17,-17],[-8,-3],[-12,-6],[1,-12],[0,-18],[-15,7],[-8,15],[-3,18],[-8,16],[-2,4],[-17,3],[-18,12],[-4,-5],[-13,-13],[8,-25],[1,-5],[10,-8],[12,-11],[-3,-1],[-13,-5],[5,-10],[4,-10],[-6,-16],[-2,-4],[-9,-2],[-6,-1],[-3,-17],[-32,-17],[-27,-16],[-15,35],[-29,24],[-9,6],[-3,-38],[-2,-21],[0,-6],[-2,-24],[-15,-20],[-10,-11],[4,-14],[3,-16],[12,-7],[19,-12],[-15,-37],[-4,-10],[-22,-39],[-16,-30],[-2,-24],[-1,-7],[-4,-29],[16,-44],[34,-29],[-19,-34],[-2,-18]],[[94759,11000],[-14,6],[-14,7],[-16,-1],[-8,-5],[-6,-4],[-16,-2]],[[94685,11001],[0,22],[9,19],[-1,33],[0,7],[-10,1],[-17,1],[-10,-16],[-26,0],[9,16],[-2,9],[-2,11],[-2,17],[-52,19],[-11,-10],[-27,-26],[5,-8],[4,-8],[6,-8],[4,-4],[-16,0],[-5,0],[-6,0],[-40,1],[-22,-18],[-17,-14],[-17,3],[-2,1],[-13,2],[-16,-4],[-11,-19],[0,-3],[1,-16],[-29,5],[-17,2],[-10,-3],[-13,-5],[-17,-6],[-23,-10],[-20,-8],[-14,-19],[-2,-26],[-1,-23],[-19,2],[-13,-1],[-16,-24],[-19,8],[-11,17],[-11,7],[-15,-5],[-39,-31],[-15,-6],[-20,-38],[-16,-10],[-25,20],[-8,16],[-13,26],[-31,-4],[-8,-7],[-8,-6],[-22,-4],[-9,-2],[-14,-4],[-19,-20],[-12,-34],[0,-17],[15,-14],[1,-22],[-3,-13],[0,-4],[5,-15],[-3,-17],[-2,-15],[25,-36],[43,-21],[14,-1]],[[93984,10641],[20,-1],[-7,-22],[-5,-23],[3,-17]],[[93995,10578],[6,-16],[-14,1],[-4,0],[-6,1],[-13,4],[-13,-3],[-3,0],[-3,-6],[-6,-9],[-2,-5],[-5,-11],[-15,7],[-2,21],[-11,-13],[-12,9],[7,21],[-15,3],[-2,0],[-6,5],[-7,6],[-8,25],[-22,11],[-6,-7],[-9,-10],[-5,-18],[11,-17],[28,-7],[10,-7],[2,-2],[9,-18],[12,-7],[-1,-7],[-1,-23],[0,-16],[2,-12],[3,-16],[3,-17],[-34,2],[-17,13],[-12,16],[-1,22],[1,14],[0,9],[-11,-8],[-6,-3],[-10,-8],[-13,8],[-5,19],[-16,20],[-17,7],[-17,-2],[7,26],[-4,24],[-17,25],[-14,8],[-7,19],[-3,32],[-12,15],[-2,3],[-20,4],[-12,12],[-3,3],[-6,-6],[-5,-4],[2,10],[2,9],[-9,25],[-17,5],[-17,13],[-16,16],[-21,-1],[-15,-11],[-31,-6],[-3,-9],[-5,-11],[-8,-11],[-16,-20],[-19,-8],[-9,-13],[-4,-21],[-2,-17],[-19,9],[-21,-7],[-13,0],[-1,17],[-1,21],[0,8],[-18,29],[-12,-8],[-18,13],[-12,3],[-4,1],[-21,-14],[-12,-22],[-9,-15],[-8,-16],[-3,-7],[3,27],[15,44],[7,19],[-9,14],[-21,5],[-15,-14],[-4,-18],[-20,-9],[-17,0],[28,18],[10,36],[4,15],[23,-15],[11,9],[11,9],[1,-16],[5,-13],[0,-2],[2,-19],[2,1],[14,9],[34,-13],[24,12],[0,-17],[19,-8],[24,-25],[20,0],[6,20],[-2,13],[-2,13],[0,21],[23,20],[14,11],[0,4],[0,16],[16,-6],[5,-2],[13,2],[11,2],[55,7],[19,-14],[14,-4],[6,8],[3,4],[19,7],[5,-9],[9,-19],[3,-19],[16,-3],[0,-16],[15,-4],[30,-21],[23,-12],[16,7],[19,12],[4,-2],[8,-4],[4,-17],[2,-17],[14,-11],[19,8],[5,15],[1,2],[5,3],[13,6],[-10,15],[-24,14],[-26,8],[26,24],[-8,21],[2,7],[4,16],[20,1],[-1,23],[-1,18],[0,1],[-16,-17],[-15,19],[-3,4],[-4,9],[-19,4],[1,17],[-13,11],[-15,-4],[-13,6],[-4,-20],[-2,-15],[-6,-20],[6,-22],[-10,-15],[-6,18],[-13,20],[-14,8],[11,6],[3,3],[17,0],[6,10],[2,4],[-2,5],[-2,13],[4,15],[14,-2],[14,13],[-5,25],[-2,8],[-11,4],[-9,2],[-8,-22],[-28,-3],[12,-28],[-20,0],[-7,-16],[-6,5],[-14,14],[-32,-8],[-23,-28],[0,-20],[0,-17],[0,-9],[-25,-14],[-40,-5],[-20,13],[-1,0],[-2,-19],[-15,-2],[-15,13],[-4,-2],[-13,-7],[15,21],[14,-3],[6,18],[1,2],[8,-1],[14,-2],[4,14],[5,16],[-18,21],[-22,5],[-20,20],[-34,1],[-7,21],[-32,-16],[0,-17],[12,-18],[7,-11],[8,-25],[-18,-1],[-4,27],[-15,11],[-1,1],[0,15],[3,17],[23,18],[13,32],[-10,14],[-2,18],[-19,-17],[-8,28],[-2,1],[-12,4],[-2,-16],[-6,-16],[2,-13],[1,-8],[3,-20],[-22,-3],[4,25],[1,6],[-8,17],[11,9],[-22,16],[-10,27],[-4,-13],[-4,-12],[-9,4],[-4,1],[-16,1],[-11,17],[-1,2],[-15,-30],[-2,-15],[21,-14],[-2,-7],[-4,-17],[1,-7],[2,-14],[13,5],[3,1],[14,1],[11,13],[6,19],[-1,-28],[-11,-8],[-7,-16],[4,-22],[-10,-19],[-24,-37],[-3,1],[-10,6],[5,27],[0,11],[1,15],[-19,6],[-4,1],[-6,6],[-9,11],[18,4],[11,10],[6,19],[-12,11],[-11,16],[-14,4],[-11,-22],[1,-6],[3,-14],[-20,19],[-48,18],[-37,5],[-7,20],[10,11],[18,-20],[12,6],[7,14],[-1,12],[0,7],[-12,30],[-15,17],[-15,-4],[-8,-12],[-3,-3],[-2,-16],[-44,19],[-16,12],[-3,-8],[-2,-9],[4,-25],[2,-15],[-6,-1],[-28,-4],[-23,4],[-8,1],[-12,13],[-10,11],[-17,-24],[-10,-14],[-15,3],[-10,14],[-13,-11],[-14,1],[-6,1],[-8,-18],[-2,-5],[-16,-8],[8,19],[-20,9],[-12,-7],[3,-17],[-3,-2],[-10,-8],[-14,-9],[3,-6],[7,-16],[-1,-14],[-1,-11],[21,-1],[14,7],[10,-4],[3,-2],[-32,-33],[-8,-22],[-5,-15],[-34,-13],[1,10],[1,8],[14,23],[-13,18],[-22,-5],[1,-24],[-12,8],[-16,8],[-32,6],[0,-1],[-15,-9],[-13,-7],[-14,0],[-11,-25],[9,-13],[-18,-44],[-1,-2],[-7,-25],[-7,27],[-16,0],[-8,24],[-1,2],[-5,6],[-7,6],[-20,-5],[-8,-36],[-1,-17],[14,-16],[7,-2],[13,-4],[3,-6],[4,-8],[-7,-11],[-3,-6],[15,-9],[4,9],[5,11],[3,13],[1,8],[5,-42],[26,-28],[22,-48],[-9,-18],[-7,-17],[4,-47],[-51,32],[-20,-4],[-14,24],[-19,5],[-3,-3],[-12,-9],[-7,-4],[-12,-6],[-11,-1],[-22,-4],[-12,25],[1,15],[0,9],[16,24],[-11,18],[-5,0],[-10,0],[3,19],[-7,6],[-11,8],[-5,-26],[-22,14],[-2,0],[-10,-11],[-19,-10],[16,-12],[-1,-18],[-7,-18],[15,-19],[25,-17],[29,-2],[-22,-11],[-12,-17],[-3,-23],[16,-22],[42,4],[6,15],[7,-2],[10,-2],[29,-8],[-31,-20],[0,-8],[0,-10],[21,-14],[16,1],[18,0],[58,-7],[42,-7],[20,22],[5,5],[-27,50],[6,21],[23,-2],[13,14],[9,32],[24,17],[23,12],[55,0],[33,-11],[24,-25],[32,3],[20,22],[13,1],[21,3],[3,13],[7,27],[-3,23],[-2,18],[44,36],[8,2],[33,5],[36,2],[2,0],[50,-11],[26,-7],[-26,-10],[-8,-4],[-9,-5],[2,5],[4,11],[-11,11],[-2,-5],[-5,-8],[-1,-10],[-2,-10],[-2,-6],[-9,-18],[3,-9],[3,-10],[2,-13],[1,-6],[9,45],[13,-21],[4,-16],[1,-2],[32,-10],[16,20],[5,15],[7,-17],[20,0],[20,-3],[15,-20],[18,-14],[10,-22],[13,19],[5,17],[27,14],[14,5],[22,-13],[24,-8],[1,-17],[-27,-4],[-28,5],[-13,-7],[-9,-16],[-7,-14],[-1,-36],[0,-18],[13,-10],[9,-24],[6,-6],[-16,-26],[-4,8],[-16,17],[-14,8],[-16,-1],[-15,-6],[-14,-12],[-30,18],[-18,28],[-3,20],[7,20],[11,23],[-3,17],[-10,13],[-14,2],[-20,-8],[-21,6],[-15,-4],[-8,-15],[-27,-12],[-18,-5],[-15,6],[-20,4],[-15,-8],[1,-21],[10,-15],[8,-20],[5,-19],[6,-17],[8,-16],[3,-33],[3,-27],[6,-16],[-13,-15],[-12,-7],[-26,-11],[-20,-11],[-15,-22],[-72,-10],[-4,4],[-25,30],[-24,10],[-16,15],[-15,22],[-4,31],[9,21],[9,-19],[4,-21],[5,-24],[18,-18],[25,0],[19,16],[12,22],[4,20],[0,28],[20,6],[35,-1],[13,9],[7,27],[-7,21],[-19,27],[-25,24],[-24,4],[-15,-15],[-20,4],[-20,-7],[-15,-3],[-13,13],[-11,14],[-21,4],[-25,-5],[-14,-10],[-19,-8],[-8,-15],[8,-21],[-18,-5],[-5,-18],[11,-22],[-1,-18],[-2,-35],[-3,-19],[-20,1],[-16,-3],[-15,2],[-17,-10],[-15,-5],[-20,-7],[-13,-14],[-3,-17],[-14,-22],[-4,-17],[-2,-17],[4,-19],[-4,-24],[-12,-15],[-26,-8],[-19,-2],[-17,-11],[-15,-5],[-31,-9],[-16,-8],[-13,-5],[-20,-17],[-9,-19],[-8,-18],[-11,-10],[-7,-16],[-6,-19],[-10,-11],[-12,-11],[-2,-16],[-11,-8],[-15,-22],[-26,5],[-15,1],[-14,9],[-12,12],[10,20],[8,24],[-20,19],[-13,1],[-12,-10],[-12,-11],[-13,11],[-16,6],[-11,15],[22,1],[18,6],[31,0],[38,-4],[14,-2],[21,-1],[17,-8],[14,1],[19,6],[15,11],[3,16],[-9,17],[7,18],[16,12],[18,14],[23,5],[16,14],[6,18],[-3,16],[-9,24],[-19,21],[-4,25],[8,29],[15,27],[3,19],[-7,19],[-13,9],[-26,8],[-15,-9],[-12,-16],[-3,-18],[-13,0],[-16,1],[-14,1],[-16,4],[-25,-19],[-29,-11],[-15,-21],[-10,13],[-13,11],[-18,0],[-14,-12],[-8,-20],[0,-25],[-14,-7],[-13,11],[-24,34],[-20,0],[-13,-13],[-8,-28],[-25,-10],[-12,-16],[-1,-18],[-14,-1],[-18,3],[-14,-9],[-8,-13],[-14,-4],[-36,-2],[-20,5],[-17,-8],[-15,-6],[-17,-9],[0,19],[-8,16],[-33,13],[-17,-3],[-10,-16],[-4,-29],[-15,-15],[-8,-15],[1,-19],[2,-25],[-28,3],[-29,-1],[-17,-8],[-6,-21],[-7,-17],[-10,-10],[-17,-13],[-11,-10],[-7,-28],[2,-7],[4,-11],[10,-19],[15,-13],[15,-4],[23,-2],[11,27],[-1,20],[14,-8],[19,-16],[23,-4],[19,-2],[17,-2],[53,18],[35,11],[19,13],[32,1],[17,3],[18,4],[33,-3],[11,-14],[14,-17],[-12,-5],[-13,-1],[-13,5],[-17,-1],[-20,6],[-30,-11],[-13,-6],[-23,-6],[-19,-17],[-22,-38],[-23,-44],[-9,-20],[-18,-53],[-6,-29],[1,-26],[8,-17],[1,-29],[-9,-11],[-18,-3],[-14,-4],[-16,-8],[-14,-23],[-1,-27],[0,-2],[1,-9],[1,-5],[0,-6],[1,-14],[6,-14],[2,-5],[13,-7],[13,-5],[11,-9],[5,-5],[-5,-19],[-20,-5],[-8,-2],[-23,-10],[-2,6],[-4,8],[-11,11],[-3,-7],[-4,-9],[3,-20],[-2,-7],[-2,-12],[-15,-9],[-20,-2],[-37,-13],[-17,2],[-32,11],[-17,-3],[-15,-10],[-11,-16],[0,-1],[-14,-14],[-13,-13],[-18,3],[-6,15],[-2,8],[4,17],[3,13],[27,17],[11,6],[4,1],[6,7],[7,7],[9,22],[15,14],[13,11],[8,14],[20,14],[5,19],[29,34],[9,10],[6,8],[36,14],[2,1],[19,10],[17,18],[15,40],[12,19],[19,34],[-8,24],[-14,13],[-20,19],[-11,12],[-13,29],[-15,-1],[-20,-14],[-22,-14],[-20,2],[-14,-2],[-15,-9],[-23,2],[-17,-3],[-10,14],[22,26],[-1,30],[-13,16],[-27,27],[-19,7],[-12,-9],[-3,-24],[1,-19],[-9,-17],[1,-18],[19,-13],[-15,-12],[-14,-4],[-12,-11],[-19,-27],[-12,-9],[-21,1],[-9,26],[27,28],[15,32],[5,53],[-11,14],[-11,11],[-24,-1],[-15,-15],[-15,-15],[-17,-4],[-11,-21],[-17,-7],[-15,-12],[-13,-14],[-28,-5],[-15,-8],[-24,-11],[-11,-16],[-8,-15],[-13,-9],[-7,-14],[-22,-13],[-10,-16],[0,-45],[7,-24],[2,-30],[3,-18],[-20,-7],[-14,-8],[-14,-1],[-18,0],[-11,-9],[-15,-28],[-6,-21],[-2,-20],[6,-23],[2,-26],[17,-13],[2,-23],[0,-20],[-11,-16],[-31,-10],[-12,12],[-5,24],[-3,21],[-4,22],[0,42],[-16,22],[-10,35],[-17,9],[-19,-5],[-10,12],[-27,34],[-12,19],[-14,-3],[-24,-6],[-27,-5],[-16,-7],[-11,-6],[-16,-13],[-17,-10],[-14,5],[7,17],[12,10],[2,26],[16,9],[19,32],[4,18],[-5,22],[-8,31],[-14,19],[-10,15],[-13,5],[-19,10],[-31,6],[-19,5],[6,-14],[9,-16],[13,-14],[5,-15],[-2,-22],[-2,-31],[-15,-8],[-28,14],[-18,6],[-21,-7],[-16,-21],[-12,13],[-3,16],[-16,13],[-15,4],[-17,18],[-9,11],[-7,4],[-32,16],[-25,-7],[1,-30],[-3,-42],[4,-23],[6,-8],[15,-18],[8,-9],[6,-7],[4,-15],[2,-10],[10,-11],[3,-4],[13,-11],[12,-10],[17,-13],[15,-11],[27,6],[30,18],[34,8],[20,-1],[16,-26],[8,-7],[5,-4],[8,-2],[15,-2],[33,-21],[9,-6],[22,-22],[-1,-18],[-53,-4],[-28,-5],[-16,-12],[-12,-11],[-28,-6],[-27,6],[-37,1],[-17,-4],[-22,-8],[-23,-4],[-18,3],[-16,16],[-13,29],[-14,14],[-20,9],[-14,16],[-14,23],[-12,15],[-9,13],[-16,8],[-25,-9],[-17,17],[2,27],[8,24],[7,17],[-1,20],[-10,16],[-12,11],[-15,9],[-25,7],[-22,11],[-21,3],[-26,3],[-18,4],[-14,-2],[-18,-9],[-27,-5],[-16,-11],[-8,-15],[-1,-47],[12,-18],[12,-21],[2,-28],[8,-15],[13,-17],[-1,-19],[-3,-33],[-7,-29],[-12,-26],[-7,-25],[-6,-17],[-15,-8],[-14,-15],[-28,-16],[-17,-7],[-16,10],[4,17],[9,11],[20,15],[25,28],[17,45],[1,41],[-1,24],[-4,17],[-5,24],[-10,27],[-18,28],[-9,39],[0,22],[-21,39],[-23,26],[-26,13],[-48,0],[-28,-9],[-17,0],[-22,4],[-17,-2],[-28,-10],[-13,-12],[-16,-16],[-14,-24],[-15,-40],[-5,-25],[-2,-55],[0,-16],[2,-16],[2,-17],[2,-22],[2,-18],[-12,-36],[-12,-19],[-16,13],[4,27],[2,19],[-2,20],[-3,17],[-7,14],[-11,20],[0,18],[13,38],[5,22],[6,63],[5,34],[9,19],[10,13],[17,24],[-1,21],[6,17],[23,47],[0,15],[5,26],[12,21],[-5,21],[-13,28],[-12,13],[-22,13],[-18,5],[-32,2],[-16,5],[-27,18],[-15,9],[-20,4],[-7,-15],[0,-16],[-44,-33],[-4,16],[16,16],[10,17],[-33,4],[-9,-11],[-19,1],[10,-14],[1,-18],[4,-22],[5,-33],[8,-19],[12,-6],[13,-14],[10,-18],[5,-18],[0,-27],[-4,-21],[-11,-19],[-21,-17],[-29,-20],[-40,-20],[-54,-20],[-60,-31],[-21,28],[-11,30],[-5,24],[-7,14],[-10,16],[-22,26],[-12,20],[-10,13],[-11,12],[-33,19],[-19,14],[-21,11],[-20,8],[-15,4],[-46,6],[-56,10],[-20,0],[-20,-6],[-64,-6]],[[89127,10086],[-1,140],[-1,102],[1,139],[1,153],[0,3],[0,27],[0,22],[1,440],[-52,-1],[0,46],[0,40],[0,15],[0,24],[0,25],[0,34],[0,20],[0,19],[0,17],[0,17],[0,22],[0,21],[0,1],[0,116],[-1,138],[0,33],[0,52],[0,257],[-2,974],[-120,-2],[-8,0],[-16,-1],[-1,78],[0,98],[0,69],[0,59],[0,57],[-1,181],[-1,290],[0,115],[0,124],[0,39],[0,64],[-1,173],[0,131],[0,1],[0,87],[0,288],[3,189],[1,63],[-1,186],[-1,450],[0,38],[0,38],[-1,204],[2,379],[0,310],[1,165],[1,88],[0,42],[-3,29],[1,353],[1,221],[0,42],[0,55],[0,220],[0,37],[0,60],[1,60],[0,323],[0,321],[1,238],[-1,152],[-1,18],[0,75],[0,74],[0,90],[1,442]],[[98851,22414],[6,-61],[0,-34],[-2,-45],[-3,-34],[0,-46],[0,-56],[-2,-45],[0,-31],[0,-38],[-2,-46],[-2,-42],[-4,-41],[-3,-50],[-6,-60],[-2,-57],[-4,-35],[-3,-36],[-2,-54],[-2,-42],[-2,-34],[-2,-26],[1,-38],[1,-38],[2,-34],[-5,-41],[-3,-31],[0,-48],[-33,-15]],[[74495,3],[-18,-3],[-45,1],[-21,6],[5,8],[23,35],[7,2],[17,5],[30,-13],[27,-23],[15,-12],[-40,-6]],[[75107,112],[44,-4],[15,15],[6,-2],[21,-7],[3,-20],[-16,-18],[-7,0],[-37,-2],[-36,-14],[-10,-6],[-10,-12],[-26,0],[-3,6],[-3,8],[1,44],[1,1],[20,26],[21,28],[2,3],[10,-13],[-1,-9],[0,-8],[0,-2],[-3,-7],[4,-3],[4,-4]],[[74077,86],[-45,-12],[-29,38],[-6,15],[-8,20],[-4,35],[34,36],[49,-19],[40,-34],[9,-22],[7,-18],[-9,-36],[-38,-3]],[[75138,257],[-43,-15],[-21,62],[-1,2],[20,28],[1,26],[46,36],[54,-17],[16,-34],[-20,-44],[-31,-16],[-21,-28]],[[72390,444],[1,-5],[0,2],[17,-32],[3,-15],[4,-15],[-10,-2],[-5,-1],[-42,24],[0,22],[-7,13],[-3,6],[15,12],[27,-9]],[[72214,408],[-36,-9],[-9,4],[-30,26],[2,2],[3,6],[7,11],[10,2],[28,8],[26,-16],[-1,-26],[0,-4],[0,-2],[0,-2]],[[72469,385],[-9,-5],[-4,-2],[-3,0],[-7,0],[-1,3],[-19,0],[-16,58],[4,13],[17,9],[29,-23],[4,-6],[11,-17],[-6,-30]],[[71980,452],[28,-13],[22,15],[2,-2],[16,9],[24,-47],[-46,-42],[-1,-1],[-1,-1],[-1,-1],[-4,5],[-73,37],[-17,9],[-5,102],[7,5],[0,1],[0,1],[28,12],[13,-14],[2,-23],[4,-4],[2,-48]],[[72586,413],[-65,-18],[-11,1],[-4,55],[11,13],[7,10],[52,44],[45,40],[18,-38],[-14,-68],[-39,-39]],[[75608,615],[4,-4],[10,-12],[32,-9],[0,-5],[-1,-8],[-5,-10],[-7,-14],[-12,0],[-15,5],[-5,-1],[-16,-4],[2,-6],[-12,-21],[-29,14],[-28,21],[-19,32],[11,16],[30,2],[32,3],[1,0],[22,1],[5,0]],[[75921,581],[-3,-1],[-4,1],[-12,1],[1,10],[7,23],[0,13],[1,0],[1,3],[23,-9],[7,-8],[6,-5],[3,-6],[-8,-5],[-3,-1],[-3,0],[-7,-14],[-9,-2]],[[71993,607],[-23,-55],[-23,18],[-13,10],[0,1],[1,1],[0,50],[-2,3],[7,7],[10,10],[38,21],[33,8],[25,3],[3,-4],[15,-19],[-65,-38],[-6,-16]],[[75175,886],[25,-15],[7,-16],[-1,-11],[-1,-1],[-6,-9],[-15,-5],[-8,13],[-16,6],[0,-1],[-12,7],[-1,4],[-1,10],[9,11],[1,0],[19,7]],[[78880,929],[2,-47],[-20,-22],[-5,-5],[-31,-31],[-20,-11],[-30,-17],[-31,32],[-5,25],[32,10],[7,2],[9,3],[30,11],[9,32],[26,-3],[7,-1],[20,22]],[[77070,771],[-45,-2],[-27,34],[-10,34],[20,35],[28,34],[26,26],[35,7],[51,14],[27,-8],[-14,-55],[-91,-119]],[[76816,820],[-1,-31],[2,-76],[-17,-34],[38,-19],[27,-5],[64,-9],[30,-28],[40,-10],[44,28],[28,23],[16,28],[26,23],[40,2],[89,47],[52,4],[27,13],[27,-19],[38,8],[-2,51],[-21,26],[12,38],[24,-35],[6,49],[38,24],[14,26],[40,-11],[-16,39],[48,54],[26,-28],[29,-23],[13,-26],[46,-37],[29,-32],[0,-34],[-20,-26],[29,0],[18,28],[62,-24],[7,-3],[-48,-14],[-35,-12],[-41,-11],[-36,-7],[18,-35],[17,-34],[33,-33],[38,-29],[9,-45],[-22,-22],[-17,27],[-37,-11],[4,34],[-4,41],[-33,1],[1,-146],[-38,17],[-26,55],[-19,-38],[-24,-10],[-35,11],[47,32],[-3,39],[-72,-1],[1,48],[-33,39],[-19,-51],[-14,-31],[30,-13],[8,-57],[5,-27],[0,-36],[-18,-31],[-37,-25],[-35,-11],[-49,5],[-96,3],[-58,-14],[-51,-15],[-45,-3],[-89,-40],[-24,-10],[-32,-2],[-47,0],[-36,-5],[-39,-1],[-26,-5],[-37,-8],[-35,-11],[-74,5],[-22,38],[16,51],[40,17],[3,44],[-12,39],[21,23],[5,42],[46,5],[30,-2],[23,41],[-7,39],[32,14],[-9,30],[-20,30],[39,40],[-2,32],[-33,0],[6,41],[17,83],[-5,39],[16,41],[5,57],[27,-35],[5,-58],[1,-65],[-4,-57],[3,-43]],[[72468,1144],[59,-29],[32,-18],[27,-7],[60,-25],[11,-4],[15,-11],[55,-35],[55,-74],[-11,-46],[22,-14],[0,-12],[1,-22],[2,-11],[5,-26],[0,-40],[0,-12],[-9,-23],[-5,-24],[-2,-13],[-9,-38],[-28,-48],[-17,-29],[-6,-12],[-31,-24],[-24,14],[-1,35],[-6,55],[18,48],[1,38],[-1,36],[-3,12],[-3,20],[17,31],[-18,47],[13,33],[7,56],[-12,-2],[-31,-6],[-35,-15],[-20,-8],[-9,32],[-15,38],[-11,-6],[-20,-13],[-32,22],[-24,17],[-27,-20],[-45,-16],[-18,7],[-11,5],[-18,4],[-11,2],[13,30],[4,7],[37,13],[-28,39],[-34,-2],[-38,-21],[-39,-12],[-28,-29],[-4,-11],[-8,-20],[-19,-11],[-9,-5],[-2,41],[22,40],[22,26],[32,-1],[22,29],[39,13],[48,-11],[17,22],[11,-1],[55,-5]],[[79316,1127],[-47,3],[-26,12],[-41,24]],[[79202,1166],[73,15],[24,-27],[39,5],[-22,-32]],[[79202,1166],[-36,-42],[-34,-27],[-40,-52],[-15,-37],[-20,-49],[-4,-38],[-5,-25],[-34,43],[21,46],[-14,34],[-53,7],[-45,13],[38,17],[40,5],[41,-4],[37,22],[13,28],[37,37],[30,41],[19,35],[24,-54]],[[78769,1208],[-44,-43],[6,-37],[24,-35],[-15,-47],[-20,-38],[27,-43],[17,-39],[-9,-26],[-46,-14],[-50,-38],[-28,-21],[-23,-43],[-36,-14],[-46,0],[-26,-16],[-40,-36],[-31,-43],[-42,-40],[-55,-27],[-69,-18],[-24,-41],[-41,26],[-42,5],[-45,-11],[-43,-4],[-46,-5],[-6,-25],[-36,7],[-36,-24],[-27,-4],[-44,-2],[-38,1],[-28,17],[10,56],[20,31],[21,42],[36,32],[23,38],[37,25],[9,25],[-23,20],[1,44],[-60,3],[2,1],[54,37],[-5,62],[-38,5],[-22,25],[21,30],[26,11],[29,57],[14,36],[29,23],[1,41],[-2,37],[5,29],[24,-44],[25,-57],[27,-49],[22,-32],[14,-40],[44,-1],[42,14],[48,1],[15,69],[52,25],[41,0],[11,26],[22,38],[-5,45],[40,2],[67,-18],[50,-5],[32,-9],[52,-2],[47,7],[33,-5],[71,41],[23,-13],[6,-3],[-29,-22]],[[78938,1300],[-64,-24],[2,2],[60,50],[33,30],[62,4],[-3,-2],[-39,-35],[-51,-25]],[[81105,1346],[-24,-27],[-34,33],[-17,17],[-22,36],[8,-1],[40,-3],[31,-18],[12,-25],[6,-12]],[[78557,1344],[-6,-2],[11,66],[57,-2],[-1,-6],[-6,-28],[-31,-23],[-24,-5]],[[79677,1421],[-13,-32],[-27,38],[-62,17],[24,20],[32,10],[36,-24],[10,-29]],[[79252,1316],[-23,-17],[-28,2],[11,47],[18,47],[-18,48],[5,22],[3,11],[67,33],[14,-47],[-40,-24],[34,-34],[-22,-30],[14,-29],[-35,-29]],[[82081,1583],[28,-5],[30,2],[-13,-49],[-12,-4],[-49,-17],[-23,32],[39,41]],[[62715,1630],[2,0],[1,0],[8,-2],[10,-1],[7,-1],[11,0],[4,0],[14,-4],[-5,-22],[-3,-17],[-2,-4],[-8,-22],[-9,2],[5,26],[1,0],[-1,0],[1,4],[-4,18],[-16,6],[-21,-1],[-4,-2],[-1,0],[-16,-6],[-22,11],[0,7],[18,5],[30,3]],[[62636,1600],[-11,-11],[-7,19],[1,0],[-3,7],[-4,16],[7,10],[16,9],[18,0],[-3,-27],[-3,-2],[-3,-6],[-1,-4],[-8,-10],[1,-1]],[[77491,1668],[-32,-21],[-30,14],[-13,40],[-6,21],[-4,18],[18,-10],[28,-16],[39,-46]],[[61949,1631],[-23,-2],[36,38],[4,5],[38,38],[4,8],[1,0],[0,1],[32,29],[15,0],[0,-18],[-76,-76],[-11,-11],[-20,-12]],[[79438,1817],[5,-8],[14,-23],[-1,-12],[-4,-37],[3,-37],[1,-17],[7,-42],[2,-6],[14,-33],[14,-37],[0,-42],[-13,-28],[-21,-37],[-5,48],[-7,57],[-8,43],[-47,-22],[-29,-21],[5,-40],[-14,-51],[-26,66],[-2,5],[-14,42],[-6,17],[-4,10],[-3,8],[-36,-10],[-12,-39],[-29,-22],[-20,-23],[-27,-14],[-49,-22],[-33,-2],[-24,-11],[-4,-2],[-9,3],[-19,7],[28,33],[14,17],[9,9],[9,9],[18,55],[-38,-15],[-15,31],[-5,17],[-6,17],[-3,26],[-2,9],[35,10],[39,7],[28,24],[24,0],[10,-5],[30,-15],[35,-18],[3,-25],[1,-13],[24,35],[43,29],[55,3],[28,27],[24,27],[9,27],[4,11]],[[79716,1820],[0,-2],[-16,-56],[-22,-62],[-24,34],[-63,-8],[75,69],[50,25]],[[77760,1750],[-35,-2],[-24,10],[-33,40],[-15,57],[43,-10],[31,-7],[13,-26],[20,-62]],[[77657,1927],[-15,-50],[-12,26],[-31,7],[-29,24],[11,17],[6,10],[22,15],[6,-13],[13,-26],[29,-10]],[[83180,1931],[-48,-6],[-47,13],[7,2],[48,16],[28,22],[33,14],[34,14],[35,-2],[5,-1],[-30,-30],[-40,-22],[-25,-20]],[[79438,1817],[-37,19],[-42,30],[-19,30],[-28,5],[-32,13],[-32,17],[-29,6],[13,48],[26,-7],[38,-18],[45,-3],[-1,18],[-1,18],[10,19],[7,12],[37,-3],[52,-14],[24,-14],[43,-16],[9,-30],[4,-11],[23,-53],[-49,-14],[-47,-12],[-5,-16],[-9,-24]],[[79249,2130],[13,-54],[-34,25],[-7,2],[-32,11],[-30,24],[-24,22],[-9,8],[-34,41],[31,12],[6,2],[18,-3],[17,-3],[31,-11],[2,-2],[29,-14],[23,-60]],[[81959,1957],[-44,-38],[-2,-28],[10,-55],[-50,38],[-23,17],[-40,23],[-35,5],[-59,-8],[-35,-2],[15,40],[27,63],[-6,92],[-1,6],[-10,49],[5,36],[29,30],[24,21],[13,26],[31,2],[52,-29],[34,-29],[45,-54],[5,-9],[12,-21],[4,-50],[-13,-82],[12,-43]],[[81347,2344],[-31,-71],[-22,0],[-11,-41],[-16,-18],[-29,6],[-48,3],[-40,52],[34,1],[35,12],[31,-8],[26,23],[20,33],[24,3],[27,5]],[[83596,2024],[-39,-2],[25,35],[17,40],[2,8],[6,16],[51,27],[50,19],[43,9],[12,35],[16,25],[7,37],[32,30],[30,39],[42,2],[37,-18],[22,-25],[14,-29],[1,-3],[8,-49],[-46,-34],[-33,-7],[-41,-21],[-73,-36],[-40,-2],[-35,-4],[-27,-12],[-27,-27],[-54,-53]],[[84064,2319],[-26,-64],[-40,24],[-2,7],[-10,34],[16,17],[25,16],[31,-29],[6,-5]],[[78642,2403],[41,3],[36,-10],[30,-40],[25,-8],[39,-9],[39,0],[44,-3],[10,-4],[48,-19],[4,-20],[2,-12],[13,-52],[-34,5],[-39,3],[-34,-12],[-7,5],[-20,15],[-50,13],[-16,27],[-35,17],[-37,37],[-39,34],[-15,22],[-5,8]],[[78167,2264],[-15,-40],[-5,12],[-7,17],[-9,1],[-15,2],[-31,32],[-9,81],[19,42],[49,30],[44,-24],[6,-50],[-15,-23],[-19,-33],[7,-47]],[[78642,2403],[-43,-14],[-35,26],[2,41],[-19,25],[25,28],[9,9],[25,-19],[5,-12],[13,-32],[18,-52]],[[81347,2344],[35,47],[-23,18],[20,30],[29,46],[17,41],[8,-45],[-1,-58],[0,-78],[7,-33],[14,-34],[2,-38],[11,-82],[44,-31],[0,-2],[2,-39],[18,-67],[-6,-49],[-56,-71],[-17,-20],[-28,-33],[-22,26],[-5,43],[26,13],[-30,53],[8,42],[-3,42],[-60,46],[-28,2],[-35,10],[-53,4],[-49,1],[-5,20],[-4,16],[39,2],[30,-3],[63,14],[75,46],[-54,2],[26,24],[23,19],[41,1],[-14,44],[-13,39],[-32,-8]],[[79316,1127],[43,-2],[47,62],[-33,18],[34,28],[-29,17],[-27,-8],[-20,20],[-16,40],[7,30],[26,-13],[36,-7],[45,-20],[56,32],[13,40],[14,40],[14,-36],[24,-76],[18,-35],[25,-30],[7,-8],[18,18],[22,21],[29,43],[28,-12],[27,-7],[38,15],[10,13],[7,9],[27,-24],[9,4],[13,6],[-29,42],[-10,28],[7,45],[-1,49],[49,32],[27,17],[-18,15],[-7,31],[-24,-2],[-32,-6],[-31,48],[18,57],[65,-40],[47,-26],[34,-35],[24,-11],[36,39],[21,47],[1,52],[-26,26],[-30,22],[-45,34],[-27,33],[-51,33],[-37,-18],[6,-35],[-34,28],[-44,9],[-1,1]],[[79716,1820],[-7,44],[40,16],[-31,34],[-64,11],[-55,19],[-22,25],[39,11],[36,4],[46,-31],[-11,49],[-17,29],[-1,40],[20,52],[-12,49],[-20,42],[-19,27],[-1,41],[34,-24],[38,-39],[36,35],[20,57],[15,-36],[23,-27],[52,32],[-45,43],[-1,32],[34,25],[-20,40],[-6,47],[-10,47],[41,36],[26,9],[17,-17],[25,9],[48,-16],[8,40],[45,-17],[19,-30],[39,-38],[39,-44],[5,-42],[38,-23],[32,-31],[23,-4],[26,-22],[22,-23],[27,-17],[30,-10],[20,-23],[19,-36],[30,-31],[17,-26],[31,-29],[5,-4],[29,-38],[14,-38],[10,-35],[-3,-34],[12,-12],[20,-19],[20,-28],[8,-9],[8,-20],[16,-34],[2,-76],[1,-13],[-9,-73],[-2,-32],[-5,-17],[-7,-26],[-8,-30],[-3,-11],[-33,-11],[-4,-1],[-3,-3],[-31,-29],[-31,-41],[-9,-27],[-25,22],[-38,3],[-16,-21],[-28,-4],[-46,-13],[-43,-5],[-30,-7],[-50,-19],[-58,-7],[-33,-8],[-17,-34],[-56,-8],[-44,-21],[-31,-24],[-55,-41],[-7,-41],[-16,1],[-13,0],[-41,4],[-35,-7],[-43,-41],[-35,-14],[-21,-13],[-7,-4],[-13,-11],[-16,-13],[-30,-15],[-24,-13],[-34,-12],[-29,-18],[-7,-1],[-31,-4],[-43,-31],[-37,-43],[-29,-14],[-24,-17],[-60,-3],[-31,-5],[-31,-5],[-21,23],[14,26],[8,-6],[13,-9],[5,0],[28,2],[1,30],[36,35],[28,25],[31,-1],[-3,3],[-28,38]],[[82005,2444],[10,64],[-17,25],[5,34],[27,11],[30,-2],[12,-42],[15,-37],[32,-72],[24,-19],[23,-43],[4,-61],[4,-43],[7,-47],[4,-19],[17,-112],[3,-59],[-6,-46],[-44,-22],[-13,34],[-27,40],[-33,-1],[-23,8],[3,50],[-3,37],[14,37],[-4,25],[-1,1],[3,51],[2,43],[-8,48],[-7,29],[-21,32],[-32,56]],[[78435,2614],[-6,-16],[-9,-22],[-25,-30],[-7,-7],[-8,-31],[-21,-7],[-19,38],[3,8],[15,35],[25,16],[9,6],[43,10]],[[81301,2472],[21,-25],[24,51],[24,-28],[-20,-27],[-23,-50],[-45,-25],[-42,-7],[-23,11],[-29,-9],[-33,-27],[-40,3],[27,26],[-21,58],[36,38],[11,39],[0,71],[13,46],[39,15],[35,-19],[13,-65],[20,-42],[13,-34]],[[78435,2614],[-9,26],[-7,10],[-14,22],[-5,11],[-7,17],[16,18],[32,-2],[31,-36],[21,-18],[8,-6],[13,-14],[16,-17],[15,32],[6,12],[8,-31],[3,-11],[-14,-48],[-12,-40],[-8,-26],[-40,10],[-29,1],[-24,24],[25,30],[16,-3],[13,-3],[-19,38],[-35,4]],[[80645,2698],[40,-39],[50,-27],[46,-24],[40,-32],[38,-17],[36,-23],[33,-37],[25,-35],[18,-31],[8,-41],[6,-30],[11,-45],[12,-46],[15,-36],[10,-33],[8,-45],[1,-7],[4,-49],[-1,-77],[-7,-56],[-34,-50],[-21,-19],[-36,-17],[-15,44],[40,27],[19,37],[3,32],[-17,43],[-41,46],[-78,29],[-35,0],[-38,19],[-46,26],[-30,3],[-29,-18],[-29,-42],[-9,-51],[-11,-25],[-33,-7],[-38,10],[-10,42],[-44,53],[-3,7],[-19,50],[-33,31],[-43,37],[7,52],[-5,29],[-6,57],[24,52],[11,39],[36,-12],[10,32],[-12,48],[9,40],[22,51],[-33,-10],[2,43],[38,34],[-5,43],[35,-4],[29,-23],[38,-3],[37,-45]],[[82803,2813],[44,-33],[36,10],[27,-1],[47,-9],[36,-18],[22,-8],[39,-4],[21,-25],[12,-35],[9,-48],[25,-40],[4,-39],[-12,-58],[-2,-51],[28,-5],[18,-74],[-2,-43],[-42,3],[18,34],[-30,34],[-37,-29],[-11,69],[-19,29],[-11,26],[-2,43],[-3,27],[-42,-28],[-6,-54],[-3,-50],[-26,7],[-10,30],[-26,35],[-14,36],[-16,54],[-20,35],[-24,31],[-30,22],[-32,15],[-10,33],[-3,61],[20,27],[27,-9]],[[81304,2773],[0,-50],[-24,52],[-16,17],[-8,8],[-2,32],[-1,7],[6,59],[0,3],[23,-54],[22,-62],[0,-12]],[[80995,2859],[29,-54],[22,-34],[51,-97],[5,-4],[35,-31],[-21,-58],[-38,-38],[50,-20],[-38,-17],[-14,5],[-14,6],[-33,31],[-23,30],[-5,7],[37,30],[-22,17],[-20,3],[-21,3],[-29,12],[-42,40],[20,16],[21,12],[14,42],[-1,27],[0,18],[-5,47],[-28,-18],[-18,40],[21,49],[19,24],[32,-33],[16,-55]],[[79506,2909],[-26,-12],[-21,4],[-2,0],[14,41],[23,45],[16,49],[12,26],[8,16],[41,4],[25,7],[27,8],[31,0],[30,0],[14,-20],[-13,-23],[-19,-31],[-41,-33],[-29,-27],[-20,-26],[-41,-15],[-29,-13]],[[79899,3028],[-9,-31],[-14,21],[-15,23],[-22,37],[-9,53],[34,9],[13,-42],[25,-60],[-3,-10]],[[86885,3221],[-9,-23],[-9,-19],[-20,-25],[-32,-4],[-35,-11],[-49,-18],[-36,-24],[-49,-13],[-54,-24],[-41,-21],[-26,-23],[-25,-22],[-42,-21],[-29,-6],[-26,6],[-33,-28],[-28,-25],[-50,-78],[-29,-53],[-13,-43],[-30,-54],[2,-39],[20,-66],[-41,-8],[-38,25],[-44,-5],[-7,35],[-33,-30],[-25,-18],[-29,-15],[-36,20],[-17,-18],[-32,1],[-49,-12],[-50,-5],[-40,37],[-16,34],[-19,41],[-21,46],[31,34],[52,1],[54,-5],[15,-41],[21,-19],[19,34],[42,-6],[-9,40],[33,11],[43,5],[103,91],[25,42],[-39,13],[-19,-23],[-32,-8],[-27,-17],[-47,-5],[-21,-24],[-48,-20],[-36,16],[-16,-26],[-40,17],[-11,-38],[-36,1],[-44,40],[-47,-6],[-34,-28],[-22,0],[-23,8],[-14,28],[1,9],[1,20],[44,4],[35,-2],[25,2],[25,9],[24,17],[29,-12],[28,13],[37,24],[44,-10],[37,10],[36,14],[28,19],[34,13],[24,25],[52,4],[40,10],[25,12],[26,24],[19,20],[12,39],[37,-27],[16,-34],[30,5],[34,-6],[45,23],[-11,42],[19,46],[22,20],[32,28],[48,20],[43,-5],[49,24],[34,-31],[25,39],[-4,35],[13,28],[27,-50],[27,7],[23,19],[27,-21],[42,10],[39,28],[37,-3],[-14,-30],[1,-40]],[[82892,3310],[-8,-55],[-49,29],[-30,21],[-29,0],[-17,19],[30,9],[51,18],[11,56],[43,-32],[-1,-37],[-1,-28]],[[82328,3012],[34,-32],[39,21],[29,-29],[-20,-22],[-14,-39],[-20,-27],[26,-19],[-25,-34],[25,-29],[22,-42],[45,-7],[13,-77],[52,-31],[19,45],[13,42],[37,13],[-29,28],[-21,13],[7,39],[16,35],[29,-28],[43,-40],[31,-30],[8,-53],[14,-54],[-12,-30],[-26,8],[-31,25],[-32,25],[-19,-34],[-3,-76],[22,-56],[38,-39],[44,-54],[50,-50],[37,-31],[30,-51],[9,-40],[8,-33],[15,-51],[-3,-38],[25,-75],[33,-83],[40,-46],[1,-2],[16,-42],[-30,-54],[-31,-32],[-27,7],[-35,3],[-39,-5],[27,32],[31,21],[-32,28],[-36,14],[-32,-23],[-21,19],[49,35],[54,31],[-16,57],[-48,5],[29,37],[16,42],[-11,35],[-16,30],[-64,-17],[-55,5],[-30,-1],[-7,-42],[-29,-13],[-25,27],[-56,-38],[-46,-22],[-25,-10],[-72,-64],[-29,-7],[18,31],[16,27],[14,39],[7,43],[8,36],[-14,30],[0,40],[-13,31],[-2,6],[-21,45],[-12,31],[-12,31],[-12,34],[-21,39],[-9,36],[-5,60],[-33,17],[-27,16],[-13,48],[-21,26],[-23,31],[-27,28],[-36,56],[-21,24],[-1,26],[12,45],[-5,50],[-29,58],[-15,32],[-13,36],[-24,24],[-23,56],[3,46],[-7,35],[10,39],[18,25],[23,40],[14,36],[8,51],[12,41],[49,-50],[24,-64],[-7,-54],[9,-49],[20,-27],[37,-43],[20,-36],[31,-7],[13,-28],[38,-31],[33,-26]],[[82005,2444],[-10,-61],[-3,-46],[-2,-40],[19,-31],[-4,-41],[23,-38],[-1,-13],[-2,-31],[-27,24],[-7,6],[-29,50],[-25,67],[-21,24],[-22,41],[-29,42],[-14,-38],[-30,7],[-24,17],[-24,35],[-24,38],[1,63],[23,25],[6,-43],[6,-39],[16,-44],[14,51],[38,-24],[-13,49],[-13,50],[-14,37],[-7,35],[14,52],[-19,29],[-10,-49],[-45,-62],[-53,-13],[-35,-21],[-7,36],[13,51],[-46,45],[-16,32],[-20,63],[-28,43],[-8,40],[-31,37],[-26,37],[-37,40],[-44,28],[-44,29],[-38,28],[-37,16],[3,26],[26,68],[30,37],[0,44],[-37,-9],[5,42],[32,24],[-23,61],[-54,-14],[15,42],[40,52],[39,-57],[53,-74],[52,-45],[5,-39],[3,-31],[-7,-29],[14,-34],[43,-63],[18,-34],[15,-56],[24,-25],[24,-34],[17,-51],[10,-23],[26,-59],[25,-33],[17,-28],[26,-21],[18,38],[-8,48],[25,-18],[56,-37],[61,-28],[54,-100],[0,-36],[11,-41],[25,-54],[33,-42]],[[83120,3319],[30,-4],[27,0],[49,-54],[41,-52],[5,-30],[1,-48],[0,-56],[2,-34],[6,-43],[29,-28],[-28,-23],[-31,28],[-10,48],[-10,34],[-17,37],[-32,42],[-37,28],[-34,12],[-39,8],[-31,-6],[-28,-6],[-22,20],[23,36],[-25,13],[-2,34],[5,29],[19,33],[-31,39],[-30,38],[-11,43],[-10,39],[32,-29],[19,-31],[36,-22],[54,-60],[27,-27],[23,-8]],[[81735,3542],[35,-12],[-7,-34],[22,-33],[29,-18],[26,-13],[17,40],[49,-34],[16,-23],[20,32],[2,-65],[11,-52],[-10,-47],[-2,-36],[-36,-41],[-36,51],[-39,9],[-36,14],[-28,11],[-48,21],[0,36],[-32,51],[-62,36],[-19,43],[-37,11],[8,26],[-2,29],[25,6],[20,-18],[31,11],[8,30],[38,-23],[37,-8]],[[80808,3345],[-25,-20],[-35,23],[-30,40],[2,6],[11,36],[18,48],[8,20],[-3,41],[9,29],[9,30],[13,-23],[16,-31],[-1,-34],[12,-58],[10,-58],[-14,-49]],[[83305,3480],[18,-54],[-35,9],[-45,36],[-37,7],[-28,12],[-23,14],[-26,21],[23,37],[20,39],[45,12],[26,-10],[23,-60],[19,-35],[20,-28]],[[79770,3539],[-9,-1],[-22,10],[1,35],[1,15],[65,16],[0,-19],[0,-10],[-12,-41],[-24,-5]],[[82350,3381],[9,-42],[-34,4],[-40,22],[-43,22],[-27,23],[-31,26],[-32,26],[-44,54],[-36,38],[9,34],[38,53],[35,-28],[28,-31],[34,-38],[34,-30],[24,-25],[35,-34],[23,-39],[18,-35]],[[83070,3655],[10,-50],[-36,17],[-27,16],[-27,21],[-34,27],[4,39],[35,35],[29,-29],[17,-26],[29,-50]],[[81400,3558],[-6,-44],[-26,16],[-7,5],[-45,24],[-12,32],[2,56],[-4,10],[-8,21],[-44,44],[-25,25],[63,17],[-17,47],[34,-29],[5,-3],[4,-15],[7,-23],[0,-31],[29,-70],[25,-45],[25,-37]],[[86885,3221],[57,26],[59,3],[42,18],[45,25],[35,46],[40,-3],[28,10],[42,22],[35,10],[28,4],[27,16],[19,41],[26,-37],[16,33],[15,67],[39,46],[-10,33],[8,33],[21,-42],[6,-33],[11,-29],[6,-29],[13,-18],[18,43],[25,26],[28,59],[28,-32],[1,-37],[59,21],[-23,35],[-21,37],[38,23],[36,1],[31,48],[30,16],[48,26],[32,33],[23,22],[29,16],[-15,-76],[44,14],[26,12],[33,33],[33,41],[31,29],[18,15],[28,0],[19,25],[60,-10],[-8,-18],[-12,-26],[-38,-32],[-28,-41],[-53,-28],[-33,-20],[-31,-25],[-42,-29],[-44,-31],[-30,-20],[-28,-31],[-33,-26],[-51,-42],[-34,-47],[-22,9],[-18,26],[-36,-41],[-24,-61],[-28,-23],[-29,11],[-40,-39],[-51,9],[-17,32],[-30,-47],[-31,11],[-31,-50],[1,-32],[35,-22],[-33,-29],[-26,-2],[-35,-1],[-41,-21],[-35,-16],[-26,-40],[-27,-31],[-22,-20],[-18,20],[-46,16],[42,-50],[-48,-40],[-24,-4],[-38,-17],[-41,-23],[-30,23],[-33,32],[-5,37],[15,47],[35,16],[-14,21],[-26,12],[-2,21],[-3,20]],[[81943,3712],[-44,-3],[-24,6],[-16,4],[-15,22],[-23,34],[-7,22],[-2,5],[-14,30],[-15,38],[-12,42],[20,-18],[47,-38],[25,-22],[49,-42],[18,-17],[15,-14],[1,-49],[-3,0]],[[82434,3847],[-29,-26],[-33,16],[-22,41],[-15,33],[31,41],[21,-26],[22,-33],[25,-46]],[[83513,3792],[-37,-3],[-33,11],[-47,64],[-15,47],[16,30],[3,35],[29,-22],[36,-43],[24,-27],[17,-50],[7,-42]],[[88401,3950],[32,-13],[31,-16],[19,-60],[7,-59],[-74,-63],[-52,5],[-39,2],[-48,28],[16,21],[49,16],[17,23],[11,46],[5,61],[-20,-1],[-7,7],[10,9],[16,16],[21,9],[12,3],[2,-7],[5,-13],[-13,-14]],[[88687,4138],[37,-8],[58,4],[-1,-2],[-41,-45],[-29,-10],[-72,-12],[25,19],[30,22],[-7,32]],[[88386,4156],[-9,-9],[-13,0],[-8,15],[-2,2],[-2,2],[2,2],[-3,0],[3,10],[6,9],[14,3],[15,-10],[-1,-2],[-1,-4],[-1,-8],[0,-10]],[[80893,4109],[-15,-28],[-4,-19],[-4,-15],[-12,-35],[-13,7],[-16,7],[-5,37],[-1,22],[-1,18],[-27,-9],[-3,-38],[8,-37],[-17,-20],[-25,20],[-3,21],[-1,8],[-17,34],[-54,-7],[-3,24],[-2,10],[6,3],[34,17],[20,32],[7,10],[52,21],[25,-17],[10,-38],[3,-1],[30,-3],[31,-18],[-3,-6]],[[81041,4164],[-46,-4],[3,23],[4,20],[1,25],[2,20],[16,21],[24,13],[31,28],[39,19],[3,-1],[20,-4],[-2,-60],[-35,-16],[-16,-21],[-10,-14],[-18,-2],[-28,-4],[7,-27],[5,-16]],[[89833,4543],[33,-15],[62,37],[16,24],[27,33],[15,36],[42,10],[19,-36],[-18,-53],[-23,-44],[-42,-65],[-26,-14],[-68,9],[-38,0],[-17,0],[-37,3],[-53,4],[-60,-5],[-1,0],[-53,2],[-49,-16],[-78,-43],[-34,-20],[-64,-21],[-35,-11],[-26,-19],[-53,-22],[-36,8],[-8,2],[21,26],[32,30],[34,12],[23,-5],[24,3],[50,17],[40,19],[38,57],[18,25],[45,45],[32,38],[41,40],[43,24],[32,44],[23,31],[27,21],[33,41],[55,19],[36,40],[15,7],[21,16],[43,15],[6,40],[37,15],[36,-4],[38,-28],[-5,-8],[-6,-11],[-91,-33],[-9,-7],[-19,-16],[-16,-2],[-44,-37],[-25,-29],[-32,-26],[-11,-35],[-36,-7],[-12,-21],[-1,0],[-5,-10],[-9,-14],[40,-35],[3,-40],[-15,-40],[55,-1]],[[91042,5246],[-31,-16],[-34,-18],[-100,-43],[-34,-2],[-21,-23],[-22,-59],[-65,-62],[-64,-6],[-23,-20],[-33,-6],[18,21],[21,24],[17,30],[-6,38],[7,42],[40,48],[34,39],[29,35],[29,13],[27,2],[39,10],[51,-58],[54,15],[25,34],[34,21],[43,48],[54,39],[15,30],[-8,35],[14,47],[43,40],[24,13],[47,22],[52,10],[13,-39],[2,-4],[-67,-68],[-32,-41],[-10,-26],[-24,-26],[-31,-39],[-46,-37],[-48,-35],[-33,-28]],[[91241,5774],[-37,-2],[-53,31],[-4,27],[-2,14],[27,58],[6,9],[-1,5],[-2,7],[65,30],[15,-61],[10,-2],[1,-2],[1,-2],[16,-30],[9,-35],[-7,-19],[-3,-8],[-41,-20]],[[91695,6125],[-58,-29],[-37,26],[-15,10],[52,119],[72,-13],[14,-55],[-28,-58]],[[90121,6393],[-6,-6],[-14,4],[-46,12],[-9,18],[14,23],[38,12],[23,-63]],[[91761,5806],[-35,-11],[-5,49],[2,39],[25,18],[29,9],[58,23],[31,19],[21,21],[5,30],[59,15],[27,19],[28,28],[29,39],[28,40],[29,26],[28,29],[31,28],[22,33],[27,15],[26,37],[6,10],[-2,33],[-22,84],[8,96],[22,86],[33,-5],[16,-77],[49,-76],[19,-52],[5,-5],[-1,-6],[-8,-29],[-24,-22],[-54,-63],[-11,-27],[-22,-19],[-27,-22],[-25,-33],[-40,-57],[-34,-39],[-51,-61],[-46,-46],[-31,-25],[-37,-25],[-43,-32],[-43,-36],[-31,-19],[-30,-31],[-29,-5],[-12,-3]],[[92214,6762],[1,-14],[-93,-45],[-65,-5],[9,33],[37,5],[19,10],[5,2],[22,12],[53,52],[10,-18],[2,-32]],[[91868,7103],[-11,-6],[-4,79],[5,1],[15,25],[47,-46],[-47,-50],[-5,-3]],[[91631,7206],[4,-62],[-36,3],[-8,34],[-7,27],[33,9],[14,-11]],[[89504,7261],[13,-20],[0,1],[9,-8],[14,-33],[-30,-47],[-15,16],[-7,39],[-8,10],[-25,28],[2,3],[1,1],[9,15],[21,14],[12,-12],[4,-7]],[[91721,7175],[-13,-2],[-42,16],[4,19],[3,15],[16,28],[28,40],[27,-3],[9,-2],[33,-26],[-11,-23],[-16,-34],[-27,-25],[-11,-3]],[[93844,7334],[-40,-53],[-33,-5],[-16,17],[-2,-1],[27,28],[12,13],[53,7],[0,-4],[-1,-2]],[[90827,7271],[-34,-2],[8,15],[16,30],[-1,19],[-1,46],[49,8],[3,1],[-2,-22],[-2,-22],[-6,-47],[-30,-26]],[[92207,7335],[-2,-7],[-7,2],[-30,10],[-2,33],[-1,12],[14,14],[37,-6],[2,-28],[1,-20],[-12,-6],[0,-4]],[[92269,7399],[-7,-2],[10,20],[17,35],[40,24],[20,-32],[-11,-18],[-9,-14],[-37,-3],[-23,-10]],[[93073,7449],[20,-68],[-40,0],[-4,0],[-1,4],[-18,-4],[-9,49],[0,33],[-5,1],[7,35],[4,-5],[45,-42],[1,-3]],[[90732,7490],[0,-22],[2,1],[3,-75],[-26,10],[-15,29],[-4,8],[8,7],[-11,42],[13,30],[13,56],[10,-51],[7,-35]],[[90082,7773],[-16,-66],[-6,0],[-19,3],[-45,7],[14,56],[-2,5],[-2,3],[29,13],[47,-21]],[[92109,7744],[-41,-12],[-23,48],[49,25],[13,-45],[3,-12],[0,-1],[-1,-3]],[[91459,7770],[-56,-26],[-18,29],[2,39],[19,27],[28,-10],[25,-59]],[[88476,7852],[-29,-8],[-1,1],[-1,0],[-12,-1],[-24,7],[-8,11],[11,9],[12,11],[46,-7],[5,-11],[4,-11],[-3,-1]],[[89097,7887],[11,-38],[0,-5],[0,-2],[-5,-9],[-2,-4],[-3,0],[-14,-19],[-18,11],[-16,-7],[-3,2],[-17,8],[-2,0],[-4,3],[3,28],[16,17],[4,-4],[10,10],[10,17],[1,0],[30,-5],[0,-2],[-1,-1]],[[91511,7896],[-1,-10],[4,4],[7,-14],[16,-33],[-36,-7],[-17,10],[-1,38],[28,12]],[[91685,7888],[-62,-18],[-4,15],[-2,8],[-1,1],[8,26],[42,9],[19,-41]],[[91898,7867],[-12,-6],[-19,40],[28,30],[24,-4],[5,-1],[5,-19],[6,-21],[-37,-19]],[[90482,7969],[18,-14],[-3,-43],[-8,-25],[10,-43],[2,-4],[1,-2],[45,-25],[29,-25],[11,-9],[2,-1],[4,-4],[1,-2],[16,-19],[35,-34],[-14,-5],[-19,-6],[-68,52],[-3,1],[-6,3],[-12,10],[-28,24],[-36,10],[-16,50],[0,8],[0,3],[0,10],[1,31],[13,37],[24,21],[1,-1],[0,2]],[[87077,7895],[-4,-2],[-5,4],[-25,21],[-34,60],[2,22],[1,1],[1,10],[0,1],[3,-6],[1,-2],[27,-44],[6,-6],[3,-3],[1,0],[0,-1],[17,-16],[23,-32],[-10,-4],[-7,-2],[0,-1]],[[90217,7983],[-16,-3],[-13,35],[-10,28],[-5,17],[-2,4],[1,17],[3,1],[20,0],[2,-8],[3,-13],[3,-5],[10,-12],[10,-7],[0,-1],[10,-14],[0,-2],[3,-2],[-2,-12],[-4,-18],[-7,-3],[-6,-2]],[[91180,8005],[-28,-27],[-32,22],[29,53],[14,23],[64,5],[1,5],[2,5],[7,0],[15,-14],[-33,-36],[-39,-15],[0,-21]],[[91957,8121],[-17,-32],[-32,2],[-8,32],[12,33],[44,2],[1,-37]],[[88555,8123],[-10,-8],[-25,10],[-4,6],[-1,19],[0,5],[17,11],[1,0],[21,-2],[2,-7],[4,-9],[0,-14],[-4,-4],[-1,-4],[0,-3]],[[90543,8058],[-10,-1],[14,28],[42,42],[23,22],[4,3],[5,10],[11,23],[19,-17],[-21,-31],[-37,-43],[-14,-10],[-36,-25],[0,-1]],[[94423,8108],[-10,-2],[-7,0],[-28,0],[-24,28],[15,22],[5,8],[22,6],[18,4],[23,4],[43,7],[35,6],[23,-15],[-8,-34],[-33,-12],[-44,-13],[-30,-9]],[[93723,8217],[-33,-31],[-31,31],[15,39],[31,1],[18,-40]],[[88799,8273],[-14,-25],[-8,3],[0,-2],[-12,1],[-4,0],[-3,6],[-1,2],[-17,14],[-2,10],[13,12],[4,6],[11,2],[16,12],[3,-4],[12,-14],[1,-10],[1,-13]],[[91287,8159],[0,-22],[-45,3],[-11,0],[2,40],[-28,14],[-4,2],[10,42],[34,25],[2,31],[22,27],[26,-30],[1,-18],[2,-18],[-27,-4],[-5,-51],[27,-37],[-3,-2],[-3,-2]],[[92727,8246],[-52,-6],[-6,20],[-7,24],[22,23],[11,12],[8,8],[36,-19],[-12,-62]],[[93247,8315],[-13,-14],[-31,30],[32,43],[18,-12],[-6,-47]],[[91975,8371],[-21,-6],[-12,12],[1,7],[1,6],[19,3],[-1,1],[0,4],[16,-3],[0,-1],[-3,-23]],[[93108,8349],[-31,-1],[-8,46],[5,20],[3,13],[27,37],[12,-53],[10,-39],[4,-13],[-22,-10]],[[90077,8402],[-47,-28],[-7,10],[-5,6],[-16,1],[-23,30],[3,32],[4,28],[38,1],[14,1],[10,-21],[29,-60]],[[92094,8478],[-11,-23],[-5,-11],[-24,0],[2,9],[10,19],[1,0],[26,16],[0,-5],[1,-5]],[[92372,8460],[-1,-36],[25,-40],[-8,-63],[-25,42],[-23,73],[-34,-7],[-36,36],[44,17],[33,10],[27,18],[3,-19],[4,-23],[-9,-8]],[[89139,8518],[24,-14],[5,-33],[1,-8],[-7,-21],[1,-1],[1,-14],[1,-21],[6,-26],[4,-14],[-12,-7],[-5,-4],[-2,5],[-30,18],[-4,22],[-3,22],[1,19],[0,4],[-2,5],[1,29],[1,33],[7,1],[4,1],[1,-2],[7,6]],[[87584,8516],[-15,-12],[-5,0],[-25,3],[-18,1],[-19,0],[-29,2],[-9,1],[1,30],[32,11],[0,1],[38,7],[9,-3],[5,-2],[10,-3],[6,-2],[9,-8],[21,-18],[-11,-8]],[[90832,8399],[-66,-24],[-3,1],[-12,8],[-10,79],[30,28],[56,40],[47,66],[13,-26],[-26,-90],[-14,-34],[-12,-27],[-2,-11],[-1,-10]],[[88225,8602],[9,-1],[8,3],[6,2],[0,-6],[-3,-5],[-7,-10],[-1,-2],[-2,-2],[-17,-8],[-10,0],[-11,-5],[-18,10],[0,1],[-13,8],[-6,4],[2,13],[16,6],[23,-3],[1,-2],[18,-2],[3,-1],[2,0]],[[93863,8550],[-46,-19],[12,31],[17,37],[53,16],[29,-35],[-36,-3],[-29,-27]],[[93699,8634],[-20,-21],[-12,1],[-27,4],[-43,55],[26,17],[72,-52],[4,-4]],[[94115,8723],[-54,-59],[13,105],[41,-46]],[[90040,8743],[0,-2],[-43,27],[2,38],[10,5],[23,10],[9,-4],[3,-2],[28,-13],[27,-13],[-34,-46],[-25,0]],[[94246,8792],[13,-20],[-38,-3],[-24,5],[-20,-4],[-8,-2],[-13,86],[-18,7],[0,26],[20,-6],[14,-26],[14,-14],[32,-17],[25,-29],[3,-3]],[[90893,8762],[-28,-22],[-10,41],[-2,11],[-21,28],[19,37],[19,28],[3,5],[28,-28],[10,-9],[-28,-46],[3,-14],[7,-31]],[[88304,8882],[-10,-11],[-1,-1],[-1,-2],[-12,0],[-11,9],[0,1],[0,11],[5,1],[13,9],[3,-8],[14,-9]],[[89401,8873],[-1,0],[-10,9],[-1,13],[1,10],[2,13],[2,2],[7,9],[3,3],[6,-5],[-1,-6],[-1,-6],[4,-31],[-6,-11],[-5,0]],[[91225,8849],[-40,-2],[6,46],[30,43],[19,-37],[-15,-50]],[[91601,8919],[3,-22],[1,-11],[10,-30],[-39,20],[-32,5],[-29,26],[-31,-2],[31,52],[45,-4],[41,-34]],[[93984,8945],[-36,-42],[-40,10],[-4,1],[-15,16],[-9,9],[40,11],[53,27],[24,47],[5,10],[5,-41],[-23,-48]],[[88452,9004],[10,-59],[-43,10],[-21,46],[-10,27],[16,7],[20,9],[5,-9],[23,-31]],[[89232,9028],[-15,-6],[-18,28],[3,5],[8,13],[16,2],[3,1],[11,-18],[2,-8],[1,-2],[-5,-13],[-6,-2]],[[88033,9003],[-8,-1],[-19,18],[-7,7],[32,17],[34,10],[42,18],[33,-24],[-18,-16],[-11,-10],[-10,-2],[-36,-10],[-32,-7]],[[92998,9044],[-5,-13],[-26,10],[-7,26],[-15,60],[0,26],[22,0],[0,-15],[3,-6],[40,-60],[-12,-28]],[[94139,9117],[8,-74],[-4,2],[-29,16],[-30,35],[3,56],[26,20],[1,-34],[25,-21]],[[88858,9035],[-35,-6],[-15,8],[-11,6],[11,34],[13,31],[5,20],[3,18],[12,35],[32,-19],[11,-19],[10,-19],[-3,-47],[-33,-42]],[[89503,9165],[8,-29],[-15,6],[-19,7],[-18,18],[-8,8],[-8,35],[21,22],[18,-31],[21,-36]],[[91223,9172],[-22,-16],[-8,28],[-3,9],[1,41],[31,6],[19,4],[30,-5],[-2,-27],[-40,-35],[-6,-5]],[[91976,8864],[-10,-43],[3,-38],[-17,-4],[-13,-37],[-19,-54],[48,10],[11,-21],[-50,-55],[7,-40],[7,-40],[58,-33],[-20,-21],[-20,-7],[-14,9],[-23,20],[-13,13],[-7,7],[-5,5],[-12,15],[-10,13],[5,10],[5,52],[3,27],[-21,81],[0,36],[35,32],[1,17],[-1,38],[-43,-28],[-6,23],[-5,17],[-4,35],[3,48],[-14,29],[-12,22],[21,8],[29,11],[41,27],[56,37],[-6,35],[11,10],[24,21],[31,50],[2,53],[12,-12],[11,-12],[17,-28],[29,-10],[-5,-4],[-36,-30],[-3,-5],[-21,-42],[-7,-22],[-12,-36],[-18,-33],[-49,-3],[-13,-40],[-3,-8],[-38,-2],[10,-37],[20,-32],[9,-15],[8,-16],[15,-1],[18,-2]],[[91493,9200],[9,-37],[4,-18],[-39,27],[-36,-16],[-25,43],[11,39],[5,17],[42,-19],[21,-26],[8,-10]],[[92970,9273],[-26,-12],[-1,28],[-1,17],[-26,55],[39,-11],[21,-6],[0,-22],[2,-34],[-8,-7],[0,-4],[0,-4]],[[94060,9368],[15,-35],[-24,-11],[-38,-18],[0,51],[11,0],[6,11],[3,5],[25,-3],[1,0],[1,0]],[[90126,9281],[5,-41],[-24,17],[-3,2],[-53,45],[-20,23],[-16,19],[-2,15],[-5,42],[35,-24],[24,-31],[31,-27],[28,-40]],[[88542,9429],[-41,-20],[-44,9],[24,35],[31,20],[13,8],[42,-2],[-7,-42],[-18,-8]],[[91924,9485],[31,-28],[30,6],[27,5],[-30,-41],[-38,-13],[-7,-2],[3,-10],[9,-32],[32,-18],[15,-29],[3,-44],[-37,30],[-33,25],[-9,11],[-16,18],[7,36],[6,38],[7,48]],[[93777,9452],[-35,-71],[-19,6],[-7,48],[-6,44],[18,13],[6,4],[33,-21],[5,-11],[5,-12]],[[94194,9413],[-20,-2],[1,18],[2,24],[2,35],[1,7],[1,22],[12,-6],[19,-9],[-1,-24],[3,-1],[2,-1],[0,-40],[-11,-22],[-11,-1]],[[91201,9367],[15,-24],[5,-13],[4,-11],[-11,-14],[-4,-4],[-21,2],[-7,15],[1,18],[0,13],[-15,7],[-9,-8],[-3,-3],[-6,0],[-24,1],[-9,35],[-8,16],[-5,8],[-49,54],[-3,11],[-2,12],[-21,29],[-14,28],[17,12],[13,23],[29,-18],[4,-16],[-2,-25],[-1,-18],[42,-34],[27,-28],[12,-4],[16,-6],[14,-11],[3,-13],[2,-8],[10,-26]],[[93069,9542],[-21,-30],[-21,16],[-7,5],[-17,45],[-8,67],[34,-33],[12,-26],[28,-44]],[[93741,9633],[-30,-8],[-5,18],[-3,15],[-25,4],[-28,6],[16,15],[21,20],[26,43],[15,-29],[18,-15],[4,-4],[4,-8],[13,-32],[-14,-13],[-12,-12]],[[92849,9743],[0,-10],[-25,11],[-3,43],[-20,37],[8,-1],[39,-1],[26,-36],[-25,-23],[0,-20]],[[95728,9826],[-12,-33],[-10,-27],[-2,-16],[-3,-20],[-10,-1],[-21,-3],[-20,-1],[-5,-1],[-40,-17],[-36,-20],[-13,-7],[-9,-34],[-17,-34],[-1,-5],[-5,-41],[-10,-50],[-23,-61],[-12,-12],[-10,-9],[-10,-37],[-30,-45],[-29,-16],[-26,-28],[-32,-69],[-41,-15],[-31,-30],[-18,-30],[-7,-11],[-45,-45],[-5,-8],[-19,-33],[-16,-35],[-3,-6],[-31,-26],[-36,-3],[-34,-26],[-57,0],[22,45],[90,86],[14,42],[10,29],[6,20],[31,40],[1,-1],[8,-20],[19,-18],[44,42],[18,38],[26,0],[3,27],[1,13],[-14,36],[1,10],[1,0],[7,3],[1,1],[1,-1],[22,1],[0,-3],[70,45],[3,14],[-6,21],[18,27],[9,14],[24,3],[13,19],[8,23],[-6,25],[-23,-5],[-8,24],[-35,-9],[-8,-18],[-26,4],[6,13],[4,9],[9,6],[7,4],[22,34],[15,3],[3,1],[17,18],[28,-7],[35,25],[31,38],[9,37],[-1,20],[-1,5],[20,38],[18,29],[25,-4],[38,-8],[34,35],[1,1],[33,8],[12,2],[19,-29]],[[95777,9899],[-34,-15],[-36,12],[-33,-6],[-14,-2],[-24,-7],[-20,-5],[-1,33],[-1,22],[51,17],[66,17],[25,14],[11,-2],[35,-7],[-11,-41],[-14,-30]],[[92575,9994],[26,-6],[28,13],[17,-17],[9,-9],[49,21],[1,-33],[-29,-26],[5,-52],[-31,-24],[-12,6],[-20,10],[-39,2],[-39,7],[-22,19],[-22,29],[-15,48],[-9,34],[-18,38],[42,-15],[30,-3],[20,-25],[29,-17]],[[93430,10248],[-23,-26],[-8,-8],[-21,-9],[-31,-10],[-46,-24],[-34,-1],[-22,27],[30,27],[48,16],[37,-5],[9,-2],[10,54],[24,-17],[27,-22]],[[93984,10641],[34,8],[30,41],[43,58],[20,-1],[39,-10],[23,16],[17,18],[13,10],[2,-7],[8,-26],[40,-15],[18,27],[59,1],[27,24],[32,21],[15,19],[2,-16],[1,-7],[-21,-16],[-7,-24],[-40,-8],[-13,-28],[3,-12],[2,-10],[-1,-15],[0,-8],[18,-20],[8,-48],[42,-12],[15,-25],[23,-11],[18,-53],[18,-25],[26,-24],[2,-6],[4,-14],[18,-8],[25,-3],[22,13],[24,-30],[37,-19],[25,16],[31,23],[-11,-18],[-9,-13],[-5,-25],[-5,-24],[-14,-80],[-5,-28],[2,-80],[-9,-4],[-5,-2],[-11,12],[-1,-33],[15,-11],[16,0],[13,-17],[-28,2],[-52,-19],[-33,-34],[-28,-24],[-23,-19],[-15,-7],[-22,-10],[-19,-27],[-15,-44],[-15,-35],[0,-5],[-1,-77],[25,-70],[35,-28],[65,6],[47,-15],[55,-58],[46,-49],[94,-5],[26,27],[29,-63],[3,-6],[-14,-48],[-5,-15],[-13,-44],[37,-60],[-22,-25],[-82,50],[-43,7],[-52,-7],[-3,104],[-4,0],[-15,0],[-21,29],[-16,44],[-23,13],[-11,6],[-28,49],[-25,21],[-31,9],[-26,-9],[-25,-35],[5,-129],[0,-86],[6,-13],[28,-54],[-28,-29],[-67,76],[8,36],[18,80],[0,82],[-3,0],[-15,31],[-15,25],[-7,11],[8,53],[4,40],[0,35],[-4,12],[-8,24],[21,43],[14,25],[3,7],[5,15],[9,31],[21,22],[21,23],[-2,23],[-1,7],[22,23],[15,34],[7,29],[42,1],[27,45],[28,18],[15,48],[4,64],[9,38],[-12,29],[-22,4],[-23,-39],[-22,30],[-5,15],[-5,16],[-14,28],[-4,7],[-54,28],[-29,42],[-30,50],[-35,8],[-34,22],[-18,42],[-7,21],[-21,-2],[-5,9],[-8,15],[-6,-12],[-7,-10],[-1,-7],[-2,-8],[-18,-8],[-8,-3],[-15,18],[-23,9],[-12,14],[-17,-5],[-17,6],[-15,1],[-11,1],[-8,-16],[-17,-7],[-5,-2],[-20,4],[-11,-14],[-27,-25],[-16,-14]],[[86899,10879],[-8,-2],[-1,2],[-3,2],[5,9],[-8,23],[2,6],[1,3],[17,-10],[1,-4],[2,-12],[3,-6],[6,-9],[-17,-2]],[[94759,11000],[-1,-8],[-1,-13],[-18,-31],[-1,-7],[-8,-30],[21,-46],[3,-40],[23,-47],[30,-27],[5,-4],[8,-1],[22,-5],[36,8],[30,-6],[-5,-32],[-2,-13],[-9,-33],[-6,-41],[-1,-4],[-10,-37],[0,-2],[0,-34],[40,-89],[7,-12],[11,-19],[25,-37],[58,-19],[43,-12],[21,-6],[12,-7],[16,-9],[51,-22],[33,-2],[50,11],[33,17],[38,58],[29,9],[-17,-48],[1,-3],[0,-24],[-4,-17],[-2,-10],[1,-44],[-9,-36],[-9,-12],[-1,-8],[-3,-20],[-16,-11],[-8,17],[-24,10],[-14,25],[-62,10],[-51,10],[-42,40],[-56,30],[-44,25],[-42,37],[-25,26],[-16,17],[-48,29],[-18,0],[-18,5],[-7,32],[-17,-3],[-20,-14],[-18,-18],[-13,-14],[-36,-6],[-10,17],[-4,6],[17,23],[2,2],[24,11],[33,0],[23,24],[26,49],[6,24],[4,15],[-8,46],[-3,17],[-7,32],[-7,3],[-21,9],[-35,19],[-12,53],[-2,10],[-4,27],[-9,8],[-14,13],[-29,3],[-13,9],[-14,-19],[-25,10],[-34,0],[-44,-2],[-27,-19],[-29,4],[-12,-1],[-4,-1],[-5,1],[-14,1],[19,14],[22,15],[16,4],[3,0],[25,0],[27,-1],[38,14],[1,27],[0,4],[49,18],[39,41],[-7,38]],[[87961,11027],[13,-6],[13,6],[8,-4],[13,-5],[14,-12],[4,-4],[6,21],[8,7],[3,3],[14,5],[16,11],[-20,-36],[-9,-7],[-6,-5],[-11,-15],[0,-31],[17,-15],[30,8],[16,-16],[-20,3],[-20,-7],[-8,-13],[-1,-2],[-21,0],[-29,-21],[-19,25],[-18,1],[-17,-6],[-4,-6],[-29,-39],[-11,-27],[-6,-30],[-5,-24],[36,-35],[15,2],[-5,-19],[-17,3],[-9,9],[-4,4],[-20,0],[-19,14],[-8,12],[-8,13],[4,27],[17,37],[-5,18],[-5,16],[6,1],[36,6],[23,19],[10,11],[11,57],[14,3],[8,9],[5,5],[-11,10],[-6,24],[-5,4],[-9,8],[-6,4],[-12,6],[-13,0],[34,7],[10,2],[12,-36]],[[86675,11088],[-10,-14],[-10,-7],[-4,-3],[-16,1],[-20,-5],[-4,26],[14,-6],[17,8],[15,-6],[18,6]],[[87147,11329],[15,-5],[-10,-14],[-5,19]],[[87147,11329],[-20,-4],[-13,-3],[-9,-3],[16,13],[12,11],[9,-10],[5,-4]],[[95121,11029],[-44,-6],[11,50],[16,3],[21,3],[3,2],[7,3],[29,42],[13,70],[-23,37],[4,17],[10,48],[-36,85],[18,-14],[9,-7],[9,-11],[14,-16],[9,-70],[9,-69],[0,-54],[-27,-43],[-6,-7],[-13,-17],[-1,-25],[-7,-5],[-25,-16]],[[86574,11413],[11,-8],[0,-18],[-18,-5],[-18,4],[-12,-24],[18,-9],[16,0],[13,0],[-1,4],[-4,12],[17,-4],[5,-1],[4,-15],[3,-10],[22,1],[-1,-16],[4,-17],[14,-3],[6,-1],[11,-17],[-1,26],[13,6],[5,-14],[2,-8],[0,-7],[1,-11],[3,8],[3,10],[14,3],[5,-3],[16,-6],[26,7],[2,31],[12,20],[-16,23],[7,18],[6,14],[4,18],[6,-26],[0,-15],[11,-6],[3,-1],[-7,-20],[-2,-6],[-9,-23],[15,-28],[14,-16],[4,-4],[2,-19],[1,-8],[-16,-6],[-7,-19],[-21,-21],[-32,-33],[-11,-8],[-15,-12],[-5,2],[-11,3],[-10,-26],[-13,2],[-27,-16],[-27,0],[-14,8],[0,1],[-17,12],[-21,4],[-12,8],[-8,13],[-2,3],[-15,19],[-35,0],[-5,9],[-3,5],[11,20],[-1,10],[-1,9],[-7,9],[-3,3],[-13,3],[-13,4],[-12,26],[-15,8],[-26,-1],[-20,11],[-5,2],[-21,6],[-12,30],[18,16],[16,3],[7,8],[5,5],[10,9],[11,8],[24,7],[16,19],[15,3],[24,-4],[26,2],[31,0],[11,3],[4,1],[4,25],[13,0],[2,0],[-3,-6],[-7,-18],[8,-5]],[[87626,11415],[0,-18],[50,-48],[-1,-11],[-2,-12],[-12,-8],[15,3],[11,13],[13,9],[12,6],[8,5],[-4,-34],[-4,-18],[-20,0],[-30,-7],[-18,10],[-29,-34],[-32,2],[-12,-18],[-12,-18],[-8,-20],[-7,15],[-6,14],[19,10],[2,15],[1,12],[13,21],[19,9],[14,21],[-26,38],[-20,14],[-2,24],[25,-4],[10,13],[16,-6],[17,20],[8,23],[6,-7],[4,-4],[-18,-30]],[[88075,11476],[6,-33],[0,-23],[-13,30],[-14,0],[-17,-2],[-7,-15],[-3,-7],[5,-17],[-14,-13],[-5,-8],[-4,-6],[7,-16],[-4,-20],[17,-17],[-17,-6],[-12,-9],[-18,17],[-27,-3],[-1,8],[-3,13],[-7,9],[-3,3],[-8,-14],[-2,-3],[-5,22],[20,18],[12,20],[-1,-16],[14,12],[-1,5],[-2,18],[18,-2],[-1,-6],[-1,-18],[28,4],[-14,14],[1,14],[0,7],[6,5],[7,5],[-3,-1],[-15,-2],[-19,-12],[10,15],[10,12],[16,7],[16,-8],[-10,30],[8,17],[6,1],[14,0],[30,-29]],[[86417,11401],[-25,-7],[-18,9],[-1,14],[-2,17],[-1,8],[-1,12],[6,6],[12,13],[6,15],[17,2],[19,11],[12,10],[21,0],[1,0],[3,1],[22,5],[2,-17],[-23,-27],[11,-25],[-12,-15],[-14,-3],[-1,-1],[-14,-11],[-7,-6],[-8,-9],[-5,-2]],[[87950,11481],[14,-5],[14,7],[9,-20],[-34,0],[-14,11],[-14,1],[-14,2],[-8,-15],[-2,-21],[1,0],[25,-5],[4,20],[0,6],[1,0],[15,-5],[15,-12],[-8,-13],[-10,-11],[-19,-6],[-39,-2],[-9,3],[-7,2],[-12,-15],[-10,10],[-4,5],[7,2],[21,8],[21,21],[16,44],[25,3],[11,14],[3,5],[8,12],[4,7],[8,14],[13,2],[-5,-10],[-4,-8],[-22,-51]],[[86958,11480],[-22,-36],[-5,21],[-16,10],[4,22],[4,17],[-12,29],[7,14],[10,10],[14,5],[-9,-19],[-5,-4],[-8,-6],[13,-17],[7,-9],[4,-4],[9,-10],[10,-15],[-5,-8]],[[86711,11574],[-1,-16],[-8,-6],[-12,-8],[-1,-11],[-1,-6],[-6,-14],[-4,-7],[7,-17],[-15,-6],[-16,28],[-27,-26],[-12,5],[-12,15],[16,10],[16,0],[15,14],[4,4],[6,51],[13,-10],[7,17],[3,4],[9,8],[10,31],[1,-2],[8,-13],[0,-45]],[[87852,11636],[12,-22],[4,-4],[11,-12],[3,-16],[2,-11],[2,-35],[-5,1],[-12,2],[3,14],[1,4],[-7,13],[-11,8],[-8,2],[-18,4],[6,20],[-9,9],[-9,10],[-20,-4],[9,13],[5,5],[8,6],[7,7],[4,4],[14,6],[13,-4],[-5,-20]],[[87693,11656],[-15,-18],[-14,-26],[-5,-16],[-3,-10],[-4,-13],[-6,-19],[-5,-23],[-1,-12],[0,-20],[-15,-3],[-8,-16],[-11,13],[-7,22],[-5,21],[11,14],[-5,16],[-21,13],[-15,3],[10,28],[3,-4],[12,-18],[12,-9],[21,-30],[10,15],[-9,12],[-7,10],[4,5],[7,6],[14,-3],[4,-1],[12,23],[6,30],[-9,-5],[-16,-10],[-18,-10],[-26,0],[20,10],[21,11],[9,9],[34,33],[18,-15],[5,-3],[-8,-10]],[[87249,11557],[-5,-16],[-16,-11],[-21,-29],[-35,-13],[-64,-27],[-13,5],[-12,-14],[-1,-24],[-12,-13],[4,-16],[1,-7],[14,19],[10,10],[-8,-14],[-22,-30],[-2,-18],[15,-7],[12,27],[9,-13],[-7,-26],[-18,-4],[-9,-16],[-4,-32],[4,-1],[24,-7],[17,13],[-17,3],[27,13],[17,8],[-4,-14],[-3,-6],[-15,-10],[-6,-17],[10,-12],[7,4],[6,4],[-9,-49],[17,21],[21,8],[-3,5],[-6,8],[11,15],[2,16],[12,-5],[18,11],[-6,20],[-9,-4],[-4,-3],[-9,-14],[2,18],[11,10],[6,1],[9,0],[13,2],[5,1],[0,25],[-12,9],[1,19],[-14,0],[5,5],[5,5],[11,12],[-23,15],[-15,9],[24,-1],[15,1],[12,-13],[23,-6],[-12,-5],[-5,-2],[-9,-21],[3,-25],[0,-19],[18,1],[10,1],[14,-21],[4,-16],[21,-7],[21,-7],[-6,-21],[0,-15],[24,-30],[-8,-10],[-6,-7],[-11,13],[-5,-8],[-7,-9],[-3,0],[-21,-2],[-2,-7],[-3,-10],[2,-1],[14,-6],[20,5],[-16,-11],[-18,-6],[-2,-10],[-3,-9],[-14,4],[-22,-6],[-1,-6],[-1,-13],[14,-7],[12,9],[8,-7],[4,-3],[12,8],[18,6],[14,2],[16,2],[-4,-17],[6,-19],[27,-14],[-11,-9],[-5,-3],[21,-8],[12,32],[14,49],[12,8],[-4,-19],[-9,-11],[-1,-1],[8,-8],[9,-9],[-13,-6],[-13,-13],[1,-1],[8,-13],[4,-13],[2,-6],[15,25],[8,21],[5,7],[5,8],[0,17],[9,-26],[-14,-29],[-4,-8],[-10,-20],[-7,-23],[6,-8],[4,-5],[-10,-19],[17,-3],[4,28],[19,-3],[-6,19],[6,13],[10,11],[-2,5],[-4,9],[6,14],[9,19],[4,-11],[3,-11],[0,-8],[-1,-12],[-7,-17],[4,-11],[1,-4],[-17,2],[0,-26],[16,-18],[8,18],[7,15],[20,14],[5,17],[3,10],[0,4],[3,12],[3,10],[4,12],[0,4],[0,19],[23,-9],[4,-2],[-8,-22],[1,-11],[1,-6],[17,-27],[-7,-1],[-16,-2],[-10,-17],[-18,-13],[-16,-18],[0,-4],[2,-12],[-21,-1],[-2,-18],[4,-29],[-7,-16],[-13,4],[-17,-5],[-5,-6],[-7,-6],[11,-14],[10,-14],[17,6],[28,12],[12,15],[3,4],[11,28],[25,-14],[-15,-10],[-2,-3],[-10,-10],[13,-1],[7,-7],[10,-11],[25,-17],[18,9],[9,6],[4,3],[-7,27],[-3,10],[-3,7],[16,-2],[29,-1],[16,1],[2,0],[25,-28],[1,-15],[0,-7],[10,-2],[18,-4],[11,10],[1,13],[1,16],[11,11],[19,18],[1,-6],[6,-21],[15,-20],[2,-14],[2,-11],[-2,-25],[-2,-21],[1,-18],[-8,-8],[-7,-6],[-18,1],[-20,-10],[-2,-3],[-11,-21],[-1,-8],[-3,-12],[-9,0],[-18,-2],[-18,-9],[-13,2],[-7,13],[-1,2],[-27,9],[-17,-17],[-33,-11],[-19,-5],[-8,13],[-22,6],[-28,-4],[-22,8],[-40,13],[-24,-3],[-12,-14],[-7,-8],[-4,8],[-3,6],[-13,-1],[-10,-15],[-1,-18],[-26,1],[-12,-2],[-3,0],[-18,3],[-4,0],[-23,-4],[0,21],[3,6],[6,9],[4,28],[-1,3],[-4,15],[-19,-12],[-21,19],[2,19],[0,9],[3,12],[2,9],[-11,10],[1,15],[-17,8],[-4,13],[-2,7],[-12,0],[-15,1],[-18,-11],[-16,-9],[-20,1],[-12,13],[-9,-4],[-11,-6],[-13,9],[-5,8],[-4,7],[-2,17],[-22,8],[-3,4],[-6,10],[-11,-29],[-5,-12],[-1,0],[-1,0],[-36,2],[-44,6],[-1,0],[-31,21],[-21,2],[-6,0],[-7,0],[-12,1],[-12,0],[-10,0],[-9,2],[-28,9],[-34,19],[-35,19],[-1,1],[-3,0],[-5,0],[-7,18],[-17,16],[-13,9],[-16,-1],[-3,9],[-5,19],[14,3],[16,3],[9,8],[3,3],[12,13],[22,17],[-7,-26],[13,2],[11,2],[-4,19],[-1,11],[-1,10],[9,28],[23,1],[16,8],[3,1],[-2,-15],[13,-7],[9,14],[11,-11],[17,15],[15,-24],[7,6],[4,3],[0,13],[1,12],[-3,9],[-2,6],[-10,14],[-14,-4],[8,21],[6,18],[11,33],[18,19],[-13,4],[-2,1],[3,6],[10,21],[20,19],[9,-7],[12,-9],[3,-2],[13,-11],[16,-2],[16,4],[5,16],[-8,25],[6,7],[7,6],[8,16],[-1,20],[-10,16],[7,12],[1,1],[19,10],[20,29],[5,-15],[-15,-9],[-10,-16],[6,1],[13,4],[16,-3],[18,12],[15,11],[3,8],[8,18],[-5,15],[-18,-12],[-3,-10],[-3,-13],[-11,26],[13,16],[11,10],[-10,11],[14,14],[12,10],[6,21],[2,0],[11,-2],[15,-14],[-4,9],[-8,15],[14,6],[8,5],[8,4],[10,2],[13,3],[11,-18],[-14,-1],[0,-11],[1,-10],[15,9],[14,-15],[-5,26],[1,14],[0,5],[-15,22],[-32,12],[-6,-14],[-3,-7],[-10,-14],[-4,0],[-14,1],[0,12],[1,6],[16,7],[17,20],[17,14],[16,4],[25,-13],[22,-1],[2,0],[4,-17],[-8,-24],[-9,3],[-7,2],[-6,-26],[28,-4],[-6,-10],[-2,-3],[17,4],[20,0],[24,27],[22,32],[9,20],[10,30],[-7,21],[23,30],[30,0],[-4,-21],[-30,-20],[0,-7],[-2,-52],[-11,-8],[-14,-9],[-30,-36],[-3,-11]],[[86439,11821],[23,-17],[22,0],[24,4],[4,1],[17,4],[23,4],[28,-5],[38,-4],[-10,-23],[-19,1],[-2,-8],[-3,-10],[-24,-25],[0,-16],[1,1],[13,1],[1,-12],[2,-21],[-23,-3],[-2,-2],[-11,-15],[21,-21],[-37,6],[-13,-6],[-3,-1],[-16,-18],[-17,-22],[-13,-7],[-7,-9],[-4,-5],[7,22],[-4,10],[-2,5],[7,7],[12,16],[7,14],[-14,14],[-1,1],[-20,-14],[0,-4],[1,-14],[-8,-19],[4,-18],[2,-17],[-20,4],[-1,-18],[21,-11],[16,15],[0,-16],[8,-20],[-15,-1],[-7,-1],[-2,-7],[-3,-11],[-18,-13],[-13,-15],[-21,14],[-19,14],[2,23],[3,21],[1,17],[0,9],[11,28],[9,19],[0,26],[-10,2],[-4,1],[-19,10],[-19,-2],[-25,0],[-16,18],[27,30],[35,1],[13,4],[5,6],[13,18],[14,14],[4,5],[11,17],[15,24]],[[87225,12025],[0,-24],[-8,16],[-16,-8],[7,-22],[22,-1],[-9,-4],[-5,-3],[-9,-2],[-11,-4],[-27,16],[0,-17],[-18,-4],[-14,-1],[-12,25],[29,19],[25,8],[6,19],[21,12],[20,8],[-1,-18],[0,-15]],[[86680,12146],[0,-22],[18,15],[15,1],[-15,-24],[-15,-32],[-5,-8],[-16,-25],[-31,10],[10,14],[10,14],[-12,4],[-11,4],[-15,-18],[-9,-12],[-21,-5],[-16,-6],[15,-14],[13,-11],[21,7],[9,-13],[12,-21],[27,-29],[0,-18],[42,-24],[7,5],[7,5],[27,2],[21,-5],[30,-7],[16,-14],[1,-3],[5,-29],[16,-10],[-9,-10],[-3,-3],[-39,-4],[-22,-8],[-15,0],[5,19],[-3,3],[-12,11],[-15,0],[-19,6],[-27,-4],[-23,-13],[-7,-6],[-14,-12],[-35,-2],[-11,12],[-23,-14],[-81,-26],[-23,15],[-5,4],[-40,0],[-6,-7],[-11,-14],[-3,-22],[-20,0],[-8,-12],[-10,-13],[-27,10],[-23,5],[-10,-13],[-6,-19],[-9,39],[-9,22],[-4,8],[-1,15],[-2,16],[23,24],[13,-5],[6,16],[33,21],[0,7],[0,16],[-24,0],[-18,-12],[16,18],[-14,7],[-34,-13],[-3,20],[24,5],[31,-11],[15,8],[27,-19],[21,-11],[24,-10],[32,-18],[-12,-14],[15,-7],[7,-6],[5,-5],[16,-4],[23,22],[11,4],[2,1],[2,-18],[17,-1],[-13,28],[-2,11],[-2,8],[-16,8],[-18,-6],[15,13],[-18,12],[-4,3],[-21,-34],[-6,4],[-20,13],[23,12],[5,15],[10,11],[13,18],[-13,8],[-16,-6],[-13,9],[-21,-6],[-17,2],[-28,11],[-37,-1],[-14,11],[-1,24],[14,12],[24,15],[-17,2],[14,10],[4,4],[9,-13],[14,-13],[24,12],[23,13],[34,1],[21,27],[19,-18],[9,-12],[21,-14],[17,-1],[19,3],[15,13],[13,-8],[15,5],[7,17],[6,16],[1,26],[16,17],[14,16],[8,15],[22,4],[18,-13],[-14,-33]],[[86446,12137],[3,-9],[-8,-21],[-20,-2],[-36,-9],[4,19],[13,2],[-1,4],[-4,11],[-19,0],[-3,-4],[-6,-8],[-18,18],[-12,28],[19,7],[10,3],[12,5],[11,5],[3,1],[-1,8],[-2,8],[13,7],[26,1],[18,-24],[2,-20],[-4,-14],[-3,-8],[3,-8]],[[86462,12288],[7,-2],[13,3],[11,-13],[21,-12],[17,0],[21,-1],[1,-6],[2,-10],[-3,-7],[-3,-8],[-3,-8],[-4,-8],[-14,-6],[-2,-4],[-7,-13],[1,-13],[1,-13],[-33,2],[-6,19],[-24,9],[-23,24],[-19,2],[-23,-6],[11,13],[5,6],[8,23],[2,28],[16,13],[17,-10],[10,-2]],[[87590,12396],[-4,-22],[12,7],[4,3],[4,-27],[11,17],[6,21],[11,-20],[-3,-10],[-5,-22],[-4,-13],[-2,-9],[5,-8],[11,-18],[-22,5],[-15,27],[-28,-8],[-6,-10],[-3,-4],[-13,-1],[-9,11],[-2,3],[6,30],[-4,7],[-6,8],[12,11],[2,0],[19,1],[10,15],[13,6]],[[96540,12384],[-19,-3],[-2,4],[-2,2],[-3,6],[4,4],[7,7],[2,-3],[9,-11],[4,-6]],[[86497,12408],[-4,-30],[16,-1],[9,-6],[8,-5],[14,-13],[17,5],[3,-4],[9,-13],[14,-19],[15,2],[8,-7],[3,-3],[11,8],[6,4],[-7,16],[13,4],[6,2],[12,7],[6,-19],[8,14],[14,-6],[32,4],[-5,-19],[-3,-7],[13,2],[8,19],[2,-1],[32,-16],[-16,-20],[-20,-14],[-18,-12],[28,-12],[-2,-17],[-18,4],[-17,-8],[-9,-4],[-10,-4],[-28,-10],[-31,-1],[-11,-9],[-13,10],[-15,11],[-8,16],[-11,21],[-40,0],[-40,30],[-17,-7],[-7,9],[-2,4],[-23,10],[-17,1],[-8,-26],[-12,-14],[-3,39],[-14,28],[17,21],[4,-7],[8,-13],[5,2],[11,6],[-15,24],[13,17],[2,-1],[18,-9],[29,10],[3,15],[2,10],[-1,46],[13,-6],[21,-4],[2,-2],[8,-19],[-8,-10],[-8,-9],[-2,-14]],[[86575,12486],[7,-6],[42,3],[32,-22],[-9,-13],[-2,4],[-9,14],[-1,-9],[-2,-8],[-14,-7],[-1,-5],[0,-11],[-14,1],[-5,1],[-7,2],[-11,4],[-17,10],[0,1],[-7,21],[-3,10],[9,20],[12,-10]],[[87205,12503],[-11,-22],[-15,-1],[-29,5],[-21,-24],[-3,-26],[-27,-6],[-11,-12],[-12,7],[-3,-21],[-15,3],[-2,0],[4,24],[6,2],[14,5],[-6,15],[68,71],[16,2],[47,-22]],[[87435,12447],[-58,-22],[-8,11],[-5,6],[-25,-15],[-13,-20],[-8,-25],[-29,-15],[-14,-20],[-14,-2],[-2,0],[-21,-25],[-16,-39],[0,-3],[10,-38],[-10,-3],[-17,-5],[-1,4],[-4,14],[-19,12],[22,64],[-3,5],[-10,15],[17,3],[45,54],[1,23],[-31,29],[-4,19],[10,35],[20,4],[4,-22],[26,1],[12,-6],[-1,-34],[0,-20],[-4,-34],[-14,-21],[-16,2],[-9,-10],[-7,-9],[19,-7],[22,14],[10,14],[1,10],[2,20],[5,4],[6,5],[1,6],[2,12],[6,22],[7,29],[28,15],[46,22],[22,12],[22,-4],[0,-14],[-1,-16],[2,-8],[6,-20],[-10,-29]],[[86501,12583],[-5,-21],[16,-13],[-13,-2],[-47,6],[-1,-1],[-7,-16],[-4,-14],[-2,-5],[-7,2],[-16,4],[-20,-11],[-14,4],[-6,12],[-8,15],[-16,4],[2,38],[8,13],[27,-10],[10,12],[5,5],[9,3],[34,13],[17,-41],[24,14],[-21,30],[19,8],[4,-14],[5,-14],[3,-10],[4,-11]],[[85771,12626],[7,-13],[3,-7],[4,-8],[7,-12],[-11,-9],[-16,-13],[-25,17],[-32,29],[-13,5],[11,12],[21,-10],[15,0],[5,11],[3,6],[15,11],[6,-19]],[[86163,12451],[-1,-14],[-1,-5],[-8,-14],[-25,7],[-3,11],[-3,13],[-14,-1],[-2,0],[-5,16],[-14,13],[-5,5],[-13,22],[-5,29],[-6,5],[-21,13],[-29,16],[-12,6],[4,15],[29,21],[17,6],[32,12],[14,25],[9,13],[3,-28],[-12,-41],[13,-43],[2,-1],[12,-6],[-21,-5],[-5,-1],[3,-10],[1,-5],[12,-12],[13,-6],[20,-4],[-9,-13],[2,-18],[8,-6],[20,-15]],[[96910,12739],[34,-21],[28,-13],[21,-23],[26,-24],[28,-31],[41,-23],[-20,-42],[-29,-13],[-20,4],[-5,1],[-17,-8],[-4,-1],[0,-1],[-16,-7],[46,-15],[10,-23],[-12,-38],[-13,-51],[-18,-37],[-32,-23],[-5,-3],[-20,-13],[-28,-10],[-20,-8],[-47,-18],[-22,-47],[-28,-61],[-20,-43],[-18,-50],[0,-36],[3,-39],[-7,-28],[-19,-53],[-12,-30],[-18,-29],[-11,-25],[-10,-24],[-16,-19],[-13,-31],[-24,-53],[-26,-41],[-22,-31],[-26,-40],[-29,-45],[-44,-68],[-39,-70],[-22,-32],[-8,-25],[-17,-16],[-27,-45],[-22,-57],[-26,-34],[-22,-67],[-23,-63],[-16,-54],[-32,-36],[-54,-39],[-13,-36],[-25,-48],[-24,-62],[-29,-31],[1,-36],[-18,-37],[-35,-8],[-16,-50],[-30,-43],[-26,-39],[-21,-36],[-17,-26],[-9,-35],[1,-56],[-20,-52],[-36,-35],[-46,-26],[-23,-43],[-21,-50],[2,-38],[-14,-20],[-13,-24],[-24,-28],[-44,-7],[-27,-34],[-34,-43],[-25,-33],[-1,-32],[0,-3],[5,-31],[3,-24],[-13,-28],[-20,-40],[-3,-4],[-53,-74],[18,-7],[-2,-43],[-18,-20],[-15,-15],[-26,-24],[-26,5],[-12,-10],[-23,-10],[-17,-12],[-8,-22],[-21,-17],[-14,-27],[-13,17],[-25,23],[-10,-5],[-10,-5],[-16,-35],[-18,-8],[-13,-14],[1,-19],[-50,-82],[-11,-22],[-57,-29],[-3,-26],[-28,-24],[-3,-20],[5,-15],[28,1],[18,6],[-2,-18],[15,-3],[-33,-43],[-6,-22],[5,-16],[-69,-121],[-9,-15],[-23,-25],[-9,-22],[-15,-3],[-13,-12],[-12,-27],[0,-30],[-1,-7],[-37,-12],[-5,22],[19,53],[14,2],[27,38],[39,42],[-32,7],[11,11],[7,15],[-34,-6],[-15,-22],[-4,-16],[-21,-18],[-32,-24],[-38,-20],[-33,-46],[-28,-37],[-23,-30],[-21,-30],[9,-33],[-21,-79],[-31,-30],[-16,-37],[-23,-31],[-25,-39],[-25,-27],[-34,-40],[-46,-30],[-35,-22],[-30,-6],[-26,-7],[10,50],[-17,24],[-40,-27],[-21,-20],[-28,-30],[-20,-40],[-35,-33],[-33,-31],[-42,-35],[-42,-55],[-23,-32],[-31,-34],[-43,-79],[-30,-42],[-23,-39],[-35,-21],[-32,-36],[-36,-33],[3,-48],[2,-27],[39,-26],[-15,-58],[-24,-34],[-26,-58],[-31,-23],[-32,-32],[-18,-18],[-34,-19],[-26,-20],[-24,-22],[-36,-3],[-20,-48],[-37,-15],[-30,-44],[-4,-41],[-16,-36],[-42,-3],[-39,-8],[-1,0],[-18,-7],[-19,-8],[-12,-6],[-26,-15],[-6,-4],[-41,-32],[-5,-42],[-21,-33],[-36,-32],[-17,-32],[-22,-33],[-26,-41],[-39,-36],[-23,-29],[-17,-21],[-12,-25],[-22,-54],[-22,-27],[-26,-26],[-23,-23],[-27,-26],[-35,-31],[-21,-27],[-20,-28],[-20,-50],[-36,-21],[-28,-26],[-50,-16],[-81,-18],[-23,-16],[-40,1],[-26,27],[-30,-40],[-58,-27],[-56,-27],[-23,-37],[-40,-26],[-48,-5],[-3,-1],[-16,62],[-27,26],[-6,27],[8,26],[13,7],[21,-16],[35,-17],[5,-35],[34,7],[53,40],[36,58],[-20,56],[-46,86],[22,32],[61,33],[56,-55],[14,-2],[38,-24],[55,37],[32,5],[34,-29],[34,7],[28,-22],[24,8],[16,34],[25,16],[18,21],[27,47],[33,0],[30,16],[31,42],[18,27],[-15,24],[10,39],[30,38],[15,34],[12,41],[-9,48],[31,20],[9,53],[36,42],[37,37],[9,46],[37,1],[-17,38],[-25,33],[-3,10],[-1,6],[2,5],[1,3],[-19,57],[-10,30],[9,3],[63,-28],[2,1],[3,1],[40,4],[9,12],[15,20],[24,13],[59,17],[27,-1],[10,0],[38,-25],[-5,-38],[1,-20],[1,-7],[26,-30],[7,5],[19,15],[20,32],[27,22],[22,22],[12,37],[-12,45],[11,36],[2,55],[37,1],[33,41],[35,51],[4,38],[34,26],[22,39],[-6,35],[37,51],[39,34],[41,33],[30,6],[30,23],[29,20],[25,26],[36,46],[9,35],[20,27],[22,19],[29,36],[32,36],[22,26],[27,22],[19,34],[18,24],[33,35],[27,27],[8,35],[17,49],[-7,66],[-35,34],[17,25],[17,-3],[3,-26],[17,-38],[10,-20],[22,-10],[25,12],[29,23],[38,28],[44,43],[23,33],[17,50],[37,13],[11,38],[15,32],[13,25],[44,28],[0,57],[-4,54],[-24,25],[-35,15],[-2,1],[-4,35],[-33,40],[-69,16],[-8,4],[-24,13],[-16,36],[40,13],[39,20],[16,-1],[14,-1],[24,-4],[16,-35],[11,-38],[12,-29],[30,-21],[54,-51],[8,-3],[30,-13],[68,30],[48,50],[6,30],[0,1],[5,21],[-1,33],[-1,21],[16,26],[-5,37],[-13,21],[-8,12],[-16,-8],[-2,-1],[0,-26],[-2,0],[-11,5],[-21,73],[4,37],[4,34],[18,13],[4,-1],[19,-7],[30,-4],[22,-26],[16,-6],[14,-6],[20,0],[33,-9],[17,9],[21,3],[17,-5],[13,19],[24,23],[6,17],[19,4],[11,31],[18,3],[18,28],[18,44],[15,35],[12,47],[3,35],[-11,10],[-20,36],[-8,17],[2,19],[51,-12],[41,-7],[20,20],[14,22],[-1,25],[12,17],[13,16],[-3,39],[-12,22],[-21,21],[-7,2],[-29,5],[-20,0],[-13,-15],[9,46],[28,39],[13,22],[4,18],[1,27],[0,10],[0,7],[-1,8],[0,7],[11,10],[8,68],[4,73],[13,25],[11,37],[21,16],[39,5],[53,-30],[41,20],[8,45],[-15,49],[5,3],[22,15],[29,0],[31,15],[52,-3],[26,11],[31,3],[19,2],[-13,-37],[21,-27],[23,-4],[25,9],[2,21],[1,19],[8,28],[25,8],[-15,37],[43,42],[0,41],[27,40],[11,42],[35,23],[24,48],[48,123],[27,75],[3,78],[0,1],[-3,42],[5,14],[13,34],[9,62],[3,63],[-6,68],[-2,26],[-44,9],[-52,-8],[-16,21],[-7,9],[3,31],[8,38],[-29,3],[-1,30],[-4,19],[-6,29],[-54,-1],[-33,17],[-25,29],[-6,-6],[-16,-16],[-24,-8],[-16,24],[-37,8],[10,73],[2,0],[42,0],[17,0],[54,36],[32,2],[22,6],[28,10],[18,29],[5,8],[48,5],[22,-29],[7,-10],[38,-19],[7,-3],[27,-10],[21,1],[57,44],[28,20],[30,23],[40,37],[29,34],[59,40],[53,32],[14,22],[12,18],[13,34],[13,9],[68,48],[31,49],[37,19],[27,21],[9,24],[9,40],[4,43],[10,32],[27,21],[33,25],[40,32],[31,34],[2,39],[24,24],[1,0],[13,50],[18,57],[0,9],[-2,38],[12,13],[17,19],[40,-2],[36,19]],[[85874,12742],[41,-29],[52,-31],[47,-9],[50,22],[11,4],[5,2],[10,4],[-7,-15],[-7,-16],[-12,-22],[-7,-13],[-57,-8],[-10,-10],[-17,-17],[-15,1],[-20,1],[4,14],[2,8],[5,22],[-60,24],[-7,3],[-26,12],[-69,-12],[-17,-3],[-59,12],[-8,31],[33,-3],[44,15],[94,13]],[[86184,12746],[8,-23],[2,-25],[-50,-5],[-11,-1],[-5,15],[-13,21],[3,15],[18,-2],[13,5],[14,0],[21,0]],[[85920,12851],[19,-58],[-14,0],[-2,-19],[25,-6],[20,-9],[3,-14],[4,-16],[-32,-7],[-39,40],[-26,3],[-28,15],[-31,-1],[-33,-8],[-33,12],[-11,21],[13,12],[38,-2],[17,9],[16,9],[6,3],[17,9],[15,0],[13,0],[5,2],[9,4],[11,6],[13,8],[5,-13]],[[84612,15697],[-29,-11],[-26,10],[-11,35],[-6,17],[-10,25],[3,23],[2,16],[35,-9],[25,-43],[35,-32],[-18,-31]],[[86483,15869],[13,-5],[29,3],[23,-15],[13,-2],[3,3],[12,7],[11,-18],[10,-25],[1,-3],[5,-12],[6,-15],[0,-3],[0,-21],[4,-15],[2,-7],[7,-26],[-17,-3],[-3,-10],[-3,-9],[-21,-8],[-20,-5],[2,-4],[4,-12],[-26,-4],[-1,-4],[-4,-14],[-12,3],[-9,3],[-7,-21],[-3,0],[-23,-1],[-15,-10],[-13,10],[31,18],[34,20],[16,10],[-62,-10],[-24,-17],[-14,1],[-20,0],[-4,-2],[-20,-10],[-16,17],[-18,1],[-20,0],[-12,2],[-4,0],[-28,-1],[24,16],[0,16],[0,16],[0,3],[-18,-12],[-24,-10],[-7,-20],[-27,37],[-1,25],[0,11],[-7,33],[-5,6],[-11,13],[9,17],[9,-15],[1,-1],[12,-5],[35,15],[22,20],[35,-8],[34,0],[12,15],[23,14],[8,20],[3,17],[1,5],[5,20],[25,-13],[33,-20],[2,-1]],[[86284,16049],[-8,-19],[-16,-8],[-22,19],[-18,-9],[-2,-17],[-2,-1],[-14,-10],[-19,-8],[-13,-10],[-15,15],[-11,8],[24,10],[-3,24],[-7,20],[-2,6],[20,1],[10,4],[4,2],[10,1],[10,0],[59,2],[3,-24],[12,-6]],[[86352,16072],[30,-11],[23,0],[7,-37],[11,-15],[-20,-23],[-13,0],[-20,11],[-21,1],[-15,3],[10,15],[7,8],[13,14],[-5,1],[-23,8],[-12,9],[2,-5],[3,-11],[-25,-8],[3,19],[10,11],[1,25],[10,6],[8,5],[10,3],[8,2],[-1,-7],[-1,-24]],[[85881,16111],[21,-8],[14,13],[2,1],[11,5],[11,-14],[-7,-14],[-11,-19],[13,-7],[22,22],[-1,-10],[-1,-11],[4,-18],[17,3],[3,0],[16,-5],[16,-8],[21,1],[18,4],[19,8],[17,6],[18,-3],[18,-2],[-3,-12],[-4,-17],[-4,-2],[-15,-9],[-11,-13],[-12,19],[-16,3],[-11,-13],[-14,7],[-16,-3],[-13,5],[-11,2],[-6,1],[-17,-7],[-22,-17],[1,-20],[-28,-12],[-16,13],[-28,21],[-1,1],[-19,-14],[-21,8],[21,8],[-19,19],[-18,0],[-14,-17],[-1,-6],[-3,-15],[-7,13],[-9,15],[-2,0],[-14,5],[-4,14],[-2,10],[-2,14],[-1,14],[2,2],[9,12],[-2,18],[9,16],[13,9],[3,-3],[11,-10],[15,7],[23,-23],[10,-14],[-7,-19],[2,-13],[1,-11],[9,-12],[2,6],[3,15],[9,20],[-6,15],[-5,16],[3,18],[11,11],[17,14],[0,9],[0,11],[13,5],[23,17],[7,-6],[4,-4],[-22,-15],[12,-10],[-14,-3],[-9,-19],[-14,-1],[-8,-12],[-3,-5]],[[85661,16274],[15,-26],[22,7],[13,-20],[7,-5],[15,-10],[1,-14],[1,-3],[-20,-8],[-14,16],[-2,-16],[-15,-4],[-3,0],[-2,12],[-2,15],[-3,8],[-3,7],[-11,18],[-11,12],[12,11]],[[85311,16209],[-15,-3],[5,22],[10,14],[12,32],[12,13],[14,-13],[14,-21],[-3,-8],[-4,-11],[-9,-17],[-29,-7],[-4,-1],[-3,0]],[[85819,16302],[4,-15],[0,-30],[-5,-20],[2,-3],[7,-10],[-9,-21],[-11,12],[-19,-11],[-16,-9],[-10,-1],[-5,0],[-13,32],[-7,16],[-16,3],[-4,10],[-3,5],[10,25],[17,-6],[7,5],[19,13],[12,-9],[22,4],[17,13],[1,-3]],[[85727,16476],[15,-12],[18,1],[2,-14],[0,-4],[-3,0],[-23,3],[-18,-16],[-6,-5],[-22,-2],[-14,-3],[-3,-1],[-6,-5],[-16,-13],[-13,-1],[-36,-10],[23,13],[11,16],[4,12],[1,3],[2,4],[6,17],[15,4],[15,-4],[22,10],[26,7]],[[85407,16352],[-19,-3],[-17,11],[-1,8],[-2,8],[10,2],[7,1],[8,18],[-12,22],[-4,7],[-3,7],[9,29],[25,37],[16,7],[9,-16],[-5,-24],[-1,-4],[-15,-5],[4,-13],[1,-4],[13,-8],[-7,-17],[-4,-33],[-12,-30]],[[85489,16511],[3,-11],[15,11],[1,7],[1,9],[15,-9],[1,0],[16,-16],[10,-12],[26,-3],[42,-14],[13,-3],[-21,-19],[-13,-15],[0,12],[1,10],[-18,-6],[-19,-20],[-7,0],[-10,0],[-16,-7],[3,-3],[10,-18],[-16,-3],[-12,-8],[-17,7],[-19,-6],[4,22],[-7,1],[-18,1],[1,18],[-10,11],[-5,6],[1,15],[2,16],[6,18],[-14,9],[7,16],[9,15],[18,-6],[14,-19],[3,-6]],[[83814,17082],[-37,-34],[-13,7],[-41,-9],[-23,5],[23,29],[21,12],[8,9],[11,13],[41,-5],[10,-27]],[[83701,17244],[-18,-26],[-13,9],[-17,19],[8,8],[4,3],[12,37],[-4,50],[15,2],[2,0],[14,-18],[-1,-12],[-1,-38],[-1,-34]],[[83623,17370],[-14,-8],[-2,16],[-2,32],[-10,18],[21,7],[7,11],[2,3],[8,4],[15,9],[12,-15],[-17,-40],[-6,-15],[-14,-22]],[[83542,17623],[-21,-9],[-24,28],[25,46],[46,10],[32,22],[31,-14],[8,-3],[3,-17],[2,-21],[-7,-14],[-7,-15],[-49,-7],[-35,-5],[-4,-1]],[[83501,18017],[-58,-38],[-42,10],[-9,43],[-2,9],[37,6],[19,2],[6,1],[0,-31],[49,-2]],[[82652,18011],[-25,-9],[-38,38],[-2,14],[2,4],[5,12],[10,0],[29,-14],[39,-15],[-20,-30]],[[83534,18118],[-18,-7],[-25,20],[-10,9],[-45,17],[26,41],[28,-21],[44,-20],[8,-4],[2,-30],[-10,-5]],[[82592,18100],[-7,-8],[-5,3],[-11,53],[16,45],[-3,30],[44,18],[-15,-38],[-4,-38],[-5,-25],[-5,-28],[-5,-12]],[[84790,18275],[2,-12],[1,-4],[-21,-13],[-29,-24],[-20,-27],[-27,-4],[-27,-9],[-12,41],[5,8],[25,40],[17,15],[7,-21],[11,13],[24,-11],[3,7],[3,9],[16,12],[13,3],[9,-23]],[[84454,18630],[-7,-19],[3,-11],[2,-6],[-7,-17],[-25,0],[-28,0],[-8,-13],[-6,-18],[-29,7],[-2,-2],[-13,-19],[-8,-13],[-9,2],[-10,2],[-10,-13],[-13,14],[-5,49],[11,38],[2,8],[5,18],[12,11],[17,-7],[13,7],[4,-16],[20,-3],[2,6],[6,11],[20,7],[9,17],[15,-5],[12,-10],[-11,-4],[-4,-1],[3,-3],[18,-13],[17,-3],[4,-1]],[[83855,18874],[11,-13],[13,-8],[9,3],[4,1],[19,7],[19,9],[-3,-22],[-1,-33],[11,-14],[21,-35],[3,-8],[14,-35],[-24,-32],[7,-14],[2,-4],[6,-20],[19,-13],[-13,-14],[-9,-14],[28,-3],[12,16],[6,22],[-20,15],[-17,13],[18,19],[14,13],[14,-4],[3,8],[3,9],[-12,10],[-2,22],[26,22],[26,37],[-24,25],[54,-23],[8,3],[6,4],[10,6],[13,8],[8,-33],[-1,-16],[-1,-11],[7,-24],[8,-12],[6,-32],[14,-36],[-9,-6],[-6,-5],[3,-1],[11,-4],[27,-20],[14,-10],[35,-22],[2,-9],[4,-14],[0,-19],[18,-12],[-5,-31],[-7,-8],[-4,-5],[-17,-6],[-16,-9],[-4,-18],[-3,-8],[-25,-26],[0,-36],[-46,15],[-18,6],[-3,-2],[-17,-5],[-19,0],[0,-7],[-1,-21],[-39,-32],[0,-39],[-1,-12],[-25,1],[-1,0],[-3,1],[-30,14],[-11,-18],[-33,1],[-16,-28],[4,-42],[-23,-7],[-17,-9],[-41,-36],[-53,3],[-36,10],[-39,-5],[-14,-33],[-32,-15],[-33,4],[-6,15],[-13,32],[-48,20],[-43,3],[-29,16],[11,43],[2,63],[8,26],[7,24],[-10,63],[-25,55],[-16,21],[-7,10],[10,54],[19,40],[25,5],[35,48],[13,3],[2,0],[11,13],[48,54],[26,-2],[7,9],[51,60],[1,38],[14,3],[0,3],[2,16],[22,-13],[17,0],[43,25],[23,2],[13,-22],[1,-1]],[[82570,18970],[-4,-22],[-25,6],[-2,10],[-1,6],[-35,6],[-4,25],[11,13],[3,4],[28,7],[22,-16],[0,-24],[6,-12],[1,-3]],[[82381,19060],[19,-39],[4,-9],[-10,5],[-26,12],[-21,-24],[16,-17],[-2,-35],[-18,-5],[-22,11],[-12,19],[8,31],[-6,4],[-5,3],[-28,21],[-7,50],[31,21],[25,1],[54,2],[5,-33],[-3,-10],[-2,-8]],[[82446,19124],[14,-15],[18,6],[19,24],[20,8],[12,-17],[-9,-16],[-12,-20],[-29,-4],[-11,-15],[-24,-21],[-24,5],[-1,6],[-4,21],[-8,21],[-6,14],[8,7],[6,5],[-2,23],[18,4],[17,-6],[-1,-13],[-1,-17]],[[82306,19580],[-21,-56],[-29,8],[-28,9],[24,19],[-4,50],[0,7],[4,54],[21,-26],[17,-22],[16,-43]],[[81616,19761],[-6,-13],[-9,-16],[-17,-28],[-30,-6],[-22,11],[-27,-2],[-25,41],[-6,11],[13,0],[6,0],[12,-2],[12,-1],[36,4]],[[82326,19671],[-4,-6],[-32,25],[-24,36],[9,35],[26,0],[9,0],[4,-29],[25,-42],[-13,-19]],[[82105,19742],[-10,-45],[-22,12],[-8,-41],[12,-21],[4,-5],[-7,-12],[-15,-26],[-40,19],[6,47],[-28,-2],[-3,20],[-5,29],[0,8],[0,37],[17,0],[4,0],[19,-1],[28,-1],[20,0],[28,-18]],[[89127,10086],[-66,-4],[-87,-7],[-46,-16],[-28,-15],[-40,-15],[-23,-19],[-30,-37],[-22,-46],[-34,-8],[-39,8],[-38,-6],[-28,-7],[-30,-13],[-44,-48],[-11,-79],[-1,-8],[-1,-7],[-3,-27],[9,-24],[6,-18],[4,-9],[12,-25],[-1,-50],[-7,-65],[-11,-23],[-38,5],[-28,6],[-34,-4],[-51,6],[-54,11],[-35,3],[-33,-2],[-69,-36],[-52,-21],[-52,-26],[-45,-1],[-38,-15],[-35,-13],[-29,-12],[-9,-27],[10,-17],[0,-36],[-36,29],[15,42],[-39,28],[-27,7],[-40,5],[-39,2],[-61,-27],[-25,-17],[-55,20],[-48,-5],[-33,-30],[-35,3],[-42,-11],[-63,-25],[-75,-39],[-57,-23],[-48,-19],[-44,-2],[-30,8],[-59,11],[-70,24],[-66,28],[-32,8],[-50,5],[-31,-1],[-96,-10],[-109,-5],[-69,-2],[-63,-13],[-103,-37],[-21,-3],[-41,-5],[-64,-38],[-33,-22],[-68,-27],[-35,-25],[-21,-12],[-10,-7],[-34,-3],[-37,14],[-5,6],[-14,18],[-23,69],[-13,38],[-8,21],[-6,14],[-4,8],[-12,22],[-24,35],[-84,91],[-45,50],[-35,41],[-27,34],[-5,6],[-103,93],[-49,30],[-26,10],[-45,12],[-50,10],[-40,6],[-6,1],[-56,5],[-2,48],[6,57],[1,24],[1,27],[1,52],[9,80],[-1,25],[-6,80],[28,16],[2,-15],[4,-21],[-2,-26],[-1,-24],[-1,-39],[0,-19],[22,-40],[28,-12],[27,-78],[43,-26],[28,-17],[64,-4],[0,-25],[34,-11],[47,-21],[8,-4],[0,-54],[10,-7],[15,-11],[34,-21],[33,-87],[53,-43],[52,29],[-13,-29],[34,-47],[19,4],[36,0],[10,-22],[40,0],[5,-9],[10,-20],[7,-5],[14,-9],[25,18],[55,50],[0,47],[-6,13],[-15,34],[-237,137],[-144,93],[-49,51],[-135,148],[-34,0],[-29,44],[-1,2],[-19,18],[-43,58],[-10,8],[-24,17],[-48,-17],[-11,21],[-15,42],[-22,55],[-7,19],[-45,96],[-29,56],[-13,29],[-24,45],[-51,65],[-38,42],[-49,45],[-45,30],[-11,7],[-17,21],[-9,10],[-9,51],[-2,43],[3,22],[5,42],[2,51],[6,97],[0,4],[7,61],[7,31],[12,36],[13,37],[2,9],[3,17],[4,29],[0,35],[0,19],[5,32],[3,46],[2,42],[0,22],[0,16],[20,27],[28,36],[30,32],[27,24],[0,26],[2,40],[-33,32],[-8,8],[-5,54],[4,28],[5,15],[12,35],[6,19],[7,20],[5,22],[6,28],[27,29],[10,29],[23,27],[13,12],[18,17],[31,10],[-2,29],[-11,29],[7,39],[15,70],[27,1],[-8,58],[11,26],[1,3],[17,48],[19,12],[20,12],[-43,29],[-31,-10],[-12,-46],[-35,-11],[19,59],[30,55],[2,4],[29,44],[21,28],[58,49],[52,29],[31,-2],[33,-23],[56,-2],[27,-18],[32,-18],[23,-4],[37,-20],[19,-24],[16,-20],[5,0],[19,-2],[41,14],[12,4],[42,33],[11,2],[17,4],[76,-12],[-1,-9],[-1,-16],[12,-20],[4,-6],[31,-3],[10,10],[3,2],[14,-10],[2,-17],[2,-14],[8,-7],[12,-10],[20,-35],[33,-21],[4,-33],[4,-30],[-2,-3],[-6,-11],[-16,-15],[-9,15],[-19,-12],[-5,4],[-8,5],[-12,11],[-4,21],[-11,-16],[13,-22],[-17,-1],[-18,0],[-6,18],[-2,7],[-16,11],[-19,31],[-9,14],[-4,6],[-20,0],[-14,-17],[9,-21],[29,-2],[8,-8],[5,-5],[5,-7],[13,-17],[-10,-8],[-22,-18],[-7,-14],[-10,-20],[-17,-13],[-12,5],[-19,16],[-16,-10],[-15,7],[0,23],[-19,9],[-31,0],[-26,-17],[-15,-5],[-17,11],[16,-27],[38,11],[32,9],[3,-22],[1,-18],[30,-14],[35,-3],[9,8],[5,4],[14,-22],[25,-5],[0,16],[-14,6],[-7,3],[3,16],[16,2],[18,11],[19,-1],[15,1],[28,-29],[17,-2],[-2,-17],[-23,9],[-1,1],[8,-12],[5,-7],[13,-14],[34,-18],[16,-6],[-1,-27],[-6,-7],[-4,-5],[-9,24],[-3,-6],[-12,-24],[-14,-5],[-20,3],[-16,-12],[-21,11],[-28,-28],[3,-6],[4,-7],[4,1],[15,6],[11,-25],[9,-34],[10,-23],[0,-44],[-1,-25],[-1,-2],[-8,-16],[26,-11],[16,0],[21,-27],[18,-14],[4,-3],[13,13],[9,-13],[7,-13],[2,-7],[1,-9],[25,-8],[7,-17],[2,-2],[8,-12],[-4,-9],[-4,-9],[6,-13],[8,-20],[17,-13],[-12,-13],[-2,-3],[-12,-12],[-6,-4],[-13,-6],[-26,11],[-15,-2],[13,-9],[3,-6],[4,-8],[-12,-10],[-10,9],[-3,2],[-18,5],[-13,-25],[5,-9],[3,-6],[-9,4],[-12,5],[-5,1],[-10,4],[-10,-17],[-7,-14],[11,-20],[15,-9],[31,-35],[5,-1],[18,-1],[13,11],[15,3],[10,22],[26,11],[10,15],[9,5],[9,6],[4,15],[22,15],[15,3],[24,-13],[16,-7],[14,0],[14,-3],[30,13],[13,0],[5,-19],[-15,-38],[-1,-9],[-1,-14],[-4,-33],[-2,-34],[25,-23],[-17,-26],[-8,-15],[3,-20],[4,-26],[20,-32],[-1,0],[-12,-14],[-16,-2],[-17,-3],[-4,-19],[15,-38],[10,-10],[20,-5],[29,-15],[23,1],[12,-23],[11,-14],[21,-3],[-11,-27],[5,-15],[3,-9],[4,-11],[4,-12],[2,0],[12,-1],[18,-11],[3,-2],[5,-14],[2,-5],[20,-19],[20,-3],[29,-19],[13,-18],[3,-17],[22,-14],[3,-15],[1,-7],[16,-17],[17,0],[24,-24],[18,-11],[12,-8],[28,-3],[16,-14],[17,-9],[17,-6],[19,-13],[20,-9],[8,8],[8,-3],[5,-18],[5,4],[8,8],[2,-1],[6,-3],[7,-11],[-6,-10],[5,-20],[30,-1],[12,3],[8,2],[6,5],[4,3],[20,5],[31,-12],[1,1],[1,0],[3,0],[8,2],[14,3],[7,1],[5,-4],[5,-4],[8,-7],[45,-8],[17,0],[15,-22],[4,-6],[4,0],[14,-1],[3,-8],[3,-8],[9,-16],[7,5],[6,4],[-3,-11],[-3,-8],[10,-21],[29,-8],[21,-36],[-2,-8],[-3,-11],[2,-2],[9,-16],[0,-16],[3,-3],[8,-8],[17,0],[13,-13],[41,-9],[22,0],[8,7],[8,7],[33,1],[11,24],[14,0],[3,7],[5,14],[21,-25],[2,-5],[8,-15],[19,-14],[6,-5],[31,10],[31,-2],[-13,-14],[-5,-15],[-22,-8],[-3,-29],[20,-4],[2,0],[11,2],[23,-8],[19,-6],[3,-1],[47,26],[7,4],[11,8],[23,0],[20,-11],[19,-3],[21,-17],[19,-14],[4,-17],[1,-5],[12,-26],[20,6],[-10,25],[15,-4],[13,-10],[4,-3],[4,6],[9,11],[12,8],[7,4],[2,4],[7,10],[1,27],[0,1],[-8,14],[-6,24],[13,-3],[14,25],[1,14],[1,13],[19,-10],[19,-28],[19,0],[17,12],[11,-2],[33,-7],[22,11],[3,17],[15,0],[20,0],[4,-18],[38,-20],[9,5],[8,5],[4,15],[15,-5],[48,-5],[1,-2],[5,-14],[28,-13],[17,21],[28,16],[19,9],[28,45],[6,-5],[9,-7],[12,9],[19,19],[6,22],[-5,42],[-30,7],[5,6],[9,9],[19,8],[5,12],[3,7],[4,34],[7,20],[3,6],[7,14],[4,25],[1,22],[14,11],[28,25],[17,-1],[5,-1],[24,8],[6,2],[12,-7],[17,4],[13,13],[5,27],[-5,7],[-8,13],[29,9],[9,20],[-1,24],[-19,7],[-11,18],[-16,-4],[1,3],[9,19],[-23,28],[4,18],[25,29],[8,25],[5,0],[10,1],[12,10],[-18,16],[-6,5],[-9,16],[-15,27],[-26,8],[-2,1],[-12,4],[0,18],[-15,5],[-27,17],[3,10],[5,11],[13,11],[24,-5],[10,14],[-2,2],[-10,11],[5,20],[-17,-5],[-16,-1],[1,36],[-7,16],[-1,3],[-4,17],[-7,25],[-21,3],[7,-16],[-5,-19],[-7,-12],[-11,-11],[-15,4],[3,17],[1,4],[-2,-2],[-12,-15],[4,-17],[-19,-9],[-15,-10],[-22,-26],[-13,-14],[-5,-24],[-2,-6],[-3,-5],[-5,-10],[-33,-21],[-15,-37],[13,-33],[4,-45],[10,-20],[15,3],[10,3],[16,-18],[1,-5],[3,-14],[-1,-3],[0,-22],[16,-26],[8,-1],[19,-2],[29,-23],[23,-43],[-6,-15],[-7,-14],[-3,-1],[-17,-5],[6,25],[-15,14],[-3,4],[0,22],[-9,16],[-27,7],[-30,-1],[-10,-17],[-4,-7],[0,-18],[4,-18],[2,-9],[-12,2],[-3,0],[0,20],[-10,21],[-3,6],[-16,20],[-15,2],[7,22],[5,18],[-4,17],[-1,3],[-1,14],[-1,18],[-13,21],[-42,34],[-40,10],[-28,-8],[-3,-4],[-8,-9],[-9,-32],[-7,-18],[7,44],[-11,25],[19,4],[4,5],[6,8],[4,17],[2,3],[10,15],[1,9],[0,10],[-5,15],[-2,6],[15,10],[-1,-16],[16,3],[14,-4],[5,19],[-8,5],[-7,6],[13,31],[4,19],[3,20],[13,15],[30,16],[2,-5],[5,-9],[-15,-3],[-13,-11],[18,-10],[8,-14],[12,20],[15,25],[15,-3],[10,2],[4,1],[-7,14],[-12,13],[-14,6],[3,22],[1,6],[-16,1],[-16,0],[-1,5],[-3,10],[-3,47],[15,-5],[22,1],[-2,9],[-3,11],[-20,-2],[-2,3],[-7,19],[12,18],[3,15],[2,9],[6,10],[9,13],[9,4],[11,4],[-14,1],[10,17],[7,14],[2,22],[13,3],[-20,-2],[-5,-9],[-7,-13],[-20,-21],[-8,-5],[-9,-7],[-31,-38],[-2,-18],[-15,-20],[-13,-25],[-3,-14],[-3,-16],[-17,-1],[-32,5],[-16,-19],[-1,-2],[-9,-14],[5,-21],[18,14],[8,-22],[-15,-1],[-13,0],[-7,1],[-13,1],[-11,-23],[-15,4],[1,17],[2,0],[15,2],[4,7],[5,8],[9,17],[-5,4],[-8,8],[-3,-1],[-12,-2],[12,4],[10,3],[12,26],[2,8],[6,23],[7,18],[10,11],[-25,39],[-3,0],[-11,-1],[-13,-14],[-3,-3],[-10,8],[-1,1],[11,14],[7,9],[0,27],[23,27],[2,8],[1,9],[16,0],[-17,36],[-18,16],[-19,-10],[-2,-1],[-12,-10],[-16,1],[-14,-14],[-1,-4],[-4,-16],[-15,-20],[-19,-21],[9,33],[7,21],[-13,27],[-16,3],[-7,-4],[-7,-3],[-15,17],[14,11],[1,9],[0,10],[12,-7],[5,-4],[24,-8],[14,3],[5,-11],[2,-4],[18,12],[8,6],[3,2],[14,-8],[12,31],[9,20],[-16,-6],[-8,-18],[-4,6],[-5,8],[-12,19],[-12,-6],[-7,-17],[-6,-15],[-7,15],[-17,-3],[-20,-1],[-16,-2],[-11,-10],[1,6],[2,20],[19,3],[19,-6],[-2,13],[0,6],[-23,6],[9,26],[-7,8],[-9,10],[-5,16],[-15,-18],[-4,-27],[0,-4],[2,-20],[-13,12],[-9,8],[-14,18],[2,9],[6,22],[9,13],[3,12],[2,6],[-6,4],[-10,6],[-3,18],[35,7],[1,10],[2,11],[26,12],[15,0],[4,11],[3,7],[-4,0],[-15,1],[-24,-2],[11,15],[4,1],[13,4],[2,19],[13,13],[6,21],[16,20],[-14,5],[1,7],[4,25],[-12,2],[-2,0],[-22,-1],[1,-16],[1,-16],[-10,-26],[-11,-10],[-5,-4],[6,-20],[-27,-28],[4,19],[0,17],[-11,10],[-2,-21],[-17,7],[-2,17],[-19,-6],[-14,3],[-11,-17],[-16,-11],[1,-18],[-28,-22],[-2,-9],[-3,-17],[-22,4],[-11,9],[8,28],[-1,22],[28,30],[5,6],[-2,5],[-8,25],[-14,0],[-20,-33],[-19,-7],[-2,-10],[-1,-5],[-18,-2],[-8,-16],[-1,17],[1,42],[7,3],[15,7],[12,7],[3,2],[16,-4],[7,19],[-7,16],[8,22],[17,-12],[12,-8],[8,8],[9,10],[-14,5],[0,6],[0,9],[33,9],[15,24],[9,15],[2,4],[4,19],[-14,34],[-24,8],[-11,6],[-4,2],[-23,23],[-6,17],[28,-15],[26,28],[-19,4],[-2,16],[18,-2],[0,9],[0,10],[6,18],[-14,2],[-19,-16],[-19,-5],[-25,-2],[-24,2],[9,12],[9,13],[18,-16],[19,3],[7,1],[4,4],[9,13],[13,20],[-6,5],[-6,6],[-9,-15],[-9,16],[-4,6],[-9,-11],[-11,-16],[0,17],[1,16],[-14,0],[-1,-17],[-2,-20],[-14,-2],[-21,4],[-39,-14],[-1,-17],[6,-18],[4,-14],[-21,6],[-19,12],[-17,-11],[-5,-14],[-10,-7],[-9,-5],[-4,-5],[-11,-15],[-5,-19],[-7,13],[-1,2],[2,7],[2,17],[-8,16],[-11,28],[8,16],[-2,18],[-9,19],[4,11],[4,11],[13,4],[-8,13],[5,0],[13,-1],[7,7],[6,5],[12,-20],[3,-5],[4,-11],[-2,-1],[-14,-8],[15,-14],[3,-13],[3,-11],[12,15],[0,-1],[11,-11],[17,4],[0,20],[10,9],[7,6],[-4,17],[17,6],[12,9],[-3,19],[-2,11],[-12,13],[-6,-4],[-7,-3],[-4,3],[-11,7],[-20,-4],[-21,5],[-15,-6],[-14,8],[5,-16],[14,-6],[16,6],[-7,-15],[-3,-6],[-23,12],[-11,-11],[-5,-7],[-13,11],[-6,22],[2,18],[-9,-2],[-15,-2],[-6,6],[-8,8],[-14,-9],[-2,-3],[-7,-9],[-28,5],[15,9],[-12,2],[-2,0],[0,13],[-1,10],[20,-15],[7,23],[7,42],[-21,14],[-3,-10],[-3,-10],[-17,-10],[-3,26],[14,7],[-1,10],[-1,17],[-13,-19],[-11,9],[-22,-6],[2,-18],[-20,-17],[-16,-12],[-8,-11],[-8,-10],[-4,-20],[-10,-10],[1,-30],[35,8],[-24,-29],[-31,-13],[-4,6],[-9,10],[-11,-5],[-16,-7],[-30,-1],[-22,-1],[1,20],[-27,2],[-2,-2],[-58,-36],[-16,-14],[-3,-2],[-11,-18],[-6,-8],[-19,-20],[-39,-48],[-48,-18],[-4,14],[-3,11],[-17,-12],[1,-26],[-8,2],[-5,1],[5,-16],[4,-12],[-21,-18],[-7,-6],[-3,4],[-9,11],[-23,7],[-24,-5],[-7,-6],[-8,-7],[4,-18],[-4,-14],[1,-29],[-21,3],[-17,-11],[13,-18],[-1,-20],[-47,-20],[-2,51],[-9,7],[-7,5],[8,14],[19,-14],[14,6],[-1,15],[0,2],[2,15],[0,5],[-1,12],[-18,-3],[2,15],[-10,11],[-5,5],[-14,7],[-15,7],[-1,4],[-2,13],[-11,3],[-4,1],[16,16],[-19,43],[-3,17],[-7,-8],[-3,-3],[-16,-1],[-14,13],[-5,24],[-18,15],[-13,-22],[-17,3],[-19,5],[-5,1],[-7,3],[-25,10],[2,11],[1,5],[16,21],[-25,30],[32,42],[17,22],[4,20],[-25,17],[-14,2],[-1,0],[-3,2],[-16,10],[-9,11],[-4,4],[0,16],[-9,5],[-16,8],[-18,-9],[-10,-2],[-37,-5],[-8,16],[26,13],[-10,12],[2,1],[19,7],[-7,11],[-2,4],[7,4],[6,3],[-16,7],[-16,-24],[-27,2],[-23,32],[-30,-25],[-28,-27],[-25,-6],[-4,-20],[13,-16],[18,8],[23,-24],[30,15],[-4,-27],[-28,-11],[-6,-6],[-10,-10],[1,-10],[1,-8],[-16,4],[-37,-1],[-46,-9],[0,29],[23,1],[3,17],[-34,-3],[-18,18],[-2,2],[-10,17],[-2,9],[-3,13],[10,8],[5,3],[-36,12],[-3,21],[-28,-16],[-18,0],[-13,25],[-4,-43],[-15,-18],[-10,-12],[-23,-1],[-35,-8],[-21,0],[-21,25],[-7,29],[-32,51],[-18,36],[12,18],[112,58],[11,9],[33,25],[51,-23],[9,0],[41,-4],[47,37],[2,-2],[21,-16],[34,5],[27,28],[29,0],[57,37],[27,3],[22,17],[12,9],[33,6],[23,17],[28,0],[83,17],[35,22],[0,9],[0,19],[-25,-19],[-24,-18],[-52,-10],[-16,2],[-12,1],[-23,-12],[-32,0],[-24,-17],[-11,-4],[-13,-5],[-18,-18],[-28,-10],[-39,-28],[-30,6],[-25,-26],[-23,-3],[-21,16],[-21,15],[-34,-38],[-17,-20],[-19,-1],[-58,27],[-35,0],[-13,-14],[-11,-12],[-8,-5],[-37,-25],[-64,-33],[-26,-19],[-14,29],[-13,-16],[0,-24],[-17,-15],[-24,6],[-23,-7],[-21,-16],[-6,-4],[-35,0],[-9,-1],[-10,0],[-29,1],[-25,30],[16,18],[27,17],[24,-10],[11,-5],[3,1],[15,3],[-10,11],[-38,24],[-26,-17],[-31,1],[-22,-1],[-48,40],[15,60],[28,0],[11,-10],[29,-16],[17,0],[14,16],[1,0],[18,9],[21,-1],[6,-19],[6,-4],[13,-9],[24,2],[-6,21],[-29,29],[-26,4],[-10,-4],[-12,-4],[-11,-7],[-14,-10],[-26,7],[-8,24],[2,3],[8,11],[-26,6],[-29,16],[2,11],[2,17],[16,8],[19,0],[15,-9],[14,-19],[15,-1],[24,7],[50,10],[13,-8],[22,7],[27,6],[7,2],[4,-5],[8,-8],[20,-8],[4,-1],[9,-18],[15,-1],[34,-2],[6,27],[-9,0],[-32,1],[-23,10],[-37,19],[-31,-2],[-18,-15],[-26,11],[-9,4],[-14,-1],[-20,-4],[-24,-9],[-16,21],[28,8],[44,12],[11,3],[6,-3],[29,-12],[24,6],[15,14],[30,22],[12,13],[-14,6],[-37,-23],[-13,-6],[-35,-2],[-45,7],[-30,-19],[-44,1],[-20,9],[15,14],[26,18],[17,24],[94,2],[42,17],[26,-3],[4,0],[48,-9],[14,11],[-13,11],[-42,7],[-37,4],[-50,-22],[-77,5],[-25,-10],[-19,-21],[-42,9],[-23,23],[-2,44],[-30,-21],[-6,-15],[-5,-14],[-68,-5],[-16,3],[-34,8],[-64,16],[-30,6],[-25,14],[-54,59],[-4,32],[4,26],[1,4],[-2,14],[-4,27],[1,20],[2,35],[6,33],[3,15],[20,41],[19,33],[55,16],[-47,25],[-14,7],[3,2],[27,13],[52,-13],[33,-5],[-38,43],[0,7],[1,16],[0,13],[-18,-1],[-32,-4],[-31,23],[-36,41],[-1,2],[-11,29],[-11,30],[-3,43],[-1,9],[46,-18],[39,21],[-22,23],[9,19],[12,28],[-54,-20],[-15,1],[-26,1],[-18,25],[28,37],[-20,0],[-27,-1],[-23,55],[-27,66],[50,35],[-8,54],[-22,-29],[-4,-7],[-13,3],[-24,5],[-42,30],[1,14],[1,21],[52,33],[-9,0],[-47,-1],[-29,25],[-7,6],[-14,46],[-4,27],[-1,8],[0,20],[1,34],[2,22],[3,32],[20,49],[-1,12],[-1,55],[10,0],[41,1],[21,-5],[3,-1],[20,-16],[30,32],[15,4],[44,11],[40,22],[2,1],[35,26],[-4,1],[-4,2],[-17,5],[-39,-10],[-62,-28],[-38,-2],[-48,30],[-7,37],[-16,31],[4,53],[2,33],[-49,-28],[14,-47],[-14,-9],[-15,-10],[-32,-25],[-97,-52],[-40,18],[-19,31],[-22,17],[-6,4],[-17,11],[-21,24],[-6,7],[-30,25],[-32,48],[-23,31],[-17,23],[-39,55],[-23,37],[-5,8],[-42,48],[-11,18],[-6,12],[-5,8],[-18,34],[-19,30],[1,54],[-3,52],[-1,4],[-1,40],[9,18],[16,30],[25,57],[29,3],[16,1],[-17,20],[-8,9],[1,72],[26,48],[3,-6],[15,-30],[31,-3],[24,57],[21,11],[19,14],[1,10],[6,38],[28,3],[8,1],[8,33],[10,44],[15,59],[7,13],[13,27],[54,28],[18,6],[20,31],[23,11],[27,-3],[29,7],[35,-2],[10,-5],[32,-14],[46,5],[15,6],[60,26],[18,4],[15,2],[19,-5],[22,3],[20,27],[-20,-14],[-5,-1],[-10,-1],[-13,9],[14,15],[8,17],[16,6],[13,0],[12,-9],[-3,9],[-8,18],[-23,1],[-9,18],[-3,6],[25,17],[21,28],[5,6],[0,33],[9,21],[44,26],[8,-15],[9,-22],[15,0],[27,3],[9,-8],[12,-10],[3,-10],[4,-10],[6,-3],[8,-3],[-3,24],[0,20],[9,-8],[2,-2],[4,-21],[-1,-18],[-2,-12],[-3,-12],[21,-13],[11,21],[-7,25],[8,-1],[5,-1],[9,32],[-8,10],[-6,6],[-1,16],[-5,29],[1,13],[1,8],[-12,9],[3,6],[7,13],[-8,15],[4,3],[8,4],[20,6],[23,-2],[-17,14],[-13,7],[21,10],[-18,21],[-18,-12],[-3,-2],[-1,7],[-1,13],[8,21],[15,1],[15,-8],[19,5],[12,-3],[5,-1],[9,-5],[19,-13],[0,-10],[1,-10],[3,-25],[28,7],[15,4],[22,-20],[-11,-20],[-6,-3],[-17,-10],[-16,7],[-17,2],[-17,0],[20,-15],[-7,-20],[-22,6],[9,-13],[3,-5],[17,0],[10,12],[12,10],[1,1],[20,4],[15,-1],[3,-18],[15,3],[8,-15],[0,-27],[12,-17],[24,1],[32,1],[20,-15],[20,-14],[11,-13],[-15,-1],[-13,-9],[-1,-11],[-3,-22],[-5,-16],[-1,-4],[1,-15],[-4,-17],[-6,1],[-8,2],[-8,9],[-3,2],[-7,-21],[-3,-1],[-19,-13],[-6,19],[-23,2],[-5,-6],[-6,-7],[-14,1],[-1,0],[-10,-11],[-1,-24],[16,3],[22,5],[6,-28],[14,-9],[21,4],[1,17],[-3,5],[-5,7],[14,12],[9,7],[6,-1],[16,-3],[22,-19],[2,-4],[5,-12],[-26,3],[-18,-10],[14,-11],[-15,-7],[4,-10],[3,-8],[5,2],[8,3],[16,-2],[1,9],[1,8],[16,-17],[11,-11],[11,-11],[13,-7],[16,0],[15,1],[16,1],[-1,18],[0,7],[-5,9],[-3,5],[-4,18],[11,-12],[7,11],[2,5],[6,3],[10,6],[7,-14],[2,-2],[-14,-16],[4,-10],[4,-9],[12,-1],[5,-1],[6,-2],[14,-5],[14,-23],[22,-10],[14,-3],[18,-2],[3,0],[7,-4],[20,-12],[27,-16],[-8,25],[-12,10],[-3,4],[21,2],[20,14],[13,-6],[23,-7],[-16,-9],[-6,-3],[-11,-102],[37,-53],[2,-1],[13,-8],[15,9],[13,-3],[24,-21],[10,-12],[1,-10],[1,-6],[-14,-21],[-7,-15],[18,-7],[6,10],[10,16],[21,-16],[19,-2],[-14,-21],[-11,-13],[4,-17],[0,-22],[25,7],[18,-5],[2,2],[9,7],[15,0],[-24,9],[10,5],[4,2],[5,4],[7,5],[-12,19],[-19,-1],[-7,16],[12,8],[13,-9],[9,-7],[-1,7],[-2,9],[23,-7],[15,-3],[18,-10],[19,-8],[10,-12],[21,-9],[7,-1],[10,-3],[-12,-7],[1,-11],[2,-12],[-5,-22],[-9,3],[-10,4],[-5,-7],[-4,-7],[5,-22],[20,6],[15,4],[29,6],[2,2],[10,12],[15,-3],[29,1],[6,8],[3,6],[8,-16],[19,17],[9,15],[1,-18],[7,2],[14,4],[1,15],[0,7],[17,6],[15,12],[18,-4],[13,-8],[6,17],[1,-6],[2,-12],[10,-19],[3,-4],[17,-22],[-11,3],[-4,1],[-9,-1],[-9,-2],[-7,-2],[-9,-3],[-25,-5],[-13,-7],[-29,-14],[-16,-8],[-15,-5],[-10,-20],[27,-8],[31,5],[26,9],[26,15],[34,6],[33,3],[-7,-10],[-2,-3],[-5,-14],[14,-4],[29,-5],[22,-3],[22,-25],[-1,10],[0,11],[-18,16],[-9,8],[-2,2],[0,23],[9,-7],[2,-1],[28,6],[11,-17],[13,-15],[-20,-14],[7,-17],[12,-4],[3,-1],[21,0],[19,-15],[4,-6],[8,-12],[10,-17],[12,20],[-11,28],[-5,15],[-8,21],[-17,6],[-3,7],[-6,11],[-23,5],[0,17],[25,0],[7,0],[27,-1],[-8,-20],[-2,0],[-15,0],[9,-9],[2,-2],[20,16],[14,1],[3,0],[-1,9],[-1,10],[5,9],[3,5],[-13,5],[-11,4],[-1,9],[-1,7],[-15,4],[-14,-13],[-7,-5],[-7,-5],[-22,0],[-13,6],[-24,-1],[-20,7],[-12,4],[-22,-5],[-15,6],[-14,6],[-16,10],[4,7],[6,9],[3,8],[4,10],[0,9],[-1,6],[-14,10],[-6,4],[14,11],[-15,13],[-5,14],[-7,14],[6,20],[5,14],[-11,18],[3,13],[1,10],[14,17],[-17,6],[-12,22],[-11,29],[5,19],[14,4],[10,12],[5,-4],[9,-9],[2,-18],[17,-7],[13,16],[8,18],[-15,-5],[-22,11],[-8,10],[-9,13],[-40,40],[-18,14],[-5,4],[2,5],[6,19],[-9,14],[-6,-5],[-5,-4],[-26,0],[-2,5],[-1,5],[-3,9],[-22,7],[-15,-7],[-15,0],[-20,14],[-11,7],[-4,3],[-16,0],[2,28],[0,17],[-21,14],[-22,11],[28,-5],[18,-15],[7,2],[9,3],[22,-11],[18,-2],[6,-1],[15,1],[57,5],[18,0],[35,-9],[13,-10],[2,-2],[37,-3],[26,11],[20,10],[9,-15],[3,-7],[1,-2],[18,-23],[11,4],[6,3],[16,0],[8,-7],[12,-12],[10,-8],[3,-3],[5,-1],[19,-2],[29,11],[3,1],[35,-7],[21,3],[9,-5],[4,-2],[14,9],[-18,5],[-2,5],[-5,9],[-21,3],[-2,9],[-2,14],[13,3],[19,-14],[-1,5],[-6,15],[-7,5],[-9,5],[-8,5],[-4,3],[-7,-6],[-20,-16],[-4,-16],[-22,-3],[-20,13],[-6,1],[-9,0],[-14,-1],[7,19],[3,5],[-22,7],[-1,-3],[-1,-16],[-10,-7],[-2,-1],[-17,-2],[2,19],[-4,5],[-10,16],[-10,3],[-4,1],[4,20],[2,9],[-15,6],[-1,0],[-14,-2],[-9,-19],[-23,-8],[-8,7],[-4,3],[-9,5],[-7,3],[-6,-22],[-17,7],[0,17],[-11,-22],[-7,-2],[-22,-5],[-16,6],[4,13],[5,12],[18,15],[4,16],[-14,4],[-18,-22],[-9,-16],[-4,-8],[1,-17],[-12,-13],[-19,2],[0,6],[1,10],[7,35],[-15,20],[2,12],[2,12],[15,6],[12,12],[7,21],[2,6],[3,12],[-20,-17],[-20,-11],[-15,-6],[-12,-22],[-11,-48],[10,-20],[13,-7],[-13,-8],[-19,9],[-14,-10],[-17,8],[-17,5],[-5,1],[-19,9],[-16,8],[-8,14],[-13,10],[-10,7],[-17,11],[-14,11],[-3,3],[-35,-7],[-21,-9],[-19,1],[-23,12],[11,11],[7,25],[3,13],[1,20],[-14,-5],[-44,1],[-28,9],[8,19],[16,0],[4,0],[13,1],[22,2],[-35,13],[-23,3],[-19,5],[-30,2],[-14,-9],[-6,-4],[-3,-8],[-3,-8],[1,-4],[6,-14],[-18,-13],[-14,3],[-5,1],[-17,-10],[-23,-3],[-13,2],[-15,-15],[-2,-1],[-9,-46],[-3,-17],[-14,-23],[-7,31],[9,23],[0,11],[0,18],[-8,21],[-16,9],[-5,4],[-6,0],[-37,1],[-38,0],[-1,37],[-2,28],[-15,34],[-2,4],[-17,15],[-17,19],[-8,16],[0,9],[0,14],[-3,5],[-6,7],[-1,13],[0,9],[20,0],[6,-10],[5,-9],[25,0],[34,12],[28,25],[6,12],[4,8],[-14,11],[-5,4],[-9,-21],[-4,-5],[-14,-14],[-6,-1],[-19,-2],[-12,-2],[-4,0],[-23,17],[-6,-11],[-2,-3],[-19,3],[4,8],[2,6],[-9,12],[-1,1],[-22,0],[-5,15],[-5,10],[-20,-3],[-1,-1],[-14,-6],[21,22],[-1,25],[9,26],[-8,13],[-2,3],[17,2],[7,-8],[9,-10],[-8,-25],[8,-23],[17,1],[10,9],[3,3],[-4,-31],[9,-12],[14,2],[24,18],[13,7],[19,-5],[15,0],[6,-1],[-7,23],[-15,8],[-16,25],[-32,2],[-28,-1],[-9,12],[-21,-1],[-8,12],[-3,5],[2,0],[24,2],[9,11],[-20,10],[-15,-9],[-4,-3],[-12,3],[-6,1],[-1,17],[-20,-2],[-13,-8],[-7,-7],[-4,-4],[-17,12],[-18,10],[-11,-18],[-13,-5],[-6,17],[-4,11],[-21,-3],[-16,-13],[-19,-17],[-7,-14],[5,-12],[2,-6],[23,-7],[4,-19],[-14,13],[-22,9],[-20,19],[23,23],[3,4],[12,18],[17,42],[8,6],[6,4],[14,8],[10,6],[2,-22],[-15,3],[5,-24],[3,0],[17,1],[20,18],[-12,11],[-6,7],[-3,4],[-14,17],[-21,-14],[-18,-8],[-13,19],[-9,14],[12,7],[19,0],[7,0],[24,9],[30,10],[20,7],[14,9],[4,9],[3,7],[11,-12],[-15,-16],[-6,-13],[-2,-5],[18,-2],[7,-11],[5,-9],[13,-8],[3,-1],[4,1],[17,4],[13,13],[7,15],[2,-9],[4,-19],[18,-1],[18,8],[2,11],[2,11],[11,13],[-14,10],[-16,-3],[-5,17],[22,-6],[19,-6],[18,-1],[11,-12],[-1,8],[0,2],[-1,7],[-3,16],[-4,17],[-22,-1],[-4,3],[-7,5],[-17,1],[-5,3],[-15,8],[-6,-5],[-16,-11],[-5,14],[-5,3],[-8,6],[-6,-1],[-14,-3],[-10,19],[-29,4],[-17,-12],[-8,-9],[-10,-11],[-49,16],[8,-35],[-16,-14],[-13,-12],[0,4],[1,12],[-4,2],[-13,5],[-12,-8],[-17,0],[3,6],[8,26],[5,14],[1,3],[1,17],[16,9],[12,22],[20,-9],[23,0],[-4,10],[-2,6],[-21,5],[-35,31],[-33,10],[-31,0],[-16,-9],[25,21],[19,-1],[26,6],[10,12],[3,18],[-10,15],[-14,13],[-2,2],[-21,-1],[-20,-19],[-22,-4],[-14,3],[-23,4],[-8,1],[-11,-13],[-15,-12],[-8,-9],[-5,-4],[4,-7],[4,-7],[11,-19],[-16,6],[-1,-8],[-1,-13],[4,-29],[5,7],[8,11],[11,-4],[3,-1],[-5,-24],[11,-13],[22,13],[1,-13],[1,-14],[28,-6],[11,-2],[6,-13],[6,-12],[-7,-25],[-8,-29],[-3,-1],[-1,0],[-28,-22],[-3,-6],[-7,-11],[5,-28],[-11,-12],[0,-20],[0,-6],[1,-17],[-22,0],[-20,-17],[0,-18],[15,0],[12,-13],[-4,-16],[7,-18],[5,-22],[-23,-28],[-7,-16],[-6,-16],[-21,-21],[-13,5],[-18,1],[-16,-18],[9,-32],[4,-7],[5,-10],[-1,-28],[-2,-2],[-15,-20],[0,-25],[-1,-29],[-27,-48],[-29,15],[-20,4],[1,-16],[-14,2],[-23,-1],[-3,0],[-22,-37],[-22,-67],[-4,-39],[-2,-26],[-9,-21],[-9,-12],[-4,-27],[-9,-36],[17,16],[13,9],[-2,11],[-3,18],[10,11],[4,-12],[9,-21],[11,-16],[-29,-15],[-18,-17],[-26,-17],[-28,-3],[-49,19],[-42,-3],[-41,5],[-10,1],[-44,-9],[-41,-37],[-25,-13],[-28,1],[-27,15],[-41,1],[-56,-2],[-32,19],[-11,6],[-29,-2],[-33,-35],[-13,-9],[-17,-11],[-24,20],[-22,7],[-6,2],[-11,-22],[-13,-25],[-31,-10],[-38,21],[-53,29],[-38,34],[-5,4],[27,36],[-24,41],[-40,16],[0,28],[0,27],[-35,19],[-24,17],[1,48],[38,13],[31,-37],[33,-11],[-6,16],[-30,41],[55,7],[49,-20],[-10,45],[-16,24],[-7,10],[-2,10],[-6,24],[-30,15],[-31,4],[-10,37],[-1,5],[-36,4],[-25,14],[36,25],[13,12],[11,9],[-1,8],[-2,30],[-9,14],[-14,23],[-32,29],[-39,16],[-21,-2],[-16,-1],[-24,-21],[-7,53],[4,45],[5,0],[24,0],[30,-16],[4,3],[25,18],[-6,40],[-4,25],[-31,30],[-1,1],[-41,-13],[-8,30],[4,42],[0,23],[-1,17],[-18,36],[-18,36],[-31,24],[-35,1],[-18,7],[-7,3],[31,26],[26,34],[9,44],[0,30],[-2,5],[-6,20],[-38,42],[-51,32],[-27,8],[5,10],[10,19],[4,15],[3,16],[7,11],[4,4],[-4,2],[-7,3],[-30,16],[-14,8],[-38,21],[-27,-12],[-8,36],[-3,12],[-45,-3],[-24,27],[-7,-3],[-10,-5],[-36,7],[-5,1],[-4,19],[-4,20],[19,30],[16,32],[14,34],[-7,32],[13,14],[4,4],[11,27],[11,25],[-12,49],[-35,27],[-35,8],[-13,19],[-3,5],[-12,10],[-13,10],[-6,18],[-4,11],[-9,19],[-9,21],[-1,4],[-9,14],[-7,11],[-6,1],[-34,12],[-21,-17],[-16,-5],[8,39],[15,9],[27,16],[13,49],[3,11],[11,35],[21,41],[45,13],[33,22],[35,14],[24,24],[7,2],[40,10],[38,22],[45,10],[19,6],[4,27],[2,7],[3,11],[13,4],[20,3],[9,13],[11,18],[-4,33],[24,9],[8,3],[17,8],[15,-7],[8,-3],[29,10],[9,18],[2,29],[18,2],[15,27],[15,2],[6,13],[6,13],[6,-1],[20,-2],[27,-15],[18,7],[45,58],[37,10],[11,10],[17,16],[5,5],[14,14],[12,1],[6,0],[13,-1],[7,-1],[19,-11],[29,-1],[-2,-11],[-1,-7],[0,-29],[17,-17],[26,-9],[1,-22],[1,-12],[4,-8],[5,-13],[14,-9],[5,-3],[13,2],[6,0],[16,11],[-14,-20],[-14,-67],[2,-20],[-1,-11],[-1,-11],[1,-3],[11,-20],[-3,-13],[-1,-7],[0,-19],[18,-10],[6,7],[10,11],[26,2],[-1,-14],[-1,-12],[8,-18],[6,-5],[8,-7],[12,-6],[4,17],[0,2],[15,7],[5,2],[15,15],[30,-2],[5,3],[14,6],[8,4],[6,2],[5,-1],[12,-4],[12,8],[8,15],[15,-3],[4,-1],[1,-9],[0,-8],[-28,-9],[-5,-8],[-3,-7],[-5,-11],[-4,-9],[-33,-19],[-12,-4],[-4,-1],[-10,-3],[-18,-6],[-3,-11],[-2,-4],[-16,-6],[8,-56],[-1,-15],[2,-9],[4,-17],[5,-20],[14,11],[1,1],[17,-16],[30,-4],[2,8],[2,8],[-9,11],[22,30],[18,-8],[5,-19],[-11,-12],[-7,-16],[9,-16],[3,-11],[2,-9],[15,-3],[8,-1],[0,-16],[4,-11],[4,-11],[30,-3],[26,-10],[14,14],[1,36],[-36,0],[-11,23],[-17,0],[-30,4],[-7,18],[14,17],[24,3],[10,11],[17,6],[17,5],[15,27],[6,16],[29,-3],[13,18],[18,5],[14,23],[1,41],[-11,14],[-12,12],[-8,-1],[-14,-2],[-11,16],[-3,20],[-1,5],[-16,-1],[-5,17],[-2,7],[-22,-3],[-7,9],[-3,4],[7,19],[18,7],[12,21],[6,6],[6,5],[-4,16],[-16,6],[-12,35],[13,15],[15,22],[-17,6],[-4,-3],[-13,-13],[-23,13],[-15,-1],[-14,-9],[-4,-24],[-12,-11],[-4,3],[-20,16],[-12,33],[-13,12],[-5,15],[-2,7],[10,3],[6,2],[11,-15],[7,23],[15,22],[16,-1],[-4,21],[-2,12],[9,17],[10,3],[8,3],[-18,2],[-14,3],[-3,20],[5,11],[3,9],[-15,-1],[0,-17],[-23,-20],[-15,-8],[-2,3],[-8,12],[-18,-10],[-26,-9],[0,-17],[17,-2],[3,-23],[7,-9],[8,-12],[-18,-14],[-6,-4],[-17,4],[-2,14],[0,9],[-6,11],[-5,8],[-3,19],[0,5],[-14,2],[-13,-8],[-5,-3],[-19,3],[-3,19],[-1,3],[-11,10],[-19,25],[-15,-11],[-10,-14],[-8,-10],[-9,3],[-7,2],[17,28],[6,19],[-3,29],[5,26],[-17,-10],[-6,-3],[1,-17],[10,-11],[-10,-21],[-14,-1],[-15,1],[-9,-14],[-20,-9],[-26,-9],[-21,-3],[2,6],[2,12],[21,8],[0,20],[12,13],[16,1],[14,-7],[16,0],[16,37],[14,9],[-1,8],[-2,10],[-8,29],[-5,24],[-1,2],[-25,30],[4,37],[1,14],[2,33],[-13,3],[-24,16],[-2,-9],[-2,-12],[-20,-8],[-6,-14],[-16,7],[-6,12],[-9,17],[-3,27],[7,15],[1,19],[0,2],[-79,41],[13,13],[9,18],[9,12],[-27,-4],[-17,-15],[-20,-10],[-23,-17],[8,-18],[24,-2],[-2,-9],[-2,-7],[-61,2],[-15,1],[-1,25],[-8,7],[-7,6],[-3,1],[-15,3],[-17,7],[-26,5],[-17,-3],[7,22],[-18,20],[11,19],[1,13],[0,15],[-7,19],[-6,15],[-1,3],[-13,-1],[-10,6],[-13,8],[-26,8],[-18,-9],[5,16],[5,18],[-5,7],[-6,7],[-9,-19],[-28,-22],[-17,7],[-3,18],[-13,-6],[0,-19],[9,-14],[-3,-4],[-10,-12],[13,-9],[-12,-13],[12,-20],[-11,0],[-2,0],[-16,12],[-5,8],[-3,7],[-14,0],[10,14],[1,1],[12,40],[-20,25],[-2,3],[16,19],[0,11],[0,9],[20,43],[2,5],[2,13],[6,28],[-7,27],[-45,24],[-3,16],[-1,5],[-8,18],[-3,33],[-9,-14],[0,-19],[7,-22],[2,-4],[-16,10],[-17,9],[-5,17],[-10,11],[-17,-11],[-22,-20],[1,-8],[4,-18],[-12,-15],[-20,-1],[-10,-28],[9,-24],[16,-17],[8,-16],[16,0],[2,-5],[11,-22],[7,-9],[3,-3],[24,-17],[-4,-21],[-5,-11],[-2,-5],[5,-21],[2,-7],[-8,-7],[-3,-3],[6,-26],[20,-10],[15,-15],[10,-18],[-3,-13],[-2,-11],[-29,-7],[-8,-12],[-15,-21],[-17,-24],[-31,20],[-14,4],[-5,-6],[-6,-8],[-13,-12],[-15,2],[-8,15],[-7,13],[-6,9],[-8,14],[27,-11],[14,0],[4,19],[-11,11],[3,17],[-6,11],[-10,20],[-14,5],[-4,22],[-24,16],[-9,16],[-24,43],[-4,21],[-5,2],[-14,9],[-15,15],[0,15],[1,16],[17,26],[10,15],[2,2],[-12,8],[-12,-20],[-19,-13],[-11,-9],[3,-16],[-14,-20],[-6,-8],[10,-14],[-41,-18],[-14,4],[7,17],[12,20],[6,15],[-6,8],[-6,8],[0,16],[-13,-4],[-8,-3],[8,-23],[-7,-19],[-5,-23],[-1,-11],[-2,-13],[-1,-10],[-1,-10],[1,-7],[1,-9],[-17,-14],[-1,-19],[-6,-21],[-10,-51],[-5,-4],[-19,-15],[23,-11],[16,4],[9,14],[23,-4],[7,8],[12,12],[10,27],[3,17],[2,17],[-10,37],[-5,17],[25,-11],[19,-5],[7,-2],[3,-13],[1,-4],[11,-15],[0,-4],[-2,-14],[4,-5],[8,-14],[2,-1],[27,-29],[1,-4],[2,-15],[12,-14],[6,-17],[3,-9],[16,-21],[8,-9],[10,12],[5,-15],[10,-14],[5,-6],[-7,-45],[-11,-17],[-32,-27],[-26,-4],[-17,-21],[-16,1],[-7,0],[-23,-30],[2,-7],[3,-11],[-12,-4],[-2,-1],[-5,0],[-10,1],[-2,-12],[-7,-30],[-15,0],[-5,-9],[-12,-18],[-23,-9],[0,-22],[-16,-28],[-28,-16],[-1,-12],[-1,-14],[9,-32],[32,-21],[20,-27],[2,-40],[-6,-29],[2,-13],[6,-27],[-9,-41],[-24,-23],[-17,1],[-26,2],[-9,-49],[-29,-33],[-19,-40],[22,-38],[-25,-5],[-11,-2],[-36,21],[-26,18],[-5,4],[-24,-20],[-6,48],[-17,51],[-36,-17],[-34,-3],[-27,18],[-12,2],[-25,7],[-1,7],[-13,49],[1,46],[-16,27],[-24,7],[-20,28],[-19,33],[-22,15],[-18,-39],[-23,9],[-29,0],[-26,-11],[-26,-10],[-17,20],[-14,10],[-14,27],[-8,17],[-6,13],[-12,14],[-42,-11],[-21,-6],[0,15],[0,5],[-11,15],[-2,20],[4,7],[6,9],[-17,13],[-5,-6],[-8,-8],[-6,2],[-8,2],[3,18],[16,7],[14,-3],[24,10],[7,-20],[4,-12],[3,-33],[45,5],[14,-5],[9,-4],[37,15],[-4,34],[0,2],[-9,27],[10,18],[8,16],[26,51],[-40,1],[-26,-15],[-27,-26],[-36,31],[15,35],[7,11],[10,16],[-17,39],[0,15],[0,22],[22,9],[0,24],[1,13],[32,17],[1,33],[11,35],[14,47],[3,30],[2,14],[-8,26],[-1,5],[-30,18],[-3,2],[-4,3],[-27,21],[-33,6],[-33,-7],[-10,18],[-8,14],[41,8],[-22,26],[-6,7],[-13,6],[-28,13],[-34,13],[-2,-1],[-35,-5],[11,-22],[3,-7],[21,-42],[-1,-7],[0,-17],[0,-15],[18,-37],[5,-10],[7,-5],[7,-22],[2,-7],[-13,-13],[4,-9],[6,-17],[7,-28],[-15,-4],[-8,-3],[-18,-32],[-19,-4],[-14,8],[12,26],[10,24],[3,3],[1,1],[9,30],[-12,47],[-16,20],[-18,14],[-4,11],[-10,34],[-7,45],[-22,26],[-5,6],[-12,24],[-10,21],[-28,-21],[-35,-7],[-43,-31],[-22,-22],[-21,-5],[-25,18],[-30,11],[20,19],[36,4],[39,28],[38,14],[23,17],[1,36],[-8,35],[-3,13],[17,37],[31,-46],[29,-36],[35,-19],[23,40],[1,2],[20,25],[40,18],[53,26],[-16,31],[-3,22],[-1,9],[0,17],[0,30],[-38,-14],[-35,1],[-35,8],[-29,-43],[-8,-15],[-7,-14],[-29,7],[-26,25],[-22,37],[-24,-11],[-8,-5],[23,-48],[-23,-32],[-17,32],[-13,28],[-18,4],[-12,3],[-14,9],[-26,16],[40,12],[16,4],[12,43],[35,-25],[19,54],[9,28],[1,3],[27,-52],[9,5],[19,10],[3,6],[6,18],[-3,43],[25,-11],[6,-3],[17,-9],[19,-10],[43,9],[20,5],[42,0],[-12,-35],[-32,-32],[25,3],[9,1],[9,-9],[14,-14],[-2,33],[7,8],[15,16],[25,-30],[21,-33],[17,-34],[-12,-24],[-23,-16],[-15,-49],[53,24],[10,-53],[38,-14],[37,4],[21,21],[30,19],[35,1],[23,8],[12,5],[43,17],[43,24],[14,11],[13,11],[-45,3],[-26,-15],[-40,-5],[-31,-14],[-27,11],[-20,8],[-13,5],[-34,28],[-7,4],[-19,15],[-8,20],[-8,19],[-30,31],[-12,13],[-4,44],[-20,41],[-17,25],[-5,14],[-4,13]],[[56074,76743],[0,-8],[18,3],[8,-12],[-13,-13],[-13,-14],[-2,-3],[-2,-5],[-1,-2],[1,-10],[1,-1],[2,-3],[4,-7],[-7,-8],[-5,3],[-7,5],[-1,0],[1,0],[-1,10],[0,11],[0,1],[3,7],[0,1],[0,1],[1,3],[1,3],[1,4],[0,8],[0,2],[-1,1],[-1,1],[-5,3],[-10,1],[0,2],[-1,7],[12,23],[11,3],[3,-5],[2,-5],[1,-7]],[[55932,76823],[8,-3],[22,0],[10,-2],[0,2],[10,-2],[10,-1],[38,-19],[0,-6],[-1,-26],[-38,13],[-15,2],[-10,1],[-12,2],[-8,4],[-11,7],[-15,7],[-11,1],[-14,-4],[-6,-5],[-11,-9],[-5,8],[-23,36],[-10,43],[18,2],[2,-6],[4,-9],[1,-12],[12,-8],[8,-4],[25,-4],[4,0],[18,-8]],[[55768,76881],[11,-27],[-5,-10],[-3,-4],[-14,3],[-17,2],[-2,3],[-4,6],[-8,4],[-8,1],[-5,-2],[-5,-2],[-1,1],[-1,0],[-2,4],[-4,5],[-1,6],[-1,3],[-6,5],[7,8],[4,3],[9,1],[3,-1],[0,-12],[10,-3],[2,0],[8,1],[9,5],[2,1],[6,4],[11,6],[5,-5],[0,-6]],[[59544,74134],[-5,15],[-2,5],[-4,10],[-31,11],[-45,-49],[3,-52],[-14,-31],[-23,-21],[-13,0],[-19,-1],[-50,26],[-16,-9],[-5,-2],[-26,6],[-32,27],[53,5],[-26,11],[-22,10],[-20,-1],[-14,-1],[-30,14],[-37,14],[-37,24],[-50,-33],[-46,-51],[10,-68],[-9,-27],[-3,-9],[-2,-7],[-8,-23],[-20,-22],[-35,-25],[-4,-33],[-33,-16],[-27,-7],[-27,40],[-22,-5],[-7,-2],[22,-38],[12,-21],[-31,-33],[-15,-12],[-35,-82],[-29,-29],[13,-15],[-8,-25],[-4,5],[-11,14],[-16,11],[8,37],[4,3],[17,15],[4,24],[4,22],[-7,5],[-17,12],[0,1],[-1,5],[-31,0],[7,28],[-30,-1],[-15,9],[-10,5],[2,50],[19,15],[17,13],[18,37],[32,8],[5,36],[32,-8],[24,26],[-34,38],[42,9],[32,34],[32,6],[30,3],[18,21],[7,8],[-58,15],[4,26],[2,21],[-58,-16],[-41,-4],[-6,0],[3,10],[12,40],[-23,6],[-12,4],[5,9],[14,24],[-31,8],[-1,0],[-1,-4],[-6,-22],[0,-18],[-1,-15],[-32,16],[-30,12],[2,26],[1,23],[-2,28],[22,14],[2,13],[6,32],[35,-14],[35,-1],[9,-1],[30,9],[8,2],[-5,3],[-29,19],[-51,19],[-26,11],[-1,0],[-13,22],[-6,9],[24,17],[7,32],[1,5],[-30,30],[4,11],[8,27],[-35,10],[-13,-20],[-8,-12],[-12,31],[-9,26],[-38,-29],[10,-60],[-35,2],[-7,1],[-7,47],[-22,20],[-16,18],[-4,5],[16,20],[7,9],[18,36],[22,41],[40,44],[-6,0],[-44,0],[-22,-4],[-3,0],[-3,35],[-1,12],[-22,-18],[-11,-34],[-40,3],[-15,12],[-15,11],[16,34],[15,23],[-3,44],[-44,26],[25,29],[33,-24],[3,24],[1,11],[3,20],[-43,4],[-1,-1],[-25,-4],[-3,39],[-1,3],[-49,-1],[-10,-31],[-5,-15],[-32,-23],[-6,50],[-8,63],[46,4],[1,11],[6,35],[-29,-24],[-41,12],[4,35],[-2,58],[-16,59],[-22,32],[-43,31],[-46,14],[16,33],[8,15],[-7,13],[-11,21],[-8,30],[-7,30],[45,-2],[0,30],[0,22],[-58,-8],[-7,78],[45,50],[-6,2],[-28,6],[11,44],[-11,-6],[-32,-19],[0,-46],[-17,-29],[-14,43],[-35,37],[-2,2],[-35,40],[-9,62],[-1,7],[-41,-77],[-39,15],[-3,25],[-15,38],[-29,20],[-7,5],[-5,9],[-16,31],[-29,-9],[-29,21],[-56,-18],[-40,6],[-32,6],[-48,37],[-31,-57],[-23,31],[-3,5],[-39,16],[-33,34],[-5,12],[-8,22],[-9,-10],[-27,-34],[9,-25],[-5,-25],[-2,-9],[-29,-27],[-10,-6],[-21,-13],[-1,42],[-43,22],[-39,-9],[1,51],[-38,33],[-7,-2],[-36,-9],[-2,0],[-35,-21],[-32,28],[-22,-36],[-26,-16],[-32,20],[18,33],[28,10],[29,14],[2,25],[-6,16],[-3,11],[-16,15],[-8,7],[-45,-11],[-38,43],[8,19],[6,16],[-18,30],[-1,3],[-16,0],[-18,-1],[-19,18],[-10,12],[-4,6],[6,41],[-4,13],[-8,31],[-20,-4],[-11,-3],[-7,40],[-5,15],[-10,35],[0,29],[0,25],[-23,35],[-18,39],[-5,11],[-46,-17],[1,58],[-30,-35],[-15,18],[-21,4],[-26,36],[-20,-40],[-25,14],[-35,-13],[-4,-1],[-41,14],[-39,31],[-10,36],[-2,42],[-40,18],[-35,26],[-3,34],[0,2],[-43,25],[20,-38],[-45,-7],[-41,20],[-2,10],[-6,23],[6,37],[-36,17],[-4,17],[-5,23],[-35,41],[-27,2],[-13,1],[-18,12],[-34,23],[-28,-33],[-33,2],[-21,6],[-12,3],[-17,8],[-25,13],[-47,40],[-33,-5],[-9,40],[-13,45],[16,12],[9,7],[-18,21],[-25,2],[-21,27],[-29,-1],[-10,33],[-24,-25],[-38,0],[-19,15],[-9,8],[-5,5],[-26,27],[-37,-3],[-3,-2],[-18,-14],[-4,30],[-1,8],[5,44],[38,-4],[37,-11],[25,3],[-24,38],[0,19],[-1,25],[9,17],[5,10],[-6,20],[22,60],[4,33],[18,24],[-40,38],[-44,-17],[-43,24],[-32,10],[-8,2],[-1,12],[-1,18],[25,27],[15,40],[14,29],[3,40],[-32,19],[11,32],[31,19],[0,40],[6,27],[1,3],[-11,-2],[-25,-5],[-23,-24],[11,69],[6,42],[3,16],[-47,21],[-34,18],[-10,5],[9,5],[21,11],[34,12],[27,42],[-4,3],[-26,19],[11,23],[-7,22],[-6,16],[-6,35],[-3,16],[-13,41],[-2,9],[2,17],[3,17],[-14,23],[-14,22],[30,28],[35,-10],[41,13],[-17,28],[-4,74],[11,7],[4,2],[-3,-16],[-2,-13],[19,-26],[14,-2],[18,-9],[-2,8],[-2,9],[-5,34],[15,14],[-44,50],[-23,35],[-10,17],[8,37],[4,43],[-1,57],[-7,-2],[-35,-8],[1,11],[4,21],[-28,35],[31,37],[7,8],[11,62],[23,33],[-1,3],[-11,24],[-42,18],[5,71],[-4,56],[24,42],[-33,13],[5,57],[-29,10],[-5,2],[-4,34],[41,22],[16,30],[21,11],[12,6],[19,14],[14,-36],[9,13],[4,6],[-10,25],[-16,20],[-1,3],[-4,42],[-23,-11],[12,-30],[-23,-10],[9,-17],[-7,-6],[-6,-6],[-24,-11],[-15,32],[-41,-4],[-26,24],[-31,-6],[-10,36],[2,6],[9,25],[-27,14],[43,22],[44,1],[-2,32],[40,19],[32,25],[16,23],[15,21],[52,-20],[5,-6],[12,-11],[32,-1],[31,-1],[19,-1],[-20,17]]],"transform":{"scale":[0.00007603554485544924,0.00006477813789137906],"translate":[-87.63491789599993,24.523213195000153]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ga-counties.json b/src/js/config/mapconfig/mapfiles/county/ga-counties.json new file mode 100644 index 00000000..2640e393 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ga-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-85.6051604939999,30.355729950000182,-80.84051153199988,35.0008133460002],"geometries":[{"type":"Polygon","properties":{"name":"GA"},"id":"13241","arcs":[[0,1,2]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13281","arcs":[[-2,3,4,5,6]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13213","arcs":[[7,8,9,10,11]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13111","arcs":[[12,13,14,15,-12,16]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13313","arcs":[[17,18,19,20,-10]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13047","arcs":[[21,22,-20]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13291","arcs":[[-6,23,24,-13,25]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13083","arcs":[[26,27]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13295","arcs":[[-19,28,29,30,31,-27,32,-22]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13123","arcs":[[33,34,35,-8,-16]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13137","arcs":[[36,37,38,39,40,-4,-1]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13311","arcs":[[41,42,-24,-5,-41]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13187","arcs":[[-43,43,44,-14,-25]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13257","arcs":[[45,46,-38,47]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13129","arcs":[[-36,48,49,50,-29,-18,-9]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13085","arcs":[[-45,51,52,53,54,-34,-15]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13055","arcs":[[55,56,-31]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13115","arcs":[[-51,57,58,59,-56,-30]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13227","arcs":[[-55,60,-49,-35]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13119","arcs":[[61,62,63,-46,64]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13139","arcs":[[-40,65,66,67,68,-52,-44,-42]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13147","arcs":[[69,70,-62,71]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13011","arcs":[[72,73,-66,-39,-47,-64]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13015","arcs":[[74,75,76,-58,-50,77]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13057","arcs":[[-54,78,79,80,-78,-61]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13117","arcs":[[-69,81,82,-79,-53]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13157","arcs":[[83,84,85,-67,-74]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13105","arcs":[[86,87,88,89,-70,90]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13195","arcs":[[-90,91,92,-84,-73,-63,-71]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13121","arcs":[[-83,93,94,95,96,97,98,99,100,-80]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13135","arcs":[[101,102,103,104,-94,-82,-68]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13013","arcs":[[105,106,-102,-86]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13233","arcs":[[-77,107,108,109,-59]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13067","arcs":[[-101,110,111,-75,-81]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13223","arcs":[[-112,112,113,114,-108,-76]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13221","arcs":[[-89,115,116,117,118,119,-92]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13059","arcs":[[-120,120,-85,-93]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13317","arcs":[[121,122,123,124,-116,-88]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13181","arcs":[[125,126,127,-122,-87]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13089","arcs":[[-105,128,129,130,-95]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13219","arcs":[[-119,131,132,133,-106,-121]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13297","arcs":[[-134,134,135,136,-103,-107]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13143","arcs":[[137,138,-109,-115]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13211","arcs":[[139,140,141,142,-135,-133]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13045","arcs":[[-99,143,144,145,-138,-114,146]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13097","arcs":[[-100,-147,-113,-111]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13247","arcs":[[147,-129,-104,-137,148]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13133","arcs":[[149,150,151,-140,-132,-118]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13217","arcs":[[-143,152,153,154,-149,-136]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13265","arcs":[[155,156,-150,-117,-125]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13073","arcs":[[157,158,159,-127]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13189","arcs":[[-128,-160,160,161,162,-123]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13063","arcs":[[-131,163,164,165,-96]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13151","arcs":[[-148,-155,166,167,-164,-130]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13301","arcs":[[168,169,170,-156,-124,-163]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13113","arcs":[[171,172,-97,-166]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13245","arcs":[[173,174,-161,-159,175]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13159","arcs":[[176,177,178,179,-153,-142]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13077","arcs":[[-173,180,181,182,183,-144,-98]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13237","arcs":[[184,185,186,-177,-141,-152]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13141","arcs":[[-171,187,188,189,-185,-151,-157]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13035","arcs":[[-180,190,191,192,-167,-154]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13149","arcs":[[-184,193,194,-145]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13255","arcs":[[-193,195,196,197,-181,-172,-165,-168]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13125","arcs":[[198,199,-188,-170]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13163","arcs":[[200,201,202,203,-199,-169,-162,-175]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13033","arcs":[[204,205,206,207,-201,-174]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13303","arcs":[[-200,-204,208,209,210,-189]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13199","arcs":[[-198,211,212,213,214,215,-182]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13285","arcs":[[-216,216,217,-194,-183]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13231","arcs":[[218,219,-212,-197]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13171","arcs":[[220,221,-219,-196,-192]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13207","arcs":[[-179,222,223,224,225,-221,-191]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13009","arcs":[[-190,-211,226,227,-186]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13169","arcs":[[-228,228,229,230,-223,-178,-187]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13251","arcs":[[231,232,233,-206,234]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13319","arcs":[[-210,235,236,237,-229,-227]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13293","arcs":[[-222,-226,238,239,240,-213,-220]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13165","arcs":[[-234,241,242,-207]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13021","arcs":[[243,244,245,-224,-231]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13289","arcs":[[246,247,-244,-230,-238]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13263","arcs":[[248,249,250,251,252,-214,-241]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13145","arcs":[[-253,253,254,-217,-215]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13079","arcs":[[-246,255,256,257,-239,-225]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13107","arcs":[[-208,-243,258,259,260,261,262,263,-202]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13167","arcs":[[-264,264,-236,-209,-203]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13269","arcs":[[-258,265,266,267,268,-249,-240]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13175","arcs":[[269,270,271,-237,-265,272]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13225","arcs":[[273,-266,-257,274]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13153","arcs":[[-248,275,276,277,278,-275,-256,-245]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13031","arcs":[[279,280,281,282,-259,-242,-233]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13215","arcs":[[-252,283,284,-254]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13103","arcs":[[285,286,-280,-232,287]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13023","arcs":[[288,289,-276,-247,-272]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13197","arcs":[[290,291,292,293,294,-250,-269]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13043","arcs":[[295,296,-260,-283]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13053","arcs":[[-295,297,298,-284,-251]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13193","arcs":[[-274,-279,299,300,301,-267]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13283","arcs":[[302,303,-273,-263]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13091","arcs":[[304,305,306,307,-289,-271]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13249","arcs":[[-302,308,-291,-268]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13235","arcs":[[-290,-308,309,310,-277]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13209","arcs":[[311,312,-303,313]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13279","arcs":[[-262,314,315,316,-314]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13267","arcs":[[317,318,319,320,321,-315,-261,-297]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13309","arcs":[[-313,322,323,-305,-270,-304]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13093","arcs":[[-311,324,325,326,-300,-278]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13109","arcs":[[-282,327,328,-318,-296]]},{"type":"MultiPolygon","properties":{"name":"GA"},"id":"13029","arcs":[[[329]],[[330,331,332,-328,-281,-287]]]},{"type":"MultiPolygon","properties":{"name":"GA"},"id":"13051","arcs":[[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[-331,-286,346]]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13307","arcs":[[347,348,349,350,-293]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13259","arcs":[[-351,351,352,353,-298,-294]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13261","arcs":[[-327,354,355,356,-348,-292,-309,-301]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13271","arcs":[[357,358,359,360,-306,-324]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13315","arcs":[[-307,-361,361,362,363,-325,-310]]},{"type":"MultiPolygon","properties":{"name":"GA"},"id":"13179","arcs":[[[364]],[[365]],[[366]],[[367]],[[368]],[[369,370,371,-319,-329,-333,372]]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13081","arcs":[[-364,373,374,375,-355,-326]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13183","arcs":[[376,377,-320,-372]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13239","arcs":[[378,379,380,-353]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13161","arcs":[[381,382,383,-358,-323,-312,-317]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13273","arcs":[[384,385,386,387,-349,-357]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13001","arcs":[[-322,388,389,390,-382,-316]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13243","arcs":[[-350,-388,391,392,-379,-352]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13177","arcs":[[-376,393,394,-385,-356]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13287","arcs":[[395,396,397,398,-374,-363]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13017","arcs":[[-360,399,400,-396,-362]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13321","arcs":[[-375,-399,401,402,403,404,-394]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13305","arcs":[[-321,-378,405,406,407,408,-389]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13069","arcs":[[409,410,411,412,413,-400,-359,-384]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13061","arcs":[[-393,414,415,416,-380]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13155","arcs":[[-414,417,418,-397,-401]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13005","arcs":[[419,420,-410,-383,-391]]},{"type":"MultiPolygon","properties":{"name":"GA"},"id":"13191","arcs":[[[421]],[[422]],[[423,424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432,433]],[[434]],[[435]],[[436]],[[437]],[[438,439,-406,-377,-371]]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13095","arcs":[[-405,440,441,442,-386,-395]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13037","arcs":[[-387,-443,443,444,-415,-392]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13277","arcs":[[-419,445,446,447,-402,-398]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13229","arcs":[[-409,448,449,-420,-390]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13099","arcs":[[-445,450,451,452,453,-416]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13019","arcs":[[-413,454,455,456,457,-446,-418]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13299","arcs":[[-450,458,459,460,461,462,-411,-421]]},{"type":"MultiPolygon","properties":{"name":"GA"},"id":"13127","arcs":[[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[-424,469]],[[470,-433,471,472,473,-407,-440]]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13007","arcs":[[-442,474,475,476,-451,-444]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13205","arcs":[[-404,477,478,479,480,-475,-441]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13003","arcs":[[-463,481,482,-455,-412]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13025","arcs":[[-474,483,484,-459,-449,-408]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13075","arcs":[[485,486,487,-447,-458]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13071","arcs":[[-448,-488,488,489,-478,-403]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13201","arcs":[[-477,490,491,-452]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13065","arcs":[[-462,492,493,494,-482]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13173","arcs":[[-495,495,496,-456,-483]]},{"type":"MultiPolygon","properties":{"name":"GA"},"id":"13039","arcs":[[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505,506,-484,-473]]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13087","arcs":[[-476,-481,507,508,509,-491]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13131","arcs":[[510,511,-508,-480]]},{"type":"MultiPolygon","properties":{"name":"GA"},"id":"13027","arcs":[[[512,513]],[[514,515,516,-489,-487]]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13275","arcs":[[-490,-517,517,-511,-479]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13253","arcs":[[-510,518,-453,-492]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13049","arcs":[[519,-460,-485,-507]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13185","arcs":[[-457,-497,520,521,-514,522,-515,-486]]},{"type":"Polygon","properties":{"name":"GA"},"id":"13101","arcs":[[523,-521,-496,-494]]}]},"states":{"type":"GeometryCollection","bbox":[-85.6051604939999,30.355729950000182,-80.84051153199988,35.0008133460002],"geometries":[{"type":"MultiPolygon","properties":{"name":"Georgia"},"id":"13","arcs":[[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[463]],[[503]],[[504]],[[464]],[[465]],[[466]],[[467]],[[468]],[[421]],[[422]],[[424,469]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[434]],[[435]],[[436]],[[437]],[[364]],[[365]],[[366]],[[367]],[[368]],[[333]],[[334]],[[329]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[369,438,470,433,471,505,519,460,492,523,521,512,522,515,517,511,508,518,453,416,380,353,298,284,254,217,194,145,138,109,59,56,31,27,32,22,20,10,16,25,6,2,36,47,64,71,90,125,157,175,204,234,287,346,331,372]]]}]}},"arcs":[[[47279,93870],[-134,29],[-9,2],[-27,23],[-28,24],[-52,14],[-1,0],[-30,17],[-17,16],[-9,9],[-48,45],[-11,10],[-6,7],[-8,8],[-4,9],[-11,20],[-57,58],[-7,17],[-12,29],[-10,12],[-21,-4],[-31,-13],[-19,-1],[-75,6],[-5,4],[-24,23],[-10,9],[-17,26],[-4,4],[1,2],[1,5],[-36,39],[-10,6],[-23,-12],[-24,-17],[-22,-8],[-7,-3],[-41,-22],[-14,-19],[-22,-18],[-27,-17],[-29,-8],[-30,-7],[-37,-17],[-31,-15],[-37,-16],[-27,39],[-34,24],[-22,5],[-34,3],[-27,8],[-24,2],[-24,6],[-31,2],[-22,-3],[-21,6],[-19,10],[-20,16],[-26,10],[-20,9],[-23,6],[-31,11],[2,31],[-15,17],[-19,19],[-1,31],[25,42],[0,34],[-24,29],[-25,24],[-22,3],[-40,0],[-29,9],[-28,3],[-14,-17],[-19,-26],[-32,-26],[-14,-21],[-15,-16],[-35,-9],[-24,10],[-22,12],[-23,0],[-102,1],[-32,-21],[2,-32],[7,-24],[12,-22],[-6,-36],[-31,-13],[-39,-33],[-33,-15],[-19,-12],[-33,-8],[-28,-8],[-30,-12],[-21,-5],[-20,13],[-27,2],[-25,11],[-23,-5],[-26,-7],[-22,18],[-21,7],[-28,-8],[-25,-23],[-16,-15],[-7,-32],[-16,-17],[-21,-14],[-18,-14],[-22,-9],[-21,-13],[-22,-13],[-27,-16],[-24,-8],[-29,-27],[-35,-1],[-25,22],[-37,10],[-17,13],[-17,15],[-26,-11],[-21,4],[-29,11],[-41,2],[-34,0],[-18,19],[-20,21],[-26,1],[-28,-1],[-28,19],[-24,23],[-14,18],[-13,26],[-21,4],[-23,-1],[-19,24],[-27,4],[-23,-7],[-27,-4],[-28,-7],[-23,-4],[-25,-13],[-22,-15],[-24,-6],[-20,12],[-21,7],[-19,26],[-13,19],[-20,15],[-25,3],[-22,0],[-26,5],[-22,17],[-21,8],[-25,14],[-36,24],[-24,10],[-27,-2],[-26,-9],[-23,2],[-33,7],[-24,1],[-17,17],[-25,2],[-6,30],[-9,20],[-14,25],[-15,34],[-1,24],[27,20],[-12,24],[-27,11],[-44,-4],[-25,1],[-19,16],[-25,13],[-44,2],[-25,-3],[-28,-8],[-25,-1],[-30,9],[-30,18],[-5,21],[-5,22],[-24,21],[-20,17],[-25,32],[-17,29],[-1,24],[7,22],[-5,32],[12,21],[5,23],[-3,37],[17,22],[-9,23],[-14,18],[-34,10],[-10,21],[-7,25],[-24,21],[-19,15],[14,25],[16,20],[1,27],[-5,21],[-9,31],[-22,38],[-25,25],[2,22],[15,16],[25,17],[18,11],[27,10],[24,10],[-13,19],[-17,18],[-28,12],[-18,17],[-22,11],[-26,0],[-17,24],[-22,11],[-29,7],[-15,17],[-19,8],[-40,5],[-22,-6],[-22,14],[-15,23],[-18,22],[-1,2],[-15,21],[-30,9],[-26,6],[11,23],[-1,30],[12,28],[-20,17],[-20,9],[-13,36],[-22,33],[-21,12],[-29,14],[-5,28],[-17,15],[3,22],[-18,19],[18,13],[9,24],[-21,19],[-23,13],[-14,19],[-2,25],[9,21],[-15,17],[-20,12],[-22,7],[-15,24],[-3,26],[16,17],[-21,15],[-24,-1],[-16,15],[-41,4],[-23,11],[-33,20],[-24,25],[-19,14],[-29,12],[-23,2],[-35,13],[-26,14],[-22,3],[-23,7],[-31,10],[-27,2],[-28,-8],[-32,-21],[-28,-9],[-5,-32],[-16,-35],[-17,-17],[-26,8],[-20,8],[-25,5],[-36,11],[-27,3],[-22,-6],[-26,-10],[-27,0],[-27,1],[-31,6],[-27,13],[-21,7],[-22,14],[-29,10],[-24,-4],[-20,-6],[-24,-6],[-25,-18],[-20,-12],[-33,-2],[-29,-5],[-27,0],[-26,11],[-31,9],[-21,5],[-24,3],[-34,9],[-24,6],[-18,12],[-27,-12],[-17,-19],[-36,-21]],[[40989,96170],[-35,22],[-37,26],[-21,15],[-7,22],[-18,18],[-14,27],[-13,26],[19,24],[-8,20],[-16,39],[1,41],[-1,26],[1,31],[-8,43],[-22,32],[-9,22],[-2,23],[0,24],[-5,28],[-5,33],[8,22],[9,22],[6,25],[6,55],[18,36],[23,14],[6,22],[4,42],[18,17],[8,22],[-5,24],[14,27],[15,24],[7,29],[-18,25],[1,32],[2,26],[0,26],[-7,32],[15,26],[13,22],[2,21],[0,28],[-19,19],[-17,20],[25,8],[30,7],[19,11],[27,8],[29,9],[11,28],[8,21],[20,27],[14,23],[23,21],[10,20],[26,15],[14,21],[-10,26],[-5,26],[32,11],[26,8],[22,-2],[24,9],[31,6],[21,5],[23,-7],[24,-5],[20,20],[36,17],[44,7],[21,24],[4,21],[17,20],[4,21],[8,28],[-10,24],[-4,21],[4,26],[-9,24],[-12,21],[-3,23],[22,10],[11,23],[15,26],[16,24],[23,4],[31,5],[29,-26],[29,-9],[26,-1],[24,-4],[17,13],[-10,23],[6,22],[2,1],[23,13],[20,23],[23,20],[22,-1],[29,-9],[61,-5],[29,-9],[22,17],[29,8],[40,-19],[18,17],[28,-10],[28,-10],[30,-5],[23,7],[25,25],[12,19],[19,42],[30,18],[6,52],[6,25],[-45,0],[-30,2],[-31,1],[-28,4],[-4,24],[4,32],[0,28],[1,36],[3,32],[-2,27],[-25,13],[-30,44],[4,35],[8,22],[2,38],[-2,24],[33,6],[48,11],[23,9],[65,-2],[40,41],[210,32],[610,66],[39,4],[9,1],[70,14],[-14,263],[-11,205],[-19,361],[-7,156]],[[43147,99821],[841,10],[557,7],[2109,40],[65,1],[511,9],[31,1],[31,0],[76,2],[247,4],[1440,27],[587,13],[36,1],[6,0],[2,0],[841,19],[484,10],[1388,31],[12,3],[2,-16],[17,-11],[4,-3],[10,-8],[40,-10],[15,-8],[30,-25],[3,-19],[-1,-5],[-2,-3],[-4,-5],[-3,-3],[-16,-14],[-1,-15],[1,0],[9,-7],[54,-21],[26,-14],[1,-1],[8,-6],[8,-7],[2,-10],[0,-7],[-4,-5],[-15,-1],[-28,-1],[-14,-5],[-9,-8],[-20,-17],[-2,-2],[-1,-5],[3,-9],[5,-6],[16,-22],[1,-9],[-11,-9],[-13,2],[-17,3],[-13,-5],[-151,-107],[-5,-12],[-3,-7],[0,-34],[15,-36],[0,-9],[0,-1],[0,-3],[-4,-4],[-1,-1],[-17,-6],[-18,-3],[-40,0],[-11,0],[-16,0],[-8,0],[5,-6],[18,-21],[5,-14],[-11,-15],[-3,-4],[-75,-71],[-10,-10],[-13,-17],[-4,-12],[-13,-38],[-11,-34],[0,-23],[3,-12],[30,-97],[2,-7],[4,-12],[1,-2],[49,-95],[-145,49],[-10,0],[-18,-5],[-18,-5],[-2,-3],[-5,-5],[-12,-102],[2,-9],[14,-11],[7,-6],[32,-26],[13,-15],[15,-18],[22,-39],[19,-22],[12,-10],[9,-1],[18,13],[17,7],[13,2],[13,-1],[18,-6],[8,-7],[15,-24],[42,-81],[0,-3],[-11,-46],[-4,-2],[-98,-50],[-4,-2],[-1,-1],[-1,0],[-14,0],[-24,15],[-35,31],[-27,31],[-50,37],[-8,5],[-3,0],[-6,0],[-25,-9],[-43,-25],[-11,-12],[-4,-6],[-6,-8],[0,-15],[0,-1],[3,-8],[33,-51],[0,-9],[-5,-10],[-9,-11],[-10,-7],[-8,-5],[-19,-1],[-9,-2],[-5,-1],[-1,-2],[-14,-10],[-3,-2],[-9,-14],[0,-1],[-13,-10],[-120,-74],[-2,-1],[-6,-3],[-14,-2],[-23,1],[-11,1],[-7,6],[-44,33],[-1,0],[-18,7],[-17,6],[-40,12],[-12,4],[-42,23],[-9,5],[-47,25],[-10,6],[-5,2],[-9,4],[-9,0],[-6,0],[-15,-6],[-37,-31],[-1,-1],[-3,-6],[25,-188],[1,-3],[23,-51],[2,-6],[-1,-13],[-9,-32],[-6,-5],[-23,-5],[-9,2],[-28,7],[-55,50],[-25,23],[-3,3],[-11,14],[-32,9],[-25,2],[-17,-5],[-3,-6],[-6,-9],[-30,-45],[-8,0],[-44,-76],[-16,-28],[-1,-1],[-18,0],[-31,4],[-82,-4],[-26,-15],[-27,-21],[-12,-33],[-5,-70],[-25,-43],[-9,-38],[-12,-26],[-28,-23],[-53,-38],[-29,-15],[-17,-2],[-8,2],[-2,0],[-7,8],[-1,1],[-25,39],[-13,6],[-8,1],[-8,-6],[-28,-42],[-34,-51],[-97,-20],[-9,0],[-14,-7],[-6,-8],[-4,-11],[-14,-38],[-1,-17],[6,-13],[30,-59],[2,-2],[18,-15],[15,-22],[0,-2],[-1,-14],[-85,-87],[-7,-6],[-13,-3],[-73,7],[-7,3],[-15,11],[-55,40],[-18,14],[-7,10],[0,6],[-1,5],[1,3],[8,24],[5,12],[18,19],[2,3],[0,6],[0,7],[-4,9],[-1,1],[-9,5],[-12,1],[-16,-8],[-1,-1],[-42,-41],[-7,-13],[-4,-8],[-44,-87],[-1,-1],[-2,-16],[-6,-46],[0,-5],[-5,1],[-14,2],[-129,21],[-12,2],[-43,7],[-41,-29],[-14,-4],[-42,-4],[-31,5],[-39,14],[-34,6],[-11,-2],[-54,-21],[-11,-6],[-5,-8],[1,-8],[49,-75],[2,-3],[13,-11],[18,-13],[19,-9],[63,-5],[9,-2],[3,-6],[0,-4],[-72,-105],[-5,-7],[-4,-2],[-3,-2],[-14,-4],[-30,-3],[-9,2],[-39,23],[-60,23],[-19,-12],[-15,-12],[-9,-18],[0,-1],[6,-75],[23,-21],[8,-18],[-2,-3],[0,-1],[-21,-13],[-4,-5],[-1,-1],[-17,-21],[10,-6],[32,-19],[2,-5],[0,-6],[0,-2],[-1,-12],[-2,-3],[-5,-7],[-11,-8],[-16,-1],[-39,13],[-54,14],[-10,1],[-2,-2],[-9,-10],[-1,-21],[-1,-4],[-7,-126],[0,-3],[0,-5],[3,-6],[8,-8],[37,-15],[16,-4],[20,-1],[24,-3],[13,-12],[-2,-7],[-7,-5],[-11,-7],[-17,-6],[-39,-11],[-38,-1],[-29,0],[-29,-1],[-28,2],[-52,16],[-4,5],[-7,7],[0,17],[7,24],[-12,19],[-9,5],[-21,5],[-81,5],[-11,-5],[-4,-5],[-11,-14],[-1,-1],[-11,-25],[-18,-58],[-5,-11],[-5,-9],[-3,-8],[-1,-2],[-14,-24],[-3,-14],[-6,-30],[-7,-35],[0,-2],[14,-77],[43,-14],[11,-4],[9,-16],[4,-17],[1,-51],[-4,-39],[-21,-126],[-8,-21],[-2,-7],[-54,-47],[-43,-18],[-33,-13],[-5,-2],[-11,-1],[-24,5],[-68,41],[-35,21],[-31,29],[0,3],[-4,10],[-26,25],[-66,32],[-32,3],[-25,-13],[-9,-10],[-1,-8],[-2,-12],[-1,-7],[3,-8],[23,-55],[-1,-24],[-8,-8],[-1,-1],[-88,-86],[-3,-2],[-15,-12],[-4,-3],[-3,1],[-7,0],[-9,5],[-52,26],[-8,4],[-9,10],[-5,6],[2,16],[18,17],[2,2],[2,13],[-14,16],[-63,12],[-11,-7],[-46,-38],[-23,-25],[-5,-10],[0,-9],[-1,-7],[0,-11],[4,-5],[1,0],[53,-61],[36,-2],[38,-7],[19,-21],[0,-4],[-2,-26],[-1,-10],[-20,-63],[-9,-16],[-11,-8],[-38,-30],[-60,-7],[-95,-24],[-49,-17],[-23,-12],[-1,-1],[-1,0],[-6,-21],[-69,-79],[-16,-16],[-37,-35],[-55,-52],[-7,-3],[-2,-2],[-12,-6],[0,-3],[4,-52],[16,-42],[40,-119],[-3,-16],[-7,-5],[-15,-11],[0,-1],[-1,-9],[-1,-4],[11,-16],[41,-63],[22,-49],[-28,-54],[-49,-59],[14,-13],[41,-10],[12,-9],[-2,-11],[-50,-34],[-9,-6],[-8,-12],[-1,-1],[-2,-18],[5,-6],[40,-15],[30,-20],[8,-9],[3,-19],[-14,-10],[-1,0],[-37,-9],[-72,-3],[-6,-1],[-18,-4],[-14,-10],[-7,-6],[-1,-1],[-2,-24],[-1,-14],[0,-6],[-8,-63],[-46,-15],[-29,-10],[-32,-20],[-7,-4],[-4,-54],[0,-4],[-8,-10],[-72,-41],[-40,-22],[0,-7],[-4,-45],[-1,-3],[-4,-25],[-1,-4],[-9,-5],[-1,-1],[-8,-5],[-70,10],[-55,-1],[-4,0],[-4,-3],[-21,-13],[-24,-28],[-24,-17],[-2,-1],[-1,-11],[-8,-67],[-39,-39],[-30,-35],[-2,-3],[-6,-34],[10,-32],[3,-11],[5,-46],[1,-79],[8,-60]],[[40989,96170],[-4,-21],[-16,-19],[-20,-19],[-25,-15],[-25,-36],[-9,-27],[-7,-22],[-5,-22],[-31,-35],[-44,-25],[-29,-10],[-23,-21],[-34,-42],[-20,-21],[-16,-19],[-22,-9],[-55,-14],[-50,-12],[-36,-5],[-29,-5],[-35,-22],[-65,-45],[-19,-19]],[[40370,95685],[-25,12],[-32,8],[-28,-8],[-19,-11],[-22,-13],[-35,-13],[-22,-6],[-36,-16],[-22,-20],[-12,-22],[-14,-23],[-29,-29],[-17,-13],[-22,5],[-38,-10],[-27,-7],[-41,-14],[-18,-15],[-22,0],[-26,7],[-33,2],[-25,-10],[-34,-9],[-34,-8],[-18,11],[-17,17],[-15,27],[-38,23],[-32,15],[-22,11],[-28,5],[-23,11],[-15,20],[-20,11],[-32,6],[-29,1],[-27,-3],[-22,5],[-53,11],[-28,13],[-27,-2],[-25,7],[-19,9],[-30,10],[-27,-1],[-30,2],[-30,4],[-49,18],[-1,0],[-142,-32],[-151,-36],[-67,-15],[-216,-50],[-153,-35],[-26,-6],[-27,-6]],[[38298,95523],[-2,195],[0,37],[-3,317],[-18,10],[-28,7],[-46,6],[-23,11],[-21,35],[-19,28],[-27,21],[-34,17],[-24,-4],[-22,4],[-23,-6],[-23,13],[-21,23],[-5,40],[3,23],[21,24],[-9,23],[5,24],[-5,47],[9,46],[2,27],[15,18],[12,17],[17,31],[21,18],[10,33],[-29,17],[-21,13],[-17,21],[-21,11],[-25,9],[-17,21],[-10,10],[-9,8],[-21,10],[-21,24],[-4,24],[-4,28],[-15,17],[-16,17],[-21,26],[-32,24],[-23,10],[-19,37],[-21,13],[-21,15],[-2,21],[4,26],[2,41],[-21,30],[0,22],[-14,43],[-2,26],[-13,23],[-6,31],[-4,28],[16,38],[2,22],[0,21],[2,24],[8,22],[6,21],[10,24],[6,34],[12,26],[-2,24],[-2,26],[10,26],[14,28],[19,22],[23,15],[16,21],[4,21],[-4,32],[4,26],[2,32],[-14,24],[-15,20],[-10,25],[-12,35],[-12,30],[-9,21],[-17,22],[-16,19],[-16,19],[-17,22],[-16,23],[-24,12],[-35,3],[-22,20],[-16,24],[-17,17],[-17,20],[-25,12],[-21,-2],[-30,-6],[-25,-15],[-23,-13],[-23,-13],[-31,-15],[-23,-4],[-26,-2],[-25,0],[-27,-5],[-27,-2],[-31,-10],[-28,-13],[-23,-5],[-28,0],[-22,7],[-21,4],[1,-53],[122,1],[45,1],[0,-22],[2,-140],[-154,-1],[-17,0],[-5,0],[-85,-1],[-30,0],[-111,-1],[-30,0],[-7,21],[-16,16],[-17,17],[-10,19],[-14,18],[-12,14],[-2,0],[-1,4],[-1,1],[-25,21],[-33,22],[-3,1],[-28,14],[-37,28],[-19,14],[-3,3],[-37,25],[-1,6],[-1,13],[-1,5],[-2,20],[0,4],[-1,40],[1,2],[-1,0],[-96,25],[-58,15],[-40,10],[-121,32],[-350,88],[-69,16],[-44,12],[-48,12],[-77,19],[-62,16],[-56,14],[-23,8],[-19,21],[-33,17],[-15,20],[23,26],[20,38],[-9,39],[12,24],[2,21],[-8,22],[-13,26],[-12,19],[-15,19],[19,24],[-11,24],[-29,34],[-21,11],[-21,9],[-19,14],[-33,28],[-12,36],[-10,20],[-3,41],[-1,24],[-12,35],[-14,25],[-19,14],[-24,11],[-20,7],[-19,12],[-20,16],[-23,11],[-24,22],[-16,17],[-15,24],[-8,23],[10,30],[-12,24],[-27,9],[-27,9],[-24,16],[-23,12],[-21,9],[-20,7],[-25,14],[-27,21],[-20,15],[13,30],[-15,16],[23,10],[20,20],[24,6],[26,25],[19,25],[5,23],[16,21],[27,22],[11,23],[25,27],[2,47],[-4,25],[-2,41]],[[35014,99713],[885,-1],[1454,-2],[122,0],[155,0],[99,0],[314,-1],[622,-1],[170,0],[1361,-2],[1468,-12],[-3,117],[1314,9],[172,1]],[[20703,96869],[20,-19],[21,-17],[26,-11],[19,-12],[16,-16],[32,-15],[15,-20],[7,-22],[6,-24],[19,-19],[17,-18],[12,-24],[20,-15],[18,-19],[8,-25],[3,-24],[24,-24],[31,-13],[22,-19],[18,-12],[39,-2],[21,1],[40,5],[21,7],[27,19],[7,31],[32,-22],[-3,-21],[-15,-20],[22,-24],[41,-16],[-2,-29],[-15,-14],[-8,-26],[12,-24],[21,-32],[20,-19],[36,-12],[21,-25],[24,-15],[7,-48],[29,22],[-2,26],[21,-26],[-11,-27],[23,8],[-3,-37],[-13,-23],[-14,-17],[-33,-24],[-19,-50],[-24,-30],[-14,-24],[-35,-10],[-21,-9],[-27,-14],[-17,-14],[-21,-16],[11,-24],[4,-23],[-3,-25],[-10,-26],[-19,-21],[-28,-30],[-38,0],[-36,11],[-32,3],[-10,-28],[-29,-61],[2,-25],[7,-30],[-30,-22],[-25,-12],[-16,-20],[-25,-7],[-18,-26],[-11,-25],[-5,-29],[-13,-33],[-13,-18],[-41,-5],[-25,5],[-24,-1],[-35,-6],[-31,-2],[-40,-4],[-35,-11],[-26,-11],[-3,-23],[-13,-21],[1,-23],[-23,-16],[-5,-3],[-14,-10],[-10,-1],[-13,0],[-30,0],[-20,-9],[-20,-11],[-32,-17],[-23,-12],[-14,-16],[-31,-3],[-27,-9],[-24,-15],[-1,0],[-34,-12],[-24,-20],[-35,-19],[-7,-23],[12,-28],[18,-23],[23,-23],[26,-12],[29,-7],[19,-38],[-6,-36],[-3,-28],[-17,-20],[-9,-19],[-27,-21],[-4,-27],[25,-16],[-4,-36],[-2,-28],[-15,-30],[-12,-33],[-4,-40],[-7,-26],[-13,-17],[-33,12],[-26,-17],[-17,-13],[-9,-22],[-18,-16],[-55,-65],[-20,-11],[-9,-24],[4,-29],[-20,-38],[-9,-27],[-11,-21],[-20,-19],[11,-19],[-2,-23],[-33,-35],[-13,-26],[-12,-19],[0,-23],[-2,-35],[-47,-13],[-10,-30],[-7,-53],[4,-92],[8,-203],[2,-53],[14,-341],[7,-177],[2,-66],[10,-397],[-1,-34],[8,-239],[-2,-34],[0,-35],[1,-27],[1,-59],[2,-23],[2,-186],[1,-145],[2,-86],[-5,-123],[-2,-55],[0,-102],[0,-75],[0,-68],[0,-14],[0,-22],[-1,-30],[0,-187],[0,-226]],[[19952,91008],[-22,1],[-1,0],[-53,1],[-58,1],[-53,-1],[-20,0],[-283,1],[-27,0],[-59,0],[-4,131],[-1,7],[-8,0],[-312,15],[-29,1],[-33,2],[-21,1],[-7,0],[-74,3],[-6,165],[-97,0],[-29,1],[-78,0],[-138,2],[-172,1],[-25,0],[-1,169],[-1,136],[92,0],[81,0],[1,-30],[5,-136],[176,1],[2,78],[2,121],[2,95],[-26,15],[-6,29],[5,31],[-10,4],[-13,4],[-27,-6],[-28,-6],[-49,-4],[-42,-8],[-33,-1],[-9,1],[-24,3],[-32,5],[-50,9],[-18,3],[-27,4],[-38,11],[-34,12],[-30,5],[-71,-7],[-34,-4],[-33,5],[-25,-11],[-11,-22],[-3,-122],[-9,-43],[0,-25],[4,-40],[-1,-5],[-8,-22],[0,-1],[-2,0],[-32,-21],[-1,-1],[-35,6],[-31,5],[-38,0],[-23,1],[-29,6],[-85,64],[-23,18],[-24,14],[-42,17],[-29,5],[-26,1],[-39,-7],[-27,-9],[-29,-8],[-6,-2],[-1,0],[-21,-2],[-31,-6],[-28,-11],[-28,-6],[-23,-2],[-29,-1],[-3,-10],[-2,-6],[-8,-29],[-4,-30],[-3,-25],[-105,0],[-155,1],[-201,1],[-94,0],[-224,1],[-73,0],[-70,0],[-103,1],[-56,0],[-114,0],[-91,1],[-264,1],[-207,0],[-3,154],[-86,1],[-55,-1],[-40,1],[-23,1],[-27,-1],[-37,0],[-220,0],[-134,0],[-82,1],[-33,1],[-53,0],[-47,0],[-93,1],[-1,61],[0,29],[0,39],[-1,68],[-2,104],[3,89],[-65,1],[-53,1]],[[14508,92105],[12,48],[0,23],[-4,27],[-9,21],[-21,20],[-67,40],[-27,12],[-1,1],[-23,12],[-9,10],[-1,0],[-15,21],[-41,86],[0,1],[-16,41],[-1,7],[-11,79],[-3,15],[-1,9],[-28,143],[0,1],[-1,3],[-23,64],[-5,7],[-5,4],[-2,3],[-4,3],[-11,5],[-5,2],[-39,4],[-7,0],[-76,-3],[-1,1],[-31,36],[-44,41],[-2,2],[-3,2],[-3,2],[-1,1],[-52,29],[-34,38],[-23,37],[0,1],[-6,16],[-2,14],[-1,3],[0,2],[2,23],[4,17],[0,1],[6,9],[7,7],[10,-1],[27,-10],[2,-3],[0,-1],[67,-42],[22,-13],[6,-3],[1,-1],[25,-10],[41,-6],[2,0],[0,-1],[58,-5],[1,0],[22,2],[9,1],[1,0],[31,9],[123,71],[25,15],[29,13],[25,7],[27,2],[117,1],[15,-4],[13,-7],[16,-13],[78,-129],[8,-15],[42,-100],[0,-1],[0,-3],[9,-30],[8,-18],[13,-24],[15,-14],[12,-9],[10,-3],[11,-3],[18,-3],[18,-3],[18,2],[3,0],[31,10],[2,1],[135,55],[1,1],[9,18],[1,2],[6,34],[1,48],[1,45],[5,38],[0,1],[5,37],[1,8],[-7,2],[-61,19],[-68,19],[-7,2],[-28,11],[-95,48],[-14,9],[-34,19],[-3,3],[-3,3],[-7,3],[-1,0],[-21,17],[-9,11],[-2,4],[-11,19],[-1,3],[-7,17],[-1,6],[-1,1],[-3,9],[-1,1],[-5,11],[-11,21],[-17,28],[-12,15],[-51,43],[-32,22],[-26,15],[-49,26],[-37,15],[-8,4],[-5,1],[-2,1],[0,1],[-77,27],[-63,22],[-39,17],[-1,0],[-28,16],[-37,24],[-48,43],[-43,50],[-9,20],[-5,20],[-3,11],[0,5],[1,34],[3,8],[0,2],[1,1],[11,14],[14,10],[1,1],[23,12],[136,49],[5,1],[13,4],[9,0],[6,0],[9,1],[13,-3],[4,-1],[147,-53],[5,0],[1,0],[28,-12],[87,-29],[119,-39],[16,-6],[65,-19],[49,-17],[34,-14],[18,-11],[2,-1],[29,-25],[11,-5],[1,-1],[21,-3],[9,0],[22,2],[18,8],[16,11],[0,1],[11,8],[38,33],[27,32],[16,33],[6,18],[1,8],[3,32],[3,6],[0,1],[21,16],[23,-2],[1,0],[190,-64],[12,-5],[9,-4],[82,-39],[4,-2],[49,-26],[10,-9],[11,-2],[12,0],[4,2],[101,151],[1,2],[11,21],[2,3],[51,140],[3,10],[8,27],[-8,10],[-11,5],[-44,1],[-27,1],[-20,4],[-14,5],[-3,1],[-6,4],[-197,130],[-11,9],[-1,1],[0,1],[-12,16],[1,21],[29,73],[1,2],[1,2],[4,6],[9,9],[3,3],[25,14],[47,11],[15,-7],[4,-9],[-6,-11],[-8,-13],[-6,-15],[-4,-22],[3,-9],[5,-7],[0,-1],[17,-16],[13,-8],[13,-5],[21,1],[4,1],[17,5],[27,14],[9,5],[74,40],[104,78],[22,17],[2,2],[7,8],[3,9],[-1,9],[0,1],[-4,8],[-8,2],[-73,19],[-5,2],[-24,11],[-1,0],[-13,11],[-6,10],[-2,10],[0,12],[10,24],[7,16],[8,8],[8,4],[-2,56],[-10,36],[-9,17],[-13,23],[-9,10],[-1,2],[-2,1],[-11,10],[-18,8],[-26,5],[-25,0],[-17,-1],[-25,-7],[-60,37],[1,11],[0,83],[-4,82],[0,2],[-2,9],[-5,8],[-8,5],[0,1],[-59,22],[-30,14],[-15,9],[-42,35],[-31,32],[-11,20],[-2,33],[-13,21],[-24,27],[-4,12],[0,28],[8,15],[11,13],[4,0],[104,2],[1,0],[13,0],[-16,58],[-2,9],[-2,8],[-12,41],[-9,10],[-10,11],[-4,14],[4,23],[7,10],[10,6],[1,0],[18,-4],[10,-8],[4,-5],[0,-1],[45,-55],[2,-1],[48,-8],[1,0],[4,-1],[1,0],[36,-11],[55,-7],[3,0],[0,4],[4,39],[2,13],[14,23],[1,0],[15,12],[5,6],[71,64],[31,22],[41,19],[21,7],[111,4],[4,0],[52,4],[122,36],[9,8],[0,1],[6,9],[8,73],[-11,14],[-63,83],[-11,10],[-1,1],[-22,9],[-40,-7],[-52,-19],[-19,0],[-184,20],[-12,3],[-1,1],[-13,9],[-6,5],[-13,20],[-8,13],[-1,1],[-60,117],[-2,11],[7,4],[44,23],[1,1],[31,22],[32,24],[1,0],[30,28],[1,0],[12,14],[78,109],[4,9],[0,1],[0,1],[18,48],[35,95],[1,12],[-1,3],[0,3],[-50,46],[-8,3],[-75,-12],[-5,10],[2,20],[3,6],[14,13],[31,17],[1,0],[15,12],[7,10],[2,2],[2,7],[-1,13],[0,4],[-2,6],[-3,14],[-2,3],[-17,50],[37,-1],[11,3],[7,6],[42,54],[7,10],[5,58],[2,5],[8,13],[54,61],[8,7],[22,10],[11,1],[10,1],[42,-3],[23,0],[40,12],[9,5],[2,4],[-2,6],[-5,6],[-1,1],[-49,65],[-1,2],[-19,15],[-26,8],[-14,11],[-7,13],[1,12],[4,9],[52,36],[16,3],[10,-3],[8,-8],[14,-13],[17,-32],[11,-7],[14,-7],[32,-8],[60,-4],[11,2],[1,0],[20,8],[13,11],[7,7],[1,0],[0,2],[10,3],[44,14],[5,2],[5,2],[10,5],[88,67],[24,23],[1,0],[16,26],[1,22],[3,5],[14,27],[1,3],[1,4],[0,24],[0,1],[-6,11],[-3,13],[-11,64],[6,29],[2,8],[-10,1],[-34,2],[-7,3],[-105,107],[-3,6],[-70,157],[-6,17],[-8,34],[-5,20],[-40,32],[-7,9],[-14,44],[3,14],[4,4],[8,2],[9,-3],[48,-43],[1,-1],[0,1],[4,8],[-1,17],[-17,23],[-2,9],[5,8],[2,1],[2,1],[22,-4],[2,-1],[30,5],[15,7],[30,23],[32,18],[-15,29],[-35,8],[-14,6],[-194,96],[-1,2],[-1,3],[5,11],[7,15],[3,19],[-1,29],[-7,20],[-13,21],[-20,22],[-52,42],[-2,2],[-41,30],[-6,7],[0,1],[-3,5],[0,14],[20,54],[39,104],[3,16],[20,105],[9,51],[55,81],[11,16],[1,1],[1,2],[11,44],[-5,13],[-3,21],[0,16],[0,1],[0,1],[23,54],[5,12],[0,1],[1,0],[8,6],[19,10],[5,1],[11,3],[18,10],[17,14],[45,56],[25,31],[1,9],[5,43],[0,2],[27,27],[8,7],[35,22],[35,14],[7,9],[1,6],[1,44],[-1,11],[-6,5],[-17,12],[-7,14],[0,13],[0,1],[0,2],[2,9],[7,10],[2,2],[1,1],[10,8],[11,3],[1,1],[68,12],[6,4],[0,1],[16,34],[39,61],[11,18],[2,6],[1,1],[0,26],[-8,15],[-8,53],[0,25],[4,5],[6,16],[11,38],[1,1],[4,50],[-1,11],[-1,0],[-15,5],[0,3],[17,56],[4,6],[11,10],[10,27]],[[16639,99715],[33,0],[29,0],[31,1],[572,4],[97,0],[4,1],[780,2],[58,0],[1122,3],[105,1],[91,0],[156,0],[608,2],[48,0],[272,1]],[[20645,99730],[-1,-100],[-4,-350],[-2,-214],[0,-41],[-1,-96],[-2,-149],[-2,-183],[-2,-223],[-3,-300],[-2,-206],[0,-1],[-1,-60],[-2,-173],[-4,-342],[0,-387],[21,-13],[24,-23],[39,0]],[[30947,99714],[-24,-37],[-11,-29],[-38,-33],[-23,-3],[-19,-11],[-34,-33],[-36,-9],[-24,-11],[-25,-10],[-8,-26],[-17,-19],[-15,-17],[-25,4],[-30,0],[-24,-2],[-21,-10],[-24,-23],[-12,-20],[-21,-13],[-3,-23],[-6,-27],[-25,-20],[-24,-1],[-23,-5],[-11,-20],[-22,-18],[-20,-9],[-29,-3],[-14,-18],[-16,-29],[-21,-4],[-28,-13],[-23,-13],[-29,-9],[-20,-13],[-16,-35],[-19,-21],[-20,-8],[-20,-11],[-22,-5],[-32,-9],[-17,-24],[-20,-15],[-14,-27],[1,-23],[-16,-16],[-28,-17],[-16,-20],[-22,-6],[-10,-27],[5,-37],[16,-18],[-3,-26],[5,-27],[17,-17],[16,-17],[27,-15],[23,-11],[14,-21],[20,-18],[3,-22],[1,-23],[9,-24],[18,-16],[21,-18],[23,-3],[33,-7],[25,7],[23,-5],[35,-21],[2,-26],[2,-27],[-5,-39],[14,-23],[14,-31],[10,-20],[24,-13],[38,2],[28,-4],[30,0],[24,-4],[25,-13],[25,-12],[25,-20],[17,-21],[2,-30],[14,-22],[5,-22],[19,-14],[26,2],[21,5],[16,-17],[17,-16],[37,-25],[33,-12],[20,-7],[56,-25],[20,7],[25,4],[21,8],[22,13],[18,-15],[22,-24],[17,-13],[12,-29],[11,-19],[17,-17],[21,-12],[27,-22],[23,-14],[-11,-30],[0,-25],[14,-16],[14,-19],[29,-35],[25,-21],[7,-27],[16,-22],[9,-23],[21,-54],[16,-23],[16,-18],[30,-20],[30,-41],[8,-26],[19,-22],[21,-15],[32,-11],[22,6],[26,-2],[24,-10],[8,-23],[-8,-21],[-11,-25],[-10,-27],[-36,-99],[1,-25],[-12,-27],[-16,-25],[-17,-25],[-15,-43],[-11,-41],[-101,-75],[-1,-45],[-26,3],[-47,7],[-38,-10],[-30,-8],[-22,-4],[-24,6],[-23,3],[-18,-26],[-21,-16],[-24,-24],[-12,-24],[-28,-13],[-29,-7],[-19,-14],[-20,-25],[-21,-15],[-21,-8],[-25,-19],[-25,-17],[-22,-14],[-8,-29],[6,-29],[10,-24],[-14,-20],[-19,-14],[-14,-22],[-21,-21],[-18,-20],[-25,-17],[3,-27],[-5,-29],[15,-27],[-4,-26],[-14,-30],[1,-23],[16,-15],[20,-19],[-2,-27],[6,-22],[6,-21],[0,-34],[-5,-42],[18,-22],[-21,-22],[0,-30],[13,-24],[19,-28],[22,-7],[11,-25],[9,-20],[18,-23],[-1,-26],[9,-23],[10,-20],[3,-34],[-4,-27],[4,-23],[8,-20],[1,-24],[-20,-15],[-6,-30],[-4,-26],[24,-10],[38,-9],[21,-22],[21,-13],[20,-19],[20,-20],[27,-6],[20,-8],[25,-18],[14,-20],[22,-27],[25,-12],[26,-12],[17,-14],[27,-26],[30,0],[30,12],[36,11],[25,5],[38,7],[32,9],[22,9],[27,11],[28,-2],[26,-12],[24,4],[23,-2],[23,-4],[29,6],[31,-1],[20,9],[17,15],[20,23],[32,15],[26,2],[23,0],[26,-5],[21,-3],[22,-4],[31,7],[2,-134],[1,-75],[0,-78],[0,-83],[-1,-69],[3,-78],[-1,-80],[0,-43],[1,-42],[0,-63],[0,-113],[0,-8],[0,-31],[0,-29],[0,-48],[0,-155],[-2,-124],[0,-30],[-1,-145],[0,-1],[0,-24],[-1,-35],[-1,-97],[-107,0],[-112,1],[-37,-55],[-53,-79],[-104,-153],[-81,-121],[-75,-112],[-53,-78],[-44,-64],[-16,-24],[-44,-67],[-14,-22],[-91,-135],[-75,-114],[-79,-120],[-53,-77],[-47,-75],[-107,-159],[-28,-44],[-16,-25],[-110,-166],[-13,-24]],[[30374,92408],[-29,-42],[-52,-77],[-55,-80],[-19,-29],[-3,-4],[-32,-48],[-57,-84],[-29,-43],[-49,-72],[-17,-30],[-53,-80],[-46,-71],[-65,-99],[-12,-19],[-50,-76],[-32,-49],[-47,-71]],[[29727,91434],[-17,22],[-8,28],[-1,33],[12,20],[6,20],[-19,13],[-28,26],[-7,22],[-17,20],[-21,21],[-19,27],[-17,27],[-32,43]],[[29559,91756],[18,108],[51,47],[-6,28],[-9,38],[-5,42],[-2,25],[-23,28],[-23,36],[-6,40],[34,25],[26,31],[-38,31],[-33,27],[1,26],[-82,-10],[-33,-4],[-23,9],[-9,20],[-24,8],[-18,16],[-26,4],[-29,9],[-49,29],[-12,45],[-36,3],[-21,-11],[-37,16],[-60,44],[-60,46],[-61,8],[-28,10],[-14,55],[-23,10],[-30,14],[-13,37],[-9,26],[-17,23],[-11,29],[-11,22],[-15,51],[-28,-13],[-28,3],[-38,20],[-41,29],[-61,61],[-29,-8],[-30,-13],[-22,-8],[-19,-15],[-34,-21],[-19,-27],[-50,-44],[1,229],[0,129],[0,49],[0,35],[-1,200],[2,413],[0,98],[-183,-1],[0,72],[-1,33],[1,53],[75,-1],[-349,512],[-17,19],[-17,24],[-14,20],[-149,218],[-43,62],[-25,38],[-85,127],[-129,192],[-46,67],[-14,19],[-106,153],[-125,184],[-17,25],[-67,104],[-19,-10],[-43,-18],[-27,-6],[-22,-5],[-34,6],[-19,11],[-33,8],[-23,-1],[-24,14],[-23,-12],[-22,-1],[-24,25],[-27,20],[-30,10],[-22,26],[-19,27],[-1,24],[22,12],[28,23],[20,40],[-8,32],[-30,19],[-23,7],[-30,4],[-24,15],[-20,12],[-25,17],[-19,13],[-56,36],[-28,25],[-27,13],[-28,10],[-40,8],[-54,10],[-27,2],[-28,0],[-28,-1],[-18,-4],[-9,-2],[-24,-22],[-2,2],[-299,405],[-17,-8],[-21,-17],[-17,-19],[-21,-9],[-66,-13],[-24,-38],[-15,-27],[-31,21],[-22,16],[-46,-1],[-84,-3],[-130,9],[-58,26],[-415,182],[-27,48],[-21,33],[-8,25],[-28,1],[-120,5],[-42,2],[-38,-1],[-54,2],[-30,1],[-112,-6],[-639,4],[-439,-2],[-139,-1],[-36,4],[-343,2],[-4,0],[-455,3],[-486,2],[-87,1],[-254,2],[-65,0],[-138,-4],[-253,1],[-382,1],[-26,-1]],[[20645,99730],[3713,-5],[1307,4],[134,0],[120,0],[141,1],[873,2],[2926,-13],[293,-1],[795,-4]],[[14508,92105],[1,-51],[2,-1],[0,-1],[-3,-14],[-2,-7],[-1,-1],[-4,-9],[-15,-13],[-13,-5],[-18,-7],[-20,-4],[-31,-6],[-142,-43],[-15,-6],[-23,-8],[-7,-9],[-2,-17],[5,-15],[16,-31],[20,-91],[-6,-44],[-1,-13],[-153,0],[-2,0],[-101,0],[-239,1],[-32,0],[-208,0],[-64,0],[-104,1],[-130,0],[-42,0],[-281,1],[-60,0],[-23,0],[-10,0],[-74,0],[-26,0],[-66,-1],[-56,0],[-218,1],[-194,1],[-54,0],[-98,0],[-68,1],[-47,0],[-151,0],[-26,0],[-22,0],[-58,0],[0,140]],[[11642,91854],[-1,56],[-6,1824],[0,37],[-1,92],[0,90],[-241,1],[-9,0],[-32,0],[-372,1],[-161,1],[-162,1],[-68,0],[-64,0],[-56,0],[-2,0],[-301,1],[-89,1],[-117,1],[-170,-1],[-131,-1],[-89,1],[-94,1],[-42,-3],[-42,3],[-27,0],[-46,-3],[-21,3],[-34,0],[-35,-5],[-30,0],[-31,3],[54,202],[88,164],[285,530],[3,6],[33,61],[31,58]],[[9662,94979],[13,52],[2,8],[42,171],[1,5],[29,120],[2,9],[128,521],[57,234],[122,-4],[69,-6],[-1,-53],[-1,-100],[191,2],[111,1],[61,1],[2,149],[185,1],[75,0],[326,3],[252,2],[79,0],[0,202],[0,107],[0,48],[0,189],[0,24],[0,3],[0,57],[0,167],[0,92],[0,60],[37,1],[111,1],[79,1],[48,0],[147,2],[58,-1],[127,0],[-1,42],[0,57],[1,58],[61,2],[137,0],[-2,83],[4,77],[-1,24],[-5,234],[0,22],[1,23],[1,175],[62,0],[8,0],[101,1],[29,1],[0,26],[0,1],[0,64],[1,109],[0,30],[52,1],[46,79],[2,60],[27,31],[40,127],[17,45],[21,9],[17,15],[0,21],[0,22],[2,21],[10,26],[13,24],[47,79],[17,27],[27,92],[2,15],[2,25],[0,137],[0,30],[1,299],[1,126],[178,3],[48,1],[147,3],[-1,68],[-2,122],[0,3],[-1,127]],[[13124,99715],[752,0],[282,0],[923,0],[1558,0]],[[9662,94979],[-178,4],[-85,2],[-53,0],[0,24],[1,111],[0,22],[-41,0],[-126,1],[-130,-1],[-166,-1],[-352,-1],[-67,2],[3,382],[1,102],[0,34],[2,183],[-3,214],[-1,69],[-4,260],[-1,32],[0,42],[-2,100],[0,11],[-1,53],[-1,60],[0,164],[-203,-3],[-86,0],[-57,-2],[-212,-1],[-99,0],[-74,0],[-58,0],[-214,-1],[-57,0],[-2,0],[-106,2],[-146,1],[2,60],[1,45],[1,45],[-4,191],[0,5],[11,108],[0,3],[-1,102],[1,7],[0,20],[-1,88],[0,5],[-1,124],[0,41],[-4,41],[1,121],[-1,200],[0,160],[0,51],[-2,158],[-1,120],[0,103],[-1,82],[0,55],[0,42],[-1,31],[0,60],[-1,47],[-1,38],[0,28],[0,16],[0,22],[-1,68],[0,22],[0,98],[0,30],[0,21],[0,3],[1,24],[-2,29],[-2,23],[2,30],[-1,25],[0,24],[-2,22],[1,25],[1,42],[-12,112]],[[7127,99661],[1346,12],[121,1],[160,1],[260,3],[446,4],[1227,11],[2428,22],[9,0]],[[38298,95523],[-101,-23],[-5,-1],[-415,-95],[-92,-21],[-36,-7],[-141,-62],[-29,-13],[-21,-17],[-96,-55],[-19,-16],[-1,-22],[-12,-19],[-13,-22],[3,-23],[0,-35],[-16,-21],[-17,-13],[-17,-21],[10,-23],[-6,-28],[-32,-41],[3,-28],[12,-21],[12,-21],[1,-41],[-9,-26],[-2,-32],[7,-21],[20,-28],[1,-32],[5,-30],[31,-64],[24,-19],[4,-26],[4,-28],[-6,-22],[6,-25],[4,-24],[-23,-13],[-33,-13],[-24,-19],[-14,-33],[-2,-30],[-8,-30],[-7,-23],[9,-28],[10,-26],[6,-24],[-4,-30],[-21,-17],[-23,-9],[-31,-6],[-31,-2],[-34,-2],[-34,0],[-17,-13],[-6,-30],[-6,-22],[-13,-17],[-29,-9],[-26,9],[-19,20],[-21,-2],[-23,-6],[-2,0],[-1,0],[-20,-2],[-10,3],[-2,0],[-17,4],[-23,2],[-34,-2],[-12,-20],[-26,-14],[-27,-9],[-17,-20],[-23,-15],[-19,-10]],[[36702,93999],[-20,18],[-23,13],[-22,5],[-38,-6],[-20,15],[-8,22],[-15,20],[-30,4],[-35,3],[-46,14],[-21,6],[-26,-12],[-22,-10],[-40,-18],[-23,-21],[-24,-12],[-32,-18],[-21,-3],[-33,18],[-15,15],[-23,16],[-24,8],[-27,12],[-25,4],[-40,-7],[-21,-9],[-25,-9],[-26,5],[-40,-3],[-21,7],[-25,22],[-14,23],[-12,28],[-15,20],[-23,11],[-28,23],[-23,12],[-29,5],[-24,-3],[-24,-12],[-27,-6],[-26,6],[-23,18],[-23,18],[-15,20],[-32,7],[-31,-10],[-47,3],[-24,8],[-27,4],[-22,4],[-8,2],[-18,14],[-28,35],[-25,4],[-24,-23],[-18,-13],[-17,-13],[-24,-4],[-30,5],[-30,11],[-25,3],[-25,15],[-15,15],[-23,8],[-35,3],[-20,6],[-16,22],[-18,18],[-20,10],[-20,9],[-25,-4],[-25,-17],[-20,-12],[-20,-12],[-33,-4],[-24,-5],[-26,-9],[-30,-28],[-24,-25],[-22,-17],[-21,-12],[-19,-16],[-6,-23],[-18,-19],[-22,-7],[-27,-11],[-21,-7],[-31,-7],[-28,-6],[-32,-17],[-32,-20],[-19,-20],[-20,-24],[-11,-19],[-14,-23],[-23,-12],[-22,-3],[-29,1],[-24,-3],[-21,-9],[-8,-22],[-10,-19],[5,-31],[-18,-13],[-26,-4],[-22,-12],[-20,-23],[-25,-15],[-50,-2],[-25,-3],[-29,-14],[-22,-18],[-18,-15],[-18,-28],[-17,-40],[-15,-34],[-14,-21],[-23,-11],[3,-25],[19,-12],[17,-20],[8,-26],[-6,-22],[-13,-23],[20,-17],[-3,-25],[-32,-16],[-17,-12],[-24,-11],[-25,-28],[5,-27],[19,-20],[-10,-27],[-21,-21],[-7,-28],[2,-22],[-3,-25],[-22,-17],[-18,-21],[-14,-22],[-10,-25],[-5,-25],[8,-25],[2,-25],[1,-22],[7,-20],[0,-26],[-30,-6],[-30,-4],[-26,0],[-25,0],[-1,0],[-7,-1],[-18,-2],[-23,-18],[-30,-20],[-19,-11],[-20,-8],[-20,-14],[-36,-19],[-26,-6],[-36,3],[-29,-4],[-39,0],[-24,0],[-18,-14],[-20,-30],[-17,-18],[-41,3],[-24,1],[-32,5],[-24,4],[-24,-31],[-27,-33],[-15,-22],[5,-23],[12,-22],[3,-22],[-16,-20],[-26,-17],[-16,-17],[0,-30],[9,-33],[0,-25],[-11,-28],[-11,-25],[-17,-25],[-16,-21],[-29,-11],[-25,6],[-21,8],[-30,2],[-22,-5],[-26,-15],[11,-31],[12,-22],[4,-23],[-3,-25],[-1,-34],[13,-24],[9,-23],[-4,-26],[-21,-9],[-39,-2],[-29,7],[-25,8],[-25,-3],[-24,-10],[-24,-19],[-48,0],[-27,2],[-16,17],[2,25],[-22,14],[-24,5],[-27,-6],[-27,-6],[-29,3],[-21,27],[-16,17],[-25,13],[-41,19],[-19,14],[-23,24],[-25,7],[-27,-4],[-25,-5],[-26,-12],[15,44],[-3,24],[-21,5],[-18,12],[-20,21],[-7,21],[-10,23],[-3,31],[-18,13],[-45,-9],[-27,0],[-42,11],[-36,-4],[-22,-11],[-4,-27],[2,-28],[-22,-8],[-25,-1],[-27,-6],[-29,-6],[-25,3],[-31,-12],[-16,-21],[-29,2],[-18,14],[-34,17],[-27,-1],[-21,2],[-28,13],[-35,-3],[-27,-7],[-24,10],[-24,9],[-27,7],[-32,6],[-20,7],[-19,18],[-25,9],[-44,-4],[-28,6],[-30,12],[-31,12],[-22,9],[-23,4],[-32,4],[-21,12],[-9,30],[-15,16],[-24,12],[-24,8],[-23,13],[-30,15],[-21,12],[-34,18],[-27,-5],[-37,-15],[-26,-13],[-25,-18],[-24,-11],[-25,-8],[-24,0],[-35,-8],[-20,-22],[3,-25],[6,-25],[14,-18],[10,-26],[-16,-24],[-13,-25],[-14,-19],[-35,-29],[-19,-13],[-14,-18],[-22,-17],[-19,-11],[-26,-14],[-20,-19],[-22,-9],[-25,6],[-20,5],[-11,20],[-16,41],[-13,20],[-18,13],[-30,-6],[-21,-19],[-37,-26],[-40,-15]],[[30947,99714],[27,-1],[685,-1],[489,-1],[1427,-4],[114,0],[1325,6]],[[5046,99623],[6,-81],[-1,-5],[-3,-23],[-50,-53],[-50,-51],[-15,-31],[-44,-98],[-25,-46],[-34,-86],[-70,-104],[-44,-67],[-37,-54],[-21,-33],[-55,-81],[-21,-32],[-62,-95],[-52,-77],[-78,-113],[-12,-17],[-76,-108],[-202,-295],[-22,-32],[-33,-46],[-78,-116],[-29,-36],[-18,-19],[-327,-546],[-18,-47],[-12,-30],[-13,-36],[-52,-134],[-9,-24],[-89,-232],[-89,-238],[-9,-24],[-5,-15],[-5,-12],[-8,-23],[-38,-101],[0,-2],[-1,-148],[0,-78],[0,-76],[0,-110],[0,-75],[0,-45],[0,-114],[0,-103],[0,-1],[1,-283],[1,-148],[2,-201],[-1,-117],[0,-35],[0,-28],[-25,-22],[-118,-107],[-19,-14],[-26,-20],[1,-32],[-2,-128],[0,-2],[-1,-50],[-28,-116],[-24,-100],[-78,-101],[-26,-37],[-29,-39],[-5,-6],[-97,-110],[-179,-201],[-23,-26],[-23,-26],[-60,-67],[-80,-90],[-1,-71],[0,-2],[-2,-215],[-1,-111],[-2,-168],[0,-40],[0,-32],[-192,-211],[-163,-173],[-26,-27],[-23,-25],[-61,-66],[-89,-95],[-70,-75],[-30,-32],[-230,-251],[-24,-26]],[[1492,91884],[-5,26],[-47,218],[-57,269],[-1,4],[-40,188],[-16,74],[-11,51],[-70,327],[-1,7],[-11,51],[-1,6],[-9,41],[-8,37],[-5,26],[-18,84],[-24,111],[-16,73],[-9,45],[-11,53],[-18,86],[-3,17],[-5,22],[-9,43],[-5,22],[-7,34],[-6,30],[-16,76],[-57,277],[-18,82],[-16,79],[-54,258],[-53,271],[-4,23],[-17,87],[-27,137],[-24,122],[-113,581],[-6,32],[-30,155],[-24,122],[-11,55],[0,2],[-7,36],[-6,33],[-30,164],[-17,89],[-31,166],[-24,127],[-9,52],[-23,114],[-1,6],[-19,111],[-2,13],[-6,29],[-7,40],[-6,34],[-17,91],[-9,53],[-14,81],[-7,37],[-37,190],[-29,151],[-9,61],[-9,61],[-9,37],[-9,52],[-2,25],[-5,25],[-4,26],[-5,26],[-34,165],[-12,68],[-14,73],[-17,92],[0,4],[-7,37],[-26,165],[-12,69],[-10,117],[-3,35],[-15,88],[-18,105],[-11,67],[-21,120],[-28,164],[-28,164],[2751,-35],[216,1],[135,0],[555,2],[177,0],[254,1],[63,0],[170,1],[94,0],[78,1],[273,1],[280,0]],[[11642,91854],[-99,-2],[-3,0],[-31,1],[-43,3],[-32,-3],[-1,-148],[0,-181],[-2,-430],[-181,0]],[[11250,91094],[-63,0],[-27,1],[-138,1],[-133,1],[-34,0],[-15,0],[-127,1],[-107,1],[-167,0]],[[10439,91099],[-216,3],[-132,1],[-4,0],[-365,11],[-86,0],[-73,0],[-1,0],[-88,0],[-520,8],[-59,1],[-492,8],[-35,0],[-44,0],[-96,0],[-138,0],[-113,0],[-141,0],[-202,0],[-30,0],[-149,0],[-108,0],[-43,0],[-234,1],[-210,1],[-44,0],[-24,0],[-2,0],[-89,1],[-96,0],[-65,0],[-89,0],[-8,0],[-14,1],[-24,0],[-21,0],[-196,1],[-813,0],[-93,0],[-171,0],[-205,0],[-1009,1],[-60,0],[-331,-1],[-13,0],[-207,-1],[-275,-1],[-252,-1],[-40,0],[-122,-1],[-10,0],[-96,0],[-23,-1],[-162,0],[-98,0],[-116,-1],[-57,0],[-139,-1],[-261,-2]],[[1635,91127],[-74,392],[-29,152],[-10,52],[-24,129],[-6,32]],[[5046,99623],[183,4],[477,8],[61,1],[65,1],[238,5],[104,2],[116,2],[322,5],[60,1],[455,9]],[[29559,91756],[-19,-20],[-25,-18],[-16,-21],[-31,-15],[-35,-12],[-26,-10],[-22,-1],[-21,8],[-23,0],[-24,-5],[-25,-13],[-22,-27],[-17,-16],[-24,-7],[-24,-7],[-18,-26],[-11,-33],[-11,-20],[-7,-28],[-17,-17],[-31,-13],[-2,-26],[-12,-49],[-29,-6],[-31,1],[-24,-5],[-21,-17],[-1,-45],[-61,-2],[-24,1],[-42,0],[-330,7],[-129,2],[-60,0],[-2,-86],[-2,-142],[-2,-161],[-1,-70],[-1,-73],[0,-36],[-1,-44],[-31,-2],[-29,6],[-27,-4],[-23,-2],[-26,13],[-23,13],[-33,8],[-32,7],[-24,-7],[-29,0],[-25,-1],[-23,0],[-23,7],[-26,23],[-28,10],[-20,9],[-16,20],[-19,-10],[-30,-10],[-4,-24],[2,-22],[-9,-21],[-37,-8],[-36,7],[-30,-1],[-26,-6],[-22,2],[-23,-9],[-27,-5],[-31,2],[-29,1],[-31,6],[-40,18],[-14,24],[-6,24],[-32,50],[-15,22],[-21,9],[-20,15],[-36,31],[-16,2],[-7,0],[-22,-11],[-5,25],[-6,28],[-33,7],[-20,13],[-28,-5],[-20,-16],[-24,-11],[-13,-21],[-15,-22],[-35,2],[-23,11],[-27,9],[-20,6],[-22,0],[-15,19],[-21,30],[-21,22],[-23,4],[-24,-1],[-24,10],[-31,8],[-21,9],[-27,0],[-31,-1],[-13,-22],[-23,-13],[-23,-18],[-18,-21],[-22,-6],[-23,6],[-19,-12],[-23,-14],[-1,-33],[13,-22],[22,-15],[22,-13],[17,-26],[20,-9],[14,-18],[-20,-12],[-17,-14],[-72,11],[-17,-23],[-14,-25],[-25,-4],[-24,3],[-16,-19],[-14,-18],[-19,-11],[-32,2],[-28,-9],[-16,-19],[12,-38],[8,-36]],[[26436,90568],[-171,-3],[-273,6],[-100,1],[4,-186],[0,-79],[-1,-46],[-75,3],[-115,6],[-1,0],[-840,9],[-45,0],[-41,0],[2,36],[2,138],[-91,2],[-6,-82],[-33,-43],[-39,-48],[-25,-3],[-78,1],[-26,-1],[-87,2],[-105,3],[-338,7],[-85,2],[-1,126],[2,49],[-3,116],[-21,0],[-112,-1],[-241,-4],[3,-141],[191,-1],[-4,-140],[-487,7],[-60,0],[4,284],[-136,0],[-2,0],[-56,-2],[-2,-50],[-1,-42],[4,-38],[-19,-17],[-29,-1],[-132,-1],[-5,-99],[-1,-34],[-4,0],[-19,0],[-45,0],[-74,0],[-24,0],[-74,1],[-34,0],[-34,0],[-22,0],[-74,1],[-33,0],[-26,0],[-178,1],[-74,0],[-121,1],[-112,1],[-98,0],[-28,0],[-39,1],[-3,-26],[-26,-2],[-58,0],[-51,0],[-128,0],[-152,-1],[-34,0],[-1,0],[-21,0],[-192,2],[-104,1],[-199,-4],[-1,0],[-105,-3],[-247,-3],[-122,-1],[-248,-2]],[[19956,90271],[-2,298],[-1,99],[0,67],[0,47],[-1,47],[0,147],[0,21],[0,11]],[[47279,93870],[23,-36],[8,-26],[2,-3],[14,-81],[1,-10],[26,-46],[34,-31],[2,-3],[9,-9],[-1,-3],[-6,-21],[-26,-16],[-17,-7],[-38,-14],[-18,-12],[-39,-36],[-4,-24],[12,-29],[11,-12],[117,-46],[73,-8],[65,-46],[3,-2],[38,-42],[16,-27],[-7,-34]],[[47577,93246],[-93,-45],[-55,-25],[-26,-11],[-27,-12],[-30,-14],[-93,-41],[-49,-22],[-63,-28],[-126,-57],[-34,-68],[-26,-55],[-46,-96],[-25,-52],[-13,-27],[-35,-72],[-36,-74],[-171,-355],[-16,-33],[-20,-40],[-39,-81],[-45,-91],[-30,-65],[-42,-89],[-11,-24],[-21,-44],[-22,-48],[-20,-43],[-24,-50],[-33,-70],[-12,-25],[-29,-60],[-19,-39],[-17,-37],[-34,-73],[-23,-47],[-12,-28],[-39,-82],[-33,-70],[-22,-47],[-9,-18],[-1,-3],[-40,-83],[-42,-91],[-3,-6],[-16,-33],[-44,-95],[-22,-46],[-17,-35],[-33,-70],[-18,-39],[-3,-7],[-13,-29],[-79,-164],[-57,-123],[-9,-20],[-77,-162],[-64,-135],[-12,-25],[-7,-14],[-20,-42],[-32,-67],[-33,-74],[-37,-76],[-20,-42],[-22,-48],[-30,-62],[-48,-102],[-52,-109],[-20,-42],[-10,-20],[-46,-95],[-26,-55],[-10,-20],[-27,-57],[-12,-26],[-9,-18],[-4,-9],[-16,-30]],[[45026,88814],[-34,8],[-23,6],[-43,13],[-11,3],[-93,29],[-27,3],[-61,7],[-235,24],[-229,25],[-31,3],[-17,2],[-9,1],[-23,3],[-29,3],[-31,1],[-26,3],[-104,16],[-29,3],[-128,16],[-46,6],[-129,16],[-44,6],[-49,6],[-44,5],[-43,6],[-2,0],[-27,3],[-63,8],[-21,-15],[-19,-15],[-18,-15],[-17,-14],[-29,-24],[-21,-16],[-27,-17],[-21,-3],[-22,-1],[-28,-2],[-36,-2],[-32,-1],[-13,-1],[-7,-5],[-60,-63],[-21,-19],[-7,-7],[-2,-1],[-3,-3],[-109,-78],[-1,0],[-155,-161],[-3,-3],[-101,-75],[-33,-27],[-34,-34],[-12,-19],[-20,-30],[-59,-93],[-4,-7],[-3,-6],[-20,-30],[-19,-26],[-4,-5],[-19,-17],[-16,-10],[-86,-37],[-57,-25],[-36,-15],[-27,-11],[-66,-26],[-84,-28],[-32,-6],[-57,-26],[-15,-17],[-17,-22],[-9,-27],[-1,0],[-1,-25],[1,-28],[-16,-54],[-10,-21],[-12,-13],[-15,-16],[-34,-20],[-43,-29]],[[41763,87748],[-26,37],[-20,27],[-32,44],[-50,68],[-56,77],[-16,21],[-3,8],[-6,12],[-80,116],[-21,30],[-21,30],[-14,21],[-23,33],[-50,72],[-36,53],[-2,4],[-32,45],[-92,133],[-67,99],[-153,220],[-70,101],[-63,91],[-16,24],[-17,24],[-61,89],[-44,69]],[[40692,89296],[-16,76],[0,9],[32,67],[51,58],[15,8],[71,8],[23,7],[14,25],[16,53],[17,-8],[19,-10],[2,0],[17,0],[35,27],[22,10],[41,5],[59,34],[106,102],[33,19],[39,16],[85,-12],[3,0],[2,3],[25,32],[-8,23],[-11,12],[-3,3],[-8,10],[-1,4],[-5,15],[-2,8],[0,17],[2,7],[74,73],[10,9],[4,1],[7,-2],[1,0],[17,-3],[6,-3],[16,-7],[2,0],[24,1],[7,5],[9,9],[9,27],[2,44],[1,2],[0,3],[1,3],[4,4],[12,5],[6,2],[9,1],[68,-4],[26,-1],[22,3],[12,6],[10,8],[7,9],[4,6],[0,12],[-4,5],[-14,8],[-19,1],[-14,-1],[-16,-1],[-19,-2],[-7,3],[-8,4],[-1,8],[4,7],[3,6],[1,0],[8,10],[19,11],[32,11],[11,1],[24,23],[7,6],[-30,28],[-20,84],[-1,5],[1,47],[0,3],[-89,96],[-16,6],[-12,4],[-16,6],[-31,13],[-8,5],[-46,64],[-2,3],[0,8],[1,14],[0,11],[3,12],[1,8],[-6,16],[-44,34],[-2,1],[-13,11],[-28,11],[-30,12],[-11,10],[-3,7],[7,13],[26,9],[7,3],[1,1],[1,2],[-2,9],[-1,7],[-20,41],[-8,15],[-11,9],[-19,15],[-20,23],[-26,31],[-8,8],[-2,52],[0,6],[-2,34],[1,10],[5,37],[6,54],[0,9],[-3,57],[0,2],[-34,37],[-1,2],[-17,39],[-18,34],[-13,24],[-2,4],[-65,135],[-3,8],[0,9],[5,146],[0,7],[30,8],[28,16],[48,29],[34,19],[8,11],[13,26],[2,5],[0,3],[0,33],[-7,50],[-30,38],[-20,24],[-24,31],[-10,28],[-5,12],[-8,12],[-21,17],[-19,14],[-18,17],[-32,50],[-5,15],[-2,29],[10,32],[-1,19],[-9,16],[-22,27],[-16,20],[-2,3],[-44,16],[-6,3],[-2,1],[-7,6],[-54,46],[-11,13],[-39,62],[-76,35],[-4,2],[-8,3],[-56,75],[-1,1],[-13,20],[-1,2],[43,36],[4,4],[81,81],[15,15],[19,19],[3,2],[16,19],[26,5],[13,27],[-2,27],[-1,24],[24,17],[21,-9],[32,-3],[24,9],[16,17],[10,5],[15,8],[19,13],[30,4],[-11,18],[5,30],[-11,25],[-29,1],[-20,18],[15,16],[20,9],[19,19],[6,25],[21,18],[-1,28],[16,20],[22,6],[24,2],[22,-1],[8,40],[65,314],[8,42],[-1,40],[-11,23],[-13,27],[-12,38],[-9,26],[-10,26],[0,24],[2,26],[-4,32],[7,10],[8,11],[25,16],[8,23],[2,25],[22,14],[18,21],[13,28],[7,22],[16,24],[18,22],[-8,21],[-6,23],[17,20],[25,19],[10,22],[12,22],[16,16],[25,18],[21,15],[29,13],[24,0],[12,41],[19,21],[-6,22],[-11,21],[-20,10],[-8,20],[-4,26],[-12,41],[-11,26],[5,28],[16,19],[5,26],[4,22],[8,20],[-15,17],[-27,13],[-30,7],[-19,10],[-1,25],[0,22],[-13,18],[-21,7],[-25,10],[-9,25],[-3,34],[10,20],[25,23],[17,22],[17,17],[0,24],[19,13],[2,30],[-11,24],[13,19],[-19,19],[-21,11],[-21,22],[-6,25],[-32,13],[-16,18],[24,38],[-20,22],[-23,11],[-23,10],[-19,3],[-13,2],[-25,8],[-32,7],[-25,4],[-25,-2],[-27,-17],[-28,0],[-23,-2],[-25,10],[-27,22],[-13,24],[-27,30],[-25,21],[-21,11],[-19,19],[-23,15],[-32,22],[-29,11],[-27,21],[-17,17],[-17,15],[-27,24],[-27,20],[-19,12],[-34,9],[-13,22],[-16,15],[-49,34],[-35,-6],[-21,-11],[-38,-9],[-21,7],[-23,21],[-11,35],[-8,23],[-15,22],[-23,21],[4,31],[-6,21],[-17,19],[-12,20],[-19,21],[-14,27]],[[40692,89296],[-74,0],[-34,0],[-21,0],[-70,1],[-14,0],[-9,0],[-22,0],[-22,0],[-39,1],[-50,0],[-36,0],[-26,1],[-311,2],[-330,3],[-305,3],[-25,1],[-169,1],[-135,1],[-134,2],[-40,1],[-1,0],[-32,0],[-1,0],[-35,1],[-51,1],[-48,1],[-66,1],[-79,1],[-116,2],[-22,0],[-21,1],[1,67],[0,25],[0,22],[1,77],[-66,3],[-67,2],[-61,2],[-35,2],[-2,-23],[0,-41],[0,-55],[1,-43],[0,-29],[-34,-9],[-24,0],[-70,-1],[-30,1],[-99,1],[-1,0],[-262,4],[-74,1],[-152,3],[-64,1],[-29,0],[-25,0],[-25,1],[-21,0],[-38,1],[-62,1],[-89,1],[-17,0],[-8,0],[-27,3]],[[36975,89338],[3,93],[0,24],[2,45],[3,106],[3,114],[146,0],[87,-1],[4,194],[-11,0],[-223,1],[3,52],[1,30],[1,40],[1,39],[0,5],[1,37],[-226,-2],[-3,61],[-2,57],[-2,26],[-2,50],[-84,-1],[-143,1],[0,36],[0,29],[1,82],[0,65],[0,4],[1,83],[1,123],[0,24],[0,34],[1,75],[1,146],[1,22],[0,40],[-1,31],[-3,104],[-2,82],[-1,66],[0,26],[0,26],[1,70],[0,30],[0,76],[0,23],[-1,100],[-59,0],[-30,0],[-30,0],[-29,0],[-41,1],[-9,35],[-5,38],[-22,12],[-17,26],[14,23],[19,13],[9,22],[-9,21],[-27,19],[-10,21],[-16,19],[-10,31],[9,25],[44,8],[21,9],[0,30],[-10,21],[-2,22],[-5,39],[-2,26],[21,19],[7,23],[22,9],[24,7],[-11,28],[-2,27],[-23,12],[-21,8],[-16,15],[16,15],[-2,32],[-5,24],[-1,24],[6,22],[12,21],[-2,36],[8,24],[13,26],[11,26],[4,26],[-12,25],[-23,20],[-27,4],[-22,22],[-10,21],[8,24],[14,18],[16,23],[26,15],[26,5],[27,-3],[0,33],[-4,34],[0,12],[-1,12],[-14,19],[-19,19],[-19,20],[-20,25],[-3,35],[15,21],[8,31],[-2,30],[-2,25],[4,22],[14,22],[10,23],[16,15],[26,11],[21,26],[23,21],[27,15],[31,0],[28,13],[12,28],[-12,22],[-12,26],[20,15],[19,23],[3,39],[16,17],[21,13],[12,18],[-12,32],[-13,21],[-14,24],[23,35],[27,28],[21,19],[17,19],[-10,28],[-26,24],[2,30],[6,24],[5,26],[-8,28],[1,27],[9,22],[-2,22],[10,23],[21,20],[17,19],[13,19],[4,28],[-7,31]],[[36975,89338],[0,-35],[0,-33],[-1,-27],[0,-24],[3,-66],[-93,-60],[-35,-23],[-3,-2],[-117,-78],[-123,-81],[-18,-12],[-18,-12],[-106,-71],[-123,-81],[-25,-5],[-4,-3],[-58,-33],[-56,-40],[-128,-91],[-21,-15],[-2,-191],[-34,0],[-199,-2],[-3,0],[-148,0],[-84,-1],[-3,31],[5,171],[-209,2],[-61,0],[-141,1],[-52,0],[0,-108],[0,-81],[47,-2],[101,-4],[42,-2],[46,-1],[-1,-194],[-176,2],[-47,0],[-79,-47],[-162,-89],[-19,-11],[-26,-14],[-189,-110],[-40,-22],[-24,7],[-24,-9],[-34,-15],[-36,-15],[-42,1],[-21,-13],[-32,-31],[-34,-13],[-41,-6],[-59,-11],[-35,0],[-1,-13],[35,-42],[36,-86],[-3,-17],[-7,-5],[-6,-3],[-12,-8],[-14,-25],[-28,-36],[-52,-41],[-41,1],[-23,-27]],[[34117,87467],[-23,18],[-51,17],[-27,10],[-30,11],[-22,7],[-53,20],[-35,12],[-8,3],[-17,6],[-116,41],[-46,18],[-17,6],[-25,9],[-24,8],[-153,58],[-62,22],[-94,35],[-105,38],[-59,22],[-47,17],[-101,39],[-90,33],[-89,34],[-28,11],[-25,9],[-23,8],[-32,12],[-92,35],[-13,5],[-97,35],[-193,72],[-177,67],[-48,18],[-98,36],[-77,28],[-34,13],[-91,34],[-11,4],[-45,16],[-25,12],[-24,12],[-41,22],[-165,88],[150,-6],[4,45],[3,35],[-26,1],[-25,1],[-58,3],[-29,2],[-24,1],[3,43],[-89,5],[-36,1],[-37,2],[-39,35],[-28,24],[-77,67],[-73,65],[-141,124],[-58,51],[-28,24],[-170,148],[-39,34],[-46,41],[-113,100],[-26,23],[-26,22],[-141,124],[-84,73],[-80,71],[-96,84],[-78,68],[-91,80],[-30,27],[-25,22],[-18,16],[-118,103],[-16,14],[3,72],[4,133],[3,82],[6,139],[3,77],[2,51],[2,31],[0,33],[1,41],[5,123],[1,22],[5,137],[1,23],[2,65],[3,73],[3,72],[1,44],[2,25],[21,8],[9,28],[3,23],[-5,34],[-27,37]],[[52501,90003],[-58,-46],[-33,-26],[-29,-24],[-61,-49],[-44,-36],[-49,-40],[-20,-16],[-9,-7],[-20,-16],[-7,-6],[-19,-15],[-15,-13],[-2,-1],[-74,-60],[-29,-24],[-31,-26],[-40,-33],[-30,-24],[-61,-51],[-59,-47],[-2,-2],[-39,-31],[-76,-62],[-45,-38],[-47,-38],[-39,-31],[-23,-18],[-48,-38],[-65,-53],[-25,-20],[-26,-21],[-42,-35],[-27,-21],[-73,-60],[-211,-173],[-28,-22],[-6,-5],[-25,-20],[-19,-16],[-3,0],[-77,-3],[-27,-1],[-74,-3],[-46,-2],[-133,-5],[-40,-1],[-61,-3],[-90,-3],[-80,-3],[-36,-1],[-68,-3],[-255,-10],[-61,-2],[-40,-2],[-60,-2],[-110,-4],[-21,-1],[-2,0],[-30,-1],[-32,-1],[-77,-3],[-52,-2],[-44,-2],[-29,-1],[-24,-2],[-26,-1],[-28,-1],[-63,-4],[-110,-5],[-33,-2],[-27,-1],[-94,-4],[-57,-2],[-56,-2],[-102,-5],[-82,-4],[-3,0],[-82,-4],[-119,-5],[-90,-3],[-62,-2],[-43,-2],[-56,-3],[-51,-2],[-115,-5],[-99,-4],[-6,0],[-122,-5],[-162,-7],[-55,-2],[-73,-3],[-21,-1],[-94,-4],[-66,-3],[-33,-2],[-181,-6],[-99,-4],[-106,-4],[-79,-3],[-34,-2],[-33,-12],[-37,-14],[-6,-2],[-193,-71],[-16,-6],[-21,-8],[-49,-18],[-29,-10],[-20,-7],[-25,-9],[-1,0],[-50,-17],[-51,-17]],[[46313,88380],[-27,8],[-28,11],[-37,28],[-31,12],[-23,3],[-33,0],[-21,4],[-23,7],[-34,18],[-20,14],[-20,24],[-19,19],[-63,18],[-33,10],[-56,15],[-56,16],[-81,24],[-30,9],[-37,11],[-75,21],[-111,33],[-26,8],[-27,8],[-27,8],[-97,29],[-38,11],[-172,50],[-42,15]],[[47577,93246],[-3,-8],[-23,-19],[-5,-4],[-28,-17],[-9,-18],[-5,-10],[-4,-24],[28,-36],[5,-6],[24,-11],[19,-2],[13,3],[66,18],[47,8],[26,3],[49,-3],[13,-11],[10,-8],[72,-35],[30,-13],[22,-9],[35,-26],[4,-5],[26,-31],[13,-36],[3,-9],[0,-1],[-2,-10],[16,-40],[4,-4],[8,-11],[5,-6],[11,-9],[26,-3],[4,2],[75,25],[40,6],[39,2],[25,-9],[4,-2],[26,-12],[1,0],[2,-3],[51,-47],[6,-6],[8,-14],[-2,-23],[-1,-15],[5,-31],[5,-7],[13,-17],[19,-26],[126,-131],[28,-30],[21,-3],[4,0],[188,-70],[18,-10],[14,-10],[16,-19],[4,-6],[5,-5],[5,-21],[5,-18],[4,-5],[0,-1],[12,-15],[13,-2],[10,-2],[13,-8],[43,-27],[21,-10],[27,-12],[7,-2],[34,-9],[9,-3],[47,-5],[4,0],[54,-14],[61,-45],[70,-11],[15,-7],[36,-37],[18,-34],[22,-25],[79,-30],[67,-136],[47,-48],[-1,-28],[30,-33],[10,-1],[5,0],[5,-1],[22,-15],[15,-16],[71,-48],[108,-73],[43,-16],[67,-22],[7,-2],[67,-19],[37,0],[39,-2],[126,-8],[111,1],[136,-19],[17,-2],[96,-15],[53,-35],[107,-13],[5,-4],[7,-6],[57,0],[61,17],[95,1],[146,-1],[32,-3],[56,-20],[107,-40],[24,-16],[4,-14],[-52,-26],[-6,-4],[-12,-7],[-38,-8],[-49,-35],[-9,-21],[-9,-75],[21,-29],[93,-27],[121,-19],[12,-5],[9,-9],[0,-6],[0,-3],[1,-13],[17,-23],[-2,-16],[-6,-13],[-11,-10],[-47,-30],[-32,-75],[-6,-25],[24,-26],[12,-7],[19,-2],[14,6],[64,-7],[101,-49],[74,-36],[22,-22],[2,-20],[40,-44],[45,-84],[5,-41],[3,-3],[6,-5],[9,-8],[2,-9],[11,-12],[19,-5],[144,-16],[16,-9],[8,-7],[98,-17],[18,-7],[19,-22],[3,-40],[5,-6],[3,-3],[101,-72],[1,-7],[1,-5],[0,-5],[12,-12],[64,-64],[75,-120],[49,-55],[91,-46],[15,-1],[10,-1],[4,-1],[-6,-13],[-2,-27]],[[19956,90271],[0,-178],[1,-313],[2,-320],[1,-241],[1,-29],[-1,-38],[0,-187],[0,-25],[12,-337],[17,-178],[150,-4],[22,0],[1,-33],[2,-122],[-138,0],[-58,0],[1,-48],[1,-120],[0,-57],[1,-79],[1,-98],[0,-28],[0,-29],[1,-39],[0,-23],[1,-102],[1,-31],[0,-31],[4,-245]],[[19979,87336],[-162,1],[-113,0],[-43,1],[-21,0],[-32,0],[-170,1],[-1,0],[-51,0],[-1,0],[-4,0],[-29,1],[-64,0],[-40,0],[-56,1],[-96,0],[-74,1],[-94,1],[-50,0],[-154,1],[-99,1],[-33,0],[-107,0],[-28,1],[-41,0],[-130,-2],[-2,-87],[0,-150],[-3,-118],[-332,4],[-78,1],[-48,1],[-62,1],[-265,4],[-130,1],[-103,2],[-3,0],[-335,4],[-233,4],[-156,1],[-41,0],[-144,2],[-230,2],[-137,-9],[-68,-4],[-84,-4],[-70,-2],[-100,-4],[-80,-2],[-256,4],[-76,-2],[-80,-1],[-42,-1],[-113,-3],[-125,-3],[-10,24],[0,25],[-38,2],[-420,1],[-16,0],[-21,0],[-121,0],[-72,-1],[-71,1],[-36,0],[-171,3],[-2,0],[-52,0],[-5,0],[-158,2],[-7,-82],[-8,-113],[-10,-123],[-351,4],[-5,236],[-2,52],[-46,-1],[-140,-1],[-3,-78],[-3,-57],[-2,-142],[-33,-1],[-69,-3],[-105,-2],[7,94],[6,77],[-78,3],[-36,-1],[-1,0],[-96,0],[-135,-1]],[[12580,86903],[-239,-3],[-37,-1],[-17,-13],[-17,-13],[-22,5],[-45,9],[-3,1],[-14,19],[-27,12],[-25,16],[2,95],[1,25],[-36,2],[-59,0],[-6,36],[-24,0],[-117,0],[-21,0],[-4,0],[-47,0],[-122,0],[-51,1],[-232,-1],[-31,0],[-126,-1],[-103,0],[-51,0],[-71,0],[-156,0],[-52,8],[-85,20],[-104,24],[-12,2],[-67,7],[-36,-2],[-2,1],[-19,9],[-2,3],[-19,37],[-2,4],[-6,8],[-19,45],[-17,42],[0,7],[0,4],[3,38],[6,45],[6,8],[5,5],[2,5],[71,45],[43,48],[33,29],[10,9],[5,-1],[6,0],[81,17],[59,12],[20,4],[9,5],[27,13],[16,8],[-6,6],[-2,5],[-11,29],[-32,81],[1,4],[0,9],[-60,158],[-13,23],[-15,28],[-1,0],[-28,51],[-55,-14],[-6,5],[-27,20],[-6,4],[-13,15],[-2,18],[-3,18],[11,24],[10,6],[13,2],[6,1],[6,4],[4,7],[-1,15],[-51,82],[-12,15],[-20,13],[-86,87],[-31,36],[-53,62],[182,15],[112,1],[117,1],[30,0],[13,24],[0,54],[-1,139],[-1,495],[-2,75],[2,150],[1,83],[1,375],[0,168],[1,125],[174,4],[97,3],[285,6],[-4,190],[-9,243],[0,101],[-1,100],[0,63],[-107,3],[1,104],[1,111],[1,46]],[[34117,87467],[-24,5],[-5,-13],[-1,-3],[-30,-8],[-19,-4],[-32,-42],[-11,-36],[0,-30],[16,-14],[6,-6],[25,-5],[27,4],[6,-6],[6,-5],[48,-18],[70,-89],[53,-15],[9,-15],[5,-53],[-3,-20],[-14,-25],[-39,-27],[-6,-11],[-4,-6],[-3,-90],[-34,-43],[-5,-31],[-57,-32],[-32,-32],[-27,-19],[-17,-12],[-13,-44],[-3,-36],[65,-25],[9,-1],[23,-4],[19,5],[13,-16],[-2,-7],[-1,-5],[-2,-8],[-9,-26],[-24,-62],[2,-14],[3,-19],[1,-12],[5,-56],[3,-40],[10,-25],[9,-20],[35,-47],[13,-35],[-43,-41],[-13,-7],[-47,-27],[0,-37],[39,-15],[57,-3],[13,-21],[7,-24],[14,-36],[34,-50],[14,-19],[8,-25],[6,-12],[100,-115],[27,-30],[43,8],[35,17],[2,0],[36,-3],[14,-17],[15,-19],[47,-149]],[[34589,85644],[-41,0],[-13,0],[-14,1],[-48,0],[-73,1],[-21,0],[-27,0],[-43,0],[-74,1],[-96,1],[-22,0],[-22,0],[-29,0],[-38,0],[-70,1],[-64,0],[-161,1],[-44,0],[-125,0],[-177,0],[-38,0],[-26,0],[-23,0],[-50,1],[-62,0],[-97,0],[-66,-1],[-40,0],[-24,0],[-55,1],[-31,0],[-23,0],[-22,0],[-68,0],[-36,0],[-208,1],[-4,0],[-30,0],[-33,0],[-65,0],[-92,1],[-1,0],[-25,0],[-170,1],[-28,0],[-82,0],[-30,1],[-32,0],[-63,0],[-178,1],[-65,0],[-179,0],[-163,1],[-22,0],[-26,0],[-2,0],[-108,1],[-75,1],[-70,0],[-43,0],[-34,0],[-119,1],[-36,0],[-53,0],[-72,0],[-45,0],[-96,0],[-194,1],[-73,0],[-223,2],[-70,0],[-67,0],[-21,0],[-48,0],[-105,1],[-33,0],[-69,0],[-27,0],[-67,0],[-113,1],[-43,0],[-159,1],[-87,1],[-54,0],[-68,0],[-66,0],[-374,2],[-40,0],[-59,-1],[-72,1],[-27,0],[-46,0]],[[28272,85669],[0,28],[3,207],[0,41],[1,38],[0,42],[1,91],[1,55],[0,61],[-1,117],[0,25],[1,79],[0,22],[-1,24],[3,32],[2,37],[0,37],[0,27],[1,25]],[[28283,86657],[2,205],[1,21],[0,122],[1,28],[0,26],[0,25],[0,35],[1,67],[0,41],[0,101],[1,56],[0,24],[0,6],[1,47],[1,53],[0,34],[1,141],[0,205],[2,111],[0,23],[0,35],[1,63],[0,53],[1,69],[0,82],[0,43],[1,50],[1,63],[0,28],[-39,0],[-26,0],[-75,1],[-23,0],[-23,0],[-76,1],[-25,1],[-23,0],[-60,0],[-56,1],[-22,0],[-47,1],[-32,0],[-21,0],[-48,0],[-33,1],[-39,0],[-27,0],[-26,1],[-35,0],[-29,1],[-28,0],[-33,0],[-59,1],[-38,0],[-25,0],[-25,1],[-30,0],[-23,0],[-59,1],[-81,1],[-28,0],[-22,0],[-57,0],[-26,1],[-8,25],[-13,42],[-15,48],[-19,61],[-10,31],[-17,52],[-59,185],[-9,29],[-19,60],[-41,127],[-29,94],[-59,187],[-25,79],[-8,25],[-16,52],[-19,61],[-16,49],[-31,100],[-8,25],[-7,24],[-20,62],[-27,84],[-19,61],[-3,10],[-23,73],[-8,23],[-11,36],[-6,30],[0,45],[0,28],[1,60],[1,23],[0,82],[0,25],[0,43]],[[10439,91099],[-14,-31],[-11,-23],[-12,-26],[-4,-28],[-19,-28],[-13,-17],[-15,-26],[-16,-24],[-17,-30],[-15,-26],[-12,-28],[-2,-30],[-3,-24],[-20,-24],[-13,-22],[-23,-59],[-13,-24],[-15,-23],[-12,-22],[-6,-21],[-11,-26],[-8,-24],[-9,-32],[-10,-22],[-9,-21],[-14,-26],[-11,-24],[-4,-26],[-17,-30],[-12,-19],[-11,-20],[-17,-25],[-16,-35],[-21,-30],[-17,-24],[-13,-21],[-6,-24],[-17,-30],[-17,-24],[-19,-19],[-12,-24],[-17,-21],[-12,-28],[-15,-24],[-21,-31],[-17,-29],[-15,-17],[-14,-20],[-17,-23],[-15,-22],[-17,-28],[-12,-24],[-18,-24],[-14,-27],[-21,-30],[-12,-20],[-17,-21],[-9,-26],[-10,-30],[-19,-24],[-19,-28],[-6,-30],[-11,-24],[-14,-30],[-11,-26],[-8,-26],[-4,-21],[-5,-24],[-8,-36],[-8,-24],[-9,-22],[-10,-21],[-9,-22],[-23,-30],[-12,-17],[-28,-31],[-28,-53],[-14,-48],[-11,-25],[-15,-30],[-11,-34],[-12,-68],[-12,-42],[-7,-30],[-6,-26],[3,-37],[-10,-41],[-26,-72],[-4,-28],[-17,-34],[-19,-41],[-16,-54],[-23,-52],[-14,-34],[-9,-30],[-15,-33],[-20,-43],[-11,-36],[-8,-24],[-16,-26],[-18,-23],[-22,-23],[-49,-76],[-31,-40],[-15,-25],[-11,-32],[-14,-36],[-9,-24],[-1,-42],[-29,-26],[-5,-29],[-123,-25],[-109,-22],[-56,-12],[-150,-31],[-31,-14],[-19,-20],[-3,-3],[-17,-16],[-62,2],[-136,3],[-17,-16],[4,-47],[2,-36],[-4,-47],[-32,-1],[-36,-3],[-29,-20],[-36,-12],[-22,-8],[-2,-112],[-234,0],[-14,0],[-11,0],[-80,0],[-53,-2],[-5,0],[-1,-71],[-1,-43],[0,-39],[-123,-3],[-38,0],[-2,-139],[-34,-4],[-9,19],[-31,-2],[-29,-6],[-21,-11],[-25,-16],[-25,-7],[-19,-12],[-37,-27],[-27,5],[-26,0],[-28,-15],[-15,-28],[-14,-27],[-21,-9],[-21,-7],[-21,3],[-25,-9],[-37,-12],[-30,-8],[-24,2],[-42,-23],[-21,-12],[-22,-16],[-18,-17],[-29,-24],[-26,4],[-22,-11],[-24,-15],[-26,-8],[-36,-3],[-29,-8],[-59,-22],[-25,-2],[-21,-10],[-31,-15],[-46,-5],[-32,1],[-36,-23],[-17,-17],[-21,-13],[-45,-13],[-24,0],[-26,-14],[-19,-12],[-29,-16],[-44,-10],[-27,-16],[-41,-11],[-19,-17],[-26,-10],[-24,-15],[-40,-12],[-31,-5],[-26,2],[-32,-15],[-38,-13],[-25,-13],[-41,-20],[-19,-13],[-20,-10],[-42,-16],[-38,-19],[-20,-11],[-23,-18],[-24,-29],[-21,-38],[-16,-42],[-70,-71],[-31,-17],[-64,-75],[-47,-56],[-13,-19],[-50,-103],[-21,-24],[-15,-17],[-23,-15],[-68,-72],[-55,-57],[-35,-4],[-21,-19],[-65,-142],[-32,-49],[-32,-41],[4,-26],[-57,-63],[-18,-18],[-16,-89],[-35,-29],[-7,-49],[-12,-34],[-20,-38],[-24,-30],[-24,-22],[-14,-25],[-8,-20],[-29,-44],[-20,-36],[9,-51],[23,-15],[49,-30],[11,-31],[-8,-25],[-14,-20],[-27,-21],[-48,-51],[-45,-57],[-46,-68],[-186,0],[-21,0],[-65,1],[-632,2],[-57,1],[-43,1],[-86,-1],[-71,0],[-173,1],[-133,0],[-104,1]],[[3000,84619],[-16,80],[-6,31],[-6,32],[-25,125],[-24,120],[-40,214],[0,1],[-14,74],[-41,220],[-1,4],[-75,350],[-9,44],[-77,369],[-50,245],[-25,120],[-60,285],[-18,83],[-23,111],[-45,213],[-27,125],[-35,158],[-68,315],[-49,221],[-22,104],[-31,139],[-5,30],[-8,30],[-13,60],[-8,41],[-15,72],[-8,34],[-5,20],[-6,25],[-32,167],[-7,27],[-7,36],[-6,27],[-15,73],[-7,33],[-6,26],[-13,64],[-12,52],[-16,45],[-14,80],[-5,28],[-13,44],[-12,71],[-6,22],[-11,36],[-5,39],[-5,26],[-19,76],[-4,14],[-11,40],[-5,22],[-14,84],[-1,3],[-6,33],[-21,120],[-23,132],[-21,97],[-11,51],[-7,31],[-17,82],[-6,27],[-5,21],[-24,111],[-44,205],[-57,265],[-17,79],[-5,24]],[[12580,86903],[0,-24],[0,-40],[2,-101],[0,-43],[0,-17],[0,-36],[1,-114],[-1,-63],[1,-63],[0,-2],[1,-31],[1,-49],[1,-80],[4,-211],[1,-104],[-38,0],[-33,0],[-304,1],[0,-60],[0,-47],[-1,-42],[0,-90],[0,-1],[-3,-141],[-1,-75],[7,-134],[0,-36],[-6,-24],[1,-93],[0,-50],[1,-110],[-1,-80],[-6,-467],[-1,-77],[0,-34],[-2,-150],[0,-35],[-2,-166],[-2,-153],[-2,0],[0,-10],[-3,-93],[0,-8],[0,-25],[6,-678],[-51,-3],[-386,8],[-3,-82],[-2,-51],[0,-1],[-2,-71],[0,-38],[-6,-310],[0,-88],[0,-54],[0,-151],[0,-113],[0,-32],[0,-30],[-5,-179],[-1,-66],[-2,-56],[-5,-192],[-1,-35],[-7,-356],[-1,-54],[-2,-93],[-2,-66],[-1,-53],[-7,-352]],[[11717,80529],[-284,2],[-64,0],[-91,0],[-93,1],[-153,1],[-55,0],[-22,0],[-104,1],[-65,0],[-198,1],[-163,-5],[-68,-1],[-21,1],[-51,2],[-114,4],[-29,-10],[-2,-27],[-3,-27],[-1,-10],[0,-24],[-2,-104],[0,-13],[-1,-21],[-2,-57],[-52,2],[-22,0],[-342,3],[-169,1],[-24,0],[-31,0],[-96,1],[0,58],[0,1],[1,96],[2,141],[-196,2],[-38,0],[-37,0],[-87,1],[-21,0],[-30,1],[-30,0],[-86,1],[-161,1],[-40,1],[-39,0],[-38,0],[-139,2],[-130,0],[-33,0],[1,29],[-1,29],[-139,1],[-233,3],[-46,0],[-71,1],[-1,0],[-84,0],[-33,0],[-45,0],[-195,1],[-89,1],[-63,1],[-2,-87],[-4,-202],[-1,-76],[-2,-99],[-108,1],[-132,1],[-290,4],[-103,0],[-1,0],[-56,0],[-142,2],[-145,1],[-16,0],[-136,2],[-263,4],[-34,1],[-179,3],[-146,2],[-189,3],[-5,0],[-31,-1],[-22,1],[-183,3],[-113,3],[-104,-1],[-12,0],[-43,-4],[-516,6],[-55,0],[-75,1],[-93,2],[-67,1],[-91,0],[-88,1]],[[3847,80193],[-10,55],[0,2],[-91,490],[-4,22],[-21,116],[-7,39],[-27,229],[-63,311],[-10,50],[-31,147],[-42,212],[-13,64],[-31,160],[-75,383],[-19,97],[-9,43],[-13,50],[-5,50],[-4,25],[-3,18],[-4,17],[-5,30],[-9,40],[-11,58],[-15,74],[-27,139],[-75,383],[-47,234],[-8,43],[-6,29],[-11,46],[-1,2],[-6,46],[-21,101],[-36,176],[-5,24],[-7,26],[-1,30],[-13,65],[-44,215],[-17,85]],[[28283,86657],[-305,-2],[-121,0],[-122,-1],[-176,0],[-240,0],[-143,-1],[-41,0],[-115,0],[-110,0],[-148,0],[-98,0],[-66,-1],[-162,0],[-32,0],[-8,0],[-117,0],[-184,0],[-82,-1],[-29,0],[-57,0],[-23,0],[-38,0],[-28,0],[-32,0],[-44,0],[-28,0],[-41,-1],[-30,0],[-35,0],[-31,0],[-61,-1],[-35,0],[-21,0],[-21,0],[0,-27],[2,-63],[0,-30],[-4,-39],[-1,0],[-11,0],[-24,0],[-27,0],[-94,0],[-23,-1],[-2,39],[1,23],[1,33],[0,24],[1,37],[-81,0],[-155,1],[-19,0],[-55,0],[-42,0],[-29,0],[-50,0],[-68,2],[0,22],[0,118],[0,18],[-199,2],[-125,2],[-45,0],[-5,-166],[-134,-1],[-125,1],[-179,1],[-144,1],[-64,0],[-53,1],[-1,0],[-141,1],[-129,1],[-221,1],[-198,3],[-45,1],[-246,1],[-47,0],[-6,0],[-113,1],[-1,0],[-226,2],[-22,0],[-320,3],[-210,2],[-109,1],[-119,1],[-23,0],[-48,1],[-21,36],[0,56],[-2,381],[-2,188],[-105,0],[-84,0],[-30,0],[-31,0],[-215,-1],[-23,0],[-61,0],[-71,0],[-133,0],[-92,0],[-38,0],[-51,1],[-57,1],[-42,0],[-130,2],[-27,1],[-58,1],[-144,2],[-51,1],[-34,1]],[[53590,89082],[-24,-43],[-15,-28],[-25,-48],[-7,-12],[-20,-37],[-19,-37],[-15,-29],[-19,-35],[-15,-29],[-81,-152],[-10,-19],[-2,-3],[-104,-196],[-1,-2],[-22,-64],[-51,-74],[-27,-51],[-53,-100],[-24,-44],[-31,-58],[-41,-77],[-45,-86],[-23,-42],[-46,-87],[-8,-14],[-39,-75],[-14,-29],[-18,-31],[-13,-24],[-31,-58],[-51,-108],[-19,-109],[-4,-23],[-7,-46],[-8,-39],[-6,-33],[-6,-34],[-17,-100],[-8,-40],[-10,-59],[-4,-21],[-9,-52],[-1,-4],[-4,-27],[-7,-38],[-20,-111],[-8,-46],[-6,-30],[-14,-75],[-4,-22],[-13,-74],[-12,-72],[-15,-85],[-4,-23],[-4,-24],[-5,-27],[-14,-78],[-1,-4],[-4,-25],[-5,-29],[-4,-25],[-7,-43],[-5,-31],[-8,-52],[-2,-14],[16,3],[11,1],[83,17],[36,7],[111,21],[-21,-132],[-9,-60],[-6,-34],[-5,-34],[-16,-101],[-9,-52],[-9,-56],[-23,-140],[-13,-82],[-4,-26],[-5,-29],[-15,-102],[-6,-31],[-16,-96],[-4,-28],[-6,-32],[-5,-30],[-10,-67],[-4,-25],[-16,-99],[-6,-36],[0,-3],[-4,-19],[-4,-28],[-4,-23],[-8,-50],[-8,-50],[-1,-1],[-16,-14],[-31,-22],[-12,-8],[-18,-14],[-71,-54],[-7,-6]],[[52296,84340],[-49,-30],[-39,-23],[-157,-97],[-66,-39],[-78,-46],[-140,-86],[-140,-83],[-60,-36],[-75,-46],[-126,-75],[-77,-47],[-45,-27],[-24,-15],[-32,-19],[-1,-2],[-12,-12],[-6,-4],[-14,-2],[-3,-2],[-49,-29],[-51,-30],[-3,1],[-3,3],[-40,17],[-16,4],[-28,1],[-43,-1],[-10,0],[-4,1],[-13,3],[-9,4],[-17,6],[-2,2],[-126,59],[-32,11],[-23,10],[-6,2],[-24,10],[-12,8],[-28,18],[-7,4],[-27,18],[-4,3],[-22,-3],[-27,-4],[-50,5],[-10,1],[-6,2],[-16,12],[-8,5],[-6,3],[-13,1],[-13,-3],[-34,-20],[-12,-9],[-22,-18],[-42,-33],[-29,-2],[-19,1],[-41,-7],[-25,27],[-9,9],[-3,2],[-30,14],[-1,1],[-17,2],[-92,-22],[-6,-8],[0,-2],[-3,-16],[-17,-6],[-1,0],[-2,-1],[-30,-5],[-96,50],[-28,7],[-121,32],[-3,1],[-16,3],[-1,0],[-15,-6],[-15,-14],[-12,-11],[1,-14],[0,-1],[2,-4],[23,-50],[0,-32],[-27,-3],[-29,-3],[-15,3],[-26,12],[-7,17],[-13,11],[-59,24],[-2,1],[-78,5],[-11,-1],[-4,-3],[-2,-6],[-2,-10],[-1,-6],[-1,-7],[-5,3],[-1,1],[-17,10],[-4,5],[-4,25],[1,16],[0,2],[-1,5],[-4,2],[-7,4],[-21,7],[-38,6],[-16,1],[-13,1],[-3,0],[-40,-2],[-25,-4],[-88,-5],[-18,0],[-14,6],[-23,20],[-15,8],[-9,4],[-7,2],[-16,3],[-15,0],[-20,1],[-19,0],[-34,-7],[-14,27],[-32,65],[-14,27],[-6,3],[-6,2],[-12,0],[-26,-7],[-36,-1],[-44,-2],[-27,-2],[-47,-13],[-5,-1],[-12,2],[-13,10],[-49,84],[-1,28],[-3,9],[-47,55],[-13,11],[-1,1],[-2,1],[-15,6],[-76,33],[-1,-1],[-16,-2],[-32,-6],[-77,-39],[-22,-18],[-18,-22],[-9,-5],[-34,-17],[-13,-6],[-10,-6],[-4,1],[-20,3],[-4,9],[-2,1],[-2,1],[-65,-6],[-14,-21],[-3,-21],[-11,-23],[15,-22],[-10,-19],[-19,-10],[-23,-14],[-29,-9],[-31,0],[-19,-10],[-31,-27],[-21,-13],[-26,-18],[-23,-16],[-23,10],[-22,-1],[-23,-5],[-22,-15],[-14,-17],[-32,-30],[-15,-20],[-4,-24],[-11,-21],[-25,-43],[-19,-26],[-23,-24],[-18,-18],[-25,-12],[-24,-4],[-34,-5],[-28,-3],[-27,-8],[-22,-5],[-13,-22],[-8,-29],[-7,-24],[-12,-22],[-13,-19],[-19,-23],[-26,-25],[-14,-23],[-6,-26],[-25,-18],[10,-20],[18,-17],[-50,2],[-33,-2],[-21,1]],[[47230,83273],[-2,25],[18,62],[29,63],[16,31],[7,22],[11,19],[15,20],[19,15],[15,20],[28,23],[22,11],[26,-1],[24,6],[19,21],[-5,31],[-9,52],[-8,47],[17,23],[25,24],[16,17],[8,24],[-4,22],[-3,21],[19,34],[10,24],[10,22],[7,24],[4,24],[13,30],[5,24],[4,24],[-9,24],[-16,25],[-18,20],[-18,18],[-32,37],[-91,105],[-17,19],[-50,57],[-15,18],[-17,20],[-24,27],[-23,27],[-20,22],[-38,45],[-29,33],[-20,24],[-45,51],[-24,28],[-41,47],[-36,40],[-25,28],[-16,20],[-14,16],[-39,44],[-60,67],[-37,42],[-38,46],[-15,17],[-20,22],[-16,18],[-27,31],[-29,33],[-3,3],[-77,89],[-33,37],[-39,45],[-27,31],[-30,33],[-49,56],[4,33],[1,4],[7,56],[8,58],[7,46],[3,26],[8,57],[3,25],[7,50],[5,39],[4,28],[5,35],[21,159],[5,38],[8,64],[9,64],[28,203],[0,7],[9,62],[8,47],[0,4],[3,18],[6,44],[4,26],[6,46],[4,29],[5,36],[4,27],[4,27],[17,41],[6,33],[13,19],[11,22],[0,38],[0,37],[0,1],[0,34],[1,110],[1,84],[2,142],[1,62],[1,60],[0,143],[-4,65],[-4,7],[-7,15],[-18,17],[-18,24],[-13,23],[-1,3],[-14,22],[-13,18],[-7,33],[-9,25],[-6,26],[-7,22],[-5,27],[-35,70],[-18,36],[-24,49],[-11,23],[-21,43],[-14,28],[-24,49],[-48,99],[-14,30]],[[52501,90003],[48,-11],[44,-48],[12,-7],[35,-4],[137,17],[105,-9],[24,-17],[88,-99],[-5,-21],[-2,-5],[-1,-7],[-11,-85],[-1,-15],[0,-2],[-12,-60],[27,-31],[45,-24],[25,-27],[8,-12],[14,-56],[7,-55],[36,-56],[67,-70],[12,-7],[34,-12],[38,-5],[64,15],[43,25],[34,10],[23,-3],[11,-17],[7,-10],[3,-4],[60,-71],[-17,-79],[4,-17],[83,-42]],[[41763,87748],[-24,-19],[-6,-4],[-7,-8],[-7,-10],[-26,-32],[-15,-23],[-79,-115],[-40,-56],[-2,-3],[-3,-2],[-13,-8],[-15,-10],[-195,-61],[-91,-19],[-21,-11],[-21,-13],[-14,-17],[-21,-47],[1,-42],[-13,-31],[-5,-7],[-8,-14],[-4,-6],[-26,-20],[-37,-21],[-73,-32],[-34,-16],[-24,-18],[-23,-41],[-2,-5],[-6,-17],[-59,-124],[-2,-8],[-21,-19],[-7,-51],[-1,-38],[0,-3],[9,-78],[2,-57],[-7,-29],[-19,-24],[-24,-26],[-15,-26],[-3,-31],[-9,-23],[-17,-21],[-25,-28],[-1,-29],[-14,-20],[-23,-15],[-22,-8],[-22,-12],[0,-25],[12,-20],[41,-35],[30,-75],[37,-52],[60,-28],[22,3],[30,-8],[18,-11],[29,-44],[18,-14],[18,-13],[22,-19],[20,-20],[20,-24],[5,-21],[-13,-38],[5,-54],[30,-44],[12,-28],[6,-32],[9,-30],[12,-23],[9,-26],[1,-31],[-18,-86],[-12,-35],[-3,-23],[0,-32],[-6,-27],[-1,-25],[3,-24],[10,-22],[6,-9],[7,-10],[49,-50],[24,-26],[14,-21],[9,-20],[22,-23],[19,-18],[30,-20],[34,-21],[20,-13],[10,-6],[10,-7],[18,-11],[38,-24],[18,-12],[21,-11],[32,-3],[21,-1],[42,-3],[26,-1],[16,-5],[16,-4],[16,-21],[2,-15],[2,-14],[-12,-22],[-6,-35],[21,-20],[21,-24],[25,-32],[36,-53]],[[41662,84809],[-1,0],[-72,-61],[-26,-23],[-119,-102],[-21,-18],[-30,-27],[-180,-158],[-257,-224],[-121,-105],[-10,-9],[-196,-171],[-60,-52],[-3,-3],[-21,-18],[-66,-56],[-22,-19],[-129,-113],[-30,-26],[-28,-25],[-26,-22],[-27,-23],[-20,-17],[-21,-19],[-31,-27],[-19,-17],[-33,-29],[-33,-29],[-11,-9],[-26,-23],[-145,-126],[-43,-38],[-44,-38],[-100,-87],[-68,-61],[-74,-64],[-2,-1],[-189,-165],[-25,-22],[-136,-119],[-18,-16],[-24,-21],[-68,-59],[-67,-59],[-26,-22],[-24,-21],[-33,-28],[-20,-17],[-20,-18],[-22,-19],[-58,-50],[-2,-3],[-107,-92],[-178,-156],[-66,-57],[-21,-18],[-1,-1],[-30,-26],[-45,-40],[-51,-43],[-85,-75],[-43,-37],[-88,-77],[-151,-131],[-20,-18],[-21,-18],[-22,-19],[-23,-20],[-17,-15],[-17,-15],[-19,-16],[-21,-18],[-28,-25],[-50,-43],[-146,-127],[-46,-45]],[[37519,81198],[-7,0],[-4,-4],[-21,-13],[-1,0],[-14,-5],[-41,-29],[-74,-43],[-44,-26],[-1,0],[-39,-23],[-111,-66],[-167,-100],[-27,-16],[-145,-86],[-56,-34],[-108,-65],[-193,-114],[-29,3],[-56,21],[-63,23],[-24,9],[-25,9],[-62,23],[-69,25],[-62,23],[-81,29],[-35,13],[-21,8],[-76,29],[-32,12],[-31,11],[-21,8],[-33,12],[-264,99],[-102,38],[-101,37],[-100,37],[-50,18],[-91,34],[-30,10],[-21,7],[-32,11],[-61,22],[-27,10],[-27,10],[-29,11],[-23,8],[-33,12],[-82,30],[-135,50],[-4,1],[-39,15],[-22,8],[-3,1],[-40,15],[-39,14],[-31,12],[-33,12],[-35,13],[-36,13],[-12,4],[-15,6],[-49,18],[-38,14],[-23,8],[-37,14],[-22,8],[-22,8],[-39,15],[-39,14],[-14,4],[-16,6],[-34,12],[-33,12],[-26,8],[-22,9],[-22,8],[-36,13],[-24,9],[-35,13],[-9,3],[-25,9],[-25,10],[-27,10],[-23,9],[-34,13],[-46,17],[-23,8],[-60,22],[-27,10],[-76,27],[-25,9],[-23,9],[-26,9],[-21,8],[-42,15],[-24,9],[-22,8],[-33,12],[-31,11],[-56,20],[-75,27],[-25,9],[-23,9],[-53,19],[-48,17],[-91,33],[-26,10],[-150,54],[-159,58]],[[32370,82067],[-88,81],[16,80],[51,41],[23,36],[4,25],[24,71],[59,116],[9,37],[81,52],[109,53],[61,-7],[61,11],[40,13],[81,53],[48,1],[40,7],[116,34],[45,22],[55,20],[113,-214],[59,-22],[24,-8],[47,-3],[39,8],[24,7],[31,12],[25,16],[20,23],[15,23],[19,12],[29,4],[39,-10],[1,0],[25,-14],[30,-12],[21,-8],[40,-3],[29,5],[32,10],[33,15],[18,13],[26,26],[39,42],[20,22],[11,24],[11,25],[16,20],[17,28],[9,28],[12,42],[19,52],[9,22],[14,26],[13,19],[18,15],[26,3],[33,-2],[24,1],[27,2],[38,9],[34,8],[28,7],[22,14],[16,26],[7,25],[21,32],[7,22],[-8,24],[-39,8],[-37,-4],[-20,5],[-19,11],[-15,19],[-25,43],[-4,24],[9,25],[16,15],[29,15],[31,15],[85,31],[37,12],[25,11],[21,14],[22,22],[31,24],[38,24],[18,12],[21,14],[22,11],[43,19],[19,11],[17,21],[8,35],[0,37],[-8,34],[-10,30],[-9,31],[-16,33],[-2,2],[-19,16],[-18,17],[-15,42],[5,48],[11,36],[12,25],[23,41],[13,25],[0,2],[-2,25],[-20,27],[-14,15],[-10,10],[-1,1],[-19,20],[-9,23],[6,23],[4,6],[8,12],[19,16],[18,11],[31,15],[28,11],[41,20],[24,13],[32,20],[28,15],[22,8],[26,5],[28,4],[26,4],[24,8],[19,10],[29,19],[45,22],[31,6],[26,2],[22,3],[24,8],[15,23],[9,29],[4,22],[6,35],[3,16],[2,12],[-10,29],[-20,21],[-19,18],[-10,20],[-30,15],[-27,13],[-21,-14],[8,-34],[9,-30],[2,-25],[-10,-20],[-19,-10],[-24,12],[-20,32],[-4,34],[1,45],[-6,28],[-25,43],[5,26],[18,13],[41,14],[26,0],[14,18],[-10,22],[-32,12],[-28,7],[-39,6],[-17,-1],[-16,0],[-32,-13],[-15,-25],[1,-22],[14,-48],[-2,-35],[-20,-18],[-11,3],[0,3],[4,24],[-27,49],[-38,92],[-1,13],[-1,102],[-2,92],[-29,12],[-43,39],[-20,20],[-16,16],[-57,58],[-5,13],[2,17],[20,72],[-6,8],[-3,4],[6,16],[18,19],[26,9],[42,3],[22,5],[14,17],[-15,21],[-5,22],[11,26],[13,22],[-17,21],[-21,8],[-40,7],[-27,4],[-25,1],[-25,4],[-27,17],[-33,14],[-30,34]],[[59419,84685],[-21,-14],[-27,-22],[-26,-18],[-31,-8],[-27,-8],[-32,-15],[-20,-10],[-29,-15],[-24,0],[-32,7],[-22,-4],[-34,-10],[-29,-8],[-37,-12],[-22,-22],[-22,-13],[-26,-12],[-26,-18],[-23,-9],[-21,-8],[-28,-9],[-31,0],[-48,0],[-26,-8],[-37,-15],[-21,-9],[-51,0],[-24,-2],[-38,-12],[-36,-12],[-94,-54],[-18,-12],[-18,-16],[-39,-35],[-41,-11],[-25,-4],[-35,-7],[-46,-11],[-23,-1],[-35,3],[-23,3],[-31,4],[-24,1],[-33,-5],[-27,-12],[-112,-54],[-66,-32],[-30,-10],[-48,-12],[-110,-29],[-55,-13],[-54,-15],[-51,-13],[-5,-1],[-2,0],[-77,-19],[-27,-8],[-188,-50],[-120,-32],[-117,-31],[-39,-10],[-43,-11],[-99,-26],[-24,-7],[-12,-3],[-60,-15],[-45,-12],[-49,-13],[-35,-10],[-120,-31],[-88,-60],[-49,-34],[-1,-1],[-109,-75],[-93,-65],[-57,-39],[-148,-103],[-91,-63],[-99,-69],[-33,-23],[-23,-16],[-116,-79],[-67,18],[-38,10],[-49,13],[-151,-93],[-27,-16],[-71,-45],[-63,-40],[19,-18],[-27,-3],[-27,8],[-26,8],[-23,12],[-20,20],[-25,20],[-66,37],[-31,14],[-25,13],[-19,12],[-19,12],[-32,31],[27,17],[18,12],[23,17],[41,29],[23,16],[34,23],[-118,69],[-60,35],[-27,14],[-23,13],[-21,4],[-63,11],[-4,1],[-285,54],[-37,7],[-89,-15],[-85,-14],[-65,-11],[-196,-32],[-5,0],[-188,-31],[-74,-12],[-12,-2],[-81,-14],[-7,-2],[-25,-7],[-81,-23],[-176,-50],[-59,-17],[-32,-9],[-21,-6],[-23,-6],[-22,22]],[[53041,83264],[-44,48],[-22,22],[-21,22],[-15,16],[-31,33],[-59,63],[-66,69],[-30,32],[-31,32],[-44,47],[-57,59],[-45,48],[-19,20],[-77,81],[-10,10],[-100,104],[-93,96],[-26,26],[-4,4],[6,41],[6,28],[7,34],[5,26],[3,36],[4,23],[7,24],[11,32]],[[53590,89082],[6,-74],[75,-20],[26,-17],[11,-12],[66,-37],[36,-6],[43,3],[8,5],[4,2],[18,10],[39,-4],[132,-29],[34,-25],[1,0],[104,-37],[58,-7],[44,-10],[87,-59],[65,-43],[43,-20],[24,-11],[72,-34],[32,-4],[61,43],[83,23],[18,11],[30,17],[34,28],[31,30],[26,25],[75,22],[46,22],[48,-6],[53,8],[52,18],[11,4],[78,43],[40,6],[71,-8],[54,-44],[45,-5],[42,-43],[55,-42],[17,-10],[64,-10],[13,1],[21,6],[43,27],[99,87],[1,5],[44,28],[99,29],[48,-6],[147,-36],[42,-42],[-1,-6],[30,-33],[32,-11],[103,39],[103,34],[57,12],[23,-2],[6,-7],[8,-8],[9,-2],[3,1],[25,6],[28,3],[29,5],[24,5],[22,-2],[53,-23],[20,-13],[21,-13],[23,-14],[25,-12],[21,-9],[1,-3],[66,-30],[57,-9],[11,-12],[0,-3],[69,-76],[7,-14],[9,-42],[0,-41],[39,-78],[50,-55],[45,-19],[44,-32],[65,-75],[17,0],[44,-8],[90,-24],[37,-12],[25,-27],[-6,-35],[-19,-20],[-2,-48],[-1,-6],[43,-54],[12,-26],[-19,-55],[-8,-50],[11,-32],[55,-63],[-13,-75],[-7,-119],[44,-48],[40,-16],[44,-27],[38,-45],[18,-266],[-53,-299],[41,-64],[12,-9],[164,-183],[17,-35],[6,-23],[-1,-67],[-33,-201],[17,-29],[25,-68],[8,-105],[99,-109],[19,-8],[175,-20],[77,34],[64,41],[2,1],[41,-5],[13,-6],[2,-1],[40,-45],[4,-4],[28,-22],[47,-36],[25,-12],[11,-6],[30,-12],[25,-10],[10,-10],[61,-57],[2,-2],[3,-2],[31,-17],[67,-36],[31,-35],[4,-4],[9,-10],[66,-89],[38,-67],[-1,-60],[40,-108],[19,-51],[19,-50],[3,-15],[10,-51],[21,-127],[6,-20],[21,-30],[13,-20],[32,-42],[60,-89],[10,-37],[0,-1],[-3,-20],[6,-22],[4,-11],[19,-41],[7,-27],[1,-4],[3,-3],[123,-143]],[[47230,83273],[-36,-8],[-29,-1],[-23,-18],[4,-25],[1,-22],[-8,-33],[-25,-33],[-19,-12],[-23,-14],[-21,-9],[-9,-19],[-13,-37],[-5,-28],[-15,-17],[-19,-17],[-23,-8],[-20,-7],[-33,-2],[-25,-17],[-14,-20],[-7,-21],[-25,-18],[-34,-3],[-26,-1],[-26,7],[-25,-8],[-24,-3],[-23,1],[-24,-2],[-27,-8],[-21,-10],[-35,2],[-24,-1],[-24,-7],[-23,-1],[-26,-8],[-26,-15],[-26,-8],[-37,-8],[-20,-17],[-18,-10],[-22,-9],[-28,-6],[-26,-2],[-46,-67]],[[46232,82703],[-19,16],[-20,14],[-24,21],[-13,23],[-19,14],[-19,13],[-25,7],[-18,17],[-26,35],[-15,17],[-16,16],[-58,38],[-33,20],[-37,21],[-19,11],[-23,20],[-20,10],[-32,18],[-6,21],[6,22],[-1,29],[-19,19],[-27,19],[-46,37],[-90,67],[-57,41],[-144,105],[-46,33],[-22,17],[-74,62],[-19,16],[-53,48],[-32,27],[-90,77],[-2,1],[-123,107],[-27,23],[-35,35],[-27,25],[-15,13],[-10,9],[-36,30],[-17,15],[-74,63],[-82,71],[-33,29],[-24,-14],[-31,-16],[-38,-22],[-55,-30],[-48,-27],[-26,20],[-31,26],[-50,44],[-43,-25],[-64,-43],[-23,-14],[-32,-20],[-126,1],[-181,0],[-33,0],[-102,0],[-131,-1],[-42,0],[-40,-5],[-70,-9],[-75,-9],[-109,-14],[-23,-3],[-33,-4],[-70,-9],[-56,-8],[-23,-2],[-39,-5],[-22,-4],[-9,-1],[-33,-4],[-22,-2],[-3,4],[-13,15],[-19,25],[-18,16],[-28,15],[-20,7],[-43,12],[-41,12],[-24,6],[-30,10],[-27,19],[-25,19],[-22,16],[-26,19],[-26,20],[-19,14],[-27,21],[-38,29],[-21,17],[-18,18],[-26,26],[-30,27],[-19,10],[-36,14],[-20,8],[-21,11],[-33,29],[-20,22],[-4,5],[-19,28],[-2,6],[-10,26],[-1,2],[-2,31],[-1,15],[-9,30],[-1,2],[-17,14],[-24,17],[-12,4],[-27,8],[-20,11],[-23,18],[-16,13],[-20,12],[-26,16],[-74,30],[-41,18],[-65,32],[-57,33],[-20,20],[-45,62]],[[19853,80133],[-61,1],[-32,0],[-66,1],[-40,1],[-35,0],[-24,1],[-23,0],[-49,0],[-34,2],[-131,2],[-41,2],[-51,0],[-23,1],[-43,1],[-21,1],[-22,0],[-9,0],[-65,2],[-134,2],[-36,0],[-36,1],[-62,1],[-130,2],[-21,0],[-3,0],[-139,4],[-33,0],[-39,0],[-68,1],[-2,0],[-47,2],[-31,0],[-99,2]],[[18203,80163],[0,60],[-62,4],[-54,0],[-147,0],[-57,0],[-36,0],[-42,1],[-42,0],[-5,0],[-114,0],[-65,0],[-43,0],[-22,0],[-25,0],[-63,0],[-241,1],[-67,0],[-57,0],[-27,0],[-46,0],[-37,0],[-139,0],[-65,0],[-41,0],[-71,0],[-68,1],[-94,0],[-112,0],[-38,0],[-38,0],[-84,0],[-69,0],[-55,0],[-5,0],[-37,0],[-85,1],[-153,0],[-110,0],[-28,0],[-91,0],[-56,0],[-104,0],[-53,1],[-28,0],[-74,-1],[-41,0],[-297,-1],[-2,0],[-47,-1],[-1,-42],[-1,-37],[-72,-3],[-69,0],[-132,-2],[-2,-71],[-35,0],[-57,0],[0,49],[1,76],[1,33],[-177,-3]],[[14322,80229],[-113,2],[-38,1],[-2,-95],[-127,3],[-62,1],[1,35],[1,52],[-218,3],[-45,0],[-1,0],[-240,2],[-143,1],[-133,1],[-33,1],[-94,0],[-25,0],[-91,1],[-42,1],[-37,0],[-49,0],[-12,0],[-78,1],[-38,0],[-62,-1],[-34,0],[-73,0],[-68,0],[-111,1],[-55,0],[-39,-1],[-133,-1],[-122,-1],[-292,2],[-1,44],[0,37],[2,93],[2,117]],[[19979,87336],[0,-26],[-1,-41],[-1,-90],[-1,-90],[-2,-141],[-1,-43],[-3,-98],[-2,-62],[0,-1],[0,-23],[-3,-101],[-3,-92],[1,-144],[0,-36],[0,-86],[1,-125],[-2,-37],[172,0],[32,-1],[-6,-132],[0,-12],[-3,-35],[-28,0],[-3,0],[-92,1],[-71,1],[2,-248],[-1,-70],[-1,-35],[5,-105],[2,-246],[1,-158],[1,-215],[0,-3],[0,-119],[1,-76],[2,-77],[1,-96],[0,-99],[0,-69],[0,-99],[3,-176],[0,-171],[0,-23],[-8,-169],[-1,-42],[-1,-94],[0,-54],[0,-35],[-1,-96],[-5,-32],[-5,-29],[-4,-24],[-4,-32],[-5,-30],[-10,-68],[-12,-79],[-11,-67],[-12,-77],[-15,-92],[2,-140],[1,-80],[0,-37],[-5,-211],[-2,-244],[-1,-41],[1,-101],[0,-46],[0,-40],[0,-34],[0,-32],[1,-66],[0,-32],[0,-62],[0,-12],[0,-32],[0,-28],[0,-32],[0,-3],[-1,-23],[0,-24],[-1,-38],[0,-2],[0,-43],[-1,-36],[0,-32],[0,-33],[-1,-36],[-1,-35],[0,-60],[-1,-35],[-6,-196],[-2,-77],[0,-40],[0,-28],[-2,-66],[-2,-109],[-3,-113],[0,-23],[-1,-34],[-1,-48],[-3,-108],[-1,-47],[-1,-34],[-1,-26],[0,-31],[0,-6],[0,-28]],[[28272,85669],[0,-29],[-1,-100],[-2,-151],[-2,-97],[-1,-99],[-1,-54],[0,-7],[-1,-133],[0,-2],[0,-93],[0,-6],[-1,-83],[0,-10],[-1,-145],[0,-24],[0,-35],[0,-156],[0,-69],[0,-42],[-1,-96],[-1,-90],[0,-46],[0,-114],[0,-87],[1,-108],[-1,-134],[-1,-75],[-6,-27],[0,-1],[6,-72],[1,-124],[0,-160],[0,-3],[0,-121],[0,-40],[-5,-94],[4,-29],[0,-58],[0,-67],[0,-183],[0,-90],[-1,-59]],[[28258,82456],[-38,1],[-82,3],[-175,0],[-38,0],[-160,1],[-86,0],[-76,0],[-123,1],[-26,0],[-55,0],[-34,0],[-341,0],[-9,0],[-22,1],[-28,-2],[-29,1],[-25,0],[-110,-1],[-9,-6],[-52,-26],[-21,-22],[-73,-67],[-10,-4],[-1,-5],[-32,-33],[-12,-6],[-17,-7],[-59,-25],[-9,-4],[-12,-4],[-23,-3],[-52,-7],[-2,-1],[-9,-1],[-38,5],[-21,7],[-28,10],[-9,-4],[-7,-2],[-31,-12],[-27,-23],[-12,-54],[-1,-22],[0,-2],[-9,-30],[-4,-7],[-33,-70],[-24,-36],[-21,-21],[-8,-17],[-6,-13],[-3,-23],[0,-1],[26,-69],[2,-3],[10,-14],[32,-48],[1,-2],[-1,-4],[-1,-8],[-16,-18],[-9,-4],[-27,-3],[-16,-16],[1,-10],[1,-23],[6,-101],[11,-72],[0,-11],[-2,-77],[-1,-116],[-5,-42],[-4,-23],[-1,-1],[-33,-113],[-5,-16],[-3,-9],[-8,-2],[-126,-24],[-31,-1],[-39,-12],[-57,-32],[-11,-8],[-19,-10],[-20,-7],[-45,-6],[-6,-6],[-77,7],[-53,8],[-24,0],[-16,1],[-5,0],[-50,-23],[-37,-17],[-8,-10],[0,-12],[-1,-13],[-2,-5],[-5,-10],[-3,-5],[-4,-3],[-5,-5],[-57,-35],[-9,-5],[-57,-34],[-94,-28],[-13,-5],[-45,-17],[-3,-1],[-17,-5],[-10,-2],[-55,-12],[-9,-2],[-12,1],[-8,6],[-5,10],[-24,26],[-13,4],[-19,4],[-34,-9],[-19,-12],[-30,-20],[-1,-51],[-1,-55],[0,-28],[-1,-26],[0,-28],[-1,-44],[0,-25],[2,-55],[-2,-110],[-2,-30],[0,-28],[0,-23],[0,-25],[0,-67],[-2,-37],[-1,-26],[-1,-70],[-1,-32]],[[24896,80031],[-41,5],[-29,0],[-35,0],[-31,2],[-74,2],[-2,0],[-47,1],[-30,0],[-40,1],[-33,0],[-27,1],[-26,0],[-43,1],[-26,0],[-37,1],[-33,1],[-25,1],[-84,1],[-71,1],[-66,1],[-39,0],[-34,1],[-94,3],[-38,1],[-54,2],[-98,3],[-23,1],[-25,-2],[-44,1],[-49,2],[-32,0],[-29,0],[-29,2],[-52,2],[-31,-2],[-166,4],[-33,0],[-63,1],[-39,0],[-66,1],[-41,1],[-36,1],[-34,0],[0,73],[-76,3],[-2,-74],[-74,2],[-61,1],[-121,2],[-40,2],[-28,0],[-42,0],[-23,0],[-32,0],[-4,0],[-44,2],[-10,2],[-11,1],[-44,-3],[-22,1],[-32,1],[-164,5],[-50,0],[-39,1],[-45,0],[-62,1],[-106,2],[-31,0],[-36,2],[-28,0],[-28,0],[-26,0],[-39,1],[-29,1],[-145,2],[-114,2],[-201,4],[-36,1],[-40,2],[-107,4],[-27,1],[-81,1],[-34,1],[-4,84],[-207,5],[-3,-5],[-3,-25],[-3,-30],[-3,-19],[-1,-4],[-27,-2],[-28,1],[-22,1],[-39,0],[-32,1],[-47,1],[-61,1],[-116,3],[-29,0],[-42,0],[-77,0],[-48,0],[-43,2],[-6,0],[-21,0],[-63,2],[-35,1]],[[32370,82067],[-105,-10],[-57,-38],[-47,-9],[-23,-15],[-8,-8],[-3,-8],[-3,-6],[-7,-17],[-10,-9],[-11,-9],[-4,-43],[-43,-62],[-38,-35],[-13,-19],[-4,-8],[-21,-41],[-41,-89],[-19,-86],[-12,-7],[-1,-2],[-15,-37],[-37,-37],[-30,-40],[-42,-72],[-2,-2],[-55,-100],[10,-27],[2,-16],[0,-6],[1,-4],[-1,-2],[-3,-24],[-3,-20],[-1,-6],[-7,-5],[-20,-18],[-12,-8],[-49,-18],[1,-21],[1,-61],[-5,-5],[-11,-10],[-53,-33],[-2,-2],[-12,-18],[-4,-7],[-1,-18],[-2,-68],[-1,-30],[12,-48],[1,-6],[4,-23],[-1,-26],[-10,-23],[-8,-6],[-4,-4],[-38,-19],[-41,-27],[-4,-20],[0,-1],[-3,-3],[-9,-10],[-53,-30],[-9,-12],[-4,-6],[-5,-6],[0,-5],[-2,-35],[11,-42],[-1,-29],[-2,-5],[-3,-6],[-11,-28],[-18,-24],[-16,-21],[-14,-20],[-10,-24],[-5,-13],[-2,-5],[-7,-46],[4,-31],[11,-81],[4,-15],[-2,-15],[-1,-7],[0,-4],[-7,-14],[-3,-4],[0,-1],[-7,-9],[-27,-32],[-42,-94],[-3,-19],[-8,-56],[9,-9],[24,0],[38,-4],[35,-21],[41,-45],[41,-101],[35,-41],[57,-38],[88,-10],[35,-24],[23,-28],[-3,-9]],[[31637,79546],[-22,-4],[-21,0],[-54,2],[-80,3],[-39,1],[-77,0],[-23,0],[-29,0],[-33,2],[-26,3],[-34,6],[-27,7],[-23,7],[-25,9],[-24,9],[-28,12],[-27,9],[-37,9],[-24,12],[-24,15],[-25,15],[-26,13],[-20,7],[-25,1],[-30,-11],[-42,-19],[-26,-10],[-25,-5],[-28,-5],[-27,0],[-22,8],[-23,13],[-28,16],[-34,19],[-21,11],[-20,12],[-24,11],[-25,9],[-20,6],[-22,8],[-23,11],[-23,13],[-33,17],[-25,14],[-20,16],[-16,23],[-16,24],[-20,16],[-26,9],[-25,7],[-25,8],[-26,7],[-9,3],[-12,3],[-25,8],[-26,7],[-23,4],[-27,3],[-88,10],[-31,4],[-4,31],[-4,24],[-12,29],[-15,20],[-15,19],[-17,22],[-16,22],[-17,23],[-16,27],[-6,29],[-8,25],[-22,17],[-34,22],[-28,29],[-22,19],[-23,11],[-30,8],[-21,6],[-24,11],[-24,10],[-24,10],[-36,17],[-24,8],[-23,2],[-23,-2],[-25,1],[-33,4],[-30,18],[-14,19],[-17,20],[-26,18],[-17,19],[-12,21],[-17,33],[-14,19],[-22,17],[-27,11],[-24,7],[-40,10],[-25,4],[-27,1],[-31,-2],[-23,-9],[-20,-16],[-36,-28],[-41,-14],[-10,-3],[-29,-9],[-23,-1],[-26,8],[-25,16],[-20,16],[-14,20],[-11,19],[-12,21],[-29,3],[-26,1],[-32,0],[-26,0],[-26,4],[-25,10],[-32,15],[0,1],[-24,11],[-22,10],[-21,7],[-31,9],[-27,3],[-23,-2],[-23,-2],[-29,10],[-5,26],[-10,29],[-19,18],[-24,10],[-37,13],[-3,82],[1,43],[0,31],[0,26],[2,163],[0,39],[0,202],[0,116],[0,24],[-1,81],[0,61],[1,110],[0,102],[0,100],[0,98],[0,58],[0,34],[0,116],[0,60],[0,45],[0,56]],[[46232,82703],[24,-22],[18,-18],[25,-22],[13,-24],[16,-22],[20,-30],[12,-17],[23,-32],[10,-21],[11,-26],[7,-25],[125,-49],[48,-21],[1,-1],[77,-139],[59,-96],[84,-39],[23,-12],[145,-69],[67,-33],[25,-61],[23,-60],[1,-22],[1,-25],[3,-143],[7,-27],[38,-150],[15,-56],[16,-66],[2,-38],[1,-23],[2,-72],[1,-34],[2,-59],[2,-24],[1,-34],[1,-71],[1,-66],[-34,-29],[-15,-20],[-20,-14],[-16,-22],[-23,-15],[-12,-18],[-18,-16],[8,-22],[-10,-35],[-23,-9],[-18,-28],[-9,-30],[-16,-25],[-25,-35],[2,-30],[3,-26],[-17,-18],[-16,-19],[-19,-12],[7,-23],[-21,-50],[-15,-23],[-39,-26],[-10,-23],[-4,-31],[1,-37],[5,-30],[1,-28],[-5,-21],[-9,-20],[-21,-11],[-23,-22],[-30,1],[-21,-16],[-26,-12],[-15,-27],[34,-13],[13,-22],[27,-18],[29,-17],[16,-17],[7,-23],[3,-34],[-26,-14],[-9,-19],[-5,-30],[-22,-16],[-25,-15],[-26,8],[-27,2],[-12,-25],[13,-51],[5,-28],[-22,-24],[-14,-23],[12,-21],[-14,-20],[-3,-26],[-1,-39],[-21,-10],[-22,-9],[-4,-22],[-2,-35],[-4,-25],[-22,-12],[19,-9],[87,-33],[77,-28],[69,-25],[153,-54],[158,-58]],[[47120,79327],[-170,-91],[-96,-50],[-45,-23],[-47,-16],[-20,-8],[-38,19],[-6,6],[-29,22],[-11,12],[-35,36],[-16,22],[-9,11],[-111,-36],[7,-16],[-72,-26],[84,-47],[93,-48],[-53,-20],[-117,-41],[-119,-43],[-5,-2],[-30,-12],[-46,-16],[-378,-132],[-24,-7],[-6,-3],[-102,-39],[-64,-24],[-39,-16],[-248,-99],[-132,-50],[-59,-23],[-24,-8],[-17,-7],[-101,-40],[-69,-27],[-72,-30],[-34,-14],[-64,-28],[-24,-9],[-27,-17],[-33,-13],[-200,-76],[-24,5],[-18,12],[-24,22],[-31,14],[-21,13],[-30,13],[-35,12],[-35,8],[-30,5],[-30,-4],[-25,-11],[-24,-7],[-29,-5],[-24,5],[-13,15],[-2,2],[-1,25],[-3,-40],[6,-22],[3,-28],[9,-23],[4,-31],[11,-29],[24,-20],[32,-18],[15,-20],[-32,-26],[-50,-30],[-129,-73],[-22,-12],[-24,-14],[-39,-22],[-27,-15],[-34,-18],[-227,-128],[-21,-13],[-98,-55],[-116,-65]],[[43398,77720],[-69,179],[-11,30],[-18,48],[-68,178],[-17,49],[-35,86],[-30,82],[-10,24],[-13,60],[-14,56],[-4,10],[-74,178],[-47,113],[-51,127],[-81,197],[-1,0],[-26,12],[-3,2],[-29,-1],[-25,-6],[-24,-14],[-4,-4],[-2,-2],[-10,-4],[-12,1],[-2,0],[-22,8],[-9,6],[-6,20],[-2,5],[-11,29],[-2,7],[-24,83],[-2,7],[-10,15],[-3,4],[-13,1],[-37,2],[-23,1],[-15,-1],[-32,4],[-66,19],[-19,2],[-9,1],[-8,1],[17,-25],[1,-2],[4,-11],[-7,-9],[-1,0],[-7,-3],[-1,-1],[-144,-31],[-68,-8],[-58,-7],[-43,-5],[-12,-1],[-56,23],[-3,6],[-31,21],[-11,6],[-21,7],[-15,0],[-14,-2],[-6,-1],[-1,-1],[-18,-8],[-4,-5],[-5,-4],[-10,2],[-4,1],[-8,3],[-8,3],[-34,55],[-2,25],[-23,45],[-31,58],[-8,6],[-42,9],[-38,-14],[-46,-13],[-86,-25],[-2,0],[-28,0],[-12,3],[-9,11],[-26,-12],[-17,-7],[-11,-5],[-8,-4],[-6,21],[-2,6],[-5,5],[-24,0],[-3,1],[-44,0],[-2,0],[-1,0],[-45,8],[-2,1],[-9,6],[-28,26],[-13,6],[-124,57],[-18,-4],[-12,-7],[-7,-16],[-2,-15],[-12,-54],[-11,-9],[-6,-3],[-3,-2],[-12,1],[-43,6],[-5,2],[-41,11],[-3,0],[-14,6],[-22,8],[-3,1],[-14,14],[-7,10],[-7,21],[-3,19],[0,45],[0,1],[-3,7],[-2,4],[-9,3],[-2,0],[-3,0],[-14,-2],[-96,-13],[-14,-6],[-3,-1],[-5,-4],[-3,-8],[-1,-14],[0,-48],[0,-2],[-26,-5],[-48,-10],[-7,-1],[-2,2],[-96,87],[-16,15],[-6,5],[-16,-9],[-95,-52],[-1,-1],[3,-17],[-11,-32],[0,-2],[-8,-10],[-8,0],[-4,0],[-86,-5],[-17,-1],[-1,0],[-8,0],[-14,14],[-11,12],[4,12],[12,32],[3,9],[7,46],[-1,9],[-4,2],[-2,1],[-8,4],[-2,1],[-10,1],[-2,0],[-9,0],[-17,-1],[-22,-5],[-10,-8],[-10,-19],[0,-1],[-11,-7],[-12,-3],[-18,1],[-4,1],[-130,23],[-1,1],[-13,8],[-1,1],[-13,15],[-3,5],[-20,5],[-24,-21],[-3,-4],[-12,-52],[-2,-11],[8,-20],[-1,-3],[0,-6],[-3,-6],[-23,-30],[-12,-16],[-1,-1],[-6,-3],[-23,-6],[-2,0],[-60,-14],[-1,0],[-3,-1],[-11,-2],[-11,5],[-36,16],[-2,1],[-4,7],[-7,19],[-24,38],[0,1],[9,62],[0,3],[10,21],[3,27],[0,2],[-2,2],[-15,28],[-1,3],[-8,4],[-31,-4],[-18,-6],[-21,-12],[-4,-3],[-42,-29],[-1,-1],[-5,5],[-2,5],[-25,83],[-1,5],[-29,96],[-4,3],[-7,4],[-8,4],[-5,1],[-20,-2],[-14,-10],[-38,-27],[-23,-15],[-14,-7],[-51,-9],[-18,0],[-13,4],[-3,1],[-10,7],[-22,39],[-9,19],[0,14],[-32,63],[-87,42],[-1,0],[-59,-39],[-1,0],[3,-3],[11,-17],[3,-9],[1,-1],[0,-6],[-1,-2],[-3,-3],[-4,-2],[-8,-1],[-10,-1],[-164,-19],[-2,0],[-7,-1],[-17,4],[-38,14],[-12,4],[-53,25],[-24,8],[-71,0],[-19,-6],[-50,-24],[-19,9],[-33,15],[-7,7],[-11,18],[-13,30],[-3,10],[-2,28],[-6,38],[-5,10],[-13,10],[0,1],[-103,75],[-2,1],[-42,53],[-5,6],[-8,4],[-148,73],[-47,24],[-54,42],[-8,7],[-10,9],[-6,6],[-6,8],[0,29],[28,94],[-10,40],[-46,116],[-2,5],[-22,8],[-11,4],[-20,7],[-2,1],[-45,10],[-20,4],[-12,2],[-10,2],[-11,7],[-112,90],[-10,11],[-1,14],[6,15],[0,3],[-1,7],[-6,7],[-5,-1],[-6,-1],[-3,0],[-15,-8],[-6,-2],[-45,31],[-3,12],[-4,9],[-7,7],[-13,9],[-2,1],[-2,1],[-32,8],[-27,7],[-11,7],[-8,5],[-3,6],[5,5],[16,6],[56,16],[12,9],[0,1],[3,3],[-2,7],[-15,10],[-12,4],[-8,4],[-6,2],[-8,8],[0,8],[0,10],[10,10],[2,46],[1,3],[-18,3],[-9,2],[-31,6],[-4,0],[-9,8],[-8,14],[-2,9],[0,22],[7,20],[10,15],[1,1],[-3,14],[-3,4],[-4,6],[-1,2],[-8,6],[-18,3]],[[63817,77501],[-58,31],[-11,4],[-23,8],[-1,1],[-118,76],[-33,26],[-79,61],[-61,40],[-37,11],[-6,2],[-10,1],[-44,6],[-89,48],[-21,22],[-34,34],[-13,9],[-22,16],[-29,21],[-19,2],[-85,10],[-82,92],[-11,8],[-29,21],[-30,14],[-73,9],[-124,-4],[-28,-9],[-9,-3],[-102,12],[-12,-1],[-37,-4],[-43,-22],[-25,-17],[-33,-22],[-12,-13],[-8,-50],[-37,-23],[-73,6],[-24,26],[-14,16],[0,58],[-49,57],[-30,19],[-8,5],[-13,7]],[[62118,78112],[-60,18],[-25,25],[-29,19],[-65,76],[-22,8],[-25,1],[-55,-16],[-72,-43],[-38,-14],[-10,-5],[-78,-34],[-27,-12],[-57,0],[-19,1],[-42,-3],[-126,-6],[-31,-2],[-100,-19],[-78,-14],[-23,-4],[-25,-5],[-90,-15],[-6,-1],[-55,-12],[-36,-1],[-22,3],[-34,6],[-81,15],[-122,33],[-10,3],[-36,6],[-17,1],[-31,3],[-36,0],[-36,-2],[-55,-3],[-33,-4],[-42,-12],[-10,-5],[-37,-16],[-20,-8],[-56,-33],[-178,-30],[-4,-2],[-14,-6],[-40,-17],[-12,-5],[-40,-18],[-32,-21],[-21,-16],[-50,-61],[-12,-10],[-13,-4],[-15,-4],[-40,1],[-48,6],[-45,8],[-53,14],[-23,4],[-27,0],[-16,-3],[-82,-10],[-65,-9],[-11,-4],[-2,-2],[-48,-21],[-12,-2],[-1,0],[-10,0],[-30,1]],[[59302,77830],[-79,13],[-15,5],[-22,8],[-33,14],[-36,16],[-66,28],[-17,8],[-80,41],[-51,22],[-186,37],[-18,4],[-4,1],[-56,19],[-59,19],[-1,2],[-56,51],[-24,22],[-56,52],[-19,14],[-27,6],[-28,-6],[-30,-16],[-15,-11],[-11,-5],[-18,0],[-15,4],[-55,36],[-18,13],[-22,14],[-49,18],[-67,25],[-15,6],[-12,4],[-7,2],[-12,-5],[-2,0],[-14,-11],[-5,-10],[-4,-15],[-1,-13],[-2,-29],[-1,-17],[-1,-17],[2,-18],[7,-21],[0,-14],[-4,-10],[-20,-14],[-22,-10],[-30,-8],[-105,-10],[-28,-3],[-21,2],[-30,8],[-8,2],[-114,20],[-3,0],[-42,-14],[-22,-2],[-14,4],[-6,4],[-7,7],[-4,16],[0,19],[-5,15],[-28,68],[0,1],[-6,10],[-12,21],[-20,21],[-16,13],[-14,8],[-25,11],[-2,1],[-17,6],[-47,12],[-8,2],[-23,5],[-12,2],[-38,10],[-39,10],[-1,0],[0,1],[-11,12],[-8,9],[-4,14],[1,6],[1,26],[-6,20],[-5,6],[-9,9],[-10,12],[-4,3],[-7,1],[-21,3],[-3,0],[-3,-1],[-26,-15],[-2,1],[-14,0],[-52,3],[-18,1],[-155,45],[-57,7],[-59,7],[-1,0],[-90,24],[-11,12],[-4,14],[1,14],[3,32],[6,21],[2,6],[2,4],[14,23],[3,5],[10,17],[-19,15],[-34,4],[-2,-1],[-42,-8],[-19,0],[-17,1],[-6,1],[-62,16],[-28,3],[-11,-7],[-2,-10],[-3,-18],[-1,-7],[12,-25],[20,-25],[10,-12],[-2,-8],[-2,-1],[-13,-7],[-35,-21],[-9,1],[-15,10],[-19,21],[-4,7],[-16,28],[-13,10],[-6,5],[-10,8],[-11,-1],[-2,0],[-3,0],[-15,-9],[-1,-4],[-9,-17],[-9,-7],[-19,-13],[-8,-6],[-31,-10],[-19,2],[-8,10],[-1,3],[-12,36],[-10,11],[-17,19],[0,1],[-3,1],[-33,19],[-58,37],[-42,18],[-19,8],[-4,0],[-34,2],[-58,-9],[-2,2],[-9,17],[-6,9],[-8,99],[0,8],[25,55],[34,9],[29,19],[27,24],[3,2],[11,45],[-41,1],[-11,0],[-4,-2],[-44,-15],[-34,7],[-6,8],[-23,34],[-92,111],[-2,3],[-25,27],[-19,16],[-7,7],[-41,23],[-32,4],[-19,-14],[-1,-2],[-17,-31],[-18,-12],[-44,-11],[-29,1],[-27,11],[-8,9],[-4,11],[-4,9],[-9,26],[-6,16],[-9,10],[-4,4],[-20,20],[-16,3],[-23,3],[-44,6],[-94,14],[-27,12],[-26,21]],[[55172,79385],[-17,73],[-2,9],[-6,12],[-11,20],[-4,0],[-16,-1],[-15,-17],[-12,-7],[-6,-5],[-13,2],[-111,73],[-35,35],[-49,96],[3,13],[10,56],[4,26],[2,6],[-1,3],[-6,35],[0,2],[-2,3],[-11,15],[-38,24],[-36,23],[-25,11],[-72,34],[-5,2],[-19,6],[-6,6],[-55,55],[-4,4],[-21,49],[-44,107],[-1,3],[-6,-1],[-43,-2],[-22,-14],[-21,-30],[-4,-3],[-7,-4],[-25,6],[-44,28],[-23,15],[-117,119],[-30,34],[-16,18],[-82,94],[-2,2],[-63,66],[-43,45],[-17,13],[-22,11],[-38,18],[-6,3],[1,5],[0,2],[2,12],[60,69],[25,16],[18,1],[2,0],[10,7],[4,21],[-4,17],[-46,92],[4,24],[23,25],[2,20],[-67,39],[-55,58],[-21,8],[-120,41],[-10,1],[-6,1],[-34,4],[-7,1],[-15,7],[-20,18],[-18,68],[-29,38],[6,21],[34,29],[3,16],[-15,17],[-13,7],[-26,14],[-11,5],[-37,48],[-27,52],[-23,25],[-5,5],[-43,35],[-52,34],[-14,15],[-11,12],[-4,17],[2,32],[-22,28],[-1,1],[2,1],[37,50],[-1,1],[-19,14],[-34,27],[-64,61],[-4,3],[-2,28],[-15,17],[-1,1],[-5,1],[-17,2],[-13,1],[-43,-6],[-21,-11],[-16,-15],[-13,-3],[-52,3],[-20,11],[-5,2],[-13,8],[-54,27],[-47,31],[-65,42],[-112,48],[-25,3],[-45,5],[-8,4],[-16,7],[-15,9],[-3,2],[-21,29],[-7,12],[-8,14],[-54,47],[-35,104],[2,4],[9,27],[17,28],[61,102],[16,26],[18,31],[23,39],[32,53],[11,17],[12,21],[15,26],[-4,25],[-18,19],[-14,25],[-7,23],[-10,21],[-9,57],[6,21],[4,30],[-9,31],[-2,28],[20,16],[23,16],[17,16],[29,36],[22,23],[21,20],[28,18],[20,12],[43,25],[16,23],[27,42],[23,28],[16,19],[20,25],[12,24],[12,34],[10,21],[8,26],[-2,22]],[[59419,84685],[34,-25],[16,-40],[49,-39],[54,-47],[12,-8],[20,-12],[72,-38],[9,-4],[28,-1],[7,-1],[60,-52],[8,-7],[3,-1],[10,-1],[35,-20],[20,-22],[9,-30],[1,-3],[24,-33],[21,-27],[30,-53],[6,-22],[-2,-54],[21,-68],[1,-1],[50,-65],[10,-52],[12,-58],[1,-3],[9,-43],[3,-42],[1,-30],[-1,-10],[-14,-80],[34,-86],[6,-47],[3,-48],[-4,-31],[-2,-18],[-7,-60],[-13,-36],[-4,-22],[0,-10],[0,-31],[4,-14],[55,-61],[28,-44],[4,-14],[-4,-26],[-27,-44],[-15,-33],[-11,-27],[-1,-2],[-4,-29],[13,-22],[9,-16],[0,-5],[-1,-1],[12,-18],[103,-172],[31,-45],[29,-38],[30,-75],[13,-58],[-14,-83],[-4,-120],[4,-57],[14,-32],[50,-68],[23,-17],[27,-30],[57,-91],[28,-63],[8,-9],[38,-100],[28,-85],[-2,-14],[8,-31],[4,-16],[6,-15],[17,-37],[50,-52],[67,-44],[64,-48],[115,-65],[36,-16],[53,-14],[20,0],[53,-9],[53,8],[26,-3],[44,-25],[81,-80],[103,-20],[37,-13],[6,-1],[41,-26],[47,-52],[48,-63],[33,-53],[35,-42],[8,-27],[0,-1],[16,-46],[7,-21],[-2,-21],[-2,-10],[10,-39],[10,-18],[11,-12],[8,-9],[5,-6],[8,-3],[2,-1],[1,-1],[48,-60],[12,-14],[0,-2],[-1,-47],[28,-66],[32,-39],[18,-24],[35,-24],[36,-39],[36,-56],[24,-28],[24,-16],[35,-2],[37,7],[44,-5],[46,-17],[18,-26],[3,-44],[-16,-15],[-6,-3],[-80,-46],[-57,-72],[-10,-16],[-3,-18],[-1,-6],[19,-24],[27,-14],[55,-75],[9,-6],[16,-18],[19,-30],[35,-55],[8,-12],[37,-40],[53,-58],[46,-19],[45,-17],[130,-18],[30,-17],[5,-3],[11,-13],[39,-41],[14,-14],[9,1],[1,1],[0,-1],[25,-63],[3,-6],[-1,-12],[-2,-134],[-1,-5],[9,-26],[30,-31],[36,-17],[34,-10],[98,-69],[94,-96],[26,0],[3,-1],[27,-13],[163,-107],[36,-40],[8,-25],[-2,-13],[-6,-38],[-2,-4],[-21,-53],[-13,-80],[2,-28],[0,-1],[6,-21],[17,-32],[-1,-31],[19,7],[112,-125],[-10,-59],[6,-80],[6,-20],[13,-19],[51,-64],[3,-19],[15,-103],[1,-14],[-5,-10],[57,-86],[28,-64],[4,-11],[25,-44],[151,-162],[26,-36],[6,-11],[41,-76],[12,-43],[53,-180],[20,-32]],[[55172,79385],[-7,2],[-10,-2],[-49,-8],[-43,2],[-5,1],[-54,-21],[-11,-4],[-11,-7],[-1,-7],[-1,-7],[-2,-8],[5,-8],[37,-32],[-1,-7],[-1,-9],[-12,-53],[-11,-7],[-22,3],[-31,11],[-27,31],[-31,12],[-2,-2],[-83,-44],[-7,-4],[-28,-16],[-46,-26],[-38,-22],[-1,-1],[-1,0],[-30,-24],[-11,-7],[-3,-2],[-24,1],[-28,2],[-48,3],[-24,11],[-16,1],[-20,-3],[-6,-3],[-15,-8],[-6,7],[-32,33],[-22,23],[-18,20],[-13,2],[-3,-5],[-21,-36],[-1,-2],[-6,-4],[-21,-3],[-48,6],[-9,-5],[-6,-17],[5,-35],[-1,-16],[0,-1],[-2,-4],[-2,-1],[-4,-2],[-22,-4],[-50,9],[-27,7],[-25,14],[-18,7],[-38,7],[-10,-9],[-2,-10],[-6,-25],[-1,-3],[-18,-36],[-10,-13],[-14,-9],[-16,-5],[-32,-3],[-17,3],[-10,2],[-4,3],[-1,0],[-11,4],[-13,2],[-22,-8],[-14,-12],[-57,-61],[-4,-4],[-29,-31],[-82,-65],[-19,-32],[-10,-11],[-4,-1],[-11,0],[-3,0],[-1,2],[-25,24],[-21,21],[-26,25],[-4,0],[-41,-2],[-99,-5],[-115,82],[-16,14],[-13,12],[0,1],[-4,-1],[-8,-2],[-38,-3],[-4,3],[-27,19],[-2,2],[-59,36],[-4,2],[-42,8],[-24,-40],[-5,-4],[-11,1],[-2,0],[-3,2],[-7,6],[-54,40],[-9,6],[-1,1],[-53,17],[-16,6],[-17,9],[-2,1],[-53,34],[-50,31],[-5,5],[-6,7],[-4,20],[-1,24],[-1,5],[-8,1],[-6,-5],[-10,-15],[-1,-32],[0,-17],[-13,-25],[-6,-9],[-47,-65],[-4,-2],[-6,-2],[-104,-42],[-5,0],[-7,-1],[-51,25],[-16,8],[-60,34],[-16,8],[-3,2],[-7,7],[-23,29],[-2,17],[-3,33],[3,35],[2,24],[-5,5],[-46,45],[-7,3],[-18,3],[-84,48],[-150,94],[-7,4],[-33,32],[-4,4],[-17,-3],[-16,-3],[-1,-3],[-8,-7],[-87,-25],[-43,9],[-10,0],[-10,-4],[-17,-22],[-9,0],[-40,-10],[-22,-10],[-15,-14],[-139,-62],[-147,-48],[-11,-7],[-51,-10],[-53,-15],[-102,-27],[-18,-4],[-1,-3],[-170,-133],[-90,-88],[-2,-5],[-2,-2],[-5,-4],[-120,-69],[-46,-9],[-35,-31],[-8,-13],[-1,-3],[-3,-9],[-2,1],[-1,-1],[-2,0],[-66,-104],[-14,-18],[-10,-10],[-55,-20],[-72,-31],[-5,-5],[-1,-2],[-3,0],[-1,0],[-18,-5],[-177,-81],[-70,-31],[-1,0],[-155,-46],[-1,0],[-26,-3],[-25,5],[-7,24],[5,26],[-3,52],[-15,34],[-21,33],[-34,20],[-19,-24],[-24,-1],[-21,17],[-39,5],[-28,17],[-25,13],[-26,16],[-13,17],[-33,23],[-25,-4],[-170,-121],[-59,-42],[-45,-32],[-19,-14],[-77,-55],[-25,-19],[-21,-15],[-21,-7]],[[49254,78432],[-24,19],[-2,5],[-17,28],[-54,86],[-12,19],[-3,5],[-23,-1],[-6,0],[-18,-1],[-120,-23],[-5,-1],[-128,-27],[-42,-8],[-4,-1],[-27,6],[-36,14],[-12,5],[-6,2],[-16,11],[-14,17],[-9,10],[-2,4],[-7,5],[-2,0],[-19,4],[-98,23],[-11,2],[-14,3],[-20,-4],[-3,0],[-19,20],[-16,15],[-22,17],[-8,6],[-18,14],[-25,20],[-87,58],[-29,19],[-48,33],[-35,24],[-21,14],[-32,21],[-29,16],[-29,13],[-39,25],[-55,48],[-4,3],[-31,21],[-23,16],[-46,14],[-65,20],[-44,13],[-56,17],[-64,20],[-52,16],[-52,16],[-72,27],[-61,23],[-22,8],[-56,22],[-70,26],[-26,10],[-62,24],[-22,12],[-40,22]],[[31637,79546],[-9,-25],[-6,-4],[-64,-47],[-42,-7],[-37,-14],[-26,-15],[-86,-53],[-6,-4],[-3,-2],[-39,-32],[-21,-17],[-18,-27],[-1,-9],[-2,-11],[-5,-8],[-17,-22],[-79,-37],[-23,-10],[-6,-3],[-54,-20],[-120,-11],[-79,-31],[-145,-27],[-43,-13],[-48,-1],[-113,9],[-9,2],[-45,7],[-10,1],[-3,1],[-75,34],[-21,2],[-108,-50],[-40,-13],[-35,-3],[-23,-11],[-15,-8],[-37,-18],[-7,-3],[-41,-43],[-56,-75],[-6,-23],[-11,-45],[-9,-16],[0,-1],[-7,-20],[-50,-162],[-5,-3],[-1,-1],[-3,-25],[-8,-8],[-11,-69],[6,-53],[-7,-46],[-14,-27],[-26,-33],[-44,-45],[-65,-42],[-101,-48],[-68,-13],[-52,-3],[-96,-16],[-14,-2],[-27,6],[-15,16],[-2,9],[9,13],[5,6],[4,7],[39,26],[16,19],[3,40],[-8,15],[0,1],[-1,1],[-5,5],[-21,26],[-10,7],[-12,10],[-41,22],[-66,44],[-43,37],[-40,10],[-46,-7],[-80,-3],[-109,11],[-73,2],[-48,-24],[-52,-24],[-40,-10],[-75,-36],[-91,-11],[-89,-17],[-11,-5],[-30,-15],[-7,-4],[-17,-21],[-5,-32],[8,-18],[-10,-43],[-39,-48],[-32,-55],[-5,-7],[-8,-9],[-23,-15],[-21,-4],[-3,0],[-21,3],[-42,22],[-12,7],[-16,2],[-5,1],[-16,3],[-11,-1],[-31,-23],[-5,-58],[35,-135],[3,-32],[-6,-65],[16,-26],[18,-28],[1,0],[16,-17],[21,-42],[-25,-8],[-41,-22],[-25,-14],[-28,-16],[-19,-10],[-21,-10],[-24,-15],[-16,-34],[-18,-20],[-27,-18],[-27,-19],[-11,-10],[-11,12],[-23,-22],[-57,-14]],[[27879,77543],[-46,-15],[-31,-21],[-37,4],[-27,1],[-23,4],[-32,15],[-27,13],[-24,5],[-26,3],[-24,5],[-19,8],[-23,13],[-24,8],[-48,1],[-31,2],[-26,-6],[-28,-4],[-43,15],[-78,40],[-23,11],[-19,11],[-22,16],[-25,8],[-24,5],[-21,14],[-20,11],[-37,12],[-24,0],[-23,7],[-17,13],[-26,7],[-27,3],[-24,-1],[-27,-3],[-22,-1],[-28,4],[-29,7],[-28,10],[-30,12],[-23,6],[-23,6],[-22,6],[-37,12],[-23,10],[-27,6],[-32,-32],[-28,1],[-69,-38],[-41,-29],[-21,12],[-25,20],[2,-29],[-8,-68],[0,-29],[2,-37],[-2,-32],[0,-164],[0,-23],[4,-53],[-4,-69],[0,-68],[1,-32],[2,-29],[-2,-75],[1,-22],[-1,-22],[-1,-67],[-2,-35],[0,-24],[0,-38],[0,-35],[2,-91],[-5,-23],[2,-66],[0,-5],[1,-56],[-2,-37],[-1,-35],[-4,-91],[0,-46],[0,-142],[0,-58],[0,-30],[0,-3],[0,-20],[-2,-113],[-2,-62],[4,-59],[2,-48],[0,-35],[-1,-32],[0,-25],[-3,-113],[0,-25],[4,-28],[-7,-76],[1,-29],[4,-26],[2,-49],[-2,-71],[-1,-28],[0,-14],[-1,-38],[0,-25],[0,-30],[0,-26],[-1,-27],[-4,-36],[2,-23],[3,-25],[0,-39],[0,-62],[0,-26],[0,-83],[1,-48],[0,-15],[0,-11],[-1,-41],[-1,-8],[-2,-13],[0,-1],[-1,-23],[4,-86],[-2,-65],[2,-56],[2,-47],[-2,-37],[-2,-23],[1,-19],[1,-13],[0,-28],[2,-24],[0,-4],[2,-33],[-1,-35],[-1,-86],[0,-54],[0,-30],[-2,-46],[-2,-43],[0,-34],[0,-30],[0,-22],[0,-58],[2,-27],[-2,-61],[1,-25],[1,-30],[-2,-28],[-5,-14],[-6,-17],[0,-12],[0,-33],[-1,-28],[0,-12],[0,-14],[0,-26],[-1,-27],[0,-28],[-3,-24],[-1,-60],[1,-45],[0,-24],[1,-10],[0,-24],[0,-26],[-1,-57],[0,-25],[0,-27],[0,-38],[0,-26],[0,-32],[0,-26],[0,-24],[0,-1],[-1,-33],[0,-31],[0,-23],[0,-22],[0,-26],[0,-26],[-1,-27],[0,-32],[-1,-25],[0,-23],[0,-38],[-1,-54],[0,-26],[0,-23],[-1,-31],[0,-42],[-1,-26],[0,-28],[0,-23],[0,-51],[-1,-39],[0,-105],[1,-105],[0,-4],[0,-64],[0,-31],[-1,-26],[-2,-30],[1,-39],[3,-59],[0,-2],[1,-6],[1,-17],[2,-28],[0,-39],[0,-7],[0,-89],[-1,-42],[-2,-25],[-1,-12],[0,-40],[-2,-51],[2,-37],[-6,-184],[-2,-39],[-2,-39],[-2,-93],[-1,-53],[-1,-56],[-2,-82],[-1,-22]],[[26338,70874],[-76,-2],[-42,-1],[-56,2],[-22,0],[-29,0],[-90,-1],[-3,0],[-98,4],[-1,0],[-26,0],[-79,2],[-100,0],[-50,0],[-100,0],[-24,0],[-43,0],[-22,0],[-4,0],[-50,1],[-17,1],[-25,0],[-31,0],[-13,1],[-23,1],[-23,0],[-65,0],[-23,3],[-315,4],[-86,2],[-107,0],[-49,1],[-31,1],[-124,0],[-125,0],[-27,0],[-5,0],[0,-4],[0,-39],[-34,-1],[-18,-1],[-3,0],[0,-4],[-2,-25],[5,-26],[1,-18],[1,-22],[-3,-24],[-37,0],[-63,0],[0,15],[0,4],[2,29],[-1,34],[-1,16],[0,6],[0,3],[0,3],[-2,32],[2,23],[-26,0],[-73,0],[0,-5],[-2,-30],[-2,-79],[0,-36],[0,-29],[0,-10],[-2,-40],[0,-4],[0,-63],[0,-12],[0,-68],[-1,-27],[1,-29],[0,-29],[-1,-31],[-5,-29],[0,-12],[-1,-16],[-1,-26],[0,-26],[0,-31],[0,-5],[-1,-21],[0,-28],[0,-27],[-1,-31],[0,-30],[0,-81],[-1,-24],[0,-166],[0,-26],[-1,-47],[0,-31],[1,-23],[0,-24],[-1,-30],[0,-48],[-1,-70],[0,-42],[1,-29],[2,-45],[4,-80],[-1,-26],[0,-35],[-1,-38],[-6,-27],[-1,-23],[-1,-31],[-3,-55],[0,-47],[0,-97],[3,-36],[4,-39],[0,-65],[-1,-23],[-1,-26]],[[24062,68786],[-10,-2],[-113,-23],[-10,-2],[-162,-33],[-34,-8],[-55,-13],[-25,-5],[-42,-10],[-48,-11],[-25,-5],[-1,0],[-87,-17],[-21,-5],[-230,-60],[-202,-41],[-25,-5],[-55,-12],[-91,-25],[-97,-26],[-27,-7],[-166,-44],[-188,-51],[-6,-1],[-85,-23],[-22,-6],[-2,-1],[-24,-3],[-23,-5],[-36,-8],[-33,-7],[-115,-26],[-100,-25],[-58,-15],[-124,-35],[-66,-19],[-27,-7],[-21,-6],[-11,-3],[-91,-22],[-30,-8],[-69,-17],[-27,-6],[-28,-7],[-144,-40],[-17,-19],[-13,-19],[-14,-19],[-12,-24],[-9,-21],[-19,-13],[-19,-16],[-22,-8],[-22,5],[-33,0],[-27,-6],[-15,-18],[-20,-23],[-14,-17],[-5,-22],[-12,-21],[1,-26],[7,-24],[-3,-22],[-16,-18],[-25,-16]],[[20897,67744],[-143,-3],[-95,3],[-2,36],[-2,140],[-82,4],[-59,3],[-86,1],[-4,0],[-17,1],[-27,0],[-28,0],[-34,1],[-62,1],[-32,0],[-27,0],[-145,2],[-93,2],[-46,0],[-45,1],[-55,2],[-39,1],[-8,0],[-39,1],[-52,2],[-15,0],[-35,1],[0,-14],[-8,0],[-1,-24],[-13,-1],[-23,0],[-2,24],[-54,-1],[-34,-1],[-37,-1],[-24,-1],[-12,0],[-1,12],[-24,0],[-246,-1],[-42,0],[-249,-1],[-85,-1],[-348,-10],[-1,0],[-33,-1],[-1,0],[-31,0],[-166,-2],[-1,0],[-126,-1],[-71,-1],[-43,4],[-165,1],[-23,0],[-111,1],[-117,1],[-89,1],[-185,1],[-236,2],[-33,0],[-79,1],[-105,1],[-186,1],[-3,0],[-327,2],[-103,0],[-27,1],[-40,0],[-28,0],[-65,0],[-144,1],[-48,2]],[[15835,67938],[39,18],[36,36],[1,1],[64,14],[15,0],[66,-2],[5,-1],[29,-7],[7,-2],[43,-10],[5,-4],[5,-3],[10,-1],[92,-9],[16,-2],[39,5],[10,5],[47,24],[6,3],[4,3],[33,22],[38,17],[36,16],[24,17],[27,19],[21,15],[9,11],[21,23],[3,4],[3,19],[0,5],[2,13],[-7,21],[-2,3],[-38,57],[-22,23],[-17,18],[-49,43],[-14,19],[-22,30],[-5,24],[0,1],[-13,30],[-33,74],[-9,21],[-30,32],[-7,4],[-14,7],[-33,18],[-6,0],[-4,1],[-8,6],[-5,4],[-34,44],[-6,9],[-5,15],[3,20],[16,32],[7,11],[13,19],[4,7],[26,18],[12,7],[24,24],[10,23],[1,7],[1,6],[8,61],[29,88],[2,5],[6,10],[22,31],[2,3],[2,1],[17,11],[45,31],[17,11],[41,26],[21,13],[89,41],[28,9],[31,20],[12,23],[8,14],[3,4],[3,17]],[[16711,69284],[18,112],[2,21],[2,34],[9,22],[9,20],[8,22],[23,39],[3,3],[16,18],[5,5],[108,106],[37,40],[4,5],[8,6],[41,29],[8,6],[43,17],[63,25],[11,9],[71,51],[17,12],[6,7],[19,25],[20,15],[50,39],[20,21],[103,69],[101,39],[65,17],[27,13],[51,24],[3,1],[11,8],[29,38],[9,15],[31,56],[16,28],[11,14],[26,32],[67,83],[1,9],[5,31],[-6,10],[10,19],[30,23],[22,10],[35,-1],[25,-17],[53,-61],[31,-52],[6,-18],[4,-9],[18,-20],[22,-8],[25,-1],[4,0],[16,0],[17,5],[16,5],[10,3],[4,2],[10,7],[13,8],[41,46],[26,44],[10,16],[12,37],[11,83],[18,27],[9,8],[30,23],[70,34],[147,44],[30,14],[3,2],[45,25],[33,34],[16,17],[45,27],[68,16],[263,34],[42,6],[81,15],[62,22],[122,64],[23,12],[24,13],[24,11],[32,8],[7,1],[2,1],[12,2],[170,12],[59,-3],[31,7],[15,3],[33,14],[34,23],[4,3],[13,18],[21,28],[19,38],[-2,8],[0,1],[6,17],[28,48],[3,4],[0,1],[7,69],[-39,88],[-3,29],[10,98],[13,69],[13,16],[46,33],[24,6],[1,0],[2,0],[59,-6],[46,-21],[25,-12],[24,-3],[3,1],[23,3],[9,1],[36,11],[52,24],[61,41],[19,18],[26,35],[0,2],[9,38],[-2,16],[-6,36],[-1,4],[-4,8],[-40,72],[1,30],[13,16],[60,34],[170,55],[3,1],[30,20],[22,22],[3,4],[26,33],[11,13],[10,7],[20,13],[31,20],[55,21],[16,4],[19,4],[8,8],[15,14],[20,48],[42,31],[-15,29],[2,3],[2,3],[1,0],[49,49],[31,105],[0,2],[2,4],[1,3],[2,4],[2,3],[2,3],[2,3],[3,3],[3,2],[3,3],[3,2],[1,1],[115,73],[2,0],[3,2],[3,2],[4,1],[3,1],[4,1],[4,1],[3,0],[4,0],[74,0],[16,0],[4,0],[4,0],[3,-1],[2,0],[24,-6],[13,4],[34,38],[18,62],[1,5],[1,3],[1,4],[2,3],[2,3],[2,4],[31,47],[2,3],[3,3],[2,3],[71,72],[23,25]],[[21555,72932],[1,0],[4,4],[2,3],[2,1],[78,65],[1,0],[13,11],[55,44],[154,122],[38,31],[67,53],[132,105],[1,1],[3,2],[132,88],[3,2],[2,1],[83,44],[4,3],[32,16],[1,1],[30,19],[1,0],[3,2],[4,1],[3,2],[4,1],[3,1],[1,0],[3,0],[43,84],[24,48],[43,63],[52,33],[11,8],[82,54],[59,26],[34,17],[96,46],[145,93],[3,2],[21,21],[7,7],[36,35],[74,54],[40,63],[1,11],[29,32],[17,12],[10,10],[54,57],[6,7],[55,57],[26,18],[33,14],[4,0],[32,5],[72,25],[81,58],[3,3],[30,35],[8,18],[46,46],[107,94],[19,12],[36,14],[2,0],[5,1],[46,4],[17,-8],[50,-22],[60,-26],[49,-30],[24,37],[1,2],[5,10],[19,35],[8,16],[-5,3],[-4,2],[2,11],[1,5],[-11,24],[-18,23],[-17,22],[-57,102],[-9,33],[-7,47],[13,19],[0,1],[32,77],[2,18],[-1,29],[0,17],[-1,12],[-4,10],[-14,30],[-14,19],[4,28],[78,88],[8,5],[23,16],[9,14],[4,5],[0,4],[4,24],[-7,21],[-19,25],[-8,10],[-10,24],[9,37],[3,7],[28,27],[13,13],[41,40],[0,10],[0,17],[-5,6],[2,20],[5,9],[73,73],[12,11],[91,50],[3,2],[0,6],[-2,101],[-28,47],[5,34],[56,50],[4,2],[2,18],[-5,15],[-38,47],[-3,4],[-7,24],[11,45],[32,43],[2,3],[-1,5],[-7,28],[-1,3],[-11,17],[-60,89],[-27,29],[-12,13],[-7,21],[6,56],[70,62],[92,63],[27,44],[4,28],[20,42],[31,20],[71,19],[34,14],[13,9],[82,54],[37,14],[120,69],[35,22],[33,30],[65,77],[64,60],[58,43],[99,107],[17,11],[-1,7],[39,49],[23,21],[95,57],[47,36],[52,47],[25,35],[94,85],[-15,98],[0,1],[-26,32],[5,37],[30,17],[45,6],[8,1],[2,0],[40,1],[17,1],[19,13],[3,36],[1,13],[6,14],[10,9],[10,9],[6,58],[6,51],[2,24],[1,21],[3,45],[-3,26],[0,1],[0,1],[-5,7],[-11,20],[-21,22],[-15,7],[-56,30],[-14,5],[-13,4],[-24,11],[-22,4],[-28,-3],[-23,1],[-20,22],[-18,13],[-23,12],[6,27],[18,12],[-15,28],[-20,13],[-24,9],[-23,7],[-18,14],[-4,25],[-17,15],[-12,20],[-13,25],[-11,21],[-24,11],[-11,21],[2,21],[-5,22],[-26,-3],[-23,-5],[-22,4],[0,22],[22,15],[-5,23],[-21,16],[-2,21],[9,21],[-11,20],[23,9],[25,17],[12,18],[-19,19],[-9,26],[-1,28],[5,22],[22,17],[-6,25],[-17,16],[-17,15],[-25,4],[3,28],[11,25],[-4,31],[-6,25],[-13,26],[-17,16],[-26,16],[1,24],[19,20],[11,21],[-18,15],[-18,13],[-20,13],[-27,-16],[-21,9],[-16,16],[-13,17],[-9,32],[-14,29],[-19,11],[-14,18],[-5,25],[12,21],[8,26],[-4,34],[1,23],[-16,23],[-24,6],[-31,9],[-23,8],[-24,12],[-22,16],[-16,16],[-3,23],[-13,27],[0,131],[0,10],[0,19],[1,42],[1,123],[0,66]],[[37519,81198],[-25,-52],[-19,-49],[-10,-23],[-10,-24],[-15,-38],[-28,-69],[0,-1],[-15,-37],[-25,-62],[-13,-34],[-42,-101],[-10,-26],[-19,-46],[-10,-25],[-8,-22],[-11,-27],[-9,-21],[-14,-36],[-19,-46],[-18,-44],[-4,-12],[-4,-10],[-81,-198],[-27,-67],[-16,-39],[-17,-44],[-8,-21],[-18,-44],[-20,-48],[-20,-50],[-21,-51],[-13,-33],[-16,-39],[-13,-32],[-1,-1],[-68,-169],[-36,-91],[-16,-40],[-10,-26],[-30,-74],[-16,-40],[-27,-68],[-9,-22],[-14,-37],[-15,-37],[-13,-30],[-11,-28],[-9,-21],[-9,-23],[-13,-32],[-13,-32],[-14,-36],[-13,-32],[-12,-31],[-15,-37],[-31,-77],[-9,-23],[-8,-22],[-12,-34],[-11,-24],[-16,-33],[-19,-32],[-4,-6],[-5,-8],[41,-14],[34,-30],[20,-17],[14,-18],[10,-12],[8,-14],[9,-11],[23,-28],[27,-34],[3,-4],[14,-18],[70,-57],[46,-21],[62,-25],[65,-35],[0,-1],[10,-2],[8,-2],[16,-5],[47,-38],[20,-20],[12,-7],[28,-16],[7,-4],[6,-4],[12,-3],[2,0],[1,0],[8,-6],[16,-20],[3,-5],[25,-53],[27,-57],[10,-26],[5,-13],[1,-1],[-4,-13],[7,-20],[1,-4],[29,-92],[14,-43],[1,-4],[22,-39],[0,-1],[5,-2],[18,-6],[1,-1],[84,-13],[21,-4],[10,-4],[86,-68],[21,-24],[10,-15],[2,-5],[20,-28],[1,-2],[61,-56],[31,-23],[12,-19],[5,-16],[2,-15],[4,-28],[1,-10],[7,-46],[1,-7],[5,-2],[66,-27],[3,-1],[2,-2],[7,-6],[4,-5],[11,-29],[12,-29],[5,-4],[11,0],[14,-1],[7,-3],[5,-6],[7,-17],[2,-7],[1,-3],[0,-15],[-5,-27],[11,-62],[3,-9],[21,-65],[4,-8],[8,-7],[11,-9],[5,-5],[1,1],[23,0],[5,-1],[1,0],[4,-6],[26,-34]],[[37905,76943],[-37,-30],[-21,-16],[-19,-16],[-18,-15],[-17,-14],[-23,-18],[-19,-16],[-26,-21],[-25,-20],[-23,-19],[-203,-166],[-81,-66],[-59,-48],[-145,-119],[-33,-27],[-36,-30],[-110,-90],[-28,-22],[-2,-2],[-92,-75],[-32,-26],[-40,-32],[-44,-37],[-41,-34],[-18,-14],[-80,-66],[-57,-46],[-138,-114],[-28,-23],[-23,-19],[-72,-59],[-25,-21],[-21,-17],[-44,-36],[-181,-148],[-25,-21],[-52,-42],[-24,-20],[-42,-34],[-94,-78],[-1,0],[-49,-41],[-10,-8],[-40,-32],[-34,-26],[-41,-31],[-5,-4],[-17,-14],[-97,-74],[-51,-41],[-17,-13],[-31,-24],[-75,-59],[-50,-38],[-29,-23],[-66,-50],[-23,-18],[-34,-26],[-26,-21],[-61,-48],[-69,-54],[-85,-66],[-91,-70],[-16,-13],[-42,-33],[-41,-32],[-67,-51],[-36,-29],[-26,-20],[-84,-65],[-83,-64],[-33,-28],[-62,-50],[-34,-28],[-63,-52],[-18,-15],[-45,-38],[-38,-31],[-1,-1],[-52,-46]],[[34064,73849],[-27,-21],[-24,-17],[-44,-37],[-53,-43],[-28,-23],[-22,-18],[-45,-36],[-17,-15],[-25,-21],[-32,-27],[-56,-48],[-2,-1],[-59,-50],[-140,-116],[-175,-145],[-21,-17],[-103,-82]],[[33191,73132],[-57,6],[-90,43],[-34,21],[-37,12],[-86,25],[-43,-1],[-29,32],[-11,20],[-20,18],[-7,30],[-61,47],[-47,22],[-21,-6],[-26,14],[-25,15],[-27,29],[-32,47],[-28,23],[-22,17],[-18,13],[-3,2],[-7,1],[-140,26],[-24,4],[-55,9],[-24,4],[-121,58],[-22,24],[-178,200],[-18,20],[-22,26],[-57,36],[-27,18],[-34,45],[-33,26],[-36,23],[-20,30],[-14,24],[-40,22],[-20,7],[-35,7],[-23,8],[-25,20],[-52,39],[-33,20],[-99,51],[-150,201],[-23,26],[-28,11],[-58,84],[-6,8],[-7,9],[-31,44],[-102,113],[-26,75],[-19,27],[-70,41],[-36,27],[-27,13],[-71,24],[-67,51],[-7,21],[-31,35],[-19,19],[-73,76],[-55,60],[-26,19],[-50,11],[-24,6],[-32,14],[-93,47],[-30,3],[-24,3],[-24,1],[-23,8],[-18,11],[-2,1],[-33,34],[-24,24],[-32,33],[-44,45],[-36,11],[-22,7],[-47,15],[-21,2],[-31,-9],[-18,6],[-5,2],[-33,17],[-17,8],[-5,3],[-48,33],[-40,26],[-44,30],[-25,5],[-37,0],[-25,7],[-22,10],[-30,12],[-14,37],[-6,22],[-4,25],[-34,24],[-32,17],[-110,88],[-43,18],[-25,10],[-33,49],[-47,57],[-37,45],[-18,20],[-31,0],[-26,32],[-21,27],[-20,25],[-101,129],[-1,0],[-33,17],[-42,21],[-26,14],[-13,9],[-8,5],[-98,41],[-27,11],[-21,17],[-24,18],[-54,23],[-35,13],[-41,17],[-36,28],[-41,33],[-23,38],[-24,37],[-4,4],[-10,14],[-25,17],[-5,11],[-21,45],[-41,95],[-26,69],[-7,27],[-1,5],[-8,28],[-10,21],[-9,20],[-9,20],[-11,22],[-17,26],[-23,33],[-15,20],[-16,27],[-16,23],[-25,50],[42,21],[74,34],[15,7],[-11,16],[-17,27],[-58,85],[-32,51],[-30,-15],[-51,-18],[-9,24],[-13,48]],[[43398,77720],[-56,-33],[-25,-14],[-38,-20],[-40,-22],[-96,-52],[-88,-49],[-99,-54],[-54,-29],[-19,-11],[-16,-9],[-6,-3],[-38,-22],[-24,-13],[-14,-8],[-89,-49],[-77,-42],[-25,-14],[-20,-11],[-7,-4],[-31,-17],[-31,-17],[-21,-12],[-43,-24],[-38,-22],[-72,-40],[-34,-19],[-60,-33],[-32,-19],[-21,-11],[-26,-15],[-157,-88],[-91,-52],[-75,-42],[-21,-12],[-2,-1],[-154,-86],[-23,-14],[-54,-30],[-31,-19],[-175,-98],[-37,-21],[-69,-38],[-110,-61],[-6,-4],[-55,-31]],[[41098,76435],[-39,35],[-4,1],[-3,0],[-22,-3],[-29,0],[-112,10],[-7,3],[-6,3],[-148,76],[-7,6],[-3,15],[-2,9],[0,4],[-5,38],[-4,8],[-3,2],[-5,3],[-55,14],[-12,2],[-18,2],[-3,1],[-134,18],[-27,-11],[-52,-48],[-10,-7],[-36,-25],[-9,-6],[-63,-35],[-11,-6],[-13,-1],[-7,-1],[-14,1],[-144,5],[-35,1],[1,-4],[-3,-8],[-1,-3],[-4,-3],[-3,-3],[-84,-86],[-20,-14],[-29,-12],[-2,-1],[-3,0],[-67,1],[-21,-2],[-27,-3],[-46,-8],[-17,-3],[-89,-47],[-3,-2],[-6,-3],[-41,-15],[-46,-18],[-29,-11],[-16,-6],[-49,-18],[-5,-2],[-41,-9],[-31,38],[-7,3],[-4,2],[-18,-5],[-12,-2],[-18,-5],[-6,-4],[0,-3],[-6,-8],[-6,-1],[-5,-2],[-3,0],[-19,-1],[-99,-2],[-15,4],[-14,9],[-10,9],[-5,9],[-5,28],[-5,28],[-42,44],[-1,0],[-8,7],[-4,0],[-5,0],[-1,-1],[-3,-2],[8,-81],[0,-1],[-42,-49],[-2,-3],[-45,-37],[-34,-14],[-16,-1],[-3,0],[-10,3],[-1,0],[-21,14],[-26,12],[-2,0],[-3,1],[-5,1],[-15,0],[-67,-20],[-6,-2],[-4,-1],[-29,-19],[-16,-17],[-4,-5],[-3,-7],[-6,4],[-26,18],[-29,21],[-5,9],[-2,6],[-3,6],[-9,19],[5,8],[9,6],[4,2],[5,3],[5,8],[1,9],[2,10],[3,22],[-21,79],[-5,17],[-3,11],[-9,9],[-5,6],[-45,22],[-4,2],[-2,1],[-32,-11],[-18,4],[-13,6],[-130,51],[-20,19],[-9,7],[-14,19],[-2,4],[-4,6],[-10,23],[-2,1],[-48,25],[-15,8],[-35,18],[-10,5],[-11,9],[-6,7],[-2,7],[-3,11],[-5,2],[-4,1],[-19,3],[-53,28],[-45,33],[-30,24],[-53,46],[-16,19],[0,2],[0,3],[-18,10],[-17,10],[-11,8],[-5,42],[-2,7]],[[14322,80229],[-16,-29],[-12,-23],[-51,-92],[-47,-90],[-15,-36],[-19,-48],[-72,-177],[-22,-55],[-42,-102],[-40,-100],[-43,-106],[-12,-27],[-37,-91],[-11,-29],[-19,-47],[-44,-108],[-10,-26],[-11,-26],[-9,-22],[-15,-37],[-25,-61],[-20,-50],[-23,-57],[-32,-78],[-38,-94],[-66,-162],[-20,-55],[-9,-23],[-29,-69],[-30,-74],[-51,-129],[-8,-21],[-9,-21],[-4,-11],[-12,-29],[-28,-71],[-28,-70],[-10,-25],[-23,-56],[-16,-39],[-9,-22],[-9,-22],[-14,-34],[-13,-34],[-9,-22],[-62,-152],[-30,-70],[-71,2],[-8,0],[-5,0],[-246,4],[-43,1],[-46,1],[-19,-1],[-7,0],[-58,1],[-49,1],[-41,1],[-41,0],[-71,2],[-88,2],[-89,2],[-24,0],[-85,1],[-336,7],[-117,2],[-49,1],[-1,-79],[0,-25],[0,-25],[0,-31],[-1,-31],[-1,-129],[0,-47],[-1,-41],[-2,-182],[-1,-137],[-1,-119],[-2,-163],[-2,-28]],[[11643,76397],[-286,4],[-56,1],[-392,6],[-22,0],[-25,0],[-156,1],[-72,0],[-210,2],[-93,0],[-140,1],[-76,1],[-36,2],[-180,2],[-97,1],[-78,1],[-62,0],[-121,2],[-48,0],[-84,1],[-78,1],[-71,1],[-68,1],[-58,0],[-332,4],[-95,1],[-137,1],[-26,1],[-122,2],[-140,2],[-47,0],[0,-108],[0,-44],[-48,0],[-68,1],[-163,2],[-139,2],[-3,0],[-183,2],[-116,3],[-70,1],[-87,2],[-7,0],[-41,0],[-271,5],[-51,1],[-280,4],[-118,1],[-64,2],[-153,2],[-152,2],[-80,1],[-56,0],[-267,4],[-187,3],[-315,5],[-60,1],[-193,3],[-45,2],[-180,2],[-193,2],[-58,1]],[[4587,76338],[-28,149],[-34,181],[-94,488],[-39,202],[-5,30],[-27,139],[-4,22],[-1,3],[-9,46],[-16,83],[-11,60],[-5,25],[-59,310],[-51,265],[-22,115],[-18,50],[-55,292],[-30,159],[-1,7],[-33,173],[-71,379],[-43,228],[-13,71],[-20,106],[-17,88],[-15,81],[-19,103]],[[21555,72932],[0,49],[-25,34],[-38,51],[-16,22],[-73,98],[-16,22],[-69,93],[-17,24],[-34,46],[-35,48],[-67,88],[-15,21],[-27,36],[-14,19],[-48,62],[-2,3],[-22,28],[-23,32],[-36,50],[-18,24],[-77,103],[-54,60],[-63,96],[-13,23],[-19,32],[-54,61],[-15,21],[-10,-3],[-13,-3],[-22,32],[-25,38],[-31,6],[-23,2],[-1,0],[-49,2],[-31,2],[-25,1],[-24,3],[-31,-2],[-28,0],[-3,0],[-25,-2],[-34,-1],[-31,1],[-32,3],[-35,1],[-24,0],[-43,1],[-61,1],[-19,0],[-27,0],[-25,0],[-14,0],[-18,1],[-43,3],[-86,0],[-141,0],[-87,2],[-23,1],[-72,0],[-180,2],[-42,0],[-165,2],[-69,0],[-237,2],[-132,10],[-28,-1],[-25,0],[-34,-2],[-26,0],[-80,-1]],[[18491,74279],[-1,27],[0,208],[-1,322],[-1,822],[-1,243],[0,266],[1,34],[4,139],[-1,23],[-1,13],[-1,10],[0,24],[1,41],[1,32],[2,96],[0,27],[1,23],[2,45],[0,27],[0,23],[2,61],[1,58],[2,101],[2,102],[0,4],[1,35],[1,78],[2,70],[-1,91],[-23,3],[-102,1],[-25,0],[-21,0],[-75,0],[-24,2],[-9,1],[-62,-6],[2,143],[0,27],[2,74],[1,23],[-1,30],[0,40],[0,27],[0,27],[-1,28],[-2,30],[0,26],[2,71],[2,111],[0,1],[0,134],[2,131],[1,75],[1,132],[0,67],[0,69],[4,230],[1,58],[1,161],[0,57],[2,103],[0,12],[2,41],[1,47],[0,29],[1,36],[2,120],[1,97],[2,106],[2,111],[1,80],[1,27],[1,37],[3,140],[4,80]],[[18491,74279],[0,-131],[0,-184],[0,-61],[-28,-1],[-505,-47],[-1063,-98],[-513,-48],[-129,-12],[-999,-92],[-138,32],[-1,0],[-248,68],[-9,2],[-40,11],[-2,0],[-52,14]],[[14764,73732],[-68,25],[-162,55],[-125,42],[-24,6],[-328,85],[-118,30],[-38,10],[-52,13],[-24,6],[-55,15],[-24,6],[-441,115],[-16,3],[-158,29],[-134,25],[-166,43],[-28,6],[-43,6],[-49,3],[-101,13],[-82,15],[-62,12],[-138,27],[-25,5],[-59,11],[-54,11],[-83,16],[-179,34],[-23,5]],[[11905,74404],[2,144],[1,136],[1,35],[1,55],[0,1],[0,39],[1,25],[0,91],[-3,97],[0,6],[3,30],[1,31],[1,35],[0,26],[2,39],[1,31],[1,28],[-1,24],[1,72],[0,59],[1,27],[-1,85],[0,22],[0,23],[1,25],[4,23],[-3,23],[-3,28],[6,101],[1,59],[1,63],[4,329],[2,78],[0,27],[1,73],[-190,2],[-2,0],[-22,0],[-25,0],[-49,1]],[[59302,77830],[-23,-30],[-1,-1],[-8,-15],[-2,-10],[-2,-5],[2,-4],[10,-13],[1,-3],[7,-20],[-3,-19],[-4,-13],[-68,-129],[-5,-9],[-12,-7],[-18,-6],[-8,-2],[-21,-10],[-18,-15],[-14,-23],[-23,-36],[-20,-11],[-43,-55],[-3,-4],[-15,-19],[-10,-14],[-4,0],[-5,1],[-12,2],[-38,6],[-23,8],[-27,17],[-23,2],[-4,1],[-1,0],[-11,-2],[-7,-2],[-18,-7],[-1,-1],[-33,-2],[-23,-1],[-2,-2],[-46,-28],[-2,-1],[0,-21],[-1,-3],[-3,-12],[-9,-11],[-24,-16],[-43,-15],[-10,0],[-5,-1],[-11,0],[-18,6],[-27,13],[-10,-1],[-15,-2],[-6,-3],[-13,-13],[-7,-7],[-12,-10],[-15,-19],[-7,5],[-24,16],[-1,0],[-9,5],[-6,0],[-2,0],[-29,-8],[-2,-1],[-13,-7],[-3,-2],[-4,-11],[-3,-9],[-9,-8],[-3,-2],[-1,-1],[-19,-12],[-11,-6],[-20,-10],[-187,-26],[-13,0],[-10,-1],[-116,-3],[-37,11],[-11,1],[-35,2],[-7,0],[-27,0],[-19,-6],[-6,-8],[-47,-59],[0,-4],[2,-18],[0,-3],[1,-1],[1,-17],[-6,-4],[-4,0],[-22,1],[-6,-3],[-2,-1],[-7,-5],[-25,-32],[-3,-8],[7,-30],[0,-13],[-2,-12],[-12,-29],[-9,-8],[-8,-4],[-6,-4],[-21,-4],[-4,-1],[-14,-1],[-9,0],[-35,11],[-8,2],[-95,-38],[-1,0],[-28,-18],[-15,-9],[-11,-6],[-77,-53],[-89,-90],[-14,-11],[-69,-59],[-25,-21],[-96,-83],[-11,-10],[-32,-28],[-9,-8],[-6,-3],[9,-17],[10,-24],[4,-28],[-17,-25],[-16,-23],[-17,-31],[-19,-34],[-8,-27],[-5,-35],[-18,-15],[-18,-12],[-22,-12],[-23,-13],[-21,-18],[-7,-24],[-12,-22],[-9,-20],[-24,-26],[-17,-21],[-20,-19],[-17,-22],[-27,-24],[-15,-15],[-19,-25],[-13,-21],[-15,-22],[-19,-17],[-26,-9],[-22,-11],[-43,-31],[-26,-9],[-32,-6],[-13,-24],[-14,-26],[-26,-41],[-14,-19],[-12,-20],[-20,-25],[-12,-31],[-13,-21],[-9,-25],[4,-22],[-12,-24],[-21,-10],[-10,-24],[0,-24],[-2,-23],[-16,-28],[-7,-23],[-8,-28],[-19,-20],[-18,-14],[-16,-22],[-13,-23],[-16,-14],[-21,-18],[-26,-16],[-18,-17],[-24,-8],[-22,-7],[-25,2],[-25,0],[-35,-14],[-29,-3],[-21,2],[-21,12],[-24,0],[-33,-1],[-23,-11],[0,-26],[-9,-24],[-22,-1],[-22,-16],[-16,-27],[-21,-39],[-10,-20],[-7,-21],[-18,-19],[-11,-21],[2,-24],[-6,-25],[-10,-22],[-12,-23],[-21,-13],[-27,-18],[-12,-35],[-14,-16],[3,-24],[-8,-27],[-18,-12],[-22,-20],[-10,-25],[18,-12],[5,-22],[-10,-20],[-6,-30],[-20,-20],[-15,-16],[-11,-19],[-5,-22],[-4,-21],[-20,-18],[-7,-24],[4,-22],[-5,-24],[-17,-18],[-14,-28],[-27,-13],[-25,-10],[-24,-4],[-25,-14],[-22,-18],[-24,-17],[-8,-30],[-21,-17],[-24,-3],[-21,-18],[-25,-22],[-31,-7],[-27,-10],[-17,-18],[1,-28],[-6,-28],[-3,-28],[-2,-11],[-5,-24],[-8,-21],[-22,-10],[-1,-25],[-6,-31],[-19,-26],[-6,-32],[-22,-18],[-27,-8],[-18,-22],[-30,-4],[-12,-18],[-3,-26],[21,-17],[-4,-21],[-10,-23],[-15,-18],[-22,-13],[28,-34],[40,-43],[66,-72],[24,-26],[34,-39],[18,-19],[37,-39],[24,-27],[23,-23],[34,-38],[70,-75],[39,-43],[34,-37],[34,-37],[22,-23],[34,-38],[19,-27],[13,-19],[18,-30],[12,-20],[122,-213],[54,-101]],[[55744,72710],[-138,-105],[-20,-15],[-19,-13],[-110,-81],[-128,-94],[-43,-32],[-1,-1],[-28,-21],[-72,-52],[-42,-31],[-51,-37],[-22,-2],[-22,0],[-18,-16],[-23,-19],[-24,-7],[-23,-17],[-27,-17],[-22,-18],[-11,-18],[-23,-34],[-6,-21],[-19,-19],[-34,-23],[11,-21],[12,-21],[2,-24],[-13,-20],[-36,-32],[-14,-17],[-11,-25]],[[54769,71857],[-17,5],[-19,1],[-51,-11],[-3,-1],[-3,-3],[-28,-27],[-9,-4],[-17,-6],[-101,-29],[-1,-1],[-11,0],[-13,2],[-137,23],[-1,0],[-87,48],[-26,15],[-15,21],[-85,97],[-1,0],[-72,36],[-9,4],[-21,7],[-31,21],[-14,19],[-7,13],[-23,21],[-20,15],[-12,3],[-43,9],[-14,19],[-54,71],[-10,7],[-33,19],[-137,79],[-33,-9],[-122,-32],[-123,-32],[-77,-20],[-77,-20],[-56,-15],[-147,-37],[-32,-8],[-129,-35],[-287,-65],[-74,-18],[-28,-6],[-71,-17],[-63,-15],[-140,-31],[-34,14],[-13,6],[-51,23],[-41,16],[-164,65],[-151,59],[-169,67],[-101,40],[-130,52],[-184,73],[-170,68],[-105,42],[-99,39],[-100,40],[-79,32],[-163,64],[-24,10],[-110,44],[-42,17],[-180,72],[-35,14],[-156,62],[-260,103],[-181,72],[-39,15],[-39,16],[-56,22],[-55,22],[-36,14],[-35,14],[-65,26],[-63,26],[-55,22],[-32,13],[-71,28],[-44,18],[-32,13],[-28,11]],[[48793,73324],[-9,28],[-6,23],[-11,23],[-18,25],[-27,41],[-13,17],[-14,26],[0,30],[4,39],[9,46],[9,25],[11,20],[16,36],[3,8],[13,26],[1,1],[14,17],[8,28],[-20,39],[-13,19],[-17,17],[12,24],[-2,8],[-2,9],[-2,10],[-1,2],[-2,1],[-33,19],[-35,12],[-28,3],[-29,11],[-1,2],[-11,20],[-18,21],[-9,8],[-9,9],[-6,12],[-18,37],[-18,22],[-10,6],[-10,7],[-4,33],[-2,11],[-3,36],[-1,12],[-1,10],[1,4],[7,35],[3,29],[-1,31],[14,24],[21,16],[11,19],[-4,3],[-24,17],[-20,9],[-23,13],[-28,23],[-21,7],[-29,0],[-39,-12],[-30,-7],[-29,-21],[-25,-7],[-21,3],[1,2],[162,213],[25,30],[97,116],[49,59],[52,64],[19,24],[63,80],[31,39],[48,59],[49,61],[32,45]],[[48881,75181],[25,32],[31,51],[76,125],[38,63],[23,37],[66,111],[46,76],[16,27],[28,46],[13,21],[27,45],[12,20],[14,24],[14,18],[20,33],[14,25],[58,100],[26,45],[33,51],[24,39],[83,136],[0,1],[21,35],[18,29],[14,25],[-17,19],[-22,24],[-18,20],[-32,34],[-25,27],[-21,23],[-22,23],[-23,24],[-19,21],[-17,19],[-37,42],[-38,43],[-32,37],[-22,25],[-23,26],[-41,47],[-46,52],[-21,24],[-70,78],[-21,25],[-60,69],[-49,56],[-21,24],[-28,31],[-11,20],[-13,23],[-10,19],[-12,33],[-5,25],[-6,33],[-5,24],[-5,27],[-5,26],[-4,26],[25,14],[27,4],[21,5],[20,5],[29,11],[30,15],[25,16],[22,14],[15,16],[21,28],[17,21],[15,27],[12,33],[5,41],[0,34],[-6,37],[-9,28],[-11,22],[-14,20],[-14,20],[-26,27],[-33,25],[-28,17],[-33,14],[-37,10],[59,44],[21,15],[22,14],[32,17],[1,67],[1,96],[0,42],[0,32],[4,170],[28,-10],[32,-9],[32,-12],[40,-14],[24,-2],[22,2],[43,11]],[[48881,75181],[-52,14],[-23,2],[-23,1],[-25,5],[-29,16],[-24,4],[-25,5],[-21,1],[-29,14],[-21,10],[-29,-3],[-24,-4],[-23,-4],[-27,-4],[-26,-3],[-25,-2],[-32,-1],[-40,0],[-42,0],[-23,5],[-22,6],[-27,8],[-22,9],[-16,15],[-19,19],[-22,19],[-19,11],[-27,11],[-22,8],[-28,4],[-26,-4],[-38,-9],[-24,-5],[-30,-6],[-23,-1],[-31,2],[-26,1],[-24,2],[-24,5],[-20,21],[13,18],[3,30],[-18,16],[-7,4],[-15,9],[3,22],[23,8],[16,4],[9,2],[12,19],[6,27],[0,31],[-12,22],[-20,22],[-1,1],[-25,27],[-13,14],[-6,7],[-19,14],[-14,7],[-12,5],[-33,16],[-24,7],[-26,-1],[-23,5],[-29,22],[-34,23],[-1,1],[-6,2],[-8,2],[-7,2],[-9,0],[-15,1],[-21,5],[-2,1],[-23,12],[-23,3],[-3,0],[-21,12],[-5,11],[-4,12],[-4,14],[-9,29],[-24,-3],[-22,-9],[-24,-9],[-25,-9],[-8,1],[-19,2],[-28,-9],[9,-23],[0,-1],[-8,-25],[-23,-3],[-37,0],[-28,2],[-22,5],[-15,4],[-7,4],[-29,16],[-13,18],[-2,3],[-1,23],[3,32],[-9,24],[-20,23],[-27,19],[-5,21],[-2,23],[-16,18],[-16,23],[-9,22],[-24,3],[-41,-11],[-23,-6],[-26,-15],[-17,-15],[-24,1],[-8,11],[-16,23],[-12,23],[-15,20],[-10,19],[-28,15],[-1,1],[-6,5],[-12,8],[-10,35],[-26,10],[-33,5],[-23,17],[-26,8],[-16,20],[19,19],[26,7],[14,18],[-14,18],[-40,6],[-24,4],[-25,4],[-21,3],[-29,-1],[-29,12],[-17,18],[-29,22],[-14,25],[0,23],[0,12],[-2,38],[-11,26],[-22,9],[-21,12],[-27,10],[-17,21],[-24,3],[-21,11],[-1,0],[-23,5],[-20,25],[-5,22],[-29,4],[-27,5],[-15,17],[12,21],[-19,14],[-29,-10],[-2,24],[-4,1],[-18,6],[-27,14],[-26,15],[-18,-13],[-22,3],[-23,14],[-23,10],[-20,21],[-15,25],[-25,12],[-24,10],[-4,24],[22,16],[-16,22],[-23,18],[-14,18],[-24,7],[-35,-6],[-23,-8],[-24,0],[-25,6],[-21,-18],[-26,1],[-24,5],[-13,-21],[-18,-17],[-37,-8],[-19,-14],[-24,-9],[-32,-5],[-28,4],[-24,7],[-24,5],[-23,2],[-23,10],[-26,19],[-21,6],[-23,10],[-21,5],[-31,-1],[-11,-22],[-64,-7],[-21,1],[-36,10],[-30,13],[-25,11],[-37,9],[-23,6],[-29,-8],[-36,-8],[-2,1],[-30,3],[-24,9],[-14,17],[-18,24],[0,31],[-15,28],[-22,-6],[-40,-28],[-25,-11],[-23,-3],[-26,1],[-51,11],[-25,4],[-25,1],[-21,15],[-23,12],[-33,4],[-23,2],[-22,-1],[-28,3],[-28,7],[-35,10],[-27,7],[-28,-22],[-24,-14],[-20,-9],[-28,1],[-27,11],[-25,4],[-27,0],[-30,1],[-21,-10],[-21,-7],[-26,4],[-27,4],[-42,12],[-4,5],[-31,37],[-30,37],[-42,52],[-56,68],[-26,32],[-22,27],[-18,22],[-15,18],[-23,29],[-5,6],[-14,16],[-22,26],[-15,18],[-3,5],[-58,71],[-16,20],[-17,20],[-14,18],[-20,25],[-20,24],[-16,19],[-27,33],[-28,35],[-64,83]],[[62118,78112],[-4,-27],[12,-39],[30,-110],[1,-3],[12,-45],[11,-33],[1,-3],[20,-54],[35,-93],[12,-31],[25,-85],[76,-250],[28,-92],[54,-179],[7,-21],[13,-51],[26,-97],[55,-176],[18,-67],[10,-31],[20,-60],[15,-44],[4,-10],[77,-246],[15,-49],[13,-41],[8,-26],[0,-1],[10,-30],[19,-60],[13,-42],[9,-28],[16,-54],[18,-54],[157,-442],[22,3],[25,9],[14,19],[24,11],[22,5],[24,8],[14,32],[34,5],[24,31],[22,20],[18,17],[26,10],[23,10],[23,4],[38,7],[21,8],[18,20],[14,36],[65,20],[25,11],[33,16],[34,8],[24,8],[2,-3],[-1,-2],[1,-13],[16,-40],[16,-38],[8,-8],[41,-46],[28,-32],[1,-1],[7,-5],[-15,-39],[-16,-41],[-8,-20],[0,-1],[0,-1],[15,-60],[3,-13],[-2,-17],[-10,-19],[-7,-3],[-22,-3],[-7,-3],[-52,-52],[-13,-20],[-1,-9],[0,-3],[0,-4],[2,-9],[5,-22],[-2,-1],[-60,-32],[-64,-41],[-5,-5],[0,-1],[-3,-2],[-1,-17],[4,-7],[8,-12],[9,-13],[15,-23],[0,-8],[-2,-7],[-18,-53],[-5,-11],[-6,-5],[-11,0],[-33,-21],[-39,-25],[-8,-3],[-9,-7],[-35,-29],[-17,-13],[-19,-16],[-8,-8],[-19,-21],[-24,-27],[-3,-3],[-11,-13],[-7,-31],[5,-4],[22,-10],[20,-22],[86,-185],[84,-183],[34,-73],[12,-24],[74,-156],[93,-194],[35,-74],[13,-21],[15,-22],[19,-27],[39,-62],[26,-41],[31,-50],[21,-33],[69,-114],[40,-61],[1,-2],[13,-19],[73,-120],[26,-41],[22,-36],[23,-36],[34,-54],[23,-36],[129,-203],[1,0],[27,-46],[112,-178],[20,-31],[36,-57],[51,-82],[55,-90],[15,-25],[52,-85],[53,-88],[17,-26],[121,-193],[13,-21],[47,-76],[20,-32],[20,-32],[20,-32],[68,-107],[47,-74],[83,-130],[54,-78],[39,-67],[22,-36],[12,-19],[24,-40],[16,-27],[42,-69],[23,-38],[25,-41],[50,-79],[16,-25],[55,-84],[25,-37],[6,-8],[12,-21],[16,-28],[27,-46],[17,-30]],[[65600,70693],[-54,28],[-27,21],[-37,4],[-33,34],[-1,1],[-25,60],[-54,61],[-44,28],[-14,9],[-4,0],[-59,7],[-128,39],[-38,11],[-25,31],[-48,59],[-53,5],[-68,-41],[-74,-57],[-28,-32],[-10,-60],[0,-1],[-8,-10],[-47,-30],[-18,-9],[-63,8],[-36,15],[-100,15],[-58,-2],[-49,-1],[-10,-6],[-16,-10],[-5,-32],[10,-34],[2,-3],[8,-15],[-3,-21],[-9,-7],[-36,-29],[-47,-29],[-18,-12],[-28,-12],[-10,-5],[-54,6],[-36,18],[-12,10],[-30,23],[-31,2],[-27,2],[-39,-25],[-14,-40],[-8,-10],[-14,-9],[-14,-9],[-26,5],[-9,2],[-34,45],[1,5],[-27,72],[-32,36],[-48,22],[-32,4],[-13,-1],[-16,-11],[-2,0],[-4,-8],[-19,-91],[-12,-22],[-2,-3],[-18,-12],[-22,3],[-40,32],[-59,67],[-37,59],[-7,9],[-5,9],[1,3],[4,26],[-3,36],[-22,25],[-6,1],[-21,4],[-7,1],[-33,-20],[-11,-48],[-2,-166],[4,-13],[3,-11],[1,-4],[2,-2],[15,-17],[5,-6],[17,-10],[51,-6],[30,6],[3,1],[2,0],[17,-2],[8,-9],[-4,-27],[-3,-5],[-14,-18],[-18,-14],[-41,-33],[-13,-5],[-8,-1],[-14,2],[-33,15],[-14,13],[-32,29],[-4,8],[-4,12],[-3,22],[7,46],[-11,33],[-1,3],[-3,9],[-14,11],[-14,0],[-7,-3],[-2,-1],[-3,-3],[-7,-7],[0,-13],[0,-20],[-3,-29],[-2,0],[-105,-19],[-16,-3],[-1,-1],[-40,-23],[-27,-19],[-9,-6],[-6,-3],[-26,-14],[-21,-7],[-15,1],[-38,12],[-9,3],[-23,5],[-7,-1],[-12,-2],[-16,-8],[-13,-13],[-5,-6],[3,-28],[1,-5],[21,-31],[7,-13],[5,-13],[11,-56],[0,-2],[0,-1],[-2,-9],[-7,-8],[-3,-3],[-3,-4],[-7,-4],[-13,-1],[-25,8],[-20,19],[-3,6],[-6,17],[-1,36],[-2,15],[-3,16],[-11,33],[-6,18],[-13,7],[-17,3],[-12,3],[-10,-1],[-16,-2],[-48,-21],[-6,-3],[-6,-4],[-15,-12],[-6,-12],[1,-9],[2,-4],[27,-51],[10,-6],[14,-6],[11,-8],[3,-2],[1,-9],[-6,-13],[-23,-26],[-3,-3],[-6,-6],[-11,-3],[-18,-2],[-1,0],[-14,3],[-14,2],[-16,-2],[-7,-2],[-2,-1],[-8,-2],[-10,-6],[-11,-11],[-6,-7],[-7,-8],[-9,-10],[-8,-14],[-2,-5],[-4,-11],[-1,-19],[12,-17],[12,-15],[51,-50],[-2,-5],[-26,-56],[-25,-1],[-12,-5],[-26,-12],[-52,-28],[-5,-3],[-94,-2],[-4,0],[-16,1],[-15,6],[-48,28],[-14,8],[-79,46],[-24,14],[-4,2],[-27,39],[-4,5],[-10,-4],[-19,-12],[-5,-12],[-4,-6],[0,-13],[-1,-4],[3,-4],[0,-1],[35,-27],[6,-8],[18,-67],[0,-13],[-18,-61],[-6,-6],[-5,-1],[-5,-1],[-22,6],[-53,16],[-27,8]],[[62051,70022],[-4,2],[-16,9],[-20,9],[-3,5],[-2,25],[-5,7],[-10,6],[-9,1],[-1,-1],[-7,-5],[-39,-44],[-4,-4],[-20,-38],[-1,0],[-3,-8],[0,-19],[-1,-25],[0,-14],[0,-4],[1,-4],[1,-4],[15,-10],[2,-6],[5,-11],[15,-34],[0,-1],[34,-80],[-1,-8],[-3,-3],[-12,1],[-1,0],[-19,11],[-74,46],[-2,1],[2,5],[1,2],[-1,24],[-2,8],[-20,40],[-4,4],[-7,3],[-61,20],[-7,1],[-5,1],[-42,7],[-7,1],[-9,1],[-5,0],[-5,0],[-60,-3],[-28,-3],[-4,-2],[-3,-1],[-2,-1],[-4,-4],[-1,-14],[-7,-9],[-24,-19],[-14,-8],[-34,-8],[-3,-1],[-38,-9],[-13,-3],[-67,-17]],[[61393,69837],[-35,12],[-17,6],[-13,8],[-77,51],[-23,16],[-1,5],[-16,68],[-6,28],[-11,46],[0,13],[0,9],[0,11],[8,70],[0,1],[-49,33],[-10,14],[-3,8],[-1,30],[-2,3],[-1,1],[-1,1],[-11,0],[-7,-3],[-32,-38],[-11,-9],[-9,-2],[-11,4],[-11,8],[-26,12],[-9,2],[-35,5],[-24,-7],[-90,-30],[-2,-3],[-46,-57],[-13,-53],[-1,-3],[-119,-73],[-4,-2],[-39,-23],[-1,-1],[-9,-4],[-10,1],[-4,3],[-7,7],[-5,4],[-5,20],[0,27],[13,68],[2,13],[-3,16],[-34,23],[-9,1],[-9,-3],[-21,-15],[-67,-37],[-26,9],[-22,8],[-17,6],[-10,1],[-29,2],[-14,-3],[-32,-9],[-25,-14],[-19,-4],[-39,-2],[-14,6],[-2,0],[-1,1],[-22,20],[-11,7],[-15,5],[-6,0],[-6,1],[-40,-4],[-6,-2],[-13,-9],[-63,-53],[-10,0],[-9,6],[-13,12],[-6,5],[-11,19],[-1,10],[14,15],[1,1],[-2,7],[-25,47],[-13,21],[-17,14],[-36,8],[-19,2],[-31,-7],[-15,-7],[-5,-6],[-2,-3],[-8,-16],[-1,-12],[-7,5],[-27,23],[-11,9],[-35,28],[-28,23],[-5,4],[-70,48],[-11,8],[-3,7],[-4,24],[-13,14],[-4,4],[-4,2],[-44,-4],[-215,114],[-19,12],[-29,19],[-2,0],[-48,30],[-33,19],[-164,99],[-179,107],[-18,12],[-39,25],[-9,33],[-44,22],[-77,47],[-10,15],[-35,59],[0,1],[-1,0],[-2,2],[-23,23],[-2,2],[-2,0],[-9,2],[-5,0],[-9,0],[-148,-18],[-4,0],[-22,-4],[-15,-12],[-5,-5],[-6,-12],[-3,-25],[-5,-22],[-28,-30],[-14,-6],[-15,-2],[-13,-1],[-13,6],[-11,6],[0,2],[-24,17],[-11,2],[-115,8],[-1,-1],[-2,-1],[-5,-2],[-6,-7],[1,-7],[0,-8],[-6,-12],[-3,-5],[-7,-14],[-4,-7],[-5,-3],[-6,-5],[-48,-32],[-10,-1],[-15,-2],[-6,0],[-5,1],[-4,-4],[-48,-41],[-10,-8],[-31,-24],[-83,-65],[-5,0],[-46,4],[-31,2],[-68,11],[-54,8],[-49,7],[-134,21],[-23,4],[-68,-58],[-41,-36],[-51,-44],[44,-91],[-118,-114],[47,-31],[71,-47],[-2,-25],[-23,-14],[-24,-11],[-11,-5],[-5,0],[-21,8],[-13,11],[-22,20],[-30,26],[-25,24],[-53,53],[-102,134],[-1,3],[-1,0],[-21,36],[-163,284],[-31,54],[-28,50],[-32,56],[-84,147],[-3,6],[-73,127],[-30,53],[-12,21],[-67,118],[-31,54],[-101,177],[-48,85],[-53,93],[-103,181],[-93,168],[-25,44],[-31,56],[-30,54],[-65,115],[-102,173]],[[63817,77501],[57,-37],[38,-21],[38,-27],[54,-58],[39,-18],[69,-14],[311,-37],[28,-6],[72,-36],[14,-3],[55,-8],[37,-13],[39,-16],[12,-6],[104,-111],[100,-20],[76,-37],[23,-11],[38,-23],[62,-70],[21,-30],[27,-50],[12,-23],[108,-127],[73,-83],[39,-21],[76,-85],[41,-27],[45,-16],[18,-13],[56,-48],[97,-96],[58,-56],[8,-9],[88,-55],[44,-5],[31,-12],[72,-50],[101,-112],[62,-11],[23,-22],[54,-58],[58,-40],[87,-21],[64,-21],[92,-104],[132,-101],[76,-31],[72,-9],[37,-12],[82,-10],[49,-14],[4,-1],[36,-18],[202,-27],[36,-15],[27,-28],[32,-23],[22,-14],[5,-3],[46,-30],[27,-3],[11,-2],[35,-8],[52,-13],[32,-36],[35,-40],[49,-20],[17,-2],[21,-3],[40,-29],[32,-37],[3,-9],[4,-10],[43,-49],[9,-3],[16,-3],[56,-29],[59,-46],[15,-12],[19,-21],[80,-45],[79,-13],[45,2],[36,2],[32,-4],[146,-53],[80,-94],[71,-39],[35,-26],[9,-4],[41,-46],[32,-36],[73,-42],[44,-49],[69,-11],[29,-20],[11,-7],[71,-79],[4,-12],[95,-107],[38,-9],[5,-2],[13,1],[87,-56],[59,-35],[59,-34],[62,-68],[10,-9],[-2,-10],[-4,-14],[-31,-201],[7,-72],[70,-79],[206,-25],[29,-7],[18,-4],[75,-70],[46,-52],[82,-10],[32,-20],[51,-23],[84,-94],[0,-1],[1,-46],[73,-83],[56,-31],[103,-116],[33,-124],[-9,-54],[0,-38],[130,-147],[61,-37],[124,-141],[20,-35],[37,-67],[-5,-29],[-29,-163],[76,-405],[67,-76]],[[70787,71854],[-155,16],[-94,-24],[-61,-33],[-98,-29],[-61,-33],[-43,-6],[-47,6],[-78,1],[-43,-23],[-3,-1],[-4,-1],[-70,-17],[-224,27],[-143,105],[-129,19],[-91,33],[-152,171],[-183,20],[-111,-63],[-53,-7],[-187,-57],[-16,2],[-159,-100],[-10,-10],[-9,-10],[-4,-4],[-33,-21],[-74,-47],[-10,-8],[-20,2],[-84,11],[-67,-43],[-63,-40],[-10,-23],[-27,-24],[-30,-26],[-51,-32],[-69,-44],[-53,1],[-49,1],[-11,-4],[-6,3],[-61,-1],[-75,-1],[-62,-9],[-216,-139],[-5,-3],[-67,-33],[-15,-4],[-53,-15],[-72,7],[-42,5],[-67,-25],[-101,-37],[-21,-8],[-40,-15],[-119,-45],[-112,-71],[-35,-217]],[[66739,70931],[-108,78],[-26,20],[-42,31],[-122,-70],[-52,-2],[-97,-45],[-53,-24],[-48,-30],[-10,-7],[-18,-52],[-109,-71],[-12,-72],[-50,-32],[-3,-2],[-75,22],[-27,3],[-55,7],[-55,15],[-60,70],[-36,29],[-23,2],[-4,-7],[-6,-13],[-10,-17],[-38,-71]],[[33191,73132],[-75,-61],[-61,-47],[-117,-91],[-31,-23],[-90,-72],[-26,-25],[-23,-22],[-36,-35],[-21,-12],[-41,-35],[-19,-16],[-49,-41],[-53,-43],[-3,-2],[-45,-39],[-15,-27],[-15,-28],[-12,-24],[-38,-76],[-57,-114],[-107,-205],[-17,-36],[-38,-71],[-16,-30],[-12,-27],[-23,-45],[-24,-46],[-5,-11],[-35,-70],[-15,-30],[-23,-49],[-13,-25],[-45,-86],[-63,-124],[-21,-37],[-14,-28],[-89,-167],[-11,-22],[-17,-33],[-24,-47],[-17,-33],[-15,-30],[-28,-55],[-13,-23],[-77,-151],[-12,-29],[-91,-171],[-27,-53],[-95,-182],[-15,-28],[-22,-40],[-11,-23],[-70,-134],[-24,44],[8,21],[7,6],[12,8],[1,2],[2,4],[0,1],[-1,5],[-60,54],[-2,2],[-12,9],[-12,6],[-55,14],[-19,10],[-11,10],[-4,6],[-1,8],[-3,27],[-78,26],[-14,17],[-1,1],[0,2],[-1,26],[0,19],[-9,21],[-1,3],[-11,11],[-24,6],[-6,-2],[-6,2],[-44,-5],[-14,-3],[-9,-2],[-45,-9],[-15,-1],[-47,8],[-21,11],[-16,21],[0,1],[-2,9],[1,14],[10,18],[9,9],[25,16],[4,2],[26,18],[1,17],[-5,6],[-40,5],[-24,-6],[-34,-23],[-8,-3],[-18,0],[-14,7],[-4,5],[-20,13],[-32,15],[-24,8],[-73,66],[-8,16],[-39,65],[-6,8],[-5,0],[-15,-5],[-40,-22],[-22,-22],[-2,-2],[-3,-4],[-2,-26],[0,-2],[-5,-21],[-45,-65],[-4,-5],[-4,0],[-44,5],[-39,6],[-63,11],[-4,2],[-48,20],[-28,12],[-6,3],[-6,3],[-1,1],[-4,6],[1,13],[18,8],[4,6],[2,4],[34,68],[-292,7]],[[29825,70834],[-64,2],[-9,0],[-30,0],[-96,1],[-178,3],[-136,1],[-135,2],[-98,1],[-32,0],[-59,1],[-1,-111],[-1,-61],[-1,-42],[0,-24],[-2,-105],[-42,0],[-22,0],[-63,0],[-32,0],[-31,0],[-91,2],[-82,1],[-83,-1],[1,29],[0,89],[0,37],[-1,153],[0,26],[-6,14],[-18,0],[-90,1],[-66,2],[-22,0],[-104,1],[-46,0],[-98,2],[-69,2],[-77,2],[-94,0],[-64,0]],[[27783,70862],[-25,-7],[-51,0],[-128,1],[-116,0],[-115,2],[-129,1],[-47,0],[-24,0],[-33,-1],[-52,1],[-45,0],[-10,0],[-25,0],[-80,-1],[-29,2],[-11,1],[-42,0],[-35,2],[-7,0],[-148,2],[-105,0],[-108,2],[-10,1],[-70,6]],[[48793,73324],[1,-24],[-1,-22],[-12,0],[-24,-1],[-1,-1],[-20,-23],[-13,-22],[-4,-22],[13,-18],[2,-14],[0,-1],[1,-6],[-20,-16],[-17,-19],[-68,-5],[-24,-4],[-23,-14],[-17,-18],[-7,-27],[0,-97],[-37,-19],[-31,-11],[-28,-12],[-4,-27],[-8,-29],[-16,-36],[1,-4],[5,-19],[21,-4],[28,3],[45,-54],[16,-14],[-17,-19],[-26,-8],[-41,-14],[-27,-9],[-25,-8],[-41,-13],[-43,-14],[-13,-4],[-9,-3],[-65,-21],[-55,-17],[-60,-20],[-41,-13],[-25,-9],[-80,-26],[-43,-14],[-58,-18],[-71,-23],[-38,-12],[-39,-13],[-115,-37],[-57,-18],[-56,-19],[-158,-51],[-57,-19],[-109,-34],[-32,-11],[-51,-16],[-51,-16],[-44,-15],[-44,-14],[-1,0],[-140,-46],[-28,-9],[-107,-34],[-174,-55],[-45,-14],[-83,-26],[-91,-28],[-102,-33],[-37,-12]],[[46152,71959],[-15,10],[-4,4],[-35,45],[-17,22],[-2,2],[-39,30],[-9,3],[-43,13],[-26,5],[-17,4],[-3,3],[-59,65],[-7,7],[-9,17],[-12,15],[-22,19],[-9,8],[-2,1],[-37,25],[-11,7],[2,10],[7,27],[1,3],[-1,6],[-1,3],[-3,6],[-3,5],[-15,9],[-29,7],[-30,5],[-6,1],[-66,-14],[-17,6],[-5,3],[-8,5],[-25,26],[-13,27],[-1,1],[-7,5],[-6,3],[-7,4],[-27,5],[-25,-2],[-4,-1],[-19,-3],[-1,0],[-18,2],[-10,1],[-8,4],[-63,47],[-15,6],[-18,6],[-8,9],[-2,7],[-20,148],[-3,16],[-2,11],[-2,14],[0,21],[0,3],[-18,14],[-2,1],[-5,1],[-28,9],[-8,2],[-7,5],[-5,6],[-36,76],[-2,8],[12,58],[23,113],[1,8],[-2,3],[-2,3],[-4,2],[-4,3],[-6,2],[-11,-1],[-34,55],[0,1],[-10,37],[-11,43],[-17,65],[0,1],[0,9],[0,3],[4,25],[1,10],[-22,32],[-19,27],[-21,31],[-11,10],[-4,5],[-7,11],[-4,8],[-2,21],[1,1],[4,12],[1,3],[-21,78],[-1,4],[-25,47],[-2,2],[-35,29],[-61,51],[-78,67],[-8,8],[-4,8],[-1,74],[-2,14],[-57,110],[-9,15],[-10,6],[-34,15],[-35,9],[-8,0],[-11,31],[-4,7],[-38,71],[-16,6],[-2,2],[-16,14],[-9,13],[-9,20],[-1,2],[-1,15],[7,15],[12,12],[28,8],[18,5],[2,5],[0,1],[0,1],[0,4],[-5,3],[-19,2],[-1,0],[-11,2],[-39,9],[-5,2],[-79,38],[-2,1],[-38,-4],[-82,70],[-9,7],[-1,6],[-2,4],[-3,9],[-52,70],[-101,94],[-6,4],[-23,5],[-68,10]],[[44064,74530],[-1,0],[-15,4],[-45,1],[-15,-3],[-10,-8],[-1,-5],[0,-3],[-1,-20],[-5,-14],[-5,-3],[-8,0],[-137,24],[-6,4],[-8,9],[-9,9],[-27,28],[-11,17],[-1,1],[-26,-24],[-5,-5],[-52,32],[-47,20],[-52,12],[-103,8],[49,32],[7,5],[0,11],[-7,14],[-20,19],[-167,102],[-14,8],[-19,10],[-19,11],[-2,1],[-85,45],[-7,4],[-7,3],[-11,11],[-1,1],[-18,17],[-1,4],[-89,74],[-14,6],[-33,3],[-61,33],[-50,32],[-38,45],[-61,48],[-12,7],[-12,3],[-39,0],[-32,-3],[-30,-7],[-5,-1],[-11,7],[-20,13],[-5,6],[-25,26],[-1,4],[-3,23],[3,16],[2,7],[8,20],[0,2],[-1,17],[0,1],[-1,2],[-8,15],[-6,11],[-2,4],[-21,26],[-45,44],[-25,24],[-14,7],[-28,10],[-24,62],[-46,39],[-4,2],[-9,-2],[-40,-20],[-1,-1],[-27,-29],[-7,-6],[-3,1],[-4,2],[-1,0],[-12,8],[-2,2],[-1,1],[-7,10],[-1,4],[-1,5],[0,7],[0,7],[62,78],[4,5],[0,8],[-1,27],[0,1],[-2,59],[22,99],[22,16],[16,7],[4,0],[4,1],[2,2],[36,78],[0,9],[0,3],[0,3],[-9,5],[-3,1],[-84,5],[-5,0],[-1,-3],[-1,0],[-23,-12],[-22,-9],[-25,-10],[-24,-1],[-47,-1],[-12,2],[-2,1],[-16,6],[-85,2],[-43,1],[-3,-1],[-62,-5],[-60,-5],[-38,-1],[-59,3],[-10,0],[-58,38],[-21,-1],[-23,5],[-7,1],[-6,6],[-4,5],[-10,12],[-6,9],[-33,3],[-101,11],[-2,-1],[-16,-10],[-10,1],[-2,1],[-25,8],[-14,5],[-19,8],[-13,10],[-12,18],[-4,17],[-8,60],[-1,10],[0,1],[13,18],[3,9],[-1,16],[-13,46],[-2,10],[-9,32],[-6,15],[-13,30],[-16,37],[-5,4],[-28,9],[-6,6],[-2,2],[-8,12],[-26,40],[-5,9],[-4,8],[-18,38],[0,4],[0,3],[-16,16],[-17,1],[-18,-6],[-19,-19],[-9,-4],[-3,-1],[-3,0],[-31,-1],[-10,-5],[0,-6],[4,-6],[5,-2],[3,-1],[31,0],[5,-1],[7,-8],[-4,-9],[-9,-5],[-12,-2],[-18,-2],[-17,2],[-8,2],[-15,17],[-25,7]],[[44064,74530],[-12,-20],[-33,-30],[-9,-8],[-15,-18],[-9,-11],[-10,-13],[-3,-4],[-30,-37],[-9,-20],[-3,-5],[-8,-22],[-4,-27],[-18,-19],[-22,-21],[-15,-18],[-23,-24],[-19,-22],[-19,-20],[-24,-23],[-20,-18],[-15,-16],[-17,-16],[-20,-18],[-22,-19],[-28,-12],[-22,-5],[-97,-164],[-83,-149],[-35,-50],[-13,-18],[-27,-36],[-77,-102],[-134,-175],[-18,-20],[-21,-27],[-17,-24],[-3,-3],[-16,-21],[-14,-16],[-72,-95],[-60,-81],[-14,-17],[-43,-56],[-53,-67],[-37,-46],[-59,-76],[-23,-30],[-55,-70],[-26,-33],[-7,-9],[-71,-90],[-48,-62],[-65,-84],[-158,-203],[-204,-263],[-184,-238],[-16,-22],[-90,-119],[-101,-135],[-1,-1],[-32,-42],[-38,-50],[-62,-83],[-40,-52],[-21,-26],[-127,-163],[-14,-18],[-70,-89],[-28,-36],[-46,-58],[-57,-74],[-83,-105],[-62,-79],[-70,-90],[-29,-38],[-38,-48],[-2,-2],[-20,-26],[-18,-23],[-27,-36],[-168,-217],[-15,-19],[-99,-129],[-2,-3],[-139,-180]],[[40386,69776],[-20,12],[-19,13],[-18,13],[-23,15],[-54,38],[-27,18],[-34,25],[-123,87],[-24,16],[-42,29],[5,7],[10,16],[66,63],[16,16],[62,65],[-5,4],[-31,21],[-149,101],[-15,10],[-10,7],[-144,99],[-68,47],[-76,53],[-18,12],[-28,19],[-40,27],[-31,22],[-22,15],[-46,32],[-6,4],[-77,53],[-2,1],[-40,28],[-51,35],[-38,26],[-114,4],[-64,2],[-53,2],[-41,1],[-52,4],[-22,2],[-35,0],[-22,0],[-32,1],[-67,-1],[-66,42],[-84,55],[-103,66],[-132,85],[-22,14],[-12,7],[-63,41],[-3,2],[-22,14],[-68,44],[-48,30],[-58,37],[-141,91],[-47,30],[-49,32],[-40,25],[-32,21],[-86,55],[-120,78],[-25,16],[-32,20],[-33,22],[-22,14],[-45,29],[-58,37],[-23,15],[-39,26],[-23,15],[-25,15],[-22,15],[-19,12],[-107,68],[-36,23],[-84,54],[-122,78],[-31,21],[-14,9],[-8,4],[-119,77],[-51,33],[-97,62],[-23,15],[-98,63],[-33,21],[-63,40],[-26,17],[-54,34],[-36,23],[-61,38],[-71,46],[-30,18],[-8,6],[-85,54],[-22,14],[-54,34],[-3,2],[-101,64],[-54,35],[-31,20],[-24,15],[-56,37],[-52,32],[-21,14],[-49,30]],[[35476,72946],[-104,68],[-97,61],[-40,25],[-19,13],[-31,19],[-75,48],[-36,23],[-100,64],[-28,18],[-47,30],[-27,17],[-93,60],[-55,35],[-53,34],[-27,18],[-69,44],[-77,49],[-49,31],[-154,96],[-24,15],[-14,9],[-116,76],[-4,2],[-22,14],[-51,34]],[[11905,74404],[-58,3],[-102,2],[-41,2],[-3,0],[-35,3],[0,-39],[0,-2],[-1,-61],[-1,-153],[0,-25],[-1,-132],[0,-27],[-1,-42],[-1,-77],[0,-103],[-1,-36],[0,-45],[-2,-121],[0,-36],[-1,-73],[0,-3],[-1,-55],[0,-39],[-2,-91],[0,-37],[-1,-27],[0,-47],[-1,-41],[0,-28],[-1,-15],[-2,-46],[-2,-82],[-1,-59],[-1,-50],[-4,-129],[0,-1],[-1,-35],[-1,-57],[-1,-79],[-3,-133],[-2,-78],[-34,1],[-162,3],[-133,3],[2,-92],[-26,-10],[-139,-57],[-248,-101],[-199,-81],[-20,-8],[-70,-30],[-134,-55],[-77,-31],[-49,-20],[-45,-18],[-154,-3],[-109,0],[-57,-1],[2,61],[2,65],[1,54],[-114,3],[-20,1],[-21,1],[-44,0],[-38,-11],[-49,-16],[-61,-20],[-40,-12],[-25,-8],[-62,-19],[-38,-12],[-25,-8],[-14,-5],[-80,-26],[-79,-25],[-145,-47],[-11,-3],[-11,-3],[-11,-4],[-2,0],[-11,-4],[-58,-18],[-27,-9],[-15,-5],[-87,-29],[-131,-41],[-47,-15],[-71,-23],[-108,-34],[-100,-33],[-40,-12],[-32,-11],[-137,-44],[-81,-25],[-67,-22],[-126,-40],[-20,-6],[-182,-58],[-111,-36],[-25,-8],[-77,-25],[-51,-16],[-4,-2],[-31,-9],[-133,-46],[-139,-54],[-56,-21],[-59,-20],[-1,0],[-97,-32],[-140,-45],[-151,-49],[-59,-20],[-29,0],[-91,2],[-255,6],[-245,5],[-114,2],[-179,5],[-105,2]],[[5602,70986],[-4,22],[-73,378],[-16,86],[0,2],[-29,151],[-52,270],[-17,88],[-55,292],[-56,290],[-51,266],[-3,13],[-8,44],[0,2],[-27,141],[-5,19],[-6,24],[-13,74],[-6,37],[-7,44],[-36,207],[-5,22],[-5,22],[-8,38],[-8,34],[-5,35],[-24,127],[-34,185],[-67,362],[-51,279],[-34,183],[-6,33],[-15,81],[-26,140],[-10,50],[-8,46],[-9,47],[-13,71],[-10,49],[-15,77],[-3,20],[-2,17],[-31,156],[-13,65],[-7,33],[-15,78],[-10,44],[-8,35],[-9,46],[-60,320],[-6,29],[-14,76],[-13,66],[-7,36]],[[46152,71959],[58,-38],[70,-47],[-3,-51],[7,-2],[71,-19],[17,-5],[9,-2],[0,-1],[-2,-37],[-4,-74],[0,-4],[-1,-9],[7,-7],[43,-49],[22,-17],[37,-28],[28,-20],[10,-14],[8,1],[7,-5],[22,-23],[16,-35],[14,-33],[40,-61],[22,-14],[31,-75],[14,-21],[86,-133],[1,-3],[14,-46],[0,-6],[0,-2],[4,-10],[8,-6],[1,-1],[12,-5],[1,0],[15,-2],[23,6],[14,0],[12,-6],[1,-4],[-1,-5],[-21,-91],[69,-82],[9,-10],[47,-48],[9,-9],[4,-5],[1,-1],[3,-4],[14,-25],[36,-64],[4,-6],[2,-3],[2,-13],[-7,-60],[40,-113],[27,-69],[1,-3],[6,-15],[3,-13],[-3,-11],[-7,-9],[0,-5],[2,-48],[-5,-1],[-15,-16],[2,-7],[41,-65],[5,-6],[8,-3],[21,-5],[49,3],[2,-1],[49,-23],[6,-4],[2,-2],[13,-18],[6,-9],[22,-32],[5,-7],[21,-73],[1,-3],[5,-30],[6,-38],[22,-134],[1,-6],[1,-7],[0,-2],[-4,-12],[-9,-12],[-28,-36],[-5,-6],[6,-3],[15,-5],[68,-17],[21,-3],[6,0],[2,0],[21,-1],[6,2],[23,10],[1,-1],[51,-44],[19,-81],[3,-5],[22,-43],[3,-5],[11,-8],[23,-14],[19,-11],[39,-39],[12,-13],[105,1],[29,-89],[18,3],[15,-3],[15,-15],[118,-132],[4,-9],[0,-10],[-4,-11],[2,-3],[18,-38],[31,-25],[23,-40],[9,-16],[18,-29],[20,-35],[3,-5],[2,1],[36,25],[8,5],[12,1],[106,-27],[3,-3],[0,-2],[5,-60],[1,-4],[21,-92],[78,-49],[62,-26],[11,-9],[22,-27],[51,-84],[15,-16],[27,-32],[4,-4],[10,-9],[16,-11],[22,-10],[8,-2],[53,0],[26,0],[3,0],[19,1],[22,7],[13,7],[38,25],[19,-16],[61,-52],[19,-21],[54,-77],[26,-54],[1,-4],[5,-14],[2,-6],[0,-1],[-1,-10],[0,-1],[-10,-18],[-10,-9],[-82,-37],[-36,-13],[-9,-5],[-25,-21],[-11,-16],[-51,-81],[-16,-36],[1,-18],[1,-2],[1,-5],[1,-3],[8,-16],[0,-1],[3,-2],[0,-9],[2,-53],[-7,-27],[-13,-32],[-5,-8],[-41,-67],[-2,-3],[-3,-12],[-8,-39],[0,-22],[3,-22],[0,-1],[3,-12],[1,-2],[25,-59],[2,-3],[40,-38],[12,-12],[7,-12],[13,-22],[6,-10],[24,-39],[10,-18],[1,-4],[4,-14],[4,-10],[-1,-6],[-4,-23],[-15,-35],[-1,-2],[-1,-2],[-38,-45],[-12,-31],[0,-17],[-1,-28],[0,-7],[8,-32]],[[48802,67335],[-27,-7],[-4,-1],[-265,-49],[-57,-10],[-28,-5],[-37,-7],[-112,-21],[-26,-5],[-74,-14],[-8,-1],[-48,-9],[-55,-10],[-2,0],[-36,-7],[-41,-8],[-12,-2],[-39,-7],[-37,-6],[-104,-19],[-98,-18],[-262,-50],[-364,-70],[-95,-16],[-31,-7],[-132,-25],[-71,-13],[-40,-7],[-40,-7],[-203,-36],[-253,-48],[-38,-8],[-133,-28],[-146,-30],[-28,-6],[-85,-17],[-117,-25],[-84,-17],[-333,-73],[-185,-40],[-43,-9],[-24,-5],[-33,-7],[-2,-1],[-27,-5],[-220,-48],[-144,-31],[-45,-9],[-44,-10],[-77,-13],[-209,-39],[-131,-30],[-56,-13],[-95,-21],[-35,-8],[-184,-37],[-29,-6],[-10,-2],[-60,-12],[-58,-11],[-24,-5],[-25,-5]],[[43477,66279],[-20,11],[-26,16],[-50,30],[-32,20],[-59,36],[-94,58],[-77,47],[-1,0],[-165,101],[-85,51],[-328,194],[-74,43],[-106,62],[-128,86],[-145,87],[-26,18],[-160,109],[-57,36],[-32,21],[-52,36],[-51,33],[-22,14],[-108,65],[-18,13],[-135,89],[-205,137],[-66,43],[-99,65],[-20,13],[-29,19],[-44,28],[-201,132],[-223,145],[-180,117]],[[40359,68254],[10,105],[23,235],[5,52],[3,29],[9,95],[5,46],[2,23],[16,163],[21,208],[1,23],[-26,39],[-14,11],[-3,4],[-29,37],[-75,89],[-7,5],[-31,28],[-13,11],[2,16],[11,18],[13,17],[0,26],[-11,27],[-15,18],[-2,24],[16,21],[19,26],[97,126]],[[15835,67938],[-4,-4],[-8,-16],[-2,-3],[0,-17],[-1,-17],[0,-1],[6,-6],[0,-24],[-12,-89],[-7,-20],[-18,-49],[-8,-22],[-6,-16],[-35,-51],[-20,-16],[-24,-19],[-6,-4],[-16,-6],[-1,-1],[-44,-16],[-86,-24],[-35,-5],[-3,0],[-77,6],[-112,8],[-129,-105],[-86,-69],[-129,-86],[-41,-28],[-85,-33],[-28,-11],[-15,-1],[-6,0],[-20,-8],[-5,-1],[-8,-5],[-14,-10],[-1,0],[0,-1],[-40,-42],[-9,-6],[-10,-7],[-13,-11],[-26,-23],[-3,-3],[-9,-7],[-2,-5],[-21,-40],[-5,-8],[-2,-43],[6,-25],[9,-41],[3,-29],[-1,-9],[-1,-5],[-2,-15],[-14,-22],[-2,-1],[-9,-6],[-13,-9],[-6,-4],[-19,-4],[-101,-22],[-22,-9],[-35,-29],[-9,-17],[-4,-7],[-5,-9],[-11,-25],[-2,-17],[-1,-10],[-2,-13],[3,-17],[1,-5],[2,-8],[12,-16],[11,-16],[-1,-11],[-10,-18],[-6,-10],[-12,-22],[-17,-10],[-13,-7],[-3,-3],[-100,-22],[-28,-6],[-14,-5],[-15,-6],[-10,-1],[-18,-2],[-30,-23],[-4,-3],[-26,-36],[-1,-7],[-1,-7],[-21,-33],[-31,-20],[-42,-7],[-96,-2],[-46,13],[-10,9],[-10,8],[-30,28],[-8,7],[-41,27],[-9,1],[-6,1],[-9,1],[-18,-16],[-6,-5],[-11,-5],[-9,-3],[-16,-6],[-1,0],[-6,1],[-10,1],[-39,38],[-118,91],[-63,59],[-13,12],[-67,36],[-14,5],[-35,12],[-20,7],[-10,7],[-8,6],[-16,11],[-16,15],[-22,21],[-20,20],[-3,3],[-25,17],[-31,12],[-2,1],[-26,10],[-7,0],[-51,3],[-13,1],[-9,-3],[-10,-4],[-6,-2],[-6,-4],[-17,-11],[-8,-5],[-37,-46],[-3,-11],[-4,-12],[-5,-17],[17,-28],[13,-14],[11,-11],[38,-68],[2,-6],[7,-30],[2,-9],[-4,-21],[-4,-16],[-1,-3],[-12,-13],[-25,-17],[-7,-5],[-24,-16],[-128,-78],[-16,-6],[-52,-29],[-2,-2],[-5,-1],[-36,-9],[-45,-15],[-98,-31],[-23,-4],[-39,-9],[-47,-15],[-5,-3],[-10,-8],[-4,-2],[-3,-4],[-9,-13],[-13,-18],[-27,-66]],[[12379,66086],[-25,0],[-80,2],[-50,0],[-40,1],[-103,1],[-26,1],[-29,0],[-26,1],[-220,3],[-35,1],[-88,1],[-33,0],[-49,1],[-30,1],[-36,0],[-37,1],[-40,0],[-122,2],[-39,1],[-161,1],[-103,2],[-257,3],[-130,1],[-195,2],[-156,1],[-57,1],[-79,1],[-51,0],[-81,0],[-41,0],[-83,0],[-1,0],[-399,2],[-81,1],[-233,1],[-58,0],[-81,0],[-230,2],[-71,1],[-69,0],[-98,1],[-119,3],[-76,1],[-209,2],[-59,2],[-93,0],[-99,1],[-196,4],[-103,2],[-147,0],[-56,0],[-109,1],[-178,0],[-42,0],[-2,0],[-46,0],[-25,0],[-35,0],[-72,0],[-86,1],[-183,2],[-86,0]],[[6535,66142],[-56,267],[-25,138],[-29,155],[-10,55],[-35,195],[-1,6],[-37,198],[-9,48],[-21,117],[-20,93],[-5,25],[-1,2],[-11,51],[-9,45],[-28,155],[-9,51],[-27,133],[-42,211],[-5,27],[-21,104],[-12,59],[-11,64],[-4,23],[-14,69],[-3,27],[-5,30],[-2,10],[-8,43],[-17,88],[-21,108],[-21,111],[-6,46],[-8,23],[-23,123],[-47,245],[-17,84],[-9,48],[-37,194],[-57,294],[-19,102],[-66,340],[-9,34],[-49,257],[-24,124],[-33,173],[-10,49]],[[14764,73732],[0,-31],[1,-28],[4,-231],[1,-50],[1,-51],[0,-23],[1,-31],[0,-18],[1,-53],[-6,-155],[-1,-30],[-1,-23],[0,-43],[-1,-255],[-1,-28],[0,-9],[0,-19],[-189,8],[-2,-19],[-2,-22],[-2,-96],[0,-2],[0,-26],[0,-26],[71,-1],[74,2],[28,-1],[26,-3],[0,-22],[-1,-30],[4,-25],[-1,-44],[-1,-46],[-2,-70],[-1,-87],[-1,-34],[-1,-38],[-3,-143],[-1,-71],[-4,-184],[0,-22],[-2,-104],[-2,-103],[-3,-187],[-2,-101],[0,-1],[-1,-189],[-2,-37],[-1,-32],[-16,-197],[-2,-22],[-3,-92],[-2,-77],[-6,-127],[-10,-250],[-6,-179],[0,-4],[-10,-294],[-4,-129],[-5,-258],[24,0],[33,-1],[32,0],[26,1],[54,1],[22,0],[44,0],[48,-1],[26,0],[89,1],[105,1],[180,1],[164,1],[158,1],[82,0],[179,1],[121,1],[203,2],[1,61],[120,-1],[0,-62],[60,-2],[56,1],[26,1],[180,8]],[[32758,68249],[7,34],[-12,19],[-15,25],[-5,5],[-10,10],[-9,5],[-2,1],[-6,-2],[-10,-3],[-62,-49],[-36,-24],[-3,-1],[-70,-15],[-1,0],[-9,5],[-8,9],[-3,3],[0,21],[3,15],[1,5],[12,33],[1,0],[10,6],[9,0],[13,1],[43,-14],[13,2],[9,1],[6,6],[1,60],[0,14],[-10,21],[-3,16],[0,1],[5,13],[5,15],[42,41],[5,5],[-6,4],[-97,71],[-1,0],[-31,-6],[-18,-7],[-12,-12],[-13,-21],[-3,-4],[-2,-2],[-5,-5],[-13,-1],[-25,9],[-23,19],[-2,2],[-31,37],[-28,47],[-11,21],[-2,1],[-100,18],[-17,-4],[-12,4],[-13,4],[-34,10],[-99,70],[-4,2],[-16,15],[-41,42],[-17,20],[-17,12],[-21,7],[-28,0],[-31,7],[-23,-2],[-34,-7],[-18,-13],[-23,5],[-20,18],[-23,15],[-20,13],[-21,13],[-22,15],[-26,17],[-28,18],[-41,26],[-80,46],[-17,12],[-18,23],[-14,19],[-27,6],[-24,8],[-21,2],[-27,-1],[-22,-3],[-29,2],[-21,-5],[-22,-5],[-20,-13],[-12,-32],[-15,-24],[-24,-6],[-30,-6],[-26,-10],[-20,-12],[-31,-8],[-32,4],[-20,11],[-22,8],[-22,6],[-17,17],[-13,19],[-26,4],[-7,21],[-6,24],[-19,36],[-14,18],[-21,26],[-35,35],[-22,20],[-18,15],[-22,5],[-24,36],[3,22],[-5,21],[7,26],[-8,20],[-15,23],[-24,17],[-28,19],[-19,12],[-18,13],[-12,19],[-12,24],[-14,21],[-2,4],[-13,23],[-56,1],[-11,26],[-7,16],[-12,28],[-12,30],[-14,33],[-10,33],[-6,23],[-7,18],[-3,5],[-12,15],[-9,10],[-20,24],[-16,19],[-16,21],[-15,21],[-18,29],[-7,13],[-14,23],[-11,19],[-16,23],[-17,17],[-11,11],[-21,20],[-20,20],[-24,31],[-16,22],[-14,20],[-67,92],[-17,23],[-23,32],[0,2],[1,20],[-63,60],[-23,6],[-23,17],[-25,19],[-29,21],[-20,18],[-15,18],[4,23],[12,20],[23,16],[-8,33],[-1,30],[-2,22],[-13,25],[-15,24],[-17,27],[-15,25],[-10,20],[-8,20],[-3,23],[5,28],[-5,26]],[[35476,72946],[-1,-25],[-15,-17],[12,-24],[-2,-26],[-15,-30],[-16,-19],[-19,-15],[5,-21],[-1,-27],[6,-26],[8,-23],[9,-21],[-11,-24],[-9,-22],[-13,-21],[-11,-22],[-3,-24],[4,-29],[-8,-21],[5,-30],[3,-10],[8,-21],[22,-20],[21,-19],[9,-25],[-15,-21],[-6,-21],[32,-20],[14,-24],[11,-21],[-2,-25],[-15,-25],[-20,-10],[-22,-17],[-22,-25],[-24,11],[-25,7],[-22,17],[-24,13],[-25,13],[-22,-4],[-19,-19],[0,-2],[1,0],[1,-5],[7,-34],[3,-14],[58,-231],[7,-23],[21,-71],[5,-17],[13,-15],[12,-7],[12,-11],[3,-4],[0,-1],[-2,-17],[0,-2],[-30,-56],[-6,-11],[-3,-3],[-5,-5],[-40,-17],[0,-12],[-3,-47],[-1,-5],[0,-2],[-10,-126],[-3,-29],[-1,-13],[-52,-190],[-3,-10],[-22,-27],[-30,-41],[-18,-29],[-11,-22],[-4,-14],[0,-2],[1,-54],[-3,-14],[-5,-30],[-23,-59],[0,-1],[-112,-128],[-17,-19],[-20,-22],[-16,-18],[-37,-42],[-43,-48],[-38,-43],[-59,-66],[-16,-19],[-3,-3],[-58,-65],[-2,-2],[-28,-32],[-19,-22],[-25,-28],[-52,-60],[-31,-35],[-14,-16],[-28,-32],[-35,-40],[-47,-54],[-30,-34],[-25,-28],[-23,-26],[-22,-25],[-33,-38],[-31,-35],[-5,-5],[-19,-22],[-18,-20],[-25,-29],[-25,-28],[-18,-20],[-19,-22],[-17,-20],[-20,-22],[-25,-27],[-37,-45],[-38,-42],[-19,-22],[-41,-46],[-20,-23],[-39,-43],[-52,-59],[-8,-8],[-14,-16],[-16,-19],[-28,-33],[-31,-36],[-18,-19],[-22,-25],[-4,-4],[-53,-61],[-58,-66],[-84,-96],[-25,-28],[-34,-39],[-52,-59],[-32,-36],[-88,-101],[-53,-62],[-28,-30],[-3,-4],[-21,-26],[-23,-26],[-21,-24],[-39,-45],[-40,-46],[-40,-45],[-28,-31],[-51,-58],[-18,-21],[-14,-16],[-67,-76],[-18,-20],[-19,-22],[-18,-18]],[[54769,71857],[38,-17],[1,-1],[1,0],[9,-5],[1,-15],[6,-16],[20,-22],[8,-9],[39,-40],[3,-4],[16,-16],[23,-19],[18,-10],[20,-6],[6,-1],[2,-1],[52,-12],[12,-9],[43,-34],[29,-38],[24,-18],[60,-26],[17,-7],[11,-4],[24,-4],[6,0],[9,0],[52,1],[1,0],[25,-3],[46,-14],[17,-5],[25,-7],[2,-2],[7,-5],[1,-1],[7,-8],[12,-34],[6,-12],[24,-30],[18,-22],[26,-32],[13,-14],[2,-1],[18,-17],[10,-11],[9,-8],[18,-13],[1,-1],[7,-3],[22,-9],[16,-12],[39,-53],[17,-51],[1,-4],[11,-34],[-17,-25],[-2,-2],[-46,-40],[-48,-41],[-25,-22],[-82,-71],[-83,-73],[-31,-26],[-17,-15],[-74,-62],[-6,-42],[-19,-123],[-14,-92],[-9,-59],[-6,-35],[-8,-52],[-5,-28],[-57,-63],[-42,-48],[-35,-40],[-75,131],[-38,70],[-13,22],[-11,27],[-11,28],[-12,28],[-201,-78],[-23,-27],[-67,-82],[78,-76],[40,-42],[18,-18],[17,-18],[8,-61],[9,-78],[2,-22],[16,-22],[20,-10],[37,-18],[-69,-81],[-24,-28],[-18,-21],[-39,-47],[-33,-36],[-40,-44],[-4,-4],[-27,-16],[-72,-41],[-41,-22],[-2,-2],[-44,-24],[-27,-15],[-28,-46],[-38,-66],[13,-30],[25,-53],[33,-73],[90,-202],[35,-78],[51,-110],[29,-63],[68,-147],[12,-28],[29,-61],[20,-45],[40,-89],[3,-7],[10,-22],[12,-28],[49,-106],[21,-48],[47,-102],[-20,-35],[1,-28],[7,-165],[8,-157],[3,-58],[3,-58],[2,-34],[1,-36],[3,-41],[2,-44],[-37,-30],[-53,-41],[-25,-19],[-18,-15],[-35,-27],[-27,-21],[-42,-32],[-20,-16],[-35,-27],[-209,-163],[-32,-24],[-39,-31]],[[54407,67026],[-38,-29],[-25,-19],[-18,-14],[-17,-14],[-33,-25],[-117,-91],[-171,-134],[-177,-137],[-31,-24],[-6,-5],[-37,-29],[-43,-33],[-66,-52],[-72,-56],[-104,-80],[-190,-147],[-132,-103],[-9,-7],[-44,-34],[-79,-61],[-41,-31],[-97,-75],[-107,-83],[-41,-32],[-122,-93],[-59,-46],[-41,-31],[-40,-31],[-20,-15],[-23,-18],[-18,-13],[-37,-29],[-38,-29],[-42,-33],[-27,-21],[-17,-13],[-34,-26],[-33,-25],[-25,-19],[-42,-32],[-39,-30],[-138,-108],[-79,-61],[-26,-20],[-35,-27],[-50,-38],[-49,-37],[-185,-143],[-36,-28],[-30,-23],[-31,-24],[-23,-18],[-32,-25],[-55,-43],[-38,-29],[-15,-17]],[[51233,64566],[-22,7],[-27,52],[-16,38],[1,5],[4,29],[-24,48],[-6,12],[-13,2],[-4,1],[-7,9],[-1,0],[-11,15],[-1,12],[-3,21],[1,12],[5,64],[-18,26],[-53,77],[-2,3],[-8,9],[-1,0],[-52,31],[-6,4],[-11,8],[-24,17],[-8,6],[-128,105],[-1,1],[-4,5],[-64,62],[4,24],[12,18],[5,28],[2,14],[-8,29],[-11,10],[-7,7],[-2,1],[-38,21],[-127,47],[-16,2],[-2,-1],[-21,-15],[-10,-7],[-12,-18],[-19,-28],[-27,-40],[-6,-9],[-5,-9],[-12,-20],[-21,-14],[-94,-35],[-24,13],[-22,10],[-5,1],[-26,3],[-18,-12],[-11,-6],[-33,-46],[-2,-13],[25,-27],[-1,-15],[0,-7],[-1,-2],[-4,-7],[-4,-6],[-1,-1],[-52,-34],[-26,-3],[-24,1],[-80,1],[-5,0],[-21,1],[-6,1],[-21,20],[7,81],[23,43],[85,116],[1,1],[55,63],[3,2],[25,17],[23,22],[16,19],[19,23],[2,8],[2,16],[-5,9],[-24,24],[-6,7],[-44,24],[-184,37],[-25,0],[-10,-2],[-9,-3],[-8,-2],[-7,-5],[-47,-30],[-13,-4],[-67,5],[-23,-6],[-3,-2],[-26,-16],[-28,-35],[-3,-2],[-29,-19],[-11,-4],[-20,-9],[-6,-1],[-14,-2],[-33,3],[-14,15],[-9,10],[0,41],[10,62],[26,87],[30,64],[15,58],[5,27],[2,20],[4,30],[3,31],[-7,14],[-37,21],[-24,8],[-33,10],[-9,3],[-44,46],[-27,40],[-8,40],[2,30],[-33,39],[-5,6],[-43,76],[-38,42],[-46,33],[-13,37],[-33,39],[-40,29],[-13,4],[0,1],[-21,7],[-1,1],[-10,15],[-4,5],[0,3],[3,17],[3,20],[2,4],[12,19],[12,23],[26,16],[40,9],[25,19],[4,7],[5,8],[1,5],[1,8],[1,9],[-3,57],[-4,12],[-4,15],[-1,2],[-1,0],[-17,17],[-1,1],[-30,17],[-48,19],[-118,68],[-66,27],[-66,13],[-11,6],[-25,28],[-34,50],[-17,133],[-3,5],[-2,3],[-4,65],[-2,20],[-18,87],[-5,5],[-1,1],[-5,24]],[[40359,68254],[-8,-22],[-23,-64],[-31,-89],[-13,-35],[-8,-19],[-5,-15],[-8,-21],[-14,-37],[-1,-2],[-13,-24],[26,-34],[17,-16],[-3,-27],[-9,-24],[13,-27],[14,-31],[16,-35],[5,-26],[11,-41],[6,-24],[7,-21],[2,-50],[23,-19],[24,-21],[18,-16],[32,-29],[30,-26],[34,-30],[16,-15],[-31,-30],[-18,-18],[-30,-29],[-78,-13],[-26,-3],[-44,-2],[-27,6],[-25,5],[-19,21],[0,24],[-21,28],[-19,15],[-18,16],[-21,22],[-11,19],[-15,20],[-13,16],[-33,25],[-15,17],[-5,23],[-25,22],[-21,17],[-17,18],[-20,19],[-26,-9],[-24,4],[-12,23],[-15,19],[-14,19],[-35,-30],[-109,-94],[22,-20],[41,-36],[47,-42],[17,-15],[22,-19],[-132,-46],[-143,-34],[-102,-25],[-25,-6],[-106,-26],[-47,-11],[-38,-9],[-20,-5],[-51,-13],[-34,-28],[-78,-65],[-204,-170],[-35,-31],[-3,-3],[-31,-29],[-35,-29],[-50,-43],[-18,-16],[-87,-72],[-18,-14],[-17,-14],[-26,-21],[-22,-17],[-24,-8],[-23,-18],[-15,-25],[-21,-12],[-79,-24],[-36,-11],[-25,-7],[-98,-30],[-74,-22],[-73,-23],[-89,-27],[-89,-27],[-83,-25],[-46,-14],[-31,-10],[-34,-10],[-28,-12],[10,-38],[-8,-21],[-21,-8],[-31,-8],[-22,-2],[-23,-5],[-22,-2],[-23,-1],[-16,-15],[-30,3],[-22,3],[-31,-1],[-31,18],[-24,13],[-3,-1],[0,-1],[-3,-1],[-29,-10],[7,-14],[12,-21],[12,-22],[-6,-40],[-33,-44],[-17,-23],[-6,-8],[-40,-69],[-47,-101],[-4,-26],[-6,-39],[46,-54],[11,-15],[-26,-7],[-35,-1],[-32,-1],[-38,0],[-89,-2],[-66,-1],[-23,-1],[-43,0],[3,-149],[96,0],[14,0],[24,1],[38,0],[1,-29],[2,-32],[-56,-1],[-5,0],[-86,-1],[27,-53],[28,-41],[25,-22],[20,-14],[3,-1],[33,-18],[22,-11],[26,-14],[4,-2],[36,-22],[27,-22],[16,-27],[-15,-12],[-2,-2],[-24,-13],[-19,-12],[-9,-2],[-9,-1],[-38,-15],[-50,-33],[-6,-18],[-38,-68],[-10,-19],[-12,-9],[-61,-46],[-31,-37],[-7,-36],[-10,-55],[-7,-10],[-9,-10],[-63,-45],[-84,-59],[-2,-1],[-54,-36],[-11,-7],[-34,-13],[-20,27],[-46,-10]],[[36564,64854],[-27,26],[-48,63],[0,5],[1,2],[3,25],[27,24],[4,30],[-17,18],[-42,7],[-8,1],[-7,-4],[-14,-7],[-37,4],[-30,7],[-29,7],[-25,25],[-26,43],[-16,29],[-11,20],[-6,9],[-4,58],[4,23],[1,9],[-2,8],[-9,11],[-18,20],[-35,22],[-49,7],[-64,9],[-19,4],[-22,5],[-25,23],[-3,2],[-5,1],[-42,7],[-21,8],[-28,27],[-14,13],[-1,5],[-13,58],[-9,39],[-1,7],[-3,26],[-6,53],[8,8],[8,56],[-40,48],[-30,17],[-1,0],[-83,35],[-3,1],[-54,9],[-19,21],[-7,30],[2,20],[-7,12],[-1,2],[-19,21],[-11,7],[-10,6],[-5,4],[-26,2],[-37,-12],[-5,1],[-7,0],[-9,9],[2,30],[13,45],[29,46],[9,40],[-12,13],[-7,8],[-57,6],[-8,2],[-10,3],[-6,6],[-19,124],[2,19],[16,17],[5,13],[-1,11],[-3,3],[-3,4],[-19,2],[-21,-14],[-31,-30],[-12,2],[-6,0],[-9,9],[0,17],[11,34],[8,10],[1,27],[-46,38],[-3,4],[-22,31],[-29,39]],[[35284,66489],[-18,18],[-2,11],[10,42],[20,47],[13,20],[4,6],[-133,60],[-37,4],[-4,1],[-14,9],[-9,9],[7,58],[-11,13],[-4,4],[-29,16],[-21,11],[-17,18],[1,5],[1,15],[0,12],[-1,4],[-5,19],[-9,25],[-13,36],[-8,21],[-12,25],[-5,9],[-22,25],[-23,16],[-39,18],[-45,9],[-5,1],[-8,9],[-65,105],[-3,20],[1,16],[3,19],[11,40],[-8,11],[-11,12],[-13,11],[-16,18],[-17,16],[-19,9],[-40,-10],[-46,-12],[-43,12],[-13,3],[-32,8],[-3,1],[-24,4],[-18,7],[-4,2],[-18,11],[-8,6],[-20,8],[-20,5],[-93,-2],[-9,-1],[-31,-13],[-15,-13],[-9,-15],[-4,-12],[-14,-9],[-14,-1],[-6,5],[-4,3],[-3,13],[0,41],[-5,13],[-4,8],[0,2],[-2,2],[-7,8],[-1,0],[-12,9],[-1,1],[-6,1],[-8,2],[-19,-6],[-26,-23],[-14,-6],[-12,-4],[-20,3],[-24,11],[-33,14],[-14,7],[-52,39],[-12,17],[-20,18],[-15,10],[-36,14],[-83,17],[-27,5],[-38,1],[-35,2],[-3,0],[-4,-1],[-48,-7],[-112,-16],[-4,-1],[-60,-17],[-4,-3],[-11,-3],[-3,2],[-7,4],[-18,20],[-10,15],[-21,45],[-6,19],[-5,11],[-5,3],[-2,1],[-13,8],[-23,0],[-169,-33],[-3,-1],[-9,-3],[-10,-16],[-11,-24],[-5,-3],[-53,-28],[-10,4],[-14,7],[-65,29],[-1,3],[-21,9],[-19,5],[-25,-2],[-4,-1],[-4,3],[-1,12],[3,8],[4,8],[10,6],[62,9],[28,0],[3,0],[11,6],[9,8],[8,12],[5,8],[5,8],[4,10],[-6,20],[-22,20],[-22,9],[-9,4],[-20,17],[-13,23],[-6,16],[-7,56],[-1,7],[-1,5],[-2,6],[-1,2],[-10,9],[-16,8],[-65,10],[-21,-4],[-13,-4],[-7,-3],[-2,0],[-11,0],[-4,2],[-12,8],[-3,10],[-1,3],[-6,21],[8,64],[3,9],[10,28],[17,32],[-1,16],[-8,11],[-23,24],[-10,6],[-15,-2],[-11,-4],[-119,-70],[-5,-5],[1,-23],[-65,-22],[-15,31],[-1,4],[-13,46],[1,6],[1,9],[0,5],[16,19],[17,7],[45,17],[13,5],[21,11],[43,9],[59,-2],[8,-1],[1,58],[0,24]],[[61393,69837],[-61,-57],[-33,-40],[-41,-51],[-29,-36],[-16,-11],[-13,-4],[-16,-1],[-7,2],[-32,14],[-29,18],[-26,20],[-12,3],[-97,-19],[-13,-4],[-24,-20],[-2,-1],[-37,-30],[-14,-11],[-14,-13],[-2,-1],[-1,-4],[-2,-3],[-1,-2],[-2,-14],[5,-7],[6,-9],[27,-23],[8,-13],[1,-17],[-24,-98],[-2,-7],[-1,0],[-1,-2],[-10,-9],[-31,-16],[-5,-4],[-25,-23],[-2,-2],[-9,-11],[-13,-16],[-3,-5],[-8,-19],[-5,-25],[-6,-17],[-6,-4],[-4,-1],[-34,-5],[2,-17],[4,-41],[2,-40],[-4,-11],[-40,-43],[-7,-7],[-2,-1],[-15,-10],[-19,-6],[-4,-1],[-2,-1],[-14,0],[-2,0],[-7,1],[-5,3],[-1,1],[-1,0],[-43,-28],[0,-1],[-29,-55],[-4,-6],[-33,-52],[-34,-53],[1,-10],[-1,-7],[-2,-29],[26,2],[23,6],[27,-8],[10,-20],[-17,-20],[-12,-20],[-3,-24],[11,-23],[-11,-30],[-14,-17],[-6,-28],[6,-28],[2,-22],[13,-17],[-14,-24],[-6,-28],[-22,3],[-24,-12],[-24,-8],[-13,-27],[-7,-21],[-15,-16],[-10,-24],[-13,-20],[-24,-6],[-14,-18],[-21,6],[0,-22],[-16,-21],[-28,-6],[-22,-11],[-12,-22],[-23,4],[-26,11],[-19,-18],[-21,9],[-28,-3],[-1,-24],[-6,-22],[-5,-24],[-13,-22],[11,-20],[-5,-24],[-18,-14],[-17,-18],[4,-27],[5,-24],[-21,-16],[-16,-18],[-22,-14],[-17,-23],[-4,-28],[-1,-31],[-25,-16],[-20,-11],[-20,-12],[-30,-6],[-28,10],[-25,13],[-22,8],[-27,2],[-20,14],[-28,-1],[-32,-4],[-25,-2],[-25,13],[-29,6],[-22,17],[-18,14],[-21,5],[-25,-6],[-23,-18],[-20,-7],[-24,-10],[-25,-6],[-28,0],[-34,-3],[-27,6],[-25,14],[-27,-3],[-24,-5],[-46,-4],[-26,-9],[-44,-23],[-45,-9],[-21,8],[-20,7],[-24,10],[-28,10],[-97,38],[-97,38],[-53,20],[-85,33],[-26,10],[-28,11],[-28,11],[-21,8],[-53,21],[-47,-21],[-11,-6],[-40,-19],[-3,-3],[-12,-13],[-18,-20],[-38,-42],[10,-21],[9,-20],[-8,-42],[-6,-46],[10,-50],[-3,-34],[-8,-31],[-42,-41],[0,-1],[-36,-13],[-53,-22],[-30,-16],[-26,-10],[-56,-8],[-19,-9],[-16,-17],[-9,-20],[-5,-27],[-10,-27],[-17,-31],[-9,-28],[2,-35],[-1,-23],[-24,-17],[-12,-18],[-24,-20],[-54,-27],[-22,-26],[-30,-23],[-18,-25],[-37,-57],[-17,-16],[-35,-29],[-32,-20],[-19,-25],[-19,-27],[-16,-19],[-18,-16],[-14,-16],[-48,-20],[-23,-16],[-34,-19],[-38,-23],[-24,-9],[-25,-12],[50,-41],[13,-18],[25,-44],[2,-8],[9,-29],[4,-53],[-1,-18],[3,-8],[6,-8],[7,-5],[10,-4],[33,-1],[16,-4],[13,-10],[0,-1],[27,-47],[1,-9],[2,-30],[1,-39],[2,-12],[26,-30],[3,-1],[5,-8],[47,-69]],[[57782,66472],[-19,-11],[-20,-6],[-25,3],[-19,13],[-18,-12],[-22,-11],[-28,0],[-14,-20],[-25,-5],[-19,12],[-26,5],[-19,10],[-21,20],[-28,6],[-23,-2],[-26,9],[-34,21],[-20,16],[-16,11],[-6,4],[-20,-6],[-22,-5],[-25,-5],[-27,-8],[-25,-9],[-19,-13],[-24,-3],[-13,23],[-25,9],[-21,-16],[-18,-14],[-24,-12],[-20,-8],[-21,-9],[-16,-18],[-18,-17],[-24,-19],[-17,-17],[-24,-10],[-21,-14],[-24,-6],[-21,14],[-16,14],[-17,16],[-32,-5],[-31,9],[-25,2],[-6,-22],[-19,-14],[-28,-2],[-28,0],[-21,-8],[-24,2],[-14,22],[-221,23],[-25,2],[-292,30],[-85,9],[-57,6],[-20,13],[-16,14],[-44,45],[-26,23],[-46,35],[-69,51],[-23,15],[-30,11],[-30,5],[-59,7],[-34,-19],[-36,-26],[-26,-13],[-39,-3],[-50,-1],[-26,-1],[-22,3],[-26,7],[-24,-1],[-24,-2],[-30,-2],[-28,5],[-27,2],[-25,-6],[-39,-12],[-25,-5],[-28,-4],[-20,-17],[-19,-15],[-23,0],[-32,22],[-36,32],[-41,34],[-35,19],[-21,9],[-16,15],[-23,26],[-40,42],[-21,22],[-23,17],[-28,18],[-27,21],[-34,27],[-24,20],[-34,29],[-18,14],[-27,23],[-77,67],[-46,4]],[[70787,71854],[93,-96],[195,-58],[-36,-90],[59,-32],[170,-196],[40,-45],[50,-7],[60,-67],[33,-37],[5,-6],[15,-18],[-4,-20],[-1,-5],[0,-3],[2,-5],[1,-7],[1,-3],[-13,-178],[0,-2],[-7,-37],[-7,-34],[0,-9],[-1,-50],[0,-1],[54,-205],[10,-19],[10,-19],[47,-123],[91,-81],[42,-45],[142,-127],[48,-38],[67,-41],[105,-30],[122,-20],[29,-1],[8,-9],[40,-17],[23,-9],[21,-2],[30,-3],[18,-12],[83,-57],[4,-25],[23,-84],[64,-59],[42,-39],[66,-61],[96,-48],[42,-13],[56,-14],[1,0],[18,-2],[43,-6],[2,-1],[64,-5],[66,11],[11,7],[41,41],[5,5],[37,32],[65,34],[48,13],[2,-1],[16,-5],[86,10],[53,-7],[33,-12],[21,-14],[6,-1],[67,-79],[48,-77],[50,-57],[3,-4],[10,-8],[19,-15],[68,-43],[16,-11],[54,-13],[51,-13],[93,-18],[54,-6],[67,-1],[76,-31],[29,-14],[95,-50],[29,-34],[88,-11],[35,-4],[37,-13],[84,-35],[88,-66],[69,-47],[111,-123],[17,-27],[13,-20],[32,-37],[7,-1],[22,-27],[12,-14],[9,-11],[7,-9],[57,-99],[42,-51],[0,-1],[11,-31],[58,12]],[[75071,68657],[-18,-13],[-52,-37],[-22,-15],[-123,-87],[-122,-87],[-89,-66],[-67,-46],[-35,-24],[-20,-12],[-26,-20],[-22,-16],[-22,-16],[-89,-65],[-23,-17],[-3,-2],[-74,-47],[-38,-24],[-1,-1],[-16,-10],[-27,-15],[-3,-2],[-17,-12],[-34,-26],[-28,-21],[-27,-21],[-29,-21],[-127,-97],[-27,-22],[-46,-34],[-23,-15],[-10,-8],[-26,-23],[-23,-17],[-45,-34],[-20,-15],[-21,-15],[-36,-28],[-50,-37],[-30,-21],[-156,-115],[-33,-23],[-19,-12],[-1,-1],[-40,-29],[-76,-55],[-31,-25],[-53,-39],[-52,-36],[-55,-43],[-27,-19],[-62,-47],[-23,-16],[-32,-24],[-105,-76],[-72,-52],[-44,-32],[-69,-49],[-35,-25],[-112,-81],[-106,-77],[-12,-9],[-28,-20],[-55,-40],[-78,-56],[-9,-6],[-13,-9],[-90,-66],[-61,-45],[-110,-78],[-4,-3],[-28,-21],[-26,-19],[-49,-36],[-18,-15],[-42,-31],[-24,-17],[-23,-18],[-49,-40],[-23,-17],[-29,-21],[-48,-35],[-46,-34],[-22,-16],[-22,-17],[-106,-79],[-29,-22],[-32,-25],[-63,-48],[-25,-19],[-97,-76],[-26,-19],[-45,-29],[-1,-1],[-58,-37],[-35,-27],[-28,-23],[-136,-100],[-19,-22],[-38,-32],[-99,-73],[-29,-22],[-16,-14],[-66,-53],[-47,-34],[-33,-25],[-60,-37],[-131,-101],[-138,-107],[-359,-261],[-244,-176]],[[69488,64561],[-16,21],[-12,22],[-25,15],[-25,11],[-20,14],[-27,12],[-17,20],[-14,20],[-18,18],[-32,10],[-26,22],[-22,17],[-27,12],[-20,8],[-19,11],[-13,21],[-1,23],[-5,24],[-8,26],[-8,22],[-11,26],[-4,24],[-5,23],[-17,18],[-23,8],[-24,10],[-21,14],[-30,13],[-13,19],[-13,20],[-15,9],[-5,2],[-23,8],[-28,15],[-19,18],[-14,25],[-3,31],[8,26],[2,27],[-16,22],[-17,31],[-32,25],[-20,13],[-17,13],[-15,19],[-16,32],[-8,24],[-14,33],[1,34],[-21,18],[-45,9],[-25,11],[-23,15],[-36,33],[-27,9],[-6,22],[-8,22],[-10,20],[-3,31],[22,13],[13,20],[10,24],[22,32],[15,30],[9,23],[7,32],[11,23],[12,32],[-10,28],[-16,20],[-4,4],[-14,19],[-35,37],[-32,7],[-24,8],[-6,2],[-24,17],[-22,20],[-29,15],[-23,17],[-14,17],[-17,23],[-18,24],[-27,39],[-13,27],[-17,34],[-16,22],[-30,42],[-16,19],[-13,17],[-18,22],[-24,23],[-23,27],[-4,29],[-10,25],[-20,22],[-50,44],[-15,20],[-17,24],[-25,30],[-21,15],[-27,8],[-23,4],[-42,8],[-24,8],[-21,11],[-29,18],[-27,23],[-13,18],[-30,47],[-13,20],[-6,9],[-27,26],[-21,20],[-17,19],[-28,33],[-22,26],[-25,28],[5,25],[17,21],[15,17],[8,21],[-2,24],[-3,27],[-4,25],[-6,50],[-17,40],[-20,16],[-30,24],[-47,45],[-17,17],[-25,23],[-21,20],[-37,36],[-35,34],[-28,25],[-57,55],[-9,22],[-1,28],[1,36],[14,29],[12,24],[-1,4],[-1,27],[-10,33],[-8,23],[-9,22],[-13,35],[-8,25],[-1,1],[-8,22],[-9,33],[5,23],[15,19],[42,72],[52,87],[19,59],[8,30],[14,20],[14,16],[20,19],[27,23],[20,16],[19,13],[25,15],[35,20],[30,17],[-116,45],[-43,16],[-144,56],[-64,25],[-47,18],[-1,0],[-429,166],[-158,64],[-70,27],[-20,16],[-6,22],[1,27],[0,1],[0,1],[8,24],[1,5],[9,22],[7,18],[9,19],[12,30],[8,32],[1,27],[0,5],[0,3],[0,6],[-2,16],[-1,30],[-1,29],[3,27],[8,22],[5,6],[10,16],[23,20],[34,24],[25,17],[19,13],[33,23],[35,25],[19,13],[16,15],[9,11],[11,13],[12,21],[18,31],[83,139],[1,0],[23,11],[29,19],[29,30],[3,34],[4,33],[1,27],[0,1],[8,116],[-27,6],[-42,-3],[-22,-9],[-31,4],[-33,15],[-32,20],[-20,20],[-21,21],[-17,20],[-97,97],[-82,36],[-11,18],[14,18],[35,28],[2,31],[14,30],[-7,22],[-18,18],[-9,26],[5,31],[23,14],[-30,24],[-21,18],[-7,31],[-37,26],[-12,22],[-10,27],[-6,24],[-14,18],[-19,10],[-23,6],[-26,11],[-29,22],[-21,29],[38,57],[13,30],[-6,24],[-20,33],[28,28],[22,19],[8,8],[16,14],[66,2],[38,21],[12,32],[32,7],[30,16],[38,9],[32,33],[37,13],[6,30],[-21,33]],[[69488,64561],[-28,-23],[-49,-35],[-133,-97],[-106,-76],[-160,-117],[-279,-204],[-193,-141],[-97,-70],[-82,-60],[-49,-35],[-67,-54]],[[68245,63649],[-1,0],[-27,-6],[-3,-1],[-3,1],[-24,6],[-29,9],[-29,-3],[-25,-11],[-13,-2],[-18,-2],[-14,0],[-11,-1],[-9,1],[-14,2],[-22,-5],[-15,-2],[-13,-2],[-7,-1],[-26,-1],[-29,-3],[-24,-4],[-17,-4],[-9,-2],[-18,4],[-11,3],[-21,8],[-19,-5],[-3,-1],[-6,1],[-4,1],[-20,4],[-25,-2],[-11,-1],[-12,-1],[-23,4],[-35,6],[-44,5]],[[67611,63644],[-24,3],[-22,0],[-15,-1],[-7,-2],[-26,0],[-23,3],[-32,4],[-44,8],[-33,11],[-11,4],[-31,11],[-16,0],[-24,0],[-10,1],[-23,11],[-35,23],[-4,10],[-5,12],[-9,22],[-19,12],[-25,2],[-24,3],[-23,-3],[-11,-2],[-11,-2],[-19,16],[-2,2],[-22,14],[-13,3],[-11,3],[-1,3],[-1,3],[-2,4],[-6,12],[1,22],[3,26],[-12,21],[-24,11],[-8,5],[-14,9],[-7,26],[-33,10],[-24,7],[-8,15],[-5,8],[3,25],[3,27],[0,6],[1,27],[-18,6],[-5,1],[-5,-2],[-21,-9],[-23,-11],[-30,-7],[-21,-15],[-21,-5],[-24,-4],[-8,6],[-12,9],[-5,3],[-20,13],[-18,15],[-18,14],[-22,2],[-22,12],[-28,-1],[-23,-8],[-13,-2],[-12,-3],[-12,19],[-18,21],[-7,28],[-29,6],[-24,5],[-21,1],[-26,8],[-23,15],[-11,-12],[-9,-8],[-30,0],[-25,4],[-24,7],[-3,2],[-8,4],[-11,5],[-17,13],[-16,22],[-1,22],[0,1],[-22,5],[-25,-5],[-29,-4],[-31,-3],[-33,7],[-22,-4],[-1,0],[-24,0],[-25,3],[-16,16],[-24,-3],[-28,-7],[-23,-9],[-43,8],[-35,21],[-22,-7],[-19,-19],[-30,7],[-29,-7],[-32,-18],[-26,1],[-21,-3],[-19,-10],[-17,14],[-22,9],[-24,-10],[-28,-3],[-26,-6],[-28,5],[-23,2],[-22,4],[-21,-3],[-18,-13],[-29,-15],[-31,-6],[-21,-2],[-26,3],[-34,-5],[-27,-4],[-23,0],[-31,4],[-18,18],[-9,23],[-8,30],[1,25],[-17,15],[-36,-2],[-22,-7],[-26,7],[-22,-1],[-23,-1],[-26,-7],[-30,-11],[-28,15],[-20,10],[-19,12],[-24,19],[-24,22],[-17,17],[-16,14],[-8,28],[-21,15],[-25,5],[-26,8],[-32,9],[-23,0],[-24,9],[-12,23],[-9,26],[-14,23],[-26,14],[-26,9],[-25,8],[-26,10],[-23,8],[-22,9],[-24,7],[-20,13],[-22,-3],[-23,-11],[-20,-23],[-24,-29],[-18,-12],[-33,-4],[-24,-16],[-25,-23],[-26,0],[-25,11],[-18,17],[9,22],[-5,21],[-11,20],[-15,40],[15,56],[21,74],[21,74],[41,166],[-50,229],[-5,21],[-4,21],[-12,56],[-12,56],[-20,89],[0,2],[-35,160],[-18,83],[-26,112],[-10,47],[-73,83],[-168,189],[-10,11],[-6,6],[-85,95],[-152,172],[-104,116],[-51,56],[-21,52],[-43,105],[-5,13],[-7,18],[-31,77],[-161,401],[-109,271],[-13,33],[-17,40],[-24,75],[-8,21],[-10,26],[-9,22],[-20,52],[-3,6],[-63,162],[-13,35],[-26,67],[-2,5],[-9,23],[-32,81],[-32,82],[-17,45],[-17,44],[-70,177],[-1,2],[-15,37],[-16,39],[-21,50],[-31,67],[-54,133],[-95,233],[-60,149],[-67,167],[-11,26],[-8,20],[-1,7],[-5,18],[-18,54],[-4,21],[-6,33],[-1,6],[-7,32],[-16,43],[-10,22],[-17,30],[-7,9],[-12,17],[-17,22],[-1,1],[-50,122],[-19,47],[-9,22],[-7,21],[3,34]],[[27783,70862],[-3,-44],[1,-29],[-1,-64],[1,-35],[202,-3],[-1,-39],[-2,-52],[-1,-82],[22,0],[92,-2],[83,-2],[-1,-43],[-1,-45],[0,-53],[-1,-26],[-2,-130],[0,-71],[-1,-32],[0,-22],[0,-33],[0,-27],[0,-36],[36,-1],[39,0],[35,0],[27,0],[67,0],[0,-39],[-2,-25],[-3,-45],[-2,-28],[7,-38],[75,-2],[122,-1],[-1,-107],[0,-24],[-1,-25],[-30,0],[-25,0],[-60,0],[-51,1],[-29,0],[3,-79],[0,-87],[0,-33],[-25,0],[-14,0],[-18,0],[-60,0],[-36,1],[-67,0],[0,-26],[-2,-34],[1,-25],[7,-73],[-1,-54],[-1,-3],[0,-34],[0,-43],[-1,-75],[0,-37],[-1,-66],[-3,-49],[-3,-31],[-2,-35],[-1,-24],[0,-4],[4,-104],[-55,0],[-33,0],[-28,1],[-25,0],[-41,0],[-37,0],[-36,1],[-3,0],[-167,1],[-13,0],[-26,0],[-110,1],[-22,0],[-1,-40],[-4,-136],[0,-1],[-1,-30],[-2,-80],[-1,-61],[78,0],[25,-1],[107,-1],[0,-33],[-2,-68],[-1,-52],[-1,-25],[-1,-36],[-1,-8],[-1,-41],[-1,-28],[-1,-23],[-1,-44],[0,-11],[-1,-26],[-1,-33],[-1,-11],[0,-22],[-1,-25],[-1,-27],[-2,-46],[-2,-69],[-2,-25],[-7,-93],[1,-57],[-1,-96],[-1,-68],[0,-78],[-215,0],[0,-94],[-1,-32],[0,-36],[-1,-52],[0,-31],[-1,-155],[0,-95],[0,-78],[-1,-88],[-1,-37],[0,-98],[-5,-136],[1,-22],[-3,-49],[1,-42],[-36,-1],[-87,0],[-79,0],[1,-48],[0,-5],[2,-82],[-1,-44],[-70,3],[-72,2],[-95,3],[-25,1],[-62,2],[-22,0],[-56,3],[1,97],[2,78],[-51,-2],[-130,-2],[-26,0],[-111,1],[-166,1],[-107,1],[-46,0],[-1,-72],[-1,-38],[0,-25],[0,-52],[0,-76],[0,-27],[-1,-25],[-1,-22],[2,-36],[0,-191],[0,-49],[-1,-51],[-1,-70],[-1,-110],[-1,-127],[0,-47],[0,-71],[-5,-117],[-1,-72],[0,-30],[1,-44],[0,-28],[-1,-35],[-1,-29],[3,-116],[-1,-52],[-2,-64],[-2,-125]],[[26253,64514],[-89,1],[-27,0],[-130,0],[-34,0],[-64,1],[-66,0],[-78,-2],[-223,2]],[[25542,64516],[-15,19],[0,7],[9,9],[6,18],[0,21],[-6,11],[-67,45],[-68,44],[3,27],[4,8],[14,10],[12,15],[7,19],[1,9],[8,26],[-6,11],[-6,11],[-26,52],[-3,8],[-4,8],[-26,57],[-4,10],[2,3],[1,1],[34,12],[8,-1],[22,-6],[16,1],[96,30],[19,9],[11,16],[-17,81],[-3,1],[-7,1],[-2,-2],[-5,-16],[-1,-2],[-5,0],[-10,6],[-1,1],[-32,49],[-3,6],[3,45],[7,29],[-1,13],[-2,5],[-8,7],[-19,13],[-21,-3],[-5,0],[-2,0],[-16,11],[-27,17],[-2,4],[0,1],[14,69],[1,8],[-7,55],[55,36],[11,3],[73,23],[15,5],[3,59],[-1,6],[-6,99],[-4,26],[0,12],[0,3],[16,47],[-8,9],[-22,27],[-16,14],[-88,1],[-2,33],[1,27],[-2,57],[1,24],[0,32],[-16,-1],[-178,3],[4,114],[-4,28],[2,31],[0,44],[0,23],[0,22],[0,30],[1,24],[0,32],[48,1],[80,1],[24,0],[48,2],[2,24],[3,33],[0,23],[-1,46],[-1,47],[96,-1],[88,0],[-14,27],[-18,35],[-8,-1],[-1,-1],[-18,-16],[-13,-11],[-5,1],[-5,7],[-1,2],[-17,26],[0,1],[-1,4],[-4,22],[-1,6],[2,10],[1,18],[3,8],[21,29],[9,12],[3,5],[12,15],[33,55],[-1,3],[-3,17],[68,82],[3,30],[0,16],[-4,8],[-34,31],[-8,4],[-37,19],[-10,10],[-5,10],[-3,5],[-5,10],[-2,20],[7,8],[13,7],[13,7],[6,30],[0,8],[-46,107],[-3,5],[-3,7],[-20,18],[-13,4],[-39,11],[-6,3],[-20,13],[-3,3],[-38,50],[-15,20],[-18,24],[-10,23],[-17,14],[-14,8],[-6,3],[-19,14],[-20,11],[-30,17],[-32,22],[-31,21],[-25,16],[-28,18],[-27,21],[-19,15],[-22,17],[-75,1],[-90,2],[-27,-1],[-30,0],[-1,41],[-1,39],[2,43],[0,29],[0,23],[0,47],[0,67],[0,47],[-33,34],[-20,21],[-16,17],[-19,19],[-21,23],[-19,23],[-17,20],[-5,7],[-27,34],[-17,19],[-22,26],[-16,20],[-20,23],[-19,23],[-9,29],[0,25],[3,24],[4,23],[4,26],[-1,35],[-4,25],[-7,34],[-5,31],[-3,23],[-4,32],[-4,36],[-10,44],[-16,32],[-15,29],[-15,35],[-11,18],[-9,22],[-19,29],[-8,22],[-18,2],[-4,1],[-31,0],[-26,1],[-44,1],[-42,1],[-30,0],[-6,0],[-44,0],[-23,0],[-36,-1],[-22,0],[-51,1],[-26,1]],[[35284,66489],[-108,9],[-22,-2],[-51,-1],[0,-40],[0,-17],[-21,0],[-60,-1],[-94,-1],[-53,0],[0,-29],[0,-113],[-1,-23],[0,-137],[0,-53],[-42,-1],[-40,0],[-44,0],[-94,0],[0,-129],[-191,-1],[0,-150],[0,-100],[-22,0],[-43,-1],[-145,0],[0,-134],[0,-36],[-1,-28],[-2,-88],[0,-24],[-1,-44],[0,-97],[0,-31],[24,0],[129,0],[0,-74],[-28,-30],[78,-40],[-4,-21],[-1,-5],[-11,-45],[-76,-1],[-11,0],[-12,0],[-56,1],[-75,-9],[-36,0],[-6,-25],[-16,-18],[-17,-14],[-36,-5],[-18,-20],[-35,-17],[-5,-15],[-5,-15],[0,-2],[-1,0],[-51,-24],[-29,7],[-31,12],[-22,3],[-52,-1],[-3,0],[-20,2],[-23,-1],[-46,0],[-6,1],[-41,3],[-7,-1],[-11,0],[-6,0],[-29,-6],[-109,1],[-21,-4],[-8,-23],[-6,-25],[-14,-23],[-24,-18],[-26,-8],[-11,-19],[-23,-14],[-10,-30],[-15,-23],[-33,2],[-24,-2],[-25,-10],[-61,-20],[-34,-8],[-24,-1],[-18,16],[7,29],[1,26],[-29,7],[-131,1],[-14,-49],[0,-50],[-2,-116],[-2,-113],[-1,-44],[-1,-31],[-31,0],[-27,-5],[-54,2],[-28,-22],[-60,-14],[-3,-98],[-13,1],[-25,11],[-2,-51],[0,-27],[42,0],[1,-24],[0,-23],[-50,0],[-18,0],[-3,-38],[-162,0],[0,-69],[0,-70],[0,-19],[0,-27],[-1,-27],[1,-5],[0,-19],[1,-16],[-158,-175],[-52,4],[0,74],[1,92],[-79,0],[-119,0],[-2,-79],[-3,-105],[-1,-45],[-2,-111],[-57,0],[-88,1],[-7,-20],[-37,-25],[-33,-24],[-27,-6],[-37,16],[-15,24],[-5,7],[-2,3],[-9,17],[-38,10],[-96,1],[-159,2],[-1,-62],[-2,-23]],[[31536,63344],[-25,17],[-73,38],[-3,0],[-44,-3],[6,-25],[-41,-14],[-13,-5],[-37,-13],[-17,-6],[0,1],[-3,13],[-3,13],[-33,36],[-38,38],[-8,0],[-1,0],[-11,-1],[-42,-8],[-2,-3],[-5,-18],[-4,-5],[-46,-12],[-6,1],[-68,22],[-23,23],[-10,-3],[-60,6],[-7,6],[-15,13],[-39,97],[-2,5],[-116,101],[-11,10],[-79,68],[-4,3],[-15,-1],[-5,-1],[-17,-7],[-48,-19],[-2,-1],[-43,-45],[-2,126],[1,23],[0,36],[1,59],[0,23],[2,37],[1,63],[2,119],[-41,1],[-150,1],[-44,0],[-48,1],[-28,1],[-127,1],[-22,1],[-58,1],[-23,0],[-12,0],[-55,0],[-127,-6],[-103,5],[-22,2],[-141,-1],[-92,0],[-25,-1],[-27,0],[-63,0],[-35,-1],[-101,-1],[-25,0],[-6,0],[-43,0],[-26,0],[-44,0],[-55,0],[-162,-1],[-214,1],[-39,0],[-72,0],[4,51],[0,55],[0,62],[-1,43],[2,76],[2,51],[-25,23],[-33,-2],[-24,-1],[-35,0],[-31,0],[-46,1],[-33,1],[-23,1],[-26,0],[-82,0],[-70,0],[-44,-1],[-49,0],[-150,1],[-53,0],[-63,-1],[-27,-1],[-46,0],[-49,2],[-21,-1],[-2,0],[-61,0],[-31,0],[-7,0],[-21,0],[-84,0],[-47,0],[-23,0],[-47,0],[-105,-1],[-90,1],[-85,-1],[-28,0],[-81,0],[-224,1],[-96,-1],[-63,0],[-45,0],[-109,0],[-73,0]],[[67611,63644],[-5,-3],[-40,-32],[-133,-103],[-91,-73],[-204,-161],[-40,-33],[-109,-86],[-27,-22],[-34,-26],[-75,-60],[-29,-23],[-44,-35],[-53,-42],[-55,-44],[-11,-9],[-63,-50]],[[66598,62842],[-19,9],[-6,2],[-52,23],[-20,9],[-55,25],[-39,17],[-91,41],[-320,143],[-28,13],[-37,17],[-97,43],[-64,28],[-165,74],[-66,28],[-28,12],[-143,65],[-38,17],[-35,15],[-59,25],[-62,18],[-90,21],[-248,102],[-67,27],[-266,110],[-111,45],[-110,46],[-48,21],[-317,132],[-1,1],[-67,-17],[-43,-12],[-43,-7],[-34,-7],[-1,0],[-20,-10],[-27,-19],[-24,-17],[-25,-10],[-46,-4],[-55,3],[-46,1],[-91,2],[-32,1],[-23,-2],[-37,-10],[-27,-8],[-19,-10],[-30,-35],[-13,-20],[-26,-36],[-29,-37],[-21,-25],[-18,-20],[-26,-15],[-20,-7],[-44,-14],[-21,-6],[-3,0],[-31,-7],[-50,-5],[-43,-4],[-36,-10],[-21,-14],[-40,-33],[-24,-17],[-27,-12],[-21,-2],[-56,10],[-45,8],[-27,4],[-36,6],[-11,2],[-22,3],[-22,3],[-26,-2],[-32,-6],[-33,-12],[-30,-24],[-23,-18],[-21,-16],[-20,-16],[-21,-12],[-26,-10],[-26,-6],[-47,-7],[-26,-6],[-47,-12],[-24,-10],[-18,-18],[-21,-41],[-8,-22],[-35,-40],[-39,-35],[-31,-31],[-28,-18],[-26,-8],[-29,-8],[-21,-10],[-31,-25],[-20,-20],[-22,-26],[-20,-19],[-17,-14],[-20,-18],[-29,-20],[-24,-20],[-20,-19],[-30,-30],[-37,-32],[-48,-37],[-38,-31],[-23,-16],[-20,-12],[-26,-12],[-37,-12],[-73,-22],[-27,-6],[-2,0],[-42,-4],[-74,7],[-49,7],[-56,8],[-23,4],[-24,1],[-32,-1],[-52,-5],[-33,-10],[-22,-12],[-29,-30],[-24,-20],[-30,-11],[-34,-10],[-38,-12],[-43,-22],[-63,-34],[-31,-21],[-36,-27],[-23,-23],[-22,-23],[-20,-19],[-37,-18],[-38,-14],[-40,-15],[-44,-19],[-27,-13],[-31,-8],[-27,-1],[-33,6],[-24,7],[-43,8],[-23,5],[-32,3],[-23,-4],[-29,-12],[-32,-18],[-20,6],[-13,1],[-16,1],[-32,-4],[-24,-5],[-23,-4],[-4,0],[-21,-6],[-21,-13],[-3,-6],[-9,-19]],[[59802,62384],[-94,21],[-16,-6],[-18,-9],[-13,-4],[-6,0],[-8,4],[-8,7],[-9,12],[-11,31],[-32,63],[-67,-6],[-86,25],[-8,3],[-2,1],[-7,6],[-4,4],[-9,66],[-1,7],[-7,7],[-1,1],[-11,10],[-72,43],[-84,30],[25,50],[2,6],[-2,13],[-11,14],[-34,38],[-1,2],[-13,47],[0,4],[0,4],[-1,11],[4,10],[9,24],[3,7],[1,1],[0,1],[2,2],[49,74],[0,6],[-2,21],[-3,30],[17,24],[4,4],[0,1],[0,2],[5,125],[-10,26],[-16,41],[-6,16],[-6,18],[-3,6],[0,3],[-1,0],[-9,41],[-9,40],[-2,1],[-2,1],[-3,12],[11,18],[31,31],[3,6],[1,1],[1,8],[-5,31],[-3,7],[-37,56],[-1,0],[-3,4],[-3,3],[-32,14],[-46,5],[-21,-3],[-39,-11],[-29,-8],[-3,0],[-2,-1],[-13,-1],[-10,3],[-10,9],[-5,10],[0,2],[0,2],[-6,54],[-14,24],[-14,22],[-5,18],[-1,8],[-2,33],[0,10],[-1,3],[8,6],[9,1],[3,0],[77,10],[6,1],[7,-1],[7,-1],[18,-6],[16,-5],[-7,58],[-8,11],[-10,5],[-26,8],[-13,3],[-4,0],[-34,12],[-41,16],[-15,6],[-4,2],[-5,3],[-3,4],[-6,9],[-8,13],[-39,102],[-1,16],[15,39],[18,52],[2,4],[-3,25],[-3,33],[-9,84],[-3,26],[-2,14],[-49,91],[1,0],[86,101],[-15,34],[-14,30],[-4,9],[-17,39],[-18,40],[-7,16],[-21,42],[-23,45],[-21,15],[-4,1],[-119,-13],[-91,67],[-1,0],[0,2],[-45,83],[-3,4],[-2,3],[-12,10],[-15,8],[-8,5],[-18,6],[-24,4],[6,32],[0,3],[29,19],[3,2],[15,8],[-5,8],[-19,30],[-3,5],[-3,5],[-1,1],[-1,17],[5,22],[7,15],[22,41],[-1,15],[-12,63],[0,1],[-3,5],[-4,6],[-63,42],[-4,2],[-9,4],[-40,3],[-19,2],[-13,3],[-11,6],[-22,15],[-9,9],[-5,9],[0,1],[-1,2],[-2,9],[-1,6],[10,1],[19,-7],[1,-1],[10,2],[36,16],[2,4],[-4,12],[-13,22],[0,1],[-22,28],[-4,3],[-6,4],[-9,6],[-19,4],[12,20],[5,10],[2,2],[68,42],[3,16],[20,110],[0,11],[-12,58],[-5,13],[-7,9],[-38,25],[-18,15],[-1,2],[-3,5],[-3,9],[6,88],[6,21],[18,25],[4,2],[36,25],[-18,31],[-2,2],[0,1],[0,29],[0,1],[4,11],[5,7],[11,9],[10,7],[2,9],[-22,25],[-2,2],[-18,14],[-21,12],[-24,3],[-1,0],[-10,3],[-28,9],[-101,37],[-2,1],[-1,0],[-11,6],[-7,10],[-3,5],[-4,4],[0,10],[7,8],[6,7],[2,8],[4,29],[0,1],[-2,5],[-10,3],[-1,0],[-8,0],[-3,0],[-7,-4],[-44,-38],[-5,-7],[-3,-8],[-23,-26],[-8,-8],[-7,-5],[-6,0],[-10,1],[-28,17],[-8,7],[-42,44],[-47,39],[-2,-1],[0,4],[0,1],[-8,25],[-7,21],[-7,17],[-33,53],[-9,6],[-51,35]],[[25542,64516],[17,-23],[13,-14],[2,-3],[30,-56],[48,-88],[6,-16],[1,-32],[-3,-30],[-15,-3],[-31,-5],[-37,-8],[-38,-7],[-4,-10],[-12,-39],[-18,-52],[0,-1],[74,-76],[17,-37],[0,-1],[19,-41],[2,-9],[-12,-54],[-3,-59],[2,-2],[15,-23],[11,-9],[4,-1],[-2,-14],[-51,-65],[-41,-22],[-6,-2],[-4,3],[-17,13],[-46,19],[-7,2],[-3,1],[-4,0],[-1,0],[-6,-3],[-2,-6],[-11,-30],[-1,-16],[4,-13],[5,-15],[10,-29],[-8,-34],[-6,-24],[-7,-33],[-6,-24],[-16,7],[2,-52],[-6,-14],[-36,-28],[-6,-1],[-21,-5],[2,31],[-4,7],[-6,3],[-11,5],[-4,2],[-22,10],[-16,6],[-31,6],[-6,-1],[-2,-2],[-51,-63],[-15,-29],[-22,-46],[-18,-36],[-2,-4],[-9,-30],[-1,-2],[-2,-12],[5,-17],[-51,-9],[-51,-28],[-4,-1],[-2,0],[-55,4],[-9,4],[-3,1],[-18,12],[-5,4],[-3,-4],[-26,-31],[-9,-10],[-17,-21],[15,-12],[17,-48],[-2,-4],[-4,-8],[-25,-12],[-1,0],[-9,-1],[-1,-1],[-47,-23],[-60,-116],[-22,-27],[-29,-35],[-17,-19],[-13,-15],[-18,-20],[0,-1],[-22,-55],[-2,-8],[28,-59],[3,-11],[-8,-62],[-14,-48],[-3,-3],[-34,-15],[15,-84],[-9,-13],[-7,-10],[-2,-9],[0,-14],[-140,1],[-68,1],[-207,2],[-22,1],[-26,0],[-90,1],[-169,2],[-31,1],[-54,1],[-65,1],[-119,1],[-56,3],[-26,0],[-22,0],[-42,1],[-30,0],[-22,1],[-162,3]],[[23247,62468],[-46,58],[-32,10],[-5,2],[-3,12],[-7,38],[-1,4],[8,10],[25,24],[7,7],[-15,17],[-4,26],[-44,104],[-1,3],[-27,29],[-36,22],[0,1],[-14,30],[-3,7],[-1,4],[0,3],[0,6],[0,11],[-22,8],[-58,41],[-15,10],[-13,18],[-1,1],[-10,42],[0,3],[-14,60],[-1,3],[2,0],[8,0],[1,4],[-5,27],[-52,96],[-4,3],[-17,14],[-17,14],[-1,1],[-2,4],[-8,31],[0,11],[5,15],[13,43],[36,44],[6,8],[10,54],[-1,18],[-42,50],[-26,29],[-15,15],[-6,3],[-13,-2],[-4,2],[-6,9],[-11,25],[-27,64],[-1,1],[1,6],[3,14],[4,99],[0,1],[-14,8],[-20,12],[-5,3],[-44,27],[-7,6],[-11,10],[-8,20],[0,16],[-13,49],[-10,26],[-9,7],[-28,17],[-7,0],[-9,1],[-1,0],[0,-1],[-6,-6],[-5,-2],[-8,2],[-4,0],[-27,24],[-1,1],[-2,3],[-7,11],[1,9],[-4,1],[-22,19],[-13,17],[-2,25],[13,26],[4,34],[0,4],[-4,2],[-60,3],[-6,-4],[-51,-6],[-20,2],[-19,8],[-22,10],[-4,2],[-80,39],[-45,22],[-18,19],[-46,39],[-21,0],[-8,-2],[-71,-20],[-8,-2],[-3,-1],[-4,-2],[-19,-12],[-11,3],[-18,5],[-36,20],[-5,4],[-2,9],[-15,16],[0,1],[-29,26],[-38,35],[-59,35],[-8,5],[-45,27],[-1,1],[-5,8],[-19,29],[-13,19],[-10,15],[-10,15],[-4,8],[-6,16],[-5,42],[-3,11],[-12,20],[-12,17],[-43,16],[-9,0],[-2,0],[-1,0],[-2,-2],[-15,-13],[-37,-30],[-6,-2],[-10,0],[-31,1],[-43,20],[-15,13],[0,1],[-1,2],[-1,5],[-2,13],[-6,32],[-5,26],[-1,6],[-3,9],[-25,93],[-1,4],[-20,41],[-13,21],[-7,20],[-13,36],[-17,51],[-6,18],[-5,15],[1,36],[-2,13],[-8,17],[-36,52],[-97,105],[-92,81],[-12,9],[-13,7],[-37,25],[-19,12],[-25,17],[-6,4],[-23,61],[0,1],[-11,30],[-2,4],[1,0],[2,1],[1,4],[6,30],[-12,13],[-37,4],[-4,0],[-4,4],[-15,13],[-11,9],[-21,49],[-17,51],[1,6],[-8,1],[-12,1],[-44,157],[3,19],[-6,17],[-15,45],[-1,3],[-27,155],[-1,6],[-4,2],[0,1],[-2,4],[-13,24],[-2,5],[-2,10],[0,9],[3,33],[0,4],[0,4],[-1,10],[-30,104],[-5,12],[-7,16],[-22,11],[-18,21],[-12,14],[-12,13],[-3,9],[-3,17],[5,7],[5,8],[4,8],[7,10],[10,14],[5,11],[-2,15],[-11,34],[1,23],[0,64],[2,96],[-12,68],[-10,57],[2,12],[12,69],[0,2],[43,36],[23,46],[1,9],[-2,9],[-17,34],[-13,59],[-21,28],[-3,5],[-2,6],[3,16],[5,32],[7,15],[6,8],[27,31],[18,21],[23,9],[27,9],[20,14],[23,13],[11,23],[-1,24],[15,30],[9,25],[17,19],[21,25],[9,26],[10,22],[20,29],[10,20],[4,36],[7,24],[12,23],[3,28],[8,25],[25,7],[6,41]],[[78769,62255],[-9,-8],[-2,0],[-6,-7],[-2,-1],[-13,-8],[-74,-15],[-31,-1],[-1,0],[-1,0],[-4,0],[-100,38],[-30,17],[-75,51],[-50,41],[-80,69],[-46,51],[-18,16],[-18,8],[-4,1],[-21,1],[-21,4],[-5,2],[-19,7],[-3,2],[-7,5],[-2,2],[-3,6],[-10,6],[-38,2],[-25,16],[-20,-2],[-52,3],[-15,-9],[-56,-8],[-37,-6],[-10,-1],[-58,-12],[-33,-8],[-29,-7],[-38,-5],[-50,-2],[-28,-2],[-27,-3],[-28,-3],[-83,-9],[-22,-2],[-35,-8],[-71,-21],[-119,-35],[-35,-11],[-51,-16],[-24,-8],[-2,-1],[-79,-22],[-49,-17],[-42,-23],[-2,-1],[-68,-58],[-34,-30],[-12,-10],[-57,-51],[-32,-29],[-24,-23],[-47,-43],[-1,0],[-3,-3],[-1,-1],[-16,-11],[-23,-17],[-2,-1],[-3,-2],[-42,-25],[-3,-2],[-4,-2],[-2,-1],[-19,-7],[-1,0],[-32,-11],[-4,-2],[-58,-23],[-106,-41],[-57,-24],[-9,-4],[-16,-8],[-111,-33],[-17,-5],[-14,-4],[-34,1],[-28,-12],[-79,7],[-32,3],[-21,2],[-12,1],[-2,-3],[-16,-12],[-18,-8],[-20,3],[-105,34],[-104,38],[-8,0],[-4,0],[-40,7],[-28,5],[-13,5],[-53,19],[-40,11],[-63,9],[-194,0],[-2,0],[-16,-2],[-47,-14],[-2,-1],[-1,0],[-18,-7],[-9,-6],[0,-1],[0,-2],[-4,1],[-110,7],[-28,2],[-108,31],[-27,7],[-49,14],[-44,13],[-2,0],[-37,12],[-1,0],[-46,15],[-6,2],[-52,23],[-17,7],[-143,62],[-3,2],[-4,2],[-11,5],[-26,14],[-3,2],[-14,-6],[-58,-25],[-12,-5],[-3,-1],[-84,-22],[-9,-2],[-26,-4],[-28,-4],[-2,-1],[-18,-4],[-29,-13],[-1,-1],[-2,-2],[-2,0],[-1,0],[-38,-23],[-7,-5],[-19,-22],[-3,-2],[-42,-26],[-40,-20],[-3,-2],[-5,-1],[-7,-8],[-60,-20],[-5,-2],[-44,-19],[-1,-1],[-1,-2],[-3,0],[-98,-19],[-6,-1],[-12,0],[-11,1],[-136,21],[-91,55],[-45,34],[-13,12],[-3,2],[-1,1],[-9,10],[-11,30],[-1,11],[0,1],[-3,14],[-12,34],[-21,14],[-6,3],[-9,3],[-17,9],[-28,15],[-14,7],[-21,12],[-18,16],[-2,2],[-38,22],[-22,16],[-37,26],[-24,6],[-28,8],[-34,21],[-26,6],[-13,23],[-7,35],[-7,23],[-18,29],[-10,31],[-25,60],[-16,21],[-15,21],[8,37],[2,27],[-13,29],[-3,37],[-46,46],[-9,22],[0,29],[1,23],[-15,32],[-2,34],[-18,19],[-54,33],[-22,15],[-39,19],[-21,16],[-21,13],[-35,18],[-22,6],[-45,7],[-40,-1],[-39,6],[-31,9],[-18,17],[-22,8],[-18,17],[-22,9],[-21,6],[-26,28],[-38,40],[-31,41],[-17,37],[-3,30],[-16,16],[-22,25],[-71,12],[-25,8],[-21,8],[-45,4],[-28,-2],[-21,-5],[-43,-14],[-44,-13],[-93,-31],[-54,-17],[-31,-12],[-30,-11],[-44,-14],[-22,-7],[-33,-10],[-26,-7],[-47,-13],[-28,-10],[-25,-9],[-36,-10],[-29,-8],[-35,-12],[-21,-5],[-25,-9],[-27,-5],[-23,-14],[-28,-8],[-67,-19],[-119,-40],[-115,-38],[-23,-8],[-8,-2],[-41,-13],[-115,-35],[-29,-9],[-24,-8],[-89,-28],[-109,-35],[-31,-10],[-70,-21],[-108,-36],[-146,-49],[-36,-13],[-83,-29]],[[70047,62683],[-32,-1],[-32,12],[-22,-3],[-24,-5],[-4,-1],[-23,7],[-28,5],[-7,3],[-21,11],[-7,2],[-25,7],[-8,8],[-12,12],[-18,11],[-8,5],[-24,21],[-32,11],[-22,13],[-35,12],[-14,13],[-5,3],[-3,0],[-27,-6],[-30,5],[-21,10],[-5,9],[-6,11],[-28,22],[-27,6],[-29,-6],[-16,3],[-11,2],[-9,10],[-9,10],[-13,36],[1,8],[1,7],[2,16],[3,23],[-10,26],[-4,11],[-22,25],[-21,16],[-2,7],[-2,13],[-1,6],[-8,20],[-23,23],[-18,13],[-10,21],[-24,24],[-10,8],[-29,20],[-29,26],[-24,13],[-16,21],[-21,8],[-12,21],[-22,14],[-22,9],[-24,12],[-70,20],[-17,14],[-26,-11],[-22,20],[-1,0],[-22,-9],[-12,13],[-8,10],[-26,42],[-25,15],[-19,10],[-4,2],[-10,8],[-14,11],[-7,6],[-18,13],[-7,3],[-16,7],[-19,15],[-14,12],[-6,4],[-21,13],[-12,4],[-22,10],[-22,5],[-24,4],[-25,17],[-55,17],[-33,11],[-21,0],[-25,-4],[-28,5],[-26,11],[-34,10],[-21,8],[-16,-2],[-17,-1],[-6,-4],[-13,-10],[-34,-2]],[[75071,68657],[29,-83],[59,-54],[53,-61],[33,-18],[24,-6],[25,-6],[38,-13],[69,-34],[3,-11],[7,-6],[46,-35],[13,-54],[6,-12],[9,-26],[0,-5],[0,-19],[17,-19],[4,-4],[9,-10],[13,-2],[21,-3],[39,-16],[21,-13],[15,-18],[9,-10],[10,-34],[0,-3],[12,-49],[12,-24],[35,-62],[40,-84],[22,-25],[41,-24],[34,-45],[22,-61],[4,-16],[0,-1],[1,-40],[-3,-4],[-5,-9],[4,-4],[348,-316],[3,-3],[4,-1],[47,-13],[47,-12],[79,-26],[132,-56],[17,-7],[7,-3],[1,0],[6,2],[6,-8],[2,-2],[42,-23],[148,-83],[113,-38],[152,-30],[66,-28],[74,-56],[45,-52],[44,-63],[25,-44],[14,-29],[21,-62],[34,-65],[40,-65],[78,-103],[24,-49],[1,-8],[2,-11],[-10,-55],[-1,-4],[-3,-5],[-11,-23],[-22,-25],[-14,-16],[-9,-11],[-22,-14],[-59,-25],[-60,-11],[-15,2],[-77,-9],[-46,-4],[-28,-20],[-17,-23],[-7,-40],[5,-18],[3,-10],[35,-40],[87,-54],[27,-23],[27,-13],[25,-11],[29,-16],[98,-28],[59,-3],[32,-9],[27,-12],[18,-21],[6,-31],[-4,-26],[-12,-21],[-22,-20],[-24,-15],[-36,-8],[-46,-4],[-40,10],[-30,20],[-34,18],[-38,35],[-19,10],[-50,-55],[-32,-37],[-44,-30],[-53,-10],[-85,11],[-64,31],[-22,10],[-6,1],[-32,4],[-14,-4],[-36,-24],[-11,-8],[-5,-49],[29,-36],[29,-17],[97,-56],[9,-5],[22,-13],[36,-35],[12,-23],[45,-164],[2,-16],[11,-73],[-1,-24],[7,-27],[4,-16],[6,-25],[4,-4],[43,-59],[6,-4],[50,-28],[22,-22],[7,-27],[0,-1],[0,-1],[-5,-29],[0,-2],[-3,-3],[-24,-33],[-11,-14],[-86,-52],[-38,5],[-15,8],[-26,21],[-10,8],[-35,40],[-35,18],[-2,0],[-101,2],[-20,-6],[-22,-13],[-19,-20],[-5,-43],[3,-19],[26,-58],[28,-37],[34,-28],[87,-52],[26,-20],[7,-8],[17,-20],[17,-29],[2,-6],[6,-20],[-12,-53],[-17,-25],[-42,-35],[-44,-48],[-3,-4],[-5,-24],[5,-11],[21,-25],[24,-11],[25,-3],[60,-5],[52,2],[103,41],[1,0],[40,-5],[27,-14],[54,-59],[23,-16],[21,-15],[28,23],[27,19],[23,33],[9,21],[10,19],[17,23],[28,10],[23,-1],[32,-9],[14,-20],[4,-41],[-32,-31],[-35,-8],[-21,0],[-34,-4],[-27,-24],[-11,-30],[-12,-17],[-21,-22],[-7,-21],[-16,-24],[-12,-16],[5,-28],[16,-16],[84,-52],[129,-75],[-2,-22],[-19,-39],[-17,-17],[-18,-8],[-11,-5],[-21,-8],[-27,-26],[3,-11],[5,-19],[23,-9],[25,4],[39,14],[43,18],[19,17],[5,38],[-5,32],[2,26],[19,12],[8,11],[12,8],[8,19],[7,14],[13,56],[1,0],[17,11],[51,13],[61,-87],[-7,-15],[-8,-16],[-6,-5],[-28,-26],[-2,-3],[-1,-2],[-6,-10],[-3,-19],[3,-17],[27,-30],[23,-12],[35,-1],[74,18],[34,-7],[15,-20],[1,-2],[-5,-26],[-4,-8],[-5,-7],[-42,-32],[3,-6],[29,-50],[1,-1],[3,1],[82,45],[13,4],[3,0],[4,2],[1,0],[50,-7],[24,-25],[5,-25],[-8,-46],[-1,-5],[-12,-14],[-11,-7],[-10,-7],[-21,-25],[-2,-29],[66,-118],[16,-18],[22,-3],[15,9],[5,7],[31,39],[63,80],[7,10],[60,80],[22,14],[2,0],[22,8],[55,-6],[20,-23],[7,-12],[24,-88],[-24,-95],[19,-24],[21,-5],[36,20],[12,14],[0,17],[3,6],[6,12],[2,1],[36,27],[7,4],[22,23],[9,9],[13,20],[2,12],[2,9],[7,5],[7,5],[7,4],[11,0],[4,-1],[14,0],[102,-60],[12,-6],[37,-43],[7,-18],[-6,-32],[-8,-12],[-5,-8],[-49,-51],[-2,-2],[-22,-11],[-33,-4],[-3,0],[-14,8],[-35,4],[-62,-8],[-23,2],[-23,2],[-41,-30],[-1,-7],[-4,-30],[1,-11],[3,-44],[-4,-21],[-3,-16],[-14,-20],[-12,-18],[-3,-18],[5,-5],[92,-87],[10,-9],[178,-31],[55,20],[31,-4],[9,-6],[17,-27],[4,-58],[2,-22],[26,-31],[57,-62],[8,-6],[38,-6],[23,6],[26,15],[23,13],[29,15],[19,-17],[-8,-29],[-24,-28],[-23,-16],[-14,-19],[3,-34],[4,-49],[-9,-51],[-5,-28],[13,-25],[25,-5],[31,10],[19,16],[19,17],[28,5],[23,-11],[0,-33],[-28,-18],[-23,-13],[-19,-16],[-24,-25],[-21,-13],[-22,6],[-21,10],[-16,20],[-9,21],[-17,33],[-62,12],[-19,24],[-1,21],[-1,4],[-3,6],[-11,20],[-25,3],[-9,-1],[-27,-2],[-27,-5],[-14,-9],[-1,-2],[-5,-5],[-2,-3],[-1,-9],[-3,-24],[0,-8],[30,-102],[12,-14],[3,-3],[6,-7],[18,-8],[88,-14],[3,0],[3,-4],[11,-12],[2,-3],[-2,-11],[-2,-9],[-1,-6],[-18,-12],[-90,-35],[-16,0],[-7,1],[-21,3],[-44,7],[-9,2],[-24,-6],[-25,-18],[-16,-22],[-1,-1],[-6,-31],[-1,-6],[5,-11],[19,-23]],[[43477,66279],[9,-58],[1,-121],[2,-75],[-54,-176],[-1,-17],[-2,-13],[-18,-185],[-7,-60],[-2,-26],[-3,-27],[-13,-118],[2,-30],[4,-78],[2,-29],[5,-116],[6,-109],[3,-68],[-3,-30],[-5,-37],[-11,-82],[-4,-30],[-3,-27],[-3,-26],[-5,-43],[-4,-35],[-5,-44],[-11,-87],[-2,-95],[-1,-44],[-1,-42],[-1,-111],[0,-31],[0,-32],[-2,-129],[0,-72],[-1,-53],[-1,-39],[-1,-99],[0,-38],[-1,-46],[0,-40],[-2,-14],[-1,-16],[-4,-71],[-5,-74],[-5,-75],[-11,-171],[-5,-73],[-2,-22],[-1,-22],[0,-2],[-2,-33],[-2,-22],[-2,-25],[-2,-33],[-4,-80],[-2,-35],[-4,-115],[-10,-259],[-1,-38],[-6,-171],[-5,-131],[-3,-89],[-2,-60],[-1,-34],[0,-6],[-1,-23],[0,-28],[-3,-85],[-4,-107],[-3,-93],[-3,-99],[-10,-312],[-4,-122],[-1,-28],[-1,-35],[-6,-214],[-8,-217]],[[43220,60627],[-17,-2],[-29,-4],[-45,-7],[-41,-6],[-12,-1],[-42,-6],[-54,-8],[-84,-12],[-136,-20],[-37,-5],[-34,-5],[-81,-11],[-32,-4],[-48,-8],[-52,-7],[-61,-9],[-257,-36],[-206,-29],[-79,-11],[-73,-11],[-76,-10],[-38,-6],[-26,-3],[-32,-5],[-31,-4],[-27,-4],[-77,-12],[-30,-5],[-22,-3],[-70,-11],[-82,-13],[-6,-1],[-51,-8],[-1,0],[-151,-24],[-141,-21],[-87,-14],[-236,-37],[-38,-6],[-38,-5],[-40,-7],[-52,-8],[-84,-13],[-89,-14],[-51,-8],[-23,-4],[-51,-8],[-44,-7],[-57,-9],[-42,-6],[-40,-6],[-30,-5],[-24,-4],[-34,-5],[-53,-8],[-117,-18],[-66,-11],[-55,-8],[-4,-1],[-41,-6],[-35,-6],[-79,-12],[-69,-11],[-31,-5],[-55,-8],[-33,-6],[-115,-18],[-74,-12],[-23,-3],[-60,-9],[-76,-11],[-26,-4],[-153,-24],[-34,-6],[-74,-11],[-119,-19],[-105,-17],[-63,-9],[-68,-11],[-68,-11],[-44,-7],[-34,-6],[-53,-8],[-30,-5],[-40,-6],[-57,-9],[-152,-24],[-224,-37]],[[37549,59762],[8,37],[-13,107],[-9,18],[-8,14],[-4,17],[2,25],[3,35],[1,23],[18,31],[41,25],[1,0],[6,22],[-4,11],[-22,24],[-19,21],[-52,58],[-37,31],[-10,10],[-25,26],[-18,19],[-15,26],[-3,14],[-1,7],[-7,35],[-3,22],[-6,86],[-1,15],[12,67],[7,35],[13,109],[16,73]],[[37420,60805],[90,120],[31,32],[95,61],[38,17],[16,2],[12,1],[7,6],[20,15],[3,19],[-6,9],[-8,9],[-15,1],[-17,-1],[-67,-22],[-47,5],[-21,11],[-20,18],[-3,17],[5,15],[18,9],[49,9],[29,21],[5,16],[-2,5],[-23,22],[-130,22],[-27,14],[-34,29],[-34,33],[-14,32],[3,59],[-7,20],[-8,9],[-18,8],[-76,5],[-40,-6],[-31,-21],[-19,2],[-20,21],[23,46],[24,30],[20,23],[53,37],[50,43],[1,1],[43,46],[3,3],[25,38],[1,52],[22,49],[4,8],[9,21],[19,41],[33,46],[17,34],[21,44],[22,43],[2,6],[13,27],[8,19],[18,43],[3,47],[-17,18],[-42,16],[-29,19],[-32,45],[-47,48],[-25,28],[-9,22],[-5,31],[11,31],[-26,145],[-11,12],[-22,24],[-12,7],[-38,4],[-16,18],[-42,59],[-30,60],[-6,45],[8,10],[8,49],[4,26],[-1,11],[-3,26],[-1,15],[-3,7],[-9,24],[9,37],[8,10],[97,161],[2,3],[-1,0],[-12,48],[-17,68],[-3,12],[-3,10],[-1,3],[-58,81],[-12,7],[-75,83],[-21,23],[-3,13],[-1,3],[10,43],[-4,19],[-5,28],[-32,37],[-74,86],[2,35],[0,3],[4,13],[2,9],[16,33],[16,107],[-5,9],[-78,79],[-20,16],[-29,21],[-46,33],[-35,4],[-34,-13],[0,1],[-31,3],[-17,19],[-57,65],[-7,8],[-1,1],[-2,1],[-38,23],[-16,10],[-30,14],[-33,28],[-1,84],[8,13],[45,29],[1,1],[11,22],[36,77],[8,48],[-28,30],[-27,8],[-42,46],[-4,14],[4,27],[25,20],[2,2],[2,2],[7,40],[-41,98]],[[23247,62468],[1,-17],[3,-61],[2,-1],[4,-1],[-10,-61],[-7,-17],[-9,-7],[-9,-2],[-8,5],[-7,4],[-10,8],[-25,23],[-8,1],[-7,-1],[-118,-61],[-1,-1],[-3,-2],[-2,-2],[-3,-9],[-3,-10],[-18,-54],[-1,-3],[-1,-7],[3,-20],[10,-70],[1,-10],[51,-22],[20,-9],[45,-29],[12,-36],[3,-13],[37,-33],[1,-21],[-15,-35],[-57,-75],[-28,-11],[-13,2],[-9,-16],[14,-26],[16,-28],[9,-15],[1,-3],[1,-3],[0,-9],[9,-6],[26,-18]],[[23144,61686],[-413,0],[-84,0],[-29,1],[-187,1],[-241,2],[-59,1],[-40,0],[-75,1],[-144,2],[-62,1],[-28,0],[-31,0],[-55,1],[-23,1],[-73,1],[-5,0],[-35,0],[-30,0],[-36,0],[-35,1],[-63,1],[-47,0],[-65,2],[-34,0],[-25,0],[-79,0],[-25,0],[-63,2],[-6,0],[-41,1],[-28,1],[-25,1],[-63,-1],[-43,-1],[-37,0],[-53,0],[-63,0],[-29,1],[-33,2],[-70,2],[-194,4],[-3,0],[-24,0],[-64,0],[-72,1],[-194,1],[0,149],[-323,4],[-53,1],[-5,-70],[-102,2],[-3,-81],[-199,0],[-53,2],[-66,1],[-60,1],[-87,2],[-2,63],[2,90],[0,29],[-33,-1],[-78,-3],[-146,-1],[-125,-2],[-1,-84],[-1,-92],[-84,-1],[-217,4],[-156,2],[-111,-2],[-22,-1],[-31,1],[-8,1],[-30,0],[-24,0],[-3,0],[-90,0],[-47,0],[-190,1],[-135,0],[-35,-1],[-22,3],[-53,-1],[-46,2],[-57,-1],[-179,0],[-23,0],[-28,0],[-92,1],[-202,0],[-47,1],[-56,0],[-24,0],[-27,0],[-12,0],[-10,0],[-27,1],[-91,0],[-41,0],[-81,0],[-213,1],[-27,0],[-63,1],[-187,0],[-53,1],[-37,0],[0,-435],[0,-4],[1,-242],[0,-20],[-20,1],[-21,0],[-77,1],[-93,-1]],[[15590,61039],[-1,22],[0,28],[1,48],[0,39],[-1,37],[-58,-22],[-3,-4],[-47,-48],[-31,0],[-15,-1],[-4,0],[-1,19],[17,39],[-9,27],[-9,43],[-4,26],[-8,62],[-18,12],[-11,25],[204,2],[3,39],[3,111],[-2,111],[0,3],[-1,68],[-1,20],[-63,0],[-206,4],[-66,1],[-108,1],[-232,2],[-87,1],[-32,0],[-196,2],[-110,1],[-391,4],[-122,2]],[[13981,61763],[-26,69],[-2,7],[-19,52],[-42,115],[-14,37],[-104,285],[-2,6],[-118,309],[94,1],[27,0],[0,178],[0,180],[-113,2],[-56,0],[-36,0],[-1,-114],[-112,299],[-89,241],[-27,76],[-62,168],[-49,135],[-24,64],[-55,151],[-32,87],[-36,98],[-2,4],[-9,26],[-22,60],[-24,65],[-40,108],[-10,30],[-27,75],[-13,34],[-43,116],[-31,85],[-34,90],[-17,47],[-21,52],[-33,84],[-23,60],[-32,78],[-26,69],[-59,159],[-115,307],[-123,328]],[[51233,64566],[3,-20],[59,-53],[23,-14],[2,-1],[35,-9],[17,-6],[86,-30],[46,-35],[14,-16],[1,-3],[8,-17],[1,-1],[109,-93],[14,-15],[14,-32],[-2,-25],[-2,-37],[-4,-29],[-2,-9],[-20,-28],[-28,-40],[-18,-25],[-3,-3],[-20,-19],[-17,-53],[-4,-48],[-1,-6],[5,-163],[27,-90],[0,-41],[-4,-5],[-24,-30],[-14,-8],[-53,-31],[-200,-64],[-168,-49],[-32,-20],[-40,-28],[-35,-43],[-24,-30],[-5,-13],[-5,-3],[-44,-37],[-75,-52],[-39,-18],[-6,-4],[-86,-55],[-40,-6],[-51,0],[-18,-12],[-2,0],[-91,-21],[-28,-19],[-22,-17],[-9,-31],[-34,-37],[-5,-3],[-38,-25],[-33,-7],[-44,5],[-45,43],[-24,11],[-47,3],[-8,-5],[-35,-23],[-14,-28],[-30,-27],[-32,-20],[-28,-11],[-76,13],[-30,5],[-31,-8],[-5,-2],[-29,-18],[-5,-32],[4,-14],[38,-43],[11,-22],[13,-27],[8,-55],[-2,-33],[-6,-37],[-42,-80],[-54,-37],[-75,11],[-12,2],[-36,20],[-18,5],[-164,19],[-29,-2],[-7,-1],[-42,-5],[-43,-11],[-47,-14],[-29,-18],[-12,-40],[-14,-83],[-14,-170],[13,-42],[18,-29],[5,-6],[14,-35],[1,-1],[13,-33],[-13,-118],[-4,-12],[-40,-125],[-14,-31],[-21,-28],[-36,-44],[-7,-6],[-14,-9],[-22,-16],[-21,-134],[-4,-62],[-15,-36],[-41,-50],[-26,-32],[-13,-9],[-32,-21],[-2,-1],[-1,0],[-15,0],[-24,-9],[-46,-30],[-41,-39],[-10,-39],[1,-17],[20,-31],[3,-4],[9,-23],[-8,-53],[-9,-13],[4,-92],[5,-22]],[[48923,60956],[-18,14],[-48,3],[-68,8],[-61,7],[-61,18],[-112,15],[-4,1],[-22,-6],[-8,-2],[-8,-6],[-31,-19],[-46,-47],[-15,-17],[-54,-38],[-10,-23],[-30,-29],[-12,-8],[-16,-10],[-1,-1],[-1,0],[-41,-3],[-54,5],[-120,12],[-9,1],[-32,0],[-12,0],[-29,-16],[-4,-27],[32,-33],[15,-16],[14,-34],[-7,-41],[-6,-42],[-23,-25],[-18,-11],[-7,-5],[-32,1],[-38,42],[-11,13],[-26,19],[-48,22],[-41,5],[-24,-14],[-4,-27],[-1,-5],[18,-29],[-5,-27],[-32,-25],[-8,-6],[-44,5],[-91,10],[-20,16],[-28,4],[-42,-1],[-12,1],[-15,2],[-26,3],[-2,2],[-24,17],[-33,15],[-45,53],[-44,52],[-7,7],[-26,24],[-2,1],[-31,17],[-37,4],[-10,1],[-79,4],[-57,3],[-15,-9],[-5,-37],[-1,-3],[2,-11],[16,-21],[8,-25],[0,-3],[1,-40],[-2,-22],[-1,-6],[-10,-26],[-29,-13],[-1,0],[-40,13],[-3,4],[-14,19],[-21,28],[-2,2],[-6,1],[-22,3],[-7,1],[-35,8],[-85,19],[-3,1],[-65,41],[-2,1],[-87,56],[-16,18],[-35,21],[-16,4],[-24,43],[-1,1],[-3,20],[-5,30],[-3,3],[-5,5],[-9,7],[-19,3],[-20,-14],[-69,-33],[-31,-11],[-31,-15],[-4,-2],[-5,0],[-68,10],[-12,2],[-2,-2],[-19,-12],[-25,3],[-36,34],[-10,10],[-1,2],[-1,0],[-28,3],[-23,-16],[-20,-14],[-28,-35],[-3,-4],[-17,-23],[-2,-13],[-5,-9],[-1,0],[-19,-9],[-111,-32],[-11,-3],[-1,1],[-5,2],[-32,20],[-4,3],[-1,1],[-7,8],[-19,26],[-87,52],[-73,61]],[[45673,60917],[-47,-23],[-1,-1],[-13,-11],[-14,-4],[-2,0],[-9,-3],[-45,-3],[-5,1],[-2,1],[-1,0],[-2,1],[-1,5],[-3,14],[-16,30],[-6,3],[-6,3],[-35,-2],[-27,-9],[-29,-4],[-48,-7],[-43,-5],[-138,-19],[-37,-4],[-48,-6],[-256,-33],[-208,-27],[-207,-27],[-65,-9],[-158,-20],[-35,-1],[-175,-28],[-34,-5],[-113,-16],[-63,-9],[-30,-4],[-29,-4],[-26,-4],[-43,-6],[-164,-19],[-124,-18],[-113,-16],[-32,-1]],[[59802,62384],[76,-53],[92,-63],[17,-12],[16,-24],[0,-9],[-6,-7],[-9,-2],[-28,-5],[-4,-3],[-2,-9],[-2,-16],[-1,-67],[-2,-21],[4,-20],[5,-18]],[[59958,62055],[-32,-5],[-136,0],[-47,0],[-59,0],[-23,0],[-33,0],[-89,-22],[-23,3],[-180,27],[-21,-12],[-32,-19],[-32,-20],[-24,-17],[-25,-17],[-20,-17],[-29,-24],[-28,-36],[-21,-22],[-22,-13],[-30,-15],[-57,-36],[-11,-19],[-71,-75],[-17,-18],[-68,-7],[-33,-10],[-22,-3],[-49,-5],[-52,-28],[-40,-24],[-25,-17],[-32,-13],[-23,-7],[-28,-4],[-23,-7],[-23,-7],[-21,-17],[-21,-15],[-30,-19],[-49,-31],[-21,-22],[-13,-22],[-10,-30],[-13,-32],[-12,-19],[-17,-21],[-17,-19],[-16,-15],[-20,-19],[-25,-13],[-24,-4],[-26,-7],[-27,-6],[-26,-4],[-29,0],[-21,-2],[-22,-4],[-26,3],[-25,-6],[-21,-6],[-30,1],[-34,-13],[-23,-5],[-23,-9],[-19,-10],[-24,-19],[-23,-7],[-30,-7],[-23,-15],[-18,-25],[-15,-21],[-8,-27],[-5,-31],[-9,-31],[-13,-18],[-24,-14],[-28,-13],[-25,-11],[-12,-17],[-16,-26],[-16,-17],[-11,-22],[-15,-20],[-38,-30],[-5,-28],[-7,-37],[-3,-5],[-70,-148],[-1,0],[-76,-165],[-23,-50],[-35,-78],[-48,-83],[-56,-25],[-88,-169],[-50,-95],[7,-37],[-78,-65],[-30,-25],[-20,-18],[-26,-20],[-41,-37],[-23,-22],[-37,-29],[-13,-2],[-19,-3],[-176,-22],[-90,-27],[-56,-49],[-18,-14],[-65,-55],[-38,-29],[-31,-23],[-12,-22],[-21,-18],[-36,-13],[-30,-6],[-34,-4],[-46,-7],[-37,-7],[-24,-6],[-41,-12],[-43,-13],[-20,-7],[-28,-17],[-45,-29],[-24,-16],[-29,-19],[-35,-17],[-30,-14],[-41,-5],[-32,4],[-42,2],[-29,-6],[-42,-7],[-1,-1],[-61,22],[-53,8],[-59,8],[-24,5],[-26,6],[-23,-15],[-31,-18],[-32,-18],[-35,-18],[-25,-14],[-25,-14],[-23,-13],[-22,-13],[-20,-16],[-23,-21],[-26,-26],[-22,-25],[-17,-22],[-24,-35],[-14,-24],[-10,-20],[-14,-30],[-15,-23],[-15,-16],[-21,-20],[-31,-19],[-44,-25],[-67,-39],[-34,-20],[-19,-9],[-29,-22],[-18,-13],[-27,-13],[-46,-24],[-78,-32],[-40,-5],[-44,5],[-45,-2],[-44,-3],[-40,-2],[-43,-2],[-45,3],[-46,6],[-39,6],[-66,10],[-30,5],[-23,2],[-55,-8],[-22,-2],[-22,-3],[-48,-5],[-23,1],[-32,3],[-25,2],[-31,3],[-25,0],[-22,-1],[-62,-6],[-20,-6]],[[53581,58662],[-23,-9],[-24,-12],[-21,-14],[-22,-17],[-29,-21],[-37,-29],[-16,-18],[-16,-23],[-49,-47],[-53,-46],[-17,-14],[-48,-40],[-30,-26],[-24,-21],[-29,-17],[-74,4],[-23,2],[-65,-6],[-34,-3],[-23,-4],[-27,-14],[-15,-18],[-17,-21],[-19,-22],[-16,-16],[-19,-16],[-35,-32],[-18,-18],[-36,-37],[-44,-31],[-26,-18],[-35,-23],[-38,-25],[-21,-9],[-23,14],[-18,18],[-4,27],[10,19],[-14,20],[-18,26],[-27,13],[-16,15],[15,22],[19,21],[16,18],[-10,23],[-16,17],[-1,23],[-12,19],[-22,9],[-1,23],[-8,26],[-11,29],[-18,19],[-19,13],[4,23],[10,25],[-15,18],[-20,12],[-13,18],[-15,22],[-27,20],[-18,14],[-7,22],[-10,23],[-22,15],[-15,-16],[-21,-15],[7,22],[-16,23],[-3,29],[-11,26],[-5,28],[18,18],[15,22],[-13,19],[-19,17],[5,22],[17,14],[12,24],[11,26],[14,19],[18,16],[-3,33],[23,9],[4,22],[17,16],[0,28],[-3,24],[5,22],[-1,27],[-9,20],[-18,16],[4,26],[19,9],[20,15],[-15,23],[-21,8],[10,21],[7,23],[2,28],[14,20],[-15,19],[5,23],[9,24],[25,6],[24,-7],[12,20],[-4,22],[11,25],[16,22],[10,31],[-7,21],[-5,24],[-1,28],[-7,23],[-20,20],[-3,36],[-6,25],[18,35],[17,18],[19,12],[28,0],[21,2],[29,6],[19,-13],[21,12],[18,20],[19,13],[23,7],[20,16],[2,25],[5,25],[12,23],[-1,27],[19,29],[15,17],[3,26],[-2,31],[7,23],[9,25],[-9,22],[-7,23],[-20,13],[2,22],[-19,18],[0,20],[0,5],[-371,98],[-201,45],[-39,9],[-173,42],[-110,26],[-56,13],[-8,2],[-61,14],[-61,15],[-72,17],[-27,6],[-148,35],[-68,15],[-50,12],[-224,51],[-26,6],[-27,6],[-27,6],[-28,7],[-77,18],[-59,14],[-30,8],[-120,28],[-88,22],[-32,9],[-29,7],[-1,0],[-65,15],[-65,15],[-36,8],[-6,1],[-40,9],[-76,18],[-111,26],[-33,7],[-71,15],[-47,12],[-41,10],[-128,30],[-36,9],[-38,9],[-38,10],[-34,9],[-7,2],[-18,5],[-5,1],[-19,3],[-69,11],[-29,9],[-19,5],[-25,22],[-92,24],[-76,9],[-26,-2],[-8,-2],[-67,-16],[-11,-3],[-41,-14],[-43,-9],[-72,2]],[[37420,60805],[-4,8],[-4,10],[-6,5],[-1,0],[-2,1],[-21,10],[-11,2],[-1,0],[-22,-1],[-3,0],[-7,-2],[-8,1],[-20,5],[-100,50],[-8,7],[-46,39],[-6,6],[-75,89],[-30,37],[-4,10],[0,8],[7,5],[3,7],[-3,21],[-4,3],[-21,20],[-10,5],[-18,10],[-6,1],[-62,5],[-62,-27],[-24,-15],[-11,-2],[-34,-6],[-8,0],[-9,5],[-7,18],[-5,13],[-1,1],[-5,5],[-62,42],[-59,39],[-6,3],[-10,2],[-3,0],[-17,-1],[-122,16],[-51,12],[0,1],[-40,0],[-35,2],[-42,6],[-27,2],[-34,-1],[-177,-6],[-193,-4],[-94,-2],[-64,-2],[-51,-1],[-70,1],[-64,-1],[-220,3],[-134,2],[-101,2],[-53,-1],[-9,0],[-20,0],[-65,2],[-225,1],[-241,0],[-186,3],[-87,2],[-24,0],[-81,1],[-100,-1],[-69,0],[-103,0],[-69,0],[-62,0],[-2,0],[-42,5],[-329,1],[-94,0],[-63,0],[-93,0],[-80,0],[-135,1],[-35,0]],[[32818,61288],[-73,0],[-50,-1],[-72,1],[-188,0],[-1,0],[-91,0],[-170,1],[-110,0],[-302,1],[-93,0],[-72,0],[-157,0],[-123,0],[-30,0],[-142,1],[-53,1]],[[31091,61292],[3,265],[0,37],[2,217],[2,199],[6,140],[3,42],[103,3],[0,85],[-96,2],[3,26],[-1,26],[-1,31],[25,25],[15,16],[92,95],[13,14],[24,25],[60,56],[47,46],[24,24],[119,120],[4,4],[58,59],[26,26],[73,75],[84,82],[22,23],[20,21],[-39,10],[-1,1],[-3,3],[-30,52],[-2,22],[-91,89],[-46,37],[-48,38],[-25,16]],[[13981,61763],[-50,-19],[-47,-17],[-145,-53],[-196,-73],[-80,-30],[-152,-56],[-55,-20],[-179,-66],[-79,-29],[-95,-35],[-201,-74],[-27,-10],[-367,-133],[-132,-48],[-7,-3],[-84,-31],[-72,-26],[-29,-10],[-29,-11],[-72,-26],[-38,-14],[-8,-28],[-13,-35],[-13,-19],[-24,-31],[-23,-23],[-29,-11],[-23,-4],[-25,2],[-27,4],[-15,3],[-35,14],[-23,12],[-33,11],[-25,6],[-34,-2],[-37,-10],[-11,-16],[-4,-5],[-13,-21],[-21,-13],[-25,-9],[-22,-15],[-4,-3],[-25,-22],[-15,-4],[-277,-80],[-187,-53],[1,27],[6,33],[-3,85],[-5,171],[-200,0],[0,182],[-106,0],[-56,0],[-56,1],[0,-359],[-44,2],[-27,-1],[-1,0],[-129,0],[2,-190],[0,-22],[0,-47],[1,-60],[-117,-37],[-41,-12],[-116,-36],[-176,-48],[-122,-36],[-25,-8],[-79,-23],[-105,-31],[-143,-42],[-53,-15],[-78,-23],[-256,-75],[-161,-46],[-227,-67],[-30,-8],[-287,-85],[-49,-14],[-116,-35],[-319,-93]],[[7737,59715],[-35,195],[-37,204],[-10,51],[-8,40],[-10,55],[-32,167],[-47,241],[-32,166],[-13,66],[-36,200],[-22,125],[-16,89],[-23,124],[-3,11],[-3,17],[-30,158],[-21,117],[-24,134],[-8,41],[-21,102],[-8,33],[-10,65],[-3,22],[-26,136],[-5,36],[-19,99],[-44,236],[-30,161],[-15,79],[-47,256],[-26,139],[-32,175],[-27,139],[-52,281],[-44,238],[-22,115],[-19,103],[-23,126],[-57,307],[-3,12],[-42,225],[-19,95],[-41,215],[-80,429],[-29,153],[-7,27],[-10,62],[-16,78],[-15,82]],[[31091,61292],[0,-26],[-2,-237],[0,-1],[-2,-198],[0,-59],[-71,2],[-30,-1],[-74,1],[-24,0],[-219,5],[-189,1],[-150,1],[-133,0],[-29,0],[-162,2],[-124,0],[-29,1],[-21,0],[-29,0],[-37,1],[-27,0],[-56,1],[-21,0],[-26,-1],[-26,1],[-29,-1],[-54,1],[-37,0],[-21,0],[-48,1],[-52,0],[-13,0],[-28,0],[-48,0],[-56,0],[-83,1],[-34,0],[-26,0],[-99,2],[1,0],[3,21],[0,1],[2,25],[2,22],[0,1],[-4,13],[0,1],[-3,12],[-14,20],[-14,18],[-25,40],[-15,27],[-98,2],[-78,0],[-61,0],[-21,0],[-43,0],[-75,1],[-57,1]],[[28482,60994],[-77,2],[-49,0],[-74,1],[-48,0],[-24,1],[-25,0],[-128,1],[-74,0],[-44,-1],[-30,0],[-40,0],[-5,0],[-47,-1],[-110,-1],[-80,2],[-5,0],[-96,0],[-89,2],[-269,0],[-118,1],[-196,1],[-10,0],[-34,1],[-61,-1],[-81,0],[-209,2],[-48,1],[-36,0],[-22,0],[-48,1],[-10,0],[-36,0],[-117,0],[-62,0],[-32,1],[-37,-1],[-44,0],[-74,1],[-46,1],[2,63],[8,168],[-28,-1],[-60,-1],[-58,0],[-29,0],[-21,0],[-34,0],[-28,0],[-27,0],[-35,0],[-41,1],[-24,0],[-45,-1],[1,18],[1,22],[1,42],[0,24],[1,67],[-74,1],[-157,3],[-105,-2],[-38,1],[-58,0],[-62,0],[-120,2],[-206,3],[-105,0],[-114,2],[-175,2],[-1,0],[-56,-79],[-17,-30],[-3,-4],[-1,-5],[-1,-7],[3,-7],[-2,-3],[-24,-14],[-27,-12],[-17,-7],[-10,3],[-6,2],[-57,11],[-6,1],[-2,-1],[-29,-20],[-42,-24],[-16,-8],[-15,-3],[-11,-1],[-7,7],[-3,6],[-12,28],[-9,5],[-8,1],[-11,3],[-3,0],[-49,6],[-5,0],[-4,0],[-14,-2],[-24,-11],[-17,-14],[-11,-21],[-1,-8],[0,-47],[-2,-33],[-24,-72],[-74,-74],[-8,-6],[-13,-6],[-97,-26],[-17,-3],[-33,-6],[-4,0],[-27,4],[-13,-1],[-27,-6],[-8,-1],[-17,-7],[-29,-20],[-23,-36],[-21,12]],[[23262,60886],[20,54],[0,1],[-7,85],[0,2],[-8,15],[2,15],[15,34],[5,8],[17,31],[16,19],[8,3],[10,-4],[5,-10],[1,0],[3,-1],[7,3],[17,10],[19,18],[5,7],[-2,6],[-49,45],[-2,2],[-4,4],[-2,1],[-74,35],[-9,-2],[-26,-5],[0,3],[0,8],[10,22],[40,95],[1,10],[-16,50],[-66,91],[-2,2],[-14,9],[-2,1],[-7,3],[-7,31],[-15,68],[-7,31]],[[66598,62842],[-57,-38],[-1,0],[-22,-15],[-130,-83],[-37,-25],[-89,-58],[-26,-17],[-58,-38],[-65,-41],[-35,-24],[-65,-42],[-54,-35],[-45,-29],[-9,-7],[-36,-23],[-88,-57],[-58,-45],[-16,-12],[-35,-25],[-6,-4],[-78,-56],[-32,-22],[-116,-84],[-20,-13],[-19,-13],[-18,-13],[-171,-121],[-39,-25],[-211,-153],[-57,-41],[-105,-76],[-23,-17],[-110,-80],[-119,-83],[-173,-121],[-29,-21],[-58,-40],[-64,-45],[-80,-56],[-67,-47],[-3,-2],[-49,-34],[-345,-240],[-99,-69],[-54,-38],[-90,-63],[-21,-19],[-29,-26],[-8,-19],[10,-7],[5,-3],[33,-41],[14,-52],[1,-2],[0,-8],[0,-1],[-5,-50],[-4,-17],[-6,-3],[-8,-4],[0,-6],[9,-16],[24,-12],[8,-3],[39,-11],[9,-3],[1,0],[16,-3],[26,-6],[3,-2],[11,-6],[8,-7],[17,-19],[11,-11],[5,-10],[3,-8],[5,-15],[7,-30],[-1,-12],[-2,-19],[-6,-51],[-2,-25],[0,-2],[-2,-10],[-23,-22],[-3,-2],[-19,-13],[-6,-4],[-32,-43],[-3,-14],[-4,-13],[-11,-24],[-6,-11],[0,-10],[0,-1],[2,-110],[1,-33],[1,-2],[1,-5],[20,-21],[3,-1],[9,-13],[1,-2],[2,-7],[0,-1],[1,-6],[4,-42],[4,-50],[1,-7],[3,-36],[-1,-5],[-2,-7],[-16,-16],[-26,-40],[-2,-12],[1,-13],[-12,-22],[-24,-13],[-21,-5],[-28,10],[-22,16],[-19,25],[-82,48],[-43,4],[-54,2],[-43,4],[-25,-5],[-29,-5],[-26,17],[-19,11],[-27,-5],[-55,-21],[-31,12],[-135,5],[-1,0],[-262,2],[-124,11],[-28,3],[-170,7],[-2,-19],[-11,-24],[-9,-24],[-11,-21],[-176,81],[-38,19],[-55,2],[-23,0],[-16,1],[-114,3]],[[61773,59645],[19,40],[-16,9],[-8,21],[-22,13],[-22,4],[-25,-1],[-13,18],[-42,15],[-21,9],[-22,27],[-16,17],[-19,12],[-21,-9],[-41,-4],[-24,-8],[-33,12],[-17,-9],[-4,-2],[-8,-4],[-5,-2],[-6,-4],[-2,3],[-7,23],[-23,7],[-19,19],[-26,2],[-20,-6],[-8,21],[-3,26],[18,27],[-10,20],[-24,8],[-6,25],[-28,20],[-26,2],[-23,13],[-29,6],[5,22],[-25,6],[-23,3],[-13,20],[-20,-18],[-26,-2],[-29,-13],[-40,1],[-17,13],[-25,9],[-20,9],[-21,16],[13,19],[-93,83],[-35,47],[-1,6],[-7,23],[-11,43],[-11,39],[-9,36],[0,1],[0,1],[2,15],[-28,18],[-53,43],[-2,1],[-18,21],[-26,30],[-3,5],[-25,31],[-4,6],[-24,35],[-29,9],[-4,1],[-65,21],[-93,30],[-6,2],[-81,20],[-18,5],[0,-1],[-3,-6],[-10,-2],[-11,-2],[-10,-1],[-19,-1],[-19,1],[-1,0],[-49,-8],[0,18],[0,2],[0,21],[-1,37],[0,12],[0,1],[-2,57],[0,20],[1,5],[12,42],[14,48],[0,9],[-10,10],[-46,35],[-1,0],[-1,1],[-6,10],[-4,14],[-15,53],[-3,14],[-2,6],[0,6],[0,8],[1,9],[1,9],[7,50],[1,5],[0,1],[6,26],[10,30],[17,25],[37,31],[14,6],[29,1],[20,1],[8,2],[6,1],[16,22],[3,16],[5,21],[-5,28],[-10,43],[-3,3],[-6,2],[-16,2],[-26,3],[-33,6],[-19,9],[-31,30],[-8,7],[-25,42],[-4,35],[2,10],[5,4],[5,1],[15,3],[9,2],[9,0],[3,-1],[7,-3],[14,-1],[1,0],[9,5],[2,1],[26,15],[8,5],[7,4],[4,11],[0,7],[0,2],[-19,29],[-5,24],[0,19],[0,5],[-6,21],[-9,15],[0,1],[-17,20],[-19,17],[-17,8],[-45,0],[-28,0],[-2,4],[-14,34],[-1,2],[14,5],[21,26],[9,10],[9,23],[7,18],[9,20],[0,3],[2,5],[-2,6],[-13,11],[-20,13],[-16,6],[-10,1],[-40,4],[-3,3],[-3,2],[-41,77],[-4,11]],[[70047,62683],[25,-16],[18,-7],[8,-4],[31,-5],[18,-4],[7,-2],[2,0],[5,-5],[29,-27],[23,-11],[4,-2],[4,-6],[9,-12],[10,-20],[36,-31],[20,-9],[3,-1],[3,-4],[11,-16],[1,-1],[1,-4],[3,-27],[2,-3],[17,-26],[5,-8],[19,-15],[3,-1],[22,-12],[18,-25],[2,-1],[0,-1],[26,-4],[8,-23],[1,-11],[2,-16],[15,-22],[28,-17],[8,-17],[3,-5],[-3,-13],[-4,-13],[1,-28],[24,-11],[6,-3],[11,-5],[3,-2],[10,-14],[2,-4],[2,-11],[1,-12],[23,-26],[13,-29],[22,-12],[2,-26],[7,-30],[-17,-23],[-3,-20],[-1,-7],[-1,-4],[9,-22],[19,-11],[31,-18],[27,-9],[25,-5],[22,6],[4,2],[16,8],[15,-2],[6,-1],[14,-20],[-3,-24],[-1,-11],[0,-6],[-1,-11],[-6,-31],[-6,-22],[-3,-12],[-16,-26],[-23,-22],[-1,-1],[-34,-60],[-89,-181],[-35,-69],[-34,-68],[-22,-50],[-20,-47],[-41,-98],[-28,-65],[-30,-80],[-82,-227],[-1,-3],[-24,-59],[-13,-23],[-34,-64],[-65,-158],[-105,-251],[-5,-15],[-69,-204],[-29,-90],[-13,-39],[-53,-158],[-28,-84],[-104,-337],[-11,-61],[-27,-150],[-13,-71],[-9,-48],[-20,-112],[-20,-108],[-21,-88],[-5,-22],[-21,-93],[-34,-138],[-17,-69],[-7,-29],[-7,-32],[9,-80],[21,-171],[8,-62],[9,-75],[20,-163],[1,-2],[41,-205],[31,-149],[5,-26],[6,-29],[19,-91],[25,-125],[2,-32],[4,-33],[4,-25],[4,-28],[5,-31],[5,-24],[21,-185],[4,-37],[7,-56],[3,-27],[14,-117],[18,-162],[10,-82],[14,-126],[8,-65],[21,-133],[19,-118],[37,-232],[-15,-41],[-13,-35],[-68,-180],[-10,-25],[-70,-187],[-66,-175],[-11,-27],[-20,-52],[-40,-107],[-64,-173],[-24,-63],[-53,-126],[-2,-6],[-27,-64],[-43,-89],[-41,-88],[-46,-98],[0,-1],[-45,-97],[-43,-92],[-51,-109],[-27,-58],[-2,-4],[-76,-164],[-57,-117],[-10,-20]],[[69024,53391],[-31,45],[-4,5],[-26,37],[-2,2],[-1,2],[-7,5],[-18,0],[-76,15],[-13,3],[-29,5],[-19,-18],[-18,-18],[-15,-17],[-3,-5],[-12,-22],[-6,-25],[-30,-3],[-21,5],[-16,-19],[-13,-19],[-20,-18],[-35,-16],[-22,-2],[-24,-6],[-21,6],[-25,-3],[-17,-17],[-19,-19],[-4,-28],[-24,-13],[-24,-9],[-22,-16],[-17,-21],[-19,-12],[-24,-4],[-28,10],[-19,9],[-26,14],[-26,-10],[-31,-7],[-11,-19],[-18,-12],[-19,-19],[-19,-21],[-15,-17],[-15,-21],[-24,-16],[-21,-11],[-8,-26],[4,-24],[-3,-26],[7,-20],[-25,-12],[-27,5],[-26,-5],[-21,-10],[-20,-10],[-21,-7],[-22,-1],[-21,5],[-24,6],[-25,1],[-20,10],[-22,-2],[-23,8],[-32,0],[-26,-2],[-22,-1],[-29,-3],[-28,-4],[-24,-6],[-23,2],[-21,7],[-17,13],[-28,-6],[-19,-13],[-22,19],[-21,14],[-19,14],[-29,-2],[-22,-8],[-18,-14],[-19,-10],[-22,-11],[-18,-13],[-19,-19],[-21,-8],[-29,-8],[-23,14],[-27,6],[-12,-2],[-29,-6],[-28,4],[-23,15],[-22,9],[-34,-8],[-17,-14],[-26,-6],[-35,-11],[-22,4],[-22,-12],[-19,-18],[-22,-7],[-20,-14],[-5,-22],[8,-26],[5,-26],[-3,-24],[13,-25],[-4,-24],[-12,-40],[-1,-30],[17,-24],[19,-14],[31,-4],[26,-4],[23,-12],[15,-21],[19,-20],[14,-26],[-2,-25],[7,-24],[24,-12],[16,-14],[3,-29],[9,-20],[8,-23],[-11,-28],[-2,-24],[-13,-23],[13,-19],[24,3],[32,-27],[27,2],[25,0],[27,-12],[24,16],[23,12],[25,-11],[13,-29],[1,-22],[-2,-28],[-4,-26],[-6,-28],[-24,-18],[-28,-9],[-21,-8],[-15,-26],[-13,-22],[-31,-10],[-18,-18],[-14,-17],[-24,-10],[-16,-20],[-23,-11],[-23,-16],[-24,2],[-22,18],[-20,18],[-22,1],[-22,-3],[-30,6],[-20,-7],[-12,-20],[-18,-12],[-25,-15],[-11,-20],[-20,-13],[-19,-16],[-21,-18],[-24,-3],[-21,-4],[-19,-12],[-22,-7],[-20,-30],[-24,-13],[-77,15]],[[66552,51807],[-27,6],[-170,34],[-66,13],[-60,12],[-23,3],[-24,6],[-23,8],[-20,8],[-30,13],[-46,20],[-30,14],[-17,15],[-23,13],[-23,13],[-20,13],[-32,20],[-36,23],[-68,43],[-64,41],[-18,12],[-25,25],[-18,22],[-16,15],[-107,116],[-19,20],[-143,149],[-80,43],[-57,33],[-108,59],[-33,20],[-148,138],[-5,4],[-15,20],[-106,138],[0,1],[-104,136],[-20,25]],[[64728,53101],[-62,146],[-40,95],[12,121],[14,139],[7,66],[8,90],[3,33],[10,127],[11,100],[28,18],[72,47],[5,27],[13,77],[9,51],[18,119],[4,27],[2,10],[2,17],[4,32],[4,25],[6,40],[12,78],[4,26],[5,39],[5,26],[7,41],[7,51],[3,29],[5,56],[3,27],[5,37],[1,5],[3,20],[13,106],[4,38],[-16,72],[-99,127],[-2,5],[-26,64],[-84,118],[-34,43],[-150,115],[-27,9],[-66,69],[-24,25],[-58,62],[-4,4],[-4,28],[-6,55],[-24,194],[-19,159],[-26,178],[-11,75],[-15,109],[-38,260],[-10,71],[-14,89],[-6,36],[-7,55],[-38,182],[-5,25],[-6,25],[-36,-9],[-7,-6],[-7,-7],[-10,-11],[-14,-32],[-41,-40],[-1,-1],[-1,-1],[-3,-1],[-57,-4],[-9,2],[-2,3],[-14,13],[-8,13],[-17,27],[-3,4],[-11,21],[2,8],[-15,12],[-47,21],[-16,7],[-25,11],[-6,3],[-15,-13],[-10,-7],[-7,-1],[-8,1],[-66,34],[-11,6],[-48,31],[-53,40],[2,0],[6,1],[11,4],[9,8],[4,7],[0,4],[-8,10],[-30,38],[-16,18],[-25,16],[-36,9],[-12,-2],[-4,-3],[-3,-3],[-2,-13],[-2,-2],[-14,2],[-5,1],[-34,7],[0,1],[-6,8],[0,15],[-6,1],[-67,3],[-6,1],[-6,1],[-35,32],[-2,2],[-25,23],[-5,3],[-3,0],[-24,-3],[-4,-1],[-23,-4],[-7,-3],[-6,-3],[-55,-25],[-2,6],[-16,42],[-78,188],[-17,30],[-6,10],[-8,12],[-11,9],[-111,82],[-45,11],[-1,0],[-23,1],[-24,2],[-2,-1],[-8,-1],[-16,-6],[-9,5],[-37,25],[2,9],[8,25],[13,36],[61,19],[12,4],[12,41],[-1,68],[-3,5],[-35,35],[-9,6],[-7,-1],[-1,0],[-57,-9],[-36,1],[-52,1],[-11,2],[-62,11],[-24,10],[-9,4],[-3,1],[-15,12],[-7,12],[-1,2],[-3,9],[2,14],[4,15],[1,2],[11,18],[6,8],[12,29],[0,67],[-2,8],[-54,29],[-69,39],[-44,24],[-10,2],[-5,1],[-118,149],[0,13],[0,5],[3,31],[3,5],[1,2],[27,22],[2,1],[57,114],[-9,112],[-4,28],[-4,10],[-5,6],[-23,10],[-11,0],[-5,-1],[-14,-1],[-37,2],[-4,0],[-70,3],[-5,2],[-2,1],[-21,13],[-1,0],[-4,5],[-8,11],[-20,26],[-11,15],[-3,19],[-7,42],[-4,21],[-12,39],[-12,1],[-11,2],[-10,2],[-3,1],[-1,1],[0,6],[7,34],[2,10],[-2,2],[-48,59],[0,1],[-24,44],[-6,-2],[-8,-2],[-11,2],[-22,11],[-18,24],[0,2],[-1,4],[-32,102],[0,1],[-39,43]],[[78769,62255],[53,-41],[21,-25],[14,-29],[22,-22],[13,-12],[6,-7],[44,-24],[104,-30],[144,-111],[76,-97],[32,-18],[81,-13],[88,-30],[5,-1],[1,0],[2,-1],[63,-35],[94,-22],[4,-1],[5,-5],[19,-20],[20,-52],[10,-72],[0,-52],[5,-7],[13,-20],[17,-16],[29,-14],[8,-1],[27,-4],[75,7],[53,-7],[127,-62],[118,-12],[41,7],[72,27],[1,0],[32,23],[18,28],[7,59],[-27,47],[-48,55],[-4,12],[7,23],[29,16],[6,-1],[117,-11],[8,-17],[20,-14],[12,-14],[33,-17],[29,-15],[13,-16],[1,-2],[6,-15],[-4,-5],[11,-45],[72,-192],[14,-26],[9,-11],[2,-2],[5,-6],[7,-5],[12,-9],[4,-2],[3,-2],[72,-30],[18,-24],[-2,-13],[5,-11],[-9,-24],[0,-1],[-1,-3],[-19,-23],[-4,-4],[-19,-18],[-9,-32],[0,-30],[-6,-31],[-2,-6],[-5,-14],[-3,-8],[-28,-12],[0,-1],[-19,-4],[-10,-2],[-25,-1],[-25,-6],[-16,-20],[-1,-1],[-1,-2],[-12,-17],[-6,-17],[-4,-13],[1,-14],[1,-10],[10,-24],[26,-23],[11,-16],[3,-4],[4,-28],[-16,-23],[-26,-5],[-25,9],[-19,13],[-14,17],[-21,26],[-21,15],[-13,-24],[21,-30],[13,-19],[14,-30],[15,-25],[6,-11],[13,-18],[17,-24],[14,-22],[7,-30],[-13,-25],[-9,-15],[-8,-13],[11,-22],[23,-17],[29,-13],[19,-13],[9,-28],[0,-26],[4,-24],[6,-23],[4,-22],[23,-28],[19,-13],[24,-20],[4,-3],[21,-20],[16,-21],[15,-17],[25,-26],[21,-24],[21,-21],[19,-20],[17,-17],[13,-10],[1,-1],[10,-7],[28,-16],[33,-9],[18,-4],[25,-13],[7,-14],[12,-25],[19,-45],[44,-28],[33,-18],[38,-15],[27,-17],[24,-19],[31,-22],[29,-17],[30,-13],[23,-13],[36,-19],[33,-26],[27,-26],[26,-19],[23,-22],[15,-21],[4,-5],[18,-23],[17,-15],[19,-11],[19,-11],[25,-12],[25,-14],[23,-10],[30,-11],[21,-7],[23,-8],[27,-13],[19,-13],[128,-106],[21,-4],[25,0],[38,7],[34,4],[31,-2],[23,-7],[28,-8],[29,-11],[33,-9],[28,-8],[27,-9],[29,-9],[24,-8],[29,-7],[27,-6],[32,-7],[27,-6],[29,-6],[28,-11],[23,-11],[25,-13],[23,-13],[23,-13],[21,-13],[21,-10],[25,-11],[23,-7],[21,-6],[28,-9],[29,-8],[25,-7],[32,-13],[27,-10],[23,-11],[25,-9],[21,-8],[27,-15],[19,-13],[26,-15],[25,-22],[23,-21],[19,-20],[25,-19],[19,-13],[7,-5],[14,-8],[17,-13],[5,-3],[16,-8],[23,-17],[21,-11],[22,-13],[41,-5],[45,-6],[26,-3],[48,6],[286,35],[9,2],[24,4],[73,13],[6,2],[15,4],[34,-9],[27,-3],[24,-10],[22,-6],[6,-1],[20,-20],[21,-21],[5,-6],[6,-16],[12,-30],[6,-17],[0,-3],[-3,-12],[-2,-12],[-13,-20],[-7,-7],[0,-1],[-13,-13],[-8,-8],[-13,-8],[-26,-17],[-13,-15],[-5,-45],[7,-18],[19,-21],[22,-3],[3,0],[7,2],[6,1],[31,16],[44,22],[6,4],[51,48],[7,7],[18,44],[4,3],[1,1],[9,5],[11,-1],[5,-1],[3,0],[21,-25],[7,-17],[64,-90],[6,-20],[0,-1],[-6,-29],[-30,-28],[-13,-8],[-8,-5],[-16,-10],[-26,-8],[-3,1],[-13,2],[-28,-13],[0,-19],[8,-10],[13,-8],[12,-8],[0,-1],[1,0],[27,-10],[5,-2],[19,-2],[3,-1],[65,4],[25,-45],[26,-23],[20,9],[2,67],[51,-20],[120,-48],[29,-28],[-2,-78],[91,27],[33,-6],[1,-34],[-81,-36],[12,-15],[9,-5],[3,-2],[31,-4],[37,5],[35,5],[18,-27],[-89,-38],[4,-25],[23,-11],[34,4],[33,19],[21,7],[32,-38],[-21,-27],[-19,-16],[28,-19],[22,4],[42,-4],[25,-13],[22,0],[1,0],[70,47],[-4,41],[-44,22],[-33,26],[18,25],[40,-2],[20,-13],[10,-24],[14,-31],[9,-5],[13,-8],[4,-2],[11,-6],[23,-30],[11,-48],[-7,-37],[-6,-13],[-5,-4],[-6,-3],[-17,-11],[-14,0],[-73,0],[-10,-6],[-11,-7],[-1,0],[-4,-8],[13,-17],[5,-7],[14,-10],[27,-14],[52,-27],[21,-10],[16,-5],[57,-16],[38,-9],[8,-2],[1,-1],[30,-3],[10,-2],[6,4],[9,6],[17,11],[21,24],[51,64],[2,3],[5,3],[11,7],[6,4],[9,-2],[19,-2],[22,-3],[23,-17],[6,-9],[4,-7],[7,-10],[1,-23]],[[85280,57908],[-489,-294],[-28,-17],[-181,-110],[-44,-28],[-22,-14],[-117,-72],[-64,-40],[-29,-18],[-35,-21],[-165,-102],[-28,-17],[-35,-21],[-139,-82],[-41,-24],[-12,-7],[-76,-47],[-107,-65],[-79,-50],[-52,-30],[-153,-95],[-27,-17],[-47,-30],[-26,-16],[-146,-91],[-80,-50],[-85,-53],[-50,-31],[-203,-127],[-80,-50],[-18,-12],[-10,-6],[-59,-38],[-14,-8],[-49,-31],[-36,-23],[-20,-13],[-21,-13],[-35,-22],[-48,-31],[-41,-26],[-31,-16],[-19,-13],[-42,-28],[-58,-37],[-23,-16],[-23,-14],[-60,-38],[-36,-23],[-63,-39],[-291,-182],[-163,-102],[-2,-1],[-71,-44],[-32,-20],[-41,-26],[-69,-43],[-21,-13],[-55,-35],[-18,-11],[-80,-50],[-124,-77],[-49,-31],[-76,-47],[-96,-59],[-19,-12],[-41,-25],[-31,-19],[-54,-34],[-21,-13],[-40,-23]],[[80540,54975],[-25,10],[-21,13],[-9,24],[-29,2],[-13,24],[-1,1],[0,1],[0,24],[0,2],[-4,24],[-10,21],[-4,22],[4,15],[2,11],[-19,18],[-1,1],[0,1],[-7,22],[-9,4],[-16,6],[-11,14],[-4,4],[-12,10],[-5,4],[-1,1],[-9,20],[-4,3],[-5,3],[-18,11],[-20,13],[-16,19],[-10,5],[-11,6],[-17,20],[-14,12],[-8,7],[-5,3],[-12,7],[-4,3],[-11,-3],[-11,-2],[-17,17],[-2,2],[-21,12],[-21,8],[-27,1],[-22,-14],[-22,10],[-25,11],[-15,19],[-21,5],[-16,19],[-18,19],[-2,1],[-26,16],[-7,-2],[-21,-5],[-12,20],[-2,2],[-3,0],[-23,-1],[-22,7],[-28,0],[-13,4],[-10,3],[-27,2],[-8,-20],[0,-1],[-2,0],[-28,-5],[-20,9],[-26,5],[-20,7],[-25,11],[-18,11],[-4,2],[-26,8],[-24,8],[-3,10],[-4,11],[11,29],[0,1],[1,32],[-14,26],[-5,24],[-23,8],[-18,23],[-20,19],[-2,0],[-21,10],[-19,-1],[-2,-1],[-2,-1],[-23,-16],[-27,-6],[-26,-6],[-1,0],[-11,-19],[-24,-11],[-25,-4],[-24,-16],[-10,1],[-17,3],[-8,5],[-10,7],[-14,7],[-10,5],[-5,2],[-20,10],[-24,12],[-1,0],[-27,-6],[-28,0],[-31,2],[-17,19],[-25,9],[-25,19],[-20,11],[-23,13],[-24,10],[-24,4],[-27,6],[-15,4],[-13,4],[-10,3],[-17,4],[-20,10],[-1,0],[-20,7],[-6,1],[-15,3],[-24,-7],[-19,18],[-22,16],[-23,12],[-1,7],[-1,16],[-22,12],[-355,-113],[-40,-12],[-56,-20],[-28,-7],[-181,-57],[-305,-96],[-102,-32],[-30,-9],[-206,-64],[-39,-12],[-261,-82],[-47,-15],[-41,-13],[-162,-50],[-180,-57],[-32,-10],[-2,0],[-140,-13],[-31,-3],[-2,0],[-242,-9],[-137,-6],[-46,-2],[-312,-20],[-168,-15],[-172,-9],[-53,-2],[-72,-4],[-100,-5],[-149,-8],[-66,-4],[-18,-1],[-66,-3],[-248,-13],[-45,-2],[-404,-21],[-113,-6],[-45,-8],[-135,-107],[-28,-23],[-132,-105],[-21,-17],[-21,-17],[-17,-14],[-21,-17],[-125,-101],[-42,-33],[-28,-24],[-39,-31],[-97,-78],[-58,-47],[-31,-25],[-21,-17],[-20,-16],[-46,-37],[-23,-67],[-10,-30],[-13,-36],[-10,-29],[-7,-21],[-95,-252],[-33,-90],[-16,-44],[-35,-93],[-7,-21],[-9,-24],[-9,-24],[-11,-29],[-21,-58],[-23,-61],[-30,-82],[-81,-215],[-13,-34],[0,-1],[-61,-166],[2,-7],[23,-56],[35,-88]],[[72620,52893],[-32,7],[-26,38],[-56,-10],[-21,-1],[-5,2],[-44,5],[-17,0],[-19,-1],[-99,-2],[-255,-4],[-84,-2],[-68,28],[-1,0],[-12,1],[-67,-18],[-9,-17],[-8,-7],[-140,-50],[-66,-3],[-55,16],[13,-63],[-2,-14],[0,-2],[-2,-5],[-113,-69],[-5,-3],[-3,-2],[-20,-11],[-11,-2],[-3,14],[-2,7],[-2,2],[-5,1],[-5,1],[-59,10],[-6,0],[-9,0],[-17,-1],[-24,-10],[-9,-7],[0,-1],[-2,-3],[-4,-1],[-12,-2],[-70,-13],[-1,4],[-17,55],[-12,23],[-2,6],[-6,5],[-6,2],[-2,0],[-35,5],[-6,1],[-34,-5],[0,-6],[-5,-2],[-8,3],[-12,11],[-25,35],[5,13],[-5,19],[-4,16],[-5,5],[-5,0],[-2,0],[-58,-18],[-52,5],[-116,25],[-33,-3],[-20,-2],[-48,-7],[-53,-8],[-18,-3],[-4,22],[-5,1],[-7,2],[-30,37],[-3,4],[-17,16],[-4,2],[-2,1],[-28,7],[-11,2],[-72,37],[-5,3],[-17,-14],[-11,-6],[-2,0],[-4,0],[-12,4],[-10,6],[-13,13],[-14,21],[-8,30],[1,16],[-70,-16],[-22,21],[-37,11],[6,25],[1,2],[-15,0],[-23,8],[-5,1],[-28,17],[-7,8],[-8,20],[-2,5],[-5,5],[-8,1],[-72,-45],[-12,-9],[-3,-9],[1,-7],[-61,-12],[-2,0],[-29,28],[-17,10],[-1,2],[-49,19],[-4,1],[-12,3],[-4,1],[-39,4],[-69,2],[-1,0],[-36,3],[-55,3],[-24,10],[-17,-9],[-14,-4],[-21,0],[-24,6],[-35,6],[-35,3],[-48,-6],[-22,-6],[-3,-2],[-11,-6],[-13,16],[-4,4],[-83,31],[-74,13],[-7,1],[-34,18],[-1,0],[-43,27],[-2,1],[-4,9],[-12,15],[-20,27],[-15,21],[-23,30]],[[64728,53101],[-145,-4],[-137,-3],[-101,-3],[-93,-3],[-82,-2],[-89,-11],[-152,-19],[-30,-4],[-58,-43],[-135,-29],[-96,-22],[-163,-89],[-33,-18],[-23,-12],[-14,-8],[-17,-10],[-19,-11],[-94,-53],[-141,-79],[-223,-95],[-47,-18],[-44,-12],[-24,-4],[-55,-16],[-120,-32],[-47,-12],[-97,8],[-21,1],[-51,-15],[-114,-29],[-106,-25],[-161,-38],[-77,-20],[-41,-10],[-53,-29],[-37,-19],[-79,-40],[-35,-18],[-22,10],[-31,33],[-55,57],[-51,52],[-26,28],[-112,115],[-111,-38],[-71,-24],[-20,-7],[-74,-24],[-47,-15],[-26,-8],[-117,-64],[-38,-20],[-28,-15],[-63,-34],[-19,-11],[-29,-15],[-50,12],[-12,-4],[-104,-34],[-42,-5],[-90,-11],[-53,-6],[-59,-6],[-23,-3],[-117,-27],[-87,-27],[-4,-1],[-98,-29],[-69,-21],[-274,-111],[-24,-10],[-93,-37],[-7,22],[-12,25],[-8,26],[-11,28],[-5,22],[0,25],[-1,25],[-1,22],[-1,27],[-8,26],[-2,25],[-4,32],[-4,23],[-4,34],[-8,25],[-5,35],[-14,27],[0,22],[-10,25],[-9,20],[-23,30],[-17,7],[-9,3],[-21,5],[-18,17],[-7,22],[-1,2],[-20,15],[-11,5],[-14,5],[-4,4],[-17,15],[-25,5],[-4,0],[-21,9],[-5,2],[-19,10],[-18,0],[-10,-1],[-25,6],[-29,4],[-31,6],[-18,8],[-7,3],[-21,10],[-27,5],[-29,-4],[-20,7],[-31,6],[-21,16],[16,33],[-15,29],[-17,10],[-2,2],[-28,25],[-7,11],[-11,19],[-3,4],[-11,3],[-122,-42],[-62,-22],[-256,-90],[-54,-19],[-263,-95],[-67,-25],[-164,-59],[-73,-26],[-31,-12],[-37,-13],[-209,-75],[-2,-1],[-181,-65],[-125,-45],[-67,-24],[-60,-21],[-30,-11],[-24,-9],[-21,-7],[-22,-8],[-85,-31],[-256,-92],[-66,-23],[-6,-2],[-139,-50],[-56,-20],[-211,-75],[-44,-16],[-22,-7],[-63,-23],[-71,-26],[-128,-43],[-15,-6]],[[55788,51746],[-12,13],[-35,33],[-7,2],[-10,3],[-1,0],[-3,-2],[-11,-7],[-2,-10],[-1,-6],[2,-2],[10,-9],[30,-27],[-3,-13],[-12,-6],[-1,-1],[-84,-31],[-7,-3],[-4,-1],[-19,2],[-4,5],[-4,4],[1,4],[1,10],[-51,36],[-2,0],[-35,10],[4,45],[4,41],[-7,16],[-16,41],[-3,39],[-2,23],[-1,18],[0,4],[-1,7],[-2,52],[109,132],[10,33],[4,26],[23,181],[-64,98],[-5,10],[-22,34],[1,8],[0,1],[8,4],[37,20],[4,2],[25,38],[3,16],[0,6],[2,8],[-7,8],[-22,26],[-7,8],[-12,15],[-3,3],[-27,15],[-5,3],[5,9],[4,9],[3,21],[-2,3],[-5,6],[-6,6],[-2,1],[-7,3],[-50,9],[-21,27],[0,1],[-4,11],[-7,23],[-10,16],[-2,3],[-1,4],[-4,19],[-8,33],[-16,18],[0,1],[-28,3],[-6,2],[-24,10],[-13,18],[0,3],[3,15],[18,19],[1,1],[2,16],[2,8],[-2,2],[-4,4],[-2,3],[-9,1],[-10,1],[-21,11],[-38,27],[-7,6],[-7,11],[-6,9],[2,2],[69,44],[1,6],[7,64],[-3,1],[-47,3],[-37,9],[-7,7],[-18,18],[0,17],[11,7],[3,2],[2,0],[34,6],[14,10],[8,10],[3,13],[-3,10],[-1,3],[-1,1],[-15,21],[-1,0],[-50,63],[0,1],[-13,14],[-22,3],[-33,-10],[-22,3],[-12,1],[-1,0],[-1,1],[-32,31],[-5,10],[-1,1],[-1,3],[0,5],[2,8],[20,19],[4,3],[6,5],[3,10],[0,2],[1,1],[2,5],[-7,8],[-10,11],[-5,6],[-13,4],[-2,0],[-47,3],[-33,-26],[-15,2],[-4,0],[-11,12],[-6,23],[-8,6],[-28,21],[-6,5],[-45,19],[-17,19],[-2,2],[4,9],[6,12],[29,21],[2,16],[1,6],[1,5],[-6,6],[-2,3],[-3,3],[-37,7],[-62,-6],[-28,-16],[-18,-17],[-6,0],[-13,0],[-7,0],[-1,2],[-12,14],[-2,35],[-1,9],[-1,13],[-2,3],[-14,21],[-2,3],[-19,-1],[-1,0],[-2,-1],[-23,-10],[-12,-6],[-8,-1],[-28,-5],[-5,0],[-33,4],[-18,21],[-19,5],[-15,-9],[-13,-8],[-18,-10],[-57,-18],[-20,2],[-5,1],[-7,8],[-3,4],[-9,9],[-6,23],[-13,14],[-17,17],[-34,1],[-73,-13],[-14,-9],[0,-1],[-5,-2],[-37,-17],[-1,-1],[-47,6],[-15,2],[-2,0],[-15,8],[-4,4],[-23,26],[-32,49],[1,76],[0,1],[-4,46],[-1,9],[-1,6],[-9,9],[-7,7],[-9,9],[-58,34],[-8,14],[-2,3],[-58,116],[2,15],[2,26],[-1,54],[-11,13],[-1,0],[-4,0],[-7,1],[-9,-7],[-28,-24],[-6,1],[-5,0],[-5,1],[-14,12],[-5,4],[-67,56],[-12,10],[-11,12],[-4,7],[-38,72],[-4,8],[-3,6],[-48,118],[1,6],[7,33],[4,17],[-3,76],[0,6],[-24,27],[0,12],[0,7],[17,69],[2,1],[4,3],[5,3],[9,-2],[10,-2],[28,-6],[15,-3],[5,4],[4,2],[5,3],[1,9],[-25,82],[-11,12],[-3,0],[-12,2],[-18,-1],[-18,-1],[-45,38],[-2,18],[-1,4],[-19,35],[-3,3],[-62,64],[-42,44],[-1,2],[-25,93],[0,1],[-24,73],[-17,8],[-11,8],[-3,1],[-1,1],[0,1],[-26,32],[0,1],[-1,18],[11,7],[6,-1],[4,0],[65,-5],[4,-1],[3,9],[1,2],[1,2],[-31,64],[-8,9],[-3,1],[-9,1],[-4,0],[-112,-3],[3,13],[1,2],[4,17],[2,68],[-3,11],[-5,28],[-3,14],[-8,9],[-7,1],[-3,0],[-5,-1],[-34,-3],[-7,8],[-8,9],[-3,4],[-34,48],[-8,13],[-8,11],[-1,6]],[[53134,55775],[51,8],[16,23],[4,38],[5,24],[7,22],[6,25],[-17,90],[-19,33],[-12,29],[-8,47],[9,95],[23,24],[11,32],[10,48],[20,40],[6,28],[37,8],[31,-10],[67,-9],[30,7],[33,1],[23,4],[7,28],[23,24],[17,12],[16,28],[11,27],[25,6],[4,1],[22,9],[-6,26],[25,20],[38,56],[1,32],[-3,23],[3,29],[-4,30],[-10,20],[-27,45],[-14,53],[4,39],[-7,24],[5,23],[-1,37],[0,28],[-15,21],[-9,25],[-19,28],[-21,25],[-18,22],[-17,15],[-26,14],[-14,30],[-9,21],[-23,12],[-26,9],[-18,16],[-20,15],[-19,42],[-26,41],[-14,25],[-26,23],[-11,33],[-11,28],[0,44],[7,34],[30,21],[27,16],[10,25],[26,16],[23,16],[14,36],[23,14],[26,12],[17,15],[38,10],[16,13],[8,31],[-8,25],[-3,44],[2,31],[5,29],[-1,22],[-3,29],[12,19],[8,21],[16,16],[19,12],[12,20],[14,17],[21,14],[20,14],[21,22],[14,29],[12,30],[7,30],[19,23],[23,18],[7,21],[0,38],[10,29],[-9,35],[0,27],[-11,28],[-5,33],[-12,27],[-28,32],[-21,51],[-5,23],[-14,33],[-20,26],[-40,44]],[[23262,60886],[-26,-40],[-3,-5],[-61,-44],[-14,-10],[-23,-3],[-11,-10],[-88,-91],[-3,-4],[4,0],[15,0],[7,-36],[1,-7],[3,-15],[11,-58],[-58,-120],[-20,-14],[-4,-3],[-1,-8],[0,-3],[1,-13],[1,-10],[10,-70],[0,-3],[5,-10],[3,-3],[13,-15],[6,-8],[18,-21],[-9,-2],[-35,-7],[-11,-5],[-3,-2],[-2,-2],[-15,-29],[-30,-51],[-12,-12],[-2,-1],[-16,-12],[-24,-17],[-8,-6],[-12,-30],[-1,-16],[-3,-72],[-2,-46],[1,-10],[2,-8],[11,-67],[20,-30],[45,-95],[18,-36],[2,-27],[1,-16],[1,-11],[1,-7],[-7,-9],[-8,0],[-22,5],[-21,-3],[-4,0],[-2,-2],[-8,-5],[-39,-29],[-26,-27],[-11,-11],[-5,-8],[2,-25],[-10,-47],[-9,-46],[-2,-13],[-13,-31],[-1,-34],[6,-18],[7,-11],[17,-80],[0,-20],[-6,-75],[-33,-39],[-52,-19],[-14,-5],[-67,-22],[-33,-17],[-15,-16],[-1,-12],[10,-105],[5,-10],[9,-6],[1,1],[40,23],[9,4],[44,22],[0,1],[14,3],[9,1],[5,0],[5,-3],[9,-8],[17,-14],[10,-9],[2,-1],[1,-20],[0,-13],[6,-14],[14,-19],[27,-21],[12,-6],[9,-5],[101,-49],[17,-17],[4,-18],[-26,-33],[-12,-24],[-4,-16],[-2,-35],[-6,-21],[-4,-5],[-1,-2],[-8,-3],[-37,-2],[-15,1],[-11,6],[-12,10],[-4,7],[1,16],[12,16],[3,4],[0,10],[-1,3],[-6,5],[-2,2],[-1,0],[-10,4],[-7,0],[-7,-1],[-6,0],[-3,0],[-22,-6],[-3,-1],[-36,-6],[-23,-15],[-26,-18],[-17,-18],[-6,-12],[-3,-5],[-23,-94],[-9,-39],[-1,-2],[-5,-38],[-1,-4],[25,-46],[26,-25],[35,-32],[8,-81],[4,-44],[-14,-17],[-7,-9],[-13,-29],[-5,-70],[-1,-3],[-71,-196],[-3,-5],[-9,-15],[-4,-5],[-7,0],[-67,1],[-29,-3],[-29,-10],[-20,-21],[-11,-33],[0,-15],[-3,1],[-19,-68],[3,-9],[40,-94],[14,-28],[28,-36],[0,-20],[0,-1],[-1,-1],[-30,-19],[4,-21],[6,-28],[6,-33],[1,-30],[-4,-23],[-8,-20],[-42,-78],[-18,-28],[-4,-4],[-12,-24],[-3,-14],[-1,-27],[13,-25],[18,-17],[28,-23],[19,-20],[14,-23],[5,-15],[4,-7],[6,-5],[24,-11],[42,-16],[59,-63],[9,-10],[-6,-7],[-15,-15],[-40,-42],[-21,-21],[1,-5],[11,-86],[21,5],[2,0],[0,-32],[0,-27],[0,-13],[1,-47],[-21,-5],[-1,0],[22,-68],[1,-3],[65,-33],[8,-3],[4,-5],[45,-51],[7,-9],[25,-40],[7,-24],[-2,-9],[0,-6],[-2,-9],[-4,-14],[-14,-18],[-20,-16],[-27,-17],[-49,-18]],[[22628,56291],[-24,1],[-23,2],[-22,-1],[-25,-10],[-23,-25],[-1,-6],[-33,-89],[-1,-2],[-1,-14],[-1,-4],[3,-9],[7,-18],[5,-12],[5,-5],[8,-7],[12,-10],[5,-5],[28,1],[6,1],[64,17],[44,-7],[25,-14],[8,-9],[2,-2],[8,-9],[4,-6],[3,-6],[42,-71],[35,-65],[12,-36],[3,-53],[-5,-16],[-37,-111],[-19,-18],[-12,-25],[-1,-3],[-7,-14],[-3,-22],[-4,-28],[-1,-8],[5,-18],[8,-32],[-3,-44],[-4,-4],[-5,-4],[-11,-10],[-7,-1],[-3,-1],[-9,-5],[-29,-18],[-7,-5],[-32,-37],[-6,-17],[-1,-6],[-3,-22],[-1,-3],[4,-24],[54,-55],[14,-40],[6,-17],[0,-1],[6,-18],[-3,-5],[-49,-77],[-4,-6],[-5,-10],[-1,0],[5,-17],[2,-7],[6,-7],[3,-3],[11,0],[56,-2],[5,0],[43,18],[36,15],[42,7],[15,-3],[4,0],[18,-4],[48,-19],[8,-9],[20,-21],[5,-6],[0,-9],[-1,-17],[19,-86],[14,-19],[29,-38],[3,-11],[4,-17],[2,-5],[4,-88],[-1,-11],[-3,-21],[-2,-11],[-3,-8],[-17,-40],[0,-5],[1,-69],[0,-6],[1,-3],[2,-7],[4,-18],[-5,-31],[-14,-78],[3,-17],[22,-24],[32,-15]],[[23049,54381],[0,-51],[-12,-48],[-40,-22],[-52,-28],[-42,-25],[-178,-93],[-32,-16],[-82,-43],[-81,-42],[-95,-49],[-105,-54],[-99,-51],[-39,-20],[-20,-10],[-93,-48],[-67,-34],[-22,-12],[-278,-142],[-59,-1],[-29,0],[-51,0],[-30,0],[-27,0],[-36,0],[-102,-1],[-42,0],[-216,0],[-408,-2],[-22,0],[-17,0],[-6,0],[-45,0],[-23,0],[-2,0],[-24,-6],[-385,-1],[-271,0],[-134,0],[-89,0],[-214,-1],[-123,0],[-47,0],[-156,0],[-45,1],[-2,0],[-121,-1]],[[18986,53581],[-32,11],[-546,205],[-183,68],[-1,0],[-41,13],[-82,31],[-102,37],[-50,11],[-32,13],[1,39],[2,101],[-42,0],[-142,-3],[-144,-3],[-19,-26],[-34,0],[-106,0],[-197,0],[-104,0],[-175,0],[-201,1],[-26,0],[-28,2],[-37,3],[-38,1],[-24,0],[-22,-5],[-59,-4],[-79,3],[-24,7],[-31,0],[-28,1],[-40,1],[-39,0],[-31,0],[-51,0],[-30,0],[-31,-3],[-25,1],[-76,0],[-23,5],[-38,0],[-76,1],[-1,18],[0,31],[-1,38],[-3,0],[-78,1],[-21,0],[-2,0],[-134,0],[-59,0]],[[15601,54180],[2,69],[-2,29],[0,172],[5,102],[2,85],[-1,85],[-1,28],[0,42],[0,103],[0,21],[0,143],[0,210],[0,42],[0,176],[1,268],[0,5],[0,322],[-63,2],[0,176],[2,23],[0,1],[3,24],[-7,52],[0,35],[1,41],[2,9],[5,18],[2,25],[1,226],[0,117],[4,500],[4,117],[2,54],[5,195],[-1,40],[0,2],[-2,86],[1,64],[1,46],[2,102],[1,169],[0,28],[-6,345],[3,114],[2,324],[1,126],[1,89],[2,159],[2,59],[7,173],[0,163],[1,90],[1,201],[1,251],[0,20],[0,12],[0,1],[0,143],[1,115],[0,25],[0,45],[0,20],[1,150],[0,29],[1,36],[1,22],[1,49],[0,44]],[[15601,54180],[0,-39],[0,-4],[-2,-39],[-69,-2],[-25,0],[-24,0],[-72,1],[-63,1],[-58,2],[-38,0],[-63,0],[-31,-1],[-24,0],[-40,-3],[-150,2],[-48,0],[-391,2],[-109,1],[-139,1],[-489,3],[-330,2],[-10,0],[-151,1],[-280,2],[-37,0],[-240,1],[-30,0],[-231,2],[-283,3],[-164,0],[-4,0],[-34,1],[-8,0],[-62,0],[-55,1],[-32,0],[-26,1],[-78,0],[-26,1],[-26,1],[-110,1],[-150,1],[-213,2],[-197,2],[-172,1],[-3,0],[-201,2],[2,-75],[-52,0],[-143,0],[-1,17],[-2,60],[-183,-5],[-35,3],[-50,0],[-70,2],[-112,3],[-86,1],[-41,0],[-120,0],[-308,1],[-10,0],[-75,0],[-18,0],[-30,0],[-33,0],[-22,0],[-44,0],[-21,0],[-29,0],[-35,1],[-24,0],[-38,0],[-27,0],[-30,0],[-36,0],[-58,0],[-45,0]],[[8837,54138],[-20,32],[-1,5],[-5,24],[-5,24],[-7,36],[-4,18],[-2,8],[-5,29],[-7,36],[-6,34],[-10,49],[-9,44],[-16,75],[-6,29],[-1,7],[-9,47],[-3,16],[-23,121],[-5,23],[-1,8],[-7,32],[-10,56],[-21,113],[-10,45],[0,1],[-6,28],[-7,35],[-11,63],[-12,62],[-20,97],[-1,5],[-24,122],[-6,28],[-3,16],[-3,14],[-33,167],[0,1],[-11,56],[-12,71],[-3,16],[-2,12],[-13,66],[-6,26],[-12,63],[-8,42],[-13,81],[-9,42],[-9,45],[-21,100],[-12,62],[-5,22],[-7,36],[-8,48],[-9,46],[-6,27],[-5,26],[-15,72],[0,1],[-19,90],[-6,35],[-2,10],[-15,81],[-14,75],[-37,188],[0,5],[-13,62],[-21,108],[-13,50],[-4,37],[-10,54],[-28,142],[-9,44],[-11,58],[-8,40],[-11,55],[-1,7],[-5,27],[-3,15],[-5,28],[-8,37],[-4,18],[-7,37],[0,1],[-10,49],[-8,42],[-4,21],[-13,63],[-33,173],[-2,10],[-7,39],[-20,102],[-24,121],[-6,32],[-30,155],[-5,26],[-11,53],[-7,38],[-74,376],[-11,58],[-4,20],[-4,21],[-6,30],[0,1],[-44,237],[-18,96]],[[28482,60994],[0,-103],[-1,-71],[0,-25],[0,-108],[0,-117],[1,-57],[1,-25],[1,-27],[1,-46],[0,-44],[4,-141],[2,-45],[0,-45],[-1,-23],[0,-5],[-1,-114],[-1,-64],[-1,-37],[0,-39],[-4,-70],[1,-57],[0,-58],[-1,-41],[0,-42],[1,-206],[-1,-109],[-2,-164],[-1,-23],[-1,-65],[0,-81],[-1,-50],[5,-146],[0,-45],[0,-35],[-7,-31],[0,-80],[0,-2],[4,-212],[0,-42],[-4,-14],[-2,-8],[1,-39],[-1,-24],[1,-28],[-1,-43],[-1,-171],[-3,-200],[-26,9],[-188,-1],[-4,-176],[-22,0],[-78,-1],[-113,-1],[-1,-79],[-1,-81],[-1,-50],[-2,-50],[-1,-35],[-2,-112],[-5,-268],[-6,-161],[-1,-34]],[[28019,56732],[-83,2],[-281,4],[-41,6],[-18,15],[-3,25],[-11,24],[-16,19],[-14,18],[-2,25],[0,24],[-11,24],[-119,0],[0,-80],[-1,-96],[-220,3],[-123,2],[-88,2],[-12,0],[-25,0],[-27,0],[-36,-1],[-146,1],[-151,2],[-166,1],[-84,1],[-175,2],[-90,1],[-139,1],[-117,4],[-322,2],[-156,2],[-90,0],[-44,1],[-69,1],[-95,1],[-76,1],[-35,1],[-62,0],[-235,3],[-459,7],[-269,1],[-49,1],[-117,1],[-94,1],[-120,2],[-124,-1],[-14,-54],[0,-3],[-18,-17],[-68,-68],[-9,-17],[-23,-44],[0,-1],[-7,-4],[-39,-22],[-3,-2],[-6,-9],[-22,-33],[-59,-89],[-7,-16],[-8,-21],[14,-10],[-23,-46],[-39,5],[-10,-2],[-26,-5],[-57,-5],[-10,3],[-9,0],[-69,-19],[-24,-12],[-51,-17],[-7,-3],[-26,-8],[-33,-11],[-3,-1],[-63,-5],[-52,19],[-3,1],[0,1],[-2,19],[0,2]],[[32818,61288],[1,-143],[2,-96],[3,-49],[0,-37],[1,-41],[2,-49],[1,-18],[0,-32],[0,-121],[0,-143],[2,-24],[0,-1],[0,-52],[-2,-51],[-4,-128],[-3,-125],[-1,-27],[0,-31],[1,-92],[-1,-133],[-1,-82],[2,-93],[0,-4],[6,-97],[-17,-333],[-3,-67],[0,-53],[0,-45],[-1,-85],[-3,-226],[-2,-184],[-3,-207],[-1,-123],[0,-5],[-2,-126],[0,-18],[-1,-63],[0,-1],[-1,-77],[-2,-219],[0,-65],[-2,-178],[-2,-99],[0,-5],[-1,-107],[-2,-136],[-2,-194],[0,-36],[-1,-42],[-2,-127],[-1,-86],[-2,-193],[-3,-146],[-1,-65],[-1,-80],[-1,-34],[-1,-75],[-1,-42],[-1,-56],[-1,-29],[0,-20],[0,-24],[-1,-17],[-2,-127],[-64,0],[-135,3],[-4,-122],[-3,-90],[-5,-144],[-65,0],[-352,4],[-114,1],[-41,1],[-8,0],[-50,0],[-219,3],[-223,2],[-22,0],[-144,1],[-213,3]],[[31101,55466],[5,160],[1,103],[2,99],[1,76],[3,270],[1,54],[2,81],[1,27],[4,280],[1,37],[1,29],[-9,20],[-32,0],[-58,1],[-41,1],[-36,0],[-69,1],[-30,7],[-54,0],[-2,0],[-182,2],[-104,1],[-185,2],[-1,0],[-138,-1],[-126,1],[-166,2],[-195,1],[-230,1],[-28,1],[-29,0],[-21,0],[-27,0],[-119,-3],[-43,2],[-38,1],[-72,1],[-53,0],[-65,-1],[-24,0],[-28,1],[-41,0],[-32,2],[-104,1],[-109,1],[-189,-2],[-68,1],[-337,6],[-19,0]],[[37549,59762],[-16,-86],[-4,-19],[3,-10],[1,0],[23,-18],[28,-37],[55,-11],[66,-23],[8,-3],[34,-3],[12,-2],[21,-10],[22,-22],[74,-53],[70,-62],[12,-35],[11,-41],[16,-62],[1,-6],[15,-39],[-1,-42],[20,-26],[9,-13],[3,-3],[13,-14],[14,-16],[32,-22],[16,-2],[3,0],[15,-7],[96,-79],[68,-81],[16,-33],[21,-99],[40,-40],[8,-8],[13,-13],[10,-23],[4,-31],[0,-2],[7,-8],[7,-9],[8,-10],[86,-40],[46,-14],[18,-6],[49,-36],[7,-7],[12,-14],[14,-15],[63,-77],[22,-3],[5,-1],[131,-39],[103,-79],[7,-8],[36,-43],[6,-6],[2,-25],[-3,-42],[-1,-9],[7,-14],[18,-33],[27,-48],[0,-1],[14,-15],[33,-25],[10,-7],[19,-21],[0,-1],[29,-101],[11,-27],[6,-7],[23,-27],[40,-48],[74,-96],[22,-24],[72,-59],[23,-29],[14,-20],[38,-52],[3,-7],[30,-46],[6,-25],[-5,-55],[-33,-55],[-84,-55],[-32,-22],[-2,-1],[-3,-2],[-4,-3],[0,-1],[0,-10],[2,-4],[12,-32],[59,-106],[42,-24],[15,-9],[19,-22],[23,-35],[22,-34],[5,-7],[0,-3],[1,-31],[0,-2],[-1,-1],[-2,-2],[-7,-8],[-9,-6],[-11,-7],[-54,-39],[-14,-29],[-12,-28],[-5,-12],[0,-3],[2,-2],[5,-8],[40,-32],[2,-2],[3,-2],[2,-3],[3,-3],[2,-3],[2,-3],[1,-3],[2,-4],[1,-4],[6,-17],[1,-4],[1,-3],[1,-4],[0,-4],[0,-1],[1,-17],[0,-7],[-1,-4],[0,-1],[-13,-91],[-11,-74],[0,-13],[-2,-17],[3,-17],[4,-9],[8,-11],[7,-7],[51,-45],[0,-1],[117,-104],[5,-4],[21,-12],[0,-1],[3,-2],[1,0],[28,-20],[2,-2],[3,-2],[3,-3],[2,-3],[1,0],[5,-7],[3,-3],[65,-43],[7,-17],[4,-42],[-5,-29],[-1,-11],[-15,-15],[-65,-68],[-11,-81]],[[39761,55909],[-21,0],[-289,-5],[-6,0],[-111,-2],[-50,-1],[-15,0],[-1,-30],[32,0],[43,0],[1,-129],[25,-1],[47,0],[29,-2],[25,-1],[-107,-67],[-110,-69],[-154,-97],[-2,-2],[-27,-16],[-80,-51],[-74,-46],[-35,-22],[-116,-73],[-89,-57],[-40,-24],[-212,-138],[-12,-4],[-46,-16],[-37,-13],[-205,-70],[-70,-35],[-1,-1],[-171,-83],[-48,-24],[-27,-14],[-39,-19],[-168,-87],[-107,-65],[-247,-158],[-49,-32],[-268,-169],[-21,-14],[-55,-37],[-41,-27],[-102,-64],[-208,-129],[-3,-2],[-152,-100],[-33,-19],[-75,-49],[-110,-70],[-86,-55],[-50,-33],[-42,-26]],[[35951,53661],[-276,1],[-363,2],[-162,1],[-32,1],[-62,-2],[-49,-1],[-48,0],[-146,1],[-32,0],[-215,6],[-40,2],[-26,-3],[-29,2],[-10,0],[-25,0],[-57,0],[-27,0],[1,125],[0,7],[1,47],[-33,0],[-128,0],[-21,0],[-24,0],[-1,-36],[0,-2],[-2,-55],[-3,-84],[-244,3],[-83,1],[-124,1],[-2,0],[-51,0],[-87,0],[-1,0],[-266,1],[-509,2],[-93,0],[-537,1],[-13,1],[-90,0],[-114,0],[-321,1],[-186,2],[-76,0],[-265,1]],[[31080,53687],[1,58],[0,18],[-1,84],[3,390],[3,283],[1,68],[2,178],[4,173],[2,113],[0,3],[1,34],[0,44],[1,53],[3,154],[2,80],[-1,35],[0,3],[0,8]],[[53134,55775],[-28,27],[-20,54],[-23,17],[-131,78],[-39,20],[-15,2],[-7,-4],[-4,-3],[0,-2],[-3,-14],[8,-8],[39,-41],[-2,-13],[-1,-1],[-2,-2],[-12,-9],[-43,-11],[-4,0],[-2,0],[-7,1],[-16,18],[-1,11],[4,23],[3,11],[4,22],[2,11],[-10,12],[-61,62],[-7,6],[-15,15],[-16,2],[-9,-2],[-27,-5],[-9,2],[-3,0],[-3,0],[-8,9],[-2,10],[0,2],[-17,111],[-14,2],[-68,10],[-9,1],[-15,26],[-12,15],[-7,7],[-13,15],[-14,9],[-104,53],[-3,1],[-115,19],[-16,21],[1,3],[8,50],[-14,44],[-20,42],[-7,7],[-7,8],[-3,3],[-85,48],[8,67],[-6,14],[-6,12],[-16,6],[-35,11],[-30,4],[-27,3],[-24,11],[-7,8],[-6,6],[0,1],[0,4],[3,17],[18,12],[13,4],[16,0],[29,0],[25,13],[0,4],[0,6],[1,18],[-42,40],[-3,19],[3,21],[1,1],[1,1],[41,26],[20,23],[0,7],[0,17],[-13,15],[-25,3],[-12,-9],[-5,-4],[-28,-22],[-95,0],[1,87],[-1,6],[-5,17],[-3,16],[-6,5],[-8,7],[-12,10],[-40,8],[-51,1],[-42,-2],[-60,21],[-13,2],[-47,7],[-21,3],[-36,1],[-24,-13],[-8,-5],[-4,-3],[-13,-8],[-10,-14],[-2,-1],[-1,-10],[-2,-12],[2,-4],[21,-47],[10,-22],[7,-16],[3,-22],[-1,-4],[-1,-8],[-2,-11],[-2,-12],[-10,-13],[-22,-26],[-14,-8],[-10,-6],[-5,1],[-14,1],[-40,19],[-4,3],[-20,17],[-8,8],[-23,27],[-63,56],[-33,-23],[-46,-33],[-62,-50],[-64,-53],[-144,-119],[-32,-27],[-34,-26],[152,-166],[18,-21],[191,-196],[-40,-14],[-10,0],[-34,5],[-23,17],[-25,11],[-32,-2],[-27,10],[-28,6],[-29,-2],[-17,5],[-19,5],[-43,6],[-43,15],[-27,5],[-38,19],[-29,12],[-36,2],[-36,10],[-29,13],[-19,17],[-18,25],[-22,18],[-8,30],[-3,22],[-10,19],[-41,14],[-29,15],[-25,1],[-18,-12],[-22,-8],[-32,-5],[-64,3],[-27,8],[-21,30],[-149,-58],[-1,-1],[-154,-61],[-54,-22],[-58,-24],[-39,-16],[-161,-65],[-205,-84],[-94,-38],[-97,-41],[-17,-7],[-1,0],[-23,-10],[-49,-21],[-137,-57],[-50,-21],[-20,-9],[45,-39],[70,-59],[-101,-96],[-40,-38],[-130,-126],[-76,67],[-56,47],[-97,84],[-6,4],[-15,8],[-56,-22],[-1,0],[-64,-25],[-261,-96],[-112,-41],[-53,-20],[-65,-24],[-111,-43],[-145,-54],[-61,-24],[-34,-13],[-71,-27],[-78,-30],[-228,-87],[-123,-47]],[[47169,55335],[-27,92],[-2,4],[-81,268],[-30,99],[-52,171],[-11,36],[-46,147],[-16,50],[-12,40],[-10,31],[-74,238],[-67,217],[-47,153],[0,1],[-15,47],[-39,126],[-40,131],[-45,154],[-53,181],[-69,243],[-25,88],[0,1],[-86,244],[-35,141],[-74,242],[-17,59],[-16,57],[-50,179],[-15,57],[-86,296],[-21,74],[-41,152],[-38,204],[-20,61],[-64,336],[-8,46],[-10,50],[-15,85],[-27,144],[-11,60],[-34,185],[-30,165],[-7,41],[-30,186]],[[47169,55335],[-120,-70],[-241,-141],[-39,-22],[-26,-15],[-22,-13],[-88,-51],[-18,-9],[-28,-17],[-118,-68],[-120,-69],[-31,-17],[-39,-23],[-24,-14],[-24,-13],[-96,-59]],[[46135,54734],[-15,-8],[-4,-2],[-14,-7],[-34,-18],[-35,-18],[-78,-40],[-55,-28],[-28,-14],[-108,-56],[-54,-27],[-22,-11],[-19,-10],[-133,-69],[-130,-67],[-151,-77],[-48,-25],[-89,-45],[-73,-37],[-43,-22],[-35,-18],[-67,-35],[-72,-37],[-32,-16],[-145,-75],[-49,-25],[-3,-1],[-81,-42],[-64,-33],[-38,-19],[-86,-44],[0,-1],[-87,-45],[-50,-25],[-26,-16],[-34,-17],[-19,-10],[-61,-31],[-23,-11],[-59,-30],[-72,-36]],[[43899,53586],[-60,50],[-148,-127],[-38,32],[-17,24],[-37,29],[-45,40],[-40,39],[-2,1],[-72,66],[-30,24],[-17,18],[-18,18],[-45,37],[-58,49],[-22,19],[-28,26],[-2,2],[-32,29],[-21,19],[-4,3],[-40,32],[-70,66],[-82,69],[-33,24],[-4,3],[-16,15],[-27,24],[-43,38],[-31,26],[-53,-49],[-25,-22],[-29,-28],[-16,-14],[-20,-19],[-20,-18],[-27,-23],[-22,-19],[-36,-33],[-22,-19],[-28,-2],[-42,49],[-21,23],[-20,26],[-21,26],[-14,16],[-14,18],[-37,38],[-50,58],[-37,49],[-141,173],[-21,0],[-4,0],[-31,0],[-194,0],[-55,0],[-10,0],[-22,0],[-123,0],[-233,0],[-334,1],[-27,0],[-205,0],[-33,40],[-15,19],[-9,48],[-5,68],[-120,95],[-6,4],[-6,1],[-10,2],[-70,17],[-63,26],[-12,2],[-92,26],[-32,18],[-52,38],[-86,90],[-2,2],[-18,11],[-21,13],[-50,40],[-30,17],[-11,7],[-33,11],[-22,22],[-45,106],[-12,189],[0,3],[-2,4],[-25,45],[-16,45],[-19,62],[-1,36],[9,56],[11,34],[-4,17],[-36,50],[-16,22],[-16,23],[-25,27],[-51,22],[-15,4],[-16,4],[-5,2],[-20,29]],[[88483,48216],[-41,-26],[-1,0],[-74,-45],[-24,-14],[-22,-14],[-93,-56],[-278,-168],[-69,-41],[-32,-19],[-123,-73],[-13,-7],[-10,-6],[-34,-20],[-27,-16],[-60,-36],[-58,-35],[-48,-29],[-88,-52],[-95,-56],[-56,-34],[-312,-186],[-125,-74],[-2,-1],[-76,-45],[-3,-1],[-91,-55],[-285,-171],[-30,-18],[-21,-13],[-129,-76],[-63,-37],[-74,-44],[-30,-18],[-145,-83],[-118,-69],[-40,-23],[-28,-16],[-6,-3],[-45,-27],[-12,-6],[-35,-21],[-219,-126],[-18,-43],[-5,-11],[-20,-43],[-19,-46],[-33,-71],[-36,-81],[-14,-32],[-26,-49],[-25,-50]],[[85152,45930],[-19,24],[-62,32],[-7,3],[-25,13],[-12,6],[-15,5],[-12,8],[-12,18],[-7,8],[-33,39],[-85,16],[-2,0],[0,1],[10,63],[5,20],[-3,9],[-6,6],[-13,4],[-15,0],[-107,27],[-56,59],[-71,61],[-94,78],[-9,4],[-162,9],[-15,-2],[-25,-9],[-41,-35],[-75,-63],[-4,-4],[-22,-18],[-174,107],[0,11],[-46,50],[-8,4],[-7,0],[-27,-23],[-7,-7],[-5,-2],[-6,1],[-2,0],[-29,6],[-19,6],[-13,4],[-24,8],[-63,20],[-12,4],[-7,9],[-9,23],[-5,41],[0,38],[14,73],[0,6],[-4,7],[-16,7],[-48,12],[-14,-1],[-7,-4],[-68,-14],[-42,-8],[-53,-9],[-3,1],[-3,2],[-5,3],[-15,34],[2,12],[0,1],[3,5],[8,5],[18,11],[6,9],[0,5],[-7,8],[-78,35],[-135,38],[-17,5],[-10,3],[-13,-3],[-37,-10],[-7,-7],[2,-10],[27,-27],[-1,-8],[-2,-3],[-36,-8],[-89,-23],[-11,-2],[-4,2],[-9,3],[-6,6],[-5,8],[-27,41],[-4,16],[-1,1],[-9,4],[-24,11],[-28,43],[-3,4],[0,13],[-1,4],[-36,78],[-10,19],[-7,9],[-14,10],[-51,-6],[-1,-4],[-9,-41],[-3,-12],[-2,-10],[-4,-4],[-11,-3],[-11,4],[-26,17],[-25,17],[-19,32],[5,8],[1,18],[-35,72],[-7,2],[-9,0],[-33,-21],[-63,5],[-44,10],[-27,6],[-9,2],[-11,5],[-4,3],[-3,2],[0,1],[-1,18],[1,1],[3,14],[2,6],[-5,2],[-61,18],[-25,16],[-1,0],[-36,-1],[-23,7],[-27,3],[-19,-14],[-23,2],[-15,-20],[-12,-24],[-23,4],[-20,-7],[-15,27],[-21,14],[-18,20],[-17,17],[-24,12],[-24,8],[-19,12],[19,10],[-17,21],[-21,16],[-15,17],[-11,18],[-19,22],[-24,-3],[-27,26],[-21,13],[-21,15],[21,18],[2,24],[-8,23],[-27,15],[-19,24],[-29,5],[-8,27],[-24,21],[-24,6],[-20,-6],[-33,-4],[-15,-16],[-9,-20],[-24,13],[-22,1],[-2,0],[-24,8],[-24,12],[-23,7],[-22,-1],[2,27],[-22,12],[-14,16],[-7,7],[-9,8],[-9,22],[-24,27],[-23,18],[-28,-8],[-27,11],[13,24],[-23,6],[-28,2],[-24,14],[-8,25],[-20,7],[-24,11],[14,23],[-21,18],[3,24],[-22,6],[-13,19],[0,22],[4,22],[5,21],[8,28],[-4,23],[-40,2],[-50,3],[-61,33],[-5,2],[-6,4],[-7,6],[-1,3],[10,32],[1,4],[-8,2],[-78,18],[-15,8],[-2,6],[-4,33],[-1,4],[-21,72],[-12,22],[-7,8],[-12,0],[-4,-3],[-4,-7],[-2,-19],[-1,-8],[-6,-2],[-20,5],[-83,57],[-2,3],[-2,2],[-1,2],[0,12],[5,7],[-32,21],[-16,4],[-65,15],[-10,0],[-10,-6],[-2,-2],[-2,-29],[0,-2],[-2,2],[-85,65],[-4,4],[-20,19],[-7,8],[-4,8],[-20,37],[-7,20],[-9,9],[-25,15],[-13,5],[-41,3],[-25,-9],[-1,-9],[20,-21],[4,-10],[-1,-6],[-10,-2],[-24,10],[-6,2],[-6,6],[-100,80],[-41,33],[-8,8],[-7,7],[-23,24],[-11,11],[-5,8],[-6,10],[0,2],[0,8],[1,7],[2,18],[24,21],[9,8],[6,7],[11,25],[0,13],[-6,5],[-61,16],[-19,-4],[-42,9],[-6,3],[-5,3],[-17,31],[-11,20],[-1,1],[1,12],[1,9],[-43,45],[-39,20],[-9,-2],[-5,-3],[-35,-34],[-9,-6],[-9,-4],[-23,7],[-63,52],[-3,3],[-4,6],[2,8],[4,4],[12,4],[8,1],[35,5],[4,2],[4,2],[1,8],[-3,7],[-3,5],[-42,42],[-4,3],[-39,46],[-2,2],[-6,7],[-12,21],[4,12],[8,4],[26,8],[3,2],[22,16],[4,8],[1,11],[-7,11],[-11,16],[-1,2],[-15,23],[-11,8],[-31,20],[-16,3],[-28,-6],[-15,-3],[-7,0],[-14,9],[-18,28],[-7,13],[-23,16],[-6,4],[-5,4],[-125,3],[-2,-1],[-37,-21],[-8,-3],[-11,1],[-11,7],[-86,58],[-29,20],[-17,24],[-10,25],[-46,4],[-32,2],[-18,1],[-27,-4],[-54,-7],[-7,-1],[-8,-6],[-24,-21],[-14,-13],[-56,-23],[-20,-10]],[[79002,49372],[-5,1],[-7,0],[-67,5],[-11,3],[-10,2],[-1,0],[-52,29],[-14,6],[-3,2],[-4,2],[-70,32],[-7,7],[-5,10],[-2,2],[-82,67],[-6,2],[-9,3],[-2,1],[-37,23],[-35,21],[-50,36],[-2,2],[-26,32],[-20,24],[-2,2],[-17,48],[-2,4],[3,14],[1,7],[9,27],[4,28],[-6,5],[-14,12],[-5,5],[-4,7],[-24,46],[0,7],[4,4],[25,4],[15,12],[10,8],[0,18],[-35,103],[75,197],[4,9],[29,69],[2,3],[18,43],[59,141],[12,29],[17,40],[13,30],[15,36],[80,188],[26,62],[12,26],[139,328],[26,60],[34,78],[19,49],[19,49],[23,57],[71,168],[22,50],[17,39],[12,27],[11,28],[56,128],[41,93],[28,62],[16,30],[6,26],[11,27],[105,245],[2,4],[31,73],[13,30],[19,44],[38,88],[13,30],[161,378],[37,85],[10,23],[51,118],[62,145],[71,149],[16,37],[14,49],[22,53],[27,60],[9,21],[9,21],[16,38],[9,20],[15,34],[23,54],[22,51],[56,125],[20,44],[208,480],[24,55],[85,198],[2,6]],[[85280,57908],[34,-105],[26,-31],[3,-1],[4,-3],[11,-6],[49,-7],[1,0],[34,14],[18,7],[15,9],[31,20],[20,3],[25,-3],[11,-13],[1,-11],[-4,-16],[-7,-29],[1,-30],[6,-7],[14,-17],[12,-13],[54,-51],[31,-19],[41,-26],[20,-13],[11,-4],[8,-3],[17,-6],[60,-8],[37,3],[18,1],[21,-6],[10,-10],[12,-12],[5,-6],[5,-11],[-2,-9],[-2,-13],[-8,-10],[-10,-13],[-49,-18],[-75,7],[-31,-17],[14,-35],[49,-16],[49,-6],[50,20],[16,-4],[9,-8],[2,-3],[21,-27],[17,-32],[3,-17],[-5,-18],[-5,-19],[-8,-11],[-13,-17],[-22,-18],[-15,-12],[-1,-6],[-1,-12],[-1,-15],[13,-15],[1,0],[16,-10],[1,0],[26,3],[3,1],[3,2],[9,6],[10,8],[2,8],[13,59],[4,19],[0,2],[13,10],[9,8],[1,1],[17,3],[4,-1],[19,-2],[8,-1],[28,-20],[12,-15],[17,-22],[12,-15],[19,-24],[7,-2],[8,-3],[14,-11],[12,-9],[8,-2],[27,-7],[8,-2],[6,-1],[50,-6],[3,-4],[4,-6],[13,-18],[0,-3],[0,-6],[-1,-18],[-29,-18],[-24,-8],[-46,-7],[-23,3],[-2,0],[-21,-8],[-2,-2],[-9,-5],[-10,-7],[-8,-10],[-2,-3],[-7,-9],[-5,-10],[-2,-19],[-1,-7],[18,-26],[21,-11],[29,-9],[35,-6],[31,-4],[31,-4],[26,-11],[6,-40],[-5,-28],[-16,-41],[-25,-24],[-34,-15],[-23,-17],[-6,-28],[9,-28],[35,-44],[0,-26],[-25,-33],[0,-38],[15,-25],[1,-24],[0,-11],[-16,-31],[-15,-32],[3,-7],[-24,-35],[-2,-3],[-2,-4],[-10,-23],[-4,-9],[-7,-40],[-1,-5],[-2,-44],[-9,-38],[-3,-9],[-6,-25],[-4,-15],[-4,-8],[-22,-13],[-5,-1],[-17,-5],[-5,-1],[-5,0],[-3,0],[-27,1],[-16,12],[-49,35],[-5,1],[-13,33],[0,22],[-2,26],[-21,11],[-27,-8],[-21,-22],[-4,-27],[10,-44],[3,-14],[10,-45],[1,-4],[1,-36],[2,-53],[1,-9],[5,-17],[28,-80],[78,-85],[18,-21],[20,-13],[56,-31],[2,-1],[2,-2],[6,-7],[3,-4],[0,-3],[-7,-34],[-42,-57],[-12,-32],[1,-2],[1,-3],[-2,-33],[-1,-22],[-1,-5],[7,-15],[9,-20],[9,-11],[4,-4],[49,-31],[66,-9],[20,-11],[49,-66],[21,-6],[38,-21],[26,-17],[87,-66],[21,-25],[0,-6],[0,-29],[0,-3],[-14,-20],[-3,-2],[-29,-19],[-13,-1],[-14,-9],[-12,-9],[-7,-5],[-4,-24],[4,-11],[8,-9],[11,-10],[20,-11],[25,-3],[33,1],[8,3],[12,5],[22,-3],[7,-7],[9,-8],[3,-4],[4,-11],[-1,-8],[-1,-4],[-4,-25],[-17,-14],[-10,-8],[-4,-24],[20,-32],[2,-2],[24,-29],[7,-15],[5,-11],[2,-22],[-5,-27],[-23,-41],[-14,-22],[0,-2],[-3,-17],[4,-6],[3,-6],[8,-12],[14,-7],[64,-9],[11,-1],[22,-16],[7,-4],[34,-40],[8,-2],[20,-5],[15,10],[6,4],[4,18],[-25,51],[-3,8],[4,40],[8,10],[8,4],[6,3],[14,8],[47,-6],[52,-31],[24,-28],[4,-11],[-2,-33],[-38,-30],[-43,-28],[-8,-25],[0,-15],[15,-17],[20,-11],[13,-19],[-25,-10],[-36,17],[-30,13],[-27,1],[-15,-8],[-64,-31],[-32,-20],[-4,-5],[-6,-13],[-3,-6],[-39,-89],[-4,-22],[12,-18],[5,-4],[5,-5],[64,-61],[30,-9],[5,3],[3,2],[25,-1],[22,-3],[20,-11],[19,-1],[16,-1],[7,5],[9,7],[3,2],[5,10],[1,20],[4,43],[10,5],[11,6],[3,2],[17,-2],[9,-1],[6,-1],[51,-53],[26,-50],[19,-21],[8,-8],[23,-13],[2,-1],[37,-5],[4,0],[5,1],[33,10],[22,-3],[21,-24],[9,-34],[17,-49],[7,-17],[-3,-35],[-30,-150],[-25,-29],[-27,-46],[-23,-45],[-18,-37],[-5,-29],[28,-88],[15,-46],[9,-11],[4,-5],[44,-5],[18,13],[1,4],[8,64],[9,12],[29,18],[76,31],[11,3],[18,3],[4,1],[21,-3],[11,-13],[4,-4],[7,-8],[1,-8],[-2,-10],[-14,-65],[39,-81],[23,-33],[15,-8],[25,-3],[14,11],[11,7],[25,49],[25,13],[13,-1],[11,0],[20,-2],[25,-21],[33,-29],[141,-142],[23,-50],[17,-40],[1,-1],[-3,-4],[-15,-21],[-4,-5],[-46,-24],[-9,-15],[-12,-51],[3,-5],[58,-93],[3,-6],[11,-12],[11,-10],[59,-5],[11,-12],[-14,-50],[-2,-7],[-3,-12],[-43,-60],[-25,-18],[-19,-5],[-8,-3],[-14,-8],[-8,-5],[-17,-25],[1,-30],[10,-27],[3,-8],[9,-12],[2,-3],[12,-15],[4,-2],[5,-2],[17,-27],[-3,-21],[-9,-7],[-1,-1],[-5,-4],[-7,-2],[-23,4],[-33,6],[-4,0],[-14,3],[-29,-16],[-3,-16],[4,-14],[11,-12],[16,-8],[2,0],[0,-1],[11,-12],[10,-12],[4,-11],[0,-23],[1,-27],[7,-14],[8,-10],[16,0],[23,-3],[23,4],[24,6],[22,-15],[-23,-32],[-29,-9],[-25,-9],[-15,-11],[-1,-4],[-16,-17],[-43,-25],[-7,-4],[-7,-7],[-3,-16],[15,-21],[24,-9],[53,-2],[17,-1],[10,-13],[-1,-13],[0,-9],[-1,-5],[-13,-20],[-14,-9],[-27,-7],[-28,3],[-21,9],[-10,10],[-31,31],[-15,3],[-8,2],[-7,1],[-15,-9],[1,-30],[14,-18],[19,-26],[1,-1],[30,-26],[31,-21],[24,-8],[50,-7],[49,5],[44,13],[10,5],[21,10],[13,1],[25,-6],[2,-3],[14,-16],[-1,-19],[-1,-5],[-48,-89],[-7,-5],[-7,-4],[-14,-9],[-14,-4],[-92,1],[-52,-4],[-91,-7],[-17,-6],[-11,-8],[-11,-8],[-5,-30],[7,-9],[8,-11],[3,-4],[17,-10],[49,-10],[49,2],[19,6],[22,7],[5,2],[15,5],[31,-5],[19,-8],[46,-19],[29,-25],[5,-30],[-11,-28],[-13,-18],[-19,-30],[24,-19],[24,6],[28,48],[14,31],[29,9],[14,-9],[10,-10],[8,-7],[-4,-20],[-4,-20],[-4,-14],[-12,-44],[-26,-59],[-1,-2],[14,-22],[25,-6],[24,3],[34,19],[20,19],[-6,-34],[-29,-28],[-28,-13],[-45,-6],[-43,7],[-40,-10],[-14,-9],[-8,-11],[-16,-23],[-2,-3],[-1,-2],[-2,-11],[-1,-9],[5,-8],[12,-17],[1,-1],[11,-10],[10,-1],[3,0],[28,-2],[40,14],[50,10],[94,9],[32,-4],[9,-1],[2,-3],[9,-10],[10,-12],[-1,-41],[-6,-22],[-10,-63],[-13,-20],[-40,-30],[-90,-19],[-18,-11],[-4,-8],[-2,-28],[-1,-1],[2,-2],[38,-42],[2,-8],[-3,-17],[0,-3],[-2,-7],[-22,-16],[-13,-4],[-14,2],[-17,2],[-1,1],[-25,16],[-22,3],[-6,-4],[-8,-5],[-9,-15],[3,-27],[12,-78],[0,-4],[-6,-33],[13,-16],[34,-24],[39,-8],[28,2],[23,4],[26,-8],[2,-26],[-19,-14],[-35,4],[-21,5],[-36,1],[-48,6],[-27,-4],[-10,-7],[-16,-17],[-4,-21],[15,-21],[52,-32],[18,-21],[14,-16],[10,-12],[4,-14],[-5,-27],[-11,-12],[-11,-7],[-20,-3],[-61,8],[-1,0],[-2,-1],[-20,-12],[-5,-10],[-1,-22],[-15,-12],[-35,-1],[-22,6],[-22,1],[-12,-22],[33,-15],[17,-16],[-2,-31],[0,-4],[-4,-6],[-8,-12],[-5,-7],[-7,-5],[-15,-11],[-21,-24],[0,-2],[-2,-28],[13,-15],[0,-1],[16,-2],[8,1],[41,6],[25,-3],[21,-8],[25,-23],[15,-54],[19,-21],[2,-3],[4,-1],[22,-5],[2,-1],[2,1],[34,6],[3,-2],[35,-12],[9,-26],[4,-25],[22,-16],[26,10],[-4,39],[0,9],[-9,23],[6,23],[27,4],[19,-27],[8,-25],[6,-26],[25,-40],[22,-34],[4,-6],[-2,-21],[0,-1],[-3,-21],[-13,-23],[-5,-27],[-1,-3],[1,-1],[24,-24],[15,-5],[15,-6],[5,-2],[30,-28],[34,-53],[3,-26],[-7,-40],[-35,-69],[-27,-81],[-3,-33],[4,-14],[-1,-3],[0,-2],[10,-12],[19,-22],[54,-35],[47,-22],[11,-13],[4,-9],[-2,-13],[-1,-7],[-3,-17],[-3,-2],[-20,-18],[-22,-13],[-36,-5],[-23,5],[-20,14],[-12,39],[-14,30],[-43,-2],[-16,-21],[3,-23],[10,-27],[8,-24],[10,-21],[27,-19],[27,-3],[29,7],[23,8],[29,-1],[10,-4],[20,-8],[63,-45],[17,-12],[10,-7],[6,-8],[3,-5],[9,-12],[-5,-29],[-34,-31],[-125,-90],[-31,-19],[-36,-21],[-4,-3],[-3,0],[-18,-5],[-29,-9],[-125,-36],[-3,-3],[0,-4],[14,-24],[38,-13],[40,-5],[51,-5],[31,-1],[21,-12],[8,-32],[-16,-14],[-27,-22],[-26,-37],[-24,-23],[-19,-10],[-24,-4],[-33,18],[-13,21],[-13,37],[-8,25],[-19,34],[-28,1],[-17,-7],[-42,-31],[-4,-3],[1,1],[-10,-9],[-8,-30],[2,-21],[-5,-34],[1,-22],[0,-17],[11,-22],[16,-21],[24,-16],[21,-10],[27,-22],[28,-28],[6,-25],[-4,-24],[-9,-25],[22,-43],[30,-22],[25,-1],[37,-17],[9,-27],[4,-29],[9,-20],[14,-17],[24,-23],[44,-32],[45,-31],[49,-39],[1,-1],[21,-18],[31,-31],[38,-38],[26,-41],[13,-21],[15,-24],[24,-38],[17,-25]],[[55788,51746],[-9,-54],[2,-30],[2,-5],[7,-18],[-1,-1],[-36,-121],[5,-51],[-29,-72],[0,-94],[-31,-198],[-42,-81],[-80,-45],[-2,-114],[-20,-64],[-3,-37],[13,-43],[6,-34],[7,-38]],[[55577,50646],[-10,-4],[-93,-40],[-96,-41],[-63,-27],[-1,0],[-42,-19],[-238,-102],[-355,-151],[-93,-40],[-53,-23],[-208,-89],[-200,-86],[-307,-132],[-257,-122],[0,-1],[-79,-37],[-90,-44],[-28,-13],[-33,-16],[-355,-169],[-72,-35],[-23,-11],[-155,-77],[-112,-55],[-238,-118],[-264,-130],[-39,-20],[-166,-84],[-32,-16],[-117,-55],[-70,-32],[-92,-46],[-195,-97],[-198,-98],[-186,-93],[-185,-91],[-47,-24],[-4,-2],[-273,-136],[-101,-51],[-46,-23],[-38,-19],[-27,-14],[-92,-46],[-21,-11],[-65,-32],[-34,-17],[-75,-38],[-8,-3],[-56,-30],[-23,-12]],[[49922,47974],[-33,55],[-27,45],[-3,6],[-9,13],[-17,26],[-48,73],[-28,41],[-2,3],[-34,51],[-19,28],[-19,29],[-14,21],[-16,26],[-2,3],[-32,48],[-22,35],[-17,25],[-13,26],[-39,70],[-30,54],[-38,68],[-63,112],[0,1],[-12,22],[-32,61],[-37,69],[-39,68],[-59,110],[-17,29],[-45,82],[-51,93],[-19,35],[-33,57],[-85,153],[-20,37],[-17,34],[-56,101],[-23,42],[-76,135],[-35,64],[-21,38],[0,2],[-14,24],[-36,64],[-32,58],[-75,135],[-32,57],[-37,69],[-41,74],[-26,46],[-39,69],[-33,63],[-2,2],[-29,55],[-22,39],[-65,117],[-14,25],[-33,61],[-14,26],[-32,57],[-28,51],[-45,83],[-15,27],[-40,70],[-31,55],[-12,23],[-26,48],[-26,47],[-20,36],[-21,31],[-49,90],[-10,19],[-18,33],[-23,41],[-24,43],[-23,41],[-14,25],[-23,41],[-14,27],[-5,8],[-18,33],[-1,2],[-15,28],[-60,108],[-13,25],[-37,65],[-16,28],[-26,46],[-16,28],[-53,99],[-10,19],[-60,107],[-61,110],[-23,44],[-11,20],[-11,19],[-26,48],[-33,60],[-15,27],[-25,44],[-18,32],[-26,48],[-13,22],[-34,62],[-34,63],[-121,218],[-44,78],[-25,45],[-22,40],[-80,145],[-18,32],[-87,159],[-1,0],[-76,138],[-27,49],[-15,26],[-57,103],[-38,72],[-38,67],[-20,35],[-34,61],[-36,64],[-60,108],[-11,20],[-28,51],[-11,21],[-11,20],[-16,30],[-11,20]],[[31080,53687],[1,-30],[0,-63],[0,-7],[0,-5],[0,-279],[0,-52],[0,-44],[0,-160],[0,-64],[-1,-323],[-1,-20],[-12,2],[-64,1],[-78,0],[-247,2],[-123,1],[-44,-95],[-49,-107],[-33,-74],[-18,-39],[-36,-79],[-71,-157],[-79,-173],[-66,-144],[-58,-126],[-23,-52],[-1,-2],[-24,-52],[-21,-29],[-66,-143],[-99,-212],[-132,-291],[-50,-110],[-102,-214],[-1,0],[-7,-20],[0,-1],[-96,-189],[-44,-81]],[[29435,50256],[-8,38],[3,21],[3,22],[0,67],[-9,9],[-16,16],[-5,5],[-9,5],[-19,10],[-13,6],[-4,1],[-21,4],[-8,2],[-4,-1],[-13,-3],[-4,0],[-16,2],[-1,0],[-9,4],[-1,1],[-28,31],[-1,0],[-1,3],[-36,82],[-6,13],[-3,7],[0,1],[-63,169],[-13,33],[0,20],[-16,37],[-5,9],[-4,6],[-21,25],[-3,5],[-16,10],[-14,2],[-206,30],[-4,0],[-29,-3],[-3,-1],[-5,0],[-25,-12],[-34,-17],[-13,2],[-16,25],[6,11],[13,59],[30,61],[22,24],[8,12],[1,2],[1,2],[31,38],[1,1],[2,2],[14,15],[1,1],[2,2],[3,3],[1,0],[12,9],[-40,42],[-21,21],[-4,3],[-3,2],[-17,13],[-7,3],[-40,25],[-46,5],[-1,0],[-1,0],[-33,-10],[-9,-3],[-6,-5],[-9,-7],[-4,-4],[-10,-26],[-7,-16],[-12,-20],[-3,-4],[-2,-3],[-34,-49],[-24,-21],[-38,-25],[-32,-13],[-58,-24],[-14,-9],[-9,-6],[-15,-10],[-25,-32],[-2,-15],[13,-49],[0,-2],[-40,8],[-24,23],[-3,23],[19,36],[4,26],[-8,38],[0,1],[-2,2],[-48,56],[-51,72],[-14,40],[-2,24],[-27,33],[0,1],[-23,8],[-1,0],[-46,2],[-49,10],[-33,7],[-41,8],[-87,30],[-5,5],[-3,5],[-4,4],[-9,0],[-13,1],[-86,6],[-29,11],[-4,1],[-12,5],[-44,86]],[[27666,51517],[-12,25],[-4,6],[-18,28],[-15,18],[-24,28],[-2,2],[-22,7],[-4,2],[-108,13],[-10,-7],[-20,5],[-30,34],[-11,12],[-6,6],[-9,30],[7,45],[0,4],[-12,13],[-18,1],[-16,0],[-13,1],[-33,-14],[-40,-27],[-1,-1],[-6,-1],[-45,-6],[-31,-19],[-31,-38],[-2,-2],[-23,-15],[-31,-6],[-6,4],[-18,12],[-45,29],[-34,21],[-6,4],[-2,2],[-19,21],[-5,15],[-11,13],[-44,25],[-17,2],[-7,0],[-23,3],[-49,-4],[-8,-7],[-23,-19],[-9,-6],[-42,-26],[-8,-5],[-45,4],[-15,2],[-4,1],[-50,34],[-5,3],[-1,1],[-9,9],[-11,17],[-2,2],[-7,10],[-32,79],[-4,26],[-1,12],[-26,45],[-20,37],[-3,5],[-1,10],[-1,14],[-2,22],[-1,10],[-88,123],[-35,34],[-56,22],[-34,4],[-10,-3],[-29,-8],[-2,-1],[-13,-9],[-1,-5],[0,-2],[-6,-21],[24,-36],[10,-14],[3,-13],[5,-20],[9,-64],[-44,-20],[-4,1],[-38,15],[-57,58],[-16,16],[-5,4],[-3,1],[-18,1],[-6,1],[-71,-35],[-13,-6],[-28,-5],[-27,2],[-67,18],[-38,11],[-36,10],[-48,20],[-16,7],[-28,14],[-70,60],[-12,13],[-5,50],[-1,6],[0,1],[-8,9],[-30,4],[-40,6],[-24,0],[-9,9],[-5,59],[-6,59],[-8,31],[-4,13],[-3,13],[-64,103],[6,20],[-1,8],[-1,8],[-3,19],[-32,85],[-16,19],[-22,26],[-3,3],[-8,5],[-20,10],[-15,13],[0,5],[0,8],[-18,19],[-1,2],[-10,9],[-4,3],[1,2],[18,50],[2,32],[-13,12],[-6,6],[-11,11],[-13,6],[-57,28],[-23,5],[-18,20],[-6,9],[-1,35],[2,11],[8,29],[4,15],[1,5],[-4,11],[-5,15],[-1,1],[-18,10],[-6,3],[-46,65],[-50,80],[-13,14],[-1,1],[-23,25],[-20,0],[-59,19],[-12,4],[-14,40],[-13,4],[-36,-8],[-27,2],[-31,2],[-36,3],[-95,-1],[-4,0],[-2,-1],[-16,-3],[-5,-4],[-12,-8],[-1,-1],[-2,-4],[-13,-50],[-4,-7],[-11,-23],[-9,-17],[-97,-130],[-16,-21],[-10,-7],[-21,-13],[-5,-1],[-50,-5],[-35,1],[-19,1],[-153,78],[0,-1],[-14,-4],[-3,5],[-22,28],[-4,5],[0,39],[-1,36],[-3,3],[-1,2],[-6,56],[1,5],[4,26],[-14,51],[-17,46],[-17,25],[-28,29],[-85,87],[-43,28],[-62,68],[-26,14],[-63,36],[-10,1],[-27,3],[-10,-2],[-11,-2],[-5,-4],[-16,-12],[-17,-12],[-18,-33],[-5,-8],[-5,-4],[-10,-6],[-2,0],[-28,0],[-13,7],[-5,2],[-5,2],[-73,46],[-11,7],[-7,0],[-42,43],[-10,20],[0,1],[1,6],[8,58],[0,2],[1,2],[6,10],[7,10],[76,69],[2,2],[19,12],[19,10],[39,21],[1,1],[71,45],[5,3],[11,8],[7,4],[4,5],[21,20],[2,1],[2,3],[16,22],[3,5],[4,26],[-3,27],[-7,21],[-9,8],[-14,11],[-17,14],[-151,16],[-55,17],[-54,29],[-145,59],[-29,1],[-9,1],[-13,0],[-27,-13],[-50,-25],[-35,-8],[-54,8]],[[79002,49372],[-3,0],[-19,-5],[-91,-28],[-229,-62],[-44,-11],[-98,-27],[-126,-34],[-99,-27],[-31,-9],[-105,-28],[-128,-35],[-85,-23],[-172,-48],[-92,-25],[-52,-14],[-152,-41],[-48,-14],[-44,-12],[-7,-1],[-252,-67],[-29,-7],[-99,-26],[-96,-26],[-29,-8],[-26,-7],[-100,-23],[-32,-8],[-52,-14],[-110,-30],[-63,-20],[-22,-6],[-156,-42],[-23,-7],[-39,-10],[-21,-6],[-164,-44],[-202,-54],[-189,-51],[-38,-9]],[[75635,48463],[-65,44],[-14,10],[-56,39],[-77,54],[-63,46],[-4,3],[-56,39],[-122,87],[-79,57],[-39,28],[-29,20],[-82,59],[-85,60],[-33,23],[-21,15],[-63,45],[-54,39],[-45,31],[-25,18],[-139,100],[-141,100],[-36,26],[-238,170],[-136,96],[-26,68],[-106,263],[-5,13],[-22,55],[-11,27],[-51,126],[-11,28],[-12,31],[-9,22],[-16,38],[-3,9],[-35,88],[-53,131],[-24,60],[-24,59],[-9,22],[-9,23],[-33,80],[-24,60],[-31,77],[-45,111],[-30,74],[-100,244],[-63,158],[-37,86],[-30,69],[-22,54],[-49,118],[-12,32],[-69,173],[-11,28],[-14,34],[-12,30],[-13,33],[-48,115],[-14,33],[-26,63],[-39,92],[-10,23],[-37,90],[-14,32],[-29,71],[-75,178]],[[43899,53586],[65,-59],[114,-101],[73,-65],[35,-31],[18,-15],[53,-47],[68,-59],[20,-18],[25,-22],[34,-31],[-40,-36],[-50,-41],[-60,-44],[19,-31],[-23,-5],[-25,-19],[-9,-29],[16,-22],[11,-24],[-19,-20],[-11,-29],[43,-68],[15,13],[31,-27],[29,-25],[-27,-26],[-26,-22],[-41,-37],[-9,-8],[-2,-1],[-11,9],[-1,2],[-31,28],[-17,-15],[-2,-1],[-25,-11],[-11,-5],[-36,-31],[-19,-16],[-120,-101],[-17,-14],[-18,-15],[-76,-65],[-30,-25],[-30,-25],[-99,-84],[-318,-270],[-36,-30],[-42,-35],[-59,-50],[-30,-26],[-67,-55],[-18,-16],[-20,-17],[-26,-22],[-19,-15],[0,-1],[-19,-16],[-25,-20],[-103,-87],[-3,-3],[-105,-93],[-18,-15],[-69,-59],[-26,-22],[-28,-25],[-37,-32],[-52,-43],[-32,-28],[-12,11],[-133,133],[-17,-17],[-25,-21],[-3,-2],[-89,-72],[-20,-16],[-128,98],[-68,-45],[16,-54],[8,-28],[24,-80],[30,-55],[21,-41],[11,-20],[-3,-16],[-1,-5],[-26,-98],[0,-1],[-17,-66],[-1,-4],[-30,-2],[-9,-1],[-22,1],[-6,0],[-19,-10],[-18,-14],[-6,-10],[4,-13],[74,-73],[21,-11],[12,-1],[9,7],[2,3],[1,-3],[12,-37],[-1,-3],[-10,-20],[-12,-26],[-4,-12],[-13,-38],[-1,-3],[0,-28],[-1,-23],[0,-2],[-3,-14],[-10,-19],[-44,-75],[-7,-2],[-6,-1],[-5,-2],[-8,-3],[-56,41],[-11,-8],[-3,-2],[-20,-22],[-5,-29],[-2,-11],[-6,4],[-3,4],[-12,11],[-12,-4],[-2,0],[-19,-52],[-2,-6],[-1,-7],[-1,-21],[-1,-15],[16,-18],[42,-18],[5,-5],[31,-24],[-1,-8],[-2,-4],[-19,-31],[-4,-9],[-11,-7],[-8,1],[-17,2],[-12,4],[-9,2],[6,-20],[44,-65],[12,-10],[30,-25],[4,-4],[5,-5],[-1,-14],[-4,-78],[0,-1],[-3,-97],[0,-5],[0,-3],[22,-16],[52,-20],[41,-37],[17,-16],[21,-21],[23,-24],[17,-16],[1,-8],[1,0],[-1,-3],[-10,-36]],[[42130,49698],[-4,-7],[-1,1],[-140,-69],[-1,-1],[-4,0],[-1,0],[-21,0],[-17,10],[-17,15],[1,8],[5,11],[0,17],[-7,9],[-11,9],[-14,7],[-17,7],[-43,8],[-8,0],[-36,-11],[-2,-1],[-7,-18],[-1,-3],[-6,-9],[-4,-3],[-41,1],[-4,0],[-23,1],[-31,13],[-40,17],[-7,9],[-99,46],[-76,36],[-9,4],[-58,-16],[-24,3],[-80,9],[-10,1],[-7,1],[-29,17],[-26,16],[-24,20],[-36,35],[-24,25],[-5,0],[-48,-12],[-7,-2],[-14,12],[-11,9],[-4,2],[-66,-15],[-73,3],[-49,3],[-15,1],[-26,7],[-3,2],[-4,6],[-8,7],[-31,-23],[-17,-2],[-26,0],[-5,0],[-33,9],[-5,3],[0,4],[11,2],[11,3],[-1,6],[-2,3],[-6,3],[-5,3],[-17,4],[-27,8],[-23,7],[-8,2],[-29,6],[-24,5],[-31,3],[-13,9],[-36,23],[-49,43],[-4,4],[-4,3],[-15,13],[-25,21],[-18,15],[-16,10],[-13,9],[-17,8],[-8,4],[-81,35],[-2,1],[-3,1],[-10,1],[-18,3],[-15,1],[-1,4],[-15,20],[-4,5],[-3,5],[-164,65],[-2,0],[-13,5],[-17,4]],[[39959,50297],[-15,-20],[-7,-2],[-76,24],[-1,0],[-19,1],[-55,4],[-49,3],[-30,2],[-46,3],[-3,-4],[-4,-7],[-4,-2],[-58,10],[-12,2],[-97,16],[-26,8],[-12,3],[-9,7],[-11,8],[-48,46],[-113,-50],[-25,-12],[-3,-1],[-4,-2],[-10,1],[-16,5],[-1,1],[-12,4],[-26,9],[-7,2],[-1,1],[-41,30],[-56,46],[-18,20],[-17,34],[-5,30],[-1,2],[-21,45],[-5,11],[-4,7],[-2,3],[-29,4],[-30,-9],[-3,-1],[-1,-1],[-16,-23],[-6,1],[-44,20],[-25,17],[-86,111],[-6,22],[0,17],[-38,18],[-26,8],[-8,2],[-31,9],[-18,-3],[-6,-1],[-1,0],[-21,-5],[-26,0],[-15,0],[-5,0],[-55,10],[-4,1],[-10,3],[-52,24],[-26,11],[11,10],[0,5],[-4,11],[-4,4],[-1,0],[-37,26],[-2,1],[-34,23],[-28,19],[-7,2],[-2,0],[-32,2],[-20,1],[-4,-3],[-3,-2],[-50,-6],[-4,-1],[-12,2],[-10,8],[-92,79],[-7,6],[-12,17],[-2,-8],[-4,-4],[-1,-2],[-46,-3],[-15,-1],[-59,8],[-12,2],[-16,5],[-5,2],[-71,36],[-6,4],[-29,31],[-50,51],[-2,5],[-11,9],[-15,5],[-30,2],[-23,2],[-30,9],[-18,7],[-69,49],[-7,7],[-35,58],[-94,49],[-5,0],[-31,27],[-67,73],[-77,135],[-2,7],[1,7],[8,12],[24,21],[4,7],[0,2],[0,3],[-52,33],[-13,8],[-20,17],[-27,31],[-9,14],[-5,16],[-14,30],[-10,18],[-36,52],[-46,67],[-4,6],[-1,0],[-6,6],[-31,-4],[-33,7],[-1,1],[-8,4],[-9,10],[-40,64],[-4,7],[1,57],[-1,1],[0,4],[-1,3],[-68,88],[-23,14],[-6,3],[-2,-1],[-20,28],[1,7],[5,20],[31,48],[3,5],[-1,6],[-6,6],[-3,2],[-28,16],[-9,2],[-12,2],[-45,19],[-2,1],[-7,8],[-3,6],[-2,63],[0,32],[3,11],[1,2],[0,9],[-6,7],[-11,5],[-11,5],[-17,2],[-3,1],[-21,-2],[-2,-1],[-23,-6],[5,13],[14,35],[0,2],[-1,4],[-25,23],[-2,2],[-12,4],[-26,6],[-9,4],[-4,2],[-20,19],[-31,30],[-2,2],[-37,29],[-31,23],[-4,3],[-8,1],[-25,1],[-29,2],[-4,0],[-8,5],[-63,52],[-9,12],[-2,17],[0,7],[11,35],[4,9],[8,15],[0,1],[-1,5],[-3,6],[-36,77],[-8,16],[-4,8],[-9,5],[-44,26],[-7,4],[-21,8],[-3,2],[-23,-1],[-54,-21],[-1,-1],[-1,3],[-13,20],[-6,11],[-13,10],[-7,1],[-1,0],[-34,6],[-1,0],[-61,11],[1,70],[3,66],[-2,50],[-1,31],[4,60],[3,32],[5,27],[3,191],[1,79]],[[49922,47974],[-48,-29],[-50,-31],[-33,-20],[-29,-18],[-21,-10],[-124,-59],[-67,-32],[-10,-4],[-78,-37],[-29,-14],[-26,-13],[-29,-14],[-94,-45],[-131,-62],[-81,-39],[-5,-2],[-77,-37],[-148,-70],[-21,-10],[-68,-32],[-88,-44],[-21,-10],[-26,-13],[-25,-13],[-79,-39],[-87,-44],[-82,-41],[-47,-23],[-97,-49],[-98,-49],[-31,-15],[-13,-7],[-16,-7],[-19,-11],[-92,-45],[-187,-93],[-71,-35],[-28,-14],[-50,-25],[-112,-56],[-44,-22],[-70,-35],[-64,-32],[-51,-26],[-35,-17],[-262,-130],[-49,-25],[-44,-22],[-87,-43],[-49,-26],[-53,-26],[-53,-26],[-55,-28],[-33,-17],[-84,-41],[-151,-73],[-20,-9],[-73,113],[-37,-15],[-56,-22],[-5,-2],[-26,-11],[-55,-21],[23,-41],[12,-33],[18,-38],[15,-26],[-72,-35],[-372,-187],[-29,-15],[-1,0],[-20,-10],[-38,-19],[-43,-21],[-51,-25],[-70,-35],[-75,-38],[-105,-53],[-134,-67],[-94,-47],[-118,-59],[-64,-32],[-40,-20],[-31,-15],[-2,-1],[-41,-21],[-60,-30],[-105,-54],[-45,-22],[-52,-27],[-107,-52],[-19,-10],[-36,-18],[-44,-22]],[[44228,45134],[-11,14],[-1,1],[3,4],[13,15],[18,13],[23,16],[16,11],[14,9],[0,1],[1,0],[55,-7],[43,28],[3,19],[-9,22],[-1,1],[-2,5],[-12,24],[-1,1],[-18,20],[-40,5],[-5,1],[-19,3],[-11,16],[0,43],[0,4],[0,10],[1,11],[21,14],[22,3],[11,7],[6,21],[-1,2],[-5,8],[-29,46],[-8,2],[-35,11],[-22,2],[-3,4],[-4,4],[-1,1],[1,5],[2,11],[47,39],[14,9],[81,12],[21,14],[3,16],[-10,12],[-12,13],[-12,11],[-38,36],[-5,5],[-28,6],[-29,-2],[-20,-8],[-18,2],[-7,0],[-11,13],[4,26],[15,10],[55,31],[6,0],[10,-11],[1,-1],[29,-10],[7,-3],[60,15],[21,17],[2,13],[-6,11],[-6,10],[-25,10],[-25,-2],[-13,15],[-7,37],[-2,2],[-17,22],[-38,1],[-30,-13],[-26,0],[-81,26],[-117,46],[-111,62],[-37,26],[-8,9],[0,3],[1,5],[-3,2],[-46,28],[-24,8],[-2,1],[-10,3],[-8,23],[-1,27],[-1,52],[-3,10],[-27,77],[-5,16],[-6,18],[-9,27],[-6,6],[-3,0],[-12,2],[-7,-5],[-25,5],[-18,29],[-2,4],[-16,-1],[-39,10],[-13,4],[-16,25],[-7,10],[-33,53],[-6,9],[-4,9],[-14,-4],[-32,-33],[-1,-2],[-13,2],[-14,12],[-16,84],[2,13],[44,17],[-1,14],[-8,9],[-3,3],[-6,0],[-11,1],[-48,9],[-39,7],[-15,3],[-23,4],[33,29],[20,23],[17,20],[21,24],[5,30],[-7,60],[-11,19],[-12,20],[-12,20],[-39,37],[-5,11],[-8,50],[3,19],[11,7],[11,-3],[22,-6],[1,1],[25,26],[1,4],[4,23],[-25,77],[-8,9],[-1,2],[-20,-3],[-9,2],[-19,4],[-34,42],[2,13],[14,10],[14,-1],[17,0],[4,1],[17,7],[2,14],[-17,26],[0,1],[-9,14],[-18,24],[-3,1],[-11,9],[-37,28],[-7,5],[-22,14],[-29,20],[-2,4],[-15,27],[-40,74],[13,105],[-8,69],[-10,6],[11,21],[14,12],[120,76],[13,7],[5,-1],[8,0],[37,-26],[27,-33],[9,-1],[9,5],[2,1],[8,13],[5,30],[-5,90],[5,14],[30,69],[1,1],[3,7],[2,16],[-10,12],[-2,0],[-25,2],[-21,1],[-11,15],[-46,65],[-17,37],[-6,50],[-8,61],[-7,28],[-3,14],[3,21],[20,45],[10,7],[17,-1],[9,0],[6,4],[1,1],[1,8],[-14,30],[-22,43],[-5,11],[-5,6],[-9,1],[-10,1],[-10,17],[-13,13],[-15,15],[-42,16],[-9,1],[-8,9],[-56,115],[2,11],[11,7],[9,-1],[35,-1],[18,11],[2,3],[22,18],[42,36],[3,4],[2,13],[-2,9],[-17,72],[-2,9],[-20,33],[-13,23],[-5,8],[-26,38],[-33,34],[-67,81],[0,38],[20,25],[16,11],[8,6],[1,5],[2,11],[-2,12],[-4,20],[-2,14],[-1,1],[-5,5],[-3,4],[-10,-7],[-18,-12],[-4,-2],[-12,1],[-113,73],[-19,19],[-8,71],[1,11],[4,1],[5,0],[4,0],[9,-14],[4,-6],[12,-4],[17,-3],[10,-2],[7,-2],[7,5],[1,3],[1,10],[-9,23],[-3,6],[-19,45],[-1,4],[-6,6],[-12,1],[-26,-3],[-7,-4],[-17,3],[-14,3],[-33,31],[-9,9],[19,80],[-14,15],[-26,17],[-17,5],[-29,8],[-2,0],[-9,7],[-5,0],[-7,1],[-79,-13],[-6,-4],[-1,-1],[-3,-2],[-5,-31],[-4,-26],[-13,16],[-37,10],[-10,3],[-21,6],[-13,-4],[-6,-3],[-55,-22],[-13,-5],[-3,0],[-38,1],[-64,2],[-8,0],[-17,1],[-11,12],[9,37],[-2,13],[-4,24],[-4,21],[-14,15],[-40,21],[-13,7],[-9,2],[-30,8],[-40,10],[-8,1],[-13,1],[-1,0],[-36,-6],[-1,-1],[-47,-12]],[[27666,51517],[7,-28],[-21,-24],[-11,-34],[-8,-21],[-12,-22],[7,-143],[-25,-9],[-28,-15],[-23,-11],[-21,-12],[-38,-3],[-50,8],[-29,1],[-26,-1],[-32,0],[-29,-4],[-28,-10],[-16,-14],[-23,-17],[-35,-20],[-34,-23],[-30,-20],[-21,-20],[-12,-23],[-18,-20],[-19,-16],[-24,-11],[-28,-11],[-27,-4],[-24,-11],[-26,-12],[-22,-14],[-14,-27],[-9,0],[-21,-1],[-33,3],[-33,-2],[-22,-4],[-31,-6],[-25,-3],[-28,-1],[-29,3],[-23,2],[-26,2],[-23,-2],[-26,-5],[-4,-141],[-8,-377],[-6,-254],[-3,-124],[-71,1],[-108,1],[-213,3],[-81,2],[-58,-2],[-7,-21],[-19,-67],[-26,-89],[-23,-81],[-51,-176],[-67,-264],[22,6],[26,12],[1,0],[-11,-49],[-5,-23],[-9,-30],[-21,-56],[-9,-23],[-20,-41],[-16,-19],[-16,-19],[-16,-22],[-11,-33],[-16,-21],[-24,-19],[-31,-15],[-20,-14],[-26,-18],[-30,-24],[-21,-18],[-16,-16],[-21,-20],[-29,-30],[-27,-25],[-20,-21],[-3,-27],[-6,-26],[-29,-4],[-19,-17],[-19,-19],[-21,-8],[-25,-2],[-21,-7],[-19,-13],[-15,-21],[-11,-20],[-20,-17],[-6,1],[-25,6],[-20,-13],[-18,-21],[-22,-12],[-16,-6],[-9,-3],[-21,-10],[-9,-2],[-14,-4],[-3,-267],[0,-3],[-1,-72],[0,-1],[0,-58],[-2,-215],[-1,-33],[0,-2],[-1,-188],[-2,-206],[-85,0],[-317,3],[-87,1],[-106,4],[-3,0],[-136,-5],[-11,0]],[[24363,47498],[-561,-1],[-441,-2],[3,-109],[3,-184],[-170,-3],[-100,1],[-1,-59],[-2,-79],[-462,15],[-2,0],[-120,4],[2,103],[1,47],[-12,-1],[-2,0],[-51,4],[-70,0],[-3,0],[-31,2],[-32,-2],[0,-1],[-3,-155],[-184,3],[2,141],[-17,-4],[-4,-1],[-39,-6],[-2,-1],[-138,-81],[-12,-11],[-41,-38],[-1,-1],[-36,-29],[-18,-14],[-5,-3],[-5,-10],[-13,-63],[-1,-1],[0,-1],[7,-23],[19,-17],[88,-2],[-2,-92],[-1,-58],[-182,3],[-2,0],[-54,-48],[-2,-2],[-20,-8],[-2,-1],[-1,0],[-38,-3],[-33,7],[-1,0],[-10,1],[-11,-8],[-8,-12],[-128,-39],[-11,-5],[-15,-2],[-1,0],[-49,9],[-37,6],[-61,18],[-1,0],[-43,-11],[-6,-2],[-1,1],[-1,1],[-65,46],[-5,0],[-1,1],[-4,4],[-7,7],[-7,8],[1,7],[1,10],[-11,13],[-3,3],[-6,7],[-15,5],[-8,3],[-12,13],[5,55],[0,5],[-47,31],[-50,33],[-5,0],[-24,-1],[-1,0],[-1,0],[-55,-11],[-99,-43],[-18,-9],[-5,-4],[-4,-3],[-8,-7],[-9,-7],[-21,-19],[-11,-10],[-8,-6],[-21,-3],[-19,4],[-13,7],[-20,21],[-1,1],[-4,11],[-20,-8],[-1,-1],[-13,-2],[-117,17],[-3,2],[-21,7],[-65,24],[-4,2],[2,20],[-3,2],[-5,4],[-11,3],[-1,1],[-1,0],[-34,-2]],[[20310,46912],[-46,3],[-15,4],[-17,-5],[-7,-2],[-79,-24],[-170,-51],[-27,-7],[-4,-2],[-18,-19],[0,-1],[-49,-28],[-8,0],[-10,6],[-130,-26],[-16,-3],[-16,-23],[-14,-18],[-72,-49],[-39,-26],[-18,-12],[-14,-9],[-41,-25],[-44,-26],[-9,-1],[-44,-4],[-26,-1],[-39,7],[-8,6],[-7,4],[-4,3],[-33,1],[-36,-1],[-2,0],[-50,-6],[-1,0],[-84,-12]],[[19113,46565],[1,2],[21,16],[5,3],[58,26],[10,8],[22,24],[3,3],[14,21],[20,56],[2,5],[149,111],[31,45],[1,1],[1,15],[-8,7],[-9,9],[-4,9],[-2,2],[-5,38],[3,137],[1,10],[1,5],[3,11],[4,6],[1,2],[1,0],[54,87],[1,3],[12,38],[5,18],[19,59],[0,1],[13,35],[2,7],[32,10],[2,1],[12,9],[22,31],[56,100],[-204,0],[-60,0],[-122,-2],[-156,-1],[-15,252],[0,184]],[[19110,47969],[1,30],[0,95],[0,159],[5,59],[2,253],[-1,290],[0,114],[0,366],[0,4],[0,197],[0,229],[6,132],[-1,39],[0,32],[1,26],[-1,25],[0,33],[1,26],[-1,36],[4,29],[-1,24],[-8,0],[-126,2],[-60,1],[2,150],[0,2],[-1,25],[0,25],[0,27],[-3,30],[5,54],[37,2],[25,2],[9,0],[0,19],[-1,139],[131,-3],[2,111],[2,200],[217,4],[1,164],[-60,0],[-1,0],[-48,0],[3,180],[-30,1],[-78,1],[0,31],[6,212],[0,40],[1,71],[0,1],[0,44],[1,37],[-1,28],[1,36],[0,2],[0,27],[0,29],[1,135],[0,142],[0,13],[0,9],[0,34],[0,28],[0,1],[0,73],[1,55],[0,34],[0,24],[0,61],[1,101],[0,150],[1,110],[0,35],[0,31],[0,158],[1,76],[0,44],[0,45],[0,1],[0,32],[-43,82],[-35,69],[-13,26],[-3,4],[-20,39],[-14,27],[-42,81]],[[19110,47969],[-125,-2],[-57,-1],[-185,-3],[-44,0],[-24,0],[-189,-2],[-320,-5],[-23,0],[-194,-3],[-56,1],[-36,0],[-48,0],[-37,1],[-145,0],[-114,1],[-4,0],[-22,0],[-49,0],[-71,3],[-83,-1],[-33,1],[-31,0],[-28,-1],[-28,-3],[-29,0],[-69,0],[-44,-1],[-43,2],[-251,0],[-260,1],[-29,1],[-40,-1],[-85,1],[-268,0],[-3,0],[-160,0],[-28,0],[-124,-1],[-260,-3],[-116,-3],[-285,2],[-32,1],[-22,0],[-32,0],[-199,3],[-33,0],[-118,1],[0,85],[1,41],[2,161],[1,95],[0,138],[-53,0],[-53,1],[-118,0],[-164,0],[-98,0],[-85,0],[-33,0],[-12,0],[-114,1],[-132,-3],[-39,1],[-28,0],[-3,0],[-63,0],[-180,-1],[-90,0],[-223,0],[-67,2],[-48,-1],[-30,-1],[-204,0],[-1,0],[-61,0],[-37,1],[-273,4],[-52,0],[-83,1],[-30,1],[-38,0],[-24,1],[-27,0],[-21,1],[-3,0],[-539,1],[-133,0],[-80,0],[-137,0],[-171,2],[-16,0],[-46,0],[-23,-1]],[[11006,48488],[58,36],[-55,123],[1,18],[-10,27],[-39,44],[-49,8],[-75,80],[6,64],[126,94],[3,109],[-13,30],[-24,3],[-30,-21],[-92,-28],[-33,3],[-103,42],[-17,5],[-95,76],[-32,35],[-5,13],[5,43],[29,35],[86,58],[12,17],[41,28],[86,55],[32,14],[18,2],[26,17],[11,31],[-7,24],[-21,23],[-17,2],[-12,7],[-30,29],[10,32],[-12,29],[9,66],[-77,139],[-77,83],[-51,55],[-58,49],[-9,7],[-60,6],[-75,54],[-50,55],[-18,19],[0,76],[13,92],[-31,102],[-27,52],[-19,34],[-11,24],[12,87],[-62,67],[-9,36],[22,91],[-17,48],[5,35],[21,30],[79,62],[17,21],[19,39],[14,80],[0,27],[-34,52],[-44,49],[-35,18],[-124,38],[-57,9],[-37,3],[-49,14],[-99,55],[-6,48],[-71,83],[-48,121],[-4,47],[11,60],[24,27],[48,38],[58,13],[72,37],[120,50],[43,15],[34,32],[-5,39],[-27,58],[-37,33],[-65,23],[-57,12],[-33,30],[-22,43],[-14,12],[-75,8],[-16,12],[-15,16],[12,63],[-9,39],[-10,21],[-25,30],[-9,10],[-10,18],[-19,33],[-65,71],[-44,7],[-38,-5],[-54,5],[-15,10],[-122,79],[-68,80],[-22,40],[-25,30],[-22,85],[1,15],[18,39],[7,51],[-32,94],[-32,41],[-10,24],[6,46],[14,34],[39,60],[28,32],[30,20],[99,52],[80,36],[7,78],[-1,20],[-3,56],[-43,59],[-47,55],[-31,49],[-30,29],[-29,15],[-16,2],[-35,-6],[-22,-9],[-49,-33],[-6,-23],[-23,-15],[-44,1],[-109,25],[-32,12],[-7,4],[-24,17],[-42,45],[-55,72],[-9,78],[4,20],[0,1],[1,0],[-16,77],[14,23]],[[39959,50297],[5,-30]],[[39964,50267],[-51,1],[-61,2],[-23,0],[-36,2],[-49,3],[-567,24],[-36,2],[-510,11],[-51,-6],[-50,-35],[-95,-70],[-230,-159],[-89,-65],[-152,-106],[-120,-87],[-121,-86],[-3,-2],[-206,-142],[-388,-273],[-23,-18],[-300,-211],[-58,-40],[-162,-119],[-59,-37],[-58,-39],[-68,-47],[-84,-58],[-166,-118],[-2,-1],[-256,-184],[-38,-27],[-81,-57],[-30,-21],[-153,-108],[-44,-30],[-178,-127],[-48,0],[-107,1],[-41,1],[-7,0],[-8,-65],[-1,-11],[-7,-80],[-34,-25],[-89,-64],[-156,-112],[-29,-35],[-1,-29],[3,-111],[-1,-110],[-2,-104],[-80,1],[-125,1],[2,70],[0,1],[4,151],[-38,-25],[-248,-173],[-9,-6],[-65,-46],[-27,-19],[-3,-2],[-102,-71],[-27,-19],[-47,-33],[-207,-145],[-33,-23],[-32,-23],[-110,-77],[-2,-1],[-73,-50]],[[33616,46806],[21,39],[8,29],[-75,114],[-3,5],[-20,23],[-4,2],[-10,6],[-6,-9],[-1,-1],[-1,-2],[-4,-14],[-19,-17],[-1,-1],[-56,-12],[-3,1],[-9,2],[-6,1],[-9,2],[-14,16],[-20,101],[0,5],[-19,94],[3,2],[5,4],[8,7],[2,11],[-4,4],[-11,12],[-6,7],[-6,4],[-6,3],[-7,4],[-45,14],[-20,6],[-2,1],[-10,2],[-1,0],[-4,-3],[-3,-2],[-15,-51],[-3,-20],[-8,-34],[-3,1],[-64,26],[-1,1],[-19,44],[-3,8],[-8,15],[-3,6],[-65,82],[0,1],[-15,16],[-12,7],[-31,16],[-54,-5],[-137,-15],[-36,-3],[-6,-5],[-7,-2],[-8,2],[-6,1],[-1,0],[-11,0],[-1,10],[0,48],[-1,58],[2,30],[-9,53],[-2,9],[-1,1],[-24,40],[-1,1],[-13,12],[-1,0],[-18,0],[-9,0],[-14,-9],[-1,-1],[-5,-33],[0,-1],[-1,-1],[-10,-7],[-12,3],[-2,1],[-9,2],[-23,29],[-8,65],[2,8],[7,5],[8,0],[16,1],[4,2],[7,5],[1,1],[38,56],[3,17],[-6,7],[-3,3],[-36,4],[-4,0],[-9,-4],[-8,-5],[-2,0],[-41,-28],[-1,10],[-1,20],[-47,22],[-20,10],[-9,5],[-55,21],[-4,0],[-30,3],[-14,16],[-1,1],[-49,64],[-2,2],[-23,76],[2,2],[27,32],[7,5],[32,21],[3,2],[9,19],[1,27],[-11,21],[-4,5],[-7,8],[-7,1],[-7,-5],[-15,-28],[-7,-4],[-15,-8],[-20,2],[-31,21],[-15,21],[-22,29],[-5,7],[-2,7],[-8,41],[-13,64],[19,26],[21,27],[4,3],[62,54],[1,6],[1,7],[2,13],[-3,116],[0,4],[-1,3],[-3,12],[-11,11],[-1,2],[-25,14],[-13,13],[-9,8],[-35,35],[-13,36],[-4,9],[-7,17],[-6,11],[5,32],[4,9],[4,8],[2,5],[7,5],[23,15],[9,11],[3,20],[-4,4],[-8,9],[-3,3],[-15,0],[-3,0],[-43,1],[-7,0],[-7,7],[-4,3],[-1,0],[5,14],[114,58],[4,3],[5,-5],[16,-15],[66,-7],[15,-2],[3,0],[15,10],[5,4],[80,68],[5,13],[29,80],[2,4],[5,21],[-2,9],[-5,7],[-3,3],[-3,0],[-13,0],[-5,-1],[-15,-12],[-8,-26],[-14,-10],[-1,0],[-9,2],[-13,4],[-17,4],[-9,10],[-21,37],[-43,60],[-13,2],[-3,-2],[-12,-6],[-48,-52],[0,-1],[-58,-25],[-25,-7],[-10,2],[-7,0],[-13,2],[-9,9],[4,16],[2,11],[11,46],[1,1],[-1,1],[-8,17],[-4,10],[-2,2],[-28,25],[-21,25],[-13,60],[-1,3],[-4,5],[-25,27],[-27,22],[-7,5],[-4,3],[-33,19],[-87,103],[-95,71],[-18,20],[-36,34],[-45,43],[-8,8],[-4,15],[-11,39],[-9,33],[-5,18],[-2,2],[-30,26],[-18,16],[-26,23],[-26,13],[-37,17],[-20,22],[-1,1],[-7,18],[-4,18],[3,20],[0,5],[3,21],[2,3],[7,11],[13,45],[2,6],[2,28],[1,18],[-7,21],[-4,5],[-25,27],[-51,3],[-71,-22],[-72,-12],[-7,-1],[-2,-2],[-12,-13],[-4,-5],[0,-4],[-3,-36],[4,-9],[4,-10],[-3,-12],[-5,-23],[-2,-7],[-19,-13],[-10,-2],[-83,-5],[-16,4],[-21,-6],[-43,-8],[-6,-2],[-46,-37],[-1,-1],[-6,0],[-37,4],[-4,1],[-23,5],[-55,15],[-32,15],[-29,15],[-66,49],[-5,23],[11,57],[5,25],[-5,5],[-4,3],[-9,9],[-94,13],[-36,-14],[-64,-39],[-5,-4],[-48,-43],[-38,-33],[-13,-8],[-2,-1],[-190,-29],[-16,2],[-31,2],[-44,4],[-13,1],[-58,-2],[-36,-6],[-13,-1],[-5,0],[-33,4],[-8,1],[-72,19],[-6,4],[-4,3],[-32,9],[-25,1],[-50,2],[-159,41],[-31,34],[-8,2],[-20,5],[-18,4],[-2,2],[-30,36],[-37,38],[-1,2],[-57,55],[-9,8]],[[75635,48463],[-20,-35],[-17,-40],[-1,-1],[-64,-132],[-12,-27],[-9,-20],[-69,-137],[-112,-240],[-28,-57],[-63,-132],[-81,-171],[-25,-53],[-32,-67],[-12,-58],[-1,-1],[-8,-41],[-5,-22],[-5,-25],[-11,-57],[-30,-151]],[[75030,46996],[-122,54],[-95,42],[-36,15],[-26,12],[-4,1],[-27,12],[-99,44],[-178,78],[-24,11],[-49,22],[-21,9],[-33,14],[-46,20],[-20,9],[-61,27],[-34,15],[-23,10],[-25,11],[-36,16],[-50,22],[-33,15],[-95,-57],[-70,-41],[-32,-19],[-44,-26],[-22,-13],[-73,-44],[-38,-22],[-119,-71],[-19,-11],[-104,-61],[-24,-15],[-27,-16],[-32,-18],[-33,-20],[-22,-13],[-21,-12],[-28,-17],[-80,-48],[-6,-3],[-23,-14],[-32,-18],[-47,-28],[-24,-14],[-29,-17],[-150,-87],[-243,-149],[-4,-6],[-48,-67],[-89,-129],[-55,-79],[-17,-23],[-30,-44],[-19,-28],[-41,-60],[-21,-31],[-20,-29],[-13,-19],[-35,-52],[-21,-30],[-68,-99],[-21,-31],[-75,-108],[-92,-134],[-15,-21],[-8,-28],[-13,-78],[-23,-142],[-4,-26],[-6,-34],[-2,-14],[-2,-8],[-48,-298],[-6,-37],[-9,-55],[-26,-157],[-19,-29],[-47,-67],[-33,-47],[-129,-184],[-29,-41],[-7,-9],[-18,-23],[-42,-52],[-52,-65],[-19,-22],[-14,-18],[-55,-68],[-59,-73],[-25,-31],[-15,-19],[-58,-71],[-19,-25],[-43,-52],[-21,-26],[-22,-27],[-26,-32],[-16,-20],[-15,-19],[-16,-20],[-10,-12],[-35,-43],[-12,-15],[-124,-150],[-52,-65],[-24,-29],[-158,-196],[-27,-34],[-21,-26],[-38,-46],[-61,-74],[-35,-38],[8,-21],[68,-28],[7,-2],[19,-6],[3,-1],[12,-1],[1,0],[52,-6],[3,0],[8,-1],[40,-7],[12,-4],[3,-1],[18,-7],[1,0],[3,-3],[74,-54],[4,-5],[3,-4],[0,-7],[-13,-30],[11,-103],[12,-42],[1,-5],[1,-2],[0,-6],[-1,-3],[-12,-8],[-10,-7],[6,-16],[29,-70],[5,-15],[8,-25],[3,-9],[-51,-50],[-1,0],[19,-55],[7,-6],[16,-5],[43,-30],[45,-31],[4,-3],[2,-4],[-2,-6],[-7,-16]],[[70778,42261],[-5,-5]],[[70773,42256],[-183,-93],[-46,-25],[-76,-40],[-48,-25],[-109,-53],[-60,-30],[-74,-42],[-35,-22],[-16,-9],[-96,-61],[-125,-65],[-114,-59],[-149,-5],[-30,-1],[-27,-1],[-179,-5],[-56,-1],[-38,1],[-2,0],[-141,-2],[-146,-2],[-85,-2],[-55,1],[-118,21],[-102,-14],[-137,-21],[-124,-19],[-172,6],[0,2],[-14,100],[-2,91],[-4,11],[-6,4],[0,1],[0,4],[3,35],[0,4],[3,41],[-7,50],[-9,72],[-8,56],[-26,22],[-5,8],[-8,23],[0,10],[3,4],[-2,8],[-10,21],[-5,7],[-29,29],[-159,143],[-30,14],[-19,3],[-7,7],[-45,39],[-2,2],[-58,51],[-2,5],[-2,12],[-1,6],[-31,42],[-5,4],[-11,10],[-25,22],[-50,0],[-46,16],[-9,2],[-60,-9],[-33,-13],[-32,-17],[-33,-11],[-16,0],[-2,1],[-9,4],[-15,19],[-13,17],[-13,19],[-3,5],[-57,116],[-35,71],[-13,55],[-32,47],[-37,26],[-23,-9],[-3,0],[-8,0],[-86,25]],[[67079,43015],[-2,2],[-12,21],[-15,28],[-7,20],[-8,38],[-3,40],[0,24],[1,47],[1,16],[5,24],[13,25],[13,22],[22,40],[15,27],[14,36],[10,31],[9,25],[1,3],[9,20],[20,34],[28,25],[26,21],[10,8],[35,39],[37,45],[3,4],[30,39],[7,9],[31,69],[21,54],[7,65],[1,6],[4,34],[2,43],[-2,34],[-7,84],[-9,154],[7,29],[14,43],[7,16],[13,34],[3,7],[11,24],[9,22],[9,21],[10,28],[10,27],[8,25],[8,22],[24,51],[14,29],[14,28],[14,30],[10,21],[5,11],[7,14],[14,30],[11,23],[12,25],[13,27],[-1,2],[-2,11],[-32,-5],[-39,8],[-76,46],[-21,21],[-3,4],[-22,41],[-10,21],[1,4],[2,10],[1,7],[0,13],[-5,4],[-6,4],[-9,6],[-80,47],[-28,16],[-6,2],[-63,19],[-4,0],[-18,1],[-10,3],[-23,6],[-25,8],[-75,13],[-165,38],[-79,27],[-34,26],[-14,14],[-10,27],[-2,6],[-3,3],[-13,16],[-28,23],[-27,23],[-26,21],[-19,14],[-7,6],[-43,21],[-10,5],[-38,18],[-163,73],[-9,2],[-11,2],[-20,-1],[-3,0],[-56,15],[-5,2],[-44,22],[-31,38],[-7,5],[-55,1],[-89,9],[-51,26],[-4,3],[0,9],[0,3],[-5,2],[-51,32],[-3,2],[-20,-2],[-16,-1],[-10,25],[-3,5],[-19,12],[-8,5],[-29,18],[-50,30],[-8,5],[-6,3],[-1,-1],[-17,-6],[1,13],[0,28],[-1,6],[-5,5],[-64,55],[-34,30],[-18,10],[-19,10],[-62,23],[-32,12],[-43,5],[-6,0],[-6,-1],[-6,-6],[0,-2],[-3,-7],[-4,-2],[-55,3],[-5,8],[-33,56],[-9,71],[-57,0],[-76,1],[-49,11],[-30,0],[-28,-4],[-47,-5],[-26,2],[-37,4],[-33,5],[-20,4],[-25,6],[-104,14],[-43,-1],[-55,-14],[-50,-10],[-35,-6],[-48,-7],[-32,-4],[-28,-3],[-58,-6],[-39,0],[-22,6],[-23,7],[-64,17],[-23,-2],[-28,-1],[-32,3],[-37,3],[-33,3],[-31,5],[-24,6],[-30,6],[-39,11],[-47,14],[-25,10],[-23,11],[-18,13],[-53,35],[-21,17],[-20,14],[-21,7],[-93,4],[-48,4],[-59,3],[-41,3],[-24,2],[-23,1],[-43,2],[-104,1],[-32,0],[-37,-2],[-67,-5],[-15,-1],[-25,-2],[-65,-7],[-38,-4],[-37,-3],[-63,0],[-44,0],[-52,0],[-35,-1],[-67,-4],[-37,-2],[-31,-1],[-55,-4],[-26,1],[-22,10],[-24,7],[-16,6],[-10,3],[-27,7],[-29,5],[-54,4],[-40,3],[-44,3],[-21,3],[-32,8],[-3,1],[-67,16],[-3,1],[-41,11],[-31,10],[-32,13],[-53,24],[-24,11],[-27,14]],[[62071,46430],[5,4],[73,42],[23,13],[113,66],[31,2],[47,2],[46,22],[21,11],[43,15],[86,15],[31,-7],[6,-30],[8,-37],[120,24],[23,2],[36,5],[182,36],[45,1],[8,-134],[3,-49],[-5,-43],[-1,-24],[23,70],[8,26],[23,65],[12,68],[5,42],[5,32],[4,32],[16,122],[2,20],[2,15],[18,20],[22,11],[20,10],[36,18],[17,-23],[16,-20],[13,-21],[17,-22],[7,-2],[15,-5],[-3,-30],[11,-21],[10,-13],[4,-5],[19,-17],[22,-21],[21,-12],[97,32],[187,62],[52,20],[21,9],[72,28],[-10,19],[-14,25],[-3,6],[-32,45],[-2,2],[-16,11],[-4,3],[-21,18],[-127,117],[-4,4],[-26,20],[-12,9],[-10,7],[-4,2],[-5,4],[-6,10],[-25,43],[-9,10],[-10,6],[-52,19],[-14,9],[-2,2],[-12,9],[-101,111],[-5,6],[-16,22],[-12,16],[-1,1],[-23,55],[-15,37],[-3,11],[-3,8],[-11,62],[-8,41],[-1,9],[3,2],[3,4],[19,27],[5,7],[3,4],[7,17],[2,7],[0,10],[-6,29],[-7,35],[-8,34],[-17,57],[29,17],[38,22],[49,28],[35,20],[81,46],[127,72],[183,105],[42,23],[37,20],[85,49],[27,16],[45,26],[189,108],[39,23],[59,33],[89,52],[123,71],[132,76],[90,54],[201,113],[2,1],[22,13],[-16,23],[-1,2],[-69,100],[-22,39],[-12,19],[71,36],[77,38],[11,5],[40,21],[37,18],[40,20],[99,49],[20,8],[123,-178],[23,3],[32,18],[87,36],[171,79],[122,56],[70,34],[34,17],[41,24],[-32,0],[-16,4],[-4,2],[-4,2],[-23,21],[-4,9],[0,6],[-1,13],[-8,24],[-4,3],[-35,23],[-30,17],[-7,0],[-17,1],[-1,3],[-9,8],[-11,11],[-66,56],[-22,18],[-25,13],[-6,1],[-18,6],[-45,12],[-11,3],[-1,1],[-6,2],[-19,9],[-33,17],[-58,33],[-7,7],[-4,7],[-16,36],[-13,58],[0,11],[1,55],[0,6],[-10,46],[-15,42],[-14,30],[-7,10],[-19,16],[-7,11],[-2,4],[-19,31],[-4,8],[-2,17],[-1,5],[-2,22],[-2,11],[-10,26],[-3,6],[-27,40],[-12,18],[-1,7],[88,78],[1,1],[42,36],[47,41],[78,68],[20,17],[100,90],[18,16],[18,14],[21,18],[88,77],[81,70],[220,110],[23,12],[29,13],[104,52],[0,21],[-4,46],[0,23],[0,24],[0,30],[-2,26],[4,21],[8,22],[15,26],[10,21],[15,26],[13,20],[10,21],[11,22],[10,21],[19,35],[11,21],[12,24],[15,26],[14,25],[15,26],[13,22],[17,34],[16,33],[11,20],[15,27],[59,107],[83,153]],[[62071,46430],[-40,21],[-25,11],[-26,10],[-37,12],[-69,20],[-30,9],[-45,15],[-58,26],[-20,11],[-26,15],[-35,17],[-26,10],[-22,8],[-49,29],[-19,11],[-18,11],[-2,1],[-1,1],[-14,13],[2,24],[2,30],[14,217],[14,224],[6,91],[0,1],[4,57],[4,67],[3,35],[5,76],[9,148],[7,96],[11,171],[4,72],[8,116],[3,44],[5,82],[10,149],[5,85],[2,27],[6,83],[-53,21],[-38,15],[-143,55],[-109,43],[-50,20],[-154,60],[-171,66],[-167,66],[-82,32],[-60,24],[-149,58],[-122,48],[-84,33],[-41,16],[-37,15],[-113,44],[-21,8],[-88,35],[-42,16],[-98,39],[-70,27],[-28,11],[-71,28],[-44,17],[-2,1],[-59,23],[-76,30],[-71,28],[-25,9],[-147,58],[-184,71],[-45,20],[18,80],[5,22],[5,24],[6,32],[6,36],[5,29],[8,37],[5,10],[10,19],[9,36],[6,24],[11,40],[1,6],[3,5],[15,33],[21,37],[20,40],[16,33],[13,25],[-3,1],[-20,8],[-27,10],[-74,29],[-83,32],[-144,56],[-264,102],[-30,11],[-103,40],[-22,8],[-22,9],[-30,12],[-62,24],[-43,16],[-75,28],[-29,11],[-36,16],[-126,48],[-26,11],[-254,98],[-99,39],[-53,16],[-130,-10],[-51,-4],[-63,-5],[-42,-3],[-137,-11],[-205,-17],[-133,-11],[-33,-3],[-126,-10],[-1,0],[-237,-19],[-75,-6],[-104,-9],[-59,-4],[-191,-16],[-77,-6],[-306,-26]],[[33616,46806],[-3,-57],[1,-4],[8,-16],[1,-2],[17,-18],[15,-17],[0,-1],[20,-63],[1,-3],[0,-3],[-1,-6],[-12,-7],[-47,2],[-16,2],[-43,13],[-30,28],[-3,2],[-7,-5],[-23,-62],[-1,-9],[-2,-12],[-2,-16],[8,-15],[5,-10],[-1,-10],[-3,-16],[0,-3],[-26,-14],[-30,3],[-4,0],[-26,-3],[-8,-2],[-25,-16],[-9,-6],[-11,-19],[-4,-8],[-13,-23],[52,-17],[4,-5],[4,-4],[1,-1],[-3,-10],[-4,-15],[-1,-6],[-87,-52]],[[33308,46300],[-25,-12],[-10,1],[-39,5],[-1,0],[-7,-5],[-3,-18],[3,-12],[1,-4],[0,-1],[44,-72],[12,-17],[31,-17],[5,-6],[9,-10],[2,-9],[-2,-18],[-10,-5],[-7,-3],[0,-1],[-2,0],[-10,1],[-15,3],[-21,4],[-2,-1],[-5,0],[-16,0],[-38,0],[-13,1],[-216,3],[-8,58],[3,287],[-122,-1],[-283,-1],[4,88],[2,38],[1,60],[-149,-4],[-24,2],[-41,-1],[-38,0],[-38,0],[-36,0],[-70,0],[-3,-166],[-192,0],[-206,-1],[-216,0],[-1,0],[-202,0],[-1,-132],[-1,-49],[-21,-1],[-8,0],[-101,3],[-64,1],[-30,1],[-28,-30],[-33,-44],[-36,-50],[-22,-37],[-96,-138],[-28,-40],[-71,-100],[-137,-195],[-82,-115],[-128,-184],[-59,-83],[-185,-265],[-94,-135],[-85,-121],[-1,-2],[-145,-208],[-86,-124],[-16,-22],[-34,-48],[-18,-26],[-168,-237],[-40,-56],[-12,0],[-194,-2],[-1,0],[-154,0],[-154,0],[-25,15],[-78,-14],[-9,-2],[-63,-11],[-6,5],[-182,-27],[-8,-1],[-16,11],[-6,4],[-26,20],[-13,3],[-3,1],[-102,-3],[-12,-7],[-39,-34],[-73,-59],[-7,-13],[-2,-104],[0,-90],[-3,-110],[-3,-137],[0,-23],[0,-44]],[[28345,43407],[-284,3],[-76,0],[-82,1],[-92,1],[-228,2],[-72,0],[-17,-2],[-10,-1],[-33,1],[-77,0],[-82,2],[-30,1],[-134,0],[-185,0],[-50,1],[0,40],[4,217],[4,189],[1,61],[0,7],[1,32],[-35,0],[-63,0],[-12,0],[-7,0],[-62,0],[-66,-1],[-54,0],[-8,0],[-25,0],[-40,0],[-56,-1],[1,-37],[2,-183],[1,-55],[-201,2],[-1,55],[0,27],[1,27],[-2,164],[-65,0],[-145,-2],[2,43],[5,230],[0,3],[5,174],[1,41],[1,77],[1,87],[-261,1],[-41,0],[-80,-1],[-24,0],[-3,-159],[-2,-70],[-1,-69],[-180,-3],[-34,-1]],[[25455,44311],[0,42],[1,56],[0,8],[0,50],[2,138],[1,165],[-128,2],[-53,1],[-7,113],[-21,29],[-14,18],[-10,13],[-24,9],[-24,15],[-20,12],[-18,-12],[-24,-15],[3,116],[0,8],[0,29],[-2,233],[0,146],[1,25],[11,280],[1,52],[-49,0],[-160,-3],[-61,0],[-66,1],[-13,0],[6,90],[5,84],[-52,0],[-152,0],[4,50],[-5,99],[1,79],[0,59],[2,54],[0,65],[0,142],[-94,0],[-22,-1],[-84,-3],[-1,61],[0,33],[-3,243],[-38,1],[-170,3],[-2,173],[24,-1],[178,-2],[-6,150],[-1,24],[-3,97],[-5,156]],[[60515,42053],[-156,-127],[-170,-143],[-27,-23],[-26,-21],[-2,-2],[-39,-33],[-71,-60],[-98,-83],[-88,-80],[-164,-149],[38,-36],[83,-72],[20,-21],[-43,-38],[-25,-21],[-4,-3],[-35,-28],[-35,-28],[-48,42],[-14,12],[-78,65],[-35,-29],[-88,-75],[-3,-2],[-17,-14],[-24,-21],[-26,-21],[-23,-20],[-32,-27],[-24,-21],[-64,-53],[-21,-18],[-153,-129],[-78,-69],[-21,-18],[-89,-78],[-159,-139],[-70,-61],[-67,-58],[-82,-71],[-27,-24],[-84,-74],[-91,-79],[-39,-34],[-27,-23],[-23,-21],[-41,-35],[-35,-31],[-18,-15],[-31,-27],[-2,-2],[-89,-76],[-22,-19],[-62,-52],[-134,-116],[-82,-69],[-131,113],[-57,-43],[-29,-22],[-61,-47],[-84,74],[-54,51],[-140,-90]],[[57094,39619],[-45,41],[-269,-135],[-2,-1],[-66,-33],[-31,-15],[0,-1],[-59,-30],[-99,-51],[-56,-29],[-54,-28],[-19,-9],[-114,-60],[-211,-109],[-190,-97],[-79,-41],[-190,-90],[-58,-21],[-29,-14],[-106,-54],[-128,-64],[-85,-42],[-51,-25],[-76,-39],[-120,-60],[-47,-23],[-44,-21],[-53,100],[-12,18],[-65,130],[-57,117],[-57,106],[-71,131],[-51,95],[-10,19],[-56,103],[-12,23],[-7,16],[-84,166],[-68,135],[-21,42],[-2,2],[-19,37],[-45,84],[-52,97],[-12,22],[-12,21],[-16,30],[0,1],[-102,189],[-60,113],[-77,151],[-87,172],[-18,34],[-27,55],[-9,20],[-34,64],[-1,1],[-82,158],[-98,184],[-26,52],[-21,38],[-24,46],[-28,54],[-19,37],[0,1],[-23,43],[-49,93],[-78,151],[-63,121],[-11,20],[-32,63],[-2,2],[-32,61],[-79,151],[-54,105],[-81,153],[-74,141],[-31,60],[-37,82],[-19,31],[-13,19],[-87,165],[-14,27],[-119,228],[-16,30],[-18,34],[-52,100],[-8,16],[-40,77],[-34,69],[-95,179],[-31,60],[-13,24],[-53,100],[-10,20],[-12,27],[-36,61],[-13,25],[-39,74],[-33,63],[-10,19],[-47,89],[-11,21],[-40,75],[-38,73],[-7,12],[-58,109]],[[51759,44505],[-70,133],[-12,24],[-112,211],[-31,59],[-15,27],[-31,59],[-27,51],[-19,37],[-13,24],[-13,26],[-36,68],[-53,99],[-90,171],[-24,44],[-22,42],[-12,24],[-31,59],[-18,33],[-43,81],[-16,30],[-15,29],[-10,20],[-12,22],[-60,114],[-43,82],[-17,31],[0,1],[-16,30],[-16,29],[-18,38],[-12,24],[-31,63],[-82,153],[-26,51],[-22,41],[-19,36],[-58,110],[-4,7],[-5,11],[-29,54],[-49,92],[-5,9],[-6,11],[-14,26],[-12,22],[0,1],[-21,38],[-20,39],[-17,31],[-99,185],[-87,160],[-95,179],[-44,82],[-1,1],[-27,50],[-91,171],[-40,76],[-26,48]],[[62071,46430],[-39,-22],[-27,-15],[-45,-27],[-24,-13],[-43,-39],[39,-20],[79,-98],[16,-14],[18,-17],[3,-3],[31,-18],[17,-5],[8,1],[13,3],[2,0],[8,-2],[9,-4],[7,-4],[7,-3],[50,-26],[3,-3],[18,-17],[2,-3],[13,-3],[22,-4],[29,-6],[11,2],[26,5],[48,-97],[-9,-20],[-31,-25],[-119,-91],[-31,-68],[-42,-122],[-13,-33],[-11,-29],[-23,-76],[-8,-23],[-22,-19],[-23,-22],[-180,-87],[-114,-60],[-23,14],[-35,12],[-29,1],[-22,-9],[-22,-3],[-27,12],[-24,17],[-33,-1],[-26,-13],[-23,9],[-26,3],[-26,-18],[-25,1],[-26,-13],[-28,3],[-25,4],[-25,-9],[-27,0],[-19,-20],[-31,-7],[-17,-21],[-105,-89],[-2,-2],[-1,-2],[-13,-26],[-4,-12],[0,-14],[5,-26],[3,-7],[11,-16],[36,-40],[33,-37],[4,-11],[1,-15],[0,-6],[-1,-2],[0,-7],[-1,-1],[-6,-8],[-4,-4],[-13,-11],[-49,-41],[-13,-18],[-7,-13],[-2,-6],[-2,-5],[-4,-8],[-1,-1],[-5,-9],[-8,-14],[-7,-6],[-11,-7],[-14,-3],[-12,-3],[-7,-5],[-4,-4],[-40,-45],[-28,-31],[-6,-16],[0,-6],[13,-22],[17,-6],[2,-4],[-1,-16],[-4,-7],[-13,-12],[-5,-4],[24,-69],[14,-41],[58,-121],[-56,-51],[-1,-1],[-2,-4],[-2,-3],[0,-11],[0,-7],[2,-9],[6,-41],[1,-5],[20,-24],[21,-24],[-1,-10],[-7,-40],[0,-3],[-26,-10],[-12,-11],[-13,-14],[-7,-8],[-6,-9],[0,-4],[0,-14],[2,-5],[1,-7],[0,-5],[-1,-5],[-1,-5],[-1,-1],[-16,-34],[-3,-11],[-4,-13],[-6,-19],[-2,-5],[-1,-4],[-9,-9],[-19,-7],[-7,-2],[-8,-2],[-18,-14],[-3,-4],[-5,-4],[-9,-8],[-2,-4],[-3,-5],[-4,-8],[-3,-17],[-2,-7],[-10,-8],[-59,-33],[-41,-13],[-8,-1],[-1,0],[-3,1],[-2,1],[-4,4],[-20,20],[-7,5],[-15,4],[-17,0],[-6,-8],[-3,-5],[-6,-8],[1,-19],[4,-26],[1,-7],[4,-9],[8,-18],[1,-7],[2,-9],[2,-10],[1,-9],[1,-6],[-1,-1],[-4,-20],[-2,-9],[-4,-7],[-16,-10],[-1,-1],[-2,-18],[-2,-26],[-67,-140],[11,-11],[4,-3],[45,-40],[4,-5],[-4,-13],[-10,-10],[-103,-67],[-1,-1],[-10,-32],[-6,-21],[0,-2],[-13,-54],[-6,-2],[-7,-17],[-4,-9],[-18,-12],[-28,4],[-10,6],[-33,21],[-21,2],[-11,-7],[-2,-13],[2,-2],[14,-16],[27,-9],[14,-13],[0,-7],[0,-2],[-1,-12],[-21,-12],[-17,-1],[-8,-1],[-18,-9],[-8,-17],[-2,-3],[-8,-16],[5,-6],[5,1],[38,8],[9,-1],[16,-2],[18,-22],[-4,-24],[-15,-39],[-7,-8],[-9,-12],[-30,-43],[-8,-15],[-7,-18],[-34,-97],[-3,-4],[-42,-75],[-43,-47],[-3,-2],[-1,0],[-89,8],[-2,66],[-8,9],[-10,1],[-5,1],[-10,1],[-8,-4],[-7,-4],[-3,-1],[0,-3],[-10,-29],[-9,-28],[-1,-9],[-4,-24],[13,-17],[11,-7],[25,-3],[23,-17],[5,-9],[-3,-16],[-2,-1],[-8,-4],[-14,-8],[-7,1],[-24,3],[-22,-19],[0,-1],[-4,-18],[22,-22],[46,-8],[18,8],[2,0],[15,7],[21,-3],[14,-12],[11,-10],[1,-16],[-12,-12],[-7,-8],[-6,-20],[-1,-4],[6,-11],[80,-141],[18,-21],[18,-12],[91,-62],[11,-7],[16,-58],[0,-1],[20,-51],[18,-21],[4,-4],[8,-6],[13,-2],[2,0],[1,0],[14,9],[4,11],[7,20],[11,7],[12,-1],[11,-12],[11,-25]],[[36907,45483],[-17,14],[-13,19],[-15,29],[-17,19],[-53,31],[-1,1],[-27,15],[-33,10],[-1,0],[-47,4],[-60,6],[-37,8],[-45,21],[-21,13],[-42,13],[-43,2],[-24,3],[-38,16],[-18,20],[-11,23],[-16,35],[-3,23],[-11,25],[-18,18],[-20,43],[-3,7],[-15,30],[-5,1],[-52,20],[-26,6],[-4,0],[-50,18],[-48,41],[-1,0],[-28,9],[-41,3],[-45,-2],[-59,3],[-45,5],[-13,5],[-9,4],[-27,24],[-70,29],[-6,0],[-30,0],[-391,9],[-2,-184],[-2,-121],[-111,7],[-27,2],[-34,2],[8,23],[16,46],[15,43],[10,29],[14,38],[6,21],[6,17],[2,5],[15,45],[23,66],[7,20],[8,20],[11,31],[0,1],[5,18],[8,36],[6,27],[8,108],[-1,0],[-147,6],[-33,2],[-9,-53],[-4,-74],[-68,-1],[-27,-1],[-210,0],[-291,2],[-143,2],[-23,0],[-49,0],[-1,66],[-1,113],[-149,0],[-37,0],[-105,2],[-47,-2],[-2,-135],[0,-40],[-171,1],[-91,1],[-2,0],[-381,5]],[[39964,50267],[-3,-33],[-7,-45],[-13,-37],[-7,-21],[-4,-27],[-1,-23],[-3,-32],[-11,-20],[-22,-28],[-23,-22],[-25,-20],[-35,-22],[-3,-9],[-9,-22],[-1,-62],[0,-61],[-1,-51],[0,-38],[0,-48],[-1,-53],[-2,-176],[-58,-8],[-52,0],[-32,1],[-32,0],[-84,0],[-43,0],[-32,1],[-34,0],[-21,0],[-10,-122],[-1,-219],[200,-3],[2,-31],[-1,-42],[-1,-38],[0,-22],[-1,-41],[-1,-37],[-1,-27],[2,-68],[1,-42],[-1,-94],[0,-34],[-1,-48],[70,-1],[56,-1],[-9,-25],[-17,-91],[-5,-20],[-5,-17],[-15,-17],[-82,-93],[-2,-43],[-1,-36],[-1,-36],[0,-4],[0,-45],[-1,-39],[-3,-11],[-2,-12],[-5,-39],[-6,-41],[0,-70],[0,-54],[0,-73],[-1,-90],[4,-89],[2,-74],[0,-93],[1,-35],[-1,-62],[0,-43],[-2,-33],[-1,-90],[0,-1],[0,-70],[0,-25],[1,-30],[0,-22],[0,-32],[0,-29],[0,-32],[0,-53],[1,-27],[-8,-30],[-6,-28],[-6,-26],[-6,-25],[-8,-31],[-9,-43],[-18,-34],[-28,-12],[-49,5],[-4,1],[-100,26],[-13,3],[-15,11],[-6,4],[-3,3],[-4,12],[-3,16],[-8,37],[-1,7],[-43,39],[-7,4],[-134,65],[-10,2],[-10,0],[-22,0],[-9,1],[-2,1],[-4,2],[-30,15],[-9,4],[-21,11],[-8,8],[-6,5],[-1,-277],[0,-49],[0,-31],[0,-105],[0,-39],[0,-38],[0,-42],[-1,-42],[-103,-1],[-77,1],[-160,2],[-35,1],[-55,0],[-33,1],[-23,0],[-84,1],[-38,1],[0,44],[1,115],[-195,-2],[-5,-82],[-5,-149],[-3,-44],[1,-76],[-47,0],[-47,0],[-113,1],[0,-65],[0,-186],[0,-11],[2,-39],[-2,-33],[0,-46],[-1,-144],[0,-177],[0,-61],[0,-54],[0,-7],[0,-245],[-35,0],[-80,-1],[-81,-2],[-54,0],[-55,-1],[-103,-2],[-1,-47],[1,-22],[1,-78],[-34,-4],[-37,-4],[-27,-3],[-28,-3],[-53,-2],[-39,1],[-2,83],[-2,47],[-1,53],[1,66],[1,56],[-3,78],[-5,8],[0,1],[-7,14],[-28,7],[-25,-1],[-26,5],[-24,12],[-27,17],[-23,11],[-23,2],[-22,13],[-21,0],[-20,-14],[-21,-6],[-26,10],[-20,30],[-16,33],[-8,10],[-6,8],[-3,11],[-3,11],[-7,22],[-11,19],[-21,22],[-3,3]],[[44228,45134],[12,-21],[1,-14],[-2,-13],[-12,-16],[0,-2],[-1,-3],[-1,-10],[-3,-14],[8,-8],[5,-5],[9,-11],[20,-13],[42,-13],[31,-9],[58,-37],[1,-1],[25,-29],[9,-9],[14,-32],[4,-33],[-10,-45],[-37,-99],[24,-109],[8,-10],[59,-28],[13,-1],[3,0],[16,4],[14,3],[6,2],[5,-9],[-1,-10],[-1,-4],[-23,-27],[-31,-20],[-1,-1],[-1,-5],[-1,-10],[0,-1],[18,-46],[1,-1],[1,-2],[28,-39],[1,-2],[-1,-80],[0,-10],[10,-61],[-7,-43],[-12,-24],[-14,-41],[-8,-13],[-21,-14],[-101,6],[-42,-3],[-52,-11],[-2,-1],[-7,-4],[-57,-37]],[[44225,44045],[-30,-26],[-21,-23],[-10,-11],[-1,-13],[0,-3],[-3,-33],[6,-25],[-7,-43],[-5,-15],[-23,-69],[-3,-2],[-6,-3],[-2,-2],[-13,1],[-10,13],[-15,4],[-37,-22],[-9,5],[-2,4],[-5,14],[-8,18],[-6,9],[-8,5],[-24,5],[-25,3],[-36,6],[-20,3],[-19,38],[-70,73],[-41,37],[-23,21],[-22,20],[-42,22],[-98,-118],[-22,-26],[-81,-98],[-161,-195],[-105,-127],[-10,-12],[-5,-6],[-72,-87],[-22,-26],[-21,-26],[-79,-95],[-79,-95],[-220,-271],[-50,-61],[-4,-5],[-41,-51],[-46,-55],[-21,-27],[-32,-38],[-30,-47],[-53,-83],[-53,-83],[-12,-19],[-18,-28],[-13,-20],[-118,-152],[-44,-56],[-77,-87],[-60,-68],[-10,-10],[-35,-41],[-79,-105],[-23,-30],[-85,-135],[-49,-63]],[[41757,41610],[-88,1],[-25,0],[-37,1],[-46,3],[-144,2],[-44,0],[-35,1],[-64,1],[-14,0],[-277,11],[-21,0],[-31,0],[-182,2],[-47,0],[-38,1],[-21,0],[-22,0],[-61,0],[-52,0],[-173,0],[-14,2],[-26,3],[-27,-2],[-17,3],[-11,1],[-35,4],[-80,-1],[-4,0],[-33,0],[-111,-3],[-1,-144],[2,-15],[-387,11],[2,89],[5,63],[-125,0],[-126,0],[-40,0],[-29,0],[-72,1],[-173,1],[-64,0],[-64,0],[-5,0],[-77,1],[-75,1],[-2,0],[-37,0],[-79,0],[-52,0],[-64,0],[-44,0],[-36,0],[-72,0],[-47,0],[-101,1],[-61,0],[-85,0],[-36,0],[-115,1],[-153,2],[-66,1],[-30,0],[-34,0],[-32,0],[-54,1],[-23,0],[-46,1],[-25,0],[-164,0],[-22,1],[-23,6],[-24,-6],[-101,1],[-37,0],[-161,2],[-27,1],[-24,0]],[[36871,41660],[0,9],[3,126],[3,122],[10,445],[4,182],[1,45],[1,45],[1,35],[0,4],[0,33],[1,39],[1,39],[1,23],[0,22],[1,24],[0,25],[1,40],[1,38],[2,62],[1,80],[-204,2],[0,108],[-1,146],[-5,120],[4,99],[3,57],[208,-2],[61,-1],[25,0],[115,-2],[1,142],[0,111],[1,28],[1,138],[0,44],[0,42],[2,196],[-1,93],[1,30],[-1,49],[0,5],[3,345],[0,6],[-95,2],[-104,1],[-3,128],[-1,92],[-4,245],[0,26],[-2,135]],[[85152,45930],[4,-31],[1,-14],[6,-3],[23,-8],[41,-14],[33,-11],[11,-5],[6,-1],[118,-52],[3,-2],[8,-12],[6,-63],[-1,-64],[-4,-18],[-6,-6],[-12,-7],[-2,-1],[-8,-1],[-10,5],[-2,7],[-7,11],[-4,7],[-7,5],[-6,2],[-11,-4],[-15,-27],[-19,-33],[0,-7],[1,-10],[7,-20],[6,-20],[-1,-10],[-1,0],[-5,-9],[-8,-8],[-19,-20],[-4,-4],[-3,-7],[-1,-2],[-1,-6],[-2,-14],[2,-7],[7,-4],[33,-8],[46,-11],[11,-2],[8,-2],[8,0],[3,2],[12,9],[2,2],[15,8],[10,1],[51,1],[10,0],[12,0],[-3,-7],[-5,-19],[-1,-4],[0,-10],[4,-29],[12,-79],[2,-13],[3,-14],[2,-4],[4,-7],[34,-43],[23,-28],[7,-9],[7,-16],[20,-76],[-6,-44],[-8,-31],[-24,-39],[-63,-103],[-14,-23],[-9,-9],[-96,-20],[-20,-7],[-15,-14],[-3,-7],[-3,-8],[-2,-4],[0,-2],[0,-11],[4,-13],[34,-108],[3,-11],[4,-14],[7,-22],[14,-47],[8,-28],[1,-4],[-2,-9],[-2,-11],[-8,-9],[-31,-33],[-21,-21],[-17,-17],[-7,-2],[-5,-1],[-6,0],[-5,4],[-3,5],[0,2],[-1,22],[0,4],[-2,-1],[-40,-25],[-3,-4],[-19,-32],[-3,-13],[4,-7],[52,-44],[1,0],[49,-37],[1,0],[4,-3],[12,-10],[6,-7],[75,-93],[11,-19],[0,-1],[2,-3],[1,-16],[0,-1],[-3,-8],[-25,-44],[-3,-13],[-4,-18],[-4,-15],[0,-8],[8,-112],[2,-26],[1,-7],[21,-43],[2,-3],[6,-8],[4,-3],[10,-8],[8,-4],[6,-4],[12,-4],[1,0],[27,3],[53,6],[21,2],[7,1],[6,2],[1,1],[9,7],[17,18],[3,3],[4,4],[7,3],[2,0],[7,-1],[2,-2],[11,-12],[5,-19],[1,-9],[0,-5],[0,-3],[-2,-55],[0,-13],[-3,-98],[-9,-43],[33,-5],[27,-3],[-13,-54],[0,-13],[3,-1],[3,-1],[20,-4],[78,-12],[13,-6],[22,-21],[2,-12],[1,-5],[3,-33],[5,-33],[3,-5],[3,-5],[20,-26],[12,-7],[5,-1],[2,2],[3,2],[39,29],[11,1],[13,-7],[-1,-7],[-2,-30],[3,-99],[1,-8],[1,-11],[6,-64],[3,-13],[1,-6],[1,-3],[8,-33],[5,-6],[8,-12],[16,-14],[131,-82],[12,-6],[62,-36],[21,-12],[17,-7],[27,0],[5,2],[10,3],[10,10],[10,-22],[21,-46],[-4,-81],[9,-29],[65,-61],[9,-10],[3,-5],[-1,-9],[-3,-6],[-9,-8],[-32,-15],[-6,-7],[-2,-6],[1,-8],[7,-10],[24,-25],[47,-38],[106,-71],[9,-2],[7,0],[2,0],[11,4],[5,4],[5,23],[1,5],[1,7],[7,8],[20,4],[7,-2],[135,-37],[81,-24],[8,-5],[3,-8],[4,-9],[15,-42],[1,-1],[-1,-10],[0,-28],[-3,-127],[1,-4],[12,-55],[9,-41],[20,8],[11,1],[26,-6],[7,-5],[4,-4],[7,-7],[78,-74],[6,-5],[25,-20],[44,-34],[-2,-3],[-25,-36],[-4,-10],[8,-67],[5,-7],[14,-7],[9,-5],[5,-4],[3,-3],[7,-8],[-1,-7],[-10,-57],[-4,-26],[-4,-1],[-5,-10],[0,-59],[5,-14],[9,-4],[29,-13],[13,-6],[4,0],[6,0],[2,-3],[42,-66],[12,-21],[8,-15],[0,-2],[-1,-5],[-17,-31],[-5,-4],[-12,-1],[-11,7],[-11,5],[-9,-2],[-4,-3],[-1,-10],[12,-21],[42,-65],[11,-10],[8,-2],[41,-8],[17,-9],[7,-7],[1,-2],[2,-3],[-2,-7],[-28,-29],[-1,-1],[36,-14],[7,-2],[18,-7],[14,1],[20,9],[7,-1],[9,-4],[3,-7],[4,-8],[22,-47],[2,-4],[1,-12],[-3,-8],[-16,-22],[-3,-3],[-5,-6],[-6,-5],[5,-14],[17,-42],[25,-30],[1,-3],[5,-9],[13,-27],[11,-23],[17,-36],[1,-3],[5,-13],[0,-8],[-9,-11],[-14,-16],[-18,-20],[-5,-5],[0,-17],[0,-41],[4,-5],[2,-2],[16,-23],[18,-27],[0,-2],[0,-11],[-1,-25],[-3,-61],[-3,-65],[-23,-16],[0,-13],[0,-9],[6,-14],[2,-2],[14,-7],[5,-4]],[[87504,40592],[-11,-3],[-41,-12],[-30,-8],[-124,-35],[-36,-9],[-28,-8],[-63,-17],[-83,-23],[-23,-6],[-74,-21],[-66,-19],[-30,-8],[-21,-6],[-28,-8],[-27,-7],[-1,0],[-146,-40],[-26,-7],[-3,-1],[-26,-7],[-26,-7],[-14,-4],[-161,-44],[-171,-47],[-67,-18],[-28,-8],[-25,-7],[-106,-30],[-4,-1],[-223,-63],[-5,-1],[-33,-10],[-3,-1],[-62,-17],[-61,-17],[-14,-4],[-5,-2],[-11,-3],[-77,-20],[-21,-6],[-304,-85],[-55,-16],[-67,-19],[-35,-10],[-36,-10],[-34,-9],[-7,-2],[-131,-36],[-81,-23],[-133,-38],[-114,-33],[-8,-2],[-96,-27],[-100,-29],[-54,-15],[-27,-8],[-9,-3],[-23,-6],[-21,-6],[-280,-80],[-97,-27],[-45,-13],[-44,-12],[-88,-25],[-73,-21],[-44,-12],[-62,-15],[-111,-26],[-27,-7],[-195,-47],[-190,-46],[-23,-6],[-112,-27],[-32,-8],[-32,-7],[-21,-5],[-57,-14],[-4,-1],[-67,-16],[-33,-8],[-76,-18],[-21,-5],[-20,-5],[-69,-17],[-48,-11],[-69,-17],[-29,-7],[-30,-7],[-26,-6],[-26,-7],[-24,-5],[-36,-9],[-52,-13],[-33,-8],[-27,-6],[-2,0],[-27,-7],[-29,-7],[-42,-10],[-117,-28],[-34,-9],[-13,-2],[-12,-3],[-45,-11],[-42,-11],[-32,-8],[-57,-13],[-67,-17],[-21,-5],[-26,-6],[-51,-12],[-21,-6],[-252,-61],[-31,-8],[-64,-15],[-51,-13],[-81,-19],[-65,-16],[-80,-19],[-28,-7],[-25,-6],[-52,-13],[-25,-6],[-43,-10],[-46,-11],[-36,-9],[-38,-9],[-39,-9],[-81,-17]],[[80267,38693],[-5,12],[0,6],[1,7],[7,46],[5,38],[3,17],[10,67],[1,9],[-13,55],[-1,0],[-11,14],[-11,14],[-2,2],[-6,9],[-5,15],[-4,12],[-4,11],[0,8],[0,1],[8,24],[10,37],[5,15],[0,4],[4,33],[0,8],[0,9],[-5,26],[-3,4],[-35,21],[-33,12],[-18,8],[-4,6],[-5,11],[-1,2],[-9,19],[-18,40],[-3,23],[-2,11],[0,3],[-15,34],[-2,4],[-17,43],[-2,22],[-22,39],[-43,65],[-3,4],[-31,5],[-22,-3],[-4,-4],[-4,-2],[-17,-6],[-17,11],[-8,5],[-77,51],[-4,3],[-7,7],[-3,3],[-1,7],[-15,72],[-37,70],[-14,14],[-30,21],[-4,3],[15,4],[2,0],[0,1],[0,1],[7,42],[6,55],[5,45],[1,9],[-5,28],[-7,36],[-7,38],[0,1],[3,6],[28,30],[-3,17],[-23,14],[-15,22],[-11,20],[-14,17],[-22,22],[-17,17],[-4,26],[-26,11],[-20,13],[-6,22],[-16,18],[-26,17],[8,26],[15,18],[19,12],[-14,20],[-21,16],[-17,18],[-13,21],[-19,19],[-25,4],[-23,10],[-24,10],[-25,5],[-29,2],[-150,1],[-23,16],[-20,16],[-18,18],[-15,18],[-29,9],[-61,-7],[-28,2],[-34,-14],[-32,-7],[-25,13],[-10,20],[-16,22],[-20,10],[-28,14],[-15,17],[-16,22],[-14,22],[-16,20],[-22,-2],[-24,-1],[-10,23],[-6,23],[-20,20],[-18,16],[-20,11],[-12,24],[1,25],[-8,21],[-8,21],[-17,12],[-19,-12],[-22,-12],[-16,-23],[-22,3],[0,22],[-10,20],[-24,16],[-22,7],[-22,16],[-22,7],[-27,-5],[-23,0],[-16,19],[-27,15],[-24,10],[-15,19],[-22,17],[-6,28],[-8,5],[-18,14],[-22,7],[-22,7],[-19,10],[-26,11],[-24,15],[-72,47],[-69,45],[-39,20],[-93,47],[-112,2],[-242,4],[-157,-13],[-47,-3],[-82,-27],[-58,-18],[-51,-16],[-104,-31],[-25,-7],[-21,-4],[-21,-1],[-23,-1],[-28,-1],[-22,-5],[-21,-6],[-25,-4],[-37,-6],[-32,-5],[-101,-16],[-44,-10],[-34,-2],[-20,11],[-84,63],[-31,17],[-20,10],[-25,6],[-28,-15],[-21,-21],[-42,-45],[-21,-4],[-24,21]],[[76313,41186],[6,39],[18,14],[21,17],[13,17],[22,15],[26,21],[14,22],[7,21],[18,16],[14,21],[4,27],[-7,26],[8,23],[15,18],[13,20],[3,24],[28,4],[21,14],[10,23],[-7,28],[7,26],[8,29],[-2,26],[-2,36],[3,37],[13,27],[9,25],[15,25],[7,23],[21,30],[18,15],[11,23],[15,22],[-10,32],[-3,27],[-7,29],[-3,34],[9,35],[18,18],[1,22],[11,21],[20,10],[16,17],[-3,35],[9,32],[9,32],[87,309],[2,4],[33,121],[9,33],[7,24],[17,58],[12,46],[16,56],[7,24],[14,50],[15,53],[8,26],[16,49],[81,256],[18,54],[10,27],[35,112],[2,6],[5,16],[9,29],[5,17],[2,7],[9,28],[15,49],[26,86],[29,94],[51,164],[17,53],[12,42],[8,26],[10,34],[8,24],[4,9],[20,57],[-8,9],[-3,5],[-3,3],[-26,4],[-1,0],[-23,13],[-14,21],[-8,11],[-7,8],[-14,14],[-4,4],[-4,0],[-18,1],[-25,7],[-28,-1],[-28,5],[-21,5],[-27,6],[-31,4],[-13,8],[-9,6],[-18,7],[-5,3],[-19,16],[-23,20],[-15,22],[-13,17],[-27,19],[-2,24],[5,8],[10,15],[1,32],[-16,20],[-15,22],[-4,17],[-4,14],[6,7],[11,13],[2,27],[-5,9],[-9,16],[-17,20],[-22,0],[-21,8],[-10,19],[-2,2],[-14,13],[-23,11],[-18,5],[-4,1],[-11,23],[-20,17],[-18,17],[-23,8],[-10,20],[0,1],[-16,24],[-26,10],[-19,22],[-12,4],[-8,3],[-8,12],[-8,11],[-19,21],[-3,9],[-7,20],[-11,24],[-24,3],[-21,15],[-25,5],[-27,1],[-18,18],[-8,13],[-4,6],[-5,25],[-7,31],[-7,46],[5,42],[-6,28],[4,22],[-20,14],[-21,14],[-20,16],[-8,26],[0,1],[-5,7],[-2,3],[-7,11],[-24,3],[-10,-1],[-14,-2],[-35,10],[-13,11],[-14,12],[-22,25],[9,28],[-6,15],[-6,17],[-6,23],[-1,17],[-1,6],[-8,10],[-12,13],[-13,25],[-1,6],[-1,17],[-1,9],[3,21],[1,8],[1,9],[3,4],[9,14],[18,24],[5,13],[6,16],[2,24],[3,28],[-10,30],[-8,18],[-3,6],[-7,24],[-7,24],[2,26],[1,4],[-22,29],[7,24],[-4,16],[-6,21],[-5,25],[-1,2],[-3,2],[-18,13],[-20,13],[-14,24],[0,20],[0,1],[0,6],[7,7],[12,10],[1,0],[23,5],[20,13],[23,11],[18,15],[7,21],[1,3],[11,25],[12,14],[2,3],[2,5],[9,21],[-6,23],[-11,22],[1,24],[21,9],[11,4],[17,19],[-2,0],[-15,7],[-26,11],[-24,11],[-35,15],[-21,10],[-30,13],[-52,23],[-22,9],[-41,19],[-29,13],[-94,41],[-115,51],[-40,18],[-69,28],[-51,23],[-163,72],[-46,21],[-81,36],[-242,108],[-45,20]],[[19113,46565],[-72,-1],[-41,0],[-21,0],[-29,-18],[-18,-10],[-22,-14],[-47,-10],[-4,-2],[-59,-40],[-2,-1],[-51,-38],[-2,-1],[-6,-3],[-17,-9],[-57,-57],[-21,-21],[-3,-2],[0,-1],[-46,-18],[-42,4],[-38,3],[-23,2],[-5,1],[-7,-7],[-3,-19],[-7,-40],[12,-16],[8,-22],[-3,-12],[0,-1],[-26,-32],[-21,-7],[-15,-3],[-1,0],[0,-1],[2,-4],[-5,-4],[-18,-15],[-36,-27],[-7,-6],[-18,-104],[0,-35],[0,-11],[-2,-1],[-1,-1],[-41,-25],[-17,-16],[-12,-11],[-1,-5],[2,-3],[1,0],[11,-10],[8,-39],[-14,-56],[-7,-8],[-3,-1],[-1,0],[-1,0],[-7,2],[-19,4],[0,-1],[12,-18],[1,-17],[-38,-62],[-1,-1],[-24,-18],[-4,-2],[-12,-7],[-14,-3],[-13,-2],[-6,-13],[0,-1],[0,-10],[9,-10],[7,-7],[2,-1],[4,-7],[2,-13],[-5,-8],[0,-2],[-1,0],[-7,-9],[-18,-5],[-2,0],[-1,0],[-22,-2],[-6,-5],[-8,-7],[-4,-7],[0,-3],[0,-5],[0,-16],[5,-10],[2,-5],[7,-32],[0,-1],[0,-11],[-1,-20],[-10,-34],[-2,-2],[-74,-104],[-4,-6],[45,-18],[3,-2],[-2,0],[-42,-14],[-19,-6],[-31,-10],[-52,-16],[-2,-1],[0,-2],[2,-39],[-2,-4],[-4,-2],[-3,0],[-26,0],[-6,-2],[-8,-6],[-12,-15],[-41,-60],[1,-6],[2,-2],[29,-22],[10,-8],[0,-10],[-1,-5],[-6,-30],[-16,-10],[-15,-9],[-15,-9],[-12,-67],[-1,-3],[-61,-109],[-11,-21],[-37,-19],[-12,-6],[-65,-37],[-2,-1],[0,-19],[0,-13],[-2,-55],[-2,-6],[-4,-11],[-13,-12],[-24,-15],[-8,-5],[-12,-10],[-5,-12],[-4,-43],[1,-6],[-1,-30],[-36,-23],[-23,-3],[-10,1],[-46,29],[-14,0],[-17,-6],[-1,-2],[-21,17],[-7,6],[-20,10],[-3,-1],[-8,-4],[-36,-17],[-1,-1],[-10,-5],[-32,-19],[-41,-41],[-7,-13],[-13,-33],[-39,9],[-23,4],[-14,0],[-9,-1],[-10,-6],[-4,-4],[2,-10],[17,-12],[2,-3],[0,-1],[2,-3],[1,-11],[0,-1],[-8,-8],[-37,-31],[-20,-3],[-29,10],[-42,6],[-12,4],[-20,10],[-76,37],[-41,20],[-30,21],[-4,2],[-13,11],[-8,7],[-4,10],[-1,14],[5,12],[0,14],[-1,4],[-5,5],[-5,2],[-16,0],[-7,-3],[-61,-45],[-10,-9],[-2,-10],[1,-6],[0,-5],[14,-27],[2,-12],[-2,-4],[-1,-3],[0,-2],[-2,-1],[-6,-6],[-25,-16],[-39,-24],[-2,-1],[-7,-3],[-35,-1],[-6,-1],[-13,-8],[-29,-19],[-78,15],[-14,1],[-4,1],[-122,7],[-24,-14],[-29,-11],[-65,-25],[-10,-3],[-10,-1],[-12,8],[-31,24],[-16,7],[-15,4],[-16,1],[-36,-6],[-43,-3],[-21,0],[-18,6],[-6,5],[-5,3],[-1,1],[-8,9],[-10,7],[-9,2],[-15,2],[-23,-11],[-80,-42],[-14,7],[-58,31],[-19,9],[-135,-12],[-37,-11],[-11,-2],[-22,-7],[-72,-19],[-43,-5],[-70,-7],[-2,-1],[-35,-6],[-74,-16],[-31,-6],[-5,-5],[-7,-12],[-3,-17],[-16,-43],[-21,-6],[-31,-7],[-4,0],[-38,-35],[-13,-11],[-79,-73],[-6,-5],[-36,-34],[-19,17],[-5,4],[-13,11],[-16,9],[-7,4],[-8,2],[-14,3],[-34,2],[-8,1],[-48,-74],[-4,-9],[-4,-17],[-3,-8],[-10,-8],[-85,-10],[-25,-2],[-7,-3],[-30,-10],[-16,-5],[-6,-16],[-6,-8],[-18,-15],[-15,-11],[-10,-3],[-11,0],[-3,0],[-23,-1],[-6,-2],[-36,-41],[-25,0],[-57,-16],[-72,-44],[-12,-13],[-34,-50],[-17,-15],[-4,-4],[-59,-51],[-8,-8],[-1,-1],[-2,-1],[-10,-6],[-65,-19],[-11,-3],[-10,-3],[-101,-25],[-5,-1],[-8,-2],[-12,-1],[-6,3],[-9,10],[-2,2],[-1,0],[-1,-1],[-69,-59],[-49,1],[-8,0],[-89,-17],[-7,-2],[-9,-4],[-5,-2],[-22,-9],[-20,-9],[-3,-1],[-11,0],[-130,5],[-1,1],[-15,7],[-17,12],[-14,10],[-33,24],[-2,1],[3,26],[0,7],[-2,10],[-5,4],[-11,3],[-21,-7],[-28,-21],[-7,-5],[-1,-2],[-18,6]],[[13289,43529],[3,15],[-35,38],[-32,15],[-98,7],[-99,-8],[-40,7],[-12,7],[-18,20],[-8,41],[19,65],[46,63],[33,23],[61,-5],[73,-6],[11,-1],[28,-3],[85,-11],[21,4],[29,20],[5,8],[5,35],[-26,34],[-32,15],[-62,15],[-57,32],[-16,11],[-38,41],[-11,19],[-14,45],[-4,70],[4,33],[7,48],[13,36],[3,6],[46,39],[78,27],[52,33],[163,132],[4,27],[1,5],[0,3],[-37,67],[-12,22],[-20,49],[-20,78],[2,20],[-9,21],[-14,34],[-14,20],[-18,25],[-56,34],[-38,22],[-65,23],[-3,1],[-1,0],[-18,9],[-19,8],[-39,10],[-121,53],[-122,72],[-16,-1],[-13,0],[-14,38],[-6,19],[-29,80],[-1,3],[-1,3],[-1,2],[-2,3],[-1,3],[-5,21],[-10,45],[-12,53],[-1,7],[0,3],[-1,32],[4,17],[9,89],[6,14],[26,63],[3,7],[4,5],[16,19],[5,35],[-3,7],[-8,22],[-14,36],[-1,4],[-1,3],[-1,4],[0,4],[0,4],[0,32],[0,4],[0,3],[1,4],[1,4],[1,4],[1,3],[2,4],[1,2],[17,32],[7,14],[1,1],[2,3],[2,3],[2,3],[-12,36],[-22,61],[-12,42],[5,37],[9,14],[4,58],[-12,55],[14,58],[-41,74],[11,54],[-3,1],[-85,34],[-6,53],[-4,40],[68,24],[-2,4],[-3,7],[-30,32],[-36,30],[-42,45],[-24,46],[-3,27],[-36,38],[-15,11],[-46,10],[-26,11],[-38,42],[1,9],[-13,33],[-109,116],[-9,15],[-3,24],[5,64],[-30,32],[-112,46],[-39,12],[-19,8],[-39,42],[-14,48],[-29,32],[-67,56],[-68,51],[-7,0],[-26,9],[-35,38],[-23,58],[-27,29],[-25,17],[-34,21],[-65,47],[-42,19],[-61,66],[-58,83],[-83,74],[-12,2],[-71,28],[-56,61],[-24,46],[0,5],[-10,25],[-99,144],[-29,90],[-27,92],[-8,25],[-63,115]],[[93622,40270],[-33,10],[-27,6],[-67,15],[-8,2],[-50,11],[-44,10],[-39,9],[-31,7],[-18,4],[-9,2],[-24,6],[-23,5],[-87,19],[-75,17],[-10,2],[-27,6],[-24,6],[-28,6],[-381,84],[-66,14],[-7,-4],[-119,-82],[-124,-94],[-47,-36],[-50,-37],[-94,-72],[-78,-59],[-26,-20],[-30,-22],[-31,-23],[-99,-72],[-1,-1],[-121,-88],[-17,-13],[-18,-13],[-19,-14],[-147,-106],[-98,-77],[-4,-4],[-48,-35],[-21,-17],[-13,-9],[-9,-7],[-32,-21],[-169,-126],[-56,-40],[-103,-75],[-143,-108],[-48,-35],[-33,-25],[-29,-22],[-21,-16],[-19,-15],[-31,-22],[-3,-2],[-27,-21],[-27,-20],[-113,-84],[-26,-20],[-51,-37],[-137,-102],[-115,-83],[-19,-15],[-30,-22],[-21,-15],[-37,-27],[-56,-42],[-2,-3],[-23,-16],[-23,-18],[-168,-125],[-4,-3],[-39,-29],[-18,-13],[-21,-15],[-17,-13],[-13,-9],[-18,-12],[-18,-14],[-22,-16],[-23,-17],[-18,-13],[-8,-5],[-47,-34],[-4,-3],[-23,-17],[-20,-14],[-28,-22],[-25,-18],[-184,-136],[-25,-19],[-110,-82],[-27,-20],[-30,-22],[-42,-31],[-1,0],[-49,-37],[-18,-13],[-154,-115],[-36,-27],[-66,-47],[-33,-26],[-36,-26],[-37,-28],[-34,-25],[-3,-3],[-41,-30],[-44,-32]],[[88432,37463],[-4,22],[-1,76],[-6,6],[-21,12],[-48,17],[-28,15],[-32,28],[-5,2],[-2,1],[-16,6],[-58,50],[-2,1],[-1,1],[-6,6],[-6,7],[-4,5],[1,6],[3,4],[17,5],[4,1],[8,6],[19,76],[1,13],[-3,7],[-4,3],[-5,1],[-6,-1],[-15,-3],[-8,-2],[-1,1],[-15,7],[-12,7],[-9,8],[-12,21],[-7,12],[-36,81],[-2,23],[1,16],[1,0],[3,2],[1,0],[7,0],[12,-10],[10,-8],[6,-2],[8,2],[0,2],[0,2],[1,2],[-13,69],[-1,5],[-7,19],[-17,20],[-25,27],[-6,6],[22,4],[3,1],[9,3],[9,7],[2,6],[0,12],[-12,87],[-8,37],[-8,24],[2,11],[4,24],[1,5],[14,81],[6,8],[3,5],[27,36],[20,27],[2,4],[27,50],[0,1],[10,36],[1,7],[-1,8],[-22,5],[-54,14],[-5,5],[-4,3],[-23,23],[-25,25],[-87,85],[-21,30],[-7,15],[-2,6],[-6,19],[0,11],[3,4],[2,5],[6,3],[6,-1],[7,-1],[2,0],[33,2],[0,2],[0,101],[0,4],[-4,67],[-7,123],[-2,5],[-11,7],[-2,-1],[-21,-5],[-13,1],[-11,5],[-7,13],[-1,6],[-3,33],[-10,80],[1,3],[0,3],[1,15],[2,7],[2,3],[4,4],[1,1],[10,4],[10,0],[2,1],[77,22],[7,2],[-55,8],[-4,1],[-39,35],[-13,11],[-4,7],[-13,31],[-20,49],[-38,91],[2,17],[1,2],[3,7],[44,116],[8,22],[4,6],[28,51],[1,1],[7,12],[7,12],[4,7],[-48,64],[-5,7],[-16,20],[-21,29],[-11,-6],[-10,2],[-12,5],[-13,11],[-11,16],[-8,9],[-45,-2],[-62,29],[-40,29],[-1,2],[-45,91],[0,6],[0,32],[4,7],[2,3],[6,1],[17,-10],[9,0],[8,0],[12,7],[19,18],[8,13],[2,15],[-5,28],[-2,11],[-4,17],[-37,110],[-9,9],[-4,1],[-13,-2],[-1,0],[-55,64],[-18,28],[-49,49],[-13,4]],[[88483,48216],[18,-13],[71,-58],[78,-49],[21,-11],[29,-9],[24,-2],[24,4],[19,10],[18,24],[14,21],[21,11],[39,-6],[31,-14],[16,-16],[-5,-34],[-14,-25],[-7,-21],[4,-27],[23,-21],[24,-7],[31,0],[24,1],[4,-1],[18,-5],[13,-20],[0,-26],[-4,-6],[-9,-14],[-19,-17],[-36,-25],[-11,-20],[9,-21],[10,-4],[10,-4],[29,0],[23,6],[24,21],[20,27],[11,27],[8,20],[15,16],[21,5],[21,-4],[22,-14],[5,-4],[19,-11],[20,-9],[18,-19],[6,-21],[-12,-21],[-22,-17],[-32,-17],[-25,-16],[-13,-25],[27,-30],[28,-24],[21,-9],[42,-10],[23,-4],[68,-24],[51,-23],[31,-12],[93,-41],[31,-14],[51,-20],[42,-8],[22,-7],[23,-13],[27,-12],[46,-27],[5,-2],[28,-8],[43,-9],[46,-12],[21,-3],[46,1],[30,4],[26,5],[49,10],[169,16],[28,7],[27,10],[27,8],[33,8],[27,7],[15,0],[6,0],[24,-3],[20,-9],[23,-21],[7,-25],[-7,-25],[-1,-3],[-10,-20],[-14,-18],[-19,-21],[-1,-6],[-4,-28],[-2,-8],[16,-17],[5,-1],[18,-4],[28,5],[24,12],[16,7],[24,19],[12,28],[0,26],[-6,21],[-11,19],[-30,38],[12,23],[25,5],[22,-5],[22,-17],[16,-37],[8,-34],[3,-37],[-5,-31],[-10,-23],[-15,-42],[-2,-7],[1,-2],[9,-8],[6,-6],[4,0],[24,-1],[6,-1],[1,1],[38,19],[16,17],[4,5],[3,19],[3,16],[6,29],[1,5],[7,5],[4,1],[8,4],[2,1],[37,-9],[14,-6],[4,-5],[20,-23],[11,-23],[4,-15],[-5,-27],[0,-2],[-3,-3],[-2,-2],[-32,-39],[-4,-22],[3,-16],[32,-31],[1,-1],[24,-9],[45,-6],[5,-1],[4,-6],[9,-12],[4,-6],[2,-41],[-1,-6],[-9,-53],[-14,-19],[-16,-23],[-3,-49],[12,-14],[1,-2],[42,-22],[141,-74],[2,-2],[121,-74],[264,-161],[37,-23],[3,-2],[36,4],[65,-8],[112,-14],[47,-6],[26,-12],[15,-19],[3,-5],[10,-31],[-1,-11],[-2,-21],[-1,-9],[-2,-1],[-14,-8],[-12,-6],[-44,3],[-3,0],[-1,0],[-16,-6],[-33,-25],[-9,-29],[1,-30],[15,-41],[5,-6],[11,-12],[43,-22],[20,-20],[2,-2],[6,-20],[0,-32],[1,-23],[0,-2],[4,-5],[26,-27],[59,-44],[77,-66],[12,-10],[2,-2],[3,-3],[37,-38],[54,-63],[72,-85],[75,-57],[28,-25],[92,-84],[25,-22],[12,-14],[19,-24],[21,-17],[100,-86],[86,-50],[12,-7],[5,-1],[54,-10],[52,8],[11,1],[5,1],[25,-6],[-1,-2],[-4,-63],[0,-4],[-41,-26],[-9,-2],[-51,-9],[-6,-4],[-12,-8],[-2,-2],[-2,-3],[-2,-32],[47,-56],[-6,-10],[-12,-21],[-1,-2],[-3,-1],[-12,-3],[-5,-1],[-8,4],[-23,12],[-15,8],[-4,2],[-1,0],[-14,2],[-20,-11],[-5,-2],[-2,-7],[-3,-10],[-3,-10],[10,-78],[0,-1],[-1,0],[-98,59],[-5,5],[-6,7],[-1,-1],[-52,-30],[-6,-3],[-10,-33],[-1,-6],[-4,-37],[21,-19],[1,-1],[3,0],[30,-2],[11,-1],[4,2],[6,2],[21,-3],[10,-1],[20,-14],[14,-16],[2,-2],[3,-14],[3,-15],[1,-2],[-1,-3],[-5,-29],[-13,-15],[-3,-5],[-26,-16],[-70,-37],[-10,-3],[-20,-6],[-7,-2],[-20,-6],[-7,-4],[-6,-29],[1,-2],[15,-45],[1,-1],[0,-1],[0,-1],[22,-60],[10,-26],[11,-35],[5,-16],[-1,-1],[-3,-4],[5,-6],[3,-3],[0,-14],[-7,-53],[-1,-9],[3,-3],[7,-7],[47,-47],[5,-6],[2,-2],[87,-103],[26,-33],[32,-42],[11,-14],[67,-60],[13,-11],[49,-58],[44,-77],[10,-13],[26,-31],[82,-74],[14,-16],[20,-24],[21,-24],[9,-18],[12,-43],[3,-14],[-2,-13],[-18,-82],[-2,-11],[-8,-14],[-23,-39],[-6,-11],[-10,-10],[-20,-20],[-5,-15],[-1,-3],[23,-21],[19,-7],[5,-2],[9,-3],[15,-6],[25,-17],[3,-4],[69,-88],[50,-39],[49,-22],[4,-2],[17,-29],[-3,-28],[-2,-16],[-4,-4],[-24,-27],[-21,-12],[-3,-1],[-19,-5],[-24,-6],[-3,-2],[-6,-3],[-6,-4],[0,-2],[-2,-9],[11,-10],[5,-6],[22,-5],[15,-2],[47,-7],[6,0],[13,2],[10,3],[1,-1],[1,-2],[8,-10],[-4,-12],[-9,-29],[0,-1],[-1,-2],[30,-29],[32,-15],[9,0],[7,0],[10,-4],[25,-11],[24,-26],[4,-14],[-13,-72],[3,-17],[10,-12],[24,-11],[93,-27],[10,-36],[1,-2],[-1,-8],[-7,-39],[-2,-13],[-4,-3],[-20,-13],[-4,-2],[-1,-1],[-9,-1],[-43,9],[-21,-11],[-8,-24],[12,-21],[11,-9],[15,-2],[5,-1],[5,-1],[15,4],[8,3],[91,24],[13,8],[1,1],[8,24],[1,5],[17,15],[35,30],[1,0],[38,2],[6,0],[6,-1],[9,-3],[0,1],[-9,42],[-1,6],[-5,51],[-1,3],[10,5],[55,29],[6,3],[33,-10],[6,-8],[10,-11],[7,-9],[5,-15],[24,-71],[1,-1],[20,-21],[3,-3],[90,-64],[14,-10],[22,-3],[6,-1],[26,17],[2,1],[1,0],[24,-6],[10,-12],[15,-57],[-6,-32],[-5,-11],[-5,-3],[-9,-6],[-33,-6],[-26,-18],[-21,-28],[-20,-41],[-12,-13],[-4,-4],[-44,-32],[-1,-5],[-4,-15],[-3,-9],[27,-58],[13,-16],[10,-3],[12,-3],[23,5],[25,21],[16,12],[12,-1],[10,-15],[-1,-41],[-9,-32],[-9,-51],[2,-38],[14,-28],[3,-5],[14,-26],[5,-23],[-8,-44],[-1,-4],[-2,-1],[-49,-38],[-7,-21],[4,-12],[7,-9],[1,0],[5,-6],[20,-11],[6,-2],[27,-4],[22,-5],[21,11],[13,6],[1,1],[44,29],[20,-11],[18,-21],[19,-55],[-3,-49],[-20,-99],[-11,-53],[2,-16],[1,-3],[7,-15],[1,-2],[21,-23],[36,-40],[19,-68],[-5,-27],[-21,-30],[-36,-20],[-66,-13],[-29,-21],[-5,-29],[8,-26],[15,-21],[40,-24],[21,-25],[-2,-27],[-18,-12],[-9,2],[-13,1],[-42,25],[-1,0],[-21,3],[-3,1],[-14,-4],[-14,-9],[-46,-59],[-75,-14],[-4,0],[-21,3],[-6,1],[-85,-14],[-1,0],[-13,-8],[-8,-5],[-2,-11],[13,-15],[58,-16],[27,-26],[8,-26],[-8,-40],[-15,-17],[-30,-14],[-5,-3],[-14,2],[-2,0],[-64,7],[-17,2],[-13,-1],[-18,-12],[-1,-1],[-1,-2],[-6,-9],[-6,-32],[-38,-137],[12,-15],[40,-47],[8,-9],[-1,-6],[-2,-10],[-1,-9],[-3,-2],[-30,-20],[0,-1],[-121,-38],[-40,-24],[-28,-35],[-7,-40],[9,-37],[31,-56],[33,-43],[29,-19],[18,-12],[25,-17],[4,-3],[6,-3],[32,-16],[21,-6],[23,-14],[8,-10],[4,-6],[19,-26],[8,-42],[-6,-32],[-2,-20]],[[51759,44505],[-312,276],[-24,21],[-109,96],[-141,125],[-80,70],[-54,46],[-41,-36],[-93,-80],[-18,-16],[-94,-82],[-48,-41],[-146,-127],[-178,-154],[-153,-134],[-101,-85],[-21,-19],[-20,-20],[-19,-17],[-58,-49],[-82,-70],[-11,-9],[-36,-31],[-118,-100],[-84,-72],[-26,-24],[-19,-15],[-164,-141],[-79,-62],[-20,-19],[-47,-43],[-18,-17],[-159,-135],[-54,-47],[-24,-20],[-20,-19],[-16,-15],[-80,-71],[-68,-63],[-82,-75],[-105,-93],[-24,-19],[-31,-25],[-44,-29],[-100,-85],[-20,-17],[-41,-35],[-33,-29],[-73,-62],[-15,-13],[-28,-24],[-9,-8],[-39,-33],[86,-74],[56,-49],[50,-44],[1,0],[31,-28],[35,-30],[127,-111],[51,-44],[-53,-45],[-7,-6],[-202,-172],[-29,-25],[-59,-51],[-20,-17],[-65,-53],[-39,-31],[-95,-78],[-24,-16],[-39,-33],[-103,-94],[-22,-22],[-70,-62],[-43,-37],[-76,-67],[-75,-51],[-140,117],[-115,-103],[-13,-39],[41,-36],[78,-72],[-77,-66],[-66,-56]],[[47404,41264],[-57,49],[-43,33],[-196,177],[-72,64],[-31,26],[-19,14],[-28,-8],[-38,36],[-17,15],[-17,14],[-24,23],[-3,3],[-22,21],[-28,24],[-19,17],[-18,16],[-19,17],[-63,48],[-21,19],[-68,64],[-7,7],[-46,41],[-55,50],[-55,47],[-21,19],[-51,44],[-21,18],[-40,35],[-41,36],[-26,23],[-52,45],[-65,59],[-57,47],[-25,23],[-35,31],[-4,3],[-27,24],[-30,26],[-61,52],[-82,71],[-20,17],[-19,17],[-52,46],[-45,39],[-44,39],[-94,83],[-36,32],[-116,101],[-68,59],[-74,64],[-61,54],[-79,68],[-157,143],[-35,29],[-32,27],[-61,57],[-25,26],[-43,38],[-117,106],[-94,86],[-116,106],[-187,171]],[[25455,44311],[4,-153],[1,-53],[2,-70],[1,-55],[5,-134],[4,-97],[1,-28],[3,-86],[1,-29],[8,-140],[2,-204],[1,-117],[1,-32],[0,-69],[3,-219],[3,-247],[0,-36],[7,-313],[0,-22],[0,-2],[1,-60],[2,-349],[-53,2],[-228,3],[-67,0],[-33,1],[-110,1],[1,-37],[0,-81],[0,-56],[67,0],[3,-110],[-1,-156],[-2,-105],[-1,-186],[0,-83],[0,-33],[-1,-26],[-1,-147],[-2,-237],[-2,-157],[-28,1],[-165,2],[-206,3],[-5,-385],[0,-2],[-1,-82],[-2,-138],[-1,-107],[3,-105],[24,-16],[25,-9],[27,-3],[26,2],[25,0],[24,-6],[28,-15],[22,-5],[-4,-111],[-2,-142],[-2,-120],[-125,-1],[-74,-1],[-3,-130],[-2,-42]],[[24659,38977],[-1,-54],[0,-4],[-4,-130],[-2,-67],[-2,-73],[-5,-165],[-1,-12],[-3,-107],[-2,-81]],[[24639,38284],[-59,0],[-135,1],[-1,0],[-329,3],[-86,1],[-44,0],[-77,1],[-369,3],[-86,0],[-147,2],[-128,-7],[-30,0],[-54,1],[-39,0],[-80,1],[-51,1],[-159,2],[-139,1],[-2,109],[-1,42],[-1,68],[-1,55],[-1,52],[-1,32],[-186,0],[-5,122],[-1,36],[-1,22],[-28,-1],[-138,-8],[-25,-1],[-8,0],[2,70],[2,109],[3,110],[2,59],[-43,0],[-356,-2],[3,124],[5,193],[-57,1],[-223,5],[-20,0],[-125,2],[-140,5],[-192,8],[16,18],[2,26],[6,23],[19,22],[9,28],[1,23],[0,27],[-10,26],[-3,25],[-12,27],[-14,28],[-12,18],[-10,30],[-5,32],[2,25],[4,26],[-5,25],[-23,15],[-18,20],[-4,26],[-17,13],[-20,18],[-13,22],[-36,22],[-61,-3],[-3,20],[-2,49],[-3,85],[-2,30],[-31,-1],[-190,2],[8,119],[0,43],[-94,1],[-26,0],[-106,-1],[-239,-2],[-86,0],[-49,0]],[[20061,40413],[-148,-2],[-54,-1]],[[19859,40410],[1,25],[-1,243],[1,24],[-1,29],[-1,58],[3,42],[0,129],[0,22],[0,103],[0,171],[1,82],[0,35],[2,111],[1,53],[2,99],[6,332],[0,41],[1,9],[0,30],[1,22],[0,11],[3,348],[0,4],[2,230],[0,4],[1,127],[1,81],[1,54],[-3,169],[-5,295],[0,31],[-1,50],[1,81],[3,261],[0,44],[1,56],[0,36],[0,37],[3,242],[3,315],[3,245],[0,55],[1,37],[-25,23],[0,33],[2,50],[1,59],[6,243],[2,50],[4,160],[0,25],[5,162],[1,41],[1,53],[1,28],[1,31],[0,26],[1,39],[1,24],[1,59],[1,30],[1,34],[50,-1],[106,0],[94,-1],[151,-1],[2,56],[-2,59],[2,51],[9,204],[1,31],[3,216],[1,44],[0,201]],[[76313,41186],[-9,2],[-287,74],[-22,5],[-56,14],[-31,7],[-241,55],[-66,7],[-75,8],[-37,4],[-93,10],[-35,4],[-36,4],[-193,21]],[[75132,41401],[-28,6],[-64,13],[-12,2],[-121,24],[-186,37],[-175,34],[-80,16],[-93,18],[-26,5],[-33,7],[-54,11],[-35,7],[-142,29],[-139,28],[-22,4],[-27,6],[-42,9],[-34,7],[-76,15],[-74,14],[-127,25],[-137,27],[-55,10],[-52,10],[-254,50],[-74,14],[-37,7],[-2,1],[-99,19],[-50,10],[-37,7],[-124,25],[-3,0],[-38,8],[-139,27],[-262,52],[-23,4],[-22,4],[-179,35],[-42,9],[-23,4],[-127,25],[-74,15],[-126,25],[-66,13],[-40,7],[-22,5],[-69,13],[-38,8],[-44,8],[-38,8],[-25,5],[-327,64],[-76,17],[-40,7]],[[19859,40410],[-181,-2],[-217,-4],[-27,0],[-5,0],[-169,-3],[-47,-1],[-456,-7],[-27,-1],[-2,0],[-132,-2],[-127,-2],[-277,-4],[-217,-3],[-25,-1],[-270,-6],[-70,-1],[-254,-6],[-86,0],[-80,0],[-22,0],[-41,0],[-149,1],[-66,-1],[-7,0],[-19,0],[-40,0],[0,-74],[0,-139],[-163,2],[-79,0],[1,211],[-66,0],[-59,0],[-273,0],[-33,0],[-129,0],[-14,0],[-140,0],[-34,0],[-278,0],[-263,-1],[-365,1],[-350,0],[-128,0],[-84,0],[-3,0],[-25,0],[-20,0],[-25,0]],[[14316,40367],[26,41],[3,4],[5,6],[5,3],[51,35],[45,31],[11,17],[10,13],[3,9],[14,45],[1,5],[2,110],[0,4],[-3,27],[8,44],[4,19],[123,83],[122,71],[46,26],[29,13],[40,18],[53,-5],[30,-33],[11,-12],[34,-4],[15,9],[22,14],[18,33],[0,5],[7,50],[-35,38],[-35,21],[-6,1],[-27,26],[-32,15],[-21,19],[-53,6],[-4,0],[-24,23],[-8,8],[-29,27],[-18,17],[-45,42],[-10,11],[-136,72],[-24,2],[-13,1],[-146,115],[-49,39],[-71,77],[-63,83],[-52,66],[-68,74],[-31,21],[-45,19],[-31,9],[-14,4],[-34,24],[-22,17],[-68,24],[-112,20],[-17,1],[-22,1],[-25,17],[-36,11],[-14,10],[-21,14],[-6,1],[-72,19],[-64,30],[-83,24],[-24,7],[-7,3],[-108,49],[-39,12],[-19,6],[-2,1],[-7,8],[-11,-1],[-52,19],[-25,9],[-19,8],[-79,32],[-14,6],[-80,26],[-66,21],[-55,17],[-56,5],[-4,1],[-64,33],[-36,35],[-34,71],[-19,139],[6,66],[12,22],[37,77],[12,53],[31,31],[59,56],[148,96],[144,137],[32,40],[9,11],[14,31],[1,35],[-27,26],[-14,17],[-12,15],[-7,28],[-4,16],[8,32],[12,18],[8,10],[1,2],[5,3],[14,9],[24,10],[111,-6],[60,12],[22,17],[8,6],[23,18],[7,37]],[[36871,41660],[-128,4],[-220,3],[-111,2],[-117,2],[-106,2],[-44,3],[-20,1],[-33,2],[-44,3],[-23,1],[-15,1],[-107,4],[-23,-14],[-6,-4],[-2,-3],[-10,-22],[-26,-10],[-1,0],[6,-30],[8,-35],[-9,-23],[-1,-40],[6,-23],[-5,-38],[-2,-1],[-25,-14],[-5,-3],[-20,-6],[-8,-2],[-12,-5],[-14,-5],[-2,0],[-33,-4],[-21,-6],[-25,1],[-26,-2],[-21,-4],[-7,-27],[-2,-3],[-15,-24],[-18,-11],[-16,-3],[-24,-3],[-19,-21],[-9,-22],[-9,-7],[-11,-10],[-33,-19],[-28,-8],[-21,-5],[-12,-2],[-35,-7],[-24,-8],[-28,-6],[-29,-19],[-20,-23],[-3,-3],[-17,-22],[-16,7],[-5,3],[-23,-9],[-7,-11],[-9,-13],[-2,-1],[-22,-6],[-28,9],[-18,-35],[-27,-7],[-13,-17],[0,-1],[-5,-22],[-25,5],[-6,-1],[-15,-3],[-20,-11],[-16,-9],[-18,-3],[-20,-2],[-43,-11],[-45,-18],[-23,-14],[-5,-13],[-4,-10],[-14,-16],[-7,-7],[-19,-32],[-12,-23],[-39,-4],[-27,0],[-17,-12],[-8,-5],[-9,2],[-18,5],[-22,-4],[-18,-11],[-33,-11],[-11,-5],[-9,-4],[-36,-12],[-16,-8],[-6,-3],[-21,-13],[-7,-6],[-13,-13],[-18,-15],[-4,-3],[-21,-10],[-12,-21],[8,-27],[-4,-24],[-6,-21],[-2,-3],[-16,-20],[-2,0],[-32,-13],[-17,-23],[6,-28],[-17,-26],[-20,-17],[-6,-21],[0,-3],[-13,-17],[-3,-5],[-20,-20],[-14,-18],[-25,-30],[-27,-16],[3,-17],[1,-6],[-2,-23],[-30,-16],[-33,-5],[-17,-19],[-22,-20],[-19,-16],[-17,-23],[-12,-21],[-4,-30],[-25,-29],[-13,-7],[-14,-8],[-21,-20],[-15,-16],[-24,-8],[-3,-4],[-14,-15],[-12,-18],[-24,8],[-23,0],[-3,-1],[-2,-2],[-18,-24],[-10,1],[-19,2],[-20,-23],[-5,-24],[-1,-2],[-3,-3],[-18,-14],[-14,-23],[-20,-21],[-7,-17],[-1,-3],[-2,-2],[-21,-11],[-11,-3],[-3,-1],[-4,1],[-28,-9],[-71,-63],[-86,-55],[-56,-35],[-13,-7],[-14,-12],[-1,-2],[-19,-25],[-57,-72],[-14,-18],[-12,-15],[-1,-13],[-1,-13],[4,-6],[1,-37],[-14,-43],[-44,-69],[-52,-44],[-81,-27],[-11,-3],[-12,-6],[-28,-15],[-20,-74],[7,-17],[8,-20],[12,-13],[19,-11],[6,-7],[23,-29],[1,-1],[3,-3],[2,-4],[3,-7],[2,-9],[0,-6],[-1,-3],[-1,-1],[-10,-13],[-15,-4],[-5,-11]],[[33106,39081],[-19,10],[-63,23],[-82,28],[-61,16],[-17,5],[-1,0],[-15,7],[-9,10],[-69,83],[1,6],[1,18],[1,17],[1,2],[8,12],[-9,12],[-27,-2],[-30,-1],[-3,-1],[-6,3],[-18,9],[-7,5],[-12,13],[-8,16],[-3,0],[-68,-8],[-18,-2],[-37,-5],[-106,-8],[-29,1],[-6,1],[-71,17],[-52,12],[-6,6],[-23,1],[-10,-2],[-6,-1],[-14,-4],[-47,-12],[-13,-3],[-11,1],[-11,4],[-139,63],[-21,16],[-1,5],[-4,11],[-1,6],[-26,29],[-22,19],[-85,11],[-37,5],[-40,-1],[-1,0],[-9,-3],[-23,0],[-9,0],[-67,5],[-32,-6],[-136,-24],[-45,-10],[-33,-1],[-4,0],[-39,9],[-20,4],[-9,2],[-1,-3],[-2,-2],[-35,-12],[-130,-16],[-46,1],[-6,7],[-2,1],[-18,2],[-72,-8],[-85,-32],[-2,-1],[-2,-1],[-53,-41],[-13,-10],[0,25],[1,57],[0,107],[1,34],[0,28],[0,22],[0,30],[2,135],[1,26],[2,128],[0,5],[4,187],[2,126],[-352,14],[-247,10],[-401,14]],[[29874,40343],[-88,3],[-238,9],[-56,2],[-101,4],[-323,13],[0,58],[5,215],[2,136],[4,209],[0,1],[0,52],[2,105],[3,180],[0,33],[1,53],[2,257],[0,2],[1,75],[-177,5],[-71,2],[-222,6],[-59,2],[-53,1],[-16,1],[-46,1],[-22,1],[-104,4],[1,64],[0,8],[4,237],[2,139],[1,19],[2,171],[4,238],[4,192],[1,63],[0,27],[2,143],[2,124],[2,82],[2,127]],[[67079,43015],[-2,0],[-19,-6],[-32,-5],[-42,-8],[-23,-4],[-41,-8],[-23,-4],[-113,-20],[-80,-14],[-51,-9],[-21,-4],[-38,-7],[-26,-5],[-44,-8],[-34,-6],[-98,-17],[-63,-12],[-80,-14],[-182,-33],[-50,-9],[-64,-12],[-56,-10],[-98,-18],[-23,-4],[-29,-5],[-51,-9],[-227,-41],[-91,-16],[-27,-5],[-149,-26],[-42,-8],[-60,-11],[-57,-11],[-106,-18],[-40,-8],[-104,-18],[-21,-4],[-31,-6],[-25,-5],[-184,-33],[-64,-12],[-53,-9],[-110,-20],[-26,-5],[-42,-8],[-27,-5],[-8,-1],[-110,-20],[-71,-13],[-35,-6],[-55,-10],[-62,-11],[-46,-8],[-11,-2],[-24,-5],[-59,-10],[-73,-14],[-100,-18],[-28,-5],[-177,-32],[-109,-19],[-138,-26],[-3,0],[-45,-8],[-37,-7],[-40,-8],[-62,-11],[-26,-4],[-25,-5],[-45,-8],[-53,-10],[-107,-19],[-52,-10],[-47,-8],[-59,-11],[-108,-20],[-28,-5],[-151,-27],[-26,-5],[-53,-9],[-51,-10],[-32,-5],[-16,-17],[0,-26],[-15,-18],[-4,-27],[-22,-21],[-18,-12],[-12,-27],[-4,-22],[-14,-23],[-18,-13],[-27,-9],[-12,-28],[5,-21],[10,-36]],[[61907,41805],[-14,14],[-14,11],[-3,2],[-4,11],[0,52],[0,8],[-13,18],[-9,1],[-11,-7],[-3,-21],[-2,-8],[-1,-2],[-17,-12],[-31,1],[-6,-4],[-1,-1],[-31,-51],[-3,-13],[-4,-14],[-2,-7],[-6,-4],[-23,-12],[-40,-22],[-14,-2],[-26,-3],[-11,3],[-29,-5],[-44,-17],[-4,-1],[-4,0],[-30,4],[-20,22],[-8,10],[-9,11],[-38,4],[-19,0],[-50,-14],[-6,-1],[-5,0],[-114,9],[-77,-5],[-16,-3],[-21,-11],[-10,-5],[-8,1],[-25,4],[-4,0],[-19,6],[-2,1],[-30,10],[-15,5],[-1,0],[-34,39],[-40,24],[-25,3],[-53,-12],[-20,-6],[-32,4],[-2,0],[-2,2],[-7,8],[-2,2],[1,8],[2,10],[0,1],[6,4],[17,11],[6,3],[12,1],[23,1],[10,7],[3,16],[-8,9],[-36,31],[-14,4],[-32,7],[-4,4],[-18,18],[-28,43],[-6,9],[-47,-16],[-82,-28],[-10,-3],[-3,4],[-36,47],[-6,6],[-28,24]],[[57094,39619],[35,-37],[22,-24],[21,-23],[20,-22],[17,-20],[94,-104],[64,-58],[-64,-58],[-60,-52],[-12,-10],[-143,-123],[-123,-108],[-36,-30],[-118,-103],[-1,-1],[-74,-63],[-87,-71],[-157,-140],[-149,-130],[-23,-20],[-43,-37],[-87,-75]],[[56190,38310],[-144,122],[24,21],[42,37],[87,76],[-17,14],[-132,117],[-37,-32],[-113,-100],[-268,-237],[-21,-18],[135,-120],[35,-32],[31,-27],[24,-22],[19,-17],[36,-22],[-1,0],[-11,-4],[-17,-12],[-5,-7],[-9,-17],[-12,-25],[-12,4],[0,-1],[-63,-55],[-24,-21],[-173,-153],[-84,-74],[-9,-8],[-39,-34],[-29,-25],[-3,-3],[-130,-115],[-66,-58],[-34,-29],[-20,-18],[-75,-67],[-45,-39],[-127,-112],[-204,-180],[-10,-8],[-10,-9],[-77,-69],[-151,-136],[-104,-92],[-23,-20],[-212,-167],[-18,-15],[-57,-46],[-72,-77],[-55,-47],[-148,-125],[-112,-94],[-38,-32],[-27,-23],[-62,-58],[-42,-38],[-42,-36],[-16,-15],[-28,-24],[-33,-29],[-3,-1],[-34,-23],[-22,-21],[-20,-18],[-18,-19],[-185,-160],[-60,-52],[-67,-58],[-70,-61],[-39,-33],[-17,-13],[-12,-9],[-55,-46],[-20,-18],[-59,-51],[-3,-3],[-44,-39],[-49,-44],[-145,-123],[-53,-52],[-104,-85],[-30,-25],[-79,-57],[-40,-30],[-15,-19],[-15,-19],[-18,-21],[-32,-29],[-25,-22],[-16,-14],[-203,-179],[-53,-46],[-92,-81],[-36,-32],[-55,-48],[-49,-44],[-90,-76],[-131,-114],[-84,-71],[-29,-25],[-36,-32],[-48,-42],[-102,-89],[-1,0],[-162,-146],[-103,-90],[-9,-8],[-16,-14],[-32,-27],[-26,-24],[-30,-27],[-20,-14],[-119,-100],[-56,-51],[-72,-57]],[[50359,33255],[21,90],[-3,12],[-1,2],[-3,3],[-5,6],[-10,2],[-2,-1],[-4,-2],[-7,-1],[-9,-6],[-29,-20],[-14,-4],[-27,3],[-1,2],[-6,7],[-9,12],[-5,17],[-5,17],[-14,16],[-9,-1],[-10,0],[-20,11],[-2,1],[-4,2],[-9,11],[-15,19],[-5,6],[-50,104],[-14,32],[-3,41],[9,4],[58,21],[28,19],[10,23],[-8,9],[-15,2],[-2,0],[-25,-10],[-5,0],[-2,0],[-21,3],[-56,23],[-3,3],[-1,1],[-7,8],[2,14],[25,18],[4,3],[7,29],[-2,6],[-22,21],[-104,59],[-10,4],[-50,21],[-2,1],[-8,9],[-4,15],[8,34],[2,8],[1,1],[20,13],[12,18],[2,11],[0,3],[4,26],[-10,15],[-154,42],[-5,1],[-125,17],[-8,8],[-1,1],[-7,7],[2,16],[42,45],[4,4],[66,99],[2,14],[0,2],[1,5],[-9,11],[-12,-2],[-2,0],[-11,-2],[-60,18],[-13,15],[-28,3],[-11,-6],[-18,-80],[-2,-13],[-2,-8],[-1,-9],[-91,22],[-6,2],[-48,18],[-8,5],[-3,2],[-151,42],[-48,7],[-17,3],[-10,10],[-43,41],[-4,5],[-12,26],[-4,39],[-1,8],[-16,16],[-2,2],[-9,10],[-7,0],[-31,9],[-8,1],[-35,16],[-19,21],[-7,27],[-5,21],[-31,35],[-97,51],[-26,15],[-3,2],[-14,16],[-2,2],[-119,150],[2,8],[14,69],[14,23],[3,6],[3,24],[-15,40],[-14,12],[-5,0],[-6,1],[-21,0],[-66,2],[-2,59],[-1,32],[-1,28],[2,0],[130,-4],[12,1],[49,3],[5,0],[38,79],[0,9],[-4,32],[-1,14],[-6,57],[-54,-8],[-91,15],[23,8],[10,5],[6,2],[22,33],[3,4],[-4,8],[-3,5],[0,1],[-14,13],[-44,5],[-92,-8],[-46,-30],[-35,-4],[-20,2],[-8,1],[-11,12],[16,4],[9,2],[21,5],[67,44],[12,18],[5,32],[-5,8],[-8,12],[-12,2],[-11,-7],[-12,-42],[-7,-5],[-19,2],[-2,3],[-25,25],[-49,74],[-6,20],[23,49],[5,32],[-15,24],[3,16],[32,64],[12,18],[10,7],[4,-4],[53,-60],[11,-1],[1,0],[14,9],[4,24],[0,12],[-1,62],[-2,81],[0,9],[-11,13],[-1,1],[-4,4],[-15,8],[-75,3],[-17,-12],[-14,-18],[-3,-4],[-6,6],[-7,6],[-8,9],[-49,77],[-4,11],[4,24],[35,48],[69,36],[9,34],[-8,9],[-76,64],[-41,21],[-45,11],[-12,6],[-42,41],[-56,55],[-18,27],[3,19],[8,12],[53,35],[17,9],[52,13],[25,16],[8,13],[7,43],[2,24],[15,198],[1,19],[-8,50],[-7,8],[-3,4],[-7,1],[-12,1],[-12,2],[-19,-5],[-4,-1],[-2,0],[-29,6],[-6,1],[-3,4],[-3,4],[-7,10],[2,17],[1,3],[2,12],[4,8],[25,16],[44,19],[21,-2],[4,-4],[5,-5],[0,-17],[1,0],[1,-1],[6,-8],[10,-1],[6,-1],[9,-1],[20,6],[2,2],[30,25],[17,35],[8,17],[4,9],[4,8],[-8,6],[-26,17],[-6,4],[-25,0],[-14,-9],[-8,-13],[-2,-9],[-3,-20],[-14,-10],[-3,1],[-47,3],[-9,0],[-12,7],[-10,15],[1,30],[51,65],[3,14],[0,5],[0,1],[-9,19],[-16,18],[-16,15],[-51,49],[-60,57],[-57,12],[-14,9],[-19,3],[-16,-2],[-6,-1],[-11,-7],[-16,-61],[16,-40],[-3,-21],[-1,-9],[-8,-10],[-28,-16],[-49,9],[-30,31],[-26,55],[-93,130],[-19,46],[5,32],[37,34],[3,41],[-21,24],[-16,2],[-38,-23],[-34,4],[-5,6],[-6,20],[-1,4],[-5,-3],[-3,-1],[-13,-8],[-3,-18],[11,-13],[-3,-16],[-10,-7],[-5,1],[-23,3],[-11,11],[-48,53],[-22,24],[-16,32]],[[47600,37679],[58,52],[21,18],[126,111],[25,22],[45,34],[12,9],[56,46],[32,21],[37,20],[72,36],[109,56],[-35,56],[12,9],[112,96],[-140,123],[-115,101],[-26,23],[-100,89],[-20,17],[-20,18],[61,54],[47,39],[25,34],[138,110],[27,23],[24,19],[53,43],[83,74],[48,42],[108,94],[24,21],[38,32],[30,26],[-288,250],[-78,67],[-65,56],[-49,42],[-101,89],[-52,41],[-10,7],[-21,19],[-79,72],[-88,79],[-11,11],[-55,52],[-134,122],[-159,143],[-37,32],[-154,131],[-58,49],[-19,17],[-165,145],[-108,96],[6,23],[173,143],[119,101],[134,114],[88,75],[48,41]],[[29874,40343],[0,-67],[-3,-128],[-2,-63],[0,-2],[-4,-123],[-5,-165],[-4,-160],[-5,-174],[-2,-82],[-2,-96],[-5,-204],[-5,-216],[-1,-53],[-617,14],[-35,1],[-91,2],[-2,0],[-288,7],[-115,3],[-92,2],[-152,4],[-65,-8],[-160,-11],[4,149],[-187,2],[-6,0],[-4,-97],[-2,-52],[-7,0],[-203,0],[0,97],[-57,1],[-82,3],[-67,1],[-334,9],[-53,1],[-335,9],[-132,1],[-191,3],[-109,1],[-258,4],[-6,0],[-370,5],[-74,1],[-138,2],[-175,2],[-243,4],[-153,2],[-378,5]],[[47600,37679],[-39,18],[-10,6],[-28,15],[-16,2],[-24,3],[-1,0],[-14,-6],[-63,-24],[-10,-7],[-8,-12],[-7,-43],[-2,-11],[-10,-7],[-2,0],[-5,1],[-9,1],[-80,33],[-68,28],[-21,51],[3,-2],[17,-14],[3,-3],[43,-7],[9,0],[4,1],[3,2],[7,5],[2,11],[2,12],[0,4],[4,61],[0,4],[-19,38],[-41,83],[-6,6],[-20,24],[-9,10],[-30,11],[-26,33],[-14,23],[-72,115],[-4,6],[-4,6],[4,10],[2,6],[29,24],[14,9],[8,0],[14,1],[1,0],[6,4],[7,5],[1,7],[1,4],[-7,6],[-7,6],[-64,18],[-12,2],[-6,-4],[-3,-2],[-2,-1],[0,-37],[0,-4],[-2,-2],[-4,-3],[-1,0],[-25,3],[-54,36],[0,1],[-11,4],[-46,-1],[-70,-5],[-183,6],[-130,5],[-26,1],[-32,1],[-431,14],[-1,0],[-36,-2],[-33,-3],[-2,-128],[0,-45],[-45,0],[-120,3],[-235,0],[0,-129],[-1,-44],[-56,1],[-105,3],[-100,3],[-137,2],[-239,2],[-29,0],[-33,1],[-100,2],[-208,1],[-115,0],[-24,0],[-221,2],[-2,0],[-94,1],[-37,0],[-179,1],[-39,-3],[-187,1],[-105,1],[-80,0],[-132,1],[-2,140],[3,31],[-196,2],[-4,-173],[-62,0],[-83,0],[-61,1],[-117,1],[-92,1],[-77,0],[-40,2],[-51,3],[-76,-1],[-14,0],[-110,0],[-365,-3],[-60,2]],[[41904,37947],[1,24],[1,97],[2,83],[2,33],[-4,29],[6,287],[5,84],[-2,52],[-1,24],[1,24],[1,58],[0,47],[0,22],[2,249],[3,89],[0,22],[0,23],[2,39],[0,29],[-2,116],[-1,1],[1,25],[2,70],[17,34],[-14,26],[-2,25],[2,37],[2,29],[2,36],[0,24],[-5,42],[0,22],[5,26],[1,66],[1,79],[-1,25],[1,29],[1,47],[0,48],[0,31],[1,77],[0,30],[0,29],[1,37],[1,37],[0,35],[1,26],[0,30],[0,24],[2,93],[-25,6],[-38,-2],[-2,80],[-123,-1],[1,124],[0,76],[0,7],[198,0],[-1,156],[-2,177],[1,18],[5,173],[1,63],[-2,49],[0,52],[-1,69],[-1,42],[-193,3]],[[65524,34729],[-28,-8],[-18,-5],[-31,3],[-82,2],[-39,-9],[-41,-22],[-34,-34],[-70,-114],[-3,-38],[0,-3],[18,-24],[15,-2],[3,0],[20,6],[36,23],[27,10],[37,1],[13,-3],[15,-3],[15,-12],[16,-11],[18,-5],[49,-6],[60,17],[36,-5],[1,0],[16,-7],[2,-1],[1,-1],[3,-3],[12,-14],[-2,-9],[-2,-15],[-9,-15],[-28,-29],[-26,-28],[-35,-22],[-58,-26],[-40,-17],[-13,-3],[-10,-3],[-34,-9],[-99,10],[-135,22],[-38,16],[-27,14],[-69,36],[-43,27],[-20,14],[-43,31],[-59,11],[-227,45],[-21,10],[-18,17],[-12,12],[-17,10],[-18,2],[-22,3],[-1,0],[-12,-4],[-19,-16],[-4,-3],[-3,-14],[-5,-18],[-4,-6],[-4,-7],[-32,-17],[-9,-2],[-52,9],[-3,1],[-61,25]],[[64257,34513],[1,5],[-1,7],[3,13],[7,6],[36,27],[3,4],[13,16],[7,14],[7,15],[10,39],[4,27],[2,11],[-2,27],[-10,28],[-15,45],[-3,7],[-2,3],[-65,81],[-4,5],[-17,21],[-17,21],[-14,48],[-13,15],[-8,1],[-38,5],[-35,-1],[-30,-10],[-39,-25],[-8,0],[-20,0],[-1,0],[0,1],[-10,12],[-5,14],[-1,5],[0,4],[0,4],[6,71],[-14,43],[-3,8],[-8,12],[-35,48],[-53,4],[-25,-19],[-14,-4],[-37,5],[-31,23],[-58,67],[-1,1],[-11,23],[-24,24],[-23,17],[-118,59],[-11,8],[-5,3],[-57,54],[-70,53],[-83,54],[-78,42],[-5,31],[-10,15],[-40,2],[-6,3],[-42,35],[-21,25],[0,18],[0,4],[15,9],[-1,14],[-26,38],[-2,3],[-8,10],[-29,14],[-19,21],[0,2],[-4,13],[12,74],[6,33],[1,8],[7,4],[9,6],[33,22],[9,13],[0,21],[1,3],[-14,15],[-57,37],[-16,1],[-7,0],[-11,1],[-53,-35],[-31,7],[-5,5],[-11,11],[29,45],[1,1],[64,160],[5,11],[7,29],[2,8],[3,53],[1,11],[0,1],[-4,14],[-1,1],[-11,14],[-6,7],[-76,55],[-50,7],[-6,0],[-3,4],[-8,12],[-2,2],[-4,14],[-4,36],[3,19],[1,2],[1,6],[5,6],[7,9],[0,7],[0,6],[1,12],[-14,15],[-30,3],[-15,1],[-5,5],[-18,18],[-11,10],[20,66],[14,13],[13,13],[5,13],[0,2],[6,34],[0,2],[-4,14],[-29,37],[-2,3],[0,1],[1,26],[3,6],[2,7],[21,11],[48,-1],[16,11],[1,1],[4,21],[-28,23],[-15,24],[-24,27],[-58,50],[-4,3],[-5,4],[-10,2],[-9,1],[-2,0],[-31,-13],[-18,3],[-6,0],[-18,8],[-19,22],[-1,2],[-42,78],[0,1],[9,6],[37,5],[3,0],[99,-10],[3,0],[22,-5],[14,9],[7,12],[2,3],[29,62],[1,19],[1,8],[0,6],[-25,153],[-16,18],[-49,37],[-39,29],[9,3],[30,10],[41,15],[1,0],[36,64],[14,28],[0,1],[0,7],[-1,9],[-6,7],[-1,1],[-1,1],[-15,2],[-15,-12],[-6,-19],[-12,-7],[-2,-2],[-45,-5],[-3,0],[-20,3],[-2,0],[-8,9],[1,3],[4,10],[0,4],[-5,38],[0,2],[-2,1],[-33,10],[-13,4],[-19,21],[3,33],[2,16],[-11,12],[-13,1],[-23,2],[-5,11],[-9,21],[-3,7],[10,78],[-24,8],[-21,25],[2,17],[2,9],[6,36],[1,7],[-30,69],[-7,7],[-20,19],[-14,12],[-20,11],[-19,22],[-3,2],[-3,36],[6,21],[25,14],[60,1],[20,12],[1,1],[82,113],[33,50],[13,20],[4,6],[1,3],[2,15],[1,4],[-3,5],[-7,12],[3,38],[99,64],[14,23],[3,5],[-1,14],[-3,20],[2,128],[11,85],[0,1],[-11,11],[-1,1],[-7,6],[-96,49],[-3,2],[-154,84],[-13,15],[7,22],[14,9],[22,0],[21,11],[3,39],[0,1],[-2,11],[-3,10],[-1,2],[-13,15],[-28,4],[-24,8],[-16,19],[-5,5],[3,17],[14,11],[37,15],[18,11],[17,23],[2,16],[-4,14],[-2,6],[-11,12],[-17,11],[-38,1],[-26,12],[-10,11],[-4,4],[4,43],[-12,33],[-8,19],[-23,27],[-3,4],[-10,17],[-7,15],[-12,66],[-1,9],[1,20],[1,6],[1,17],[0,7],[13,8],[20,42],[37,79],[6,11],[28,95],[-34,42],[-13,18],[-59,86],[-34,55],[-44,71],[-5,7],[3,33],[70,40],[5,15],[3,8],[-21,24],[-2,2],[-4,11],[11,47],[0,4],[-16,44],[-1,4],[-7,17],[-11,4],[-16,5],[-53,30],[-2,1],[-53,31],[-25,14],[-7,9],[-6,7],[-2,8],[1,46],[0,1],[-5,13],[-4,9],[-20,27],[-35,21],[-49,11],[-24,28],[-5,6],[6,19],[6,15],[15,44],[3,9],[6,18],[49,8],[7,4],[7,17],[20,54],[50,73],[5,7],[22,21],[4,3],[-2,8],[-2,9],[3,19],[17,66],[26,41],[3,12],[13,49],[2,9],[0,1],[2,14],[-8,9],[-78,85],[-21,23],[-3,3],[-5,1],[-1,0],[-43,7],[-53,4],[-35,37],[-5,9],[3,69],[0,10],[4,20],[0,4],[35,20],[9,32],[-16,20],[-5,7],[-19,2],[-37,-14],[-16,2],[-12,16],[-2,3],[3,9],[18,10],[77,46],[12,6],[25,7],[18,14],[3,20],[1,7],[-7,33],[-1,3],[-6,19],[-1,4],[-11,12],[-19,2],[-14,-9],[1,-13],[-58,12],[-41,19],[-7,2],[-77,26]],[[67079,43015],[-3,-5],[-35,-74],[-16,-31],[-106,-215],[-12,-25],[-11,-20],[-16,-30],[-54,-108],[-27,-53],[-62,-122],[-17,-33],[-2,-4],[-45,-89],[-35,-70],[-11,-26],[-11,-24],[-30,-69],[-26,-59],[-9,-20],[-14,-33],[-89,-208],[-1,-25],[-1,-42],[-2,-86],[-7,-265],[-1,-28],[-1,-32],[-5,-161],[-2,-102],[-3,-79],[-1,-27],[-1,-27],[0,-26],[-2,-38],[-1,-49],[-1,-27],[-2,-73],[0,-24],[-1,-46],[-1,-50],[-1,-36],[-1,-65],[-1,-39],[0,-5],[-1,-52],[-1,-31],[-1,-49],[0,-7],[-1,-46],[-1,-24],[-3,-42],[-1,-16],[-4,-25],[-29,-170],[-6,-35],[-1,-3],[-6,-36],[-5,-29],[-5,-26],[-5,-32],[-7,-34],[-6,-35],[-4,-25],[-9,-49],[-12,-69],[-23,-129],[-16,-88],[-8,-47],[-8,-44],[-4,-26],[-5,-24],[-4,-22],[-6,-32],[-7,-42],[-10,-56],[-4,-23],[-7,-42],[-11,-58],[-9,-55],[-1,-4],[-5,-25],[-3,-21],[-4,-25],[-17,-95],[-5,-31],[-5,-32],[-5,-31],[-21,-118],[-18,-101],[-23,-137],[-5,-31],[-6,-32],[-5,-25],[-7,-37],[-9,-55],[-12,-68],[-11,-66],[-26,-164],[-23,-144],[-7,-40],[-8,-54],[-5,-30],[-16,-107],[-1,-4],[-3,-24],[-19,-122],[-8,-49],[-18,-125],[-15,-96],[-5,-40],[-18,-119],[-6,-33],[-4,-27],[-19,-131],[-17,-115],[-8,-45],[-7,-48],[-6,-44],[-4,-23],[-23,-152],[-12,-78],[-18,-113],[-3,-19],[0,-3],[-20,-100],[-28,-143],[-5,-24],[-13,-66],[-14,-71],[-16,-83],[-9,-46],[-2,-8],[-8,-45],[-9,-39],[-9,-48],[-6,-43],[-14,-122],[-4,-32],[-3,-31],[-22,-178],[-6,-49],[-3,-33],[-1,-8],[-5,-41]],[[70773,42256],[-12,-19],[-1,-17],[-27,-38],[0,-7],[0,-6],[0,-6],[3,-5],[8,-9],[8,-9],[-2,-8],[0,-7],[2,-4],[12,-32],[4,-10],[2,-5],[4,-2],[3,-2],[12,-2],[6,3],[5,0],[62,-122],[1,-3],[3,-25],[0,-9],[1,-4],[-7,-22],[-1,-4],[17,-87],[-8,-11],[6,-15],[11,-27],[7,-39],[-1,-3],[-5,-1],[-10,-2],[-10,-7],[-1,-8],[1,-3],[2,-17],[1,-16],[4,-42],[7,-50],[3,-19],[11,-82],[0,-2],[-1,-43],[-10,-17],[-1,-5],[4,-4],[29,-23],[6,-1],[32,-10],[38,-45],[2,-4],[25,-54],[8,-63],[0,-43],[-13,-64],[-7,-19],[-1,-1],[-4,-5],[3,0],[44,1],[0,-10],[-1,-9],[1,-3],[0,-15],[0,-1],[17,-79],[4,-5],[1,-1],[20,-25],[18,-22],[5,-2],[10,2],[4,-1],[12,-11],[5,-12],[3,-9],[0,-3],[5,-18],[-3,-7],[-1,-1],[-20,-20],[-12,-12],[6,-5],[21,-20],[73,-67],[1,-1],[15,-27],[31,-117],[0,-8],[-14,-90],[-46,-68],[36,-104],[0,-8],[0,-20],[0,-18],[0,-2],[36,-52],[9,-12],[31,-13],[5,-2],[9,-19],[2,-5],[3,-37],[-2,-3],[-18,-17],[-1,-3],[-7,-19],[1,-15],[1,-32],[3,-5],[1,-2],[12,-18],[9,-14],[10,-14],[15,-22],[7,-11],[17,-16],[105,-104],[12,-3],[37,0],[3,0],[40,-53],[2,-4],[10,-50],[-21,-52],[-2,-4],[3,1],[44,8],[8,-15],[23,-43],[55,-107],[25,-49],[2,-4],[31,-60],[26,-54],[10,-24],[2,-7],[-37,-84],[12,-4],[4,-3],[15,-50],[-2,-9],[-6,-7],[-5,-5],[-10,-25],[-2,-8],[-6,-70],[0,-6],[-1,-7],[1,-1],[4,-7],[7,0],[50,-2],[19,-1],[7,-5],[2,-5],[0,-11],[-19,-113],[-48,-128],[-2,-5],[-83,-181],[-49,-37],[-13,-10],[-2,-1],[-2,-2],[-65,-59],[20,-26],[15,-23],[10,-37],[0,-2],[-6,-20],[-15,-17],[-15,-20],[-10,-114],[-2,-15],[-23,-160],[0,-2],[-22,-113],[-19,-100],[-11,-55],[-16,-103],[-7,-45],[-5,-27],[-28,-179],[-9,-50],[-20,-114],[-18,-97],[-6,-34],[-5,-28],[-5,-49],[-3,-35],[-9,-131],[-8,-68],[-16,-123],[-6,-47],[-9,-70],[-21,-168],[-4,-37],[-6,-50],[-1,-3],[-4,-37],[-4,-30],[-5,-38],[-5,-31],[-16,-108],[-13,-88],[-5,-37],[-16,-98],[-4,-25],[-5,-31],[-9,-60],[0,-2],[-30,-223],[-4,-23],[-5,-40],[-1,0],[-11,-105],[-4,-41],[-3,-26],[-4,-32],[-8,-76],[-21,-161],[-7,-53],[-18,-144],[-27,-248],[-6,-56],[-13,-120],[-47,-397],[-2,-20],[-2,-10],[-7,-57],[-37,-303],[-1,-22]],[[70942,33527],[-73,-25],[-8,1],[-26,3],[-19,19],[-7,17],[-2,41],[-8,28],[-2,4],[0,3],[-3,2],[-23,31],[-40,24],[-47,6],[-9,-2],[-25,-16],[-57,-72],[-12,-8],[-19,-12],[-26,-5],[-49,9],[-16,15],[-3,4],[-12,26],[1,5],[1,15],[2,23],[-17,48],[-18,22],[-36,22],[-4,2],[-12,15],[-31,36],[-28,35],[-9,20],[-7,55],[-15,16],[-6,6],[-8,2],[-12,2],[-29,5],[-10,-1],[-18,-12],[-8,-30],[-8,-31],[-5,-3],[-24,-17],[-3,-3],[-1,0],[-16,-3],[-61,10],[-19,22],[-9,20],[-7,50],[-20,33],[-26,30],[-1,1],[-7,4],[-10,6],[-126,18],[-29,12],[-59,34],[-13,8],[-7,8],[-25,29],[-33,26],[-18,5],[-47,6],[-51,-5],[-23,-8],[-32,-20],[-36,-42],[-7,-11],[-13,-21],[-18,-29],[-2,-8],[-7,-24],[-12,-17],[-6,-4],[-15,-10],[-7,-5],[-14,-3],[-3,0],[-37,2],[-27,11],[0,1],[-16,18],[4,20],[1,7],[-6,20],[-19,21],[-14,5],[-10,3],[-9,-1],[-46,-18],[3,-68],[1,-13],[-13,-20],[-1,-1],[-5,-3],[-26,-16],[-66,-22],[-8,1],[-32,4],[-22,3],[-49,24],[-47,24],[-6,3],[-2,0],[-55,18],[-37,4],[-32,-4],[-50,6],[-2,1],[-10,1],[-66,19],[-93,32],[-22,8],[-11,3],[-219,25],[-24,-1],[-8,0],[-25,3],[-2,0],[-12,2],[-39,4],[-25,4],[-19,2],[-14,2],[-1,0],[-13,15],[-21,22],[-4,14],[-2,3],[-11,12],[-6,4],[-19,9],[-10,5],[-2,1],[-20,2],[-15,2],[-22,-3],[-1,0],[-77,-28],[-72,-16],[-13,-3],[-3,0],[-13,2],[-88,16],[-24,25],[-3,3],[-5,11],[8,43],[34,39],[15,10],[46,33],[25,18],[13,17],[5,30],[-19,21],[-8,4],[-7,4],[-66,6],[-33,3],[-8,4],[-14,5],[-16,7],[-7,8],[-21,21],[-4,5],[-12,22],[-5,10],[-1,2],[-7,6],[-22,23],[-10,2],[-29,3],[-4,1],[-9,-3],[-4,-1],[-29,-18],[-16,-26],[-5,-25],[0,-4],[6,-20],[61,-68],[4,-11],[7,-20],[-5,-30],[-9,-12],[-7,-5],[-17,-11],[-17,-4],[-6,1],[-28,4],[-20,10],[-9,10],[-9,11],[-8,10],[-11,31],[-1,12],[-4,35],[-11,29],[-16,18],[-104,74],[-32,15],[-22,2],[-27,-7],[-3,-2],[-11,-8],[-7,-4],[-19,-22],[-4,-24],[7,-15],[40,-47],[2,-2],[7,-17],[0,-1],[-3,-37],[-8,-15],[-2,-3],[-5,-6],[-10,-11],[-18,-12],[-22,-7],[-1,-1],[-5,1],[-21,3],[-21,2],[-18,22],[1,7],[7,34],[8,36],[-6,22],[-24,29],[-2,2],[-35,21],[-55,7],[-7,2],[-68,21],[-38,21],[-41,35],[-45,34],[-6,5],[-12,7],[-9,5],[-13,7],[-3,2],[-12,3],[-126,35]],[[66607,34667],[-166,30],[-26,0],[-50,-1],[-6,-2],[-149,-44],[-8,-3],[-5,-3],[-7,-5],[-11,-3],[-19,-5],[-45,-14],[-10,1],[-49,4],[-56,19],[-139,46],[-95,34],[-2,1],[-1,0],[-55,28],[-44,23],[-11,6],[-5,1],[-10,3],[-3,0],[-23,1],[-48,-25],[-8,-12],[-32,-18]],[[75132,41401],[8,-39],[9,-50],[9,-50],[3,-17],[16,-88],[13,-64],[11,-50],[11,-49],[11,-48],[6,-29],[13,-56],[13,-57],[50,-222],[14,-61],[6,-25],[6,-27],[6,-27],[15,-64],[14,-63],[12,-52],[27,-119],[9,-36],[4,-21],[6,-22],[13,-59],[12,-52],[6,-28],[28,-124],[6,-22],[5,-23],[17,-76],[16,-67],[26,-118],[7,-27],[10,-43],[12,-54],[5,-22],[30,-130],[29,-129],[20,-86],[8,-45],[11,-48],[12,-49],[20,-90],[2,-7],[11,-49],[3,-10],[11,-51],[8,-34],[1,-35],[0,-1],[5,-28],[16,-29],[13,-59],[18,-75],[17,-75],[11,-46],[11,-48],[13,-57],[11,-47],[6,-29],[18,-80],[0,-1],[6,-30],[5,-23],[16,-75],[19,-84],[7,-37],[6,-24],[5,-25],[8,-38],[14,-63],[4,-21],[19,-85],[15,-68],[10,-43],[10,-43],[15,-62],[16,-68],[5,-25],[14,-47],[78,-28],[78,-29],[23,-8],[63,-23],[46,-17],[62,-22],[43,-16],[35,-13],[24,-9],[248,-86],[43,-15],[43,-15],[107,-38],[114,-39],[63,-24],[28,-10],[66,-24],[31,-12],[30,-10],[188,-70],[24,-8],[29,-11],[3,-1],[204,-65],[40,-13],[83,-26],[37,-12],[71,-23],[3,-1],[79,-2],[221,-3],[24,0],[24,-1],[28,0],[74,-2],[27,-1],[30,0],[52,-1],[45,-1],[39,-1],[31,-1],[75,-1],[47,-1],[112,-2],[24,0],[124,-3],[35,0],[67,-2],[120,-2],[27,-1],[30,-2],[69,-1],[143,-2],[157,-3],[67,-1],[30,-1],[85,-2],[21,0],[82,-2],[40,-1],[236,-6],[24,0],[166,-3],[81,-2],[137,-2]],[[80666,36430],[-31,-19],[-23,-13],[-37,-22],[-55,-34],[-74,-44],[-109,-65],[-34,-21],[-19,-11],[-154,-92],[-35,-21],[-63,-38],[-63,-37],[-154,-93],[-28,-17],[-24,-15],[-4,-2],[-24,-14],[-82,-51],[-72,-74],[-24,-3],[-56,-7],[-82,-10],[-33,-4],[-37,-5]],[[79349,35718],[-98,-75],[-28,-23],[-28,-21],[-22,-17],[-30,-23],[-40,-31],[-69,-53],[-22,-17],[-17,-13],[-13,-22],[-11,-21],[-2,-4],[-9,-18],[-10,-23],[-15,-29],[-11,-21],[-15,-27],[-9,-32],[-24,-13],[-20,-11],[-23,-14],[-20,-11],[-22,-12],[-25,-13],[-26,-17],[-24,-11],[0,-24],[-5,-23],[-3,-24],[-17,-20],[-19,-20],[-10,-23],[-19,-21],[-12,-18],[7,-43],[-20,-26],[-11,-18],[-19,-23],[-20,-16],[-20,-23],[-20,-11],[-31,-1],[-24,-12],[-24,-11],[-26,-5],[-22,4],[-22,-6],[-23,-9],[-29,-14],[-20,-10],[-22,-19],[-21,-15],[-2,-26],[-9,-24],[-5,-24],[3,-24],[5,-24],[-17,-17],[-21,-16],[-16,-16],[-18,-16],[-22,-16],[-15,-23],[-25,-19],[-25,-10],[-21,-25],[-10,-20],[-11,-24],[-16,-23],[-8,-9],[-11,-13],[-10,-29],[-27,-14],[-2,-9],[6,-13],[11,-27],[1,-2],[8,-3],[28,-10],[12,-12],[55,-81],[2,-3],[6,-48],[0,-1],[19,-51],[-8,-16],[-11,-33],[4,-13],[19,-30],[1,0],[4,-67],[-14,-38],[6,-32],[1,-4],[1,-8],[3,-12],[5,-30],[4,-21],[-14,-14],[-8,-8],[-2,-7],[1,-6],[1,-7],[11,-32],[1,-2],[9,-18],[0,-8],[-4,-12],[-7,-11],[-12,-23],[-10,-12],[-23,-31],[-8,-11],[-17,-22],[-30,-39],[-11,-8],[-33,-20],[-12,-8],[-14,-8],[-3,-41],[-28,-29],[-15,-21],[11,-73],[-4,-88],[-5,-14],[-14,-41],[-5,-12],[-7,-13],[-12,-17],[-7,-6],[-10,-4],[-3,2],[-9,8],[-9,4],[-2,0],[-8,0],[-14,-1],[-14,-6],[-3,-3],[-3,-5],[0,-4],[-33,-19],[-1,0],[-24,-26],[-13,-14],[-10,-5],[-9,-6],[-18,-5],[-33,-11],[-14,-2],[-18,-2],[-1,0],[-2,1],[-11,5],[-27,14],[-5,0],[-2,0],[-12,-1],[-27,-8],[-12,-10],[-21,-19],[-8,-6],[0,-16],[0,-2],[-9,-28],[-27,-80],[-2,-4],[-12,-22],[-10,-13],[-3,-4],[-1,0],[-3,-3],[-2,-2],[-13,-4],[-8,-2],[-3,-6],[-31,-73],[-1,-4],[-2,-4],[-17,-41],[-5,-12],[0,-1],[-6,-24],[-9,-35],[-3,-10],[-1,-7],[7,-11],[0,-1],[10,-9],[8,-2],[15,-37],[0,-35],[1,-30],[-4,-10],[-45,-76],[-19,-26],[1,-22],[1,-45],[0,-3],[0,-4],[-5,-16],[-6,-17],[-18,-36],[-9,-3],[-69,-4],[-59,-10],[-61,-11],[12,-57],[-6,-19],[-3,-8],[-9,-25],[-8,-23],[-2,-4],[-3,-6],[-10,-5],[-7,-2],[-16,-6],[-50,-18],[-30,-10],[-6,-6],[-55,-56],[-23,-24],[-4,-5],[-38,-51],[-79,-104],[-2,-6],[-35,-94],[-8,-22],[0,-5],[-3,-15],[-17,-92],[-6,-30],[-6,-27],[-6,-28],[-1,-3],[-7,-19],[-3,-4],[-1,-1],[-18,-27],[-13,-19],[-13,-19],[-7,-9],[-14,-12],[-20,-3],[-11,-2],[-117,-16],[-3,0],[-9,0],[-6,-1],[-91,-22],[-4,-7],[-16,-11],[-9,-7],[-29,-14],[-20,-8],[-7,-1],[-9,0],[-33,4],[-22,3],[-24,-5],[-14,-3],[-52,-12],[-11,-3],[4,-6],[4,-15],[0,-30],[-2,-7],[-11,-12],[-18,-42],[-4,-80],[10,-60],[5,-18],[1,-1],[6,-4],[115,-61],[26,-4],[9,19],[16,10],[18,7],[10,4],[30,0],[21,-19]],[[76313,30861],[-35,-20],[-14,-27],[-5,-23],[-16,-20],[-6,-21],[-65,-24],[-22,-2],[-26,3],[-5,1],[-30,12],[-66,27],[-43,17],[-130,82],[-161,92],[-13,16],[3,21],[7,4],[1,1],[14,9],[9,1],[33,23],[6,38],[-22,29],[-1,1],[-23,11],[-27,4],[-7,1],[-2,-1],[-3,-1],[-92,-31],[-4,-1],[-30,4],[-6,2],[0,1],[-12,5],[-16,18],[-1,14],[5,19],[5,21],[4,16],[8,34],[-3,35],[0,1],[-1,1],[-10,14],[-2,3],[-22,17],[-15,5],[-35,11],[-19,6],[-7,8],[-8,9],[-17,18],[-9,36],[-1,21],[-2,21],[-10,58],[-11,57],[-15,40],[-15,21],[-8,5],[-10,5],[-40,6],[-29,-5],[-14,-9],[-9,-15],[-4,-5],[0,-1],[-8,-45],[3,-4],[2,-5],[-3,-20],[-8,-45],[0,-1],[-16,-20],[-29,-19],[-29,-7],[-49,9],[-22,20],[-33,40],[-32,39],[-24,11],[-40,5],[-27,-5],[-31,-6],[-30,4],[-53,6],[-13,2],[-18,8],[-25,19],[-23,28],[-8,13],[-21,37],[-25,27],[-3,5]],[[74644,31676],[-3,2],[-4,4],[-14,12],[-67,30],[-56,24],[-11,7],[-19,11],[-39,21],[-28,29],[-50,50],[-68,44],[-4,2],[-18,8],[-63,28],[-42,10],[-40,9],[-138,40],[-5,2],[-27,13],[-16,18],[-3,3],[-5,16],[-14,39],[-17,22],[-6,7],[-8,10],[-57,37],[-23,11],[-47,20],[-16,9],[-13,8],[-20,11],[-1,2],[-21,22],[-39,42],[-41,54],[-63,38],[-56,27],[-30,23],[-19,21],[-21,8],[-33,5],[-62,-21],[-29,-9],[-22,2],[-24,1],[-22,23],[-8,8],[-2,6],[2,5],[9,30],[53,28],[47,16],[21,14],[17,22],[0,1],[4,25],[3,14],[-3,13],[-8,38],[-1,66],[7,42],[5,7],[25,39],[3,16],[6,35],[-3,11],[-5,17],[-4,6],[-30,56],[-13,15],[1,10],[-41,40],[0,26],[32,62],[9,42],[-5,24],[-10,35],[-17,17],[-3,3],[-27,10],[-30,-4],[-26,-14],[-18,-33],[2,-30],[17,-48],[2,-23],[-4,-30],[2,-26],[14,-39],[-10,-31],[-1,0],[-2,-1],[-16,-20],[-36,-22],[-9,-3],[-11,-3],[-2,1],[-12,2],[-28,5],[-69,58],[-30,17],[-8,4],[-55,7],[-19,1],[-12,0],[-16,0],[-5,-2],[-6,-2],[-40,5],[-29,15],[-21,24],[-4,12],[-4,16],[2,12],[3,15],[1,6],[7,8],[35,38],[17,25],[18,38],[12,24],[11,67],[-7,17],[-31,40],[-13,15],[-34,5],[-32,-9],[-11,-2],[-32,-21],[-28,-21],[-17,-22],[-5,-33],[-28,-73],[-36,-25],[-33,-4],[-3,0],[-5,1],[-18,3],[-32,6],[-28,20],[-37,36],[-12,11],[-55,26],[-4,2],[-6,2],[-44,14],[-43,6],[-70,-5],[-3,-1],[-89,-18],[-73,-10],[-69,-10],[-33,-1],[-87,-3],[-132,-13],[-75,-12],[-40,5],[-5,6],[-4,5],[-1,1],[2,16],[23,22],[6,33],[0,2],[-2,2],[-22,25],[-8,5],[-9,6],[-2,0],[-26,3],[-6,1],[-45,-5],[-2,-1],[-38,-11],[-12,2],[-34,4],[-30,12],[-41,35],[-52,32],[-38,5],[-2,0],[-10,-3],[-11,-3],[-36,-10],[-25,-7],[-24,9],[-49,6],[-7,1],[-19,-6],[-14,-4],[-31,4],[-15,16],[-4,3],[-1,2],[-17,36],[-16,16],[-11,12],[-31,4],[-17,-3],[-11,-11]],[[64257,34513],[-5,-1],[-2,6],[-14,-9],[0,-1],[-1,-17],[-2,-37],[-15,-8],[-9,-5],[-3,0],[-37,7],[-3,3],[-11,10],[-11,6],[-102,54],[-18,3],[-10,-7],[-6,-5],[-6,-5],[-108,-30],[-1,0],[-51,6],[-8,1],[-38,-3],[-107,-72],[-128,-112],[-13,-18],[-23,-32],[-18,-26],[-83,-97],[-3,-4],[-65,-71],[-2,-1],[-89,-18],[-2,-2],[-55,-76],[-5,-8],[-3,-2],[-21,-14],[-19,1],[-7,0],[-3,3],[-11,10],[-2,2],[-2,4],[-2,4],[-6,10],[-6,31],[-4,20],[-12,23],[-21,24],[-15,8],[-31,3],[-19,-3],[-32,-18],[-24,-40],[-19,-31],[-22,-20],[-38,-35],[-96,-87],[-9,-6],[-8,-5],[-23,-5],[-3,0],[-59,2],[-10,1],[-10,1],[-15,2],[-55,-10],[0,-2],[-4,-22],[0,-3],[-3,-4],[-17,-21],[-21,-14],[-19,-2],[-49,-6],[-25,3],[-10,13],[1,7],[0,3],[-3,4],[-14,17],[-4,4],[-12,1],[-2,1],[-7,0],[-54,-14],[-29,-8],[-9,-7],[-20,-14],[-11,-23],[-3,-6],[-21,-13],[-103,-53],[-9,-2],[-37,-5]],[[62111,33651],[1,14],[1,6],[1,8],[0,6],[-12,7],[-69,35],[-9,2],[-44,3],[-53,28],[-1,1],[-2,5],[-16,39],[1,9],[3,2],[8,7],[8,4],[-1,3],[-27,59],[-33,12],[-17,8],[-54,25],[-3,2],[-63,32],[-4,1],[-69,21],[-27,-28],[-21,21],[-21,22],[-17,17],[-22,23],[-71,88],[-8,9],[-16,21],[-2,2],[-51,45],[-32,27],[-20,17],[-4,4],[-96,61],[-128,100],[-21,38],[-1,2],[-1,1],[-1,3],[-38,97],[-5,11],[-8,23],[-8,21],[-2,4],[2,1],[4,3],[0,8],[-7,48],[-1,2],[0,6],[-3,5],[-2,2],[-9,-1],[-1,0],[-12,-9],[-5,-2],[-15,3],[-8,9],[-75,90],[-9,6],[-13,9],[-12,8],[-33,24],[-27,25],[-44,56],[-7,9],[-43,70],[-22,37],[-7,11],[-11,18],[-13,19],[-17,26],[-22,35],[-34,52],[-32,49],[-1,1],[-6,14],[-21,46],[-7,15],[0,2],[7,51],[6,15],[2,7],[1,1],[-1,8],[-2,14],[-10,6],[-8,5],[-35,27],[-23,18],[-9,7],[-31,25],[-56,45],[-9,5],[-41,12],[-54,-4],[-13,-1],[-17,-1],[-202,4],[-71,8],[-25,3],[-27,3],[-12,4],[-32,12],[-1,0],[-50,17],[-52,18],[-271,94],[-1,1],[-36,12],[-38,67],[-8,6],[-61,11],[-6,-1],[-51,-6],[-54,21],[-16,14],[-23,21],[-10,9],[-5,6],[-25,31],[-31,37],[-15,19],[-14,17],[-16,20],[-4,18],[-6,31],[-7,34],[-5,3],[-9,-3],[-9,-3],[-3,-1],[0,2],[-2,16],[-20,13],[-8,2],[-9,2],[-3,1],[-3,0],[-5,0],[-2,1],[-21,17],[-25,30],[-5,6],[-31,61],[-14,27],[-20,38],[-9,18],[-3,18],[-1,4],[-1,4],[1,9],[-4,8],[-5,5],[-113,64],[-3,3],[-1,1],[-9,9],[-3,3],[-13,12],[-1,2],[-1,1],[-4,3],[-13,11],[-2,2],[-3,2],[-3,2],[-1,0],[-31,19],[-3,1],[-45,23],[-8,5],[-4,1],[-3,1],[-3,1],[-20,6],[-7,2],[-41,12],[-1,1],[-4,1],[-2,0],[-175,27],[-51,46],[-2,1],[-110,46],[-4,2],[-59,19],[-7,2],[-1,5],[-4,3],[-2,2],[-247,-1],[-24,-1],[-10,-1],[-30,2],[-71,24],[-6,3],[-13,9],[-2,1],[-14,11],[-4,5],[-3,18],[-1,2],[-14,34],[-4,10],[-1,2],[-9,12],[-149,104],[-59,41],[-31,21],[-12,8],[-86,-10],[-47,31],[-39,22],[-60,18],[-35,11],[-24,20],[-14,12],[-16,-3],[-14,5],[-17,13],[-2,2],[-5,7],[-5,7],[-1,1],[-25,43],[-6,12],[-2,5],[-13,20],[-17,15],[-31,17],[-7,1],[-47,1],[-1,1],[-24,29],[-16,31],[-38,71],[-2,3],[-8,17],[-28,56],[0,7],[-2,18],[-18,119],[-2,14],[14,109],[0,7],[-2,0],[-37,6],[-69,90],[-8,11],[-13,13],[-18,13],[-90,54],[-178,104],[-51,27],[-32,10],[-131,16],[-24,-2],[-151,2],[14,23],[105,89],[48,42],[82,70]],[[41904,37947],[3,-42],[-2,-83],[-1,-25],[-1,-34],[-1,-56],[0,-30],[1,-31],[-2,-183],[-5,-321],[0,-13],[0,-10],[0,-32],[-2,-255],[-1,-105],[-4,-357],[-1,-28],[-4,-164],[0,-4],[-3,-176]],[[41881,35998],[-59,1],[-130,1],[-54,0],[-8,0],[-72,1],[-73,0],[-205,2],[-49,-2],[-45,2],[-109,0],[-114,1],[-83,0],[-90,1],[-191,2],[-152,1],[-35,1],[-212,2],[-42,0],[-105,1],[-101,1],[-66,0],[-25,1],[-85,0],[-75,1],[-39,2],[-29,-2],[-26,-3],[-21,-1],[-32,3],[-25,2],[-86,2],[-27,0],[-181,3],[-100,1],[-33,0],[-23,2],[-109,2],[-45,1],[-182,2],[-66,1],[-1,0],[-29,-3],[-111,1],[-87,1],[-194,5],[-64,0],[-6,0],[-44,1],[-86,1],[-95,1],[-251,3],[-41,-2],[-23,1],[-28,1],[-1,0],[-40,1],[-25,0],[-28,0],[-57,1],[-29,0],[-48,1],[-25,0],[-77,1],[-68,0],[-21,1],[-33,1],[-54,0],[-39,1],[-36,1],[-338,4],[-106,1],[-42,1],[-63,1],[-58,0],[-36,1],[-22,0],[-64,-3],[-77,2],[-309,-4],[-161,0],[-112,0],[-194,0],[-106,-1],[-403,4],[-39,-6],[-39,0],[-45,0],[-31,1],[-36,6],[-2,0],[-24,0],[-26,0],[-38,1],[-28,0],[-23,0],[-56,0],[-28,0],[-26,0]],[[34504,36056],[-14,25],[5,55],[-5,40],[-21,1],[-26,4],[-8,3],[23,26],[11,75],[-23,25],[-93,87],[-26,3],[-32,-9],[-57,-25],[-23,-16],[-12,-16],[-12,-8],[-7,-4],[-14,-4],[0,-1],[-14,2],[-3,0],[-8,3],[-12,5],[-12,5],[-29,29],[3,23],[11,14],[2,2],[12,37],[3,15],[29,136],[6,43],[0,4],[-4,26],[-1,10],[19,57],[7,18],[-2,15],[-61,62],[-85,65],[-29,13],[-22,10],[-3,3],[-10,12],[-7,8],[4,31],[16,25],[39,11],[12,11],[14,11],[4,27],[4,27],[7,19],[12,37],[14,33],[5,11],[19,21],[12,12],[12,13],[8,9],[0,7],[1,25],[-26,120],[-2,58],[-2,69],[-1,52],[-70,16],[-15,-5],[-95,-31],[-10,8],[-37,32],[-2,2],[-21,-4],[-66,-16],[-60,53],[-3,3],[-30,27],[-10,4],[-4,2],[-5,1],[-19,16],[0,23],[12,23],[0,1],[-2,24],[14,6],[11,4],[33,-1],[21,69],[-27,1],[-36,-18],[-2,0],[-27,0],[-11,5],[-4,10],[-43,54],[-71,67],[-12,0],[-32,1],[-13,6],[-22,10],[-14,19],[25,146],[26,49],[2,4],[6,39],[0,1],[-8,8],[-19,18],[-23,3],[-31,-14],[-1,0],[-1,0],[-35,4],[-11,1],[-9,5],[-6,3],[-4,3],[-12,10],[-78,67],[-29,32],[-3,3],[-7,19],[2,24],[-22,65],[-2,5],[-27,54],[-102,116],[-39,28],[-26,9],[-9,10],[0,23],[15,8],[7,5],[8,4],[11,11],[3,17],[-7,71],[18,53],[15,8],[9,6],[2,1],[27,105],[12,47],[1,1],[-12,34]],[[80267,38693],[-15,-76],[-3,-19],[-3,-17],[8,-27],[7,-13],[62,-65],[6,-6],[10,-24],[0,-1],[2,-4],[-1,-16],[0,-2],[-3,-6],[-15,-11],[-3,-2],[-1,-1],[-4,-5],[1,-11],[15,-30],[17,-46],[13,-36],[6,-14],[0,-1],[43,-19],[58,-13],[29,-33],[11,-15],[8,0],[38,-8],[12,-5],[61,-28],[7,-8],[2,-9],[-4,-9],[-7,-4],[-10,-1],[-54,15],[-14,8],[-9,-2],[-2,-2],[-2,-3],[-1,-6],[9,-16],[41,-58],[2,-2],[51,-36],[21,-10],[9,-5],[11,-10],[0,-14],[-14,-12],[-1,-1],[-48,-37],[1,-7],[2,-5],[9,-6],[4,-3],[1,0],[116,-74],[7,-1],[74,-14],[2,-3],[-2,-9],[-29,-26],[-4,-4],[-6,-4],[-12,-9],[-12,-5],[-5,-5],[-5,-5],[1,0],[2,-16],[6,-52],[1,-7],[5,-5],[4,-4],[4,-2],[6,-2],[59,-17],[81,-5],[9,3],[44,13],[11,5],[8,0],[88,2],[6,1],[70,-34],[47,-22],[144,-68],[29,4],[16,-2],[12,-4],[11,-10],[2,-4],[44,-92],[24,-56],[2,-5],[1,-4],[4,-2],[7,-4],[66,-27]],[[81568,37321],[-84,-85],[-31,-30],[-20,-20],[-16,-16],[-25,-24],[-64,-64],[-119,-116],[-50,-50],[-40,-39],[-16,-17],[-74,-75],[-113,-114],[-21,-20],[-106,-103],[-45,-44],[-78,-74]],[[91972,33183],[-41,-51],[2,47],[1,33],[16,31],[20,37],[23,31],[20,29],[40,57],[43,67],[34,46],[24,28],[10,11],[47,42],[48,32],[23,16],[76,37],[81,14],[34,2],[43,0],[80,-35],[30,-58],[-13,-43],[-15,-38],[-28,-37],[-66,-66],[-59,-50],[-76,-39],[-66,-20],[-11,-1],[-51,-2],[-78,-11],[-22,-7],[-38,-11],[-42,-28],[-28,-23],[-8,-6],[-18,-12],[-35,-22]],[[88432,37463],[0,-8],[10,-20],[49,-56],[1,-1],[3,-3],[6,-5],[0,-67],[-9,-4],[-4,-7],[0,-18],[0,-2],[6,-13],[11,-23],[17,-40],[6,-12],[2,-4],[6,-13],[34,-48],[1,-1],[6,-8],[1,-1],[4,-5],[2,-2],[9,-8],[47,-46],[47,-40],[11,-7],[6,-3],[11,-6],[41,-22],[16,-2],[78,-34],[4,-2],[50,-45],[6,-4],[0,-20],[-7,-3],[-52,-3],[-25,8],[-13,1],[-7,-2],[-1,0],[-12,-6],[-8,-8],[-6,-15],[0,-2],[-1,-6],[0,-11],[7,-9],[9,-9],[11,-5],[12,0],[20,6],[9,0],[2,0],[8,-8],[22,-22],[1,-2],[34,-68],[2,-14],[-2,-3],[-22,-16],[-1,-1],[9,-11],[10,-7],[1,-1],[3,-1],[26,-9],[6,-5],[2,-6],[-1,-10],[-6,-5],[-25,-5],[-23,-22],[-10,-13],[2,-9],[41,-112],[3,-7],[21,-14],[7,0],[18,1],[9,0],[4,1],[20,4],[46,16],[16,4],[6,-2],[9,-7],[2,-5],[0,-14],[-17,-29],[0,-8],[2,-6],[6,-5],[30,-29],[91,-87],[15,-12],[37,-28],[23,-23],[8,-15],[1,-14],[0,-2],[14,-32],[20,17],[-4,31],[0,30],[10,19],[20,6],[4,-26],[1,-30],[8,-22],[24,-9],[23,-9],[20,-15],[23,-19],[5,25],[23,-12],[10,-42],[25,-3],[19,21],[27,7],[11,-26],[12,-20],[11,-27],[18,-15],[23,-23],[-4,-22],[-13,-30],[-19,-23],[-6,-26],[15,-18],[13,-9],[13,-8],[90,-45],[30,-4],[14,4],[5,4],[19,15],[35,27],[24,-3],[13,-18],[-4,-24],[-17,-23],[-7,-40],[19,-19],[14,-3],[7,-2],[4,2],[45,24],[16,3],[22,-3],[13,-15],[-4,-12],[-5,-17],[-41,-16],[-43,-33],[-2,-14],[-5,-36],[-3,-20],[20,-30],[12,-7],[10,-2],[17,-4],[38,19],[8,10],[13,56],[22,13],[16,-2],[1,0],[11,-1],[1,-4],[10,-20],[-7,-42],[-5,-27],[-3,-14],[4,-14],[16,-18],[13,-8],[13,-7],[25,-2],[73,-6],[8,-1],[42,-25],[14,-17],[16,-20],[7,-13],[1,-6],[1,-6],[-5,-19],[-3,-13],[-22,-14],[-50,-15],[-6,-4],[-22,-14],[-13,-19],[0,-1],[-4,-19],[2,-25],[16,-18],[12,-8],[7,-6],[19,-21],[3,-14],[-1,-20],[-1,-6],[0,-7],[-33,-112],[-2,-7],[4,-3],[18,-20],[15,-16],[39,-43],[24,25],[84,-11],[31,-4],[68,7],[89,-17],[36,-33],[35,-32],[9,-8],[9,-65],[-24,-96],[-10,-33],[-21,-69],[-13,-18],[-7,-40],[11,-25],[27,-64],[29,-52],[27,-47],[-16,-13],[-28,-23],[10,-54],[16,-93],[2,-9],[9,3],[103,25],[17,4],[54,3],[55,3],[37,-54],[23,-33],[16,-24],[-5,-14],[-27,-75],[-11,-32],[-41,-107],[-5,-14],[12,-11],[67,-63],[136,12],[53,25],[16,8],[81,37],[67,-61],[-33,-28],[-76,-63],[-27,-33],[-61,-72],[-12,-126],[0,-5],[2,-3],[65,-75],[9,-11],[6,-1],[118,-27],[11,-3],[111,105],[191,36],[122,-36],[32,-10],[3,-20],[12,-84],[-84,-118],[-111,-92],[0,-10],[7,-88],[1,-6],[4,0],[161,-22],[47,43]],[[91780,33057],[-9,-25],[7,-34],[6,-26],[13,18],[14,18],[31,60],[10,-50],[4,-72],[41,40],[12,12],[22,59],[35,-50],[52,-32],[55,-16],[22,-2],[24,-3],[49,0],[26,0],[88,9],[73,37],[89,38],[87,29],[57,27],[6,3],[53,26],[15,5],[40,15],[51,19],[53,18],[66,8],[50,-3],[58,-9],[37,-14],[8,-2],[16,-31],[15,-30],[10,-49],[6,-30],[10,-10],[36,-37],[8,54],[-2,28],[-1,8],[15,37],[49,-57],[41,-76],[13,-36],[-1,-52],[-16,-77],[-7,-11],[-16,-25],[-52,50],[7,-58],[19,-65],[5,-21],[3,-16],[15,-46],[11,-35],[56,-106],[82,-78],[84,-33],[19,-7],[60,-15],[14,-4],[31,-10],[52,-39],[40,-46],[-21,-42],[-38,-37],[-39,-43],[-8,-13],[-27,-40],[-33,-24],[-42,-31],[-62,37],[11,-65],[-29,-43],[-32,-31],[-36,-16],[-5,-2],[0,-1],[2,-59],[-5,-47],[-1,-11],[-14,-30],[14,-65],[-28,-69],[-50,-48],[-20,3],[-35,5],[-43,-3],[-47,-13],[-54,-30],[-80,-28],[-20,-52],[-1,-6],[-10,-42],[4,-67],[1,-14],[0,-16],[2,-40],[-14,-32],[-12,-29],[-18,-24],[-30,-39],[-29,-74],[3,-68],[24,-57],[20,-38],[6,-4],[43,-29],[44,-22],[62,-11],[45,-9],[76,-9],[71,-18],[49,-41],[-22,-74],[-36,-39],[-64,-24],[-66,-41],[-59,1],[-31,29],[-50,14],[-44,27],[-48,19],[-72,4],[-51,11],[-48,38],[-40,32],[-42,28],[-56,1],[42,-56],[28,-41],[50,-50],[63,-30],[59,8],[57,-6],[69,-37],[10,-6],[58,-37],[34,-26],[3,-53],[-29,-67],[-20,-82],[15,-68],[4,-28],[6,-53],[25,-64],[56,-70],[71,-46],[64,-62],[41,-37],[48,-70],[2,-24],[5,-46],[-3,-55],[-1,-19],[11,-65],[-5,-24],[-6,-26],[-58,-7],[-64,-7],[-49,4],[-28,5],[-26,5],[-10,0],[-53,-1],[-43,23],[-39,21],[-49,19],[-62,15],[-66,20],[-60,10],[-92,30],[-80,15],[-65,18],[-61,30],[-58,31],[-33,23],[-12,9],[-5,4],[-35,26],[-90,65],[-82,39],[-58,36],[-28,29],[-7,2],[-46,11],[-51,11],[-36,11],[-16,5],[-48,8],[-42,12],[-40,16],[-11,48],[-28,-13],[-12,-5],[-75,14],[-66,17],[-67,5],[-35,7],[-16,4],[-18,5],[-38,10],[-45,2],[-5,1],[-48,-6],[-57,28],[-54,54],[-33,50],[-6,43],[46,1],[11,0],[-35,75],[-37,28],[18,68],[-2,23],[-3,37],[18,63],[5,50],[0,55],[-15,76],[-25,75],[-62,54],[-58,32],[-20,18],[-33,30],[-19,57],[37,40],[60,15],[-74,30],[-49,-47],[-44,-17],[4,-14],[16,-53],[-58,-9],[-41,-3],[-59,-5],[-59,-26],[-84,-48],[-63,-16],[-73,-9],[-39,-8],[-12,-3],[-20,-4],[-55,-10],[-79,-13],[7,52],[19,37],[6,24],[12,46],[-5,45],[-34,52],[-83,43],[-38,20],[-24,12],[-35,27],[-7,10],[-38,50]],[[89940,31298],[89,90],[26,40],[-22,41],[-7,3],[-54,24],[-25,20],[-61,47],[-61,11],[-34,2],[-23,14],[-13,15],[0,3],[6,46],[0,2],[6,8],[28,40],[6,25],[4,13],[1,4],[-61,154],[-5,4],[-27,31],[-5,5],[-38,19],[-7,1],[-64,11],[-9,1],[-57,-3],[-6,-2],[-75,-30],[0,-1],[-1,0],[-21,-13],[-11,-7],[-8,-11],[-3,-5],[-5,-6],[-3,-15],[-1,-9],[-2,-8],[7,-7],[13,-13],[7,-6],[5,-1],[31,-6],[10,-2],[13,1],[35,12],[13,4],[74,24],[8,3],[6,-1],[13,-2],[9,-1],[11,-7],[4,-4],[3,-4],[6,-7],[9,-23],[-5,-27],[-16,-20],[-14,-9],[-37,-9],[-43,-1],[-20,-1],[-16,-7],[-8,-4],[-36,-23],[-19,-12],[-1,-12],[-2,-19],[-1,-16],[5,-10],[13,-28],[7,-15],[21,-27],[33,-43],[4,-28],[-3,-16],[-20,-25],[-14,-9],[-3,-2],[-15,-9],[-59,-22],[-32,-12],[-3,-2],[-2,-2],[-61,-15],[-106,6],[-21,1],[-5,0],[-24,25],[-2,16],[-1,7],[-2,16],[8,19],[1,4],[2,3],[16,10],[5,4],[5,1],[31,8],[9,-2],[29,-3],[12,-2],[16,-11],[29,-20],[4,0],[25,-1],[5,-1],[18,12],[8,12],[11,26],[7,38],[-42,49],[-30,4],[-47,23],[-20,11],[-30,26],[-42,36],[-51,45],[-1,1],[-8,12],[-9,11],[6,11],[0,2],[12,24],[1,0],[26,22],[21,5],[27,2],[23,21],[-1,31],[-30,26],[-24,1],[-44,-17],[-37,-14],[-25,-7],[-8,1],[-37,41],[-11,16],[-1,2],[-22,3],[-4,5],[-3,3],[-3,4],[2,14],[6,6],[18,21],[3,18],[-6,18],[-18,24],[-16,22],[-4,5],[-17,3],[-7,1],[-1,0],[-10,-4],[-7,-6],[-27,-20],[-6,-5],[-3,-9],[-4,-17],[-3,-11],[4,-49],[1,-5],[-2,0],[-49,-10],[-5,-1],[-1,8],[-13,76],[-7,64],[-1,7],[-35,13],[-23,39],[-39,42],[-16,18],[-23,24],[-1,1],[-46,10],[-4,49],[-10,138],[12,30],[1,1],[16,49],[4,36],[0,13],[0,3],[-1,5],[0,6],[-1,1],[-2,5],[-7,6],[-15,14],[-17,29],[-4,8],[0,8],[0,6],[0,2],[1,1],[2,3],[3,13],[4,23],[-1,7],[-4,9],[-3,2],[-9,12],[-31,38],[-14,18],[-12,10],[-8,6],[-7,0],[-68,-2],[-64,27],[-9,6],[-41,27],[-11,10],[-5,6],[1,8],[17,79],[4,5],[4,6],[16,22],[27,34],[4,7],[3,15],[3,16],[13,66],[-5,8],[-26,52],[-19,39],[-6,12],[1,34],[2,35],[1,24],[0,4],[-11,17],[-107,105],[-6,5],[-9,8],[0,8],[5,43],[-5,6],[-30,36],[-14,20],[-13,17],[0,2],[-8,23],[-7,20],[0,2],[0,2],[0,8],[8,13],[2,4],[6,5],[1,2],[11,9],[11,6],[2,0],[24,6],[5,7],[26,141],[-1,10],[-7,10],[-47,66],[-14,12],[-6,11],[-34,59],[0,3],[1,11],[3,8],[0,18],[-47,104],[-10,18],[-3,2],[-19,-2],[-8,-3],[-10,-3],[-4,-2],[-77,-29],[-5,-2],[-32,-26],[-1,-1],[-18,-14],[-3,-2],[-28,-14],[-1,-1],[-12,-4],[-70,-22],[-30,-7],[-23,-2],[-3,1],[-19,5],[-64,12],[-9,3],[-29,9],[-29,9],[-21,7],[-173,54],[-177,55],[-90,28],[-21,7],[-21,7],[-40,12],[-62,20],[-58,19],[-24,7],[-11,34],[-10,29],[-14,43],[-15,46],[-14,42],[-36,106],[-7,20],[-5,16],[-9,29],[-13,39],[-3,8],[-8,27],[-31,42],[-22,13],[-35,21],[-21,7],[-27,-3],[-57,-7],[-38,-10],[-28,-9],[-4,-8],[0,-4],[-1,-2],[-2,-32],[-10,-16],[-3,-4],[1,-38],[10,-6],[12,-14],[3,-15],[-4,-6],[-44,-47],[-6,-2],[-4,-1],[-5,2],[-12,9],[-3,5],[-1,1],[1,8],[1,16],[-9,10],[-10,5],[-64,25],[-29,10],[-43,8],[-29,5],[-23,-3],[-64,-58],[-33,-31],[-3,-3],[-13,-18],[-11,-10],[-15,-5],[-12,0],[-8,3],[-4,2],[-20,15],[-39,30],[-28,22],[-8,6],[-11,11],[-3,24],[-3,7],[-1,3],[-5,7],[-9,5],[-2,0],[-10,3],[-39,3],[-5,8],[-4,2],[-4,-1],[-4,-3],[-57,-33],[-15,-12],[-26,-26],[-40,-48],[-19,-61],[33,-10],[1,-17],[0,-1],[-23,-14],[-16,-4],[-6,0],[-9,1],[-10,1],[-2,1],[-4,2],[-8,5],[-24,15],[-5,5],[-65,28],[-13,0],[-26,1],[-26,0],[-6,0],[-11,7],[-2,4],[-1,3],[-1,8],[-5,20],[-2,9],[-11,-6],[-75,-45],[-48,-29],[-65,-15],[-46,-10],[-1,0],[-44,-3],[-3,0],[-53,19],[-9,3],[-7,3],[-5,-3],[-31,-16],[-3,0],[-109,-7],[-11,0],[-20,1],[-31,2],[-11,0],[-64,4],[-1,0],[-27,3],[-7,2],[-7,3],[-5,7],[-2,5],[0,2],[2,19],[-5,27],[-12,25],[-17,26],[-13,19],[-17,26],[-7,7],[-6,3],[-20,33],[-50,12],[-105,54],[-11,10],[-13,0],[-7,-2],[-5,-3],[-21,-15],[-5,-5],[-6,-3],[-3,-1],[-8,-2],[-5,0],[-37,-5],[-3,1],[-11,3],[-1,3],[-11,8],[-14,3],[-12,0],[-1,0],[-108,-3],[-5,-1],[-3,0],[-29,-4],[-11,-2],[-9,0],[-4,2],[-1,0],[-4,6],[23,62],[12,29],[4,10],[3,8],[2,18],[5,42],[-15,107],[-15,109],[-1,6],[-15,30],[-3,7],[-5,4],[-9,3],[-47,5],[-46,11],[-31,8],[-20,5],[-9,4],[-7,9],[-3,6],[0,1],[0,5],[-1,8],[2,4],[2,73],[0,32],[1,5],[0,2],[1,17],[-2,2],[-1,31],[-1,9],[-4,3],[-10,-2],[-20,-5],[-6,1],[-16,6],[-3,3],[-11,10],[-4,4],[-6,10],[-2,11],[10,34],[1,3],[2,7],[8,12],[1,2],[17,18],[3,3],[4,12],[-1,4],[0,3],[-2,5],[-11,29],[-3,7],[-51,52],[-44,46],[-23,15],[-9,3],[-44,19],[-2,1],[-60,72],[-39,46],[-1,1],[-22,31],[5,6],[24,31],[-9,26],[-20,59],[-2,5],[-23,42],[-4,5],[-1,1],[-6,2],[-150,83],[-11,1],[-27,1],[-11,5],[-3,3],[-2,1],[-74,54],[-19,38],[-3,6],[-15,41],[-1,1],[1,3],[2,7],[-3,5],[-5,4],[-8,2],[-9,-2],[-28,-23],[-11,6],[-9,12],[-124,152],[-3,5],[-2,23],[0,2],[3,5],[21,20],[-19,-6],[-25,-7],[-22,-2],[-9,2],[-8,6],[-14,9],[-13,16],[-25,34],[-2,3],[-8,10],[-5,9],[-5,15],[-1,4],[-13,5],[-1,0],[-83,7],[-17,1],[-24,-6],[-16,-6],[-7,-2],[-9,-3],[-10,-6],[-14,-2],[-19,5],[-30,12],[-50,26],[-2,2],[-2,2],[-1,2],[-2,8],[-3,10],[-2,19],[-3,8],[-31,17],[-113,62],[1,16],[-4,19],[-2,14],[-2,8],[-4,8],[-2,3],[-61,111],[-2,5],[-1,1],[-13,14],[-34,19],[-5,2],[-5,0],[-8,-1],[-20,-9],[-10,1],[-62,12],[-1,0],[-13,5],[-12,7],[-11,11],[-32,36],[-17,18],[-18,31],[-4,50],[-3,13],[-1,4],[-3,8],[-2,3],[-32,59],[-29,4],[-55,7],[-1,0],[-39,9],[-9,2],[-12,4],[-3,7],[-2,7],[-2,26],[-5,7],[-14,3],[-58,-26],[-30,-17],[-26,-5],[-22,1],[-27,9],[-1,1],[-1,1],[-39,33],[-9,3],[-28,11],[-71,27],[-6,-1],[-7,-4],[-2,-5],[-2,-8],[0,-3],[-3,-20],[-3,-6],[-8,-16],[-12,-11],[-11,-4],[-10,-1],[-3,0],[-35,7]],[[94056,32184],[78,-24],[32,4],[63,11],[59,6],[58,-11],[51,-12],[54,-7],[12,-3],[31,-7],[45,-9],[19,-4],[20,-7],[25,-8],[22,-13],[26,-14],[81,-55],[63,-44],[-13,59],[55,-18],[72,-20],[58,-37],[73,-36],[-11,-38],[-8,-27],[-49,-9],[-16,7],[-27,11],[-19,6],[-29,10],[0,-59],[0,-2],[0,-14],[51,-36],[42,-36],[42,-21],[27,-8],[26,-6],[8,-4],[60,-28],[49,-6],[12,-1],[14,-1],[25,-2],[35,-45],[48,-57],[46,-27],[17,-10],[13,-3],[30,-8],[31,-18],[-8,-20],[-14,-31],[81,30],[67,47],[12,26],[1,4],[24,51],[51,10],[44,-22],[52,-26],[34,-27],[41,-29],[35,-47],[-16,-137],[-56,-47],[-37,-25],[-48,-17],[-43,-45],[-51,-64],[-28,-41],[-27,-46],[-22,-65],[-22,-39],[-33,-69],[-54,-54],[-10,-37],[0,-1],[-19,-64],[-19,-57],[-44,-75],[-50,-72],[-29,-36],[-10,-12],[-37,-47],[-82,-74],[-36,-33],[-41,-31],[-38,-14],[-70,-21],[-41,-2],[-66,-41],[-72,-40],[-65,-27],[-47,-3],[-17,0],[-3,-14],[-3,-14],[-1,-7],[-32,-27],[-67,-52],[-67,-63],[-42,-35],[-38,-31],[-42,-36],[-48,-41],[-68,-6],[-40,-81],[-91,-85],[-73,-75],[-58,-66],[-36,-41],[-28,-31],[-92,-28],[-65,-7],[-40,22],[-23,46],[-22,57],[-20,54],[-24,56],[-7,13],[-28,49],[-6,34],[-7,41],[-12,24],[-17,32],[-12,45],[-7,25],[-24,63],[-61,-18],[-16,24],[-12,20],[-41,37],[-69,42],[-69,31],[-53,26],[-53,18],[-47,22],[-20,49],[13,68],[18,32],[19,32],[25,49],[23,41],[5,10],[31,45],[35,41],[48,74],[58,32],[0,52],[0,4],[-2,22],[-1,21],[-22,49],[-31,54],[-11,22],[-9,13],[-30,47],[-37,24],[0,-27],[0,-24],[-43,10],[-1,0],[-30,6],[-102,15],[-55,3],[-74,15],[-5,1],[0,26],[-1,41],[32,67],[19,43],[27,61],[8,22],[14,37],[9,45],[-5,26],[-5,28],[-18,52],[2,20],[4,33],[60,24],[29,11],[106,7],[99,11],[79,-16],[64,-19],[73,10],[47,20],[62,30],[41,-21],[11,-50],[3,-16],[53,-7],[53,-11],[35,-3],[15,10],[41,28],[46,63],[-62,-20],[-54,-34],[-50,1],[-49,72],[-60,33],[-69,2],[-84,-30],[-93,5],[-37,42],[3,18],[7,37],[13,56],[7,47],[6,43],[17,64],[5,18],[30,47],[39,25],[60,33],[43,9],[15,3],[67,-45],[-22,53],[-15,47],[-3,10],[39,47],[18,14],[18,16],[11,8],[24,20],[36,18],[51,12],[75,25],[66,4],[59,5],[57,-29]],[[95137,32346],[46,-6],[74,1],[85,-3],[97,-15],[-19,-89],[-10,-76],[-38,-37],[-72,-53],[-50,40],[-50,38],[-78,45],[-66,38],[-100,57],[-19,65],[4,27],[7,49],[63,-31],[12,-6],[65,-32],[49,-12]],[[92851,33749],[48,-3],[63,4],[85,24],[65,21],[52,5],[75,-43],[66,-36],[65,-17],[30,-8],[24,-6],[28,-11],[33,-12],[21,-19],[26,-24],[90,-7],[44,-52],[20,-43],[13,-54],[12,-53],[0,-84],[-2,-51],[-18,-80],[-79,42],[4,-38],[3,-20],[16,-52],[-76,-113],[23,-22],[26,-26],[17,-39],[13,-7],[36,-21],[-43,95],[15,43],[55,46],[47,13],[45,-35],[55,-42],[80,-39],[56,-31],[51,-26],[51,-6],[72,-14],[81,-7],[100,3],[134,21],[48,13],[72,11],[86,12],[40,-9],[53,-36],[7,-16],[16,-36],[9,-49],[13,-41],[30,-42],[15,-21],[13,-32],[34,-82],[-1,-52],[0,-19],[-14,-47],[-54,-32],[-50,22],[-15,6],[-6,-43],[-1,-10],[1,-12],[1,-31],[-58,-14],[-93,-8],[-67,51],[-46,48],[-57,36],[-49,41],[-49,55],[-12,-66],[-54,-15],[-34,-19],[-10,-5],[-13,-7],[-28,-14],[-54,-33],[-54,-21],[-44,-16],[-68,-11],[-44,-6],[-22,-3],[-19,-2],[-47,-4],[-79,8],[-25,3],[-59,15],[-68,18],[-69,34],[-42,50],[-55,81],[-27,92],[-37,63],[-13,50],[5,58],[2,35],[1,27],[0,15],[-1,35],[-29,90],[-41,64],[-30,33],[-23,25],[-43,32],[-25,19],[-33,23],[-32,23],[-37,16],[-36,23],[-14,8],[-7,5],[-27,20],[-48,8],[-59,12],[-57,12],[-49,1],[-11,-3],[-49,-14],[-51,-24],[-47,-28],[-82,-56],[-78,-42],[-59,-31],[-52,-25],[-43,-36],[-11,-14],[-33,-43],[-66,-31],[-57,-19],[-43,33],[-32,14],[-11,5],[-55,15],[15,29],[17,31],[87,32],[89,16],[85,20],[83,30],[91,51],[28,16],[41,40],[25,34],[53,83],[43,95],[5,18],[13,56],[-20,47],[-11,24],[-34,34],[-15,16],[14,24],[9,18],[8,14],[19,31],[40,-21],[13,-7],[66,-28],[12,-3],[64,-16]],[[93482,33792],[-40,-9],[-49,19],[-78,41],[-77,37],[12,12],[38,42],[62,50],[44,-17],[18,-7],[13,-11],[34,-28],[3,-19],[8,-48],[5,-28],[7,-34]],[[98850,34362],[-37,-50],[-73,-44],[-90,-59],[-98,-43],[-53,19],[51,48],[36,26],[39,26],[46,16],[62,16],[61,36],[56,9]],[[98850,34362],[20,40],[11,24],[-60,-4],[-42,3],[-20,2],[6,58],[-71,-62],[-47,-38],[-51,-47],[-58,-31],[-37,-36],[-48,-37],[-42,-20],[-14,-7],[-7,0],[-35,-4],[-34,0],[-23,-1],[-4,-1],[-41,-6],[-45,-6],[-57,1],[19,52],[-23,135],[-8,47],[-10,32],[-8,28],[-24,35],[-13,19],[8,41],[1,6],[65,50],[35,34],[14,12],[27,44],[2,3],[24,50],[12,30],[6,15],[4,59],[-8,40],[-4,21],[-7,11],[-25,46],[-22,28],[-10,12],[-24,46],[1,26],[1,28],[0,39],[0,17],[-1,37],[0,7],[16,13],[3,3],[20,-9],[79,-38],[33,-30],[7,-19],[6,-14],[34,-28],[17,1],[34,3],[20,16],[33,71],[63,57],[24,7],[5,1],[32,-12],[-14,-56],[2,-9],[4,-13],[2,-26],[2,-16],[42,30],[-7,59],[6,12],[5,9],[62,24],[11,9],[24,20],[4,-1],[26,-9],[61,-48],[35,-8],[61,7],[32,25],[57,46],[65,28],[27,-36],[15,-22],[32,-45],[23,-13],[38,-21],[54,5],[64,24],[48,38],[103,53],[83,30],[21,-17],[24,-21],[16,-86],[3,-82],[-22,-97],[0,-26],[0,-60],[-11,-47],[-18,-53],[-29,-62],[-34,-70],[-19,-10],[-57,-29],[-45,-23],[-69,-9],[-12,35],[-5,15],[-49,-58],[-58,-38],[-4,-6],[-26,-32],[-11,-14],[-27,-37],[-11,-4],[-27,-11],[-70,-9],[-60,-11],[-41,-34],[57,-5],[-75,-74],[-67,-21]],[[98373,36154],[47,-8],[52,7],[73,-14],[52,2],[65,-7],[66,-10],[58,-10],[58,-18],[65,-12],[63,-3],[56,-2],[34,10],[51,-7],[-34,-94],[13,-53],[14,-42],[-58,-23],[-36,-3],[-51,-4],[-51,14],[-61,21],[-57,24],[-40,28],[-74,31],[-61,18],[-63,20],[-56,15],[-43,15],[-50,27],[-59,38],[-33,46],[60,-6]],[[97229,36766],[62,-33],[48,-26],[21,-11],[8,-5],[30,-16],[28,-15],[56,-31],[69,-57],[1,-2],[51,-80],[10,-17],[29,-45],[25,-26],[24,-24],[71,-56],[57,-41],[47,-36],[42,-29],[54,-30],[81,-37],[87,-31],[43,-22],[62,-40],[64,-47],[45,-29],[60,-29],[54,-22],[35,-9],[35,-7],[79,-11],[104,-42],[60,-15],[33,-17],[46,-18],[86,-3],[72,-10],[59,11],[50,-11],[10,-60],[94,16],[36,-8],[35,11],[68,21],[94,34],[49,25],[28,8],[19,5],[40,36],[58,22],[45,11],[88,38],[58,0],[32,-25],[41,-13],[46,-52],[23,-73],[5,-46],[6,-40],[7,-45],[-1,-59],[-13,-83],[-13,-55],[-21,-53],[-6,-14],[-14,-36],[-24,-71],[-22,-52],[-26,-53],[-33,-56],[-56,-15],[-23,47],[-17,44],[-18,59],[-12,75],[66,58],[3,3],[8,65],[-55,-50],[-49,-18],[-14,-6],[-1,6],[-4,43],[-3,27],[-19,11],[-24,14],[-54,40],[8,-59],[5,-37],[-49,10],[-35,-49],[-6,-9],[-45,-33],[-79,-43],[-75,-45],[-64,-8],[-18,80],[-9,2],[-39,12],[-42,21],[-39,11],[-51,-8],[-40,-40],[-18,-18],[-50,-36],[-8,-3],[-19,-8],[-34,25],[-2,1],[-44,34],[-27,5],[-14,3],[-11,-2],[-32,-5],[-66,-43],[-29,-10],[-40,23],[-38,29],[-10,6],[-21,12],[-41,-8],[-67,-25],[-50,-5],[-35,-3],[-11,6],[-21,12],[3,20],[1,4],[15,21],[16,22],[3,3],[32,34],[14,16],[33,19],[39,23],[15,9],[35,22],[13,27],[-5,48],[-14,26],[-36,52],[-5,8],[-11,18],[6,40],[-11,-10],[-8,-7],[-3,-31],[-85,18],[-12,24],[5,72],[0,33],[-4,5],[-11,14],[-23,9],[-4,2],[-76,2],[-16,-14],[-3,-3],[52,-2],[44,-2],[13,-57],[-12,-32],[-3,-8],[0,-12],[0,-20],[27,-33],[82,-24],[31,-20],[6,-3],[6,-12],[9,-14],[26,-62],[-65,-41],[-84,-51],[-35,-49],[-11,-14],[-12,-16],[-10,-39],[7,-22],[8,-28],[74,-31],[103,14],[21,14],[21,13],[24,2],[-29,-36],[-30,-38],[-8,-9],[-12,-13],[-9,-39],[-16,-20],[-5,-6],[-20,12],[-13,39],[-30,32],[-55,32],[-76,27],[-5,31],[-6,33],[-3,16],[11,32],[5,11],[45,64],[15,31],[10,21],[2,9],[7,48],[-11,27],[-12,32],[-50,37],[-50,21],[-42,15],[-14,4],[-23,5],[-53,12],[-47,15],[-41,16],[-33,46],[7,56],[4,30],[-1,10],[-5,57],[-52,51],[-12,2],[-74,14],[-29,5],[-5,1],[-101,79],[-76,40],[-40,28],[-4,3],[-30,27],[-28,40],[-8,42],[-18,27],[-4,6],[-11,7],[-15,9],[-13,2],[-45,5],[-56,25],[-66,31],[-33,35],[-12,23],[6,4],[18,11],[11,35],[3,9],[-22,34],[-54,27],[-1,23],[0,3],[0,30],[-8,10],[-10,14],[-33,3],[-31,-14],[-10,27],[-22,23],[-32,9],[-23,11],[-21,17],[-31,0],[-46,-5],[-20,25],[12,19],[126,52],[75,15],[76,-43],[32,-17],[46,-23]],[[98098,36299],[17,-20],[-62,4],[-103,42],[-63,27],[-76,33],[-6,3],[-54,28],[-44,28],[-35,41],[-26,44],[-15,20],[-13,16],[-19,23],[-33,37],[-31,30],[-17,18],[-39,26],[-47,23],[-35,18],[-52,34],[-38,42],[-52,36],[-33,46],[30,24],[3,3],[17,2],[32,3],[47,-14],[64,-18],[49,-17],[47,-25],[59,-43],[56,-46],[23,-25],[7,-8],[25,-34],[5,-8],[22,-29],[47,-21],[53,-46],[44,-44],[26,-30],[8,-9],[12,-12],[31,-31],[35,-37],[41,-40],[58,-52],[35,-42]],[[96518,36854],[54,-34],[32,4],[35,-12],[65,-52],[14,-3],[50,-10],[60,15],[25,-27],[36,-24],[57,7],[10,-8],[13,-10],[45,-15],[2,-4],[23,-47],[30,-9],[40,17],[3,-5],[11,-17],[-8,-21],[12,-23],[13,-24],[36,-21],[-17,-28],[-8,-13],[1,-9],[4,-43],[12,-14],[30,-34],[53,-25],[-23,-29],[-7,-8],[-43,-20],[-43,-31],[-9,-2],[-17,-5],[-26,-5],[-24,-21],[-28,-5],[-26,10],[-1,28],[-5,32],[-45,23],[-32,-3],[-2,-13],[-2,-13],[53,-5],[5,-42],[14,-20],[2,-2],[28,-19],[24,-4],[44,11],[5,6],[16,20],[42,-2],[70,44],[31,7],[32,22],[67,-1],[50,-21],[24,-35],[8,-42],[33,-45],[23,-18],[31,-24],[3,-1],[45,-28],[17,-11],[12,-5],[38,-17],[27,-35],[18,-19],[16,-17],[7,-3],[15,-7],[103,-17],[52,-36],[-26,-63],[-7,-25],[-4,-19],[44,-77],[42,-30],[57,-28],[73,-27],[51,-13],[48,-13],[14,-4],[8,-5],[52,-31],[12,-33],[5,-13],[-23,-33],[-48,-41],[-39,-64],[-6,-20],[-5,-17],[-3,-14],[-4,-25],[-6,-40],[-42,-48],[-31,-3],[-48,1],[-36,0],[-24,6],[-4,1],[-32,17],[-15,25],[12,50],[7,22],[-1,25],[0,3],[-17,22],[-13,13],[-8,7],[-5,2],[-24,7],[-35,0],[-21,-17],[-3,-37],[-1,-5],[10,-44],[-5,-25],[-29,-20],[-17,1],[-16,2],[-17,10],[-14,9],[-20,36],[-4,29],[0,7],[-1,23],[60,50],[123,22],[-94,4],[-9,-3],[-46,-16],[-35,-29],[-7,-5],[-6,-23],[-5,-21],[0,-2],[3,-27],[22,-45],[4,-5],[19,-19],[46,-15],[30,6],[6,1],[31,28],[0,48],[-5,28],[-4,18],[11,19],[41,-4],[17,-10],[13,-8],[-3,-15],[-9,-43],[-10,-38],[9,-42],[41,-31],[57,-14],[86,-3],[34,-55],[-6,-29],[-6,-34],[0,-57],[1,-13],[7,-62],[24,-67],[18,-50],[0,-63],[-74,-27],[-33,-21],[-9,-6],[-17,-46],[-3,-6],[-23,-39],[-70,-14],[-77,-5],[-59,-9],[-10,2],[-67,10],[-62,15],[-2,0],[-42,40],[-46,55],[-43,52],[-41,29],[-21,15],[-26,19],[-29,48],[30,-4],[53,-5],[38,20],[-32,5],[-5,1],[-61,12],[-53,3],[-57,42],[-67,49],[-77,-19],[-4,-4],[-15,-20],[-52,-22],[-23,-12],[-19,-10],[-50,6],[-56,13],[-38,-4],[-10,-20],[34,1],[10,-1],[66,-7],[18,-3],[41,-6],[57,18],[34,20],[36,4],[46,7],[108,-86],[34,-61],[36,-30],[39,-21],[27,-35],[-7,-55],[41,-31],[40,-22],[39,-28],[69,-27],[54,-22],[24,-67],[-44,-59],[-55,-66],[-47,-13],[-6,-2],[-65,-24],[-14,-22],[-13,-22],[-51,-45],[-19,-3],[-31,-5],[-38,-27],[-51,-41],[-51,-34],[-38,31],[-4,4],[-30,47],[-54,59],[-52,60],[-39,26],[-42,15],[-23,-3],[-40,-6],[-58,17],[-47,22],[-6,3],[-59,18],[-76,18],[-31,16],[-9,5],[-11,18],[-12,19],[-5,17],[-13,36],[-4,24],[-7,43],[-3,45],[2,53],[19,87],[13,42],[7,22],[48,82],[44,70],[19,54],[12,53],[4,68],[-8,78],[-20,81],[-26,48],[0,1],[-18,45],[-35,60],[-23,62],[14,50],[46,-18],[37,-12],[29,-29],[54,-15],[76,14],[34,53],[7,59],[-11,-15],[-35,-44],[-11,-14],[-42,-34],[-55,15],[-29,33],[-8,8],[-8,9],[-17,6],[-45,17],[-36,1],[-29,-22],[-33,16],[-43,26],[-10,7],[-62,27],[-33,20],[-13,37],[-19,-1],[-2,0],[-35,-2],[-28,57],[33,75],[-57,20],[-8,-1],[-22,0],[-12,0],[-13,2],[-45,4],[-41,8],[-13,2],[-18,1],[-27,1],[-44,-2],[-61,-7],[-56,-3],[-47,6],[-50,8],[-38,12],[-35,8],[-44,15],[-38,2],[-7,48],[23,27],[18,37],[12,54],[4,18],[1,12],[4,28],[52,53],[57,97],[51,36],[50,52],[79,3],[55,33],[12,41],[-30,74],[-5,11],[7,57],[3,25],[4,34],[40,50],[54,3],[26,-38],[19,-31],[6,-9],[4,-6],[14,-21],[60,-4],[4,37],[-80,35],[-9,15],[-19,32],[11,27],[41,34],[0,41],[31,16],[88,50],[67,33],[62,-42],[56,-73]],[[96820,36800],[-72,-15],[-16,9],[-21,13],[-36,30],[-5,5],[-10,3],[-61,15],[-27,16],[-22,46],[23,27],[47,45],[14,29],[40,32],[33,-5],[5,-1],[55,-22],[12,-7],[30,-17],[60,-33],[21,-13],[16,-9],[45,-23],[31,-26],[24,-19],[-20,-21],[-5,-6],[-161,-53]],[[97019,37031],[49,-42],[-87,16],[-53,28],[-33,25],[-50,32],[-44,20],[-36,13],[-39,12],[-43,25],[-34,26],[-46,53],[-69,38],[-66,29],[-64,30],[-60,30],[-51,9],[29,60],[55,46],[41,22],[80,21],[43,-4],[48,-16],[56,-28],[55,-41],[71,-81],[46,-81],[33,-53],[47,-70],[33,-51],[52,-39],[37,-29]],[[94803,37620],[-39,-8],[-22,5],[-16,4],[-9,2],[-52,23],[-79,56],[-55,42],[-23,22],[-7,7],[18,3],[51,7],[60,5],[64,-3],[38,-20],[15,-69],[29,-37],[1,-1],[26,-38]],[[93622,40270],[-25,-23],[-3,-2],[-50,-29],[-9,-3],[-65,-20],[-2,-2],[-6,-15],[25,-15],[35,2],[22,5],[21,4],[38,5],[25,-2],[37,-13],[28,-18],[33,-10],[20,-16],[20,-30],[12,-19],[7,-29],[-3,-42],[38,-35],[26,-16],[23,-12],[36,-13],[30,-12],[24,-21],[19,-23],[17,-30],[21,-37],[17,-30],[15,-17],[19,-20],[6,-31],[7,-36],[15,-54],[42,-17],[40,17],[39,17],[42,-17],[3,-37],[-19,-12],[-30,-10],[-21,2],[-22,1],[-22,2],[-40,-13],[-10,-39],[25,-17],[25,-9],[23,-8],[4,-50],[3,-34],[-18,-40],[-10,-22],[-12,-26],[-6,-24],[-5,-32],[37,-27],[22,-16],[21,-5],[27,13],[28,13],[42,9],[21,-16],[14,-36],[0,-24],[-10,-21],[-28,-29],[-33,-19],[-40,-8],[-30,0],[-20,14],[-8,27],[-11,28],[-10,21],[-28,-1],[-40,-28],[-16,-14],[-28,-26],[-32,-27],[-19,-15],[-23,-18],[-25,-36],[-5,-33],[0,-1],[24,-31],[23,-7],[46,-13],[42,-13],[24,-23],[-3,-52],[0,-45],[13,-48],[18,-21],[14,-17],[22,-11],[26,-12],[21,-2],[32,-2],[24,-1],[38,-26],[0,-32],[-33,-22],[-27,-12],[-24,-11],[-21,-21],[-23,-40],[-16,-48],[1,-64],[-4,-41],[-9,-25],[-5,-24],[-1,-22],[11,-22],[20,-31],[17,-20],[16,-21],[16,-19],[10,-35],[7,-26],[-16,-62],[-24,-69],[0,-48],[-5,-41],[8,-10],[25,-31],[79,-62],[46,-37],[43,-38],[55,-37],[63,-32],[58,-38],[29,-32],[62,-39],[56,-20],[52,-15],[14,-4],[98,-5],[79,-4],[32,-3],[58,-37],[48,-39],[53,-34],[39,-41],[45,-39],[56,-32],[76,-31],[53,-14],[43,-11],[-13,-38],[-68,2],[-71,-5],[-84,0],[-55,-14],[-23,-18],[-73,-4],[-91,17],[-69,17],[-70,20],[-43,16],[-56,10],[-65,37],[-31,31],[-47,49],[-6,7],[-25,27],[-51,56],[-39,32],[-54,44],[-103,82],[-46,37],[-40,41],[-49,39],[-32,49],[-25,48],[-18,25],[-21,31],[-42,28],[-29,16],[-28,14],[-31,32],[-53,64],[-58,93],[-22,57],[0,32],[12,47],[-27,51],[-26,31],[-16,14],[-32,11],[-21,15],[-8,41],[0,29],[11,27],[24,16],[2,12],[1,15],[1,16],[-28,0],[-2,11],[-2,21],[-6,35],[-47,-5],[-9,-59],[-17,-39],[-8,-52],[2,-53],[24,-27],[9,-29],[6,-46],[17,-31],[36,-26],[27,-39],[32,-21],[10,-47],[32,-52],[36,-54],[36,-60],[50,-54],[27,-38],[33,-22],[45,-48],[26,-46],[44,-51],[53,-56],[47,-28],[52,-41],[44,-45],[49,-35],[67,-50],[26,-43],[52,-37],[34,-53],[2,-3],[82,-59],[63,-40],[61,-25],[51,-11],[65,-14],[44,-18],[50,-17],[40,-15],[121,-9],[145,24],[59,10],[74,4],[53,-13],[58,-4],[65,-2],[49,-7],[63,4],[44,15],[40,5],[46,22],[35,16],[58,14],[47,25],[65,16],[61,24],[41,-16],[44,36],[67,48],[20,12],[2,0],[23,13],[52,-13],[61,-36],[100,-55],[65,-53],[33,-10],[18,-44],[2,-59],[-99,-94],[-41,11],[-51,35],[-68,-3],[-61,-45],[-39,-22],[-78,-32],[-7,-40],[-1,-7],[-8,-40],[-46,-15],[-52,-13],[-49,-57],[-1,-5],[-13,-56],[-8,-36],[4,-62],[19,-71],[-10,-13],[-11,-15],[-29,1],[-31,0],[-16,-8],[-29,-17],[-78,-52],[-60,-80],[-69,-95],[-2,-71],[-5,-14],[-6,-16],[-33,-49],[-18,-35],[5,-53],[22,-34],[46,-39],[12,-6],[27,-12],[16,-7],[55,-22],[14,-3],[36,-10],[36,-19],[6,-2],[69,-12],[5,-66],[-6,-9],[-36,-56],[-17,3],[-4,1],[-10,6],[-16,10],[-60,48],[-52,27],[-46,-1],[-5,-4],[-43,-39],[-28,-83],[-20,-92],[1,-25],[1,-25],[19,-47],[-2,-22],[0,-5],[-65,-34],[-18,13],[0,36],[4,88],[-2,6],[-13,39],[-26,4],[-5,0],[-40,-9],[-31,-4],[57,-14],[10,1],[34,1],[-1,-26],[-25,-61],[6,-70],[6,-5],[24,-22],[44,7],[25,15],[35,20],[5,18],[6,20],[-10,53],[-6,57],[20,31],[11,16],[26,112],[18,31],[24,3],[34,-16],[62,-63],[25,-13],[29,0],[26,1],[31,20],[17,17],[19,20],[15,39],[19,34],[10,19],[75,16],[38,-28],[40,-54],[40,-60],[22,-27],[24,-30],[-29,-23],[-14,-12],[-9,-92],[4,-76],[1,-15],[-2,-18],[-2,-19],[-2,-9],[-4,-34],[-4,-63],[-68,-29],[-87,-11],[-8,-1],[-17,-4],[-17,-4],[-12,-5],[-39,-15],[-47,-25],[-26,20],[-30,6],[-8,-49],[-49,-45],[4,-45],[1,-24],[-64,-43],[-76,19],[-58,-30],[-74,37],[-61,-2],[-25,-47],[46,-102],[12,-29],[23,-70],[-13,-30],[-7,-18],[-118,-6],[-19,-28],[28,-17],[3,-2],[6,0],[32,5],[-2,-16],[-1,-6],[-12,-71],[-10,-59],[-28,-26],[-40,-37],[10,-21],[1,-2],[59,32],[5,5],[31,45],[11,89],[4,35],[86,77],[4,19],[7,37],[-5,50],[-1,14],[-1,10],[-2,29],[-41,55],[-8,38],[84,-56],[43,-48],[48,-29],[25,-2],[15,15],[24,23],[21,19],[28,27],[62,41],[35,53],[11,32],[15,40],[50,52],[61,2],[16,1],[38,1],[41,11],[50,21],[54,39],[40,6],[10,31],[8,107],[11,35],[0,1],[6,18],[52,44],[-23,35],[13,56],[54,48],[49,-26],[19,-37],[16,-30],[12,-36],[11,-31],[6,-19],[7,-22],[6,-18],[14,-71],[1,-23],[2,-25],[0,-27],[0,-18],[-3,-15],[-8,-35],[-38,-54],[-28,-38],[-2,-16],[-4,-39],[0,-25],[-1,-38],[-32,-57],[-46,25],[-17,-61],[-36,-46],[0,-4],[13,-81],[0,-49],[3,-12],[8,-43],[8,-61],[-20,-51],[57,-3],[28,-35],[3,-6],[21,-44],[47,-52],[34,-29],[46,-26],[34,-20],[44,-23],[55,-26],[69,-30],[77,-29],[59,-36],[28,-36],[24,-29],[3,-30],[4,-31],[6,-83],[-68,-9],[-49,-10],[-56,-2],[-57,8],[-88,-49],[39,-21],[12,-4],[33,-9],[56,29],[1,0],[94,-20],[63,-23],[-35,-48],[73,18],[33,6],[28,-30],[54,-1],[33,-21],[6,-4],[15,-13],[26,-23],[32,-48],[35,-61],[1,-3],[55,-35],[6,-39],[31,-8],[8,-2],[43,7],[45,-28],[32,-10],[49,-14],[15,2],[56,9],[46,-2],[33,9],[46,17],[53,6],[71,-21],[73,-8],[8,-4],[43,-18],[7,-3],[31,-18],[-8,-37],[-52,-57],[-55,-18],[-51,-73],[-27,-32],[-79,-50],[-25,-47],[-45,-34],[-163,-124],[-60,-48],[-150,-113],[-66,-59],[-54,-50],[-44,-41],[-73,-76],[-43,-46],[-45,-41],[-66,-68],[-54,-57],[-31,-30],[-48,-25],[-45,-6],[-43,-9],[-46,5],[-33,28],[-22,42],[13,38],[27,48],[34,38],[25,56],[1,4],[13,29],[14,32],[49,-4],[47,25],[51,51],[56,37],[-31,-1],[-67,-1],[-58,-24],[-51,-20],[-35,65],[-24,47],[-68,95],[-45,64],[-2,11],[-9,44],[1,87],[-11,54],[-10,80],[-4,58],[-35,20],[0,-19],[1,-56],[-2,-59],[-1,-52],[6,-54],[1,-59],[2,-38],[1,-11],[1,-17],[2,-34],[8,-7],[30,-26],[57,-84],[27,-46],[8,-13],[22,-52],[9,-70],[-20,-43],[-12,-2],[-57,-9],[-64,-3],[-63,-3],[-100,-11],[-45,-1],[-9,0],[-7,0],[-40,-1],[-50,7],[-19,3],[-30,2],[-45,3],[-54,38],[-26,35],[-19,31],[-45,19],[-33,9],[-8,2],[-24,6],[-35,8],[-55,19],[-41,-2],[-39,-5],[-48,-5],[-37,3],[-16,1],[-17,3],[-31,6],[-46,13],[-5,2],[-17,26],[-20,30],[-85,-18],[-52,26],[-50,36],[-3,-23],[-2,-23],[0,-44],[-92,-40],[-52,32],[-11,49],[-41,77],[-47,51],[-41,46],[-33,30],[-28,26],[-43,61],[-55,66],[-1,1],[-42,27],[-37,13],[-45,23],[-39,31],[-29,60],[-5,19],[-13,53],[-12,33],[-12,33],[-24,54],[-27,56],[-25,32],[-19,24],[-8,16],[-15,29],[31,44],[11,16],[48,23],[50,8],[59,8],[73,-2],[3,0],[35,-6],[7,-2],[53,-12],[66,-28],[61,-29],[27,-4],[25,-8],[33,-10],[56,6],[74,87],[-17,142],[-46,56],[-3,6],[-38,85],[-76,89],[33,15],[32,33],[9,18],[6,11],[-5,0],[-65,-4],[-20,-8],[-31,-13],[0,-64],[94,-124],[-7,-33],[-134,53],[-97,43],[-103,46],[-119,48],[-34,-17],[38,-43],[83,-46],[10,-5],[122,-59],[104,-87],[107,-68],[94,-76],[-17,-31],[-27,-7],[-48,20],[-67,44],[-42,17],[-68,29],[-60,6],[-70,-4],[-57,-1],[-64,-13],[-68,-7],[-5,-2],[-41,-12],[-35,-36],[-41,-43],[-39,27],[-33,73],[-26,50],[-36,48],[-1,2],[-25,21],[-26,74],[-70,54],[-127,6],[-37,-3],[-31,-2],[-63,-4],[-39,3],[-28,59],[-4,9],[24,110],[82,133],[19,15],[37,29],[23,73],[9,28],[29,95],[35,-24],[58,-44],[33,4],[18,2],[30,31],[47,48],[80,84],[8,41],[-48,36],[-112,2],[-53,9],[-16,38],[23,18],[7,23],[-20,14],[-47,-50],[24,-55],[5,-13],[43,-8],[74,-14],[90,0],[0,-27],[-74,-68],[-67,-60],[-24,-14],[-66,71],[-61,-8],[-59,-93],[-28,-65],[-12,-25],[-29,-36],[-11,-13],[-8,-3],[-34,-13],[-67,-115],[-63,-161],[69,-98],[74,-28],[168,-5],[98,24],[30,-17],[21,-13],[44,-73],[20,-80],[28,-67],[16,-49],[43,-67],[39,-44],[19,-22],[18,-21],[33,-47],[5,-79],[2,-32],[19,-70],[7,-26],[6,-21],[40,-88],[6,-12],[16,-28],[3,-19],[2,-15],[-62,-6],[-11,0],[-35,2],[-62,26],[-65,18],[35,-54],[31,-34],[-56,-11],[-48,3],[-88,6],[-88,23],[-81,43],[-22,62],[-43,33],[-47,43],[-15,31],[-26,54],[-26,65],[-9,31],[-8,28],[-39,66],[-33,55],[-29,37],[-56,51],[-61,49],[-5,51],[-20,55],[-13,35],[-5,14],[-22,51],[-19,38],[-44,-5],[-31,17],[-40,23],[-61,23],[-8,0],[-49,1],[-40,-9],[-17,-10],[-36,-20],[-46,-15],[-10,-3],[-2,19],[-5,42],[-1,20],[-1,22],[-10,28],[-5,14],[-24,56],[1,39],[-5,67],[-32,-40],[-35,16],[-36,31],[-37,18],[-29,-12],[-10,-3],[55,-57],[33,-29],[12,-9],[4,-6],[22,-29],[11,-29],[9,-24],[-2,-46],[-15,-51],[8,-35],[2,-9],[3,-7],[16,-37],[36,-47],[-58,-20],[-64,-16],[-97,-35],[-76,12],[-49,14],[-31,23],[-38,29],[-22,45],[-11,16],[-17,27],[-71,27],[10,-14],[27,-39],[-2,-23],[-2,-32],[-17,-26],[-16,-23],[-21,-33],[-10,-15],[-32,54],[-7,4],[-29,15],[8,-60],[41,-62],[-30,1],[-33,2],[-91,-3],[-49,-11],[-71,-29],[-58,-38],[-53,-39],[-26,-26],[-12,-13],[-15,-15],[-18,-19],[-38,-40],[-13,-13],[-5,-6],[-26,-37],[-32,-42],[-41,-46],[-38,-58],[-9,-13],[-17,-26],[-18,-53],[-8,-23],[-32,-114],[-11,-27],[-5,-13]],[[24639,38284],[-4,-78],[-2,-44],[-2,-29],[-2,-41],[-5,-247],[-1,-86],[-1,-49],[-1,-60],[-1,-27],[-3,-181],[-2,-67],[0,-29],[-1,-58],[-5,-374],[0,-36],[-1,-46],[-1,-44],[0,-1],[-5,-407],[-1,-79],[-181,2],[-2,-109],[-2,-62],[0,-2],[-2,-115],[-1,-7],[-3,-97],[0,-23],[-8,-242],[-6,-213],[0,-32],[0,-3],[-9,-264],[-2,-65],[-2,-64],[-9,-272],[0,-2],[0,-34],[2,-24]],[[24376,34673],[-6,-102],[-4,-136],[-6,-191],[-4,-86],[-9,-275],[-1,-8],[-2,-68],[-165,3],[-1,-36],[-3,-116],[-23,1],[-384,-1],[-101,-1],[-42,1],[-248,0],[-41,5],[-49,3],[-29,1],[-35,-1],[-55,-1],[-40,-2],[-125,2],[-61,0],[-93,1],[-119,0],[-87,1],[-121,1],[-66,0],[-34,0],[-30,-1],[-49,1],[-59,1],[-21,-3],[-456,5],[-156,1],[-75,1],[-31,0],[-50,1],[-108,3],[-23,0],[-58,1],[-117,0],[-88,1]],[[21101,33679],[-126,1],[-1,0],[-310,2],[-91,-3],[-113,1],[-39,0],[-115,1],[-1,0],[-22,0],[-107,0],[-34,0],[-47,0],[-62,1],[-105,0]],[[19928,33682],[-2,31],[8,212],[1,32],[8,188],[1,113],[-1,142],[0,22],[-2,111],[0,36],[28,0],[175,0],[5,177],[-81,-1],[-22,0],[-105,-1],[-1,41],[0,34],[-2,56],[0,29],[59,-1],[51,0],[63,0],[41,-1],[4,158],[-88,0],[-57,1],[-46,0],[-27,0],[0,71],[1,29],[0,36],[0,53],[1,126],[0,22],[0,3],[1,94],[2,109],[0,1],[4,29],[10,28],[4,38],[0,23],[-1,45],[-2,29],[-1,22],[1,24],[1,38],[1,40],[1,41],[-1,48],[204,9],[2,70],[0,24],[0,24],[1,58],[15,-1],[-9,150],[2,138],[4,131],[3,286],[0,46],[0,5],[2,122],[1,92],[0,22],[1,69],[1,131],[0,47],[0,3],[2,84],[0,32],[0,3],[1,36],[3,218],[1,55],[1,28],[1,41],[1,74],[1,75],[1,56],[2,102],[5,293],[2,134],[-191,0],[-4,178],[191,0],[3,30],[-1,10],[-2,22],[-2,106],[46,0],[2,185],[41,-1],[148,-3],[2,79],[2,87],[-56,1],[-30,1],[-107,2],[0,539],[0,106],[0,68],[0,88],[0,28],[0,54],[-148,-2],[-41,0],[0,48],[0,92],[0,28]],[[19928,33682],[-24,0],[-399,5],[0,24],[1,51],[-1,100],[-115,4],[-47,1],[-46,2],[4,-187],[-61,1],[-69,2],[-68,2],[-111,2],[-56,1],[-35,1],[-203,4],[-273,6],[-343,7],[-133,3],[-84,2],[-97,2],[-256,6],[-241,6],[-341,9],[-45,1],[0,162],[0,25],[-8,0],[-73,3],[-3,0],[-115,3],[-2,-69],[0,-7],[-4,-116],[-167,3],[-12,0],[-63,1],[-364,6],[-103,1],[-123,1],[-90,2],[-171,2],[-259,5],[-136,2],[-359,7],[-180,3]],[[14653,33771],[-39,1],[-177,4],[2,181],[-319,12],[-79,2],[8,174],[-97,3],[-203,4],[-3,0],[-106,3],[2,44],[1,22],[2,47],[3,66],[-28,1],[-26,1],[-59,2],[-88,4],[5,182],[6,162],[72,-2],[136,-2],[7,173],[-82,1],[-61,1],[-245,7],[-18,0],[-81,3],[-54,1],[-73,1],[-25,1],[-273,7],[-58,1],[-28,2],[1,31],[0,27],[1,65],[0,47],[-224,-2],[-1,-100],[-1,-39],[0,-31],[-367,-3],[-34,0],[-155,-1],[-76,0],[1,57],[1,137],[-157,1],[-1,0],[-172,6],[-13,0],[-21,1],[-35,1],[0,73],[0,27],[0,45],[-59,0],[-45,0],[-23,0],[-8,-1],[-18,-2]],[[11269,35219],[5,38],[9,23],[5,22],[10,21],[9,26],[22,49],[2,3],[1,5],[14,8],[25,71],[3,6],[40,68],[103,63],[25,32],[18,39],[3,21],[9,95],[14,33],[2,6],[14,15],[2,4],[4,5],[2,44],[-19,39],[-21,41],[-58,64],[-6,12],[-2,30],[5,36],[0,1],[25,35],[4,61],[-8,42],[-13,22],[-2,3],[-8,27],[-4,70],[4,32],[-7,47],[18,106],[6,99],[2,72],[12,35],[1,2],[5,14],[5,12],[1,3],[15,76],[2,9],[-4,15],[-18,72],[14,68],[5,21],[7,7],[13,14],[8,14],[7,31],[1,3],[19,42],[20,24],[68,49],[6,69],[2,17],[1,6],[-43,86],[-2,5],[-15,46],[-35,115],[-30,49],[0,30],[-30,80],[-17,47],[-17,71],[0,9],[2,22],[-18,24],[-6,9],[-5,22],[-10,46],[-26,82],[-27,75],[-10,25],[-20,31],[4,26],[9,19],[42,44],[1,2],[9,5],[59,34],[9,5],[9,1],[32,4],[11,5],[71,46],[14,9],[30,21],[43,37],[22,18],[22,38],[108,127],[101,97],[22,42],[83,111],[31,32],[33,23],[25,35],[12,11],[105,80],[54,50],[45,54],[15,36],[100,69],[122,17],[52,10],[42,21],[31,6],[121,46],[41,13],[54,18],[14,4],[96,32],[27,7],[56,14],[45,11],[12,3],[33,17],[89,38],[20,4],[19,4],[44,27],[29,38],[6,46],[-7,24],[-40,54],[-24,26],[-12,7],[-91,3],[-66,-14],[-25,4],[-31,5],[-56,63],[-10,12],[-7,8],[0,4],[5,36],[0,3],[3,5],[4,8],[4,8],[5,19],[37,36],[17,17],[51,47],[40,25],[67,22],[31,3],[54,-3],[10,0],[3,-2],[31,-19],[70,-2],[1,0],[18,0],[100,-6],[109,13],[177,-15],[59,8],[7,5],[8,5],[31,0],[45,0],[47,13],[11,3],[46,19],[79,56],[4,3],[20,24],[1,4],[5,13],[4,33],[2,13],[-11,45],[3,22],[6,21]],[[34504,36056],[2,-4],[23,-20],[111,-117],[-9,-66],[8,-40],[11,-56],[5,-155],[27,-64],[31,-105],[12,-19],[5,-12],[4,-10],[45,-72],[56,-91],[131,-211],[24,-56],[87,-205],[18,-98],[3,-19],[13,-68],[13,-72],[4,-25],[14,-72],[3,-27],[7,-61],[84,-403],[72,-454]],[[35308,33454],[-266,45],[-6,1],[-37,-1],[-278,5],[-106,1],[-242,4],[-162,3],[-413,7],[-66,2],[-41,1],[-2,0],[-226,15],[-144,1],[-105,1],[-5,0],[-213,1],[-104,0],[-24,1],[-108,0],[-55,0],[-164,2],[-149,0],[-90,1],[-389,2],[-65,1],[-290,1],[-118,1],[-88,1],[-287,-3],[-207,2],[-104,2],[-124,1],[-50,1],[-340,5],[-130,1],[-102,3],[-32,0],[-23,0],[-128,2],[-146,2],[-227,3],[-1,0],[-327,4],[-168,2],[-198,3],[-74,1],[-240,5],[-112,1],[-3,0],[-9,0],[-61,2],[-39,1],[-102,2],[-281,-1],[-164,-1],[-131,-9],[-28,0],[-52,1],[-39,0],[-152,2],[-64,1],[-226,4],[-389,6],[-10,-352],[22,0],[-3,-79],[-5,-116],[-13,-336],[8,-36]],[[26591,32674],[-37,-15],[-21,13],[-24,15],[-34,23],[-13,22],[-19,17],[-29,4],[-17,18],[-31,51],[-36,35],[-72,68],[-21,2],[-41,4],[-19,-1],[-16,27],[-9,15],[-47,80],[-7,12],[-65,95],[-23,12],[-19,6],[-3,0],[-8,-2],[-2,2],[-34,22],[-8,5],[-23,16],[-6,5],[-5,4],[-33,27],[-7,6],[-37,31],[-5,5],[-8,10],[-5,26],[-1,15],[-55,42],[-50,37],[1,15],[1,5],[0,3],[-5,37],[-7,58],[-6,10],[-28,37],[-5,7],[-19,16],[-21,1],[-21,8],[-5,3],[-22,16],[-4,5],[-1,3],[-1,5],[-7,0],[-10,3],[-208,134],[-7,11],[-5,11],[-1,27],[3,33],[-17,2],[-9,2],[-4,3],[-22,27],[-4,4],[-44,55],[2,9],[-79,49],[-3,1],[-22,13],[-14,9],[-6,3],[-2,-22],[-2,-4],[-38,3],[-15,5],[-1,1],[-193,134],[-53,64],[-2,5],[-8,12],[-1,3],[-16,21],[-31,15],[-9,4],[-24,12],[-6,4],[-4,3],[-49,48],[-87,85],[0,6],[-3,11],[-6,18],[-40,53],[-66,38],[0,32],[-4,4],[-65,65]],[[62111,33651],[-9,1],[-14,-8],[-15,-19],[-20,-22],[-12,-4],[-14,-5],[-12,5],[-3,2],[-11,11],[-2,2],[-1,2],[-2,23],[6,32],[0,3],[-1,1],[-14,20],[-24,6],[-86,21],[-1,-1],[-57,-27],[-15,-10],[-9,-6],[-17,-4],[-21,3],[-19,2],[-3,1],[-17,10],[-32,8],[-5,2],[-49,6],[-64,-14],[-2,3],[-25,44],[-51,-18],[-55,-20],[-49,-17],[0,-1],[-46,-70],[10,-12],[33,-6],[35,-5],[18,-18],[20,-20],[4,-12],[11,-28],[-4,-27],[-9,-15],[-35,-23],[-42,-10],[-4,-1],[-51,-2],[-27,-13],[-3,-2],[-76,-69],[-9,-8],[-8,-7],[0,-9],[1,-24],[-11,-26],[-1,-1],[-24,-21],[-70,-43],[-32,1],[-8,9],[-8,9],[1,21],[0,23],[-5,11],[-5,9],[-2,3],[-9,9],[-9,9],[-1,1],[-3,1],[-25,5],[-2,0],[-1,0],[-13,-9],[-4,-5],[-5,-7],[-8,-34],[-1,-6],[-13,-21],[-10,-6],[-14,-9],[-1,-1],[-20,-5],[-34,-2],[-20,-14],[-6,-4],[0,-7],[-6,-53],[-1,-3],[-11,-34],[-11,-17],[-3,-5],[-41,-51],[-6,-7],[-21,-13],[-34,3],[-39,3],[-1,0],[-2,-1],[-18,-14],[-2,-2],[-1,-3],[-7,-47],[-140,-46],[-70,-44],[-10,-4],[-7,1],[-21,3],[-8,2],[-43,12],[-2,1],[-7,3],[-7,-6],[-9,-7],[-2,-1],[0,-2],[-5,-31],[-12,-7],[-1,-1],[-1,-1],[-28,-4],[-1,0],[-1,-1],[-21,-13],[-23,-30],[-14,-9],[-33,-5],[-4,1],[-17,2],[-39,-9],[-4,-2],[-31,-18],[-26,-22],[-1,-5],[-27,-40],[-2,-3],[-70,-46],[-37,-24],[-19,-13],[-55,-81],[0,-2],[-3,-11],[-2,-9],[18,-67],[2,-7],[-22,-15],[-7,-5],[-33,-23],[-5,-6],[-7,-11],[-1,-6],[-3,-13],[-11,-10],[-18,0],[-29,10],[-1,2],[-64,73],[-97,20],[-31,4],[-18,-12],[-2,-12],[-2,-13],[-1,-7],[44,-51],[1,-1],[-3,-21],[-1,-1],[-2,-1],[-19,-15],[-1,0],[-7,0],[-14,0],[-10,6],[-2,1],[-5,4],[-44,40],[1,8],[3,16],[9,20],[1,1],[-1,33],[-11,12],[-6,1],[-40,8],[-5,-1],[-8,-1],[-3,-2],[-11,-9],[-7,-5],[-3,-19],[15,-19],[11,-14],[-3,-19],[-5,-3],[-7,-3],[-12,-7],[-50,-13],[-32,-28],[-4,-4],[-1,-4],[-13,-62],[-4,-3],[-4,-4],[-7,-5],[-11,0],[-11,1],[-9,0],[-9,8],[-27,24],[-5,0],[-37,3],[-36,3],[-20,-8],[-12,-15],[-1,-10],[-1,-5],[0,-1],[0,-1],[6,-19],[-6,-35],[-18,-58],[-1,-2],[3,-22],[11,-15],[20,-25],[26,-13],[3,-1],[2,-1],[59,-15],[8,-8],[12,-13],[7,-7],[4,-33],[-3,-10],[-2,-10],[-3,-9],[-7,-7],[-27,-24],[-3,-3],[-21,-14],[-80,-45],[-8,1],[-10,2],[-2,1],[-17,18],[-5,5],[-21,3],[-10,1],[-3,1],[-32,-21],[-57,-62],[-1,0],[-55,-56],[-14,-9],[-3,7],[-15,42],[-3,3],[-4,5],[-3,4],[-13,1],[-4,-2],[-4,-3],[-6,-4],[-59,-57],[-30,-30],[-1,0],[-2,-16],[8,-10],[19,-5],[14,-4],[7,-8],[3,-3],[6,-7],[-4,-22],[-17,-11],[-1,-1],[-3,-1],[-113,-68],[-2,-1],[-59,5],[-14,1],[-26,1],[-3,0],[-3,-2],[-15,-9],[-4,-24],[-2,-16],[-9,-12],[-1,0],[-6,-8],[-93,-71],[-17,1],[-11,0],[-10,1],[-3,3],[-18,21],[4,24],[52,32],[16,20],[3,22],[-10,12],[-13,1],[-118,-33],[-10,-3],[-27,-8],[-12,-4],[-87,-29],[-7,-3],[-14,-9],[22,-55],[18,-47]],[[58110,31327],[-48,1],[-71,1],[10,-15],[0,-4],[-3,-34],[-9,-18],[-22,-36],[-13,-23],[-34,-58],[-16,-20],[-71,-71],[-11,-7],[-3,1],[-18,2],[-22,19],[-9,1],[-22,3],[-24,-8],[-22,-22],[-4,-55],[0,-4],[-1,-9],[-41,-55],[-38,-51],[-45,-59],[-6,-2],[-98,-24],[-1,0],[-43,-25],[-43,-25],[-66,-38],[-17,-4],[-6,-1],[-40,4],[-7,8],[-4,5],[2,8],[19,10],[22,12],[4,2],[15,4],[7,2],[18,11],[3,16],[-8,10],[-42,32],[-19,2],[-92,-24],[-17,-8],[-5,-2],[-2,-1],[-1,-8],[9,-8],[12,-12],[8,-8],[4,-3],[-3,-16],[-1,-1],[-39,-16],[-9,3],[-48,-5],[-21,-14],[-4,-26],[-5,-4],[-9,-6],[-13,2],[-40,14],[-19,7],[-12,4],[-8,9],[-3,12],[-3,11],[-11,12],[-64,12],[-11,2],[-4,1],[-19,2],[-27,-13],[-12,1],[-6,1],[-10,18],[13,83],[42,28],[5,26],[-14,16],[-29,5],[-10,2],[-22,-14],[-12,-20],[-86,-64],[-28,-21],[-25,-18],[-9,-4],[-12,-5],[-14,7],[-18,2],[-19,3],[-89,-25],[-22,-17],[-13,-61],[-8,-13],[-27,-13],[-21,8],[-13,16],[-2,8],[3,19],[39,30],[4,25],[-6,7],[-2,2],[-240,34],[-15,2],[-12,1],[-13,2],[-17,-9],[-27,6],[-43,9],[-67,15],[-1,0],[-5,1],[-18,2],[-11,-7],[-5,-54],[-9,-6],[-5,-3],[-1,0],[-9,1],[-15,2],[-64,-2],[-6,-1],[-25,-5],[-7,-2],[-16,21],[-15,2],[-9,1],[-117,-43],[-48,9],[-12,2],[-19,31],[-16,16],[-20,2],[-5,1],[-82,17],[-6,1],[-21,28],[-50,68],[-4,6],[-19,22],[-32,1],[-5,0],[-21,-13],[-80,27],[-5,1],[-12,4],[-10,-5],[-42,-27],[-9,-5],[-44,-28],[-11,-13],[-3,-4],[-43,-53],[-50,8],[-23,3],[-28,3],[0,1],[-5,-3],[-4,-2],[-12,-7],[-19,-60],[-7,-43],[7,-15],[5,-10],[21,-45],[-1,-49],[-11,-7],[-2,1],[-19,2],[-8,9],[-3,25],[-15,24],[-27,16],[-24,16]],[[54767,30683],[-26,12],[-31,-2],[-8,2],[-2,-2],[-21,-20],[-9,-62],[-30,-32],[-24,-16],[-44,-14],[-2,1],[-25,5],[-31,23],[-24,27],[-11,7],[-60,24],[-30,9],[-86,10],[-58,-7],[-28,1],[-123,-21],[-18,11],[-7,4],[-26,16],[-16,18],[3,23],[6,33],[-14,16],[-68,43],[-18,10],[-30,4],[-26,55],[-4,20],[-11,9],[-25,12],[-100,5],[-17,1],[-9,0],[-7,-4],[-6,-4],[-1,-1],[-9,-41],[-1,-4],[-55,19],[-112,41],[-34,12],[-2,1],[-19,-6],[-19,2],[-28,39],[-18,8],[-93,19],[-5,1],[-70,23],[-22,7],[-19,21],[-3,3],[-1,3],[-8,15],[-17,34],[0,19],[0,1],[-1,0],[-1,2],[-6,7],[-100,23],[-18,2],[-5,0],[-2,0],[-18,-11],[0,-1],[-1,-10],[-2,-13],[-14,-9],[-4,-3],[-18,5],[-48,36],[-2,3],[-16,17],[-3,4],[-29,77],[1,5],[1,6],[2,16],[17,25],[0,1],[3,21],[-11,26],[-20,26],[-30,-4],[-20,-6],[-61,-28],[-7,-5],[-7,-42],[-9,-6],[-23,-15],[-13,-4],[-62,7],[-46,6],[-14,13],[-5,5],[-16,43],[-4,12],[-17,17],[-24,24],[-5,5],[-3,0],[-30,3],[-36,3],[-6,0],[-8,9],[2,7],[1,7],[0,5],[24,24],[3,3],[4,10],[1,1],[1,9],[3,17],[-9,9],[-2,3],[-22,3],[-13,-4],[-9,-5],[-44,-25],[-2,-2],[-3,-3],[-15,-15],[-8,-9],[-3,-9],[-13,-54],[-3,-14],[4,-4],[4,-4],[0,-1],[3,0],[10,-1],[28,18],[13,4],[16,-2],[2,0],[3,-3],[16,-18],[0,-20],[-4,-7],[-3,-2],[-25,-17],[-29,-13],[-9,-4],[-6,-2],[-20,5],[-5,1],[-16,18],[-10,12],[-16,18],[-50,6],[-104,-7],[-35,-8],[-51,-12],[-13,-3],[-100,32],[-82,31],[-90,50],[-19,48],[-1,1],[7,5],[21,-5],[23,-14],[43,-21],[64,-24],[10,7],[0,2],[2,9],[-6,104],[-19,35],[-11,13],[-20,24],[-6,8],[-17,8],[-2,0],[-8,4],[-53,3],[-29,-2],[-70,-8],[-43,-14],[-17,-6],[-58,7],[-33,4],[-14,1],[-20,14],[-16,18],[1,5],[1,8],[1,3],[37,20],[4,2],[12,15],[2,14],[-2,8],[0,1],[-4,16],[-27,28],[-13,2],[-36,6],[-9,2],[-46,10],[-17,12],[-4,2],[-40,27],[-4,2],[-13,16],[-13,52],[-1,4],[-38,4],[-8,1],[-30,8],[-38,10],[-8,2],[-10,5],[-33,17],[-15,11],[-30,24],[-13,15],[-73,82],[-39,36]],[[50950,32124],[11,25],[3,17],[2,13],[-2,6],[-6,24],[-1,6],[-1,3],[-38,78],[-8,9],[-7,1],[-9,1],[-15,8],[-9,6],[-2,0],[-3,3],[-37,38],[-6,6],[7,21],[60,83],[35,30],[12,11],[20,28],[2,4],[2,3],[2,7],[2,13],[0,1],[-7,12],[-7,14],[-1,1],[-11,6],[-13,62],[1,15],[0,2],[1,3],[-53,100],[-12,24],[-2,3],[-13,-1],[-10,-7],[-78,-57],[-6,-4],[-23,-19],[-32,-26],[-1,-1],[-1,0],[-30,4],[-17,7],[-11,13],[-3,3],[-79,55],[-7,4],[-50,27],[-7,4],[1,2],[35,60],[3,5],[-1,13],[-1,2],[-4,4],[-3,4],[-13,1],[-53,4],[-30,25],[-1,1],[-40,83],[4,27],[2,1],[1,0],[15,10],[7,1],[51,6],[10,7],[0,1],[1,5],[2,10],[-13,18],[-40,10],[-18,-4],[-4,-1],[-7,0],[-27,4],[-4,0],[-6,5],[-10,7],[-6,4],[-6,7],[-9,10],[-12,14],[7,6],[16,18],[11,11],[4,4],[5,57]],[[50950,32124],[-14,11],[-3,4],[-15,13],[-9,6],[-21,13],[-34,22],[-23,7],[-24,-2],[-3,-1],[-9,-3],[-46,-28],[-10,-1],[-3,-1],[-32,-6],[-25,-5],[-12,-2],[-16,-3],[-48,-20],[-18,-2],[-24,9],[-26,15],[-22,4],[-14,0],[-33,-6],[-44,-12],[-20,-1],[-19,4],[-23,14],[-12,6],[-27,-20],[-43,-85],[-35,-1],[-27,0],[-12,0],[-10,0],[-32,1],[-83,1],[-60,1],[-76,1],[-344,9],[-6,0],[-41,1],[-121,2],[-252,0],[-54,0],[-87,0],[-109,1],[-67,-1],[-181,4],[-35,1],[-220,5],[-112,2],[-41,-1],[-47,1],[-31,-1],[-23,0],[-1,0],[-24,0],[-80,1],[-60,1],[-31,1],[-377,4],[-88,1],[-36,0],[-100,2],[-27,-2],[-153,5],[-25,1],[-21,0],[-28,0],[-106,2],[-57,1],[-149,-13],[-32,1],[-78,1],[-26,1],[-51,0],[-58,1],[-101,1],[-37,1],[-27,0],[-62,1],[-30,0],[-66,1],[-148,3],[-275,4],[-39,1],[-9,0],[-109,1],[-130,1],[-172,2],[-127,1],[-29,0],[-38,0],[-222,3],[-102,1],[-26,0],[-75,0],[-139,1]],[[44601,32110],[-101,2],[-85,1],[-4,0],[-90,1],[-23,0],[-49,0],[-21,0],[-123,2],[-35,1],[-30,0],[-36,0],[-57,1],[-27,0],[-29,0],[-101,1],[-208,2],[-44,1],[-29,0],[-27,0],[-22,-4],[-179,4],[-17,1],[-79,2],[33,29],[5,4],[86,77],[-204,2],[-9,1],[-46,0],[-74,1],[-32,-1],[-1,0],[-25,1],[-23,1],[-30,0],[-52,0],[-5,0],[-18,0],[-54,0],[-43,0],[-4,1],[-20,0],[-27,1],[-176,3],[-57,1],[-23,1],[-1,0],[-21,5],[-1,0],[-23,-3],[-36,0],[-26,1],[-29,0],[-40,1],[-22,0],[-35,0],[-83,2],[-178,2],[-63,1]],[[41828,32256],[0,118],[1,130],[0,115],[2,205],[0,32],[2,146],[1,64],[0,28],[0,136],[1,35],[0,4],[0,32],[3,184],[0,55],[3,130],[1,73],[1,38],[4,174],[1,65],[0,23],[0,39],[2,38],[1,49],[-4,32],[1,38],[1,52],[2,78],[1,27],[0,22],[1,69],[0,10],[0,26],[2,30],[0,4],[2,64],[1,79],[2,92],[5,214],[3,130],[4,262],[0,3],[0,26],[6,296],[0,7],[2,93],[1,26],[2,57],[1,69],[-3,23]],[[91314,28080],[47,-10],[69,5],[79,7],[22,3],[21,2],[13,-1],[49,-6],[0,-4],[0,-59],[61,51],[71,50],[47,12],[117,11],[78,-13],[61,-10],[54,-25],[55,-36],[68,-43],[-6,-3],[-45,-19],[23,-42],[51,10],[25,44],[84,13],[39,2],[49,-3],[4,-78],[48,50],[37,-8],[14,-3],[43,-27],[17,-14],[21,-17],[35,-45],[0,-24],[0,-28],[-27,-74],[-16,-66],[-27,-33],[-6,-8],[41,-34],[22,-19],[3,-77],[11,-26],[25,-55],[10,-73],[8,-14],[21,-31],[12,-20],[7,-13],[39,-50],[5,-23],[12,-46],[-5,-46],[-5,-24],[-2,-8],[-1,-29],[-3,-21],[-3,-16],[-6,-31],[-10,-42],[18,-68],[10,-14],[23,-31],[19,-29],[13,-19],[10,-52],[3,-28],[3,-42],[3,-53],[-53,-9],[-21,51],[-19,72],[-14,34],[-15,37],[-37,50],[-37,36],[-23,42],[-23,44],[-27,48],[-15,25],[-21,27],[-22,28],[-17,17],[-27,27],[-18,14],[-24,17],[-25,25],[-21,20],[-6,-16],[-15,-38],[-16,-2],[-44,-3],[-101,24],[-33,48],[-33,58],[-27,55],[-39,63],[-19,26],[-10,15],[-33,31],[-6,4],[-36,22],[-67,25],[-33,15],[-35,33],[-50,47],[-48,34],[-23,15],[-18,13],[-33,23],[-57,18],[-42,5],[-76,3],[-49,5],[-46,13],[-64,24],[-39,26],[-68,67],[-38,30],[-89,48],[-7,4],[-66,24],[-65,11],[-35,3],[-23,1],[-32,2],[-58,-8],[-26,-4],[-49,-7],[-86,-14],[-45,-5],[-76,-8],[-80,-26],[-61,0],[-56,-11],[-39,33],[-13,10],[-16,33],[-10,21],[86,38],[68,2],[24,-9],[22,-7],[12,-3],[31,-7],[53,-11],[111,10],[49,19],[40,12],[29,23],[9,8],[43,39],[22,25],[14,17],[46,44],[32,16],[51,-13],[14,-4],[58,-35],[57,-40],[78,-33],[88,-13]],[[92163,28354],[63,-12],[60,1],[46,11],[13,3],[16,0],[41,-1],[25,-45],[-2,-56],[-19,-55],[-11,-14],[-28,-33],[-53,-23],[-62,33],[-40,27],[-43,24],[-32,12],[-4,1],[-60,10],[-89,5],[-26,1],[-18,1],[-38,2],[-47,-5],[-9,-1],[-81,-24],[-81,-14],[-24,-4],[-16,-3],[-43,-9],[-22,-4],[-14,-3],[-26,-2],[-55,-4],[-83,-2],[-30,4],[-6,1],[-18,0],[-38,1],[-50,-4],[-55,12],[-53,29],[-50,45],[-42,54],[-42,83],[82,29],[20,0],[37,0],[59,-20],[53,-24],[51,-30],[50,-34],[53,-24],[40,-1],[53,16],[48,31],[48,43],[37,44],[49,45],[50,27],[22,3],[35,3],[43,-15],[51,-36],[60,-22],[42,-16],[44,-10],[37,-17],[39,-19],[43,-15]],[[93179,28768],[90,-36],[55,8],[27,-50],[-6,-17],[-8,-29],[-7,-25],[-4,-19],[-21,-64],[-18,-75],[-17,-71],[-26,-97],[-17,-48],[-52,3],[-49,25],[-4,2],[-52,16],[-60,14],[-66,0],[-31,-7],[-27,-6],[-19,-7],[-49,-19],[-54,-18],[-78,25],[-57,18],[-40,3],[-7,23],[-11,32],[6,45],[3,21],[15,30],[9,18],[11,29],[8,18],[39,46],[56,41],[55,15],[74,53],[61,22],[33,12],[15,5],[20,8],[28,12],[34,14],[40,12],[12,5],[31,15],[14,-1],[44,-1]],[[93899,28848],[2,-59],[-30,-53],[-41,-57],[-34,-53],[10,-42],[-6,-52],[-5,-116],[4,-33],[22,-154],[17,-47],[7,-18],[-16,-107],[25,-9],[18,-6],[15,-83],[-13,-47],[-4,-15],[-9,-104],[-7,-61],[2,-47],[0,-30],[1,-42],[-29,-22],[-45,12],[-8,3],[-90,22],[-25,-11],[-45,-20],[1,-28],[4,-60],[15,11],[27,18],[33,21],[20,12],[37,-37],[35,-35],[40,-4],[41,-35],[33,-56],[5,-58],[-14,-18],[-21,-25],[-24,-32],[-22,-30],[-39,-72],[-2,-4],[-33,-62],[-60,-101],[-22,-38],[-29,-51],[-41,-82],[-33,-65],[-34,-69],[-29,-64],[-25,-49],[-31,-51],[-11,-46],[-26,-59],[-31,-72],[-29,-62],[-13,-42],[-23,-45],[-43,-80],[-56,-75],[-60,-81],[-23,-19],[-61,-49],[-28,-34],[-69,-28],[-78,23],[-55,64],[-8,10],[-49,78],[-1,10],[-7,46],[3,18],[6,31],[-34,-18],[-18,33],[-18,34],[-22,60],[5,44],[46,75],[39,49],[31,48],[48,66],[38,44],[26,36],[4,5],[-1,13],[-1,62],[-8,41],[-8,43],[-18,54],[-20,47],[-6,13],[-29,50],[-12,21],[-1,22],[2,19],[2,18],[13,55],[17,75],[-16,87],[-48,102],[-35,36],[-2,2],[-6,72],[-28,67],[-3,7],[-14,28],[-2,17],[-2,21],[4,40],[46,57],[-76,-2],[1,16],[6,73],[19,61],[0,37],[0,32],[-55,71],[-56,43],[-65,36],[-29,32],[9,16],[24,42],[31,53],[4,6],[45,27],[62,-7],[54,-8],[40,-3],[46,7],[43,10],[21,8],[21,8],[58,18],[8,2],[43,6],[79,-36],[56,-37],[-17,-54],[-62,-35],[-56,-21],[30,-43],[39,-20],[27,-15],[2,4],[25,42],[35,35],[55,92],[48,68],[35,53],[25,63],[18,70],[10,56],[16,49],[21,35],[27,51],[61,88],[29,62],[-17,46],[-28,-35],[-34,-38],[-9,52],[17,68],[78,54],[56,15],[52,16],[59,6],[87,-20],[66,-24],[61,-49]],[[91949,29688],[-17,56],[10,18],[6,12],[-13,42],[7,0],[40,1],[65,-30],[22,-18],[34,-27],[3,-38],[1,-13],[-10,-39],[-45,14],[-49,15],[-54,7]],[[91949,29688],[12,-47],[6,-20],[-82,-9],[17,-11],[47,-31],[57,-42],[43,-1],[22,-1],[42,-19],[14,-7],[96,-45],[59,-28],[43,-32],[38,-32],[17,-14],[41,-32],[32,-25],[68,-33],[48,-39],[47,-58],[35,-30],[29,-28],[-18,-38],[-77,9],[2,-1],[93,-74],[12,-14],[20,-22],[-21,-22],[-12,-13],[-8,-62],[-15,-80],[-19,-18],[-40,-36],[-61,26],[-61,12],[-11,3],[-52,-20],[-20,-30],[-20,-29],[21,-78],[37,88],[52,7],[14,-9],[27,-20],[-46,-65],[-36,-60],[-58,-42],[-52,-17],[-45,-22],[-35,-25],[-35,-3],[-42,7],[-10,2],[-40,7],[-62,15],[-36,21],[-3,62],[-80,38],[25,58],[-62,-8],[-53,20],[-64,-4],[84,-73],[-73,0],[-57,-14],[-83,-4],[-11,-43],[-57,-31],[-32,-17],[-5,-3],[-43,-44],[-48,-43],[-11,1],[-31,3],[-37,15],[-7,3],[-19,8],[-37,17],[-55,12],[-45,10],[-20,6],[-27,7],[-64,33],[-20,6],[-28,8],[-57,2],[-76,-5],[-56,-4],[-60,34],[27,81],[45,43],[45,46],[19,111],[0,2],[-33,39],[-8,-35],[-14,-64],[-28,-16],[-66,-40],[-38,-30],[-48,-70],[-1,-61],[13,-32],[29,-68],[60,-21],[100,-53],[28,-84],[-28,-35],[-10,-13],[-76,-60],[-43,-48],[-27,-24],[-11,-9],[-2,-1],[-53,-35],[-15,-20],[-24,-9],[-18,-8],[-22,1],[-64,25],[-25,17],[-61,20],[-72,4],[-17,1],[-21,-4],[-49,-44],[-23,2],[-22,2],[-11,45],[-9,33],[11,50],[14,50],[1,18],[2,33],[-30,55],[-22,-56],[-7,-18],[-15,-33],[-11,-25],[-22,-48],[-28,0],[-10,0],[-29,1],[-83,23],[-35,-14],[-10,-4],[-56,3],[9,-7],[46,-37],[-70,-38],[-26,-14],[-31,-17],[-28,-21],[-24,-20],[-45,-56],[-54,-20],[-40,-13],[-66,-40],[-63,-53],[-55,50],[-63,61],[-57,25],[-54,-15],[-25,-7]],[[89265,27952],[-78,11],[-2,0],[-11,-4],[-12,-4],[-55,-35],[-6,-3],[-3,0],[-2,0],[-2,1],[-8,1],[-24,28],[-7,9],[-9,4],[-31,1],[-18,-14],[-7,-37],[7,-31],[-3,-16],[-25,-20],[-8,-6],[-160,-36],[-21,6],[-7,8],[-1,0],[-3,4],[3,13],[11,10],[37,17],[3,14],[0,2],[-4,7],[-31,58],[-8,12],[-28,17],[-18,3],[-7,1],[-10,-7],[-45,-85],[-1,-1],[-2,-4],[-2,-10],[6,-15],[1,-4],[-2,-2],[-25,-12],[-20,-9],[-53,-26],[-19,28],[-7,5],[-4,-5],[-5,-5],[-3,-4],[-20,-23],[-9,-9],[-2,-3],[-47,-38],[-26,-81],[-54,23],[-36,15],[-34,14],[-47,20],[-58,24],[-27,27],[-20,19],[-33,11],[-1,0],[-59,-6],[-2,0],[-15,12],[-100,73],[-4,6],[-13,8],[-17,4],[-28,-3],[-141,-63],[-2,0],[-1,-1],[-7,-4],[-6,-6],[-7,-30],[-5,-15],[-11,-22],[-4,-7],[0,-12],[0,-9],[1,-5],[-8,-11],[-6,-10],[-13,-20],[-18,-10],[-2,-1],[-24,-12],[-25,-6],[-39,-1],[-20,3],[-29,16],[-25,22],[-16,22],[-13,22],[-14,19],[-17,28],[-15,23],[-10,20],[-17,53],[-11,25],[-19,23],[-17,17],[-36,20],[-41,14],[-29,6],[-35,5],[-21,9],[-32,15],[-31,18],[-22,20],[-22,31],[-12,22],[-10,18],[-16,34],[-16,25],[-9,24],[-6,24],[-7,37],[-9,24],[-13,29],[-13,17],[-24,25],[-18,18],[-19,21],[-16,15],[-28,22],[-16,16],[-12,23],[3,30],[28,12],[20,4],[32,4],[28,10],[18,10],[4,2],[16,24],[-4,28],[2,32],[-8,36],[-15,17],[-32,26],[-12,19],[-5,23],[-6,27],[-16,16],[-31,13],[-43,22],[-23,8],[-21,7],[-20,6],[-30,14],[-20,9],[-20,9],[-21,5],[-35,5],[-51,5],[-42,1],[-34,1],[-39,3],[-65,2],[-23,5],[-33,5]],[[86332,28930],[-23,2],[-85,0],[-35,4],[-25,3],[-55,27],[-28,13],[-21,11],[-21,10],[-20,9],[-120,58],[-46,21],[-122,58],[-66,32],[-44,21],[-86,41],[-132,63],[-32,15],[-86,41],[-55,26],[-48,23],[-26,12],[-22,11],[-53,25],[-24,11],[-98,47],[-26,12],[-24,12],[-22,10],[-95,46],[-65,31],[-187,89],[-117,56],[-28,13],[-60,29],[-188,90],[-63,30],[-61,29],[-49,23],[-43,21],[-41,19],[-29,15],[-22,10],[-25,12],[-39,19],[-150,74],[-28,14],[-60,28],[-27,14],[-21,9],[-60,27],[-37,15],[-24,9],[-28,11],[-30,13],[-64,28],[-27,12],[-37,17],[0,5],[-4,64],[0,3],[-4,38],[-3,51],[-4,49],[-1,27],[-2,30],[-4,42],[-4,47],[-4,53],[-2,28],[-19,18],[-21,21],[-19,17],[-26,22],[-20,18],[-20,18],[-59,52],[-52,48],[-17,15],[-35,31],[-22,20],[-38,33],[-57,24],[-29,9],[-37,12],[-8,2],[-23,7],[-39,12],[-27,9],[-27,8],[-25,8],[-23,7],[-41,13],[-82,27],[-85,26],[-77,24],[-24,2],[-30,8],[-29,17],[-31,19],[-25,14],[-21,14],[-12,32],[-9,37],[-18,24],[-21,24],[-14,24],[-19,30],[-21,23],[-47,42],[-33,31],[-16,21],[-14,22],[-15,20],[-23,21],[-26,25],[-48,44],[-60,56],[-23,15],[-36,14],[-22,9],[-32,13],[-21,13],[-22,18],[-23,12],[-46,20],[-41,17],[-31,14],[-16,15],[-11,19],[-12,22],[-13,24],[-14,24],[-15,27],[-33,58],[-13,24],[-16,27],[-14,25],[-18,14],[-25,13],[-24,13],[-87,44],[-81,43],[-22,11],[-21,13],[-28,4],[-33,4],[-4,3],[-22,17],[-18,21],[-16,18],[-15,17],[-25,30],[-25,30],[-22,26],[-31,35],[-23,23],[-40,34],[-18,15],[-17,13],[-13,69],[-3,42],[-4,37],[-4,71],[-3,24],[0,19],[0,6],[10,26],[12,25],[5,11],[7,15],[4,9],[13,28],[10,24],[12,25],[13,23],[22,26],[22,26],[14,17],[18,39],[1,24],[-5,24],[-7,30],[-10,27],[4,32],[50,67],[47,60],[18,25],[16,22],[14,39],[9,26],[9,26],[9,26],[5,25],[5,23],[6,26],[6,29],[6,28],[14,31],[9,21],[32,72],[16,34],[9,23],[9,22],[3,26],[-5,61],[-3,38],[-3,45],[-1,8],[-5,24],[-2,23],[25,64],[9,20],[12,27],[16,37],[9,29],[-1,39],[-4,33],[-3,24],[-3,25],[-7,28],[-6,22],[-22,39],[-24,46],[-7,23],[-1,27],[-12,23],[-29,34],[-18,21],[-15,19],[-19,13],[-21,11],[-36,9],[-29,7],[-23,6],[-28,5],[-24,2],[-36,3],[-25,3],[-40,7],[-74,12],[-31,5],[-43,7],[-27,13],[-23,30],[-21,22],[-30,10],[-64,5],[-56,-7],[-27,-6],[-21,-4],[-24,-7],[-30,-10],[-23,-9],[-46,-9],[-35,-4],[-25,-3],[-28,-6],[-20,17],[-18,46],[-48,1],[-26,2],[-31,40],[-37,30],[-24,19],[-17,18],[-7,29],[-3,27],[-3,33],[-3,27],[2,30],[-18,28],[-30,38],[-17,22],[-21,27],[-33,27],[-20,13],[-1,1],[-17,18],[-17,25],[-21,17],[-19,10],[-27,10],[-26,8],[-26,8],[-27,16],[-22,14],[-25,17],[-12,28],[-8,26],[-6,22],[-8,30],[-8,32],[-5,38]],[[89940,31298],[-2,-12],[-3,-13],[-11,-54],[-38,-29],[-43,-49],[71,6],[73,9],[72,-65],[62,-38],[-24,-42],[-46,-48],[23,-71],[9,-14],[14,-22],[5,-7],[51,-29],[86,11],[70,2],[7,0],[65,2],[78,6],[52,7],[54,12],[54,17],[68,30],[49,17],[63,-9],[31,-12],[36,-14],[51,-59],[2,-46],[-9,-24],[-7,-19],[-5,-13],[-12,-32],[-23,-45],[-8,-19],[-10,-20],[-25,-48],[15,-30],[11,-22],[31,70],[18,43],[5,11],[5,10],[18,39],[18,31],[25,24],[6,-11],[22,-42],[-11,-41],[-9,-19],[-16,-33],[-19,-55],[-19,-50],[-21,-62],[-23,-114],[-17,92],[-26,47],[-9,-49],[-10,-55],[4,-83],[39,-62],[40,-54],[-17,-60],[68,52],[75,-40],[63,-38],[59,-37],[45,-23],[13,-7],[56,-33],[5,-2],[27,-12],[9,-58],[26,36],[19,6],[48,15],[65,0],[9,0],[31,-12],[55,-19],[64,-19],[60,-18],[51,-27],[59,-54],[51,-43],[48,-34],[63,-34]],[[41828,32256],[-4,-320],[-1,-150],[1,-110],[-2,-242],[-4,-253],[-17,0],[-240,1],[-78,1],[-186,0],[-71,1],[-72,1],[-144,-1],[-137,1],[-73,0],[-78,2],[-125,1],[-404,3],[-134,1],[-151,0],[-20,1],[-6,0],[-81,0],[-23,1],[-3,0],[-57,0],[-12,0],[-86,0],[-41,0],[-25,0],[-40,-1],[-157,-1],[-349,-3],[-70,-5],[-224,-2],[-26,-1],[-151,-3],[-197,-3],[-23,0],[-93,-2],[-36,0],[-29,-1],[-57,-1],[-75,0],[-78,-2],[-112,-1]],[[37837,31168],[-7,2],[-20,8],[-25,12],[-30,2],[-26,-12],[-21,12],[-24,12],[-28,9],[-21,10],[-18,22],[-6,24],[-10,19],[-18,22],[-20,21],[-18,16],[-25,15],[-30,-3],[-33,1],[-32,-3],[-21,-11],[-22,-5],[-22,-19],[-24,-19],[-21,-1],[-21,14],[-12,22],[-7,22],[-19,22],[-23,0],[-22,2],[-32,19],[-25,19],[-20,26],[-5,38],[3,22],[11,23],[-7,24],[-22,16],[-21,13],[-23,11],[-18,15],[-1,25],[-20,14],[-25,7],[-25,6],[-25,27],[-7,32],[-11,26],[-6,24],[2,-129],[0,-42],[-4,-25],[3,-51],[-22,-6],[-27,-1],[-47,1],[-21,0],[-41,0],[-50,2],[2,149],[-4,31],[1,74],[-2,118],[-16,-24],[-15,-4],[-214,27],[-4,1],[-63,12],[-31,7],[-2,0],[-40,-4],[-88,-8],[-3,-1],[-8,-2],[0,1],[-94,26],[-144,38],[-18,4],[-1,-1],[-100,9],[-24,3],[-46,5],[-6,3],[-23,14],[-15,8],[-79,12],[-6,4],[-6,3],[-57,24],[-131,56],[-54,-52],[-48,37],[-38,29],[-7,6],[-83,14],[-30,-20],[-28,-29],[-34,-23],[-3,-3],[-50,-15],[-53,9],[-12,2],[-25,-1],[-22,-1],[-18,0],[-22,63]],[[34961,32121],[4,4],[7,7],[14,45],[58,178],[105,322],[-1,36],[-5,154],[2,57],[3,105],[7,246],[1,54],[152,125]],[[86332,28930],[-24,-37],[-7,-11],[-7,-11],[-17,-27],[-24,-39],[-15,-25],[-16,-25],[-50,-81],[-22,-38],[-14,-25],[-17,-26],[-15,-24],[-54,-86],[-20,-33],[-13,-21],[-27,-45],[-12,-18],[-20,-32],[-19,-31],[-14,-22],[-16,-26],[-14,-21],[-36,-64],[-33,-55],[-12,-21],[-11,-20],[-18,-32],[-35,-58],[-12,-21],[-22,-39],[-36,-63],[-15,-28],[-45,-76],[-25,-43],[-47,-81],[-14,-24],[-12,-21],[-15,-25],[-18,-30],[-22,-39],[-22,-37],[-19,-34],[-28,-48],[-23,-41],[-12,-20],[-15,-25],[-12,-22],[-19,-34],[-35,-60],[-15,-26],[-15,-27],[-12,-20],[-41,-71],[-38,-66],[-27,-47],[-21,-37],[-26,-46],[-16,-26],[-56,-97],[-23,-41],[-32,-56],[-51,-88],[-57,-99],[-24,-43],[-54,-93],[-1,-2],[-24,-11],[-90,-41],[-136,-62],[-20,-9],[-40,-19],[-36,-16],[-23,-11],[-26,-12],[-21,-9],[-21,-10],[-72,-33],[-24,-11],[-139,-63],[-78,-37],[-43,-20],[-98,-45],[-61,-29],[-140,-64],[-23,-10],[-22,-10],[-23,-11],[-20,-9],[-41,-14],[-28,-11],[-36,-11],[-55,-17],[-36,-11],[-41,-13],[-23,-7],[-24,-8],[-96,-29],[-67,-21],[-8,-3],[-105,-32],[-34,-11],[-88,-28],[-47,-15],[-52,-16],[-24,-7],[-34,-11],[-1,0],[-20,-7]],[[82733,25466],[-8,49],[-6,7],[-17,20],[-11,13],[-90,94],[-29,15],[-34,4],[-36,-9],[-33,-26],[-5,-11],[-26,-59],[-10,-6],[-35,-20],[-42,-3],[-31,22],[-11,8],[8,15],[2,3],[47,54],[3,14],[6,23],[3,13],[-16,33],[-5,6],[-13,14],[-8,11],[-12,7],[-39,8],[-16,-1],[-21,-11],[-38,-27],[-1,-1],[-2,0],[-39,3],[-8,4],[-45,52],[-24,3],[-5,-2],[-16,-9],[-10,2],[-18,2],[-11,18],[0,25],[-34,46],[-4,5],[2,12],[0,2],[26,24],[-1,15],[0,2],[0,10],[-37,41],[-31,20],[-1,1],[-12,17],[2,10],[0,2],[0,2],[15,9],[12,1],[47,-1],[21,8],[0,3],[2,11],[-7,9],[-15,22],[-14,19],[-4,7],[-27,64],[-4,33],[4,19],[8,11],[12,16],[26,38],[0,2],[2,13],[0,1],[-10,12],[-21,4],[-36,7],[-1,0],[-3,3],[-12,15],[-1,0],[1,26],[0,13],[-2,28],[-2,21],[-15,22],[-5,0],[-39,4],[-57,6],[-91,9],[0,2],[-18,56],[1,4],[2,11],[1,9],[-5,4],[-6,7],[-10,11],[-18,2],[-4,0],[-100,-23],[-5,-1],[-56,35],[-7,1],[-22,5],[-2,1],[0,1],[-9,28],[-2,6],[-3,10],[-18,112],[-3,4],[-3,3],[-10,12],[-148,120],[-38,19],[-72,59],[-8,0],[-14,0],[-19,-6],[-26,-21],[-5,-29],[2,-22],[0,-1],[-9,-34],[-10,-21],[-11,-12],[-37,-23],[-1,-1],[-6,-1],[-8,-1],[-43,6],[-12,6],[-3,1],[-3,4],[-10,12],[-8,35],[0,4],[1,10],[9,50],[4,23],[9,15],[14,10],[2,0],[16,3],[18,4],[3,1],[1,1],[18,13],[3,2],[2,11],[0,2],[2,11],[-6,9],[-3,4],[-11,15],[-17,10],[-117,32],[-3,0],[-73,13],[-4,0],[-8,1],[-20,3],[-3,3],[-13,13],[-31,52],[0,1],[-1,1],[-3,13],[-16,19],[-1,0],[-13,2],[-20,2],[-35,-20],[-8,-10],[-26,-59],[-21,-30],[-10,-7],[-4,-2],[-7,-5],[-1,0],[-8,-2],[-17,-3],[-12,3],[-12,3],[-11,7],[-21,25],[-3,3],[-1,5],[-4,19],[0,1],[1,2],[9,38],[15,71],[2,6],[-5,46],[0,1],[-39,66],[-4,3],[-11,11],[-12,11],[-32,-4],[-36,8],[-20,13],[-3,3],[-19,21],[-10,10],[-24,4],[-75,-32],[-19,-3],[-31,4],[-56,24],[-20,14],[-27,38],[-3,4],[5,29],[30,20],[20,12],[10,11],[20,22],[1,1],[0,2],[1,4],[9,37],[1,5],[-2,6],[-13,32],[-13,15],[-3,2],[-26,13],[-11,1],[-23,3],[-56,-10],[-3,-1],[-2,0],[-32,4],[-35,16],[-16,20],[-7,8],[-3,17],[18,33],[18,14],[5,30],[1,5],[-11,28],[-6,7],[-12,15],[-15,13],[-7,6],[-34,5],[-16,-4],[-55,8],[-62,27],[-17,14],[-10,8],[-25,1],[-69,-38],[-4,-2],[-9,-12],[-32,-23],[-43,-11],[-24,-5],[-36,-8],[-21,-4],[-20,-3],[-46,6],[-33,15],[-2,1],[-1,1],[-24,20],[-37,31],[-42,35],[-3,3],[-23,25],[-6,7],[3,18],[39,23],[19,19],[5,13],[5,26],[0,1],[-1,1],[-25,29],[-3,4],[-31,1],[-24,-11],[-100,11],[-7,1],[-8,16],[-23,45],[-29,58],[-71,-31],[-63,-19],[-41,0],[-40,5],[-17,8],[-22,21],[0,1],[0,1],[-3,5],[-6,14],[-2,22],[7,40],[40,24],[36,16],[10,23],[5,29],[-14,23],[-3,4],[-24,11],[-60,14],[-32,15],[-37,40],[-1,1],[-28,46],[-6,10],[-26,31],[-54,34],[-56,21],[-45,25],[-1,0],[-6,8],[-19,23],[-14,18],[-39,82],[-28,36],[-52,86],[-13,32],[-4,38],[-1,11],[-2,23],[5,19],[7,32],[-11,45],[-33,43],[-6,3],[-1,0],[-5,4],[-153,25],[-55,29],[-101,35],[-41,23],[-5,2],[-13,9],[-63,42],[-64,24],[-4,1],[-7,4],[-64,34],[-46,32],[-20,23],[-12,14],[-58,84],[-7,29],[-35,125],[-28,41],[8,46],[17,42],[15,17],[32,23],[17,25],[4,41],[1,2],[-6,20],[-1,2],[-28,54],[-31,36],[0,1],[-11,8],[-17,12],[-87,62],[-47,35],[-127,35],[-134,13],[-31,5],[-23,4],[-33,-7],[-19,-12],[-68,-44],[-19,-12],[-46,8],[-14,27],[3,6],[20,35],[15,33],[4,24],[-8,26],[-14,13],[-12,12],[-1,1],[-3,0],[-71,14],[-43,20],[-27,31],[-18,40],[2,27],[12,56],[-1,35],[-1,26],[-2,9],[-5,24],[6,34],[2,9],[15,37],[5,26],[-9,23],[-31,37],[-20,10],[-15,7],[-12,6],[-4,0],[-44,4],[-29,3],[-74,-6],[-16,-2],[-23,-8],[-115,4]],[[14653,33771],[-2,-39],[-9,-299],[-5,-148],[-9,-249],[-4,-149],[-4,-121],[-2,-56],[-1,-127],[-1,-77],[-1,-31],[0,-30],[-3,-145],[-4,-268],[0,-2],[-4,-198],[-2,-161],[-3,-137],[-5,-273],[-2,-127],[0,-8],[-1,-49],[0,-13],[-3,-198],[-2,-76],[-1,-67],[-2,-130],[-353,8],[-385,8],[-167,4],[-109,2]],[[13569,30615],[-50,1],[-25,1],[-100,2],[-630,7],[-35,0],[-25,1],[-24,1],[-44,1],[-46,1],[-259,4],[-5,0],[-182,3],[-2,-157],[-131,-12],[-235,1],[-84,0],[-158,5],[-99,3],[-42,0],[-170,1],[-74,-1],[1,40],[2,124],[-177,4],[-141,3],[-30,1],[-29,-3],[-81,1],[-30,1],[-24,1],[-33,1],[-25,-2],[-22,0],[-25,0],[-27,6],[-57,3],[-230,6],[-35,0],[-10,1],[-97,2],[-137,2],[-181,3],[-22,0]],[[9739,30671],[-15,39],[17,26],[27,32],[21,24],[23,32],[24,30],[21,22],[14,15],[40,37],[13,38],[0,39],[-9,37],[-2,26],[7,32],[4,24],[-5,38],[-6,52],[-2,52],[13,53],[16,54],[7,48],[-2,49],[-9,28],[-12,22],[-17,23],[-19,26],[-10,58],[27,30],[27,18],[-13,30],[-25,21],[-30,15],[-26,15],[-28,28],[-31,43],[-15,30],[-9,17],[-21,37],[-10,39],[19,37],[27,26],[28,30],[12,36],[0,48],[0,41],[-12,43],[-23,32],[-17,39],[-7,25],[-2,5],[4,28],[4,7],[13,21],[30,17],[25,26],[25,26],[13,38],[10,43],[7,39],[14,43],[23,37],[32,32],[21,32],[18,24],[14,24],[3,20],[1,6],[0,32],[-7,27],[-12,33],[-7,13],[-1,3],[-2,4],[-20,40],[-19,33],[-27,32],[-5,10],[-6,10],[-12,21],[-6,26],[0,2],[10,21],[15,6],[15,5],[29,2],[29,0],[36,0],[15,-1],[19,-1],[29,-3],[21,-1],[61,11],[23,0],[34,-5],[27,-4],[21,2],[21,2],[21,7],[19,11],[23,19],[17,19],[12,26],[-8,35],[-11,30],[-12,30],[-2,32],[14,17],[32,7],[25,4],[17,24],[-9,24],[-14,19],[-15,19],[-42,26],[-7,5],[-12,8],[-8,24],[8,26],[25,19],[28,11],[9,7],[14,10],[27,4],[25,13],[21,20],[36,12],[31,16],[23,27],[7,22],[6,26],[2,24],[8,45],[15,26],[27,21],[34,13],[21,6],[21,7],[21,9],[23,10],[27,22],[23,34],[23,39],[24,34],[14,18],[17,17],[36,30],[23,11],[23,11],[23,10],[34,15],[23,28],[-13,22],[-21,16],[-44,59],[-6,30],[-11,35],[-8,30],[-2,12],[-4,22],[-5,24],[-4,26],[-8,21],[-19,26],[-19,28],[-6,28],[10,33],[20,24],[18,14],[18,10],[9,5],[36,9],[36,4],[29,7],[29,4],[36,7],[29,6],[34,13],[17,7],[27,12],[19,11],[31,26],[19,34],[11,26],[10,22],[0,28],[-10,30],[-3,5],[-16,27],[-17,22],[-23,21],[-15,22],[-8,26],[-11,30],[0,25],[11,26],[19,28],[16,26],[3,4],[6,31],[1,21],[1,15],[-2,30],[0,25]],[[66607,34667],[1,-18],[0,-5],[1,-22],[5,-118],[1,-32],[3,-79],[4,-123],[1,-6],[0,-19],[2,-42],[5,-124],[-6,-166],[-3,-86],[-2,-206],[-1,-69],[-5,-255],[0,-57],[-1,-92],[-1,-158],[-1,-280],[-1,-102],[-3,-185],[-1,-123],[4,-253],[1,-106],[1,-31],[-142,1],[-432,1],[-150,2],[-45,0],[-609,3],[-61,0],[-27,0],[-253,1],[-41,0],[-74,1],[-10,-1],[-22,0],[0,-32],[-1,-28],[0,-13],[-2,-148],[-1,-82],[-2,-108],[0,-6],[-1,-63],[-1,-78],[0,-92],[0,-74],[2,-164],[1,-120],[1,-161],[0,-42],[0,-54],[1,-25],[1,-83],[0,-36],[1,-34],[1,-70],[0,-32],[2,-139],[0,-37],[0,-25],[1,-128],[0,-5],[-1,-41],[-63,0],[-270,-2],[-185,-3],[-7,1],[-48,3],[-34,0],[-34,-1],[0,-275],[288,-2],[4,0],[341,-1],[-7,-90],[-1,-44],[-2,-54],[-8,-275],[1,-20],[0,-3],[-1,-60]],[[64721,29172],[-3,-131],[-3,-113],[0,-28],[3,-232],[0,-52],[2,-121],[1,-53],[0,-63],[0,-32],[-41,0],[-34,1],[-32,0],[-51,0],[-56,1],[-27,0],[-48,0],[-39,0],[-35,0],[-105,0],[-202,1],[-65,0],[-16,0],[-28,0],[-23,0],[-17,0],[-6,0],[-34,1],[-40,0],[-37,1],[-47,1],[-41,0],[-35,2],[-65,-2],[-116,1],[-132,0],[-23,0],[-25,0],[-29,0],[-32,-1],[-38,0],[-32,0],[-27,-1],[-49,0],[-27,-1],[-26,0],[-41,0],[-35,-1],[-119,-1],[-27,0],[-164,1],[-26,1],[-26,0],[-30,0],[-30,0],[-45,0]],[[62498,28351],[-49,0],[-32,0],[-26,0],[-46,-1],[-154,-1],[-32,0],[-31,0],[-37,0],[-38,0],[-43,-2],[-6,0],[-62,1],[-180,1],[-69,-1],[-36,-1],[-44,-1],[-66,0],[-33,-1],[-114,-2],[-38,0],[-41,-1],[-72,-2],[-40,0],[-90,-2],[-22,0],[-43,0],[-71,0],[-53,0],[-24,0],[-25,0],[-37,0],[-30,0],[-34,-1],[-30,-1],[-46,1],[-51,-1],[-27,1],[-37,0],[-63,0],[-26,0],[-4,0],[-79,-1],[-135,0],[-24,0],[-91,-1],[-58,-1],[-26,0],[-29,0],[-33,0],[-26,0],[-28,0],[-30,-1],[-34,0],[-24,0],[-48,0],[-35,-1],[-41,0],[-26,-1],[-48,0],[-35,1],[-51,-1],[-27,0],[-29,-1],[-26,0],[-27,0],[-44,0],[-24,-1],[-32,-1],[-70,-1],[-28,1],[-23,0],[-34,-1],[-35,-1],[-47,0],[-44,0],[-36,1],[-23,0],[-28,0],[-67,0],[-41,0],[-42,0],[-39,0],[-25,-1],[-21,0],[-22,-2],[-34,0],[-89,0],[-59,0],[-53,-2],[-23,-1],[-35,0],[-31,0],[-31,2],[-52,0],[-25,0],[-54,0],[-29,-1],[-41,1],[-42,0],[-56,0],[-2,62],[0,5],[0,31],[0,73],[0,31],[1,97],[1,42],[0,94],[-2,260],[0,23],[1,48],[-1,76],[0,67],[-1,70],[0,27],[0,115],[-1,145],[0,119],[-1,24],[0,23],[-1,96],[-1,23],[-2,24],[3,96],[0,31],[1,32],[0,30],[1,81],[0,35],[0,48],[0,19],[0,31],[1,113],[0,29],[1,44],[0,23],[1,64],[1,51],[0,30],[1,42],[0,67],[-1,79],[0,22],[0,56],[0,111],[2,63],[-2,52],[3,51],[0,71],[0,23],[0,35]],[[26591,32674],[61,-7],[91,0],[37,-10],[25,-6],[34,-9],[75,-19],[4,-1],[87,-24],[1,-4],[9,-9],[59,-27],[4,2],[110,69],[50,-37],[21,-15],[6,-4],[19,-14],[5,-3],[46,-34],[27,17],[8,5],[29,-14],[22,-10],[69,-33],[7,-7],[4,-4],[19,-20],[21,-18],[0,-2],[-1,-54],[0,-6],[21,-1],[8,-5],[7,-3],[65,-48],[2,-2],[56,-41],[17,-12],[26,-19],[16,-17],[2,-2],[11,-13],[20,-24],[58,4],[27,-12],[4,-3],[1,-2],[1,-14],[-3,-34],[-7,-46],[-6,-30],[-1,-5],[16,-38],[24,-22],[4,-5],[14,-12],[47,-45],[26,-24],[2,-1],[67,-30],[14,-10],[38,-28],[3,-2],[1,-2],[5,-4],[26,-41],[-1,-7],[6,-14],[19,-45],[12,-16],[-37,-99],[-1,-9],[7,-27],[3,-5],[2,-5],[11,-21],[19,-9],[0,-7],[-9,-99],[-26,-35],[-3,-4],[-7,-45],[8,-68],[44,-63],[3,-4],[20,-21],[4,-5],[0,-7],[-9,-33],[-9,-21],[-4,-6],[-20,-29],[-9,-5],[0,-2],[-9,-43],[33,-41],[16,-24],[-3,-11],[-4,-21],[-1,-1],[-4,-17],[8,-1],[1,-6],[1,-6],[-451,0],[-85,1],[-3,-134],[-5,-336],[-1,-30],[-3,-213],[-3,-170],[-1,-11],[-138,3],[-3,-110],[-9,-277],[-3,-93],[-10,-294],[0,-22],[-2,-45],[-2,-54],[-2,-96],[0,-21],[-2,-87],[-164,3],[-37,1],[-1,-34],[-4,-106],[-1,-29],[46,-1],[154,-2],[-2,-70],[-9,-225],[0,-3],[-4,-158],[-7,-228],[-13,-440],[-5,-166],[-3,-100],[-2,-26],[0,-69]],[[27438,27259],[-61,-2],[-52,0],[-138,-2],[-84,-2],[-221,-4],[-6,0],[-462,-9],[-428,2],[-90,0],[-76,1],[-24,1],[-51,0],[-285,3],[-200,2],[-626,6],[-79,0],[-21,0],[-255,3],[-31,-10],[-8,-2],[-2,-1]],[[24238,27245],[-98,0],[-463,-3],[-142,0],[-86,-1],[-252,1],[-170,0],[-102,1],[-30,0],[-28,-1],[-221,0],[-184,1],[-94,0],[-82,1],[-73,1]],[[22213,27245],[27,17],[17,28],[-6,28],[-1,29],[24,8],[5,16],[6,22],[4,31],[4,27],[1,2],[8,25],[14,42],[3,8],[35,41],[3,3],[19,25],[6,12],[1,1],[-1,7],[0,9],[-5,10],[-9,8],[-2,1],[-9,0],[8,11],[53,72],[7,10],[1,3],[9,37],[-1,9],[-1,12],[-7,3],[-3,1],[-7,3],[-3,7],[-15,97],[-2,22],[-2,48],[-1,4],[-7,33],[-27,134],[1,4],[17,69],[18,71],[12,50],[30,83],[13,34],[2,6],[0,28],[1,13],[-2,33],[-2,7],[-11,5],[-17,23],[-1,1],[-5,7],[-66,100],[-5,14],[-48,141],[-46,118],[-6,16],[-12,22],[-3,5],[-3,2],[-9,7],[-11,27],[-2,7],[-1,10],[0,19],[0,1],[0,30],[2,48],[-5,49],[-1,17],[-6,18],[0,1],[-1,2],[-41,58],[-34,27],[-7,6],[-43,32],[-13,9],[-2,3],[-13,26],[-5,27],[8,4],[1,0],[-1,5],[-1,2],[-30,96],[-4,7],[-5,9],[-17,32],[-14,13],[-21,24],[-15,17],[-1,1],[-6,7],[-21,28],[-6,7],[-5,6],[-2,9],[-1,5],[-22,82],[-1,6],[-13,49],[1,13],[0,3],[8,16],[8,19],[0,38],[-10,7],[-2,1],[-6,2],[-18,9],[-2,1],[0,12],[0,13],[-18,72],[-84,135],[-6,9],[1,10],[9,53],[4,27],[1,6],[9,54],[49,6],[19,26],[-1,6],[9,20],[15,22],[13,13],[5,5],[5,24],[-86,4],[-41,1],[-87,4],[-329,12],[-166,6],[-35,0],[-91,4],[3,73],[2,86],[1,17],[0,11],[1,43],[-2,28],[1,22],[1,47],[1,24],[1,45],[1,59],[1,42],[4,65],[2,85],[1,54],[0,35],[3,107],[1,25],[0,25],[1,25],[0,32],[0,15],[1,14],[-1,34],[1,26],[0,25],[2,129],[3,139],[4,151],[2,110],[6,261],[1,27],[0,11],[11,329],[1,29],[1,105],[6,318],[0,37],[4,184],[5,296]],[[74644,31676],[-1,0],[-30,-2],[-27,7],[-29,9],[-21,2],[-25,0],[-30,-1],[-28,-5],[-23,-4],[-19,-15],[-15,-17],[-1,-1],[-31,-8],[-22,-3],[-26,3],[-25,11],[-22,12],[-14,20],[-25,-5],[-20,-17],[-25,-15],[-25,-1],[-8,22],[-7,24],[-18,19],[-23,12],[-26,-1],[-29,-3],[-20,-12],[-32,-15],[-11,-25],[-8,-21],[-21,-5],[-3,-4],[-18,-17],[-9,-26],[-22,-10],[-23,13],[-21,-5],[-20,-16],[-11,-21],[3,-24],[0,-157],[0,-239],[0,-13],[0,-41],[-121,2],[-78,2],[-32,0],[-122,2],[-52,-7],[-2,-42],[-1,-28],[-1,-33],[0,-12],[-3,-74],[-3,-98],[124,-2],[97,-1],[11,0],[139,-1],[0,-56],[-1,-48],[-1,-176],[-38,0],[-70,1],[-106,1],[-36,0],[-124,2],[-10,0],[-46,1],[-70,1],[-147,2],[-10,0],[-87,0],[-83,0],[-33,1],[-55,1],[-1,-237],[0,-20],[2,-46],[0,-13],[1,-34],[-1,-34],[1,-38],[0,-35],[-1,-44],[1,-40],[-2,-56],[0,-28],[-1,-104],[0,-33],[0,-278],[0,-80],[0,-35],[-1,-54],[1,-76],[-1,-22],[0,-49],[0,-29],[0,-25],[0,-23],[-2,-26],[-3,-26],[0,-35],[1,-13],[0,-10],[0,-2],[6,-99],[-1,-23],[0,-58],[0,-30],[0,-49],[-1,-52],[0,-52],[-1,-60],[-1,-54],[0,-30],[-1,-46],[0,-37],[-4,-24],[3,-134],[0,-22],[0,-151],[-1,-80],[-1,-33],[0,-25],[-6,-24],[0,-5],[0,-108],[1,-133],[1,-112],[0,-10],[2,-83],[1,-88],[0,-23],[-2,-51],[-3,-25],[1,-28],[1,-26],[5,-30],[0,-34],[0,-100],[0,-36],[-1,-36],[0,-12],[1,-51],[0,-14],[-1,-33],[-2,-62],[0,-3],[-1,-92],[3,-28],[0,-7],[0,-17],[1,-126],[4,-22],[1,-36],[3,-226],[0,-57],[1,-51],[-150,-2],[-123,-2],[-2,0],[-40,0],[2,-110],[5,-56],[-2,-24],[-2,-29],[-3,-36],[37,1],[146,2],[134,2],[0,-33],[0,-83],[-2,-81],[-2,-72],[2,-57],[-1,-141],[0,-125],[-1,-101],[-1,-132],[-2,-307],[0,-101],[1,-22],[0,-43],[2,-139],[1,-85],[0,-41],[0,-25],[1,-80],[1,-26],[0,-35],[1,-92],[3,-33]],[[72879,24018],[-38,-15],[-30,-9],[-30,-7],[-26,-2],[-25,-5],[-23,-3],[-30,-2],[-51,-2],[-54,0],[-27,1],[-32,6],[-26,6],[-25,8],[-26,10],[-28,11],[-20,8],[-39,20],[-37,20],[-20,12],[-26,16],[-30,18],[-22,14],[-35,26],[-19,13],[-18,13],[-17,13],[-17,14],[-21,17],[-21,18],[-18,14],[-20,17],[-20,14],[-27,21],[-25,20],[-24,20],[-26,23],[-57,48],[-25,22],[-22,21],[-13,12],[-8,-5],[0,-2],[-48,12],[-11,20],[-9,16],[-2,10],[0,23],[0,1],[4,20],[-6,25],[-9,22],[-17,28],[-52,34],[-42,19],[-57,28],[-12,6],[1,5],[10,36],[4,16],[-52,17],[-2,1],[-54,17],[-76,26],[-10,5],[-81,55],[-11,15],[-7,16],[-2,14],[-43,67],[-5,7],[-71,27],[-50,26],[-9,8],[-4,9],[-1,11],[-11,52],[-14,66],[-2,8],[-16,39],[-5,10],[-9,4],[-25,7],[-15,7],[-14,11],[-41,-13]],[[70905,25295],[-63,237],[-54,161],[-52,69],[-47,40],[-25,19],[-25,4],[-40,15],[-10,4],[-5,4],[-4,5],[-22,28],[-2,4],[-21,29],[-14,12],[-51,12],[-21,-2],[-29,-12],[-6,-1],[-19,0],[-112,13],[-30,9],[-64,17],[-27,9],[-79,47],[-30,41],[-8,27],[-2,7],[3,10],[0,12],[0,3],[-7,12],[-11,13],[-26,28],[-11,11],[-4,1],[-4,8],[-5,8],[-43,61],[-8,8],[-92,38],[-28,8],[-70,8],[-67,5],[-46,29],[-48,35],[-13,13],[-2,28],[-5,5],[-134,50],[-12,4],[-17,3],[-17,-1],[-30,-14],[-18,-8],[-13,14],[-2,2],[-8,6],[-8,1],[-7,-1],[-37,-7],[-46,-6],[-12,5],[-25,63],[-1,1],[-35,54],[-31,48],[-38,-27],[-75,53],[-46,37],[-45,43],[-24,22],[-8,6],[0,1],[-8,6],[-44,31],[-18,12],[-30,20],[-3,2],[-95,64],[-35,16],[-12,5],[-10,3],[-17,2],[-15,7],[-29,22],[-38,65],[-104,127],[-5,6],[-31,31],[-20,18],[-12,11],[-13,9],[-15,8],[-27,12],[-5,3],[-13,4],[-14,-1],[-18,1],[-14,2],[-89,41],[-25,16],[-48,42],[-36,29],[-7,5],[-13,7],[-6,4],[-79,38],[-15,4],[-8,2],[-31,6],[-23,-3],[-45,-10],[-24,-1],[-9,3],[-27,16],[-8,4],[-133,48],[-20,8],[-19,4],[-10,3],[-14,6],[-11,11],[-15,29],[-8,10],[-8,6],[-18,5],[-3,1],[-32,5],[-72,-4],[-56,-1],[-1,0],[-25,4],[-67,31],[-4,1],[-5,-1],[-36,-7],[-23,-5],[-10,-2],[-13,7],[-10,6],[-39,71],[-12,29],[-5,6],[-41,33],[-23,18],[-39,12],[-40,8],[-23,8],[-56,36],[-77,60],[-57,42],[-60,45],[-26,15],[-5,0],[-19,16],[-12,11],[-56,47],[-16,4],[-55,12],[-14,-2],[-9,-5],[-5,-12],[-2,-10],[-3,-4],[-9,-4],[-43,-15],[-9,1],[-15,1],[-22,3],[-33,4],[-21,5],[-11,2],[-30,17],[-29,17],[-3,2],[-3,3],[-1,1],[-4,2],[-4,9],[-2,10],[0,54],[-4,12],[-16,27],[-11,11],[-11,7],[-37,14],[-25,10],[-28,12],[-10,5],[-56,29],[-13,6],[1,8],[-6,28],[-7,12],[-29,43],[-15,15],[-5,3],[-2,2],[-45,19],[-47,20],[-14,6],[-15,6],[-13,6],[-46,27],[-7,8],[-76,94],[-4,8],[-14,42],[1,10],[8,9],[6,4],[2,3],[2,10],[-19,31],[-16,20],[-28,8],[-3,2],[-1,1],[-38,30],[-25,23],[-11,10],[-25,23],[-32,31],[-13,14],[-18,39],[-1,30],[0,3],[-2,5],[-6,6],[-7,3],[-1,0],[-22,1],[-3,7],[-47,62],[-75,100],[-1,1],[-11,9],[-66,1],[-68,0],[-198,2],[-73,0],[-60,1],[-9,0],[-20,0],[-27,1]],[[22213,27245],[-86,-1],[-127,-2],[-4,86],[0,71],[-39,0],[-73,2],[-26,0],[-108,2],[-2,-75],[1,-24],[0,-65],[-165,1],[-27,1],[2,73],[1,181],[-2,93],[-96,3],[-37,1],[-25,0],[-23,-1],[0,-95],[-1,-168],[3,-26],[0,-60],[-86,1],[-143,3],[0,79],[2,91],[4,180],[-199,4],[-3,-35],[-2,-108],[-1,-61],[-189,1],[-139,2],[6,202],[-58,-1],[-73,2],[-111,2],[-50,1],[-1,119],[-50,0],[-147,2],[-31,-1],[-47,2],[-5,-124],[-116,-1],[-26,0],[-2,-141],[0,-24],[0,-45],[-1,-63],[0,-85],[-1,-27],[-47,-1],[-157,2],[-26,0],[-22,0],[-52,0],[-133,0],[-76,0],[-4,0],[-36,-1],[-46,0],[-64,0],[-143,-2],[-6,0],[-130,-1],[-134,-1],[-203,-1],[-216,-2],[-22,-1],[-52,0],[-103,-1],[-152,-4],[-136,3],[-25,0],[-277,1],[-192,1],[-103,0],[-10,0],[-35,0],[-322,1],[-258,1],[-4,0],[-111,1],[-86,0]],[[16527,27212],[-173,0],[-109,-4],[-1,0],[-22,-1],[-105,-5],[-170,-2],[-40,-3],[-29,0],[-40,1],[-32,-1],[-36,0],[-176,-3],[-25,2],[-33,0],[-52,-1],[-31,0],[-32,1],[-31,-1],[-29,1],[-28,-1],[-24,-2],[-111,-2],[-128,0],[-193,-2],[-265,1],[-118,-1],[-117,-1],[-58,1],[-326,-1],[-82,0],[-2,146],[0,259],[0,8],[-1,285],[0,26],[0,5],[0,65],[68,0],[6,-1],[53,0],[107,-1],[1,62],[2,91],[3,148],[1,62],[-133,0],[-69,0],[2,163],[-73,0],[-23,0],[-98,1],[2,141],[1,147],[1,70],[4,363],[-21,-1],[-133,0],[-54,0],[4,192],[5,265],[4,146],[4,413],[-3,372]],[[34961,32121],[-70,20],[-35,10],[-30,3],[-31,-18],[-6,-4],[-2,-7],[-10,-53],[-5,-6],[-16,-20],[-9,-12],[-37,-25],[-44,-29],[-12,-8],[-13,-3],[-28,-4],[-29,-15],[-5,-5],[-8,-75],[-1,-9],[-5,-14],[-10,-7],[-4,-2],[-8,-6],[-12,1],[-20,1],[-15,0],[-6,4],[-7,4],[-39,4],[-3,0],[-34,4],[-24,-12],[-10,-5],[-9,-5],[-17,-21],[-76,-103],[-13,-22],[-77,-161],[-2,-5],[-22,-112],[-9,-11],[-5,-3],[-25,-17],[-4,-21],[-4,-20],[-4,-19],[7,-21],[12,-13],[11,-8],[1,0],[31,-22],[3,-1],[0,-1],[4,-8],[6,-10],[2,-15],[1,-4],[2,-19],[-3,-18],[-6,-4],[-12,-6],[-4,-2],[-20,-1],[-29,7],[-11,7],[-48,31],[-60,27],[-39,5],[-23,2],[-10,1],[-13,-3],[-10,-2],[-2,-1],[-19,-12],[-9,-12],[-19,-23],[-5,-3],[-20,-10],[-12,-7],[-6,1],[-103,11],[-11,-3],[-1,0],[-2,0],[-59,7],[-34,0],[-28,-7],[-17,-9],[-12,-8],[-28,-32],[-7,-16],[-2,-7],[-3,-25],[-1,-9],[-4,-58],[5,-45],[21,-40],[35,-35],[49,-39],[36,-27],[23,-13],[6,-3],[15,-5],[5,-1],[0,-1],[2,-1],[22,1],[24,-1],[5,0],[3,0],[31,-3],[24,-3],[26,-6],[29,-20],[9,-27],[-1,-3],[-11,-27],[-21,-36],[-1,0],[-11,-21],[-3,-7],[-8,-27],[2,-3],[19,-35],[9,-11],[22,-27],[28,-25],[12,-8],[17,-13],[26,-24],[6,-8],[11,-14],[16,-37],[3,-24],[0,-5],[-1,-19],[-1,-5],[-13,-36],[-11,-12],[-11,-11],[-25,-22],[-24,-21],[-14,-21],[-1,-2],[-16,-31],[-24,-27],[-3,-3],[-2,0],[-31,-6],[-7,-2],[-31,5],[-28,0],[-29,-2],[-18,-9],[-18,-8],[-34,-25],[-22,-16],[-17,-32],[-1,-39],[5,-19],[1,-6],[-5,-31],[-9,-37],[-15,-30],[-20,-29],[-3,-5],[-14,-25],[-11,-37],[-2,-23],[0,-2],[3,-31],[0,-9],[5,-29],[-2,-10],[-1,-9],[-2,-15],[-19,-13],[-14,-1],[-52,11],[-3,1],[-8,-6],[-32,-23],[-5,-4],[-33,-38],[-25,-58],[-11,-26],[-29,-57],[-30,-57],[-30,-23],[-9,-7],[-71,-24],[-48,-13],[-14,-3],[-16,-10],[-12,-7],[-24,-16],[-3,-1],[-24,-19],[-7,-5],[-2,-5],[-3,-9],[-6,-14],[8,-16],[6,-5],[14,-13],[10,-8],[31,-15],[28,-6],[11,-2],[11,-7],[11,-7],[14,-16],[13,-25],[29,-102],[-1,-8],[-12,-61],[12,-28],[2,-4],[1,-2],[31,-35],[9,-10],[47,-99],[6,-24],[-3,-11],[-25,-86],[-21,-74],[2,-14],[6,-30],[58,-82],[31,-65],[5,-36],[3,-26],[1,-25],[1,-10],[2,-7],[10,-24],[2,-6],[2,-3],[44,-79],[5,-8],[20,-25],[3,-4],[5,-10],[-5,-20],[-1,-2],[-1,-6],[-17,-12],[-4,-3],[-23,-17],[-16,-11],[-5,-29],[7,-9],[7,-10],[0,-10],[0,-11],[-1,-11],[-14,-67],[-2,-8],[-14,-31],[-38,-26]],[[33302,27869],[-28,-15],[-13,-2],[-142,-12],[-8,-1],[-4,-2],[-25,-15],[-15,-15],[-79,-84],[-21,-23],[-20,-41],[-11,-57],[-9,-11],[-70,-48],[-23,-41],[-10,-32],[-22,-73],[-4,-35],[0,-6],[-3,-21],[-13,-41],[-25,0],[-657,-4],[-103,-3],[-187,0],[-27,0],[-86,-2],[-137,-2],[-111,0],[-268,-1],[-166,-1],[-32,-2],[-5,0],[-24,0],[-183,0],[-28,0],[-24,0],[-53,0],[-37,2],[-307,-6],[-50,0],[-11,-1],[-182,-2],[-14,1],[-14,2],[-70,-3],[-87,0],[-147,0],[-40,-2],[-52,2],[-65,-2],[-26,-2],[-35,0],[-32,0],[-28,0],[-55,0],[-22,0],[-323,0],[-21,0],[-6,0],[-86,0],[-59,-2],[-52,-2],[-30,-2],[-29,0],[-188,-2],[-31,-1],[-98,0],[-25,5],[-30,8],[-34,0],[-41,-1],[-49,-1],[-58,-1],[-22,0],[-267,-4],[-26,-1],[-292,-5],[-111,0],[-76,0]],[[44601,32110],[4,-42],[1,-14],[-7,-20],[0,-1],[-5,-7],[-9,-14],[0,-1],[-4,-1],[1,-4],[-5,-26],[-6,-22],[-1,0],[-8,-10],[-25,-23],[-16,-22],[-11,-24],[0,-26],[0,-1],[2,-8],[17,-17],[12,-5],[23,-5],[20,-8],[2,-1],[27,-15],[15,-8],[9,-9],[7,-6],[1,-2],[18,-24],[5,-14],[0,-12],[-6,-23],[-8,-33],[-4,-14],[-5,-6],[-20,-12],[16,-55],[11,-36],[24,-31],[20,-25],[24,-51],[1,-1],[24,-52],[-28,-15],[-6,-4],[18,-79],[16,-27],[26,-35],[7,-7],[40,-12],[8,-5],[13,-12],[17,-18],[26,-24],[3,-5],[17,-55],[1,-2],[0,-1],[-5,-10],[1,-22],[3,-20],[3,-4],[4,-2],[67,-22],[34,-11],[2,-9],[21,-91],[-4,-61],[-3,-58],[1,-17],[1,-41],[2,-33],[5,-25],[5,-11],[13,-9],[38,-7],[9,-5],[22,-25],[22,-25],[3,-10],[-1,-40],[-8,-28],[-3,-11],[-13,-48],[0,-22],[12,-48],[16,-28],[8,-10],[14,-17],[0,-3],[1,-6],[2,-37],[0,-2],[2,-24],[-21,-50]],[[45156,30186],[11,-66],[8,-48],[-1,-12],[-11,-23],[-22,-29],[-1,-2],[-113,-103],[-23,-17],[-23,-16],[-38,-26],[-4,-3],[-10,-5],[-29,9],[-11,3],[-7,-4],[-6,-9],[1,-13],[4,-25],[2,-9],[5,-6],[2,-3],[14,-11],[5,-5],[2,-3],[18,-21],[15,-29],[8,-48],[-1,-5],[-4,-23],[-1,-13],[-3,-14],[5,-18],[5,-13],[3,-8],[2,-5],[4,-6],[3,-4],[9,-11],[21,-26],[3,-5],[3,-2],[2,-2],[57,-53],[3,0],[49,-4],[-4,-59],[-3,-44],[-1,-12],[6,-18],[17,-54],[12,-38],[25,-81],[5,-23],[1,-6],[-2,-8],[-15,-23],[-13,-11],[-20,-14],[-17,-8],[-20,-5],[-34,-16],[-17,-12],[-6,-15],[-4,-8],[-9,-27],[-16,-46],[0,-12],[1,-10],[4,-24],[6,-34],[-54,0],[-77,2],[-108,2],[-54,2],[-118,2],[-33,1],[-168,4],[-17,-16],[0,-41],[1,-31],[1,-46],[-2,-37],[0,-247],[-6,-129],[-3,-158],[-1,-118],[0,-22],[-2,-137],[0,-29],[-2,-147],[-1,-124],[1,-21],[0,-2],[-1,-103],[-2,-77],[-2,-41],[-2,-125],[-173,1],[0,-91],[0,-46],[0,-78],[0,-57],[0,-104],[0,-23],[-1,-47],[-1,-42],[-15,-60]],[[44168,26657],[-38,1],[-18,0],[-81,2],[-101,2],[-157,3],[-24,0],[-204,4],[-24,0],[-58,7],[-45,5],[-48,6],[-37,4],[-33,4],[-30,3],[-111,2],[-67,1],[-61,1],[-36,1],[-64,2],[-3,0],[-10,0],[-14,0],[-26,1],[-21,1],[-50,2],[-41,2],[-37,2],[-57,2],[-53,2],[-27,-2],[-83,-8],[-27,-4],[-76,-10],[-3,0],[-52,-6],[-33,-4],[-70,12],[-63,11],[-57,10],[-82,15],[-43,8],[-27,3],[-87,-11],[-85,-9],[-78,-9],[-27,-4],[-54,0],[-71,2],[-58,4],[-21,1],[-32,0],[-23,0],[-56,-1],[-70,-1],[-22,0],[-116,-2],[-51,-1],[-23,0],[-25,0],[-21,-3],[-2,-96],[-3,-205],[0,-33],[-1,-29],[0,-86],[-1,-36],[1,-23],[-1,-46],[-3,-56]],[[41046,26098],[-75,52],[-8,6],[-14,5],[-6,0],[-14,0],[-80,-37],[-9,-5],[-10,-10],[-3,-6],[-3,-31],[-7,-7],[0,-1],[-15,-9],[-35,-14],[-13,2],[-54,18],[-77,65],[-7,9],[-28,37],[-6,8],[-29,102],[-1,24],[0,37],[1,14],[2,22],[2,12],[19,21],[66,58],[9,18],[0,10],[-1,13],[-3,20],[-7,51],[-5,33],[-2,18],[-15,44],[-3,7],[-12,-4],[-27,-7],[-2,1],[-5,0],[-23,12],[-6,3],[-23,27],[-3,3],[-18,27],[-3,3],[-9,26],[-9,11],[-8,7],[-6,5],[-6,4],[-9,2],[-63,0],[-23,-7],[-11,-9],[-3,-5],[4,-23],[-21,-37],[-8,-7],[-76,17],[-26,6],[-15,4],[-14,7],[-24,12],[-21,22],[-1,1],[-11,20],[-4,7],[-15,36],[-4,9],[-52,29],[-11,3],[-14,0],[-6,-5],[-38,6],[-2,1],[-4,3],[-29,25],[-1,1],[-11,28],[-8,18],[-31,76],[-16,39],[1,26],[-9,31],[-15,22],[-6,26],[-20,12],[-25,-6],[-24,-10],[-22,19],[-17,13],[-24,-10],[-27,-2],[-21,7],[-24,4],[-22,10],[-16,19],[-19,13],[-269,9],[-111,2],[-2,0],[-39,0],[-141,2],[-97,-1],[-128,3],[-162,2],[-164,2],[-62,1],[-31,0],[-80,1],[-71,1],[-78,0],[-70,1],[-140,2],[-7,48],[0,31],[1,149],[3,291],[0,14],[1,118],[3,197],[0,34],[2,21],[-5,90],[0,92],[-1,35],[0,97],[0,2],[0,29],[-1,165],[0,27],[-1,174],[0,80],[-1,156],[0,44],[-2,35],[4,34],[-1,31],[1,87],[0,24],[0,37],[-1,38],[-4,22],[2,46],[1,34],[-5,22],[3,36],[0,91],[3,216],[0,25],[0,26],[-1,42],[0,37],[-3,161],[0,29],[-46,1],[3,79],[1,50],[4,133],[-2,25],[1,42],[1,31],[1,29],[6,286],[0,62],[1,55],[0,75],[-21,17],[-28,10],[-27,26]],[[54767,30683],[0,-38],[-2,-34],[-1,-33],[-1,-13],[0,-23],[-1,-31],[-1,-82],[-2,-114],[-2,-25],[-1,-5],[-2,-20],[-7,-235],[-1,-34],[-5,-22],[-1,-24],[2,-38],[0,-22],[0,-31],[0,-23],[-1,-36],[-2,-41],[-3,-57],[-2,-39],[0,-37],[4,-29],[4,-24],[0,-33],[-2,-77],[-2,-39],[-1,-40],[-1,-152],[-2,-54],[-3,-66],[-2,-56],[-2,-57],[-2,-88],[0,-26],[0,-28],[-2,-45],[-1,-46],[-2,-139],[-2,-96],[-2,-22],[-1,-32],[-1,-26],[-1,-34],[-2,-56]],[[54711,28361],[-43,-5],[-24,2],[-28,3],[-29,2],[-28,3],[-51,3],[-93,4],[-31,1],[-33,0],[-343,10],[-29,1],[-98,3],[-2,0],[-263,5],[-5,0],[-32,1],[-98,3],[-140,4],[-304,9],[-22,1],[-82,2],[-392,12],[-42,1],[-197,6],[-51,1],[-98,4],[-27,0],[-70,2],[-169,8],[-27,2],[-134,5],[-84,3],[-41,4],[-10,0],[-21,0],[-43,1],[-41,0],[-132,1],[-100,3],[-6,0],[-22,1],[-75,2],[-39,1],[-62,1],[-47,2],[-30,2],[-5,-135],[-1,-87],[-6,-175],[0,-25],[-2,-78],[-2,-76],[-109,2],[-92,4],[-24,2],[-23,1],[-64,2],[-264,6],[-86,2],[-49,1],[-273,5],[-136,3],[-53,1],[-47,1],[-151,3],[-30,1],[-24,1],[-40,1],[-1,0],[-29,2],[-25,3],[-32,1],[-38,2],[-219,8],[-62,2],[3,102],[0,29],[3,102],[1,0],[0,33],[2,58],[3,98],[3,131],[-103,1],[-35,0],[-50,-3],[-53,-2],[-31,-1],[-24,1],[-149,6],[-105,2],[-7,0],[-68,1],[-96,2],[-46,0],[-173,3],[-68,1],[-20,1],[-75,1],[-47,0],[-32,1],[-29,0],[-25,1],[-23,1],[2,34],[3,131],[1,134],[-2,34],[1,40],[0,33],[2,101],[2,150],[2,154],[0,2],[2,85],[2,123],[0,35],[0,31],[6,105],[0,82],[-2,30],[-4,59],[0,45],[0,9],[0,23],[-1,58],[-10,137],[-144,1],[-86,0],[-73,0],[2,92],[3,187],[-29,0],[-28,1],[-26,0],[-44,0],[-47,1],[-79,-2],[-64,0],[-29,0],[-29,-1],[-143,2],[-17,0],[-95,1],[-1,-77],[0,-47],[-1,-30],[0,-34],[-3,-26],[-3,-22],[-5,-35],[-23,-1],[-64,1],[-72,1],[-74,1],[-82,0],[-57,1],[-36,0],[-48,0],[-73,2],[-54,1],[-26,0],[-100,2],[-57,1],[-48,1],[-122,1],[-4,0],[-230,3],[-37,0],[-31,0],[-167,1],[-91,1],[-61,0],[-192,2]],[[41046,26098],[-3,-153],[1,-143],[1,-44],[-2,-148],[-1,-21],[0,-46],[-2,-83],[-1,-62],[1,-25],[-1,-45],[-1,-44],[-2,-80],[-1,-57],[0,-23],[-1,-33],[-3,-116],[-1,-86],[-3,-84],[0,-22],[0,-31],[-1,-51],[-2,-69],[0,-44],[0,-44],[-1,-117],[-1,-71],[-12,-51],[-104,3],[-39,1],[-31,0],[-35,2],[-41,0],[-21,1],[-36,2],[-1,-114],[-1,-30],[0,-24],[-1,-57],[0,-21],[0,-12],[-1,-29],[0,-33],[-1,-36],[0,-35],[-1,-44],[0,-36],[-2,-43],[-1,-56],[0,-73],[-3,-58],[-1,-25],[0,-29],[-1,-40],[-1,-51],[0,-29],[-2,-34],[0,-31],[-1,-63],[0,-33],[-1,-58],[64,-4],[32,0],[71,-2],[43,0],[59,-1],[44,-21],[-2,-104],[-2,-75],[-1,-56],[-2,-55],[0,-62],[-3,-58],[0,-25],[-3,-82],[0,-26],[-2,-52],[-4,-135],[-2,-97],[-1,-27],[0,-44],[0,-39],[0,-24],[0,-39],[-1,-56],[-1,-27],[-1,-62],[-1,-55],[-1,-31],[-2,-23],[1,-23],[-1,-47],[-3,-119],[-2,-99],[-1,-69],[-1,-24],[-1,-82],[-2,-81],[-2,-118],[-4,-175],[-1,-39],[0,-50],[-1,-24]],[[40950,20988],[-26,1],[-213,3],[-72,1],[-101,3],[-30,0],[-36,1],[-74,0],[-72,2],[-3,0],[-24,0],[-128,3],[-68,1],[-81,1],[-70,1],[-38,1],[-31,1],[-23,0],[-166,2],[0,-28],[-2,-40],[0,-15],[0,-29],[-1,-20],[0,-22],[-1,-26],[0,-12],[0,-13],[-1,-23],[0,-30],[-3,-28],[-29,1],[-25,0],[-40,1],[-32,-1],[-153,3],[-38,1],[-133,2],[-67,1],[-29,0],[-22,0],[-29,0],[-46,1],[-84,2],[-47,0],[-40,1],[-53,0],[-31,0],[-40,1],[0,71],[0,66],[0,34],[-2,64],[-1,50],[-42,1],[-31,0],[-142,1],[-35,0],[-53,0],[-48,1],[-33,1],[-33,-1],[-69,1],[-163,2],[-25,0],[-89,1],[-29,1],[-33,0],[-126,1],[-21,0],[-25,0],[-70,1],[-35,0],[-51,1],[-111,1],[-75,2],[-99,1],[-36,0],[-196,1],[-1,0],[-80,0],[-71,1],[-21,1],[-36,0],[-1,0],[-86,2],[-73,0],[-31,1],[-23,1],[-31,0],[-35,0],[-82,2],[-40,1],[-46,1],[-31,0],[-36,1],[-37,0],[-54,0],[-33,0],[-55,0],[-3,0],[-30,0],[-34,1],[-35,0],[-35,1],[-28,0],[-65,1],[-55,1],[-25,0],[-97,1],[-114,2],[-126,1],[-24,1],[-59,0],[-22,0],[-67,1],[-73,2],[-35,0],[-69,1],[-31,-1],[-26,0],[-2,0],[-130,1],[-15,0],[-35,3],[-30,1],[-21,0],[-25,1],[-34,1],[-30,1],[-26,0],[-110,2],[-1,0],[-21,0],[-31,0],[-116,2],[-63,1],[-47,0],[-24,1],[-23,0],[-24,0],[-24,1],[-39,0],[-74,1],[-58,1],[-106,1],[-33,0],[-39,1],[-71,0],[-48,1],[-36,0],[-48,0],[-33,0]],[[33702,21080],[2,37],[0,1],[3,203],[0,35],[1,47],[1,45],[2,217],[0,24],[0,146],[7,112],[-2,245],[4,235],[0,14],[0,18],[3,124],[2,119],[2,137],[1,25],[1,41],[0,63],[3,77],[-1,69],[0,52],[1,44],[0,27],[0,40],[2,144]],[[33734,23421],[3,48],[1,30],[0,29],[-1,23],[1,42],[0,49],[0,28],[0,45],[0,35],[0,46],[0,1],[1,35],[315,-2],[3,256],[0,27],[-315,11],[0,23],[1,45],[5,347],[-1,98],[3,162],[1,94],[1,57],[1,35],[0,46],[2,56],[1,40],[-1,56],[1,98],[0,78],[3,135],[-1,80],[1,126],[0,10],[0,36],[44,0],[4,0],[63,0],[22,0],[181,-1],[0,3],[0,31],[1,20],[0,38],[1,160],[-131,2],[-191,2],[0,57],[3,39],[-2,56],[0,26],[0,41],[0,34],[0,68],[1,28],[-1,43],[0,24],[-1,44],[-1,136],[0,51],[2,60],[0,34],[1,35],[3,122],[9,422],[-21,0],[-21,1],[-34,0],[-2,0],[-120,-2],[-40,-2],[-83,-2],[-24,-1],[2,28],[2,167],[40,1],[103,0],[55,0],[4,110],[0,63],[61,0],[2,0],[135,-6],[0,22],[1,40],[0,57],[1,67],[-137,2],[-2,0],[-62,-1],[-6,-1],[-319,5]],[[82733,25466],[-61,-14],[-30,-8],[-16,-23],[0,-26],[12,-41],[12,-20],[26,-25],[16,-17],[12,-8],[56,-37],[40,-8],[44,2],[72,35],[21,-3],[11,-10],[2,-2],[6,-7],[-6,-35],[-43,-40],[-6,-5],[-4,-7],[-9,-14],[-4,-26],[3,-7],[16,-26],[5,-17],[3,-12],[-4,-4],[-40,-66],[-11,-27],[-2,-21],[-11,-107],[0,-1],[1,-2],[50,-65],[16,-17],[32,-33],[29,-11],[35,-14],[21,-8],[46,-9],[17,-11],[17,-21],[3,-3],[-1,-6],[0,-3],[-5,-29],[-1,-3],[-12,-17],[-15,-13],[-15,-13],[-3,-10],[-3,-9],[15,-21],[24,-19],[12,-10],[8,-9],[76,-87],[64,-44],[66,-34],[21,-11],[20,-13],[23,-16],[43,-4],[2,0],[28,1],[16,6],[31,10],[32,17],[11,6],[7,-3],[25,-12],[5,-2],[84,-74],[21,-25],[43,-96],[14,-46],[18,-21],[39,-30],[-2,-19],[-1,-16],[-24,-44],[-16,-20],[-40,-30],[-8,-15],[-7,-35],[2,-6],[5,-28],[-3,-27],[0,-3],[-2,-16],[-2,-1],[-40,-42],[-21,-14],[-16,-1],[-35,-22],[-27,-27],[-17,-18]],[[83549,23621],[-22,1],[-19,-14],[-37,-52],[-16,-21],[-23,-34],[-18,-24],[-19,-27],[-10,-14],[-7,-10],[-27,-38],[-28,-39],[-23,-31],[-21,-31],[-19,-26],[-22,-31],[-13,-18],[-15,-21],[-14,-21],[-19,-25],[-25,-37],[-35,-48],[-41,-57],[-22,-31],[-16,-22],[-6,-9],[-15,-22],[-42,-57],[-17,-25],[-16,-23],[-20,-27],[-18,-25],[-12,-18],[-6,-8],[-16,-21],[-16,-23],[-3,-4],[-23,-31],[-34,-49],[-22,-29],[-23,-34],[-3,-4],[-27,-38],[-21,-28],[-91,2],[-36,1],[-22,1],[-31,0],[-48,2],[-27,1],[-51,1],[-25,2],[-130,5],[-14,0],[-8,0],[-87,1],[-38,-60],[-30,-48],[-25,-40],[-16,-26],[-17,-33],[-11,-23],[-10,-22],[-11,-23],[-12,-25],[-16,-30],[-22,-47],[-42,-121],[-10,-27],[-8,-25],[74,-82],[67,-71],[-18,-105],[-28,-43],[-24,-56],[-14,-23],[-12,-21],[-14,-25],[-17,-28],[-17,-30],[-12,-21],[-11,-21],[-14,-23],[-24,-30],[-22,-27],[-14,-18],[-15,-18],[-25,-32],[-26,-32],[-35,-45],[-15,-18],[-23,-29],[-57,-70],[-21,-28],[-27,-32],[-36,-46],[-17,-20],[-28,-36],[-58,27],[-81,37]],[[81296,20975],[-90,40],[-37,17],[-28,12],[-31,14],[-49,22],[-31,14],[-38,17],[-48,22],[-65,29],[-54,24],[-26,12],[-20,9],[-20,10],[-22,10],[-20,8],[-23,26],[-55,66],[-16,17],[-15,19],[-35,16],[-61,27],[-59,25],[-66,30],[-20,9],[-79,35],[-51,22],[-22,9],[-20,9],[-43,18],[-62,28],[-62,27],[-37,16],[-30,13],[-20,9],[-78,35],[-25,10],[-59,-11],[-45,-10],[-140,-29],[-29,-5],[-24,-7],[-88,-18],[-76,-16],[-31,-6],[-31,-7],[-23,-4],[-43,-10],[-42,-9],[-23,-4],[-39,-9],[-40,-8],[-31,-7],[-41,-9],[-37,-7],[-38,-9],[-45,-9],[-87,-11],[-43,-5],[-60,-8],[-24,-2],[-45,-6],[-43,-5],[-31,-3],[-54,-8],[-63,-7],[-31,-4],[-30,-3],[-32,-4],[-53,-7],[-32,-4],[-49,-5],[-42,-5],[-63,-7],[-64,-8],[-58,-7],[-37,-4],[-31,-4],[-46,-6],[-26,-2],[-23,-3],[-37,-4],[-41,-5],[-26,-3],[-27,-3],[-30,-4],[-83,-9],[-24,-3],[-25,-3],[-61,-8],[-190,-20],[-24,-2],[-27,5],[-27,5],[-26,5],[-27,5],[-28,6],[-46,8],[-86,16],[-36,7],[-27,5],[-29,6],[-35,7],[-29,5],[-48,9],[-50,10],[-5,1],[-21,4],[-35,7],[-25,4],[-20,4],[-84,17],[-45,8],[-43,8],[-160,31],[-35,6],[-59,12],[-44,8],[-59,12],[-49,9],[-21,4],[-35,6],[-30,6],[-24,5],[-6,1],[-30,6],[-41,7],[-43,9],[-136,26],[-36,7],[-24,6],[-32,6],[-65,12],[-51,10],[-35,7],[-120,23],[-21,4],[-53,11],[-31,6],[-33,7],[-21,3],[-21,4],[-42,8],[-22,5],[-23,4],[-38,9],[-30,8],[-29,19],[-21,16],[-20,17],[-52,40],[-33,26],[-21,17],[-24,16]],[[74809,21906],[-8,6],[-4,8],[-13,27],[-17,36],[0,2],[0,1],[1,3],[31,70],[-60,90],[-1,3],[-3,3],[-16,41],[-1,9],[2,12],[4,5],[15,9],[2,27],[1,8],[1,4],[-1,29],[0,10],[-1,70],[-7,7],[-5,2],[-7,-2],[-5,-1],[-12,-10],[-13,-7],[-10,0],[-7,0],[-39,24],[-4,3],[-11,9],[-3,3],[-14,24],[-14,25],[-2,5],[-3,8],[4,3],[14,-5],[16,2],[2,0],[-4,40],[0,9],[-17,36],[-2,6],[-41,45],[-4,4],[-36,29],[-3,2],[-41,56],[-1,3],[3,4],[35,50],[14,21],[2,2],[0,1],[0,11],[-7,29],[-6,19],[-6,43],[-2,30],[-5,58],[-1,37],[1,2],[0,4],[12,81],[0,5],[1,8],[13,97],[13,97],[3,19],[0,2],[0,2],[-11,93],[-2,14],[-1,7],[-5,22],[-10,55],[24,20],[58,49],[-37,46],[-11,13],[-23,29],[-1,2],[-35,49],[-26,38],[-4,6],[-1,1],[-16,19],[-14,16],[-80,94],[-5,4],[-26,23],[-11,9],[-154,93],[0,1],[-3,2],[-12,5],[-32,12],[-4,0],[-3,1],[-1,1],[-13,7],[-45,26],[-75,38],[-19,10],[-33,15],[-39,17],[-24,11],[-28,13],[-41,16],[-33,11],[-31,7],[-27,4],[-35,5],[-46,5],[-27,1],[-55,1],[-24,-2],[-31,-1],[-26,-2],[-22,-2],[-30,-4],[-53,-6],[-40,-4],[-32,-5],[-36,-7],[-24,-5],[-27,-7],[-39,-11],[-22,-8],[-49,-18],[-19,-9],[-24,-14],[-29,-20],[-17,-16],[-32,-28],[-21,-17],[-49,-28]],[[62498,28351],[-1,-55],[0,-34],[0,-36],[0,-36],[0,-31],[0,-12],[0,-42],[0,-174],[0,-24],[-1,-25],[0,-98],[0,-85],[0,-142],[-2,-56],[-2,-58],[1,-103],[1,-38],[1,-27],[0,-35],[0,-36],[-2,-91],[1,-56],[-1,-59],[0,-25],[0,-46],[-3,-120],[-1,-89],[-1,-69],[-2,-132],[-2,-143],[-3,-216],[0,-22],[-1,-43],[0,-40],[-2,-164],[137,-1],[25,-1],[47,-1],[28,0],[50,-1],[46,-1],[31,0],[36,-1],[117,-2],[40,0],[22,0],[92,0],[0,-23],[0,-31],[0,-41],[0,-114],[-1,-53],[0,-28],[-1,-106],[0,-33],[-1,-39],[-1,-85],[-1,-5],[0,-38],[-1,-28],[-2,-37],[-1,-30],[-1,-28],[-1,-35],[-1,-33],[-2,-72],[0,-50],[0,-13],[0,-35],[-1,-40],[0,-27],[-1,-27],[-2,-105],[0,-31],[-1,-47],[-1,-50],[-1,-83],[-1,-120],[-2,-110],[-1,-102],[-2,-78],[2,-95],[1,-34]],[[63125,23975],[-27,-7],[-110,3],[-18,1],[-47,0],[-17,0],[-18,0],[-5,0],[-26,0],[-31,0],[-63,0],[-88,1],[-26,0],[-99,0],[-45,0],[-25,0],[-1,-23],[0,-31],[0,-66],[0,-41],[-1,-29],[0,-24],[-1,-73],[0,-37],[0,-61],[-1,-51],[-1,-46],[0,-74],[-1,-30],[0,-71],[0,-43],[0,-42],[0,-29],[-1,-28],[0,-28],[0,-38],[-1,-30],[0,-31],[0,-30],[0,-125],[0,-33],[0,-23],[0,-36],[-1,-33],[0,-40],[0,-25],[-1,-31],[-1,-42],[0,-25],[0,-39],[-1,-30],[1,-39],[-1,-32],[0,-43],[-1,-39],[0,-62],[-1,-56],[1,-25],[0,-45],[-2,-187],[0,-31],[1,-22],[-1,-32],[0,-53],[-1,-38],[-1,-84],[-1,-14],[1,-30]],[[62463,21703],[-76,1],[-42,0],[-28,0],[-36,-1],[-34,1],[-46,-1],[-31,1],[-49,0],[-59,0],[-26,0],[-69,0],[-143,0],[-36,0],[-55,0],[-14,0],[-30,0],[-41,0],[-6,0],[-32,0],[-32,1],[-5,0],[-27,1],[-23,0],[-24,0],[-34,-2],[-27,0],[-60,0],[-63,1],[-18,0],[-34,0],[-21,0],[-19,-1],[-9,0],[-21,1],[-10,0],[-30,2],[-22,1],[-34,1],[-48,0],[-22,-1],[-5,0],[-26,0],[-31,0],[-27,0],[-30,0],[-51,2],[-20,0],[-95,2],[-25,1],[-26,-1],[-24,0],[-134,0],[-23,0],[-24,0],[-31,0],[-87,0],[-73,0],[-83,0],[-70,0],[-44,0],[-24,0],[-31,0],[-13,0],[-11,0],[-77,1],[-32,1],[-16,0],[-7,0],[-35,0],[-23,0],[-53,0],[-45,1],[-32,-2],[-21,-1],[-46,0],[-88,1],[-35,0],[-66,1],[-52,0],[-35,0],[-74,0],[-68,0],[-91,1],[-32,0],[-25,0],[-47,0],[-32,0],[-45,0],[-152,1],[-35,0],[-21,0],[-55,0],[-76,0],[-6,0],[-32,0],[-52,0],[-13,10],[-8,5],[-1,8],[-3,18],[-22,27],[-11,4],[-8,2],[-1,1],[-37,34],[-11,33],[1,10],[1,2],[2,18],[-1,5],[-4,24],[3,20],[0,2],[-21,11],[-8,18],[-3,7],[-38,-1],[-29,8],[-11,4],[-12,4],[-5,1],[-24,12],[-10,17],[-4,6],[-12,29],[-9,27],[-10,29],[-15,30],[-14,19],[-17,15],[-16,16],[-12,25],[-1,7],[-5,23],[-15,22],[-10,40],[14,23],[-2,30],[-1,27],[12,21],[-8,25],[-13,23],[-2,6],[-12,21],[-12,16],[-2,3],[-7,4],[-2,1],[-12,7],[-25,-2],[-24,-3],[-1,0],[-25,5],[-3,1],[-2,2],[-13,16],[-1,0],[-24,18],[-15,0],[-10,0],[-22,-1],[-50,-1],[-4,-1],[-80,-1],[-77,-3],[-32,-1],[-114,-3],[-84,-3],[-24,0],[-34,-2],[-40,-1],[-68,-1],[-50,1],[-27,0],[-22,0],[-21,0],[-29,0],[-45,-1],[-49,0],[-37,-1],[-39,0],[-38,0],[-88,1],[-54,1],[-82,0],[-42,0],[-47,1],[-76,0],[-82,2],[-54,0],[-27,0],[-79,1],[-61,0],[-7,1],[-15,2],[-21,0],[-29,0],[-36,1],[-27,-1],[-51,-1],[-61,1],[-56,0],[-160,1],[-174,2],[-37,0],[-3,57],[-1,58],[-1,34],[-3,99],[-1,23],[-1,37],[-108,1],[-92,2],[-29,2],[-140,2],[-72,1],[-78,1],[-27,1],[-80,-1],[-58,1],[-185,2],[-33,1],[-29,0],[-40,0],[-46,1],[-56,0],[-56,1],[-25,0],[-28,1],[-51,0],[-38,1],[-31,0],[-39,1],[-32,0],[-36,1],[-139,1],[-275,1],[-114,1],[-170,0],[-3,0],[-55,3],[-32,1],[-106,2],[-63,3],[-28,1],[-6,1],[-60,3],[-43,1],[-36,1],[-87,4],[-36,1],[-35,1],[-25,1],[-79,4],[-57,2],[-174,3],[-103,3],[-49,2],[-160,2],[-82,2],[-86,1],[-171,2],[-104,1],[-9,0],[-23,0]],[[51728,22920],[10,30],[1,19],[1,29],[0,8],[1,2],[25,45],[15,28],[1,1],[12,110],[-1,4],[-4,19],[-4,17],[-2,9],[-6,3],[-1,1],[-21,15],[-3,4],[-2,2],[-9,31],[1,0],[1,7],[16,16],[1,1],[3,9],[4,12],[0,33],[-10,48],[-4,10],[-12,22],[-35,23],[-1,0],[-9,22],[-12,45],[-1,19],[-7,13],[-39,51],[-50,41],[-47,17],[-15,9],[-6,8],[-1,1],[-7,19],[-4,31],[-3,23],[1,28],[1,2],[14,23],[81,129],[18,17],[1,1],[0,2],[0,14],[0,28],[1,13],[0,2]],[[51621,24036],[15,-2],[27,-4],[30,-1],[23,0],[26,2],[9,2],[14,2],[30,7],[31,8],[52,10],[47,10],[29,2],[13,0],[15,-1],[45,-4],[24,-2],[5,-1],[16,-2],[46,0],[1,0],[29,3],[14,2],[1,1],[25,9],[19,18],[12,22],[13,21],[17,16],[25,11],[22,3],[37,-3],[6,25],[7,28],[10,26],[18,25],[15,16],[28,32],[34,40],[34,44],[13,20],[20,32],[11,21],[13,23],[9,20],[8,20],[12,31],[9,24],[15,42],[9,30],[9,22],[8,20],[21,50],[9,20],[16,19],[25,24],[29,26],[21,18],[24,15],[29,13],[16,6],[13,6],[38,15],[31,14],[22,24],[9,24],[-1,64],[13,79],[6,30],[12,24],[32,31],[80,78],[16,18],[21,29],[19,29],[14,26],[8,23],[10,39],[8,32],[10,28],[12,17],[26,30],[20,24],[12,23],[37,87],[17,39],[21,57],[10,34],[11,37],[6,21],[18,43],[9,20],[12,26],[19,42],[12,25],[4,29],[1,38],[-1,26],[1,36],[1,30],[1,47],[1,81],[2,31],[0,6],[0,23],[1,42],[2,67],[2,110],[1,26],[1,42],[2,58],[1,35],[1,26],[1,45],[2,59],[3,71],[1,41],[0,24],[72,-2],[27,-1],[44,-1],[60,-2],[90,-2],[1,39],[1,10],[2,74],[1,47],[1,29],[2,53],[1,34],[27,0],[84,-2],[61,-4],[1,0],[71,-2],[27,-1],[28,-1],[2,49],[3,56],[3,30],[2,25],[3,41],[3,38],[1,30],[41,-1],[41,-1],[38,-1],[58,-2],[78,-3],[34,-1],[30,1],[1,17],[1,22],[1,14],[0,12],[1,27],[2,104],[2,69],[0,17],[1,13],[2,82],[0,3],[2,22],[-1,26],[1,57],[0,9],[0,14],[2,30],[54,-1],[48,-2],[43,-2],[26,-1],[26,0],[33,-2],[33,-1],[41,2],[4,45],[3,76],[3,100],[2,52]],[[16527,27212],[-6,-383],[-208,-5],[-2,-35],[0,-39],[-1,-61],[0,-3],[0,-61],[121,8],[39,3],[48,4],[1,-45],[-1,-13],[-1,-15],[1,-43],[0,-23],[-2,-54],[1,-23],[0,-28],[-5,-177],[-3,-75],[3,-95],[33,-2],[9,0],[97,-3],[54,-1],[174,-5],[38,-3],[-140,-112],[-94,-76],[1,-22],[-3,-59],[0,-22],[0,-56],[-1,-28],[-158,4],[-21,1],[-3,-76],[-5,-85],[0,-26],[-1,-26],[-1,-30],[-2,-40],[-1,-22],[0,-33],[-1,-28],[106,-1],[32,0],[24,0],[40,-1],[0,-103],[1,-66],[0,-57],[0,-29],[-202,0],[-8,-24],[1,-192],[2,-167]],[[16483,24659],[-21,0],[-156,1],[-15,1],[-250,1],[-159,1],[-33,1],[-50,0],[-209,1],[-2,0],[-89,1],[-60,0],[-113,1],[-48,0],[-37,5],[-32,-2],[-27,1],[-26,4],[-109,-1],[-39,0],[-59,5],[-22,-1],[-381,5],[-68,1],[-92,1],[-339,5],[-27,5],[-24,3],[-18,-20],[-23,7],[-33,0],[-21,-20],[-18,-17],[-35,-18],[-18,-15],[-31,5],[-26,-6],[-27,-12],[-26,-12],[-33,-20],[-26,-6],[-25,-5],[-18,-13],[-24,-2],[-19,-16],[-30,-29],[-13,-14],[-3,-2],[-26,15],[-27,2],[-29,5],[2,24],[0,2],[-4,0],[-17,-2],[-23,8],[-21,15],[-1,1],[-51,9],[-23,14],[-27,-8],[-22,3],[-21,-12],[1,-8],[1,-14],[-23,-15],[-18,-26],[-17,-15],[-23,-6],[-18,-18],[-22,-7],[-18,-14],[-48,-17],[-47,-10],[-20,-13],[-26,0],[-29,2],[-23,-6],[-50,-9],[-28,-9],[-26,1],[-43,-14],[-34,3],[-25,1],[-34,10],[-27,-5],[-42,-21],[-36,-20],[-222,2],[-9,1],[-59,1],[-186,1],[-1,31],[0,64],[-1,79],[-2,129],[1,54],[0,157],[0,65],[-2,122],[-21,-5],[-5,-1],[-22,-19],[-19,-15],[-2,-1],[-14,-5],[-7,-2],[-12,0],[-9,0],[-30,1],[-16,-7],[-7,-3],[-10,6],[-9,5],[-21,19],[-28,7],[-22,-10],[-28,-4],[-24,0],[-31,1]],[[11746,25002],[30,36],[5,43],[-37,45],[-30,27],[-13,30],[6,46],[55,88],[7,10],[18,28],[31,53],[20,50],[9,69],[-7,51],[-12,30],[-38,45],[-50,52],[-13,24],[-82,106],[-23,66],[-11,65],[-11,24],[-21,43],[-81,119],[4,56],[17,24],[34,84],[-15,40],[-40,48],[-10,27],[-3,26],[10,81],[0,47],[-6,6],[8,61],[6,66],[13,49],[14,30],[3,29],[3,0],[-7,44],[-2,15],[-1,8],[-1,7],[-6,43],[-4,0],[-18,1],[-34,6],[-18,19],[9,67],[29,64],[7,5],[18,57],[-6,32],[-15,37],[-32,41],[-26,3],[-53,28],[-39,4],[-12,9],[-8,6],[-42,15],[-27,21],[-27,15],[-23,18],[-28,19],[-23,19],[-31,35],[-22,28],[-20,26],[-14,18],[-24,29],[-25,22],[-23,8],[-25,9],[-21,4],[-23,0],[-28,9],[-14,19],[-3,32],[13,35],[13,17],[8,22],[16,25],[11,24],[15,32],[13,20],[4,26],[25,15],[25,0],[22,-2],[9,4],[7,3],[4,1],[9,24],[-10,20],[-18,31],[-17,17],[-10,9],[-44,11],[-42,13],[-23,6],[-46,11],[-63,24],[-42,30],[-25,32],[-32,41],[-27,28],[-17,15],[-29,28],[-34,37],[-27,26],[-19,28],[-19,25],[-17,22],[-44,45],[-38,20],[-31,38],[-17,43],[-48,121],[-32,30],[-44,28],[-56,28],[-47,19],[-29,22],[-25,32],[-17,14],[-11,21],[-8,23],[-2,24],[0,28],[2,34],[4,26],[-4,28],[-4,28],[-4,22],[-4,26],[-3,23],[-4,28],[-2,26],[2,24],[0,23],[1,28],[1,26],[2,26],[0,28],[9,30],[16,24],[20,21],[18,24],[19,15],[13,30],[0,37],[-4,28],[10,32],[17,28],[25,20],[15,32],[0,32],[-15,32],[-12,28],[-3,22],[-10,28],[-4,24],[-4,30],[-9,34],[-6,37],[-19,36],[-21,39],[-10,30],[-16,18],[-11,21],[-13,19],[-11,26],[-8,24],[-13,30],[-14,25],[-11,25],[-2,30],[10,21],[21,37],[9,20],[21,14],[12,24],[7,31],[2,25],[-11,24],[-19,19],[-16,15],[-30,24],[-12,8],[-7,5],[-29,23],[-37,29],[-41,32],[-46,34],[-36,28],[-35,30],[-15,17]],[[51621,24036],[-70,0],[-16,0],[-2,0],[-28,2],[-2,0],[-23,1],[-27,1],[-108,6],[-84,2],[-66,2],[-73,2],[-29,1],[-121,4],[-27,1],[-27,0],[-92,2],[-70,2],[-49,1],[-10,0],[-102,4],[-24,1],[-26,1],[-50,2],[-57,2],[-27,0],[-25,1],[-32,1],[-60,1],[-99,2],[-98,2],[-24,0],[-24,1],[-72,1],[-96,1],[-186,4],[-4,0],[-38,0],[-68,4],[-66,4],[-83,5],[-36,1],[-103,1],[-108,1],[-54,1],[-32,0],[-33,0],[-49,1],[-3,0],[-45,0],[-26,1],[-28,0],[-177,3],[-31,0],[-45,1],[-165,2],[-7,0],[-269,2],[-361,2],[-168,2],[-6,0],[-123,-1]],[[47567,24117],[-55,-2],[-33,2],[-50,7],[-24,1],[-27,17],[-20,-8],[-17,15],[-22,5],[-6,9],[-8,9],[-16,13],[-59,24],[-13,5],[-8,5],[-13,14],[-2,25],[-2,5],[-6,5],[-15,6],[-3,1],[-62,24],[-17,3],[-13,-1],[-25,-1],[-9,0],[-67,-2],[-45,-2],[-1,-1],[-16,-3],[-8,-8],[-2,-2],[-14,-19],[-3,-4],[-7,-7],[-13,-6],[-10,-2],[-14,0],[-42,-1],[-34,-1],[-5,2],[-95,74],[-10,13],[-11,28],[-1,31],[-3,7],[-32,41],[-15,200],[1,10],[-15,28],[-5,14],[-2,6],[-1,13],[-1,22],[-4,56],[-1,22],[0,21],[4,3],[-1,4],[0,7],[-8,31],[-26,41],[-25,29],[-9,9],[-13,4],[-19,-1],[-3,0],[-15,6],[-4,4],[-31,35],[-5,6],[-11,20],[-8,31],[-12,47],[-9,37],[-11,46],[-21,87],[22,23],[-41,51],[-34,41],[-33,-27],[-51,94],[-8,23],[-7,20],[0,7],[-4,6],[-6,9],[-3,4],[-20,27],[-16,16],[-120,102],[-77,54],[-43,23],[-52,37],[-12,1],[-128,6],[-98,5],[-71,4],[-37,2],[-27,1],[-41,2],[-47,2],[-23,1],[-55,3],[-38,2],[-130,7],[-34,2],[-160,8],[-39,1],[-55,3],[-30,2],[-28,0],[0,40],[2,204],[0,3],[0,42],[-61,2],[-73,2],[-137,3],[-28,1],[-1,0],[-161,5],[-83,2],[-3,0],[-7,0],[-22,0],[-56,3],[1,86],[1,49],[1,124],[-1,134],[0,27],[1,12],[1,16],[1,64]],[[70905,25295],[-40,-1],[-24,-1],[-38,0],[-30,0],[-22,0],[-108,-1],[-2,-39],[-1,-27],[1,-28],[1,-28],[2,-27],[4,-55],[4,-72],[-22,-2],[-44,-1],[-93,-1],[-39,0],[-39,-1],[-34,0],[-85,0],[0,-30],[0,-34],[-1,-52],[0,-1],[0,-24],[0,-42],[0,-23],[0,-55],[-167,4],[-30,1],[-30,0],[-62,1],[0,-38],[0,-37],[0,-25],[0,-49],[-1,-65],[0,-67],[-39,1],[-23,0],[-22,1],[-44,1],[-24,0],[-23,1],[-24,0],[-29,1],[-125,2],[-34,0],[-40,1],[-56,1],[-73,1],[-17,0],[-9,0],[-22,1],[-42,1],[-1,-111],[0,-22],[-1,-35],[1,-52],[-1,-22],[0,-75],[-1,-38],[0,-25],[0,-22],[0,-26],[-1,-53],[0,-65],[-29,0],[-84,0],[-34,1],[-40,0],[-26,0],[-40,0],[-50,1],[0,-105],[0,-28],[0,-45],[0,-28],[0,-29],[-100,-1],[-25,0],[-26,0],[-69,0],[-24,0],[-38,0],[-30,-18],[-3,-161],[0,-49],[-1,-86],[-57,-1],[-38,-1],[-34,-1],[-4,0],[-36,-1],[-31,-1],[-29,0],[-25,-1],[-25,0],[-28,-1],[-1,-39],[0,-35],[1,-90],[1,-70],[0,-23],[-59,0],[-24,1],[-16,0],[-8,0],[-29,0],[-22,1],[-25,0],[-33,0],[-26,0],[-26,1],[-3,0],[-35,-1],[-57,1],[-26,0],[-69,0],[-29,1],[-30,-1],[-27,0],[-40,0],[-26,0],[-38,0],[-22,0],[-48,1],[-51,-1],[-24,0],[-90,1],[-22,0],[-23,0],[-134,0],[-22,0],[-39,-1],[-40,0],[-30,1],[-2,-88],[-1,-66],[-1,-63],[-1,-40],[-1,-23],[-23,-1],[-95,-1],[-24,0],[-40,0],[-81,-1],[-62,-2]],[[66906,22848],[-76,1],[-57,-1],[-64,0],[-24,-1],[-2,0],[-21,0],[-10,0],[-14,0],[-32,-1],[-23,-1],[-27,0],[-1,0],[-67,0],[-3,0],[-19,0],[-25,0],[-64,1],[-27,0],[-26,1],[-26,0],[-27,1],[-105,1],[-62,1],[-37,0],[-33,1],[-111,2],[-112,2],[-118,1],[-82,2],[-9,0],[-16,1],[-27,6],[1,35],[0,31],[0,66],[0,29],[0,23],[-1,23],[1,35],[0,33],[0,23],[0,22],[0,23],[0,13],[0,10],[0,23],[-1,22],[1,103],[-2,30],[-18,0],[-37,2],[-27,0],[-22,1],[-79,-3],[-41,-1],[-25,-1],[-14,16],[0,26],[0,38],[-1,32],[-1,73],[-1,35],[-1,81],[-1,97],[0,22],[-1,68],[-1,56],[-23,10],[-26,1],[-51,1],[-26,0],[-53,1],[-47,0],[-28,1],[-76,0],[-108,1],[-80,1],[-29,0],[-49,1],[-30,0],[-74,1],[-34,0],[-53,0],[-8,0],[-132,2],[-37,0],[-56,1],[-138,1],[-27,1],[-56,0],[-83,0],[-28,0],[-36,0],[-59,-1],[-48,0],[-50,0],[-22,0],[-41,0],[-41,0],[-22,-1],[-32,0],[-158,0],[-25,0],[-30,0],[-45,0],[-49,0],[-46,0],[-47,-1],[-26,1],[-34,3]],[[88155,20236],[-30,-41],[-73,5],[1,15],[3,50],[31,36],[25,32],[24,30],[22,33],[4,7],[44,30],[2,-5],[14,-34],[-29,-48],[-18,-58],[-20,-52]],[[90968,20455],[-21,-46],[-21,12],[-28,20],[-44,14],[4,25],[-47,23],[24,53],[47,17],[56,-3],[34,-27],[-4,-88]],[[89806,20495],[-24,0],[-29,-5],[-36,-21],[-26,-10],[-40,15]],[[89651,20474],[15,71],[25,5],[60,11],[90,36],[24,-4],[43,-9],[22,-9],[8,-3],[4,-22],[-40,-6],[-86,-44],[-10,-5]],[[90282,20622],[24,-15],[21,-22],[23,-24],[6,-2],[53,-12],[1,-40],[14,-7],[45,-24],[31,-47],[17,-26],[31,-68],[-9,-55],[-32,-61],[-55,-52],[-46,17],[-69,52],[-2,2],[-13,16],[-50,69],[-51,91],[-25,34],[-16,22],[-22,18],[-32,27],[-73,10],[-18,22],[-3,3],[-29,19],[-9,6],[-28,37],[17,4],[30,8],[18,-5],[7,-2],[29,29],[59,7],[61,-2],[67,-12],[28,-17]],[[89746,20603],[-34,-10],[-54,27],[65,72],[90,15],[59,-16],[-68,-51],[-58,-37]],[[89389,20816],[99,-59],[54,-31],[-35,-19],[-46,-21],[-70,-30],[-47,14],[-34,-1],[-6,0],[-7,0],[-40,-5],[-72,2],[-38,10],[-31,15],[-15,33],[-4,7],[-32,40],[56,38],[41,-11],[40,-11],[66,20],[34,9],[37,10],[50,-10]],[[89673,20808],[-71,-5],[-50,6],[-5,1],[-38,6],[-9,2],[-40,10],[-64,38],[71,11],[65,-1],[53,-5],[45,-6],[19,-3],[12,-2],[9,-1],[27,-14],[13,-6],[-37,-31]],[[89091,20996],[113,-38],[55,7],[12,-85],[-62,-25],[-52,-13],[-106,-4],[-17,-1],[-71,9],[-57,21],[-47,45],[-20,56],[67,13],[39,16],[18,7],[128,-8]],[[87646,21143],[43,-41],[36,-22],[-67,5],[-4,-25],[109,-39],[3,0],[68,6],[47,-1],[49,-1],[60,-8],[16,-3],[35,-6],[36,-4],[21,-3],[53,-3],[70,4],[44,-8],[50,23],[14,2],[59,8],[48,-2],[64,-6],[68,-10],[59,-16],[64,-22],[47,-21],[56,-38],[15,-16],[25,-26],[16,-37],[-35,-18],[-44,-7],[-41,-20],[-50,0],[-35,-14],[-7,-3],[-59,-31],[-60,10],[-17,-60],[-45,-26],[-32,-30],[-28,-24],[-51,-37],[-38,-33],[-18,-15],[0,-2],[-5,-25],[-31,-26],[-15,31],[-17,33],[-48,46],[-54,29],[-5,3],[-38,17],[-59,-15],[-1,-1],[-47,-73],[-5,-54],[-22,-1],[-7,0],[-29,22],[-29,23],[-112,63],[-84,17],[-16,3],[-6,1],[-51,11],[-80,0],[-25,15],[-5,24],[-3,17],[14,64],[0,3],[24,77],[7,61],[4,38],[-15,70],[-42,35],[-76,10],[-50,-22],[-15,53],[27,13],[49,16],[24,39],[49,2],[15,1],[42,-19],[53,11],[40,8]],[[88091,21072],[-13,0],[-46,2],[-4,0],[-70,8],[-74,6],[-39,7],[-7,1],[-63,38],[106,25],[5,1],[47,9],[86,4],[78,-13],[99,-15],[51,-14],[39,-13],[-59,-33],[-64,-11],[-41,-1],[-31,-1]],[[87306,20959],[-23,-18],[-25,-8],[-5,-1],[-18,-3],[-30,-11],[-21,-10],[-27,-10],[-28,-3],[-22,7],[-18,14],[-16,18],[-12,23],[-13,21],[-18,18],[-35,12],[-19,12],[-39,38],[-19,16],[-18,13],[-36,18],[-11,12],[-7,7],[-15,32],[-18,16],[-20,10],[-23,-1],[-20,-10],[-15,-32],[9,-21],[14,-18],[17,-24],[4,-26],[-23,-17],[-30,-4],[-22,17],[-14,40],[-2,26]],[[86688,21112],[22,18],[0,47],[-5,4],[-38,34],[-23,11],[0,1],[-1,21],[-2,27],[31,9],[67,38],[42,16],[48,22],[43,20],[36,19],[63,31],[1,1],[89,25],[78,-5],[17,-19],[22,-23],[12,-59],[-32,-19],[-95,-46],[-4,-61],[36,-44],[14,-17],[75,-47],[32,4],[83,11],[20,12],[18,11],[55,4],[14,-29],[-3,-7],[-6,-13],[-8,-1],[-30,-3],[-32,-17],[0,-38],[-1,-5],[-4,-34],[-10,-32],[-6,-20]],[[90313,22017],[75,-49],[40,5],[15,2],[16,-8],[28,-15],[27,-53],[3,-47],[-47,-39],[-37,-15],[-51,-5],[-46,21],[-76,4],[-47,0],[-49,-11],[-53,-21],[-37,8],[-33,28],[-40,41],[-62,18],[-44,-10],[-11,-2],[-34,-25],[-23,-16],[-32,-33],[-28,-28],[-41,-14],[-40,14],[-2,9],[-8,42],[-8,42],[-3,13],[-19,39],[49,33],[-2,82],[9,73],[2,67],[13,35],[5,15],[8,11],[24,32],[44,42],[32,20],[43,16],[60,0],[61,-16],[51,-28],[50,-43],[17,-83],[49,-21],[15,-56],[45,-15],[37,-31],[28,-14],[27,-14]],[[90152,22440],[55,-48],[28,-55],[4,-42],[22,-47],[1,-21],[1,-26],[-28,-28],[-46,64],[-28,35],[-10,13],[-20,24],[-21,25],[-41,29],[-43,28],[-28,25],[-54,-20],[-50,19],[-52,-8],[-75,-14],[-10,47],[-3,16],[30,64],[28,29],[53,14],[40,-15],[36,-13],[85,-13],[45,-26],[37,-22],[44,-34]],[[92495,25428],[56,-32],[12,0],[41,2],[88,-57],[28,-24],[77,-69],[42,-42],[42,-57],[36,-69],[10,-76],[-58,-50],[-77,-79],[-42,-49],[-42,-65],[-39,-56],[-30,-55],[-16,-37],[-56,-133],[-25,-61],[-2,-6],[-31,-73],[-34,-75],[-45,-85],[-52,-86],[-26,-39],[-58,-67],[-28,-36],[-49,-48],[-29,-36],[-56,-55],[-58,-64],[-40,-44],[-48,-64],[-38,-59],[-43,-60],[-32,-63],[-19,-58],[-19,-55],[-22,50],[-6,59],[-13,50],[-5,13],[-9,27],[-1,5],[-44,-46],[18,-24],[15,-20],[-1,-24],[-1,-36],[-14,-75],[-23,-44],[-34,-42],[-34,-41],[-42,-45],[-20,-33],[-14,-22],[-57,-55],[-41,-51],[-28,-40],[-11,-17],[-50,-26],[-26,-45],[-2,-6],[-12,-45],[-8,-15],[-21,-41],[-35,-49],[-44,-91],[-26,-68],[-19,-54],[-13,-46],[-23,-76],[-30,-67],[-23,-37],[-47,-80],[-36,-55],[-44,-34],[-54,-21],[-50,-30],[-58,-28],[-32,6],[-27,21],[-27,31],[-6,63],[-3,7],[-10,25],[-13,30],[-44,31],[-8,5],[-18,21],[-13,15],[-20,55],[-12,48],[-38,68],[-14,17],[-32,38],[-54,51],[-33,44],[-7,9],[-52,80],[0,21],[1,40],[18,28],[18,27],[41,66],[7,26],[18,62],[4,17],[6,21],[-7,49],[-32,-43],[-14,-54],[-13,-44],[-49,-57],[-56,8],[-28,4],[-48,59],[-32,48],[-3,14],[-6,28],[1,56],[7,52],[15,42],[8,21],[52,37],[-2,22],[-2,22],[29,25],[-2,13],[-4,20],[2,29],[1,26],[-6,76],[-1,20],[12,82],[-27,36],[-27,-52],[-32,9],[-7,1],[-59,21],[-66,27],[-39,54],[-37,33],[-8,7],[-62,43],[-15,25],[-21,36],[-11,64],[11,51],[-52,59],[-14,25],[-13,24],[-14,23],[-7,13],[-11,22],[-18,34],[3,33],[1,7],[68,22],[51,11],[47,11],[72,54],[53,2],[46,-3],[43,-9],[36,-6],[50,-5],[47,14],[24,8],[31,15],[26,13],[44,27],[48,6],[29,70],[52,8],[49,16],[18,7],[14,1],[25,1],[36,16],[33,16],[15,8],[18,7],[23,11],[61,31],[62,33],[67,27],[58,5],[21,2],[16,-3],[50,-10],[47,16],[16,5],[50,40],[39,29],[44,35],[28,36],[30,31],[52,68],[41,42],[22,36],[20,39],[28,31],[4,38],[41,87],[43,68],[30,68],[64,60],[66,12],[11,-32],[46,-34],[77,-11],[24,4],[43,7],[34,7],[13,3],[51,-12],[13,-18],[24,-33],[37,13],[11,25],[7,16],[34,39],[13,15],[69,29],[41,15],[40,21],[30,37],[41,38],[32,5],[29,5],[3,-2]],[[90911,25856],[21,-47],[-29,-50],[-2,-10],[-7,-27],[95,-6],[-4,-17],[-12,-43],[-81,5],[-19,23],[-22,29],[-33,-43],[-66,-42],[-51,-48],[-48,-41],[-52,-29],[-6,-41],[-18,-17],[-29,-28],[-10,-5],[-29,-13],[-49,-8],[-44,17],[-49,25],[-31,20],[-5,3],[-54,29],[-57,32],[-50,38],[-68,46],[-14,25],[-33,62],[66,-21],[69,-3],[81,30],[48,44],[49,38],[104,17],[50,-2],[26,-1],[43,48],[74,52],[83,-48],[-5,54],[67,4],[61,-18],[40,-33]],[[89265,27952],[63,-29],[58,-35],[36,-58],[50,-35],[45,-15],[45,19],[17,7],[13,13],[57,53],[87,28],[71,24],[24,14],[15,9],[52,53],[50,36],[57,5],[70,-26],[35,-44],[47,-56],[54,-36],[7,-2],[68,-29],[65,-23],[55,-12],[37,3],[57,-1],[2,0],[33,6],[11,2],[7,1],[40,8],[70,15],[56,4],[60,4],[62,4],[27,2],[16,-1],[47,-1],[66,1],[56,-13],[53,-29],[11,-9],[37,-29],[56,-35],[54,-32],[50,-30],[1,0],[43,-30],[73,-25],[57,-12],[115,-57],[0,-49],[56,20],[52,-13],[98,-35],[33,-24],[22,-15],[29,-18],[24,-16],[56,-32],[34,-81],[-4,-48],[-3,-31],[-34,-11],[-19,-7],[62,-34],[47,-37],[63,-33],[10,-5],[10,-8],[23,-17],[36,-21],[11,-6],[70,-43],[57,-37],[5,-4],[43,-33],[62,-54],[41,-54],[9,-24],[19,-52],[1,-5],[3,-71],[-20,-67],[-69,28],[-41,35],[-38,38],[-40,39],[-29,37],[-17,21],[-40,35],[-36,-6],[31,-49],[25,-41],[-1,-44],[58,-24],[3,-7],[18,-51],[49,-7],[49,-54],[32,-51],[18,-44],[22,-51],[7,-66],[-9,-58],[-21,-45],[-26,-32],[-28,-32],[-6,-6],[-49,-47],[-13,-18],[-38,-53],[-35,-47],[-66,-19],[-68,-42],[-33,-54],[-69,-1],[-43,3],[-92,10],[-84,19],[-17,4],[-24,18],[-63,45],[-103,102],[-62,82],[-36,58],[25,42],[60,63],[36,31],[43,46],[35,46],[14,97],[-40,-31],[-35,-43],[-39,-47],[-44,-47],[-42,-42],[-37,-30],[-7,-48],[1,-53],[15,-45],[26,-48],[10,-15],[19,-30],[36,-39],[15,-16],[65,-62],[60,-56],[27,-25],[24,-23],[6,-15],[9,-22],[-3,-3],[-33,-25],[-75,-2],[-63,-3],[-81,5],[-97,7],[-43,9],[-39,15],[-38,26],[-14,37],[-8,20],[-4,91],[-24,85],[-21,-37],[-20,-33],[-10,-61],[1,-16],[2,-32],[2,-30],[1,-28],[-1,-69],[-18,-54],[-63,-14],[-40,7],[-49,8],[-49,64],[-27,49],[-14,31],[-42,37],[-11,11],[-46,37],[-62,28],[-59,11],[-20,4],[-37,0],[-25,0],[-85,-15],[-51,-30],[-25,-15],[-47,-33],[-66,-34],[-81,-28],[-64,-28],[-56,-32],[-54,-35],[-52,-1],[-2,76],[47,66],[32,52],[22,92],[7,66],[-15,66],[-2,9],[-7,32],[-57,18],[0,42],[0,2],[14,34],[11,30],[21,8],[28,11],[63,22],[67,51],[45,48],[13,21],[25,40],[15,66],[8,48],[42,40],[62,47],[-54,3],[-31,-16],[-28,-14],[-66,-38],[-7,-19],[-18,-47],[-10,-72],[-22,-51],[-70,-32],[-78,-58],[-42,-42],[-36,-58],[-12,-64],[0,-50],[54,-52],[19,-42],[-26,-48],[-16,-34],[-16,-37],[-28,-67],[-49,35],[-53,5],[9,-46],[9,-57],[7,-53],[23,-80],[-46,-24],[-56,5],[-56,9],[-47,8],[-51,21],[-56,10],[-45,1],[-5,1],[-48,2],[-48,15],[-52,-23],[-39,26],[-35,1],[-14,1],[22,-26],[15,-17],[29,-41],[-28,-29],[-24,-25],[-35,-30],[1,-4],[4,-32],[-9,-45],[-45,-103],[-47,-38],[-61,-4],[-52,33],[-39,42],[-21,59],[23,52],[-16,94],[-71,-93],[0,-18],[3,-55],[3,-48],[9,-11],[35,-46],[41,-33],[14,-11],[65,-22],[48,1],[44,12],[53,26],[36,17],[15,49],[11,26],[13,32],[21,47],[15,19],[23,28],[40,46],[6,7],[42,35],[36,12],[14,5],[17,1],[55,3],[94,-61],[35,-13],[5,-1],[29,-34],[17,-21],[46,-7],[58,-26],[49,-17],[21,-7],[91,-48],[36,-27],[22,-17],[70,-36],[34,-25],[25,-19],[8,-6],[23,-26],[29,-34],[41,-45],[30,-52],[5,-29],[6,-38],[-24,-43],[-8,-15],[-70,-54],[-62,-47],[-5,-73],[2,-75],[-24,-40],[-8,-13],[25,15],[9,5],[30,18],[7,35],[3,17],[0,39],[12,42],[25,23],[16,15],[15,9],[40,23],[31,35],[48,69],[19,31],[14,22],[35,14],[28,-2],[21,-2],[77,3],[68,20],[46,32],[46,0],[12,0],[23,34],[10,15],[-11,47],[21,27],[13,18],[52,-2],[71,16],[10,-5],[41,-17],[51,-17],[28,-17],[11,-7],[-6,-29],[-10,-48],[-11,-36],[-8,-26],[-28,-70],[-25,-57],[-30,-27],[-35,-13],[-49,-20],[-66,-28],[-21,-23],[-8,-9],[-48,-13],[-9,0],[-30,1],[-10,-22],[-9,-17],[-48,-21],[-5,-12],[-22,-47],[-44,-42],[-27,-24],[-14,-12],[-18,-20],[-20,-21],[-49,-50],[-45,-32],[-46,-22],[-54,-37],[-81,-41],[-69,-38],[-30,-30],[-27,-26],[-30,-38],[-45,-19],[-58,-5],[-49,18],[-38,20],[-38,27],[-33,42],[-32,33],[-33,27],[-13,11],[-6,-43],[-21,5],[-27,6],[-40,7],[-24,5],[-62,46],[-12,25],[-23,46],[3,35],[2,35],[2,31],[2,21],[-51,69],[6,-63],[-8,-30],[-5,-24],[-4,-32],[-5,-36],[15,-63],[-16,-37],[72,-34],[29,-18],[37,-23],[45,-18],[50,-11],[59,-25],[23,-69],[-50,-38],[-40,-3],[-56,-40],[-23,-62],[6,-25],[8,-34],[13,-34],[5,-13],[20,-66],[-11,-65],[9,-68],[57,-57],[58,-49],[32,-27],[24,-20],[5,-3],[27,-15],[50,-59],[49,-56],[61,-31],[10,-6],[43,-22],[46,-51],[-2,-8],[-10,-37],[-30,-56],[-35,-54],[-2,-1],[-46,-35],[-44,-23],[-34,-38],[-43,-29],[-51,18],[-57,22],[-54,14],[-38,22],[-17,10],[-63,53],[-35,52],[-38,49],[-32,40],[-16,18],[-21,58],[17,68],[3,52],[32,32],[26,34],[-6,49],[-35,-39],[-34,-28],[-7,-6],[-28,-42],[-30,-33],[-29,-50],[-60,-5],[-7,-4],[-43,-26],[-40,-26],[-36,-27],[73,-10],[60,26],[48,12],[-22,-57],[-35,-27],[41,-48],[23,-33],[27,-29],[50,-47],[32,-42],[46,-43],[15,-13],[-17,-42],[-1,-9],[-3,-30],[48,33],[62,13],[49,-41],[30,-29],[5,-6],[21,-21],[22,-26],[21,-24],[40,-52],[22,-45],[10,-23],[14,-33],[8,-30],[5,-16],[1,-31],[1,-20],[-48,-35],[-51,-23],[-61,-26],[-65,-30],[-38,-70],[-13,-26],[-34,-66],[-23,-67],[-18,-56],[21,-73],[-10,-52],[-65,-42],[45,-25],[8,-34],[1,-13],[7,-51],[-9,-12],[-28,-38],[-55,-22],[-5,-1],[-52,-16],[-45,14],[-61,5],[-63,-20],[-47,-39],[-20,-41],[3,-48],[2,-41],[-5,-39],[-6,-42],[-17,-24],[-10,-13],[76,15],[41,49],[14,32],[5,14],[3,19],[3,29],[11,51],[5,23],[70,5],[67,4],[67,-8],[24,-33],[-5,-34],[2,-29],[2,-26],[-10,-57],[-2,-15],[5,2],[54,13],[12,2],[21,3],[14,3],[51,-6],[47,15],[32,23],[37,52],[50,32],[51,-9],[23,-14],[36,-24],[94,-27],[69,2],[60,16],[60,-13],[40,9],[37,0],[49,0],[22,3],[30,3],[55,-1],[-4,-36],[-2,-13],[1,-7],[5,-31],[29,-55],[-35,-48],[15,-61],[27,-17],[-28,-30],[1,-1],[1,-1],[55,-70],[61,-77],[61,-222],[0,-17],[-1,-48],[2,-34],[2,-26],[-6,-38],[-3,-16],[-4,-9],[-19,-44],[-17,-24],[-21,-12],[-36,4],[-63,-2],[-52,16],[-31,1],[-7,0],[-20,-3],[-43,-7],[-25,-11],[-26,-10],[-76,8],[-12,4],[-48,16],[-44,11],[-4,1],[-5,2],[-47,17],[-75,42],[-57,28],[-59,26],[-56,33],[-17,15],[-27,24],[-21,83],[-12,86],[3,31],[2,30],[-25,52],[-1,3],[-18,-72],[-3,-41],[-4,-40],[-6,-50],[-28,-46],[-31,-38],[-73,-14],[-60,-3],[1,-25],[1,-22],[-37,-6],[-31,-1],[-12,0],[-17,3],[-26,5],[-54,54],[-67,25],[-29,4],[-23,3],[-48,4],[-37,3],[-62,11],[-44,8],[-40,5],[-44,11],[-58,25],[-65,21],[-45,4],[-37,-6],[-20,-4],[-30,1],[-64,0],[-93,4],[-49,10],[-24,5],[-19,-4],[-64,-13],[-62,19],[-40,29],[-65,17],[-91,9],[-81,0],[-66,4],[-48,6],[-176,-25],[-62,0],[-77,5],[-95,3],[-51,10],[-28,8],[-39,32],[-12,29],[-7,17],[27,74],[6,30],[2,11],[-9,75],[-2,12],[-19,8],[-4,2],[5,-52],[-5,-38],[-4,-35],[-19,-26],[-36,-46],[0,-35],[-11,-34],[-8,-27],[-39,-52],[-1,-1],[-18,-9],[-22,-11],[-55,4],[-20,2],[-65,41],[-13,9],[-12,27],[10,36],[79,37],[39,20],[14,46],[5,15],[-22,31],[-61,59],[-46,17],[-37,-3],[-36,-3],[-7,-1],[-43,-5],[-23,-3],[-109,-54],[-36,-15],[-71,-40],[-15,-30],[-42,-28],[-50,2],[-64,50],[-10,92],[-30,61],[-56,66],[5,22],[3,11],[9,15],[5,10],[4,14],[2,7],[1,22],[20,11],[-5,10],[-6,12],[-9,20],[43,82],[-2,56],[-3,86],[-81,76],[-59,0],[-23,-17],[-54,0],[-12,-34],[18,-4],[40,-10],[13,-3],[53,-12],[37,-9],[7,-6],[29,-29],[-1,-52],[-31,-89],[-11,-34],[1,-6],[3,-27],[-5,-21],[-7,-26],[-17,-44],[5,-36],[32,-60],[24,-20],[-6,-99],[22,-62],[62,-53],[9,-22],[4,-11],[4,-13],[11,-35],[46,-36]],[[86660,21171],[-35,-13],[-4,-25],[16,-23],[7,-24],[-18,-19],[-23,9],[0,29],[-3,30],[-28,-4],[-13,-26],[-29,8],[-19,16],[2,22],[30,24],[-13,19],[-38,-13],[-22,10],[-2,27],[-8,25],[-26,1],[-28,-12],[-25,-2],[-8,29],[10,25],[-24,11],[-30,-15],[-19,-12],[1,26],[22,14],[-5,37],[-33,3],[-23,6],[-29,13],[-26,18],[-37,38],[-24,24],[-35,30],[-46,33],[-19,10],[-32,8],[-55,7],[-32,-3],[-26,-2],[-27,2],[-42,4],[-31,7],[-31,12],[-36,26],[-29,29],[-32,47],[-10,21],[-20,35],[-19,23],[-20,16],[-35,13],[-21,4],[-89,11],[-24,5],[-21,12],[-18,23],[-10,35],[-3,31],[2,25],[16,24],[0,28],[-5,1],[-89,47],[-16,2],[-14,2],[-11,-2],[-48,-9],[-22,-10],[-70,-33],[-28,-1],[-24,6],[-10,11],[-3,4],[0,5],[2,7],[3,20],[8,10],[35,20],[42,5],[28,19],[13,17],[5,32],[-13,32],[-26,31],[-31,18],[-18,5],[-34,0],[-48,0],[-22,0],[-11,-4],[-5,-2],[-19,0],[-52,7],[-43,25],[-47,39],[-31,34],[0,1],[-1,13],[-25,1],[-6,0],[-76,35],[-173,119],[-19,17],[-18,24],[-4,11],[4,22],[-3,34],[-1,2],[-1,4],[-3,6],[-7,16],[-28,34],[-41,38],[0,1],[-20,10],[-14,1],[-60,6],[-11,7],[-13,16],[-72,91],[-5,7],[-53,67],[-44,58],[-2,1],[-32,22],[-74,41],[-37,22],[-3,2],[-3,3],[-5,7],[-10,14],[3,16],[-5,7],[13,55],[-1,2],[-1,7],[-2,2],[-29,32],[-1,0],[-25,17],[-61,30],[-15,19],[4,26],[25,16],[23,6],[28,18],[8,10],[2,11],[2,10],[-13,15],[-65,72],[-3,3],[-12,40],[-8,9],[-8,10],[-30,4],[-40,-11],[-34,4],[-42,19],[-10,5],[-46,22],[-41,19],[-21,22],[-5,12],[12,38]],[[33734,23421],[-43,0],[-2,0],[-110,-1],[-189,-2],[-106,-1],[-288,-3],[-614,-6],[-417,-4],[-260,-3],[-166,-1],[-245,0],[-42,0],[-51,-5],[-134,2],[-76,2],[-20,1],[-168,0],[-16,-18],[-28,-21],[-30,-16]],[[30729,23345],[-23,3],[-181,0],[-27,-1],[-41,0],[-43,0],[-37,3],[-23,-2],[-34,1],[-29,0],[-27,-1],[-32,0],[-66,1],[-89,1],[-131,0],[-80,0],[-105,1],[-50,0],[-31,0],[-60,1],[-88,0],[-75,0],[-163,0],[-36,-3],[-6,-25],[-2,-27],[-1,-44],[-147,0],[-307,1],[-21,1],[-105,0],[-50,0],[-59,0],[-132,0],[-170,1],[-130,0],[-37,1],[-34,-1],[-111,1],[-33,0],[-21,1],[-192,0],[-29,0],[-56,1],[-23,-1],[-163,1],[-122,1],[-19,0],[-113,0],[-113,1],[-109,1],[-69,0],[-259,2],[-161,-1],[-28,0],[-34,0],[-112,-7],[-23,0],[-67,0],[-39,0],[-268,-1],[-61,0],[-81,2],[-3,0],[-31,0],[-7,0],[-262,4],[-42,1],[-42,1],[-112,1],[-345,6],[-17,0],[-23,0],[-84,2],[-26,0],[-92,1]],[[24665,23273],[1,3],[14,29],[15,32],[1,2],[23,59],[9,32],[3,12],[2,6],[58,80],[2,2],[127,138],[71,28],[40,17],[-1,2],[-19,37],[-3,7],[-3,19],[-1,3],[-2,48],[-8,22],[-88,162],[-11,16],[-7,6],[-58,34],[-34,5],[-3,-1],[-2,0],[-9,5],[-7,11],[-1,2],[-1,1],[-15,42],[-15,49],[0,28],[11,34],[11,32],[12,24],[1,2],[13,10],[24,48],[18,65],[-1,14],[-5,9],[-1,3],[-4,7],[-5,8],[-8,11],[-10,14],[-7,8],[-12,16],[-22,35],[-1,13],[-2,11],[-18,20],[-24,19],[-27,13],[-8,23],[2,28],[-21,44],[-15,24],[-5,8],[-17,24],[-17,17],[-24,15],[-16,16],[-36,-6],[-28,6],[-11,36],[-13,28],[-2,27],[5,61],[-6,39],[-13,19],[-2,29],[-1,30],[2,25],[-12,23],[-14,28],[-18,15],[-1,28],[-8,38],[-21,16],[-13,23],[-16,25],[1,37],[-3,25],[-16,36],[-6,17],[-13,24],[-4,7],[-9,78],[-1,26],[-3,12],[-12,12],[-2,2],[-38,29],[-20,4],[-55,29],[-28,15],[-6,9],[-2,12],[-3,28],[-1,1],[-1,3],[-3,38],[-3,55],[0,6],[1,11],[20,138],[9,55],[24,42],[0,4],[24,95],[-1,28],[0,9],[-2,8],[-51,160],[-1,3],[-7,6],[-30,24],[-19,12],[-5,3],[-6,12],[1,19],[2,10],[5,21],[12,21],[20,18],[3,5],[14,27],[15,29],[6,11],[17,0],[18,57],[3,11],[4,13],[11,34],[24,-1],[19,40],[-11,62],[-1,5],[6,23],[32,31],[16,5],[6,9],[-1,12],[-2,19],[-3,13],[-6,13],[-7,19],[-3,6],[-10,22],[-5,11],[-10,24],[-9,66],[-15,20],[11,21],[5,28],[1,29],[-11,24],[-4,37]],[[24665,23273],[-268,-3],[-22,-1],[-92,0],[1,106],[153,0],[17,1],[83,-1],[0,102],[-42,0],[-12,0],[-199,0],[5,182],[-235,1],[0,-29],[1,-112],[-70,0],[-133,-1],[1,-120],[0,-81],[-280,0],[-1,-73],[-37,0],[-1,0],[-147,0],[1,-163],[-190,1],[-45,2],[-17,51],[-230,13],[5,185],[-226,10],[-2,-184],[-230,4],[2,50],[6,137],[-232,9],[-2,-39],[-3,-72],[0,-53],[1,-28],[-336,8],[-36,1],[-108,2],[-116,3],[-247,4],[-124,3],[-220,5],[-45,1],[-296,9],[-38,1],[-27,1],[-59,2],[-159,3],[-65,1],[-42,0]],[[20307,23211],[-168,3],[-134,3],[-58,0],[-138,3],[-75,1],[-91,2],[-476,7],[-22,1],[-119,4],[-72,-1],[-100,2],[-33,1],[-79,2],[-64,1],[-4,1],[-24,0],[-42,1],[-68,0],[-29,1],[-22,-1],[-48,2],[-26,1],[-54,1],[-63,2],[-5,0],[-62,2],[-26,0],[-96,2],[-159,3],[-243,3],[-78,0],[-241,3],[-78,0],[-28,1],[-38,0],[-26,0],[-24,0],[-69,2],[-2,42],[-2,30],[-18,24],[-4,5],[-5,15],[-4,15],[-4,25],[-22,20],[-4,28],[3,58],[16,32],[0,25],[41,18],[-17,19],[-11,26],[-7,22],[-10,21],[-17,19],[-20,27],[-17,17],[-74,20],[-29,9],[-65,39],[-7,27],[-1,3],[-10,32],[-6,30],[-21,16],[-13,26],[-23,12],[-12,29],[-6,19],[-5,14],[-15,30],[5,1],[16,1],[37,10],[56,0],[33,-2],[34,-1],[45,19],[2,60],[2,136],[7,170],[-1,185],[0,24],[-43,1],[-97,0],[-81,1],[1,-41],[4,-77],[0,-89],[-116,-2],[-102,-1],[-52,-1],[0,45],[-1,140],[0,22]],[[47567,24117],[-1,-27],[-1,-10],[0,-24],[-4,-82],[-1,-33],[-2,-45],[-42,-15],[-66,-1],[-26,0],[-70,-1],[-37,0],[-23,0],[-48,0],[-80,0],[-66,1],[-65,0],[-85,1],[-29,0],[-1,-32],[-1,-30],[-1,-87],[-2,-86],[-1,-37],[-1,-33],[0,-29],[-1,-29],[-5,-232],[0,-21],[-1,-14],[-1,-50],[-1,-60],[-1,-81],[-3,-86],[0,-59],[-1,-29],[-1,-20],[0,-42],[-1,-31],[-1,-25],[-2,-116],[-1,-40],[0,-35],[-1,-54],[-1,-18],[-45,0],[-26,-1],[-29,-1],[-69,-2],[-29,0],[-94,2],[-1,-116],[-2,-71],[-1,-77],[-62,3],[-84,4],[-35,1],[-21,0],[-104,0],[-1,-62],[-4,-129],[-1,-47],[-1,-36],[-44,-1],[-111,-4],[-131,-4],[-35,-3],[-1,-130],[-1,-100],[0,-43],[-41,3],[-28,1],[-50,3],[-27,2],[-58,2],[-16,1],[-5,0],[-50,3],[-31,1],[0,-24],[0,-9],[-2,-27],[-1,-52],[0,-10],[-1,-35],[-2,-94],[-1,-34],[-25,-2],[-29,-2],[-36,-3]],[[45557,21412],[-81,-6],[-31,-2],[-31,-2],[-32,-2],[-42,-3],[-4,-84],[-4,-80],[-4,-72],[-3,-57],[-34,-8],[-48,-10],[-58,-11],[-50,-12],[-34,-6],[-87,-17],[-5,-63],[0,-53],[0,-24],[-21,-6],[-32,0],[-56,1],[-80,2],[-58,1],[-34,1],[-24,0],[-6,1],[-38,0],[-25,1],[-44,0],[-24,1],[-4,0],[-97,3],[-108,3],[-81,2],[-34,1],[-29,0],[-24,0],[-92,2],[-31,1],[-25,-1],[-24,3],[-28,1],[-71,1],[-1,0]],[[43918,20918],[-49,2],[-74,2],[-91,2],[-39,0],[-22,1],[-26,1],[-50,1],[-89,2],[-38,2],[-24,1],[-44,1],[-38,1],[-139,4],[-61,2],[-54,2],[-50,1],[-36,1],[-32,0],[-23,1],[-49,-1],[-37,3],[-22,1],[-27,1],[-91,3],[-59,0],[-50,3],[-23,0],[-70,2],[-72,2],[-108,2],[-35,1],[-99,5],[-28,-1],[-71,2],[-23,0],[-41,1],[-53,0],[-84,3],[-26,1],[-38,1],[-38,1],[-18,0],[-10,0],[-52,1],[-34,1],[-28,1],[-21,0],[-22,0],[-1,0],[-29,1],[-86,1],[-40,0],[-36,1],[-3,0],[-22,0],[-71,2],[-43,0],[-31,1],[-48,1],[-123,1],[-38,1],[-89,1]],[[74809,21906],[0,-11],[1,-1],[17,-26],[13,-15],[16,-29],[1,-7],[-3,-31],[-21,-4],[-6,-1],[-15,-93],[0,-5],[-1,-4],[1,-17],[10,-14],[35,-57],[83,-82],[15,-15],[-4,-22],[-5,-39],[-10,-62],[49,-12],[2,-1],[74,-58],[3,-2],[1,-1],[1,-2],[49,-92],[38,-71],[13,-27],[8,-18],[8,-18],[3,-7],[26,-59],[6,-16],[21,-52],[6,-15],[1,-1],[5,-7],[51,-33],[23,-15],[15,-9],[7,-5],[23,-14],[16,-17],[28,-66],[0,-5],[-11,-17],[-2,-4],[-6,-4],[0,-4],[30,-27],[4,-3],[46,-41],[1,-1],[70,-61],[16,-15],[49,-22],[12,-4],[11,1],[6,2],[10,1],[3,3],[2,1],[13,13],[0,-22],[0,-6],[47,-22],[47,-16],[26,-9],[14,1],[4,0],[2,0],[20,7],[-3,-25],[-11,-42],[-6,-24],[-10,-37],[-6,-25],[-7,-24],[-2,-9],[-7,-33],[-8,-26],[-7,-26],[-11,-47],[-8,-30],[-6,-22],[-5,-21],[-63,-43],[-4,0],[-9,1],[-15,-3],[-19,-8],[-67,-29],[-1,0],[-10,-5],[-10,-11],[0,-2],[-1,-6],[0,-2],[1,-3],[6,-10],[0,-22],[-10,-41],[-6,-7],[-4,-5],[-19,-22],[-29,-32],[-4,-5],[-33,-36],[-10,-7],[-20,-11],[-11,-3],[-7,0],[-9,0],[-5,6],[1,6],[21,10],[12,15],[2,10],[-4,3],[-9,5],[-75,9],[-33,4],[-54,7],[-23,-25],[-2,-2],[-32,-29],[-3,-2],[-33,8],[-48,12],[-1,0],[-33,6],[-55,9],[-14,-5],[-24,-18],[-54,-38],[-43,-31],[-1,0],[-6,-4],[-16,0],[-22,10],[-49,20],[-8,3],[-2,1],[-121,-41],[-6,-1],[-80,-10],[-21,10],[-34,15],[-3,1],[-37,15],[-6,3],[-41,16],[-34,12],[0,-1],[-16,-33],[-18,-38],[-2,1],[-68,20],[-5,2],[-13,9],[-56,41],[-2,1],[-41,-8],[-65,-13],[-52,-11],[-9,-4],[-50,-25],[-34,-24],[-11,-2],[-11,6],[-3,2],[-4,9],[0,33],[0,6],[-3,8],[-11,12],[-12,5],[-57,4],[-13,-4],[-27,-7],[-1,0],[-74,-6],[-5,0],[-57,8],[-6,1],[-28,-4],[-7,-3],[-78,-34],[-5,-2],[-23,-23],[-29,-11],[-27,-3],[-53,13],[-12,2],[-78,-13],[-16,-3],[-10,-3],[-21,-11],[-9,-6],[-140,-119],[-45,-55],[1,-7],[2,-5],[16,-16],[1,0],[0,-8],[-3,-6],[-2,-3],[-14,-9],[-18,-10],[-33,-18],[-4,-2],[-12,-6],[-19,-4],[-53,-10],[-44,-9],[-37,0],[-2,17],[-11,8],[-10,3],[-95,10],[-10,-12],[-18,-21],[-36,-39],[-30,-33],[-5,-5],[-19,-16],[-2,-3],[0,-10],[3,-5],[5,-10],[16,-17],[4,-1],[3,-1],[11,4],[15,16],[13,6],[15,-5],[8,-6],[4,-10],[0,-5],[0,-3],[1,-5],[-1,-2],[-6,-9],[-9,-10],[-15,-3],[-1,0],[-23,8],[-8,2],[-10,-1],[-7,-5],[-11,-19],[1,-43],[7,-33],[13,-26],[9,-10],[9,-11],[1,0],[8,-63],[7,-53],[-6,-10],[-12,-11],[-4,-3],[-5,-4],[-85,-43],[15,-63],[1,-4],[1,-11],[2,-23],[5,-38],[-1,-17],[0,-2],[-20,12],[-17,11],[-1,0],[-39,15],[-9,0],[-3,-3],[-4,-8],[-1,-9],[7,-42],[11,-13],[1,-4],[1,-6],[-27,-44],[-10,-10],[-12,-9],[-40,-28],[-21,-15],[-20,-12],[-17,-6],[-8,-1],[-6,-1],[-53,-7],[-6,-1],[-10,-14],[-17,-22],[-7,-10],[-10,-14],[-27,-36],[-35,19],[-2,1],[-22,6],[-37,10],[-5,1],[-41,12],[-6,1],[-32,13],[-2,1],[-36,-14],[-1,0],[2,-16],[0,-2],[-2,-7],[-6,-11],[-24,-28],[-23,-18],[-22,-10],[-38,-1],[-51,-23],[-11,-6],[-129,-113],[-60,-52],[-24,-21],[-6,0],[-7,1],[-37,15],[-1,2],[-1,2],[-2,3],[-13,41],[0,7],[3,4],[-65,55],[-63,53],[-196,97],[-1,0],[-1,1],[-9,4],[-74,14],[-13,-2],[-13,-6],[-34,-34],[-3,-1],[-4,-2],[-12,0],[-1,1],[-3,0],[-75,14],[-18,4],[-7,8],[0,11],[8,11],[26,27],[7,4],[14,3],[-1,5],[-1,1],[-60,44],[-12,6],[-11,2],[-135,-9],[-114,-23],[-23,-12],[-20,-16],[-4,-6],[-2,-4],[-12,-7],[-76,5],[-1,0],[-16,1],[-32,6],[-19,3],[-116,23],[-9,1],[-6,2],[-9,7],[0,6],[-1,20],[-6,6],[-9,6],[-12,3],[-14,-3],[-20,-8],[-12,-10],[-17,-19],[-18,-15],[-13,-3],[-13,1],[-112,4],[-69,3],[-6,1],[-26,10],[-45,18],[-64,25],[-12,4],[-34,27],[-11,8],[1,22],[-9,4],[-50,22],[-6,2],[-17,7],[-2,1],[-36,-4],[-6,-1],[-1,-13],[-13,-12],[-25,-14]],[[69659,18689],[-20,-3],[-10,-1],[-8,1],[-7,1],[-2,3],[-13,10],[0,12],[9,19],[2,3],[-91,14],[-8,1],[-42,-1],[-13,-1],[-2,0],[-31,-7],[-72,-17],[-8,-4],[-16,-8],[-23,0],[-9,1],[-141,15],[-32,3],[-31,3],[-27,3],[-13,2],[-2,1],[-9,8],[-3,7],[1,10],[6,10],[7,2],[4,-1],[4,-2],[11,-5],[14,2],[9,4],[2,3],[5,6],[-1,1],[0,4],[-1,8],[0,1],[-35,50],[-6,7],[-8,5],[-52,65],[-4,4],[-40,53],[0,1],[-4,4],[-2,3],[-34,45],[-35,46],[-66,-49],[-3,-3],[-102,33],[-19,6],[-6,2],[-3,1],[-5,1],[-9,8],[0,4],[15,10],[12,11],[0,17],[-6,17],[-5,8],[-1,1],[-5,4],[-3,2],[-1,1],[-15,5],[-42,3],[-9,4],[-8,4],[-34,29],[-24,20],[-7,7],[0,23],[-1,8],[-3,21],[-2,8],[-1,3],[-3,2],[-12,14],[-13,7],[-58,36],[-4,1],[-12,-4],[-22,-14],[-16,1],[-54,37],[-29,20],[-2,1],[-2,19],[-4,15],[-3,5],[-25,43],[-3,6],[-1,2],[-4,3],[-4,4],[-8,4],[-9,0],[-25,11],[-4,4],[-16,15],[-17,15],[-2,2],[-16,18],[-58,65],[-32,46],[-161,169],[-3,4],[5,69],[13,47],[8,25],[0,1],[21,29],[1,3],[0,7],[0,1],[-16,14],[-6,6],[-124,71],[-1,0],[-7,4],[-49,12],[-2,1],[-10,1],[-17,-2],[-3,-1],[-7,2],[-13,3],[-55,2],[-27,1],[-14,5],[-4,5],[-33,79],[-26,37],[0,37],[-1,44],[-1,31],[0,55],[0,58],[-1,24],[0,14],[-1,21],[0,1],[0,35],[-2,42],[0,41],[-1,28],[0,15],[0,10],[0,47],[0,23],[-1,38],[-1,71],[0,45],[-1,32],[-2,27],[1,58],[-1,28],[0,35],[-1,55],[-2,85],[0,28],[0,15],[-1,28],[-1,43],[0,32],[-1,43],[0,25],[0,1],[0,51],[-2,104],[-24,0],[-1,9],[-2,83],[-100,3],[-176,4],[0,32],[-3,257],[-26,1],[-57,2],[-24,0],[-64,1],[-122,1],[-1,45],[3,214],[212,0],[83,0],[2,31],[1,9],[-1,32],[0,11],[0,78],[3,34],[-1,34],[-2,24],[-2,25],[-209,0],[-103,4],[3,155],[-2,43],[2,84]],[[20307,23211],[-4,-69],[-2,-36],[0,-53],[0,-59],[-5,-189],[-5,-196],[-2,-131],[-1,-41],[1,-52],[-4,-121],[0,-23],[-1,-22],[-2,-44],[0,-157],[-17,0],[0,-3],[2,-166],[29,-9],[3,-78],[-1,-49],[0,-34],[1,-67],[-1,-182],[-5,-111],[0,-94],[30,0],[192,-2],[1,-30],[1,-96],[0,-78],[-155,0],[-41,1],[-24,-1],[-6,-124],[-1,-49],[0,-25],[-27,0],[-2,-95],[-3,-127],[-36,-2],[0,-84],[-5,-118],[-1,-40],[2,-32],[6,-79],[1,-3],[-1,-49],[2,-125],[-2,-132],[3,-201],[-1,-37],[-3,-111],[-1,-28],[0,-72],[-1,-41]],[[20221,19445],[0,-53],[-143,3],[-264,4],[-1,53],[-71,2],[-111,1],[-61,1],[0,-50],[-34,-1],[-39,0],[-49,1],[-28,0],[-46,1],[-25,1],[0,-126],[-43,3],[-188,3],[1,27],[0,28],[0,29],[0,42],[-28,3],[-200,0],[-2,-124],[-94,-1],[-78,2],[-124,1],[-31,1],[-27,1],[-22,1],[-27,0],[-25,0],[-56,0],[-4,0],[-47,2],[-22,-1],[-32,1],[-86,1],[-1,129],[-227,3],[-3,-128],[-64,2],[-35,1],[-35,0],[-194,3],[-84,2],[-41,1],[-300,5],[-11,0],[-4,0],[-102,2],[-272,4],[-236,5],[-144,3],[-463,11],[-21,0],[-234,5],[-233,5],[-127,3],[-57,2],[-197,5],[-155,4],[-194,5],[-130,3],[-87,3],[-129,-5],[-4,-120],[-4,-98],[-1,-30],[-7,-311],[-3,-168],[-2,-167],[-3,-33],[-9,-134],[-3,-100],[-1,-63],[-4,-268],[0,-37],[-1,-59],[-2,-60],[-1,-58],[-1,-30],[-1,-35],[-1,-24],[0,-2],[-2,-43],[-5,-156],[-1,-39],[-4,-149],[-6,-219],[-4,-118],[-5,-228],[-2,-56],[0,-2],[-9,-263],[3,-58],[0,-37],[-2,-40],[-1,-42],[-1,-21],[0,-11],[-1,-33],[-1,-29],[-1,-23],[-2,-44],[-2,-51],[-1,-48],[-4,-70],[-6,-365]],[[14329,15432],[-197,5],[-49,4],[-167,5],[-91,0],[-60,2],[-112,3],[-24,1],[-17,0],[-120,3],[-23,1],[-119,3],[-109,4],[-172,6],[-31,1],[-42,1],[-292,8],[-43,5],[-228,7],[-70,2],[-235,3],[-27,2]],[[12101,15498],[20,19],[49,147],[-12,60],[-33,79],[-21,93],[-29,82],[-57,70],[-39,62],[1,6],[-7,45],[1,38],[-28,37],[-59,33],[-79,34],[-30,24],[-73,80],[-17,12],[-36,8],[-57,12],[-2,3],[-34,63],[-43,79],[-37,68],[-37,59],[-36,156],[-10,24],[-11,12],[0,13],[-21,40],[-14,16],[-34,21],[-30,26],[-41,45],[-30,53],[-90,97],[-16,34],[-17,19],[-53,29],[-64,21],[-17,-4],[-194,21],[-1,0],[-3,0],[-2,0],[-14,-1],[-8,0],[-1,0],[-4,0],[-4,0],[-3,1],[-3,1],[-42,10],[-4,1],[-3,2],[-4,1],[-2,1],[-38,22],[-1,1],[-3,2],[-3,2],[-3,2],[-3,3],[-2,3],[-3,3],[-2,3],[-1,2],[-16,27],[-2,3],[-1,4],[-2,3],[-1,4],[-1,4],[0,3],[-1,4],[0,5],[1,38],[0,3],[0,3],[1,5],[20,95],[3,27],[1,4],[1,4],[1,3],[1,3],[3,8],[20,52],[2,5],[2,4],[2,3],[1,4],[3,3],[-29,92],[-32,35],[-43,31],[-46,7],[-47,46],[3,26],[8,34],[-4,45],[-6,9],[-1,41],[16,121],[12,37],[16,22],[51,56],[75,65],[20,28],[11,54],[-9,109],[5,37],[8,11],[19,71],[6,73],[-35,109],[-46,60],[-26,52],[-6,6],[-46,113],[-9,57],[-26,52],[-9,10],[-28,67],[-5,41],[-14,39],[-58,83],[-1,8],[0,21],[-21,69],[17,127],[2,70],[-9,30],[-38,44],[1,35],[21,30],[52,39],[31,9],[13,2],[6,1],[25,1],[34,5],[60,7],[40,28],[7,5],[42,31],[30,21],[7,5],[48,34],[65,87],[19,39],[35,140],[23,173],[-18,1],[18,54],[48,80],[2,15],[15,16],[10,22],[4,35],[4,128],[-13,80],[-8,15],[-35,36],[-35,31],[-17,30],[-7,27],[3,20],[8,8],[29,73],[11,84],[3,69],[9,46],[0,100],[-17,22],[-23,8],[-73,4],[-22,32],[-5,65],[7,81],[61,128],[52,94],[1,6],[22,91],[16,42],[37,58],[33,72],[18,136],[12,34],[15,26],[39,59],[10,98],[-18,66],[-21,43],[-17,75],[41,60],[12,13],[20,51],[7,78],[-5,12],[11,84],[16,42],[12,16],[29,18],[26,-9],[36,-32],[19,-2],[28,16],[30,36],[13,28],[6,56],[-8,26],[6,151],[-32,161],[-42,89],[-1,140],[-15,43],[-11,13],[-26,134],[12,36],[47,104],[21,82],[7,5],[47,124],[19,22],[51,56],[24,56],[0,26],[12,37],[32,52],[45,90],[30,60],[2,3],[19,24],[21,39],[50,68],[40,81],[16,19],[42,70]],[[51728,22920],[18,-52],[9,-16],[12,-16],[14,-14],[22,-43],[2,-15],[-2,-24],[-6,-41],[-2,-7],[-5,-8],[-21,-10],[-34,-37],[-3,-29],[-11,-28],[-1,-13],[6,-15],[17,-44],[3,-5],[47,-42],[33,-13],[35,-14],[21,-8],[16,-6],[2,-1],[30,-16],[65,-35],[16,-9],[3,-1],[44,-24],[6,-4],[50,3],[3,0],[9,-1],[11,-9],[29,-38],[2,-1],[7,-7],[35,-30],[6,-6],[1,0],[17,-6],[8,-2],[4,-7],[5,-10],[10,-25],[-1,-16],[-9,-45],[-1,-4],[-8,-76],[2,-5],[3,-3],[7,-8],[3,-2],[2,-2],[22,-12],[49,-27],[-3,-15],[-8,-50],[-1,-5],[1,-34],[4,-29],[2,-11],[26,-44],[41,-25],[11,-14],[15,-18],[23,-29],[183,-100],[-24,-53],[-24,-53],[-3,-7],[-1,-2],[7,-6],[13,-10],[49,-39],[164,-74],[10,-18],[1,-1],[6,-8],[4,-7],[16,-15],[1,-1],[12,-4],[38,3],[8,4],[30,58],[2,3],[4,-1],[63,-18],[11,-2],[48,-45],[16,-14],[80,-70],[13,-12],[47,-41],[16,-25],[18,-28],[4,-7],[13,-33],[2,-1],[48,-24],[21,-10],[1,-1],[86,-85],[4,-5],[1,-5],[1,0],[0,-1],[6,-84],[2,-31],[0,-12],[0,-8],[1,-20],[5,-154],[0,-1],[0,-79],[0,-17],[3,-27],[4,-23],[-17,-29],[-1,-19],[0,-8],[0,-7],[0,-6],[1,-1],[11,-4],[48,-18],[15,-9],[35,-22],[16,-10],[18,-10],[8,-5],[9,-6],[4,-7],[4,-10],[55,-114],[14,-30],[2,-4],[14,-25],[13,-23],[1,-2],[28,-50],[-9,-7],[-17,-12],[-4,-27],[-3,-18],[-4,-19],[-5,-33],[2,-2],[1,-1],[5,-2],[4,-3],[24,-8],[50,-17],[25,-9],[16,-5],[48,-17],[40,7],[4,-2],[31,-56],[0,-2],[15,-41],[-8,-28],[-5,-19],[-14,-48],[-7,-18],[-11,-26],[-14,-26],[-40,-34],[-33,-11],[-10,-5],[-10,-10],[-3,-9],[3,-57],[30,-40],[17,-26],[0,-1],[22,-81],[0,-3],[-14,-18],[-2,-2],[-5,-3],[-4,-1],[-1,1],[-7,10],[-18,-18],[-1,-1],[-11,-18],[-95,-153],[-14,-30],[-2,-8],[-12,-62],[-3,-13],[-6,-31],[-22,-112],[-14,-36],[-5,-14],[-14,-36],[-3,-7],[-27,-69],[-12,-15],[13,4],[37,10],[7,0],[7,-4],[3,-4],[74,-109],[3,-5],[1,-8],[-1,-5],[-9,-38],[-5,-19],[-1,-4],[-11,-46],[-4,-15],[-6,-7],[-25,-18],[-12,-9],[-1,-1],[-15,-23],[-12,-20],[-4,-7],[-31,-57],[-1,-9],[5,-43],[8,-26],[5,-15],[58,-63],[12,-1],[27,-1],[2,-1],[7,-1],[3,-2],[6,-3],[0,-5],[-1,-6],[-1,-32],[-1,-10],[-2,-43],[-1,0],[-7,-5],[-19,-4],[-6,-4],[-15,-47],[-1,-16],[16,-10],[3,-2],[8,-5],[24,-26],[6,-86],[-5,-11],[-3,-5],[-20,-42]],[[53692,17823],[-16,-61],[0,-1],[-18,-72],[-4,-4],[-10,-15],[0,-3],[0,-2],[6,-5],[1,-1],[46,-18],[10,-3],[8,5],[9,3],[10,1],[17,-7],[11,-10],[3,-5],[2,-13],[-12,-47],[-1,-1],[-1,-1],[-20,-13],[1,-2],[1,-2],[1,-2],[1,-1],[31,-17],[10,-6],[7,2],[6,9],[9,6],[11,2],[9,-2],[4,-4],[11,-36],[2,-13],[-4,-18],[-2,-5],[-3,-10],[-26,-29],[-8,-11],[-2,-9],[2,-3],[6,-6],[22,-24],[4,-7],[28,-53],[2,-4],[-10,-45],[-2,-10],[-4,-15],[-5,-23],[-6,-25],[33,-10],[6,-2],[-3,-15],[-11,-57],[-1,-13],[19,-50],[0,-1],[2,-11],[-75,0],[-243,1],[-35,0],[-195,1],[-15,0],[-11,0],[-220,0],[-78,0],[-41,0],[-41,0],[-63,0],[-1,0],[-39,0],[-64,1],[-144,0],[-223,2],[-86,1],[-154,1],[-41,1],[-72,0],[-33,0],[-187,1],[-84,0],[-310,1],[-8,0],[-175,1],[-24,0],[-2,-101],[2,-213],[0,-124],[1,-36],[-7,-257],[-3,-70],[0,-2],[-2,-73],[-1,-22],[-3,-78],[-1,-26],[-1,-32],[-1,-34],[-2,-49],[-5,-147],[0,-11],[-1,-25],[-1,-25],[-1,-36],[0,-3],[-9,-249],[-1,-36],[-3,-56],[-2,-52],[0,-3],[-3,-66],[-43,0],[-23,0],[-34,-1],[-90,0],[-133,-1],[-188,-1],[-29,-1],[-21,0],[-26,0],[-32,0],[-24,0],[2,-53],[-2,-74],[-1,-31],[-1,-51],[0,-43],[0,-26],[2,-49],[2,-41],[2,-27],[0,-28],[0,-29],[0,-50],[-1,-23],[0,-33],[0,-28],[-1,-29],[0,-32],[-1,-34],[-1,-37],[0,-51],[-1,-21]],[[50522,14419],[-125,2],[-387,8],[-35,0],[-255,5],[-170,4],[-118,2],[-99,1],[-153,2],[-100,2],[-148,2],[-146,3],[-34,0],[-176,6],[-84,3]],[[48492,14459],[5,6],[57,90],[0,3],[-5,6],[-5,5],[-8,15],[0,1],[1,1],[7,17],[65,89],[28,22],[0,1],[6,-1],[2,-1],[0,-1],[11,-26],[50,37],[14,11],[4,6],[2,9],[-9,23],[-7,15],[-10,24],[-6,6],[-6,5],[-1,1],[0,1],[-3,5],[-4,12],[0,2],[0,43],[1,11],[5,33],[7,53],[0,1],[6,11],[6,10],[55,99],[18,32],[7,21],[6,20],[0,1],[5,20],[4,15],[5,20],[1,7],[-3,6],[-1,1],[-19,18],[-11,8],[-12,9],[-112,72],[-5,1],[-21,5],[-18,5],[-101,22],[-15,-3],[-3,-1],[-10,-4],[-10,1],[-3,2],[4,45],[1,15],[7,97],[0,2],[1,10],[4,12],[1,4],[4,6],[9,8],[4,4],[-4,1],[-34,14],[-30,25],[-41,34],[-47,39],[0,3],[-14,65],[0,2],[-10,47],[-114,19],[-1,1],[0,-2],[-1,-11],[-1,-1],[-17,-8],[-42,-1],[-11,0],[-22,10],[-1,1],[-13,10],[-123,124],[-21,21],[-7,33],[-4,15],[-7,29],[-4,17],[-22,118],[-3,26],[-2,15],[1,1],[1,6],[3,16],[3,10],[5,23],[7,36],[2,6],[0,3],[5,36],[-10,16],[5,44],[4,20],[1,4],[1,4],[15,59],[11,20],[6,8],[9,4],[1,0],[28,5],[6,3],[5,3],[1,0],[57,60],[17,22],[32,88],[2,8],[11,49],[51,136],[1,1],[46,75],[18,21],[3,3],[30,33],[3,11],[5,21],[-1,1],[-6,19],[-1,5],[2,31],[1,14],[4,24],[-1,56],[-25,70],[-2,4],[-7,36],[12,77],[1,30],[-1,17],[-9,9],[0,1],[-12,11],[-5,5],[-17,13],[-16,6],[-17,3],[-29,1],[-41,5],[-49,20],[-8,5],[-53,39],[-8,9],[-1,4],[-1,14],[0,2],[-28,22],[-52,39],[-1,2],[-6,10],[-10,13],[-4,7],[-58,39],[-14,8],[-35,53],[-8,15],[-2,2],[-4,8],[-4,9],[-19,47],[-7,12],[-1,0],[-43,60],[-1,1],[-41,34],[6,26],[2,11],[20,158],[2,24],[-11,90],[-5,14],[-2,7],[2,10],[7,41],[5,26],[12,67],[8,45],[0,1],[-5,3],[-29,18],[-1,11],[-3,44],[-13,25],[-4,9],[-22,16],[-19,16],[-2,3],[-2,1],[-3,18],[-2,6],[-4,23],[-2,10],[1,30],[3,2],[2,2],[9,16],[24,49],[52,126],[-2,73],[0,2],[-21,51],[-5,9],[-14,26],[-12,21],[-5,7],[-19,17],[-69,44],[-21,12],[-55,48],[-17,15],[-5,4],[-24,9],[-30,11],[-4,2],[-14,-5],[-22,-9],[-5,-2],[-1,0],[-29,-9],[-98,-23],[-3,-1],[-6,0],[-140,-12],[-3,-1],[-79,3],[-4,0],[-129,53],[-34,14],[-6,3],[-132,65],[-9,9],[0,1],[-24,22],[-3,3],[-23,17],[-14,10],[-13,-1],[-8,0],[-19,8],[-1,0],[-1,1],[-13,12],[-3,10],[-4,9],[-10,20],[-39,85],[-2,3],[-8,4],[-1,0],[-8,5],[-35,23],[-6,4],[-9,10],[-1,1],[-1,2],[-8,11],[-3,7],[-7,6],[-114,110],[-7,3],[-12,0],[-25,0],[-7,3],[-2,2],[-12,10],[-4,7],[-1,2],[-10,20],[-4,12],[-10,24],[-2,4],[-50,97],[-4,4],[-12,14],[-42,47],[-1,1],[-36,23],[-20,3],[-3,2],[-14,8],[-1,1],[-2,2],[-16,22],[-3,5],[-4,7],[-1,5],[0,5],[-6,13],[-43,42],[-82,53],[-10,6],[-16,5],[-15,6],[-28,-2],[-5,-1],[-44,-9],[-100,35],[-3,3],[-10,12],[-32,37],[-6,7],[-3,6],[-36,73],[-5,14],[0,3],[-1,103],[0,2],[0,1],[1,11],[4,13],[1,1],[1,2],[3,5],[9,12],[12,21],[1,12],[-4,11],[-4,6],[-54,41],[-6,3],[-13,7],[-4,4],[-3,3],[-10,9],[-7,13],[-1,5],[-3,47],[0,13],[5,13],[8,16],[15,7],[13,5],[14,12],[1,0],[4,6],[3,9],[13,74],[0,11],[-4,16],[-7,9],[-13,12],[-6,6],[-2,2],[-2,3],[0,1],[2,11],[8,13],[1,3],[5,3],[62,35],[10,10],[7,11],[6,32],[-6,62],[-6,15],[-11,84],[3,22],[5,21],[0,2],[-16,63],[-8,8],[-3,4],[-4,7],[-2,4],[-1,18],[3,18],[-3,18]],[[69659,18689],[6,-30],[11,-54],[7,-36],[15,-93],[1,-42],[0,-43],[0,-30],[0,-37],[0,-91],[0,-70],[0,-22],[-1,-37],[0,-37],[0,-49],[60,-28],[36,-11],[22,-7],[51,-15],[51,-15],[42,-12],[41,-13],[36,-10],[45,-13],[74,-23],[58,-18],[38,-11],[82,-24],[43,-14],[28,-11],[38,-26],[20,-15],[23,-18],[42,-30],[26,-20],[22,-16],[25,-18],[31,-24],[36,-26],[49,-37],[32,-24],[26,-18],[28,-14],[25,-8],[35,-6],[27,-1],[32,3],[35,6],[65,9],[44,7],[168,25],[49,6],[0,-3],[1,-60],[-1,-31],[0,-53],[0,-21],[0,-24],[1,-35],[0,-39],[0,-40],[0,-28],[-1,-32],[0,-33],[1,-38],[0,-26],[1,-61],[2,-85],[0,-31],[0,-43],[1,-33],[0,-59],[1,-42],[-1,-27],[1,-57],[0,-38],[1,-42],[0,-24],[-1,-61],[0,-85],[1,-42],[0,-23],[1,-71],[0,-58],[0,-96],[1,-25],[0,-30],[0,-1],[1,-94],[0,-94],[1,-41],[0,-1],[0,-42],[1,-49],[0,-36],[33,-28],[44,-37],[84,-70],[73,-61],[24,-20],[24,-20],[41,-35],[42,-34],[24,-21],[27,-22],[19,-16],[28,-23],[88,-74],[55,-44],[25,-21],[22,-18],[59,-50],[45,-37],[30,-24],[20,-17],[21,-18],[41,-34],[34,-27],[33,-28],[85,-103],[15,-18],[32,-39],[35,-42],[14,-18],[17,-20],[26,-32],[44,-53],[14,-17],[50,-61],[16,-19],[20,-24],[33,-40],[23,-29],[18,-22],[17,-21],[23,-26],[24,-31],[26,-31],[18,-23],[86,-106],[34,-40]],[[72901,14100],[-41,0],[-6,0],[-16,0],[-27,1],[-28,0],[-4,0],[-55,0],[-19,0],[-98,1],[-59,-1],[-78,1],[-1,0],[-49,0],[-49,0],[-51,0],[-66,1],[-60,0],[-94,1],[-23,0],[-10,0],[-308,2],[-55,0],[-82,0],[-252,5],[-147,2],[-48,0],[-41,1],[-69,1],[-168,4],[-51,0],[-68,1],[-704,12],[-25,0],[-56,1],[-23,0],[-53,1],[-91,1],[-59,1],[-23,0],[-33,1],[-44,1],[-49,1],[-159,4],[-49,1],[-115,3],[-58,1],[-40,2],[-20,0],[-58,1],[-233,6],[-117,1],[-59,2],[-59,0],[-49,0],[-69,0],[-57,-1],[-87,0],[-32,0],[-59,0],[-43,0],[-15,1],[-61,-1],[-58,1],[-21,0],[-32,0],[-28,0],[-51,0],[-37,1],[-57,0],[-33,0],[-26,1],[-57,1],[-43,0],[-126,0],[-116,-1],[-30,0],[-74,0],[-27,0],[-37,0],[-57,0],[-32,0],[-154,1],[-36,-1],[-25,0],[-80,0],[-1,-30],[0,-53],[0,-62],[0,-65],[1,-50],[0,-35],[0,-41],[1,-8],[1,-34],[1,-125],[3,-125],[2,-90],[1,-52],[1,-25],[0,-82],[0,-24],[0,-145],[0,-137],[0,-72],[-1,-60],[-4,-123],[-9,-249],[0,-35],[-2,-36],[-2,-40],[-3,-65],[-2,-72],[-3,-69],[0,-35],[-4,-72],[-2,-72],[-3,-72],[-2,-72],[-2,-36],[-1,-36],[-8,-215],[0,-26],[-2,-65],[-2,-35],[-1,-27],[-1,-35],[-1,-28],[-4,-98],[-2,-46],[-1,-26],[0,-26],[-3,-56],[-1,-30],[-2,-49],[-5,-138],[-2,-48],[-1,-31],[-1,-37],[-2,-63],[-2,-36],[-1,-37],[-5,-130],[-2,-45],[-6,-158],[-1,-22],[0,-24],[-6,-118],[-3,-91],[-1,-53],[-4,-71],[-3,-107],[-6,-142],[-1,-10],[-1,-63],[-2,-44],[-2,-37],[-1,-34],[97,-2],[99,-2],[50,-1],[195,-3],[289,-5],[50,-4],[8,1],[23,2],[36,-1],[29,-1],[28,-1],[23,-1],[3,0],[45,-1],[17,0],[21,-1],[27,0],[117,-1],[29,-1],[39,-1],[26,-1],[56,-1],[218,-3],[101,-2],[101,-1],[24,-1],[109,-2],[122,-2],[56,-1],[280,-5],[96,-1],[114,-2],[178,-3],[193,-3],[243,-5],[50,0],[49,-1],[117,-2],[75,-1],[23,-1],[47,-1],[124,-3],[91,-1],[155,-2],[51,-2],[95,-1],[105,-2],[100,-2],[82,-2],[34,0],[26,-1],[25,-1],[33,0],[30,-1],[35,0],[79,-2],[45,0],[51,-2],[387,-7],[48,-2],[135,-32],[94,-22],[97,-23],[89,-22],[46,-12],[99,-22],[34,-9],[-50,-174],[-41,-136],[-8,-28],[-8,-26],[-14,-50],[-32,-109],[-30,-107],[-11,-34],[-14,-48],[-6,-22],[-31,-107],[-21,-71],[-10,-36],[-9,-28],[-10,-35],[-7,-24],[-11,-38],[-18,-61],[-10,-35],[-11,-35],[-11,-38],[-19,-66],[-10,-35],[-32,-106],[-6,-23],[-11,-37],[-8,-24],[-9,-32],[-8,-27],[-10,-35],[-20,-67],[-26,-88],[-6,-22],[-41,-140],[-62,-210],[-20,-70],[-32,-106],[-9,-36],[-30,-98],[-13,-43],[-20,-70],[-21,-72],[-42,-143],[-20,-67],[-12,-41],[-40,-140],[-22,-71],[-7,-24],[-34,-118],[-11,-36],[-26,-89],[-11,-36],[-15,-53],[-19,-69],[-31,-105],[-7,-23],[-21,-76],[-18,-61],[-11,-36],[-4,-14],[-11,-37],[-11,-38],[-11,-28],[-42,-140],[-10,-34],[-21,-74],[-11,-35],[-20,-71],[-4,-14],[-24,-83],[-14,-59],[-9,-31],[-46,-152]],[[71158,4580],[-185,13],[-27,1],[-78,6],[-4,1],[-27,2],[-65,5],[-97,6],[-36,2],[-41,4],[-43,3],[-23,1],[-43,2],[-69,6],[-60,6],[-115,7],[-106,6],[-66,6],[-10,1],[-33,3],[-70,4],[-96,7],[-31,2],[-55,3],[-34,2],[-8,1],[-35,1],[-83,5],[-114,8],[-118,9],[-21,1],[-38,3],[-110,7],[-9,1],[-30,1],[-247,17],[-447,29],[-328,21],[-96,7],[-49,3],[-34,2],[-39,3],[-85,6],[-72,3],[-149,10],[-41,3],[-27,2],[-22,1],[-24,2],[-58,4],[-38,2],[-28,2],[-59,4],[-184,10],[-27,2],[-165,11],[-87,6]],[[66872,4866],[2,47],[1,27],[2,62],[1,39],[-1,89],[-2,165],[-1,94],[1,71],[0,24],[0,57],[-115,-2],[-139,-4],[-2,87],[-3,97],[0,32],[-1,54],[1,259],[0,23],[0,4],[0,49],[-1,78],[0,87],[0,60],[16,104],[10,64],[6,42],[10,63],[0,87],[-1,80],[0,30],[0,62],[3,170],[1,46],[1,41],[1,25],[0,24],[-26,59],[-25,56],[-6,12],[-13,29],[-12,25],[-1,4],[-46,99],[1,36],[0,48],[-1,107],[-1,90],[52,0],[118,1],[81,1],[66,1],[0,24],[-1,97],[-2,113],[1,35],[-51,0],[-66,0],[-67,0],[-50,0],[-4,0],[-80,1],[0,35],[-1,33],[0,63],[-1,55],[1,25],[-1,5],[0,19],[-2,33],[-1,50],[-4,262],[0,86],[2,20],[0,9],[-1,112],[0,2],[1,20],[-2,53],[0,1],[0,34],[0,96],[-1,36],[0,22],[0,72],[0,25],[0,32],[0,2],[-1,110],[0,88],[0,14],[0,29],[-1,512],[-68,-1],[-306,-2],[-60,-1],[-247,-2],[-100,0],[-302,-4],[-25,1],[-55,-1],[-20,-1],[-30,0],[-39,0],[11,41],[6,24],[13,52],[28,108],[8,35],[12,156],[4,78],[3,78],[-4,156],[-1,84],[-1,68],[0,224],[7,230],[4,78],[6,78],[4,62],[5,92],[1,49],[1,29],[1,383],[0,7],[0,68],[0,26],[0,158],[0,154],[0,43],[-1,77],[0,72],[0,91],[0,55],[0,27],[-1,57],[0,30],[-1,124],[-44,0],[-32,0],[-31,0],[-53,0],[-68,1],[-61,-1],[-30,0],[-62,1],[-78,1],[-41,0],[-88,1],[-35,0],[-10,21],[-1,31],[-6,23],[-25,15],[-42,8],[-35,10],[-23,16],[-53,87],[-23,31],[-18,23],[-16,23],[-12,20],[-14,27],[-9,25],[-14,18],[-17,36],[-10,20],[-13,26],[-13,20],[-1,1],[-28,22],[-21,11],[-56,18],[-35,9],[-26,12],[-17,13],[-17,29],[-15,35],[-13,21],[-21,25],[-14,20],[-10,24],[-6,23],[-1,33],[-4,30],[-23,9],[-19,10],[-23,-8],[-21,5],[-24,1],[-26,8],[-24,11],[-22,14],[-22,14],[-21,1],[-31,18],[-19,15],[-22,11],[-16,17],[-28,7],[-25,5],[-25,17],[-19,20],[-23,19],[-30,11],[-25,-4],[-23,-9],[-38,-2],[-24,10],[-6,2],[-15,6],[-20,5],[-25,14],[-21,17],[-13,17],[-14,18],[-21,19],[-12,22],[-19,18],[-21,12],[-3,2],[-35,19],[-26,8],[-29,-2],[-21,4],[-20,30],[-9,19],[-2,5],[-10,22],[-16,34],[-21,45],[-30,65],[-20,43],[-12,27],[-29,63],[-13,27],[-12,27],[-11,22],[-20,41],[-14,31],[-14,30],[-24,52],[-19,40],[-15,33],[-35,75],[-16,34],[-15,34],[-10,19],[-13,27],[-4,8],[-6,15],[-13,28],[-16,33],[-11,24],[-20,41],[-19,42],[-10,24],[-13,29],[-11,22],[-31,67],[-11,24],[-16,36],[-31,63],[-9,21],[-14,29],[-7,14],[-10,23],[-6,12],[-12,21],[-13,35],[-13,29],[-9,19],[-9,20],[-27,55],[-6,15],[-11,24],[-21,43],[-13,29],[-12,25],[-12,26],[-10,22],[-17,37],[-3,5],[-13,29],[-13,25],[-35,75],[-3,7],[-16,34],[-18,37],[-20,44],[-22,48],[-16,32],[-21,46],[-13,28],[-11,23],[-20,42],[-11,23],[-12,26],[-14,27],[-24,53],[-35,73],[-33,74],[-13,26],[-9,20],[-11,23],[-11,21],[-10,21],[-41,94],[-20,41],[-14,31],[-11,25],[-36,76],[-11,24],[-46,92],[-15,36],[-12,28],[-6,13],[-18,32],[-1,3],[-13,32],[-27,55],[-13,27],[-23,50],[-3,6],[-9,19],[-14,27],[-23,51],[-10,21],[-16,37],[-12,25],[-21,44]],[[61569,17820],[-10,24],[-27,57],[-21,45],[-18,39],[-15,30],[-18,41],[-12,25],[-19,40],[-12,27],[-16,35],[-12,25],[-36,74],[-18,38],[-27,60],[-9,20],[-14,31],[-27,55],[-14,32],[-25,51],[-20,44],[-10,22],[-16,35],[-46,8],[-176,-3],[1,81],[0,32],[1,34],[1,61],[0,48],[3,151],[1,118],[2,57],[0,40],[4,52],[3,50],[5,81],[3,55],[3,48],[4,66],[1,11],[3,55],[0,5],[0,48],[-1,58],[0,27],[25,-3],[25,17],[30,7],[10,21],[30,7],[18,11],[26,10],[22,7],[25,13],[5,2],[21,7],[6,1],[25,1],[18,14],[27,4],[23,16],[29,13],[25,8],[23,0],[5,-1],[18,-3],[14,-13],[6,-5],[4,3],[19,12],[15,-18],[2,-2],[25,-1],[16,5],[8,3],[21,5],[4,0],[11,6],[9,4],[4,1],[20,6],[21,12],[2,3],[6,20],[24,-1],[7,11],[7,9],[20,-13],[26,-3],[6,7],[11,14],[2,1],[1,-2],[13,-24],[19,-14],[9,-6],[9,-2],[5,-2],[13,-4],[5,3],[2,2],[20,12],[24,-13],[4,-3],[4,-2],[14,1],[11,2],[26,-5],[4,-1],[18,-4],[3,-3],[14,-13],[19,-12],[29,-1],[24,-6],[18,-13],[9,-21],[25,-23],[24,-22],[21,-31],[22,-9],[16,19],[1,1],[5,-1],[10,-1],[10,-2],[2,-1],[18,-16],[1,0],[7,0],[18,0],[5,-2],[17,-6],[20,2],[1,0],[4,0],[-1,-2],[-10,-20],[5,-28],[-3,-2],[-10,-8],[-4,-4],[3,-1],[2,-1],[10,-5],[6,-4],[7,-1],[18,-4],[26,-6],[18,18],[24,-7],[23,-11],[5,0],[4,0],[15,1],[23,14],[0,1],[11,59],[3,15],[0,63],[1,28],[0,20],[0,13],[0,26],[0,23],[0,32],[0,3],[0,27],[1,28],[0,49],[0,41],[2,114],[0,177],[1,73],[0,4],[0,13],[1,41],[0,8],[0,28],[0,3],[1,58],[0,30],[0,27],[0,1],[0,28],[0,36],[1,36],[0,28],[1,100],[0,24],[1,31],[1,124],[0,66],[1,28],[0,171],[0,23],[0,23],[0,34],[0,32],[1,58],[0,38],[0,41]],[[88184,14002],[60,-39],[-85,5],[-47,16],[-27,25],[29,33],[48,20],[22,-60]],[[87987,14635],[-34,-125],[-19,-77],[-38,-54],[-26,-47],[-7,-34],[-42,-75],[-60,-17],[-43,-8],[-39,-28],[-54,-56],[-53,-50],[-63,-44],[-2,171],[24,30],[1,37],[-7,52],[-1,44],[4,5],[7,7],[17,19],[-15,32],[-9,19],[3,61],[20,45],[32,30],[52,31],[46,39],[7,7],[58,35],[-11,-74],[45,-17],[2,1],[44,40],[-34,38],[-9,64],[-2,59],[11,54],[6,63],[-3,68],[-4,52],[-12,51],[-29,113],[-17,49],[-42,46],[-34,69],[-12,42],[-20,112],[-11,52],[-7,35],[-30,74],[-5,13],[-57,68],[-60,29],[-27,24],[-2,4],[-10,23],[70,49],[27,22],[30,24],[34,27],[12,9],[28,17],[38,23],[18,24],[27,34],[35,27],[33,30],[26,43],[27,37],[-2,38],[0,11],[14,30],[3,7],[20,36],[9,19],[13,31],[40,15],[6,32],[3,11],[39,20],[50,18],[57,-20],[40,-80],[14,-43],[20,-61],[17,-69],[8,-39],[8,-44],[8,-51],[7,-51],[7,-87],[3,-39],[7,-65],[4,-66],[2,-140],[0,-55],[-8,-72],[-6,-56],[7,-44],[-4,-55],[-18,-85],[-16,-53],[-30,-93],[-28,-71],[-15,-52],[-22,-68],[-20,-50],[-14,-48],[-19,-47],[-19,-64],[-19,-67]],[[86121,17099],[29,-35],[17,-56],[7,-70],[2,-11],[11,-64],[14,-38],[4,-9],[4,-8],[11,-22],[8,-28],[8,-28],[15,-58],[1,-4],[11,-45],[4,-24],[3,-16],[-57,16],[-59,45],[-54,37],[-27,0],[-21,-1],[-12,-1],[-38,-7],[-34,-9],[-59,5],[-67,33],[-23,30],[-19,24],[-30,55],[-27,67],[-21,55],[-12,40],[-4,10],[-19,60],[-6,24],[-6,27],[32,-7],[51,0],[57,7],[59,10],[44,9],[16,4],[12,0],[25,1],[61,5],[89,-23]],[[87775,17341],[-40,-34],[-72,9],[-31,36],[12,52],[14,18],[20,26],[25,21],[19,16],[23,33],[16,22],[6,9],[27,45],[9,54],[3,21],[9,103],[52,-5],[68,-42],[55,-45],[3,-4],[40,-40],[31,-42],[-15,-41],[-67,-33],[-36,-24],[-8,-5],[-60,-31],[-15,-22],[-7,-11],[-38,-37],[-33,-37],[-10,-12]],[[87495,17154],[-18,-42],[-50,6],[-38,10],[-49,38],[-17,13],[26,97],[5,18],[4,17],[-11,23],[-6,13],[-8,32],[-8,15],[-13,22],[-6,9],[-52,80],[-179,141],[-33,11],[-66,22],[2,42],[54,114],[47,89],[9,56],[2,35],[2,34],[14,21],[13,20],[66,16],[46,29],[22,2],[36,33],[46,90],[13,18],[1,13],[1,12],[16,42],[9,25],[3,3],[25,25],[73,5],[38,21],[45,20],[26,25],[9,10],[29,-20],[14,-10],[8,-18],[11,-25],[-15,-57],[-61,-52],[-50,-30],[-41,-47],[25,-32],[5,-13],[21,-50],[24,-49],[7,-12],[20,-34],[31,-48],[1,-1],[21,-37],[17,-35],[16,-38],[18,-42],[24,-48],[16,-44],[2,-24],[1,-18],[-12,-56],[-5,-18],[-34,-53],[-16,-25],[-61,-36],[-47,-57],[-25,-75],[1,-19],[2,-43],[13,-56],[-15,-58],[-2,-10],[-42,-35]],[[88333,19445],[-11,-14],[-53,4],[-19,1],[-35,18],[-14,7],[14,62],[26,49],[52,38],[44,37],[33,57],[33,-22],[13,-8],[1,-50],[-25,-60],[-25,-40],[-5,-20],[-7,-30],[-22,-29]],[[89806,20495],[67,-10],[88,10],[43,-17],[16,-7],[29,-43],[53,-77],[56,-64],[17,-14],[18,-15],[47,-31],[35,-14],[14,-12],[23,-18],[111,-57],[67,0],[62,2],[63,9],[74,6],[53,-4],[9,0],[63,2],[47,6],[32,4],[52,-6],[-56,-49],[-10,-52],[0,-1],[-1,-49],[4,-48],[-17,-82],[8,-53],[13,-49],[5,-21],[7,-16],[21,-46],[21,-24],[16,-19],[12,-61],[78,-57],[103,-66],[20,0],[40,0],[-21,-33],[-50,-64],[-82,-18],[-72,26],[-27,5],[-50,11],[-48,-15],[-46,-39],[-35,-57],[-23,-48],[-18,-46],[-23,-51],[-14,-60],[3,-14],[3,-13],[1,-6],[14,-110],[-2,-1],[-17,-13],[-25,-17],[-57,-41],[-12,-81],[-10,-53],[0,-1],[-38,-127],[108,69],[68,57],[35,-52],[-63,-46],[-104,-54],[-55,-30],[-79,-15],[-58,-6],[-79,6],[-62,43],[-39,20],[-19,10],[-40,13],[-37,21],[-1,0],[-7,7],[-47,44],[-22,47],[-6,11],[14,31],[1,3],[-44,47],[-33,53],[-30,48],[-8,22],[-17,46],[6,48],[-10,-5],[-28,-11],[-12,28],[-8,21],[-7,6],[-53,49],[-57,34],[-36,11],[-38,28],[-5,48],[-2,21],[29,61],[7,20],[10,25],[7,21],[11,33],[43,19],[-1,79],[33,-5],[27,-4],[62,-20],[83,-11],[60,-79],[-2,29],[-3,37],[25,27],[15,15],[37,57],[30,71],[-32,51],[1,47],[-50,25],[-23,45],[-7,12],[-3,89],[-4,49],[-2,18],[-37,44],[-4,35],[-41,40],[-34,-11],[-6,2],[-31,10],[-32,29],[-65,42],[-82,14],[-95,4],[-55,35],[-80,9],[61,-53],[29,-34],[14,-15],[74,10],[14,-2],[35,-4],[56,-6],[14,-8],[29,-17],[46,-38],[6,-5],[29,-24],[46,-28],[6,-6],[29,-24],[11,-43],[-29,-55],[10,-35],[3,-11],[3,-11],[5,-28],[22,-54],[35,-52],[29,-71],[-77,-37],[-50,28],[-4,2],[-58,25],[-6,-12],[-9,-17],[-23,-1],[-11,0],[-8,-2],[-40,-13],[-39,-34],[-14,-12],[-15,-19],[-13,-17],[-39,-35],[22,-47],[-13,-49],[-36,-22],[-8,-5],[-1,-3],[-7,-40],[-17,-58],[-9,-79],[58,-54],[11,-15],[18,-22],[32,-6],[8,-1],[33,-16],[31,-35],[12,-67],[-39,-54],[-26,-42],[-1,-10],[-6,-54],[16,-29],[24,-40],[11,-27],[10,-22],[10,-22],[8,-20],[-5,-68],[35,18],[13,61],[-8,54],[-24,47],[-9,32],[-9,32],[31,56],[51,-63],[36,-56],[14,-21],[2,-4],[52,-70],[51,-63],[39,-37],[70,-33],[66,-50],[64,-32],[76,4],[66,-7],[70,8],[55,1],[37,9],[64,23],[62,5],[56,-8],[11,-67],[-76,-37],[-40,-18],[-56,-3],[-69,-31],[-56,3],[-65,24],[-33,11],[-57,3],[-41,-40],[-63,18],[-59,-4],[-82,22],[-55,-25],[-87,-65],[-109,-95],[-37,-33],[-196,-194],[-30,-32],[-42,-46],[-29,-35],[-62,-68],[-59,-78],[-68,-93],[-90,-127],[-38,-71],[-33,-53],[-21,-55],[-2,-4],[-11,-24],[-8,-16],[10,-63],[-7,-88],[-50,-1],[-29,28],[-29,19],[-20,-75],[-39,-32],[-29,-35],[-39,-37],[-75,-50],[-39,-21],[-73,-47],[-43,-18],[-37,-23],[-90,-30],[-62,-14],[-47,1],[-50,9],[-54,17],[-63,21],[-45,4],[-40,17],[-88,14],[-63,45],[-29,50],[-17,85],[-15,39],[-14,35],[-4,18],[-7,36],[-16,63],[-3,62],[21,54],[33,47],[6,7],[23,30],[10,14],[26,37],[9,9],[41,41],[40,33],[5,40],[2,60],[0,4],[-42,83],[-21,61],[-33,14],[-9,5],[-12,4],[-35,14],[-54,41],[-10,58],[4,18],[10,40],[42,75],[47,68],[16,64],[13,50],[72,-15],[57,11],[4,1],[-43,35],[-76,11],[-36,-4],[-36,-4],[-17,-34],[13,-59],[-12,-34],[-8,-20],[-20,-19],[-24,-22],[-55,-47],[-52,-43],[-51,35],[-31,18],[-27,39],[21,56],[-44,2],[-11,1],[-35,44],[17,40],[44,29],[50,53],[29,51],[6,12],[-3,68],[-1,11],[-2,38],[42,16],[43,-4],[2,18],[1,6],[-52,30],[-32,-4],[-51,-6],[-23,23],[-39,25],[-33,50],[-21,38],[-2,18],[-4,37],[33,53],[53,32],[52,25],[67,59],[34,63],[-1,54],[1,26],[1,30],[1,23],[1,30],[6,22],[2,8],[9,6],[18,15],[25,-8],[45,-31],[129,-7],[46,15],[21,1],[52,2],[100,-2],[68,43],[48,115],[-5,100],[16,30],[21,-15],[38,-26],[18,-15],[39,-29],[24,-13],[2,-1],[-3,4],[-14,17],[-14,19],[-32,28],[-5,4],[-2,2],[-17,13],[-15,15],[-26,31],[0,27],[64,62],[52,67],[48,66],[38,68],[11,57],[2,49],[0,3],[15,62],[33,33],[29,36],[-16,50],[-15,-22],[-8,-13],[-11,-8],[-19,-13],[-2,30],[-2,24],[-56,-6],[-59,28],[-90,66],[-23,23],[-25,24],[-16,40],[-7,29],[-4,12],[0,10],[-2,44],[6,10],[5,9],[20,78],[22,24],[27,29],[42,15],[41,65],[43,57],[14,6],[46,19],[45,-7],[31,-18],[62,22],[43,-17],[54,18],[25,-10],[31,-11],[48,-5],[12,-1],[33,-3],[70,-5],[89,-12],[82,-14],[63,-5],[64,-2],[42,2],[39,1],[57,3],[44,-2],[43,-15],[20,-38],[48,-37]],[[86660,21171],[17,-20],[11,-39]],[[87306,20959],[5,-9],[6,-14],[25,15],[27,25],[34,20],[38,-1],[29,-1],[34,-33],[-4,-25],[-3,-20],[-18,-56],[-22,-70],[-9,-28],[-8,-25],[1,-39],[1,-24],[3,-5],[25,-60],[66,-46],[44,-6],[63,-7],[72,-36],[101,-70],[85,-34],[17,4],[49,11],[27,19],[59,43],[59,43],[41,-46],[-18,-18],[-15,-17],[-45,-59],[-36,-48],[-35,-49],[-37,-37],[-4,-59],[32,-33],[12,-15],[16,-20],[58,-30],[60,-33],[72,8],[31,1],[21,1],[66,-30],[13,-5],[62,-25],[65,-33],[14,-20],[24,-32],[19,-60],[6,-46],[-10,-42],[-44,-11],[-5,-1],[-61,15],[-6,1],[-64,12],[-24,-45],[-15,-26],[-22,-64],[-42,-27],[-22,-14],[-11,-4],[-60,-20],[-35,22],[-10,41],[13,59],[-8,34],[-2,10],[-32,51],[-19,35],[-7,14],[-8,17],[-25,52],[-47,22],[4,-35],[33,-42],[30,-41],[28,-62],[26,-41],[-16,-63],[-5,-21],[11,-39],[18,-21],[16,-68],[21,-62],[68,-48],[8,-2],[34,-10],[67,2],[31,-35],[-11,-51],[-26,-90],[-60,-31],[-65,9],[-114,-14],[-58,0],[-97,60],[-87,-19],[-48,-54],[-27,-63],[-1,-5],[-8,-31],[-4,-20],[-5,-19],[-1,-63],[-17,-56],[-2,-9],[-22,-8],[-46,-16],[-66,-33],[-41,-43],[-31,-56],[-2,-67],[9,-51],[-1,-6],[-2,-29],[-15,4],[-18,5],[-64,8],[-32,1],[-43,2],[-8,0],[-23,2],[12,20],[10,17],[9,13],[12,16],[-4,44],[-22,25],[-21,12],[25,-53],[-2,-24],[-3,-2],[-13,-17],[-23,-19],[-3,-2],[3,-37],[43,-15],[102,-7],[17,-1],[47,-17],[7,-20],[6,-15],[8,-8],[24,-25],[-1,-28],[-1,-27],[-65,-13],[-91,-20],[-6,-9],[-52,-73],[-50,-65],[-7,-47],[2,-16],[0,-7],[-9,-19],[-9,-19],[-2,-2],[-20,-15],[-71,-14],[-56,-26],[-54,-91],[0,-37],[-72,-121],[-42,-142],[0,-46],[27,-17],[116,-81],[96,-72],[6,-35],[25,0],[21,-6],[33,-46],[3,-8],[27,-60],[-34,-66],[-5,-12],[-13,-32],[-13,-75],[42,-51],[14,-60],[61,15],[57,-28],[54,-37],[30,-45],[12,-49],[17,-54],[-67,-4],[27,-47],[21,-17],[9,-8],[14,-45],[-27,-60],[-51,-40],[-32,-38],[-29,-28],[-13,-49],[-41,-36],[0,-12],[-1,-58],[-17,-49],[-4,-11],[-37,-31],[-9,-6],[-27,-20],[-40,-26],[-48,-20],[-53,-10],[-37,7],[-16,3],[-41,5],[-38,14],[-49,18],[-8,3],[-8,3],[-38,15],[-73,19],[-78,45],[-19,21],[-28,31],[-22,31],[-25,34],[-40,19],[-15,7],[-1,1],[-17,5],[-36,12],[-40,13],[-41,25],[-41,11],[-23,41],[-23,31],[-19,52],[-25,62],[-19,70],[-26,88],[-19,71],[-35,89],[-8,55],[-2,4],[-18,28],[-3,4],[-35,-25],[-10,4],[-58,20],[-46,7],[-76,2],[-95,-17],[-33,5],[-28,4],[-44,24],[-40,22],[-12,28],[-3,9],[-7,23],[-11,33],[32,80],[13,72],[13,59],[-7,80],[-8,46],[-4,13],[-7,32],[5,35],[11,80],[-50,57],[-9,11],[-17,61],[-55,49],[-14,10],[-54,42],[-36,41],[-46,-2],[-37,16],[-14,2],[-24,2],[-43,25],[-35,-32],[-58,34],[-41,57],[-53,51],[-12,82],[5,39],[2,22],[21,54],[-30,52],[-13,55],[-6,39],[-5,15],[-4,10],[0,37],[-7,42],[-3,22],[1,47],[-10,40],[0,3],[6,61],[3,26],[-6,27],[-23,-41],[-14,-41],[0,-42],[17,-47],[2,-62],[1,-25],[0,-41],[0,-5],[-1,-23],[-25,7],[-4,3],[-20,18],[-82,30],[-36,6],[-7,2],[-5,0],[-45,0],[-61,-5],[-90,-4],[-38,-34],[-49,-35],[-59,-14],[-74,17],[-49,23],[-40,38],[-38,60],[-31,75],[-23,53],[-26,-21],[12,-80],[18,-35],[17,-44],[-16,-24],[-56,8],[-3,-11],[-7,-28],[50,-20],[73,-13],[40,-43],[-68,-45],[79,-9],[-64,-38],[-58,-3],[-43,13],[-32,8],[-46,2],[-38,18],[-8,0],[-36,-1],[-62,-26],[-52,-18],[-63,-14],[-69,-5],[-58,-18],[-49,1],[-43,-28],[-56,0],[-48,-11],[-11,-4],[-57,-21],[-1,0],[1,-2],[68,-59],[39,11],[42,12],[51,17],[52,7],[26,40],[52,-5],[46,6],[47,10],[48,8],[46,4],[72,-7],[109,-25],[59,-17],[67,9],[77,-3],[42,35],[72,29],[21,10],[37,19],[76,24],[16,30],[22,40],[46,34],[40,3],[66,13],[57,-6],[51,-63],[24,-72],[14,-53],[5,-37],[2,-13],[12,-68],[15,-61],[19,-41],[25,-56],[27,-43],[34,-27],[58,-39],[72,-38],[39,-18],[5,-2],[33,-13],[10,-18],[5,-9],[70,10],[46,-15],[6,-4],[24,-13],[3,-1],[45,-31],[29,-43],[-24,-97],[-41,-63],[-17,-57],[-10,-52],[-1,-6],[-9,-54],[-1,-46],[0,-38],[0,-4],[0,-1],[0,-6],[2,-34],[9,-70],[8,-81],[2,-35],[2,-30],[27,-66],[12,-33],[13,-34],[18,-57],[9,-97],[-81,-45],[-43,28],[-47,1],[-30,73],[-4,60],[-18,56],[-46,63],[-48,42],[-17,15],[-7,5],[-9,5],[-49,29],[-65,22],[-74,16],[-70,12],[-81,-18],[-39,-2],[-24,0],[-53,1],[-3,3],[-14,14],[0,33],[26,86],[52,50],[66,26],[35,59],[-1,18],[-2,16],[-29,16],[-20,13],[-31,15],[-22,46],[-3,5],[-2,55],[7,70],[-4,24],[-2,14],[-32,43],[-7,20],[-14,26],[-24,36],[-11,6],[-20,13],[-13,38],[-14,23],[-15,23],[-6,8],[-26,12],[15,-22],[31,-55],[12,-40],[32,-27],[37,-62],[5,-31],[31,-42],[-13,-78],[2,-25],[3,-40],[26,-75],[56,-29],[7,-26],[-22,-7],[-18,-7],[-50,-32],[-20,-8],[-3,24],[-4,4],[-27,26],[-9,22],[-6,14],[4,15],[8,36],[-1,75],[-58,46],[-14,4],[-31,9],[4,19],[2,7],[24,24],[17,25],[-29,-10],[-9,-4],[-22,-12],[-14,-8],[0,-29],[40,-45],[3,-2],[56,-41],[3,-22],[-9,-35],[-6,-22],[11,-84],[31,-73],[-4,-8],[-17,-36],[-31,-18],[-2,-19],[-6,-34],[19,-36],[38,-49],[8,-10],[61,-20],[20,-6],[34,-9],[70,-4],[52,3],[72,9],[64,-9],[15,-2],[15,-9],[27,-16],[14,-19],[11,-14],[9,-32],[6,-18],[18,-65],[43,-52],[23,-44],[11,-21],[24,-28],[20,-22],[60,-48],[56,-31],[30,-10],[35,-12],[71,-10],[48,-5],[5,-1],[64,-24],[52,-54],[64,-53],[1,0],[56,-33],[40,-24],[20,-11],[56,-40],[60,-11],[44,-21],[78,-5],[24,-1],[12,-27],[9,-19],[60,-37],[61,-13],[33,37],[57,-10],[4,0],[47,-51],[8,-8],[2,-2],[38,-29],[38,-46],[42,-31],[26,-39],[-42,-59],[63,8],[35,-17],[73,-42],[12,-15],[43,-53],[25,-55],[35,-48],[8,-59],[51,6],[64,-39],[65,-15],[56,-11],[21,-5],[15,-3],[71,-17],[59,-15],[33,34],[38,25],[35,50],[-8,42],[0,4],[31,-17],[25,-29],[62,-36],[45,-57],[19,-52],[10,-27],[7,-36],[13,-62],[27,-82],[7,-19],[-3,-3],[-14,-22],[-33,-6],[-33,-15],[-42,-12],[36,-34],[6,-6],[16,-17],[29,-32],[29,-44],[25,-40],[26,-62],[9,-44],[2,-34],[4,-56],[12,-47],[5,-18],[-29,-50],[2,-25],[4,-34],[-20,-54],[-26,-26],[-17,-17],[-16,-6],[-45,-18],[-86,-3],[-58,44],[-63,39],[-65,44],[-75,35],[-38,31],[-46,15],[-64,28],[-67,19],[-32,12],[-10,4],[-24,13],[-14,8],[-36,33],[-35,37],[-28,59],[-3,72],[-55,14],[-19,25],[-14,19],[-23,21],[-29,27],[-83,78],[-93,63],[-86,20],[-77,27],[-36,15],[-26,11],[-36,11],[-22,7],[-51,13],[-58,-11],[-63,41],[7,47],[2,19],[60,12],[5,1],[10,-4],[19,-7],[108,-31],[17,-4],[11,-4],[102,44],[44,75],[12,34],[7,21],[-17,41],[-60,36],[-45,47],[-15,18],[-28,32],[-23,26],[-23,24],[-30,31],[-13,19],[-48,3],[-54,-10],[-20,-14],[-15,-10],[-13,-74],[-7,-12],[-6,-11],[-17,-17],[-8,-8],[29,12],[19,8],[38,60],[37,44],[41,1],[24,-8],[7,-12],[11,-18],[24,-44],[6,-16],[19,-50],[43,-31],[59,-54],[25,-58],[-30,-64],[-27,-22],[-38,-3],[-57,17],[-30,45],[-41,24],[-47,-17],[-28,-10],[-66,-19],[-10,54],[-21,28],[-10,14],[-56,13],[-47,-34],[-51,-10],[-10,23],[19,29],[27,42],[15,44],[-12,34],[-34,29],[0,26],[14,44],[-2,17],[-1,19],[-35,44],[-59,0],[-74,3],[-119,31],[-40,10],[-39,31],[3,-23],[52,-42],[24,-9],[81,-23],[21,0],[68,-3],[77,-9],[-9,-34],[-10,-67],[30,-34],[9,-15],[20,-35],[-19,-44],[-19,-18],[-18,-18],[-6,-36],[16,-29],[11,-18],[58,-6],[51,4],[37,26],[25,-8],[-1,-31],[-1,-42],[-18,-20],[-4,-16],[-2,-6],[21,-43],[6,-53],[45,-38],[47,-53],[47,10],[80,-8],[13,-1],[21,-4],[47,-9],[18,-10],[22,-13],[61,-35],[21,-30],[26,-38],[14,-22],[21,-30],[39,-46],[17,-9],[36,-22],[33,0],[26,1],[12,-16],[28,-33],[2,-41],[22,-31],[36,-39],[71,-30],[35,-37],[58,-63],[5,-8],[28,-43],[-56,-45],[-72,-33],[-10,-3],[-44,-12],[-28,-8],[-10,-4],[-12,-14],[-16,-19],[-31,-28],[-36,27],[-16,12],[-27,13],[-59,28],[-12,41],[-7,22],[-10,64],[-4,17],[-5,21],[-18,48],[-32,71],[-28,54],[-11,21],[-16,22],[-22,30],[-45,49],[-3,-63],[-68,1],[-94,14],[-74,10],[-79,23],[-53,18],[-66,17],[-57,15],[-24,28],[-49,-2],[-59,8],[-58,48],[-8,7],[-28,45],[5,45],[9,72],[2,10],[-11,69],[-27,52],[-32,36],[-12,13],[-12,11],[-19,18],[-33,27],[-73,28],[-57,22],[-25,9],[-23,-21],[-18,-15],[-66,-2],[-40,-28],[-28,-19],[-30,-15],[-21,-10],[-15,-17],[-20,-24]],[[85016,15596],[-28,5],[-7,3],[-22,12],[-17,10],[-39,46],[-49,92],[-63,84],[-6,7],[-17,8],[-61,8],[-43,13],[-8,2],[-26,31],[-1,9],[-1,11],[4,22],[7,31],[4,19],[40,46],[97,59],[30,26],[13,23],[5,6],[8,11],[21,52],[1,3],[29,149],[31,51],[12,34],[-15,72],[-45,66],[-56,28],[-67,30],[-103,-44],[-7,-3],[-15,-14],[-1,-2],[-1,-1],[-37,-42],[-5,-13],[-5,-44],[0,-2],[-12,-47],[-2,-6],[-27,-56],[-32,-23],[-55,-20],[-6,-2],[-1,1],[-71,33],[-51,35],[-54,37],[-40,-66],[-132,-21],[-29,-2],[-130,-48],[-19,-4],[-56,-11],[-34,-25],[-48,47],[-8,7],[-32,31],[0,1],[-65,30],[-63,-7],[-4,0],[-23,-8],[-31,-15],[-31,-25],[1,-7],[-6,-8],[-48,-65],[-12,-4],[-41,-16],[-48,-4],[-41,28],[-43,30],[-61,44],[-23,27],[-24,45],[-15,2],[-25,-16],[-22,-23],[-8,-9],[-9,-6],[-9,-5],[-2,0],[-5,1],[-20,3],[-33,29],[-3,5],[-32,60],[-24,25],[-113,7],[-1,0],[-7,1],[-5,6],[2,8],[12,10],[2,3],[-4,3],[-62,40],[-10,7],[-6,4],[-16,10],[-28,13],[-1,0],[-103,-30],[-31,-4],[-31,-4],[-26,-4],[-60,-7],[-91,-12],[-71,-9],[-40,-6],[-25,-2],[-30,19],[-31,20],[-24,15],[-36,22],[-30,20],[-28,17],[-17,15],[-19,18],[-15,17],[-32,38],[-20,16],[-21,15],[-23,9],[-22,5],[-36,13],[-38,17],[-73,25],[-23,12],[-48,36],[-31,40],[-36,51],[-15,21],[-15,20],[-15,18],[-16,17],[-19,18],[-19,13],[-17,13],[-43,18],[-26,3],[-31,0],[-27,-4],[-46,16],[-41,12],[-47,11],[-42,8],[-28,4],[-38,-3],[-25,-2],[-31,-5],[-23,-3],[-28,-1],[-49,-1],[-32,-2],[-21,-3],[-26,-2],[-22,-1],[-32,-8],[-24,4],[-36,23],[-23,7],[-29,7],[-19,8],[-26,6],[-26,7],[-24,15],[-18,32],[-6,22],[-8,34],[6,44],[18,36],[9,21],[6,32],[0,27],[-5,23],[-7,21],[-14,19],[-19,17],[-30,13]],[[80567,17521],[-27,-1],[-20,-8],[-21,-18],[-18,-20],[-24,-18],[-30,-18],[-23,-12],[-27,-12],[-27,-3],[-20,8],[-41,1],[-26,7],[-18,14],[-10,25],[-3,24],[-2,26],[-1,46],[5,22],[27,8],[25,17],[28,20],[52,42],[10,36],[16,43],[22,59],[39,111],[11,32],[12,31],[20,55],[15,43],[16,42],[9,26],[13,36],[8,22],[7,57],[2,29],[5,44],[7,68],[3,30],[2,25],[4,33],[2,23],[3,28],[10,74],[7,56],[10,23],[14,18],[16,21],[10,25],[10,33],[21,65],[2,5],[7,25],[14,47],[16,54],[6,30],[4,27],[5,25],[1,8],[10,54],[6,31],[9,32],[12,43],[7,27],[23,84],[6,24],[12,51],[10,43],[11,45],[11,49],[10,38],[13,57],[7,36],[6,22],[9,29],[6,36],[12,17],[17,48],[10,30],[9,27],[8,24],[12,21],[20,18],[41,33],[77,60],[27,21],[18,13],[16,19],[12,21],[12,25],[25,55],[12,25],[9,21],[7,25],[7,30],[8,33],[5,25],[-1,43],[0,24],[-2,53],[-1,24],[-1,51],[-1,44],[0,28],[-1,52],[-1,102],[-1,48],[0,24],[1,23],[7,23],[10,35],[10,29]],[[30729,23345],[-32,-14],[-1,-53],[10,-24],[7,-21],[1,-39],[-54,-73],[-50,-41],[-60,-93],[-18,-30],[-26,-111],[-26,-44],[-19,-13],[-32,7],[-43,48],[-37,1],[-136,-61],[-35,-10],[-76,-13],[-97,-27],[-40,-22],[-27,-21],[-18,-35],[-3,-21],[3,-26],[20,-49],[27,-44],[15,-37],[5,-53],[-5,-38],[-13,-27],[-32,-50],[-33,-22],[-27,0],[-14,16],[-2,12],[4,29],[23,64],[0,27],[-19,28],[-13,2],[-36,-17],[-159,-85],[-78,-53],[-84,-143],[-32,-224],[21,-105],[9,-33],[30,-71],[2,-35],[-3,-111],[-6,-22],[-30,-24],[-21,-6],[-67,48],[-107,24],[-20,-1],[-23,-15],[-7,-11],[-78,-21],[-7,4],[-14,0],[-137,-16],[-31,-5],[-25,-12],[-7,-46],[-27,-97],[-21,-27],[-33,-22],[-26,-18],[-24,-27],[-18,-30],[-21,-56],[-15,-10],[-47,-1],[-66,-40],[-26,3],[-17,23],[-2,35],[-7,15],[-9,10],[-23,5],[-15,-10],[-14,-42],[-6,-10],[-7,-8],[-6,-7],[-11,-8],[-21,-11],[-47,-20],[-49,-21],[-29,-13],[-20,2],[-17,20],[-8,6],[-57,40],[-8,6],[-134,49],[-45,8],[-23,-15],[-58,-58],[-16,-19],[0,-20],[37,-51],[2,-30],[-11,-7],[-126,-65],[-21,-6],[-86,-24],[-29,-8],[-20,2],[-20,20],[-27,26],[-11,-8],[-9,-16],[-4,-29],[-13,-22],[-37,-25],[-30,3],[-22,11],[-79,6],[-41,-5],[-97,-45],[-108,18],[-58,-11],[-56,-41],[4,-115],[-14,-71],[-30,-26],[-29,-18],[-35,-7],[-55,8],[-13,8],[-31,38],[-23,3],[-52,-15],[-105,-30],[-48,-33],[-43,-32],[-54,-41],[-53,-40],[-4,-8],[-3,-20],[30,-23],[41,-43],[28,-58],[13,-122],[-14,-80],[-10,-22],[-11,-8],[-24,-6],[-34,-23],[-13,-22],[-5,-81],[6,-7],[1,-38],[-4,-31],[-9,-20],[-63,-43],[-85,-105],[-119,-81],[-15,-15],[-102,-130],[-4,-29],[11,-42],[-78,-123],[-11,-57],[-41,-151],[-27,-20],[-80,-24],[-36,1],[-28,15],[-23,2],[-57,-20],[-174,-101],[-135,-79],[-9,-15],[-13,-21],[-12,-19],[-9,-34],[-36,-23],[-41,-4],[-53,-21],[-22,-15],[-95,-83],[-5,-14],[2,-76],[5,-36],[-3,-26],[-55,-35],[-10,-19],[38,-66],[14,-16],[10,-4],[46,-55],[4,-15],[-13,-69],[-72,-106],[-90,-52],[-14,-71],[-48,-33],[-53,-24],[-20,2],[-11,13],[3,25],[0,1],[12,13],[43,90],[4,28],[-35,60],[-15,16],[-25,9],[-11,-8],[-8,-52],[-109,-90],[-30,-21],[-19,2],[-12,13],[-33,4],[-24,-6],[-48,-33],[-30,-44],[-73,-71],[-44,-30],[-79,-18],[-37,4],[-28,-12],[-19,-15],[-21,-36],[-41,-75],[-27,-47],[-24,-35],[-24,-27],[-47,-50],[-37,-25],[-11,-5],[-26,3],[-57,20],[-85,42],[-41,-11],[-26,-20],[-4,-26],[20,-23],[13,-4],[11,-13],[1,-20],[-138,-106],[-9,-1],[-34,-5],[-60,-15],[-51,-29],[-9,-14],[-4,-32],[9,-27],[47,-49],[30,-47],[7,-21],[-9,-40],[-36,-143],[-16,-18],[-18,-10],[-2,0],[-18,2],[-32,35],[-23,3],[-55,-38],[-85,-82],[-63,-48],[-45,-57],[-73,-51],[-51,-21],[-10,-4],[-29,-21],[-19,-36],[0,-6],[11,-12],[94,-48],[31,-36],[8,-15],[-5,-59],[-4,-54],[-23,-14],[-20,-11],[-39,-14],[-22,-15],[-21,-33],[-14,-147],[51,-91],[3,-47],[-2,-19],[7,-70],[15,-33],[-5,-34],[-40,-49],[-13,-70],[-14,-70],[-19,-21]],[[23022,15560],[-28,-3],[-254,3],[-1,0],[-439,11]],[[22300,15571],[8,240],[16,413],[13,341],[2,102],[0,52],[3,227],[2,235],[1,31],[7,295],[0,30],[4,75],[12,212],[0,4],[2,24],[1,33],[5,91],[0,27],[9,200],[12,226],[7,212],[-1,30],[-1,33],[-3,26],[0,64],[0,25],[1,29],[4,144],[-1,38],[5,112],[0,4],[7,109],[1,124],[-313,12],[-34,1],[-38,1],[-33,3],[-33,0],[-34,2],[-53,3],[-44,2],[-162,4],[-26,0],[-58,1],[-34,0],[-69,1],[-27,2],[-63,1],[-61,2],[-55,3],[-37,2],[-53,-1],[-3,0],[-8,0],[-25,0],[-41,3],[-4,0],[-65,2],[-39,1],[-5,0],[-25,-1],[-25,1],[-32,1],[-41,2],[-29,0],[-49,2],[-57,2],[-47,1],[-60,1],[-27,1],[-22,0],[-56,1],[-64,2],[-27,0],[-46,3],[-36,0],[-38,3],[-97,2]],[[33702,21080],[-2,-112],[-1,-25],[-1,-42],[0,-40],[-7,-333],[-1,-31],[4,-51],[1,-69],[0,-31],[2,-23],[-8,-25],[-3,-7],[-1,-67],[-1,-48],[-1,-43],[-2,-81],[0,-32],[0,-2],[-1,-34],[-1,-26],[0,-26],[-1,-24],[-3,-160],[-4,-196],[-1,-41],[0,-38],[-6,-259],[-4,-193],[-3,-153],[-1,-43],[0,-9],[-1,-39],[0,-48],[-2,-74],[0,-4],[-1,-55],[-4,-208],[-2,-62],[-3,-177],[-1,-51],[1,-217],[0,-102],[4,-60],[-4,-43],[-1,-32],[-1,-42],[5,-32],[-9,-220],[-3,-238],[-2,-118],[-2,-238],[-1,-45],[-1,-129],[-1,-133],[0,-83],[-1,-88],[-77,0],[-48,-1],[-68,1],[-33,-1],[0,-42],[-1,-68],[-1,-45],[0,-23],[0,-24],[146,-1],[78,-1],[-3,-162],[-1,-36],[-2,-124],[0,-33],[-3,-144],[0,-41]],[[33613,15533],[-26,-2],[-102,0],[-57,0],[-47,0],[-31,0],[-54,0],[-41,1],[-135,0],[-106,1],[-164,2],[-4,0],[-38,1],[-32,0],[-23,0],[-31,0],[-31,0],[-31,0],[-30,0],[-33,0],[-121,0],[-54,0],[-72,1],[-29,1],[-24,0],[-84,0],[-26,0],[-46,0],[-32,0],[-27,0],[-23,1],[-59,0],[-10,1],[-35,0],[-47,1],[-43,1],[-65,0],[-33,1],[-33,0],[-45,1],[-31,0],[-45,0],[-40,1],[-26,0],[-29,0],[-36,0],[-71,2],[-33,0],[-43,0],[-33,0],[-62,0]],[[31240,15547],[-30,1],[-56,0],[-147,1],[-123,2],[-22,0],[-22,1],[-25,0],[-37,1],[-32,0],[-28,1],[-29,0],[-24,0],[-27,1],[-50,-1],[-47,1],[-31,0],[-27,1],[-30,0],[-72,1],[-29,0],[-69,1],[-136,1],[-115,1],[-27,0],[-118,0],[-166,1],[-19,0],[-41,1],[-18,0],[-5,0],[-40,0],[-43,0],[-29,1],[-29,-1],[-24,0],[-26,1],[-31,0],[-105,1],[-29,1],[-54,-1],[-27,-1],[-37,1],[-63,1],[-25,0],[-139,0],[-146,1],[-82,0],[-29,0],[-47,1],[-55,0],[-148,0],[-27,0],[-35,1],[-40,0],[-52,0],[-35,0],[-36,0],[-2,0],[-46,0],[-72,0],[-31,0],[-83,0],[-24,1],[-101,0],[-63,0],[-160,0],[-87,-1],[-79,0],[-50,-1],[-23,0],[-32,0],[-43,1],[-80,-1],[-87,0],[-204,1],[-424,0],[-42,0],[-48,0],[-44,0],[-325,1],[-39,-1],[-58,1],[-42,0],[-101,0],[-30,0]],[[25785,15569],[-117,-3],[-98,1],[-172,0],[-59,-1],[-124,1],[-49,1],[-85,-1],[-74,-1],[-210,0],[-102,-2],[-222,0],[-443,-1],[-443,-1],[-128,0],[-124,-1],[-79,0],[-59,-2],[-48,-2],[-104,0],[-23,3]],[[61569,17820],[-61,4],[-40,0],[-90,-1],[-37,-1],[-60,0],[-27,-1],[-11,0],[-34,0],[-31,-1],[-22,0],[-41,-1],[-28,0],[-15,0],[-16,0],[-66,-1],[-77,-1],[-19,0],[-28,-1],[-68,0],[-80,-1],[-40,0],[-42,-1],[-62,0],[-226,-2],[-32,-1],[-33,0],[-116,-1],[-54,0],[-32,0],[-81,0],[-166,1],[-97,0],[-41,0],[-23,1],[-22,0],[-1,0],[-50,0],[-54,0],[-62,0],[-35,1],[-45,0],[-64,0],[-25,0],[-39,1],[-51,1],[-23,0],[-111,2],[-48,0],[-28,1],[-60,1],[-102,1],[-68,1],[-163,3],[-65,1],[-86,1],[-23,0],[-130,2],[-185,3],[-31,0],[-36,0],[-158,3],[-2,0],[-36,0],[-32,0],[-29,0],[-94,-1],[-320,0],[-39,0],[-21,0],[-27,0],[-41,0],[-63,0],[-75,0],[-134,0],[-61,0],[-285,-1],[-92,0],[-34,0],[-30,0],[-34,0],[-126,0],[-73,0],[-52,0],[-74,-1],[-6,1],[-21,1],[-25,0],[-23,-3],[-29,1],[-26,0],[-169,0],[-98,0],[-84,0],[-19,0],[-73,0],[-51,0],[-27,0],[-36,0],[-73,0],[-16,0],[-26,-1],[-21,0],[-14,0]],[[55297,17830],[-127,1],[-5,0],[-33,1],[-42,0],[-101,1],[-151,1],[-161,1],[-29,0],[-347,-4],[-75,0],[-35,-1],[-70,-1],[-49,0],[-61,-1],[-57,0],[-52,0],[-37,-1],[-75,-1],[-23,-1],[-75,-2]],[[80567,17521],[-34,-29],[-29,-23],[-35,-29],[-23,-19],[-56,-46],[-43,-35],[-33,-26],[-64,-51],[-106,-89],[-32,-45],[-3,-5],[-3,-21],[0,-1],[-1,-1],[-8,-19],[-27,-47],[-11,-19],[-64,28],[-108,53],[-56,27],[-17,-15],[-20,-13],[-16,-16],[-38,-35],[-65,-61],[-38,-35],[-40,-36],[-15,-19],[-65,-48],[-32,-19],[-23,-17],[-11,-21],[-11,-21],[-20,-34],[-16,-30],[-10,-19],[-14,-31],[-23,-68],[-22,-46],[-17,-16],[-30,-29],[-22,-19],[-33,-32],[-17,-25],[-11,-21],[-14,-22],[-9,-21],[-7,-24],[0,-27],[0,-42],[0,-23],[-2,-34],[-15,-23],[-22,-22],[-50,-50],[-24,-28],[-26,-49],[-18,-39],[-10,-22],[-26,0],[-89,3],[-7,0],[-34,1],[-33,1],[-127,4],[-118,3],[-10,0],[-21,0],[-44,1],[-26,1],[-23,1],[-37,0],[-29,1],[-49,2],[-44,-3],[-111,4],[-28,1],[-41,13],[-23,3],[-25,-1],[-24,15],[-24,9],[-33,9],[-2,0],[-21,-4],[-85,-16],[-44,-7],[-26,-5],[-30,-5],[-51,-10],[-45,-7],[-25,-5],[-40,-7],[-31,-5],[-26,-6],[-22,-3],[-105,-39],[-35,-23],[-23,-48],[-2,-4],[-33,-24],[-42,-31],[-24,-11],[-12,-15],[-56,-151],[-7,-18],[-5,-14],[-2,-10],[11,-47],[3,-16],[-3,-31],[-1,-12],[5,-35],[9,-68],[-11,-75],[-4,-27],[-1,-11],[18,-41],[-4,-24],[-13,-11],[-44,7],[-9,2],[-4,4],[-22,27],[-5,12],[-6,13],[-2,6],[-18,3],[-1,0],[-23,-11],[-76,-61],[-1,-6],[0,-7],[4,-4],[2,-3],[2,-2],[1,-1],[5,-2],[37,-12],[27,-18],[3,-2],[19,-22],[3,-17],[-8,-26],[-8,-10],[-77,-53],[-8,-29],[21,-51]],[[77009,14911],[-36,6],[-25,0],[-36,1],[-10,2],[-13,3],[-21,5],[-129,29],[-52,12],[-51,11],[-22,5],[-38,10],[-27,7],[-31,6],[-33,8],[-22,5],[-33,8],[-82,13],[-77,18],[-51,11],[-21,5],[-27,6],[-32,8],[-33,7],[-31,7],[-22,5],[-36,8],[-31,6],[-49,11],[-73,17],[-66,15],[-60,13],[-29,7],[-29,6],[-43,10],[-45,10],[-25,6],[-34,8],[-26,5],[-65,16],[-69,16],[-1,0],[-42,10],[-18,4],[-12,3],[-26,6],[-17,4],[-7,1],[-32,8],[-31,7],[-33,8],[-24,5],[-32,8],[-23,5],[-36,8],[-40,9],[-62,15],[-58,14],[-95,22],[-59,14],[-77,18],[-50,12],[-28,6],[-21,5],[-23,5],[-26,6],[-27,7],[-60,14],[-30,5],[-30,-98],[-10,-32],[-8,-24],[-12,-40],[-28,-92],[-14,-46],[-55,-185],[-23,-75],[-16,-51],[-7,-25],[-15,-50],[-10,-32],[-8,-24],[-28,-92],[-10,-33],[-18,-59],[-17,-55],[-15,-51],[-5,-17],[-14,-45],[-21,-69],[-13,-45],[-13,-40],[-10,-33],[-3,-10],[-25,-74],[-45,0],[-47,0],[-50,-1],[-22,0],[-81,1],[-31,0],[-26,0],[-25,0],[-12,0],[-28,1],[-35,0],[-88,-1],[-81,1],[-122,0],[-40,0],[-39,0],[-53,0],[-33,0],[-51,1],[-33,2],[-7,0],[-42,1],[-35,0],[-29,0]],[[48492,14459],[-38,-1],[-201,-1],[-103,1],[-30,1],[-130,2],[-26,2],[-32,2],[-43,2],[-39,1],[-46,2],[-40,1],[-52,1],[-138,4],[-80,2],[-45,1],[-85,3],[-49,2],[-22,0],[-31,1],[-58,1],[-40,3],[-68,3],[-87,2],[-36,0],[-46,1],[-52,2],[-64,2],[-33,2],[-28,0],[-55,2],[-55,1],[-29,1],[-27,-3],[-32,4],[-1,0],[-119,4],[-109,3],[-2,1],[-214,6],[-245,6],[-121,2],[-23,-2],[-44,2],[-24,5],[-162,5],[-38,-4],[-72,2],[-34,0],[-175,6],[-29,1],[-402,13],[-44,1]],[[44694,14557],[-34,9],[-131,34],[-152,38],[-68,22],[-55,18],[19,58],[7,21],[12,39],[-72,176],[-56,22],[-23,9],[-13,5],[-19,7],[-28,-53],[-3,-6],[-29,-26],[-22,-20],[-2,-2],[-3,2],[-59,46],[-5,3],[-11,3],[-1,0],[-66,-4],[-38,6],[-73,28],[-18,7],[-54,21],[-8,6],[-7,9],[-7,7],[-18,7],[-4,1],[-90,-82],[-27,13],[-13,7],[-24,12],[-17,5],[-9,4],[-3,0],[-2,0],[-19,-3],[-19,-6],[-14,-9],[-10,-9],[-19,-8],[-12,-1],[-52,-4],[-22,1],[-166,49],[-44,23],[-2,4],[0,8],[-5,12],[-31,12],[-10,13],[-6,8],[-27,63],[-24,24],[-91,91],[-6,4],[-15,13],[-28,22],[-5,3],[-10,8],[-49,36],[-1,1],[-48,34],[-2,2],[-14,20],[-45,68],[-3,4],[-27,57],[-4,9],[-1,0],[-3,3],[-8,6],[-10,-1],[-5,-16]],[[42611,15550],[-8,1],[-4,2],[-4,4],[-2,2],[-4,5],[-16,21],[-3,4],[-2,3],[8,86],[1,5],[0,2],[2,4],[8,2],[1,0],[29,2],[10,0],[32,21],[40,16],[17,1],[8,5],[17,14],[13,23],[8,17],[17,47],[-16,82],[0,7],[2,4],[10,20],[11,44],[-6,3],[-11,-2],[-4,-6],[-3,-7],[-2,-7],[-2,-4],[-2,-1],[-3,-2],[-7,2],[-14,4],[-2,0],[2,7],[15,32],[2,4],[0,1],[2,2],[3,4],[1,0],[14,10],[1,1],[6,3],[29,14],[1,0],[5,0],[3,1],[8,-3],[11,1],[17,0],[54,74],[7,10],[16,21],[57,95],[0,12],[-9,40],[-18,50],[-4,8],[-19,30],[1,16],[1,3],[3,10],[5,9],[19,33],[11,20],[42,13],[5,1],[8,3],[-11,19],[-9,16],[-12,9],[-21,9],[-4,4],[-19,27],[-1,13],[0,2],[0,5],[37,253],[1,8],[1,2],[3,13],[14,43],[21,25],[3,3],[25,19],[8,2],[34,18],[69,48],[1,3],[0,6],[0,4],[-1,5],[87,-2],[8,0],[7,2],[1,8],[2,46],[1,9],[0,17],[0,83],[0,84],[0,13],[0,10],[0,3],[4,45],[-1,1],[-29,44],[2,79],[8,43],[35,83],[4,29],[0,28],[3,12],[4,12],[16,21],[20,18],[27,17],[14,9],[18,2],[10,1],[16,3],[1,0],[17,-3],[9,-2],[42,-10],[14,8],[18,16],[44,40],[8,7],[13,12],[5,5],[4,5],[27,43],[3,13],[3,15],[3,26],[1,5],[0,6],[0,1],[-1,1],[-11,11],[2,11],[7,8],[4,2],[55,20],[27,4],[5,0],[-1,2],[-2,20],[1,12],[30,102],[18,19],[2,2],[6,3],[3,6],[6,10],[15,11],[22,14],[15,6],[17,7],[15,8],[26,18],[59,39],[10,7],[2,2],[4,3],[-1,4],[0,22],[-4,11],[0,2],[-4,11],[-27,104],[-8,34],[-1,10],[-1,12],[35,-1],[2,0],[3,48],[6,101],[-35,47],[1,10],[22,14],[13,9],[-71,39],[-8,4],[14,32],[0,25],[0,9],[-3,11],[-2,10],[-6,4],[-4,7],[-2,7],[2,49],[1,8],[10,27],[4,10],[1,3],[17,40],[0,1],[10,12],[3,4],[6,31],[0,5],[0,17],[-5,21],[-8,31],[40,50],[10,15],[5,10],[4,10],[26,56],[1,3],[2,27],[1,3],[-9,22],[-7,16],[10,55],[3,4],[35,29],[11,9],[-30,76],[-4,9],[8,4],[8,19],[2,10],[5,33],[5,32],[2,16],[-10,113],[-2,6],[-12,63],[-1,4],[-4,17],[9,23],[3,7],[-2,11],[-6,12],[-5,9],[-6,12],[-8,11],[-18,14],[-1,1],[-27,13],[-7,6],[-15,27],[-6,102],[0,18],[2,12],[8,24],[5,40],[1,7],[-20,16],[-8,9],[-24,33],[-11,15],[-17,22],[-13,18],[-4,9],[-3,36],[14,109],[7,46],[1,4],[14,44],[5,17],[3,10],[11,34],[1,1],[-9,70],[-3,28],[-3,20],[-5,9],[-8,13],[13,19],[2,3],[4,8],[15,62],[2,5],[1,14],[-6,29]],[[42611,15550],[5,-75],[1,-25],[2,-21],[2,-37],[2,-44],[2,-22],[3,-59],[2,-29],[2,-28],[1,-24],[0,-46],[-4,-140],[-1,-31],[1,-107],[0,-48],[1,-157],[0,-58],[-35,1],[-88,3],[-27,0],[-46,2],[-44,1],[-18,1],[-31,0],[-61,3],[-91,3],[-102,3],[-5,0],[-134,5],[-29,0],[-21,2],[-139,5],[-37,1],[-44,1],[-22,3],[-51,1],[-35,0],[-68,2],[-97,2],[-63,2],[-109,2],[-32,0],[-45,1],[-31,1],[-55,1],[-116,3],[-21,1],[-52,1],[-76,1],[-153,3],[-35,1],[-114,2],[-59,2],[-82,1],[-25,2],[-28,0],[-27,0],[-42,1],[-23,1],[-110,2],[-103,1],[-54,1],[-24,0],[-77,3],[-70,2],[-34,0],[-35,1],[-22,1],[-25,-2],[-55,1],[-60,2],[-79,1],[-216,3],[-27,1]],[[39226,14681],[-85,1],[-41,1],[-47,1],[-37,0],[-64,1],[-23,0],[-26,1],[-23,1],[-41,2],[-37,1],[-26,0],[-23,0],[-37,1],[-26,0],[-31,1],[-25,0],[-7,0],[-19,-1],[-38,1],[-85,1],[-36,1],[-82,1],[-74,2],[-3,-39],[-3,-99],[-1,-38],[-1,-45],[-1,-49],[-29,-1],[-37,1],[-23,0],[-32,1],[-25,0],[-53,0],[-45,0],[-71,1],[1,31],[0,25],[1,29],[1,30],[0,32],[2,33],[1,60],[1,35],[-112,2],[-80,1],[-32,1],[-81,1],[-109,2],[-59,1],[-194,3],[-59,1],[-61,1],[-21,0],[-29,0],[-39,0],[-25,1],[-24,1],[-40,0],[-64,2],[-31,-1],[-35,2],[-36,0],[-6,0],[-219,3],[-64,1],[-28,0],[-104,2],[-64,1],[-58,2],[-62,0],[-28,0],[-36,2],[-43,0],[-55,1],[-29,0],[-28,0],[-59,1],[-23,0],[-43,0],[-41,2],[-71,0],[-135,2],[-27,0],[-49,1],[-54,1],[-122,1],[-3,0],[-20,0],[-32,0],[-36,1],[-154,2],[-17,0],[-14,0],[-51,1],[-26,-1],[-63,1],[-21,0],[-50,1],[-68,1],[-32,0],[-40,1],[-33,0],[-37,0],[-65,1],[-58,1],[-4,0],[-58,1],[-66,0],[-38,1],[-92,0],[-103,2],[-54,1],[-36,-1],[-65,2],[-27,0],[-39,1],[-32,0],[-77,1],[-37,1],[-45,0],[-65,1],[-35,1],[-15,0],[-82,3],[1,57],[0,5],[2,88],[0,51],[0,115],[-2,24],[0,81],[1,46],[1,92],[0,27],[0,34],[1,30],[0,32],[0,29],[1,30],[1,27]],[[22300,15571],[-65,0],[-375,2],[-48,0],[-33,0],[-66,-1],[-26,0],[-58,0],[-85,-2],[-129,2],[-58,0],[-44,1],[-26,0],[-115,1],[-42,0],[-80,0],[-93,1],[-47,0],[-42,1],[-77,1],[-71,0],[-52,0],[-81,1],[-47,1],[-43,-1],[-125,2],[-108,1],[-33,0],[-54,1],[-27,-2],[-13,-190],[-2,-56],[-356,4],[-2,0],[-48,0],[-18,1],[-64,0],[-135,2],[-94,1],[-166,3],[-156,1],[-76,1],[-50,0],[-36,1],[-32,1],[-91,2],[-114,1],[-203,2],[-3,0],[-141,5]],[[18350,15359],[-36,1],[-51,1],[-137,1],[-29,1],[-42,1],[-24,0],[-23,1],[-104,1],[-223,2],[-432,10],[-172,3],[-63,1],[-343,5],[-30,0],[-63,1],[-112,2],[-33,0],[-147,3],[-100,2],[-255,5],[-81,2],[-159,2],[-161,-1],[-55,0],[-36,5],[-112,7],[-65,4],[-1,0],[-41,-2],[-110,2],[-27,1],[-22,0],[-30,1],[-30,0],[-31,1],[-58,1],[-14,0],[-58,2],[-46,0],[-23,1],[-76,1],[-4,0],[-32,2],[-117,3],[-126,0],[-87,0]],[[66872,4866],[-62,4],[-59,4],[-81,5],[-11,0],[-56,4],[-280,18],[-55,3],[-126,8],[-4,1],[-121,7],[-63,4],[-69,4],[-38,2],[-34,3],[-1,0],[-34,2],[-55,4],[-49,2],[-42,3],[-52,3],[-11,0],[-161,11],[-41,2],[-1,0],[-33,2],[-75,6],[-28,1],[-28,2],[-45,3],[-46,3],[-74,3],[-223,14],[-22,1],[-121,6],[-14,2],[-19,3],[-39,2],[-59,3],[-44,3],[-48,3],[-40,1],[-68,4],[-68,4],[-45,5],[-48,2],[-23,2],[-39,2],[-28,2],[-34,2],[-34,0],[-30,3],[-32,0],[-4,1],[-41,2],[-17,1],[-64,3],[-39,5],[-28,2],[-43,3],[-68,1],[-185,11],[-24,2],[-39,2]],[[63407,5077],[1,59],[1,33],[4,216],[1,35],[1,74],[-2,65],[1,54],[1,34],[1,68],[2,39],[0,17],[-1,13],[1,22],[0,14],[1,21],[1,53],[2,85],[0,39],[2,54],[0,2],[0,56],[1,29],[2,84],[2,100],[2,49],[0,8],[2,87],[0,12],[4,24],[25,6],[24,-12],[8,4],[-10,17],[-16,29],[-7,6],[-8,3],[-13,5],[-32,25],[-19,17],[-6,11],[-19,69],[-1,15],[-4,147],[0,27],[21,69],[5,16],[2,9],[-11,55],[-12,63],[96,14],[8,1],[49,93],[-11,37],[-5,10],[-3,7],[-4,8],[-28,53],[-1,1],[-16,13],[-42,33],[-9,3],[-21,7],[-49,30],[-10,12],[-5,10],[-16,51],[-29,59],[-24,9],[-71,29],[-7,12],[-7,8],[-2,2],[-52,36],[-56,23],[-82,32],[-13,2],[-75,4],[-12,2],[-25,4],[-89,16],[-86,32],[-25,9],[-20,12],[-3,2],[-65,22],[-4,1],[-36,8],[-2,1],[-6,0],[-11,-4],[-8,-5],[-12,-9],[-79,-6],[-5,0],[-4,0],[-37,-2],[-4,1],[-11,2],[-19,-7],[-25,0],[-7,0],[-151,24],[-16,3],[-15,2],[-14,5],[-71,31],[-23,10],[-4,2],[-5,2],[-10,5],[-49,13],[-7,1],[-130,20],[-7,1],[-53,15],[-3,1],[-25,14],[-7,4],[-95,29],[-10,-3],[-85,-6],[-36,25],[-102,58],[-99,54],[-78,37],[-42,15],[-7,1],[-38,4],[-83,1],[-15,-1],[-51,-21],[-2,0],[-105,-42],[-9,-4],[-12,-9],[-61,-27],[-29,-5],[-36,-2],[-1,0],[-8,1],[-52,10],[-7,2],[-13,1],[-63,4],[-9,1],[-5,0],[-35,-2],[-58,-2],[-50,0],[-43,-11],[-3,0],[-7,1],[-2,1],[-6,2],[-7,4],[-16,14],[-6,6],[-10,6],[-40,22],[-12,7],[-132,22],[-59,7],[-27,-4],[-40,-6],[-21,-11],[-16,-8],[-66,-11],[-13,-2],[-31,2],[-50,4],[-22,2],[-10,6],[-22,15],[-16,6],[-33,9],[-70,0],[-19,-3],[-7,-4],[-3,-7],[-1,-3],[-6,-6],[-3,0],[-11,0],[-1,0],[-9,3],[-186,66],[-8,3],[-130,47],[-7,2],[-87,33],[-106,46],[-78,36],[-4,6],[-22,23],[-44,40],[-15,8],[-31,12],[-21,0],[-8,4],[-31,26],[-22,26],[-8,8],[-7,23],[-4,14],[-16,48],[-8,113],[-38,99],[-1,0],[-16,34],[-29,59],[-26,52],[-9,17],[-56,81],[-8,6],[-29,10],[-99,34],[-8,3],[-136,52],[-23,11],[-17,13],[-15,14],[-7,12],[-7,15],[-11,42],[-7,43],[-17,106],[-1,9],[-2,21],[-11,113],[1,20],[1,4],[5,12],[6,16],[79,164],[4,15],[-3,18],[-3,5],[-3,7],[-32,51],[-11,8],[-23,15],[-62,37],[-9,4],[-10,4],[-6,3],[-7,14],[-28,61],[0,3],[0,9],[0,30],[0,10],[0,4],[0,4],[0,64],[0,56],[-112,0],[-30,0],[-4,0],[-23,85],[1,9],[15,17],[2,2],[-6,23],[-40,11],[-40,12],[-7,2],[-29,8],[-69,20],[-35,10],[-6,2],[-22,6],[-65,18],[-56,16],[-47,13],[-2,1],[-42,11],[-31,9],[-15,5],[-24,7],[-40,10],[-13,4],[-115,33],[-42,11],[-32,10],[-57,15],[-65,19],[-130,36],[-34,10],[-78,22],[-51,14],[-38,11],[-28,8],[-49,14],[-87,24],[-27,8],[-21,6],[-20,6],[-39,11],[-38,11],[-29,8],[-102,29],[-99,28],[-49,14],[-61,18],[-61,17],[-101,29],[-48,13],[-40,12],[-38,10],[-32,9],[-34,9],[-31,10],[-40,10],[-79,23],[-56,16],[-90,25],[-81,23]],[[55279,11058],[0,27],[1,52],[1,44],[5,98],[0,30],[1,72],[1,63],[0,32],[-1,57],[2,45],[-1,45],[1,104],[1,34],[-1,45],[1,58],[0,102],[1,68],[0,35],[1,37],[0,119],[0,44],[1,46],[0,119],[-1,34],[-1,34],[2,32],[1,50],[1,22],[0,26],[0,91],[0,12],[1,54],[0,11],[0,14],[0,60],[1,40],[0,45],[1,100],[1,73],[0,46],[0,42],[0,58],[1,76],[0,69],[0,97],[1,25],[0,52],[0,8],[1,66],[0,31],[0,79],[0,37],[1,11],[0,46],[1,50],[0,68],[0,70],[1,55],[0,90],[0,73],[0,95],[-1,40],[1,27],[0,22],[1,93],[0,32],[0,26],[0,56],[1,22],[0,31],[0,100],[0,2],[-1,62],[1,89],[0,68],[0,76],[1,49],[0,24],[-1,48],[1,28],[0,23],[0,55],[0,80],[1,25],[0,32],[0,142],[0,94],[1,117],[0,63],[0,3],[0,24],[0,47],[1,90],[0,110],[1,47],[0,74],[0,60],[0,34],[1,99],[-2,75],[-1,51],[-1,74],[0,29],[-1,99],[0,10],[-1,46],[0,24],[0,13],[0,11],[-1,83],[-1,28],[-1,45],[-1,59],[-1,68],[-1,45],[0,51],[0,10],[-2,88],[0,25],[-1,41],[0,3],[0,52],[0,22],[-1,146],[0,137],[0,5]],[[55279,11058],[-40,8],[-90,26],[-98,27],[-20,-11],[-26,-37],[-23,-25],[-32,-28],[-20,-27],[-19,-26],[-22,-28],[-17,-16],[-28,-28],[-21,-11],[-28,-11],[-27,11],[-32,7],[-28,-8],[-21,-5],[-15,-19],[-27,5],[-1,0],[-45,-8],[-49,-8],[-23,-9],[-20,-33],[-18,-28],[-17,-26],[-14,-31],[-3,-45],[0,-25],[-9,-37],[-9,-26],[-26,-3],[-53,24],[-4,2],[-6,2],[-4,2],[-75,16]],[[54269,10629],[-14,10],[-39,11],[-1,1],[-42,12],[-25,12],[-6,9],[-3,12],[4,31],[23,68],[2,7],[3,16],[1,7],[-1,17],[-4,8],[-12,14],[-18,15],[-3,5],[-12,57],[2,8],[6,8],[36,27],[3,2],[3,3],[4,4],[3,3],[10,19],[6,51],[0,7],[1,11],[-9,25],[18,12],[5,3],[0,1],[0,7],[-1,1],[-7,85],[-2,24],[-2,17],[-2,28],[-21,106],[-19,53],[39,51],[19,57],[2,9],[-16,53],[-3,23],[2,10],[13,25],[8,18],[13,30],[9,31],[2,5],[1,10],[2,28],[-21,5],[-36,7],[-4,1],[-82,35],[-6,7],[-38,70],[-3,16],[1,14],[24,35],[3,5],[16,30],[0,6],[0,5],[-11,9],[-12,3],[-24,-1],[-29,-4],[-13,-1],[-12,-2],[-9,0],[-7,0],[-13,2],[-16,3],[-36,10],[-2,8],[-9,40],[-4,18],[23,12],[-32,53],[-31,52],[-29,48],[3,8],[27,58],[31,2],[6,3],[5,5],[3,4],[6,33],[-1,12],[-10,18],[-21,34],[-9,15],[-28,21],[-24,6],[-26,3],[-12,10],[-2,6],[-10,48],[-1,12],[-1,86],[1,9],[1,17],[3,43],[-43,2],[-62,0],[-68,2],[-49,1],[-24,-1],[-29,-1],[-27,0],[-46,4],[-118,3],[-44,1],[-156,4],[-90,1],[-56,1],[-4,0],[-28,1],[-172,3],[-94,4],[-75,2],[-24,0],[-172,5],[-243,1],[-92,0],[-10,1],[-138,2],[-30,1],[-3,0],[-44,0],[-244,7],[-37,1],[-129,3],[-30,1],[-27,1],[-52,1],[-41,1],[-107,3],[-132,3],[-3,0],[-123,3],[0,25],[-2,131],[0,16],[0,35],[-4,336],[0,26],[-2,212],[-1,39],[0,83],[3,150],[0,24],[-3,119],[0,1],[-7,117],[-2,69],[-3,63],[-3,177],[-112,-2],[-78,0],[-80,1],[-9,0],[-27,-1],[-11,0],[-20,-1],[-4,1],[-19,1],[-4,1]],[[86552,8744],[-16,-46],[-26,59],[-8,56],[-12,65],[-5,28],[-7,39],[-10,51],[-11,40],[17,38],[7,16],[41,-45],[33,-73],[4,-36],[10,-82],[-7,-46],[-2,-22],[-2,-7],[-6,-35]],[[86563,9499],[-34,-20],[-11,21],[-20,36],[-27,39],[-15,21],[-14,21],[-17,25],[-25,85],[-21,91],[3,25],[6,49],[26,65],[53,49],[43,-5],[34,-12],[40,-20],[36,-30],[14,-11],[31,-62],[-6,-51],[-48,-25],[-7,-65],[7,-63],[3,-27],[-51,-136]],[[86448,10464],[-24,-86],[-56,17],[-46,18],[-3,41],[-50,6],[-5,42],[184,-38]],[[86054,10482],[64,-13],[74,7],[3,-11],[10,-31],[-59,-21],[10,-9],[34,-31],[13,-5],[40,-15],[59,-34],[23,-53],[8,-19],[-40,-61],[-12,-61],[-24,-64],[-49,-1],[-10,12],[-33,43],[-54,63],[-31,41],[-28,39],[-23,38],[-11,18],[-46,44],[-53,3],[-60,68],[-43,2],[1,45],[29,7],[20,5],[44,3],[33,9],[7,2],[50,-6],[54,-14]],[[85516,10371],[-52,-19],[-42,81],[-17,51],[-1,38],[-1,28],[-2,48],[-3,3],[-16,23],[10,14],[15,24],[74,16],[54,-35],[39,-39],[36,-23],[34,-32],[12,-19],[19,-30],[-33,-42],[-33,-29],[-38,-33],[-55,-25]],[[88061,12438],[-2,-17],[55,64],[25,71],[14,84],[22,81],[15,-61],[0,-40],[0,-67],[-1,-54],[0,-84],[-2,-71],[1,-74],[-3,-73],[-9,-107],[-4,-65],[-4,-58],[-7,-43],[-17,-42],[-13,-29],[-14,-49],[-11,-48],[-13,-34],[-18,-50],[-24,-64],[-24,-69],[-21,-51],[-13,-38],[-15,-39],[-24,-74],[-39,-82],[-32,-53],[4,-68],[-17,-60],[-12,-51],[-15,-42],[-9,-42],[-17,-73],[-13,-48],[-18,-60],[-17,-64],[-13,-42],[-33,-98],[-29,-81],[-10,-38],[-25,-80],[-31,-70],[-15,-44],[-77,-45],[-20,-63],[-29,-32],[-65,-73],[-102,-168],[-47,-78],[-30,-57],[-23,-51],[-23,-51],[-15,-39],[-30,-78],[-30,-77],[-18,-54],[-11,-44],[-16,-54],[-13,-44],[-12,-50],[-19,-77],[-10,-63],[-13,-72],[-9,-64],[-5,-44],[-5,-67],[-5,-68],[-2,-77],[4,-56],[1,-44],[5,-51],[7,-74],[9,-60],[16,-67],[12,-46],[20,-54],[34,-91],[33,-86],[31,-70],[37,-74],[32,-59],[9,-57],[-61,-46],[-62,23],[-25,22],[-34,16],[-59,38],[-46,-12],[-32,-14],[-38,9],[-50,-2],[-59,43],[-8,52],[-4,2],[-39,20],[-33,34],[-12,12],[-4,38],[-2,15],[-51,16],[-52,70],[-31,49],[-1,1],[-5,52],[18,54],[41,69],[38,74],[50,50],[38,36],[1,1],[-10,90],[18,42],[16,71],[25,85],[18,75],[14,56],[17,55],[4,65],[-11,62],[-13,47],[-1,2],[-3,10],[-32,36],[-23,28],[-10,13],[-29,49],[-47,29],[-34,31],[-22,47],[-4,24],[-7,42],[22,38],[9,22],[10,25],[34,33],[27,27],[-4,45],[4,21],[6,26],[21,63],[-5,41],[0,4],[47,44],[44,-14],[-1,6],[-7,54],[-11,33],[-12,57],[-4,1],[-55,7],[-57,29],[-49,49],[19,52],[45,66],[22,86],[4,64],[23,37],[-6,61],[-12,44],[-80,-42],[-40,-49],[-27,-72],[-47,-2],[3,16],[5,20],[15,39],[29,56],[33,54],[41,50],[15,34],[3,11],[6,27],[18,38],[-33,35],[-8,9],[-9,4],[-76,41],[-50,61],[-24,49],[-39,43],[-41,39],[-38,40],[-66,41],[-48,34],[-54,37],[-37,51],[-20,22],[-30,32],[-42,40],[-23,21],[-48,23],[-57,53],[14,47],[2,7],[25,35],[53,19],[27,11],[30,13],[19,13],[40,25],[23,25],[15,16],[24,27],[32,37],[2,28],[4,52],[5,35],[7,49],[47,40],[27,15],[15,8],[57,25],[45,15],[34,11],[72,10],[53,-1],[47,9],[47,4],[49,9],[22,4],[5,-63],[12,-85],[73,72],[57,3],[64,-34],[55,-43],[76,-42],[45,-24],[32,-19],[45,-34],[14,-16],[15,-17],[-3,-40],[-44,-43],[-53,-23],[-52,-13],[-54,-15],[-42,-11],[-58,-4],[-94,-10],[-19,-14],[-47,-33],[70,4],[9,1],[31,3],[41,0],[48,0],[57,8],[52,0],[54,9],[57,2],[19,1],[21,15],[36,25],[33,-3],[-5,86],[2,12],[5,26],[-8,60],[-19,50],[-16,23],[-19,29],[-43,27],[-45,-9],[-55,21],[-45,23],[-14,10],[-30,22],[-11,10],[-30,24],[-31,37],[4,77],[31,51],[18,40],[20,30],[8,13],[27,45],[22,29],[23,30],[42,41],[12,12],[48,30],[40,25],[40,18],[51,20],[48,16],[50,13],[40,4],[27,18],[26,17],[41,47],[11,13],[14,23],[17,29],[7,14],[23,49],[19,65],[13,60],[2,13],[2,54],[2,23],[2,27],[20,87],[28,77],[6,14],[22,51],[5,57],[28,50],[14,36],[19,39],[53,67],[59,38],[40,7],[60,9],[38,4],[32,-18],[1,-87],[-10,-66],[5,-57],[10,-49],[12,-40],[24,-57],[42,-53],[17,-39],[-21,-72],[-54,-35],[-3,-3],[-27,-21],[2,-25],[1,-15],[-9,-39],[9,-53],[-10,-51],[1,-15],[1,-23],[-11,-58],[-22,-41],[-2,-42]],[[86743,14088],[-28,-21],[-43,1],[-13,29],[-4,8],[18,104],[29,57],[21,40],[-2,81],[-16,15],[-26,25],[51,43],[45,8],[69,17],[54,9],[15,2],[65,-4],[53,-25],[56,-32],[22,-39],[5,-43],[3,-27],[-13,-23],[-17,-30],[-48,-20],[-90,-37],[-52,-18],[-58,-51],[-67,-47],[-29,-22]],[[86309,14810],[-6,-20],[-68,22],[-45,53],[-16,54],[-24,51],[-26,42],[-30,37],[53,8],[59,-16],[63,-35],[58,-73],[-4,-53],[-5,-45],[-9,-25]],[[85016,15596],[44,-27],[14,-9],[23,25],[21,24],[50,32],[62,5],[58,-7],[60,-20],[37,-20],[27,-21],[31,-56],[7,-62],[0,-18],[-1,-22],[8,-74],[-61,-2],[24,-38],[59,-20],[41,-34],[56,-34],[63,-35],[73,-28],[47,-21],[52,-16],[38,-16],[82,-24],[61,-33],[51,-31],[22,-30],[15,-19],[27,-73],[10,-27],[12,-30],[28,-47],[43,-51],[24,-58],[21,-63],[24,-55],[27,-32],[54,-32],[57,-23],[53,-13],[65,-9],[51,-3],[-65,-42],[-15,-29],[-32,-19],[-27,-15],[-17,11],[-50,33],[-56,30],[-60,20],[-34,10],[0,-2],[1,-20],[74,-36],[99,-62],[37,-11],[37,1],[32,20],[19,19],[64,34],[61,10],[49,-27],[0,-25],[-1,-23],[-16,-17],[-24,-25],[-23,-64],[-2,-15],[-7,-64],[5,-52],[40,-33],[19,-21],[55,2],[49,23],[36,20],[9,5],[41,-2],[36,58],[45,31],[3,3],[55,25],[63,7],[5,-79],[-45,-57],[-11,-41],[-15,-19],[-12,-17],[-8,-48],[-13,-54],[-6,-24],[-25,-32],[-29,0],[-6,1],[-83,-49],[-71,-21],[-51,-29],[-51,-30],[-58,-34],[-41,-31],[-14,-10],[-50,-37],[-48,-42],[-50,-22],[-40,7],[-23,35],[-4,4],[0,20],[0,23],[8,35],[7,28],[19,57],[21,72],[8,53],[-5,27],[-28,-12],[-40,-89],[-18,-28],[-7,-24],[-4,-14],[-6,-26],[-6,-24],[4,-76],[14,-67],[28,-41],[3,-45],[-9,-25],[-9,-23],[-26,-26],[-29,-30],[-60,-39],[-55,0],[-56,29],[-16,7],[-13,9],[-33,20],[-27,36],[-5,6],[-6,11],[-20,33],[-26,46],[-37,54],[-39,37],[-38,72],[-49,11],[-11,7],[-34,24],[-43,22],[-62,21],[-44,8],[-65,8],[-55,0],[-66,-8],[-52,-14],[-61,-9],[-83,-18],[-66,-20],[-52,-26],[-57,-29],[-23,-28],[-18,-29],[-30,-22],[-20,-19],[-28,-24],[-14,-15],[-28,-29],[-35,-42],[-30,-34],[-38,-39],[-39,-32],[-51,36],[-16,17],[-23,24],[-46,42],[-33,58],[-37,12],[-58,17],[-52,15],[-42,-1],[-24,-1],[-61,1],[-11,-1],[-38,-3],[-82,-24],[-50,-27],[-54,-20],[-16,2],[-56,8],[-1,14],[-8,75],[4,26],[3,22],[-15,40],[-1,2],[-3,11],[-7,22],[-12,22],[-11,21],[-24,25],[-19,21],[-57,34],[-48,16],[-15,6],[-16,0],[-56,1],[-48,1],[-49,-3],[-3,0],[-50,-12],[-67,-16],[-81,-20],[-100,21],[-63,12],[-9,0],[-47,-4],[-35,-14],[-15,-6],[-52,-12],[-30,35],[-25,28],[10,-67],[13,-38],[23,-53],[28,-49],[17,-66],[1,-33],[1,-20],[0,-1],[-10,-46],[17,-50],[-12,-58],[-5,-2],[-55,-23],[-52,-4],[-57,-42],[105,-6],[57,7],[57,45],[5,67],[-3,70],[1,49],[1,35],[1,14],[0,21],[-4,51],[-7,67],[51,36],[66,-30],[52,-17],[63,-10],[63,-5],[19,-1],[9,2],[35,6],[57,10],[57,5],[32,7],[20,-9],[9,-5],[52,9],[16,3],[28,-31],[-2,-29],[-3,-31],[2,-41],[23,-81],[24,-43],[34,-47],[8,-4],[57,-35],[60,-26],[76,-9],[81,14],[57,19],[50,26],[49,13],[45,-34],[54,-42],[55,-42],[41,-32],[14,-13],[27,-22],[36,-28],[14,-11],[53,-25],[41,-7],[55,0],[13,0],[21,3],[37,7],[24,8],[25,9],[55,19],[20,12],[38,24],[40,34],[34,40],[43,38],[47,44],[18,18],[43,41],[60,51],[97,42],[91,17],[43,-27],[23,-15],[35,-32],[40,-35],[50,-45],[49,-43],[39,-44],[4,-7],[23,-40],[7,-62],[53,-23],[37,-21],[12,-6],[26,-14],[15,-6],[33,-16],[47,-45],[32,-15],[17,-14],[38,-12],[13,-4],[27,-12],[56,-27],[64,-25],[33,-11],[14,-5],[16,-2],[53,-9],[59,-6],[16,-1],[42,15],[48,11],[62,24],[60,33],[55,62],[15,74],[32,44],[43,26],[44,12],[51,6],[60,-30],[30,-29],[51,-16],[34,8],[8,2],[44,-22],[60,-38],[-9,-19],[-12,-23],[-28,-60],[55,28],[14,8],[52,79],[33,-52],[-7,-54],[19,-57],[16,-52],[32,-36],[26,-33],[8,-9],[4,-76],[-15,-39],[-30,-33],[-10,-12],[-23,-21],[-24,-23],[-24,-20],[-38,-33],[-36,-32],[-24,-21],[-16,-16],[-21,-20],[-45,-46],[-23,-26],[-10,-11],[-11,-12],[-31,-35],[-54,-64],[-73,-48],[-43,25],[-17,11],[-30,3],[-31,-15],[47,-38],[31,-42],[-44,-50],[-16,-18],[-7,-6],[-43,-40],[-53,-37],[-25,-17],[-47,-32],[-37,-17],[-41,-18],[-71,-13],[-57,2],[-28,26],[-12,12],[-33,49],[-10,-64],[21,-45],[-58,-43],[-32,-31],[-5,-7],[-23,-35],[-41,-66],[-14,-21],[-27,-42],[-19,-26],[-17,-23],[-40,-50],[-74,-25],[-27,-8],[-9,-3],[-38,-13],[-36,-75],[-11,-93],[-11,-74],[9,-6],[47,-33],[19,-61],[52,-5],[51,-31],[39,-42],[33,-41],[45,-51],[10,-9],[46,-37],[14,-12],[27,-23],[-14,-66],[11,4],[42,17],[61,-24],[55,-30],[40,-33],[29,-37],[25,-41],[31,-56],[7,-48],[48,-12],[13,-45],[-9,-27],[-5,-17],[-42,-11],[-25,-14],[-12,-6],[-8,0],[-24,2],[-36,9],[-64,25],[-53,12],[-57,8],[-52,1],[-50,16],[-10,1],[-47,5],[-21,29],[-35,-10],[-60,-13],[-12,-3],[-13,0],[-57,-1],[-42,7],[-35,-17],[-56,19],[-42,52],[-31,46],[-4,5],[-40,49],[-26,21],[-30,23],[-11,3],[-25,6],[-38,6],[-65,-4],[-51,-1],[45,53],[57,59],[-46,-8],[-15,-3],[-27,-37],[-12,-17],[-34,-19],[-16,-9],[-14,6],[-31,12],[-10,39],[16,52],[-7,50],[-7,28],[-7,32],[-1,52],[-27,-16],[7,-105],[2,-34],[-12,-21],[-7,-11],[-18,-24],[-16,-22],[0,-1],[13,-33],[39,-12],[57,-24],[3,-3],[39,-41],[-71,-30],[-64,-15],[-17,-6],[-37,-14],[-56,-18],[-56,-26],[-30,-12],[-18,-8],[-9,-1],[-28,-4],[-51,37],[-32,71],[-4,56],[3,29],[2,33],[7,42],[1,9],[13,37],[5,8],[20,34],[42,39],[27,48],[-4,44],[-25,31],[-9,12],[-33,24],[-64,23],[-4,1],[-27,8],[-16,4],[-41,-8],[-132,-28],[-36,-26],[-21,-15],[-21,-5],[-59,8],[-56,-27],[-35,-38],[21,-79],[2,-10],[6,-9],[41,-56],[19,-78],[28,-53],[68,-55],[33,-43],[-8,-35],[-15,-59],[-2,-25],[-1,-14],[-7,-62],[-33,4],[5,49],[17,43],[0,41],[-62,36],[-73,-11],[-41,-116],[-1,-32],[-4,0],[-33,-5],[-17,30],[-52,68],[-42,11],[3,-15],[5,-37],[40,-50],[5,-12],[7,-21],[19,-8],[5,-2],[26,-14],[41,-15],[13,11],[22,18],[28,67],[11,25],[3,21],[5,34],[4,-7],[24,-41],[-14,-75],[27,-16],[48,-30],[42,20],[5,45],[-2,53],[17,39],[6,14],[17,63],[-10,77],[-30,33],[-7,8],[-52,39],[-21,44],[-2,6],[-2,21],[-5,80],[-64,56],[-14,19],[134,24],[2,0],[125,53],[119,12],[5,-1],[55,-15],[1,-16],[1,-16],[-10,-55],[-55,-69],[-36,-42],[-33,-39],[-29,-68],[13,-57],[22,-45],[16,-37],[3,-8],[8,-10],[31,-39],[0,-1],[30,-38],[39,-37],[44,-5],[64,4],[56,24],[71,29],[57,13],[19,5],[51,14],[43,26],[11,-7],[8,-6],[12,-7],[22,-13],[-11,-73],[1,-54],[1,-43],[2,-5],[19,-32],[1,-35],[25,-48],[102,-45],[66,-23],[46,31],[20,53],[51,20],[69,11],[58,-15],[77,-55],[18,-12],[49,-32],[34,-32],[33,-31],[37,-16],[15,-7],[19,-26],[37,-52],[91,-76],[-19,-88],[3,-65],[20,-50],[18,-60],[18,-123],[13,-38],[8,-21],[-37,-68],[-18,-53],[-51,-12],[-29,13],[-30,13],[-9,3],[-55,21],[-55,34],[-67,46],[-64,48],[-36,55],[-30,27],[28,59],[2,3],[-5,12],[-9,27],[-8,24],[-6,17],[9,55],[0,2],[16,37],[31,30],[21,29],[19,25],[54,27],[16,11],[17,11],[-31,42],[-13,16],[-19,20],[-29,30],[-41,-11],[-41,-60],[-4,0],[-33,-1],[-21,-42],[-37,-13],[-27,-23],[-33,10],[30,40],[16,37],[-14,26],[-50,10],[-6,-1],[-29,-6],[-33,-21],[-35,9],[-21,12],[-5,-23],[11,-6],[10,-6],[33,-11],[44,8],[31,7],[4,1],[-9,-9],[-20,-21],[-20,-32],[5,-28],[17,-17],[10,-3],[20,-6],[-4,-29],[-2,-15],[-21,-10],[-17,-10],[-38,-58],[5,-3],[34,-23],[19,-60],[42,-39],[31,-46],[51,-60],[55,-57],[44,-34],[47,-28],[31,-28],[40,-38],[35,-31],[51,-12],[59,-19],[37,-34],[36,-30],[41,-41],[40,-53],[19,-59],[14,-81],[1,-35],[0,-40],[6,-28],[6,-28],[34,-42],[48,-94],[5,-85],[-2,-24],[-4,-39],[-11,-29],[-26,-41],[-5,-8],[-8,-12],[-25,-34],[-38,-51],[4,-26],[8,-48],[-26,-76],[-22,-51],[-18,-37],[-14,-27],[-21,-57],[-19,-41],[7,-38],[-2,-23],[-3,-24],[-33,-45],[-50,-25],[-67,-10],[-75,32],[-3,-3],[-1,-1],[-41,-41],[-56,1],[-3,0],[-58,-21],[-46,6],[-61,3],[-50,8],[-62,17],[9,7],[27,24],[85,16],[42,45],[-1,46],[-30,28],[-60,0],[-115,-16],[-87,-12],[-49,37],[-11,34],[-9,28],[24,32],[40,42],[20,-10],[3,-54],[17,-36],[69,-18],[45,5],[69,56],[2,1],[2,4],[22,28],[-15,73],[-1,0],[-71,30],[-185,49],[-15,-15],[41,-19],[51,-23],[145,-66],[16,-13],[-4,-19],[-3,-9],[-77,-48],[-51,-1],[-11,36],[-11,42],[-20,39],[-38,-4],[-6,0],[-34,-29],[-46,-46],[20,-113],[49,-39],[143,0],[93,15],[31,10],[22,-31],[-42,-34],[-1,0],[-60,5],[-105,-70],[-47,-40],[-8,-6],[-9,-29],[-8,-24],[-13,-46],[-1,-55],[6,-30],[5,-27],[7,-67],[-63,-10],[-59,41],[-13,37],[-12,33],[-24,38],[-5,12],[-11,27],[-4,10],[-51,-16],[-55,-1],[-48,13],[-1,-1],[-36,-36],[-48,-49],[-25,-35],[-65,-35],[-8,26],[-4,12],[22,60],[-48,30],[-7,5],[-16,6],[-79,28],[-42,41],[32,-15],[31,-5],[23,7],[10,24],[39,75],[-10,22],[-31,12],[-5,1],[-72,-21],[-19,-19],[-4,-4],[-33,-15],[-2,0],[-28,2],[1,32],[23,42],[18,35],[9,17],[22,30],[-20,26],[-5,-1],[-23,-2],[-43,-20],[-31,-19],[-8,22],[42,26],[17,22],[1,30],[-22,7],[6,-13],[5,-13],[-53,-27],[-21,-27],[-15,-20],[8,-25],[47,-6],[31,17],[23,15],[14,9],[-3,-32],[-12,-17],[-5,-6],[-4,-12],[-15,-42],[-7,-18],[-4,-11],[0,-22],[26,-10],[6,-3],[50,5],[75,32],[32,5],[2,-11],[2,-13],[-25,-38],[-9,-27],[-12,6],[-19,10],[-26,22],[-31,2],[-34,-5],[-14,-17],[-53,14],[-45,11],[-45,-11],[-16,6],[-21,7],[-17,3],[-37,6],[-56,-3],[-70,-25],[-47,-42],[-65,-41],[11,76],[6,52],[-3,5],[-19,31],[-31,19],[-17,10],[-14,5],[-25,11],[-83,12],[-32,-22],[-42,-54],[0,-40],[0,-20],[16,-94],[-4,-26],[-5,-28],[-2,-22],[-33,-11],[-1,1],[-42,5],[-1,0],[-23,31],[-11,43],[-23,37],[-22,26],[-7,0],[-35,1],[-48,-6],[-46,2],[-30,4],[-8,12],[-11,16],[-1,34],[21,32],[22,29],[14,28],[-2,33],[-7,8],[-13,13],[-70,81],[-40,5],[-16,-3],[-20,-13],[-8,-5],[-12,-15],[-6,-35],[9,-59],[-4,-21],[-8,-13],[-11,-7],[-10,-6],[-10,-2],[-33,7],[-26,31],[-12,40],[-28,34],[-11,7],[-28,4],[-9,-6],[-25,-14],[-45,-63],[-42,-29],[-11,-7],[-7,-2],[-19,-3],[-57,-6],[-22,-3],[-39,8],[-23,14],[-16,13],[-36,46],[-4,47],[10,40],[38,118],[4,44],[-57,34],[-3,2],[-44,26],[-34,-55],[-4,-7],[-6,4],[-74,53],[5,30],[34,33],[11,10],[8,29],[-4,31],[-12,23],[-26,26],[-37,5],[-22,-3],[-62,-35],[-40,-14],[-60,-6],[-74,2],[-58,-12],[-47,-15],[-17,-12],[-21,-13],[-12,-13],[-6,-37],[26,-31],[26,-12],[24,-3],[23,5],[6,5],[76,52],[20,15],[40,-3],[28,-18],[29,-31],[9,-23],[2,-25],[-6,-29],[-10,-24],[-16,-20],[-28,-18],[-28,-8],[-4,-1],[-25,3],[-20,8],[-62,39],[-70,9],[-86,-4],[-57,0],[-55,0],[-61,0],[4,145],[-140,-52],[-42,-8],[-40,5],[-71,40],[-45,6],[-19,-3],[-8,-4],[-25,-3],[-12,-1],[-54,-20],[-44,-24],[-39,-9],[-2,0],[-11,3],[-20,4],[-39,27],[-29,6],[-7,2],[-30,2],[-25,2],[-14,8],[-88,53],[-24,25],[-3,17],[14,83],[-99,25],[-83,37],[-30,26],[-1,31],[18,18],[3,3],[25,27],[1,22],[-16,19],[-70,28],[-54,8],[-32,-2],[-63,11],[-87,39],[-34,21],[-10,13],[-26,28],[-22,52],[-22,19],[-147,31],[-31,1],[-21,-13],[-2,-6],[-48,-160],[-5,-30],[41,-52],[-3,-13],[-3,-2],[-7,-5],[-7,-5],[-154,-42],[-29,-5],[-36,5],[-13,13],[-3,6],[9,34],[8,10],[5,27],[-7,14],[-18,22],[-45,31],[-13,15],[7,18],[1,1],[33,22],[13,8],[2,1],[0,1],[4,23],[-14,21],[-28,43],[-58,65],[-33,40],[-45,66],[-9,20],[0,36],[-16,16],[-46,-21],[-1,0],[-1,-1],[-12,-9],[-20,-16],[-3,-21],[24,-39],[-1,-7],[-1,-4],[-10,-7],[-13,-1],[-33,26],[-36,43],[-13,30],[-16,18],[-74,57],[-9,4],[-6,3],[-70,9],[-52,-2],[-114,-5],[-22,-1],[-25,-2],[-28,-17],[-28,-17],[-57,3],[-7,1],[-29,14],[-52,7],[-36,-2],[-5,-1],[-49,-12],[-3,-2],[-81,-37],[-38,-5],[-17,3],[-22,4],[-10,15],[2,11],[35,49],[1,1],[0,1],[8,26],[-11,12],[-25,-2],[-2,-2],[-19,-12],[-24,-10],[-3,0],[-20,-8],[-45,6],[-26,11],[-48,31],[-41,36],[-15,2],[-33,-15],[-22,0],[-24,6],[-13,0],[-73,-1],[-51,0],[-25,-4],[-4,0],[-23,-9],[-37,-14],[-25,1],[-14,7],[-20,28],[-4,11],[5,35],[-18,22],[-93,37],[-40,5],[-53,-1],[-51,6],[-12,14],[14,90],[-13,18],[-22,17],[-13,15],[-4,15],[0,68],[-16,16],[-45,11],[-20,14],[-34,37],[-1,9],[-23,30],[-1,85],[8,51],[-19,36],[-15,18],[-12,2],[-33,-7],[-27,6],[-33,24],[-70,67],[-16,2],[-8,1],[-2,-1],[-24,-13],[-25,-12]],[[77662,10174],[0,2],[5,35],[12,78],[5,33],[6,40],[10,68],[1,8],[5,29],[5,36],[8,48],[3,24],[2,11],[3,15],[5,40],[4,25],[4,28],[3,17],[4,26],[5,39],[6,36],[9,64],[2,13],[6,36],[5,30],[1,12],[3,21],[8,52],[4,25],[5,39],[6,39],[13,72],[5,39],[10,64],[19,129],[8,52],[5,26],[6,43],[11,68],[3,23],[8,57],[13,83],[9,59],[7,46],[4,26],[-24,-16],[-3,-1],[-3,-5],[-5,-7],[0,-1],[-6,-35],[1,-4],[3,-10],[-3,-16],[-1,0],[-23,-13],[-7,0],[-19,0],[-10,0],[-14,17],[-12,38],[-16,18],[-29,11],[-6,2],[-101,-16],[-3,-1],[-5,1],[-10,12],[3,17],[4,4],[5,6],[2,2],[2,1],[19,12],[46,30],[15,16],[3,4],[3,4],[0,1],[2,2],[0,17],[-5,4],[-10,11],[-7,7],[-18,2],[-6,1],[-21,-3],[-1,0],[-3,-1],[-49,-19],[-5,-2],[-18,-12],[-2,-5],[-11,-20],[-20,-23],[-7,-4],[-33,-20],[-5,-3],[-3,1],[-31,4],[-5,1],[-24,25],[-5,13],[-3,9],[-7,18],[0,4],[8,44],[56,127],[0,1],[31,57],[31,59],[2,4],[3,3],[43,45],[3,3],[36,44],[7,12],[8,14],[11,18],[46,93],[35,70],[12,26],[27,61],[15,35],[8,18],[42,21],[21,10],[31,35],[9,27],[5,17],[8,136],[-2,22],[0,6],[-13,15],[-35,16],[-9,2],[-60,10],[-5,2],[-36,14],[-32,25],[-45,37],[-2,2],[-10,13],[-1,1],[2,13],[2,1],[40,26],[3,14],[-8,9],[-46,9],[-4,3],[-10,7],[-16,10],[-39,25],[-37,24],[-21,-14],[-6,1],[-22,3],[-39,43],[-11,12],[-42,83],[-3,11],[-28,110],[-3,9],[0,1],[-1,27],[3,20],[1,7],[42,60],[3,2],[10,7],[1,0],[18,0],[27,24],[0,1],[70,46],[16,2],[8,4],[8,11],[6,14],[17,87],[-12,10],[-2,1],[-1,1],[-33,26],[-39,31],[-20,23],[20,-7],[9,-2],[6,-2],[1,1],[4,2],[4,47],[-5,6],[-6,33],[-1,1],[-3,34],[10,39],[2,5],[12,28],[-22,52],[-3,6],[-1,3],[2,1],[51,23],[1,0],[7,4],[6,3],[25,37],[25,43],[6,8],[2,14],[0,3],[5,38],[2,19],[0,2],[-39,56],[-12,17],[7,0],[50,-3],[4,2],[12,9],[2,0],[0,2],[2,12],[-3,5],[-4,7],[-4,0],[-18,1],[-28,3],[-2,1],[-9,8],[-4,12],[0,2],[4,33],[0,8],[28,22],[5,4],[-16,7],[-10,5],[-2,3],[-4,6],[-6,11],[2,11],[3,2],[10,5],[14,9],[1,5],[1,8],[-3,6],[-1,1],[-20,37],[-2,3],[-7,9],[-3,4],[-47,16],[-3,1],[-12,15],[-11,16],[-14,3],[-33,8],[-17,4],[-29,8],[-10,-13],[-5,-6],[-1,-1],[-14,-9],[-5,0],[-5,1],[-2,0],[-11,13],[1,2],[2,11],[1,1],[1,15],[-4,9],[-9,6],[-15,2],[-6,-2],[-5,-2],[-5,-9],[-83,-34],[-9,-4],[-9,4],[-43,44],[-19,32],[-6,2],[-15,7],[-19,3],[-50,8],[-3,1],[-6,0],[-13,0],[-53,8],[-20,4],[-6,1],[-5,6],[0,9]],[[25785,15569],[0,-2],[7,-122],[2,-358],[1,-230],[0,-47],[0,-25],[1,-104],[2,-432],[1,-195],[0,-89],[0,-92],[-5,-208],[0,-23],[-1,-38],[0,-206],[0,-500],[0,-117],[0,-128],[-4,-168],[-2,-106],[-2,-98],[-4,-161],[-1,-65],[-1,-53],[-3,-133],[-1,-51],[-2,-86],[-5,-206],[-2,-80],[-2,-101],[0,-7],[-1,-53],[-1,-8],[0,-18],[-1,-41],[-1,-35],[-7,-210],[0,-51],[-1,-127],[-1,-71],[-5,-101],[1,-60],[0,-74],[-6,-203],[-1,-37],[-3,-157],[-3,-160],[-2,-92],[-1,-64],[-2,-148],[-3,-47],[2,-161],[0,-70],[-2,-229],[-1,-91],[-2,-104],[-4,-228],[-4,-205],[-2,-204],[0,-24],[-1,-49],[-2,-144],[-1,-100],[-6,-444],[-2,-159],[-4,-173]],[[25697,7196],[-3,0],[-83,3],[-355,13],[-130,4],[-145,6],[-122,4],[-342,8],[-4,0],[-237,5],[-84,3],[-138,4],[-158,5],[-14,0],[-16,1],[-134,4],[-212,16],[-261,18],[-62,5],[-42,2],[-23,2],[-247,14],[-7,0],[-226,13],[-115,6],[-78,4],[-40,3],[-50,3],[-83,5],[-157,7],[-342,17],[-53,2],[-118,6],[-116,5],[-92,4],[-158,7],[-121,6],[-99,4],[-33,2],[-34,1],[-164,9],[-237,13],[-371,22],[-35,2],[-37,2],[-122,6],[-37,1],[-119,6],[-128,6],[-70,3],[-131,6],[-34,2],[-115,5],[-83,4],[-371,16],[-365,16],[-74,3],[-306,13],[-58,2],[-134,6],[-22,0],[-71,4],[-214,10],[-74,4],[-112,6],[-366,17],[-4,1],[-435,22],[-234,11],[-26,1],[-19,1],[-26,1],[-233,13],[-227,9],[-37,2],[-138,-1],[-39,2],[-128,7]],[[15567,7661],[6,21],[3,31],[1,23],[-1,25],[-4,25],[-8,27],[-10,23],[-18,28],[-32,42],[-31,52],[-27,39],[-20,44],[-9,19],[-9,20],[-6,30],[7,39],[10,22],[9,21],[5,37],[0,22],[3,29],[3,15],[4,15],[6,28],[20,59],[12,41],[26,38],[15,23],[9,6],[17,10],[40,5],[21,2],[23,15],[17,14],[-8,27],[-17,41],[-15,28],[0,2],[-2,21],[2,26],[1,29],[6,21],[21,21],[29,14],[25,-16],[34,-15],[23,9],[40,15],[22,4],[24,26],[15,28],[14,17],[-12,22],[-19,14],[6,31],[9,24],[4,25],[23,7],[40,13],[35,5],[28,-8],[23,-4],[27,-13],[30,6],[12,21],[-4,25],[3,40],[24,11],[13,22],[23,15],[21,9],[21,0],[25,2],[30,-6],[22,-11],[28,-15],[22,-5],[16,20],[27,7],[28,-4],[20,13],[31,8],[23,16],[20,-16],[-3,36],[15,26],[27,9],[30,8],[25,-6],[27,-4],[2,-22],[25,11],[16,20],[20,-2],[11,23],[9,23],[5,24],[13,18],[19,9],[2,1],[13,24],[17,23],[6,22],[8,23],[2,26],[4,8],[9,18],[2,28],[7,23],[18,12],[19,17],[25,13],[4,26],[21,16],[16,17],[23,-1],[18,13],[26,-11],[25,-9],[29,-2],[29,5],[21,-7],[10,23],[28,-6],[3,-23],[28,6],[21,-9],[21,12],[18,11],[-28,16],[4,22],[11,21],[10,22],[-10,22],[-14,15],[-1,26],[-13,27],[15,17],[4,27],[-6,24],[-26,8],[-8,25],[7,26],[4,22],[21,12],[23,-3],[17,14],[6,5],[17,13],[17,15],[-3,6],[-1,3],[-5,17],[-10,23],[-2,35],[6,28],[21,15],[34,12],[8,22],[-4,28],[21,7],[18,3],[5,1],[21,4],[27,-6],[16,21],[5,25],[25,25],[8,7],[9,8],[15,8],[12,7],[25,19],[1,14],[0,12],[1,31],[22,-8],[5,-3],[15,-9],[13,21],[11,20],[-6,11],[-5,11],[-3,31],[-20,20],[-2,24],[2,23],[21,16],[2,87],[0,10],[0,28],[0,28],[-1,286],[0,1],[0,75],[0,94],[6,71],[1,25],[54,0],[-1,193],[142,-3],[12,0],[30,-1],[31,0],[16,18],[0,23],[2,66],[0,24],[0,5],[1,87],[3,130],[2,109],[2,144],[2,147],[1,124],[1,236],[1,37],[0,33],[0,23],[0,58],[1,35],[1,63],[1,24],[3,309],[3,59],[0,38],[0,22],[-1,33],[1,37],[1,37],[0,31],[0,34],[3,87],[1,12],[2,143],[1,34],[6,215],[0,92],[-1,74],[2,23],[13,302],[7,269],[2,99],[1,24],[87,-2],[114,-3],[21,-2],[2,51],[0,147],[93,0],[79,0],[52,0],[7,199],[9,212]],[[31240,15547],[0,-61],[-1,-54],[-1,-69],[0,-33],[-1,-25],[-1,-42],[-1,-69],[-1,-41],[0,-38],[-1,-57],[-2,-33],[0,-29],[0,-3],[-2,-48],[-3,-45],[-4,-58],[-1,-31],[-6,-92],[-2,-43],[-9,-127],[-2,-22],[-4,-51],[-5,-85],[-1,-31],[2,-61],[-1,-39],[-1,-86],[-1,-42],[1,-45],[-1,-45],[0,-23],[-1,-22],[0,-28],[0,-76],[-1,-32],[-1,-49],[0,-26],[0,-34],[-1,-45],[-1,-66],[1,-29],[1,-21],[-1,-49],[0,-35],[7,-57],[1,-5],[6,-25],[14,-21],[27,-32],[0,-6],[-1,-24],[0,-22],[1,-21],[0,-4],[-43,-34],[-3,-2],[1,-3],[4,-18],[8,-28],[20,-10],[15,-11],[9,-6],[29,-32],[9,-21],[10,-27],[28,-24],[-6,-16],[-3,-8],[17,-24],[11,-21],[5,-9],[11,-22],[2,-16],[3,-17],[0,-4],[1,-19],[8,-20],[22,-37],[27,-16],[-8,-25],[11,-22],[1,-1],[19,-18],[24,-23],[11,-7],[12,-8],[4,-3],[3,-10],[10,-25],[20,-19],[3,-3],[0,-2],[1,-9],[3,-15],[10,-18],[7,-14],[9,-12],[12,-15],[18,-23],[21,-15],[11,-21],[-6,-13],[-5,-13],[19,-15],[12,-13],[6,-6],[24,-30],[15,-16],[6,-3],[32,-18],[32,-30],[13,-19],[18,-22],[11,-21],[22,-25],[8,-24],[23,-12],[14,-15],[8,-7],[6,-12],[7,-15],[5,-3],[15,-9],[21,-35],[10,-28],[35,-19],[20,-6],[3,-21],[0,-2],[20,-13],[3,-2],[22,-9],[24,-8],[4,-24],[7,-20],[3,-7],[0,-2],[11,-29],[-7,-27],[0,-23],[-6,-25],[10,-22],[-9,-31],[-2,-26],[-1,-29],[-15,-22],[2,-26],[0,-8],[0,-18],[2,-3],[6,-10],[5,-7],[-10,-21],[-10,-25],[-3,-7],[0,-1],[8,-24],[-18,-13],[-2,-1],[1,-3],[5,-21],[18,-17],[17,-25],[-16,-33],[9,-32],[-3,-28],[21,-21],[-16,-20],[1,-25],[-17,-12],[-8,-5],[5,-28],[0,-2],[-20,-11],[-15,-23],[-24,-25],[15,-25],[-13,-18],[1,-4],[3,-20],[-7,-13],[-5,-10],[15,-26],[1,-2],[15,-19],[12,-2],[9,-1],[22,-10],[2,0],[2,-1],[18,-15],[14,-31],[13,-18],[2,-15],[1,-8],[16,-19],[12,-19],[1,-2],[0,-2],[4,-19],[1,-6],[-2,-3],[0,-2],[-12,-26],[-15,-16],[-9,-9],[-9,-22],[-14,-22],[-20,-19],[-20,-11],[-29,-23],[-10,-13],[-4,-4],[-9,-34],[-23,-7],[-15,-7],[-7,-4],[0,-4],[-2,-22],[13,-22],[-1,-26],[0,-3],[3,-25],[8,-21],[2,-4],[0,-4],[0,-20],[6,-9],[6,-9],[5,-21],[7,-26],[1,-4],[5,-21],[-1,-23],[-18,-12],[-2,-30],[11,-18],[-4,-23],[-3,-26],[-11,-19],[5,-28],[3,-19],[2,-16],[-2,-24],[0,-8],[-1,-21],[0,-101],[-2,-26],[-1,-65],[-1,-118],[-2,-101],[-1,-30],[0,-54],[-2,-33],[-1,-72],[-2,-80],[-2,-74],[0,-38],[-1,-34],[-5,-108],[-2,-71],[-1,-169],[-1,-103],[-1,-76],[0,-2],[-1,-76],[-1,-46],[-1,-47],[-1,-34],[-1,-31],[-2,-151],[-3,-49],[0,-47],[-3,-91],[-2,-30],[-1,-91],[-4,-96],[0,-70],[-2,-22],[-1,-28],[0,-40],[0,-26],[-1,-42],[0,-62],[-2,-192],[-2,-111],[-3,-101],[-1,-38],[-1,-66],[-1,-108],[-2,-126],[0,-76],[-1,-94]],[[31931,6890],[-187,9],[-255,11],[-61,2],[-53,4],[-28,2],[-25,2],[-61,5],[-56,4],[-138,10],[-130,6],[-25,2],[-32,1],[-24,1],[-37,2],[-37,2],[-52,2],[-59,3],[-94,5],[-60,3],[-86,4],[-3,0],[-419,21],[-248,12],[-90,4],[-68,4],[-161,8],[-189,10],[-116,5],[-148,8],[-555,28],[-85,3],[-296,12],[-266,9],[-29,0],[-115,6],[-259,11],[-51,2],[-40,2],[-188,8],[-35,2],[-43,2],[-348,19],[-223,12],[-154,8],[-44,2],[-29,2],[-45,2],[-47,3],[-204,11],[-112,6],[-71,2],[-5,0],[-48,2]],[[48182,5999],[-30,3],[-16,1],[-34,2],[-138,9],[-41,2],[-403,25],[-1,0]],[[47519,6041],[1,1],[4,5],[49,67],[16,14],[10,6],[11,3],[1,0],[24,1],[2,0],[79,-4],[3,0],[41,-10],[5,4],[5,7],[0,11],[0,1],[6,23],[3,6],[13,12],[1,0],[2,1],[11,3],[14,2],[3,1],[3,-1],[82,-20],[2,0],[32,-13],[23,-13],[4,-3],[22,-17],[2,-6],[1,-1],[3,-13],[7,-16],[2,-4],[1,-2],[8,-12],[6,-7],[2,-2],[53,-30],[7,-4],[57,-6],[1,-1],[1,0],[47,-3],[-7,-22]],[[44694,14557],[19,-34],[0,-1],[20,10],[6,2],[37,-22],[2,-13],[8,-45],[-4,-2],[-2,-2],[-2,-8],[4,-51],[3,-2],[28,-26],[7,-4],[2,-1],[24,-6],[5,-2],[1,0],[7,-6],[34,-60],[3,-14],[29,-165],[3,-16],[3,-5],[49,-91],[13,-23],[5,-1],[113,-26],[-13,-60],[-6,-24],[-7,-34],[17,-77],[29,-31],[52,-54],[12,-6],[64,-27],[8,4],[24,-8],[16,-18],[0,-1],[59,-68],[3,-7],[17,-81],[-1,-19],[-4,-30],[-3,-10],[-10,-23],[-2,-19],[20,-67],[6,-14],[4,-3],[71,-106],[0,-1],[14,-24],[39,-67],[5,-8],[0,-1],[10,-76],[4,-29],[52,-32],[4,-2],[1,-1],[3,-4],[24,-31],[3,-4],[3,-3],[34,-106],[0,-2],[-1,-4],[-44,-88],[-13,-15],[-1,-1],[-3,-2],[-29,-11],[-31,-29],[-40,-48],[-3,-3],[-10,-21],[-1,-2],[11,-14],[9,-11],[5,-7],[11,-13],[3,-3],[15,-21],[1,-11],[-2,-11],[-18,-82],[0,-2],[-14,-65],[-4,-20],[-26,-83],[-9,-27],[-2,-5],[-46,-76],[-2,-4],[-16,-26],[-2,-11],[5,-32],[0,-3],[10,-72],[5,-30],[4,-4],[26,-15],[4,-39],[0,-1],[-13,-24],[-8,-14],[36,-28],[8,-3],[29,5],[51,-22],[166,-71],[4,-3],[24,-86],[1,-10],[1,-6],[-1,-5],[-8,-34],[-2,-6],[9,-1],[18,-2],[36,-5],[88,-36],[10,-4],[39,14],[3,4],[16,21],[34,46],[4,5],[11,6],[20,1],[6,-2],[6,-6],[23,-42],[3,-4],[32,-34],[1,-1],[56,-50],[24,-21],[47,-42],[7,-6],[6,-2],[48,-14],[21,-1],[89,-4],[34,-2],[4,0],[43,12],[16,5],[21,6],[4,1],[61,10],[30,1],[70,-22],[29,-21],[28,-28],[3,-5],[89,43],[6,6],[8,7],[3,2],[19,6],[29,3],[8,-2],[31,-18],[18,-15],[5,-8],[17,-27],[18,-27],[2,-23],[14,-21],[15,-25],[1,0],[14,-12],[25,-16],[119,-68],[5,-4],[6,-4],[3,-13],[9,-41],[1,-1],[0,-9],[-3,-9],[1,-4],[11,-69],[15,-85],[5,-6],[82,-89],[29,-31],[0,-13],[0,-56],[0,-60],[-16,-79],[-15,-69],[-1,-5],[-4,-21],[-46,-4],[-3,0],[-8,-4],[-13,-12],[0,-1],[-19,-25],[-81,-64],[-11,-6],[-10,-2],[-1,0],[-12,0],[-8,3],[-1,0],[-1,1],[-32,25],[-6,7],[-4,9],[-1,2],[-5,21],[-7,6],[-11,-1],[-10,-7],[-2,-6],[-1,-1],[0,-1],[0,-13],[1,-14],[1,-14],[-13,2],[-3,0],[-93,10],[-1,0],[-49,42],[-8,4],[-8,0],[-2,-1],[-5,-2],[-2,-1],[-2,-1],[-10,-8],[-16,-23],[-4,-8],[-4,-8],[-34,-64],[-3,-7],[-19,-47],[-4,-7],[-1,-1],[-2,-3],[-8,-10],[-10,-7],[-3,-2],[-1,0],[-62,-36],[-28,-14],[-19,-3],[-16,4],[-2,1],[-14,9],[-10,4],[-21,-1],[-1,0],[-101,-24],[-10,-7],[-11,-28],[-2,-5],[-7,-6],[-16,-4],[-25,1],[-59,16],[-88,29],[-30,9],[-40,12],[-54,10],[-6,1],[-28,1],[-70,-4],[-16,-3],[-8,-1],[-19,-8],[-10,-5],[-1,0],[0,-1],[-17,-20],[1,-19],[-51,-64],[-129,-166],[-7,-8],[-6,-4],[-1,0],[-12,1],[-74,23],[-4,1],[-76,-36],[-8,0],[-66,-2],[-90,55],[-14,7],[-4,2],[-2,0],[-20,8],[-14,1],[-1,0],[-1,0],[-99,3],[-8,-2],[-1,-1],[-6,-4],[-6,-10],[-1,-2],[-11,-25],[-2,-30],[-2,-51],[-1,-27],[5,-13],[7,-8],[36,-21],[18,-14],[2,-2],[19,-26],[5,-13],[5,-19],[2,-14],[-23,-128],[-8,-18],[-12,-16],[-10,-9],[-1,0],[-76,-29],[0,-6],[1,-37],[1,-46],[1,-14],[1,-52],[0,-2],[-3,-1],[-69,-24],[-2,0],[-23,-12],[-18,-13],[-2,-3],[-10,-10],[-11,-15],[-5,-12],[-3,-15],[1,-124],[0,-3],[8,-15],[4,-6],[49,-63],[1,-1],[1,-1],[24,-34],[14,-22],[2,-2],[2,-10],[-2,-7],[-50,-91],[-20,-18],[-12,-7],[-12,-4],[-60,-15],[-26,-3],[-16,4],[-1,0],[-17,6],[-28,11],[-4,0],[-22,1],[-16,-3],[-2,-1],[-4,-1],[-17,-7],[-9,-8],[-1,-2],[-42,-76],[-13,-19],[-10,0],[-3,1],[-2,1],[-9,14],[-4,6],[-15,4],[-15,2],[-1,0],[-3,-1],[-40,-15],[-13,-6],[-2,-1],[-3,-2],[-97,-51],[-15,-13],[0,-1],[-7,-9],[-21,-29],[-6,-46],[39,-47],[9,-27],[13,-33],[31,-70],[9,-12],[14,-13],[12,-7],[29,-18],[40,-31],[27,-29],[6,-7],[113,-125],[1,0],[0,-1],[10,-14],[4,-16],[0,-1],[7,-57],[-1,-62],[0,-2],[-14,-81],[-12,-25],[0,-1],[-4,-53],[5,-6],[8,-6],[107,-46],[59,-23],[2,0],[23,-10],[27,-15],[7,-5],[42,-34],[4,-3],[28,-29],[2,-4],[15,-26],[5,-13],[9,-37],[4,-15],[1,-36],[-25,-25],[-22,-17],[-3,-6],[0,-12],[5,-9],[125,-105],[1,-1],[15,-12],[18,-7],[1,0],[3,-1],[11,-2],[7,-1],[2,0],[66,-39],[1,-2],[9,-19],[39,-63],[5,-5],[0,-1],[2,-2],[6,-5],[9,-3],[2,0],[25,-2],[73,9],[53,1],[21,-1],[16,-7],[6,-4],[23,-13],[30,-16],[13,-4],[4,-1],[39,-7],[2,0],[23,-2],[7,6],[1,15],[-9,16],[2,6],[26,25],[8,1],[23,-10],[7,-5],[41,-44],[14,-19],[11,-28],[6,-23],[13,-77],[0,-7],[-2,-4],[-11,-49],[26,-40],[0,-1],[11,-10],[18,-7],[1,-1],[1,0],[37,-9],[10,0],[1,0],[156,18],[1,0],[6,2],[62,22],[2,1],[33,20],[18,7],[24,4],[7,-1],[10,0],[6,0],[5,0],[17,-13],[9,-9],[73,-94],[1,-14],[-3,-6],[-50,-28],[-7,-6],[-5,-12],[2,-11],[10,-13],[87,1],[38,-5],[15,-6],[1,0],[15,-12],[13,-9],[12,-14],[5,-9],[1,-1],[18,-14],[67,-33],[130,-88],[34,-28],[15,-8],[34,-13],[15,-4],[14,1],[55,13],[30,26],[3,1],[8,4],[19,6],[19,2],[8,-7],[1,-24],[-7,-12],[-8,-9],[-7,-5],[-13,-10],[-1,-2],[-1,0],[-2,-3],[-1,-8],[10,-13],[14,-12],[8,-4],[1,-1],[21,-11],[11,-15],[0,-1],[5,-15],[3,-17],[4,-24],[0,-1],[6,-85],[1,-42],[-6,-6],[0,-1],[-1,0],[-10,-8],[-7,-3],[-28,-1],[-3,1],[-21,9],[-16,0],[-2,0],[-1,0],[-2,-1],[-9,-9],[-5,-7],[-2,-16],[5,-15],[12,-14],[42,-23],[129,-50]],[[47183,6062],[-59,4],[-125,8],[-190,10],[-97,7],[-224,14],[-114,3],[-179,11],[-349,22],[-181,11],[-24,-1],[-42,4],[-30,2],[-22,1],[-106,5],[-186,9],[-19,1],[-144,8],[-302,18],[-118,7],[-68,4],[-196,15],[-223,17],[-211,10],[-103,6],[-144,8],[-318,16],[-217,11],[-109,5],[-92,5],[-106,6],[-85,4],[-196,10],[-368,19],[-34,1],[-69,4],[-52,3],[-243,12],[-52,3],[-224,10],[-92,6],[-64,4],[-210,12],[-1,0],[-667,40],[-54,4],[-263,12],[-172,8],[-297,18],[-173,8],[-67,4],[-183,10],[-134,8],[-17,1],[-101,8]],[[39067,6518],[1,26],[0,41],[1,50],[1,34],[2,127],[0,55],[1,35],[1,45],[1,38],[0,13],[0,26],[0,56],[1,64],[1,30],[1,59],[0,22],[1,31],[0,18],[2,113],[1,17],[0,5],[1,36],[0,36],[2,80],[2,83],[1,31],[-1,24],[1,21],[1,39],[1,61],[0,41],[1,51],[3,165],[1,30],[2,108],[0,25],[1,62],[68,0],[0,45],[1,47],[0,62],[-1,25],[-2,58],[0,56],[-1,33],[1,30],[-1,26],[0,31],[0,38],[2,28],[-2,79],[1,68],[-1,148],[0,192],[-1,25],[0,5],[-1,36],[-2,30],[-2,33],[-3,51],[-1,6],[-5,87],[-2,44],[-1,24],[-3,38],[0,1],[-2,29],[-1,27],[-9,168],[-1,38],[-1,31],[4,136],[0,39],[0,24],[2,37],[0,27],[1,45],[0,23],[2,60],[1,43],[0,26],[1,78],[1,46],[2,75],[0,29],[-1,39],[1,34],[0,58],[1,48],[1,133],[1,38],[1,103],[1,45],[1,133],[1,29],[1,41],[0,49],[0,29],[1,48],[1,37],[0,35],[1,28],[0,24],[0,30],[1,42],[1,23],[0,39],[1,28],[0,45],[1,24],[2,164],[0,43],[1,28],[0,4],[2,28],[0,1],[1,35],[3,45],[-1,36],[1,43],[1,44],[0,25],[1,35],[2,70],[1,38],[6,137],[1,31],[3,112],[1,35],[4,116],[1,42],[1,27],[0,30],[0,5],[0,6],[1,32],[1,27],[0,34],[0,38],[1,24],[2,32],[1,46],[0,26],[0,47],[1,23],[1,39],[0,97],[2,65],[0,24],[2,44],[0,65],[0,30],[1,38],[1,71],[-1,56],[1,33],[1,27],[1,47],[0,23],[2,74],[2,42],[3,38],[2,65],[2,65],[2,91],[2,46],[2,62],[2,67],[-1,34],[1,25],[1,24],[2,55]],[[39067,6518],[-30,-1],[-97,6],[-48,2],[-2,0],[-52,3],[-33,2],[-19,1],[-30,1],[-74,4],[-111,6],[-148,7],[-62,4],[-88,4],[-158,9],[-23,1],[-76,5],[-45,2],[-210,11],[-78,4],[-27,4],[-23,1],[-77,4],[-29,1],[-72,5],[-58,3],[-34,1],[-23,1],[-29,2],[-52,3],[-40,2],[-227,14],[-98,5],[-53,3],[-117,7],[-72,4],[-180,11],[-133,7],[-44,4],[-41,2],[-44,2],[-7,1],[-36,1],[-30,2],[-22,0],[-36,2],[-42,1],[-5,1],[-57,2],[-6,1],[-36,1],[-22,1],[-41,2],[-211,9],[-171,9],[-148,8],[-236,12],[-52,3],[-102,4],[-77,4],[-47,2],[-80,4],[-43,2],[-59,4],[-79,4],[-58,3],[-45,4],[-56,2],[-92,5],[-114,4],[-281,16],[-228,13],[-2,0],[-69,4],[-57,4],[-30,1],[-23,1],[-127,7],[-46,3],[-49,3],[-59,3],[-79,4],[-160,7],[-32,3],[-48,2],[-60,3],[-42,1],[-58,3],[-43,3],[-54,2],[-34,4],[-24,-1],[-37,3],[-82,5],[-37,1],[-45,2],[-61,4],[-132,7],[-39,2],[-231,7]],[[15567,7661],[-27,0],[-70,59],[-76,116],[-79,110],[-132,105],[-79,34],[-85,32],[-53,23],[-287,317],[-40,21],[-45,11],[-34,24],[-5,5],[-27,25],[-31,34],[-108,120],[-10,22],[-9,33],[4,29],[-11,21],[-90,121],[-75,84],[1,81],[-20,201],[-10,48],[-49,110],[0,44],[9,96],[-76,253],[-67,174],[17,150],[17,28],[4,32],[10,100],[45,25],[36,20],[9,4],[12,3],[47,4],[19,0],[13,0],[8,22],[36,95],[1,3],[-2,3],[-80,120],[-8,12],[-36,19],[-9,4],[-1,1],[-12,9],[-9,10],[-10,13],[-12,18],[-2,2],[-24,47],[-11,27],[-2,6],[-7,23],[-1,10],[-2,10],[1,16],[3,9],[6,5],[65,45],[9,15],[1,2],[5,14],[-4,16],[-5,9],[-4,8],[-27,26],[-38,30],[-11,10],[-30,30],[-2,5],[-23,52],[5,58],[1,15],[45,45],[4,4],[1,1],[36,46],[9,20],[3,22],[5,35],[-64,55],[-7,8],[-29,12],[-48,11],[-25,14],[-23,26],[-29,55],[-116,132],[-3,6],[-42,78],[-79,110],[-67,71],[-30,18],[-131,145],[-24,41],[-23,52],[-14,47],[-9,31],[-3,32],[-20,23],[-61,38],[-86,30],[-41,18],[-34,21],[-28,28],[-4,5],[-4,21],[14,129],[2,13],[1,11],[9,66],[23,74],[9,22],[15,38],[1,2],[1,3],[12,22],[8,58],[-7,79],[-36,80],[-25,28],[-12,14],[-44,33],[-5,4],[-37,18],[-3,0],[-42,10],[-3,0],[-104,23],[-23,8],[-54,18],[-40,6],[-19,2],[-6,1],[-50,26],[-5,6],[-33,40],[-2,2],[-4,0],[-3,-1],[-1,22],[-3,36],[-1,29],[-2,29],[8,1],[33,86],[12,13],[3,3],[19,39],[0,11],[1,18],[11,190],[1,5],[-10,67],[51,138],[14,34],[11,107],[-11,25],[-14,16],[-57,50],[-26,29],[-9,33],[2,64],[-14,48],[-49,78],[-33,76],[5,143],[11,107],[-5,36],[-30,50],[-15,39],[1,6],[-6,56],[-24,43],[-18,20],[-74,40],[-33,32],[-54,120],[-49,60],[-66,74],[-40,57],[-19,33]],[[77662,10174],[-29,-21],[-13,-14],[-9,-11],[-7,-37],[8,-26],[46,-44],[13,-29],[-8,-51],[-1,-6],[-18,-14],[-73,-29],[-25,4],[-40,19],[-65,11],[-23,4],[-1,0],[-35,6],[-28,4],[-46,-16],[-116,13],[-19,2],[-18,2],[-120,63],[-13,13],[-11,61],[-2,11],[-5,32],[-2,16],[-4,17],[-15,18],[-11,10],[-25,20],[2,-10],[2,-9],[2,-12],[1,-6],[-3,-13],[-14,-9],[-61,-33],[-42,8],[-103,38],[-12,2],[-8,-4],[-2,0],[-30,-34],[-1,-1],[-46,-30],[-52,-34],[-36,-11],[-42,-28],[-36,-29],[-47,-38],[-4,-4],[-7,-23],[39,-27],[11,-11],[13,-14],[-13,-88],[-5,-36],[0,-3],[-48,-25],[-4,-2],[-3,-1],[-6,-19],[21,-25],[15,-18],[35,-70],[-13,-97],[-23,-18],[-6,-6],[-37,-14],[-12,-8],[-9,-6],[-22,-19],[-31,-40],[-26,-59],[-29,-114],[-8,-51],[-22,-39],[-9,-4],[-67,-32],[-2,-1],[-70,2],[-35,1],[-22,1],[-127,60],[-68,59],[-68,77],[-19,5],[-1,0],[-25,7],[-28,8],[-56,-18],[-55,-17],[-29,102],[-10,35],[-19,9],[-3,1],[-13,5],[-12,-1],[-6,-11],[-12,-28],[-1,-3],[-23,-15],[-13,-9],[-10,-4],[-34,-8],[-2,0],[-24,-3],[-12,4],[0,10],[7,6],[17,11],[3,4],[0,6],[-11,4],[-45,8],[-14,2],[-26,-33],[-54,-38],[-4,-3],[-15,0],[-10,0],[-14,-6],[-11,-9],[-9,-19],[-6,-23],[0,-45],[2,-8],[18,-25],[24,-29],[14,-17],[16,-19],[14,-17],[16,-18],[16,-18],[5,-6],[6,-8],[2,-8],[4,-10],[21,-52],[17,-13],[9,-30],[11,-24],[34,-59],[3,-5],[21,-42],[9,-16],[1,-15],[-19,-33],[-4,-6],[-12,4],[-4,1],[-11,3],[-4,-2],[-90,-68],[1,-6],[6,-40],[7,-6],[1,-10],[-4,-6],[-12,-5],[-31,-9],[-44,-13],[-6,-2],[-24,-12],[-35,-17],[-66,-33],[-2,-1],[-21,5],[-5,1],[-76,26],[-14,5],[-40,40],[-4,2],[-1,0],[-6,3],[-12,-3],[-7,-3],[-2,-25],[-23,-40],[-16,-27],[-16,-47],[-17,-176],[8,-40],[21,-18],[9,-24],[-19,-11],[-13,-17],[-19,-18],[-24,-11],[-6,-35],[-14,-14],[16,-2],[8,-9],[0,-8],[-5,-4],[-3,-1],[-22,-9],[-39,-28],[-5,-7],[-1,-13],[4,-6],[25,-23],[13,-5],[4,-1],[46,-10],[0,-1],[11,-4],[17,-14],[18,-22],[4,-5],[3,-6],[27,-83],[3,-8],[-3,-7],[-1,-1],[-27,-8],[-6,-6],[-2,-9],[-3,-41],[3,-12],[12,-2],[8,-5],[10,-7],[6,-6],[5,-5],[11,-30],[1,-46],[10,-76],[-1,-8],[-3,-6],[-2,-4],[-14,-24],[-4,-8],[-21,-35],[-4,-6],[-13,-23],[-3,-4],[-5,-4],[-9,-9],[-32,-32],[-4,-4],[-10,-10],[11,-42],[0,-12],[1,-74],[-11,-46],[-18,-73],[-12,-51],[-8,-10],[-56,-8],[-17,-4],[-16,-9],[-8,-7],[-2,-15],[18,-1],[17,-1],[10,-4],[3,-3],[1,0],[2,-3],[-2,-10],[-1,-1],[-36,-43],[-36,-38],[-9,-20],[-1,-18],[3,-31],[50,-193],[4,-14],[5,-20],[14,-44],[3,-9],[-3,-4],[-2,-2],[-14,-1],[-5,4],[-12,11],[-1,18],[0,9],[-5,4],[-10,1],[-7,-7],[-5,-10],[1,-75],[5,-65],[2,-6],[16,-14],[13,-12],[35,-32],[5,-17],[11,-2],[5,-1],[59,-41],[2,-2],[4,-4],[9,-16],[31,-78],[15,-38],[5,-16],[6,-32],[-3,-13],[-7,-32],[-1,-4],[-6,-36],[0,-2],[-1,-28],[-1,-23],[2,-7],[6,-4],[18,-8],[20,-9],[5,-2],[22,-23],[53,-54],[2,-2],[4,-6],[0,-13],[-4,-9],[-6,-6],[-23,-12],[-5,-5],[0,-7],[15,-14],[13,-5],[35,-15],[4,-2],[4,-5],[5,-8],[10,-13],[7,-10],[5,-10],[-2,-14],[-2,-4],[-18,-30],[-1,-18],[9,-8],[9,-9],[23,-2],[3,1],[9,5],[1,1],[1,3],[1,6],[0,8],[-4,5],[-6,6],[-5,12],[1,9],[0,2],[0,3],[5,6],[1,1],[12,6],[7,-1],[4,-11],[2,-4],[2,-9],[10,-33],[0,-2],[1,-2],[18,-74],[7,-39],[2,-13],[1,-12],[-1,-12],[-4,-44],[0,-11],[-1,-25],[0,-5],[-2,-51],[0,-6],[7,0],[30,-1],[37,0],[5,0],[62,-49],[18,-5],[59,-24],[3,-3],[6,-6],[8,-8],[2,-3],[12,-27],[3,-5],[59,-135],[-1,-13],[0,-2],[-3,-32],[5,-37],[2,-15],[3,-20],[0,-6],[9,-39],[11,-48],[2,-5],[6,-7],[5,-5],[25,-28],[7,-4],[6,-2],[0,-3],[2,-30],[1,-3],[4,-62],[-5,-120],[1,-40],[17,-27],[2,-3],[15,-20],[3,-4],[4,-5],[8,-10],[10,-50],[0,-12],[-69,-122],[-52,-92],[-23,-66],[-13,-37],[-4,-20],[-16,-79],[9,-23],[1,-13],[-2,-3],[-29,-48],[-19,-31],[-1,-1],[-17,-53],[-9,-27],[-7,-21],[-4,-11],[-7,-40],[-18,-94],[3,-59],[3,-73],[1,-33],[0,-6],[1,-17],[61,3],[12,1],[0,-5],[4,-117],[1,-33],[-8,-40],[-1,-7],[-5,-17],[-1,-3],[-1,0],[-21,-59],[0,-2],[-1,-7],[-8,-55],[-2,-18],[14,-14],[21,-20],[0,-5],[-5,-35],[-9,-27],[-14,-39],[-10,-28],[-20,-33],[-2,-9],[17,-127],[2,-7],[4,-4],[3,-4],[17,-20],[14,-17],[-14,7],[-7,2],[-9,4],[-1,1],[-7,1],[-1,0],[-5,-3],[-35,-24],[-1,-6],[5,-2],[8,-4],[9,-5],[5,-5],[15,-46],[7,-93],[1,-3],[0,-8],[-3,-6],[-20,-32],[-1,-1],[-5,-5],[-1,0],[-16,-7],[-9,-7],[-88,-113],[-5,-11],[-9,-36],[2,-15],[19,-75],[4,-18],[-48,-49],[-20,-21],[-8,-5],[-26,-20],[-7,-5],[6,-7],[20,-20],[3,-4],[1,-5],[-4,-35],[-22,-102],[-3,-4],[-15,-21],[-21,-30],[-27,-21],[-38,-30],[-17,-3],[-1,-9],[-1,-11],[-4,-13],[-2,-4],[-8,-13],[-11,-16],[-20,-17],[-16,-7],[-2,-4],[-32,-55],[-7,-12],[40,-37],[0,-1],[18,-34],[8,0],[10,-5],[3,-4],[30,-72],[1,-10],[-5,-149],[-3,-8],[-13,-5],[-45,-16],[-67,-24],[-12,-5],[-44,-33],[-12,-12],[-1,-2],[-4,-5],[-2,-4],[-2,-11],[7,-47],[10,-4],[18,-6],[3,-4],[0,-7],[-3,-4],[-18,-5],[-11,-4],[-3,-7],[-1,-5],[-2,-16],[-4,-29],[2,-4],[1,-5],[2,-3],[3,-3],[34,-27],[1,-1],[-54,-33],[-4,-2],[2,-4],[50,-156],[1,-4],[2,-1],[15,-16],[23,-33],[14,-36],[14,-56],[1,-3],[9,-36],[25,-94],[-21,-35],[0,-7],[14,-40],[7,-22],[10,-18],[-8,-10],[-18,-25],[-2,-2],[-11,-18],[-9,-19],[2,-11],[17,-30],[1,-1],[16,-18],[1,-2],[3,-3],[-2,-6],[-54,-32],[-21,-11],[-29,-18],[0,-1],[-1,-16],[0,-9],[-2,-34],[7,-15],[-10,-1],[-30,-5],[-74,-26],[-5,-5],[-17,-11],[-6,-4],[-9,-6],[-19,-7],[-161,-67],[-11,-2],[-17,14],[-8,7],[-16,5],[-51,6],[-5,-3],[-20,-39],[-24,-46],[-7,-18],[-18,1],[-1,2],[-9,9],[-19,34],[-3,4],[-4,5],[-9,12],[-10,10],[-37,24],[-20,14],[-5,2],[-6,3],[-9,-1],[-34,-5],[-8,-2],[-41,-12],[-75,-28],[-17,-7],[-4,0],[-6,1],[-3,0],[-8,4],[-4,4],[-6,5],[-8,12],[-16,11],[-121,15],[-15,-1],[-1,0],[-23,-5],[-23,-2],[-10,-1],[-36,-4],[-10,4],[-31,18],[-76,36],[-12,-2],[-21,-3],[0,4],[2,27],[2,44],[-15,10],[-3,2],[-47,19],[-48,-13],[-21,-6],[-2,-1],[-3,-1],[-47,-21],[-4,-20],[-10,13],[-19,23],[-10,12],[-16,20],[-6,-1],[-4,0],[-46,-3],[-14,-5],[-2,-3],[-4,-35],[0,-5],[-10,-18],[-17,-14],[-7,-1],[-96,35],[-10,0],[-9,0],[-81,3],[0,-9],[-3,-5],[-54,-31],[-25,-15],[-6,-3],[-49,-29],[-50,-29],[-40,59],[-23,35],[-2,4],[-227,-68],[-64,-13],[-99,-28],[-75,-40],[-2,-5],[-21,2],[-51,2],[-102,20],[-30,20],[-11,12],[-19,28],[-18,37],[0,17],[0,2],[2,10],[-4,5],[-2,2],[-23,19],[-4,3],[-93,52],[-7,2],[-20,27],[-60,82],[-17,74],[-1,28],[0,3],[-1,1],[-4,5],[0,1],[-30,-5],[-1,0],[-23,-9],[-4,-3],[-25,-16],[-12,-20],[-2,-5],[-6,-6],[-7,1],[-11,10],[-48,50],[0,74],[1,2],[18,37],[2,3],[1,2],[0,5],[1,3],[-28,56],[-16,30],[-8,11],[-9,3],[-1,1],[-10,-3],[-7,-8],[-4,-4],[-54,39],[-3,4],[-66,103],[-8,26],[-10,34],[-2,13],[-5,27],[-1,9],[-41,48],[15,7],[15,8],[0,7],[-1,4],[-8,33],[-2,3],[-32,54],[-4,6],[-7,10],[-30,88],[-17,13],[-4,6],[-1,6],[-1,107],[-9,52],[-3,19],[0,1],[-24,47],[0,6],[1,25],[5,128],[2,18],[19,28],[5,4],[3,2],[0,1],[44,56],[0,1],[28,88],[4,10],[9,22],[12,39],[0,13],[-5,164],[-2,9],[-6,44],[-2,3],[-17,6],[-18,-1],[-6,7],[-19,23],[-3,14],[-1,63],[5,17],[26,79],[23,70],[8,9],[4,5],[5,9],[71,114],[0,7],[-4,34],[-3,18],[-2,17],[0,2],[-3,42],[-6,73],[0,1],[0,4],[0,1],[0,11],[1,24],[0,3],[0,3],[0,3],[1,1],[0,2],[0,1],[-21,25],[-28,33],[-3,2],[-23,33],[-1,1],[-17,23],[-6,8],[-36,38],[-30,20],[-6,7],[-39,45],[-23,39],[-11,32],[20,0],[2,0],[-5,3],[-40,24],[-34,20],[-104,63],[-55,32],[-12,9],[-16,13],[-2,1],[-3,5],[-34,44],[-2,2],[-17,24],[-8,38],[-6,30],[-16,80],[-7,33],[-5,27],[-3,29],[-3,10],[-8,54],[-7,28],[-23,17],[-23,19],[-22,23],[-17,11],[-2,1],[-21,23],[-22,19],[-13,21],[-26,31],[-8,20],[-6,21],[-13,24],[-1,30],[5,29],[14,16],[0,34],[-1,28],[6,29],[14,23],[25,19],[29,17],[30,25],[6,24],[5,29],[2,26],[-1,24],[-6,32],[-4,41],[15,15],[27,5],[19,20],[24,23],[32,25],[35,21],[35,19],[35,24],[39,13],[22,2],[21,1],[42,0],[20,6],[21,6],[25,20],[9,24],[-11,20]],[[54269,10629],[-195,-4],[-77,-1],[-428,-5],[-4,0],[-174,-1],[-294,-3],[-269,-3],[-1,-376],[-121,1],[-196,4],[0,-24],[0,-16],[-1,-30],[-18,-410],[-5,-117],[-81,-1],[-118,-1],[-212,1],[-19,0],[-18,-22],[-9,-17],[-27,-55],[-41,-46],[-3,-11],[-5,-21],[-29,-30],[0,-2],[-35,-118],[-10,-55],[-1,-3],[0,-13],[-1,-11],[2,-18],[13,-36],[0,-2],[1,-15],[-5,-15],[0,-1],[-37,-52],[-26,-22],[-1,-1],[-10,-10],[-7,-21],[-1,-2],[-1,-1],[2,-24],[4,-8],[12,-33],[11,-28],[3,-8],[47,-25],[22,-11],[-16,-34],[-6,-13],[-2,-3],[-1,-163],[-1,-55],[1,-4],[15,-155],[0,-14],[-3,-14],[-13,-21],[-30,-82],[0,-1],[-11,-69],[-1,-74],[0,-28],[28,-156],[0,-1],[-1,-2],[-9,-9],[-3,-15],[-1,-2],[0,-14],[0,-16],[2,-7],[20,-17],[2,-2],[41,-17],[15,-15],[7,-10],[-69,-8],[-12,-1],[-31,0],[0,-32],[-1,-42],[2,-25],[2,-59],[3,-52],[0,-23],[4,-178],[0,-1],[3,-55],[5,-98],[-2,-230],[0,-32],[-1,-81],[-3,-185],[0,-124],[-3,-214],[-1,-49],[-1,-81],[-2,-99],[0,-1],[-4,-72],[-1,-14],[-18,-335],[0,-28]],[[51809,5774],[-356,27],[-204,15],[-55,3],[-122,7],[-12,1],[-44,1],[-109,7],[-141,10],[-23,0],[-228,13],[-602,36],[-450,26],[-41,3],[-74,5],[-46,3],[-181,11],[-45,3],[-90,6],[-97,6],[-61,4],[-272,17],[-374,21]],[[47519,6041],[-100,6],[-41,3],[-55,3],[-140,9]],[[63407,5077],[-137,13],[-109,8],[-92,5],[-90,6],[-436,25],[-193,10],[-292,17],[-214,12],[-264,14],[-10,1],[-219,12],[-153,9],[-8,0],[-194,12],[-18,2],[-160,10],[-439,30],[-453,20],[-357,24],[-776,50],[-45,3],[-307,20],[-2,0],[-272,17],[-49,4],[-484,31],[-194,13],[-137,4],[-60,7],[-197,9],[-767,46],[-187,11],[-61,4],[-23,1],[-80,6],[-356,21],[-34,3],[-375,22],[-307,18],[-90,6],[-87,5],[-117,5],[-357,22],[-22,2],[-6,0],[-31,0],[-282,19],[-258,16],[-64,4],[-39,2],[-80,5],[-116,7],[-192,11],[-204,12],[-38,2],[-5,0],[-30,2],[-222,13],[-340,19],[-58,3],[-32,1],[-10,0],[-95,5],[-25,1],[-137,7],[-110,8]]],"transform":{"scale":[0.000047646966089661134,0.00004645129847298492],"translate":[-85.6051604939999,30.355729950000182]}} diff --git a/src/js/config/mapconfig/mapfiles/county/hi-counties.json b/src/js/config/mapconfig/mapfiles/county/hi-counties.json new file mode 100644 index 00000000..c3af634d --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/hi-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-160.24655917199985,18.911121472000104,-154.80638043499985,22.232356370000048],"geometries":[{"type":"Polygon","properties":{"name":"HI"},"id":"15005","arcs":[[0,1]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15001","arcs":[[2]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15007","arcs":[[3]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15009","arcs":[[-1,4]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15009","arcs":[[5]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15009","arcs":[[6]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15009","arcs":[[7]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15003","arcs":[[8]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15003","arcs":[[9]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15003","arcs":[[10]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15007","arcs":[[11]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15007","arcs":[[12]]},{"type":"Polygon","properties":{"name":"HI"},"id":"15003","arcs":[[13]]}]},"states":{"type":"GeometryCollection","bbox":[-160.24655917199985,18.911121472000104,-154.80638043499985,22.232356370000048],"geometries":[{"type":"MultiPolygon","properties":{"name":"Hawaii"},"id":"15","arcs":[[[2]],[[6]],[[5]],[[7]],[[1,4]],[[13]],[[10]],[[8]],[[9]],[[12]],[[11]],[[3]]]}]}},"arcs":[[[61262,67951],[-68,-207],[-10,-34],[22,15],[27,1],[23,7],[15,-35],[15,-22],[22,-33],[17,-30],[17,-17],[-3,-30],[20,-13],[10,-26],[17,-11],[15,-19],[7,-30],[12,-39],[21,-30],[7,-30],[21,7],[18,-25],[19,-27],[21,-29],[25,6],[12,-26],[22,3],[33,7],[17,21],[7,-32],[-37,-12],[-22,-29],[-19,-50],[-4,-42],[0,-31],[24,-27],[5,-38],[-16,-23],[-18,-30],[-7,-32],[-4,-32],[2,-45],[-8,-35],[1,-30],[15,-23],[11,-27],[-69,-14],[-99,-20],[-21,-6],[-6,-1],[-75,-18],[-58,-6],[-30,18],[-28,28],[-25,33],[-31,57],[-19,57],[-14,22],[-26,30],[-24,18],[-19,43],[0,38],[-20,23],[4,30],[-7,31],[-10,28],[-13,25],[-13,41],[-14,32],[-10,31],[-12,42],[-20,25],[-11,34],[-5,33],[-14,19],[-22,17],[-12,31],[-24,12],[-11,29],[-7,29],[5,52],[-19,11],[-12,-27],[-17,-15],[-5,-36],[-30,-9],[-11,-30],[-23,-9],[5,-30],[-28,-14],[-16,-18],[-18,-9],[-33,25],[-27,16],[-17,17],[-21,15],[-5,38],[-18,27],[-15,58],[-9,30],[4,43],[-5,40],[-3,100],[1,33],[7,33],[-8,43],[-3,45],[7,47],[2,46],[-11,35],[-12,41],[-9,38],[-16,21],[-18,12],[-12,-34],[8,-38],[18,-50],[-15,-25],[-3,-51],[-7,-45],[8,-29],[-3,-35],[-10,-39],[-3,-32],[-4,-34],[-19,-1],[12,-46],[17,-32],[16,-27],[15,-24],[24,-6],[-29,-41],[-4,-10],[-7,-17],[-41,-9],[-13,26],[-20,28],[-22,28],[-22,35],[-17,27],[-28,33],[-11,43],[-6,31],[12,36],[-8,28],[-8,43],[-16,53],[-11,37],[-2,34],[-27,16],[-20,20],[-18,10],[-25,27],[-21,7],[-26,2],[-25,24],[-24,9],[-20,-3],[-26,-15],[-22,-5],[-19,3],[-25,-7],[-23,-8],[-29,-10],[-31,11],[-64,-2],[-35,-4],[-34,7],[-25,6],[-20,4],[17,-16],[13,-29],[-22,14],[-21,16],[-15,30],[-22,6],[-17,27],[-24,6],[-19,16],[-23,14],[-24,21],[-22,16],[-9,95]],[[59465,68392],[39,-19],[46,-6],[56,-29],[52,-41],[50,0],[71,15],[74,42],[49,48],[37,66],[14,57],[8,28],[0,95],[25,107],[7,73],[22,85],[37,101],[-23,108],[10,75],[48,35],[36,84],[71,45],[91,-33],[68,-97],[33,-33],[26,-25],[37,-82],[15,-104],[20,-54],[14,-64],[33,-66],[30,-80],[26,-68],[37,-101],[3,-71],[6,-85],[16,-97],[44,-83],[10,-47],[6,-25],[33,-62],[62,-14],[45,-40],[55,-29],[42,2],[4,7],[44,63],[39,-49],[34,-23],[36,4],[40,-28],[49,20],[22,24],[25,27],[23,-94],[0,-3]],[[80819,40854],[41,-61],[49,0],[79,24],[46,15],[39,1],[34,-47],[56,-28],[38,-59],[36,-54],[34,-30],[47,-14],[35,4],[54,2],[20,-13],[39,-24],[51,-12],[76,-46],[73,-76],[49,-45],[8,-7],[12,-21],[21,-36],[29,-56],[66,18],[66,-25],[9,-5],[47,-27],[51,-38],[51,-32],[45,-57],[57,-15],[53,9],[30,73],[10,23],[32,-23],[3,-20],[9,-70],[52,-24],[6,-2],[0,-3],[19,-59],[38,-32],[60,-30],[61,-13],[13,-2],[41,-84],[6,-28],[17,-80],[1,0],[54,-16],[28,-70],[61,31],[24,-33],[17,-23],[35,-54],[9,-36],[8,-33],[42,-54],[50,-34],[18,-12],[38,-68],[-11,-68],[-25,-59],[-7,-89],[27,-108],[0,-46],[-1,-50],[33,-25],[47,-33],[46,-17],[49,-62],[35,-42],[22,-11],[1,-1],[8,-4],[3,0],[29,-4],[16,-93],[40,26],[61,-45],[26,-31],[27,-27],[69,-33],[37,-31],[28,-54],[34,-34],[47,-18],[45,-76],[33,-48],[46,-63],[36,-33],[33,35],[42,-6],[48,-21],[61,-65],[41,-34],[41,-15],[1,-1],[49,-19],[47,-44],[65,-49],[69,-70],[45,-55],[59,-39],[59,-40],[13,-10],[46,-89],[12,-51],[11,-46],[54,-54],[15,-11],[31,-21],[20,-49],[12,-56],[11,-71],[11,-44],[9,-39],[43,-49],[26,-16],[20,-12],[55,13],[53,-4],[43,-17],[61,-21],[62,-51],[66,-95],[65,-19],[62,-10],[6,-1],[39,-45],[20,-85],[44,-77],[40,-85],[21,-66],[8,-26],[48,-65],[49,-25],[49,-27],[3,-2],[72,-10],[60,22],[68,11],[33,21],[18,11],[47,62],[66,57],[90,50],[45,9],[52,9],[53,19],[28,-12],[44,-14],[54,-17],[32,-52],[43,-33],[41,-23],[38,-19],[42,-35],[13,-11],[48,-54],[45,-1],[47,20],[60,-43],[54,-28],[65,-24],[74,-71],[70,-73],[49,-9],[63,16],[9,2],[70,-25],[61,-8],[67,13],[48,-59],[34,-36],[32,-29],[35,-16],[47,-24],[32,-3],[61,-24],[1,-1],[63,-37],[64,-31],[74,-67],[68,-5],[65,-19],[55,-19],[61,-32],[60,-85],[76,-61],[60,-5],[58,-23],[60,-30],[46,-65],[49,-24],[40,-28],[39,-14],[37,-43],[43,-40],[64,-32],[79,-40],[43,-39],[38,-52],[46,-55],[45,-7],[52,-17],[42,-26],[12,-7],[27,-34],[17,-51],[9,-20],[25,-54],[42,-50],[43,-44],[39,-26],[27,-19],[63,-46],[47,7],[53,-28],[74,-42],[35,-39],[33,-61],[86,-49],[60,-56],[60,-59],[78,-59],[56,-49],[62,-24],[3,-1],[51,-5],[40,-16],[16,-7],[19,-40],[22,-49],[43,-54],[42,-30],[56,-20],[46,-41],[27,-57],[45,-51],[19,-22],[39,-21],[47,-34],[26,-25],[41,-13],[55,-14],[63,-44],[62,-51],[50,-41],[39,-25],[38,-23],[38,-28],[54,-41],[55,-48],[59,-28],[64,-23],[76,-35],[64,-13],[34,-34],[37,-27],[50,-45],[68,-69],[69,-81],[56,-69],[43,-71],[58,-56],[54,-34],[34,-41],[22,-28],[32,-58],[5,-17],[16,-55],[62,-56],[43,-15],[41,-14],[18,-99],[2,-3],[45,-85],[60,-33],[62,-37],[57,-66],[55,-50],[49,-34],[54,-53],[79,-59],[36,-37],[22,-23],[42,-51],[38,-46],[33,-39],[16,-24],[20,-28],[38,-66],[38,-97],[46,-72],[9,-57],[5,-32],[16,-60],[32,2],[49,-5],[60,-26],[64,-48],[62,-62],[36,-46],[25,-33],[10,-18],[38,-74],[44,-42],[36,-62],[48,-51],[51,-74],[41,-41],[32,-49],[14,-21],[20,-19],[29,-29],[15,-36],[26,-62],[4,-3],[38,-37],[14,-48],[0,-1],[39,-66],[49,-72],[52,-64],[56,-45],[29,-39],[11,-16],[38,-60],[32,-86],[22,-57],[1,-3],[19,-40],[8,-19],[18,-18],[42,-44],[10,-37],[19,-70],[32,-18],[23,-13],[33,-78],[28,-87],[9,-62],[14,-49],[26,-68],[2,-79],[6,-51],[5,-43],[0,-1],[64,-58],[43,-25],[27,-16],[28,-74],[16,-67],[35,-58],[8,-19],[25,-71],[44,-29],[36,-42],[69,-26],[32,-61],[51,-15],[7,-3],[44,-76],[27,-97],[15,-90],[7,-41],[11,-12],[58,-59],[-7,-82],[35,-58],[-34,-90],[-7,-84],[11,-77],[13,-71],[-9,-78],[-18,-104],[-26,-143],[-29,-109],[-21,-57],[0,-1],[7,-73],[-34,-110],[-4,-101],[-51,-13],[3,-67],[10,-20],[40,-78],[14,-11],[51,-43],[7,-84],[-12,-43],[-10,-50],[-41,-57],[-2,-81],[-2,-72],[5,-59],[28,-85],[25,-110],[-19,-88],[4,-74],[-21,-86],[-20,-100],[-5,-95],[21,-95],[-20,-124],[-5,-82],[-42,-11],[41,-96],[-8,-90],[4,-84],[10,-82],[-1,-104],[3,-105],[-12,-84],[29,-62],[20,-78],[6,-69],[0,-2],[0,-5],[41,-67],[36,-42],[53,-22],[62,-16],[82,5],[35,-16],[-5,87],[34,33],[29,53],[40,27],[18,12],[11,-18],[24,-41],[3,-81],[40,44],[56,56],[30,50],[32,36],[-2,65],[50,-37],[59,-3],[39,9],[37,64],[28,91],[42,24],[40,-14],[58,-6],[26,-22],[34,-29],[3,-9],[41,-120],[48,97],[58,-32],[26,-47],[38,11],[44,31],[58,36],[34,59],[45,-47],[69,9],[44,5],[9,1],[42,-64],[13,-72],[29,-46],[35,-70],[48,-86],[30,-83],[9,-75],[30,-103],[13,-69],[28,-95],[48,-115],[31,-108],[21,-94],[15,-120],[13,-106],[37,-81],[14,-113],[-15,-126],[-8,-82],[-11,-76],[-28,-80],[-17,-86],[12,-51],[2,-51],[-5,-49],[3,-88],[-9,-81],[1,-84],[22,-44],[23,-59],[18,-63],[-13,-61],[-32,-67],[2,-79],[-38,-83],[45,-35],[9,-90],[18,-44],[11,-26],[35,-49],[33,-55],[61,-56],[62,-43],[61,-36],[56,-60],[34,-64],[56,-34],[63,38],[82,-13],[23,-13],[26,-14],[29,-46],[0,-92],[-25,-93],[-27,-134],[9,-89],[20,-78],[16,-47],[9,-24],[34,-53],[81,-78],[61,-54],[39,-16],[35,-30],[30,-60],[29,-33],[33,-39],[31,-74],[31,-66],[17,-49],[15,-43],[51,-60],[82,-34],[14,-10],[31,-23],[25,-69],[22,-68],[15,-26],[28,-48],[47,-73],[71,-54],[63,-38],[72,-61],[57,-55],[42,-56],[27,-37],[35,-58],[66,-49],[78,-17],[68,-49],[38,-55],[52,-81],[31,-37],[43,4],[64,-18],[62,-29],[76,-19],[68,-26],[62,-87],[68,-51],[53,-53],[44,-62],[51,-44],[51,-11],[77,0],[62,-16],[45,-46],[56,-45],[70,-72],[19,-20],[27,-29],[27,-56],[18,-90],[39,-75],[13,-85],[-21,-87],[-47,-55],[-19,-70],[4,-113],[-15,-97],[-75,-51],[-61,-71],[50,-98],[-6,-121],[1,-81],[-39,-111],[-4,-97],[-14,-94],[-30,-82],[-40,-70],[-52,-82],[-52,-39],[-33,-46],[-24,-53],[-24,-72],[-34,-89],[-53,-68],[-34,-34],[-37,-20],[-32,-68],[-47,-82],[-31,-75],[-44,-53],[-67,-84],[-61,-96],[-66,-80],[-43,-57],[-33,-61],[-34,-30],[-55,-45],[-57,-29],[-43,-53],[-40,-109],[-49,-45],[-43,-17],[-36,-37],[-24,-55],[-9,-64],[-28,-78],[-47,-65],[-40,-20],[-42,-29],[-43,-53],[-47,-37],[-68,-42],[-69,-54],[-53,-52],[-39,-37],[-32,-38],[-24,-35],[-41,-72],[-44,-37],[-29,-32],[-39,-40],[-52,-18],[-55,-40],[-23,-95],[-31,-105],[-31,-94],[-42,-47],[-51,-53],[-41,-58],[-37,-59],[-38,-48],[-39,-45],[-42,-65],[-58,-66],[-41,-46],[-35,-51],[-46,-63],[-42,-38],[-76,-11],[-38,-18],[-22,-44],[-5,-87],[-46,-62],[-23,-87],[-17,-67],[-44,-92],[-50,-42],[-69,-40],[-61,-50],[-54,-56],[-61,-31],[-43,-37],[-33,-17],[-49,-35],[-58,-41],[-48,-29],[-58,-19],[-68,-22],[-46,-33],[-14,-85],[-58,-34],[-68,-35],[-55,-37],[-65,-56],[-74,-24],[-57,-27],[-57,-35],[-39,-29],[-47,-42],[-54,-22],[-56,-16],[-65,7],[-46,-37],[-40,-62],[-36,-30],[-55,-2],[-63,-1],[-59,-22],[-62,-76],[-62,-79],[-48,-38],[-34,-58],[-41,-69],[-41,-48],[-52,-67],[-45,-20],[-60,-33],[-71,-39],[-55,-46],[-34,-34],[-34,-39],[-38,-41],[-39,-41],[-39,-31],[-66,-80],[-67,-102],[-53,-58],[-42,-62],[-59,-51],[-43,-32],[-44,-37],[-48,0],[-51,19],[-62,10],[-58,-42],[-48,-69],[-49,-23],[-33,-56],[-54,-36],[-61,-35],[-33,10],[-52,-14],[-70,-1],[-44,11],[-39,9],[-69,-41],[-73,-18],[-55,-7],[-61,-15],[-50,-29],[-48,-46],[-30,-84],[-30,-41],[-32,43],[-38,5],[-44,-10],[-55,-5],[-62,-3],[-29,-27],[-56,9],[-45,30],[-56,17],[-39,26],[-47,5],[-27,26],[-30,7],[-47,-10],[-54,40],[-44,23],[-41,21],[-21,73],[-2,5],[-33,16],[-36,18],[-76,45],[-69,-8],[-69,-8],[-58,42],[-49,24],[-42,-25],[-40,32],[-32,27],[-36,-19],[-43,-39],[-50,-25],[-43,-14],[-39,-16],[-44,-47],[-54,24],[-58,-13],[-87,-53],[-70,-24],[-64,-13],[-54,-51],[-66,-62],[-47,-76],[-51,-68],[-34,-86],[-39,-80],[-38,-63],[-43,-55],[-38,-68],[-50,-47],[-52,-31],[-43,-24],[-59,-44],[-53,-34],[-38,-36],[-32,-26],[-31,-42],[-34,-44],[-22,-41],[-37,-107],[-26,-69],[-25,-54],[-11,-90],[-37,-77],[-30,-100],[-45,-65],[-72,-74],[-48,-64],[-28,-42],[-41,-30],[-50,-34],[-72,-43],[-76,-52],[-42,-8],[-66,-38],[-60,-13],[-62,-2],[-93,-29],[-65,-62],[-57,-72],[-19,-50],[-33,-54],[-26,-47],[-43,-28],[-62,-2],[-55,-18],[-87,-58],[-66,-71],[-31,-58],[-36,-40],[-46,-48],[-45,-58],[-30,-83],[-40,-112],[-33,-62],[-47,-58],[-39,-57],[-57,-63],[-94,-112],[-29,-62],[-26,-82],[-48,-55],[-36,-59],[-59,-52],[-62,-36],[-42,-31],[-59,-30],[-50,10],[-72,3],[-66,-29],[-69,-48],[-46,-45],[-63,-37],[-48,-44],[-53,-5],[-51,1],[-61,30],[-33,-46],[-47,-32],[-42,-32],[-52,33],[-21,-88],[-60,-79],[-43,-40],[10,-85],[4,-86],[0,-78],[-42,-45],[-43,-27],[-18,-67],[-26,-70],[-45,-14],[-61,-16],[-40,12],[0,-1],[-20,-70],[-28,-90],[-58,-95],[-58,-100],[-26,-96],[-26,-78],[-42,-78],[-39,-78],[-19,-67],[-8,-73],[-80,-23],[-45,1],[-34,-54],[-34,-79],[-38,-73],[24,-91],[6,-120],[-1,-58],[10,-88],[2,-81],[-14,-73],[19,-60],[-17,-63],[20,-61],[6,-106],[-26,-110],[-21,-138],[-40,-96],[-28,-88],[-55,-144],[-43,-88],[-53,-72],[-70,-52],[-60,-42],[-44,-51],[-29,-69],[-40,-72],[-30,-120],[-26,-125],[-10,-65],[-23,-81],[-45,-81],[-29,-59],[-43,-62],[-24,-46],[-23,-44],[-6,-80],[3,-92],[1,-74],[3,-88],[-6,-105],[-7,-97],[-24,-59],[-42,-16],[-22,-107],[-23,-92],[-53,-7],[-52,15],[-46,-54],[-43,5],[-23,62],[-7,25],[-13,51],[-15,-40],[-18,-45],[-55,16],[-47,-76],[-12,-85],[-28,-72],[4,-98],[-32,-82],[-35,-92],[-30,-109],[-47,-50],[-30,-78],[-19,-76],[-23,-56],[-24,-46],[-44,-61],[-43,-14],[-43,-29],[-61,15],[-16,-111],[-33,-83],[-26,-52],[-25,-49],[-47,-38],[-39,-81],[-63,-34],[-50,-21],[-34,-12],[-4,-62],[-48,-27],[-34,-8],[-63,-77],[-62,-55],[-54,-22],[-54,-8],[-26,56],[-6,38],[-7,56],[-18,72],[11,105],[15,82],[-2,130],[-15,88],[-24,89],[-30,92],[-37,62],[-13,13],[-30,30],[-32,44],[-56,76],[-68,53],[-69,32],[-39,64],[-6,22],[-22,80],[-45,72],[-8,9],[-31,38],[-39,54],[-97,67],[-48,84],[-5,5],[-2,2],[-52,52],[-48,14],[-49,55],[-49,34],[-47,7],[-58,12],[-53,-6],[-33,29],[-39,26],[-66,38],[-51,32],[-48,44],[-62,32],[-57,77],[-16,37],[-29,67],[-26,22],[-34,29],[-51,51],[-71,74],[-69,62],[-35,59],[-38,51],[-38,53],[-41,36],[-52,34],[-47,38],[-32,52],[-21,37],[-19,31],[-19,93],[-30,78],[-32,30],[-1,1],[-63,-2],[-82,6],[-75,31],[-71,18],[-45,4],[-41,37],[-42,38],[-57,23],[-63,29],[-40,49],[-51,6],[-59,-27],[-43,40],[-49,26],[-46,2],[-55,-8],[-63,6],[-50,75],[-60,25],[-56,24],[-37,37],[-39,74],[-5,10],[-15,14],[-38,35],[-61,40],[-67,61],[-73,26],[-59,69],[-4,30],[-10,69],[-1,94],[-4,126],[-19,108],[-31,92],[-38,96],[-45,64],[-34,91],[-25,97],[-32,79],[-33,76],[-30,31],[-21,23],[-10,42],[-20,83],[-46,79],[-6,-2],[-45,-12],[-24,74],[-4,24],[-10,71],[-18,68],[-10,73],[-14,89],[-12,92],[-15,85],[-26,77],[-28,104],[-24,124],[-17,87],[-15,91],[-17,103],[-3,87],[8,67],[1,71],[20,109],[25,58],[-33,70],[-13,74],[31,23],[33,59],[6,70],[53,88],[6,102],[14,110],[-44,74],[-12,10],[-26,21],[-13,52],[-6,24],[16,108],[30,72],[14,74],[17,68],[30,45],[41,33],[-6,111],[-1,100],[0,104],[-1,67],[19,89],[-14,71],[15,98],[17,71],[-5,81],[15,69],[-2,59],[-8,74],[22,60],[36,69],[25,58],[40,59],[-1,90],[-28,95],[4,75],[-23,72],[-4,83],[1,85],[24,154],[15,90],[32,95],[16,80],[-24,65],[-14,60],[-19,90],[13,110],[4,60],[2,83],[29,101],[33,95],[19,94],[27,112],[14,72],[9,68],[14,80],[-5,105],[11,115],[11,57],[28,104],[3,122],[14,83],[-21,95],[-2,76],[22,81],[9,129],[-4,123],[-22,56],[-10,70],[-17,80],[17,128],[41,64],[34,63],[9,88],[10,85],[-16,144],[-11,135],[-17,116],[-30,83],[-13,83],[-21,100],[-9,84],[-13,88],[-24,88],[-24,79],[-46,106],[2,90],[16,74],[-44,95],[-29,34],[-24,27],[-3,31],[-6,51],[-11,69],[-33,55],[-22,30],[-31,42],[-15,36],[-22,54],[-28,92],[-3,97],[26,56],[27,66],[20,63],[18,87],[-5,108],[-45,90],[-17,14],[-49,41],[-21,62],[-11,34],[42,57],[-31,75],[-26,13],[-44,21],[-39,62],[-6,23],[-9,40],[-14,71],[-16,131],[11,104],[6,82],[-2,60],[-28,91],[6,114],[-39,135],[-39,33],[-2,2],[-22,60],[1,1],[37,35],[35,100],[28,107],[7,83],[43,78],[-13,87],[-43,88],[-21,19],[-53,48],[-56,38],[-58,1],[-30,-86],[-74,13],[-47,80],[-40,34],[-54,-5],[-59,28],[-24,61],[0,15],[2,59],[8,59],[22,114],[-21,109],[-24,146],[0,112],[-34,39],[-21,40],[-2,3],[-11,23],[-24,49],[-46,72],[-16,25],[-1,6],[-12,103],[41,87],[35,80],[-4,75],[-6,104],[1,105],[-17,120],[-21,95],[6,106],[-32,86],[-29,99],[-35,24],[-42,28],[-8,59],[-5,30],[5,101],[27,49],[37,54],[-38,39],[-26,39],[-9,13],[-8,26],[-12,37],[-3,61],[8,84],[-6,80],[-6,90],[27,85],[-24,72],[-38,83],[-32,96],[2,82],[-6,94],[-28,66],[-26,60],[-28,68],[24,81],[-26,72],[-25,59],[-26,52],[-24,38],[-13,16],[-19,22],[-8,28],[-12,44],[-50,85],[-11,101],[13,91],[-29,51],[-29,117],[-1,3],[-24,94],[-7,84],[-43,36],[-9,14],[-38,62],[-47,-37],[-57,-14],[-56,39],[-43,57],[-44,52],[-48,44],[-45,37],[-46,61],[-66,22],[-83,-20],[-65,56],[-25,64],[-20,53],[-26,106],[16,92],[10,125],[17,88],[43,33],[13,82],[16,81],[3,121],[-57,23],[-11,4],[-39,61],[-14,29],[-27,51],[6,84],[4,83],[-33,4],[-24,38],[-22,33],[-47,36],[-62,23],[-28,80],[-11,30],[-24,71],[-31,67],[7,124],[-8,137],[-8,87],[-6,76],[-25,54],[-38,54],[-9,13],[-66,96],[-11,25],[-33,77],[-33,61],[26,90],[47,39],[32,43],[35,61],[0,76],[-14,70],[0,92],[-6,124],[33,43],[40,61],[18,77],[5,113],[-14,134],[17,83],[2,87],[-8,133],[45,90],[13,87],[43,68],[32,42],[40,20],[48,4],[-5,104],[23,92],[54,56],[56,3],[56,56],[41,100],[60,19],[30,55],[33,45],[49,65],[39,75],[9,60],[60,53],[56,84],[6,66],[44,45],[50,38],[14,91],[42,4],[21,106],[-2,91],[32,40],[55,65],[75,56],[45,26],[-2,89],[44,53],[37,45],[21,68],[27,87],[44,56],[31,27],[21,40],[59,50],[65,37],[44,37],[54,23],[75,24],[59,-16],[60,11],[58,12],[42,15],[42,-52],[32,-47],[47,-8],[37,-21],[40,26],[45,34],[57,32],[41,30],[40,50],[44,22],[37,42],[-17,74],[-29,144],[-11,95],[7,60],[20,64],[32,61],[40,36],[32,5],[31,41],[16,92],[45,149],[61,45],[40,57],[19,58],[-2,98],[-19,113],[45,76],[46,73],[6,82],[10,54],[47,90],[54,39],[48,25],[55,46],[50,94],[-49,57],[-7,31],[-1,4],[-20,85],[-4,74],[18,46],[46,23],[-20,79],[28,74],[50,52],[53,23],[61,-5],[20,82],[5,81],[-10,80],[63,51],[70,-31],[36,63],[13,75],[33,54],[36,57],[41,50],[19,92],[38,83],[13,72],[26,46],[43,99],[40,42],[49,35],[42,3],[38,22],[46,62],[97,63],[77,6],[32,71],[2,72],[39,65],[6,75],[-35,63],[3,49],[17,41],[42,58],[21,112],[-18,71],[-14,64],[5,92],[20,54],[24,66],[-30,72],[19,84],[11,96],[19,84],[3,11],[17,80],[6,97],[-13,83],[0,96],[-34,-25],[-21,14],[-50,33],[-16,64],[-1,7],[70,29],[4,1],[-39,87],[-24,62],[-33,33],[-9,9],[-21,56],[-4,10],[-33,48],[-20,37],[-5,9],[-6,12],[-29,72],[-9,66],[-32,41],[-12,16],[-8,12],[-40,61],[-1,8],[-8,79],[-42,76],[-21,28],[-25,34],[-34,42],[-24,51],[-6,14],[-35,59],[-22,70],[-42,94],[-11,27],[-18,42],[-21,11],[-27,13],[-51,73],[-4,18],[-16,74],[-34,77],[-55,96],[-35,105],[-34,80],[-13,62],[-41,102],[-34,135],[-2,3],[-44,60],[-8,23],[-2,5],[-21,61],[9,107],[-30,99],[-15,76],[-33,69],[-28,77],[-39,65],[-14,101],[-5,115],[-2,76],[-18,45],[-5,59],[-9,57],[-4,25],[-35,78],[-9,113],[12,118],[-28,91],[-25,129],[-12,131],[-23,74],[8,69],[-6,106],[-22,64],[16,97],[-13,105],[-14,102],[18,65],[-32,72],[5,89],[-19,111],[-16,67],[10,69],[14,105],[18,83],[7,133],[-5,101],[-14,65],[19,78],[16,82],[10,83],[19,81],[1,117],[13,103],[23,80],[24,67],[42,73],[34,87],[48,75],[3,52],[9,73],[18,90],[35,43],[21,63],[23,38],[34,37],[30,51],[57,61],[80,63],[51,50],[49,17],[47,16],[48,-6],[67,23],[48,16],[53,21],[51,-5]],[[15632,99848],[42,-79],[56,4],[18,-44],[30,-13],[21,-10],[79,43],[-6,-70],[-38,-42],[-4,-4],[30,-68],[71,-44],[60,20],[75,-25],[77,-63],[66,-65],[57,-7],[54,-5],[34,7],[33,36],[28,52],[56,-8],[49,-42],[29,-38],[69,-70],[64,-76],[31,-35],[18,-27],[26,-38],[44,-78],[29,-70],[-18,-56],[-16,-47],[16,-16],[31,-31],[60,11],[30,-27],[2,-1],[21,-32],[9,-13],[37,-70],[42,-34],[38,-22],[30,-35],[15,-17],[39,-67],[15,-64],[3,-126],[-31,-117],[44,-77],[23,-77],[18,-101],[23,-137],[45,-91],[-12,-96],[-3,-82],[-6,-33],[-8,-42],[38,-24],[43,-41],[61,-12],[34,34],[14,16],[35,-75],[21,-109],[3,-102],[-16,-57],[2,-67],[-8,-101],[29,-83],[-6,-96],[-5,-76],[-32,-69],[-11,-81],[-17,-86],[30,-101],[-9,-76],[-20,-61],[-15,-76],[-52,-81],[-43,-65],[-50,-80],[-28,-92],[17,-113],[-52,-122],[-45,-86],[-24,-64],[-18,-50],[-28,-30],[-27,-79],[-12,-84],[5,-65],[3,-62],[-21,-104],[-12,-108],[-21,-83],[-38,-84],[-53,-50],[-35,-35],[-36,-47],[-47,-10],[-45,-36],[-31,-24],[-22,-122],[0,-1],[36,-108],[-15,-112],[-10,-93],[-28,-125],[-19,-120],[-6,-89],[5,-65],[6,-134],[18,-120],[17,-93],[7,-86],[6,-74],[25,-57],[23,-80],[-7,-75],[-30,-25],[-23,-43],[-67,-9],[-5,-24],[-16,-75],[58,-13],[0,-1],[33,-5],[17,-3],[55,52],[27,-57],[-40,-63],[-14,-65],[0,-87],[6,-83],[7,-103],[23,-109],[19,-96],[-1,-61],[11,-93],[-17,-135],[-30,-83],[-50,-87],[-39,51],[-62,36],[-60,-30],[-63,-18],[-32,97],[-4,11],[-27,4],[-34,5],[-1,0],[-9,-165],[-81,-38],[-1,-96],[0,-34],[-56,-37],[31,-14],[32,-14],[56,10],[42,9],[11,9],[20,18],[41,-93],[-27,-68],[-10,-69],[4,-7],[55,-90],[-41,-51],[-80,-9],[-21,-82],[-29,-62],[-48,5],[-50,0],[-34,-25],[-49,-44],[-38,-101],[-43,-19],[-22,-34],[-48,-38],[-50,-10],[-47,-49],[-33,-43],[-26,-50],[-13,-64],[-31,-72],[-64,-53],[-23,-124],[32,-81],[0,-61],[-53,-34],[-61,21],[-73,-17],[-49,-47],[-39,-51],[-22,-68],[-29,-91],[-81,-63],[-45,-63],[-46,-13],[-46,-56],[-26,-122],[-58,-39],[-48,-1],[-45,-11],[-42,-53],[-42,-95],[-56,-63],[-45,12],[-57,-37],[-27,-92],[-46,-47],[-53,43],[-49,46],[-39,33],[-47,0],[-51,48],[-74,44],[-63,24],[-42,32],[-49,38],[-45,29],[-49,34],[-72,28],[-63,3],[-55,46],[-43,29],[-33,38],[-36,-11],[-59,-17],[-56,6],[-54,-11],[-23,70],[-17,23],[-13,18],[-6,-7],[-35,-41],[-61,4],[-66,37],[-38,-4],[-32,-24],[-44,7],[-53,-38],[-67,-40],[-21,-45],[-30,37],[-42,44],[-65,32],[-75,5],[-80,10],[-78,18],[-47,-12],[-53,2],[-55,34],[-59,13],[-47,20],[-33,30],[-42,20],[-49,40],[-41,31],[-55,-25],[-43,14],[9,86],[1,9],[-30,-16],[-30,-16],[-46,14],[-46,10],[-46,54],[-44,16],[-25,73],[-3,7],[-37,96],[0,1],[-14,-16],[-14,-14],[-41,-11],[-40,-62],[-18,-85],[11,-103],[-48,-63],[-50,-25],[-31,17],[-47,58],[-1,28],[-2,37],[3,56],[-26,40],[-31,14],[-17,8],[-61,28],[-63,46],[-44,75],[-61,44],[-52,43],[-38,43],[-49,64],[-50,39],[-26,37],[-12,39],[-8,29],[-26,114],[-43,83],[-31,45],[-29,40],[-4,19],[-20,77],[-26,46],[-22,16],[-27,19],[-12,59],[-3,19],[-2,134],[-29,47],[-17,25],[-9,13],[-1,1],[-57,-18],[-52,27],[-42,52],[-17,42],[-18,46],[-40,64],[-3,96],[-53,34],[-3,1],[-68,47],[-65,31],[-41,23],[-59,19],[-83,15],[-50,9],[-53,14],[-63,23],[-63,11],[-67,11],[-44,0],[-33,8],[-51,37],[-57,76],[-48,67],[-49,33],[-46,17],[-61,28],[-63,27],[-59,24],[-52,18],[-38,17],[-54,35],[-38,17],[-40,19],[-84,23],[-65,28],[-38,21],[-27,11],[-27,11],[-55,35],[-60,79],[-26,51],[-23,47],[-28,81],[-17,73],[-17,63],[-33,111],[-21,90],[-22,82],[-20,59],[-32,76],[-39,54],[-1,1],[-51,45],[-38,51],[-25,43],[-12,24],[-13,23],[-18,34],[-23,110],[-20,89],[-9,81],[-6,89],[-1,83],[9,82],[14,94],[8,94],[8,76],[7,67],[20,79],[-1,100],[3,114],[0,12],[19,103],[-6,87],[-10,77],[22,106],[41,56],[40,48],[45,26],[41,51],[38,51],[41,61],[45,89],[44,70],[28,34],[39,51],[56,72],[41,61],[31,38],[60,100],[51,77],[45,62],[22,102],[20,95],[1,1],[38,70],[9,95],[35,81],[8,67],[5,97],[17,54],[24,78],[44,133],[9,113],[4,85],[15,105],[26,103],[40,59],[39,81],[34,82],[27,66],[8,19],[63,35],[37,30],[38,37],[49,44],[45,17],[33,32],[26,68],[42,-28],[61,39],[45,52],[31,39],[46,16],[65,16],[47,8],[52,4],[43,34],[49,32],[39,20],[38,13],[39,1],[32,-17],[29,39],[78,35],[27,49],[39,19],[41,31],[58,44],[52,63],[43,71],[7,11],[50,32],[60,24],[61,38],[46,51],[46,60],[30,60],[37,55],[41,79],[49,54],[39,36],[42,28],[1,0],[52,42],[63,36],[51,48],[58,52],[64,46],[54,44],[25,54],[53,41],[50,28],[17,21],[18,21],[35,66],[41,43],[56,58],[43,75],[43,63],[61,87],[48,26],[44,4],[45,-8],[71,-27],[69,-54],[48,18],[26,36],[30,39],[56,58],[89,-40],[59,1],[42,-22],[6,-6],[33,-26],[32,-89],[36,-103],[0,-2],[5,-83],[48,-9],[33,23],[34,27],[46,32],[4,3],[50,-12],[66,-15],[60,-21],[46,8],[5,1],[42,-22],[11,-98],[20,-119],[7,-14],[18,-38],[18,-50],[33,-5],[58,-23],[89,15],[69,62],[40,71],[14,69],[6,78],[16,55],[0,1],[-42,52],[2,56],[2,70],[49,92],[73,72],[38,40],[36,61],[46,24],[34,-10],[34,-9],[43,11],[61,1],[62,-75],[31,-25],[31,4],[30,-14],[45,-58],[60,-9],[46,41],[48,22],[53,5],[47,-14],[49,-17],[59,-22],[48,-11],[65,-16],[55,0],[5,0],[36,-56],[6,-13],[24,-61],[55,-53],[40,-4],[31,47],[3,93],[28,64],[69,-25],[48,3],[47,24],[28,7],[32,5],[37,17],[45,22],[51,76],[15,75],[29,46],[30,-52],[20,-5],[35,-6],[19,-76],[3,-12]],[[61262,67951],[23,-70],[48,-27],[41,-25],[48,41],[58,-61],[27,-58],[31,35],[35,-14],[12,51],[32,34],[31,53],[-17,101],[40,-9],[29,-25],[45,-19],[14,6],[25,11],[28,-75],[5,-54],[4,-53],[38,-45],[53,30],[32,112],[32,-36],[28,45],[43,-23],[44,-68],[34,-45],[47,4],[57,30],[60,12],[56,11],[84,23],[58,54],[56,25],[43,-11],[55,-48],[45,-16],[47,-20],[49,10],[46,38],[32,62],[40,19],[55,34],[45,64],[59,29],[66,16],[55,10],[47,14],[47,45],[57,-10],[11,-2],[41,-80],[10,-26],[15,-38],[39,-52],[53,9],[49,25],[39,56],[29,73],[52,26],[56,-22],[69,26],[64,-4],[43,59],[48,4],[54,-14],[52,-20],[44,-17],[52,0],[53,0],[61,-3],[33,-2],[56,-11],[48,-17],[66,-23],[6,-7],[46,-56],[22,-81],[-3,-71],[-2,-72],[-12,-61],[-11,-50],[5,-4],[44,-39],[71,11],[59,-24],[60,27],[59,28],[81,28],[41,-19],[14,-2],[25,-3],[33,-72],[-24,-104],[11,-68],[-6,-91],[-35,-106],[-39,-98],[-41,-79],[-32,-98],[-49,-115],[-33,-101],[-40,-47],[-28,-40],[-30,-23],[-27,-63],[-38,-96],[-54,-137],[-59,-39],[-8,-16],[-29,-64],[-62,-23],[-9,-97],[-48,-74],[-65,-78],[-39,-46],[-40,-53],[-31,-46],[-55,-61],[-8,-8],[-44,-41],[-64,-67],[-62,-68],[-28,-68],[-33,-18],[-31,-47],[-16,-61],[-55,-9],[-52,-6],[-40,-39],[-55,-55],[-37,-45],[-6,-18],[-20,-65],[-40,-58],[-58,-49],[-41,-15],[-52,-46],[-56,-77],[-1,-2],[-51,-10],[-54,-4],[-41,-6],[-30,-20],[-79,8],[-46,-60],[-45,-7],[-49,-60],[-63,-35],[-55,-6],[-35,-52],[-32,-69],[-1,-1],[-43,-49],[-79,-11],[-1,0],[-92,-1],[-75,86],[-75,-8],[-61,-30],[-41,-34],[-65,-42],[-49,-94],[-26,1],[-55,2],[-38,-58],[-40,-51],[-55,-1],[-46,17],[-36,4],[-8,1],[-54,40],[-66,21],[-32,56],[-33,39],[-3,19],[-6,38],[-37,22],[-3,2],[-72,-9],[-70,25],[-32,-11],[-36,15],[-41,2],[-54,19],[-48,7],[-27,26],[-29,29],[-68,19],[-58,9],[-68,8],[-58,20],[-39,3],[-48,23],[-69,26],[-23,57],[-53,-39],[-59,13],[-41,17],[-6,3],[-28,44],[-52,31],[-48,6],[-47,14],[-47,26],[-78,-2],[-16,52],[-52,20],[-78,8],[-34,5],[-23,3],[-61,-15],[-22,79],[-13,17],[-24,31],[-7,5],[-69,48],[-78,31],[-48,18],[-76,11],[-22,58],[-47,10],[-64,15],[-54,27],[-59,44],[-50,29],[-46,34],[-62,10],[-44,11],[-46,35],[-37,17],[-1,1],[-37,33],[-32,70],[0,1],[-45,81],[-9,6],[-71,44],[-64,11],[-65,-2],[-53,3],[-23,42],[-41,13],[-77,44],[-63,22],[-70,25],[-68,2],[-72,12],[-62,20],[-58,16],[-58,-22],[-69,5],[-59,17],[-40,-8],[-42,19],[-28,65],[-32,-13],[-33,-20],[-35,-39],[-47,-49],[-84,0],[-67,-6],[-52,2],[-55,-50],[-50,-14],[-57,18],[-73,-40],[-72,-21],[-59,-37],[-33,-28],[-63,-38],[-52,-13],[-115,-23],[-59,-28],[-41,29],[-57,7],[-43,-13],[-60,-25],[-45,-3],[-51,10],[-8,3],[-49,17],[-48,-8],[-43,-9],[-50,-25],[-59,5],[-48,-15],[-55,14],[-54,-1],[-58,0],[-38,-19],[-46,-4],[-21,-4],[-61,-12],[-75,2],[-70,-9],[-72,-1],[-60,-5],[-40,1],[-46,-7],[-114,-19],[-67,-11],[-52,-9],[-35,-6],[-50,0],[-93,-11],[-28,-35],[-62,-16],[-56,25],[-53,27],[-62,22],[-65,20],[-63,5],[-57,22],[-77,24],[-1,0],[-59,10],[-60,15],[-103,41],[-34,-10],[-51,25],[-49,7],[-36,2],[-53,-6],[-71,6],[-56,41],[-48,34],[-50,51],[-22,56],[-20,52],[35,79],[34,107],[41,90],[27,56],[10,22],[31,52],[17,91],[3,110],[-3,93],[25,93],[31,43],[-1,89],[29,52],[41,45],[31,32],[23,54],[1,98],[0,14],[33,138],[51,75],[39,65],[21,70],[53,47],[38,78],[68,51],[308,390],[45,72],[0,1],[30,65],[16,71],[-10,77],[42,53],[27,94],[-3,90],[-1,25],[1,75],[14,62],[-3,116],[-1,128],[-37,109],[0,45],[-30,38],[-29,60],[-10,10],[-34,33],[-52,54],[-13,47],[-6,21],[14,76],[28,83],[49,44],[28,7],[52,-45],[86,-58],[43,-25],[60,-40],[79,-20],[64,7],[58,-19],[68,-3],[40,-8],[52,9],[65,16],[60,46],[34,38],[35,-43],[36,-33],[27,-40],[30,-5],[66,-20],[42,-19],[9,-9],[40,-44],[25,-75],[42,-109],[2,-5],[53,-85],[46,-31],[58,-20],[53,0],[34,17],[82,-25],[77,-39],[43,-5],[56,-3],[61,18],[50,13],[5,2],[37,-42],[2,-3],[16,-72],[29,-19],[63,28],[50,-32],[68,-4],[34,58],[51,4],[61,-8],[51,-19],[44,-5],[33,29],[52,-19],[56,-36],[46,-21],[48,2],[55,-24],[67,-36],[65,-2],[65,4],[79,16],[67,-23],[61,9],[65,-36],[73,-48],[83,-45],[72,-25],[53,-26],[66,-4],[68,-7],[60,-33],[59,-46],[50,-1],[47,-11],[72,3],[75,22],[71,49],[60,9],[52,-14],[52,-9],[63,-28],[85,-15],[49,-28],[46,-25],[52,-18],[68,1],[64,-41]],[[59991,60729],[45,-23],[49,-25],[4,-2],[35,-21],[41,-37],[46,-18],[66,-8],[1,0],[64,0],[62,-10],[54,-7],[48,11],[37,-2],[5,-1],[47,-16],[53,-5],[5,0],[47,3],[59,-3],[59,25],[45,-21],[51,-20],[43,-1],[41,-28],[47,-14],[54,-20],[72,-11],[75,-2],[1,0],[59,-33],[45,-17],[35,-24],[42,-21],[45,-26],[44,-28],[54,-56],[51,-12],[29,-34],[42,-49],[73,-94],[17,-17],[37,-35],[20,-14],[15,-10],[9,-6],[36,-85],[32,-60],[13,-22],[42,-67],[48,-66],[35,-42],[37,-35],[7,-6],[6,-10],[21,-33],[15,-29],[19,-37],[40,-59],[36,-50],[3,-5],[34,-41],[19,-42],[26,-61],[64,-66],[3,-3],[43,-56],[39,-60],[58,-86],[33,-47],[36,-44],[5,-6],[26,-28],[24,-51],[19,-40],[50,-68],[1,-2],[25,-31],[16,-19],[36,-59],[20,-69],[27,-60],[49,-84],[36,-60],[25,-75],[14,-50],[18,-53],[19,-76],[34,-96],[39,-101],[42,-75],[34,-54],[31,-81],[39,-114],[11,-145],[-7,-95],[-3,-86],[-7,-122],[-6,-21],[-27,-82],[-24,-77],[-19,-86],[-42,-115],[-31,-89],[-30,-51],[-26,-43],[-45,-89],[-28,-69],[-27,-56],[-25,-64],[-20,-58],[-20,-52],[-26,-92],[-30,-111],[-26,-62],[-38,-43],[-23,-51],[-36,-78],[-66,-64],[-54,-38],[-41,-4],[-66,-1],[-82,-8],[-60,-62],[-68,-39],[-47,-21],[-61,-42],[-48,-63],[-32,-53],[-46,-35],[-47,-67],[-67,-48],[-65,24],[-46,22],[-44,-48],[19,-61],[-14,-64],[-50,-57],[-51,-34],[-8,84],[-25,21],[-26,21],[-21,18],[-56,-25],[-47,-56],[-45,-25],[-53,8],[-52,-2],[-50,18],[-65,11],[-44,-20],[-40,-41],[-50,-13],[-61,11],[-66,9],[-49,-40],[-45,27],[-17,2],[-39,3],[-63,-8],[-59,3],[-2,0],[-75,-21],[-40,-18],[-61,-7],[-55,-23],[-66,-38],[-48,28],[-1,2],[-7,61],[-1,10],[-22,56],[-44,114],[-62,124],[-22,23],[-42,46],[-30,59],[-6,11],[-33,58],[-36,79],[-27,118],[-13,71],[-10,78],[-10,85],[-21,98],[-29,116],[-18,142],[-40,71],[-8,81],[31,85],[-37,32],[34,64],[14,78],[-16,90],[35,73],[-28,108],[37,63],[-10,51],[18,98],[0,89],[2,82],[-6,86],[-6,56],[-9,75],[0,1],[-15,65],[-21,56],[-33,30],[-2,65],[-24,76],[-34,46],[-25,85],[-23,81],[-33,90],[-31,66],[-30,90],[-22,50],[-31,33],[-7,7],[-27,61],[-20,44],[-29,32],[-16,17],[-39,9],[-44,71],[-62,59],[-60,42],[-47,25],[-43,45],[-46,34],[-55,-5],[-61,28],[-29,78],[-6,15],[-27,16],[-4,2],[-44,-1],[-39,67],[-49,21],[-43,21],[-45,74],[-1,12],[-16,102],[-43,80],[-26,35],[-9,12],[1,4],[6,46],[-3,11],[-23,81],[-46,92],[-7,67],[20,63],[7,93],[4,123],[12,82],[3,25],[19,97],[35,97],[61,65],[50,19],[37,38],[60,66],[56,52],[17,19],[40,43],[50,58],[59,43],[80,20],[89,40],[87,15],[42,-13],[5,-1],[56,-3],[95,18],[58,7],[38,13],[85,30],[54,-20],[1,0],[57,13],[62,27],[48,-10],[41,-21]],[[67600,50933],[6,-2],[35,3],[37,-22],[8,-5],[12,-25],[13,-27],[39,-61],[11,-8],[1,0],[21,-16],[29,-23],[18,-15],[3,-2],[8,-8],[7,-9],[1,-1],[25,-34],[14,-18],[1,-3],[21,-34],[2,-3],[1,-1],[18,-30],[13,-22],[18,-81],[6,-29],[12,-16],[1,0],[9,-11],[19,-24],[11,-14],[1,-1],[3,-4],[3,-4],[0,-1],[6,-9],[0,-2],[1,0],[11,-17],[18,-30],[17,-31],[13,-25],[26,-57],[23,-56],[10,-24],[0,-1],[5,-13],[-2,-70],[12,-112],[0,-4],[-39,-57],[-4,-1],[-15,-4],[0,-1],[-29,-8],[-9,-2],[-6,-2],[-8,-2],[-2,0],[-8,-2],[-31,-7],[-1,1],[-10,-3],[-6,-83],[2,-29],[1,-10],[4,-37],[9,-48],[3,-14],[-21,-81],[8,-73],[-10,-50],[-5,-29],[-18,-27],[-3,-6],[-1,-1],[-14,-22],[-10,-24],[-3,-8],[-3,-8],[-19,-48],[-3,-75],[-5,-77],[-21,-66],[-3,-65],[-1,-44],[21,-18],[45,-36],[63,49],[51,36],[27,-19],[28,-20],[15,-12],[25,-22],[2,-2],[10,-8],[27,-3],[28,-3],[10,-1],[3,0],[5,-27],[1,-8],[4,-27],[5,-31],[19,-86],[-14,-71],[-40,-50],[-47,-22],[-53,-78],[-10,-134],[-34,-58],[-19,-33],[-1,-1],[-87,11],[-33,65],[-2,2],[0,1],[-10,21],[-5,8],[-19,21],[-4,5],[-1,0],[-2,2],[-21,23],[-37,8],[-35,-15],[-22,-67],[-58,-17],[-12,3],[-27,6],[-21,8],[-28,12],[-46,-33],[-35,-35],[-30,-50],[-6,-11],[-5,-1],[-47,-11],[-45,-1],[-20,-11],[-21,-14],[-36,-40],[-1,0],[-2,-3],[-51,-40],[-13,15],[-34,42],[-18,25],[-21,29],[-3,11],[-4,14],[-20,82],[-30,88],[-15,64],[-37,73],[-14,3],[-41,9],[-34,-92],[-20,-90],[-37,-93],[-62,0],[-42,63],[-9,-2],[-31,-6],[-9,-1],[0,-1],[-53,-11],[-1,0],[-7,-2],[-71,-16],[-58,-57],[-79,-28],[-64,-50],[-49,-54],[-12,-9],[0,-1],[-11,-8],[-5,-4],[-8,-7],[-24,-18],[-20,-15],[-9,-7],[-23,-18],[-57,44],[-28,68],[0,1],[8,71],[-27,79],[-12,1],[-17,3],[-1,0],[-19,3],[-15,-23],[-5,-9],[-19,-30],[-13,-23],[-14,-26],[-4,-7],[-9,-14],[-15,-23],[-9,-14],[-17,-36],[1,-1],[-1,-1],[-20,-42],[-45,-56],[-63,-20],[-32,-59],[-7,-2],[-44,-10],[-1,3],[-28,44],[-5,9],[-22,-10],[-49,-24],[-20,13],[-54,33],[-58,-2],[-25,42],[-4,5],[-2,5],[-4,7],[-15,31],[-32,69],[29,68],[-16,69],[-33,61],[-19,15],[-34,28],[-17,11],[-42,26],[-6,4],[-45,50],[-19,21],[-26,42],[-1,0],[0,1],[0,1],[-15,24],[-31,8],[-29,63],[2,20],[1,12],[4,38],[4,36],[3,33],[25,102],[28,35],[21,27],[16,55],[9,30],[17,21],[31,38],[9,12],[9,11],[8,12],[0,1],[50,79],[27,48],[8,14],[16,24],[21,31],[0,1],[1,0],[22,23],[32,31],[22,34],[0,1],[32,48],[19,93],[58,29],[1,0],[35,14],[14,6],[40,20],[20,6],[22,7],[33,7],[8,2],[20,4],[31,11],[35,52],[55,-4],[51,32],[18,3],[28,4],[2,1],[28,4],[55,15],[23,38],[27,45],[33,33],[26,26],[7,7],[34,39],[2,3],[37,43],[45,35],[24,18],[9,11],[32,36],[7,11],[8,12],[14,21],[6,9],[1,0],[6,7],[24,26],[14,14],[8,13],[27,40],[20,21],[9,8],[1,2],[13,13],[38,36],[12,8],[1,1],[4,2],[27,15],[17,13],[12,9],[2,1],[19,14],[14,7],[25,13],[22,44],[-2,65],[4,3],[6,7],[35,37],[75,43],[63,68],[76,81],[18,9],[37,19],[35,22],[29,18],[9,6],[2,1],[35,45],[2,2],[11,5],[30,11],[9,5],[20,12],[3,1],[29,19],[35,24],[24,10],[4,1],[1,0],[19,7],[17,6],[2,1],[14,4],[40,3],[3,0],[20,1],[19,-6],[35,-11],[7,-2]],[[66994,63838],[66,-18],[48,5],[65,-29],[17,1],[50,5],[5,-69],[2,-95],[35,-71],[29,-46],[52,-89],[64,-23],[47,25],[45,5],[47,-25],[6,-3],[27,-43],[8,-12],[29,-68],[48,-27],[54,4],[37,15],[28,-37],[16,-20],[40,-64],[-3,-66],[16,-67],[20,-77],[10,-38],[50,-59],[11,11],[27,27],[17,54],[21,1],[28,2],[26,-82],[9,-67],[11,-63],[27,-85],[40,-89],[7,-20],[26,-71],[54,-34],[42,-2],[35,8],[7,2],[42,27],[2,-80],[8,-72],[11,-39],[21,-36],[-29,-23],[-13,-56],[2,-84],[0,-94],[21,-111],[6,-25],[12,-49],[29,-27],[23,-22],[38,-82],[36,-83],[30,-83],[5,-15],[70,-105],[7,-12],[34,-36],[13,-14],[4,-109],[5,-110],[14,-80],[1,-8],[37,-71],[44,-30],[50,-26],[29,-21],[8,-6],[31,-32],[34,-114],[35,-86],[9,-63],[12,-129],[0,-68],[17,-68],[4,-9],[35,-81],[40,-19],[25,-8],[2,-1],[32,-11],[21,-78],[20,-66],[9,-68],[0,-21],[0,-36],[20,-77],[126,83],[99,-70],[39,-15],[37,-8],[65,14],[117,-35],[55,22],[46,33],[13,10],[61,26],[83,48],[29,29],[43,30],[44,31],[32,61],[69,70],[57,37],[51,9],[40,-59],[54,-10],[50,12],[53,29],[46,36],[40,34],[38,43],[60,3],[67,-2],[54,40],[19,14],[85,22],[59,1],[51,29],[30,65],[56,71],[41,49],[45,1],[31,39],[21,60],[3,83],[44,22],[59,29],[49,42],[46,40],[77,68],[60,11],[45,59],[48,2],[57,8],[68,-29],[9,-4],[70,57],[51,87],[69,69],[51,-11],[51,35],[30,39],[69,-72],[57,21],[44,-38],[58,-72],[82,-44],[48,32],[37,17],[44,10],[50,29],[45,-21],[54,30],[51,31],[44,14],[44,29],[39,-37],[31,-43],[29,-57],[27,-98],[2,-6],[29,-73],[35,-15],[60,14],[61,70],[56,47],[40,-43],[41,-51],[45,-69],[1,1],[47,73],[12,46],[41,-28],[43,19],[62,-40],[41,-7],[17,-3],[28,-31],[6,-6],[9,-100],[49,19],[26,-50],[45,-41],[31,-3],[17,-2],[36,-23],[3,-90],[17,-86],[12,-60],[-16,-46],[-5,-42],[-1,-7],[12,-54],[42,-32],[39,40],[82,-6],[6,-7],[54,-55],[4,-98],[3,-87],[10,-24],[19,-45],[36,-46],[33,-1],[28,-28],[9,-10],[13,-13],[21,-42],[14,-30],[46,-31],[33,-23],[24,-45],[11,-8],[15,-10],[44,-27],[-5,-63],[-3,-49],[29,13],[20,9],[4,-39],[2,-19],[26,-38],[38,-47],[41,-48],[34,-52],[29,-46],[45,-61],[45,-43],[16,-16],[1,-1],[28,-27],[27,-63],[36,19],[27,-29],[30,-33],[42,-98],[5,-89],[0,-31],[0,-77],[-4,-60],[36,0],[32,63],[42,-7],[15,-14],[14,-13],[23,-22],[23,-69],[41,6],[56,26],[62,61],[33,89],[1,0],[54,-46],[1,-76],[0,-15],[-31,-71],[58,-8],[68,9],[49,7],[39,-8],[7,-1],[39,-5],[-10,-60],[42,-41],[12,-87],[8,-99],[16,-79],[5,-67],[-22,-72],[-1,-5],[5,-6],[15,-16],[7,-7],[16,-17],[28,-80],[10,6],[29,17],[18,10],[31,-87],[0,-1],[7,-15],[18,-38],[35,-42],[18,-69],[3,-56],[2,-31],[46,-62],[49,18],[46,-35],[59,39],[49,5],[6,0],[35,-6],[51,10],[27,34],[42,42],[63,-3],[85,-23],[30,-33],[22,-24],[46,-57],[49,-39],[56,-68],[53,-38],[41,-18],[24,-28],[33,-36],[18,-42],[4,-9],[15,-55],[52,-38],[1,-1],[5,-9],[55,-90],[63,-5],[85,2],[48,-13],[31,-35],[57,-23],[47,35],[36,0],[43,-26],[64,-12],[65,-36],[33,-20],[49,-38],[45,-36],[30,-33],[45,-48],[45,-21],[31,-17],[34,11],[42,-18],[34,-51],[44,-30],[10,-8],[50,-44],[-13,-103],[1,-2],[51,-87],[44,-36],[3,-5],[41,-61],[14,-27],[20,-42],[53,-73],[8,-12],[24,-35],[23,-31],[25,-74],[3,-79],[9,-52],[3,-15],[7,-10],[37,-53],[24,-34],[-54,-40],[-41,-37],[-1,-46],[-1,-51],[0,-8],[29,-74],[12,-4],[31,-10],[43,-8],[-21,-80],[-40,-82],[-4,-124],[0,-93],[7,-93],[-16,-94],[-2,-80],[-33,-57],[0,-88],[37,-66],[-11,-129],[-9,-90],[-52,-36],[-14,-91],[-3,-119],[2,-88],[-72,-62],[-34,-78],[-8,-10],[-42,-51],[-13,-66],[-17,-108],[-46,-72],[-35,-66],[-32,-75],[-47,-68],[-39,-72],[-44,-52],[-50,-4],[-45,28],[-37,-34],[-28,-33],[-63,-21],[-82,-76],[-48,-84],[-56,-63],[-41,-80],[-37,-31],[-36,-63],[-14,-104],[-4,-34],[-6,-56],[-47,-86],[-47,14],[1,-63],[11,-81],[-48,-72],[-81,-21],[-67,-53],[-57,-25],[-5,-2],[-38,10],[-39,-48],[-64,7],[-60,12],[-49,43],[-34,41],[-40,24],[-63,-45],[-53,-60],[-2,-3],[-41,-64],[-30,-39],[-53,-23],[-52,-49],[-58,-3],[-69,-7],[-90,-32],[-58,-4],[-41,-20],[-2,-63],[-22,-64],[-19,-27],[-5,-6],[-31,-37],[-34,-40],[-51,-42],[-33,16],[-38,-13],[-41,-85],[-26,-43],[-13,-71],[-42,-11],[-68,15],[-31,-85],[-58,21],[-27,-64],[-52,94],[-1,1],[-40,87],[-13,0],[-32,0],[-67,10],[-69,2],[-41,-37],[-33,-25],[-34,-23],[-30,-36],[-28,-31],[-27,69],[-56,0],[-32,-52],[-39,2],[-52,6],[-42,67],[-10,23],[-28,61],[-12,-2],[-53,-6],[-27,3],[-13,1],[-43,32],[-55,25],[-80,-16],[-66,-27],[-54,-7],[-34,-28],[-46,-28],[-53,2],[-28,-14],[-23,-13],[-42,-47],[-54,-17],[-54,-53],[-50,-23],[-8,-4],[-51,-101],[-57,-68],[-38,-25],[-46,-17],[-37,-37],[-48,3],[-46,-43],[-55,-40],[-48,-65],[-65,-14],[-36,-50],[-58,-46],[-50,-54],[-56,-43],[-52,-26],[-71,-28],[-69,-60],[-62,-30],[-50,-25],[-44,2],[-50,-42],[-53,-89],[-53,-75],[-51,-40],[-65,-29],[-60,-36],[-39,-13],[-36,-4],[-68,11],[-84,11],[-62,8],[-41,4],[-32,4],[-60,19],[-73,-12],[-68,-5],[-61,-12],[-51,-26],[-45,-60],[-65,11],[-36,67],[-48,-9],[-65,-9],[-55,-73],[-50,-7],[-48,-41],[-40,-30],[-41,-1],[-45,-19],[-68,-41],[-69,-17],[-67,0],[-60,17],[-54,61],[-63,64],[-66,-28],[-63,-5],[-56,17],[-73,33],[-65,-40],[-30,72],[-48,29],[-61,1],[-63,33],[-24,74],[-7,23],[22,86],[-25,135],[-53,75],[-4,7],[-46,51],[-32,6],[-22,-67],[-63,-56],[-67,33],[-55,33],[-52,45],[-20,60],[-13,47],[-12,42],[-39,33],[-15,12],[6,21],[11,41],[3,71],[50,87],[-1,48],[-1,22],[0,6],[-1,23],[-2,44],[-2,31],[-26,90],[-24,70],[-36,52],[-11,31],[-11,28],[-8,23],[-9,24],[-2,3],[-15,40],[-37,43],[-27,33],[-48,29],[0,52],[0,58],[63,45],[13,21],[22,35],[4,56],[3,45],[34,29],[14,38],[1,4],[12,36],[3,20],[7,44],[1,7],[10,107],[-28,59],[22,36],[6,102],[5,47],[-15,78],[-22,96],[-9,139],[-5,149],[-2,97],[20,79],[-20,97],[7,96],[-7,85],[-8,88],[0,1],[-2,74],[-18,109],[-22,99],[3,63],[12,96],[-8,135],[-1,16],[-12,102],[-13,110],[-24,91],[-18,84],[-38,61],[-56,118],[-20,94],[-6,106],[-13,91],[-7,69],[-6,76],[-18,70],[-7,90],[-5,143],[1,8],[5,77],[0,78],[4,52],[3,44],[-7,116],[-19,104],[-13,128],[-39,93],[-33,54],[-15,17],[-32,38],[-12,40],[-23,75],[-32,14],[-21,9],[-38,38],[-39,19],[-45,42],[-5,5],[-68,46],[-77,42],[-75,-2],[-34,57],[-11,1],[-52,5],[-43,-12],[-51,-35],[-72,-35],[-47,-60],[-52,-48],[-53,-54],[-33,-110],[-51,-125],[-64,-103],[-5,-8],[-56,-24],[-51,-25],[-41,-47],[-47,9],[-55,-20],[-60,30],[-40,71],[-14,19],[-2,2],[-27,38],[-57,36],[-34,36],[-36,45],[-11,7],[-37,24],[-52,52],[-44,42],[-40,36],[-48,40],[-66,51],[-70,15],[-51,10],[-41,14],[-51,9],[-63,14],[-64,35],[-73,66],[-55,60],[-2,2],[-54,72],[-50,72],[-61,64],[-68,60],[-39,22],[-47,19],[-61,-6],[-56,-46],[-49,-12],[-68,24],[-28,41],[-33,37],[-22,49],[-1,1],[-2,6],[-20,68],[-14,97],[-22,92],[-43,100],[-48,81],[-6,9],[-41,54],[-46,63],[-50,40],[-40,15],[-6,7],[-40,40],[-30,65],[-8,17],[-25,66],[-37,85],[-39,104],[-33,63],[-31,47],[-4,4],[-38,51],[-35,58],[-39,59],[-42,61],[-38,44],[-15,43],[-13,39],[-42,74],[-44,77],[-31,67],[-27,73],[-35,126],[-45,87],[-22,26],[-23,28],[-34,59],[1,5],[20,78],[3,13],[20,81],[-8,80],[9,95],[-3,94],[3,110],[-31,134],[-35,108],[-35,49],[-10,10],[-29,28],[-36,39],[-27,60],[-4,8],[-10,82],[10,66],[12,77],[7,73],[-24,51],[41,56],[15,76],[10,69],[-2,118],[4,62],[6,93],[4,90],[9,85],[20,51],[9,21],[27,54],[33,69],[26,97],[17,64],[11,92],[17,71],[34,76],[13,97],[20,83],[23,69],[9,18],[38,74],[37,131],[24,106],[39,40],[21,77],[-2,62],[35,38],[4,71],[-10,55],[5,89],[17,113],[33,-18],[39,-27],[91,21],[22,76],[44,-73],[53,3],[21,27],[21,28],[39,65],[31,70],[56,9],[13,59],[33,-5],[15,-3],[-18,98],[-28,77],[-1,90],[25,65],[75,14],[71,-1],[51,-43],[51,-32],[62,4],[44,34],[55,24],[82,-37],[53,-42],[23,75],[24,52],[27,43],[29,60],[44,54]],[[42026,73655],[-90,-56],[-16,62],[-20,40],[-25,50],[44,145],[152,178],[32,-23],[31,-22],[19,-13],[28,-21],[17,-114],[-41,-69],[-36,-27],[-52,-22],[-43,-108]],[[41647,84287],[86,-25],[70,12],[69,-11],[38,-14],[20,-8],[35,-81],[1,-4],[29,-65],[38,-33],[29,-25],[35,-86],[8,-19],[70,-105],[40,-59],[6,-13],[26,-56],[33,-54],[38,-73],[25,-101],[34,-86],[12,-29],[23,-57],[33,-34],[24,-26],[47,-45],[-28,-34],[-2,-6],[-28,-63],[12,-127],[1,-4],[37,-61],[27,-39],[34,-24],[7,-5],[59,-26],[-30,-159],[14,-50],[16,-61],[48,-36],[46,-76],[15,2],[30,5],[52,-20],[-31,-86],[-2,-67],[8,-107],[-7,-88],[-25,-94],[-15,-168],[39,-69],[39,-70],[18,-23],[26,-33],[29,-42],[0,-109],[28,-95],[29,-67],[2,-4],[23,-64],[51,-37],[73,-55],[7,-8],[38,-49],[30,-76],[19,-92],[18,-60],[8,-26],[65,-88],[2,-3],[54,-88],[21,-75],[12,-85],[12,-80],[12,-25],[19,-40],[23,-40],[30,-24],[8,-6],[52,-34],[4,-2],[40,-54],[19,-59],[-3,-69],[1,-78],[3,-108],[-12,-101],[-12,-59],[2,-7],[22,-99],[44,12],[45,13],[33,72],[54,55],[69,1],[86,-50],[47,-6],[29,-33],[28,-30],[46,-101],[38,-83],[7,-69],[13,-63],[0,-1],[2,-12],[6,-8],[52,-77],[25,-107],[34,-94],[32,-83],[32,-96],[18,-97],[-3,-70],[-9,-62],[-4,-61],[-4,-57],[0,-125],[11,-138],[-55,-18],[-57,18],[-55,-44],[-46,-22],[-59,6],[-41,-65],[-5,-103],[16,-94],[17,-78],[44,-70],[9,-63],[-19,-51],[-11,-30],[7,-41],[6,-40],[43,-49],[21,-4],[32,-7],[22,-62],[4,-70],[-6,-83],[-17,-82],[-22,-91],[20,-95],[7,-88],[10,-73],[18,-44],[6,-15],[46,-75],[71,-13],[26,82],[4,12],[11,-25],[29,-67],[54,-49],[47,-74],[73,-31],[68,34],[9,4],[45,-90],[13,-97],[13,-48],[8,-31],[3,-4],[59,-73],[-30,-156],[29,-75],[51,-99],[31,-55],[7,-17],[26,-64],[29,-26],[44,-42],[41,3],[42,36],[-7,80],[10,-2],[48,-11],[5,-56],[1,-12],[4,-41],[53,-39],[-14,-76],[-22,-63],[-1,-3],[2,-1],[47,-36],[11,-77],[4,-21],[0,-1],[27,-35],[25,-33],[12,-77],[53,58],[54,15],[58,35],[36,-11],[43,53],[53,50],[22,81],[18,141],[33,128],[67,32],[-10,70],[12,64],[70,20],[-57,90],[-5,8],[-66,60],[-45,12],[-132,98],[-64,25],[-28,80],[-9,26],[17,81],[1,81],[54,81],[23,64],[85,-24],[30,74],[45,88],[2,3],[1,-5],[10,-55],[64,-51],[61,-33],[48,-25],[33,-20],[42,-24],[57,-33],[77,-9],[54,27],[28,45],[52,31],[57,71],[54,21],[68,-28],[5,-2],[52,-3],[7,-60],[-21,-57],[-36,-33],[-4,-78],[-82,-142],[-50,-18],[-43,-23],[-27,-56],[0,-100],[9,-80],[-35,-74],[27,-74],[-25,-104],[-32,-120],[-49,22],[-5,-4],[-27,-22],[-26,-74],[17,-155],[13,-76],[17,-99],[22,-81],[35,-100],[21,-43],[11,-22],[36,-61],[59,-50],[65,-29],[33,-5],[12,-49],[91,-28],[85,-71],[18,-15],[47,-96],[47,-104],[38,-113],[49,-85],[6,-108],[-22,-96],[-45,-194],[-5,-71],[9,-66],[12,-82],[7,-83],[25,-106],[17,-82],[41,-98],[29,-55],[48,-109],[33,-84],[12,-32],[6,-16],[18,-49],[18,-42],[24,-49],[6,-12],[29,-49],[1,-2],[11,-20],[20,-18],[24,-22],[24,-20],[40,-27],[17,-10],[33,-18],[72,-42],[42,-51],[44,-40],[30,-27],[28,-45],[43,-68],[30,-15],[35,-15],[24,-8],[9,-3],[23,-7],[9,-32],[11,-37],[4,-15],[21,-39],[19,-37],[22,2],[52,4],[41,2],[12,0],[44,1],[1,0],[-2,-106],[-6,-93],[-29,-144],[-53,-41],[-32,-35],[-35,-28],[-21,-72],[-51,-40],[-72,-70],[-42,-45],[-31,-51],[-54,-19],[-41,-21],[-41,-86],[-18,-47],[-31,-23],[-36,-35],[-49,-60],[-50,-65],[-18,-92],[-43,-73],[-34,57],[-61,34],[-36,-93],[0,-2],[1,-1],[36,-30],[18,-56],[25,-80],[-84,-70],[-102,-46],[-66,-8],[-41,5],[-48,77],[2,13],[22,127],[25,101],[-4,127],[-10,127],[-30,90],[-1,0],[-24,-2],[-6,0],[-43,34],[-40,23],[-13,66],[-3,13],[-6,-8],[-41,-50],[-32,-24],[-29,-25],[-70,-22],[-52,8],[-48,-27],[-46,-29],[-49,8],[-96,-29],[-39,-31],[-38,-28],[-42,-18],[-32,0],[-38,-28],[-15,-50],[-35,-22],[-38,22],[-23,56],[-42,-2],[-53,-39],[-63,-56],[-66,-28],[-55,-36],[-35,-51],[-11,-16],[-33,-85],[-58,-65],[-58,-57],[-60,-49],[-29,-59],[5,-55],[-37,-27],[-63,48],[-63,-9],[-72,-21],[-53,-28],[-69,13],[-52,13],[-51,20],[-40,32],[-43,75],[-2,7],[-25,65],[-15,73],[-13,108],[-1,83],[-18,78],[-47,57],[-16,18],[-111,51],[-58,76],[-53,21],[-35,44],[-32,61],[-9,17],[0,1],[-3,2],[-14,16],[-2,2],[-20,22],[-15,14],[0,2],[-40,56],[-101,83],[-36,-31],[-88,5],[-11,-22],[-88,117],[-63,43],[8,34],[30,76],[40,72],[11,26],[-5,42],[-24,53],[-7,50],[13,97],[-58,-15],[-11,-41],[-153,159],[11,37],[-59,50],[-40,2],[-152,-69],[-77,332],[61,110],[27,52],[0,1],[-7,9],[-37,54],[-13,-30],[-17,-35],[-74,-51],[-58,-110],[-82,-97],[-63,-71],[-94,-113],[-73,-81],[-18,-28],[-1,-43],[34,-18],[213,0],[-3,-200],[-793,0],[0,172],[59,-2],[-13,195],[-52,28],[-1,0],[-65,-17],[-49,15],[-85,86],[-18,53],[-6,18],[-44,109],[-14,87],[-53,79],[1,213],[56,74],[0,60],[-20,97],[-31,52],[-2,64],[19,24],[40,40],[31,23],[57,-31],[32,20],[76,114],[26,-27],[23,-20],[68,-53],[91,-70],[-13,131],[34,129],[-84,-89],[-10,-11],[-30,77],[46,61],[8,37],[5,24],[38,40],[28,34],[23,30],[12,49],[14,26],[1,2],[0,-1],[20,38],[33,59],[1,2],[4,6],[-12,61],[37,40],[-35,63],[-53,-36],[-18,-13],[-2,-1],[-40,65],[-2,4],[-2,3],[0,1],[-7,20],[-15,44],[-35,32],[-12,11],[-1,0],[-23,21],[-73,17],[-29,21],[-61,45],[-35,57],[-60,20],[-41,-5],[-46,0],[-61,-60],[13,-66],[40,-86],[10,-190],[-53,-129],[-89,82],[-13,51],[-13,52],[-35,69],[-26,32],[-6,8],[-7,8],[-73,115],[0,4],[-21,129],[-41,2],[-14,0],[-71,-24],[-18,-57],[13,-54],[11,-105],[23,-116],[43,-134],[28,-69],[14,-34],[68,-93],[70,32],[1,1],[52,-29],[2,-82],[-5,-89],[44,-118],[31,-88],[-27,-131],[6,-197],[-51,60],[-24,53],[-7,16],[-57,117],[-36,52],[-6,9],[-129,-6],[-42,104],[-42,49],[98,29],[-8,101],[-120,-69],[-65,-87],[-52,78],[18,75],[-36,65],[-34,22],[-11,85],[25,59],[-43,65],[-38,-16],[-54,81],[-55,117],[-22,13],[-24,-36],[-34,-55],[-48,-62],[12,-101],[64,-114],[-80,-3],[-27,-55],[-12,-69],[27,-88],[70,-42],[60,26],[31,-45],[42,-23],[42,45],[50,-68],[73,-75],[90,36],[59,-20],[12,-81],[44,-46],[84,10],[39,-6],[42,-17],[28,-84],[40,-72],[35,-114],[51,-88],[7,-54],[4,-80],[1,-140],[19,-133],[-56,-101],[-32,-76],[-52,-28],[-68,-5],[-68,-25],[-91,-34],[-240,-98],[-70,-23],[-83,-25],[-165,-81],[-84,-4],[-97,-51],[-70,9],[-162,-30],[-88,-63],[-90,-19],[-88,-19],[-157,-34],[-112,-24],[-116,-9],[-98,-59],[-98,-17],[-63,-12],[-66,0],[-71,-4],[-57,20],[-34,17],[-50,61],[-31,61],[-29,58],[-39,122],[-48,144],[-23,90],[-26,157],[16,79],[60,-22],[118,70],[-49,142],[-28,42],[-12,5],[-42,18],[-47,-38],[-30,-70],[-38,14],[-12,90],[-1,7],[-10,83],[-2,15],[-26,77],[-30,92],[-12,70],[-15,120],[-3,23],[-26,140],[-4,112],[-47,189],[-15,58],[-15,59],[-14,50],[-29,78],[-48,71],[-7,11],[-5,16],[-23,70],[-35,71],[-31,41],[-13,18],[-7,23],[-15,51],[-59,104],[-24,36],[-23,33],[-36,51],[-38,62],[-1,6],[-10,34],[-7,4],[-14,9],[-14,8],[-35,44],[-49,47],[-58,23],[-61,24],[-37,14],[-38,45],[-35,66],[-10,20],[-32,111],[37,101],[-33,131],[-5,85],[-6,102],[-19,128],[-6,127],[-44,43],[-10,25],[-14,34],[-1,4],[-22,65],[-23,50],[-27,77],[-47,68],[-4,5],[1,3],[24,82],[-26,77],[-20,39],[-13,25],[-14,4],[-39,10],[-48,66],[-44,54],[-34,64],[-5,10],[-24,77],[-42,49],[-4,4],[-56,30],[-41,-23],[-42,9],[19,44],[-10,50],[-4,24],[-42,52],[-10,22],[-15,30],[0,1],[-19,101],[-19,86],[-10,68],[-2,17],[-47,28],[-18,11],[-63,26],[-40,69],[-7,18],[-19,50],[7,91],[2,117],[7,126],[1,70],[-12,98],[4,91],[14,68],[-3,87],[2,75],[0,117],[-4,68],[17,108],[-2,83],[-15,88],[12,104],[-14,76],[-10,53],[-17,60],[-22,61],[-32,56],[-19,23],[-17,20],[-33,58],[-36,48],[-17,39],[-38,85],[-48,75],[-20,31],[-12,23],[-38,78],[-16,11],[-43,31],[-39,32],[-43,48],[-31,33],[-43,65],[-55,69],[-51,60],[-60,67],[-51,45],[-46,33],[-35,16],[-53,36],[24,42],[6,9],[81,2],[73,13],[59,28],[55,11],[59,8],[62,12],[55,24],[44,26],[72,1],[61,-11],[47,13],[46,-1],[74,2],[72,-8],[63,-13],[38,14],[50,1],[52,-26],[54,1],[37,17],[43,38],[50,25],[66,18],[93,10],[67,4],[51,-19],[42,8],[32,24],[59,-3],[64,-25],[47,-15],[54,-23],[65,16],[65,1],[46,-43],[35,-6],[18,-3],[57,33],[44,0],[61,-10],[36,18],[37,4],[45,0],[52,15],[89,42],[76,27],[38,14],[54,-18],[73,-36],[41,-4],[39,16],[41,10],[27,33],[8,9],[25,-44],[24,-59],[31,62],[18,52],[-36,87],[54,44],[68,14],[44,89],[42,56],[24,-8],[21,-6],[58,39],[-32,29],[-1,58],[-14,61],[-40,62],[15,53],[42,46],[56,77],[47,28],[54,104],[63,54],[55,65],[65,111],[55,50],[25,52],[52,35],[43,62],[43,76],[35,111],[38,69],[37,89],[71,79],[0,1],[-18,96],[15,121],[-4,65],[26,45],[-1,93],[69,107],[43,68],[41,54],[28,55],[34,55],[34,40],[30,46],[32,60],[59,64],[49,70],[11,72],[23,87],[48,12],[39,22],[37,86],[27,65],[65,49],[51,58],[45,58],[60,72],[40,66],[44,16],[61,-24],[15,97],[44,12],[47,-13],[46,4],[47,91],[20,99],[80,-25],[80,6],[57,75],[37,102],[50,-34]],[[47622,72867],[25,-78],[-37,-65],[-1,0],[0,-2],[-13,11],[-46,40],[7,36],[0,5],[2,6],[3,20],[1,0],[9,4],[50,23]],[[2926,93610],[-25,-79],[-56,-85],[-62,-48],[-79,-7],[-47,55],[4,37],[3,25],[6,49],[11,59],[8,42],[76,-76],[79,52],[27,68],[4,10],[10,-7],[23,-14],[6,-5],[12,-76]],[[3025,92905],[30,-2],[83,12],[40,19],[34,15],[47,56],[18,-16],[2,-1],[29,-24],[58,-44],[61,-55],[48,-27],[8,-9],[37,-39],[27,-75],[22,-62],[21,-75],[26,-102],[10,-108],[-14,-57],[-43,-38],[-59,-41],[-44,8],[-43,18],[-43,-50],[-13,-58],[-13,-60],[-56,-79],[-31,-102],[-14,-104],[-17,-98],[-44,-55],[-31,-60],[-23,-99],[-12,-104],[-10,-66],[-24,-82],[-15,-79],[-8,-77],[-14,-59],[-12,-68],[-7,-62],[-9,-56],[-9,-60],[-3,-62],[17,-92],[18,-104],[16,-137],[28,-78],[38,-130],[38,-110],[20,-62],[-3,-49],[-2,-68],[-2,-86],[-42,-25],[-38,-20],[-43,-10],[-32,-33],[-36,-60],[-47,-54],[-42,5],[-44,-64],[-36,-42],[-30,-40],[-59,18],[-52,-42],[-46,-53],[-48,-82],[-46,6],[-41,38],[-48,-44],[-56,-52],[-52,-28],[-59,-3],[-74,40],[-30,-89],[-50,-3],[-59,-27],[-87,-31],[-48,23],[-46,-32],[-96,-81],[-79,-68],[-56,-49],[-56,-78],[-40,-76],[-36,-96],[-21,-32],[-25,-53],[-12,-54],[-6,-63],[-38,-60],[-41,-74],[-25,-114],[-39,-134],[-59,-109],[-40,-87],[-25,-84],[-35,-79],[-37,-76],[-29,-115],[-39,-105],[-23,-68],[-18,-89],[-21,-59],[-19,-76],[20,-73],[-33,-85],[-33,-61],[-45,-62],[-33,-113],[-14,-107],[-6,-33],[-6,-36],[7,-7],[63,-55],[-11,-52],[-31,-45],[-31,-82],[-71,68],[-36,44],[-61,-32],[-56,10],[-38,56],[-71,78],[-43,75],[-47,45],[-50,15],[-54,-43],[-50,44],[25,70],[4,13],[-23,97],[-22,56],[-24,60],[-33,34],[-34,36],[-62,64],[6,27],[16,71],[-29,94],[-35,25],[-24,17],[-8,57],[-4,28],[5,65],[5,60],[9,68],[-3,82],[24,118],[6,87],[-13,78],[9,120],[-40,43],[9,73],[13,81],[49,64],[46,66],[23,79],[29,59],[34,67],[31,78],[15,73],[46,97],[-49,79],[8,112],[6,106],[43,60],[15,67],[5,80],[3,88],[33,54],[24,82],[33,14],[35,27],[50,54],[48,52],[54,64],[44,53],[31,67],[37,62],[55,75],[51,87],[47,119],[46,73],[38,57],[54,39],[47,72],[35,80],[10,73],[37,14],[53,-19],[60,7],[3,6],[34,68],[62,26],[82,50],[68,61],[38,105],[6,41],[6,37],[41,34],[54,22],[64,7],[58,27],[89,53],[52,40],[55,39],[70,47],[36,30],[52,48],[31,41],[57,74],[49,65],[31,84],[32,64],[20,66],[2,69],[12,61],[16,59],[38,99],[32,76],[9,66],[-10,51],[3,146],[27,59],[34,99],[-2,103],[1,1],[48,81],[66,69],[54,-12],[59,18],[44,59],[16,23],[21,34],[18,29],[24,77],[33,4],[25,4],[30,-52],[0,-34],[0,-38],[49,-52],[36,-2]],[[43700,71958],[-32,-74],[-93,67],[-75,5],[-73,-20],[-21,100],[-21,60],[-62,211],[72,47],[106,-32],[126,-142],[28,-61],[45,-161]]],"transform":{"scale":[0.0000544023313933139,0.0000332126811068105],"translate":[-160.24655917199985,18.911121472000104]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ia-counties.json b/src/js/config/mapconfig/mapfiles/county/ia-counties.json new file mode 100644 index 00000000..c54c63b2 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ia-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-96.63777827299992,40.37542960700006,-90.14005463399991,43.50096239700008],"geometries":[{"type":"Polygon","properties":{"name":"IA"},"id":"19189","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19109","arcs":[[4,5,6,7,-3,8]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19059","arcs":[[9,10,11,12]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19063","arcs":[[13,-13,14,-7]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19195","arcs":[[15,-1,16,17]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19143","arcs":[[18,19,20,-11]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19131","arcs":[[21,22,-18,23,24]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19119","arcs":[[25,26,-20]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19089","arcs":[[27,28,-25,29]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19005","arcs":[[30,31,32]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19191","arcs":[[33,34,-28,35,-32]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19167","arcs":[[36,37,38,-26]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19141","arcs":[[39,40,-37,-19]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19033","arcs":[[-23,41,42,43,-16]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19081","arcs":[[-44,44,-9,-2]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19147","arcs":[[-6,45,46,-14]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19041","arcs":[[-47,47,-40,-10]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19037","arcs":[[-35,48,49,50,-29]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19067","arcs":[[-51,51,-42,-22]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19065","arcs":[[52,53,54,-49,-34]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19043","arcs":[[55,56,57,-53,-31]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19149","arcs":[[58,59,60,-38]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19021","arcs":[[61,62,63,-48]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19035","arcs":[[-64,64,65,-59,-41]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19151","arcs":[[66,67,68,-62,-46]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19197","arcs":[[69,70,71,72,-45]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19091","arcs":[[-73,73,-67,-5]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19069","arcs":[[74,75,-70,-43]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19023","arcs":[[76,77,78,-75,-52]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19017","arcs":[[-55,79,-77,-50]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19061","arcs":[[80,81,82,-57,83]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19055","arcs":[[-83,84,85,86,-58]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19187","arcs":[[-72,87,88,89,90,-68,-74]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19019","arcs":[[-87,91,92,93,-54]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19013","arcs":[[-94,94,95,96,-78,-80]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19193","arcs":[[-66,97,98,99,-60]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19161","arcs":[[100,101,102,103,-63]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19093","arcs":[[-104,104,-98,-65]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19025","arcs":[[-91,105,106,-101,-69]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19079","arcs":[[107,108,109,-88,-71]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19083","arcs":[[-76,110,111,112,-108]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19075","arcs":[[-97,113,114,-111,-79]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19097","arcs":[[115,116,117,-81]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19011","arcs":[[118,119,120,-95,-93]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19113","arcs":[[-86,121,122,123,-119,-92]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19171","arcs":[[-121,124,125,-114,-96]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19105","arcs":[[-82,-118,126,127,-122,-85]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19133","arcs":[[128,129,130,-99]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19127","arcs":[[-126,131,132,-112,-115]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19027","arcs":[[-107,133,134,135,136,-102]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19047","arcs":[[-105,-103,-137,137,138,-129]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19015","arcs":[[-110,139,140,141,142,-89]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19073","arcs":[[-143,143,144,-134,-106,-90]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19169","arcs":[[-113,-133,145,146,-140,-109]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19045","arcs":[[147,148,149,-127,-117]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19031","arcs":[[-128,-150,150,151,152,-123]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19085","arcs":[[-139,153,154,155,-130]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19095","arcs":[[156,157,158,159,-120]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19049","arcs":[[160,161,162,-144,-142]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19165","arcs":[[163,164,165,-154,-138]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19009","arcs":[[166,167,-164,-136]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19157","arcs":[[-160,168,169,170,-125]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19153","arcs":[[-147,171,172,173,-161,-141]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19099","arcs":[[-132,-171,174,175,-172,-146]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19077","arcs":[[-163,176,-167,-135,-145]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19103","arcs":[[-153,177,178,179,-157,-124]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19163","arcs":[[180,181,-151,-149]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19139","arcs":[[-152,-182,182,183,-178]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19183","arcs":[[184,185,186,187,-158,-180]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19181","arcs":[[188,189,190,191,-174]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19107","arcs":[[-188,192,193,194,-169,-159]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19121","arcs":[[195,196,197,-162,-192]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19123","arcs":[[-195,198,199,200,-175,-170]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19125","arcs":[[-201,201,202,-189,-173,-176]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19155","arcs":[[-166,203,204,205,206,-155]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19029","arcs":[[-168,207,208,209,-204,-165]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19001","arcs":[[-177,-198,210,211,-208]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19115","arcs":[[-184,212,213,214,-185,-179]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19101","arcs":[[-187,215,216,217,-193]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19087","arcs":[[-215,218,219,220,-216,-186]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19179","arcs":[[-218,221,222,-199,-194]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19039","arcs":[[223,224,225,-196,-191]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19117","arcs":[[-203,226,227,-224,-190]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19135","arcs":[[-223,228,-227,-202,-200]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19129","arcs":[[229,230,231,-206]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19137","arcs":[[-210,232,233,-230,-205]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19003","arcs":[[-212,234,235,-233,-209]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19175","arcs":[[-197,-226,236,-235,-211]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19057","arcs":[[237,238,-219,-214]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19071","arcs":[[239,240,-231]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19145","arcs":[[241,242,-240,-234]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19173","arcs":[[243,244,-242,-236]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19177","arcs":[[-221,245,246,247,-217]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19051","arcs":[[-248,248,249,-222]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19159","arcs":[[250,251,-244,-237]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19053","arcs":[[252,253,-251,-225]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19185","arcs":[[254,255,-253,-228]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19007","arcs":[[-250,256,-255,-229]]},{"type":"Polygon","properties":{"name":"IA"},"id":"19111","arcs":[[-239,257,-246,-220]]}]},"states":{"type":"GeometryCollection","bbox":[-96.63777827299992,40.37542960700006,-90.14005463399991,43.50096239700008],"geometries":[{"type":"Polygon","properties":{"name":"Iowa"},"id":"19","arcs":[[55,83,115,147,180,182,212,237,257,246,248,256,255,253,251,244,242,240,231,206,155,130,99,60,38,26,20,11,14,7,3,16,23,29,35,32]]}]}},"arcs":[[[48331,99952],[0,-58],[0,-17],[0,-26],[0,-39],[0,-51],[0,-54],[0,-76],[0,-59],[0,-38],[0,-49],[0,-38],[0,-52],[0,-36],[0,-45],[-1,-187],[0,-53],[-1,-76],[0,-37],[0,-56],[0,-63],[-1,-58],[0,-62],[0,-61],[0,-57],[0,-58],[-1,-62],[0,-52],[1,-134],[0,-42],[0,-57],[0,-89],[0,-48],[-1,-94],[-1,-94],[0,-80],[0,-61],[-1,-77],[0,-45],[0,-78],[0,-36],[1,-32],[0,-116],[0,-34],[0,-49],[1,-86],[0,-33],[-3,-114],[0,-232],[0,-59],[1,-93],[0,-77],[0,-2],[1,-309],[1,-52],[0,-35],[0,-69],[0,-119],[0,-19],[-2,-221],[0,-34],[1,-34],[1,-55],[0,-58],[0,-70],[1,-69],[0,-39],[0,-41],[-1,-64],[2,-52],[0,-285],[-2,-501],[-2,-189],[0,-17],[1,-44],[0,-75],[0,-84],[0,-34],[0,-39],[0,-58],[0,-64],[0,-67],[0,-39],[0,-77],[1,-56],[0,-48],[0,-46],[0,-127],[0,-40],[0,-61],[0,-37],[0,-46],[0,-50],[0,-35],[0,-35],[0,-50],[-1,-66],[1,-68],[-1,-44],[0,-8],[0,-25],[1,-66],[-1,-76],[1,-62],[0,-6],[-1,-142],[0,-147],[0,-76],[0,-96]],[[48326,92144],[-39,-2],[-25,0],[-30,0],[-139,1],[-74,0],[-61,2],[-154,6],[-60,-2],[-28,-1],[-95,-1],[-39,-2],[-30,1],[-146,1],[-152,-2],[-34,0],[-43,1],[-72,1],[-119,1],[-190,0],[-97,0],[-210,1],[-74,2],[-52,0],[-24,-5],[-86,-2],[-1,0],[-28,2],[-23,1],[-21,1],[-29,-1],[-19,0],[-18,1],[-16,-1],[-16,-1],[-3,0],[-102,0],[-41,0],[-48,0],[-910,-3],[-185,-1],[-99,0],[-154,0],[-24,0],[-77,2],[-75,2],[-16,-1],[-25,-1],[-19,0],[-73,-1],[-33,-1],[-110,0],[-146,-1],[-156,-1],[-211,-2],[-95,2],[-89,0],[-187,-1],[-29,0],[-304,-1],[-305,-4],[-51,2],[-257,-5],[-187,-1],[-115,-1],[-161,1],[-8,0],[-136,0],[-305,2],[-149,2],[-79,1],[-67,6]],[[41051,92141],[0,224],[0,60],[0,85],[0,52],[0,42],[0,105],[0,52],[1,101],[0,129],[0,74],[0,458],[0,11],[-3,454],[-1,462],[-2,470],[0,464],[0,40],[0,32],[0,44],[0,62],[1,52],[0,56],[0,129],[-1,46],[-1,122],[1,341],[0,7],[-1,93],[2,97],[0,36],[0,51],[0,53],[1,94],[0,76],[0,79],[0,50],[0,100],[0,42],[0,46],[0,45],[0,1],[0,51],[0,38],[0,78],[0,72],[0,44],[0,74],[0,37],[1,117],[0,57],[-1,43],[0,88],[0,44],[0,43],[0,39],[1,57],[-1,92],[-1,78],[0,44],[-1,180],[0,3],[0,157],[0,342],[0,151],[-1,466],[0,310],[0,73]],[[41045,99956],[1132,-1],[1411,-1],[353,0],[1276,2],[590,1],[196,0],[77,0],[1308,-3],[99,0],[844,-2]],[[41038,81020],[-6,0],[-28,0],[-68,1],[-20,0],[-47,0],[-50,0],[-27,0],[-43,0],[-38,0],[-52,0],[-154,0],[-70,1],[-37,-1],[-21,0],[-83,0],[-57,0],[-37,1],[-45,0],[-22,0],[-181,1],[-15,0],[-24,1],[-43,0],[-24,1],[-16,0],[-60,2],[-42,0],[-95,2],[-17,0],[-21,0],[-51,1],[-64,1],[-2,0],[-29,0],[-46,1],[-28,0],[-20,1],[-18,0],[-21,0],[-18,0],[-26,0],[-18,0],[-40,1],[-32,0],[-38,0],[-142,1],[-18,0],[-18,1],[-36,0],[-21,0],[-51,0],[-43,1],[-58,0],[-44,1],[-42,0],[-51,0],[-309,-1],[-73,-1],[-23,0],[-34,0],[-29,0],[-47,0],[-54,0],[-43,-1],[-47,0],[-46,0],[-78,-1],[-53,0],[-26,-1],[-48,0],[-25,0],[-18,0],[-90,-1],[-178,1],[-46,0],[-2,0],[-71,0],[-18,0],[-100,0],[-52,2],[-12,0],[-298,-2],[-52,0],[-45,0],[-114,-1],[-58,1],[-36,-1],[-303,4],[-192,-7],[-1,0],[-109,0],[-128,-1],[-167,0],[-304,2],[-73,-1],[-67,0],[-163,0],[-21,0],[-25,1],[-54,0],[-31,0],[-21,-1],[-78,0],[-74,1],[-46,0],[-38,0],[-35,0],[-4,0],[-134,0],[-46,0],[-53,0],[-25,0],[-136,1],[-56,0],[-34,-1],[-72,0],[-39,0],[-184,0],[-4,0]],[[33778,81030],[-3,45],[0,34],[0,60],[0,18],[0,75],[0,69],[1,71],[-1,114],[1,68],[0,36],[0,108],[0,135],[0,93],[0,41],[1,119],[-1,72],[1,34],[-1,54],[0,35],[1,138],[0,58],[0,37],[0,49],[0,37],[0,23],[0,38],[1,48],[0,36],[-1,35],[1,49],[0,53],[0,84],[1,94],[0,51],[0,63],[0,106],[0,35],[1,60],[0,46],[0,52],[0,85],[0,105],[0,33],[1,66],[0,20],[0,53],[0,85],[0,36],[0,46],[0,38],[0,81],[0,122],[1,54],[0,65],[0,135],[0,44],[0,82],[1,38],[0,72],[0,61],[0,33],[0,45],[0,65],[0,55],[0,8],[1,45],[0,121],[0,63],[0,82],[-1,70],[1,96],[0,85],[0,87],[0,56],[0,37],[0,32],[0,20],[0,13],[0,19],[0,23],[0,39],[0,46],[0,40],[0,22],[0,37],[0,28],[0,52],[0,39],[0,14],[0,133],[0,36],[0,218],[0,18],[0,21],[-1,92],[0,73],[0,68],[0,148],[-1,83],[-1,116],[-1,204],[0,67],[0,74],[0,132],[0,121],[0,58],[0,151],[1,118],[0,122],[-1,48],[-1,62],[-2,63],[-1,70],[1,56],[2,125],[1,75],[2,138],[0,47],[0,159],[0,97],[0,118],[-1,98],[1,149],[0,42],[0,40],[0,63],[1,137],[-1,34],[1,83],[0,119],[0,46],[0,88],[1,91],[-1,64],[0,74],[0,71],[-2,142],[0,112],[-1,74],[-1,54],[-1,68],[-1,41],[-1,66],[-3,110],[2,50],[-1,188],[0,182],[0,44],[1,50],[0,103],[-1,35],[1,38],[0,68],[0,35],[0,98],[0,66]],[[33775,92130],[1,55],[0,38],[1,159],[0,68],[0,36],[1,75],[0,80],[0,40],[0,73],[0,46],[0,66],[0,38],[1,42],[0,44],[0,59],[1,135],[0,49],[0,58],[1,76],[1,85],[0,44],[0,16],[0,27],[0,84],[0,62],[0,52],[1,37],[-1,65],[0,38],[0,105],[0,56],[0,61],[0,50],[0,63],[0,54],[0,60],[0,118],[0,70],[0,87],[-1,74],[0,56],[0,62],[0,33],[0,63],[0,64],[0,58],[0,1],[0,131],[0,33],[0,94],[1,60],[0,57],[0,103],[-1,33],[1,129],[0,79],[0,106],[0,58],[1,65],[0,127],[1,67],[1,94],[0,45],[0,5],[1,33],[0,55],[1,99],[0,274],[1,462],[0,98],[0,33],[0,36],[0,99],[0,33],[-1,79],[1,38],[-1,44],[0,44],[0,482],[-2,846],[1,79],[0,45],[-2,215],[0,127],[0,75],[-4,386]],[[33780,99980],[2244,-6],[730,-2],[25,0],[38,0],[1456,-6],[678,-2],[280,-1],[132,-1],[1682,-6]],[[41051,92141],[0,-82],[1,-89],[1,-72],[0,-80],[0,-2],[1,-94],[0,-64],[0,-64],[-1,-129],[1,-76],[-1,-39],[1,-88],[-1,-138],[0,-57],[0,-36],[0,-259],[0,-83],[0,-69],[0,-36],[0,-69],[0,-73],[0,-132],[0,-303],[-1,-159],[0,-149],[0,-313],[0,-253],[-1,-209],[0,-463],[0,-232],[0,-230],[1,-460],[-1,-227],[-1,-234],[0,-4],[1,-55],[-1,-32],[0,-60],[0,-33],[0,-13],[0,-37],[0,-76],[0,-37],[0,-89],[0,-52],[0,-111],[0,-73],[-2,-306],[-1,-57],[0,-10],[-1,-164],[-2,-171],[-1,-62],[-1,-395],[0,-69],[0,-366],[0,-98],[-1,-33],[0,-389],[0,-40],[0,-71],[0,-50],[1,-112],[0,-103],[0,-35],[-1,-45],[0,-46],[-1,-54],[0,-56],[-1,-65],[0,-80],[-1,-82],[0,-45],[-1,-98],[-2,-180],[0,-64],[0,-63],[0,-44],[0,-84],[0,-36],[-1,-159],[0,-107],[0,-61],[0,-72],[1,-169],[0,-210],[0,-68],[1,-43],[0,-36],[0,-57],[0,-145],[1,-223],[0,-57],[0,-55],[0,-64],[1,-74],[0,-141],[0,-72]],[[26533,92131],[-153,1],[-153,-1],[-112,1],[-193,1],[-282,2],[-6,0],[-17,0],[-303,1],[-153,1],[-153,0],[-144,2],[-2,0],[-162,0],[-103,1],[-39,0],[-113,2],[-47,0],[-155,0],[-33,0],[-47,0],[-73,0],[-59,0],[-132,1],[-114,0],[-140,1],[-165,1],[-203,-1],[-102,0],[-101,2],[-53,3],[-123,-4],[-5,0],[-118,0],[-60,0],[-127,0],[-149,0],[-93,0],[-64,0],[-152,0],[-109,-1],[-19,0],[-24,0],[-80,1],[-109,0],[-63,0],[-54,-1],[-182,-1],[-4,0],[-110,-2],[-22,2],[-155,-1],[-17,0],[-121,-1],[-104,0],[-51,0],[-149,-1],[-37,0],[-194,0],[-75,0],[-190,0],[-5,0],[-109,0],[-34,0],[-271,-1],[-153,-1],[-153,-1],[-130,-1],[-22,0],[-27,0],[-124,0]],[[19233,92136],[0,46],[0,59],[0,39],[0,45],[0,58],[0,38],[0,33],[0,82],[0,90],[0,59],[0,45],[0,43],[0,98],[0,62],[0,41],[0,88],[0,95],[0,106],[1,115],[0,55],[0,113],[1,74],[0,61],[0,85],[1,37],[0,40],[0,55],[0,53],[0,39],[1,69],[0,117],[0,70],[1,59],[0,97],[0,52],[0,39],[0,47],[1,40],[0,124],[1,101],[0,41],[0,51],[0,45],[0,78],[-1,50],[0,61],[0,48],[0,49],[0,75],[0,81],[0,32],[0,70],[0,54],[0,34],[0,75],[0,55],[0,93],[0,53],[0,32],[0,35],[0,38],[1,63],[0,36],[0,34],[0,62],[0,35],[1,79],[0,73],[0,47],[0,49],[0,43],[0,51],[0,91],[0,11],[0,40],[1,75],[0,51],[0,55],[0,82],[0,71],[0,44],[0,90],[1,52],[0,34],[0,44],[0,42],[0,34],[-1,103],[0,42],[0,92],[0,68],[-1,96],[0,2],[0,41],[0,73],[0,43],[0,47],[0,83],[0,48],[0,36],[0,45],[0,57],[0,59],[0,4],[0,76],[-1,77],[0,71],[1,39],[0,55],[0,46],[0,43],[0,82],[0,62],[0,37],[0,38],[-1,52],[0,49],[0,74],[0,68],[0,54],[-1,67],[0,102],[-1,41],[0,53],[0,44],[-1,46],[0,44],[0,52],[1,46],[-1,68],[0,81],[0,46],[0,80]],[[19237,99975],[1661,9],[1142,6],[375,2],[652,4],[50,0],[179,-1],[169,0],[105,0],[40,0],[1680,-5],[223,0],[602,-5],[404,-3]],[[26519,99982],[-3,-43],[0,-38],[0,-55],[0,-77],[0,-36],[0,-33],[0,-44],[0,-79],[1,-80],[0,-131],[0,-94],[0,-41],[1,-113],[0,-62],[0,-44],[1,-43],[0,-40],[0,-84],[0,-42],[0,-52],[0,-35],[0,-80],[1,-55],[0,-101],[0,-77],[1,-127],[0,-36],[0,-36],[1,-80],[0,-100],[0,-107],[0,-69],[1,-105],[0,-44],[0,-70],[-1,-69],[0,-38],[1,-38],[0,-16],[0,-38],[1,-206],[0,-215],[1,-59],[0,-51],[0,-44],[1,-51],[0,-45],[-2,-73],[0,-57],[1,-49],[2,-303],[0,-63],[0,-71],[1,-110],[0,-115],[0,-121],[0,-82],[0,-68],[0,-92],[0,-77],[0,-115],[1,-35],[0,-44],[0,-62],[0,-63],[0,-60],[0,-46],[0,-35],[0,-75],[0,-47],[0,-81],[0,-209],[0,-59],[0,-43],[0,-54],[0,-57],[0,-85],[0,-91],[0,-72],[0,-184],[0,-82],[0,-125],[0,-67],[0,-64],[0,-101],[0,-113],[0,-58],[0,-96],[1,-48],[0,-120],[0,-56],[0,-49],[1,-55],[0,-94],[0,-40],[0,-64],[0,-82],[1,-72],[0,-103],[0,-47],[0,-45],[0,-57],[1,-47],[0,-51],[0,-51],[0,-43]],[[33775,92130],[-15,0],[-23,0],[-78,0],[-30,0],[-27,0],[-36,0],[-20,1],[-22,0],[-29,0],[-25,-1],[-26,1],[-41,0],[-19,0],[-31,0],[-22,0],[-25,0],[-41,0],[-40,0],[-60,0],[-128,0],[-20,0],[-71,0],[-94,0],[-44,0],[-131,0],[-49,-1],[-31,0],[-25,1],[-16,-1],[-59,0],[-27,1],[-38,-1],[-34,1],[-61,-1],[-21,0],[-49,0],[-131,0],[-173,7],[-64,0],[-20,0],[-59,0],[-20,0],[-64,0],[-68,1],[-36,-1],[-128,4],[-21,5],[-120,-6],[-133,-6],[-172,1],[-85,0],[-19,0],[-60,-1],[-142,-1],[-182,0],[-126,1],[-155,5],[-51,0],[-56,0],[-40,-1],[-49,1],[-23,-1],[-27,0],[-25,1],[-21,-1],[-24,0],[-16,0],[-34,0],[-33,0],[-16,0],[-28,1],[-29,-1],[-42,1],[-16,-1],[-27,0],[-16,0],[-20,1],[-88,0],[-26,-1],[-41,0],[-62,1],[-21,0],[-55,0],[-29,0],[-49,1],[-28,0],[-45,4],[-14,-2],[-23,-3],[-59,-1],[-75,0],[-21,0],[-52,-1],[-77,0],[-46,0],[-19,1],[-12,0],[-41,0],[-2,0],[-53,1],[-24,1],[-21,0],[-17,0],[-27,0],[-40,0],[-52,-1],[-86,-1],[-108,-1],[-41,0],[-25,0],[-21,0],[-67,2],[-44,1],[-45,2],[-21,0],[-30,0],[-65,2],[-61,-5],[-101,-2],[-146,0],[-24,-1],[-62,0],[-37,0],[-56,1],[-58,0],[-17,0],[-30,0],[-34,0],[-23,-1],[-40,-1],[-49,0],[-26,0],[-65,-1],[-89,0],[-158,3],[-1,0],[-154,-5],[-33,0],[-28,0],[-27,0],[-34,0],[-21,0],[-18,0],[-46,0],[-18,-1],[-35,0]],[[26519,99982],[175,3],[420,7],[314,5],[73,0],[992,-4],[1003,-4],[1711,-6],[13,0],[507,0],[147,-1],[1466,-1],[332,-1],[42,0],[66,0]],[[55613,92147],[-39,0],[-67,0],[-38,0],[-147,0],[-28,0],[-62,1],[-35,-1],[-22,0],[-16,0],[-28,-1],[-62,0],[-50,-1],[-31,-1],[-16,0],[-27,0],[-31,0],[-55,-2],[-55,-1],[-36,-1],[-70,-1],[-65,-2],[-18,0],[-31,0],[-51,-2],[-51,-1],[-35,0],[-16,0],[-38,0],[-31,-1],[-54,1],[-23,0],[-51,0],[-2,0],[-61,-1],[-48,0],[-9,0],[-27,1],[-29,0],[-38,0],[-67,-1],[-36,0],[-36,0],[-56,0],[-19,0],[-22,0],[-23,0],[-27,0],[-29,-1],[-26,0],[-39,1],[-31,-1],[-33,1],[-30,0],[-31,0],[-35,-1],[-32,0],[-1,0],[-34,0],[-29,-1],[-65,0],[-70,0],[-53,-1],[-41,0],[-35,0],[-34,0],[-29,0],[-26,0],[-45,1],[-55,0],[-39,0],[-17,0],[-4,0],[-32,0],[-67,0],[-32,1],[-1,0],[-22,0],[-71,1],[-40,1],[-20,1],[-36,0],[-25,0],[-18,0],[-77,1],[-67,0],[-50,-1],[-32,0],[-42,0],[-18,0],[-24,0],[-79,0],[-33,0],[-16,-1],[-60,1],[-31,0],[-86,0],[-41,0],[-22,1],[-90,0],[-41,0],[-17,0],[-27,0],[-24,0],[-25,0],[-34,1],[-33,0],[-67,1],[-26,0],[-53,1],[-24,1],[-42,0],[-161,-4],[-102,0],[-61,4],[-5,0],[-19,2],[-51,1],[-17,1],[-21,0],[-34,0],[-76,1],[-21,0],[-141,3],[-3,0],[-52,1],[-38,1],[-6,0],[-45,0],[-21,1],[-28,0],[-57,1],[-102,-11],[-18,-2],[-30,-1],[-2,0],[-21,1],[-38,2],[-28,1],[-17,-1],[-186,1],[-71,0],[-68,0],[-67,0],[-95,2],[-75,2],[-110,1],[-1,0],[-118,-4],[-77,-2],[-80,-2],[-34,-1],[-69,0],[-51,1],[-45,1],[-27,1],[-67,0],[-17,0],[-24,0],[-18,0],[-60,0],[-18,0],[-39,1],[-63,0],[-34,0],[-29,0],[-24,1],[-93,1],[-125,0]],[[48331,99952],[64,0],[225,0],[100,0],[100,0],[1723,1],[812,1],[513,0],[88,0],[183,0],[47,1],[1829,2],[1222,2],[373,0]],[[55610,99959],[0,-58],[-1,-74],[0,-136],[0,-58],[0,-59],[0,-54],[0,-56],[0,-63],[0,-56],[0,-84],[-1,-74],[0,-72],[0,-36],[0,-38],[0,-50],[0,-122],[0,-55],[0,-141],[0,-61],[0,-117],[0,-96],[0,-50],[0,-52],[0,-72],[0,-38],[0,-46],[0,-43],[0,-110],[0,-108],[0,-109],[0,-56],[1,-50],[1,-78],[0,-1],[0,-49],[0,-65],[1,-90],[1,-99],[0,-30],[0,-2],[0,-46],[0,-83],[1,-207],[0,-21],[0,-52],[0,-57],[0,-49],[1,-110],[1,-108],[1,-48],[0,-44],[1,-107],[0,-92],[0,-61],[0,-48],[-1,-263],[0,-54],[-1,-90],[0,-112],[-1,-107],[0,-103],[0,-83],[0,-43],[0,-166],[0,-173],[1,-117],[-1,-92],[0,-206],[0,-41],[0,-102],[0,-279],[0,-83],[0,-267],[0,-197],[0,-126],[-1,-112],[1,-96],[0,-104],[0,-28],[0,-234],[0,-64],[0,-107],[0,-58],[0,-50],[0,-113],[0,-59],[0,-39],[0,-63],[0,-42],[0,-37],[-1,-61]],[[19233,92136],[-37,1],[-28,0],[-25,0],[-24,0],[-65,1],[-47,0],[-20,0],[-24,0],[-35,1],[-68,0],[-22,0],[-36,0],[-25,1],[-33,0],[-34,0],[-48,1],[-12,0],[-13,1],[-52,0],[-25,-1],[-25,1],[-26,1],[-28,1],[-38,0],[-46,-1],[-44,1],[-35,0],[-24,0],[-30,0],[-146,2],[-30,0],[-52,0],[-23,1],[-305,3],[-26,0],[-61,1],[-61,1],[-121,2],[-17,-1],[-37,2],[-261,12],[-24,-2],[-261,15],[-27,1],[-106,6],[-18,1],[-26,1],[-24,1],[-32,2],[-42,1],[-49,2],[-16,1],[-36,2],[-39,1],[-27,2],[-22,0],[-21,1],[-25,2],[-78,2],[-50,3],[-21,0],[-32,2],[-27,1],[-45,2],[-30,2],[-28,1],[-41,2],[-35,2],[-34,2],[-31,1],[-36,3],[-30,1],[-35,2],[-31,1],[-42,3],[-36,2],[-57,2],[-17,1],[-33,1],[-58,0],[-29,0],[-75,1],[-107,0],[-3,0],[-160,-3],[-86,-1],[-30,0],[-26,-1],[-164,-2],[-101,-1],[-27,1],[-37,-1],[-16,0],[-149,-1],[-111,1],[-32,-2],[-30,0],[-25,0],[-32,1],[-31,-1],[-18,0],[-37,0],[-27,1],[-28,-1],[-31,0],[-19,0],[-21,-1],[-35,1],[-32,0],[-32,-1],[-43,0],[-23,0],[-22,0],[-56,0],[-34,0],[-59,-1],[-24,0],[-25,-1],[-85,0],[-27,-1],[-28,0],[-56,-1],[-24,-1],[-179,-2],[-39,0],[-27,-1],[-30,0],[-16,0],[-43,0],[-29,-1],[-28,0],[-95,-1],[-51,0],[-59,-1],[-136,0],[-20,0],[-4,0],[-17,0],[-1,-1],[-46,0],[-17,0],[-64,-1],[-305,-3],[-34,0],[-36,0],[-38,-1],[-94,-1],[-16,0],[-46,0],[-34,-1]],[[11941,92211],[0,80],[0,23],[1,146],[1,60],[0,63],[1,93],[0,34],[0,33],[1,111],[1,83],[1,82],[1,75],[0,43],[1,61],[0,37],[1,36],[0,36],[0,32],[1,60],[0,91],[1,113],[0,61],[1,61],[0,61],[1,65],[0,51],[1,57],[0,66],[0,41],[1,62],[1,102],[0,52],[1,46],[0,62],[0,45],[0,84],[1,32],[0,67],[0,37],[1,71],[0,45],[1,59],[0,52],[1,74],[1,69],[0,58],[0,41],[0,92],[0,50],[0,39],[0,45],[0,76],[0,41],[0,55],[0,32],[0,100],[0,66],[0,48],[0,48],[0,32],[0,49],[0,55],[0,62],[0,83],[0,75],[1,84],[0,51],[0,42],[0,68],[0,70],[-1,52],[0,46],[0,44],[0,45],[0,48],[-1,47],[0,51],[0,35],[0,79],[0,92],[-1,40],[0,44],[0,40],[0,38],[0,43],[0,33],[0,44],[0,37],[-1,96],[0,55],[0,76],[0,42],[0,46],[0,84],[0,45],[0,26],[0,16],[0,42],[0,39],[0,43],[0,46],[0,44],[0,33],[0,62],[0,91],[0,45],[0,57],[-1,84],[0,46],[0,47],[0,14],[0,24],[0,82],[0,46],[0,65],[-1,63],[0,76],[0,85],[0,86],[0,112],[0,43],[0,36],[0,39],[0,88],[0,33],[0,43],[0,43],[-1,33],[0,73],[0,76],[0,52],[0,43],[0,44],[0,43],[-1,70],[-1,47]],[[11955,99969],[84,0],[93,0],[514,0],[1536,0],[296,0],[42,0],[694,0],[346,0],[3,0],[1758,11],[886,6],[578,-6],[452,-5]],[[62843,90780],[-307,-3],[-306,2],[-59,-1],[-28,0],[-19,0],[-40,0],[-18,-1],[-16,0],[-35,0],[-46,-1],[-21,0],[-20,0],[-34,0],[-20,0],[-23,0],[-27,0],[-37,0],[-61,0],[-57,1],[-50,0],[-25,-1],[-53,-1],[-47,-2],[-16,0],[-17,0],[-34,-1],[-65,-1],[-34,0],[-42,-1],[-26,0],[-27,0],[-28,0],[-28,0],[-70,-1],[-50,0],[-18,0],[-44,0],[-34,0],[-18,0],[-20,1],[-34,2],[-7,0],[-27,0],[-16,0],[-42,-3],[-59,1],[-18,0],[-16,0],[-22,0],[-88,2],[-20,0],[-60,1],[-55,1],[-31,0],[-17,0],[-29,0],[-44,1],[-17,0],[-63,0],[-85,1],[-32,0],[-22,0],[-15,0],[-18,0],[-36,0],[-66,0],[-21,0],[-24,0],[-22,1],[-46,1],[-56,1],[-16,1],[-57,1],[-24,1],[-9,0],[-13,0],[-19,0],[-30,0],[-38,1],[-30,1],[-22,0],[-17,0],[-17,0],[-30,1],[-33,0],[-19,0],[-25,0],[-22,0],[-23,0],[-17,0],[-27,-1],[-53,-3],[-219,3],[-68,-1],[-1,0],[-84,-2],[-80,0],[-93,-2],[-54,0],[-78,-1],[-69,-1],[-44,-1],[-79,0],[-112,0],[-16,-1],[-35,0],[-44,0],[-22,-1],[-36,0],[-29,1],[-32,1],[-63,1],[-26,1],[-25,0],[-16,0],[-18,0],[-18,-1],[-57,0],[-19,0],[-23,0],[-65,0],[-20,0],[-30,-1],[-99,1],[-16,0],[-51,0],[-19,1],[-24,0],[-43,0],[-39,0],[-41,0],[-39,0],[-34,0],[-34,0],[-19,0],[-65,0],[-35,0],[-17,-1],[-18,1],[-35,-1],[-34,0],[-46,-1],[-70,-1],[-27,0],[-38,0],[-20,-1],[-31,0],[-40,0],[-22,0],[-49,-1],[-46,0],[-24,0],[-30,0],[-37,0],[-26,0],[-22,0],[-37,1],[-16,0],[-17,0],[-24,0],[-27,1],[-34,0],[-19,0],[-27,1],[-21,0],[-27,0],[-17,0],[-18,0],[-18,1],[-33,0],[-24,0],[-42,0],[-16,1],[-32,-1],[-20,1],[-22,0],[-50,0],[-38,0],[-26,0],[-10,0],[-16,0],[-43,1],[-24,0],[-21,0],[-21,0],[-30,0],[-15,0],[-19,0],[-36,1],[-53,0]],[[55616,90780],[-1,234],[-1,231],[-3,462],[2,262],[0,178]],[[55610,99959],[227,0],[121,0],[781,1],[67,0],[43,0],[2622,3],[373,1],[1203,5],[1749,6],[66,0]],[[62862,99975],[0,-32],[0,-48],[-1,-96],[0,-45],[0,-61],[-1,-101],[0,-34],[-1,-135],[0,-99],[-2,-327],[-1,-68],[0,-70],[0,-165],[0,-34],[0,-35],[0,-40],[1,-141],[0,-286],[0,-62],[-1,-68],[0,-60],[-1,-72],[0,-44],[-1,-34],[0,-60],[-1,-41],[-1,-73],[0,-49],[0,-38],[0,-42],[-1,-83],[0,-33],[-1,-42],[0,-50],[0,-48],[0,-183],[-1,-44],[0,-42],[0,-37],[0,-42],[-1,-43],[0,-83],[0,-44],[0,-235],[-1,-34],[0,-44],[0,-63],[0,-39],[0,-49],[0,-53],[0,-96],[0,-36],[0,-44],[0,-41],[0,-33],[0,-46],[0,-73],[0,-59],[0,-36],[0,-35],[0,-38],[-1,-40],[0,-35],[0,-1],[0,-58],[0,-43],[0,-45],[0,-43],[0,-58],[0,-53],[0,-44],[0,-50],[0,-43],[0,-37],[0,-56],[0,-68],[0,-61],[0,-41],[0,-61],[-1,-53],[0,-45],[0,-39],[0,-37],[-1,-57],[0,-37],[0,-120],[-1,-95],[0,-179],[0,-58],[0,-40],[-1,-69],[0,-53],[1,-39],[0,-45],[0,-224],[-1,-90],[0,-25],[0,-12],[0,-211],[-1,-253],[0,-56],[0,-45],[0,-35],[0,-123],[1,-48],[0,-134],[0,-41],[0,-65],[0,-43],[0,-46],[0,-39],[-1,-49],[-1,-46],[1,-49],[1,-33],[0,-77],[0,-38],[0,-47],[0,-39],[0,-46],[0,-69],[0,-81],[0,-110],[0,-196],[0,-110],[0,-59],[0,-36],[0,-64],[0,-37],[0,-85],[0,-81],[0,-42],[1,-137],[0,-83]],[[11941,92211],[-53,2],[-166,2],[-29,-2],[-45,2],[-14,1],[-25,0],[-45,2],[-1,0],[-11,-1],[-3,-1],[-27,3],[-195,0],[-205,1],[-103,0],[-123,1],[-183,0],[-51,-1],[-2,0],[-8,-1],[-60,-1],[-6,0],[-56,-1],[-121,-3],[-111,2],[-37,1],[-146,2],[-104,3],[-196,6],[-4,1],[-189,8],[-9,0],[-105,4],[-80,3],[-74,3],[-144,6],[-152,-9],[-156,-10],[-64,-3],[-84,-4],[-158,-7],[-79,-2],[-96,-5],[-115,-7],[-307,-1],[-112,0],[-24,0],[-173,-3],[-306,1],[-19,0],[-134,2],[-152,2],[-1,0],[-288,1],[-19,0],[-286,1],[-275,3],[-1,0],[-27,0],[-175,1],[-6,0],[-38,-2],[-91,2],[-70,-3],[-66,0],[-20,0],[-143,-2],[-307,3],[-153,1],[-152,2],[-288,1],[-166,2],[-138,2],[-111,3],[-190,4],[-29,1],[-213,4],[-74,1],[-133,2],[-63,1],[-94,2],[-302,7],[-110,2],[-165,3],[-301,7],[-305,9],[-163,4],[-83,3],[-59,2],[-150,-1],[-147,6],[-176,9],[-47,2],[-34,-2],[-53,3],[-54,2],[-4,0],[-35,-10]],[[1274,92283],[-6,-1],[-33,-7],[-52,46],[-236,169],[-73,52],[-46,54],[0,123],[29,40],[19,26],[8,44],[-30,399],[-94,118],[-6,49],[27,64],[63,47],[72,18],[31,8],[1,0],[46,-56],[90,-109],[95,-10],[92,-9],[41,-4],[2,0],[20,7],[72,36],[65,47],[181,167],[45,110],[10,50],[-1,20],[-1,26],[-4,76],[-7,122],[-20,192],[-8,76],[6,81],[13,171],[19,195],[28,281],[13,65],[-4,145],[-13,421],[59,142],[28,234],[-36,224],[-17,214],[-9,115],[-130,62],[-142,68],[-115,209],[-71,86],[-52,63],[-119,142],[-85,381],[9,97],[-34,47],[-66,60],[-18,6],[-20,8],[-53,8],[-83,17],[-2,0],[-66,58],[-13,39],[-13,38],[-109,319],[-1,1],[3,34],[6,91],[5,61],[10,152],[27,32],[55,65],[117,142],[58,69],[-5,524],[-34,209],[-84,141],[-84,-20],[-48,71],[2,80],[0,60],[1394,0],[851,0],[137,0],[251,0],[1014,-2],[94,0],[266,0],[1991,-2],[385,0],[731,-1],[256,-1],[1029,-3],[538,-1],[280,0],[1591,-2],[1,0],[548,0]],[[70147,99990],[-2,-59],[-1,-59],[0,-33],[0,-39],[0,-34],[0,-45],[0,-26],[0,-80],[0,-62],[0,-67],[0,-36],[0,-35],[-1,-42],[0,-45],[-1,-39],[-1,-59],[1,-65],[4,-31],[3,-44],[-5,-30],[-1,-33],[0,-43],[1,-82],[0,-82],[0,-47],[0,-133],[0,-35],[-1,-37],[1,-41],[-1,-142],[0,-137],[0,-43],[0,-73],[0,-60],[0,-170],[0,-68],[0,-142],[1,-37],[-2,-182],[0,-54],[0,-36],[0,-34],[0,-48],[-1,-55],[0,-51],[0,-47],[0,-55],[0,-81],[0,-42],[-1,-39],[0,-53],[0,-99],[0,-36],[0,-47],[0,-32],[3,-122],[-3,-72],[-1,-33],[-1,-119],[1,-58],[0,-64],[0,-4],[0,-21],[0,-103],[0,-9],[1,-40],[0,-51],[1,-49],[1,-98],[0,-2],[0,-38],[-2,-201],[0,-55],[-1,-86],[0,-56],[0,-35],[0,-45],[0,-47],[0,-45],[0,-60],[0,-51],[0,-121],[-1,-65],[0,-66],[0,-41],[0,-36],[0,-87],[-1,-35],[0,-64],[0,-72],[0,-41],[0,-33],[0,-1],[-1,-33],[0,-159],[0,-50],[0,-43],[0,-51],[-1,-181],[0,-46],[-1,-55],[0,-49],[0,-34],[0,-63],[0,-157],[0,-39],[-1,-379],[0,-33],[-1,-133],[0,-61],[0,-34],[0,-41],[0,-89],[-1,-94],[0,-52],[-1,-115],[0,-44],[-1,-201],[0,-33],[0,-42],[0,-79],[0,-46],[0,-38],[0,-100],[0,-59],[0,-41],[0,-46],[1,-467],[-1,-228],[0,-239]],[[70129,90784],[-44,0],[-29,1],[-18,0],[-25,0],[-23,0],[-15,0],[-20,0],[-19,0],[-20,0],[-19,1],[-28,0],[-34,0],[-74,0],[-43,1],[-25,0],[-41,0],[-17,0],[-49,1],[-45,0],[-28,1],[-42,0],[-39,-1],[-23,0],[-19,0],[-21,0],[-24,0],[-17,-1],[-35,-1],[-54,-1],[-34,-1],[-31,0],[-66,1],[-43,0],[-64,0],[-43,-1],[-17,0],[-43,-1],[-85,-1],[-41,-1],[-49,-1],[-53,-1],[-56,0],[-20,0],[-19,0],[-93,2],[-41,1],[-39,1],[-1,0],[-19,0],[-71,2],[-110,3],[-51,1],[-53,2],[-59,1],[-39,0],[-43,2],[-55,1],[-56,2],[-67,1],[-54,1],[-29,1],[-38,0],[-48,1],[-40,0],[-47,0],[-75,0],[-38,0],[-28,1],[-93,2],[-26,0],[-33,1],[-27,1],[-23,1],[-51,1],[-19,0],[-4,0],[-15,0],[-19,-1],[-24,-2],[-23,-2],[-31,-3],[-24,-2],[-21,-2],[-35,-4],[-23,-2],[-28,-2],[-27,-3],[-17,-2],[-34,-3],[-2,0],[-31,0],[-27,0],[-46,1],[-32,1],[-23,0],[-22,0],[-18,1],[-37,0],[-30,1],[-29,0],[-33,0],[-21,0],[-55,-1],[-35,0],[-19,0],[-53,0],[-39,0],[-20,0],[-27,0],[-34,-1],[-51,-3],[-42,-1],[-27,-1],[-34,-1],[-80,0],[-39,0],[-35,1],[-36,3],[-32,2],[-17,0],[-34,2],[-20,1],[-20,0],[-49,1],[-18,1],[-23,0],[-23,1],[-23,0],[-24,-1],[-19,0],[-47,-1],[-39,0],[-42,0],[-21,-1],[-20,0],[-72,0],[-68,0],[-52,1],[-48,0],[-58,0],[-24,1],[-36,0],[-18,0],[-76,2],[-24,0],[-40,1],[-55,0],[-36,-2],[-39,-1],[-21,-1],[-27,0],[-38,-1],[-34,-1],[-49,-1],[-28,-1],[-39,-2],[-18,0],[-4,-1],[-34,-1],[-19,0],[-24,-1],[-33,1],[-75,1],[-59,1],[-18,1],[-41,2],[-19,0],[-41,1],[-65,0],[-26,0],[-37,-1],[-26,0],[-44,-1],[-38,-1],[-44,0],[-34,-1],[-45,-1],[-21,-1],[-72,-1],[-38,0],[-36,0],[-56,0],[-20,0],[-57,1],[-22,1],[-46,1],[-96,2],[-18,0],[-41,1],[-23,1],[-37,0],[-33,-1],[-22,0],[-56,-1],[-53,0],[-16,-1],[-27,0],[-39,-1],[-38,0]],[[62862,99975],[1405,7],[20,0],[5,0],[15,0],[60,1],[23,0],[33,0],[43,0],[0,-1],[52,1],[80,0],[11,0],[94,0],[18,0],[18,1],[17,0],[40,0],[604,0],[52,0],[13,0],[13,0],[13,0],[18,0],[20,0],[21,0],[72,1],[76,0],[2871,3],[50,0],[486,1],[111,0],[344,0],[256,0],[141,1],[145,0],[45,0]],[[84038,86538],[-21,0],[-16,1],[-16,0],[-8,0],[-1,0],[-42,0],[-124,2],[-77,1],[-293,2],[-76,0],[-173,3],[-103,2],[-173,3],[-16,0],[-75,1],[-36,0],[-34,-1],[-45,1],[-27,-2],[-20,0],[-96,12],[-275,7],[-30,0],[-80,4],[-41,0],[-30,-2],[-32,-1],[-36,-1],[-166,-3],[-194,-3],[-163,2],[-115,1],[-201,2],[-67,4],[-72,0],[-73,1],[-89,-1],[-62,0],[-81,4],[-149,0],[-157,1],[-83,0],[-67,0],[-71,2],[-86,1],[-39,0],[-51,-1],[-286,-1],[-293,-1],[-125,-1],[-27,0],[-38,0],[-48,0],[-88,3],[-83,2],[-40,1],[-60,0],[-36,0],[-32,0],[-92,1],[-29,1],[-72,-3],[-116,1],[-62,1],[-39,0],[-8,0],[-143,2],[-64,0],[-33,-1],[-70,0],[-51,0],[-17,0],[-11,1],[-34,0],[-43,-1],[-18,0],[-106,-1],[-31,0],[-48,-1],[-1,0],[-48,1],[-35,0],[-26,1],[-17,0],[-138,-2],[-25,-1],[-74,1]],[[77449,86583],[-1,309],[0,213],[1,14],[0,74],[0,36],[0,33],[-1,52],[1,43],[4,510],[1,102],[2,264],[1,185],[0,88],[1,32],[1,157],[0,38],[0,44],[0,33],[0,60],[1,51],[0,44],[0,32],[1,79],[1,60],[0,43],[-1,69],[0,105],[0,41],[1,259],[0,127],[1,494],[0,97],[1,116],[-1,44],[0,40],[1,40],[0,52],[0,74],[-1,268],[-1,91],[0,37],[0,36],[0,36],[0,37],[0,33],[0,79],[0,36],[0,87],[0,34],[0,107],[0,53],[0,14],[-1,35],[-1,65],[-3,184],[0,154],[-1,32],[1,146],[1,33],[0,36],[1,73],[0,51],[1,61],[0,37],[1,236],[1,298],[1,443],[0,34],[1,154],[0,245],[-1,35],[-1,35],[1,142],[5,557],[1,143],[-44,0],[-62,3],[0,74],[0,183],[0,2],[-1,107],[0,91],[0,280],[0,118],[0,11],[-1,144],[1,41],[0,500],[1,238],[4,534],[0,42],[-4,178],[0,215],[0,190],[2,54],[1,46],[0,49],[1,37],[-2,202],[0,88],[-1,34],[0,275],[-1,169],[0,158],[-2,429],[3,45],[-1,48],[-1,37],[0,35],[2,142],[2,77],[-1,64],[0,42],[-1,33],[0,61]],[[77364,99990],[2246,-1],[54,-1],[2284,5],[355,3],[80,0],[263,3],[59,0],[187,-4],[52,-1],[23,0],[375,-7],[47,-1],[25,0],[-8,-107],[6,-129],[35,-235],[5,-33],[-12,-117],[-16,-75],[-16,-74],[-35,-166],[-65,-185],[-47,-62],[-5,-7],[-46,-75],[-19,-32],[-15,-72],[1,-22],[11,-171],[2,-25],[1,-4],[53,-170],[85,-166],[149,-294],[80,-170],[43,-92],[48,-146],[28,-192],[2,-125],[0,-5],[11,-109],[6,-60],[22,-147],[5,-100],[-17,-143],[-3,-33],[-48,-187],[-11,-40],[-27,-108],[-4,-15],[-11,-45],[-6,-69],[-95,-137],[-45,-97],[8,-78],[0,-5],[8,-27],[63,-203],[36,-124],[12,-41],[43,-103],[12,-6],[7,-4],[24,-13],[14,-6],[15,-4],[69,-16],[67,-16],[66,-27],[60,-24],[60,-55],[145,-136],[188,-149],[192,-129],[116,-77],[63,-42],[33,-30],[21,-18],[58,-71],[64,-77],[197,-237],[79,-154],[195,-412],[27,-54],[49,-98],[42,-147],[35,-117],[106,-284],[19,-65],[12,-42],[2,-103],[-18,-122],[2,-72],[41,-59],[126,-10],[48,-73],[11,-74],[-3,-31],[-8,-94],[-36,-164],[-7,-36],[-17,-65],[-37,-73],[-37,-75],[-105,-185],[-133,-232],[-155,-242],[-53,-84],[-24,-37],[-41,-63],[-68,-107],[-54,-84],[-81,-106],[-54,-53],[-76,-128],[-49,-305],[-10,-60],[-125,-366],[-69,-141],[-42,-207],[-29,-228],[-34,-76],[-102,-228],[-20,-35],[-72,-123],[-44,-35],[-77,-60],[-56,-44],[-33,-36],[-54,-59],[-42,-185],[3,-324],[32,-378],[6,-63],[-12,-332],[-8,-224],[-7,-188],[-1,-47],[-1,0]],[[77449,86583],[-253,4],[-52,1],[-49,0],[-258,-1],[-17,0],[-36,1],[-25,0],[-17,0],[-17,0],[-30,0],[-29,-1],[-19,0],[-26,0],[-19,2],[-46,-1],[-24,0],[-18,1],[-43,0],[-44,0],[-20,0],[-16,7],[-66,-1],[-48,-3],[-16,-3],[-29,0],[-39,0],[-16,0],[-37,0],[-31,0],[-25,0],[-157,-2],[-230,-1],[-54,0],[-40,1],[-86,1],[-118,0],[-21,3],[-27,1],[-16,1],[-115,-5],[-94,0],[-74,1],[-49,5],[-17,-1],[-16,0],[-29,1],[-23,0],[-19,2],[-173,-4],[-125,3],[-66,-2],[-67,1],[-198,-1],[-84,-1],[-222,1],[-60,-1],[-53,0],[-24,0],[-49,0],[-6,0],[-87,-1],[-25,0],[-121,1],[-25,1],[-59,0],[-115,1],[-45,1],[-62,1],[-137,2],[-91,1],[-97,0],[-54,2],[-245,3],[-43,1],[-27,-3],[-40,8],[-32,0],[-78,1],[-19,2],[-20,-1],[-29,-1],[-52,0],[-25,0],[-76,0],[-52,0],[-34,1],[-29,0],[-30,-1],[-19,1],[-45,-1],[-16,0],[-21,0],[-75,0],[-57,1],[-32,0],[-52,0],[-18,0],[-16,0],[-35,0],[-19,0],[-22,0],[-24,0],[-40,0],[-43,0],[-117,0],[-24,-4],[-224,-1],[-28,4],[-71,0],[-18,0],[-117,1],[-11,0],[-7,0],[-262,3],[-1,0],[-41,1],[-3,0],[-37,0],[-24,0],[-166,2],[-78,0],[-134,2]],[[70126,86620],[1,382],[0,6],[-2,76],[0,11],[1,42],[0,34],[0,37],[-1,50],[0,70],[0,67],[0,39],[-1,62],[1,50],[-1,46],[0,51],[0,38],[0,42],[1,36],[-1,61],[0,55],[0,62],[0,37],[0,34],[3,474],[0,68],[-3,399],[1,88],[0,66],[0,64],[2,51],[-2,37],[0,42],[0,70],[1,97],[0,87],[0,58],[0,120],[0,35],[0,58],[1,176],[0,86],[0,59],[0,55],[0,42],[0,34],[1,43],[0,35],[0,34],[0,77],[0,43],[0,91],[0,33],[0,91],[1,63]],[[70147,99990],[1080,0],[2131,0],[2157,0],[481,0],[1368,0]],[[11941,92211],[-1,-36],[0,-36],[-1,-49],[-1,-70],[0,-50],[0,-54],[-1,-41],[0,-36],[-1,-36],[0,-39],[0,-32],[-1,-44],[0,-45],[0,-37],[0,-44],[-1,-44],[0,-39],[-1,-40],[0,-38],[0,-41],[0,-43],[0,-46],[0,-100],[1,-122],[0,-55],[1,-83],[0,-39],[0,-41],[0,-41],[1,-85],[0,-33],[0,-106],[0,-40],[0,-50],[0,-33],[0,-63],[0,-100],[0,-34],[1,-43],[0,-53],[0,-42],[0,-3],[0,-60],[0,-40],[0,-35],[1,-52],[0,-1],[2,-32],[0,-39],[1,-35],[1,-42],[0,-54],[1,-45],[1,-33],[0,-47],[1,-34],[0,-21],[1,-34],[0,-49],[-1,-90],[0,-34],[-5,-63],[8,-33],[0,-39],[0,-66],[1,-29],[0,-31],[0,-29],[0,-40],[0,-1],[0,-38],[1,-83],[1,-155],[1,-79],[0,-133],[1,-71],[0,-46],[0,-44],[0,-54],[1,-68],[0,-43],[0,-44],[0,-35],[0,-61],[0,-61],[1,-60],[0,-42],[0,-88],[1,-166],[0,-49],[2,-128],[0,-46],[1,-70],[2,-221],[1,-37],[1,-114],[0,-33],[0,-36],[1,-69],[1,-67],[1,-77],[0,-54],[0,-112],[0,-58],[0,-152],[0,-118],[0,-60],[0,-118],[0,-54],[0,-71],[0,-38],[0,-45],[0,-77],[1,-355],[0,-57],[0,-46],[1,-322],[0,-32],[0,-46],[0,-33],[0,-37],[1,-61],[0,-54],[0,-67],[1,-283],[0,-57],[1,-301],[0,-63],[0,-44],[0,-52],[0,-67],[1,-163],[1,-155],[1,-28],[0,-17],[0,-180],[1,-36],[0,-98],[1,-56],[0,-54],[0,-50],[1,-58],[0,-51],[1,-116],[1,-110],[0,-45],[0,-40],[1,-66],[0,-38],[0,-97],[0,-229],[0,-22],[0,-38],[0,-80],[0,-47],[0,-115],[0,-206],[0,-67],[0,-50],[0,-43],[0,-52],[-1,-57],[0,-35],[0,-63],[0,-58],[0,-63]],[[11979,81062],[-243,3],[-63,1],[-78,2],[-155,4],[-25,1],[-2,0],[-36,1],[-123,1],[-187,3],[-294,8],[-28,-1],[-24,0],[-262,0],[-299,-1],[-36,2],[-187,7],[-1,0],[-36,2],[-45,2],[-40,1],[-4,0],[-255,1],[-234,-1],[-69,-1],[-306,-5],[-286,2],[-14,1],[-32,-1],[-6,0],[-10,0],[-49,0],[-209,-1],[-306,-2],[-148,-4],[-159,-4],[-303,-8],[-305,-2],[-2,0],[-67,0],[-2,0],[-95,-1],[-139,-1],[-293,4],[-305,-1],[-40,0],[-214,0],[-49,0],[-110,-1],[-192,-2],[-154,0],[-45,0],[-109,1],[-124,0],[-179,0],[-294,3],[-71,-2],[-81,-2],[-155,-3],[-163,-2],[-141,5],[-56,1],[-99,1],[-70,1],[-78,1],[-209,-3],[-4,0],[-100,0],[-202,0],[-93,-1],[-303,2],[-91,-2],[-214,-4],[-70,0],[-233,-1],[-158,-2],[-146,-1],[-62,0],[-43,0],[-6,0],[-37,1],[-83,-4],[-81,-3],[-73,-3],[-52,-2]],[[1533,81052],[0,4],[0,1],[-2,71],[-2,66],[-36,271],[-1,2],[19,102],[24,26],[61,68],[34,72],[43,91],[25,37],[26,37],[54,-21],[22,-14],[41,56],[2,2],[-7,36],[-15,78],[5,24],[67,105],[24,38],[66,21],[16,73],[-14,150],[59,67],[13,15],[40,46],[12,38],[-8,87],[-12,128],[-11,123],[-15,47],[-128,65],[-46,76],[-22,244],[206,410],[24,54],[26,56],[15,29],[3,7],[44,87],[19,126],[9,57],[3,20],[0,3],[-27,126],[-36,56],[-120,212],[-91,309],[-1,1],[10,60],[13,77],[1,3],[-16,52],[-89,38],[-4,8],[8,176],[30,68],[2,4],[67,148],[57,-21],[47,-18],[138,58],[72,30],[4,16],[9,36],[13,52],[220,279],[16,1],[62,-52],[109,52],[46,35],[54,348],[19,250],[0,3],[-9,103],[-12,47],[-75,33],[0,5],[2,113],[53,125],[249,522],[42,208],[0,1],[-8,89],[-28,117],[-20,85],[-129,402],[-43,16],[-138,49],[-27,229],[-22,184],[0,2],[17,180],[13,136],[0,3],[-41,423],[-18,174],[-62,617],[-2,13],[-29,213],[-9,65],[-7,45],[-24,163],[-109,124],[-70,-3],[-147,-6],[-107,-108],[-58,-58],[-19,-7],[-128,-46],[-85,37],[-94,93],[-142,70],[-110,53],[-175,-28],[-53,-8],[-107,199],[-12,46],[-26,102],[-3,189],[73,138],[114,41],[92,42],[-11,127],[-5,57],[-2,51],[-5,111],[-10,43],[-27,22],[-2,0]],[[19233,92136],[0,-91],[0,-110],[0,-48],[0,-56],[0,-125],[-1,-330],[0,-6],[-1,-95],[-1,-256],[1,-234],[0,-461],[1,-141],[0,-70],[0,-79],[0,-35],[0,-51],[1,-83],[0,-3],[2,-458],[0,-93],[0,-1],[1,-67],[1,-203],[0,-62],[0,-240],[1,-222],[0,-151],[0,-78],[0,-93],[0,-53],[0,-34],[0,-57],[0,-40],[-1,-419],[-2,-243],[0,-150],[0,-38],[-1,-35],[0,-196],[0,-41],[-1,-72],[0,-12],[0,-118],[0,-71],[-1,-53],[0,-239],[-1,-160],[0,-90],[-2,-373],[-1,-464],[-1,-342],[-1,-122],[-1,-131],[0,-46],[0,-53],[-1,-214],[0,-91],[-1,-197],[-1,-192],[5,-216],[2,-158],[1,-55],[0,-43],[0,-206],[0,-234],[0,-80],[1,-147],[3,-236],[-3,-233],[-2,-228],[1,-119],[0,-5],[1,-201],[0,-63],[1,-75],[0,-116],[0,-1],[0,-116],[-1,-173],[4,-55]],[[19235,81088],[-27,0],[-74,1],[-81,1],[-51,0],[-31,1],[-34,0],[-91,1],[-23,-6],[-46,1],[-50,-1],[-17,0],[-123,5],[-196,-1],[-68,-1],[-34,0],[-113,1],[-36,-1],[-28,0],[-22,0],[-70,1],[-23,-1],[-124,-3],[-155,2],[-78,1],[-132,4],[-20,0],[-29,-1],[-22,0],[-57,0],[-136,0],[-111,0],[-71,1],[-177,0],[-54,0],[-3,0],[-13,1],[-21,0],[-23,0],[-52,0],[-41,0],[-50,0],[-49,1],[-39,0],[-79,0],[-32,0],[-46,0],[-71,0],[-89,1],[-34,0],[-39,0],[-20,0],[-57,1],[-30,0],[-106,1],[-17,0],[-82,2],[-46,1],[-61,0],[-100,0],[-49,-1],[-28,0],[-19,-2],[-21,1],[-45,0],[-19,0],[-135,-2],[-266,-2],[-44,-1],[-45,1],[-54,0],[-47,0],[-33,-3],[-60,0],[-35,-1],[-26,0],[-49,-2],[-60,-1],[-18,0],[-82,-1],[-95,-1],[-19,0],[-42,-1],[-23,0],[-20,0],[-25,-1],[-21,1],[-37,-1],[-29,0],[-29,0],[-28,-1],[-20,1],[-80,-1],[-29,0],[-30,0],[-113,-1],[-28,0],[-23,0],[-27,0],[-32,0],[-32,0],[-81,0],[-55,-1],[-43,1],[-38,-1],[-76,0],[-33,-1],[-23,0],[-28,0],[-26,0],[-22,0],[-77,-2],[-20,0],[-16,0],[-36,0],[-42,0],[-20,-1],[-54,0],[-30,-1],[-98,0],[-13,-1],[-19,0],[-25,0],[-30,-1],[-18,0],[-32,-1],[-17,0],[-21,0],[-17,0],[-16,0],[-28,-1],[-28,-1],[-50,0],[-27,0],[-40,-1],[-15,0],[-170,-2],[-47,0],[-37,-1],[-52,-1],[-70,-2],[-59,-1],[-19,0],[-37,0],[-30,-1]],[[55616,90780],[0,-64],[1,-189],[0,-40],[-1,-33],[-1,-371],[0,-140],[0,-556],[0,-103],[2,-112],[0,-34],[0,-32],[0,-38],[1,-46],[0,-41],[-1,-52],[2,-154],[0,-8],[1,-63],[0,-36],[0,-4],[0,-30],[0,-48],[1,-16],[0,-17],[1,-106],[0,-40],[1,-34],[0,-16],[1,-95],[0,-41],[0,-41],[1,-49],[0,-37],[0,-79],[0,-62],[0,-33],[0,-28],[0,-14],[-1,-33],[0,-37],[0,-67],[-1,-51],[0,-43],[-1,-100],[-1,-89],[0,-76],[-1,-122],[0,-89],[0,-48],[0,-35],[-4,-57],[3,-118],[1,-56],[0,-10],[0,-42],[0,-39],[-1,-29],[0,-12],[0,-50],[0,-44],[0,-36],[0,-71],[1,-38],[0,-41],[0,-60],[0,-33],[1,-72],[1,-106],[1,-68],[0,-78],[1,-36],[0,-33],[1,-69],[0,-66],[1,-33],[0,-53],[1,-39],[0,-35],[0,-36],[0,-57],[1,-61],[0,-34],[0,-61],[1,-38],[0,-39],[0,-65],[-2,-49],[2,-55],[2,-37],[0,-47],[1,-33],[-1,-33],[-1,-40],[-1,-89],[-1,-54],[0,-40],[0,-39],[0,-57],[-1,-60],[0,-102],[0,-37],[-1,-32],[1,-49],[-1,-57],[0,-59],[-1,-55],[0,-56],[0,-101],[-1,-42],[0,-39],[0,-33],[0,-51],[0,-74],[-1,-56],[-3,-86],[-1,-46],[-7,-185],[-2,-33],[-1,-45],[-2,-42],[-1,-33],[0,-61],[0,-167],[-1,-168],[0,-66],[-1,-102],[0,-45],[0,-41],[0,-66],[-1,-43],[0,-49],[0,-65],[0,-37],[0,-43],[-1,-101],[-1,-209],[0,-32],[0,-94],[-1,-54],[0,-41],[0,-53],[0,-98],[0,-103],[0,-33],[-1,-80],[0,-45],[0,-73],[0,-56],[-1,-85],[0,-45],[0,-13],[0,-46],[0,-37],[0,-57]],[[55598,81019],[-304,-1],[-188,-1],[-129,-1],[-289,-1],[-165,-1],[-132,-1],[-1,0],[-313,-2],[-19,4],[-276,0],[-45,1],[-259,0],[-60,0],[-6,0],[-71,0],[-87,0],[-81,0],[-298,0],[-147,0],[-8,0],[-295,0],[-3,0],[-154,2],[-17,-1],[-35,1],[-48,0],[-57,1],[-30,0],[-24,0],[-53,0],[-50,0],[-97,0],[-43,0],[-59,-1],[-28,0],[-2,0],[-21,0],[-24,0],[-32,-1],[-71,0],[-34,0],[-18,0],[-30,0],[-40,0],[-30,1],[-18,0],[-32,0],[-19,-1],[-79,2],[-39,0],[-49,1],[-55,0],[-28,1],[-19,0],[-42,0],[-42,-1],[-22,1],[-26,0],[-38,0],[-19,0],[-21,0],[-60,0],[-16,1],[-38,0],[-19,0],[-37,1],[-17,0],[-37,0],[-19,1],[-37,0],[-14,0],[-10,0],[-87,1],[-44,0],[-31,0],[-45,0],[-44,1],[-18,0],[-20,0],[-35,0],[-29,1],[-41,0],[-37,0],[-65,1],[-59,1],[-83,1],[-44,1],[-54,0],[-16,0],[-111,1],[-40,1],[-28,0],[-25,0],[-21,1],[-46,0],[-17,0],[-40,0],[-31,1],[-36,0],[-50,0],[-56,1],[-28,0],[-39,1],[-27,0],[-52,0],[-69,1],[-58,0],[-28,0],[-23,1],[-20,0],[-48,0],[-49,0],[-30,1],[-26,0],[-76,0],[-31,0],[-25,0],[-23,0],[-21,0],[-21,0],[-1,0],[-25,0],[-35,1],[-30,0],[-45,0],[-38,1],[-17,0],[-28,0],[-29,0],[-34,1],[-32,0]],[[48312,81043],[2,464],[3,462],[2,462],[1,463],[1,464],[2,461],[1,151],[0,312],[0,144],[0,201],[-1,139],[0,241],[0,72],[0,128],[0,298],[0,114],[0,52],[2,464],[0,419],[0,77],[0,234],[1,227],[1,350],[-2,73],[1,34],[0,32],[0,167],[0,34],[0,185],[0,2],[-1,73],[1,439],[1,463],[0,455],[-1,461],[0,461],[0,177],[0,4],[0,87],[1,198],[0,64],[0,130],[0,266],[0,467],[1,254],[0,88],[-2,88]],[[48312,81043],[-25,2],[-282,0],[-118,0],[-18,0],[-52,0],[-115,0],[-248,3],[-58,1],[-304,-1],[-74,-1],[-76,-1],[-135,-3],[-11,2],[-8,1],[-79,-2],[-58,2],[-126,-2],[-1,0],[-28,0],[-38,0],[-95,0],[-28,0],[-146,0],[-57,0],[-16,-3],[-196,0],[-33,0],[-302,0],[-137,1],[-166,1],[-169,1],[-136,1],[-144,1],[-148,-18],[-242,14],[-4,0],[-60,2],[-141,1],[-160,1],[-304,-2],[-180,5],[-122,0],[-55,0],[-248,-2],[-304,-2],[-301,-2],[-8,-1],[-41,-5],[-99,4],[-12,-1],[-148,-4],[-264,-4],[-37,0],[-65,-1],[-219,-4],[-17,-1],[-301,-4],[-315,-2]],[[33778,81030],[-77,-2],[-227,2],[-186,2],[-16,0],[-17,0],[-80,1],[-15,0],[-27,0],[-216,3],[-21,0],[-26,-1],[-17,0],[-106,2],[-26,1],[-67,2],[-84,3],[-91,2],[-44,1],[-18,1],[-106,3],[-45,1],[-33,1],[-83,0],[-35,1],[-59,2],[-90,2],[-76,1],[-75,1],[-150,0],[-129,1],[-64,1],[-109,0],[-37,1],[-67,-1],[-27,0],[-24,1],[-125,0],[-23,1],[-18,-1],[-44,0],[-72,-1],[-30,0],[-31,-1],[-34,1],[-38,-1],[-40,1],[-130,0],[-26,0],[-21,0],[-79,-1],[-5,0],[-36,-1],[-89,-1],[-52,0],[-73,-2],[-47,0],[-46,-1],[-1,0],[-302,1],[-103,2],[-17,0],[-70,1],[-41,0],[-23,1],[-23,0],[-26,0],[-49,0],[-22,1],[-41,0],[-25,0],[-55,1],[-70,1],[-40,0],[-29,1],[-38,0],[-25,0],[-30,-1],[-39,1],[-33,0],[-91,-1],[-17,0],[-83,1],[-18,0],[-60,0],[-18,0],[-96,0],[-28,0],[-95,-1],[-56,0],[-28,0],[-126,0],[-32,0],[-27,1],[-37,0],[-40,1],[-57,0],[-110,1],[-37,0],[-49,1],[-167,2],[-33,1],[-17,0],[-4,0],[-90,1],[-209,5],[-20,0],[-17,0],[-47,1],[-23,0],[-104,1],[-36,1],[-110,1],[-106,0],[-66,1],[-26,0],[-51,0],[-206,1],[-79,0]],[[26531,81082],[0,36],[0,70],[0,63],[-1,43],[0,74],[0,88],[0,90],[1,34],[0,230],[0,65],[0,135],[0,133],[0,34],[0,127],[0,3],[0,33],[1,133],[-1,57],[1,45],[-1,40],[0,52],[0,114],[0,64],[0,60],[0,33],[0,56],[0,66],[0,59],[0,175],[0,109],[0,162],[0,39],[0,45],[0,67],[0,78],[0,39],[0,40],[0,226],[0,54],[1,73],[0,73],[0,187],[0,56],[1,75],[0,81],[1,64],[0,85],[0,59],[0,96],[0,120],[0,4],[0,29],[0,69],[0,87],[0,40],[0,79],[0,61],[0,32],[0,60],[0,92],[-1,69],[0,80],[0,193],[0,53],[0,42],[0,34],[0,87],[0,56],[0,86],[1,92],[0,71],[1,69],[1,32],[-1,314],[0,128],[-1,94],[0,36],[0,58],[0,51],[0,215],[0,51],[0,171],[0,80],[1,97],[0,62],[1,13],[0,22],[0,59],[0,38],[-1,36],[1,54],[-1,20],[0,167],[0,70],[0,89],[0,36],[0,113],[0,39],[0,50],[0,135],[0,115],[2,81],[0,29],[0,8],[0,34],[0,88],[0,61],[0,7],[-1,188],[0,161],[-1,10],[0,186],[0,26],[0,8],[0,44],[0,48],[-1,68],[0,68],[0,62],[0,62],[0,18],[0,134],[0,49],[0,33],[0,32],[0,52],[0,35],[0,78],[0,32],[0,110],[0,158],[0,72],[0,90],[0,34],[0,55],[0,54],[0,146],[0,64],[-1,34],[0,63],[0,47],[0,72],[0,119],[0,51],[0,133],[0,75]],[[26531,81082],[-17,0],[-59,0],[-25,0],[-76,0],[-55,0],[-23,0],[-46,1],[-304,0],[-152,-2],[-151,0],[-70,1],[-1,0],[-19,0],[-62,1],[-152,-1],[-40,0],[-112,1],[-152,-1],[-151,-1],[-176,1],[-152,-1],[-152,0],[-152,1],[-151,1],[-77,1],[-32,0],[-42,1],[-22,0],[-84,0],[-46,1],[-149,1],[-133,1],[-21,0],[-64,0],[-1,0],[-90,0],[-36,0],[-38,0],[-51,0],[-22,-1],[-39,1],[-108,-1],[-149,1],[-37,1],[-64,-1],[-46,0],[-5,0],[-151,-4],[-45,0],[-108,0],[-150,0],[-30,0],[-41,0],[-81,1],[-40,0],[-6,1],[-34,0],[-1,0],[-72,2],[-57,-1],[-93,0],[-100,2],[-76,0],[-22,1],[-104,-1],[-143,0],[-94,0],[-35,-1],[-27,3],[-151,-1],[-199,-2],[-17,0],[-90,2],[-150,3],[-75,1],[-3,0],[-23,0],[-17,1],[-37,1],[-78,-2],[-213,-1],[-87,-1],[-150,-5],[-34,0],[-23,0],[-96,0],[-37,-1],[-40,-1],[-151,0],[-136,-1],[-19,0],[-154,4]],[[70126,86620],[0,-152],[-1,-307],[1,-43],[-1,-379],[-4,-580],[0,-36],[0,-71],[0,-33],[0,-37],[0,-37],[0,-50],[0,-43],[0,-94],[4,-42],[-2,-187],[0,-21],[-2,-225],[-1,-110],[1,-205],[-1,-86],[0,-111],[1,-116],[0,-46],[0,-52],[0,-39],[0,-111],[0,-86],[0,-37],[0,-70],[0,-50],[0,-47],[0,-82],[0,-70],[0,-43],[0,-34],[0,-34],[0,-13],[0,-197],[0,-75],[0,-80],[0,-102],[0,-57],[0,-79],[0,-46],[0,-36],[0,-77],[0,-39],[0,-42],[0,-41],[0,-50],[0,-81],[0,-34],[0,-157],[0,-79],[0,-36],[0,-80],[0,-38],[0,-131],[-1,-76],[0,-52],[0,-48],[0,-112]],[[70120,80996],[-204,-7],[-16,-1],[-40,0],[-25,1],[-19,-1],[-19,0],[-39,1],[-28,4],[-40,0],[-66,1],[-113,-2],[-45,0],[-2,-1],[-16,-4],[-163,2],[-18,0],[-25,0],[-27,1],[-49,-1],[-22,0],[-197,4],[-12,0],[-35,-1],[-57,0],[-40,0],[-94,0],[-83,0],[-18,0],[-131,0],[-27,0],[-141,0],[-49,0],[-75,0],[-28,0],[-42,0],[-38,0],[-66,0],[-52,0],[-55,0],[-52,0],[-19,0],[-30,0],[-26,0],[-78,0],[-89,-1],[-85,0],[-45,1],[-37,0],[-4,1],[-45,0],[-43,1],[-16,0],[-37,0],[-20,0],[-24,1],[-37,0],[-34,0],[-37,1],[-23,0],[-18,0],[-16,0],[-51,0],[-35,1],[-40,0],[-18,0],[-21,-1],[-29,0],[-73,0],[-38,0],[-43,-1],[-64,0],[-25,0],[-21,0],[-26,-1],[-35,1],[-25,1],[-41,0],[-16,1],[-30,7],[-21,-4],[-20,-3],[-48,0],[-36,0],[-21,0],[-3,0],[-48,0],[-18,-1],[-18,-8],[-11,-5],[-4,-2],[-16,15],[-36,1],[-31,0],[-19,0],[-53,0],[-44,0],[-23,0],[-34,-1],[-36,1],[-37,-1],[-19,1],[-36,-1],[-39,0],[-31,0],[-27,0],[-51,1],[-18,0],[-36,0],[-20,0],[-20,0],[-23,0],[-49,0],[-45,0],[-35,0],[-112,0],[-49,-1],[-133,1],[-19,0],[-65,0],[-82,1],[-54,0],[-93,1],[-142,-2],[-20,0],[-23,0],[-44,-1],[-62,0],[-22,0],[-60,0],[-80,-1],[-51,1],[-31,-1],[-181,1],[-27,0],[-29,1],[-148,4],[-154,-2],[-74,5],[-118,-7],[-93,0],[-19,0],[-200,6],[-52,0],[-6,0],[-59,-1],[-122,-2],[-3,0],[-40,0],[-119,0]],[[62846,81000],[-1,66],[0,49],[0,121],[0,40],[0,44],[0,62],[0,38],[0,57],[0,94],[0,39],[0,35],[0,41],[1,40],[0,34],[0,60],[0,44],[0,65],[-1,79],[1,128],[0,168],[0,102],[0,221],[1,63],[0,91],[0,42],[0,50],[0,42],[1,123],[0,36],[0,42],[0,35],[0,34],[1,10],[0,37],[0,38],[0,14],[0,35],[-1,67],[0,52],[-1,42],[0,39],[0,49],[0,43],[-1,50],[0,49],[0,77],[0,68],[0,50],[0,35],[0,17],[0,60],[0,57],[0,34],[0,49],[0,56],[0,51],[1,42],[0,89],[-1,50],[1,92],[0,75],[0,55],[0,47],[0,171],[0,58],[0,237],[0,464],[0,305],[1,163],[0,13],[0,55],[0,17],[0,190],[0,22],[0,220],[0,115],[0,177],[0,175],[0,469],[0,234],[-2,171],[0,294],[1,110],[-1,204],[-1,79],[-2,308],[0,169],[-1,274],[0,42],[0,38],[0,43],[0,45],[1,82],[-1,156],[0,39],[0,51],[1,96],[-1,45],[1,39],[0,42],[0,91],[0,100],[0,68],[0,49],[0,32],[0,40],[0,44],[0,42],[0,42],[0,38],[0,46],[0,62]],[[62846,81000],[-30,-1],[-19,0],[-45,0],[-38,-1],[-17,0],[-36,0],[-24,0],[-28,0],[-45,0],[-21,-1],[-20,1],[-22,0],[-55,0],[-44,0],[-47,0],[-44,1],[-25,0],[-51,0],[-29,1],[-27,0],[-16,-1],[-61,0],[-39,0],[-37,0],[-31,0],[-41,0],[-22,0],[-27,0],[-16,0],[-31,0],[-35,-1],[-23,0],[-65,-1],[-51,0],[-17,0],[-18,0],[-24,0],[-121,0],[-36,1],[-50,0],[-86,0],[-89,1],[-21,0],[-42,1],[-101,-1],[-41,0],[-19,0],[-28,0],[-28,0],[-34,0],[-28,0],[-35,0],[-38,0],[-42,0],[-51,0],[-20,0],[-103,0],[-31,0],[-54,0],[-96,0],[-114,0],[-18,0],[-18,0],[-5,0],[-23,0],[-24,0],[-30,0],[-32,0],[-39,0],[-24,0],[-128,0],[-40,0],[-57,0],[-79,0],[-28,0],[-16,1],[-16,0],[-88,1],[-65,-1],[-77,0],[-16,0],[-285,7],[-131,-1],[-18,0],[-39,0],[-19,-1],[-19,0],[-62,0],[-16,-3],[-12,-1],[-2,-1],[-20,0],[-27,0],[-48,0],[-17,0],[-16,1],[-47,7],[-20,0],[-8,0],[-18,-2],[-23,-5],[-26,3],[-16,0],[-49,0],[-19,1],[-86,0],[-69,1],[-72,0],[-24,0],[-18,0],[-18,0],[-18,0],[-26,0],[-17,0],[-51,0],[-37,0],[-16,0],[-45,0],[-33,0],[-23,0],[-18,0],[-56,0],[-18,0],[-25,-1],[-142,0],[-31,0],[-86,0],[-41,1],[-29,0],[-52,1],[-67,0],[-48,0],[-47,1],[-18,0],[-44,0],[-21,0],[-38,1],[-50,0],[-32,1],[-178,-1],[-68,0],[-35,1],[-27,0],[-47,0],[-64,0],[-35,0],[-35,0],[-33,1],[-89,0],[-109,1],[-54,0],[-75,0],[-48,0],[-24,0],[-56,0],[-23,0],[-30,0],[-31,0],[-26,0],[-41,0],[-41,0],[-7,0],[-21,0],[-20,0],[-21,0],[-81,0],[-60,0],[-16,0],[-38,0],[-66,0],[-24,7]],[[77449,86583],[1,-166],[-2,-33],[-2,-47],[0,-63],[0,-43],[0,-48],[1,-70],[-1,-44],[1,-56],[-1,-52],[0,-33],[0,-324],[1,-172],[-1,-59],[-3,-234],[2,-51],[-1,-70],[-1,-47],[-1,-57],[0,-86],[-1,-74],[0,-70],[1,-34],[-1,-49],[-1,-35],[1,-48],[0,-56],[1,-85],[-1,-46],[1,-35],[-1,-55],[-2,-70],[-1,-47],[-1,-40],[2,-82],[0,-32],[0,-60],[-1,-97],[3,-34],[1,-35],[-3,-34],[0,-39],[0,-54],[0,-43],[0,-38],[-1,-36],[1,-52],[-1,-41],[0,-89],[0,-34],[-1,-105],[1,-35],[-1,-114],[3,-43],[4,-33],[-3,-37],[-6,-57],[-2,-32],[2,-57],[-1,-344],[-1,-56],[0,-23],[0,-133],[0,-59],[-1,-91],[0,-161],[-3,-60],[1,-34],[0,-38],[0,-40],[0,-34],[-1,-37],[2,-82],[0,-201],[-2,-426],[0,-34],[-1,-247],[-2,-61],[-1,-41],[0,-5],[2,-285],[-1,-185],[-1,-123],[-2,-698],[-1,-335],[-1,-153],[0,-47],[-1,-280],[-1,-170],[-1,-37],[0,-34],[10,-27],[0,-38],[-4,-32],[-8,-40],[-2,-33],[-2,-34],[-10,-27],[6,-39],[3,-32],[-1,-36],[3,-32],[1,-61],[0,-54],[-1,-39],[3,-36],[0,-32],[-2,-32],[-1,-35],[-1,-45],[0,-46],[1,-43],[1,-52],[0,-141],[2,-162],[1,-223],[2,-221],[1,-319],[2,-333],[5,-216],[0,-33],[1,-43],[0,-48],[1,-36],[0,-45],[1,-40],[0,-40],[0,-72],[1,-32],[0,-52],[0,-46],[0,-34],[1,-38],[0,-41],[0,-41],[0,-89],[1,-42],[0,-37],[0,-50],[0,-57],[0,-53],[0,-37],[0,-51],[0,-55],[1,-66],[0,-42],[0,-74],[-1,-402],[2,-80],[0,-6],[-2,-258],[-1,-315],[-1,-162],[-1,-80],[-5,-31],[0,-45],[1,-33],[-1,-240],[-1,-67],[-2,-164]],[[77422,72580],[-30,0],[-32,-1],[-37,0],[-40,-1],[-55,-1],[-37,0],[-73,-1],[-26,-1],[-30,0],[-60,-2],[-26,0],[-18,0],[-40,-1],[-55,0],[-16,-1],[-20,0],[-15,0],[-11,0],[-28,-1],[-25,0],[-31,-1],[-38,0],[-29,-1],[-27,0],[-24,-1],[-27,0],[-26,0],[-19,-1],[-27,-1],[-17,0],[-61,-1],[-33,-1],[-21,0],[-59,0],[-23,-1],[-29,0],[-28,-1],[-17,0],[-28,0],[-53,-1],[-51,-1],[-48,-1],[-1,0],[-27,0],[-26,-1],[-25,0],[-47,-1],[-26,0],[-69,-2],[-44,0],[-31,-1],[-36,0],[-40,-1],[-29,0],[-32,0],[-32,0],[-37,0],[-29,1],[-43,1],[-25,0],[-22,0],[-19,1],[-60,0],[-35,1],[-51,1],[-27,0],[-52,1],[-49,0],[-48,1],[-28,1],[-44,0],[-16,0],[-84,1],[-33,1],[-19,0],[-45,1],[-30,0],[-38,0],[-1,0],[-34,1],[-37,0],[-26,1],[-67,0],[-37,1],[-55,0],[-17,0],[-61,1],[-18,1],[-30,-1],[-24,1],[-21,0],[-22,0],[-24,1],[-28,0],[-45,0],[-20,0],[-24,0],[-18,0],[-1,0],[-17,0],[-27,0],[-48,0],[-61,0],[-62,0],[-28,0],[-45,1],[-64,-1],[-16,0],[-24,-1],[-58,-3],[-22,0],[-33,-2],[-89,-4],[-66,-2],[-68,-2],[-86,-3],[-20,0],[-22,-1],[-50,-2],[-20,-1],[-18,-1],[-50,-1],[-57,-1],[-27,-1],[-28,-1],[-16,0],[-50,-6],[-17,-1],[-21,-2],[-26,-2],[-35,-3],[-19,-2],[-24,-1],[-18,-1],[-16,-1],[-15,-1],[-1,0],[-23,-1],[-22,-2],[-35,-1],[-27,-2],[-16,-1],[-81,-4],[-70,-1],[-29,1],[-37,0],[-70,2],[-23,0],[-40,0],[-26,1],[-17,0],[-37,1],[-47,1],[-13,0],[-51,2],[-51,1],[-13,0],[-10,0],[-43,2],[-34,1],[-60,0],[-50,0],[-64,0],[-30,0],[-108,1],[-66,0],[-55,0],[-20,0],[-18,0],[-63,0],[-58,0],[-16,0],[-70,0],[-61,0],[-28,0],[-72,0],[-25,0],[-21,0],[-5,0],[-12,-1],[-15,0],[-211,-2],[-2,0],[-19,0],[-16,0],[-26,0],[-22,0],[-16,0],[-17,0],[-29,0],[-22,0],[-34,-1],[-27,0],[-14,0],[-49,3],[-28,-2],[-377,-2]],[[70118,72519],[0,71],[-1,44],[1,63],[0,35],[0,39],[0,34],[0,82],[0,98],[0,48],[0,101],[0,77],[0,54],[0,123],[0,62],[0,43],[1,246],[0,60],[0,56],[0,60],[0,94],[0,49],[0,56],[0,51],[0,212],[0,68],[-1,151],[0,92],[1,95],[-1,33],[1,40],[0,6],[0,100],[0,96],[0,97],[-1,65],[0,34],[0,70],[0,89],[0,88],[-1,52],[0,77],[0,39],[0,40],[0,44],[0,32],[0,56],[-1,32],[0,73],[0,70],[0,36],[0,57],[0,69],[1,63],[0,140],[0,130],[0,50],[0,42],[1,51],[-1,61],[1,83],[0,48],[0,34],[0,66],[0,66],[0,81],[0,13],[1,72],[0,49],[0,84],[0,59],[0,54],[0,73],[0,93],[0,54],[0,87],[0,44],[0,39],[0,70],[0,56],[0,80],[0,37],[0,104],[0,33],[0,151],[0,68],[0,72],[0,56],[-4,35],[0,51],[1,239],[0,13],[3,210],[0,3],[1,48],[0,38],[0,80],[0,44],[0,68],[0,36],[0,61],[-2,35],[1,13],[2,21],[-2,80],[0,57],[2,122],[-1,122],[-2,54],[0,54],[-1,37],[0,427],[1,71],[0,61],[0,62],[0,54],[2,226],[0,33]],[[84038,86538],[-1,-42],[-9,-223],[-11,-62],[-14,-83],[29,-293],[29,-414],[0,-1],[12,-158],[3,-53],[48,-331],[10,-74],[36,-180],[41,-207],[4,-20],[10,-51],[29,-163],[27,-149],[18,-97],[13,-73],[3,-18],[19,-131],[17,-123],[0,-75],[0,-57],[0,-15],[-1,-88],[5,-36],[16,-125],[18,-41],[53,-128],[25,-83],[39,-133],[3,-13],[11,-149],[5,-70],[-2,-11],[-53,-307],[-4,-83],[-3,-47],[-3,-72],[49,-236],[16,-80],[13,-84],[6,-37],[5,-148],[1,-29],[0,-13],[-1,-9],[-9,-71],[-5,-38],[-20,-148],[4,-40],[4,-34],[11,-94],[4,-36],[22,-15],[32,-22],[49,-33],[198,-151],[148,-140],[52,-113],[28,-41],[143,-208],[34,-155],[0,-104],[0,-138],[0,-34],[0,-175],[7,-59],[11,-86],[19,-77],[13,-53],[34,-88],[23,-59],[7,-44],[-13,-109],[-11,-93],[-25,-206],[-4,-34],[-4,-34],[16,-133],[55,-44],[119,17],[63,-73],[-10,-191],[9,-275],[17,-298],[7,-60],[24,-191],[19,-87],[9,-89],[4,-21],[4,-20],[1,-3],[18,-87],[4,-43],[3,-46],[11,-78],[2,-60],[2,-70],[2,-32],[6,-109],[3,-20],[14,-86],[32,-69],[56,-104],[29,-32],[17,-36],[-5,-97],[-39,-49],[-36,-6],[-1,-54],[-4,-35],[6,-69],[48,-52],[20,2],[59,-74],[31,-79],[5,-74],[5,-134],[6,-16],[29,-45],[65,-15],[48,46],[41,8],[73,-17],[63,-66],[21,-49],[16,-62],[4,-45],[8,-88],[23,-89],[45,-58],[121,-125],[45,-10],[14,-3],[43,13],[26,7],[29,-24],[53,-44],[56,-55],[10,-9],[28,-28],[3,-3],[60,-79],[44,-60],[57,-108],[71,-181],[9,-23],[54,-105],[25,-34],[13,-19],[114,-53],[27,-16],[33,-19],[126,-126],[14,-15],[16,-18],[34,-37],[23,-25],[74,-41],[54,-30],[90,-23],[68,13],[22,4],[81,37],[73,11],[1,-1],[42,-25],[12,-8],[25,-15],[96,-93],[27,-26],[40,-42],[79,-83],[28,-20],[23,-17]],[[88351,73576],[0,-21],[-1,-76],[0,-26],[-1,-61],[0,-39],[-3,-318],[-1,-189],[-1,-99],[-1,-111],[-146,1],[-34,2],[-82,3],[-279,3],[-75,1],[-149,2],[-147,2],[-148,1],[-58,1],[-318,3],[-144,-1],[-146,-2],[-82,4],[-37,1],[-143,6],[-130,0],[-255,-4],[-42,0],[-255,-4],[-48,-2],[-27,1],[-17,1],[-65,-2],[-117,-3],[-164,-5],[-101,-1],[-89,4],[-26,-2],[-180,-6],[-43,0],[-24,0],[-51,0]],[[84721,72640],[-190,0],[-50,0],[-104,-1],[-282,0],[-268,-1],[-62,0],[-78,-1],[-25,0],[-128,1],[-24,0],[-206,-3],[-97,-1],[-65,0],[-86,0],[-154,-1],[-58,0],[-21,0],[-114,0],[-267,-5],[-32,-1],[-112,-2],[-303,-6],[-219,-2],[-184,-4],[-79,0],[-57,-2],[-350,-8],[-18,0],[-46,2],[-51,-3],[-59,-3],[-115,-3],[-36,-1],[-36,-1],[-43,-1],[-25,0],[-49,-1],[-18,1],[-19,0],[-31,-1],[-24,0],[-78,-3],[-18,0],[-12,0],[-4,-1],[-98,-3],[-59,0],[-17,0],[-29,1],[-97,2],[-70,-2],[-30,-1],[-46,-2],[-13,0],[-73,-4],[-22,-1],[-5,0],[-82,1],[-48,-6],[-4,0],[-59,0],[-72,7],[-36,0],[-1,0],[-75,0],[-54,1],[-61,0],[-41,-1],[-35,0],[-42,-1],[-159,3],[-28,1],[-116,1],[-211,4],[-69,1],[-31,1],[-175,3],[-47,1],[-36,-9],[-35,0],[-157,-1],[-148,-2],[-37,0],[-86,-1],[-73,-1],[-2,0],[-109,-1],[-284,0],[-30,1]],[[11979,81062],[1,-57],[2,-189],[1,-72],[1,-124],[0,-57],[0,-52],[0,-84],[0,-73],[1,-58],[0,-142],[0,-106],[0,-72],[0,-69],[0,-34],[1,-42],[0,-44],[0,-55],[0,-48],[0,-46],[1,-82],[0,-52],[1,-51],[0,-82],[1,-105],[0,-46],[0,-84],[-1,-46],[1,-34],[0,-74],[0,-40],[1,-141],[0,-45],[1,-84],[0,-108],[0,-45],[0,-50],[1,-82],[0,-2],[0,-35],[0,-58],[0,-86],[-1,-75],[-1,-134],[-1,-33],[-1,-136],[0,-3],[0,-29],[-1,-100],[-1,-47],[-1,-85],[-1,-102],[-1,-100],[0,-44],[-1,-117],[-1,-33],[-1,-198],[-1,-56],[0,-218],[0,-56],[-1,-210],[-1,-62],[0,-141],[-1,-52],[0,-54],[-2,-90],[-1,-59],[-1,-69],[-1,-46],[-1,-36],[-3,-117],[0,-54],[-4,-151],[-2,-203],[-2,-158],[-1,-33],[0,-68],[0,-73],[2,-117],[2,-155],[1,-64],[0,-51],[1,-67],[1,-85],[1,-33],[0,-71],[1,-62],[0,-39],[1,-58],[0,-50],[0,-37],[1,-40],[0,-107],[0,-45],[0,-84],[0,-48],[0,-65],[1,-37],[0,-112],[0,-49],[0,-61],[0,-57],[1,-53],[-1,-56],[1,-53],[0,-89],[0,-61],[0,-107],[0,-50],[0,-102],[0,-77],[0,-59],[1,-151],[0,-136],[1,-53],[-1,-56],[0,-36],[1,-39],[0,-56],[1,-86],[1,-69],[1,-128],[0,-34],[1,-51],[1,-79],[1,-149],[1,-167],[1,-70],[-1,-131],[0,-64],[-1,-92],[0,-78],[-1,-39],[0,-43],[0,-38],[-1,-98],[-1,-77],[0,-108],[-1,-51],[0,-88],[-1,-66],[0,-46],[-1,-70],[0,-48],[0,-49],[-1,-48],[0,-48],[0,-36],[-1,-34],[0,-38]],[[11971,69913],[-20,0],[-28,1],[-20,0],[-81,3],[-18,0],[-26,0],[-31,1],[-28,1],[-55,0],[-34,0],[-36,1],[-17,0],[-23,0],[-39,0],[-57,1],[-36,1],[-33,0],[-20,0],[-16,-1],[-35,1],[-22,1],[-48,0],[-23,1],[-71,0],[-17,0],[-69,1],[-25,0],[-30,-1],[-38,0],[-28,-1],[-19,1],[-18,-1],[-33,0],[-65,-1],[-30,1],[-31,0],[-61,0],[-27,1],[-25,0],[-35,-1],[-22,0],[-41,0],[-38,1],[-26,1],[-21,0],[-27,0],[-20,1],[-35,0],[-58,1],[-31,0],[-25,0],[-26,1],[-55,1],[-27,-1],[-20,0],[-32,0],[-31,0],[-34,-1],[-34,0],[-61,-1],[-65,-1],[-24,1],[-25,0],[-10,0],[-8,0],[-32,0],[-27,0],[-22,1],[-25,-1],[-51,0],[-11,0],[-29,0],[-22,0],[-156,1],[-8,0],[-24,0],[-448,7],[-320,-2],[-40,0],[-55,0],[-40,0],[-74,1],[-61,1],[-24,1],[-47,0],[-59,0],[-29,1],[-18,0],[-29,0],[-21,0],[-30,0],[-37,-1],[-47,1],[-40,0],[-17,0],[-26,0],[-42,1],[-90,-1],[-16,0],[-19,0],[-49,1],[-40,0],[-26,0],[-21,0],[-85,0],[-59,1],[-57,0],[-22,0],[-33,0],[-20,-1],[-59,2],[-75,0],[-100,3],[-134,5],[-168,6],[-242,3],[-37,0],[-23,-1],[-83,-4],[-156,-7],[-62,-6],[-57,0],[-18,1],[-23,0],[-39,0],[-16,0],[-49,0],[-34,0],[-16,0],[-31,1],[-17,0],[-251,2],[-46,0],[-16,0],[-254,2],[-341,5],[-38,-2],[-17,2],[-29,-1],[-27,1],[-65,1],[-11,1],[-11,0],[-45,0],[-18,-2],[-24,3],[-3,0],[-19,1],[-28,-1],[-16,0],[-16,0],[-17,0],[-30,1],[-23,1],[-168,3],[-302,-3],[-238,2],[-126,0],[-27,1],[-17,0],[-34,0],[-20,0],[-25,0],[-1,0],[-75,0],[-90,1],[-109,2],[-137,0],[-23,0],[-18,-1],[-105,-4],[-33,-1],[-70,-2],[-17,-1],[-37,-2],[-103,-3],[-33,-1],[-43,-3],[-48,-2],[-79,-1],[-47,-1],[-94,-4],[-41,-2],[-1,0],[-274,-12],[-4,0]],[[2136,69920],[107,150],[-1,112],[150,224],[-109,201],[-6,227],[-75,164],[-65,377],[-38,138],[-84,149],[-214,-159],[-79,46],[-29,112],[28,84],[16,50],[154,139],[29,79],[52,141],[-39,84],[-35,77],[-227,262],[-45,121],[-14,184],[-42,178],[-246,-28],[-28,61],[3,188],[-45,95],[-68,143],[-27,1],[-34,-46],[-15,-21],[-49,-88],[-69,42],[-3,87],[30,85],[-11,68],[-19,37],[-79,81],[-29,59],[-58,140],[-106,46],[-11,19],[-8,47],[-31,86],[-8,23],[-24,33],[-21,30],[-39,55],[-78,20],[-120,31],[-167,247],[0,224],[-7,76],[-28,297],[-70,91],[-76,133],[-29,56],[14,77],[5,2],[89,40],[11,5],[6,160],[-4,82],[24,106],[56,110],[55,22],[-1,48],[-26,42],[-2,0],[-27,-2],[-20,-1],[-2,0],[-71,131],[-1,3],[1,46],[5,139],[41,156],[95,214],[123,223],[19,-2],[78,-12],[23,-33],[24,-5],[12,60],[18,91],[-4,37],[-25,35],[-11,26],[8,38],[22,9],[31,-18],[78,24],[13,49],[-28,51],[-3,44],[42,61],[25,101],[27,109],[1,122],[-64,29],[-5,47],[-7,73],[8,49],[18,8],[38,-17],[17,8],[21,89],[32,-20],[22,9],[17,49],[-1,21],[-21,34],[-5,38],[7,43],[53,33],[58,68],[11,34],[3,8],[-10,42],[-1,4],[-1,2],[-23,68],[10,64],[11,68],[38,56],[34,1],[4,0],[79,1],[3,0],[4,-18],[10,-90],[4,-51],[14,-110],[7,-45],[59,10],[20,153],[40,34],[68,57],[41,19],[37,133],[-51,35],[-31,58],[-10,46],[-1,12],[7,81],[33,80],[38,20],[18,-2],[25,-36],[25,18],[10,23],[24,71],[12,69],[-8,38],[-17,10],[-15,9],[-33,19],[-9,117],[-13,177],[3,146],[4,7],[15,59],[14,25],[27,1],[34,41],[59,73],[10,39],[-32,58],[-40,47],[-14,25],[9,28],[17,78],[9,40],[15,62],[20,8],[26,-14],[152,5],[4,0],[9,59],[3,19],[0,4],[-60,77],[-70,91],[-48,61],[-40,53],[-13,48],[-20,29],[-5,35],[-1,5],[17,11],[28,-17],[46,19],[3,38],[-26,45],[0,4],[3,29]],[[26531,81082],[0,-194],[0,-76],[0,-76],[-1,-147],[0,-103],[1,-33],[0,-53],[0,-54],[-1,-37],[0,-54],[1,-39],[0,-116],[0,-48],[-2,-40],[-2,-27],[4,-31],[0,-44],[0,-44],[0,-46],[0,-49],[0,-45],[0,-64],[0,-33],[0,-51],[0,-99],[0,-45],[0,-45],[0,-46],[0,-10],[1,-52],[-1,-84],[0,-3],[0,-35],[0,-42],[0,-53],[0,-51],[0,-51],[0,-44],[0,-96],[0,-59],[0,-48],[0,-46],[0,-100],[0,-49],[0,-33],[0,-48],[0,-42],[0,-38],[0,-42],[0,-48],[0,-33],[0,-52],[0,-111],[0,-65],[0,-65],[0,-55],[0,-94],[0,-33],[0,-105],[0,-59],[0,-61],[0,-46],[0,-61],[0,-65],[0,-34],[0,-107],[0,-39],[0,-152],[0,-98],[0,-86],[0,-207],[0,-94],[0,-40],[0,-87],[0,-37],[0,-42],[0,-93],[0,-93],[0,-148],[0,-36],[0,-37],[0,-17],[0,-99],[0,-58],[0,-116],[-1,-73],[0,-98],[-2,-152],[0,-45],[0,-41],[-1,-38],[-1,-84],[-1,-63],[0,-50],[-6,-463],[0,-47],[-1,-71],[0,-76],[-1,-59],[0,-66],[-1,-65],[0,-80],[-2,-130],[-1,-118],[-1,-90],[0,-72],[-1,-53],[0,-76],[-1,-119],[-2,-119],[0,-47],[-1,-60],[0,-43],[-1,-34],[-1,-64],[0,-112],[0,-59],[0,-32],[0,-41],[0,-123],[0,-79],[1,-86],[0,-84],[0,-90],[1,-120],[0,-49],[0,-77],[1,-94],[0,-39],[0,-43],[1,-93],[0,-69],[0,-57],[0,-36],[0,-33],[1,-89],[0,-38],[1,-51],[0,-43],[0,-54],[1,-48],[0,-37],[0,-70],[0,-42],[0,-36],[1,-62],[0,-88],[0,-62],[0,-1],[0,-59],[0,-23],[0,-24],[1,-53],[0,-125],[1,-118],[1,-142],[1,-139],[0,-75],[1,-110],[2,-140]],[[26520,69903],[-307,1],[-128,3],[-173,1],[-303,5],[-304,4],[-104,2],[-191,3],[-167,2],[-65,1],[-74,1],[-77,2],[-1,0],[-73,2],[-150,-1],[-96,0],[-206,0],[-303,0],[-167,-1],[-20,0],[-114,0],[-154,-1],[-71,2],[-80,-7],[-25,2],[-285,1],[-1,0],[-266,-1],[-35,0],[-43,1],[-44,0],[-214,1],[-156,-1],[-112,-1],[-34,0],[-98,0],[-204,-1],[-271,1],[-30,0],[-20,3],[-48,-2],[-93,-1],[-159,-4],[-124,-2],[-35,0],[-142,-2],[-222,0],[-79,0],[-89,2],[-195,2],[-17,1],[-80,2],[-83,1],[-81,2],[-59,2],[-76,2],[-91,3],[-52,2],[-82,3],[-117,7],[-196,4]],[[19234,69949],[0,57],[0,96],[0,97],[0,61],[0,72],[0,53],[0,61],[0,66],[0,40],[0,35],[0,49],[0,59],[-1,52],[0,149],[0,78],[0,114],[0,109],[0,55],[0,73],[0,37],[-1,69],[0,34],[0,42],[-1,52],[0,108],[0,33],[0,59],[-1,51],[0,51],[0,59],[0,61],[0,83],[0,60],[0,58],[1,36],[-1,56],[0,46],[1,47],[-1,56],[1,47],[0,33],[0,101],[0,111],[0,35],[1,123],[0,43],[0,33],[1,62],[0,57],[0,58],[0,40],[0,32],[1,48],[0,104],[0,64],[0,73],[0,40],[0,55],[0,49],[1,246],[1,96],[0,49],[0,72],[0,102],[1,139],[0,5],[0,49],[0,40],[1,73],[0,56],[0,78],[0,35],[1,45],[0,40],[0,38],[0,36],[0,50],[1,109],[0,33],[1,116],[0,37],[0,49],[0,41],[0,47],[1,158],[0,67],[0,57],[0,40],[0,81],[-1,41],[0,77],[0,99],[-1,192],[-1,56],[-1,134],[0,45],[0,37],[-1,119],[0,167],[0,53],[0,124],[0,95],[0,53],[0,41],[0,275],[0,118],[0,96],[0,119],[0,75],[0,55],[0,103],[0,78],[0,74],[0,81],[0,20],[1,130],[0,43],[-2,35],[1,37],[0,57],[0,62],[-1,229],[-1,272],[-1,137],[0,56],[0,45],[-1,73],[-1,346],[0,157],[2,150],[-1,159],[0,35],[-1,189],[0,96],[0,139],[-1,229],[0,39],[0,72],[4,159]],[[19234,69949],[-58,1],[-244,2],[-44,0],[-41,0],[-21,0],[-50,0],[-20,0],[-43,0],[-34,0],[-32,0],[-17,0],[-20,0],[-19,0],[-55,0],[-18,0],[-19,0],[-27,-1],[-18,0],[-16,-1],[-27,1],[-6,0],[-11,0],[-27,0],[-18,3],[-21,-3],[-32,-1],[-128,1],[-67,1],[-75,0],[-19,0],[-34,0],[-92,0],[-64,0],[-40,0],[-29,0],[-24,0],[-64,0],[-17,1],[-19,-1],[-22,1],[-29,0],[-26,1],[-19,0],[-42,-1],[-44,0],[-26,0],[-87,1],[-78,0],[-109,-1],[-28,0],[-72,0],[-43,-1],[-18,1],[-16,0],[-29,-1],[-20,1],[-27,0],[-75,0],[-1,0],[-30,-1],[-57,0],[-41,0],[-27,0],[-22,-1],[-21,0],[-41,0],[-37,0],[-27,0],[-22,0],[-42,0],[-30,0],[-16,1],[-19,-1],[-16,1],[-27,-1],[-16,1],[-20,-1],[-30,0],[-25,-1],[-40,1],[-26,-1],[-29,1],[-26,-1],[-60,1],[-23,-1],[-94,-1],[-52,0],[-17,0],[-40,0],[-37,-1],[-25,-1],[-34,1],[-42,0],[-22,0],[-17,-1],[-53,-4],[-28,4],[-132,-1],[-137,-2],[-302,-1],[-21,0],[-30,0],[-42,-2],[-209,-4],[-446,-1],[-149,-1],[-21,0],[-123,0],[-4,0],[-174,0]],[[13792,69935],[-136,-6],[-23,0],[-96,2],[-48,1],[-286,-5],[-16,1],[-16,-1],[-25,0],[-35,-1],[-32,-1],[-39,-1],[-21,0],[-101,-2],[-18,0],[-24,-1],[-22,0],[-16,0],[-19,0],[-27,-1],[-26,0],[-24,0],[-17,-1],[-22,0],[-28,-1],[-18,0],[-17,0],[-23,0],[-21,0],[-19,0],[-22,0],[-38,0],[-22,-1],[-19,1],[-31,-1],[-22,-1],[-22,0],[-20,0],[-20,-1],[-18,0],[-18,0],[-18,1],[-22,-1],[-18,-1],[-37,0],[-26,-1],[-29,1],[-24,0],[-27,-1],[-21,0],[-25,0],[-20,-1],[-20,1],[-22,0],[-24,0],[-21,0]],[[33778,81030],[0,-502],[0,-16],[0,-7],[-1,-116],[1,-61],[0,-44],[0,-44],[1,-57],[0,-69],[1,-5],[1,-38],[0,-100],[3,-389],[-3,-35],[-1,-147],[0,-47],[0,-192],[0,-40],[-1,-235],[-1,-129],[0,-36],[0,-35],[0,-33],[0,-41],[0,-229],[0,-116],[0,-35],[0,-35],[-2,-204],[2,-73],[0,-7],[0,-137],[0,-121],[0,-79],[0,-120],[-1,-200],[0,-241],[0,-221],[0,-57],[0,-42],[0,-97],[-1,-65],[0,-102],[0,-38],[0,-48],[0,-37],[0,-100],[0,-51],[0,-39],[0,-43],[0,-47],[0,-49],[-1,-60],[1,-47],[-1,-52],[0,-78],[0,-56],[0,-99],[0,-44],[0,-38],[0,-54],[0,-41],[0,-1],[0,-39],[0,-48],[1,-47],[0,-15],[0,-18],[0,-73],[0,-103],[0,-71],[0,-65],[0,-44],[0,-108],[0,-53],[0,-53],[1,-95],[0,-108],[0,-155],[0,-61],[0,-56],[1,-190],[0,-34],[0,-429],[0,-52],[0,-47],[-1,-362],[-1,-310],[0,-44],[0,-111]],[[33776,72618],[0,-57],[-1,-32],[0,-47],[-2,-94],[0,-47],[0,-34],[-2,-73],[0,-70],[0,-81],[-1,-86],[1,-207],[0,-105],[1,-64],[1,-118],[1,-33],[1,-75],[0,-9],[-1,-38],[1,-108],[0,-61],[0,-135],[-7,-31],[8,-259],[0,-35],[0,-55],[1,-53],[0,-89],[0,-74],[0,-42],[0,-87],[0,-40],[0,-194],[0,-65],[0,-70],[0,-94]],[[33777,69856],[-77,1],[-80,0],[-38,0],[-22,0],[-35,0],[-49,0],[-64,0],[-67,0],[-41,0],[-60,0],[-50,0],[-25,-1],[-60,1],[-30,-1],[-28,1],[-11,0],[-17,0],[-26,0],[-24,1],[-27,-1],[-53,0],[-37,0],[-38,0],[-42,0],[-17,0],[-86,-2],[-81,-1],[-39,0],[-24,0],[-37,0],[-73,0],[-59,0],[-22,0],[-48,1],[-101,4],[-16,1],[-25,1],[-24,1],[-47,2],[-56,2],[-18,1],[-19,1],[-79,2],[-16,0],[-34,1],[-16,0],[-50,1],[-20,1],[-34,1],[-41,1],[-20,1],[-44,1],[-16,1],[-31,1],[-17,-1],[-25,1],[-28,1],[-23,0],[-36,0],[-20,0],[-35,0],[-22,0],[-53,0],[-52,1],[-17,0],[-31,0],[-21,1],[-66,5],[-17,2],[-21,2],[-28,2],[-33,0],[-22,0],[-22,-1],[-22,-1],[-25,-1],[-34,-1],[-24,0],[-25,-1],[-25,0],[-29,-1],[-30,-1],[-31,0],[-61,-1],[-19,0],[-21,-1],[-38,0],[-17,-1],[-20,0],[-42,0],[-61,-2],[-149,-4],[-2,-1],[-160,-8],[-25,0],[-51,2],[-20,0],[-34,0],[-19,0],[-39,1],[-71,1],[-38,-1],[-87,0],[-46,0],[-34,0],[-52,-1],[-83,0],[-42,2],[-58,0],[-77,-1],[-6,0],[-105,2],[-37,3],[-39,1],[-75,1],[-62,0],[-44,1],[-50,-1],[-50,0],[-30,0],[-15,0],[-49,0],[-119,0],[-30,-1],[-17,0],[-77,1],[-51,1],[-42,0],[-40,1],[-23,0],[-34,0],[-31,0],[-18,1],[-27,0],[-58,1],[-48,1],[-20,1],[-107,1],[-41,2],[-37,0],[-45,1],[-16,0],[-78,1],[-74,1],[-42,1],[-56,1],[-38,0],[-19,0],[-48,3],[-17,-1],[-57,2],[-80,0],[-8,0],[-33,0],[-46,0],[-54,0],[-1,0],[-56,1],[-62,0],[-22,1],[-19,0],[-17,0],[-58,1],[-95,1],[-35,0],[-98,2],[-45,0],[-55,0],[-19,0],[-35,0],[-32,0],[-23,0],[-44,1],[-54,0]],[[48312,81043],[-1,-69],[0,-43],[0,-58],[1,-33],[-1,-38],[1,-52],[0,-141],[-1,-48],[0,-46],[0,-294],[0,-171],[1,-44],[-1,-34],[0,-37],[0,-57],[0,-37],[0,-76],[0,-172],[0,-189],[0,-37],[0,-215],[0,-49],[0,-97],[0,-56],[0,-64],[0,-42],[0,-47],[-1,-33],[0,-38],[0,-61],[0,-288],[0,-36],[0,-150],[0,-43],[0,-55],[-1,-69],[1,-52],[0,-51],[-1,-83],[1,-142],[0,-39],[0,-77],[0,-34],[-1,-45],[1,-69],[0,-100],[0,-44],[0,-57],[-1,-87],[1,-52],[-1,-48],[2,-217],[-1,-62],[0,-42],[0,-42],[0,-93],[0,-74],[0,-61],[-1,-51],[0,-64],[1,-34],[-1,-35],[0,-45],[0,-54],[0,-65],[0,-78],[0,-37],[0,-32],[0,-119],[0,-24],[0,-13],[0,-48],[0,-44],[-1,-51],[0,-57],[0,-60],[0,-55],[0,-44],[0,-68],[0,-41],[0,-207],[-1,-102],[0,-59],[0,-43],[0,-94],[-1,-335],[0,-63],[0,-34],[0,-50],[-1,-52],[0,-40],[0,-57],[0,-85],[-1,-94],[0,-46],[1,-67],[-1,-133],[-2,-220],[0,-8],[1,-158],[-1,-46],[1,-39],[0,-43],[0,-11],[0,-43],[-1,-58],[0,-78],[2,-42],[0,-2],[0,-32],[0,-33],[0,-38],[0,-84],[-1,-131],[0,-1],[-1,-104],[-3,-531],[0,-65],[0,-34],[1,-46],[-1,-182],[0,-53],[0,-75],[0,-3],[-2,-167],[0,-140],[0,-35],[0,-155],[-1,-141],[1,-92],[0,-47],[0,-65],[0,-108],[0,-34],[0,-33],[0,-52],[0,-56],[1,-70],[0,-36],[0,-52],[0,-46],[0,-36],[0,-71],[0,-72],[-1,-63],[0,-82],[0,-1],[2,-40],[-1,-64],[0,-35]],[[48298,69820],[-60,3],[-244,-10],[-177,1],[-102,0],[-173,1],[-122,0],[-127,0],[-11,0],[-86,0],[-105,-1],[-138,0],[-24,0],[-139,2],[-84,0],[-63,-1],[-162,0],[-118,3],[-69,2],[-116,-3],[-300,-1],[-138,0],[-17,0],[-146,-1],[-301,-1],[-150,0],[-151,-1],[-302,-1],[-174,2],[-60,2],[-71,-2],[-233,-4],[-68,-2],[-32,-1],[-22,2],[-9,1],[-238,5],[-452,-1],[-91,0],[-60,0],[-68,0],[-4,0],[-126,0],[-8,0],[-109,-1],[-150,0],[-183,3],[-115,1],[-52,0],[-72,0],[-69,1],[-29,0],[-12,0],[-29,0],[-34,0],[-18,3],[-143,1],[-68,1],[-67,0],[-33,0],[-131,1],[-104,0],[-39,0],[-158,0],[-256,8],[-35,1],[-19,1]],[[41032,69834],[1,217],[0,246],[0,464],[1,461],[0,173],[0,286],[0,139],[0,4],[1,165],[-1,153],[-4,462]],[[41030,72604],[2,104],[1,63],[1,57],[2,80],[0,36],[0,67],[0,56],[0,234],[1,103],[-6,127],[2,462],[0,32],[3,114],[0,36],[-6,51],[0,73],[1,622],[0,169],[1,60],[4,230],[0,6],[0,44],[0,45],[0,36],[-1,176],[0,162],[0,70],[0,61],[-1,78],[0,40],[0,54],[0,33],[-1,39],[0,35],[0,64],[0,34],[0,32],[-1,65],[0,13],[0,36],[0,42],[0,40],[1,192],[0,246],[1,46],[0,41],[0,46],[0,39],[0,48],[0,37],[0,39],[0,84],[0,67],[0,55],[0,82],[0,112],[0,174],[0,34],[0,45],[0,72],[0,33],[0,61],[0,64],[0,23],[0,18],[0,122],[0,34],[0,35],[0,56],[0,43],[0,36],[0,95],[0,44],[1,43],[-1,50],[0,205],[0,94],[0,3],[1,445],[0,39],[0,460],[0,113],[0,142],[0,48],[0,147],[0,35],[0,182],[1,161],[1,52],[1,93]],[[41030,72604],[-18,0],[-62,0],[-178,-1],[-39,0],[-19,0],[-35,0],[-96,0],[-39,1],[-88,0],[-37,0],[-38,0],[-25,0],[-29,0],[-34,0],[-110,0],[-55,1],[-31,0],[-23,0],[-42,0],[-38,0],[-42,0],[-29,0],[-27,0],[-41,0],[-29,0],[-32,0],[-165,0],[-35,0],[-31,0],[-48,0],[-35,1],[-42,0],[-47,0],[-31,0],[-87,0],[-78,0],[-46,0],[-80,-1],[-128,1],[-35,0],[-150,0],[-60,0],[-24,0],[-71,0],[-159,-1],[-25,0],[-25,0],[-62,0],[-20,0],[-18,0],[-20,1],[-134,0],[-100,0],[-19,0],[-17,0],[-264,-2],[-39,-2],[-62,-10],[-1,0],[-19,-1],[-198,8],[-21,-2],[-28,0],[-264,2],[-2,0],[-305,10],[-21,1],[-30,2],[-24,-2],[-31,1],[-41,0],[-109,-5],[-259,1],[-88,0],[-297,8],[-16,0],[-49,0],[-51,0],[-22,0],[-24,1],[-47,0],[-39,0],[-16,0],[-19,0],[-19,0],[-37,0],[-73,0],[-50,0],[-23,0],[-28,0],[-65,0],[-25,0],[-35,0],[-65,0],[-55,0],[-53,0],[-30,0],[-43,0],[-29,0],[-62,1],[-56,1],[-44,-1],[-111,1],[-8,-2],[-12,-3],[-50,1],[-4,0],[-87,1],[-160,2],[-26,-1],[-55,2],[-221,1],[-25,0],[-42,0],[-62,0],[-46,-1],[-53,0],[-23,0],[-63,0]],[[55598,81019],[-1,-152],[1,-38],[-1,-45],[0,-54],[0,-44],[0,-94],[0,-53],[0,-53],[-1,-87],[0,-67],[0,-38],[0,-184],[-1,-87],[0,-153],[0,-76],[0,-68],[0,-69],[0,-43],[0,-55],[0,-33],[0,-60],[-1,-34],[0,-14],[0,-33],[0,-131],[0,-48],[0,-59],[0,-51],[0,-98],[-1,-181],[0,-46],[0,-139],[0,-145],[0,-43],[-1,-252],[0,-93],[-1,-37],[0,-106],[-1,-61],[0,-32],[0,-60],[0,-48],[0,-45],[-1,-45],[0,-64],[0,-168],[-1,-55],[0,-102],[0,-48],[0,-77],[1,-106],[0,-40],[0,-33],[0,-36],[0,-93],[-1,-95],[0,-120],[0,-49],[0,-38],[0,-51],[0,-39],[1,-57],[0,-69],[0,-50],[0,-44],[0,-4],[-1,-50],[0,-60],[0,-55],[0,-53],[-1,-79],[0,-88],[0,-27],[0,-24],[-1,-44],[0,-64],[0,-98],[-1,-71],[1,-108],[-1,-52],[0,-95],[0,-44],[-1,-80],[1,-34],[-1,-59],[0,-52],[0,-32],[0,-49],[0,-52],[0,-83],[0,-57],[0,-48],[-1,-56],[1,-46],[-1,-33],[0,-32],[0,-44],[-1,-45],[0,-16],[0,-45],[0,-55],[0,-39],[0,-51],[-1,-62],[0,-46],[0,-83],[0,-51],[0,-96],[-1,-62],[0,-74],[0,-33],[0,-89],[0,-61],[0,-98],[0,-36],[0,-37],[0,-51],[-1,-36],[0,-38],[0,-47],[0,-48],[0,-54],[0,-40],[0,-44],[0,-51],[0,-94],[0,-43],[0,-42],[0,-42],[-1,-37],[0,-98],[0,-57],[0,-36],[0,-48],[0,-55],[-1,-73],[0,-45],[0,-87],[0,-74],[-1,-155],[0,-60],[0,-121],[0,-45],[-1,-99],[0,-49],[-1,-166],[0,-62],[0,-63],[0,-40],[-1,-68],[0,-63],[0,-60],[0,-51],[0,-86],[0,-59],[0,-42],[0,-46],[1,-54],[-1,-42],[0,-75],[0,-115],[0,-43],[0,-52],[0,-53],[0,-114],[-1,-79],[-1,-102],[0,-49],[0,-4],[0,-44],[0,-36],[0,-16],[0,-31],[-1,-103]],[[55570,69792],[-19,0],[-33,-1],[-26,1],[-21,-1],[-21,0],[-42,-1],[-20,1],[-28,0],[-19,0],[-22,0],[-21,-1],[-18,0],[-13,0],[-17,0],[-32,-1],[-25,0],[-25,0],[-25,0],[-24,0],[-19,0],[-16,1],[-7,0],[-10,0],[-20,0],[-21,0],[-28,0],[-30,0],[-24,0],[-42,-1],[-38,0],[-29,0],[-18,-1],[-22,0],[-65,0],[-66,0],[-18,0],[-26,0],[-25,0],[-28,0],[-53,0],[-32,0],[-43,0],[-27,0],[-65,1],[-21,0],[-32,0],[-32,0],[-31,1],[-40,0],[-62,-1],[-26,0],[-25,1],[-18,0],[-38,-1],[-19,1],[-74,-1],[-27,1],[-36,-1],[-32,0],[-20,1],[-25,-1],[-29,0],[-25,0],[-27,1],[-40,0],[-40,0],[-22,0],[-25,1],[-23,0],[-23,1],[-59,0],[-18,1],[-48,0],[-39,0],[-25,0],[-55,1],[-50,0],[-27,0],[-36,0],[-27,0],[-33,1],[-37,0],[-23,0],[-29,0],[-38,1],[-25,1],[-28,1],[-21,0],[-26,-1],[-19,0],[-15,0],[-10,1],[-23,-1],[-31,3],[-24,0],[-62,1],[-41,0],[-69,0],[-20,0],[-18,0],[-32,0],[-33,0],[-31,0],[-17,1],[-43,0],[-30,-1],[-31,0],[-47,0],[-20,1],[-29,0],[-8,0],[-40,-1],[-29,0],[-35,0],[-135,0],[-48,0],[-26,0],[-21,0],[-41,1],[-36,0],[-28,0],[-93,2],[-58,0],[-78,1],[-30,1],[-27,0],[-25,0],[-71,1],[-50,0],[-20,0],[-33,0],[-47,1],[-23,0],[-62,1],[-39,-1],[-39,1],[-30,0],[-31,1],[-30,0],[-134,1],[-63,-1],[-55,2],[-23,0],[-23,0],[-70,0],[-85,1],[-95,0],[-40,1],[-78,0],[-17,1],[-30,0],[-18,0],[-54,0],[-25,0],[-61,0],[-19,0],[-26,0],[-52,2],[-53,0],[-21,1],[-58,-4],[-37,-4],[-13,0],[-6,0],[-8,0],[-112,7],[-18,1],[-24,-2],[-30,-1],[-109,0],[-33,0],[-44,0],[-23,0],[-128,0],[-24,0],[-51,0],[-33,0],[-36,1],[-21,0],[-29,0],[-32,-1],[-25,1],[-37,0],[-33,0],[-26,0],[-39,0],[-24,1],[-306,-3],[-4,0],[-22,4],[-130,0],[-26,0],[-53,1],[-35,0],[-44,1]],[[62846,81000],[-3,-72],[0,-384],[0,-56],[0,-45],[0,-188],[-1,-233],[0,-51],[0,-90],[-1,-316],[-2,-445],[0,-23],[0,-464],[-1,-235],[0,-234],[0,-249],[0,-250],[0,-129],[0,-104],[0,-232],[-2,-240],[0,-41],[0,-100],[1,-81],[0,-466],[0,-300],[-1,-160],[-1,-464],[1,-351],[0,-135],[1,-399],[0,-157],[0,-81],[0,-27],[0,-93],[0,-41],[0,-88],[0,-3],[0,-46],[0,-117],[0,-345],[2,-234],[-1,-166],[0,-67],[4,-471]],[[62842,72527],[0,-153],[0,-122],[0,-141],[0,-33],[-3,-106],[4,-81],[4,-82],[-4,-166],[-1,-35],[0,-135],[0,-72],[0,-206],[0,-45],[0,-171],[0,-61],[0,-141],[0,-43],[0,-48],[0,-33],[0,-199],[-1,-141],[0,-176],[-1,-12],[1,-152],[0,-108],[0,-9],[2,-95]],[[62843,69761],[-77,0],[-75,-1],[-152,1],[-88,0],[-78,0],[-50,0],[-86,0],[-151,0],[-154,0],[-179,-2],[-66,8],[-55,-8],[-6,0],[-145,-1],[-67,0],[-84,0],[-111,0],[-44,0],[-158,1],[-23,0],[-52,0],[-76,1],[-71,0],[-80,0],[-151,1],[-120,0],[-31,0],[-119,0],[-32,0],[-151,0],[-61,0],[-37,0],[-53,0],[-37,0],[-97,0],[-18,0],[-31,0],[-46,0],[-74,0],[-150,-1],[-3,0],[-57,0],[-94,0],[-146,0],[-151,2],[-151,-1],[-64,1],[-33,0],[-15,0],[-39,0],[-152,1],[-132,0],[-19,0],[-151,1],[-141,0],[-161,1],[-152,1],[-45,0],[-106,0],[-151,3],[-123,2],[-19,0],[-303,7],[-188,3],[-20,0],[-94,2],[-81,1],[-71,0],[-17,0],[-17,0],[-117,2],[-153,1],[-149,1],[-81,0],[-147,1],[-32,0],[-43,0],[-44,1],[-107,0],[-50,0],[-118,2]],[[70118,72519],[-246,-3],[-13,0],[-43,0],[-148,0],[-27,0],[-24,0],[-25,0],[-25,0],[-23,0],[-31,-1],[-60,5],[-45,0],[-233,1],[-46,1],[-31,0],[-9,0],[-180,-2],[-46,0],[-34,0],[-72,0],[-151,1],[-151,2],[-103,0],[-39,0],[-160,1],[-151,0],[-49,0],[-102,-1],[-38,0],[-113,1],[-142,0],[-123,0],[-38,0],[-6,0],[-147,-1],[-150,1],[-99,0],[-53,1],[-35,0],[-116,-1],[-73,0],[-48,0],[-30,0],[-153,1],[-16,0],[-212,0],[-21,0],[-45,1],[-17,0],[-69,0],[-138,1],[-88,1],[-59,0],[-44,0],[-16,0],[-29,1],[-87,-1],[-53,-1],[-45,0],[-110,0],[-87,1],[-76,-1],[-70,1],[-80,0],[-89,-1],[-65,0],[-78,0],[-73,0],[-146,-1],[-162,0],[-77,0],[-20,0],[-11,0],[-12,0],[-23,0],[-7,0],[-27,0],[-17,-7],[-22,7],[-28,0],[-20,0],[-21,0],[-14,0],[-38,0],[-19,0],[-19,0],[-29,0],[-50,0],[-17,0],[-53,0],[-72,0],[-33,0],[-46,-1],[-21,12],[-17,3],[-20,-6],[-21,-8],[-45,1],[-15,-1],[-4,0],[-24,3],[-16,-1],[-18,-3],[-17,0],[-51,1],[-95,1],[-109,0],[-30,-2],[-48,1],[-43,0],[-25,0],[-66,0],[-38,0],[-110,0],[-162,1]],[[94863,64181],[-42,1],[-24,1],[-31,0],[-57,2],[-52,2],[-20,1],[-41,1],[-7,0],[-131,5],[-43,4],[-138,0],[-162,2],[-197,0],[-210,1],[-130,1],[-24,-2],[-74,0],[-109,1],[-38,0],[-17,0],[-15,0],[-277,1],[-311,1],[-114,0],[-65,5],[-192,-3],[-139,-3],[-31,1],[-46,2],[-18,-1],[-90,-2],[-98,3],[-2,-230],[-1,-173],[0,-67],[-1,-399],[0,-130],[2,-219],[-1,-203],[-2,-348],[0,-33],[-1,-212],[-1,-317],[0,-89],[-1,-143],[0,-236],[-149,1],[-59,1],[-18,1],[-17,0],[-20,0],[-13,0],[-28,0],[-23,1],[-23,1],[-34,1],[-27,0],[-98,0],[-38,-1],[-60,0],[-43,1],[-17,0],[-42,1],[-44,1],[-78,-2],[-74,0],[-95,3],[-227,-12],[-75,2],[-108,9],[-75,1],[-21,0],[-118,1],[-41,-3],[-132,-6],[-3,1],[-14,4],[-79,-1],[-62,-3],[-161,5],[-102,4],[-44,0],[-136,-1],[-71,-1],[-36,-1],[-115,-2],[-186,-1],[-36,2],[-149,0],[-200,0],[-35,3],[-165,4],[-57,2],[-75,1],[-55,-1]],[[88334,61422],[-325,-1],[-197,4],[-21,-5],[-17,-1],[-27,1],[-21,0],[-17,-1],[-33,0],[-16,2],[-84,1],[-66,-1],[-35,1],[-41,1],[-28,2],[-47,2],[-31,1],[-40,1],[-26,0],[-19,0],[-24,0],[-55,0],[-19,7],[-17,4],[-187,-7],[-21,1],[-35,1],[-16,1],[-2,0],[-77,0],[-27,1],[-17,0],[-36,1],[-20,1],[-46,0],[-15,0],[-30,0],[-26,1],[-19,-1],[-19,-1],[-1,0],[-19,0],[-22,1],[-16,-2],[-24,1],[-31,0],[-22,-1],[-24,0],[-18,0],[-34,1],[-56,0],[-67,0],[-10,0],[-6,0],[-159,0],[-75,1],[-270,1],[-105,0],[-525,1],[-54,0],[-58,-1],[-22,0],[-33,1],[-21,0],[-35,-1],[-17,-1],[-48,0]],[[84763,61439],[-1,245],[-1,503],[0,40],[-1,238],[0,76],[0,95],[-1,134],[0,1],[0,92],[0,19],[-1,103],[0,45],[0,148],[0,56],[0,46],[0,119],[-1,254],[0,6],[0,278],[-1,37],[0,78],[0,18],[0,51],[0,98],[0,117],[-1,197],[0,41],[-1,573],[0,50],[-1,195],[0,427],[-1,183],[0,34],[0,139],[-1,109],[0,12],[-1,739],[-20,12],[-20,0],[-6,0],[-4,35],[-1,296],[1,95],[0,42],[0,1],[0,32],[-1,42],[0,60],[-1,105],[0,93],[0,126],[-1,478],[0,47],[0,58],[-1,540],[0,56],[1,279],[0,144],[1,276],[2,303],[1,47],[2,231],[1,89],[0,235],[4,216],[0,35],[1,182],[0,62],[0,460],[0,44],[8,217],[4,667]],[[88351,73576],[18,-12],[76,-43],[39,-23],[27,-11],[85,-37],[43,-19],[107,-38],[72,-29],[21,-8],[42,-17],[154,-92],[69,-28],[35,-13],[58,-24],[90,-25],[156,-59],[70,-19],[26,-8],[103,-34],[45,-15],[79,-26],[43,-15],[143,-48],[64,-27],[44,-18],[60,-13],[69,-16],[192,-74],[71,-40],[53,-44],[90,-19],[54,-22],[19,-8],[46,-19],[39,-17],[34,-12],[53,-19],[40,-14],[23,-8],[61,-31],[73,-37],[112,-77],[91,-91],[65,-99],[36,-71],[27,-138],[12,-127],[23,-64],[58,-156],[36,-133],[15,-87],[30,-170],[24,-135],[4,-146],[12,-91],[75,-212],[64,-164],[36,-52],[1,-1],[27,-39],[35,-47],[3,-5],[151,-241],[33,-287],[4,-36],[77,-256],[130,-185],[27,-119],[7,-64],[8,-82],[26,-192],[1,-5],[8,-63],[17,-80],[11,-54],[15,-72],[13,-62],[4,-20],[-2,-110],[-1,-66],[-11,-29],[-50,-128],[-116,-320],[-3,-6],[-10,-18],[-34,-63],[-68,-124],[0,-10],[-5,-203],[-1,-46],[1,-5],[34,-158],[159,-258],[40,-66],[1,-2],[98,-115],[104,-121],[55,-65],[139,-118],[36,-31],[32,-28],[70,-60],[44,-23],[30,-16],[89,-46],[61,-32],[21,-11],[39,-26],[177,-116],[37,-25],[93,-60],[0,-2],[17,-32],[27,-53],[36,-70],[26,-52],[10,-75],[14,-106],[9,-70],[10,-74],[34,-181],[9,-46],[21,-16],[175,-133],[36,-27],[35,-26],[151,-115],[16,-12],[54,-43],[86,-67],[33,-27],[169,-133],[86,-107],[41,-51],[104,-162],[67,-103],[43,-4],[59,-5],[81,-94]],[[84763,61439],[-32,0],[-46,0],[-56,1],[-20,-1],[-84,0],[-45,0],[-16,0],[-29,1],[-77,1],[-24,0],[-25,0],[-32,0],[-34,1],[-24,0],[-40,0],[-33,0],[-67,1],[-21,0],[-34,0],[-23,0],[-15,1],[-31,0],[-19,0],[-33,0],[-30,0],[-28,0],[-20,0],[-55,0],[-20,0],[-18,2],[-1,0],[-191,-1],[-64,1],[-161,3],[-24,0],[-42,0],[-36,-1],[-16,1],[-35,-2],[-34,0],[-14,0],[-157,6],[-19,0],[-39,1],[-18,0],[-28,0],[-35,0],[-19,1],[-37,1],[-19,-2],[-21,-2],[-32,-2],[-22,0],[-40,4],[-19,1],[-26,0],[-43,0],[-79,1],[-22,0],[-80,1],[-65,1],[-79,1],[-59,-1],[-32,-1],[-16,-1],[-22,-3],[-17,-1],[-29,-1],[-31,1],[-30,9],[-22,0],[-52,-1],[-30,0],[-62,1],[-34,-1],[-33,0],[-27,0],[-21,0],[-28,0],[-30,0],[-85,0],[-28,1],[-50,0],[-15,0],[-43,0],[-41,0],[-27,0],[-21,0],[-48,0],[-35,0],[-47,0],[-26,0]],[[81174,61461],[-217,0],[-37,0],[-54,0],[-124,-2],[-101,-1],[-71,1],[-303,-3],[-62,0],[-87,-1],[-152,-1],[-61,0],[-83,0],[-157,-1],[-79,0],[-71,0],[-42,-1],[-32,0],[-39,0],[-21,0],[-3,0],[-260,-4],[-23,-1],[-17,0],[-248,1],[-54,1],[-152,4],[-3,1],[-102,3],[-45,1],[-33,-1],[-33,0],[-236,-5],[-150,4],[-84,2],[-81,1],[-280,1]],[[77577,61460],[0,77],[0,72],[-1,113],[0,49],[0,38],[-1,100],[0,88],[-1,44],[0,45],[0,75],[-1,113],[0,82],[-2,500],[-1,152],[0,21],[0,47],[-1,176],[-1,73],[-2,448],[-1,135],[-1,68],[0,47],[0,239],[0,65],[0,90],[1,152],[0,170],[1,64],[0,58],[0,57],[0,45],[1,72],[0,159],[0,75],[0,49],[1,61],[0,117],[0,59],[0,55],[0,41],[0,64],[0,67],[1,46],[0,42],[0,49],[0,56],[0,63],[0,82],[0,53],[0,37],[1,35],[0,37],[0,40],[0,35],[0,63],[0,84],[0,34],[0,38],[0,63],[0,131],[0,33],[0,29],[0,8],[1,33],[0,117],[-17,0],[-30,0],[-47,0],[-27,0],[-35,1],[-15,0],[0,42],[0,129],[0,56],[0,64],[1,36],[-1,45],[0,1],[0,93],[0,56],[0,45],[0,94],[0,73],[0,43],[-1,55],[0,45],[0,38],[0,79],[0,59],[0,42],[0,37],[-1,51],[0,56],[0,69],[0,81],[-1,77],[0,37],[0,78],[0,44],[-1,69],[0,40],[0,41],[0,88],[0,109],[0,100],[0,38],[0,64],[0,71],[-1,62],[-1,48],[0,40],[0,58],[-1,90],[0,37],[-1,166],[0,43],[0,79],[1,137],[0,34],[1,94],[1,127],[0,51],[1,39],[0,76],[1,39],[1,104],[0,33],[1,135],[2,182],[0,40],[2,127],[0,22],[1,83],[1,75],[0,65],[2,68],[0,63],[2,181],[1,61],[1,73],[1,101],[0,34],[1,41],[1,54],[0,37],[1,79],[1,71],[1,53],[1,43],[1,43],[0,56],[1,40],[0,48],[2,112]],[[41032,69834],[0,-439],[2,-470],[0,-85],[0,-138],[0,-42],[0,-98],[0,-100],[1,-43],[0,-79],[-1,-87],[0,-33],[0,-127],[0,-79],[-1,-148],[0,-134],[0,-47],[0,-84],[0,-65],[0,-40],[0,-127],[-1,-77],[0,-62],[0,-125],[12,-24],[0,-1],[56,0],[94,0],[63,0],[56,-1],[32,0],[52,0],[15,0],[39,0],[38,0],[82,0],[76,-1],[-1,-87],[0,-107],[-1,-184],[0,-45],[0,-59],[0,-60],[-1,-77],[0,-44],[0,-62],[0,-16],[0,-23],[0,-33],[0,-44],[0,-88],[0,-35],[0,-38],[0,-101],[-1,-84],[0,-122],[0,-90],[0,-124],[0,-58],[0,-124],[0,-61],[0,-45],[0,-42],[0,-40],[0,-189],[0,-91],[0,-94],[0,-92],[0,-94],[0,-75],[0,-48],[0,-105],[0,-84],[0,-60],[0,-51],[0,-85],[0,-87],[0,-56],[0,-35],[0,-55],[1,-98],[-1,-296],[1,-186],[2,-1061],[0,-139],[0,-65],[1,-32],[0,-9],[0,-51],[0,-34],[0,-146],[-3,-71],[0,-32],[-1,-97],[-1,-42],[0,-33],[0,-35],[2,-187],[0,-65],[0,-292],[0,-109],[0,-103],[-1,-37],[-1,-50],[-1,-68],[0,-3],[1,-33],[0,-56],[-2,-167],[-1,-206],[-1,-107],[8,-216],[1,-141],[0,-105],[0,-338],[0,-35],[0,-139],[0,-50],[1,-137],[0,-46],[0,-69]],[[41648,58698],[-301,-2],[-61,0],[-105,-1],[-60,0],[-71,-1],[-138,-1],[-7,0],[-115,0],[-90,5],[-173,-7],[-26,1],[-34,1],[-42,-1],[-32,1],[-31,0],[-20,0],[-23,0],[-35,0],[-17,0],[-19,0],[-22,0],[-45,0],[-25,0],[-129,-5],[-168,6],[-42,0],[-42,0],[-31,0],[-56,0],[-64,2],[-43,-1],[-22,1],[-299,9],[-48,0],[-114,-4],[-1,0],[-92,-4],[-17,-1],[-17,1],[-12,-1],[-20,0],[-126,-3],[-151,-1],[-20,0],[-36,0],[-123,1],[-120,0],[-68,0],[-58,0],[-77,1],[-48,-1],[-51,1]],[[38061,58694],[-69,0],[-61,-1],[-23,0],[-32,0],[-52,0],[-23,1],[-25,-1],[-42,1],[-22,0],[-60,0],[-24,0],[-16,0],[-45,-1],[-41,0],[-38,0],[-26,0],[-32,0],[-59,-1],[-18,0],[-49,0],[-30,0],[-33,0],[-29,-1],[-35,1],[-82,-1],[-25,0],[-61,0],[-30,0],[-41,0],[-34,-1],[-24,0],[-16,0],[-17,0],[-5,0],[-47,0],[-41,0],[-42,-1],[-42,0],[-31,0],[-38,-1],[-36,0],[-267,-6],[-4,0],[-27,3],[-18,0],[-19,0],[-40,0],[-29,-1],[-38,1],[-35,-1],[-36,0],[-28,-1],[-52,0],[-15,1],[-24,-1],[-78,-1],[-35,-1],[-24,0],[-30,0],[-22,0],[-77,-1],[-53,-1],[-19,0],[-27,-1],[-29,0],[-17,-1],[-42,0],[-106,-1],[-35,-1],[-69,-2],[-38,0],[-62,-2],[-34,0],[-12,0],[-25,-1],[-31,-1],[-86,0],[-41,-1],[-35,0],[-16,0],[-94,-2],[-28,0],[-67,0],[-69,-1],[-47,1],[-29,1],[-53,1],[-26,1]],[[34477,58669],[0,140],[-1,136],[0,186],[0,139],[0,98],[-1,62],[0,47],[0,84],[0,33],[0,39],[0,39],[0,78],[0,61],[0,108],[-1,56],[0,83],[1,123],[0,90],[0,56],[0,88],[0,38],[0,68],[0,59],[1,57],[0,79],[-1,36],[1,33],[0,103],[0,43],[0,52],[0,43],[1,75],[0,105],[0,33],[0,156],[0,56],[0,150],[1,113],[0,68],[0,55],[0,36],[0,42],[1,51],[0,179],[0,100],[1,135],[0,132],[0,60],[0,126],[0,37],[0,59],[0,49],[0,69],[0,35],[0,67],[0,170],[0,62],[1,51],[0,42],[0,124],[0,44],[0,33],[0,39],[0,64],[0,38],[0,60],[1,231],[0,253],[2,360],[0,61],[-2,71],[0,63],[0,72],[0,127],[0,45],[-1,64],[0,34],[0,68],[0,50],[0,36],[-1,98],[0,65],[0,33],[0,67],[-1,105],[0,61],[0,65],[0,52],[0,45],[0,68],[-1,73],[1,83],[0,239],[-1,109],[1,49],[-1,84],[0,62],[-1,173],[-2,312],[-29,1],[-27,-1],[-18,1],[-14,0],[-2,0],[-50,0],[-43,0],[-18,0],[-32,0],[-41,1],[-18,-1],[-27,1],[-40,0],[-27,0],[-24,0],[-17,0],[-23,0],[-24,0],[-27,0],[-27,0],[-35,0],[-35,0],[-35,1],[-31,0],[-27,0],[-7,211],[0,110],[-2,141],[0,52],[0,54],[1,283],[2,58],[-2,439],[0,53],[0,45],[0,3],[0,35],[0,56],[0,61],[0,72],[0,64],[0,79],[0,34],[0,136],[0,17],[0,51],[0,257],[0,127],[1,57],[0,48],[0,79],[0,64],[0,48]],[[77577,61460],[-77,0],[-81,0],[-21,0],[-91,1],[-28,0],[-20,0],[-232,1],[-53,0],[-24,1],[-58,0],[-84,-1],[-30,0],[-29,0],[-28,0],[-24,0],[-50,0],[-17,0],[-29,0],[-42,1],[-26,0],[-24,0],[-149,0],[-26,0],[-16,0],[-39,0],[-20,0],[-38,0],[-40,0],[-50,0],[-50,1],[-51,0],[-35,0],[-52,0],[-16,0],[-15,-8],[-50,3],[-3,0],[-89,2],[-185,7],[-86,4],[-183,10],[-98,3],[-140,8],[-218,9],[-53,2],[-18,-10],[-73,5],[-49,4],[-17,1],[-91,12],[-18,0],[-30,2],[-49,2],[-40,3],[-46,2],[-41,2],[-41,1],[-16,1],[-17,1],[-44,2],[-62,4],[-43,2],[-31,1],[-74,4],[-33,2]],[[73974,61545],[-27,-2],[-33,-1],[-34,-1],[-22,-1],[-19,0],[-18,-1],[-19,0],[-71,-3],[-20,0],[-22,-2],[-55,-1],[-34,-1],[-16,0],[-24,-1],[-41,-2],[-33,-1],[-31,0],[-20,-1],[-27,0],[-33,-1],[-81,-1],[-33,-1],[-18,0],[-39,-2],[-19,0],[-20,-1],[-22,-1],[-16,0],[-34,-2],[-18,0],[-2,0],[-13,-1],[-67,-2],[-68,-2],[-27,-1],[-28,-1],[-30,0],[-18,-1],[-18,0],[-24,-1],[-58,-1],[-23,-1],[-16,0],[-18,-1],[-20,-1],[-17,0],[-21,0],[-29,-1],[-16,-1],[-38,0],[-38,-2],[-18,0],[-52,-2],[-22,0],[-18,-1],[-43,-1],[-47,-1],[-55,-1],[-28,0],[-30,0],[-22,0],[-34,0],[-22,0],[-43,1],[-49,0],[-22,-2],[-32,-3],[-4,-1],[-9,0],[-24,-2],[-21,0],[-16,0],[-99,1],[-54,0],[-140,6],[-32,3],[-45,2],[-26,-1],[-18,-1],[-15,-1],[-22,0],[-17,1],[-29,0],[-31,0],[-46,0],[-21,0],[-42,0],[-88,-3],[-30,0],[-20,-1],[-52,-2],[-22,-1],[-24,0],[-19,0],[-25,0],[-35,0],[-41,0],[-58,0],[-29,0],[-42,-1],[-19,0],[-24,-1],[-17,-1],[-35,-1],[-18,0],[-17,0],[-31,-1],[-26,0],[-106,1],[-23,0],[-22,0],[-2,0],[-35,0]],[[70378,61487],[0,60],[1,34],[1,94],[0,37],[-1,41],[0,84],[0,71],[0,46],[0,64],[0,104],[0,38],[0,64],[0,88],[0,94],[0,98],[0,66],[0,39],[0,41],[0,59],[0,152],[0,66],[0,89],[0,79],[0,62],[0,34],[0,69],[0,37],[0,48],[0,42],[0,59],[0,53],[0,60],[0,176],[2,33],[1,38],[1,38],[-5,130],[0,103],[1,85],[0,57],[0,63],[0,52],[1,82],[0,131],[1,198],[1,66],[0,72],[0,65],[1,138],[0,118],[2,316],[2,612],[1,89],[0,64],[0,40],[0,24],[0,80],[0,43],[0,99],[-1,95],[0,55],[0,75],[0,49],[0,38],[0,51],[-12,23],[-23,0],[-18,0],[-38,0],[-29,0],[-57,-1],[-24,0],[-27,0],[-23,0],[-15,35],[-1,165],[0,1],[-3,265],[0,139],[-1,48],[0,46],[0,53],[-1,82],[0,53],[0,37],[0,1],[-1,170],[0,68],[-1,208],[-1,143],[0,114],[0,115],[-3,72],[-3,49],[0,218],[0,104],[1,92],[0,48],[0,369],[0,9],[0,71],[0,369],[5,94],[1,69],[1,163],[1,234],[0,182],[0,34],[1,82],[0,148],[0,131],[1,230],[0,118],[0,160],[0,80],[1,108],[0,38],[0,19],[0,246],[0,75],[0,88],[0,2],[0,118]],[[70378,61487],[-175,2],[-70,0],[-51,0],[-149,1],[-117,0],[-33,0],[-142,1],[-36,0],[-271,1],[-16,0],[-62,0],[-74,1],[-48,0],[-10,0],[-7,0],[-23,0],[-7,0],[-48,0],[-31,0],[-49,2],[-77,-1],[-291,0],[-83,-1],[-90,-1],[-66,0],[-1,0],[-36,0],[-52,0],[-55,0],[-42,0],[-16,0],[-10,0],[-9,0],[-147,0],[-198,1],[-26,0],[-32,0],[-46,0],[-154,1],[-121,0],[-25,-1],[-264,0],[-33,0],[-163,-1],[-26,0],[-23,0],[-96,4]],[[66777,61496],[-30,0],[-72,-1],[-83,0],[-54,0],[-61,0],[-17,-2],[-199,-1],[-25,0],[-28,0],[-39,0],[-39,-1],[-104,0],[-1,0],[-151,0],[-48,0],[-71,0],[-62,0],[-92,-1],[-28,0],[-87,0],[-41,0],[-28,0],[-29,0],[-97,0],[-19,0],[-142,-1],[-52,-1],[-47,0],[-76,0],[-26,0],[-40,0],[-92,-1],[-83,0],[-32,0],[-22,0],[-65,-1],[-101,0],[-82,0],[-50,0],[-2,0],[-50,-1],[-32,0],[-61,0],[-90,0],[-65,-1],[-106,0],[-135,0],[-58,-1],[-19,0],[-57,1],[-223,1],[-47,0],[-28,0],[-75,0],[-150,-6]],[[63164,61479],[0,98],[0,41],[0,35],[0,57],[0,231],[-1,114],[0,116],[0,87],[0,144],[0,4],[-1,120],[0,71],[0,58],[0,80],[0,130],[-1,91],[0,146],[0,132],[0,93],[0,91],[-1,227],[0,38],[0,66],[0,38],[-1,188],[0,72],[0,16],[0,93],[0,123],[0,78],[0,53],[0,100],[0,43],[-1,188],[0,73],[0,126],[0,33],[0,115],[0,34],[0,82],[0,67],[0,162],[0,52],[-1,72],[0,113],[0,120],[0,73],[0,111],[0,32],[0,75],[0,67],[-1,51],[0,36],[0,70],[0,51],[0,35],[-1,121],[0,89],[0,64],[0,56],[0,40],[0,57],[0,30],[1,17],[-12,136],[-148,-1],[-17,1],[-49,0],[-38,0],[-22,0],[-16,0],[-10,27],[0,87],[0,40],[-1,33],[0,69],[0,115],[0,33],[0,62],[0,39],[1,96],[0,109],[0,52],[0,169],[-1,45],[0,54],[0,46],[0,40],[0,48],[0,137],[0,45],[0,77],[0,70],[0,135],[0,34],[0,56],[0,144],[0,52],[0,68],[0,77],[-1,35],[0,79],[0,88],[-1,66],[0,1],[1,70],[0,162],[1,200]],[[13792,69935],[0,-51],[2,-228],[4,-482],[1,-133],[0,-60],[0,-9],[-1,-24],[-1,-107],[1,-40],[-1,-57],[-2,-63],[0,-42],[0,-35],[-1,-313],[0,-61],[-1,-257],[1,-57],[-1,-291],[-1,-45],[0,-36],[-3,-323],[-1,-36],[28,-16],[25,1],[32,0],[28,0],[32,0],[26,0],[24,0],[20,1],[22,0],[22,0],[18,-1],[23,0],[36,0],[26,-1],[52,-1],[77,0],[22,-1],[18,0],[44,0],[26,0],[26,-1],[144,-1],[59,-1],[17,0],[30,-1],[36,0],[34,0],[19,0],[41,-1],[16,0],[28,0],[32,-1],[34,2],[1,-35],[0,-57],[0,-40],[0,-58],[0,-34],[1,-49],[-1,-52],[0,-67],[1,-39],[0,-87],[0,-36],[-1,-166],[0,-38],[-1,-150],[0,-43],[0,-39],[0,-62],[0,-47],[0,-43],[0,-36],[0,-43],[0,-47],[0,-34],[0,-71],[0,-45],[-1,-51],[1,-34],[-1,-62],[-1,-47],[0,-47],[-1,-51],[0,-41],[-1,-45],[0,-36],[-1,-61],[0,-52],[1,-128],[0,-123],[0,-53],[0,-35],[0,-44],[0,-76],[-8,-94],[1,-108],[0,-42],[0,-227],[6,-314],[-8,-143],[-1,-40],[0,-39],[0,-61],[0,-42],[0,-42],[0,-40],[-1,-33],[0,-42],[0,-37],[0,-53],[-1,-33],[-6,-328],[6,-138],[-1,-44],[0,-39],[0,-50],[0,-43],[0,-47],[0,-51],[-1,-36],[0,-88],[0,-40],[-7,-88],[1,-400],[6,-205],[0,-35],[0,-34],[0,-119],[0,-48],[1,-82],[1,-37],[0,-56],[1,-46],[0,-65],[0,-53],[0,-105],[1,-38],[1,-48],[1,-61],[0,-39],[1,-98],[1,-44],[0,-5],[-6,-194],[6,-181],[0,-55],[-1,-47],[1,-37],[-5,-36],[-2,-70],[0,-50],[0,-114],[2,-189],[-1,-123],[-1,-43],[1,-57],[3,-190],[-6,-173],[-1,-42],[0,-48],[-1,-41],[0,-80],[0,-53],[-1,-47],[-1,-39],[0,-55],[-1,-55]],[[14881,58740],[-22,-4],[-36,0],[-37,0],[-79,6],[-23,1],[-104,-5],[-43,2],[-20,0],[-46,3],[-175,-1],[-187,0],[-45,1],[-79,0],[-55,0],[-85,0],[-186,0],[-40,-3],[-54,-4],[-51,1],[-2,0],[-38,1],[-25,1],[-19,5],[-26,-1],[-25,0],[-28,0],[-120,6],[-58,1],[-82,1],[-128,-7],[-94,2],[-44,2],[-34,1],[-51,2],[-91,-8],[-73,2],[-68,3],[-16,-4],[-117,0],[-166,3],[-21,-1],[-122,0],[-40,-2],[-131,3],[-160,-4],[-56,-1],[-83,-2],[-78,0],[-56,3],[-56,-1],[-17,0],[-15,0],[-58,0],[-25,0],[-33,0],[-26,1],[-17,-4],[-67,5],[-117,4],[-27,-1],[-55,-2],[-30,-1],[-54,-1],[-26,-1],[-45,-1],[-40,-1],[-51,1],[-38,2],[-84,4],[-67,2],[-21,1],[-72,2],[-65,5],[-31,-1],[-33,0],[-61,0],[-31,0],[-29,1],[-73,-3],[-27,1],[-21,0],[-213,-3],[-22,0],[-4,0],[-302,-3],[-124,7],[-259,13],[-16,0],[-177,13],[-18,-2],[-61,2],[-49,0],[-36,1],[-81,1],[-64,2],[-16,-6],[-20,0],[-51,1],[-56,1],[-33,0],[-28,0],[-61,1],[-32,1],[-34,1],[-52,2],[-19,1],[-24,1],[-17,1],[-34,0],[-43,2],[-4,0],[-14,0],[-61,1],[-53,3],[-75,4],[-24,1],[-26,1],[-23,1],[-20,1],[-18,1],[-54,4],[-24,1],[-30,1],[-23,1],[-17,0],[-18,1],[-105,3],[-45,2],[-34,2],[-74,1],[-46,1],[-43,1],[-60,0],[-55,0],[-21,0],[-27,1],[-87,1],[-20,1],[-69,1],[-97,2],[-49,0],[-51,1],[-48,2],[-39,1],[-70,2],[-39,0],[-38,1],[-2,0],[-55,0],[-37,1],[-17,0],[-67,1],[-31,0],[-43,1],[-25,1],[-2,0],[-50,1],[-67,1],[-1,0],[-20,1],[-69,1],[-48,0],[-23,0],[-126,2],[-44,0],[-95,2],[-33,1],[-99,0],[-97,1],[-32,0],[-63,-1],[-28,0],[-128,1],[-53,0],[-84,-1],[-19,1],[-33,0],[-126,1],[-89,-1],[-22,0],[-24,1],[-96,0],[-25,-1],[-21,1],[-24,0],[-33,0],[-18,0],[-21,-1],[-22,0],[-36,1],[-42,2],[-28,1],[-57,1]],[[4328,58855],[66,29],[88,39],[170,95],[15,21],[78,113],[54,140],[24,61],[9,97],[-4,37],[-19,35],[-33,60],[-28,50],[2,29],[2,27],[4,63],[10,138],[2,24],[4,62],[-10,62],[-23,137],[-7,41],[-15,61],[-2,3],[-9,22],[-15,36],[-15,38],[-31,73],[-20,32],[-16,27],[-23,38],[-24,41],[-24,22],[-94,91],[-60,65],[-53,59],[-64,100],[-38,83],[-42,115],[-26,114],[-3,16],[-6,32],[-2,8],[-1,17],[-5,49],[-2,26],[0,41],[1,209],[1,65],[0,9],[-3,88],[-6,44],[-10,61],[-5,31],[-1,0],[-2,10],[-25,92],[-10,34],[-39,88],[-27,56],[-32,60],[-7,11],[-96,137],[-17,17],[-30,31],[-31,21],[-53,38],[-80,76],[-39,48],[-48,59],[-100,180],[-43,96],[0,2],[-32,110],[-8,55],[-1,9],[-12,80],[0,26],[-3,117],[0,37],[7,88],[4,19],[8,35],[9,42],[13,41],[7,14],[17,38],[39,120],[24,113],[5,20],[7,60],[0,112],[0,4],[-19,136],[-32,96],[-26,80],[-30,164],[-5,104],[2,144],[26,165],[18,76],[39,113],[79,156],[205,302],[49,113],[63,160],[31,105],[16,68],[18,112],[3,56],[2,40],[3,64],[-1,148],[-17,156],[-59,391],[-23,72],[-5,16],[-91,217],[-76,110],[-18,10],[-31,17],[-21,13],[-81,31],[-23,6],[-22,12],[-46,5],[-228,24],[-13,-9],[-123,18],[-67,25],[-1,0],[-17,1],[-70,5],[-22,3],[-2,0],[-19,32],[-51,30],[-62,18],[-129,-48],[-79,-30],[-23,-9],[-29,-11],[-42,42],[-7,71],[-6,61],[6,18],[24,68],[22,62],[34,94],[-13,169],[-79,81],[-41,13],[-41,-10],[-71,31],[-76,114],[-8,80],[24,74],[113,92],[11,8],[36,82],[4,7],[29,66],[9,21],[6,162],[5,130],[12,318],[5,129],[-103,103],[-102,41],[-118,67],[-13,88],[-1,4]],[[26520,69903],[-2,-104],[1,-91],[0,-93],[-1,-92],[1,-51],[0,-116],[0,-92],[1,-184],[0,-73],[0,-45],[0,-141],[1,-53],[-1,-38],[1,-187],[0,-96],[0,-157],[0,-62],[0,-41],[-1,-60],[1,-36],[-1,-67],[0,-99],[0,-80],[0,-60],[0,-86],[1,-86],[0,-54],[0,-91],[0,-38],[0,-102],[0,-57],[0,-122],[64,-1],[17,0],[42,0],[189,0],[54,0],[17,0],[35,0],[20,0],[110,-1],[40,0],[16,0],[110,-3],[16,0],[55,-2],[88,0],[17,0],[0,-44],[0,-11],[0,-96],[-1,-243],[0,-61],[-1,-78],[0,-53],[0,-76],[0,-79],[0,-88],[-1,-167],[0,-36],[0,-64],[0,-45],[-1,-88],[0,-44],[0,-40],[0,-44],[0,-35],[0,-68],[-1,-62],[0,-33],[0,-49],[0,-32],[0,-34],[0,-3],[0,-34],[0,-55],[0,-39],[-1,-73],[0,-41],[0,-44],[0,-47],[0,-77],[0,-58],[-1,-51],[0,-48],[0,-43],[0,-45],[0,-41],[-1,-79],[1,-44],[0,-43],[0,-40],[0,-42],[0,-42],[0,-65],[0,-62],[0,-53],[-1,-51],[0,-62],[0,-34],[-1,-50],[0,-34],[-1,-47],[0,-49],[0,-35],[0,-34],[-1,-38],[0,-62],[0,-54],[0,-44],[0,-32],[0,-38],[0,-44],[-1,-104],[0,-74],[-1,-59],[0,-38],[0,-41],[-1,-87],[0,-40],[0,-35],[-1,-47],[0,-92],[0,-33],[-1,-51],[0,-42],[0,-31],[0,-14],[0,-12],[0,-28],[0,-29],[0,-10],[0,-51],[-1,-54],[0,-58],[0,-35],[0,-83],[0,-40],[0,-34],[-1,-48],[0,-41],[-1,-37],[0,-70],[0,-34],[-1,-49],[0,-36],[0,-53],[-1,-53],[1,-43],[0,-3],[-1,-51],[0,-51],[0,-33],[-1,-57],[0,-45],[-1,-51],[0,-42],[0,-45],[-1,-66],[0,-52],[0,-68],[-1,-63],[0,-38],[0,-61],[0,-61],[0,-25],[-1,-43],[0,-78],[0,-36],[1,-49],[0,-53],[0,-70],[0,-35],[0,-47],[0,-51],[0,-81],[0,-51],[0,-35],[0,-39],[0,-67],[0,-56],[0,-45],[0,-125],[0,-60],[0,-5],[0,-29],[0,-58],[0,-87],[0,-60],[-1,-51],[0,-101],[0,-73],[0,-58],[0,-97],[0,-75],[0,-159],[-1,-74],[0,-37],[0,-93],[-1,-78],[1,-78],[0,-79],[0,-58],[0,-40]],[[27384,58686],[-259,-2],[-43,1],[-223,3],[-78,1],[-297,2],[-202,-1],[-97,0],[-298,0],[-302,0],[-100,0],[-134,4],[-21,1],[-45,2],[-84,-2],[-129,4],[-84,2],[-84,0],[-86,-1],[-128,0],[-149,2],[-150,1],[-300,1],[-284,4]],[[23807,58708],[-104,2],[-96,2],[-76,2],[-23,0],[-96,1],[-40,0],[-17,0],[-33,0],[-52,0],[-45,1],[-16,-1],[-67,1],[-80,1],[-27,0],[-16,0],[-45,1],[-51,0],[-32,1],[-23,0],[-24,0],[-61,0],[-30,0],[-29,1],[-20,0],[-23,0],[-24,1],[-43,0],[-27,0],[-26,0],[-19,0],[-63,0],[-55,0],[-55,-1],[-43,0],[-43,0],[-23,1],[-12,0],[-5,0],[-30,0],[-9,0],[-8,0],[-99,1],[-52,0],[-26,2],[-54,0],[-25,-1],[-27,1],[-32,-1],[-131,0],[-30,0],[-22,0],[-31,0],[-23,-1],[-27,0],[-20,0],[-21,-1],[-26,0],[-28,0],[-74,0],[-24,-1],[-26,4],[-40,-1],[-35,0],[-39,-2],[-18,0],[-1,0],[-2,0],[-16,-2],[-46,1],[-25,0],[-53,-1],[-50,0],[-26,0],[-45,0],[-54,1],[-22,0],[-102,1],[-74,0],[-52,1],[-43,0],[-18,0],[-39,1],[-72,0],[-145,2],[-17,0],[-70,0],[-18,-4],[-49,4]],[[20227,58725],[2,32],[0,60],[0,190],[0,121],[0,58],[0,52],[1,273],[0,57],[0,65],[0,73],[0,130],[0,59],[1,80],[0,134],[1,173],[0,75],[0,41],[1,134],[0,39],[0,69],[0,60],[0,43],[0,142],[0,47],[0,101],[0,146],[1,80],[0,51],[0,64],[0,127],[2,272],[-2,104],[0,84],[0,112],[1,49],[0,42],[0,11],[0,50],[0,37],[0,18],[0,17],[0,52],[0,76],[0,33],[1,60],[-1,44],[1,43],[0,50],[0,41],[0,45],[0,146],[0,42],[0,142],[0,51],[1,227],[0,51],[0,219],[0,59],[0,46],[0,48],[0,40],[0,42],[0,177],[0,35],[1,61],[0,91],[0,101],[1,60],[1,77],[0,65],[-1,133],[1,128],[0,59],[0,397],[1,82],[0,140],[1,250],[1,124],[0,58],[0,82],[0,68],[0,132],[0,156],[0,37],[0,80],[0,35],[1,155],[0,44],[0,41],[0,93],[0,126],[0,33],[0,53],[0,73],[0,48],[-27,18],[-1,1],[-48,0],[-191,-1],[-34,0],[-5,0],[-35,0],[-28,0],[-18,0],[-68,1],[-57,0],[-24,-1],[-19,1],[-35,0],[-99,1],[-54,-1],[-23,1],[-25,0],[-23,0],[-27,0],[-7,0],[-27,0],[-27,1],[-25,-1],[-29,0],[-36,0],[-15,467],[0,64],[-1,35],[0,48],[0,47],[-1,116],[-1,53],[0,58],[0,46],[-1,55],[-2,408],[0,49],[1,143],[1,51],[0,40],[0,45],[1,97],[0,34],[0,37],[0,76],[0,55],[0,37],[0,74],[-1,36],[0,50],[0,75],[0,41],[0,45],[0,38],[0,51],[1,104],[0,63],[0,41],[0,35],[0,67]],[[20227,58725],[-190,-2],[-33,0],[-74,-1],[-187,0],[-111,1],[-85,-1],[-27,0],[-55,1],[-17,0],[-115,0],[-65,-1],[-158,-2],[-36,0],[-27,-1],[-43,0],[-37,0],[-16,1],[-56,0],[-84,-1],[-76,0],[-47,0],[-71,-1],[-25,1],[-53,-1],[-20,1],[-76,-1],[-1,0],[-22,0],[-28,0],[-25,1],[-118,1],[-33,0],[-31,0],[-28,1],[-36,-1],[-30,0],[-57,0],[-23,0],[-80,1],[-35,0],[-52,0],[-18,0],[-51,0],[-17,0],[-16,0],[-17,-1],[-33,1],[-17,0],[-23,0],[-31,0],[-31,0],[-38,0],[-57,2],[-24,1],[-23,-1],[-22,-1],[-43,0],[-45,1],[-31,0],[-17,0],[-45,1],[-19,0],[-29,-1],[-101,1],[-44,2],[-29,1],[-40,-1],[-36,0],[-129,0],[-131,-1],[-29,0],[-92,-1],[-18,0],[-5,1],[-36,1],[-143,3],[-17,-1],[-51,-1],[-21,0],[-48,-1],[-23,0],[-51,1],[-33,1],[-21,0],[-39,2],[-38,0],[-21,0],[-20,-1],[-38,1],[-30,0],[-47,1],[-57,0],[-22,0],[-27,0],[-18,0],[-86,1],[-21,1],[-68,0],[-92,0],[-20,1],[-56,1],[-25,0],[-19,0],[-109,1],[-55,1],[-31,1],[-262,-2],[-17,4]],[[34477,58669],[-302,1],[-16,0],[-45,0],[-32,1],[-5,0],[-28,0],[-25,0],[-66,1],[-59,1],[-20,0],[-16,0],[-25,1],[-66,0],[-43,0],[-77,0],[-73,0],[-26,-1],[-29,0],[-18,1],[-28,0],[-25,0],[-38,0],[-19,-1],[-29,1],[-21,0],[-19,0],[-24,0],[-21,0],[-1,0],[-32,0],[-28,0],[-39,0],[-16,0],[-62,0],[-32,0],[-24,-1],[-49,0],[-16,0],[-52,0],[-23,0],[-22,0],[-28,0],[-29,0],[-20,0],[-38,1],[-29,-1],[-44,0],[-152,2],[-16,0],[-86,0],[-21,0],[-23,0],[-23,0],[-51,1],[-75,0],[-19,0],[-32,0],[-16,0],[-40,1],[-17,-1],[-36,0],[-14,0],[-7,0],[-35,0],[-54,0],[-28,0],[-44,0],[-15,1],[-24,0],[-40,0],[-27,0],[-18,0],[-20,0],[-61,0],[-51,1],[-36,0],[-22,0],[-51,0],[-40,1],[-41,0],[-46,0],[-61,1],[-39,0],[-41,0],[-71,1],[-63,0],[-69,0],[-64,0],[-49,0],[-42,-5]],[[30918,58676],[-141,1],[-109,0],[-1,0],[-62,4],[-29,0],[-31,0],[-36,0],[-43,0],[-46,0],[-27,0],[-35,0],[-35,0],[-113,4],[-187,-6],[-148,-1],[-42,5],[-110,0],[-27,2],[-226,-1],[-42,-1],[-14,0],[-138,-2],[-67,-1],[-30,2],[-48,-2],[-82,-6],[-70,4],[-45,1],[-40,0],[-49,1],[-32,1],[-22,0],[-29,2],[-30,0],[-35,1],[-26,0],[-25,0],[-20,0],[-52,1],[-30,0],[-25,0],[-31,0],[-17,1],[-48,0],[-39,0],[-70,1],[-18,0],[-41,0],[-23,0],[-40,0],[-43,0],[-76,-1],[-23,0],[-72,-1],[-45,1],[-67,0],[-37,0],[-31,0],[-55,1],[-27,0],[-38,0],[-44,1],[-27,-1],[-29,0],[-90,-1],[-28,0],[-39,0],[-22,0],[-15,0]],[[48298,69820],[-1,-226],[-1,-236],[1,-463],[3,-345],[1,-117],[2,-460],[-1,-200],[0,-34],[0,-40],[0,-190],[3,-465],[85,-1],[175,-4],[201,0],[99,1],[-1,-190],[-1,-285],[-1,-238],[0,-77],[0,-3],[-1,-147],[0,-105],[0,-358],[-1,-462],[0,-142],[0,-1],[0,-317],[0,-169],[0,-294],[0,-96],[0,-182],[0,-207],[-2,-465],[0,-326],[1,-139],[0,-131],[0,-75],[0,-257],[2,-227],[0,-187],[1,-50],[-2,-462],[-2,-458],[0,-464],[0,-462],[0,-89],[-1,-376],[0,-110],[0,-187],[0,-169],[2,-460]],[[48859,58673],[-32,0],[-36,0],[-1,0],[-25,0],[-53,0],[-50,0],[-53,0],[-16,1],[-33,-1],[-27,0],[-63,-1],[-53,1],[-139,-1],[-18,0],[-22,0],[-25,0],[-47,0],[-25,0],[-19,0],[-7,0],[-30,0],[-21,0],[-26,0],[-5,0],[-37,0],[-35,-1],[-24,1],[-43,0],[-21,0],[-25,0],[-56,0],[-77,0],[-53,0],[-18,0],[-17,3],[-18,-3],[-17,0],[-39,0],[-32,0],[-89,0],[-55,1],[-24,0],[-26,-1],[-57,0],[-57,0],[-14,0],[-8,0],[-19,0],[-28,-3],[-111,0],[-144,2],[-46,0],[-104,1],[-72,0],[-39,0],[-39,1],[-149,1],[-1,0],[-214,1],[-84,1],[-207,-1],[-92,-1],[-76,0],[-22,0],[-21,1],[-82,0],[-21,0],[-32,0],[-45,0],[-64,0],[-59,-1],[-34,1],[-47,0],[-49,0],[-32,0],[-21,-1]],[[45237,58674],[-20,1],[-45,0],[-28,0],[-57,0],[-150,0],[-78,0],[-52,0],[-117,0],[-37,1],[-59,0],[-49,1],[-59,0],[-17,0],[-19,1],[-22,0],[-34,0],[-55,0],[-32,1],[-83,0],[-86,0],[-27,0],[-27,0],[-33,0],[-86,1],[-37,0],[-31,0],[-4,0],[-138,1],[-17,0],[-41,-1],[-29,1],[-40,1],[-50,0],[-95,1],[-19,-1],[-33,1],[-69,0],[-48,0],[-93,1],[-90,0],[-46,0],[-70,1],[-29,0],[-51,0],[-103,1],[-52,0],[-140,2],[-31,0],[-40,0],[-21,0],[-16,0],[-24,1],[-49,0],[-86,1],[-85,1],[-33,-1],[-22,0],[-70,0],[-80,1],[-125,0],[-24,0],[-21,1],[-76,1],[-38,0],[-26,1],[-20,0],[-105,4]],[[55570,69792],[0,-7],[0,-194],[1,-232],[0,-190],[1,-44],[1,-230],[0,-73],[1,-390],[-1,-233],[0,-226],[-2,-467],[-3,-438],[21,-30],[89,-1],[126,-1],[79,-1],[40,-1],[17,0],[0,-103],[0,-1],[0,-42],[0,-104],[0,-47],[0,-112],[0,-22],[1,-50],[0,-388],[0,-72],[0,-86],[1,-148],[0,-230],[1,-232],[1,-229],[1,-231],[1,-229],[1,-153],[0,-85],[1,-155],[0,-37],[1,-33],[1,-234],[0,-37],[0,-211],[0,-34],[0,-198],[0,-235],[0,-1],[0,-227],[1,-232],[1,-462],[0,-199],[0,-39],[1,-221],[0,-47],[0,-415],[1,-233],[0,-188],[0,-42],[1,-465],[1,-144],[0,-54],[0,-34],[0,-116],[0,-117],[1,-351],[0,-110],[0,-157],[0,-58],[1,-251],[1,-230],[0,-49],[0,-182]],[[55959,58672],[-73,-3],[-59,-1],[-91,-1],[-52,3],[-4,1],[-22,1],[-83,0],[-42,0],[-1,0],[-36,0],[-25,0],[-22,0],[-44,0],[-106,-1],[-179,-6],[-57,-2],[-118,1],[-31,1],[-289,-5],[-17,0],[-145,-4],[-40,0],[-1,0],[-61,0],[-19,0],[-120,0],[-51,-1],[-50,-1],[-63,0],[-114,0],[-174,1],[-17,0],[-332,1],[-421,2],[-28,0],[-242,1],[-58,0],[-253,0]],[[52419,58659],[-52,5],[-55,-1],[-28,1],[-25,0],[-24,0],[-20,0],[-18,0],[-62,0],[-16,-1],[-17,1],[-19,0],[-23,0],[-15,0],[-20,0],[-17,0],[-12,0],[-13,0],[-33,0],[-23,0],[-16,1],[-22,-1],[-28,1],[-16,0],[-53,1],[-42,-1],[-21,1],[-27,0],[-19,0],[-24,0],[-34,0],[-41,0],[-20,0],[-27,0],[-25,0],[-35,1],[-17,0],[-73,1],[-25,0],[-27,0],[-59,0],[-15,0],[-33,0],[-12,0],[-9,0],[-25,0],[-28,1],[-16,-1],[-24,1],[-27,-1],[-49,0],[-28,1],[-50,0],[-32,0],[-23,0],[-57,1],[-37,0],[-104,0],[-22,0],[-34,1],[-244,2],[-56,0],[-140,-5],[-46,1],[-114,3],[-67,0],[-41,1],[-21,0],[-20,0],[-2,0],[-34,-1],[-67,0],[-25,0],[-22,0],[-43,0],[-31,0],[-22,0],[-27,1],[-24,0],[-33,-1],[-20,1],[-29,0],[-27,-1],[-19,1],[-25,-1],[-141,-1],[-127,-2],[-1,0],[-34,6],[-35,-1],[-24,0],[-69,0],[-52,-1],[-56,1],[-54,-1]],[[63164,61479],[-149,-1],[-150,-1],[-131,-1],[-169,-1],[-54,1],[-93,0],[-75,0],[-46,0],[-29,0],[-149,-1],[-149,0],[-217,-1],[-24,0],[-57,0],[-129,1],[-188,0],[-29,0],[-44,0],[-225,1],[-149,-2],[-161,2],[-195,-2],[-92,-1],[-120,0],[-178,0],[-149,-1],[-70,-1],[-24,0],[-55,0],[-35,-1],[-98,-1],[-17,0],[-160,0],[2,-456],[0,-97],[0,-69],[1,-296],[2,-382],[0,-80],[1,-115],[2,-181],[0,-165],[1,-463],[1,-187],[-1,-35],[0,-150],[0,-29],[1,-4],[0,-62]],[[59564,58698],[-140,0],[-159,-1],[-218,-2],[-5,0],[-47,1],[-29,3],[-5,0],[-19,0],[-32,0],[-97,1],[-145,-1],[-146,-1],[-153,-1],[-151,0],[-148,1],[-74,0],[-74,-1],[-16,0],[-151,-1],[-84,-1],[-66,-1],[-151,-2],[-1,0],[-296,-3],[-152,0],[-148,-1],[-29,0],[-124,-2],[-145,-2],[-298,-4],[-150,-3],[-130,-4],[-22,-1]],[[94863,64181],[54,-99],[30,-97],[66,-216],[2,-3],[93,-159],[79,-135],[37,-35],[99,-95],[32,-95],[24,-71],[27,-82],[12,-37],[150,-373],[6,-9],[54,-77],[28,-40],[50,-71],[43,-228],[0,-2],[-1,-2],[-42,-86],[-33,-106],[33,-193],[-41,-198],[-25,-125],[-37,-176],[-19,-93],[-8,-37],[-55,-228],[38,-209],[26,-150],[56,-279],[7,-36],[1,-2],[30,-127],[22,-92],[92,-166],[232,-419],[79,-288],[163,-233],[43,-51],[29,-34],[68,-80],[35,-41],[30,-34],[58,-69],[46,-54],[85,-99],[58,-16],[74,-20],[194,-52],[55,-15],[2,-1],[41,-26],[17,-11],[112,-161],[50,-71],[16,-11],[171,-111],[56,-37],[60,-60],[147,-149],[45,-41],[68,-63],[43,-40],[27,-26],[201,-101],[63,-33],[62,-31],[82,-11],[20,-19],[162,-156],[339,-326],[105,-100],[48,-230],[39,-268],[11,-77],[36,-85],[52,-125],[41,-23],[80,-47],[31,-18],[240,-25],[27,-3],[6,-1],[34,-81],[29,-67],[43,-101],[0,-12],[12,-167],[15,-215],[-1,-7],[-7,-112],[-8,-127],[-6,-82],[-13,-209],[-39,-191],[-37,-184],[8,-81],[18,-178],[7,-64],[2,-53],[1,-51],[3,-78],[0,-2],[-1,-17],[-15,-148],[24,-126],[7,-174],[5,-109],[87,-139],[36,-78],[49,-104]],[[99795,53003],[-11,5],[-52,27],[-43,0],[-23,0],[-47,0],[-21,-1],[-22,0],[-70,0],[-148,0],[-150,-1],[-28,2],[-25,1],[-77,-2],[-22,0],[-67,3],[-30,-1],[-16,-5],[-35,4],[-117,1],[-75,1],[-77,2],[-141,1],[-46,1],[-33,0],[-114,1],[-39,-1],[-119,2],[-36,0],[-150,-1],[-223,4],[-24,1],[-96,2],[-33,-1],[-130,0],[-162,1],[-157,0],[-144,0],[-93,-2],[-208,3],[-35,0],[-93,0],[-17,0],[-105,0],[-50,-4],[-60,-1],[-347,-1],[-48,-1],[-34,0],[-156,-1],[-1,0],[-103,0],[-146,5],[-83,-1],[-46,0],[-18,3],[-236,-5],[-109,-1],[-51,-1],[-238,-4],[-257,-4],[-30,0],[-275,-2],[-146,-1],[-70,0],[-44,0],[-183,-4],[-37,0],[-112,-1],[-72,0],[-66,0],[-139,-2],[-19,-2],[-381,6],[-157,3],[-65,0],[-113,-2],[-37,-4],[-80,-2],[-42,1],[-60,-2],[-89,0],[-41,1],[-83,0],[-60,1],[-18,0],[-40,0],[-33,0],[-20,0],[-27,0],[-3,0],[-45,0],[-255,0],[-218,-2],[-73,0],[-160,4],[-124,4],[-37,0],[-39,0],[-100,0],[-113,0],[-33,0],[-45,0],[-64,-2],[-48,-4],[-92,-1],[-24,-1],[-38,0],[-49,-1],[-90,2],[-96,3],[-31,1],[-25,1],[-55,1],[-289,8],[-29,0],[-224,-5],[-39,6],[-22,3],[-63,3],[-53,-1],[-39,-1],[-58,0],[-87,1],[-144,2],[-105,0],[-224,3],[-24,0],[-46,0],[-171,1],[-116,1]],[[88329,53050],[0,116],[0,239],[0,188],[0,4],[0,233],[0,79],[0,65],[0,155],[2,197],[0,1],[0,38],[0,151],[0,59],[0,66],[0,46],[-2,33],[1,136],[0,90],[0,69],[0,315],[1,292],[0,50],[0,100],[0,63],[-2,142],[-5,322],[1,154],[0,1],[0,195],[1,125],[1,86],[0,239],[0,12],[1,57],[0,35],[-1,107],[0,15],[1,110],[1,58],[0,55],[1,374],[0,74],[0,38],[0,93],[0,197],[0,259],[0,64],[0,43],[1,117],[0,107],[0,59],[0,24],[2,327],[0,43],[0,88],[0,168],[0,154],[1,200],[-1,359],[1,133],[-1,102],[0,39],[0,62],[0,40],[1,231],[0,105],[0,152],[0,222]],[[73974,61545],[-3,-321],[-1,-144],[-1,-167],[-1,-115],[0,-70],[-1,-115],[-1,-68],[-2,-128],[0,-34],[-4,-407],[-1,-174],[0,-41],[0,-51],[-1,-69],[-4,-364],[0,-117],[3,-52],[-1,-34],[-1,-314],[-2,-244],[-1,-22],[0,-37],[0,-71],[-1,-56],[-1,-141],[-2,-88],[-7,-469],[-1,-19],[0,-20],[-2,-140],[-4,-260],[-2,-59],[0,-34],[-1,-58],[-1,-51],[-5,-679],[-4,-366],[3,-170],[0,-4],[1,-48],[0,-41],[0,-9],[1,-167],[2,-42],[0,-174],[0,-172],[1,-98],[-1,-230],[-1,-53],[0,-54],[-5,-31],[-1,-11],[-3,-32],[0,-42],[-1,-14],[0,-22],[0,-192],[-1,-248],[-1,-63],[0,-56],[-2,-234],[0,-49],[0,-83],[-1,-115],[0,-74],[-2,-193],[0,-66],[2,-202],[0,-32],[1,-125],[1,-112],[1,-76],[2,-153],[1,-162],[1,-73],[2,-231],[2,-165],[1,-73],[1,-120],[1,-90],[3,-253],[4,-337],[2,-130],[0,-1],[3,-250],[0,-34],[2,-183],[2,-123],[3,-211],[1,-47],[0,-50],[3,-159],[1,-62],[1,-56],[1,-62],[0,-53],[1,-5],[1,-82],[0,-65],[1,-60],[2,-138],[1,-102],[1,-94],[2,-151],[2,-165],[0,-36],[2,-149],[0,-40],[0,-77],[0,-38],[1,-37],[0,-34],[0,-10],[0,-30],[0,-35],[0,-32],[0,-7],[0,-28],[1,-32],[0,-36],[0,-57],[0,-40],[1,-35],[0,-43],[0,-77],[1,-45],[0,-96],[0,-47],[1,-55]],[[73970,47556],[-298,-4],[-35,0],[-32,0],[-4,0],[-17,0],[-25,0],[-26,-1],[-70,0],[-25,1],[-21,-1],[-29,0],[-18,0],[-7,0],[-45,0],[-19,0],[-20,0],[-29,0],[-30,0],[-44,-1],[-42,0],[-21,0],[-17,0],[-21,-1],[-21,0],[-17,0],[-38,-1],[-25,0],[-47,0],[-32,-1],[-42,1],[-41,1],[-32,0],[-32,0],[-64,1],[-36,1],[-20,0],[-26,0],[-123,2],[-66,0],[-39,1],[-23,0],[-17,0],[-21,0],[-58,1],[-76,2],[-114,3],[-34,1],[-75,2],[-17,-1],[-28,2],[-30,0],[-30,0],[-98,1],[-34,1],[-44,1],[-30,-1],[-29,1],[-31,0],[-213,9],[-89,-3],[-29,0],[-34,2],[-36,0],[-17,0],[-113,2],[-46,1],[-28,0],[-27,0],[-18,1],[-36,0],[-19,0],[-45,1],[-81,1],[-1,0],[-102,1],[-35,0],[-19,1],[-44,1],[-17,0],[-22,1],[-20,1],[-24,2],[-25,1],[-67,4],[-36,1],[-158,0],[-198,-3],[-39,0],[-108,-1],[-68,-3],[-17,0],[-20,-1],[-22,0],[-23,-1],[-17,0],[-16,0],[-28,1],[-18,-1],[-26,0],[-26,0],[-18,0],[-23,-1],[-20,1],[-21,-1],[-24,-1],[-25,1],[-42,0],[-16,0],[-20,-1],[-29,0],[-19,0],[-20,0],[-27,0],[-24,-1],[-23,1],[-16,-1],[-49,1],[-26,-1],[-23,0],[-17,1],[-16,-1],[-19,0],[-39,0],[-17,0],[-31,0],[-17,0],[-225,0],[-139,-1],[-72,0],[-28,1],[-26,1],[-16,1],[-96,1],[-17,-1],[-35,0],[-98,0],[-125,0],[-239,9],[-77,-1],[-22,0],[-39,3],[-385,-5],[-136,-1],[-64,0],[-5,0],[-173,-1],[-4,0],[-14,0],[-58,1],[-12,0],[-46,-3]],[[66786,47586],[0,160],[0,14],[1,67],[0,16],[2,444],[-1,44],[0,188],[0,85],[1,49],[-1,73],[0,15],[-1,65],[2,39],[-1,68],[-1,93],[2,47],[1,27],[-1,40],[0,94],[-1,95],[-1,113],[0,46],[1,65],[1,101],[0,71],[1,47],[1,37],[0,44],[1,85],[2,120],[0,55],[0,52],[0,60],[0,50],[0,62],[0,48],[0,171],[0,98],[-1,45],[0,43],[0,5],[0,49],[-1,55],[0,1],[1,85],[3,39],[2,46],[2,57],[0,71],[0,45],[0,39],[0,75],[0,40],[0,44],[-1,48],[0,42],[-1,57],[-1,41],[-2,75],[-1,77],[0,7],[-1,31],[0,34],[-1,34],[0,74],[0,61],[0,52],[0,4],[0,42],[0,57],[1,71],[0,33],[-2,75],[-1,46],[-1,36],[0,17],[-1,58],[0,74],[-1,61],[0,52],[0,42],[-1,100],[0,23],[0,11],[0,13],[0,24],[-1,40],[0,33],[-1,48],[-2,104],[0,45],[-1,39],[-1,43],[-1,101],[-1,55],[0,32],[0,38],[1,75],[0,33],[0,33],[1,44],[0,34],[-1,146],[-2,112],[-1,19],[0,33],[0,14],[0,54],[0,38],[0,1],[-1,103],[0,32],[-1,51],[0,71],[-1,73],[-1,56],[0,43],[-1,44],[0,20],[0,28],[-1,42],[0,53],[-1,81],[0,80],[0,66],[1,44],[1,46],[0,37],[1,68],[1,58],[1,45],[0,36],[0,73],[0,45],[-1,96],[-1,115],[0,52],[0,94],[-1,67],[0,12],[1,23],[0,37],[0,19],[-1,52],[0,55],[0,66],[0,68],[0,51],[0,60],[0,44],[0,120],[-1,77],[0,42],[0,53],[0,72],[0,38],[0,48],[0,69],[-1,63],[0,131],[-1,72],[1,45],[-1,104],[1,58],[0,68],[0,40],[0,41],[1,41],[0,51],[1,55],[0,222],[0,1],[0,35],[0,37],[1,84],[0,209],[1,96],[0,56],[0,90],[0,40],[1,44],[0,41],[0,14],[1,85],[0,40],[1,92],[0,95],[0,47],[0,122],[-1,89],[0,91],[0,94],[0,58],[0,56],[0,89],[0,50],[0,80],[0,92],[1,60],[0,115],[0,140],[0,26],[-1,15],[1,73],[0,92],[1,176],[1,57],[0,76],[0,69],[0,58],[0,34],[0,66],[0,98],[0,70],[0,45],[0,80],[-1,153],[0,63],[0,228]],[[81174,61461],[0,-117],[-1,-212],[-1,-131],[0,-90],[-1,-38],[-1,-339],[-1,-269],[0,-72],[-1,-96],[0,-117],[-1,-78],[0,-33],[0,-36],[0,-56],[-1,-49],[0,-126],[0,-57],[0,-177],[-1,-233],[0,-97],[-1,-51],[0,-41],[0,-38],[0,-91],[-1,-115],[0,-34],[0,-38],[0,-46],[0,-53],[-1,-91],[0,-234],[0,-37],[-1,-58],[0,-45],[0,-35],[0,-55],[-1,-45],[0,-34],[0,-36],[0,-37],[0,-51],[-1,-33],[-1,-135],[0,-47],[-1,-160],[0,-90],[-1,-33],[3,-115],[-1,-335],[-4,-475],[0,-52],[-1,-65],[-2,-257],[2,-99],[0,-131],[0,-9],[0,-48],[0,-88],[0,-271],[0,-153],[0,-246],[0,-171],[3,-46],[-5,-32],[-1,-58],[-1,-83],[0,-51],[0,-35],[1,-72],[0,-62],[1,-88],[0,-18],[-1,-55],[0,-167],[0,-156],[0,-110],[0,-158],[-1,-411],[0,-74],[0,-95],[-1,-74],[0,-140],[-1,-62],[0,-88],[0,-68],[-1,-34],[3,-63],[0,-9],[-1,-73],[0,-60],[0,-55],[-1,-108],[0,-176],[-5,-172],[-2,-350],[-2,-235],[0,-119],[-1,-53],[0,-58],[-1,-178],[-1,-59],[0,-174],[0,-72],[0,-215]],[[81135,50294],[-1,-522],[0,-92],[-1,-37],[0,-2],[0,-32],[1,-245],[0,-8],[-1,-39],[-1,-439],[-1,-296],[-1,-474],[0,-127],[1,-295],[0,-186]],[[81131,47500],[-78,-1],[-62,-1],[-24,1],[-138,-3],[-116,0],[-105,0],[-91,-1],[-95,-2],[-12,0],[-8,-1],[-186,2],[-100,0],[-179,0],[-109,1],[-195,0],[-285,-1],[-66,1],[-110,-3],[-4,1],[-154,3],[-110,1],[-87,1],[-60,1],[-59,0],[-17,1],[-15,0],[-65,1],[-67,2],[-221,3],[-78,2],[-71,1],[-65,1],[-116,2],[-69,1],[-38,2],[-18,2],[-14,-3],[-2,0],[-221,6],[-58,1],[-79,2],[-99,2],[-119,4],[-46,1],[-46,1],[-96,2],[-47,1],[-32,1],[-17,1],[-164,3],[-142,3],[-143,6],[-60,0],[-6,0],[-97,3],[-2,1],[-23,0],[-199,12],[-69,-6],[-4,0],[-28,1],[-52,0],[-166,3],[-59,1],[-80,-1],[-23,0],[-55,-1],[-88,0],[-53,0],[-44,0],[-85,0],[-22,0],[-98,-1],[-58,-1],[-23,0],[-105,0],[-16,0],[-36,1],[-38,0],[-41,-1],[-29,1],[-172,-1],[-23,0],[-25,-1],[-40,1],[-21,-1],[-23,0],[-20,0],[-131,0],[-129,0],[-96,-1],[-95,0],[-55,0],[-54,0],[-20,-1]],[[66786,47586],[-301,-1],[-151,-1],[-44,0],[-52,-1],[-252,-2],[-105,-2],[-140,-1],[-30,-1],[-110,-1],[-148,0],[-19,2],[-21,0],[-52,1],[-41,-1],[-23,0],[-19,0],[-28,0],[-33,0],[-17,0],[-23,0],[-54,0],[-16,0],[-46,0],[-82,0],[-20,-1],[-24,0],[-75,1],[-34,0],[-19,0],[-23,0],[-19,0],[-40,0],[-19,-1],[-24,0],[-41,1],[-21,0],[-21,0],[-37,-1],[-114,-1],[-61,0],[-35,0],[-21,0],[-32,-1],[-30,1],[-29,-1],[-37,0],[-28,0],[-38,0],[-33,1],[-23,-1],[-31,0],[-21,0],[-17,1],[-16,0],[-32,-1],[-30,-1],[-20,1],[-16,0],[-17,-1],[-36,0],[-22,-1],[-32,0],[-19,-1],[-69,1],[-31,0],[-16,-1],[-48,-1],[-38,-1],[-22,0],[-44,1],[-22,0],[-15,0],[-17,0],[-18,1],[-19,-1],[-33,0],[-17,0],[-38,0],[-34,-1],[-35,-2],[-17,0],[-22,0],[-46,0],[-17,0],[-21,-1],[-20,1],[-25,0],[-18,0],[-26,1],[-42,0],[-36,0],[-34,0],[-60,0],[-46,0],[-18,1],[-16,0],[-16,0],[-18,1],[-20,0],[-15,-1],[-42,0],[-30,1],[-39,-1],[-35,0],[-23,0],[-16,0],[-36,1],[-18,-1],[-54,0],[-15,0],[-60,0],[-19,0],[-53,0],[-6,0],[-31,0],[-111,1],[-49,-1],[-21,0],[-37,1],[-38,-1],[-20,0],[-17,0],[-29,0],[-22,0],[-82,0],[-26,0],[-50,-2],[-59,1],[-16,0],[-22,1],[-33,0],[-26,-1],[-16,0],[-24,0],[-69,0],[-37,2],[-65,0],[-20,-1],[-110,-1],[-169,1],[-45,-1],[-51,0],[-50,0],[-153,1],[-187,1],[-107,0],[-70,1],[-110,0],[-125,2],[-2,0],[-59,0],[-86,0],[-86,1],[-67,0],[-51,-7],[-64,2],[-20,0],[-29,1],[-64,1],[-67,3]],[[59585,47575],[0,402],[0,59],[1,315],[1,154],[-1,260],[0,204],[2,278],[1,177],[1,61],[-2,412],[0,122],[0,39],[1,298],[0,229],[-1,231],[-1,231],[-1,229],[0,101],[-2,361],[0,178],[0,2],[0,37],[1,37],[-3,198],[-1,90],[0,143],[-2,265],[-1,293],[0,1],[-1,116],[2,82],[-1,155],[0,208],[0,132],[-1,171],[-1,160],[0,479],[-2,55],[0,405],[-3,461],[1,220],[0,210],[1,86],[-1,53],[0,50],[1,132],[-2,231],[-2,435],[0,8],[-1,391],[-1,92],[0,230],[0,83],[0,151],[-2,197],[-1,262],[-3,315],[3,146]],[[88329,53050],[-1,-225],[0,-37],[0,-125],[0,-44],[0,-36],[0,-126],[1,-106],[-1,-58],[0,-38],[0,-32],[-1,-103],[1,-50],[0,-58],[0,-43],[0,-53],[-1,-54],[1,-97],[0,-66],[0,-38],[0,-69],[0,-42],[-1,-54],[0,-70],[0,-79],[0,-135],[0,-84],[1,-167],[0,-57],[0,-217],[0,-85],[-1,-157],[0,-80],[0,-61],[0,-53]],[[88327,50251],[-162,4],[-29,1],[-93,2],[-313,7],[-228,5],[-173,1],[-51,0],[-49,0],[-87,0],[-34,0],[-175,0],[-47,0],[-17,0],[-106,-1],[-81,-1],[-148,-1],[-76,0],[-227,0],[-118,-1],[-69,1],[-36,3],[-46,-3],[-20,0],[-44,1],[-22,-1],[-24,0],[-49,1],[-24,0],[-24,0],[-42,0],[-70,0],[-81,1],[-28,0],[-24,0],[-131,1],[-48,0],[-52,0],[-78,1],[-17,0],[-44,0],[-52,1],[-32,0],[-25,0],[-26,1],[-116,-1],[-48,1],[-74,0],[-36,0],[-18,0],[-198,2],[-22,0],[-65,0],[-99,1],[-49,1],[-22,0],[-24,0],[-188,2],[-47,0],[-33,1],[-67,0],[-21,1],[-28,-1],[-24,1],[-23,1],[-115,0],[-18,0],[-39,1],[-36,0],[-27,0],[-39,0],[-26,0],[-72,1],[-50,0],[-161,1],[-17,0],[-38,1],[-153,1],[-81,-1],[-142,1],[-31,-1],[-20,0],[-32,0],[-24,1],[-53,0],[-166,0],[-56,1],[-25,-1],[-54,0],[-37,1],[-30,-1],[-27,1],[-74,0],[-129,-1],[-296,-1],[-124,-3],[-40,0],[-47,5],[-18,0],[-44,0],[-28,0],[-56,1],[-86,1],[-16,1],[-20,1],[-46,0],[-33,0],[-42,1]],[[14881,58740],[2,-190],[2,-242],[0,-33],[0,-54],[0,-35],[0,-135],[-1,-44],[0,-51],[1,-53],[0,-37],[-1,-54],[0,-54],[0,-59],[-1,-65],[0,-55],[0,-49],[-1,-51],[0,-51],[-1,-69],[0,-125],[-1,-163],[-2,-185],[2,-134],[0,-110],[0,-10],[2,-65],[-2,-144],[-2,-40],[0,-40],[0,-59],[0,-37],[-1,-41],[0,-73],[-1,-36],[0,-66],[0,-71],[-3,-64],[1,-108],[1,-70],[0,-41],[0,-34],[-1,-66],[0,-65],[-1,-53],[-4,-313],[0,-113],[-2,-317],[0,-147],[-1,-141],[2,-93],[0,-64],[0,-47],[0,-39],[0,-55],[-4,-207],[3,-226],[1,-59],[0,-32],[0,-51],[0,-12],[0,-30],[0,-41],[0,-34],[1,-76],[-1,-55],[-1,-67],[0,-42],[0,-32],[0,-39],[0,-33],[-1,-49],[-6,-147],[2,-364],[3,-90],[0,-89],[0,-96],[0,-73],[0,-210],[0,-164],[-1,-33],[0,-57],[0,-103],[0,-108],[0,-36],[-1,-80],[0,-40],[0,-97],[1,-59],[-1,-98],[0,-45],[0,-83],[-1,-122],[0,-90],[0,-10],[0,-61],[0,-37],[0,-47],[-1,-98],[0,-37],[0,-84],[0,-57],[0,-37],[-1,-108],[0,-45],[1,-34],[1,-71],[0,-43],[-2,-46],[-1,-47],[0,-55],[-1,-54],[0,-92],[-1,-245],[0,-91],[-1,-47],[0,-129],[0,-56],[-1,-35],[1,-37],[-1,-35],[0,-36],[0,-38],[0,-33],[0,-32],[0,-35],[0,-37],[0,-54],[0,-36],[0,-41],[0,-41],[0,-48],[-2,-250],[1,-48],[2,-46],[-1,-188],[-2,-70],[0,-53],[1,-87],[0,-79],[0,-40],[-1,-71],[-2,-62]],[[14851,47598],[-22,1],[-235,3],[-41,-1],[-201,1],[-99,0],[-158,0],[-64,0],[-29,0],[-5,0],[-42,1],[-149,0],[-143,-1],[-17,0],[-21,1],[-20,0],[-32,-1],[-29,0],[-29,0],[-30,0],[-21,0],[-32,0],[-17,0],[-16,0],[-23,0],[-17,0],[-16,0],[-19,1],[-20,-1],[-20,0],[-17,1],[-18,-1],[-18,0],[-28,0],[-17,0],[-20,0],[-15,0],[-17,3],[-20,1],[-17,-1],[-19,-1],[-22,-1],[-35,0],[-22,0],[-29,0],[-21,0],[-16,0],[-16,0],[-16,0],[-21,-1],[-21,1],[-18,1],[-24,0],[-17,0],[-16,0],[-27,0],[-74,1],[-61,0],[-51,0],[-38,0],[-30,1],[-22,0],[-17,0],[-29,-1],[-17,1],[-27,1],[-21,0],[-25,0],[-40,0],[-18,0],[-16,1],[-26,-3],[-21,1],[-22,1],[-18,0],[-20,7],[-154,-6],[-151,1],[-147,0],[-146,2],[-16,-4],[-16,2],[-23,1],[-27,0],[-16,1],[-39,0],[-18,0],[-44,-1],[-24,-1],[-26,-1],[-33,-1],[-15,-1],[-2,0],[-89,2],[-2,0],[-22,0],[-18,0],[-21,0],[-21,0],[-18,0],[-17,0],[-60,0],[-30,0],[-19,0],[-19,0],[-18,0],[-16,1],[-32,0],[-17,0],[-26,0],[-28,0],[-124,0],[-27,0],[-17,0],[-42,-1],[-16,1],[-50,1],[-26,0],[-45,0],[-16,0],[-22,0],[-63,1],[-116,0],[-145,-2],[-133,4],[-59,-2],[-27,1],[-2,0],[-49,1],[-17,0],[-16,1],[-26,1],[-37,1],[-19,0],[-24,0],[-20,1],[-24,0],[-17,1],[-23,0],[-21,1],[-20,0],[-16,0],[-18,1],[-15,-2],[-17,1],[-40,2],[-17,1],[-30,1],[-18,1],[-46,2],[-55,3],[-61,2],[-24,2],[-26,1],[-32,2],[-25,2],[-2,0],[-88,2],[-61,4],[-62,4],[-98,5],[-60,3],[-61,2],[-3,0],[-24,0],[-35,1],[-18,2],[-28,1],[-45,2],[-74,3],[-149,5],[-71,4],[-1,0],[-71,2],[-155,8],[-71,3],[-93,4],[-124,6],[-10,0],[-31,-1]],[[7676,47698],[-22,50],[-17,28],[-24,52],[-1,3],[-18,49],[-10,47],[-15,53],[-11,82],[-1,32],[0,16],[0,36],[-1,55],[-2,40],[-5,53],[-8,39],[-5,30],[-10,37],[-17,46],[-17,41],[-6,12],[-2,4],[-10,23],[-22,35],[-25,44],[-23,38],[-23,44],[-11,25],[-11,25],[-7,18],[-16,40],[-10,40],[-5,40],[1,80],[5,23],[3,18],[11,36],[0,3],[12,33],[14,31],[19,27],[24,24],[8,7],[23,18],[9,5],[17,10],[50,20],[32,11],[11,6],[13,7],[17,10],[36,25],[37,43],[24,50],[15,43],[9,39],[9,86],[0,35],[0,2],[-3,46],[-4,33],[-4,16],[-12,46],[-28,78],[-11,37],[-16,44],[-10,27],[-13,42],[-12,37],[-8,42],[-7,42],[-2,49],[10,64],[5,31],[16,45],[2,3],[13,21],[99,189],[51,220],[13,56],[24,102],[4,24],[4,82],[0,38],[-5,66],[-9,40],[-21,45],[-13,22],[-164,134],[-29,7],[-115,28],[-26,7],[-23,5],[-43,11],[-59,-22],[-149,-54],[-4,-4],[-50,-57],[-44,-9],[-55,10],[-41,24],[-47,37],[-32,47],[-22,43],[-10,43],[0,63],[7,62],[4,31],[5,32],[9,31],[1,3],[9,25],[1,2],[22,61],[18,41],[13,37],[4,12],[9,27],[8,38],[7,36],[2,41],[-8,82],[-7,33],[-53,118],[-16,15],[-20,19],[-39,26],[-18,10],[-4,1],[-74,8],[-25,12],[-43,4],[-22,0],[-16,-1],[-61,-27],[-50,-35],[-30,-20],[-20,-47],[-17,-44],[-34,-124],[-10,-28],[-11,-30],[-22,-55],[-5,-8],[-13,-22],[-25,-25],[-17,-8],[-10,-5],[-18,-2],[-21,5],[-21,8],[-33,16],[-26,18],[-24,22],[-26,36],[-24,34],[-15,24],[-12,25],[-7,31],[-6,28],[0,68],[2,41],[1,7],[3,37],[0,3],[17,79],[12,36],[5,14],[13,46],[4,4],[19,24],[18,22],[18,21],[42,51],[40,47],[29,33],[41,76],[13,29],[4,10],[7,13],[12,38],[17,76],[-3,107],[-8,45],[-21,77],[-28,59],[-30,41],[-9,10],[-7,8],[-23,31],[-20,23],[-20,21],[-3,2],[-13,10],[-20,12],[-25,15],[-122,29],[-88,-26],[-61,-48],[-20,-16],[-42,-6],[-29,0],[-50,36],[-42,40],[-21,24],[-9,15],[-14,22],[-24,38],[-3,16],[-32,88],[-11,36],[-10,31],[-5,22],[-5,19],[-1,4],[-46,257],[-1,4],[0,2],[-12,116],[-4,38],[-5,76],[1,101],[1,66],[0,13],[1,18],[2,34],[5,68],[7,64],[11,64],[5,16],[10,32],[16,73],[4,29],[6,51],[19,56],[23,36],[15,38],[1,2],[18,56],[13,52],[5,18],[11,43],[0,5],[11,80],[4,31],[10,132],[-5,140],[-7,70],[-3,29],[-1,9],[-18,80],[-29,96],[-27,68],[-10,19],[-11,21],[-1,2],[-42,64],[-22,34],[-10,10],[-25,25],[-29,29],[-71,43],[-23,8],[-82,20],[-57,12],[-2,0],[-35,12],[-12,7],[-56,36],[-1,1],[-55,59],[-45,65],[-10,15],[-24,44],[0,8],[-2,9],[-56,215],[3,16],[-21,68],[-21,56],[-34,55],[-20,33],[-4,8],[-9,12],[-20,27],[-16,12],[-166,176],[-18,20],[-56,83],[-39,76],[-20,48],[-22,52],[-10,30],[-4,14],[-21,91],[-18,77],[-2,87],[-1,83],[-1,14],[3,16],[26,137],[8,20],[20,148],[0,56],[-16,148],[-18,96],[-16,52],[-21,64],[-43,72],[-26,56],[-57,124],[-1,4],[-1,15],[-3,23],[1,22],[0,22],[8,31],[13,51],[3,10],[13,17],[11,12]],[[59585,47575],[-21,-1],[-46,-1],[-42,0],[-28,1],[-52,0],[-39,0],[-3,0],[-19,0],[-28,0],[-20,0],[-31,0],[-90,0],[-27,0],[-44,-1],[-31,1],[-47,-1],[-28,0],[-25,0],[-25,-1],[-45,0],[-32,0],[-35,-1],[-35,0],[-32,0],[-33,-1],[-36,0],[-46,0],[-61,0],[-27,0],[-16,0],[-17,0],[-32,0],[-26,1],[-90,0],[-30,0],[-53,1],[-71,0],[-44,0],[-35,0],[-41,0],[-73,0],[-37,1],[-34,0],[-67,0],[-19,0],[-29,0],[-61,1],[-36,0],[-26,0],[-63,0],[-42,1],[-50,0],[-34,1],[-41,0],[-48,0],[-55,0],[-46,1],[-5,0],[-25,-1],[-54,1],[-73,0],[-89,0],[-76,1],[-19,0],[-24,-1],[-29,1],[-36,0],[-26,0],[-55,-1],[-37,1],[-33,-1],[-22,1],[-53,0],[-34,0],[-36,0],[-17,0],[-26,0],[-35,0],[-23,0],[-77,0],[-23,0],[-35,1],[-17,-1],[-38,0],[-36,0],[-27,0],[-35,0],[-59,0],[-16,0],[-23,-1],[-31,1],[-61,-1],[-17,0],[-29,0],[-69,0],[-33,0],[-38,1],[-16,0],[-17,0],[-49,0],[-26,0],[-32,1],[-20,0],[-27,0],[-32,0],[-22,1],[-34,-1],[-29,1],[-35,-1],[-24,1],[-30,0],[-34,0],[-24,1],[-23,0],[-23,0],[-32,0],[-23,0],[-38,1],[-29,0],[-17,-1],[-23,1],[-21,-1],[-16,0],[-24,0],[-27,0],[-17,0],[-32,1],[-20,0],[-23,0],[-20,0],[-44,0],[-21,1],[-21,-1],[-28,-1],[-35,2],[-16,-1],[-25,0],[-22,0],[-28,0],[-21,0],[-21,0],[-25,0],[-19,0],[-26,0],[-24,0],[-18,0],[-21,1],[-42,-1],[-25,0],[-49,0],[-17,0],[-42,0],[-29,-1],[-17,1],[-32,1],[-28,-1],[-19,0],[-13,0],[-24,0],[-27,1],[-48,-1],[-16,0],[-35,0],[-48,1],[-42,0],[-19,0],[-87,0],[-17,-1],[-297,-1],[-297,2],[-94,1],[-56,2],[-139,4],[-5,0],[-21,-4],[-62,0],[-35,0],[-32,0],[-30,-1],[-32,0],[-25,0],[-34,1],[-31,0],[-32,0],[-32,0],[-43,0],[-26,0],[-18,0],[-28,0],[-59,0],[-19,0],[-16,-1],[-20,-1]],[[52417,47584],[0,22],[0,76],[0,33],[0,70],[0,33],[-2,159],[2,234],[2,184],[4,282],[-2,251],[-4,288],[0,49],[1,64],[0,64],[0,41],[0,66],[0,46],[0,34],[0,82],[0,42],[0,78],[0,82],[0,107],[0,45],[0,64],[1,45],[0,33],[0,85],[0,156],[0,96],[0,118],[0,50],[0,45],[-1,91],[0,48],[0,45],[0,20],[0,13],[0,66],[0,222],[1,65],[0,55],[-1,60],[0,59],[1,60],[0,65],[-1,129],[0,59],[0,72],[0,112],[1,86],[0,42],[0,67],[0,43],[-1,37],[0,3],[0,349],[0,2],[0,114],[1,82],[0,21],[0,276],[0,491],[0,85],[0,45],[0,52],[0,43],[0,134],[1,48],[-1,42],[0,43],[1,65],[0,83],[0,113],[0,74],[0,45],[0,50],[0,48],[0,38],[0,83],[0,43],[0,60],[0,83],[0,32],[0,55],[0,79],[0,126],[0,123],[0,135],[1,60],[0,43],[1,182],[0,46],[-1,113],[1,59],[0,70],[0,56],[-1,165],[-1,179],[0,63],[1,152],[0,40],[-1,201],[1,35],[0,177],[0,54],[0,68],[-1,67],[1,63],[-1,97],[0,44],[0,60],[0,161],[1,49],[0,59],[0,82],[-1,84],[0,57],[0,96],[-1,88],[0,57],[1,232],[0,55],[0,77],[0,41],[-1,38]],[[30918,58676],[-1,-141],[0,-149],[0,-169],[0,-457],[0,-78],[0,-35],[-1,-283],[0,-69],[-1,-52],[0,-122],[0,-30],[-1,-12],[0,-24],[0,-41],[-1,-69],[0,-109],[1,-463],[0,-179],[0,-45],[0,-43],[-2,-131],[0,-64],[1,-295],[1,-232],[0,-300],[0,-75],[0,-90],[0,-7],[0,-39],[1,-183],[1,-131],[0,-91],[0,-461],[0,-44],[-1,-288],[-2,-132],[-2,-202],[-1,-50],[0,-77],[0,-3],[0,-93],[0,-42],[1,-113],[0,-193],[0,-73],[0,-66],[0,-400],[0,-279],[-1,-177],[1,-480],[1,-56],[-1,-110],[-1,-157],[0,-4],[0,-116],[0,-69],[-2,-394],[-2,-201],[-1,-287],[0,-144],[-1,-318],[0,-459],[-1,-154],[2,-310],[2,-119],[3,-219],[1,-122],[3,-103],[2,-68],[0,-66],[3,-193],[0,-40]],[[30919,47586],[-297,-2],[-132,-3],[-16,-1],[-106,2],[-28,1],[-25,0],[-56,5],[-1,0],[-23,-6],[-21,2],[-16,7],[-21,2],[-147,-7],[-83,-4],[-124,-5],[-45,-2],[-35,-2],[-90,0],[-216,1],[-30,-1],[-19,0],[-21,-1],[-26,0],[-17,0],[-22,-1],[-47,0],[-19,1],[-68,1],[-36,1]],[[29132,47574],[-50,2],[-27,1],[-219,6],[-52,1],[-18,1],[-20,0],[-38,2],[-24,-1],[-17,1],[-27,2],[-20,0],[-17,0],[-34,2],[-26,0],[-47,0],[-20,0],[-18,1],[-34,-2],[-38,0],[-20,1],[-29,-1],[-38,0],[-31,0],[-28,0],[-15,-1],[-45,0],[-25,0],[-22,-1],[-28,-1],[-62,-1],[-36,0],[-30,-2],[-34,0],[-297,-1],[-70,0],[-59,1],[-69,2],[-19,0],[-63,2],[-60,-2],[-55,-1],[-17,1],[-43,0],[-32,0],[-18,1],[-52,0],[-23,0],[-285,6],[-16,0],[-29,0],[-82,1],[-83,0],[-100,1],[-149,-1],[-137,-1],[-11,0],[-41,0],[-235,0],[-21,0],[-42,-1],[-25,0],[-30,0],[-31,-1],[-22,0],[-19,0],[-36,0],[-23,0],[-60,0],[-18,0],[-21,0],[-24,0],[-45,-1],[-35,0],[-24,1],[-28,0],[-35,0],[-71,0],[-32,1],[-64,0],[-216,2],[-21,1],[-57,1],[-36,0],[-18,0],[-19,1],[-73,2],[-44,0],[-24,0],[-19,0],[-25,0],[-19,0],[-71,1],[-3,0],[-18,0],[-29,-1],[-39,2],[-38,0],[-43,0],[-158,2],[-38,0],[-28,0],[-29,1],[-16,-1],[-24,1],[-43,0],[-74,0],[-92,1],[-61,0],[-41,0]],[[23776,47605],[0,195],[-1,41],[0,47],[0,45],[0,32],[0,13],[0,41],[0,48],[-1,94],[-1,56],[1,116],[0,39],[0,52],[1,104],[0,43],[2,167],[0,128],[0,125],[0,4],[0,92],[0,26],[1,38],[0,112],[1,185],[1,158],[0,87],[0,96],[0,75],[0,69],[0,169],[1,73],[0,51],[0,65],[0,112],[0,53],[1,70],[0,45],[0,125],[0,84],[0,83],[1,89],[0,58],[1,49],[0,53],[1,82],[0,130],[1,251],[1,89],[0,135],[0,41],[0,121],[1,58],[0,158],[0,79],[1,237],[0,96],[0,47],[1,71],[0,47],[0,35],[0,98],[0,37],[1,206],[0,55],[0,113],[0,74],[0,129],[1,34],[0,58],[0,63],[0,43],[0,50],[0,51],[0,58],[0,105],[0,53],[0,37],[0,35],[0,52],[0,43],[0,46],[0,33],[0,1],[1,42],[0,44],[0,4],[0,32],[0,49],[0,12],[0,86],[0,67],[1,146],[1,106],[1,123],[0,45],[1,181],[0,37],[0,43],[0,62],[1,94],[0,92],[1,79],[0,44],[0,53],[0,50],[0,80],[1,108],[0,60],[0,37],[0,28],[0,18],[0,42],[0,219],[1,59],[-1,103],[1,105],[-1,115],[0,94],[0,64],[0,39],[0,88],[1,88],[0,68],[0,119],[0,57],[0,51],[1,72],[0,103],[0,77],[1,140],[0,50],[1,268],[1,145],[0,58],[2,203],[0,63],[0,34],[0,99]],[[23776,47605],[-28,0],[-44,1],[-70,0],[-25,-1],[-22,0],[-41,0],[-25,0],[-41,0],[-24,0],[-17,1],[-45,2],[-30,1],[-7,0],[-9,0],[-62,0],[-23,1],[-26,0],[-23,0],[-32,0],[-158,0],[-21,0],[-15,0],[-103,0],[-19,0],[-279,-1],[-295,1],[-145,2],[-167,4],[-43,1],[-66,0],[-65,1],[-40,1],[-75,0],[-18,0],[-33,1],[-69,1],[-21,-1],[-27,1],[-51,2],[-19,0],[-25,0],[-34,0],[-22,-1],[-16,1],[-35,-1],[-45,0],[-30,0],[-27,-1],[-49,0],[-85,-1],[-29,1],[-17,0],[-29,0],[-22,0],[-35,1],[-40,1],[-53,2],[-16,0],[-25,0],[-18,1],[-20,1],[-54,1],[-20,0],[-1,0],[-62,0],[-39,0],[-31,1],[-18,0],[-21,0],[-31,1],[-24,0],[-27,0],[-61,0],[-19,0],[-31,0],[-17,0],[-25,1],[-50,0],[-27,1],[-17,-3],[-102,1],[-30,-1],[-166,-3],[-9,-1],[-21,0],[-25,1],[-26,-1],[-23,0],[-26,-1],[-30,-1],[-22,0],[-35,-1],[-26,-1],[-36,-1],[-20,1],[-44,1],[-64,-1],[-36,0],[-35,-1],[-123,-5],[-29,0],[-39,-1],[-19,-1],[-31,0],[-25,0],[-23,0],[-22,0],[-17,-1],[-34,-1],[-53,0],[-103,-7],[0,-1],[-195,-3],[-45,1],[-28,-1],[-30,-1],[-16,3],[-18,-1],[-31,0],[-62,0],[-22,-1],[-21,1],[-18,0],[-198,1],[-49,-2],[-48,-1],[-29,0],[-61,0],[-17,1],[-22,0],[-34,0],[-17,0],[-22,1],[-43,0],[-33,1],[-23,0],[-25,0],[-38,1],[-21,0],[-40,1],[-52,0],[-20,1],[-29,0],[-99,2],[-116,1],[-82,1],[-167,0],[-208,2],[-19,0],[-180,-1],[-80,0],[-25,-2]],[[16629,47608],[-28,-2],[-17,-1],[-24,0],[-112,2],[-117,-1],[-93,-1],[-80,-2],[-26,0],[-86,0],[-13,0],[-25,0],[-15,0],[-2,0],[-62,0],[-1,0],[-44,0],[-73,0],[-15,0],[-1,0],[-61,0],[-50,0],[-67,-1],[-16,0],[-16,0],[-38,0],[-601,-1],[-95,-3]],[[45237,58674],[0,-109],[0,-162],[0,-124],[0,-50],[-1,-96],[0,-58],[-1,-114],[0,-59],[-1,-60],[0,-75],[0,-232],[0,-141],[0,-89],[0,-98],[0,-43],[0,-33],[0,-51],[0,-38],[0,-53],[0,-42],[0,-61],[0,-44],[0,-35],[0,-40],[0,-73],[0,-133],[0,-68],[0,-113],[0,-218],[-1,-38],[1,-36],[-1,-113],[0,-59],[0,-133],[-1,-56],[1,-53],[0,-96],[-1,-196],[0,-59],[0,-50],[0,-45],[1,-41],[0,-18],[0,-17],[0,-37],[0,-65],[0,-49],[0,-77],[0,-213],[0,-39],[0,-49],[0,-56],[0,-95],[0,-51],[0,-88],[0,-121],[0,-41],[-1,-197],[0,-41],[0,-158],[0,-65],[0,-33],[0,-51],[0,-38],[0,-63],[0,-72],[0,-140],[-1,-80],[0,-10],[0,-39],[0,-39],[1,-63],[0,-40],[0,-147],[-1,-100],[0,-57],[0,-33],[1,-90],[0,-42],[0,-60],[0,-42],[0,-35],[0,-3],[1,-37],[-1,-65],[1,-89],[0,-94],[0,-37],[1,-172],[1,-75],[0,-84],[1,-68],[1,-180],[1,-143],[1,-72],[0,-58],[1,-135],[0,-48],[0,-39],[0,-182],[1,-75],[0,-210],[1,-178],[0,-209],[-1,-94],[0,-113],[0,-44],[0,-48],[0,-102],[0,-46],[0,-57],[0,-92],[0,-38],[0,-108],[0,-182],[0,-44],[0,-80],[0,-44],[1,-113],[0,-47],[0,-83],[0,-55],[0,-36],[0,-54],[0,-33],[0,-56],[0,-78],[0,-57],[0,-46],[0,-118],[0,-57],[0,-34],[0,-34],[0,-21],[0,-59],[0,-37],[0,-4],[0,-46],[0,-57],[0,-71],[0,-40],[0,-40],[0,-51],[0,-34],[0,-37],[0,-42],[0,-46]],[[45242,47605],[-18,0],[-19,0],[-37,0],[-29,0],[-27,0],[-17,0],[-20,0],[-83,0],[-46,0],[-17,0],[-26,0],[-198,1],[-25,0],[-45,0],[-22,0],[-122,0],[-89,0],[-62,0],[-47,1],[-5,0],[-74,0],[-88,1],[-88,0],[-60,0],[-57,0],[-41,0],[-142,-1],[-70,0],[-33,0],[-66,0],[-48,0],[-87,0]],[[43434,47607],[-6,1],[-21,2],[-79,-3],[-19,0],[-41,0],[-33,0],[-25,1],[-16,-1],[-17,1],[-58,0],[-18,0],[-51,0],[-150,0],[-100,0],[-89,-1],[-9,0],[-9,0],[-91,0],[-20,0],[-67,10],[-154,-1],[-23,0],[-92,-1],[-177,-4],[-17,-4],[-18,0],[-31,0],[-32,-1],[-32,0],[-59,0],[-17,0],[-18,0],[-30,0],[-17,-1],[-3,0],[-139,0],[-79,-1],[-23,0],[-197,-1],[-91,-1],[-171,0],[-44,-5],[-29,1],[-37,1],[-64,-1],[-55,1],[-29,1],[-115,0],[-24,-1],[-16,-3],[-35,1],[-59,0],[-42,-1],[-87,1],[-29,0],[-31,0],[-79,0],[-32,0],[-28,0],[-58,1],[-35,0],[-10,-1],[-21,1],[-46,0],[-198,0],[-36,0],[-23,0],[-236,0],[-117,-4],[-35,0],[-36,2],[-30,1],[-107,0],[-10,-1],[-151,1],[-146,0],[-3,0],[-223,1],[-75,3],[-78,0],[-203,1],[-16,0],[-152,0],[-146,-1]],[[38069,47601],[-2,141],[-1,91],[0,126],[0,47],[-1,58],[0,82],[0,37],[0,113],[0,59],[0,115],[0,44],[0,99],[-1,82],[0,18],[0,17],[0,119],[0,52],[0,49],[0,42],[-1,466],[0,462],[-1,462],[-2,464],[3,476],[1,75],[-1,80],[0,35],[0,45],[0,46],[0,94],[0,39],[0,36],[0,47],[0,99],[0,76],[0,53],[0,120],[0,67],[-3,234],[-1,230],[-1,73],[0,161],[0,3],[3,149],[1,23],[0,60],[0,130],[0,146],[-1,104],[1,40],[-1,183],[0,67],[0,82],[0,59],[0,40],[0,161],[-1,54],[1,123],[-1,62],[0,55],[0,105],[0,100],[0,42],[0,46],[0,171],[0,64],[0,62],[0,52],[0,46],[0,56],[0,61],[-1,78],[0,44],[0,284],[1,222],[-7,69],[6,395],[-1,177],[0,49],[0,45],[-1,151],[0,40],[0,67],[1,79],[0,53],[0,49],[0,81],[1,83],[-1,52],[0,169],[0,51],[1,32],[0,88],[0,44],[0,79],[0,153],[0,106],[0,87],[0,75],[0,41],[0,66],[1,120],[0,42],[0,185],[1,60]],[[38069,47601],[-41,0],[-6,0],[-41,2],[-9,0],[-8,1],[-35,0],[-44,-1],[-143,0],[-98,0],[-167,1],[-259,-4],[-40,0],[-145,-2],[-150,-1],[-76,-1],[-36,2],[-12,0],[-28,0],[-71,-3],[-64,0],[-18,0],[-141,-1],[-122,0],[-35,0]],[[36280,47594],[-17,-1],[-58,0],[-45,1],[-23,-1],[-40,1],[-55,-3],[-8,1],[-68,1],[-64,0],[-47,0],[-22,1],[-18,-2],[-21,0],[-195,2],[-29,0],[-181,0],[-26,-1],[-31,0],[-34,1],[-28,0],[-29,0],[-19,0],[-16,0],[-43,0],[-47,0],[-24,0],[-28,0],[-36,1],[-3,0],[-20,0],[-23,1],[-21,-1],[-21,0],[-7,0],[-23,1],[-27,0],[-26,0],[-25,-1],[-17,1],[-26,0],[-26,0],[-32,0],[-17,-1],[-34,0],[-44,0],[-30,1],[-33,0],[-34,0],[-21,1],[-19,0],[-18,0],[-17,0],[-22,1],[-27,0],[-21,0],[-34,1],[-29,0],[-38,0],[-69,1],[-27,0],[-25,-1],[-53,0],[-27,0],[-32,0],[-36,1],[-43,0],[-20,0],[-28,0],[-19,1],[-25,0],[-22,0],[-39,0],[-31,0],[-21,0],[-56,0],[-30,0],[-30,0],[-16,0],[-41,0],[-17,0],[-22,0],[-26,0],[-41,0],[-17,0],[-48,0],[-16,0],[-18,1],[-37,-1],[-16,0],[-33,0],[-17,0],[-26,0],[-24,0],[-21,0],[-27,0],[-42,0],[-24,-1],[-24,0],[-26,1],[-27,-1],[-25,0],[-20,1],[-55,1],[-23,0],[-31,0],[-25,0],[-35,1],[-36,0],[-19,0],[-17,0],[-44,-1],[-27,-1],[-18,0],[-24,0],[-15,0],[-18,0],[-30,0],[-33,0],[-16,0],[-25,0],[-19,0],[-38,0],[-20,0],[-17,0],[-20,0],[-297,-2],[-1,0],[-19,1],[-19,0],[-55,0],[-18,0],[-18,0],[-29,1],[-18,0],[-22,0],[-58,-1],[-41,0],[-24,1],[-32,-1],[-31,0],[-61,0],[-32,0],[-32,0],[-60,-1],[-37,0],[-24,-1],[-32,0],[-29,0],[-27,0],[-25,-1],[-208,-4],[-4,-1],[-179,-6],[-53,0]],[[52417,47584],[-13,1],[-6,0],[-28,2],[-27,0],[-29,0],[-53,0],[-16,0],[-17,1],[-53,-3],[-41,-2],[-17,0],[-15,2],[-24,0],[-17,2],[-16,0],[-39,0],[-140,2],[-43,1],[-43,-1],[-187,2],[-68,1],[-18,3],[-25,0],[-47,-1],[-45,0],[-19,-1],[-121,0],[-24,0],[-59,1],[-44,1],[-59,0],[-69,0],[-52,0],[-82,1],[-26,0],[-134,1],[-39,0],[-32,0]],[[50630,47597],[-96,0],[-39,0],[-39,1],[-56,0],[-64,1],[-123,-1],[-84,1],[-23,0],[-65,0],[-25,0],[-124,1],[-156,-2],[-38,0],[-73,0],[-42,1],[-24,0],[-23,0],[-45,-1],[-52,0],[-20,0],[-47,1],[-17,0],[-39,0],[-45,0],[-69,1],[-60,0],[-50,0],[-51,0],[-16,0],[-52,0],[-21,0],[-58,1],[-41,-1],[-110,1],[-40,-2],[-144,-2],[-123,0],[-47,0],[-24,1],[-47,1],[-31,-2],[-20,0],[-18,0],[-35,-1],[-32,-3],[-5,0],[-72,1],[-36,2],[-79,1],[-6,0],[-26,2],[-21,1],[-22,2],[-36,1],[-30,-2],[-27,-1],[-19,0],[-36,0],[-44,1],[-37,-1],[-23,0],[-56,0],[-28,0],[-50,0],[-67,0],[-84,0],[-23,0],[-46,0],[-16,0],[-51,0],[-33,0],[-16,0],[-2,0],[-17,1],[-88,0],[-28,-1],[-35,0],[-17,0],[-56,1],[-45,0],[-39,0],[-25,0],[-41,-1],[-55,0],[-37,0],[-38,0],[-43,0],[-29,0],[-50,0],[-34,0],[-18,0],[-52,0],[-25,0],[-29,0],[-40,1],[-54,1],[-29,0],[-47,1],[-34,-1],[-17,1],[-24,0],[-56,1],[-25,0],[-42,0],[-36,0],[-26,0],[-31,0],[-29,0],[-34,0],[-21,0],[-73,0],[-33,0],[-19,0],[-28,1],[-32,0],[-33,0],[-28,0],[-40,0],[-42,0],[-43,0],[-44,0],[-27,0],[-18,0],[-20,0],[-20,0],[-17,0],[-18,0],[-21,0],[-16,0],[-31,0]],[[99795,53003],[27,-46],[20,-83],[4,-32],[9,-61],[5,-79],[15,-85],[14,-49],[6,-10],[33,-63],[15,-63],[39,-170],[14,-144],[3,-37],[-6,-171],[-2,-61],[-84,-252],[-5,-135],[2,-83],[-36,-98],[-18,-29],[-63,-104],[-38,-160],[-35,-63],[-59,-209],[-26,-141],[-13,-235],[17,-125],[49,-131],[58,-85],[34,-100],[5,-15],[1,-2],[25,-47],[16,-66],[-5,-60],[0,-7],[-11,-219],[-6,-121],[-2,-88],[-4,-193],[-2,-92],[-33,-171],[-5,-27],[-15,-77],[-41,-149],[-9,-31],[-11,-42],[-5,-16],[-42,-155],[-35,-126],[-37,-111],[-20,-61],[-7,-88],[-11,-133],[-24,-108],[-2,-9],[-5,-39],[-1,-1],[3,-151],[1,-80],[-129,-408],[-19,-173],[-5,-30],[-1,-5],[-10,-51],[-1,-7],[0,-7],[-4,-97],[14,-91],[4,-27],[14,-52],[0,-50],[0,-51],[3,-64],[5,-104],[11,-220],[0,-16],[-2,-33],[-2,-51],[-12,-53],[-4,-20],[-92,-125],[-126,-80],[-90,-39],[-25,-11],[-61,-36],[-30,-18],[-113,-66],[-79,-67],[-4,-4],[-125,-132],[-83,-86],[-49,-51],[-53,-56],[-49,-48],[-58,-57],[-143,-141],[-14,-16],[-97,-115],[-4,-3],[-193,-120],[-54,-81],[-188,-280],[-241,-424],[-10,-19],[-24,-123],[-41,-213],[-19,-94]],[[97289,43299],[-4,3],[-50,39],[-13,14],[-3,4],[-30,76],[-15,15],[-20,9],[-24,2],[-18,6],[-2,1],[-27,27],[-16,44],[-13,31],[-15,40],[-23,29],[-19,5],[-20,-12],[-16,4],[-17,24],[-21,15],[-26,-10],[-2,0],[-13,-27],[-9,-33],[0,-1],[-8,-50],[-8,-29],[-3,-56],[-14,-23],[-22,1],[-13,-30],[2,-36],[-10,-46],[-23,8],[-25,39],[-17,17],[-16,5],[-24,-2],[-34,-10],[-12,-44],[19,-26],[1,-35],[-14,-20],[-15,-3],[-18,1],[-2,0],[-28,2],[-51,5],[-1,0],[-9,10],[-7,6],[-36,54],[-16,17],[-15,14],[-25,16],[-16,24],[-9,34],[-16,33],[-19,11],[-45,5],[-21,30],[-19,12],[-76,1],[-30,27],[-20,-6],[-9,-31],[-2,-52],[25,-47],[7,-44],[-12,-21],[-20,-12],[-16,6],[-19,21],[-31,11],[-5,46],[-13,21],[-17,-1],[-1,0],[-13,-30],[-19,-36],[-15,-15],[-28,-15],[-12,-21],[-15,-14],[-18,3],[-21,3],[-27,-16],[-17,10],[-16,30],[-9,37],[3,36],[16,16],[23,10],[29,27],[-6,46],[-19,22],[-42,20],[-12,24],[0,39],[-8,41],[-13,20],[-21,-7],[-19,-19],[-13,-31],[-16,-21],[-17,-11],[-36,-13],[-18,-9],[-15,-8],[-17,-16],[-22,-29],[-18,-3],[-19,12],[-10,30],[10,33],[20,10],[34,21],[12,30],[0,38],[-12,28],[-18,15],[-30,34],[-4,37],[13,49],[13,22],[14,27],[10,36],[-5,56],[-8,27],[0,1],[-16,30],[-31,29],[-34,26],[-16,13],[-28,36],[-17,31],[-13,30],[-5,44],[-9,36],[-19,10],[-12,-35],[-2,-8],[-10,-14],[-1,-2],[-1,0],[-10,-7],[-10,1],[-10,4],[-63,94],[-24,65],[-1,4],[0,1],[-27,23],[-15,8],[-17,0],[-1,0],[-10,-6],[-4,-5],[-2,-5],[-4,-11],[-5,-12],[-1,-2],[0,-2],[-15,-30],[-11,-14],[-29,-29],[-1,0],[-11,-11],[-30,-83],[-1,0],[-95,24],[-8,2],[-14,33],[-6,12],[-21,50],[-3,11],[-1,2],[-1,2],[-2,10],[-2,21],[-1,5],[-3,40],[0,2],[-2,40],[4,16],[0,1],[20,44],[1,10],[0,15],[-6,17],[-30,91],[-8,17],[-7,10],[-6,7],[-12,9],[-19,0],[-10,-4],[-84,-54],[-18,-18],[-90,45],[-1,0],[-42,-53],[-10,-17],[-2,-14],[0,-15],[11,-66],[-38,-43],[-6,-5],[-61,-3],[-10,7],[-25,31],[-36,18],[-18,-12],[-15,-3],[-1,0],[-18,6],[-9,10],[-6,19],[-1,1],[-9,19],[-11,12],[0,1],[-9,6],[-14,0],[-10,-5],[-9,-12],[-14,-29],[-7,-18],[0,-4],[0,-3],[-14,-38],[-1,-1],[-15,-17],[-10,-5],[-4,1],[-1,0],[-11,5],[-8,13],[0,2],[-8,26],[-2,24],[-1,33],[0,2],[-1,11],[-2,9],[-6,11],[-1,2],[-1,1],[-9,10],[-9,3],[-1,0],[-17,-3],[-3,4],[-68,72],[-7,11],[0,1],[-1,1],[-10,4],[-7,0],[-1,0],[-55,26],[-6,2],[-64,41],[-60,38],[-1,0],[0,1],[-8,3],[-5,1],[-4,-1],[-6,-10],[-2,-10],[-5,-30],[-3,-29],[0,-3],[-5,-31],[-20,-114],[-1,-5],[-11,-50],[-7,-21],[-5,-14],[-15,-18],[0,-1],[-1,1],[-15,13],[-20,30],[-18,16],[-14,17],[-2,2],[-1,1],[-16,26],[-4,0],[-12,1],[-13,-30],[1,-33],[5,-36],[6,-41],[-4,-39],[-53,31],[-136,31],[-23,-5],[-29,-8],[-38,-10],[-63,-16],[-51,-93],[-25,-51],[-3,-6],[-6,-6],[-34,-3],[-6,0],[0,6],[0,1],[-14,27],[-47,90],[-77,142],[-6,10],[-8,10],[-44,46],[-6,2],[-12,-2],[-1,0],[-7,-6],[-10,-10],[-29,-53],[-4,-12],[-3,-12],[-1,-3],[-12,-66],[-7,-24],[-3,-5],[-16,-27],[-7,-5],[-21,-8],[-16,-2],[-8,2],[-19,10],[-12,13],[-17,17],[-18,9],[-22,5],[-10,2],[-11,-4],[-1,0],[-10,-7],[-5,-11],[0,-1],[-1,-2],[-6,-17],[-3,-20],[-4,-27],[-87,-79],[-24,62],[-7,16],[-40,55],[-13,15],[-45,34],[-13,7],[-34,11],[-16,1],[-15,-7],[-10,-11],[-8,-12],[-5,-13],[-1,0],[-2,-41],[-2,-11],[-6,-15],[-14,-18],[-13,-8],[-12,-4],[-33,5],[-35,18],[-10,1],[-15,-6],[-10,-11],[-1,-2],[-6,-12],[-7,-18],[-1,-3],[-1,-4],[-13,-60],[-11,-8],[-9,-3],[-15,0],[-8,3],[-11,19],[-5,17],[0,46],[-4,24],[-3,13],[-9,23],[-3,8],[-12,10],[-9,0],[-45,12],[-48,27],[-7,9],[-13,15],[-16,13],[-22,6],[-103,-30],[-19,-13],[-94,-69],[-6,-6],[-1,-1],[-13,-24],[-13,-60],[-1,-5],[-1,-5],[-1,-23],[6,-16],[0,-1],[16,-39],[-13,-29],[-21,-13],[-20,-12],[-32,-1],[-22,21],[-13,34],[-12,24],[-20,3],[-22,-29],[5,-35],[10,-42],[-4,-31],[-1,-12],[-23,-22],[-16,-9],[-37,-14],[-31,-33],[-4,-19],[-4,-16],[3,-6],[0,-13],[2,-8],[4,-15],[3,-10],[7,-9],[16,-9],[1,-1],[7,-6],[4,-9],[2,-7],[0,-57],[0,-6],[0,-8],[-3,-12],[-3,-5],[-4,-5],[-4,-7],[-5,-7],[-10,-2],[-5,2],[-11,13],[-10,8],[-8,5],[-4,0],[-6,1],[-3,-3],[-2,0],[-54,-87],[-21,-41],[-7,-22],[-6,-33],[-3,-6],[-5,-8],[-15,-9],[-9,0],[-8,4],[-12,10],[-14,18],[-9,47],[0,2],[-64,5],[-8,-7],[-9,-11],[-5,-12],[0,-3],[-2,-8],[-1,-15],[1,-35],[-1,-32],[0,-1],[0,-1],[-5,-15],[-6,-9],[-6,-5],[-10,-3],[-9,5],[-7,4],[-38,30],[-28,14],[-37,7],[-1,11],[-5,40],[-33,88],[-6,13],[-4,9],[-1,1],[-10,6],[-8,3],[-15,-6],[-11,-11],[-2,-3],[-4,-5],[-1,-5],[-2,-11],[-1,-25],[-4,-27],[-2,-11],[-4,-12],[-4,-10],[-10,-15],[-11,-11],[-9,-1],[-16,0],[-8,3],[-21,21],[-4,7],[-5,9],[-2,7],[-1,5],[-2,8],[-93,56],[-37,14],[-32,66],[-19,20],[-40,43],[-7,6],[-11,47],[-29,125],[0,1],[1,6],[3,17],[0,21],[-5,22],[-31,117],[-7,22],[-8,15],[-77,138],[0,1],[-5,9],[-8,11],[-1,2],[-17,13],[-31,19],[-37,36],[0,4],[-68,53],[-1,0],[-65,18],[-6,2],[-41,11],[-24,8],[-22,2],[-23,7],[-28,27],[-9,26],[-2,48],[-118,1],[-43,0],[-71,1],[-54,0],[-264,2],[-36,1],[-25,0],[-19,0],[-16,0],[-75,-1],[-28,0],[-104,1],[-27,0],[-23,0],[-31,0],[-13,-1],[-7,0],[-35,3],[-70,-6],[-18,3],[-46,0],[-38,-3],[-101,2],[-24,2],[-22,0],[-51,0],[-43,0],[-30,2],[-70,-6],[-48,0],[-176,-1]],[[88329,44662],[0,73],[0,161],[1,49],[2,407],[0,186],[-5,82],[0,63],[2,225],[-1,52],[0,59],[0,37],[-1,70],[1,49],[0,33],[0,89],[0,35],[1,203],[2,68],[0,38],[-2,56],[0,57],[-2,158],[0,24],[0,63],[0,2],[1,92],[2,136],[0,83],[0,136],[0,73],[0,44],[0,48],[0,37],[0,40],[0,63],[0,52],[0,52],[0,61],[0,60],[0,63],[-1,62],[0,69],[0,53],[0,46],[0,68],[0,54],[0,104],[-1,73],[0,56],[0,71],[0,116],[0,57],[0,66],[0,42],[-3,34],[-5,231],[-1,38],[1,89],[1,53],[8,36],[-2,37],[1,34],[-2,411],[-1,155],[0,88],[2,67]],[[88329,44662],[-1,-69],[0,-307],[-1,-70],[0,-52],[0,-185],[-5,-243],[0,-93],[2,-224],[0,-5],[0,-91],[0,-54],[-1,-102],[-1,-205],[0,-159],[-1,-42],[0,-37],[-1,-314],[0,-72],[-1,-96],[0,-126],[0,-48],[-1,-110],[0,-88],[-1,-60],[0,-61],[0,-63],[0,-49],[-1,-105],[0,-64],[-1,-57],[0,-38],[0,-1],[0,-68],[0,-39],[-1,-67],[0,-77],[0,-64],[0,-48],[-1,-68],[0,-79],[0,-103],[0,-32],[0,-47],[-1,-62],[0,-143],[-1,-172],[0,-33],[0,-39],[0,-1],[-1,-84],[0,-135],[-1,-80],[0,-54],[0,-38],[0,-60],[-1,-117],[0,-77],[0,-39],[0,-136],[-1,-90],[0,-33],[0,-36],[0,-38],[0,-12],[0,-45],[0,-33],[0,-2],[-1,-34]],[[88306,39087],[-30,0],[-17,0],[-20,1],[-24,0],[-34,-1],[-33,0],[-41,1],[-22,0],[-23,1],[-56,0],[-96,1],[-55,0],[-239,1],[-2,0],[-203,1],[-94,0],[-2,0],[-47,1],[-57,-3],[-96,1],[-36,0],[-263,4],[-24,0],[-37,0],[-30,0],[-41,0],[-28,0],[-20,0],[-21,0],[-37,1],[-16,0],[-52,0],[-19,0],[-16,0],[-33,0],[-36,-1],[-33,0],[-52,1],[-44,-1],[-36,1],[-21,0],[-24,-1],[-2,0],[-16,0],[-23,1],[-44,0],[-48,0],[-37,0],[-24,0],[-60,0],[-36,-1],[-55,1],[-40,-1],[-260,1],[-250,2],[-207,1],[-107,3],[-148,1],[-19,0],[-5,0],[-16,0],[-102,0],[-130,-1],[-22,0],[-81,0],[-60,0],[-21,1],[-21,1],[-48,1],[-47,0],[-34,0],[-27,0],[-161,2],[-45,0],[-29,1],[-27,0],[-65,1],[-26,1],[-33,0],[-21,0],[-52,0],[-81,1],[-20,0],[-33,1],[-27,0],[-17,0],[-38,0],[-18,0],[-89,1],[-61,0],[-38,0],[-18,0],[-39,1],[-42,-1],[-15,0],[-32,0],[-39,0],[-46,0],[-55,1],[-28,0],[-17,1],[-82,0],[-21,0],[-25,1],[-25,0],[-43,0],[-32,0],[-21,0],[-1,0],[-22,-1],[-85,2],[-29,0],[-18,0],[-22,1],[-45,0],[-24,1],[-16,0],[-37,0],[-54,1],[-129,0],[-109,-1],[-78,0],[-45,0],[-11,0],[-4,0],[-79,0],[-54,0],[-51,-1],[-8,0],[-104,1],[-15,5],[-19,1],[-33,-1],[-38,1],[-45,1],[-57,-1],[-34,1],[-35,0],[-21,0],[-138,0],[-160,1]],[[81125,39127],[1,70],[0,49],[0,66],[0,68],[-1,56],[0,169],[1,35],[-1,37],[0,36],[0,20],[0,36],[0,70],[0,56],[0,74],[-1,38],[1,72],[0,78],[0,55],[0,42],[0,36],[0,44],[0,46],[0,70],[0,61],[1,42],[0,62],[0,68],[0,159],[0,39],[1,62],[-1,42],[0,86],[1,111],[0,68],[0,40],[0,6],[0,28],[0,37],[0,43],[1,43],[-1,35],[1,92],[0,70],[0,47],[-1,46],[1,45],[0,35],[1,41],[0,34],[0,40],[0,52],[0,147],[0,80],[0,65],[0,57],[0,65],[0,50],[1,35],[-1,38],[0,55],[1,37],[0,39],[0,76],[0,37],[0,50],[0,32],[0,35],[0,51],[1,42],[-1,50],[0,56],[0,80],[1,37],[0,38],[0,38],[0,38],[1,432],[0,33],[1,147],[-1,55],[1,172],[1,125],[0,53],[0,36],[-1,54],[0,97],[0,43],[-1,52],[0,100],[0,114],[0,154],[0,96],[0,213],[0,125],[0,273],[0,228],[-1,193],[0,63],[0,4],[0,34],[1,104],[0,52],[0,54],[-2,37],[0,346],[1,699]],[[16629,47608],[2,-231],[-1,-114],[0,-116],[0,-117],[-1,-115],[0,-117],[1,-117],[-1,-113],[0,-5],[-2,-112],[0,-57],[-1,-174],[4,-468],[0,-83],[-1,-150],[1,-140],[0,-93],[0,-56],[-2,-176],[0,-39],[0,-46],[0,-44],[0,-51],[0,-52],[0,-43],[0,-60],[-1,-64],[0,-68],[0,-37],[0,-44],[0,-44],[0,-68],[1,-49],[0,-53],[4,-31],[-4,-31],[-1,-32],[0,-63],[0,-36],[0,-50],[0,-68],[0,-33],[0,-68],[-1,-122],[-1,-346],[0,-81],[0,-36],[1,-34],[-1,-34],[-1,-43],[-2,-33],[0,-43],[0,-37],[1,-62],[-1,-57],[1,-50],[0,-50],[0,-43],[-2,-35],[1,-48],[2,-107],[-1,-45],[-1,-94],[-1,-110],[1,-44],[0,-6],[0,-38],[0,-32],[0,-55],[-1,-54],[0,-53],[0,-86],[-1,-429],[0,-34],[0,-58],[0,-79],[1,-32],[-1,-61],[-1,-60],[1,-75],[0,-37],[0,-47],[0,-33],[-1,-32],[1,-45],[0,-43],[0,-56],[0,-48],[0,-119],[-1,-33],[0,-32],[0,-4],[0,-47],[0,-37],[0,-49],[0,-60],[0,-35],[0,-81],[0,-49],[0,-61],[-1,-44],[0,-69],[0,-51],[1,-73],[0,-32],[0,-56],[0,-128],[0,-55],[-1,-59],[1,-67],[0,-54],[-1,-53],[0,-32],[0,-58],[-1,-40],[0,-52],[-1,-32],[2,-3],[12,-15],[26,0],[8,1],[14,1],[21,0],[5,0],[14,0],[17,0],[27,0],[23,0],[29,-1],[23,-1],[27,-1],[26,1],[27,1],[29,0],[20,0],[24,0],[37,0],[67,-1],[18,0],[101,-1],[17,2],[93,0],[176,0],[45,0],[-2,-190],[-1,-65],[0,-36],[0,-48],[0,-35],[1,-50],[-1,-69],[1,-43],[-1,-33],[1,-63],[0,-36],[-1,-52],[0,-43],[0,-11],[0,-33],[0,-51],[0,-56],[0,-33],[-1,-37],[0,-34],[1,-48],[0,-32],[0,-65],[0,-44],[-1,-41],[0,-37],[-1,-37],[1,-57],[0,-85],[0,-65],[0,-59],[0,-104],[0,-462],[1,-172],[0,-59],[0,-53],[-1,-179],[0,-33],[0,-98],[0,-100],[1,-232]],[[17541,36174],[-96,1],[-43,0],[-27,1],[-17,-1],[-21,1],[-20,0],[-16,0],[-15,0],[-22,-1],[-20,1],[-28,0],[-22,0],[-17,0],[-28,0],[-19,0],[-30,0],[-13,0],[-3,0],[-33,0],[-34,0],[-23,0],[-40,0],[-16,0],[-20,0],[-19,0],[-21,0],[-15,0],[-22,0],[-33,0],[-16,0],[-39,-1],[-20,0],[-18,0],[-17,0],[-18,0],[-21,0],[-26,1],[-19,0],[-18,0],[-16,0],[-18,0],[-19,0],[-30,0],[-18,0],[-71,2],[-65,-1],[-21,-1],[-126,-3],[-33,0],[-8,0],[-52,0],[-18,0],[-29,0],[-16,1],[-21,0],[-18,0],[-26,0],[-23,0],[-33,0],[-24,0],[-24,0],[-26,0],[-28,0],[-32,0],[-21,0],[-25,0],[-20,0],[-25,3],[-209,-2],[-16,0],[-20,2],[-24,-1],[-28,1],[-21,-1],[-28,1],[-33,-1],[-17,1],[-42,0],[-80,-2],[-58,-3],[-239,5],[-109,2],[-2,0],[-71,2],[-73,3],[-53,1],[-24,0],[-24,0],[-23,-1],[-215,-3],[-16,1],[-17,-1],[-18,1],[-17,0],[-16,0],[-16,0],[-18,0],[-19,0],[-18,0],[-20,0],[-23,0],[-18,0],[-32,0],[-22,0],[-17,2],[-25,0],[-32,-1],[-18,1],[-68,1],[-55,1],[-17,-1],[-22,0],[-26,0],[-35,-2],[-41,3],[-17,0],[-32,0],[-17,3],[-22,5],[-17,-10],[-43,0],[-26,0],[-19,0],[-18,0],[-19,0],[-17,0],[-19,1],[-38,0],[-40,1],[-26,0],[-57,1],[-28,-1],[-27,1],[-17,0],[-24,0],[-21,-1],[-21,1],[-17,0],[-19,0],[-17,0],[-18,0],[-19,0],[-16,0],[-22,1],[-24,1],[-21,0],[-23,0],[-45,1],[-6,0],[-31,-1],[-16,0],[-37,0],[-17,0],[-22,0],[-22,1],[-16,-1],[-20,1],[-19,0],[-25,0],[-20,0],[-31,0],[-38,0],[-20,0],[-16,1],[-16,0],[-19,0],[-34,-1],[-17,0],[-23,0],[-20,0],[-19,0],[-23,0],[-19,0],[-19,0],[-17,0],[-29,0],[-19,0],[-27,0],[-19,0],[-40,0],[-25,0],[-21,-1],[-17,0],[-19,0],[-20,0],[-19,2],[-51,0],[-82,-4],[-61,2],[-16,0],[-17,0],[-17,-5],[-10,-29],[-18,-8],[-17,16],[-10,25],[-24,3],[-18,3],[-17,-5],[-23,-3],[-23,4],[-17,-1],[-19,1],[-20,2],[-18,1],[-18,-2],[-4,0],[-13,1],[-16,-2],[-17,-1],[-93,1],[-10,0],[-81,1],[-4,0],[-56,0],[-10,0],[-36,0],[-22,0],[-88,0],[-148,2],[-160,-2],[-28,-1],[-35,0],[-29,0],[-40,-1],[-24,0],[-25,0],[-25,0],[-42,-1],[-46,0],[-25,0],[-34,1],[-19,1],[-52,0],[-38,1],[-42,1],[-33,0],[-22,0],[-16,1],[-17,1],[-21,3],[-16,1],[-18,1],[-85,-1],[-77,1],[-61,1],[-8,0],[-26,2]],[[9874,36202],[45,172],[8,73],[-14,178],[-10,114],[-7,39],[-18,102],[-20,114],[-25,156],[-10,54],[-8,15],[-49,99],[-60,60],[-126,50],[-90,-29],[-85,-128],[-7,-55],[-10,-127],[-9,-82],[-11,-68],[-4,-64],[-9,-52],[-10,-58],[-1,-6],[-8,-43],[-49,-308],[-4,-29],[-4,-25],[-3,-11],[-98,89],[-68,36],[-26,8],[-44,24],[-167,52],[-33,0],[-64,41],[-36,23],[-17,11],[-42,36],[-76,72],[-31,36],[-25,39],[-95,145],[-36,88],[-39,124],[-16,96],[-8,52],[-15,108],[5,84],[-3,88],[2,19],[1,17],[10,70],[3,19],[54,224],[52,126],[3,6],[6,9],[36,66],[31,88],[26,117],[-2,93],[-1,67],[-18,80],[-20,55],[-3,8],[-9,25],[-17,27],[-23,35],[-28,35],[-6,5],[-35,30],[-24,12],[-6,-2],[-38,26],[-68,44],[-73,76],[-44,68],[-23,48],[-50,122],[-3,6],[-1,5],[-19,61],[0,2],[-1,1],[-45,208],[-1,7],[-1,6],[-7,74],[0,128],[10,84],[47,144],[70,145],[96,148],[34,60],[26,56],[0,8],[24,83],[5,17],[31,108],[10,96],[0,156],[-23,168],[-6,24],[-15,61],[-37,84],[-18,27],[-68,80],[-42,48],[-78,112],[-37,68],[-21,48],[-16,42],[-36,90],[0,8],[-8,52],[-7,68],[-12,43],[9,101],[8,73],[23,108],[18,52],[42,68],[28,44],[98,73],[6,0],[17,0],[23,4],[1,0],[16,0],[17,0],[18,-3],[16,-4],[17,-6],[19,-7],[17,-5],[16,-6],[18,-8],[18,-8],[16,-7],[16,-5],[16,-3],[20,-2],[15,0],[17,1],[16,3],[19,5],[16,6],[19,9],[20,12],[22,17],[18,16],[15,15],[18,21],[15,24],[14,26],[12,28],[11,30],[3,38],[2,34],[0,33],[-2,42],[-3,33],[-5,33],[-6,32],[-10,39],[-9,30],[-11,29],[-12,28],[-13,27],[-18,31],[-16,23],[-17,21],[-16,21],[-14,17],[-23,25],[-16,16],[-18,18],[-19,16],[-15,12],[-23,18],[-19,12],[-1,1],[-20,12],[-9,5],[-8,4],[-15,8],[-20,11],[-24,16],[-21,15],[-17,16],[-17,18],[-15,21],[-13,23],[-12,25],[-10,27],[-8,29],[-6,29],[-6,37],[-5,36],[-3,36],[-1,36],[0,36],[2,37],[3,36],[5,35],[6,36],[9,34],[12,41],[11,32],[14,30],[12,25],[14,23],[10,12],[6,7],[17,15],[3,2],[14,10],[12,8],[7,5],[16,8],[22,8],[16,7],[20,11],[24,17],[16,12],[18,15],[17,18],[20,25],[19,28],[13,24],[16,32],[11,28],[10,28],[8,30],[8,30],[5,32],[9,36],[5,42],[0,41],[-2,71],[-3,39],[-2,37],[-1,29],[0,12],[-1,40],[0,5],[1,33],[0,9],[2,30],[6,48],[7,38],[14,11],[-7,29],[11,24],[12,22],[8,27],[12,33],[11,25],[12,24],[16,28],[21,32],[17,28],[15,29],[15,31],[11,27],[10,26],[12,33],[8,28],[4,33],[2,36],[0,14],[0,22],[-2,36],[-3,35],[-5,35],[-7,38],[-13,38],[-13,38],[-15,36],[-12,25],[-15,32],[-12,22],[-13,22],[-12,20],[-13,20],[-14,19],[-14,19],[-15,17],[-15,17],[-22,22],[-21,16],[-17,9],[-16,10],[-17,8],[-40,13],[-19,8],[-30,10],[-27,12],[-12,4],[-4,1],[-17,9],[-16,8],[-19,11],[-27,19],[-2,1],[-18,15],[-5,4],[-34,31],[-22,27],[-19,27],[-28,44],[-19,37],[-4,12],[-21,50],[-8,18],[-10,33],[-18,109],[-4,44],[-3,51],[0,48],[3,37],[10,46],[7,40],[6,24],[3,14],[13,53],[5,30],[2,21],[2,26],[1,9],[-1,33],[0,1],[-3,50],[-6,49],[-7,37],[-9,46],[-19,66],[-4,13],[-7,20],[-18,43],[-32,64],[-15,25],[-17,24],[-16,19],[-7,9],[-32,38],[-34,26],[-29,21],[-11,8],[-19,16],[-77,65],[-21,20],[-37,38],[-5,7],[-19,22],[-36,64],[-2,4]],[[73970,47556],[1,-115],[0,-51],[1,-51],[0,-38],[0,-34],[0,-49],[1,-53],[0,-47],[0,-41],[1,-63],[0,-77],[1,-118],[0,-68],[0,-49],[0,-77],[0,-47],[-3,-62],[0,-35],[0,-108],[0,-52],[0,-68],[1,-154],[2,-77],[2,-103],[1,-57],[1,-163],[-11,-447],[-1,-168],[0,-1],[-4,-335],[-4,-371],[3,-96],[-1,-37],[-1,-35],[-1,-17],[-2,-82],[0,-8],[0,-37],[-1,-73],[-2,-65],[0,-51],[-2,-57],[0,-61],[-1,-56],[-1,-38],[-1,-39],[-1,-59],[-1,-37],[-2,-74],[-1,-105],[-3,-115],[-1,-44],[-1,-68],[0,-41],[-2,-40],[0,-41],[0,-33],[-1,-60],[0,-54],[-1,-44],[0,-47],[0,-51],[0,-11],[0,-44],[-1,-60],[0,-55],[-1,-62],[0,-51],[0,-36],[-1,-48],[-1,-109],[-1,-68],[0,-42],[-2,-58],[-1,-77],[0,-18],[0,-20],[0,-34],[1,-42],[0,-33],[1,-48],[1,-49],[0,-105],[1,-33],[0,-35],[1,-50],[1,-40],[0,-33],[0,-39],[1,-91],[0,-49],[3,-238],[1,-69],[1,-35],[1,-77],[1,-41],[1,-46],[0,-67],[1,-61],[0,-55],[0,-111],[1,-100],[0,-41],[0,-42],[0,-93],[-1,-39],[1,-37],[1,-63],[1,-76],[0,-67],[0,-59],[0,-127],[0,-64],[0,-34],[0,-40],[-1,-42],[0,-72],[1,-50],[-4,-53],[1,-107],[14,-74],[29,2],[50,-1],[0,-77],[-5,-451],[0,-69],[0,-79],[-2,-80],[-1,-47],[-1,-100],[-1,-55],[0,-32],[0,-33],[-1,-52],[-1,-56],[0,-42],[-1,-60],[-1,-72],[-1,-56],[-2,-108],[-1,-100],[-1,-46],[0,-43],[-1,-33],[-1,-70],[-1,-47],[-1,-66],[-1,-43],[0,-46],[-1,-43],[0,-52],[-1,-38],[0,-50],[-1,-36],[0,-33],[0,-37],[-1,-56],[0,-38],[-1,-36],[0,-35],[-1,-56],[0,-35],[-1,-54],[0,-43],[0,-33],[0,-35],[-1,-32],[0,-40],[-1,-43],[0,-59]],[[74003,36346],[-18,0],[-18,1],[-25,0],[-24,0],[-26,0],[-21,0],[-20,0],[-27,-1],[-28,-1],[-22,1],[-67,-1],[-298,-3],[-113,-5],[-18,0],[-177,2],[-19,0],[-42,0],[-44,-1],[-25,-1],[-16,0],[-18,-1],[-17,0],[-20,1],[-20,0],[-19,0],[-28,-1],[-17,0],[-223,-4],[-28,0],[-25,-1],[-38,-1],[-22,0],[-75,0],[-28,-2],[-3,0],[-169,-5]],[[72205,36323],[-72,1],[-86,-1],[-16,0],[-42,0],[-46,0],[-20,0],[-28,-1],[-19,0],[-84,-1],[-109,0],[-17,-1],[-19,1],[-30,1],[-19,2],[-16,-4],[-24,-1],[-23,1],[-18,-1],[-27,0],[-20,-1],[-25,0],[-52,0],[-20,0],[-20,0],[-30,0],[-40,0],[-18,-1],[-22,0],[-24,0],[-20,0],[-41,-1],[-21,0],[-23,1],[-52,0],[-27,-1],[-64,0],[-19,-1],[-76,0],[-24,0],[-19,0],[-46,1],[-21,3],[-25,-3],[-22,-3],[-19,1],[-37,1],[-21,-1],[-48,0],[-17,-1],[-50,0],[-21,-1],[-27,0],[-21,0],[-49,0],[-35,0],[-99,-1],[-16,0],[-45,-2],[-16,0],[-38,0],[-26,0],[-12,0],[-8,0],[-39,0],[-93,-2],[-128,0],[-157,0],[-65,0],[-185,-1],[-38,0],[-109,-1],[-114,1],[-22,0],[-16,1],[-92,-2],[-92,-1],[-223,-1],[-164,-2],[-22,-1],[-210,0],[-18,0],[-16,0],[-28,0],[-296,-4],[-69,0],[-55,4],[-29,-1],[-67,-1],[-55,0],[-23,0],[-49,-1],[-39,1],[-56,0],[-61,-1],[-52,0],[-39,-1],[-33,0],[-50,0],[-111,0],[-65,-1],[-23,0],[-18,0],[-32,0],[-30,0],[-29,0],[-54,-1],[-22,0],[-34,-1],[-29,0],[-29,0],[-38,0]],[[66796,36293],[0,118],[0,56],[0,35],[0,94],[-1,119],[0,40],[0,113],[1,36],[-1,83],[0,136],[0,98],[0,94],[0,39],[-1,48],[0,56],[0,36],[0,58],[0,33],[0,52],[0,45],[0,59],[0,48],[0,42],[0,8],[0,94],[-1,75],[0,111],[0,41],[0,37],[0,56],[0,39],[0,65],[3,40],[-3,34],[0,57],[0,147],[0,84],[0,134],[0,145],[-1,33],[0,52],[-1,50],[1,95],[-26,4],[0,35],[0,157],[-1,37],[0,69],[0,119],[-1,45],[0,32],[0,78],[0,47],[1,51],[-2,35],[1,42],[0,37],[3,32],[-3,41],[-1,34],[0,39],[0,151],[-1,55],[0,38],[1,97],[-1,56],[-2,53],[-1,37],[0,41],[-1,50],[0,58],[0,52],[-1,73],[-1,95],[0,34],[0,40],[0,61],[0,59],[0,85],[0,257],[0,147],[1,52],[1,104],[0,76],[0,44],[1,51],[0,83],[0,64],[0,47],[1,19],[1,21],[-1,240],[-2,337],[0,52],[0,66],[0,110],[0,59],[1,70],[0,41],[0,39],[0,40],[0,44],[0,34],[0,12],[0,22],[1,35],[0,30],[0,49],[0,72],[0,45],[0,53],[1,74],[1,41],[0,12],[1,27],[0,37],[0,40],[1,49],[0,52],[0,60],[1,47],[1,108],[0,42],[0,48],[1,67],[1,111],[1,57],[0,54],[1,65],[0,58],[0,52],[0,41],[1,52],[0,66],[1,41],[0,34],[1,70],[-1,162],[1,80],[1,41],[1,41],[1,72],[0,34],[0,46],[0,44],[1,117],[0,58],[0,40],[0,83],[0,43],[0,35],[1,45],[0,39],[0,38],[0,67],[0,37],[1,178],[0,73],[1,175],[2,248],[0,34],[0,32],[0,32],[1,63],[0,69],[0,51],[1,53],[1,81],[0,35],[1,51],[0,48],[0,24],[0,17],[0,83]],[[43434,47607],[-3,-82],[-1,-243],[0,-52],[1,-33],[2,-37],[1,-40],[1,-39],[2,-43],[0,-83],[0,-33],[0,-40],[1,-66],[0,-44],[0,-33],[0,-69],[0,-41],[-1,-111],[0,-33],[1,-44],[1,-42],[1,-72],[0,-49],[0,-52],[0,-199],[2,-35],[0,-11],[-1,-146],[1,-33],[0,-109],[0,-4],[0,-33],[0,-149],[1,-193],[1,-244],[1,-59],[-1,-110],[0,-61],[0,-51],[1,-34],[0,-7],[0,-36],[1,-146],[1,-233],[1,-36],[0,-34],[0,-33],[0,-63],[1,-38],[0,-51],[0,-53],[-2,-28],[-1,-19],[1,-116],[0,-103],[1,-170],[0,-56],[0,-140],[1,-351],[2,-73],[-2,-53],[1,-222],[1,-222],[0,-464],[0,-65],[0,-285],[0,-147],[-1,-256],[0,-208],[1,-217],[0,-33],[1,-215],[0,-65],[1,-158],[0,-121],[-2,-116],[0,-2],[1,-39],[0,-52],[1,-37],[0,-48],[0,-41],[0,-38],[0,-38],[0,-34],[0,-34],[0,-104],[0,-4],[1,-78],[0,-35],[0,-48],[0,-63],[0,-40],[0,-33],[0,-34],[-1,-54],[0,-36],[0,-37],[31,0],[52,1],[47,-1],[19,0],[42,0],[17,0],[22,0],[79,-1],[55,-24],[0,-56],[0,-61],[1,-43],[0,-80],[0,-34],[0,-48],[0,-84],[0,-36],[1,-46],[0,-76],[0,-83],[0,-33],[0,-34],[0,-1],[0,-39],[0,-44],[0,-39],[0,-71],[0,-60],[0,-34],[0,-52],[0,-59],[0,-71],[0,-115],[0,-86],[0,-43],[0,-66],[0,-81],[-1,-104],[1,-34],[-1,-83],[0,-86],[1,-74],[0,-1],[0,-51],[0,-44],[0,-14],[0,-54],[0,-234],[0,-219],[-2,-96],[3,-83],[-2,-55]],[[43818,36361],[-90,-16],[-39,-9],[-241,-39],[-31,0],[-115,-26],[-52,-9],[-175,-27],[-24,-4],[-111,-20],[-171,-27],[-50,-12],[-16,-4],[-26,-6],[-31,-3],[-122,-17],[-19,0],[-89,-17],[-20,-4],[-124,-27],[-94,-15],[-93,1],[-53,0],[-309,2],[-133,2],[-299,0],[-204,-1],[-92,0],[-126,1],[-48,0],[-97,1],[-101,0],[-32,-4],[-50,0],[-111,1],[-28,0],[-19,0],[-118,0],[-17,0],[-116,0],[-13,-1],[-4,0],[-20,0],[-296,0],[-104,0],[-17,-1],[-316,0],[-250,0],[-192,0],[-225,1],[-27,-3],[-30,1],[-76,1],[-122,1],[-99,1],[-191,2],[-33,1],[-176,2],[-42,0],[-134,2],[-17,0],[-39,0],[-4,0],[-37,1],[-22,0],[-40,3],[-19,-2],[-55,1],[-18,1],[-18,0],[-45,-2],[-68,2],[-7,0],[-48,-1],[-25,1],[-148,0],[-119,1],[-42,3],[-16,0],[-101,0]],[[36877,36097],[0,77],[0,76],[2,43],[0,41],[1,137],[0,63],[0,22],[0,13],[0,98],[0,707],[0,156],[0,182],[0,239],[0,82],[1,69],[0,311],[0,347],[0,149],[-2,301],[-118,2],[-17,-1],[-19,1],[-23,0],[-16,1],[-164,3],[-154,3],[-54,1],[-29,1],[0,117],[1,189],[0,129],[0,12],[0,151],[0,91],[-1,93],[3,32],[0,47],[0,52],[0,58],[-1,51],[0,41],[0,82],[0,55],[0,67],[0,67],[1,52],[-2,114],[0,74],[1,43],[0,46],[0,47],[0,119],[0,41],[-1,63],[0,65],[-1,83],[0,43],[-1,127],[-1,44],[0,34],[-1,76],[0,60],[-1,55],[0,52],[-1,65],[-1,48],[0,39],[-1,58],[0,2],[0,34],[0,113],[0,67],[0,169],[0,48],[0,32],[0,35],[-1,185],[0,47],[0,66],[0,75],[0,73],[-1,98],[0,88],[0,59],[0,93],[0,48],[0,39],[0,37],[-1,36],[0,120],[0,51],[0,52],[0,81],[0,61],[0,64],[-1,41],[1,36],[-1,44],[0,92],[0,49],[0,56],[1,140],[1,51],[-2,38],[0,92],[0,157],[1,45],[0,3],[0,93],[0,15],[0,461],[1,463],[1,106],[0,50],[0,304],[0,92],[1,373],[0,2],[0,278],[1,180],[0,127],[0,32],[0,86],[0,83],[1,129]],[[23776,47605],[0,-45],[0,-66],[0,-59],[0,-50],[0,-78],[0,-55],[0,-35],[0,-60],[0,-37],[0,-44],[0,-76],[0,-56],[0,-58],[-1,-34],[1,-90],[-1,-42],[0,-33],[0,-52],[0,-83],[0,-37],[0,-38],[0,-36],[-1,-85],[1,-69],[-1,-36],[1,-56],[-1,-56],[0,-53],[0,-77],[-1,-82],[1,-64],[0,-47],[0,-52],[0,-152],[-1,-73],[1,-38],[-1,-60],[0,-63],[0,-37],[-1,-37],[0,-134],[-1,-98],[0,-69],[-1,-72],[0,-58],[-1,-33],[0,-56],[0,-45],[0,-105],[0,-48],[0,-245],[0,-55],[0,-49],[0,-118],[0,-65],[0,-76],[0,-97],[1,-68],[0,-79],[0,-83],[0,-44],[1,-38],[-1,-66],[0,-68],[0,-45],[0,-77],[0,-72],[1,-84],[0,-55],[0,-45],[-1,-40],[0,-33],[-1,-54],[1,-61],[0,-43],[1,-35],[0,-37],[0,-80],[0,-56],[0,-151],[0,-39],[0,-43],[0,-45],[0,-62],[0,-111],[1,-64],[0,-44],[0,-34],[0,-42],[0,-32],[0,-34],[1,-41],[0,-66],[0,-37],[1,-80],[0,-49],[1,-70],[0,-67],[1,-57],[0,-51],[1,-68],[1,-78],[1,-62],[0,-37],[0,-46],[0,-152],[-1,-66],[0,-60],[-1,-71],[0,-38],[0,-62],[0,-93],[0,-72],[0,-79],[1,-92],[0,-39],[0,-80],[0,-31],[0,-11],[1,-108],[0,-38],[1,-79],[1,-52],[0,-55],[0,-70],[0,-51],[0,-10],[0,-50],[0,-87],[0,-107],[0,-124],[0,-77],[43,-9],[17,0],[32,0],[87,1],[20,-1],[47,1],[52,1],[42,0],[19,0],[20,0],[21,0],[27,1],[18,0],[3,-1],[13,-4],[8,0],[8,-1],[23,6],[19,0],[27,0],[22,0],[34,1],[44,-1],[37,1],[27,0],[16,-1],[30,0],[15,0],[26,0],[-1,-46],[0,-39],[0,-56],[0,-42],[0,-59],[0,-34],[0,-43],[0,-93],[0,-74],[0,-108],[0,-45],[-1,-43],[0,-39],[0,-63],[0,-48],[0,-89],[-1,-47],[0,-35],[0,-51],[0,-44],[0,-38],[0,-121],[0,-63],[0,-55],[1,-89],[0,-35],[0,-46],[0,-46],[0,-75],[0,-55],[1,-48],[0,-33],[0,-48],[0,-51],[1,-78],[0,-37],[0,-34],[0,-36],[0,-35],[0,-45],[0,-57],[0,-38],[0,-58],[0,-36],[0,-33],[0,-40],[0,-41],[0,-45],[0,-42],[1,-44],[-1,-33],[0,-33],[0,-50],[0,-40],[0,-59],[0,-36],[0,-34],[0,-51],[0,-54],[0,-128]],[[24578,36130],[-297,3],[-2,0],[-295,4],[-77,2],[-40,0],[-47,0],[-101,0],[-25,0],[-27,0],[-33,0],[-28,1],[-48,0],[-24,1],[-20,0],[-28,0],[-96,0],[-30,0],[-25,1],[-40,0],[-64,0],[-68,1],[-28,1],[-43,0],[-42,1],[-113,1],[-76,1],[-37,-1]],[[22824,36146],[-145,1],[-48,1],[-53,0],[-51,0],[-32,1],[-29,-1],[-60,1],[-53,0],[-18,0],[-22,0],[-17,0],[-44,1],[-21,0],[-58,0],[-54,1],[-19,0],[-27,0],[-40,1],[-52,1],[-47,0],[-17,7],[-18,0],[-21,-6],[-18,0],[-14,1],[-7,0],[-18,1],[-35,-1],[-31,0],[-70,1],[-47,0],[-92,1],[-123,2],[-60,2],[-22,0],[-24,0],[-19,1],[-20,-1],[-38,-1],[-35,1],[-15,0],[-16,0],[-19,1],[-24,0],[-18,-1],[-24,1],[-26,-1],[-22,1],[-22,-1],[-27,1],[-16,-1],[-35,2],[-23,-1],[-64,0],[-28,0],[-18,0],[-16,0],[-19,-1],[-16,0],[-23,0],[-22,0],[-18,1],[-20,0],[-20,1],[-15,0],[-21,0],[-15,1],[-36,0],[-21,0],[-20,1],[-26,-1],[-28,0],[-74,0],[-305,0],[-18,0],[-33,-3],[-19,3],[-150,0],[-51,1],[-71,0],[-29,1],[-79,-1],[-45,0],[-90,0],[-80,-2],[-63,2],[-16,1],[-20,0],[-27,1],[-23,0],[-40,0],[-25,0],[-51,0],[-31,1],[-19,-1],[-17,0],[-19,0],[-17,0],[-30,0],[-24,-1],[-88,1],[-162,0],[-47,0],[-260,1],[-8,0],[-29,0],[-147,3],[-38,1],[-42,0],[-20,1],[-17,0],[-17,1],[-20,-1],[-34,-1],[-17,0],[-25,1],[-26,-1],[-1,0],[-57,0],[-35,0],[-40,0],[-29,-1],[-27,0],[-25,1],[-66,0],[-36,1],[-35,0],[-30,0],[-16,0],[-16,1],[-19,1],[-16,-1],[-20,0]],[[29132,47574],[0,-47],[0,-39],[0,-88],[0,-30],[1,-42],[0,-99],[0,-40],[1,-52],[0,-35],[2,-93],[1,-104],[1,-45],[1,-41],[1,-71],[0,-40],[0,-33],[1,-60],[0,-32],[0,-33],[0,-79],[0,-58],[0,-32],[0,-53],[0,-51],[0,-90],[1,-48],[-1,-35],[0,-60],[0,-47],[0,-50],[0,-33],[0,-84],[1,-39],[0,-39],[-1,-70],[0,-4],[1,-67],[-1,-50],[0,-54],[1,-41],[1,-32],[0,-39],[1,-65],[0,-39],[0,-33],[0,-107],[0,-54],[-1,-110],[1,-35],[-1,-69],[0,-61],[1,-72],[0,-64],[0,-38],[0,-35],[1,-49],[0,-39],[0,-33],[0,-38],[0,-88],[1,-50],[-1,-88],[-1,-61],[0,-64],[0,-100],[1,-80],[0,-63],[0,-58],[-1,-55],[0,-51],[1,-35],[-1,-84],[0,-45],[0,-85],[0,-42],[-3,-304],[0,-43],[-2,-120],[1,-273],[0,-189],[1,-194],[1,-287],[0,-36],[0,-53],[3,-348],[0,-1],[-1,-41],[0,-50],[0,-56],[0,-65],[-1,-53],[0,-39],[-1,-77],[1,-37],[-1,-42],[1,-46],[0,-32],[0,-48],[0,-45],[0,-121],[0,-70],[-1,-56],[0,-43],[-1,-79],[1,-69],[-1,-51],[0,-38],[1,-46],[-1,-35],[0,-79],[1,-93],[0,-62],[0,-43],[0,-40],[0,-33],[-1,-52],[0,-54],[1,-46],[0,-65],[-1,-39],[1,-133],[0,-38],[0,-23],[0,-9],[0,-69],[1,-111],[14,-80],[23,0],[64,0],[32,0],[38,-1],[23,0],[30,1],[43,-1],[17,0],[28,0],[45,0],[22,0],[22,0],[35,-1],[19,1],[22,3],[61,0],[18,0],[27,-1],[20,0],[42,0],[18,-1],[4,-32],[0,-62],[0,-59],[0,-118],[0,-62],[0,-55],[0,-47],[0,-35],[1,-64],[-1,-58],[1,-32],[0,-130],[0,-44],[0,-33],[0,-51],[-1,-117],[0,-48],[0,-47],[1,-54],[0,-37],[0,-45],[0,-47],[0,-32],[0,-41],[0,-71],[1,-49],[-1,-39],[0,-37],[1,-84],[0,-43],[-1,-43],[1,-38],[0,-71],[0,-94],[0,-47],[0,-41],[0,-43],[0,-111],[0,-54],[0,-59],[0,-55],[0,-44],[0,-58],[0,-35],[0,-65],[0,-86],[0,-60],[1,-32],[0,-64],[0,-59],[0,-138],[-1,-81],[1,-86]],[[29813,36112],[-69,0],[-35,0],[-44,0],[-83,0],[-17,2],[-21,-2],[-26,1],[-22,0],[-38,1],[-18,0],[-35,1],[-67,0],[-49,-1],[-27,0],[-31,1],[-17,0],[-16,0],[-48,0],[-25,-1],[-34,2],[-20,-1],[-47,0],[-32,0],[-63,0],[-38,1],[-23,0],[-23,1],[-36,0],[-25,-1],[-20,1],[-99,-1],[-20,1],[-26,0],[-25,0],[-23,0],[-43,0],[-34,0],[-36,0],[-70,1],[-41,-1],[-28,1],[-24,0],[-46,0],[-37,0],[-30,0],[-24,0],[-46,2],[-21,0],[-31,1],[-20,0],[-28,-1],[-35,0],[-35,1],[-56,0],[-58,-1],[-23,0],[-65,0],[-22,0],[-18,1],[-20,1],[-37,0],[-48,0],[-35,-4],[-19,0],[-32,2],[-13,1],[-6,0],[-27,5],[-33,0],[-40,0],[-165,0],[-84,-4],[-16,2],[-188,-1],[-83,0],[-35,0],[-31,0],[-67,1],[-163,0],[-220,0],[-107,2],[-159,1],[-8,0],[-171,0],[-352,1],[-93,0],[-148,-2],[-99,0],[-54,2],[-266,1],[-27,0],[-73,0],[-18,0],[-29,0],[-156,1]],[[66796,36293],[-40,0],[-31,0],[-26,-1],[-21,1],[-28,-1],[-41,0],[-18,0],[-21,0],[-28,0],[-30,0],[-26,-1],[-21,0],[-27,0],[-40,0],[-17,0],[-39,-1],[-23,1],[-53,-1],[-42,0],[-21,0],[-33,-1],[-43,0],[-31,0],[-20,1],[-21,-1],[-15,0],[-16,1],[-52,-1],[-52,0],[-14,-1],[-22,0],[-45,-1],[-24,1],[-21,0],[-26,0],[-40,-1],[-44,0],[-38,1],[-17,-1],[-18,0],[-18,0],[-20,0],[-36,0],[-16,-1],[-19,0],[-38,0],[-19,0],[-16,1],[-41,-1],[-17,0],[-35,1],[-19,-1],[-32,-1],[-38,1],[-20,-1],[-32,0],[-16,0],[-16,0],[-28,0],[-30,-1],[-19,1],[-36,0],[-16,0]],[[65034,36285],[-27,-1],[-20,0],[-21,-1],[-28,1],[-47,0],[-33,-1],[-39,0],[-23,0],[-25,0],[-34,0],[-20,-1],[-28,0],[-37,0],[-21,0],[-14,0],[-26,-1],[-24,1],[-25,-1],[-73,1],[-28,-1],[-51,0],[-23,-1],[-25,1],[-49,-1],[-18,1],[-23,-1],[-22,1],[-61,0],[-24,-1],[-77,-2],[-18,1],[-40,1],[-47,-1],[-53,0],[-42,0],[-51,-1],[-140,-5],[-61,0],[-63,-3],[-22,6],[-17,0],[-23,1],[-28,0],[-25,0],[-31,0],[-33,-1],[-23,0],[-18,0],[-26,0],[-39,-1],[-41,0],[-26,-2],[-28,2],[-35,-2],[-36,0],[-24,1],[-38,0],[-36,0],[-32,-1],[-50,0],[-28,0],[-71,-1],[-1,0],[-21,0],[-18,-1],[-49,1],[-27,0],[-37,-1],[-44,1],[-35,0],[-24,0],[-36,0],[-21,1],[-48,-1],[-45,1],[-42,0],[-32,0],[-43,-1],[-25,0],[-27,1],[-23,0],[-47,0],[-25,0],[-30,0],[-37,0],[-21,0],[-18,0],[-24,0],[-32,0],[-33,0],[-31,0],[-24,-1],[-47,1],[-48,-1],[-14,0],[-13,0],[-44,1],[-25,0],[-32,-1],[-22,0],[-19,-1],[-20,1],[-36,0],[-73,0],[-19,0],[-28,0],[-40,-5],[-2,0],[-68,-3],[-6,1],[-5,0],[-50,2],[-16,1],[-278,0],[-64,0],[-57,0],[-51,-1],[-44,0],[-102,1],[-38,1],[-32,1],[-75,-2],[-86,-1],[-41,-2],[-79,-1],[-36,-1],[-132,-1],[-75,-1],[-32,-1],[-63,0],[-82,-1],[-42,-1],[-31,2],[-104,1]],[[59732,36261],[0,189],[0,42],[-1,232],[-1,77],[0,160],[-1,227],[0,117],[0,99],[0,246],[0,163],[-1,103],[-1,164],[-1,151],[0,57],[-1,56],[0,4],[0,39],[0,38],[0,40],[0,34],[0,55],[0,35],[0,46],[0,53],[-1,92],[0,33],[0,33],[0,73],[0,90],[0,128],[0,87],[-149,-2],[-1,66],[1,34],[2,41],[1,93],[-1,112],[0,54],[1,61],[0,201],[0,41],[0,40],[0,72],[0,79],[0,101],[-1,80],[0,74],[0,46],[0,40],[1,44],[-1,90],[0,38],[0,54],[1,61],[-1,62],[0,37],[1,52],[0,59],[0,36],[1,37],[-1,47],[0,57],[0,37],[0,36],[1,65],[0,42],[0,48],[0,71],[1,62],[0,48],[-1,41],[0,86],[0,38],[0,34],[1,52],[-1,46],[0,38],[1,85],[0,38],[-1,43],[1,46],[0,37],[0,54],[-1,38],[0,15],[1,18],[0,47],[0,74],[0,63],[0,45],[0,62],[0,71],[0,64],[0,39],[0,92],[0,35],[0,37],[0,47],[0,34],[-1,40],[2,37],[-5,44],[3,97],[2,50],[0,60],[1,39],[0,40],[0,32],[0,57],[0,59],[0,21],[0,448],[1,107],[0,67],[1,44],[-1,86],[0,33],[1,49],[0,41],[0,39],[0,41],[-1,43],[0,32],[1,51],[0,6],[0,37],[1,105],[-1,42],[2,240],[0,193],[0,35],[-1,135],[-1,149],[-2,169],[2,135],[0,3],[0,29],[0,68],[-1,131],[3,110],[-1,54],[1,38],[0,49],[0,34],[0,219],[0,3],[1,67],[-1,204],[0,35],[-3,223],[-4,222],[3,114],[3,110]],[[50630,47597],[-1,-336],[0,-118],[0,-259],[-1,-87],[0,-61],[0,-36],[0,-147],[2,-51],[0,-2],[0,-64],[-2,-218],[0,-120],[-1,-210],[0,-122],[0,-205],[0,-267],[0,-145],[2,-88],[-1,-123],[-1,-53],[0,-4],[0,-37],[0,-154],[-1,-193],[0,-174],[0,-51],[-1,-102],[0,-79],[0,-79],[0,-70],[-1,-67],[0,-53],[0,-41],[0,-32],[0,-74],[0,-46],[0,-232],[1,-98],[1,-229],[0,-43],[-4,-37],[0,-52],[0,-4],[0,-43],[0,-49],[1,-105],[0,-33],[0,-33],[-1,-125],[0,-69],[0,-35],[0,-34],[0,-37],[0,-42],[0,-90],[0,-70],[0,-112],[-1,-50],[2,-57],[0,-37],[-1,-33],[0,-38],[0,-73],[0,-2],[2,-42],[0,-65],[0,-35],[-1,-60],[0,-39],[-1,-43],[0,-69],[0,-33],[0,-27],[0,-5],[0,-57],[0,-231],[0,-263],[0,-4],[-1,-155],[0,-41],[0,-84],[0,-50],[0,-236],[-1,-95],[0,-47],[0,-133],[0,-155],[0,-125],[-1,-453],[58,-8],[114,2],[19,0],[117,2],[0,-5],[-1,-48],[0,-55],[-1,-243],[0,-70],[-1,-61],[0,-47],[-1,-263],[0,-106],[0,-340],[-1,-53],[0,-78],[0,-48],[0,-92],[0,-79],[0,-42],[0,-193],[0,-53],[1,-124],[0,-56],[0,-52],[1,-182],[2,-234],[0,-112],[0,-91],[0,-71],[2,-188]],[[50928,36230],[1,-251],[1,-92],[1,-184],[0,-14]],[[50931,35689],[-16,-24],[-18,-13],[-10,-10],[-15,-15],[-23,-4],[-18,-41],[-3,-6],[-11,-25],[-14,-40],[-14,-30],[-1,-1],[-11,-23],[-14,-30],[-12,-15],[-2,-3],[-21,-9],[-17,-4],[-1,0],[-22,5],[-18,9],[-18,13],[-14,24],[-8,30],[-1,37],[-3,38],[0,1],[-12,49],[0,3],[-8,26],[-7,28],[-8,28],[-10,36],[-6,31],[-4,37],[-1,35],[-5,30],[-8,29],[-14,17],[-15,11],[-16,6],[-16,1],[-16,-10],[-8,-12],[-5,-8],[-8,-28],[4,-43],[6,-36],[5,-36],[-2,-38],[0,-33],[-5,-39],[-9,-28],[-12,-20],[-14,-14],[-16,-6],[-19,1],[-20,-3],[-26,-6],[-20,-5],[-20,-4],[-22,-5],[-25,1],[-5,35],[-1,32],[-1,33],[-1,34],[-5,31],[-9,29],[-66,61],[-71,38],[-60,-10],[-43,-50],[-9,-48],[-3,-17],[-10,-49],[-22,-25],[-33,-39],[-46,-51],[-7,-1],[-23,-2],[-53,7],[-45,9],[-6,16],[-5,14],[5,29],[3,14],[20,32],[45,19],[40,36],[20,39],[21,100],[1,59],[-20,79],[-12,26],[-17,23],[-17,8],[-16,7],[-22,1],[-20,-8],[-20,-15],[-14,-21],[-13,-29],[-26,-98],[-18,-69],[-1,-7],[-27,-48],[-42,-37],[-6,0],[-41,-5],[-52,29],[-14,19],[-4,6],[-2,51],[8,12],[10,16],[62,66],[27,37],[14,29],[23,95],[5,67],[-14,69],[-29,66],[-11,16],[-29,41],[-34,9],[-46,-12],[-16,-28],[-7,-30],[-1,-13],[-1,-39],[-25,-70],[-14,-14],[-3,-4],[-7,-7],[-20,1],[-2,0],[-29,-5],[-15,-8],[-15,-13],[-14,-15],[-15,-18],[-9,-10],[-6,-8],[-15,-13],[-18,-6],[-16,3],[-15,9],[-13,17],[-10,25],[-11,37],[-2,32],[5,31],[11,22],[-25,2],[-158,8],[-65,3],[-74,3],[-74,8],[-36,4],[-38,4],[-75,5],[-3,0],[-71,4],[-15,1],[-2,0],[-20,1],[-19,2],[-16,1],[-66,3],[-6,0],[-35,3],[-42,2],[-23,2],[-8,0],[-45,3],[-74,6],[-73,7],[-52,4],[-83,6],[-6,0],[-21,2],[-70,7],[-59,6],[-18,1],[-16,2],[-59,4],[-62,5],[-74,6],[-49,3],[-18,1],[-38,2],[-28,1],[-10,0],[-51,2],[-23,1],[-74,1],[-74,1],[-75,0],[-46,2],[-27,1],[-5,0],[-20,1],[-21,1],[-27,1],[-78,1],[-116,2],[-31,0],[-77,1],[-39,1],[-31,0],[-22,1],[-24,0],[-18,1],[-18,0],[-29,0],[-19,0],[-20,0],[-38,1],[-52,1],[-57,1],[-16,0],[-17,0],[-15,0],[-25,0],[-64,1],[-22,0],[-25,0],[-114,0],[-15,0],[-36,0],[-21,0],[-65,-1],[-16,0],[-25,0],[-23,0],[-15,0],[-27,1],[-63,0],[-35,0],[-103,0],[-4,0],[-13,-1],[-44,0],[-18,0],[-1,0],[-35,-1],[-36,0],[-74,-1],[-73,0],[-75,0],[-27,0],[-124,3],[-38,0],[-43,0],[-67,0],[-71,0],[-86,0],[-22,0],[-43,0],[-74,-3],[-74,1],[-74,0],[-56,0],[-19,0],[-74,0],[-82,-1],[-69,0],[-71,0],[-74,0],[-76,-1],[-8,0],[-77,-1],[-30,0],[-20,0],[-24,0]],[[59732,36261],[-217,1],[-18,-3],[-33,0],[-20,0],[-17,0],[-22,0],[-22,-1],[-20,0],[-19,0],[-22,0],[-33,1],[-17,1],[-53,0],[-22,0],[-26,-1],[-18,0],[-20,0],[-20,1],[-22,0],[-27,0],[-23,-1],[-16,0],[-23,-1],[-21,0],[-20,-1],[-50,0],[-16,1],[-41,-1],[-19,0],[-36,0],[-16,0],[-18,0],[-22,0],[-30,0],[-17,0],[-16,-1],[-19,1],[-22,0],[-29,-1],[-22,0],[-34,0],[-24,0],[-62,0],[-18,0],[-29,-1],[-27,0],[-23,0],[-58,0],[-17,-1],[-20,0],[-28,0],[-16,0],[-25,0],[-19,0],[-18,0],[-27,0],[-24,0],[-35,-1],[-20,0],[-19,0],[-23,0],[-18,-1],[-40,0]],[[57964,36252],[-60,-1],[-88,-1],[-151,-1],[-221,-2],[-74,0],[-76,-1],[-72,3],[-37,0],[-31,0],[-20,0],[-36,0],[-33,-1],[-24,0],[-28,0],[-46,0],[-25,0],[-15,2],[-25,-6],[-269,-2],[-21,1],[-68,-1],[-1,0],[-69,0],[-31,3],[-48,0],[-29,0],[-65,-1],[-26,0],[-16,-1],[-34,1],[-29,0],[-51,-1],[-31,0],[-31,0],[-18,1],[-21,-1],[-42,1],[-52,1],[-16,0],[-17,1],[-18,0],[-25,0],[-24,0],[-27,0],[-29,1],[-21,0],[-23,0],[-30,0],[-25,1],[-17,-1],[-15,1],[-31,0],[-31,1],[-18,0],[-17,0],[-18,-1],[-20,1],[-27,-1],[-16,0],[-45,1],[-17,0],[-23,0],[-42,0],[-19,0],[-21,-1],[-30,0],[-36,-1],[-18,0],[-17,-1],[-33,0],[-24,0],[-16,0],[-22,-1],[-63,0],[-53,-1],[-18,1],[-21,0],[-19,0],[-19,0],[-25,1],[-27,0],[-19,0],[-25,-1],[-22,1],[-23,0],[-24,0],[-49,-2],[-29,-4],[-2,0],[-15,-4],[-17,8],[-17,1],[-38,0],[-17,0],[-21,0],[-33,0],[-19,1],[-15,-1],[-16,1],[-17,-1],[-24,1],[-3,0],[-15,0],[-22,0],[-20,-1],[-41,0],[-27,-1],[-26,1],[-31,0],[-19,0],[-18,0],[-19,0],[-34,-1],[-18,0],[-43,-1],[-20,-2],[-27,0],[-21,-1],[-196,-1],[-40,0],[-28,-1],[-80,3],[-57,0],[-18,-1],[-28,0],[-15,0],[-31,0],[-45,-1],[-23,0],[-26,0],[-16,1],[-18,0],[-20,-1],[-20,0],[-26,0],[-24,0],[-20,0],[-21,0],[-21,-1],[-17,0],[-22,0],[-19,-1],[-17,0],[-17,0],[-18,0],[-26,-1],[-20,0],[-17,1],[-39,-1],[-21,0],[-31,0],[-43,0],[-21,-2],[-28,0],[-18,0],[-17,1],[-16,0],[-1,0],[-43,1],[-47,0],[-18,0],[-35,0],[-22,2],[-222,0],[-81,1],[-248,0],[-48,-2],[-25,0],[-9,0],[-22,0],[-21,0],[-19,1],[-18,-1],[-27,1],[-18,-1],[-20,0],[-25,-1],[-21,1],[-17,0],[-23,0],[-19,0],[-22,0],[-22,0],[-22,0],[-18,0],[-17,0],[-20,0],[-30,0],[-16,0],[-20,0],[-16,0],[-19,-1],[-16,1],[-16,-1],[-33,1],[-19,0],[-18,-1],[-19,0],[-20,0],[-20,0],[-96,-1],[-29,0],[-19,0],[-16,-1],[-20,0],[-21,-2],[-164,-1],[-51,-1],[-28,0],[-47,0]],[[36877,36097],[-16,1],[-30,0],[-32,0],[-29,0],[-46,0],[-21,0],[-42,-1],[-79,0],[-34,0],[-37,0],[-23,0],[-18,1],[-28,0],[-8,-1],[-20,0],[-15,-3],[-22,4],[-6,2],[-17,-2],[-23,-1],[-23,1],[-23,-1],[-24,1],[-34,0],[-22,0],[-25,-1],[-18,0],[-17,-1],[-39,1],[-33,1],[-45,-1],[-26,0],[-19,0],[-45,0],[-22,0],[-4,0],[-15,0],[-25,1],[-22,0],[-16,0],[-22,0],[-22,-1],[-30,1],[-22,-1],[-20,0],[-22,0],[-19,0],[-23,0],[-22,0],[-22,0],[-17,0],[-18,1],[-24,1],[-26,-1],[-16,-3],[-19,1],[-37,0],[-33,0],[-6,0],[-42,0],[-34,0],[-48,0],[-44,0],[-34,0],[-44,1],[-34,0],[-29,0],[-32,0],[-33,1],[-38,0],[-115,0],[-39,0],[-22,-1],[-17,0],[-38,0],[-38,0],[-25,0],[-19,0],[-39,0],[-23,0],[-26,1],[-17,-1],[-30,1],[-20,0],[-20,0],[-36,0],[-6,0],[-42,0],[-27,1],[-29,0],[-35,0],[-28,0],[-53,1],[-25,-1],[-21,1],[-19,-1],[-29,1],[-17,0],[-16,0],[-17,0],[-20,0],[-35,0],[-35,0],[-17,1],[-17,0],[-32,1],[-25,-1],[-16,0],[-28,1],[-18,-1],[-26,0],[-37,1],[-42,0],[-20,0],[-22,0],[-40,-1],[-23,1],[-21,0],[-10,0],[-6,-1],[-43,1],[-18,1],[-29,0],[-18,-1],[-23,1],[-29,-1],[-34,0],[-29,0],[-23,0],[-17,-1],[-16,0],[-23,1],[-16,1],[-28,-1],[-32,1],[-17,-1],[-20,0],[-25,0],[-21,0],[-27,0],[-42,0],[-7,-1],[-11,0],[-20,0],[-18,0],[-30,0],[-22,0],[-29,0],[-19,0],[-20,-1],[-19,0],[-31,1],[-19,0],[-18,1],[-55,0],[-32,1],[-37,0],[-20,0],[-19,-2],[-39,-5],[-25,0],[-51,1],[-16,1],[-15,4],[-14,0],[-8,0],[-31,0],[-303,-2],[-103,1],[-160,1],[-31,1],[-240,2],[-54,1],[-162,1],[-135,0],[-25,0],[-96,-1],[-97,1],[-23,0],[-44,1],[-23,-2],[-34,0],[-3,0],[-21,0],[-32,0],[-32,0],[-33,-1],[-88,0],[-22,1],[-12,0],[-14,1],[-19,0],[-22,2],[-18,0],[-16,0],[-61,0],[-22,0],[-29,1],[-23,0],[-37,-1],[-38,1],[-71,0],[-22,0],[-57,0],[-34,1],[-46,-1],[-1,0],[-62,0],[-16,0],[-42,1],[-48,0],[-34,1],[-36,0],[-16,0],[-22,0],[-19,0],[-58,0]],[[81125,39127],[1,-89],[1,-51],[0,-5],[-3,-352],[-2,-408],[0,-58],[-2,-296],[-2,-167],[0,-90],[-1,-140],[-1,-95],[0,-137],[-1,-48],[-2,-70],[0,-49],[-3,-305],[-3,-460],[-3,-160],[0,-167],[0,-130],[-1,-342],[0,-35],[-1,-89],[0,-463],[-2,-382],[-1,-85],[0,-288],[0,-108],[-2,-68],[-4,-469]],[[81093,33521],[-20,0],[-29,1],[-23,0],[-61,1],[-44,-1],[-92,2],[-18,5],[-15,3],[-53,4],[-289,-1],[-28,0],[-73,0],[-31,0],[-116,0],[-260,1],[-56,4],[-105,7],[-17,1],[-84,6],[-22,1],[-26,0],[-5,0],[-133,-2],[-7,0],[-28,0],[-17,-2],[-20,-7],[-33,0],[-7,0],[-13,0],[-52,-1]],[[79316,33543],[2,63],[0,62],[-13,28],[-7,19],[-4,10],[-7,28],[-8,33],[-6,40],[-7,38],[-1,3],[-10,36],[-9,38],[-8,34],[-18,68],[-10,38],[-3,14],[-15,18],[-2,2],[-15,15],[-14,16],[-14,15],[-17,25],[-22,28],[-27,34],[-14,14],[-19,30],[-12,27],[-11,40],[-1,1],[2,35],[0,1],[10,36],[2,7],[5,4],[24,16],[1,1],[24,35],[1,2],[-1,4],[-11,26],[-6,41],[6,39],[4,39],[1,6],[-1,4],[-4,26],[-1,6],[-6,4],[-14,9],[-7,4],[-10,5],[-36,19],[-17,19],[-16,24],[-16,26],[-28,42],[-17,25],[-1,1],[-10,11],[-4,4],[-9,4],[-7,3],[-4,5],[-15,14],[-3,3],[-13,15],[-15,19],[-2,6],[-9,33],[8,30],[1,5],[14,40],[5,38],[0,2],[3,51],[1,7],[6,31],[13,23],[8,15],[9,6],[9,7],[4,3],[4,-1],[19,0],[18,-8],[6,-2],[11,-3],[5,-1],[26,-3],[18,4],[12,8],[9,6],[1,9],[5,22],[2,9],[1,66],[1,17],[2,23],[-2,44],[-8,31],[-3,9],[0,7],[-2,27],[4,18],[2,15],[7,42],[0,32],[-1,7],[-5,30],[-10,31],[-8,41],[-8,39],[-20,8],[-21,-18],[-22,0],[-10,8],[-7,5],[-12,24],[-1,2],[-3,5],[-5,17],[-4,12],[-1,20],[-1,15],[1,6],[2,29],[0,2],[0,1],[13,30],[20,21],[13,19],[3,12],[1,5],[4,25],[-15,51],[-22,4],[-1,-1],[-19,-19],[-3,-3],[0,-2],[-11,-37],[-11,-44],[-12,-44],[-23,-27],[-18,-8],[-23,5],[-16,9],[-17,34],[-2,18],[-1,7],[-1,11],[2,9],[6,34],[1,21],[0,11],[-1,4],[-8,35],[-1,2],[-3,3],[-19,19],[-22,20],[-8,9],[-55,68],[-3,3],[-12,28],[0,6],[3,40],[21,21],[4,4],[19,5],[18,6],[35,23],[-222,-1],[-86,-1],[-59,0],[-93,0],[-28,0],[-118,-1],[-287,-1],[-245,-1],[-53,0],[-150,-1],[-35,0],[-64,0],[-50,-1],[-107,-3],[-122,-1],[-85,1],[-45,0],[-65,1],[-168,2],[-400,5],[-23,0],[-175,0],[-125,4],[-20,1],[-135,1],[-126,1],[-26,0],[-143,1],[-116,2],[-149,2],[-40,-1],[-177,7],[-44,-1],[-28,2],[-39,1],[-18,-2],[-94,0],[-72,1],[-116,1],[-225,-2],[-141,-1],[-146,-2],[-77,0]],[[97289,43299],[-4,-256],[-2,-124],[0,-28],[17,-81],[39,-191],[-18,-336],[-2,-35],[-11,-25],[-68,-158],[-153,-203],[-22,-29],[-40,-52],[-2,-25],[-22,-219],[-3,-31],[-21,-211],[-58,-330],[-7,-40],[-8,-45],[-6,-55],[-17,-159],[-9,-96],[-1,-8],[7,-178],[8,-194],[3,-79],[1,-16],[3,-74],[10,-248],[7,-158],[16,-413],[3,-67],[-22,-136],[-35,-209],[-63,-51],[-71,-58],[-192,-154],[-4,-3],[-141,-58],[-111,-46],[-37,-16],[-64,-26],[-46,-25],[-109,-60],[-4,-2],[-30,-30],[-65,-63],[-10,-9],[-42,-41],[-13,-12],[-68,-65],[-1,-1],[-1,-2],[-23,-49],[-43,-90],[-25,-54],[-51,-155],[-2,-5],[-7,-8],[-84,-84],[-23,-23],[-47,-36],[-103,-228],[-37,-84],[-53,-116],[-53,-87],[-196,-317],[-205,-107],[-30,-16],[-15,-9],[-10,0],[-247,-10],[-204,-8],[-83,38],[-88,40],[-59,27],[-87,43],[-138,70],[-10,0],[-118,3],[-153,-45],[-12,-3],[-8,-11],[-129,-167],[-16,-20],[-76,-55],[-160,-42],[-22,-6],[-177,-109],[0,-1],[-1,-2],[-111,-161],[-6,-8],[-22,-172],[-8,-65],[-7,-52],[-3,-28],[-19,-61],[-9,-14],[-65,-98],[-120,-182],[-33,-32],[-2,-1],[-157,-145],[-15,-15],[-1,-1],[-107,-154],[-19,-27],[-31,-53],[-48,-84],[-75,-128],[-86,-93],[-44,-11],[-104,-24],[-53,-13],[-47,3],[-69,3],[-13,-7],[-74,-39],[-101,-53],[-145,-77],[-179,-46],[-99,-26],[-126,-32],[-62,-17],[-35,-8],[-106,-37],[-194,-16],[-55,6],[-108,12],[-181,20],[-116,32],[-47,13],[-36,15],[-13,6]],[[90054,34472],[0,4],[1,72],[0,19],[0,51],[0,16],[1,86],[1,105],[5,438],[1,106],[2,219],[3,220],[2,173],[0,176],[1,75],[0,45],[2,109],[0,5],[0,67],[1,50],[4,474],[1,117],[0,39],[0,38],[1,53],[1,112],[0,87],[1,50],[1,142],[1,54],[0,61],[1,40],[0,56],[1,73],[0,49],[0,36],[1,33],[0,52],[1,114],[0,101],[1,80],[1,57],[0,84],[1,66],[1,156],[0,3],[2,99],[-3,39],[2,37],[0,34],[-1,79],[0,44],[0,1],[-20,0],[-39,1],[-66,0],[-15,0],[-87,0],[-61,0],[-84,1],[-66,-1],[-38,1],[-42,0],[-61,1],[-21,0],[-61,1],[-134,1],[-34,0],[-38,0],[-18,0],[-31,0],[-72,1],[-32,0],[-21,0],[-27,1],[-53,0],[-41,0],[-35,1],[-28,0],[-95,1],[-62,1],[-24,0],[-75,1],[-38,1],[-31,-1],[-64,0],[-16,1],[-18,6],[-28,1],[-1,0],[-29,0],[-57,0],[-23,0]],[[90054,34472],[-65,18],[-82,8],[-69,6],[-71,8],[-129,12],[-90,9],[-132,13],[-118,12],[-96,-22],[-205,-46],[-98,-102],[-112,-117],[-35,-37],[-87,-90],[-144,-150],[-19,-15],[-55,-45],[-30,-24],[-12,-9],[-128,-104],[-168,-135],[-34,-27],[-36,-29],[-43,-35],[-53,-42],[-51,1],[-38,1],[-4,-10],[-19,-57],[-21,68],[-106,2],[-92,2],[-139,93],[-88,59],[-281,187],[-46,-21],[-168,-77],[-147,-85],[-68,-40],[-5,-2],[-80,-47],[-50,-29],[-141,-73],[-53,29],[-9,5],[-9,-21],[-29,-65],[-41,-21],[-70,-36],[-37,-19],[-13,-25],[-107,-206],[-47,-647],[-13,-186],[-151,-374],[-36,-92],[-11,-28],[-9,-62],[-35,-254],[-14,-108],[-77,-562],[20,-81],[1,-4],[0,-7],[-2,-37],[-1,-44]],[[85656,30656],[-42,1],[-32,1],[-35,2],[-21,0],[-20,0],[-32,2],[-32,2],[-26,-2],[-36,0],[-36,0],[-90,4],[-20,0],[-42,2],[-25,1],[-17,1],[-18,1],[-33,1],[-22,1],[-36,2],[-34,0],[-66,2],[-103,0],[-56,0],[-148,2],[-203,4],[-2,0],[-28,0],[-76,1],[-156,2],[-124,2],[-26,0],[-76,2],[-33,0],[-40,5],[-17,-3],[-29,0],[-28,1],[-18,0],[-16,0],[-21,1],[-27,0],[-34,2],[-5,0],[-112,2],[-205,5],[-135,3],[-61,1],[-25,0],[-30,3],[-21,1],[-79,2],[-84,1],[-64,4],[-127,1],[-71,1],[-102,1],[-221,1],[-58,1],[-88,0],[-25,0],[-139,0],[-210,3],[-22,-4],[-24,1],[-30,0],[-64,2],[-93,4],[-16,-1],[-4,0],[-17,0],[-18,2],[-92,4],[-23,0],[-58,1],[-12,0],[-105,-4],[-51,1],[-24,0],[-84,2],[1,105],[1,114],[-1,245],[0,110],[0,81],[2,274],[0,143],[-1,171],[1,152],[6,703],[-1,102],[1,123],[0,38],[1,104],[0,47],[0,45],[1,73],[0,52],[1,105]],[[79316,33543],[0,-59],[0,-79],[0,-334],[-1,-36],[0,-72],[0,-65],[0,-49],[1,-54],[0,-51],[0,-44],[-1,-45],[0,-41],[0,-40],[-1,-52],[1,-37],[-1,-43],[0,-41],[0,-81],[0,-42],[-1,-37],[0,-65],[0,-88],[-1,-48],[1,-69],[0,-53],[-1,-66],[0,-48],[-1,-42],[0,-37],[0,-39],[0,-37],[-1,-56],[0,-41],[0,-40],[-1,-56],[0,-83],[0,-52],[0,-38],[0,-43],[-3,-481],[0,-41],[-1,-67],[1,-49],[-1,-62],[1,-57],[0,-56],[-1,-36],[0,-82],[0,-44],[0,-35],[0,-79],[0,-66],[0,-40],[0,-70],[0,-35],[-1,-38],[0,-36],[0,-37],[0,-41],[0,-102],[-1,-37],[0,-52],[0,-78],[-1,-61],[0,-25],[0,-10],[0,-33],[0,-26],[0,-10],[0,-71],[-1,-68],[0,-37],[0,-38],[-1,-40],[0,-39],[0,-41],[-1,-47],[0,-82],[0,-36],[0,-42],[0,-34],[0,-72],[-1,-36],[1,-71],[-1,-44],[0,-36],[0,-82],[-1,-75],[0,-42],[-1,-77],[0,-44],[0,-53],[-1,-87],[0,-84],[0,-89],[-1,-83],[-1,-62],[0,-51],[-1,-66],[0,-54],[-1,-66],[-1,-91],[0,-66],[-1,-69],[0,-107],[-2,-39],[1,-88],[-1,-62],[-1,-176],[0,-42],[0,-49],[0,-71],[0,-70],[0,-69],[0,-42],[0,-100],[0,-235],[0,-90],[0,-76],[0,-86],[0,-90],[1,-57],[0,-86],[0,-71],[0,-62],[1,-86],[0,-66],[0,-51],[1,-71],[1,-59]],[[79290,25178],[-120,2],[-18,0],[-16,0],[-53,1],[-16,2],[-76,1],[-15,0],[-127,3],[-159,3],[-229,-1],[-18,4],[-20,0],[-16,-1],[-6,1],[-18,3],[-57,1],[-128,2],[-92,2],[-170,3],[-133,3],[-285,9],[-85,-3],[-24,0],[-22,-1],[-18,0],[-16,-1],[-25,-1],[-40,4],[-59,-3],[-25,-1],[-52,-2],[-17,0],[-151,-2],[-133,-8],[-105,-1],[-117,-2],[-105,-1],[-17,0],[-25,-1],[-135,-1],[-160,-1],[-24,0],[-52,-1],[-17,0],[-128,1],[-129,0],[-21,0],[-35,1],[-34,0]],[[75747,25192],[-19,0],[-18,-1],[-10,0],[-5,0],[-21,-1],[-18,-1],[-23,0],[-28,-1],[-26,0],[-15,-1],[-53,-2],[-85,-2],[-18,-1],[-29,-1],[-73,-4],[-2,0],[-29,1],[-12,0],[-106,-3],[-61,-2],[-47,-1],[-40,-1],[-44,-1],[-30,-1],[-25,-1],[-72,-3],[-40,-1],[-25,-1],[-85,-3],[-38,0],[-51,-2],[-58,-1],[-27,-1],[-19,-1],[-29,-1],[-10,3],[-6,1],[-2,0],[-38,-2],[-39,-1],[-57,-1],[-153,-2],[-43,-1],[-53,0],[-79,0],[-97,-1],[-35,0],[-150,3],[-21,1],[-152,2],[-21,1],[-87,3],[-30,2],[-51,1],[-28,1],[-42,2],[-22,1],[-22,2],[-24,1],[-36,1],[-41,2],[-24,1],[-20,1],[-23,2],[-51,1],[-17,1],[-46,2],[-27,1],[-30,1],[-36,2],[-30,1],[-17,1],[-20,0],[-30,2],[-29,1],[-36,1],[-33,1],[-63,4],[-31,1],[-16,1],[-49,3],[-17,1],[-23,1],[-51,3],[-42,2],[-26,1],[-69,4],[-42,2],[-16,1]],[[72213,25216],[-3,38],[6,411],[0,42],[2,208],[3,229],[4,351],[0,120],[1,121],[0,116],[0,108],[0,3],[1,87],[0,34],[-2,371],[0,104],[0,39],[0,66],[0,8],[-5,309],[0,44],[-2,188],[-7,393],[-2,342],[-7,471],[0,93],[0,140],[0,239],[-1,228],[-7,229],[-3,434],[1,206],[1,261],[1,151],[0,83],[0,55],[0,50],[0,39],[0,86],[0,33],[0,81],[1,58],[0,4],[0,59],[-1,33],[1,137],[0,58],[2,465],[1,231],[0,233],[-2,465],[3,466],[2,445],[0,91],[1,34],[0,128],[1,234],[1,58],[2,408],[0,41],[-1,66],[0,120],[0,3],[-1,177],[0,139],[2,234],[-1,109]],[[50931,35689],[0,-43],[0,-90],[-1,-121],[-1,-116],[1,-116],[0,-54],[0,-43],[1,-64],[0,-4],[0,-66],[0,-60],[0,-32],[1,-228],[0,-148],[0,-107],[0,-36],[-1,-88],[2,-103],[0,-96],[0,-39],[0,-43],[0,-35],[0,-22],[1,-113],[0,-36],[0,-85],[0,-113],[0,-84],[0,-142],[0,-61],[0,-51],[0,-34],[-1,-85],[0,-116],[0,-347],[0,-18],[1,-97],[0,-47],[1,-109],[0,-181],[-4,-34],[1,-60],[0,-34],[-1,-45],[1,-34],[1,-34],[0,-58],[0,-62],[0,-4],[-1,-114],[-1,-118],[0,-174],[0,-2],[0,-54],[0,-53],[0,-6],[0,-55],[-1,-115],[1,-115],[1,-56],[0,-35],[0,-115],[0,-146],[-1,-47],[0,-104],[1,-128],[0,-177],[0,-464],[0,-132],[0,-317],[1,-374],[0,-68],[0,-34],[0,-337],[0,-244],[1,-117],[-1,-116],[-1,-118],[2,-123],[0,-116],[2,-233],[1,-231],[1,-108],[0,-71],[0,-57],[-1,-33],[0,-35],[0,-286],[1,-13],[0,-97],[-1,-114],[1,-59],[0,-69],[-1,-223],[2,-222],[-1,-112],[-1,-130],[1,-115],[1,-115],[-1,-46],[0,-120],[1,-65]],[[50939,25123],[-74,-2],[-73,-1],[-21,0],[-24,0],[-17,0],[-16,0],[-38,0],[-31,0],[-67,0],[-1,0],[-16,0],[-29,0],[-98,-1],[-82,0],[-25,0],[-32,0],[-55,0],[-183,0],[-71,0],[-74,0],[-18,0],[-105,-1],[-98,1],[-74,0],[-73,0],[-63,2],[-85,-1],[-74,0],[-49,0],[-24,-1],[-63,0],[-77,-1],[-62,1],[-87,1],[-74,0],[-30,1],[-37,2],[-43,0],[-45,2],[-52,0],[-56,1],[-23,0],[-180,3],[-54,1],[-76,2],[-8,0],[-44,1],[-61,0],[-47,1],[-48,0],[-27,0],[-64,0],[-122,2],[-74,0],[-18,1],[-20,1],[-11,0],[-50,1],[-25,1],[-16,3],[-19,-1],[-17,-2],[-50,1],[-165,1]],[[47404,25142],[-22,1],[-31,0],[-16,0],[-50,1],[-23,0],[-78,1],[-54,1],[-22,-1],[-17,-1],[-29,0],[-29,1],[-46,2],[-38,1],[-50,2],[-28,0],[-58,1],[-21,1],[-30,0],[-24,0],[-37,0],[-27,0],[-234,1],[-76,0],[-74,2],[-27,0],[-5,0],[-42,-2],[-54,0],[-20,0],[-75,1],[-74,0],[-27,0],[-111,1],[-41,0],[-33,0],[-21,0],[-28,1],[-31,1],[-23,0],[-20,1],[-22,0],[-28,1],[-16,1],[-43,-1],[-33,-3],[-18,0],[-85,4],[-11,1],[-90,0],[-57,0],[-60,1],[-23,0],[-17,0],[-19,0],[-19,1],[-21,0],[-21,0],[-45,0],[-73,0],[-223,0],[-75,0],[-42,2],[-34,1],[-49,1],[-22,0],[-81,2],[-71,0],[-77,-1],[-112,2],[-32,0],[-102,0],[-36,0],[-83,-2],[-3,0],[-76,-1]],[[43839,25167],[-1,119],[1,116],[0,117],[-1,117],[0,117],[0,116],[0,116],[0,116],[-1,117],[0,116],[0,27],[0,90],[1,76],[-1,45],[-1,113],[0,117],[0,118],[0,117],[0,116],[3,110],[0,102],[-2,39],[-1,66],[-1,148],[0,122],[0,115],[0,108],[0,56],[-1,63],[0,119],[0,96],[1,139],[-1,64],[-1,40],[0,74],[0,35],[-1,118],[0,39],[0,39],[0,39],[0,56],[0,45],[2,38],[-3,32],[0,35],[0,99],[0,60],[0,37],[0,32],[0,44],[-1,61],[0,62],[-2,118],[1,120],[1,77],[-1,38],[0,49],[0,42],[1,55],[0,33],[-1,35],[0,32],[0,57],[-1,47],[0,29],[0,8],[-1,82],[0,114],[0,59],[0,61],[-1,115],[-1,77],[0,39],[1,118],[0,33],[0,33],[-1,34],[-1,47],[1,36],[0,37],[-1,111],[0,54],[-1,34],[0,45],[-1,70],[0,22],[-1,34],[0,32],[0,1],[0,43],[-1,35],[-1,101],[0,83],[-1,57],[-1,111],[0,38],[-1,42],[-1,101],[0,33],[0,37],[0,63],[0,35],[0,116],[0,70],[-1,84],[0,55],[1,57],[0,84],[-1,41],[0,73],[1,39],[0,35],[0,42],[0,100],[1,111],[1,61],[0,101],[0,11],[0,91],[1,70],[0,39],[0,33],[0,32],[0,67],[0,33],[0,76],[0,39],[0,123],[-1,59],[0,38],[0,53],[0,43],[0,35],[0,41],[0,38],[1,47],[-1,42],[1,58],[-1,39],[0,47],[0,38],[0,42],[0,34],[0,36],[0,56],[0,35],[0,99],[0,5],[0,70],[0,46],[1,124],[-1,41],[0,38],[0,93],[1,49],[0,38],[0,39],[0,34],[0,39],[0,57],[0,52],[0,53],[0,39],[0,56],[0,75],[0,100],[0,63],[0,45],[0,49],[0,73],[0,66],[0,65],[0,42],[0,55]],[[72213,25216],[-21,1],[-35,0],[-24,1],[-35,1],[-38,0],[-40,1],[-52,1],[-51,1],[-21,0],[-45,1],[-24,0],[-61,0],[-33,0],[-23,0],[-33,0],[-31,0],[-27,0],[-68,-1],[-17,0],[-35,0],[-33,-1],[-94,-2],[-204,-6],[-30,4],[-16,0],[-30,-1],[-26,0],[-21,-1],[-20,0],[-29,-5],[-132,1],[-147,0],[-196,-5],[-121,-2],[-219,-3],[-77,-1],[-68,-1],[-95,-1],[-131,-3],[-107,-2],[-1,0],[-25,0],[-162,1],[-22,1],[-59,-1],[-55,-1],[-54,0],[-42,0],[-62,-1],[-39,0],[-22,0],[-52,-1],[-39,0],[-44,-1],[-30,0],[-69,0],[-37,-1],[-63,0],[-44,-1],[-62,-1],[-46,0],[-69,0]],[[68605,25187],[-17,0],[-48,0],[-18,-1],[-33,0],[-60,0],[-19,-1],[-27,1],[-52,-1],[-21,0],[-37,0],[-37,0],[-34,-1],[-27,1],[-27,-1],[-34,0],[-88,0],[-34,-1],[-37,0],[-23,0],[-52,0],[-21,0],[-28,-1],[-20,0],[-23,0],[-25,0],[-22,0],[-22,-1],[-84,0],[-28,0],[-17,0],[-29,0],[-81,-1],[-55,0],[-18,-1],[-32,0],[-51,0],[-23,-1],[-31,0],[-35,0],[-28,0],[-30,-1],[-39,1],[-16,0],[-24,0],[-21,-1],[-58,0],[-43,0],[-40,-1],[-61,0],[-55,-1],[-150,-1],[-54,0],[-40,0],[-50,0],[-17,-1],[-59,0],[-58,0],[-61,-1],[-70,-1],[-30,-1],[-56,0],[-93,0],[-46,0],[-63,0],[-38,-1],[-37,0],[-28,0],[-48,0],[-33,0],[-28,0],[-72,-1],[-48,0],[-42,0],[-48,-1],[-26,0],[-61,-2],[-84,0],[-34,0],[-21,0],[-22,0],[-28,0],[-43,0],[-78,-2],[-41,0],[-50,1],[-2,0]],[[65061,25164],[1,227],[0,133],[1,110],[-2,34],[0,100],[-1,57],[0,57],[0,160],[-1,48],[-1,355],[-2,58],[0,50],[0,230],[0,238],[0,63],[0,47],[-1,219],[1,42],[2,80],[-1,509],[-1,211],[0,91],[-2,177],[0,71],[0,30],[-1,126],[-3,212],[0,180],[-1,284],[0,463],[-1,185],[1,46],[-1,110],[-1,240],[0,3],[0,325],[0,50],[0,94],[-1,320],[-1,168],[-1,236],[-1,135],[0,260],[0,12],[0,113],[-1,174],[0,291],[-2,114],[2,55],[-1,294],[-2,472],[0,192],[-1,268],[0,164],[-1,81],[0,226],[-1,218],[0,83],[0,22],[0,54],[0,80],[-1,81],[0,177],[-1,206],[0,88],[-1,287],[0,88],[0,142],[1,158],[0,147]],[[43839,25167],[-68,-12],[-150,-10],[-19,-2],[-40,-3],[-32,-2],[-49,-5],[-22,-2],[-130,-15],[-64,-9],[-280,-32],[-85,-8],[-26,-3],[-50,-6],[-22,-3],[-46,-6],[-65,-10],[-21,-2],[-55,-3],[-51,-3],[-49,-1],[-137,-20],[-16,3],[-77,-7],[-17,-1],[-49,-5],[-50,-6],[-17,-1],[-16,0],[-57,0],[-27,0],[-36,1],[-53,0],[-42,0],[-47,1],[-16,-4],[-130,6],[-18,0],[-131,2],[-43,-1],[-113,-1],[-80,0],[-123,0],[-81,0],[-16,0],[-98,0],[-65,0],[-23,0],[-137,-1],[-118,0],[-90,1],[-122,1],[-93,0]],[[40377,24998],[-148,0],[-145,-2],[-18,0],[-204,1],[-3,0],[-43,0],[-27,0],[-51,0],[-24,0],[-83,0],[-24,0],[-42,0],[-28,0],[-17,0],[-18,0],[-23,-2],[-18,0],[-30,1],[-23,2],[-40,0],[-18,0],[-102,0],[-22,0],[-46,0],[-38,1],[-28,0],[-19,1],[-27,0],[-44,0],[-60,0],[-27,0],[-41,1],[-108,-1],[-40,1],[-77,0],[-28,-1],[-20,0],[-26,0],[-52,1],[-25,0],[-22,-1],[-71,-1],[-21,0],[-36,0],[-38,0],[-222,7],[-72,1],[-77,-4],[-27,-2],[-21,0],[-79,-4],[-35,-2],[-51,11],[-64,0],[-18,-1],[-209,2],[-53,0],[-243,-2],[-16,1],[-30,0],[-23,1],[-38,1],[-30,0],[-26,0],[-27,1],[-20,1],[-16,0],[-40,0],[-19,0]],[[36876,25010],[1,149],[0,106],[0,495],[0,171],[0,60],[0,60],[0,343],[0,461],[0,334],[0,6],[-2,586],[1,47],[0,36],[0,68],[0,45],[0,48],[0,52],[0,89],[-1,59],[1,37],[0,40],[0,38],[0,33],[1,57],[-1,34],[0,59],[1,49],[0,46],[0,44],[0,40],[0,49],[1,98],[1,96],[0,37],[0,40],[0,41],[0,73],[0,47],[-1,33],[0,33],[0,49],[0,40],[-1,37],[1,149],[0,108],[-1,248],[2,36],[0,54],[0,44],[1,61],[0,10],[0,426],[0,9],[0,37],[1,56],[-1,37],[0,65],[-1,38],[0,33],[0,59],[-1,50],[0,6],[1,108],[0,49],[0,66],[0,56],[0,79],[0,35],[0,39],[0,63],[0,84],[0,36],[-1,111],[1,57],[0,47],[-1,95],[0,37],[0,42],[1,35],[0,58],[0,50],[0,49],[0,95],[0,50],[0,69],[0,40],[0,52],[0,42],[0,59],[-1,32],[0,61],[0,33],[0,42],[0,48],[1,106],[1,42],[0,41],[1,48],[0,60],[0,32],[1,39],[-1,52],[0,36],[-1,44],[0,45],[-2,54],[0,117],[-2,32],[-1,38],[0,1],[2,45],[1,86],[1,111],[0,44],[-1,33],[0,60],[0,157],[0,75],[0,66],[0,70],[0,133],[1,41],[0,144],[0,105],[0,40],[0,73],[0,60],[0,45],[0,51],[0,54],[0,102],[0,80],[0,59],[0,66],[0,86],[0,120],[0,66],[-1,65],[0,50],[0,41],[0,36],[0,1],[-1,38],[1,34],[-1,61],[0,65],[0,56],[0,71]],[[65061,25164],[-26,0],[-30,0],[-23,0],[-24,0],[-24,0],[-67,-1],[-32,0],[-37,-1],[-31,0],[-134,-2],[-231,-2],[-1,0],[-225,-2],[-147,-1],[-147,-1],[-33,0],[-42,0],[-72,-1],[-58,0],[-89,-1],[-78,0],[-223,-2],[-145,-1],[-150,-1],[-101,1],[-47,0],[-73,-2],[-374,3],[-28,0],[-19,0],[-68,0],[-18,0],[-48,0],[-45,-1],[-51,-1],[-45,0],[-91,1],[-36,0],[-39,1],[-19,-1],[-28,0],[-19,1],[-17,-1],[-24,-1],[-17,0],[-32,-1],[-24,-1],[-16,-2],[-20,-1],[-41,0],[-18,0],[-17,1],[-25,3],[-17,0],[-21,-3],[-19,-1],[-15,0]],[[61520,25143],[-1,0],[-29,-1],[-28,2],[-30,2],[-68,0],[-51,0],[-17,0],[-39,-2],[-22,0],[-261,-2],[-120,-1],[-221,0],[-45,0],[-42,0],[-89,0],[-118,0],[-74,1],[-98,-1],[-63,0],[-58,0],[-151,-1],[-66,0],[-70,0],[-73,-1],[-79,0],[-82,0],[-78,3],[-82,-1],[-279,-4],[-78,0],[-44,-1],[-75,-2],[-16,0],[-95,0],[-24,2],[-32,0],[-9,0],[-306,-2],[-43,-1],[-34,-1],[-44,-1],[-222,-2],[-41,0],[-34,0]],[[57989,25129],[-1,598],[0,115],[0,162],[-1,64],[-1,316],[0,139],[0,98],[-2,257],[-1,111],[0,256],[-1,170],[-1,268],[0,48],[-2,198],[-4,52],[0,41],[0,36],[0,65],[-1,37],[0,3],[0,61],[0,56],[-2,131],[0,38],[0,115],[0,62],[0,51],[-1,107],[0,74],[0,97],[0,273],[2,213],[0,90],[0,15],[0,14],[0,25],[1,287],[0,1],[1,125],[0,38],[0,41],[-1,53],[2,114],[0,36],[0,86],[-1,129],[0,206],[0,176],[-2,59],[0,184],[0,44],[1,369],[-1,101],[-1,170],[0,176],[0,40],[-1,71],[0,144],[0,121],[-1,93],[0,48],[0,52],[0,133],[0,3],[-1,105],[0,230],[-1,156],[0,67],[0,235],[0,122],[-1,149],[0,129],[0,64],[0,458],[-1,424],[0,508],[0,349],[0,52],[-3,158],[2,88],[0,37],[-1,236]],[[57989,25129],[-44,1],[-39,-1],[-100,-1],[-55,2],[-43,2],[-190,-2],[-73,1],[-6,0],[-43,1],[-122,-3],[-103,-1],[-18,0],[-66,0],[-86,-1],[-85,-2],[-77,1],[-39,-2],[-193,2],[-52,0],[-42,0],[-106,-1],[-70,0],[-42,-1],[-70,3],[-108,1],[-42,0],[-48,0],[-45,0],[-155,0],[-52,-1],[-159,0],[-37,0],[-369,-2],[-15,0],[-157,-1],[-117,0],[-182,-1],[-150,1],[-131,2]],[[54458,25126],[-297,6],[-103,-1],[-53,-3],[-90,0],[-165,-1],[-26,3],[-72,0],[-76,0],[-79,0],[-60,0],[-75,0],[-72,-2],[-121,-2],[-18,-1],[-148,-1],[-84,-1],[-214,-1],[-24,0],[-165,-1],[-3,0],[-103,-1],[-53,2],[-14,0],[-3,0],[-187,3],[-19,0],[-15,2],[-287,-3],[-304,-2],[-246,2],[-36,0],[-29,1],[-28,0],[-31,-3],[-198,0],[-21,1]],[[22824,36146],[1,-124],[-10,-41],[0,-53],[0,-3],[1,-191],[0,-51],[1,-274],[1,-190],[0,-66],[1,-279],[-1,-58],[1,-52],[1,-140],[0,-32],[1,-300],[0,-2],[1,-254],[0,-172],[0,-42],[2,-405],[0,-52],[0,-153],[1,-80],[0,-2],[0,-220],[1,-166],[0,-73],[0,-260],[-11,-427],[0,-94],[-5,-487],[0,-43],[6,-201],[-2,-92],[1,-59],[2,-179],[-1,-194],[-1,-34],[0,-122],[3,-55],[0,-40],[1,-41],[-1,-40],[-2,-163],[0,-7],[-2,-232],[1,-52],[0,-165],[0,-33],[-1,-174],[0,-38],[0,-98],[-1,-76],[0,-44],[3,-163],[4,-280],[0,-153],[0,-270],[0,-102],[0,-24],[-2,-181],[0,-69],[-4,-157],[-2,-310],[0,-10],[-1,-521],[4,-45],[-3,-137],[-1,-40],[-1,-170],[0,-72],[0,-47],[0,-227],[-1,-44],[-1,-127],[0,-62],[1,-92],[0,-146],[0,-132],[0,-33],[0,-68],[-2,-241],[0,-221]],[[22807,25077],[-51,0],[-35,0],[-60,0],[-41,0],[-38,0],[-45,0],[-2,0],[-40,0],[-46,0],[-83,0],[-175,2],[-42,0],[-28,0],[-119,2],[-44,0],[-35,0],[-110,1],[-36,0],[-18,0],[-20,0],[-19,0],[-21,0],[-45,0],[-16,0],[-47,0],[-17,0],[-16,0],[-27,1],[-25,0],[-23,0],[-24,0],[-26,0],[-22,1],[-51,0],[-27,0],[-41,2],[-223,-1],[-19,0],[-31,1],[-37,0],[-47,1],[-45,1],[-58,0],[-15,0],[-28,1],[-34,0],[-256,4],[-27,0],[-95,1],[-18,1],[-63,0],[-31,1],[-2,0],[-99,1],[-17,0],[-18,0],[-18,0],[-25,0],[-20,1],[-25,0],[-28,1],[-30,-1],[-28,1],[-26,0],[-28,-1],[-17,0],[-15,1],[-24,0],[-19,0],[-28,1],[-22,0],[-27,0],[-27,1],[-42,0],[-21,0],[-17,0],[-23,1],[-19,0],[-19,0],[-21,-1],[-23,0],[-37,1],[-22,-1],[-18,0],[-16,1],[-19,-1],[-46,0],[-35,1],[-37,0],[-17,0]],[[19290,25102],[-56,1],[-32,0],[-20,0],[-49,1],[-90,1],[-19,0],[-19,0],[-9,1],[-13,0],[-79,1],[-36,0],[-121,1],[-112,0],[-33,0],[-51,0],[-69,2],[-69,1],[-25,1],[-29,-3],[-28,1],[-128,0],[-19,0],[-35,0],[-37,0],[-36,-1],[-32,0],[-37,0],[-27,0],[-26,0],[-22,0],[-31,-1],[-21,0],[-20,0],[-16,0],[-16,0],[-16,0],[-28,-1],[-27,0],[-16,0],[-22,0],[-23,0],[-50,-1],[-19,0],[-27,0],[-19,-1],[-21,0],[-29,0],[-19,0],[-22,0],[-17,0],[-21,0],[-16,1],[-20,0],[-30,0],[-26,0],[-34,1],[-31,0],[-21,0],[-44,0],[-19,1],[-24,0],[-19,0],[-26,0],[-28,-1],[-17,1],[-18,0],[-18,-1],[-39,0],[-21,0],[-28,0],[-104,-1],[-94,0],[-133,-2],[-18,0],[-15,0],[-28,0],[-21,0],[-32,-1],[-28,0],[-16,0],[-22,0],[-43,-1],[-26,0],[-34,0],[-41,-4],[-185,-7],[-83,10],[-24,1],[-28,0],[-40,0],[-7,0],[-47,1],[-18,0],[-22,0],[-16,0],[-39,-1],[-17,1],[-21,0],[-16,-1],[-37,0],[-41,1],[-16,0],[-36,0],[-27,0],[-26,1],[-24,-1],[-24,1],[-19,0],[-16,-1],[-19,12],[-20,-12],[-19,1],[-28,0],[-37,0],[-28,0],[-17,0],[-62,0],[-23,1],[-53,0],[-65,0],[-20,0],[-26,0],[-43,0],[-84,-1],[-57,0],[-39,0],[-27,-1],[-39,0],[-171,-1],[-18,0],[-37,0],[-9,0],[-26,-1],[-52,0],[-52,0],[-30,0],[-37,0],[-17,1],[-21,0],[-24,0],[-37,1],[-27,0],[-18,0],[-52,0],[-29,0],[-117,-2],[-118,4],[-166,0],[-58,-1],[-35,-1],[-155,0],[-34,0],[-20,3],[-36,0],[-50,-1],[-54,0],[-22,-7],[-65,2],[-135,6],[-13,1],[-3,0],[-80,-10],[-88,10],[-16,0],[-19,1],[-70,2],[-20,-1],[-17,0],[-21,0],[-44,-1],[-1,0],[-73,0],[-26,0],[-18,2],[-16,1],[-1,0],[-31,0],[-43,0],[-67,-1],[-24,0],[-46,-1],[-23,0],[-47,0],[-78,1],[-21,0],[-30,0],[-55,1],[-29,0],[-26,0],[-16,0],[-42,0],[-72,1],[-47,0],[-32,0],[-44,-1],[-44,-8],[-36,-7],[-7,0],[-21,1]],[[11654,25097],[9,35],[12,32],[9,21],[19,42],[8,15],[16,28],[21,30],[26,26],[25,20],[3,1],[27,11],[25,4],[4,0],[15,0],[6,0],[23,-9],[18,-12],[36,-18],[25,-12],[25,-14],[7,-2],[11,-4],[3,-1],[4,-1],[26,-7],[14,-4],[39,5],[4,1],[12,4],[30,13],[15,12],[23,26],[16,26],[15,28],[11,29],[10,43],[6,58],[0,54],[-2,36],[-5,37],[-1,9],[-18,72],[-6,12],[-6,12],[-5,12],[-10,26],[-18,30],[-15,26],[-15,19],[-9,11],[-16,15],[-4,4],[-10,11],[-13,11],[-11,8],[-28,18],[-17,10],[-25,9],[-5,3],[-13,8],[-18,5],[-13,4],[-6,2],[-5,2],[-14,7],[-16,5],[-5,1],[-11,3],[-23,1],[-8,1],[-23,3],[-5,1],[-30,-3],[-27,0],[-15,-2],[-5,0],[-15,-2],[-33,-5],[-22,-3],[-15,-1],[-22,-4],[-17,-4],[-73,-28],[-2,-1],[-18,-9],[-17,-8],[-17,-4],[-35,-13],[-45,-12],[-2,0],[-39,-12],[-21,-6],[-26,-4],[-16,-1],[-37,-1],[-10,-1],[-4,0],[-22,-1],[-30,-5],[-17,3],[-24,-2],[-17,8],[-18,0],[-3,1],[-15,4],[-15,10],[-23,5],[-16,20],[-27,21],[-15,22],[-13,27],[-22,32],[-21,57],[-14,39],[-12,31],[-10,34],[-7,35],[-7,30],[-7,30],[-6,62],[-5,33],[4,33],[-4,31],[1,38],[-2,53],[3,32],[6,32],[3,53],[6,33],[4,33],[7,32],[5,16],[6,18],[12,28],[15,42],[10,31],[12,20],[20,39],[14,24],[13,21],[23,39],[6,10],[23,47],[24,57],[9,36],[11,29],[3,14],[6,32],[9,31],[7,47],[2,18],[2,18],[4,25],[2,15],[0,34],[0,35],[0,61],[-4,50],[-5,53],[-9,51],[-10,40],[-9,32],[-11,30],[-2,9],[-18,50],[-11,30],[-9,32],[-15,54],[-1,4],[-14,55],[-11,37],[-7,33],[-11,50],[-5,34],[-2,12],[-10,45],[-4,37],[-1,12],[-2,23],[-2,13],[-3,20],[-3,52],[-2,51],[11,72],[2,5],[14,41],[2,6],[11,24],[17,18],[13,24],[19,20],[14,20],[17,11],[-17,17],[-13,16],[-3,4],[-17,25],[-15,21],[-91,128],[-17,25],[-2,3],[-16,22],[-24,32],[-15,120],[0,171],[0,1],[-1,58],[7,43],[6,40],[7,46],[6,36],[5,33],[19,14],[26,23],[36,25],[33,26],[99,6],[27,-4],[19,-2],[17,-1],[19,-2],[16,-1],[21,-1],[19,-40],[7,-30],[2,-36],[-2,-66],[-2,-49],[-10,-25],[-1,-56],[-11,-97],[-3,-34],[0,-1],[-8,-41],[-7,-36],[-11,-24],[-19,-41],[-23,-47],[-31,-65],[0,-1],[42,-51],[18,-23],[24,-29],[9,-13],[8,-10],[15,-18],[18,-11],[15,-9],[13,6],[8,4],[11,7],[15,9],[21,11],[25,21],[22,13],[30,20],[5,4],[19,13],[16,12],[30,24],[11,8],[9,8],[48,42],[18,19],[27,26],[2,2],[14,18],[14,16],[11,14],[8,11],[14,18],[22,37],[3,8],[8,20],[16,25],[9,28],[12,40],[12,52],[5,40],[5,25],[1,8],[1,52],[0,4],[3,28],[-2,40],[-1,41],[-4,48],[-3,41],[-6,47],[-1,8],[-7,39],[0,1],[-10,50],[-11,51],[-7,30],[-6,21],[-3,12],[-9,27],[-11,25],[-15,32],[-13,32],[-25,42],[-28,38],[-3,4],[-1,2],[-15,28],[-18,18],[-7,7],[-4,6],[-11,16],[-8,5],[-9,7],[-2,1],[-3,2],[-7,5],[-11,8],[-13,12],[-4,4],[-6,3],[-20,10],[-17,16],[-22,5],[-14,10],[-15,2],[-10,1],[-7,3],[-13,6],[-23,1],[-18,7],[-27,0],[-37,-8],[-16,-4],[-38,-14],[-18,-6],[-27,-6],[-16,-4],[-11,-3],[-10,0],[-18,0],[-22,-4],[-33,6],[-57,9],[-21,14],[-32,14],[-5,2],[-6,5],[-25,24],[-22,18],[-12,10],[-6,8],[-19,27],[-17,17],[-36,38],[-19,17],[-33,44],[-18,18],[-8,6],[-9,7],[-5,9],[-21,29],[-18,24],[-17,25],[-23,31],[-15,20],[-11,20],[-6,10],[-39,69],[-16,30],[-22,49],[-12,24],[-29,78],[-5,19],[-6,18],[-8,44],[-2,9],[-5,30],[-1,1],[-1,16],[-2,38],[0,49],[1,6],[4,24],[5,28],[15,41],[12,26],[11,25],[28,41],[21,20],[17,9],[20,11],[25,16],[19,6],[36,8],[31,20],[20,14],[15,8],[31,26],[2,2],[1,2],[7,9],[15,18],[28,45],[4,8],[18,37],[12,34],[9,30],[1,2],[8,28],[9,37],[14,97],[0,50],[-3,38],[-1,10],[-4,39],[-5,35],[-2,13],[-9,36],[-30,90],[-14,34],[-7,17],[-4,10],[-16,46],[-7,28],[-11,39],[-7,37],[-2,6],[-5,40],[0,3],[-6,51],[-6,39],[0,48],[2,51],[6,73],[6,39],[17,73],[11,28],[13,43],[16,42],[11,27],[13,52],[11,51],[12,64],[3,35],[5,77],[0,46],[1,21],[1,17],[-6,46],[-2,11],[0,4],[-8,53],[-11,54],[-8,31],[-3,17],[-5,31],[-2,17],[-1,20],[-3,22],[-5,41],[-2,33],[0,55],[3,37],[6,35],[0,1],[9,43],[11,34],[8,23],[4,13],[14,29],[14,27],[20,30],[21,32],[21,34],[20,32],[11,27],[4,6],[9,19],[5,15],[8,24],[0,3],[9,49],[1,6],[8,71],[2,51],[0,33],[-3,41],[-1,20],[-2,18],[0,4],[-6,19],[-5,14],[-1,7],[-3,26],[-11,30],[-2,8],[-6,16],[-9,31],[-17,29],[-15,29],[-17,25],[-17,29],[-21,28],[-31,34],[-48,49],[-23,18],[-20,14],[-20,8],[-16,9],[-28,8],[-19,9],[-27,1],[-16,3],[-27,-7],[-21,-10],[-30,-13],[-17,-14],[-27,-19],[-21,-12],[-34,-17],[-27,-8],[-25,-6],[-30,0],[-21,-3],[-36,5],[-25,6],[-25,15],[-21,19],[-66,76],[-29,33],[-22,17],[-77,58],[-31,23],[-84,21],[-29,8],[-108,-4],[-21,0],[-24,-1],[-38,14],[-39,29],[-17,18],[-20,29],[-25,39],[-14,23],[-32,65],[-21,50],[-25,60],[-19,53],[-23,107],[10,77],[12,43],[3,11],[13,51],[62,73],[187,245],[10,20],[46,92],[13,29]],[[29813,36112],[0,-40],[0,-69],[0,-67],[2,-51],[0,-6],[-1,-228],[0,-142],[-1,-320],[-2,-133],[0,-62],[0,-39],[1,-8],[0,-25],[0,-55],[0,-23],[0,-68],[1,-50],[-1,-115],[0,-75],[0,-48],[0,-99],[0,-74],[-1,-45],[1,-68],[0,-33],[0,-67],[0,-64],[-1,-35],[0,-50],[0,-107],[0,-43],[1,-157],[0,-303],[0,-34],[1,-134],[1,-169],[1,-63],[0,-53],[1,-72],[0,-91],[0,-74],[0,-73],[0,-74],[0,-87],[0,-59],[0,-73],[0,-61],[-1,-67],[1,-72],[-1,-56],[1,-37],[0,-34],[0,-52],[0,-46],[0,-36],[0,-62],[0,-43],[0,-63],[1,-50],[0,-74],[0,-36],[0,-49],[1,-41],[0,-63],[0,-62],[0,-36],[1,-49],[0,-53],[0,-50],[0,-60],[0,-64],[0,-126],[1,-62],[0,-63],[0,-62],[1,-63],[0,-109],[-1,-156],[-1,-221],[-1,-404],[2,-60],[0,-91],[0,-46],[0,-57],[-1,-80],[0,-37],[0,-74],[0,-73],[-1,-40],[0,-50],[0,-46],[0,-42],[-1,-57],[0,-55],[0,-93],[-1,-62],[0,-126],[0,-63],[0,-55],[0,-67],[0,-58],[0,-50],[-1,-64],[-1,-54],[0,-188],[1,-36],[0,-138],[-1,-42],[0,-39],[0,-57],[0,-102],[0,-66],[0,-85],[0,-87],[-1,-643],[0,-297],[3,-34],[0,-158],[0,-87],[0,-74],[0,-73],[1,-36],[-1,-63],[0,-56],[0,-115],[0,-88],[1,-74],[0,-66],[0,-35],[-1,-87],[1,-56],[-1,-114],[1,-81],[0,-50],[-4,-38]],[[29813,25040],[-27,-1],[-18,0],[-17,0],[-179,-2],[-49,4],[-24,0],[-25,0],[-26,0],[-17,0],[-27,1],[-27,-1],[-23,0],[-26,1],[-32,0],[-57,1],[-28,0],[-43,-1],[-46,1],[-16,0],[-22,0],[-30,-1],[-28,-1],[-45,-2],[-19,-1],[-24,-1],[-33,7],[-41,0],[-27,0],[-45,0],[-112,2],[-36,0],[-117,0],[-180,-1],[-259,4],[-35,1],[-33,1],[-31,0],[-35,0],[-50,1],[-85,0],[-60,0],[-25,0],[-85,0],[-85,0],[-84,0],[-85,0],[-51,0],[-77,0],[-54,0],[-44,0],[-36,0],[-39,0],[-129,0],[-34,0],[-116,1],[-70,0],[-18,0],[-48,0],[-87,0],[-24,-3],[-22,0],[-56,3],[-17,0],[-102,0],[-51,1]],[[26320,25054],[-127,0],[-18,-4],[-35,0],[-113,-2],[-184,-1],[-90,-2],[-32,0],[-12,0],[-50,3],[-53,3],[-34,0],[-3,0],[-131,2],[-1,0],[-37,0],[-204,2],[-59,0],[-58,1],[-18,0],[-76,1],[-35,0],[-25,1],[-38,0],[-36,0],[-16,0],[-57,0],[-19,1],[-17,-6],[-23,1],[-34,5],[-43,1],[-16,0],[-19,0],[-40,1],[-37,0],[-31,0],[-25,0],[-33,0],[-26,1],[-76,1],[-68,0],[-32,1],[-129,2],[-98,1],[-70,1],[-48,0],[-28,0],[-37,-1],[-41,1],[-55,0],[-18,0],[-34,0],[-99,1],[-71,0],[-42,1],[-89,1],[-75,0],[-21,0],[-45,1],[-32,-1],[-31,1],[-40,0],[-27,1],[-15,0],[-3,0],[-53,0],[-20,0],[-57,0],[-17,1],[-34,0],[-25,0],[-52,0],[-26,3]],[[36876,25010],[-37,0],[-48,1],[-22,-1],[-25,1],[-29,0],[-17,0],[-48,1],[-49,0],[-20,0],[-68,1],[-41,0],[-30,1],[-22,0],[-127,0],[-67,1],[-37,1],[-50,0],[-18,0],[-29,0],[-29,0],[-24,0],[-26,0],[-21,0],[-66,0],[-26,0],[-29,0],[-26,0],[-38,0],[-61,2],[-49,-1],[-24,0],[-32,2],[-19,11],[-6,-1],[-12,-3],[-20,-7],[-21,0],[-35,-1],[-21,1],[-21,0],[-33,-1],[-55,1],[-79,0],[-59,1],[-42,0],[-55,0],[-63,0],[-44,0],[-30,0],[-49,0],[-28,1],[-17,-1],[-22,0],[-16,0],[-29,0],[-57,0],[-18,0],[-18,0],[-48,0],[-68,0],[-29,0],[-114,2],[-33,0],[-66,0],[-61,0],[-16,0],[-24,0],[-26,0],[-16,0],[-34,0],[-14,0],[-2,0],[-31,0],[-26,1],[-24,-1],[-23,1],[-21,0],[-24,0],[-18,0],[-49,0],[-66,0],[-25,0],[-28,1],[-29,-1],[-22,0],[-39,0],[-28,0],[-30,0],[-34,0],[-19,0],[-43,0],[-20,0],[-19,0],[-21,1],[-26,-1],[-18,0],[-30,1],[-26,0],[-49,-1],[-52,1],[-28,0]],[[33353,25024],[-79,0],[-34,0],[-19,0],[-18,0],[-36,0],[-37,0],[-34,0],[-15,0],[-31,0],[-20,0],[-44,1],[-34,0],[-21,1],[-20,-1],[-27,1],[-19,0],[-26,0],[-21,0],[-21,0],[-33,1],[-61,1],[-31,0],[-71,5],[-133,-2],[-16,-2],[-16,0],[-24,0],[-46,0],[-24,0],[-24,1],[-31,0],[-19,0],[-19,0],[-22,1],[-19,0],[-23,0],[-22,0],[-27,1],[-28,0],[-23,0],[-17,0],[-17,0],[-39,0],[-31,0],[-24,0],[-31,0],[-25,0],[-20,0],[-39,1],[-22,0],[-28,0],[-20,0],[-27,0],[-56,1],[-59,0],[-34,0],[-18,-1],[-20,1],[-35,0],[-17,0],[-64,-1],[-17,0],[-20,3],[-77,-1],[-42,-2],[-22,0],[-58,1],[-18,0],[-16,0],[-41,0],[-16,0],[-25,1],[-24,-1],[-20,0],[-46,0],[-34,1],[-19,0],[-18,0],[-23,1],[-21,-1],[-16,-4],[-30,0],[-60,2],[-21,2],[-30,0],[-27,1],[-26,0],[-20,0],[-17,0],[-20,-1],[-31,0],[-28,1],[-94,-2],[-42,2],[-117,3],[-114,1],[-25,0],[-89,0],[-108,0],[-63,0],[-94,0]],[[85656,30656],[0,-8],[0,-28],[0,-30],[-1,-63],[-3,-11],[-28,-93],[15,-365],[-67,-419],[-44,-101],[-140,-325],[-43,-98],[-19,-46],[-12,-51],[-18,-77],[-106,-458],[-13,-54],[-94,-234],[-54,-133],[-1,-72],[-3,-323],[0,-7],[5,-10],[99,-180],[122,-223],[80,-147],[126,-230],[139,-254],[156,-286],[31,-57],[67,-170],[4,-12],[81,-206],[233,-599],[3,-7],[7,-1],[126,-10],[101,-8],[55,-5],[45,-4],[153,-12],[62,-5],[18,-2],[12,-30],[23,-59],[69,-21],[82,-158],[72,-238],[19,-52],[6,-19],[44,-121],[44,-127],[16,-38],[88,-223],[0,-1],[0,-1],[4,-119],[44,-114],[10,-26],[7,-18],[21,-55],[45,-113],[72,-186],[130,-335],[40,-104],[0,-30],[-2,-94],[-29,-73],[2,-184],[-2,-92],[-2,-114],[-3,-179]],[[87550,22308],[-7,0],[-58,2],[-11,0],[-121,1],[-83,1],[-74,1],[-19,-1],[-44,1],[-318,2],[-53,0],[-96,1],[-235,2],[-155,-1],[-62,-1],[-136,2],[-1,0],[-93,0],[-37,0],[-27,-1],[-106,2],[-109,0],[-21,-1],[-18,0],[-38,0],[-21,1],[-33,-1],[-31,1],[-21,0],[-20,0],[-35,-1],[-21,1],[-16,0],[-19,0],[-33,0],[-21,-1],[-24,1],[-24,0],[-21,0],[-35,0],[-16,0],[-18,0],[-36,0],[-36,0],[-62,0],[-61,0],[-25,0],[-29,0],[-20,0],[-51,-1],[-36,0],[-48,1],[-46,-1],[-19,2],[-82,-3],[-16,0],[-39,0],[-73,1],[-18,0],[-58,1],[-157,0],[-140,0],[-33,1],[-24,1],[-74,1],[-89,2],[-1,0],[-81,1],[-50,1],[-100,5],[-106,2],[-48,0],[-39,1],[-36,1],[-22,1],[-38,1],[-30,2],[-42,-2],[-67,3],[-70,4],[-16,0],[-17,1],[-32,0],[-19,0],[-20,-3],[-17,4],[-121,4],[-17,1],[-17,0],[-26,1],[-50,1],[-28,1],[-23,1],[-23,1],[-17,0],[-39,-1],[-19,-2],[-38,-4],[-22,0],[-19,1],[-22,3],[-22,1],[-18,0],[-21,0],[-17,0],[-16,0],[-20,1],[-21,0],[-18,-1],[-27,1],[-20,-1],[-16,1],[-18,0],[-48,0],[-18,0],[-76,0],[-34,0],[-28,0],[-51,0],[-23,0],[-20,0],[-39,0],[-25,0],[-18,0],[-17,0],[-24,-1],[-25,1],[-23,0],[-22,0],[-21,0],[-17,0],[-26,0],[-39,-1],[-41,0],[-23,0],[-24,0],[-22,0],[-20,0],[-23,0],[-33,0],[-20,0],[-47,-1],[-28,0],[-35,0],[-36,0],[-77,0],[-17,0],[-37,0],[-39,0],[-36,1],[-68,-1],[-31,0],[-41,0],[-30,1]],[[81059,22354],[1,58],[0,63],[0,52],[0,44],[0,33],[0,67],[1,57],[0,92],[0,90],[1,308],[0,51],[0,67],[1,412],[0,60],[0,43],[1,50],[0,99],[0,96],[0,98],[0,249],[0,74],[0,110],[1,49],[1,450],[-29,15],[-17,0],[-172,5],[-83,2],[-35,0],[-34,1],[-223,4],[-17,1],[-71,1],[-65,1],[-229,4],[-42,1],[-16,1],[-33,0],[-44,1],[-50,0],[-26,1],[-47,1],[-61,2],[-50,2],[-21,0],[-43,1],[-49,1],[-20,0],[-27,1],[-39,1],[-65,2],[-29,1],[-65,3],[-41,0],[-33,-1]],[[75747,25192],[0,-37],[0,-34],[-1,-44],[0,-42],[-1,-102],[-4,-546],[-1,-47],[-4,-358],[-1,-478],[0,-85],[0,-119],[0,-16],[-1,-132],[0,-22],[0,-12],[0,-49],[0,-14],[-1,-125],[0,-16],[0,-119],[-1,-43],[-1,-99],[0,-53],[-1,-39],[-1,-148],[0,-64],[-2,-187],[-1,-178],[0,-35],[-1,-163],[-2,-65],[-6,-412],[0,-12],[-1,-51],[0,-94],[-1,-43],[0,-36],[-1,-113],[-1,-124],[0,-46],[2,-62],[0,-67],[-1,-60],[0,-51],[0,-34],[-1,-93],[0,-34],[6,-33],[-9,-279],[0,-37],[0,-57],[3,-136],[0,-49],[0,-35],[0,-33],[0,-75],[0,-1],[0,-35],[1,-35],[0,-5],[0,-28],[0,-43],[0,-65],[0,-42],[0,-116],[3,-33],[-3,-50],[0,-36],[1,-34],[-1,-75],[1,-35],[-2,-36],[-2,-32],[-2,-35],[4,-36],[2,-42],[0,-62],[1,-43],[0,-55],[0,-184],[0,-282],[0,-63],[0,-45],[0,-35],[0,-39],[0,-44],[0,-65],[0,-44],[1,-33],[-1,-41],[1,-48],[-1,-132],[0,-67],[0,-32],[0,-82],[-1,-32],[-1,-131],[0,-93],[0,-79],[-1,-270],[-2,-31]],[[75711,16809],[-180,-2],[-95,0],[-114,-2],[-102,-3],[-17,0],[-17,0],[-104,1],[-58,0],[-1,0],[-32,1],[-2,0],[-110,0],[-38,1],[-70,0],[-16,2],[-34,-1],[-63,0],[-7,0],[-136,0],[-99,1],[-177,6],[-257,5],[-34,2],[-29,-2],[-182,1],[-335,4],[-17,0],[-28,0],[-59,-2],[-37,0],[-51,1],[-119,2],[-26,1],[-112,-2],[-156,-3],[-150,-3],[-44,0],[-55,-1],[-158,-2],[-223,-4],[-6,0],[-31,0],[-22,-1],[-19,-1],[-45,-1],[-19,0],[-23,-1],[-21,-1],[-33,-1],[-25,0],[-26,-1],[-25,-1],[-33,-1],[-43,0],[-16,0],[-24,-1],[-29,0],[-24,0],[-86,-3],[-39,-1],[-23,0],[-19,-1],[-33,-1],[-46,0],[-24,-1],[-43,0],[-24,0],[-45,-2],[-42,0],[-110,-2],[-16,0],[-41,-1],[-17,-1],[-32,0],[-28,-1],[-43,-1],[-15,0],[-91,-2],[-28,0],[-16,0],[-21,0],[-24,-1],[-31,-1],[-24,4],[-16,0],[-8,0],[-178,-3],[-42,1],[-114,-2],[-72,-1],[-346,-6],[-22,1],[-205,0],[-28,4],[-79,0],[-33,0],[-19,-1],[-42,-1],[-90,0],[-254,-2],[-57,1],[-45,0],[-319,2],[-123,-4],[-31,0]],[[68619,16774],[0,44],[0,46],[1,52],[0,156],[0,165],[-1,239],[0,51],[0,139],[-1,34],[0,50],[0,41],[1,35],[-1,85],[0,48],[-1,78],[0,33],[0,45],[0,41],[0,88],[-1,43],[0,90],[1,32],[-1,155],[0,64],[0,58],[0,178],[0,42],[0,40],[0,101],[0,90],[0,51],[0,38],[0,71],[0,79],[0,33],[0,61],[4,45],[-4,92],[-1,102],[0,1],[-1,33],[-1,181],[-1,6],[0,53],[0,77],[2,236],[-1,51],[0,46],[0,43],[1,38],[0,40],[-2,61],[1,127],[0,250],[0,33],[-1,120],[0,42],[0,9],[-1,310],[-1,453],[0,513],[0,148],[0,118],[0,35],[0,263],[-1,464],[0,183],[0,39],[0,300],[0,54],[0,497],[-1,23],[-2,175],[0,64],[0,76],[0,39],[-1,47],[0,80],[0,62],[0,33],[0,55]],[[81059,22354],[0,-195],[0,-35],[1,-45],[-1,-37],[0,-33],[0,-32],[-1,-41],[1,-47],[-1,-32],[0,-48],[0,-33],[0,-58],[-1,-132],[0,-37],[0,-57],[0,-50],[-1,-96],[0,-87],[0,-59],[0,-82],[-1,-143],[0,-59],[-1,-33],[0,-69],[0,-3],[0,-127],[-1,-58],[1,-47],[0,-54],[-1,-33],[0,-62],[0,-139],[-1,-49],[0,-64],[0,-76],[-1,-75],[0,-124],[0,-32],[-1,-39],[0,-35],[0,-112],[0,-39],[0,-40],[-1,-36],[1,-81],[-2,-34],[-1,-33],[0,-37],[0,-279],[-1,-331],[-1,-142],[1,-243],[0,-159],[0,-45],[-1,-36],[0,-52],[0,-40],[0,-51],[0,-162],[0,-60],[0,-81],[-1,-108],[0,-125],[0,-300],[-1,-73],[1,-48],[-1,-33],[0,-35],[0,-20],[0,-33],[0,-37],[-1,-40],[0,-41],[0,-41],[0,-47],[1,-38],[0,-88],[0,-56],[1,-96],[0,-74],[0,-37],[0,-39],[0,-39],[0,-43],[0,-45],[0,-40],[0,-51],[0,-35],[0,-63],[0,-64],[0,-42],[0,-51],[0,-68],[0,-142],[0,-95],[-1,-41],[0,-96],[0,-37],[0,-35],[-1,-41],[0,-43],[0,-58],[0,-38],[-4,-99],[3,-233],[1,-64],[0,-39],[0,-217],[-1,-264],[-1,-116],[-2,-108],[-47,-5],[-29,-1],[-45,2],[-22,0],[-22,0],[-18,0],[-3,0],[-60,1],[-6,0],[-42,0],[-72,-2],[-83,3],[-26,0],[-98,3]],[[80465,13989],[-3,0],[-12,1],[-138,7],[-28,0],[-21,0],[-76,1],[-23,1],[-30,0],[-21,0],[-19,1],[-37,0],[-27,1],[-17,-1],[-35,1],[-31,0],[-35,1],[-40,-1],[-44,0],[-21,1],[-25,-1],[-11,0],[-21,0],[-88,2],[-28,0],[-22,1],[-16,2],[-24,0],[-21,0],[-43,-5],[-29,1],[-120,3],[-96,3],[-81,0],[-24,0],[-34,0],[-15,0],[-37,2],[-73,1],[-181,2],[-78,0],[-249,2],[-67,2],[-257,4],[-85,1],[-3,0],[-115,2],[-178,2],[-123,1],[-25,1],[-27,0],[-102,3],[-24,-1],[-182,-3],[-116,1],[-16,0],[-25,0],[-34,0],[-91,1],[-41,-1],[-42,0],[-47,-1],[-19,0],[-24,-1],[-64,-1],[-31,0],[-42,-1],[-25,0],[-17,0],[-38,-1],[-65,0],[-68,-1],[-16,-1],[-28,0],[-36,0],[-27,0],[-24,1],[-15,0],[-49,0],[-16,-4],[-23,1],[-32,-1],[-31,0],[-28,0],[-25,0],[-18,0],[-52,1],[-51,0],[-24,0],[-42,1],[-42,-9],[-11,-2],[-8,-2],[-16,7],[-5,2],[-18,1],[-61,1],[-42,-1],[-55,0]],[[75703,14017],[0,119],[0,60],[0,53],[0,101],[0,61],[1,40],[-1,83],[1,73],[0,37],[0,72],[-2,98],[1,144],[1,161],[1,185],[0,172],[0,178],[3,329],[0,16],[2,181],[0,54],[1,77],[1,189],[0,2],[0,35],[-1,272]],[[68619,16774],[-78,-1],[-66,-1],[-40,0],[-8,0],[-13,0],[-89,-1],[-70,-1],[-116,-2],[-22,0],[-5,0],[-12,0],[-3,0],[-8,0],[-18,0],[-135,-2],[-21,0],[-36,0],[-37,-1],[-60,0],[-25,0],[-21,-1],[-16,1],[-195,1],[-19,0],[-64,-1],[-146,-1],[-171,-1],[-88,-1],[-27,0],[-15,0],[-46,0],[-48,-4],[-18,0],[-26,2],[-18,1],[-33,3],[-63,-4],[-55,0],[-82,2],[-20,-1],[-18,-1],[-46,-2],[-29,0],[-242,-2],[-378,-2],[-232,-2],[-40,0],[-160,1],[-216,1],[-84,0],[-29,1],[-32,0],[-10,0],[-6,0],[-22,-1],[-153,0],[-21,0],[-227,-2],[-137,0],[-24,0],[-60,3],[-28,1],[-20,-1],[-29,1],[-30,-1],[-44,1],[-29,1],[-40,1],[-37,0],[-207,1],[-227,2],[-52,0],[-99,-2],[-54,-1],[-159,-2],[-60,-1],[-150,-1],[-91,-1],[-56,0],[-223,3],[-20,-2],[-17,0],[-19,-1],[-31,-1],[-21,0],[-25,-1],[-21,-1],[-21,1],[-26,0],[-57,1],[-22,0],[-33,0],[-27,-1],[-25,0],[-99,-1],[-126,-1],[-58,-1],[-86,0],[-82,-1],[-16,0],[-73,2],[-18,-1],[-22,0],[-18,0],[-15,0],[-107,0],[-18,0],[-18,0],[-22,0],[-15,0],[-46,-1],[-21,0],[-21,0]],[[61539,16747],[0,51],[0,35],[0,64],[0,44],[0,57],[-1,35],[0,47],[0,46],[0,41],[-1,33],[0,94],[0,88],[0,82],[0,59],[0,52],[0,40],[0,39],[0,1],[-1,106],[0,41],[0,33],[0,54],[-1,62],[0,34],[0,50],[0,44],[0,139],[0,36],[0,108],[0,39],[0,38],[0,7],[0,34],[0,48],[0,37],[0,33],[1,38],[1,50],[0,89],[-1,64],[0,49],[-1,180],[0,58],[-2,444],[0,282],[-2,131],[1,134],[0,1],[6,71],[-2,33],[-2,33],[-2,48],[0,76],[0,48],[0,40],[0,32],[0,2],[-1,105],[0,58],[0,52],[-1,87],[1,77],[-1,71],[0,153],[0,49],[0,38],[0,83],[0,56],[0,48],[0,55],[0,61],[0,58],[-1,72],[0,54],[1,98],[-1,65],[0,117],[0,45],[-1,73],[0,36],[1,101],[-1,50],[0,45],[0,45],[-1,54],[0,40],[0,36],[0,82],[-1,49],[1,67],[-1,46],[1,61],[0,47],[-1,54],[0,39],[0,1],[-1,61],[0,42],[0,41],[0,37],[0,44],[0,47],[0,36],[1,73],[0,59],[-1,59],[0,104],[0,50],[0,42],[0,33],[0,117],[0,53],[-1,59],[0,39],[0,36],[0,56],[0,51],[-1,133],[0,37],[1,104],[0,43],[0,39],[0,40],[0,36],[-1,58],[0,40],[0,44],[-1,36],[0,19],[2,247],[0,19],[0,10],[0,19],[0,13],[-1,25],[-2,57],[-1,56]],[[47404,25142],[5,-222],[0,-247],[0,-1],[1,-222],[0,-102],[0,-80],[0,-39],[1,-259],[1,-91],[-2,-33],[1,-37],[-1,-37],[0,-50],[0,-43],[0,-40],[1,-247],[0,-179],[0,-51],[0,-74],[1,-36],[0,-80],[0,-66],[0,-32],[0,-111],[0,-44],[1,-54],[-1,-57],[1,-51],[0,-51],[-1,-47],[0,-58],[0,-61],[0,-40],[0,-102],[1,-35],[0,-33],[0,-43],[0,-24],[0,-10],[0,-34],[-1,-37],[0,-38],[1,-39],[0,-51],[0,-51],[0,-53],[0,-99],[0,-35],[0,-47],[1,-40],[-1,-46],[1,-66],[0,-45],[0,-51],[-1,-45],[1,-50],[0,-57],[1,-41],[-1,-32],[0,-37],[1,-51],[-1,-39],[1,-35],[0,-27],[0,-42],[0,-62],[1,-41],[0,-66],[-1,-38],[1,-33],[0,-97],[1,-59],[0,-146],[1,-183],[0,-3],[0,-68],[0,-87],[-3,-119],[0,-65],[3,-50],[0,-61],[0,-35],[0,-35],[0,-32],[6,-54],[-1,-87],[-3,-385],[-4,-544],[0,-66],[0,-66],[0,-33],[1,-118],[0,-50],[1,-50],[4,-95],[-2,-301],[-1,-107],[-1,-37],[0,-39],[0,-146],[1,-76],[0,-172],[0,-34],[0,-55],[1,-62],[0,-102],[0,-38],[0,-58],[0,-37],[0,-45]],[[47420,16728],[-143,1],[-26,1],[-24,0],[-19,1],[-83,3],[-191,5],[-104,6],[-11,0],[-11,0],[-27,1],[-34,1],[-23,0],[-153,3],[-37,1],[-32,1],[-34,0],[-74,2],[-16,0],[-15,0],[-17,1],[-56,1],[-43,1],[-16,0],[-23,0],[-25,0],[-33,1],[-50,1],[-119,1],[-51,0],[-28,1],[-138,1],[-52,0],[-64,0],[-37,0],[-36,0],[-25,0],[-74,0],[-72,0],[-19,1],[-33,-1],[-59,0],[-42,0],[-59,0],[-64,-1],[-28,1],[-16,0],[-67,-1],[-30,0],[-94,-1],[-41,0],[-49,0],[-34,0],[-18,0],[-20,0],[-20,0],[-16,0],[-21,0],[-18,0],[-33,0],[-55,1],[-80,0],[-24,0],[-71,0],[-223,0],[-2,0],[-18,0],[-22,0],[-13,0],[-95,0],[-53,1],[-26,0],[-27,1],[-25,0],[-29,-1],[-80,-1],[-16,-1],[-19,0],[-30,-3],[-3,-1],[-46,-1],[-18,-1],[-68,-2],[-51,-3],[-28,-2],[-20,-1],[-22,-1],[-30,-2],[-16,0],[-57,-2],[-56,-4],[-48,-2],[-40,-3],[-26,0],[-25,1],[-31,-1],[-29,-4],[-22,-3],[-22,-2],[-16,0],[-18,-1],[-27,-1],[-145,-7],[-90,-3],[-93,-3],[-37,-1],[-116,-10],[-27,-1],[-307,-14],[-1,0],[-54,-3],[-68,-3],[-218,4],[-66,-1],[-106,0],[-28,1],[-19,0],[-272,2],[-25,0],[-29,1],[-40,0],[-96,1],[-49,0],[-147,2],[-39,-4],[-15,2],[-27,1],[-56,0],[-22,0],[-34,1],[-44,0],[-19,0],[-21,0],[-21,0],[-29,-1],[-21,1],[-20,0],[-23,2],[-105,0],[-50,0],[-50,0]],[[40367,16688],[-1,138],[0,92],[1,54],[0,54],[0,35],[0,46],[1,43],[0,486],[-1,241],[0,196],[0,175],[0,101],[0,111],[0,104],[0,223],[0,61],[0,148],[-1,392],[0,73],[0,222],[0,236],[4,63],[0,82],[1,46],[0,413],[0,47],[-1,46],[1,66],[0,33],[0,41],[0,39],[0,37],[0,31],[0,35],[1,46],[0,98],[0,42],[0,41],[0,59],[0,2],[0,35],[0,48],[0,33],[0,113],[0,112],[1,53],[-1,35],[0,43],[-1,121],[1,82],[0,79],[1,42],[0,90],[0,52],[0,78],[1,37],[0,68],[0,96],[2,214],[-4,86],[0,32],[0,55],[0,59],[0,39],[-1,58],[1,56],[0,42],[0,66],[0,57],[1,122],[0,45],[0,41],[0,42],[-1,53],[1,34],[0,32],[-1,59],[1,36],[1,92],[-1,62],[1,78],[0,33],[0,44],[0,53],[0,53],[1,41],[0,62],[-1,57],[1,67],[0,70],[0,57],[0,23],[0,13],[0,102],[1,296],[1,164]],[[54458,25126],[0,-126],[0,-96],[0,-181],[-2,-57],[1,-66],[6,-495],[2,-130],[0,-28],[2,-37],[1,-215],[0,-40],[-1,-103],[2,-295],[1,-384],[2,-107],[-1,-176],[2,-231],[-2,-94],[-2,-154],[-1,-173],[0,-182],[-2,-352],[0,-94],[3,-360],[1,-239],[-1,-352],[-1,-305],[3,-35],[0,-37],[3,-436],[0,-221],[1,-42],[-1,-36],[0,-9],[1,-209],[0,-213],[0,-225],[0,-119],[1,-358],[2,-224],[-2,-232],[2,-221],[1,-177],[0,-69],[1,-172],[0,-86],[2,-88],[0,-47],[1,-65]],[[54483,16733],[-29,1],[-16,-1],[-239,-2],[-2,0],[-28,-1],[-17,0],[-91,-2],[-23,0],[-370,-3],[-77,-1],[-106,1],[-22,0],[-50,0],[-36,1],[-43,0],[-33,0],[-23,0],[-56,0],[-36,0],[-51,-1],[-29,0],[-22,0],[-40,0],[-107,-1],[-218,7],[-226,-7],[-68,2],[-44,0],[-38,0],[-79,-1],[-47,-1],[-20,-1],[-19,-2],[-66,-1],[-27,0],[-32,0],[-45,0],[-26,1],[-26,1],[-36,0],[-86,0],[-145,-1],[-33,-1],[-27,0],[-23,0],[-22,0],[-43,0],[-42,0],[-35,-1],[-5,0],[-34,0],[-32,-1],[-61,0],[-28,0],[-30,0],[-44,-1],[-53,-1],[-77,1],[-8,0],[-33,0],[-36,-1],[-56,0],[-21,-1],[-46,0],[-37,-6],[-21,0],[-34,8],[-17,1],[-17,-1],[-22,0],[-23,-9],[-60,5],[-170,1],[-18,0],[-18,0],[-16,0],[-16,1],[-83,6],[-82,-8],[-27,0],[-21,-1],[-43,0],[-33,0],[-31,0],[-41,-1],[-26,-1],[-25,0],[-86,-2],[-53,0],[-23,0],[-23,0],[-101,-1],[-101,0],[-17,0],[-78,0],[-42,0],[-38,0],[-36,1],[-35,-1],[-33,0],[-48,-1],[-67,0],[-57,0],[-295,3],[-206,-1],[-89,-1],[-17,0],[-172,2],[-16,2],[-2,0],[-77,1],[-17,1],[-50,0],[-16,1],[-86,2],[-33,0],[-37,1],[-80,2],[-69,0],[-32,1],[-32,1],[-38,1],[-33,1],[-46,-1],[-37,1],[-17,0],[-24,1],[-69,0],[-40,2],[-41,0],[-57,1],[-33,1]],[[61539,16747],[-131,0],[-147,-2],[-86,-1],[-113,-1],[-256,-3],[-79,-1],[-70,0],[-219,2],[-66,1],[-37,0],[-85,0],[-180,0],[-39,0],[-125,0],[-75,0],[-59,-4],[-65,-1],[-35,1],[-73,-2],[-564,3],[-74,-2],[-72,-2],[-17,0],[-4,0],[-126,-2],[-68,-1],[-3,-1],[-80,-1],[-20,-1],[-106,-2],[-18,3],[-438,-3],[-85,-1],[-18,16],[-92,1],[-185,-1],[-63,0],[-142,-1],[-84,-1],[-18,0],[-197,-2],[-82,-3],[-60,-2],[-211,1],[-87,0],[-444,2],[-139,2],[-65,-5],[-19,-2],[-35,-3],[-33,0],[-260,-1],[-182,0],[-63,0],[-87,0],[-218,1],[-64,1],[-102,1],[-42,0],[-83,-1],[-67,-2],[-33,1],[-88,0],[-19,3],[-27,1],[-132,1]],[[19290,25102],[0,-85],[0,-76],[1,-35],[0,-42],[0,-41],[0,-37],[-1,-80],[0,-52],[3,-406],[0,-60],[-3,-73],[-1,-96],[0,-43],[1,-45],[-1,-139],[0,-69],[0,-101],[0,-48],[0,-66],[-1,-122],[1,-70],[-1,-66],[0,-75],[0,-49],[0,-57],[-1,-56],[0,-64],[0,-60],[-1,-94],[0,-49],[0,-55],[-1,-134],[0,-96],[0,-39],[-1,-54],[1,-42],[-1,-157],[0,-125],[0,-62],[0,-49],[0,-32],[4,-466],[-1,-392],[0,-82],[0,-5],[-2,-49],[2,-167],[0,-163],[0,-14],[-1,-157],[0,-20],[3,-7],[-4,-335],[0,-59],[0,-122],[-1,-282],[0,-134],[0,-180],[1,-120],[-1,-89],[0,-50],[1,-132],[0,-65],[-1,-127],[0,-73],[0,-296],[0,-94],[-1,-321],[0,-33],[0,-109],[1,-475],[0,-60],[0,-84],[0,-49],[0,-56],[0,-106],[-3,-95]],[[19281,16833],[-139,-3],[-4,0],[-40,-1],[-100,1],[-33,1],[-29,0],[-75,1],[-57,0],[-39,1],[-16,0],[-22,-1],[-28,0],[-69,0],[-55,0],[-50,0],[-11,0],[-6,0],[-16,-1],[-17,1],[-58,0],[-60,0],[-31,0],[-48,0],[-27,0],[-21,0],[-19,0],[-55,0],[-44,0],[-57,2],[-109,0],[-48,1],[-79,0],[-68,0],[-93,0],[-22,0],[-115,1],[-72,-1],[-69,0],[-32,1],[-23,0],[-20,0],[-76,1],[-38,-1],[-17,1],[-46,-1],[-42,-1],[-41,1],[-109,0],[-26,0],[-168,-1],[-46,0],[-36,0],[-17,0],[-70,-1],[-84,-1],[-89,1],[-43,0],[-43,1],[-10,0],[-6,0],[-72,0],[-171,1],[-28,0],[-46,1],[-64,0],[-43,0],[-21,0],[-33,-1],[-46,-1],[-22,-1],[-20,0],[-29,0],[-25,0],[-17,0],[-21,0],[-97,0],[-23,0],[-17,0],[-44,-1],[-27,0],[-50,-1],[-57,-1],[-16,1],[-19,-1],[-34,0],[-69,-1],[-21,1],[-55,0],[-19,-1],[-49,1],[-17,0],[-47,-1],[-70,0],[-24,0],[-8,0],[-15,0],[-26,-1],[-37,0],[-30,0],[-26,0],[-17,0],[-54,0],[-18,0],[-30,0],[-23,-1],[-27,0],[-23,1],[-15,0],[-50,4],[-54,0],[-25,0],[-18,-4],[-19,-9],[-21,8],[-16,4],[-19,0],[-24,0],[-75,1],[-50,1],[-25,0],[-136,2],[-53,1],[-37,1],[-56,0],[-102,1],[-17,-1],[-21,0],[-59,-2],[-58,0],[-103,-1],[-77,0],[-39,0],[-61,0],[-195,0],[-40,0],[-114,0],[-4,0],[-25,0],[-36,0],[-3,0],[-56,-2],[-91,0],[-32,5],[-10,0],[-20,-1],[-9,0]],[[12686,16837],[-13,40],[-29,59],[-39,65],[-51,72],[-29,38],[-16,22],[-45,68],[-43,62],[-36,72],[-29,74],[-23,66],[-21,99],[-10,86],[-11,94],[-9,78],[-6,86],[-1,49],[-1,55],[0,39],[4,44],[10,88],[7,65],[7,73],[7,71],[22,83],[22,73],[9,27],[16,53],[23,73],[18,59],[15,56],[5,57],[3,56],[5,60],[5,49],[5,51],[-3,48],[-2,14],[-6,44],[-11,53],[-8,31],[-12,46],[-15,44],[-23,49],[-29,48],[-35,46],[-18,28],[-19,24],[-16,21],[-18,22],[-7,7],[-24,23],[-46,22],[-29,15],[-34,22],[-17,12],[-30,24],[-25,23],[-19,20],[-20,22],[-23,23],[-16,19],[-20,25],[-16,23],[-7,16],[-7,15],[-10,25],[-14,29],[-11,24],[-5,14],[-5,15],[-7,35],[-3,10],[-1,5],[-9,36],[-1,2],[-8,51],[-4,35],[-2,43],[2,32],[9,49],[4,32],[10,51],[17,58],[9,31],[6,35],[19,48],[10,26],[12,28],[14,38],[11,29],[10,29],[10,34],[11,56],[3,43],[3,37],[1,45],[1,40],[-3,57],[-3,35],[-3,39],[-4,32],[-2,11],[-12,49],[-9,18],[-5,10],[-14,23],[-16,26],[-22,40],[-20,28],[-28,38],[-15,18],[-26,31],[-13,18],[-10,19],[-8,16],[-20,45],[-12,35],[-35,63],[-34,44],[-20,23],[-6,61],[-10,51],[-4,33],[-4,27],[-2,63],[3,46],[1,18],[0,5],[7,33],[12,56],[12,37],[13,34],[30,58],[37,62],[16,25],[22,32],[10,20],[5,8],[19,28],[53,97],[16,39],[16,49],[15,60],[8,46],[6,41],[8,112],[-2,46],[-4,46],[-5,35],[-8,55],[-12,56],[-6,43],[-7,46],[-7,41],[-7,67],[-7,54],[-7,109],[0,36],[4,46],[7,110],[-1,97],[-3,60],[-7,42],[-7,47],[-13,58],[-9,41],[-8,28],[-8,30],[-1,3],[-10,30],[-19,51],[-1,4],[-14,27],[-15,37],[-13,35],[-14,31],[-11,27],[-16,42],[-1,2],[-13,30],[-14,50],[-1,2],[-10,29],[-1,3],[-1,2],[-2,6],[-6,26],[-10,33],[-12,60],[-4,38],[-5,32],[-2,26],[-1,11],[-5,42],[1,36],[-4,55],[2,51],[3,33],[6,44],[3,36],[5,23],[9,47],[15,48]],[[26320,25054],[-1,-246],[0,-191],[1,-242],[-1,-61],[0,-43],[0,-38],[0,-45],[0,-36],[2,-42],[0,-47],[0,-52],[-1,-36],[0,-49],[1,-36],[0,-36],[-1,-77],[0,-34],[1,-46],[0,-56],[0,-82],[0,-102],[-1,-42],[0,-33],[0,-37],[0,-51],[0,-58],[0,-470],[-1,-375],[-1,-95],[0,-201],[0,-136],[0,-89],[0,-233],[0,-240],[-2,-429],[0,-73],[0,-39],[-1,-35],[0,-53],[1,-45],[0,-231],[-1,-309],[1,-38],[-1,-56],[0,-1],[2,-50],[-2,-58],[-4,-369],[2,-70],[-1,-46],[0,-32],[0,-50],[0,-61],[0,-2],[-3,-232],[0,-43],[0,-283],[-1,-137],[0,-389],[0,-66],[-1,-241],[0,-40],[0,-35],[0,-155],[0,-91],[0,-2],[-1,-352],[-1,-35],[1,-58],[0,-137],[0,-112],[-2,-102],[2,-36]],[[26306,16804],[-15,0],[-21,0],[-24,0],[-21,0],[-53,0],[-23,0],[-16,0],[-21,0],[-19,0],[-32,0],[-23,-1],[-25,1],[-24,0],[-80,0],[-41,0],[-45,1],[-21,0],[-35,0],[-51,0],[-32,2],[-38,1],[-31,0],[-30,1],[-36,0],[-38,-1],[-52,-1],[-33,1],[-3,0],[-16,-1],[-24,0],[-23,0],[-49,1],[-32,-1],[-22,0],[-16,0],[-40,1],[-36,-1],[-14,0],[-42,0],[-28,0],[-29,0],[-19,0],[-22,-4],[-172,1],[-105,1],[-43,0],[-136,1],[-111,1],[-182,4],[-118,0],[-53,0],[-12,0],[-52,0],[-58,0],[-124,1],[-50,0],[-41,0],[-48,0],[-30,0],[-28,0],[-34,1],[-62,0],[-17,0],[-36,0],[-117,1],[-70,0],[-44,1],[-90,1],[-29,0],[-21,-5],[-39,4],[-16,1],[-58,0],[-41,0],[-26,0],[-20,0],[-31,-1],[-33,0],[-16,0],[-34,1],[-18,0],[-40,0],[-39,1],[-52,0],[-19,0],[-22,0],[-63,1],[-52,0],[-22,-1],[-186,1],[-97,0],[-94,2],[-114,-1],[-48,1],[-27,0],[-141,1],[-35,0],[-117,2],[-8,0],[-33,0],[-69,3],[-35,-1],[-124,1],[-21,0],[-150,0],[-136,2],[-6,0],[-56,0],[-107,1],[-1,0],[-131,1],[-76,1],[-55,0],[-23,-1],[-17,-3],[-122,-1],[-119,0],[-174,-1],[-294,5],[-69,0],[-34,0],[-131,0],[-32,0],[-27,0],[-18,1],[-22,-1],[-48,1],[-101,0],[-108,2]],[[33353,25024],[0,-55],[0,-34],[0,-61],[0,-71],[0,-66],[0,-43],[-1,-71],[0,-50],[0,-150],[-1,-312],[0,-143],[3,-308],[0,-5],[-1,-247],[0,-106],[0,-134],[0,-45],[0,-97],[0,-53],[0,-36],[0,-156],[-1,-71],[1,-129],[0,-39],[0,-35],[1,-49],[0,-33],[0,-49],[0,-53],[0,-56],[0,-44],[-1,-63],[0,-39],[-1,-74],[0,-65],[-1,-109],[-1,-38],[-2,-164],[0,-204],[-2,-57],[0,-1],[0,-32],[-1,-126],[-1,-192],[0,-125],[-1,-35],[0,-35],[0,-37],[0,-44],[0,-88],[0,-36],[0,-33],[0,-47],[1,-36],[0,-45],[1,-51],[1,-152],[1,-40],[2,-186],[0,-32],[1,-81],[0,-36],[1,-54],[0,-53],[1,-50],[0,-44],[1,-45],[0,-43],[1,-48],[0,-62],[0,-32],[0,-35],[0,-62],[0,-36],[0,-35],[0,-17],[0,-20],[0,-102],[0,-34],[0,-42],[0,-36],[0,-65],[0,-36],[0,-47],[0,-40],[0,-39],[0,-34],[1,-92],[0,-38],[0,-52],[0,-42],[0,-78],[0,-62],[0,-48],[0,-33],[0,-49],[0,-35],[0,-45],[0,-101],[-1,-34],[1,-69],[-1,-37],[0,-38],[0,-55],[0,-68],[0,-50],[0,-5],[-1,-43],[0,-46],[0,-43],[0,-35],[0,-61],[0,-35],[1,-55],[0,-34],[1,-47],[0,-42],[0,-32],[0,-44],[-1,-58],[0,-44],[0,-45],[-1,-36],[0,-79],[-1,-37],[0,-64],[-1,-55],[-1,-76]],[[33350,16767],[-3,0],[-127,-3],[-161,1],[-38,0],[-34,-1],[-54,0],[-54,-1],[-21,1],[-66,-1],[-26,0],[-20,0],[-21,0],[-23,0],[-21,0],[-27,0],[-19,0],[-86,0],[-40,0],[-19,0],[-16,0],[-39,-1],[-24,0],[-36,0],[-42,0],[-18,0],[-72,0],[-24,0],[-25,1],[-21,0],[-18,1],[-18,1],[-15,0],[-89,-1],[-102,0],[-40,0],[-4,0],[-26,0],[-34,1],[-18,0],[-45,1],[-34,0],[-42,1],[-84,1],[-20,0],[-33,0],[-28,-1],[-25,0],[-27,0],[-84,1],[-40,0],[-56,1],[-30,0],[-35,0],[-44,1],[-64,0],[-45,0],[-75,0],[-68,2],[-45,0],[-62,0],[-27,0],[-26,0],[-23,0],[-42,1],[-64,0],[-82,0],[-23,0],[-24,0],[-60,0],[-43,1],[-27,0],[-27,0],[-21,0],[-32,0],[-82,1],[-35,0],[-65,0],[-16,0],[-32,1],[-17,0],[-39,0],[-17,0],[-34,0],[-30,1],[-25,0],[-36,0],[-17,-1],[-31,-3],[-8,3],[-7,3],[-21,0],[-31,0],[-20,1],[-16,0],[-23,0],[-35,1],[-57,0],[-20,1],[-33,0],[-29,1],[-70,1],[-58,1],[-165,3],[-184,10],[-82,-2],[-25,-2],[-65,2],[-47,1],[-45,1],[-17,1],[-27,0],[-18,0],[-47,1],[-27,0],[-51,0],[-43,1],[-20,0],[-23,0],[-24,1],[-40,0],[-53,0],[-17,0],[-31,1],[-34,-1],[-77,1],[-77,0],[-48,-1],[-56,0],[-21,0],[-1,0],[-14,0],[-36,0],[-38,0],[-36,0],[-32,0],[-45,0],[-20,-1],[-53,1],[-69,4],[-65,2],[-141,-6],[-57,0],[-32,0],[-97,0],[-23,1],[-47,-1],[-31,1],[-22,-1],[-16,0],[-32,0],[-30,0],[-44,0],[-40,0],[-33,0],[-22,0],[-27,0],[-26,0],[-32,1],[-31,0],[-33,1],[-17,1],[-23,1],[-17,0],[-16,0],[-16,-1],[-40,-1],[-26,0],[-19,0],[-43,0],[-18,0],[-24,1],[-15,0],[-2,0],[-35,-1],[-55,0],[-44,1],[-56,-1],[-37,0]],[[40367,16688],[-79,0],[-1,0],[-87,1],[-58,0],[-15,0],[-17,1],[-380,3],[-125,2],[-27,0],[-20,0],[-40,0],[-26,1],[-38,0],[-60,1],[-31,-1],[-12,1],[-8,0],[-24,0],[-26,0],[-45,1],[-31,1],[-144,-4],[-16,0],[-17,4],[-33,0],[-24,1],[-25,1],[-48,0],[-25,1],[-41,0],[-19,0],[-25,0],[-41,1],[-31,0],[-17,0],[-40,0],[-58,1],[-36,1],[-31,0],[-1,0],[-124,1],[-19,0],[-31,1],[-50,0],[-19,0],[-28,0],[-29,1],[-19,0],[-36,0],[-17,0],[-16,0],[-17,0],[-113,2],[-37,0],[-38,1],[-38,0],[-33,0],[-19,0],[-21,0],[-34,0],[-37,0],[-37,0],[-23,1],[-54,0],[-125,1],[-90,0],[-65,1],[-42,0],[-17,0],[-15,0],[-19,0],[-60,1],[-31,2],[-27,0],[-17,1],[-3,0],[-18,0],[-33,-1],[-34,0],[-39,0],[-23,0],[-30,0],[-29,0],[-18,0],[-31,-1],[-25,1],[-47,1],[-35,2],[-35,1],[-25,0],[-37,2],[-44,1],[-29,1],[-2,0],[-40,2],[-29,1],[-18,1],[-21,0],[-22,1],[-30,1],[-24,1],[-47,1],[-40,1],[-21,1],[-22,0],[-19,1],[-16,0],[-56,1],[-89,3],[-30,1],[-33,1],[-20,0],[-25,1],[-23,0],[-74,2],[-26,1],[-62,1],[-35,-1],[-22,1],[-16,0],[-37,1],[-21,0],[-42,1],[-134,1],[-31,0],[-32,1],[-55,0],[-29,1],[-45,1],[-41,1],[-60,1],[-49,1],[-48,0],[-30,1],[-30,0],[-42,1],[-52,-1],[-42,0],[-17,0],[-44,0],[-46,0],[-20,0],[-278,2],[-29,1],[-51,-1],[-47,1],[-34,0],[-33,0],[-26,0],[-88,0],[-34,0],[-52,0],[-162,0],[-20,0],[-23,0],[-50,-1],[-17,1],[-16,0],[-38,1],[-17,1],[-155,3],[-43,0],[-6,0],[-80,0],[-49,1],[-43,0],[-47,1],[-16,0]],[[87550,22308],[-3,-66],[37,-189],[19,-95],[0,-1],[-7,-167],[0,-5],[32,-222],[4,-24],[-1,-148],[0,-30],[10,-127],[8,-93],[4,-48],[-9,-101],[-4,-39],[-22,-233],[-12,-121],[-1,-119],[1,-21],[4,-95],[-43,-334],[-5,-37],[-22,-163],[-3,-7],[-45,-144],[-38,-119],[-18,-91],[-27,-134],[1,-100],[82,-513],[12,-76],[-3,-101],[-1,-33],[-23,-98],[-96,-424],[-30,-296],[-10,-85],[-99,-214],[-77,-56],[-177,-168],[-58,-40],[-56,-38],[-47,-32],[-65,-43],[-57,-86],[-56,-82],[-88,-175],[-97,-318],[-67,-140],[-10,-20],[-45,-80],[-55,-55],[-34,-34],[-57,-58],[-33,-33],[-41,-79],[-45,-87],[-11,-42],[-15,-55],[-51,-187],[-9,-31],[-55,-165],[-75,-226],[-130,-138],[-45,-77],[-13,-22],[-17,-28],[-41,-69],[-17,-26],[-220,-333],[-21,-72],[-33,-114],[-17,-58],[-10,-33],[-12,-116],[-23,-217],[46,-244],[0,-3],[35,-186],[11,-57],[1,-320],[-100,-545],[-125,-317],[-17,-43],[-1,-7],[-44,-288],[-24,-155],[-26,-170],[-23,-148],[-11,-129],[6,-41],[18,-125],[17,-124],[16,-114],[14,-97],[1,-68],[2,-92],[-24,-223]],[[85034,10266],[-8,10],[-9,11],[-22,30],[-5,6],[-16,20],[-7,9],[-39,31],[-1,1],[-18,2],[-1,0],[-16,-2],[-17,-10],[-49,-39],[-16,-8],[-21,-3],[-3,0],[-14,0],[-16,1],[-17,5],[-1,0],[-24,14],[-40,32],[-30,16],[-16,15],[-11,30],[-15,43],[-23,41],[-24,21],[-18,21],[-27,28],[-20,-4],[-27,-8],[-14,3],[-4,4],[-13,22],[-9,44],[-6,16],[-15,46],[-5,13],[-28,58],[-85,150],[-19,34],[-48,51],[-17,3],[-30,5],[-13,-4],[-23,-6],[-51,-30],[-40,-36],[-24,-28],[-27,-32],[-54,-39],[-28,-11],[-36,3],[-40,16],[-41,27],[-49,32],[-81,40],[-3,1],[-27,23],[-51,77],[-5,-2],[-6,30],[-11,39],[-5,9],[-21,39],[-17,14],[-9,14],[-11,17],[-13,63],[-14,34],[-8,12],[-5,7],[-10,34],[-3,8],[-1,3],[-20,35],[-15,13],[-23,16],[-7,1],[-26,8],[-32,9],[-20,6],[-30,13],[-38,38],[-16,16],[-44,48],[-13,22],[-6,19],[-18,52],[-12,23],[-6,14],[-15,33],[-8,19],[-3,5],[-39,72],[-30,54],[-18,33],[-1,2],[-26,33],[-17,15],[-16,16],[-29,-4],[-25,5],[-32,5],[-16,8],[-16,7],[-15,14],[-17,16],[-36,33],[-30,26],[-7,3],[-18,8],[-17,4],[-1,0],[-1,0],[-27,-5],[-23,3],[-26,5],[-1,1],[-21,2],[-6,-1],[-15,-3],[-17,-9],[-28,-25],[-4,-3],[-16,-10],[-1,-1],[-16,2],[-1,0],[-17,2],[-18,8],[-7,5],[-8,5],[-5,4],[-10,14],[-6,8],[-2,3],[-9,39],[-10,46],[-7,36],[-4,20],[-9,49],[0,36],[0,35],[-4,43],[-2,15],[-2,11],[-9,48],[-1,9],[-7,20],[-9,28],[-14,36],[-5,14],[-28,49],[-1,2],[-21,26],[-18,17],[-31,12],[-33,4],[-24,-6],[-7,-2],[-22,-8],[-28,-12],[-55,-13],[-20,-6],[-25,5],[-4,2],[-12,3],[-20,7],[-30,35],[-1,1],[0,1],[-6,16],[-6,18],[-16,52],[-19,54],[-1,5],[-19,44],[-12,23],[-4,2],[-20,8],[-21,1],[-34,5],[-1,1],[-14,5],[-9,3],[-6,3],[-24,17],[-30,28],[-18,25],[-3,3],[-2,3],[-22,22],[-21,17],[-17,6],[-14,5],[-30,5],[-12,2],[-17,4],[-7,4],[-15,9],[-9,1],[-23,1],[-16,5],[-2,0],[-9,2],[-9,5],[-9,5],[-1,0],[-1,2],[-18,33],[-9,29],[-9,58],[-13,61],[-14,46],[-9,7],[-10,9],[-3,2],[-9,-1],[-7,-1],[-17,-11],[-26,-22],[-1,-2],[-37,-38],[-5,-5],[-6,-3],[-29,-14],[-21,-4],[-6,-1],[-24,2],[-12,6],[-8,3],[-5,6],[-13,16],[-20,34],[-13,26],[-16,33],[-48,75],[-21,35],[-18,18],[-2,1],[-12,7],[-18,10],[-26,15],[-12,7],[-32,22],[-35,29],[-26,30],[-11,16],[-19,28],[-22,39],[-4,6],[-16,43],[-21,42],[-27,27],[-33,12],[-28,-2],[-21,-4],[-27,-4],[-34,-9],[-1,0],[-14,1],[-21,1],[-18,8],[-5,11],[-9,18],[-20,56],[-12,42]],[[19281,16833],[1,-201],[1,-27],[2,-158],[0,-78],[0,-80],[0,-55],[0,-47],[0,-78],[0,-29],[1,-129],[0,-11],[0,-35],[0,-55],[0,-82],[0,-107],[0,-48],[-1,-124],[1,-46],[-1,-82],[0,-34],[0,-39],[0,-52],[0,-125],[0,-49],[0,-83],[0,-118],[0,-59],[0,-86],[0,-45],[0,-61],[0,-125],[0,-125],[-1,-126],[0,-126],[0,-55],[0,-35],[0,-38],[0,-69],[0,-52],[0,-126],[0,-92],[0,-34],[0,-35],[0,-44],[0,-49],[0,-76],[0,-26],[0,-6],[0,-97],[-1,-43],[0,-45],[0,-28],[0,-37],[0,-16],[0,-71],[0,-56],[0,-39],[-1,-58],[0,-94],[0,-13],[-1,-57],[0,-39],[-1,-62],[0,-35],[-1,-47],[0,-43],[0,-44],[0,-36],[-1,-37],[0,-39],[0,-43],[0,-35],[0,-20],[0,-13],[0,-33],[0,-36],[-1,-39],[0,-39],[-1,-91],[0,-52],[0,-34],[-1,-33],[0,-52],[0,-63],[0,-4],[0,-57],[1,-20],[0,-43],[0,-44],[0,-104],[-1,-44],[-2,-35],[3,-109],[58,-1],[33,0],[58,-1],[74,-2],[3,0],[0,-10],[-1,-17],[-3,-148],[-2,-86],[-1,-37],[-1,-52],[-1,-35],[-1,-33],[-1,-54],[-1,-52],[-1,-50],[-1,-37],[-1,-45],[-1,-45],[-2,-99],[-1,-46],[-1,-43],[-2,-63],[-1,-64],[0,-39],[-2,-54],[0,-39],[-2,-56],[-3,-102],[0,-57],[-1,-38],[-1,-79],[-1,-75],[-1,-65],[-1,-35],[-2,-88],[-1,-37],[-2,-88],[-1,-39],[-1,-43],[-1,-38],[-1,-46],[-1,-46],[-1,-45],[-1,-34],[-1,-42],[-2,-85],[-1,-46],[0,-78],[-1,-41],[0,-58],[0,-50],[0,-40],[0,-63],[0,-78],[1,-65],[-1,-68],[0,-41],[1,-39],[-1,-43],[1,-44],[0,-63],[-1,-76],[1,-49],[0,-34],[0,-38],[1,-61],[0,-56],[0,-86],[0,-34],[0,-63],[0,-62],[-1,-70],[0,-56],[-1,-64],[1,-62],[0,-126],[0,-76],[1,-81],[0,-32],[0,-64],[0,-81],[0,-66],[0,-41],[0,-67],[-1,-83],[0,-38],[-1,-58]],[[19450,6561],[-21,4],[-214,4],[-56,1],[-1,0],[-292,6],[-29,1],[-25,0],[-213,5],[-28,0],[-146,3],[-141,3],[-168,3],[-132,3],[-17,0],[-16,1],[-26,0],[-30,2],[-23,1],[-17,0],[-39,0],[-19,0],[-38,1],[-23,1],[-18,0],[-26,1],[-37,1],[-16,0],[-27,0],[-22,2],[-33,0],[-16,1],[-18,1],[-28,1],[-31,0],[-64,2],[-30,1],[-30,1],[-26,1],[-23,0],[-48,2],[-27,0],[-21,1],[-27,1],[-22,0],[-23,1],[-21,-1],[-29,2],[-24,0],[-23,2],[-18,0],[-26,1],[-33,1],[-37,2],[-31,-1],[-25,1],[-30,0],[-20,2],[-20,1],[-18,0],[-22,0],[-19,1],[-31,1],[-23,1],[-36,1],[-24,0],[-25,1],[-37,1],[-24,2],[-21,0],[-20,1],[-59,2],[-21,0],[-34,1],[-171,5],[-99,3],[-27,1],[-126,4],[-84,3],[-62,2],[-221,9],[-82,4],[-17,1],[-11,1],[-81,5],[-7,0],[-13,1],[-41,2],[-97,6],[-67,-1],[-5,0],[-61,0],[-4,0],[-29,0],[-221,-1],[-189,-1],[-30,2],[-48,-1],[-58,2],[-117,4],[-30,1],[-26,0],[-57,2],[-56,0],[-53,1],[-17,1],[-49,2],[-80,3],[-81,1],[-51,1],[-18,0],[-32,0],[-81,3],[-17,0],[-23,0],[-19,1],[-21,1],[-22,-2],[-16,2],[-21,0],[-43,1],[-119,3],[-22,0],[-28,0],[16,22],[63,71],[25,28],[56,80],[12,15],[20,29],[7,17],[24,60],[7,17],[7,17],[14,79],[7,38],[3,25],[2,16],[0,7],[-1,60],[-4,46],[-2,17],[-10,49],[-25,70],[-23,37],[-5,7],[-34,52],[-42,55],[-56,51],[-37,49],[-2,2],[-3,5],[-37,54],[-9,23],[-6,13],[-17,43],[-13,52],[-5,49],[2,17],[2,16],[-4,66],[-2,32],[-1,42],[-1,53],[-2,119],[0,3],[-1,18],[-1,16],[-4,38],[-7,51],[-2,8],[-1,5],[-20,94],[-21,64],[-2,7],[-18,52],[-12,36],[-12,27],[-19,42],[-30,65],[-26,52],[-21,38],[-9,17],[-32,56],[-24,38],[-31,47],[-28,30],[-27,29],[-3,3],[-34,34],[-19,14],[-1,1],[-15,11],[-46,28],[-9,5],[-2,1],[-44,20],[-15,4],[-35,5],[-10,2],[-8,1],[-37,5],[-25,3],[-21,2],[-24,6],[-25,7],[-16,4],[-26,11],[-21,12],[-23,13],[-23,17],[-28,23],[-18,17],[-15,14],[-25,24],[-14,14],[-23,21],[-31,37],[-25,31],[-17,20],[-35,39],[-24,33],[-21,28],[-23,45],[-5,12],[-5,13],[-11,34],[-9,44],[-2,16],[-5,37],[-7,55],[-3,38],[-2,60],[-2,62],[-2,35],[-5,54],[-5,39],[-12,57],[-17,70],[-12,39],[-12,37],[-19,56],[-29,60],[-29,52],[-24,43],[-22,30],[-3,2],[-19,20],[-16,16],[-19,15],[-6,5],[-39,31],[-34,26],[-21,15],[-3,3],[-11,8],[-21,12],[-17,9],[-36,32],[-16,3],[-11,2],[-38,43],[-10,11],[-13,15],[-34,37],[-33,112],[-19,113],[-9,54],[-5,32],[-14,96],[-8,49],[1,20],[0,24],[2,98],[31,186],[47,183],[24,62],[3,8],[19,43],[25,55],[19,34],[14,25],[25,35],[12,23],[18,29],[16,23],[17,17],[18,24],[21,17],[22,20],[11,8],[11,8],[22,19],[23,15],[18,17],[3,2],[20,11],[27,19],[27,14],[25,18],[14,9],[21,15],[8,7],[11,10],[3,3],[19,13],[12,15],[5,6],[8,9],[11,11],[18,21],[0,1],[19,25],[6,9],[20,25],[13,20],[20,34],[4,7],[17,32],[20,37],[15,31],[15,31],[12,39],[14,47],[6,33],[6,52],[3,40],[2,23],[1,58],[0,2],[-2,32],[-5,36],[-10,49],[-10,42],[-15,53],[-26,82],[-1,4],[-12,40],[-11,40],[-23,75],[-2,9],[-10,36],[-6,23],[-8,28],[-8,31],[-3,38],[0,6],[-2,7],[-5,28],[-9,72],[-4,42],[-1,48],[1,48],[4,44],[2,35],[1,2],[6,38],[7,36],[15,49],[14,44],[1,4],[6,27],[10,24],[8,19],[8,29],[10,40],[10,36],[7,40],[1,12],[7,45],[5,63],[1,51],[2,48],[-1,34],[-6,38],[-10,50],[-7,55],[-8,41],[-12,48],[-8,44],[-12,53],[-9,32],[-12,35],[-13,41],[-13,31],[-11,34],[-16,43],[-15,58],[-7,39],[-1,8],[-6,37],[-5,37],[-3,21],[0,14],[-1,15],[0,5],[0,39],[2,22],[3,23],[2,16],[5,49],[13,45],[15,41],[16,38],[13,33],[24,33],[27,31],[31,30],[27,15],[30,11],[24,8],[3,1],[18,4],[8,4],[13,6],[46,23],[43,18],[26,22],[32,32],[25,24],[26,32],[30,45],[30,63],[29,78],[22,78],[11,79],[8,66],[1,66],[-6,69],[-17,79],[-29,88],[-11,33]],[[26306,16804],[0,-59],[0,-39],[0,-56],[0,-58],[0,-102],[-4,-32],[1,-295],[1,-180],[-4,-111],[-1,-65],[0,-258],[0,-140],[0,-279],[0,-174],[0,-124],[4,-138],[0,-46],[-4,-159],[0,-79],[0,-63],[5,-100],[0,-38],[-1,-80],[0,-72],[0,-48],[0,-73],[1,-76],[0,-91],[0,-6],[0,-55],[1,-146],[0,-85],[0,-35],[1,-36],[1,-40],[1,-85],[0,-49],[-1,-55],[-1,-38],[-1,-37],[-1,-77],[-3,-232],[0,-62],[-1,-144],[0,-48],[-1,-394],[3,-159],[4,-36],[0,-52],[1,-53],[0,-46],[1,-88],[0,-45],[0,-42],[-3,-363],[38,0],[53,-1],[32,-1],[20,0],[19,0],[47,-1],[28,-1],[0,-1],[-1,-86],[-2,-191],[-3,-364],[-2,-65],[-1,-302],[0,-33],[-1,-59],[-7,-289],[-2,-171],[-4,-335],[-1,-64],[4,-61],[0,-58],[-2,-223],[-1,-97],[-1,-45],[0,-52],[0,-40],[-1,-58],[0,-42],[0,-56],[1,-60],[-1,-37],[1,-97],[0,-63],[0,-37],[-1,-34],[0,-57],[0,-35],[0,-39],[0,-70],[0,-57],[0,-83],[1,-51],[-1,-46],[1,-52],[-1,-44],[1,-44],[-1,-52],[0,-46],[0,-50],[0,-41],[-1,-76],[0,-44],[0,-37],[0,-40],[-3,-121],[2,-146],[2,-202],[-1,-114],[-1,-303]],[[26515,6387],[-97,3],[-197,6],[-45,2],[-174,5],[-78,2],[-28,1],[-175,6],[-73,-5],[-314,0],[-133,8],[-152,3],[-179,5],[-20,0],[-117,2],[-1,0],[-86,3],[-29,0],[-21,0],[-142,6],[-162,6],[-56,2],[-88,3],[-72,1],[-46,-1],[-19,1],[-32,0],[-74,4],[-50,3],[-147,1],[-151,3],[-23,0],[-16,0],[-38,2],[-29,1],[-23,0],[-82,3],[-19,-1],[-36,1],[-111,2],[-60,2],[-144,4],[-3,0],[-144,5],[-51,2],[-97,3],[-36,2],[-20,0],[-46,2],[-65,1],[-20,0],[-46,2],[-16,0],[-45,1],[-29,0],[-37,2],[-16,0],[-21,1],[-26,0],[-27,1],[-22,0],[-54,2],[-19,0],[-23,1],[-21,1],[-25,0],[-22,1],[-19,1],[-22,0],[-21,1],[-31,1],[-30,2],[-62,2],[-20,1],[-21,1],[-20,0],[-23,1],[-20,1],[-7,0],[-94,3],[-32,1],[-16,0],[-237,6],[-16,-4],[-135,3],[-271,5],[-23,0],[-293,6],[-83,2],[-89,1],[-122,3],[-296,10],[-29,1],[-40,0],[-16,1],[-24,0],[-18,1],[-42,0],[-15,2],[-28,0],[-18,1],[-44,1],[-19,0],[-38,1],[-59,-3],[-55,3],[-59,3],[-35,2],[-53,3]],[[33350,16767],[-1,-41],[0,-65],[-1,-41],[-1,-92],[-1,-58],[0,-63],[-1,-63],[-1,-46],[0,-42],[-1,-102],[-1,-133],[0,-32],[-1,-36],[0,-64],[-1,-50],[0,-34],[-2,-48],[-1,-41],[0,-4],[0,-21],[0,-65],[0,-61],[0,-65],[0,-116],[0,-36],[-1,-79],[0,-83],[0,-89],[0,-33],[0,-32],[0,-36],[0,-47],[1,-37],[0,-64],[0,-37],[0,-98],[0,-121],[0,-69],[0,-61],[0,-49],[0,-32],[-1,-54],[1,-60],[-1,-39],[1,-37],[-1,-35],[0,-46],[0,-57],[0,-68],[0,-121],[0,-92],[0,-36],[0,-37],[0,-58],[1,-47],[0,-50],[-1,-52],[0,-33],[0,-23],[0,-12],[0,-35],[0,-23],[1,-125],[1,-38],[0,-80],[0,-40],[0,-155],[-1,-119],[1,-32],[0,-37],[0,-36],[0,-72],[0,-60],[1,-53],[0,-247],[0,-133],[0,-34],[1,-157],[0,-48],[-1,-40],[0,-136],[0,-48],[0,-22],[0,-112],[0,-33],[0,-67],[0,-36],[0,-67],[0,-68],[0,-32],[0,-37],[1,-37],[1,-130],[1,-63],[0,-16],[1,-49],[1,-40],[1,-60],[0,-33],[0,-19],[0,-28],[0,-27],[0,-33],[0,-95],[-1,-234],[0,-39],[0,-156],[-1,-139],[0,-85],[0,-113],[-1,-67],[0,-49],[0,-38],[0,-46],[0,-48],[-1,-104],[0,-76],[0,-50],[0,-38],[0,-38],[0,-58],[0,-79],[0,-53],[-1,-65],[0,-55],[0,-146],[0,-5],[0,-112],[0,-192],[0,-37],[0,-151],[0,-78],[0,-49],[0,-52],[0,-85],[0,-40],[0,-38],[0,-39],[0,-45],[0,-53],[0,-44],[0,-35],[1,-58],[1,-38],[1,-38],[0,-47],[-1,-36],[-1,-40],[1,-84],[0,-43],[0,-40],[0,-42],[0,-105],[1,-91],[0,-81],[0,-59],[-1,-143],[0,-56],[2,-142],[0,-43],[2,-124],[-1,-55],[-1,-67],[-1,-58]],[[33343,6251],[-20,0],[-36,-1],[-123,-2],[-96,-1],[-16,9],[-29,0],[-50,0],[-39,0],[-52,0],[-51,-1],[-21,0],[-53,0],[-65,-1],[-18,0],[-45,-1],[-22,0],[-64,0],[-26,0],[-62,-1],[-28,0],[-25,0],[-17,0],[-46,-1],[-21,1],[-21,0],[-17,0],[-21,-1],[-39,0],[-28,0],[-21,0],[-75,1],[-225,1],[-165,1],[-22,0],[-104,1],[-129,1],[-35,3],[-107,1],[-19,1],[-27,0],[-22,1],[-17,0],[-22,0],[-40,1],[-24,0],[-25,1],[-17,0],[-20,0],[-60,2],[-81,1],[-67,2],[-47,0],[-30,1],[-28,1],[-17,0],[-23,0],[-17,0],[-17,1],[-25,0],[-31,1],[-37,1],[-19,0],[-51,1],[-16,0],[-38,2],[-21,0],[-23,1],[-16,0],[-45,0],[-19,0],[-23,2],[-22,0],[-21,1],[-24,0],[-48,2],[-1,0],[-34,1],[-37,1],[-48,2],[-15,0],[-50,1],[-23,1],[-40,0],[-25,1],[-81,2],[-32,1],[-30,1],[-24,1],[-33,1],[-43,1],[-37,1],[-34,1],[-19,0],[-36,1],[-17,1],[-23,0],[-28,1],[-18,0],[-16,1],[-18,0],[-49,2],[-20,0],[-17,1],[-28,0],[-24,1],[-19,1],[-26,1],[-30,0],[-27,1],[-33,1],[-19,0],[-24,1],[-41,1],[-22,1],[-17,0],[-19,2],[-22,0],[-16,1],[-37,-2],[-20,1],[-25,1],[-27,1],[-32,1],[-36,2],[-27,1],[-18,1],[-20,0],[-27,1],[-16,0],[-25,0],[-16,1],[-97,1],[-62,2],[-181,3],[-5,0],[-34,1],[-13,1],[-16,0],[-77,3],[-71,4],[-21,1],[-39,2],[-16,0],[-42,1],[-16,0],[-31,1],[-17,1],[-14,0],[-59,2],[-177,5],[-137,4],[-14,1],[-67,2],[-81,3],[-257,7],[-45,1],[-117,3],[-17,1],[-152,1],[-45,2],[-18,1],[-216,8]],[[75703,14017],[-1,-4],[0,-73],[0,-160],[1,-427],[0,-2],[1,-172],[1,-218],[0,-349],[2,-468],[0,-159],[0,-306],[1,-296],[-1,-167],[0,-235],[-2,-236],[0,-231],[1,-203],[1,-264],[2,-236],[0,-232],[0,-172],[1,-62],[1,-497],[0,-56],[0,-185],[1,-172],[0,-277],[0,-159],[0,-2],[2,-225],[0,-138],[25,1],[-1,-56],[-2,-196],[0,-57],[-2,-139],[0,-49]],[[75734,7138],[-51,96],[-114,317],[-25,70],[-3,0],[-17,-2],[-102,-9],[-55,-5],[-147,-13],[-199,-14],[-46,-4],[-1,0],[-55,-4],[-137,-7],[-112,-7],[-109,-9],[-19,-2],[-78,-9],[-226,-15],[-157,-6],[-18,-4],[-27,-3],[-38,-3],[-23,-1],[-17,-2],[-17,-5],[-114,-12],[-188,-18],[-239,-24],[-18,-1],[-86,-4],[-126,-9],[-98,-5],[-190,-11],[-55,-3],[-26,-1],[-131,-8],[-9,0],[-75,-4],[-16,-1],[-47,-3],[-176,-10],[-38,-2],[-59,-10],[-38,-7],[-32,-4],[-68,-3],[-148,-6],[-78,-1],[-49,-1],[-16,-1],[-174,-10],[-251,-11],[-23,0],[-128,-2],[-16,-1],[-49,-2],[-40,-2],[-29,-2],[-59,-3],[-16,-2],[-22,-1],[-25,-2],[-16,-1],[-27,-1],[-27,-1],[-16,-2],[-19,-1],[-24,-1],[-18,-1],[-28,-2],[-21,-1],[-16,-1],[-20,-1],[-21,-1],[-28,-2],[-18,-1],[-21,-1],[-18,-2],[-33,-1],[-25,-2],[-24,-1],[-16,2],[-6,-1],[-16,-4],[-18,0],[-15,0],[-21,-1],[-29,-7],[-22,-1],[-26,-1],[-33,-3],[-33,-2],[-19,3],[-15,2],[-22,-2],[-170,-17],[-26,2],[-41,-1],[-44,-2],[-45,-2],[-20,-1],[-24,0],[-17,-1],[-250,-4],[-106,-7],[-32,-2],[-46,-3],[-138,-6],[-163,-6],[-85,-3],[-3,0],[-155,-6],[-237,-8],[-68,-2]],[[68608,7202],[0,258],[2,41],[4,466],[4,326],[0,69],[1,67],[1,117],[0,61],[1,60],[1,56],[-1,115],[2,195],[0,84],[1,172],[1,83],[2,140],[0,4],[2,74],[3,211],[1,34],[-1,102],[0,132],[0,111],[0,45],[0,62],[-1,123],[0,162],[-1,116],[0,85],[0,99],[0,59],[0,52],[-1,136],[0,29],[0,8],[0,77],[0,117],[-1,247],[0,50],[-1,284],[0,58],[1,560],[0,44],[1,268],[0,192],[0,163],[0,2],[1,456],[0,127],[0,223],[1,141],[0,328],[0,42],[-1,57],[-1,129],[-1,215],[-1,56],[-1,196],[0,37],[-1,76],[-3,415],[0,34],[-2,238],[0,51],[0,3],[0,41],[0,463],[0,16],[1,16],[-1,83],[-1,113]],[[68608,7202],[-27,-2],[-208,-9],[-17,-4],[-31,2],[-16,-2],[-17,-1],[-20,-1],[-51,-1],[-39,0],[-26,0],[-32,-1],[-95,-4],[-64,-2],[-18,0],[-64,-2],[-21,-3],[-20,-1],[-30,0],[-29,-1],[-40,-2],[-151,-10],[-29,1],[-38,2],[-84,-3],[-89,-3],[-63,-3],[-25,-1],[-13,0],[-28,-1],[-363,-12],[-47,-1],[-36,-1],[-24,-2],[-17,0],[-20,-1],[-25,-1],[-22,-1],[-58,-2],[-28,-2],[-36,-1],[-59,-3],[-28,-1],[-17,-1],[-18,-1],[-47,-2],[-18,-1],[-31,-2],[-28,-1],[-18,-1],[-94,-7],[-72,-6],[-121,-4],[-20,2],[-18,-2],[-62,-1],[-33,-3],[-24,-1],[-38,-3],[-91,-4],[-112,-8],[-3,0],[-44,-4],[-18,0],[-99,-2],[-125,-5],[-76,-3],[-101,-5],[-50,-2],[-105,-4],[-25,-1],[-71,-3],[-29,-1],[-61,-3],[-80,-4],[-25,-1],[-32,-1],[-22,-1],[-60,0],[-47,-1],[-43,0],[-2,0],[-83,-1],[-37,1],[-37,1],[-44,-1],[-27,-1],[-110,-4],[-23,1],[-24,-1],[-97,-5],[-17,-1],[-17,-1],[-22,4],[-24,0],[-29,-1],[-35,-3],[-43,-3],[-22,0],[-18,-1],[-24,-2],[-16,0],[-44,-5],[-24,-2],[-19,-3],[-55,-4],[-44,-3],[-39,-2],[-31,-2],[-90,-5],[-47,-2],[-4,-1],[-18,-1],[-44,-2],[-42,-2],[-58,-4],[-32,-2],[-65,-3],[-16,-1],[-24,-1],[-31,-1],[-26,-1],[-67,-5],[-46,-2],[-58,-3],[-28,-1],[-23,-2],[-19,-2],[-27,-3],[-20,0],[-35,-3],[-22,-1],[-35,-3],[-41,-2],[-34,-3],[-29,-1],[-38,-2],[-19,-1],[-97,-8],[-217,-10],[-119,-6],[-27,-1],[-35,-2],[-39,-2],[-45,-2],[-105,-7],[-96,-1],[-14,-1],[-28,-1],[-57,-3]],[[61558,6892],[-3,93],[-1,49],[3,41],[-1,192],[0,184],[1,326],[-1,60],[0,32],[0,8],[-1,58],[-2,50],[0,76],[-1,89],[-2,164],[0,99],[0,63],[1,175],[2,159],[1,74],[1,100],[1,16],[1,150],[1,105],[0,78],[1,53],[-1,192],[-1,115],[0,115],[-1,51],[0,4],[0,64],[-1,250],[-1,99],[0,70],[-2,348],[-1,176],[0,56],[0,39],[-1,232],[0,1],[-1,65],[0,67],[-1,87],[-1,287],[0,70],[-1,165],[0,37],[0,9],[1,140],[0,44],[0,33],[0,38],[0,58],[0,32],[0,63],[-4,67],[-1,120],[0,162],[0,78],[0,171],[0,310],[1,273],[0,104],[-1,186],[0,136],[0,102],[0,153],[0,237],[0,198],[0,96],[0,1],[0,84],[0,287],[0,568],[0,96],[0,39],[0,56],[0,67],[1,87],[1,138],[-2,101],[-4,176],[2,38],[-1,170],[0,53]],[[40367,16688],[0,-183],[0,-1],[1,-295],[0,-226],[-2,-211],[0,-21],[-1,-22],[0,-112],[0,-79],[-1,-206],[-1,-469],[-4,-475],[1,-63],[0,-82],[-1,-35],[1,-62],[-1,-44],[0,-73],[0,-45],[1,-53],[-1,-56],[1,-55],[-1,-54],[1,-63],[0,-77],[-1,-55],[1,-75],[0,-50],[0,-73],[0,-95],[0,-59],[-1,-108],[0,-47],[0,-47],[0,-64],[0,-45],[1,-34],[0,-84],[0,-40],[0,-81],[-1,-238],[0,-50],[0,-57],[-1,-313],[0,-64],[0,-34],[1,-385],[-1,-125],[1,-150],[-1,-76],[0,-10],[0,-156],[1,-61],[0,-158],[1,-65],[-1,-94],[0,-54],[0,-67],[1,-229],[0,-45],[-1,-35],[0,-37],[0,-33],[0,-49],[0,-37],[0,-36],[0,-69],[-1,-56],[0,-34],[0,-51],[0,-43],[0,-338],[2,-71],[-1,-94],[0,-124],[0,-50],[0,-38],[0,-45],[0,-43],[0,-45],[0,-34],[0,-47],[0,-44],[0,-34],[0,-55],[1,-39],[0,-87],[1,-124],[0,-33],[0,-230],[0,-75],[0,-94],[-3,-64],[0,-114],[0,-178],[0,-119],[0,-138],[-1,-131],[0,-80],[0,-86],[0,-80],[0,-123],[0,-84],[0,-233],[0,-234]],[[40357,6350],[-23,-1],[-17,-1],[-130,-4],[-2,0],[-116,-4],[-72,-2],[-71,-2],[-49,-1],[-211,-7],[-139,-5],[-42,-1],[-123,4],[-22,-3],[-31,-1],[-82,-2],[-23,-1],[-82,0],[-209,-1],[-17,0],[-125,0],[-21,0],[-83,-4],[-46,-1],[-29,0],[-119,-2],[-129,-2],[-135,-2],[-1,0],[-130,-2],[-61,-1],[-125,-2],[-373,-8],[-60,-1],[-146,-2],[-292,-5],[-27,-1],[-53,0],[-88,-1],[-76,-1],[-18,0],[-9,-1],[-13,0],[-68,-3],[-62,-1],[-63,-1],[-51,0],[-50,-1],[-203,-4],[-67,6],[-18,0],[-34,1],[-53,-1],[-16,-7],[-141,-1],[-23,5],[-25,1],[-16,2],[-29,-1],[-18,1],[-23,-2],[-28,0],[-24,0],[-23,0],[-20,-1],[-21,0],[-22,-1],[-41,0],[-26,1],[-19,0],[-103,-1],[-21,1],[-17,-1],[-142,-4],[-123,-1],[-19,0],[-33,0],[-15,0],[-35,-1],[-175,-3],[-40,-1],[-19,5],[-19,0],[-107,-3],[-54,4],[-26,1],[-1,0],[-33,-2],[-27,-1],[-34,0],[-21,-1],[-21,0],[-17,0],[-25,0],[-22,-1],[-16,2],[-34,-2],[-27,0],[-36,0],[-42,-1],[-22,0],[-50,1],[-23,0],[-33,0],[-26,1],[-30,-1],[-27,-1],[-20,1],[-21,-1],[-60,-7],[-37,-1],[-154,-1],[-179,-1],[-3,0],[-18,0],[-37,5],[-27,-1],[-60,0],[-51,0],[-28,-8]],[[47420,16728],[0,-57],[-1,-56],[0,-137],[0,-65],[0,-55],[0,-45],[2,-169],[0,-40],[1,-117],[-4,-154],[0,-102],[-1,-120],[0,-64],[0,-38],[0,-39],[0,-39],[-1,-52],[1,-32],[-1,-50],[0,-45],[0,-45],[0,-68],[0,-34],[0,-32],[-1,-57],[0,-90],[0,-38],[0,-100],[0,-37],[0,-67],[-1,-245],[0,-59],[0,-7],[-1,-311],[1,-42],[0,-46],[0,-63],[1,-192],[1,-83],[1,-91],[1,-49],[0,-40],[1,-38],[0,-55],[0,-36],[1,-69],[0,-45],[1,-45],[1,-124],[0,-44],[-1,-37],[4,-399],[0,-26],[-1,-72],[-1,-123],[0,-5],[0,-62],[0,-31],[0,-71],[0,-73],[0,-79],[0,-10],[0,-28],[-3,-52],[0,-117],[0,-116],[0,-46],[-1,-234],[0,-233],[-1,-410],[0,-48],[1,-204],[1,-259],[0,-540],[1,-188],[0,-200],[-1,-123],[0,-188],[-3,-326],[-1,-284],[0,-56],[-1,-375],[0,-322],[0,-59],[0,-344],[0,-217],[0,-134],[0,-207],[-1,-150]],[[47414,6552],[-31,-4],[-17,2],[-79,-2],[-15,0],[-23,0],[-16,-1],[-73,-4],[-73,-3],[-40,-2],[-40,-2],[-40,-1],[-16,-1],[-16,-1],[-23,0],[-25,-2],[-79,-4],[-17,0],[-202,-8],[-4,-1],[-49,-1],[-37,-1],[-104,-3],[-32,-6],[-89,-3],[-95,-3],[-145,-4],[-148,-5],[-47,-1],[-17,2],[-24,-1],[-17,-1],[-60,-2],[-29,0],[-28,-2],[-79,-1],[-21,-2],[-83,-2],[-23,-1],[-43,-1],[-50,-2],[-66,-2],[-81,-2],[-317,-5],[-33,0],[-51,-1],[-24,-1],[-17,-1],[-137,0],[-60,0],[-28,-1],[-20,-1],[-22,2],[-33,1],[-26,1],[-18,0],[-19,0],[-27,0],[-59,-1],[-61,-1],[-31,-1],[-38,0],[-16,0],[-36,0],[-16,0],[-61,1],[-86,-2],[-20,-1],[-34,-2],[-16,-1],[-37,1],[-39,0],[-182,-1],[-22,0],[-81,-1],[-116,-1],[-18,-6],[-31,-1],[-94,-1],[-97,-3],[-152,-5],[-35,-1],[-93,-3],[-72,-2],[-26,0],[-40,-2],[-19,-1],[-17,-1],[-38,-2],[-52,-1],[-40,-1],[-25,0],[-41,-1],[-33,-1],[-33,0],[-40,-2],[-26,0],[-20,-1],[-32,-2],[-21,0],[-19,-1],[-18,-2],[-23,-1],[-18,-1],[-22,-1],[-16,-1],[-22,0],[-29,-1],[-29,-3],[-23,1],[-32,-1],[-26,-1],[-21,0],[-31,-1],[-45,-1],[-43,-3],[-25,-1],[-20,-1],[-43,-2],[-16,0],[-21,0],[-37,-2],[-10,0],[-6,0],[-26,-2],[-22,0],[-20,-1],[-17,-1],[-48,-1],[-23,-1],[-4,0],[-13,-1],[-17,0],[-19,0],[-15,0],[-3,0],[-15,-1],[-6,0],[-17,-1],[-7,0],[-9,0],[-26,-2],[-21,0],[-23,-1],[-23,-1],[-32,0],[-42,-2],[-23,0],[-28,-1],[-17,-1],[-33,0],[-21,-1],[-22,-1],[-17,-1],[-18,0],[-30,-1],[-39,-1],[-24,-1],[-27,-1],[-21,-1],[-20,-1],[-105,-4],[-58,-3],[-13,-1],[-189,0],[-20,-4],[-28,-4],[-130,-4],[-33,-1],[-24,-1]],[[54483,16733],[0,-21],[-1,-111],[-1,-127],[0,-7],[0,-29],[0,-65],[0,-35],[0,-50],[0,-32],[1,-55],[-1,-41],[0,-45],[0,-138],[0,-49],[0,-57],[0,-50],[0,-75],[0,-54],[0,-57],[0,-36],[-3,-369],[3,-316],[2,-221],[0,-145],[0,-96],[0,-56],[0,-254],[0,-40],[0,-110],[3,-327],[0,-53],[0,-37],[0,-40],[0,-71],[0,-70],[1,-35],[0,-65],[-1,-32],[0,-60],[-1,-34],[1,-227],[1,-497],[-2,-91],[0,-103],[0,-69],[0,-42],[0,-49],[0,-89],[0,-81],[0,-35],[0,-14],[0,-41],[0,-59],[0,-60],[0,-61],[0,-58],[1,-78],[0,-26],[0,-15],[0,-63],[0,-56],[0,-33],[0,-78],[0,-64],[0,-66],[0,-78],[0,-85],[2,-328],[0,-36],[-1,-325],[0,-8],[0,-311],[-1,-152],[0,-231],[1,-233],[1,-82],[0,-79],[0,-54],[0,-32],[0,-45],[0,-34],[0,-1],[0,-33],[-1,-48],[1,-70],[0,-59],[-1,-56],[1,-45],[0,-52],[0,-51],[0,-40],[0,-43],[0,-68],[0,-36],[-1,-87],[1,-333],[-1,-45],[0,-94],[0,-93],[0,-139],[-1,-140],[0,-55],[0,-42],[1,-40],[-1,-33],[0,-52],[0,-48],[1,-40],[0,-42],[0,-37],[0,-74],[0,-34],[0,-46],[0,-44],[0,-39],[1,-34],[0,-34],[0,-34],[0,-66]],[[54488,6673],[-19,-2],[-46,-2],[-24,-2],[-229,-15],[-29,-2],[-83,-4],[-32,-2],[-35,-2],[-16,-1],[-30,-2],[-50,-3],[-81,-2],[-51,-2],[-51,-2],[-147,-5],[-29,-1],[-112,-5],[-173,-6],[-93,-4],[-16,-1],[-16,0],[-52,-1],[-34,-1],[-78,-2],[-74,-1],[-21,-1],[-23,-1],[-102,-3],[-26,-1],[-142,-6],[-65,-1],[-65,-2],[-17,0],[-16,0],[-23,-1],[-119,-2],[-140,-10],[-18,-1],[-105,-2],[-29,-1],[-1,0],[-20,0],[-15,0],[-53,-1],[-42,0],[-19,0],[-20,0],[-24,0],[-18,-1],[-20,0],[-36,0],[-24,0],[-38,0],[-16,0],[-21,0],[-48,0],[-23,0],[-22,-2],[-25,0],[-22,1],[-16,1],[-20,-2],[-15,1],[-19,0],[-27,0],[-23,-1],[-27,1],[-10,0],[-26,0],[-27,0],[-31,0],[-22,-1],[-28,0],[-65,-1],[-15,0],[-158,-4],[-95,-3],[-68,0],[-56,1],[-54,1],[-16,-1],[-19,0],[-15,0],[-22,-1],[-20,0],[-41,-1],[-23,0],[-16,0],[-22,-1],[-41,-1],[-29,0],[-17,-1],[-34,0],[-30,0],[-24,0],[-16,1],[-17,-1],[-17,-1],[-26,1],[-17,1],[-16,1],[-30,-5],[-20,0],[-19,0],[-69,-1],[-16,3],[-19,0],[-19,-1],[-27,0],[-27,0],[-18,-3],[-74,-2],[-38,1],[-28,-1],[-21,0],[-36,0],[-29,0],[-25,0],[-34,0],[-36,0],[-28,0],[-17,-1],[-25,0],[-19,0],[-25,-1],[-44,-1],[-4,0],[-75,0],[-32,-1],[-51,0],[-33,-1],[-64,0],[-207,2],[-157,5],[-24,-3],[-281,10],[-1,0],[-48,0],[-132,0],[-16,-1],[-35,-3],[-67,1],[-76,1],[-64,2],[-28,1],[-17,0],[-35,1],[-22,0],[-17,0],[-4,0],[-17,0],[-18,1],[-3,0],[-17,1],[-17,0],[-16,-1],[-82,-4],[-150,-1],[-79,3],[-16,-1],[-58,-2],[-16,-1],[-54,-2]],[[61558,6892],[-21,-1],[-131,-5],[-41,-2],[-105,-5],[-33,-3],[-140,-5],[-274,-11],[-33,2],[-22,-1],[-104,-6],[-255,-9],[-18,1],[-131,-5],[-95,-1],[-204,-2],[-65,-4],[-27,-1],[-71,-2],[-67,-2],[-280,-7],[-89,-3],[-223,3],[-107,-2],[-209,-3],[-179,2],[-45,-5],[-50,0],[-201,-1],[-132,-1],[-12,-1],[-17,-5],[-29,0],[-31,1],[-22,0],[-68,-2],[-121,7],[-62,-1],[-110,-3],[-52,-7],[-28,-2],[-32,0],[-39,0],[-52,0],[-54,-1],[-15,1],[-52,0],[-138,-4],[-26,0],[-223,-6],[-137,-2],[-18,0],[-17,1],[-29,-3],[-25,-1],[-26,0],[-23,-1],[-15,-1],[-19,-1],[-28,-1],[-18,-1],[-25,1],[-27,-1],[-31,0],[-24,-1],[-19,-1],[-23,-1],[-17,-1],[-34,-1],[-24,-2],[-26,-1],[-31,-1],[-33,-1],[-33,-1],[-23,-1],[-19,-1],[-23,0],[-26,-2],[-16,0],[-4,0],[-28,-1],[-50,-2],[-22,-1],[-81,-3],[-19,-1],[-19,-1],[-25,-2],[-80,-3],[-60,-3],[-22,0],[-18,-2],[-66,-3],[-30,-1],[-67,-4],[-20,-1],[-50,-3],[-42,-3],[-50,-3],[-35,-1],[-41,-2],[-21,0],[-54,-5],[-75,-5],[-40,-1],[-29,-1],[-27,-2],[-24,-2],[-19,-3],[-16,0],[-27,-1],[-55,-5],[-20,-1],[-18,-1],[-20,-1],[-28,-2],[-20,-2],[-25,-1],[-24,-1],[-48,-2],[-28,0],[-74,-4],[-20,-1],[-70,-3],[-40,-3],[-27,-1],[-48,-4]],[[85034,10266],[-11,-35],[-9,-28],[-25,-80],[-5,-34],[-21,-170],[-6,-41],[-7,-58],[-5,-42],[-6,-40],[-5,-43],[-10,-82],[-19,-100],[-22,-53],[-26,-63],[-139,-148],[-74,-78],[-119,-127],[-242,-257],[-267,-283],[-52,-55],[-51,-55],[-26,-16],[-86,-25],[-45,-7],[-37,-6],[-53,12],[-16,4],[-125,37],[-13,4],[-51,8],[-58,9],[-95,2],[-55,-6],[-66,-6],[-237,9],[-35,-7],[-27,-2],[-18,-5],[-36,-16],[-21,-11],[-23,-14],[-26,-22],[-40,-39],[-19,-8],[-81,-32],[-63,-24],[-261,-114],[-56,-24],[-45,-20],[-41,-18],[-134,-58],[-31,-13],[-68,-60],[-143,-125],[-263,-230],[-202,-177],[-165,-353],[-37,-108],[-59,-171],[-32,-95],[-26,-74],[-57,-166],[-21,-60],[-52,-74],[-55,-81],[-100,-143],[-17,-24],[-51,-73],[-59,-84],[-40,-129],[-35,-112],[2,-296],[48,-137],[133,-124],[153,-115],[30,-74],[103,-261],[113,-284],[8,-46],[36,-221],[12,-74],[7,-41],[9,-51],[-2,-29],[-8,-125],[9,-100],[-28,-187],[-11,-173],[-65,-261],[-63,-249],[-52,-209],[-7,-48],[-34,-219],[-10,-64],[8,-341],[24,-117],[2,-24],[24,-113],[3,-5],[18,-44],[29,-109],[26,-71],[30,-97],[33,-84],[19,-70],[29,-139],[9,-52],[-2,-180],[-22,-51],[-4,-12],[-34,-96],[-2,-6],[-54,-145],[-10,-28],[-24,-34],[-40,-56],[-31,-27],[-19,-20],[-45,-10],[-28,-23],[-53,-39],[-72,-20],[-19,1],[-6,-8],[-100,-14],[-27,-15],[-58,-9],[-181,-98],[-7,-13],[-25,47],[-11,22],[-7,13],[-17,24],[-17,14],[-19,16],[-16,3],[-9,5],[-8,3],[-30,15],[-46,31],[-18,12],[-10,7],[-21,8],[-32,15],[-27,17],[-3,1],[-20,3],[-2,-3],[-21,-33],[-13,-27],[-13,-32],[-62,-140],[-47,-90],[-15,-19],[-17,-2],[-44,0],[-61,1],[-54,6],[-17,18],[-9,27],[-4,42],[18,82],[18,51],[8,48],[-2,35],[-13,16],[-17,-12],[-43,-36],[-63,-40],[-37,-11],[-9,-4],[-20,-35],[-29,-37],[-35,-1],[-22,14],[-26,32],[-26,53],[3,13],[-30,97],[-28,70],[-17,29],[-20,98],[-23,79],[4,43],[12,16],[25,-2],[3,-3],[7,-10],[7,-31],[8,-13],[47,-12],[13,-1],[20,28],[56,108],[0,94],[-20,74],[-34,54],[-30,7],[-11,-4],[-46,-61],[-1,-2],[-17,-43],[-49,-83],[-77,6],[-27,11],[-50,46],[-24,37],[-1,2],[-26,23],[-29,26],[-30,23],[-92,33],[-53,42],[-43,47],[-11,18],[-23,40],[-28,83],[-6,87],[3,81],[6,29],[78,201],[31,126],[1,17],[0,13],[-13,27],[-96,2],[-65,44],[-36,62],[-20,79],[2,56],[7,22],[19,63],[1,3],[1,1],[37,56],[57,73],[23,41],[12,34],[9,33],[1,39],[0,81],[-4,39],[-4,17],[-5,23],[-8,34],[-5,8],[-27,42],[-81,9],[-25,3],[-125,-25],[-1,-2],[-7,-6],[-38,4],[-84,8],[-21,3],[-92,32],[-77,39],[-24,11],[-40,28],[-24,16],[-9,7],[-48,40],[-31,40],[-11,14],[-64,117],[-14,26],[-5,15],[-25,77],[-13,53],[-2,15],[-9,58],[-5,81],[-1,6],[-4,17],[-28,114],[0,23],[-17,46],[3,9],[-23,85],[-4,15],[-4,9],[-14,43],[-22,45],[-27,45],[-32,41],[-16,14],[-61,49],[-40,28],[-44,31],[-15,12],[-35,28],[-69,74],[-12,15],[-15,19],[-36,44],[-39,75],[-27,88],[-2,6],[-1,6],[-14,131],[2,70],[0,15],[1,7],[6,31],[0,2],[17,96],[9,48],[8,46],[12,66],[1,22],[10,222],[0,4],[-2,39],[-3,50],[-10,73],[-16,53],[0,2],[-26,43],[-2,4],[-31,25],[0,1],[-19,13],[-39,14],[-48,17],[-30,18],[-1,0],[-1,0],[-30,4],[-2,0],[-48,12],[-33,14],[-25,11],[-29,12],[-20,9],[-26,13],[-20,10],[-96,47],[-2,1],[-2,1],[-149,32],[-1,0],[-81,18],[-23,5],[-69,28],[-36,15],[-60,24],[-17,22],[-36,44],[-11,14],[-31,43],[-12,16],[-3,8],[-10,24],[-20,49],[0,2],[-12,72],[0,17],[1,61],[0,7],[2,9],[22,111],[65,261],[6,67],[-7,29],[-4,18],[-4,17],[-4,7],[-34,74],[-78,102],[-30,39],[-8,11],[-28,24],[-30,26],[-75,65],[-35,30],[-73,75],[-73,112]]],"transform":{"scale":[0.00006497788616886184,0.000031255640456404786],"translate":[-96.63777827299992,40.37542960700006]}} diff --git a/src/js/config/mapconfig/mapfiles/county/id-counties.json b/src/js/config/mapconfig/mapfiles/county/id-counties.json new file mode 100644 index 00000000..fc899336 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/id-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-117.24286972999994,41.99362186200011,-111.04366837899994,49.00083838900008],"geometries":[{"type":"Polygon","properties":{"name":"ID"},"id":"16021","arcs":[[0,1]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16017","arcs":[[2,3,4,5,-1]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16079","arcs":[[6,7,8,9,10,-4]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16055","arcs":[[-11,11,12,-5]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16009","arcs":[[-10,13,14,-12]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16057","arcs":[[-9,15,16,17,-14]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16035","arcs":[[18,19,20,21,-16,-8]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16049","arcs":[[22,23,24,25,26,27,-20,28]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16069","arcs":[[-22,29,-27,30,-17]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16061","arcs":[[-21,-28,-30]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16059","arcs":[[31,32,33,34,-23,35]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16003","arcs":[[36,37,38,39,-25]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16085","arcs":[[-35,40,41,42,-37,-24]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16037","arcs":[[43,44,45,46,-41,-34]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16087","arcs":[[47,48,49,-39]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16043","arcs":[[50,51,52,53,54]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16033","arcs":[[-54,55,56,-32,57]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16045","arcs":[[-43,58,59,60,61,-48,-38]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16015","arcs":[[-47,62,63,-59,-42]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16023","arcs":[[-57,64,65,66,-44,-33]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16075","arcs":[[-62,67,68,-49]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16039","arcs":[[-46,69,70,71,72,73,74,-63]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16051","arcs":[[-53,75,76,77,-65,-56]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16013","arcs":[[-67,78,79,80,81,82,83,-70,-45]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16081","arcs":[[84,85,86,-51]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16065","arcs":[[-87,87,-76,-52]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16027","arcs":[[-61,88,89,90,-68]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16025","arcs":[[91,92,-71,-84]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16001","arcs":[[-64,-75,93,-89,-60]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16073","arcs":[[-94,-74,94,95,-90]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16019","arcs":[[-88,-86,96,97,98,-77]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16011","arcs":[[99,100,101,-79,-66,-78,-99]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16063","arcs":[[102,103,104,-92,-83]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16047","arcs":[[-105,105,106,-72,-93]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16067","arcs":[[107,108,-103,-82]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16077","arcs":[[-102,109,110,111,-80]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16005","arcs":[[112,113,114,-110,-101]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16029","arcs":[[-98,115,116,117,-113,-100]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16083","arcs":[[118,119,120,-95,-73,-107]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16053","arcs":[[-109,121,-119,-106,-104]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16031","arcs":[[-112,122,123,-120,-122,-108,-81]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16007","arcs":[[124,125,-117]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16071","arcs":[[-115,126,127,-123,-111]]},{"type":"Polygon","properties":{"name":"ID"},"id":"16041","arcs":[[-126,128,-127,-114,-118]]}]},"states":{"type":"GeometryCollection","bbox":[-117.24286972999994,41.99362186200011,-111.04366837899994,49.00083838900008],"geometries":[{"type":"Polygon","properties":{"name":"Idaho"},"id":"16","arcs":[[2,6,18,28,35,57,54,84,96,115,124,128,127,123,120,95,90,68,49,39,25,30,17,14,12,5,1]]}]}},"arcs":[[[19256,92880],[-241,1],[-35,0],[-51,-1],[-342,2],[-244,1],[-28,0],[-107,0],[-44,1],[-164,0],[-76,-1],[-265,0],[-208,0],[-325,-1],[-16,0],[-280,0],[-38,0],[-16,0],[-315,-1],[-363,0],[-115,-2],[-246,-1],[-601,-3],[-565,-3],[-18,0],[-33,0],[-128,-1],[-18,0],[-126,-1],[-281,-2],[-185,2],[-107,-1],[-303,-4],[-41,2],[-39,-1],[-177,1],[-217,1],[-51,1],[-32,0],[-18,0],[-10,0],[-30,0],[-90,0],[-35,0],[-131,1],[-25,0],[-46,0],[-20,0],[-161,2],[-293,2],[-53,-1],[-133,-1],[-267,-1],[-366,-4],[-141,-1],[-166,-1],[-4,0],[-17,0],[-42,-1],[-45,0],[-221,-2],[-32,0],[-535,-2],[-107,-1],[-60,-1],[-131,-2],[-54,-2],[-46,-1],[-91,-1],[-70,0],[-25,0],[-146,0],[-40,0],[-60,0],[-22,0],[-219,2],[-203,1],[-49,1],[-311,3],[-163,1],[-37,0],[-48,0],[-135,-1],[-230,0],[-83,0],[-110,0],[-79,0],[-43,0],[2,58],[3,59],[0,19],[1,4],[4,139],[5,146],[-1,67],[-1,77],[-1,62],[0,67],[-1,42],[0,38],[1,81],[0,61],[1,49],[0,45],[0,100],[0,16],[0,18],[0,30],[-1,131],[1,42],[0,87],[-1,16],[0,17],[-1,146],[-1,55],[-1,92],[-1,46],[0,46],[1,21],[1,78],[5,265],[3,136],[2,120],[-29,-1],[-1,149],[0,61],[-1,57],[0,36],[0,16],[0,36],[-1,19],[0,36],[1,18],[-1,110],[1,104],[0,24],[1,129],[0,15],[0,15],[0,45],[1,136],[0,14],[0,1],[0,17],[2,45],[0,53],[0,85],[0,34],[1,262],[0,53],[0,192],[0,14],[0,92],[0,201],[1,406],[-366,-2],[-42,0],[-264,-1],[-133,-1],[-93,0],[-362,-1],[-69,-1],[-105,0],[-33,1],[-66,-1],[-177,0],[-256,-2],[-132,-2],[-37,-1],[-236,-1],[-87,0],[-50,0],[-216,0],[-138,1],[-12,0],[-87,0],[-424,-1],[-12,0],[-24,0],[-62,1],[-368,-1],[-121,-1],[-18,0]],[[3377,97796],[2,141],[4,264],[0,26],[-1,131],[0,298],[0,144],[-2,769],[0,63],[-1,343],[75,1],[607,2],[864,2],[2,0],[139,0],[649,1],[971,2],[643,1],[535,0],[451,1],[435,0],[783,0],[719,0],[494,0],[1176,0],[71,0],[3,0],[967,4],[685,3],[617,2],[90,0],[80,0],[342,1],[796,2],[649,2],[384,-2],[311,-2],[185,0],[12,0],[7,0],[8,0],[2,0],[32,0],[3,0],[4,0],[6,0],[637,1],[480,1],[751,2],[197,0],[14,0],[0,-12],[1,-4430],[0,-291],[0,-519],[0,-161],[0,-73],[0,-1633]],[[19256,92880],[0,-29],[-2,-876],[-1,-358],[-7,-2831],[0,-418],[0,-160],[0,-124],[0,-496],[-1,-540],[0,-50],[0,-42],[0,-1097],[0,-143],[0,-304]],[[19245,85412],[-51,9],[-14,9],[-12,18],[-18,6],[-16,14],[-11,17],[-26,17],[-30,29],[-25,18],[-3,27],[-8,19],[9,44],[-12,16],[-111,12],[-49,11],[-21,-2],[-23,7],[-16,6],[-22,12],[-19,3],[-20,10],[-5,2],[-26,10],[-26,5],[-29,8],[-33,12],[-21,10],[-26,12],[-18,7],[-19,16],[-7,15],[-15,11],[-27,17],[-41,23],[-38,20],[-23,7],[6,18],[12,14],[-8,30],[-11,23],[-8,27],[-7,22],[-25,31],[-36,32],[-19,18],[-36,2],[-29,7],[-20,12],[-13,12],[-11,11],[-33,10],[-33,27],[-16,11],[-78,-34],[-17,-9],[-24,-8],[-34,-24],[-26,-27],[-34,-4],[-19,1],[-15,-11],[-58,-5],[-35,-3],[-33,-2],[-36,-4],[-33,-4],[-24,-10],[-13,-16],[-22,-1],[-21,-11],[-9,-14],[-25,-2],[-25,-2],[-20,7],[-26,4],[-27,0],[-18,3],[-33,11],[-21,18],[-16,19],[-45,11],[-62,23],[-15,38],[-75,28],[-69,6],[-30,4],[-22,20],[-125,102],[-73,-3],[-27,3],[-30,6],[-34,4],[-32,-10],[-30,9],[-6,19],[-1,20],[1,20],[0,20],[-34,15],[-10,12],[-24,32],[-20,11],[-21,9],[-24,5],[-12,18],[-27,10],[-34,0],[-11,15],[3,24],[-12,14],[-37,12],[-28,4],[-22,10],[-14,13],[-5,23],[-29,28],[1,38],[-44,19],[-39,8],[-49,0],[-68,-9],[-7,-14],[-30,-16],[-29,-13],[-33,-12],[-47,-8],[-34,1],[-34,2],[-21,0],[-26,-8],[-24,-9],[-37,-11],[-26,3],[-36,3],[-41,-7],[-19,3],[-40,-3],[-33,-12],[-14,-8],[-37,-18],[-23,-8],[-29,2],[-34,-3],[-28,-15],[-12,-21],[-26,-46],[-23,-23],[-25,-21],[-5,-26],[-6,-28],[-21,-19],[-35,-18],[-34,-16],[-39,-8],[-30,1],[-17,2],[-15,-6],[-36,-25],[-31,-15],[-22,-11],[-18,-19],[-19,-40],[-34,-30],[-16,-17],[-24,-12],[-30,-17],[-19,-12],[-19,-21],[-18,-18],[-20,-12],[-25,-21],[-33,-17],[-25,-22],[-46,-41],[0,-23],[-1,-38],[-1,-76],[-1,-73],[14,-43],[1,-2],[30,-125],[2,-11],[47,-151],[1,-58],[0,-113],[2,-135],[0,-62],[2,-198],[2,-252],[0,-148],[1,-100],[0,-2],[2,-209]],[[14825,84150],[-94,-1],[-227,-1],[-393,-2],[-9,0],[-135,3],[-833,0],[-122,-1],[-219,0],[-74,0],[-18,0],[-14,0],[-272,0],[-69,0],[-204,0],[-67,0],[-24,-1],[-72,1],[-29,0],[-64,0],[1,100],[1,135],[0,24],[2,169],[1,131],[0,16],[1,78],[1,79],[1,100],[0,4],[2,261],[0,16],[2,228],[0,6],[1,11],[0,27],[0,60],[-433,1],[-230,0],[-141,0],[-21,0],[-176,0],[-24,0],[-107,0],[-20,0],[-58,0],[-172,1],[-55,0],[-174,0],[-43,0],[-268,0],[-43,-1],[-113,-1],[0,-101],[-1,-103],[-332,-1],[-21,0],[-260,1],[-88,2],[-263,-2],[-24,0],[-17,0],[-37,0],[-9,0],[-39,0],[-19,0],[-27,1],[-19,0],[-18,0],[-18,0],[-22,0],[-18,0],[-24,0],[-17,0],[-19,0],[-24,1],[-84,1],[-166,0],[-61,0],[-155,1],[-42,0],[-80,-1],[-203,0],[-57,0],[-247,0],[-57,0],[-334,0],[-303,0],[-381,0],[-25,0],[-93,0],[-126,0],[-82,0],[-17,0],[-16,0],[-57,0],[-17,-1],[-175,1],[-72,1],[-573,0],[-41,0],[-51,0],[-339,1],[-138,0],[-84,0],[-313,1],[-34,0],[-30,0],[-41,0],[-126,-1],[-115,0],[-35,0],[-39,-1],[-193,0],[-111,0],[-104,-1],[-52,0],[-16,0]],[[3220,85392],[1,204],[1,41],[0,5],[0,28],[1,43],[0,3],[1,33],[4,437],[1,143],[0,20],[0,16],[0,1],[1,102],[1,131],[0,45],[1,63],[0,40],[1,188],[3,369],[2,193],[2,57],[3,74],[1,39],[5,149],[2,43],[4,122],[1,15],[3,94],[1,38],[3,69],[1,27],[1,20],[-2,13],[-1,2],[1,29],[0,9],[0,16],[-1,28],[1,20],[1,24],[2,23],[0,4],[2,42],[3,54],[1,17],[1,20],[1,33],[1,8],[1,18],[0,16],[1,48],[2,14],[1,73],[2,73],[7,297],[1,17],[2,139],[2,80],[2,62],[7,288],[0,20],[2,60],[1,50],[1,44],[2,83],[2,86],[1,49],[1,35],[1,29],[0,27],[2,54],[1,87],[1,25],[1,67],[2,69],[1,39],[0,24],[1,18],[1,73],[1,3],[2,94],[0,13],[0,15],[4,169],[3,64],[-2,57],[3,147],[0,103],[-1,109],[-1,80],[0,20],[0,62],[0,59],[-1,85],[0,18],[1,22],[-1,67],[0,16],[-1,115],[0,19],[0,26],[0,25],[0,324],[0,21],[0,23],[-1,133],[0,9],[0,107],[0,54],[0,18],[0,30],[0,92],[3,310],[1,78],[1,189],[1,69],[0,21],[2,176],[0,25],[0,39],[1,57],[0,25],[1,60],[1,130],[0,59],[1,137],[1,21],[0,91],[1,55],[0,5],[-1,24],[1,154],[-1,59],[-1,26],[5,25],[10,386],[1,19],[1,114],[3,336],[0,49],[1,26],[0,32],[0,14],[1,76],[0,18],[0,18],[0,16],[-1,629],[0,26],[2,120],[1,114],[3,232],[1,97],[1,104],[0,18],[0,50],[1,86],[0,22],[0,2],[1,15],[0,90],[3,225],[1,178]],[[19245,85412],[0,-23],[28,-21],[47,-16],[27,-5],[24,-17],[20,-19],[23,-5],[14,3],[109,26],[4,-16],[20,-13],[9,-16],[3,-6],[17,-15],[10,-8],[26,-12],[17,-29],[18,-9],[34,-14],[25,-6],[6,-6],[11,-11],[3,-10],[3,-7],[16,-18],[19,-21],[21,-6],[22,-28],[21,-22],[22,-14],[21,-16],[14,-10],[17,-19],[-3,-56],[8,-32],[16,-17],[31,-17],[16,-16],[77,-24],[-1,-25],[25,-21],[21,-15],[5,-15],[3,-9],[1,-17],[27,-39],[-11,-21],[4,-17],[28,-12],[30,-15],[24,-8],[18,-4],[30,-3],[33,-27],[13,-23],[5,-58],[51,-15],[49,1],[18,1],[25,-9],[68,3],[40,-25],[22,-21],[6,-14],[-10,-22],[-8,-20],[-1,-19],[-6,-16],[-23,-42],[-7,-22],[13,-20],[50,-8],[65,0],[70,-42],[36,-13],[17,-9],[6,-24],[30,-23],[10,-15],[35,-12],[11,-14],[24,-23],[44,-7],[31,-26],[19,-8],[10,-16],[18,-8],[24,-31],[25,-46],[-8,-17],[23,-18],[27,-10],[20,-12],[24,-29],[17,-22],[15,-7],[14,-5],[19,-6],[11,-10],[3,-24],[8,-15],[34,-34],[30,-30],[20,-28],[7,-27],[-2,-21],[26,-6],[48,-2],[17,1],[36,-5],[37,-12],[25,-16],[12,-11],[1,-21],[-11,-23],[11,-16],[21,-10],[16,-12],[44,-23],[23,5],[21,6],[18,16],[16,4],[33,1],[21,1],[14,9],[25,2],[36,15],[41,15],[54,9],[13,9],[23,-20],[22,-24],[12,-11],[14,-6],[26,-20],[15,-16],[8,-14],[5,-22],[6,-21],[22,-19],[12,-16],[10,-15],[26,-11],[42,-13],[12,-4],[33,1],[33,-14],[21,-11],[19,-7],[25,-20],[30,-17],[18,-7],[26,1],[17,-2],[9,-15],[18,-22],[3,-15],[-2,-22],[-5,-16],[9,-15],[19,-16],[23,-14],[13,-9],[21,-37],[-10,-19],[-12,-13],[-36,-25],[5,-14],[6,-14],[19,-84],[-4,-14],[-17,-22],[2,-16],[1,-7],[21,-29],[18,-36],[4,-10],[-9,-37],[-7,-24],[-12,-52],[10,-26],[70,-40],[23,-12],[9,-19],[11,-33],[24,-18],[16,-13],[12,-23],[2,-16],[24,-29],[-7,-18],[8,-22],[-7,-39],[0,-23],[0,-18],[14,-23],[15,-10],[11,-18],[5,-16],[15,-17],[36,-18],[24,-9],[31,-16],[24,-9],[40,15],[33,14],[8,4],[46,15],[32,11],[70,0],[20,4],[36,8],[30,8],[28,8],[18,3],[16,-4],[30,-6],[32,-2],[18,0],[51,-59],[6,-21],[20,-11],[43,-17],[65,-23],[33,-28],[54,-42],[4,-15],[-11,-28],[-11,-21],[-19,-14],[-7,-25],[-11,-48],[-15,-29],[4,-23],[61,-81],[11,-15],[24,-15],[9,-10],[13,-14],[23,-14],[15,-8],[33,-13],[43,6],[38,-8],[6,3],[64,-1],[76,24],[2,1],[18,-8],[47,-19],[20,-7],[42,-28],[41,-21],[36,-14],[65,-18],[30,-22],[67,-43],[61,-16],[61,-58],[38,-37],[33,-46],[-1,-15],[-20,-46],[-3,-15],[-10,-22],[-1,-17],[-12,-26],[-21,-25],[-13,-24],[23,-88],[5,-23],[-2,-19],[0,-16],[-66,-25],[-11,-38],[4,-16],[-1,-56],[-41,-66],[-38,-32],[-7,-13],[41,-77],[4,-19],[10,-13],[15,-9],[8,-16],[-1,-18],[25,-24],[93,-38],[25,-7],[35,-7],[91,-36],[18,-6],[83,-7],[35,-23],[19,-13],[32,-30],[11,-15],[23,-3],[21,-7],[28,-9],[36,-53],[25,-23],[5,-49],[19,-36],[-19,-23],[-34,-22],[-11,-12],[-7,-22],[12,-28],[5,-16],[-11,-27],[-2,-11],[33,-46],[40,-13],[13,-13],[8,-60],[40,-30],[-80,-38],[-77,-33],[-65,-36],[-40,-32],[-11,-14],[21,-35],[-10,-25],[-26,-34],[-85,-1],[-64,2],[-55,-8],[-33,-4],[-17,-29],[-6,-51],[-48,-20],[-34,-1],[-42,1],[-54,-26],[-29,-19],[-30,-30],[-25,-16],[-30,-11],[-19,-5],[-14,-13],[-12,-34],[-68,-41],[-59,-33],[-18,-4],[-17,-8],[-12,-14],[-7,-35],[7,-18],[11,-10],[12,-21],[26,-24],[0,-17],[21,-16],[132,-35],[37,-8],[60,12],[24,3],[25,-12],[24,-21],[11,-14],[110,-30],[90,-13],[16,1],[50,17],[16,-8],[33,-14],[104,28],[36,-12],[29,-2],[5,-14],[63,-29],[8,-40],[-221,-72],[-7,-81],[14,-20],[29,-16],[14,-32],[71,-65],[54,-71],[133,-24],[28,-22],[12,-21],[0,-23],[6,-34],[3,-24],[19,-30],[3,-29],[6,-44],[44,-22],[40,11],[22,16],[26,5],[86,2],[17,2],[13,10],[35,14],[14,9],[30,-25],[73,-49],[17,-33],[-1,-19],[5,-26],[71,0],[45,0],[62,-7],[22,3],[27,21],[49,2],[58,5],[72,23],[12,3],[46,-15],[50,-15],[-40,-46],[-11,-21],[-1,-22],[-21,-32],[-26,-29],[-10,-18],[-14,-33],[-2,-8],[-21,-12],[-8,-20],[-7,-18],[-27,-20],[-32,-15],[-35,-6],[-30,-27],[-52,-8],[-31,-5],[-27,-9],[-52,-7],[-57,1],[-31,-12],[-30,1],[-129,6],[-60,-15],[-34,3],[-38,19],[-46,34],[-38,6],[-47,-5],[-45,-2],[-34,0],[-33,-12],[-25,-9],[-117,-31],[-46,-8],[-34,6],[-169,-5],[-59,-42],[-27,-21],[-58,-19],[-58,-23],[-39,-21],[-49,-3],[-19,-7],[-26,-9],[-35,-6],[-86,-7],[-29,-5],[-23,-19],[1,-15],[-13,-19],[-23,-56],[-19,-45],[-28,-16],[-27,-30],[-19,-19],[-32,-49],[46,-12],[24,-3],[120,12],[59,11],[54,13],[56,33],[31,-14],[75,-10],[125,3],[54,5],[-4,-55],[12,-13],[12,-5],[40,-3],[14,-21],[22,-17],[32,-19],[12,-12],[39,-4],[104,8],[54,18],[39,-19],[19,-6],[91,-2],[31,-29],[23,-17],[23,-11],[42,-2],[70,-15],[37,-33],[-15,-82],[34,5],[71,-9],[37,-4],[41,3],[42,14],[50,-13],[29,-13],[4,-37],[8,-33],[12,-12],[18,-16],[73,-18],[33,-32],[18,-30],[-2,-40],[-11,-22],[7,-21],[36,-24],[28,-45],[134,29],[50,1],[27,-6],[43,4],[80,25],[60,12],[50,7],[39,-13],[18,-8],[68,-3],[30,-24],[48,-19],[33,-2],[27,-6],[29,-33],[17,-16],[1,-29],[55,-15],[54,-7],[84,-5],[26,-18],[43,-12],[80,-14],[13,-21],[-1,-21],[-32,-44],[42,-74],[71,1],[28,-17],[13,-9],[12,-14],[48,-17],[64,5],[47,8],[26,7],[33,-27],[39,-9],[12,-10],[20,-49],[14,-97],[0,-11],[-37,-71],[90,-22],[27,-23],[62,-23],[-16,-37],[5,-19],[30,-48],[67,-78],[47,-32],[17,-37],[16,-22],[38,-15],[-15,-22],[12,-49],[-17,-27],[8,-20],[-16,-20],[68,-2],[67,-11],[44,-14],[89,-26],[120,-65],[60,-11],[55,-1],[39,-7],[39,2],[30,-6],[50,-26],[59,-58],[38,-27],[35,3],[49,29],[26,9],[57,0],[46,26],[19,13],[21,8],[24,-17],[36,-15],[58,-24],[28,-26],[1,-30],[-1,-10],[8,-20],[61,-3],[74,12],[41,-12],[42,-4],[124,41],[37,-6],[37,-2],[54,4],[21,3],[17,-6],[24,-17],[49,-14],[11,-15],[-21,-45],[0,-23],[47,-28],[33,-6],[38,-28],[13,-16],[24,-21],[44,-11],[45,5],[95,7],[58,5],[82,1],[65,6],[56,22],[33,-10],[18,-3],[50,-22],[36,0],[31,-1],[36,7],[13,-9],[46,-21],[19,-11],[11,-12],[38,-11],[39,-12],[36,-6],[81,36],[35,-14],[9,-4],[59,-9],[66,13],[50,25],[24,-16],[78,-25],[20,-4],[28,-3],[51,-20],[75,-21],[38,0],[20,3],[-2,-25],[2,-12],[24,-18],[4,-18],[-41,-39],[-36,-27],[-21,-18],[-8,-13],[9,-15],[65,-20],[10,-29],[10,-43],[27,-28],[3,-29],[38,-4],[11,-19],[27,-22],[67,-5],[22,-18],[35,-19],[29,-25],[53,-3],[7,-21],[12,-19],[24,-15],[20,-8],[1,-19],[-5,-28],[10,-31],[5,-14],[11,-22],[20,-35],[-7,-23],[-26,-23],[-28,-23],[-24,-52],[-15,-48],[-6,-31],[-7,-12],[-5,-9],[-21,-15],[-2,-29],[5,-14],[-1,-20],[3,-20],[73,-16],[41,-5],[42,5],[22,-15],[29,-28],[6,-7],[51,-1],[27,-4],[72,-15],[29,2],[40,5],[23,2],[45,-16],[26,-5],[25,0],[74,4],[18,-1],[10,-21],[33,-34],[1,-14],[34,-27],[0,-18],[-7,-22],[-3,-28],[1,-27],[7,-20],[10,-15],[-4,-18],[4,-13],[20,-27],[22,-14],[28,-15],[23,-8],[16,-20],[8,-15],[3,-16],[23,-34],[9,-15],[43,-22],[50,5],[33,0],[29,-4],[28,-4],[43,0],[46,-15],[28,-8],[50,-4],[15,1],[16,9],[112,-52],[17,-25],[6,-16],[34,-13],[81,-13],[53,-15],[23,-3],[40,-3],[27,8],[8,-41],[35,-22],[24,-13],[21,1],[3,-20],[23,-14],[70,-26],[11,-4],[19,-2],[-21,-53],[14,-22],[27,-23],[24,-16],[68,-18],[3,-33],[12,-16],[77,-61],[20,-4],[-12,-15],[0,-22],[5,-19],[14,-21],[14,-13],[29,-7],[11,-2],[51,-21],[90,-32],[58,11],[77,-15],[40,-1],[36,15],[40,-13],[71,-68],[5,-18],[-23,-3],[-3,-15],[-13,-22],[-1,-37],[2,-30],[17,-24],[-8,-18],[30,-32],[20,-69],[33,-23],[31,-14],[34,-37],[31,-41],[26,-36],[12,-11],[39,-16],[28,-38],[20,-27],[32,-24],[57,-37],[13,-13],[26,-27],[59,-25],[6,-3],[24,1],[-14,-22],[-4,-6],[23,-18],[62,-23],[21,0],[43,5],[19,16],[19,-7],[20,-8],[128,-33],[-13,-21],[1,-52],[87,-22],[15,-22],[19,-19],[-4,-17],[14,-8],[-10,-49],[-3,-21],[29,-21],[56,-35],[47,-1],[26,11],[-17,-37],[20,-21],[11,-33],[22,-72],[-61,-14],[22,-43],[16,-25],[25,-26],[8,-42],[44,-49],[10,-12],[-9,-30],[-14,-25],[-16,-12],[108,-47],[62,-74],[8,-28],[41,-14],[17,-7],[22,-17],[15,-8],[10,-4],[-6,-83],[-21,-8],[21,-22],[15,-37],[21,-14],[79,6],[60,5],[56,0],[35,16],[43,-1],[32,8],[21,15],[-8,29],[18,7],[146,-17],[30,-8],[26,-2],[87,0],[49,-12],[49,-9],[50,-6],[6,-60],[15,-8],[9,-16],[91,-60],[7,-31],[36,-21],[18,-25],[15,-9],[15,-9],[31,-13],[11,-3],[-12,-17],[-5,-22],[8,-22],[19,-8],[32,3],[13,-17],[16,-6],[23,-16],[22,-29],[26,-19],[15,-7],[22,-22],[24,-10],[26,-19],[19,-7],[31,-1],[21,-5],[10,-3],[27,-1],[11,-18],[24,-18],[34,-14],[17,-23]],[[36836,70488],[-687,-3],[-292,1],[-17,0],[-4,0],[-21,0],[-588,0],[-110,0],[-129,0],[-411,1],[-200,0],[-14,0],[-231,3],[-369,-1],[-16,0],[-87,0],[-1445,-1],[-51,0],[-48,-1],[-570,1],[-40,0],[-395,1],[-109,0],[-439,0],[-18,0],[-104,0],[-148,1],[-194,0],[-660,1],[-336,0],[-240,1],[-16,0],[-764,1],[-812,-1],[-449,-1],[-504,-1],[-252,4],[-195,0],[-17,7],[-333,0],[-807,-1],[-16,0],[-374,-1],[-242,0],[-17,0],[-435,1],[-577,2],[-31,0],[-49,1],[-101,1],[-39,0],[-74,1],[-41,0],[-107,0],[-158,0],[-64,0],[-123,0],[-145,1],[-71,0],[-17,0],[-130,0],[-46,0],[-948,1],[-110,0],[-169,0],[-449,0],[-43,0],[-99,0],[-22,0],[-46,1],[-85,-1],[-57,0],[-175,-1],[-226,-1],[-117,1],[-50,0],[-136,1],[-39,1],[-345,3],[-55,-1],[-323,-2],[-56,0],[-134,-1],[-5,0],[-106,-1],[-61,0],[-32,0],[-21,0],[-82,0],[-69,0],[-732,3],[-28,0],[-123,0],[-3,0],[-188,0],[-230,-1],[-141,0],[-123,0],[-245,0],[-443,0],[-97,0],[-55,0],[-153,1],[-370,0],[-150,0]],[[14716,70509],[0,16],[0,36],[0,155],[0,20],[0,2],[0,29],[0,79],[0,4],[0,47],[0,18],[0,29],[-1,93],[0,118],[0,66],[0,33],[0,78],[0,71],[0,44],[2,68],[0,14],[-1,90],[-1,22],[0,19],[0,30],[0,45],[1,29]],[[14716,71764],[-1,58],[0,22],[-1,7],[0,13],[7,251],[-1,28],[2,150],[1,149],[0,9],[0,22],[0,20],[-1,44],[-2,122],[-2,93],[-3,118],[11,168],[-1,24],[-1,19],[-1,24],[-1,33],[-2,62],[0,26],[0,110],[0,46],[0,28],[-1,66],[0,111],[0,57],[0,30],[0,43],[0,74],[0,88],[0,75],[-1,157],[0,71],[0,84],[0,103],[1,46],[0,71],[-1,225],[0,92],[0,83],[0,40],[-13,84],[1,109],[0,34],[1,101],[1,104],[0,31],[0,53],[1,75],[3,200],[0,36],[1,77],[2,142],[1,9],[0,9],[2,58],[0,16],[-1,31],[0,171],[0,34],[1,102],[0,15],[1,41],[0,21],[1,55],[-2,260],[-1,126],[0,4],[-1,55],[0,15],[0,52],[0,22],[-1,37],[1,50],[2,73],[1,37],[1,47],[-2,37]],[[14718,77349],[2,20],[-1,33],[-1,14],[0,24],[0,25],[-1,74],[0,21],[-1,68],[0,51],[0,125],[2,169],[0,15],[0,17],[2,225],[-1,138],[-3,210],[12,63],[71,369],[1,63],[1,16],[-2,101],[3,71],[0,4],[1,28],[3,57],[0,16],[0,5],[-4,32],[-5,466],[1,97],[0,29],[0,54],[9,313],[0,15],[0,25],[0,15],[0,4],[-2,448],[0,40],[-1,117],[0,91],[0,110],[-2,72],[0,230],[4,49],[2,33],[0,32],[-5,75],[1,51],[1,95],[0,67],[0,28],[0,20],[-1,78],[-5,77],[-1,36],[-1,26],[-2,65],[-1,79],[1,31],[-1,276],[0,38],[0,3],[0,14],[2,38],[2,61],[0,45],[0,82],[0,147],[0,42],[1,184],[1,28],[1,148],[0,43],[0,335],[0,58],[0,17],[4,17],[21,121],[-1,82]],[[14718,77349],[-32,0],[-490,-2],[-228,4],[-293,-3],[-63,-8],[-15,-2],[-488,-5],[-19,1],[-289,0],[-277,1],[-22,0],[-53,0],[-41,0],[-196,2],[-261,3],[-98,0],[-42,0],[-15,0],[-199,0],[0,17],[-321,1],[-296,2],[-82,0],[-93,0],[-223,1],[-11,-124],[0,-81],[-121,0],[-143,0],[-55,0],[-78,0],[-175,0],[-27,0],[-37,0],[-53,1],[2,-106],[1,-213],[0,-42],[-1,-48],[-641,0],[-25,0],[-2,0],[-19,0],[-144,0],[-261,0],[-21,1],[-152,-1],[-97,0],[-296,0],[-3,0],[-27,0],[-26,0],[-2,23],[3,9],[4,14],[1,51],[1,73],[0,34],[-33,0],[-13,0],[-6,0],[-86,0],[-65,0],[-33,0],[-23,0],[-47,-1],[-19,0],[-24,0],[-55,0],[-30,0],[-101,-1],[-2,-73],[-87,0],[-379,-1],[-223,0],[-3,-82],[2,-99],[3,-24],[-121,-1],[-48,0],[-57,0],[-83,-2],[-35,0],[-17,2],[-89,-1],[-76,0],[-301,-2],[-52,2],[-35,0],[-137,3],[-134,-1],[-14,0],[-16,0],[-17,1],[-17,0],[-18,0],[-26,-1],[-62,0],[-34,-1],[-18,0],[-32,0],[-5,0],[-91,0],[-67,0],[-18,-1],[-47,0],[-21,0],[-32,0],[-44,1],[-26,-1],[-21,1],[-19,-1],[-31,0],[-35,0],[-42,-1],[-32,-1],[-28,0],[-24,2],[-35,0],[-62,0],[-17,-1],[-26,1],[-32,0],[-18,0],[-57,-2],[-30,2],[-41,0],[-31,0],[-21,-1],[-29,0],[-230,1],[-218,1],[-136,-2],[-37,-1],[-22,2],[-42,0],[-290,0],[-54,0],[-69,0],[-71,0],[-16,-1],[-73,0],[-16,0]],[[3258,76668],[0,34],[0,17],[1,21],[-6,54],[1,16],[2,106],[2,97],[2,39],[-2,90],[0,78],[0,27],[-1,84],[0,16],[-1,122],[1,173],[0,10],[0,27],[0,1],[0,276],[0,100],[0,60],[0,34],[0,113],[0,112],[0,15],[0,20],[0,59],[-3,112],[-6,308],[0,16],[0,7],[0,49],[0,33],[0,35],[0,17],[-6,107],[-3,95],[-1,28],[-2,134],[1,29],[-1,31],[4,102],[1,28],[1,37],[-1,66],[0,85],[-1,156],[0,41],[-2,332],[-3,25],[0,431],[0,15],[0,24],[0,24],[0,24],[0,16],[0,24],[2,41],[-3,95],[0,16],[-1,26],[-2,41],[0,16],[0,16],[0,16],[0,16],[-2,45],[-1,26],[0,19],[1,42],[1,53],[-1,10],[0,6],[-1,17],[1,16],[2,23],[0,15],[-1,35],[0,37],[-3,92],[0,17],[2,21],[0,100],[0,120],[1,50],[0,10],[-2,32],[-6,94],[1,14],[-2,19],[-5,50],[-3,141],[0,15],[2,58],[1,23],[5,117],[2,56],[0,30],[0,17],[0,22],[0,222],[0,56],[0,111],[0,77],[1,89],[-2,39],[-2,51],[-3,54],[-1,93],[4,233],[-2,88],[-1,31],[-1,55],[0,31],[-1,47],[-1,20],[2,16],[0,23],[1,87],[1,41],[0,3],[0,35],[0,72],[0,16],[1,118],[1,58],[0,38],[0,164],[0,7],[1,62],[0,96],[0,41],[-1,105],[-1,212],[-1,116],[1,76],[1,51],[0,33]],[[14716,71764],[-74,0],[-182,-1],[-21,-1],[-239,0],[-32,-1],[-48,0],[-89,0],[-63,0],[-77,-1],[-47,0],[-33,0],[-19,0],[-230,-1],[-107,-1],[-109,1],[-7,0],[-94,1],[-94,0],[-130,0],[-71,0],[-68,0],[-147,-1],[-27,0],[-68,6],[-1,74],[-3,101],[-1,27],[-62,1],[-192,3],[-93,2],[-23,-1],[-145,-4],[-22,0],[-34,-1],[-47,-1],[-38,-2],[-28,-1],[-25,0],[-83,0],[-126,0],[-98,1],[-204,0],[-252,0],[-50,0],[-17,0],[-147,1],[-417,2],[-76,0],[-45,0],[-33,1],[-38,0],[-67,0],[-49,0],[-289,0],[-112,1],[-76,0],[-80,0],[-119,10],[-27,0],[-12,-1],[-19,0],[-43,0],[-124,1],[-18,0],[-126,-1],[-16,0],[-96,1],[-89,-1],[-26,0],[-121,0],[-119,0],[-147,0],[-117,0],[-201,0],[-17,0],[-114,0],[-25,0],[-172,-1],[-57,0],[-95,1],[-175,1],[0,-24],[-1,-46],[-101,0],[-18,-1],[-126,0],[-174,0],[-140,0],[-35,0],[-122,0],[-104,0],[-95,0],[-71,0],[-49,0],[4,107],[-8,84],[-22,17],[-20,3],[-16,3],[-19,15],[-20,9],[-21,0],[-15,-5],[-39,-18],[-27,-5],[-21,9],[-27,5],[-16,21],[-6,18],[-21,-1],[-21,-2],[-50,32],[17,18],[-15,7],[-32,-3],[-18,1],[-4,2],[-12,5],[-36,16],[-25,3],[-7,16],[-51,11],[-24,1],[-21,9],[-15,17],[-23,11],[-3,22],[-20,8],[-23,5],[-16,9],[-17,13],[-28,14],[-26,11],[-9,14],[-3,17],[-7,36],[-30,2],[-27,9],[-29,24],[-40,26],[-44,21],[-20,9],[-28,-1],[-26,3],[-18,3],[-14,-8],[-19,9],[-17,-5],[-18,-7],[-21,6],[-21,2],[-17,-1],[-19,0],[-18,0],[-17,3],[-15,9],[-30,14],[-33,5],[-22,2],[-18,3],[-17,4],[-17,5],[-19,2],[-17,4],[-18,2],[-18,-1],[-15,-6],[-26,-8],[-24,-11],[-19,-19],[-9,-16],[-21,-16],[-25,-13],[-20,-9],[-25,-12],[-24,-11],[-15,-10],[-18,-13],[-14,-18],[-12,-14],[-27,-21],[-20,-9],[-17,0],[-18,4],[-57,11],[-38,7],[-25,3],[-15,7],[-14,9],[-15,10],[-2,15],[-5,17],[-15,13],[2,15],[-21,16],[-36,25],[-24,37],[-20,9],[-23,14],[-38,12],[-42,15],[-59,30],[-19,20],[-18,28],[4,35],[-1,17],[1,19],[1,15],[3,27],[8,14],[22,17],[2,22],[10,14],[14,9],[8,12],[10,14],[11,10],[7,14],[7,13],[8,15],[3,16],[1,18],[5,19],[12,19],[7,17],[8,16],[-8,13],[-9,14],[-14,14],[-12,10],[-10,14],[-17,7],[-32,5],[-20,5],[-25,14],[-20,-3],[-21,2],[-20,19],[-12,11],[-21,11],[-13,9],[-23,13],[-24,-6],[-22,-2],[-19,2],[-17,0],[-21,1],[-23,0],[-19,0],[-24,2],[-27,11],[-18,10],[-15,14],[-15,6],[-11,11],[-18,9],[-21,0],[-24,-3],[-27,2],[-35,3],[-48,1],[-37,1],[-46,-5],[-20,-8],[-19,-10],[-30,-18],[-29,3],[-24,-6],[-31,1],[-45,0],[-26,-1],[-16,-3],[-20,-1],[-27,-5],[-37,-3],[-35,4],[-16,2]],[[3261,73260],[-1,97],[-1,102],[0,51],[0,127],[0,15],[0,180],[0,80],[0,127],[-1,84],[0,181],[0,27],[0,12],[0,232],[0,87],[0,160],[0,4],[0,23],[0,7],[0,15],[-1,139],[-1,63],[0,71],[0,1],[0,86],[0,39],[0,24],[0,110],[2,53],[-1,71],[-1,46],[1,91],[1,67],[0,38],[0,88],[0,109],[0,81],[1,141],[0,66],[0,144],[0,63],[0,10],[-1,132],[0,64]],[[14716,70509],[0,-25],[0,-28],[0,-45],[0,-46],[0,-30],[0,-83],[1,-54],[0,-24],[0,-23],[0,-24],[0,-21],[0,-45],[0,-32],[0,-26],[0,-97],[0,-182],[0,-65],[0,-69],[0,-137],[0,-122],[0,-7],[0,-12],[0,-38],[0,-74],[0,-369],[0,-76],[0,-63],[0,-2],[0,-137],[0,-92],[1,-118],[0,-23],[0,-27],[0,-70],[0,-42],[0,-141],[0,-19],[0,-146],[-1,-62],[1,-92],[1,-179],[0,-161],[0,-77],[0,-11],[1,-118],[0,-110],[0,-96],[0,-55],[0,-31],[0,-178],[0,-20],[1,-133],[0,-26],[0,-162],[0,-48],[0,-26],[0,-105],[0,-17],[0,-34],[-264,6],[-87,2],[-318,4],[-18,0],[-53,1],[-155,1],[-132,1],[-133,0],[-37,1],[-133,0],[-206,0],[-107,0],[-274,1],[-48,0],[-20,0],[-31,0],[-26,0]],[[12679,66151],[-199,0],[-36,0],[-99,0],[-118,0],[-66,0],[-122,0],[-58,0],[-18,0],[-343,-3],[-260,-3],[-24,0],[-18,0],[-362,-3],[-510,-10],[-26,-1],[-19,-8],[-26,-2],[-26,6],[-21,7],[-15,5],[-21,6],[-18,17],[-43,2],[-56,11],[-18,-7],[-23,-13],[-22,-4],[-18,-1],[-20,2],[-21,2],[-45,-6],[-3,-16],[-17,-2],[-27,5],[-35,-5],[-15,-12],[-16,-15],[-17,-2],[-26,-6],[-13,-11],[-17,-5],[-14,-7],[-16,-7],[-18,-8],[-15,-15],[-14,-12],[-10,-13],[-13,-12],[-16,-4],[-8,-3],[-8,-3],[-24,3],[-20,0],[-10,-11],[-3,-3],[14,-10],[9,-15],[3,-9],[2,-5],[1,-18],[-14,-12],[-25,-1],[-17,1],[-18,0],[-21,0],[-17,1],[-20,2],[-18,0],[-17,-1],[-20,-2],[-19,-2],[-22,-1],[-18,-3],[-21,-6],[-22,-10],[-14,-8],[-13,-9],[-18,-12],[-12,-10],[-5,-14],[-10,-16],[-15,-8],[-21,-5],[-17,-9],[-15,-9],[-18,-6],[-17,-3],[-21,-8],[-16,-13],[-14,-8],[-13,-14],[-10,-12],[-16,-5],[-12,-11],[-13,-9],[-12,-18],[-14,-10],[-7,-14],[-10,-13],[-14,-11],[-23,-15],[-13,-10],[-3,-16],[-16,-2],[-18,-6],[-14,-15],[-16,-7],[-19,-5],[-20,-6],[-19,-5],[-18,-3],[-21,3],[-18,6],[-17,-1],[-15,-9],[-12,-12],[-12,-14],[-11,-11],[-11,-10],[2,-17],[-3,-17],[-1,-18],[-3,-14],[-14,-9],[-13,-11],[-14,-10],[-11,-10],[-9,-13],[-9,-17],[-5,-14],[-1,-16],[5,-17],[2,-17],[-7,-13],[-13,-13],[-16,-10],[-13,-10],[-8,-14],[-3,-22],[4,-16],[0,-17],[-18,-10],[-5,-13],[-6,-17],[-19,-16],[-7,-18],[2,-18],[-7,-14],[-13,-9],[-17,-4],[-15,-11],[-2,-15],[16,-8],[9,-15],[-9,-13],[-14,-11],[-14,-15],[-11,-15],[-1,-16],[-12,-14],[-16,-7],[-17,-7],[-25,0],[-20,-1],[-15,0],[-41,-1],[-57,-1],[-248,-4],[-99,-2],[-50,0],[-176,0],[-59,0],[-332,0],[-42,0],[-279,0],[-48,0],[-272,-1],[-91,0],[-88,0],[-73,0],[-20,0],[-83,0],[-127,0],[-261,0],[-17,0],[-150,0],[-156,0],[-57,0],[-43,0],[-102,0],[-334,-1],[-126,0],[-2,0],[-46,0],[-19,0],[-19,0],[-26,0],[-79,0],[-2,0],[-15,0],[-324,0],[-413,0],[-102,0],[-242,-1],[-278,-2],[-88,0],[-16,-1]],[[3262,64904],[0,27],[-1,71],[0,34],[1,178],[0,95],[0,27],[0,126],[0,99],[0,16],[0,29],[0,184],[-1,153],[0,70],[1,19],[0,59],[0,50],[0,16],[0,122],[1,57],[0,75],[0,59],[0,49],[2,290],[0,54],[0,52],[1,143],[0,100],[0,21],[0,17],[-1,69],[-1,126],[0,36],[-1,54],[-1,115],[0,9],[0,12],[0,26],[0,4],[-1,36],[0,1],[0,79],[-1,63],[0,49],[0,75],[1,84],[0,66],[1,29],[0,69],[1,162],[0,73],[0,55],[0,15],[1,68],[0,42],[0,86],[-3,78],[-1,28],[-2,14],[1,18],[2,17],[-1,27],[0,16],[0,29],[0,29],[4,15],[1,41],[-1,89],[-1,16],[0,41],[-2,113],[2,176],[1,148],[0,43],[1,21],[0,80],[0,108],[-1,51],[1,111],[0,70],[0,46],[0,68],[0,19],[0,1],[0,59],[0,51],[0,53],[0,69],[0,5],[0,23],[-1,99],[0,154],[-1,46],[0,113],[0,37],[0,47],[0,15],[-1,87],[0,16],[0,51],[-1,28],[0,84],[0,46],[0,16],[-1,88],[0,48],[0,60],[-2,66],[0,87],[0,37],[0,26],[1,59],[1,31],[0,73],[1,37],[0,69],[0,72],[0,57],[0,132],[1,167],[1,213],[0,56],[0,3],[0,39],[0,54],[0,20],[-2,127],[0,20],[1,146],[0,87],[0,19],[0,22],[-1,34]],[[36836,70488],[-24,-26],[4,-24],[31,-3],[81,-38],[45,-4],[26,-3],[16,-1],[28,-17],[29,-6],[29,-5],[51,-30],[21,-8],[23,-20],[19,-5],[31,-3],[48,5],[44,-3],[29,-14],[17,-11],[18,-46],[27,-30],[-48,-24],[-51,-12],[-28,-2],[-7,-36],[1,-13],[-11,-12],[-3,-17],[-14,-10],[-23,-2],[-23,-16],[-19,-24],[-19,-48],[25,-36],[-8,-25],[1,-18],[22,-39],[14,-15],[15,-5],[11,-61],[9,-15],[1,-26],[-6,-25],[-1,-21],[1,-8],[-23,-21],[-15,-6],[-30,-36],[-21,-26],[-26,-22],[-47,-12],[-27,-3],[-25,-34],[-43,-64],[2,-25],[41,-23],[72,-24],[69,8],[121,-26],[39,-62],[44,-41],[-24,-23],[-10,-9],[-46,-30],[16,-28],[29,-18],[-14,-13],[-11,-8],[-13,-19],[2,-17],[11,-20],[42,-1],[10,-24],[56,-74],[47,5],[33,-22],[109,-31],[69,-21],[88,6],[28,-45],[30,-28],[9,-12],[-13,-22],[-35,-37],[-3,-42],[-23,-20],[30,-11],[12,-13],[6,-33],[6,-31],[41,-4],[20,2],[35,8],[48,79],[65,17],[57,29],[84,-1],[91,23],[43,14],[29,-7],[13,-14],[16,-7],[19,-6],[9,-63],[7,-31],[30,-19],[16,-12],[5,-18],[94,-47],[23,2],[8,-2],[17,-23],[49,-35],[27,-12],[58,-7],[53,-5],[39,-57],[37,-29],[23,-47],[55,-17],[47,-4],[45,5],[70,-18],[106,10],[49,7],[89,-66],[59,-25],[38,13],[40,4],[73,22],[21,42],[58,-30],[-31,-48],[29,-90],[12,-21],[55,4],[18,-1],[24,-29],[52,-9],[26,-11],[6,-49],[61,-17],[43,-21],[22,-22],[-20,-29],[-10,-24],[10,-53],[-41,-29],[17,-25],[32,-6],[2,-39],[-44,-30],[9,-28],[-31,-26],[-8,-42],[-55,-20],[-43,-23],[-39,-6],[-27,-17],[3,-27],[-50,-26],[-2,-35],[-6,-15],[33,-27],[-2,-18],[-32,-16],[-37,-19],[-41,-39],[-4,-21],[22,-22],[78,-42],[3,-16],[19,-5],[53,-3],[47,-9],[66,-8],[22,-4],[11,-12],[-13,-29],[0,-37],[17,-20],[18,-16],[14,3],[65,3],[49,-11],[69,4],[36,5],[20,-2],[56,22],[-7,25],[20,41],[46,45],[37,22],[2,35],[30,17],[69,10],[18,3],[42,7],[31,2],[59,19],[34,-1],[39,-10],[49,4],[38,0],[13,1],[31,10],[36,15],[35,26],[9,41],[2,8],[29,27],[3,15],[-6,13],[-11,12],[3,19],[17,8],[56,25],[25,16],[29,28],[9,24],[-16,9],[8,33],[20,36],[18,11],[30,-9],[83,-42],[35,-9],[44,4],[36,13],[30,17],[20,2],[44,-11],[37,-14],[18,-3],[37,-3],[21,8],[31,17],[29,9],[25,4],[24,-4],[22,-11],[34,-35],[26,-15],[29,-4],[54,-5],[37,-5],[44,-14],[43,-28],[15,-34],[-11,-31],[14,-20],[6,-20],[11,-11],[48,-3],[34,-11],[8,-5],[22,-29],[45,-32],[24,-20],[24,0],[24,-14],[8,-10],[46,-15],[27,-7],[17,-32],[4,-10],[37,-22],[15,-21],[-17,-30],[-17,-26],[-7,-43],[-5,-24],[-17,-29],[22,-11],[7,-16],[-3,-28],[-16,-23],[-50,-43],[-81,-49],[-65,-26],[-39,-20],[-51,-22],[7,-13],[18,-37],[-10,-14],[-14,-10],[-10,-18],[14,-7],[50,1],[46,8],[21,0],[16,-17],[1,-20],[-7,-17],[-57,-13],[-31,-19],[-12,-24],[28,-21],[3,-41],[28,-24],[82,3],[119,-16],[40,-10],[42,-23],[38,-2],[10,-27],[-7,-13],[17,-17],[22,-9],[27,-59],[-59,-39],[-6,-22],[12,-29],[14,-22],[87,-30],[93,-21],[53,10],[73,-34]],[[42706,66221],[-173,-30],[-335,-45],[-399,-55],[-34,-4],[-161,-21],[-237,-31],[-17,-2],[-42,-6],[-17,-2],[-99,-13],[-78,-10],[-356,-47],[-59,-8],[-458,-60],[-59,-8],[-582,-79],[-186,-25],[-334,-45],[-251,-34],[-171,-23],[-170,-23],[-64,-9],[-258,-35],[-153,-21],[-778,-105],[-439,-59],[-647,-87],[-122,-17],[-597,-81],[-336,-46],[-645,-88],[-21,-3],[-29,-4],[-266,-39],[-134,-16],[-158,-22],[-84,-11],[-86,-12],[-44,-6],[-838,-114],[-673,-84],[-77,-12],[-612,-94],[-242,-32],[-21,-3],[-41,-5],[-169,-24],[-740,-104],[-114,-16],[-114,-14],[-249,-36],[-12,-1],[-42,-6],[-335,-47],[-39,-5],[-65,-10],[-55,-8],[-168,-24],[-323,-43],[-43,-5],[-47,-7],[-27,-4],[-127,-18],[-371,-52],[-52,-5],[-228,-34],[-300,-41],[-354,-49],[-218,-33],[-25,-4],[-839,-117],[-59,-8],[-24,-13],[7,-37],[12,-45],[-7,-20],[-15,-13],[-28,-19],[-15,-13],[-11,-23],[-18,-26],[-10,-13],[-5,-21],[6,-19],[-10,-14],[5,-18],[-28,-17],[-14,-15],[-10,-24],[3,-17],[37,-21],[14,-20],[10,-13],[-2,-19],[-1,-14],[5,-24],[7,-18],[17,-7],[-8,-13],[-27,-1],[-21,-10],[-20,-1],[-25,0],[-16,-6],[-17,-8],[-17,-4],[-43,-2],[-22,4],[-16,-9],[-11,-14],[-5,-16],[-13,-10],[10,-19],[-15,-8],[-1,-27],[2,-17],[7,-15],[17,-14],[-17,-19],[8,-17],[-22,-25],[-37,-1],[-21,-22],[-13,-20],[-27,2],[-18,-7],[-11,-26],[-34,-16],[-18,2],[-14,-9],[-18,4],[-29,-9],[-10,-12],[-19,-15],[-41,-24],[-35,-17],[-4,-16],[-25,-8],[-7,-25],[9,-13],[-20,-11],[1,-18],[-20,-19],[6,-15],[-20,-1],[-11,-14],[-17,-13],[-21,-10],[-5,-22],[-3,-17],[-23,-14],[-14,-11],[-3,-3],[-16,-2],[-18,-1],[-18,-4],[-31,-9],[-15,12],[-21,5],[-19,0],[-19,-11],[-40,-11],[13,-9],[-8,-13],[-17,-5],[-20,13],[-18,3],[-14,-14],[-1,-17],[-11,-17],[-24,-28],[-14,-9],[-11,-27],[-10,-19],[-21,-20],[-17,1],[-37,22],[-28,-1],[-40,5],[-21,-2],[-15,-12],[10,-21],[-15,-9],[-30,0],[-39,-19],[-14,-9],[-13,-10],[-20,-6],[-15,-9],[-23,-26],[10,-21],[-26,-11],[-24,-5],[-20,-12],[-16,-23],[-29,-21],[-9,-23],[-17,-12],[-4,-18],[25,-8],[-11,-25],[15,-11],[17,-16],[-8,-15],[-47,-23],[-8,-15],[15,-14],[21,-29],[-12,-20],[-1,-16],[-31,-24],[9,-17],[8,-13],[13,-42],[17,-2],[13,-23],[-14,-25],[3,-17],[-4,-31],[-8,-15],[-15,-7],[-1,-17],[-8,-17],[7,-17],[18,-14],[-18,-11],[-32,5],[-18,2],[-50,0],[-15,-12],[-14,-12],[16,-15],[11,-16],[9,-19],[-3,-14],[6,-17],[0,-18],[-15,-15],[-45,-2],[-34,-5],[-19,-9],[-10,-31],[-11,-15],[-8,-13],[-10,-15],[-25,-23],[5,-20],[-17,-2],[-26,1],[-24,-9],[2,-18],[12,-19],[10,-27],[-1,-16],[-8,-16],[1,-15],[14,-21],[7,-18],[13,-8],[31,-15],[0,-16],[-18,-11],[-13,-15],[-18,-3],[-18,-11],[-25,-32],[-16,-5],[-23,-15],[-14,-8],[-31,-6],[-19,-3],[8,-18],[14,-8],[21,-9],[18,-10],[3,-22],[-42,-7],[-23,-3],[-18,-12],[-26,-9],[-15,5],[-19,-1],[-35,-5],[-26,-10],[-25,-10],[-20,-5],[-19,-7],[-29,-27],[12,-16],[15,-40],[6,-13],[-2,-15],[-16,7],[-17,-5],[-17,-12],[-27,-40],[-7,-14],[-22,-2],[-60,10],[-52,7],[-26,2],[-18,-8],[-12,-20],[-26,4],[-34,-8],[-22,4],[-30,11],[-37,21],[-23,14],[-30,16],[-13,19],[-19,0],[-21,-7],[1,-15],[6,-16],[-33,-7],[10,-15],[8,-17],[-17,-4],[-28,-2],[-56,-3],[-25,-9],[-12,11],[0,17],[0,20],[-21,19],[-39,18],[-16,21],[-15,8],[-32,2],[-23,-15],[-34,-15],[-19,2],[-21,17],[-17,11],[-32,10],[-47,4],[-17,3],[-21,15],[-2,35],[-18,1],[-15,-6],[-22,2],[-37,-5],[-22,13],[-24,11],[-29,27],[-10,14],[-10,-1],[-16,-2],[-27,-9],[-24,4],[-16,-5],[-17,-3],[-23,-9],[-18,7],[-17,-1],[-18,-7],[-16,-3],[-19,0],[-31,7],[-31,26],[-22,8],[-37,8],[-25,5],[-22,-8],[-53,-5],[-18,5],[-14,8],[-19,2],[-15,-10],[-22,8],[-21,2],[-49,4],[-15,10],[-2,16],[-33,5],[-55,22],[-23,-1],[-23,-4],[-17,6],[-12,14],[-29,13],[-20,9],[-23,-9],[-25,-6],[-24,4],[-36,8],[-34,-7],[-49,-1],[-15,4],[-25,3],[-20,-6],[-25,8],[-20,-5],[-41,-2],[-16,5],[-24,1],[-39,-6],[-20,1],[-18,-3],[-14,-16],[-21,-4],[-35,20],[-38,7],[-51,25],[-16,-8],[-22,-1],[-24,4],[-26,1],[-35,-6],[-32,-2],[-26,2],[-41,-6],[-13,-9],[-48,-13],[-28,-14],[-16,3],[-17,9],[-10,13],[-18,12],[-28,1],[-16,5],[-32,2],[-24,10],[-28,16],[-24,7],[-22,3],[-27,-3],[-21,-7],[-23,9],[-30,-2],[-17,4],[-17,9],[-6,15],[4,29],[-14,24],[-21,1],[-24,6],[-32,18],[-21,5],[-26,6],[-32,14],[-21,11],[-22,8],[-54,13],[-33,6],[-12,15],[0,15],[-6,14],[-15,9],[-38,10],[-29,1],[-16,11],[-9,17],[-9,21],[-14,13],[-18,8],[-16,3],[-36,12],[-19,15],[-20,14],[-12,13],[-24,22],[-22,17],[-27,25],[-17,20],[-14,10],[-18,11],[-41,37],[-8,16],[-14,12],[-14,16],[-26,16],[-25,19],[-30,22],[0,31],[3,20],[-11,11],[-36,-2],[-24,2],[-21,6],[-24,10],[0,18],[16,41],[0,15],[-7,2],[-13,5],[-38,11],[-19,12],[-25,10],[-14,9],[-15,10],[-25,19],[-53,4],[-16,39],[-44,3],[-27,1],[-19,9],[-31,6],[-23,15],[-12,12],[-36,6],[-21,3],[-38,16],[-35,-2],[-42,7],[-30,11],[-20,3],[-35,-4],[-16,3],[-19,0],[-18,-4],[-19,-4],[-62,-12],[-57,-18],[-46,14],[-22,5],[-102,11],[-18,7],[-21,9],[-38,8],[-32,11],[-23,4],[-33,-3],[-48,-2],[-10,-12],[-9,-25],[-23,-19],[-23,-15],[-11,-15],[-21,-15],[-41,-22],[-62,-6],[-19,0],[-37,-3],[-33,-3],[-20,13],[-15,26],[-16,10],[-14,13],[-14,14],[-29,12],[-57,30],[-12,16],[4,18],[-14,12],[-21,31],[-24,5],[-24,15],[-16,3],[-27,0],[-29,7],[-29,13],[-21,1],[-24,-2],[-38,9],[-31,5],[-19,7],[-25,4],[-20,-1],[-19,-3],[-7,-1],[-35,-2],[-24,-7]],[[17284,62476],[-20,8],[-2,0],[-8,3],[-61,21],[-9,11],[2,15],[3,15],[-4,30],[-10,25],[1,32],[3,17],[6,20],[9,17],[2,17],[-6,19],[-13,20],[-16,18],[-2,2],[-9,11],[-25,18],[-13,17],[-11,28],[-11,31],[1,24],[-13,22],[-19,15],[-26,19],[-31,15],[-16,9],[-20,17],[-35,33],[-18,12],[-16,9],[-23,15],[-27,7],[-76,0],[-15,0],[-150,1],[-51,0],[-45,0],[-36,0],[-201,0],[-288,-5],[-48,2],[-139,0],[-34,1],[-46,-1],[-119,-1],[-400,1],[-124,1],[-8,0],[-11,1],[-7,15],[-15,8],[-16,12],[0,11],[0,5],[3,18],[0,17],[3,15],[-13,10],[-16,3],[6,14],[20,7],[0,15],[-19,1],[-19,1],[3,18],[-5,18],[-15,5],[-4,15],[-12,15],[-11,10],[4,26],[-20,4],[-10,14],[-3,22],[-15,13],[-16,13],[0,14],[-10,13],[-25,8],[-10,14],[-15,10],[-18,12],[-22,10],[-17,7],[-21,-5],[-23,-1],[-13,9],[-13,11],[-20,7],[-19,7],[-17,21],[-16,5],[-8,12],[-7,19],[-5,13],[-10,22],[-12,10],[-14,11],[-15,7],[-23,7],[-12,12],[-17,3],[-17,7],[-22,2],[-30,-2],[-17,9],[-16,5],[-22,-1],[-17,14],[-20,0],[-18,7],[-17,-5],[-15,9],[-21,10],[15,7],[9,12],[-7,16],[-9,18],[-17,1],[-15,6],[-11,13],[-17,1],[-19,11],[-22,9],[-15,10],[-8,12],[-17,5],[-17,2],[-19,7],[-20,0]],[[14076,63836],[0,93],[0,106],[0,28],[0,42],[0,34],[-1,68],[0,40],[0,28],[0,30],[7,2],[-11,6],[-2,1],[-30,-7],[-3,-3],[-17,-4],[-22,-3],[-19,-1],[-21,-1],[-37,6],[-38,6],[-8,3],[-14,6],[-44,2],[-12,1],[-6,1],[-33,1],[-30,0],[-11,0],[-23,0],[-17,-5],[-26,-11],[-12,-4],[-15,-6],[-25,-4],[-9,-1],[-30,-3],[-24,-5],[-14,-3],[-44,-5],[-28,0],[-26,-2],[-39,0],[-33,4],[-10,1],[-32,2],[-16,0],[-60,-3],[-44,-1],[-52,-1],[-29,3],[-22,-1],[-2,0],[-22,4],[-3,0],[-13,2],[-30,3],[-46,9],[-3,0],[-36,4],[-20,1],[-23,-1],[-12,-2],[-12,-1],[-27,-5],[-27,-9],[-22,-15],[-26,-31],[-8,-30],[-12,-26],[-1,-2],[0,3],[0,27],[-2,17],[-5,83],[1,82],[2,185],[1,100],[0,54],[1,56],[0,6],[3,250],[0,46],[0,29],[-69,-3],[0,72],[-1,136],[0,110],[-1,102],[0,100],[0,51],[1,52],[0,117],[0,56],[-1,190],[0,24],[0,11],[0,18]],[[43199,50863],[-45,-26],[-34,-34],[-34,-36],[-6,-15],[-44,-39],[-59,-39],[-30,-3],[-28,8],[-26,3],[-22,-9],[-21,-13],[-23,-25],[-6,-22],[-4,-23],[-11,-13],[-26,-10],[-26,-11],[-29,-13],[-29,-14],[-28,-10],[-33,-5],[-26,-2],[-25,-5],[-35,-20],[-19,-12],[-26,3],[-23,5],[-44,-8],[-33,-10],[-35,-5],[-43,-7],[-24,-21],[-17,-14],[-16,-13],[-21,-8],[-30,-18],[-26,-6],[-13,-17],[-11,-15],[-22,-15],[-26,-9],[-18,-27],[-1,-18],[-14,-19],[-12,-18],[-19,-18],[-26,-20],[-13,-17],[-1,-19],[-2,-27],[-13,-10],[-13,-17],[-12,-14],[-26,-19],[-15,-16],[-9,-24],[-16,-12],[-18,-11],[-3,-16],[0,-21],[-5,-15],[-27,-5],[-26,-7],[-27,-15],[-20,-13],[-8,-14],[0,-18],[8,-19],[13,-16],[-3,-20],[-26,-17],[-19,-15],[-19,-15],[-18,-17],[-11,-17],[-23,-18],[-23,-16],[-16,-9],[-24,-21],[-11,-23],[-2,-21],[-10,-16],[-24,-3],[-24,4],[-29,8],[-16,4],[-21,7],[-55,0],[-27,-3],[-26,6],[-28,11],[-17,4],[-15,9],[2,17],[-10,14],[21,13],[13,17],[-13,25],[0,21],[-2,21],[-14,12],[-16,8],[-13,12],[-15,17],[-35,4],[-29,6],[-24,17],[-15,19],[-19,10],[-26,5],[-39,7],[-24,0],[-40,0],[-18,-7],[-39,6],[-22,10],[-18,1],[-37,-7],[-21,-10],[-24,-4],[-92,-10],[-16,-6],[-18,-2],[-18,-3],[-23,0],[-19,3],[-37,0],[-27,1],[-18,6],[-23,7],[-24,-2],[-18,0],[-34,-8],[-25,4],[-21,12],[-18,4],[-22,6],[-18,7],[-20,8],[-8,17],[-22,17],[-17,8],[-27,1],[-24,1],[-26,10],[-23,9],[-16,10],[-17,7],[-20,12],[-14,8],[-17,9],[-15,9],[-18,13],[-19,19],[-13,21],[-18,18],[-26,21],[-28,11],[-28,6],[-20,19],[-11,15],[-17,9],[-26,11],[-33,5],[-31,8],[-27,-5],[-27,-9],[-18,-3],[-19,2],[-35,-1],[-37,-2],[-39,3],[-28,-3],[-23,-19],[-24,-15],[-31,-16],[-15,-28],[-4,-23],[-8,-17],[-9,-20],[-5,-19],[-4,-26],[-13,-13],[-10,-13],[-8,-13],[11,-12],[17,-5],[19,-8],[18,-5],[13,-11],[-8,-14],[-2,-17],[5,-22],[2,-17],[-12,-11],[-14,-12],[-12,-15],[-8,-18],[-3,-15],[0,-17],[2,-15],[11,-13],[13,-12],[-19,-9],[-17,-11],[-19,-19],[-5,-16],[3,-14],[7,-14],[8,-14],[11,-19],[13,-16],[10,-15],[11,-13],[18,-12],[19,-8],[16,-9],[15,-13],[16,-18],[6,-14],[5,-16],[4,-20],[4,-17],[8,-19],[-4,-15],[-13,-12],[-15,-14],[-11,-12],[-18,-10],[-16,-8],[-8,-13],[-6,-14],[1,-14],[7,-15],[-4,-17],[-8,-17],[-5,-16],[-6,-20],[-8,-18],[-7,-20],[-3,-19],[8,-13],[10,-12],[6,-19],[9,-16],[19,-5],[18,-2],[16,-7],[18,0],[16,-1],[19,0],[21,1],[24,4],[20,2],[20,-2],[18,-3],[23,-2],[27,-3],[23,-2],[22,-1],[17,0],[17,-4],[20,-2],[27,-1],[11,-13],[4,-20],[11,-13],[19,-11],[16,-12],[17,-17],[-4,-18],[-17,-15],[-9,-15],[-8,-13],[-9,-16],[-12,-14],[7,-14],[16,-10],[18,-10],[13,-16],[9,-22],[7,-21],[8,-17],[13,-12],[13,-9],[19,-8],[19,-4],[18,-4],[18,-6],[24,-8],[21,-9],[16,-6],[13,-8],[13,-13],[15,-14],[38,-19],[8,-14],[15,-10],[16,-3],[16,-1],[19,-5],[18,3],[15,-7],[6,-16],[7,-14],[1,-16],[16,-7],[17,-10],[14,-11],[18,-6],[18,-7],[9,-16],[11,-11],[16,-4],[18,3],[8,4],[10,4],[18,6],[16,5],[18,5],[16,1],[22,3],[28,1],[16,0],[16,0],[19,-5],[18,0],[19,-6],[20,-6],[19,-10],[15,-10],[10,-13],[9,-16],[7,-15],[13,-16],[3,-4],[9,-11],[12,-12],[17,-13],[15,-11],[8,-17],[8,-17],[6,-20],[5,-16],[5,-16],[12,-13],[8,-12],[16,-6],[22,-2],[20,0],[21,0],[14,-8],[15,-10],[6,-16],[0,-14],[0,-14],[3,-17],[8,-15],[12,-17],[14,-16],[16,-10],[21,-5],[25,1],[32,6],[29,10],[24,0],[18,-10],[9,-14],[18,-10],[1,-5],[2,-10],[3,-8],[2,-10],[16,-3],[29,1],[25,6],[35,4],[33,-3],[24,-18],[0,-21],[-16,-34],[-20,-29],[-11,-19],[-3,-16],[2,-28],[15,-26],[10,-15],[10,-13],[8,-13],[7,-13],[29,-30],[14,-17],[13,-16],[10,-13],[24,-12],[21,-8],[31,-13],[27,-7],[14,-12],[-3,-16],[-9,-14],[6,-16],[18,-7],[16,-5],[17,-4],[30,-6],[9,-6],[17,-10],[16,-22],[17,-16],[11,-12],[18,-17],[14,-11],[18,-11],[27,-9],[17,-4],[16,-11],[14,-13],[4,-17],[7,-17],[36,-24],[32,-17],[22,-8],[17,-5],[17,-5],[18,0],[21,-1],[17,-2],[19,-5],[17,-8],[16,-12],[13,-24],[10,-19],[21,-24],[27,-21],[17,-11],[14,-12],[17,-9],[22,-8],[23,-9],[16,-9],[16,-11],[20,-15],[17,-14],[21,-11],[17,-9],[19,-9],[15,-6],[15,-6],[21,-10],[15,-6],[22,-10],[16,-9],[22,-13],[17,-14],[18,-4],[16,3],[26,6],[16,5],[23,13],[24,12],[24,2],[20,-5],[6,-16],[-13,-10],[-14,-13],[-26,-20],[-11,-14],[-12,-12],[-21,-18],[-19,-17],[-24,-19],[-15,-13],[-21,-18],[-15,-10],[-16,-18],[-7,-7],[3,-15],[-5,-15],[-21,-12],[-52,-14],[-40,-10],[-18,-6],[-18,-9],[-21,-13],[-23,-8],[-51,-19],[-26,-9],[-18,-14],[-9,-12],[-19,-9],[-15,-11],[-11,-13],[-14,-8],[-20,-11],[-24,-15],[-22,-6],[-19,-8],[-14,-16],[-4,-23],[-12,-14],[-25,-15],[-28,-8],[-16,-6],[-23,1],[-39,-10],[-18,-11],[-19,-20],[-31,-3],[-13,-13],[-6,-14],[-10,-20],[-12,-26],[-10,-11],[-15,-7],[-17,-6],[-23,-9],[-23,-8],[-17,-6],[-18,-10],[-13,-15],[-3,-16],[-3,-25],[3,-29],[-8,-21],[-15,-21],[-14,-15],[-11,-14],[-13,-10],[-30,-24],[-26,-9],[-25,-4],[-23,2],[-26,-8],[-36,-5],[-23,-16],[-19,-24],[-7,-13],[-31,-38],[-31,-29],[-15,-23],[-1,-17],[10,-19],[-11,-16],[-19,-7],[-18,-6],[-1,-8],[-2,-30],[11,-19],[4,-22],[0,-18],[-9,-29],[-5,-14],[-10,-16],[-8,-23],[-20,-29],[-12,-18],[-9,-11],[-10,-11],[-11,-15],[-10,-11],[-9,-12],[-15,-10],[-13,-8],[-16,-10],[-18,-9]],[[41099,45715],[-132,0],[-274,0],[-51,0],[-278,-1],[-164,0],[-5,0],[-22,0],[-48,0],[-120,0],[-299,1],[-109,0],[-99,0],[-19,0],[-132,0],[-34,0],[-275,1],[-112,0],[-141,0],[-14,0],[-30,0],[-30,0],[-185,0],[-177,0],[-7,0],[-176,1],[-18,0],[-185,0],[-299,0],[-177,0],[-92,0],[-108,-1],[-114,0],[-30,0],[-53,0],[-135,-1],[-37,0],[-233,-1],[-102,0],[-230,-1],[-118,0],[-85,-1],[-407,0],[-23,0],[-97,0],[-388,0],[-242,1],[-94,0],[-38,0],[-242,1],[-457,0],[-29,0],[-78,0],[-290,-3],[-146,0],[-214,0],[-74,0],[-64,0],[-430,-2],[-99,-1],[-297,0],[-87,0],[-237,1],[-66,0],[-96,0],[-97,0],[-167,0],[-12,0],[-129,0],[-256,0],[-178,0],[-354,-1],[-123,-1],[-93,0],[-55,1],[-231,1],[-131,-2],[-29,0],[-193,1],[-164,0],[-156,0],[-223,0],[-48,0],[-363,-1],[-16,0],[-161,0],[-129,-1],[-156,0],[-151,-1],[-110,0],[-146,-1],[-82,0],[-54,0],[-151,0],[-86,0],[-310,-1],[-227,-1],[-26,0],[-44,0],[-34,0],[-70,-1],[-155,0],[-201,0],[-40,0],[-88,0],[-69,-1],[-46,0],[-54,0],[-280,-1],[-42,0],[-520,-1],[-82,0],[-165,0],[-119,0],[-203,0],[-278,0],[-15,0],[-37,0],[-102,0],[-227,0],[-127,0],[-99,1],[-390,1],[-46,1],[-476,1],[-180,0],[-15,0],[-27,0],[-110,0],[-26,0],[-290,0],[-136,0],[-252,-1],[-69,0],[-200,1],[-44,0],[-146,0],[0,-14],[-68,0],[-73,1],[-43,-1],[-274,1],[-307,0],[-38,0],[-192,0],[-35,1],[-91,1],[-98,4],[32,43],[18,7],[16,-2],[16,2],[19,7],[13,9],[18,7],[8,14],[-3,18],[16,6],[21,6],[-7,14],[-8,19],[-11,17],[-11,16],[-13,12],[-10,20],[-10,17],[-11,19],[-19,9],[-15,14],[-8,17],[3,16],[15,7],[-57,28],[-25,-8],[-21,-10],[-21,-14],[-25,-11],[-21,-5],[-22,-3],[-28,-13],[-24,-7],[-22,-9],[-19,-11],[-12,-13],[8,-17],[5,-17],[-13,-9],[-16,-8],[0,-14],[5,-20],[-10,-22],[-31,-1],[-17,-10],[-15,-12],[-22,-10],[-20,-11],[-21,-10],[-13,-16],[-14,-7],[-18,-3],[-10,-16],[-21,-8],[-39,-12],[-20,-20],[-27,-28],[-21,-37],[-10,-22],[-26,-9],[-10,-19],[-30,-4],[-12,-16],[-16,-8],[-27,-13],[-14,-23],[-92,-16],[-16,-16],[-14,-20],[-33,15],[-38,4],[-54,24],[-22,-2],[-25,-11],[-30,-4],[-16,-8],[-37,-15],[-13,-10],[-18,-14],[-13,-12],[-22,-30],[-2,-16],[0,-16],[16,-30],[-11,-12],[-7,-33],[-20,-15],[-23,-8],[-19,-1],[-16,0],[-33,-2],[-26,-2],[-17,-3],[-32,-1],[-27,5],[-15,6],[-28,-8],[-22,0],[-20,-9],[-29,-18],[-25,-8],[-37,-16],[-25,-17],[-21,-34],[-10,-19],[-15,-26],[-33,-7],[-17,-7],[-34,-11],[-16,-3],[-17,15],[-25,9],[-32,2],[-38,5],[-43,12],[-47,1],[-26,-4],[-44,-12],[-50,-3],[-37,15],[-35,31],[-14,13],[-29,4],[-19,-1],[-16,-1],[-37,0],[-18,7],[-19,-2],[-19,-1],[-24,-11],[-22,1],[-34,2],[-6,-27],[-14,-11],[-22,-14],[-23,-29],[12,-17],[-1,-15],[3,-23],[-3,-17],[-3,-17],[-11,-19],[-7,-14],[-11,-13],[-20,-11],[-26,-3],[-38,-22],[-17,-15],[-18,-18],[-15,-10],[-12,-10],[-6,-16],[5,-39],[21,-41],[8,-15],[-14,-18],[-3,-25],[6,-24],[-4,-14],[-12,-17],[-16,-9],[-10,-16],[-13,-9],[-8,-19],[-22,-7],[-17,-9],[-20,-10],[-18,-18],[-22,-24],[-5,-22],[5,-14],[1,-26],[5,-14],[3,-18]],[[17702,44438],[-56,-1],[-357,6],[-29,1],[-26,-1],[-194,1],[-388,1],[-84,0],[-357,1],[-231,0],[-48,1],[-235,3],[-61,0],[-84,1],[-24,1],[-73,1],[-37,0],[-21,0],[-57,1],[-38,1],[-26,0],[-63,1],[-55,0],[-39,0],[-9,13],[0,14],[17,7],[29,0],[-2,16],[-19,18],[-10,14],[-7,16],[13,15],[-7,17],[1,15],[24,5],[18,14],[7,18],[16,5],[14,8],[2,1],[13,9],[18,1],[18,4],[17,10],[14,8],[18,7],[16,3],[13,6],[12,4],[15,8],[24,12],[15,7],[19,8],[13,11],[14,12],[1,16],[4,20],[3,14],[19,10],[2,19],[-6,17],[-12,10],[-14,8],[-15,7],[-13,11],[-14,17],[-4,18],[-11,11],[5,15],[11,17],[-2,20],[-13,12],[-17,5],[-17,9],[-15,-1],[-3,-1],[-18,-6],[-17,6],[-18,-4],[-17,2],[-14,8],[-7,14],[-15,11],[-14,11],[-11,12],[-1,15],[13,7],[10,13],[-5,17],[-5,20],[-6,19],[-7,18],[-13,12],[-13,20],[-8,21],[-4,14],[-4,17],[-6,14],[2,15],[-1,15],[1,18],[-9,16],[-13,14],[6,18],[7,19],[3,23],[4,17],[3,15],[4,26],[15,13],[0,7],[0,12],[-1,18],[-1,16],[-15,18],[-14,16],[-14,15],[-2,14],[10,12],[-2,16],[-6,14],[-14,8],[-19,9],[-18,11],[-20,10],[-1,29],[-8,14],[-17,11],[-11,10],[7,15],[3,25],[0,16],[-15,12],[-13,12],[-5,13],[-8,16],[3,20],[-5,14],[2,19],[-10,17],[-7,13],[-15,11],[-13,11],[-2,22],[-15,10],[-5,18],[-15,9],[6,13],[-8,15],[-11,12],[-12,10],[-11,15],[-19,19],[-2,15],[9,22],[-8,16],[-29,21],[-22,12],[-16,14],[-1,15],[5,17],[-7,22],[-19,17],[-15,12],[-21,16],[-15,8],[-17,14],[-12,20],[0,15],[2,14],[15,12],[-2,27],[-3,15],[-19,20],[-7,15],[0,16],[-8,15],[-10,12],[-11,17],[-9,17],[-23,14],[-14,18],[-10,9],[-1,2],[-16,4],[-12,14],[-7,14],[-10,13],[-9,13],[2,32],[-2,24],[-19,18],[-6,6],[-7,7],[-33,0],[-497,-2],[-75,0],[-94,1],[-72,0],[-33,0],[-28,0],[-22,0],[-53,-1],[-145,0],[-43,-1],[-161,0],[-53,0],[-24,-1],[-63,0],[-1151,4],[-75,0],[-134,0],[-382,0],[-68,0],[-158,0],[-221,0],[-806,-1],[-129,0],[-43,2],[-319,-1],[-78,0],[-158,-1],[-97,0],[-109,-1],[-103,0],[-75,0],[-32,-1]],[[8965,46724],[1,2],[16,7],[48,17],[33,17],[37,22],[20,14],[31,23],[18,21],[4,31],[15,30],[9,37],[7,29],[-1,29],[3,24],[-3,25],[-4,105],[-7,45],[-10,73],[-8,36],[8,21],[-6,15],[-4,20],[-6,33],[6,25],[0,20],[8,47],[12,11],[29,21],[11,16],[14,18],[4,5],[45,65],[9,20],[34,37],[48,57],[36,49],[17,35],[19,17],[12,25],[9,14],[32,32],[35,36],[36,39],[62,69],[47,56],[9,23],[4,14],[22,23],[28,20],[20,22],[16,16],[16,21],[23,22],[26,26],[10,20],[17,12],[14,17],[11,20],[17,37],[17,34],[10,11],[48,45],[-12,16],[14,16],[19,10],[25,16],[8,17],[17,18],[41,27],[22,14],[21,13],[6,4],[28,12],[32,22],[43,27],[46,27],[23,16],[56,24],[0,1],[23,17],[10,27],[11,39],[3,7],[11,27],[5,14],[23,49],[16,39],[3,6],[24,75],[10,48],[8,30],[8,24],[7,24],[11,21],[7,7],[5,5],[25,8],[10,6],[21,12],[12,16],[14,18],[16,15],[13,7],[7,3],[30,18],[1,1],[29,17],[7,4],[43,17],[2,0],[38,12],[15,8],[31,15],[30,34],[34,24],[20,8],[16,6],[6,2],[36,8],[4,1],[13,2],[22,3],[4,1],[27,8],[0,6],[-2,30],[-6,33],[-1,17],[0,6],[3,15],[0,44],[-20,27],[-19,33],[-13,23],[-6,11],[0,15],[9,14],[2,3],[15,27],[3,18],[9,20],[5,17],[4,17],[8,14],[14,24],[15,36],[8,25],[-5,21],[-1,20],[-11,11],[-8,5],[-6,4],[-15,6],[-2,2],[-17,14],[-1,3],[-5,13],[-2,5],[2,8],[4,10],[9,19],[11,13],[22,12],[23,4],[24,8],[15,9],[18,8],[16,7],[14,9],[15,8],[14,10],[13,10],[2,1],[20,16],[20,20],[15,22],[11,20],[2,18],[2,4],[6,13],[5,5],[12,12],[1,1],[19,11],[15,6],[3,1],[3,2],[13,11],[2,2],[11,16],[5,16],[1,5],[10,18],[1,1],[10,10],[4,6],[5,8],[-1,12],[-1,3],[0,5],[0,10],[3,19],[2,8],[2,9],[10,18],[12,17],[1,1],[14,10],[12,6],[6,3],[22,18],[2,2],[9,10],[7,15],[3,7],[0,4],[0,13],[0,13],[0,2],[3,2],[15,9],[12,5],[13,5],[1,3],[3,15],[-5,14],[-14,9],[-18,9],[-19,2],[-6,2],[-14,4],[-3,2],[1,6],[3,13],[12,8],[5,3],[12,13],[5,5],[9,5],[8,5],[15,5],[5,2],[16,8],[18,8],[6,2],[11,3],[18,3],[14,3],[4,1],[17,1],[23,-1],[20,-3],[14,-3],[12,1],[27,4],[16,6],[27,12],[14,6],[17,11],[14,11],[18,14],[8,17],[-3,17],[-1,6],[0,19],[8,16],[21,14],[15,9],[32,16],[34,20],[20,12],[14,9],[17,11],[21,8],[19,9],[15,10],[39,15],[27,6],[18,5],[17,4],[17,6],[17,13],[9,18],[3,20],[-15,13],[-18,13],[-6,16],[5,19],[10,16],[7,7],[10,11],[14,10],[30,14],[17,5],[21,6],[14,14],[15,16],[22,11],[15,8],[24,17],[62,56],[9,12],[16,16],[14,11],[12,18],[8,16],[-3,18],[1,19],[5,49],[0,22],[-3,21],[-2,17],[5,17],[-4,15],[-11,18],[-15,13],[-21,10],[-47,21],[-15,16],[-12,14],[-30,37],[8,15],[12,13],[6,18],[-13,16],[-18,14],[-18,12],[-24,10],[-23,1],[-24,1],[-26,2],[-20,5],[-14,11],[-9,13],[-1,15],[3,18],[5,24],[1,19],[-3,14],[-10,17],[-17,13],[-18,4],[-22,9],[-14,9],[2,21],[4,19],[1,15],[-3,14],[-7,14],[-13,12],[-15,14],[-15,12],[-17,11],[-16,10],[-11,10],[-13,10],[-16,10],[-18,10],[-16,10],[-17,5],[-15,6],[-19,9],[-19,14],[-15,8],[-22,8],[-18,9],[-13,15],[-7,15],[-22,14],[-15,10],[-6,5],[-17,11],[-17,23],[-13,19],[-23,24],[-43,34],[-14,10],[-15,12],[-18,8],[-18,5],[-24,6],[-11,4],[-11,4],[-20,10],[-12,10],[-13,12],[-21,15],[-23,18],[-13,16],[-9,14],[-2,18],[-15,19],[-20,19],[-17,19],[-35,35],[-2,18],[-2,15],[-7,14],[-5,15],[-4,15],[1,29],[1,19],[-2,22],[-4,34],[0,16],[-9,22],[-2,14],[0,21],[2,28],[-2,20],[-12,35],[-3,18],[7,27],[7,43],[5,33],[4,18],[-5,22],[0,19],[6,21],[9,12],[8,44],[1,14],[-13,13],[-5,19],[-7,17],[-10,12],[-14,11],[-11,14],[-10,17],[-12,18],[-10,15],[-7,15],[-21,18],[-12,12],[-14,15],[-18,16],[-9,16],[-5,16],[-23,20],[-16,5],[-22,6],[-18,0],[-16,1],[-16,2],[-46,12],[-18,2],[-17,6],[-20,15],[-15,15],[-26,16],[-20,13],[-13,15],[-21,12],[-11,12],[-8,13],[-21,12],[-28,7],[-28,8],[-21,8],[-18,5],[-17,7],[-37,24],[-4,4],[-15,14],[-39,19],[-29,17],[-24,9],[-24,12],[-26,19],[-11,12],[-18,10],[-14,8],[-13,10],[-2,2],[-33,21],[-19,8],[-21,3],[-23,0],[-19,2],[-18,1],[-25,1],[-22,5],[-28,11],[-19,5],[-19,2],[-38,4],[-19,3],[-27,2],[-20,0],[-19,2],[-24,4],[-26,3],[-10,0],[-14,-4],[-10,0],[-22,-1],[-20,-1],[-18,-1],[-26,11],[-10,12],[-22,9],[-18,2],[-13,2],[-28,7],[-16,2],[-12,-2],[-10,-2],[-39,-15],[-31,-15],[-17,-10],[-15,-7],[-12,-5],[-16,-4],[-20,-5],[-20,-4],[-17,-2],[-22,-3],[-3,0],[-13,-2],[-27,-1],[-87,1],[-56,1],[-44,2],[-25,5],[-27,8],[-41,16],[-19,14],[-29,18],[-17,13],[-8,10],[-5,7],[-34,22],[-22,10],[-12,7],[-13,8],[-22,17],[-35,22],[-22,17],[-11,11],[-11,17],[-5,8],[-24,43],[-22,30],[-12,13],[0,16],[-26,44],[-13,13],[-14,12],[-28,17],[-6,3],[-16,7],[-21,17],[-12,21],[-8,20],[-8,37],[-13,21],[-14,18],[-11,11],[-15,10],[-26,0],[-16,3],[-24,5],[-20,4],[-19,12],[-30,18],[-11,7],[-21,12],[-21,9],[-33,7],[-25,3],[-35,5],[-16,-1],[-17,-3],[-26,-5],[-17,-2],[-19,-3],[-20,4],[-27,8],[-18,1],[-70,-2],[-61,1],[-10,-2],[-18,-3],[-42,-14],[-26,-11],[-28,-14],[-25,-14],[-23,-15],[-33,-16],[-34,-15],[-26,-10],[-48,-16],[-22,-5],[-34,-7],[-19,-3],[-19,-3],[-4,0],[-12,-2],[-21,0],[-23,1],[-20,11],[-2,1],[-48,25],[-18,9],[-10,11],[-19,11],[-26,11],[-27,5],[-19,18],[-35,7],[-64,7],[-29,11],[-15,13],[-12,13],[-2,5],[-4,8],[-21,15],[-21,20],[-24,23],[-12,22],[0,20],[2,27],[8,21],[15,28],[-4,36],[-1,22],[0,1],[-7,22],[-14,27],[-17,30],[-28,31],[-30,35],[-13,22]],[[7216,55118],[18,-3],[6,-1],[18,-7],[16,-4],[29,3],[30,8],[16,6],[19,11],[30,14],[37,23],[15,8],[29,5],[52,14],[24,1],[17,-3],[19,0],[28,7],[28,6],[26,22],[16,12],[36,22],[58,17],[37,1],[23,3],[43,8],[24,7],[15,4],[17,11],[19,14],[12,13],[20,15],[14,9],[17,13],[10,16],[2,17],[-1,15],[7,17],[12,21],[13,14],[13,16],[15,13],[36,20],[15,14],[12,12],[17,19],[10,13],[14,12],[12,22],[13,12],[25,26],[2,17],[-3,18],[-9,20],[0,16],[8,17],[14,18],[-3,15],[0,25],[-18,2],[-26,5],[-17,3],[-17,5],[-12,10],[-13,18],[-2,19],[11,11],[-5,14],[-16,10],[-13,15],[-12,11],[-15,9],[-21,4],[-21,7],[-18,10],[-17,13],[-18,11],[-16,17],[-10,15],[-6,14],[-15,14],[0,17],[-10,17],[-6,20],[-11,18],[-15,18],[-24,30],[-26,31],[-6,18],[3,19],[2,26],[-12,31],[-18,16],[-15,13],[0,20],[3,24],[16,33],[12,22],[13,14],[18,15],[2,30],[6,16],[7,17],[22,25],[12,11],[6,14],[-6,16],[3,17],[5,20],[11,14],[15,8],[17,4],[15,8],[16,13],[10,13],[3,19],[5,15],[13,12],[14,10],[16,7],[20,1],[17,5],[20,4],[22,-2],[16,2],[20,-2],[16,5],[16,7],[18,10],[16,11],[3,15],[-6,15],[6,16],[11,13],[17,11],[12,10],[17,13],[12,11],[5,16],[10,13],[11,14],[16,13],[10,13],[8,13],[13,10],[11,14],[13,13],[13,10],[18,11],[14,9],[18,11],[15,7],[17,6],[15,7],[16,6],[19,7],[17,4],[21,8],[16,5],[17,5],[20,8],[16,6],[16,5],[15,9]],[[8710,57118],[12,15],[13,9],[13,10],[15,12],[16,3],[16,-2],[16,-3],[16,-1],[16,-3],[21,-6],[20,0],[18,2],[24,3],[16,2],[16,-1],[18,-1],[17,-2],[17,-3],[16,-4],[17,-4],[21,-3],[20,-4],[19,-5],[18,-1],[22,-4],[18,0],[18,-2],[18,-3],[19,-7],[19,-6],[17,-7],[16,-4],[16,-6],[14,-10],[15,-8],[16,-7],[16,-12],[16,-3],[23,2],[16,1],[21,6],[24,7],[16,3],[16,6],[20,7],[17,3],[15,7],[15,10],[17,4],[20,1],[16,9],[6,14],[3,16],[7,14],[11,11],[14,11],[13,18],[12,25],[-2,23],[-4,28],[-17,27],[-2,15],[-9,25],[-6,14],[-7,13],[-8,16],[-9,25],[-7,20],[-2,27],[-4,16],[0,24],[-1,18],[-1,21],[-5,18],[-13,18],[-2,16],[8,13],[11,10],[16,10],[25,15],[19,8],[27,12],[40,20],[21,8],[28,7],[28,2],[23,1],[17,2],[25,2],[23,-2],[21,-1],[22,3],[21,6],[19,2],[19,-2],[15,-7],[28,-2],[10,-3],[13,-3],[17,-12],[14,-9],[12,-10],[9,-19],[15,3],[5,1],[17,1],[19,-2],[18,1],[15,10],[13,10],[15,5],[18,3],[18,-3],[17,-4],[37,-3],[25,-5],[19,-4],[17,0],[24,-7],[25,-11],[29,-5],[20,-5],[16,-9],[28,-8],[18,-3],[21,1],[17,-4],[13,-12],[19,-7],[19,-4],[16,-3],[23,3],[16,-5],[10,-13],[10,-13],[8,-15],[31,-18],[9,-14],[17,-3],[19,-4],[15,-16],[33,-22],[19,-6],[13,-13],[19,-13],[19,-5],[13,-9],[19,-10],[14,-21],[5,-16],[13,-9],[16,-6],[10,-12],[21,-15],[19,-12],[11,-11],[17,-13],[21,-14],[15,-8],[19,-3],[21,-4],[23,-11],[22,-3],[22,-4],[16,-5],[16,-7],[18,-8],[18,-8],[9,-16],[9,-21],[10,-13],[16,-10],[30,-1],[19,6],[20,-1],[31,7],[20,5],[20,0],[16,6],[27,10],[25,18],[10,14],[12,10],[10,12],[-2,17],[3,15],[9,16],[15,14],[2,15],[-5,18],[-8,13],[-7,15],[-9,12],[-13,9],[-11,11],[-5,15],[4,14],[3,15],[-2,16],[12,17],[8,13],[12,13],[9,16],[14,12],[5,15],[5,15],[19,12],[20,10],[18,7],[15,13],[10,14],[-2,14],[-6,16],[13,10],[9,13],[12,11],[10,11],[1,14],[13,9],[13,9],[1,14],[-12,10],[-2,15],[-3,17],[-5,14],[-8,13],[6,14],[-4,15],[5,14],[7,14],[13,12],[5,15],[5,15],[0,16],[0,24],[-1,15],[0,15],[0,14],[0,13],[0,11],[-1,24],[-2,17],[0,21],[1,15],[0,19],[2,22],[0,19],[0,43],[0,142],[0,25],[-1,217],[0,85],[-1,42],[3,107],[-3,103],[1,23],[-1,26],[1,17],[-1,45],[11,31],[12,-11],[19,-7],[7,-16],[11,-11],[15,-8],[17,-4],[13,-9],[11,-11],[18,-10],[16,-9],[17,-4],[17,-1],[15,-8],[9,-14],[17,1],[18,3],[17,4],[17,1],[16,-5],[12,-10],[15,-12],[19,-1],[16,5],[19,8],[14,13],[18,1],[19,1],[20,-6],[6,-14],[14,-13],[21,-2],[21,0],[25,0],[23,3],[13,8],[24,8],[15,10],[13,16],[6,14],[11,10],[2,15],[0,17],[-15,9],[-10,12],[-7,14],[2,14],[-13,14],[-8,13],[-15,7],[-18,7],[-3,14],[18,7],[12,12],[6,16],[2,19],[-4,15],[-10,13],[-15,10],[-16,14],[11,11],[7,21],[13,9],[16,10],[13,8],[14,15],[18,3],[22,7],[-1,15],[-12,10],[3,15],[9,17],[13,9],[15,18],[11,11],[13,20],[17,17],[11,19],[11,12],[23,4],[18,4],[8,14],[2,15],[11,12],[2,15],[16,12],[0,16],[0,17],[-5,16],[3,14],[14,10],[16,9],[13,10],[7,13],[16,6],[16,8],[14,9],[-4,15],[13,17],[-4,17],[-5,18],[5,15],[13,15],[0,14],[7,14],[12,14],[8,15],[-1,16],[3,17],[1,18],[11,11],[3,16],[-9,14],[11,14],[15,11],[12,14],[9,13],[13,12],[17,7],[18,3],[16,0],[22,-1],[14,-10],[29,-1],[21,-1],[17,4],[16,8],[18,2],[17,7],[13,8],[17,8],[20,10],[16,5],[15,6],[16,9],[16,9],[13,10],[16,3],[15,5],[29,-6],[18,-1],[21,-5],[28,-1],[17,-1],[24,-8],[14,-8],[16,-7],[16,-8],[16,-7],[19,-9],[16,-7],[12,-11],[10,-12],[14,-11],[16,-8],[18,-5],[25,-9],[16,-4],[15,-7],[21,-14],[22,-6],[28,-8],[16,-5],[22,-8],[8,1],[12,0],[20,-1],[12,-12],[22,-17],[23,-4],[21,6],[23,12],[11,12],[23,4],[19,-3],[5,-15],[11,-16],[17,0],[17,-2],[19,1],[20,3],[15,7],[17,2],[19,-12],[10,-10],[16,-8],[17,-3],[13,-8],[16,-6],[14,-10],[17,-2],[18,-14],[16,-5],[18,7],[15,7],[17,9],[17,1],[26,2],[22,-4],[21,-1],[9,2],[10,2],[16,-1],[27,-3],[15,6],[17,5],[17,2],[16,-2],[20,4],[24,1],[18,-2],[20,1],[20,-1],[18,-7],[17,-2],[22,0],[23,-3],[22,0],[21,-2],[17,-8],[18,-2],[18,-1],[19,1],[22,0],[17,1],[18,1],[16,-6],[16,-8],[13,-13],[16,-11],[15,-6],[18,-6],[9,-13],[12,-10],[11,-16],[21,-12],[12,-12],[14,-11],[16,-8],[15,-6],[13,-21],[18,-4],[10,-14],[15,-10],[18,-6],[19,-7],[18,-11],[15,-6],[17,-2],[19,-4],[19,-2],[15,-3],[21,-8],[15,-8],[25,-4],[20,0],[18,7],[16,7],[12,13],[11,14],[13,9],[22,-1],[23,0],[19,-2],[19,-1],[16,9],[13,10],[10,12],[16,12],[15,11],[22,2],[17,0],[27,-2],[21,-1],[21,-4],[19,-6],[14,-7],[18,-1],[16,-2],[11,-14],[16,-6],[18,2],[18,-10],[21,-3],[19,-9],[14,-8],[18,-6],[15,-5],[18,-4],[21,1],[19,5],[15,-6],[15,11],[16,0],[20,7],[14,15],[11,13],[24,11],[15,-9],[14,-10],[12,-11],[11,-14],[20,-7],[16,6],[16,3],[17,2],[23,-1],[16,-8],[18,-7],[16,-6],[15,-6],[23,-9],[6,-15],[11,-13],[8,-22],[16,-9],[16,-10],[13,-11],[1,-1],[19,-6],[22,-10],[21,2],[27,7],[14,-9],[16,-6],[24,-8],[22,1],[18,12],[20,13],[18,2],[16,1],[21,1],[16,1],[18,3],[18,-6],[15,-9],[16,-8],[14,-7],[22,7],[18,-12],[19,-9],[26,-2],[21,-13],[11,-12],[18,-9],[14,-7],[17,-7],[16,-4],[16,-6],[19,-8],[15,-6],[17,-2],[16,1],[14,-9],[16,-2],[19,4],[15,10],[18,3],[20,1],[17,4],[10,12],[19,0],[16,4],[8,16],[6,14],[11,14],[0,15],[11,15],[6,16],[5,19],[1,20],[6,14],[3,18],[-3,16],[6,16],[-10,14],[-10,13],[-3,17],[6,19],[12,23],[0,24],[0,16],[2,19],[22,4],[10,13],[18,7],[15,13],[18,15],[15,9],[24,6],[21,8],[21,14],[5,14],[16,-2],[15,8],[20,2],[16,3],[25,10],[17,4],[16,6],[12,10],[11,12],[15,7],[1,20],[2,17],[13,10],[16,-2],[8,12],[1,19],[8,15],[10,17],[12,10],[12,10],[13,13],[14,14],[14,8],[21,9],[13,9],[12,18],[3,17],[14,13],[20,14],[15,8],[15,6],[11,13],[17,8],[8,14],[16,5],[22,0],[12,10],[16,8],[18,3],[29,0],[10,13],[14,9],[20,2],[19,4],[16,2],[22,1],[15,9],[16,5],[26,-1],[25,-2],[24,-1],[21,-2],[22,1],[20,-4],[10,-12],[14,-9],[9,-13],[25,-15],[19,-5],[24,0],[30,-3],[20,-2],[18,-1],[20,1],[25,1],[20,0],[17,1],[17,-2],[33,0],[19,-3],[20,-4],[19,-4],[18,-1],[18,-3],[17,-2],[19,-2],[19,-2],[25,-7],[17,-3],[18,2],[19,-1],[36,-4],[16,-5],[17,-3],[11,11],[20,6],[19,-8],[21,-1],[16,0],[20,6],[20,5],[16,1],[21,-2],[19,0],[16,-4],[16,-1],[22,12],[4,16],[13,8],[13,8],[19,-2],[14,-5],[4,-1],[17,-1],[15,12],[13,9],[17,-5],[22,-14],[30,-6],[16,6],[17,2],[19,-10],[25,-7],[24,-1],[16,1],[17,2],[30,5],[20,5],[26,6],[17,4],[19,5],[18,3],[21,1],[22,2],[18,1],[18,9],[17,12],[19,7],[19,4],[16,8],[18,9],[16,5],[15,6],[27,12],[24,9],[18,9],[14,9],[18,7],[20,4],[13,12],[16,15],[21,6],[24,7],[22,6],[32,9],[15,5],[18,3],[8,3],[7,4],[16,4],[14,12],[-20,22],[-13,18],[-18,13],[-25,13],[-1,1],[-13,8],[-20,13],[-21,8],[-37,11],[-18,10],[-18,12],[-23,18],[-34,20],[-16,8],[-23,10],[-30,9],[-30,8],[-22,6],[-7,1],[-18,7],[-15,5],[-18,17],[-6,14],[-4,21],[-1,36],[-10,25],[-16,16],[-24,15],[-28,11],[-23,8],[-16,4],[-31,4],[-19,1],[-17,0],[-32,-2],[-26,1],[-18,2],[-28,5],[-19,8],[-26,9],[-17,5],[-19,5],[-30,6],[-21,-1],[-19,0],[-16,1],[-21,1],[-21,0],[-24,5],[-18,9],[-30,21],[-22,13],[-16,8],[-16,5],[-25,5],[-21,4],[-17,4],[-29,10],[-26,10],[-17,9],[-16,9],[-21,14],[-14,11],[-11,12],[-10,12],[-15,19],[-3,17],[-2,17],[-5,21],[-7,8],[-3,3],[-16,27],[-15,12],[-13,8],[-31,15],[-13,7],[-34,18],[-14,14],[-15,12],[-17,7],[-17,5],[-21,9],[-9,4],[-7,4],[-8,2],[-10,4],[-17,7],[-15,5],[-34,12],[-12,10],[-11,16],[-14,14],[-27,23],[-14,12],[-13,10],[-19,14],[-15,10],[-16,11],[-17,12],[-14,13],[-14,13],[-17,8],[-19,18],[-3,16],[-1,18],[-1,6],[-1,12],[-5,22],[-13,28],[-13,10],[-7,8],[-5,5],[-28,18],[-9,13],[-9,17],[-13,19],[-10,19],[-6,20],[-9,19],[-10,16],[-12,16],[-11,18],[-10,15],[-8,13],[-9,16],[-10,14],[-8,9],[-3,5],[-10,17],[-3,17],[-5,19],[-8,14],[-20,23],[-11,13],[-14,12],[-15,9],[-15,7],[-14,12],[-5,14],[-1,2],[-3,19],[-7,15],[-10,14],[-17,7],[-21,9],[-11,16],[-3,15],[1,21],[-4,20],[-7,18],[-5,17],[-13,17],[-15,15],[-14,9],[-15,6],[-15,8],[-18,8],[-17,6],[-17,10],[-21,16],[-18,16],[-14,20],[-9,20],[-6,16],[-3,15],[-7,18],[-7,24],[-2,26],[-3,16],[-10,28],[-8,14],[-10,13],[-16,12],[-14,5],[-2,1],[-2,1]],[[42706,66221],[34,-15],[24,1],[41,30],[19,-2],[55,-21],[29,0],[33,15],[9,4],[32,30],[25,13],[93,74],[19,5],[99,-35],[34,17],[79,31],[53,8],[56,-5],[50,3],[70,68],[19,4],[30,-20],[38,-17],[44,-8],[16,-3],[59,-43],[71,-31],[31,-8],[30,-5],[73,-9],[59,-4],[30,-2],[26,0],[53,9],[43,11],[38,10],[16,-4],[32,-38],[18,-13],[77,-17],[18,-7],[43,-28],[21,-8],[37,-7],[36,-6],[36,-6],[21,5],[44,-10],[37,2],[27,7],[22,2],[59,-10],[23,17],[34,22],[55,23],[44,35],[48,35],[25,5],[-8,17],[-4,10],[-16,12],[8,23],[5,32],[0,11],[13,9],[43,1],[32,3],[31,11],[57,22],[65,25],[16,19],[43,15],[59,15],[35,13],[49,24],[29,10],[110,-28],[14,-11],[42,-12],[39,1],[15,2],[19,22],[13,51],[24,-23],[47,-12],[31,1],[57,37],[36,19],[63,20],[53,-1],[47,-16],[40,-20],[26,3],[22,13],[37,32],[39,22],[33,2],[44,4],[53,11],[71,3],[29,-3],[23,3],[58,32],[5,-36],[72,-66],[26,-9],[58,-9],[81,-7],[82,5],[24,-3],[38,-14],[20,-6],[47,-34],[52,-57],[14,-7],[25,-45],[30,-28],[7,-19],[-5,-17],[-22,-37],[-1,-25],[13,-26],[27,-23],[-14,-20],[-15,-36],[-5,-35],[13,-17],[1,-16],[-13,-13],[-3,-19],[6,-14],[-2,-18],[-24,-23],[-8,-19],[-15,-17],[-38,-14],[-1,-19],[11,-29],[18,-26],[3,-9],[38,-22],[24,-16],[-12,-25],[-82,-64],[-29,-14],[-18,-80],[-40,-37],[-47,-37],[-81,-19],[-38,-23],[-13,-10],[26,-19],[38,-20],[35,-37],[35,-38],[29,-42],[57,-20],[12,-19],[-26,-57],[-15,-14],[-32,-27],[-15,-22],[-25,-17],[-24,-13],[-20,-27],[1,-36],[-32,-48],[-19,-42],[-59,-35],[-19,-7],[-8,-9],[16,-16],[26,-30],[1,-41],[3,-31],[16,-22],[-8,-21],[-13,-22],[-3,-24],[-15,-20],[-30,-24],[-6,-4],[1,-25],[-8,-36],[21,-40],[20,-18],[45,-27],[18,-21],[11,-34],[-18,-22],[-28,-20],[-35,-27],[-13,-39],[-4,-19],[-43,-24],[-29,-22],[-106,-35],[-34,8],[-104,-6],[-45,-28],[-77,-17],[-123,45],[-45,-15],[-57,-8],[-71,-1],[-30,-22],[-72,2],[-38,-25],[-16,-73],[14,-58],[30,-40],[-12,-38],[1,-61],[8,-44],[25,-30],[35,-24],[27,-32],[4,-25],[11,-16],[50,-10],[134,-35],[21,-54],[38,-33],[-29,-54],[-7,-49],[-32,-51],[-11,-22],[5,-18],[29,-17],[70,-15],[38,-20],[36,3],[20,-17],[15,-27],[42,-33],[0,-20],[-116,-11],[-56,-13],[-50,-23],[-38,-61],[-2,-27],[16,-106],[-14,-38],[3,-35],[-8,-52],[-42,-13],[-79,-10],[-45,-19],[-70,-59],[-28,-30],[-93,-9],[-31,-8],[-17,-20],[-3,-31],[-15,-19],[-109,-64],[-74,-57],[9,-26],[18,-20],[19,-38],[17,-48],[37,-54],[56,-82],[37,-33],[-9,-55],[16,-17],[-30,-31],[2,-31],[3,-25],[-5,-49],[-16,-9],[-8,-31],[2,-35],[-14,-44],[-4,-60],[9,-12],[-7,-34],[-20,-36],[-80,-32],[-16,-6],[-13,-74],[-31,-44],[-20,-39],[-44,-62],[-51,-55],[-6,-18],[5,-28],[-24,-26],[4,-47],[21,-33],[19,-14],[-4,-22],[28,-82],[10,-21],[33,-31],[0,-26],[-21,-14],[0,-32],[-24,-18],[-90,-69],[-34,-24],[-51,-11],[-12,-17],[-115,-27],[-104,-12],[-142,30],[-44,-6],[-25,-16],[-6,-29],[-50,-34],[-4,-40],[28,-54],[9,-43],[23,-36],[27,-30],[-3,-22],[-44,-37],[12,-15],[42,-21],[83,-27],[66,-29],[29,-16],[38,-4],[-4,-21],[24,-28],[8,-8],[11,-39],[24,-57],[7,-64],[8,-41],[16,-30],[5,-26],[-59,-37],[-41,-17],[-1,-21],[14,-31],[25,-22],[18,-32],[52,-46],[25,-20],[-5,-39],[-12,-17],[1,-36],[3,-30],[5,-31],[-21,-34],[7,-30],[-7,-38],[-6,-17],[12,-46],[-9,-33],[1,-19],[-10,-49],[6,-12],[22,-42],[-7,-31],[-20,2],[-43,9],[-52,-1],[-34,8],[-46,15],[-78,-30],[-38,-34],[-61,-7],[-38,-29],[-67,-34],[-51,-3],[-34,9],[-50,25],[-44,34],[-77,33],[-60,4],[-68,-12],[-47,-26],[-72,-10],[-26,3],[-111,42],[-20,-9],[-8,-7],[3,-28],[3,-17],[-4,-20],[13,-37],[-12,-16],[2,-40],[11,-13],[-4,-20],[-51,-17],[-61,-20],[-52,-33],[-30,-27],[0,-25],[53,-67],[33,-33],[2,-19],[21,-9],[36,0],[-11,-64],[-21,-60],[-1,-29],[38,-18],[35,-10],[61,-11],[15,-19],[46,-13],[52,-22],[37,4],[67,2],[129,-64],[42,-17],[62,6],[44,-4],[65,-4],[37,0],[26,-47],[44,-62],[55,-13],[26,-28],[53,-46],[28,-31],[12,-48],[-17,-54],[4,-56],[-22,-35],[-11,-46],[4,-20],[-29,-19],[-69,-10],[-30,3],[-24,-3],[-3,-11],[16,-31],[-11,-24],[-10,-14],[1,-35],[16,-7],[23,-11],[33,-22],[3,-18],[-12,-26],[-39,-28],[-40,-8],[-20,-9],[-7,-23],[-74,-41],[-74,-8],[-101,-25],[-36,-14],[-18,-13],[9,-17],[-25,-41],[-10,-20],[-25,-14],[-16,-15],[-10,-26],[-67,0],[-15,-9],[-36,-29],[-18,-22],[5,-34],[11,-13],[-24,-30],[-2,-12],[38,-27],[144,-26],[106,1],[37,10],[49,23],[77,-1],[5,-46],[47,-66],[0,-16],[32,-51],[1,-18],[10,-43],[-39,-32],[-57,-17],[-48,-25],[-42,1],[-45,-54],[0,-26],[15,-38],[38,-56],[43,-22],[16,-6],[16,-18],[88,-11],[65,18],[56,29],[60,30],[112,0],[42,-73],[29,-29],[34,-9],[16,-24],[32,-7],[81,-1],[48,6],[67,0],[39,-16],[47,1],[82,-28],[35,-43],[95,-26],[66,-27],[12,-52],[9,-20],[43,-36],[33,-14],[19,-14],[23,-44],[26,-26],[-8,-30],[2,-29],[-2,-24],[-31,-23],[-38,-26],[-47,-15],[-28,-8],[-31,-31],[-20,-34],[-41,-8],[-41,-11],[-20,-10],[4,-21],[-55,-14],[-14,-13],[-12,-34],[-89,-33],[-5,-24],[17,-22],[74,-48],[51,-53],[77,-43],[42,-33],[-3,-25],[-16,-31],[45,-95],[89,-76],[50,-30],[9,-14],[56,-20],[35,-1],[29,-10],[15,1],[12,-2],[8,-51],[18,-27],[-3,-25],[17,-26],[33,-1],[30,2],[20,-27],[7,-18],[-15,-79],[-9,-26],[-10,-12],[-54,-28],[-3,-18],[-19,-35],[-21,-14],[-25,-46],[-25,0],[-47,12],[-41,-7],[-33,-21],[0,-24],[14,-30],[-28,-38],[11,-36],[-23,-42],[-40,-87],[-38,9],[-71,12],[-46,26],[-40,4],[-35,24],[-47,13],[-47,21],[-53,20],[-45,12],[-30,7],[-115,-9],[-34,-9],[-31,-34],[-81,-48],[-43,-8],[-71,-2],[-52,-36],[-94,-10],[-20,-47],[-57,-20],[-49,18],[-76,46],[-63,4],[-82,-22],[-81,9],[-39,-6],[-56,-38],[-21,-24],[-71,-2],[-43,-30],[-34,-35],[-35,-23],[-29,-49],[8,-50],[77,-41],[10,-5],[-23,-13],[-38,-32],[-104,-28],[-47,-33],[-46,-31],[-59,-10],[-23,-40],[4,-21],[25,-9],[13,-30],[-30,-54],[-97,-49],[1,-18],[-41,-42],[-64,-26],[-17,-13],[2,-71],[20,-39],[-19,-1],[-66,-24],[-108,-24],[-14,-50],[-88,-40],[-21,-37],[3,-17],[-49,-39],[3,-18],[36,-31],[27,-13],[25,-22],[37,-46],[18,-9],[60,-3],[39,4],[93,-62],[19,-26],[-11,-8],[-21,-27],[3,-14],[-22,-30],[15,-60],[6,-14],[0,-16],[-26,-25],[-6,-12],[46,-19],[152,-45],[22,-27],[18,-19],[31,-28],[41,-33],[32,-50],[11,-9],[55,-3],[33,-11],[51,5],[46,7],[79,-35],[56,-17],[36,-20],[20,-36],[13,-40],[6,-24],[54,-51],[10,-15],[5,-34],[13,-18],[7,-39],[9,-14],[-10,-29],[-6,-22],[-39,-31],[-30,-20],[-9,-13],[-2,-23],[-83,-45],[-65,-31],[-33,-29],[-29,-12],[8,-15],[54,-12],[69,0],[46,-15],[45,0],[19,-5],[22,-39],[-17,-18],[-22,-10],[-12,-42],[34,-63],[7,-14],[-21,-33],[-74,-58],[-25,-39],[-10,-23],[-14,-16],[-39,-14],[-37,-5],[-54,-51],[-99,-40],[-54,16],[-32,23],[-25,2],[-99,-25],[-48,0],[-44,-9],[-11,-16],[3,-15],[18,-5],[4,-16],[-37,-58],[-43,10],[-100,-8],[-136,-32],[-32,-16],[-23,-23],[-3,-45],[8,-38],[42,-28],[32,-25],[10,-16],[-2,-19],[9,-13],[33,-24],[13,-34],[14,-17],[82,-19],[64,-18],[68,-99],[30,-30],[6,-25],[-16,-14],[-52,-44],[-36,-10],[-40,-21],[-26,-50],[-44,-36],[-23,-13],[-14,-20],[5,-34],[-42,-25],[-31,-30],[6,-20],[54,-34],[16,-55],[2,-18],[-60,-55],[-5,-13],[7,-23],[-21,-43],[-33,-22],[-47,-9],[-36,-32],[10,-66]],[[14076,63836],[-16,9],[-20,5],[-24,4],[-24,6],[-16,4],[-34,-7],[-19,1],[-15,6],[-22,0],[-16,-5],[-21,-2],[-20,7],[-17,6],[-21,-1],[-26,0],[-37,-4],[-20,1],[-21,-10],[-17,1],[-16,6],[-18,-3],[-20,-9],[-19,-4],[-27,2],[-18,2],[-25,-1],[-17,-1],[-25,2],[-22,-3],[-25,4],[-16,5],[-17,-1],[-17,-7],[-18,-7],[-17,-5],[-23,-4],[-19,7],[-26,12],[5,-15],[18,-11],[15,-4],[21,-3],[17,-8],[12,-12],[4,-15],[23,-8],[4,-22],[9,-14],[6,-17],[4,-18],[-14,-13],[2,-15],[11,-12],[-7,-14],[11,-15],[18,-8],[3,-19],[-1,-16],[21,-9],[22,-11],[12,-13],[-11,-18],[1,-15],[15,-5],[13,-14],[4,-18],[8,-13],[30,-9],[14,-8],[7,-17],[16,-18],[20,-7],[18,-2],[18,-4],[10,-15],[2,-17],[16,-11],[13,-10],[25,-13],[21,-6],[14,-14],[15,-9],[14,-10],[34,-11],[13,-11],[23,-17],[2,-18],[18,-14],[18,0],[19,0],[15,-14],[22,-11],[15,-7],[19,-5],[10,-15],[19,-8],[18,-12],[21,-7],[21,-6],[9,-13],[17,-21],[-12,-13],[1,-16],[-9,-15],[-6,-14],[5,-14],[-4,-15],[-16,-8],[-15,-18],[14,-14],[1,-14],[3,-16],[6,-19],[8,-15],[17,-4],[13,-11],[-3,-18],[6,-16],[19,-15],[2,-14],[16,-9],[6,-16],[-3,-18],[3,-19],[22,-7],[10,-12],[-7,-16],[-14,-7],[-6,-14],[13,-11],[17,-2],[12,-10],[-3,-15],[-3,-24],[-7,-22],[1,-14],[14,-13],[3,-19],[-6,-15],[8,-15],[-13,-16],[8,-15],[3,-14],[3,-17],[14,-18],[0,-15],[-17,-3],[-13,-9],[-1,-15],[12,-12],[11,-11],[2,-17],[5,-17],[-2,-17],[-9,-13],[14,-12],[0,-16],[-11,-12],[-15,-7],[-14,-10],[-16,-8],[2,-17],[15,-10],[15,-19],[-7,-15],[-8,-15],[10,-13],[-10,-14],[-15,-15],[-9,-16],[-12,-20],[-20,-15],[-17,-12],[-11,-17],[-6,-15],[-12,-15],[-17,12],[-22,-4],[-14,-9],[-22,0],[-18,-2],[-17,-5],[-18,2],[-19,5],[-26,-2],[-24,-4],[-18,1],[-18,-3],[-13,-12],[-20,-5],[-15,-6],[-16,7],[-18,9],[-17,6],[-17,3],[-29,-3],[-23,-1],[-17,2],[-20,5],[-18,10],[-14,11],[-18,10],[-7,13],[-14,8],[-9,3],[-11,3],[-16,-3],[-24,4],[-27,2],[-19,-2],[-21,-4],[-27,-4],[-19,-2],[-17,-3],[-19,-4],[-29,-3],[-20,0],[-20,6],[-17,-2],[-16,-8],[-16,-5],[-10,-17],[-10,-14],[-19,-1],[-17,3],[-22,5],[-28,-1],[-22,5],[-17,2],[-34,-1],[-17,4],[-9,12],[-13,9],[-16,5],[-20,0],[-19,2],[-19,7],[-15,6],[-17,10],[-18,4],[-17,-2],[-17,2],[-17,5],[-17,-1],[-17,10],[-16,9],[-18,-1],[-16,-5],[-24,5],[-24,7],[-22,0],[-17,3],[-20,8],[-26,-1],[-35,5],[-18,4],[-20,-2],[-18,-4],[-24,4],[-27,0],[-21,0],[-25,-11],[-20,-8],[-21,-1],[-16,-5],[-24,-6],[-18,1],[-19,-8],[-20,-7],[-18,-6],[-20,-9],[-18,-8],[-18,-5],[-15,-6],[-18,-6],[-13,-16],[-14,-12],[-17,-14],[-14,-11],[-13,-9],[-23,-13],[-15,-10],[1,-16],[4,-14],[8,-13],[11,-15],[-2,-16],[3,-20],[13,-13],[5,-16],[7,-18],[-10,-22],[7,-14],[-3,-14],[-183,0],[-149,0],[-163,0],[-83,1],[-40,0],[-37,0],[-66,0],[-21,0],[-69,0],[-38,0],[-58,1],[-16,-1],[-22,1],[-20,0],[-34,0],[-29,0],[-32,0],[-18,0],[-50,2],[-142,-2],[-64,0],[-23,0],[-19,-1],[-57,0],[-48,0],[-9,0],[-9,-1],[-56,0],[-29,0],[-100,-1],[-222,-2],[-109,0],[-156,0],[-29,-3],[-52,0],[-34,1],[-161,1],[-42,0],[-65,0],[-30,0],[-150,0],[-31,1],[-83,0],[-67,0],[-182,1],[-287,1],[-49,0],[-95,0],[-23,0],[-24,0],[-28,0],[3,-14],[7,-16],[5,-17],[8,-13],[-1,-15],[8,-19],[1,-19],[0,-15],[-3,-16],[-6,-14],[-10,-11],[-7,-13],[-1,-16],[-7,-14],[-9,-14],[-2,-15],[10,-20],[-3,-16],[-2,-17],[5,-14],[11,-12],[12,-14],[8,-12],[5,-14],[1,-17],[6,-14],[6,-15],[11,-12],[16,-3],[16,-6],[10,-12],[19,-12],[18,-9],[13,-9],[13,-12],[9,-13],[12,-13],[12,-13],[-1,-15],[12,-14],[14,-9],[7,-18],[-5,-16],[1,-19],[9,-16],[10,-11],[12,-13],[0,-18],[6,-16],[10,-13],[10,-14],[5,-18],[-8,-14],[-1,-15],[16,-7],[14,-10],[13,-12],[8,-13],[7,-15],[4,-15],[6,-15],[9,-12],[5,-14],[6,-22],[11,-15],[6,-16],[13,-9],[14,-9],[9,-12],[6,-16],[2,-14],[10,-14],[11,-12],[6,-14],[10,-14],[5,-22],[0,-16],[0,-20],[3,-14],[-6,-13],[5,-24],[12,-16],[-8,-16],[-17,-6],[-17,-12],[-23,-4],[-22,-7],[-25,0],[-19,-6],[-15,-13],[-22,-11],[-17,-11],[-127,-2],[1,-111],[-2,-33],[2,-16],[2,-50],[2,-19],[1,-15],[-1,-23],[-1,-46],[-6,-73],[3,-37],[0,-19],[-1,-32],[0,-16],[0,-27],[-1,-18],[-1,-30],[1,-21],[0,-18],[0,-147],[0,-51],[0,-26],[0,-14],[1,-55],[0,-18],[0,-40],[1,-129],[0,-66],[0,-91],[1,-139],[0,-33],[0,-94],[0,-28],[-2,-49],[-4,-17],[3,-36],[-1,-23],[-1,-34],[-4,-73],[1,-14],[-2,-17],[-1,-18],[0,-16],[0,-20],[-1,-23],[-3,-84],[0,-27],[-1,-24],[-4,-121],[-1,-44],[-3,-95],[-4,-147],[-3,-67],[46,0],[-1,-151],[0,-60],[-1,-240],[-1,-92],[0,-122],[-2,-240],[0,-16],[-2,-43]],[[7216,55118],[-16,20],[-8,15],[3,20],[-10,19],[-52,20],[-26,13],[-10,4],[-21,11],[-23,15],[-15,11],[-12,21],[-9,13],[-12,13],[-24,26],[-12,18],[-34,30],[-14,16],[-21,22],[-53,33],[-18,6],[-76,38],[-33,15],[-37,16],[-17,9],[-22,10],[-28,10],[-2,1],[-83,31],[-17,4],[-19,10],[-25,6],[-44,21],[-13,10],[-43,53],[-23,21],[-21,17],[-26,14],[-27,22],[-27,16],[-15,7],[-26,10],[-41,44],[-53,68],[-13,17],[-19,18],[-11,20],[-13,16],[-14,30],[-19,48],[-17,19],[-9,25],[-3,20],[1,34],[4,16],[-7,28],[-14,31],[-11,24],[-10,19],[-11,13],[-9,20],[-9,12],[-11,21],[-4,20],[-5,20],[-2,18],[1,17],[2,20],[13,20],[-5,27],[-5,16],[-8,15],[-12,17],[-20,21],[-22,13],[-19,8],[-20,3],[-44,-4],[-39,3],[-40,10],[-25,10],[-10,22],[-19,28],[-16,27],[-6,17],[-3,9],[-4,11],[4,41],[16,29],[3,11],[2,10],[1,28],[-12,18],[-20,14],[-30,14],[-30,25],[-31,21],[-32,10],[-28,9],[-26,14],[-62,41],[-28,13],[-16,17],[-15,21],[-8,18],[-20,21],[-8,8],[-7,8],[-3,3],[-2,2],[-7,6],[-10,13],[-10,14],[-13,17],[1,30],[-3,24],[-10,20],[-9,24],[-2,21],[-6,15],[-6,30],[-3,40],[-12,43],[-18,25],[-16,9],[-23,14],[-35,7],[-22,20],[-14,25],[-5,24],[0,1],[-6,38],[-1,17],[-1,24],[5,22],[7,14],[3,18],[-3,8],[-4,10],[-16,16],[-2,18],[-7,19],[-13,14],[-17,11],[-16,20],[-18,10],[-32,5],[-16,9],[-5,5],[-6,6],[-13,18],[-14,29],[-4,7],[-8,15],[-5,9],[-12,20],[-5,18],[0,2],[-6,13],[0,5],[1,11],[3,13],[1,8],[6,24],[2,33],[-8,10],[-6,7],[-24,23],[-25,28],[-27,26],[-5,5],[-23,19],[-18,6],[-21,12],[-37,29],[-17,18],[-26,23],[-27,9],[-22,4],[-7,0],[-10,-1],[-17,-3],[-11,-2],[-30,2],[-44,6],[-36,4],[-14,5],[-12,3],[-40,10],[-26,9],[-10,3],[-19,7],[-23,9],[-17,22],[-15,24],[-17,24],[-1,17],[-1,25],[-6,22],[-1,28],[13,22],[21,21],[26,20],[30,13],[23,8],[24,7],[12,1],[58,3],[43,0],[9,1],[7,0],[32,6],[59,7],[14,1],[20,13],[7,4],[25,12],[17,17],[3,15],[2,17],[7,26],[7,18],[19,25],[16,14],[10,12],[2,22],[-4,15],[5,52],[2,21],[17,17],[2,19],[-9,19],[7,21],[13,10],[12,14],[20,11],[21,8],[32,17],[14,12],[2,2],[23,23],[13,20],[22,15],[26,17],[29,15],[18,14],[11,21],[2,16],[-9,25],[-16,20],[-1,30],[2,46],[5,33],[0,17],[2,25],[10,18],[15,8],[19,10],[27,19],[21,9],[24,8],[35,12],[26,12],[22,15],[9,16],[9,21],[4,20],[-10,43],[-12,23],[-21,22],[-19,9],[-40,23],[-32,0],[-44,-1],[-20,7],[-20,10],[-20,16],[-18,19],[-21,19],[-21,21],[-5,14],[7,19],[-12,14],[-10,16],[-12,15],[-25,11],[-23,11],[-26,21],[-23,24],[-21,19],[-28,18],[-26,17],[-38,18],[-30,15],[-32,19],[-28,14],[-43,22],[-27,27],[-19,27],[-4,21],[-8,37],[7,28],[22,30],[19,24],[21,28],[47,66],[24,41],[30,47],[12,40],[1,30],[-21,22],[-10,28],[-5,12],[-1,11],[-2,25],[-18,65],[-33,49],[-32,43],[-9,16],[-3,17],[-6,16],[-7,15],[-13,19],[-13,17],[-12,16],[-19,19],[-24,27],[-15,16],[-16,13],[-21,16],[-22,15],[-34,24],[-29,15],[-29,13],[-27,17],[-30,15],[-17,11],[-51,27],[-20,15],[-21,19],[-19,15],[-5,31],[4,15],[9,18],[6,9],[12,18],[9,12],[18,22],[16,22],[17,21],[14,23],[4,24],[1,14],[0,5],[-11,27],[-3,3],[-19,26],[-20,20],[-15,9],[-9,6],[-37,17],[-31,14],[-29,14],[-30,13],[-24,7],[-36,5],[-25,6],[-28,1],[-21,2],[-19,4],[-28,14],[-17,9],[-16,13],[-23,19],[-18,9],[-33,15],[-21,11],[-18,14],[-25,18],[-25,19],[-13,19],[-14,19],[-3,16],[-7,23],[2,12],[1,6],[-3,17],[-3,15],[-2,16],[-3,23],[5,19],[7,18],[-5,29],[3,16],[0,15],[0,4],[-5,18],[-12,17],[-18,11],[-25,16],[-20,13],[-25,13],[-22,9],[-20,6],[-22,5],[-19,4],[-37,5],[-42,5],[-30,-1],[-38,4],[-30,3],[-33,6],[-31,6],[-38,7],[-34,11],[-34,14],[-28,14],[-28,19],[-20,16],[-20,31],[-11,19],[-2,16],[1,18],[2,21],[-1,18],[-3,27],[3,34],[2,25],[-5,20],[9,17],[18,20],[19,22],[26,21],[13,11],[23,14],[26,15],[17,11],[18,10],[46,27],[30,25],[11,15],[12,19],[19,43],[17,39],[32,78],[2,17],[2,26],[14,38],[22,36],[7,35],[5,26],[7,20],[14,15],[16,10],[15,32],[3,22],[0,18],[6,26],[3,24],[1,28],[-12,17],[-7,14],[-2,5],[-9,26],[-19,18],[-32,21],[0,9],[-1,13],[0,18],[1,36],[0,16],[-1,25],[0,8],[0,8],[0,35],[0,58],[0,99],[0,80],[0,46],[0,23],[1,59],[0,98],[-1,31],[1,36],[0,2],[0,19],[0,67],[0,119],[1,159],[0,22],[0,150],[0,40],[0,83],[0,148],[0,5],[0,13],[0,136]],[[71413,34002],[18,-142],[0,-13],[0,-9],[1,-517],[0,-68],[1,-115],[2,-258],[-1,-193],[0,-54],[-1,-94],[0,-72],[-1,-78],[0,-52],[-1,-139],[1,-52],[-1,-101],[-1,-125],[-274,0],[-265,1],[-96,0],[-32,0],[-36,0],[-73,0],[-83,-1],[-93,0],[-47,-3],[-115,0],[-193,0],[-34,0],[-78,0],[-163,1],[-126,0],[-240,0],[-1,57],[-84,0],[-287,-2],[-75,0],[-63,-1],[-30,0],[-52,0],[-37,0],[-20,0],[-37,0],[-14,-1],[-22,0],[-226,-1],[-31,0]],[[68503,31970],[-88,2],[-17,1],[-28,0],[-47,0],[-212,-1],[-184,-1],[-69,0],[-210,-1],[-356,-2],[-254,-1],[-17,0],[-429,-2],[-208,-1],[-33,0],[-330,-2],[-197,0],[-433,-2],[-93,-1],[-123,0],[-776,-4],[-362,1],[-31,0],[-122,0],[-27,0],[-209,0],[-102,0],[-154,0],[-54,1],[-83,0]],[[63255,31957],[3,15],[-1,17],[-1,11],[-5,13],[-11,23],[-6,8],[-29,21],[-12,6],[-12,0],[-16,2],[-9,5],[-19,16],[-34,42],[-25,41],[-18,40],[-4,36],[0,6],[-7,73],[5,24],[20,53],[36,56],[4,5],[16,4],[28,14],[11,7],[18,23],[3,10],[-3,36],[-2,5],[-19,14],[-5,6],[-12,24],[-12,26],[-25,59],[-10,24],[-9,17],[-19,31],[-33,29],[-27,20],[-7,10],[-28,52],[-11,91],[2,10],[16,15],[-4,31],[-18,63],[-1,29],[-21,50],[-9,11],[-30,20],[-12,7],[-35,15],[-15,3],[-23,6],[-16,7],[-31,22],[-13,12],[-54,50],[-2,5],[-5,45],[-1,21],[-4,11],[-15,11],[-3,6],[-56,130],[1,7],[-5,6],[-70,55],[-41,7],[-29,14],[-62,50],[-22,29],[-40,55],[-5,16],[-5,7],[-68,49],[-27,4],[-24,13],[-84,64],[-24,24],[-9,9],[-90,73],[-34,12],[-19,5],[-18,7],[-16,11],[-15,12],[-2,3],[-13,46],[-5,10],[-24,56],[-19,18],[-14,25],[-9,19],[-15,25],[-9,32],[-1,22],[-16,27],[-10,19],[-12,17],[-20,17],[-13,13],[2,16],[-21,22],[-11,15],[-13,13],[-12,25],[-12,15],[-20,18],[-13,33],[-20,13],[-10,13],[-16,18],[-8,13],[-8,16],[-7,15],[-30,15],[-17,6],[-28,2],[-19,5],[-21,5],[-18,0],[-15,9],[-12,11],[-5,14],[-19,48],[-8,19],[8,18],[10,14],[0,18],[-8,20],[0,16],[-5,15],[-12,14],[-13,14],[-29,10],[-24,10],[-30,15],[-18,19],[-5,27],[-6,14],[-4,17],[-15,23],[-47,20],[-12,13],[-11,13],[-20,13],[-25,-4],[-16,-6],[-32,-8],[-24,-3],[-23,0],[-19,5],[-28,9],[-22,1],[-18,5],[-31,-20],[-12,-10],[-20,-16],[-26,-13],[-21,-17],[-27,-16],[-31,-4],[-17,-11],[-7,-19],[-6,-16],[-8,-21],[-16,-16],[-15,-14],[-26,-23],[-26,-17],[-16,-11],[-6,-27],[0,-24],[-19,-17],[-22,-8],[-14,-16],[-18,-9],[-30,-20],[-28,-10],[-17,-11],[-22,-19],[-14,-12],[-7,-14],[-16,-12],[-22,-1],[-32,-12],[-20,-6],[-21,-8],[-54,11],[-32,1],[-30,-1],[-13,-1],[-2,0],[-32,2],[-32,3],[-1,0],[-21,3],[-9,6],[-13,4],[-65,17],[-36,4],[-37,-2],[-23,-1],[-7,-1],[-17,-2],[-39,-5],[-17,-7],[-18,-4],[-10,0],[-16,0],[-13,1],[-22,2],[-12,1],[-39,11],[-14,2],[-98,7],[-24,0],[-43,6],[-69,25],[-60,27],[-19,14],[-27,31],[-4,7],[-2,18],[-7,10],[-7,6],[-94,32],[-23,3],[-13,0],[-59,3],[-16,2],[-13,6],[-19,22],[-14,10],[-17,5],[-114,20],[-18,1],[-7,-2],[-19,-3],[-49,-10],[-6,-1],[-10,-2],[-25,-13],[-10,-3],[-14,0],[-1,0],[-34,10],[-18,2],[-143,32],[-9,3],[-13,12],[-9,5],[-18,4],[-100,14],[-16,2],[-11,1],[-26,1],[-9,-2],[-1,0],[-4,0],[-103,4],[-46,5],[-113,16],[-76,8],[-157,15],[-21,2],[-44,-4],[-25,23],[-53,-3],[-13,1],[-9,4],[-10,8],[-13,22],[-6,6],[-42,16],[-29,7],[-20,20],[-112,90],[-28,17],[-16,9],[-49,23],[-11,5],[-46,17],[-116,27],[-19,3],[-25,-1],[-6,0],[-20,-3],[-9,0],[-8,-1],[-7,2],[-16,7],[-15,5],[-4,2],[-35,23],[-6,2],[-41,9],[-103,11],[-35,3],[-113,9],[-34,0],[-178,57],[-25,9],[-15,3],[-33,-5],[-25,-1],[-14,4],[-31,9],[-16,5],[-52,16],[-11,6],[-9,7],[-9,5],[-37,9],[-15,3],[-26,-5],[-29,-1],[-44,7],[-12,4],[-12,5],[-12,7],[-14,5],[-16,4],[-101,15],[-16,1],[-84,-13],[-20,-3],[-29,-4],[-11,0],[-26,-2],[-39,2],[-21,4],[-52,16],[-16,3],[-41,3],[-69,-2],[-4,-1],[-1,0],[-30,-2],[-1,0],[-70,6],[-41,4],[-15,5],[-22,14],[-24,19],[-19,14],[-47,33],[-33,12],[-24,6],[-19,31],[-3,12],[-11,10],[-10,0],[-13,0],[-6,3],[-4,9],[-1,4],[-34,25],[-75,42],[-32,22],[-14,10],[-78,81],[-11,30],[-17,24],[-22,16],[3,7],[4,2],[1,4],[-8,12],[-53,52],[-13,12],[-88,61],[-100,55],[-23,12],[-25,3],[-42,10],[-24,9],[-8,4],[-15,15],[-5,0],[-15,3],[-10,3],[-31,22],[-17,16],[-30,26],[-14,5],[-25,9],[-13,1],[-9,-1],[-4,0],[-1,1],[-96,75],[-10,15],[-4,3],[-64,30],[-122,51],[-40,15],[-17,9],[-6,3],[-2,1],[-12,5],[-7,15],[-5,3],[-17,13],[-14,10],[-96,15],[-3,-1],[-9,0],[-11,0],[-3,0],[-8,2],[-36,31],[-24,27],[-8,7],[-16,13],[-7,4],[-9,0],[-4,-3],[-6,-4],[-9,1],[-14,1],[-11,3],[-35,15],[-12,7],[-14,10],[-15,43],[-5,6],[-15,10],[-17,3],[-14,0],[-44,54],[1,7],[4,19],[6,6],[-2,12],[-4,9],[-11,6],[-32,18],[-77,26],[-111,51],[-54,51],[-9,13],[-9,12],[-4,4],[-28,29],[-8,9],[-68,71],[-28,9],[-24,6],[-1,1],[-1,0],[-6,3],[-33,30],[-6,38],[-3,6],[-18,11],[-28,3],[-9,0],[-6,-3],[-27,-1],[0,1],[-1,8],[0,9],[-5,56],[0,9],[2,5],[-1,6],[-124,75],[-4,2],[-65,-5],[-7,-2],[-33,-8],[-5,1],[-28,4],[-21,3],[-1,1],[-40,38],[-29,33],[-8,13],[-2,2],[-5,-1],[-6,-6],[0,-1],[-7,0],[-3,2],[-10,6],[-3,2],[-5,3],[-1,1],[-14,9],[-11,10],[-10,18],[-1,11],[3,3],[-1,5],[-7,7],[-4,2],[-19,10],[-27,12],[-24,11],[-17,8],[-2,1],[-20,8],[-45,27],[-19,11],[-3,4],[-9,17],[-2,6],[1,39],[11,13],[9,4],[8,8],[2,21],[-2,4],[-14,15],[-5,3],[-18,5],[9,5],[1,2],[-12,30],[-5,3],[-12,3],[-10,-3],[-3,1],[-4,1],[-10,4],[-11,10],[-3,10],[0,13],[-10,2],[-37,8],[-8,-5],[-8,-4],[-9,-7],[-10,1],[-35,4],[-11,1],[-15,2],[-28,5],[-7,1],[2,5],[11,15],[9,5],[5,5],[1,6],[-53,47],[-33,30],[-13,12],[-29,26],[-86,85],[-7,7],[-1,1],[-23,23],[-2,3],[-5,20],[-3,25],[-2,9],[-3,24],[0,30],[-8,11],[-5,7],[-9,12],[-6,8],[-6,9],[-45,59],[-34,44],[-9,2],[-30,5],[-1,-1],[-18,8],[-21,10],[-29,13],[-12,8],[-3,5],[-4,10],[-12,32],[-6,17],[-10,20],[-8,18],[3,17],[20,14],[1,21],[-24,9],[-13,9],[-2,16],[43,33],[9,22],[-2,16],[-25,36],[-14,10],[-42,28],[-23,13],[-19,16],[-15,11],[-9,14],[-20,13],[-8,22],[-13,12],[-6,30],[1,19],[-8,17],[-9,16],[-13,16],[-16,17],[-18,13],[-13,11],[-29,7],[-15,13],[-16,14],[-14,16],[-11,16],[-30,25],[-11,15],[-8,28],[-13,23],[-6,17],[-15,23],[-22,18],[-21,5],[-24,0],[-23,11],[-16,17],[-5,15],[-3,19],[-5,18],[-3,15],[1,15],[-16,5],[-18,2],[-22,-5],[-23,-7],[-27,-3],[-16,6],[-26,9],[-18,5],[8,-14],[7,-16],[9,-13],[13,-12],[-21,-7],[-18,-5],[-17,-4],[-16,3],[-18,1],[-19,-7],[-15,-10],[-15,-8],[-18,-7],[-47,2],[-36,-7],[-3,-18],[-12,-25],[-17,-4],[-21,-3],[-28,-4],[-29,-36],[-16,-18],[-13,-13],[-27,6],[-25,-22],[-16,-3],[-17,-8],[-25,7],[-13,14],[-33,17],[-31,-14],[-9,-21],[-7,-14],[-10,-11],[-15,-6],[-49,-44],[-16,-14],[-11,-13],[-18,-21],[-34,10],[-13,11],[-21,-10],[-18,3],[-15,11],[-57,69],[-62,39],[-20,5],[-29,9],[-19,62],[-18,-3],[-25,4],[-26,-15],[-40,-1],[-20,-1],[-22,-13],[-5,-24],[-20,-13],[-37,11],[-48,9],[-24,15],[-18,23],[-13,12],[-29,8],[-16,-1],[-18,-7],[-29,-3],[-29,-20],[-18,-2],[-29,-3],[-32,2],[-43,0],[-26,7],[-18,17],[-16,13],[-32,9],[-25,1],[-40,-4],[-26,-6],[-32,-6],[-29,-8],[-23,-6],[-40,-7],[-19,-2],[-33,3],[-37,5],[-24,4],[-19,8],[-13,10],[-17,19],[2,22],[12,15],[1,19],[-1,20],[-4,20],[5,15],[-5,16],[-6,20],[13,14],[3,26],[-3,18],[22,15],[23,4],[27,10],[-1,14],[68,66],[11,14],[11,24],[-8,30],[3,16],[24,10],[17,7],[16,10],[16,12],[-18,12],[-26,15],[-14,14],[0,16],[14,23],[-6,22],[-10,15],[-10,14],[5,16],[2,18],[11,13],[13,14],[-5,17],[2,22],[2,14],[11,17],[16,14],[-16,20],[3,22],[15,8],[14,10],[23,6],[69,76],[-11,17],[-2,28],[7,15],[11,14],[21,20],[10,20],[4,20],[-9,20],[6,26],[13,14],[11,11],[0,22],[10,12],[18,8],[17,1],[-16,17],[-25,7],[-25,6],[-19,13],[-18,10],[-19,13],[-23,15],[5,16],[-1,24],[12,13],[20,13],[14,10],[22,9],[17,4],[19,8],[2,18],[-27,21],[-5,14],[13,22],[-21,12],[-66,45],[0,20],[16,8],[9,23],[7,22],[6,21],[7,16],[-13,12],[-3,19],[3,23],[9,20],[9,16],[-15,14],[-11,17],[-31,1],[-19,-4],[-24,-1],[-25,2],[-21,0],[-16,0],[-26,2],[-20,0],[-18,0],[-18,-2],[-18,12],[-3,18],[-5,23],[-8,13],[-14,13],[-13,10],[-12,24],[7,22],[-15,20],[-13,10],[-14,12],[-10,12],[-8,16],[-11,15],[-13,9],[-19,7],[-13,-11],[-18,-5],[-19,-10],[-10,-14],[-10,-19],[-1,-21],[-2,-20],[-2,-17],[2,-23],[3,-18],[3,-23],[2,-16],[-5,-20],[-22,-6],[-17,-3],[-17,2],[-20,-2],[-19,-4],[-18,-4],[-17,0],[-26,0],[-26,-3],[-28,-9],[-12,-8],[-17,-10],[-16,-10],[-13,-9],[-11,-18],[-11,-17],[-8,-15],[12,-22],[-3,-17],[-25,-15],[-47,-7],[-15,-5],[-29,2],[-32,-1],[-27,-3],[-28,-4],[-45,0],[-19,-3],[-33,-5],[-7,-32],[-20,-19],[-18,-16],[-12,-19],[-18,-10],[-18,-13],[0,-17],[15,-8],[15,-4],[20,-8],[16,-5],[-2,-14],[-9,-13],[-4,-17],[-14,-7],[-16,-7],[-15,-7],[0,-16],[0,-16],[-14,-10],[-20,-3],[-21,-8],[-14,-9],[-13,-13],[-15,-28],[-16,-14],[-13,-13],[-12,-12],[-15,-8],[-13,-10],[-16,-7],[-19,5],[-17,6],[-17,6],[-24,0],[-17,-3],[-21,-6],[-12,-11],[-10,-13],[-21,-4],[-18,-2],[-18,-3],[-17,0],[-26,-1],[-20,-2],[-21,-4],[-20,-4],[-23,-7],[-18,-7],[-13,-9],[-17,-16],[-13,-14],[-8,-13],[-12,-13],[-16,-1],[-16,-4],[-19,-6],[-20,-11],[-13,-10],[-8,-13],[-9,-16],[-21,-13],[-16,-10],[-12,-11],[-14,-10],[-16,-12],[-17,-12],[-12,-15],[-4,-14],[5,-14],[13,-12],[-11,-11],[-21,-2],[-18,0],[-18,-2],[-19,-7],[-18,-5],[-18,-4],[-16,-1],[-21,1],[-19,1],[-16,0],[-19,-4],[-20,-3],[-22,-8],[-21,-6],[-17,-9],[-14,-10],[-13,-11],[-13,-13],[-14,-13],[-16,-10],[-18,-5],[-24,-5],[-17,0],[-16,2],[-19,4],[-5,-14],[10,-12],[14,-11],[7,-14],[5,-22],[12,-10],[9,-15],[-4,-15],[-9,-14],[-13,-9],[-13,-8],[-13,-9],[-15,-7],[-12,-10],[0,-18],[3,-15],[-7,-14],[-24,-4],[-21,-2],[-18,-2],[-16,-6],[-17,-6],[-17,-13],[-9,-14],[-7,-14],[3,-16],[12,-14],[14,-10],[13,-10],[8,-17],[-5,-15],[2,-15],[2,-15],[1,-14],[-6,-17],[-10,-11],[-6,-15],[-10,-14],[-3,-14],[0,-16],[-12,-16],[-19,-5],[-16,-5],[-17,-9],[-19,-22],[-11,-14],[-14,-7],[-16,-8],[-2,-17],[-10,-12],[-19,-10],[-18,-5],[-45,-9],[-28,0],[-31,4],[-14,7],[-17,5],[-23,-4],[-39,-19],[-29,-4],[-20,1],[-36,6],[-26,8],[-20,7],[-22,9],[-26,14],[-21,7],[-38,3],[-39,0],[-31,-7],[-20,-13],[-8,-13],[1,-36],[12,-21],[16,-7],[7,-13],[-5,-16],[-16,-12],[-24,-12],[-18,-16],[0,-16],[2,-17],[-23,-4],[-16,2],[-29,11],[-27,-2],[-16,-21],[-7,-19],[-9,-17],[-12,-14],[-13,-9],[-11,-11],[-5,-19],[7,-15],[16,-10],[24,-3],[16,0],[16,-2],[-4,-14],[3,-20],[6,-18],[2,-16],[-2,-19],[-11,-14],[-15,-18],[-12,-10],[-7,-13],[13,-16],[13,-11],[13,-10],[16,-9],[26,-16],[17,-13],[20,-1],[22,9],[17,10],[19,10],[18,1],[20,-16],[21,-10],[20,-4],[24,-1],[31,-5],[26,-4],[17,-6],[20,-14],[22,-13],[20,-8],[17,-7],[18,-5],[29,-5],[58,-2],[-10,-16],[-12,-30],[-6,-24],[-11,-22],[-18,-35],[-22,-22],[-18,-18],[-28,-16],[-14,-16],[-12,-14],[3,-15],[5,-17],[-13,-20],[-18,-29],[-9,-31],[-12,-16],[-21,-13],[-5,-19],[-14,-23],[-3,-17],[12,-23],[13,-21],[1,-27],[-4,-18],[6,-25],[-10,-20],[-26,-19],[-15,-15],[-18,-10],[-20,4],[-23,3],[-24,2],[-21,-8],[-23,-11],[-20,-15],[-26,-13],[-32,0],[-36,-2],[-28,-11],[-8,-15],[11,-22],[-5,-24],[-24,-23],[-19,-25],[-17,-18],[-24,0],[-22,-3],[-32,-14],[-41,-1],[-35,12],[-13,10],[-22,-4],[-16,-5],[-26,-9],[-32,-20],[-43,-22],[-38,-7],[-43,-1],[-33,13],[-10,-42],[-3,-31],[-24,-33],[-29,-32],[2,-23],[-7,-18],[-30,-25],[-13,-24],[-31,-27],[-26,-25],[-28,-12],[-17,-18],[-10,-26],[-5,-39],[9,-19],[4,-16],[5,-14],[0,-17],[-13,-18],[-16,-18],[-5,-20],[-4,-20],[2,-14],[7,-15],[-4,-14],[-13,-8],[-25,-12],[-23,-7],[-32,-7],[-23,-3],[-22,-4],[-33,-9],[-16,-4],[-19,-9],[-20,-7],[-17,-8],[1,-15],[-17,-3],[-18,-2],[-20,-8],[-21,-8],[-11,-12],[-9,-18],[-10,-19],[-3,-15],[-7,-16],[-14,-14],[-18,-16],[-13,-14],[-11,-12],[-8,-14],[-25,-1],[-27,5],[-16,3],[-21,-1],[-18,-2],[-16,0],[-21,2],[-16,8],[-23,15],[-17,15],[-8,13],[-10,14],[-13,12],[-18,16],[-13,8],[-13,12],[-13,11],[-14,11],[-18,9],[-27,-4],[-23,-9],[-16,-7],[-18,-4],[-16,-5],[-16,2],[-16,1],[-16,0],[-20,0],[-16,0],[-19,-1],[-16,4],[-16,4],[-16,2],[-17,3],[-19,5],[-31,-3],[-19,-5],[-24,-8],[-24,-10],[-13,-10],[-44,-34],[-15,-9],[-15,-7],[-26,-7],[-21,-14],[-11,-18],[-18,-16],[-42,-36],[-28,-31],[-8,-12],[-18,-23],[-14,-10],[-12,-19],[-10,-14],[-8,-15],[-16,-8],[-18,-9],[-15,-13],[-16,-5],[-33,-7],[-51,-12],[-29,-9],[-23,-3],[-39,2],[-47,-4],[-21,-5],[-17,-5],[-19,-12],[-25,-11],[-17,0],[-20,4],[-26,0],[-36,5],[-44,19],[-31,14],[-12,38],[-12,12],[-17,19],[-25,18],[-22,19],[-23,10],[-44,11],[-18,12],[-23,10],[-25,2],[-26,10],[-17,4],[-21,6],[-30,9],[-29,11],[-27,5],[-29,8],[-26,9],[-20,9],[-15,7],[-15,13],[-3,21],[-5,16],[9,26],[11,17],[26,31],[31,21],[16,19],[12,14],[5,22],[14,32],[2,23],[-4,17],[2,23],[7,20],[0,27],[-17,20],[7,18],[-12,15],[-18,4],[-13,13],[-13,10],[-15,18],[-33,30],[-9,32],[-22,9],[1,15],[-18,8],[10,15],[-8,15],[-10,12],[-16,14],[-18,5],[-18,16],[-20,9],[-21,4],[-21,8],[-13,27],[-13,18],[-22,9],[-20,5],[-24,11],[-24,16],[-10,13],[-30,7],[-11,12],[-27,2],[-38,11],[-13,42],[-13,18],[-39,4],[-36,13],[-27,-1],[-15,4],[-17,2],[-19,5],[-14,14],[-16,2],[-16,4],[-21,7],[-28,0],[-15,9],[-28,3],[-24,8],[-20,2],[-17,12],[-30,0],[-29,12],[-22,2],[-18,5],[-29,-4],[-20,12],[-17,5],[-12,12],[-21,6],[-14,-10],[-20,-6],[-16,-4],[-20,0],[-23,-3],[-16,-8],[-54,-7],[-25,-6],[-28,1],[-36,-6],[-21,-1],[-23,2],[-23,1],[-22,-5],[-19,-3],[-18,-13],[-18,-6],[-20,0],[-19,-10],[-14,-10],[-45,4],[-30,-12],[-19,1],[-17,3],[-18,4],[-19,4],[-32,8],[-19,7],[-25,-4],[-13,-16],[-5,-16],[-14,-15],[-26,-5],[-23,-24],[-28,-12],[-40,2],[-24,1],[-26,-1],[-27,5],[-18,2],[-19,8],[-22,2],[-30,-6],[-21,2],[-19,9],[-20,-3],[-16,-3],[-19,10],[-41,5],[-28,11],[-17,2],[-24,-15],[-54,-1],[-20,13],[2,15],[4,17],[20,12],[26,5],[8,18],[3,20],[23,10],[13,17],[-5,14],[-17,9],[-3,26],[-14,12],[3,14],[21,16],[-5,26],[-12,13],[-28,12],[-19,16],[-7,26],[-15,8],[-29,15],[-21,7],[-13,9],[-15,26],[-1,23],[-11,17],[0,22],[-43,39],[-6,16],[-10,14],[-34,30],[-12,13],[-18,11],[-20,26],[-14,12],[-23,5],[-23,3],[-14,11],[-23,19],[-26,13],[-56,29],[-16,21],[-12,10],[-19,5],[-21,0],[-17,8],[0,21],[-14,14],[-21,10],[-17,5],[-20,1],[-19,20],[-23,16],[-17,23],[-6,14],[-5,20],[-40,8],[-15,7],[-23,19],[-27,5],[-11,-23],[-10,-14],[-23,-5],[-27,-2],[-21,0],[-17,8],[-7,26],[-16,13],[-56,23],[-19,6],[-35,25],[-17,19],[-21,25],[-29,19],[-12,10],[-16,17],[-25,34],[-13,22],[5,15],[-11,38],[-15,6],[-31,3],[-14,21],[0,26],[-30,22],[-8,21],[-14,25],[-5,25],[8,15],[-27,27],[21,22],[6,14],[10,17],[-6,18],[24,10],[6,22],[19,23],[5,21],[17,9],[11,13],[-11,18],[-6,19],[15,19],[0,15],[-13,25],[-1,14],[10,22],[37,17],[17,13],[4,15],[8,20],[24,31],[16,9],[13,12],[7,33],[6,14],[-4,15],[10,20],[3,15],[-1,15],[-4,14],[15,16],[13,12],[27,27],[13,21],[24,19],[22,23],[7,25],[-7,23],[-18,17],[-18,7],[-26,3],[-44,-4],[-16,5],[-12,10],[-5,16],[-16,10],[-3,29],[-4,17],[-23,13],[-13,13],[-16,7],[-27,19]],[[39187,40169],[13,8],[22,15],[23,23],[12,20],[3,4],[2,17],[-4,13],[-6,17],[10,12],[13,9],[14,14],[9,14],[16,9],[16,4],[14,9],[8,12],[8,17],[17,9],[27,4],[33,1],[19,4],[14,14],[8,14],[6,14],[-3,17],[-5,18],[0,15],[5,35],[14,28],[20,6],[11,-12],[10,-13],[12,-10],[20,-2],[27,4],[25,10],[14,27],[-5,21],[-3,15],[21,15],[24,4],[22,3],[34,1],[35,4],[31,5],[16,4],[21,2],[17,-5],[20,-4],[17,2],[18,3],[25,9],[10,18],[0,19],[-6,19],[-12,16],[-19,8],[-15,7],[-24,20],[-3,17],[20,20],[22,8],[42,6],[31,5],[31,10],[11,23],[12,15],[-10,18],[-17,13],[-19,15],[-43,32],[-31,19],[-16,10],[-10,13],[2,15],[18,28],[0,17],[-8,28],[8,17],[16,8],[12,16],[15,7],[27,5],[15,5],[19,1],[14,-2],[12,-2],[9,-15],[25,-15],[20,-4],[32,4],[19,5],[18,2],[16,13],[-13,17],[-16,17],[9,13],[16,10],[18,7],[17,1],[22,0],[22,-3],[20,1],[51,8],[25,2],[17,-3],[22,-5],[20,-3],[23,-2],[24,0],[17,7],[21,16],[6,15],[4,19],[-3,15],[-9,20],[5,15],[11,13],[39,15],[52,23],[17,7],[7,2],[18,10],[-8,13],[-15,8],[-42,-4],[-43,6],[-19,4],[-14,8],[-6,14],[6,14],[6,22],[10,12],[17,8],[17,7],[16,5],[16,13],[1,17],[-6,25],[-19,11],[-18,13],[-23,14],[-16,11],[-4,17],[-9,20],[-4,21],[2,26],[-6,19],[7,22],[33,14],[11,11],[10,19],[4,21],[-13,8],[-16,5],[-19,6],[-21,13],[-24,18],[-13,14],[-6,13],[4,14],[16,15],[18,9],[29,9],[41,6],[30,9],[16,11],[23,21],[15,14],[9,14],[1,20],[-24,41],[-28,33],[-11,16],[-4,19],[4,19],[13,15],[3,23],[-11,8],[-7,5],[-16,5],[-19,3],[-18,0],[-17,-2],[-23,5],[-28,6],[-11,12],[0,15],[7,24],[5,15],[12,19],[-3,17],[-4,21],[6,35],[20,20],[9,22],[4,17],[13,23],[14,25],[-5,15],[-5,26],[-25,13],[-24,6],[-25,12],[-4,21],[1,16],[15,8],[22,14],[5,16],[0,18],[-4,27],[1,37],[27,26],[7,16],[-1,16],[-5,16],[1,21],[13,26],[6,14],[2,15],[6,17],[11,26],[-4,37],[-5,15],[-1,16],[7,17],[13,10],[19,5],[28,6],[19,4],[32,12],[10,16],[5,26],[-9,13],[-15,21],[-16,8],[-20,4],[-19,3],[-23,10],[-10,16],[4,18],[14,16],[18,14],[16,8],[1,19],[-12,22],[-13,12],[-12,13],[0,20],[6,54],[16,17],[15,22],[18,30],[0,16],[-9,12],[-23,13],[-2,15],[16,16],[25,15],[18,18],[6,17],[-10,14],[-23,15],[-16,6],[-21,15],[-9,18],[-1,15],[9,14],[13,12],[19,11],[15,13],[-2,15],[-10,15],[3,21],[12,11],[11,16],[-12,12],[-16,9],[-3,15],[-8,18],[-15,10],[-22,20],[1,18],[9,18],[13,22],[1,23],[-3,16],[-12,10],[-14,14],[-9,15],[-5,26],[9,12],[13,15],[3,16],[0,28],[4,24],[24,14],[21,13],[14,13],[18,11],[25,21],[13,18],[10,19],[-7,13],[-15,10],[-22,6],[-27,7],[-20,0],[-22,5],[-14,9],[-16,8],[-17,6],[-16,6],[-21,11],[-15,9],[-11,16],[15,21],[14,8],[14,9],[6,13],[7,34],[0,15],[-8,19],[-10,25],[-5,15],[3,19],[8,14],[17,8],[19,4],[24,5],[12,12],[5,15],[2,19],[-1,14],[-1,16],[3,17],[5,14],[15,16],[13,11],[13,10],[10,11],[5,16],[-4,18],[-7,15],[-17,18],[-18,13],[-15,9],[-20,11],[-16,17],[8,13],[12,12],[-2,15],[-1,16],[-5,16],[-2,14],[0,14],[-5,16],[-8,16],[-6,14],[1,14],[-1,14],[-2,16],[-2,14],[-3,16],[-4,16],[-7,14],[-5,14],[-12,16],[-5,18],[-14,12],[-10,12],[11,10],[0,15],[16,11],[14,12],[13,11],[15,13],[14,10],[16,9],[18,11],[8,13],[8,13],[2,16],[0,15],[1,16],[2,14],[10,13],[10,13],[0,18],[1,15],[0,14],[5,19],[7,15],[9,15],[3,14],[4,15],[-5,15],[-17,15],[-11,13],[0,15],[10,14],[12,12],[15,12],[12,12],[9,15],[10,13],[11,11],[11,15],[12,15],[15,12],[20,6],[22,-5],[29,-5],[32,-5],[23,5],[32,10],[23,5],[37,4],[29,3],[15,6],[12,13],[12,13],[9,14],[6,17],[6,14],[7,16],[13,9],[16,8]],[[43199,50863],[69,22],[36,-20],[58,-14],[37,4],[39,42],[68,28],[63,23],[57,6],[98,32],[58,53],[50,7],[67,-30],[60,-5],[39,-24],[18,-24],[127,-79],[54,-7],[22,-29],[24,-5],[17,-14],[50,6],[80,22],[83,61],[43,-10],[94,19],[59,15],[31,26],[100,-62],[120,-24],[-20,-7],[-15,-29],[-36,-55],[15,-28],[-3,-33],[-45,-23],[-9,-8],[15,-24],[29,-9],[92,1],[104,-27],[16,-36],[67,-9],[97,-67],[8,-30],[18,-18],[101,-25],[-6,-58],[32,-73],[-11,-29],[6,-20],[46,-32],[-6,-39],[43,-30],[54,0],[34,-1],[49,5],[112,-26],[45,-21],[51,-2],[62,-21],[82,-22],[46,-10],[49,4],[66,-47],[64,-29],[20,-18],[13,-12],[27,-9],[10,-13],[34,-10],[75,-8],[31,-16],[16,-17],[4,-37],[2,-40],[9,-16],[58,-53],[28,-87],[32,-32],[78,-7],[21,-12],[22,-18],[-15,-19],[2,-22],[80,-82],[50,-11],[42,-1],[31,8],[31,9],[13,-11],[59,-9],[28,12],[51,51],[74,32],[91,5],[26,29],[38,17],[48,-3],[17,-1],[51,19],[49,12],[33,29],[9,21],[11,21],[91,46],[80,1],[42,-3],[45,12],[59,-1],[55,22],[106,133],[116,64],[33,18],[13,61],[5,43],[10,15],[15,71],[7,19],[55,36],[36,36],[24,29],[19,8],[12,18],[1,36],[18,16],[5,20],[-15,28],[-11,16],[-1,22],[15,21],[1,21],[-22,32],[-32,20],[-1,22],[29,65],[32,36],[49,4],[63,10],[194,0],[52,-28],[26,-9],[35,-20],[20,-5],[27,-3],[104,-35],[41,3],[19,-1],[29,-44],[47,-11],[38,-1],[14,11],[130,2],[29,34],[17,27],[24,11],[29,49],[48,44],[59,47],[33,-8],[73,-6],[78,14],[49,11],[78,13],[84,-2],[57,31],[37,42],[46,-3],[55,-5],[140,16],[64,77],[27,21],[4,38],[4,12],[-19,21],[-41,29],[14,27],[38,43],[46,25],[14,26],[50,46],[36,3],[97,11],[70,8],[15,1],[32,-7],[75,11],[58,10],[49,18],[41,30],[61,12],[28,4],[20,7],[66,74],[-15,22],[-1,54],[5,39],[5,44],[2,24],[9,22],[31,10],[80,35],[12,7],[31,51],[-8,39],[51,52],[32,39],[79,37],[77,23],[80,12],[32,20],[88,37],[15,34],[32,34],[62,42],[20,8],[42,43],[32,11],[88,-10],[76,1],[48,7],[25,11],[37,51],[16,15],[2,38],[17,22],[-36,28],[-3,61],[-15,23],[-29,39],[-30,25],[-47,1],[-18,26],[-17,23],[-38,19],[27,29],[60,38],[33,21],[86,34],[10,7],[-22,60],[-50,61],[60,46],[44,-20],[66,-8],[38,2],[66,27],[38,4],[13,1],[31,9],[27,32],[25,9],[8,6],[-1,42],[69,30],[51,-22],[54,-13],[36,-8],[112,4],[23,-20],[-4,-12],[44,-77],[-4,-35],[18,-22],[36,-10],[17,-7],[46,-3],[52,8],[51,-1],[48,10],[45,26],[40,9],[18,4],[111,25],[34,5],[50,-40],[-2,-40],[-21,-11],[20,-8],[17,-10],[7,-16],[-14,-21],[-6,-10],[-5,-39],[22,-38],[33,-21],[-6,-18],[14,-24],[-15,-27],[2,-18],[23,-1],[19,-30],[32,-19],[30,-7],[19,-17],[4,-17],[38,-19],[1,-36],[16,-39],[5,-16],[40,1],[49,-26],[19,-33],[46,-9],[34,-1],[47,-22],[40,-17],[20,-28],[36,-19],[47,-28],[14,-28],[-10,-23],[-45,-23],[-63,-43],[9,-28],[17,-36],[-9,-24],[17,-23],[22,-10],[-30,-18],[-54,-32],[-14,-33],[27,-15],[71,7],[84,-17],[49,-26],[78,-27],[51,17],[35,3],[50,0],[49,23],[59,14],[31,17],[80,3],[56,17],[48,-30],[53,3],[49,-13],[58,-12],[26,-52],[68,-58],[63,-23],[63,-8],[96,35],[50,8],[45,-10],[84,-66],[95,-24],[55,-30],[29,-27],[20,-75],[2,-13],[39,-62],[76,-71],[-2,-32],[14,-25],[-2,-15],[-54,-14],[-61,-22],[-63,-32],[-33,-10],[-38,-40],[-61,-61],[-28,-30],[-47,-14],[-1,-23],[46,-37],[10,-28],[1,-51],[-15,-18],[-7,-41],[-24,-46],[-8,-23],[-40,-19],[-32,-34],[-9,-18],[1,-16],[-26,-23],[-21,-28],[8,-20],[19,-21],[3,-20],[-9,-13],[-35,-28],[-4,-17],[-11,-37],[-20,-28],[-30,-24],[-13,-25],[17,-11],[76,8],[67,3],[65,23],[25,2],[55,-30],[46,-5],[43,-9],[50,8],[53,30],[43,8],[79,4],[61,-21],[91,6],[62,-4],[80,18],[47,-7],[74,-13],[77,-19],[-108,-89],[0,-16],[21,-18],[33,-27],[-17,-18],[-2,-37],[16,-16],[16,-35],[18,-12],[34,-20],[11,-19],[14,-62],[13,-59],[47,-65],[-5,-48],[7,-38],[-56,-28],[-58,-51],[-25,-16],[-125,-43],[36,-80],[-2,-19],[-34,-39],[-51,-28],[-75,-55],[10,-38],[117,-55],[28,-19],[2,-73],[-28,-73],[-9,-13],[42,-52],[57,-12],[104,-9],[57,-44],[-19,-59],[-104,-34],[-72,-21],[-54,-38],[-8,-33],[19,-58],[-8,-38],[44,-23],[109,-2],[102,-2],[97,-39],[57,-10],[48,-49],[76,-47],[116,-44],[41,-39],[12,-73],[-24,-35],[-8,-88],[22,-45],[-45,-41],[-49,-27],[23,-37],[64,-23],[25,-68],[17,-35],[31,-14],[-31,-16],[-47,-19],[-17,-39],[6,-35],[-87,-37],[-3,-32],[6,-27],[-9,-17],[24,-24],[-18,-44],[16,-52],[5,-22],[-4,-13],[58,-68],[59,-19],[54,-55],[70,-5],[18,-25],[49,-11],[17,0],[8,-58],[38,-19],[16,-42],[27,-26],[0,-33],[46,-43],[104,-30],[13,-59],[77,-54],[69,-32],[78,-28],[47,-38],[67,-55],[14,-39],[16,-47],[-59,-23],[-55,2],[-74,-4],[7,-30],[8,-48],[-19,-32],[1,-32],[98,-94],[16,-26],[0,-12],[31,-17],[39,-13],[30,-33],[70,2],[70,-24],[71,-21],[29,-30],[59,-17],[73,-39],[27,-20],[19,-34],[45,-25],[23,-49],[20,-43],[11,-42],[52,-51],[21,-22],[30,-2],[54,-44],[1,-57],[44,-15],[29,-7],[28,-33],[76,-32],[33,-10],[39,-35],[43,-20],[23,-17],[29,-34],[31,-21],[39,1],[46,-33],[42,-42],[63,-4],[38,-10],[35,-63],[36,-17],[23,-5],[20,-19],[2,-39],[10,-26],[29,-33],[-12,-41],[-21,-40],[-29,-35],[-14,-40],[25,-34],[42,-30],[-4,-47],[17,-41],[23,-15],[44,-13],[35,-23],[14,-26],[44,-20],[63,-11],[73,2],[60,12],[26,8],[7,-51],[-10,-38],[-87,-74],[-78,-59],[-11,-33],[23,-29],[16,-15],[26,-13],[18,-20],[4,-31],[45,4],[203,-128],[25,-33],[133,-9],[63,29],[74,10],[166,-21],[93,5],[100,20],[39,-1],[108,-113],[-59,-55],[-8,-51],[-151,-98],[130,-87],[181,-82],[73,-1],[62,-30],[36,-27],[43,-33],[13,-11],[-32,-32],[8,-14],[36,-27],[-3,-54],[21,-25],[140,-23],[181,14],[72,30],[80,-36],[23,-24],[39,-28],[20,-74],[-11,-57],[24,-34],[6,-20],[-97,-70],[-5,-16],[12,-18],[93,-51],[48,-14],[-1,-29],[0,-25],[-24,-40],[3,-32],[-14,-22],[1,-37],[-3,-15],[50,-26],[16,-27],[38,-28],[9,-28],[55,-50],[7,-25],[-25,-30],[-26,-19],[-17,-8],[-21,-26],[-36,-18],[-18,-13],[3,-17],[11,-20],[11,-65],[-22,-49],[-10,-54],[15,-43],[8,-56],[12,-22],[1,-33],[-9,-21],[-39,-9],[-19,-8],[-5,-17],[29,-31],[59,-113],[-10,-16],[-20,-14],[-18,-34],[-23,-12],[-12,-14],[-44,-11],[-31,-9],[-121,-1],[-14,-1],[-21,-30],[-27,-26],[-28,-4],[-98,4],[-44,15],[-57,8],[-38,6],[-67,-43],[-42,1],[-112,17],[-31,-9],[-8,-33],[-19,-5],[-11,-35],[19,-29],[10,-34],[17,-16],[7,-80],[23,-8],[25,-6],[17,-55],[-8,-24],[29,-46],[33,-22],[57,-3],[24,-26],[52,-45],[20,-32],[13,-13],[37,-9],[19,-13],[26,-2],[2,-24],[-28,-36],[-15,-12],[8,-18],[-12,-30],[-6,-9],[0,-31],[-9,-29],[-16,-1],[-17,-15],[13,-12],[25,-2],[35,-24],[32,-16],[87,-24],[43,-29],[25,-17],[18,-4],[-12,-17],[-11,-41],[3,-20],[32,-46],[45,-35],[9,-32],[16,-30],[5,-35],[-3,-19],[11,-32],[45,-26],[127,-21],[24,-21],[26,-45],[28,-26],[77,-6],[86,1],[15,-9],[1,-24],[39,-47],[5,-28],[3,-10],[51,-64],[0,-26],[7,-45],[48,7],[87,29],[45,5],[26,4],[37,-15],[154,-23],[49,-17],[37,0],[71,11],[70,-4],[80,-20],[23,-26],[-1,-48],[44,-17],[84,-50],[64,-36],[71,-23],[63,-24],[11,-7],[4,-18],[22,-37],[81,-136],[15,-31],[33,-40],[5,-24],[-12,-18],[-95,-36],[-19,-8],[13,-51],[31,-17],[62,-19],[45,-20],[52,-36],[29,-9],[159,50],[18,6],[25,18],[61,27],[35,11],[26,25],[66,19],[73,12],[69,13],[39,18],[40,2],[27,18],[2,18],[12,21],[38,6],[23,14],[24,7],[41,12],[19,18],[51,11],[59,18],[69,47],[43,11],[48,19],[38,3],[31,-2],[93,28],[23,9],[17,13],[36,11],[11,12],[19,10],[45,0],[28,14],[67,16],[43,5],[90,-70],[21,-39],[21,-13],[58,0],[37,5],[42,-11],[39,-9],[65,-29],[45,-6],[50,-1],[78,-15],[59,-8],[34,-24],[50,-43],[78,-21],[38,-6],[34,-1],[72,-37],[23,-14],[16,-25],[42,-38],[23,-8],[68,-91],[83,-35],[32,-9],[103,-59],[32,-16],[35,11],[18,15],[27,2],[37,-8],[53,-12],[69,-22],[42,-19],[81,2],[44,-9],[29,-17],[67,-20],[19,-23],[-15,-35],[3,-50],[3,-22],[-61,-26],[-45,-41],[9,-19],[29,-27],[6,-26],[0,-16],[13,-21],[36,-23],[43,-8],[72,-8],[61,-40],[67,-121],[-15,-69],[19,-19],[71,13],[162,-55],[-17,-44],[34,-101],[4,-68],[-5,-71],[8,-26],[28,-67],[22,-79],[63,-24],[153,-48],[37,-9],[30,-43],[-42,-73],[76,-31],[164,-20],[7,-99],[-46,-61],[32,-152],[-2,-20],[63,-51],[-9,-33],[-10,-16],[43,-42],[184,-136],[35,-108],[-48,-63],[-20,-54],[-55,-37],[-139,-17],[-132,-49],[-72,-91],[-155,-119],[170,-57],[137,-70],[87,-58],[-64,-101],[255,-106],[189,-70],[50,-41],[17,-48],[-159,-75],[-25,-129],[26,-34],[206,-97],[160,-17],[38,-53],[50,-40],[77,-28],[39,4],[51,-27],[26,-96],[-165,-50],[16,-120],[-64,-60],[-55,-44],[-31,-2],[-13,-33],[-37,-18],[3,-14],[24,-30],[3,-35],[25,-21],[40,-47],[31,-42],[46,-32],[33,-12],[35,-47],[26,-26],[32,-20],[12,-14],[16,-10],[-4,-24],[-19,-21],[-10,-28],[2,-39],[18,-46],[19,-30],[-1,-16],[3,-30],[9,-14],[20,-25],[16,-25],[31,-19],[108,-37],[46,-22],[49,-27],[34,-35],[65,-77],[20,-19],[49,-16],[78,-57],[74,-39],[81,-38],[47,0],[24,7],[99,-3],[-1,-27],[12,-39],[29,-39],[81,-12],[91,-37],[69,-8],[62,4],[43,6],[34,-10],[15,-18],[55,-9],[72,-16],[18,-30],[2,-21],[12,-16],[33,-31],[48,-9],[28,-3],[146,-43],[38,18],[30,8],[56,54],[36,8],[37,-4],[51,-27],[29,-11],[6,-23],[-19,-34],[-9,-32],[17,-19],[12,-12],[4,-14],[-4,-17],[1,-15],[37,-93],[2,-52],[29,-23],[44,-17],[54,-22],[12,-15],[-11,-20],[5,-22],[27,-4],[42,-14],[79,-11],[37,-25],[21,-26],[4,-20],[13,-12],[35,-22],[34,-37],[158,-25],[66,42],[66,12],[27,21],[75,23],[27,10],[22,17],[10,6],[40,13],[28,15],[12,10],[32,12],[51,45],[25,31]],[[17702,44438],[5,-33],[20,-8],[15,-18],[11,-11],[14,-17],[12,-20],[2,-20],[-8,-16],[-10,-15],[-3,-15],[0,-18],[-6,-17],[-7,-19],[-7,-20],[1,-20],[13,-16],[28,-9],[3,-18],[-13,-18],[-10,-17],[-10,-23],[-2,-21],[9,-18],[20,-16],[26,-12],[22,-1],[27,16],[25,5],[24,-5],[10,-13],[12,-15],[20,-11],[30,-5],[27,2],[38,3],[29,-1],[55,-2],[45,-2],[53,-14],[16,-6],[31,-8],[36,-8],[32,-7],[15,-5],[20,-10],[18,-16],[8,-16],[25,2],[33,1],[21,-18],[18,-6],[33,-9],[18,-16],[21,-18],[26,-16],[-12,-11],[-20,-8],[-14,-12],[-22,-13],[-15,-17],[-2,-23],[-15,-17],[6,-18],[6,-16],[-26,3],[-23,4],[-21,-8],[-19,-10],[-42,-11],[-49,0],[-7,-19],[22,-11],[34,-25],[18,-13],[5,-17],[-21,-9],[0,-18],[11,-15],[7,-20],[-16,-17],[6,-18],[-4,-18],[-2,-25],[-20,-16],[-8,-34],[-1,-25],[-20,-19],[-29,-8],[-29,4],[-17,8],[-12,9],[-31,5],[-12,-15],[-6,-20],[-5,-22],[5,-21],[17,-23],[-8,-18],[-16,-7],[-36,-11],[-33,-3],[-24,-3],[-29,3],[-24,2],[-17,2],[-28,0],[-19,-1],[-15,-12],[3,-20],[9,-17],[1,-21],[-5,-25],[-25,-19],[-14,-12],[-9,-13],[-12,-14],[-12,-15],[-18,-14],[-9,-14],[1,-25],[-1,-37],[-1,-14],[-3,-14],[2,-25],[10,-12],[16,-10],[16,-5],[16,-10],[13,-10],[11,-13],[11,-12],[12,-13],[3,-15],[-5,-17],[-2,-16],[5,-16],[2,-15],[-2,-16],[11,-13],[17,4],[16,6],[13,-11],[19,-6],[18,-3],[16,-4],[14,-10],[4,-17],[9,-17],[5,-17],[15,-16],[16,-10],[14,-9],[8,-17],[18,-7],[21,-10],[-3,-29],[5,-17],[-10,-11],[-13,-10],[-13,-20],[-6,-19],[0,-15],[3,-15],[2,-23],[-2,-15],[2,-19],[-8,-14],[-15,-11],[-26,-8],[-14,-7],[-7,-14],[-8,-16],[-18,-13],[-14,-12],[-16,-13],[8,-15],[6,-18],[-12,-18],[-9,-13],[-13,-12],[-11,-14],[-14,-17],[-13,-10],[-12,-12],[-9,-11],[-13,-12],[-13,-12],[-11,-15],[-12,-11],[-16,-9],[-21,-5],[-16,-2],[-18,5],[-19,2],[-22,0],[-19,-3],[-24,-4],[-16,0],[-16,3],[-13,10],[-17,13],[-18,6],[-20,5],[-21,2],[-17,1],[-16,-1],[-18,0],[-18,0],[-16,4],[-19,7],[-10,-11],[-7,-16],[13,-11],[5,-15],[5,-16],[9,-13],[4,-15],[-13,-10],[-16,-1],[-19,-3],[-18,-12],[0,-17],[8,-17],[8,-16],[14,-9],[13,-13],[-4,-6],[-5,-7],[5,-14],[-13,-15],[-13,-8],[-9,-14],[-8,-20],[-12,-32],[-4,-28],[-4,-15],[-2,-15],[2,-15],[0,-15],[3,-18],[-2,-14],[-5,-14],[-1,-14],[-5,-16],[-7,-14],[-1,-17],[3,-16],[-5,-19],[-8,-13],[-1,-17],[-5,-15],[0,-15],[-4,-14],[-14,9],[-21,0],[-16,-3],[-19,-7],[-20,-2],[-32,5],[-24,7],[-26,-2],[-8,-17],[-2,-17],[-9,-19],[-12,-14],[0,-16],[0,-14],[2,-16],[10,-11],[-1,-19],[-9,-15],[0,-16],[-5,-14],[-10,-13],[-16,-1],[-14,8],[-18,3],[-18,8],[-17,0],[-17,2],[-17,-4],[-20,-9],[-18,4],[-21,6],[-8,-16],[-1,-21],[1,-14],[-6,-15],[-10,-14],[-9,-13],[-7,-14],[10,-13],[-11,-14],[-12,-13],[-16,-8],[-13,-13],[0,-16],[11,-11],[17,-27],[0,-16],[6,-15],[-17,-28],[-12,-11],[3,-14],[1,-19],[-12,-11],[-20,-8],[-17,-3],[-26,-4],[-30,-9],[-5,-14],[-4,-17],[15,-22],[-10,-17],[5,-15],[7,-18],[1,-16],[5,-19],[7,-14],[-5,-23],[-3,-18],[-2,-16],[-6,-23],[-9,-12],[-10,-13],[-13,-18],[12,-15],[5,-24],[-3,-17],[1,-16],[-3,-17],[-5,-15],[-7,-13],[-5,-19],[2,-16],[-1,-19],[9,-22],[-6,-20],[-1,-16],[0,-21],[2,-21],[2,-17],[-19,-13],[-5,-15],[-3,-23],[3,-42],[-5,-41],[-14,-22],[-1,-15],[2,-16],[-3,-17],[-6,-15],[2,-21],[-6,-16],[-12,-10],[-19,-17],[-5,-17],[-2,-19],[4,-15],[8,-21],[3,-14],[8,-15],[3,-15],[-10,-12],[-7,-14],[-9,-19],[-9,-15],[-8,-13],[-2,-18],[-1,-15],[-9,-15],[-5,-14],[-10,-14],[-11,-14],[-8,-15],[-11,-12],[-21,-9],[-17,-8],[3,-16],[14,-16],[4,-15],[6,-19],[9,-12],[6,-15],[-4,-35],[7,-15],[15,-17],[6,-27],[15,-17],[64,-2],[47,-40],[-5,-14],[14,-22],[21,-9],[21,-3],[20,-16],[17,-13],[22,-77],[28,-2],[7,-21],[14,-13],[16,-11],[16,-5],[19,-4],[29,-7],[42,-13],[19,0],[41,3],[21,-29],[4,-17],[8,-28],[-6,-17],[-19,-12],[-18,-18],[5,-22],[6,-30],[3,-20],[0,-27],[7,-21],[-3,-15],[-29,-20],[-20,-11],[-32,-24],[11,-22],[28,-21],[22,-16],[19,-18],[26,-20],[36,-20],[18,3],[21,-8],[3,-15],[9,-12],[43,-52],[22,-9],[26,1],[34,-20],[18,-2],[12,-15],[18,-25],[5,-21],[13,-15],[26,-24],[-13,-19],[-23,-20],[2,-21],[16,-15],[-15,-44],[-4,-21],[-25,-13],[-19,-13],[3,-21],[-2,-36],[-3,-16],[-1,-22],[5,-25],[3,-24],[3,-23],[-27,-21],[-8,-34],[-4,-20],[0,-26],[-3,-20],[-11,-12],[-10,-30],[-11,-30],[-8,-15],[-7,-26],[-3,-26],[0,-27],[-1,-18],[-10,-13],[-34,-19],[-18,-10],[-27,-12],[-36,-18],[-26,-14],[1,-25],[-4,-15],[0,-14],[3,-37],[18,-14],[16,-3],[18,-12],[21,-14],[31,-14],[27,-13],[-11,-12],[-11,-11],[-12,-19],[-19,-25],[-8,-17],[11,-29],[5,-37],[4,-24],[-1,-15],[8,-27],[10,-18],[-3,-22],[-7,-17],[7,-20],[3,-18],[-10,-25],[-5,-22],[0,-17],[-29,-25],[-30,-8],[-7,-17],[-21,-25],[-9,-25],[3,-17],[-5,-15],[-3,-20],[9,-23],[4,-22],[-9,-29],[-32,-13],[-6,-27],[-3,-24],[-25,-20],[2,-16],[-18,-14],[12,-30],[-10,-12],[-29,13],[-8,-22],[11,-19],[16,-11],[18,-6],[8,-22],[7,-18],[8,-14],[23,-16],[19,-7],[17,-12],[23,-30],[5,-17],[3,-27],[-2,-18],[0,-15],[-4,-17],[-9,-14],[1,-20],[6,-14],[8,-22],[-18,-3],[-1,-45],[0,-20],[9,-22],[13,-10],[23,-15],[11,-13],[-6,-19],[1,-18],[2,-19],[9,-30],[17,-15],[-10,-18],[10,-17],[29,-20],[14,-10],[11,-11],[12,-26],[8,-13],[13,-21],[9,-14],[2,-35],[6,-18],[7,-22],[-18,-12],[-6,-22],[5,-14],[11,-11],[16,-28],[14,-14],[10,-14],[2,-16],[-7,-21],[12,-16],[-2,-16],[-2,-17],[2,-21],[7,-25],[-2,-19],[-13,-13],[-16,-6],[-18,-11],[10,-19],[16,-11],[29,-20],[22,-12],[15,-10],[18,-33],[-10,-21],[-3,-21],[0,-22],[6,-14],[11,-13]],[[17499,35752],[-14,-5],[-10,-4],[-20,0],[-15,1],[-22,5],[-26,6],[-34,6],[-18,1],[-25,0],[-14,0],[-29,8],[-27,5],[-31,2],[-22,-2],[-33,-11],[-29,-14],[-12,-10],[-13,-12],[-20,-13],[-17,-14],[-11,-10],[-4,-2],[-47,-14],[-30,2],[-18,0],[-12,2],[-20,3],[-8,12],[-14,18],[-21,21],[-10,10],[-31,16],[-8,4],[-16,20],[2,14],[-2,14],[-8,3],[-11,1],[-11,-3],[-13,-9],[-15,-2],[-10,1],[-21,10],[-18,8],[-23,5],[-16,2],[-28,11],[-12,40],[-18,29],[-1,10],[-5,5],[-12,-13],[-11,-4],[-39,-10],[-10,-5],[-3,-7],[0,-14],[-10,-9],[-2,-11],[4,-9],[-4,-11],[-7,-26],[-5,-17],[-7,-13],[-8,-8],[-38,-116],[-73,-15],[-18,-9],[-19,-14],[-1,-15],[-6,-21],[-15,-23],[-66,-52],[26,-34],[8,-19],[-5,-18],[-9,-13],[-14,-9],[-11,-25],[-14,-18],[-13,-19],[-17,-29],[3,-17],[8,-13],[4,-19],[-18,-7],[-26,-9],[-17,-10],[-27,-14],[-51,-4],[1,17],[-13,22],[-40,3],[-29,-1],[-19,4],[-42,15],[-35,13],[-44,-16],[-19,-4],[-51,-14],[-24,-5],[-21,-6],[-22,-6],[-38,-15],[-12,-17],[-36,-12],[-31,-8],[-19,-3],[-37,-7],[-43,-14],[-30,-15],[-33,-24],[-28,-5],[-22,-7],[-21,-16],[-29,-18],[-26,1],[-14,-17],[-21,-10],[-26,-1],[-31,-24],[-14,-25],[-9,-15],[-9,-24]],[[15198,34969],[-94,0],[-150,0],[-75,0],[-190,0],[-38,0],[-37,0],[-115,0],[-113,-1],[-45,0],[-38,0],[-16,0],[-18,0],[-105,0],[-260,0],[-175,-1],[-23,0],[-246,-2],[-78,26],[-65,21],[-45,15],[-31,10],[-66,20],[-46,14],[-219,87],[-179,71],[-17,5],[-19,7],[-348,117],[-249,83],[-122,41],[-15,5],[-17,6],[-36,12],[-25,9],[-175,59],[-57,19],[-122,42],[0,42],[0,22],[0,67],[-10,185],[0,90],[0,16],[-1,44],[0,139],[0,31],[0,27],[0,25],[0,14],[0,35],[-3,71],[-4,94],[-1,40],[0,38],[0,29],[1,91],[0,48],[1,31],[0,39],[0,48],[0,10],[0,18],[1,21],[0,42],[-1,173],[-1,28],[-1,117],[0,54],[0,43],[-405,-3],[-48,3],[-121,-1],[-103,0],[-51,0],[-62,0],[-95,0],[-55,0],[-23,0],[-17,0],[-73,0],[-128,0],[-30,0],[12,19],[15,26],[52,90],[0,1],[5,17],[-1,16],[0,15],[-3,15],[3,15],[-2,15],[4,15],[-6,14],[-7,13],[0,15],[-4,17],[-1,15],[-13,8],[-7,14],[-13,10],[-5,14],[-8,13],[-13,10],[-6,13],[-13,11],[-14,10],[-8,15],[-14,8],[-12,10],[-6,14],[-11,11],[-11,12],[2,16],[-10,12],[-13,9],[-12,11],[-15,5],[-10,12],[-13,9],[-14,10],[-15,6],[-15,7],[-15,7],[-14,7],[-15,8],[-15,8],[-12,12],[-14,6],[-9,13],[-10,14],[-16,14],[-15,8],[2,48],[2,79],[1,80],[-1,53],[-1,53],[0,15],[-1,26],[1,47],[0,24],[0,17],[0,15],[0,56],[1,36],[1,21],[0,26],[-1,33],[0,25],[0,15],[0,14],[-2,72],[2,15],[-2,32],[-1,22],[-1,28],[-1,22],[-1,24],[-4,73],[2,17],[-1,26],[-1,56],[0,30],[0,18],[-1,15],[0,24],[0,23],[-1,44],[0,18],[0,57],[0,21],[0,16],[0,16],[0,31],[0,100],[0,46],[0,50],[0,21],[0,15],[0,221],[0,81],[0,44],[0,43],[0,80],[0,61],[0,58],[0,15],[0,57],[1,16],[0,24],[-1,41],[1,41],[0,70],[0,3],[0,25],[-1,16],[-19,-2],[-18,0],[-19,0],[-67,1],[-67,2],[-26,0],[-27,1],[-17,0],[-19,0],[-40,1],[-73,1],[-36,1],[-18,0],[-27,1],[-83,0],[-129,1],[-80,0],[-48,0],[-231,1],[-39,0],[-195,1],[-194,0],[-20,0],[-20,1],[-18,0],[-28,0],[-346,1],[-131,-1],[-744,3],[-63,1],[-86,0],[-22,0],[-24,0],[-78,1],[-70,0],[-117,0],[-71,1],[-47,0],[-114,0],[-26,0],[-128,2],[-127,2],[-54,0],[-18,1],[-36,0],[-31,1],[-31,0],[-64,1],[-39,0],[-25,0],[-213,2],[-25,0],[-25,0],[-15,0],[-5,0],[-19,0],[-31,1],[-17,0],[-19,0]],[[5535,40627],[4,5],[19,22],[10,20],[9,20],[3,5],[6,15],[4,19],[0,18],[-9,18],[-9,6],[-11,7],[-9,14],[5,25],[9,9],[2,2],[21,12],[1,0],[1,0],[17,1],[19,-3],[27,-5],[31,0],[9,0],[12,3],[23,6],[29,15],[20,10],[18,10],[38,27],[30,25],[8,18],[11,22],[17,19],[24,10],[21,3],[26,6],[17,3],[48,19],[36,12],[18,12],[11,13],[7,8],[32,40],[12,15],[17,23],[18,16],[19,15],[18,15],[-4,22],[10,11],[12,14],[20,16],[16,18],[22,25],[6,15],[-2,28],[4,17],[21,16],[7,18],[2,4],[-2,16],[21,65],[20,14],[11,28],[13,22],[10,14],[7,9],[17,19],[17,11],[4,17],[10,42],[-1,26],[44,36],[7,6],[8,27],[4,24],[4,40],[27,31],[43,37],[12,17],[11,17],[-3,36],[-14,18],[-6,16],[-16,30],[-18,32],[-22,21],[-32,25],[-28,28],[-17,12],[-19,14],[-13,12],[-13,13],[-14,14],[-9,10],[-6,7],[-16,36],[-53,58],[-11,24],[7,25],[23,29],[27,17],[14,8],[63,10],[33,21],[19,12],[26,7],[29,6],[12,17],[6,10],[17,14],[16,15],[17,16],[12,14],[8,16],[10,15],[18,15],[16,13],[14,18],[9,15],[5,20],[-15,12],[-22,3],[-34,2],[-18,2],[-40,-4],[-33,-2],[-4,-1],[-29,-6],[-18,-7],[-16,-12],[-16,-21],[-6,-14],[-2,-19],[-5,-15],[-5,-14],[-11,-14],[-15,-12],[-14,-12],[-24,-19],[-28,-10],[-26,-2],[0,1],[-30,5],[-24,14],[-35,33],[-16,12],[-13,8],[-13,19],[3,24],[6,20],[3,21],[13,24],[15,21],[3,5],[12,19],[24,28],[14,18],[11,14],[17,22],[15,18],[19,25],[17,22],[17,21],[11,13],[20,19],[0,41],[-8,52],[-23,37],[-7,23],[15,11],[18,12],[3,22],[-11,28],[-2,4],[-4,13],[-24,25],[-12,22],[6,16],[12,12],[17,11],[18,14],[15,19],[10,14],[5,19],[19,20],[14,9],[20,8],[19,9],[52,18],[20,5],[16,4],[46,16],[17,6],[29,12],[19,10],[16,8],[13,14],[12,12],[19,27],[33,28],[25,17],[36,25],[21,15],[15,11],[23,10],[21,5],[17,5],[32,13],[14,13],[32,29],[27,21],[19,9],[26,15],[21,23],[18,12],[24,16],[19,27],[19,32],[13,9],[20,14],[8,10],[11,14],[7,13],[7,19],[23,17],[20,12],[15,15],[5,16],[37,26],[10,6],[5,16],[-2,21],[-2,20],[0,8],[0,1],[1,15],[0,19],[-5,42],[0,25],[6,41],[2,17],[4,20],[9,18],[8,14],[11,13],[23,27],[15,15],[15,9],[6,8],[4,4],[15,22],[9,12],[25,29],[23,8],[19,3],[32,13],[23,14],[34,15],[23,7],[17,5],[21,5],[51,18],[28,11],[20,8],[35,13],[11,19],[0,20],[4,30],[7,24],[18,22],[19,3],[16,4],[4,1],[19,5],[27,18],[6,19],[4,18],[-1,26],[6,37],[7,26],[49,32],[89,32],[59,14],[38,26],[22,25],[13,33],[4,56],[2,26],[1,3],[2,22],[5,38],[10,26],[14,17],[20,24],[16,64],[0,17],[0,15],[1,25],[-1,21],[0,33],[7,19],[10,22],[19,34],[10,17],[12,22],[9,14],[4,6],[35,51],[7,19],[8,18],[10,26],[11,26],[8,18],[9,21],[9,14],[13,19],[16,24],[7,14],[6,14],[11,21],[18,41],[5,19],[5,19],[3,14],[-1,20],[0,18],[-5,21],[-7,27],[-3,29],[-3,26],[4,20],[4,15],[8,16],[12,21],[15,17],[21,26],[9,13],[8,12],[10,15],[1,22],[0,19],[2,37],[2,21],[8,25],[10,16],[-3,15],[-13,16],[13,14],[20,15],[15,12],[16,15],[15,16],[5,15],[2,21],[4,16],[13,20],[7,13],[13,28],[2,14],[5,19],[17,23],[9,22],[8,18],[16,26],[18,30],[16,10],[15,10],[19,13],[11,13],[8,11]],[[39187,40169],[-7,-17],[-15,-9],[-23,-5],[-29,-4],[-22,-3],[-25,-3],[-16,-4],[-20,-8],[-33,-15],[-16,-12],[-20,-11],[-17,-3],[-17,5],[-19,1],[-17,7],[-17,3],[-17,0],[-14,-8],[-9,-12],[-12,-13],[-15,-7],[-13,-10],[-8,-14],[-11,-14],[-14,-15],[-12,-10],[-11,-11],[-12,-14],[-11,-14],[-5,-14],[7,-14],[-7,-19],[-19,-7],[-15,-9],[-15,-7],[-21,-7],[-28,-1],[-21,1],[-18,-8],[-9,-25],[1,-17],[-12,-13],[-14,-10],[-12,-9],[-21,2],[-9,15],[-7,14],[-12,10],[-17,5],[-19,2],[-17,-2],[-13,-11],[-9,-12],[-17,-14],[-16,-7],[-14,-8],[-18,-8],[-11,-12],[-23,-7],[-16,0],[-22,0],[-22,1],[-22,-14],[-22,-15],[-18,-10],[-18,-6],[-28,-8],[-17,-8],[-14,-10],[-20,-18],[-19,-15],[-8,-4],[-7,-5],[-20,-9],[-19,-5],[-25,-8],[-18,-7],[-14,-18],[-10,-13],[-18,-9],[-20,-5],[-21,-4],[-20,-10],[-15,-7],[-11,-12],[4,-14],[6,-16],[-1,-15],[-8,-14],[-9,-11],[-20,-4],[-26,-7],[-19,-3],[-21,-1],[-24,-1],[-18,-2],[-15,-9],[-17,-8],[-16,-3],[-17,-1],[-21,4],[-23,8],[-19,4],[-18,-5],[-13,-14],[-7,-16],[2,-14],[-8,-22],[-11,-16],[-13,-9],[-11,-13],[8,-13],[15,-7],[9,-12],[9,-13],[-2,-14],[-12,-17],[-14,-13],[-15,-7],[-15,-9],[-13,-9],[-14,-8],[-11,-12],[-9,-13],[-10,-11],[-12,-11],[-16,-6],[-18,-7],[-14,-12],[-9,-14],[-9,-12],[-12,-10],[-14,-9],[-17,-7],[-17,-1],[-18,1],[-21,0],[-23,-2],[-16,-3],[-20,-6],[-19,-4],[-18,0],[-21,-5],[-16,-6],[-21,-2],[-18,-8],[-11,-10],[-4,-15],[0,-16],[8,-14],[8,-15],[-12,-10],[-19,-10],[-18,-9],[-16,-6],[-22,-2],[-16,-2],[-17,-4],[-16,-7],[-18,-8],[-17,-6],[-18,-1],[-18,2],[-15,6],[-21,8],[-17,2],[-18,4],[-17,4],[-18,0],[-17,9],[-16,10],[-18,2],[-17,-4],[-17,1],[-18,3],[-13,10],[-8,15],[-9,13],[-10,12],[-23,12],[-19,6],[-26,5],[-22,4],[-18,4],[-21,3],[-19,-1],[-25,-1],[-18,1],[-19,0],[-26,-1],[-19,-6],[-11,-10],[-17,-8],[-18,2],[-19,3],[-19,0],[-21,-2],[-19,3],[-17,1],[-16,-3],[-21,-7],[-17,-4],[-17,-7],[-4,-15],[9,-13],[13,-10],[15,-12],[5,-16],[-10,-13],[-19,-6],[-17,-3],[-22,-3],[-18,-5],[-9,-13],[-4,-15],[-2,-18],[-5,-14],[-13,-11],[-16,-10],[-13,-11],[-19,-7],[-18,-3],[-18,5],[-13,12],[-7,16],[0,15],[-12,12],[-14,10],[-10,13],[-3,15],[-8,25],[-8,16],[-6,15],[-2,18],[1,15],[1,16],[-4,16],[-10,12],[-13,9],[-14,8],[4,14],[16,14],[13,11],[14,12],[17,11],[11,12],[-5,19],[-15,16],[-10,14],[-10,14],[-7,13],[-3,17],[-8,13],[-23,5],[-18,3],[-19,-6],[-15,-9],[-10,-11],[1,-14],[-14,-12],[-13,-9],[-16,-7],[-16,-5],[-17,-20],[-13,-11],[-17,-6],[-16,-3],[-17,-5],[-14,-10],[-19,4],[-7,14],[0,15],[3,14],[-4,14],[-5,17],[0,16],[6,18],[-1,18],[-12,14],[-9,14],[-6,15],[-17,15],[-13,17],[-11,12],[-20,12],[-19,6],[-17,4],[-16,0],[-16,1],[-17,5],[-18,8],[-15,9],[-22,9],[-19,4],[-18,3],[-20,1],[-17,3],[-18,6],[-14,9],[-33,5],[-18,3],[-14,8],[-16,0],[-20,-8],[-17,0],[-16,4],[-15,8],[-13,10],[-14,7],[-33,7],[-14,7],[-8,19],[-4,15],[-6,15],[-13,10],[-20,4],[-16,6],[-18,3],[-15,8],[-6,16],[-5,15],[-1,16],[-5,13],[-15,4],[-22,2],[-23,4],[-25,6],[-17,4],[-20,3],[-25,5],[-20,3],[-21,0],[-21,-4],[-15,-8],[-11,-12],[-8,-15],[-8,-17],[-12,-10],[-20,-10],[-23,-8],[-17,-10],[-17,-8],[-27,-4],[-18,-2],[-16,-5],[-19,-11],[-14,-11],[-13,-11],[-16,-12],[-15,-9],[-17,-8],[-15,-5],[-28,-7],[-22,-4],[-17,-2],[-17,-6],[-13,-10],[-15,-7],[-20,1],[-17,-1],[-16,-7],[-12,-9],[-11,-12],[-10,-13],[-11,-10],[-17,-9],[-16,-7],[-17,-6],[-14,-8],[-16,-8],[-18,-7],[-17,-9],[-17,-9],[-20,-13],[-16,-10],[-18,-9],[-14,-8],[-20,-10],[-18,-10],[-16,-9],[-15,-11],[-12,-18],[-9,-20],[-8,-16],[-8,-17],[-10,-14],[-11,-13],[-17,-15],[-13,-9],[-16,-10],[-17,-9],[-16,-3],[-16,-14],[-16,-8],[-28,-5],[-21,-9],[-14,-9],[-9,-12],[6,-14],[7,-14],[7,-15],[11,-17],[9,-14],[9,-15],[10,-12],[22,-8],[18,-8],[11,-13],[16,-5],[19,5],[17,4],[19,-3],[12,-10],[8,-15],[2,-15],[0,-20],[-3,-20],[-7,-17],[-14,-13],[-14,-11],[-15,-16],[-9,-23],[-7,-15],[-15,-16],[-18,-15],[-14,-10],[-14,-15],[-11,-13],[-12,-10],[-7,-15],[-3,-20],[-6,-13],[-8,-15],[-4,-14],[13,-8],[17,-6],[18,-3],[15,-7],[-13,-10],[-16,-6],[-22,-10],[-8,-15],[5,-16],[0,-16],[-9,-16],[-8,-15],[3,-14],[-6,-19],[-6,-16],[-10,-12],[-11,-18],[-8,-14],[5,-15],[4,-17],[1,-18],[-5,-18],[-10,-13],[-9,-12],[-20,-12],[-11,-19],[-5,-15],[-5,-15],[-14,-8],[-17,-10],[-17,-8],[-11,-12],[2,-15],[10,-12],[-5,-13],[-14,-9],[-16,-6],[-15,-8],[-14,-9],[-15,-5],[-16,-7],[-1,-15],[13,-13],[10,-12],[3,-14],[-3,-15],[-11,-15],[-7,-14],[-3,-20],[2,-22],[-2,-15],[-16,-6],[-18,0],[-5,-13],[2,-16],[-13,-13],[-17,1],[-20,1],[-20,-1],[-24,-8],[-26,-9],[-17,-6],[-19,1],[-18,7],[-18,-2],[-16,-12],[-5,-14],[2,-16],[-6,-14],[-1,-15],[-1,-16],[-8,-13],[-12,-13],[-15,-11],[-15,-8],[-20,2],[-17,2],[-24,-6],[-16,-6],[-17,-9],[-16,-13],[-16,-12],[-21,-8],[-18,-7],[-16,-12],[-13,-11],[-8,-13],[8,-16],[3,-19],[-6,-17],[-7,-14],[-12,-12],[-17,-9],[-17,0],[-17,3],[-25,9],[-15,7],[-14,10],[-10,13],[-19,16],[-20,7],[-25,8],[-16,-2],[-12,-10],[-7,-13],[-9,-15],[-14,-11],[-21,-3],[-21,7],[-12,9],[-9,14],[-11,14],[-15,6],[-18,-2],[-18,7],[-14,12],[-15,5],[-16,-3],[-17,-7],[-20,-13],[-10,-15],[-2,-16],[2,-18],[9,-13],[17,-15],[14,-9],[17,-13],[9,-13],[-2,-15],[-11,-13],[-15,-7],[-22,-9],[-20,-1],[-18,0],[-29,5],[-20,5],[-16,5],[-17,11],[-9,14],[-16,10],[-18,4],[-18,-3],[-17,-3],[-21,-1],[-16,-3],[-15,-7],[-20,-16],[-18,-9],[-18,0],[-19,0],[-19,-2],[-17,-6],[-18,-3],[-17,0],[-11,-10],[-24,-12],[-19,-7],[-17,-4],[-18,-4],[-23,1],[-17,-4],[-9,-14],[-3,-16],[-10,-15],[-5,-14],[4,-14],[-1,-15],[-7,-18],[-6,-16],[-15,-9],[-17,-2],[-19,-1],[-17,3],[-16,5],[-16,6],[-21,6],[-17,8],[-17,7],[-17,9],[-15,8],[-14,8],[-16,8],[-17,4],[-21,2],[-19,3],[-21,2],[-16,9],[-18,-6],[-13,-11],[-4,-14],[-3,-15],[-7,-14],[-8,-18],[-14,-10],[-2,-21],[5,-16],[-3,-15],[-15,-5],[-17,-5],[-18,-8],[-16,-9],[-16,-8],[-17,-11],[-15,-14],[-8,-13],[1,-17],[-10,-16],[-11,-10],[-21,-6],[-14,-7],[-7,-16],[-6,-20],[-2,-17],[2,-17],[-3,-14],[-14,-7],[-18,-7],[-20,-7],[-20,-6],[-15,-8],[-13,-18],[-11,-12],[-12,-11],[-12,-13],[-11,-11],[-12,-10],[10,-16],[8,-15],[-3,-15],[1,-19],[7,-14],[7,-13],[10,-12],[-8,-13],[4,-15],[5,-15],[18,-9],[15,-6],[-2,-14],[-16,-8],[5,-14],[8,-17],[-6,-13],[13,-12],[16,-5],[2,-14],[-10,-12],[-5,-15],[9,-18],[6,-18],[11,-14],[1,-16],[3,-15],[15,-10],[-14,-10],[-2,-14],[15,-10],[18,-9],[15,-7],[15,-7],[7,-14],[-5,-15],[-2,-15],[5,-14],[14,-9],[12,-11],[17,-5],[17,-2],[0,-15],[-3,-16],[-5,-15],[-2,-16],[-2,-14],[-5,-18],[-9,-13],[-14,-11],[-13,-8],[-11,-11],[-6,-14],[16,-9],[20,-3],[18,-3],[17,-6],[19,-6],[20,-7],[17,-8],[18,-1],[13,-9],[15,-7],[13,-8],[20,-8],[17,-8],[11,-12],[-5,-16],[-14,-10],[-10,-14],[1,-16],[0,-15],[9,-14],[6,-14],[14,-9],[19,0],[20,1],[17,-4],[19,-4],[20,4],[16,7],[18,2],[17,-4],[19,-2],[15,8],[11,11],[16,4],[21,-4],[12,-11],[15,-9],[17,-6],[19,-1],[23,1],[21,-1],[18,-3],[17,-4],[21,-4],[2,0],[18,0],[15,4],[15,8],[6,15],[-1,15],[20,8],[18,3],[16,-3],[20,-6],[14,-8],[5,-14],[8,-15],[4,-14],[2,-16],[5,-14],[16,-9],[-2,-15],[11,-14],[17,-3],[16,2],[17,7],[22,0],[14,-8],[8,-13],[-1,-14],[-8,-16],[-2,-17],[14,-15],[7,-14],[-12,-13],[-10,-13],[-6,-15],[5,-15],[10,-13],[14,-9],[5,-17],[-4,-14],[16,-16],[15,-6],[14,-9],[11,-14],[12,-14],[12,-12],[17,-8],[14,-8],[19,-7],[16,-8],[12,-10],[-1,-17],[-8,-16],[12,-11],[0,-16],[-13,-11],[-1,-14],[7,-15],[12,-11],[10,-12],[-5,-24],[-2,-17],[3,-19],[4,-17],[1,-14],[-13,-12],[-16,-1],[-16,-5],[-16,-8],[-20,-7],[-19,-12],[-12,-14],[-16,-6],[-7,-17],[4,-15],[7,-13],[11,-11],[17,-5],[17,-2],[20,0],[20,1],[17,-2],[15,-8],[24,-8],[15,-9],[13,-9],[-4,-20],[-4,-16],[-25,-14],[-18,-3],[-17,-2],[-20,-2],[-16,-4],[-23,-7],[-8,-20],[5,-16],[12,-17],[10,-11],[20,1],[18,0],[12,-10],[-17,-11],[-15,-6],[-10,-12],[-8,-16],[-6,-15],[-3,-31],[15,-32],[13,-23],[6,-27],[13,-13],[-4,-16],[7,-30],[-8,-14],[-13,-10],[-4,-27],[12,-11],[-1,-15],[4,-24],[7,-17],[4,-18],[0,-18],[-3,-43],[-18,-18],[-32,-26],[-10,-16],[-15,-17],[9,-18],[10,-20],[-25,-41],[-32,-15],[-20,-14],[-21,-6],[-27,-4],[-2,-23],[9,-14],[-15,-20],[-12,-13],[-1,-25],[-4,-23],[-36,-26],[-21,-14],[-20,-13],[-24,-15],[8,-61],[-9,-14],[5,-18],[4,-25],[5,-14],[-27,-17],[-18,-11],[-14,-8],[-17,-25],[-23,-21],[-27,-12],[-22,-19],[-28,-13],[-27,-14],[-9,-17],[-2,-21],[8,-35],[-13,-27],[-14,-13],[-28,-13],[-31,-29],[-40,-24],[-20,-13],[-17,-13],[-19,-15],[-19,-9],[-12,-10],[-10,-19],[-22,-21],[-35,-18],[-26,-6],[-21,-2],[-19,0],[-22,12],[-23,13],[-22,-14],[-6,-19],[-5,-20],[11,-21],[7,-23],[1,-32],[2,-32],[-24,-21],[-26,-8],[-20,-6],[-19,-6],[-29,-1],[-22,1],[-14,-12],[-9,-19],[-1,-17],[-5,-19]],[[31415,33475],[-50,10],[-31,12],[-28,13],[-24,11],[-15,6],[-21,23],[-27,3],[-16,12],[-42,1],[-25,9],[-33,7],[-21,3],[-32,9],[-23,2],[-24,4],[-15,8],[-27,20],[-14,9],[-62,8],[-37,1],[-21,1],[-32,-16],[-17,-13],[-32,-4],[-21,-13],[-20,-12],[-17,-8],[-23,-1],[-21,2],[-32,1],[-16,9],[-47,18],[-28,0],[-41,-19],[-28,-12],[-38,-10],[-15,-15],[1,-15],[11,-14],[89,-66],[13,-17],[5,-15],[-19,-18],[-13,-9],[-42,-11],[-21,-6],[-14,-16],[3,-28],[10,-14],[31,-7],[16,-3],[29,-22],[6,-16],[9,-24],[-1,-22],[-6,-29],[3,-26],[18,-48],[6,-16],[-18,-6],[-21,-7],[-16,-7],[-25,-15],[10,-28],[4,-21],[8,-13],[19,-11],[-15,-23],[-26,-16],[-20,-3],[-33,-10],[-18,-6],[-35,-12],[-15,-12],[-18,-10],[-26,-8],[-22,-8],[-19,-7],[-22,-8],[-10,-17],[-36,-12],[-29,0],[-40,-4],[-19,-12],[-12,-22],[-19,-18],[-49,-18],[-41,-5],[-24,-6],[-13,-19],[-8,-13],[-14,-11],[1,-17],[-21,-16],[23,-18],[2,-24],[-10,-31],[1,-26],[8,-15],[-22,-14],[-13,-18],[-7,-21],[-9,-43],[-10,-16],[-19,-13],[-14,-8],[-20,-3],[-27,10],[-15,-9],[-15,-9],[-7,-14],[-28,9],[-19,-3],[-6,-19],[5,-21],[2,-15],[1,-18],[-4,-19],[-25,-8],[-27,1],[-20,6],[-8,25],[-12,24],[-12,10],[-18,6],[-25,7],[-17,13],[-40,15],[-21,5],[-37,2],[-21,-8],[-46,-7],[-30,6],[-36,3],[-10,-28],[-12,-19],[-14,-16],[-24,-14],[-55,-13],[-24,-6],[-18,-6],[-22,-14],[-16,-18],[-20,-9],[-17,-7],[-20,-8],[-17,-7],[-3,-25],[13,-17],[1,-19],[-7,-20],[-19,-16],[-25,-5],[-16,5],[-17,2],[-32,-6],[-23,-14],[-24,-14],[-21,-7],[-20,-4],[-17,-12],[-16,-14],[-22,-5],[-24,-4],[-16,-3],[-20,-4],[-21,2],[-27,2],[-25,-7],[-23,-10],[-18,-4],[-20,6],[-18,4],[-17,-10],[-2,-15],[9,-15],[-10,-12],[-17,7],[-21,5],[-32,12],[-25,7],[-21,4],[-25,3],[-16,0],[-28,9],[-17,-3],[-16,-17],[-10,-16],[-18,-10],[-18,-4],[-17,-4],[-11,-17],[-14,-20],[-15,-11],[-17,-7],[-13,-10],[-19,-3],[-15,7],[-10,15],[-25,5],[-20,-2],[-15,-4],[-20,2],[-8,13],[-14,9],[-7,13],[-9,23],[1,19],[-1,15],[-13,22],[-16,8],[-32,3],[-17,-2],[-26,-5],[-33,-2],[-27,-4],[-19,1],[-14,-9],[-5,-24],[-12,-17],[-21,-6],[-19,-13],[5,-17],[-8,-14],[-20,0],[-39,0],[-182,1],[-249,1],[-47,0],[-56,-1],[-124,-2],[-20,0],[-52,0],[-44,0],[-109,0],[-147,1],[-158,0],[-445,0],[-148,4],[-55,0],[-6,0],[-23,0],[-16,0],[-19,0],[-138,0],[-119,0],[-405,-1],[-64,0],[-29,0],[-28,0],[-42,0],[-840,0],[-99,3],[-187,0],[-190,0],[-31,0],[-314,1],[-46,0],[-7,0],[-18,0],[-426,0],[-254,1],[-92,0],[-17,0],[-124,-2],[-77,-1],[-101,-1],[-128,-2],[-212,2],[-151,2],[-20,0],[-27,0],[-27,0],[-320,1],[-104,0],[-356,0],[-504,1],[-19,0],[-51,0],[-20,0],[-30,1],[-120,0],[-44,0],[-19,-1],[-56,0],[-152,2],[-204,1],[-118,4],[-47,0],[-132,8],[-29,0],[-85,0],[-66,0],[-33,0],[-43,-1],[-69,0],[-235,-1],[-94,-1],[-108,-1],[-90,1],[-1,0],[-62,0],[-8,0],[-15,-8],[1,-21],[0,-15],[-2,-19],[3,-19],[-1,-14],[2,-21],[-6,-34],[-17,-12],[-15,-17],[-12,-12],[-5,-18],[4,-16],[-3,-14],[-4,-16],[-3,-16],[-8,-13],[4,-15],[4,-26],[6,-19],[3,-15],[-4,-16],[-18,-29],[-11,-17],[-15,-19],[6,-17],[-13,-26],[-13,-16],[-14,-23],[-12,-12],[-9,-13],[-9,-14],[7,-16],[23,-12],[-9,-22],[-28,-34],[-13,-15],[4,-28],[-3,-23],[-4,-16],[-2,-14],[-12,-19],[-13,-11],[5,-16],[9,-13],[14,-16],[8,-17],[-11,-12],[-31,-6],[-20,-8],[-17,-13],[-6,-15],[-5,-26],[-7,-18],[-2,-14],[-1,-17],[3,-15],[6,-17],[22,-14],[14,-8],[2,-20],[-3,-20],[0,-17],[7,-23],[-4,-15],[-1,-19],[-1,-18],[5,-18],[16,-6],[16,-4],[7,-17],[5,-17],[24,-12],[22,-19],[-7,-20],[-21,-6],[-80,-1],[-123,0],[-433,-1],[-17,0],[-31,0],[1,18],[-1,16],[2,19],[-68,-1],[-20,0],[-60,0],[-36,0],[-134,0],[-238,1],[-51,0],[-48,0],[-49,0],[-135,0],[-73,0]],[[16611,30791],[-2,70],[-4,137],[-1,16],[0,22],[-1,95],[0,36],[-1,18],[0,16],[0,1],[-2,118],[1,44],[1,55],[3,125],[0,33],[-1,15],[-7,18],[0,41],[0,17],[0,15],[0,16],[0,38],[1,27],[1,29],[-1,15],[0,47],[1,124],[1,55],[1,30],[2,87],[-4,46],[0,86],[0,60],[0,19],[0,20],[0,64],[0,175],[1,17],[0,114],[1,95],[1,23],[0,20],[0,34],[0,84],[0,56],[7,134],[3,61],[46,-1],[42,1],[23,0],[41,-1],[23,1],[22,-1],[110,1],[32,2],[51,0],[17,1],[60,0],[35,0],[30,0],[97,0],[65,-1],[67,-1],[64,0],[91,0],[37,0],[12,46],[2,167],[-2,25],[0,44],[0,35],[0,222],[-1,128],[-1,15],[-4,39],[1,69],[0,82],[0,5],[0,32],[0,92],[0,92],[0,165],[0,97],[1,182],[0,63],[0,34],[0,24],[0,45],[1,341],[0,68],[0,28],[1,16],[0,3],[0,115],[0,161],[0,56],[-76,1]],[[63255,31957],[-64,0],[-435,1],[-14,0],[-9,0],[-128,0],[-83,0],[-57,0],[-18,0],[-87,0],[-259,1],[-217,0],[-178,1],[0,-157],[1,-187],[0,-22],[0,-67],[0,-38],[0,-102],[0,-72],[0,-3],[0,-34],[0,-31],[1,-245],[0,-123],[1,-241],[0,-53],[0,-102],[1,-68],[0,-133],[0,-31],[0,-48],[0,-73],[0,-10],[1,-220],[0,-112],[0,-78],[1,-78],[0,-24],[-1,-10],[-1,-25],[0,-25],[0,-15],[2,-23],[0,-34],[-263,0],[-29,0],[-313,0],[-64,0],[-2,-57],[-2,-104],[-2,-73],[0,-15],[-4,-145],[5,-38],[8,-26],[12,-31],[9,-21],[6,-15],[5,-14],[-15,-9],[3,-21],[7,-16],[7,-18],[-4,-16],[8,-19],[2,-16],[0,-14],[3,-15],[1,-21],[1,-16],[6,-22],[-2,-21],[12,-12],[10,-12],[6,-21],[8,-14],[9,-16],[2,-5],[2,-9],[-10,-14],[-15,-12],[-14,-11],[-18,-15],[-2,-16],[4,-15],[-4,-17],[8,-16],[8,-16],[16,-10],[16,-9],[14,-11],[15,-15],[20,-16],[15,-8],[19,-15],[13,-10],[3,-6],[5,-14],[-4,-8],[-3,-8],[-8,-14],[-3,-18],[3,-17],[-3,-16],[12,-13],[2,-14],[13,-11],[1,-19],[-3,-16],[-2,-17],[8,-15],[-9,-13],[-11,-12],[0,-16],[2,-14],[-11,-13],[2,-15],[5,-13],[9,-13],[4,-16],[14,-12],[1,-26],[6,-19],[-3,-26],[-6,-16],[0,-15],[14,-10],[-8,-14],[-20,-4],[-10,-12],[2,-19],[9,-16],[8,-18],[6,-16],[7,-17],[2,-18],[2,-18],[4,-17],[-13,-10],[-11,-11],[-13,-9],[-6,-14],[-8,-14],[-7,-13],[5,-25],[9,-17],[8,-12],[0,-16],[2,-15],[-3,-16],[12,-15],[10,-19],[-6,-14],[-6,-14],[3,-15],[4,-14],[-5,-16],[1,-16],[4,-15],[-3,-16],[-6,-15],[-1,-15],[-10,-13],[-2,-15],[-11,-12],[-15,-17],[-1,-16],[-14,-10],[-9,-13],[-2,-15],[-9,-15],[-14,-12],[-5,-16],[-7,-13],[-9,-15],[-8,-12],[4,-16],[-1,-1],[-15,-7],[-9,-12],[-11,-15],[-9,-13],[-6,-17],[-6,-13],[-9,-13],[3,-15],[3,-15],[0,-17],[-8,-14],[-9,-14],[-8,-17],[-4,-14],[-3,-16],[-5,-9],[-4,-7],[2,-14],[4,-17],[12,-19],[5,-14],[8,-16],[0,-16],[7,-22],[20,-15],[15,-10],[30,-10],[34,-7],[26,-7],[22,-8],[20,-7],[22,-3],[20,-4],[21,-8],[33,-9],[21,-8],[26,-11],[19,-5],[17,-3],[24,1],[21,-3],[21,-6],[24,-9],[20,-6],[15,-8],[14,-9],[20,-13],[23,-17],[17,-12],[15,-6],[12,-11],[16,-1],[23,7],[18,0],[19,-2],[18,-3],[20,0],[19,0],[19,1],[17,-10],[20,-14],[22,-17],[25,-17],[24,-22],[11,-18],[14,-21],[26,-20],[17,-10],[13,-11],[8,-14],[14,-11],[14,-7],[-3,-15],[10,-18],[2,-14],[11,-11],[-1,-15],[9,-14],[16,-14],[15,-6],[16,4],[18,-4],[14,-10],[-9,-13],[-7,-16],[0,-14],[7,-16],[15,-11],[19,-6],[16,-6],[9,-13],[-1,-15],[4,-16],[13,-9],[10,-13],[-2,-16],[12,-10],[-11,-11],[15,-10],[1,-14],[14,-8],[17,-1],[7,-14],[13,-10],[16,3],[17,3],[12,11],[13,-9],[17,5],[2,-16],[12,-10],[6,-13],[12,11],[22,-3],[21,2],[7,-14],[-6,-14],[13,-10],[-9,-12],[-2,-16],[17,-7],[16,3],[-9,-13],[16,-3],[14,-7],[17,2],[6,-14],[2,-15],[-17,-5],[-9,-13],[-12,-11],[18,-5],[18,-12],[0,-15],[2,-16],[12,-11],[16,-8],[-15,-6],[16,-7],[20,-1],[-14,-17],[-2,-16],[2,-15],[7,-15],[17,-8],[18,-8],[14,-7],[9,-13],[-1,-16],[-18,-4],[-7,-13],[-10,-13],[-16,-3],[-3,-1],[-6,2],[-11,3],[-3,1],[-13,0],[-2,16],[10,-3],[3,-1],[3,-1],[2,7],[2,8],[16,-4],[17,6],[-10,11],[-17,4],[6,14],[-10,9],[-1,2],[-6,0],[-11,-1],[-9,5],[-6,4],[-9,0],[-9,0],[-10,5],[-6,3],[-4,0],[-17,-1],[-6,15],[-8,13],[2,2],[10,8],[16,5],[-14,8],[-16,-7],[-4,-4],[-6,-7],[-2,16],[0,1],[-1,0],[-16,-2],[-17,1],[12,10],[-2,16],[5,16],[-15,7],[-16,5],[-13,16],[-13,2],[-4,1],[-3,-1],[-12,-7],[-14,-7],[-17,2],[-13,5],[-2,1],[-19,-2],[-17,-3],[-19,-6],[-14,0],[-6,0],[-18,2],[-18,1],[-18,7],[-2,0],[-9,2],[-7,1],[0,-1],[-5,-9],[-2,-4],[-17,-3],[-17,15],[-16,0],[-17,-3],[-16,5],[-15,5],[-17,0],[-12,10],[-16,9],[-11,10],[-8,18],[-24,5],[-17,1],[-22,0],[-16,7],[-9,3],[-8,2],[-2,-1],[-13,-6],[-18,1],[-11,10],[-16,6],[-2,8],[-1,6],[-6,0],[-11,-1],[-2,10],[-1,5],[-8,1],[-7,1],[-3,0],[-18,-4],[-16,-3],[-2,-2],[-10,-9],[-15,-7],[-17,-5],[-19,-2],[-22,-5],[-22,-2],[-14,-6],[-17,1],[-12,-11],[-18,0],[-14,-8],[-4,-4],[-8,-5],[-16,-2],[-2,0],[-22,-4],[-22,0],[-8,-1],[-11,-2],[-4,1],[-13,0],[-4,-3],[-10,-6],[-17,-3],[-11,4],[-5,1],[-20,-2],[-17,-7],[-16,-5],[-6,-7],[-5,-5],[-12,-1],[-16,-1],[-12,-10],[-3,-16],[-19,-13],[0,-16],[4,-15],[7,-11],[3,-3],[-4,-14],[-1,-1],[-11,-10],[-3,-15],[-1,-15],[-3,-15],[-8,-13],[8,-13],[-9,-13],[-5,-15],[1,-15],[-4,-14],[-15,-6],[4,-16],[3,-15],[16,-10],[3,-20],[3,-17],[10,-12],[0,-1],[-13,-12],[-6,-15],[-6,-17],[-9,-12],[10,-11],[-3,-15],[-10,-12],[-5,-16],[-4,-15],[-4,-18],[-16,-8],[-18,-14],[-12,-11],[-10,-11],[-11,-12],[-8,-13],[-8,-13],[-10,-11],[-12,-12],[-18,0],[-13,-14],[-16,-8],[-12,-12],[-16,-4],[-1,-15],[-11,-12],[-17,-7],[-17,-3],[-11,-11],[-18,-2],[-17,-10],[-6,-15],[-13,-10],[-15,-9],[-17,-10],[-20,-10],[-9,-12],[-14,-8],[-16,-8],[-10,-12],[-14,-11],[-15,-7],[-16,-6],[-17,-10],[-10,-10],[-2,-2],[-6,-2],[-11,-2],[-11,-5],[-3,-2],[-4,0],[-14,-2],[-16,-1],[-17,-8],[-13,-11],[-12,-10],[-12,-13],[-13,-9],[-8,-13],[-1,-15],[14,-13],[-16,-6],[-5,-19],[-4,-14],[-14,-9],[-2,-15],[-11,-7],[-3,-1],[-21,-3],[-16,1],[-1,1],[-18,2],[-16,-3],[-8,-2],[-9,-3],[-17,-2],[-15,-8],[-14,-6],[-17,-1],[-18,6],[-18,4],[-19,1],[-17,0],[-21,-1],[-15,2],[-4,1],[-18,2],[-18,-7],[-15,-8],[-18,-4],[-18,-3],[-17,-5],[-13,-10],[-16,-7],[-18,-11],[-15,-8],[-10,-12],[-12,-9],[-5,-5],[-8,-9],[-2,-10],[-1,-7],[-22,-7],[-22,-6],[-14,-8],[-7,-15],[-7,-14],[1,-15],[-13,-11],[1,-14],[1,-4],[-12,-10],[-4,-1],[-18,-6],[-14,-9],[-14,-10],[-15,-13],[-3,-2],[-14,-14],[-19,3],[-17,0],[-14,8],[-13,8],[-1,0],[-2,0],[-13,-6],[-19,-4],[-22,-3],[-19,3],[-7,2],[-9,2],[-17,2],[-1,0],[-16,-1],[-11,-10],[-1,-1],[-5,-3],[-3,-3],[-3,-2],[-2,-2],[-9,-12],[-4,-1],[-14,-4],[-7,-14],[-9,-14],[-16,-6],[-18,-2],[-10,-12],[-10,-15],[-6,-14],[-14,-10],[-20,1],[-16,4],[-18,-3],[-6,-13],[-19,-10],[-16,-8],[-3,-1],[-1,-1],[-22,-3],[-18,-5],[-9,-15],[-7,-6],[-7,-6],[-13,-12],[-8,-2],[-10,-3],[-12,-10],[-16,-6],[-10,-15],[-7,-3],[-8,-3],[-10,-5],[-8,-4],[-5,-9],[-2,-5],[-16,-4],[-18,-10],[-10,0],[-13,-1],[-17,-8],[-12,-11],[-1,0],[-11,-8],[-1,-1],[-14,-11],[-6,-14],[-14,-10],[-15,-4],[-8,-2],[-17,-6],[-18,-4],[-18,-1],[-17,-4],[-19,-3],[-16,0],[-20,-5],[-20,2],[-7,0],[-10,0],[-21,4],[-17,-3],[-17,-4],[-11,3],[-8,2],[-19,-5],[-14,-11],[-19,-5],[-15,-6],[-14,-12],[-16,-12],[-17,-6],[-16,4],[-19,-9],[-18,-3],[-9,-3],[-18,-7],[-19,0],[-4,0],[-18,-1],[-19,-4],[-16,-5],[-24,-10],[-17,-6],[-23,-10],[-21,-7],[-7,-3],[-8,-2],[-17,4],[-1,1],[-16,-3],[-16,-5],[-18,-9],[-3,-3],[-7,-10],[-17,-1],[-18,-5],[-6,-1],[-21,-4],[-15,-10],[-15,-6],[-18,-3],[-15,-9],[-14,-8],[-17,-4],[-19,-14],[-24,-6],[-15,-11],[-20,-6],[-11,-11],[-1,-2],[-15,-2],[-7,-1],[-28,-6],[-10,-6],[-7,-4],[-15,-5],[-5,-1],[-16,-2],[-20,-9],[-15,-12],[-9,-6],[-5,-3],[-8,0],[-11,0],[-21,4],[-22,0],[-19,-1],[-14,-8],[-16,-4],[-18,-5],[-11,-13],[-6,-5],[-9,-8],[-12,-1],[-16,-1],[-19,-2],[-21,-8],[-14,-12],[-17,0],[-18,-8],[-18,-12],[-16,-15],[-16,-4],[-17,-12],[-17,6],[-16,-3],[-18,-4],[-2,-1],[-17,1],[-12,-11],[-18,7],[-27,-11],[-15,-1],[-2,0],[-14,-10],[-20,-7],[-15,-7],[-17,-4],[-5,-1],[-6,0],[-11,1],[-15,-8],[-13,-14],[-20,3],[0,-15],[-17,-7],[-13,-9],[-13,-12],[-13,-10],[-22,-10],[-7,-13],[-17,5],[-15,-11],[-12,-15],[-19,-1],[-13,-5],[-3,-2],[-4,1],[-16,1],[-14,-8],[-15,-12],[-15,-8],[-17,-8],[-11,-11],[-10,-12],[-9,-13],[-12,-17],[-9,-12],[-11,-13],[-14,-10],[-15,-11],[-14,-14],[-22,-13],[-26,-13],[-13,-16],[-13,-13],[-12,-12],[-11,-12],[-22,-8],[-30,-8],[-24,-19],[-16,-11],[-15,-6],[-35,-12],[-19,-5],[-16,-5],[-14,-10],[-20,-9],[-18,-10],[-8,-3],[-7,-4],[-21,-5],[-2,0],[-16,2],[-11,-2],[-5,0],[-27,-1],[-6,0],[-12,1],[-19,-4],[-28,-3],[-14,-6],[-11,-4],[-25,-4],[-10,1],[-22,4],[-17,-2],[-20,-2],[-21,1],[-19,3],[-21,2],[-6,1],[-11,3],[-7,2],[-17,3],[-32,-7],[-11,-12],[-20,-5],[-16,-5],[-19,-7],[-18,-9],[-18,-3],[-10,-11],[-15,-8],[-13,-5],[-3,-1],[-18,1],[-10,-3],[-16,-5],[-16,-11],[-9,-16],[-5,-15],[4,-18],[0,-16],[-3,-18],[-9,-25],[-4,-16],[-11,-12],[-10,-12],[-22,-9],[-2,0],[-14,-2],[-3,-1],[-1,0],[-13,-5],[-14,-13],[-14,-12],[-8,-13],[-4,-14],[-15,-19],[9,-17],[5,-16],[-12,-12],[-17,-13],[-19,-11],[-22,-18],[-12,-10],[-16,-10],[-22,-8],[-14,-12],[-11,-12],[-10,-15],[-14,-10],[-14,-7],[-8,-14],[-2,-15],[-9,-15],[-8,-15],[-7,-14],[-12,-12],[-3,-23],[-7,-21],[-3,-17],[3,-21],[-1,-19],[-17,-11],[-17,-2],[-24,3],[-19,-4],[-14,-8],[-19,-11],[-13,-14],[-12,-12],[-13,-9],[-20,-8],[-17,-5],[-25,-27],[-10,-27],[-2,-34]],[[55555,22478],[-40,9],[-52,18],[-38,14],[-19,20],[-5,29],[18,27],[-25,24],[-14,31],[5,28],[-23,11],[-9,31],[-16,40],[-7,31],[17,25],[0,26],[-2,26],[-24,7],[-17,14],[6,26],[-18,23],[-15,14],[-42,13],[-24,13],[-24,16],[-24,5],[-22,-1],[-28,-3],[-36,-5],[-27,-7],[-58,5],[-45,8],[-15,19],[-2,29],[8,27],[3,23],[-17,16],[-25,21],[-27,34],[3,15],[-10,14],[-21,17],[-18,24],[-3,27],[-19,16],[-35,8],[-31,10],[-31,10],[-23,30],[-24,25],[-29,29],[-27,13],[-28,1],[-22,16],[-21,16],[-18,23],[-4,22],[6,25],[8,22],[0,16],[-2,15],[-33,11],[-34,5],[-17,5],[-22,6],[-39,26],[-23,14],[-33,11],[-23,10],[-29,-5],[-29,1],[-28,-3],[-28,-21],[-28,1],[-22,5],[-19,13],[-58,-2],[-21,-5],[-16,-12],[-24,-6],[-52,9],[-57,15],[-53,1],[-27,25],[-24,38],[-16,48],[7,41],[11,37],[-17,23],[-24,23],[-18,42],[-12,31],[-56,25],[-57,18],[-135,28],[-57,26],[-77,42],[-63,56],[-52,23],[-36,25],[-31,49],[-22,28],[-54,21],[-17,32],[-44,29],[-56,36],[-91,27],[-79,18],[-64,24],[-30,38],[-31,86],[-36,56],[-43,35],[-11,14],[-58,34],[17,33],[4,29],[9,37],[-13,33],[2,29],[-35,20],[-16,6],[-2,19],[-14,15],[-23,18],[-33,8],[-28,4],[-31,-6],[1,22],[13,23],[2,21],[-25,16],[6,19],[18,24],[27,18],[12,17],[-1,18],[-44,13],[-32,6],[-16,9],[-2,4],[-8,15],[-10,27],[-20,13],[-19,10],[-14,26],[-11,19],[-25,4],[-20,7],[-18,11],[-22,-4],[-27,1],[-23,1],[-22,-1],[-35,4],[-29,5],[-19,7],[-10,16],[-15,15],[-23,12],[-22,14],[-24,9],[-69,30],[-23,25],[-35,39],[-43,-43],[-45,-64],[-61,-69],[-77,-58],[-41,-31],[-34,-27],[-63,-44],[-85,-78],[-17,-14],[-118,-93],[-32,-26],[-34,-27],[-77,-16],[-119,0],[-77,7],[-99,18],[-32,9],[-73,21],[-114,61],[-73,60],[-188,132],[-38,19],[-50,67],[-63,84],[-84,45],[-49,7],[-32,3],[-38,6],[-33,10],[-68,4],[-36,-8],[-29,-11],[-23,-8],[-24,10],[-15,7],[-22,9],[-24,4],[-19,29],[-19,10],[-30,7],[-30,7],[3,19],[-7,20],[-16,14],[-14,16],[-12,11],[-25,4],[-23,16],[-25,19],[-19,13],[-44,8],[-21,-9],[-41,-8],[-34,1],[-20,2],[-20,5],[-21,-2],[-28,3],[-29,3],[-23,8],[-20,10],[-30,10],[-20,10],[-16,6],[-19,10],[-15,10],[-9,28],[-8,17],[-22,8],[-25,0],[-22,3],[-26,5],[-21,8],[-17,4],[-37,15],[-18,8],[-17,12],[-17,11],[-17,-3],[-21,20],[-9,14],[-20,8],[-20,11],[-28,3],[-24,-1],[-38,1],[-17,8],[-19,7],[-22,4],[-15,6],[-24,7],[-13,10],[-13,13],[-29,5],[-17,0],[-21,8],[-11,11],[-7,16],[-13,14],[-15,6],[-28,13],[-12,13],[-14,19],[-10,13],[-19,20],[-16,11],[-19,4],[-21,-3],[-18,-9],[-24,6],[-15,7],[-28,15],[-22,13],[-14,11],[-14,16],[-21,17],[-15,9],[-18,14],[-20,8],[-12,18],[-13,14],[-20,-2],[-24,-6],[-23,3],[-34,10],[-18,4],[-22,19],[-5,15],[-15,14],[2,15],[-6,18],[-16,28],[-5,17],[-2,27],[-3,21],[1,14],[9,25],[13,16],[11,22],[12,18],[7,16],[-6,16],[-14,15],[-18,13],[-11,15],[-9,13],[-8,16],[-7,14],[-23,15],[-15,20],[5,23],[2,21],[0,22],[5,15],[7,19],[-2,18],[3,23],[-3,14],[-1,18],[4,15],[15,17],[11,13],[18,21],[15,13],[-19,15],[-33,22],[-30,20],[-30,26],[-24,1],[-15,6],[-53,25],[-32,14],[-31,-7],[-28,-1],[-18,0],[-16,3],[-21,-10],[-31,7],[-29,-4],[-24,-6],[-23,-9],[-23,-3],[-50,0],[-16,12],[-16,-2],[-18,23],[-13,9],[-21,-4],[-17,-8],[-27,-6],[-26,-7],[-31,-6],[-26,4],[-22,16],[-15,-7],[-33,-6],[-38,5],[-20,7],[-41,12],[-16,10],[-22,5],[-23,0],[-29,6],[-18,0],[-31,9],[-7,-18],[-10,-16],[-21,-16],[-13,-12],[-21,-4],[-17,-3],[-23,-2],[-26,-7],[-3,-30],[1,-25],[2,-16],[-8,-23],[-30,-30],[-26,-10],[-11,-14],[-17,-1],[-19,-1],[-16,5],[-19,5],[-15,7],[-24,7],[-23,10],[-24,14],[-44,14],[-25,15],[-14,12],[-12,14],[-19,5],[-19,4],[-21,-2],[-33,1],[-32,10],[-32,8],[-24,7],[-27,10],[-38,-5],[-18,3],[-19,12],[-14,14],[-11,12],[-39,23],[-20,7],[-28,12],[-16,15],[-17,5],[-24,-1],[-25,0],[-25,11],[-18,4],[-24,12],[-39,22],[-19,7],[-21,2],[-20,-6],[-28,-7],[-27,-13],[-20,-5],[-18,-7],[-27,-7],[-18,-6],[-21,0],[-18,0],[-27,0],[-29,-1],[-23,-1],[-24,3],[-18,3],[-26,9],[-24,6],[-16,5],[-17,4],[-21,5],[-22,13],[-29,1],[-16,5],[-25,3],[-13,17],[-19,4],[-21,-5],[-16,-1],[-34,-8],[-28,-6],[-20,-1],[-26,2],[-17,-2],[-23,1],[-28,6],[-21,2],[-24,9],[-17,1],[-20,-2],[-20,1],[-25,0],[-32,-2],[-17,-3],[-16,-5],[-24,1],[-19,4],[-16,-3],[-22,5],[-14,7],[-20,9],[-16,5],[-19,16],[-25,19],[-9,18],[-15,9],[-31,9],[-17,17],[-16,-4],[-18,-4],[-22,-9],[-15,-7],[-16,-8],[-20,-5],[-19,4],[-21,2],[-25,-2],[-30,-16],[-23,-10],[-18,-2],[-41,-4],[-17,-6],[-20,-2],[-23,-3],[-22,3],[-18,-11],[-25,-8],[-26,-7],[-11,-15],[-25,-12],[-12,-20],[8,-18],[10,-13],[14,-10],[16,-4],[24,-8],[16,-20],[-1,-25],[2,-23],[-25,-18],[-15,-9],[-22,-14],[-12,-12],[-7,-22],[-13,-12],[-19,-18],[-15,-17],[-20,-19],[-2,-18],[-2,-18],[-12,-22],[6,-13],[21,-27],[18,-11],[9,-35],[27,-21],[18,-9],[-19,-19],[-10,-15],[0,-17],[5,-14],[-13,-20],[-11,-17],[-1,-23],[-35,-14],[-17,-2],[-15,-10],[-17,-16],[-16,-19],[-14,-18],[-31,-16],[-31,-20],[-12,-10],[-39,0],[-34,-1],[-29,4],[-25,4],[-24,-3],[-16,-7],[-26,1],[-26,11],[-20,-1],[-21,-1],[-38,0],[-26,5],[-18,3],[-15,-8],[-35,-9],[-26,-4],[-39,-2],[-20,-17],[-26,3],[-30,0],[-30,7],[-35,14],[-41,5],[-24,3],[-18,14],[-7,15],[-35,6],[-33,11],[-21,13],[-23,-1],[-30,4],[-20,4],[-19,6],[-1,16],[12,13],[4,14],[0,26],[-11,12],[-22,16],[-19,18],[-18,17],[27,35],[2,15],[4,15],[10,19],[-34,7],[-12,14],[-6,13],[22,17],[20,14],[6,17],[-6,36],[-13,9],[-15,8],[-28,15],[-24,13],[-35,5],[-18,7],[-19,13],[-14,8],[-22,22],[-15,12],[-20,20],[-9,27],[-20,9],[-13,16],[-9,13],[-19,3],[-21,5],[-21,5],[-10,18],[-12,19],[-10,19],[-21,5],[-22,8],[-32,10],[-23,3],[-25,10],[-22,13],[-21,3],[-30,1],[-25,12],[-18,-1],[-17,-2],[-17,-1],[-24,3],[-21,6],[-20,12],[-7,15],[-17,8],[-19,9],[-28,5],[-28,9],[-14,17],[-5,14],[2,14],[2,19],[-21,20],[-17,11],[-16,6],[-19,-3],[-25,10],[-20,10],[-18,15],[-11,16],[-15,17],[-21,13],[-15,5],[-17,7],[-20,0],[-44,-1],[-16,-11],[-24,-8],[-23,-3],[-17,16],[-17,30],[-13,19],[-11,21],[-13,18],[-20,6],[-19,-1],[-17,3],[-20,0],[-21,5],[-14,8],[-18,-1],[-26,-15],[-18,-5],[-32,13],[-8,15],[-13,24],[-35,7],[-24,2],[-22,10],[-14,7],[-23,10],[-289,0],[-18,0],[-52,1],[-30,0],[-39,0],[-86,-1],[-33,0],[-20,0],[-53,0],[-24,0],[-116,0],[-209,0],[-157,-1],[-329,1],[-194,0],[-186,1],[-64,0],[-183,0],[-14,0],[-44,0],[0,109],[0,24],[0,90],[0,67],[0,13],[0,59],[1,104],[-1,53],[1,22],[0,21],[4,78],[-3,45],[-1,21],[0,22],[0,43],[0,7],[0,152],[-72,0],[-2,0],[-27,0],[-78,0],[-92,0],[-39,0],[-66,0],[-13,0],[-111,0],[-60,0],[-403,-1],[-40,-14],[-35,-7],[-22,-2],[-21,-6],[-22,-11],[-29,-14],[-18,3],[-19,-3],[-22,0],[-23,-13],[-19,-8],[-28,-18],[-9,-13],[-30,1],[-23,1],[-24,-14],[-24,-4],[-26,-7],[-22,-9],[-36,-7],[-16,-9],[-27,-21],[-17,-14],[-24,-10],[-17,-12],[-21,-2],[-19,-9],[-32,-6],[-21,-3],[-37,-15],[-21,-5],[-15,-8],[-12,-17],[-23,-29],[-15,-7],[-26,-14],[-21,-6],[-38,-6],[-18,-2],[-24,-10],[-13,-16],[-13,-14],[-12,-12],[-7,-20],[-7,-17],[-10,-24],[-14,-15],[-7,-21],[-4,-16],[-20,-35],[-14,-19],[-15,-14],[-28,-18],[-15,-14],[-21,-12],[-22,-9],[-25,-6],[-19,6],[-27,-26],[-31,-3],[-20,3],[-24,3],[-25,4],[-24,-11],[-14,-14],[-11,-10],[-12,-16],[-16,-4],[-20,-20],[-17,-12],[-16,-12],[-15,-15],[-11,-16],[-13,-10],[-17,-5],[-22,-3],[-17,1],[-24,10]],[[36629,27748],[-23,39],[-17,10],[-15,10],[-16,18],[-15,21],[-14,16],[-23,10],[-24,-3],[-17,-1],[-26,-4],[-20,-2],[-22,9],[-22,8],[-13,20],[-17,4],[-31,11]],[[36314,27914],[2,17],[-7,24],[23,19],[23,11],[13,26],[6,22],[3,23],[14,17],[15,18],[20,20],[18,19],[18,16],[19,29],[13,17],[24,18],[21,2],[18,8],[19,6],[23,5],[23,-5],[19,-1],[20,17],[1,34],[-2,15],[2,18],[6,15],[8,17],[15,22],[-9,18],[-20,9],[-13,9],[-18,1],[-21,0],[-25,1],[-31,7],[-25,10],[-24,9],[-26,17],[-55,24],[-22,12],[-13,10],[-9,16],[-9,13],[11,14],[15,16],[8,25],[19,28],[20,22],[5,9],[3,5],[-12,12],[-15,15],[-17,14],[-9,13],[13,12],[15,11],[16,13],[-4,16],[5,30],[5,15],[-21,-6],[-21,-3],[-20,-2],[-19,3],[-20,4],[-40,2],[-23,7],[-12,10],[-38,32],[-2,19],[7,20],[-18,17],[-13,16],[-13,17],[-22,-1],[-18,-6],[-20,-23],[-43,-11],[-2,-20],[-16,-19],[-32,-19],[-51,1],[-37,2],[-35,-4],[-40,-15],[-9,12],[-11,24],[-13,17],[-29,10],[-22,-7],[-25,2],[-40,7],[-27,10],[-18,1],[-13,8],[-44,25],[-10,36],[-51,24],[-48,8],[-4,19],[10,31],[-22,23],[-28,28],[-19,10],[-31,29],[-27,17],[-10,30],[4,29],[10,53],[1,42],[-15,30],[6,19],[20,37],[2,35],[-2,15],[73,37],[57,10],[52,37],[-8,29],[-17,30],[6,20],[31,29],[60,16],[58,13],[26,18],[27,23],[11,18],[-2,23],[36,20],[25,12],[36,-25],[42,-4],[28,-13],[48,10],[32,21],[32,24],[30,8],[17,26],[19,22],[16,8],[21,10],[13,14],[4,14],[8,16],[15,17],[5,18],[2,17],[-4,15],[7,18],[0,16],[-4,17],[-17,5],[-24,-3],[-14,-9],[-24,-3],[-35,3],[-39,15],[-38,11],[-23,-6],[-47,-17],[-44,2],[-44,8],[-35,15],[-30,21],[-37,33],[-38,27],[-9,23],[-9,21],[-14,17],[-16,26],[-58,13],[-42,4],[-43,10],[-24,11],[-14,11],[-12,13],[-26,29],[-19,13],[-18,22],[-19,23],[10,35],[32,-5],[19,8],[28,6],[30,-6],[24,3],[22,9],[27,3],[10,13],[24,2],[18,8],[15,13],[18,9],[26,-6],[45,18],[20,28],[9,42],[21,12],[26,15],[13,13],[20,25],[13,22],[9,23],[1,25],[-8,23],[-21,18],[-15,11],[-10,14],[-18,7],[-17,11],[-12,41],[-14,33],[2,21],[-28,29],[-25,17],[-21,4],[-28,10],[-29,10],[-43,-6],[-80,-4],[-35,-4],[-17,6],[-8,24],[-36,7],[-22,21],[-33,10],[-20,17],[-20,-2],[-30,-2],[-74,-12],[-35,-13],[-5,-28],[-30,-3],[-39,35],[-13,20],[-15,15],[-19,2],[-15,9],[-25,13],[-25,18],[-4,16],[1,17],[-31,16],[-34,3],[-25,20],[-16,17],[-32,6],[-27,7],[-19,-10],[-14,-10],[-23,-18],[-38,-3],[-14,-13],[-56,3],[-31,2],[-67,6],[-54,-25],[-15,-12],[-68,-5],[-27,18],[1,37],[-9,27],[-39,16],[-27,10],[-28,9],[-26,33],[-26,15],[-32,17],[-21,20],[-29,48],[-14,12],[-10,17],[-73,33],[-40,-1],[-56,1],[-71,-9],[-55,-12],[-58,26],[-29,9],[-27,21],[-28,22],[-36,20],[-30,4],[-19,-3],[-24,10],[-12,13],[-40,19],[-43,13],[-38,19],[-15,22],[-10,14],[4,18],[22,14],[23,27],[21,28],[13,16],[11,16],[-12,16],[-11,21],[-32,17],[-28,19],[-27,31],[-10,23],[8,31],[3,15],[-42,58],[-13,17],[-16,27],[-11,29],[17,17],[15,8],[66,21],[99,21],[44,3],[19,41],[28,33],[5,22],[-15,13],[-12,21],[-33,15],[-37,21],[-13,14],[-20,38],[-29,15],[-14,17],[55,72],[-9,22],[-9,13],[-33,22],[-9,12],[-5,16],[-4,20],[5,22],[12,19],[13,25],[2,14],[0,15],[-16,18],[-9,15],[-9,18],[-8,40],[-23,16],[-10,15],[-18,12],[-14,8],[-7,19],[-3,20],[-15,26],[-9,18],[-10,16],[-36,17],[-20,28],[-25,-23],[-23,-14],[-40,-27],[-29,-30],[-11,-18],[-20,-17],[-26,-16],[-35,-13],[-40,-16],[-23,-10],[-43,-10],[-21,-3],[-28,-3],[-18,1],[-15,16],[-3,19],[-16,13],[-24,8],[-25,12],[-22,19],[-11,19],[-7,23],[-4,15],[1,21],[-2,16],[-11,21],[-25,38],[-6,18],[3,20],[2,18],[3,15],[-14,8],[-25,12],[-26,2],[-26,1],[-19,14],[-22,11],[-25,6],[-32,0],[-27,-3],[-20,-8],[-25,-16],[-10,0],[-15,-1],[-22,-2],[-22,5],[-23,17],[-17,4],[-28,-2],[-19,-20],[-19,-11],[-13,-18],[-15,-28],[-3,-27],[6,-14],[14,-10],[19,-18],[0,-24],[-5,-14],[-11,-12],[-27,-9],[-19,-15],[-10,21],[-4,19],[-26,12],[-26,8],[-14,20],[-6,16],[-3,15],[-3,14],[-1,19],[8,29],[-4,25],[11,12],[-4,23],[-12,16],[-10,16],[-23,6],[-24,6],[-24,1],[-19,9],[-18,-9],[-16,-2],[-24,10],[-26,2],[-8,21],[-21,5],[-29,-8],[-23,23],[-26,9],[-17,1],[-27,-9],[-18,1],[-20,2],[-20,10],[-16,8],[-15,13],[-27,25],[-12,12],[-12,13],[-8,14],[-64,18],[-28,9],[-41,6],[-26,24],[-4,30],[12,21],[-16,5],[-20,14],[-16,16],[-25,17],[-11,22],[-11,26],[-4,21],[2,17]],[[15198,34969],[3,-17],[-23,-15],[-20,-27],[-14,-16],[-4,-16],[-14,-21],[0,-22],[-21,-16],[-10,-19],[7,-18],[-17,-9],[-7,-28],[-12,-11],[0,-26],[-4,-15],[-8,-23],[-33,-6],[-21,-12],[-36,15],[-25,-4],[-17,-11],[-27,-6],[-18,-15],[-2,-17],[8,-20],[-13,-21],[9,-40],[4,-17],[-4,-26],[-7,-23],[6,-27],[2,-17],[-7,-38],[-20,-15],[-10,-20],[0,-38],[9,-18],[-17,-29],[-20,-23],[35,-27],[6,-18],[-18,-11],[8,-17],[-13,-16],[-31,-20],[-19,-32],[-35,-7],[-18,-9],[15,-24],[-24,-66],[-29,5],[-29,-1],[-18,-1],[12,-17],[5,-22],[-1,-17],[-6,-18],[-10,-24],[-8,-14],[-5,-18],[-12,-13],[0,-24],[6,-22],[11,-22],[9,-13],[9,-13],[22,-11],[15,-4],[19,-5],[20,-13],[-12,-15],[3,-16],[-18,-18],[-16,-13],[-16,-10],[10,-20],[10,-17],[-7,-14],[-6,-13],[-16,-21],[-19,-16],[-17,-1],[-13,-13],[-2,-24],[-2,-22],[-14,-13],[-23,-8],[-12,-14],[-16,-18],[1,-15],[9,-17],[-2,-24],[-10,-20],[-15,-25],[3,-21],[-1,-17],[-12,-14],[-16,-6],[-15,-15],[-10,-13],[-25,-12],[-20,-19],[12,-10],[13,-12],[12,-18],[11,-19],[-16,-16],[-3,-14],[4,-31],[15,-6],[20,-10],[21,-16],[-3,-20],[3,-23],[1,-14],[-1,-16],[-9,-15],[-14,-11],[-12,-10],[1,-19],[5,-22],[9,-17],[-13,-11],[-14,-13],[-12,-14],[-15,-19],[-11,-21],[-19,-12],[-14,-16],[2,-15],[-13,-21],[-19,-12],[-4,-14],[29,0],[26,-1],[19,-1],[26,-2],[13,-14],[0,-22],[3,-26],[7,-20],[10,-13],[8,-15],[-2,-16],[9,-21],[-5,-20],[-14,-13],[-13,-9],[-9,-13],[-1,-19],[4,-21],[22,-22],[8,-16],[-17,-13],[-9,-12],[8,-16],[-13,-10],[-5,-15],[10,-18],[-11,-15],[-1,-15],[7,-17],[9,-17],[-9,-13],[-15,-12],[-18,-10],[-11,-15],[-22,-7],[-14,-14],[-5,-20],[3,-17],[1,-16],[2,-16],[-12,-41],[9,-18],[13,-12],[14,-10],[21,-9],[-8,-13],[-19,-5],[-30,-12],[-11,-12],[-13,-10],[17,-13],[18,-21],[23,-10],[13,-14],[5,-26],[12,-13],[4,-16],[-15,-8],[15,-14],[19,-10],[14,-27],[-16,-4],[-35,-16],[-11,-24],[4,-19],[12,-23],[11,-12],[29,-6],[13,-9],[-16,-10],[-16,-9],[-18,-24],[-8,-16],[-15,-12],[-9,-21],[-11,-13],[-20,-9],[-16,-5],[-25,-4],[-26,-7],[-16,-10],[-27,-9],[12,-19],[14,-15],[4,-29],[-7,-13],[-10,-23],[13,-26],[-12,-14],[-14,-18],[10,-30],[20,-16],[15,-17],[0,-22],[-16,-12],[5,-18],[12,-16],[8,-17],[-9,-15],[-14,-17],[-8,-14],[-14,-7],[7,-18],[10,-38],[15,-8],[12,-15],[12,-17],[-4,-16],[0,-17],[-16,-43],[5,-15],[-2,-24],[-15,-10],[-10,-15],[-10,-25],[-13,-33],[-4,-25],[-17,-11],[-13,-17],[-7,-17],[-5,-23],[-1,-14],[26,-18],[-1,-25],[-212,1],[-70,0],[-176,0],[-33,1],[-80,0],[-195,-1],[-36,1],[-18,0],[-2,0],[-17,1],[-32,0],[-160,0],[-168,1],[-183,1],[-126,0]],[[12742,30792],[-46,0],[-479,2],[-196,0],[-40,0],[-28,1],[-22,0],[-121,0],[-124,0],[-140,1],[-36,0],[-368,0],[-33,0],[-45,0],[-134,0],[-61,0],[-91,1],[-184,1],[-407,1],[-24,0],[-70,0],[-160,-1],[-85,0],[-8,0],[-27,0],[-180,0],[-19,0],[-156,0],[-231,-1],[-124,0],[-37,0],[-31,0],[-75,0],[-177,-1],[-54,0],[-68,1],[-229,-1],[-269,0],[-38,0],[-216,1],[-47,0],[-21,0],[-437,3],[-229,1],[-38,0],[-422,2],[-287,2],[-162,1],[-365,3],[-23,-1],[-21,1],[-20,0],[-36,0],[-22,-3],[-81,1],[-3,0],[-65,0],[-14,0],[-22,1],[-27,0],[-4,0]],[[5563,30808],[15,10],[19,17],[11,24],[15,30],[3,30],[-1,30],[-12,59],[-2,23],[-12,46],[-16,18],[-26,29],[-28,32],[-22,19],[-34,26],[-25,6],[-32,7],[-27,3],[-20,3],[-20,5],[-33,9],[-39,12],[-25,14],[-40,20],[-34,16],[-17,10],[-18,16],[-7,18],[-2,19],[-24,10],[-33,7],[-54,12],[-38,8],[-11,2],[-31,2],[-11,-1],[-35,-1],[-20,-1],[-5,-1],[-20,-5],[-39,-18],[-25,-9],[-15,-1],[-10,-1],[-31,4],[-26,4],[-120,16],[-49,7],[-29,5],[-34,5],[-28,6],[-24,11],[-30,14],[-24,24],[-5,28],[-2,16],[-12,64],[-7,35],[3,28],[3,9],[7,22],[5,15],[20,32],[19,39],[-2,20],[1,18],[-13,14],[-38,42],[-9,17],[-3,22],[-3,16],[5,17],[17,31],[16,38],[0,15],[-4,21],[-7,14],[-11,20],[-3,6],[-38,41],[-18,6],[-49,10],[-29,6],[-2,0],[-79,16],[-19,0],[-72,-2],[-74,0],[-19,-2],[-44,3],[-20,2],[-19,6],[-21,6],[-20,1],[-33,-1],[-15,-1],[-10,-2],[-29,-4],[-31,-3],[-2,-1],[-31,-2],[-26,-1],[-31,3],[-22,6],[-17,7],[-26,11],[-20,10],[-19,7],[-37,5],[-31,1],[-38,-4],[-21,-6],[-23,-10],[-20,-10],[-14,-8],[-31,-18],[-41,-19],[-25,-21],[-5,-14],[-4,-18],[-2,-19],[-12,-33],[-10,-31],[-12,-30],[-10,-20],[-15,-13],[-23,-9],[-26,-4],[-6,0],[-16,-1],[-25,5],[-18,5],[-20,10],[-19,10],[-15,23],[-6,18],[-7,20],[-6,17],[-11,13],[-17,13],[-22,12],[-26,14],[-10,9],[-8,6],[-26,25],[-19,18],[-13,9],[-23,11],[-31,13],[-45,20],[-25,12],[-42,19],[-42,27],[-81,53],[-35,23],[-22,16],[-23,30],[-14,36],[-8,37],[-9,23],[-12,33],[-16,23],[-29,31],[-34,34],[-34,27],[-26,19],[-32,17],[-28,7],[-28,4],[-27,2],[-37,-3],[-4,-1],[-33,-6],[-50,-13],[-16,-5],[-30,-9],[-19,-10],[-40,-30],[-40,-27],[-14,-9],[-32,-24],[-33,-26],[-18,-21],[-11,-25],[-2,-14],[-4,-14],[-14,-19],[-16,-16],[-30,-21],[-28,-14],[-44,-12],[-34,-4],[-1,0],[-19,-2],[-42,-3],[-34,1],[-31,0],[-19,0],[-14,-2],[-27,-3],[-3,0],[-31,-2],[-29,2],[-35,2],[-20,3],[-20,4],[-36,3],[-37,0],[-37,6],[-30,12],[-32,20],[-27,16],[-28,18],[-36,19],[-36,16],[-36,17],[-35,12],[-35,11],[-33,15],[-39,17],[-43,20],[-45,25],[-30,18],[-35,28],[-34,27],[-26,29],[-19,20],[-18,12],[-16,9],[-22,12],[-24,11],[-18,11],[-20,8],[-21,10],[-25,18],[-67,96],[-8,13],[-7,23],[12,18],[31,26],[10,13],[10,18],[7,21],[9,30],[17,15],[25,13],[27,6],[33,6],[19,7],[17,5],[6,1],[27,6],[28,7],[23,10],[20,18],[6,28],[29,17],[7,14],[0,16],[2,17],[8,18],[13,13],[20,13],[15,27],[5,21],[23,13],[22,5],[22,10],[10,15],[2,20],[7,30],[11,13],[8,13],[-4,35],[-16,16],[-17,10],[-8,12],[-25,39],[-32,51],[-19,14],[-17,8],[-28,9],[-24,10],[-27,16],[-14,17],[-11,21],[-12,14],[-23,17],[-34,21],[-24,14],[-25,8],[-32,8],[-30,14],[-15,5],[-62,53],[-14,9],[-10,8],[-16,7],[-34,12],[-15,7],[-27,16],[-19,13],[-13,12],[-21,13],[-7,5],[-8,6],[-14,8],[-16,13],[-18,14],[-7,20],[3,17],[-8,22],[-10,21],[-14,18],[-7,24],[-13,17],[-56,80],[-11,14],[-2,19],[2,16],[1,25],[-3,17],[15,18],[32,11],[43,12],[40,17],[37,25],[17,15],[22,14],[46,26],[8,14],[24,31],[4,23],[10,30],[26,30],[-7,23],[13,14],[22,17],[29,18],[16,20],[13,24],[12,16],[8,15],[9,19],[9,26],[-10,22],[9,32],[-3,16],[-3,16],[-6,21],[7,20],[3,20],[-2,28],[-9,13],[-9,20],[11,34],[15,28],[5,20],[-2,18],[-8,41],[-5,23],[-9,33],[-10,27],[-5,16],[-10,14],[-14,14],[-30,29],[1,20],[1,21],[-4,17],[-6,21],[-7,13],[-11,18],[-12,14],[-28,30],[-15,23],[-6,25],[-1,16],[-2,15],[3,16],[11,26],[29,26],[30,5],[43,13],[35,9],[4,2],[21,0],[29,-6],[18,-3],[16,-3],[7,1],[14,0],[22,7],[14,10],[15,14],[15,9],[30,16],[14,8],[18,13],[13,10],[20,16],[16,33],[17,10],[17,11],[12,16],[12,15],[15,18],[9,14],[21,35],[19,50],[-5,44],[30,50],[44,30],[26,54],[58,50],[59,-6],[9,2],[7,0],[41,10],[31,8],[29,-2],[22,-2],[18,-2],[9,2],[11,-1],[99,25],[74,45],[65,50],[29,35],[23,27],[34,53],[25,44],[22,39],[6,67],[12,54],[2,44],[-33,30],[-24,20],[-23,20],[-1,2],[-5,30],[32,52],[4,8],[58,40],[71,23],[32,15],[34,17],[60,43],[12,9],[56,38],[11,18],[10,14],[-3,23],[-4,51],[-4,46],[2,23],[24,49],[4,28],[4,31],[-1,38],[24,41],[8,36],[0,6],[0,27],[14,41],[14,23],[30,56],[30,45],[19,22],[44,16],[33,9],[28,7],[36,39],[54,68],[13,16],[20,24],[39,47],[-2,57],[2,42],[32,22],[20,40],[-14,34],[-9,24],[-6,19],[10,23],[3,60],[1,22],[75,58],[87,45],[82,26],[29,55],[6,39],[-20,31],[-15,23],[4,37],[19,30],[10,18],[-6,30],[44,33],[36,27],[13,14],[18,45],[68,18],[67,26],[33,43],[-4,47],[-10,25],[27,76],[9,66],[-21,56],[-9,23],[64,47],[131,30],[33,48],[16,89],[46,41],[20,6],[57,15],[21,24],[106,24],[21,10],[13,7],[2,1],[22,1],[30,-2],[31,-3],[33,-1],[10,-1],[26,4],[26,14],[15,13],[11,18],[9,20],[23,15],[8,2],[8,1],[41,0],[23,-2],[38,-4],[23,-5],[24,-1],[33,1],[28,1],[8,0],[16,2],[20,6],[24,10],[19,6],[21,6],[15,7],[32,13],[14,7],[15,8],[16,9],[18,8],[26,15],[24,14],[14,7],[24,16],[15,8],[32,20],[18,7],[16,9],[18,9],[21,22],[10,13],[14,13],[16,11],[16,8],[18,5],[21,7],[22,5],[8,0],[36,2],[14,2],[17,1],[16,3],[25,8],[26,6],[17,3],[20,3],[12,1],[24,3],[36,3],[1,0],[24,4],[18,9],[16,9],[16,14],[21,13],[21,8],[21,5],[18,2],[24,3],[21,4],[21,3],[16,6],[18,9],[15,11],[17,20],[15,16],[12,20],[6,18],[-2,16],[-11,18],[-15,15],[-11,17],[-8,17],[-3,16],[0,17],[6,23],[7,17],[6,14],[7,14],[9,13],[8,16],[12,13],[9,13],[13,12],[15,13],[17,9],[18,8],[16,5],[31,15],[14,13],[13,14],[13,21],[22,30],[16,19],[39,48],[40,48],[37,45],[36,44],[11,13],[10,13],[10,12],[16,19],[30,6],[27,5],[7,1],[15,9],[5,10],[10,21],[-1,16],[6,16],[15,0]],[[99945,28397],[-7,-2],[-37,-11],[-5,0],[-1,0],[-15,1],[-21,7],[-16,2],[-29,7],[-7,2],[-21,1],[-29,3],[-8,-1],[-1,0],[-12,-2],[-19,-5],[-17,-3],[-13,-8],[-1,0],[-19,-8],[-14,-10],[-20,0],[-6,-1],[-10,-2],[-32,-8],[-34,-12],[0,-3],[-3,-11],[-2,-7],[-13,-4],[-4,-1],[-18,-8],[-5,-2],[-17,-3],[-9,0],[-5,0],[-9,0],[-26,-1],[-22,-6],[-26,-14],[-3,-2],[-14,-9],[-18,-9],[-17,-6],[-28,-1],[-15,6],[-2,1],[-19,-2],[-20,-2],[-23,-6],[-4,-3],[-12,-8],[-19,-10],[-23,-3],[-17,3],[-21,2],[-10,0],[-18,-5],[-29,-17],[-5,-4],[-10,-9],[-12,-12],[-23,-9],[-16,1],[-21,-2],[-24,1],[-27,5],[-24,4],[-6,0],[-15,-1],[-40,-7],[-16,-6],[-18,-10],[-17,-12],[-12,-11],[-21,-26],[-24,-11],[-19,-6],[-22,-9],[-16,-4],[-18,-12],[-17,-4],[-17,-9],[-18,-8],[-16,-5],[-17,-6],[-17,-5],[-17,-6],[-18,0],[-5,0],[-28,1],[-23,4],[-11,1],[-8,1],[-22,-11],[-1,-15],[-10,-13],[-9,-15],[-5,-10],[-4,-7],[-1,-17],[1,-15],[-15,-8],[-11,-4],[-1,0],[-5,-2],[-18,4],[-14,13],[-9,15],[-7,2],[-15,4],[-10,4],[-6,2],[-16,-3],[-14,-10],[-11,-11],[-7,-3],[-7,-4],[-24,-4],[-21,-1],[-17,5],[-8,-4],[-9,-6],[-16,-14],[-20,-4],[-17,-4],[-14,-8],[-3,-2],[-14,-9],[-15,-17],[20,-5],[-5,-10],[-5,-12],[-16,-6],[-24,0],[-21,-5],[-11,2],[-4,1],[-2,1],[-18,-4],[-18,-5],[-12,-6],[-5,-2],[-3,-1],[-19,-5],[-1,-5],[-2,-10],[11,-14],[-9,-17],[-11,-3],[-6,-1],[-17,1],[-16,4],[-17,2],[-7,0],[-15,3],[-6,1],[-11,-5],[-12,-5],[-12,-13],[-1,-15],[-4,-3],[-11,-9],[-15,-10],[-17,-3],[-4,-3],[-12,-7],[-14,-8],[-12,-15],[-15,-8],[-4,-1],[-11,-3],[-19,1],[-20,0],[-10,3],[-7,3],[-21,2],[-11,0],[-14,0],[-11,3],[-5,1],[-25,5],[-17,5],[-22,6],[-20,2],[-19,-6],[-1,-1],[-18,0],[-11,11],[-1,17],[-4,20],[-4,19],[8,16],[-1,15],[0,1],[-3,14],[-12,13],[-2,2],[-10,11],[-1,1],[-19,2],[-2,-1],[-3,0],[-4,0],[-11,-1],[-18,-7],[-7,-11],[-2,-3],[-11,-18],[-18,-2],[-17,1],[-20,-6],[-25,-8],[-16,-3],[-1,0],[-16,-2],[-18,0],[-19,6],[-19,8],[-11,13],[-8,13],[-18,7],[-29,9],[-24,7],[-17,9],[-17,5],[-22,4],[-23,21],[-15,6],[-12,11],[-12,17],[-18,1],[-16,-7],[-19,4],[-4,-1],[-15,-1],[-8,-14],[-2,-19],[-8,-21],[-18,-17],[-17,-9],[-3,0],[-15,-2],[-20,5],[-11,2],[-8,-3],[-8,-4],[-7,1],[-10,1],[-20,-7],[-17,-9],[-17,-4],[-17,-4],[-2,-4],[-5,-10],[-16,-9],[-17,-6],[-16,-8],[-20,-4],[-12,12],[-17,2],[-19,2],[-17,-1],[-16,6],[-13,0],[-3,0],[-4,-2],[-12,-4],[-18,-4],[-16,-4],[-14,-1],[-4,-1],[-12,-2],[-4,0],[-18,-5],[-4,0],[-1,0],[-14,-1],[-11,2],[-11,2],[-3,0],[-4,1],[-13,1],[-4,-1],[-5,-1],[-6,-2],[-3,-1],[-16,-8],[-7,-8],[-3,-4],[-2,-2],[0,-1],[-9,-11],[-12,-5],[-5,-2],[-15,-7],[1,-15],[12,-12],[-8,-5],[-8,-5],[0,-16],[-19,-9],[-13,-13],[-11,-14],[-11,-10],[-4,-16],[-14,-9],[-18,-4],[-16,-6],[-17,-5],[-15,-1],[-2,0],[-4,0],[-12,-1],[-1,0],[-9,-3],[-8,-3],[-5,-2],[-17,-4],[-16,-8],[-22,-4],[-5,-1],[-9,-1],[-22,2],[-17,3],[-14,-3],[-5,-1],[-22,-8],[-22,-6],[-1,-1],[-20,-9],[-12,-10],[-21,-16],[-18,-7],[-2,-1],[-15,-1],[-9,-1],[-22,2],[-6,1],[-14,2],[-1,0],[-14,-1],[-2,0],[-12,-2],[-11,-2],[-6,14],[-4,15],[-1,3],[-3,0],[-12,-1],[-2,-1],[-10,0],[-9,0],[-19,4],[-17,6],[-16,9],[-15,10],[-15,9],[-14,9],[-24,3],[-18,1],[-17,0],[-7,1],[-3,0],[-9,1],[-17,-5],[-13,-15],[-1,-1],[-17,6],[-14,11],[-4,2],[-12,3],[-4,15],[4,16],[-1,16],[-14,7],[-4,16],[8,18],[3,15],[-9,7],[-8,7],[-11,11],[-10,12],[-10,15],[-14,26],[-12,12],[-28,17],[-18,4],[-3,0],[-16,-3],[-5,-1],[-38,-11],[-22,-3],[-22,0],[-1,0],[-12,-1],[-9,-1],[-19,-5],[-5,-1],[-2,0],[-19,-2],[-19,-2],[-1,0],[-12,6],[-3,2],[-15,8],[3,18],[4,8],[7,14],[-4,16],[-9,13],[-8,14],[-1,1],[-23,13],[-24,18],[-18,8],[-4,1],[-4,0],[-12,1],[-9,-5],[-15,-8],[-18,-8],[-4,-2],[-18,-6],[-14,-8],[-4,-3],[-4,-1],[-7,-4],[-17,-5],[-4,-1],[-6,-3],[-7,-2],[-21,-8],[-12,-9],[-2,-1],[-29,-11],[-4,-1],[-27,-17],[-25,-14],[-14,-7],[-14,-15],[-18,-12],[-13,-18],[-9,-27],[-7,-9],[-4,-6],[-17,-11],[-22,-8],[-15,-5],[-1,-1],[-17,-5],[-8,-2],[-21,-6],[-15,-13],[-2,-2],[-17,-14],[-19,-9],[-3,-1],[-15,0],[-20,-7],[-3,1],[-5,1],[-20,4],[-18,6],[-18,3],[-5,1],[-22,-5],[-1,0],[-25,-12],[-17,-22],[-15,-10],[-18,-11],[-19,-16]],[[94257,27534],[-21,-17],[-8,-6],[-16,-23],[-23,-13],[-12,-5],[-2,-1],[-7,-3],[-7,-1],[-23,-1],[-19,-2],[-25,-1],[-24,-4],[-25,-12],[-8,-3],[-11,-4],[-11,-3],[-11,-3],[-1,0],[-17,-2],[-1,0],[-8,-2],[-13,-2],[-8,-3],[-3,-1],[-9,-4],[-14,-2],[-9,-1],[-20,-7],[-24,-23],[-11,-10],[-6,-6],[-25,-13],[-6,-3],[-16,7],[-15,18],[-8,3],[-10,4],[-13,14],[-16,19],[-17,11],[-13,2],[-3,0],[-19,-2],[-19,-11],[-17,-21],[-14,-7],[-4,-2],[-26,1],[-3,1],[-23,7],[-14,2],[-3,0],[-20,-6],[-9,-4],[-8,-3],[-9,4],[-7,3],[-13,13],[-13,15],[-22,1],[-19,5],[-15,7],[-21,3],[-1,1],[-11,0],[-7,1],[-13,-2],[-9,-2],[-9,-2],[-9,-1],[-1,0],[-14,3],[-2,1],[-4,1],[-7,2],[-13,4],[-16,4],[-1,0],[-3,1],[-14,3],[-4,1],[-5,1],[-3,0],[-17,-2],[-17,-3],[-1,0],[-6,-1],[-5,1],[-11,0],[-18,-2],[-4,-1],[-3,0],[-25,-3],[-18,8],[-4,19],[-6,15],[-1,3],[-12,26],[-15,6],[-23,1],[-7,1],[-2,0],[-10,1],[-20,6],[-9,12],[-2,3],[-16,11],[-13,10],[-1,1],[-1,0],[-10,12],[-9,14],[-6,3],[-4,3],[-9,6],[-18,6],[-2,0],[-2,0],[-16,3],[-4,1],[-18,5],[-12,3],[-1,0],[-2,0],[-18,1],[-7,-6],[-5,-3],[-8,-6],[0,-1],[-6,-4],[-3,-2],[-4,-3],[-16,-4],[-8,-2],[-4,2],[-15,6],[-9,3],[-6,2],[-15,7],[-4,2],[-2,1],[-13,8],[-12,5],[-4,1],[-20,6],[-17,1],[-12,-2],[-11,-2],[-24,-5],[-22,0],[-3,0],[-20,-6],[-11,-7],[-8,-5],[-12,-22],[-9,-15],[-17,-9],[-6,1],[-12,1],[-20,1],[-16,-9],[-5,-10],[-3,-7],[-22,-6],[-26,-5],[-9,2],[-10,2],[-20,0],[-37,-8],[-19,-2],[-31,-5],[-19,-9],[-12,-5],[-35,-7],[-24,-2],[-11,-9],[-2,-2],[-31,-9],[-20,-6],[-16,-1],[-17,2],[-19,3],[-14,-24],[1,-14],[0,-7],[-11,-15],[-19,-13],[-11,-1],[-8,0],[-25,-3],[-15,-9],[-3,-12],[-2,-6],[14,-10],[-10,-10],[-15,-13],[-12,-14],[-16,-5],[-6,0],[-1,0],[-13,2],[-10,-9],[-1,-1],[-6,-5],[-20,-9],[-2,0],[-3,-1],[-22,-4],[-1,0],[-19,-2],[-5,-6],[-7,-6],[19,-8],[-14,-6],[-19,-4],[-17,-2],[-23,0],[-26,2],[-21,-5],[-22,-4],[-28,-1],[0,-1],[-4,-17],[-13,-12],[0,-21],[0,-26],[0,-28],[0,-23],[0,-20],[0,-29],[-1,-57],[-1,-15],[1,-18],[-10,-12],[-2,-2],[-47,0],[-76,0],[-22,0],[-17,0],[-23,0],[-34,0],[-17,0],[-72,0],[-64,0],[-19,0],[-33,0],[-78,0],[-18,0],[-18,0],[-63,1],[-29,-1],[-18,0],[-26,-1],[-26,0],[-29,0],[-18,0],[-16,0],[-5,0],[-35,0],[-24,0],[-26,0],[-33,0],[-66,0],[-41,0],[-21,1],[-41,0],[-18,0],[-39,0],[-46,0],[-34,0],[-22,0],[-32,0],[-26,0],[-49,1],[-30,0],[-30,0],[-51,0],[-21,0],[-23,0],[-24,2],[-18,-1],[-21,-1],[-29,1],[-26,1],[-34,1],[-29,0],[-22,0],[-23,0],[-25,0],[-22,0],[-25,0],[-21,1],[-47,0],[-47,-2],[-22,0],[-43,0],[-42,0],[-28,-1],[-28,-1],[-23,0],[-17,2],[-17,0],[-41,-1],[-21,-1],[-19,0],[-12,2],[-28,5],[0,31],[0,16],[-2,17],[-1,39],[0,32],[0,16],[0,8],[0,27],[0,15],[-159,2],[-52,-1],[-110,0],[-164,1],[-10,0],[-57,1],[-13,0],[-20,0],[-17,0],[-40,0],[-29,0],[-34,0],[-24,1],[-17,0],[-38,0],[-36,0],[-18,0],[-71,0],[-56,0],[-36,0],[-54,0],[-18,0],[-20,0],[-34,0],[-47,0],[-24,0],[-51,0],[-39,0],[-44,0],[-43,0],[-48,0],[-28,0],[-39,0],[-28,0],[-21,0],[-58,-1],[-25,1],[-22,0],[-39,1],[-29,1],[-35,1],[-20,1],[-21,0],[-16,0],[-18,0],[-39,0],[-20,-1],[-307,-1],[-26,0],[-25,-1],[-14,8],[-1,0],[0,15],[0,6],[1,35],[1,15],[0,9],[0,15],[3,97],[1,22],[1,16],[1,17],[0,18],[-1,22],[1,15],[-1,22],[0,27],[0,35],[-11,18],[-70,0],[-38,0],[-57,0],[-19,0],[-60,0],[-40,0],[-26,-1],[-13,0],[-6,0],[-27,0],[-56,0],[-96,1],[-34,0],[-55,0],[-23,0],[-16,0],[-69,0],[-23,0],[-58,0],[-40,0],[-41,0],[-52,0],[-43,0],[-62,1],[-36,0],[-67,0],[-239,0],[-700,2],[-174,1]],[[84933,27596],[0,86],[0,17],[-1,33],[0,72],[-3,412],[-382,3],[-301,0],[-761,1],[-18,0],[-21,0],[-268,5],[-39,0],[-147,6],[-165,-1],[-156,-1],[-152,-7],[-41,0],[-43,0],[-17,0],[-381,1],[1,104],[0,92],[3,214],[0,4],[2,412],[0,137],[0,71],[1,197]],[[82044,29454],[137,0],[95,0],[75,0],[33,-3],[37,0],[87,2],[22,1],[507,-2],[25,0],[123,0],[25,0],[146,-1],[58,0],[284,0],[103,-1],[206,0],[0,149],[0,289],[1,133],[0,180],[0,69],[0,31],[-1,113],[3,120],[2,46],[4,101],[27,6],[48,2],[19,0],[16,-1],[35,-1],[205,-1],[21,0],[21,1],[31,-1],[95,-2],[23,0],[17,5],[17,1],[18,0],[18,1],[24,0],[18,-2],[28,0],[23,0],[21,1],[30,0],[127,0],[89,0],[146,0],[36,0],[312,-1],[178,-1],[296,0],[-1,190],[0,198],[-1,86],[-1,147],[211,0],[65,1],[86,0],[249,0],[143,2],[145,-1],[0,249],[0,108],[0,267],[87,0],[0,39],[0,95],[0,19],[-1,110],[0,44],[1,64],[0,97],[1,227],[1,128],[0,128],[0,49],[1,67],[0,79],[0,20],[0,54],[81,0],[25,1],[24,0],[40,0],[511,-1],[302,0],[0,44],[0,94],[0,71],[0,22],[0,23],[0,80],[0,121],[0,367],[-3,262],[0,110],[593,13],[28,0],[38,0],[78,-1],[530,-2],[54,1],[19,0],[27,0],[492,-1],[816,-1],[74,3],[56,1],[0,63],[0,15],[2,16],[2,14],[0,15],[0,15],[-5,14],[3,15],[-3,15],[-3,15],[6,13],[1,17],[0,18],[-7,14],[7,15],[-3,28],[1,18],[2,16],[0,16],[-1,19],[-2,14],[0,18],[-2,197],[0,41],[1,84],[0,19],[0,4],[0,20],[0,36],[1,52],[1,88],[0,17],[-1,42],[1,22],[-4,23],[0,19],[1,25],[1,8],[5,32],[-1,20],[0,51],[-1,31],[8,24],[1,86],[-7,60],[1,17],[-1,59],[1,218],[0,76],[0,133],[1,26],[2,196]],[[90734,36491],[28,-13],[83,-2],[98,52],[55,9],[160,109],[69,20],[76,-27],[45,-17],[79,-5],[57,-13],[107,-3],[34,-45],[100,-10],[95,32],[66,5],[25,-11],[0,-19],[41,-17],[71,-31],[17,-13],[130,-10],[99,-35],[77,-48],[16,-60],[30,-43],[61,-14],[57,0],[100,52],[35,34],[33,0],[69,-21],[78,5],[80,2],[47,8],[43,2],[36,-12],[73,-5],[35,-20],[17,-3],[17,21],[50,19],[-38,25],[-18,44],[-6,16],[-8,52],[-13,29],[13,24],[-45,33],[-69,-10],[-22,-33],[-35,-14],[-43,19],[-64,40],[-20,10],[-72,29],[-41,10],[-93,-1],[-66,13],[-82,16],[-18,14],[-6,31],[43,38],[53,-1],[48,36],[-29,41],[-262,126],[-13,98],[-64,73],[-12,43],[78,67],[-109,32],[100,93],[4,16],[-26,13],[99,115],[39,11],[53,19],[38,29],[74,14],[-37,68],[-21,9],[-39,34],[-26,21],[-28,38],[-28,9],[-30,22],[-19,8],[8,36],[134,20],[119,45],[67,-55],[70,-27],[17,11],[-25,16],[22,75],[37,8],[18,43],[17,17],[43,9],[50,31],[20,17],[15,33],[-5,19],[84,39],[12,28],[-20,28],[-33,1],[-9,15],[-5,47],[13,10],[24,1],[45,12],[25,35],[23,11],[0,25],[-39,4],[-31,21],[-58,1],[-21,33],[-39,17],[-45,27],[-12,17],[22,47],[-10,40],[-34,16],[-21,26],[-42,34],[-3,19],[14,32],[-1,17],[16,23],[39,24],[65,-6],[30,-7],[40,16],[31,10],[46,10],[56,31],[63,35],[111,27],[54,6],[99,16],[37,0],[66,42],[106,6],[71,1],[77,-44],[16,-40],[16,-13],[30,-2],[79,-25],[54,-21],[28,24],[24,26],[53,28],[23,33],[34,30],[11,17],[68,12],[23,32],[-10,23],[20,34],[-23,42],[-11,48],[43,58],[33,10],[-4,24],[3,65],[-52,9],[31,31],[29,16],[13,33],[26,13],[104,28],[43,-10],[91,-38],[51,-28],[-9,-19],[29,-19],[31,-19],[25,-23],[16,-10],[34,-12],[4,-52],[6,-19],[67,-41],[51,-63],[53,-43],[48,-22],[52,-4],[30,6],[42,23],[81,41],[44,39],[91,-28],[48,-1],[73,-37],[0,-36],[-7,-34],[17,-72],[73,-39],[-1,-19],[142,-75],[21,-17],[66,-23],[34,-7],[16,-18],[7,-14],[57,-21],[24,-17],[7,-33],[-20,-29],[-7,-24],[-12,-15],[5,-14],[0,-24],[30,-25],[29,-18],[27,-31],[34,-1],[33,-1],[49,-29],[60,-10],[52,-44],[18,-26],[0,-48],[7,-7],[25,-23],[65,-63],[51,-12],[19,-31],[-22,-26],[-53,-14],[-20,-16],[-20,-29],[-17,-10],[-6,-17],[-25,-29],[-73,-7],[34,-51],[31,-29],[49,-12],[20,-7],[17,-26],[69,18],[38,16],[43,13],[76,6],[62,14],[24,-4],[-7,-17],[30,-14],[-1,-16],[30,-48],[22,-7],[55,4],[32,-11],[36,-41],[30,-15],[15,-17],[74,-52],[23,-30],[54,-32],[28,-22],[-6,-18],[24,-34],[101,-40],[-102,-53],[-36,-2],[-25,-11],[-35,-3],[-78,-15],[-21,-11],[-23,-6],[-25,-9],[-26,-13],[-3,-15],[84,-35],[-3,-36],[26,-24],[21,-30],[-15,-19],[-2,-22],[42,-18],[20,-46],[-5,-50],[-13,-10],[-15,-20],[37,-29],[-6,-35],[32,-50],[-11,-29],[16,-20],[25,-10],[3,-18],[33,-13],[49,9],[27,-6],[14,-18],[55,-2],[29,5],[41,-5],[69,-3],[108,11],[112,-42],[223,-54],[14,-32],[-12,-32],[1,-40],[5,-61],[-8,-18],[1,-29],[69,-50],[63,-26],[133,-32],[84,-9],[124,-158],[161,10],[156,-43],[-137,-222],[130,-245],[82,-20],[74,-64],[112,-2],[144,-107],[28,-1],[87,18],[135,-47],[99,-16],[100,-27],[80,-2],[54,-20],[76,-35],[49,-16],[88,-13],[29,2],[20,8],[42,-7],[19,-11],[24,-8],[-1,-222],[0,-6],[0,-311],[1,-442],[0,-146],[0,-289],[0,-807],[1,-1405],[1,-825],[0,-593],[0,-209],[-1,-880],[0,-126],[3,-67],[6,-146],[7,-192],[4,-99],[10,-236]],[[82044,29454],[-251,1],[-520,1],[-19,0],[-40,0],[-14,0],[-88,0],[-38,0],[-31,0],[-231,0],[-10,0],[-29,0],[-6,0],[-10,0],[-18,0],[-225,0],[-138,1],[-65,0],[-53,0],[-134,0],[-30,0],[-36,0],[-33,0],[-49,0],[-20,0],[-96,0],[-309,1],[-64,0],[-21,0],[-50,0],[-22,0],[-23,0],[-277,0],[-112,1],[-44,0],[-424,0],[-17,1],[-119,0],[-28,0],[-212,0],[-32,0],[-60,0],[-254,0],[-21,0],[-475,1],[-21,0],[-246,0],[-137,0],[-19,0],[-141,0],[-19,0],[-20,1],[-26,0],[-99,0],[-21,0],[-66,0],[-56,0],[-130,0],[-63,0],[-117,0],[-37,0],[-41,-1],[-22,0],[-27,0],[-22,0],[-41,0],[-18,0],[-31,0],[-29,0],[-25,0],[-60,0],[-17,0],[-19,1],[-34,-1],[-29,1],[-37,0],[-42,0],[-20,0],[-29,0],[-49,0],[-66,0],[-16,0],[-58,0],[-23,0],[-24,0],[-25,0],[-16,0],[-30,0],[-23,0],[-64,0],[-45,0],[-33,0],[-32,0],[-40,0],[-18,0],[-16,0],[-21,0],[-16,0],[-31,0],[-60,0],[-20,0],[-27,-1],[-33,0],[-37,0],[-22,0],[-76,0],[-27,0],[-17,-1],[-34,1],[-17,0],[-17,0],[-42,0],[-32,0],[-22,0],[-42,0],[-51,0],[-51,1],[-59,0],[-47,0],[-72,0],[-15,0],[-13,-1],[-45,0],[-17,0],[-18,0],[-52,1],[-118,0],[-30,0],[-21,0],[-90,0],[-122,0],[-27,0],[-23,1],[-139,3],[-1,-165],[0,-87],[0,-35],[0,-2],[0,-16],[0,-54],[0,-106],[-2,-55],[0,-30],[0,-34],[0,-34],[1,-39],[0,-58],[-4,-118],[0,-3],[0,-399]],[[73348,28231],[-157,0],[-17,0],[-305,1],[-279,1],[-14,0],[-129,1],[-53,0],[-307,0],[-54,1],[-256,0],[-38,0],[-107,0],[-15,0],[-38,0],[-55,0],[-91,0],[-193,0],[-129,0],[-74,0],[-276,2],[-281,1],[-49,-2],[-61,0],[-119,0],[-118,-1],[-89,0],[-79,1],[-76,0],[-76,0],[-627,1],[-627,0],[-37,0],[0,172],[-1,136],[1,85],[-1,3],[-2,36],[0,56],[0,276],[0,46],[0,97],[0,296],[0,41],[-17,0],[1,88],[1,412],[2,435],[0,124],[0,1],[0,174],[0,16],[0,39],[0,61],[0,36],[0,80],[-1,72],[0,41],[0,96],[-1,27],[0,39],[0,106],[0,16],[0,15],[0,117],[-1,216],[0,54],[0,43],[0,86],[0,95]],[[71413,34002],[22,6],[-3,44],[15,25],[-24,20],[9,35],[23,30],[2,25],[-6,16],[1,21],[-12,11],[-23,29],[-4,16],[12,16],[19,13],[-42,32],[-28,-6],[-55,9],[-13,24],[1,18],[-5,49],[-6,15],[-69,77],[-62,45],[-80,93],[-37,-2],[-20,41],[22,14],[32,2],[26,28],[64,29],[47,21],[2,14],[-7,73],[-1,62],[49,31],[58,21],[50,21],[54,83],[34,19],[18,11],[42,-27],[18,3],[12,21],[49,27],[44,20],[22,27],[35,19],[16,33],[-17,35],[20,20],[46,20],[207,221],[177,-8],[83,51],[42,11],[116,2],[94,34],[19,-4],[48,-42],[58,8],[23,51],[49,47],[28,39],[38,26],[57,18],[110,25],[61,20],[75,-14],[86,-2],[173,-47],[48,-7],[46,7],[83,-22],[4,-37],[19,-38],[91,-19],[90,3],[76,-18],[84,-57],[67,-14],[45,18],[62,6],[171,37],[80,6],[80,7],[35,-5],[27,-33],[16,-46],[3,-29],[43,4],[83,33],[34,23],[253,53],[83,-24],[126,-71],[93,-42],[38,9],[51,-16],[30,-2],[53,4],[62,24],[80,2],[70,-2],[109,24],[50,8],[30,-17],[89,4],[42,-12],[62,-49],[6,-20],[99,-14],[55,-3],[40,-2],[79,-16],[43,5],[70,-33],[2,-19],[4,-42],[-8,-47],[117,-21],[80,-26],[59,51],[6,18],[39,1],[20,28],[115,20],[32,43],[90,25],[40,32],[36,24],[70,-30],[61,-32],[77,0],[16,-20],[64,-45],[-2,-45],[19,-19],[41,7],[74,15],[58,-15],[23,-11],[10,-16],[52,-22],[20,-14],[28,-7],[2,-18],[20,-10],[-9,-60],[13,-20],[53,-11],[90,11],[27,3],[35,-13],[81,-10],[79,45],[63,15],[75,-17],[55,-40],[70,-15],[108,-53],[66,33],[46,40],[56,41],[30,39],[70,71],[51,41],[31,10],[13,55],[11,14],[0,33],[4,45],[10,43],[22,32],[47,27],[20,29],[30,74],[-19,58],[15,51],[0,41],[-1,17],[3,17],[-24,28],[-1,24],[5,58],[-1,108],[15,22],[9,35],[-27,18],[-10,39],[33,22],[17,41],[26,35],[39,32],[48,11],[89,-5],[22,-12],[47,4],[76,13],[78,-6],[54,5],[38,9],[54,-5],[54,21],[33,22],[-22,67],[22,49],[-6,18],[83,62],[32,24],[47,17],[29,11],[70,-5],[31,25],[72,14],[30,56],[52,35],[57,0],[108,-22],[57,-6],[82,-8],[42,5],[10,13],[88,20],[36,35],[20,14],[41,-41],[44,-15],[43,11],[82,-4],[31,-6],[98,-36],[86,-11],[5,-24],[-14,-39],[9,-24],[37,-8],[11,-47],[-27,-38],[7,-48],[112,-71],[104,-18],[81,-25],[254,-48],[107,-34],[64,-24],[59,-3],[39,31],[99,38],[75,35],[54,19],[120,-34],[82,-14],[48,-18],[82,42],[70,-5],[24,5],[21,-29],[55,3],[26,-3],[14,-16],[16,-32],[38,-54],[12,-25],[182,-53],[76,-10],[39,-53],[97,2],[85,33],[49,97],[139,35],[74,20],[66,-7],[112,54],[36,-13],[82,-1],[93,7],[41,-22],[41,-10],[77,-6],[35,-23],[98,5],[38,-50],[51,4],[-9,65],[-20,52],[-14,71],[26,42],[29,14],[173,-37],[38,-23],[48,-6],[66,21],[54,-23],[26,-39],[60,-18],[32,2],[101,-33],[52,22],[117,-1],[100,-15],[95,30],[35,30],[41,70],[66,-7],[25,74],[122,-12],[66,46],[32,64],[116,-1],[93,19],[41,-6],[62,3],[46,-5],[85,5],[82,-25],[52,8],[139,9],[54,15],[51,12],[31,16],[15,41],[51,25],[34,-10],[104,-37],[42,-7],[107,28],[45,14],[43,2],[15,-39],[-8,-27],[35,-23],[14,-77],[12,-17],[103,-33],[15,-19],[1,-27],[65,-41],[55,-57],[81,-138],[15,-34],[35,-26],[139,-68],[21,-2],[-1,-48],[43,-40],[6,-27],[60,-6],[41,-34],[211,39],[-17,30],[48,19],[-4,19],[-35,39],[64,70],[129,26],[162,-34],[90,7],[67,26],[64,45],[65,-3],[106,-33],[14,27],[45,72],[98,44],[53,36],[86,23],[39,7],[75,23],[82,-8],[85,20],[168,-8],[15,2],[28,53],[78,52],[76,133],[213,-54],[127,77],[38,-42],[175,-41],[110,-14],[53,-24],[61,4],[62,24],[97,-1],[65,-25],[124,-12],[109,-11],[47,2],[43,-16],[66,-3]],[[16611,30791],[-27,0],[-30,0],[-324,0],[-245,-2],[-357,0],[0,-32],[0,-63],[0,-17],[0,-31],[-1,-40],[0,-72],[0,-59],[-1,-62],[0,-112],[-2,-120],[-2,-230],[-1,-42],[2,-51],[0,-20],[1,-151],[1,-174],[0,-39],[0,-253],[0,-54],[0,-38],[0,-50],[0,-89],[0,-49],[0,-62],[-1,-68],[0,-28],[-1,-82],[3,-63],[0,-5],[8,-58],[1,-16],[0,-192],[-1,-44],[0,-301],[-1,-133],[0,-93],[0,-17],[0,-22],[0,-39],[0,-84],[-1,-111],[0,-61],[0,-38],[0,-3],[0,-17],[0,-17],[0,-15],[0,-1],[1,-15],[-1,-30],[-4,-160],[-2,-41],[-3,-52],[-1,-19],[0,-89],[0,-81],[0,-31],[0,-18],[-1,-39],[-1,-81],[-1,-21],[-3,-164],[-4,-205],[0,-22],[6,-331],[0,-27],[-4,-50],[-1,-20],[-123,1]],[[15490,25876],[-19,0],[-36,0],[-96,1],[-46,1],[-99,1],[-62,0],[-173,2],[-102,-1],[-26,0],[-100,-1],[-134,-2],[-17,0],[-28,0],[-92,0],[-127,0],[-90,0],[-103,0],[-69,0],[-28,0],[-48,1],[-20,0],[-63,0],[-58,0],[-19,1],[-61,0],[-36,0],[-47,0],[-47,0],[-44,0],[-20,1],[-25,0],[-26,0],[-67,0],[-56,0],[-45,0],[-19,0],[-35,0],[-20,0],[-139,1],[-18,0],[-44,0],[-35,0],[-26,0],[-46,0],[-29,1],[-6,0],[-14,0],[-33,0],[-40,0],[-22,0],[-63,0],[-52,0],[-35,0],[-33,0],[-52,0],[-351,1],[-13,0],[-186,-1],[-146,-2],[-62,0],[-77,0]],[[11765,25880],[-42,0],[-153,-1],[-81,0],[-44,0],[-85,0],[-188,0],[-18,1],[-31,0],[-148,-1],[-74,0],[-57,0],[-45,0],[-62,-1],[-175,0],[-88,0],[-100,0],[-139,1],[-33,0],[-50,0],[-35,0],[-139,-1],[-42,-2],[-64,0],[-21,0],[-20,0],[-145,-1],[-42,0],[-88,0],[-156,0],[-40,0],[-41,0],[-16,0],[-63,1],[-18,3],[-18,0],[-28,0],[-18,0],[-26,0],[-25,0],[-19,0],[-42,0],[-23,0],[-17,0],[-39,0],[-24,0],[-39,0],[-36,0],[-33,0],[-36,0],[-39,1],[-18,0],[-18,0],[-21,0],[-18,0],[-62,1],[-21,-2],[-28,-2],[-37,2]],[[8537,25879],[0,34],[0,18],[-1,24],[1,19],[-1,15],[1,42],[0,25],[0,30],[-1,40],[0,15],[0,105],[0,50],[0,35],[1,121],[0,48],[0,56],[0,26],[-1,31],[0,95],[0,29],[1,57],[0,18],[0,105],[1,71],[1,22],[1,18],[0,15],[1,29],[-1,16],[1,25],[0,18],[1,14],[1,33],[0,20],[0,17],[1,33],[-1,21],[-3,16],[0,16],[1,31],[1,26],[0,79],[0,88],[0,18],[0,19],[0,16],[0,15],[0,26],[-1,32],[1,16],[0,2],[0,15],[0,37],[-1,34],[0,53],[0,45],[0,46],[-1,52],[0,2],[1,12],[2,39],[0,50],[-2,14],[0,32],[0,14],[-2,177],[-1,73],[26,0],[138,-1],[26,0],[150,0],[313,-1],[26,0],[61,0],[59,0],[127,-1],[364,-1],[108,-1],[140,-2],[125,-1],[127,-1],[30,-1],[156,-1],[188,-2],[100,-1],[0,17],[1,92],[0,47],[0,76],[0,20],[0,27],[0,4],[0,131],[89,-1],[51,-1],[64,0],[82,-1],[75,0],[225,-2],[22,-1],[34,0],[-1,38],[0,55],[-3,217],[-1,123],[0,34],[-1,25],[0,44],[-1,43],[0,40],[2,31],[4,88],[1,4],[1,24],[1,17],[13,33],[72,-1],[69,-1],[106,-2],[63,0],[34,-1],[25,0],[107,-1],[16,0],[17,0],[14,0],[196,-1],[80,-1],[475,-2],[-1,85],[0,15],[0,63],[0,109],[0,48],[0,109],[1,2],[0,15],[3,403],[1,113],[1,16],[1,97],[2,153]],[[36314,27914],[-37,-7],[-27,0],[-39,-6],[-15,8],[-22,2],[-37,10],[-16,4],[-26,3],[-29,6],[-17,-2],[-19,-3],[-16,-10],[-20,-4],[-28,7],[-19,14],[-22,8],[-18,10],[-16,5],[-18,3],[-20,5],[-17,1],[-34,2],[-19,-5],[-19,-1],[-19,4],[-31,1],[-33,7],[-28,3],[-15,8],[-14,8],[-22,7],[-15,6],[-17,6],[-23,13],[-18,-13],[-19,-8],[-13,-9],[-18,-17],[-9,-12],[-11,-14],[-19,-13],[-10,-11],[-19,-13],[-21,-4],[-20,5],[-16,-3],[-34,0],[-18,-7],[-11,-12],[-10,-16],[-12,-17],[-18,0],[-21,-3],[-35,0],[-28,2],[-16,-5],[-14,-16],[-9,-12],[-17,-9],[-13,-14],[-21,-13],[-15,9],[-9,11],[-16,2],[-17,2],[-19,3],[-14,6],[-25,9],[-11,11],[-15,15],[13,12],[9,12],[3,18],[-2,31],[8,15],[3,19],[-15,9],[-16,12],[-21,1],[-24,-5],[-23,-4],[-21,-9],[-17,1],[-24,-9],[-17,-6],[-24,8],[0,15],[-17,10],[-15,17],[-18,6],[-20,14],[-21,12],[-4,20],[7,15],[17,9],[29,20],[10,14],[13,10],[15,13],[20,8],[1,15],[8,21],[11,14],[21,10],[6,16],[2,16],[-16,17],[-14,13],[-6,15],[-13,10],[-17,5],[-17,2],[-19,-3],[-18,-5],[-11,-11],[4,-21],[-15,-13],[-18,-7],[-13,14],[-20,4],[-19,0],[-19,-9],[-23,-6],[-21,12],[-24,0],[-19,-2],[-13,-10],[-12,-15],[-12,-16],[-19,-8],[-18,9],[-20,1],[-30,11],[-20,11],[-14,19],[-17,3],[-10,11],[-18,8],[-11,13],[-8,15],[-10,23],[-25,5],[-17,5],[-29,7],[-19,3],[-21,-2],[-26,4],[-20,6],[-17,2],[-32,8],[-17,4],[-17,1],[-20,11],[-17,5],[-19,9],[-24,2],[-18,10],[7,15],[-2,19],[-2,20],[-1,21],[-2,14],[-12,17],[-19,23],[-20,17],[-12,13],[-13,15],[-23,10],[-12,11],[-21,11],[-21,13],[0,3],[-3,14],[-7,18],[36,22],[33,24],[-19,20],[-46,38],[24,29],[18,46],[-23,52],[-2,48],[-6,39],[-15,24],[-19,38],[-21,21],[-18,24],[29,60],[4,69],[-34,58],[11,35],[-16,29],[-22,36],[-40,22],[-13,31],[0,25],[-10,40],[11,17],[-24,26],[-23,19],[-38,19],[-23,52],[-13,35],[-9,40],[-19,22],[-25,19],[-33,-5],[-39,15],[-15,15],[-13,21],[9,32],[3,20],[-19,3],[-58,26],[-45,27],[-24,25],[-24,18],[-39,-23],[-36,-6],[-43,1],[-27,14],[-20,17],[-37,7],[-41,-1],[-30,6],[-26,18],[-20,7],[-27,3],[-32,12],[-45,13],[-60,-4],[-55,4],[-47,10],[-41,9],[-43,5],[-36,-3],[-40,5],[-23,5],[-24,-21],[7,-26],[19,-7],[23,-4],[47,-4],[26,-6],[17,-7],[16,-7],[24,-3],[19,-5],[17,-6],[17,-8],[13,-11],[17,-10],[17,-5],[8,-15],[15,-8],[12,-14],[8,-13],[14,-8],[33,-14],[19,-10],[19,-12],[9,-15],[11,-25],[11,-24],[15,-22],[11,-15],[14,-13],[17,-14],[23,-13],[16,-12],[14,-14],[12,-16],[7,-14],[-5,-19],[-18,-13],[-13,-9],[-10,-15],[-14,-9],[-11,-14],[-13,-11],[-17,-7],[-18,-2],[-12,-9],[-12,-10],[-15,-9],[-8,-14],[-6,-16],[-12,-12],[-15,-10],[-6,-16],[0,-15],[3,-15],[4,-14],[-2,-14],[-5,-17],[-10,-15],[-6,-13],[-10,-16],[-4,-16],[-15,-8],[-10,-16],[-9,-14],[-8,-15],[-4,-14],[-5,-22],[-7,-25],[-6,-16],[-3,-16],[-3,-17],[6,-14],[-4,-16],[-15,-11],[-16,-10],[-19,-7],[-15,-10],[-5,-18],[-15,-11],[-18,-2],[-13,-9],[-1,-16],[-5,-17],[-16,-5],[-12,-10],[-14,-9],[-13,-19],[-3,-16],[-15,-9],[-6,-15],[-16,-14],[-16,-5],[-14,-13],[-10,-13],[-11,-12],[-2,-14],[-6,-14],[8,-15],[-5,-14],[-2,-21],[-12,-11],[-11,-16],[-2,-14],[-19,-6],[-20,-10],[-23,-6],[-15,-7],[-16,-7],[-13,-14],[-18,-5],[4,-14],[-19,-6],[-19,-5],[-17,-10],[-6,-3],[-10,-6],[-11,-12],[-18,-10],[-14,-7],[-16,-12],[-17,-6],[-14,-9],[-9,-14],[-14,-9],[-10,-13],[-14,-16],[-3,-17],[-11,-11],[-6,-15],[-5,-15],[-15,-10],[-7,-15],[-16,-10],[-10,-13],[-13,-10],[-16,-13],[-18,-8],[-6,-14],[-13,-12],[-9,-13],[9,-8],[-28,-35],[-9,-11],[-3,-15],[-35,-56],[-13,-16],[-3,-4],[-30,-34],[1,-5],[3,-3],[-1,-4],[-2,-7],[-15,-23],[-25,-19],[-24,-24],[-5,-11],[-9,-43],[-2,-11],[-11,-54],[-2,-16],[-4,-39],[-3,-20],[5,-17],[3,-21],[-7,-17],[4,-10],[-2,-13],[-11,-6],[-70,-15],[-43,-9],[-30,-26],[15,-11],[7,-9],[0,-5],[-6,-8],[-9,-6],[-11,-5],[-69,-19],[-120,-29],[-45,-4],[-24,-4],[-12,-3],[-26,-4],[-4,-2],[-9,-10],[-5,-4],[-10,-3],[-36,-3],[-60,-2],[-9,2],[-7,1],[-8,5],[-4,-2],[-47,-24],[1,-5],[-4,-5],[-8,-2],[-23,-1],[-39,2],[-37,-18],[-6,-3],[-4,3],[-12,6],[-10,3],[-10,0],[-53,-10],[-80,-25],[-5,-3],[-26,-40],[-5,-5],[-20,2],[-5,1],[-36,4],[-9,2],[-3,1],[-22,8],[-6,-3],[-25,-10],[-53,-18],[-6,-2],[-92,-4],[-6,0],[-9,3],[-16,5],[-13,12],[-3,9],[-5,30],[-4,4],[-7,-2],[-7,-2],[-8,-3],[-40,-14],[-15,-4],[-10,1],[-2,1],[-11,9],[-6,6],[-14,0],[-64,1],[-116,-9],[-1,0],[-69,-16],[-5,-7],[-82,-42],[-54,-27],[-10,-3],[-12,0],[-1,0],[-29,6],[-9,0],[-5,-1],[-41,-6],[-9,-3],[-26,-17],[-25,-9],[-75,-13],[-30,-15],[-11,-5],[-6,-2],[-49,-3],[-12,-1],[-9,2],[-2,0],[-8,0],[-42,-4],[-105,-17],[-35,-6],[-10,-3],[-15,-9],[-12,-10],[-39,-21],[-9,-3],[-40,-6],[-75,-28],[-58,-12],[-6,-3],[-10,-12],[-6,-2],[-104,-6],[-22,-1],[-13,0],[-32,-1],[-54,3],[-5,1],[-21,3],[-17,5],[-10,0],[-3,0],[-19,-5],[-27,-14],[-44,-23],[-10,-5],[-36,-23],[-10,-10],[-8,-15],[-4,-5],[-31,-14],[-12,-3],[-14,-2],[-59,-7],[-12,2],[-7,0],[-20,3],[-15,1],[-1,-1],[-21,1],[-12,0],[-10,0],[-18,-3],[-28,-18],[-18,-7],[-13,-1],[-12,3],[-22,4],[-7,0],[-3,0],[-22,-1],[-34,-2],[-33,-6],[-11,-4],[-12,-8],[-19,-4],[-37,-8],[-1,-1],[-13,-35],[-9,-8],[-25,-10],[-13,-3],[-13,2],[-12,1],[-4,0],[-6,-1],[-47,-19],[-1,-21],[-4,-3],[-26,-4],[-9,-3],[-10,-5],[-17,-12],[-8,-8],[-7,-9],[-3,-19],[-2,-17],[-3,-7],[-8,-13],[-20,-12],[-2,-3],[-1,-11],[-32,-55],[-10,-35],[3,-4],[2,-45],[-4,-15],[-3,-6],[-10,-7],[-60,-14],[-8,-4],[-5,-6],[0,-10],[15,-10],[4,-3],[11,-8],[-40,-16],[-8,-2],[-16,-1],[-8,-1],[-28,-3],[-3,0],[-3,0],[-16,4],[-13,0],[-10,-1],[-15,-2],[-32,-21],[-14,-9],[-14,-8],[-9,-6],[-1,-12],[5,-6],[12,-29],[-3,-8],[-11,-33],[-9,-3],[-26,-9],[11,-20],[11,-7],[9,-8],[3,-6],[0,-8],[-2,-10],[-1,-14],[4,-11],[4,-7],[7,-4],[8,-1],[7,0],[19,3],[6,1],[15,1],[6,-1],[3,-3],[1,-6],[-19,-36],[-2,-9],[-9,-29],[-2,-7],[0,-7],[2,-5],[34,-38],[-8,-32],[-6,-11],[-6,-7],[-19,-13],[-2,-2],[-6,-14],[5,-40],[8,-55],[6,-2],[44,-3],[11,-5],[5,-4],[2,-6],[0,-9],[-8,-10],[-49,-51],[-7,-2],[-20,-4],[-5,-1],[-4,-1],[-1,-1],[-9,-14],[-1,-6],[-45,-37],[-12,-10],[-2,-2],[-58,-32],[-24,-8],[-24,-13],[-6,-9],[-4,-6],[5,-13],[4,-6],[1,-11],[-7,-65],[-7,-29],[-10,-10],[-10,-2],[-2,1],[-18,7],[-35,7],[-52,8],[-17,1],[-29,1],[-11,0],[-70,0],[-6,0],[-24,-2],[-53,-4],[-1,0],[-15,1],[-3,-1],[-18,-4],[-12,-1],[-5,1],[-14,2],[-66,22],[-25,8],[-44,15],[-10,3],[-10,6],[-30,1],[-7,-2],[-6,-4],[-6,-9],[-18,-4],[-56,-13],[-15,1],[-43,1],[-7,-18],[-10,-6],[-16,-1],[-21,4],[-16,0],[-1,0],[-9,0],[-3,-1],[-8,-3],[-15,-8],[-14,-12],[-8,-9],[-36,-24],[-20,-20],[-57,-61],[-9,-11],[-12,-9],[-9,-4],[-15,-4],[-10,-1],[-3,1],[-17,2],[-11,1],[-1,-9],[-39,-80],[-27,-39],[-23,-13],[-8,-8],[-7,-13],[-7,-17],[-1,-8],[7,-12],[25,-24],[13,-16],[9,-18],[5,-11],[2,-5],[0,-20],[-10,-8],[-10,-2],[-12,0],[-16,-1],[-9,-3],[-11,-7],[-52,-54],[-14,-16],[-20,-23],[-26,-31],[-19,-4],[-23,-5],[-15,-1],[-10,-3],[-3,-2],[-7,-14],[-27,-53],[0,-6],[19,-31],[6,-7],[17,-7],[29,-2],[38,2],[8,-4],[3,-22],[1,-1],[2,-11],[-7,-20],[-17,-30],[-3,-30],[3,-8],[6,-5],[31,-30],[29,-27],[1,-1],[7,-2],[7,2],[10,7],[9,9],[10,7],[5,2],[2,0],[9,1],[33,-6],[16,-5],[39,-22],[0,-8],[-19,-29],[-4,-3],[-10,-3],[-11,0],[-6,-1],[-35,6],[-13,3],[-3,1],[-54,20],[-23,5],[-26,0],[-12,-2],[-1,0],[-15,-5],[-14,-7],[-2,-3],[1,-5],[16,-11],[14,-10],[9,-13],[3,-9],[0,-7],[-3,-2],[-11,-2],[-3,0],[-52,1],[-34,9],[-11,0],[-5,-2],[-2,-4],[-14,-23],[-26,-44],[-18,-14],[-5,-17],[7,-16],[12,-11],[29,-18],[-4,-6],[-3,-7],[1,-18],[-4,-9],[-2,-6],[-9,-2],[-33,-9],[-17,-5],[-21,-11],[-12,-8],[-17,-20],[-17,-20],[-7,-8],[0,-7],[1,-3],[5,-8],[4,-15],[-2,-3],[-18,-13],[-9,-3],[-4,0],[-11,-1],[-12,2],[-56,15],[-16,2],[-14,1],[-11,-2],[-9,-2],[-2,-2],[-22,-18],[-27,-22],[-3,-2],[-26,-30],[-11,1],[-25,4],[-18,11],[-9,2],[-12,1],[-7,-3],[-20,-12],[-34,-19],[-2,-1],[-12,-8],[13,-9],[4,-6],[0,-9],[-28,-40],[-11,-7],[-32,-11],[-35,-20],[-8,-7],[-14,-19],[-3,-10],[0,-8],[12,-26],[0,-12],[-6,-6],[-7,-4],[-8,-1],[-7,0],[-18,4],[-43,15],[-3,-4],[-50,-69],[-22,-16],[-14,-10],[-9,-7],[-23,-24],[-6,-4],[-34,-12],[-6,-1],[-8,0],[-40,6],[-10,0],[-6,-2],[-1,0],[-5,-4],[-5,-13],[-1,-18],[0,-13],[-4,-15],[-9,-16],[-16,-17],[-8,-3],[-12,0],[-1,1],[-7,5],[-5,10],[0,3],[-4,5],[-9,11],[-10,6],[-16,1],[-11,-3],[-26,-9],[-7,-2],[0,-1],[-7,-28],[-3,-4],[-9,-8],[-36,-16],[-52,-21],[-9,0],[-1,0],[-5,1],[-4,4],[-2,12],[-26,20],[-37,1],[-97,7],[-33,29],[-10,7],[-13,4],[-15,0],[-3,-2],[-20,-8],[-41,-18],[-4,-3],[0,-5],[5,-8],[31,-15],[23,-5],[7,-3],[13,-10],[4,-7],[1,-13],[-20,-45],[0,-7],[-12,-15],[-22,-21],[-16,-10],[-13,-7],[-15,-2],[-26,0],[-2,0],[-6,1],[-17,9],[-29,10],[-18,3],[-10,0],[-1,0],[-19,-6],[-6,-3],[-19,-15],[-40,-47],[-6,-43],[-8,-12],[-8,-6],[-13,-3],[-78,-22],[-7,1],[-56,10],[10,22],[-24,26],[-18,13],[-32,11],[-17,3],[-5,-1],[-19,-5],[-18,-8],[-19,-3],[-6,2],[-84,19],[-25,-3],[-2,-1],[-22,-7],[-39,-12],[-24,-1],[-70,-4],[-15,0],[-12,-7],[-4,-14],[-7,-24],[-98,-33],[-23,-38],[-30,-2],[-39,-2],[-14,-1],[-19,-16],[0,-1],[10,-40],[8,-33],[-39,-51],[-43,-44],[-78,-34],[-64,-55],[-37,-9],[-5,-1],[-7,-5],[-17,-6],[-27,-4],[-3,0],[-18,0],[-21,5],[-27,8],[-22,3],[-24,-1],[-28,-14],[-9,-11],[-8,-24],[7,-24],[10,-14],[7,-15],[2,-5],[8,-18],[-11,-11],[-24,-13],[-28,-11],[-18,-9],[-13,-11],[-12,-20],[-15,-9],[-21,-4],[-5,17],[-26,17],[-25,7],[-22,2],[-21,-2],[-31,-7],[-16,-7],[-27,-5],[-24,12],[-3,1],[-16,6],[-22,3],[-29,-7],[-15,-9],[-13,-11],[-14,-12],[-16,-15],[-15,-14],[-25,-15],[-30,-10],[-34,0],[-30,12],[-31,-2],[-37,0],[-24,-7],[-12,-15],[0,-19],[-8,-16],[-18,-7],[-20,-14],[-17,-5],[-15,-8],[-6,-5],[-8,-5],[-5,-7],[-8,-10],[-5,-16],[-14,-13],[-3,-2],[-13,-7],[-12,-2],[-7,-1],[-5,-1],[-19,1],[-23,5],[-26,8],[-25,8],[-19,11],[-11,12],[-5,8],[-6,12],[-9,15],[-16,10],[-15,2],[-6,1],[-16,-3],[-25,-7],[-19,2],[-28,8],[-2,1],[-37,8],[-30,3],[-27,-5],[-19,-7],[-7,-2],[-14,-6],[-22,-12],[-14,-14],[-10,-18],[-16,-8],[-21,-7],[-21,-5],[-22,-5],[-22,-3],[-27,-2],[-28,0],[-23,0],[-14,0],[-22,0],[-36,3],[-21,8],[-15,16],[-4,7],[-3,6],[-5,4],[-7,7],[-23,-3],[-7,-1],[-10,-3],[-30,-2],[-20,0],[-18,4],[-13,14],[-10,18],[-9,14],[-10,17],[-12,24],[-6,16],[-6,19],[1,15],[0,21],[-9,18],[-9,6],[-9,4],[-20,2],[-23,-3],[-8,-1],[-16,-4],[-21,-6],[-18,-4],[-24,9],[-12,7],[-8,4],[-20,-1],[-7,-3],[-7,-3],[-19,-9],[-9,-2],[-22,-5],[-20,-10],[-18,-15],[-16,-10],[-15,-12],[-12,-13],[-11,-13],[-8,-18],[-3,-20],[0,-14],[8,-21],[11,-19],[13,-14],[9,-17],[-8,-15],[-3,-14],[-13,-12],[-5,-4],[-15,-8],[-9,0],[-9,1],[-26,-1],[-26,-3],[-18,-1],[-18,-2],[-23,2],[-27,3],[-29,5],[-20,5],[-17,5],[-18,4],[-18,4],[-19,3],[-19,1],[-17,0]],[[20425,22799],[-20,-3],[-18,-11],[-9,-17],[-2,-16],[0,-3],[-8,-19],[-17,-10],[-17,12],[-1,1],[-16,11],[-3,2],[-22,14],[-23,15],[-11,7],[-52,34],[-35,23],[-26,17],[-13,8],[-13,9],[-14,9],[-4,2],[-13,9],[-70,45],[-19,17],[-59,38],[-27,18],[-47,30],[-32,21],[-19,12],[-173,113],[-61,40],[-13,9],[-38,24],[-24,17],[-57,37],[-40,26],[-39,26],[-66,43],[-56,36],[-23,15],[-56,37],[-78,51],[-17,11],[-13,9],[-20,13],[-18,11],[-21,14],[-36,24],[-28,18],[-22,15],[-21,13],[-58,38],[-35,23],[-36,24],[-81,53],[-53,35],[-36,24],[-53,34],[-28,19],[-111,73],[-56,36],[-22,15],[-62,40],[-21,14],[-54,35],[-18,12],[-29,19],[-15,10],[-29,19],[-40,26],[-49,32],[-22,17],[-14,8],[-47,31],[-57,37],[-77,46],[-23,15],[-16,10],[-19,13],[-19,12],[-15,9],[-40,27],[-21,13],[-13,9],[-20,13],[-22,14],[-4,3],[-9,6],[-21,14],[-27,17],[-25,16],[-24,16],[-18,11],[-24,16],[-16,10],[-28,18],[-22,15],[-29,19],[-28,18],[-25,17],[-22,14],[-22,14],[-20,13],[-36,24],[-31,20],[-12,9],[-18,15],[-40,26],[-18,12],[-37,24],[-15,10],[-25,16],[-27,18],[-13,8],[-38,25],[-50,33],[-14,8],[-17,12],[-21,13],[-23,15],[-15,6],[-73,43],[-74,47],[-104,66],[-25,16],[-47,30],[-58,37],[-55,35],[-48,31],[-43,27],[-52,34],[-21,13],[-30,19],[-50,32],[-23,15],[-46,30],[-33,21],[-46,29],[-17,10],[-25,16],[-44,28],[-19,12],[-28,18],[-5,3],[-19,13],[-38,27],[-53,38],[-16,9],[-86,47],[-102,68]],[[73348,28231],[0,-87],[0,-9],[-1,-216],[0,-64],[0,-115],[0,-82],[0,-153],[0,-135],[0,-33],[2,-53],[0,-67],[-1,-190],[0,-37],[-1,-101],[-1,-32],[1,-22],[0,-21],[1,-19],[0,-64],[0,-59],[0,-79],[0,-224],[0,-1],[0,-146],[0,-149],[0,-130],[1,-196],[-32,0],[0,-144],[0,-92],[-1,-105],[0,-344],[-1,-756],[0,-15],[0,-326],[0,-20],[0,-15],[0,-34],[0,-107],[0,-22],[0,-166],[0,-25],[0,-30],[0,-25],[0,-24],[0,-25],[0,-194],[-5,-27]],[[73310,23251],[-31,0],[3,-495],[0,-38],[0,-144],[0,-25],[0,-214],[0,-67],[1,-198],[-84,0],[-173,1],[-78,0],[-257,1],[-62,-1],[-181,-2],[-117,0],[0,-27],[0,-19],[0,-18],[-56,1],[-29,0],[-67,0],[-141,0],[-39,0],[-102,1],[-95,0],[-95,0],[-144,1],[-145,0],[-19,0],[-6,-126],[1,-46],[-1,-34],[0,-34],[0,-126],[-1,-39],[0,-1],[0,-23],[0,-48],[-3,-36],[0,-94],[0,-11],[-1,-129],[0,-81],[-1,-145],[0,-68],[-1,-111],[0,-63],[0,-24],[-73,0],[-237,1],[-74,-1],[-144,-1],[-427,3],[-644,1],[-34,1],[-186,0],[-38,0],[-71,1],[-14,-10],[0,-53],[0,-3],[4,-19],[-2,-113],[0,-49],[0,-47],[1,-19],[-1,-49],[0,-151],[0,-41],[0,-87],[-1,-87],[0,-22],[1,-22],[0,-59],[0,-59],[4,-118],[0,-31],[1,-24],[2,-103],[-20,-3],[-19,-1],[-130,-1],[0,-39],[0,-146],[0,-29],[1,-232],[0,-18],[0,-190],[0,-52],[0,-52],[0,-40],[0,-40],[-2,-113],[-3,-223],[-240,-5],[-603,2],[-22,0],[-65,-1],[-39,0]],[[68311,18425],[-238,0],[-239,0],[-223,0],[-223,0],[-644,1],[-59,0],[-58,0],[-229,0],[-153,-1],[-177,-2],[-290,-1],[-345,2],[-222,-1],[-369,0],[-40,-1],[-420,1],[-417,-1],[-110,1],[-1265,0],[0,1178],[-225,-1],[-599,-1],[-59,0],[-1358,6],[-193,0],[-1151,0],[-177,0],[-496,1],[-134,0],[-20,0],[4,105],[-1,280],[0,7],[0,75],[0,224],[0,103],[0,18],[0,25],[0,79],[0,80],[0,54],[0,54],[0,42],[0,63],[14,19],[21,12],[40,20],[30,9],[34,8],[59,14],[55,2],[41,4],[61,7],[50,12],[49,14],[20,6],[28,8],[37,11],[39,12],[61,21],[23,16],[11,18],[-15,24],[-14,9],[-26,12],[-31,16],[-30,16],[-47,23],[-24,12],[-29,13],[-19,20],[-11,12],[-8,20],[5,17],[8,20],[15,37],[3,24],[-4,19],[-3,15],[-15,14],[-20,7],[-22,4],[-23,5],[-33,5],[-48,5],[-42,7],[-17,3],[-42,12],[-30,22],[-81,35],[-27,4],[-24,-2],[-22,-4],[-23,-6],[-40,-12],[-35,-9],[-32,-7],[-45,-7],[-53,-6],[-45,-1],[-21,2],[-19,7],[-76,39],[-29,11],[-19,1],[-42,-9],[-19,0],[-30,13],[-16,7],[-15,7],[-17,10],[-19,16],[46,62],[40,42],[25,62],[-34,67],[-20,33],[-12,43],[-64,62],[-81,23],[-71,17],[-39,39],[-4,54],[-6,48],[-42,26],[13,31],[3,32],[15,33],[-6,75],[-18,5],[-33,21],[-2,25],[11,33],[9,26],[-9,33],[-57,27],[11,15],[-18,49],[-7,27],[-21,32],[21,20],[11,24],[-19,31],[-33,7],[-38,37],[-27,34],[-50,-6],[-56,8],[-100,14],[-15,21],[-92,10],[-58,10],[-70,17],[-127,-16],[-80,-7],[-75,-12],[-45,-1],[13,-41],[-29,-31],[-27,-37],[-17,-23],[-16,-40],[-75,1],[-28,3],[-39,-10],[-16,-11],[-24,-8],[-31,3],[-38,-25],[-28,-22],[-33,9],[-34,4],[-14,-16],[1,-16],[-39,-39],[-19,5],[-33,7],[-32,-8],[-42,2],[-41,10],[-31,1],[-49,6],[-83,11]],[[8537,25879],[-34,0],[-21,0],[-26,0],[-25,0],[-53,0],[-28,0],[-32,0],[-26,0],[-29,0],[-23,1],[-24,0],[-20,0],[-21,0],[-17,0],[-32,-1],[-21,0],[-50,0],[-40,0],[-16,0],[-27,0],[-19,0],[-26,-2],[-16,0],[-2,0],[-19,0],[-4,-14],[-1,-19],[0,-15],[0,-18],[0,-33],[-88,-1],[-53,0],[-49,0],[-66,0],[-56,0],[-91,0],[-89,-1],[-38,0],[-17,0],[-18,0],[-56,-1],[-17,0],[-8,-13],[0,-76],[-13,-14],[-45,0],[-100,1],[-85,0],[-58,0],[-22,0],[-85,0],[-156,1],[-73,0],[-17,0],[-148,-2],[-125,0],[-42,-1],[0,102],[1,43],[0,27],[0,39],[-38,-1],[-24,1],[-18,0],[-85,-1],[-22,1],[-51,0],[-17,0],[-18,0],[-23,0],[-21,0],[-36,0],[-19,0],[-16,0],[-30,0],[-19,0],[-17,0],[-55,0],[-33,0],[-17,-1],[-16,1],[-21,0],[-20,0],[-21,0],[-18,0],[0,41],[-1,22],[0,33],[-1,49],[0,36],[1,20],[-21,4],[-17,0],[-18,0],[-74,0],[-31,0],[-17,-1],[-21,0],[-22,0],[-20,1],[-19,0],[-35,0],[-27,0],[-3,58],[0,42],[-2,106],[-160,2],[-32,0],[-26,0],[-33,0],[-26,1],[-27,0],[-19,0],[-30,0],[-40,-1],[-24,2],[-32,0],[-22,0],[-33,0],[-46,0],[-18,0],[-30,0],[-38,0],[-2,1],[-14,11],[0,67],[0,26],[0,21],[2,20],[2,27],[1,31],[0,27],[-1,16],[0,15],[-1,49],[0,27],[-1,17],[0,36],[-1,26],[0,34],[0,29],[-1,30],[0,12],[0,4],[-1,14],[1,27],[2,24],[-1,15],[0,18],[-17,0],[-19,0],[-27,0],[-30,1],[-43,-1],[-42,-1],[-46,0],[-98,-2],[-31,0],[-43,0],[-61,0],[-1,0]],[[4179,26918],[-1,13],[1,3],[34,49],[10,15],[6,9],[14,23],[6,12],[17,29],[7,11],[18,31],[4,7],[-5,102],[-10,68],[-1,6],[-1,2],[-14,35],[-8,10],[-3,3],[-9,10],[-19,32],[-1,3],[0,2],[3,16],[1,4],[2,1],[31,10],[5,1],[61,14],[67,1],[5,0],[2,0],[103,3],[23,5],[2,7],[3,8],[11,28],[32,89],[-4,13],[-18,66],[-1,3],[-4,1],[-35,10],[-69,23],[-9,12],[-11,16],[-2,2],[-1,4],[-5,30],[-4,22],[9,6],[86,52],[6,23],[7,28],[8,22],[10,28],[12,32],[5,14],[0,1],[-1,1],[-23,12],[-37,1],[-164,6],[-52,31],[0,3],[13,78],[28,17],[58,35],[31,8],[91,25],[22,6],[39,10],[19,5],[4,3],[29,19],[14,48],[9,17],[18,32],[8,14],[14,10],[32,24],[12,9],[7,6],[14,-1],[137,-6],[22,14],[53,35],[5,4],[-1,3],[-16,48],[-1,4],[-22,28],[-1,2],[-1,2],[-54,73],[-46,11],[-1,8],[-4,35],[-3,18],[14,11],[18,13],[27,20],[1,0],[27,17],[32,23],[12,14],[6,18],[-3,22],[-2,21],[7,18],[16,27],[9,29],[4,17],[-4,36],[-8,15],[-15,33],[-19,32],[-37,39],[-39,35],[-21,15],[-44,16],[-68,29],[-24,12],[-17,5],[-37,21],[-1,1],[-17,20],[-7,18],[-15,8],[-23,7],[-24,5],[-103,19],[-83,24],[-19,12],[-5,19],[-5,18],[-3,23],[8,27],[3,20],[-3,28],[-4,17],[-7,16],[-10,19],[-7,16],[-3,17],[0,39],[0,16],[0,17],[6,30],[-4,25],[-10,24],[0,24],[-3,34],[0,28],[1,10],[-2,18],[-20,21],[6,13],[7,7],[12,11],[10,8],[12,6],[17,7],[18,6],[19,8],[8,3],[26,10],[28,7],[8,1],[25,2],[30,-1],[11,0],[18,1],[14,1],[2,1],[16,1],[14,1],[2,1],[14,1],[18,5],[21,4],[9,1],[13,1],[3,1],[16,1],[65,8],[15,1],[5,0],[28,5],[16,4],[11,3],[23,8],[25,12],[8,5],[30,17],[30,16],[36,28],[32,34],[55,70],[7,18],[0,24],[-8,14],[-16,14],[5,25],[8,16],[18,17],[12,16],[11,15],[15,12],[16,10],[25,13],[26,13],[23,16],[25,12],[21,15],[21,18],[18,17],[8,15],[9,26],[-1,39],[11,41],[22,60],[45,26],[31,14],[51,23],[15,11],[12,30],[-1,19],[15,21],[28,21],[20,14],[13,0]],[[36629,27748],[-21,-11],[-10,-14],[-29,-23],[-13,-12],[-16,-9],[-17,-4],[-23,-3],[9,-33],[6,-16],[-8,-16],[-16,-20],[-21,-23],[-6,-17],[-12,-12],[-12,-18],[-15,-14],[-23,0],[-23,3],[-18,-1],[-21,1],[-23,4],[-12,-11],[-14,-19],[-6,-14],[-11,-14],[-25,-16],[-17,-18],[-10,-22],[1,-30],[0,-14],[9,-23],[16,-24],[14,-9],[20,-13],[18,-8],[18,-25],[14,-19],[15,-11],[2,-19],[-5,-26],[15,-22],[-12,-20],[-13,-24],[9,-14],[1,-14],[-3,-24],[1,-18],[4,-19],[6,-14],[18,-6],[20,2],[22,-6],[22,-12],[12,-11],[18,-21],[31,-13],[21,-2],[22,-22],[29,-16],[7,-13],[-1,-26],[4,-14],[12,-20],[11,-12],[1,-16],[-8,-17],[-8,-27],[-16,-20],[-18,-5],[-14,-22],[-25,-10],[-29,5],[-33,3],[-20,-9],[-30,-19],[-26,-17],[-39,-3],[5,-23],[-4,-20]],[[36336,26614],[-15,-11],[-15,-6],[-16,-15],[-54,-27],[-33,-15],[-27,-19],[-23,-17],[2,-17],[12,-15],[11,-16],[-6,-24],[-22,-15],[-13,-10],[-11,-13],[-13,-12],[-5,-16],[1,-19],[8,-14],[-4,-22],[1,-23],[3,-17],[3,-18],[8,-15],[1,-19],[-31,-31],[-20,-4],[-23,-8],[-28,-8],[-29,-3],[-17,1],[-19,1],[-17,-9],[-17,-14],[-30,-17],[-44,-20],[4,-22],[-5,-18],[8,-30],[1,-15],[-20,-15],[-18,-5],[-18,-9],[-3,-15],[2,-15],[0,-26],[0,-18],[-12,-13],[-17,-5],[-19,-7],[-15,-18],[-10,-25],[-3,-19],[-10,-23],[-5,-22],[-11,-21],[-8,-13],[-16,-22],[-5,-20],[3,-18],[14,-11],[-3,-18],[-1,-15],[2,-18],[11,-17],[-8,-18],[0,-14],[-1,-21],[-18,-16],[10,-21],[-10,-20],[-13,-14],[-10,-20],[-19,-26],[-20,-17],[-14,-18],[-11,-13],[3,-17],[-10,-15],[-24,-31],[-5,-14],[0,-15],[17,-5],[16,-5],[1,-18],[8,-13],[4,-17],[0,-20],[-4,-15],[-20,-18],[-15,-10],[-20,-5],[0,-18],[8,-17],[7,-13],[3,-28],[14,-14],[-4,-15],[-20,-11],[-24,-27],[-21,-18],[-15,-18],[1,-19],[15,-10],[7,-16],[7,-13],[16,-7],[14,-13],[22,-8],[19,-6],[16,-14],[25,-17],[12,-13],[14,-18],[7,-20],[-3,-17],[13,-11],[1,-18],[6,-14],[14,-12],[18,-3],[19,1],[32,1],[21,0],[19,-2],[28,-3],[16,4],[22,2],[22,-10],[18,-8],[13,-9],[-10,-17],[1,-17],[10,-15],[13,-17],[4,-16],[16,-22],[20,-21],[20,-15],[13,-11],[4,-17],[-4,-26],[-2,-14],[-7,-14],[-5,-16],[-2,-15],[-8,-27],[-3,-15],[1,-23],[10,-13],[12,-15],[1,-23],[13,-28],[5,-16],[-9,-17],[-8,-14],[-15,-5],[-16,-5],[-32,-8],[-17,-2],[-28,-14],[-24,-16],[-15,-6],[-20,-13],[-17,-6],[-8,-20],[0,-18],[-11,-13],[-11,-11],[-21,-9],[-21,-5],[-22,-8],[-17,-19],[-7,-16],[-1,-18],[-21,-16],[-19,-10],[-26,-8],[-18,-5],[-14,-10],[-14,-14],[-9,-14],[3,-18],[5,-16],[22,-18],[13,-17],[6,-19],[2,-21],[7,-18],[4,-15],[7,-16],[12,-17],[8,-19],[11,-16],[-10,-20],[-4,-18],[-11,-17],[-11,-14],[-14,-19],[-6,-20],[-5,-14],[3,-18],[-7,-13],[-24,-20],[-17,-15],[-3,-15],[2,-18],[6,-19],[8,-24],[15,-23],[5,-21],[-4,-17],[14,-12],[11,-15],[-5,-13],[-21,-10],[-1,-17],[13,-15],[-5,-21],[-13,-17],[-6,-22],[-6,-16],[14,-12],[8,-14],[17,-13],[17,-21],[-5,-18],[-13,-17],[-2,-16],[-34,9],[-27,7],[-19,3],[-20,-1],[-19,-2],[-20,-5],[-20,-5],[-25,-10],[-28,-12],[-16,-8],[-24,-11],[-20,-10],[-15,-9],[-14,-21],[-8,-13],[-18,-14],[-31,-4],[-15,-7],[-16,-22],[-25,-19],[-14,-8],[-16,-9],[-14,-14],[-7,-17],[-7,-22],[-9,-18],[-14,-14],[-11,-9],[-4,-4],[-18,6],[-14,18],[-9,13],[-5,3],[-8,5],[-17,9],[-24,8],[-19,11],[-7,6],[-13,10],[-28,12],[-8,0],[-17,0],[-17,-6],[-1,-1],[-11,-11],[-7,-10],[-3,-4],[-13,-7],[-3,-1],[-20,0],[-8,1],[-2,1],[-7,1],[-1,-2],[-5,-22],[0,-56],[0,-19],[0,-371],[0,-19],[0,-38],[0,-73],[-1,-268],[0,-23],[0,-29],[0,-21],[0,-41],[0,-69],[-1,-147],[0,-76],[0,-21],[0,-154],[-1,-34],[1,-22],[1,-23],[0,-18],[0,-26],[1,-50],[-1,-157],[0,-17],[0,-57],[0,-22],[0,-78],[0,-40],[-1,-119],[0,-5],[0,-30],[0,-26],[0,-135],[0,-22],[-1,-56],[0,-24],[0,-43],[0,-32],[0,-56],[-1,-53],[0,-36],[0,-14],[0,-62],[0,-33],[-1,-74],[0,-54],[0,-24],[1,-15],[0,-16],[-1,-30],[-1,-23],[0,-31],[-1,-96],[0,-19],[0,-68],[-1,-85],[0,-23],[-2,-39],[-45,0],[-2,-19],[0,-103],[0,-17],[0,-30],[0,-15],[1,-25],[0,-23],[0,-56],[-1,-108],[0,-10],[-1,-8],[0,-88],[1,-33],[0,-15],[-1,-138],[0,-62],[0,-29],[2,-178],[1,-58],[0,-2],[0,-89],[1,-27],[0,-48],[0,-30],[-1,-15],[-4,-17],[1,-98],[0,-14],[0,-9],[0,-28],[0,-30],[1,-39],[-2,-178],[-1,-69],[3,-138],[1,-16],[1,-49],[0,-138],[0,-95],[1,-107],[-1,-205]],[[34770,17192],[0,-165],[0,-131],[0,-128],[1,-184],[0,-67],[0,-223],[0,-5],[0,-115],[1,-294],[0,-84],[1,-218],[0,-14],[2,-114],[1,-30],[-2,-44],[0,-15],[-3,-15],[2,-22],[0,-165],[-1,-48],[-3,-217],[-1,-67],[-1,-73],[-1,-43],[0,-24],[-2,-114],[-1,-13],[0,-24],[0,-186],[1,-108],[0,-82],[0,-53],[0,-221],[0,-29],[0,-26],[0,-149],[1,-118],[-1,-16],[0,-4],[1,-14],[0,-72],[0,-41],[1,-119],[0,-4],[0,-12],[0,-17],[-1,-68],[0,-33],[3,-21],[32,5],[21,2],[72,6],[12,1],[6,-1],[10,-2],[51,-12],[17,-6],[40,-17],[61,1],[90,1],[63,14],[47,16],[42,15],[20,8],[13,4],[5,2],[3,-1],[52,-14],[77,-15],[28,-42],[66,-8],[25,7]],[[35621,13107],[-14,-21],[-27,-39],[-15,-23],[0,-27],[-1,-37],[-1,-37],[1,-22],[1,-48],[0,-18],[1,-35],[1,-53],[-1,-49],[-1,-54],[0,-36],[-1,-16],[-1,-17],[-6,-33],[-1,-51],[2,-173],[0,-86],[0,-25],[0,-16],[0,-51],[-1,-51],[0,-208],[-1,-58],[0,-16],[0,-28],[0,-47],[0,-63],[0,-71],[0,-22],[0,-108],[0,-39],[1,-167],[0,-33],[0,-65],[0,-20],[0,-51],[0,-37]],[[35557,11056],[-69,0],[-79,0],[-68,0],[-134,0],[-93,0],[-140,-1],[-260,0],[-130,0],[-227,0],[-69,0],[-26,0],[-127,-1],[-189,-1],[-737,-3],[-378,-1],[-37,0],[-206,0],[-80,1],[-93,0],[-297,-2],[-159,-1],[-79,0],[-246,0],[-293,-1],[-387,-1],[-51,0],[-19,0],[-80,1],[-186,1],[-70,0],[-244,0],[-203,-1],[-17,0],[-176,0],[-37,0],[-45,0],[-29,0],[-230,0],[-93,0],[-259,0],[-190,0],[-147,0],[-41,8],[0,115],[0,69],[-1,26],[-1,12],[2,16],[0,198],[0,97],[1,116],[-1,123],[0,40],[-1,22],[-1,271],[11,79],[34,-1],[69,0],[94,2],[0,116],[0,4],[0,79],[0,40],[0,97],[-1,75],[0,24],[0,15],[0,96],[0,88],[-1,75],[0,120],[-1,64],[1,35],[1,58],[0,124],[0,25],[-53,-3],[-28,-4],[-4,0],[-7,-1],[-23,-11],[-34,-10],[-4,-1],[-15,-2],[-58,-6],[-31,4],[-16,3],[-19,2],[-35,-1],[-17,0],[-18,-3],[-30,-5],[-57,-4],[-41,-3],[-30,0],[-6,0],[-34,5],[-45,9],[-8,2],[-12,3],[-60,10],[-26,-3],[-23,-10],[-26,-12],[-59,-16],[-37,-5],[-21,0],[-20,-1],[-37,8],[-23,5],[-21,8],[-18,7],[-104,56],[-12,23],[-16,12],[-7,3],[-165,61],[-19,7],[-3,1],[-59,17],[-7,3],[-2,1],[-2,0],[-18,8],[-2,-3],[-20,8],[-22,8],[-39,14],[-2,-1],[-3,-2],[-2,-1],[-4,-3],[-16,-11],[-3,-2],[-51,-4],[-2,0],[-199,-26],[-3,0],[-2,-1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-30,-20],[-8,-4],[-45,-22],[-26,-12],[-60,-13],[-20,-3],[-12,0],[-2,0],[-23,3],[-44,9],[-28,5],[-307,14],[-60,2],[-92,4],[-4,3],[-91,55],[-82,84],[12,19],[-71,51],[-147,60],[-21,0],[-1,0],[-21,1],[-125,-1],[-7,0],[-4,-1],[-194,-40],[-147,-87],[-118,-24],[-73,-15],[-90,-19],[-19,-4],[-56,-16],[-75,-13],[-59,-5],[-7,0],[-148,-16],[-26,0],[-12,0],[-171,-1],[-290,0],[-40,0],[-88,41],[-33,15],[-43,4],[-5,-4],[-4,-3],[-42,-33],[-54,-6],[-30,-3],[-9,-1],[-34,-4],[-38,-4],[-5,-1],[-4,0],[-210,29],[-343,93],[-81,50],[26,70],[36,97],[-2,92],[0,15],[-12,6],[-68,31],[-1,1],[-180,16],[-63,-8],[-91,-13],[-5,0],[-11,0],[-98,4],[-46,2],[-85,3],[-39,-12],[-35,-11],[-44,-9],[-13,-3],[-88,-7],[-126,21],[-153,29],[-32,6],[-20,4],[-25,15],[-20,33],[1,62],[-17,18],[-116,57],[-33,5],[-7,1],[-71,7],[-49,4],[-31,-18],[-107,-63],[-9,-5],[-14,-2],[-86,-11],[-128,-17],[-162,50],[-6,158],[0,4],[-119,85],[-40,0],[-3,1],[-39,0],[-73,1],[-16,-7],[-41,-18],[-207,-90],[-50,-14],[-64,-49],[-27,-3],[-16,-8],[-10,-4],[-14,-13],[-15,-12],[-22,-27],[-28,-40],[-12,-40],[6,-25],[-5,-19],[-41,-39],[-15,-14],[-6,-18],[4,-19],[8,-14],[48,-60],[9,-20],[29,-31],[30,-33],[25,-29],[9,-28],[5,-36],[-4,-16],[-26,-31],[-6,-14],[-3,-7],[-3,-7],[-6,-14],[-24,-31],[-21,6],[-17,6],[-42,10],[-32,5],[-19,3],[-3,1],[-3,1],[-13,4],[-20,5],[-18,5],[-17,5],[-29,4],[-13,2],[-15,1],[-11,0],[-21,2],[-23,3],[-25,1],[-48,2],[-44,3],[-21,2],[-24,-3],[-18,-2],[-34,-2],[-38,8],[-22,4],[-28,2],[-22,1],[-38,0],[-23,2],[-27,3],[-20,5],[-23,8],[-26,14],[-26,15],[-28,14],[-22,15],[-19,10],[-12,13],[-24,18],[-23,9],[-19,9],[-27,17],[-30,12],[-19,7],[-28,16],[-12,13],[-18,17],[-16,16],[-7,14],[-6,10],[-4,16],[-16,23],[-11,16],[-17,22],[-14,16],[-18,20],[-15,14],[-17,19],[-14,15],[-25,20],[-13,14],[-27,32],[-13,15],[-29,21],[-25,15],[-18,7],[-25,3],[-22,0],[-19,3],[-10,1],[-23,2],[-29,0],[-27,-2],[-16,-1],[-18,-2],[-40,-6],[-6,-2],[-35,-7],[-43,-5],[-13,0],[-6,0],[-18,-2],[-29,1],[-15,6],[-22,7],[-24,2],[-25,5],[-19,1],[-36,3],[-24,3],[-41,1],[-5,-1],[-18,-1],[-19,19],[-6,8],[-7,10],[-3,7],[-4,9],[-14,9],[-29,34],[-23,17],[-15,6],[-21,7],[-12,5],[-22,12],[-22,10],[-27,19],[-11,13],[-25,22],[-40,30],[-34,35],[-23,26],[-42,31],[-41,23],[-66,17],[-37,10],[-25,7],[-15,1],[-11,1],[-26,0],[-18,1],[-38,-5],[-54,-12],[-17,-4],[-24,-6],[-91,3],[-33,11],[-42,24],[-15,19],[1,34],[17,29],[53,34],[56,28],[26,25],[11,31],[-2,27],[-29,39],[-72,41],[-45,19],[-80,13],[-71,-3],[-55,-7],[-17,-3],[-39,-8],[-27,-3],[-18,-2],[-34,1],[-31,10],[-9,5],[-6,3],[-17,9],[-36,28],[-13,11],[-37,6],[-18,0],[-28,0],[-5,1],[-1,3],[-209,67],[-71,11],[-12,1],[-2,2],[-68,60],[10,78],[-36,50],[-12,47],[-1,42],[22,29],[54,40],[90,47],[76,50],[20,42],[-12,14],[-9,11],[-46,16],[-6,9],[-47,35],[-70,48],[-44,17],[-25,5],[-26,8],[-38,13],[-113,13],[-60,6],[-5,0],[-48,-2],[-3,0],[-52,-2],[-36,-8],[-37,-9],[-26,-2],[-23,-2],[-6,0],[-1,1],[-29,10],[-37,23],[-52,19],[-70,13],[-46,13],[-112,33],[-70,23],[-46,14],[-10,4],[-1,4],[-10,20],[-1,18],[-16,-4],[-1,0],[5,24],[16,38]],[[15740,15966],[18,0],[2,0],[21,0],[93,-2],[112,-2],[607,0],[138,0],[187,0],[42,0],[156,0],[50,0],[230,0],[123,0],[36,11],[19,0],[27,0],[103,-1],[154,0],[19,0],[20,0],[105,0],[231,2],[28,0],[4,0],[57,0],[410,0],[79,0],[128,0],[133,0],[21,0],[39,0],[118,0],[255,0],[21,0],[324,0],[166,0],[53,1],[24,0],[232,3],[53,1],[0,96],[-2,45],[-1,18],[0,35],[0,34],[1,450],[0,59],[1,188],[1,73],[0,26],[0,16],[0,200],[23,0],[0,24],[6,156],[0,23],[1,21],[0,19],[0,40],[0,21],[2,111],[-1,206],[3,88],[0,120],[0,206],[0,157],[0,27],[29,2],[0,78],[0,16],[0,1],[-1,103],[-1,220],[0,16],[0,72],[0,23],[0,254],[0,68],[0,66],[0,57],[0,17],[-1,42],[0,35],[0,23],[0,15],[0,14],[0,17],[-1,28],[-1,24],[-1,27],[-1,20],[0,25],[-1,24],[1,59],[1,60],[0,42],[0,30],[0,22],[1,80],[1,15],[0,59],[2,128],[0,20],[1,57],[1,159],[1,22],[0,51],[1,127],[1,55],[0,54],[1,21],[0,67],[1,66],[1,108],[1,56],[1,89],[0,60],[0,6],[-15,256],[0,60],[0,27],[1,77],[1,81],[0,25],[1,124],[1,214],[0,49],[-19,0],[1,59],[0,25],[1,96],[2,117],[3,106],[0,150],[-1,3],[0,51],[0,7],[0,34]],[[84933,27596],[-1,-49],[-1,-38],[-6,-274],[-9,-362],[-1,-27],[11,-158],[0,-335],[0,-98],[0,-29],[-1,-64],[0,-2],[-1,-16],[-10,-128],[1,-50],[1,-95],[0,-54],[0,-23],[-1,-51],[-83,-1],[-2,-374],[-1,-29],[0,-39],[-1,-31],[0,-15],[0,-92],[1,-42],[15,-7],[4,-2],[12,-4],[6,-2],[17,-7],[14,-3],[7,-2],[10,-2],[1,-1],[13,-2],[14,-4],[22,-4],[4,-2],[16,-7],[9,-8],[4,-5],[15,-14],[19,-11],[6,-1],[18,-1],[16,2],[21,6],[8,2],[18,8],[5,3],[20,10],[15,9],[36,15],[4,1],[16,7],[6,0],[16,1],[30,-6],[26,-12],[25,-12],[16,-3],[21,-1],[24,1],[16,4],[20,9],[15,14],[5,18],[-1,24],[1,20],[-14,14],[-2,7],[-3,7],[16,6],[21,0],[18,1],[20,-3],[1,0],[1,0],[15,6],[13,5],[4,1],[10,6],[3,2],[6,3],[11,25],[34,28],[3,2],[4,3],[6,4],[2,2],[6,16],[14,8],[17,9],[18,4],[33,2],[27,-6],[16,-8],[7,-19],[5,-15],[-1,-17],[9,-15],[8,-6],[5,-4],[16,-11],[19,-8],[32,-21],[13,-13],[13,-14],[29,-10],[20,0],[16,10],[1,17],[-1,3],[-2,14],[15,10],[19,5],[19,-3],[36,6],[11,9],[6,5],[18,-3],[13,-12],[0,-11],[0,-8],[15,-11],[15,-13],[13,-19],[13,-18],[22,-12],[16,-4],[11,-10],[2,-2],[-8,-15],[-2,-3],[-6,-10],[-14,-10],[1,-16],[1,-14],[15,-3],[4,0],[7,-2],[10,-3],[19,-5],[21,-6],[8,-3],[18,-6],[17,3],[27,-6],[20,-5],[27,-7],[16,-6],[35,-19],[6,-16],[19,-13],[24,-9],[22,-1],[16,-1],[9,-1],[12,-10],[9,-13],[24,-13],[19,-1],[8,-1],[12,-2],[20,3],[21,-10],[1,-20],[12,-14],[9,-10],[5,-6],[8,-5],[6,-5],[18,-9],[12,-6],[4,-2],[15,-10],[13,-12],[1,-1],[14,-16],[8,-13],[9,-12],[15,-21],[9,-13],[10,-11],[11,-21],[15,-5],[24,-6],[3,-1],[13,-13],[2,-19],[23,-10],[26,1],[18,-3],[21,4],[17,2],[16,1],[14,8],[3,0],[15,1],[25,0],[22,-2],[47,-15],[8,-15],[14,-15],[8,-8],[16,-8],[19,-13],[18,0],[2,1],[16,3],[17,2],[4,3],[13,9],[10,2],[7,1],[15,6],[15,5],[13,5],[5,2],[19,1],[11,-15],[1,-5],[4,-17],[-2,-18],[-1,-15],[12,-10],[18,-4],[7,-4],[8,-4],[18,-13],[20,-8],[11,-12],[22,-6],[15,-7],[2,-15],[0,-20],[17,-4],[30,-1],[23,-1],[24,-2],[13,-9],[18,-5],[25,-6],[8,-1],[17,-1],[5,0],[12,0],[23,0],[20,4],[17,-1],[13,-10],[7,-11],[2,-4],[14,-13],[13,-18],[25,-25],[10,-13],[18,-7],[16,-7],[28,-18],[17,-7],[9,-15],[-1,-16],[2,-18],[-5,-9],[-3,-5],[16,2],[25,2],[18,0],[15,-12],[8,-13],[23,-9],[16,-6],[13,10],[3,-1],[14,-5],[11,-13],[8,-14],[-1,-9],[-1,-6],[13,-11],[7,-17],[18,-12],[16,-5],[14,-8],[0,-17],[1,-15],[9,-12],[17,-9],[19,-10],[17,-5],[16,6],[16,-2],[10,-14],[18,-8],[13,-12],[8,-16],[22,-8],[20,-5],[20,-4],[3,-1],[25,-8],[16,-10],[13,-14],[20,-7],[15,-7],[3,0],[17,-1],[14,7],[8,4],[26,11],[17,-2],[2,0],[39,-11],[23,-9],[17,-5],[22,-3],[16,2],[12,2],[22,5],[30,9],[21,1],[14,-3],[2,0],[74,-19],[18,-6],[16,-5],[6,-2],[22,-5],[18,-1],[19,-6],[22,-9],[2,-1],[2,0],[16,-5],[17,-5],[11,-4],[6,-2],[1,0],[18,-11],[10,-3],[5,-1],[15,-5],[9,-2],[16,-8],[1,0],[1,-1],[16,-16],[1,-1],[1,-7],[2,-7],[19,-6],[15,-12],[17,-20],[19,-12],[5,0],[25,0],[54,0],[37,0],[135,0],[325,-1],[166,1],[23,0],[166,-1],[234,0],[74,0],[223,0],[-1,-18],[-1,-114],[0,-16],[-1,-57],[0,-39],[-1,-74],[-1,-57],[0,-31]],[[90586,23305],[-209,0],[-340,-1],[-91,0],[-81,1],[-7,0],[-12,0],[-18,0],[-16,-1],[-94,0],[-21,0],[-69,-1],[-52,5],[-19,0],[-19,0],[-16,0],[-18,0],[-23,0],[-39,0],[-22,1],[-16,-3],[-18,3],[-62,-1],[-16,-5],[-34,0],[-20,0],[-27,0],[-81,0],[-81,0],[-65,0],[-22,0],[-27,0],[-17,3],[-17,0],[-50,0],[-37,0],[-62,-1],[-16,0],[-21,0],[-19,0],[-49,0],[-21,0],[-40,0],[-19,0],[-26,0],[-28,0],[-16,0],[-54,0],[-24,0],[-44,0],[-35,0],[-35,0],[-21,0],[-32,0],[-17,1],[-26,0],[-5,0],[-13,0],[-16,0],[-17,0],[-14,0],[-6,0],[-23,0],[-55,0],[-18,2],[-20,1],[-17,-2],[-19,0],[-16,0],[-40,0],[-30,0],[-23,0],[-25,0],[-19,0],[-40,0],[-18,0],[-17,0],[-22,0],[-17,0],[-22,0],[-39,0],[-32,-1],[-18,0],[-28,1],[-37,-1],[-39,1],[-17,0],[-30,0],[-34,-1],[-17,0],[-17,0],[-40,1],[-22,0],[-18,0],[-30,0],[-41,-1],[-22,0],[-18,0],[-22,0],[-27,0],[-24,0],[-20,0],[-25,0],[-23,0],[-17,0],[-33,-1],[-33,0],[-23,0],[-21,0],[-34,0],[-23,0],[-44,0],[-23,0],[-72,0],[-36,0],[-44,0],[-38,0],[-41,-1],[-30,1],[-63,-1],[-48,0],[-20,0],[-17,0],[-16,0],[-25,0],[-49,0],[-34,0],[-19,0],[-26,0],[-26,0],[-60,0],[-34,-1],[-32,0],[-21,0],[-33,0],[-50,0],[-16,0],[-24,0],[-72,0],[-30,0],[-17,0],[-27,0],[-27,-1],[-59,0],[-24,0],[-34,0],[-29,0],[-32,0],[-29,0],[-34,0],[-43,0],[-21,-1],[-6,0],[-13,0],[-40,0],[-29,0],[-52,0],[-27,-1],[-25,0],[-59,0],[-18,0],[-21,0],[-19,0],[-23,0],[-37,-1],[-37,0],[-29,0],[-28,1],[-25,-1],[-33,0],[-29,0],[-23,0],[-26,0],[-23,0],[-24,0],[-28,0],[-33,0],[-20,0],[-36,0],[-42,0],[-26,0],[-29,0],[-47,-1],[-16,1],[-30,0],[-73,-1],[-24,0],[-57,0],[-1,0],[-19,0],[-28,0],[-41,0],[-23,1],[-33,0],[-19,0],[-20,0],[-19,-1],[-61,0],[-17,0],[-19,0],[-45,0],[-23,0],[-21,0],[-22,0],[-30,0],[-27,-1],[-31,0],[-41,0],[-49,1],[-36,0],[-23,0],[-19,0],[-19,0],[-19,-1],[-35,0],[-23,0],[-21,0],[-21,1],[-24,1],[-19,0],[-23,0],[-4,0],[-17,0],[-22,0],[-16,-3],[-27,-1],[-18,1],[-3,0],[-18,2],[-18,0],[-17,-1],[-23,0],[-18,-1],[-15,1],[-5,0],[-16,1],[-34,-2],[-19,1],[-30,0],[-31,0],[-40,0],[-40,1],[-67,0],[-24,0],[-48,0],[-24,0],[-35,0],[-123,1],[-111,0],[-21,0],[-32,0],[-25,1],[-26,0],[-30,0],[-57,0],[-26,0],[-75,0],[-24,0],[-58,1],[-42,0],[-37,0],[-41,0],[-30,0],[-22,0],[-41,0],[-52,0],[-48,0],[-35,1],[-23,-1],[-17,0],[-17,1],[-30,-1],[-47,1],[-54,0],[-38,0],[-73,0],[-160,-2],[-159,-2],[-83,1],[-193,2],[-33,0],[-17,0],[-18,0],[-21,0],[-31,0],[-30,0],[-27,-1],[-18,0],[-171,1],[-38,1],[-68,-2],[-27,0],[-57,0],[-19,0],[-25,0],[-37,1],[-41,-1],[-18,0],[-31,0],[-123,-1],[-159,0],[-116,-1],[-204,0],[-48,0],[-204,1],[-36,1],[-37,0],[-41,0],[-21,0],[-39,0],[-32,0],[-21,0],[-28,-1],[-26,0],[-26,0],[-22,0],[-23,0],[-32,0],[-211,1],[-340,0],[-98,0],[-169,1],[-149,0],[-64,0],[-365,1],[-370,0],[-187,0],[-58,0],[-193,0],[-360,-1],[-152,1],[-108,0],[-52,0]],[[76172,23302],[-266,1],[-34,0],[-62,0],[-23,0],[-24,0],[-58,0],[-144,0],[-223,0],[-277,0],[-379,1],[-218,1],[-220,0],[-3,-25],[3,-19],[-135,-9],[-112,0],[-17,0],[-134,0],[-51,0],[-130,0],[-53,0],[-182,-1],[-101,0],[-19,0]],[[68311,18425],[0,-38],[0,-44],[-1,-148],[-1,-268],[-6,-302],[0,-403],[0,-131],[0,-113],[0,-57],[-1,-234],[0,-58],[0,-59],[0,-55],[0,-50],[0,-60],[0,-262],[3,-198]],[[68305,15945],[-231,-1],[-1010,-3],[-17,0],[-45,-1],[-35,2],[-62,1],[-506,2],[-239,0],[-1507,0],[-153,1],[5,-108],[-1,-47],[-2,-262],[-4,-513],[-1,-169],[-1,-153],[0,-46],[-1,-287],[0,-120],[0,-100],[0,-358],[1,-129],[1,-1077],[1,-382],[107,0],[1,-1226],[935,-1],[1,-176],[2,-352],[1,-87],[0,-29],[0,-16],[0,-2],[0,-15],[0,-50],[-2,-191],[0,-42],[0,-57],[-1,-39],[1,-24],[-3,-158],[-254,0],[-371,-1],[-308,-1],[0,-168],[1,-296],[0,-83],[0,-75],[0,-30],[-3,-43],[1,-20]],[[64606,9013],[-17,-13],[-18,-18],[-14,-15],[-14,-12],[-15,-10],[-17,-11],[-31,-16],[-19,-14],[-24,-14],[-20,-4],[-17,-5],[-18,-2],[-35,2],[-22,5],[-18,7],[-16,8],[-12,10],[-20,17],[-6,20],[-1,16],[-1,22],[0,2],[1,20],[-38,42],[-19,8],[-187,-3],[-59,-6],[-29,-6],[-32,-3],[-29,4],[-20,5],[-27,13],[-38,17],[-47,12],[-47,4],[-41,-4],[-31,-7],[-21,-5],[-20,-4],[-15,-4],[-16,-3],[-24,-6],[-33,4],[-67,36],[-17,18],[-16,29],[-14,15],[-7,9],[-19,12],[-5,3],[-22,11],[-93,40],[-42,19],[-14,12],[-14,16],[-13,21],[-11,27],[-27,57],[-13,11],[-25,16],[-36,12],[-106,33],[-30,16],[-27,21],[-48,39],[-16,19],[-22,27],[-18,17],[-16,8],[-41,11],[-27,12],[-30,17],[-22,17],[-20,25],[-8,16],[-22,52],[-31,45],[-70,67],[-14,10],[-39,18],[-23,5],[-28,1],[-29,-2],[-140,-11],[-133,-19],[-29,-9],[-25,-7],[-24,-7],[-27,-14],[-15,-7],[-22,-17],[-36,-25],[-21,-15],[-24,-19],[-29,-22],[-16,-13],[-17,-8],[-29,-10],[-22,-5],[-39,-3],[-33,-1],[-38,1],[-37,3],[-33,5],[-24,3],[-34,2],[-27,0],[-21,0],[-22,-1],[-39,-8],[-153,-27],[-37,-7],[-26,-3],[-72,-4],[-146,-7],[-135,-9]],[[60812,9640],[-1,100],[0,13],[0,52],[0,131],[0,33],[0,119],[0,48],[0,16],[-3,144],[-1,48],[0,17],[3,45],[0,16],[0,15],[-1,20],[0,15],[1,20],[0,54],[1,15],[0,15],[0,27],[0,44],[0,20],[0,17],[0,15],[0,33],[0,18],[0,27],[-8,22],[1,18],[0,1],[2,97],[5,65],[1,16],[-1,17],[0,24],[1,18],[-1,32],[0,16],[0,31],[0,40],[0,23],[0,21],[0,19],[0,62],[0,19],[0,19],[0,16],[0,21],[0,20],[-4,17],[2,278],[0,68],[2,258],[1,194],[168,0],[452,0],[302,0],[32,0],[0,81],[-1,213],[0,72],[0,203],[-1,140],[0,104],[0,137],[0,291],[-1,90],[0,494],[0,60],[-1,265],[-3,1784],[-4,1069],[-1328,-3],[-78,0],[-178,1],[-750,3],[-733,3],[-26,0],[-29,0],[-82,0],[-219,0],[-126,0],[-116,0],[-127,0],[-188,0],[-36,0],[-153,-1],[-18,0],[-192,0],[-144,0],[-31,0],[-267,0],[-35,0]],[[56899,17215],[-582,5],[-649,-1],[-811,-1],[-91,0],[-387,0],[-80,-3],[-1469,-2],[-519,-1],[-10,0],[-31,1],[-27,3],[-20,1],[-17,2],[-32,0],[-40,-1],[-13,0],[-14,0],[-42,0],[-29,0],[-35,0],[-24,0],[-97,0],[-7,0],[-183,-1],[-62,-1],[-90,0],[-112,0],[-287,0],[-101,0],[-294,-1],[-43,0],[-72,0],[-85,1],[-275,0],[-46,0],[-56,-1],[-213,1],[-281,0],[-95,0],[-221,0],[-104,0],[-37,0],[-75,0],[-127,0],[-38,0],[-19,0],[-56,0],[-64,1],[-90,0],[-103,0],[-81,1],[-75,0],[-83,0],[-57,0],[-46,0],[-55,-1],[-100,0],[-21,-1],[-81,0],[-95,-1],[-124,-1],[-27,0],[-146,-1],[-151,-1],[-51,0],[-80,0],[-65,0],[-30,0],[-62,0],[-26,-1],[-6,0],[-12,0],[-70,0],[-80,0],[-68,0],[-12,0],[-68,0],[-315,-2],[-308,0]],[[46249,17209],[0,25],[0,55],[0,21],[0,104],[0,79],[1,94],[1,99],[0,21],[-1,43],[-1,87],[1,17],[0,15],[0,47],[0,1],[0,16],[1,17],[1,18],[1,29],[0,14],[1,24],[-34,0],[-3,0],[-19,0],[-71,0],[-44,-1],[-109,0],[-47,0],[0,37],[0,17],[0,23],[0,40],[1,92],[0,76],[0,41],[0,27],[1,18],[0,16],[0,16],[0,2],[0,15],[0,5],[0,13],[0,40],[0,42],[0,10],[0,17],[1,22],[0,63],[0,18],[0,24],[0,10],[0,33],[1,37],[0,36],[0,8],[0,13],[0,22],[0,8],[0,71],[0,31],[-11,34],[-27,2],[-37,-9],[-5,2],[-19,7],[-12,9],[-5,3],[-9,6],[-16,12],[-37,14],[-25,8],[-91,0],[-10,0],[-86,-15],[-45,20],[-3,-1],[-38,-11],[-3,7],[-24,46],[-40,10],[-32,10],[-9,3],[-10,-4],[-44,-14],[-55,-22],[-31,-13],[-90,26],[-46,-3],[-1,0],[-21,-1],[-16,-9],[-42,-23],[-36,-23],[-32,-30],[-30,-10],[-15,-4],[-15,-4],[-6,1],[-2,0],[-20,0],[-46,24],[-54,19],[-37,13],[-40,15],[-47,16],[-25,15],[-29,5],[-21,0],[-20,-4],[-12,-5],[-7,-2],[-26,-21],[-7,-6],[-13,-4],[-2,0],[-40,-5],[-52,-2],[-83,-6],[-34,1],[-7,1],[-33,7],[-10,5],[-10,8],[-14,14],[-13,10],[-20,10],[-24,7],[-20,-1],[-69,-12],[-2,0],[-12,0],[-18,1],[-60,12],[-20,1],[-14,-2],[-54,-6],[-45,-6],[-22,-3],[-15,0],[-11,5],[-12,9],[-20,6],[-14,1],[-15,-1],[-14,-1],[3,18],[1,26],[-1,50],[0,36],[0,31],[1,52],[0,23],[1,122],[0,22],[0,19],[0,18],[0,32],[1,21],[-2,15],[1,17],[119,1],[0,21],[0,68],[2,41],[1,20],[0,18],[1,20],[1,20],[0,30],[0,142],[0,45],[-150,-2],[-61,0],[-112,2],[-2,240],[-1,46],[0,19],[-1,166],[-1,73],[15,12],[14,8],[15,6],[14,8],[14,16],[5,16],[21,3],[20,-10],[16,-5],[23,-1],[17,-6],[20,-10],[17,3],[-8,16],[10,11],[10,13],[-2,14],[5,15],[21,20],[1,15],[7,15],[18,1],[21,6],[13,15],[7,18],[14,13],[22,16],[18,10],[26,12],[22,16],[23,10],[13,14],[17,8],[20,-4],[26,-1],[13,8],[4,19],[13,10],[10,14],[-2,20],[10,14],[7,25],[9,37],[10,15],[16,12],[21,17],[-5,21],[-5,19],[7,23],[1,21],[13,12],[20,8],[-4,17],[-9,14],[-12,12],[-19,10],[-23,7],[-17,4],[-23,5],[-13,11],[-6,19],[-8,21],[-7,21],[-3,17],[-10,12],[-8,13],[2,14],[0,20],[-18,-3],[-21,0],[-21,2],[-16,-8],[-19,-5],[-16,-3],[-25,-3],[-30,-7],[-16,-3],[-23,-1],[-21,-1],[-24,3],[-40,12],[-18,4],[-30,8],[-38,21],[-42,28],[-22,11],[-58,-6],[-46,-3],[-40,3],[-30,2],[-22,8],[-24,9],[-40,8],[-45,33],[-1,25],[-18,9],[-18,10],[-23,10],[-27,0],[-16,8],[-19,18],[-12,10],[-6,14],[0,15],[-16,10],[-12,19],[-13,11],[-21,9],[-19,26],[-28,17],[-25,3],[-18,9],[-6,15],[0,19],[13,11],[18,10],[-11,24],[-8,13],[-12,15],[-24,24],[-35,7],[-37,16],[-26,13],[-20,18],[-41,8],[-20,3],[-14,10],[-22,7],[-6,21],[9,15],[13,17],[-7,27],[2,17],[16,17],[8,21],[11,16],[11,13],[4,19],[15,11],[8,28],[34,21],[16,6],[22,8],[15,11],[-23,14],[-17,5],[-22,13],[-4,25],[6,22],[17,6],[11,31],[-8,15],[-35,17],[-19,0],[-17,10],[-21,11],[-22,20],[-18,10],[-41,9],[-28,4],[-12,20],[-9,13],[-28,0],[-28,-8],[-24,-5],[-16,-6],[-17,4],[-22,-3],[-23,-2],[7,15],[-9,15],[-18,11],[-21,1],[-54,11],[-22,29],[-40,40],[-21,15],[-32,-1],[-29,-9],[-17,-2],[-20,0],[-36,0],[-31,-8],[-24,-5],[-38,8],[-5,14],[-9,15],[-27,12],[-27,9],[-25,15],[-12,29],[1,21],[3,15],[-28,16],[-16,24],[-27,9],[-11,14],[-8,18],[-23,23],[-18,20],[-21,17],[-42,5],[-39,-4],[-44,4],[-19,5],[-19,10],[-17,3],[-23,-7],[-24,0],[-29,-3],[-20,-6],[-37,-8],[-53,0],[-40,-15],[-27,-3],[-27,-10],[-30,-10],[-9,18],[-2,19],[0,21],[4,14],[4,24],[7,31],[13,27],[10,22],[-2,15],[-8,22],[0,25],[-12,18],[1,19],[6,15],[9,25],[8,13],[16,11],[7,17],[12,23],[10,13],[20,23],[14,14],[25,3],[22,10],[6,16],[23,24],[-7,23],[8,19],[13,13],[15,28],[-14,19],[-19,21],[-6,33],[-15,20],[41,54],[65,43],[30,8],[15,11],[-11,16],[3,22],[9,20],[0,15],[-3,20],[4,18],[10,25],[17,21],[-14,10],[-8,13],[1,21],[4,14],[-7,23],[-25,20],[-29,18],[-9,16],[-6,18],[-17,17],[-9,16],[-17,4],[-22,1],[-40,-1],[-16,-3],[-22,-3],[-38,10],[-23,7],[4,16],[1,15],[-3,17],[6,16],[-21,9],[-29,21],[-13,11],[-10,17],[-13,27],[-8,17],[-17,11],[-23,19],[-6,17],[0,31],[10,22],[6,14],[-9,14],[3,19],[14,13],[24,9],[18,13],[20,4],[25,13],[12,10],[15,8],[25,12],[17,5],[-1,15],[-9,19],[-9,21],[-15,9],[-15,14],[-27,34],[-4,20],[-7,17],[4,18],[6,15],[-4,21],[-1,19],[4,30],[-1,15],[25,44],[-1,17],[2,15],[-8,17],[14,18],[14,8],[21,8],[17,7],[19,23],[1,14],[2,19],[13,10],[46,35],[27,16],[42,47],[13,9],[1,15],[-7,18],[-13,16],[-18,21],[-11,14],[-19,6],[-28,6],[-30,-6],[-21,1],[-18,3],[-19,-7],[-54,-21],[-22,12],[-13,10],[-14,15],[-14,12],[-32,20],[-14,15],[-16,10],[-23,19],[-10,21],[1,16],[1,32],[-1,15],[7,19],[5,26],[8,21],[7,18],[-2,29],[-2,20],[-4,15],[-32,25],[-6,15],[-16,12],[-10,21],[-2,26],[-20,13],[-13,10],[5,28],[13,24],[5,26],[7,23],[17,18],[-4,26],[-6,22],[-8,19],[-16,19],[-10,17],[-9,13],[-27,21],[-7,13],[-4,21],[-3,17],[-3,23],[-4,19],[-9,16],[-12,11],[-11,25],[-14,24],[-15,18],[-18,12],[-20,11],[-23,6],[-25,7],[-21,11],[-25,23],[-23,12],[-17,13],[-23,26],[-21,9],[-16,-3],[-17,-3],[-20,-3],[-4,-23],[-9,-35],[-13,-20],[-16,-24],[-13,-13],[-42,-11],[-24,1],[-37,10],[-16,10],[-18,-1],[-22,-3],[-27,-10],[-22,-5],[-21,-6],[-23,13],[-17,4],[-24,-4],[-21,-8],[-10,-16],[-19,-3],[-20,-9],[-19,-10],[-27,-16],[-26,-14],[-17,-3],[-32,2],[-42,-22],[-10,-21],[-10,-25],[-13,-22],[-16,-22],[-28,-24],[-41,12],[-16,4],[-28,7],[-41,1],[-37,2],[-37,-7],[-45,-3],[-11,18],[-18,15],[-14,15],[-7,16],[-10,17],[-8,17],[-14,13],[-18,-3],[-24,2],[-25,15],[-37,15],[-22,-1],[-36,-5],[-42,-7],[-41,7],[-35,-2],[-28,4],[-15,5],[-19,-22],[-21,-12],[-28,0],[-41,-4],[-29,-11],[-35,-1],[-34,-9],[-37,-4],[-13,-17],[-10,-14],[-20,-9],[-26,-21],[-25,-23],[-21,-21],[-29,-19],[-34,-16],[-36,-7],[-16,21],[-24,16],[-1,28],[-14,10],[-28,5],[-21,5],[-30,0],[-28,6],[-17,0],[-25,-8],[-17,-8],[-25,-6],[-31,-2],[-39,-1],[-43,-22],[-33,2],[-26,23],[-13,26],[-5,24],[7,28],[13,23],[1,31],[7,26],[21,28],[23,16],[22,16],[17,16],[17,14],[4,17],[-14,20],[5,32],[9,20],[-17,6],[-25,15],[-22,1],[-24,0],[-37,-6],[-27,0],[-16,4],[-27,7],[-20,18],[-16,10],[-26,11],[-17,10],[-23,7],[-25,3],[-23,1],[-24,0],[-38,5],[-47,3],[-66,-2],[-43,8],[-22,4],[-30,10],[-9,13],[-11,12],[-15,27],[-19,0],[-20,9],[-11,12],[-23,-3],[-30,7],[-27,-8],[-40,-6],[-36,-5],[-30,6],[-33,12],[-31,12],[-29,10],[-25,3],[-20,6],[-9,14],[-15,16],[-26,13],[-17,12],[-8,13],[-24,1],[-33,1],[-51,4],[-35,5],[-28,14],[-23,13],[-43,7],[-34,11],[-15,11],[-14,19],[-14,7],[-23,11],[-20,10],[-19,13],[-23,6],[-17,9],[-15,14],[-17,17],[-23,11],[-18,4],[-23,12],[-12,13],[-15,8],[-26,18],[-15,12],[-62,-4],[-38,-2],[-19,-3],[-15,-11],[-26,-12],[-35,-4],[-27,-19],[-27,-10],[-25,-15],[-24,-3],[-16,11],[-10,20],[-9,20],[-14,15],[-26,13],[-22,6],[-32,3],[-30,5],[-19,-2],[-20,7],[-37,17],[-18,11],[-20,6],[-35,12]],[[99945,28397],[0,-1],[8,-1091],[2,-507],[1,-143],[2,-563],[4,-1032],[3,-808],[0,-74],[0,-50],[2,-432],[2,-1298],[0,-271],[0,-45],[1,-569]],[[99970,21513],[-30,6],[-15,9],[-16,5],[-24,17],[-18,15],[-5,14],[-19,14],[-17,7],[-16,-1],[-22,6],[-16,7],[-17,15],[-10,15],[-8,16],[10,21],[7,13],[3,21],[13,15],[14,19],[3,14],[-16,9],[-18,2],[-21,0],[-15,6],[-20,3],[-17,9],[-15,12],[-14,12],[-17,15],[-22,18],[-10,17],[-20,6],[-27,7],[-22,4],[-18,3],[-19,-8],[-19,-10],[-16,-9],[-14,-15],[-22,-11],[-34,2],[-19,-14],[-29,1],[-17,-7],[-15,-7],[-22,-4],[-20,1],[-18,3],[-19,10],[-26,7],[-16,4],[-21,2],[-20,3],[-13,10],[-16,4],[-18,-14],[-21,-1],[-25,2],[-16,6],[-16,-1],[-18,3],[-15,9],[-21,1],[-22,8],[-17,5],[-23,7],[-14,7],[-15,11],[-9,13],[-16,12],[-14,8],[-31,4],[-20,7],[-19,5],[-26,-5],[-19,1],[-23,4],[-25,9],[-28,9],[-22,16],[-22,16],[-10,14],[-26,15],[-45,31],[-28,16],[-20,10],[-28,16],[-24,21],[-11,18],[-9,12],[-1,15],[-16,5],[-26,-6],[-17,-14],[-17,-7],[-23,-6],[-20,-10],[-23,-11],[-28,-9],[-34,3],[-20,3],[-32,-2],[-43,9],[-27,10],[-18,5],[-23,-8],[-17,0],[-15,7],[-15,8],[-15,16],[-28,10],[-21,11],[-17,-11],[-13,-14],[-16,-12],[-6,-20],[-25,-17],[-32,-2],[-35,-3],[-20,-1],[-30,-8],[-18,-4],[-16,-1],[-15,-6],[-27,-3],[-16,-2],[-24,-1],[-40,-1],[-30,-1],[-18,1],[-24,4],[-23,-6],[-18,6],[-24,6],[-19,17],[-24,6],[-15,6],[-15,8],[-16,7],[-10,18],[-19,18],[-3,20],[13,18],[-10,12],[-19,3],[-18,10],[-18,13],[-9,13],[-2,16],[-11,11],[-8,14],[-14,16],[-28,9],[-17,16],[14,16],[17,7],[12,11],[3,16],[-6,18],[2,19],[-2,18],[-11,24],[-18,12],[-11,11],[14,12],[14,29],[2,4],[8,20],[-27,18],[-14,12],[-12,13],[-19,29],[-7,24],[-28,19],[-6,18],[-4,28],[-10,19],[-25,19],[-12,17],[-5,15],[-1,18],[11,17],[11,25],[17,21],[5,20],[-28,22],[-13,12],[-23,12],[9,28],[13,11],[1,16],[-3,22],[-1,17],[-51,27],[-23,16],[-26,18],[-14,12],[-9,15],[-27,10],[-32,21],[-5,14],[-11,19],[-25,16],[-15,11],[-17,16],[-22,10],[-9,14],[-97,0],[-26,0],[-204,0],[-145,0],[-80,1],[-318,0],[-86,0],[-141,1],[-19,0],[-344,1],[-656,1],[-35,0],[-154,0],[-212,0]],[[94240,23237],[1,41],[-1,191],[0,50],[0,142],[-1,68],[0,50],[0,64],[-1,381],[0,3],[-1,46],[0,128],[0,45],[0,14],[0,19],[0,82],[-1,200],[0,24],[-1,68],[0,54],[0,143],[4,126],[0,94],[0,78],[0,78],[0,138],[0,163],[-12,34],[-1,30],[0,14],[0,121],[0,22],[-2,117],[0,160],[-1,46],[0,83],[0,104],[0,25],[3,33],[0,41],[0,17],[0,23],[-1,31],[1,21],[-1,20],[1,38],[0,7],[0,8],[0,16],[0,44],[0,27],[0,15],[1,20],[-1,18],[1,15],[1,14],[1,27],[-1,21],[-2,20],[31,1],[2,18],[-1,94],[0,26],[-2,68],[0,49],[-1,53],[0,22],[0,30],[-1,50],[0,16],[0,24],[0,34],[1,32],[1,49],[1,9]],[[94240,23237],[-371,0],[-30,0],[-311,0],[-23,0],[-373,0],[-40,0],[-175,0],[-302,-1],[-51,1],[-27,0],[-95,0],[-88,1],[-29,0],[-39,0],[-86,1],[-17,0],[-69,0],[-85,1],[-45,0],[-164,-1],[-82,0],[-114,0],[-17,-1],[-22,0],[-21,0],[-4,41],[2,26],[-67,0],[-36,0],[-73,0],[-130,1],[-32,0],[-20,0],[-187,-1],[-175,0],[-160,-1],[-22,0],[-18,0],[-56,1]],[[11765,25880],[0,-32],[0,-27],[0,-60],[0,-56],[0,-46],[0,-59],[0,-51],[0,-31],[-1,-28],[0,-14],[0,-29],[0,-71],[0,-20],[0,-59],[0,-65],[0,-30],[0,-8],[0,-7],[0,-39],[0,-41],[0,-40],[1,-24],[0,-22],[0,-51],[0,-16],[-1,-27],[0,-20],[0,-24],[-1,-23],[-1,-19],[0,-17],[1,-15],[0,-25],[1,-16],[0,-17],[0,-29],[0,-30],[-2,-36],[0,-15],[1,-16],[1,-24],[-1,-47],[2,-16],[1,-21],[0,-15],[-1,-21],[0,-33],[0,-15],[-1,-16],[0,-19],[0,-16],[-1,-19],[0,-15],[0,-14],[1,-18],[0,-31],[-1,-21],[0,-1],[2,-23],[1,-64],[-4,-15],[1,-17],[1,-32],[2,-15],[0,-6],[1,-35],[0,-32],[0,-19],[0,-37],[0,-28],[-5,-15],[0,-34],[-1,-29],[0,-34],[0,-6],[-1,-23],[-1,-28],[0,-16],[0,-29],[0,-14],[-1,-35],[-1,-59],[0,-23],[-1,-42],[0,-18],[0,-15],[1,-26],[0,-27],[-1,-15],[0,-15],[0,-27],[18,0],[50,0],[46,0],[53,0],[29,0],[32,0],[23,0],[30,0],[28,0],[24,0],[37,0],[30,0],[17,0],[22,0],[24,0],[22,0],[34,-1],[24,0],[33,1],[29,0],[23,-1],[11,-104],[-1,-48],[0,-11],[0,-27],[0,-19],[-1,-34],[0,-28],[0,-16],[0,-21],[1,-21],[0,-12],[0,-4],[0,-63],[0,-16],[1,-51],[0,-33],[0,-15],[0,-7],[0,-11],[1,-24],[0,-18],[0,-16],[0,-18],[0,-20],[0,-20],[0,-15],[0,-21],[-1,-38],[0,-16],[0,-21],[0,-44],[0,-20],[0,-24],[0,-49],[-1,-15],[0,-16],[0,-17],[0,-36],[-1,-28],[0,-14],[0,-21],[0,-37],[0,-29],[0,-15],[0,-23],[0,-23],[0,-16],[0,-32],[1,-20],[-1,-29],[1,-17],[0,-45],[0,-21],[0,-41],[0,-25],[1,-14],[0,-2],[0,-14],[0,-27],[0,-8],[-1,-31],[0,-38],[1,-31],[0,-29],[0,-18],[0,-21],[0,-20],[0,-37],[0,-22],[0,-19],[0,-16],[0,-25],[1,-37],[0,-22],[0,-15],[0,-23],[0,-33],[0,-18],[1,-22],[0,-17],[0,-29],[0,-67],[0,-25],[-1,-79],[0,-15],[0,-18],[0,-45],[0,-26],[-1,-61],[0,-43],[0,-41],[0,-22],[0,-17],[-1,-15],[-80,-8],[-105,0],[-115,1],[-23,0],[-17,0],[-33,-1],[-29,1],[-21,0],[-18,0],[-79,0],[-25,0],[-59,0],[-36,0],[-2,-55],[-1,-47],[0,-31],[0,-19],[1,-15],[0,-36],[-2,-27],[0,-19],[0,-15],[1,-44],[-1,-48],[0,-29],[0,-30],[0,-17],[1,-16],[0,-15],[0,-16],[0,-19],[-1,-62],[0,-18],[0,-15],[0,-18],[1,-16],[-1,-37],[0,-46],[-1,-18],[1,-23],[-1,-20],[0,-21],[0,-38],[0,-25],[0,-20],[0,-26],[0,-15],[0,-53],[-1,-28],[0,-28],[0,-32],[0,-25],[0,-49],[0,-32],[0,-31],[-1,-51],[17,-1],[5,-14],[1,-19],[0,-16],[1,-53],[1,-28],[1,-35],[1,-31],[0,-15],[0,-14],[0,-31],[0,-18],[1,-55],[0,-39],[0,-18],[1,-21],[0,-31],[0,-18],[0,-15],[1,-38],[-1,-29],[0,-19],[1,-31],[0,-26],[0,-30],[0,-20],[1,-31],[0,-21],[0,-22],[-1,-41],[0,-42],[-1,-28],[1,-16],[-1,-23],[1,-36],[-1,-42],[0,-25],[-1,-29],[2,-64],[0,-37],[1,-25],[0,-1],[1,-20]],[[11779,18502],[-20,14],[-13,16],[-29,23],[-19,14],[-18,11],[-5,3],[-31,16],[-34,14],[-48,4],[-18,-1],[-22,1],[-31,4],[-17,3],[-16,4],[-20,-4],[-18,-5],[-21,1],[-17,-2],[-16,3],[-38,9],[-23,9],[-8,3],[-7,1],[-15,3],[-20,4],[-24,-6],[-30,-4],[-8,-1],[-9,-1],[-17,-3],[-4,-1],[-25,-4],[-17,4],[-26,8],[-15,5],[-6,2],[-37,13],[-16,4],[-16,5],[-20,6],[-32,6],[-35,2],[-29,4],[-33,10],[-31,10],[-31,-4],[-42,7],[-42,9],[-25,10],[-15,17],[-10,12],[-9,18],[-3,23],[-9,19],[-16,11],[-2,17],[3,14],[-19,24],[-23,16],[-16,12],[-18,19],[-13,18],[-16,17],[-18,20],[-22,23],[-34,26],[-20,5],[-24,13],[-28,19],[-11,13],[-10,21],[1,38],[7,18],[-6,19],[-25,42],[-6,11],[-3,4],[-8,13],[-10,24],[-9,23],[-13,13],[-17,22],[-15,24],[-11,21],[-27,24],[-21,10],[-26,17],[-16,21],[-11,15],[-16,18],[-22,30],[-9,24],[-16,17],[-7,17],[-18,18],[-29,23],[-9,12],[-17,13],[-18,8],[-16,4],[-23,5],[-3,1],[-27,5],[-32,8],[-16,4],[-12,10],[-6,6],[-17,10],[-17,10],[-15,6],[-27,8],[-36,19],[-22,8],[-20,0],[-30,-4],[-18,-3],[-22,-3],[-20,4],[-21,9],[-37,16],[-49,26],[-55,29],[-45,17],[-23,12],[-7,4],[-28,6],[-25,8],[-31,8],[-6,1],[-27,21],[-17,20],[-19,17],[-7,15],[-6,20],[-2,6],[-14,19],[-7,18],[-21,16],[-14,15],[-14,29],[-11,12],[-20,12],[-28,15],[-3,1],[-17,5],[-22,12],[-19,15],[-36,26],[-36,17],[-36,10],[-33,8],[-20,15],[-25,15],[-18,16],[-19,13],[-8,5],[-6,2],[-23,9],[-23,16],[-26,29],[-3,5],[-8,12],[-15,9],[-20,13],[-72,43],[-12,10],[-31,9],[-9,12],[-15,12],[-20,22],[-19,16],[-7,18],[-25,19],[-22,12],[-29,15],[-19,14],[-21,8],[-38,4],[-16,6],[-16,11],[-13,17],[-16,25],[-10,17],[-25,19],[-22,23],[-43,36],[-24,22],[-19,16],[-24,14],[-15,21],[-12,17],[-9,13],[-24,23],[-22,18],[-10,6],[-15,9],[-26,12],[-27,8],[-12,4],[-16,4],[-30,6],[-21,11],[-18,7],[-25,17],[-14,8],[-1,1],[-16,9],[-20,8],[-19,6],[-18,13],[-34,13],[-65,26],[-92,57],[-24,7],[-14,14],[-26,30],[-14,13],[-7,15],[2,17],[11,21],[-5,18],[-2,16],[-10,58],[-1,21],[-2,23],[-16,24],[-9,15],[-3,18],[-9,46],[-12,20],[-4,16],[18,2],[9,12],[2,3],[0,8],[-3,43],[-4,17],[-5,19],[-2,7],[-5,22],[-6,22],[-4,38],[5,21],[3,11],[7,17],[29,39],[26,48],[8,21],[-4,24],[-12,21],[-25,30],[-3,2],[-35,24],[-22,15],[-25,18],[-58,56],[-22,31],[-10,12],[-23,21],[-48,43],[-15,18],[-13,15],[-6,8],[-12,15],[-7,20],[-4,14],[-4,16],[-17,74],[-8,21],[-9,20],[-6,15],[-7,18],[-26,33],[-6,7],[-30,33],[-35,48],[-21,29],[-44,33],[-14,13],[-35,11],[-32,19],[-27,11],[-101,43],[-7,3],[-22,5],[-45,30],[-31,29],[-64,49],[-5,4],[-19,9],[-17,9],[-22,10],[-51,12],[-54,6],[-25,0],[-24,0],[-63,1],[-56,-4],[-58,-3],[-1,0],[-28,-7],[-26,-13],[-37,-15],[-16,-1],[-43,8],[-21,7],[-18,12],[-3,2],[-8,3],[-18,8],[-57,14],[-15,3],[-31,5],[-37,6],[-35,4],[-21,2],[-76,12],[-28,8],[-10,3],[-21,5],[-26,7],[-50,13],[-28,7],[-8,-1],[-21,-1],[-27,-3],[-28,8],[-25,13],[-21,14],[-19,14],[-10,11],[-20,20],[-31,32],[-15,25],[-16,32],[-8,14],[-12,20],[-12,18],[-21,19],[-3,2],[-8,8],[-15,13],[-6,3],[-9,6],[-17,10],[-14,9],[-42,25],[-27,17],[-29,19],[-22,7],[-29,14],[-42,10],[-25,12],[-66,32],[-4,2],[-31,16],[-6,2],[-4,1],[-7,2],[-16,4],[-47,11],[-34,11],[-35,17],[-27,16],[-24,28],[-19,23],[-20,30],[-8,19],[-28,46],[-12,20],[-12,29],[-2,17],[-2,29],[13,15],[-2,21],[-3,41],[-11,49],[-1,1],[-2,3],[-8,10],[-4,8],[-3,7],[-19,23],[-15,16],[-19,19],[-2,1],[-28,16],[-28,12],[-15,6],[-25,8],[-20,6],[-17,3],[-36,6],[-47,-2],[-64,-1],[-41,-4],[-31,0],[-44,1],[-72,12],[-27,5],[-14,1],[-11,0],[-21,1],[-22,1],[-21,0],[-49,15],[-28,7],[-39,8],[-78,24],[-35,12],[-55,19],[-49,23]],[[3489,24070],[0,9],[0,18],[-3,14],[0,94],[1,59],[0,37],[-1,64],[3,84],[-1,18],[0,16],[-1,38],[2,21],[-2,25],[-1,60],[1,85],[0,30],[-2,79],[3,15],[0,36],[-1,127],[5,64],[-2,115],[1,19],[1,22],[0,14],[-1,87],[-1,35],[0,10],[0,39],[0,28],[0,35],[0,32],[-1,132],[0,31],[0,29],[0,26],[0,42],[0,15],[0,54],[1,32],[-2,14],[0,20],[6,15],[1,2],[16,29],[9,10],[6,6],[2,3],[7,7],[11,10],[13,23],[3,6],[3,20],[5,30],[-4,15],[-17,35],[-11,13],[-41,21],[-50,23],[-3,1],[-47,26],[-1,19],[16,26],[-8,13],[0,19],[15,19],[23,28],[4,4],[28,24],[24,20],[21,8],[5,1],[1,1],[24,2],[22,-1],[42,-14],[34,-9],[31,-4],[4,-1],[6,1],[23,4],[20,15],[1,2],[5,18],[12,29],[1,5],[5,38],[-10,33],[-31,22],[-10,3],[-23,8],[-2,1],[-50,10],[-36,16],[-14,13],[-3,2],[-6,22],[10,18],[26,22],[28,10],[33,12],[65,22],[40,6],[5,1],[30,3],[28,2],[7,1],[13,1],[47,7],[31,10],[12,1],[15,2],[29,-5],[20,-5],[5,-1],[6,-1],[9,0],[21,-2],[6,0],[8,3],[33,11],[6,4],[7,4],[17,6],[26,6],[21,8],[9,6],[10,7],[10,16],[2,34],[-4,22],[-9,22],[-9,21],[-3,8],[-1,3],[-1,4],[-1,22],[1,9],[1,8],[0,4]],[[46249,17209],[-16,2],[-360,0],[-30,1],[-252,0],[-260,0],[-74,0],[-53,0],[-82,0],[-114,0],[-335,1],[-211,0],[-150,0],[-5,-18],[-90,0],[-65,0],[-31,0],[-286,0],[-19,0],[-47,0],[-31,0],[-77,0],[-83,-1],[-73,0],[-286,-1],[-111,-1],[-24,0],[-79,0],[-211,-1],[-71,-1],[-19,0]],[[42704,17190],[-30,0],[-29,0],[-17,0],[-49,0],[-195,-1],[-122,0],[-62,0],[-221,0],[-25,0],[-356,0],[-27,0],[-148,0],[-78,0],[-34,0],[-206,0],[-250,1],[-125,0],[-70,0],[-329,0],[-64,0],[-83,0],[-104,0],[-268,0],[-192,-1],[-156,0],[-153,-1],[-70,0],[-144,0],[-39,0],[-84,0],[-97,-1],[-91,0],[-18,0],[-55,0],[-115,0],[-101,0],[-45,0],[-108,-1],[-171,0],[-18,0],[-24,0],[-176,0],[-54,0],[-36,-1],[-87,0],[-118,0],[-89,0],[-96,0],[-54,0],[-173,-1],[-140,0],[-28,0],[-268,-1],[-258,-1],[-211,0],[-192,0],[-105,3],[-64,1],[-245,2],[-15,0],[-18,0],[-385,2],[-133,0],[-54,0],[-23,1],[-197,1],[-142,0]],[[15740,15966],[1,17],[-12,18],[-19,23],[-22,13],[-38,5],[-61,14],[-59,13],[-82,4],[-41,-2],[-45,-3],[-81,-5],[-78,-3],[-60,12],[-49,20],[-32,33],[-12,17],[-18,29],[-9,34],[-14,45],[-13,49],[-17,23],[-28,38],[-27,30],[-21,17],[-21,12],[-47,17],[-38,9],[-47,10],[-38,11],[-34,16],[-12,13],[-4,19],[7,28],[-6,28],[-6,13],[-6,23],[-5,25],[-18,27],[-23,18],[-30,18],[-42,13],[-42,4],[-62,2],[-61,3],[-39,16],[-30,22],[-23,28],[-25,24],[-33,29],[-28,13],[-26,15],[-22,18],[-11,26],[-13,27],[-41,31],[-21,15],[-47,11],[-40,14],[-26,12],[-4,2],[-37,15],[-22,20],[-23,20],[-35,29],[-14,18],[-4,16],[4,23],[7,21],[3,6],[3,10],[17,39],[16,29],[8,26],[-7,17],[-14,33],[-3,57],[-6,35],[5,12],[6,14],[9,23],[32,56],[52,74],[26,37],[4,26],[-4,15],[-4,26],[-3,34],[-7,33],[-14,23],[-30,24],[-24,16],[-17,19],[-18,30],[-22,31],[-23,11],[-14,21],[-18,16],[-22,16],[-24,12],[-65,27],[-22,7],[-16,7],[-18,11],[-22,11],[-13,10],[-30,24],[-10,20],[10,15],[7,17],[2,14],[-8,21],[3,20],[1,22],[-1,16],[-3,15],[-6,15],[-12,10],[-22,16],[-19,20],[1,16],[9,14],[-8,16],[-29,28],[-31,23],[-21,6],[-20,6],[-20,6],[-3,2],[-17,13],[-15,13],[-18,13],[-15,5],[-22,11],[-41,19],[-13,13],[-10,12],[-2,3],[-25,13],[-4,1],[-21,5],[-23,8],[-30,2],[-23,6],[-5,4],[-12,10],[-26,3],[-28,-1],[-20,-4],[-28,2],[-31,-3],[-29,-19],[-36,-14],[-22,-7],[-9,-3],[-14,-5],[-25,-4],[-26,-3],[-13,-1],[0,-1],[-16,-2],[-17,-3],[-14,1],[-21,0],[-16,-5],[-5,-1],[-48,-6],[-35,-4],[-17,0],[-16,0],[-23,2],[-17,3],[-28,5],[-27,0],[-19,0],[-22,0],[-24,-5],[-32,-7],[-25,-6],[-24,-4],[-28,1],[-41,-6],[-26,-8],[-44,-8],[-33,-7],[-27,-7],[-6,-4],[-18,-10],[-8,-5],[-16,-7],[-18,-17],[-15,-13],[-20,-13],[-15,-3],[-22,-5],[-23,3],[-5,17],[-31,13],[-36,21],[-17,11],[-28,6],[-51,47]],[[35557,11056],[0,-42],[0,-93],[0,-43],[0,-45],[0,-42],[3,-19],[0,-110],[0,-96],[0,-29],[0,-66],[0,-44],[0,-107],[-1,-145],[-1,-147],[-1,-129],[0,-85],[1,-111],[0,-24],[0,-24],[0,-101],[0,-40],[1,-131],[0,-29],[0,-42],[0,-40],[0,-77],[0,-39],[0,-61],[0,-31],[4,-58],[-1,-36],[-2,-48],[-2,-70],[-1,-88],[0,-27],[3,-165],[1,-22],[-1,-30],[0,-17],[0,-58],[-1,-76],[0,-15],[0,-49],[-1,-86],[0,-48],[0,-49],[-1,-104],[0,-28],[0,-30],[0,-120],[0,-16],[-1,-64],[0,-167],[0,-38],[0,-177],[-1,-135],[0,-19],[0,-131],[1,-83],[0,-17],[1,-22],[1,-34],[1,-20],[2,-29],[0,-29],[2,-53],[1,-33],[-5,-70],[-1,-20],[-1,-14],[-2,-29],[0,-28],[0,-32],[0,-21],[0,-116],[-1,-62],[0,-193],[0,-35],[0,-51],[0,-58],[0,-30],[0,-97],[0,-24],[0,-32],[0,-45],[0,-60],[0,-77],[0,-39],[0,-105],[0,-38],[0,-58],[1,-129],[0,-71],[1,-33],[0,-27],[0,-24],[-1,-115],[0,-38],[0,-7],[0,-98],[-1,-111],[0,-30],[1,-58],[0,-57],[0,-28],[0,-149],[0,-50],[0,-24],[0,-49],[0,-70],[0,-167],[-1,-405],[0,-43],[1,-61],[0,-228],[0,-93],[0,-258],[0,-17],[0,-21],[0,-16],[0,-127],[0,-26],[0,-42],[0,-20],[0,-34],[0,-25],[0,-31],[0,-49],[0,-86],[0,-24],[-1,-133],[0,-26],[0,-36],[0,-45],[0,-118],[0,-53],[0,-22],[0,-34],[0,-12],[1,-151],[-2,-173],[0,-13],[0,-3],[0,-14],[0,-30],[0,-52],[0,-37],[0,-68],[-2,-59],[-1,-30],[-4,-139],[1,-111],[2,-264],[0,-18],[0,-29],[1,-28],[0,-129],[1,-52],[0,-103],[0,-53],[0,-128],[-2,-247],[-1,-55]],[[35548,33],[-274,0],[-1476,3],[-719,1],[-440,1],[-1285,3],[-856,1],[-971,2],[-3476,7],[-343,1],[-1918,3],[-498,1],[-1815,4],[-1052,2],[-1008,0],[-1525,1],[-212,0],[-878,1],[-3886,2],[-2,0],[-281,0],[-1118,1],[-1713,1],[-1205,1],[-2630,1],[-1118,1],[-1186,1],[-40,6],[0,4],[-66,6],[-78,0],[0,255],[0,474],[-1,155],[1,184],[0,2],[1,263],[1,43],[0,277],[0,27],[-7,104],[0,119],[2,75],[1,167],[2,184],[1,47],[-1,201],[-1,148],[1,55],[1,50],[0,31],[0,227],[0,36],[0,224],[-2,219],[0,75],[0,172],[-1,161],[0,169],[0,263],[4,207],[0,17],[0,6],[0,306],[0,156],[-7,252],[0,53],[0,19],[1,147],[0,32],[1,239],[0,89],[0,137],[0,43],[0,31],[0,3],[0,176],[0,109],[0,88],[-1,102],[0,26],[-1,145],[-1,207],[1,138],[2,49],[0,117],[0,79],[0,34],[0,113],[0,38],[-1,19],[0,296],[0,3],[1,170],[0,33],[0,7],[0,87],[0,58],[-1,192],[-1,68],[0,91],[0,113],[-1,58],[0,3],[-1,156],[0,41],[0,112],[1,37],[1,595],[0,36],[0,93],[0,90],[0,171],[1,125],[-1,15],[1,60],[0,151],[0,30],[0,122],[0,22],[1,84],[0,149],[1,91],[0,67],[0,197],[0,73],[1,157],[0,11],[0,43],[0,27],[0,51],[1,67],[-1,17],[0,26],[1,137],[0,47],[0,52],[0,220],[0,68],[-1,37],[0,68],[0,24],[0,26],[0,7],[0,47],[0,74],[0,18],[-2,242],[-1,116],[-1,56],[2,135],[1,240],[-1,241],[0,87],[0,20],[1,23],[0,2],[0,52],[1,131],[0,27],[-2,336],[-1,58],[0,52],[-2,201],[0,48],[-1,56],[0,42],[0,196],[0,77],[0,35],[1,100],[0,69],[0,101],[0,95],[0,18],[-1,70],[-2,219],[0,19],[0,79],[-1,214],[3,93],[-3,31],[0,39],[0,17],[0,2],[1,24],[1,73],[-1,73],[-1,35],[0,34],[0,88],[0,142],[1,37],[0,17],[1,289],[0,52],[1,105],[0,165],[0,230],[0,55],[-1,105],[0,55],[0,46],[1,70],[0,4],[0,12],[0,176],[0,176],[0,65],[0,269],[-1,108],[0,124],[-1,277],[2,573],[0,101],[0,73],[0,385],[0,96],[0,272],[0,120],[0,24],[-1,484],[1,160],[-1,62],[0,241],[-2,93],[-3,305],[0,22],[2,205],[0,46],[1,20],[3,114],[1,16],[-2,40],[-1,29],[-2,57],[0,20],[0,24],[1,38],[-2,48],[1,27],[0,34],[1,47],[0,15],[1,22],[0,121],[-2,97],[-1,20],[-1,35],[2,49],[0,10],[2,73],[0,19],[0,56],[-2,75],[1,80],[0,42],[3,207],[0,61],[-2,77],[1,28],[0,20],[2,37],[1,18],[0,2],[14,-7],[1,0]],[[99970,21513],[1,-238],[5,-1310],[3,-458],[5,-640],[2,-524],[0,-183],[2,-934],[0,-163],[0,-74],[0,-106],[0,-37],[0,-250],[1,-56],[0,-51],[0,-50],[0,-531],[1,-77],[0,-87],[0,-63],[1,-659],[0,-374]],[[99991,14648],[-61,-3],[-51,-2],[-355,-6],[-261,6],[-242,-6],[-108,0],[-20,0],[-31,0],[-110,-1],[-19,0],[-26,0],[-45,0],[-211,0],[-273,0],[-472,0],[-22,0],[-44,0],[-336,0],[-380,3],[-31,0],[1,16],[-114,0],[-134,0],[-17,0],[-15,0],[-507,-1],[-121,-1],[-171,0],[-41,0],[-101,0],[-111,-1],[-106,1],[-106,2],[-38,0],[-20,0],[-27,0],[-48,0],[-233,5],[-16,2],[-62,0],[-30,1],[-188,1],[-18,2],[-19,1],[-17,-5],[-18,1],[-28,0],[-24,0],[-33,0],[-21,1],[-75,1],[-125,3],[-35,0],[-17,0],[-23,1],[-31,0],[-40,3],[-19,0],[-18,-2],[-30,-3],[-25,-3],[-29,-3],[-29,-3],[-80,0],[-34,0],[-73,0],[-23,0],[-22,0],[-71,-1],[-149,-1],[-16,0],[-446,-5],[-362,-4],[-85,-1],[-40,-1],[-32,0],[-132,0],[-136,0],[-65,0],[-18,1],[-17,0],[-27,1],[-20,2],[-28,0],[-48,-3],[-24,0],[-23,-1],[-57,1],[-190,0],[-197,0],[-16,0],[-30,0],[-12,0],[-20,0],[-52,0],[-111,0],[-178,1]],[[91180,14647],[0,70],[0,37],[0,70],[0,7],[0,10],[0,91],[-1,101],[0,28],[0,28],[0,18],[0,19],[0,30],[0,30],[0,117],[0,107],[0,31],[0,30],[0,61],[0,62],[2,18],[0,33],[0,243],[0,95],[0,54],[0,104],[0,59],[1,59],[0,37],[0,41],[0,41],[-1,60],[0,78],[-1,59],[-1,97],[0,15],[0,53],[0,9],[0,26],[-1,19],[0,1],[0,28],[0,25],[0,22],[1,97],[0,40],[0,36],[0,96],[20,1],[0,15],[0,17],[1,41],[0,36],[2,175],[1,171],[1,66],[0,31],[1,96],[0,16],[0,12],[0,34],[2,77],[1,27],[0,129],[0,99],[0,31],[0,31],[1,50],[0,49],[0,37],[-116,1],[-69,-2],[-68,-1],[-38,0],[-32,0],[-46,0],[-244,10],[-78,0],[-266,0],[-137,0],[-23,0],[-23,0],[-24,0],[-62,0],[-8,0],[-49,0],[-146,0],[-26,0],[-138,0],[-33,0],[-183,-2],[-21,-1],[-66,1],[-223,2],[-183,-1],[-328,2],[-24,0],[-129,1],[-33,0],[-193,0],[-16,0],[-67,0],[-187,-1],[-68,0],[-33,0],[-99,0],[-148,-1],[-72,0],[-88,0],[-3,96],[1,107],[0,50],[0,243],[0,39],[0,57],[0,15],[1,59],[0,53],[0,106],[0,20],[0,111],[1,48],[0,35],[0,141],[0,18],[-25,-1],[-50,0],[-127,0],[-51,0],[-157,0],[-40,0],[-335,0],[-75,0],[-24,0],[-88,0],[-150,1],[-170,1],[-49,0],[-207,-3],[-87,-2],[-18,0],[-291,3],[-17,0],[-27,2],[-120,5],[-116,0],[-153,4],[-140,0],[-20,0],[-21,0],[-41,0],[-97,0],[-119,0],[-24,0],[-36,-2],[-50,-1],[-295,-1],[-112,2],[-20,0],[-30,-1],[-19,0],[-46,0],[-56,0],[-52,1],[-14,13],[0,35],[0,56],[0,15],[1,30],[0,32],[0,15],[0,21],[0,22],[1,25],[0,22],[0,24],[1,25],[-1,28],[0,16],[0,26],[0,50],[0,27],[0,20],[0,20],[0,25],[0,17],[0,26],[0,30],[-80,0],[-22,0],[-36,0],[-18,0],[-37,0],[-36,0],[-16,0],[-23,1],[-19,0],[-27,0],[-25,-1],[-37,1],[-28,0],[-33,0],[-37,0],[-33,0],[-42,0],[-22,0],[-20,0],[-32,0],[-18,0],[-25,-1],[-92,0],[-99,0],[-10,1],[-23,0],[-30,0],[-1,0],[-46,0],[2,84],[1,24],[0,16],[1,20],[0,5],[1,25],[0,37],[-20,0],[-21,1],[-138,-1],[-61,0],[-62,0],[-18,0],[-31,0],[-23,0],[-28,0],[-34,0],[-19,0],[-25,0],[-22,0],[-33,0],[-25,1],[-18,-2],[-19,0],[-35,1],[-24,0],[-51,0],[-43,0],[-53,1],[-44,-1],[-33,0],[-49,1],[-21,0],[-17,0],[-17,0],[-17,0],[-54,-1],[-75,0],[-143,1],[-100,-3],[-1002,-3],[-288,1],[-38,0],[-20,0],[-41,0],[-83,0],[-21,0],[-81,0],[-67,-1],[-823,3],[-326,3],[-233,1],[-994,2],[-369,2],[-35,1],[-174,0],[-116,0],[-318,2],[-204,-8],[-21,0],[-95,0],[-1,208],[-1,20],[0,112],[-1,33],[-1,156],[0,97],[-1,83],[4,15],[0,18],[-4,16],[0,14],[3,28],[0,26],[-1,16],[2,111],[1,34],[0,16],[3,15],[-2,14],[0,35],[-4,51],[-5,102],[5,25],[0,33],[3,15],[0,25],[0,29],[0,27],[0,18],[-1,28],[0,18],[0,69],[0,93],[0,24],[0,16],[0,37],[0,18],[0,15],[0,15],[0,78],[0,12],[0,6],[0,28],[0,31],[1,45],[0,144],[0,44],[1,108],[0,27],[0,190],[0,40],[1,21],[0,18],[0,81],[0,30],[0,128],[0,63],[-1,32],[0,24]],[[91180,14647],[-47,0],[-17,0],[-61,1],[-177,1],[-207,2],[-75,-6],[-151,1],[-47,0],[-111,0],[-51,1],[-150,1],[-140,4],[-27,1],[-62,-1],[-165,-2],[-28,2],[-25,1],[-24,1],[-34,0],[-112,2],[-22,-1],[-50,-3],[-28,0],[-32,0],[-109,3],[-38,-1],[-14,-1],[-212,1],[-24,1],[-64,2],[-197,-2],[-99,5],[-215,-2],[-206,0],[-51,0],[-362,1],[-19,0],[-29,1],[-25,1],[-18,0],[-20,0],[-118,-3],[-124,-3],[-14,0],[-17,-1],[-142,-1],[-26,1],[-17,3],[-26,-2],[-82,3],[-29,1],[-94,3],[-383,-5],[-38,0],[-128,0],[-132,1],[-90,0],[-64,1],[-30,0],[-28,0],[-37,0],[-60,0],[-68,0],[-49,1],[-29,0],[-40,0],[-45,1],[-31,-1],[-206,0],[-22,0],[-56,0],[0,20],[-19,0],[-261,0],[-216,0],[-54,0],[-22,0],[-127,0],[-164,-1],[-168,1],[-89,0],[-75,0],[-18,0],[-476,0],[-178,0]],[[83543,14680],[-258,0],[-463,0],[-284,0],[-498,-1],[-25,0],[-353,0],[-136,-11],[-127,0],[-35,0],[-34,0],[-83,0],[-84,0],[-351,0],[-115,1],[-49,0],[-31,0],[-4,0],[-18,0],[-18,0],[-63,-2],[-101,0],[-101,1],[-170,1],[-68,1],[-49,0],[-26,0],[-41,1],[-4,0],[-17,0],[-58,-1],[-23,0],[-20,0],[-229,0],[-145,1],[-168,-1],[-274,0],[-45,0],[-134,0],[-109,1],[-52,0],[-55,3],[-28,0],[-100,1],[-19,0],[-29,0],[-4,0],[-106,1],[-17,-1],[-36,0],[-19,1],[-84,0],[-37,0],[-156,0],[-2,0],[-28,0],[-46,0],[-81,0],[-137,0],[-22,0],[-81,0],[-62,0],[-32,-1],[-10,0],[-13,0],[-259,0],[-23,0],[-30,-1],[-130,0],[-159,-1],[-161,1],[-75,-1],[-84,-1],[-74,0],[-84,0],[-161,1],[-59,0],[-262,1],[-17,0],[-59,1],[-68,2],[-58,1],[-117,1],[-19,0],[-276,-1],[-24,0],[-27,0],[-93,0],[-148,-1],[-114,-1],[-70,0],[-20,0],[-147,-1],[-18,0],[-121,0],[-46,1],[-66,-1],[-63,-1],[-26,0],[-63,1],[-14,0],[-7,0],[-16,0],[-35,-1],[-31,0],[-173,0],[-1,-1],[-25,-12],[-5,-6],[-12,-15],[-22,-8],[-29,-13],[-26,-16],[-20,-14],[-12,-4],[-8,-2],[-24,20],[-2,14],[-2,17],[-41,14],[-4,1],[-49,19],[-45,7],[-35,-4],[-36,-14],[-12,-8],[-4,-3],[-11,-18],[13,-14],[-1,-24],[15,-8],[16,-6],[-1,-17],[-12,-23],[-52,-32],[-43,-35],[-22,0],[-67,29],[-21,-4],[-28,-18],[2,-18],[23,-14],[29,-41],[-26,-44],[-21,-3],[-19,-3],[1,-18],[-18,-17],[-20,-13],[-16,-1],[-23,8],[-17,6],[-29,13],[-22,-4],[-12,-12],[-7,-15],[-2,-4],[1,-16],[1,-8],[0,-16],[-2,-14],[0,-2],[-15,-12],[-25,2],[-23,13],[-21,6],[-20,-2],[-36,-13],[-27,-6],[-23,2],[-20,4],[-17,3],[-18,4],[-20,4],[-25,8],[-16,2],[-21,0],[-27,-1],[-58,-5],[-32,-2],[-26,-5],[-29,-2],[-24,-14],[-33,-16],[-21,-10],[-9,-17],[-11,-25],[-2,-18],[6,-17],[6,-24],[19,-15],[21,-7],[23,-8],[17,-6],[19,-10],[16,-9],[12,-17],[2,-19],[-11,-18],[-29,-17],[-16,-2],[-19,-3],[-24,-3],[-24,-4],[-20,-9],[-19,-12],[-14,-13],[-16,-18],[-8,-19],[-14,-16],[-29,-16],[-17,-12],[-13,-11],[11,-14],[6,-14],[-12,-14],[-17,-14],[-6,-18],[2,-17],[3,-17],[14,-18],[17,-12],[3,-14],[-11,-15]],[[72453,13668],[-20,-18],[-10,-14],[-11,-11],[-14,-12],[-12,-11],[-11,-15],[-4,-15],[-7,-14],[-8,-13],[-12,-14],[-11,-12],[-13,-12],[-13,-11],[-15,-10],[-16,-8],[-18,-8],[-16,-8],[-15,-10],[-12,-10],[-13,-15],[2,-14],[9,-14],[14,-9],[8,-13],[4,-15],[7,-14],[12,-10],[12,-12],[5,-17],[2,-16],[3,-17],[-9,-13],[-12,-10],[-13,-10],[-11,-11],[-11,-11],[-10,-13],[-14,-7],[-17,-6],[-19,-6],[-17,-6],[-21,-5],[-16,-4],[-21,-3],[-17,-6],[-17,-7],[-15,-5],[-17,-7],[-16,-8],[-15,-8],[-6,-18],[-4,-16],[-6,-16],[-5,-14],[-6,-14],[-2,-14],[0,-16],[2,-16],[1,-17],[2,-17],[4,-15],[0,-17],[-2,-14],[-2,-16],[-2,-14],[0,-15],[6,-14],[7,-13],[3,-16],[-16,-8],[-19,-3],[-23,-6],[-17,-6],[-2,-16],[5,-15],[9,-13],[-2,-17],[-17,-12],[-15,-9],[-15,-7],[-15,-8],[-11,-12],[-9,-12],[-15,-7],[-17,-11],[-6,-16],[-3,-14],[-17,-15],[-24,-12],[-15,-6],[-16,7],[-15,11],[-16,5],[-20,2],[-16,3],[-17,7],[-16,6],[-13,11],[-13,9],[-14,10],[-18,4],[-20,-2],[-16,-8],[-14,-9],[-16,-11],[-10,-12],[-9,-13],[-12,-10],[-11,-16],[-9,-15],[-10,-17],[-10,-13],[-9,-24],[30,-9],[1,-23],[-18,-9],[-17,-2],[-30,-9],[-13,-19],[19,-58],[-370,-1],[-30,0],[-51,0],[-47,0],[-20,-1],[-20,0],[-19,0],[-18,0],[-126,-1],[-84,0],[-83,1],[-16,-1],[-1,0],[-20,0],[-17,1],[-73,0],[-25,0],[-16,1],[-18,0],[-17,0],[-38,1],[-19,0],[-21,-1],[-18,0],[-19,0],[-21,-1],[-18,1],[-37,0],[-17,-1],[-24,0],[-28,0],[-88,1],[-47,0],[-32,0],[-23,0],[-27,-1],[-48,0],[-38,0],[-22,0],[-40,0],[-41,0],[-21,0],[-26,0],[-23,0],[-20,0],[-24,0],[-50,0],[-81,0],[-77,0],[-72,0],[-64,0],[-16,0],[-23,0],[-17,0],[-22,0],[-17,0],[-17,0],[-78,0],[-66,0],[-64,0],[-22,0],[-17,0],[-56,0],[-90,0],[-56,0],[-23,-1],[-57,0],[-55,0],[-36,0],[-48,0],[-30,0],[-32,0],[-20,0],[-20,0],[-10,13],[0,36],[0,18],[0,21],[0,16],[0,18],[0,32],[0,15],[0,18],[0,34],[0,15],[0,34],[0,39],[0,54],[0,24],[0,27],[0,26],[0,19],[0,29],[0,19],[1,30],[0,26],[0,20],[0,41],[0,21],[0,56],[-1,29],[0,15],[0,38],[1,27],[0,27],[0,16],[0,29],[0,17],[0,17],[0,25],[0,21],[0,90],[-2,82],[2,124],[1,221],[0,107],[0,87],[-1,23],[0,17],[1,26],[0,16],[-1,22],[0,22],[1,22],[0,26],[0,46],[0,18],[1,20],[0,20],[0,20],[0,15],[-1,21],[0,14],[0,15],[0,16],[0,15],[-2,24],[0,17],[0,19],[0,45],[1,19],[-1,78],[5,29],[-2,63],[-2,34],[0,28],[0,18],[-1,33],[1,15],[0,51],[3,14],[-3,112],[-1,20],[0,21],[3,18],[-1,18],[3,17],[0,98],[0,17],[0,17],[-1,94],[0,97],[0,34],[-1,34],[0,23],[0,182],[-1,183]],[[56899,17215],[-1,-805],[0,-59],[0,-208],[2,-14],[1,-175],[0,-180],[1,-72],[0,-72],[0,-156],[2,-471],[0,-19],[0,-20],[0,-17],[0,-16],[0,-20],[0,-21],[-1,-17],[-9,-514],[1,-25],[2,-61],[2,-61],[2,-53],[1,-54],[6,-169],[0,-77],[1,-49],[-1,-23],[0,-18],[0,-50],[-1,-50],[1,-61],[0,-79],[-1,-120],[-1,-113],[0,-18],[0,-18],[0,-75],[7,-104],[3,-41],[0,-53],[1,-26],[1,-51],[-2,-23],[-1,-20],[1,-15],[-5,-15],[1,-15],[-1,-36],[-1,-46],[0,-26],[-1,-22],[0,-30],[-1,-31],[-1,-60],[1,-25],[1,-27],[0,-28],[1,-28],[1,-20],[0,-20],[1,-137],[0,-70],[-42,0],[-27,-1],[-17,-1],[-16,1],[-17,2],[-17,0],[-36,-1],[-19,0],[-31,1],[-66,0],[-122,0],[-40,0],[-38,0],[-22,0],[-26,0],[-44,0],[-32,0],[-20,0],[-38,0],[-21,0],[-62,0],[-53,0],[0,-30],[0,-30],[-1,-28],[0,-68],[0,-32],[0,-28],[0,-28],[1,-17],[-1,-103],[0,-39],[0,-13],[0,-1],[3,-192],[-2,-38],[1,-15],[0,-18],[0,-24],[0,-22],[-1,-26],[0,-33],[1,-29],[0,-19],[0,-41],[0,-27],[0,-21],[0,-17],[0,-46],[0,-32],[0,-21],[0,-29],[0,-17],[0,-18],[0,-15],[0,-33],[0,-19],[0,-27],[-12,-25],[-29,1],[-75,-1],[-33,0],[-41,0],[-17,0],[-26,0],[-23,0],[-27,0],[-34,0],[-68,0],[-50,0],[-40,0],[-31,0],[-22,0],[-25,0],[-27,0],[-37,0],[-29,0],[-37,0],[-25,0],[-24,0],[-17,0],[-52,0],[-20,0],[-19,0],[-22,0],[-16,0],[-41,0],[-50,1],[-54,1],[-31,0],[-42,0],[-24,1],[-21,0],[-26,0],[-18,0],[-29,0],[-27,1],[-48,0],[-18,0],[-17,-1],[-21,1],[-21,-1],[-109,0],[-64,0],[-63,0],[-24,0],[-29,0],[-19,1],[-73,0],[-26,1],[-34,3],[-34,0],[-175,1],[-22,0],[-22,0],[-43,0],[-43,0],[-57,1],[-95,0],[-95,0],[-32,0],[-77,0],[-106,1],[-120,0]],[[53379,11007],[-98,1],[-61,0],[-31,0],[-38,0],[-389,1],[-43,0],[-81,0],[-78,-1],[-114,-1],[-24,1],[-111,0],[-16,0],[-127,1],[-26,0],[-27,0],[-41,-2],[-215,0],[-147,1],[-220,1],[0,115],[0,272],[0,129],[0,103],[-198,0],[-44,0],[-18,0],[-17,0],[-48,-1],[-90,0],[-154,0],[-338,2],[-319,1],[-226,-2],[-567,3],[-30,0],[-145,-1],[-210,2],[-454,1],[-384,1],[-87,0],[-193,0],[-234,0],[-219,1],[-29,0],[-55,0],[-407,0],[-83,0],[-83,0],[-139,1],[0,18],[0,19],[0,55],[0,49],[0,15],[0,49],[-298,3],[-17,0],[-2,28],[0,103],[0,16],[0,67],[0,19],[-1,15],[0,28],[0,47],[0,48],[0,16],[-24,0],[-50,0],[-41,0],[-54,0],[-135,0],[-128,0],[-427,0],[-201,-1],[-33,0],[-5,0],[-50,0],[-44,0],[-68,0],[-36,2],[-17,0],[-22,0],[-80,0],[-18,0],[-38,0],[-21,0],[-88,0],[-19,0],[-28,0],[-38,0],[-50,0],[-25,-1],[-20,1],[-24,0],[-19,0],[-19,0],[-29,0],[-110,0],[-17,1],[-16,0],[-23,0],[-39,1],[-45,0],[-31,0],[-54,1],[-28,1],[-19,-1],[-18,0],[-26,-1],[-20,0],[-69,-1],[-67,0],[-66,-1],[-64,0],[-29,0],[-21,0],[-20,0],[-64,0],[-64,0],[-55,0],[-386,0],[-425,0],[-21,0],[-21,0],[-25,0]],[[42709,12232],[0,103],[1,127],[0,113],[-1,27],[0,59],[0,321],[0,69],[0,18],[-1,25],[-1,179],[-1,53],[0,1],[0,46],[3,71],[0,16],[2,74],[0,18],[-2,69],[-2,42],[-1,22],[0,15],[0,1],[-1,250],[0,97],[-1,45],[-1,243],[0,2],[4,20],[-2,67],[0,23],[-1,22],[0,48],[0,21],[-1,38],[-1,25],[0,24],[0,18],[1,15],[2,24],[2,18],[1,17],[0,64],[0,33],[0,15],[0,24],[0,27],[0,26],[0,25],[0,21],[0,20],[0,20],[0,18],[0,19],[0,15],[0,17],[0,16],[0,31],[0,20],[0,16],[1,33],[0,20],[0,15],[2,16],[1,18],[1,33],[0,31],[0,39],[-2,339],[-3,291],[-1,163],[0,26],[-1,137],[-1,64],[0,14],[0,184],[0,43],[-1,264],[0,171],[0,33],[0,3],[0,11],[0,18],[0,38],[0,18],[0,23]],[[42709,12232],[-16,0],[-26,0],[-35,0],[-67,0],[-80,0],[-21,0],[-127,-1],[2,-157],[0,-17],[2,-194],[1,-150],[0,-25],[0,-25],[0,-18],[0,-19],[0,-65],[1,-27],[0,-16],[1,-86],[1,-24],[0,-31],[2,-129],[-2,-20],[-1,-14],[1,-21],[0,-22],[0,-22],[1,-27],[0,-25],[0,-25],[1,-24],[-1,-27],[0,-46],[1,-23],[0,-22],[-1,-14],[1,-42],[0,-33],[0,-32],[0,-18],[0,-38],[0,-20],[0,-11],[0,-8],[-1,-30],[-1,-2],[-1,-13],[3,-20],[0,-23],[0,-18],[0,-24],[0,-21],[1,-35],[0,-18],[-1,-17],[1,-21],[-1,-20],[0,-35],[1,-16],[0,-21],[0,-19],[0,-37],[-1,-16],[-2,-35],[-11,-14],[-4,-38],[-2,-16],[-3,-24],[-2,-22],[2,-25],[6,-17],[9,-14],[8,-14],[0,-15],[0,-22],[0,-23],[0,-14],[0,-26],[0,-22],[0,-20],[0,-35],[0,-51],[0,-53],[1,-25],[-1,-26],[0,-16],[1,-25],[0,-17],[-1,-28],[1,-17],[0,-34],[0,-18],[0,-47],[0,-31],[0,-25],[0,-16],[0,-17],[0,-19],[0,-26],[4,-20],[-2,-41],[0,-3]],[[42351,9357],[-29,4],[-69,12],[-36,4],[-14,0],[-2,0],[-26,0],[-1,1],[-94,54],[-40,18],[-23,6],[-33,8],[-66,13],[-81,29],[-138,27],[-56,0],[-2,0],[-2,0],[-13,-1],[-126,-17],[-26,-2],[-3,-1],[-14,-1],[-85,0],[-2,0],[-8,0],[-4,0],[-91,13],[-84,27],[-58,9],[-47,7],[-22,4],[-95,54],[-25,4],[-17,0],[-21,-2],[-2,-1],[-24,-8],[-22,-9],[-8,-7],[-16,-4],[-16,-3],[-11,1],[-7,1],[-29,16],[-161,45],[-98,-14],[-7,-1],[-3,1],[-103,12],[-85,48],[-30,-4],[-22,-4],[-7,0],[-151,-7],[-4,-2],[-12,-10],[-34,-11],[-35,-5],[-58,-8],[-4,-3],[-38,-24],[-109,-49],[-20,0],[-1,0],[-42,0],[-74,13],[-53,0],[-11,-2],[-62,-6],[-53,0],[-63,6],[-28,0],[-35,0],[-17,-15],[-15,-13],[-16,-3],[-4,0],[-21,-4],[-61,18],[-24,9],[-22,34],[-11,14],[-21,14],[-42,0],[-32,20],[-1,27],[-43,83],[-33,68],[18,132],[11,48],[-12,110],[-11,34],[-80,44],[-9,-4],[-17,-6],[-32,-7],[-9,0],[-33,-1],[-202,75],[-11,31],[30,114],[51,103],[10,49],[-13,59],[0,3],[0,2],[0,1],[-1,10],[0,2],[0,2],[-1,3],[-1,2],[-1,2],[-28,59],[-1,2],[-14,27],[-2,3],[-1,2],[-1,1],[-7,8],[-1,1],[-2,2],[-1,2],[-1,1],[-49,41],[-27,39],[-32,14],[-57,20],[-38,13],[-32,7],[-64,6],[-74,0],[-5,0],[-5,0],[-45,0],[-8,-1],[-15,2],[-11,1],[-25,2],[-1,0],[0,1],[-44,42],[-138,61],[-21,7],[-53,-1],[-28,1],[-7,1],[-18,-4],[-36,5],[-11,3],[1,3],[-23,6],[-52,8],[-14,1],[-34,2],[-32,0],[-81,12],[-61,1],[-49,0],[-33,-2],[-14,-5],[-25,-29],[-32,-7],[-10,6],[-53,28],[-75,62],[-22,34],[-22,41],[-1,83],[-13,89],[-11,34],[41,49],[73,83],[17,39],[6,14],[5,25],[1,5],[-1,5],[-20,43],[-43,41],[31,42],[21,20],[31,35],[42,35],[83,35],[35,9],[18,5],[11,2],[94,20],[26,17],[47,38],[-22,41],[52,56],[59,79],[3,4],[24,40],[-1,20],[-3,30],[0,27],[7,8],[-3,64],[9,24],[-73,69],[-35,62],[-31,36],[-70,25],[-18,7],[-14,12],[-21,22],[-29,38],[10,10],[9,8],[8,13],[1,14],[-11,13],[-11,7],[-23,-2],[-28,-2],[-55,-4],[-88,25],[-69,35],[4,44],[2,14],[-10,12],[-32,34],[-160,123],[-83,52],[-19,6],[-18,7],[-16,13],[-4,10],[-1,37],[-9,33],[-8,12],[-16,14],[-18,10],[-24,4],[-48,6],[-125,-4],[-61,-8],[-35,-6],[-10,-1],[-16,-2],[-14,-1],[-72,6],[-74,16],[-20,9],[-19,10],[-21,10],[-82,12],[-64,-7],[-11,-1],[-30,-4],[-26,-9],[-19,-7],[-13,-6],[-8,-2],[-11,-1],[-18,2],[-27,12],[-83,20],[-100,3],[-19,-5],[-2,0],[-6,0],[-46,-19],[-89,-46],[-16,-19],[-2,-2]],[[60812,9640],[-67,-13],[-46,3],[-18,-3],[-17,-2],[-20,-1],[-14,7],[-16,8],[-4,2],[-11,5],[-66,28],[-19,10],[-21,12],[-22,3],[-32,1],[-18,-3],[-16,-3],[-56,-17],[-38,1],[-17,2],[-21,0],[-37,-7],[-20,-12],[-19,-10],[-17,-9],[-46,-14],[-45,-13],[-41,-15],[-24,-5],[-53,-9],[-18,-9],[-28,-14],[-23,-9],[-154,-35],[-77,-22],[-180,-31],[-58,-9],[-44,-20],[-22,-12],[-33,-23],[-64,-33],[-18,-10],[-52,-29],[-45,-31],[-21,-13],[-16,-15],[-21,-19],[-9,-14],[-20,-30],[-25,-50],[-10,-28],[-5,-18],[-12,-21],[-11,-55],[-5,-28],[-15,-18],[-8,-16],[-10,-12],[-11,-16],[-9,-14],[-11,-18],[-17,-17],[-20,-15],[-13,-9],[-14,-16],[-20,-18],[-15,-10],[-13,-9],[-20,-9],[-21,-9],[-17,-9],[-16,-11],[-16,-18],[-13,-16],[-14,-16],[-10,-13],[-11,-20],[-2,-2],[-11,-14],[-6,-18],[-9,-20],[-5,-16],[-11,-17],[-12,-14],[-7,-8],[-22,-16],[-20,-12],[-16,-7],[-16,-11],[-19,-9],[-27,-14],[-19,-16],[-26,-15],[-23,-16],[-24,-12],[-16,-9],[-15,-14],[-11,-12],[-19,-17],[-11,-12],[-15,-14],[-1,-1],[-11,-13],[-14,-21],[-15,-27],[-7,-13],[-5,-17],[-3,-14],[-5,-21],[-6,-28],[-1,-5],[-3,-11],[0,-5],[-3,-13],[-8,-17],[-12,-22],[-16,-18],[-19,-19],[-11,-12],[-20,-18],[-14,-15],[-16,-13],[-16,-16],[-8,-12],[-11,-26],[-8,-19],[-11,-20],[-14,-25],[-7,-16],[-7,-23],[-10,-21],[-15,-13],[-20,-15],[-23,-17],[-14,-13],[-17,-14],[-10,-13],[-19,-16],[-19,-16],[-18,-15],[-30,-17],[-20,-7],[-22,-7],[-15,-5],[-3,-1],[-13,-4],[-24,-8],[-24,-5],[-17,-3],[-28,-10],[-16,-4],[-21,-5],[-16,-6],[-19,-6],[-21,-9],[-22,-15],[-22,-11],[-21,-8],[-20,-6],[-21,-6],[-19,-6],[-18,-4],[-17,-4],[-20,-6],[-27,-5],[-24,-3],[-23,-2],[-18,-1],[-17,-5],[-21,-10],[-14,-13],[-16,-16],[-15,-9],[-28,-7],[-21,-6],[-27,-9],[-24,-3],[-39,-2],[-25,2],[-17,-2],[-20,0],[-20,1],[-31,-1],[-21,-3],[-20,-1],[-17,0],[-20,2],[-20,4],[-21,6],[-25,6],[-17,8],[-23,5],[-23,2],[-24,3],[-19,1],[-18,-3],[-23,1],[-20,1],[-18,2],[-24,1],[-24,3],[-28,4],[-29,6],[-30,3],[-31,6],[-23,6],[-23,9],[-25,12],[-22,15],[-8,7],[-4,4],[-21,13],[-23,12],[-23,6],[-24,5],[-14,7],[-18,11],[-14,10],[-18,9],[-15,10],[-14,13],[-11,10],[-4,16],[-1,16],[0,20],[-4,17],[-7,16],[-9,23],[-13,25],[-12,17],[-4,4],[-12,14],[-12,11],[-18,13],[-16,10],[-15,12],[-13,8],[-14,8],[-18,10],[-15,9],[-24,15],[-16,7],[-17,9],[-15,8],[-19,11],[-62,22],[-24,6],[-17,1],[-25,0],[-19,-4],[-25,-3],[-21,-2],[-22,-3],[-22,-7],[-7,-3],[-18,-8],[-10,-2],[-4,-1],[-8,-1],[-17,-6],[-22,-9],[-12,-4],[-21,-8],[-38,-12],[-33,-10],[-21,-6],[-15,-6],[-16,-17],[-16,-11],[-18,-11],[-17,-9],[-20,-18],[-17,-10],[-15,-7],[-35,-10],[-37,-8],[-20,-4],[-19,-6],[-23,-7],[-22,-8],[-11,-11],[-10,-11],[-21,-17],[-16,-11],[-8,-5],[-11,-6],[-13,-8],[-19,-9],[-22,-10],[-35,-5],[-25,-4],[-17,-1],[-27,0],[-16,2],[-20,5],[-19,5],[-24,8],[-18,7],[-24,10],[-22,9],[-18,6],[-14,4],[-22,7],[-23,5],[-21,6],[-26,0],[-22,1],[-19,7],[-22,12],[-17,13],[-15,13],[-11,10],[-19,7],[-18,4],[-24,4],[-19,3],[-20,7],[-20,12],[-17,11],[-20,6],[-33,6],[-18,3],[-30,5],[-22,7],[-22,6],[-18,2],[-24,2],[-16,-2],[-27,-10],[-17,-2],[-27,0],[-20,2],[-34,2],[-17,5],[-18,0],[-17,-7],[-31,-13],[-20,-8],[-18,-8],[-27,-8],[-34,-7],[-18,-3],[-24,-6],[-18,-6],[-20,-7],[-18,-10],[-27,-18],[-20,-11],[-17,-7],[-18,-7],[-15,-6],[-15,-6],[-23,-9],[-21,-4],[-24,-2],[-23,-1],[-21,0],[-23,-2],[-26,-3],[-35,-11],[-21,-16],[-27,-11],[-28,-3],[-23,-2],[-19,-1],[-4,-1]],[[53397,7728],[0,16],[0,16],[0,63],[-1,15],[0,18],[-1,18],[0,31],[0,26],[0,33],[0,17],[0,42],[0,24],[0,19],[-1,30],[1,18],[-1,29],[0,17],[0,30],[0,18],[0,41],[0,27],[0,20],[0,16],[0,4],[0,13],[-1,113],[0,16],[0,15],[1,42],[0,18],[-1,23],[0,47],[0,15],[0,16],[0,17],[0,26],[1,26],[-1,26],[-4,133],[0,13],[0,7],[0,89],[0,20],[2,21],[2,32],[0,27],[1,18],[0,40],[1,18],[-5,17],[1,273],[4,83],[1,22],[1,19],[2,25],[-7,48],[-2,19],[0,54],[2,17],[0,39],[0,32],[0,15],[1,24],[1,20],[0,18],[-3,70],[0,59],[0,44],[0,35],[0,27],[0,29],[0,36],[0,32],[0,14],[0,15],[0,16],[0,14],[1,16],[0,16],[0,60],[0,118],[-1,136],[-3,57],[-3,57],[-3,68],[0,16],[-1,60],[0,31],[-1,26],[-1,83]],[[72453,13668],[2,-15],[0,-18],[22,-22],[31,-17],[16,-6],[22,-6],[36,-4],[33,-1],[28,-7],[27,-10],[20,-10],[19,-12],[13,-9],[13,-11],[15,-18],[-2,-21],[-12,-16],[-14,-17],[-18,-10],[-12,-17],[-25,-18],[-20,-3],[-20,0],[-4,-16],[26,-9],[19,-3],[27,-2],[23,-6],[11,-15],[-2,-24],[-15,-22],[-23,-8],[-32,11],[-16,16],[-14,12],[-17,11],[-16,4],[-25,-5],[-21,-13],[-3,-18],[4,-23],[22,-17],[20,-13],[12,-10],[-22,-11],[-20,-1],[-35,-2],[-20,-7],[-14,-15],[2,-26],[-1,-20],[-1,-20],[1,-19],[23,-17],[15,0],[8,0],[19,10],[16,16],[14,9],[24,2],[24,-17],[2,-18],[-8,-19],[-4,-23],[5,-18],[10,-15],[7,-15],[13,-11],[35,2],[21,2],[27,9],[12,10],[-2,17],[-11,13],[-13,9],[-11,11],[16,25],[13,10],[32,16],[23,9],[33,14],[17,5],[26,10],[19,3],[23,-5],[32,-4],[27,11],[29,7],[21,5],[21,4],[2,25],[20,15],[20,15],[26,3],[24,-5],[21,2],[21,9],[23,16],[15,15],[9,14],[4,23],[-9,22],[-9,22],[-9,22],[7,14],[9,19],[13,13],[31,6],[18,14],[13,13],[17,6],[18,5],[32,1],[33,-2],[19,6],[17,17],[16,11],[19,5],[16,2],[22,1],[28,-10],[16,-7],[22,-5],[13,-9],[20,-7],[19,1],[30,8],[20,4],[18,4],[22,2],[45,-8],[24,-3],[17,2],[44,11],[19,0],[37,1],[8,13],[20,4],[24,-2],[14,-9],[23,8],[50,12],[19,6],[12,-11],[5,-22],[21,-1],[16,8],[20,9],[20,7],[24,3],[19,8],[16,12],[15,9],[21,13],[22,14],[15,12],[16,12],[14,14],[25,9],[16,7],[19,14],[16,14],[20,1],[19,3],[3,14],[19,6],[30,-4],[24,6],[-4,28],[18,9],[-8,22],[30,8],[28,5],[-10,14],[10,23],[28,-16],[38,-9],[38,13],[41,-7],[56,10],[39,-8],[33,12],[-1,23],[-43,4],[12,25],[47,-3],[27,-14],[9,23],[17,24],[21,18],[18,14],[-19,12],[3,22],[23,7],[3,19],[30,3],[63,7],[4,-14],[30,-11],[9,-13],[28,10],[49,17],[30,-21],[9,-7],[12,-7],[6,-5],[1,-25],[8,-16],[9,-18],[17,-15],[20,0],[34,-17],[9,1],[21,0],[10,0],[1,0],[15,0],[-3,-15],[-1,-5],[9,-4],[7,-3],[10,-5],[0,-10],[0,-4],[7,-18],[2,0],[15,-2],[1,1],[7,12],[15,9],[1,-15],[9,-11],[1,-1],[18,-4],[0,2],[1,16],[13,3],[5,1],[33,-3],[2,3],[10,13],[19,-3],[7,-16],[24,-14],[19,-9],[14,-10],[3,-17],[30,-9],[23,-10],[20,-12],[-18,-14],[12,-12],[16,-5],[3,-16],[21,-24],[14,-30],[18,-10],[10,-13],[5,-21],[-10,-21],[9,-11],[10,-13],[-17,-4],[-19,-8],[13,-13],[5,-4],[-5,-5],[-3,-4],[-3,-3],[-1,-1],[-13,-20],[14,-13],[14,-11],[19,-7],[4,-1],[12,-6],[14,-6],[18,-11],[34,-1],[30,-11],[34,-8],[18,-10],[18,-8],[15,-22],[6,-17],[2,-3],[6,-9],[8,-14],[4,-25],[22,-13],[5,-4],[9,-8],[18,-21],[24,-9],[18,-3],[17,-2],[19,-4],[22,-12],[-11,-26],[-16,-14],[0,-16],[15,-13],[3,-13],[1,-4],[14,-10],[14,-10],[11,-15],[16,-3],[19,6],[1,-16],[0,-2],[0,-15],[3,-35],[1,-8],[3,-25],[3,-71],[2,-47],[1,-77],[-1,-17],[1,-74],[0,-39],[0,-31],[0,-44],[0,-71],[-1,-47],[0,-161],[0,-38],[0,-53],[-24,-14],[1,-79],[1,-62],[2,-138],[0,-29],[1,-23],[0,-49],[1,-26],[-4,-25],[0,-70],[-3,-149],[1,-110],[0,-24],[0,-31],[104,-1],[90,0],[63,-1],[48,0],[8,-51],[1,-168],[1,-179],[0,-41],[1,-120],[1,-25],[0,-31],[2,-208],[248,-1],[181,0],[127,0],[73,0],[5,-184],[0,-21],[2,-250],[0,-18],[0,-45],[23,0],[107,1],[70,0],[23,0],[94,0],[0,-21],[1,-34],[4,-192],[1,-62],[80,0],[235,0],[0,-120],[0,-26],[-1,-223],[0,-43],[191,0],[211,0],[50,0],[165,0],[4,-115],[0,-81],[0,-22],[-1,-98],[-162,0],[4,-101],[-2,-74],[-3,-137],[-1,-40],[1,-51],[0,-12],[1,-24],[1,-24],[1,-52],[57,0],[-2,-87],[0,-147],[-79,1],[0,-35],[0,-17],[-291,0],[-38,1],[-68,0],[1,-156],[-70,0],[0,-39],[0,-263],[0,-49],[0,-57],[-1,-367]],[[77785,7266],[-85,0],[-14,0],[-362,0],[-17,0],[-146,2],[-21,0],[-42,0],[-115,-1],[-184,1],[-47,0],[-228,1],[0,-45],[2,-66],[0,-20],[0,-32],[1,-168],[0,-122],[1,-41],[0,-122],[0,-87],[1,-75],[0,-187],[1,-25],[-1,-16],[0,-21],[0,-50],[1,-166],[-37,0],[-22,-1],[-31,1],[-40,0],[-72,0],[-212,1],[-133,1],[-19,0],[-18,0],[-41,0],[-31,-1],[-39,0],[-77,1],[-11,0],[-106,0],[-52,0],[-24,-1],[-59,1],[-182,0],[-50,0],[-155,1],[-205,1],[-20,1],[-47,0],[-48,0],[-23,0],[-33,1],[-19,0],[-243,-2],[-16,-2],[-111,-2],[-344,0],[0,-265],[1,-322],[-1,-243],[0,-1],[0,-153],[0,-26],[0,-24],[0,-53],[0,-36],[0,-18],[0,-47],[0,-36],[0,-19],[-512,-1],[-304,1],[-305,0],[-69,0],[-216,0],[-137,0],[-19,0],[-35,0],[-22,0],[-25,0],[-60,0],[-29,0],[-34,0],[-19,0],[-70,0],[-35,0],[-56,-12],[-151,0],[-178,0],[-12,0],[-26,0],[-17,0],[-69,0],[-92,0],[-18,0],[-158,0],[-17,0],[-110,0],[-6,0],[-42,0],[-67,0],[-63,-1],[-145,0],[-117,0],[-65,0],[-54,0],[-121,-1],[-21,0],[-36,0],[-103,0],[-79,-1],[-203,-1],[-83,-3],[-27,1],[-18,0],[-20,0],[-17,0],[-23,-1],[-16,0],[-267,-2],[-17,0],[-169,0],[-131,0],[-51,0],[-80,0],[-40,0],[-132,0],[-126,0],[-17,0],[-33,1],[-259,-1],[-114,0],[-38,1]],[[68415,4763],[-14,7],[0,30],[0,78],[1,103],[0,79],[0,97],[0,85],[1,136],[0,62],[0,229],[0,34],[-1,21],[0,107],[0,108],[0,62],[0,14],[-1,165],[0,39],[0,122],[-1,82],[0,69],[-1,219],[0,25],[0,76],[0,30],[0,39],[0,61],[0,19],[0,35],[0,55],[6,173],[0,27],[-23,-1],[0,39],[0,182],[0,53],[-2,27],[2,14],[0,7],[0,20],[-1,19],[1,21],[1,17],[0,16],[1,31],[1,17],[2,17],[1,17],[1,21],[0,15],[-3,22],[-6,41],[0,19],[0,25],[0,68],[1,132],[0,40],[1,131],[1,63],[1,112],[0,16],[-1,29],[-336,2],[-60,1],[-70,0],[-107,1],[-22,0],[-17,0],[-257,2],[-91,0],[-239,2],[-54,0],[-105,1],[-37,0],[-178,1],[-167,1],[-207,1],[-19,1],[-18,3],[-67,1],[-126,0],[-268,1],[-230,1],[-29,0],[-85,0],[0,17],[1,50],[2,136],[0,11],[0,4],[1,44],[1,74],[4,172],[-1,19],[0,14],[-117,23],[-44,4],[-24,9],[-35,16],[-56,25],[-42,14],[-22,3],[-23,3],[-69,-3],[-55,-11],[-68,-17],[-143,-45],[-61,-11],[-20,-3],[-65,-8],[-77,-9],[-36,-4],[-20,-6],[-19,-8]],[[83543,14680],[-33,-14],[-9,-16],[-1,-15],[15,-6],[16,-5],[18,-4],[20,-18],[7,-16],[-11,-15],[-14,-17],[-5,-24],[14,-11],[19,-6],[19,2],[28,-7],[15,-19],[14,-16],[-15,-18],[-15,-23],[-9,-24],[17,-11],[17,-4],[21,-10],[13,-8],[5,-16],[-8,-27],[13,-15],[11,-15],[9,-12],[9,-20],[-6,-16],[-6,-15],[-9,-14],[-17,-18],[-21,-15],[-5,-14],[-15,-12],[-11,-13],[-7,-14],[-25,-24],[-22,-15],[-31,-17],[-14,-8],[-16,1],[-17,2],[-31,6],[-25,-4],[-27,-5],[-18,4],[-34,4],[-22,-4],[-18,-16],[-22,-11],[-33,-12],[-23,-4],[-25,-9],[-18,-12],[-23,-12],[-20,-6],[-30,-17],[16,-13],[19,-19],[-12,-22],[-12,-27],[-2,-24],[24,-21],[11,-11],[6,-20],[10,-28],[6,-26],[4,-21],[10,-25],[1,-15],[0,-23],[13,-9],[12,-14],[-12,-12],[-27,-5],[-16,-5],[-24,-11],[-17,1],[-20,6],[-19,15],[-31,10],[-27,4],[-42,5],[-45,8],[-20,0],[-17,-2],[-27,-14],[-15,-8],[-23,-7],[-17,-6],[-30,-18],[-11,-19],[-20,2],[-32,4],[-18,4],[-26,0],[-22,-6],[-13,-8],[-14,-9],[-20,-5],[-19,-7],[-24,-17],[-19,2],[-21,9],[-20,-2],[-18,-3],[-13,-12],[-6,-16],[-16,-30],[4,-20],[-2,-15],[-7,-18],[-8,-17],[-6,-15],[-7,-32],[-17,-23],[-5,-16],[-4,-17],[-16,-10],[-18,-20],[-13,-18],[-4,-19],[-23,-18],[-25,-7],[-26,-10],[-17,-8],[-13,-11],[-19,-20],[-1,-21],[12,-10],[14,-8],[15,-7],[33,-5],[27,-2],[26,-8],[23,-16],[-6,-21],[-18,-42],[-6,-17],[-11,-23],[-19,-21],[-19,-3],[-32,-1],[-26,-1],[-27,-1],[-25,-3],[-29,-4],[-9,-18],[-7,-20],[-8,-18],[-13,-24],[-2,-15],[11,-24],[17,-15],[13,-21],[17,-16],[16,-16],[11,-20],[12,-11],[25,-10],[17,-1],[12,-17],[8,-14],[16,-17],[10,-17],[7,-16],[10,-12],[18,-19],[1,-37],[5,-16],[5,-21],[4,-16],[-9,-15],[27,-28],[-2,-24],[1,-15],[-12,-13],[2,-16],[-11,-56],[-3,-34],[2,-20],[-4,-25],[9,-13],[34,-6],[16,-8],[2,-16],[-15,-12],[-4,-16],[-17,-19],[-15,-9],[13,-15],[4,-15],[1,-17],[12,-13],[-1,-16],[11,-12],[11,-12],[12,-10],[25,-24],[23,-1],[35,-1],[13,-9],[20,-23],[-15,-19],[2,-23],[4,-13],[18,-11],[23,-7],[18,-5],[11,-15],[-7,-13],[-6,-23],[-1,-15],[-6,-33],[6,-17],[27,-21],[-2,-21],[-12,-15],[-18,-1],[-7,-14],[-23,-8],[-11,-22],[-8,-23],[9,-21],[-16,-5],[-25,-17],[-9,-18],[-91,-9],[-29,-1],[-37,5],[-37,4],[-10,-20],[-25,-15],[0,-25],[14,-22],[5,-21],[-8,-22],[-4,-27],[-3,-15],[-12,-13],[-21,-11],[-26,-9],[-10,-16],[13,-15],[4,-24],[-7,-15],[-4,-18],[8,-17],[13,-16],[15,-17],[11,-14],[10,-20],[12,-17],[2,-25],[17,-30],[2,-50],[-2,-15],[-8,-45],[-11,-23],[5,-28],[0,-19],[-14,-31],[1,-23],[20,-21],[9,-14],[13,-16],[3,-16],[-1,-27],[17,-52],[9,-27],[23,-14],[15,-14],[11,-22],[18,-6],[16,-12],[11,-14],[10,-17],[16,-13],[9,-14],[6,-14],[8,-27],[25,-18],[17,-14],[23,-2],[51,-7],[22,-32],[10,-17],[23,-32],[24,-17],[19,-30],[7,-16],[-1,-18],[9,-57],[-7,-36],[-18,-20],[-7,-15],[12,-25],[5,-15],[26,-25],[21,-34],[2,-15],[11,-11],[16,-8],[8,-13],[0,-19],[8,-18],[10,-20],[13,-13],[12,-9],[15,-12],[21,-6],[20,-4],[37,-6],[16,-7],[28,-8],[24,-11],[23,1],[19,4],[16,8],[52,14],[49,4],[26,-3],[23,1],[21,13],[17,13],[18,8],[10,18],[19,14],[16,5],[18,4],[16,5],[37,8],[34,2],[27,2],[17,12],[3,18],[2,14],[12,13],[26,18],[6,18],[0,14],[15,20],[57,39],[38,9],[17,12],[29,0],[77,0],[308,-1],[231,-1],[27,0],[12,0],[38,0],[17,1],[18,0],[49,0],[109,0],[272,0],[79,0],[79,1],[72,-3],[-15,-6],[-17,-11],[-15,-8],[-23,-23],[14,-13],[9,-13],[6,-15],[5,-14],[12,-14],[-1,-15],[-13,-28],[-3,-17],[2,-15],[14,-9],[24,-9],[3,-21],[8,-14],[1,-23],[9,-17],[9,-20],[16,-7],[15,-12],[17,-7],[27,0],[24,-9],[13,-12],[17,-8],[28,-18],[20,-24],[-22,-19],[-8,-21],[-18,-2],[14,-11],[7,-12],[13,-21],[-10,-13],[-14,-24],[-19,-24],[-19,-11],[-17,1],[-16,2],[-8,-13],[-15,-19],[-11,-15],[-6,-14],[133,0],[186,0],[0,-179],[-1,-43],[0,-59],[-1,-278],[55,1],[260,0],[1,-51],[45,-1],[35,0],[0,-16],[-1,-88],[0,-1],[1,-17],[1,-85],[80,-1],[0,-82],[-1,-149],[0,-37],[-1,-27],[0,-96],[10,-21],[0,-29],[1,-175],[0,-92],[0,-31],[1,-29],[0,-35],[0,-31],[0,-33],[0,-70],[-1,-75],[0,-70],[0,-16],[0,-17],[0,-16],[0,-24],[0,-37],[0,-22],[1,-31],[0,-81],[86,1],[74,1],[105,1],[50,1],[0,-51],[0,-27],[1,-49],[0,-71],[1,-53],[0,-59],[23,0],[3,-42],[1,-160],[64,1],[95,0],[0,-32],[1,-147],[0,-133],[1,-309],[154,1],[0,-79],[-1,-128],[0,-75],[-1,-29],[0,-103]],[[86567,6031],[-317,-2],[1,-28],[4,-195],[0,-27],[-1,-32],[-1,-33],[-1,-101],[2,-59],[4,-114],[-1,-33],[-1,-52],[-2,-97],[-3,-115],[0,-3],[0,-25],[0,-16],[1,-132],[-1,-100],[0,-59],[-13,-21],[-3,-22],[-7,-48],[-9,-73],[-9,-60],[0,-155],[1,-43],[1,-27],[-1,-91],[0,-107],[1,-69],[0,-17],[1,-116],[1,-41],[2,-90],[2,-76],[-273,1],[-42,0],[-34,0],[-100,0],[-176,0],[-50,0],[-101,-1],[-162,0],[-56,0],[-11,0],[-144,0],[-29,0],[-30,0],[-31,0],[-92,0],[-14,-1],[-31,0],[-34,0],[1,105],[0,15],[4,196],[0,32],[0,35],[0,31],[-13,0],[-6,0],[-58,0],[-189,-1],[-43,1],[-28,0],[-20,0],[-22,0],[-89,1],[-40,-1],[-392,0],[-44,0],[-19,0],[-163,0],[-209,0],[-352,-1],[-228,0],[-329,-1],[-14,0],[-32,-1]],[[82523,4162],[-4,16],[-15,13],[-14,8],[-7,14],[-1,18],[-20,16],[-20,11],[-17,6],[-26,10],[-17,12],[-11,12],[-16,9],[-23,2],[-17,-8],[-7,-13],[-26,-3],[-21,-2],[-22,-9],[-25,2],[-30,-2],[-29,1],[-23,8],[-19,3],[-31,6],[-21,-4],[-18,8],[2,19],[-5,15],[-36,19],[-16,12],[-23,2],[-9,16],[9,22],[-6,16],[5,15],[10,18],[-5,14],[-6,26],[-12,16],[-15,13],[-14,10],[-3,17],[-10,16],[-25,11],[-22,1],[-17,8],[-10,15],[0,21],[-22,4],[-18,14],[-6,16],[-9,14],[-19,15],[-15,13],[-11,15],[-23,5],[1,18],[-11,13],[1,18],[-5,14],[-15,15],[-13,16],[-8,19],[-11,13],[-31,20],[-10,12],[-15,10],[-21,15],[-12,10],[5,16],[-6,18],[-12,14],[-8,22],[-8,17],[-23,40],[-19,10],[-7,16],[8,14],[-10,12],[2,16],[-183,-2],[-353,-2],[-9,0],[-14,0],[-74,0],[-346,-1],[-25,0],[-19,0],[-85,-13],[0,-89],[-1,-23],[-25,-24],[-27,-33],[-16,-31],[-6,-19],[-20,-16],[-31,-26],[-9,-22],[12,-22],[-33,-7],[-35,-9],[-18,-10],[-14,-20],[-12,-12],[-8,-13],[-12,-15],[-16,-28],[7,-16],[-6,-16],[-25,-15],[-38,-9],[-55,3],[-19,-3],[-18,1],[-20,2],[-24,0],[-24,-1],[-21,0],[-11,11],[-14,12],[-36,8],[-16,6],[-23,20],[-12,12],[-24,17],[-23,8],[-20,16],[-9,14],[-31,15],[-25,3],[-23,0],[-19,-10],[-22,-17],[-23,-13],[-21,-8],[-15,-9],[-22,-9],[-16,11],[-51,5],[-41,1],[-23,8],[-19,3],[-25,-5],[-20,13],[2,18],[-4,23],[-11,13],[-6,14],[10,30],[-3,16],[-6,38],[-1,14],[3,21],[-22,21],[-7,20],[-3,24],[-4,19],[17,14],[10,15],[4,25],[13,12],[19,14],[14,13],[33,26],[-1,21],[28,14],[11,12],[17,4],[23,10],[11,19],[29,34],[16,19],[18,20],[9,18],[12,15],[37,13],[18,8],[-3,19],[-1,29],[-6,22],[13,18],[21,20],[13,12],[13,16],[17,13],[3,26],[19,15],[26,7],[11,12],[6,14],[15,11],[53,29],[14,16],[17,-3],[23,11],[2,22],[2,17],[-4,26],[-4,25],[1,23],[13,13],[18,1],[17,9],[6,20],[-4,16],[-5,19],[-4,33],[-11,19],[-1,25],[-7,22],[-15,16],[4,18],[4,19],[0,18],[3,18],[4,17],[9,19],[-10,17],[-11,13],[-6,21],[8,22],[2,14],[2,19],[13,11],[12,17],[9,13],[4,15],[-11,13],[-17,18],[-7,18],[-3,14],[-9,23],[-10,14],[0,15],[1,16],[-14,10],[-2,15],[-3,29],[3,21],[4,15],[-12,11],[10,13],[5,20],[-1,15],[-13,14],[-3,16],[-15,8],[-2,18],[0,14],[-9,21],[5,15],[-21,8],[-22,-1],[-26,4],[-15,9],[-20,7],[-27,8],[-25,1],[-26,2],[-19,-4],[-15,-9],[-10,-13],[-3,-14],[-14,-17],[-36,-3],[-22,-5],[-22,-8],[-20,-13],[-14,-16],[-23,-5],[-18,1],[-11,13],[-15,11],[-27,-2],[-17,-6],[-34,-11],[-20,0],[-36,4],[-22,-3],[-19,-9],[-43,-2],[-22,-5],[-25,-7],[-36,-1],[-16,-1],[-13,12],[-15,5],[-23,12],[-7,18],[-14,13],[-6,19],[0,19],[8,14],[4,16],[3,16],[18,10],[0,37],[0,54],[-16,28],[-121,-1],[-179,0],[0,48],[-1,54],[-78,7],[-1,46],[0,50],[-17,0],[-69,4],[-73,1],[-1,23],[-2,82],[-63,-1],[-4,99],[-1,18],[3,38],[-1,42],[-122,0],[-217,0],[-232,0]],[[99991,14648],[1,-132],[1,-399],[3,-1433],[1,-359],[2,-1015],[0,-85],[-23,-1779],[-20,-1527],[-6,-505]],[[99950,7414],[-97,-10],[-62,-9],[-61,-11],[-36,-9],[-21,-10],[-18,-19],[14,-11],[21,-14],[30,-20],[16,-17],[6,-17],[-3,-24],[-27,-19],[-61,-15],[-21,-9],[-16,-7],[-27,-4],[-19,-4],[-20,-3],[-19,0],[-15,-11],[11,-15],[5,-16],[5,-16],[-15,-12],[-24,1],[-18,1],[-16,4],[-27,4],[-17,2],[-21,6],[-20,1],[-16,-6],[-24,-3],[-19,-3],[-22,0],[-22,-10],[-25,-5],[-12,-9],[-13,-10],[-19,1],[-21,-10],[-16,-5],[-18,10],[3,20],[-18,-2],[-17,-2],[-19,4],[-18,-2],[-16,-1],[-11,-11],[-20,-4],[-17,3],[-7,13],[-17,7],[-20,-1],[-9,-12],[-17,5],[-18,5],[-21,-3],[-20,-8],[-18,-5],[-18,-6],[-15,-11],[-8,-13],[-19,-8],[-20,-6],[-22,-3],[-16,-3],[-12,-14],[-3,-16],[-16,-12],[-18,-7],[-17,-9],[-18,-6],[-20,-7],[-17,-2],[-18,-3],[-18,-1],[-18,2],[-14,15],[7,15],[-11,11],[-23,12],[-18,7],[-18,7],[-21,9],[-15,12],[-17,2],[-17,-8],[-12,-12],[-19,-3],[-20,-1],[-16,4],[-12,11],[-9,14],[-17,7],[-11,10],[-13,13],[-16,6],[-13,-15],[-18,-10],[-18,-7],[-17,-4],[-20,4],[-15,8],[-9,15],[-25,10],[-22,0],[-9,-18],[-4,-19],[-3,-20],[-8,-18],[-1,-24],[-5,-20],[-6,-16],[-12,-18],[-1,-15],[-3,-17],[-15,-11],[-6,-14],[-19,1],[-17,5],[-16,5],[-15,5],[-19,-11],[-5,-18],[-10,-16],[-15,-8],[-9,16],[-4,15],[2,19],[-18,3],[-16,6],[-18,4],[-17,1],[-20,4],[-15,-13],[-14,-8],[-13,-10],[-23,-3],[-16,2],[-20,3],[-22,11],[-18,12],[-21,7],[-30,16],[-22,-4],[-21,-3],[-19,-1],[-19,0],[-18,0],[-12,10],[-15,10],[-18,-4],[-21,1],[-15,7],[-17,5],[-16,0],[-25,-6],[-22,-5],[-18,-5],[-18,-1],[-22,-4],[-18,-3],[-19,3],[-23,-2],[-28,0],[-23,-1],[-25,1],[-26,1],[-22,2],[-24,-2],[-23,-8],[-20,-1],[-20,-2],[-19,-4],[-17,-8],[-18,-4],[-17,3],[-12,13],[-18,8],[-21,1],[-22,-6],[-17,8],[-16,14],[-9,25],[-9,15],[-24,11],[-20,9],[-15,8],[-17,16],[-12,11],[-10,12],[-9,19],[-6,16],[-7,14],[-7,15],[-18,5],[-13,12],[-12,10],[-15,16],[1,17],[-1,15],[-6,20],[8,60],[18,4],[29,7],[23,16],[19,16],[23,9],[38,7],[34,2],[14,17],[-10,22],[13,15],[-4,14],[0,17],[5,19],[-1,15],[-5,40],[18,17],[16,17],[20,32],[13,21],[11,14],[-2,18],[-8,12],[7,24],[13,31],[15,22],[10,37],[22,33],[-5,14],[16,33],[6,64],[-7,24],[-5,25],[10,27],[0,14],[13,21],[-1,16],[12,26],[-15,15],[24,28],[5,22],[-12,16],[-7,18],[24,16],[0,15],[9,18],[7,21],[6,14],[9,14],[10,14],[5,15],[-36,6],[-36,6],[-17,3],[-32,8],[-17,7],[-14,9],[-10,15],[1,19],[13,42],[-30,-3],[-17,-5],[-23,2],[-31,8],[-14,15],[-17,21],[-18,11],[-14,19],[15,28],[9,18],[8,15],[-26,10],[-35,24],[26,104],[1,18],[-3,23],[-16,5],[-46,9],[-22,0],[-33,-26],[5,-15],[-14,-19],[-6,-27],[-20,-22],[-19,-20],[-3,-17],[-8,-16],[-6,-20],[-8,-24],[-15,-13],[-32,-14],[-31,-20],[-37,-27],[-10,-12],[-20,-8],[-7,-22],[-23,-18],[1,-36],[25,-21],[-23,-24],[-16,-10],[-6,-14],[-36,-31],[-27,-20],[-12,-16],[-15,-13],[-13,-26],[-17,-20],[-19,-24],[-16,-12],[-30,-8],[-20,-11],[-11,-19],[-2,-25],[-16,-44],[-19,0],[-25,8],[-31,11],[-36,12],[-31,5],[-34,7],[-19,8],[-16,9],[-30,10],[-18,7],[0,17],[-42,4],[-22,2],[-21,-6],[-32,1],[-33,4],[-28,5],[-27,11],[-30,-6],[-22,5],[-24,3],[-18,0],[-34,-16],[-23,-1],[-24,16],[-30,4],[-21,7],[-11,11],[-20,3],[-23,2],[-27,11],[-42,37],[-13,9],[-30,2],[-38,-7],[-37,28],[-14,18],[-15,7],[-27,9],[-19,5],[1,15],[8,28],[5,16],[3,16],[10,17],[8,15],[11,29],[15,15],[-22,28],[-7,33],[-33,-4],[-27,-1],[-33,-1],[-20,-1],[-23,0],[-22,0],[-31,7],[-40,-1],[-9,13],[-24,16],[-43,-17],[-29,13],[-25,5],[-26,18],[-9,13],[-62,-1],[-114,-1],[-162,-1],[-210,0],[-95,0],[-74,0],[-194,-1],[-35,1],[-247,1],[-268,1],[-176,-1],[-103,0],[-21,0],[-113,0],[-28,0],[-23,0],[-268,-2],[-39,0],[-26,0],[-24,0],[-45,1],[-118,1],[-30,0],[-55,0],[-97,0],[-12,0],[-22,0],[-16,0],[-80,0],[-249,1],[-89,0],[-51,0],[-126,1],[-110,0],[-38,0],[-16,0],[-28,0],[-39,1],[-40,0],[-53,1],[-27,0],[-22,0],[-123,1],[-26,1],[-51,0],[-17,-6],[-8,-15],[-9,-18],[-17,-17],[-34,-16],[-37,-10],[-67,-10],[-17,-5],[-15,-22],[-5,-19],[10,-24],[-13,-30],[-28,-13],[-47,7],[-30,5],[-30,-12],[-16,-7],[-18,-4],[-9,-19],[-7,-15],[-16,-9],[-26,-8],[-23,-9],[-21,-10],[-8,-14],[10,-28],[3,-19],[13,-10],[0,-16],[-12,-13],[-7,-15],[2,-20],[6,-14],[7,-18],[11,-11],[16,-12],[13,-17],[9,-17],[10,-14],[-6,-16],[-9,-13],[6,-20],[-11,-20],[-13,-22],[7,-27],[17,-22],[4,-19],[3,-17],[-2,-17],[28,-31],[10,-14],[16,-13],[7,-20],[1,-18],[21,-153],[30,-25],[17,-29],[17,-41],[21,-21],[71,-21],[42,-17],[27,-23],[20,-35],[10,-38],[10,-19],[16,-11],[14,-20],[7,-30],[0,-22],[1,-18],[-1,-16],[-10,-15],[15,-19],[24,-14],[20,-12],[5,-15],[-5,-16],[-7,-17],[0,-20],[6,-21],[13,-12],[19,-14],[15,-7],[20,-4],[18,-6],[1,-16],[6,-14],[-6,-15],[-4,-19],[5,-16],[9,-18],[0,-25],[7,-17],[11,-21],[13,-19],[8,-23],[5,-20],[6,-21],[4,-14],[11,-19],[15,-12],[19,-16],[18,-20],[14,-19],[-1,-17],[10,-18],[10,-15],[10,-17],[9,-15],[13,-20],[11,-16],[18,-19],[12,-16],[15,-11],[-15,-11],[-6,-17],[-2,-15],[11,-13],[11,-11],[11,-11],[-3,-18],[-8,-20],[-4,-14],[-7,-16],[-8,-17],[6,-16],[10,-12],[15,-9],[19,-8],[16,-16],[1,-20],[-20,0],[-21,-9],[-11,-16],[-18,-8],[-24,-15],[-14,-10],[-30,0],[-20,-3],[-23,-4],[-31,-7],[-25,3],[-15,-7],[9,-18],[-10,-13],[-11,-11],[-13,-12],[-15,-14],[-2,-21],[-15,-35]],[[91035,6024],[-22,0],[-50,11],[-173,-3],[-188,-3],[-145,0],[-124,0],[-292,0],[-27,0],[-262,-1],[-53,0],[-140,0],[-186,-1],[-71,0],[-37,0],[-24,0],[-29,0],[3,78],[3,21],[1,58],[-78,0],[0,51],[-32,-1],[-35,0],[-13,0],[-197,-6],[-12,0],[9,-15],[24,-8],[14,-14],[13,2],[3,0],[18,17],[15,4],[-1,-17],[-6,-15],[-22,-2],[-42,6],[-37,13],[-22,10],[-8,-1],[-13,-1],[-9,-18],[-1,-22],[5,-7],[8,-13],[20,-7],[31,-2],[4,-14],[-12,-11],[-20,-6],[-16,5],[-20,1],[-12,1],[13,-10],[12,-12],[10,-16],[10,-1],[10,0],[14,-10],[-7,-14],[-20,-7],[-1,-1],[-19,6],[-19,-4],[-2,-15],[-140,0],[-55,0],[-175,2],[-17,-1],[-21,-2],[-78,1],[-173,1],[-135,-2],[-17,0],[-90,-1],[-75,-1],[-266,0],[-292,0],[-43,0],[-316,2],[-316,2]],[[42351,9357],[34,-9],[22,-7],[24,-10],[30,-20],[34,-22],[24,-13],[33,-13],[32,-11],[28,-6],[60,-10],[7,0],[4,-1],[6,0],[15,0],[23,3],[20,-1],[40,-1],[33,0],[74,-21],[41,-2],[85,-9],[11,-1],[33,0],[30,-1],[53,-27],[42,-20],[70,0],[25,0],[42,7],[111,6],[47,3],[52,-8],[64,-27],[21,-7],[95,-5],[70,-12],[14,-3],[51,-4],[5,-1],[18,-1],[11,0],[63,-21],[64,-34],[10,-7],[14,-3],[31,-6],[18,-4],[-3,-23],[-17,-39],[0,-8],[18,-10],[352,-146],[105,-20],[138,-55],[53,-34],[67,-43],[7,-5],[52,7],[6,1],[57,13],[25,-2],[5,0],[7,0],[2,0],[17,-1],[13,-1],[7,-1],[24,-1],[6,0],[6,-1],[30,-5],[48,-8],[88,-50],[7,-5],[41,13],[18,9],[46,20],[40,4],[11,0],[12,0],[21,3],[63,7],[60,-4],[35,-2],[42,-7],[32,-7],[84,-27],[69,-11],[15,-3],[32,5],[21,3],[63,27],[63,21],[157,-2],[4,-1],[32,-4],[84,-8],[16,-9],[9,-8],[14,-15],[3,-2],[35,-14],[48,-21],[9,-4],[24,0],[8,0],[73,-20],[59,-26],[5,-2],[12,-10],[21,-1],[31,-1],[19,-3],[12,-2],[41,-18],[30,-21],[5,-2],[36,-13],[100,-69],[20,-17],[7,-14],[8,-17],[14,-35],[5,-6],[17,-11],[17,-6],[12,-3],[2,0],[17,1],[17,2],[35,0],[49,-2],[43,-3],[48,-3],[121,-8],[17,1],[28,2],[18,1],[31,-15],[31,-21],[27,-11],[5,-3],[16,-11],[20,-11],[18,-6],[19,-2],[5,0],[4,0],[28,0],[52,-17],[7,-3],[25,-15],[26,-18],[8,-2],[26,-3],[3,0],[21,-1],[19,3],[32,11],[30,4],[4,1],[1,0],[31,0],[18,-1],[1,0],[12,-1],[30,-4],[14,-3],[49,-15],[126,-2],[7,0],[66,-2],[117,-13],[67,-11],[16,-3],[134,-32],[11,-5],[20,-11],[27,-18],[20,-17],[26,-20],[12,-7],[53,-20],[28,-7],[76,-17],[66,-14],[76,-14],[135,-45],[24,-8],[12,-4],[62,-22],[177,-75],[46,-20],[52,-33],[10,-9],[34,-40],[5,-6],[11,-18],[6,-18],[6,-26],[1,-19],[3,-18],[6,-17],[20,-43],[9,-17],[12,-15],[11,-12],[24,-19],[11,-6],[39,-18],[47,-18],[37,-20],[12,-11],[33,-37],[53,-54],[22,-18],[20,-12],[16,-10],[9,-5],[11,-1],[56,-2],[15,-3],[2,0],[15,1],[8,0],[9,0],[9,0],[36,1],[2,0],[6,0],[29,6],[1,0],[17,0],[47,-22],[51,-21],[3,-1],[4,0],[7,1],[8,7],[2,3],[48,3],[17,1],[13,2],[8,2],[10,6],[19,11],[9,8],[19,25],[1,7],[11,15],[13,17],[27,22],[54,37],[1,0],[6,3],[76,8],[11,0],[22,-2],[39,0],[71,6],[61,7],[17,2],[47,14],[95,36],[35,14],[18,9],[21,15],[13,5],[22,8],[6,2],[11,3],[50,5],[4,0],[21,6],[8,2],[11,8],[11,19],[8,9],[24,21],[32,21],[12,7],[14,4],[3,1],[3,0],[21,4],[25,1],[84,24],[25,7],[35,15],[12,3],[2,1],[8,1],[83,17],[42,8],[5,1],[39,1],[13,0],[50,-10],[90,-18],[24,-8],[21,-18],[11,-6],[13,-5],[8,-1],[21,1],[10,1],[45,8],[16,6],[17,9],[14,15],[7,12],[5,3],[10,3],[21,0],[18,-3],[31,-10],[3,-2],[19,-25],[17,-1],[17,1],[27,9],[29,5],[44,3],[29,-4],[34,-2]],[[52286,7602],[0,-17],[0,-58],[-65,-14],[-16,-2],[-61,-8],[-52,-6],[-17,-2],[-33,-5],[-17,-2],[-29,0],[-24,-2],[-21,-1],[-58,-4],[-77,-5],[-121,-7],[-113,-6],[-78,-3],[-135,-7],[-85,-5],[-36,-5],[-33,-11],[0,-9],[0,-36],[0,-73],[0,-15],[1,-16],[-23,-1],[-10,-12],[0,-38],[-2,-58],[0,-44],[-1,-29],[0,-26],[0,-33],[0,-15],[0,-24],[-1,-41],[0,-15],[0,-25],[0,-33],[-1,-21],[0,-2],[1,-49],[1,-14],[-1,-38],[0,-59],[0,-22],[0,-22],[1,-17],[-1,-52],[0,-28],[1,-19],[0,-50],[0,-34],[0,-99],[1,-18],[0,-46],[2,-44],[-2,-158],[1,-16],[1,-39],[-140,1],[-18,0],[-28,0],[-41,0],[-33,0],[-24,0],[-32,0],[-113,0],[-75,0],[-75,0],[-17,0],[-20,0],[-56,0],[-34,0],[-16,0],[-46,1],[-17,0],[-155,0],[-158,0],[-31,0],[-46,0],[-62,0],[-18,0],[-152,0],[-77,0],[-19,1],[-24,0],[-17,0],[-28,0],[-25,0],[-46,0],[-74,0],[-4,0],[-17,0],[-23,0],[-38,0],[-29,0],[-52,0],[-30,0],[-20,0],[-20,0],[-20,0],[-27,0],[-44,0],[-17,0],[-33,0],[-46,0],[-65,0],[-30,0],[-29,0],[-16,0],[-23,0],[-18,0],[-36,0],[-42,0],[-159,0],[-28,0],[-46,1],[-20,0],[-45,0],[-52,0],[-22,0],[-20,0],[-42,0],[-24,0],[-27,0],[-17,0],[-24,0],[-65,0],[-39,0],[-30,0],[-26,0],[-34,0],[-20,0],[-79,0],[-32,0],[-41,0],[-32,0],[-22,0],[-23,0],[-17,0],[-58,0],[-41,0],[-11,-48],[-1,-16],[1,-37],[-4,-403],[0,-25],[-1,-77],[4,-120],[-2,-46],[-1,-29],[-2,-34],[-1,-14],[-3,-75],[-2,-27],[0,-21],[-3,-123],[-1,-37],[0,-7],[-2,-74],[-1,-26],[88,6],[-1,-222],[-1,-42],[-1,-161],[1,-123],[0,-79],[1,-15],[0,-93],[1,-125],[0,-34],[-2,-186],[0,-76],[3,-37],[1,-75],[-2,-173],[-2,-109],[-2,-142],[-1,-73],[0,-15],[1,-71],[-2,-135],[-1,-102],[-1,-19],[0,-40],[0,-24],[0,-14],[0,-108],[1,-23],[-1,-11],[-2,-203],[0,-44],[0,-38],[1,-33],[0,-15],[0,-41],[0,-94],[-1,-146],[2,-106],[2,-91],[2,-78],[0,-46],[-1,-237],[0,-67],[-1,-141],[-1,-110],[0,-37],[0,-90],[-1,-136],[0,-39],[0,-74],[-1,-158],[0,-52],[0,-59],[0,-62],[1,-42],[1,-42],[1,-45],[-4,-153]],[[47750,7],[-1894,20],[-197,2],[-154,2],[-1835,19],[-2158,22],[-828,9],[-709,7],[-2044,-25],[-1740,-22],[-643,-8]],[[53397,7728],[-23,-3],[-20,1],[-20,-2],[-18,-4],[-19,-7],[-17,-5],[-15,-7],[-27,-6],[-17,-4],[-19,-6],[-3,-2],[-6,-3],[-15,-9],[-20,-6],[-18,-4],[-20,-2],[-19,-2],[-17,-1],[-18,1],[-24,4],[-25,-3],[-20,1],[-23,8],[-12,23],[1,17],[-12,18],[-24,3],[-19,0],[-22,-1],[-17,-1],[-20,-2],[-22,-4],[-17,-8],[-26,-9],[-29,-7],[-20,-1],[-23,0],[-17,0],[-16,5],[-19,3],[-28,10],[-24,4],[-20,1],[-18,-1],[-18,-3],[-17,-2],[-24,-6],[-17,-13],[-31,-6],[-17,-2],[-1,0],[-19,-8],[-16,-10],[-8,-7],[-6,-6],[-8,-16],[0,-1],[-7,-16],[-6,-14],[-3,-2],[-12,-9],[-3,0],[-16,1],[-27,5],[-3,0],[-4,0],[-21,0]],[[68415,4763],[0,-77],[0,-93],[0,-131],[0,-118],[0,-73],[0,-251],[0,-89],[1,-68],[-1,-155],[0,-49],[0,-17],[0,-129],[0,-79],[0,-16],[0,-263],[0,-17],[0,-124],[0,-28],[0,-17],[0,-72],[0,-282],[0,-34],[0,-17],[0,-10],[0,-31],[0,-11],[0,-15],[1,-47],[1,-111],[-2,-112],[0,-46],[0,-74],[0,-235],[0,-16],[0,-40],[0,-20],[0,-96],[0,-68],[0,-50],[0,-39],[0,-47],[0,-17],[0,-21],[0,-83],[0,-35],[0,-42],[0,-130],[0,-113],[0,-75],[0,-48],[0,-48],[0,-53],[0,-26],[0,-50],[0,-38],[0,-17],[0,-39],[0,-35],[0,-27],[0,-36],[0,-1],[0,-88],[0,-46],[0,-52],[0,-28],[0,-78],[0,-29],[0,-30],[0,-22],[0,-22],[0,-101]],[[68415,66],[-637,-7],[-464,-4],[-1937,-19],[-1490,-14],[-872,-9],[-3708,-4],[-1172,-2],[-1959,-2],[-3612,-4],[-150,0],[-103,0],[-675,-1],[-1906,4],[-1421,2],[-559,1]],[[99950,7414],[-1,-633],[-1,-637],[-1,-332],[0,-3],[0,-69],[-1,-660],[-2,-982],[1,-864],[0,-100],[0,-48],[0,-52],[0,-35],[0,-64],[0,-239],[2,-1868],[3,-715],[-3484,-14],[-571,-2],[-656,-3],[-1109,-4],[-45,-1],[-1576,-6]],[[92509,83],[-10,85],[2,16],[-13,26],[-13,24],[-1,16],[-2,18],[-8,20],[-7,16],[-9,30],[9,16],[16,11],[-3,16],[7,13],[12,21],[-14,12],[-17,19],[3,22],[11,20],[-12,21],[-1,15],[-5,18],[-13,17],[-2,20],[29,11],[16,5],[12,11],[5,27],[-3,15],[-5,22],[-20,10],[-14,12],[-13,13],[-17,17],[-19,24],[-7,15],[0,14],[-6,16],[25,12],[5,16],[1,18],[9,17],[-1,17],[6,19],[5,16],[-6,17],[-10,15],[-17,0],[-32,16],[-15,6],[-11,12],[-4,21],[13,12],[10,11],[8,17],[-9,14],[0,25],[-20,8],[-15,6],[-19,15],[-19,15],[-18,11],[-6,13],[-7,17],[-21,1],[-26,-2],[-18,1],[-22,7],[-19,9],[-16,9],[-31,10],[-30,0],[-31,3],[-35,-3],[-22,-11],[-7,-14],[-18,1],[-19,11],[-35,3],[-20,8],[-28,-1],[-18,7],[-28,11],[-12,11],[-16,4],[-9,17],[-10,24],[-30,11],[-22,9],[-17,11],[-16,7],[-37,-4],[-25,-9],[-35,-5],[-20,-3],[-22,0],[-45,11],[-18,9],[-22,4],[-19,6],[-11,10],[-17,8],[-13,12],[-9,18],[-18,8],[-2,16],[-13,18],[-17,9],[-22,21],[-9,17],[-12,-12],[-23,-6],[-16,-6],[-24,-6],[-28,-1],[-19,0],[-22,11],[-38,4],[-19,-2],[-23,5],[-13,9],[-13,12],[-17,17],[-13,18],[-14,22],[1,15],[3,24],[-19,23],[-9,21],[-1,15],[3,15],[20,13],[18,17],[21,7],[10,23],[12,13],[20,8],[12,10],[-3,16],[-11,13],[2,18],[8,17],[4,22],[22,17],[22,6],[4,52],[-9,22],[9,15],[-2,15],[-7,15],[-9,15],[2,16],[15,12],[15,11],[11,11],[-3,18],[-7,18],[15,11],[6,15],[1,16],[6,18],[7,16],[-24,1],[-17,6],[-14,10],[-12,10],[-13,16],[-14,12],[-13,8],[-17,13],[-16,11],[-9,14],[-17,12],[-19,2],[-21,8],[-19,9],[-15,14],[-16,5],[-20,4],[-19,2],[-19,10],[-14,8],[-11,17],[-15,9],[-18,4],[-6,17],[-7,19],[-11,16],[-3,14],[-6,15],[-2,15],[-1,20],[-2,16],[-2,15],[0,15],[-4,14],[3,19],[10,21],[-3,15],[-6,13],[-11,18],[-4,19],[-3,17],[-8,17],[-3,18],[-6,18],[-5,16],[-4,14],[0,18],[-13,9],[-8,13],[-19,7],[-19,5],[-17,7],[-22,5],[-18,5],[-14,13],[-15,13],[-14,16],[-3,22],[-3,16],[5,15],[3,19],[-10,15],[1,21],[4,17],[15,13],[-4,16],[-7,13],[0,16],[1,16],[-2,22],[-9,13],[2,22],[9,16],[11,15],[11,17],[14,10],[17,17],[12,13],[12,17],[10,18],[12,18],[10,15],[16,8],[14,12],[15,14],[8,18],[5,15],[11,12],[7,14],[5,16],[-2,17],[-8,16],[3,18],[4,16],[1,18],[14,14],[-9,16],[9,15],[-8,16],[-9,15],[-6,14],[-4,15],[8,20],[0,14],[-4,14],[-1,15],[4,15],[12,10],[14,11],[9,14],[19,9],[15,9],[17,8],[28,2],[16,0],[29,-4],[26,-9],[16,-6],[18,-6],[20,-2],[15,7],[15,10],[-1,27],[5,15],[8,32],[4,19],[14,10],[39,45],[18,23],[17,14],[20,9],[16,16],[20,5],[26,2],[24,2],[17,6],[24,7],[34,16],[26,18],[89,23],[8,17],[34,11],[34,9],[25,11],[26,-3],[23,5],[5,20],[14,25],[-28,15],[-17,7],[-54,7],[-36,7],[-57,11],[-32,2],[-30,1],[-12,15],[-12,16],[-5,25],[-10,14],[-22,7],[-17,0],[-21,5],[-23,17],[-15,9],[-7,22],[-10,22],[1,28],[11,11],[20,4],[36,18],[-9,23],[-12,16],[-5,43],[-9,22],[-10,14],[4,23],[7,20],[20,15],[27,27],[-1,18],[-14,28],[-39,50],[-22,21],[-11,13],[-20,22],[3,20],[-18,11],[10,12],[7,17],[13,18],[26,9],[27,3],[31,0],[25,4],[22,18],[23,1],[18,6],[14,12],[20,10],[21,21],[10,14],[17,5],[26,-3],[25,-6],[23,-1],[13,10],[-15,6],[-11,17],[-14,9],[-22,12],[-20,7],[-1,15],[21,5],[15,21],[21,7],[17,1],[21,16],[5,15],[23,24],[23,10],[16,11],[15,15],[18,11],[7,14],[14,12],[18,8],[28,5],[10,17],[24,6],[26,3],[-10,16],[-24,11],[-16,7],[-16,13],[-14,9],[-15,17],[1,23],[-13,16],[1,22],[-3,16],[2,26],[-17,8],[-10,5],[-30,8],[-15,14],[-17,13],[-18,8],[-17,1],[-28,3],[-27,-1],[-18,-1],[-16,-17],[-23,11],[-16,1],[-9,14],[-16,26],[-27,16],[-16,25],[0,16],[6,19],[-27,4],[-25,9],[-2,19],[-4,17],[5,17],[16,14],[20,11],[1,16],[-14,21],[-13,11],[-14,13],[-12,13],[-6,16],[-3,23],[-12,14],[6,20],[-4,15],[-9,14],[-18,-7],[-18,-1],[-19,-2],[-18,-1],[-22,-3],[-29,-10],[-30,-3],[-29,-5],[-28,-6],[-23,-6],[-3,16],[1,19],[1,25],[-1,16],[-2,17],[-3,21],[2,15],[13,17],[-10,19],[-9,13],[-6,16],[-7,30],[-20,3],[-14,13],[-11,15],[-2,20],[7,24],[23,4],[30,8],[13,12],[2,27]],[[82523,4162],[23,-17],[26,-13],[16,-4],[14,-11],[25,-5],[15,-12],[8,-25],[13,-19],[5,-16],[10,-20],[12,-13],[8,-23],[15,-16],[11,-14],[7,-18],[23,-8],[26,0],[18,6],[17,-5],[18,0],[19,-12],[21,1],[24,0],[22,4],[18,8],[16,6],[15,7],[13,-13],[15,-12],[10,-18],[-2,-17],[-5,-21],[9,-14],[28,-4],[8,-13],[3,-18],[7,-13],[26,-15],[7,-13],[13,-10],[7,-21],[18,-23],[15,-25],[19,-11],[11,-15],[22,-30],[6,-15],[12,-17],[28,-10],[28,-7],[23,-10],[15,-12],[29,-16],[15,-20],[8,-18],[7,-19],[51,0],[2,-50],[-1,-24],[0,-22],[-1,-16],[1,-28],[0,-26],[1,-14],[0,-30],[1,-29],[-1,-30],[0,-35],[1,-35],[-1,-42],[0,-16],[0,-15],[0,-18],[0,-22],[0,-15],[1,-29],[0,-14],[1,-34],[-1,-25],[1,-14],[1,-15],[0,-22],[3,-26],[-3,-37],[0,-42],[0,-32],[0,-23],[-1,-26],[2,-42],[0,-34],[-1,-50],[1,-48],[-67,1],[-19,0],[-55,0],[-74,1],[-21,-1],[-54,-2],[-67,3],[-69,0],[-60,1],[-49,-1],[-16,0],[-60,-2],[-14,-17],[0,-16],[1,-21],[1,-39],[0,-16],[0,-5],[1,-14],[2,-77],[-3,-26],[0,-28],[-3,-40],[1,-21],[-1,-43],[0,-25],[0,-16],[0,-22],[0,-28],[-2,-39],[0,-32],[2,-43],[-2,-45],[-2,-27],[1,-16],[3,-36],[1,-18],[2,-26],[1,-11],[0,-5],[0,-38],[0,-7],[0,-31],[-3,-207],[-1,-92],[-1,-89],[0,-25],[1,-57],[4,-150],[0,-26],[0,-59],[-1,-52],[0,-71],[0,-16],[-1,-35],[0,-16],[-1,-31],[-2,-109],[1,-17],[0,-14],[0,-26],[0,-27],[1,-32],[0,-16],[0,-20],[-2,-58],[1,-18],[2,-57],[-1,-75],[1,-57],[0,-11],[0,-4],[0,-16],[0,-37],[-3,-110]],[[82793,55],[-898,1],[-72,0],[-425,0],[-334,1],[-129,0],[-479,0],[-7275,5],[-2009,2],[-2757,2]],[[92509,83],[-179,0],[-4722,-14],[-50,0],[-350,-1],[-159,-1],[-1365,-3],[-345,-1],[-44,-1],[-2096,-5],[-406,-2]]],"transform":{"scale":[0.00006199263343633436,0.00007007286599865967],"translate":[-117.24286972999994,41.99362186200011]}} diff --git a/src/js/config/mapconfig/mapfiles/county/il-counties.json b/src/js/config/mapconfig/mapfiles/county/il-counties.json new file mode 100644 index 00000000..1b40af62 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/il-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-91.51296742199986,36.970750113000065,-87.01807616899993,42.508294202],"geometries":[{"type":"Polygon","properties":{"name":"IL"},"id":"17085","arcs":[[0,1,2]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17177","arcs":[[3,-1,4,5,6]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17201","arcs":[[7,8,-6,9]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17111","arcs":[[10,11,12,13,14,15]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17007","arcs":[[-15,16,-8,17]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17097","arcs":[[18,-11,19,20]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17000","arcs":[[21,-21,22]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17141","arcs":[[23,24,25,26,-7,-9]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17015","arcs":[[-27,27,28,-2,-4]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17031","arcs":[[-19,-22,29,30,31,32,-12]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17037","arcs":[[33,34,35,36,-24,-17,-14]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17089","arcs":[[-33,37,38,-34,-13]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17043","arcs":[[39,40,-38,-32]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17195","arcs":[[-26,41,42,43,44,45,-28]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17103","arcs":[[-37,46,47,-42,-25]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17161","arcs":[[48,49,50,-45]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17197","arcs":[[-31,51,52,53,54,-40]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17093","arcs":[[-55,55,56,-35,-39,-41]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17099","arcs":[[-57,57,58,59,60,61,62,-47,-36]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17011","arcs":[[-63,63,64,65,66,-43,-48]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17073","arcs":[[-67,67,68,69,-49,-44]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17063","arcs":[[70,71,-58,-56,-54]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17131","arcs":[[-70,72,73,74,75,-50]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17155","arcs":[[-62,76,-64]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17091","arcs":[[77,78,79,80,-71,-53]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17175","arcs":[[-66,81,82,83,-68]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17095","arcs":[[-84,84,85,86,-73,-69]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17123","arcs":[[-77,-61,87,88,-82,-65]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17105","arcs":[[-81,89,90,91,-59,-72]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17071","arcs":[[92,93,94,95,-75]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17187","arcs":[[-87,96,97,-93,-74]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17075","arcs":[[98,99,100,-79]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17053","arcs":[[101,102,103,-90,-80,-101]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17143","arcs":[[-89,104,105,106,-85,-83]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17203","arcs":[[107,108,-105,-88,-60,-92]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17113","arcs":[[-104,109,110,111,112,113,-108,-91]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17179","arcs":[[-114,114,115,116,-106,-109]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17057","arcs":[[-107,-117,117,118,119,-97,-86]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17067","arcs":[[120,121,122,123,-95]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17109","arcs":[[-120,124,-121,-94,-98]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17183","arcs":[[125,126,127,-102,-100]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17125","arcs":[[128,129,130,131,-118,-116]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17019","arcs":[[-128,132,133,-110,-103]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17107","arcs":[[134,135,136,137,-129,-115,-113]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17039","arcs":[[138,139,-135,-112]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17169","arcs":[[-119,-132,140,141,142,-122,-125]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17147","arcs":[[-134,143,144,145,-139,-111]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17001","arcs":[[-143,146,147,148,-123]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17129","arcs":[[-138,149,150,-130]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17017","arcs":[[-131,-151,151,152,153,-141]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17009","arcs":[[-154,154,155,-147,-142]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17115","arcs":[[-146,156,157,158,159,-136,-140]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17167","arcs":[[-160,160,161,162,163,-152,-150,-137]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17045","arcs":[[164,165,166,-127,167]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17041","arcs":[[-167,168,169,-144,-133]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17137","arcs":[[-164,170,171,172,173,-155,-153]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17149","arcs":[[-174,174,175,176,177,-148,-156]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17021","arcs":[[-159,178,179,-161]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17139","arcs":[[-170,180,181,-157,-145]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17171","arcs":[[182,-175,-173]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17029","arcs":[[-166,183,184,185,-181,-169]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17173","arcs":[[-182,-186,186,187,188,189,-179,-158]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17135","arcs":[[-180,-190,190,191,192,193,-162]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17117","arcs":[[-194,194,195,196,-171,-163]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17061","arcs":[[-172,-197,197,198,-176,-183]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17023","arcs":[[199,200,201,202,-184,-165]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17013","arcs":[[-199,203,204,-177]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17035","arcs":[[-203,205,206,-187,-185]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17083","arcs":[[-196,207,208,-204,-198]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17051","arcs":[[-189,209,210,211,212,213,-191]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17049","arcs":[[-207,214,215,-210,-188]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17033","arcs":[[216,217,218,219,-201]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17079","arcs":[[-220,220,221,-215,-206,-202]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17005","arcs":[[-214,222,223,-192]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17119","arcs":[[-195,-193,-224,224,225,226,-208]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17025","arcs":[[-222,227,228,229,-211,-216]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17101","arcs":[[230,231,-218,232]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17159","arcs":[[-219,-232,233,234,235,-228,-221]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17121","arcs":[[-230,236,237,238,239,-212]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17027","arcs":[[-213,-240,240,241,-225,-223]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17163","arcs":[[-242,242,243,244,245,-226]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17191","arcs":[[-236,246,247,248,249,-237,-229]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17047","arcs":[[250,251,-247,-235]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17185","arcs":[[-234,-231,252,253,-251]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17133","arcs":[[254,255,-245]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17189","arcs":[[-239,256,257,258,-243,-241]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17081","arcs":[[-250,259,260,261,-257,-238]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17193","arcs":[[-254,262,263,264,-248,-252]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17065","arcs":[[-265,265,266,267,-260,-249]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17157","arcs":[[-244,-259,268,269,270,-255]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17145","arcs":[[-258,-262,271,272,-269]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17055","arcs":[[-268,273,274,275,-272,-261]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17077","arcs":[[-276,276,277,278,-270,-273]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17059","arcs":[[279,280,281,-266,-264]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17165","arcs":[[-282,282,283,284,-274,-267]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17199","arcs":[[-285,285,286,-277,-275]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17069","arcs":[[-281,287,288,-283]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17151","arcs":[[-289,289,290,291,-284]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17087","arcs":[[-292,292,293,294,-286]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17181","arcs":[[-287,-295,295,296,297,-278]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17127","arcs":[[298,299,-293,-291]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17003","arcs":[[300,301,-297]]},{"type":"Polygon","properties":{"name":"IL"},"id":"17153","arcs":[[-294,-300,302,-301,-296]]}]},"states":{"type":"GeometryCollection","bbox":[-91.51296742199986,36.970750113000065,-87.01807616899993,42.508294202],"geometries":[{"type":"Polygon","properties":{"name":"Illinois"},"id":"17","arcs":[[4,9,17,15,19,20,-22,29,51,77,98,125,167,199,216,232,252,262,279,287,289,298,302,301,297,278,270,255,245,226,208,204,177,148,123,95,75,50,45,28,2]]}]}},"arcs":[[[35301,99954],[-8,-72],[-1,-46],[0,-22],[4,-178],[4,-202],[3,-95],[7,-222],[3,-71],[9,-215],[0,-1],[6,-148],[3,-99],[4,-117],[3,-77],[3,-71],[3,-136],[3,-104],[0,-21],[4,-92],[4,-172],[1,-67],[3,-99],[-5,-35],[-11,-63],[5,-88],[0,-3],[2,-45],[7,-129],[1,-20],[1,-29],[1,-17],[2,-37],[8,-162],[7,-148],[2,-26],[5,-88],[10,-179],[7,-86],[2,-66],[5,-63],[9,-134],[7,-136],[-1,-30],[5,-63],[-9,-33],[1,-84],[2,-115],[5,-149],[2,-175],[1,-45],[1,-44],[-2,-85],[1,-20],[4,-135],[1,-28],[12,-209],[3,-66],[2,-24],[-1,-30],[1,-83],[-4,-218],[-1,-72]],[[35447,94365],[-209,0],[-61,0],[-164,0],[-34,0],[-140,0],[-193,2],[-29,0],[-255,1],[-146,1],[-73,0],[-327,1],[-156,4],[-3,0],[-50,3],[-1,0],[-181,-1],[-1,0],[-138,2],[-250,-3],[-41,1],[-48,-1],[-26,2],[-31,2],[-262,1],[-83,-1],[-197,-2],[-254,-1],[-133,-1],[-183,-1],[-40,1],[-203,2],[-121,1],[-152,2],[-386,-4],[-135,-1],[-227,-3],[-314,-3],[-93,-1],[-325,-4],[-183,-2],[-177,-2],[-157,-2],[-59,-1],[-197,-2],[-121,-3],[-145,-3],[-257,-5],[-84,1],[-38,1],[-62,-1],[-98,-2],[-6,0],[-53,-1],[-25,-1],[-25,0],[-310,-3],[-3,0],[-25,-1],[-42,0],[-167,-2],[-41,-1],[-41,0],[-38,-1],[-32,0],[-27,-2],[-168,-2],[-225,-3],[-100,-1],[-110,-5],[-12,-1],[-164,0]],[[26590,94319],[-72,41],[-162,90],[-25,7],[-60,14],[-2,1],[-79,8],[-281,30],[-107,11],[-84,9],[-122,56],[-68,31],[-84,38],[-43,20],[-50,23],[-98,45],[-42,19],[-63,29],[-235,132],[-114,162],[-335,236],[-133,94],[-32,52],[-44,72],[-1,1],[-10,20],[-81,158],[-38,84],[-55,119],[79,128],[13,21],[27,52],[53,100],[37,70],[59,112],[-49,109],[49,60],[61,48],[1,1],[0,2],[-63,128],[-71,40],[-41,23],[-78,43],[-9,5],[-217,211],[-18,21],[-39,46],[-34,40],[-45,54],[-144,53],[-53,20],[-115,76],[-135,90],[-2,2],[-96,122],[-43,54],[-78,56],[-118,53],[-84,3],[-63,2],[-96,58],[-151,92],[-59,29],[-125,60],[-243,75],[-49,15],[-123,38],[-79,25],[-22,6],[-220,65],[-50,15],[-52,16],[-253,74],[-30,9],[-13,26],[-49,103],[-14,41],[-14,40],[-20,59],[-14,43],[-39,29],[-51,40],[-39,30],[-24,18],[-1,1],[-134,34],[-54,14],[-255,65],[-1,1],[-56,14],[-30,6],[-88,18],[-129,26],[-44,9],[-63,13],[-101,34],[-47,16],[-52,17],[-200,67],[-80,36],[-150,69],[-142,65],[-2,1],[-58,37],[-229,146],[-49,89],[-2,3],[2,26],[7,114],[0,6],[98,70],[50,36],[14,10],[4,3],[168,181],[61,0],[3,0],[662,-5],[71,-1],[1854,-7],[761,-3],[82,-1],[51,0],[989,-4],[239,-1],[790,1],[1279,2],[2322,9],[2154,4],[454,1],[1242,-10],[387,-3],[459,-3],[51,-1],[348,-5],[1309,-20],[332,2]],[[40590,94416],[-49,-1],[-181,-4],[-5,0],[-193,-4],[-33,0],[-396,-6],[-437,-7],[-44,0],[-33,-1],[-138,-3],[-215,-5],[-222,-4],[-23,0],[-636,0],[-140,1],[-139,0],[-150,0],[-260,2],[-104,0],[-436,-2],[0,-20],[-226,-4],[-92,0],[-633,5],[-7,0],[-33,0],[-162,1],[-83,1],[-73,0]],[[35301,99954],[522,-1],[1229,0],[221,0],[791,-4],[157,0],[652,-3],[116,0],[1887,-5],[139,-2],[518,-9],[785,-12],[2140,-37],[1571,-16],[42,0],[145,-2],[760,-6]],[[46976,99857],[4,-181],[7,-131],[1,-39],[0,-2],[4,-91],[1,-35],[4,-92],[7,-145],[0,-24],[2,-22],[2,-37],[1,-11],[0,-8],[2,-74],[0,-9],[2,-59],[0,-19],[2,-23],[1,-21],[-1,-18],[3,-32],[1,-23],[1,-42],[4,-84],[-2,-49],[3,-27],[-1,-65],[3,-26],[2,-92],[6,-261],[2,-189],[3,-70],[7,-193],[0,-19],[1,-19],[1,-42],[0,-131],[0,-116],[2,-27],[1,-125],[-1,-107],[2,-122],[2,-133],[2,-66],[1,-116],[2,-123],[-6,-44],[2,-104],[7,-140],[2,-124],[0,-72],[-5,-76],[3,-165],[2,-25],[1,-42],[1,-84],[1,-49],[1,-80],[3,-49],[0,-99],[3,-32],[0,-79],[1,-41],[1,-24],[4,-197],[1,-166],[1,-44],[2,-49],[3,-129],[3,-102],[0,-31]],[[47091,94470],[-106,0],[-29,0],[-77,-2],[-80,-1],[-62,-1],[-344,-3],[-23,-1],[-136,-2],[-208,-2],[-93,-1],[-41,0],[-92,-1],[-277,-3],[-156,-2],[-140,-1],[-137,2],[-30,1],[-50,-3],[-74,0],[-155,-2],[-124,0],[-46,-1],[-65,0],[-43,0],[-227,0],[-213,-2],[-57,0],[-116,1],[-46,0],[-223,0],[-72,1],[-350,-1],[-434,-1],[-41,0],[-35,-1],[-27,0],[-33,0],[-190,-1],[-439,-3],[-96,0],[-13,-1],[-429,-7],[-197,-2],[-180,-2],[-40,-1],[-216,-4],[-239,-7]],[[57234,99760],[-1,-19],[-1,-26],[0,-70],[0,-24],[0,-44],[0,-30],[0,-18],[0,-46],[-2,-140],[-1,-69],[0,-38],[0,-136],[-1,-19],[0,-20],[-1,-68],[0,-83],[-1,-26],[0,-21],[0,-8],[0,-41],[-1,-87],[-1,-165],[3,-37],[-2,-135],[0,-54],[1,-42],[-1,-49],[0,-19],[0,-19],[-1,-76],[0,-39],[0,-62],[3,-262],[3,-131],[0,-43],[3,-88],[2,-80],[1,-56],[1,-28],[0,-20],[-1,-24],[0,-22],[-1,-32],[0,-27],[0,-26],[-1,-53],[0,-74],[0,-21],[1,-37],[0,-66],[1,-49],[0,-39],[0,-28],[1,-33],[0,-26],[-1,-46],[-2,-20],[-3,-27],[-2,-24],[0,-5],[3,-51],[1,-117],[-1,-111],[0,-36],[-3,-165],[0,-21],[-5,-77],[1,-52],[1,-57],[0,-22],[0,-125],[0,-34],[0,-3],[0,-127],[-1,-144],[0,-31],[0,-63],[-3,-67],[0,-5],[-2,-14],[-1,-34],[0,-1],[2,-91],[1,-63],[0,-10],[-1,-21],[5,-209],[1,-35],[7,-237],[4,-179],[2,-65],[0,-5],[1,-144],[3,-118],[2,-97],[-1,-29],[0,-19],[1,-108],[0,-82],[0,-73],[1,-130]],[[57247,93571],[-33,-4],[-37,0],[-1,0],[-162,2],[-199,-2],[-114,-1],[-324,-1],[-431,-5],[-41,-1],[-195,-2],[-199,-3],[-109,0],[-28,0],[-191,-2],[-466,-4],[-42,-1],[-28,0],[-27,0],[-427,-3],[-3,0],[-166,-1],[-158,-1],[-3,0],[-104,-3],[-96,2],[-538,-3],[-149,-1],[-271,-2],[-451,0],[-197,-1],[4,176],[9,319],[-1,22],[0,10],[0,23],[0,19],[0,20],[0,95],[0,104],[-2,33],[-1,153],[-416,-4],[-119,-1],[-425,-3],[-371,-4],[-392,-3],[-65,5],[-379,-2],[-34,-2],[-67,0],[-118,-2],[-78,-3],[-69,-1],[-106,-3],[-73,-1],[-93,-1],[-114,-1],[-54,-1],[-262,-4],[-218,-2],[-39,-1],[-58,0],[-111,-1],[-195,-1],[-243,-3],[-48,0],[-26,1],[-331,1],[-27,4],[-165,-1],[-112,-2],[-108,-1],[-59,-1]],[[46976,99857],[788,-3],[1823,-27],[479,-6],[544,-7],[634,-3],[1262,-10],[514,-5],[793,-9],[1127,-6],[32,0],[96,0],[22,0],[133,0],[235,-2],[43,0],[563,-5],[450,-4],[720,-10]],[[73775,99762],[-59,-50],[0,-19],[1,-60],[0,-25],[1,-38],[1,-64],[0,-2],[2,-63],[1,-63],[2,-137],[2,-67],[1,-64],[0,-22],[1,-21],[0,-32],[1,-46],[0,-138],[0,-34],[0,-25],[1,-26],[0,-36],[0,-33],[0,-23],[0,-47],[0,-41],[0,-24],[0,-23],[0,-27],[0,-23],[0,-29],[0,-22],[0,-23],[1,-63],[0,-23],[0,-20],[0,-11],[0,-33],[0,-18],[0,-11],[0,-35],[0,-19],[0,-74],[0,-38],[0,-6],[0,-27],[0,-26],[0,-28],[0,-31],[0,-50],[0,-90],[0,-132],[1,-73],[0,-26],[0,-36],[0,-27],[0,-4],[0,-21],[0,-22],[0,-39],[0,-21],[0,-127],[2,-28],[1,-105],[0,-26],[1,-80],[0,-28],[0,-58],[-1,-26],[1,-27],[0,-22],[-1,-74],[0,-40],[-2,-17],[-1,-10],[-2,-23],[-1,-30],[-1,-30],[0,-18],[-2,-83],[-1,-68],[2,-186],[0,-66],[1,-38],[0,-23],[1,-19],[1,-71],[1,-45],[0,-21],[1,-30],[0,-25],[1,-42],[0,-26],[0,-30],[1,-24],[0,-24],[1,-41],[0,-18],[4,-19],[0,-4],[0,-15],[0,-21],[0,-26],[0,-28],[-1,-25],[-1,-23],[-3,-29],[0,-35],[-1,-39],[0,-62],[-1,-25],[0,-32],[0,-46],[0,-19],[0,-29],[0,-28],[-1,-62],[-1,-45],[-1,-47],[0,-12],[-1,-9],[0,-33],[-2,-46],[0,-48],[0,-50],[-1,-34],[0,-30],[-2,-50],[-1,-20],[0,-38],[-1,-18],[0,-22],[-1,-18],[0,-25],[0,-25],[-1,-33],[0,-23],[0,-20],[0,-25],[0,-25],[-1,-12],[0,-11],[0,-49],[-1,-27],[0,-52],[0,-20],[0,-2],[-1,-26],[0,-28],[0,-48],[-1,-5],[0,-52],[0,-38],[-1,-26],[0,-41],[-2,-63],[-1,-52],[-1,-38],[0,-40],[4,-66],[3,-48],[0,-22],[-2,-54],[-2,-73]],[[73713,93606],[-153,-1],[-48,0],[-72,0],[-155,0],[-109,-2],[-158,2],[-60,2],[-69,-2],[-38,0]],[[72851,93605],[-27,-1],[-99,2],[-90,1],[-40,0],[-17,-11],[-34,2],[-22,0],[-101,4],[-52,0],[-39,-1],[-16,0],[-8,0],[-34,-3],[-23,-2],[-55,0],[-55,1],[-31,1],[-23,0],[-25,0],[-76,2],[-24,0],[-28,-1],[-42,0],[-30,0],[-24,-1],[-34,-2],[-31,1],[-43,0],[-32,0],[-28,1],[-24,0],[-3,-1],[-32,-2],[-28,0],[-1,0],[-33,3],[-27,0],[-38,0],[-36,-2],[-30,0],[-35,0],[-37,1],[-33,0],[-49,1],[-38,0],[-40,0],[-42,0],[-24,0],[-109,0],[-92,1],[-41,0],[-84,0],[-38,1],[-35,0],[-31,1],[-43,0],[-36,0],[-62,0],[-80,0],[-30,2],[-40,1],[-123,1],[-130,-1],[-168,-1],[-31,-1],[-164,-1],[-158,-1],[-127,1],[-81,-1],[-83,0],[-31,0],[-28,0],[-39,0],[-64,-1],[-74,0],[-116,8],[-34,0],[-44,0],[-31,0],[-43,0],[-74,-8],[-37,-1],[-61,0],[-56,-1],[-36,1],[-31,0],[-1,0],[-36,9],[-46,-1],[-76,0],[-63,-1],[-32,0],[-30,0],[-15,0],[-43,0],[-25,0],[-62,0],[-58,0],[-48,0],[-37,0],[-26,0],[-71,-1],[-34,0],[-29,0],[-149,-1],[-111,1],[-106,1],[-407,-4],[-132,-1],[-129,-2],[-134,-1],[-3,0],[-385,-2],[-65,0],[-145,0],[-11,0],[-61,0],[-26,0],[-33,1],[-216,-1],[-200,0],[-27,0],[-79,-2],[-324,0]],[[65058,93593],[-93,0],[-410,-2],[-16,0],[-126,-1],[-102,1],[-39,0],[-26,0],[-119,0],[-68,0],[-36,0],[-27,0],[-34,0],[-98,0],[-92,0],[-63,0],[-75,0],[-41,0],[-264,0],[-65,0],[-121,0],[-120,0],[-346,1],[-221,1]],[[62456,93593],[0,51],[1,80],[-1,183],[0,209],[-2,20],[1,47],[1,63],[0,131],[1,98],[0,22],[1,52],[0,4],[-1,20],[1,54],[0,22],[0,52],[1,69],[6,41],[-1,22],[-1,19],[-2,20],[0,21],[0,41],[1,19],[0,22],[2,20],[-1,20],[-4,19],[0,118],[0,20],[-2,66],[1,59],[0,36],[3,46],[-1,3],[0,19],[-1,29],[0,14],[0,22],[0,12],[-1,82],[-1,90],[0,37],[0,18],[0,61],[-1,48],[0,321],[-1,87],[1,77],[0,58],[0,41],[0,41],[-1,32],[0,133],[1,137],[0,129],[0,47],[1,58],[0,27],[-1,133],[0,96],[-1,212],[-1,36],[0,58],[0,11],[0,44],[0,68],[0,91],[-1,36],[-2,135],[1,32],[1,23],[0,80],[-1,20],[-1,56],[-1,49],[0,43],[0,54],[-1,35],[-1,130],[-2,134],[-12,246],[-1,37],[2,110],[5,29],[-1,68],[-5,163],[-5,131],[0,35],[-7,180],[-3,83],[0,18],[0,4],[-2,51]],[[62417,99733],[1070,16],[850,12],[484,0],[1504,-2],[1988,-3],[445,0],[2034,-3],[428,-1],[155,0],[539,2],[174,1],[88,0],[217,10],[248,9],[498,1],[366,1],[270,-14]],[[62456,93593],[-243,0],[-192,0],[-326,0],[-41,1],[-188,-1],[-280,-1],[-143,-1],[-174,1],[-151,0],[-208,0],[-23,0],[-202,0],[-241,-3],[-195,0],[-123,0],[-62,-1],[-27,0],[-23,0],[-76,-1],[-16,0],[-15,0],[-47,0],[-171,-2],[-220,-3],[-32,-1],[-50,-1],[-156,0],[-27,0],[-120,2],[-24,1],[-222,-2],[-35,0],[-285,-4],[-39,0],[-395,-3],[-330,-2],[-107,-1]],[[57234,99760],[1863,-31],[92,-1],[1348,-23],[342,0],[269,0],[1140,25],[129,3]],[[83501,93571],[-23,0],[-41,1],[-50,0],[-35,0],[-34,0],[-49,1],[-36,0],[-17,0],[-8,0],[-104,0],[-43,0],[-27,0],[-23,1],[-35,0],[-36,0],[-31,0],[-72,0],[-55,0],[-37,1],[-5,0],[-49,0],[-43,0],[-20,0],[-14,1],[-52,0],[-50,0],[-1,0],[-47,0],[-64,1],[-39,0],[-28,0],[-110,0],[-28,1],[-24,0],[-24,0],[-29,0],[-43,0],[-23,0],[-31,0],[-51,0],[-83,1],[-37,0],[-35,0],[-1,0],[-49,0],[-30,0],[-34,0],[-23,1],[-1,0],[-24,0],[-52,0],[-61,0],[-112,1],[-23,0],[-83,0],[-24,0],[-23,0],[-63,0],[-54,1],[-54,0],[-93,0],[-58,0],[-1,0],[-24,0],[-66,0],[-37,0],[-23,0],[-32,0],[-29,0],[-52,-1],[-27,0],[-27,1],[-49,0],[-27,0],[-118,1],[-208,2],[-47,0],[-28,0],[-25,0],[-3,0],[-81,1],[-2,0],[-52,-1],[-59,1],[-26,0],[-35,0],[-140,1],[-112,1],[-7,0],[-31,0],[-26,0],[-76,1],[-27,0],[-51,0],[-49,1],[-31,0],[-23,0],[-26,0],[-40,0],[-34,0],[-55,1],[-24,0],[-42,0],[-11,0],[-17,0],[-26,0],[-24,0],[-35,0],[-43,0],[-23,1],[-74,0],[-54,0],[-63,1],[-26,0],[-69,0],[-52,1],[-76,0],[-70,0],[-103,0],[-90,0],[-61,0],[-109,1],[-110,0],[-169,1],[-24,0],[-26,0],[-71,0],[-29,0],[-28,0],[-69,0],[-7,0],[-5,0],[-23,0],[-79,0],[-24,0],[-60,1],[-29,-1],[-7,0],[-87,1],[-41,0],[-49,0],[-55,0],[-30,0],[-51,1],[-31,0],[-36,0],[-127,0],[-32,0],[-55,0],[-35,0],[-55,1],[-109,0],[-54,0],[-69,0],[-22,0],[-23,1],[-29,0],[-33,0],[-34,0],[-56,0],[-29,0],[-44,1],[-58,0],[-39,0],[-53,1],[-72,0],[-71,0],[-46,1],[-76,0],[-29,0],[-37,0],[-29,1],[-76,0],[-45,0],[-28,0],[-34,0],[-54,0],[-24,0],[-37,0],[-3,0],[-19,0],[-46,0],[-26,1],[-50,0],[-29,0],[-1,0],[-7,0],[-21,0],[-31,0],[-39,0],[-25,0],[-35,0],[-4,0],[-41,0],[-31,0],[-89,0],[-36,0],[-53,0],[-24,0],[-58,0],[-54,0],[-35,0],[-56,0],[-24,0],[-78,0],[-62,0],[-74,0],[-27,0],[-51,0],[-32,0],[-38,0],[-93,0],[-146,0],[-150,1]],[[73775,99762],[325,-2],[1811,-9],[42,0],[95,0],[1554,-8],[437,-2],[1233,-6],[655,-3],[81,0],[426,-2],[239,-2],[943,-4],[220,-3],[124,-1],[103,-2],[47,0],[89,-1],[49,0],[3,0],[104,-1],[94,-1],[46,0]],[[82495,99715],[50,-46],[-30,-7],[12,-23],[2,-4],[34,6],[15,-23],[-77,-7],[3,-8],[10,-25],[-4,-2],[-41,-16],[34,-39],[59,7],[61,8],[1,-49],[-5,-4],[-1,0],[-11,-8],[-3,-42],[-2,-19],[19,-23],[38,-57],[6,-56],[-9,-6],[-11,-8],[-11,-25],[-9,-19],[2,-108],[1,-57],[-20,-134],[2,-39],[1,-26],[-4,-7],[-40,-65],[-38,-62],[-7,-54],[2,-56],[-13,-54],[0,-106],[11,-19],[1,-41],[2,-20],[2,-20],[3,-63],[5,-52],[-5,-47],[8,-20],[-2,-37],[0,-3],[0,-17],[1,-18],[0,-7],[7,-89],[-7,-89],[-4,-39],[-19,-45],[-13,-72],[-20,-7],[-22,-8],[-25,5],[-20,-1],[-23,-1],[-33,-1],[-1,0],[-30,-1],[-18,-13],[-25,-34],[-3,-23],[48,0],[29,14],[0,19],[28,24],[5,5],[3,0],[17,4],[5,1],[36,-14],[-18,-47],[-32,-62],[-57,-50],[-24,-56],[-15,-18],[-10,-12],[3,-79],[-9,-1],[-12,-1],[-11,-1],[-6,-1],[-1,-2],[-3,-5],[-14,-23],[-6,-11],[-27,-5],[-48,-8],[-28,14],[-9,4],[-12,17],[10,17],[5,13],[4,13],[9,26],[-25,-6],[-3,-1],[-8,-23],[-29,-11],[-28,11],[33,-26],[3,-29],[-15,-25],[-12,-42],[-7,-24],[-20,-28],[-4,-44],[-11,-72],[-4,-26],[-5,-33],[1,-26],[1,-23],[0,-17],[0,-18],[-4,-35],[-3,-26],[-31,-56],[-1,-1],[-48,-61],[-18,-55],[-3,-10],[-2,-11],[0,-3],[-5,-38],[14,-58],[5,-49],[3,-64],[4,-11],[14,-35],[9,-7],[12,-9],[5,-4],[5,-4],[35,-14],[8,-3],[25,-14],[3,-20],[-21,-4],[-10,-2],[-1,25],[-25,13],[-27,7],[-16,1],[-8,0],[-14,-14],[-36,-37],[-11,-33],[-3,-7],[-5,-15],[-2,-6],[-3,-7],[-7,-17],[-4,-9],[0,-14],[-1,-27],[19,-55],[-1,-53],[9,-52],[5,-20],[0,-1],[7,-28],[4,-17],[5,-16],[9,-35],[8,-19],[20,-45],[12,-23],[14,-28],[1,-1],[0,-3],[6,-37],[1,-13],[4,-47],[7,-44],[8,-37],[27,-34],[15,-50],[12,-19],[24,-39],[4,-6],[1,-1],[2,-3],[14,-18],[9,-11],[32,-34],[30,-45],[16,-41],[18,-33],[6,-11],[18,-33],[11,-29],[24,-65],[13,-25],[17,-33],[20,-49],[1,-3],[24,-55],[15,-38],[5,-21],[6,-21],[6,-11],[2,-4],[18,-32],[22,-21],[8,-7],[17,-14],[30,-24],[2,-5],[14,-24],[25,-44],[32,-62],[24,-55],[19,-37],[16,-20],[9,-13],[8,-7],[24,-24],[7,-6],[30,-32],[4,-6],[19,-27],[26,-40],[7,-11],[40,-41],[8,-9],[26,-31],[64,-55],[39,-55],[56,-63],[44,-42],[26,-29],[21,-23],[43,-49],[11,-11],[38,-38],[33,-28],[22,-19],[46,-42],[44,-33],[39,-46],[42,-48],[27,-34],[26,-35],[42,-47],[13,-17],[15,-19],[2,-2],[1,-2],[1,-1],[20,-41]],[[88743,85537],[-1,1],[-33,23],[-37,27],[22,36],[-42,49],[-2,3],[46,29],[17,10],[13,8],[11,7],[-15,33],[1,5],[12,44],[-14,43],[-17,22],[-28,39],[-52,71],[-68,-25],[-15,-2],[-7,-1],[-58,-9],[-22,-3],[120,43],[21,3],[28,5],[0,72],[0,14],[-13,60],[-10,80],[-6,43],[0,4],[0,2],[-17,6],[-86,28],[-40,13],[-48,8],[-73,10],[-12,19],[-14,20],[-4,21],[63,33],[-55,47],[-12,3],[-1,0],[-12,3],[-2,-1],[-52,-22],[-78,13],[-47,19],[-1,0],[-1,1],[-1,0],[-27,12],[-39,18],[-36,18],[-2,0],[-56,50],[22,9],[-1,20],[-2,18],[0,8],[0,4],[-7,-2],[-5,-1],[-14,-4],[-5,-2],[-45,16],[-14,18],[-19,23],[-14,8],[-13,7],[-26,25],[-31,29],[-74,43],[-7,4],[-22,12],[-2,-4],[-10,-18],[34,-19],[-2,-5],[0,-1],[-3,-12],[-51,-6],[-10,19],[-11,18],[4,16],[4,16],[5,2],[47,18],[40,8],[25,5],[29,5],[1,9],[0,8],[1,8],[3,25],[-3,-13],[-3,-11],[0,-1],[-1,-1],[-3,-6],[-4,-7],[-3,-6],[-41,1],[-17,0],[-6,1],[-57,19],[-32,18],[-6,4],[-9,5],[-2,16],[-2,18],[-19,30],[-5,8],[-8,40],[-22,19],[6,22],[4,17],[10,9],[8,6],[20,12],[15,6],[19,9],[-11,15],[-19,2],[-13,2],[-62,38],[-1,9],[-5,58],[-10,23],[-82,67],[-38,40],[-16,17],[-30,18],[-52,31],[-36,51],[-58,62],[-80,84],[-14,26],[-25,9],[-6,3],[-38,54],[-12,17],[-2,2],[-35,53],[-16,29],[-32,60],[-37,63],[-12,23],[-15,28],[13,18],[-10,39],[-6,20],[1,9],[0,1],[1,11],[-1,8],[-1,11],[-28,33],[-2,12],[-3,16],[-10,7],[-31,23],[16,36],[1,12],[2,12],[-1,4],[-8,24],[-22,35],[0,25],[20,22],[29,1],[12,-7],[14,-8],[7,-25],[-6,-33],[-10,-37],[6,-15],[9,-25],[3,-9],[4,-18],[-2,-20],[-3,-32],[18,3],[39,5],[1,24],[1,63],[3,15],[0,1],[4,19],[4,13],[4,11],[-22,34],[-5,7],[25,19],[10,9],[4,3],[3,3],[2,20],[-11,3],[-13,3],[-21,-9],[-7,-3],[-104,0],[-21,20],[-27,7],[-23,7],[-14,57],[-2,47],[1,123],[11,7],[1,1],[23,15],[29,9],[19,16],[-1,4],[-1,7],[2,0],[7,81],[0,1],[0,8],[8,7],[9,6],[11,-14],[3,-4],[13,0],[20,0],[1,16],[1,10],[1,10],[36,1],[64,3],[33,4],[6,0],[21,3],[0,20],[-2,10],[-1,5],[-7,34],[-4,16],[-30,0],[-53,0],[-39,0],[-45,-2],[-16,-9],[-9,-5],[-55,-33],[-15,15],[-33,34],[-41,47],[-10,11],[-18,18],[-19,18],[-45,13],[-34,37],[-25,51],[-3,25],[-2,21],[1,5],[3,16],[56,31],[16,8],[17,12],[-49,0],[-32,9],[-55,47],[-63,101],[-3,45],[-2,30],[-33,48],[1,31],[2,38],[-18,46],[-3,7],[-8,14],[-23,37],[-29,47],[-3,-23],[-22,-9],[-38,20],[-18,22],[-34,42],[-4,30],[0,1],[-1,7],[30,4],[21,-8],[18,-7],[10,-16],[18,-32],[25,-1],[40,-7],[-24,14],[-41,27],[-61,70],[-38,62],[-17,37],[-11,33],[-11,35],[1,39],[1,33],[28,10],[118,5],[1,-23],[-24,-19],[-49,-7],[-9,5],[-1,0],[-15,8],[-16,-20],[25,-1],[66,-1],[41,33],[64,24],[-3,32],[-1,15],[0,2],[-8,0],[-25,1],[-62,3],[-10,2],[-8,1],[-4,1],[-127,47],[-8,5],[-26,19],[-21,25],[-19,23],[-10,84],[-12,4],[-14,5],[-21,8],[-6,2],[-15,18],[-26,31],[10,61],[1,4],[0,1],[1,10],[-6,5],[-3,2],[-34,26],[-46,33],[-3,154],[-18,28],[-28,76],[-7,16],[8,56],[-99,87],[-12,15],[-9,10],[-15,29],[-7,15],[-3,6],[-15,31],[-8,49],[-29,56],[-4,8],[-7,14],[-69,73],[1,8],[1,24],[-6,45],[-8,54],[-9,92],[-55,58],[-1,27],[-1,26],[12,17],[7,28],[1,5],[46,39],[-13,42],[-23,4],[16,-41],[-16,1],[-7,1],[-3,25],[-21,6],[-17,5],[-11,3],[8,6],[14,12],[18,16],[34,0],[0,24],[1,28],[-9,2],[-30,7],[-17,21],[-8,10],[-26,35],[-51,53],[-15,15],[-39,60],[-37,48],[-16,22],[0,28],[-22,-5],[-24,-2],[-26,0],[17,17],[19,10],[1,1],[1,0],[4,0],[17,2],[34,4],[-29,14],[-64,25],[-29,10],[-121,43],[-21,7],[-24,9],[-33,17],[-33,16],[-151,77],[-81,48],[-42,24],[-22,11],[-22,12],[-55,35],[-61,42],[-35,27],[-63,51],[-45,36],[-32,23],[-6,4],[-35,32],[-58,52],[-30,33],[-7,15],[-8,20],[-162,133],[-13,12],[-26,26],[-62,63],[-27,38],[-116,129],[-36,33],[-5,5],[-25,33],[-45,50],[-40,48],[-61,57],[-39,37]],[[82495,99715],[17504,38],[-1134,-2810],[-373,-1256],[-2699,-9188],[-301,5],[-4600,-7],[-2149,-5],[1,-846],[0,-107],[0,-2],[-1,0]],[[57247,93571],[0,-37],[1,-34],[0,-20],[0,-19],[0,-2],[-3,-16],[3,-76],[2,-60],[1,-165],[0,-22],[1,-42],[0,-33],[2,-170],[2,-109],[0,-35],[1,-41],[0,-37],[0,-2],[0,-64],[0,-2],[1,-64],[1,-48],[0,-22],[1,-61],[1,-56],[0,-41],[1,-29],[3,-260],[-70,-9],[0,-121],[0,-50],[0,-23],[0,-48],[1,-85],[0,-46],[2,-132],[0,-58],[1,-23],[0,-51],[0,-94],[-1,-38],[0,-25],[2,-36],[1,-70],[-1,-129],[0,-3],[-1,-140],[0,-20],[-1,-101],[0,-133],[1,-104],[1,-26],[-1,-22],[1,-61],[1,-115],[0,-53],[0,-44],[1,-74],[1,-126],[0,-20],[1,-75],[0,-41],[0,-2],[1,-40],[0,-37],[0,-75],[0,-1],[-1,-25],[0,-39],[1,-18],[0,-4],[1,-97],[2,-81],[0,-58],[1,-73],[0,-130],[2,-123],[0,-2],[1,-81],[1,-57]],[[57213,88865],[-231,-1],[-219,-3],[-421,-3],[-27,-1],[-397,-3],[-31,0],[-239,-4],[-25,0],[-1,0],[-298,-3],[-49,-1],[-251,-3],[-2,0],[-301,-2],[-107,3],[-134,-1],[-53,-1],[-127,-1],[-73,0],[-151,-1],[-290,-6],[-148,-1],[-219,0],[-131,-1],[-75,0],[-4,0],[-33,0],[-52,0],[-138,-1],[-158,-1],[-58,0],[-219,-1],[-29,0],[-4,0],[-43,-1],[-138,-1],[-172,-2],[-435,-4],[-215,-2],[-113,-1],[-30,0],[-74,-2],[-216,-1],[-211,-2],[-101,-1],[-102,0],[-178,-2],[-55,0],[-92,-2],[-126,-2],[-309,-3],[-172,-2],[-69,0],[-55,-1],[-207,-4],[-236,0],[-265,1],[-162,0],[-432,1],[-196,0],[-231,1],[1,67],[0,68],[2,128],[-104,2],[-101,0],[-119,0],[-266,0],[-37,-1],[-225,2],[-38,-10],[-48,0],[-2,0],[-10,-25],[-12,-16],[-51,-38],[-33,-27],[-31,-17],[-26,-1],[-20,-3],[-14,-12],[-12,-11],[-12,-11],[-5,-49],[18,-36],[-34,-43],[-33,5],[-47,19],[-23,15],[-22,11],[-36,17],[-7,3],[-42,20],[-19,11],[-28,5],[-28,4],[-27,11],[-34,26],[-10,20],[5,9],[35,18],[78,7],[33,8],[67,37],[11,6],[3,12],[2,7],[3,15],[-5,26],[-10,9],[-39,30],[-14,10],[-50,22],[-83,20],[-45,2],[-21,-6],[-28,-2],[-109,5],[-40,6],[-43,14],[-116,15],[-153,16],[-53,-5],[-39,1],[-6,0],[-10,3],[-61,13],[-100,11],[-77,3],[-41,-3],[-44,-12],[-11,-3],[-33,-8],[-60,-24],[-34,-21],[-19,-18],[-11,-29],[-3,-4],[-15,-30],[-10,-23],[-33,-16],[-283,0],[-81,2],[-24,0],[-30,1],[-90,1],[-47,-1],[-26,0],[-86,1],[-28,-3],[-25,-1],[-41,1],[-81,2],[-186,4],[-87,2],[-67,-1],[-53,1],[-2,0],[-36,-2],[-52,-2],[-54,-1],[-103,-1],[-284,-2],[-227,-2],[-40,0],[-151,0],[-224,-3],[-214,0],[-111,-2],[-210,-1],[-65,-1],[-161,0],[-104,0]],[[41896,89046],[0,58],[2,67],[4,126],[0,21],[3,113],[2,75],[3,51],[-109,1],[-68,0],[-99,2],[-151,1],[-331,4],[-105,1],[-54,-1],[-160,1],[-202,2]],[[40631,89568],[2,129],[1,50],[1,79],[0,26],[2,160],[0,75],[3,69],[0,1],[1,21],[4,145],[2,78],[2,76],[2,72],[3,135],[1,29],[-5,107],[0,39],[-1,156],[0,40],[2,71],[-3,96],[2,45],[10,256],[0,12],[-1,25],[1,122],[-1,34],[-2,51],[0,23],[0,2],[-1,71],[-3,123],[-2,66],[-6,263],[0,126],[1,64],[0,160],[0,1],[0,173],[-5,149],[-6,90],[1,25],[-4,232],[-1,31],[-1,17],[-9,244],[-6,132],[-1,132],[-7,128],[-3,134],[-3,47],[-4,73],[-3,55],[-4,88]],[[40631,89568],[-159,0],[-58,0],[-111,0],[-33,1],[-74,0],[-250,2],[-23,0],[-15,0],[-140,1],[-117,0],[-324,0],[-108,0],[-87,0],[-344,0],[-1,0],[-70,1],[-247,1],[-35,0],[-70,0],[-100,-1],[-191,-1],[-258,9],[-128,2],[-58,0],[-30,1],[-130,1],[-36,0],[-32,0],[-89,0],[-144,-2],[-433,-5],[-146,2],[-5,0],[-147,3],[-129,-1],[-23,1],[-192,1],[-43,0],[-310,2],[-77,0],[-216,-2],[-212,-3],[-225,0],[-194,0],[-24,0],[-211,0],[-95,-1],[-123,-1],[-225,0],[-217,-1],[-1,0],[-261,-7],[-3,0],[-364,-7],[-23,0],[-14,0],[-394,-2],[-299,-2],[-29,0],[-79,0],[-96,-1],[-113,-1],[-118,-2],[-418,-5],[-1,0],[-139,-1],[-23,0],[-87,1],[-102,0],[-40,0],[-13,0],[-27,0],[-10,0],[-23,0],[-77,0],[-59,0],[-8,-1],[-18,0],[-44,-1],[-26,-1],[-29,-1],[-100,-2],[-25,-8],[-65,0],[-516,-1]],[[30278,89536],[1,4],[8,34],[-24,37],[-36,27],[-1,1],[-8,8],[-49,57],[-83,48],[-72,73],[-24,71],[18,133],[38,79],[85,118],[51,36],[55,90],[91,59],[26,16],[52,56],[-2,46],[7,77],[120,142],[4,34],[9,97],[-5,21],[-20,81],[-57,96],[-21,35],[-48,36],[-8,6],[-20,27],[-23,48],[-6,45],[-13,34],[-7,18],[-29,47],[-39,26],[-70,59],[-52,44],[-126,78],[-7,62],[-11,98],[-35,71],[22,84],[3,9],[0,2],[-5,43],[-2,29],[-3,30],[-9,37],[-27,100],[-11,45],[54,104],[55,108],[20,118],[8,47],[12,71],[10,63],[1,4],[-21,122],[-17,94],[-1,7],[-63,57],[-41,38],[-50,45],[-8,1],[-39,1],[-346,15],[-45,10],[-116,26],[-59,13],[-76,71],[-51,48],[-17,43],[-57,151],[-69,130],[-151,57],[-491,184],[-233,88],[-29,10],[-119,7],[-89,17],[-92,19],[-290,57],[-39,14],[-62,23],[-99,35],[-64,24],[-213,84],[-87,34],[-81,21],[-247,62],[-23,6]],[[88743,85537],[0,-13],[-23,-16],[2,-22],[1,-14],[-3,-18],[3,-4],[-1,-18],[-1,-16],[0,-1],[2,-34],[0,-25],[0,-7],[0,-26],[0,-8],[0,-24],[2,-40],[0,-43],[1,-41],[1,-94],[-2,-19],[0,-81],[0,-2],[0,-19],[1,-24],[0,-1],[-1,-113],[-2,-18],[4,-82],[0,-10],[0,-16],[0,-22],[0,-45],[0,-5],[-2,-31],[1,-15],[0,-3],[3,-36],[0,-27],[0,-2],[0,-7],[-2,-29],[0,-36],[1,-22],[1,-107],[1,-30],[2,-33],[-1,-2],[-4,-54],[-2,-23],[0,-9],[0,-5],[0,-1],[0,-10],[0,-4],[0,-25],[4,-36],[0,-8],[0,-7],[0,-51],[0,-19],[0,-22],[0,-25],[-1,-19],[-1,-10],[2,-31],[0,-20],[2,-29],[1,-1],[-5,-19],[0,-32],[0,-31],[0,-32],[2,-33],[-2,-30],[2,-19],[-2,-18],[-1,-6],[1,-10],[-2,-20],[0,-39],[1,-35],[-1,-11],[0,-28],[2,-33],[-2,-21],[2,-15],[-4,-24],[2,-19],[0,-4],[0,-18],[2,-58],[0,-2],[1,-18],[1,-27],[0,-20],[0,-16],[0,-2],[-2,-45],[0,-2],[0,-18],[0,-2],[0,-36],[0,-27],[2,-56],[0,-27],[0,-40],[-4,-35],[-4,-44],[0,-22],[2,-25],[0,-36],[0,-7],[0,-36],[0,-32],[2,-23],[0,-5],[0,-3],[-1,-6],[-1,-21],[1,-20],[0,-6],[-1,-34],[-2,-15],[2,-52],[1,-63],[-1,-12],[0,-109],[-2,-23],[0,-5],[0,-63],[2,-36],[-2,-29],[1,-83],[1,-49],[-2,-28],[0,-31],[-1,-48],[-1,-15],[0,-7],[-2,-67],[0,-50],[1,-15],[0,-33],[0,-16],[0,-28],[0,-10],[0,-2],[-2,-20],[0,-21],[-2,-44],[2,-19],[-1,-3],[0,-1],[-1,-43],[0,-19],[0,-52],[-1,-19],[-1,-14],[0,-14],[-1,-19],[-2,-58],[-1,-39],[-1,-25],[0,-20],[0,-74]],[[88707,81186],[0,65],[-152,-1],[-1,0],[-77,1],[-55,0],[-48,-1],[-25,-2],[-22,2],[-28,-1],[-37,-1],[-80,0],[-149,0],[-42,2],[-207,0],[-109,0],[-27,0],[-40,-2],[-47,2],[-2,0],[-30,0],[-28,0],[-24,0],[-94,-2],[-35,0],[-31,0],[-27,0],[-24,-2],[-98,-2],[-40,2],[-56,2],[-23,-2],[-37,-2],[-24,0],[-41,0],[-44,-2],[-35,4],[-32,-2],[-31,0],[-51,0],[-60,0],[-28,-2],[-43,2],[-32,-2],[-60,0],[-26,0],[-49,2],[-29,0],[-25,-2],[-26,0],[-25,2],[-29,-2],[-37,0],[-1,0],[-31,0],[-3,0],[-35,0],[-31,0],[-22,0],[-27,-1],[-26,1],[-29,-1],[-27,1],[-28,0],[-45,0],[-29,0],[-31,0],[-70,0],[-162,-1],[-82,0],[-25,0],[-24,3],[-45,-1],[-53,-1],[-53,0],[-47,2],[-27,-2],[-60,0],[-31,-1],[-65,1],[-24,0],[-69,0],[-51,0],[-69,0],[-71,0],[-45,0],[-46,0],[-32,2],[-23,-2],[-60,2],[-30,0],[-42,-3],[-70,1],[-91,2],[-11,0],[-15,0],[-90,0],[-28,0],[-125,0],[-70,0],[-3,0],[-60,0],[-56,0],[-33,0],[-75,0],[-57,0],[-54,0],[-23,0],[-93,-2],[-5,0],[-49,1],[-170,1],[-111,0],[-75,0],[-145,0],[-16,0],[-154,2],[-26,0],[-24,0],[-69,4],[1,69],[1,71],[0,17],[0,7],[0,31],[-1,36],[-1,31],[0,35],[0,97],[0,14],[-2,74],[0,17],[0,6],[0,25],[0,32],[2,68],[0,25],[0,4],[0,68],[0,33],[0,23],[2,106],[0,8],[0,20],[0,112],[0,23],[0,42],[0,23],[0,66],[0,20],[0,25],[-11,25],[-31,-13],[0,31],[0,34],[-2,27],[0,13],[-2,29],[-1,12],[0,22],[0,27],[0,7],[-2,17],[0,6],[0,21],[-2,45],[0,20],[-2,32],[-22,16],[-45,-1],[-22,0],[-40,0],[-49,2],[-36,-2],[-78,0],[-140,-2],[-79,-3],[-61,-2],[-78,-2],[-36,1],[-15,1],[-62,-1],[-56,-1],[-49,0],[-78,0],[-64,-2],[-36,-1],[-49,-1],[-39,-2],[-32,-2],[-24,2],[-77,2],[-33,0],[-22,0],[-20,0],[-87,-2],[-28,-2],[-57,-1],[-128,-2],[-91,-2],[-58,0],[-53,-1],[-71,0],[-36,-1],[-1,0],[-103,-1],[-39,-1],[-77,-1],[-114,-2],[-50,0],[-104,-2],[-51,0],[-107,-2],[0,31],[0,27],[0,17],[0,1],[-1,32],[-1,22],[-7,171],[-2,58],[-2,46],[-1,31],[-3,90],[-3,51],[-2,46],[0,22],[0,9],[-1,19],[-2,49],[-1,20],[-2,37],[-1,10],[0,23],[-2,66],[0,19],[-1,25],[-1,42],[-1,32],[-1,34],[0,23],[-7,58],[-1,23],[0,20],[-1,18],[0,22],[0,21],[-1,19],[-2,25],[-2,37],[0,19],[-2,38],[-2,36],[0,11],[0,9],[0,18],[0,20],[-2,30],[-2,58],[0,40],[-83,-1],[-109,-2],[-33,-1],[-214,-3],[-99,-2],[-34,-1],[-78,-1],[-216,-4],[-113,-1],[-67,-1],[-102,-2],[-43,-1],[-55,-1],[-52,-1],[-60,-2],[-55,2],[-27,-1],[-33,-1],[-40,-1],[-214,-5],[-147,-3],[-39,-2],[-23,-1],[-31,2],[-50,-2],[-12,0],[-6,0],[-49,-1],[-34,-1],[-31,0],[-23,0],[-58,-2],[-26,1],[-58,1],[-31,-1],[-190,-4],[-37,0],[-5,84],[-2,38],[-1,21],[-1,22],[-2,40],[-3,35],[3,25],[-5,136],[-6,35],[-1,2],[-1,42],[0,3],[-1,17],[0,18],[0,4],[-1,13],[0,19],[1,20],[-1,9],[-1,12],[-4,107],[-2,47],[-1,45]],[[77505,85141],[56,-3],[26,0],[55,0],[48,1],[57,1],[86,1],[45,-1],[47,1],[48,0],[26,1],[42,1],[31,2],[38,0],[43,0],[81,0],[3,0],[123,5],[26,0],[21,-1],[33,-1],[48,3],[36,2],[34,6],[122,5],[365,94],[21,7],[85,34],[37,16],[93,37],[31,13],[119,50],[7,3],[48,25],[10,5],[83,43],[483,214],[-2,13],[-4,49],[-1,10],[-1,20],[-4,41],[0,19],[-1,31],[-2,76],[-1,45],[-2,38],[-1,35],[-1,28],[-2,31],[-2,50],[-1,37],[-2,27],[-1,36],[-2,25],[-2,55],[-2,45],[-1,16],[0,11],[-3,56],[-2,55],[-2,41],[-1,23],[-1,35],[-2,41],[-2,27],[-1,27],[-1,22],[-1,22],[-1,24],[-1,24],[-1,21],[-1,19],[-2,29],[-1,32],[-3,45],[-2,44],[-1,20],[-1,33],[-2,33],[-1,30],[-2,19],[-1,25],[-1,24],[-2,38],[-1,27],[-2,24],[0,4],[-1,20],[-1,27],[-2,28],[-2,47],[-3,42],[-2,38],[-2,23],[-2,14],[-2,80],[-3,36],[0,23],[0,13],[-2,26],[-4,18],[-1,68],[-3,38],[0,23],[-3,75],[-7,32],[2,19],[1,10],[4,63],[-8,127],[0,36],[-2,14],[-5,41],[-3,20],[-2,21],[0,1],[0,23],[-2,19],[0,43],[0,10],[0,15],[0,20],[-5,37],[-2,31],[0,1],[0,26],[0,18],[0,12],[1,7],[0,42],[0,21],[-1,23],[-1,30],[0,28],[0,32],[0,6],[0,45],[0,19],[0,29],[0,2],[0,41],[1,55],[0,3],[1,41],[2,11],[4,27],[-1,62],[-2,25],[-1,9],[0,124],[0,42],[0,19],[1,35],[0,40],[0,61],[0,117],[1,69],[0,28],[0,64],[0,23],[0,39],[0,52],[0,64],[-2,26],[-4,19],[1,10],[2,14],[1,22],[0,22],[2,24],[0,7],[-1,14],[-2,31],[-1,41],[-1,17],[0,57],[0,89],[2,120],[0,28],[1,38],[-3,52],[0,35],[-4,126],[-222,-9],[-28,2],[-158,-4],[-1,0],[-34,1],[-34,-1],[-52,0],[-34,-1],[-33,0],[-38,-1],[-35,0],[-30,-1],[-39,0],[-29,-1],[-34,0],[-58,-1],[-1,0],[-66,-1],[-39,-1],[-34,0],[-71,-1],[-35,-1],[-121,-1],[-38,-1],[-24,0],[-25,0],[-49,0],[-34,-1],[-26,0],[-24,0],[-25,0],[-50,-1],[-26,0],[-90,0],[-22,-1],[-4,0],[-31,0],[-30,0],[-31,0],[-23,0],[-37,-1],[-26,0],[-59,-1],[-36,0],[-39,0],[-61,-1],[-24,0],[-33,0],[-40,0],[-31,-1],[-60,0],[-67,1],[-25,0],[-53,0],[-88,1],[-6,0],[-191,-5],[-25,0],[-58,1],[-33,0],[-28,0],[-26,-1],[-25,-1],[-28,-1],[-23,0],[-103,-2],[-93,-2],[-25,-2],[-42,-1],[-44,-1],[-33,-1],[-77,-11],[-25,-1],[-32,-1],[-32,-1],[-36,0],[-28,0],[-30,-1],[-26,-1],[-32,-1],[-27,-2],[-29,0],[-61,-2],[-43,-1],[-28,3],[-31,4],[-27,0],[-32,-2],[-72,-1],[-35,-2],[-8,0],[-58,-2],[-85,-3],[-117,-13],[-24,0],[-47,-2],[-23,0],[-26,-1],[-31,-1],[-57,-2],[-42,-1],[-24,-1],[-35,-1],[-44,-1],[-29,-1],[-17,-1],[-48,-1],[-42,-1],[-27,-1],[-41,-2],[-91,-2],[-31,-1],[-43,-2],[-29,0],[-29,-1],[-1,0],[-44,-2],[-46,0],[-36,1],[-41,-4],[-25,0],[-23,0],[-55,0],[-35,-1],[-12,0],[-22,0],[-26,-1],[-56,-1],[-31,0],[-42,-1],[-25,-3],[-25,2],[-50,0],[-51,0],[-55,0],[-27,-1],[-74,0],[-39,0],[-32,-1],[-43,0],[-32,0],[-26,0],[-27,0],[-45,-2],[-38,-1],[-65,0],[-61,-1],[-80,-1],[-22,-4],[-75,0],[-2,0],[-25,0],[-59,-1],[-119,1],[-29,-1],[-220,-6],[-100,-2],[-27,2],[-32,0],[-46,-1],[-17,-1],[-128,-1],[-27,-1],[-138,-1],[-103,-2],[-163,-2]],[[72306,90571],[-5,134],[0,24],[0,31],[0,26],[0,27],[0,22],[0,19],[-1,23],[0,19],[0,24],[-1,32],[-2,25],[-2,56],[0,2],[2,36],[0,11],[1,17],[0,23],[0,23],[-1,23],[-2,18],[0,3],[0,27],[2,23],[-1,29],[1,36],[0,41],[-2,28],[2,59],[-2,48],[0,10],[0,34],[-1,31],[-2,38],[0,37],[3,28],[-3,37],[0,19],[0,22],[0,27],[1,27],[1,38],[0,18],[1,31],[-1,19],[0,27],[0,19],[0,21],[0,28],[1,31],[0,1],[111,5],[32,0],[28,0],[32,2],[37,0],[141,1],[35,0],[38,0],[111,-3],[0,6],[2,22],[0,27],[-1,29],[-1,28],[-9,217],[0,7],[2,112],[0,19],[0,19],[-2,38],[-2,156],[2,39],[0,2],[-1,17],[-1,20],[-3,82],[7,125],[0,85],[1,70],[1,63],[-2,73],[0,1],[0,116],[-2,32],[0,26],[2,36],[0,19],[-2,91]],[[65058,93593],[0,-129],[1,-157],[4,-168],[0,-19],[2,-18],[-1,-20],[-1,-19],[1,-18],[-1,-20],[1,-19],[1,-19],[-1,-74],[1,-106],[1,-142],[0,-54],[0,-2],[0,-64],[-2,-129],[0,-3],[0,-131],[1,-82],[1,-65],[0,-79],[-1,-36],[-57,0],[-68,0],[-124,0],[-54,0],[1,-91],[0,-25],[1,-29],[0,-30],[0,-8],[1,-46],[0,-79],[2,-95],[1,-49],[1,-142],[0,-5],[0,-15],[1,-65],[0,-68],[1,-130],[1,-133],[1,-131],[2,-132],[1,-132],[1,-132],[0,-56],[0,-19],[-1,-49],[-1,-72],[0,-3],[-1,-59],[0,-152],[1,-114],[0,-19],[0,-117],[0,-37],[0,-90],[0,-35],[0,-38],[0,-3],[0,-128],[0,-39],[1,-21],[0,-59],[0,-30],[0,-65],[0,-80],[0,-19],[0,-13],[0,-11],[-1,-26],[0,-20],[0,-19],[0,-20],[-1,-28],[0,-34],[0,-19],[0,-1],[0,-41],[0,-43],[-2,-123],[-2,-143],[-2,-107],[0,-2],[0,-66],[-1,-90],[-2,-72],[-1,-62],[-1,-47],[0,-40],[0,-35],[0,-77],[-1,-83],[-4,-76],[0,-27],[0,-34],[0,-26],[-1,-42],[0,-29],[-2,-109],[0,-33],[0,-25],[0,-61],[0,-20],[-2,-20],[-2,-64],[-1,-20],[-1,-48],[4,-126],[2,-132],[0,-24],[1,-45],[1,-45],[0,-140],[1,-58],[0,-3],[0,-102],[0,-29],[0,-8],[0,-41],[0,-18],[2,-142],[-1,-130],[1,-128],[1,-134],[1,-66],[0,-28],[0,-33],[0,-64],[1,-71]],[[64763,85756],[-38,-1],[3,-107],[5,-172],[3,-113],[0,-18],[3,-132],[1,-21],[1,-33],[0,-40],[1,-44],[2,-124],[0,-24],[4,-110],[0,-34],[1,-94],[1,-26],[0,-40],[1,-35],[1,-30],[0,-41],[1,-24],[0,-20],[1,-24],[0,-6],[0,-17],[0,-24],[-1,-42],[-1,-65],[4,-132]],[[64756,84163],[-325,-1],[-45,0],[-30,-1],[-30,0],[-30,0],[-25,0],[-29,0],[-109,-1],[-65,0],[-40,-1],[-151,-1],[-49,0],[-85,0],[-23,-1],[-40,-1],[-24,0],[-26,1],[-31,0],[-1,0],[-82,0],[-49,-1],[-31,0],[-35,0],[-22,0],[-68,0],[-26,0],[-35,-1],[-39,0],[-47,-1],[-30,0],[-30,0],[-26,-1],[-49,0],[-25,0],[-31,0],[-25,0],[-27,-1],[-34,0],[-29,0],[-64,-1],[-51,0],[-140,-1],[-25,1],[-22,2],[-131,-5],[-62,-1],[-59,0],[-75,1],[-31,0],[-29,0],[-70,1],[-37,0],[-107,1],[-67,0],[-23,0],[-223,2],[-68,0],[-128,1],[-2,0],[-55,0],[-78,1],[-56,0],[-144,1],[-97,1],[-64,0],[-49,1],[-46,0],[-56,0],[-106,1],[-24,0],[-171,1],[-129,1],[-45,1],[-86,0],[-81,1],[-31,0],[-132,1],[-26,0],[-11,0],[-12,0],[-38,-1],[-30,0],[-44,-1],[-166,-3],[-150,-2],[-198,-4],[-134,-3],[-102,-2],[-57,-2],[-59,-1],[-13,-1],[-192,-4],[-107,-3],[-129,-2],[-68,-1],[-111,-2],[-123,-3],[-131,-2],[-181,-4],[-1,0],[-117,-3],[-424,-9],[-38,-1],[-24,0],[-36,-1]],[[57272,84108],[0,25],[-4,165],[-2,22],[-1,65],[-2,74],[-1,44],[-2,64],[-2,78],[-1,59],[-1,57],[-2,83],[-4,179],[0,60],[0,73],[-1,31],[-2,60],[-9,303],[-1,26],[0,6],[-1,70],[-9,61],[-22,5],[0,42],[0,83],[0,30],[0,28],[0,34],[1,30],[1,273],[0,75],[0,55],[1,113],[0,19],[0,13],[1,250],[0,75],[1,120],[0,26],[1,26],[0,24],[1,28],[0,19],[0,19],[0,20],[0,19],[0,2],[0,26],[-1,26],[0,34],[0,23],[0,48],[0,122],[0,20],[0,115],[0,82],[0,2],[0,45],[1,68],[-1,21],[0,51],[1,68],[0,123],[0,62],[0,40],[0,47],[0,47],[0,36],[1,67],[0,30],[0,34],[0,22],[0,22],[0,61],[0,86],[0,38],[0,47],[0,108],[0,103]],[[72306,90571],[0,-68],[-1,-23],[1,-53],[-3,-23],[-4,-42],[2,-20],[2,-39],[1,-21],[1,-24],[1,-26],[0,-2],[0,-56],[0,-22],[0,-38],[0,-25],[2,-36],[0,-71],[0,-30],[0,-22],[-9,-43],[0,-30],[2,-71],[2,-73],[1,-30],[1,-54],[7,-95],[-4,-21],[1,-29],[1,-37],[2,-19],[1,-20],[0,-12],[-1,-7],[0,-21],[0,-39],[-1,-69],[1,-41],[0,-8],[1,-13],[1,-38],[1,-23],[1,-19],[0,-18],[1,-26],[1,-27],[1,-31],[0,-42],[-1,-29],[0,-35],[0,-23],[-1,-62],[-1,-52],[0,-20],[0,-25],[-1,-14],[0,-8],[-5,-96],[0,-47],[0,-29],[0,-39],[3,-125],[0,-20],[0,-38],[-3,-32],[0,-1],[2,-95],[-2,-61],[-2,-68],[-2,-89],[0,-24],[-2,-27],[0,-24],[-1,-19],[-1,-22],[-1,-29],[0,-84],[0,-33],[0,-25],[5,-26],[0,-27],[0,-133],[-1,-4],[-4,-42],[0,-20],[0,-18],[0,-20],[0,-59],[0,-69],[2,-46],[-1,-14],[-1,-5],[3,-34],[2,-44],[0,-19],[0,-31],[2,-127],[2,-45],[0,-20],[0,-36],[2,-26],[3,-20],[1,-24],[4,-24],[-3,-21],[0,-19],[0,-6],[0,-16],[0,-19],[0,-34],[1,-37],[1,-24],[0,-33],[4,-41],[-2,-25],[-4,-167],[6,-53],[3,-35],[1,-29],[0,-23],[0,-26],[0,-26],[-1,-21],[-2,-19],[0,-11],[-2,-32],[1,-44],[2,-27],[1,-23],[0,-18],[0,-20],[0,-30],[0,-19]],[[72326,85848],[-72,-5],[-39,-1],[-25,0],[-69,-2],[-27,0],[-24,0],[-6,0],[-43,-1],[-63,-1],[-52,-1],[-26,0],[-59,-1],[-61,0],[-63,0],[-26,0],[-48,-1],[-49,0],[-31,-1],[-23,0],[-51,-1],[-304,-6],[-32,0],[-26,-1],[-71,-1],[-139,-1],[-44,0],[-84,-2],[-25,0],[-35,0],[-63,0],[-91,-2],[-5,0],[-26,0],[-27,-1],[-6,0],[-22,-1],[-25,0],[-14,-1],[-3,0],[-8,-1],[-27,0],[-4,0],[-27,0],[-24,-1],[-34,-1],[-4,1],[-39,2],[-27,0],[-23,-1],[-30,0],[-41,-1],[-22,0],[-24,0],[-22,0],[-26,-1],[-92,-1],[-37,0],[-23,4],[-24,-2],[-22,-2],[-42,-2],[-33,-3],[-25,1],[-27,1],[-45,0],[-94,-1],[-66,-1],[-68,-1],[-88,-1],[-119,-1],[-33,0],[-42,-1],[-31,0],[-113,-1],[-27,0],[-133,-2],[-31,0],[-28,0],[-38,-1],[-56,0],[-114,-2],[-63,0],[-163,-2],[-94,0],[-13,0],[-612,-8],[-282,-3],[-111,15],[-20,0],[-13,-1],[-194,-10],[-286,-11],[-33,-1],[-35,0],[-123,-2],[-120,0],[-49,-2],[-132,-1],[-30,-1],[-22,-1],[-236,-3],[-45,-1],[-58,0],[-103,-1],[-63,-1],[-31,-2],[-30,-1],[-102,2],[-71,-1],[-83,-1],[-29,0],[-48,0],[-143,-1],[-62,-1],[-24,0],[-47,0],[-3,0],[-55,-1],[-26,0],[-177,-2]],[[77505,85141],[-2,99],[-1,81],[-1,44],[-2,37],[-1,19],[-2,29],[-2,41],[0,3],[-1,22],[-2,31],[-2,23],[-3,95],[-1,27],[-1,22],[-4,88],[-1,20],[-3,62],[-2,41],[-69,-1],[-36,-1],[-126,-2],[-91,-2],[-124,-2],[-40,-1],[-48,2],[-33,-2],[-25,-2],[-39,0],[-98,-2],[-5,0],[-29,0],[-94,-2],[-1,0],[-150,-2],[-205,-4],[-56,-1],[-41,-1],[-132,-3],[-73,-1],[-91,-4],[-56,-1],[-32,-1],[-37,0],[-62,-2],[-43,0],[-69,-2],[-25,0],[-23,-1],[-23,0],[-28,0],[-44,0],[-34,0],[-24,-3],[-25,-1],[-22,2],[-43,-7],[-32,1],[-14,1],[-25,-1],[-40,-2],[-62,-3],[-29,7],[-34,-1],[-54,0],[-29,-2],[-23,0],[-49,-3],[-30,-1],[-52,-1],[-93,-1],[-37,-1],[-23,0],[-24,0],[-105,-2],[-34,0],[-29,-1],[-32,0],[-27,0],[-42,-1],[-34,0],[-90,-1],[-26,-1],[-34,0],[-81,-1],[-107,-1],[-213,-3],[-47,-1],[-42,-1],[-43,-1],[-34,0],[-41,-1],[-4,0],[-40,0],[-36,0],[-70,1],[-49,-2],[-32,-1],[-29,0],[-32,0],[-89,-1],[-55,-1],[-100,-1],[-61,0],[-56,1],[-3,0],[-20,0],[-43,0],[-61,-1],[-125,-1],[-78,-1],[-116,0],[-51,-1],[-45,-2],[-35,-1]],[[72337,85845],[-11,3]],[[41896,89046],[-3,-75],[2,-43],[-4,-145],[-4,-220],[0,-39],[-1,-133],[2,-118],[8,-653],[8,-565],[3,-247],[2,-139],[1,-101],[2,-114],[0,-49],[5,-334],[-151,5],[10,-297],[28,-847],[18,-541],[25,-738],[11,-328]],[[41858,83325],[-38,1],[-58,-1],[-64,0],[-43,0],[-40,0],[-30,0],[-2,0],[-31,0],[-24,0],[-40,0],[-23,0],[-40,0],[-42,0],[-45,0],[-39,0],[-25,0],[-65,-1],[-23,0],[-64,0],[-63,0],[-104,-1],[-23,0],[-61,0],[-47,-1],[-24,0],[-44,0],[-63,0],[-61,-1],[-28,0],[-6,0],[-26,0],[-107,-1],[-64,-1],[-43,0],[-41,-1],[-63,0],[-1,0],[-22,0],[-41,0],[-23,0],[-21,0],[-22,1],[-61,-1],[-63,0],[-41,0],[-128,-1],[-23,0],[-145,0],[-47,0],[-41,0],[-23,0],[-64,0],[-105,-1],[-48,1],[-25,0],[-28,0],[-63,-1],[-54,0],[-52,-1],[-23,0],[-53,0],[-41,0],[-22,0],[-29,-1],[-29,0],[-28,0],[-32,0],[-34,0],[-116,-1],[-51,0],[-4,0],[-19,0],[-98,-1],[-41,0],[-39,0],[-22,0],[-2,0],[-33,0],[-47,0],[-52,0],[-45,0],[-94,-1],[-80,0],[-26,0],[-34,0],[-23,0],[-47,-1],[-40,0],[-52,0],[-76,0],[-35,0],[-41,0],[-63,0],[-30,0],[-34,-1],[-53,0],[-52,0],[-52,0],[-53,0],[-23,0],[-93,0],[-23,0],[-52,0],[-30,0],[-52,0],[-75,0],[-37,0],[-51,0],[-23,0],[-85,0],[-104,0]],[[36720,83309],[-173,-3],[-109,0],[-147,0],[-278,1],[-198,-2],[-62,0],[-206,-1],[-117,-1],[-26,0],[-206,0],[-160,-3],[-16,0],[-21,0],[-199,0],[-23,0],[-265,-2],[-161,0],[-56,0],[-115,0],[-43,0],[-223,0],[-133,0],[-75,1],[-16,0],[-32,1],[-3,0],[-70,2],[-192,-1],[-91,3],[-167,-2],[-61,1],[-38,0],[-40,0],[-356,2],[-93,1],[-32,0],[-313,3],[-93,1],[-24,0],[-353,3],[-167,2],[-327,1],[-277,2],[-82,-1],[-242,0],[-215,0],[-129,1],[-124,0],[-32,0],[-175,0],[-251,1],[-41,0],[-97,0],[-36,0],[-9,0]],[[29530,83319],[-9,18],[-5,25],[1,3],[9,23],[22,17],[1,1],[24,13],[7,3],[15,5],[3,1],[6,1],[20,5],[20,1],[4,1],[1,0],[41,0],[29,0],[29,1],[30,0],[26,2],[36,4],[28,5],[10,3],[16,4],[34,12],[12,6],[11,6],[22,21],[13,20],[1,6],[4,13],[0,20],[-11,32],[-5,25],[0,1],[4,17],[0,5],[3,14],[-2,22],[-7,37],[-9,43],[0,19],[26,20],[9,6],[23,30],[12,20],[27,20],[-6,8],[-10,14],[23,12],[17,15],[-8,23],[-14,16],[-1,1],[-8,27],[4,19],[7,19],[16,25],[11,20],[6,37],[4,33],[1,8],[-2,3],[-56,88],[-240,34],[0,2],[-15,46],[98,-7],[127,-8],[31,46],[1,0],[26,39],[-9,8],[-11,10],[-17,14],[-14,12],[-28,24],[-40,6],[-83,12],[-17,42],[-14,35],[-45,36],[-177,53],[-99,55],[-71,42],[-73,22],[-242,60],[-90,22],[-29,8],[-22,5],[-67,16],[-22,4],[-47,10],[-54,12],[-73,16],[-61,15],[-73,19],[-47,10],[-17,16],[-31,5],[-26,9],[0,1],[-23,22],[-21,14],[-25,7],[5,20],[23,14],[33,4],[9,3],[55,15],[30,-8],[26,11],[27,13],[16,62],[-27,25],[1,22],[14,32],[0,22],[-28,9],[-1,0],[-40,-5],[-25,-14],[-26,-1],[-9,20],[36,29],[-7,21],[-21,8],[-22,9],[-24,2],[-30,-11],[-25,2],[-5,35],[-3,10],[-4,14],[-26,12],[-15,1],[-36,2],[-63,22],[-33,13],[-17,21],[11,21],[21,6],[47,-4],[51,33],[-15,29],[-2,30],[28,12],[6,2],[21,9],[-4,19],[-8,12],[-8,12],[5,19],[12,12],[6,6],[74,88],[14,82],[-54,22],[-4,1],[-44,18],[0,34],[5,4],[53,44],[30,77],[-11,37],[-29,47],[-39,20],[-26,12],[-60,-36],[-33,-2],[-5,10],[-13,29],[28,32],[-10,10],[-12,13],[-17,0],[-40,-1],[-27,24],[12,57],[5,24],[0,1],[10,60],[88,94],[104,20],[21,20],[-33,31],[-34,20],[-44,-3],[-21,-41],[-91,1],[0,2],[0,1],[-2,39],[38,29],[20,15],[-4,40],[-1,6],[-2,23],[7,18],[13,24],[15,26],[27,26],[0,5],[-5,114]],[[28267,86901],[77,31],[71,29],[119,49],[181,74],[6,2],[113,38],[164,38],[44,10],[88,20],[36,6],[129,22],[183,45],[133,71],[6,11],[17,30],[4,29],[3,19],[-1,8],[-16,125],[-7,58],[-4,37],[0,28],[0,28],[-20,30],[-7,15],[-19,51],[5,55],[0,4],[2,4],[13,29],[2,3],[8,17],[27,97],[187,231],[-2,45],[-4,85],[1,1],[8,22],[2,5],[35,61],[15,75],[11,50],[29,34],[53,62],[50,71],[62,88],[7,9],[17,24],[12,17],[59,84],[22,44],[7,15],[48,96],[2,52],[6,109],[3,50],[9,69],[15,123]],[[57272,84108],[-318,-6],[-118,0],[-42,-1],[-180,-3],[-200,-3],[-237,-3],[-192,-3],[-80,2],[-28,0],[-87,-1],[-173,-3],[-92,-1],[-190,-3],[-132,-2],[-86,-1],[-217,-2],[-146,0],[-205,1],[-1,0],[-227,3],[-26,1],[-58,0],[-154,2],[-193,2],[-426,4],[-227,4],[-113,2],[-91,1],[-263,4],[-164,3],[-194,7],[-10,0],[-56,0],[-2,0],[-1,0],[-65,2],[-91,1],[0,-45],[0,-21],[3,-110],[1,-22],[1,-56],[1,-80],[3,-111],[2,-84],[0,-74],[1,-36],[1,-16],[0,-21],[1,-113]],[[52201,83326],[-23,5],[-88,0],[-55,0],[-31,0],[-64,0],[-36,0],[-42,1],[-25,0],[-36,0],[-35,0],[-38,0],[-38,0],[-82,-3],[-123,0],[-259,2],[-205,-2],[-82,2],[-38,1],[-27,0],[-28,0],[-30,-1],[-20,-1],[-3,0],[-27,-1],[-423,1],[-43,0],[-100,0],[-121,0],[-145,-2],[-140,0],[-49,-1],[-42,0],[-108,0],[-43,-1],[-74,0],[-156,0],[-71,0],[-168,-1],[-69,0],[-45,0],[-55,0],[-32,0],[-27,0],[-56,0],[-38,0],[-82,0],[-44,0],[-44,0],[-41,0],[-35,0],[-64,0],[-25,0],[-89,0],[-67,0],[-24,0],[-26,0],[-34,0],[-34,0],[-82,0],[-54,0],[-59,-1],[-41,0],[-23,0],[-48,0],[-24,1],[-28,0],[-25,1],[-36,0],[-60,0],[-39,0],[-43,0],[-64,0],[-48,0],[-45,-1],[-65,0],[-88,0],[-35,0],[-42,0],[-23,0],[-29,0],[-23,0],[-34,0],[-33,0],[-23,0],[-27,0],[-43,0],[-32,0],[-58,0],[-60,0],[-62,0],[-33,0],[-38,0],[-56,0],[-40,0],[-31,0],[-25,0],[-75,1],[-22,-1],[-101,1],[-57,-2],[-28,0],[-29,0],[-29,0],[-54,0],[-62,0],[-59,0],[-27,0],[-34,0],[-32,0],[-23,0],[-23,0],[-25,1],[-34,0],[-35,0],[-25,1],[-25,0],[-26,0],[-5,0],[-21,-1],[-35,0],[-25,0],[-27,0],[-83,-1],[-25,0],[-43,0],[-58,0],[-29,0],[-28,1],[-59,0],[-58,0],[-30,0],[-85,0],[-29,0],[-75,1],[-76,0],[-33,0],[-28,0],[-29,0],[-31,0],[-28,0],[-29,0],[-58,0],[-27,1],[-43,0],[-45,0],[-64,0],[-26,0],[-23,0],[-28,0],[-29,0],[-60,0],[-58,0],[-60,0],[-60,0],[-81,0],[-75,0],[-70,0],[-59,0],[-59,0],[-89,0],[-51,0],[-28,0],[-26,0],[-26,0],[-26,0],[-61,0],[-90,0],[-58,1],[-25,-1],[-76,0],[-60,0],[-208,0],[-118,0],[-30,0],[-24,0],[-25,0],[-28,1],[-59,0],[-63,0],[-81,-1],[-46,0],[-64,0],[-40,0],[-40,0],[-63,0],[-23,0],[-31,0],[-23,0],[-63,0],[-26,0],[-24,-1],[-25,0],[-127,0],[-35,0],[-23,0],[-23,-1],[-28,0]],[[29530,83319],[16,-13],[3,-3],[24,-16],[35,-31],[16,-20],[25,-20],[9,-27],[13,-24],[4,-26],[0,-21],[-5,-20],[-12,-32],[-4,-25],[-6,-18],[-7,-24],[-9,-20],[-12,-22],[-16,-32],[-15,-36],[-7,-19],[-13,-28],[-8,-18],[-14,-26],[-38,-53],[-27,-31],[-20,-27],[-17,-21],[-15,-27],[-15,-23],[-22,-24],[-16,-21],[-25,-20],[-21,-16],[-31,-15],[-19,-4],[-23,-4],[-37,-5],[-55,-5],[-32,-2],[-49,-3],[-48,-1],[-31,0],[-27,-2],[-56,-7],[-43,-4],[-42,-8],[-23,-6],[-28,-6],[-28,-9],[-25,-9],[-24,-12],[-9,-9],[-5,-3],[-7,-7],[-5,-12],[-5,-9],[-2,-19],[-9,-14],[-11,-16],[0,-1],[-22,-12],[-40,-10],[-55,-1],[-32,-5],[-42,-16],[-38,-13],[-30,-10],[-14,-4],[-26,-7],[-25,-10],[-30,-11],[-55,-9],[-29,-3],[-25,-2],[-39,-13],[-26,-7],[-34,-8],[-29,-1],[-8,-1],[-29,-1],[-76,-5],[-89,-14],[-22,1],[-29,1],[-23,1],[-31,4],[-24,3],[-26,1],[-84,-11],[-96,-12],[-84,-10],[-144,-2],[-76,2],[-22,-6],[-31,-9],[-55,-13],[-24,-3],[-43,-7],[-67,-2],[-57,-1],[-31,0],[-35,-13],[-32,-25],[-8,-7],[-4,-3],[-57,-52],[-33,-23],[-27,-15],[-30,-7],[-44,-4],[-35,0],[-26,2],[-32,1],[-118,25],[-108,33],[-49,14],[-27,2],[-62,-10],[-86,-36],[-6,-1],[-56,-12],[-72,-14],[-48,-8],[-74,-13],[-3,-1],[-134,-45],[-10,-4],[-123,-59],[-30,-29],[-34,-33],[-8,-7],[-43,-41],[-9,-54],[-40,-69],[-31,-94],[0,-2],[-34,-58],[-44,-48],[-67,-29],[-99,-7],[-27,-2],[-23,-2],[-14,-1],[-10,-1],[-85,-52],[-64,-41],[-45,-28],[-19,-9],[-81,-39],[-16,-8],[-66,-32],[-72,-31],[-178,-58],[-106,-35],[-20,-6],[-17,-1],[-71,-5],[-121,-7],[-32,-2],[-4,-43],[0,-8],[0,-12],[-1,-37],[-1,-160],[0,-74],[2,-20],[-2,-30],[-3,-130],[7,-209],[-4,-35],[-3,-20],[-6,-257],[-3,-61],[0,-23],[-1,-50],[-3,-129],[-11,-179],[-7,-82],[2,-261],[2,-228],[-5,-35],[-3,-130],[1,-72],[0,-60]],[[24007,78666],[-152,1],[-75,0],[-211,-1],[-109,0],[-41,0],[-122,-1],[-158,0],[-61,0],[-307,1],[-62,0],[-124,-1],[-52,-1],[-135,0],[-128,1],[-195,1],[-218,0],[-224,0],[-208,6],[-80,2],[-86,-2],[-197,3],[-66,0],[-215,4],[-49,0],[-47,1],[-54,0],[-66,1],[-25,0],[-32,1],[-380,4],[-171,2],[-205,3],[-51,1],[-110,0],[-206,2],[-114,1],[-28,-1],[-257,2],[-140,0],[-49,1],[-51,-1],[-30,1],[-67,0],[-5,0],[-60,0],[-52,0],[-29,-1],[-102,-1],[-33,0],[-166,0],[-50,0],[-222,1],[-57,0],[-2,0],[-143,1],[-255,1],[-119,0],[-23,0],[-31,3],[-213,1],[-116,0],[-95,2],[-117,1],[-84,2],[-122,2],[-99,2],[-73,1],[-62,1],[-66,1],[-181,4],[-215,4],[-29,0],[-70,3],[-286,5],[-288,4],[-536,9],[-71,1],[-39,1],[-200,3],[-148,5],[-88,2],[-341,7],[-96,0],[-102,0],[-108,1],[-191,0],[-41,0],[-81,0],[-117,0],[-205,1],[-23,0],[-42,0],[-57,0],[-198,0],[-116,2],[-81,0],[-271,0],[-188,0],[-75,1],[-179,1],[-41,2],[-140,-3],[-188,2],[-84,0],[-168,1],[-63,1],[-28,0],[-21,0],[-628,4],[-41,0],[-52,1],[-11,0],[-27,1],[-27,0],[-4,0],[-43,1],[-49,1],[-33,0],[-19,1],[-112,1],[-2,0]],[[9809,78781],[0,5],[2,25],[2,21],[1,4],[-2,2],[-28,46],[110,317],[22,61],[50,143],[12,35],[16,16],[53,52],[218,211],[19,105],[68,365],[155,117],[18,13],[54,11],[101,21],[60,12],[41,36],[13,12],[13,-3],[77,-16],[203,41],[73,16],[116,27],[6,1],[99,23],[212,48],[243,43],[67,12],[406,-106],[127,-33],[202,-52],[132,-1],[153,-2],[31,-38],[28,32],[5,6],[55,-1],[74,0],[76,23],[63,20],[52,17],[48,15],[243,76],[186,58],[17,6],[43,13],[80,25],[27,9],[209,85],[125,51],[50,20],[163,66],[141,58],[297,26],[139,12],[171,-6],[189,-8],[131,-5],[187,-7],[102,-4],[99,-4],[119,-4],[94,-10],[19,-3],[52,-9],[68,-8],[168,-18],[261,-11],[156,-6],[80,-4],[280,9],[153,21],[51,5],[91,9],[181,18],[143,15],[259,26],[210,43],[146,30],[106,22],[20,4],[100,-2],[66,-1],[78,7],[150,14],[64,6],[125,52],[107,72],[70,48],[45,30],[27,15],[155,87],[1,1],[22,8],[227,82],[2,1],[49,17],[173,103],[94,56],[13,8],[27,34],[5,16],[9,29],[12,37],[32,97],[8,4],[161,92],[1,0],[1,1],[256,62],[32,3],[230,24],[111,31],[22,11],[187,94],[12,6],[17,2],[221,25],[171,-1],[14,0],[199,-39],[127,-25],[85,-15],[127,-23],[120,-21],[295,4],[357,6],[14,0],[22,5],[44,9],[296,61],[283,178],[77,49],[76,66],[54,47],[148,129],[69,20],[33,13],[121,48],[11,4],[2,3],[74,87],[37,31],[62,51],[33,28],[1,1],[2,0],[98,37],[18,7],[61,23],[14,5],[95,36],[44,16],[5,1],[158,34],[65,14],[93,15],[54,9],[160,26],[205,33],[5,2],[278,86],[103,33],[91,29],[49,118],[33,77],[-4,38],[-25,233],[-9,89],[-15,140],[-4,42],[-1,9],[-5,44],[-11,110],[-11,100],[2,5],[14,54],[24,89],[8,32],[11,25],[11,23],[84,186],[30,119],[5,18],[32,123],[3,14],[57,30],[32,16],[222,115],[98,89],[16,14],[2,19],[27,190],[-57,108],[-25,46],[1,15],[3,70],[6,145],[26,53],[60,120],[34,70],[16,10],[347,240],[272,158],[79,46],[277,67],[7,2],[141,65],[20,9],[207,79],[84,33],[70,27]],[[88707,81186],[0,-84],[1,-12],[0,-20],[0,-23],[-1,-39],[0,-33],[0,-18],[1,-50],[-2,-132],[0,-63],[-1,-88],[0,-22],[0,-28],[0,-72],[0,-36],[0,-210],[1,-27],[3,-84],[1,-39],[3,-81],[2,-61],[-1,-121],[0,-136],[0,-26],[0,-42],[-1,-63],[-1,-5],[-3,-37],[0,-4],[-8,-143],[0,-11],[-11,-189],[-1,-134],[-1,-66],[-2,-56],[-2,-262],[0,-22],[-1,-182],[-1,-37],[0,-27],[0,-34],[0,-71],[0,-18],[0,-118],[0,-14]],[[88682,78146],[-70,-1],[-185,-1],[-49,-1],[-81,-1],[-210,0],[-49,-1],[-298,-2],[-81,-1],[-342,-3],[-121,0],[-287,-2],[-22,-1],[-26,0],[-99,-1],[-243,-2],[-23,0],[-200,-1],[-1,0],[-107,-1],[-119,-1],[-1,0],[-34,0],[-59,0],[-35,0],[-123,-1],[-206,-2],[-99,-1],[-332,-2],[-100,-1],[-313,-3],[-72,0],[-6,-1],[-33,0],[-327,-2],[-103,0],[-337,-3],[-93,0],[-81,-1],[-25,-1],[-2,0],[-75,0],[-159,-2],[-77,0],[-114,0],[-248,-1],[-47,0],[-251,-3],[-134,-2],[-68,0],[-120,-1],[-70,-1],[-176,-1],[-231,-2],[-199,-2],[-61,0],[-186,-3],[-24,0],[-160,-2],[-62,0],[-292,-5],[-102,-2],[-189,-2],[-53,0],[-151,-2],[-69,-1],[-154,-2],[-235,-3],[-42,0],[-170,-3],[-1,0],[-424,-7],[-265,-2],[-29,-1],[-49,0],[-327,-4],[-29,-1],[-380,-6],[-42,0],[-70,0],[-30,-4],[-6,0],[-61,-1],[-211,-3],[2,-48],[3,-106],[1,-11],[3,-92],[2,-79],[-1,-54],[2,-57],[1,-37],[1,-31],[1,-74],[7,-173],[1,-19],[0,-37],[2,-99],[1,-29],[2,-57],[1,-39],[3,-103],[5,-146],[5,-147],[2,-60],[1,-20],[0,-5],[1,-13],[1,-29],[-211,-4],[-179,-2],[-17,-1],[-23,0],[-38,-1],[-497,-3],[-76,0],[-252,-2],[-89,-1],[-25,-1],[-82,-1],[-35,-1],[-134,-2],[-71,-5],[-216,-3],[-213,-3],[-49,0],[-313,-4],[-87,-2],[-22,1],[-117,-2],[-88,-1],[-114,-2],[-6,0],[-81,-2],[-281,-5],[-41,-1],[-196,-4],[-40,0],[-299,-6],[-214,-3],[-79,-1],[-23,-1],[-36,0],[-66,0],[-47,-2],[-50,0],[-117,-2],[-115,-1],[-138,-2],[-168,-3],[-229,-4]],[[72718,76397],[-2,86],[-7,177],[-3,64],[-4,88],[-2,66],[-2,47],[-2,74],[-1,5],[0,14],[-2,20],[0,18],[-1,10],[-4,112],[-3,77],[-1,22],[-5,113],[-3,37],[-1,19],[-3,31],[-2,11],[-1,10],[1,28],[1,55],[0,19],[-1,20],[-1,28],[-1,33],[-1,29],[-2,37],[-3,71],[-4,114],[-1,35],[0,6],[-1,12],[0,20],[-1,20],[-1,18],[-3,51],[0,19],[-3,115],[-1,32],[-2,77],[-3,97],[0,6],[0,18],[-1,32],[-1,30],[0,24],[-2,46],[0,36],[-3,54],[-2,80],[-4,182],[0,76],[0,9],[-5,149],[-1,20],[-5,119],[-1,42],[0,25],[0,7],[-1,13],[-1,37],[-1,24],[-1,36],[-1,35],[-6,31],[-3,31],[-2,29],[-1,48],[-2,24],[-3,28],[-2,34],[0,5],[-2,39],[-1,39],[-1,28],[-2,70],[-1,68],[-2,68],[-1,21],[-1,57],[-2,75],[-1,33],[-1,33],[0,20],[-1,10],[-1,50],[-2,36],[-1,34],[-1,31],[-1,25],[-2,36],[-1,24],[-1,35],[-1,21],[-2,49],[-1,22],[-1,26],[-1,20],[-1,30],[-1,22],[-1,22],[-2,32],[-2,67],[-2,37],[-1,45],[0,5],[-2,37],[-1,39],[-1,26],[0,16],[-1,7]],[[72546,81119],[-6,132],[-3,65],[-1,48],[-1,6],[-6,140],[-7,130],[-7,133],[0,18],[-2,53],[-2,57],[-9,143],[-5,119],[-9,139],[-4,121],[-6,90],[-2,34],[-3,64],[-4,73],[-2,35],[0,18],[-2,33],[-1,22],[-2,47],[0,18],[-3,50],[-2,47],[-2,46],[-5,84],[-4,56],[-1,29],[-2,26],[-1,21],[-3,74],[-3,59],[-3,85],[-2,44],[-11,186],[-3,70],[0,2],[-14,270],[-2,43],[-2,44],[-6,129],[-3,27],[-1,27],[0,19],[-1,31],[-1,26],[-1,25],[-4,69],[-3,63],[-5,133],[-1,29],[-7,103],[-1,146],[-3,118],[-5,197],[-2,61],[0,7],[0,26],[-2,63],[-1,38],[-1,21],[0,38],[-1,44],[-2,40],[-3,47],[-2,32],[-3,59],[-1,47],[-1,24],[0,20],[-1,43]],[[72546,81119],[-97,-2],[-107,-3],[-43,-2],[-1,0],[-105,-2],[-83,-1],[-69,-2],[-31,0],[-36,-1],[-339,-7],[-85,-1],[-67,-1],[-129,-1],[-3,0],[-33,-2],[-31,0],[-27,0],[-281,-4],[-157,-3],[-182,-2],[-252,-3],[-360,-6],[-218,-5],[-210,-3],[-129,-3],[-306,-5],[-213,-3],[-221,-4],[-37,0],[-82,-2],[-84,-2],[-223,-4],[-102,-2],[-169,-3],[-36,-1],[-58,-1],[-500,-9],[-192,1],[-1,0],[-218,-1],[-241,-1],[-89,-1],[-45,0],[-128,-1],[-280,-2],[-103,-1],[-27,0],[-5,0],[-245,-1],[-149,-1],[-193,-2],[-323,-2],[-303,-2]],[[64898,81015],[-3,133],[-4,125],[-2,68],[-2,48],[-3,75],[-4,78],[-6,127],[-13,130],[-5,80],[0,28],[-2,26],[-8,182],[-5,77],[-3,76],[0,1],[-5,35],[-2,16],[-12,274],[-7,152],[-2,47],[-1,24],[-1,33],[0,21],[0,2],[0,21],[0,29],[-2,27],[-1,25],[-1,18],[0,22],[-1,9],[-1,21],[-3,36],[-1,22],[0,27],[-3,36],[-8,203],[-6,132],[-3,68],[-9,196],[-5,118],[-7,144],[-1,136]],[[64898,81015],[3,-133],[1,-26],[3,-110],[0,-31],[3,-119],[2,-112],[4,-102],[1,-27],[4,-132],[2,-47],[6,-168],[2,-49],[6,-152],[1,-37],[3,-75],[1,-19],[3,-90],[2,-29],[1,-23],[5,-104],[13,-210],[3,-51],[7,-102],[1,-18],[2,-32],[8,-112],[3,-39],[4,-61],[4,-55],[3,-41],[4,-45],[0,-6],[6,-88],[4,-44],[6,-96],[3,-33],[3,-48],[5,-93],[1,-17],[1,-23],[2,-37],[4,-82],[5,-97],[-2,-89],[12,-51],[3,-57],[4,-76],[5,-130],[10,-261],[0,-31],[1,-28],[3,-76],[5,-129],[3,-85],[5,-177],[1,-88],[2,-62],[2,-112],[1,-133],[1,-131],[1,-84],[1,-43],[0,-4],[1,-72],[0,-1],[0,-58],[4,-186],[1,-76],[1,-157],[0,-74],[1,-30],[0,-49],[0,-56],[1,-87],[1,-72],[3,-216],[0,-48],[0,-40],[0,-80],[-1,-142]],[[65113,74709],[-148,0],[-61,-1],[-187,-1],[-33,1],[-146,-1],[-250,-2],[-40,0],[-118,-1],[-45,-1],[-177,-2],[-61,0],[-406,-4],[-35,1],[-374,-2],[-51,0],[-405,-3],[-28,0],[-244,-2],[-127,-2],[-49,1],[-425,-2],[-57,-1],[-179,-1],[-162,-1],[-31,0],[-139,0],[-41,-1],[-200,1],[-65,0],[-152,-2],[-271,-1],[-50,-1],[-164,-2],[-133,-2],[-48,0],[-26,0],[-30,-1],[-43,0],[-4,0],[-24,-1],[-78,-1],[-33,0],[-23,0],[-46,-1],[-7,0],[-24,0],[-24,0],[-23,0],[-25,0],[-32,0],[-25,0],[-26,0],[-28,0],[-44,-1],[-38,1],[-38,0],[-32,-1],[-38,0],[-33,0],[-1,0],[-39,-1],[-39,0],[-293,0],[-114,0],[-70,0],[-25,0],[-344,2],[-53,1],[-212,-1],[-170,0],[-44,0],[-159,0],[-115,-1],[-148,0],[1,-64],[0,-142],[-1,-115],[2,-132],[0,-94],[-2,-36],[1,-25],[1,-95],[0,-38],[0,-79],[0,-23],[-1,-165],[-3,-97],[2,-131],[1,-60],[-1,-72],[1,-25],[0,-1],[0,-72],[0,-45],[1,-33],[0,-88],[1,-139],[0,-119],[3,-20],[-1,-101],[0,-5],[-3,-144],[-1,-243],[-1,-21],[-3,-261],[-1,-75],[-4,-192],[0,-89],[0,-50],[-1,-123]],[[57432,71458],[-229,-3],[-95,-1],[-104,-1],[-166,-2],[-263,-3],[-98,-1],[-259,-3],[-69,0],[-244,-3],[-179,-4],[-192,-2],[-215,-4],[-208,-3],[-109,-2],[-98,-1],[-56,-1]],[[54848,71424],[0,138],[-1,128],[2,131],[1,130],[2,118],[2,147],[0,71],[0,69],[3,19],[0,19],[0,18],[0,22],[0,21],[1,23],[-2,20],[0,23],[-1,97],[-1,124],[2,12],[1,8],[1,114],[1,63],[0,40],[0,1],[0,21],[0,23],[-1,121],[0,13],[-1,27],[-1,22],[0,3],[1,30],[0,26],[2,82],[1,75],[-2,105],[-3,67],[-1,34],[-1,20],[-1,19],[-1,24],[-2,22],[-2,24],[6,23],[1,33],[0,21],[0,19],[0,26],[-1,198],[1,63],[0,67],[-2,142],[-1,81],[0,20],[-4,223],[-154,-3],[-23,0],[-175,-1],[-69,-1],[-2,0],[-135,0],[-123,-1],[-52,0],[-120,-1],[-81,0],[-132,-2],[-207,-1],[-213,-2],[-237,-1],[-86,-1],[-92,1],[-96,0],[-118,1],[-118,0],[-315,-1]],[[52299,74641],[0,130],[0,101],[0,31],[-1,10],[-2,44],[-1,62],[-2,21],[0,132],[-2,133],[1,125],[0,3],[-1,138],[1,66],[0,55],[-1,108],[-1,170],[-1,172],[0,28],[0,32],[1,32],[-2,34],[0,147],[-1,84],[-1,99],[-1,161],[-1,108],[-1,33],[1,122],[-1,145],[-1,110],[0,152],[-2,117],[-1,20],[-2,201],[0,57],[-2,47],[-4,112],[3,41],[-2,68],[-2,78],[-3,119],[-2,74]],[[52265,78363],[0,3],[-1,21],[-1,36],[-1,29],[0,22],[-3,125],[-1,20],[-1,24],[0,25],[0,17],[0,13],[0,51],[-1,48],[-1,25],[-1,38],[-1,47],[-1,74],[-1,39],[1,22],[-1,27],[-1,51],[-1,27],[0,21],[0,28],[-2,36],[0,26],[-1,39],[-1,30],[0,18],[-1,3],[-1,39],[-2,106],[0,14],[0,27],[0,35],[-1,37],[-1,20],[-1,29],[0,35],[-1,26],[0,25],[-2,52],[0,26],[-1,20],[0,22],[-1,35],[-1,26],[-1,51],[0,26],[0,38],[-1,52],[0,26],[0,18],[-2,25],[-1,32],[-2,88],[-2,52],[0,36],[-1,19],[0,20],[-1,32],[0,20],[-1,18],[0,37],[-1,36],[-1,36],[0,37],[-1,40],[-1,39],[-1,95],[-2,101],[0,35],[0,35],[-1,18],[0,65],[-1,21],[0,21],[-1,22],[0,19],[0,20],[-1,24],[0,18],[-1,30],[0,24],[-1,58],[-1,55],[0,52],[-1,24],[-1,22],[-1,32],[0,36],[-1,73],[0,5],[0,68],[0,37],[0,44],[0,25],[0,4],[0,18],[0,36],[0,37],[-1,36],[0,36],[1,28],[-1,39],[0,31],[1,18],[0,35],[0,36],[0,2],[-1,75],[0,31],[-1,32],[0,38],[0,56],[0,20],[1,45],[0,19],[0,42],[1,51],[0,47],[0,33],[1,21],[0,2],[0,22],[0,29],[0,28],[0,33],[0,34],[0,80],[-1,24],[0,69],[0,50],[0,19],[0,19],[0,41],[0,29],[-1,61],[0,31],[0,29],[0,22],[1,21],[-1,38]],[[52265,78363],[-29,-6],[-6,-1],[-62,-15],[-57,-5],[-23,-3],[-8,0],[-81,3],[-67,3],[-46,8],[-112,19],[-204,13],[-15,-1],[-10,0],[-10,4],[-13,4],[-17,2],[-42,6],[-2,0],[-11,2],[-15,4],[-144,3],[-61,-2],[-336,17],[-47,9],[-55,17],[-6,2],[-94,28],[-24,7],[-91,19],[-46,4],[-117,10],[-95,19],[-73,35],[-14,7],[-32,6],[-13,1],[-85,4],[-38,1],[-20,-1],[-9,-2],[-130,-21],[-8,0],[-50,0],[-4,0],[-4,0],[-3,-1],[-4,0],[-4,-1],[-4,-1],[-3,-2],[-4,-1],[-3,-2],[-2,-1],[-47,-28],[-1,-1],[-3,-2],[-3,-2],[-3,-2],[-2,-3],[-3,-2],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-1,-3],[-1,-3],[0,-1],[-3,-12],[0,-4],[-25,-15],[-30,-19],[-10,-9],[-6,-4],[-4,-2],[-1,0],[-35,-17],[-32,-14],[-54,-10],[-45,-5],[-12,-1],[-96,-9],[-22,-2],[-141,-38],[-18,-7],[-58,-21],[-179,-26],[-110,-17],[-18,-2],[-50,-9],[-24,-5],[-69,-17],[-31,-8],[-72,-9],[-90,-12],[-34,-5],[-7,0],[-38,-3],[-33,-17],[-31,-16],[-13,-7],[-40,-37],[-20,-31],[-1,-41],[0,-5],[23,-31],[30,-39],[51,-69],[7,-9],[2,-5],[0,-1],[4,-13],[-1,-7],[-3,-29],[-2,-5],[-5,-22],[-9,-12],[-21,-30],[-17,-46],[0,-2],[-1,-1],[-8,-11],[-38,-49],[-15,-19],[-15,-33],[-33,-72],[-5,-7],[-17,-10],[-18,-10],[-21,-35],[-33,-55],[-37,-107],[-15,-48],[-4,-15],[-28,-51],[-3,-6],[-8,-22],[-77,-195],[-32,1],[-114,2],[-1,0],[-263,5],[-100,0],[-319,1],[-16,0],[-10,0],[-51,0],[-52,0],[-9,0],[-416,1],[-72,0],[-50,0],[-233,0],[-168,1],[-336,1],[-36,0],[-73,0],[-63,0],[-30,0],[0,-56],[0,-121],[0,-223],[0,-42],[0,-39],[0,-30],[1,-242],[0,-38],[0,-94],[0,-133],[0,-100],[1,-163],[0,-146],[0,-114]],[[45530,75444],[-181,1],[-64,0],[-4,0],[-250,-1],[-31,0],[-53,0],[-24,1],[-63,0],[-63,0],[-105,0],[-30,0],[-68,0],[-133,1],[-25,0],[-95,0],[-41,0],[-43,0],[-23,1],[-69,0],[-52,0],[-2,0],[-27,0],[-44,0],[-41,0],[-127,0],[-40,0],[-29,0],[-64,0],[-41,0],[-63,0],[-64,0],[-46,0],[-45,0],[-77,0],[-30,1],[-22,0],[-41,0],[-46,0],[-41,0],[-40,0],[-87,0],[-81,0],[-23,0],[-42,0],[-26,0],[-82,0],[-23,0],[-23,0],[-64,0],[-41,0],[-80,-1],[-101,0],[-33,0],[-62,0],[-47,0],[-39,0],[-41,0],[-41,0],[-87,0],[-70,0],[-41,-1],[-34,0],[-27,0],[-19,0],[-46,0],[-45,0],[-9,0],[-29,0],[-37,-1],[-46,0],[-54,0]],[[41703,75445],[-3,21],[0,25],[0,22],[0,45],[-1,49],[0,53],[0,25],[0,18],[0,21],[0,37],[0,52],[0,78],[0,25],[0,54],[-1,30],[0,23],[1,29],[-1,25],[0,24],[1,26],[0,78],[0,21],[0,21],[-1,51],[0,67],[0,31],[0,22],[0,103],[0,25],[0,20],[0,5],[0,27],[-1,26],[-1,41],[0,27],[2,65],[-3,142],[-1,86],[-62,0],[-33,0],[-23,0],[-31,-1],[-23,0],[-3,0],[-44,0],[-127,0],[-24,0],[-53,0],[-26,0],[-23,1],[-42,-1],[-49,1],[-60,-1],[-42,1],[-25,-1],[-24,0],[-51,0],[-111,1],[-84,0],[-27,0],[-4,0],[-23,0],[-43,0],[-42,0],[-63,0],[-51,0],[-33,-1],[-46,0],[-79,1],[-25,0],[-29,0],[-61,0],[-23,0],[-34,0],[-7,0],[-65,0],[-40,0],[-65,0],[-24,0],[-58,0],[-47,0],[-62,1],[-61,0],[-62,0],[-63,0],[-41,0],[-25,0],[-64,0],[-55,0],[-110,0],[-27,0],[-57,-2],[-53,1],[-25,0],[-79,1],[-103,1],[-222,3],[-63,1],[-51,0],[-7,0],[-283,1],[-116,-1],[-238,0],[-109,0],[-154,0],[-292,1],[-357,1],[-35,1],[-25,0],[-59,0],[-23,0],[-101,2]],[[36823,76996],[5,46],[1,27],[0,23],[0,27],[1,24],[0,26],[-1,24],[0,3],[0,27],[0,26],[0,42],[-1,34],[0,37],[-1,41],[1,33],[1,28],[0,39],[1,23],[1,28],[3,90],[1,19],[1,23],[0,11],[0,8],[1,26],[2,39],[0,27],[0,36],[1,26],[1,53],[0,39],[1,24],[0,26],[1,25],[0,26],[1,70],[0,11],[2,49],[-1,27],[0,25],[2,21],[1,26],[0,26],[0,36],[-1,21],[1,18],[0,28],[0,19],[1,24],[-1,22],[1,25],[-1,20],[1,31],[-1,24],[-1,26],[0,19],[-1,35],[0,23],[0,18],[0,24],[0,34],[0,73],[1,38],[-1,22],[0,18],[0,35],[-1,31],[0,28],[0,53],[0,29],[0,19],[0,33],[0,39],[-1,22],[0,33],[0,20],[0,47],[0,27],[0,30],[-3,44],[4,139],[0,79],[-1,120],[0,6],[0,43],[0,85],[0,4],[0,128],[-1,20],[0,131],[0,119],[0,1],[-1,71],[1,198],[1,237],[0,29],[1,76],[0,46],[0,45],[0,55],[-2,177],[0,22],[-1,37],[0,34],[-2,32],[-3,97],[-3,127],[0,14],[-1,164],[1,60],[-2,193],[-2,22],[1,31],[0,24],[0,37],[-13,24],[-25,4],[-1,19],[-2,26],[-2,31],[-1,28],[-3,57],[-2,32],[-1,20],[-2,26],[-2,33],[-2,44],[-1,21],[-1,19],[-1,19],[-1,21],[-2,23],[-1,19],[-1,31],[-2,32],[-2,35],[-2,32],[-3,38],[-1,18],[-2,27],[-4,71],[-4,57],[-2,39],[-2,24],[-3,47],[-2,24],[0,3],[-18,267]],[[36823,76996],[-29,-2],[-64,0],[-101,1],[-28,0],[-1,-94],[0,-52],[-2,-90],[1,-116],[0,-157],[-1,-106],[-1,-88],[0,-44],[-2,-132],[-2,-56],[1,-75],[-1,-88],[-2,-224],[-1,-68],[-2,-133],[-12,-20],[-287,5],[-53,0],[-88,4],[-24,-1],[-66,3],[-158,-3],[-36,-1],[-23,0],[-106,0],[-6,0],[-206,0],[-213,0],[-8,0],[-82,0],[-27,-1],[-70,0],[-112,0],[-47,-1],[-33,1],[-52,0],[-28,1],[-100,0],[-158,0],[-42,0],[-83,0],[-32,-1],[-67,0],[-85,0],[-47,0],[-31,0],[-36,1],[-57,0],[-109,0]],[[34004,75459],[-344,1],[-3,0],[-31,0],[-46,0],[-109,0],[-46,0],[-279,0],[-334,3],[-24,0],[-25,0],[-43,1],[-426,1],[-49,0],[-357,0],[-29,0],[-23,1],[-128,1],[-191,3],[-432,3],[-209,3],[-112,2],[-106,3],[-377,7],[-69,1],[-190,4],[-45,0],[-177,3],[-208,4],[-75,1],[-143,3],[-216,3],[-73,1],[-73,1],[-110,-1],[-328,-2],[-192,-1],[-132,-1],[-108,0],[-47,0],[-30,-1],[-10,0],[-346,-1],[-180,-2],[-257,-1],[-100,-1],[-334,-1],[-87,-1],[-283,-2],[-125,0],[-49,1],[-69,0],[-192,-1],[-226,0],[-175,-1],[-23,3],[-295,-2],[-130,0],[-83,0],[-2,0],[-110,0],[-227,1],[-100,0],[-155,-1],[-306,0],[-57,0],[-76,0],[-145,-1]],[[23923,75493],[3,134],[2,69],[4,196],[8,355],[2,68],[1,34],[1,22],[0,22],[1,28],[-1,34],[2,29],[3,93],[1,26],[2,217],[5,164],[-1,70],[-3,19],[2,47],[8,157],[2,56],[4,137],[4,130],[5,197],[7,237],[3,96],[3,22],[1,6],[2,42],[2,52],[1,22],[2,180],[3,62],[2,41],[3,81],[0,28]],[[72718,76397],[4,-77],[3,-52],[5,-129],[2,-47],[4,-91],[6,-128],[8,-187],[1,-22],[1,-52],[5,-120],[7,-144],[4,-67],[6,-127],[4,-67],[1,-25],[6,-43],[2,-57],[5,-138],[-143,-4],[-34,-1],[-1,0],[-23,1],[-35,-1]],[[72556,74819],[-187,-4],[-91,-1],[-144,-3],[-321,-5],[-94,-2],[-26,0],[-183,-3],[-23,-1],[-188,-3],[-22,0],[-101,-2],[-59,-1],[-32,-1],[-244,-5],[-184,-4],[-116,-3],[-43,-1],[-88,-2],[-181,-4],[-106,-3],[-50,-1],[-263,-4],[-106,-2],[-330,-5],[-229,-4],[-20,-1],[-61,0],[-22,-1],[-55,0],[-34,-1],[-205,-5],[-93,-2],[-79,-3],[-51,0],[-171,-4],[-49,-1],[-61,-1],[-1,0],[-25,0],[-127,-3],[-197,-4],[-229,-5],[-196,-3],[-26,0],[-32,0],[-35,-1],[-127,-1],[-220,-3],[-83,-1],[-127,-1],[-163,0],[-265,0],[-89,0],[-109,0],[-227,-1],[-164,0],[-27,0],[-211,-1],[-28,0],[-57,-1],[-2,0],[-105,0],[-45,-1],[-182,-1],[-32,0]],[[23923,75493],[-1,-61],[0,-1],[-4,-191],[-1,-36],[-4,-66],[-3,-119],[-1,-46],[0,-2],[0,-24],[-1,-32],[-5,-203],[-3,-87],[-2,-75],[-4,-101],[-3,-133],[0,-120],[-3,-20],[-2,-129],[-2,-130]],[[23884,73917],[-59,0],[-41,0],[-114,-1],[-75,0],[-42,0],[-91,-1],[-23,-3],[-79,0],[-42,1],[-42,0],[-42,0],[-42,0],[-96,-1],[-29,0],[-41,0],[-38,0],[-42,0],[-42,0],[-42,0],[-84,-1],[-45,0],[-127,0],[-23,0],[-42,0],[-42,1],[-42,0],[-42,0],[-81,1],[-23,0],[-42,0],[-42,0],[-23,0],[-28,1],[-23,0],[-82,0],[-62,1],[-45,0],[-41,1],[-40,0],[-67,0],[-61,0],[-39,1],[-126,0],[-42,1],[-80,0],[-35,0],[-25,1],[-22,2],[-31,0],[-28,1],[-33,0],[-24,0],[-42,1],[-28,1],[-28,2],[-28,1],[-30,1],[-34,1],[-50,2],[-74,2],[-37,2],[-166,5],[-75,2],[-63,2],[-41,1],[-24,1],[-44,1],[-19,0],[-130,3],[-96,3],[-131,3],[-29,0],[-32,1],[-73,2],[-27,0],[-57,2],[-26,0],[-41,1],[-28,1],[-69,2],[-23,1],[-48,1],[-5,0],[-99,2],[-1,0],[-58,1],[-33,1],[-29,0],[-43,1],[-83,1],[-65,1],[-28,1],[-28,1],[-35,0],[-251,5],[-42,1],[-41,0],[-40,0],[-61,1],[-31,0],[-210,2],[-31,0],[-34,0],[-53,0],[-301,2],[-27,1],[-36,0],[-76,0],[-26,0],[-298,2],[-63,1],[-32,0],[-144,2],[-98,0],[-197,2],[-1,0],[-27,1],[-31,0],[-42,1],[-62,1],[-53,0],[-31,1],[-53,0],[-104,1],[-29,0],[-454,3]],[[16191,74003],[-50,0],[-1,0],[-167,1],[-214,4],[-27,1],[-85,0],[-39,1],[-23,0],[-31,0],[-42,0],[-27,0],[-29,0],[-32,0],[-31,1],[-44,0],[-27,0],[-43,0],[-38,1],[-50,0],[-22,0],[-46,0],[-71,1],[-23,0],[-25,1],[-44,0],[-23,0],[-32,0],[-251,4],[-266,-1],[-111,-1],[-87,0],[-46,-1],[-24,1],[-126,3],[-357,2],[-32,1],[-23,0],[-75,1],[-32,0],[-39,0],[-23,1],[-50,0],[-40,1],[-28,1],[-35,0],[-59,1],[-30,0],[-71,1],[-23,0],[-52,1],[-31,0],[-42,0],[-56,1],[-30,1],[-130,-2],[-8,1],[-36,0],[-76,0],[-72,7]],[[12544,74037],[3,37],[5,101],[3,64],[3,52],[-4,104],[43,42],[2,53],[1,16],[-59,59],[-188,189],[-104,105],[-64,64],[-30,31],[-10,10],[-15,15],[-64,64],[-5,68],[-1,0],[-128,126],[-21,22],[-65,71],[-63,69],[-9,10],[-27,30],[-105,134],[-118,89],[-99,12],[-33,33],[-18,18],[-26,0],[-90,3],[-221,8],[-65,2],[-79,2],[-147,5],[-182,6],[-10,0],[-4,4],[-338,338],[-116,117],[-7,6],[-95,96],[-45,32],[-226,162],[-201,143],[-182,130],[-116,83],[-177,126],[-142,101],[-8,6],[0,4],[5,182],[1,41],[78,75],[136,132],[19,31],[153,258],[26,43],[17,29],[29,26],[61,55],[203,184],[63,57],[97,237],[-22,205],[41,53],[4,6],[2,36],[0,17],[-1,15]],[[52299,74641],[-88,0],[-379,-1],[-60,0],[-228,0],[-115,-2],[-276,1],[-146,0],[-85,-3],[-77,-1],[-174,2],[-93,1],[-235,0],[-201,-1],[-201,0],[-56,-1],[-188,0],[-88,0],[-141,2],[-109,1],[-79,-2],[-145,-2],[-97,1],[-108,-1],[-79,0],[-46,0],[-128,-1],[-201,1],[-52,0],[-152,-1],[-10,0],[-24,0],[-74,0],[-6,0],[-98,0],[-34,0],[-20,0],[-47,0],[-28,0],[-2,0],[17,16],[10,7],[26,19],[12,9],[25,11],[47,20],[4,1],[32,10],[51,10],[46,10],[29,8],[65,18],[26,13],[24,12],[45,35],[15,15],[31,31],[36,60],[18,56],[0,18],[0,6],[4,51],[5,58],[1,13],[0,22],[0,37],[1,50],[-1,29],[83,154],[-32,0],[-146,-1],[-139,-1],[-95,1],[-1,0],[-25,0],[-31,0],[-36,1],[-37,0],[-141,2],[-188,2],[-24,0],[-25,0],[-20,0],[-79,0],[-443,2],[-66,-1],[-129,3],[-107,0],[-151,1],[-21,0],[-153,0],[-220,1],[-115,0],[-108,0],[-6,0],[-307,1],[-206,0]],[[88682,78146],[0,-60],[1,-58],[0,-60],[0,-62],[0,-35],[0,-136],[0,-176],[0,-80],[0,-142],[1,-39],[1,-21],[0,-93],[1,-150],[1,-110],[0,-2],[0,-364],[0,-20],[0,-91],[1,-104],[0,-45],[0,-24],[-1,-50],[0,-41],[0,-5],[0,-3],[-1,-57],[0,-35],[-1,-116],[0,-58],[0,-20],[1,-78],[0,-26],[-1,-25],[1,-44],[0,-17],[0,-13],[-2,-34],[0,-66],[0,-44],[0,-26],[0,-1],[0,-42],[0,-62],[0,-127],[2,-162],[-2,-103],[-1,-64],[3,-112],[-1,-60],[0,-92],[0,-19],[2,-51],[0,-26],[0,-58],[0,-70],[2,-62],[0,-27],[1,-13],[0,-31],[-2,-1],[0,-1],[0,-48],[1,-19],[0,-56],[0,-316],[-2,-22],[2,-1],[2,-68],[-1,-169],[1,-94],[0,-64],[-2,-185],[0,-31],[1,-47],[-1,-2],[2,-129],[1,-63],[2,-69],[1,-1]],[[88695,72948],[-32,1],[-205,-5],[-25,0],[-96,-2],[-47,0],[-52,1],[-23,-1],[-50,0],[-25,-1],[-64,-1],[-39,-1],[-27,0],[-39,-1],[-54,-1],[-103,-4],[-328,-7],[-430,-10],[-165,1],[-28,-1],[-178,-3],[-54,0],[-78,-1],[-28,0],[-36,-1],[-65,-1],[-85,-1],[-24,0],[-179,-4],[-39,0],[-105,1],[-71,-2],[-98,-2],[-391,-3],[-35,-1],[-29,-1],[-31,0],[-31,-1],[-31,0],[-31,-1],[-62,-1],[-93,-2],[-31,-1],[-62,-1],[-31,-1],[-42,0],[-29,-1],[-13,0],[-30,-1],[-30,0],[-25,-1],[-32,0],[-99,-1],[-1,0],[-120,-2],[-3,0],[-219,-4],[-211,-3],[-3,0],[-317,-7],[-76,1],[-32,0],[-444,-3],[-425,-9],[-311,-2],[-167,-2],[-25,-3],[-24,-1],[-21,-2],[-159,-2],[-29,-1],[-325,-3],[-218,-2],[-283,-6],[-137,-2],[-16,0],[-29,-1],[-31,0],[-63,-1],[-42,-1],[-31,0],[-126,-1],[-52,-1],[-39,-2],[-29,-1],[-31,-2],[-31,-1],[-31,0],[-84,-3],[-24,-1],[-49,0],[-26,0],[-99,-2],[-23,-1],[-3,0],[-20,0],[-25,-2],[-24,2],[-14,-1],[-18,-1],[-25,0],[-27,-1],[-51,-1],[-35,-1],[-25,0],[-39,-1],[-27,-1],[-41,-1],[-50,-1],[-69,-1],[-47,-1],[-139,-3],[-81,-1],[-31,-1],[-56,-1],[-32,-1],[-31,-1],[-110,-4],[-70,-3],[-58,-2],[-29,-1],[-31,-2],[-68,-2],[-30,-1],[-126,-3],[-63,-1],[-216,-4],[-26,-1],[-48,0],[-129,-3],[-74,-1],[-87,-1],[-31,-1],[-36,0],[-183,-2],[-133,-1],[-38,-1],[-153,-3],[-23,0],[-120,-2],[-113,-2],[-8,0],[-80,-1],[-65,-1],[-110,-2],[-177,-3],[-62,-2],[-82,-2],[-76,-2],[-194,-4],[-84,-1],[-129,-1],[-60,0],[-145,-2],[-24,0],[-204,-2],[-42,0],[-41,0],[-135,-2],[-56,0],[-62,-1],[-52,-1],[-62,-1],[-80,-1],[-24,-1],[-58,-1],[-23,-2]],[[75219,72721],[-40,-2],[-190,-6],[-19,-1],[-44,-1],[-128,-3],[-202,-3],[-49,-1],[-79,-1],[-101,-2],[-424,-11],[-36,-1],[-2,0],[-152,-3],[-40,-1],[-47,-1],[-64,-1],[-25,-1],[-31,-1],[-33,0],[-1,0],[-44,0],[-314,-1],[-76,0],[-168,-5],[-122,-4],[-133,-4]],[[72655,72667],[-4,49],[0,46],[-12,162],[-10,261],[-4,134],[-7,129],[-4,87],[-9,176],[-6,263],[-8,100],[-6,97],[-1,26],[-3,49],[-3,125],[-3,84],[-1,45],[-6,18],[0,23],[-3,94],[-3,72],[-5,83],[0,3],[-1,26]],[[41703,75445],[0,-33],[0,-39],[-2,-59],[1,-81],[0,-46],[0,-56],[0,-58],[0,-22],[0,-83],[1,-33],[0,-118],[0,-28],[-1,-70],[1,-30],[0,-93],[-1,-26],[0,-39],[0,-32],[0,-26],[0,-79],[0,-48],[0,-71],[0,-52],[0,-33],[0,-30],[0,-29],[-1,-131],[-1,-131],[0,-134],[0,-112],[0,-18],[-1,-128],[0,-38],[0,-31],[0,-5],[0,-62],[-1,-111],[0,-151],[-1,-235],[0,-30],[0,-52],[1,-212],[0,-25],[-1,-91],[0,-147]],[[41697,72287],[-120,0],[-63,0],[-63,0],[-24,0],[-45,1],[-115,0],[-77,0],[-174,0],[-94,0],[-48,0],[-36,0],[-106,0],[-47,0],[-64,0],[-94,0],[-114,0],[-69,0],[-63,0],[-63,0],[-32,0],[-23,1],[-103,0],[-48,0],[-32,0],[-198,0],[-110,0],[-95,1],[-26,0],[-68,0],[-111,0],[-34,0],[-45,0],[-47,0],[-23,0],[-40,1],[-32,0],[-32,0],[-1,0],[-30,0],[-32,0],[-78,1],[-29,1],[-52,1],[-24,0],[-27,1],[-35,0],[-116,2],[-105,1],[-95,1],[-47,0],[-95,1],[-47,0],[-38,1],[-84,0],[-83,0],[-224,2],[-30,1],[-29,0],[-58,0],[-31,1],[-110,1],[-158,2],[-41,0],[-56,2],[-64,0],[-196,-2],[-3,0],[-536,1],[-75,1],[-2,0],[-149,1],[-1,0],[-157,1],[-477,-2],[-132,-1],[-63,0],[-120,0],[-48,-1],[-63,0],[-6,0],[-37,-1],[-25,4],[-75,-4],[-75,-1],[-57,-1],[-120,0],[-31,0],[-32,0],[-186,-1],[-82,0],[-73,0],[-80,-1],[-49,0],[-67,5],[-6,0],[-19,-1],[-277,-2]],[[33981,72305],[0,28],[0,65],[1,29],[2,94],[0,33],[1,24],[0,20],[0,48],[0,32],[-7,84],[1,69],[3,318],[1,72],[3,308],[3,277],[0,65],[5,41],[-2,71],[1,81],[1,92],[0,31],[1,83],[1,21],[0,29],[1,175],[0,23],[1,88],[0,69],[1,20],[0,1],[0,47],[1,107],[1,56],[0,25],[0,33],[1,128],[0,23],[0,35],[0,45],[0,78],[2,159],[0,27]],[[33981,72305],[-1,-24],[0,-52],[-1,-185],[0,-42],[0,-1],[0,-52],[-2,-79],[2,-78],[0,-7],[0,-12],[0,-64],[0,-11],[0,-37],[3,-60],[-2,-29],[1,-48],[0,-147],[-1,-51],[0,-66],[0,-156],[0,-39],[0,-64],[0,-1],[0,-66],[0,-66],[1,-134],[-1,-144],[1,-30],[0,-14],[0,-18],[0,-23],[-1,-29],[-1,-73],[0,-44],[0,-22],[2,-133],[2,-100],[1,-22],[0,-19],[0,-33],[-1,-90],[-1,-263],[3,-185],[-1,-80],[0,-71],[0,-59],[-1,-131],[-2,-133],[-3,-265],[0,-70],[0,-1],[-1,-52],[-1,-109],[-1,-38],[0,-1],[0,-125],[-1,-71],[0,-38],[-1,-22],[0,-57],[0,-2],[-2,-211],[-3,-23],[0,-2],[1,-59],[1,-10],[0,-32],[0,-59],[-1,-72],[0,-134]],[[33969,67565],[-3,0],[-107,1],[-78,0],[-121,1],[-3,0],[-33,1],[-80,1],[-222,1],[-2,0],[-415,2],[-175,1],[-28,0],[-321,1],[-236,2],[-73,1],[-27,0],[-153,1],[-51,1],[-46,0],[-40,-2],[-232,2],[-104,1],[-230,2],[-63,0],[-127,0],[-90,1],[-33,-1],[-305,1],[-422,4],[-2,0],[-183,2],[-243,0],[-417,0],[-61,0],[-357,1],[-227,0],[-156,1],[-117,0],[-156,0],[-135,1],[-79,0],[-75,0],[-115,2],[-42,0],[-45,-3],[-5,0],[-296,3],[-146,0],[-37,2],[-22,0],[-20,0],[-15,-1],[-31,1],[-32,0],[-22,0],[-52,0],[-24,0],[-26,0],[-27,0],[-270,1],[-212,-3],[-25,0],[-115,5],[-38,0],[-319,-2],[-125,-1],[-146,0],[-37,3],[-26,1],[-32,0],[-32,1],[-65,0],[-32,0],[-97,1],[-54,1],[-46,0],[-48,0],[-32,0],[-33,0],[-38,0],[-50,1],[-24,0],[-348,-1],[-239,2],[-9,1],[-36,0],[-17,1],[-29,1],[-46,1],[-97,1],[-48,0],[-29,0],[-35,0],[-49,1],[-197,-3],[-80,1],[-13,0],[-42,0]],[[23774,67609],[0,34],[1,19],[0,20],[-1,19],[1,25],[1,26],[1,32],[0,26],[2,39],[3,24],[0,2],[1,53],[2,118],[1,27],[1,66],[2,109],[1,39],[3,100],[1,33],[1,30],[5,252],[-1,45],[0,19],[2,27],[2,103],[2,87],[1,49],[2,101],[1,45],[2,115],[-2,20],[1,56],[-1,75],[1,25],[1,19],[-1,33],[0,19],[1,20],[0,45],[2,45],[1,45],[1,18],[1,129],[0,11],[1,118],[-1,37],[4,87],[0,26],[0,25],[-1,39],[1,25],[0,24],[1,25],[-1,25],[-4,21],[6,23],[1,18],[1,29],[3,103],[-1,22],[0,23],[1,39],[2,64],[1,26],[0,26],[1,38],[1,52],[2,71],[1,26],[0,27],[1,37],[1,70],[0,2],[0,21],[1,25],[0,39],[1,26],[0,27],[1,23],[0,26],[2,57],[0,40],[0,14],[1,17],[1,47],[0,17],[0,24],[0,19],[1,38],[0,11],[1,14],[1,39],[-1,33],[1,34],[0,21],[1,38],[0,29],[1,23],[1,28],[0,23],[0,39],[1,22],[0,11],[0,29],[0,19],[1,19],[1,26],[0,26],[1,51],[1,26],[2,51],[0,25],[0,26],[1,103],[0,26],[0,26],[0,42],[0,23],[1,25],[1,25],[1,39],[0,24],[0,22],[1,40],[0,26],[1,26],[0,51],[0,65],[1,25],[0,24],[0,64],[1,19],[-1,25],[1,28],[-1,36],[1,26],[1,26],[1,26],[0,22],[1,42],[-1,26],[1,24],[0,25],[1,26],[0,45],[0,25],[0,38],[1,43],[1,22],[1,20],[-1,34],[1,18],[0,22],[0,14],[6,222],[1,61],[1,33],[3,103],[1,66]],[[54848,71424],[-211,2],[-3,0],[-217,2],[-420,4],[-218,2],[-211,1],[-162,1],[-2,0],[-262,1],[-302,1],[-124,3],[-3,0],[-166,-2],[-206,1],[-216,-3],[-328,-3],[-26,0],[-63,-1],[-69,0],[-148,-2],[-115,-1],[-100,0],[-31,0],[-186,-6],[-38,0],[-390,-8],[-288,-6],[-143,-3],[-79,-1],[-29,-2],[-322,-6],[-89,-2],[-58,-1],[-58,-1],[-41,0],[-52,-2],[-34,0],[-6,0],[-31,-2],[-29,0],[-54,-2],[-37,-1],[-101,-2],[-66,-1],[-115,-2],[-5,0],[-112,-2],[-159,-4],[-28,0],[-1,0],[-49,-1],[-30,-1],[-241,-4],[-163,-3],[-102,-2],[-139,-2],[-2,0],[-107,-2],[-178,-3],[-121,2],[-43,0],[-30,-1],[-268,-2],[-406,-4],[-275,-2],[-59,-1],[-60,0],[-34,0],[-3,-1],[-132,-3],[-190,-3],[-50,0],[-8,0],[-50,-1],[-28,0],[-48,0],[-75,-1],[-181,-1],[-41,-1],[-86,0],[-4,0],[-41,0],[-51,0]],[[45399,71339],[81,44],[77,35],[29,21],[14,19],[30,16],[7,8],[14,14],[28,34],[3,3],[8,9],[8,9],[19,13],[23,10],[57,60],[25,27],[-14,34],[-24,57],[-6,15],[-10,26],[-1,28],[38,37],[55,56],[77,110],[7,28],[-4,41],[-5,19],[-14,34],[-8,22],[-1,21],[6,33],[10,27],[19,29],[-33,0],[-72,0],[-13,0],[-42,0],[-17,0],[-19,0],[-80,0],[-162,0],[-134,0],[-56,0],[-180,0],[-79,-1],[-135,3],[-37,-1],[-107,-2],[-157,1],[-42,0],[-28,0],[-106,0],[-26,0],[-141,0],[-40,0],[-142,1],[-75,0],[-176,0],[-34,0],[-37,0],[-223,1],[-44,0],[-90,1],[-138,1],[-116,-1],[-103,2],[-73,-1],[-119,-1],[-50,1],[-80,-1],[-46,0],[-105,0],[-25,0],[-62,1],[-177,1],[-326,3],[-104,1],[-19,0],[-180,0]],[[72655,72667],[9,-152],[2,-33],[5,-79],[6,-160],[3,-101],[9,-263],[0,-25],[2,-65],[6,-143],[1,-29],[10,-245],[0,-2],[1,-18],[7,-193],[2,-66],[3,-68],[5,-139],[2,-61],[8,-261],[4,-59],[11,-205],[8,-202],[2,-36],[1,-24],[2,-81],[1,-51],[6,-128],[5,-114],[0,-10],[1,-36],[3,-33],[2,-67],[1,-50],[7,-200],[4,-94],[6,-183],[7,-129],[5,-132],[3,-82],[7,-181],[2,-55],[2,-53],[4,-106],[2,-53],[0,-1],[1,-56],[4,-73],[6,-118],[3,-36],[7,-238],[1,-50],[4,-115],[3,-99],[4,-103],[5,-160],[3,-111],[5,-149],[17,-39],[2,-4],[0,-24],[5,-156],[1,-31],[5,-140],[2,-57],[0,-57],[3,-74],[8,-190],[4,-129],[4,-125],[-173,-2],[-165,-1],[-73,-1],[-422,-1],[-429,-3],[-34,0],[-1,0],[-100,0],[-185,-1],[-106,0],[-421,-5],[-84,0],[-81,1],[-224,1],[-266,-7],[-4,0],[-155,1],[-99,1],[-97,1],[-127,2],[-87,1],[-15,0],[-37,1],[-12,0],[-378,0],[-410,0],[-437,0],[-82,0],[-151,-1],[-141,-1]],[[67933,65851],[-246,-1],[-2,0],[-178,-1],[-214,-1],[-210,-1],[-28,0],[-26,0],[-245,-1],[-117,0],[-146,0],[-75,0],[-324,-5],[-101,-1],[-209,-3],[-116,0],[-97,0],[-61,-1],[-163,0],[-1,118],[-1,36],[-2,106],[-2,84],[-1,51],[-2,70],[-4,195],[-3,138],[0,63],[-2,115],[-49,0],[-111,3],[-5,127],[-5,131],[-3,133],[-3,130],[-7,262],[-8,261],[-4,158],[-2,102],[-1,68],[0,1],[-2,60],[-2,135],[-425,-3],[-429,-3],[-53,-1],[-129,0],[-249,-3],[-428,-4],[-46,0],[-1,0],[-219,-2],[-155,-1],[-400,-3],[-28,-1],[-214,-2],[-95,-1],[-6,0],[-20,0],[-93,0],[-52,-1],[-162,-2],[-175,-1],[-35,-1],[-60,-1],[-214,-3],[-162,-2],[-427,-6],[-135,0],[-285,-1],[-219,-3],[-206,-2],[-426,-3],[-122,-1],[-306,-3],[-420,-4],[-25,0],[-48,-1],[-146,-2],[-210,-2],[-425,-6],[-76,-1],[-352,-7]],[[57477,68306],[-3,141],[-2,122],[-1,39],[-5,224],[-1,68],[-3,151],[-1,43],[-3,130],[-3,133],[-4,238],[-1,23],[-3,186],[-1,76],[-5,232],[-1,31],[-1,148],[-1,115],[-1,99],[-1,25],[-2,143],[-1,70],[0,22],[-1,169],[0,233],[0,31],[0,233],[0,27]],[[16191,74003],[-1,-42],[0,-23],[-1,-22],[0,-20],[-1,-25],[-1,-38],[-1,-32],[0,-23],[-1,-24],[0,-20],[-1,-29],[-1,-31],[-1,-23],[-2,-41],[0,-20],[-1,-18],[-1,-26],[0,-24],[-1,-19],[0,-23],[-1,-28],[-1,-32],[-1,-24],[0,-23],[0,-2],[-1,-22],[-1,-23],[-1,-20],[-1,-21],[0,-21],[-1,-31],[-2,-29],[0,-30],[-1,-19],[0,-8],[0,-12],[-1,-31],[1,-43],[0,-23],[0,-19],[-1,-24],[-1,-20],[0,-22],[0,-19],[0,-23],[1,-30],[1,-23],[0,-5],[0,-29],[1,-34],[0,-24],[0,-24],[0,-20],[1,-42],[0,-33],[-1,-28],[0,-23],[0,-32],[-1,-20],[0,-19],[-1,-25],[0,-44],[-1,-49],[0,-32],[0,-33],[0,-36],[0,-28],[-1,-19],[0,-18],[0,-25],[0,-30],[0,-34],[-1,-25],[0,-30],[0,-28],[0,-41],[0,-33],[-1,-31],[0,-26],[1,-25],[-1,-26],[1,-24],[0,-18],[-1,-22],[-1,-23],[0,-19],[-1,-21],[-1,-35],[0,-24],[-1,-42],[0,-29],[-1,-31],[0,-20],[0,-31],[0,-18],[-1,-27],[-1,-28],[0,-20],[-1,-36],[-1,-39],[0,-23],[-1,-19],[0,-21],[0,-28],[-1,-36],[0,-7],[0,-12],[0,-26],[0,-51],[-1,-26],[-1,-25],[0,-26],[-1,-26],[0,-40],[-1,-45],[-1,-52],[-1,-38],[0,-29],[-11,-345],[3,-184],[-1,-80],[1,-20],[-2,-23],[0,-1],[-4,-137],[0,-14],[0,-23],[-1,-32],[-1,-64],[-1,-24],[0,-28],[0,-26],[-1,-56],[0,-8],[0,-19],[-1,-32],[0,-20],[0,-45],[-1,-38],[-1,-65],[0,-27],[0,-19],[0,-24],[-1,-25],[0,-26],[0,-19],[-1,-20],[0,-21],[0,-22],[0,-42],[0,-22],[0,-20],[-1,-19],[0,-39],[0,-18],[0,-28],[0,-39],[-1,-133],[-1,-46],[0,-1],[0,-216],[-1,-155],[-3,-118],[-2,-20],[2,-81],[0,-2],[2,-116],[-1,-149],[-2,-142],[0,-2],[-1,-130],[-14,-134],[-1,-21],[-1,-65],[-1,-68],[0,-22],[0,-22],[0,-19],[0,-19],[-1,-35],[0,-19],[0,-23],[-1,-20],[0,-34],[-1,-30],[1,-27],[0,-25],[0,-25],[0,-40],[0,-5],[0,-26],[0,-49],[0,-19],[1,-39],[-1,-19],[0,-40],[1,-22],[0,-23],[0,-19],[1,-21],[0,-31],[0,-19],[0,-39],[0,-27],[0,-24],[0,-39],[0,-25],[0,-52],[0,-38],[0,-27],[0,-19],[0,-19],[0,-38],[0,-39],[-1,-20],[0,-20],[0,-26],[0,-20],[0,-18],[0,-46],[0,-1],[0,-18],[-1,-25],[0,-20],[0,-19],[-1,-22],[0,-20]],[[16092,66184],[-43,1],[-41,1],[-28,1],[-52,1],[-42,1],[-49,1],[-24,1],[-52,1],[-62,2],[-37,1],[-40,1],[-62,2],[-40,1],[-54,2],[-51,2],[-46,1],[-38,1],[-57,1],[-27,1],[-60,2],[-2,0],[-23,0],[-101,2],[-29,1],[-378,5],[-27,1],[-35,1],[-31,0],[-23,1],[-40,1],[-25,0],[-31,1],[-60,1],[-54,1],[-41,1],[-62,1],[-31,0],[-23,1],[-69,2],[-23,0],[-39,2],[-58,1],[-27,2],[-192,3],[-24,1],[-25,1],[-78,3],[-96,4]],[[13540,66246],[-28,-3],[-24,-3],[-45,-6],[-26,-3],[-22,-3],[-25,-3],[-37,-5],[-30,-1],[-32,-1],[-30,1],[-24,-1],[-45,0],[-48,0],[-25,0],[-46,-1],[-38,-1],[-40,0],[-36,-1],[-37,0],[-40,0],[-43,0],[-37,1],[-26,0],[-26,0],[-40,0],[-28,0],[-83,0],[-44,-1],[-45,0],[-44,-1],[-133,-2],[-45,-1],[-23,-1],[-65,-2],[-44,-2],[-43,-3],[-43,-2],[-44,-1],[-133,-3],[-52,-1],[-7,0],[-43,0],[-117,-3],[-124,-3],[-41,-1],[-39,-2],[-39,-1],[-121,-3],[-39,-2],[-71,-2],[-193,-7],[-35,-2],[-23,0],[-105,1],[-152,2],[-8,0],[-60,2],[-36,1],[-65,0],[-26,1],[-74,1],[-117,1],[-138,3],[-54,1],[-25,0],[-426,9],[-46,2],[-57,-2],[-26,1],[-74,1],[-34,0],[-30,1],[-31,0],[-77,0],[-31,1],[-32,1],[-63,1],[-32,1],[-24,1],[-106,2],[-35,1],[-34,0],[-34,1],[-32,0],[-31,0],[-42,1],[-51,1],[-34,1],[-30,1],[-24,0],[-54,1],[-33,1],[-29,2],[-43,-2],[-45,1],[-28,2],[-25,1],[-30,1],[-9,0],[-28,0],[-26,1],[-28,0],[-24,0],[-56,0],[-28,0],[-85,0],[-174,-1],[-39,1],[-39,1],[-27,0],[-24,0],[-2,0],[-38,0],[-24,0],[-31,1],[-27,0],[-42,0],[-89,1],[-74,1],[-142,1]],[[7290,66221],[74,31],[75,31],[385,159],[351,146],[172,71],[107,45],[201,83],[38,35],[31,30],[27,57],[15,46],[8,24],[7,23],[8,24],[11,32],[7,23],[32,97],[6,18],[37,46],[12,15],[16,20],[34,126],[-2,52],[-1,39],[-20,54],[-23,65],[-26,69],[-25,71],[-9,23],[16,73],[33,84],[38,96],[34,87],[64,163],[2,4],[24,24],[181,179],[144,308],[-1,180],[-16,32],[-50,105],[-1,2],[-66,138],[33,122],[18,65],[14,19],[24,33],[49,64],[30,41],[317,188],[26,15],[58,38],[25,16],[18,13],[66,43],[187,78],[110,128],[80,93],[12,17],[74,106],[22,31],[16,23],[64,49],[59,45],[48,19],[83,32],[49,20],[79,31],[66,45],[13,11],[98,79],[140,180],[127,98],[80,47],[84,48],[93,25],[68,18],[81,21],[85,23],[255,95],[111,31],[143,121],[15,48],[43,167],[140,239],[32,56],[1,18],[5,57],[-18,43],[-118,290],[-2,56],[39,75],[27,52],[54,67],[66,81],[4,5],[32,91],[7,22],[63,188],[-7,53],[-2,12],[3,68],[16,68],[33,131],[5,22],[14,57],[-6,27],[-11,53],[-16,72],[0,17],[2,83],[-5,13],[-47,126],[0,3],[10,94],[-27,54],[-53,107]],[[23774,67609],[0,-27],[-1,-26],[0,-31],[0,-8],[-1,-24],[0,-22],[0,-24],[-1,-29],[0,-20],[0,-19],[2,-22],[-1,-28],[0,-26],[-1,-18],[-3,-22],[0,-26],[0,-26],[-1,-53],[-1,-26],[-1,-26],[1,-18],[-1,-31],[-1,-40],[0,-26],[0,-21],[-1,-18],[2,-19],[0,-47],[-3,-188],[-3,-33],[0,-33],[-1,-23],[0,-38],[-3,-69],[-3,-76],[0,-39],[-1,-86],[-2,-122],[0,-80],[-1,-58]],[[23748,66041],[-199,0],[-27,0],[-24,1],[-33,0],[-24,3],[-31,1],[-16,0],[-37,1],[-27,0],[-130,3],[-55,1],[-40,0],[-42,1],[-42,1],[-125,3],[-125,2],[-83,2],[-42,0],[-62,1],[-87,2],[-2,0],[-37,1],[-102,2],[-41,1],[-63,1],[-63,1],[-41,1],[-84,1],[-27,1],[-102,2],[-41,0],[-42,1],[-42,1],[-41,0],[-42,1],[-84,2],[-29,0],[-96,2],[-41,1],[-42,1],[-42,1],[-62,1],[-42,1],[-89,2],[-36,1],[-83,1],[-84,1],[-63,1],[-41,0],[-63,1],[-45,0],[-45,1],[-52,0],[-41,0],[-63,1],[-62,0],[-42,0],[-62,1],[-43,0],[-82,1],[-42,0],[-42,1],[-41,0],[-42,1],[-42,-1],[-62,1],[-42,1],[-51,0],[-24,0],[-44,1],[-62,0],[-126,1],[-41,1],[-83,1],[-44,0],[-25,0],[-29,0],[-125,0],[-42,0],[-42,1],[-84,0],[-41,0],[-44,0],[-127,1],[-86,1],[-50,0],[-83,0],[-34,1],[-6,0],[-32,1],[-63,1],[-42,2],[-83,2],[-42,1],[-83,2],[-81,2],[-28,1],[-35,1],[-42,1],[-62,1],[-58,2],[-5,0],[-83,2],[-54,2],[-29,1],[-33,1],[-49,1],[-41,1],[-125,3],[-42,1],[-41,1],[-63,2],[-62,1],[-26,1],[-48,2],[-41,1],[-63,2],[-46,1],[-25,2],[-72,2],[-83,3],[-34,1],[-75,4],[-42,2],[-125,3],[-104,3],[-42,1],[-56,2],[-35,0],[-42,2],[-83,2],[-59,2],[-169,5],[-47,2]],[[88695,72948],[-1,-13],[-1,-14],[0,-6],[0,-8],[0,-9],[0,-9],[0,-14],[0,-33],[0,-33],[0,-9],[0,-38],[0,-24],[1,-79],[0,-20],[0,-53],[1,-31],[0,-20],[1,-35],[0,-28],[1,-36],[0,-37],[0,-51],[0,-8],[0,-6],[1,-6],[0,-5],[1,-12],[0,-28],[0,-43],[0,-72],[0,-1],[0,-11],[-1,-20],[1,-26],[-1,-39],[0,-41],[1,-34],[0,-20],[0,-32],[-1,-22],[0,-26],[0,-8],[0,-3],[0,-33],[-1,-13],[0,-40],[0,-33],[0,-86],[-1,-45],[1,-79],[0,-33],[0,-39],[0,-42],[0,-35],[0,-64],[0,-42],[0,-99],[0,-33],[1,-59],[1,-2],[0,-19],[0,-43],[0,-53],[0,-27],[1,-27],[0,-42],[0,-19],[0,-20],[-1,-6],[-9,-2],[10,-254],[-1,-5],[1,-75],[1,-31],[-1,-161],[2,-196],[1,-3],[0,-4],[0,-16],[0,-14],[2,-42],[0,-35],[0,-19],[1,-57],[0,-109],[0,-28],[0,-5],[0,-6],[0,-12],[0,-16],[1,-55],[0,-62],[-1,-72],[-1,-32],[0,-39],[-1,-40],[0,-30],[0,-43],[0,-2],[-1,-16],[0,-9],[0,-18],[0,-29],[0,-4],[0,-19],[0,-10],[-1,-22],[0,-23],[0,-20],[0,-16],[0,-16],[0,-21],[0,-65],[-1,-34],[1,-10],[0,-1],[0,-20],[0,-37],[0,-9],[0,-2],[0,-33],[0,-37],[0,-25],[0,-35],[0,-7],[-1,-20],[0,-20],[0,-12],[-1,-46],[0,-10],[0,-7],[-1,-23],[0,-6],[0,-9],[0,-4],[0,-20],[0,-22],[0,-14],[0,-6],[0,-26],[0,-2],[0,-31],[0,-5],[0,-19],[0,-73],[0,-77],[0,-39],[0,-87],[0,-27],[0,-3],[0,-9],[0,-39],[0,-61],[0,-43],[-1,-39],[0,-23],[0,-12],[0,-4],[0,-12],[0,-44],[0,-23],[-1,-65],[0,-23],[-1,-81],[1,-31],[0,-32],[-1,-2],[0,-4],[-1,-39],[0,-25],[0,-60],[0,-57],[0,-22],[0,-24],[-1,-46],[0,-56],[0,-57],[0,-57],[0,-33],[0,-53],[0,-22],[-1,-131],[-1,-28],[0,-17],[0,-11],[1,-26],[0,-24],[0,-18],[0,-34],[1,-37],[1,-90],[-1,-29],[0,-18],[0,-29],[0,-34],[0,-55],[0,-32],[0,-26],[0,-19],[0,-34],[0,-6],[0,-1],[0,-31],[0,-45],[2,-163],[0,-27],[0,-36],[1,-56],[0,-18],[0,-67],[0,-66],[3,-8],[-2,-12],[-1,-3],[0,-13],[0,-16],[1,-31],[0,-19],[0,-104],[0,-9],[0,-16],[1,-14],[0,-16],[0,-9],[-1,-44],[0,-15],[0,-8],[0,-20],[-1,-13],[0,-10],[0,-46],[0,-25],[0,-15],[0,-12],[0,-11],[-1,-23],[0,-4],[0,-4],[0,-25],[0,-38],[0,-32],[0,-13],[0,-35],[-1,-23],[0,-23],[0,-34],[0,-18],[0,-15],[0,-9],[-1,-40],[0,-17],[0,-4],[0,-22],[-1,-47],[0,-28],[0,-46],[0,-39],[0,-25],[0,-7],[0,-32],[0,-56],[-1,-22],[0,-18],[0,-32],[0,-16],[0,-20],[0,-23],[0,-18],[0,-47],[0,-31],[0,-7],[0,-49],[-1,-30],[1,-42],[0,-29],[0,-23],[0,-7],[0,-1],[0,-5],[0,-11],[1,-54],[-1,-58],[0,-27],[0,-27],[-1,-34],[0,-30],[0,-27],[2,-104],[1,-85],[1,-36],[0,-30],[0,-7],[0,-1],[-1,-78],[0,-6],[-1,-46],[-1,-82],[0,-4],[0,-20],[-1,-26]],[[88691,63574],[-34,-1],[-25,-1],[-43,-2],[-111,-4],[-37,-2],[-37,-1],[-111,-2],[-92,-1],[-56,-1],[-132,-3],[-68,0],[-129,-2],[-39,-1],[-3,0],[-32,-1],[-75,-1],[-37,-1],[-40,0],[-33,-1],[-44,-1],[-37,-1],[-105,-1],[-92,-2],[-56,-1],[-12,1],[-15,0],[-24,0],[-23,-2],[-105,-2],[-55,-1],[-60,-1],[-46,-1],[-33,0],[-96,-2],[-37,-1],[-39,-1],[-53,-1],[-38,0],[-74,-1],[-37,-1],[-74,-1],[-36,-1],[-38,-1],[-29,0],[-48,-1],[-74,-2],[-93,-1],[-90,-2],[-51,-1],[-50,-1],[-35,0],[-62,0],[-38,0],[-93,-1],[-44,0],[-97,0],[-26,0],[-31,0],[-26,-1],[-24,0],[-25,0],[-37,-1],[-111,-1],[-56,0],[-74,0],[-45,0],[-17,0],[-36,-1],[-93,0],[-74,0],[-37,0],[-74,0],[-99,0],[-24,0],[-75,1],[-154,0],[-99,0],[-97,0],[-78,1],[-49,0],[-56,0],[-25,0],[-74,1],[-83,0],[-65,0],[-45,1],[-29,0],[-192,1],[-69,0],[-22,0],[-296,-4],[-25,0],[-86,-1],[-36,-1],[-123,-1],[-99,-1],[-25,0],[-49,-1],[-25,0],[-25,-1],[-51,0],[-89,-1],[-53,-1],[-107,-1],[-53,-1],[-49,-1],[-36,0],[-25,0],[-33,0],[-26,-1],[-1,0],[-96,-1],[-25,0],[-74,-1],[-49,0],[-25,0],[-35,-1],[-53,-1],[-25,0],[-99,-1],[-24,-1],[-34,0],[-41,-1],[-74,-1],[-118,-1],[-25,0],[-37,-1],[-24,0],[-99,-2],[-49,-1],[-99,-1],[-25,0],[-27,-1],[-23,0],[-66,-1],[-173,-1],[-49,-1],[-74,0],[-50,-1],[-68,0],[-2,0],[-31,-1],[-32,0],[-25,0],[-54,0],[-43,-1],[-68,0],[-75,0],[-99,-1],[-36,0],[-37,0],[-41,-1],[-2,0],[-50,0],[-37,0],[-43,-1],[-32,0],[-55,0],[-38,-1],[-46,0]],[[79585,63478],[-32,0],[-37,0],[-25,0],[-24,0],[-25,0],[-37,-1],[-37,0],[-25,0],[-56,0],[-49,-1],[-59,0],[-23,0],[-111,-1],[-25,0],[-43,0],[-15,0],[-28,-1],[-50,0],[-49,0],[-25,0],[-38,-1],[-26,0],[-52,0],[-46,0],[-99,-1],[-49,0],[-100,0],[-82,0],[-43,8],[-68,18],[-55,14],[-41,11],[-1,0],[-24,4],[-47,0],[-62,0],[-68,-1],[-33,0],[-41,0],[-56,-1],[-92,-1],[-24,0],[-48,0],[-38,0],[-74,-1],[-111,-1],[-37,0],[-108,-1],[-95,0],[-25,0],[-49,-1],[-49,0],[-25,0],[-25,0],[-30,0],[-19,-1],[-108,0],[-77,-1],[-49,0],[-58,0],[-37,0],[-25,0],[-56,0],[-27,0],[-47,0],[-54,-1],[-70,0],[-25,0],[-19,0],[-6,0],[-24,0],[-35,-1],[-2,0],[-74,0],[-37,0],[-78,2],[-7,0],[-16,1],[-24,0],[-445,-2],[0,36],[-1,69],[0,35],[-1,57],[0,19],[-1,23],[0,19],[0,33],[0,22],[-1,23],[0,35],[0,26],[-1,46],[-1,46],[0,33],[0,19],[0,57],[0,69],[0,23],[0,34],[0,35],[9,22],[-6,17],[-3,26],[0,25],[-1,70],[0,32],[0,32],[-1,51],[-1,20],[0,19],[0,20],[0,21],[1,13],[0,10],[0,51],[1,83],[0,19],[0,23],[-1,102],[0,19],[0,39],[0,38],[0,38],[-1,24],[-2,49],[-1,32],[-2,57],[-2,37],[-1,32],[0,19],[-1,19],[-1,22],[0,14],[0,5],[-1,19],[-2,57],[-3,64],[-2,56],[-1,33],[-1,23],[-2,51],[-1,19],[-2,45],[-4,77],[-1,25],[-1,35],[-1,29],[-1,19],[-4,75],[-1,27],[-1,32],[-1,26],[-1,32],[-2,19],[-3,56],[-1,38],[-1,39],[-1,19],[0,24],[-1,21],[-1,32],[-2,32],[-1,20],[-2,52],[-1,31],[-1,25],[-2,52],[-2,58],[-1,25],[-1,19],[-2,52],[0,6],[0,12],[3,20],[0,50],[-1,37],[0,64],[-23,0],[-3,55],[-11,205],[-3,27],[-3,84],[-2,25],[-3,78],[-2,44],[-2,28],[-4,97],[-2,44],[0,19],[-1,26],[-2,44],[-4,73],[-2,47],[-1,20],[-1,29],[0,22],[-2,26],[-2,44],[-4,101],[-2,32],[-3,90],[-1,19],[-2,26],[0,1],[0,19],[-2,35],[-2,33],[-3,54],[-4,80],[0,5],[-2,22],[0,25],[-1,43],[-1,19],[-1,26],[-1,25],[-1,19],[0,19],[-1,37],[-1,26],[0,25],[-1,22],[0,25],[-1,23],[-3,76],[-4,129],[0,39],[-3,49],[-1,31],[-1,46],[-1,22],[-1,22],[-1,44],[-2,38],[-2,53],[-5,159],[-1,21],[-1,27],[-2,45],[-2,43],[-2,45],[-1,51],[-2,32],[0,22],[-4,76],[-1,33],[-2,38],[0,25],[-1,26],[-1,25],[-1,20],[-1,30],[-1,30],[-4,119],[-2,49],[-1,48],[-1,24],[-2,39],[-2,58],[-1,32],[-1,25],[-2,40],[-1,31],[-1,19],[0,12],[-1,16],[-1,30],[-1,25],[-3,58],[-1,18],[0,26],[-1,19],[-2,39],[-1,25],[-1,28],[-1,27],[-1,32],[-1,23],[-3,89],[-1,23],[-1,23],[-1,30],[-1,23],[-1,33],[-1,27],[-1,25],[-1,25],[-2,29],[-1,27],[-1,49],[-1,24],[-1,23],[-1,51],[0,20],[-2,37],[-1,26],[-1,25],[-1,32],[-1,31],[-1,23],[0,20],[-1,32],[0,19],[-1,57],[-1,39],[-1,39],[-1,32],[-1,26],[0,38],[0,45],[0,19],[0,57],[0,32],[0,19],[-1,29],[0,24],[-1,30],[-1,30],[-2,35],[-1,27],[-1,20],[-1,19],[-1,19],[-1,26],[-2,32],[-1,21],[-2,40],[-1,26],[-1,70],[-1,70],[-2,36],[0,28]],[[79585,63478],[8,-87],[0,-20],[5,-51],[1,-23],[3,-36],[0,-6],[2,-32],[4,-29],[6,-102],[9,-130],[5,-129],[2,-63],[3,-68],[1,-21],[5,-108],[7,-132],[1,-40],[3,-105],[7,-118],[7,-139],[-1,-31],[5,-90],[-20,0]],[[79648,61918],[-205,-1],[-185,-2],[-25,0],[-295,-1],[-106,-1],[-39,0],[-67,-1],[-38,0],[-29,0],[-119,1],[-178,2],[-79,7],[-32,3],[-98,8],[-61,4],[-26,0],[-75,0],[-39,1],[-61,0],[-221,0],[-105,0],[-314,-1],[-425,-1],[-100,0],[-23,0],[-93,-1],[-214,0],[-425,3],[-175,2],[-41,0],[-94,0],[-123,0],[-70,0],[-64,-1],[-32,0],[-86,-5],[-23,1],[-153,-1],[-427,-3],[-71,-1],[-238,-2],[-118,-1],[-53,0],[-87,-1],[-287,-2],[-310,-2],[-107,-1],[-131,-1],[-102,0],[-48,0],[-94,0],[-85,0],[-361,-3],[-65,-1],[-412,-4],[-328,-3],[-102,-1],[-97,-1],[-62,0],[-169,-1],[-93,-1],[-189,-2],[-234,-2],[-280,1],[-132,0],[-28,0],[-82,0],[-121,1],[-5,0],[-183,0],[-199,0],[-21,0],[-631,-3],[-118,1],[-2,0],[-27,0],[-267,0],[-425,3],[-99,-1],[-18,0],[-60,1],[-6,0],[-127,1],[-45,0],[-4,0],[-44,1],[-3,0]],[[67913,61906],[0,16],[0,7],[2,108],[1,134],[0,64],[1,66],[2,133],[0,37],[0,2],[0,25],[3,200],[0,21],[1,50],[1,133],[1,60],[2,132],[0,21],[0,25],[0,24],[0,1],[1,58],[1,58],[0,74],[0,20],[0,19],[1,92],[0,37],[8,223],[-1,262],[-1,217],[0,47],[-1,127],[0,70],[0,68],[0,34],[1,226],[0,39],[1,101],[1,122],[0,264],[0,2],[0,56],[-2,208],[-1,130],[-2,132]],[[45399,71339],[-2,-5],[-13,-7],[-28,-112],[0,-2],[-2,-7],[6,-5],[23,-12],[21,-45],[28,-100],[9,-40],[-16,-106],[-62,-102],[-63,-54],[-53,-36],[-41,-28],[-136,-92],[-107,-83],[-90,-76],[-94,-109],[-223,-150],[-192,-117],[-138,-102],[-162,-121],[-214,-137],[-107,-135],[-4,-13],[-1,-11],[-1,-13],[-2,-10],[-1,-12],[-1,-7],[-7,-62],[-5,-34],[-20,-8],[-23,-11],[-21,-8],[-24,-13],[-5,-3],[-19,-12],[-23,-19],[-19,-20],[-3,-2],[-19,-22],[-15,-18],[-14,-21],[-19,-30],[-19,-33],[-2,-5],[-8,-17],[-12,-17],[-4,-5],[-15,-25],[-21,-34],[-21,-36],[-33,-173],[91,-176],[91,-173],[-2,-29],[-5,-49],[0,-12],[-2,-164],[0,-22],[25,-33]],[[43560,68204],[38,-62],[10,-17],[41,-68],[9,-13],[21,-82],[30,-115],[0,-1],[-6,-22],[5,-5],[10,-9],[2,-2],[25,-31],[7,-59],[-2,-11],[-9,-47],[-28,-84],[-17,-38],[-15,-58],[-37,-82],[-62,-64],[-74,-49],[-93,-47],[-68,-15],[-161,-51],[-244,-77],[-108,-34],[-68,-11],[-29,-15],[-53,-32],[-124,-68],[-58,-31],[-22,-12],[-2,-2],[-2,-1],[-48,-37],[-119,-93],[-16,-12],[-44,-35],[-44,-54],[-11,-14],[-3,-60],[5,-7],[5,-6],[7,-10],[49,-31],[27,-8],[27,-21],[17,-13],[-1,-9],[-4,-32],[-7,-21],[-4,-10],[-5,-7],[-15,-18],[-22,-29],[-27,-26],[-40,-39],[-53,-61],[-25,-28],[-27,-16],[-36,-22],[-1,0],[-46,-25],[-25,-18],[-23,-17],[-19,-18],[-12,-12],[-147,-101],[-50,-40],[-43,-30],[-76,-54],[-64,-41],[-26,-15],[-232,-187],[-33,-40],[-10,-11],[-3,-3],[-20,-41],[-3,-26],[-4,-33],[-3,-27],[14,-54],[14,-32],[2,-5],[16,-37],[58,-88],[24,-37],[14,-54],[-4,-4],[-14,-59],[-1,-4],[-1,-3],[-7,-15],[-12,-26],[-64,-64],[-37,-26],[-49,-36],[-99,-61],[-57,-47],[-101,-56],[-34,-14],[-3,-2],[-4,-2],[-5,-2],[-66,-21],[-9,-5],[-83,1],[-64,39],[-29,46],[-2,1],[-12,8],[-51,31],[-65,25],[-34,7],[-17,4],[-67,5],[-8,1],[-17,1],[-6,-2],[-63,-20],[-4,-2],[-88,-45],[-191,-26],[-2,-1],[-93,-19],[-13,-1],[-67,-5],[-80,1],[-61,-31],[-4,0],[-69,-16],[-12,3],[-27,-3],[-5,-1],[-7,-1],[-108,-28],[-37,-6],[-7,3],[-60,0],[-127,3],[-99,8],[-205,21],[-94,8],[-72,3],[-76,-4],[-66,-15],[-15,-4],[-19,-7],[-73,-28],[-86,-25],[-246,-63],[-139,-34],[-33,-8],[-195,-38],[-1,-1],[-114,-42],[-63,-23],[-35,-18],[-28,-16],[-209,-91],[-206,-67],[-95,-28],[-16,-3],[-25,-5],[-19,1],[-41,-10],[-113,-47],[-59,-32],[-13,-6],[-110,-41],[-26,-9],[-7,-4],[-1,0],[-63,-27],[-58,-25]],[[36497,63969],[0,35],[1,39],[0,39],[0,25],[1,39],[2,139],[1,28],[0,43],[0,62],[-1,127],[1,31],[1,84],[0,32],[2,93],[1,59],[0,22],[1,65],[0,14],[0,243],[-29,0],[-22,2],[2,150],[0,19],[1,43],[3,66],[3,88],[0,19],[1,164],[0,72],[1,55],[6,102],[-35,16],[-131,3],[-53,3],[-113,2],[-36,0],[-30,0],[-57,0],[-29,1],[-29,0],[-45,3],[-280,-1],[-125,-1],[-88,1],[-69,0],[-34,0],[-47,0],[-23,3],[-42,-1],[-136,0],[-83,0],[-131,0],[-25,1],[-24,0],[-34,0],[-24,0],[-29,0],[-37,0],[-35,0],[-29,0],[-29,0],[-39,1],[-24,0],[-41,0],[-25,0],[-36,0],[-32,0],[-46,1],[-24,0],[-73,0],[-38,3],[-34,0],[-29,0],[-29,0],[-29,0],[-43,1],[-34,0],[-50,0],[-33,0],[-22,0],[-3,19],[5,17],[-6,21],[0,20],[0,20],[1,21],[0,28],[1,19],[1,32],[0,24],[1,32],[10,250],[4,56],[0,25],[2,31],[1,35],[1,30],[1,26],[1,26],[1,26],[2,53],[3,52],[1,26],[1,26],[1,26],[2,26],[1,26],[1,27],[1,18],[1,29],[2,33],[0,26],[3,52],[0,10],[1,16],[3,53],[1,26],[1,18],[0,2],[3,20],[2,31],[2,33],[1,46],[4,104],[1,24]],[[57477,68306],[-426,-5],[-72,-1],[-352,-5],[-429,-5],[0,-42],[2,-93],[1,-81],[0,-27],[1,-20],[3,-133],[7,-277],[4,-49],[2,-69],[6,-151],[5,-112],[4,-113],[6,-130],[0,-20],[6,-226],[0,-1],[0,-35],[-93,-1],[-33,-1],[-45,-1],[-23,0],[-56,-1],[-82,-1],[-25,-1],[-54,-1],[-27,0],[-34,-1],[-11,0],[-600,-9],[-188,-3],[-36,-1],[-39,0],[5,-96],[2,-39],[2,-62],[0,-6],[4,-106],[0,-2],[2,-33],[6,-94],[1,-30],[4,-34],[-1,-19],[1,-40],[1,-28],[0,-20],[1,-47],[-96,-2],[-131,-2],[-200,-5],[-422,-3],[-27,-2],[-294,-22],[-110,-8],[3,-109],[3,-54],[-12,-69],[-193,-5],[-102,-3],[-183,-2],[-50,1],[-84,-1],[-108,-2],[0,-50],[5,-93],[3,-71],[2,-53],[-83,-4],[-24,0],[-333,1],[-34,-2],[-6,-1],[-28,0],[-71,-1],[-109,-2],[-213,-4],[-63,-2],[-97,-1],[-263,-3],[-210,-2],[-81,-2],[-85,-2],[-180,-3],[-98,-2],[-403,-5],[-107,-2],[-100,-2],[-108,-1],[-108,-1],[-107,-1],[-105,-2]],[[49915,65435],[-4,95],[-2,53],[-2,70],[-4,109],[-2,67],[-58,-1],[-41,-1],[-35,-1],[-26,0],[-25,-1],[-23,0],[-122,-2],[-96,-2],[-45,0],[-33,-1],[-29,0],[-36,0],[-145,-2],[-34,0],[-28,0],[-287,-2],[-102,1],[-83,-1],[-28,0],[-2,26],[-1,7],[-4,92],[-3,51],[0,22],[-1,21],[0,19],[0,3],[-2,24],[-1,35],[0,19],[-2,21],[-1,55],[-3,133],[-2,135],[-2,20],[-5,136],[-22,0],[-1,264],[-2,80],[-5,140],[-5,40],[1,257],[0,6],[-1,268],[0,7],[0,13],[-1,79],[0,25],[3,138],[-15,266],[-210,-2],[-221,0],[-426,0],[-128,-2],[-221,-1],[-63,0],[-204,-1],[-459,-5],[-213,0],[-208,-2],[-73,0],[-162,-1],[-94,-1],[-50,0],[-70,0],[-58,1],[-45,1],[-84,0],[-51,0],[-42,0],[-64,1],[-53,1],[-183,-2],[-267,-3],[-37,0],[-44,1],[-77,2],[-44,-1],[-29,0],[-69,0],[-21,0],[-15,0],[-60,-2],[-107,2],[-110,1],[-28,0],[-25,0],[-164,-1],[-62,0],[-21,0],[-10,0],[-103,2],[-295,-2],[-18,0]],[[67913,61906],[0,-3],[-1,-51],[0,-14],[-2,-65],[-2,-132],[7,-165],[11,-104],[0,-137],[0,-81],[0,-48],[0,-134],[0,-54],[0,-82],[1,-127],[1,-131],[0,-114],[0,-21],[0,-54],[0,-2],[0,-26],[0,-43],[0,-6],[-1,-126],[0,-95],[0,-41],[1,-262]],[[67928,59788],[-42,0],[-26,1],[-26,-1],[-351,-7],[-29,0],[-3,0],[-225,0],[-38,1],[-78,0],[-56,0],[-25,0],[-61,0],[-58,0],[-68,0],[-74,-1],[-141,1],[-422,2],[-86,0],[-208,-1],[-23,0],[-105,2],[-56,0],[-158,0],[-208,2]],[[65361,59787],[-44,1],[-32,0],[-65,0],[-73,1],[-56,0],[-25,1],[-24,0],[-101,0],[-68,1],[-24,0],[-73,0],[-24,0],[-12,0],[-1,0],[-10,1],[-26,0],[-35,0],[-30,0],[-3,0],[-78,0],[-24,0],[-98,0],[-26,0],[-93,1],[-42,0],[-26,0],[-23,0],[-106,1],[-47,0],[-188,1],[-57,0],[-41,1],[-40,0],[-40,0],[-81,1],[-90,0],[-48,0],[-49,0],[-41,0],[-65,1],[-98,0],[-33,0],[-32,0],[-33,0],[-39,0],[-16,0],[-17,0],[-27,0],[-39,0],[-33,0],[-24,0],[-22,-3],[-29,0],[-26,1],[-24,0],[-28,2],[-43,0],[-89,1],[-25,0],[-35,0],[-49,0],[-113,1],[-49,0],[-41,0],[-37,0],[-59,0],[-67,1],[-47,0],[-31,0],[-44,0],[-29,0],[-36,0],[-33,0],[-46,0],[-40,0],[-37,0],[-38,0],[-103,1],[-48,0],[-45,0],[-52,0],[-65,0],[-42,0],[-29,0],[-35,0],[-48,1],[-39,0],[-117,0],[-70,0],[-36,0],[-36,0],[-39,0],[-38,1],[-25,0],[-41,0],[-23,0],[-54,0],[-30,0],[-55,0],[-43,1],[-64,0],[-27,0],[-35,0],[-30,1],[-46,0],[-28,0],[-57,1],[-26,0],[-60,1],[-50,0],[-30,0],[-42,1],[-31,0],[-36,0],[-41,-1],[-35,-2],[-23,0],[-33,0],[-73,0],[-32,0],[-62,0],[-23,0],[-49,1],[-22,0],[-90,0],[-68,0],[-26,0],[-70,0],[-38,0],[-50,0],[-29,-1],[-41,0],[-34,0],[-97,0],[-26,0],[-27,1],[-62,-1],[-50,0],[-39,0],[-28,0],[-45,0],[-31,0],[-86,0],[-34,1],[-23,-1],[-71,0],[-66,0],[-35,0],[-33,0],[-43,1],[-80,0],[-41,0],[-47,0],[-39,0],[-36,0],[-67,0],[-27,0],[-45,0],[-31,0],[-41,0],[-33,-1],[-67,-1],[-34,-1],[-23,0],[-32,-1],[-51,0],[-44,-1],[-23,0],[-22,-1],[-28,0],[-35,10],[-34,1],[-33,0],[-89,1],[-46,1],[-71,0],[-64,1],[-32,0],[-31,0],[-31,0],[-25,0],[-41,0],[-40,-1],[-40,0],[-41,0],[-45,1],[-60,0],[-24,0],[-33,1],[-43,0],[-314,0],[-2,0],[-115,1],[-17,0],[-417,-10],[-77,-2],[-145,2],[-134,1],[-64,0],[-40,0],[-237,1],[-149,0],[-103,3],[-30,0],[-37,1],[-43,0],[-101,2],[-55,1],[-63,0],[-64,-1],[-41,-1],[-35,-1],[-129,-4],[-16,0],[-77,-3],[-42,-1],[-25,0],[-102,-1],[-46,0],[-129,-1],[-23,0],[-181,1],[-43,0],[-161,-1],[-50,0],[-63,0],[-143,0],[-118,-1],[-57,0],[-33,-2],[-115,-1],[-35,0],[-185,-1],[-192,-2]],[[52597,59796],[-23,9],[-31,-1],[-37,-2],[-32,-1],[-58,0],[-48,-1],[-29,0],[-23,-1],[-29,-1],[-55,-1],[-22,-1],[-26,0],[-26,0],[-35,0],[-27,-1],[-56,0],[-42,-1],[-33,0],[-30,0],[-81,-1],[-60,0],[-37,0],[-310,-4],[-116,0],[-17,0],[-7,-1],[-22,0],[-56,-1],[-10,0],[-98,0],[-423,-3],[-355,-2],[-280,-6],[-1,64],[-4,125],[-2,58],[-5,26],[-4,108],[-1,157],[0,3],[-3,79],[-1,35],[-1,35],[0,20],[-1,27],[-1,39],[-1,23]],[[50038,60575],[-5,186],[-1,82],[-2,45],[-5,166],[-4,119],[-9,67],[-2,127],[4,29],[1,80],[-1,21],[0,6],[-4,196],[-3,99],[0,33],[0,68],[-5,264],[1,48],[1,23],[-2,57],[-1,134],[0,128],[0,64],[0,70],[-9,261],[-5,144],[-1,15],[-1,52],[-2,57],[-8,259],[-2,99],[-6,164],[-2,132],[-2,122],[-9,194],[-1,26],[0,1],[0,18],[-3,205],[-1,111],[-8,148],[-3,97],[-4,105],[-3,100],[-1,44],[-3,106],[-1,18],[-2,29],[-11,167],[2,74]],[[50038,60575],[-140,0],[-63,1],[-217,-3],[-143,-1],[-251,-2],[-137,-1],[-5,0],[-34,0],[-122,-1],[-61,-1],[-5,0],[-73,0],[-20,-1],[-188,-1],[-14,0],[-328,-3],[-69,-1],[-606,-4],[-51,-1],[-53,-1],[-55,0],[-29,-1],[-35,0],[-40,0],[-78,-1],[-54,-1],[-67,0],[-330,-5],[-36,-1],[-34,-1],[-36,0],[-35,-1],[-28,0],[-32,-1],[-22,-1],[-71,-1],[-35,0],[-50,-1],[-42,0],[-34,0],[-52,-1],[-26,-1],[-23,0],[-25,0],[-46,-1],[-30,-1],[-44,-1],[-58,-1],[-34,-1],[-44,0],[-24,-1],[-60,-1],[-34,0],[-5,0],[-34,-1],[-30,0],[-27,-1],[-26,0],[-30,0],[-31,-1],[-32,0],[-27,-1],[-25,0],[-29,0],[-71,-1],[-34,0],[-23,-1],[-23,0],[-24,0],[-63,-1],[-1,0],[-112,-2],[-26,0],[-32,0],[-44,-1],[-40,0],[-50,-3],[-28,0],[-40,-1],[-35,-1],[-36,0],[-30,-1],[-90,-1],[-28,-1],[-3,0],[-45,-1],[-43,-1],[-82,-1],[-42,-1],[-27,0],[-27,-1],[-27,0],[-25,-1],[-71,-1],[-49,0],[-51,-1],[-238,-2],[-170,-5],[-38,1],[-49,-1],[-25,0],[-36,0],[-96,-1],[-32,0],[-38,-1],[-32,0],[-79,-1],[-31,0],[-42,-1],[-58,0],[-25,-1],[-44,0],[-24,0],[-23,0],[-29,-1],[-24,0],[-51,-1],[-84,-1],[-28,0],[-59,0],[-43,-1],[-91,0],[-33,-1],[-35,0],[-78,-1],[-24,0],[-46,-3]],[[42492,60484],[-41,-1],[-32,0],[-41,-1],[-95,-1],[-111,-1],[-52,0],[-119,-1],[-130,-1],[-25,0],[-178,-1],[-14,1],[-18,0],[-123,-2],[-40,0],[-26,0],[-3,0],[-182,0],[-27,-1],[-73,-1],[-82,0],[-123,-1],[-143,-1],[-34,-1],[-155,-1],[-65,0],[-169,-1],[-209,0],[-156,-1],[-24,0],[-2,77],[-1,36],[-1,72],[-1,20],[0,20],[-1,25],[0,6],[-1,59],[0,19],[-2,79],[-1,33],[-1,59],[-1,22],[-2,89],[-2,72],[-1,39],[-1,45],[0,27],[0,26],[-1,20],[-4,48],[-2,89],[-1,88],[-2,59],[-3,118],[0,39],[0,19],[-3,76],[-1,45],[0,46],[-2,99],[-5,153],[0,19],[0,26],[-2,53],[-1,85],[-4,26],[1,40],[0,30],[-1,92],[-44,8],[-365,-5],[-95,-2],[-104,-2],[-126,-3],[-96,1],[-122,0],[-159,0],[-103,0],[-6,0],[-207,1],[-32,0],[-28,0],[-48,-1],[-63,-2],[-33,0],[-57,-1],[-138,-4],[-32,-1],[-49,-1],[-32,0],[-82,-3],[-32,0],[-33,0],[-45,0],[-115,1],[-129,1],[-33,1],[-23,0],[-23,-2],[-24,-2],[-48,2],[-66,1],[-32,1],[-51,2],[-58,1],[-33,1],[-63,2],[-24,0],[-24,1],[-56,1],[-49,1],[-114,2],[-48,1],[-52,1],[-32,5],[-26,2],[-63,0],[-100,1],[-56,0],[-40,0],[-93,2],[-32,1],[-36,1],[-64,1],[-48,-1],[-32,0],[-81,0],[-32,0],[-32,-1],[-49,-2],[-30,-1],[-27,-1],[-22,-1],[-84,-1],[-36,1],[-49,0],[-29,0],[-41,-1],[-48,0],[-28,2],[-37,0],[-60,1],[-41,1],[-74,2]],[[35335,62575],[37,9],[59,15],[45,12],[4,2],[2,0],[6,3],[80,41],[136,100],[36,40],[11,31],[7,104],[15,26],[14,24],[51,61],[49,51],[60,46],[43,32],[98,51],[37,19],[27,28],[10,19],[5,48],[-6,22],[0,1],[13,104],[1,10],[2,1],[1,2],[8,35],[27,85],[13,47],[2,8],[3,21],[2,19],[-1,41],[1,2],[5,11],[7,12],[10,25],[15,31],[10,16],[23,22],[38,30],[5,4],[27,18],[5,4],[1,0],[59,36],[32,14],[27,11]],[[35335,62575],[-48,-12],[-12,-3],[-59,-18],[-85,-26],[-123,-45],[-162,-78],[-36,-18],[-47,-22],[-114,-64],[-194,-121],[-30,-19],[-31,-19],[-33,-25],[-66,-47],[-60,-32],[-11,-6],[-13,-10],[-10,-9],[-17,-14],[-1,-2],[-39,-60],[-13,-9],[-12,-8],[-1,-1],[-3,-2],[-2,-2],[-3,-3],[-2,-2],[-1,-1],[-35,-46],[-50,-38],[-47,-16],[-3,-1],[-3,-1],[-1,-1],[-44,-22],[-8,-1],[-69,-5],[-74,-8],[-7,-2],[-10,-4],[-19,-6],[0,-1],[-26,-12],[-51,-24],[-3,-2],[-63,-21],[-78,-27],[-20,-4],[-29,-7],[-65,-15],[-109,-33],[-118,-35],[-10,-1],[-116,-14],[-12,-2],[-28,-6],[-34,-6],[-50,-10],[-59,-22],[-51,-28],[-69,-53],[-44,-38],[-39,-47],[-11,-21],[-17,-31],[-20,-51],[-32,-51],[-28,-35],[-19,-34],[-1,-2],[0,-3],[1,-3],[1,-3],[3,-8],[1,-3],[-42,-80],[-5,-46],[9,-32],[13,-29],[24,-30],[19,-52],[-5,-51],[-13,-43],[-39,-59],[-3,-5],[0,-1],[-15,-27],[-9,-16],[-21,-19],[-43,-23],[-29,-24],[-2,-1],[-4,-5],[-2,-17],[7,-15],[-7,-26],[-22,-19],[-80,-45],[-47,-37],[-36,-37],[-40,-45],[-14,-27],[-1,-1],[-7,-34],[14,-17],[7,-8],[5,-24],[-5,-92],[-5,-44],[-28,-40],[-6,-5],[-17,-15],[-20,-17],[-30,-25],[-131,-117],[-162,-146],[-121,-81],[-2,-2],[-26,-20],[-18,-20],[-18,-20],[-29,-16],[-37,-22],[-2,-1],[-32,-11],[-18,-3],[-101,-21],[-79,-32],[-202,-307],[-107,-172],[-67,-123],[-6,-10],[-51,-28],[-16,-9],[-8,-4],[-198,-70],[-13,-1],[-4,0],[-114,-9],[-27,-4],[-62,-9],[-59,-1],[-32,-1],[-81,-11],[-27,-8],[-59,-17],[-3,-1],[-16,-8],[-63,-30],[-21,-7],[-29,-10],[-103,-49],[-21,-23],[-27,-28],[-1,-1],[-59,-88],[-43,-89],[-1,-1],[-1,-3],[-2,-3],[-2,-3],[-2,-2],[-3,-3],[-3,-2],[-2,-2],[-1,-1],[-110,-75],[-23,-15],[-2,-1],[-3,-2],[-3,-2],[-4,-1],[-3,-2],[-1,0],[-148,-49],[-3,-1],[-4,-1],[-4,-1],[-1,0],[-112,-17],[-6,-1],[-34,-50],[-29,-42],[-12,-14],[-8,-11]],[[29220,58025],[-2,0],[-22,0],[-30,0],[-192,0],[-50,0],[-109,1],[-3,0],[-46,0],[-186,5],[-157,4],[-328,9],[-87,2],[-402,9],[-260,6],[-347,8],[-102,3],[-355,9],[-35,0],[-29,1],[-48,2],[-56,1],[-25,1],[-39,2],[-24,1],[-37,1],[-57,3],[-41,1],[-204,1],[-131,0],[-26,0],[-25,0],[-38,1],[-424,5],[-266,2],[-237,2],[-115,0],[-165,2],[-251,2],[-20,0],[-3,0],[-67,1],[-12,0],[-66,0],[-94,1],[-37,0],[-139,2],[-12,0],[-204,1],[0,99],[0,7],[1,71],[0,1],[0,115],[3,22],[3,196],[5,272],[2,107],[0,42],[1,35],[2,139],[2,80],[0,20],[0,21],[1,25],[1,33],[0,28],[2,66],[1,26],[1,33],[0,21],[1,31],[1,52],[1,37]],[[23643,59693],[0,54],[5,174],[3,108],[2,36],[0,54],[3,80],[1,44],[1,55],[6,207],[4,117],[1,21],[2,77],[1,37],[0,19],[1,38],[1,27],[0,26],[1,28],[1,50],[2,73],[1,61],[0,30],[1,30],[0,29],[0,6],[2,22],[1,52],[0,33],[1,32],[1,40],[1,62],[0,37],[1,40],[0,19],[0,38],[2,76],[0,1],[0,21],[0,34],[0,5],[1,22],[0,35],[0,28],[1,27],[0,17],[0,4],[0,31],[1,26],[0,41],[0,27],[1,27],[0,29],[0,28],[0,26],[1,40],[1,96],[1,23],[0,36],[0,22],[0,20],[0,22],[2,41],[0,22],[-1,37],[1,28],[0,30],[-1,147],[-4,72],[1,32],[1,45],[2,24],[1,76],[0,91],[4,155],[0,20],[0,27],[0,19],[1,43],[0,19],[0,29],[0,21],[-1,23],[1,31],[0,26],[0,20],[0,20],[1,32],[0,18],[0,32],[0,44],[1,2],[1,24],[-4,23],[4,126],[3,21],[-1,72],[1,35],[0,26],[0,33],[1,19],[-1,20],[1,26],[1,33],[-1,26],[1,32],[1,20],[0,20],[0,26],[1,19],[0,34],[0,27],[2,44],[0,26],[0,31],[0,26],[0,21],[2,21],[-2,24],[2,38],[-1,19],[1,40],[0,31],[1,33],[0,30],[1,18],[0,20],[0,19],[0,18],[1,21],[1,24],[0,18],[0,19],[0,19],[0,24],[1,19],[0,54],[1,33],[-1,21],[2,22],[-1,26],[1,21],[2,96],[0,35],[0,12],[0,31],[1,26],[1,53],[0,13],[0,12],[1,48],[2,85],[3,99],[0,19],[0,25],[2,53],[0,26],[1,26],[1,52],[0,26],[1,52],[1,27],[0,26],[1,26],[0,26],[1,42],[0,2],[6,71],[0,51]],[[13540,66246],[-2,-133],[0,-19],[0,-19],[-1,-32],[0,-26],[-1,-36],[-1,-12],[-1,-11],[-1,-18],[-1,-25],[0,-26],[-1,-19],[-1,-54],[-2,-35],[0,-24],[0,-20],[-1,-34],[-1,-24],[-2,-37],[-1,-28],[0,-21],[-1,-30],[-1,-21],[0,-22],[0,-22],[-3,-27],[1,-25],[-1,-21],[-2,-70],[-2,-49],[0,-36],[0,-23],[-4,-159],[0,-11],[-2,-80],[0,-4],[-4,-123],[0,-1],[1,-38],[0,-18],[0,-19],[0,-20],[-1,-59],[0,-19],[-1,-20],[-1,-28],[-1,-24],[-2,-78],[0,-39],[-1,-58],[0,-20],[0,-22],[0,-22],[0,-67],[0,-2],[1,-61],[-6,-161],[-4,-108],[-3,-147],[0,-108],[-4,-147],[-1,-19],[-12,-48],[2,-74],[7,-131],[0,-19],[0,-24],[-1,-21],[-1,-57],[-1,-27],[0,-44],[-1,-41],[-1,-22],[0,-20],[-1,-20],[0,-32],[0,-28],[-1,-27],[0,-32],[0,-23],[-2,-20],[-5,-107],[0,-30],[4,-61],[0,-18],[-1,-23],[-1,-47],[-1,-57],[-1,-27],[-1,-31],[0,-23],[-2,-64],[-2,-39],[-1,-111],[-2,-122],[0,-11],[-3,-182],[1,-68],[10,-32],[-2,-68],[-1,-142],[-2,-74],[-1,-42],[-5,-57],[-2,-18],[-2,-103],[-1,-53],[-5,-243],[-1,-13],[0,-1],[-2,-83],[-3,-152],[-2,-98],[-1,-64],[-1,-45],[-1,-22],[-1,-74],[-3,-115],[-2,-95],[-1,-62],[-1,-70],[-3,-101],[2,-32],[0,-2],[0,-16],[-1,-21],[-1,-42],[-1,-27],[-1,-28]],[[13419,59839],[-2,-31],[-1,-26],[0,-19],[-1,-20],[-1,-29],[-3,-171],[-1,-79],[0,-7],[-1,-26],[-5,-211],[-5,-31],[-2,-86],[-2,-178],[0,-19],[-1,-51],[0,-1],[-4,-99],[0,-8],[-1,-31],[-1,-32],[-4,-95],[-10,-265],[-2,-81],[-3,-52]],[[13369,58191],[-36,0],[-65,0],[-66,1],[-75,0],[-53,1],[-23,0],[-114,1],[-69,0],[-56,1],[-71,0],[-24,0],[-318,2],[-219,3],[-123,2],[-5,0],[-26,1],[-29,0],[-61,0],[-57,1],[-36,1],[-30,0],[-24,0],[-29,1],[-24,0],[-32,0],[-26,0],[-35,0],[-34,1],[-30,0],[-51,1],[-27,0],[-26,0],[-36,0],[-24,1],[-43,0],[-4,0],[-19,0],[-49,1],[-30,0],[-22,1],[-58,0],[-36,1],[-54,0],[-31,1],[-53,0],[-33,1],[-25,0],[-45,0],[-26,0],[-26,0],[-35,1],[-24,0],[-24,0],[-32,0],[-36,0],[-34,1],[-31,0],[-38,0],[-28,1],[-32,0],[-31,1],[-41,0],[-53,1],[-24,0],[-35,0],[-52,1],[-61,0],[-33,1],[-30,0],[-26,0],[-85,1],[-75,0],[-41,0],[-1,0],[-37,0],[-23,1],[-129,0],[-28,1],[-58,0],[-44,1],[-66,0],[-39,0],[-93,1],[-46,0],[-110,1],[-30,0],[-145,1],[-29,0],[-80,2],[-35,-1],[-158,1],[-80,1],[-37,0],[-118,2],[-92,0],[-67,0],[-24,0],[-31,1],[-29,0],[-38,0],[-34,1],[-66,0],[-29,0],[-77,1],[-36,1],[-57,1],[-27,0],[-64,2],[-66,0],[-1,0],[-40,1],[-40,1],[-31,0],[-26,0],[-28,1],[-37,0],[-76,2],[-23,0],[-73,0],[-42,1],[-35,0],[-41,1],[-24,0],[-24,1],[-41,0],[-32,1],[-49,1],[-56,1],[-99,2],[-36,0],[-26,1],[-39,1],[-33,1],[-36,0],[-29,0],[-24,1],[-29,0],[-37,0],[-27,0],[-30,1],[-24,0],[-32,0],[-25,1],[-24,0],[-37,0],[-28,1],[-25,0],[-41,0],[-33,0],[-32,1],[-32,0],[-59,0],[-24,0],[-54,0],[-52,0],[-97,1],[-47,0],[-23,1],[-60,0],[-26,1],[-57,0],[-30,0],[-24,0],[-28,1],[-24,0],[-41,0],[-32,0],[-31,1],[-69,1],[-300,3],[-1,0],[-152,3],[-96,2],[-154,3],[-80,1],[-27,-1],[-34,0],[-26,2],[-34,0],[-54,1],[-24,0],[-148,0],[-197,2],[-23,2],[-47,1],[-74,0],[-74,1],[-29,0],[-112,2],[-30,0],[-35,0],[-72,-1],[-73,3],[-25,0],[-48,2],[-35,-1],[-29,0],[-23,1],[-30,0],[-32,0],[-56,1],[-37,0],[-36,1],[-92,2],[-30,0],[-66,1],[-36,1],[-32,0],[-31,1],[-3,0],[-22,0],[-50,0],[-48,1],[-24,1],[-48,0],[-29,1],[-176,2],[-26,0],[-51,1],[-43,0],[-37,1],[-59,0],[-32,1],[-189,-1],[-60,-4],[-6,-1],[-23,7],[-40,-1],[-65,1],[-24,0],[-24,1],[-339,-2],[-52,2],[-24,1],[-52,0],[-156,2],[-35,0],[-31,-3],[-27,2],[-22,0],[-24,2],[-79,0],[-49,1],[-112,0],[-27,0],[-27,-1],[-30,1],[-31,0],[-106,0],[-38,0],[-38,0],[-65,1],[-45,0],[-25,0],[-103,-1],[-47,1],[-1,0],[-33,0],[-23,0],[-23,7],[-62,0],[-26,0],[-27,1]],[[170,58324],[-11,23],[-27,202],[34,118],[7,25],[12,51],[9,42],[-1,103],[-49,82],[105,157],[100,68],[124,150],[39,96],[-34,70],[-16,34],[-15,33],[0,4],[3,117],[0,28],[40,79],[60,120],[391,557],[87,250],[4,10],[99,144],[43,41],[211,206],[132,128],[7,3],[244,96],[153,60],[144,100],[16,13],[10,7],[262,56],[84,4],[40,9],[143,8],[9,4],[27,0],[105,11],[77,22],[40,13],[64,6],[29,11],[45,15],[57,32],[34,19],[15,16],[79,82],[2,3],[50,54],[6,7],[30,29],[4,101],[-13,30],[-41,78],[-29,40],[-48,47],[-43,55],[-37,40],[-42,62],[-27,24],[-3,3],[-35,64],[-4,14],[-34,66],[-11,192],[14,36],[49,124],[11,27],[75,118],[90,140],[94,148],[17,97],[40,106],[-14,56],[12,71],[3,16],[-12,29],[-10,23],[-18,42],[-52,125],[-11,26],[-164,160],[-149,147],[-43,42],[-222,65],[-191,70],[-70,77],[-2,167],[50,64],[57,72],[85,48],[74,41],[25,13],[0,1],[144,80],[81,46],[75,42],[30,34],[82,93],[37,42],[47,54],[86,96],[53,61],[238,200],[292,99],[380,130],[207,71],[99,33],[44,8],[194,33],[60,10],[64,11],[82,14],[377,64],[91,14],[117,17],[28,5],[57,22],[38,12],[32,8],[31,6],[52,10],[27,2],[38,2],[51,3],[343,-5],[95,4],[80,3],[137,-1],[84,-5],[73,-5],[19,-2],[181,-21],[23,-2],[76,-7],[54,3],[65,4],[124,15],[38,9]],[[23643,59693],[-122,1],[-299,6],[-41,1],[-33,1],[-192,3],[-33,1],[-1,0],[-34,1],[-175,2],[-180,3],[-63,1],[-124,1],[-167,3],[-194,5],[-39,0],[-136,1],[-230,0],[-166,3],[-140,2],[-180,1],[-195,-1],[-152,0],[-60,0],[-210,2],[-209,0],[-1,0],[-515,3],[-80,-1],[-33,0],[-105,1],[-67,0],[-140,1],[-127,1],[-42,-1],[-25,0],[-35,1],[-265,0],[-254,0],[-97,2],[-370,11],[-27,1],[-23,1],[-26,1],[-86,2],[-212,6],[-63,2],[-29,0],[-26,3],[-315,6],[-214,3],[-43,1],[-77,1],[-91,1],[-201,1],[-204,1],[-30,1],[-199,2],[-69,-2],[-155,0],[-108,2],[-18,1],[-174,4],[-27,1],[-364,8],[-189,4],[-65,2],[-2,0],[-342,7],[-170,4],[-373,12],[-97,-1],[-72,1],[-183,4],[-169,3],[-122,4],[-128,4]],[[88691,63574],[-1,-31],[-2,-223],[-1,-21],[-3,-92],[-1,-22],[-1,-55],[-1,-81],[0,-7],[-1,-44],[-4,-176],[0,-33],[0,-10],[-1,-61],[-3,-152],[0,-45],[-1,-39],[-2,-95],[-2,-74],[0,-32],[-1,-25],[0,-37],[-1,-94],[-1,-32],[-1,-25],[-7,-213],[0,-47],[-1,-81],[-3,-201],[-1,-20],[0,-30],[1,-72],[-2,-86],[-3,-117],[0,-33],[-1,-37],[-1,-32],[-1,-27],[0,-33],[-1,-37],[-2,-58],[1,-10],[-1,-21],[-1,-20],[-3,-216],[-3,-139],[-3,-118],[-3,-110],[-1,-122],[-1,-21],[-2,-67],[-2,-125],[-1,-96],[-2,-82],[0,-6],[0,-50],[0,-25],[0,-1],[0,-76],[-1,-2],[-2,-70],[-1,-47],[-3,-186],[-1,-81],[-1,-13],[0,-22],[-1,-58],[-3,-195],[-2,-112],[0,-32],[-2,-125],[-2,-115],[-2,-148],[0,-33],[-1,-96],[-3,-20],[-1,-12],[0,-15],[-1,-29],[0,-21],[0,-40],[-2,-80],[-3,-183],[-2,-130],[-3,-143],[-2,-126],[-2,-129],[-4,-83],[1,-12],[1,-25],[0,-44],[0,-61],[-1,-46],[-3,-276],[0,-2],[0,-55],[-1,-104],[0,-1],[-1,-72],[-1,-25],[-1,-134],[0,-50],[-1,-78],[-2,-138],[-2,-268],[-1,-137],[-2,-238],[-1,-167],[-1,-124],[-1,-189],[0,-70],[1,-63],[1,-1],[0,-1],[0,-8],[0,-200],[0,-1],[0,-4],[-1,-37],[-1,-61],[-3,-122],[-1,-26],[-2,-142],[-1,-25],[-1,-38],[-1,-67],[1,-19],[0,-123],[0,-105],[0,-23],[0,-48],[0,-85],[0,-30],[0,-106],[0,-76],[0,-67],[-1,-49],[0,-4],[-1,-26],[-1,-72],[0,-11],[0,-18],[-1,-71],[-1,-94],[0,-21],[-1,-49],[-1,-95],[-1,-73],[0,-33],[-1,-85],[-1,-103],[-1,-105]],[[88538,52590],[-85,-1],[-65,-1],[-59,0],[-42,-1],[-97,-1],[-316,-3],[-82,-1],[-242,-3],[-87,-1],[285,-131],[118,-53],[132,-62],[-220,0],[-676,-3],[-165,-1],[-43,-2],[-229,2],[5,23],[9,43],[9,40],[5,27],[10,52],[12,53],[-144,-2],[-75,0],[-49,0],[-35,-2],[-142,-2],[-77,-2],[-32,0],[-36,-1],[-73,-1],[-174,-3],[-31,0],[-14,0],[-63,4],[-11,0],[-546,-2],[-69,-2],[-87,0],[-50,0],[-96,0],[-100,0],[-79,0],[-26,0],[-24,0],[-77,0],[-88,-1],[-104,0],[-72,0],[-54,1],[-40,0],[-97,-1],[-68,1],[-70,0],[-42,0],[-75,-1],[-28,0],[-42,0],[-82,0],[-30,0],[-41,1],[-118,-1],[-37,-1],[-160,4],[-244,-3],[-45,-1],[-23,0],[-64,0],[-66,0],[-56,-1],[-24,0],[-80,0],[-53,-1],[-96,0],[-85,0],[-78,-1],[-108,0],[-24,0],[-85,-1],[-86,0],[-48,0],[-31,0],[-47,-1],[-41,0],[-70,-1],[-77,0],[-118,-1],[-46,-1],[-39,0],[-28,0],[-109,-1],[-126,0],[-64,-1],[-65,-1],[-75,0],[-30,-1],[-80,0],[-112,-1],[-31,0],[-102,-1],[-36,0],[-65,-1],[-108,0],[-110,0],[-100,0],[-60,0],[-83,-1],[-73,0],[-47,0],[-28,0],[-54,-1],[-63,0],[-74,0],[-141,-1],[-173,0],[-44,0],[-1,0]],[[79541,52533],[-1,209],[-1,52],[-1,39],[0,2],[-3,52],[-1,32],[-4,99],[-1,23],[1,1],[3,18],[0,21],[0,20],[0,18],[-1,20],[-1,21],[0,28],[-1,64],[-1,68],[-4,196],[0,63],[-2,136],[-4,125],[0,6],[0,45],[-2,219],[-4,265],[-2,127],[-1,136],[-1,29],[-1,31],[0,5],[-4,326],[-1,260],[0,74],[0,1],[0,50],[0,53],[-2,221],[-7,25],[-1,109],[0,1],[-1,120],[0,139],[-2,131],[-3,204],[-7,314],[0,74],[-1,55],[0,14],[0,13],[-1,69],[0,48],[-3,69],[-1,194],[-12,44],[-2,91],[-2,129],[-5,262],[-1,133],[0,95],[-1,33],[-4,131],[-1,56],[-1,74],[-1,66],[-2,71],[-4,184],[-1,50],[0,91],[139,2],[157,2],[0,39],[-3,225],[-5,131],[-1,42],[-1,49],[-1,42],[-5,266],[-1,18],[0,2],[-4,244],[0,21],[-5,246],[-3,196],[-1,62],[0,26],[-1,39],[-2,99],[0,25],[-1,73],[-3,23],[-1,53],[-2,53],[-1,35],[-2,34],[-2,61],[-3,56],[-1,28],[-2,68],[0,21],[-5,216],[-4,65],[-3,62],[-4,75],[0,55],[-7,132],[-1,24],[-1,27],[-3,76],[-2,44],[-4,84]],[[42492,60484],[1,-52],[2,-44],[0,-19],[1,-40],[1,-37],[1,-19],[1,-29],[0,-20],[0,-3],[0,-18],[1,-18],[0,-37],[1,-20],[1,-18],[0,-20],[2,-42],[0,-27],[1,-49],[1,-25],[0,-26],[0,-19],[1,-28],[0,-28],[0,-19],[1,-42],[1,-33],[1,-20],[0,-24],[1,-45],[1,-45],[1,-33],[2,-47],[0,-29],[1,-21],[0,-25],[1,-23],[1,-22],[1,-45],[1,-68],[0,-24],[1,-26],[1,-32],[1,-49],[1,-31],[0,-24],[0,-25],[2,-52],[0,-20],[1,-40],[0,-22],[0,-20],[0,-20],[-1,-75],[6,-198],[-59,0],[2,-78],[0,-13],[1,-37],[1,-36],[4,-152],[3,-129],[0,-2],[3,-102],[0,-5],[1,-28],[1,-45],[5,-79],[0,-22],[2,-49],[1,-55],[2,-73],[2,-67],[2,-76],[0,-1],[1,-22],[1,-26],[1,-22],[0,-21],[1,-24],[2,-73],[1,-89],[1,-18],[1,-150],[4,-192],[7,-47]],[[42523,56914],[-7,-4],[-18,-10],[-5,0],[-23,-1],[-23,9],[-20,12],[-10,29],[13,24],[-1,1],[-14,16],[-26,3],[-37,-2],[-24,5],[-19,19],[20,15],[26,6],[-56,42],[-23,19],[-9,8],[-15,28],[-56,17],[-25,5],[-26,0],[-38,8],[-15,15],[10,26],[-19,16],[-8,31],[-22,23],[-26,14],[-27,3],[-32,1],[-3,2],[-18,10],[2,6],[5,14],[5,19],[-25,13],[3,21],[-11,17],[-35,7],[-18,-5],[-6,-2],[-25,-6],[-10,27],[0,1],[-4,14],[-4,14],[-16,17],[-18,15],[-23,-10],[-23,-14],[-30,7],[-9,18],[-1,26],[-29,-1],[-31,-9],[-34,-6],[-27,1],[-2,0],[-24,-8],[-19,-2],[-12,-1],[-20,13],[-14,24],[-1,6],[-3,13],[-22,16],[-26,-7],[-3,-6],[-6,-12],[-14,-24],[-23,6],[-27,18],[-32,5],[-24,10],[-22,-7],[-28,-13],[-29,-5],[-24,7],[-4,12],[-3,5],[-13,20],[-81,35],[-40,9],[-30,3],[-24,-12],[-5,-20],[-3,-25],[-9,-22],[-3,-7],[-3,-23],[-19,-13],[-32,-4],[-39,5],[-10,1],[-24,3],[-37,9],[-29,9],[-32,4],[-16,-21],[-3,-21],[16,-16],[-10,-18],[-24,7],[-12,20],[-12,20],[-19,15],[-15,-14],[-28,-10],[21,-11],[15,-15],[-15,-26],[-25,-5],[-17,-15],[8,-23],[-2,-23],[-26,-16],[-33,-10],[-25,2],[-32,-17],[6,-20],[-11,-11],[-7,-7],[-30,-11],[-12,-16],[-27,0],[-22,17],[-29,8],[-39,-1],[-33,-10],[-23,-10],[-31,-9],[-27,7],[5,21],[-16,13],[-2,1],[-37,-2],[-25,10],[2,24],[9,17],[-12,17],[-29,7],[-27,-11],[-25,-9],[-9,-19],[7,-21],[-14,-16],[-1,0],[-3,0],[-19,6],[-22,11],[-30,-9],[-3,-5],[-6,-13],[-19,-10],[-22,-12],[-23,-13],[-24,-3],[-34,4],[-4,7],[-6,9],[-5,22],[-26,3],[-27,0],[-33,-1],[-25,1],[-30,-15],[-3,-21],[12,-19],[5,-20],[-21,-13],[-15,-18],[-2,-3],[-17,-19],[-7,10],[-6,8],[-11,20],[-24,4],[-29,-4],[-10,-17],[-14,-20],[1,-21],[14,-4],[10,-2],[5,-19],[-21,-11],[-19,-1],[-17,-2],[-20,8],[-4,1],[-22,0],[-13,-16],[-26,-8],[-39,-13],[1,-6],[3,-14],[-24,-3],[-18,-14],[-27,2],[-7,4],[-19,9],[-23,-4],[-10,-18],[-16,-11],[-3,-2],[-19,-13],[-20,9],[-24,0],[-25,-4],[-22,-6],[-27,1],[-23,13],[-33,-3],[-23,1],[-9,6],[-10,7],[-24,12],[-21,15],[-23,-4],[-14,-16],[-21,-8],[-18,12],[-24,1],[-23,-12],[-14,18],[-25,3],[-17,-15],[-23,0],[-12,21],[-20,11],[-23,6],[1,21],[-22,8],[-24,-13],[10,-25],[-16,-13],[-35,-10],[-26,-3],[-29,-7],[-5,-4],[-18,-13],[-22,-8],[-29,4],[-10,16],[-1,1],[-4,20],[-27,5],[-34,-4],[-24,10],[-21,7],[-25,-13],[-18,-15],[-29,-5],[-9,19],[-22,-8],[5,-11],[3,-8],[13,-18],[-11,-23],[-29,-16],[-20,-12],[-28,-1],[-21,13],[-24,12],[-22,0],[-40,-7],[-23,-17],[-25,3],[-22,-7],[-19,19],[-22,-12],[-21,-5],[-19,16],[-22,-4],[-30,-2],[-24,-4],[-3,-23],[27,-7],[4,-22],[-24,-4],[-27,8],[-32,4],[-21,15],[-7,18],[-16,13],[-42,3],[-30,14],[-22,0],[-12,-16],[-14,-19],[-16,-16],[-23,2],[-18,13],[-26,-14],[5,-23],[-19,13],[-12,16],[-2,3],[-7,18],[-21,17],[-21,10],[-4,2],[-34,0],[-11,-3],[-21,-4],[-13,-20],[-24,-10],[-21,6],[-21,8],[-17,17],[1,18],[-21,15],[-23,5],[-13,18],[0,22],[-19,12],[-29,8],[-29,-3],[-17,-15],[-7,-24],[-6,-25],[-25,-12],[-1,-1],[-36,6],[-30,10],[-25,7],[-27,10],[-25,10],[-40,17],[-33,11],[-26,0],[-27,-7],[-26,-12],[-35,-3],[-30,8],[-22,8],[-21,-14],[-55,-23],[-28,2],[-35,7],[-28,15],[-5,24],[15,27],[-7,23],[-6,6],[-15,13],[-21,19],[-15,18],[-19,10],[-30,8],[-36,-6],[-21,-10],[-17,-17],[-16,-20],[-20,-11],[-13,-2],[-18,-4],[-25,1],[-3,1],[-25,12],[11,28],[-26,8],[-24,-6],[-18,-12],[-24,-6],[-24,-13],[2,-5],[8,-13],[29,-25],[4,-18],[3,-18],[-11,-20],[-18,-13],[-33,3],[-25,12],[-37,20],[-22,6],[-47,0],[-27,-11],[-31,-6],[-24,-6],[-35,-20],[-24,-1],[-23,18],[-15,20],[-14,17],[-13,23],[-21,22],[-13,7],[-7,4],[-30,11],[-25,17],[-11,17],[-25,17],[-28,1],[1,-45],[25,-11],[17,-8],[14,-7],[1,-19],[-14,-15],[-26,-1],[-31,2],[-28,5],[-40,7],[-30,6],[-39,10],[-24,15],[-1,0],[-8,19],[-21,10],[-26,6],[-22,9],[-9,17],[-2,20],[-27,2],[-19,-11],[-8,-19],[-15,-23],[-23,10],[4,20],[-10,25],[-14,15],[-20,7],[-40,-5],[-29,-22],[-25,-18],[-34,-5],[-36,7],[-24,0],[-39,-7],[-40,-5],[-33,4],[-23,-6],[-6,-21],[32,-15],[22,-2],[29,-3],[19,-9],[3,-5],[6,-15],[-13,-19],[-26,-5],[-25,7],[-26,-2],[-31,-8],[-18,15],[5,21],[-10,11],[-3,4],[-23,-3],[-2,-1],[-17,-19],[4,-26],[-13,-22],[-22,-2],[-25,7],[-22,16],[0,22],[1,25],[0,3],[-10,21],[-22,4],[-18,-13],[-3,-15],[-2,-5],[-2,-21],[-23,-10],[-13,19],[0,18],[-11,19],[-21,23],[-20,9],[-27,1],[-21,-11],[-14,-22],[-25,-14],[-4,20],[-12,26],[-8,19],[-21,11],[-23,1],[-14,14],[-7,27],[4,20],[-15,17],[-28,-2],[-32,1],[-26,-9],[-20,-9],[-1,-1],[-31,6],[-26,-12],[-6,-20],[14,-13],[9,-9],[7,-22],[-20,-11],[-24,0],[-29,-4],[-38,-34],[17,-16],[19,0],[6,0],[4,-1],[18,-3],[0,-1],[11,-18],[-12,-10],[-6,-5],[-33,-9],[-35,-8],[-3,-3],[-29,-18],[12,-18],[21,-9],[38,-8],[-2,-19],[-21,-8],[-33,-3],[-26,-9],[-11,-16],[-22,-6],[-23,15],[-13,21],[-20,16],[-29,11],[-38,10],[-28,5],[-31,-11],[4,-21],[10,-18],[22,-18],[11,-16],[2,-11],[1,-4],[0,-4],[-14,-14],[-2,-1],[-26,0],[-18,12],[-25,6],[-4,-18],[15,-22],[0,-35],[-6,-7],[-11,-16],[4,-20],[21,-13],[52,-1],[23,-3],[25,-8],[12,-27],[-13,-17],[-25,-16],[-57,-13],[-65,-1],[-31,3],[-36,-4],[-15,-16],[13,-18],[3,-20],[-17,-14],[-28,7]],[[33777,56660],[-13,15],[-9,19],[-3,21],[-2,6],[-5,12],[-15,19],[-23,7],[-22,-7],[-3,-22],[27,-23],[4,-9],[4,-9],[-35,-25],[-22,-14],[-3,-2],[-11,-17],[11,-17],[3,-3],[10,-12],[10,-22],[-18,-22],[-2,-1],[-23,-3],[-33,16],[-17,20],[-3,26],[1,21],[1,2],[18,32],[-30,18],[-23,-11],[-24,-22],[-9,-22],[-4,-16],[-1,-2],[3,-29],[-1,-18],[-20,-11],[-26,3],[-24,13],[-9,3],[-14,4],[-20,-11],[-12,-19],[18,-19],[-11,-20],[-31,1],[-22,7],[2,19],[-6,29],[-12,18],[-29,-21],[-17,-21],[-24,3],[-12,18],[-14,20],[-10,12],[-5,7],[-22,11],[-26,-11],[-25,-9],[-12,-4],[-39,-1],[-9,3],[-19,6],[-38,5],[-26,-5],[-23,-5],[-23,5],[-12,20],[17,19],[14,14],[10,32],[-18,25],[-23,-1],[-17,-12],[-8,-21],[-11,-18],[-33,-17],[-9,-21],[-6,-24],[-1,-8],[-11,-26],[-29,-13],[-32,6],[20,33],[-1,9],[-5,32],[-21,29],[-26,24],[-60,-6],[-40,-19],[-44,-29],[-14,-15],[-14,-16],[-44,-12],[-18,-13],[-4,-10],[-5,-11],[11,-33],[5,-24],[-4,-20],[-24,-9],[-26,3],[-26,37],[-28,4],[-25,1],[-42,-15],[-5,-1],[-33,-3],[-32,22],[-17,17],[-27,3],[-31,-34],[-13,-39],[0,-22],[10,-16],[6,-10],[9,-18],[-32,-17],[-29,6],[-14,6],[-17,7],[-36,7],[-29,-7],[14,-21],[9,-7],[8,-7],[15,-23],[-37,-19],[-29,9],[-19,11],[-30,-12],[-27,-11],[-5,-4],[-11,-10],[-28,-13],[-14,-16],[27,-10],[2,-18],[-30,7],[-22,8],[-33,-5],[28,-21],[17,-26],[0,-25],[-21,-18],[-27,-5],[-31,18],[-21,9],[-37,19],[-11,6],[-9,5],[-22,9],[-25,11],[-25,-18],[18,-20],[7,-6],[14,-10],[11,-36],[-26,-13],[-17,22],[-8,21],[-32,1],[-43,-47],[-19,-22],[-45,-10],[-25,12],[9,22],[33,11],[22,15],[2,9],[3,11],[-32,12],[-23,-13],[-10,-12],[-5,-7],[-24,-16],[-35,-25],[-29,-6],[-31,7],[-15,17],[-3,18],[-6,9],[-5,9],[-33,3],[-2,-12],[-1,-10],[15,-26],[-43,-14],[-29,8],[-19,16],[-23,9],[-53,-1],[-10,5],[-20,13],[-26,12],[-45,-7],[-20,-12],[17,-19],[2,-2],[-12,-24],[-30,3],[-23,4],[-1,-1],[-29,-18],[-25,-14],[-19,5],[-7,2],[-22,15],[-19,-11],[-32,4],[-20,-23],[-1,-19],[-5,-6],[-9,-10],[-19,1],[-12,1],[1,-4],[6,-14],[-17,-19],[-24,-18],[17,-25],[-4,-19],[-36,9],[-30,4],[6,-21],[34,-20],[-14,-19],[-24,-4],[-18,-11],[5,-24],[3,-23],[-21,-9],[-24,7],[-22,14],[-25,1],[-24,7],[8,23],[24,23],[-19,11],[-24,-8],[-20,-13],[-15,-22],[-29,-2],[-23,8],[-18,30],[-19,13],[-6,1],[-25,1],[-28,-1],[-27,7],[-27,-2],[4,-26],[-20,-11],[-19,20],[-24,12],[-25,-9],[-21,-27],[-12,-32],[0,-8],[0,-14],[-21,-25],[-31,8],[-5,14],[-1,4],[8,27],[-50,0],[-14,-14],[-3,-26],[-23,-7],[-8,-2],[-38,0],[-50,0],[-4,-1],[-10,-4],[-16,-6],[-25,-13],[-31,-5],[-9,23],[-1,5],[-4,21],[-34,12],[-13,-26],[-8,-6],[-26,-18],[-57,7],[-14,7],[-10,5],[1,23],[-6,20],[-21,19],[-24,2],[-30,-17],[-33,-31],[-33,10],[21,24],[34,29],[-6,22],[-29,-3],[-28,-40],[-20,-16],[-32,22],[-35,20],[-17,-25],[19,-18],[31,-26],[-35,-14],[-6,-7],[-11,-11],[-21,-23],[-28,16],[-21,-13],[8,-22],[-3,-30],[-28,-10],[-25,-4],[-12,-17],[9,-18],[-37,-17],[-27,6],[-24,5],[-23,9],[-39,5],[-26,-5],[-31,-21],[-13,16],[7,20],[-37,11],[-29,7],[10,19],[18,16],[18,26],[-15,19],[-28,8],[-25,-8],[-22,-22],[-3,-35],[-13,-22],[-18,-14],[-27,4],[-7,23],[15,18],[21,36],[-30,13],[-38,-16],[-18,-34],[-37,-15],[-32,8],[-24,3],[1,-22],[-22,-8],[-30,-8],[-36,5],[-22,5],[-43,-6],[-18,-16],[-4,-19],[10,-22],[-9,-18],[-25,2],[-22,26],[-6,31],[2,20],[12,27],[-12,16],[-28,3],[-23,-7],[-39,-3],[-61,30],[-25,4],[-36,-6],[-18,-12],[-25,-6],[-62,-4],[-27,5],[-32,26],[-21,-15],[-43,-17],[-30,11],[-31,-16],[-20,-13],[-77,29],[-36,11],[-25,0],[-46,1],[-2,20],[17,14],[-2,18],[0,4],[-28,-3],[-12,-2],[-43,-7],[-24,-1],[-22,10],[-10,5],[-27,4],[-28,-6],[-4,-2],[-25,-16],[6,-49],[-16,-22],[-41,-30],[-19,-14],[-22,-5],[-18,15],[-15,23],[-35,17],[-44,-11],[-35,-6],[-29,-4],[-80,-16],[-20,11],[17,15],[19,17],[-30,12],[-33,-4],[-25,12],[4,27],[12,20],[22,14],[3,3],[13,11],[-27,17],[-44,7],[-38,-10],[-37,-10],[-22,10],[25,15],[22,6],[28,14],[-8,23],[29,31],[-10,18],[-22,-1],[-32,13],[-16,22],[-16,19],[-32,3],[-19,15],[-17,17],[-2,25],[-23,14],[-29,1],[-33,-8],[-35,-4],[-22,8],[-31,14],[-3,33],[3,24],[6,20],[34,14],[32,1],[24,2],[14,18],[-32,11],[-16,25],[1,21],[4,25],[3,22],[-11,49],[-16,24],[-21,8],[-23,-4],[-16,-12],[-19,11],[-1,25],[-4,30],[-7,25],[-28,16],[-20,16],[-26,40],[-14,14],[-28,26],[-4,25],[12,22],[-28,10],[-18,23],[-1,29],[-9,29],[-16,14],[25,5],[16,24],[-8,22],[-20,13],[-29,5],[-31,14],[-23,4],[-39,0],[-24,3],[-33,1],[-24,12],[-20,9],[-39,4],[-28,10],[-16,17],[-21,12],[-26,-3],[-23,-7],[-28,11],[-26,1],[-6,-18],[21,-15],[-28,0],[-13,16],[6,24],[-22,17],[-30,-6],[-22,-17],[-16,-23],[-21,-25],[-28,-11],[-16,-16],[-26,-3],[-12,20],[-23,9],[-26,-10],[-35,-7],[-34,3],[-20,24],[-20,35],[-25,-3],[-18,-15],[-31,-8],[4,26],[-21,25],[-9,34]],[[25757,56947],[5,0],[5,0],[34,2],[60,12],[10,3],[28,7],[34,17],[28,21],[2,2],[9,10],[27,28],[14,14],[6,4],[78,58],[34,23],[19,13],[16,6],[37,15],[90,21],[113,16],[60,7],[8,1],[31,-1],[59,-2],[69,-7],[68,-1],[1,0],[19,1],[33,2],[38,7],[15,3],[10,1],[70,21],[116,43],[62,25],[58,23],[46,13],[33,8],[103,15],[4,1],[105,18],[34,12],[54,25],[43,16],[38,14],[9,3],[9,3],[91,24],[2,0],[2,0],[70,6],[33,2],[29,-1],[40,-1],[68,-2],[11,-1],[148,-15],[78,-11],[29,-4],[6,-1],[42,-11],[57,-15],[122,-16],[207,-11],[203,7],[12,0],[62,15],[4,2],[68,27],[12,5],[14,8],[29,19],[33,20],[43,42],[2,1],[0,1],[23,32],[10,13],[2,10],[10,38],[0,31],[-5,31],[-10,61],[2,42],[0,26],[4,16],[9,42],[0,1],[5,25],[9,37],[43,60]],[[79541,52533],[-316,-1],[-109,1],[-201,-3],[-292,-1],[-343,-1],[-127,0],[-203,-1],[-425,2],[-418,3],[-211,2],[-209,1],[-107,0],[-281,1],[-32,0],[-259,2],[-127,1],[-31,2],[-330,0],[-93,-1],[-59,0],[-109,-2],[-44,0],[-44,-1],[-121,-2],[-45,2],[-37,1],[-20,0],[-153,-2],[-123,-1],[-32,-1],[-25,0],[-28,0],[-34,0],[-141,-2],[-191,-2],[-1,0],[-53,0],[-46,0],[-377,-3],[-81,-1],[-339,-2],[-337,-3],[-92,-1],[-304,1],[-65,0],[-51,0],[-163,0],[-38,1],[-22,-1],[-19,0],[-153,1],[-30,0],[-95,1],[-1,0],[-314,1],[-1,0],[-126,0],[-157,1],[-143,1],[-202,-1],[-218,1],[-407,1],[-215,0],[-210,1],[-151,-2],[-28,0],[-1,0],[-237,-1],[-217,-2],[-211,0],[-168,0],[-35,0],[-110,0],[-107,0],[-210,-1],[-2,0],[-208,1],[-408,-3]],[[67868,52520],[0,186],[0,78],[0,267],[-1,21],[-2,243],[-1,264],[1,58],[0,21],[-2,18],[0,27],[0,80],[0,1],[0,38],[0,24],[-2,189],[-1,77],[-1,134],[-1,131],[0,172],[0,90],[2,64],[0,1],[-6,197],[-4,264],[0,93],[1,152],[0,23],[0,131],[0,137],[1,258],[0,194],[0,67],[0,65],[7,204],[0,95],[0,50],[1,5],[-1,84],[0,19],[0,126],[0,14],[0,80],[0,62],[-1,117],[0,18],[0,20],[0,26],[0,53],[0,22],[0,39],[-2,67],[0,4],[-2,275],[0,133],[2,390],[1,140],[1,51],[0,6],[0,159],[0,5],[0,21],[0,78],[0,88],[62,0],[10,263],[-1,238],[1,29],[-1,71],[0,68],[-1,123],[0,33],[0,28],[0,199]],[[52597,59796],[0,-30],[1,-38],[0,-40],[1,-20],[1,-30],[1,-42],[1,-46],[1,-41],[1,-26],[0,-39],[1,-22],[0,-35],[2,-37],[2,-42],[1,-32],[1,-60],[0,-55],[1,-31],[1,-47],[1,-20],[1,-125],[1,-21],[0,-23],[1,-26],[0,-19],[1,-28],[0,-20],[0,-25],[1,-20],[0,-18],[0,-29],[1,-22],[0,-35],[1,-39],[0,-19],[1,-49],[1,-39],[1,-23],[0,-30],[1,-30],[1,-18],[0,-26],[1,-31],[1,-18],[0,-21],[1,-21],[1,-23],[1,-28],[1,-57],[2,-64],[-1,-18],[2,-20],[1,-35],[1,-34],[2,-41],[0,-25],[0,-22],[2,-41],[0,-18],[1,-30],[1,-23],[1,-29],[1,-35],[0,-18],[1,-23],[1,-37],[1,-18],[0,-20],[1,-25],[0,-31],[1,-23],[1,-34],[0,-33],[1,-37],[1,-14],[0,-10],[1,-31],[0,-26],[1,-35],[1,-21],[0,-23],[2,-49],[1,-34],[0,-34],[1,-28],[0,-26],[1,-26],[1,-52],[2,-52],[0,-26],[1,-25],[0,-19],[1,-55],[1,-51],[1,-31],[-2,-57],[1,-57],[0,-3],[1,-36],[2,-117],[3,-145],[0,-40],[2,-74],[1,-29],[1,-23],[0,-26],[1,-22],[0,-21],[0,-31],[1,-18],[0,-35],[1,-23],[0,-7],[0,-15],[0,-26],[1,-12],[0,-10],[1,-64],[0,-30],[1,-38],[0,-34],[1,-36],[1,-39],[0,-20],[0,-25],[1,-20],[0,-30],[0,-30]],[[52686,55585],[3,-129],[1,-48],[0,-1],[0,-87],[1,-19],[1,-32],[0,-30],[1,-40],[0,-19],[0,-34],[1,-64],[1,-26],[0,-21],[0,-39],[0,-30],[0,-21],[1,-38],[0,-31],[1,-34],[0,-34],[1,-19],[1,-33],[0,-45],[0,-8],[1,-15],[0,-18],[0,-29],[0,-35],[0,-32],[0,-22],[0,-20],[1,-20],[0,-45],[0,-28],[1,-42],[0,-27],[0,-37],[0,-31],[0,-35],[1,-19],[0,-37],[1,-56],[0,-31],[0,-20],[0,-21],[1,-34],[0,-24],[1,-29],[0,-17],[0,-10],[0,-29],[0,-8],[1,-34],[0,-30],[0,-23],[3,-43],[0,-22],[-1,-24],[0,-8],[-1,-11],[1,-26],[1,-41],[0,-31],[1,-24],[0,-24],[0,-26],[0,-27],[0,-21],[0,-36],[1,-22],[1,-45],[0,-23],[0,-24],[0,-32],[1,-21],[0,-25],[0,-26],[1,-42],[-292,-4],[-126,-2],[-58,-1],[-36,0],[-316,-5],[-419,-3],[-29,0],[-32,0],[-23,0],[-44,0],[-27,0],[-36,-1],[-33,0],[-24,0],[-33,0],[-43,0],[-29,0],[-55,-1]],[[51060,53204],[-207,1],[-120,0],[-86,-1],[-91,0],[-263,0],[-35,1],[-28,-2],[-53,0],[-65,1],[-93,0],[-46,0],[-23,0],[-88,1],[-44,0],[-39,0],[-39,0],[-135,0],[-111,0],[-41,0],[-49,0],[-210,2],[-72,0],[-136,1],[-419,3],[-234,2],[-184,0],[-31,1],[-67,0],[-67,1],[-34,0],[-41,1],[-37,0],[-32,0],[-24,0],[-40,1],[-23,0],[-26,-2],[-30,1],[-30,0],[-41,1],[-25,0],[-40,1],[-56,1],[-32,0],[-24,1],[-62,1],[-32,0],[-42,1],[-32,0],[-24,0],[-29,1],[-32,0],[-23,0],[-35,1],[-34,0],[-27,0],[-33,1],[-28,0],[-43,0],[-45,1],[-31,7],[0,18],[0,30],[0,29],[0,26],[0,40],[0,28],[1,34],[0,29],[-1,21],[-95,2],[-3,0],[-30,0],[-122,0],[-30,0],[-59,1],[-502,3],[-285,2],[-136,1],[-63,1],[-154,0],[-31,0],[-27,-1],[-26,0],[-33,0],[-40,0],[-109,-1],[-2,137],[-1,25],[0,26],[-1,89],[-1,29],[0,28],[-1,38],[0,26],[0,24],[-1,46],[0,64],[0,74],[0,18],[-1,28],[0,51],[-1,57],[-20,27],[-89,0],[-57,0],[-62,-1],[-71,0],[-75,0],[-65,-1],[-150,-1],[-46,0],[-64,0],[-33,0],[-31,-1],[-35,0],[-44,0],[-27,0],[-35,0],[-5,0],[-37,0],[-24,-1],[-27,-1],[-3,0],[-25,2],[-25,0],[-32,0],[-32,0],[-27,0],[-52,-1],[-71,0],[-110,-1],[-34,0],[-29,0],[-30,0],[-30,0],[-184,-1],[-31,-1],[-91,-1],[-104,0],[-106,-1],[-30,0],[-28,-1],[-32,0]],[[43040,54272],[0,69],[-2,98],[-1,32],[-1,44],[-1,29],[-1,72],[-1,58],[-1,29],[0,15],[-1,25],[-2,63],[-1,44],[-1,74],[-1,66],[-1,70],[-1,28],[-1,39],[0,19],[0,42],[-1,25],[-1,59],[-1,50],[-1,54],[0,27],[-1,23],[0,28],[-1,63],[0,39],[14,28],[0,29],[0,66],[0,18],[-1,44],[0,27],[0,48],[0,32],[0,23],[-1,72],[0,34],[-2,135],[-1,82],[-1,20],[0,33],[-1,32],[0,33],[-1,38],[0,20],[-75,0],[-137,0],[-121,0],[-32,-1],[-44,0],[-81,0],[-1,67],[-3,138],[-1,56],[-2,95],[-2,98],[-1,90],[0,1]],[[65361,59787],[-39,-41],[-215,-220],[-68,-69],[-103,-103],[-86,-88],[-50,-48],[-32,-32],[-70,-69],[-73,-73],[-22,-23],[-4,-4],[-28,-28],[-4,-4],[-38,-38],[-10,-10],[-63,-63],[-208,-207],[-20,-17],[-78,-77],[-15,-15],[-107,-107],[-53,-52],[-59,-59],[-29,-28],[-59,-59],[-23,-23],[-179,-177],[-209,-207],[-54,-54],[-64,-63],[-25,-25],[-49,-49],[-87,-86],[-37,-37],[-66,-66],[-187,-195],[0,-19],[0,-20],[0,-29],[0,-30],[0,-21],[0,-22],[0,-37],[0,-32],[-1,-23],[0,-19],[1,-16],[0,-5],[0,-25],[0,-32],[-1,-64],[0,-19],[0,-19],[0,-26],[0,-32],[0,-26],[-1,-22],[0,-36],[0,-38],[0,-47],[0,-19],[0,-39],[0,-38],[-2,-33],[-23,1],[-34,0],[-49,1],[-35,0],[-64,1],[-37,0],[-51,0],[-27,0],[-66,0],[-33,1],[-49,0],[-68,0],[-49,0],[-45,0],[-95,1],[-23,0],[-40,1],[-9,0],[-50,0],[-63,0],[-37,0],[-45,0],[-70,0],[-25,-1],[-53,0],[-27,0],[-37,0],[-68,0],[0,-40],[0,-26],[1,-147],[0,-23],[0,-30],[0,-74],[0,-8],[0,-30],[0,-26],[0,-24],[0,-63],[0,-33],[1,-21],[0,-26],[0,-25],[0,-26],[0,-19],[0,-19],[0,-5],[0,-27],[1,-19],[1,-77]],[[61576,55700],[-10,-1],[-16,-1],[-30,0],[-31,1],[-31,0],[-12,0],[-29,0],[-30,0],[-41,0],[-31,0],[-31,0],[-51,0],[-84,0],[-33,0],[-31,0],[-40,0],[-113,1],[-41,0],[-31,0],[-41,0],[-52,0],[-41,0],[-28,0],[-40,0],[-61,0],[-45,0],[-23,0],[-33,1],[-27,0],[-32,1],[-26,0],[-26,0],[-43,0],[-60,0],[-25,0],[-26,-1],[-55,-1],[-45,0],[-50,-1],[-26,0],[-23,-1],[-63,-1],[-54,0],[-35,-1],[-23,0],[-27,-1],[-51,0],[-32,-1],[-31,-1],[-98,-1],[-46,-1],[-28,-1],[-29,0],[-40,-1],[-39,0],[-27,0],[-82,-2],[-82,-1],[-59,-1],[-54,0],[-39,-1],[-24,0],[-42,-1],[-26,0],[-74,-1],[-43,-1],[-56,-1],[-22,0],[-127,-2],[-31,0],[-57,-1],[-46,-1],[-32,0],[-54,-1],[-37,-1],[-59,-1],[-35,0],[-74,-1],[-23,-1],[-62,-1],[-32,0],[-35,-1],[-43,0],[-39,-1],[-35,0],[-27,-1],[-35,0],[-45,-1],[-39,0],[-26,-1],[-25,0],[-42,-1],[-37,-1],[-101,-2],[-52,-2],[-41,-1],[-36,-1],[-47,-1],[-68,-2],[-30,-1],[-45,-1],[-40,-1],[-24,0],[-72,-2],[-43,-1],[-29,-1],[-1,0],[-77,-1],[-30,-1],[-41,-1],[-59,-1],[-10,0],[-26,-1],[-49,-1],[-47,-1],[-27,0],[-40,0],[-27,-2],[-27,-1],[-36,-1],[-32,-1],[-64,-1],[-39,-1],[-33,-1],[-33,-1],[-33,-1],[-65,-1],[-33,-1],[-64,-2],[-33,0],[-34,0],[-87,-3],[-33,0],[-98,-3],[-32,0],[-33,-1],[-26,-1],[-101,-2],[-65,-2],[-30,-1],[-34,-1],[-28,-1],[-36,-1],[-33,0],[-65,-2],[-64,-2],[-33,0],[-32,-1],[-29,-1],[-65,-1],[-98,-1],[-49,0],[-34,0],[-33,0],[-32,-1],[-86,-1],[-27,0],[-82,-1],[-32,0],[-33,0],[-32,0],[-32,-1],[-41,0],[-32,0],[-23,0],[-32,-1],[-33,0],[-32,0],[-120,-1],[-86,-1],[-44,0],[-32,0],[-33,0],[-65,-1],[-32,0],[-36,0],[-24,-1],[-65,0],[-130,-1],[-50,0],[-33,0],[-65,-1],[-97,0],[-97,-1],[-50,0],[-113,-1],[-32,0],[-87,-1],[-32,0],[-32,0],[-98,-1],[-34,0],[-31,0],[-65,-1],[-65,0],[-65,0],[-35,-1]],[[25757,56947],[-22,2],[-49,8],[-37,7],[-27,2],[-14,-1],[-2,1],[-8,-1],[-63,-6],[-41,-4],[-17,-9],[-85,-21],[-17,-9],[-25,-14],[-62,-60],[-3,-3],[-44,-44],[-50,-61],[-9,-20],[-15,-31],[-25,-52],[-6,-3],[-1,-23],[-67,-93],[-1,-2],[-18,-21],[-13,-9],[-25,-16],[-95,-84],[-15,-28],[-3,-37],[6,-17],[39,-37],[1,0],[0,-2],[1,-66],[-15,-34],[-57,-58],[-64,-37],[-22,-13],[-99,-25],[-15,-4],[-1,0],[-46,-12],[-1,0],[-4,-2],[-3,-1],[-4,-1],[-1,-1],[-28,-14],[-1,0],[-28,-15],[-3,-2],[-1,0],[-3,-2],[-1,-1],[-37,-24],[-2,-1],[-2,-2],[-3,-3],[-117,-41],[-84,-25],[-32,-9],[-42,-13],[-1,0],[-105,-68],[3,-97],[15,-93],[-20,-137],[-9,-14],[-78,-128],[-1,-3],[-1,-2],[-5,-10],[0,-1],[-2,-3],[-16,-49],[4,-111],[1,-18],[1,-14],[-18,-19],[-67,-36],[-94,-36],[-12,-1],[-16,-2],[-66,-25],[-23,-11],[-109,-54],[-66,-28],[-12,-6],[-106,-30],[-34,0],[-17,0],[-162,-33],[-69,-20],[-19,-10],[-30,-15],[-65,-12],[-139,-12],[-74,-11],[-3,-1],[-41,-11],[-22,-7],[-23,-6],[-38,-9],[-3,-1],[-20,-2],[-21,-3],[-4,-1],[-31,-9],[-27,-7],[-12,-3],[-52,-10],[-8,0],[-61,-19],[-27,-10],[-72,-28],[-50,-27],[-38,-28],[-26,-24],[-8,-53]],[[22230,54485],[-29,-15],[-1,-32],[-3,-9],[-4,-5],[-6,-3],[-23,0],[-28,6],[-36,14],[-7,4],[-3,4],[0,11],[5,15],[-1,7],[-9,7],[-10,3],[-14,0],[-116,-12],[-6,-1],[-9,-5],[-5,-5],[0,-7],[6,-5],[10,-4],[32,-9],[19,-8],[15,-12],[4,-5],[0,-8],[-6,-9],[-17,-9],[-5,-2],[-25,-8],[-21,-3],[-142,11],[-67,20],[-9,3],[-17,0],[-20,-1],[-21,-4],[-4,-3],[-9,-9],[-10,-15],[-6,-12],[-10,-9],[-8,-6],[-8,-2],[-15,-3],[-25,-2],[-11,2],[-25,5],[-35,11],[-27,15],[-35,17],[-17,6],[-41,0],[-22,-1],[-75,-2],[-52,-2],[-43,-9],[-16,-1],[-32,5],[-58,14],[-19,3],[-21,0],[-8,0],[-11,0],[-8,-1],[-6,-1],[-27,-5],[-2,0],[-168,-33],[-27,-5],[-7,-2],[-34,-10],[-1,-2],[-32,-11],[-30,-9],[-43,-11],[-82,6],[-5,1],[-174,30],[-2,0],[-85,2],[-30,2],[-26,1],[-58,6],[-18,3],[-10,5],[-4,3],[0,14],[0,1],[9,16],[30,133],[2,3],[9,11],[50,78],[3,5],[8,39],[1,2],[2,21],[1,0],[0,1],[6,19],[6,19],[2,21],[-1,1],[-18,21],[-56,23],[-34,10],[-30,9],[-9,12],[-6,7],[0,1],[-17,13],[-1,2],[-1,0],[-44,15],[-21,11],[-21,10],[-19,12],[-21,19],[-35,-5],[-1,0],[-23,3],[-14,19],[-4,19],[-2,26],[14,36],[14,22],[11,17],[39,12],[31,-7],[25,-19],[1,-1],[16,-20],[19,-11],[25,9],[0,1],[19,20],[19,13],[23,15],[3,1],[1,2],[9,15],[1,2],[17,36],[1,3],[7,19],[0,1],[-2,20],[-15,36],[-3,4],[-15,19],[-29,21],[-18,17],[-15,13],[-21,10],[-20,-6],[-8,-2],[-32,-38],[-33,-30],[-15,-18],[-19,-12],[-40,-7],[-1,-1],[-29,4],[-31,0],[-47,-9],[-25,-3],[-36,-8],[-25,-12],[-30,-15],[-7,-3],[-17,-5],[-1,0],[-1,0],[-25,1],[-1,0],[-19,17],[-13,30],[-1,1],[-7,16],[-2,6],[-5,13],[0,1],[-1,1],[-20,13],[-23,4],[-38,2],[-68,1],[-29,2],[-26,2],[-38,6],[-38,3],[-45,13],[-66,21],[-26,8],[-30,7],[-5,2],[-18,11],[-2,22],[0,1],[24,34],[5,12],[3,6],[9,12],[2,3],[1,0],[3,23],[-24,10],[-52,3],[-45,1],[-41,8],[0,23],[1,30],[0,1],[-7,17],[-29,22],[-22,7],[-49,0],[-44,0],[-24,-4],[-20,-18],[-10,-25],[-32,-7],[-1,0],[-57,14],[-4,2],[-29,11],[-2,1],[-19,11],[0,1],[-10,18],[-44,62],[-1,0],[-11,26],[4,23],[26,27],[11,18],[14,18],[-2,3],[-7,6],[-15,14],[-20,19],[3,13],[0,5],[32,15],[23,18],[1,3],[3,11],[2,5],[-1,1],[-17,18],[-23,11],[-6,27],[7,20],[1,3],[1,0],[36,45],[11,34],[5,24],[10,18],[10,18],[15,20],[1,2],[18,19],[2,2],[0,1],[-1,23],[-5,17],[0,1],[-22,20],[-57,-3],[-43,-7],[-58,-13],[-27,-3],[-1,0],[-44,-1],[-65,-9],[-39,1],[-27,4],[-1,0],[-121,6],[-25,3],[-38,11],[-53,17],[-72,31],[-6,4],[-16,9],[-17,8],[-6,3],[-1,1],[-17,12],[23,22],[1,1],[7,18],[0,1],[0,1],[-8,16],[-50,12],[-21,8],[-21,16],[-9,33],[15,20],[66,-5],[3,0],[29,7],[53,7],[6,1],[3,1],[17,7],[1,1],[1,0],[16,10],[1,0],[0,2],[5,45],[1,4],[29,32],[18,20],[28,9],[-1,1],[0,4],[-9,5],[-16,8],[2,17],[17,3],[10,2],[6,4],[-2,7],[-16,1],[-18,1],[-177,3],[-67,1],[-9,0],[-237,4],[-196,3],[-81,1],[-176,4],[-231,5],[-98,2],[-144,2],[-170,3],[-145,2],[-35,1],[-434,4],[-188,-3],[-48,-1],[-46,0],[-26,-1],[-61,-2],[-26,0],[-22,-1],[-214,-4],[-36,0],[-152,-1],[-75,0],[-42,0],[-331,-3],[-4,0],[-29,0],[-3,0],[-47,-1],[-82,0],[-18,-1],[-15,0],[-290,-3],[-166,0],[-115,0],[-235,0],[-159,0],[-181,-3]],[[13334,56589],[1,49],[1,85],[3,130],[3,108],[2,23],[-1,118],[4,159],[1,40],[1,77],[7,220],[2,47],[-1,80],[2,119],[1,86],[6,115],[3,146]],[[67868,52520],[1,-74],[-4,-185],[-1,-65],[0,-69],[0,-48],[0,-83],[-1,-197],[0,-180],[3,-83],[0,-200],[0,-48],[-1,-33],[0,-32],[0,-51],[0,-31],[0,-33],[0,-19],[0,-10],[0,-8],[-1,-21],[0,-22],[0,-29],[1,-57],[-15,0],[-63,0],[-8,0],[-6,0],[-148,0],[-2,0]],[[67623,50942],[-79,0],[-343,1],[-172,-1],[-110,-1],[-98,-1],[-33,-1],[-183,2],[-210,1],[-23,0],[-327,0],[-98,0],[-185,1],[-238,1],[-164,1],[-1,0],[-60,0],[-166,0],[-27,0],[-24,0],[-3,0],[-51,0],[-25,0],[-26,0],[-28,0],[-27,0],[-15,0],[-21,0],[-66,0],[-15,0],[-91,1],[-55,0],[-156,0],[-255,2],[-4,0],[-161,-1],[-36,1],[-62,0],[-8,0],[-27,0],[-2,0],[-114,-1],[-170,0],[-5,0],[-187,1],[-79,-1],[-10,0],[-47,0],[-92,0],[-224,0],[-56,0],[-231,0],[-91,0],[-47,-1],[-25,0],[-25,0],[-64,0],[-26,0],[-58,0],[-167,1],[-43,0],[-60,0],[-1,0],[-254,0],[-89,0],[-89,0],[-1,0],[-4,0],[-90,1],[-39,0]],[[61560,50948],[-3,132],[0,1],[0,94],[-1,173],[-1,132],[0,268],[-2,263],[1,131],[2,130],[2,131],[1,44],[1,55],[1,35],[7,64],[1,66],[0,22],[0,1],[1,113],[3,178],[-5,115],[1,105],[-1,42],[5,158],[-4,68],[0,100],[0,24],[0,57],[0,69],[1,17],[7,73],[-7,17],[-1,41],[3,151],[1,26],[1,46],[1,33],[-6,264],[0,265],[-4,51],[0,1],[-3,98],[0,21],[0,20],[-1,63],[0,38],[0,21],[1,33],[0,33],[3,143],[2,181],[0,58],[0,22],[0,27],[-1,218],[0,1],[10,19]],[[13334,56589],[3,-124],[-1,-45],[-1,-26],[0,-40],[-1,-24],[2,-19],[-2,-23],[0,-41],[-6,-39],[-1,-64],[-1,-103],[-2,-251],[0,-75],[4,-27],[-1,-20],[-1,-58],[-1,-64],[-3,-127],[-3,-114],[-2,-53],[-2,-85],[0,-21],[0,-5],[0,-112],[-1,-106],[-1,-28],[1,-132],[2,-59],[0,-1],[-6,-41],[6,-29],[-1,-48],[0,-56],[1,-35],[4,-40],[0,-52],[-6,-85],[3,-68],[-2,-18],[-2,-48],[3,-80],[-2,-93],[3,-79],[-1,-29],[-2,-72],[3,-95],[1,-61],[0,-63],[1,-22],[0,-72],[-1,-28],[-3,-47],[-5,-30],[-7,-20],[-7,-54],[-7,-81],[-14,-59],[-4,-39],[-2,-25],[0,-19],[-2,-19],[-1,-21],[-1,-19],[-1,-50],[-1,-43],[0,-26],[0,-20],[-1,-47],[2,-65],[0,-73],[-1,-23],[-1,-33],[2,-19],[3,-36],[-3,-49],[-1,-64],[5,-61],[-6,-24],[0,-21],[0,-62],[-1,-54],[1,-186],[-1,-21],[5,-20],[0,-25],[1,-129]],[[13267,51905],[1,-19],[1,-188],[1,-58],[0,-52],[3,-253],[0,-29],[0,-27],[-1,-24],[-1,-81],[0,-80],[0,-82],[0,-46],[0,-33],[2,-36],[5,-444],[1,-135],[-52,1],[-73,1],[-63,1],[-552,-3],[-96,-1],[-22,2],[-94,-1],[-59,-1],[-38,3],[-30,-5],[-32,0],[-160,-1],[-155,0],[-52,0],[-26,0],[-190,0],[-189,-2],[-49,0],[-172,-1],[-86,2],[-25,1],[-243,0],[-47,0],[-34,0],[-29,-1],[-85,-1],[-30,0],[-218,4],[-39,-1],[-34,0],[-193,1],[-99,-1],[-108,1],[-216,-1],[-163,1],[-55,0],[-153,1],[-109,1],[-160,-1],[-421,3],[-524,-4],[-2,0],[-366,-3],[-28,0],[-26,-1],[-224,2],[-171,0],[-2,0],[-214,-1],[-185,0],[-343,2],[-33,0],[-27,1],[-342,2],[-122,0],[-37,0],[-135,-3],[-193,3],[-131,1],[-25,1],[-354,6],[-431,7],[-64,1],[-200,0],[-137,0],[-23,0],[-48,2],[-273,4],[-54,1],[-133,1],[-43,1],[-120,0],[-49,1],[-9,0],[-31,0],[-96,1],[-35,0],[-26,0],[-87,1],[-14,1]],[[3271,50347],[2,60],[10,274],[81,141],[-11,41],[-25,92],[-1,7],[-9,9],[-161,166],[-69,70],[-45,48],[-34,34],[-6,6],[-83,35],[-196,82],[-58,25],[-88,42],[-225,107],[-64,30],[-234,112],[-182,42],[-16,4],[-4,5],[-54,70],[-57,27],[-7,4],[-24,46],[-9,17],[-31,60],[-9,17],[-16,31],[-18,35],[-12,24],[-44,93],[-62,131],[-53,113],[12,53],[59,249],[279,223],[50,41],[75,60],[69,56],[3,7],[74,199],[10,27],[-20,21],[-25,26],[8,52],[-3,5],[-14,19],[-6,8],[-2,2],[-20,19],[-5,5],[-18,18],[-18,18],[-25,24],[-16,14],[-9,-1],[-46,-2],[-49,51],[-33,34],[-4,5],[-60,34],[-35,22],[-38,46],[-11,14],[-50,28],[-4,3],[-22,23],[-16,17],[-41,50],[-23,29],[-21,26],[-29,73],[-43,53],[-47,57],[-52,64],[-65,79],[-12,8],[-154,108],[-30,45],[-26,38],[12,37],[-4,10],[-6,12],[-16,34],[-4,6],[-13,23],[-21,25],[-48,59],[-107,134],[-143,179],[-24,30],[-54,78],[-26,39],[-147,216],[0,1],[12,34],[91,276],[11,32],[-7,15],[-5,9],[-54,114],[-59,124],[-58,167],[-82,236],[-24,68],[-40,118],[-10,27],[-23,67],[-20,57],[-82,237],[-2,44],[-5,88],[-3,54],[-2,48],[-1,20],[-3,63],[-2,27],[-4,94],[75,151],[-17,46],[-11,31],[-40,111],[-15,43],[-9,70],[-5,50],[-7,53],[-2,19],[10,25],[58,140],[8,20],[64,59],[43,39],[-11,57],[-2,11]],[[43040,54272],[-369,-3],[-97,0],[-92,0],[-52,-1],[-35,0],[-132,0],[-158,0],[-55,-1],[-50,0],[-149,0],[-67,-1],[-48,0],[-318,-1],[-122,-2],[-79,0],[-117,0],[-192,0],[-39,0],[-90,-1],[-164,-1],[-91,-1],[-56,-1],[-4,0],[-92,-1],[3,-110],[2,-109],[1,-43],[0,-24],[1,-38],[0,-12],[2,-72],[3,-112],[1,-41],[0,-35],[1,-44],[-5,-25],[-72,1],[-27,0],[0,-26],[2,-103],[5,-238],[1,-25],[-66,-3],[-153,-3],[-23,3],[-173,-1],[-42,-1],[-105,0],[-35,0],[-82,-1],[-188,-1],[-204,0],[-140,-1],[-75,0],[-27,0],[-186,-2],[1,-36],[1,-198],[0,-17],[-23,0],[-22,0],[-30,0],[-39,-1],[-48,1],[-88,1],[-126,0],[-147,-1],[-36,0],[-96,0],[-75,2],[-99,-3],[-114,-1],[-14,0],[-111,0],[-140,-2],[-74,-1],[-210,-4],[-163,-3],[-70,-3],[-165,1],[-105,0],[-248,-2],[-70,1],[-42,0],[-55,1],[-116,1],[-103,0],[-211,0],[-269,3],[-150,0],[-63,0],[-174,0],[-74,0],[-148,2],[-31,1],[-212,-1],[-2,0],[-181,0],[-32,0],[-207,0],[-51,0],[-159,1],[-128,1],[-82,0],[-115,0],[-93,1]],[[33782,52936],[0,42],[-1,48],[0,49],[0,30],[0,25],[0,39],[0,34],[-1,45],[0,46],[0,30],[-1,34],[0,20],[0,39],[0,36],[0,43],[0,39],[-1,53],[0,26],[0,20],[0,40],[0,28],[-1,20],[0,59],[0,28],[-1,41],[0,22],[0,20],[0,23],[-1,67],[0,67],[0,21],[2,108],[0,54],[0,20],[0,19],[0,20],[-1,20],[0,19],[0,20],[0,23],[2,131],[-3,24],[0,20],[-1,86],[0,69],[0,8],[0,19],[0,59],[0,21],[0,19],[0,40],[-1,19],[-2,127],[2,31],[0,44],[-1,20],[0,19],[0,20],[0,24],[1,20],[-1,19],[0,20],[0,20],[0,20],[0,19],[0,39],[0,40],[0,46],[-1,128],[4,217],[-2,196],[0,44],[-1,94],[1,103],[1,82],[1,199],[1,112],[1,69]],[[33782,52936],[0,-86],[0,-53],[-1,-32],[1,-36],[0,-14],[0,-24],[0,-42],[1,-89],[0,-34],[0,-21],[0,-20],[0,-20],[0,-20],[1,-38]],[[33784,52407],[-124,0],[-15,0],[-283,-2],[-273,0],[-22,0],[-142,1],[-24,0],[-41,0],[-56,-1],[-31,-3],[-39,-6],[-30,0],[-45,1],[-34,6],[-97,0],[-70,-1],[-347,-1],[-326,4],[-40,0],[-49,0],[-49,0],[-24,0],[-27,0],[-172,1],[-23,0],[-26,0],[-29,0],[-72,0],[-133,-1],[-188,4],[-77,2],[-23,0],[-213,0],[-312,1],[-326,1],[-419,-6],[-208,6],[-181,5],[-25,-4],[-89,0],[-59,0],[-44,0],[-126,-1],[-6,0],[-24,0],[-25,1],[-24,-1],[-25,0],[-24,0],[-73,1],[-24,0],[-49,0],[-24,-1],[-49,1],[-44,0],[-26,1],[-98,1],[-115,2],[-41,0],[-85,-1],[-35,0],[-26,0],[-85,2],[-326,7],[-122,1],[-72,1],[-43,1],[-30,0],[-49,0],[-25,1],[-48,0],[-98,1],[-51,1],[-53,0],[-97,1],[-147,1],[-49,0],[-49,1],[-31,1],[-97,3],[-219,1],[-106,1],[-307,1],[-170,1],[-135,-1],[-159,0],[-50,-1],[-63,0],[-23,1],[-37,2],[-32,1],[-59,3],[-71,0],[-172,2],[-90,1],[-36,0],[-297,3],[-421,4],[-181,1],[-140,2],[-102,1],[-106,1],[-96,0],[-105,-1],[-103,0],[-22,2],[-25,0],[-24,1],[-35,0],[-63,1],[-24,0],[-49,0],[-73,1],[-25,0],[-49,1],[-24,0],[-25,0],[-24,0],[-24,0],[-27,0],[-61,-2],[-107,0],[-68,5],[-114,0],[-5,0],[-24,0],[-182,0],[-51,1],[-57,0],[-40,0],[-72,0],[-97,0],[-33,0],[-70,0],[-24,0],[-81,0],[-78,1],[-22,0],[-24,0],[-27,0],[-27,0],[-235,1],[-12,0],[-109,-1],[-129,0],[-26,3],[-278,1],[-22,0],[-15,0],[-2,0]],[[20677,52477],[17,16],[23,28],[22,32],[8,19],[5,9],[29,53],[7,21],[5,17],[8,9],[27,31],[67,43],[24,0],[65,19],[71,41],[14,6],[194,72],[70,36],[78,59],[20,15],[0,3],[0,2],[86,74],[126,95],[10,7],[18,19],[10,16],[11,19],[21,33],[0,5],[1,12],[2,17],[3,34],[2,19],[-2,16],[-5,40],[2,15],[5,56],[1,11],[5,11],[2,4],[58,94],[5,5],[5,18],[1,4],[1,3],[4,16],[4,32],[1,14],[6,9],[21,33],[18,17],[96,59],[30,23],[22,26],[38,62],[48,51],[21,17],[58,32],[80,45],[22,20],[21,17],[9,19],[7,73],[-8,36],[-21,47],[-2,5],[0,2],[1,13],[-4,13],[-8,21],[1,12],[6,60],[-6,22],[-22,34],[-2,3],[-10,17]],[[20677,52477],[-30,-30],[-26,-66],[24,-139],[57,-165],[67,-110],[58,-59],[86,-82],[26,-24]],[[20939,51802],[-30,-1],[-29,0],[-45,0],[-105,1],[-62,0],[-35,0],[-66,0],[-111,1],[-296,1],[-29,0],[-379,2],[-36,1],[-159,1],[-40,0],[-114,1],[-96,0],[-217,2],[-194,2],[-171,0],[-27,0],[-32,1],[-58,1],[-28,-1],[-114,1],[-192,0],[-232,0],[-45,1],[-601,1],[-40,1],[-62,0],[-147,0],[-67,1],[-109,3],[-104,0],[-9,0],[-20,1],[-187,0],[-109,0],[-59,1],[-157,1],[-192,1],[-59,0],[-200,1],[-59,0],[-25,1],[-60,0],[-72,1],[-413,1],[-150,1],[-394,2],[-37,0],[-60,0],[-33,0],[-26,0],[-44,0],[-54,0],[-25,-3],[-2,0],[-198,7],[-33,1],[-35,-1],[-4,0],[-293,-5],[-80,-2],[-76,12],[-119,17],[-103,15],[-213,31]],[[61560,50948],[-93,0],[-193,1],[0,-2],[2,-41],[4,-175],[3,-130],[1,-65],[9,-270],[4,-77],[-3,-185],[-213,10],[-209,1],[-231,4],[-190,0],[-220,-1],[-93,0],[-69,0],[1,-37],[7,-227],[2,-38],[2,-19],[-2,-27],[1,-15],[0,-15],[1,-26],[1,-40],[1,-22],[1,-36],[0,-4],[2,-33],[1,-26],[4,-121],[3,-100],[2,-142],[3,-131],[4,-190],[2,-26],[1,-45],[7,-238],[0,-21]],[[60113,48439],[-418,-1],[-187,-1],[-236,-1],[-431,-1],[-162,1],[-226,0],[-14,0],[-415,2],[-240,-4],[-129,-2],[-204,5],[-125,2],[-43,0],[-47,1],[-249,3],[-63,2],[-107,1],[-107,1],[-318,3],[-306,8],[-14,0],[-92,3],[-89,-3],[-137,2],[-136,-2],[-18,0],[-40,0],[-6,0],[-40,0],[-179,-1]],[[55335,48457],[-260,8],[-155,1],[-318,1],[-108,1],[-133,0],[-187,-1],[-103,1],[-131,0],[-292,5],[-38,1],[-114,1],[-163,2],[-102,0],[-107,0],[-311,0],[-8,259],[-4,269],[-1,50],[-1,63],[-2,103],[-3,48],[0,89],[-3,43],[-4,134],[-3,64],[-7,199],[0,103],[-6,152],[-2,31],[-2,105],[-2,128],[-1,77],[0,97],[-2,38],[-1,53],[-3,100],[-1,116],[-2,50],[-1,137],[1,21],[0,28],[-3,34],[0,35],[0,2],[-39,16],[-45,-2],[-27,0],[-59,12],[-27,2],[-34,5],[-44,5],[-44,7],[-34,8],[-39,13],[-51,22],[-62,29],[-43,18],[-100,35],[-41,17],[-45,14],[-50,20],[-77,29],[-30,8],[-30,11],[-28,14],[-62,20],[-32,2],[-45,-1],[-29,-9],[-60,-24],[-22,-5],[-25,-4],[-31,0],[-60,-2],[-62,2],[-100,-2],[5,-22],[-6,-25],[-14,-17],[-37,-12],[-42,5],[-41,16],[-35,11],[-37,45]],[[51068,51366],[0,184],[0,84],[3,110],[0,10],[0,9],[-1,130],[-1,58],[0,98],[0,1],[-1,107],[-1,67],[-1,179],[-4,19],[-2,25],[0,56],[-1,176],[0,23],[1,153],[0,86],[1,136],[0,66],[-1,61]],[[51068,51366],[-167,-1],[-67,-6],[-49,-15],[-28,-6],[-15,-3],[-14,-3],[-16,-2],[-19,12],[9,16],[17,13],[35,10],[-32,11],[-25,-4],[-9,19],[-32,2],[12,22],[-29,9],[-6,17],[15,21],[-17,14],[-13,-15],[-25,-4],[-24,5],[-1,27],[-36,3],[-30,5],[-21,9],[-25,13],[-27,25],[-30,-3],[-36,-9],[-20,-15],[-24,-17],[-17,-17],[-8,-32],[-10,-19],[-11,-22],[-19,-26],[-12,-24],[-27,-28],[-16,-14],[-5,-44],[-9,-19],[-20,-10],[-21,-9],[-19,-12],[-1,-21],[-1,-2],[-37,-18],[-68,-24],[-15,-5],[-182,-68],[-33,-13],[-39,-14],[-35,-16],[-2,-3],[-74,-27],[-35,-12],[-170,-62],[-33,-12],[-22,-8],[-31,-23],[-76,-58],[-14,-16],[-23,-27],[-94,-135],[-27,-16],[-23,-9],[-145,-40],[-142,-39],[-2,0],[-117,-33],[-110,-32],[-67,-16],[-26,0],[-159,8],[-3,0],[-100,4],[-35,14],[-40,16],[-24,10],[-37,1],[-24,2],[-6,18],[-13,16],[-28,1],[-16,-12],[-24,-5],[-25,1],[-21,-27],[-21,-26],[2,-53],[0,-1],[14,-33],[1,-24],[-16,-13],[-23,-14],[-10,-16],[-8,-23],[-17,-17],[-4,-18],[-21,-9],[-26,20],[-30,9],[-5,0],[-76,13],[-81,-31],[-84,-31],[-87,-28],[-113,-54],[-33,-20],[-29,-21],[-25,-20],[-19,-13],[-19,-13],[-20,-16],[-37,-22],[-49,-14],[-36,-2],[-30,2],[-57,7],[-25,2],[-36,-3],[-35,5],[-38,8],[-39,5],[-25,14],[-23,15],[-53,43],[-19,12],[-39,21],[-31,21],[-25,15],[-12,19],[25,26],[-18,15],[1,21],[11,20],[29,6],[-13,38],[-24,22],[-27,12],[-67,4],[-36,8],[-1,-110],[-1,-56],[0,-51],[-6,-35],[0,-85],[-2,-21],[1,-54],[1,-24],[1,-48],[5,-336],[2,-46],[0,-111],[1,-18],[-1,-148],[3,-139],[0,-89],[0,-42],[-265,2],[-52,0],[-102,1],[-313,3],[-103,-2],[-127,1],[-43,0],[-194,-2],[0,-48],[2,-93],[0,-2],[2,-114],[0,-6],[1,-82],[0,-38],[1,-5],[1,-45],[0,-31],[1,-52],[0,-26],[1,-75],[0,-17],[0,-8],[1,-138],[-40,1],[-15,0],[-147,0],[-219,1],[-60,0],[-165,2],[-613,3],[5,-229],[1,-33],[-2,-29],[0,-62],[1,-38],[4,-132],[-10,-108],[7,-168],[1,-121],[0,-46],[1,-30],[0,-59],[3,-70],[3,-65],[3,-130],[2,-78],[1,-45],[3,-138],[1,-262],[10,-262]],[[44037,46118],[-32,0],[-144,0],[-96,0],[-96,0],[-49,0],[-31,0],[-165,0],[-12,0],[-215,0],[-37,0],[-26,0],[-192,0],[-96,0],[-49,0],[-67,-1],[-240,-1],[-111,-1],[-38,0],[-72,0],[-87,-1],[-128,-1],[-40,-1],[-48,0],[-93,-1],[-48,-1],[-42,0],[-23,0],[-79,-1],[-48,0],[-24,0],[-46,-1],[-23,0],[-25,-1],[-24,0],[-49,0],[-26,0],[-27,-1],[-48,0],[-13,0],[-23,0],[-46,-1],[-29,0],[-38,0],[-67,-1],[-22,0],[-104,-1],[-94,-1],[-33,0],[-38,-1],[-29,0],[-55,-1],[-48,0],[-54,-1],[-96,-1],[-53,0],[-29,0],[-47,0],[-29,-1],[-43,0],[-54,-1]],[[40297,46096],[-91,-1],[-71,0],[-36,0],[-108,-1],[-24,-1],[-36,-1],[-36,0],[-23,0],[-76,-1],[-27,1],[-162,-1],[-41,0],[-79,-1],[-72,0],[-36,0],[-22,0],[-45,-1],[-72,0],[-36,0],[-114,0],[-66,-1],[-15,0],[-21,0],[-44,0],[-30,1],[-80,0],[-5,0],[-73,0],[-130,-2],[-24,2],[-142,-1],[-47,0],[-20,0],[-188,0],[-104,2],[-91,-3],[-41,0],[-2,0],[-58,0],[-36,0],[-26,0],[-34,-1],[-47,1],[-72,-1],[-72,1],[-36,-1],[-72,0],[-36,0],[-36,0],[-36,-1],[-36,0],[-108,-1],[-74,0],[-250,-2],[-108,-1],[-61,0],[-176,0],[-1,0],[-45,0],[-71,0],[-36,0],[-36,0],[-37,0],[-62,0],[-91,-1],[-22,0],[-132,-1],[-34,0],[-57,-1],[-35,0],[-35,0],[-39,0],[-128,-1],[-35,-1],[-81,0],[-31,0],[-37,-1],[-38,0],[-22,0],[-88,-1],[-71,-1],[-24,-1]],[[35305,46072],[-4,24],[18,215],[5,54],[6,106],[10,128],[10,130],[-29,66],[0,1],[-96,200],[-56,127],[-64,133],[-11,22],[-50,112],[-60,128],[-58,127],[-61,131],[-36,69],[-40,87],[-61,129],[-1,2],[-81,171],[-38,79],[-55,117],[-32,70],[-2,5],[-27,57],[-59,127],[-24,51],[-17,35],[0,1],[-23,48],[-61,130],[-10,21],[-103,216],[-12,26],[-128,268],[-61,127],[-1,76],[0,31],[0,1],[0,22],[-2,174],[0,38],[-1,51],[1,29],[0,1],[0,34],[0,53],[-3,67],[2,70],[-2,101],[-2,65],[0,21],[-4,304],[-1,77],[-183,0],[0,48],[-1,18],[-1,68],[-7,525],[-2,131],[-2,262],[-2,195],[2,67],[-1,132],[0,134]],[[88574,45261],[-100,0],[-42,0],[-31,0],[-24,0],[-106,-1],[-68,0],[-33,-1],[-58,0],[-33,-1],[-27,1],[-45,-1],[-33,0],[-52,0],[-28,0],[-47,0],[-43,-1],[-27,0],[-29,0],[-66,0],[-24,1],[-37,0],[-27,0],[-49,0],[-40,-1],[-38,0],[-78,-2],[-70,0],[-31,-1],[-69,0],[-27,-1],[-46,1],[-25,-1],[-1,0],[-86,0],[-148,1],[-360,2],[-22,-3],[-43,0],[-45,0],[-45,0],[-43,0],[-32,1],[-98,0],[-24,0],[-87,1],[-43,0],[-56,0],[-42,0],[-46,0],[-86,0],[-34,0],[-87,0],[-25,0],[-50,0],[-45,-1],[-40,1],[-42,0],[-57,0],[-50,0],[-79,0],[-27,0],[-41,1],[-6,0],[-31,0],[-58,0],[-73,-2],[39,191],[-34,1],[-24,0],[-21,-1],[-19,-1],[-23,0],[-25,-1],[-34,-1],[-36,0],[-31,-1],[-30,-1],[-74,-2],[-77,-1],[-61,-2],[-89,-1],[-33,-1],[-83,-2],[-37,0],[-30,0],[-46,0],[-27,0],[-256,-5],[-225,-1],[-78,-1],[-104,-1],[-222,-1],[-102,1],[-90,-1],[-37,-1],[-50,0],[-23,0],[-50,-2],[-91,-3],[-74,-2],[-29,0],[-78,-3],[-154,-4],[-57,-1],[-286,-8],[-78,-3],[-25,0],[-68,-2],[-472,-13],[-88,-2],[-60,-2],[-81,-2],[-70,-1],[-329,-9],[-27,0],[-36,-1],[-38,-1],[-33,0],[-25,-1],[-32,-1],[-25,-1],[-27,-1],[-30,-1],[-71,-1],[-51,-1],[-30,0],[-66,-1],[-45,-1],[-72,-1],[-96,1],[-186,-8],[-238,-1],[-37,0],[-31,0],[-83,-1],[-3,0],[-29,0],[-22,0],[-33,0],[-31,0],[-40,0],[-312,-5],[-39,0],[-49,-1],[-46,0],[-40,0],[-37,-1]],[[79037,45336],[-5,131],[-4,81],[-4,127],[-4,92],[-2,51],[-1,33],[-2,44],[-8,190],[-2,43],[-17,137],[0,27],[-12,253],[0,3],[-2,107],[-2,43],[-1,29],[-1,21],[-1,29],[-2,35],[-1,40],[-3,66],[-1,29],[-1,20],[-1,19],[-1,32],[-1,28],[-2,38],[-1,28],[-1,29],[0,20],[-2,22],[0,33],[-1,23],[-2,42],[-1,33],[-3,67],[-1,18],[-1,20],[-1,28],[-3,76],[-7,186],[7,29],[-2,103],[-5,91],[-2,41],[-2,41],[-10,212],[-1,18],[2,126],[0,4],[-1,15],[-1,21],[-1,27],[0,21],[0,20],[-1,23],[-1,50],[0,34],[-2,28],[0,21],[-8,90],[1,12],[2,51],[0,23],[0,23],[-1,19],[0,26],[0,21],[-9,133]],[[78897,49032],[-2,100],[0,1],[5,32],[-1,32],[-1,34],[-1,20],[-2,46],[-1,53],[-2,25],[-1,43],[-1,43],[0,32],[-1,30],[0,35],[-1,39],[-2,65],[0,27],[-1,27],[0,35],[-2,73],[-1,25],[0,48],[-1,50],[-5,143],[-1,40],[-2,86],[-2,58],[-1,45],[-1,37],[-1,20],[-2,92],[-3,56],[-3,94],[-2,52],[-1,27],[-1,44],[-2,41],[-1,37],[-1,41],[-1,24],[-2,34],[-1,18],[22,15],[4,2],[116,1],[119,-1],[133,1],[34,-1],[129,1],[39,0],[34,0],[17,0],[23,0],[34,0],[3,0],[-3,84],[4,27],[0,6],[0,14],[-1,114],[0,8],[0,10],[-1,48],[0,27],[0,56],[0,25],[-1,44],[-1,43],[0,19],[0,32],[-1,40],[0,52],[0,38],[-1,37],[0,41],[0,23],[0,43],[-1,54],[-1,123],[0,43],[0,37],[-1,42],[0,40],[-1,48],[0,30],[-1,73],[-1,48],[0,42],[-1,61],[0,19],[0,10],[-1,45],[-1,28],[0,5]],[[88538,52590],[-1,-143],[1,-56],[0,-32],[0,-23],[0,-88],[0,-44],[0,-5],[0,-8],[0,-15],[0,-12],[1,-35],[1,-74],[1,-375],[0,-134],[0,-33],[-1,-73],[0,-122],[-1,-20],[0,-11],[0,-8],[-1,-30],[0,-23],[0,-28],[0,-35],[3,-2],[1,-1],[0,-1],[0,-3],[-2,-88],[-1,-44],[0,-1],[1,-57],[-1,-36],[0,-19],[0,-50],[0,-24],[0,-24],[1,-51],[0,-20],[3,-115],[0,-69],[0,-60],[0,-52],[1,-80],[0,-162],[0,-100],[1,-217],[0,-46],[2,-319],[0,-77],[0,-42],[0,-60],[0,-33],[1,-41],[0,-83],[0,-90],[0,-39],[0,-20],[0,-28],[1,-190],[1,-150],[1,-16],[0,-1],[2,-8],[1,-40],[0,-9],[1,-55],[0,-49],[0,-36],[1,-62],[0,-28],[0,-32],[0,-16],[1,-17],[0,-3],[1,-33],[1,-94],[0,-38],[0,-33],[1,-29],[1,-138],[-1,-43],[0,-86],[1,-151],[0,-40],[0,-1],[2,-258],[0,-113],[1,-60],[0,-44],[0,-45],[0,-21],[1,-110],[0,-52],[4,-84],[0,-46],[0,-25],[0,-22],[0,-67],[0,-34],[0,-27],[0,-34],[0,-18],[0,-29],[1,-21],[0,-1],[-1,-29],[1,-22],[-1,-53],[1,-20],[0,-14],[0,-2],[-1,-64],[0,-19],[-1,-109],[-1,-65],[0,-61],[2,-208],[0,-102],[1,-19],[0,-38],[1,-20],[1,-38],[0,-53],[-1,-1],[0,-1],[0,-7],[1,-8],[0,-12],[-1,-22],[0,-60],[1,-16],[0,-44],[0,-9],[0,-14],[1,-42],[0,-40],[1,-27]],[[78897,49032],[-186,-2],[-1,0],[-230,-3],[-330,-3],[-89,-3],[-23,0],[-467,-9],[0,-57],[-101,-1],[-51,-1],[-50,-1],[-28,0],[-49,0],[-39,-1],[-86,-1],[-43,-1],[-30,0],[-30,0],[-102,-1],[-54,0],[-24,0],[-30,0],[-112,0],[3,-140],[0,-20],[1,-24],[3,-143],[0,-13],[0,-40],[-1,-12],[-1,-14],[-3,-29],[0,-33],[0,-1],[-1,-50],[-24,0],[-81,0],[-104,-2],[-102,-2],[-103,-2],[-126,-1],[-83,-1],[-104,0],[-104,-1],[-105,2],[-105,0],[-106,1],[-101,-1],[-56,0],[-34,0],[-29,0],[-96,-1],[-104,0],[-72,-1],[-51,0],[-89,0],[-108,1],[-103,0],[-122,1],[-96,0],[-111,0],[-126,0],[-76,-1],[-2,0],[-63,1],[-141,0],[-104,1],[-50,0],[-55,0],[-65,0],[-55,0],[-188,0],[-81,0],[-34,-1],[-6,0],[-132,0],[-55,0],[-206,1],[-116,1],[-92,1],[-118,0],[-103,-1],[-66,0],[-38,0],[-105,-1],[-81,0],[-23,-1],[-80,0],[-24,0],[-103,-1],[-103,-1],[-104,-1],[-55,0],[-49,-1],[-33,0],[-63,-1],[-9,0],[-205,-2],[-32,0],[-155,0],[-21,0],[-29,0],[-12,0],[-167,1],[-209,-1],[-105,0],[-106,-1],[-104,1],[-77,0],[-39,0],[-41,0],[-46,-1],[-59,0],[-3,0],[-29,0],[-57,0],[-3,0],[-146,0],[-60,0],[-1,0],[-46,0],[-101,0],[-27,0],[-181,0],[-203,0],[-44,0],[-81,0],[-94,1],[-211,0],[-103,0],[-107,0],[-151,0],[-53,0],[-110,0],[-104,0],[-89,0],[-120,1],[-53,-1],[-52,-1],[-106,-1],[-26,0],[-26,0],[-52,-1],[-34,0],[-88,-1]],[[67652,48411],[-1,144],[-1,48],[0,71],[-2,26],[-3,161],[1,89],[0,118],[0,137],[-1,56],[0,35],[0,33],[-2,108],[0,30],[-2,34],[0,10],[0,15],[0,23],[-1,39],[0,17],[0,10],[1,33],[-1,84],[-1,105],[0,23],[0,21],[0,3],[-1,40],[1,36],[0,49],[-2,121],[-1,59],[-3,71],[-3,262],[-2,72],[0,16],[-4,275],[0,22],[-1,35]],[[35305,46072],[-61,0],[-31,0],[-31,0],[-25,0],[-47,0],[-25,0],[-67,-1],[-23,0],[-423,0],[-247,-2],[-1,0],[-68,0],[-207,-2],[-92,-1],[-39,-1],[-72,0],[-106,0],[-53,-1],[-27,0],[-3,0],[-129,-3],[-88,-3],[-286,5],[-42,-2],[-60,0],[-41,0],[-61,0],[-37,0],[-120,-3],[-215,2],[-96,-1],[-155,-1],[-1,0],[-32,0],[-2,0],[-119,-1],[-171,-2],[-123,-1],[-10,0],[-158,-1],[-248,-5],[-83,1],[-31,0],[-25,-1],[-31,0],[-30,0],[-25,-1],[-68,-1],[-36,1],[-26,0],[-30,-1],[-47,0],[-61,-1],[-47,0],[-113,-1],[-40,-1],[-26,0],[-26,1],[-53,0],[-36,0],[-68,2],[-248,-5],[-41,2],[-34,-2]],[[30238,46041],[-50,0],[-39,0],[-23,0],[-55,-1],[-29,0],[-29,0],[-49,0],[-39,0],[-29,-1],[-36,0],[-23,0],[-29,0],[-29,0],[-44,0],[-45,0],[-152,-2],[-30,0],[-35,0],[-34,1],[-32,0],[-31,-1],[-30,0],[-33,0],[-25,1],[-29,0],[-39,-1],[-23,0],[-46,0],[-42,0],[-29,0],[-24,0],[-39,-1],[-34,0],[-23,0],[-8,0],[-26,0],[-33,0],[-29,0],[-57,-1],[-27,0],[-44,0],[-34,0],[-31,1],[-32,0],[-33,0],[-22,-2],[-42,0],[-36,1],[-50,0],[-27,0],[-40,0],[-33,0],[-81,0],[-32,0],[-31,0],[-23,0],[-67,-2],[-27,0],[-50,0],[-23,2],[-42,0],[-49,0],[-24,0],[-97,0],[-33,0],[-75,1],[-29,0],[-149,-2],[-320,2],[-65,1],[-194,2]],[[26945,46039],[1,134],[2,264],[1,254],[0,8],[1,46],[0,11],[1,164],[1,108],[1,179],[0,19],[2,138],[0,130],[0,30],[11,94],[1,86],[1,175],[0,53],[0,62],[1,23],[2,123],[-156,-1],[-174,0],[-31,1],[-105,0],[-368,6],[1,33],[0,29],[1,20],[1,32],[0,19],[1,33],[0,20],[1,43],[-3,18],[2,102],[0,6],[3,163],[-48,0],[-178,0],[-32,1],[-25,0],[-49,0],[-57,0],[-40,1],[-25,0],[-24,0],[-39,0],[-264,12],[2,122],[3,130],[0,2],[2,71],[2,75],[1,34],[2,81],[1,59],[6,227],[3,122],[2,95],[3,88],[1,67],[5,184],[0,27],[1,9],[1,42],[0,3],[1,73],[1,61],[-49,0],[-37,1],[-28,-1],[-2,0],[-252,-2],[-278,-1],[-50,0],[-93,1],[-48,0],[-43,0],[-51,0],[-121,1],[-33,0],[-22,0],[-24,0],[-31,0],[-29,0],[-35,0],[-42,0],[-24,0],[-26,0],[-26,0],[-23,1],[-90,-3],[-163,6],[-142,-2],[-235,-2],[-109,1],[-388,1],[0,8],[1,19],[0,19],[1,25],[0,23],[0,23],[1,34],[0,39],[1,67],[0,20],[0,22],[0,24],[1,20],[-1,29],[1,19],[-7,18],[6,17],[1,19],[0,25],[1,31],[2,22],[0,42],[-1,81],[-94,0],[-219,-1],[-67,6],[-399,2],[-660,5],[-31,0],[-154,-1],[-74,1],[-30,-1],[-6,0],[-28,0],[-35,1],[-84,0],[-34,1],[-98,0],[-33,1],[-41,0],[-41,0],[-41,0],[-41,1],[-62,-1],[-29,0],[-48,1],[-134,0],[-69,1],[-29,-1]],[[20332,50912],[24,50],[17,37],[106,86],[5,4],[111,84],[27,20],[20,21],[85,91],[75,94],[27,33],[86,53],[22,16],[83,58],[23,16],[3,2],[1,3],[10,31],[12,37],[-15,42],[-45,49],[-53,48],[-17,15]],[[20332,50912],[-120,-168],[-40,-53],[-12,-22],[-2,-4],[-11,-68],[0,-4],[5,-11],[18,-36],[-1,-14],[-3,-26],[-1,-13],[-15,-36],[-4,-6],[-24,-35],[-22,-32],[-45,-49],[-51,-57],[-51,-75],[-1,-13],[-13,-14],[-43,-80],[-26,-37],[-10,-13],[-31,-40],[-60,-68],[-37,-43],[-63,-79],[-60,-57],[-42,-37],[-155,-101],[-31,-33],[-55,-129],[-30,-71],[-11,-31],[0,-9],[-1,-2],[-2,-21],[0,-7],[3,-62],[0,-1],[1,-17],[6,-20],[36,-83],[24,-37],[36,-43],[14,-12],[13,-11],[5,-5],[15,-21],[3,-3],[29,-50],[25,-44],[-1,-7],[70,-112],[5,-19],[40,-77],[48,-77],[43,-60],[42,-43],[37,-29],[48,-28],[12,-3],[96,-59],[19,-18],[111,-111],[24,-24],[2,-5],[35,-101],[12,-68],[20,-117],[31,-86],[116,-236],[38,-51],[18,-24],[86,-83],[30,-37],[72,-136],[7,-13],[4,-9],[3,-7],[44,-106],[41,-72],[27,-51],[18,-18],[9,-16],[42,-120],[22,-39],[23,-29],[12,-15],[13,-17],[20,-37],[35,-139],[5,-29],[5,-30],[1,-10],[5,-33],[17,-33],[25,-25],[5,-32],[-1,-37],[-46,-72],[-32,-33],[-114,-107],[-19,-28],[-3,-29],[19,-46]],[[20733,46066],[11,-67],[-10,-62],[-27,-76],[-30,-50],[-47,-55],[-45,-81],[-16,-66],[-31,-33],[-18,-17],[-2,-6],[-8,-25],[-2,-8],[-10,-40],[-11,-41],[-22,-37],[-14,-22],[-3,-3],[-29,-28],[-31,-39],[-15,-18],[-87,-108],[-47,-58],[-13,-17],[-36,-37],[-31,-30],[-17,-21],[-23,-40],[-17,-25],[-13,-27],[-11,-22],[0,-1],[-3,-22],[-7,-44],[0,-2],[1,-21],[-2,-29],[-5,-32],[-2,-12],[-3,-12],[0,-21],[-5,-40],[-3,-33],[-5,-22],[-5,-22],[-6,-20],[-1,-5],[-2,-6],[-3,-11],[-11,-17],[-17,-24],[-16,-26],[-18,-38],[-10,-27],[-5,-20],[-1,-4],[-5,-28],[-4,-33],[-2,-25],[1,-7],[10,-69],[6,-37],[7,-38],[10,-43],[1,-30],[-1,-36],[0,-5],[-3,-16],[-3,-13],[2,-18],[0,-4],[11,-29],[17,-57],[1,-3],[12,-60],[-2,-53]],[[20007,43792],[-2,0],[-44,0],[-209,-2],[-58,1],[-516,10],[-142,0],[-249,0],[-154,3],[-48,1],[-219,2],[-148,2],[-154,2],[-24,1],[-49,2],[-32,1],[-173,3],[-361,11],[-205,6],[-249,5],[-33,1],[-23,0],[-50,1],[-233,3],[-552,8],[-247,3],[-25,0],[-444,6],[-4,0],[-136,1],[-104,1],[-125,1],[-45,1],[-42,0],[-73,1],[-25,-1],[-24,1],[-24,-1],[-49,0],[-49,0],[-24,0],[-48,0],[-39,0],[-41,1],[-31,0],[-50,0],[-37,0],[-48,0],[-105,0],[-64,0],[-30,-2],[-142,0],[-53,1],[-14,0],[-9,0],[-204,3],[-37,0],[-245,3],[-25,-6],[-27,-3],[-23,0],[-40,0],[-25,0],[-24,0],[-24,-1],[-24,-1],[-25,0],[-24,0],[-24,0],[-40,1],[-23,-2],[-29,0],[-26,0],[-17,0],[-34,0],[-172,3]],[[12817,43863],[-48,55],[-207,86],[-143,23],[-168,27],[-92,26],[-73,21],[-139,72],[-119,52],[-148,29],[-45,9],[-152,57],[-74,27],[-90,39],[-209,91],[-312,135],[-122,73],[-206,123],[-78,63],[-29,23],[-9,7],[-195,156],[-46,36],[-23,19],[-66,95],[-7,49],[-6,35],[-3,27],[-9,58],[-8,59],[-6,38],[-11,78],[-5,34],[-4,2],[-149,88],[-47,40],[-170,149],[-25,21],[-173,240],[-41,51],[-95,118],[-16,14],[-67,57],[-15,13],[-77,9],[-153,18],[-98,11],[-246,28],[-366,43],[-233,58],[-291,257],[-59,101],[-24,139],[-6,32],[-14,45],[-18,58],[-55,182],[-75,88],[-20,20],[-33,33],[-15,9],[-33,20],[-52,30],[-23,13],[-365,94],[-38,10],[-55,14],[-17,6],[-453,143],[-135,79],[-96,57],[-38,22],[-100,107],[-7,7],[-2,4],[-34,37],[-58,66],[-19,10],[-112,62],[-103,57],[-2,2],[-82,80],[-51,43],[-21,18],[-35,29],[-129,110],[-254,132],[-78,31],[-156,62],[-43,17],[-91,37],[-70,74],[-3,4],[-10,10],[-22,11],[-413,214],[-58,30],[-396,204],[-64,47],[-119,84],[-292,209],[-39,28],[-1,6],[-6,34],[-15,83],[-8,45],[55,204],[28,101],[0,8],[2,43]],[[55335,48457],[0,-20],[2,-201],[2,-50],[1,-10],[7,-180],[0,-42],[0,-22],[1,-21],[2,-20],[-1,-20],[1,-19],[0,-16],[1,-34],[1,-45],[1,-32],[0,-25],[-1,-46],[0,-1],[1,-34],[4,-51],[-1,-7],[-3,-24],[2,-112],[4,-283],[6,-263],[4,-263],[-1,-128],[0,-136],[0,-161],[2,-58],[2,-43],[-6,-132],[-3,-134],[-2,-50],[-3,-72],[-3,-27],[1,-45],[0,-63],[-2,-134],[-2,-70],[-1,-68],[-3,-95],[-4,-123],[-1,-47],[-5,-126],[-3,-87],[-2,-50],[-2,-25],[-6,-138],[-2,-45],[-2,-52],[32,-3],[-3,-90],[-4,-68],[-3,-78],[0,-1],[-2,-47],[-1,-73],[-1,-63],[-1,-130],[0,-103],[0,-22],[0,-35],[0,-117],[0,-3],[0,-19],[0,-20],[0,-29],[1,-56],[0,-42],[1,-37],[0,-38],[-1,-33],[0,-35],[0,-18],[1,-49],[0,-23],[1,-64],[0,-1],[0,-55],[0,-25],[0,-20],[0,-20],[0,-27],[1,-44],[0,-124],[-104,0],[-56,1],[-256,4],[-213,2],[-162,1],[-39,0],[-94,3],[-130,3],[-124,2],[-71,1],[-294,9],[-118,3],[-242,8],[-169,3],[-137,4],[-9,1],[-273,6],[-55,-1]],[[52796,42945],[-36,0],[-25,0],[-120,0],[-25,0],[-26,0],[-97,-1],[-1,0],[-31,0],[-25,1],[-32,0],[-129,0],[-26,0],[-77,0],[-77,1],[-25,0],[-26,0],[-43,0],[-24,0],[-43,0],[-76,0],[-26,0],[-54,0],[-49,0],[-26,0],[-42,1],[-35,0],[-46,0],[-25,0],[-52,-1],[-25,0],[-26,0],[-29,0],[-74,0],[-51,-1],[-37,0],[-24,0],[-39,0],[-5,0],[-29,0],[-24,0],[-26,0],[-26,0],[-6,0],[-28,0],[-23,0],[-83,-1],[-31,0],[-25,0],[-103,-1],[-51,0],[-52,0],[-25,0],[-78,0],[-51,-1],[-51,0],[-51,0],[-87,0],[-24,0],[-26,0],[-67,0],[-87,0],[-25,0],[-52,-1],[-94,1],[-25,-1],[-29,-1],[-27,1],[-51,0],[-128,0],[-52,1],[-167,0],[-34,0],[-52,1],[-26,1],[-25,1],[-53,0],[-50,0],[-26,0],[-51,0],[-60,1],[-37,0],[-54,0],[-32,0],[-25,0],[-51,1],[-26,0],[-26,0],[-51,0],[-52,1],[-25,0],[-26,0],[-43,0],[-26,0],[-51,-1],[-26,0],[-25,0],[-34,0],[-26,0],[-66,0],[-62,-1],[-60,0],[-29,0],[-25,0],[-50,0],[-34,-1],[-34,0],[-52,0],[-25,-1],[-26,0],[-34,0],[-34,0],[-101,-1],[-36,0],[-145,1],[-26,0],[-35,0],[-34,0],[-69,0],[-35,0],[-35,0],[-23,0],[-94,0],[-35,0],[-85,0],[-26,0],[-26,0],[-42,0],[-26,0],[-55,0],[-27,0],[-67,0],[-47,0],[-34,0],[-25,0],[-35,0],[-43,0],[-42,0],[-26,0],[-43,0],[-34,0],[-25,0],[-66,0],[-24,0],[-25,0],[-33,0],[-54,0],[-74,0],[-34,0],[-78,0],[-31,0],[-78,0],[-25,-1],[-42,1],[-44,0],[-85,0],[-52,0],[-61,-1],[-26,1],[-55,0],[-26,0],[-34,-1],[-120,0],[-34,0],[-60,0],[-30,0],[-47,0],[-25,0],[-26,0],[-60,0],[-26,0],[-1,0],[-42,-1],[-68,0],[-102,0],[-43,1],[-49,0],[-30,0],[-24,0],[-39,0],[-31,0],[-32,0],[-48,0],[-26,1],[-62,-1],[-56,1],[-28,0],[-51,0],[-39,0],[-52,0],[-37,0],[-30,0],[-61,0],[-31,0],[-39,0],[-49,4],[0,20],[-1,40],[0,8],[-2,17],[-2,19],[-1,19],[0,7],[0,18],[3,32],[-1,37],[-2,47],[-1,36],[-1,64],[-1,29],[0,31],[-1,19],[0,33],[-1,28],[-1,19],[-1,66],[-2,44],[0,19],[-1,30],[0,18],[-2,55],[0,19],[-1,27],[-1,39],[0,21],[-1,28],[-1,33],[0,26],[-1,45],[-1,32],[-1,33],[-2,40],[-1,35],[-2,64],[0,38],[-2,38],[-1,43],[0,39],[0,29],[0,29],[-1,31],[0,26],[0,29],[0,47],[6,44],[0,25],[-1,23],[0,21],[0,27],[-1,26],[-1,23],[0,21],[-1,29],[0,27],[-1,33],[-1,35],[0,26],[-1,51],[-1,27],[0,29],[-1,22],[-2,80],[0,25],[-1,30],[-1,74],[-1,32],[-1,47],[-1,52],[0,21],[-1,38],[-1,28],[-1,54],[-1,65],[-1,41],[-1,27],[-1,35],[0,25],[-1,66],[-1,18],[0,27],[-1,88],[-2,72],[0,52],[-1,23],[0,23],[0,33],[-1,21],[0,19],[-3,19]],[[67652,48411],[1,-49],[1,-60],[1,-87],[0,-37],[1,-28],[-1,-66],[2,-66],[0,-35],[0,-96],[0,-57],[1,-77],[0,-49],[0,-82],[1,-112],[3,-152],[1,-34],[0,-31],[1,-67],[1,-65],[0,-28],[0,-28],[1,-52],[0,-20],[0,-62],[1,-142],[0,-30],[1,-38],[0,-3],[-1,-95],[0,-43],[1,-24],[1,-43],[2,-80],[0,-33],[1,-50],[1,-83],[1,-116],[0,-102],[1,-20],[0,-5],[0,-16],[0,-18],[0,-21],[0,-8],[0,-36],[1,-65],[1,-106],[0,-2],[0,-17],[0,-29],[0,-33],[0,-31],[0,-35],[1,-50],[0,-91],[1,-33],[2,-90],[1,-75],[1,-66],[0,-25],[0,-38],[1,-67],[0,-45],[1,-48],[0,-8],[0,-32],[0,-65],[1,-65],[0,-66],[1,-65]],[[67687,44718],[-450,3],[-64,3],[-144,1],[-176,1],[-202,1],[-218,1],[-209,1],[-46,0],[-143,0],[-1,0],[-21,0],[-4,0],[-25,-1],[-389,0],[-200,-1],[-74,0],[-166,-1],[0,39],[-1,200],[0,20],[-1,41],[1,29],[-2,90],[-2,110],[-208,0],[-206,4],[-3,131],[-3,86],[0,46],[-107,1],[-42,1],[-270,3],[-4,69],[-2,79],[-1,54],[0,42],[-1,21],[-55,-1],[-75,0],[-294,0],[2,97],[0,37],[2,125],[-214,1],[-223,-1],[-95,-1],[-37,0],[-270,-2],[-104,0],[-282,2],[-5,0],[-38,0],[-63,0],[-135,2],[-16,0],[-46,1],[-69,0],[-28,1],[-24,1],[-29,-1],[1,19],[-1,93],[0,56],[0,65],[0,31],[0,113],[0,18],[-2,78],[0,7],[-1,35],[-1,74],[-4,185],[0,2],[-1,28],[0,11],[-1,59],[-4,179],[-110,2],[-98,1],[-83,1],[-48,1],[-52,1],[-37,0],[-72,1],[-45,1],[-191,2],[-30,0],[-81,-1],[-93,1],[-50,0],[-79,0],[-295,2],[-310,2],[-180,1],[-59,0],[-130,1],[-1,35],[-2,88],[-3,79],[0,61],[-4,206],[-2,58],[-2,110],[-1,36],[0,18],[-2,93],[-2,26],[0,3],[-7,186],[0,2],[-1,53],[0,1],[0,2],[-8,260]],[[26945,46039],[-143,1],[-287,2],[-262,2],[-171,1],[-36,0],[-40,0],[-23,0],[-19,0],[-37,0],[-36,0],[-3,0],[-554,4],[-68,-1],[-49,0],[-49,1],[-43,0],[-54,0],[-143,0],[-92,1],[-27,0],[-93,0],[-40,0],[-25,0],[-25,0],[-23,0],[-23,0],[-69,0],[-56,0],[-45,1],[-53,0],[-40,0],[-32,0],[-24,1],[-24,0],[-11,0],[-12,0],[-106,0],[-24,0],[-65,0],[-75,1],[-89,1],[-60,0],[-61,0],[-23,1],[-40,0],[-89,0],[-58,1],[-65,0],[-159,1],[-91,1],[-282,-1],[-86,-1],[-90,0],[-70,0],[-105,1],[-37,0],[-30,-1],[-30,1],[-27,0],[-24,0],[-74,0],[-36,0],[-23,0],[-36,0],[-154,0],[-23,2],[-28,0],[-63,1],[-66,0],[-34,0],[-49,0],[-22,0],[-42,1],[-32,0],[-45,1],[-25,1],[-85,-1],[-24,4],[-66,0],[-39,1],[-77,1],[-38,-1],[-39,1],[-39,0],[-77,0],[-26,0],[-32,-1],[-26,0],[-29,0],[-29,1],[-23,0],[-38,0],[-29,0],[-29,0],[-26,-1],[-28,0],[-113,0],[-31,-1]],[[79037,45336],[-38,0],[-63,-1],[-103,0],[-85,-1],[-24,1],[-97,-1],[-100,-2],[-4,0],[-52,0],[-52,-1],[-80,-1],[-127,-2],[-60,1],[-66,0],[-102,-1],[-62,0],[-62,-1],[-22,0],[0,-20],[1,-68],[8,-315],[2,-127],[3,-129],[1,-30],[0,-15],[2,-83],[2,-104],[3,-113],[0,-27],[1,-7],[6,-278],[3,-98],[7,-167],[2,-48],[4,-19],[2,-63],[0,-64],[1,-64]],[[77886,43488],[-65,-1],[-44,-1],[-108,-2],[-105,0],[0,-20],[-419,-6],[-309,-4],[-110,-2],[-76,-1],[-144,-2],[-98,-1],[-68,0],[-27,-2],[-11,0],[-39,-1],[-42,0],[-27,0],[-106,-3],[-109,2],[-102,-1],[-51,-1],[-51,0],[-23,-1],[-80,-1],[-106,-1],[-104,-2],[-53,0],[-50,0],[-104,0],[-107,1],[-3,0],[-121,-8],[-35,-1],[-32,0],[-132,-2],[-65,0],[-93,-1],[-52,-1],[-52,-1],[-53,1],[-30,-2],[-266,-5],[-40,-1],[-141,0],[-37,0],[-366,-5],[-165,1],[-104,-1],[-143,1],[-20,0],[-43,1],[-102,0],[-24,0],[-23,0],[-56,-1],[-52,0],[-51,0],[-54,0],[-25,0],[-26,0],[-24,0],[-36,0],[-34,0],[-23,3],[-104,-2],[-39,-1],[-40,-1],[-24,0],[-51,-1],[-52,-1],[-64,-2],[-39,0],[-103,-1],[-77,0],[-28,-1],[-103,0],[-104,-1],[-104,1],[-23,0],[-49,0],[-31,0],[-104,0],[-104,-1],[-34,0],[-147,-1],[-29,0],[-75,0],[-71,0],[-22,0],[-37,0],[-58,-1],[-44,0],[-116,0],[-30,0],[-37,0],[-23,-1],[-25,0],[-30,0],[-52,0],[-56,0],[-23,1],[-4,0],[-43,0],[-26,0],[-28,0],[-38,0],[-14,0],[-15,0],[-22,0],[-40,0],[-30,0],[-33,-1],[-36,-1],[-45,0],[-161,0],[-118,0],[-30,0],[-50,1],[-4,0],[-193,1],[-22,-1],[-197,1],[-37,0],[-67,1],[-104,0],[-140,0],[-9,0],[-19,0],[-45,0],[-202,-1],[-51,0],[-2,0],[-153,3],[-106,-4],[-23,0],[-33,-1],[-52,-1],[-23,0],[-25,-3],[-28,-1],[-28,0],[-48,-2],[-73,-1],[-26,0],[-27,3],[-37,-1],[-23,-1],[-79,4],[-62,3],[-27,4],[-4,0],[-92,3]],[[67679,43408],[2,130],[1,27],[0,20],[0,24],[-2,38],[0,23],[1,129],[0,30],[2,234],[2,263],[1,129],[2,133],[-1,130]],[[67679,43408],[-1,-25],[0,-29],[0,-22],[0,-21],[-1,-31],[0,-39],[-1,-19],[1,-22],[-1,-38],[-2,-44],[-1,-23],[0,-5],[0,-22],[-1,-92],[0,-31],[0,-2],[0,-20],[2,-21],[0,-19],[-3,-18],[0,-35],[0,-19],[0,-24],[0,-30],[0,-23],[0,-30],[1,-48],[0,-19],[0,-37],[1,-43],[0,-36],[0,-27],[0,-38],[0,-26],[1,-29],[0,-29],[-1,-119],[-1,-93],[0,-61],[-1,-131],[0,-99],[0,-36],[0,-35],[1,-68],[0,-21],[0,-20],[0,-5],[0,-30],[0,-24],[0,-51],[0,-143],[0,-7],[3,-118],[0,-20],[0,-29],[1,-23],[0,-33],[0,-21],[-2,-25],[0,-109],[3,-163],[2,-98],[-6,-136],[-1,-25],[6,-35],[0,-37],[0,-29]],[[67678,40528],[-312,-2],[-40,0],[-169,1],[-111,2],[-39,0],[-67,-1],[-95,-1],[-206,0],[-103,-1],[-72,0],[-242,0],[-36,0],[-26,2],[-31,0],[-113,-1],[-208,2],[-207,1],[-124,0],[-30,0],[-64,1],[-134,0],[-39,0],[-205,1],[-102,1],[-108,1],[-205,0],[-207,2],[-135,1],[-63,1],[-107,1],[-110,1],[-146,1],[-269,0],[-199,0],[-217,1],[-115,1],[-49,0],[-37,0],[-34,0],[-65,-1],[-111,-1],[-114,-1],[-59,1],[-249,0],[-135,0],[-280,1],[-117,0],[-37,0],[-161,1],[-41,0],[-32,0],[-24,0],[-96,-1],[-28,2],[-86,-1],[-99,0],[-108,-1],[-25,1],[-29,0],[-226,1],[-33,0],[-102,1],[-210,1],[-69,1],[-132,3]],[[60234,40550],[-26,3],[-283,-1],[-68,0],[-31,0],[-30,1],[-10,0],[-29,0],[-30,0],[-41,-1],[-41,0],[-34,0],[-27,0],[-24,0],[-24,3],[-26,-3],[-454,0],[-11,1],[-62,1],[-150,-2],[-51,-1],[-29,1],[-79,0],[-41,0],[-27,0],[-28,1],[-27,0],[-41,0],[-28,0],[-109,0],[-42,0],[-75,1],[-100,0],[-56,0],[-48,1],[-48,0],[-41,0],[-41,0],[-62,0],[-48,0],[-34,0],[-35,0],[-34,0],[-27,0],[-35,0],[-39,0],[-21,0],[-35,-1],[-83,0],[-41,0],[-30,-1],[-87,0],[-27,0],[-52,-1],[-37,0],[-50,0],[-46,0],[-37,-1],[-42,0],[-45,0],[-34,0],[-82,-1],[-28,0],[-69,0],[-54,-1],[-35,0],[-41,0],[-54,-1],[-55,0],[-43,0],[-40,0],[-39,-1],[-52,0],[-31,-1],[-33,0],[-32,0],[-23,0],[-37,-1],[-34,0],[-34,0],[-29,0],[-23,-1],[-25,0],[-35,-1],[-55,-1],[-53,0],[-36,-1],[-42,0],[-66,-1],[-35,0],[-27,-1],[-35,0],[-24,0],[-68,-1],[-41,1],[-37,1],[-25,0],[-22,2],[-7,1],[-26,-2],[-43,-1],[-25,1],[-27,-4],[-42,-1],[-35,1],[-48,0],[-34,0],[-35,1],[-42,1],[-36,0],[-51,1],[-38,0],[-27,0],[-43,1],[-29,1],[-26,0],[-27,1],[-26,0],[-29,1],[-25,0],[-35,0],[-26,1],[-28,1],[-32,0],[-36,1],[-26,0],[-28,1],[-30,1],[-25,0],[-35,1],[-33,1],[-33,0],[-24,1],[-26,0],[-23,1],[-23,0],[-25,1],[-30,0],[-30,1],[-27,1],[-30,0],[-26,0],[-31,1],[-23,0],[-28,0],[-27,1],[-29,0],[-27,1],[-26,1],[-31,0],[-34,0],[-29,1],[-30,1],[-26,0],[-36,0],[-35,1],[-22,0],[-8,0],[-37,1],[-59,1],[-65,1],[-24,0],[-39,0],[-36,1],[-35,0],[-24,0],[-42,1],[-33,0],[-24,0],[-33,1],[-47,0],[-26,-1],[-48,0],[-72,0],[-38,0],[-49,-1],[-35,0],[-28,0],[-31,0],[-38,13]],[[52790,40580],[9,250],[1,18],[1,155],[0,42],[1,32],[-1,19],[1,31],[0,24],[0,27],[-1,55],[0,33],[0,20],[0,55],[0,19],[-1,48],[0,28],[0,28],[0,20],[0,36],[0,21],[0,33],[-1,28],[1,20],[-1,23],[0,34],[0,81],[0,42],[0,23],[0,33],[-1,29],[0,23],[0,43],[-1,48],[0,26],[0,23],[0,34],[0,29],[0,22],[0,19],[0,26],[0,28],[0,32],[0,52],[0,59],[0,27],[0,28],[0,48],[0,25],[0,25],[0,40],[1,24],[0,29],[-1,25],[0,20],[0,2],[0,21],[-3,18],[2,19],[1,49],[0,1],[0,63],[0,32],[-1,42],[0,35],[0,21]],[[52790,40580],[-134,-1],[-34,0],[-26,-1],[-22,0],[-43,0],[-52,0],[-34,0],[-26,-1],[-29,0],[-23,0],[-50,0],[-27,0],[-1,0],[-65,0],[-41,0],[-32,-1],[-29,0],[-34,0],[-30,0],[-27,-1],[-47,0],[-32,0],[-34,0],[-27,0],[-34,0],[-67,0],[-33,0],[-39,0],[-31,0],[-23,0],[-28,0],[-26,0],[-46,0],[-38,0],[-34,0],[-35,-1],[-50,0],[-59,0],[-60,0],[-26,0],[-77,-1],[-36,0],[-29,0],[-31,0],[-32,0],[-23,0],[-28,0],[-25,0],[-32,0],[-57,0],[-55,-1],[-29,1],[-35,-1],[-36,0],[-25,0],[-24,0],[-33,1],[-87,-1],[-24,0],[-40,0],[-69,0],[-101,1],[-9,-333],[2,-188],[0,-137],[2,-34],[0,-62],[0,-34],[-2,-134],[-2,-230],[5,-18],[-2,-118],[0,-13],[0,-19],[0,-129],[0,-71],[-1,-150],[2,-28],[2,-144],[0,-48],[1,-36],[0,-19],[0,-19],[0,-43],[0,-23],[0,-37],[0,-19],[0,-24],[0,-37],[0,-19],[3,-26],[-5,-19],[6,-17],[-5,-20],[0,-18],[-1,-70],[0,-31],[3,-223],[1,-84],[3,-25],[4,-39],[2,-26],[-7,-27],[-1,-21],[0,-32],[0,-47],[1,-76],[0,-48],[1,-24],[0,-30],[-1,-22],[0,-41],[1,-42],[0,-34],[1,-52],[0,-17],[0,-3],[0,-40],[0,-21],[-1,-33],[0,-14],[-2,-32]],[[50335,37153],[-204,0],[-209,1],[-139,0],[-70,0],[-41,1],[-26,0],[-35,0],[-35,0],[-51,0],[-58,0],[-80,0],[-68,-1],[-31,1],[-34,-1],[-27,0],[-27,0],[-24,0],[-25,0],[-35,0],[-34,0],[-52,-1],[-34,0],[-174,-3],[-38,0],[-90,-1],[-341,-2],[-38,1],[-48,0],[-1006,1],[-1886,3],[-720,1],[-411,0],[-80,0],[-96,0],[-146,0],[-425,1],[-42,0],[-259,0],[-96,1],[-124,0],[-2,0],[-106,0],[0,-11],[0,-72],[0,-149],[1,-134],[0,-130],[-2,-24],[-87,0],[-175,0],[-74,0],[-276,0],[-31,0],[-224,-3],[-47,1],[-29,0],[-34,-1],[-150,-2],[-75,-1]],[[41665,36629],[-51,0],[-34,0],[-74,0],[-347,-1],[-73,0],[-573,-1],[-147,-1]],[[40366,36626],[4,20],[-3,106],[0,15],[-2,87],[-2,80],[-1,73],[-2,148],[0,26],[0,56],[2,60],[-1,24],[0,24],[0,37],[-1,19],[0,18],[0,24],[0,38],[0,22],[0,29],[-1,19],[0,19],[-1,53],[0,41],[0,20],[-8,202],[0,20],[4,25],[0,32],[0,68],[-1,26],[0,26],[0,20],[-1,52],[-1,67],[0,46],[-1,43],[0,25],[0,19],[-6,57],[-1,10],[-1,63],[0,3],[0,175],[0,99],[0,135],[-3,100],[0,24],[2,39],[-1,56],[-1,34],[-2,20],[0,57],[-1,67],[0,19],[0,7],[-4,75],[-1,30],[-1,31],[-1,99],[0,28],[1,28],[-1,59],[4,19],[-3,27],[0,18],[-2,39],[0,25],[-2,15],[0,6],[-1,43],[-1,54],[-1,38],[0,20],[-1,20],[0,13],[-1,38],[0,21],[-1,24],[-1,33],[0,31],[-1,29],[-1,43],[-1,32],[-1,26],[0,21],[0,27],[0,19],[0,25],[-1,18],[-4,132],[0,19],[-2,76],[-2,55],[0,47],[-1,39],[-2,64],[-1,24],[0,29],[-1,19],[0,42],[0,71],[-1,26],[-2,31],[-2,26],[-3,39],[-1,19],[0,22],[-2,56],[-2,43],[-2,21],[-1,98],[-4,45],[-1,30],[-1,30],[0,27],[-1,27],[-1,25],[0,39],[-1,37],[0,29],[0,20],[0,3],[-1,37],[0,21],[0,19],[-1,26],[0,31],[-2,64],[0,36],[0,38],[-1,23],[0,23],[-1,70],[-2,85],[-1,57],[0,18],[-1,35],[-1,30],[-1,20],[-1,26],[-1,82],[-3,75],[0,25],[-1,52],[-1,36],[-1,21],[-1,134],[-3,142],[102,0],[-4,133],[-1,25],[0,22],[-1,19],[-1,55],[-1,22],[0,20],[-1,18],[-1,34],[0,22],[0,25],[1,29],[-1,27],[0,27],[-1,45],[1,20],[-2,24],[-1,33],[-1,28],[0,19],[-1,92],[0,23],[-1,19],[0,1],[-1,27],[-1,39],[0,49],[-1,35],[-2,123],[-2,129],[-2,136],[-1,66],[-3,198],[-2,117],[-3,146],[-2,132],[-1,123],[-1,65],[-1,21],[0,19],[0,40],[-1,30],[0,22],[-1,42],[0,30],[-1,24],[0,33],[0,19],[-1,53],[-1,21],[0,21],[0,19],[-1,61],[-1,39],[-1,73],[-1,34],[-1,30],[0,36],[-3,135],[-3,86],[-1,43],[0,19],[0,23],[-1,26]],[[40366,36626],[-23,0],[-94,0],[-41,3],[-25,-1],[-25,-1],[-4,0],[-31,0],[-108,0],[-4,0],[-69,-1],[-45,0],[-29,0],[-129,0],[-101,-1],[-42,0],[-241,0],[-31,0],[-98,-5],[-12,-1],[-116,-2],[-59,0],[-82,0],[-39,0],[-63,0],[-166,0],[-136,0],[-62,0],[-57,0],[-42,0],[-80,0],[-3,0],[-191,0],[-35,0],[-1,0],[-23,0],[-35,0],[-47,0],[-46,0],[-52,0],[-30,0],[-50,0],[-23,0],[-25,0],[-38,0],[-71,-1],[-72,0],[-48,0],[-72,0],[-50,1],[-24,0],[-82,0],[-9,0],[-62,0],[-30,0],[-30,0],[-47,1],[-27,0],[-48,0],[-29,0],[-47,0],[-32,0],[-53,0],[-70,1],[-63,-1],[-52,0],[-5,0],[-20,0],[-34,0],[-193,0],[-24,0],[-101,1],[-191,1],[-27,-1],[-166,0],[-106,2],[-25,1],[-22,2],[-229,0],[-169,-1],[-110,-1],[-284,-1],[-98,0],[-27,1],[-22,-1],[-23,-1],[-28,1],[-49,-1],[-199,3],[-3,0],[-122,0],[-37,0],[-36,0],[-96,0],[-4,0],[-317,1],[-268,0],[-2,0],[-249,-2],[-18,0],[-54,0],[-140,0],[-206,0],[-22,-1],[-69,-1],[-41,0],[-124,0],[-251,0],[-79,0],[-45,-1],[-70,0],[-37,0],[-68,0],[-45,0],[-28,0],[-36,0],[-69,-1],[-37,1],[-40,1],[-29,-1],[-25,-1],[-23,0],[-83,1],[-284,3],[-229,2],[-73,1],[-149,1],[-53,1],[-106,0],[-82,-1],[-172,8],[-176,10],[-34,2]],[[30412,36646],[-1,79],[0,20],[0,28],[-1,27],[1,25],[0,21],[0,22],[0,27],[0,31],[0,23],[0,21],[0,23],[0,24],[0,18],[1,19],[-1,30],[1,23],[0,34],[1,49],[0,23],[1,12],[0,11],[0,29],[-1,20],[0,4],[2,21],[0,23],[-1,21],[0,52],[0,64],[0,82],[-1,159],[0,100],[2,137],[-2,101],[0,30],[0,25],[-1,19],[-1,89],[0,33],[-1,93],[-1,71],[2,42],[-1,27],[0,67],[-1,58],[-1,52],[0,7],[0,73],[0,2],[0,17],[1,149],[0,158],[-1,70],[-1,132],[0,30],[-1,101],[-1,134],[-1,47],[-1,33],[0,66],[0,83],[1,23],[-2,78],[0,38],[0,23],[-1,100],[0,20],[0,11],[0,8],[-11,264],[-3,73],[-7,190],[-5,263],[-2,83],[-1,27],[-1,37],[-3,106],[0,13],[0,46],[-1,81],[-2,134]],[[30365,41375],[-4,132],[-1,23],[0,21],[3,104],[0,4],[-2,109],[0,1],[-2,90],[-1,40],[-2,116],[-4,147],[-2,51],[-2,63],[-2,147],[-1,78],[-4,186],[-5,212],[-23,0],[-6,77],[-3,296],[0,19],[-7,125],[0,35],[0,29],[-1,30],[-1,30],[0,20],[-2,41],[0,49],[-1,97],[-10,467],[-5,31],[1,21],[-1,20],[0,19],[0,174],[-3,101],[-3,97],[-2,63],[-1,81],[-6,179],[-2,57],[-6,205],[-4,81],[-3,51],[0,20],[0,24],[-1,31],[-1,51],[0,20],[-1,24],[0,31],[-1,24],[0,31],[-1,25],[-1,24],[0,14],[0,10],[0,23],[0,28],[0,29],[0,24],[0,19],[1,24],[0,39],[-1,32],[0,23],[-2,36],[-1,41]],[[30365,41375],[-61,1],[-23,0],[-25,0],[-31,0],[-67,2],[-636,-1],[-184,-2],[-6,0],[-3,-64],[-14,0],[-38,0],[-147,0],[4,-46],[6,-74],[0,-31],[16,-174],[1,-2],[3,-40],[2,-28],[5,-68],[4,-131],[-199,0],[-171,1],[-59,2],[-29,-1],[-32,2],[-262,-2],[-169,-1],[-23,0],[-77,-2],[-54,-2],[-185,-1],[-40,-1],[-41,-1],[-41,-2],[-30,0],[-40,-2],[-31,-1],[-61,-1],[-30,-1],[-30,-1],[-41,-1],[-30,0],[-112,2],[-31,1],[-30,1],[-25,0],[-213,2],[-116,0],[-7,0],[-137,1],[-8,0],[-145,0],[2,-53],[3,-81],[1,-40],[0,-32],[1,-34],[0,-39],[1,-29],[0,-24],[0,-20],[1,-43],[1,-47],[-4,-19],[0,-27],[2,-93],[1,-73],[0,-263],[-83,1],[-34,-1],[-41,0],[-79,0],[-33,0],[-39,0],[-30,0],[-23,1],[-46,0],[-296,0],[-2,0],[-397,2],[-4,0],[-162,0],[-98,-2],[-340,1],[-24,0],[-39,1],[-28,0],[-23,1],[-100,-1],[-27,0],[-48,0],[-49,0],[-73,1],[-41,0],[-57,0],[-125,-1],[-36,2],[-172,2],[-75,0],[-32,0],[-73,0],[-44,1],[-82,0],[-71,1],[-33,0],[-43,0],[-73,1],[-22,0],[-24,0],[-33,1],[-24,1],[-248,2],[-61,0],[-161,1],[-163,1],[-56,-1],[18,-49],[7,-21],[1,-21],[-5,-30],[-9,-27],[-6,-23],[-10,-19],[-11,-16],[-22,-20],[-27,-13],[-18,-8],[-26,-9],[-32,-7],[-45,-6],[-41,7],[-3,1],[-4,1],[-20,7],[-30,16],[-22,11],[-18,12],[-7,7],[-10,11],[-11,33],[-4,29],[-5,22],[-6,34],[0,1],[0,28],[5,80],[4,42],[0,2],[-1,17],[-6,26],[-5,9],[-4,7],[-1,1],[-7,7],[-13,9],[-2,2],[-2,1],[-29,19],[-17,9],[-1,0],[-33,12],[-43,13],[-23,4],[-15,1],[-1,0],[-26,2],[-41,1],[-42,0],[-106,1],[-15,0],[-22,28],[-15,24],[-13,20],[-35,25],[-27,0],[-26,-15],[-4,-21],[19,-23],[-11,-22],[-34,-11],[-22,1],[-26,2],[-20,11],[-29,19],[-16,16],[-11,31],[-10,19],[-23,-3],[-10,-16],[-45,-26],[-19,-17],[-22,-32],[-7,-22],[-1,-20],[-3,-25],[-21,-11],[-30,-1],[-31,12],[0,20],[12,28],[7,18],[0,30],[-12,17],[-44,-3],[-54,-8],[-35,-3],[-37,-3],[-61,-7],[-36,-7],[-26,-8],[-25,-11],[-50,-34],[-20,-11],[-19,-11],[-12,21],[-12,43],[39,20],[31,23],[-1,19],[-18,18],[-27,24],[-35,2],[-26,-11],[-18,-17],[-3,-24],[11,-25],[0,-22],[-9,-19],[6,-32],[4,-18],[-16,-20],[-26,-1],[-29,-11],[19,-13],[38,-4],[33,-3],[6,-21],[-26,-15],[-38,-19],[-32,-13],[-25,-5],[-30,-2],[-25,9],[-15,22],[3,26],[9,18],[16,23],[-4,25],[-47,9],[-28,5],[-33,1],[-47,-2],[1,-26],[12,-21],[22,-25],[7,-19],[-14,-15],[-31,-9],[-23,-7],[-8,-22],[27,-24],[37,-16],[42,-10],[24,-11],[16,-24],[5,-20],[3,-30],[-1,-41],[-8,-25],[-21,-20],[-24,-5],[-40,7],[-35,3],[-34,-8],[-43,-28],[-18,-24],[-7,-18],[-6,-30],[-6,-23],[-21,-45],[2,-22],[10,-17],[27,-19],[26,-22],[11,-16],[13,-27],[5,-42],[1,-32],[-14,-19],[-27,-20],[-34,-8],[-72,-10],[-18,-25],[-18,-19],[-20,-10],[-23,-4],[-47,-1],[-25,2],[-22,-11],[-26,-24],[-16,-29],[4,-36],[17,-30],[15,-18],[10,-20],[-6,-35],[-19,-31],[-22,-35],[-25,-27],[-16,-17],[-26,-25],[-32,-31]],[[20232,38768],[-5,15],[-10,31],[-21,51],[-27,38],[-25,31],[-32,43],[-35,52],[-15,21],[-14,28],[-27,50],[-33,86],[-10,54],[-2,52],[9,102],[21,115],[9,47],[17,52],[10,28],[28,43],[4,6],[32,41],[18,19],[28,23],[31,21],[38,24],[28,15],[44,23],[20,17],[6,3],[12,6],[27,46],[2,3],[100,165],[37,60],[2,3],[1,3],[1,3],[1,3],[0,1],[8,38],[0,2],[1,3],[0,3],[0,4],[-1,3],[-4,25],[-2,13],[-32,89],[-4,46],[-14,18],[4,43],[-22,18],[-13,71],[-27,42],[-62,46],[-75,38],[-51,36],[-43,48],[-8,39],[9,121],[25,148],[19,53],[-22,20],[-24,35],[-14,30],[-18,39],[-34,64],[-4,6],[-6,9],[10,65],[30,69],[20,45],[4,10],[4,61],[7,98],[9,30],[24,21],[20,18],[26,53],[8,16],[6,106],[-13,37],[-17,22],[-1,1],[-13,14],[-42,55],[-25,32],[-31,43],[-30,56],[-10,38],[-19,75],[-16,71],[-9,41],[-19,138],[-2,15],[-5,14],[-20,52],[-14,20],[-36,74],[-45,157],[-9,39],[-11,50],[-55,245],[4,3],[1,2],[3,82],[1,2],[2,7],[7,29],[1,1],[9,27],[15,41],[1,2],[3,19],[-7,28],[-7,25],[-2,22],[7,21],[18,22],[29,27],[19,19],[8,8],[10,17],[19,33],[17,36],[20,49],[12,39],[3,8]],[[88574,45261],[-1,-22],[1,-25],[0,-42],[0,-51],[0,-1],[0,-18],[0,-19],[0,-19],[3,-301],[0,-1],[0,-6],[1,-35],[0,-22],[0,-23],[1,-116],[1,-20],[0,-13],[0,-7],[0,-53],[0,-256],[0,-105],[0,-26],[0,-121],[-1,-281],[0,-76],[0,-149],[0,-16],[0,-20],[-6,-72],[0,-161],[0,-95],[0,-49],[1,-110],[-12,0],[-19,9],[-82,58],[-36,16],[-27,6],[-59,2],[-2,0],[-25,1],[-7,3],[-34,-16],[-20,-10],[-1,0],[-6,-5],[-42,-37],[-10,-9],[-13,-21],[-2,-4],[-6,-10],[-14,-71],[-1,-6],[-14,-11],[-3,-1],[-47,-22],[-17,-7],[-40,-10],[-60,-15],[-30,-7],[-16,-2],[-35,2],[-65,11],[-14,4],[-103,29],[-17,1],[-13,1],[-52,3],[-19,-4],[-38,-7],[-11,-2],[-11,-4],[-40,-13],[-44,-15],[-42,-17],[-3,-2],[-62,-31],[-36,-19],[-50,-46],[-11,-13],[-27,-31],[-88,-126],[-14,-12],[-31,-27],[-65,-45],[-87,-104],[-25,-31],[-3,1],[-2,-2],[-20,-8],[-10,-4],[-28,-10],[-27,-7],[-64,-16],[-59,-4],[-31,-3],[-42,-6],[-46,-19],[-10,-22],[3,-39],[1,-1],[23,-18],[20,-12],[26,-8],[53,-7],[17,1],[30,4],[68,19],[52,11],[46,6],[40,-7],[68,-24],[26,-9],[15,-7],[27,-20],[2,-2],[12,-30],[-2,-6],[-3,-12],[-3,-11],[-54,-50],[-48,-25],[-24,-12],[-51,-36],[-62,-45],[-1,0],[-18,-19],[-6,-11],[-5,-10],[-5,-36],[11,-59],[11,-25],[1,-2],[1,-1],[39,-25],[10,-6],[18,-1],[56,-3],[15,-4],[29,-18],[6,-13],[-5,-31],[-32,-64],[-31,-48],[-25,-38],[0,-11],[-2,-32],[-1,-6],[3,-3],[7,-12],[11,-9],[8,-6],[76,-58],[54,-34],[47,-54],[20,-29],[9,-14],[4,-4],[8,-6],[20,-18],[7,-1],[33,-4],[6,0],[15,5],[11,4],[15,6],[47,24],[23,25],[7,15],[9,18],[19,21],[38,20],[24,6],[92,12],[59,-4],[30,-8],[2,-1],[9,-3],[16,-11],[5,-4],[7,-6],[19,-35],[-5,-36],[-17,-35],[-14,-12],[-42,-21],[-61,-13],[-12,-3],[-1,-1],[-17,-9],[-3,-1],[0,-9],[-1,-24],[0,-1],[15,-19],[8,-11],[36,-144],[4,-16],[1,-1],[10,-29],[8,-5],[15,-86],[8,-78],[-2,-43],[-14,-70],[-17,-36],[-22,-23],[-10,-12],[-10,-11],[-43,-29],[-56,-28],[-50,-24],[-7,-7],[-8,-8],[-7,-6],[-11,-19],[-1,-62],[0,-3],[-18,-16],[-38,-21],[-9,-5],[-21,-12],[-76,-34],[-49,-15],[-56,-6],[-15,-2],[-33,-8],[-2,-1],[-40,-18],[-12,-12],[-14,-13],[-1,-1],[-26,-56],[-14,-31],[-4,-4],[-1,-1],[-8,-6],[-29,-13],[-15,-3],[-25,-5],[-29,-6],[-15,1],[-57,3],[-2,0],[-26,9],[-21,12],[-33,18],[-31,1],[-17,-3],[-34,-20],[-10,-14],[0,-7],[-9,-58],[-3,-20],[5,-53],[7,-27],[5,-6],[14,-18],[4,-4],[14,-18],[-1,-32],[-25,-13],[-63,-12],[-8,-2],[-26,-5],[-43,-5],[-55,0],[-61,0],[-6,0],[-50,5],[-26,-5],[-43,-8],[-11,-2],[-11,-7],[-36,-22],[-15,-16],[-17,-41],[-5,-32],[12,-27],[6,-4],[17,-8],[32,-7],[24,-4],[60,-4],[28,-1],[59,-6],[56,-18]],[[86414,39488],[-67,0],[-216,1],[-22,0],[-20,1],[-138,0],[-96,1],[-71,0],[0,263],[-46,0],[-31,0],[-62,1],[-37,0],[-31,-1],[-41,0],[-38,0],[-26,0],[-28,0],[-28,0],[-44,0],[-26,0],[-62,0],[-26,0],[-79,0],[-31,0],[-31,0],[-47,1],[-31,0],[-62,0],[-41,1],[-383,-2],[-179,1],[-442,0],[-152,1],[16,72],[6,29],[3,24],[-24,0],[-48,-1],[-32,0],[-22,-1],[-39,0],[-105,-2],[-90,-1],[-46,-1],[-47,0],[-62,-1],[-81,-1],[-67,0],[-78,-1],[-79,-1],[-51,-1],[-68,-1],[-27,0],[-112,-2],[-47,-1],[-66,-1],[-30,-1],[-32,0],[-30,-1],[-47,0],[-46,-1],[-101,-2],[-124,-2],[-26,-1],[-27,-1],[-62,-1],[-31,-1],[-62,-1],[-31,-1],[-68,-1],[-62,-2],[-101,-2],[-134,-2],[-23,-1],[-145,-3],[-61,-2],[-59,-1],[-25,-1],[-51,-1],[-124,-2],[-84,-2],[-22,0],[-82,-2],[-22,0],[-31,-1],[-62,-1],[-24,0],[-66,-3],[-32,0],[-104,-2],[-46,0],[-49,1],[-275,-5],[-62,-1],[-68,-2],[-289,-5],[-34,-1],[-186,-1],[-6,-1],[-31,-1],[-28,0],[-53,-1],[-34,-1],[-39,0],[-53,-1],[-26,0],[-47,-1]],[[79257,39803],[-314,-5],[-133,-2],[-77,-2],[-83,0],[-23,0],[-27,-1],[-99,-1],[-79,-2],[-30,1],[-239,-7],[-172,2]],[[77981,39786],[0,26],[-2,40],[-1,24],[-1,41],[0,26],[-2,35],[-2,72],[-2,60],[0,19],[-2,51],[-2,30],[-3,102],[0,2],[-1,21],[0,21],[-1,29],[-1,57],[-1,29],[0,19],[-1,19],[-2,69],[-2,59],[0,19],[-1,19],[5,36],[-2,52],[-7,82],[-9,276],[0,41],[0,25],[-1,32],[-1,51],[0,42],[-1,56],[-1,20],[-2,90],[0,36],[-1,24],[0,24],[-1,30],[-1,30],[-1,18],[-1,38],[-1,42],[-1,33],[0,26],[-1,25],[-1,42],[-1,27],[-1,32],[-1,14],[0,18],[-1,20],[0,8],[-1,14],[0,20],[-1,21],[0,27],[-3,76],[-1,33],[0,19],[-2,61],[0,10],[0,14],[-3,111],[-1,22],[-1,28],[0,27],[-1,27],[-1,19],[-1,18],[0,24],[-4,33],[-1,24],[-2,110],[-1,61],[1,27],[-3,74],[-3,100],[0,30],[-1,27],[0,28],[0,11],[-1,7],[0,27],[-1,27],[-1,55],[-1,82],[0,45],[0,27],[-1,27],[-1,29],[-1,32],[0,23],[1,46]],[[20232,38768],[4,-52],[2,-50],[3,-18],[4,-16],[25,-53],[5,-9],[12,-19],[41,-63],[89,-140],[19,-30],[23,-37],[35,-86],[6,-22],[28,-119],[21,-35],[2,-3],[21,-34],[34,-36],[94,-78],[2,-2],[7,-11],[17,-29],[-1,-45],[0,-8],[-16,-17],[-51,-55],[-3,-3],[-11,-6],[-63,-27],[-33,-36],[-15,-69],[16,-57],[27,-32],[63,-41],[60,-25],[79,-56],[43,-42],[13,-24],[31,-62],[28,-115],[-10,-72],[-17,-40],[-21,-52],[-7,-18],[-4,-84],[20,-78],[44,-116],[16,-34],[79,-119],[70,-78],[48,-35],[21,-11],[24,-11],[26,-12],[76,-54],[112,-96],[17,-22],[39,-51],[78,-50],[53,-53],[157,-105],[135,-58],[210,-41],[94,-1],[79,19],[89,33],[184,97],[4,2],[5,2],[29,13],[64,28],[47,16],[49,17],[94,15],[38,7],[46,8],[38,2],[17,0],[7,0],[193,8],[65,5],[76,5],[138,-7],[49,-2],[48,-2],[2,-1],[41,-3],[49,-20]],[[23604,36057],[-202,-49],[-210,-86],[-165,-171],[-109,-125],[0,-66],[-85,-32],[-137,-84],[-42,-76],[-142,-109],[-173,-102],[-66,-76],[-54,-80],[-113,-93],[-20,-81],[-43,-86],[-9,-10],[-199,-141],[-8,-5],[-38,-28],[-146,-109],[-33,-19],[-36,-21],[-112,-65],[-99,-23],[-91,-9],[-226,-49],[-332,1],[-180,-41],[-105,8],[-333,89],[-146,62],[-188,176],[16,68],[4,15],[-106,79],[-32,32],[-47,45],[-50,46],[-22,49],[-56,56],[-9,9],[-13,10],[-35,27],[-43,32],[-55,6],[-37,4],[-66,46],[-24,16],[-78,53],[-22,17],[-15,11],[-123,106],[-28,30],[-13,25],[1,16],[-1,2],[-55,99],[-25,79],[-13,42],[-14,40],[-16,62],[-11,22],[-9,17],[-32,60],[-74,115],[-6,79],[-4,34],[-36,87],[-6,14],[-1,70],[14,113],[-2,27],[-16,37],[-28,124],[-18,42],[-14,32],[-24,23],[-74,71],[-9,12],[-57,56],[-14,15],[-2,15],[-8,52],[-3,10],[-42,57],[-24,33],[-312,434],[56,106],[32,162],[-26,75],[-16,121],[11,25],[16,37],[12,30],[36,68],[2,3],[68,61],[73,45],[44,27],[27,15],[180,120],[18,40],[-13,66],[-40,219],[-46,180],[-10,42],[-8,32],[-9,15],[-24,32],[-55,38],[-19,10],[-30,21],[-40,28],[-114,117],[-30,36],[-46,54],[-69,81],[-115,105],[30,122],[-7,262],[-81,191],[-10,64],[-31,86],[-50,139],[6,54],[1,6],[16,132],[5,47],[5,40],[-16,22],[0,2],[-78,136],[-27,48],[-3,15],[-6,29],[14,20],[5,8],[0,25],[0,27],[0,8],[-26,77],[-34,48],[-8,13],[-17,73],[-16,76],[-24,70],[-41,52],[-25,33],[-18,11],[-58,38],[-13,9],[-257,74],[-52,16],[-27,8],[-169,101],[19,79],[-146,160],[-31,98],[-119,156],[-413,237],[-97,6],[-296,88],[-121,36],[-132,39],[-68,46],[-11,8],[-66,49],[-29,20],[-91,60],[-169,112],[-52,46],[-108,67],[-69,25],[-62,30],[-24,13],[-32,22],[-133,95],[-196,34],[-9,2],[-77,19],[-237,103],[-195,57],[-164,90],[-59,46],[-5,5],[-39,30],[-56,41],[-1,1],[-69,51],[-73,35],[-27,13],[-58,16],[-187,47],[-148,59],[-55,36],[-41,26],[-63,137]],[[77981,39786],[-67,-1],[-39,-1],[-52,-1],[-48,0],[-39,0],[-49,-1],[-38,-1],[-39,-1],[-15,0],[-9,0],[-41,-1],[-28,0],[-26,-1],[-54,-1],[-25,0],[-39,0],[-46,-1],[-100,-2],[-150,-4],[-69,1],[-8,0],[-72,0],[-54,-1],[-52,0],[-28,-1],[-46,0],[-60,-1],[-31,0],[-41,-1],[-51,-1],[-30,0],[-37,-1],[-113,-1],[-39,-1],[-39,0],[-22,0],[-47,-1],[-53,-1],[-31,0],[-90,-1],[-39,0],[-27,-1],[-29,0],[-35,0],[-56,-1],[-104,-1],[-26,0],[-26,-1],[-38,0],[-104,-1],[-22,1],[-183,-1],[-226,-7],[-269,0],[-34,-1],[-3,0],[-49,-1],[-41,-2],[-50,-2],[-147,0],[-38,0],[-94,-1],[-53,2],[-46,1],[-42,1],[-28,-2],[-105,-1],[-25,1],[-24,-1],[-10,0],[-124,-1],[-65,0],[-217,1],[-34,0],[-61,-1],[-30,0],[-50,0],[-123,-1],[-205,-1],[-13,0],[-113,1],[-48,0],[-32,0],[-30,0],[-31,0],[-35,0],[-29,-1],[-91,0],[-61,0],[-33,0],[-30,5],[-22,-5],[-23,0],[-47,0],[-63,0],[-45,0],[-47,0],[-25,-5],[-23,5],[-31,0],[-62,-1],[-90,1],[-62,-1],[-34,1],[-32,0],[-113,-1],[-71,1],[-96,-4],[-199,-1],[-74,0],[-63,0],[-289,-1],[-113,0],[-36,0],[-71,-1],[-319,0],[-284,-2],[-36,5],[-42,0],[-19,0],[-41,0],[-33,0]],[[70131,39735],[-41,0],[-19,7],[-3,1],[-29,-9],[-29,1],[-35,0],[-27,1],[-54,0],[-7,0],[-71,0],[-30,1],[-33,-1],[-23,1],[-11,0],[-24,0],[-30,0],[-30,0],[-60,0],[-106,1],[-30,0],[-31,0],[-65,0],[-42,-2],[-186,0],[-199,2],[-24,-1],[-389,0],[-22,-2],[-182,3],[-31,0],[-125,3],[-224,-3],[-77,0],[-28,2],[-40,2],[-34,-1],[-60,5],[-1,19],[0,47],[-1,48],[0,23],[0,19],[0,35],[0,20],[0,19],[0,27],[0,48],[0,19],[0,19],[0,46],[0,34],[0,37],[0,20],[0,48],[0,19],[0,19],[0,33],[0,38],[0,21],[0,19],[0,29],[0,28],[0,48]],[[30412,36646],[-47,0],[-165,0],[-41,0],[-134,0],[-40,0],[-11,0],[-57,0],[-11,0],[-19,0],[-119,0],[-36,0],[-134,0],[-57,0],[-55,0],[-60,0],[-57,0],[-83,0],[-259,0],[-71,0],[-111,0],[-96,0],[-109,0],[-2,0],[-22,0],[-75,0],[-42,0],[-14,0],[-32,0],[-133,0],[-225,0],[-44,-11],[-71,0],[-3,0],[-44,0],[-36,0],[-49,-2],[-91,0],[-31,0],[-51,0],[-69,0],[-36,0],[-4,-61],[-20,-129],[11,-122],[-18,-281],[-1,-68],[-1,-63],[0,-4],[0,-54],[-2,-18],[-3,-103],[0,-5],[0,-33],[-5,-149],[-1,-19],[0,-18],[0,-32],[-3,-44],[0,-21],[-4,-20],[0,-38],[2,-43],[2,-44]],[[27523,35264],[-247,4],[-334,4],[-167,3],[-8,3],[-218,82],[-238,64],[-72,20],[-31,14],[-31,14],[-30,14],[-94,58],[-71,29],[-397,144],[-166,27],[-39,6],[-45,16],[-77,29],[-235,87],[-109,21],[-145,29],[-196,40],[-9,2],[-286,18],[-150,4],[-43,5],[-27,6],[-16,4],[-173,44],[-90,-10],[-149,18],[-26,-6]],[[60234,40550],[-2,-196],[-1,-20],[1,-4],[4,-23],[0,-5],[0,-27],[0,-51],[0,-52],[0,-14],[0,-36],[0,-23],[0,-41],[-1,-31],[0,-3],[0,-16],[0,-26],[0,-25],[0,-39],[0,-18],[0,-16],[-1,-21],[0,-41],[0,-9],[0,-41],[-1,-6],[0,-20],[-3,-30],[-2,-24],[0,-20],[0,-26],[0,-21],[0,-36],[0,-47],[1,-18],[0,-15],[0,-3],[1,-37],[0,-20],[0,-34],[0,-22],[0,-33],[0,-29],[1,-66],[0,-49],[0,-22],[0,-39],[0,-22],[0,-48],[1,-27],[0,-40],[0,-18],[-1,-16],[0,-2],[-1,-37],[0,-24],[0,-22],[0,-95],[0,-90],[0,-33],[0,-70],[0,-2],[0,-43],[0,-20],[0,-42],[0,-40],[0,-29],[0,-80],[0,-68],[0,-20],[0,-67],[-1,-58],[0,-21],[-1,-151],[0,-25],[0,-24],[0,-33],[-1,-28],[0,-36],[0,-77],[-1,-43],[0,-20],[-1,-74],[0,-35],[0,-30],[0,-24],[0,-36],[0,-24],[0,-19],[0,-8],[0,-13],[0,-21],[0,-10],[0,-50],[0,-20],[0,-8],[-1,-11],[1,-27],[-1,-20],[0,-32],[0,-22],[0,-26],[0,-21],[-1,-29],[0,-5],[0,-16],[0,-20],[-1,-29],[0,-2],[0,-53],[-1,-25],[0,-69],[0,-39],[-1,-26],[0,-23],[0,-36],[-1,-64],[0,-23],[0,-24],[0,-35],[0,-35],[0,-33],[0,-19],[0,-27],[-1,-20],[0,-37],[0,-39],[0,-22],[0,-23],[0,-18],[0,-20],[0,-26],[0,-53],[0,-32],[0,-66],[0,-24],[0,-19],[-1,-62],[0,-27],[0,-23],[0,-27],[-1,-30],[-1,-50],[0,-39],[0,-20],[0,-19],[-1,-63],[0,-27],[-1,-24],[0,-50],[-1,-35],[0,-22],[-1,-23],[0,-31],[0,-41],[-1,-22],[0,-20],[-1,-22],[0,-46],[-1,-59],[0,-23],[0,-21],[-1,-43],[-1,-68],[0,-24],[0,-35],[0,-21],[-1,-23],[0,-32],[41,0],[39,1],[69,1],[73,2],[86,2],[52,1],[45,1],[32,1],[99,2],[53,1],[36,1],[296,2],[136,4],[114,7],[29,-1],[174,4],[201,6],[35,1],[111,3],[74,1],[168,1],[143,4],[27,0],[66,2],[37,1],[31,0],[27,1],[34,1],[35,0],[51,1],[26,1],[38,0],[41,1]],[[62724,35103],[-1,-33],[-1,-13],[0,-5],[-2,-122],[-3,-144],[-2,-66],[-3,-86],[-7,-192],[0,-117],[0,-79],[-2,-97],[-1,-52],[0,-20],[0,-30],[-4,-44],[0,-29],[-1,-26],[0,-25],[0,-26],[-1,-26],[0,-20],[0,-19],[0,-21],[-1,-26],[-2,-51],[0,-1],[-2,-91],[0,-19],[-1,-28],[-1,-45],[0,-23],[-1,-19]],[[62688,33508],[-311,-5],[-180,-1],[-141,-3],[-25,0],[-173,-3],[-388,-3],[-188,-3],[-157,-3],[-99,-2],[-186,-2],[-24,0],[-57,-2],[-18,1],[-14,0],[-35,0],[-25,-1],[-29,0],[-102,-3],[-33,-1],[-88,0],[-7,0],[-67,-1],[-23,0],[-6,0],[-140,-1],[-29,0],[-28,0],[-30,0],[-38,0],[-32,0],[-28,0],[-25,0],[-52,-1],[-29,0],[-53,0],[-32,0],[-27,0],[-64,-2],[-325,1],[-25,1],[-81,0],[-22,0],[-97,0],[-1,0],[-213,-1],[-254,-1],[-69,0],[-91,0],[-406,0],[-52,1],[-7,0],[-152,1],[-106,1],[-24,-1],[-25,0],[-28,0],[-64,-1],[-31,0],[-79,-1],[-49,0],[-49,0],[-37,-1],[-60,-1],[-43,0],[-34,-1],[-29,-1],[-24,0],[-34,0],[-48,0],[-24,-1],[-34,0],[-43,-1],[-94,-1],[-26,0],[-34,-1],[-33,0],[-31,0],[-77,-1],[-34,0],[-24,0],[-50,-1],[-77,0],[-157,-3],[-34,-1],[-34,0],[-34,0],[-51,-1],[-52,-1],[-85,-1],[-26,0],[-51,-1],[-46,1],[-36,-1],[-27,0],[-22,-1],[-25,0],[-25,-1],[-34,0],[-41,-1],[-36,0],[-34,0],[-23,0],[-47,-1],[-28,0],[-32,-1],[-31,-1],[-24,1],[-27,0],[-26,-1],[-25,0],[-26,0],[-26,0],[-51,-1],[-34,0],[-35,-1],[-55,0],[-68,1],[-344,4],[-28,0],[-29,0],[-25,1],[-43,-1],[-25,0],[-35,1],[-22,0],[-38,0],[-94,2],[-34,0],[-26,0],[-24,0],[-24,1],[-34,0],[-25,0],[-51,1],[-34,0],[-30,0],[-23,0],[-220,3],[-18,0],[-23,1],[-39,0],[-77,0],[-44,1],[-25,0],[-76,1],[-52,0],[-36,1],[-34,0],[-68,1],[-34,0],[-35,0],[-51,1],[-52,0],[-25,0],[-26,1],[-43,0],[-30,0],[-37,1],[-242,3],[-48,-14],[0,-32],[0,-36],[0,-26],[0,-36],[-1,-24],[0,-32],[0,-20],[0,-43],[0,-26],[0,-27],[0,-18],[0,-22],[0,-23],[0,-49],[0,-26],[0,-51],[0,-32],[0,-24],[0,-37],[-1,-39],[0,-51],[0,-21],[0,-51],[0,-33],[0,-18],[0,-48],[0,-35],[-1,-33],[0,-25],[0,-22],[0,-26],[0,-27],[0,-19],[-1,-19],[0,-34],[0,-45],[0,-25],[-1,-25],[0,-27],[1,-22],[0,-8],[0,-13],[-1,-32],[1,-28],[0,-30],[-1,-35],[0,-25],[0,-39],[-1,-25],[0,-25],[0,-19],[1,-22],[-1,-43]],[[52828,31883],[-30,1],[-26,1],[-35,2],[-25,1],[-34,1],[-43,2],[-26,1],[-35,2],[-33,1],[-34,1],[-26,1],[-25,1],[-33,2],[-28,0],[-37,2],[-34,2],[-42,1],[-23,2],[-47,4],[-215,9],[-184,7],[-226,8],[-93,4],[-80,3],[-1,0],[-211,8],[-41,2],[-43,2],[-52,3],[-192,8],[-27,1],[-65,3],[-39,2],[-30,1],[-99,4],[-153,6],[-118,4],[-92,0]],[[50251,31986],[1,66],[0,21],[7,450],[19,1150],[8,461],[4,246],[6,390],[5,295],[1,89],[1,61],[1,13],[0,36],[1,49],[21,1314],[9,526]],[[70131,39735],[-1,-25],[-1,-46],[1,-97],[0,-50],[1,-213],[-1,-161],[1,-102],[0,-21],[-1,-117],[0,-34],[0,-83],[1,-64],[2,-72],[1,-133],[-2,-184],[-3,-68],[-1,-185],[-3,-83],[2,-41],[-10,-225],[0,-27],[-2,-49],[0,-7],[-1,-38],[-2,-35],[-2,-86],[-3,-25],[2,-24],[-7,-177],[-3,-66],[1,-24],[-2,-34],[-2,-51],[-3,-84],[-3,-90],[-3,-118],[-2,-29],[-2,-49],[5,-72],[1,-44],[1,-142],[1,-77],[4,-66],[0,-120],[-4,-84],[4,-30],[4,-182],[-1,-57],[2,-45],[1,-124],[1,-98],[0,-36],[7,-234],[1,-21],[-4,-251]],[[70106,35035],[-96,2],[-27,0],[-55,1],[-52,0],[-38,1],[-92,1],[-56,1],[-2,0],[-112,2],[-34,1],[-34,0],[-80,1],[-23,1],[-35,0],[-99,2],[-100,2],[-25,0],[-95,2],[-137,2],[-58,1],[-111,0],[-25,1],[-39,0],[-72,1],[-69,1],[-26,1],[-75,1],[-24,0],[-66,2],[-33,0],[-53,1],[-53,1],[-46,1],[-38,0],[-34,1],[-72,1],[-24,0],[-88,2],[-48,0],[-106,2],[-55,1],[-68,1],[-34,1],[-144,2],[-4,0],[-162,3],[-220,3],[-38,1],[-33,1],[-102,2],[-24,0],[-56,1],[-35,1],[-38,1],[-64,1],[-34,0],[-52,1],[-31,1],[-2,0],[-33,0],[-65,2],[-47,0],[-27,1],[-77,2],[-174,4],[-74,2],[-52,2],[-29,0],[-71,1],[-44,1],[-28,1],[-48,1],[-40,1],[-27,1],[-171,1],[-106,0],[-4,0],[-182,1],[-73,0],[-128,0],[-51,0],[-130,0],[-286,0],[-97,1],[-33,0],[-31,-1],[-33,1],[-47,1],[-95,-4],[-319,-1],[-35,0],[-115,-1],[-154,-1],[-46,0],[-67,1],[-37,-1],[-150,-1],[-20,0],[-15,0],[-13,0],[-36,-1],[-25,0],[-20,1],[-4,0],[-30,-1],[-67,-1],[-81,0],[-65,0],[-45,-1],[-56,0],[-25,0],[-1,1],[-40,-2],[-65,0]],[[86414,39488],[6,-5],[16,-17],[-3,-27],[-6,-6],[-23,-12],[-41,-12],[-17,-2],[-27,1],[-38,12],[-15,15],[-33,31],[-31,14],[-35,3],[-25,0],[-9,0],[-8,-1],[-22,-10],[-5,-7],[-35,-30],[-51,-26],[-45,-16],[-25,-9],[-7,-4],[-40,-23],[-18,-18],[-10,-43],[6,-10],[-3,-24],[-2,-12],[-1,-5],[-7,-8],[-20,-20],[-40,-29],[-39,-47],[-9,-10],[-3,-4],[-8,-28],[55,-54],[70,-28],[128,-34],[94,-54],[25,-23],[-5,-29],[7,-7],[17,-6],[46,3],[27,7],[26,-6],[61,-26],[42,-62],[-15,-34],[-30,-26],[-57,-11],[-48,0],[-27,-1],[-84,14],[-12,5],[-32,2],[-36,4],[-46,13],[-27,-1],[-46,-32],[-29,-28],[-3,-1],[-11,-3],[5,-22],[5,-26],[5,-21],[6,-28],[1,0],[11,4],[54,-33],[7,-5],[48,-17],[9,0],[72,-2],[1,0],[2,0],[59,16],[33,4],[27,4],[4,1],[1,0],[65,-4],[4,0],[9,-2],[34,-4],[61,-9],[7,-1],[12,-1],[102,-5],[76,-4],[44,4],[4,0],[50,-3],[57,-15],[38,-31],[7,-37],[-9,-33],[-10,-14],[-27,-28],[-47,-24],[-14,-10],[-21,-15],[-8,-8],[-7,-9],[-21,-22],[-2,-25],[0,-11],[-1,-8],[8,-10],[8,-10],[11,-15],[13,-10],[78,-58],[4,-3],[18,-8],[58,-10],[7,-1],[1,0],[38,-2],[30,1],[96,4],[5,0],[81,-5],[19,-1],[52,-15],[33,-16],[39,-31],[45,-66],[39,-26],[2,-1],[46,-19],[53,-29],[5,-3],[1,-1],[56,-41],[0,-1],[34,-33],[30,-30],[42,-41],[31,-24],[42,-22],[31,-18],[22,-11],[1,-2],[11,-18],[10,-45],[-6,-43],[-12,-24],[-37,-41],[-1,-1],[-52,-40],[-68,-45],[-11,-17],[-4,-6],[-1,0],[-1,-11],[-1,-9],[-1,-4],[2,-12],[1,-1],[15,-22],[4,-5],[98,-75],[11,-9],[21,-36],[42,-69],[-2,-10],[7,-9],[29,-44],[7,-22],[6,1],[-2,-35],[0,-14],[-1,-13],[-2,-36],[-6,0],[-19,-50],[-20,-39],[-4,-9],[-24,-46],[-29,-37],[-42,-37],[-56,-50],[-1,-6],[-3,-23],[1,-9],[2,-12],[1,-6],[7,-10],[3,-4],[3,-4],[1,-1],[41,-28],[89,-34],[64,-18],[26,-6],[39,-2],[13,6],[48,7],[46,-5],[14,-10],[7,-12],[6,-8],[-2,-10],[-2,-17],[-15,-18],[-11,-6],[-18,-10],[-40,-5],[-69,9],[-78,26],[-53,13],[-66,-1],[-14,-7],[-20,-9],[-4,-28],[6,-10],[28,-26],[63,-26],[249,-55],[75,-26],[247,-45],[37,-14],[32,-18],[0,-1],[2,0],[47,-17],[235,-47],[63,-23],[42,-36],[34,-60],[3,-14],[2,-8],[3,-4],[40,-50],[4,-3],[24,-18],[7,-4],[51,-28],[102,-47],[37,-12],[8,-6],[10,-7],[13,-18],[0,-6],[-5,-51],[0,-5],[-5,-8],[-21,-35],[-4,-7],[-2,-1],[-68,-61],[-7,-6],[-6,-4],[-53,-27],[-21,-15],[-5,-3],[-10,-14],[-2,-19],[12,-23],[19,-16],[23,-20],[0,-1],[41,-27],[12,-9],[4,-51],[-9,-7],[-31,-54],[-4,-32],[-1,-4],[2,-5],[6,-20],[-9,-36],[-3,-1],[-36,-23],[-24,-6],[-74,2],[-24,-4],[-25,-13],[-10,-14],[0,-10],[-1,-19],[-1,-12],[7,-11],[25,-40],[5,-17],[-7,-24],[-7,-13],[-19,-34],[0,-2],[-5,-29],[10,-18],[31,-23],[22,-9],[58,-3],[65,13],[31,-1],[24,-19],[1,-21],[-8,-5],[-13,-9],[-29,-7],[-24,-1],[-44,0],[-13,-1],[-1,0],[-10,-1],[-33,-1],[-55,-6],[-46,-8],[-34,-5],[-63,-30],[-21,-11],[-10,-13],[-29,-39],[-5,-16],[-1,-6],[-17,-56],[-6,-42],[-2,25],[-3,6],[-13,32],[-2,27],[-2,18],[-6,6],[-22,8],[-4,1],[-35,1],[-6,-2],[-26,-8],[-34,-25],[-4,-9],[-7,-51],[5,-20],[11,-18],[9,-7],[18,-11],[18,-8],[32,-11],[13,-3],[28,-10],[19,-10],[7,-8],[20,-33],[6,-8],[2,-4],[5,-4],[23,-19],[13,-18],[2,-10],[-5,-16],[-1,-5],[-1,-3],[-5,-7],[-9,-4],[-9,-5],[-7,-4],[-25,-6],[-44,-3],[-30,-2],[-86,0],[-30,-5],[-3,-3],[-34,-36],[-2,-3],[0,-27],[12,-25],[45,-39],[18,-7],[4,-1],[32,-24],[9,-20],[-4,-22],[-18,-23],[-22,-11],[-32,-5],[-38,4],[-6,3],[-60,23],[-40,-3],[-8,-5],[-6,-4],[-7,-4],[-5,-34],[6,-10],[22,-16],[3,-2],[6,-3],[49,-22],[222,-83],[11,-2],[157,-29],[3,0],[1,0],[16,-3]],[[88585,33981],[-69,0],[-339,-1],[-2,0],[-150,0],[-31,0],[-4,0],[-406,-13],[-30,0],[-171,1],[-147,0],[-53,0],[-382,2],[-49,0],[-211,1],[-209,1],[-34,-1],[-24,1],[-23,0],[-25,0],[-34,0],[-26,0],[-62,1],[-32,0],[-31,0],[-26,0],[-23,0],[-38,0],[-24,0],[-26,0],[-29,1],[-22,0],[-46,0],[-47,0],[-30,0],[-34,0],[-37,0],[-32,0],[-24,0],[-24,0],[-25,0],[-25,0],[-26,0],[-34,0],[-32,0],[-31,1],[-18,0],[-8,0],[-48,0],[-25,0],[-25,0],[-50,0],[-42,0],[-15,-5],[-7,-2],[-32,-1],[-49,-2],[-39,-1],[-24,0],[-22,-1],[-26,0],[-23,-1],[-25,-1],[-35,-1],[-34,-1],[-51,-2],[-38,-1],[-30,-1],[-34,0],[-37,-1],[-30,-1],[-39,-1],[-29,0],[-39,-1],[-44,-1],[-24,-1],[-24,-1],[-25,0],[-43,-1],[-25,-1],[-58,-1],[-23,-1],[-28,-1],[-26,0],[-25,-1],[-58,-2],[-41,0],[-73,-2],[-24,-1],[-43,-1],[-26,0],[-23,-1],[-29,-1],[-48,-1],[-25,0],[-24,-1],[-67,-2],[-59,-1],[-26,-1],[-24,2],[-66,-2],[-29,-1],[-124,-4],[-39,0],[-131,-2],[-9,-1],[-24,0],[-283,-5],[10,22],[-187,0],[-135,-1],[-23,0],[-29,0],[-24,0],[-31,0],[-28,0],[-55,0],[-29,-1],[-34,-1],[-158,-1],[-26,0],[-61,1],[-24,0],[-27,0],[-36,0],[-40,0],[-34,0],[-30,1],[-34,-1],[-65,0],[-89,0],[-33,0],[-22,0],[-30,0],[-48,0],[-23,0],[-25,0],[-42,0],[-68,0],[-42,0],[-31,0],[-47,0],[-66,-1],[-40,0],[-26,0],[-29,0],[-35,1],[-25,-1],[-23,1],[-31,1],[-37,1],[-64,0],[-42,0],[-151,0],[-111,1],[-88,0],[-54,0],[-49,0],[-38,1],[-118,0],[-36,0],[-31,0]],[[80198,33938],[-29,0],[-78,0],[-109,0],[-36,0],[-43,0],[-60,1],[-66,0],[-420,-1]],[[79357,33938],[-1,41],[12,267],[1,102],[1,54],[-4,66],[1,20],[0,19],[0,20],[0,20],[0,50],[1,35],[0,57],[0,37],[0,26],[1,20],[0,20],[1,39],[2,53],[3,66],[1,26],[-4,23],[0,23],[1,27],[1,26],[1,54],[1,30],[0,26],[0,26],[0,27],[0,24],[-1,78],[0,23],[0,26],[-1,37],[0,32],[0,24],[-1,38],[0,34],[-1,39],[0,40],[0,26],[-1,20],[-1,55],[-2,52],[0,19],[0,24],[-1,24],[0,23],[0,24],[0,33],[0,34],[-1,32],[0,23],[-1,24],[0,55],[3,30],[-4,188],[0,15],[1,78],[0,31],[0,19],[-3,38],[-14,63],[0,68],[-2,23],[0,81],[0,1],[0,42],[0,14],[0,18],[1,14],[0,3],[0,2],[0,55],[0,3],[-1,122],[0,2],[0,80],[-1,148],[0,20],[0,29],[-1,29],[0,46],[0,20],[0,19],[-2,88],[1,30],[-1,29],[-2,330],[-2,280],[-32,0],[-3,85],[-6,212],[-8,265],[-8,198],[-1,66],[-5,221],[-1,43],[-4,168],[-12,129],[0,96],[-1,161]],[[79357,33938],[-89,3],[-2,-1],[-281,-2],[-43,-2],[-125,-3],[-1,0],[-37,-1],[-58,-1],[-44,-1],[-11,0],[-145,-1],[-207,2],[-74,1],[-150,2],[-38,0],[-40,0],[-54,0],[-63,0],[-275,-3],[-42,0],[-51,1],[-26,0],[-60,0],[-34,1],[-105,0],[-32,-3],[-188,-2],[-24,0],[-69,-2],[-41,0],[-25,-1],[-35,0],[-34,-1],[-51,-1],[-31,0],[-53,0],[-41,0],[-212,-5],[-227,-5],[-96,-2],[-83,-3],[-7,-1],[-16,0],[-301,-7],[-110,-2],[-19,0],[-235,-3],[-157,-3],[-99,-3],[-267,-5],[-38,-1],[-387,-2],[-26,-1],[-96,0],[-67,0],[-26,0],[-24,0],[-30,0],[-59,0],[-23,0],[-38,0],[-26,0],[-25,0],[-29,1],[-33,0],[-30,1],[-57,0],[-63,1],[-23,1],[-40,0],[-67,1],[-28,0],[-26,0],[-39,1],[-34,0],[-87,0],[-54,0],[-23,1],[-45,0],[-135,0],[-33,0],[-211,2],[-120,1],[-4,0],[-83,-1],[-26,1],[-39,0],[-30,0],[-34,0],[-34,0],[-35,0],[-69,1],[-52,0]],[[72401,33891],[-143,4],[-224,7],[-47,1],[-131,5],[-26,1],[-33,2],[-86,1],[-82,4],[-102,4],[-1,0],[-57,2],[-91,3],[-317,15],[-38,1],[-274,6],[-99,2],[-85,5],[-103,3],[-78,4],[-51,1],[-108,6],[-97,3],[-22,0],[1,51],[0,84],[2,55],[0,84],[0,125],[2,130],[-1,157],[-5,111],[0,45],[1,52],[0,66],[0,34],[0,70]],[[50251,31986],[-212,0],[-75,0],[-16,0],[-6,0],[-94,-1],[-6,0],[-29,1],[-34,-1],[-47,0],[-24,0],[-27,0],[-35,0],[-27,-1],[-24,0],[-85,0],[-55,0],[-36,0],[-22,0],[-56,0],[-42,0],[-27,-1],[-25,0],[-44,-1],[-62,0],[-52,-1],[-26,0],[-62,1],[-27,-1],[-34,0],[-57,-1],[-94,-1],[-38,0],[-34,0],[-34,-1],[-34,0],[-25,0],[-25,0],[-25,0],[-39,0],[-54,-1],[-85,0],[-24,-1],[-102,-1],[-28,0],[-69,-1],[-25,0],[-26,0],[-155,-1],[-34,0],[-24,-1],[-45,0],[-51,0],[-69,-1],[-23,0],[-38,0],[-38,0],[-14,0],[-22,0],[-36,-1],[-36,0],[-36,0],[-75,0],[-33,0],[-72,0],[-72,-1],[-36,0],[-36,0],[-41,0],[-50,0],[-36,0],[-40,0],[-89,-1],[-24,0],[-2,0],[-24,0],[-36,0],[-36,0],[-36,0],[-36,-1],[-108,-1],[-38,0],[-34,0],[-36,0],[-36,-1],[-36,0],[-61,0],[-27,0],[-36,0],[-58,0],[-50,-1],[-180,0],[-72,-1],[-36,0],[-31,0],[-40,0],[-72,-1],[-72,0],[-43,0],[-27,0],[-36,0],[-46,0],[-24,0],[-36,0],[-36,0],[-36,0],[-36,0],[-36,-1],[-36,0],[-36,-1],[-37,0],[-29,0],[-28,-1],[-81,4],[-231,0],[-89,0],[-7,0],[-41,1],[-81,2],[-40,0],[-155,3],[-102,2],[-209,4],[-85,2],[-72,1],[-38,1],[-65,1],[-53,1],[-72,2],[-79,1],[-50,1],[-107,2],[-23,1],[-78,1],[-41,1],[-71,2],[-36,1],[-36,0],[-72,2],[-36,1],[-28,0],[-24,1],[-108,3],[-27,0],[-81,2],[-165,4],[-81,2]],[[42618,32008],[-2,54],[-1,35],[-2,57],[-1,73],[-2,50],[-1,45],[-1,25],[-1,38],[0,29],[-2,56],[-1,47],[-1,42],[-1,28],[0,24],[-1,19],[-1,19],[-1,18],[0,10],[0,16],[0,2],[-1,29],[0,23],[-1,31],[0,20],[-1,29],[-1,26],[-1,26],[-1,53],[-1,52],[-1,26],[-1,38],[0,22],[0,2],[-1,22],[-1,33],[-1,21],[0,20],[0,20],[0,19],[-1,41],[-1,34],[0,19],[-2,21],[-1,29],[-1,37],[0,30],[0,26],[-1,44],[0,19],[-1,24],[0,24],[-2,29],[0,25],[0,37],[-1,41],[-1,19],[0,18],[-1,31],[0,47],[0,40],[0,21],[0,32],[-1,27],[0,27],[0,21],[-1,26],[0,32],[0,22],[-1,36],[0,41],[-1,31],[0,24],[0,23],[-1,68],[0,43],[-1,21],[0,24],[-10,18],[-26,0],[-43,0],[-36,-1],[-86,0],[-36,0],[-27,0],[-77,-1],[-53,0],[-49,0],[-42,0],[-62,0],[-36,0],[-29,-1],[-27,1],[-191,-1],[-2,22],[0,20],[-7,19],[4,200],[-3,211],[0,59],[3,272],[-3,38],[-4,54],[-4,43],[-2,34],[-7,70],[-1,21],[-5,141],[-6,150],[3,23],[-3,128],[0,1],[-6,103],[0,20],[1,25],[0,28],[1,44],[0,39],[0,25],[-6,26],[6,17],[-1,25],[0,25],[-1,54],[-1,29],[-1,37],[-3,22],[-1,29],[0,29],[0,23],[-1,24],[0,21],[-10,47],[-4,18],[-9,37]],[[42618,32008],[1,-57],[3,-70],[3,-104],[0,-31],[2,-72],[1,-29],[0,-21],[3,-160],[5,-112],[2,-131],[3,-60],[4,-88],[2,-46],[2,-69],[1,-37],[2,-95],[3,-131],[1,-51],[2,-48],[2,-21],[1,-65],[2,-79],[-363,-2],[-87,0],[-66,-1],[-93,-1],[-23,-1],[-31,0],[-153,-1],[-100,0],[-57,-1],[-52,0],[-102,-1],[-313,-1],[-513,-2],[-108,-1],[-119,0],[-197,-1],[-109,-1]],[[40177,30417],[-255,-1],[-159,0],[-204,0],[-85,1],[-255,0],[-69,2],[-170,2],[-237,4],[-127,0],[-6,0],[-214,0],[-76,1],[-158,0],[-249,2],[-224,2],[-205,2],[-345,3],[-33,2],[-2,0],[-259,7],[-105,0],[-202,0],[-37,1],[-74,1],[-207,4],[-23,0],[-42,1],[-39,1],[-332,5],[-94,2],[-102,2],[-264,1],[-89,2],[-56,0],[-80,0],[-65,1],[-27,0],[-71,1],[-104,0],[-206,1],[-192,1],[-34,0],[-55,0],[-103,4],[-64,0],[-24,1],[-45,0],[-39,-1],[-30,0],[-4,0],[-32,0],[-34,0],[-12,0],[-34,1],[-40,-1],[-44,1],[-25,0],[-31,2],[-51,-2],[-42,0],[-31,0],[-12,0],[-29,0],[-40,2],[-33,0],[-29,0],[-24,0],[-43,0],[-35,0],[-109,-2],[-27,2],[-27,0],[-273,2],[-49,0],[-8,0],[-106,0],[-22,2],[-36,-2],[-33,2],[-38,0],[-35,0],[-58,2],[-25,0],[-26,1],[-25,-1],[-22,0],[-27,0],[-30,0],[-34,0],[-45,0],[-33,1],[-38,0],[-27,2],[-58,2],[-23,0],[-103,3],[-40,2],[-147,4],[-3,0],[-55,2],[-47,0],[-33,-1],[-27,1],[-22,0],[-29,0],[-33,2],[-38,-2],[-25,3],[-2,0],[-22,0],[-67,0],[-208,2],[-27,0],[-104,1],[-62,1],[-62,0],[-38,1],[-30,0],[-134,1],[-48,1],[-49,1],[-101,1],[-30,-4],[-7,0],[-60,1],[-77,2],[-60,0],[-73,0],[-27,1],[-33,0],[-59,3],[-30,1],[-37,-1],[-14,-1],[-5,0],[-140,4],[-25,-2],[-45,4],[-1,0],[-66,-3],[-16,-1],[-23,0],[-84,2],[-18,0],[-71,2]],[[29624,30517],[-20,47],[-44,117],[-42,90],[-13,26],[-101,120],[-243,247],[-83,46],[-20,11],[-12,18],[-67,106],[-69,109],[38,190],[45,66],[156,161],[127,52],[42,17],[175,41],[143,111],[55,42],[15,49],[31,28],[21,70],[13,45],[50,67],[30,40],[83,83],[23,23],[22,10],[47,34],[170,61],[251,110],[264,136],[210,108],[120,139],[3,9],[128,374],[40,119],[1,9],[40,125],[0,2],[-28,103],[-135,95],[-55,26],[-54,7],[-192,71],[-167,57],[-24,8],[-72,29],[-157,62],[-246,107],[-140,59],[-45,19],[-28,12],[-60,22],[-124,43],[-38,7],[-29,6],[-13,2],[-50,23],[-82,38],[-6,3],[-18,7],[-446,177],[-249,162],[-71,36],[-40,19],[-33,12],[-189,70],[-199,66],[-63,24],[-108,41],[-84,21],[-195,-3],[-104,28],[-10,3],[-176,27]],[[72401,33891],[0,-21],[0,-72],[1,-22],[0,-29],[1,-37],[0,-13],[0,-13],[0,-28],[0,-30],[0,-39],[1,-135],[0,-24],[1,-63],[0,-68],[0,-33],[0,-32],[1,-27],[0,-46],[0,-115],[0,-22],[1,-55],[0,-27],[-1,-31],[-2,-31],[3,-19],[1,-21],[-1,-21],[2,-41],[3,-42],[1,-30],[-3,-43],[0,-22],[1,-58],[0,-19],[2,-117],[0,-22],[1,-67],[0,-47],[-1,-178],[3,-45],[1,-25],[0,-30],[0,-28],[1,-151],[-13,-66],[-324,10],[-41,27],[-136,-15],[-36,-12],[7,-4],[-1,-4],[-10,-21],[-6,-11],[-8,-10],[-17,-20],[-9,-4],[-2,-18],[22,-65],[-26,-11],[-6,-4],[-16,-25],[-19,-57],[-2,-9],[4,-7],[4,-5],[11,-7],[10,-3],[11,1],[11,1],[10,3],[17,11],[20,2],[3,-2],[0,-10],[-4,-18],[-18,-47],[-10,-17],[-4,-3],[-11,-3],[-8,0],[-1,-1],[-4,3],[-11,-15],[18,-14],[11,-8],[43,-25],[-51,-5],[-1,0],[-15,-76],[-8,-23],[-17,-9],[15,-7],[15,-10],[5,-5],[17,-17],[58,-60],[1,-3],[-3,-10],[-5,-5],[-44,-15],[-16,-5],[3,-29],[1,-20],[6,-67],[0,-4],[4,-49],[-9,0],[-5,-56],[5,-5],[14,-9],[31,-12],[11,-7],[61,-52],[3,-3],[11,-10],[8,-14],[0,-13],[-3,-9],[-25,-15],[-7,-9],[-1,-48],[4,-9],[6,-2],[17,-5],[53,-2],[-2,-22],[11,-110],[16,-21],[33,-44],[5,-3],[1,-15],[-2,-6],[-46,-45],[-21,-13],[-30,-8],[-55,-14],[-158,-101],[-78,-52],[-3,-4],[0,-9],[3,-4],[8,-3],[15,2],[21,7],[19,2],[13,-2],[9,-4],[0,-6],[-1,-1],[-18,-3],[-65,-10],[-11,-1],[-3,0],[-46,-2],[-1,-22],[0,-12],[-59,-39],[-25,-42],[-8,-14],[64,-29],[73,-33],[31,-14],[14,-7],[11,-8],[1,-14],[-1,-10],[-7,-3],[-50,-4],[-10,-3],[-1,0],[-13,-9],[-3,-5],[-2,-5],[2,-4],[5,-4],[11,-8],[13,-5],[1,0],[2,0],[75,-15],[18,0],[12,0],[10,5],[20,17],[11,7],[10,1],[45,-25],[-2,-20],[-21,-36],[-34,-15],[-7,-2],[-6,-1],[-20,-4],[-7,-5],[-5,-7],[3,-8],[11,-9],[83,-41],[111,-24],[16,2],[25,10],[9,5],[9,9],[6,16],[2,5],[2,3],[9,12],[15,7],[16,3],[17,-3],[51,-16],[7,-4],[0,-9],[-4,-5],[-8,-6],[-25,-7],[-1,0],[-7,-5],[-7,-10],[-10,-28],[-1,-20],[3,-13],[6,-9],[8,-6],[9,-4],[15,3],[1,0],[25,10],[15,5],[12,2],[9,0],[11,-2],[95,-48],[24,-12],[25,-26],[40,-23],[116,-13],[21,-11],[9,-5],[64,-49],[5,-6],[0,-6],[-21,-36]],[[72599,29412],[-173,-3],[-309,4],[-24,1],[-87,2],[-95,2],[-67,1],[-71,2],[-26,0],[-101,3],[-40,1],[-68,2],[-35,0],[-71,2],[-36,1],[-97,2],[-55,2],[-44,1],[-121,3],[-83,2],[-44,1],[-87,2],[-72,1],[-32,1],[-95,2],[-65,1],[-113,1],[-27,1],[-52,1],[-35,1],[-34,1],[-69,2],[-36,1],[-32,1],[-62,2],[-53,2],[-36,5],[-50,0],[-24,0],[-26,-1],[-46,1],[-32,0],[-45,-1],[-40,0],[-38,0],[-37,0],[-24,0],[-53,0],[-122,3],[-27,0],[-26,0],[-106,2],[-79,1],[-70,1],[-61,0],[-44,0],[-71,0],[-22,0],[-26,0],[-31,0],[-54,1],[-57,0],[-33,0],[-32,1],[-34,1],[-113,2],[-34,1],[-40,0],[-72,1],[-53,1],[-30,1],[-1,0],[-42,-2],[-284,5],[-45,4],[-9,6],[-34,27],[-108,15],[-77,-6],[-28,0],[-39,8],[-60,-37],[-274,5],[-12,-10],[-16,-6],[-55,-10],[-2,1],[-30,8],[-204,12],[-71,-3],[-36,-4],[-10,1],[-6,3],[-15,17],[-4,4],[-8,-4],[-67,0],[-122,2],[-154,4],[-28,4],[-27,0],[-49,-4],[-105,4],[-253,11],[-144,7],[-64,1],[-33,-1],[-166,4],[-114,3],[-221,0],[-233,6],[-99,-4],[-71,1],[-120,-1],[-23,0],[-26,0],[-72,0],[-264,-2],[-85,-1],[-62,-1],[-79,-1],[-108,-1],[-117,-1],[-41,0],[-126,-1],[-146,-4],[-93,-1],[-83,0],[-56,-1],[-180,0],[-123,0],[-50,-1],[-35,-1],[-94,0],[-382,-1]],[[62615,29535],[1,62],[1,68],[0,39],[2,84],[0,22],[1,73],[0,1],[-3,74],[0,2],[0,24],[3,18],[1,22],[0,24],[0,29],[0,30],[0,19],[0,24],[0,34],[1,57],[0,21],[1,19],[0,23],[1,16],[0,4],[1,19],[1,37],[0,38],[1,32],[1,49],[0,28],[1,62],[0,44],[1,45],[0,27],[1,19],[1,86],[1,40],[0,21],[1,46],[0,25],[0,25],[1,40],[1,26],[0,53],[0,24],[1,28],[0,19],[0,29],[1,20],[1,53],[1,91],[0,19],[-6,17],[2,19],[2,16],[0,18],[1,12],[2,68],[0,4],[5,124],[3,236],[1,37],[1,51],[1,29],[0,25],[0,26],[0,32],[1,32],[1,22],[1,37],[1,19],[0,19],[1,29],[0,36],[1,41],[1,35],[1,23],[1,43],[-1,31],[2,35],[0,22],[1,20],[1,23],[1,28],[1,34],[1,29],[0,23],[1,34],[0,20],[2,20],[0,21],[1,28],[0,21],[1,22],[2,46],[-4,61],[8,309],[2,99],[2,56],[0,21],[6,86]],[[85901,28847],[-33,1],[-23,-3],[-98,0],[-208,2],[-9,0],[-47,0],[-34,0],[-107,1],[-190,0],[-205,1],[-2,0],[-13,0],[-18,0],[-67,0],[-45,1],[-58,0],[-137,0],[-24,0],[-28,0],[-27,0],[-53,0],[-73,0],[-86,0],[-199,2],[-208,0],[-211,3],[-207,3],[-206,3],[-209,2],[-228,0],[-25,0],[-28,1],[-26,0],[-43,0],[-50,1],[-30,0],[-24,0],[-46,0],[-40,1],[-45,0],[-35,1],[-45,0],[-44,0],[-22,0],[-36,0],[-100,5],[-111,1],[-103,1],[-53,1],[-50,0],[-310,3],[-106,1],[-107,1],[-212,-3],[-179,1],[-84,1],[-41,0],[-86,1],[-36,0],[-49,0],[-60,0],[-24,0],[-58,1],[-189,1],[-26,0],[-47,0],[-96,1],[-27,0],[-22,0],[-28,-1]],[[80105,28882],[19,43],[11,18],[10,16],[6,19],[1,31],[1,46],[0,26],[1,19],[0,48],[1,50],[0,20],[4,20],[0,18],[-2,19],[-1,18],[1,32],[1,86],[1,49],[0,45],[0,52],[0,20],[0,35],[1,43],[0,21],[1,72],[1,65],[0,18],[1,40],[0,65],[0,22],[1,65],[0,44],[0,22],[1,19],[0,52],[0,51],[1,67],[0,37],[0,19],[0,20],[0,39],[1,35],[0,47],[1,34],[1,38],[0,30],[0,19],[0,65],[1,40],[0,39],[0,63],[1,46],[0,26],[1,39],[0,26],[0,41],[1,26],[0,21],[1,59],[0,65],[-1,52],[0,27],[1,28],[0,25],[1,29],[-1,21],[0,26],[1,39],[0,26],[0,19],[0,41],[1,26],[1,29],[0,17],[0,1],[0,19],[0,19],[1,39],[0,53],[1,123],[0,4],[0,33],[1,59],[0,32],[0,33],[1,34],[0,25],[0,32],[0,20],[0,46],[1,39],[1,32],[0,16],[0,3],[1,20],[0,34],[0,20],[1,26],[0,33],[1,69],[0,34],[0,26],[2,57],[1,50],[0,24],[0,20],[1,78],[0,44],[0,28],[0,21],[0,22],[1,52],[0,69],[0,58],[1,22],[0,22],[1,91],[0,18],[0,27],[0,45],[0,27],[0,26],[0,54],[1,40],[0,27],[1,20],[1,153],[0,53],[1,40],[0,22],[0,33],[1,42],[0,39],[0,43],[0,39],[0,51]],[[88585,33981],[33,0],[34,-12],[31,-23],[22,-35],[-4,-24],[-8,-34],[-7,-49],[-2,-19],[-3,-19],[1,-46],[8,-5],[1,-1],[3,-11],[6,-20],[16,-25],[12,-12],[42,-45],[3,-6],[15,-31],[9,-18],[-3,-23],[-2,-15],[-2,-12],[-30,-49],[-23,-13],[-15,-8],[-23,-13],[-7,-4],[-14,-16],[-1,-5],[-4,-30],[0,-1],[5,-4],[87,-60],[91,-70],[26,-38],[1,-2],[9,-18],[11,-21],[27,-30],[15,-13],[57,-51],[42,-47],[15,-17],[16,-12],[26,-19],[15,-11],[7,-4],[27,-13],[6,-2],[1,0],[18,-1],[40,-20],[32,-21],[87,-73],[26,-34],[14,-19],[6,-7],[10,-37],[-4,-29],[-20,-31],[-19,-21],[-26,-17],[-46,-25],[-54,-21],[-16,-2],[-71,-8],[-66,-1],[-22,-2],[-52,-5],[-5,0],[-2,-1],[-10,-6],[-18,-11],[-12,-31],[9,-22],[15,-12],[10,-7],[3,-2],[11,-5],[22,-8],[11,-4],[19,-1],[1,0],[26,-2],[32,3],[37,15],[12,9],[10,7],[20,4],[47,2],[38,-2],[25,-6],[2,-1],[37,-21],[10,-6],[17,-37],[-3,-24],[-41,-97],[-29,-37],[-20,-13],[-5,-3],[-32,-32],[-37,-66],[-4,-25],[-1,-9],[9,-20],[28,-23],[116,-50],[1,0],[1,-1],[27,-36],[4,-5],[-5,-2],[-19,-4],[-21,-7],[-23,-10],[-21,-13],[-20,-16],[-6,-7],[-15,-18],[-6,-8],[-60,-15],[-25,-12],[-1,-1],[-13,-13],[-15,-46],[-1,-8],[-5,-31],[-4,-2],[-10,-6],[-16,-12],[-50,-39],[-46,-51],[-5,-7],[-4,-7],[-14,-37],[-2,-6],[-55,-51],[-28,-42],[-1,-5],[-4,-39],[-1,-29],[3,-57],[0,-1],[3,-20],[1,-25],[-1,-8],[-2,-12],[-3,-10],[-21,-48],[-6,-43],[-12,-20],[-8,-15],[-26,-31],[-21,-25],[-10,-11],[-85,-81],[-48,-33],[-47,-33],[-8,-6],[-12,-7],[-22,-14],[-13,-7],[-39,-18],[-10,-5],[-44,-21],[-53,-19],[-101,-28],[-300,-37],[-169,-13],[-12,-1],[-8,3],[-59,-9],[-195,-30],[-163,-36],[-6,-1],[-2,-1],[-107,-34],[-71,-28],[-108,-55],[-50,-45],[-34,-52],[-12,-28],[-4,-27],[6,-12],[-13,-69],[0,-2],[-2,-13],[-40,-59],[-31,-25],[-46,-24],[-73,-20],[-41,-4],[-52,-12],[-8,-1],[-3,-2],[-9,-5],[-49,-21],[-20,-27],[-15,-27],[-4,-28],[3,-31],[2,-11],[5,-6],[78,-87],[9,-10],[14,-29],[8,-15],[0,-35],[-26,-26],[-43,-26],[-59,-25],[-26,-23],[-5,-7],[-9,-13],[2,-21],[41,-69],[-15,-16],[-4,-4],[-31,-16],[-49,-15],[-9,-3],[-8,-9],[-13,-14],[-13,-17],[-3,-17],[6,-21],[5,-22],[41,-111],[27,-17],[23,-14],[12,-7],[59,-14],[39,-2],[49,5],[20,1],[39,2],[26,-16],[6,-8],[8,-10],[2,-25],[-3,-21],[-1,-7],[-13,-17],[-2,-2],[-5,-7],[-18,-9],[-17,-7],[-19,-9],[-50,-9],[-15,-2],[-79,-13],[-68,-3],[-65,14],[-98,61],[-46,31],[-37,16],[-40,2],[-5,0],[-6,-3],[-15,-8],[-33,-17],[-15,-27],[-9,-60],[10,-53],[27,-58],[18,-32],[-2,-40],[0,-4],[-7,-11],[-1,-3],[-8,-12],[-17,-10],[-46,-25],[-44,-12],[-71,-9],[-16,-4],[-6,-2],[-15,-4],[-8,-4],[-20,-10],[-5,-3],[-34,-34]],[[80105,28882],[-72,-3],[-53,0],[-31,0],[-36,0],[-35,0],[-43,0],[-38,1],[-27,-1],[-25,2],[-23,-1],[-45,0],[-38,0],[-49,1],[-23,0],[-32,0],[-35,1],[-28,0],[-22,0],[-31,0],[-29,0],[-45,0],[-24,0],[-36,0],[-77,0],[-31,-1],[-19,3]],[[79158,28884],[-152,-1],[-35,0],[-26,0],[-26,0],[-42,0],[-34,0],[-51,0],[-52,0],[-37,0],[-108,-3],[-31,0],[-26,0],[-34,0],[-249,4],[-104,2],[-63,1],[-25,1],[-28,0],[-34,0],[-51,0],[-25,0],[-26,1],[-52,0],[-34,0],[-25,0],[-1,0],[-26,0],[-51,0],[-34,0],[-31,1],[-24,0],[-291,-7],[-32,-1],[-190,-2],[-114,-1],[-38,-1],[-63,0],[-3,0],[-19,-1],[-45,0],[-34,0],[-68,-1],[-35,0],[-34,0],[-34,0],[-34,0],[-60,0],[-43,-1],[-46,0],[-40,-1],[-25,0],[-26,0],[-34,-1],[-34,0],[-104,-2],[-44,0],[-49,0],[-14,0],[-14,0],[-38,-1],[-94,-1],[-34,0],[-25,-1],[-36,0],[-40,0],[-23,-1],[-24,0],[-59,-1],[-23,0],[-74,-2],[-216,0],[-25,2],[-29,0],[-26,0],[-43,0],[-94,-1],[-58,-1],[-26,0],[-45,0],[-58,-1],[-57,0],[-41,0]],[[74866,28863],[-1,28],[0,20],[-1,34],[-1,44],[-1,32],[0,45],[0,31],[-1,37],[0,24],[0,33],[-1,49],[-2,53],[0,22],[-1,22],[2,19],[1,29],[-125,0],[-2,0],[-69,0],[-109,1],[-213,2],[-272,1],[-35,0],[-89,2],[-23,1],[-72,0],[-28,0],[-54,0],[-35,0],[-120,0],[-68,1],[-44,0],[-24,1],[-75,0],[-73,1],[-30,0],[-34,1],[-43,0],[-33,1],[-23,1],[-40,2],[-77,3],[-22,1],[-31,1],[-26,1],[-27,1],[-56,2],[-93,4],[-196,-1]],[[62615,29535],[0,-57],[1,-164],[-4,-249],[-2,-133],[0,-142],[-1,-48],[0,-20],[-1,-30],[0,-37],[0,-19],[0,-18],[0,-27],[0,-27],[0,-37],[-1,-49],[-2,-141],[-1,-120],[0,-21],[0,-14],[-2,-112],[0,-96],[-3,-154],[0,-28],[-1,-87],[-1,-89],[7,-165],[-2,-19],[3,-21],[-8,-17],[11,-17],[0,-1],[-2,-20],[-2,-19],[-2,-20],[2,-30],[0,-26],[-1,-36],[1,-20],[0,-23],[0,-19]],[[62604,27163],[-42,0],[-23,1],[-30,0],[-37,-1],[-48,1],[-32,0],[-31,0],[-38,0],[-24,0],[-21,1],[-2,0],[-108,2],[-73,1],[-28,0],[-31,1],[-179,2],[-280,2],[-30,-1],[-80,1],[-22,0],[-52,0],[-34,0],[-31,0],[-34,0],[-51,0],[-52,0],[-46,1],[-56,1],[-45,0],[-38,0],[-51,0],[-34,0],[-34,0],[-35,0],[-34,1],[-34,0],[-28,-1],[-24,1],[-34,-1],[-34,1],[-52,-1],[-68,1],[-26,0],[-24,0],[-68,0],[-34,0],[-35,0],[-34,0],[-34,1],[-24,0],[-62,0],[-34,0],[-34,0],[-23,0],[-53,1],[-34,0],[-34,0],[-34,0],[-34,0],[-35,1],[-68,1],[-27,2],[-63,0],[-2,0],[-21,-2],[-30,0],[-35,0],[-51,1],[-51,0],[-52,0],[-34,1],[-34,0],[-52,0],[-34,1],[-34,0],[-34,1],[-137,0],[-35,1],[-34,0],[-34,0],[-52,0],[-34,1],[-57,0],[-52,1],[-35,0],[-102,1],[-35,0],[-34,1],[-34,1],[-34,0],[-72,0],[-59,1],[-68,0],[-25,0],[-61,1],[-27,1],[-24,0],[-120,1],[-7,0],[-19,1],[-25,0],[-17,0],[-18,0],[-51,1],[-87,1],[-34,0],[-103,1],[-34,0],[-74,1],[-49,-1],[-35,-1],[-25,0],[-26,-1],[-46,0],[-22,-1],[-35,0],[-85,-2],[-51,-2],[-75,-1],[-13,0],[-38,-1],[-43,-1],[-36,-1],[-59,-1],[-25,-1],[-26,0],[-28,-1],[-41,0],[-43,-1],[-27,-1],[-6,0],[-18,0],[-43,-1],[-26,-1],[-32,-1],[-58,-1],[-30,0],[-39,-1],[-34,0],[-87,-2],[-33,-1],[-31,-1],[-46,-1],[-42,-1],[-65,-1],[-34,-1],[-27,-1],[-60,0],[-70,-2],[-60,-1],[-29,-1],[-29,0],[-31,-1],[-78,-2],[-25,-1],[-26,0],[-43,-1],[-85,-2],[-93,-2],[-103,-2],[-39,-1],[-43,-1],[-43,-2],[-90,-3],[-35,-1],[-33,1],[-34,0],[-23,0],[-117,1],[-103,4],[-104,2],[-105,-3],[-29,0],[-30,0],[-27,0],[-57,0],[-25,0],[-26,0],[-43,1],[-76,0],[-88,0],[-51,0],[-60,0],[-39,0],[-34,0],[-60,0],[-26,0],[-57,0],[-35,0],[-34,0],[-26,0],[-77,0],[-27,0],[-66,0],[-34,0],[-34,0],[-35,-1],[-94,0],[-33,0],[-46,-1],[-55,0],[-22,0],[-2,0],[-85,-1],[-27,0],[-41,-1],[-25,0],[-26,0],[-31,0],[-86,-1],[-51,0],[-35,0],[-58,-1],[-35,0],[-34,0],[-34,0],[-39,0]],[[52697,27145],[0,20],[1,13],[0,24],[1,28],[1,27],[0,20],[1,19],[0,32],[0,8],[-1,121],[2,54],[2,51],[1,42],[-2,18],[1,26],[1,4],[0,19]],[[52705,27671],[2,19],[3,41],[-1,26],[1,19],[1,23],[0,19],[1,22],[1,28],[1,22],[1,33],[4,39],[-4,20],[6,18],[1,25],[0,24],[1,22],[-3,19],[5,28],[0,24],[0,2],[0,20],[-2,22],[0,22],[1,21],[2,34],[4,21],[1,31],[0,10],[1,17],[4,118],[1,31],[0,1],[1,20],[1,34],[4,93],[0,4],[3,80],[5,141],[1,21],[2,50],[2,55],[9,240],[0,24],[10,265],[4,120],[0,1],[0,77],[0,3],[1,33],[2,40],[4,107],[2,70],[1,49],[2,20],[1,47],[2,36],[1,30],[1,22],[3,78],[1,29],[1,22],[0,19],[1,47],[1,22],[1,26],[1,52],[1,57],[1,31],[0,31],[1,36],[1,51],[2,46],[0,26],[2,75],[0,23],[1,23],[0,29],[1,19],[0,29],[1,34],[0,33],[1,34],[1,25],[0,20],[0,19],[1,20],[0,20],[0,29],[1,26],[1,18],[1,18],[-1,20],[0,22],[1,49],[0,19],[0,33],[1,37],[0,21],[1,72],[1,44],[0,59],[1,30],[0,32],[0,37],[1,61],[0,40],[1,46],[0,20]],[[52705,27671],[-22,0],[-31,0],[-45,1],[-25,1],[-78,3],[-41,2],[-164,8],[-104,5],[-216,10],[-61,2],[-25,1],[-52,2],[-33,2],[-90,4],[-68,3],[-77,0],[-32,2],[-30,1],[-46,1],[-100,3],[-108,3],[-202,6],[-63,3],[-104,4],[-65,3],[-23,0],[-35,1],[-319,19],[-17,-22],[-15,-9],[-11,-1],[-8,2],[-4,1],[-2,11],[-2,4],[-8,5],[-7,3],[-150,18],[-41,-11],[-32,-8],[-25,-6],[-10,-1],[-8,5],[-28,19],[-7,5],[-34,24],[-26,-9],[-58,-28],[-128,-21],[-26,0],[-53,11],[-232,25],[-46,-7],[-6,-2],[-3,-5],[3,-7],[-33,-37],[-156,-1],[-13,4],[-4,4],[0,1],[-9,21],[1,3],[14,9],[2,20],[-22,29],[-4,2],[-166,-20],[-10,-17],[-1,0],[-35,34],[-36,29],[-4,0],[-83,-14],[-6,-2],[-5,-6],[-12,-26],[-49,2],[-73,22],[-26,22],[-72,21],[-23,-3],[-9,-4],[-30,-28],[-125,12],[-13,2],[-55,13],[-83,-27],[-45,-15],[-1,0],[-2,-1],[-56,-7],[-7,1],[-8,4],[-3,5],[-8,41],[4,8],[4,2],[19,-1],[4,2],[5,3],[-2,10],[-2,4],[-29,21],[-10,0],[-126,-21],[-25,-4],[-114,-87],[-21,-16],[-20,-22],[-20,-22],[-71,-80],[0,-9],[-4,-4],[-12,-4],[-1,-1],[-64,-12],[17,-12],[19,-13],[3,-4],[0,-6],[-2,-2],[-111,-22],[-1,0],[-10,0],[-14,5],[-3,3],[0,8],[15,30],[4,4],[12,9],[-40,0],[-140,-101],[-5,-3],[-8,0],[-185,10],[-71,4],[-10,1],[-23,0],[-25,-5],[-11,-5],[-21,-13],[-7,-1],[-7,2],[-19,12],[-1,2],[-11,2],[-8,-2],[-3,-3],[-6,-34],[1,-8],[6,-5],[11,-5],[38,-7],[9,-4],[5,-8],[0,-6],[-1,0],[-7,-5],[-10,-3],[-85,-12],[-5,0],[-15,0],[-12,2],[-8,4],[0,9],[9,14],[2,7],[3,30],[2,13],[-2,9],[-2,4],[-12,8],[-44,15],[-24,4],[-17,-2],[-6,-4],[-6,-8],[-12,-21],[-11,-21],[-7,-33],[0,-3],[-2,-11],[-8,-19],[-22,-17],[-13,-8],[-10,-3],[-9,0],[-11,1],[-10,5],[-21,16],[-8,8],[-8,9],[-2,4],[-34,35],[-31,26],[-36,23],[-11,5],[-8,2],[-1,0],[-5,1],[-19,-3],[-30,0],[-29,7],[-63,18],[-10,4],[-11,7],[-7,11],[-5,16],[-1,2],[-2,2],[-5,4],[-9,3],[-13,1],[-1,0],[-20,-6],[-18,-10],[-95,-64],[-8,-7],[-2,-12],[2,-8],[14,-22],[0,-8],[-4,-5],[-10,-5],[-10,-5],[-12,-4],[-21,-7],[-35,-2],[-95,1],[-27,2],[-17,1],[-11,0],[-21,-2],[-60,-11],[-14,-6],[-139,-112],[-6,-11],[0,-9],[10,-16],[4,-8],[0,-7],[-6,-3],[-49,-21],[-81,-28],[-23,-6],[-19,-2],[-48,-3],[-84,-43],[-8,-10],[-6,-5],[-26,-8],[-19,-6],[-57,-14],[-21,-3],[-21,0],[-36,0],[-12,-3],[-7,-5],[-12,-12],[-13,-13],[-1,-3],[-22,-11],[-7,-4],[-1,0],[-13,-4],[-12,1],[-1,1],[-8,1],[-5,4],[-6,9],[0,4],[-2,40],[-4,9],[-1,2],[-9,13],[-5,4],[-7,4],[-29,5],[-1,0],[-34,3],[-46,-25],[-15,-8],[0,-2],[-1,-4],[-4,-3],[-11,0],[-33,12],[-16,5],[-33,6],[-129,20],[-153,11],[-34,-3],[-45,-28],[-11,-4],[-13,-3],[-2,0],[-16,1],[-9,0],[-110,23],[-2,1],[-38,11],[-11,5],[-6,5],[-5,5],[-2,6],[-8,10],[-35,29],[-6,5],[-10,8],[-14,7],[-14,6],[-75,11],[-47,4],[-94,10],[-4,0],[-62,8],[-8,1],[-19,0],[-20,-2],[-21,-7],[-15,-8],[-11,-8],[-7,-8],[-1,-28],[4,-9],[8,-5],[19,-10],[9,-8],[3,-6],[0,-7],[-5,-7],[0,-1],[-8,-6],[-6,-2],[-14,-1],[-37,9],[-10,3],[-21,0],[-23,-7],[-2,-2],[-25,2],[-19,7],[-45,18],[-17,6],[-20,11],[3,5],[-1,9],[-3,3],[-9,5],[-8,1],[-18,-2],[-74,-10],[-24,-28],[-1,-1],[-7,-16],[-15,-2],[-19,1],[-7,3],[-4,2],[1,8],[2,4],[3,5],[-1,12],[-3,5],[-10,7],[-5,0],[-8,-2],[-12,-5],[0,-2],[-15,-7],[-126,-14],[-1,0],[-11,0],[-6,4],[-3,5],[0,17],[7,12],[15,24],[22,17],[21,9],[7,6],[4,5],[1,6],[-1,13],[-5,7],[-133,-3],[-23,2],[-21,-4],[-19,-16],[3,-21],[22,-29],[-19,-17],[-27,1],[-14,15],[-3,25],[-5,26],[-14,20],[-24,6],[-3,-3],[-31,-40],[1,0],[4,-3],[-18,-7],[-42,-14],[-21,-7],[-41,-15],[-83,-38],[-125,-17],[-31,0],[-34,7],[-35,7],[-20,3],[-24,-1],[-156,-18],[-111,-26],[-40,-9],[-1,-1],[-11,-7],[-14,-11],[-19,-26],[-43,-56],[-55,-71],[-5,-6],[-35,-28],[-7,-7],[-31,-12],[-25,-3],[-7,-1],[-8,5],[-1,8],[4,10],[5,18],[-1,12],[-6,7],[-9,6],[-13,3],[-14,0],[-11,-1],[-14,-4],[-7,-5],[-6,-9],[0,-19],[7,-15],[1,-1],[15,-25],[14,-18],[4,-6],[2,-7],[1,-84],[8,-5],[-15,-15],[-19,-19],[-4,-4],[-20,-20],[-18,-18],[-11,6],[-41,22],[-20,8],[-19,4],[-12,2],[-1,-10],[-3,-20],[42,-27],[-118,-47],[-12,-3],[-23,0],[-11,2],[-50,19],[-18,11],[-22,14],[-10,2],[-28,-1],[-10,-4],[-6,-3],[-3,-5],[-3,-9],[2,-14],[5,-4],[52,-19],[2,-1],[7,-4],[6,-7],[0,-11],[-2,-5],[-7,-10],[-15,-14],[-5,-2],[-9,0],[-134,10],[-58,6],[-49,5],[-15,3],[-9,5],[0,3],[-1,0],[-26,14],[-18,4],[-73,12],[-23,1],[-29,-7],[-28,-10],[-16,-10],[-12,-11],[-12,-13],[-7,-13],[-7,-95],[31,-13],[14,-6],[15,1],[5,-1],[0,-10],[-28,-45],[-4,-3],[-9,-3],[-17,-1],[-11,3],[-3,2],[-24,-29],[-42,-5],[-50,-6],[-47,-16],[-29,-13],[-11,-37],[-29,-16],[-8,-5],[-116,-5],[-14,4],[-9,5],[-2,5],[0,9],[3,6],[-1,0],[-32,39],[-113,-43],[-90,-21],[-2,-4],[0,-7],[28,-50],[6,-3],[10,-6],[31,-8],[12,-6],[1,-8],[-31,-42],[-14,-18],[-16,-7],[-94,-10],[-1,0],[-24,1],[-27,11],[-28,25],[-24,10]],[[40234,26143],[-2,126],[-2,221],[0,123],[2,121],[1,140],[-2,19],[-1,74],[-1,31],[0,20],[0,128],[0,51],[0,65],[-2,132],[-3,102],[0,30],[-1,48],[-1,43],[0,37],[-3,131],[1,100],[0,68],[-1,26],[0,29],[-1,41],[0,34],[0,82],[0,24],[-1,26],[-1,33],[0,18],[0,36],[-2,19],[0,29],[0,27],[-1,41],[0,22],[-1,61],[-1,88],[-1,78],[-1,55],[-2,118],[-3,108],[-3,153],[0,24],[-2,65],[-1,56],[-1,52],[-2,86],[0,37],[0,1],[1,24],[0,65],[-2,96],[-1,20],[0,19],[-5,191],[-3,53],[-1,94],[-2,76],[-2,93],[-3,144],[0,120]],[[40234,26143],[1,-52],[3,-99],[0,-46],[0,-106],[0,-40],[1,-40],[0,-79],[0,-121],[2,-72],[-2,-25],[1,-22],[0,-26],[1,-56],[2,-126],[0,-76],[1,-27],[-4,-30],[4,-62],[3,-43],[-2,-101],[-1,-48],[-1,-15],[-1,-61],[0,-25],[1,-61],[2,-40],[-1,-146],[0,-87],[-1,-44],[1,-189],[0,-76],[3,-183],[0,-28],[0,-18],[2,-78],[-1,-24],[0,-32],[-2,-137],[1,-66],[0,-28],[-1,-44],[0,-34],[-1,-36],[1,-19],[0,-2],[3,-38],[0,-76],[0,-43],[1,-114],[2,-27],[0,-127],[0,-63],[1,-27],[6,-179],[-2,-28],[3,-38],[0,-7],[1,-47],[0,-12]],[[40261,22547],[-24,1],[-36,1],[-29,0],[-40,0],[-38,1],[-85,0],[-64,0],[-25,0],[-59,0],[-56,0],[-35,0],[-26,1],[-39,0],[-41,1],[-25,0],[-164,1],[-55,0],[-33,0],[-49,0],[-79,0],[-29,0],[-80,0],[-89,1],[-24,0],[-39,0],[-83,0],[-65,0],[-30,0],[-40,0],[-30,0],[-31,0],[-57,0],[-155,0],[-54,0],[-191,1],[-27,0],[-24,0],[-35,0],[-25,0],[-44,1],[-40,0],[-65,0],[-61,0],[-86,1],[-39,0],[-30,0],[-25,0],[-28,0],[-23,1],[-34,0],[-166,1],[-23,0],[-23,1],[-22,0],[-89,0],[-101,1],[-23,0],[-70,1],[-25,0],[-135,2],[-24,0],[-22,0],[-24,1],[-17,0],[-10,0],[-269,3],[-147,1],[-44,1],[-26,0],[-36,0],[-46,0],[-24,1],[-107,0],[-29,0],[-269,2]],[[35905,22573],[-15,19],[-21,14],[-22,12],[-5,5],[-32,23],[-15,18],[-12,16],[6,20],[36,8],[2,0],[31,-1],[33,0],[28,7],[23,10],[9,20],[-5,18],[-18,23],[-26,20],[-37,21],[-31,16],[-38,3],[-24,3],[-9,2],[-55,16],[-23,21],[14,17],[32,13],[-57,73],[-29,38],[-130,83],[-18,18],[27,21],[20,9],[22,7],[18,17],[2,31],[0,1],[-29,55],[-14,10],[-9,7],[-21,14],[-24,20],[-27,15],[-23,17],[-31,31],[-24,25],[-30,50],[-30,48],[106,210],[19,36],[78,-4],[75,-4],[25,-12],[9,-18],[-6,-20],[-23,-13],[-93,-21],[-21,-10],[-9,-13],[-5,-5],[1,-7],[3,-17],[52,-17],[38,-7],[34,-5],[25,-2],[29,-1],[26,2],[25,5],[23,7],[41,21],[31,30],[16,25],[5,45],[2,22],[15,18],[12,15],[-15,24],[-38,24],[-28,27],[-40,26],[-4,24],[56,41],[9,20],[-26,23],[-28,16],[-19,11],[-11,9],[-44,36],[-16,19],[-20,37],[-21,23],[-22,18],[-381,3],[-206,1],[-200,2],[-45,0],[-192,1],[-794,6],[-112,0],[-522,4],[-280,2],[-1,231],[0,31],[-72,47],[-25,16],[-18,12],[-59,38],[-2,1],[-30,21],[-208,135],[-74,48],[-22,15],[-52,34],[-155,101],[-21,13],[-38,26],[-164,107],[-79,51],[-37,24],[-200,131],[-159,104],[-124,81],[-193,127],[-81,52],[-19,13],[-105,70],[-39,26],[-57,37],[-27,5],[-79,57],[-106,75],[-49,34],[-2,2],[-83,60],[-35,24],[-23,16],[0,27],[0,52],[0,128],[1,47],[-379,255],[-18,13],[-3,2],[-73,49],[-24,16],[-40,25],[-56,37],[-24,16],[-60,41],[-80,52],[-93,60],[-47,33],[-47,27],[-137,88],[-19,13],[-31,19],[-18,12],[-19,12],[-48,31],[-23,15],[-90,59],[-67,43],[-26,17],[-90,59],[-97,64],[-21,13],[-4,2],[-15,10],[-20,10],[-89,54],[-8,5],[-50,31],[-109,69],[-103,66],[-151,95],[-217,140],[-47,31],[-103,69],[-5,3],[-54,32],[-58,35],[-25,22]],[[27733,28028],[90,86],[73,45],[37,32],[6,12],[23,38],[39,47],[30,30],[86,87],[15,35],[30,35],[39,40],[15,11],[43,31],[61,67],[60,56],[69,75],[88,103],[59,56],[54,34],[36,20],[85,47],[165,90],[39,20],[198,106],[71,46],[46,37],[55,49],[10,11],[34,35],[44,57],[62,82],[37,64],[38,77],[16,32],[12,28],[25,53],[12,26],[29,62],[16,55],[2,4],[9,32],[8,29],[10,94],[-4,35],[3,27],[-11,45],[-20,86],[-50,206],[-3,14]],[[74866,28863],[4,-18],[-3,-63],[-2,-44],[-4,-82],[-3,-55],[2,-133],[1,-36],[2,-193],[-4,-162],[3,-35],[0,-32],[0,-23],[0,-28],[0,-21],[-2,-118],[2,-66],[3,-137],[0,-57],[-1,-101],[0,-20],[0,-12],[0,-81],[0,-53],[-1,-35],[0,-1],[0,-101],[-2,-50],[-3,-73],[12,-18],[-8,-162],[-1,-108],[0,-7],[0,-71],[-2,-25],[0,-39],[-1,-18],[0,-55],[0,-25],[0,-26],[0,-27],[-1,-26],[-1,-85],[0,-35],[0,-19],[0,-22],[-1,-72],[0,-29],[-1,-57],[0,-22],[-2,-130],[0,-26],[-1,-37],[-1,-69],[-2,-129],[-1,-67],[-1,-64],[2,-63],[-4,-29],[0,-39],[0,-20],[-1,-51],[-3,-57],[9,-100],[-6,-166],[-1,-31],[0,-18],[0,-2],[-1,-19],[1,-20],[-1,-38],[0,-23],[-1,-44],[-1,-38],[0,-22],[-1,-40],[-1,-31],[-1,-39],[0,-25],[-3,-130],[-1,-48],[0,-33],[0,-18],[-1,-19],[-1,-18],[-1,-61],[0,-28],[-1,-54],[-1,-36],[0,-55],[-1,-36],[0,-18],[0,-72],[1,-24],[-7,-102],[0,-67],[-1,-12],[-1,-81],[-5,-68],[-1,-35],[-1,-25],[-2,-23],[-1,-35],[-1,-25],[-1,-45],[0,-31],[-1,-23],[-3,-73],[-1,-20],[-1,-22],[0,-38],[-2,-35],[-1,-27]],[[74797,23211],[-26,-1],[-167,4],[-29,0],[-190,5],[-93,1],[-108,-3],[-154,1],[-59,3],[-89,0],[-69,0],[-37,-1],[-69,0],[-46,-1],[-23,0],[-65,0],[-62,1],[-67,1],[-55,0],[-24,0],[-22,0],[-38,1],[-50,0],[-62,2],[-24,0],[-57,1],[-48,1],[-74,1],[-28,1],[-31,0],[-51,1],[-32,-1],[-128,0],[-25,0],[-38,1],[-1,0],[-37,0],[-45,0],[-27,-1],[-44,0],[-58,0],[-25,-1],[-75,-1],[-203,-3],[-314,-4],[-91,-1],[-357,-4],[-49,-2],[-68,0],[-140,-5],[-28,0],[-63,0],[-28,0],[-30,-1],[-33,0],[-30,0],[-28,0],[-60,0],[-203,-3],[-92,-1],[-72,-1],[-35,2],[-5,1],[-25,-1],[-88,-1],[-89,-1],[-75,-1],[-107,-2],[-33,0],[-18,-1],[-10,0],[-55,1]],[[69916,23198],[-106,2],[-103,2],[-2,0],[-407,1],[-76,0],[-131,1],[-204,0],[-208,1],[-84,0],[-335,2],[-208,-1],[-417,-8],[-58,1],[-36,1],[-48,0],[-36,0],[-24,0],[-23,0],[-86,0],[-213,2],[-84,-1],[-229,3],[-105,1],[-34,0],[-63,1],[-49,0],[-136,1],[-229,1],[-1,0],[-29,1],[-28,0],[-31,0],[-27,1],[-25,0],[-24,0],[-31,1],[-53,0],[-22,1],[-41,1],[-51,0],[-24,0],[-24,0],[-35,1],[-25,0],[-60,0],[-36,0],[-60,0],[-48,0],[-33,0],[-51,0],[-24,0],[-35,0],[-24,0],[-24,0],[-48,0],[-24,1],[-33,0],[-39,0],[-60,0],[-24,0],[-24,0],[-36,0],[-26,1],[-23,1],[-339,-2],[-35,0],[-36,0],[-220,0],[-88,0],[-96,0],[-316,1],[-1,0],[-7,0],[-175,1],[-1,0],[-274,1],[-55,-2],[-26,0],[-48,1],[-84,0],[-36,0],[-84,0],[-24,0],[-60,-1],[-45,0],[-32,0],[-24,1],[-96,1],[-24,0],[-24,0],[-24,0],[-24,0],[-83,1],[-70,2]],[[62528,23221],[1,56],[1,18],[2,111],[-1,54],[1,32],[0,3],[3,60],[1,19],[0,34],[1,45],[0,21],[1,26],[2,75],[2,87],[1,21],[1,30],[1,18],[2,44],[13,44],[2,23],[1,69],[0,1],[3,129],[0,19],[3,66],[0,22],[2,83],[1,25],[0,27],[0,28],[2,71],[1,23],[0,1],[3,86],[2,74],[0,11],[0,28],[-1,36],[1,24],[1,48],[-1,36],[-2,36],[0,57],[0,20],[1,41],[0,44],[-1,54],[0,55],[0,18],[0,22],[1,32],[2,66],[0,18],[2,54],[1,36],[0,19],[2,45],[2,66],[1,5],[2,65],[-3,24],[2,25],[1,35],[0,25],[1,29],[1,22],[1,20],[1,31],[0,23],[0,36],[0,19],[2,72],[0,38],[0,72],[0,24],[1,27],[-2,76],[1,27],[0,23],[-1,26],[1,36],[-1,22],[1,57],[1,21],[1,60],[-2,62],[1,198],[1,45],[4,25],[0,23],[0,48],[1,57],[-1,21],[0,55],[0,36],[1,21]],[[79158,28884],[6,-30],[-52,-14],[-4,-2],[-27,-18],[-2,-9],[-4,-82],[4,-6],[28,-24],[28,-21],[30,-24],[38,-53],[19,-115],[-7,-55],[-7,-21],[0,-4],[0,-1],[9,-14],[18,-9],[3,-1],[99,-23],[5,-1],[67,6],[0,-18],[8,-19],[37,-96],[9,-6],[53,-31],[11,-29],[12,-28],[-10,-3],[-40,-11],[-41,4],[-3,-2],[-31,-39],[-50,-52],[-7,-8],[-24,-17],[-13,-4],[-7,-1],[-4,-1],[-36,3],[-54,-20],[-19,-15],[-9,-12],[-36,-71],[0,-6],[3,-3],[10,-4],[70,1],[11,3],[10,5],[12,5],[9,0],[25,-13],[2,-2],[-3,-6],[-33,-22],[-13,-7],[-2,0],[-61,-19],[-2,-7],[13,-17],[4,-5],[110,-68],[-15,-15],[-4,-2],[-17,-5],[-55,-14],[-88,-69],[12,-38],[2,-6],[-20,-19],[-15,-15],[12,-101],[8,-9],[17,-14],[58,-50],[-13,-33],[-3,-1],[-4,-3],[-5,-5],[-6,-12],[11,-52],[8,-10],[7,-3],[16,-4],[15,0],[25,5],[38,-7],[5,-2],[2,-5],[-7,-39],[-2,-65],[5,-35],[22,-27],[68,-35],[1,-5],[-42,-33],[-9,-5],[-5,-1],[-29,-10],[-8,-2],[2,-19],[53,6],[9,1],[74,-25],[5,-5],[3,-11],[-6,-10],[-19,-19],[-10,-3],[-2,0],[-26,-2],[-55,-18],[-6,-4],[-2,-5],[4,-7],[55,-31],[-83,-40],[-1,-12],[53,-2],[21,-16],[35,-33],[16,-15],[-3,-8],[-34,-22],[-23,-15],[-28,-17],[-40,-6],[-3,-87],[-55,-115],[-29,-43],[-2,-4],[2,-28],[14,-9],[28,-5],[18,0],[5,2],[8,3],[24,0],[11,-2],[4,-4],[0,-5],[-9,-11],[-28,-19],[-18,-15],[-23,-18],[1,-44],[4,-4],[5,-12],[-12,-28],[-3,-7],[-17,-40],[-6,-6],[-16,-7],[-19,-1],[-16,8],[-1,8],[-2,12],[-7,10],[-58,18],[-11,0],[-26,-7],[-11,-6],[-13,-13],[-5,-27],[-2,-3],[-7,-9],[-75,-74],[-35,-34],[-16,-9],[-13,-1],[-34,8],[-29,-5],[-3,-3],[-9,-19],[-7,-37],[0,-14],[2,-10],[22,-41],[-1,-8],[-1,-3],[-4,-11],[-7,-9],[-16,-7],[-6,0],[-52,-1],[-29,-5],[-15,-7],[-6,-9],[-1,-12],[12,-21],[47,-47],[11,-8],[17,-13],[22,-9],[35,1],[23,3],[30,9],[19,4],[11,-3],[6,-4],[10,-24],[2,-22],[2,-27],[-6,-8],[-13,-7],[-60,-16],[-28,0],[-37,8],[-10,1],[-27,-9],[-4,0],[-15,-1],[-16,0],[-10,-50],[-11,-50],[-28,-2],[-3,-57],[-7,-1],[1,-10],[5,-38],[6,-49],[7,1],[68,-174],[12,-16],[5,-4],[35,-27],[31,-17],[14,-21],[15,-29],[0,-21],[0,-25],[9,-23],[15,-32],[3,-4],[15,-13],[14,-9],[50,-15],[6,-2],[47,-19],[51,-24],[16,-12],[1,0],[6,-8],[77,-143],[8,-27],[4,-23],[-6,-14],[-7,-10],[-27,-23],[-17,-16],[-9,-9],[-5,-9],[-1,-21],[11,-33],[15,-40],[4,-6],[3,-13],[1,-14],[-4,-12],[-29,-37],[-5,-6],[-16,-26],[-3,-8],[-3,-16],[2,-4],[1,-1],[39,-38],[12,-5],[21,-3],[141,28],[13,7],[8,11],[2,0],[3,-1],[13,-28],[16,-45],[1,-10],[-1,-83],[-3,-11],[0,-2],[-8,-14],[-14,-10],[-20,-12],[-17,-5],[-14,-3],[-21,3],[-10,4],[-17,8],[-6,1],[-41,8],[-9,0],[-2,0],[-24,-6],[-21,-15],[-14,-13],[-7,-14],[11,-16],[5,-2],[15,-7],[63,-24],[-64,-42],[27,-44],[27,-45],[3,-5],[44,-64],[7,-17],[-2,-6],[-4,-6],[-11,0],[-17,12],[-74,17],[-9,0],[-2,-1],[-62,-26],[-46,-21],[-8,-10],[-28,-20],[-2,-2],[-123,-83],[-7,-1],[-11,5],[-9,11],[-1,5],[0,1],[-6,9],[-6,5],[-10,1],[-67,-6],[-18,-10],[-7,-12],[-2,-9],[-1,-16],[-7,-9],[-7,-1],[-12,1],[-37,19],[29,-32],[75,-110],[1,-4],[-10,-8],[-54,-14],[-60,-4],[-51,-4],[-13,5],[-26,7],[-29,7],[-29,2],[-40,2],[-19,-2],[-11,-3],[-9,-6],[-18,-15],[-10,-13],[-1,-1],[-45,-162],[1,-13],[15,-32],[5,-11]],[[78348,23276],[-28,0],[-24,0],[-60,0],[-19,0],[-23,1],[-24,0],[-37,0],[-30,-1],[-24,2],[-80,0],[-34,-1],[-29,0],[-45,0],[-203,0],[-7,0],[-143,0],[-1,-47],[0,-27],[-36,1],[-60,-1],[-50,1],[-41,0],[-88,0],[-96,0],[-41,0],[-70,1],[-51,-1],[-49,1],[-31,0],[-71,0],[-63,0],[-37,0],[-31,0],[-94,0],[-44,0],[-59,0],[-76,1],[-32,0],[-84,0],[-41,0],[-107,0],[-41,0],[-36,0],[-28,1],[-61,0],[-34,0],[-36,0],[-23,0],[-26,0],[-59,2],[-3,1],[-121,-2],[-41,2],[-145,-1],[-30,0],[-129,1],[-126,1],[-122,1],[-153,-1],[-174,0]],[[85901,28847],[-23,-41],[-4,-26],[11,-35],[26,-29],[4,-4],[4,-9],[13,-33],[-8,-31],[-13,-14],[-37,-19],[-5,-3],[-236,-72],[-105,-55],[-8,-4],[-24,-33],[-1,-9],[-1,-8],[-1,-5],[8,-27],[74,-79],[79,-72],[31,-31],[1,-1],[12,-22],[3,-5],[4,-24],[2,-10],[24,-52],[69,-89],[42,-29],[78,-31],[2,0],[11,-2],[52,-28],[7,-6],[43,-36],[6,-5],[4,-14],[1,-3],[-7,-51],[-30,-47],[-57,-44],[-9,-8],[-46,-24],[-53,-19],[-7,-1],[-60,-10],[-66,4],[-19,1],[-26,4],[-70,28],[-41,28],[-48,33],[-8,1],[-45,4],[-12,-3],[-4,-1],[-25,-13],[-14,-14],[-46,-77],[-15,-19],[-4,-4],[-1,-2],[-12,-15],[-100,-83],[-1,-1],[-4,-2],[-56,-36],[-76,-37],[-53,-26],[-90,-32],[-35,-11],[-68,-22],[-132,-44],[-25,-4],[-15,-3],[-18,-8],[-72,-28],[-44,-10],[-33,-3],[-16,-1],[-3,-1],[-1,0],[-119,0],[-196,8],[-10,1],[-44,2],[-129,-10],[-61,-16],[-17,-7],[-73,-27],[-42,-24],[-40,-35],[-137,-161],[-11,-12],[-18,-21],[-12,-26],[-2,-18],[0,-1],[-6,-39],[7,-20],[3,-7],[1,-5],[32,-26],[33,-14],[68,-6],[99,10],[23,2],[8,1],[38,3],[25,2],[24,-6],[8,-2],[43,-10],[81,-27],[5,-2],[17,-9],[49,-36],[28,-50],[-4,-58],[-24,-31],[-37,-18],[-17,-8],[-38,-9],[-10,-3],[-17,-6],[-26,-10],[-2,-1],[-4,-2],[-17,-9],[-21,-11],[-18,-18],[-40,-148],[-3,-24],[-1,-10],[-5,-34],[0,-18],[1,-84],[-15,-90],[-17,-59],[-7,-21],[-10,-17],[-1,-1],[-9,-15],[-50,-53],[-46,-36],[-19,-15],[-45,-35],[-50,-38],[-46,-36],[-59,-48],[-93,-83],[-95,-99],[-78,-88],[-3,-2],[-9,-8],[-70,-59],[-75,-63],[-109,-57],[-30,-9],[-58,-11],[-59,-11],[-63,-4],[-104,-17],[-7,-1],[-40,-8],[-91,-19],[-49,-19],[-50,-34],[-19,-13],[-31,-35],[-3,-4],[-64,-87],[-38,-20],[-164,-100],[-8,-9],[-20,-21],[-24,-66],[-3,-20],[-2,-17],[-9,-16],[-18,-33],[-17,-32],[-14,-25],[-6,-8],[-56,-73],[-15,-19],[-7,-9],[-1,-1],[-19,-44],[-9,-21],[-11,-82],[0,-28],[1,-50],[19,-49],[27,-70],[4,-20],[12,-59],[2,-12],[-1,-5],[-17,-96],[-25,-67],[-11,-30],[-37,-73],[-29,-38],[-7,-6],[-15,-13],[-35,-31],[-50,-53],[-29,-22],[-26,-19],[-63,-33],[-68,-18],[-36,-5],[-119,4],[-8,6],[-1,0],[-68,21],[-47,35],[-28,28],[-21,44],[-39,75],[-7,19],[-4,39],[9,37],[29,68],[32,38],[31,42],[20,37],[8,15],[-5,53],[-17,39],[-36,28],[-8,5],[-19,12],[-38,14],[-29,9],[-34,5],[-45,-2],[-46,-13],[-27,-12],[-39,-17],[-29,-18],[-14,-9],[-36,-33],[-15,-20],[-15,-25],[-13,-43],[-6,-26],[-7,-21],[-19,-43],[-18,-26],[-25,-33],[-15,-40],[-6,-27],[-3,-14],[-23,-41],[-29,-28],[-6,-4],[-49,-23],[-24,-8],[-56,-20],[-25,-12],[-19,-10],[-25,-16],[-54,-48],[-46,-43],[-21,-19],[-22,-19],[-35,-28],[-15,-12],[-19,-16],[-26,-13],[-47,-15],[-44,0],[-45,4],[-29,8],[-31,13],[-32,26],[-12,18],[-12,25],[-2,15],[1,20],[9,29],[14,21],[14,25],[50,53],[18,18],[21,21],[16,21],[15,17],[16,16],[31,26],[32,32],[17,29],[-3,29],[-11,12],[-1,1],[-23,28],[-16,11],[-42,21],[-23,9],[-22,7],[-48,10],[-29,0],[-75,-1],[-37,-3],[-68,-15],[-26,-7],[-58,-17],[-49,-9],[-37,-11],[-1,0],[-6,-3],[-33,-18],[-41,-38],[-5,-5],[-19,-38],[-8,-29],[-6,-20],[-2,-20],[2,-35],[-7,-25],[-1,-4],[-22,-31],[-1,-2],[-19,-14],[-27,-16],[-39,-14],[-10,-3],[-3,0],[-46,-8],[-42,-9],[-37,-13],[-20,-17],[-16,-29],[-8,-35],[2,-32],[0,-1],[20,-31],[8,-6],[5,-7],[22,-13],[24,-14],[30,-14],[69,-30],[3,-1],[23,-7],[16,-20],[11,-36],[-11,-30],[-16,-20],[-1,0],[-32,-26],[-37,-20],[-61,-15],[-41,-7],[-73,-18],[-33,-16],[-47,-38],[-28,-61],[1,-31],[14,-50],[0,-51],[-15,-19],[-30,-22],[-27,-7],[-80,-6],[-25,3],[-31,3],[-23,9],[-38,31],[-6,37],[12,32],[0,1],[-10,32],[-40,45],[-28,21],[-43,33],[-64,51],[-29,24],[-50,40],[-80,29],[-29,-4],[-7,-1],[-12,-7],[-16,-13]],[[78413,23221],[-29,17],[-16,7],[-6,4],[-4,6],[-10,21]],[[35905,22573],[-43,0],[-2,0],[-150,0],[-36,-1],[-26,2],[-32,-1],[-47,0],[-239,2],[-220,1],[-188,4],[-113,2],[-92,2],[-55,1],[-142,3],[-33,1],[-85,1],[-146,3],[-37,1],[-49,1],[-36,1],[-306,6],[-10,0],[-23,1],[-135,2],[-188,0],[-26,1],[-57,1],[-22,0],[-30,1],[-46,0],[-23,-1],[-198,5],[-32,1],[-23,1],[-59,1],[-107,-8],[0,-24],[0,-53],[1,-111],[0,-2],[1,-223],[1,-56],[0,-55],[0,-71],[1,-69],[-1,-125],[1,-189],[1,-103],[0,-25],[1,-134],[0,-26],[-1,-41],[2,-53],[-3,-23],[1,-34],[1,-52],[1,-30],[1,-21],[2,-51],[-40,-9],[-79,-17],[-52,-11],[-114,-25],[-126,-28],[-133,-33],[-191,-43],[-109,-25],[-41,-11],[-109,-25],[-26,-6],[-220,-49],[-309,-70],[-38,-8],[-31,-7],[-320,-73],[-45,-14],[-237,-53],[-173,-39],[-33,-8],[-22,-5],[-82,-18],[-92,-20],[-101,-23],[-52,-12],[-104,-25],[-1,-1],[-26,-6],[-44,-11],[-109,-23],[-115,-24],[-34,-7],[-30,-6],[-77,-19],[-40,-10],[-53,-12],[-30,-5],[-171,-38],[-22,-4],[-70,-16],[-29,-7],[-2,0],[-76,-11]],[[29051,20179],[-68,36],[-62,34],[-15,7],[-43,26],[-53,12],[-48,24],[-32,23],[-65,28],[-2,1],[-8,5],[-28,18],[-22,12],[-15,9],[-11,7],[-90,60],[-16,5],[-36,11],[-33,16],[-148,102],[-29,26],[-86,102],[-8,15],[-17,35],[-44,38],[-34,64],[-127,133],[-62,44],[-18,12],[-132,146],[-42,47],[-33,55],[-27,37],[-14,17],[-14,18],[-184,126],[-21,22],[-141,100],[-76,47],[-97,40],[-49,9],[-64,17],[-64,9],[-42,7],[-119,9],[-176,45],[-38,14],[-79,54],[-46,34],[-55,40],[-29,18],[-22,8],[-69,48],[0,5],[-45,46],[-38,47],[-81,85],[-46,43],[-61,46],[-123,128],[-38,48],[1,4],[-10,23],[-30,51],[-54,73],[-15,22],[-40,57],[-52,138],[-9,38],[-7,35],[-14,54],[-15,12],[5,5],[-2,20],[-14,102],[-18,56],[-13,20],[-8,37],[-5,31],[-2,24],[-33,137],[-10,54],[-18,102],[-34,127],[-7,6],[-4,162],[5,53],[11,41],[12,125],[-10,13],[-12,39],[0,80],[4,82],[8,11],[17,46],[12,128],[-3,42],[-2,26],[22,72],[34,40],[53,63],[24,47],[5,12],[19,38],[24,55],[52,61],[28,26],[15,14],[57,73],[2,23],[3,27],[8,5],[16,48],[25,57],[58,92],[41,59],[37,38],[18,18],[102,132],[46,39],[141,104],[131,75],[91,60],[55,48],[9,15],[159,129],[42,32],[85,48],[85,31],[134,70],[146,108],[30,30],[46,79],[29,64],[21,52],[-1,34],[22,29],[21,54],[27,123],[17,171],[33,69],[21,50],[10,24],[25,62],[5,51],[16,47],[55,95],[33,55],[20,47],[20,128],[6,19],[22,72],[24,50],[22,28],[39,63],[10,30],[18,51],[-28,110],[3,7]],[[52697,27145],[-2,-62],[-4,-119],[0,-28],[-2,-95],[-1,-63],[0,-5],[-1,-18],[-2,-27],[0,-65],[-2,-41],[-1,-55],[-3,-34],[0,-7],[0,-35],[-3,-260],[-1,-125],[-1,-101],[0,-33],[-2,-130],[0,-68],[0,-192],[1,-23],[-4,-113],[0,-87],[1,-82],[3,-218],[1,-56],[-2,-29],[-2,-109],[0,-65],[0,-63],[-2,-67],[1,-30],[0,-53],[0,-46],[-2,-65],[0,-1],[-2,-63],[-5,-174],[-3,-94],[-3,-73],[0,-57],[-1,-76],[0,-88],[1,-10],[0,-79],[-1,-75],[-4,-181],[-1,-42],[-2,-75],[1,-34],[-2,-23],[-2,-52],[-1,-47],[-2,-130],[-2,-57],[-3,-87],[-4,-256],[-3,-190],[-1,-81]],[[52627,22431],[-27,0],[-37,1],[-48,1],[-150,1],[-70,-1],[-78,-1],[-158,2],[-103,3],[-144,2],[-115,2],[-37,1],[-3,0],[-42,1],[-227,4],[-49,0],[-162,3],[-9,0],[-13,1],[-167,2],[-217,4],[-353,0],[-2,0],[-48,0],[-25,-1],[-109,-7],[-71,0],[-126,1],[-265,2],[-54,0],[-254,1],[-149,1],[-45,0],[-66,-1],[-93,-2],[-175,-3],[-123,-1],[-8,0],[-52,0],[-212,-4],[-45,1],[-125,2],[-78,2],[-253,5],[-101,2],[-70,2],[-97,1],[-121,1],[-89,0],[-111,1],[-137,2],[-66,0],[-111,-1],[-287,1],[-295,7],[-45,1],[-40,1],[-44,0],[-188,1],[-108,3],[-77,1],[-49,1],[-54,1],[-61,1],[-223,4],[-75,2],[-39,1],[-32,1],[-172,3],[-70,2],[-37,2],[-144,4],[-6,0],[-36,0],[-221,8],[-53,2],[-32,1],[-79,0],[-43,1],[-161,3],[-253,8],[-468,11],[-315,4],[-1,0],[-26,1],[-41,1],[-39,1],[-84,2],[-3,0],[-95,2],[-136,2],[-60,-2],[-226,3]],[[42719,22546],[-31,0],[-62,0],[-225,1],[-24,0],[-48,1],[-11,0],[-69,0],[-248,0],[-84,-1],[-38,1],[-37,0],[-36,0],[-154,0],[-55,0],[-89,0],[-236,0],[-43,0],[-48,1],[-93,0],[-180,0],[-127,-1],[-83,1],[-117,0],[-96,-1],[-75,-1],[-52,0],[-26,0],[-28,0],[-42,0],[-1,0]],[[62528,23221],[-1,-31],[-2,-49],[-2,-48],[-2,-41],[-1,-18],[-1,-61],[0,-24],[-1,-42],[0,-9],[-5,-72],[1,-18],[0,-18],[-1,-27],[-1,-66],[-1,-40],[-3,-46],[-1,-32],[0,-22],[-1,-65],[-1,-23],[-1,-8],[-1,-30],[1,-25],[0,-6],[-1,-31],[0,-26],[0,-23],[-1,-36],[0,-27],[-1,-27],[-1,-41],[0,-23],[-1,-37],[0,-52],[-1,-27],[0,-19],[0,-36],[-1,-80],[-1,-29],[0,-30],[0,-22],[-1,-34],[0,-19],[-1,-52],[-1,-23],[0,-11],[-1,-13],[0,-23],[-1,-22],[-1,-33],[0,-24],[0,-24],[0,-71],[-1,-30],[-1,-34],[-1,-28],[0,-21],[-1,-55],[-1,-56],[0,-24],[0,-24],[-1,-26],[0,-23],[-1,-40],[-2,-81],[-1,-50],[0,-37],[-2,-109]],[[62478,20847],[-84,1],[-50,0],[-33,1],[-31,0],[-56,0],[-32,1],[-50,0],[-82,2],[-96,0],[-41,0],[-118,3],[-257,3],[-43,1],[-7,-1],[-31,-1],[-22,-1],[-135,0],[-45,1],[-70,1],[-126,2],[-31,0],[-51,1],[-55,0],[-44,0],[-56,1],[-111,0],[-62,1],[-56,0],[-28,0],[-81,1],[-51,1],[-75,1],[-127,1],[-87,0],[-114,1],[-34,0],[-47,1],[-93,0],[-24,1],[-46,0],[-131,1],[-63,0],[-59,0],[-106,1],[-64,0],[-56,0],[-89,1],[-37,0],[-178,-4],[-129,-1],[-104,-1],[-94,-1],[-27,-2],[-24,0],[-29,0],[-38,0],[-129,-1],[-23,-1],[-3,0],[-67,-1],[-79,0],[-208,-2],[-13,-1],[-62,-1],[-23,0],[-93,-1],[-2,0],[-92,0],[-38,0],[-37,0],[-22,-3],[-22,-9],[-21,-12],[-27,-9],[-29,-1],[-35,-1],[-25,0],[-28,2],[-34,2],[-54,4],[-29,2],[-133,10],[-71,6],[-48,4],[-108,-1],[-184,-1],[-7,0],[-30,0],[-38,0],[-58,-1],[-58,0],[-9,0],[-203,-1],[-211,-1],[-44,0],[-23,0],[-139,-1],[-17,0],[-87,0],[-105,7],[-24,-5],[-99,0],[-1,0],[-34,-1],[-97,0],[-153,1],[-258,0],[-41,-2],[-29,-3],[-58,0],[-197,-3],[-1,0],[-33,0],[-82,0],[-2,0],[-133,-1],[-65,0],[-48,0],[-44,-1],[-43,0],[-71,0],[-27,-1],[-67,0],[-52,0],[-79,0],[-77,0],[-39,0],[-38,0],[-24,0],[-99,0],[-31,-3],[-71,0],[-69,2],[-40,1],[-288,-1],[-23,0],[-41,-2],[-98,5],[-58,1],[-43,0]],[[53023,20839],[-448,6],[9,276],[9,263],[1,41],[5,147],[4,118],[6,175],[6,208],[3,93],[9,265]],[[78413,23221],[2,-17],[12,-23],[60,-42],[41,-38],[28,-45],[7,-10],[7,-15],[20,-48],[12,-51],[-10,-77],[-62,-35],[-27,-50],[-7,-23],[-11,-31],[-2,-6],[-16,-152],[2,-68],[12,-54],[13,-17],[24,-87],[29,-42],[175,-162],[101,-81],[254,-147],[81,-31],[37,-8],[19,-5],[49,-20],[132,-53],[82,-33],[22,-11],[56,-46],[3,-5],[24,-31],[28,-38],[27,-62],[4,-27],[-6,-38],[-16,-33],[-3,-27],[-1,-4],[15,-17],[31,-1],[38,5],[3,1],[4,2],[81,35],[5,2],[40,46],[1,6],[0,5],[-1,24],[-8,16],[-20,34],[1,3],[-2,4],[8,41],[6,30],[2,6],[20,26],[0,1],[5,1],[8,6],[2,1],[30,16],[41,7],[68,-6],[28,-17],[75,-43],[19,-16],[6,-4],[6,-13],[14,-27],[2,-6],[-2,-20],[-7,-48],[-19,-28],[-35,-31],[-9,-8],[-26,-20],[-33,-18],[-8,1],[-80,-47],[-3,-2],[-5,-30],[0,-5],[-18,-11],[-9,-8],[-14,-21],[-29,-16],[-25,-7],[-31,-8],[21,-42],[2,-19],[0,-3],[0,-3],[-8,-22],[-7,-6],[-25,-23],[-31,-16],[-3,-1],[-42,-12],[-60,-9],[-31,-6],[-70,-51],[-17,-14],[-25,-26],[-15,-15],[-42,-39],[-2,-2],[-10,-12],[-19,-28],[-11,-15],[-1,-2],[-12,-18],[-2,-2],[-8,-7],[-8,-4],[-5,-2],[-6,1],[-25,9],[-2,1],[-9,11],[-7,5],[-18,14],[-7,6],[-20,12],[-30,19],[-57,26],[-42,12],[-1,0],[-23,0],[-54,-12],[-25,-2],[-74,8],[-12,2],[-31,-1],[-25,-5],[-24,-9],[-23,-13],[-27,-24],[-28,-32],[-11,-19],[-23,-33],[-16,-35],[-10,-21],[-1,-2],[-5,-19],[-1,-26],[6,-14],[2,-4],[6,-39],[1,-33],[-1,-18],[0,-2],[-18,-46],[-31,-22],[-7,-2],[-48,-19],[-101,-23],[-78,0],[-105,6],[-32,4],[-103,16],[-6,0],[-14,-1],[-1,0],[-39,-11],[-1,0],[-67,-11],[-3,0],[-66,-17],[-22,-7],[-60,-16],[-34,-13],[-38,-15],[-6,-5],[-16,-14],[-30,-32],[-22,-47],[-3,-9],[-3,-11],[-2,-23],[3,-6],[11,-25],[3,-6],[31,-59],[11,-29],[23,-36],[21,-24],[4,-6],[5,-1],[36,-13],[28,-3],[49,-5],[28,0],[12,2],[50,8],[29,8],[24,7],[39,13],[34,11],[101,25],[52,13],[101,29],[48,15],[122,36],[31,11],[28,7],[42,9],[109,27],[49,24],[20,15],[5,3],[21,13],[5,4],[24,9],[3,0],[5,0],[3,1],[5,1],[8,0],[20,-1],[13,0],[3,-2],[0,-5],[0,-5],[-1,-49],[5,-17],[16,-46],[4,-10],[44,-67],[11,-44],[-27,-47],[-22,-35],[-12,-16],[-41,-49],[-3,-3],[-35,-42],[-17,-20],[-46,-75],[-15,-29],[-23,-36],[-236,-121],[-237,-84],[-110,-25],[-141,-33],[-7,-4],[-22,-11],[-75,-9],[-74,2],[-55,2],[-78,3],[-31,3],[-23,2],[-30,1],[-44,1],[-97,2],[-69,4],[-62,0],[-53,-7],[-58,-10],[-7,-1],[-56,-16],[-40,-23],[-41,-33],[-14,-15],[-1,-2],[-6,-30],[2,-38],[2,-34],[3,-28],[8,-20],[18,-21],[16,-20],[31,-19],[15,-8],[56,-23],[11,-5],[23,-10],[35,-7],[47,-2],[60,4],[13,2],[56,12],[56,15],[32,9],[23,7],[45,9],[52,-4],[26,-3],[26,-6],[11,-3],[43,-15],[35,-20],[21,-18],[3,-10],[5,-22],[-18,-25],[-23,-14],[-26,-12],[-41,-11],[-27,-5],[-6,-1],[-23,-4],[-39,-19],[-45,-37],[-3,-2],[-24,-25],[-19,-19],[-7,-7],[-6,-8],[-22,-28],[-5,-8],[-15,-23],[-17,-30],[-18,-37],[-6,-13],[-10,-33],[-3,-24],[2,-7],[12,-44],[7,-15],[1,-3],[14,-30],[7,-15],[4,-10],[1,-2],[10,-15],[6,-35],[17,-31],[54,-88],[4,-8],[55,-84],[37,-57],[3,-5],[1,-1],[40,-72],[1,-3],[17,-31],[2,-35],[3,-52],[2,-41],[-6,-27],[-13,-42],[-23,-36],[-17,-20],[-4,-5],[-27,-21],[-21,-8],[-22,-8],[-58,-25],[-26,-2],[-27,-3],[-19,-2],[-25,-3],[-52,-5],[-15,-2],[-67,3],[-39,-3],[-40,-7],[-18,-7],[-6,-2],[-5,-4],[-19,-17],[-1,-1],[0,-6],[4,-47],[3,-40],[10,-125],[1,-6],[1,-20],[70,-131],[30,-36],[9,-11],[16,-25],[4,-18],[0,-4],[-4,-10],[0,-2],[-44,-39],[-33,-23],[-11,-5],[-16,-6],[-16,-5],[-13,-4],[-27,-9],[-39,-5],[-4,0],[-37,-1],[-25,3],[-57,12],[-53,18],[-38,17],[-30,18],[-2,2],[-2,1],[-58,52],[-1,1],[-1,5],[-7,20],[-17,12],[-38,14],[-1,0],[-38,3],[-28,-3],[-80,-18],[-14,-3],[-27,-12],[-3,-1],[-64,-34],[-9,-8],[-22,-22],[-3,-6],[-9,-16],[-2,-7],[0,-1],[-1,-1],[3,-19],[1,-1],[10,-27],[17,-28],[29,-24],[27,-21],[23,-16],[19,-13],[12,-4],[10,-4],[1,0],[12,-4],[68,-13],[130,-20],[28,-3],[32,-3],[48,-5],[144,-9],[2,0],[33,-1],[43,-2],[45,-2],[38,-1],[134,-1],[3,1],[29,1],[50,-3],[71,-7],[24,-7],[3,-3],[14,-12],[4,-22],[-2,-24],[8,-25],[18,-56],[11,-29],[11,-29],[41,-49],[16,-26],[14,-22],[23,-37],[5,-7],[-1,-2],[-9,-29],[-11,-20],[-19,-23],[-40,-26],[-12,-6],[-27,-11],[-25,-4],[-18,-2],[-32,3],[-11,1],[-14,1],[-23,5],[-23,14],[-29,30],[-20,13],[-13,7],[-14,4],[-22,6],[-27,4],[-29,0],[-49,-3],[-36,0],[-62,-13],[-73,-8],[-63,-7],[-6,0],[-39,-1],[-58,-1],[-42,1],[-88,2],[-29,7],[-1,1],[-17,10],[-9,5],[-6,4],[-4,1],[-85,20],[-110,14],[-18,3],[-41,9],[-17,3],[-6,3],[-94,42],[-89,45],[-58,38],[-28,18],[-9,5],[-66,33],[-82,5],[-60,4],[-67,-8],[-47,-32],[-1,-18],[-1,-20],[-1,-7],[7,-16],[47,-100],[11,-25],[23,-19],[22,-20],[4,-3],[14,-8]],[[76104,16617],[-30,1],[-10,0],[-33,-7],[-33,-12],[-24,3],[-14,15],[29,23],[0,2],[1,3],[1,7],[-18,13],[-100,44],[-2,0],[-97,81],[-12,8],[-10,8],[-46,33],[-41,29],[-20,9],[-44,18],[-27,12],[-74,18],[-66,14],[-31,6],[-32,13],[-11,6],[-69,39],[-7,4],[-123,57],[-34,14],[0,-64],[2,-37],[-1,-27],[1,-29],[-35,-1],[-26,-1],[-55,-1],[-53,0],[-31,2],[-25,-1],[-85,0],[-53,-1],[-35,0],[-126,0],[-42,0],[-42,-1],[-31,0],[-22,0],[-66,0],[-26,0],[-25,0],[-35,1],[-5,1],[-117,4],[-63,3],[-25,0],[-33,0],[-36,0],[-52,0],[-47,0],[-28,-1],[-24,0],[-54,0],[-28,0],[-28,0],[-39,1],[-31,0],[-27,1],[-74,1],[-103,2],[-69,1],[-29,1],[-38,1],[-22,0],[-26,1],[-24,0],[-25,1],[-26,0],[-45,1],[-31,1],[-71,0],[-23,0],[-55,0],[-29,0],[-31,0],[-25,0],[-32,0],[-45,0],[-27,0],[-69,0],[-33,0],[-11,0],[-26,0],[-53,0],[-72,0],[-54,0],[-35,0],[-37,-1],[-76,0],[-47,0],[-70,1],[-68,0],[-24,1],[-63,0],[-53,1],[-30,0],[-44,0],[-50,1],[-31,0],[-43,0],[-43,0],[-89,-1],[-30,0],[-25,1],[-29,0],[-53,-1],[-58,0],[-51,0],[-35,0],[-24,0],[-23,0],[-29,-4],[-19,-1],[-6,-1],[-31,-2],[-24,0],[-41,3],[-22,1],[-24,1],[-28,2],[-48,3],[-47,1],[-23,0],[-86,0],[-114,0],[-40,0],[-85,0],[-70,0],[-55,0],[-3,0],[-48,0],[-116,-1],[-40,0],[-52,0],[-35,0],[-24,1],[-42,2],[-9,0],[-18,1],[-285,-11],[-94,-1]],[[69822,16933],[0,24],[1,61],[-1,57],[0,53],[0,30],[-1,21],[1,19],[1,26],[0,19],[-1,18],[0,20],[0,62],[0,39],[0,19],[0,22],[1,26],[0,45],[0,21],[0,31],[0,23],[1,54],[0,27],[0,22],[0,23],[1,23],[0,27],[-2,42],[-1,39],[0,29],[0,19],[0,24],[0,26],[0,47],[0,25],[-1,37],[0,29],[0,19],[0,26],[0,38],[0,37],[-1,37],[4,19],[-1,25],[0,19],[0,24],[0,47],[0,22],[0,22],[1,26],[0,36],[0,30],[0,22],[0,25],[1,26],[-7,25],[3,34],[1,25],[2,35],[3,19],[0,28],[1,53],[0,22],[1,20],[1,35],[0,31],[3,37],[-1,31],[-1,27],[0,19],[0,23],[0,19],[1,20],[1,34],[2,72],[1,68],[1,24],[0,21],[1,101],[1,78],[3,76],[1,28],[1,51],[1,20],[1,33],[1,131],[1,71],[5,146],[2,50],[0,4],[7,149],[0,93],[1,20],[1,51],[2,137],[3,68],[3,67],[1,10],[2,50],[0,127],[-1,67],[2,22],[1,27],[2,61],[0,23],[1,43],[1,66],[1,19],[-1,19],[0,25],[0,22],[5,133],[0,31],[1,55],[1,173],[2,20],[0,42],[4,131],[0,25],[2,54],[1,43],[1,38],[-1,36],[1,85],[0,27],[1,21],[0,19],[2,111],[2,129],[1,79],[0,53],[1,54],[-2,32],[1,25],[4,22],[0,18],[-1,56],[0,8],[0,47],[2,185],[2,57],[-2,20],[1,34],[2,43],[4,53]],[[69822,16933],[0,-14]],[[69822,16919],[-108,1],[-51,0],[-155,-1],[-30,0],[-77,-1],[-212,-1],[-95,-1],[-63,0],[-106,1],[-1,0],[-50,-1],[-31,-1],[-27,0],[-26,-1],[-22,1],[-24,-1],[-24,0],[-41,0],[-43,0],[-59,-1],[-24,0],[-48,0],[-24,0],[-24,-1],[-41,0],[-29,0],[-66,-1],[-66,0],[-57,-1],[-34,0],[-47,0],[-45,-1],[-5,0],[-23,0],[-84,-1],[-35,0],[-72,-1],[-48,0],[-40,-1],[-164,0],[-57,0],[-30,0],[-56,0],[-79,0],[-24,2],[-26,1],[-172,1],[-44,0],[-24,0],[-48,0],[-35,0],[-24,0],[-42,-1],[-144,-2],[-60,-1],[-24,-1],[-34,0],[-45,-1],[-77,-1],[-24,0],[-11,-2],[-14,-2],[-28,3],[-71,-2],[-84,-2],[-65,-1],[-33,0],[-29,0],[-36,0],[-59,1],[-48,0],[-36,0],[-24,0],[-73,0],[-35,0],[-25,0],[-39,1],[-34,1],[-22,1],[-51,0],[-24,1],[-36,0],[-24,0],[-24,0],[-36,1],[-57,0],[-32,0],[-146,1],[-36,0],[-22,0],[-48,0],[-30,0],[-37,0],[-59,1],[-111,1],[-42,-1],[-60,7],[-140,-2],[-28,0],[-36,1],[-24,0],[-24,0],[-24,0],[-48,0],[-24,0],[-63,0],[-44,0],[-96,0],[-61,-1],[-108,0],[-132,-1],[-62,-1],[-46,-1],[-36,-1],[-72,0],[-36,0],[-36,0],[-48,0],[-23,0],[-24,0],[-72,0],[-24,-1],[-48,0],[-36,0],[-25,0],[-35,-1],[-36,0],[-24,0],[-96,0],[-56,-1],[-28,0],[-24,-1],[-24,0],[-35,0],[-36,0],[-33,1],[-24,0],[-24,0],[-48,1],[-36,0],[-53,0],[-73,-1],[-29,0],[-8,0],[-47,0],[-51,0],[-158,0],[-39,0]],[[62434,16903],[-1,29],[0,33],[0,26],[0,22],[0,25],[1,24],[0,39],[0,41],[0,31],[1,40],[1,24],[1,19],[1,31],[-1,19],[-2,20],[-1,22],[0,24],[1,23],[0,26],[0,53],[0,19],[0,24],[0,41],[1,32],[0,18],[2,44],[0,20],[-2,23],[1,23],[-1,20],[0,19],[0,20],[1,29],[0,41],[0,18],[0,40],[0,28],[0,27],[0,31],[1,107],[0,18],[1,1],[1,67],[0,45],[1,123],[0,32],[0,24],[0,18],[1,69],[2,92],[-5,52],[4,42],[0,35],[0,26],[3,47],[1,28],[0,23],[0,18],[1,20],[0,18],[0,19],[1,49],[0,25],[0,22],[1,18],[0,35],[1,38],[0,34],[0,32],[0,21],[-1,19],[1,62],[0,25],[0,27],[1,31],[0,22],[0,23],[1,37],[0,31],[0,25],[0,20],[2,22],[0,67],[1,22],[0,56],[1,32],[1,25],[0,15],[0,25],[0,36],[0,26],[1,22],[0,6],[1,44],[1,22],[0,37],[1,71],[2,19],[1,20],[0,27],[0,21],[0,45],[1,21],[0,31],[1,26],[0,25],[0,23],[2,64],[0,23],[1,70],[2,63],[0,37],[1,20],[0,37],[0,41],[2,61],[0,23],[1,25],[0,14],[0,9],[1,39],[1,24]],[[42719,22546],[0,-105],[1,-176],[0,-30],[0,-74],[0,-2],[1,-69],[0,-19],[0,-46],[0,-61],[0,-33],[0,-41],[1,-15],[1,-3],[0,-21],[0,-83],[0,-34],[0,-60],[1,-43],[1,-78],[0,-30],[0,-55],[1,-126],[0,-45],[0,-22],[1,-39],[0,-49],[0,-52],[0,-25],[0,-27],[0,-77],[1,-35],[-1,-18],[0,-19],[0,-20],[0,-26],[-1,-43],[0,-19],[-1,-19],[-1,-103],[0,-24],[-2,-87],[0,-26],[0,-41],[0,-20],[-1,-75],[-1,-58],[0,-26],[-1,-62],[-1,-115],[0,-2],[-1,-26],[-1,-64],[-1,-103],[-1,-48],[0,-25],[-2,-75],[0,-33],[-1,-31],[-1,-86],[-1,-19],[0,-20],[0,-22],[-1,-28],[0,-41],[-1,-53],[-1,-39],[-1,-73],[0,-36],[-1,-51],[-2,-88],[-2,-91],[0,-36],[-1,-30],[0,-10],[-1,-37],[-1,-14],[0,-5],[-1,-23],[-3,-130],[-1,-55],[0,-1],[0,-24],[-1,-30],[-1,-50],[-1,-53],[-1,-41],[-1,-26],[0,-28],[0,-10],[3,-19],[-3,-22],[0,-27],[-1,-69],[0,-25],[-4,-28],[2,-21],[0,-25],[-1,-32],[-1,-33],[-5,-30],[-4,-138],[1,-40],[-1,-28],[0,-19],[-2,-25],[0,-38],[-1,-25],[-1,-26],[0,-27],[-1,-37]],[[42668,17779],[-64,-82],[-2,-2],[-35,-46],[-30,-37],[-28,-37],[-29,-36],[-35,-45],[-79,-100],[-28,-37],[-37,-45],[-124,-154],[-11,-19],[-48,-64],[-89,-115],[-13,-16],[-16,-21],[-43,-55],[-23,-30],[-40,-51],[-16,-23],[-77,-98],[-84,-107],[-36,-43],[-88,-110],[-57,-76],[-85,-110],[-115,-143],[-20,-34],[-15,-13],[-3,-20],[-16,-18],[-14,-17],[0,-18],[-4,-19],[-3,-20],[19,-11],[3,-20],[6,-18],[-5,-22],[-18,-12],[19,-9],[-16,-13],[-8,-17],[-15,-15],[11,-17],[-19,-12],[-4,-22],[2,-19],[-23,-3],[-12,-16],[6,-17],[-12,-18],[-10,-17],[-7,-17],[2,-19],[-18,-13],[-19,-9],[-15,-14],[0,-18],[22,-5],[-22,-7],[4,-18],[-7,-19],[-16,-13],[-24,7],[-21,9],[-22,4],[-7,-8],[-5,-7],[-19,-12],[-19,-13],[-17,-13],[-12,-16],[-2,-1],[-26,-9],[-21,-7],[-23,-3],[-22,3],[-22,-16],[-29,0],[-20,-9],[-23,-8],[-12,-19],[17,-26],[14,-30],[11,-23],[9,-27],[10,-26],[8,-21],[10,-27],[8,-21],[16,-36],[1,-1],[38,-99],[1,-2]],[[40906,15031],[-228,94],[-32,13],[-416,160],[-48,20],[-299,119],[-150,132],[-5,6],[-250,207],[-50,43],[-67,-11],[-1,0],[-28,-2],[-61,12],[-141,-12],[-100,36],[-102,49],[-90,16],[-157,3],[-177,49],[-176,-7],[-126,90],[-100,169],[27,56],[6,34],[16,101],[-11,16],[-16,23],[-35,9],[-91,46],[-354,177],[-287,112],[-51,20],[-17,7],[-7,2],[-148,58],[-109,-16],[-40,-6],[-23,-11],[-2,-1],[-11,-5],[-217,-100],[-7,-6],[-230,-178],[-17,-12],[-164,-121],[-341,-143],[-56,-23],[-37,-9],[-42,-9],[-17,-4],[-8,-2],[-23,-2],[-231,-11],[-158,14],[-366,96],[-330,163],[-29,37],[-244,308],[-198,296],[1,148],[64,35],[380,179],[195,89],[34,28],[71,71],[85,164],[10,18],[-64,116],[-243,11],[-174,-21],[-336,-41],[-129,-15],[-114,-5],[-45,-2],[-44,-2],[-89,7],[-101,8],[-11,1],[-14,7],[-50,24],[-91,42],[-124,82],[-43,33],[-21,20],[-73,73],[0,5],[-16,30],[-158,110],[-22,15],[-17,25],[-175,128],[-115,49],[-14,10],[-48,13],[-111,54],[-59,16],[-30,14],[-30,6],[-9,5],[-46,24],[-71,19],[-17,1],[-69,20],[-52,21],[-187,81],[-139,29],[-74,15],[-70,22],[-74,44],[-188,37],[-58,38],[-141,57],[-67,7],[-60,51],[-35,40],[-91,86],[-38,49],[-12,30],[-17,22],[-77,158],[-58,71],[-46,32],[-34,24],[-116,72],[-59,24],[-67,17],[-87,18],[-23,1],[-142,3],[-88,9],[-188,7],[-71,15],[-61,4],[-23,6],[-30,7],[-79,14],[-119,41],[-126,54],[-25,17],[-74,35],[-56,19],[-73,37],[-29,20],[-85,37],[-111,61]],[[53023,20839],[13,-18],[0,-15],[-2,-5],[-4,-4],[-20,-21],[-37,-50],[-2,-9],[4,-10],[4,-7],[0,-77],[34,-10],[7,-6],[3,-11],[7,-31],[-42,-76],[-38,-3],[-5,7],[-4,3],[-6,3],[-12,1],[-27,-4],[-39,-5],[-4,-5],[-3,-9],[1,-9],[15,-13],[35,-28],[18,-6],[54,-3],[69,-12],[124,-48],[134,-41],[3,-2],[37,-29],[4,-3],[1,-3],[0,-7],[-20,-17],[-15,-13],[-11,-7],[-18,-7],[-17,-10],[-4,-6],[30,-61],[4,-3],[19,-5],[3,0],[3,0],[21,-6],[-39,-6],[-79,-12],[-28,1],[-6,-38],[-2,-11],[-4,-25],[-4,-24],[24,0],[1,-1],[17,-9],[11,-7],[1,0],[9,-8],[4,-6],[1,-2],[4,-7],[15,-87],[0,-7],[-1,-1],[-17,-31],[-31,-52],[-26,-21],[-30,-25],[-3,-21],[14,-10],[1,1],[4,-2],[5,-2],[2,0],[42,5],[17,2],[23,3],[3,1],[23,3],[7,-6],[1,-5],[9,-50],[-53,-29],[3,-2],[-72,-37],[-62,-32],[-132,-9],[-1,9],[-7,3],[-8,-1],[-9,-3],[-9,-6],[-7,-7],[-20,-69],[-6,-20],[-1,-6],[5,-4],[16,-4],[38,2],[1,0],[13,-4],[8,-6],[0,-3],[-6,-8],[-10,-6],[-38,-13],[-30,-10],[-26,-8],[-7,8],[-10,8],[-36,19],[-5,2],[-11,-2],[-8,-4],[-7,-13],[-12,-44],[54,-61],[-2,-3],[-22,-34],[-47,-60],[-22,-16],[-32,-23],[-43,-16],[-7,0],[-24,-4],[-9,-2],[-5,-5],[0,-6],[2,-7],[7,-5],[32,-25],[9,-6],[5,-3],[68,-37],[16,-10],[38,-22],[4,-3],[24,-17],[-4,-11],[-6,-22],[-2,-92],[-10,-3],[-31,-12],[-10,-6],[-4,-7],[0,-11],[8,-19],[2,-3],[2,-3],[-1,-3],[-3,-4],[-1,-4],[-49,-31],[-17,-1],[-16,3],[-12,-2],[0,-1],[-4,-6],[-11,-28],[2,-13],[47,-120],[19,-12],[39,-16],[-1,-9],[-6,-55],[-14,-18],[-75,-101],[-37,-49],[-20,-51],[-68,-90],[-17,-1],[-33,-2],[-6,-2],[-12,-10],[-8,-10],[-3,-17],[-3,-18],[-17,-96],[-14,-57],[-2,-3],[-39,-30],[-26,-4],[-19,-6],[-22,-14],[-68,-42],[-4,-4],[13,-25],[3,-3],[6,-7],[-22,-43],[-26,-31],[-3,-4],[-7,-8],[-16,-1],[-21,-2],[-63,-3],[-22,0],[-74,-13],[-11,-5],[-7,-3],[-18,-19],[-12,-2],[-19,1],[-14,4],[0,-45]],[[51956,17689],[-24,1],[-39,0],[-8,0],[-50,-1],[-204,-2],[-204,1],[-74,-1],[-33,0],[-93,0],[-111,1],[-103,0],[-101,0],[-62,1],[-45,0],[-33,0],[-32,1],[-34,0],[-3,0],[-32,1],[-51,1],[-2,1],[-116,-1],[-87,0],[-72,-1],[-139,1],[-80,0],[-37,0],[-101,1],[-73,0],[-73,0],[-45,1],[-33,0],[-38,0],[-45,1],[-41,0],[-73,0],[-23,0],[-49,1],[-42,0],[-30,0],[-64,1],[-49,0],[-80,1],[-342,8],[-291,4],[-105,1],[-3,0],[-39,1],[-176,2],[-144,3],[-111,2],[-81,1],[-30,0],[-19,0],[-104,-2],[-36,0],[-78,1],[-23,1],[-37,1],[-30,0],[-22,1],[-74,2],[-75,5],[-385,4],[-64,1],[-186,2],[-58,1],[-52,1],[-33,1],[-239,2],[-53,1],[-2,0],[-55,0],[-25,1],[-312,3],[-31,1],[-68,0],[-117,-3],[-61,1],[-31,1],[-84,1],[-28,0],[-104,1],[-76,1],[-23,0],[-38,1],[-52,0],[-29,0],[-44,1],[-31,1],[-58,0],[-46,0],[-69,2],[-31,0],[-31,1],[-26,0],[-42,1],[-44,0],[-63,1],[-25,0],[-53,0],[-25,0],[-54,1],[-69,0],[-28,1],[-45,0],[-38,1],[-36,0],[-45,0],[-32,1],[-49,1],[-57,1],[-41,1],[-100,1],[-100,1],[-105,1],[-33,0],[-117,1],[-154,2],[-169,2],[-52,0],[-29,1],[-2,0],[-72,2],[-85,-1],[-29,4],[-192,0],[-187,1],[-26,0]],[[62434,16903],[-1,-38],[0,-32],[0,-18],[0,-60],[0,-55],[0,-36],[0,-24],[0,-1],[0,-23],[-1,-52],[0,-7],[0,-12],[0,-38],[0,-42],[0,-22],[-1,-125],[0,-121],[0,-24],[0,-54]],[[62431,16119],[-52,0],[-110,0],[-204,1],[-42,0],[-34,0],[-83,0],[-45,0],[-28,0],[-1,1],[-41,2],[-75,-1],[-115,-2],[-29,-1],[-53,-1],[-52,1],[-56,0],[-77,-1],[-101,0],[-61,0],[-47,0],[-26,0],[-110,1],[-205,-3],[-97,1],[-25,1],[-58,-2],[-121,0],[-59,-1],[-57,-1],[-91,1],[-60,-1],[-238,-1],[-111,0],[-99,0],[-33,1],[-66,0],[-54,-1],[-41,-1],[-177,-3],[-27,0],[-52,0],[-8,-1],[-31,0],[-25,0],[-27,0],[-10,0],[-25,0],[-47,0],[-78,-1],[-55,0],[-57,-1],[-139,-1],[-128,-1],[-107,-1],[-27,0],[-24,0],[-41,1],[-24,1],[-105,-1],[-43,-1],[-37,0],[-77,-1],[-28,0],[-68,0],[-33,-1],[-172,-1],[-26,0],[-63,0],[-89,-1],[-65,-1],[-62,0],[-31,-1],[-35,0],[-26,0],[-19,0],[-74,0],[-1,0],[-36,0],[-77,0],[-55,-1],[-39,0],[-23,1],[-2,0],[-80,-2],[-35,-1],[-54,1],[-101,-1],[-35,1],[-27,0],[-23,0],[-8,0],[-21,0],[-98,1],[-25,-1],[-112,1],[-258,1],[-30,-1],[-121,0],[-38,5],[-38,-3],[-71,-3],[-1,0],[-60,0],[-60,2],[-60,0],[-47,0],[-28,0],[-136,-1],[-67,-1],[-236,-1],[-133,0],[-159,0],[-94,1],[-81,0],[-30,0],[-114,0],[-19,0],[-21,0],[-29,0],[-24,0],[-39,0],[-19,0],[-48,1],[-45,0],[-52,0],[-106,0],[-51,0],[-62,0],[-203,1],[-43,0],[-166,0],[-141,1],[-59,0],[-9,0],[-199,-2],[-29,0],[-3,0],[-37,-1],[-94,-1],[-76,1],[-226,-2],[-59,0],[-13,0],[-282,1]],[[52544,16094],[5,202],[1,34],[0,29],[-2,210],[1,22],[0,102],[0,52],[1,19],[0,95],[3,42],[2,136],[0,130],[0,78],[0,40],[-1,102],[0,131],[-1,79],[-2,90],[-169,1],[-49,0],[-52,1],[-325,0]],[[52544,16094],[-1,-67],[0,-57],[-1,-105],[0,-22],[-1,-23],[0,-25],[0,-28],[0,-39],[0,-19],[0,-1],[0,-18],[-2,-47],[0,-26],[0,-63],[0,-18],[0,-31],[0,-6],[1,-67],[-2,-205],[1,-23],[-1,-29],[0,-2],[0,-35],[-1,-60],[-1,-46],[0,-66],[-1,-29],[1,-25],[-2,-87],[-1,-25],[1,-31],[1,-67],[-2,-102],[0,-24],[-1,-71],[0,-41],[-2,-70],[0,-18],[-1,-134],[-1,-20],[-1,-40],[0,-38],[0,-22],[-1,-27],[0,-29],[0,-25],[0,-26],[0,-22],[0,-15],[0,-4],[-1,-76],[0,-19],[0,-33],[-1,-38],[0,-25],[-1,-38],[1,-19],[-2,-32],[0,-86],[0,-20],[-1,-47],[-1,-40],[-2,-77],[-1,-30],[-5,-178],[0,-43],[-1,-45],[0,-64],[1,-19],[0,-44],[1,-50],[-2,-20],[-4,-74],[-8,-100],[6,-25],[-1,-59],[0,-56],[0,-29],[0,-19],[-1,-29],[-6,-20],[8,-44],[-1,-49],[-2,-27],[0,-32],[-3,-214],[0,-21],[-1,-39],[0,-9],[0,-21],[-1,-63],[-1,-57],[-1,-108],[0,-25],[-3,-129],[-2,-56],[0,-45],[0,-21],[0,-21],[-1,-23],[0,-60],[-1,-84]],[[52488,11372],[-87,-2],[-22,1],[-66,-2],[-59,-2],[-152,-4],[-71,-2],[-36,0],[-29,0],[-96,-2],[-74,-1],[-37,0],[-23,0],[-72,-2],[-62,0],[-26,2],[-240,-7],[-84,0],[-177,-13],[-13,-1],[-13,0],[-34,-1],[-117,0],[-52,0],[-45,0],[-69,0],[-17,0],[-95,0],[-43,0],[-48,0],[-132,3],[-29,0],[-25,-4],[-115,1],[-111,2],[-31,0],[-55,1],[-55,1],[-43,0],[-45,2],[-49,1],[-216,2],[-104,2],[-58,1],[-131,2],[-181,3],[-24,0],[-155,2],[-38,1],[-56,0],[-78,1],[-23,-1],[-37,0],[-1,0],[-105,-1],[-189,-2],[-76,-1],[-141,-1],[-28,0],[-98,5],[-23,0],[-30,0],[-28,-1],[-344,2],[-58,-1],[-55,-2],[-113,2],[-124,-1],[-137,0],[-36,0],[-63,0],[-31,0],[-93,1],[-195,2],[-109,0],[-415,3],[-98,1],[-108,2],[-112,0],[-46,-1],[-38,-5],[5,-4],[4,-3],[18,-6],[39,-3],[14,-2],[19,-8],[-3,-9],[-3,-14],[-2,-8],[-21,-86],[-17,-19],[-7,-3],[-86,-46],[-12,-10],[-1,-2],[-1,-7],[-1,-14],[32,-89],[0,-36],[-16,-22],[-2,-2],[-1,0],[-42,-28],[-19,-13],[-19,-17],[-1,-1],[-9,-9],[-11,-17],[-50,-80],[-3,-5],[-4,-4],[-28,-33],[-29,-23],[-12,-6],[-35,-18],[-14,-7],[-9,-3],[-51,-14],[-15,-4],[-39,-6],[-6,1],[-3,0],[-59,5],[-44,15],[-4,1],[-2,2],[-79,49],[-11,7],[-8,5],[-4,2],[-15,7],[-10,4],[-50,2],[-23,-4],[-53,5],[-8,0],[-18,8],[-88,33],[-29,1],[-12,1],[-114,3],[-16,0],[-12,3],[-3,3],[-21,18],[4,36],[11,14],[6,7],[22,16],[3,2],[2,14],[0,2],[0,1],[-21,20],[-25,11],[-156,9],[-24,-6],[-7,-4],[-12,-8],[-80,-47],[-40,-24],[-50,-6],[-50,-25]],[[44303,10860],[33,179],[6,13],[41,21],[55,14],[12,-1],[68,-2],[332,-67],[65,-13],[142,7],[36,6],[39,10],[34,13],[37,16],[45,25],[35,27],[23,41],[10,38],[3,50],[-13,46],[-42,60],[-322,258],[-157,111],[-138,96],[-10,7],[-60,90],[-142,116],[-46,86],[41,79],[-9,98],[-1,13],[-5,60],[14,251],[0,4],[28,70],[58,144],[1,82],[-54,68],[-50,62],[-85,51],[-116,52],[-40,10],[-87,24],[-60,5],[-34,4],[-67,4],[-219,36],[-181,39],[-340,62],[-264,94],[-8,3],[-93,108],[-176,203],[-444,236],[-29,54],[-234,15],[-330,-33],[-148,-14],[-76,22],[-266,81],[-28,55],[-24,49],[-14,29],[11,25],[77,165],[48,102],[23,49],[-1,16],[-10,142],[-3,36],[-47,44],[-241,225]],[[76104,16617],[3,-2],[51,-33],[9,-6],[86,-44],[24,-12],[30,-27],[100,-89],[17,-32],[22,-42],[17,-31],[28,-46],[15,-19],[20,-25],[15,-22],[3,-7],[3,-4],[3,-7],[21,-39],[18,-35],[28,-50],[12,-23],[11,-15],[15,-20],[26,-29],[26,-23],[19,-11],[1,-2],[29,-19],[31,-20],[10,-7],[35,-21],[22,-8],[52,-18],[58,-18],[19,-4],[71,-16],[70,-10],[66,-9],[70,-12],[7,-1],[102,-18],[42,-9],[2,0],[42,-13],[11,-7],[28,-18],[28,-19],[1,-1],[3,-2],[1,-1],[18,-27],[24,-50],[5,-11],[3,-15],[0,-3],[-2,-5],[-8,-23],[-15,-28],[-16,-23],[-9,-9],[-11,-13],[-44,-26],[-20,-10],[-9,-4],[-23,-9],[-88,-22],[-59,-12],[-52,-10],[-34,-6],[-2,0],[-112,4],[-23,2],[-52,3],[-53,4],[-85,2],[-48,8],[-7,2],[-87,23],[-71,25],[-38,17],[-32,14],[-70,32],[-52,20],[-58,12],[-27,1],[-37,-5],[-2,0],[-38,-9],[-46,-15],[-42,-21],[-28,-21],[-27,-25],[-14,-17],[-11,-15],[-14,-32],[1,-22],[12,-31],[19,-34],[38,-32],[51,-25],[27,-17],[21,-20],[16,-15],[9,-8],[5,-4],[31,-25],[7,-5],[30,-22],[1,-1],[29,-24],[14,-9],[28,-19],[30,-13],[102,-42],[26,-9],[13,-4],[45,-8],[31,-1],[29,-1],[32,2],[38,5],[31,6],[57,19],[76,32],[25,13],[22,11],[47,22],[57,20],[25,9],[76,18],[5,1],[50,10],[26,1],[24,1],[23,-3],[25,-3],[22,-7],[25,-7],[1,-1],[6,-1],[28,-11],[4,-3],[6,-3],[18,-12],[11,-10],[2,-2],[11,-11],[13,-14],[3,-3],[2,-2],[4,-9],[5,-24],[1,-4],[-1,-11],[-3,-33],[2,-6],[5,-12],[-24,-10],[-13,-5],[-30,-16],[-31,-21],[-24,-28],[-20,-21],[-20,-18],[-23,-32],[-11,-24],[-10,-19],[-13,-32],[-13,-30],[-12,-33],[1,-2],[0,-26],[-11,-23],[-1,-1],[-6,-45],[-2,-9],[-5,-26],[-8,-36],[-10,-36],[-14,-42],[-3,-7],[-21,-38],[-24,-31],[-1,-2],[-8,-14],[-7,-17],[-14,-22],[-28,-37],[-8,-11],[-24,-33],[-17,-27],[-9,-11],[-19,-25],[-4,-6],[-36,-38],[-10,-8],[-1,-1],[-39,-26],[-1,0],[-10,-7],[-37,-25],[-16,-16],[-14,-25],[-15,-26],[-17,-17],[-19,-18],[-23,-18],[-31,-25],[-38,-27],[-19,-10],[-6,-2],[-3,-2],[-33,-15],[-13,-7],[-20,-10],[-10,-6],[-31,-17],[-50,-24],[-57,-20],[-22,-6],[-25,-8],[-23,-6],[-28,-3],[-24,-3],[-3,-1],[-26,-7],[-39,-14],[-37,-15],[-24,-7],[-25,-11],[-29,-12],[-30,-14],[-19,-9],[-33,-16],[-27,-11],[-33,-12],[-7,-4],[-25,-14],[-21,-14],[-20,-13],[-20,-17],[-8,-7],[-15,-11],[-21,-13],[-19,-11],[-3,-1],[-24,-10],[-28,-10],[-76,-21],[-44,-10],[-59,-14],[-50,-13],[-19,-5],[-59,-18],[-23,-10],[-5,-2],[-1,-1],[-10,-4],[-2,-1],[-3,-1],[-5,-2],[-6,-3],[-6,-3],[-24,-14],[-24,-19],[-18,-16],[-21,-15],[-8,-6],[-17,-17],[-14,-17],[-39,-48],[-21,-22],[-22,-22],[-1,0],[-20,-20],[-3,-4],[-1,0],[-1,-2],[-22,-25],[-7,-11],[-9,-16],[-10,-19],[-1,-1],[-7,-21],[-5,-22],[-1,-2],[-5,-12],[0,-1],[-4,-2],[-33,-16],[-29,-17],[-5,-7],[-3,-5],[-38,-34],[-2,-1],[-15,-8],[-19,-10],[-7,-4],[-8,-4],[-31,-17],[-29,-19],[-33,-23],[-5,-4],[-13,-11],[-33,-32],[-20,-20],[-38,-38],[-22,-24],[-15,-20],[-15,-21],[-4,-10],[-15,-33],[-25,-30],[-18,-18],[-29,-30],[-10,-10],[-15,-18],[0,-1],[-11,-19],[-15,-29],[-8,-27],[-6,-29],[-3,-16],[0,-47],[8,-32],[10,-28],[2,-7],[11,-36],[4,-21],[2,-28],[1,-41],[-1,-24],[0,-35],[6,-37],[5,-36],[12,-42],[14,-39],[22,-42],[26,-44],[7,-14],[10,-20],[7,-15],[3,-12],[6,-4],[2,-3],[14,-31],[3,-3],[17,-22],[10,-16],[8,-18],[4,-5],[5,-10],[21,-27],[14,-25],[10,-16],[18,-29],[17,-24],[8,-12],[29,-40],[14,-18],[27,-37],[22,-36],[1,-1],[2,-6],[21,-46],[7,-22],[3,-9],[0,-1],[2,-13],[1,-2],[1,-13],[6,-36],[1,-5],[-1,-8],[-3,-19],[-4,-19],[-7,-33],[-1,-1],[1,-2],[6,-35],[8,-22],[7,-21],[9,-11],[1,-2],[14,-17],[18,-22],[20,-28],[23,-31],[13,-21],[4,-5],[21,-36],[14,-27],[10,-20]],[[75187,10898],[-6,3],[-40,11],[-41,5],[-42,0],[-30,-1],[-1,0],[-45,-4],[-54,-13],[-38,-15],[-20,-6],[-15,-1],[-56,4],[-41,8],[-29,13],[-48,22],[-40,29],[-1,0],[-8,10],[-8,10],[-27,44],[-12,24],[-6,9],[-22,39],[-15,24],[-12,21],[-15,19],[-14,17],[-50,38],[-9,6],[-34,25],[-3,2],[-8,4],[-42,21],[-30,16],[-4,2],[-87,33],[-77,30],[-1,0],[-14,1],[-55,1],[-233,0],[-129,1],[-98,0],[-3,0],[-99,1],[-72,0],[-30,0],[-124,1],[-28,0],[-108,0],[-27,0],[-100,0],[-141,0],[-131,0],[-149,0],[-24,0],[-70,-1],[-24,0],[-74,-1],[-60,0],[-32,-1],[-43,0],[-193,-1],[-146,-1],[-34,0],[-181,-1],[-187,0],[-76,0],[-111,0],[-95,0],[-128,0],[-29,0],[-82,0],[-28,0],[-23,0],[-84,0],[-42,0],[-74,1],[-86,0],[-44,0],[-92,1],[-78,0],[-47,1],[-95,1],[-120,1],[-204,2],[-34,0],[-112,2],[-35,0],[-24,0]],[[69804,11355],[2,36],[4,107],[0,79],[5,51],[1,44],[0,50],[1,32],[-5,18],[2,66],[2,34],[1,48],[1,28],[0,26],[1,30],[0,20],[3,66],[1,27],[1,42],[0,47],[1,20],[1,63],[0,48],[1,31],[0,3],[1,59],[2,20],[4,27],[-1,20],[-2,19],[0,20],[0,61],[3,26],[0,36],[-3,27],[2,93],[0,20],[1,120],[1,26],[-5,20],[5,168],[0,28],[0,49],[0,56],[0,167],[1,127],[0,5],[0,26],[1,26],[0,31],[1,58],[0,70],[1,32],[0,32],[-1,44],[0,35],[-1,97],[0,15],[-2,39],[1,52],[1,36],[0,32],[-1,85],[0,1],[0,122],[0,35],[0,115],[0,76],[0,32],[0,21],[-1,24],[0,83],[-1,31],[0,19],[1,19],[0,18],[0,19],[-1,19],[1,18],[-1,20],[0,60],[-1,19],[0,18],[-1,37],[1,27],[0,29],[0,27],[0,19],[0,28],[-1,73],[-1,48],[-2,21],[1,22],[0,6],[0,38],[0,19],[0,33],[-1,19],[1,37],[0,20],[-1,56],[0,28],[0,18],[0,35],[-1,36],[-1,29],[0,56],[0,47],[-1,37],[0,34],[-1,32],[0,51],[0,61],[0,22],[0,40],[0,34],[0,28],[-1,38],[-4,30],[4,70],[0,19],[-1,41],[0,21],[1,36],[0,25],[0,16],[0,26],[0,69],[0,20],[1,23],[-1,42],[-1,34],[0,7],[0,13],[-2,40],[0,19],[-1,22],[2,117]],[[69804,11355],[-61,1],[-29,1],[-185,2],[-97,2],[-47,-1],[-177,1],[-222,1]],[[68986,11362],[-248,1],[-96,1],[-3,0],[-87,1],[-65,0],[-3,0],[-197,1],[-36,0],[-48,0],[-52,0],[-57,1],[-69,0],[-50,0],[-16,-1],[-55,0],[-161,0],[-31,0],[-146,-2],[-111,-1],[-52,0],[-66,-1],[-93,-1],[-29,0],[-88,-1],[-98,-1],[-120,-1],[-157,0],[-43,0],[-32,2],[-60,-2],[-103,-1],[-34,0],[-159,-1],[-164,-1],[-56,-2],[-85,1],[-67,-1],[-81,-1],[-2,0],[-58,-1],[-48,-1],[-129,-1],[-34,0],[-141,-1],[-69,0],[-155,-1],[-122,1],[-92,1],[-90,0],[-55,0],[-42,1],[-141,2],[-142,-2],[-123,-2],[-26,0],[-60,0],[-59,0],[-32,1],[-89,0],[-34,0],[-84,-1],[-27,1],[-127,1],[-48,1],[-26,-1],[-32,0],[-16,1],[-221,1],[-316,-1],[-28,-1],[-76,0],[-57,-1],[-49,0],[-78,-1],[-61,0],[-66,-1],[-1,0],[-27,0],[-68,0],[-91,1],[-32,0],[-45,1],[-158,1]],[[62391,11350],[-2,25],[1,29],[1,38],[0,32],[0,46],[0,23],[0,24],[-2,29],[4,18],[1,21],[1,21],[0,25],[1,28],[0,25],[1,29],[-1,24],[-1,29],[2,46],[1,41],[0,37],[0,35],[1,71],[0,40],[0,40],[3,36],[0,29],[-1,26],[1,32],[0,25],[2,24],[1,37],[-1,43],[1,55],[0,8],[2,214],[0,26],[1,52],[1,63],[3,126],[1,20],[3,40],[0,83],[0,64],[1,84],[0,35],[1,82],[1,18],[0,57],[0,9],[0,23],[1,57],[0,38],[0,60],[1,45],[0,21],[0,20],[0,22],[0,36],[0,33],[3,80],[2,19],[0,1],[2,20],[-1,33],[-3,49],[-2,19],[-1,24],[-1,65],[-1,19],[1,43],[1,19],[1,45],[0,64],[1,23],[0,22],[-1,25],[0,64],[1,68],[0,46],[0,21],[1,128],[-1,26],[0,27],[0,31],[0,25],[0,22],[0,30],[1,132],[0,81],[0,22],[1,102],[0,51],[1,51],[0,66],[0,131],[1,43],[0,2],[0,37],[1,49],[0,44],[1,161],[0,33],[0,57],[0,73],[0,29],[1,32],[0,21],[0,49],[1,26]],[[62391,11350],[-66,1],[-83,0],[-67,2],[-99,3],[-45,1],[-138,3],[-30,0],[-2,0],[-28,0],[-42,1],[-80,1],[-30,1],[-29,-1],[-41,1],[-28,0],[-115,2],[-32,0],[-26,1],[-153,2],[-86,2],[-30,0],[-30,1],[-107,1],[-154,0],[-17,0],[-133,2],[-63,0],[-132,1],[-66,0],[-91,0],[-153,0],[-160,0],[-99,0],[-83,-12],[-32,-4],[-2,-1],[-29,-4],[-28,-4],[-24,-3],[-80,-12],[-39,-5],[-33,-5],[-48,-7],[-61,0],[-26,0],[-26,-1],[-34,-1],[-30,0],[-125,-3],[-25,0],[-42,0],[-57,-1],[-62,-1],[-99,0],[-150,-1],[-32,0],[-63,-1],[-221,0],[-99,0],[-106,1],[-85,1],[-136,-2],[-70,0],[-53,0],[-38,0],[-13,0],[-13,0],[-31,0],[-36,1],[-24,0],[-22,0],[-62,1],[-9,0],[-26,0],[-76,0],[-52,1],[-35,0],[-38,-1],[-53,-2],[-16,-1],[-7,0],[-89,-4],[-63,-3],[-70,-3],[-43,-1],[-33,0],[-26,-1],[-23,0],[-25,0],[-26,0],[-42,0],[-63,0],[-105,-1],[-41,0],[-2,0],[-88,0],[-122,1],[-73,0],[-27,0],[-16,0],[-21,0],[-64,0],[-54,0],[-85,1],[-20,0],[-53,0],[-83,2],[-22,0],[-56,-2],[-9,0],[-31,0],[-63,0],[-181,0],[-325,3],[-79,0],[-54,1],[-54,0],[-85,0],[-83,0]],[[54986,11301],[-213,5],[-57,1],[-151,4],[-9,0],[-184,1],[-105,2],[-100,2],[-171,5],[-110,3],[-24,1],[-26,1],[-90,3],[-24,-1],[-26,3],[-35,2],[-187,6],[-142,5],[-119,4],[-89,4],[-71,2],[-116,4],[-35,-2],[-34,1],[-70,4],[-206,7],[-104,4]],[[75187,10898],[1,0],[32,-20],[3,-3],[41,-13],[84,-21],[12,-3],[15,-15],[1,0],[29,-12],[31,-15],[45,-29],[15,-9],[16,-11],[32,-21],[22,-15],[41,-28],[4,-3],[23,-13],[4,-2],[19,-11],[91,-51],[47,-25],[6,-4],[7,-5],[40,-33],[29,-26],[26,-26],[30,-35],[31,-37],[16,-20],[42,-47],[26,-28],[19,-21],[31,-31],[25,-23],[22,-17],[29,-19],[21,-14],[19,-11],[29,-7],[19,-2],[22,-5],[36,-12],[3,-1],[41,-10],[71,-15],[31,-10],[45,-21],[44,-27],[20,-16],[11,-10],[5,-4],[19,-18],[9,-9],[1,-2],[26,-47],[18,-26],[23,-29],[18,-19],[15,-18],[12,-15],[14,-16],[13,-24],[3,-20],[-3,-28],[-1,-8],[-3,-34],[7,-37],[15,-18],[13,-20],[0,-1],[-1,0],[0,-29],[0,-16],[-9,-50],[-12,-51],[-13,-37],[-25,-50],[-37,-95],[6,4],[53,37],[15,-2],[3,-17],[-11,-24],[-18,-25],[-21,-22],[-24,-17],[-42,-29],[-24,2],[1,24],[5,38],[2,20],[0,9],[0,5],[-4,43],[-12,50],[-1,0],[-22,-3],[-11,-8],[-1,0],[-20,-63],[-6,-20],[6,-4],[5,-18],[-28,-2],[0,-42],[-18,-11],[-34,-18],[-34,-12],[-39,-20],[-34,-36],[-1,0],[-29,-28],[-19,-9],[-26,-14],[-11,-22],[-10,-18],[-33,-20],[-44,-14],[-34,-3],[-35,0],[-13,9],[-3,2],[-1,0],[0,18],[38,26],[40,22],[8,17],[-26,0],[-69,-29],[-95,-30],[-279,-11],[-22,-1],[-140,-12],[-86,-5],[-124,-2],[-58,-13],[-38,-1],[-22,6],[-34,8],[-17,5],[-14,1],[-6,0],[-35,0],[-53,-7],[-27,-5],[-47,-8],[-53,-8],[-24,-4],[-44,-7],[-32,-8],[-18,-4],[-38,-8],[-44,-8],[-26,-4],[-34,-5],[-47,-9],[-30,-3],[-30,-2],[-6,-1],[-30,-2],[-25,-2],[-28,-2],[-14,-1],[-21,0],[-11,0],[-65,-5],[-47,-5],[-30,-3],[-28,-10],[-15,-11],[-34,-9],[-46,3],[-9,0],[-37,2],[-33,-5],[-1,-1],[-30,-7],[-46,-11],[-33,-6],[-53,-10],[-29,-4],[-36,-5],[-38,-6],[-42,-5],[-37,-4],[-30,-1],[-45,1],[-52,-2],[-21,-2],[-62,-2],[-49,-2],[-24,-3],[-34,-9],[-34,-7],[-65,-5],[-35,-3],[-38,-4],[-79,-12],[-49,-4],[-42,-2],[-23,-1],[-27,-1],[-26,-2],[-24,-1],[-26,-1],[-38,-1],[-44,-2],[-45,-2],[-82,0],[-108,0],[-83,2],[-32,-3],[-82,0],[-33,-5],[-23,-4],[-39,-5],[-38,-4],[-45,-5],[-38,-3],[-46,-5],[-52,-8],[-84,-9],[-67,-10],[-59,-6],[-37,-6],[-44,-9],[-21,-6],[-24,-6],[-60,-14],[-37,-12],[-30,-10],[-15,-4],[-25,-8],[-55,-17],[-17,-5],[-54,-16],[-47,-13],[-33,-10],[-59,-23],[-23,-10],[-6,-1],[-42,-14],[-25,-10],[-34,-12],[-21,-5],[-5,-2],[-25,-9],[-31,-16],[-5,-4],[-1,-1],[-24,-18],[-14,-10],[-28,-23],[-32,-18],[-8,-4],[-21,-8],[-32,-8],[-13,-3],[-32,-8],[-38,-21],[-35,-22],[-26,-14],[-52,-19],[-3,-2],[-36,-20],[-33,-23],[-23,-20],[-18,-17],[-29,-24],[-26,-21],[-46,-40],[-9,-7],[-25,-21],[-26,-21],[-13,-9],[-5,-4],[-23,-18],[-22,-23],[-15,-22],[-10,-13],[-21,-17],[-26,-19],[-24,-18],[-7,-3],[-14,-9],[-32,-13],[-29,-7],[-32,-19],[-20,-12],[-21,-12],[-46,-25],[-32,-18],[-35,-16],[-2,-1],[-52,-18],[-41,-4],[-50,5],[-11,1],[-23,3],[-38,9],[-30,16],[-15,10],[-13,14],[-12,13],[-12,14],[-3,1],[-1,0],[-26,30],[-28,31],[-34,14],[-37,19],[-41,27],[-53,28],[-62,32],[-26,11],[-180,78],[-1,1],[-10,4],[-77,23],[-73,22],[-1,0],[-1,0],[-113,19],[-7,1],[-5,-1],[-73,-13],[-48,-14],[-1,-1]],[[68921,8174],[-2,16],[-1,10],[-2,108],[-1,89],[3,44],[3,132],[3,138],[3,119],[4,75],[3,41],[2,159],[0,44],[0,88],[10,158],[3,59],[-6,63],[1,38],[1,19],[0,39],[1,23],[-1,21],[-3,113],[0,43],[0,41],[2,44],[-1,25],[0,23],[0,22],[-6,41],[6,43],[3,188],[1,26],[1,30],[1,66],[0,24],[4,194],[1,36],[4,120],[0,48],[0,2],[0,42],[0,45],[5,94],[8,131],[2,25],[7,142],[2,31],[4,66]],[[68921,8174],[-48,-20],[-25,-10],[-62,-18],[-63,-18],[-39,-10],[-152,-22],[-124,-28],[-21,-5],[-240,-84],[-45,-20],[-86,-39],[-105,-68],[-27,-18],[-88,-57],[-97,-77],[-38,-44],[-28,-32],[-23,-26],[-28,-32],[-13,-18],[-12,-18],[-9,-57],[-11,-67],[-23,-89],[-11,-19],[-11,-32],[-9,-24],[-13,-26],[-5,-21],[-8,-15],[-11,-23],[-14,-39],[-5,-25],[-1,-29],[0,-23],[0,-19],[0,-28],[-3,-41],[0,-1],[-1,-3],[-3,-18],[0,-2],[-10,-28],[-1,-1],[-6,-28],[-9,-24],[-11,-24],[-5,-17],[2,-26],[-15,-17],[-14,-25],[-3,-6],[-4,-11],[-2,-12],[-5,-16],[-6,-11],[-13,-20],[-26,-26],[-32,-34],[-25,-33],[-11,-33],[-6,-19],[-15,-17],[-11,-9],[-25,-30],[-11,-19],[-26,-28],[-15,-19],[-18,-22],[-25,-34],[-7,-10],[-34,-37],[-13,-17],[-7,-12],[-19,-31],[-9,-20],[-7,-22],[-11,-22],[-17,-29],[-21,-28],[-22,-26],[-18,-19],[-25,-25],[-9,-9],[-27,-33],[-16,-21],[-33,-46],[-18,-31],[-10,-20],[-5,-12],[-7,-17],[-14,-26],[-10,-19],[-9,-25],[-5,-29],[17,-5],[1,-1],[-10,-5],[-7,-2],[-1,-7],[-4,-19],[-6,-14],[-9,-15],[0,-11],[7,-7],[3,-3],[2,-1],[12,-7],[4,-3],[5,-6],[8,-15],[4,-13],[-1,-16],[-2,-5],[-4,-5],[1,-1],[3,0],[11,0],[3,-4],[3,-10],[5,-4],[4,-2],[3,-2],[20,-10],[27,-20],[10,-10],[6,-15],[6,-27],[8,-26],[10,-32],[11,-21],[27,-40],[4,-13],[1,-4],[-1,-16],[4,-4],[3,-3],[24,-5],[1,1],[0,1],[7,6],[27,-5],[-1,-5],[0,-1],[-13,-12],[-6,-4],[-14,-5],[-13,-3],[-1,0],[-20,-8],[-6,-2],[-5,-2],[-36,-5],[-8,0],[-15,10],[-4,2],[-17,12],[-1,0],[-18,7],[-2,0],[-1,-1],[-5,-5],[-1,-10],[8,-12],[8,-10],[2,-2],[5,-4],[6,-6],[37,-8],[30,-7],[29,-14],[17,-11],[20,-14],[30,-30],[30,-25],[13,-10],[20,-15],[81,-42],[11,-5],[34,-18],[2,-1],[28,-16],[31,-11],[29,-17],[16,-12],[22,-18],[37,-21],[39,-38],[25,-34],[16,-26],[25,-40],[3,-4],[1,-1],[24,-51],[26,-44],[20,-35],[25,-32],[85,-84],[40,-34],[25,-21],[105,-56],[56,-17],[46,-14],[53,-22],[26,-11],[51,-31],[36,-25],[20,-14],[72,-47],[64,-64],[43,-83],[40,-84],[0,-1],[10,-40],[28,-38],[7,-9],[0,-12],[11,-26],[19,-43],[32,-63],[27,-22],[7,-11],[14,-34],[18,-49],[9,-25],[7,-20],[1,-1],[8,-24],[4,-13],[2,-15],[-1,-2],[-2,-8],[29,-45],[1,-1],[1,-14],[-5,-28],[32,-46],[19,-22],[28,-23],[26,-15],[21,-8],[9,-9],[12,-14],[19,-21],[14,-15],[15,-19],[13,-17],[-1,-10],[1,-3],[-4,-21],[-11,-30],[-5,-9],[-57,-110],[-7,-14],[-3,-4],[-2,-3],[-27,-51],[-11,-17],[-18,-34],[-9,-20],[-16,-42],[-21,-48],[-26,-45],[-13,-20],[-11,-17],[-3,-5],[-22,-31],[-14,-20],[-4,-4],[-6,-6],[-3,-3],[-6,-6],[-40,-64],[-53,-88],[-34,-67],[15,-6],[27,2],[-2,-4],[2,0],[-59,-122],[-6,-48],[-138,-194],[-40,-55],[-15,-22],[-16,-22],[-5,-7],[-31,-45],[-41,-57],[-11,-16],[-21,-30],[-55,-14],[-13,-3],[-106,-27],[-120,-32],[-26,-9],[-18,-5],[-12,-4],[-21,-5],[-29,-1],[-35,-2],[-7,-1],[-36,-7],[-28,-5],[-25,-5],[-30,0],[-22,3],[-30,5],[-61,4],[-20,0]],[[67244,1756],[7,49],[-1,48],[-1,93],[-1,21],[-3,476],[-1,23],[1,201],[-2,74],[3,45],[1,63],[0,27],[2,79],[-2,370],[-1,44],[-1,37],[-19,12],[-197,120],[-32,21],[-19,11],[-64,39],[-34,22],[-88,55],[-93,57],[-37,23],[-55,33],[-135,85],[-43,27],[-32,20],[-36,24],[-20,13],[-145,94],[-188,123],[-88,56],[-172,112],[-29,19],[-28,18],[-39,25],[-21,13],[-208,137],[-93,60],[-146,97],[-79,52],[-176,115],[-19,13],[-154,101],[-38,26],[-135,90],[-35,24],[-102,68],[-198,132],[-43,33],[-62,42],[-174,121],[-65,44],[-53,37],[-37,25],[-85,58],[-26,17],[-26,17],[-132,87],[-19,13],[-56,39],[-178,122],[-28,20],[-112,81],[-6,4],[-125,79],[-51,32],[-132,85],[-25,17],[-37,23],[-64,41],[-18,11],[-104,67],[-44,29],[-28,17],[-12,8],[-150,95],[-12,8]],[[62344,6615],[0,19],[0,20],[1,46],[0,1],[0,29],[0,8],[0,33],[0,63],[0,2],[0,27],[0,24],[0,179],[1,111],[1,117],[1,73],[1,40],[1,62],[1,56],[0,48],[0,8],[1,50],[2,47],[-5,69],[0,122],[-1,20],[0,23],[-1,41],[-2,75],[0,39],[-2,103],[0,38],[-1,42],[2,19],[1,23],[4,137],[0,3],[1,46],[0,1],[0,2],[-1,16],[2,68],[2,59],[0,18],[1,15],[0,5],[1,44],[0,4],[1,34],[2,88],[1,17],[0,21],[1,28],[0,2],[1,57],[1,49],[4,230],[0,25],[0,124],[0,35],[-1,44],[0,54],[0,40],[3,135],[0,21],[1,44],[2,94],[0,26],[2,29],[-1,42],[1,46],[0,31],[1,21],[1,73],[1,87],[1,45],[1,35],[-1,61],[3,113],[2,101],[0,59],[1,35],[0,86],[0,70],[1,38],[1,61],[-3,33],[0,1],[4,84],[0,31],[1,61],[0,21],[1,49],[2,77],[-3,20],[4,37],[0,25]],[[62344,6615],[-54,-4],[-28,-3],[-22,-2],[-72,-7],[-16,-1],[-23,-2],[-71,-6],[-71,-6],[-38,-3],[-201,1],[-35,0],[-246,1],[-119,-1],[-153,1],[-5,0],[-58,0],[-58,0],[-99,-1],[-61,0],[-135,1],[-1,0],[-68,0],[-35,0],[-28,0],[-76,1],[-108,0],[-89,0],[-53,0],[-55,1],[-23,1],[-152,-1],[-32,0],[-59,0],[-64,-1],[-22,1],[-155,1],[-79,1],[-105,2],[-95,2],[-95,1],[-28,0],[-86,0],[-25,0],[-75,-1],[-145,-1],[-146,0],[-199,-2],[-5,0],[-272,0],[-54,0],[-121,0],[-129,1],[-58,0],[-56,0],[-30,-2],[23,-3],[24,3],[26,-5],[19,-10],[23,-19],[23,-19],[29,-12],[26,-11],[31,-12],[25,-22],[-22,-8],[-13,-15],[3,-21],[22,-1],[23,-2],[8,-18],[-14,-14],[-23,-13],[-15,-16],[-13,-18],[-13,-18],[12,-19],[8,-18],[15,-15],[2,-19],[-9,-3],[-2,0],[-82,-13],[-13,-4],[-10,-3],[-74,-25],[-30,-11],[-24,-10],[-20,-13],[-2,-4],[-6,-1],[-107,-41],[-34,-22],[-30,-17],[-248,-98],[-11,-4]],[[57483,5993],[-25,15],[-21,-11],[-22,11],[-26,-9],[-24,-6],[-23,8],[-33,15],[-22,0],[-26,-6],[-28,-7],[-9,5],[-12,7],[-34,-2],[-19,-13],[-32,-2],[-28,-8],[-22,-9],[-30,-2],[-30,-9],[-37,-16],[-35,-16],[-16,-17],[-20,-16],[-6,-1],[-29,2],[-18,1],[-18,-1],[-21,-1],[-31,-6],[-60,1],[-6,2],[-4,1],[-2,2],[-9,10],[-5,35],[-2,10],[-5,16],[-6,7],[-9,5],[-63,10],[-72,11],[-25,5],[-74,13],[-18,3],[-17,4],[-44,8],[-10,1],[-55,13],[-229,67],[-14,-1],[-62,-6],[-9,-3],[-1,-1],[-1,-1],[-19,-17],[-3,-2],[-11,-8],[-7,2],[-9,5],[-30,29],[-23,2],[-7,2],[-22,16],[-16,4],[-14,2],[-25,-1],[-89,-8],[-37,-3],[-7,-1],[-103,-13],[-31,-4],[-44,-12],[-64,-42],[-4,-3],[-42,-28],[-22,-14],[-22,-15],[-21,-13],[-58,-37],[-65,-37],[-11,-5],[-19,-9],[-55,-20],[-47,-11],[-86,-20],[-57,-14],[-1,7],[-2,46],[4,199],[2,108],[-1,46],[-5,19],[0,59],[-1,47],[0,34],[0,21],[0,63]],[[54910,6485],[1,98],[1,67],[0,27],[0,26],[0,28],[1,26],[0,28],[0,27],[0,27],[1,27],[1,31],[-1,26],[-1,26],[0,46],[1,45],[1,20],[-4,18],[2,40],[4,60],[1,29],[1,31],[-1,23],[0,25],[-2,53],[0,23],[0,21],[2,29],[-2,51],[0,91],[0,29],[-1,63],[0,66],[0,25],[0,26],[-1,45],[0,53],[0,39],[0,19],[1,22],[0,18],[0,28],[0,118],[0,93],[0,55],[2,69],[1,19],[0,20],[0,28],[0,23],[1,19],[1,45],[2,28],[0,1],[-2,108],[0,10],[-1,104],[2,45],[0,32],[0,42],[1,64],[2,73],[0,34],[0,1],[2,89],[1,64],[2,96],[0,31],[0,19],[1,25],[0,20],[2,31],[9,127],[2,31],[0,12],[6,134],[3,64],[6,259],[5,219],[1,23],[4,183],[0,5],[1,86],[3,99],[4,137],[3,38],[5,269],[0,123],[2,99]],[[54910,6485],[-119,3],[-74,2],[-77,5],[-29,1],[-58,3],[-16,1],[-28,1],[-296,15],[-102,9],[-136,7],[-72,5],[-124,9],[-58,4],[-23,2],[-101,1],[-99,1],[-145,1],[-62,0],[-108,1],[-35,1],[-24,-3],[-291,3],[-26,0],[-27,0],[-26,0],[-17,0],[-31,1],[-26,0],[-186,2],[-58,0],[-5,0],[-223,2],[-63,1],[-1,0],[-26,0],[-39,1],[-26,0],[-143,1],[-132,1],[-161,2],[-140,1],[-26,0],[-262,3],[-208,2],[-44,0],[-95,1],[-66,1],[-31,0],[-113,1],[-174,2],[-78,1]],[[50380,6580],[-37,2],[-35,1],[-46,-2],[-133,0],[-128,-1],[-348,-2],[-125,-1],[-41,0],[-205,-1],[-239,-2],[-121,-1],[-98,0],[-55,-1],[-101,0],[-223,-2],[-56,0],[-242,-2],[-240,-1],[-34,0],[-311,0],[-114,0],[-38,-1],[-1,0],[-22,0],[-23,0],[-66,0],[-31,2],[-40,0],[-59,1],[-99,0],[-79,1],[-29,0],[-51,1],[-44,1],[-12,0],[-28,0],[-28,-2],[-10,1],[-17,2],[-41,-1],[-29,0],[-77,1],[-33,0],[-47,1],[-80,0],[-199,0],[-127,1],[-372,1],[-408,-1],[-71,0],[-59,0],[-28,0],[-51,11],[-15,3]],[[45134,6589],[167,36],[48,10],[601,42],[89,24],[167,47],[71,47],[76,104],[41,125],[107,327],[36,140],[-41,248],[-276,544],[-114,156],[-12,17],[-14,12],[-312,262],[-131,90],[-232,161],[-57,39],[-134,149],[-271,302],[-51,82],[-57,94],[-84,182],[-136,160],[-47,55],[-164,186],[-71,235],[-33,127],[-3,161],[6,107]],[[67244,1756],[-2,0],[-23,3],[-25,-4],[-1,-1],[-48,-11],[-90,-17],[-30,-2],[-52,-9],[-45,-5],[-1,0],[-9,0],[-70,1],[-64,-1],[-36,0],[-41,0],[-92,3],[-66,3],[-66,7],[-34,3],[-76,12],[-49,7],[-37,6],[-18,3],[-92,17],[-49,9],[-30,4],[-27,4],[-54,8],[-22,7],[-50,19],[-58,15],[-16,4],[-8,2],[-36,12],[-61,22],[-7,2],[-21,10],[-21,9],[-24,11],[-12,6],[-3,2],[-30,12],[-26,12],[-18,10],[-12,6],[-36,21],[-9,6],[-8,5],[-6,3],[-16,11],[-4,3],[-23,15],[-31,11],[-13,6],[-31,13],[-38,13],[-26,8],[-22,8],[-29,16],[-5,6],[3,1],[3,2],[-9,5],[-24,12],[-23,20],[-47,38],[-17,16],[-6,4],[-13,11],[-22,20],[-20,19],[-12,14],[-14,13],[-17,15],[-18,22],[-13,11],[-62,27],[-47,15],[-53,16],[-27,21],[-38,33],[-42,26],[-51,24],[-36,16],[-74,33],[-67,30],[-69,29],[-23,8],[-15,5],[-24,8],[-52,21],[-36,14],[-28,8],[-33,13],[-23,8],[-7,3],[-11,4],[-25,7],[-5,2],[-25,7],[-27,8],[-22,10],[-32,-3],[-38,-5],[-2,0],[-53,3],[-46,6],[-14,4],[-15,5],[-4,1],[-13,2],[-83,11],[-30,8],[-22,9],[-38,10],[-19,15],[-4,3],[-48,8],[-13,4],[-36,9],[-11,3],[-18,7],[-2,1],[-15,3],[-32,8],[-40,12],[-25,7],[-39,11],[-29,9],[-45,15],[-7,2],[-52,20],[-44,15],[-69,25],[-39,13],[-6,2],[-26,4],[-16,2],[-38,9],[-1,0],[-21,8],[-35,16],[-6,4],[-49,16],[0,1],[-38,11],[0,1],[-1,0],[-10,2],[-27,7],[-41,11],[-49,11],[-2,0],[-40,10],[-11,2],[-35,6],[-44,6],[-37,4],[-51,8],[-12,2],[-22,3],[-7,2],[-3,1],[-4,0],[-19,1],[-10,0],[-2,-1],[3,-4],[3,-4],[12,-5],[-7,-1],[-15,-1],[-21,-6],[-16,-4],[-12,0],[-8,12],[0,2],[-1,3],[-1,1],[-4,0],[-6,1],[-32,-6],[-31,-5],[-36,-5],[-30,-4],[-6,-1],[-61,-8],[-37,-3],[-30,-1],[-26,2],[-38,3],[-49,9],[-40,8],[-3,1],[-17,4],[-12,4],[-73,19],[-28,9],[-21,7],[-8,2],[-42,17],[-43,19],[-3,2],[-1,0],[-22,10],[-12,5],[-18,9],[-13,6],[-31,16],[-4,2],[-4,1],[-7,3],[-32,16],[-28,16],[-15,5],[-1,0],[-2,1],[-27,12],[-2,1],[-40,16],[-17,6],[-6,2],[-32,11],[-25,10],[-31,16],[-46,29],[-65,25],[-44,16],[-21,11],[-54,38],[-1,0],[-12,9],[-25,14],[-33,18],[-73,30],[-56,24],[-22,11],[-35,18],[-35,25],[-18,18],[-18,18],[-46,22],[-22,6],[-29,9],[-25,13],[-9,17],[-9,16],[-39,32],[-41,16],[-10,9],[-6,6],[-32,10],[-33,9],[-31,16],[-39,24],[-16,10],[-12,7],[-71,26],[-85,31],[-26,9],[-47,7],[-34,5],[-14,2],[-33,5],[-63,10],[-24,11],[-32,10],[-20,2],[-12,2],[-35,3],[-46,16],[-10,5],[-65,15],[-117,26],[-77,17],[-25,6],[-29,9],[-88,28],[-68,25],[-19,8],[-30,5],[-55,17],[-40,11],[-53,16],[-37,8],[-2,1],[-3,1],[-5,1],[-38,14],[-5,2],[-33,9],[-23,10],[-28,10],[-46,16],[-31,6],[-17,4],[-24,6],[-4,1],[-42,14],[-35,11],[-51,12],[-36,8],[-25,8],[-28,2],[-59,13],[-97,26],[-48,14],[-4,1],[-48,10],[-26,6],[-24,5],[-42,10],[-80,16],[-97,28],[-91,19],[-88,27],[-26,8],[-54,16],[-68,18],[-71,20],[-6,1],[-1,0],[-86,9],[-44,3],[-50,10],[-59,17],[-10,2]],[[57508,4618],[-2,28],[-1,13],[-1,19],[1,50],[-1,19],[0,20],[-1,19],[-1,32],[0,19],[-1,19],[0,18],[-2,28],[0,19],[-2,29],[-1,32],[-2,28],[1,35],[-2,83],[-1,66],[-1,57],[0,128],[0,40],[0,70],[0,19],[-3,137],[-2,128],[0,10],[-1,68],[-1,62],[0,55],[-1,25]],[[50380,6580],[67,-55],[7,-6],[16,-4],[58,7],[16,-1],[77,-12],[17,0],[43,2],[29,5],[115,7],[108,-4],[27,-31],[-4,-6],[2,-6],[39,-25],[105,-58],[5,-2],[53,-22],[38,-16],[15,1],[69,-43],[1,-1],[38,-49],[7,-9],[27,-58],[6,-13],[20,-112],[2,-31],[5,-84],[5,-96],[2,-31],[0,-1],[1,-61],[-6,-15],[-36,-38],[-64,-44],[-1,-2],[-44,-55],[-12,-14],[-14,-9],[-7,-1],[-4,-1],[-1,0],[-75,0],[-32,-3],[-25,-3],[-27,-2],[-10,-1],[-14,-2],[-17,-1],[-3,-1],[-10,-3],[-4,-2],[-98,-38],[-45,-26],[-7,-12],[-1,-8],[3,-15],[-1,0],[-1,-4],[-9,-5],[-16,-3],[-27,-3],[-1,0],[-56,-5],[-133,-43],[-68,-59],[-4,-3],[-45,-38],[-3,-2],[-11,-2],[-23,-5],[-2,-2],[-5,-3],[-13,-16],[-1,-1],[-14,-22],[-18,-26],[-5,-16],[-8,-31],[-13,-43],[-13,-46],[0,-2],[-3,-21],[-6,-47],[0,-1],[-1,-20],[-2,-42],[-8,-43],[-3,-6],[-47,-75],[-5,-8],[-38,-54],[-3,-2],[-63,-104],[0,-9],[-26,-9],[-38,-13],[-6,-2],[-14,-6],[-53,-3],[-58,-4],[-5,-1],[-18,-16],[-5,-5],[53,-40],[17,-13],[2,-2],[13,-8],[26,-18],[25,-17],[1,-4],[-1,0],[-11,-30],[-5,-15],[-3,-6],[-4,-11],[8,-17],[2,-9],[-3,-18],[0,-3],[-3,-6],[-13,-3],[-21,-1],[-3,0],[-2,-1],[-4,-1],[-3,-3],[-1,-1],[0,-10],[70,-45],[7,-2],[7,0],[4,3],[-1,20],[2,2],[15,1],[3,-2],[10,-8],[3,-2],[1,-4],[1,-6],[1,-5],[-12,-44],[-3,-10],[-1,-3],[-8,-8],[-40,-34],[6,-19],[10,-27],[10,-27],[13,-36],[4,-5],[5,-7],[16,-23],[4,-2],[136,5],[5,-2],[4,-9],[-2,-12],[-6,-11],[-6,-11],[-16,-12],[-9,-2],[-10,0],[-14,-1],[-8,2],[-10,-1],[0,-3],[5,-5],[11,-4],[55,-12],[14,-11],[1,-1],[1,-8],[-4,-26],[0,-4],[-1,-4],[-12,-6],[-18,-2],[-32,3],[-12,-4],[-47,-41],[-6,-27],[-1,-4],[0,-3],[-20,2],[-14,0],[-98,-1],[-29,0],[-9,-6],[-4,-4],[-9,-8],[-11,-30],[-8,-20],[0,-7],[0,-2],[7,-8],[37,-23],[-19,-26],[-20,-106],[30,-14],[13,-4],[9,0],[53,10],[3,-3],[13,-47],[1,-15],[-2,-8],[-23,-29],[-13,-17],[-4,-2],[-9,-3],[-87,-36],[-2,-1],[-36,-1],[2,-9],[6,-26],[2,-10],[31,-1],[160,0],[16,2],[13,3],[-33,-142],[16,-26],[31,-47],[5,-6],[2,-7],[2,-25],[-3,-10],[-4,-5],[-4,-5],[-8,-5],[-7,-4],[-1,-1],[-1,0],[-28,-13],[-2,-1],[-26,-3],[-3,-1],[-12,-4],[-89,-34],[-20,-14],[-15,-22],[-5,-14],[3,-28],[2,-19],[0,-8],[-4,-13],[-16,-21],[-11,-9],[-5,-6],[-47,-36],[1,-88],[-1,-23],[-1,-7],[47,-81],[7,-2],[34,-11],[47,-14],[7,-6],[42,-35],[15,-13],[2,-5],[-1,-16],[0,-7],[-6,-6],[-10,0],[-32,13],[-1,1],[-7,0],[-8,-2],[-3,-3],[-4,-11],[1,-20],[4,-13],[89,-86],[2,-2],[69,-53],[14,0],[9,5],[1,0],[11,10],[9,6],[1,0],[23,1],[20,-5],[10,-7],[2,-3],[11,-20],[-6,-27],[-1,0],[1,-1],[10,-17],[23,2],[30,1],[64,5],[1,0],[19,3],[54,9],[12,1],[3,-2],[3,-2],[1,0],[25,-74],[1,-7],[2,-8],[2,2],[30,21],[10,0],[1,0],[6,-2],[37,-17],[20,-15],[4,-5],[1,0],[-1,-9],[-3,-3],[-4,-2],[-3,-2],[-3,-1],[-30,-8],[-10,-3],[3,-10],[5,-4],[7,-3],[30,3],[51,11],[11,-2],[3,-1],[0,-2],[2,-23],[0,-2],[0,-1],[10,-10],[38,-12],[20,-3],[13,0],[7,3],[6,3],[22,14],[5,2],[26,10],[25,0],[23,0],[19,0],[10,-1],[22,-4],[46,-9],[86,-16],[141,-29],[144,-42],[51,-4],[7,0],[8,-1],[-1,4],[-9,39],[29,4],[30,5],[19,3],[40,5],[21,-1],[5,-1],[9,-3],[8,-6],[2,-1],[3,-5],[5,-7],[-3,-7],[-8,-6],[22,-30],[5,-3],[118,-71],[14,-8],[50,-29],[10,-1],[12,-2],[8,-22],[12,-17],[7,-8],[32,-21],[4,-2],[9,-10],[26,-41],[0,-1],[3,-6],[1,-35],[1,-2],[1,-5],[9,-7],[16,-5],[43,-5],[7,1],[6,3],[22,19],[6,1],[8,2],[18,1],[12,-2],[10,-4],[7,-7],[8,-5],[117,-76]],[[52179,1701],[-49,-66],[-158,-27],[-13,-26],[-14,-25],[-10,-24],[-9,-25],[-15,-28],[-14,-34],[-10,-23],[-11,-32],[-9,-31],[0,-23],[-5,-19],[-5,-25],[-8,-25],[-2,-3],[-3,-13],[-1,-9],[-3,-28],[0,-18],[4,-17],[3,-11],[7,-22],[13,-56],[4,-47],[0,-2],[5,-36],[16,-51],[10,-23],[2,-4],[12,-29],[19,-30],[34,-47],[21,-32],[12,-19],[11,-14],[2,-3],[20,-28],[39,-43],[11,-13],[33,-28],[31,-24],[10,-7],[26,-24],[6,-6],[61,-32],[11,-5],[5,-3],[22,-6],[12,-5],[15,-8],[3,-2],[82,-45],[196,-107],[225,-123],[3,-3],[2,-1],[92,-58],[-14,-3],[-23,-5],[-4,-1],[-242,-37],[-10,-2],[-214,-62],[-41,-12],[-198,-57],[-15,-4],[-15,0],[-22,0],[-158,2],[-184,48],[-122,97],[-12,21],[-53,94],[-4,7],[-5,55],[-16,183],[-3,10],[-45,142],[-9,26],[-49,106],[-56,58],[-1,2],[-195,102],[-4,2],[-52,23],[-41,20],[-24,9],[-59,21],[-19,10],[-264,135],[-28,14],[-20,20],[-93,95],[-42,69],[-10,17],[-33,54],[-63,103],[-16,27],[-98,110],[-94,107],[-14,16],[-28,-35],[-63,-77],[-977,74],[-109,8],[-1,0],[-9,-6],[-63,-47],[5,-116],[1,-32],[65,-112],[16,-28],[54,-47],[20,-9],[55,-26],[116,-55],[102,-29],[308,-87],[82,-49],[38,-23],[28,-16],[224,-133],[57,-102],[-105,-311],[-90,-98],[-6,-7],[-6,-3],[-232,-111],[-10,-5],[-13,3],[-264,56],[-23,5],[-61,40],[-212,141],[-185,122],[-40,27],[-66,45],[-238,100],[-500,148],[-52,20],[-12,4],[-544,207],[-7,2],[-3,4],[-123,120],[-19,88],[-14,69],[10,26],[26,67],[138,246],[10,44],[35,145],[-48,141],[-98,137],[-45,63],[-30,26],[-77,64],[-224,109],[-157,76],[-198,131],[-4,3],[-59,60],[-285,294],[-171,287],[-37,45],[-110,134],[-230,280],[-123,237],[-46,100],[-16,33],[-61,131],[-14,31],[-5,10],[11,71],[11,76],[1,1],[4,7],[23,37],[42,67],[43,71],[66,107],[2,75],[-58,97],[-139,34],[-46,11],[-176,3],[-263,-32],[-70,37],[-438,376],[-137,162],[-8,135],[48,77],[4,6],[2,5],[12,39],[65,209],[8,26],[47,62],[259,144],[32,32],[77,75],[7,5],[20,14],[39,26],[123,83],[10,7]],[[57508,4618],[-22,5],[-22,6],[-35,8],[-62,7],[-37,3],[-104,8],[-28,4],[6,-8],[2,-1],[84,-25],[20,-4],[56,-13],[35,-7],[8,-2],[-4,-5],[-1,-2],[-8,-1],[-33,-4],[-43,-4],[-88,-25],[-17,3],[-501,11],[-168,-4],[-216,-19],[-177,-23],[-179,-30],[-69,-21],[-104,-24],[-138,-45],[-103,-36],[-258,-119],[-115,-61],[-112,-68],[-54,-32],[-174,-96],[-45,-27],[-181,-118],[-54,-39],[-330,-188],[-157,-106],[-90,-88],[-71,-92],[-74,-115],[-29,-57],[-37,-85],[1,-9],[-25,-39],[-23,-69],[-47,-78],[-23,-33],[-69,-76],[-68,-63],[-74,-76],[-146,-117],[-107,-75],[-390,-220],[-46,-39],[-76,-59],[-101,-58],[-112,-80],[-97,-88],[-37,-27],[-73,-70],[-87,-102]]],"transform":{"scale":[0.000044949362023619585,0.000055375994649945867],"translate":[-91.51296742199986,36.970750113000065]}} diff --git a/src/js/config/mapconfig/mapfiles/county/in-counties.json b/src/js/config/mapconfig/mapfiles/county/in-counties.json new file mode 100644 index 00000000..5478f162 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/in-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-88.09788658499991,37.77173490200016,-84.78470021299995,41.761016611000116],"geometries":[{"type":"Polygon","properties":{"name":"IN"},"id":"18039","arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18141","arcs":[[6,7,8,9,-5]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18000","arcs":[[10,11,12,13]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18091","arcs":[[14,15,-14,16,-9]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18151","arcs":[[17,18,19]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18087","arcs":[[20,-1,21,-19]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18089","arcs":[[22,23,24,25,-12]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18127","arcs":[[26,-23,-11,-16]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18033","arcs":[[27,28,-18,29]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18113","arcs":[[-29,30,31,32,-2,-21]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18099","arcs":[[-4,33,34,35,-7]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18085","arcs":[[-33,36,37,38,-34,-3]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18149","arcs":[[-36,39,40,-15,-8]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18183","arcs":[[41,42,43,-37,-32]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18073","arcs":[[-41,44,45,46,47,-24,-27]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18003","arcs":[[48,49,50,-42,-31,-28,51]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18111","arcs":[[52,53,-25,-48]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18049","arcs":[[54,55,56,57,-35,-39]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18131","arcs":[[-58,58,59,-45,-40]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18169","arcs":[[-44,60,61,62,-55,-38]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18069","arcs":[[-51,63,64,-61,-43]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18103","arcs":[[-63,65,66,67,-56]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18001","arcs":[[68,69,-49,70]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18179","arcs":[[-70,71,72,73,-64,-50]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18181","arcs":[[74,75,76,77,-46,-60]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18017","arcs":[[-57,-68,78,79,-75,-59]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18007","arcs":[[-47,-78,80,81,82,-53]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18015","arcs":[[-80,83,84,85,-76]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18053","arcs":[[-74,86,87,88,89,90,-66,-62,-65]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18075","arcs":[[91,92,93,94,-72,-69]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18009","arcs":[[-95,95,-87,-73]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18067","arcs":[[96,97,-84,-79,-67,-91]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18157","arcs":[[-86,98,99,100,101,-81,-77]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18171","arcs":[[-102,102,103,104,-82]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18023","arcs":[[-98,105,106,107,108,-99,-85]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18159","arcs":[[-90,109,110,-106,-97]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18095","arcs":[[111,112,113,114,-110,-89]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18035","arcs":[[-96,-94,115,116,-112,-88]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18045","arcs":[[-101,117,118,119,-103]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18135","arcs":[[120,121,122,-116,-93]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18057","arcs":[[123,124,125,-107,-111,-115]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18107","arcs":[[-109,126,127,128,129,-118,-100]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18011","arcs":[[-126,130,131,-127,-108]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18165","arcs":[[-120,132,133,134,-104]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18065","arcs":[[-123,135,136,137,138,-113,-117]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18177","arcs":[[139,140,141,-136,-122]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18121","arcs":[[-130,142,143,144,-133,-119]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18059","arcs":[[-139,145,146,147,-124,-114]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18097","arcs":[[-148,148,149,150,151,-131,-125]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18063","arcs":[[-152,152,153,-128,-132]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18133","arcs":[[-154,154,155,156,-143,-129]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18041","arcs":[[157,158,159,-137,-142]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18139","arcs":[[-160,160,161,162,-146,-138]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18161","arcs":[[163,164,-158,-141]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18145","arcs":[[-163,165,166,167,-149,-147]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18081","arcs":[[-168,168,169,170,-150]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18109","arcs":[[-171,171,172,173,-155,-153,-151]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18167","arcs":[[174,175,176,-134,-145]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18021","arcs":[[-157,177,178,179,-175,-144]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18047","arcs":[[-165,180,181,182,183,-161,-159]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18119","arcs":[[-174,184,185,-178,-156]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18031","arcs":[[-184,186,187,188,-166,-162]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18105","arcs":[[189,190,191,192,-185,-173]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18005","arcs":[[-189,193,194,195,-169,-167]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18013","arcs":[[-196,196,-190,-172,-170]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18137","arcs":[[197,198,199,200,201,-187,-183]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18029","arcs":[[-182,202,203,-198]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18153","arcs":[[-180,204,205,206,-176]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18079","arcs":[[207,208,209,-194,-188,-202]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18055","arcs":[[-186,-193,210,211,212,213,-205,-179]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18071","arcs":[[-210,214,215,216,-191,-197,-195]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18115","arcs":[[217,-199,-204,218]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18093","arcs":[[-217,219,220,221,-211,-192]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18155","arcs":[[222,223,-200,-218]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18077","arcs":[[-224,224,225,226,-208,-201]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18083","arcs":[[227,228,229,230,-206,-214]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18101","arcs":[[-222,231,232,233,-212]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18027","arcs":[[234,235,-228,-213,-234]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18143","arcs":[[-227,236,237,-215,-209]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18175","arcs":[[-238,238,239,240,241,242,-220,-216]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18117","arcs":[[-243,243,244,-232,-221]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18019","arcs":[[245,246,-239,-237,-226]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18125","arcs":[[247,248,249,-229,-236]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18051","arcs":[[250,251,252,253,-230,-250]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18037","arcs":[[-245,254,255,256,257,-248,-235,-233]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18025","arcs":[[258,259,260,-255,-244,-242]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18061","arcs":[[261,262,-259,-241]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18043","arcs":[[-247,263,-262,-240]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18123","arcs":[[264,265,-256,-261]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18173","arcs":[[-258,266,267,268,-251,-249]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18129","arcs":[[269,270,-253]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18147","arcs":[[-266,271,-267,-257]]},{"type":"Polygon","properties":{"name":"IN"},"id":"18163","arcs":[[-269,272,-270,-252]]}]},"states":{"type":"GeometryCollection","bbox":[-88.09788658499991,37.77173490200016,-84.78470021299995,41.761016611000116],"geometries":[{"type":"Polygon","properties":{"name":"Indiana"},"id":"18","arcs":[[21,19,29,51,70,91,120,139,163,180,202,218,222,224,245,263,262,259,264,271,267,272,270,253,230,206,176,134,104,82,53,25,-12,-11,-14,16,9,5]]}]}},"arcs":[[[73588,99950],[-3,-104],[1,-28],[2,-64],[1,-23],[0,-4],[3,-39],[-1,-28],[4,-142],[2,-41],[0,-32],[6,-186],[1,-33],[2,-37],[0,-29],[1,-41],[1,-163],[0,-32],[2,-59],[8,-295],[5,-182],[4,-113],[8,-240],[6,-161],[-1,-32],[2,-84],[2,-69],[0,-26],[1,-39],[1,-45],[2,-62],[1,-47],[2,-40],[0,-34],[2,-52],[0,-28],[0,-1],[1,-41],[1,-45],[1,-40],[1,-56],[5,-25],[6,-219],[0,-133],[0,-36],[0,-37],[1,-28],[1,-56],[1,-33],[1,-44],[1,-46],[0,-29],[2,-32],[0,-40],[2,-58],[1,-25],[2,-68],[1,-46],[1,-39],[1,-28],[2,-46],[1,-31],[2,-73],[2,-36],[1,-29],[1,-34],[2,-48],[2,-70],[2,-47],[2,-55],[1,-44],[1,-39],[0,-26],[2,-34],[2,-89],[1,-44],[2,-55],[1,-39],[3,-86],[1,-51],[1,-28],[1,-36],[1,-46],[1,-33],[1,-48],[1,-45],[0,-30],[3,-98],[1,-58],[1,-25],[1,-65],[1,-32],[1,-31],[0,-29],[1,-33],[1,-85],[1,-28],[0,-56],[1,-30],[1,-29],[0,-28],[1,-39],[2,-44],[1,-47],[2,-71]],[[73739,94041],[5,-58],[2,-32],[2,-28],[3,-38],[3,-36],[1,-39],[1,-35],[0,-43],[2,-36],[1,-147],[2,-66],[1,-11],[0,-15],[1,-80],[0,-4],[2,-222],[10,-197],[-6,-152],[4,-196],[2,-182],[1,-181],[0,-2],[1,-54],[1,-42],[-1,-50],[0,-39],[0,-10],[0,-47],[0,-51],[0,-75]],[[73777,91873],[-581,-3],[-437,-2],[-140,1],[-166,-2],[-64,-1],[-72,0],[-290,-3],[-143,-1],[-52,-1],[-96,-1],[-41,0],[-99,-1],[-177,-2],[-137,-1],[-33,0],[-55,0],[-35,-1],[-97,-1],[-75,-1],[-36,0],[-51,-1],[-30,0],[-37,-1],[-79,-1],[-85,-1],[-53,0],[-57,-1],[-34,-1],[-59,-2],[-172,0],[-297,-4],[-188,-3],[-109,-1],[-147,-4],[-145,-1],[-109,-2],[-109,-1],[-75,-2],[-130,-1],[-46,-1],[-101,-1],[-147,0],[-51,0],[-85,1],[-124,0],[-44,0],[-76,1],[-43,0],[-159,1],[-42,0],[-16,1],[-82,3],[-1,0],[-142,-5],[-45,0],[-112,5],[-100,0],[-184,3],[-289,6],[-331,3],[-53,0],[-17,0],[-32,0],[-32,0],[-41,0],[-43,0],[-32,1],[-52,0],[-53,1],[-39,-3],[-202,-1],[-197,5],[-122,0],[-45,-1],[-71,0],[-50,1],[-85,-1],[-42,0],[-34,1],[-166,-3],[-20,0],[-39,1],[-36,0],[-132,1],[-118,-1],[-374,-3],[-213,-1],[-241,-1],[-61,0],[-58,0],[-122,-1],[-91,-2],[-296,6],[-66,1],[-35,0],[-39,0],[-56,1],[-45,-5],[-39,-1],[-286,1],[-586,3],[-592,3],[-278,2]],[[61534,91847],[3,175],[0,6],[-1,68],[-4,476],[-2,136],[0,42],[0,55],[-6,127]],[[61524,92932],[0,27],[0,32],[-1,54],[0,29],[0,37],[0,57],[0,25],[-1,102],[0,48],[0,44],[-1,62],[0,26],[-1,31],[0,38],[-1,37],[-1,81],[-1,50],[-1,37],[0,42],[-1,47],[0,30],[-1,37],[0,29],[11,60],[-3,91],[-2,66],[-1,28],[-2,98],[-3,91],[-1,37],[0,25],[-1,26],[0,35],[-1,53],[-1,42],[-1,46],[-1,29],[0,30],[-1,31],[-1,30],[0,34],[-1,27],[-2,66],[-1,25],[-1,34],[-1,26],[-1,57],[-1,32],[-1,28],[0,29],[0,33],[0,35],[0,33],[-1,26],[0,25],[0,40],[0,25],[0,17],[0,15],[0,49],[-1,39],[0,41],[-1,47],[-1,34],[-1,30],[0,39],[0,39],[0,36],[-1,44],[-1,35],[-1,31],[0,32],[0,33],[-1,25],[0,34],[-1,32],[1,57],[0,59],[0,28],[0,29],[5,26],[-1,38],[0,29],[0,34],[0,4],[-1,33],[0,41],[-1,26],[0,30],[-1,26],[0,26],[0,47],[-1,25],[0,27],[-1,53],[-1,57],[-1,48],[-1,28],[-1,62],[0,37],[0,33],[-1,58],[-1,31],[0,28],[-1,47],[0,38],[-1,29],[0,26],[0,25],[-1,30],[6,56],[-3,27],[-1,31],[-1,24],[-1,12],[-2,79],[-2,42],[1,47],[0,22],[1,21],[0,8],[-1,19],[0,35],[-1,28],[-1,59],[-1,38],[-1,39],[-1,45],[-1,36],[0,26],[-1,46],[-1,34],[-1,41],[0,27],[-1,26],[-1,27],[-1,62],[-1,28],[0,29],[-1,50],[0,5],[-1,30],[-1,40],[-8,33],[0,34],[-1,90],[-1,49],[0,32],[0,35],[-1,74],[-1,38],[0,53],[-1,40],[0,27],[-2,136],[-1,109],[-1,91],[-1,75],[0,12],[-1,60],[0,26],[-1,53],[-1,69],[0,33],[-1,49],[0,29],[0,36],[-2,64],[0,53],[-1,47],[-1,30],[-1,87],[-2,89]],[[61430,99986],[1981,-9],[672,-3],[4147,-20],[657,-2],[730,-2],[2,0],[102,0],[103,0],[280,0],[2035,0],[259,0],[656,0],[534,0]],[[61524,92932],[-583,0],[-40,0],[-38,0],[-74,0],[-60,0],[-51,0],[-37,0],[-63,0],[-49,0],[-50,0],[-43,0],[-58,-1],[-40,0],[-41,0],[-36,0],[-53,0],[-54,0],[-35,0],[-63,-1],[-88,0],[-41,0],[-35,0],[-76,0],[-45,0],[-41,1],[-75,3],[-48,1],[-33,1],[-75,2],[-34,1],[-46,0],[-56,-1],[-34,0],[-46,0],[-65,0],[-35,-1],[-72,0],[-73,0],[-49,0],[-62,-1],[-32,0],[-72,0],[-85,-1],[-126,0],[-9,0],[-388,-2],[-3,0],[-189,-1],[-289,-7],[-257,0],[-32,0],[-283,-2],[-100,2],[-39,0],[-161,0],[-237,-2],[-356,3],[-40,0],[-42,0],[-76,0],[-59,-1],[-35,0],[-77,0],[-93,0],[-41,0],[-50,-1],[-41,0],[-31,0],[-93,0],[-77,0],[-55,0],[-63,-1],[-36,0],[-68,0],[-57,-1],[-42,0],[-34,0],[-49,0],[-44,0],[-62,0],[-41,0],[-63,0],[-44,0],[-39,0],[-63,0],[-64,0],[-19,-32],[-34,-4],[-31,0],[-48,-1],[-50,0],[-126,-2],[-40,0],[-56,-1],[-76,0],[-24,0],[-18,-1],[-55,0],[-35,0],[-10,28],[-61,6],[-38,0],[-33,-1],[-42,0],[-40,-1],[-61,0],[-47,-1],[-37,-1],[-60,0],[-103,-2],[-48,0],[-47,-1],[-31,0],[-49,-1],[-66,-1],[-38,0],[-54,0],[-43,-1],[-33,0],[-73,-1],[-51,-1],[-110,-2],[-65,-1],[-40,0],[-364,-2],[-233,-3],[-197,-2],[-90,-3],[-60,0],[-43,-1],[-47,0],[-63,-2],[-37,0],[-37,-1],[-45,0],[-50,-1],[-58,0],[-42,0],[-96,-1],[-48,-1],[-51,-1],[-37,-1],[-56,-1],[-53,0],[-37,-1],[-40,-1],[-64,-1],[-33,-1],[-37,0],[-64,-1],[-46,0],[-35,0],[-41,-1],[-73,-1],[-47,-1],[-55,-1],[-45,0],[-79,1],[-62,1],[-77,1],[-62,2],[-58,-1],[-68,-1],[-35,0],[-45,-1],[-34,0],[-57,-1],[-39,-1],[-53,0],[-64,-1],[-32,0],[-41,0],[-46,-1],[-46,0],[-37,0],[-47,-1],[-38,0],[-53,-1],[-48,0],[-37,-1],[-38,0],[-57,0],[1,-93],[0,-98],[0,-4],[12,-169],[0,-51],[0,-26],[0,-41],[1,-33],[-1,-16],[0,-11],[0,-29],[0,-13],[1,-27],[-1,-25],[0,-27],[1,-71],[-1,-62],[0,-38],[0,-26],[0,-28],[1,-101],[0,-31],[0,-29],[0,-41]],[[49235,91776],[-70,-1],[-37,0],[-38,0],[-56,0],[-39,0],[-50,0],[-70,2],[-312,0],[-56,-3],[-38,0],[-40,0],[-38,0],[-31,0],[-130,-1],[-457,1],[-31,-1],[-37,0],[-73,-2],[-150,3]],[[47482,91774],[0,184],[-7,270],[-1,96],[-3,108],[1,67],[2,184],[1,59],[2,60],[0,2],[3,62],[0,5],[2,39],[0,36],[-1,28],[1,37],[-1,62],[0,33],[1,53],[0,28],[-11,91],[-3,99],[0,2],[1,78],[2,135],[4,344],[16,1],[15,1],[60,6],[141,1],[346,1],[66,0],[40,7],[34,13],[1,0],[23,15],[2,2],[0,1],[0,179],[23,30],[26,32],[11,30],[1,2],[-1,31],[0,31],[-2,248],[0,21],[0,82],[6,300],[0,17],[95,59],[260,180],[-2,454],[6,30],[-1,31],[-1,31],[-1,80],[-1,7],[-2,18],[0,27],[-2,47],[-1,54],[-1,60],[0,63],[0,38],[-1,38],[-1,28],[0,42],[-1,31],[0,48],[7,50],[0,28],[0,30],[-3,129],[-2,66],[-5,181],[-1,27],[-1,30],[-1,27],[-1,32],[-1,26],[-1,29],[-7,49],[-10,142],[-378,11],[-215,6],[-183,3],[-258,4],[-147,4],[6,181],[2,38],[1,28],[2,29],[1,34],[1,33],[1,29],[2,46],[2,72],[2,40],[0,8],[2,35],[1,34],[1,47],[2,45],[0,38],[0,30],[1,27],[2,57],[2,34],[1,37],[1,27],[1,38],[2,39],[1,42],[2,30],[1,32],[0,32],[1,51],[0,48],[1,29],[1,27],[1,9],[2,42],[2,37],[1,31],[2,27],[0,5],[2,43],[0,32],[2,56],[1,29],[1,44],[1,47],[0,33],[1,74],[1,39],[2,82],[1,37],[0,32],[1,51],[1,40],[1,47],[0,26],[1,64],[0,33],[0,9],[1,26],[0,68],[0,27],[1,33],[0,45],[1,78],[1,29],[1,39],[1,25],[0,26],[2,56]],[[47497,99965],[5816,12],[434,1],[1353,3],[651,1],[744,1],[3483,2],[681,1],[771,0]],[[35167,98723],[-20,-10],[-30,-15],[-159,-41],[-23,-6],[-166,-45],[-84,-13],[-44,-12],[-51,-16],[-603,-187],[-111,-38],[-36,-11],[-87,-34],[-136,-39],[-68,-19],[-91,-32],[-114,-39],[-118,-37],[-105,-36],[-34,-11],[-89,-30],[-116,-36],[-62,-18],[-62,-17],[-55,-18],[-74,-24],[-82,-27],[-18,-6],[-24,-8],[-94,-28],[-60,-18],[-39,-11],[-87,-24],[-76,-18],[-25,-6],[-97,-30],[-160,-48],[-43,-12],[-34,-10],[-70,-11],[-38,-6],[-27,-9],[-50,-17],[-87,-28],[-83,-24],[-85,-20],[-37,-12],[-60,-19],[-94,-30],[-42,-10],[-42,-10],[-113,-32],[-143,-37],[-159,-42],[-132,-34],[-70,-17],[-43,-11],[-58,-13],[-23,-6],[-38,-11],[-49,-12],[-48,-12],[-64,-17],[-24,-7],[-93,-21],[-84,-18],[-77,-17],[-9,-2],[-9,-2],[-56,-13],[-87,-21],[-96,-22],[-35,-8],[-25,-6],[-16,-3],[-53,-13],[-7,6],[-50,39],[-53,-13],[-127,19],[-19,28],[-25,36],[-9,-1],[-24,-3],[23,-51],[-26,-3],[-45,-5],[-145,-34],[-118,-18],[-120,16],[3,-153],[0,-6],[0,-8],[-16,-21],[-15,-19],[1,-55],[-107,0],[2,42],[2,42],[2,39],[1,27],[-196,11],[-6,-77],[-3,-39],[-1,-15],[-33,-72],[-12,-26],[1,-14],[0,-23],[-64,-2],[-48,-1],[16,105],[-97,-8],[-81,-6],[-107,-9],[-119,-9],[-12,-28],[-10,-22],[-13,-28],[-3,1],[-6,1],[-55,17],[-84,-18],[-55,-10],[-33,-6],[-105,-20],[-79,-10],[-48,-5],[-149,-25],[-138,-17],[-118,-15],[-63,-10],[-51,-8],[-84,-11],[-107,-14],[-50,-6],[-96,-12],[-14,-2],[-50,-10],[-5,-1],[-5,-1]],[[26416,96559],[-169,-8],[-123,-6],[-323,-25],[-113,-10],[-148,-12],[-85,-8],[-135,-11],[-608,-6],[-59,1],[-92,2],[-18,0],[-58,1],[-24,1],[-1,5],[-5,37],[-29,1],[-15,1],[-1,-28],[-1,-23],[-68,-4],[11,13],[20,23],[0,14],[-1,27],[-183,11],[-43,-23],[-1,-16],[-1,-11],[-16,-40],[-6,-16],[-180,3],[-4,16],[-8,33],[-28,8],[-21,6],[-36,1],[-48,2],[-47,-5],[-4,-34],[-74,3],[-34,1],[-20,28],[-35,-25],[-53,5],[-11,1],[9,59],[-15,8],[-18,9],[-175,11],[-10,2],[-56,7],[-292,23],[-92,7],[-215,18],[-248,19],[-33,6],[-37,5],[-142,23],[-38,6],[-49,8],[-284,55],[-148,35],[-154,35],[-296,69],[-147,34],[-57,17],[-121,37],[-254,56],[-96,-1],[-93,-58],[-48,23],[-50,23],[-48,38],[-148,51],[-122,101],[-32,69],[2,2],[1,1],[48,65],[377,94],[123,92],[29,21],[134,99],[77,57],[-56,37],[-93,62],[124,114],[69,64],[-88,64],[-149,110],[-245,69],[-503,-283],[50,-120],[2,-4],[23,-56],[24,-21],[29,-25],[32,-28],[33,-28],[-73,-45],[-51,-32],[-30,-18],[-5,4],[-7,6],[-55,45],[-36,30],[-6,59],[-5,40],[-31,131],[-90,144],[-23,38],[-48,-4],[-14,-2],[-24,-2],[-41,-3],[-303,-127],[-28,-20],[-78,-55],[-10,-29],[-3,-8],[-34,-17],[-35,-17],[-50,8],[-23,4],[-106,16],[-59,49],[9,26],[-34,24],[-52,35],[-21,14],[0,-1],[-7,-5],[-22,-18],[-11,-8],[-25,10],[-9,3],[-29,5],[-1,0],[-23,14],[-53,31],[11,53],[-50,-4],[-134,28],[-7,1],[-410,182],[10,18],[17,30],[-18,10],[-4,2],[-17,10],[2,8],[10,50],[-32,19],[-43,26],[-24,-5],[-33,-6],[-28,-2],[-69,-4],[-67,83],[-41,50],[-9,12],[-4,5],[42,17],[-51,30],[-89,53],[-8,5],[-21,20],[-24,24],[-47,-29],[-27,-15],[-19,-12]],[[17322,98657],[0,2],[-1,149],[-1,1174],[2916,7],[6241,10],[408,-8],[11546,-10]],[[38431,99981],[-152,-58],[-216,-83],[-572,-214],[-157,-58],[-437,-148],[-354,-115],[-54,-18],[-476,-116],[-14,-2],[-47,-6],[-73,-11],[1,-2],[20,-41],[8,-16],[5,-11],[13,-26],[4,-8],[-33,-10],[-5,17],[-5,20],[-1,2],[-1,5],[-4,15],[-2,6],[0,3],[-3,0],[-31,0],[-39,-46],[-8,-10],[-27,-32],[-14,-18],[-1,-2],[-4,-4],[-71,-81],[-27,-30],[-41,-13],[-110,-36],[-11,-14],[-21,-25],[-196,-63],[-16,-1],[-80,-7],[-8,0],[-4,-1]],[[47482,91774],[-287,-2],[-237,-1],[-167,-1],[-39,-1],[-105,-2],[-325,1],[-357,2],[-220,1],[-443,0],[-149,0],[-576,2],[-1,0],[-121,-1],[-460,-1],[-76,0],[-31,-19],[-4,-2],[-57,-33],[-65,-35],[-113,-60],[-30,-19],[-8,-4],[-20,-10],[-38,-20],[-163,-88],[-13,-7],[-8,-4],[-160,-90],[-96,-53],[-23,-13],[-23,-12],[-3,-1],[-230,-35],[-79,-12],[-101,-42],[-74,-29],[-10,-4],[-19,-8],[-42,-18],[-138,-55],[-123,-52],[-80,-40],[-26,-42],[0,-1],[-13,-21],[-7,-10],[-18,-33],[-92,-161],[-1,-1],[-8,-42],[-13,-68],[-10,-42],[-5,-25],[-13,-54],[-16,-42],[0,-3],[-37,-43],[-8,-9],[-13,-15],[-48,-55],[-16,-21],[-4,-5],[-5,-5],[-53,-53],[-20,-17],[-160,-136],[-1,0],[-104,-135],[-1,-8],[-1,-12],[-2,-14],[-4,-33],[-1,-11],[-5,-35],[-3,-31],[-2,-13],[-2,-14],[-2,-18],[-9,-28],[-34,-50],[-11,-16],[-18,-21],[-14,-16],[-46,-49],[-47,-50],[-6,-6],[-42,-39],[-6,-6],[-12,-11],[-13,-14],[-40,-37],[-23,-24],[-2,-1],[-17,-38],[-25,-49],[-22,-43],[-1,-20],[-3,-59],[-1,-24],[0,-73],[-25,-37],[-15,-25],[-16,-23],[-50,-49],[-58,-36],[-61,-37],[-25,-16],[-17,-10],[-6,-3],[-1,-1],[-41,-21],[-65,-34],[-56,-26],[-60,-27],[-108,-52],[-135,-71],[-1,-1],[-39,-32],[-8,-6],[-317,-267],[-57,-48],[-9,-8],[-6,-5],[-65,-55],[-36,-30],[-75,-65],[-16,-14],[-2,-2],[-31,-22],[-263,-86],[-165,-53],[-180,-58],[-305,-99],[-31,-7],[-226,-32],[-43,-2],[-37,-6],[-40,-14],[-18,0],[-11,0],[-1,0],[-69,-2],[-86,6],[-25,2],[-136,11],[-27,2],[-2,0],[-21,-4],[-17,-5],[-1,-1],[-33,-19],[-2,-1],[-50,-34],[-4,-5],[-4,-7],[-36,-16],[-16,-5],[-35,-12],[-69,-16],[-65,-12],[-71,-8],[-12,-3],[-152,-9],[-13,0],[-54,-3],[-196,-18],[-95,-12],[-61,-15],[-33,-12],[-54,-28],[-20,-14],[-25,-18],[-5,-5],[-1,-2],[-20,-12],[-15,-5],[-165,-42],[-113,-25],[-36,-8],[-7,-1],[-2,-1],[-61,-16],[-32,-8],[-37,-14],[-19,-6],[-48,-2],[-11,-1],[-32,-4],[-28,-8],[-24,-9],[-80,-31],[-142,-62],[-33,-14],[-225,-87],[-4,-2],[-37,-14],[-19,-2],[-130,-16],[-95,-70],[-67,-49],[-2,-1],[-19,-16],[-20,-12],[-29,-21],[-52,-38]],[[35247,86862],[2,218],[1,110],[3,54],[1,86],[0,81],[-16,24],[1,27],[1,42],[6,203],[-3,72],[3,100],[-5,88],[-8,147],[0,41],[-2,450],[-5,249],[-1,27],[0,11],[-3,174],[-4,187],[0,163],[2,27],[4,153],[0,1],[0,26],[2,158],[2,201],[6,210],[7,155],[1,370],[2,369],[-1,89],[0,93],[0,86],[0,1],[-1,94],[2,181],[15,141],[6,48],[3,34],[0,1],[1,36],[3,277],[0,27],[-4,360],[0,162],[0,304],[0,1],[1,57],[-2,190],[-12,562],[0,1],[1,110],[-4,270],[-6,37],[-1,4],[3,29],[1,21],[1,6],[3,52],[-10,158],[-6,84],[-1,28],[-1,40],[-1,56],[-2,26],[-9,77],[-1,28],[-8,90],[-5,69],[-6,138],[-1,46],[-1,182],[0,88],[0,92],[0,28],[0,5],[-3,53],[-1,41],[-3,75],[-2,74],[0,2],[-4,92],[-3,92],[5,64],[-4,51],[-6,178],[-3,80],[-1,120],[0,3],[1,93],[2,34],[2,117],[2,315],[1,174],[5,130],[-10,50],[0,1],[0,31],[0,156],[2,266],[1,94],[0,57],[0,1],[-2,136],[-1,25],[0,39],[0,26],[0,39],[0,38],[-1,28],[-2,28],[0,27],[0,7],[0,28],[-2,101],[-1,26],[-6,136]],[[38431,99981],[597,-2],[150,-1],[479,-2],[972,-3],[879,-4],[104,0],[1800,-1],[1401,-1],[2684,-2]],[[99395,94211],[-207,4],[-71,-2],[-60,-4],[-141,-3],[-138,-2],[-885,-10],[-521,-7],[-12,0],[-85,-3],[-154,-3],[-79,-1],[-93,-1],[-350,-4],[-125,-8],[-25,0],[-39,0],[-40,0],[-54,1],[-44,2],[-65,0],[-67,1],[-25,0],[-7,0],[-33,-2],[-13,1],[-45,2],[-31,-2],[-16,-1],[-46,-3],[-86,-2],[-48,0],[-32,0],[-195,-2],[-571,-4],[-166,-1],[-95,-1],[-146,-2],[-6,0],[-126,-2],[-555,-6],[-293,-3],[-33,0],[-70,4],[-202,-2],[-311,-1],[-126,-1],[-52,0],[-113,-1],[-144,-1],[-435,-3],[-260,-1],[-38,-1],[-16,0],[-19,0],[-52,0],[-32,0],[-34,0],[-52,-1],[-49,1],[-9,0],[-1,0],[-27,0],[-45,0],[-44,0],[-53,0],[-52,0],[-99,0],[-78,0],[-88,0],[-66,-1],[-36,0],[-348,-1],[-303,0],[-89,0],[-37,0],[-83,-1],[-208,-1],[-159,2],[-390,-2],[-31,-1],[-308,-1],[-33,0],[-134,-1],[-124,0],[-364,-1],[-6,0],[-709,-9]],[[87643,94119],[5,94],[0,1],[2,90],[-1,104],[-1,67],[-7,40],[7,79],[0,56],[-1,85],[-2,117],[-2,158],[-3,39],[0,26],[0,31],[-1,38],[1,27],[0,28],[-1,40],[0,36],[0,35],[-1,31],[0,35],[-1,35],[1,26],[-1,133],[0,32],[0,31],[0,12],[0,32],[0,33],[0,169],[0,10],[1,37],[-4,193],[-2,164],[-7,307],[-1,59],[-3,270],[-1,74],[0,29],[0,1],[-2,171],[-2,370],[-1,31],[1,32],[-1,29],[0,27],[-2,48],[0,15],[0,31],[-1,27],[-1,30],[0,41],[-1,54],[-1,74],[-3,93],[1,94],[-1,25],[0,43],[-1,37],[-7,88],[-5,89],[-6,144],[8,47],[-1,28],[1,37],[-1,57],[-1,61],[-2,108],[-1,39],[-1,30],[1,131],[-1,47],[-1,31],[-1,25],[-10,43],[0,27],[-3,113],[-2,219],[-3,65],[0,30],[-2,123],[0,3],[-5,84]],[[87562,99964],[662,1],[1970,0],[334,0],[196,0],[167,1],[1412,0],[703,1],[400,0],[164,0],[235,1],[1483,1],[2172,3],[434,0],[536,1],[349,0],[568,4],[8,-1318],[1,-287],[0,-71],[1,-7],[0,-3],[-2,-34],[0,-22],[0,-18],[0,-44],[0,-44],[0,-1],[1,-11],[-1,-39],[0,-18],[0,-61],[0,-32],[1,-43],[-1,-51],[1,-30],[-5,-11],[3,-140],[2,-71],[2,-80],[2,-65],[1,-188],[1,-177],[0,-47],[0,-2],[-1,-47],[-2,-132],[-1,-96],[-1,-33],[0,-2],[9,-71],[0,-7],[0,-83],[-2,-78],[-1,-60],[-1,-78],[5,-103],[0,-42],[1,-47],[0,-26],[2,-118],[1,-52],[0,-8],[0,-64],[1,-55],[0,-20],[0,-72],[0,-30],[2,-35],[0,-25],[1,-31],[0,-53],[1,-31],[1,-54],[0,-38],[2,-88],[0,-2],[2,-70],[0,-26],[0,-55],[0,-78],[0,-46],[0,-5],[1,-36],[0,-32],[0,-27],[1,-33],[1,-30],[2,-66],[0,-7],[1,-46],[1,-45],[1,-34],[0,-10],[0,-9],[0,-26],[1,-30],[0,-6],[0,-2],[1,-26],[0,-34],[0,-14],[0,-5],[1,-19],[0,-38],[0,-30],[0,-40],[1,-56],[0,-4],[0,-30],[1,-25],[0,-12],[0,-51],[1,-42],[0,-21],[0,-4]],[[87643,94119],[-55,2],[-127,0],[-81,1],[-117,0],[-84,0],[-120,-1],[-425,2],[-180,-3],[-82,0],[-33,0],[-61,-1],[-66,0],[-46,0],[-80,0],[-43,0],[-107,0],[-48,0],[-57,-1],[-102,0],[-117,0],[-44,0],[-40,0],[-61,-1],[-74,0],[-86,-1],[-10,0],[-72,0],[-31,0],[-54,0],[-146,0],[-53,-1],[-40,0],[-70,0],[-88,0],[-43,-1],[-60,0],[-30,0],[-124,0],[-31,-1],[-57,0],[-44,0],[-31,0],[-30,0],[-56,0],[-46,0],[-52,-1],[-119,0],[-4,0],[-54,0],[-54,0],[-105,2],[-6,0],[-223,1],[-98,-2],[-399,-1],[-113,-1],[-66,0],[-40,-1],[-46,0],[-8,0],[-85,-1],[-39,-1],[-45,-1],[-34,-1],[-55,0],[-33,0],[-32,0],[-43,0],[-7,0],[-30,0],[-36,0],[-36,0],[-65,-1],[-51,0],[-30,0],[-51,0],[-66,0],[-34,0],[-63,0],[-113,0],[-37,0],[-45,-1],[-52,0],[-36,0],[-46,-1],[-81,0],[-48,-1],[-52,0],[-55,0],[-64,-1],[-78,0],[-97,0],[-35,-1],[-54,0],[-109,-1],[-46,0],[-140,-1],[-62,0],[-44,0],[-48,0],[-61,0],[-36,0],[-62,0],[-186,-1],[-99,-1],[-46,0],[-55,0],[-72,-1],[-32,0],[-31,0],[-44,0],[-32,0],[-43,0],[-77,-1],[-42,0],[-31,0],[-40,0],[-32,-1],[-1,0],[-77,0],[-60,0],[-106,0],[-46,0],[-36,-1],[-43,0],[-116,0],[-90,0],[-74,0],[-35,-1],[-31,0],[-40,0],[-30,-1],[-34,0],[-42,-1],[-32,0],[-70,0],[-76,-1],[-30,0],[-159,-2],[-31,0],[-35,0],[-35,0],[-49,-1],[-51,0],[-109,-1],[-195,-2],[-65,0],[-45,0],[-37,0],[-79,-1],[-35,0],[-48,0],[-40,0],[-79,-1],[-96,-1],[-96,-1],[-45,0],[-43,0],[-68,-1],[-72,0],[-104,-1],[-51,0],[-36,0],[-60,0],[-63,-1],[-64,0],[-38,-1],[-32,0],[-37,0],[-85,-1],[-63,0],[-134,-2],[-47,-1],[-36,0],[-32,0],[-32,-1],[-42,0],[-11,0],[-21,0],[-33,-1],[-70,-1],[-39,0],[-35,-1],[-72,0],[-58,-1],[-41,-1],[-58,0],[-51,-1],[-40,-1],[-62,0],[-45,-1],[-128,-1],[-58,-1],[-48,-1],[-66,-1],[-47,0],[-33,-1],[-64,0],[-47,-1],[-36,-1],[-31,0],[-42,0],[-41,-1],[-42,0],[-36,0],[-30,-1],[-44,0],[-87,-1],[-44,0],[-66,-2],[-38,0],[-39,-1],[-39,0],[-31,-1],[-58,0],[-45,-1],[-96,-1],[-35,0],[-36,-1],[-31,0],[-39,-1],[-30,0],[-89,-1],[-66,-1],[-32,0]],[[73588,99950],[2337,6],[333,1],[432,1],[1670,4],[827,2],[1416,3],[509,2],[391,0],[714,0],[208,0],[2257,2],[1219,-3],[1661,-4]],[[26416,96559],[1,-44],[1,-43],[-1,-44],[3,-36],[0,-30],[0,-45],[2,-40],[2,-65],[1,-5],[1,-20],[0,-43],[2,-105],[1,-43],[1,-48],[2,-72],[3,-25],[0,-4],[0,-24],[0,-4],[0,-26],[0,-28],[3,-22],[0,-8],[0,-40],[0,-40],[4,-52],[3,-60],[2,-53],[-2,-31],[-1,-14],[0,-40],[0,-41],[3,-45],[-3,-50],[3,-57],[0,-36],[0,-42],[0,-48],[6,-97],[-2,-93],[2,-171],[0,-2],[3,-38],[3,-45],[2,-37],[4,-56],[5,-65],[1,-43],[0,-77],[12,-269],[1,-12],[0,-60],[0,-23],[3,-52],[9,-128],[0,-186],[-3,-183],[6,-183],[3,-90],[0,-95],[0,-1],[-1,-160],[1,-60],[0,-70],[-2,-38],[-2,-27],[0,-3],[2,-139],[1,-44],[1,-36],[2,-71],[2,-71],[5,-188],[-7,-173],[4,-34],[-1,-164],[0,-97],[0,-93],[-2,-120],[-2,-49],[2,-115],[-3,-89],[0,-57],[-3,-53],[-1,-20],[2,-59],[0,-92],[-1,-94],[0,-47],[1,-99],[1,-62],[0,-85],[0,-29],[0,-185],[3,-34],[6,-147],[-3,-223],[1,-92],[-15,-234],[-3,-207],[-2,-111],[-1,-28],[0,-1],[12,-364],[6,-160],[7,-230],[3,-62],[7,-285],[1,-7],[2,-57],[0,-26],[1,-37],[-1,-241],[7,-181],[-2,-39],[2,-81],[-9,-55],[-1,-89],[4,-77],[0,-57],[1,-42],[1,-65],[1,-32],[2,-33],[-1,-69],[0,-2]],[[26530,86989],[-73,-52],[-2,-2],[-78,-56],[-21,-16],[-29,-22],[-32,-16],[-705,-202],[-617,-175],[-157,-44]],[[24816,86404],[-300,-85],[-156,-96],[-1,0],[-7,-4],[-35,-21],[-57,-36],[-11,-7],[-28,-18],[-33,-25],[-269,-167],[-25,-15],[-9,-5],[-202,-101],[-134,-68],[-7,-6],[-153,-131],[-33,-20],[-3,-5],[-11,0],[-5,-3],[-159,-66],[-20,-7],[-2,-1],[-33,-8],[-133,-5],[-78,-3],[-48,-2],[-84,-2],[-43,-1],[-20,0],[-38,-2],[-307,-81],[-4,-1],[-31,-9],[-138,-35],[-3,-1],[-138,-28],[-111,-22],[-115,-25],[-5,-3],[-3,-1],[-5,0],[-2,0],[-141,-32],[-43,-12],[-96,-61],[-34,-23],[-1,0],[-122,-77],[-8,-5],[-48,-30],[-69,-44],[-7,0],[-184,-4],[0,-1],[-1,-2],[-79,0],[-95,-1],[-39,-2],[-60,-1],[-77,-2],[-38,-1],[-39,-1],[-13,2],[-8,2],[-1,0],[-9,3],[-71,21],[-111,38],[-77,27],[-17,6],[-114,41],[-418,140],[-46,10],[-11,2],[-28,5],[-47,7],[-11,1],[-26,0],[-16,-3],[-14,-3],[-67,-19],[-1,-1],[-50,-15],[-157,-48],[-14,-4],[-3,0],[-401,-9],[-190,-5],[-60,-2],[-1,0],[-37,1],[-123,-5],[-288,-22],[-14,-1],[-45,-3],[-77,-6],[-25,-2],[-771,-60],[-29,-2],[-3,0]],[[17242,85085],[1,34],[0,36],[-1,108],[0,29],[-1,79],[2,161],[0,50],[1,79],[0,4],[0,6],[1,58],[0,69],[0,33],[0,63],[0,145],[0,126],[0,28],[-1,505],[0,2],[-1,153],[-1,209],[-1,128],[-1,29],[-1,55],[0,196],[0,112],[-1,244],[1,189],[0,49],[0,86],[-1,82],[0,82],[0,83],[0,19],[0,163],[0,26],[0,98],[0,48],[0,37],[0,52],[2,252],[0,31],[3,364],[3,78],[1,90],[2,187],[14,263],[1,14],[10,199],[1,5],[4,51],[0,7],[2,88],[0,58],[0,37],[0,188],[1,168],[-3,85],[-3,113],[-2,54],[-4,117],[-1,37],[0,291],[0,50],[0,100],[0,39],[0,30],[1,122],[1,89],[1,182],[0,70],[0,25],[0,46],[0,54],[1,31],[0,28],[-2,17],[0,117],[0,102],[1,28],[1,35],[2,53],[2,81],[1,27],[1,19],[1,19],[0,27],[1,73],[0,25],[1,60],[0,2],[1,4],[-2,27],[3,60],[0,30],[3,27],[0,3],[0,13],[0,40],[0,21],[0,1],[-1,45],[-1,22],[0,69],[3,93],[0,10],[2,20],[0,67],[0,43],[3,39],[-1,69],[-2,115],[3,40],[-3,50],[0,88],[1,6],[2,31],[0,153],[2,15],[-2,88],[-3,72],[3,21],[2,48],[0,8],[-1,27],[0,30],[1,8],[0,4],[0,6],[-2,34],[0,43],[0,50],[0,10],[0,50],[-3,35],[0,30],[6,62],[6,49],[0,54],[-1,38],[-2,78],[0,38],[0,50],[0,2],[0,25],[0,3],[3,62],[0,3],[0,23],[0,27],[-2,38],[-1,25],[0,2],[-3,81],[0,25],[0,5],[-2,26],[5,34],[-3,21],[3,29],[-3,45],[0,40],[2,14],[-2,49],[0,55],[3,27],[-1,14],[0,9],[4,25],[-3,25],[3,43],[-3,45],[0,45],[0,43],[0,45],[6,25],[0,2],[-3,40],[0,28],[-3,43],[1,15],[2,25],[0,35],[0,30],[0,26],[0,1],[0,71],[0,10],[-1,10],[-5,50],[0,35],[0,5],[0,14],[0,2],[0,7],[0,12],[3,33],[6,74],[0,2],[-2,47],[-1,42],[-1,148],[-2,30],[0,50],[3,40],[0,10],[0,3],[-1,38],[-3,50],[-1,3],[-1,22],[3,42],[0,7],[0,63],[0,31],[0,22],[-1,14],[-5,114],[3,25],[2,156],[0,2],[-2,33],[0,26],[0,4],[0,112],[3,25],[-2,131],[-1,57],[0,61],[-3,54],[0,33],[0,12],[0,36],[0,10],[0,35],[-3,47],[0,2],[1,21],[2,25],[-3,5],[3,25],[-1,21],[-2,30],[30,22],[0,18],[1,0],[1,1]],[[35247,86862],[-75,-55],[-71,-52],[-2,-5],[-26,-15],[-60,-38],[-34,-16],[-18,-9],[-89,-22],[-39,-8],[-61,-14],[-161,-33],[-106,-24],[-8,-3],[-11,-4],[-83,-48],[-82,-1],[-18,-6],[-28,-8],[-23,-10],[-20,-9],[-55,-19],[-84,-29],[-124,17],[-16,2],[-118,25],[-9,5],[-69,38],[-157,119],[-313,125],[-1,2],[-150,63],[-176,71],[-140,58],[-166,81],[-254,121],[-1,1],[-10,1],[-6,4],[-12,6],[-32,17],[-114,57],[-4,3],[-82,41],[-2,1],[-7,3],[-39,18],[-25,11],[-6,3],[-133,62],[-66,32],[-48,26],[-1,2],[-40,19],[-132,62],[-154,75],[-105,51],[-41,24],[-1,0],[-99,23],[-10,2],[-55,11],[-116,27],[-29,6],[-14,4],[-348,79],[-332,74],[-191,42],[-102,23],[-296,65],[-174,39],[-1,1],[-2,0],[-88,19],[-26,6],[-274,-2],[-67,-17],[-3,-1],[-402,-118],[-101,-30],[-1,0],[-6,-4],[-280,-82],[-5,0],[-388,-111],[-387,-105],[-100,-28],[-20,-4],[-63,-19],[-12,-4],[-25,-8],[-71,-52],[-117,-85],[-1,-1],[-329,-240],[-236,-174],[-38,-27]],[[99429,87722],[-88,-5],[-431,-10],[-222,-5],[-581,-11],[-70,-1],[-509,-7],[-4,0],[-168,-3],[-34,0],[-47,-1],[-329,-6],[-203,-3],[-242,-5],[-278,-6],[-151,-3],[-73,-1],[-285,-5],[-38,0],[-161,-2],[-1,0],[-147,-2],[-104,-2],[-29,0],[-422,-6],[-183,-3],[-288,-5],[-378,-8],[-59,-2],[-147,-2],[-48,0],[-66,-1],[-141,-4],[-57,-2],[-109,-1],[-85,-1],[-240,-5],[-116,-2],[-272,-4],[-112,-2],[-195,-2],[-51,-1],[-240,-2],[-233,-3],[-60,-1],[-73,-1],[-128,-2],[-155,-2],[-222,-3],[-214,0],[-39,5],[-18,-2],[-49,-4],[-258,-3],[-133,-1],[-153,-1],[-147,0],[-179,-1],[-130,-1],[-105,0],[-62,-1],[-242,-3],[-71,-1],[-21,0],[-185,-2],[-121,-1],[-203,-2],[-804,-9],[-21,-1],[-126,-1],[-170,-4]],[[87703,87546],[-6,181],[-4,134],[-2,56],[-6,173],[-6,181],[-3,90],[-1,37],[-2,39],[0,14],[-2,52],[-2,67],[-1,13],[-1,51],[-2,43],[-1,72],[-2,50],[0,27],[1,49],[-1,41],[0,29],[-3,48],[-1,143],[0,20],[4,202],[0,34],[0,73],[1,87],[2,42],[3,43],[3,48],[-4,43],[2,127],[0,2],[5,229],[1,46],[0,14],[3,178],[0,70],[-1,55],[-3,366],[0,99],[-1,57],[-2,218],[-1,92],[-5,226],[-3,39],[0,26],[1,46],[0,35],[2,55],[2,108],[1,56],[-3,15],[-4,18],[0,38],[0,40],[-1,42],[-1,32],[0,17],[0,53],[-1,40],[-1,42],[-1,49],[-1,26],[0,37],[1,31],[-1,52],[0,33],[0,37],[-3,59],[1,28],[0,84],[0,49],[-2,38],[0,42],[0,26],[0,38],[0,45],[-1,121],[-1,45],[0,49],[0,44],[-1,59],[-1,106],[1,63],[0,38],[-1,53],[-1,46],[0,43],[-1,31],[1,53],[-1,48],[0,44],[0,27],[0,39],[0,88],[-1,26],[0,55],[0,59],[-1,42],[1,28],[-1,29]],[[99395,94211],[1,-26],[0,-54],[1,-29],[0,-31],[1,-40],[0,-40],[0,-5],[1,-53],[0,-58],[0,-31],[1,-4],[0,-6],[0,-25],[1,-30],[0,-34],[0,-35],[1,-89],[1,-63],[0,-45],[0,-38],[2,-314],[1,-34],[1,-19],[0,-11],[0,-61],[1,-7],[0,-9],[0,-18],[0,-28],[1,-27],[0,-26],[0,-6],[0,-1],[0,-34],[0,-47],[1,-38],[0,-18],[0,-53],[0,-27],[1,-32],[0,-34],[0,-14],[0,-26],[1,-12],[0,-2],[-1,-51],[0,-25],[0,-37],[0,-58],[1,-49],[-1,-29],[1,-34],[0,-23],[0,-54],[1,-63],[0,-26],[1,-45],[1,-30],[1,-34],[-1,-21],[1,-32],[-1,-38],[1,-7],[0,-43],[-1,-25],[0,-2],[0,-101],[0,-148],[1,-48],[2,-37],[0,-20],[1,-131],[0,-130],[-1,-1],[0,-1],[0,-3],[0,-4],[0,-3],[0,-15],[0,-17],[1,-19],[0,-7],[-2,-3],[-4,-3],[0,-78],[4,-441],[0,-30],[0,-3],[0,-52],[1,-56],[1,-101],[0,-9],[0,-48],[1,-22],[0,-9],[1,-25],[-1,-6],[0,-27],[-1,-12],[1,-26],[0,-6],[-2,-40],[-1,-23],[0,-35],[-1,-42],[1,-32],[0,-19],[0,-28],[0,-7],[0,-61],[0,-30],[0,-10],[0,-12],[-1,-26],[0,-28],[0,-27],[0,-68],[1,-130],[1,-51],[0,-39],[-1,-13],[-1,-63],[0,-12],[0,-2],[0,-36],[3,-110],[4,-131],[-1,-28],[-5,-39],[1,0],[0,-4],[0,-1],[0,-48],[1,-44],[0,-30],[0,-88],[0,-27],[1,-26],[0,-14],[0,-8],[0,-16],[0,-32],[0,-36],[0,-26],[0,-2],[0,-16],[0,-30],[1,-21],[1,-8],[0,-7],[-1,-14],[0,-18],[0,-3],[0,-1],[1,-10],[-1,-35],[1,-15],[0,-7],[0,-8],[0,-3],[0,-3],[0,-9],[0,-7],[0,-10],[1,-9],[1,-55],[-1,-12],[0,-16],[1,-42],[0,-13],[0,-19],[0,-13],[1,-21],[0,-33],[0,-15],[0,-22],[0,-4],[0,-43],[1,-14],[0,-8],[0,-11],[-1,-7],[1,-11],[0,-6],[0,-28],[0,-13],[0,-14],[0,-7],[1,-34],[0,-27],[0,-7],[0,-9],[0,-7],[1,-52],[0,-15],[1,-29],[0,-38],[0,-29],[0,-8],[0,-27]],[[87703,87546],[-60,-1],[-71,-1],[-102,-1],[-88,-1],[-42,0],[-62,-1],[-81,-1],[-79,-1],[-45,0],[-4,0],[-59,-1],[-32,0],[-43,0],[-68,-1],[-34,0],[-96,-1],[-35,0],[-33,0],[-65,0],[-62,0],[-44,-1],[-51,0],[-126,1],[-81,0],[-55,0],[-105,0],[-51,0],[-59,0],[-43,0],[-13,0],[-17,0],[-46,0],[-49,1],[-82,0],[-93,1],[-58,0],[-45,0],[-62,1],[-72,0],[-153,1],[-72,0],[-142,1],[-66,0],[-34,1],[-95,0],[-63,1],[-97,1],[-65,0],[-95,0],[-72,1],[-53,-1],[-129,0],[-43,0]],[[84211,87544],[-166,1],[-60,0],[-46,1],[-60,0],[-62,1],[-32,0],[-109,0],[-49,1],[-47,0],[-69,1],[-39,1],[-40,0],[-139,1],[-92,1],[-102,0],[-59,1],[-95,0],[-48,1],[-7,0],[-37,0],[-64,0],[-44,1],[-33,1],[-32,0],[-50,1],[-37,0],[-65,0],[-59,0],[-191,0],[-93,1],[-167,0],[-61,1],[-87,0],[-244,4],[-5,0],[-91,0],[-30,0],[-33,0],[-123,0],[-35,0],[-101,1],[-87,1],[-40,0],[-57,1],[-54,0],[-34,0],[-74,0],[-71,0],[-39,0],[-50,0],[-140,1],[-60,0],[-65,0],[-223,0],[-94,-1],[-91,1],[-65,1],[-191,0],[-113,1],[-92,1],[-29,0],[-4,0],[-88,1],[-80,0],[-83,1],[-289,2],[-49,1],[-45,0],[-64,0],[-158,2],[-43,1],[-78,0],[-61,1],[-63,0],[-38,0],[-50,1],[-62,1],[-138,1],[-44,1],[-89,2],[-56,1],[-75,2],[-55,1],[-85,1],[-59,2],[-79,1],[-80,2],[-70,0],[-47,1],[-31,-3],[-27,0],[-16,0],[-45,1],[-1,36],[4,31],[1,28],[6,139],[-2,30],[1,48],[3,55],[2,36],[2,58],[3,52],[2,46],[1,48],[1,40],[2,39],[2,43],[-83,1],[-51,0],[-66,0],[-3,0],[-38,1],[-53,0],[-34,0],[-54,0],[-46,0],[-66,1],[-54,-1],[-38,0],[-115,2],[-46,-1],[-57,0],[-75,0],[-103,0],[-32,0],[-119,0],[-118,0],[-43,0],[-73,0],[-40,-1],[-36,0],[-32,0],[-87,1],[-47,-1],[-70,0],[-30,0],[-45,-1],[-44,0],[-101,0],[-89,-1],[-106,0],[-202,0],[-49,-1],[-333,0],[-35,-1],[-223,-3],[-291,-3],[-264,-3]],[[73824,88312],[-1,59],[-4,122],[0,41],[-1,55],[-1,25],[-3,83],[-2,34],[0,39],[0,4],[0,27],[-1,35],[-2,74],[-1,29],[-1,32],[-3,49],[-10,260],[-3,73],[-2,58],[0,164],[-3,118],[-1,33],[0,57],[0,61],[0,59],[0,40],[-1,40],[0,46],[-1,25],[-1,28],[1,33],[-1,65],[0,29],[0,37],[0,57],[-1,38],[0,30],[0,33],[0,34],[0,52],[-1,57],[-1,72],[0,64],[0,44],[-1,40],[0,50],[-1,52],[0,66],[0,76],[0,33],[0,45],[-1,52],[-1,39],[1,26],[0,48],[-1,20],[0,6],[0,36],[0,46],[-2,65],[0,48],[1,37],[1,46],[1,33],[-1,26],[-1,35],[0,78],[2,54],[0,57],[1,32]],[[61534,91847],[5,-51],[2,-187],[2,-146],[1,-30],[3,-187],[1,-182],[0,-150],[0,-27],[0,-186],[3,-274],[0,-46],[0,-42],[2,-90],[3,-273],[2,-139],[0,-41],[1,-126],[1,-46],[2,-186],[6,-179],[2,-71],[5,-114],[8,-273],[8,-238],[1,-33],[6,-184],[6,-210],[-1,-52],[0,-2],[3,-95],[1,-39],[1,-8],[4,-130],[5,-193],[8,-269],[5,-158],[4,-36],[7,-73],[5,-208],[4,-154],[2,-51],[0,-26],[1,-17],[0,-14],[1,-42],[1,-26],[2,-99],[3,-91],[2,-101],[7,-262],[2,-72],[2,-72],[11,-430],[0,-2],[1,-71],[2,-42],[1,-38],[-80,-1],[-51,-1],[-158,-1],[-309,-3],[-112,-1]],[[60978,85256],[-59,-1],[-104,0],[-66,-1],[-133,1],[-107,-2],[-43,0],[-4,0],[-87,0],[-123,-2],[-21,0],[-15,0],[-113,-1],[-236,-2],[-2,0],[-46,-1],[-66,0],[-35,-3],[-35,-2],[-25,3],[-5,1],[-74,0],[-35,0],[-62,-1],[-4,0],[-30,0],[-63,0],[-99,-1],[-129,0],[-54,-1],[-160,0],[-36,-1],[-77,0],[-124,-1],[-44,0],[-81,-1],[-65,0],[-100,0],[-48,0],[-53,0],[-50,0],[-104,0],[-80,0],[-116,0],[-93,1],[-107,0],[-49,0],[-67,0],[-249,1],[-78,0],[-55,0],[-154,1],[-100,0],[-36,0],[-2,0],[-64,0],[-116,0],[-93,0],[-37,-2],[-105,-11],[-38,-2],[-116,0],[-128,2],[-93,0],[-38,2],[-47,6],[-38,5],[-31,0],[-16,0],[-21,0],[-165,0],[-25,0],[-46,0],[-69,1],[-78,-1],[-24,0],[-52,0],[-70,0],[-131,0],[-25,0],[-51,0],[-79,0],[-1,0],[-156,0],[-151,0],[-50,0],[-88,0],[-41,0],[-95,0],[-99,0],[-124,-1],[-41,0],[-44,0],[-53,0],[-25,-1],[-44,0],[-26,0],[-20,0],[-17,0],[-41,-1],[-21,1],[-25,0],[-36,-1],[-3,0],[-2,0],[-30,1],[-102,-1],[-94,0],[-34,0],[-57,-1],[-43,0],[-10,0],[-23,0],[-69,-1],[-12,0],[-88,1],[-59,-1],[-77,0],[-55,-1],[-76,-1],[-39,0],[-20,0],[-34,0],[-76,0],[-58,0],[-31,-1],[-34,0],[-31,0],[-85,0],[-115,-1],[-32,0],[-46,-1],[-59,0],[-68,0],[-85,0],[-40,0],[-124,-1],[-42,1],[-156,-1],[-22,0],[-16,0],[-93,0],[-84,0],[-64,-1],[-55,0],[-57,0],[-44,0],[-106,-1],[-30,-1],[-130,0],[-199,-2],[-129,0],[-49,0],[-71,0],[-37,0],[-25,0],[-6,0],[-76,0],[-32,-1],[-78,0],[-126,-1],[-54,0],[-60,0],[-32,0],[-51,-1],[-48,0],[-104,0],[-92,-1],[-50,0],[-43,0],[-114,-1],[-96,0],[-38,0],[-135,-1],[-159,-1],[-145,0]],[[49222,85220],[1,183],[1,197],[0,171],[1,172],[0,172],[0,158],[-1,42],[4,118],[-1,243],[0,2],[1,74],[3,293],[3,145],[-1,219],[0,92],[0,1],[0,88],[-1,130],[0,5],[0,78],[-1,150],[1,42],[0,139],[0,2],[-1,205],[0,47],[-1,115],[3,195],[2,28],[0,51],[2,174],[0,37],[0,61],[2,223],[0,84],[1,57],[-2,182],[1,149],[1,212],[1,47],[0,29],[1,26],[0,10],[0,16],[1,240],[1,179],[0,90],[0,90],[-1,93],[-1,176],[-3,35],[1,62],[0,93],[-1,60],[-1,26],[0,8],[1,87],[0,1],[-1,54],[-1,37],[0,44],[-3,242],[1,75]],[[73824,88312],[6,-181],[4,-164],[8,-201],[3,-145],[1,-36],[-1,-287],[0,-151],[-1,-95],[0,-50],[-2,-70],[-1,-54],[0,-20],[-1,-27],[-2,-27],[-2,-58],[-4,-112],[0,-71],[0,-49],[-1,-76],[-3,-72],[-4,-89],[-1,-36],[-3,-117],[-5,-183],[0,-1],[-2,-90],[-3,-89],[-1,-27],[-2,-80],[-1,-33],[0,-2],[-1,-25],[0,-27],[-1,-16],[-1,-77],[-2,-77],[-44,0],[-66,0],[-114,1],[-53,0],[-297,1],[-99,-1],[-103,-1],[-41,-1],[-41,-1],[-43,0],[-34,-1],[-87,0],[2,-216],[2,-214],[3,-222],[4,-320],[2,-146],[3,-204],[0,-193],[3,-207],[3,-155],[1,-45],[1,-47],[1,-64],[2,-41],[2,-71],[0,-3],[7,-244],[8,-183],[7,-181],[3,-76],[2,-26],[0,-1],[2,-47],[1,-9],[3,-47],[0,-2],[7,-142],[2,-158],[1,-37]],[[72851,82093],[-502,-26],[-38,-1],[-40,-1],[-30,-1],[-81,-1],[-68,0],[-45,-1],[-126,-1],[-102,-1],[-62,0],[-46,-1],[-40,-1],[-97,0],[-62,-2],[-38,0],[-93,-3],[-86,-4],[-37,0],[-79,-1],[-44,0],[-36,0],[-234,-2],[-48,-1],[-146,-3],[-145,-4],[-76,-1],[-31,0],[-133,-3],[-102,-1],[-61,-1],[-60,0],[-47,-1],[-55,-1],[-44,-1],[-35,-1],[-69,-2],[-44,-2],[-66,-2],[-61,-1],[-67,-2],[-93,-4],[-335,2],[-82,1],[-43,-1],[-38,0],[-78,0],[-134,-1],[-72,0],[-132,-1],[-62,0],[-52,-1],[-53,-1],[-68,0],[-89,-1],[-101,-1],[-150,-1],[-1,0],[-46,-1],[-44,0],[-31,0],[-77,-1],[-44,0],[-124,-1],[-61,-1],[-54,0],[-138,-2],[-50,0],[-37,-1],[-33,-1],[-50,0],[-32,0],[-139,1],[-72,0],[-117,0],[-43,0],[-54,-1],[-32,0],[-117,-1],[-8,0],[-84,0],[-73,-1],[-37,0],[-195,-1],[-41,0],[-36,0],[-32,-1],[-69,0],[-52,-2],[-45,0],[-9,-1],[-73,1],[-41,0],[-49,-1],[-39,-2],[-49,0],[-46,-2],[-53,0],[-52,-1],[-39,1],[-53,1],[-44,1],[-32,1],[-76,2],[-53,0],[-32,0],[-157,1],[-66,0]],[[64962,81997],[-41,0],[-49,0],[-95,0],[-64,0],[-31,0],[-56,-1],[-113,-3],[-42,-1],[-68,0],[-155,-4],[-70,-2],[-92,-1],[-35,-1],[-35,-1],[-66,-1],[-47,-1],[-50,-1],[-56,0],[-103,-1],[-32,0],[-66,-1],[-82,3],[-36,1],[-39,0],[-49,1],[-33,0],[-44,4],[-86,1],[-88,-7],[-42,-1],[-35,-1],[-56,1],[-33,1],[-35,-1],[-47,-2],[-49,-2],[-33,-2],[-53,-2],[0,28],[0,41],[1,49],[0,27],[1,57],[0,2],[0,102],[1,57],[0,10],[0,73],[1,67],[0,42],[0,20],[1,7],[0,8],[0,75],[0,55],[0,43],[1,57],[1,289],[-154,-2],[-145,-3],[-129,-3],[-153,-3],[-126,-2],[-168,-3],[-109,-3],[-171,-2],[-98,-3],[-118,-1],[-151,-3],[-156,-2],[-58,-1],[-1,38],[-1,71],[0,32],[-1,38],[-1,61],[-1,59],[-1,66],[0,44],[0,43],[-2,46],[0,48],[-1,48],[0,38],[-1,49],[-1,43],[-2,45],[0,29],[-3,105],[0,30],[-1,37],[-2,73],[-1,53],[-1,50],[-1,39],[-1,25],[-1,69],[-1,66],[-1,55],[-2,56],[-1,54],[-3,95],[-1,48],[-4,123],[-2,51],[-3,114],[-2,68],[-1,47],[-2,67],[-1,51],[-1,31],[0,1]],[[49222,85220],[-57,0],[-33,0],[-31,1],[-93,0],[-32,1],[-32,0],[-31,0],[-46,1],[-43,1],[-130,0],[-53,0],[-34,0],[-32,0],[-33,0],[-31,0],[-32,0],[-32,0],[-31,0],[-33,0],[-31,0],[-31,1],[-34,0],[-33,0],[-33,0],[-41,0],[-57,1],[-38,0],[-107,1],[-1,0],[-125,1],[-1,0],[-42,0],[-60,0],[-2,0],[-61,1],[-288,1],[-142,1],[-141,0],[-1,0],[-311,2],[-44,-2],[-42,0],[-38,0],[-39,0],[-31,0],[-84,0],[-79,1],[-38,0],[-52,0],[-37,0],[-47,0],[-44,0],[-103,0],[-58,0],[-91,1],[-94,0],[-85,0],[-39,1],[-30,0],[-121,-1],[-78,1],[-36,-1],[-184,0],[-86,0],[-33,1],[-48,0],[-4,0],[-65,0],[-130,1],[-113,0],[-114,0],[-31,0],[-45,0],[-73,-1],[-75,0],[-40,1],[-39,0],[-66,0],[-34,0],[-31,1],[-50,0],[-208,1],[-38,0],[-54,0],[-76,-1],[-64,0],[-100,0],[-51,0],[-68,0],[-87,0],[-44,0],[-37,0],[-103,0],[-33,0],[-71,0],[-78,0],[-67,0],[-57,1],[-53,-1],[-123,1],[-57,0],[-43,0],[-53,-1],[-70,1],[-70,0],[-48,0],[-91,0],[-100,0],[-51,1],[-104,-1],[-94,0],[-41,0],[-51,-1],[-55,0],[-75,-1],[-51,0],[-51,0],[-62,-1],[-92,0],[-51,0],[-41,1],[-103,0],[-31,0],[-37,0],[-55,1],[-47,0],[-59,0],[-72,0],[-67,0],[-62,0],[-60,0],[-79,0],[-34,1],[-51,-1],[-65,0],[-73,-1],[-72,1],[-31,0],[-31,-1],[-55,-1],[-65,-2],[-52,-1],[-58,-1],[-43,-1],[-59,-1],[-109,-2],[-75,-2],[-11,0],[-22,0],[-51,-2],[-159,-5],[-459,3],[-483,14],[-143,0],[-34,0],[-116,0],[-56,-1],[-91,0],[-140,1],[-115,0],[-31,0],[-62,0],[-41,1],[-52,0],[-47,0],[-99,1],[-133,1],[-127,0],[-73,0],[-90,0],[-127,0],[-32,0],[-65,0],[-65,0],[-64,1],[-51,0],[-37,0],[-192,0],[-113,1],[-83,0],[-40,0],[-6,0],[-61,0],[-47,0],[-116,0],[-61,0],[-38,0],[-59,0],[-53,1],[-87,0],[-50,0],[-84,0],[-69,0],[-100,1],[-54,0],[-83,-1],[-53,0],[-105,1],[-50,1]],[[35244,85242],[-3,32],[1,49],[0,99],[2,179],[0,1],[1,176],[0,103],[0,84],[1,173],[0,41],[4,322],[1,51],[0,136],[-2,80],[2,29],[-4,65]],[[84211,87544],[-41,-330],[-13,-24],[-6,-76],[7,-298],[1,-16],[-4,-33],[-9,-87],[1,-37],[3,-79],[5,-170],[-3,-186],[1,-31],[-1,-19],[-1,-22],[7,-73],[-2,-65],[-7,-374],[0,-67],[0,-6],[0,-135],[-489,-2],[-146,0],[-84,0],[-147,-2],[3,-34],[0,-18],[1,-106],[1,-255],[1,-291],[15,-137],[1,-56],[0,-55],[0,-103],[1,-105],[4,-167],[0,-1],[0,-27],[8,-138],[0,-35],[0,-124],[0,-4],[-3,-47],[6,-181],[0,-98],[0,-260],[6,-136],[0,-1],[0,-44],[2,-27],[1,-41],[0,-28],[0,-92],[1,-5],[8,-286],[3,-107],[3,-133],[3,-126],[4,-131],[12,-187],[0,-5],[3,-45],[3,-78],[1,-64],[2,-69],[0,-63],[0,-80],[1,-40],[1,-43],[1,-42],[3,-63],[0,-57],[0,-5],[-8,-118]],[[83371,81054],[-208,-1],[-33,0],[-35,0],[-32,0],[-14,0],[-19,0],[-42,-1],[-41,0],[-91,0],[-64,0],[-39,0],[-38,0],[-84,0],[-168,0],[-50,0],[-81,1],[-133,0],[-31,0],[-99,0],[-43,0],[-52,0],[-50,0],[-42,0],[-44,0],[-67,0],[-37,0],[-59,0],[-96,0],[-208,0],[-72,1],[-50,0],[-95,0],[-97,0],[-51,0],[-72,0],[-86,0],[-41,0],[-85,0],[-41,0],[-78,0],[-174,-1],[-76,1],[-80,0],[-31,0],[-36,0],[-35,0],[-30,0],[-50,0],[-79,0],[-48,0],[-110,0],[-243,-8],[-54,-1],[-148,-5],[-137,-5],[-11,0],[-120,-2],[-61,0],[-51,-1],[-61,-1],[-34,0],[-128,-2],[-95,-1],[-4,0],[-41,-1],[-136,-1],[-92,-1],[-65,-1],[-113,-1],[-128,-2],[-41,0],[-148,-2],[-145,-2],[-74,-1],[-44,0],[-10,0],[-121,-2],[-56,-1],[-172,-2],[-60,0],[-50,-1],[-13,0],[-130,-2],[-143,-1],[-273,-4],[-13,0],[-140,-2],[-103,-2],[-120,-1],[-95,0],[-24,-1],[-44,0],[-200,-1],[-100,-1],[-146,-2],[-146,-1],[-60,0],[-38,-1],[-199,-1],[-141,-1],[-134,-1],[-152,-2],[-141,-1],[-185,-1],[-106,-1],[-212,-2],[-85,-1]],[[74068,80980],[-52,0],[-105,-1],[-80,0],[-50,-1],[-73,-1],[-117,0],[-120,-1],[-96,-1],[-118,-2],[-81,-1],[-41,0],[-144,-1],[-110,-1],[-1,46],[-1,33],[-2,40],[-1,35],[-1,28],[-5,184],[-7,296],[-3,93],[-2,64],[-1,36],[-1,38],[-1,35],[-4,195]],[[35244,85242],[-4,-36],[-1,-224],[-1,-90],[1,-48],[3,-118],[0,-18],[-5,-114],[-1,-87],[2,-179],[2,-93],[0,-56],[-1,-34],[1,-25],[-1,-30],[-1,-27],[-2,-59],[0,-27],[-2,-63],[0,-27],[0,-32],[0,-60],[0,-66],[1,-35],[0,-55],[0,-26],[-1,-33],[-1,-64],[1,-86],[-1,-163],[-1,-48],[0,-89],[0,-64],[-1,-47],[0,-63],[0,-56],[0,-109],[0,-54],[-1,-78],[0,-46],[1,-27],[0,-30],[0,-45],[-1,-63],[1,-55],[0,-59],[-1,-126],[-1,-77],[-1,-77],[0,-98],[-1,-58],[0,-62],[0,-31],[0,-140],[-1,-61],[1,-74],[0,-49],[-1,-41],[1,-45],[-1,-155],[-1,-55],[-1,-59],[0,-34],[0,-35],[0,-37],[-1,-96],[0,-28],[0,-26],[0,-44],[-1,-109],[0,-53],[0,-54],[0,-73],[0,-114],[-1,-29],[0,-41],[-1,-104],[0,-77],[-1,-71],[1,-31],[-1,-131],[0,-71],[0,-63],[0,-48],[1,-33],[1,-93],[0,-37],[0,-42],[0,-52],[0,-45],[0,-33],[0,-56],[0,-100],[0,-2],[1,-102],[1,-48],[1,-48],[0,-65],[1,-117],[1,-82],[1,-75]],[[35227,78727],[-327,1],[-263,-2],[-273,-3],[-435,0],[-80,0],[-209,0],[-127,-1],[2,-256],[0,-1],[1,-143],[1,-86],[0,-1],[3,-276],[4,-169],[-1,-31],[3,-165],[0,-19],[2,-150],[3,-106],[3,-88],[7,-371],[-144,1],[-29,0],[-232,0],[-175,-1],[-230,2],[-331,-1],[-44,0],[-109,0],[-12,0],[-377,-1],[-603,-2],[-295,-2],[-257,-2],[-418,-1],[-160,-1],[4,-192],[-2,-171],[-1,-177],[-1,-172],[8,-361],[-2,-53],[10,-315],[19,-361],[-1,-160],[0,-1],[0,-232],[6,-183],[0,-28],[0,-3],[0,-31],[-4,-94]],[[30161,74318],[-516,0],[-56,2],[-226,0],[-295,-1],[-57,3],[-368,0],[-142,0],[-193,-1],[-1,0],[-388,0],[-582,-2],[-575,-1],[-579,-1],[-148,1],[-430,1],[-88,-1],[-239,0],[-145,0],[-65,0]],[[25068,74318],[3,339],[0,26],[-3,279],[0,19],[0,13],[0,56],[-3,365],[-3,362],[-4,366],[-4,159],[0,171],[0,176],[0,184],[-1,185],[0,1],[-3,181],[-1,202],[0,32],[0,127],[0,1],[-1,156],[-1,72],[-4,277],[-11,218],[-2,37],[-14,382],[-227,-1],[0,163],[-1,201],[2,364],[0,1],[1,365],[0,272],[4,36],[0,2],[3,45],[-4,79],[1,90],[3,114],[7,90],[-4,360],[5,38],[1,137],[0,187],[0,1],[0,61],[-1,235],[0,85],[1,169],[2,177],[0,80],[1,119],[0,75],[2,471],[0,64],[0,301],[0,87],[1,121],[0,102],[1,61],[-1,189],[0,47],[1,121],[2,244],[-1,117],[0,49],[1,133],[0,182],[0,1],[1,56],[0,45],[0,59],[1,35],[-1,99],[0,37],[1,35],[0,50],[1,41],[1,80],[1,62],[2,48],[1,35],[-1,56],[-4,61],[2,176],[1,121],[-2,118],[-1,68],[0,1],[-1,98],[-2,168],[0,125],[0,42],[0,67],[0,82]],[[99449,78981],[-30,0],[-63,-1],[-82,-2],[-102,-2],[-70,-1],[-69,-1],[-50,-1],[-51,-1],[-98,-2],[-63,-2],[-83,-2],[-78,-1],[-55,-2],[-76,-1],[-55,-2],[-58,-1],[-62,-1],[-56,-1],[-69,-2],[-102,-2],[-54,-1],[-43,-1],[-48,-1],[-41,-1],[-46,-1],[-172,-3],[-2,0],[-105,-3],[-86,-2],[-43,0],[-55,-1],[-30,-1],[-40,-1],[-101,-2],[-40,0],[-79,-2],[-44,0],[-43,-1],[-32,-1],[-71,-1],[-34,0],[-36,-1],[-42,0],[-46,0],[-45,-1],[-99,-1],[-54,0],[-54,0],[-69,0],[-53,0],[-38,-1],[-51,0],[-100,1],[-71,-1],[-58,-1],[-110,-1],[-37,0],[-39,0],[-46,-1],[-46,-1],[-76,0],[-85,-2],[-39,-1],[-39,-1],[-37,-2],[-91,-2],[-58,-2],[-36,-1],[-71,-1],[-54,-1],[-81,-2],[-74,0],[-70,0],[-100,1],[-67,1],[-35,0],[-77,-2],[-52,0],[-57,-2],[-169,-3],[-53,-1],[-81,-1],[-29,-1],[-24,0],[-36,-1],[-60,0],[-122,-1],[-96,-1],[-37,-1],[-44,-1],[-54,-2],[-43,-1],[-36,-1],[-55,-2],[-58,-2],[-46,-1],[-49,0],[-47,-1],[-55,-1],[-49,-1],[-69,0],[-63,-1],[-84,0],[-70,-1],[-36,-2],[-4,0],[-39,0],[-57,1],[-42,-1],[-70,-1],[-40,-1],[-45,-1],[-49,-1],[-51,0],[-44,-1],[-97,-1],[-76,-1],[-40,0],[-38,0],[-27,0],[-21,0],[-39,0],[-49,0],[-45,-1],[-66,-1],[-51,0],[-46,-1],[-39,0],[-42,-1],[-34,0],[-147,1],[-151,-5],[-47,0],[-38,0],[-33,0],[-125,0],[-47,0]],[[91271,78863],[-64,-1],[-130,-1],[-50,-1],[-49,0],[-60,0],[-224,-2],[-68,-1],[-194,-4],[-165,-2],[-42,0],[-36,-1],[-199,0],[-154,0],[-132,0],[-51,0],[-30,0],[-91,-1],[-46,0],[-36,0],[-79,0],[-44,-1],[-52,0],[-42,-1],[-164,-2],[-32,0],[-75,-2],[-31,0],[-62,-1],[-64,-2],[-57,-1],[-34,-1],[-167,-4],[-88,-2],[-2,-1],[-32,0],[-43,-1],[-41,0],[-30,-1],[-67,0],[-110,-1],[-2,0],[-101,0],[-89,0],[-82,0],[-56,0],[-73,0],[-113,1],[-132,1],[-47,0],[-120,1],[-208,4],[-84,2],[-53,1],[-102,1],[-118,2],[-71,1],[-66,0],[-99,0],[-105,1],[-40,0],[-41,0],[-72,0],[-75,0],[-47,1],[-112,0],[-83,0],[-170,-1],[-110,0],[-69,0],[-165,0],[-34,0],[-49,0],[-46,0],[-87,0],[-99,0],[-40,0],[-45,0],[-32,0],[-32,0],[-41,0],[-54,0],[-44,0],[-34,0],[-50,0],[-108,0],[-40,0],[-34,0],[-60,-1],[-50,0],[-31,0],[-138,0],[-72,0],[-52,0],[-53,0],[-44,0],[-82,1],[-110,0],[-40,0],[-44,1],[-13,-1],[-88,-2],[-6,0],[-186,3],[-79,0],[-53,0]],[[83359,78844],[0,42],[0,34],[-1,32],[0,36],[0,30],[2,106],[0,29],[1,52],[0,82],[6,163],[3,87],[2,31],[-1,7],[-2,22],[0,26],[0,32],[0,25],[0,25],[0,56],[0,138],[0,45],[0,31],[0,28],[1,110],[0,119],[1,62],[2,94],[-1,42],[1,46],[5,259],[1,66],[0,6],[-3,50],[-1,20],[-5,114],[1,63]],[[99429,87722],[0,-3],[0,-2],[0,-27],[0,-10],[0,-18],[1,-25],[0,-48],[0,-7],[0,-10],[0,-15],[0,-24],[0,-8],[0,-16],[0,-35],[0,-17],[0,-4],[1,-13],[0,-7],[0,-10],[-1,-14],[0,-5],[0,-15],[1,-14],[0,-13],[0,-10],[0,-13],[0,-13],[0,-25],[0,-9],[0,-7],[-1,-32],[0,-6],[1,-70],[0,-43],[0,-15],[0,-8],[0,-29],[0,-71],[0,-26],[0,-35],[0,-26],[1,-69],[-1,-32],[0,-39],[1,-68],[0,-39],[0,-57],[0,-39],[0,-27],[0,-3],[-1,-47],[0,-56],[0,-14],[0,-30],[-1,-34],[0,-103],[1,-43],[1,-44],[-1,-55],[0,-76],[0,-58],[1,-100],[0,-4],[0,-26],[0,-95],[1,-31],[0,-42],[2,-136],[0,-35],[-1,-35],[0,-66],[-1,-30],[1,-30],[0,-56],[-1,-5],[-1,-25],[-3,-8],[0,-5],[1,-11],[1,-26],[0,-9],[1,-38],[1,-43],[1,-84],[0,-9],[-1,-2],[-2,-15],[0,-56],[0,-82],[0,-42],[1,-120],[0,-52],[0,-28],[0,-1],[0,-48],[0,-34],[0,-26],[0,-35],[0,-25],[0,-39],[0,-2],[0,-91],[0,-17],[0,-75],[0,-60],[0,-82],[0,-26],[0,-28],[0,-7],[0,-59],[0,-34],[0,-30],[1,-63],[0,-64],[1,-46],[0,-34],[0,-114],[0,-17],[1,-107],[0,-58],[0,-27],[0,-38],[0,-19],[1,-77],[0,-36],[0,-42],[0,-42],[0,-56],[0,-38],[0,-34],[0,-46],[0,-35],[0,-9],[0,-41],[0,-7],[1,-8],[0,-3],[0,-33],[0,-28],[0,-39],[0,-28],[0,-31],[0,-6],[0,-89],[0,-65],[1,-29],[0,-31],[0,-43],[0,-58],[0,-46],[1,-44],[0,-31],[0,-20],[0,-26],[0,-24],[1,-25],[0,-47],[0,-37],[0,-60],[0,-36],[0,-30],[0,-73],[1,-10],[0,-62],[0,-4],[0,-55],[0,-73],[0,-30],[0,-28],[0,-17],[0,-10],[-1,-82],[-1,-56],[-1,-47],[0,-20],[0,-20],[0,-23],[0,-64],[0,-41],[0,-19],[0,-9],[0,-3],[0,-17],[0,-36],[0,-3],[0,-33],[0,-31],[0,-16],[0,-54],[0,-43],[0,-50],[-5,-43],[-2,-9],[0,-2],[-1,-5],[-2,-12],[7,-22],[3,-10],[2,-50],[0,-66],[0,-9],[-1,-45],[0,-30],[0,-39],[1,-137],[0,-66],[1,-66],[0,-27],[0,-24],[0,-94],[0,-40],[0,-16],[1,-14],[0,-14],[0,-48],[0,-33],[1,-33],[-1,-30],[0,-4],[0,-47],[1,-70],[0,-46],[1,-54],[0,-1],[0,-9],[0,-4],[0,-7],[0,-13],[0,-31],[0,-27],[1,-34],[0,-36],[1,-33],[0,-10],[0,-27],[-1,-25],[0,-29],[0,-33],[1,-24],[0,-27],[0,-1],[0,-24],[1,-44],[0,-32],[1,-27],[0,-42],[1,-19],[0,-52],[0,-81],[0,-34],[0,-13],[0,-5]],[[25068,74318],[-287,2],[-291,-3],[-289,0],[-291,2],[-568,1],[-3,0],[-580,0],[-334,-1],[-29,0],[-19,0],[-45,0],[-147,0],[-367,-2],[-208,-1],[-111,1],[-466,2],[-249,1],[-331,2],[-195,0],[-93,0],[-291,1],[-315,1],[-47,0],[-105,0],[-106,0],[-432,5],[-141,0],[-426,-1],[-1,0],[-256,1],[-125,0],[-1,0],[-197,0],[-44,0],[-419,0]],[[17259,74329],[0,5],[0,17],[0,31],[1,55],[0,59],[1,85],[0,54],[0,13],[0,4],[0,38],[-1,119],[1,55],[0,107],[0,101],[0,27],[0,6],[0,43],[0,1],[0,2],[0,37],[0,8],[0,19],[0,31],[0,27],[0,6],[0,12],[0,9],[1,32],[0,10],[0,13],[1,64],[0,17],[1,28],[0,27],[0,11],[1,48],[0,34],[0,51],[0,46],[-1,3],[1,13],[-1,51],[0,28],[0,2],[0,14],[0,47],[0,90],[0,29],[0,22],[0,23],[1,26],[0,32],[1,31],[0,14],[0,27],[0,5],[0,41],[1,25],[0,12],[0,22],[1,3],[0,60],[0,41],[1,56],[0,53],[1,45],[1,100],[0,86],[0,77],[0,23],[0,15],[0,9],[0,8],[-1,38],[0,152],[-1,78],[0,27],[-1,48],[-1,59],[-1,19],[0,23],[0,4],[-2,5],[-2,272],[1,223],[-1,44],[-2,104],[1,6],[-13,353],[12,3],[2,8],[0,28],[0,26],[0,59],[-1,37],[-1,37],[1,75],[0,59],[0,26],[-1,4],[-2,82],[0,45],[1,138],[0,57],[-1,90],[0,48],[0,58],[0,54],[0,46],[-1,109],[0,63],[1,120],[0,45],[0,55],[1,18],[1,47],[0,4],[0,11],[0,36],[0,30],[0,45],[0,28],[0,47],[0,57],[0,53],[0,38],[0,27],[1,16],[-1,100],[0,61],[0,38],[-1,17],[0,6],[-1,9],[-1,9],[0,10],[0,72],[0,51],[-1,50],[0,39],[-1,48],[0,28],[-1,43],[-1,73],[0,28],[-1,109],[0,34],[0,52],[0,14],[0,45],[0,47],[0,19],[0,12],[1,13],[0,10],[0,9],[1,20],[1,18],[-1,1],[-3,96],[-1,87],[-4,179],[2,3],[-1,65],[0,43],[2,257],[0,89],[0,131],[1,234],[-3,95],[-2,1],[3,31],[-1,438],[-1,77],[0,27],[0,67],[0,1],[2,1],[0,44],[-1,17],[0,38],[-3,86],[1,97],[0,81],[-1,36],[-2,71],[-1,26],[1,128],[1,83],[-4,156],[1,89],[2,142],[-2,224],[0,177],[0,86],[0,58],[0,2],[0,36],[0,61],[1,92],[1,47],[1,17],[1,25],[-2,61]],[[64962,81997],[-1,-39],[0,-28],[1,-28],[0,-30],[-1,-35],[0,-33],[0,-28],[0,-45],[0,-27],[1,-26],[-1,-32],[0,-36],[0,-58],[-2,-43],[0,-33],[1,-36],[2,-57],[0,-27],[-2,-68],[1,-40],[2,-29],[1,-27],[0,-34],[1,-34],[0,-37],[2,-29],[0,-29],[-1,-16],[0,-9],[1,-25],[0,-37],[0,-38],[-33,-1]],[[64934,80903],[-33,-1],[-89,0],[-73,-1],[-44,0],[-49,1],[-139,-2],[-81,-1],[-74,1],[-36,0],[-90,-1],[-68,-2],[-122,0],[-55,-1],[-78,0],[-90,-1],[-49,-1],[-132,-2],[-37,0],[-75,-2],[-33,0],[-35,-1],[-75,-1],[-55,-1],[-89,-1],[-40,-1],[-95,-1],[-49,-1],[-37,-1],[-65,0],[-81,-2],[-85,0],[-36,0],[-1,0],[-98,-2],[-45,0],[-33,-1],[-54,0],[-107,-2],[-39,0],[-66,0],[-133,-2],[-67,0],[-44,-1],[-36,-1],[-140,-2],[-87,-1],[-205,-6],[-340,-3],[-241,-5],[-391,-11],[-199,2],[-213,-5],[-2,0],[-113,-2],[-55,-3],[-41,-1],[-43,-1],[-39,-1],[-72,-1],[-77,-1],[-33,-1],[-55,0],[-66,-1],[-63,-2],[-108,-1],[-44,0],[-579,-1],[-161,1],[-334,-1],[-61,1],[-26,0],[0,-165],[-3,-134],[-2,-49],[-9,-454],[-2,-107],[0,-30],[-1,-29],[-1,-81],[1,-170],[1,-42],[-2,-188],[1,-37],[0,-56],[0,-37],[-3,-45],[3,-366],[0,-107],[1,-33],[0,-37]],[[58218,78658],[-971,-10],[-172,-2],[-50,0],[-117,-1],[-54,0],[-140,0],[-213,-1],[-44,0],[-90,0],[-365,-1],[-50,0],[-45,0],[-147,1],[-83,0],[-53,1],[-96,1],[-39,0],[-64,0],[-37,1],[-97,0],[-51,0],[-56,5],[-34,0],[-56,-1],[-43,-1],[-194,1],[-55,1],[-45,0],[-15,0],[-42,0],[-65,0],[-47,0],[-96,0],[-33,-2],[-90,0],[-86,0],[-89,0],[-84,0],[-68,0],[-79,0],[-89,0],[-39,1],[-96,0],[-48,0],[-53,0],[-49,1],[-43,-1],[-74,0],[-46,0],[-61,0],[-38,3],[-71,4],[-96,-1],[-356,-5],[-33,0],[-60,0],[-56,0],[-77,1],[-95,0],[-50,0],[-62,0],[-31,0],[-61,0],[-63,0],[-31,0],[-70,0],[-45,0],[-36,0],[-43,0],[-1,0],[-74,0],[-74,0],[-115,0],[-172,0],[-40,0],[-94,0],[-116,0],[-108,0],[-72,0],[-35,0],[-107,0],[-140,0],[-201,0],[-76,0],[-55,0],[-88,0],[-157,0],[-82,1],[-67,-1],[-220,0],[-181,1],[-38,0],[-70,1],[-112,1],[-41,1],[-49,0],[-39,1],[-50,2],[-105,3],[-34,1]],[[49178,78664],[2,98],[2,79],[7,192],[0,92],[0,33],[1,43],[0,27],[0,30],[0,132],[0,27],[0,101],[0,27],[0,26],[1,30],[0,31],[0,35],[0,56],[1,34],[0,28],[-1,65],[0,36],[1,60],[1,51],[0,30],[0,33],[0,40],[0,25],[0,29],[1,27],[0,34],[1,64],[0,37],[0,49],[0,63],[0,70],[1,31],[-1,26],[0,31],[0,78],[0,83],[0,26],[1,32],[0,37],[0,47],[1,33],[0,49],[1,57],[-3,105],[8,280],[0,46],[0,83],[0,32],[0,50],[1,59],[1,51],[0,25],[1,33],[0,31],[0,54],[0,25],[1,25],[-8,30],[1,128],[1,131],[5,92],[0,3],[2,51],[1,34],[2,77],[0,27],[2,79],[-2,56],[-3,49],[0,66],[0,60],[0,14],[0,65],[1,63],[0,29],[8,27],[0,27],[0,40],[-1,33],[1,36],[0,31],[0,34],[0,28],[0,40],[0,30],[-6,73],[1,30],[0,180],[5,172],[1,73],[0,61],[0,61],[0,54],[1,26],[-1,48],[0,42],[0,37],[-1,74],[0,105],[1,148],[2,183],[1,119],[0,59],[1,140],[0,16],[0,48],[0,164]],[[49178,78664],[-45,-1],[-69,-1],[-98,1],[-1,0],[-65,-3],[-167,1],[-53,0],[-67,1],[-299,-3],[-87,5],[-40,1],[-161,0],[-112,1],[-106,1],[-83,1],[-210,1],[-23,1],[-8,0],[-42,0],[-59,0],[-36,1],[-54,1],[-34,0],[-63,1],[-33,0],[-45,0],[-51,1],[-73,1],[-44,0],[-54,1],[-31,0],[-59,1],[-49,0],[-102,2],[-90,1],[-84,1],[-48,1],[-47,0],[-39,1],[-59,0],[-58,1],[-92,1],[-76,1],[-70,1],[-151,2],[-33,0],[-41,1]],[[45767,78690],[-33,0],[-38,0],[-58,1],[-95,1],[-114,1],[-76,1],[-101,1],[-75,0],[-39,1],[-46,1],[-89,0],[-166,2],[-78,1],[-52,1],[-2,0],[-106,1],[-65,0],[-149,2],[-1,0],[-55,1],[-102,1],[-215,2],[-56,0],[-36,1],[-118,1],[-78,0],[-111,1],[-117,1],[-35,1],[-56,0],[-1,0],[-143,1],[-31,0],[-104,1],[-67,0],[-115,1],[-114,1],[-127,1],[-217,2],[-196,2],[-90,1],[-103,0],[-64,-1],[-51,0],[-84,0],[-35,-1],[-15,0],[-26,0],[-47,-1],[-124,0],[-37,0],[-40,1],[-101,1],[-70,0],[-134,1],[-109,-1],[-84,0],[-31,0],[-45,1],[-32,0],[-83,0],[-48,0],[-53,0],[-31,0],[-107,1],[-32,1],[-31,0],[-115,0],[-36,0],[-73,0],[-72,1],[-132,0],[-50,0],[-77,1],[-65,1],[-61,0],[-6,0],[-43,0],[-34,0],[-112,0],[-88,0],[-38,0],[-118,1],[-152,0],[-131,0],[-90,0],[-29,0],[-7,0],[-277,0],[-60,0],[-34,0],[-57,0],[-85,0],[-1,0],[-111,0],[-37,0],[-89,0],[-101,-1],[-63,0],[-38,1],[-51,0],[-153,0],[-74,-1],[-82,0],[-110,0],[-70,0],[-48,0],[-145,0],[-44,0],[-2,0],[-60,0],[-152,0],[-133,0],[-83,0],[-73,-1],[-14,0],[-42,1],[-28,0],[-15,0],[-76,0],[-70,0],[-34,0],[-48,0],[-31,0],[-63,0],[-31,-1],[-121,1],[-141,0],[-67,-1],[-73,0],[-104,0],[-70,0],[-172,0],[-75,0],[-53,0],[-118,0],[-70,0],[-78,0]],[[74068,80980],[0,-2],[1,-40],[1,-104],[2,-116],[0,-37],[0,-50],[1,-47],[0,-77],[0,-65],[2,-82],[1,-34],[1,-66],[2,-74],[3,-75],[2,-87],[2,-89],[1,-31],[2,-101],[1,-43],[0,-26],[1,-33],[0,-3],[0,-42],[1,-58],[1,-27],[1,-55],[2,-55],[1,-36],[2,-37],[1,-39],[3,-78],[2,-122],[2,-91],[1,-29],[1,-47],[1,-50],[2,-44],[0,-39],[0,-38],[2,-25],[0,-1],[10,-45],[0,-26],[0,-36],[0,-30],[1,-42],[0,-38],[0,-35],[2,-90],[1,-30],[0,-30],[1,-33],[2,-35],[2,-46],[0,-28],[0,-68],[0,-29],[1,-31],[1,-35],[0,-31],[1,-30],[0,-45],[2,-69],[0,-26],[2,-48],[1,-61],[1,-29],[0,-28],[2,-30],[0,-27],[1,-39],[0,-30],[2,-40],[2,-36],[0,-50],[-1,-30],[1,-47],[1,-69],[1,-36],[1,-26],[0,-24],[0,-5],[1,-38],[2,-28],[0,-5],[-2,-24],[-25,-17],[0,-6],[1,-22],[2,-60],[4,-238],[7,-193],[2,-199],[0,-84],[1,-65],[4,-219],[3,-142],[6,-320],[0,-18],[2,-74],[0,-3],[2,-66],[2,-97],[2,-34],[2,-27],[1,-28],[1,-19],[0,-9],[2,-25],[10,-283],[-4,-35],[1,-55],[-1,-31],[2,-68],[1,-34],[1,-54],[1,-30],[3,-123],[1,-31],[-5,-25],[1,-41],[0,-62],[1,-33],[0,-27],[2,-30],[0,-46],[0,-26],[1,-52],[1,-27],[0,-42],[0,-41],[1,-52],[0,-27],[1,-52],[0,-36],[1,-60],[1,-56],[0,-31],[1,-73],[2,-81],[3,-180],[10,-363],[8,-288],[2,-76],[1,-33],[1,-33],[3,-120],[0,-57],[1,-29],[3,-92]],[[74227,72227],[-40,0],[-55,-1],[-170,-1],[-44,0],[-50,0],[-46,0],[-40,0],[-38,-1],[-93,0],[-31,0],[-78,-1],[-57,0],[-85,-1],[-33,0],[-57,-1],[-39,0],[-136,-1],[-89,-1],[-72,0],[-31,0],[-83,0],[-33,0],[-31,-1],[-88,-1],[-62,0],[-42,0],[-42,-1],[-40,0],[-51,0],[-41,0],[-62,0],[-33,0],[-45,0],[-51,-1],[-57,1],[-4,0],[-66,0],[-42,0],[-33,0],[-1,0],[-90,1],[-71,-1],[-50,-1],[-80,-1],[-96,0],[-76,-1],[-48,1],[-41,0],[-38,-1],[-116,1],[-55,-1],[-44,0],[-41,0],[-100,-5],[-33,3],[-93,-1],[-36,-1],[-37,0],[-105,0],[-15,0],[-25,0],[-44,-8],[-32,-1],[-52,0],[-39,5],[-110,3],[-41,0],[-31,0],[-45,-1],[-64,0],[-84,0],[-134,2],[-98,-1],[-58,0],[-71,-1],[-62,-1],[-32,0],[-48,-1],[-95,-1],[-125,-1],[-355,-2],[-66,0],[-77,0],[-94,0],[-212,-2],[-41,0],[-36,0],[-47,0],[-230,-2],[-48,0],[-32,0],[-30,-3],[-33,-2],[-84,-2],[-53,-1],[-65,0],[-33,0],[-75,-3],[-106,-2],[-75,-1],[-42,0],[-43,2],[-32,2],[-35,2],[-57,3],[-37,0],[-44,0]],[[67399,72192],[-34,0],[-91,-1],[-69,-1],[-32,1],[-53,-1],[-578,-6],[-248,-4],[-575,-2],[-575,-4],[-1,50],[0,77],[-5,180],[-2,56],[-3,106],[-2,62],[0,47],[0,36],[0,52],[0,44],[-1,51],[-1,52],[-1,38],[0,37],[-5,56],[-1,51],[-1,50],[-1,34],[-2,32],[-1,45],[0,32],[-2,102],[-1,31],[-1,31],[0,28],[-1,34],[-1,29],[0,4],[-1,51],[0,22],[-1,29],[0,36],[-1,16],[0,19],[-3,128],[-1,51],[-4,196],[-3,168],[2,277],[-2,112],[-2,31],[0,32],[-3,62],[-2,59],[1,41],[-2,30],[-1,40],[-2,44],[0,28],[0,31],[-1,26],[-4,25],[-5,28],[10,30],[0,15],[1,70],[1,26],[0,33],[1,31],[2,67],[-3,50],[-3,154],[-2,90],[-3,74],[-2,64],[-1,26],[-3,83],[-3,61],[0,29],[0,2],[-1,25],[-2,54],[-3,156],[-1,37],[-3,118],[-4,216],[-2,109],[-2,41],[-1,48],[-1,36],[-2,85],[-1,36],[0,40],[-2,30],[0,49],[-1,40],[-4,147],[-1,36],[-1,45],[-1,33],[-2,52],[0,31],[-2,51],[-1,38],[-1,78],[0,30],[-2,41],[-1,25],[0,10],[0,33],[-3,80],[-1,43],[-1,26],[-2,62],[0,42],[-2,33],[0,31],[-1,29],[-2,37],[0,51],[-2,85],[-1,29],[-1,59],[-1,27],[-1,28],[0,26],[-1,35],[-1,86],[-1,57],[-1,16],[-1,15],[1,39],[-1,29],[0,50],[0,49],[-2,55],[-1,32],[0,26],[-2,46],[0,29],[-2,35],[-2,52],[-2,40],[-2,44],[-3,69],[-1,30],[-1,47],[0,30],[-2,45],[-1,26],[-2,43],[-2,91],[-3,44],[-2,57],[0,26],[-3,47],[-1,31],[-4,70],[-1,51],[-1,31],[-2,29],[-1,50],[-2,58],[-2,30],[-2,73],[-1,34],[-3,64],[-3,61],[-1,61],[-1,35],[-3,38],[0,42],[-1,29],[-2,28],[-2,62],[-2,99],[-2,29],[-2,42]],[[83359,78844],[1,-84],[1,-45],[1,-28],[0,-34],[0,-45],[1,-30],[-2,-29],[0,-30],[0,-8],[2,-29],[0,-26],[1,-44],[1,-40],[1,-55],[4,-174],[-1,-182],[2,-90],[0,-25],[2,-81],[0,-64],[4,-290],[-2,-84],[-2,-77],[-1,-25],[-1,-115],[-1,-71],[1,-70],[1,-46],[1,-63],[1,-53],[0,-43],[1,-28],[0,-31],[2,-42],[-1,-25],[0,-4],[0,-11],[-1,-46],[0,-27],[0,-30],[0,-25],[0,-15],[0,-15],[0,-34],[0,-34],[0,-10],[0,-17],[0,-47],[1,-190],[1,-61],[0,-78],[0,-68],[1,-48],[0,-44],[0,-46],[0,-41],[0,-1],[0,-26],[1,-94],[0,-68],[0,-25],[0,-60],[1,-95],[0,-58],[1,-64],[1,-74],[3,-174],[1,-92],[0,-99],[0,-39],[2,-239],[1,-83],[0,-17],[-2,-146],[-1,-89],[0,-63],[1,-74],[4,-205],[2,-152],[1,-172],[0,-69],[0,-119],[1,-72],[0,-74],[0,-2],[0,-37],[0,-58],[0,-93],[0,-26],[1,-62],[1,-113],[0,-95],[0,-95],[2,-90],[0,-46],[1,-48],[1,-48],[-1,-63],[0,-68],[-72,2],[-142,5],[-60,2],[-12,0],[-218,-1],[-70,0],[-50,-1],[-13,0],[-70,-1],[-62,0],[-74,-1],[-297,-5],[-1,0],[-457,-8],[-71,-1],[-36,0],[-33,-1],[-70,-1],[-33,0],[-13,-1],[-35,0],[-41,-6],[-135,0],[-119,0],[-9,0],[-87,2],[-50,0],[-165,-1],[-40,0],[-37,-2],[-83,0],[-27,0],[-311,-1],[-33,0],[-359,0],[-61,-1]],[[79954,72239],[-444,2],[-52,0],[-65,0],[-33,-1],[-31,0],[-21,0],[-11,0],[-70,-1],[-36,0],[-111,0],[-135,-1],[-143,-2],[-149,0],[-107,-1],[-39,0],[-48,0],[-32,0],[-66,-1],[-67,-6],[-9,0],[-22,0],[-10,0],[-38,5],[-104,0],[-32,0],[-151,0],[-66,0],[-107,-1],[-83,0],[-31,0],[-35,0],[-32,0],[-37,0],[-127,0],[-58,0],[-94,0],[-49,0],[-31,0],[-56,1],[-56,0],[-70,-1],[-76,0],[-141,-1],[-43,0],[-44,-1],[-32,0],[-69,-1],[-61,0],[-35,0],[-253,2],[-287,1],[-145,0],[-145,0],[-43,0],[-105,-1],[-64,0],[-75,0],[-667,-2],[-6,0],[-62,0],[-416,-2]],[[67399,72192],[-2,-338],[7,-283],[1,-48],[1,-32],[8,-298],[2,-67],[3,-344],[3,-60],[0,-3],[1,-228],[0,-42],[1,-29],[0,-3],[1,-28],[0,-27],[1,-28],[-1,-27],[1,-33],[0,-31],[1,-55],[2,-92],[-1,-63]],[[67428,70033],[-145,-2],[-10,0],[-129,-2],[-52,-1],[-87,-1],[-145,-3],[-138,-1],[-148,-2],[-838,-4],[-224,-1],[-7,0],[-343,-3],[-512,-3],[-58,-1],[-477,-4],[-96,-1],[-57,0],[-9,0],[-55,-1],[-104,0],[-78,-1],[-31,0],[-36,0],[-73,-1],[-130,-1],[-117,-1],[-254,-1],[-81,0],[-74,0],[-218,-3],[-123,-2],[-230,-3],[-286,-1],[-502,-4],[-361,-2],[-574,-5],[-571,-2],[-285,-1],[-104,-2],[-1,0],[-64,-1],[-34,-1],[-90,2],[-1,0],[-180,-1],[-57,0],[-97,-1],[-96,0],[-137,-3],[-286,-4],[-285,-4]],[[58338,69960],[-1,65],[-1,62],[-1,54],[0,33],[-1,35],[0,40],[-1,73],[0,33],[0,25],[-1,38],[0,31],[0,31],[0,24],[-1,63],[0,58],[0,107],[0,53],[-1,33],[0,30],[0,26],[0,36],[0,25],[0,37],[0,52],[0,23],[0,27],[1,36],[0,41],[0,30],[0,42],[0,25],[0,30],[0,36],[0,43],[0,26],[0,32],[-1,91],[-1,91],[-1,56],[-1,77],[-3,31],[-5,69],[-3,62],[-3,39],[0,32],[0,45],[2,27],[4,26],[-4,46],[-3,33],[-3,107],[-1,51],[-1,27],[-1,43],[-1,68],[-2,32],[-1,35],[-1,83],[-1,47],[-1,31],[0,26],[-3,27],[-7,39],[-1,41],[1,30],[1,34],[1,92],[1,40],[0,26],[2,49],[1,66],[1,89],[7,363],[0,52],[1,15],[3,205],[2,44],[1,38],[1,29],[0,30],[0,25],[1,31],[0,30],[1,32],[1,32],[1,37],[0,39],[0,26],[1,37],[2,34],[1,31],[0,98],[-2,23],[0,3],[-31,3],[-64,13],[2,47],[8,118],[-1,142],[1,60],[0,25],[1,40],[1,60],[-2,61],[2,35],[0,7],[1,43],[0,26],[1,38],[0,30],[0,33],[0,43],[1,43],[0,33],[0,40],[0,49],[1,50],[0,39],[1,37],[0,28],[0,59],[1,40],[1,29],[0,28],[0,29],[1,83],[1,31],[1,64],[0,44],[1,78],[1,44],[1,44],[0,29],[0,31],[1,63],[1,2],[2,69],[7,264],[0,53],[1,50],[1,38],[0,48],[1,61],[0,53],[1,38],[0,66],[1,86],[0,30],[0,79],[-1,27],[0,40],[0,87],[-1,26],[-1,40],[-1,43],[0,27],[0,21],[-2,107],[0,7],[-1,26],[0,37],[0,4],[-4,80],[1,97],[-2,22],[0,14],[-1,31],[0,28],[-4,137],[-4,138],[0,53],[-1,33],[-1,44],[-2,51],[-1,39],[-1,37],[-2,59],[-16,50]],[[99463,70199],[-38,0],[-40,0],[-56,0],[-89,-1],[-49,0],[-59,0],[-47,-1],[-38,0],[-84,-1],[-47,0],[-79,-1],[-63,-1],[-123,-1],[-40,-1],[-54,0],[-154,-3],[-59,0],[-250,-4],[-40,-1],[-123,0],[-106,-1],[-20,0],[-164,-1],[-105,0],[-232,-4],[-34,0],[-43,0],[-38,0],[-73,-1],[-87,-1],[-50,0],[-71,-1],[-62,-1],[-153,-2],[-71,-1],[-42,0],[-34,-2],[-120,0],[-3,0],[-50,0],[-22,0],[-37,-1],[-80,-1],[-32,0],[-39,0],[-52,-2],[-67,-5],[-170,4],[-38,-2],[-32,-1],[-59,-1],[-50,1],[-48,-1],[-74,0],[-67,1],[-40,-1],[-36,-1],[-111,-1],[-69,-1],[-61,-1],[-40,0],[-61,-1],[-108,-2],[-147,-1],[-77,-1],[-33,-1],[-9,0],[-42,0],[-76,-1],[-97,-1],[-88,-2],[-40,0],[-59,-1],[-161,-3],[-60,-2],[-31,0],[-34,-1],[-32,0],[-84,-2],[-64,-1],[-61,-2],[-47,0],[-93,-2],[-8,0],[-135,-1],[-211,-10],[-1005,-12],[-153,-2],[-416,-4],[-283,-3]],[[91434,70100],[-6,186],[-6,182],[-9,262],[-2,47],[-5,55],[-4,182],[0,191],[0,30],[-1,41],[0,25],[-1,30],[-1,47],[-1,32],[0,26],[-1,36],[-1,32],[-1,56],[-1,28],[-2,54],[-1,30],[-3,114],[-1,45],[-1,92],[-5,183],[24,182],[1,30],[-1,121],[0,59],[0,68],[0,62],[0,35],[-1,98],[0,31],[0,39],[1,32],[0,31],[-1,6],[-4,166],[0,12],[-3,28],[-1,34],[-1,34],[-1,44],[0,53],[1,27],[0,28],[1,75],[-1,27],[-2,33],[0,31],[-2,56],[1,28],[-1,40],[-1,92],[-1,35],[-1,50],[-1,40],[-1,39],[-1,57],[-2,78],[-1,62],[-1,36],[0,56],[1,30],[0,53],[-1,44],[0,56],[0,81],[-23,58],[0,1],[-1,44],[0,30],[0,64],[0,101],[-1,72],[0,52],[-1,34],[-2,139],[-2,75],[-1,61],[-1,49],[-3,78],[-1,39],[-4,124],[-3,88],[-1,34],[0,56],[0,29],[1,41],[1,81],[1,60],[2,80],[0,31],[-3,131],[-2,57],[-1,46],[-2,70],[0,44],[-3,84],[-2,39],[-1,39],[-2,28],[0,26],[-1,40],[-1,35],[-1,75],[-2,20],[-1,6],[-2,27],[0,47],[-1,106],[-1,66],[-1,116],[-1,32],[-4,150],[-2,50],[-3,134],[-4,103],[-1,58],[-2,66],[-2,62],[-1,40],[-1,47],[-2,72],[-1,59],[-1,38],[0,26],[-2,47],[-1,56],[-1,52],[-1,84],[-2,48],[0,32],[-2,50],[0,30],[-1,25],[0,32],[0,31],[-2,33],[-7,358]],[[99449,78981],[0,-1],[1,-90],[0,-32],[0,-31],[0,-38],[1,-31],[0,-46],[1,-57],[0,-25],[0,-16],[0,-13],[1,-136],[0,-12],[0,-38],[1,-47],[0,-62],[1,-56],[0,-28],[1,-76],[0,-60],[1,-52],[0,-31],[0,-41],[1,-35],[1,-67],[1,-58],[0,-19],[0,-36],[1,-70],[0,-37],[0,-8],[0,-24],[1,-12],[-1,-16],[1,-5],[0,-12],[0,-29],[0,-30],[0,-4],[0,-20],[1,-66],[0,-33],[0,-38],[0,-5],[1,-16],[0,-35],[0,-27],[0,-61],[0,-8],[1,-16],[0,-42],[0,-29],[0,-36],[1,-75],[0,-10],[0,-18],[0,-14],[0,-29],[0,-12],[0,-50],[1,-81],[0,-34],[0,-8],[0,-10],[0,-26],[0,-49],[0,-59],[0,-20],[0,-43],[0,-1],[0,-10],[0,-38],[0,-7],[0,-29],[0,-17],[0,-8],[0,-12],[0,-19],[1,-8],[0,-31],[0,-2],[0,-17],[0,-47],[1,-45],[0,-50],[0,-14],[0,-26],[0,-28],[0,-52],[0,-4],[0,-25],[0,-26],[0,-10],[0,-4],[0,-16],[0,-17],[0,-7],[0,-45],[0,-10],[1,-36],[0,-10],[0,-13],[0,-38],[0,-40],[0,-37],[-1,-44],[0,-31],[0,-89],[0,-15],[-1,-70],[-1,-27],[1,-17],[0,-24],[0,-4],[-1,-49],[0,-56],[0,-41],[0,-31],[-1,-40],[-1,-15],[-1,-87],[-2,-50],[1,-59],[0,-17],[2,-234],[2,-8],[1,-7],[3,-54],[2,-27],[-1,-49],[-1,-22],[-4,-97],[1,-49],[0,-10],[0,-27],[0,-26],[0,-24],[0,-31],[0,-29],[0,-73],[1,-7],[0,-1],[0,-46],[0,-15],[0,-21],[0,-60],[0,-180],[0,-55],[0,-47],[0,-27],[0,-30],[0,-49],[-1,-86],[1,-31],[0,-7],[0,-39],[-1,-31],[5,-227],[1,-50],[-4,-1],[-1,0],[-1,-5],[0,-31],[0,-7],[0,-5],[2,-88],[2,-106],[0,-9],[0,-19],[-3,-31],[-2,-52],[-1,-9],[0,-56],[-1,-36],[1,-10],[0,-8],[0,-81],[0,-60],[0,-70],[1,-37],[0,-47],[0,-12],[0,-35],[0,-47],[0,-8],[0,-28],[1,-272],[0,-65],[0,-43],[1,-72],[0,-51],[0,-93],[0,-30],[0,-73],[0,-39],[0,-18],[0,-3],[0,-7],[0,-67],[0,-6],[-1,-168],[0,-55],[0,-50],[0,-20],[-1,-108],[0,-22],[0,-98],[0,-90],[0,-9],[0,-8],[0,-25],[-1,-19],[0,-53],[0,-28],[0,-39],[-1,-37],[0,-78],[-1,-61],[0,-35],[0,-7],[0,-42],[0,-10],[0,-22],[0,-30],[0,-28],[-1,-8],[0,-27],[0,-50],[0,-26]],[[91434,70100],[-203,-3],[-308,-3],[-57,3],[-50,-1],[-89,-1],[-126,-2],[-95,-1],[-34,-1],[-198,-2],[-86,0],[-157,-2],[-72,0],[-95,-1],[-84,0],[-31,-1],[-41,0],[-81,-1],[-121,-1],[-51,0],[-32,0],[-182,-2],[-109,0],[-47,-1],[-109,0],[-6,0],[-55,0],[-46,-1],[-96,0],[-74,-1],[-82,0],[-36,0],[-36,-1],[-51,0],[-45,0],[-54,0],[-50,-1],[-48,0],[-146,0],[-62,-1],[-45,0],[-35,0],[-43,0],[-264,0],[-70,0],[-66,0],[-68,0],[-69,0]],[[87429,70075],[-45,0],[-65,0],[-125,0],[-57,0],[-83,0],[-187,0],[-36,0],[-73,-1],[-142,-1],[-31,0],[-59,0],[-271,1],[-110,0],[-73,-1],[-122,0],[-43,0],[-110,0],[-117,-1],[-135,1],[-214,1],[-87,0],[-1,0],[-40,0],[-103,0],[-64,1],[-98,0],[-52,-2],[-11,0],[-67,-2],[-290,4],[-30,0],[-100,1],[-59,-2],[-374,3],[-525,0],[-349,-2],[-217,-2],[-289,-1],[-253,-1],[-34,0],[-104,-1],[-184,-1],[-68,-1],[-2,0],[-216,-2],[-100,0],[-424,-1],[-56,0],[-324,0],[-245,1],[-135,0],[-3,0],[-76,0],[-68,-1],[-274,2]],[[80009,70067],[-1,109],[0,5],[-1,29],[-1,39],[0,33],[-2,63],[-1,71],[-2,81],[-2,49],[-2,93],[0,30],[0,32],[-1,89],[-3,71],[-2,62],[-5,130],[-3,100],[-1,29],[-3,97],[-2,38],[0,38],[-1,36],[0,81],[0,44],[-1,40],[-1,28],[-1,25],[-2,47],[-2,49],[-2,46],[-2,41],[-4,89],[0,7],[-1,24],[-2,33],[-1,37],[-2,52],[-2,51],[-1,29],[-1,31],[-1,31],[4,63]],[[45767,78690],[1,-94],[4,-229],[1,-49],[1,-55],[0,-36],[2,-88],[0,-48],[2,-62],[0,-31],[4,-157],[3,-51],[0,-163],[0,-29],[0,-34],[1,-31],[0,-31],[1,-36],[0,-53],[0,-35],[2,-44],[1,-37],[0,-35],[1,-42],[1,-39],[0,-30],[1,-44],[0,-26],[0,-28],[1,-37],[1,-92],[1,-28],[1,-68],[0,-26],[5,-212],[0,-28],[-1,-31],[0,-51],[1,-58],[-3,-42],[-1,-37],[-1,-76],[0,-37],[-2,-60],[-1,-53],[-1,-30],[-2,-84],[0,-27],[-2,-61],[-1,-66],[-2,-51],[0,-59],[-1,-33],[-1,-46],[-1,-47],[-1,-59],[-2,-112],[-1,-37],[0,-40],[-1,-35],[0,-29],[-1,-48],[-1,-36],[-1,-34],[-1,-50],[-1,-27],[-1,-60],[-1,-16],[-2,-23],[0,-47],[-3,-142],[0,-60],[-2,-92],[-3,-367]],[[45761,74299],[-65,0],[-97,2],[-104,0],[-32,1],[-75,0],[-77,1],[-94,1],[-52,1],[-91,1],[-106,1],[-42,0],[-39,1],[-133,1],[-133,1],[-315,2],[-295,1],[-65,3],[-65,0],[-73,1],[-89,1],[-98,0],[-129,2],[-52,1],[-584,3],[-80,4],[-211,2],[-184,2],[-102,1],[-113,0],[-34,1],[-55,0],[-178,2],[-84,1],[-121,1],[-144,1],[-99,2],[-39,0],[-71,0],[-178,2],[-52,0],[-34,0],[-73,1],[-35,1],[-182,-2],[-37,0],[-68,-38],[-10,-6],[-35,-25],[-43,-33],[-31,-23],[-40,-48],[-42,-25],[-30,-62],[-18,-36],[10,-44],[25,-24],[17,-16],[47,-16],[58,-11],[83,-21],[44,-33],[1,-3],[6,-22],[-11,-36],[-101,-55],[-57,-20],[-65,-30],[-6,-5],[-25,-23],[-41,-107],[-22,-58],[2,-10],[-4,-40],[-12,-12],[-25,-24],[-35,-32],[11,-32],[12,-26],[38,-11],[19,-11],[11,-6],[53,-15],[40,-21],[19,-24],[5,-27],[4,-31],[0,-29],[10,-17],[6,-9],[42,-17],[38,-3],[3,0],[33,0],[36,-4],[9,-27],[-29,-15],[-69,-3],[-2,-1],[-33,-10],[-20,-19],[-1,0],[-6,-31],[-32,-33],[-41,-11],[-45,-8],[-42,-3],[-3,0],[-42,-11],[-23,-38],[6,-45],[48,-27],[46,-15],[36,-3],[51,3],[32,3],[69,9],[34,2],[37,9],[43,7],[22,19],[17,15],[22,35],[29,28],[41,11],[28,-13],[22,-18],[10,-41],[-13,-31],[-32,-41],[-51,-53],[-60,-30],[-62,-6],[-41,-22],[-35,-12],[-42,-4],[-10,-3],[-30,-9],[-66,-45],[-24,-23],[-16,-23],[-6,-56],[4,-26],[-39,0],[-13,-1],[-133,-1],[-74,-1],[-108,-2],[-115,-1],[1,-35],[1,-58],[2,-88],[1,-62],[1,-33],[2,-46],[4,-45],[33,-5],[2,-27],[1,-59],[1,-30],[1,-41],[0,-78],[1,-38],[1,-9],[1,-27],[0,-37],[0,-27],[2,-47],[1,-59],[1,-27],[0,-27],[1,-30],[2,-57],[1,-65],[2,-38],[1,-55],[2,-49],[1,-40],[3,-91],[2,-60],[-7,-30],[5,-164],[0,-26],[2,-62],[2,-82],[1,-42],[8,-413],[5,-165],[2,-182]],[[40040,69945],[-64,0],[-14,0],[-129,-1],[-11,1],[-22,0],[-44,0],[-305,1],[-1,0],[-321,0],[-105,0],[-199,0],[-174,-1],[-101,0],[-341,0],[-530,-6],[-154,-1],[-4,0],[-434,-3],[-1,0],[-177,-1],[-272,0],[-186,-1],[-74,0],[-437,-1],[-126,-1],[-215,1],[-201,1],[-343,2],[-1,0],[-38,0],[-183,1],[-592,3],[-281,4],[-267,3],[-94,1],[-221,1],[-242,-1],[-35,1],[-307,5],[-577,11],[-1,0],[-516,-1],[-92,-1],[-198,2],[-563,2],[-585,-1]],[[30262,69965],[-6,50],[-7,314],[-1,25],[-10,278],[-3,60],[-1,226],[-4,139],[0,1],[-6,81],[-5,195],[-2,88],[-4,101],[-5,261],[-2,84],[-3,96],[-2,172],[-2,86],[-1,62],[-4,210],[-2,35],[-5,35],[13,40],[-1,257],[9,363],[1,110],[0,75],[1,50],[1,130],[-2,76],[-8,279],[9,263],[0,4],[1,44],[3,56],[-53,7]],[[58338,69960],[-56,-1],[-99,-1],[-62,0],[-27,0],[-35,-1],[-33,0],[-27,0],[-7,0],[-41,0],[-36,-1],[-58,0],[-48,-1],[-46,0],[-43,0],[-50,-1],[-79,0],[-114,-1],[-181,0],[-125,-1],[-43,0],[-133,-1],[-137,-1],[-62,-1],[-48,0],[-51,-1],[-82,0],[-124,-1],[-72,-1],[-108,-1],[-170,-2],[-73,0],[-92,-1],[-41,0],[-69,-1],[-96,0],[-74,-1],[-48,0],[-31,0],[-39,0],[-109,0],[-35,0],[-153,0],[-136,-1],[-52,0],[-50,0],[-182,-2],[-45,0],[-32,0],[-64,0],[-73,-1],[-71,0],[-93,-1],[-100,-1],[-96,0],[-67,-1],[-76,0],[-102,-1],[-44,-1],[-42,0],[-55,0],[-67,-1],[-57,0],[-64,0],[-56,0],[-83,-1],[-108,0],[-61,0],[-68,-1],[-73,0],[-124,0],[-192,-1],[-33,0],[-62,-1],[-750,1],[-46,0],[-39,0]],[[52018,69927],[6,128],[2,55],[2,172],[1,61],[1,132],[0,67],[1,145],[0,27],[-8,48],[6,72],[3,96],[0,53],[0,38],[5,88],[1,2],[-1,50],[-1,42],[1,30],[0,64],[0,52],[0,58],[1,55],[1,61],[0,46],[1,41],[1,43],[1,81],[0,38],[0,79],[0,64],[1,41],[0,51],[0,26],[0,86],[-7,56],[2,128],[1,117],[1,14],[1,51],[0,1],[5,328],[1,29],[0,34],[0,1],[-2,335],[-41,0],[-81,0],[-48,0],[-49,-1],[-111,0],[-143,-1],[-37,0],[-29,0],[-3,0],[-40,0],[-30,0],[-47,0],[-33,0],[-36,1],[-33,0],[-39,0],[-35,0],[-33,0],[-39,0],[-42,0],[-103,0],[-81,0],[-51,0],[-68,-1],[-76,0],[-49,-1],[-75,-1],[-77,-1],[-32,0],[-118,-1],[-30,-1],[-90,0],[-48,0],[-143,0],[-65,0],[-47,0],[-136,-1],[-31,0],[-35,0],[-116,-1],[-75,-1],[-33,0],[-241,-2],[-11,0],[-30,0],[-31,0],[-50,0],[-32,1],[-67,1],[-8,0],[-76,1],[-53,1],[-35,1],[-42,0],[-78,1],[-68,1],[-34,1],[-36,0],[-73,0],[-60,0],[-95,0],[-67,0],[-61,0],[-51,0],[-76,0],[-51,1],[-32,0],[-31,0],[-56,0],[-57,1],[-46,1],[-39,0],[-67,1],[-189,-1],[-105,0],[-1,35],[0,40],[1,27],[0,32],[0,31],[0,44],[0,35],[0,28],[0,32],[0,41],[-2,259],[1,21],[1,14],[1,36],[-1,55],[0,37],[0,28],[1,28],[0,40],[-1,30],[0,37],[1,34],[-1,40],[0,45],[0,30],[-35,0],[-58,0],[-43,0],[-40,0],[-64,1],[-91,0],[-86,0],[-50,1],[-43,0],[-193,0],[-90,1],[-67,1],[-108,0],[-64,0],[-54,0],[-56,1],[-37,0],[-42,0],[-31,0],[-83,0],[-56,0],[-43,0],[-31,1],[-36,0],[-95,1],[-72,1],[-40,0]],[[30262,69965],[6,-155],[8,-203],[0,-218],[0,-47],[5,-286],[6,-270],[6,-225],[1,-52],[1,-119],[10,-53],[2,-89],[0,-1],[1,-35],[1,-41],[1,-40],[3,-25],[0,-20],[0,-19],[0,-63],[0,-25],[-2,-56],[-1,-42],[-1,-100]],[[30309,67781],[-123,1],[-276,1],[-196,-1],[-94,0],[-163,0],[-93,-2],[-177,0],[-565,0],[-144,-1],[-448,0],[-273,0],[-132,-1],[-729,0],[-310,2],[-1,0],[-213,1],[-177,1],[-162,0],[-164,2],[-278,2],[-137,3],[-289,5],[-567,-2],[-326,0],[-261,6],[-568,0],[-278,2],[-439,2],[-447,2],[-16,1],[-273,4],[-172,0],[-76,1],[-330,-1],[-260,2],[-575,0],[-339,-1],[-230,-1],[-432,2],[-144,0],[-575,3],[-35,0],[-522,-1],[-255,2],[-78,0],[-239,0],[-190,2],[-38,1],[-10,-1],[-187,0],[-57,-1]],[[17246,67816],[3,310],[1,43],[1,36],[0,28],[0,6],[1,114],[2,63],[0,9],[2,107],[0,2],[0,10],[-1,41],[-1,51],[-1,117],[-3,145],[0,38],[0,41],[0,48],[1,37],[0,37],[1,80],[0,76],[-1,15],[0,7],[0,1],[0,10],[0,32],[0,40],[-1,58],[1,42],[0,68],[0,11],[0,42],[0,65],[0,25],[1,32],[0,28],[0,23],[0,43],[0,25],[0,32],[0,76],[0,45],[0,9],[1,36],[0,53],[-1,64],[1,40],[1,64],[0,31],[0,6],[0,23],[1,56],[0,12],[0,20],[0,26],[1,48],[0,32],[0,31],[0,48],[0,18],[1,45],[0,53],[0,35],[0,5],[0,5],[0,32],[1,17],[0,16],[0,21],[0,35],[0,63],[0,14],[1,18],[0,28],[0,11],[1,21],[1,61],[0,13],[-1,21],[0,20],[0,22],[0,13],[-1,144],[0,26],[-1,43],[1,22],[0,19],[0,4],[3,17],[-4,10],[0,92],[0,93],[-1,25],[0,78],[0,50],[0,38],[-3,225],[0,63],[0,44],[0,9],[-1,47],[1,27],[0,35],[0,45],[0,76],[0,47],[0,41],[1,25],[0,41],[-2,123],[0,52],[0,47],[0,25],[-1,34],[0,36],[0,16],[0,23],[0,39],[1,181],[1,31],[0,73],[0,46],[0,79],[0,79],[1,78],[0,64],[0,33],[0,31],[0,80],[0,83],[0,34],[1,55],[1,5],[1,2],[-1,45],[0,42],[1,113],[0,32],[1,90],[0,33],[0,61],[0,17]],[[52018,69927],[-2,-152],[0,-8],[-1,-28],[-4,-78],[1,-45],[-1,-29],[-1,-25],[-2,-139],[-7,-185],[0,-37],[0,-112],[-3,-71],[1,-72],[-3,-72],[0,-38],[-1,-66],[1,-171],[-3,-127],[-1,-40],[-6,-42],[0,-187],[0,-2],[-1,-87],[0,-1],[0,-280],[-1,-371],[-1,-52],[-2,-303],[2,-60],[-1,-44],[0,-60],[0,-32],[-2,-46],[-2,-184]],[[51978,66681],[-519,-2],[-4,0],[-105,-2],[-90,-2],[-48,0],[-54,-1],[-63,-1],[-165,-2],[-37,-1],[-46,0],[-70,0],[-97,-1],[-82,0],[-73,-1],[-60,0],[-35,1],[-93,-1],[-33,-1],[-40,0],[-16,0],[-71,0],[-82,-1],[-63,0],[-110,-1],[-49,0],[-75,-1],[-45,0],[-90,-1],[-72,0],[-125,-1],[-34,0],[-73,-1],[-53,0],[-54,-1],[-43,0],[-31,-1],[-41,0],[-42,1],[-48,0],[-89,1],[-87,0],[-37,0],[-67,1],[-69,0],[-81,1],[-60,0],[-62,0],[-49,0],[-167,0],[-54,0],[-112,-1],[-99,1],[-115,1],[-32,0],[-40,0],[-91,1],[-47,0],[-36,0],[-98,1],[-84,0],[-147,1],[-117,1],[-173,0],[-34,0],[-104,1],[-116,0],[-94,1],[-99,0],[-131,0],[-104,1],[-40,0],[-52,0],[-89,0],[-37,0],[-106,0],[-70,0],[-112,1],[-61,0],[-80,0],[-49,-1],[-49,0],[-106,-1],[-84,0],[-33,1],[-37,0],[-57,0],[-40,-1],[-42,1],[-3,0],[-126,0],[-51,1],[-10,0],[-229,2],[-1,0],[-134,0],[-43,0],[-156,2],[-203,0],[-1,0],[-33,1],[-192,1],[-116,-1],[-31,1],[-62,1],[-51,1],[-32,0],[-48,1],[-61,1],[-118,1],[-71,1],[-103,0],[-74,0],[-116,1],[-100,0],[-112,0],[-93,0],[-93,0],[-118,1],[-37,0],[-75,0],[-40,1],[-67,0],[-56,1]],[[42352,66688],[0,28],[-1,64],[0,61],[0,107],[0,33],[0,72],[0,37],[0,42],[0,34],[1,29],[-2,69],[0,55],[0,35],[0,41],[-1,35],[-1,16],[1,33],[0,31],[0,35],[0,43],[0,91],[-1,26],[0,59],[-1,78],[0,37],[-2,60],[0,28],[0,35],[0,47],[0,79],[-1,33],[0,52],[-1,54],[0,44],[-1,62],[0,37],[-1,34],[0,48],[-1,56],[0,56],[0,65],[0,42],[0,27],[0,52],[-1,30],[0,5],[0,33],[0,51],[-1,26],[0,34],[1,46],[-1,107],[0,28],[-1,56],[1,31],[0,55],[-2,31],[0,32],[-1,46],[0,50],[0,54],[-1,36],[0,37],[0,28],[0,43],[0,59],[-1,26],[0,11],[0,55],[-1,43],[0,2],[0,95],[-63,0],[-17,0],[-687,2],[-240,1],[-643,0],[-44,1],[-31,0],[-112,0],[-78,1],[-119,1],[-36,-1],[-16,0],[-38,0],[-168,0]],[[80009,70067],[3,-67],[1,-51],[2,-47],[1,-55],[1,-40],[1,-49],[0,-42],[0,-24],[1,-13],[4,-208],[1,-60],[3,-51],[0,-48],[1,-33],[1,-63],[2,-116],[0,-36],[2,-32],[0,-44],[-2,-35],[0,-38],[0,-123],[-1,-66],[-1,-59],[0,-49],[-1,-26],[0,-51],[-1,-34],[0,-21],[0,-40],[2,-64],[1,-28],[1,-46],[1,-35],[1,-32],[1,-42],[1,-30],[1,-35],[1,-32],[1,-37],[3,-54],[0,-27],[1,-30],[2,-43],[1,-41],[5,-143],[0,-1],[3,-184],[-2,-28],[1,-50],[1,-34],[0,-29],[2,-60],[1,-36],[2,-115],[1,-34],[1,-33],[1,-49],[0,-26],[4,-153],[3,-92],[0,-44],[2,-46],[0,-28],[1,-51],[1,-25],[2,-90],[1,-67],[0,-44],[1,-26],[0,-26],[0,-47],[0,-50],[-1,-67],[0,-32],[0,-57],[1,-34],[2,-182],[2,-71],[0,-29],[2,-96],[6,-176],[2,-156]],[[80090,65359],[-67,1],[-156,2],[-58,0],[-152,3],[-103,1],[-32,0],[-139,-3],[-128,-3],[-98,-3],[-75,-1],[-12,0],[-143,-4],[-44,1],[-164,2],[-135,1],[-140,0],[-34,0],[-57,0],[-200,-1],[-44,-1],[-164,-1],[-133,-2],[-60,0],[-86,1],[-53,1],[-84,1],[-54,0],[-59,0],[-493,-4],[-56,0],[-36,-2],[-39,2],[-52,0],[-123,-2],[-176,13],[-116,3],[-143,2],[-40,1],[-105,2]],[[76037,65369],[-54,1],[-243,5],[-98,1],[-192,1],[-289,-2],[-291,0],[-232,-2],[-49,0],[-333,-3],[-116,0],[-119,-1],[-1,0],[-142,0],[-77,0],[-150,-1],[-420,1],[-1,0],[-275,-14],[-287,-12],[-256,4],[-307,-1],[-272,-1],[-1,0],[-70,0],[-233,6],[-429,2],[-145,1],[-90,1],[-480,4],[-44,0],[-339,-4],[-46,0],[-31,-1],[-79,0],[-1,0],[-37,0],[-38,-1],[-65,-1],[-508,-5],[-351,-2],[-221,-1],[-168,0],[-66,0],[-133,0],[-205,-2],[-3,0],[-345,-1],[-230,-1]],[[67475,65340],[0,66],[-2,287],[4,361]],[[67477,66054],[2,81],[1,212],[0,4],[0,65],[0,3],[-1,59],[0,8],[-5,192],[-2,102],[-2,359],[-11,365],[-9,310],[-1,38],[0,2],[-4,302],[-1,63],[0,171],[-1,34],[0,1],[-6,160],[-7,364],[-8,364],[-8,287],[-3,77],[12,213],[1,30],[1,32],[3,46],[0,35]],[[99463,70199],[-1,-21],[0,-7],[0,-32],[0,-34],[0,-30],[-1,-42],[0,-33],[0,-12],[0,-27],[-1,-50],[0,-40],[-1,-70],[0,-57],[0,-15],[0,-5],[0,-1],[-1,-7],[1,-27],[-1,-30],[0,-39],[0,-31],[-1,-51],[0,-2],[1,-17],[0,-7],[-1,-15],[0,-17],[0,-45],[0,-3],[0,-15],[0,-31],[0,-29],[0,-94],[0,-43],[0,-26],[0,-37],[0,-43],[0,-37],[0,-42],[0,-24],[0,-30],[0,-66],[-1,-67],[0,-49],[0,-35],[0,-33],[-1,-27],[-1,-85],[0,-38],[-1,-54],[0,-28],[-1,-63],[0,-58],[0,-7],[0,-1],[0,-1],[-1,-4],[-1,-13],[-1,-83],[-1,-80],[-1,-38],[-1,-34],[0,-19],[-2,-71],[0,-25],[-1,-41],[0,-40],[-1,-45],[0,-3],[-3,-100],[0,-32],[-1,-39],[-2,-76],[-2,-50],[0,-12],[0,-12],[-1,-26],[-1,-76],[-1,-79],[-1,-53],[-1,-34],[0,-17],[-1,-33],[0,-29],[-2,-48],[-2,-90],[-2,-154],[-2,-77],[-1,-64],[-1,-44],[0,-29],[-1,-74],[-2,-68],[0,-14],[0,-5],[-1,-62],[0,-18],[0,-8],[0,-29],[0,-10],[0,-28],[0,-4],[-1,-55],[0,-7],[-1,-17],[0,-3],[1,-3],[0,-5],[0,-3],[0,-8],[0,-17],[0,-66],[-1,-23],[0,-23],[-1,-26],[0,-1],[0,-1],[0,-36],[-1,-33],[0,-4],[0,-50],[0,-25],[-1,-8],[1,-54],[0,-36],[1,-66],[0,-35],[1,-40],[0,-65],[1,-92],[0,-26],[1,-52],[0,-80],[1,-163],[0,-62],[0,-34],[1,-72],[0,-39],[1,-52],[0,-23],[0,-22],[0,-17],[0,-36],[1,-32],[0,-34],[0,-13],[0,-8],[1,-51],[0,-1],[1,-48],[-2,-9],[0,-2],[2,-3],[0,-65],[1,-48],[0,-51],[1,-26],[1,-53],[0,-35],[1,-29],[0,-26],[1,-19],[0,-11],[-1,-6],[1,-10],[0,-34],[0,-22],[0,-3],[1,-27],[0,-32],[0,-11],[0,-36],[1,-27],[0,-18],[0,-13],[1,-73],[1,-40],[-1,-47],[0,-35],[0,-47],[-1,-26],[0,-20],[1,-47],[-1,-25],[0,-9],[-1,-40],[0,-33],[0,-26]],[[99426,63628],[-64,1],[-88,-2],[-109,0],[-159,-1],[-81,0],[-115,-1],[-31,0],[-47,0],[-167,-2],[-48,0],[-44,0],[-56,-1],[-64,0],[-56,-1],[-36,0],[-53,-1],[-56,0],[-51,0],[-73,-1],[-33,0],[-186,-1],[-128,-2],[-59,0],[-87,-1],[-105,0],[-74,-1],[-97,-1],[-152,-1],[-42,0],[-84,0],[-122,0],[-61,0],[-83,0],[-35,1],[-34,-1],[-36,0],[-67,-1],[-52,0],[-88,0],[-67,0],[-103,0],[-67,0],[-109,0],[-98,0],[-36,1],[-79,0],[-66,0],[-120,-1],[-108,-1],[-63,0],[-91,0],[-48,-1],[-49,0],[-65,0],[-74,0],[-50,0],[-80,-1],[-42,0],[-160,-1],[-49,0],[-60,-1],[-74,0],[-94,-1],[-57,-1],[-58,0],[-120,-1],[-110,0],[-9,0],[-80,-1],[-158,-1],[-38,0],[-40,0],[-152,0],[-64,-1],[-48,0],[-115,0],[-170,1],[-123,0],[-61,0],[-58,1],[-117,-1],[-65,-1],[-104,-1],[-49,-1],[-70,-1],[-35,0],[-97,0],[-41,0],[-117,-1],[-69,0],[-90,-1],[-117,-2],[-127,-2],[-52,-1],[-70,0],[-44,-1],[-138,-3],[-95,-1],[-61,-1],[-45,-1],[-42,-1],[-60,-1],[-65,0],[-59,-1],[-84,-1],[-119,-1],[-32,0],[-101,-1],[-52,-1],[-164,-2],[-50,0],[-83,-1],[-133,-1],[-138,-1],[-35,0],[-93,-2],[-72,0],[-79,-2],[-62,-1],[-128,-1],[-72,0],[-48,0],[-33,-1],[-51,-1],[-72,0],[-39,0],[-76,-1],[-85,-1],[-165,-1],[-77,0],[-77,-1],[-34,-1],[-3,0],[-49,0],[-103,1],[-36,0],[-54,0],[-52,-1],[-52,0],[-65,-1],[-63,-1],[-100,-1],[-165,-1],[-110,-1],[-57,-1],[-72,0],[-54,-1],[-88,-1],[-55,0],[-87,-1],[-79,-1],[-81,-1],[-31,2],[-361,-3],[-183,-1],[-109,-1]],[[86898,63544],[-1,57],[-1,60],[0,13],[-2,65],[-3,164],[-3,134],[0,5],[-5,225],[-13,364],[-1,25],[0,77],[0,167],[0,29],[-2,50],[-1,70],[-1,36],[-2,107],[-1,49],[0,76],[2,43]],[[86864,65360],[37,1],[4,0],[66,-1],[31,0],[34,0],[33,1],[30,0],[32,0],[37,-1],[54,0],[36,1],[-1,30],[-1,29],[1,28],[0,51],[-1,43],[0,41],[-1,37],[1,42],[4,27],[3,14],[3,13],[-1,27],[0,19],[0,29],[0,69],[0,44],[0,105],[0,50],[0,100],[0,42],[-1,39],[0,34],[0,29],[0,45],[0,36],[0,38],[0,25],[0,42],[-1,45],[1,32],[0,40],[0,36],[0,63],[0,6],[1,34],[-1,36],[0,4],[-1,33],[0,71],[0,47],[0,80],[1,73],[0,60],[0,42],[1,40],[-1,46],[1,33],[0,45],[0,38],[0,50],[0,49],[0,68],[1,51],[0,67],[1,33],[0,34],[0,43],[0,40],[2,44],[41,0],[75,1],[56,1],[1,84],[1,37],[1,62],[0,27],[1,44],[1,75],[0,28],[-1,33],[0,40],[0,28],[-1,42],[-1,44],[-1,59],[-1,87],[-1,39],[-3,114],[-1,44],[-2,61],[0,34],[-1,28],[-6,25],[-1,10],[-4,51],[4,28],[1,89],[-1,59],[-1,35],[0,55],[0,45],[-1,36],[-1,61],[0,62],[0,39],[1,40],[0,72],[0,35],[1,51],[0,16],[0,17],[1,67],[1,50],[1,37],[0,40],[1,68],[0,36],[0,33],[0,34]],[[86864,65360],[-100,0],[-54,-1],[-63,-1],[-40,-1],[-49,-1],[-50,-1],[-218,-3],[-288,0],[-77,1],[-107,0],[-39,0],[-62,0],[-44,-1],[-109,-2],[-119,-3],[-105,-2],[-54,-2],[-48,-1],[-37,0],[-74,-2],[-31,0],[-66,0],[-102,0],[-168,0],[-52,0],[-41,0],[-57,0],[-48,0],[-63,0],[-44,0],[-46,-1],[-35,0],[-38,0],[-45,0],[-49,0],[-37,0],[-74,-1],[-123,0],[-43,0],[-48,-1],[-46,0],[-56,0],[-35,0],[-82,0],[-210,-1],[-28,15],[-64,-2],[-47,0],[-145,-3],[-57,-1],[-145,-2],[-92,-2],[-234,2],[-1,0],[-92,1],[-236,1],[-21,0],[-46,1],[-96,1],[-304,1],[-103,1],[-113,0],[-407,0],[-51,0],[-64,0],[-49,0],[-100,0],[-413,1],[-90,0],[-33,0],[-163,0],[-149,0],[-47,8],[-8,1]],[[67477,66054],[-206,0],[-179,0],[-44,0],[-429,-4],[-270,-2],[-292,-2],[-87,0],[-156,-1],[-39,0],[-157,-1],[-254,0],[-56,-1],[-53,0],[-55,0],[-142,1],[-122,-1],[-55,0],[-18,0],[-234,0],[-2,0],[-568,-4],[-289,-4],[-79,0],[-210,-3],[-162,-3],[-121,-1],[-267,-2],[-235,-4],[-250,-3],[-15,0],[-77,-1],[-1,0],[-291,-1],[-287,-4],[-165,-1],[-122,-2],[-281,-4],[-577,-4],[-168,-2],[-103,0],[-1,0],[-299,-4],[-60,0],[-53,-1],[-173,-2],[-225,-1],[-32,0],[-43,-2],[-9,0],[-85,-1],[-103,-1],[-91,-3],[-93,-1],[-83,0],[-104,-1],[-55,-2],[-72,0],[-8,0],[-44,-1],[-92,-1],[-101,0],[-69,-1],[-131,-2],[-46,-1],[-63,-1],[-143,-1],[-53,0],[-94,-2],[-103,-2],[-73,-1],[-415,-3],[-152,-2],[-146,-1],[-145,-1],[-50,-1],[-165,-1],[-77,0],[-49,0],[-377,-2],[-190,-2],[0,-63],[-1,-38],[-5,-265],[-2,-332],[1,-30]],[[55985,65227],[-141,-2],[-34,0],[-37,-1],[-213,-1],[-94,-1],[-340,1],[-61,1],[-175,2],[-48,0],[0,31],[-2,246],[3,87],[-175,-2],[-256,2],[-231,1],[-57,1],[-141,-2],[-1,60],[-1,303],[-2,361],[0,34],[-2,328],[-78,1],[-196,1],[-294,2],[-865,1],[-115,0],[-313,0],[-138,0]],[[42352,66688],[2,-54],[-1,-166],[0,-145],[0,-58],[0,-64],[-1,-42],[0,-7],[-1,-192],[4,-148],[-2,-215],[-3,-340],[-4,-207],[-1,-108],[-4,-203],[-1,-73],[0,-1],[-1,-162],[-3,-309],[0,-3],[2,-114],[2,-121],[4,-36],[-6,-145],[-4,-336],[0,-33],[-3,-358],[-1,-97],[0,-49],[0,-217],[1,-145],[1,-110],[0,-102],[0,-76],[0,-129],[-8,-21],[-2,-4],[9,-141],[-2,-111],[-4,-298],[-2,-137],[-4,-182]],[[42319,61229],[-92,0],[-195,1],[-174,1],[-106,0],[-80,1],[-102,0],[-34,0],[-277,0],[-144,0],[-74,0],[-102,0],[-42,0],[-297,1],[-313,1],[-41,0],[-201,1],[-43,0],[-129,1],[-118,1],[-85,0],[-184,1],[-161,1],[-71,0],[-92,1],[-222,1],[-53,0],[-103,1],[-183,0],[-52,0],[-34,3],[-45,-2],[-54,-1],[-36,0],[-138,0],[-55,0],[-95,0],[-37,0],[-144,0],[-67,-1],[-97,0],[-296,1],[-268,1],[-31,0],[-271,0],[-52,0],[-161,0],[-135,0],[-171,0],[-182,0],[-152,0],[-152,1],[-2,0],[-389,2],[-35,0],[-427,-1],[-90,-2],[-82,-3],[-147,3],[-361,0],[-31,-1],[-86,-1],[-49,0],[-123,1],[-92,0],[-61,-1],[-33,0],[-54,0],[-38,0],[-753,-1],[-32,0],[-109,0],[-213,0],[-58,0],[-242,0],[-190,1],[-79,0],[-37,0],[-578,-3],[-570,1],[-572,1]],[[30343,61240],[7,126],[2,241],[1,183],[3,175],[-2,52],[-1,91],[-14,225],[0,49],[0,89],[0,236],[1,185],[2,183],[2,339],[-9,196],[0,168],[1,182],[0,184],[23,362],[3,27],[-2,27],[0,1],[-1,149],[-4,59],[-4,95],[4,177]],[[30355,65041],[1,7],[2,127],[7,103],[0,121],[-13,187],[-20,19],[9,344],[0,58],[2,263],[0,40],[0,47],[0,88],[0,2],[-1,588],[0,40],[1,423],[0,84],[1,199],[-35,0]],[[30355,65041],[-42,-7],[-47,11],[-34,2],[-21,-9],[-27,-11],[-11,-5],[-155,-105],[-1,0],[-4,-3],[-75,-53],[-45,-52],[-9,-57],[3,-17],[-23,-11],[-112,-58],[-157,-79],[-13,-3],[-95,-27],[-6,-3],[-114,-39],[-22,-7],[-53,-31],[-108,-68],[-14,-8],[-33,-20],[-57,-20],[-9,-2],[-63,-15],[-6,-2],[-6,0],[-44,-1],[-32,-1],[-17,1],[-25,2],[-34,-5],[-114,-37],[-10,-3],[-29,-8],[-184,-40],[-52,3],[-1,0],[-6,2],[-51,18],[-9,7],[-65,1],[-112,-28],[-75,-4],[-12,-1],[-9,3],[-7,2],[-6,-1],[-37,-3],[-26,1],[-23,1],[-72,-12],[-32,-11],[-20,-6],[-10,-3],[-4,-2],[-10,-6],[-45,-23],[-77,-49],[-78,-38],[-9,-4],[-26,-8],[-127,-41],[-162,-34],[-127,-30],[-16,-4],[-84,-20],[-2,0],[-65,-12],[-7,-1],[-86,-4],[-39,-2],[-40,-11],[-87,-39],[-180,-50],[-491,-181],[-111,-24],[-88,-8],[-21,4],[-22,-8],[-76,-3],[-51,-10],[-5,-3],[-3,-2],[-50,-26],[-26,-29],[-2,-6],[-5,-15],[-2,-5],[-11,-102],[-3,-29],[-30,-29],[-14,-15],[-72,-32],[-9,-4],[-9,-6],[-42,-28],[-6,-5],[-30,-19],[-15,-10],[-7,-4],[-78,-51],[-104,-66],[-49,-31],[-31,-19],[-22,-6],[-65,-17],[-23,-6],[-44,-11],[-92,-33],[-32,-13],[-18,-7],[-32,-14],[-17,-17],[-26,-24],[-13,-9],[-29,-20],[-64,-40],[-6,-5],[-18,-16],[-20,-23],[-144,-210],[-67,-97],[-29,-35],[-16,-21],[-9,-12],[-27,-26],[-12,-12],[-26,-30],[-40,-49],[-33,-41],[-7,-4],[-25,-16],[-29,-12],[-66,-2],[-4,0],[-51,0],[-28,-9],[-51,-17],[-76,-26],[-124,-54],[-40,-18],[-78,-43],[-55,-41],[-14,-41],[-9,-27],[0,-11],[-9,-6],[-9,-6],[-23,-41],[-6,-12],[-44,-38],[-58,-30],[-43,-14],[-98,-32],[-94,-48],[-32,-39],[-1,-7],[-1,-2],[-8,-21],[-35,-48],[-40,-55],[-85,-66],[-107,-48],[-8,-3],[-76,-9],[-17,-2],[-4,-3],[-42,-22],[-12,-6],[-28,-42],[1,-10],[2,-7],[-14,-14],[-31,-31],[-19,-10],[-4,-2],[-28,-5],[-14,0],[-24,0],[-30,1],[-7,0],[-4,-2],[-40,-19],[-14,-6],[-47,-60],[-6,-8],[-6,-4],[-76,-45],[-54,-16],[-42,-12],[-25,-4],[-30,-3],[-70,-18],[-14,-8],[-89,-18],[-103,-11],[-23,-2],[-214,-29],[-122,-20],[-92,-20],[-52,-15],[-1,0],[-3,-1],[-41,-4],[-78,-19],[-23,-10],[-8,-5],[-38,-18],[-27,-20],[-22,-17],[-18,-10],[-43,-22],[-56,-29],[-24,-10],[-41,-15],[-38,-15],[-5,-1],[-15,-2],[-45,-5],[-73,-19],[-39,-10],[-6,-1],[-8,-1],[-147,-6],[-23,-11],[-52,-25],[-110,-71],[-17,-10],[-99,-201],[-82,-83],[-44,-45],[-157,-113],[-60,-43],[-13,-16],[-15,-29],[-2,-19],[-14,-92],[20,-14],[22,-32],[4,-55],[1,-23],[11,-29],[5,-12],[8,-21],[12,-12],[61,-58],[80,-29],[48,-17],[126,-45],[4,-2],[5,-2],[4,-2],[4,-3],[237,-75],[41,-3],[6,0],[5,-1],[5,-1],[5,-1],[1,0],[20,-6],[4,-1],[5,-2],[5,-2],[4,-3],[2,-1],[23,-13],[3,-2],[4,-3],[1,0],[28,-21],[42,-21],[95,-48],[7,-3],[4,-6],[14,-17],[11,-14],[12,-16],[2,-10],[3,-13],[7,-38],[-3,-25],[-2,-12],[-2,-13],[-12,-47],[-17,-9],[-5,-9],[-3,-4],[0,-4],[-12,-80],[0,-1],[-1,-31]],[[20863,59052],[-4,0],[-398,-1],[-402,-2],[-554,-1],[-384,-1],[-211,0],[-579,2],[0,365],[0,1],[4,105],[0,1],[0,52],[-290,2],[-801,-5],[-147,-4]],[[17097,59566],[2,178],[3,175],[4,199],[3,180],[4,255],[2,111],[1,55],[-1,29],[2,41],[0,21],[1,17],[5,27],[0,134],[0,44],[3,206],[3,160],[2,174],[1,44],[2,156],[5,270],[1,81],[0,30],[1,18],[2,113],[4,258],[1,65],[3,97],[1,3],[0,105],[0,2],[0,34],[0,70],[1,9],[1,113],[2,134],[3,173],[2,93],[2,29],[2,169],[3,154],[4,163],[5,193],[4,299],[1,28],[1,30],[-1,14],[2,80],[1,51],[2,46],[0,37],[1,45],[2,52],[1,45],[3,162],[4,120],[-3,100],[1,42],[0,28],[4,279],[2,111],[1,67],[9,295],[1,34],[2,45],[0,131],[1,51],[1,34],[1,45],[2,102],[2,133],[1,53],[1,63],[4,211],[1,84],[0,15],[1,45],[5,244],[1,62],[0,10],[2,112],[1,76],[1,31],[5,127],[1,29]],[[55985,65227],[-1,-181],[1,-229],[0,-73],[-1,-61],[2,-181],[-2,-187],[-2,-176],[1,-181],[1,-137],[1,-226],[1,-183],[5,-336],[0,-1],[6,-361],[3,-192],[5,-314],[1,-85],[-4,-125],[-7,-184],[-3,-185],[0,-183],[0,-180]],[[55992,61266],[1,-51],[1,-52],[1,-35],[1,-67],[1,-64],[1,-78],[1,-74],[0,-25],[1,-110],[0,-36],[1,-70],[0,-46],[1,-41],[1,-32],[0,-45],[1,-53]],[[56004,60387],[-231,-5],[-65,-1],[-1,0],[-204,-5],[-31,-1],[-46,-1],[-93,-2],[-343,-6],[-142,-2],[-45,0],[-62,-3],[-16,0],[-164,2],[-284,-5],[-209,-3],[-367,-6],[-340,-6],[-230,-3],[-339,-10],[-112,1],[-19,0],[-13,1],[-84,0],[-294,-19],[-269,-6],[-299,-3],[-423,-5],[-438,-3],[-131,1],[-332,-2],[-36,-2],[-34,-1],[-1,0],[-439,-1],[-140,0],[-530,-1],[-51,0],[-92,2],[-439,7],[-388,1],[-81,0],[-87,0],[-23,0],[-134,1],[-125,0],[-171,0],[-149,2],[-68,1],[-38,1],[-442,3],[-301,2],[-65,-1],[-1,0],[-204,0],[-138,0],[-6,0],[-144,0],[-243,-3],[-31,1],[-82,3],[-341,4],[-147,3],[-263,7],[-287,7],[-36,-3],[-68,1],[-98,1],[-688,4],[-460,5],[-110,2],[-285,5],[-48,-1],[-249,-5],[-297,-6]],[[42318,60334],[0,180],[0,182],[0,90],[0,6],[1,437]],[[67475,65340],[1,-83],[3,-278],[6,-363],[9,-321],[1,-46],[2,-127],[5,-238],[4,-179],[0,-39],[0,-145],[27,-174],[-3,-150],[-1,-33],[-4,-202],[-1,-27],[-2,-65],[0,-31],[-1,-41],[0,-1],[-3,-37],[0,-34],[0,-6],[-1,-96],[-1,-83],[-1,-104],[-5,-183],[1,-131],[-1,-50],[-4,-184],[0,-77],[-1,-103],[2,-77],[1,-74],[1,-31],[-3,-31],[-6,-37],[-13,-115]],[[67487,61344],[-2,0],[-81,-1],[-102,0],[-159,-2],[-51,0],[-82,-1],[-58,0],[-35,-1],[-169,-1],[-120,-1],[-191,0],[-117,-1],[-132,0],[-131,0],[-100,0],[-156,-1],[-54,-1],[-74,0],[-110,-1],[-31,0],[-41,-1],[-31,0],[-161,-1],[-40,0],[-72,0],[-46,-1],[-41,1],[-49,-1],[-231,-1],[-161,0],[-59,-1],[-157,0],[-72,0],[-39,-1],[-173,0],[-87,-1],[-46,0],[-114,0],[-283,-1],[-77,-1],[-44,0],[-56,0],[-133,-1],[-49,0],[-65,0],[-41,-1],[-46,0],[-80,0],[-1,0],[-29,0],[-86,-1],[-78,0],[-35,-1],[-55,0],[-77,-1],[-37,0],[-50,0],[-37,-1],[-37,0],[-1,0],[-31,0],[-58,0],[-203,-1],[-150,-1],[-278,-1],[-169,-2],[-126,0],[-151,-1],[-104,-1],[-36,0],[-89,-1],[-61,0],[-36,-1],[-79,0],[-71,0],[-102,-1],[-118,-1],[-73,0],[-32,0],[-38,0],[-135,-1],[-43,0],[-68,0],[-47,0],[-78,-1],[-44,0],[-50,0],[-146,-1],[-67,-1],[-76,0],[-34,0],[-40,-1],[-43,0],[-37,0],[-40,-1],[-83,0],[-29,-1],[-1,0],[-45,0],[-51,-1],[-106,-1],[-85,0],[-74,-1],[-46,0],[-42,-1],[-45,-1],[-79,0],[-105,-1],[-22,0],[-30,0],[-64,-1],[-78,-1],[-74,0],[-63,-1],[-100,0],[-44,-1],[-46,0],[-31,0],[-41,-1],[-80,0],[-90,-1],[-283,-3],[-52,0],[-91,-1],[-50,-1],[-175,-2],[-62,0],[-51,0],[-98,-1],[-131,-2],[-52,-1],[-30,0],[-58,-1],[-167,-1],[-52,-1],[-77,-1],[-270,-3],[-55,-1],[-115,-1],[-42,-1],[-35,0],[-70,-1]],[[76037,65369],[-3,-66],[-3,-46],[-3,-65],[0,-26],[1,-53],[2,-63],[1,-48],[6,-184],[4,-104],[5,-76],[13,-234],[3,-42],[3,-171],[2,-51],[0,-3],[0,-52],[2,-61],[2,-30],[2,-88],[5,-85],[6,-101],[0,-185],[3,-87],[1,-52],[4,-148],[2,-80],[2,-132],[2,-49],[2,-181],[0,-1],[0,-76],[2,-105],[1,-40],[0,-49],[1,-89],[-1,-41],[0,-65],[0,-72],[3,-36],[7,-89],[6,-66],[1,-68],[0,-104],[0,-38],[1,-47],[0,-35],[0,-53],[0,-28],[0,-6],[1,-36],[0,-59],[4,-253],[1,-69],[1,-92],[1,-29],[0,-27],[0,-30],[0,-38],[-1,-18],[-1,-88],[0,-41],[0,-84],[-1,-47],[0,-65],[-1,-166],[0,-77],[0,-37],[0,-99],[-1,-43],[0,-35],[-1,-105],[-1,-70],[-1,-80],[0,-30],[-1,-33],[-2,-122],[-2,-172],[0,-40],[1,-117],[1,-48],[0,-27],[0,-40],[0,-84],[0,-58],[0,-148],[-1,-101],[-1,-79],[0,-28],[0,-23],[0,-9],[-1,-87],[0,-11],[-1,-14],[1,-26],[-1,-25],[0,-3],[-1,-28],[0,-30],[0,-27],[0,-30],[0,-35],[-1,-103],[0,-28],[0,-58],[-1,-49],[0,-27],[0,-40],[0,-68],[-1,-187],[0,-9],[0,-24],[0,-26],[0,-28],[0,-34],[0,-65]],[[76111,57789],[-3,-99],[0,-174],[0,-85],[-2,-280],[11,-91],[-3,-178],[0,-183],[0,-181],[0,-223],[0,-7],[0,-281],[0,-35],[0,-3],[-2,-112],[0,-1],[-7,-246],[0,-201],[0,-307],[0,-1],[0,-99],[0,-101],[4,-380],[0,-25]],[[76109,54496],[-35,0],[-25,0],[-13,0],[-76,-1],[-51,1],[-63,0],[-50,0],[-39,0],[-38,0],[-58,-1],[-108,0],[-32,0],[-128,1],[-43,1],[-52,0],[-75,0],[-102,1],[-36,0],[-34,0],[-44,0],[-74,0],[-60,0],[-47,0],[-60,0],[-39,0],[-35,0],[-37,-1],[-47,0],[-72,0],[-44,0],[-45,-1],[-62,0],[-22,0],[-14,0],[-119,-1],[-80,0],[-43,-1],[-85,0],[-54,-1],[-39,0],[-15,0],[-42,0],[-58,-1],[-43,0],[-31,0],[-20,0],[-36,-1],[-39,0],[-32,-1],[-43,0],[-64,0],[-82,-1],[-65,0],[-83,-1],[-33,0],[-31,0],[-32,4],[-68,1],[-107,-1],[-37,-1],[-40,0],[-32,0],[-50,0],[-47,-1],[-37,0],[-40,0],[-39,-1],[-42,-1],[-32,0],[-85,-1],[-32,-1],[-92,-1],[-83,0],[-60,-1],[-70,-1],[-31,0],[-61,-1],[-47,-1],[-31,0],[-48,0],[-33,0],[-48,0],[-40,0],[-60,0],[-32,0],[-75,0],[-36,0],[-50,0],[-47,0],[-30,-1],[-46,0],[-33,0],[-33,-1],[-71,0],[-33,0],[-54,-1],[-45,0],[-33,-1],[-31,0],[-45,0],[-58,0],[-56,-1],[-33,-1],[-33,0],[-60,0],[-34,0],[-34,-1],[-70,0],[-30,0],[-40,-1],[-38,0],[-39,0],[-42,0],[-53,-1],[-33,0],[-40,0],[-57,0],[-11,0],[-25,-1],[-60,0],[-34,0],[-32,0],[-37,-1],[-52,0],[-33,0],[-99,-1],[-63,0],[-42,0],[-62,0],[-36,0],[-47,-1],[-39,1],[-41,0],[-40,1],[-39,-1],[-56,0],[-38,0],[-68,-1],[-73,0],[-37,-1],[-55,-1],[-42,0],[-35,-1],[-48,-1],[-61,-1],[-85,-2],[-57,-1],[-180,-1],[-107,-1],[-69,-2],[-6,-1],[-30,0],[-142,-1],[-138,-1],[-94,-2],[-88,-1],[-283,-5],[-53,0],[-238,-3]],[[67469,54442],[0,114],[0,52],[3,88],[1,40],[0,2],[0,76],[15,72],[-6,53],[0,55],[-1,112],[-1,53],[0,35],[-1,52],[0,51],[-1,53],[-1,42],[0,26],[0,27],[-1,41],[-1,60],[1,38],[0,27],[0,35],[0,20],[0,120],[1,36],[-1,34],[0,1],[1,37],[0,45],[0,90],[0,64],[0,27],[0,3],[-1,77],[0,79],[-1,153],[-1,0],[-1,33],[-1,181],[-1,91],[-2,115],[-1,76],[-1,53],[-11,253],[-1,30],[-1,94],[0,114],[-1,34],[0,9],[-1,70],[0,2],[0,47],[0,50],[0,41],[-1,53],[0,83],[-1,80],[-1,53],[0,40],[-1,58],[-1,101],[0,61],[-1,54],[0,66],[-1,55],[0,30],[0,25],[-1,67],[-1,72],[0,44],[-1,45],[-1,53],[0,61],[-1,27],[0,61],[-1,37],[0,39],[-1,26],[0,35],[-1,72],[-1,56],[6,34],[13,39],[3,39],[1,44],[0,26],[0,55],[0,8],[0,24],[0,25],[0,26],[0,250],[0,5],[0,44],[1,48],[-1,28],[1,33],[-1,35],[0,1],[0,17],[-1,25],[0,20],[0,3],[2,31],[1,236],[0,35],[0,99],[0,145],[1,121],[3,183],[2,140],[0,43],[1,36],[1,99],[3,47],[3,28],[4,41],[8,51],[0,1]],[[86898,63544],[2,-58],[1,-54],[0,-31],[1,-20],[0,-12],[4,-161],[-2,-34],[-2,-33],[1,-29],[2,-42],[3,-74],[1,-30],[1,-43],[1,-43],[1,-44],[1,-56],[1,-33],[1,-40],[0,-25],[0,-92],[2,-119],[0,-66],[9,-282],[3,-195],[10,-183],[4,-151],[0,-48],[0,-1],[2,-164],[8,-318],[3,-68],[10,-283],[0,-16],[1,-11],[0,-74],[0,-4],[1,-91],[2,-188],[1,-43],[4,-152],[9,-189],[0,-7],[-3,-133],[4,-26],[0,-28],[-1,-32],[2,-36],[-1,-34],[1,-45],[1,-28],[1,-41],[1,-34],[1,-48],[1,-42],[1,-41],[0,-48],[1,-32],[1,-51],[8,-248],[1,-123],[2,-87],[4,-94],[1,-31],[5,-141],[1,-76],[3,-136],[3,-153],[3,-129],[3,-149],[2,-88]],[[87030,57783],[-33,-1],[-109,-1],[-31,0],[-101,-1],[-164,0],[-165,-1],[-104,0],[-195,-1],[-73,0],[-68,0],[-30,0],[-61,0],[-31,0],[-138,0],[-139,-1],[-106,0],[-197,-1],[-50,0],[-1,0],[-58,0],[-52,0],[-77,-1],[-16,0],[-74,0],[-59,0],[-67,0],[-83,0],[-42,0],[-5,0],[-38,1],[-143,2],[-60,1],[-61,0],[-41,-1],[-50,0],[-153,-1],[-76,-1],[-33,0],[-40,-1],[-43,0],[-37,0],[-40,-1],[-56,0],[-128,-1],[-83,0],[-37,2],[-34,0],[-236,-1],[-60,0],[-224,-1],[-146,0],[-151,-1],[-91,0],[-84,-1],[-2,0],[-35,0],[-38,0],[-31,2],[-135,-1],[-64,-1],[-82,-1],[-175,1],[-247,0],[-5,0],[-146,1],[-280,1],[-579,2],[-593,3],[-571,3],[-357,1],[-8,0],[-60,1],[-6,0],[-73,0],[-2,0],[-62,0],[-169,0],[-82,1],[-344,3],[-560,-1],[-574,0],[-356,-1],[-71,-1],[-149,0],[-46,3],[-63,-2],[-94,3],[-386,1]],[[30343,61240],[7,-68],[2,-62],[1,-63],[1,-55],[7,-223],[-2,-276],[1,-31],[0,-33],[0,-83],[-1,-31],[2,-102],[0,-34],[0,-27],[0,-26],[-1,-42],[1,-31],[0,-78],[1,-62],[0,-78],[1,-42],[0,-36],[0,-80],[0,-91],[0,-52],[0,-35],[0,-42],[0,-40],[-1,-90],[0,-1],[0,-62],[0,-30],[0,-41],[0,-88],[0,-52],[0,-63],[0,-38],[0,-86],[0,-38],[-1,-108],[1,-43],[-1,-28],[0,-39],[0,-8],[0,-48],[0,-60],[0,-38],[0,-40],[1,-157],[-1,-115],[0,-28],[0,-33],[0,-43],[0,-3],[0,-106],[-1,-79],[0,-61],[-1,-76],[0,-80],[-1,-68],[0,-53],[0,-35],[0,-94],[2,-38],[-4,-466],[19,-48],[2,-52],[1,-26],[1,-32],[1,-70],[2,-61],[0,-1],[2,-140],[2,-144],[1,-50],[0,-44],[1,-49],[0,-38],[1,-72],[1,-36],[0,-31],[1,-104],[0,-27],[1,-92],[0,-39],[2,-52],[1,-24],[1,-65],[2,-72],[2,-130],[2,-73],[2,-64],[1,-64],[2,-102],[0,-40],[1,-15],[0,-24],[0,-38],[0,-30],[1,-1],[7,-73],[0,-2],[4,-164],[-30,-14]],[[30390,54678],[-293,2],[-252,-1],[-160,0],[-313,2],[-37,-4],[-87,1],[-48,0],[-51,0],[-31,0],[-48,0],[-48,0],[-46,1],[-45,0],[-99,0],[-69,0],[-40,0],[-38,0],[-38,-2],[-36,2],[-39,0],[-63,0],[-55,0],[-156,3],[-68,0],[-410,2],[-39,1],[-39,0],[-33,-12],[-83,6],[-36,1],[-52,0],[-50,0],[-94,7],[-171,-1],[-59,0],[-66,-1],[-88,0],[-34,-1],[-583,-3],[-560,-4],[-5,0],[-88,0],[-149,-3],[-200,0],[-144,0],[-302,-1],[-41,0],[-34,0],[-55,0],[-62,0],[-49,0],[-45,0],[-31,0],[-31,-1],[-67,0],[-63,0],[-34,0],[-73,0],[-44,0],[-49,0],[-32,0],[-58,0],[-58,0],[-95,-1],[-47,1],[-46,-1],[-81,0],[-39,0],[-49,0],[-43,0],[-62,0],[-33,0],[-87,0],[-42,0],[-37,0],[-38,0],[-37,-1],[-37,1],[-47,0],[-45,0],[-38,0],[-41,0],[-45,0],[-31,0],[-34,0],[-31,1],[-44,-2],[-39,1],[-30,0],[-159,1],[-211,-1],[-303,-2],[-299,-3],[-139,-2],[-464,1],[-28,0],[-358,1],[-1,0],[-67,0],[-100,0],[-135,0],[-71,0],[-101,-2],[-31,0]],[[20454,54664],[-5,34],[-1,19],[-10,1],[-3,0],[-50,47],[-9,-1],[-45,-3],[-83,-29],[-9,-4],[-11,0],[-65,1],[-1,0],[-81,11],[-16,3],[-61,23],[-40,26],[-24,15],[-18,5],[-44,12],[-33,32],[11,40],[37,28],[102,57],[26,14],[55,44],[20,23],[23,25],[8,9],[4,7],[31,52],[1,1],[58,147],[10,67],[4,59],[2,22],[-5,40],[-3,10],[-12,34],[0,1],[-102,77],[-16,23],[-28,40],[-8,21],[-7,18],[-1,2],[-2,36],[-2,28],[-1,14],[9,61],[0,1],[1,8],[1,3],[-44,256],[-4,121],[-10,44],[-9,7],[0,1],[0,4],[-1,21],[0,5],[1,34],[2,60],[13,94],[8,17],[16,39],[19,23],[80,100],[19,25],[21,12],[108,62],[5,11],[34,77],[1,4],[-34,22],[-99,38],[-3,1],[-1,2],[-68,107],[-3,5],[18,67],[19,70],[119,-55],[188,85],[51,46],[10,8],[20,44],[1,3],[11,26],[1,6],[3,25],[18,141],[5,2],[4,2],[-4,6],[-5,8],[12,151],[17,50],[40,71],[4,7],[2,7],[14,52],[6,21],[14,66],[20,90],[-20,15],[7,6],[-4,14],[-30,49],[1,19],[4,55],[-5,8],[-4,6],[5,27],[14,74],[5,25],[64,74],[35,33],[46,44],[14,22],[4,36],[9,81],[1,17],[-3,88],[-7,22],[-4,12],[0,23],[0,15],[18,97],[4,19],[2,36],[2,14],[4,35],[1,27]],[[99426,63628],[0,-21],[-1,-22],[0,-115],[0,-33],[-1,-42],[-1,-49],[-1,-73],[-1,-28],[-1,-65],[0,-4],[0,-3],[-1,-65],[-2,-93],[-1,-49],[-1,-45],[-1,-21],[-1,-77],[-1,-84],[-4,-94],[-2,-60],[-1,-36],[0,-7],[-1,-38],[-1,-23],[-1,-42],[0,-27],[0,-38],[-3,-99],[-1,-55],[-1,-18],[0,-16],[0,-38],[-1,-15],[0,-3],[0,-10],[-1,-18],[0,-13],[-2,-61],[-2,-91],[-1,-32],[0,-11],[-2,-54],[0,-29],[0,-3],[-1,-15],[-1,-19],[-1,-35],[-2,-74],[-1,-28],[-1,-30],[-2,-34],[-1,-36],[-2,-52],[-1,-11],[0,-15],[-1,-41],[-1,-26],[-2,-67],[-1,-30],[0,-5],[-1,-24],[-1,-11],[0,-17],[-1,-32],[-1,-51],[0,-4],[0,-2],[-1,-40],[-1,-9],[0,-4],[0,-19],[-2,-43],[-1,-25],[-2,-52],[0,-18],[0,-5],[0,-10],[0,-8],[0,-21],[0,-6],[-1,-12],[-1,-45],[0,-9],[-1,-15],[0,-7],[0,-18],[0,-15],[-1,-9],[-1,-34],[0,-11],[-1,-27],[0,-8],[-2,-27],[-1,-25],[-1,-27],[-1,-32],[-3,-85],[-2,-61],[-1,-32],[-2,-40],[-1,-45],[-2,-54],[0,-6],[-1,-21],[-2,-63],[0,-11],[0,-2],[-2,-61],[-2,-57],[-4,-103],[-1,-32],[-2,-72],[-4,-111],[-1,-33],[-2,-52],[-1,-34],[-2,-66],[-3,-57],[-1,-37],[-1,-46],[-1,-21],[-2,-52],[-1,-35],[0,-40],[-2,-38],[0,-38],[-1,-21],[-2,-52],[-2,-40],[0,-10],[0,-18],[-1,-32],[-1,-32],[-1,-46],[-2,-59],[-1,-10],[-1,-34],[-2,-58],[-4,-133],[-2,-76],[0,-1],[-12,-250],[-2,-113],[-3,-174],[-2,-143],[-1,-43],[0,-1],[-8,-361],[-2,-97],[-2,-65],[-2,-48],[-5,-164],[0,-2],[-7,-249],[-1,-53],[-2,-62],[-9,-276],[-2,-82],[0,-15],[-1,-31],[-3,-100],[-2,-52],[-3,-91],[-1,-42],[-1,-37],[0,-7]],[[99211,55983],[-74,1],[-68,1],[-60,1],[-81,1],[-39,1],[-73,1],[-79,1],[-76,1],[-24,1],[-9,0],[-48,0],[-85,2],[-33,1],[-43,0],[-54,1],[-70,1],[-74,0],[-48,1],[-52,1],[-49,1],[-53,1],[-94,0],[-105,2],[-46,0],[-48,1],[-108,1],[-55,1],[-52,1],[-86,1],[-42,0],[-57,0],[-39,1],[-48,1],[-41,0],[-56,1],[-87,0],[-58,1],[-98,1],[-32,1],[-10,0],[-123,2],[-10,-31],[-107,0],[-459,2],[-86,1],[-66,0],[-63,0],[-83,0],[-60,0],[-61,0],[-42,0],[-31,0],[-77,1],[-64,0],[-38,-1],[-37,0],[-50,1],[-11,0],[-44,0],[-37,0],[-34,0],[-62,0],[-40,0],[-47,-1],[-31,1],[-64,0],[-89,-1],[-43,0],[-64,0],[-83,0],[-35,-1],[-53,0],[-56,0],[-39,0],[-50,0],[-30,-1],[-3,0],[-75,0],[-32,0],[-64,-1],[-54,0],[-40,0],[-47,0],[-47,0],[-64,1],[-38,-1],[-40,1],[-41,0],[-70,0],[-37,0],[-119,0],[-59,0],[-55,0],[-49,0],[-37,-1],[-54,0],[-63,0],[-70,-1],[-34,-1],[-71,0],[-32,-1],[-46,0],[-75,-1],[-42,0],[-31,0],[-63,-1],[-48,0],[-59,-1],[-46,0],[-66,-1],[-37,0],[-55,0],[-96,0],[-60,0],[-32,-1],[-165,0],[-119,0],[-58,0],[-40,0],[-55,0],[-46,-1],[-74,0],[-53,0],[-35,0],[-47,-1],[-48,0],[-34,0],[-31,0],[-139,-2],[-42,1],[-34,0],[-51,-1],[-33,-1],[-41,0],[-81,-1],[-65,-1],[-38,0],[-25,0],[-44,0],[-81,-2],[-56,0],[-42,-1],[-66,0],[-70,-1],[-47,0],[-43,0],[-56,0],[-45,1],[-139,-2],[-40,0],[-47,-1],[-36,0],[-51,0],[-40,-1],[-63,0],[-90,0],[-10,1],[-187,0],[-100,-5],[-81,3],[-162,4],[-73,0],[-35,0],[-81,2],[-43,1],[-126,3],[-11,1],[-20,0],[-234,1],[-102,0],[-168,0],[-39,1],[-75,-1],[-14,0],[-150,-1],[-124,0],[-129,1],[-88,-1],[-14,0],[-24,0],[-71,-1],[-83,-2],[-175,-1],[-188,0]],[[87420,55969],[-67,0],[-296,-4],[0,37],[0,55],[0,30],[0,40],[0,34],[0,5],[0,39],[-1,38],[-1,58],[0,31],[0,75],[-1,89],[1,39],[0,32],[0,78],[-1,52],[-1,103],[-1,129],[0,11],[-1,68],[-1,43],[-1,82],[-4,228],[-1,56],[-9,231],[-5,135]],[[67469,54442],[3,-185],[1,-50],[-1,-40],[0,-93],[-58,0],[-46,0],[-126,-2],[-32,0],[-34,0],[-34,0],[-50,-1],[-50,0],[-78,-1],[-56,-1],[-117,-1],[-122,0],[-46,0],[-85,-1],[-50,-1],[-32,0],[-66,0],[-48,0],[-88,-1],[-42,-2],[-104,-4],[-82,-4],[-142,-6],[-136,-5],[-36,-1],[-35,0],[-84,-1],[-35,0],[-62,-1],[-50,-1],[-40,0],[-34,-1],[-36,0],[-55,0],[-13,0],[-22,-1],[-43,-9]],[[65203,54029],[-55,-1],[-48,0],[-6,0],[-65,0],[-92,-1],[-32,0],[-35,0],[-53,-1],[-52,0],[-7,0],[-209,-2],[-215,-1],[-14,0],[-99,-1],[-59,0],[-5,0],[-39,0],[-55,0],[-30,7],[-83,0],[-66,-1],[-32,0],[-35,0],[-51,0],[-65,-1],[-37,0],[-32,0],[-56,0],[-54,-1],[-53,0],[-192,1],[-68,0],[-22,1],[-61,0],[-31,0],[-34,0],[-50,1],[-32,1],[-64,5],[-33,0],[-38,0],[-35,-1],[-37,0],[-44,-1],[-33,-1],[-35,0],[-103,-1],[-36,-1],[-54,-1],[-43,-1],[-4,0],[-37,0],[-60,-1],[-31,0],[-36,0],[-28,0],[-14,0],[-101,0],[-190,0],[-34,0],[-36,0],[-32,0],[-31,0],[-36,0],[-85,-1],[-42,0],[-34,0],[-50,0],[-43,0],[-50,0],[-31,0],[-35,0],[-33,0],[-36,0],[-32,-1],[-53,0],[-38,0],[-41,0],[-94,0],[-33,-1],[-9,0],[-25,0],[-64,0],[-47,0],[-41,0],[-32,-1],[-129,0],[-35,0],[-73,0],[-111,0],[-52,0],[-51,0],[-38,0],[-32,0],[-90,0],[-60,0],[-38,0],[-37,0],[-84,1],[-44,-1],[-10,0],[-30,0],[-47,0],[-39,0],[-48,0],[-42,0],[-54,0],[-73,-1],[-50,0],[-60,2],[-46,0],[-59,-1],[-37,0],[-15,1],[-30,1],[-38,2],[-51,0],[-49,1],[-43,0],[-90,1],[-68,0],[-37,1],[-50,-1],[-48,0],[-47,-1],[-48,0],[-47,-1],[-45,0],[-43,-1],[-32,0],[-37,-1],[-59,0],[-88,-1],[-56,-1],[-107,0],[-89,0],[-75,0],[-43,-1],[-44,0],[-28,0],[-24,0],[-37,-1],[-63,0],[-56,0],[-38,0],[-86,-1],[-69,-1],[-43,0],[-43,0],[-38,0],[-83,-1],[-51,-1],[-41,0],[-84,-1],[-41,-1],[-57,0],[-79,-1],[-56,-1],[-37,-1],[-38,0],[-37,-1],[-33,0],[-74,-1],[-40,-1],[-35,-1],[-37,0],[-4,0],[-42,-1],[-41,0],[-39,-1],[-35,0],[-60,-1],[-6,0],[-76,-1],[-32,0],[-63,-1],[-60,0],[-31,-1],[-38,0]],[[56083,54002],[-35,368],[2,98],[1,60],[1,28],[0,35],[-4,29],[0,1],[0,35],[-2,76],[0,45],[-2,140],[-1,179],[1,51],[-4,134],[-2,207],[0,44],[5,111],[0,30],[-5,79],[-1,50],[6,42],[0,12],[0,58],[0,30],[0,57],[0,76],[0,100],[0,28],[0,118],[0,53],[-2,144],[-1,27],[0,29],[-2,82],[-6,239],[0,1],[0,128],[-1,66],[0,170],[1,133],[0,45],[0,42],[-1,113],[0,33],[-2,191],[-2,175],[-1,87],[-1,75],[0,34],[-2,168],[0,70],[1,67],[0,54],[0,35],[0,75],[1,63],[-1,58],[0,31],[-1,34],[0,10],[0,22],[-1,33],[-1,42],[0,33],[-1,26],[0,30],[-1,54],[-1,10],[-1,31],[-1,27],[-1,37],[0,52],[1,35],[0,32],[0,40],[0,95],[0,64],[-1,72],[0,26],[-1,73],[0,51],[-1,70],[-1,70],[-2,28],[1,25],[-2,79],[0,50],[-1,47],[-1,93],[-1,39],[-1,44],[0,45],[-1,57]],[[42318,60334],[0,-185],[0,-197],[1,-166],[1,-72],[0,-110],[0,-60],[0,-45],[-1,-34],[1,-17],[0,-67],[0,-57],[0,-59],[0,-49],[0,-62],[0,-84],[0,-39],[0,-42],[0,-39],[0,-80],[0,-103],[0,-64],[0,-118],[1,-80],[0,-89],[0,-94],[0,-86],[-1,-95],[0,-72],[-1,-82],[1,-30],[0,-30],[0,-47],[1,-428],[-1,-126],[-1,-40],[1,-58],[0,-3],[-3,-186],[0,-170],[1,-384],[1,-268],[0,-96],[12,-265],[-6,-104],[6,-240],[0,-3],[3,-123],[2,-183],[4,-180],[-1,-45],[-5,-179],[-1,-52],[1,-21],[2,-63],[1,-73],[0,-160],[1,-143],[-5,-366]],[[42333,53921],[3,-30],[0,-147],[0,-1],[-2,-172],[-2,-103],[-1,-86],[5,-44],[0,-49],[1,-86],[3,-371],[2,-108],[-4,-256]],[[42338,52468],[-124,0],[-52,0],[-36,0],[-99,0],[-115,0],[-35,0],[-56,0],[-53,0],[-34,0],[-105,0],[-103,0],[-35,0],[-87,0],[-62,0],[-237,1],[-76,0],[-141,0],[-90,0],[-45,0],[-76,0],[-45,1],[-63,0],[-37,0],[-47,0],[-125,0],[-109,1],[-126,0],[-165,1],[-48,0],[-101,0],[-49,0],[-100,1],[-79,1],[-41,0],[-45,1],[-119,1],[-126,0],[-63,-1],[-65,0],[-16,0],[-28,1],[-42,0],[-36,0],[-90,1],[-41,0],[-36,0],[-91,1],[-36,0],[-110,1],[-91,0],[-144,1],[-81,0],[-40,1],[-133,0],[-71,1],[-60,0],[-98,1],[-73,1],[-93,0],[-60,1],[-86,0],[-43,0],[-63,0],[-76,0],[-1,0],[-31,0],[-209,1],[-121,-1],[-115,8],[-719,4],[-51,-1],[-20,0],[-57,-1],[-85,1],[-473,4],[-386,1],[-48,-2],[-34,1],[-97,0],[-203,2],[-31,0],[-55,0],[-178,1],[-111,0],[-89,1],[-197,1],[-57,0],[-32,3],[-48,0],[-73,0],[-60,0],[-91,1],[-78,1],[-31,-1],[-74,0],[-48,0],[-120,3],[-176,0],[-51,0],[-285,2]],[[32851,52514],[-1065,7],[-226,1],[-50,5],[-2,0],[-610,0],[-328,1],[-4,0],[-74,0],[-118,0],[5,209],[-1,31],[1,59],[1,64],[0,1],[1,68],[1,29],[-1,83],[1,187],[0,29],[1,60],[0,2],[0,88],[2,364],[0,236],[1,130],[0,33],[1,129],[2,163],[0,3],[1,182]],[[56083,54002],[-49,1],[-165,-7],[-40,-2],[-45,-2],[-31,-2],[-14,0],[-29,-2],[-88,-3],[-153,-9],[-102,-3],[-103,0],[-19,1],[-24,0],[-5,0],[-89,-1],[-40,-1],[-86,-1],[-60,-2],[-31,0],[-32,-1],[-10,0],[-33,-1],[-33,0],[-48,0],[-76,0],[-83,0],[-52,-1],[-85,-1],[-53,0],[-75,-1],[-33,-1],[-104,0],[-52,-1],[-96,-2],[-60,-1],[-39,0],[-185,-3],[-42,0],[-42,0],[-66,-2],[-140,-2]],[[53471,53952],[-98,2],[-19,0],[-45,0],[-51,0],[-18,1],[-193,-1],[-129,0],[-321,-3],[-76,0],[-348,-2],[-172,-2],[-257,-1],[-44,0],[-177,-1],[-65,0],[-145,0],[-349,-1],[-40,0],[-42,0],[-516,-2],[-55,0],[-567,-7],[-301,-3],[-274,-8],[-130,-3],[-279,0],[-148,-1],[-42,0],[-242,0],[-100,4],[-182,-1],[-31,0],[-258,-1],[-426,-1],[-137,0],[-2,0],[-287,-1],[-570,-1],[-406,-1],[-164,3],[-54,1],[-3,0],[-64,2],[-48,-1],[-188,1],[-76,0],[-64,0],[-67,0],[-239,-5],[-102,5],[-12,-1],[-26,0],[-26,0],[-183,-3],[-3,0],[-60,-1],[-95,1],[-54,0],[-42,0],[-54,0],[-37,1],[-52,0],[-20,0],[-21,0],[-139,1],[-313,4],[-243,3],[-215,-2],[-361,-4],[-76,0],[-36,-3],[-33,0],[-390,1],[-36,0]],[[20454,54664],[-2,-15],[-1,-15],[0,-2],[-14,-47],[-2,1],[-2,0],[-3,-25],[-1,-14],[-7,-13],[-21,-45],[-3,-4],[-1,-3],[-20,-25],[-11,-14],[-16,-11],[-26,-17],[-26,-22],[-78,-67],[-42,-19],[-79,-35],[-46,-38],[-6,-5],[-8,-7],[-1,-7],[-1,-29],[-1,-18],[18,-24],[5,-4],[53,-40],[45,-23],[163,-60],[79,-18],[15,-4],[64,-4],[7,2],[48,12],[171,68],[65,6],[38,-2],[9,-3],[45,-13],[2,0],[53,-44],[-1,-12],[-2,-42],[0,-3],[-10,-9],[-33,-29],[-1,-1],[-92,-48],[-73,-26],[-7,-3],[-17,-9],[-4,-5],[-9,-11],[0,-4],[-3,-16],[9,-14],[39,-40],[55,-56],[6,-5],[47,-32],[66,-27],[279,-62],[173,-38],[192,-15],[54,-22],[13,-5],[49,-20],[19,-13],[22,-15],[74,-51],[15,-23],[81,-72],[119,-138],[44,-66],[6,-16],[4,-9],[10,-27],[-5,-24],[-6,-26],[-6,-26],[-50,-52],[-70,-36],[-117,-34],[-42,-12],[-7,-7],[-40,-40],[-6,-6],[24,-52],[63,-51],[46,-20],[100,-45],[67,-46],[21,-13],[72,-21],[10,-1],[48,-3],[75,-11],[86,-14],[7,-1],[10,-1],[52,-16],[13,-8],[49,-32],[2,-1],[22,-31],[-7,-44],[-8,-10],[-5,-7],[-6,-9],[-5,-2],[-38,-20],[-10,-5],[-57,-16],[-32,-9],[-8,-4],[-27,-14],[-16,-15],[-9,-8],[0,-8],[-8,-123],[-17,-42],[-44,-45],[-8,-23],[-54,-71],[-92,-82],[-38,-19],[-17,-8],[-43,-22],[-21,-5],[-25,-6],[-10,-2],[-44,-8],[-91,-2],[-95,-10],[-8,0],[-6,-4],[-63,-41],[-9,-55],[-16,-138],[1,-116],[1,-141],[0,-2],[-4,-128],[13,-96],[2,-20],[21,-47],[8,-18],[20,-45],[21,-35],[60,-67],[4,-3],[113,-92],[1,0],[2,0],[5,1],[1,0],[8,-20],[20,-47],[16,-35],[13,-31],[-5,0],[6,-57],[-1,-155],[-4,-8],[-3,-5],[3,-2],[7,-5],[-9,-57],[-1,-3],[-16,-45],[0,-2],[-8,-13],[-58,-98],[-5,-9],[-80,-107],[-8,-53],[9,-14],[-5,-33],[-2,-17],[7,-67],[2,-18],[19,-104],[8,-43],[9,-23],[34,-87],[7,-61],[-1,-1],[-5,-5],[-16,-144],[-1,-7],[-5,-8],[-16,-28],[-17,-94],[-11,-62],[-6,-25],[-7,-32],[-1,0],[-12,-16],[-4,-25],[-2,-15],[-23,-46],[-14,-17],[-18,-22],[-44,-78],[-8,-43],[-7,-34],[3,-30],[5,-26],[1,-5],[2,-5],[11,-27],[15,-27],[14,-14],[11,-10],[8,-5],[57,-36],[1,-2],[9,-16],[4,-6],[0,-3],[-1,-35],[0,-9],[-5,-28],[-1,-2],[-34,-46],[-2,-3],[-47,-44],[-80,-55],[-5,-19],[-2,-6],[1,-1],[89,-109],[30,-35],[-6,-37],[-7,-9],[-6,-7],[-9,-11],[-47,-63],[-3,-32],[10,-33],[-14,-38],[-10,-24],[-20,-34],[-4,-7],[-14,-14],[-27,-27],[-10,-8],[-36,-31],[-31,-28],[-24,-40],[-8,-21],[-4,-9],[-3,-30],[1,-4],[9,-35],[1,-1],[22,-31],[27,-38],[2,-7],[5,-14],[5,-15],[0,-7],[1,-21],[0,-25],[-3,-28],[-8,-21],[-4,-10],[-1,-2],[-17,-23],[-25,-29],[-2,-2],[-9,-6],[-13,-9],[-32,-25],[-6,-2],[-24,-10],[-23,-14],[-17,-10],[-19,-35],[-7,-21],[-7,-18],[-2,-18],[-1,-18],[-3,-34],[4,-45],[14,-38],[3,-7],[22,-34],[21,-25],[43,-61],[6,-9],[6,-17],[2,-7],[2,-12],[2,-14],[-3,-39],[-17,-52],[0,-1],[-8,-31],[0,-10],[2,-38],[1,-2],[14,-31],[32,-62],[6,-12],[47,-73],[6,-6],[77,-74],[33,-42],[23,-30],[34,-38],[21,-23],[33,-55],[2,-4],[1,-6],[3,-30],[1,-1],[-11,-76],[-4,-24],[-11,-61],[-8,-38]],[[21595,46028],[-589,-3],[-142,0],[-33,-2],[-160,2],[-42,-2],[-91,0],[-4,0],[-144,0],[-145,0],[-259,-2],[-42,-1],[-4,0],[-162,0],[-100,0],[-335,-2],[-88,0],[-84,0],[-64,0],[-42,-3],[-178,0],[-45,0],[-127,0],[-425,-2],[-88,0],[-167,-1],[-221,0],[-202,0],[-153,0],[-121,0],[-171,-1],[-51,0],[-42,1]],[[17074,46012],[0,55],[-1,211],[-1,119],[1,60],[-1,191],[-1,40],[0,46],[-1,53],[-1,130],[0,46],[0,5],[-1,0],[-1,23],[0,22],[0,44],[0,40],[-1,86],[-1,49],[0,69],[-1,75],[-1,13],[0,55],[-3,12],[0,2],[-1,21],[-1,209],[-2,264],[0,38],[0,29],[0,53],[-1,125],[0,115],[0,57],[0,46],[0,83],[-1,59],[0,107],[-2,443],[0,63],[-1,301],[0,139],[-1,226],[-1,110],[0,72],[0,84],[-1,96],[-3,159],[0,28],[-1,71],[0,32],[0,34],[0,69],[0,27],[1,50],[-1,79],[0,1],[1,62],[3,122],[0,4],[0,2],[-2,0],[-3,4],[0,47],[0,40],[0,32],[0,42],[0,10],[1,16],[1,28],[1,169],[0,101],[0,47],[0,185],[-2,521],[0,102],[-1,48],[-1,17],[0,22],[0,11],[1,6],[0,62],[-1,121],[0,33],[0,45],[0,76],[1,200],[1,145],[1,142],[1,120],[1,44],[0,103],[2,131],[1,68],[0,29],[1,131],[2,98],[0,26],[0,15],[2,99],[1,36],[0,6],[1,68],[0,93],[0,105],[0,148],[0,41],[0,118],[0,67],[0,32],[0,145],[-1,171],[0,26],[1,94],[1,52],[1,36],[4,197],[1,35],[4,169],[2,86],[1,50],[0,7],[-1,278],[0,11],[0,1],[0,2],[-2,88],[0,96],[2,264],[1,172],[1,231],[3,331],[1,189],[3,372],[2,192],[1,108],[1,70],[2,187],[0,34],[2,99],[0,2],[1,145],[1,76],[0,2],[4,383],[0,1],[0,64],[1,85],[0,60],[-2,34],[-1,17],[6,116]],[[87420,55969],[2,-52],[-2,-60],[0,-1],[2,-72],[3,-172],[2,-100],[2,-93],[4,-182],[2,-89],[1,-41],[3,-178],[16,-55],[-3,-194],[-3,-150],[3,-128],[-1,-140],[-1,-54],[0,-44],[0,-62],[-1,-142],[0,-1],[-1,-122],[-1,-42],[-2,-148],[-1,-36],[-3,-365],[-2,-189],[-3,-334],[0,-31],[-168,0],[-77,-3],[-350,-2],[0,-156],[1,-46],[-4,-108],[-3,-113],[0,-75],[0,-1],[3,-26],[-4,-148],[0,-44],[-1,-73],[-2,-128],[0,-14],[0,-106],[-1,-57],[0,-454],[0,-19],[0,-43],[0,-188],[-1,-185],[0,-150]],[[86829,50553],[-201,0],[-127,0],[-43,-1],[-105,0],[-197,-1],[-37,1],[-163,-3],[-230,-3],[-156,-2],[-274,-2],[-307,-5],[-232,-1],[-36,0],[-199,-3],[-122,-3]],[[84400,50530],[-109,-1],[-126,-1],[-266,-4],[-33,0],[-34,0],[-93,2],[-69,-1],[-248,-2],[-147,-1],[-59,-1],[-243,-2],[-37,-1],[-260,5],[-11,0],[-93,-3],[-286,2],[-102,-2],[-423,1],[-42,0],[-68,1],[-376,2],[-99,0],[-35,1],[-452,0],[-134,1],[-136,1],[-53,0],[-218,0],[-164,1],[-1,0],[-99,-1],[-428,-2],[-292,-2],[-296,-4],[-279,-1],[-178,-1],[-59,0],[-113,-1],[-91,0],[-245,-3],[-134,-1],[-44,1],[-33,1],[-40,0],[-182,-3],[-57,0],[-31,0],[-81,0],[-34,-3],[-76,-3],[-63,-2],[-70,-1],[-106,13],[-534,-3],[-643,-5],[-290,-2]],[[75485,50505],[1,131],[0,1],[0,411],[-1,183],[-1,191],[0,134],[0,2],[1,129],[4,411],[0,44],[2,223],[0,142],[1,163],[90,-2],[13,0],[65,-2],[49,0],[47,-1],[280,0],[55,1],[2,57],[1,33],[0,92],[1,35],[1,44],[0,29],[0,36],[1,33],[0,41],[0,48],[0,29],[0,26],[1,35],[0,39],[0,27],[0,36],[1,73],[1,18],[0,9],[1,50],[1,47],[1,73],[1,63],[1,50],[0,43],[1,30],[0,31],[0,45],[1,36],[0,29],[0,37],[0,47],[1,44],[0,28],[0,70],[0,55],[0,30],[0,31],[0,70],[0,27],[0,55],[1,39],[0,60]],[[99211,55983],[-5,-126],[0,-1],[-2,-36],[-5,-79],[-2,-66],[-1,-74],[0,-37],[-1,-65],[-1,-30],[-5,-271],[0,-28],[-2,-58],[-1,-63],[0,-41],[-2,-63],[-1,-36],[0,-84],[-1,-5],[0,-30],[-6,-332],[-5,-260],[-1,-52],[-4,-121],[-1,-12],[0,-13],[0,-10],[-1,-14],[0,-11],[-1,-9],[-1,-39],[0,-13],[0,-4],[0,-61],[1,-66],[-4,-67],[5,-68],[8,-60],[-13,-141],[-3,-33],[-5,-272],[9,-202],[-2,-41],[-15,-165],[14,-53],[-4,-194],[-3,-37],[-20,-257],[-3,-31],[-1,-27],[2,-8],[0,-16],[-2,-91],[-1,-54],[-2,-33],[0,-12],[0,-17],[-4,-200],[0,-11],[0,-1],[-1,-12],[2,-59],[0,-2],[0,-31],[0,-33],[0,-30],[0,-39],[-2,-59],[-6,-161],[-3,-55],[1,-1],[-1,-3],[22,-69],[-3,-25],[-19,-139],[0,-4],[0,-36],[-1,-38],[0,-2],[0,-46],[1,-169],[8,-142],[-6,-16],[0,-26],[0,-5],[-7,-140],[-1,-59],[6,-57],[6,-55],[-15,-275],[1,-45],[6,-37],[-4,-71],[1,-152],[0,-44],[-1,-92],[0,-30],[0,-10],[1,-139],[0,-93],[0,-48],[0,-43],[0,-27],[0,-60]],[[99104,49003],[-128,-1],[-9,0],[-141,0],[-362,2],[-42,0],[-163,0],[-281,1],[-8,0],[-276,0],[-21,0],[-47,0],[-221,-2],[-130,0],[-163,0],[-282,0],[-69,0],[-278,0],[-293,0],[-504,0],[-290,1],[-709,3],[-39,0],[-1,0],[-102,0],[-124,0],[12,55],[-239,-2],[-295,0],[-193,0],[-204,1],[-239,2],[-235,-2],[-562,5],[-2,-184],[-3,-181]],[[92461,48701],[-49,0],[-517,2],[-542,6],[-115,-2],[-480,2],[-314,2],[-1,0],[-253,0],[-252,1],[-76,0],[-72,0],[-61,-3],[-95,1],[-65,0],[-128,1],[-6,1],[-95,0],[-1,0],[-148,2],[-420,4],[-68,1],[-507,4],[-277,1],[-1,117],[-2,232],[-2,385],[11,132],[9,140],[5,72],[8,189],[7,138],[-1,61],[4,57],[6,61],[3,243],[-119,0],[-119,1],[-75,0],[-254,3],[-293,0],[-49,0],[-95,-1],[-133,-1]],[[32851,52514],[-3,-186],[-4,-213],[-1,-77],[-2,-78],[-1,-86],[-2,-226],[-8,-50],[-1,-59],[-1,-58],[0,-27],[-2,-68],[-1,-34],[-2,-117],[-1,-66],[0,-34],[0,-266],[1,-25],[-1,-80],[-3,-250],[-1,-38],[-1,-83],[0,-9],[0,-8],[-1,-47],[0,-8],[0,-20],[-1,-40],[-1,-75],[-6,-416],[0,-3],[2,-76],[-5,-102],[-3,-33],[-5,-189],[-2,-64],[-5,-267],[-1,-41],[-1,-54],[0,-52],[0,-26],[-1,-29],[0,-38],[-2,-68],[-1,-46],[-7,-352],[2,-29],[-2,-77],[-1,-64],[0,-41],[-1,-36],[-1,-50],[-1,-67],[-1,-82],[-1,-41],[-1,-60],[0,-25],[-1,-60],[-1,-68],[-1,-58],[0,-40],[-2,-100],[-1,-56],[-1,-65],[-1,-57],[0,-52],[-1,-71],[-1,-46],[-2,-70],[0,-42],[0,-35],[-2,-61],[0,-35],[-2,-35],[1,-38],[-2,-61],[0,-31],[0,-57],[-1,-33],[-2,-62],[0,-43],[-1,-45],[-1,-68],[0,-27],[0,-32],[-1,-31],[-1,-79],[-1,-59],[-2,-87],[-1,-33],[0,-21],[-1,-20],[0,-31]],[[32741,45949],[-70,0],[-72,0],[-66,1],[-35,0],[-31,0],[-40,0],[-54,1],[-35,0],[-47,2],[-59,0],[-47,-1],[-25,1],[-9,1],[-82,2],[-35,-1],[-74,-1],[-69,0],[-58,1],[-60,1],[-97,0],[-63,0],[-81,0],[-87,1],[-70,1],[-61,0],[-69,0],[-159,2],[-46,0],[-54,0],[-67,0],[-80,1],[-48,0],[-38,0],[-75,1],[-60,0],[-112,1],[-35,0],[-43,0],[-99,1],[-50,-1],[-52,2],[-36,0],[-141,1],[-79,1],[-54,0],[-78,1],[-45,1],[-85,1],[-51,0],[-80,1],[-48,1],[-35,0],[-2,0],[-36,1],[-70,1],[-94,1],[-82,2],[-41,0],[-75,2],[-41,1],[-57,1],[-46,-1],[-37,1],[-4,0],[-34,1],[-59,0],[-75,1],[-84,2],[-78,1],[-72,1],[-85,1],[-114,2],[-63,1],[-107,1],[-43,1],[-46,1],[-35,1],[-33,0],[-219,3],[-91,1],[-322,5],[-220,4]],[[27130,46008],[-57,-1],[-87,2],[-60,0],[-52,1],[-76,1],[-51,1],[-41,0],[-233,3],[-294,4],[-81,7],[-51,-6],[-116,1],[-342,6],[-85,0],[-77,0],[-169,0],[-89,1],[-150,0],[-53,0],[-65,1],[-39,0],[-61,1],[-109,0],[-73,0],[-48,0],[-59,0],[-84,1],[-53,1],[-42,1],[-60,0],[-58,0],[-42,0],[-81,0],[-71,0],[-71,0],[-64,0],[-39,0],[-37,0],[-184,1],[-54,1],[-84,0],[-128,0],[-75,0],[-49,-1],[-215,1],[-66,0],[-120,0],[-40,0],[-70,0],[-43,0],[-73,0],[-92,0],[-88,0],[-37,0],[-49,0],[-62,0],[-43,-1],[-43,-1],[-60,0],[-84,-1],[-104,-1],[-5,0],[-76,0],[-74,0],[-54,-1],[-71,0],[-39,-2],[-28,0],[-5,0]],[[75485,50505],[-131,0],[-342,-3],[-158,-1],[-234,-4],[-239,-1],[1,-194],[6,-183],[5,-81],[11,-121],[0,-26],[1,-38],[0,-40],[2,-59],[0,-55],[-1,-137],[0,-30],[0,-27],[0,-43],[0,-33],[0,-40],[-1,-93],[0,-28],[0,-27],[0,-53],[0,-32],[0,-47],[0,-2],[-1,-64],[0,-30],[-1,-63],[-1,-41],[0,-47],[-1,-22],[0,-9],[-1,-68],[0,-25],[-1,-45],[0,-32],[-1,-47],[-1,-22],[-1,-22],[-1,-43],[-1,-55],[-2,-69],[-1,-33],[-1,-43],[-1,-30]],[[74389,48297],[-47,0],[-51,1],[-65,0],[-50,0],[-41,1],[-35,0],[-81,1],[-60,0],[-37,0],[-41,0],[-33,0],[-33,0],[-31,1],[-41,0],[-36,0],[-81,0],[-53,0],[-65,0],[-43,0],[-36,0],[-36,-1],[-39,0],[-62,0],[-44,0],[-42,0],[-35,0],[-43,0],[-97,0],[-36,0],[-54,0],[-56,1],[-80,0],[-53,0],[-45,0],[-76,0],[-62,1],[-44,4],[-72,-1],[-22,0],[-184,2],[-67,-3],[-31,0],[-99,1],[-50,1],[-124,0],[-44,1],[-47,0],[-56,0],[-51,0],[-92,0],[-31,0],[-96,-1],[-45,0],[-55,0],[-57,0],[-154,0],[-110,1],[-48,0],[-105,1],[-45,0],[-47,1],[-45,0],[-70,0],[-35,0],[-55,0],[-39,0],[-38,0],[-43,0],[-139,3],[-10,0],[-171,-1],[-251,-1],[-43,-1],[-115,0],[-114,-1],[-214,-1],[-22,0],[-42,0],[-215,-1],[-149,-1],[-196,-1],[-38,-4],[-50,0],[-59,-1],[-172,-1],[-30,-1],[-64,0],[-30,0],[-65,-1],[-47,0],[-54,-1],[-77,0],[-37,0],[-88,-1],[-40,0],[-51,0],[-109,0],[-55,0],[-115,0],[-39,0],[-96,0],[-30,0],[-55,0],[-57,0],[-87,0],[-54,0],[-43,0],[-81,0],[-32,0],[-58,0],[-48,1],[-147,0],[-140,0],[-80,0],[-67,1],[-8,0],[-33,0],[-40,-2],[-102,-2],[-48,-1],[-51,-1],[-32,-1],[-58,-1],[-93,-2],[-107,-2],[-146,-3],[-87,-1],[-102,-2],[-121,-2],[-57,-1],[-99,-2],[-34,-1],[-37,0],[-65,-1],[-42,-1],[-75,-2],[-73,-1],[-32,-1],[-41,0],[-64,-1],[-69,-1]],[[64776,48264],[2,36],[1,44],[2,60],[0,43],[0,96],[0,44],[0,27],[-1,32],[0,37],[0,68],[0,25],[0,59],[-2,70],[0,30],[-2,70],[-1,51],[-2,136],[-1,2],[1,63],[0,5],[0,25],[0,27],[0,47],[-2,42],[-2,49],[-2,78],[-2,65],[-2,73],[-2,61],[0,32],[0,38],[-1,110],[-1,86],[0,64],[0,38],[-1,43],[0,2],[0,35],[-1,28],[-1,25],[-2,28],[0,2],[2,58],[1,49],[-1,50],[-1,28],[0,28],[-1,59],[-1,53],[-3,193],[-5,126],[-1,26],[-3,54],[-1,34],[0,5],[-2,48],[1,74],[-2,116],[-1,97],[-1,62],[0,38],[-2,72],[-3,97],[-1,43],[-1,28],[-2,59],[-1,46],[-2,51],[0,28],[-2,86],[-1,66],[0,26],[-2,117],[-1,72],[-5,126],[-2,31],[-1,31],[-1,31],[-1,71],[11,49],[49,1],[39,0],[74,1],[102,1],[153,1],[53,0],[0,122],[0,28],[0,31],[0,47],[0,42],[0,52],[0,48],[0,55],[0,13],[-1,53],[1,12],[0,44],[0,81],[0,28],[0,46],[0,31],[0,32],[0,76],[-1,32],[0,61],[0,57],[0,41],[0,39],[0,35],[1,72],[-1,29],[1,28],[0,52],[-1,29],[4,35],[17,24],[-2,17],[-3,45]],[[64776,48264],[-1,-34],[0,-32],[-1,-54],[-1,-43],[-1,-51],[-2,-50],[-1,-34],[-1,-77],[0,-35],[0,-46],[0,-28],[-1,-38],[0,-51],[-1,-61],[-1,-55],[1,-26],[-1,-28],[0,-149],[1,-34],[-1,-42],[-3,-45],[1,-86],[2,-215],[0,-2],[1,-25],[-1,-40],[0,-61],[0,-32]],[[64765,46790],[-44,0],[-15,0],[-89,-1],[-227,-4],[-61,-1],[-144,1],[-537,-4],[-33,0],[-330,-7],[-163,-3],[-33,0],[-128,-2],[-209,-4],[-344,-3],[-131,0],[-305,0],[-99,-2],[-77,-1],[-73,-1],[-39,-1],[-83,-1],[-44,-1],[-52,-1],[-109,-2],[-137,-3],[-86,-1],[-45,-1],[-32,-1],[-14,0],[-38,-1],[-31,0],[-191,-3],[-97,-2],[-52,-2],[-38,-1],[-66,-1],[-33,-1],[-79,-2],[-44,-1],[-68,-2],[-53,-1],[-37,-1],[-50,-1],[-69,-1],[-34,0],[-95,-2],[-46,0],[-3,0],[-50,0],[-42,0],[-2,0],[-48,-1],[-31,-2],[-65,-1],[-33,0],[-44,0],[-61,-1],[-34,0],[-50,0],[-6,0],[-43,0],[-48,0],[-47,0],[-33,-1],[-38,0],[-54,0],[-72,-1],[-40,0],[-34,-2],[-86,-2],[-32,0],[-44,0],[-71,-1],[-69,0],[-80,-1],[-56,-1],[-62,-1],[-45,0],[-4,0],[-45,-1],[-76,-1],[-42,-1],[-39,0],[-64,-1],[-102,-2],[-73,-1],[-129,-2],[-5,0],[-26,-1],[-52,0],[-35,-1],[-59,-1],[-53,-1],[-138,-2],[-47,-1],[-96,-1],[-23,0],[-40,-1],[-40,0],[-59,-1],[-49,0],[-77,-1],[-48,0],[-10,0],[-141,-2],[-3,0],[-30,0],[-276,-4],[-412,-6],[-7,0],[-31,0],[-109,-1],[-93,-1],[-32,-1],[-196,-2]],[[55777,46672],[-65,-2],[-139,-4],[-42,-1],[-329,-3],[-38,-1],[-42,-1],[-190,-5],[-331,-5],[-40,0],[-50,0],[-57,-1],[-34,0],[-35,0],[-53,-1],[-67,0],[-165,-1],[-57,-1],[-52,-1],[-66,-1],[-53,-1],[-55,-1],[-37,-1],[-32,-1],[-101,-2],[-76,-2],[-70,1],[-32,-1]],[[53469,46636],[0,29],[0,37],[0,39],[0,34],[0,31],[0,77],[0,106],[-1,57],[0,2],[0,25],[-1,67],[0,57],[-1,160],[0,85],[0,108],[-4,83],[0,55],[0,28],[0,83],[1,48],[-1,58],[-3,40],[2,30],[0,14],[9,207],[-2,80],[-1,73],[-1,10],[-1,58],[0,66],[0,4],[-1,81],[0,56],[-1,15],[-1,185],[0,19],[0,52],[0,6],[0,133],[0,30],[0,8],[2,47],[-1,48],[0,31],[-1,52],[0,42],[0,29],[-1,28],[0,81],[-1,103],[-1,31],[0,44],[0,49],[-1,43],[0,33],[0,41],[-1,35],[0,19],[0,7],[0,26],[-1,49],[-1,23],[0,6],[0,29],[-1,25],[0,53],[-1,26],[0,36],[-1,83],[0,49],[0,32],[6,31],[9,29],[0,28],[-1,52],[-2,47],[0,44],[-1,39],[-1,21],[-2,103],[-2,71],[-1,26],[-1,54],[-1,36],[-2,83],[-2,42],[-1,48],[-1,29],[0,30],[-1,26],[-1,46],[-1,48],[-1,11],[-1,62],[0,2],[-1,44],[-1,34],[-2,48],[-1,54],[-1,43],[-1,59],[-1,29],[-1,20],[-1,27],[0,32],[-1,40],[-1,41],[-2,131],[-2,36],[-1,43],[-1,26],[-1,37],[-1,35],[0,34],[-1,52],[-1,33],[-1,56],[-1,37],[-1,27],[0,30],[-3,125],[-1,47],[36,0],[46,1],[-6,66],[-4,38],[-3,31],[-4,47],[-1,39],[0,30],[0,28],[0,69],[0,26],[0,27],[3,70],[-1,74],[-1,82],[-3,209],[0,66],[-1,61],[-1,45],[-1,58],[-1,49],[-1,30],[0,43],[1,44],[0,12],[-4,85],[-1,46],[0,5],[3,71]],[[53469,46636],[-59,-1],[-64,-1],[-31,-1],[-54,-1],[-41,0],[-39,-1],[-34,-1],[-39,0],[-32,-2],[-43,0],[-34,-1],[-33,-1],[-34,-1],[-38,-1],[-42,-1],[-17,0],[-15,0],[-33,-1],[-79,-2],[-120,-2],[-1,0],[-122,0],[-32,-3],[-35,-7],[-37,-1],[-44,-2],[-36,0],[-32,0],[-46,0],[-48,-1],[-33,-1],[-48,-1],[-89,-2],[-80,0],[-31,-1],[-51,-1],[-53,0],[-52,-1],[-37,0],[-21,0],[-159,0],[-4,0],[-41,0],[-31,0],[-89,0],[-77,0],[-167,-1],[-42,-1],[-41,0],[-86,-1],[-41,0],[-37,0],[-77,-1],[-89,-1],[-35,0],[-156,-1],[-212,-1],[-149,-2],[-34,0],[-177,-2],[-36,0],[-26,0],[-24,0],[-172,-1],[-49,-2],[-53,0],[-44,0],[-90,-1],[-51,1],[-115,-1],[2,-145],[4,-150],[0,-4],[0,-68],[2,-169],[1,-145],[0,-53],[-78,0],[-241,0],[-71,0],[-32,0],[-1,0],[-62,0],[-88,0],[-123,0],[-50,0],[-66,0],[-83,0],[-43,0],[-36,0],[-75,0],[-86,-1],[-111,1],[-68,0],[-40,0],[-71,0],[-48,0],[-42,-1],[-38,0],[-10,1],[-97,0],[-42,0],[-45,0],[-74,0],[-70,0],[-147,0],[-41,0],[-93,0],[-55,1],[-44,0],[-144,0],[-429,1],[-274,1],[-203,1],[-165,0],[-2,0],[-126,-3],[-54,1],[-70,-1],[-294,2],[-186,-1],[-34,0],[-65,1],[-77,0],[-66,0],[-52,0],[-65,0],[-80,0],[-85,1],[-73,0],[-166,1],[-57,1],[-341,2],[-215,1],[-178,1]],[[43493,45858],[45,66],[0,30],[34,55],[38,33],[14,23],[28,23],[27,12],[30,3],[31,-26],[31,5],[7,26],[-14,32],[-1,26],[11,33],[44,0],[36,22],[35,31],[25,24],[1,34],[-23,25],[0,61],[-18,21],[4,40],[-4,33],[-18,36],[28,10],[24,22],[36,23],[1,1],[-274,3],[-317,2],[-4,0],[-112,1],[-140,-2],[-33,0],[-338,2],[-157,1],[0,3],[1,63],[1,208],[3,83],[-1,372],[-1,228],[0,50],[0,85],[5,264],[1,91],[-1,74],[-2,154],[-2,111],[3,19],[2,14],[1,179],[1,188],[3,260],[1,275],[1,184],[4,96],[-1,264],[0,22],[0,33],[0,12],[0,321],[-1,152],[-1,161],[-1,52],[2,345],[2,385],[1,130],[-2,144],[-2,122],[-1,58],[1,91],[-1,181],[0,1],[-1,115],[0,69],[1,40],[-1,179],[-247,1]],[[43493,45858],[-8,-37],[50,-52],[12,-155],[0,-52],[-6,-37],[0,-19],[-17,-16],[-34,-27],[-31,-5],[29,-36],[-21,-25],[-24,-34],[6,-38],[-32,-12],[7,-27],[13,-25],[5,-26],[38,-16],[37,-22],[-23,-38],[-40,-1],[19,-21],[15,-29],[27,-16],[41,-7],[48,-17],[-9,-115],[0,-10],[3,-18],[5,-68],[3,-42],[-6,-2],[6,-29],[13,-28],[9,-30],[14,-37],[18,-62],[1,-36],[-34,-18],[-16,25],[-30,27],[-31,-12],[-30,-40],[-56,-24],[-10,-38],[-29,8],[-27,-22],[-44,-22],[49,-23],[-58,-19],[-28,-23],[-16,-26],[29,-48],[-29,-27],[-1,-1],[-37,-24],[-82,-55],[-15,-10],[-86,-57],[-34,-20],[-74,-42],[-92,-30],[-1,0],[-14,-4],[-65,-27],[-3,-5],[-3,1],[-42,-16],[-26,-23],[-20,-26],[15,-28],[-27,-27],[-42,-38],[-20,-21],[-65,15],[0,-78],[0,-5],[-1,-118],[0,-172],[2,-132],[0,-27],[17,-32],[-1,-2],[-14,-68],[-2,-186],[1,-110],[16,-173],[3,-196]],[[42588,42572],[-38,15],[-254,-1],[-290,-2],[-281,-2],[-298,7],[-117,1],[-141,-3],[-51,0],[-149,-3],[-95,-1],[-1,-1],[-191,-3],[-103,0],[-105,-1],[-92,0],[-66,-1],[-94,6],[-196,13],[-122,7],[-118,8],[-27,0],[-107,0],[-188,1],[-730,7],[-396,3],[-345,3],[-1,0],[-51,1],[-233,2],[-2,0],[-71,0],[-126,1],[-66,1],[-120,1],[-233,2],[-21,0],[-21,0],[-139,0],[-37,0],[-137,0],[-64,-1],[-194,1],[-118,2],[-32,1],[-14,-1],[-32,0],[-49,0],[-91,1],[-107,0],[-104,1],[-17,0],[-242,3],[-34,4],[-141,4],[-272,4],[-276,2]],[[34948,42654],[-239,1],[-271,2],[-111,1],[-167,0],[-1,0],[-133,1],[-190,1],[-1,0],[-100,1],[-94,1],[-268,1],[-237,1],[-225,-2],[-35,0],[-38,0],[-152,2],[0,112],[0,1],[1,45],[4,204],[7,161],[6,136],[1,29],[1,35],[-1,82],[2,278],[3,162],[3,151],[1,52],[3,91],[2,283],[0,45],[0,2],[3,31],[1,38],[1,69],[1,33],[2,140],[3,64],[2,31],[-1,86],[1,79],[2,197],[3,90],[7,276],[1,85],[0,93],[-4,104]],[[92461,48701],[-4,-91],[-1,-130],[0,-94],[0,-44],[0,-233],[-8,-653],[0,-3],[0,-33],[-1,-77],[-1,-84],[-2,-222],[-2,-187],[-1,-145],[0,-1],[0,-30],[-2,-145],[1,-89],[-24,-274],[2,-193],[2,-190],[-1,-29],[-3,-98],[0,-52],[-1,-180],[-1,-183],[-3,-185],[-3,-257],[3,-35],[1,-246],[-7,-181],[2,-85],[5,-273]],[[92412,43979],[-183,1],[-32,0],[-49,0],[-54,-1],[-54,1],[-111,0],[-159,2],[-460,2],[-32,0],[-319,2],[-245,2],[-207,2],[-259,1],[-93,0],[-257,3],[-171,1],[-104,-5],[-64,0],[-253,1],[-223,-3],[-323,-3],[-201,-2],[-68,-1],[-83,-1],[-29,0],[-101,0],[-32,1],[-71,-1],[-39,-1],[-42,-1],[-235,-1],[-532,-3],[-101,-1],[-72,0],[-102,-1],[-487,-3],[-292,-2],[-69,-2],[-33,0],[-211,-2],[-68,0],[-25,-1],[-173,0],[-383,-1],[-240,-1],[-33,0],[-45,0],[-67,0],[-73,0],[-102,0],[-53,0],[-38,0],[-46,-1],[-36,0],[-41,1],[-30,0]],[[84507,43961],[-9,304],[-2,193],[0,54],[-1,93],[-2,169],[0,52],[-1,99],[-4,44],[-1,36],[-3,117],[-3,121],[-3,110],[-2,72],[0,30],[-1,38],[-5,247],[-2,58],[-4,113],[-2,69],[-2,41],[-2,38],[-4,87],[-1,44],[-7,202],[-2,28],[0,14],[-1,17],[0,26],[-3,57],[-1,27],[0,7],[0,19],[0,73],[-1,36],[0,139],[-3,63],[2,109],[0,47],[-3,148],[-1,81],[-3,138],[-2,95],[-6,215],[-1,26],[-3,146],[1,66],[-1,62],[0,62],[-1,97],[-1,100],[4,66],[0,48],[0,180],[0,133],[-1,225],[-1,136],[-1,83],[-3,159],[-2,116],[0,13],[-4,141],[0,31],[-1,182],[-2,233],[-1,133],[-4,361]],[[84507,43961],[-19,-45],[0,-45],[-1,-29],[1,-54],[1,-37],[2,-63],[1,-27],[1,-27],[1,-38],[1,-26],[1,-47],[2,-81],[0,-35],[1,-27],[1,-4],[2,-53],[0,-51],[1,-303],[0,-68],[4,-219],[4,-155],[3,-199],[0,-16],[3,-87],[2,-74]],[[84519,42151],[-859,-5],[-654,0],[-455,-2],[-367,-3],[-155,-1],[-42,0],[-186,-1],[-219,-1],[-287,4],[-155,2],[-125,0],[-148,0],[-114,-1],[-532,2],[-56,2],[-59,0],[-28,0],[-455,-2],[-206,-10],[-66,1],[-41,0],[-262,0],[-1,0],[-358,-1],[-62,0],[-202,4],[-1,0],[-229,-1],[-146,-2],[-139,-1],[-388,-4],[-97,-1],[-86,4],[-374,-2],[-83,0],[-120,-1],[-82,-4],[-40,0],[-39,4],[-320,-4],[-67,0],[-434,26],[-425,0],[-52,-1],[-245,1],[-418,-9],[-118,-6],[-18,0]],[[74504,42138],[0,7],[0,22],[0,75],[-1,47],[-2,46],[-2,51],[0,57],[0,60],[-2,38],[-2,52],[0,41],[-2,68],[-1,35],[-1,38],[-2,43],[-2,51],[-2,43],[0,37],[-2,41],[-1,29],[2,29],[-1,34],[-2,50],[-2,52],[-3,71],[0,4],[0,48],[0,60],[-1,26],[-1,35],[-1,27],[0,47],[-1,31],[0,61],[-2,27],[1,37],[-3,61],[0,69],[0,30],[-1,92],[0,26],[-8,25],[0,48],[-1,58],[-2,39],[4,35],[-5,101],[0,1],[-3,83],[-1,50],[-1,49],[0,38],[-2,38],[2,38],[-3,156],[-8,364],[0,2],[-1,36],[-2,99],[-4,205],[-7,408],[-1,33],[-1,26],[0,3],[0,43],[-3,48],[0,30],[-1,39],[-1,33],[1,27],[-17,28],[1,40],[1,32],[0,29],[0,30],[-2,35],[3,28],[-2,125],[0,35],[-2,366],[-1,397],[0,16],[-1,29],[1,26],[-1,26],[1,61],[-1,49],[1,46],[0,44],[0,52],[0,31],[1,67],[0,65],[1,43],[0,33],[0,27],[0,32],[1,50],[1,31],[0,36],[0,26],[2,61],[0,32],[1,47],[1,41],[1,27],[2,63],[-22,0]],[[99104,49003],[0,-35],[0,-30],[0,-26],[0,-9],[0,-63],[0,-41],[0,-40],[0,-56],[-1,-62],[0,-77],[0,-34],[0,-50],[0,-56],[-1,-43],[0,-38],[-1,-73],[-1,-29],[0,-50],[0,-61],[-1,-73],[0,-26],[-1,-52],[0,-49],[-1,-28],[0,-45],[0,-9],[-1,-4],[0,-10],[0,-4],[1,-63],[0,-170],[0,-7],[0,-18],[0,-25],[0,-26],[0,-40],[0,-13],[1,-29],[0,-18],[0,-57],[0,-54],[0,-45],[-1,-59],[-1,-34],[0,-6],[0,-8],[0,-49],[0,-37],[-1,-64],[-1,-40],[0,-26],[0,-27],[0,-56],[0,-65],[0,-28],[-1,-64],[0,-27],[0,-38],[0,-12],[-1,-61],[0,-28],[1,-35],[0,-6],[-1,-6],[-1,-33],[0,-5],[1,-3],[0,-23],[0,-49],[0,-29],[0,-33],[0,-31],[-1,-57],[-1,-39],[0,-51],[-1,-25],[0,-26],[-1,-28],[0,-26],[0,-37],[-1,-38],[0,-38],[0,-40],[-1,-58],[-1,-71],[-1,-28],[0,-5],[0,-41],[0,-29],[0,-56],[0,-43],[0,-42],[0,-43],[-1,-42],[1,-27],[0,-30],[-1,-66],[0,-47],[0,-10],[-1,-22],[0,-29],[0,-32],[1,-40],[0,-32],[-1,-8],[-1,-13],[0,-15],[7,-34],[-1,-8],[-4,-33],[0,-1],[0,-40],[0,-12],[0,-31],[-3,-50],[0,-324],[-3,-304],[0,-33],[-1,-49],[0,-53],[-2,-191],[0,-14]],[[99074,43872],[-136,3],[-106,2],[-4,1],[-331,12],[-433,14],[-30,0],[-32,0],[-40,0],[-38,1],[-85,0],[-99,1],[-39,1],[-40,0],[-25,0],[-55,1],[-43,0],[-45,1],[-67,0],[-38,0],[-35,1],[-37,0],[-41,1],[-49,1],[-157,1],[-67,1],[-113,1],[-90,2],[-30,0],[-159,2],[-87,2],[-91,1],[-50,1],[-132,2],[-34,1],[-157,2],[-45,0],[-66,1],[-47,1],[-47,1],[-92,1],[-92,2],[-45,0],[-46,-1],[-44,0],[-79,-1],[-43,0],[-48,0],[-121,-3],[-1,0],[-143,0],[-9,0],[-189,1],[-46,-1],[-70,0],[-335,-1],[-101,-1],[-189,0],[-144,-1],[-80,-1],[-152,0],[-2,0],[-263,3],[-23,1],[-71,0],[-72,1],[-36,0],[-34,0],[-2,0],[-186,2],[-81,0],[-38,0],[-165,1],[9,44],[-74,0],[-335,2]],[[74504,42138],[2,-43],[1,-42],[2,-85],[3,-67],[0,-41],[2,-65],[-26,-17],[-1,-30],[-1,-95],[-1,-32],[0,-29],[-1,-33],[0,-28],[0,-9],[0,-24],[-6,-26],[0,-65],[0,-38],[0,-12],[5,-132],[-4,-369],[0,-59],[1,-309],[-2,-189],[-1,-77],[0,-32],[-2,-89],[-2,-166],[-6,-368],[-85,0],[-57,0],[-176,-1],[-165,0],[-96,0],[-96,0],[-107,0],[-77,0],[-72,0],[-73,0],[-73,0],[-40,-1],[-53,0],[-43,0],[-115,0],[-91,-1],[-132,-1],[-76,0]],[[72840,39563],[-83,0],[-204,0],[-49,0],[-77,0],[-73,0],[-55,0],[-33,0],[-144,0],[-47,0],[-150,1],[-117,0],[-99,0],[-80,0],[-181,1],[-190,1],[-107,1],[-38,0],[-55,0],[-4,0],[-89,0],[-62,0],[-37,1],[-177,-1],[-37,0],[-39,0],[-69,0],[-54,0],[-92,1],[-64,0],[-32,0],[-53,0],[-5,0],[-81,1],[-64,0],[-64,0],[-59,0],[-57,0],[-96,-1],[-39,0],[-80,0],[-52,0],[-37,0],[-57,0],[-78,0],[-50,-1],[-39,0],[-65,0],[-86,-1],[-61,0],[-54,-1],[-62,0],[-89,-1],[-48,0],[-42,-1],[-68,-1],[-63,0],[-48,-1],[-101,-1],[-116,-1],[-47,-1],[-56,0],[-104,-2],[-34,0],[-145,-2],[-38,0],[-114,-1],[-66,-1],[-119,-2],[-42,0],[-111,-6],[-385,-1],[-76,0],[-60,-1],[-73,-1],[-53,-1],[-32,-1],[-131,-3],[-35,0],[-43,0],[-78,-2],[-52,-1],[-80,-1],[-88,-2],[-66,-1],[-123,-3],[-108,-2],[-66,-1],[-136,-3],[-68,-2],[-76,-2],[-100,-2],[-73,-1],[-59,-2],[-33,0],[-32,-1],[-46,-1],[-74,-2],[-31,0],[-45,-1],[-52,-1],[-32,0],[-65,-2],[-74,-1],[-8,0],[-72,-2],[-65,-1],[-92,-2],[-63,-1]],[[64767,39496],[-9,141],[-2,32],[-3,72],[-2,28],[-1,31],[-3,28],[-1,32],[-2,75],[-2,43],[-1,64],[-2,61],[-2,51],[-2,67],[-1,36],[0,14],[-1,85],[-1,48],[1,73],[1,62],[1,97],[1,50],[1,49],[1,30],[2,112],[1,66],[1,36],[0,23],[1,25],[0,41],[-1,48],[1,61],[0,54],[1,36],[0,43],[2,84],[0,98],[1,28],[0,46],[1,51],[1,89],[42,13],[7,62],[-2,69],[-1,40],[-1,31],[-1,51],[-1,26],[-1,66],[-1,28],[-8,93],[2,176],[1,82],[3,219],[0,5],[1,25],[15,499],[0,5],[-5,78],[0,1],[4,28],[-2,30],[-1,36],[-1,39],[-3,43],[-2,30],[-1,26],[-2,26],[-1,27],[-2,25],[0,32],[-1,61],[0,60],[-2,62],[1,33],[-1,38],[1,31],[-11,90],[-1,43],[-1,51],[-2,136],[-1,50],[-2,115],[-3,135],[0,6],[-2,115],[8,37],[1,76],[0,59],[-9,323],[-6,250],[-4,461],[0,104],[-1,105],[-3,367],[-1,32],[9,245],[0,4],[8,84]],[[64767,39496],[-68,-4],[-71,-2],[-110,-2],[-52,-1],[-34,-1],[-3,0],[-35,-1],[-36,-1],[-31,0],[-40,-1],[-40,-1],[-34,-1],[-55,-2],[-68,-2],[-41,0],[-58,0],[-2,0],[-112,1],[-53,0],[-99,1],[-48,0],[-57,-2],[-111,-2],[-1,0],[-189,-2],[-294,-12],[-33,-3],[-52,3],[-161,-3],[-217,-5],[-68,-2],[-81,-1],[-268,-5],[-92,-1],[-352,-6],[-8,0],[-360,-7],[-366,-6],[-109,-2],[-59,-3],[-64,-4]],[[60735,39416],[-278,-4],[-111,-2],[-140,-2],[-56,-1],[-167,-1],[-48,-2],[-96,-3],[-47,0],[-182,-4],[-64,-1],[-428,-8],[-141,0],[-123,-3],[-60,0],[-179,-2],[-180,-3],[-174,-5],[-38,-1],[-44,0],[-96,-2],[-401,-7],[-254,-2],[-32,0],[-395,0],[-33,0],[-607,-2],[-38,-1],[-72,0],[-204,-2],[-71,-1],[-158,-2],[-44,-1],[-52,-1]],[[55722,39353],[1,94],[0,29],[0,8],[3,391],[0,67],[1,86],[0,2],[2,63],[0,25],[-2,62],[0,2],[0,26],[-1,41],[1,31],[1,28],[0,1],[1,40],[-1,55],[1,34],[-1,30],[2,47],[1,125],[-1,74],[-1,132],[1,71],[0,30],[0,26],[0,52],[1,53],[-1,37],[-1,55],[1,33],[2,87],[-1,32],[0,6],[5,28],[0,95],[-1,32],[-1,99],[-1,79],[0,50],[4,51],[-2,104],[-1,90],[-1,9],[-3,61],[-1,43],[3,177],[1,197],[1,224],[1,278],[0,95],[-3,28],[-3,42],[-1,36],[1,37],[-1,75],[0,49],[-1,27],[0,33],[-1,56],[0,32],[-1,44],[2,47],[0,39],[0,63],[-3,92],[40,21],[-2,137],[-1,27],[-2,54],[1,30],[1,43],[1,36],[-2,62],[-1,32],[0,41],[-1,27],[1,58],[0,20],[0,6],[0,51],[0,28],[-2,38],[1,29],[1,35],[-2,61],[0,63],[-1,42],[-1,25],[1,51],[-1,40],[0,4],[2,64],[-2,116],[-1,45],[2,123],[-1,60],[0,27],[1,216],[0,35],[0,34],[0,83],[0,12],[0,15],[2,42],[-5,123],[16,134],[12,580],[-2,68],[-2,94]],[[55722,39353],[-88,0],[-44,0],[-25,0],[-150,2],[-89,-1],[-191,-4],[-89,-1],[-60,0],[-93,-1],[-93,0],[-60,0],[-79,-1],[-86,-1],[-138,-2],[-38,0],[-140,-2],[-266,-3],[-178,-3],[-52,0],[-95,1],[-119,0],[-72,-6],[-222,-4],[-191,-3],[-352,-6],[-87,-1],[-63,-1],[-48,-1],[-60,-1],[-72,-1],[-168,-3],[-215,-2],[-157,-2],[-34,-1]],[[51808,39305],[-270,-4],[-316,-4],[-33,0],[-162,-3],[-187,-2],[-167,-3],[-115,-2],[-162,-2],[-164,-2],[-78,-2],[-377,-6],[-180,-2],[-240,-4],[-70,0],[-123,4],[-111,4],[-32,1],[-23,0],[-260,0],[-138,0],[-155,-1],[-217,0],[-48,2],[-97,0],[-51,1],[-35,0],[-44,0],[-3,0],[-119,2],[-210,1],[-38,0],[-48,1],[-187,2],[-91,2],[-87,-2],[-50,3],[-71,1],[-31,-1],[-47,1],[-38,1],[-33,-1],[-51,0],[-72,2],[-39,1],[-31,1],[-38,0],[-167,2],[-79,1],[-174,3],[-88,1],[-175,2],[-101,2],[-36,0],[-35,1],[-362,4],[-32,1],[-362,4],[-65,0],[-37,1],[-46,1],[-270,5],[-119,3],[-66,3],[-151,2],[-25,20],[0,156]],[[44279,39506],[2,374],[1,134],[0,71],[0,2],[-1,103],[0,160],[-1,106],[0,168],[-1,86],[0,31],[0,37],[0,77],[-4,117],[-3,80],[-2,65],[-1,56],[0,7],[-9,71],[14,107],[1,7],[5,61],[-25,56],[-1,77],[0,3],[-6,39],[0,35],[1,40],[0,26],[-1,48],[-1,28],[-1,42],[-1,34],[0,63],[0,42],[0,30],[0,38],[-1,26],[-1,41],[1,43],[-2,37],[0,36],[-1,32],[-1,67],[0,40],[0,35],[-1,46],[0,39],[-1,27],[0,37],[0,43],[-38,0],[-131,1],[-58,0],[-58,1],[-101,0],[-32,1],[-45,0],[-63,0],[-41,0],[-74,0],[-73,-2],[-63,-1],[-46,0],[-49,-1],[-33,0],[-30,-1],[-82,-1],[-41,0],[-82,0],[-40,0],[-83,-1],[-73,0],[-107,0],[-118,-1],[-34,1],[-55,0]],[[27130,46008],[0,-106],[-4,-164],[2,-107],[-1,-22],[-1,-43],[-1,-26],[0,-1],[2,-261],[-1,-102],[-1,-85],[-3,-91],[-2,-94],[-3,-180],[-1,-65],[-3,-29],[1,-94],[-4,-102],[-1,-50],[-1,-17],[-2,-91],[-1,-95],[-2,-29],[-1,-77],[-5,-260],[-253,6],[-97,3],[-35,0],[-43,-4],[-37,4],[-183,3],[-57,1],[-39,0],[-35,1],[-204,3],[-163,3],[-24,-21],[-1,-147],[-1,-62],[-1,-145],[1,-47],[-4,-85],[0,-4],[-5,-83],[-6,-299],[3,-184],[4,-244],[0,-83],[2,-35],[-4,-109],[-2,-116],[-1,-35],[-1,-103],[0,-6],[-2,-69],[0,-1],[-3,-26],[1,-153],[0,-72],[-1,-51],[0,-34],[0,-34],[0,-74],[0,-33],[0,-42],[-1,-44],[-2,-102],[-1,-184],[-1,-161],[-1,-160],[0,-225],[0,-1],[-1,-178],[-1,-183],[-1,-364],[-3,-358],[0,-127],[-1,-60],[-1,-181],[0,-141],[0,-240],[-3,-172],[2,-28],[-3,-142],[3,-104],[-2,-274],[-2,-183],[-1,-128],[-1,-55],[-2,-179],[-2,-183],[0,-2]],[[25881,37281],[-117,1],[-169,2],[-99,0],[-17,0],[-20,1],[-65,0],[-37,-1],[-35,1],[-8,0],[-5,0],[-282,1],[-233,0],[-119,0],[-207,-1],[-147,0],[-88,0],[-51,1],[-63,-1],[-280,0],[-1,0],[-218,-1],[-138,2],[-131,0],[-156,-1],[-138,-1],[-531,0],[-388,-1],[-176,0],[-144,-2],[-125,-1],[-11,0],[-74,1],[-64,0],[-84,1],[-34,2],[-31,-2],[-1,0],[-485,0],[-42,0],[-35,0],[-117,1],[-319,0],[-130,-2],[-56,6],[-504,1],[-32,2],[-211,0],[-230,0],[-283,0],[-192,0],[-183,0],[-49,1],[-347,-3],[-134,-1],[-150,-1],[-640,-1],[-178,0],[-98,0],[-246,2],[-35,-1],[-137,-1],[-171,1],[-275,0],[-128,0],[-278,2],[-194,2],[-31,1],[-66,0],[-363,0],[-30,2],[-123,-1]],[[14902,37292],[-10,9],[-15,12],[-10,16],[-3,5],[0,8],[3,45],[1,14],[33,53],[42,68],[44,88],[6,44],[-8,17],[-39,26],[-20,4],[-76,5],[-25,1],[-14,9],[-52,34],[-2,1],[-1,3],[-15,35],[-15,82],[7,50],[7,13],[8,16],[25,26],[1,1],[84,62],[69,50],[33,17],[64,34],[74,70],[4,16],[4,15],[3,9],[-16,41],[-3,3],[-37,28],[-21,10],[-34,12],[-93,33],[-54,11],[-63,-9],[-70,-16],[-92,-26],[-40,-5],[-24,-1],[-71,9],[-36,11],[-27,17],[-32,25],[-1,1],[-3,55],[12,30],[64,27],[56,8],[43,3],[80,6],[86,22],[37,10],[37,15],[14,5],[28,11],[2,3],[4,-1],[35,43],[117,144],[88,62],[43,38],[18,16],[120,175],[36,43],[15,18],[68,64],[49,26],[84,44],[5,3],[56,23],[60,21],[54,18],[15,5],[15,3],[51,10],[27,5],[70,-4],[17,-1],[24,-1],[139,-41],[19,-5],[89,-15],[47,-3],[22,2],[41,10],[81,21],[54,13],[24,11],[64,29],[3,2],[19,16],[1,8],[19,99],[8,13],[3,7],[17,29],[14,12],[58,51],[7,6],[1,1],[28,13],[45,22],[11,-3],[34,-1],[2,0],[80,-3],[36,-8],[50,-23],[111,-81],[25,-11],[16,-1],[0,152],[0,70],[0,131],[-1,224],[8,100],[0,27],[0,23],[1,206],[0,105],[1,391],[0,168],[0,35],[0,147],[0,354],[0,75],[0,9],[0,18],[-1,28],[-2,161],[0,32],[0,31],[-1,48],[0,8],[0,1],[-3,418],[-1,27],[0,26],[0,26],[0,71],[-1,58],[0,35],[1,30],[-1,38],[0,55],[-1,59],[-1,19],[0,12],[0,63],[-1,21],[0,84],[2,31],[-1,16],[0,11],[-1,10],[0,1],[1,2],[1,73],[-2,53],[-2,27],[0,54],[0,26],[-1,141],[-2,288],[-1,86],[1,90],[3,151],[0,26],[0,89],[0,4],[0,18],[0,29],[0,73],[0,30],[0,41],[0,1],[0,29],[0,40],[0,26],[0,47],[0,38],[0,46],[-1,94],[0,30],[0,34],[0,65],[-5,117],[0,72],[-1,152],[0,28],[-1,64],[0,61],[0,83],[-1,157],[-2,358],[0,1]],[[34948,42654],[-12,-234],[-9,-108],[-3,-30],[-6,-88],[-8,-209],[-2,-66],[0,-1],[-7,-177],[-26,-186],[1,-191],[2,-434],[0,-3],[0,-107],[2,-407],[1,-151],[0,-72],[0,-98],[-3,-253],[-1,-98],[0,-1],[-1,-85],[0,-24],[-3,-265],[-143,-1],[-178,4],[-66,1],[-332,-3],[-44,2],[-78,1],[-288,0],[-145,1],[-363,2],[-55,-1],[-45,0],[-237,-8],[-141,-2],[-140,2],[-481,8],[-70,-1],[-80,1],[-186,4],[-285,1],[2,-212],[1,-156],[-14,-508],[-1,-36],[-4,-106],[-1,-160],[0,-39],[0,-64],[-7,-177],[0,-1],[-4,-190],[-3,-174],[-1,-153],[0,-112],[8,-90],[0,-56],[1,-58],[-1,-32],[0,-54],[0,-67],[1,-111],[2,-161],[0,-2],[1,-195],[4,-141],[-2,-83],[-6,-53],[0,-78],[2,-163],[2,-112],[1,-40],[-3,-52],[1,-47],[-2,-144],[2,-78],[-6,-324],[-1,-35],[-2,-77],[3,-34]],[[31489,35002],[-68,0],[-1,0],[-201,-2],[-5,0],[-234,-1],[-61,4],[-550,6],[-141,2],[-332,4],[-96,2],[-280,7],[-156,2],[-47,1],[-70,0],[-416,9],[-109,2],[-36,0],[-556,12],[-572,11],[-2,0],[-130,2],[-76,2],[-76,1],[-79,3],[-61,1],[-139,3],[-44,1],[-54,1],[-2,0],[-48,1],[-138,2],[-153,3],[-4,0],[-265,5],[-182,4],[-197,4],[-37,0]],[[25871,35094],[0,54],[0,26],[0,28],[0,31],[0,39],[0,50],[0,100],[1,33],[0,3],[0,182],[2,40],[0,136],[2,97],[-3,176],[2,90],[-1,283],[1,42],[2,36],[0,59],[1,86],[-3,56],[7,168],[-3,147],[1,111],[1,114]],[[99074,43872],[-3,-225],[-2,-29],[-1,-20],[0,-17],[-1,-48],[0,-27],[0,-39],[-2,-154],[0,-144],[-16,-368],[-1,-11],[3,-5],[0,-35],[0,-13],[-2,-67],[0,-6],[0,-3],[0,-42],[0,-19],[-2,-41],[-2,-80],[0,-13],[-1,-36],[-1,-69],[0,-20],[-1,-50],[0,-9],[0,-12],[-1,-28],[0,-5],[-1,-68],[0,-28],[-1,-32],[-2,-65],[-1,-58],[-1,-86],[-2,-60],[0,-46],[-1,-12],[-1,-33],[-1,-55],[0,-33],[-1,-7],[0,-14],[0,-7],[-1,-56],[-1,-39],[-1,-9],[-1,-66],[-2,-63],[-1,-58],[-1,-27],[-1,-35],[0,-4],[-2,-65],[-1,-51],[-1,-34],[-1,-52],[-3,-101],[-2,-75],[-1,-3],[-1,-26],[0,-22],[-1,-27],[-1,-42],[-2,-64],[0,-23],[-1,-7],[0,-5],[-3,-3],[-3,-2],[-7,-4],[-1,0],[-2,-2],[-1,-2],[-1,-31],[0,-21],[1,-15],[14,-106],[2,-14],[-9,-193],[-1,-13],[0,-10],[-1,-14],[-2,-54],[-1,-10],[2,-89],[-2,-51],[-2,-31],[-1,-98],[-1,-55],[-4,-3],[-1,-4],[0,-22],[0,-4],[-1,-26],[0,-30],[-2,-20],[-2,-97],[-1,-40],[-1,-79],[-1,-35],[-2,-60],[0,-32],[-1,-61],[-1,-25],[0,-10],[0,-3],[0,-34],[-1,-63],[0,-3],[-1,-55],[-1,-51],[0,-12],[0,-3],[-1,-35],[-1,-31],[0,-10],[0,-16],[0,-10],[-1,-41],[-1,-36],[0,-11],[0,-36],[-1,-27],[0,-8],[-1,-20],[0,-26],[-1,-28],[0,-7],[0,-14],[1,-2],[0,-1],[-4,-127],[-4,-162],[0,-2]],[[98950,38439],[-32,1],[-440,4],[-34,0],[-209,1],[-33,3],[-195,2],[-36,0],[-434,4],[-62,1],[-34,0],[-363,0],[-148,0],[-177,0],[-131,-1],[-279,7],[-3,0],[-93,-3],[-20,-1],[-11,0],[-31,0],[-299,1],[-98,0],[-65,-1],[-69,0],[-129,2],[-65,1],[-96,2],[-154,-1],[-161,3],[-213,2],[-26,1],[-48,0],[-320,6],[-72,1],[-83,0],[-37,1],[-50,0],[-48,0],[-34,1],[-37,0],[-47,0],[-30,0],[-33,0],[-72,1],[-70,1],[-47,0],[-41,0],[-47,0],[-40,0],[-51,0],[-95,1],[-85,0],[-37,0],[-61,1],[-48,0],[-32,0],[-119,1],[-56,0],[-90,1],[-55,1],[-70,1],[-78,-1],[-33,1],[-74,-1],[-87,1],[-50,0],[-36,1],[-60,0],[-59,0],[-64,1],[-76,0],[-43,1],[-45,-1],[-45,1],[-60,1],[-32,0],[-49,-1],[-54,1],[-7,0],[-86,1],[-30,1],[-38,-1],[-35,0],[-57,0],[-36,0],[-43,0],[-56,1]],[[91522,38490],[7,71],[-48,0],[-39,0],[-40,0],[-79,-1],[-90,0],[-35,-1],[-124,0],[-42,0],[-53,1],[-53,0],[-78,1],[-59,1],[-59,1],[-60,0],[-40,1],[-65,-1],[-33,0],[-34,1],[-109,1],[-8,0],[-310,-1],[-152,2],[-67,0],[-121,0],[-110,2],[-103,3],[-40,-5],[-44,-2],[-66,0],[-81,0],[-72,-1],[-61,-1],[-44,0],[-44,0],[-148,-3],[-96,-1],[-33,0],[-69,0],[-67,-1],[-31,0],[-44,0],[-44,0],[-43,0],[-90,-1],[-47,0],[-47,0],[-48,-1],[-103,-1],[-54,0],[-42,-1],[-31,-3],[-68,-5],[-33,-3],[-35,-3],[-72,-7],[-52,-7],[-49,-1],[-380,-1],[-124,-1],[-91,0],[-76,0],[-42,-1],[-33,0],[-18,0],[-18,-1],[-21,-2],[-61,-23],[-7,-3],[-23,-10],[-56,-25],[-36,-15],[-30,-14],[-44,-22],[-28,-12],[-61,-25],[-36,-12],[-42,-19],[-32,-14],[-44,-19],[-33,-14],[-28,-11],[-22,-10],[-7,-3],[-31,-13],[-29,-13],[-98,-46],[-63,-23],[-29,-13],[-102,-44],[-133,-57],[-109,-45],[-36,-16],[-35,-14],[-28,-12],[-89,-38],[-43,-19],[-33,-14],[-53,-22],[-137,-58],[-35,-15],[-27,-12],[-91,-43],[-116,-48],[-68,-28],[-356,-144],[-35,-16]],[[84551,37514],[5,96],[-2,26],[0,51],[0,27],[0,50],[0,30],[1,41],[0,25],[0,26],[0,25],[0,51],[0,26],[1,76],[-1,90],[0,130],[-1,46],[0,92],[0,1],[0,105],[0,1],[1,173],[-1,25],[-9,74],[-4,26],[0,53],[-1,26],[0,26],[-9,236],[-1,27],[0,26],[-2,47],[-1,39],[-2,41],[-7,26],[-2,26],[12,26],[-2,30],[8,24],[4,52],[2,76],[19,71],[4,35],[-1,26],[-1,26],[-1,27],[0,57],[1,30],[2,35],[1,29],[-13,122],[10,48],[0,27],[-5,117],[-1,86],[0,44],[-1,44],[-1,33],[0,25],[-1,40],[1,92],[-5,59],[4,25],[-4,37],[-2,34],[2,28],[-1,108],[-4,110],[-2,57],[-5,141],[-4,102],[-3,104],[-10,286],[-2,53],[6,34],[0,43],[-1,44],[0,55],[0,33],[-2,66],[-1,44],[-1,38],[1,28]],[[44279,39506],[-46,2],[-98,5],[-29,2],[-49,7],[-40,5],[-15,6],[-114,77],[-94,59],[-33,21],[-34,12],[-22,5],[-28,-2],[-23,-7],[-17,-8],[-11,-9],[-33,-28],[-57,-68],[-67,-108],[-47,-64],[0,-1],[1,-1],[70,-45],[6,-10],[8,-12],[1,-2],[30,-87],[13,-114],[0,-2],[0,-1],[-6,-21],[-17,-18],[-1,0],[-1,-1],[-17,-12],[-13,-5],[-1,0],[-21,-4],[-30,0],[0,1],[-72,66],[-1,2],[-2,0],[-18,14],[-17,6],[-1,0],[-11,1],[-14,-2],[-16,-3],[-12,-3],[-21,-22],[-9,-26],[6,-25],[9,-13],[0,-14],[-13,-14],[-1,0],[-11,-2],[-25,1],[-255,63],[-5,2],[-163,71],[-12,5],[-33,11],[-59,14],[-30,4],[-14,-1],[-15,-1],[-2,0],[-1,0],[-1,-67],[0,-44],[-1,-81],[-1,-127],[1,-42],[1,-110],[2,-72],[2,-37],[2,-43],[13,-296],[3,-76],[1,-52],[1,-37],[1,-58],[0,-114],[0,-82],[0,-18],[15,-554],[3,-115],[3,-65],[0,-28],[-3,-243],[6,-273],[3,-216],[3,-125],[3,-28],[-1,-15],[-2,-17],[6,-299],[2,-113],[10,-516],[3,-60],[0,-70],[0,-4],[0,-71],[1,-7],[0,-6],[2,-88]],[[42704,34943],[-133,-1],[-2,0],[-97,1],[-764,7],[-567,6],[-35,0],[-50,1],[-38,0],[-336,1],[-222,3],[-433,3],[-162,1],[-47,1],[-500,2],[-60,0],[-107,1],[-116,1],[-273,2],[-179,2],[-251,1],[-61,0],[-50,1],[-234,6],[-82,2],[-43,0],[-71,2],[-422,-4],[-460,5],[-61,-5],[-49,3],[-85,4],[-42,5],[-168,5],[-42,2],[-31,-3],[-65,-1],[-77,0],[-67,0],[-1,0],[-225,-1],[-118,-1],[-177,2],[-122,1],[-1,0],[-463,3],[-241,2],[-83,1],[-181,-1],[-87,-1],[-37,1],[-161,1],[-290,-3],[-140,-2],[-205,2],[-178,1],[-376,3],[-42,0],[-15,0],[-78,-1],[-147,-1],[-23,0],[-81,0],[-119,2],[-300,-1],[-2,0],[-97,0],[-179,-1],[-564,-1]],[[84551,37514],[-33,-16],[-158,-74],[-80,-26],[-291,-126],[-138,-59],[-156,-67],[-56,-21],[-164,-68],[-60,-26],[-105,-44],[-282,-116],[-5,-2],[-26,-11],[-89,-37],[-36,-15],[-80,-34],[-67,-28],[-88,-36],[-28,-12],[-425,-188],[-35,-12],[-463,-187],[-32,-14],[-29,-13],[-29,-12],[-57,-23],[-35,-14],[-58,-25],[-90,-37],[-96,-40],[-41,-17],[-90,-37],[-67,-28],[-47,-19],[-28,-16],[-32,-16],[-7,-4],[-357,-153],[-238,-84],[-63,-24],[-18,-21],[-53,-20]],[[80219,35692],[-29,-11],[-596,-248],[-276,-112],[-162,-65],[-271,-110],[-425,-172],[-49,-26],[-43,-18],[-502,-207],[-149,-64],[-204,-84],[-244,-100],[-563,-238],[-199,-80],[-28,-11],[-3,-1],[-87,-27],[-63,-8],[-161,-4],[-43,-1],[-301,-3],[-56,-1],[-98,1],[-67,0],[-286,-5],[-292,-5],[-331,-4],[-53,-5],[-125,-1],[-58,1],[-1,0],[-284,-3],[-279,-3],[-115,-1],[-176,-3],[-142,-3],[-430,-6],[-258,-1]],[[72770,34063],[-4,145],[0,25],[-5,173],[0,16],[0,23],[-2,169],[0,182],[-3,360],[-4,107],[2,189],[1,71],[0,5],[0,78],[0,49],[-2,169],[-1,74],[3,176],[2,181],[-1,102],[-4,269],[6,176],[0,4],[1,134],[5,59],[-1,50],[6,290],[6,200],[0,1],[8,288],[11,400],[1,15],[1,31],[-5,51],[3,15],[2,17],[4,80],[0,2],[6,190],[2,121],[0,53],[10,187],[5,183],[4,105],[3,78],[10,207]],[[51808,39305],[15,-676],[2,-92],[3,-176],[3,-168],[9,-403],[2,-118],[3,-180],[1,-41],[0,-62],[3,-30],[1,-40],[0,-52],[0,-5],[0,-65],[0,-2],[1,-48],[0,-51],[150,-11],[78,-3],[-2,-25],[1,-26],[7,-264],[0,-10],[6,-365],[15,-682],[34,-443],[3,-331],[3,-321],[0,-2],[3,-58],[6,-63],[1,-23],[5,-77],[6,-469],[7,-326],[0,-49],[1,-81],[0,-73],[0,-41],[-2,-166],[2,-46],[2,-33],[1,-72],[-3,-108],[-2,-61],[-2,-29],[-2,-21],[0,-7],[3,-44],[3,-36],[0,-12],[1,-66],[0,-8],[0,-116],[-1,-68],[0,-40],[0,-17],[0,-67],[-8,-103],[-2,-37],[-16,-195],[582,17],[394,-3],[318,0],[274,-3]],[[53717,32012],[1,-159],[0,-201],[5,-66],[-1,-263],[1,-74],[1,-96],[1,-142],[2,-129],[13,-92],[-1,-47],[-2,-183]],[[53737,30560],[-320,0],[-286,-1],[-312,0],[-88,1],[-129,2],[-143,0],[-84,0],[-126,-2],[-61,-1],[-2,0],[-185,-4],[-301,3],[-145,2],[-1302,11],[-39,1],[-259,2],[-181,2],[-69,2],[-178,1],[-138,1],[-222,1],[-47,1],[-297,2],[-473,3],[-122,0],[-49,-1],[-185,0],[-141,1],[-118,0],[-2,0],[-124,1],[-101,0],[-57,0],[-233,0],[-101,0],[-13,0],[-215,1],[-118,0],[-613,2],[-150,1],[-448,1],[-186,1],[-343,1],[-120,3],[-456,-6],[-37,0],[-1,0],[-241,1],[-182,1],[-289,0],[-260,2],[-63,0],[-46,0],[-127,1],[-483,1]],[[42726,30598],[4,192],[1,182],[0,102],[0,60],[1,348],[0,392],[0,66],[0,46],[0,215],[0,7],[0,144],[-9,438],[3,173],[-10,379],[0,70],[0,61],[0,1],[0,41],[-1,135],[-1,102],[-1,72],[-3,262],[0,65],[-1,131],[-5,661]],[[72770,34063],[-95,0],[-10,0],[-462,-3],[-217,-2],[-136,-1],[-213,-2],[-436,-4],[-139,0],[-197,-8],[-302,-11],[-57,-3],[-285,-2],[-130,-1],[-13,-1],[-599,-4],[-119,-1],[1,-46],[-1,-51],[6,-257],[7,-286],[3,-95],[2,-170],[1,-44],[3,-158],[-1,-98],[3,-55],[-1,-204],[1,-56]],[[69384,32500],[-21,3],[-47,10],[-53,33],[-42,11],[-55,2],[-56,-8],[-68,-13],[-186,9],[-19,8],[-11,0],[-62,-21],[-100,-35],[-26,-9],[-1,-3],[-8,-19],[-10,-17],[0,-1],[-19,-17],[-105,-54],[-43,-5],[-3,5],[-1,2],[-94,-6],[-95,-7],[6,-7],[-104,-21],[-114,-23],[-9,-2],[-40,-9],[-9,-2],[-20,-4],[-1,-3],[-38,-86],[-7,-12],[1,-22],[0,-2],[-5,-2],[-18,-10],[-60,2],[-9,0],[-7,3],[-23,9],[-16,-1],[-13,-1],[-24,-1],[-29,-15],[-25,-31],[-49,-62],[-7,-10],[-10,-4],[-30,-13],[-12,-6],[-87,-6],[-10,-1],[-23,-12],[-1,-8],[-1,-31],[0,-1],[52,-158],[-5,-4],[-405,-8],[-166,-3],[-111,-1],[-1,0],[-279,-6],[-377,-7],[-342,-6],[-11,0],[-1318,-25],[-3309,-62],[-286,-5],[-6,179],[-5,181]],[[60896,32049],[-32,2463],[-16,1224],[-17,1263],[-1,58],[-28,149],[-2,187],[-2,101],[-6,275],[-12,539],[-5,276],[-1,64],[-3,251],[-8,76],[8,35],[-36,406]],[[60896,32049],[-423,-8],[-140,-2],[-69,-2],[-395,-8],[-89,-1],[-234,-3],[-195,-3],[-177,-2],[-68,-1],[-158,-1],[-47,0],[-355,-4],[-211,-4],[-231,-4],[-173,0],[-87,0],[-64,0],[-316,0],[-319,0],[-36,-1],[-502,-1],[-418,-2],[-87,0],[-162,19],[-172,2],[-102,-2],[-477,-3],[-419,-3],[-135,0],[-60,0],[-305,-2],[-375,-1],[-114,0],[-64,0]],[[91522,38490],[-92,-391],[-31,-130],[-5,-25],[-4,-13],[-4,-18],[-6,-25],[-5,-29],[-9,-36],[-5,-26],[-6,-26],[-6,-27],[-23,-103],[-58,-245],[-1,-2],[-16,-66],[-4,-31],[-4,-34],[-11,-29],[-8,-35],[-6,-25],[-13,-52],[-8,-32],[-15,-65],[-7,-31],[-6,-25],[-7,-30],[-11,-48],[-6,-28],[-6,-26],[-6,-28],[-6,-28],[-13,-53],[-8,-33],[-6,-27],[-10,-46],[-8,-41],[-8,-31],[-1,-2],[-6,-28],[-12,-48],[-7,-28],[-6,-28],[-6,-29],[-6,-25],[-9,-39],[-54,-248],[-10,-41],[-17,-75],[-6,-25],[-58,-253],[-31,-155],[0,-1],[-14,-53],[-12,-60],[-5,-24],[-6,-25],[-9,-39],[-6,-28],[-6,-30],[-6,-27],[-11,-48],[-6,-27],[-6,-26],[-41,-178],[-20,-102],[-6,-30],[-10,-54],[-12,-57],[-7,-30],[-7,-35],[-10,-49],[-9,-40],[-7,-29],[-12,-36],[-8,-38],[-35,-163],[-44,-206],[-7,-29],[-11,-53],[-9,-37],[-7,-33],[-8,-41],[0,-2],[-7,-26],[-11,-46],[-7,-31],[-5,-25],[-9,-39],[-6,-29],[-7,-30],[-12,-63],[-7,-35],[-2,-5],[-5,-22],[-6,-31],[-6,-29],[-6,-26],[-6,-28],[-7,-27],[-9,-43],[-15,-69],[-10,-44],[-7,-38],[-8,-32],[-7,-34],[-10,-48],[-10,-46],[-94,-439],[-19,-89],[-14,-36],[-10,-26],[-2,-34],[-2,-35],[-42,-185],[-16,-76],[-17,-73],[-14,-62],[-3,-13],[-22,-103],[-81,-351],[-34,-127],[-41,-182],[-73,-374],[-17,-55],[-38,-162],[-12,-48],[-9,-30],[-11,-41],[-5,-26],[-6,-31],[-7,-27],[-10,-33],[-10,-33],[-4,-35],[-32,-158],[-34,-148],[-45,-197],[-5,-20],[-2,-9],[-16,-68],[-11,-48],[-42,-182],[-1,-4],[0,-3]],[[89502,29487],[-10,-33],[-31,-147],[-25,-120],[-17,-78],[-18,-86]],[[89401,29023],[-194,-2],[-191,-3],[-534,-7],[-259,-5],[-297,-3],[-3,0],[-55,-2],[-75,-1],[-372,-3],[-42,0],[1,-92],[1,-29],[0,-28],[1,-34],[1,-72],[1,-36],[3,-32],[0,-1],[-3,-45],[-15,0]],[[87369,28628],[-69,1],[-179,1],[-21,0],[-668,2],[-344,1],[-68,-2],[-63,-1],[-264,2],[-34,0],[-158,-1],[-62,0],[-134,-2],[-165,0],[-164,2],[-426,-2],[-77,-1],[-65,0],[-56,0],[-282,-1],[-37,0],[-42,0],[-844,-3],[-55,0],[-82,0],[-79,1],[-65,-3],[-18,0],[-380,-3],[-32,0],[-38,2],[-3,0],[-211,-5],[-71,0],[-7,0],[-549,-4],[-30,0],[-459,-4],[-126,0],[-37,2],[-58,1],[-78,-1],[-73,0],[-36,0],[-77,-1],[-45,0],[-39,0],[-70,-1],[-65,0],[-46,0],[-72,0],[-114,1],[-59,-1]],[[80073,28608],[1,179],[0,187],[0,364],[1,175],[0,186],[0,179],[1,372],[0,110],[3,257],[0,85],[0,31],[1,43],[0,28],[24,54],[0,85],[0,53],[1,275],[0,1],[0,263],[4,338],[0,31],[1,73],[0,72],[0,1],[1,58],[2,80],[0,1],[2,78],[1,45],[1,21],[2,71],[0,7],[2,59],[0,3],[2,71],[3,86],[11,373],[29,130],[2,179],[2,36],[0,38],[0,26],[0,26],[1,42],[1,41],[2,35],[-1,40],[-1,37],[2,38],[2,57],[0,28],[-2,46],[1,30],[2,31],[0,30],[-2,27],[4,28],[0,51],[2,56],[2,145],[1,38],[0,52],[0,45],[3,33],[0,28],[-2,44],[-3,34],[0,40],[7,115],[-4,91],[3,88],[1,35],[2,67],[7,237],[1,44],[7,179],[0,1],[3,117],[7,35],[6,32],[-3,137]],[[98950,38439],[2,-11],[2,-46],[1,-41],[0,-29],[0,-17],[0,-8],[-1,-30],[0,-70],[-1,-73],[-3,-210],[0,-24],[-1,-61],[-1,-45],[-1,-54],[0,-1],[-1,-17],[0,-3],[-2,-44],[0,-3],[0,-2],[0,-17],[0,-2],[1,-27],[0,-3],[0,-41],[-1,-1],[-5,-1],[0,-1],[2,-26],[2,-38],[-2,-36],[-2,-42],[-2,-50],[-1,-16],[0,-9],[0,-5],[-1,-36],[0,-15],[-1,-24],[0,-16],[0,-12],[0,-9],[0,-49],[0,-3],[-1,-16],[-2,-61],[0,-4],[1,-8],[6,-59],[1,-9],[-3,-11],[-5,-19],[0,-40],[0,-29],[1,-3],[6,-24],[0,-11],[-6,-230],[-3,-74],[0,-11],[0,-71],[0,-3],[0,-2],[0,-2],[0,-130],[0,-39],[1,-61],[0,-11],[1,-11],[0,-5],[0,-2],[0,-25],[0,-30],[0,-114],[0,-34],[-1,-128],[0,-51],[1,-135],[2,-63],[2,-171],[0,-110],[1,-196],[0,-105],[1,-163],[0,-25],[1,-41],[1,-48],[-14,-74],[0,-28],[1,-20],[0,-13],[0,-31],[0,-30],[0,-39],[0,-10],[1,-12],[3,-30],[1,-21],[0,-10],[1,-25],[0,-10],[0,-66],[0,-261],[0,-46],[0,-25],[-2,-92],[0,-31],[-1,-18],[-1,-62],[2,-26],[0,-2],[1,-3],[0,-15],[0,-3],[-1,-24],[1,-131],[-1,-28],[0,-3],[0,-10],[-1,-79],[0,-17],[0,-27],[0,-29],[0,-2],[-8,-2],[-3,0],[-132,-24],[-24,-4],[-9,-2],[-53,-19],[-62,-23],[-85,-40],[-25,-23],[-67,-45],[-73,-38],[-8,-5],[-14,-12],[-18,-16],[-131,-73],[-24,-16],[-27,-23],[-41,-25],[-5,-3],[-25,-10],[-20,-9],[-27,-15],[-39,-27],[-34,-23],[-15,-14],[-37,-26],[-24,-17],[-29,-18],[-36,-33],[-11,-8],[-25,-24],[-26,-26],[-49,-33],[-39,-18],[-32,-10],[-49,-18],[-72,-24],[-85,-29],[-4,-1],[-30,-6],[-28,-11],[-32,-8],[-33,-15],[-174,-60],[-30,-11],[-129,-44],[-39,-14],[-55,-20],[-3,-2],[-35,-14],[-3,-2],[-37,-22],[-51,-34],[-59,-40],[-40,-37],[-29,-43],[-27,-40],[-2,-1],[-3,-3],[-2,-1],[-8,-32],[1,-48],[0,-1],[9,-40],[24,-23],[59,-48],[18,-21],[12,-14],[20,-44],[-1,-1],[3,-4],[23,-21],[2,-2],[15,-14],[17,-26],[25,-33],[19,-30],[25,-28],[30,-30],[22,-21],[35,-33],[36,-31],[32,-24],[29,-18],[41,-25],[31,-20],[45,-22],[13,-7],[9,-2],[-1,-1]],[[97186,31565],[-2,-2],[-5,-4],[-7,-5],[-27,-21],[-74,-55],[-69,-41],[-69,-41],[-20,-11],[-33,-18],[-49,-33],[-45,-48],[-33,-19],[-99,-100],[-40,-30],[-45,-17],[-65,7],[-149,70],[-28,6],[-146,53],[-34,-3],[-40,-14],[-44,-37],[-92,-51],[-18,-10],[-27,-9],[-39,-3],[-31,-10],[-17,5],[-12,10],[-2,13],[-9,9],[-37,8],[-38,-16],[-26,-30],[-4,-11],[-10,-25],[-18,-22],[-31,-34],[-46,-24],[-97,-57],[-39,-14],[-26,-9],[-59,4],[-16,1],[-54,50],[-6,-6],[-39,15],[-6,1],[-21,4],[-44,-8],[-55,-31],[-22,-13],[-2,-27],[23,-34],[31,-54],[-23,-5],[-23,-5],[-7,4],[-24,-28],[-11,-19],[-17,-29],[-18,22],[-7,-1],[-83,7],[-42,-4],[-11,-3],[-1,-5],[13,-6],[21,0],[15,-5],[-8,-33],[-20,-31],[-25,-16],[-57,-4],[-107,-7],[-50,-4],[-37,11],[-30,14],[-23,18],[-3,14],[-4,21],[-12,4],[-9,-3],[-94,-92],[-49,-34],[-35,-6],[-77,6],[-176,35],[-123,64],[-14,28],[-31,-2],[-2,-13],[-2,-12],[-6,-33],[-28,-10],[-196,-2],[-26,17],[-17,26],[-18,23],[-51,-5],[-39,-10],[-66,-121],[-65,-120],[15,-77],[3,-32],[-23,-102],[-22,-49],[-29,-32],[-33,-16],[1,5],[-1,5],[-1,9],[-3,11],[-4,8],[-3,6],[-6,9],[-2,4],[-7,7],[-4,3],[-8,6],[-11,7],[-4,2],[-12,5],[-9,3],[-10,3],[-25,5],[-3,1],[-14,6],[-86,18],[-18,5],[-21,7],[-28,12],[-28,15],[-70,22],[-79,5],[-32,-10],[-67,-113],[-42,-70],[-129,-1],[-77,9],[-200,25],[-63,-25],[-40,-17],[-45,-18],[-44,-35],[-122,-96],[-75,-19],[-19,-22],[0,-53],[21,-43],[29,-12],[39,-8],[25,-19],[31,-37],[24,-53],[-15,-31],[-52,-12],[-53,28],[-47,17],[-82,31],[-39,9],[-51,-19],[-42,-19],[2,-50],[2,-67],[2,-46],[-21,-30],[-70,-34],[-40,-8],[-20,6],[-100,19],[-26,55],[43,32],[-43,39],[-61,3],[-51,-43],[-5,-91],[-42,-38],[-51,0],[-105,21],[-116,37],[-69,-13],[-79,-77],[-71,-80],[-58,-40],[-78,-30],[-33,-75],[-27,-39],[-68,-17],[-116,83],[-95,40],[-114,-26],[-64,-29],[-68,-42],[-35,-10],[-39,0],[-38,2],[-37,7],[-37,17],[-18,21],[-21,40],[-12,24],[-8,24],[-5,32],[3,45],[13,29],[18,31],[28,32],[80,54],[63,37],[23,23],[5,55],[-27,28],[-42,11],[-36,-2],[-52,-9],[-33,-1],[-44,-6],[-44,-25],[-26,-14],[-17,-52],[-34,-32],[-82,-45],[-60,-24],[-39,-4],[-44,0],[-2,1],[-1,0]],[[25871,35094],[-1,-51],[0,-54],[0,-47],[-1,-59],[1,-96],[1,-64],[2,-52],[-5,-214],[-1,-26],[-1,-67],[0,-113],[0,-66],[1,-56],[1,-49],[0,-61],[-1,-96],[1,-109],[-5,-182],[3,-39],[-2,-52],[-3,-226],[3,-44],[0,-64],[0,-111],[0,-119],[0,-26],[1,-47],[0,-251],[3,-57],[2,-97],[-1,-25],[0,-5],[-1,-88],[0,-26],[-1,-61],[0,-46],[0,-1],[-1,-136],[-1,-181],[0,-28],[-3,-39],[2,-114],[2,-111],[1,-77],[1,-104],[-2,-55],[5,-179],[1,-25],[3,-99],[1,-38],[1,-48],[0,-35],[1,-168],[-10,-121],[1,-38],[1,-72],[3,-262],[0,-36],[0,-84],[0,-70],[-1,-168],[0,-39],[-1,-100],[-1,-375],[3,-32],[1,-244],[-5,-91],[-2,-73],[-1,-48],[-1,-53],[2,-205],[0,-174],[3,-46]],[[25870,28479],[-2,-40],[1,-115],[-84,-1],[-194,-2],[-169,-1],[-122,-2],[-86,2],[-2,0],[-135,0],[-120,1],[-56,0],[-166,0],[-461,1],[-144,1],[-60,1],[-182,2],[-185,1],[-134,-1],[-153,-1],[-302,-2],[-2,0],[-146,0],[-195,0],[-328,1],[-230,4],[-152,2],[-183,1],[-60,-5],[-513,2],[-430,1],[-131,1],[-129,0],[-170,1],[-100,1],[-1,0],[-48,1],[-68,0],[-154,2],[-142,1],[-1,0],[-30,1],[-275,2],[-591,0],[-408,1],[-174,0],[-291,1],[-117,-1],[-258,1],[-153,0],[-69,1],[-61,0],[-151,0],[4,1],[2,2]],[[17359,28345],[19,0],[59,1],[33,1],[39,10],[18,12],[11,7],[-1,30],[-34,26],[-42,2],[-87,-19],[-79,5],[-30,12],[-43,32],[-12,25],[5,40],[1,3],[26,48],[9,17],[10,34],[-7,24],[-34,54],[-9,15],[1,17],[1,26],[1,14],[13,20],[34,18],[33,5],[100,-2],[33,8],[48,32],[4,2],[13,50],[-9,28],[-3,6],[1,6],[7,44],[42,75],[12,10],[-6,71],[-17,12],[-54,38],[-1,1],[-31,27],[-26,23],[-17,32],[4,26],[14,20],[6,4],[29,21],[71,38],[9,4],[9,9],[92,84],[2,3],[6,9],[29,48],[7,11],[0,8],[6,70],[1,9],[-18,25],[-14,10],[-10,8],[-51,16],[-139,65],[-68,40],[-10,5],[-32,25],[-6,4],[-54,69],[-5,6],[-2,12],[-4,18],[-47,84],[-56,50],[-86,32],[-319,65],[-64,23],[-1,1],[-1,0],[-43,26],[-50,20],[-336,63],[-101,36],[-339,76],[-85,35],[-37,36],[-9,14],[6,40],[26,12],[19,9],[90,2],[72,-18],[106,-36],[94,-12],[54,7],[25,13],[15,8],[19,26],[4,23],[2,14],[-8,11],[-10,17],[-19,14],[-62,7],[-65,-10],[-18,-9],[-52,3],[-36,9],[-86,25],[-121,47],[-56,39],[-2,2],[-3,4],[-5,6],[-10,14],[-1,8],[-2,17],[-2,13],[4,31],[2,9],[76,68],[57,52],[39,52],[33,64],[5,12],[28,55],[26,68],[7,0],[3,50],[1,18],[1,21],[2,47],[-8,0],[-10,30],[-39,61],[-9,13],[2,13],[-56,96],[-30,50],[-15,12],[-133,104],[-5,8],[-20,30],[-1,1],[-3,17],[1,6],[2,13],[2,14],[0,1],[5,8],[15,24],[94,62],[69,55],[2,2],[51,57],[15,33],[8,60],[-12,62],[-16,25],[0,1],[-2,2],[-29,16],[-43,24],[-55,31],[-44,33],[-57,58],[-40,41],[-46,46],[-1,1],[-75,57],[-1,1],[-1,0],[-7,4],[-71,41],[-63,26],[-2,1],[-53,37],[-62,91],[-52,43],[-44,23],[-72,21],[-26,1],[-109,6],[-7,1],[-130,-6],[-41,-2],[-51,3],[-2,0],[-10,1],[-77,14],[-25,12],[-6,4],[-105,80],[-19,14],[-14,20],[-11,15],[-10,14],[0,11],[1,16],[2,34],[28,31],[11,11],[11,12],[28,20],[19,15],[63,33],[37,38],[14,20],[11,46],[-8,51],[-53,44],[-76,21],[-69,4],[-4,-1],[-60,-6],[-103,6],[-138,8],[-17,1],[-9,1],[-83,12],[-46,7],[-13,2],[-6,0],[-88,5],[-1,0],[-6,-1],[-36,-5],[-44,-6],[-81,-22],[-2,0],[-1,0],[-99,2],[-11,0],[-66,24],[-10,7],[-72,45],[-16,-4],[-1,0],[-8,39],[-6,28],[-8,37],[-7,30],[16,4],[4,2],[39,39],[62,44],[37,1],[62,-18],[50,-6],[43,-3],[17,-5],[113,-20],[36,1],[65,0],[78,15],[41,37],[20,47],[-56,85],[-83,36],[-36,9],[-37,-10],[-61,-4],[-24,8],[-9,11],[6,40],[-33,32],[-128,74],[-174,47],[-95,39],[-75,75],[11,40],[5,5],[12,14],[53,64],[54,41],[27,28],[10,11],[1,7],[2,17],[5,32],[-9,14],[14,60],[24,26],[55,31],[9,6],[35,12],[60,23],[69,36],[48,41],[6,10],[30,14],[11,1],[12,0],[34,0],[48,-4],[42,-20],[45,-43],[21,-20],[50,-16],[38,-2],[23,3],[55,16],[31,17],[9,9],[3,37],[-21,23],[-9,7],[-75,25],[-81,9],[-37,1],[-81,6],[-33,5],[-43,10],[-24,11],[-8,5],[-16,37],[7,46],[23,56],[19,22],[50,32],[14,9],[15,2],[58,12],[36,6],[68,-7],[8,0],[83,1],[74,0],[60,7],[34,7],[11,2],[86,17],[34,18],[1,44],[-19,25],[-5,6],[-20,25],[-6,8],[-10,37],[-6,75],[4,28],[11,80],[1,9],[14,19],[46,28],[22,5],[42,-2],[46,-25],[28,-16],[36,-12],[1,0],[78,-5],[21,-1],[38,8],[34,6],[20,4],[40,18],[11,10],[2,1],[5,5],[20,43],[34,79],[2,1],[18,17],[17,17],[55,26],[2,1],[44,11],[22,2],[75,9],[67,20],[102,48],[29,16],[13,8],[50,28],[25,22],[0,5],[2,86],[14,26],[10,9],[11,11],[10,9],[67,34],[76,39],[59,40],[13,15],[14,16],[29,33],[23,50],[19,96],[3,61],[-11,108],[-21,119],[-9,7],[-15,40],[-1,2],[-5,23],[-49,199],[-12,16],[-19,26],[0,1],[1,34],[0,12],[4,2],[23,12],[2,1],[16,4],[83,18],[57,30],[18,16],[23,49],[7,50],[-25,49],[-10,8],[-7,5],[-21,16],[-12,3],[-3,1],[-41,13],[-80,4],[-124,-17],[-33,-8],[-52,-27],[-25,-29],[-12,-25],[-11,-21],[-31,-35],[-63,-34],[-21,-7],[-14,-6],[-21,-7],[-8,1],[-45,5],[-10,1],[-27,25],[-10,9],[-5,5],[-13,19],[-27,41],[-64,74],[-73,48],[-104,80]],[[80073,28608],[-155,-2],[-104,0],[-171,0],[-43,0],[-85,0],[-178,-1],[-64,-1],[-273,-2],[-58,0],[-185,1],[-50,0],[-296,-1],[-97,-1],[-74,-1],[-137,-2],[-282,-4],[-161,-1],[-122,-2],[-47,0],[-151,-2],[-2,0],[-81,-1],[6,-201],[0,-3],[2,-52],[4,-115],[11,-370],[-33,2],[-125,0],[-122,0],[-270,0],[-90,2],[-33,1],[-209,-3],[-214,-1],[-2,-52],[-1,-86],[0,-36],[0,-198],[1,-38],[2,-158],[2,-152],[-599,-4],[-266,0],[-261,-1],[2,-116],[3,-187],[3,-200],[3,-153],[0,-4],[1,-80],[-260,0],[-174,-1],[-103,-1],[-14,-133],[0,-32],[-75,0],[-111,0],[-96,0],[-2,166],[-51,-2],[-2,0],[-2,0],[-68,0],[-15,0],[-182,-3],[-123,0],[-323,-2],[-151,2],[-95,2],[-363,-1],[-2,-58],[1,-66],[0,-92],[0,-1]],[[72861,26161],[-69,1],[-123,11],[-25,3],[-109,37],[-117,8],[-3,1],[-28,9],[-12,-1],[-29,-13],[-13,-8],[-31,-19],[-13,-2],[-13,3],[-4,2],[-126,59],[-29,24],[50,74],[20,-7],[9,3],[2,1],[3,7],[-4,18],[-9,15],[-123,79],[-43,15],[-30,7],[-1,0],[-86,-5],[-21,-6],[-58,-26],[-30,-18],[0,-13],[0,-1],[29,-35],[-1,-12],[-11,-8],[-18,-8],[-51,-5],[-69,1],[-1,0],[-2,1],[-70,20],[-16,11],[-11,37],[-2,16],[-34,31],[-20,13],[-42,32],[-41,42],[-31,13],[-51,-1],[-29,-8],[-19,-32],[-1,-7],[11,-28],[125,-38],[8,-34],[-20,-29],[-2,-1],[-2,-1],[-66,-24],[-14,-6],[-23,-9],[-3,-2],[-23,-12],[-12,-11],[-24,-36],[-4,-1],[-31,-15],[-128,-29],[-30,0],[-142,22],[-98,16],[-54,14],[-28,0],[-33,-9],[-82,-28],[-16,-12],[0,-10],[3,-9],[11,-15],[12,-21],[6,-19],[1,-3],[0,-16],[-11,-9],[-10,-3],[-97,-20],[-13,-3],[-1,0],[-14,-1],[-13,12],[-3,2],[-8,12],[-19,17],[-11,3],[-25,0],[-92,-3],[-16,-6],[-7,-10],[-15,-26],[-5,-21],[-2,-48],[-9,-7],[-19,-9],[-29,-14],[-21,-10],[-13,0],[-13,6],[-20,20],[-24,32],[-52,31],[-10,1],[-100,-7],[-11,-2],[-8,-6],[-34,-39],[-16,-20],[-8,-36],[-3,-8],[-3,-8],[-10,-10],[-26,-10],[-67,-1],[-108,-2],[-1,0],[-18,3],[-11,5],[-3,6],[-1,3],[-10,24],[-15,-11],[-15,-12],[-10,-2],[-32,-1],[-14,4],[-24,13],[-6,0],[-5,-1],[-6,-4],[-15,-15]],[[69495,25963],[4,126],[-4,277],[-2,83],[-4,256],[-1,68],[-1,49],[-6,275],[-4,179],[-2,186],[0,84],[-3,111],[-1,141],[0,30],[-1,67],[-5,348],[1,83],[1,17],[-4,133],[-1,82],[-1,92],[-4,256],[-2,103],[-1,83],[-4,95],[0,92],[-2,58],[2,68],[-3,201],[6,26],[-4,84],[-3,49],[0,73],[-7,120],[0,1],[-1,62],[-1,51],[0,46],[-3,41],[0,1],[-2,202],[-2,27],[-4,194],[-1,83],[-2,95],[-4,29],[-5,136],[0,12],[-6,179],[0,187],[-1,175],[-8,197],[0,163],[-3,123],[-1,217],[1,29],[-6,132],[-4,102],[-2,58]],[[42726,30598],[-1,-182],[-6,-668],[0,-45],[0,-41],[0,-8],[-2,-160],[0,-75],[-1,-130],[-5,-633],[0,-61],[-1,-3],[0,-62],[0,-6],[-1,-124]],[[42709,28400],[-280,-1],[-439,-1],[-197,-1],[-209,-1],[-164,0],[-113,0],[-146,-1],[-212,0],[-202,-1],[-65,-1],[-49,-1],[-175,1],[-114,0],[-103,0],[-46,0],[-102,0],[-104,0],[-105,0],[-3,0],[-115,-1],[-230,0],[-41,0],[-31,0],[-123,-1],[-123,0],[-128,0],[-145,0],[-379,0],[-268,-1],[-73,0],[-171,0],[-317,0],[-410,0],[-74,-1],[-233,-1],[-53,0],[-58,0],[-503,-1],[-89,0],[-290,0]],[[36027,28387],[-64,-1],[-35,0],[-33,-1],[-41,0],[-50,-1],[-54,-1],[-31,0],[-32,0],[-35,-1],[-45,-1],[-136,-2],[-3,0],[-52,0],[-87,-2],[-83,-1],[-62,-1],[-39,0],[-33,-1],[-45,-1],[-78,-1],[-45,0],[-35,-1],[-86,-1],[-47,-1],[-420,-6],[-181,-2],[-387,-4],[-206,-3],[-188,-2],[-69,-2],[-41,0],[-26,1],[-10,0],[-112,0],[-43,-2],[-212,0],[-268,-2],[-420,-2],[-94,-2],[-31,0],[-48,1],[-42,1],[-76,2],[-128,2],[-98,2],[-79,2],[-38,1],[-71,1],[-33,1],[-69,1],[-20,1],[-30,1],[-33,1],[-39,1],[-53,0],[-127,3],[-32,1],[-32,0],[-90,2],[-94,2],[-42,1],[-39,1],[-72,1],[-80,2],[-233,4],[-18,1],[-74,1],[-122,2]],[[30156,28382],[-75,1],[-124,1],[-291,5],[-302,8],[-144,2],[-3,66],[-294,2],[-121,1],[-225,1],[-70,1],[-146,5],[-45,-4],[-287,1],[-124,1],[-3,0],[-112,1],[-292,1],[-3,0],[-305,1],[-125,1],[-127,0],[-161,2],[-442,0],[-465,0]],[[69495,25963],[-69,-74],[-66,-73],[-7,-20],[-6,-18],[-31,-40],[-64,-51],[-37,-25],[-61,-33],[-9,-11],[2,-17],[9,-13],[19,-9],[4,0],[18,2],[-34,-40],[-27,-32],[0,-12],[18,-87],[33,-54],[10,-28],[18,-44],[3,-12],[-10,-9],[-1,-1],[-139,-46],[-32,-7],[-11,4],[-173,10],[-19,-3],[-1,0],[-2,-1],[-62,-33],[-8,-9],[-49,-70],[-40,-39],[-14,-15],[-58,-58],[-54,-55],[-45,-20],[-40,-46],[-12,-15],[-55,-63],[39,-67],[9,-16],[-59,-138],[-3,-7],[-19,-15],[-13,-7],[-119,-55],[-36,-15],[-55,-23],[-9,-2],[-65,-43],[10,-45],[2,-7],[3,-15],[15,-68],[-55,-35],[-46,3],[-11,-1],[-15,-1],[-64,-11],[-187,-84],[-3,-1],[-21,-20],[-12,-37],[-12,-20],[-13,-11],[-49,-32],[-9,-2],[-210,-15],[-38,-3],[-8,7],[-18,23],[-5,2],[-17,0],[-84,-27],[-17,-8],[-4,-4],[-2,-10],[15,-14],[62,-20],[10,-7],[1,-6],[-3,-3],[-2,-2],[-20,-9],[-46,-7],[-26,0],[-22,7],[-9,3],[-15,18],[-18,25],[-9,9],[-18,4],[-128,20],[-14,2],[-8,-4],[-11,-8],[-5,-10],[0,-4],[0,-8],[10,-5],[9,-4],[25,-7],[9,-6],[1,-4],[-3,-10],[-34,-31],[-24,-9],[-22,0],[-29,8],[-126,129],[-11,8],[-5,4],[-17,19],[-5,13],[0,11],[6,8],[47,23],[4,2],[6,5],[3,5],[-3,10],[-8,5],[-23,-2],[-35,-9],[-17,-4]],[[66685,24131],[-38,-12],[-7,-6],[-5,-7],[-2,-26],[10,-20],[8,-12],[2,-14],[-18,-14],[-20,-7],[-11,-2],[-41,0],[-25,3],[-18,6],[-15,18],[-2,17],[16,41],[20,42],[5,8],[12,8],[26,13],[3,10],[-3,8],[-74,73],[-72,-1],[-29,68],[-29,67],[39,0],[-20,104],[52,36],[-174,51],[-30,-15],[-43,-7],[-27,-4],[-115,-53],[-2,-1],[-18,0],[7,-12],[0,-9],[-4,-5],[-21,-15],[-21,-7],[-19,-1],[-18,5],[-55,53],[-60,5],[-67,-21],[-82,-26],[-15,-5],[-195,74],[-8,8],[-7,14],[-2,17],[0,27],[0,3],[8,15],[2,1],[6,7],[27,19],[7,9],[0,8],[-7,4],[-10,3],[-49,-1],[-74,-2],[-81,-5],[-82,-4],[-27,84],[-36,17],[-77,15],[-25,-2],[-17,4],[-58,-25],[-21,-23],[-3,-31],[17,-32],[-3,-17],[-11,-14],[-15,-9],[-3,-2],[-12,-4],[-6,-2],[-16,-5],[-31,-3],[-52,5],[-13,7],[-2,2],[-17,15],[-11,18],[-24,45],[-3,16],[3,15],[4,7],[60,31],[6,6],[-1,6],[-12,8],[-30,12],[-24,2],[-34,-2],[-73,-4],[-60,5],[-21,7],[-22,15],[-16,20],[-15,19],[-19,10],[-18,-3],[-8,-1],[-32,-10],[-45,-23],[-40,-24],[-17,-14],[-20,-39],[-1,-45],[-10,-43],[-5,-10],[-1,0],[-15,-15],[-18,-7],[-175,-51],[-27,-6],[-45,-5],[-32,8],[-28,12],[-58,33],[-135,78],[-17,16],[-3,29],[11,128],[1,10],[8,9],[10,5],[59,18],[4,1],[10,6],[2,7],[-4,9],[-8,9],[-11,7],[-19,6],[-19,3],[-50,-1],[-118,-19],[-19,-1],[-62,3],[-5,0],[-21,-3],[-34,-17],[-38,-25],[-16,-15],[-4,-17],[-11,-45],[-10,-17],[-2,-3],[-2,-3],[-17,-18],[-16,-8],[-1,0],[-13,-4],[-10,-4],[-6,-1],[-19,-3],[-112,18],[-39,-4],[-24,-8],[-21,-9],[-94,-75],[-41,-6],[-15,1],[-104,6],[-23,6],[-4,1],[-28,17],[-5,5],[-6,6],[-4,10],[-2,5],[-2,12],[-3,18],[0,22],[47,58],[9,14],[10,16],[-9,20],[-17,12],[-35,16],[-61,20],[-34,7],[-22,-1],[-15,-5],[-11,-10],[-2,-1],[-14,-27],[-7,-12],[-23,-26],[-6,-8],[-3,-1],[-50,-36],[-15,-10],[-11,-19],[-5,-47],[3,-20],[12,-20],[10,-23],[1,-16],[-3,-8],[-13,-6],[-18,-1],[-35,11],[-26,16],[-13,13],[-5,6],[-23,25],[-26,43],[-3,6],[-22,20],[-31,10],[-35,0],[-39,-4],[-90,-16],[-45,-3],[-24,4],[-12,3],[-1,0],[-1,0],[-42,18],[-7,5],[-86,68],[-24,19],[-40,43],[-21,35],[-8,14],[-8,8],[-10,10],[-18,18],[-9,3],[-190,75],[-12,9],[-71,53],[-22,17],[-18,13],[-25,11],[-19,9],[-10,3],[-9,2],[-16,4],[-26,2],[-11,1],[-11,0],[-36,-6],[-23,-3],[-11,-5],[-3,-1],[-66,-26],[-110,-63],[-8,0],[-35,-1],[-5,0],[-29,19],[-1,1],[-34,42],[-66,52],[-33,22],[-17,7],[-28,13],[-9,4],[-51,12],[-1,1],[-4,1],[-51,7],[-78,11],[-111,29],[-33,4],[-20,2],[-54,-10],[-19,-9],[-24,-13],[-4,-2],[-9,-8],[-28,-25],[-12,-11],[-64,-100],[-10,-42],[16,-80],[3,-4],[26,-48],[1,-24],[-12,-14],[-3,-4],[-11,-14],[-86,-41],[-8,0],[-5,0],[-50,4],[-58,34],[-69,1],[-223,-5],[-170,-50],[-102,-30],[-258,-30],[-32,2],[-122,59],[-107,27],[-9,8],[-35,6],[-247,49],[-231,107],[-39,23],[-19,11],[-45,16],[-48,0],[-39,-18],[-9,-4],[-20,-22],[-4,-2],[-16,-9],[-116,5],[-56,13],[-94,40],[-25,17],[-11,8],[-30,20],[-16,20],[-11,12],[-26,70],[-20,18],[-17,14],[-19,8],[-18,1],[-43,0],[-3,0],[-6,-3],[-67,-29],[-7,-3],[0,-2],[-10,-31],[31,-36],[-3,-17],[-35,-21],[-49,-10],[-147,12],[-12,5],[-65,92],[-30,15],[-166,30],[-22,-6],[-16,-62],[134,-70],[64,-37],[30,-17],[-7,-17],[-4,-8],[-2,-1],[-14,-2],[-1,-1],[-50,-2],[-75,-1],[-60,1],[-46,13],[-37,28],[-2,2],[-6,5],[-33,64],[-16,12],[-73,18],[-4,1],[-53,0],[-40,-21],[-7,-10],[-2,-43],[15,-26],[6,-9],[-13,-47],[-19,-19],[-52,-27],[-27,-5],[-41,6],[-38,27],[1,12],[2,20],[3,38],[-16,35],[-22,17],[-3,3],[-16,12],[-43,-16],[-2,-1],[-4,-1],[-29,-10],[-37,-13],[-8,-3],[-119,-70],[-30,-11],[-48,-9],[-29,-24],[-68,-66],[-14,-13],[-93,-55],[-24,-3],[-74,-11],[-31,2],[-35,10],[-10,3],[-10,6],[-39,21],[-20,3],[-41,4],[-6,1],[-22,-5],[-36,-22],[-37,-40],[-27,-30],[-40,-20],[-16,-3],[-23,3],[-5,1],[-24,3],[-9,7],[-6,5],[-18,14],[4,26],[26,21],[46,38],[11,9],[2,1],[15,23],[3,23],[1,3],[-11,28],[-1,0],[-2,2],[-16,13],[-46,10],[-33,-11],[-34,-12],[-55,-12],[-6,-1],[-7,-4],[-39,-20],[-11,-14],[-2,-2],[0,-2],[-2,-51],[0,-22],[0,-6],[-1,0],[-22,-12],[-34,0],[-9,0],[-5,2],[-35,14],[-4,0],[-42,3],[-11,1],[-25,-3],[-56,-5],[-55,-14],[-73,-36]],[[55010,24868],[-4,161],[0,1],[-9,427],[-4,194],[-4,180],[-7,308],[0,1],[-2,106],[-2,71],[0,1],[-1,38],[0,5],[-1,42],[-11,443],[-1,78],[0,9],[-7,336],[-9,388],[0,73],[2,97],[-4,88],[-3,97],[-2,42],[-2,57],[-7,205],[-17,57],[-11,270],[4,59],[2,29],[-12,526],[-1,22],[0,7],[-6,240],[-1,23],[-2,89],[-1,54],[-2,122],[-2,91],[-1,91],[-2,175],[-14,269],[-24,124],[-111,-2],[-45,1],[-73,0],[-295,-2],[-228,0],[-123,-1],[-230,0]],[[97404,28305],[-44,0],[-1,0],[-85,-2],[-70,0],[-85,0],[-98,2],[-387,-2],[-35,0],[-30,0],[-576,2],[-363,1],[-50,1],[-73,0],[-397,2],[-103,1],[-1130,8],[-1,0],[-120,1],[-255,-1],[-298,3],[-148,1],[-327,5],[-30,0],[-56,0],[-34,1],[-115,0],[-37,1],[-282,1],[-6,27],[-91,0],[-72,0],[-40,0],[-33,0],[-296,0],[-331,0],[-227,0],[-295,0],[-162,0],[-98,0],[-42,0],[-176,0],[-91,0],[-484,7],[-281,-3],[-87,1],[-36,0],[-60,0],[5,29],[10,58],[5,27],[5,26],[18,82],[51,246],[2,6],[39,187]],[[97186,31565],[2,-1],[6,-3],[34,-19],[42,-25],[5,-3],[32,-16],[38,-19],[19,-12],[18,-12],[49,-35],[33,-31],[3,-3],[43,-28],[23,-24],[30,-26],[25,-22],[23,-21],[65,-60],[73,-63],[58,-54],[36,-46],[26,-24],[40,-35],[22,-25],[49,-52],[2,-1],[1,-2],[45,-51],[11,-20],[18,-29],[6,-6],[4,-3],[5,-4],[1,0],[5,-8],[3,-5],[5,-10],[5,-21],[12,-12],[51,-41],[54,-36],[42,-28],[53,-36],[36,-26],[28,-25],[41,-42],[15,-21],[31,-48],[33,-48],[25,-37],[47,-80],[26,-49],[12,-22],[24,-55],[4,-15],[5,-28],[1,-51],[-3,-41],[-2,-5],[-7,-25],[-15,-24],[-15,-45],[-11,-30],[-5,-15],[-1,-1],[-21,-40],[-22,-36],[-17,-18],[-18,-16],[-29,-22],[-39,-24],[-30,-19],[-48,-25],[-27,-14],[-16,-19],[-21,-20],[-25,-18],[-23,-14],[-40,-20],[-58,-26],[-44,-17],[-47,-21],[-17,-15],[-9,-9],[-2,-3],[-22,-27],[-9,-10],[-26,-27],[-20,-19],[-21,-16],[-44,-32],[-25,-21],[-29,-20],[-47,-28],[-48,-28],[-36,-17],[-40,-20],[-35,-21],[-37,-24],[-23,-16],[-12,-10],[-26,-20],[-19,-19],[-23,-22],[-26,-16],[-15,-10],[-7,-6],[-22,-17],[-6,-4],[-21,-20],[-26,-29],[-20,-23],[-10,-12],[-19,-14],[-14,-15],[-18,-19],[-34,-38],[-10,-7],[-15,-14],[-22,-29],[-4,-6],[-8,-18],[-5,-10],[-13,-35],[-13,-29],[-4,-10],[5,-10],[8,-33],[9,-48],[15,-24],[9,-11],[14,-22],[0,-4],[0,-12],[2,-4],[8,-13],[17,-17],[16,-16],[1,-1],[8,-4],[8,-6],[8,-8],[6,-4],[1,0],[1,-1],[20,-29],[30,-20],[6,-9],[5,-8],[17,-31],[20,-22],[17,-17],[8,-7]],[[55010,24868],[-13,-9],[-40,-14],[-74,-2],[-80,-35],[-3,-23],[-29,-49],[-23,-20],[-39,-33],[0,-1],[-61,-84],[-7,-9],[-8,-69],[-6,-47],[0,-6],[-1,-8],[-65,-74],[-5,-8],[-17,-31],[-2,-24],[-1,-22],[-1,-11],[13,-46],[11,-36],[-7,-40],[-15,-8],[-11,-6],[-8,-4],[-27,3],[-39,4],[-61,7],[-8,1],[-4,0],[-6,-2],[-34,-8],[-17,-8],[-52,-25],[-21,-2],[-38,26],[-14,14],[-5,4],[-26,2],[-5,-2],[-79,-21],[-32,-9],[-33,-9],[-39,-20],[-18,-24],[16,-43],[3,-163],[4,-200],[3,-159],[9,-184],[0,-29],[4,-40],[3,-292]],[[54002,22970],[-37,0],[-104,2],[-61,0],[-72,1],[-60,1],[-117,1],[-86,1],[-36,1],[-78,1],[-40,0],[-42,0],[-104,1],[-49,0],[-54,1],[-169,1],[-30,-2],[-75,-1],[-159,-3],[-35,2],[-13,0],[-7,-1],[-23,-1],[-65,0],[-99,0],[-78,-2],[-49,-1],[-84,-1],[-59,0],[-85,-2],[-31,0],[-102,-1],[-150,-4],[-115,-1],[-443,-4],[-160,-1],[-400,-2],[-585,-3],[-209,1],[-153,1],[-91,1],[-26,-1],[-17,-1],[-116,3],[-1,27],[-566,-6],[-576,-6],[-63,-4],[-500,-5],[-633,-5],[-128,-1],[-129,-2],[-51,0],[-171,-1],[-417,-3],[-458,-4],[-259,-1],[-32,1],[-34,0],[-201,-1],[-53,-1],[-184,-1],[-6,0],[-297,-3],[-188,-2],[-32,6],[-227,-2],[-117,-1],[-135,-1],[-233,-2],[-321,-2],[-393,-3],[-81,-1],[-160,-1],[-87,0]],[[42701,22932],[0,41],[-1,200],[-1,153],[-2,290],[0,44],[0,10],[-1,32],[0,34],[0,2],[0,28],[-2,43],[-1,6],[0,30],[4,177],[0,63],[1,205],[-6,233],[0,90],[0,54],[0,10],[-10,43],[7,105],[0,31],[0,32],[-2,31],[0,49],[0,2],[4,31],[1,82],[0,12],[2,184],[1,107],[5,90],[-2,63],[5,244],[0,1],[-4,101],[0,1],[0,27],[0,279],[1,35],[-2,291],[0,4],[4,73],[-2,67],[-1,105],[0,75],[-1,109],[-1,168],[8,107],[-2,58],[-6,26],[0,25],[6,322],[0,31],[1,173],[3,332],[2,207]],[[97404,28305],[36,-24],[29,-12],[9,-4],[20,-6],[40,-10],[52,-11],[48,-9],[66,-6],[38,-1],[20,0],[13,0],[54,0],[39,-5],[135,-1],[53,3],[10,1],[11,-1],[50,-2],[84,2],[53,2],[55,0],[87,-2],[116,-4],[85,-2],[3,0],[21,-1],[1,0],[38,-4],[145,-19],[147,-21],[57,-8],[52,-4],[30,0],[0,2],[-7,10],[68,-11],[5,-1],[52,-13],[19,-6],[22,-7],[23,-7],[13,-4],[13,-1],[27,-3],[30,-12],[43,-6],[32,-7],[34,-11],[49,-19],[20,-9],[41,-21],[37,-19],[18,-10],[37,-19],[33,-11],[14,-2],[13,-1],[15,-9],[14,-11],[28,-18],[58,-32],[42,-24],[49,-35],[9,-10],[27,-35],[5,-11],[7,-44],[7,-55],[1,-27],[-8,-42],[-8,-30],[-8,-25],[-8,-32],[-4,-10],[-27,-51],[-27,-44],[-15,-24],[-6,-10],[-1,-1],[-44,-54],[-37,-39],[-43,-35],[-33,-30],[-41,-14],[-5,-2],[-1,0],[-6,0],[-36,-14],[-28,-16],[-70,-42],[-16,-13],[-18,-20],[-17,-23],[-52,-36],[-13,-7],[-14,-7],[-64,-26],[-32,-16],[-11,-6],[-1,-1],[-23,-13],[-9,-5],[-38,-17],[-19,-6],[-18,-6],[-24,-8],[-50,-18],[-16,-8],[-33,-18],[-43,-19],[-29,-14],[-54,-28],[-78,-46],[-8,-4],[-19,-12],[-25,-17],[-27,-24],[-42,-34],[-52,-53],[-18,-25],[-10,-14],[-29,-44],[-6,-12],[-4,-14],[0,-4],[1,-26],[1,-53],[2,-23],[17,-33],[1,-1],[8,-25],[10,-28],[37,-69],[19,-29],[13,-14],[35,-34],[28,-30],[21,-22],[34,-32],[10,-8],[36,-28],[5,-5],[9,-7],[20,-25],[23,-36],[6,-9],[28,-30],[30,-29],[23,-27],[16,-28],[19,-33],[18,-30],[19,-29],[18,-47],[0,-2],[8,-20],[5,-27],[5,-25],[6,-15],[13,-23],[11,-20],[5,-26],[-1,-34],[-8,-50],[-3,-8],[-6,-17],[-33,-51],[-5,-5],[-28,-19],[-20,-7],[-33,-11],[-51,-9],[-2,0],[-68,-10],[-37,-2],[-99,-1],[-48,1],[-40,0],[-35,2],[-50,7],[-11,1],[-92,11],[-57,8],[-15,4],[-2,0],[-36,9],[-59,17],[-99,26],[-52,14],[-31,7],[-75,19],[-129,27],[-98,18],[-44,7],[-102,15],[-142,14],[-138,11],[-41,4],[-31,3],[-51,5],[-43,-2],[-12,1],[-49,5],[-48,7],[-45,7],[-51,14],[-42,12],[-24,4],[-60,6],[-26,2],[-6,2],[-13,2],[-8,-1],[-54,-7],[-46,-5],[-46,-5],[-31,-5],[-36,-11],[-35,-13],[-11,-5],[-5,-2],[-31,-9],[-48,-12],[-82,-28],[-67,-25],[-58,-28],[-42,-19],[-33,-15],[-47,-17],[-55,-21],[-11,-5],[-27,-11],[-14,-5],[-5,-2],[-32,-12],[-35,-11],[-64,-19],[-62,-12],[-45,-13],[-13,-5],[-38,-15],[-9,-3],[-6,-2],[-5,0],[-35,-6],[-47,-16],[-28,-13],[-29,-13],[-42,-15],[-85,-25],[-49,-11],[-53,-10],[-36,-7],[-29,-5],[-34,-6],[-47,-10],[-47,-7],[-18,-1],[-32,-3],[-57,0],[-44,2],[-67,9],[-31,5],[-7,2],[-59,8],[-60,9],[-11,2],[-75,12],[-59,10],[-28,5],[-39,6],[-38,2],[-15,0],[-11,0],[-6,1],[-6,0],[-5,0],[-85,8],[-69,4],[-125,11],[-86,8],[-40,3],[-27,3],[-31,1],[-43,-1],[-61,-1],[-7,0],[-30,0],[-36,-1],[-16,-1],[-18,0],[-34,-3],[-21,-2],[-13,0],[-3,0],[-9,0],[-10,1],[-10,-1],[-8,-3],[-54,-8],[-20,-4],[-7,-2],[-31,-8],[-14,-8],[-6,-2],[-11,-4],[-15,-4],[-53,-25],[-55,-29],[-2,-1],[-17,-9],[-5,-2],[-31,-20],[-19,-12],[-44,-30],[-68,-44],[-9,-5],[-40,-24],[-44,-23],[-30,-13],[-28,-14],[-27,-15],[-28,-12],[-23,-9],[-8,-3],[-24,-8],[-9,-3],[-20,-7],[-32,-11],[-3,-1],[-24,-6],[-49,-19],[-42,-17],[-17,-5],[-6,-2],[-41,-18],[-13,-4],[-28,-7],[-48,-18],[-34,-13],[-14,-5],[-29,-12],[-37,-16],[-41,-18],[-58,-19],[-13,-8],[-5,-4],[-36,-26],[-16,-11],[-37,-23],[-40,-21],[-120,-51],[-79,-34],[-78,-34],[-1,0],[-31,-1],[-92,-1],[-22,0],[-15,0],[-6,-9],[-12,-14],[-1,-1],[-38,-6],[-26,-3],[-40,-11],[-31,-9],[-44,-20],[-27,-12],[-29,-12],[-66,-20],[-68,-16],[-113,-23],[-57,-24],[-46,-5],[-11,-1],[-30,-13],[-3,-1],[-12,-6],[-61,-26],[-30,-4],[-2,0],[-5,-12],[-44,-24],[-122,-68],[-38,-9],[-68,-26],[-61,-24],[-11,-4],[-5,-3],[-54,-29],[-21,-8],[-40,-13],[-55,-18],[-81,-32],[-27,-22],[-38,-13],[-57,-15],[-2,-1],[-19,-5],[-76,-45],[14,0],[-3,-2],[-107,-77],[-1,-21],[0,-2],[-7,-4],[-123,-69],[-74,-42],[-40,-23],[-126,-71],[-3,-1],[-60,-28],[-55,-26],[-46,-27],[-8,-4],[-14,-6],[-54,-35],[-12,-8],[-15,-11],[-8,-6],[-22,-18],[-25,-22],[-56,-36],[-21,-13],[-45,-21],[-44,-20],[-28,-16],[-9,-6],[-17,-7],[-37,-17],[-47,-20],[-33,-12],[-88,-36],[-64,-21],[-33,-11],[-38,-10],[-10,-3],[-59,-19],[-72,-19],[-109,-30],[-55,-15],[-102,-25],[-88,-18],[-51,-9],[-55,-9],[-76,-12],[-74,-16],[-39,4],[-64,7],[-10,0],[-43,-2],[-44,-3],[-19,-2],[-51,0],[-44,-4],[-38,-4],[-51,-3],[-25,-3],[-19,-1],[-58,8],[-28,11],[-20,7],[-10,13],[17,-1],[9,2],[1,3],[-5,2],[-33,7],[-5,0],[-59,0],[-36,3],[-31,4],[-28,5],[-57,15],[-7,2],[-35,9],[-7,2],[-9,2]],[[87420,23049],[-1,16],[-4,78],[-1,4],[-3,64],[-10,437],[-6,261],[-2,99],[-2,57],[-4,212],[-3,120],[-5,125],[-2,71],[-4,155],[-3,114],[5,172],[-4,84],[-2,39],[-4,108],[-2,46],[-2,142],[0,38],[-3,92],[0,101],[-1,177],[0,112],[2,27],[-3,68],[0,37],[0,39],[0,55],[5,68],[3,39],[5,69],[1,45],[2,64],[4,48],[3,40],[0,59],[0,47],[0,47],[0,99],[0,174],[0,204],[0,66],[1,184],[1,95],[-1,25],[0,82],[-1,28],[-1,28],[0,25],[-1,28],[0,28],[-2,56],[-1,67],[-1,102],[0,30],[-1,184],[-1,74],[-1,167],[-1,102],[0,55]],[[87420,23049],[-39,5],[-3,0],[-75,13],[-68,20],[-13,4],[-32,14],[-3,1],[-9,4],[-16,6],[-59,22],[-58,25],[-45,22],[-47,26],[-28,23],[-50,31],[-19,11],[-39,23],[-18,15],[-28,27],[-21,25],[-34,19],[-38,20],[-13,16],[-1,1],[-17,22],[-51,58],[-25,23],[-55,50],[-35,37],[-1,0],[-18,15],[-3,6],[4,4],[18,0],[1,8],[-53,32],[-39,30],[-9,23],[11,-4],[8,-5],[6,-1],[2,1],[1,2],[-50,58],[-8,10],[-37,31],[-32,23],[-58,48],[-40,33],[-17,19],[-1,1],[-79,88],[-1,2],[-15,25],[-7,3],[-23,13],[-34,17],[-2,1],[-26,12],[-23,8],[-10,4],[-47,18],[-61,20],[-27,10],[-37,14],[-1,0],[-30,15],[-43,15],[-37,11],[-51,11],[-55,11],[-74,13],[-86,15],[-33,5],[-70,9],[-59,8],[-48,7],[-48,5],[-42,5],[-33,2],[-66,3],[-63,4],[-50,4],[-52,3],[-50,4],[-12,1],[-19,-1],[-15,-1],[-58,-2],[-2,-1],[-27,-10],[-3,2],[-11,4],[-11,1],[-61,-3],[-45,-3],[-35,1],[-99,0],[-1,0],[-1,0],[-60,-8],[-59,2],[-32,-8],[-53,-7],[-82,-11],[-49,-7],[-9,-1],[-60,-12],[-16,-2],[-23,-4],[-37,-7],[-55,-10],[-83,-16],[-33,-7],[-31,-5],[-58,-9],[-41,-6],[-86,-12],[-68,-11],[-18,-4],[-14,-1],[-71,-16],[-5,-7],[2,-1],[9,-3],[5,0],[10,-1],[-3,-1],[-27,-11],[-34,-7],[-7,1],[-6,-1],[-45,6],[-36,-13],[-67,-13],[-43,-8],[-63,-7],[-49,-11],[-7,-1],[-60,-9],[-8,-2],[-16,-4],[-9,-2],[-3,-1],[-53,-6],[-8,0],[-18,-1],[-77,-3],[-91,-8],[-18,-1],[-13,-3],[-48,-6],[-6,-1],[-29,-1],[-29,0],[-48,0],[-33,0],[-75,0],[-5,0],[-51,1],[-39,5],[-38,10],[-30,0],[-34,2],[-83,15],[-65,6],[-51,11],[-63,8],[-39,5],[-82,15],[-40,7],[-77,15],[-134,24],[-92,14],[-57,6],[-76,9],[-65,5],[-55,4],[-76,2],[-24,-3],[-107,-12],[-69,-15],[-60,-14],[-32,-7],[-40,-7],[-14,-5],[-26,-17],[-27,-16],[-6,-4],[-5,-1],[-15,-4],[-9,-3],[-38,-12],[-65,-20],[-51,-16],[-46,-15],[-51,-18],[-39,-22],[-46,-31],[-26,-24],[-31,-43],[-39,-51],[-66,-70],[-26,-25],[-28,-27],[-77,-60],[-36,-27],[-32,-23],[-25,-23],[-20,-19],[-40,-43],[-17,-28],[-8,-27],[-12,-59],[-9,-25],[-13,-33],[-19,-38],[-9,-39],[-4,-25],[-17,-28],[-22,-57],[-15,-51],[-2,-9],[-12,-85],[2,-55],[7,-40],[5,-26],[43,-90],[22,-25],[24,-22],[26,-17],[12,-14],[2,-2],[43,-42],[38,-40],[72,-60],[5,-5],[1,0],[64,-58],[54,-74],[31,-47],[41,-71],[11,-32],[28,-30],[16,-14],[2,-2],[2,-10],[2,-73],[-1,-15],[7,-30],[16,-73],[7,-51],[-12,-28],[-15,-51],[0,-5],[4,-122],[-3,-48],[0,-18],[-21,-84],[-8,-66],[6,-96],[4,-82],[-9,-42],[-1,-67],[2,-49],[2,-26],[-1,-115],[0,-4],[0,-2],[-1,-52],[5,-61],[6,-26],[12,-54],[19,-53],[15,-39],[26,-58],[6,-14],[6,-14],[58,-73],[10,-12],[173,-214],[1,-2]],[[80576,20419],[-5,0],[-445,-8],[-388,2],[-385,1],[-302,1],[2,159],[-373,-3],[-47,-1],[-114,-1],[-5,262],[-2,63],[0,17],[-1,23],[-80,-1],[-192,-2],[-425,-4],[-91,-1],[-44,0],[-2,0],[-555,-4],[-159,-1],[-238,-1],[-185,-1],[-82,0],[-160,-2]],[[76298,20917],[-2,53],[0,68],[0,84],[0,155],[-1,113],[-2,79],[-13,561],[0,37],[0,39],[-1,38],[-1,51],[-7,33],[-1,362],[0,38],[0,39],[0,1],[-1,67],[-558,0],[-193,1],[-231,0],[-5,0],[-138,0],[-2,116],[-12,610],[0,5],[-905,2],[-214,1],[-7,239],[0,15],[-7,293],[-275,2],[-270,2],[-3,171],[-32,0],[-127,0],[-197,-2],[-217,-1],[0,1],[-6,240],[3,93],[0,125],[-1,14],[0,18],[0,110],[-2,215],[-1,14],[0,27],[-1,48],[-1,48],[-1,61],[0,31],[-2,38],[-1,14],[0,39],[0,41],[-4,190],[0,46],[0,25],[3,84],[-5,138],[0,86],[0,36],[-1,40],[0,65],[5,27],[0,58]],[[30156,28382],[95,-65],[80,-43],[-6,-55],[-17,-8],[-83,0],[-204,38],[-58,17],[-78,-21],[-38,-23],[-20,-14],[-14,-19],[-7,-35],[-60,6],[-167,88],[-46,4],[-52,-25],[-30,-64],[81,-84],[81,-23],[5,-25],[3,-5],[-24,-13],[-3,-20],[22,-28],[-3,-24],[-30,-21],[-50,-21],[-37,2],[-43,30],[-48,3],[-56,-24],[-7,-13],[0,-34],[58,-92],[55,-69],[57,-69],[9,-1],[28,-51],[4,-47],[-43,-38],[-56,-24],[-48,0],[-36,5],[-104,47],[-39,9],[-14,4],[-3,1],[-38,-2],[-40,-24],[-15,-30],[-13,-69],[-11,-57],[-46,-24],[-52,3],[-134,62],[-102,63],[-36,2],[-29,-15],[-14,-19],[6,-31],[44,-30],[44,-16],[66,-24],[29,-22],[26,-38],[0,-71],[-24,-22],[-45,-24],[-24,-13],[-13,-16],[-4,-26],[33,-29],[4,-2],[77,-23],[38,-30],[-2,-47],[-34,-18],[-53,3],[-53,34],[-46,13],[-24,1],[-12,1],[-18,-9],[1,-7],[5,-27],[53,-37],[4,-10],[-12,-44],[-18,-15],[-57,-27],[-83,8],[-38,33],[-4,38],[0,6],[-103,53],[-79,5],[-65,-13],[-41,-25],[-44,-51],[-1,0],[-45,-24],[-38,-5],[-37,2],[-35,13],[-16,12],[-225,12],[-221,12],[-50,-40],[5,-30],[137,-62],[50,-3],[141,-75],[2,-20],[13,-125],[-67,-31],[-110,25],[-106,24],[-58,-16],[-35,-28],[-1,-6],[6,-15],[-7,-50],[-25,-33],[-33,-41],[-7,-14],[2,-17],[-27,-79],[-52,-30],[-96,-42],[-65,-9],[-47,-6],[-19,97],[-59,75],[-47,-3],[-47,-10],[-36,-74],[-42,-87],[-24,-82],[-50,-29],[-7,-4],[-2,1],[-61,22],[-47,95],[-45,44],[-42,1],[-35,-35],[1,-89],[0,-71],[-227,-163],[-97,-13],[-33,14],[-11,4],[-18,14],[-43,59],[-1,1],[1,3],[3,20],[34,19],[43,4],[23,12],[15,33],[3,57],[-8,14],[-38,29],[-63,4],[-33,-5],[-52,-31],[-48,-41],[-68,-29],[-42,2],[-29,20],[-52,35],[-37,3],[-17,-9],[-13,-11],[-6,-5],[-52,-69],[-26,-34],[-3,-20],[1,-1],[76,-56],[19,-15],[52,-38],[30,-49],[-10,-33],[-65,-32],[25,-66],[26,-64],[35,-133],[-12,-113],[-16,-43],[-20,-29],[-47,-31],[-42,2],[-48,17],[-22,7],[-53,4],[-47,-1],[-96,-4],[-44,-11],[-29,-16],[-17,-12],[-28,-42],[-23,-198],[9,-15],[6,-9],[11,-17],[47,-40],[49,-23],[65,3],[43,-4],[84,15],[18,22],[36,91],[100,18],[65,-8],[42,-43],[0,-38],[-30,-103],[-151,-84],[11,-68],[8,-21],[30,-49],[75,-61],[22,-7],[19,-6],[33,-22],[7,-27],[-35,-22],[-57,3],[-46,13],[-38,34],[-4,11],[-4,2],[-31,64],[-85,129],[-62,9],[-76,-25],[-11,-61],[169,-243],[39,-10],[90,-24],[73,-2],[30,-30],[0,-33],[-44,-22],[-7,-1],[-111,-4],[-136,47],[-57,-27],[-14,-23],[-4,-33],[15,-42],[-12,-43],[0,-1],[-41,-41],[17,-60],[43,-6],[37,-3],[33,0],[34,-16],[24,-37],[4,-27],[-15,-24],[-32,-15],[-48,-16],[-47,9],[-140,75],[-43,-20],[-42,3],[-54,23],[-37,2],[-11,-5],[-6,-4],[2,-23],[57,-81],[30,-22],[98,-73],[8,-21],[-6,-43],[-26,-29],[-51,-28],[-5,-1],[-44,-9],[-128,-63],[-8,-3],[-6,-3],[-156,-133],[-9,-56],[15,-45],[15,-21],[3,-4],[87,-55],[-2,-14],[-52,-30],[-41,-18],[-133,-58],[-51,-22],[-22,-6],[-27,0],[-21,0],[-34,-15],[-6,-44],[15,-9],[38,-24],[11,3],[80,-32],[96,-19],[180,-7],[72,-11],[25,-8],[34,-26],[-1,-40],[-35,-25],[-92,2],[-118,3],[-118,-43],[-10,-37],[22,-31],[45,-33],[17,-11],[189,-79],[52,-40],[50,-57],[57,-109],[161,173],[93,101],[90,0],[33,-24],[23,-35],[-54,-79],[-103,-149],[-109,-84],[-52,-40],[-2,-6],[-35,-13],[-38,-59],[33,-29],[17,-14],[43,-35],[15,-12],[39,-26],[42,-3],[38,8],[45,25],[3,3],[23,29],[164,70],[5,0],[68,-7],[60,-6],[17,-2],[28,-3],[-1,-29],[-27,-27],[-4,-4],[-23,-13],[-32,-38],[-7,-50],[15,-45],[33,-33],[-36,-26],[-21,0],[-147,90],[-33,21],[-87,-9],[-62,-50],[-1,-14],[2,-28],[13,-35],[11,-12],[11,-11],[33,-17],[31,-2],[51,2],[38,1],[39,-5],[61,-55],[56,-52],[50,-20],[32,-36],[104,-20],[-60,-67],[-33,-38],[-71,-32],[-22,-10],[-32,2],[-25,8],[-44,27],[-108,50],[-39,9],[-2,0],[-58,3],[-33,-8],[-46,-31],[-28,-45],[-5,-37],[14,-48],[38,-29],[92,-9],[7,0],[29,-19],[180,-149],[29,-51],[48,-47],[36,-30],[16,-24],[7,-24],[-7,-55],[-1,-4],[-3,-21],[-21,-33],[-51,-24],[-24,33],[-2,0],[-193,118],[-74,15],[-23,-5],[-34,-6],[-39,-9],[-15,-52],[29,-25],[59,-46],[104,-80],[3,-4],[2,-2],[-5,-19],[11,-37],[48,-30],[63,-4],[46,-9],[14,-11],[5,-19],[2,-9],[-11,-9],[-10,-3],[-19,-5],[-114,10],[-27,-5],[-52,-28],[-8,-23],[32,-29],[46,-12],[20,-2],[-52,-70],[-18,-40],[-2,-31],[-14,-25],[-7,-44],[15,-44],[26,-39],[23,-25],[38,-26],[65,-24],[63,-4],[58,17],[69,-105],[7,-22],[3,-9],[-9,-14],[-6,-11],[-43,-72],[-54,-48],[-28,-12],[-43,-4],[-110,4],[-16,0],[-34,-18],[-5,-37],[34,-19],[63,-3],[10,-1],[48,4],[11,6],[62,-10],[63,-38],[57,-44],[25,-45],[-5,-33],[-29,-22],[-33,-8],[-94,5],[-46,10],[-29,5],[-69,11],[-45,-8],[-25,-15],[2,-33],[25,-9],[202,-73],[71,-24],[52,-40],[31,-36],[-5,-40],[-45,-17],[-64,-7],[-29,-15],[-18,-19],[-2,-5],[-7,-21],[1,-22],[0,-5]],[[25832,19390],[-149,-86],[-72,-19],[-42,-5],[-9,-5],[-44,-29],[-59,-80],[-16,-43],[-3,-33],[-1,-11],[-4,-43],[2,-62],[-33,-7],[-20,-8],[-45,-26],[-67,-46],[-27,-22],[-6,-5],[-162,-46],[-42,3],[-66,-6],[-3,0],[-7,-3],[-22,-7],[-15,-4],[-162,-76],[-69,-32],[-62,-36],[-85,-50],[-29,-17],[-38,-22],[-22,-13],[-21,-3],[-3,0],[-46,-6],[-94,-13],[-70,-10],[-124,-7],[-24,2],[-63,6],[-7,0],[-30,12],[-38,30],[-20,38],[-6,40],[-8,52],[-61,47],[-34,15],[-4,2],[-3,1],[-59,21],[-2,1],[-59,10],[-1,0],[-1,0],[-77,4],[-56,10],[-8,3],[-228,79],[-253,112],[-297,166],[-86,62],[-21,8],[-69,28],[-81,59],[-4,3],[-61,20],[-10,2],[-14,3],[-53,10],[-19,0],[-86,3],[-179,-26],[-3,-1],[-63,-33],[-40,-59],[-8,-60],[47,-107],[160,-137],[40,-50],[20,-48],[-6,-42],[-4,-25],[-56,-98],[-80,-79],[-74,-40],[-27,-8],[-115,7],[-75,24],[-36,21],[-27,14],[-30,18],[-23,17],[-3,3],[-12,9],[-31,42],[-3,6],[0,1],[-17,35],[-2,27],[7,43],[27,120],[21,39],[12,80],[-22,69],[-12,15],[-15,20],[-14,9],[-5,4],[-48,31],[-125,45],[-47,2],[-111,-26],[-4,-1],[-94,3],[-164,63],[-11,4],[-78,8],[-75,-9],[-51,-28],[-7,-9],[-7,-91],[5,-34],[18,-50],[9,-26],[-8,-53],[-25,-63],[-12,-16],[-40,-21],[-59,-7],[-31,2],[-31,5],[-105,43],[-47,35],[-11,8],[-28,20],[-58,74],[-27,106],[3,54],[-13,24],[-13,7],[-31,16],[-41,9],[-43,-8],[-23,-12],[-83,-69],[-33,-49],[-6,-74],[40,-54],[13,-19],[-4,-31],[-13,-16],[-46,-27],[-54,-7],[-83,8],[-30,8],[-50,20],[-43,30],[-83,73],[-6,6],[-71,21],[-68,4],[-137,-25],[-3,-1],[-128,-9],[-47,2],[-41,9],[-29,1]],[[19166,19077],[-52,1],[-23,1],[-62,-27],[-38,-48],[-6,-74],[22,-72],[-5,-35],[-14,-5],[-43,-5],[-64,51],[-69,54],[-45,39],[-43,7],[-49,-20],[-19,-25],[3,-28],[32,-37],[52,-31],[92,-43],[35,-11],[32,-12],[2,-1],[-27,-17],[23,-77],[1,-15],[1,-12],[-26,-32],[-131,-73],[-122,-47],[-217,-42],[-63,-27],[-32,-14],[-60,-54],[-3,-23],[15,-67],[-5,-39],[-6,-36],[-1,-2],[-43,-29],[-49,-11],[-16,-2],[-48,4],[-33,3],[-29,2],[-75,28],[-2,2],[-130,79],[-3,1],[-4,3],[-25,15],[-42,19],[-72,32],[-82,18],[-104,6],[-35,-3],[-35,-3],[-54,-14],[-69,-40],[-31,-32],[-12,-12],[-28,-16],[-55,-13],[-7,1],[-73,16],[12,213],[5,8],[37,63],[3,23],[9,6],[23,14],[-28,25],[-28,24],[-57,50],[-45,24],[-76,4],[-1,0],[-13,3],[-53,14],[-34,16],[-23,-4],[-80,-13],[-16,-3],[-12,-4],[-85,-33],[-8,-3],[-12,-11],[-17,-15],[-11,-11],[-18,-29],[-2,-4],[-8,-12],[-4,-29],[0,-2],[-1,-9],[120,-195],[23,-37],[5,-8],[4,-3],[43,-33],[7,-5],[36,-37],[3,-3],[25,-32],[3,-7],[1,0],[20,-48],[-4,-26],[-2,-7],[-26,-27],[-166,-48],[-34,-10],[-117,-7],[-174,-3],[-9,1],[-113,8],[-80,11],[-81,11],[-18,-1],[-65,-11],[-5,-1],[-4,0],[-85,8],[-15,1],[-2,1],[-88,30],[-5,1],[-8,6],[-20,16],[-20,15],[-30,45],[-14,44],[-12,38],[-28,26],[-57,3],[-67,-27],[-46,-31],[-33,-45],[-13,-94],[82,-92],[29,-22],[64,-24],[21,-7],[37,-36],[-4,-30],[-5,-5],[-81,-81],[-172,-220],[-10,-28],[-17,-51],[-6,-80],[-2,-10],[-11,-49],[-1,-5],[-1,0],[-13,-19],[-12,-16],[-133,-164],[-26,-27],[-11,-12],[-9,-6],[-38,-31],[-11,-6],[-50,-24],[-7,-4],[-182,-63],[-50,-14],[-22,-3],[-31,-4],[-32,-2],[-88,8],[-24,7],[-57,15],[-26,12],[-38,18],[-105,6],[-96,-14],[-61,-17],[-39,-22],[-25,-28],[-17,-47],[-19,-19],[-38,-16],[-12,-4],[-15,0],[-29,2],[-13,1],[-10,4],[-30,11],[-61,51],[-11,34],[7,36],[8,37],[1,5],[14,69],[-16,31],[-39,29],[-45,16],[-36,2],[-37,-1],[-49,-11],[-51,-24],[-23,-19],[-44,-48],[-31,-35],[-50,-21],[-15,0],[-43,0],[-40,12],[-19,15],[-9,14],[5,37],[13,13],[35,17],[53,27],[2,1],[18,16],[4,30],[-48,36],[-40,9],[-74,1],[-107,-51],[-35,-29],[-16,-17],[-2,-3],[-13,-15],[-5,-15],[-13,-38],[-14,-22],[-19,-31],[-8,-12],[-4,-2],[-58,-28],[-57,-10],[-2,0],[-132,-6],[-34,-18],[-1,-33],[-1,-18],[10,-36],[4,-15],[7,-10],[19,-32],[33,-25],[62,-14],[34,-3],[59,-6],[36,-8],[29,-12],[5,-4],[38,-32],[15,-45],[-8,-55],[0,-2],[-18,-19],[-27,-14],[-19,-10],[-30,-6],[-202,-42],[-11,-2],[-30,-5],[-2,0],[-7,0],[-37,2],[-29,2],[-29,11],[-21,8],[-32,19],[-43,24],[-3,2],[-12,1],[-24,1],[-1,0],[-12,-2],[-15,-3],[-17,-5],[-86,-29],[-145,-41],[-97,-41],[-47,-24],[-46,-37],[-39,-28],[-9,-6],[-60,-30],[-56,-25],[-9,-3],[-54,-17],[-2,-1],[-137,-35],[-110,-23],[-9,-2],[-33,-5],[-55,-9],[-35,-3],[-96,-8],[-57,-6],[-3,-1],[-2,0],[-17,1],[-21,0],[-52,0],[-54,2],[-39,2],[-32,2],[-71,6],[-57,2],[-13,0],[-24,1],[-26,-2],[-12,-1],[-6,-2],[-88,-19],[-51,-14],[-7,-1],[-5,-2],[-31,-10],[-51,-15]],[[10691,16109],[20,126],[-1,116],[-1,26],[7,47],[2,14],[4,32],[54,206],[25,26],[28,15],[23,12],[6,3],[3,1],[35,14],[23,9],[12,3],[53,13],[22,11],[51,26],[32,42],[6,80],[-38,69],[-67,51],[-24,13],[-5,2],[-111,37],[-57,15],[-12,3],[-32,8],[-34,-3],[-51,-4],[-11,-1],[-32,-4],[-134,-14],[-93,9],[-45,19],[-42,36],[-2,7],[-4,10],[-9,28],[7,54],[0,1],[4,25],[15,36],[25,29],[15,18],[186,223],[54,48],[57,34],[99,37],[23,10],[82,22],[176,14],[60,-3],[13,-1],[266,-12],[161,1],[3,0],[3,0],[21,2],[45,4],[59,14],[98,40],[25,10],[20,4],[34,7],[180,60],[92,31],[48,15],[121,44],[72,36],[103,52],[76,49],[5,4],[2,1],[135,115],[17,21],[2,3],[5,5],[21,26],[62,108],[18,19],[34,18],[5,2],[17,4],[61,-6],[12,-2],[65,-45],[55,-39],[94,-39],[36,-5],[26,-2],[89,-5],[82,14],[10,1],[72,27],[62,33],[13,10],[76,63],[41,65],[9,70],[-1,5],[-6,19],[-7,6],[-59,50],[-9,9],[-71,39],[-14,2],[-4,1],[-105,43],[-57,40],[-94,123],[-32,73],[-3,14],[-6,33],[-3,6],[-18,31],[0,1],[-42,43],[-107,101],[-101,110],[-10,37],[0,6],[2,11],[2,13],[32,46],[11,5],[143,77],[319,100],[7,4],[50,26],[18,19],[11,44],[-18,45],[-5,13],[-5,6],[-36,40],[-15,48],[5,37],[32,56],[46,47],[7,4],[27,15],[11,6],[20,5],[8,3],[22,6],[96,11],[60,17],[62,36],[24,13],[10,17],[2,4],[9,15],[0,5],[3,55],[-25,46],[-37,79],[-12,75],[11,82],[20,38],[45,24],[21,11],[8,5],[7,-1],[54,-3],[50,-22],[63,-43],[132,-85],[89,-19],[92,4],[107,18],[20,3],[68,12],[26,12],[23,11],[24,12],[8,10],[2,2],[18,25],[1,10],[4,29],[-2,34],[-11,14],[-9,11],[-35,22],[-53,-2],[-26,-3],[-67,-6],[-53,3],[-81,19],[-15,9],[-32,21],[-37,23],[-55,154],[-7,30],[-7,29],[3,24],[18,24],[17,19],[11,13],[12,4],[67,21],[41,22],[6,6],[21,22],[-55,95],[-4,30],[12,17],[7,11],[35,32],[81,34],[58,36],[36,37],[-1,48],[-10,21],[-20,40],[-12,13],[-105,121],[-8,9],[-1,15],[-6,44],[6,38],[20,38],[28,37],[66,29],[12,7],[5,3],[10,2],[70,16],[57,5],[99,28],[63,34],[41,35],[54,81],[3,19],[0,1],[18,96],[-8,18],[5,37],[16,39],[47,72],[67,63],[147,76],[95,38],[147,48],[3,1],[7,2],[221,49],[265,42],[80,13],[10,-4],[17,1],[229,18],[407,51],[138,40],[71,25],[60,29],[13,7],[53,26],[18,9],[30,20],[15,10],[12,8],[64,46],[64,46],[117,111],[12,16],[29,35],[35,43],[12,20],[16,28],[8,61],[29,66],[4,14],[3,17],[0,10],[-1,36],[-4,27],[0,2],[-4,78],[1,40],[6,55],[1,6],[39,59],[74,71],[2,8],[20,52],[4,10],[7,9],[63,71],[68,54],[21,17],[14,7],[6,4],[6,42],[2,12],[20,63],[18,19],[1,1],[33,17],[82,21],[8,10],[20,26],[9,10],[27,22],[29,18],[31,14],[28,9],[26,6],[7,2],[-6,8],[-37,49],[-1,1],[-1,1],[-158,69],[-38,33],[-11,27],[1,13],[5,34],[50,92],[43,44],[8,5],[27,17],[39,51],[56,135],[4,34],[-24,52],[-14,8],[-49,29],[-1,0],[-2,1],[-33,8],[-52,3],[-64,-3],[-27,-6],[-14,-9],[-16,-12],[-50,-21],[-43,-4],[-35,2],[-2,0],[-26,1],[-15,6],[-30,12],[-15,6],[-4,2],[-13,11],[-21,16],[-12,31],[17,43],[24,15],[14,8],[2,1],[7,1],[71,7],[29,3],[90,2],[96,11],[22,2],[73,30],[63,33],[35,25],[25,29],[28,42],[5,40],[-14,52],[-7,10],[-20,27],[-35,47],[-118,101],[-43,29],[-54,27],[-25,2],[-2,0],[-7,3],[-37,19],[-10,4],[-19,15],[-36,27],[-21,17],[-21,23],[-57,65],[-77,71],[-21,19],[-36,41],[-15,30],[-13,24],[-1,3],[-35,53],[-124,98],[-118,83],[-7,4],[0,2],[6,42],[1,7],[19,22],[9,5],[32,19],[20,11],[31,17],[41,69],[3,17],[2,20],[5,33],[-12,24],[-20,43],[-5,9],[-58,61],[-15,17],[-22,35],[-8,27],[-5,16],[-1,1],[-10,8],[-2,64],[4,26],[3,27],[10,67],[10,48],[6,32],[-30,49],[-43,33],[-45,16],[-45,0],[-22,4],[-1,0],[-4,0],[-213,41],[-15,2],[-301,115],[-67,31],[-8,4],[-4,3],[-29,22],[-9,14],[7,47],[9,6],[9,5],[11,7],[53,4],[82,-32],[8,-3],[52,-7],[44,8],[28,15],[26,32],[4,31],[-12,27],[-43,33],[-6,2],[-24,10],[-61,54],[-16,34],[0,37],[3,4],[45,51],[5,5],[40,6],[117,0],[41,3],[60,5],[33,8],[11,5],[11,7],[12,6],[7,10],[1,4],[2,6],[7,23],[-3,14],[-18,24],[-31,27],[-7,6],[-2,5],[-9,11],[-27,46],[-9,10],[-26,15],[-38,14],[-17,4],[-44,15],[-24,11],[-24,16],[-12,9],[-16,26],[-7,27],[10,71],[6,12],[46,35],[35,12],[8,1],[47,-1],[5,-1],[31,-11],[8,-8],[2,-25],[3,-38],[17,-44],[4,-9],[4,-34],[8,57],[23,79],[2,8],[6,23],[39,53],[14,18],[28,15],[85,42],[46,8],[63,10],[75,9],[45,1],[14,2]],[[42701,22932],[2,-521],[-2,-26],[0,-26],[1,-26],[0,-41],[1,-75],[0,-58],[0,-35],[0,-77],[6,-204],[0,-128],[1,-84],[0,-127],[1,-114],[4,-80],[1,-182],[0,-79],[1,-136],[1,-179],[1,-92],[0,-3],[1,-29],[0,-25],[-1,-27],[0,-26],[0,-3],[1,-125],[0,-302],[0,-28],[1,-156],[0,-50],[1,-51],[0,-133],[1,-182],[1,-180],[0,-101],[0,-66],[0,-69],[0,-33],[0,-104],[0,-33]],[[42724,18916],[-77,-2],[-63,0],[-146,0],[-145,1],[-34,0],[-72,0],[-70,0],[-60,1],[-78,0],[-253,-1],[-169,0],[-54,-1],[-309,-1],[-118,0],[-96,-1],[-47,0],[-251,-4],[-77,0],[-664,-1],[-302,0],[-259,0],[-56,0],[-85,0],[-388,6],[-59,1],[-38,0],[-46,1],[-105,1],[-192,-3],[-85,1],[-100,2],[-170,2],[-20,-1],[3,-5],[25,-44],[13,-23],[2,-4],[-4,-27],[-2,-2],[-34,-27],[-11,-9],[-110,-89],[-10,-8],[-43,-34],[-12,-6],[-96,-44],[-140,-63],[-22,-8],[-107,-41],[-3,-1],[-58,-13],[-59,-13],[-291,-46],[-38,-15],[-12,-5],[-92,-48],[-60,-51],[-21,-34],[-39,-120],[-7,-3],[-21,-9],[-201,-1],[-51,4],[-55,5],[-39,3],[-70,26],[-22,8],[-18,7],[-11,9],[-39,30],[-53,41],[-5,4],[-29,13],[-6,2],[-3,1],[-28,5],[-57,0],[-105,-17],[-54,-8],[-16,-8],[-84,-42],[-6,-3],[-25,-24],[-12,-11],[-18,-7],[-19,-8],[-5,-2],[-2,-1],[-42,3],[-97,19],[-84,36],[-9,7],[-48,41],[-17,91],[-1,1],[-31,38]],[[35425,18387],[-3,220],[-1,85],[1,59],[-2,140],[0,27],[14,92],[-9,27],[2,26],[2,41],[-1,34],[-2,44],[0,36],[-2,29],[3,65],[-1,35],[0,77],[0,27],[1,47],[0,26],[1,56],[1,47],[-1,46],[1,37],[0,36],[0,26],[0,32],[2,299],[2,65],[-3,136],[1,44],[0,36],[1,53],[-4,261],[1,62],[0,27],[3,98],[3,117],[0,7],[0,74],[-6,297],[2,74],[1,33],[0,79],[0,28],[0,49],[0,29],[1,56],[0,36],[0,26],[0,41],[0,43],[1,54],[0,35],[0,136],[-1,77],[0,52],[1,52],[0,30],[0,29],[0,31],[1,28],[0,3],[1,49],[0,115],[1,46],[0,24],[0,2],[1,112],[1,69],[0,46],[1,64],[2,190],[1,94],[1,177],[2,145],[1,123],[1,114],[0,1],[1,34],[0,34],[1,74],[0,72],[0,1],[1,29],[-1,31],[0,54],[0,30],[0,47],[-1,85],[-1,84],[3,78],[5,98],[1,94],[0,62],[1,77],[0,42],[-1,48],[2,109],[1,120],[1,73],[0,25],[0,32],[0,27],[0,30],[0,29],[-1,47],[1,26],[0,29],[-1,74],[-1,42],[0,37],[2,31],[0,32],[-1,36],[0,36],[-1,140],[-1,160],[0,86],[4,140],[33,1],[35,1],[41,0],[41,1],[1,0],[64,1],[244,2],[75,1],[26,0],[2,47],[2,44],[1,210],[0,12],[1,262],[0,230],[1,32],[0,34],[0,33],[0,35],[1,43],[0,301],[0,5],[-1,91],[-1,63],[0,62],[1,147],[0,62],[-1,93],[0,37],[0,39],[0,30],[0,45],[0,32],[0,36],[-1,33],[0,52],[0,33],[0,30]],[[35425,18387],[-194,-1],[-107,-7],[-60,-13],[-45,-25],[-28,-23],[-21,-17],[-26,-36],[-1,-8],[1,-5],[19,-72],[-8,-50],[-14,-11],[-35,-26],[-22,-16],[-9,-5],[-15,-8],[-27,-14],[-22,-7],[-94,-27],[-76,-2],[-3,0],[-24,3],[-48,4],[-16,2],[-50,17],[-22,14],[-12,8],[-6,10],[-6,11],[-9,48],[10,68],[9,58],[0,5],[-5,70],[-14,7],[-124,21],[-144,9],[-2,0],[-1,0],[-90,-11],[-89,-32],[-87,-21],[-7,0],[-25,0],[-42,1],[-116,34],[-74,31],[-25,16],[-7,4],[-96,61],[-218,139],[-1,0],[-36,3],[-7,-4],[-4,-2],[-12,-6],[-5,-7],[-40,-48],[-56,-41],[-9,-6],[-49,-13],[-59,-7],[-63,4],[-40,12],[-29,16],[-73,56],[-8,6],[-25,7],[-4,1],[-1,0],[-13,-3],[-20,-5],[-47,-34],[-33,-18],[-14,-7],[-38,-20],[-78,-26],[-45,-5],[-61,-8],[-7,0],[-28,3],[-30,3],[-4,1],[-20,5],[-20,6],[-35,10],[-64,34],[-50,40],[-16,12],[-25,11],[-19,1],[-30,2],[-13,1],[-268,-34],[-7,-2],[-37,-8],[-16,-4],[-45,-17],[-27,-16],[-40,-22],[-2,-2],[-8,-10],[-94,-108],[-92,-55],[-71,-16],[-69,4],[-15,1],[-20,1],[-50,20],[-13,13],[-15,15],[-4,4],[-57,95],[-4,5],[-11,19],[-5,16],[-24,73],[-21,35],[-10,8],[-28,22],[-14,5],[-26,11],[-21,2]],[[30953,18620],[-86,10],[-12,1],[-25,-7],[-52,-15],[-118,-53],[-28,-1],[-16,0],[-41,-1],[-39,16],[-24,18],[0,5],[2,47],[1,2],[19,26],[24,12],[79,42],[24,19],[1,3],[5,15],[3,8],[-3,3],[-9,7],[-2,1],[-4,0],[-50,3],[-57,4],[-9,0],[-145,23],[-35,8],[-7,6],[-32,22],[-4,2],[-20,42],[4,31],[3,19],[-8,17],[-6,6],[-25,26],[-10,11],[-22,18],[-96,77],[-60,40],[-7,4],[-9,3],[-132,49],[-24,9],[-26,1],[-12,1],[-30,2],[-5,-1],[-24,-3],[-132,-17],[-50,-17],[-51,-27],[-18,-13],[-20,-29],[-7,-51],[-1,-2],[6,-17],[20,-62],[-4,-27],[-15,-8],[-44,-23],[-21,-12],[-36,-6],[-15,-2],[-36,-7],[-26,2],[-40,13],[-28,21],[-10,8],[-4,5],[-21,29],[-5,8],[-3,2],[-31,24],[-14,11],[-113,53],[-37,3],[-28,-15],[-3,-4],[-55,-53],[-4,-4],[-13,-23],[-2,-7],[-2,-15],[-1,-11],[7,-24],[46,-52],[53,-58],[12,-28],[-1,-29],[-37,-19],[-6,-1],[-207,-47],[-26,-4],[-114,-18],[-70,4],[-8,1],[-26,1],[-46,13],[-74,31],[-38,30],[-20,45],[5,30],[34,55],[61,50],[17,13],[3,26],[-12,21],[-39,26],[-210,77],[-25,5],[-89,2],[-66,-17],[-53,-3],[-5,0],[-21,5],[-9,7],[-14,11],[-7,18],[-12,33],[-7,62],[-7,38],[-5,26],[-21,39],[-35,42],[-48,37],[-44,22],[-195,73],[-35,2],[-215,13],[-30,6],[-54,11],[-49,11],[-63,25],[-47,18],[-22,2],[-85,8],[-7,0],[-48,-3],[-49,-11],[-27,-17],[-38,-22],[-22,-13],[-37,-38],[-40,-63],[-14,-22],[-12,-11],[-56,-54],[-12,-11],[-57,-34],[-73,-31],[-3,1],[-75,22],[-77,22],[-82,24],[-1,0],[-12,10],[-28,14],[-18,7],[-19,5],[-133,42],[-86,18],[-63,4],[-46,-6],[-14,-7]],[[76298,20917],[-56,0],[-34,0],[-163,-1],[-44,0],[-33,-1],[-36,0],[-68,-1],[-39,0],[-73,-1],[-19,-1],[-16,0],[-88,-1],[-127,-1],[-148,-2],[-32,-1],[-72,0],[-74,0],[-60,0],[-20,0],[-50,0],[-213,-3],[-85,-1],[-126,-1],[-102,0],[-44,1],[-71,0],[-101,0],[-37,0],[-36,0],[-71,0],[-60,0],[-121,1],[-39,0],[-1,0],[-119,0],[-46,0],[-94,0],[-63,0],[-32,0],[-33,0],[-8,0],[-275,2],[-39,-3],[-49,1],[-18,0],[-282,-2],[-158,-2],[-112,0],[-41,0],[-500,1],[-292,0],[-124,0],[-68,0],[-478,5],[-243,2],[-133,-3],[-35,-2],[-46,-1],[-40,-1],[-36,0],[-43,0],[-53,-1],[-72,0],[-46,-2],[-40,0],[-33,0],[-39,-1],[-40,-1],[-39,0],[-40,-1],[-14,-1],[-30,0],[-36,-2],[-3,0],[-64,-1],[-39,-1],[-29,-1],[-4,0],[-39,-1],[-62,-2],[-65,-2],[-53,-1],[-40,-1],[-66,1],[-37,0],[-2,-363],[-287,-2],[5,-182],[-282,-2],[2,-77],[3,-108],[-281,-2],[2,-55],[6,-224],[1,-73],[-282,-2],[-193,0],[-267,-1],[-21,0],[-12,0],[-31,-1]],[[67910,19791],[-1,9],[-16,0],[-2,3],[-2,9],[0,1],[0,14],[0,32],[-1,44],[0,44],[-1,38],[-1,44],[0,33],[-1,68],[0,8],[6,8],[-2,21],[-375,-9],[-233,-6],[-11,0],[-130,-3],[-48,-5],[-263,1],[-59,1],[-2,128],[-18,928],[-1,187],[-10,417],[-5,179],[-38,0],[-1,335],[1,38],[1,25],[3,50],[0,26],[2,38],[1,38],[0,39],[2,38],[1,38],[0,39],[1,91],[-4,25],[0,1],[-2,208],[-2,141],[-2,63],[1,62],[0,47],[0,48],[4,36],[-2,25],[-8,297],[-3,175],[-2,150],[-2,72],[0,1]],[[67910,19791],[7,-290],[2,-64],[-243,-1],[-318,0],[-4,-275],[0,-37],[1,-197],[0,-139],[0,-71],[-55,0],[-150,-4],[-57,-1],[-294,-2],[4,-234],[-6,-134],[-106,-2],[-454,-9],[-76,-13],[-149,4],[-42,1],[-37,1],[-126,-2],[-117,-1],[-44,-4],[-143,3],[-60,-5],[-153,-2],[-203,-3],[-72,-2],[-118,-3],[-283,-1],[14,-47],[12,-26],[0,-96],[0,-62],[1,-95],[-142,-1],[-113,-1],[-35,0],[-107,-1],[-135,-2],[-124,0],[-19,0],[-41,0],[-389,-5],[-15,0],[10,-365],[-29,-1],[-3,-47],[-1,-62],[1,-115],[-4,-258],[0,-152],[2,-174],[6,-226],[-7,-49],[-16,-29],[0,-282]],[[63480,16208],[-160,4],[-134,0],[-38,-3],[-74,1],[-111,3],[-51,1],[-37,1],[-213,-13],[-64,-2],[-100,-3],[-51,0],[-119,0]],[[62328,16197],[-556,3],[-54,-1],[-131,2],[-204,2],[-178,3],[-364,6],[-172,8],[-70,3],[-221,-1],[-96,4],[-189,3],[-74,2],[-1,0],[-45,1],[-66,2],[-215,5],[-95,3],[-50,-6],[-506,12],[-279,6],[-1,0],[-283,7],[-421,10],[-150,5],[-123,3],[-88,1],[-223,7],[-71,3],[-49,2],[-82,3],[-197,3],[-42,2],[-114,2],[-3,0],[-34,1],[-38,1],[-131,2],[-196,1],[-151,-1],[-49,-1],[-91,0],[-252,2],[-93,5],[-55,1],[-25,8],[-26,6],[-59,6],[-63,0],[-16,-7],[-9,-9]],[[55627,16317],[-223,2],[-5,0],[-795,5],[-35,-1],[-31,-1],[-319,0],[-99,-1],[-118,1]],[[54002,16322],[4,465],[2,256],[1,135],[1,65],[3,121],[-1,149],[-12,58],[2,144],[0,1],[2,159],[8,382],[0,125],[3,35],[10,368],[-6,35],[1,48],[1,98],[0,27],[1,28],[0,133],[1,178],[0,99],[0,76],[0,64],[0,51],[-1,62],[0,6],[-6,41],[1,138],[0,59],[1,33],[0,54],[1,84],[0,1],[1,35],[3,258],[0,75],[2,129],[0,185],[0,51],[1,99],[0,30],[0,333],[0,32],[-1,53],[3,314],[2,101],[0,50],[1,30],[-7,128],[-3,51],[0,5],[-4,47],[-3,138],[4,97],[1,40],[6,125],[4,49],[0,2],[-3,34],[-2,38],[-3,50],[-4,59],[-2,28],[-6,87],[-3,44],[-2,38],[-2,35]],[[54002,16322],[0,-84],[-1,-141],[-2,-152],[0,-58],[-1,-83],[-1,-161],[0,-43],[-157,0],[-51,4],[-38,1],[-43,0],[-15,1],[-41,0],[-72,2],[-38,0],[-54,0],[-74,1],[-37,0],[-295,-3],[-82,6],[-38,2],[-31,0],[-297,-1],[-293,0],[-54,0],[-51,3],[-114,6],[-121,-3],[-230,19],[-288,0],[-250,3],[-94,2],[-128,2],[-249,2],[-146,2],[-115,1],[-72,1],[-389,4],[-354,5],[-2,0],[-150,-1],[-156,0],[-554,0],[-78,0],[-131,0],[-97,0],[-37,1],[-253,2],[-215,-1],[-129,-2],[-71,0],[-88,-1],[-31,0],[-264,-1],[-30,0],[-561,-3],[-176,-2],[-224,0],[-127,-1],[-36,0],[-145,-2],[-130,0],[-59,0],[-380,-6],[-249,-2],[-54,0],[-71,-1],[-71,-1],[-113,-1],[-98,-2],[-1,0],[-142,-1],[-5,0],[-83,-2],[-66,-1],[-154,-5],[-470,-3],[-51,-1],[-517,-1],[-178,-1],[-316,-2],[-40,0],[-131,-2]],[[42752,15617],[-3,243],[-2,189],[-1,123],[0,8],[0,17],[-2,185],[-1,171],[-1,14],[0,52],[-1,52],[0,4],[0,58],[-2,238],[-1,32],[-2,339],[-2,260],[0,3],[0,30],[-4,370],[-1,69],[0,28],[0,32],[-1,49],[-2,74],[1,294],[-1,75],[0,58],[-1,60],[0,35],[0,31],[-1,106]],[[80576,20419],[35,-43],[34,-31],[40,-58],[137,-186],[60,-110],[19,-41],[31,-64],[3,-11],[7,-24],[3,-15],[1,-6],[7,-35],[6,-148],[0,-48],[2,-34],[-3,-61],[-6,-37],[-3,-47],[-19,-45],[-5,-13],[-9,-46],[-18,-36],[-34,-55],[-74,-103],[-61,-73],[-81,-72],[-90,-55],[-87,-48],[-42,-19],[-15,-7],[-90,-36],[-45,-15],[-110,-36],[-130,-35],[-128,-36],[-47,-14],[-120,-36],[-81,-24],[-37,-13],[-85,-32],[-52,-24],[-70,-32],[-1,-1],[-87,-48],[-83,-53],[-45,-39],[-56,-67],[-21,-37],[-9,-14],[-38,-52],[-13,-24],[-17,-27],[-4,-6],[-18,-35],[-20,-47],[-1,-4],[-12,-30],[-13,-34],[-5,-33],[-17,-28],[-33,-39],[-52,-60],[-23,-28],[-27,-28],[-24,-27],[-27,-30],[-12,-13],[-19,-19],[-31,-27],[-22,-23],[-20,-21],[-46,-36],[-2,-2],[-38,-32],[-44,-32],[-36,-26],[-42,-26],[-29,-12],[-22,-6],[-32,-10],[-67,-28],[-75,-26],[-108,-36],[-198,-62],[-28,-9],[-183,-52],[-127,-25],[-55,-11],[-50,-11],[-154,-24],[-30,-1],[-71,-8],[-60,-6],[-68,-5],[-54,-8],[-4,0],[-7,0],[-23,-3],[-15,-2],[-31,-2],[-29,-2],[-40,-3],[-2,-1],[-72,-6],[-48,-3],[-61,-2],[-41,-1],[-26,1],[-33,0],[-52,-1],[-13,0],[-36,1],[-31,-2],[-18,-3],[-12,-2],[-37,-7],[-38,-3],[-41,0],[-35,1],[-41,-1],[-38,-1],[-13,-1],[-18,-3],[-13,1],[-46,-3],[-48,-6],[-45,-9],[-3,0],[-35,-11],[-32,-4],[-2,0],[-25,-6],[-13,-2],[-9,-2],[-86,-18],[-43,-12],[-49,-16],[-44,-15],[-9,-4],[-21,-7],[-49,-20],[-50,-20],[-45,-20],[-27,-10],[-64,-27],[-25,-12],[-3,-2],[-1,-1],[-11,-8],[-6,0],[-1,-1],[-3,-1],[-37,-16],[-22,-9],[-20,-9],[-9,-5],[-26,-12],[-30,-19],[-7,-7],[-2,-1],[-2,-1],[-25,-16],[-60,-55],[-37,-43],[-23,-25],[-14,-13],[-3,-4],[-39,-35],[-19,-18],[-38,-30],[-19,-16],[-9,-8],[-23,-20],[-18,-17],[-2,-1],[-29,-21],[-1,0],[-16,-13],[-5,-4],[-2,-2],[-7,-6],[-5,-4],[-11,-10],[-3,-2],[-7,-8],[-12,-11],[-1,-2],[-2,-3],[-1,-1],[0,-1],[-4,-3],[-2,-1],[-1,0],[-7,-9],[-1,-3],[-3,-2],[-1,-1],[0,-1],[-1,-1],[0,-3],[-1,-1],[-6,-5],[-9,-10],[-8,-10],[4,-5],[-5,-20],[-5,-42],[-2,-9],[-6,-20],[-13,-27],[-13,-29],[-10,-17],[-11,-23],[-3,-5],[-25,-45],[-22,-34],[-20,-23],[-9,-12],[-14,-24],[-15,-19],[-5,-7],[-19,-32],[-35,-42],[-1,0],[-16,-21],[-9,-12],[-14,-19],[-24,-36],[-13,-29],[2,-7],[-4,-4],[-3,-1],[-3,-2],[-15,-27],[-6,-20],[-4,-8],[-12,-21],[-4,-13],[-12,-23],[-20,-33],[-1,-1],[-1,-2],[-1,-4],[0,-1],[-1,-4],[-2,-10],[-2,-9],[-9,-21],[-7,-22],[-2,-10],[-3,-3],[-1,-4],[-4,-14],[-7,-15],[-7,-17],[-15,-30],[-1,-3],[-10,-16],[-8,-24],[-11,-29],[-13,-27],[-6,-13],[-8,-22],[-2,-1],[-4,-11],[-2,-8],[-1,-2],[-9,-33],[-5,-31],[-3,-37],[-1,-25],[7,-49],[1,-7],[1,-10],[1,-1],[2,-8],[7,-65],[0,-10],[-2,-73],[1,-21],[1,-39],[0,-17],[-6,-29],[-5,-23],[-7,-22],[-11,-26],[-23,-50],[-3,-4],[-1,-1],[-6,-9],[-13,-23],[-8,-6],[-16,-11],[-5,-4],[-22,-42],[-15,-29],[-4,-12],[-10,-47],[-2,-4],[-14,-43],[-1,-4],[-9,-26],[-8,-24],[-5,-16],[-26,-48],[-21,-40],[-26,-39],[-4,-8],[-7,-13],[-3,-5],[-12,-22],[-1,-3],[-19,-32],[-14,-25],[-26,-46],[-2,-4],[-11,-20],[-1,-1],[-25,-49],[-2,-5],[-7,-12],[-16,-23],[-9,-22],[-15,-21],[-9,-17],[-3,-6],[-12,-18],[-2,-6],[-11,-13],[-8,-8],[0,-1],[-15,-15],[-6,-6],[-3,-2],[-26,-26],[-19,-22],[-36,-28],[-25,-49],[-25,-16],[-30,-22],[-8,-6],[-43,-32],[-174,-151],[-17,-12],[-3,-2],[-7,-9],[-19,-15],[-12,-10],[-9,-8],[-19,-11],[-3,-4],[-10,-13],[-6,-10],[0,-1],[-7,-11],[-5,-9],[-36,-54],[-20,-34],[-4,-8],[-24,-25],[-19,-19],[-21,-15],[-34,-22],[-71,-39],[-52,-28],[-40,-21],[-39,-22],[-87,-33],[-272,-103],[-1,-1],[-120,-46],[-132,-56],[-28,-11],[-3,-1],[-1,-1],[-281,-113],[-89,-36],[-438,-169],[-15,-4],[-92,-37],[-125,-50],[-57,-20],[-110,-28],[-1,0],[-11,1],[-79,5],[-56,4],[-33,10],[-25,7],[-241,108],[-15,5],[-12,-2],[-9,-2],[-3,0],[-3,-1],[-40,40],[-38,26],[-78,85],[11,37],[-5,11],[-71,44],[-6,4],[-2,1],[-55,34],[-74,50],[-4,2],[-16,8],[-108,9],[-1,0],[-14,7],[-11,5],[-2,1],[-49,24],[-1,0],[-1,1],[-36,10],[-38,0],[-189,1],[-45,1],[-48,0]],[[69610,12955],[45,68],[0,26],[-18,79],[-13,58],[-9,34],[-13,31],[-10,25],[-22,25],[-88,71],[-2,2],[-6,11],[1,19],[15,14],[6,2],[15,6],[63,8],[88,2],[19,4],[15,10],[5,15],[-11,13],[-42,23],[-58,24],[-27,18],[-12,10],[-13,20],[-1,7],[-1,10],[14,21],[27,30],[151,71],[19,6],[56,19],[30,7],[14,7],[2,9],[0,11],[-7,11],[-9,11],[-27,15],[-51,17],[-144,34],[-45,2],[-16,1],[-23,7],[-23,17],[-16,29],[-43,102],[10,53],[63,34],[20,2],[50,-5],[53,-16],[8,-2],[35,-15],[27,-19],[18,-7],[45,-4],[45,2],[32,8],[12,9],[4,10],[-1,12],[-11,50],[-10,7],[-79,24],[-50,11],[-13,3],[-20,7],[-18,9],[-7,9],[-1,21],[5,8],[8,7],[18,7],[17,2],[25,-2],[20,-4],[27,-10],[29,-13],[13,-3],[23,2],[43,12],[6,5],[7,10],[2,26],[9,3],[81,31],[273,6],[18,41],[5,14],[5,13],[11,25],[18,43],[68,2],[36,0],[45,15],[57,35],[-469,449],[-863,827],[-75,72],[-17,16],[-378,-4],[-88,1],[-126,-2],[-58,1],[-232,-3],[-130,0],[-148,0],[-551,-4],[-41,1],[-34,1],[-158,1],[-179,-1],[-138,1],[-293,1],[-48,1],[-77,-1],[-259,0],[-56,0],[-39,-1],[-62,0],[-112,1],[-94,-7],[-80,-1],[-87,2],[-42,-1],[-150,-3],[-141,0],[-457,-5],[-297,1],[-117,-1],[-112,-2],[-3,185],[-141,3],[-133,1],[-401,-1],[-159,0],[0,95],[-1,90]],[[30953,18620],[2,-151],[-4,-58],[0,-26],[8,-96],[-4,-33],[-1,-40],[-3,-129],[0,-33],[-3,-114],[-3,-115],[4,-43],[1,-36],[-1,-36],[-1,-36],[-1,-41],[-1,-30],[0,-36],[0,-36],[0,-30],[-1,-27],[0,-27],[0,-27],[-12,-29],[0,-27],[-1,-54],[0,-36],[0,-37],[0,-26],[0,-36],[0,-57],[-1,-54],[0,-36],[-1,-36],[0,-4],[0,-22],[1,-36],[0,-22],[0,-3],[0,-4],[0,-28],[0,-40],[-1,-89],[0,-36],[0,-29],[0,-1],[0,-30],[0,-27],[0,-27],[0,-37],[-1,-27],[1,-27],[-4,-34],[2,-42],[-1,-40],[-1,-78],[-1,-49],[4,-28],[0,-27],[-1,-35],[0,-63],[1,-45],[-1,-48],[-1,-44],[1,-69],[2,-72],[1,-45],[3,-157],[-1,-47],[-1,-13],[-1,-13],[-1,-61],[0,-26],[0,-36],[0,-27],[-1,-30],[0,-28],[1,-43],[0,-38],[0,-26],[2,-27],[1,-27],[1,-27],[1,-30],[0,-25],[1,-53],[2,-26],[1,-36],[0,-27],[1,-53],[1,-36],[1,-27],[2,-45],[0,-27],[0,-29],[0,-30],[1,-30],[1,-36],[1,-27],[1,-29],[-1,-78],[-1,-76],[0,-2],[0,-38],[0,-28],[0,-53],[0,-36],[0,-78],[-1,-92],[0,-117],[0,-41],[4,-27],[0,-91],[0,-30],[0,-155],[0,-39],[0,-94],[0,-96],[0,-82],[0,-2],[0,-215],[-1,-28],[-4,-81],[-1,-28],[-1,-26],[-2,-45],[-3,-48],[-1,-30],[-2,-55],[-1,-28],[-2,-31],[-2,-43],[1,-103],[1,-84],[-2,-28],[2,-147],[0,-1],[2,-156],[1,-156],[-4,-27],[0,-39],[1,-30],[1,-35],[1,-100],[-2,-221]],[[30931,11552],[-78,0],[-205,1],[-292,3],[-65,1],[-40,3],[-91,-2],[-91,-3],[-83,1],[-83,1],[-31,0],[-32,0],[-273,2],[-223,1],[-113,-5],[-57,-2],[-171,-6],[-45,-1],[-59,0],[-59,0],[-52,0],[-152,-3],[-411,-15],[-135,0],[-36,0],[-59,-1],[-33,-1],[-36,0],[-46,0],[-60,-2],[-41,0],[-32,-2],[-45,0],[-56,0],[-82,-2],[-44,-1],[-36,0],[-68,-1],[-41,-1],[-67,-1],[-70,0],[-41,-1],[-54,-2],[-37,0],[-35,1],[-175,4],[-64,1],[-25,1],[-86,-2],[-36,-1],[-114,-3],[-35,-2],[-41,0],[-34,2],[-33,-1],[-33,-1],[-38,0],[-41,0],[-51,1],[-43,-1],[-41,0],[-32,1],[-40,-2],[-38,1],[-38,0],[-43,0],[-38,1],[-32,0],[-40,-1],[-41,-1],[-46,7],[-38,0],[-82,-1],[-55,0],[-54,0],[-55,0],[-81,-1],[-41,1],[-54,-1],[-42,-1],[-122,0],[-82,1],[-6,0],[-44,0],[-18,0],[-59,1],[-55,0],[-99,0],[-114,1],[-32,1],[-123,2],[-55,1],[-72,1],[-60,2],[-31,1],[-25,0],[-57,1],[-55,1],[-51,14],[2,72],[0,35],[1,36],[0,36],[1,53],[0,54],[0,36],[-8,26],[-41,1],[-54,-1],[-55,1],[-41,0],[-41,0],[-71,0],[-54,0],[-107,0],[-91,-1]],[[23572,11890],[5,181],[1,80],[0,28],[1,56],[2,185],[-1,128],[0,78],[-1,86],[-1,121],[1,153],[-9,65],[0,37],[2,53],[3,97],[1,50],[3,99],[1,27],[1,38],[1,56],[1,52],[1,69],[1,34],[0,36],[0,36],[-1,83],[0,32],[0,28],[1,26],[-2,78],[-1,44],[0,73],[0,100],[0,77],[0,4],[0,55],[0,10],[0,6],[1,24],[1,48],[0,37],[1,40],[1,41],[6,368],[9,214],[2,128],[-28,28],[-7,7],[-11,5],[-1,0],[-71,0],[-46,-53],[-48,-54],[-50,14],[-22,9],[-8,8],[-49,9],[-278,-18],[-9,0],[-39,-4],[-42,15],[-62,108],[-74,5],[-6,-17],[-9,-6],[-10,-3],[-159,-11],[-15,7],[-2,12],[4,27],[-102,5],[-39,-10],[-188,-72],[-64,-24],[-65,-24],[-114,-34],[-79,0],[-82,-1],[-62,0],[-103,0],[-163,0],[-111,0],[-75,-1],[-125,0],[-78,0],[17,-38],[2,-4],[0,-13],[-12,-9],[-36,-6],[-4,0],[-31,1],[-55,2],[-16,3],[-2,2],[-4,2],[-2,5],[7,56],[-45,-2],[-95,-49],[0,48],[0,32],[0,33],[1,125],[-1,35],[1,36],[0,28],[0,44],[0,35],[1,36],[0,27],[0,27],[0,71],[1,30],[0,93],[0,27],[0,27],[0,27],[1,37],[0,49],[1,36],[0,53],[0,33],[0,26],[0,36],[0,27],[-1,53],[0,31],[0,73],[0,36],[1,35],[1,36],[0,70],[0,46],[1,36],[0,36],[-54,1],[-272,-3],[-92,0],[-123,-1],[-138,-1],[-105,-1],[-213,-2],[-125,1],[0,54],[0,72],[0,36],[-1,42],[0,37],[1,37],[4,94],[-1,228],[0,31],[-2,107],[-51,0],[-97,0],[-40,0],[-50,0],[-31,0],[-55,0],[-41,0],[-32,0],[-161,-2],[6,228],[2,77],[2,65],[2,60],[1,6],[11,432],[-7,47],[-1,35],[0,51],[-1,41],[-2,108],[-2,55],[-1,57],[-3,93],[0,27],[0,2],[-2,121],[-2,168],[0,16]],[[23572,11890],[-2,-185],[1,-184],[0,-125],[0,-49],[-2,-461],[-1,-37],[0,-70],[-173,-1],[-126,-2],[-43,0],[-59,-1],[-32,0],[-202,-1],[-117,1],[-33,-1],[-38,0],[-173,-1],[-157,1],[-54,0],[-492,0],[-51,0],[-91,-1],[-77,1],[-3,0],[-57,0],[-60,0],[-35,0],[-105,0],[-78,0],[-64,-2],[-61,0],[-112,-1],[-115,0],[-205,-2],[-239,-1],[-37,0],[-57,-1],[-1,0],[-253,-1],[-14,0],[-208,0],[-99,-1],[-61,0],[-95,-1],[-269,-1],[-3,0],[-299,2],[-67,-21],[-3,-160],[-4,-176],[-8,-307],[0,-2],[-1,-48],[-2,-60],[0,-20],[0,-10],[-2,-92]],[[19033,9869],[-38,1],[-37,0],[-37,1],[-29,0],[-12,0],[-106,1],[-129,1],[-165,2],[-435,2],[-112,2],[-8,0],[-409,8],[-116,2],[-108,2],[-21,0],[-40,1],[-107,2],[-246,5],[-165,0],[-45,1],[-41,0],[-52,0],[-51,0],[-9,1],[-44,0],[-58,0],[-315,3],[-1,0],[-170,1],[-76,1],[-158,0],[-2,15],[-22,0],[-406,0],[-71,1],[-65,0],[-159,2],[-179,-2],[-79,-2],[-59,-2],[-67,3],[-41,2],[-271,7],[-79,1],[-40,1],[-47,2],[-99,-1],[-140,3],[-147,3],[-107,3],[-45,0],[-126,1],[-68,1],[-271,-3],[-1,0],[-83,0],[-126,-1],[-65,0],[-189,3],[-279,2]],[[12360,9945],[0,116],[2,66],[0,13],[2,178],[1,30],[0,26],[0,37],[1,31],[-1,51],[0,181],[0,86],[-279,2],[-275,2],[-563,4],[-27,0],[-578,4],[-59,1],[-52,1],[-45,0],[-95,0],[-58,0],[-31,1],[-184,-1],[-163,4],[-154,1],[-36,1],[-32,0],[-54,0],[-80,1],[-34,0],[-12,0],[-73,0],[-46,-5],[-153,3],[-57,2],[-224,3],[2,29],[13,140],[-1,3],[-11,27],[1,26],[1,36],[5,126],[2,55],[0,38],[1,27],[1,27],[1,65],[-1,41],[-1,28],[-11,0],[-112,1],[-62,1],[-54,1],[-60,0],[-36,0],[-88,1],[-142,1],[-31,0],[-58,0],[-210,2],[-31,0],[-56,0],[-92,0],[-60,0],[-45,1],[-227,2],[-50,0],[-53,1],[-115,1],[-47,0],[-52,1],[-63,0],[-56,1],[-162,1],[-87,1],[-52,0],[-38,0],[-44,1],[-200,2],[-133,0],[-73,0],[-45,1],[-47,0],[-181,1],[-79,0],[-232,0],[-639,6],[-1,0],[-491,4],[-110,1],[-91,2],[-62,1],[-58,-1],[-56,1],[-174,6],[-78,3],[-100,-1],[-68,0],[-81,-2],[-95,-1],[-245,3],[-63,2]],[[3418,11497],[10,32],[37,69],[83,49],[15,107],[-17,71],[-27,66],[-9,20],[-9,16],[-39,61],[-55,54],[-82,58],[-17,31],[-2,24],[22,18],[16,9],[9,3],[40,4],[109,-39],[68,-57],[39,-32],[86,-71],[58,-46],[39,-30],[54,-62],[14,-44],[0,-1],[-17,-45],[8,-51],[52,-43],[31,-12],[43,-5],[33,-4],[108,8],[37,11],[41,29],[21,27],[-1,71],[-19,69],[-1,43],[38,85],[64,52],[44,22],[100,26],[55,10],[82,21],[51,27],[44,35],[0,1],[22,28],[15,42],[-14,50],[-22,27],[-31,9],[-5,2],[-92,42],[-41,19],[-34,20],[-29,17],[-7,11],[-11,7],[-27,45],[0,1],[-2,43],[10,49],[22,40],[27,24],[50,18],[57,12],[62,11],[5,1],[13,5],[53,18],[36,23],[26,19],[2,3],[30,43],[2,6],[9,35],[-3,47],[3,28],[7,29],[12,40],[26,52],[6,7],[56,52],[44,26],[9,4],[1,0],[50,15],[66,13],[79,23],[36,10],[92,22],[50,3],[102,1],[39,0],[65,-14],[31,-9],[31,-12],[56,-29],[23,-16],[31,-39],[0,-1],[1,0],[15,-17],[4,-39],[-23,-42],[-44,-43],[-42,-38],[-22,-21],[-20,-24],[-21,-28],[-29,-30],[-24,-25],[-68,-74],[-20,-34],[-18,-30],[-13,-40],[-1,-28],[3,-21],[16,-34],[16,-25],[44,-35],[42,-19],[40,-12],[60,-5],[59,0],[65,21],[34,18],[27,22],[20,16],[48,40],[29,27],[29,26],[63,59],[72,67],[35,22],[26,14],[33,16],[77,29],[32,11],[66,31],[9,6],[39,39],[31,57],[5,20],[8,37],[19,56],[34,46],[25,35],[26,60],[9,29],[9,36],[17,59],[20,35],[21,29],[48,45],[19,13],[39,24],[54,24],[36,17],[63,18],[61,3],[46,-7],[39,-13],[51,-19],[27,-17],[10,-7],[49,-39],[24,-54],[5,-73],[-10,-21],[0,-1],[-27,-51],[-42,-58],[-44,-53],[-39,-94],[-12,-51],[6,-54],[9,-27],[53,-104],[29,-61],[38,-39],[64,-48],[92,-30],[1,0],[11,-8],[161,-6],[49,8],[92,25],[85,46],[35,26],[41,30],[67,74],[48,43],[20,18],[10,9],[38,52],[51,101],[15,41],[34,94],[23,132],[1,8],[-3,16],[-16,83],[-6,27],[-36,97],[-26,68],[0,70],[-1,38],[15,114],[13,29],[25,61],[1,2],[10,13],[20,27],[76,100],[9,12],[18,35],[24,43],[23,46],[12,23],[3,23],[4,27],[34,93],[26,29],[11,12],[223,140],[51,27],[87,121],[3,5],[44,49],[26,18],[67,47],[66,27],[124,26],[54,11],[9,1],[142,24],[85,5],[79,15],[80,15],[41,13],[147,80],[102,88],[95,81],[13,11],[4,3],[106,122],[128,138],[126,114],[80,68],[62,49],[69,53],[60,48],[27,21],[62,51],[68,73],[12,20],[1,3],[14,23],[9,29],[24,81]],[[42752,15617],[0,-33],[1,-29],[1,-119],[1,-133],[1,-58],[1,-61],[0,-5],[0,-27],[0,-26],[1,-18],[6,-383],[1,-34],[1,-64],[2,-108],[7,-456],[1,-93],[1,-52],[1,-47],[0,-2],[1,-72],[0,-22],[1,-11],[3,-176],[3,-259],[2,-32],[3,-28],[-3,-48],[4,-73],[4,-155],[3,-133],[2,-87],[2,-114],[4,-210],[3,-133]],[[42810,12316],[4,-252],[5,-93],[6,-31],[-402,1],[-66,0],[-484,4],[-15,0],[-56,-1],[-37,-1],[-2,0],[-39,1],[-39,-1],[-594,1],[-139,0],[-269,2],[-328,6],[-98,-1],[-8,-1],[-221,6],[-115,3],[-200,2],[-199,4],[-104,1],[1,-83],[1,-118],[4,-139],[0,-45],[0,-49],[2,-95],[5,-328],[6,-202],[0,-11],[1,-32]],[[39430,10864],[-321,-2],[-31,-1],[-60,1],[-85,1],[-20,0],[-237,-1],[-368,0],[-257,-1],[-188,-1],[-141,-1],[-32,1],[-29,0],[-68,0],[-359,1],[-51,-1],[-1,0],[-32,-2],[-59,1],[-35,0],[-36,-1],[-85,-2],[-38,0],[-38,-1],[-83,-2],[-51,0],[-89,-2],[-85,-2],[-51,-1],[-52,-1],[-156,-4],[-65,-1],[-45,-1],[-4,0],[-37,0],[-40,-2],[-42,0],[-43,-1],[-97,-5],[-32,-1],[-3,0],[-72,-4],[-141,-7],[-77,-3],[-55,-3],[-35,-1],[-64,-3],[-69,0],[-265,2],[-67,0],[-35,0],[-132,-4],[-57,0],[-54,0],[-54,1],[-55,0],[-40,0],[-44,0],[-78,1],[-68,0],[-90,0],[-42,1],[-4,0],[-32,0],[-50,0],[-81,1],[-55,0],[-108,1],[-77,1],[-14,1],[-36,-1],[-85,0],[-83,2],[-53,0],[-32,0],[-50,0],[-38,0],[-44,1],[-30,0],[-45,0],[-34,0],[-35,1],[-72,0],[-46,0],[-62,1],[-81,0],[-109,2],[-34,0],[-2,0],[-46,0],[-54,1],[-55,1],[-81,1],[-54,0]],[[32608,10825],[-57,1],[-109,1],[-57,1],[-55,1],[-81,1],[-82,1],[-31,0],[-73,1],[-2,1],[-29,0],[-198,0],[-103,0],[-48,0],[-111,1],[-51,0],[-55,0],[-54,1],[-33,-2],[-35,1],[-3,0],[-40,0],[-54,0],[-44,-2],[-44,-1],[-230,0],[0,119],[0,209],[0,71],[0,34],[2,213],[0,75]],[[55627,16317],[-53,-59],[-5,-10],[-10,-21],[-55,-65],[-3,-8],[-12,-22],[-29,-32],[-23,-12],[-61,-24],[-38,-25],[-7,-8],[-2,-9],[10,-9],[12,-7],[37,-12],[24,-4],[38,0],[1,0],[63,10],[14,-2],[39,-14],[28,-10],[34,-12],[29,-12],[15,-8],[34,-19],[1,0],[7,-10],[2,-9],[-2,-15],[0,-2],[-19,-74],[27,-70],[28,-43],[2,-11],[-1,-5],[-3,-20],[-10,-17],[-8,-10],[-8,-10],[-1,0],[-14,-10],[-23,-8],[-1,-1],[-28,-3],[-14,2],[-2,1],[-9,3],[-28,9],[-20,14],[-14,16],[-27,26],[-25,17],[-1,1],[-22,5],[-25,0],[-1,0],[-18,-6],[-15,-13],[-18,-32],[-2,-15],[3,-8],[14,-18],[26,-14],[41,-15],[41,-10],[19,-4],[70,-12],[19,-2],[65,-7],[28,-8],[7,-2],[126,-50],[27,-21],[4,-10],[3,-13],[-4,-7],[-29,-23],[-16,-12],[-85,-60],[-22,-8],[-48,-2],[-25,6],[-45,18],[-9,6],[-1,1],[-1,0],[-21,32],[-5,20],[-1,28],[7,25],[-1,2],[-1,9],[-9,8],[-7,2],[-33,5],[-7,0],[-26,0],[-26,-13],[-12,-12],[-16,-39],[-7,-40],[-19,-105],[3,-18],[12,-38],[55,-191],[19,-96],[3,-18],[9,-8],[10,-4],[63,-29],[25,-6],[22,-6],[63,-7],[51,-5],[18,-3],[15,-6],[17,-12],[8,-18],[1,-31],[-1,-3],[-7,-20],[-7,-8],[-2,-4],[-8,-8],[-16,-17],[-16,-11],[-2,-2],[-77,-56],[-5,-11],[-1,0],[0,-13],[9,-13],[35,-22],[10,-7],[5,-3],[46,-24],[12,-7],[29,-20],[21,-23],[3,-9],[-1,-12],[-5,-11],[-2,-4],[-2,-2],[-10,-7],[-17,-7],[-7,-3],[-9,-2],[-13,-3],[-21,0],[-36,13],[-20,21],[-10,28],[-9,13],[-39,30],[-70,35],[-31,10],[-76,19],[-14,4],[-29,12],[-24,13],[-24,20],[-9,12],[-5,14],[-1,11],[0,1],[-2,6],[-12,37],[-16,27],[-28,19],[-1,0],[-14,3],[-20,0],[-121,-15],[-20,-6],[-11,-6],[-16,-16],[-9,-18],[-22,-45],[-7,-25],[-18,-24],[-32,-20],[-89,-37],[-21,-13],[-18,-12],[-20,-15],[-35,-24],[-24,-21],[3,-5],[24,-40],[1,-2],[23,0],[81,24],[41,9],[31,-20],[46,-79],[38,-65],[17,-30],[-10,-24],[-4,-1],[14,-41],[-79,14],[-29,-89],[6,-18],[34,-134],[-1,-15],[-9,-8],[-1,0],[-58,-25],[-34,-24],[1,-13],[24,-15],[70,-34],[13,-30],[3,-56],[-7,-13],[-11,-7],[-27,-8],[-40,-3],[-23,2],[-40,11],[-34,16],[-38,25],[-19,18],[-13,22],[-18,44],[-6,83],[-13,37],[-18,21],[-19,11],[-19,4],[-18,-1],[-12,-4],[-24,-18],[-24,-32],[-2,-16],[18,-36],[13,-14],[30,-15],[62,-37],[4,-5],[1,-6],[-17,-50],[-21,-37],[-19,-18],[-22,-16],[-54,-30],[-21,-16],[-28,-21],[-6,-11],[-3,-10],[6,-6],[20,-14],[84,-47],[102,-57],[56,-21],[106,-30],[22,-11],[6,-6],[1,-1],[15,-31],[-5,-21],[-13,-15],[-41,-36],[-24,-35],[0,-17],[7,-10],[11,-10],[41,-21],[21,-7],[28,0],[18,14],[1,1],[41,67],[30,52],[22,23],[19,14],[16,9],[19,7],[58,13],[42,3],[45,-4],[24,-7],[127,-46],[11,-7],[5,-5],[2,-10],[-79,-36],[-29,1],[-35,2],[-15,-5],[-20,-22],[-8,-13],[1,-34],[1,-16],[4,-110],[1,-12],[4,-13],[6,-9],[15,-7],[14,1],[22,15],[49,36],[17,4],[22,4],[36,0],[31,0],[41,-4],[69,-18],[5,-3],[28,-22],[8,-14],[0,-1],[-2,-42],[-6,-17],[-13,-16],[-18,-11],[-1,-1],[-15,-6],[-12,-9],[-1,-2],[-2,-2],[-12,-14],[-27,-37],[-7,-16],[0,-1],[-1,-74],[-3,-6],[-8,-8],[-15,-6],[-27,-5],[-41,0],[-30,8],[-26,10],[-13,11],[-40,24],[-29,12],[-6,2],[-9,2],[-18,0],[-2,0],[-8,-2],[-17,-19],[-17,-41],[-3,-37],[-8,-42],[-16,-28],[-9,-8],[-29,-18],[-18,-3],[-8,3],[-76,68],[-59,65],[-41,40],[-33,25],[-11,3],[-23,4],[-6,1],[-14,-2],[-17,-10],[-15,-12],[-19,-22],[0,-21],[3,-9],[12,-12],[14,-11],[20,-9],[1,-1],[39,-11],[28,-3],[18,-5],[19,-15],[0,-1],[12,-19],[1,-22],[-1,-5],[-4,-20],[-10,-33],[-4,-26],[-5,-57],[9,-14],[7,-7],[0,-2],[-4,-40],[-12,-131],[-2,-117],[-3,-116],[-8,-100],[-2,-35],[-1,-2],[-2,-31],[-17,-401],[-6,-161],[0,-11],[-55,-40],[-37,-47],[-25,-21],[-45,-14],[-38,-32],[-7,-6],[-40,0],[-2,0],[-3,1],[-16,2],[-24,9],[-14,7],[-27,15],[-33,26],[-3,0],[-2,-1],[-64,-9],[-49,-13],[-60,-25],[-18,-11],[-17,-14],[-9,-27],[0,-5],[12,-25],[8,-13],[4,-7],[1,0],[95,-33],[36,-7],[23,-7],[36,-26],[11,-17],[-1,-7],[0,-27],[-21,-26],[-16,-10],[-13,-4],[-65,-19],[-50,-2],[-3,-11],[-5,-16],[-2,-7],[-5,-11],[-2,-4],[12,-13],[19,-15],[45,-33],[70,-70],[0,-15],[-14,-9],[-12,-3],[-25,-4],[-43,-1],[-12,0],[-19,5],[-14,12],[-1,0],[-1,31],[-21,11],[-7,0],[-26,1],[-136,-11],[-64,-18],[-17,-4],[-19,-9],[-20,-12],[-27,-21],[-44,-42],[-12,-18],[-21,-44],[-10,-31],[-3,-8],[-7,-11],[-29,-37],[-7,-9],[-13,-10],[7,-18],[5,-30],[0,-15],[-8,-12],[-10,-5],[-19,-3],[-1,0],[-134,13],[-19,-2],[-1,0],[-4,-4],[-37,-33],[-1,-2],[8,-13],[5,-9],[3,-6],[6,-4],[74,-52],[5,-3],[65,-25],[33,-13],[28,-10],[13,-5],[7,-6],[4,-3],[7,-6],[-3,-21],[-2,-9],[-29,-26],[-13,-12],[-40,-21],[-44,-10],[-31,2],[-4,0],[-58,4],[-36,9],[-88,36],[-86,53],[-54,18],[-11,3],[-36,3],[-14,-7],[-31,-15],[-1,-1],[-31,-12]],[[53361,10273],[-90,53],[-27,16],[-76,45],[-43,35],[-44,36],[-103,68],[-43,25],[-57,33],[-44,20],[-27,13],[-108,40],[-47,13],[-84,25],[-55,3],[-67,3],[-42,-3],[-101,-14],[-88,-24],[-93,-37],[-29,-18],[-70,-49],[-26,-24],[-34,-46],[-22,-38],[-12,-26],[-18,-47],[-14,-46],[-3,-41],[-1,-46],[11,-42],[-1,-50],[4,-47],[7,-32],[36,-87],[40,-53],[5,-5],[6,-5],[57,-39],[48,-26],[71,-32],[103,-38],[73,-15],[43,-10],[90,-7],[76,-6],[43,-2],[94,-5],[94,-5],[235,-26],[42,-8],[57,-12],[70,-15],[71,-17],[113,-31],[35,-13],[65,-24],[58,-36],[24,-27],[26,-38],[16,-27],[9,-51],[-3,-79],[-21,-46],[-34,-79],[-46,-55],[-26,-27],[-21,-22],[-7,-7],[-13,-12],[-10,-8],[-26,-24],[-47,-28],[-38,-21],[-41,-19],[-76,-22],[-92,-16],[-87,-8],[-71,-5],[-36,0],[-97,3],[-44,2],[-97,4],[-197,14],[-302,22],[-138,10],[-43,6],[-32,-1],[-7,-2],[-8,0],[-51,-17],[-2,0],[-45,-12],[-1,0],[-5,-2],[-76,-31],[-81,-42],[-34,-22],[-16,-10],[-26,-26],[-62,-71],[-27,-37],[-30,-42],[-54,-131],[-38,-79],[-4,-3],[-12,-12],[-8,-8],[-8,-9],[-8,-8],[-11,-6],[-16,-11],[-52,-27],[-55,-13],[-20,-5],[-2,0],[-75,-5],[-41,12],[-1,0],[-6,4],[-95,72],[-91,71],[-41,32],[-44,29],[-74,49],[-2,5],[-3,8],[-2,7],[-1,1],[-6,2],[-45,16],[-122,69],[-3,2],[-1,0],[-109,68],[-98,48],[-38,18],[-21,7],[-22,6],[-31,7],[-45,5],[-45,2],[-55,5],[-62,8],[-75,6],[-81,-1],[-132,-9],[-67,-16],[-56,-18],[-60,-21],[-6,-2],[-21,-7],[-70,-46],[-39,-27],[-20,-15]],[[49404,8759],[-4,21],[-2,9],[-4,82],[-2,81],[-10,86],[0,110],[-7,100],[12,377],[3,128],[3,126],[4,138],[15,486],[5,264],[0,6],[5,133],[-174,1],[-335,2],[-1,0],[-57,0],[-78,1],[-228,1],[-41,1],[-280,2],[-93,0],[-1204,5],[-755,3],[-30,1],[-55,0],[-25,26],[10,314],[2,90],[0,1],[4,108],[0,2],[18,526],[9,353],[2,55],[-85,-3],[-468,-17],[-328,-11],[-775,-31],[-328,-9],[-131,-3],[-40,-2],[-43,-1],[-398,-1],[-356,-2],[-349,-2]],[[62328,16197],[-2,-189],[-2,-75],[3,-152],[4,-36],[1,-56],[1,-88],[-7,-138],[-2,-92],[0,-1],[-4,-247],[22,-198],[-1,-93],[0,-33],[-1,-95],[-2,-142],[2,-262],[-1,-50],[-3,-240],[102,2],[37,-2],[97,1],[228,0],[84,1],[-1,-67],[-2,-47],[1,-54],[2,-128],[2,-127],[2,-138],[2,-107],[3,-61],[88,0],[193,-2],[146,11],[144,10],[0,-80],[-1,-20],[-3,-88],[1,-39],[0,-2],[-4,-129],[96,-3],[2,-45],[4,-271],[270,-1],[291,-2],[0,-104],[0,-8],[0,-179],[1,-75],[91,-1],[463,-3],[3,-145],[7,-195],[3,-35],[0,-21],[-1,-107],[1,-243],[-1,-364],[0,-64],[0,-5],[-1,-27],[-8,-71],[-2,-77],[-1,-111],[-73,-1],[0,-39],[-2,-105],[-2,-158],[-1,-31],[344,3],[191,0],[3,0],[90,0],[425,-7],[418,-71],[94,2],[140,-4],[16,-104],[0,-22],[0,-57]],[[66318,10193],[-65,-115],[-76,-133],[-104,-183],[-18,-335],[-4,-194],[28,-156],[76,-427],[13,-71],[13,-73],[5,-68],[2,-41],[4,-47],[7,-115],[-2,-13],[-14,-107],[-32,-233],[-14,-22],[-89,-134],[-59,-90],[-5,-8],[-44,-67],[-59,-138],[-15,-33],[-14,-24],[-17,-27],[-7,-32],[-4,-35],[-5,-32],[-4,-39],[-11,-42],[-8,-30],[-15,-57],[-10,-55],[-18,-123],[0,-3],[-3,-68],[-1,-42],[-2,-30],[-7,-25],[-13,-47],[-4,-8],[-11,-45],[-10,-55],[-14,-56],[-17,-53],[-19,-35],[-20,-30],[-17,-23],[-25,-39],[-3,-6],[-27,-29],[-41,-37],[-46,-39],[-49,-43],[-46,-35],[-86,-63],[-101,-55],[-34,-20],[-54,-32],[-60,-26],[-58,-22],[-42,-14],[-31,-10],[-27,-8],[-10,-4],[-32,-11],[-38,-13],[-55,-10],[-160,-19],[-8,0],[-14,-2],[-103,-5],[-97,-7],[-31,0],[-111,-5],[-63,-4],[-34,-1],[-88,-5],[-53,-5],[-107,-15],[-46,-4],[-43,-6],[-52,-9],[-47,-7],[-8,-2],[-52,-9],[-48,-5],[-36,-5],[-73,-7],[-29,-3],[-37,-11],[-44,-5],[-10,-2],[-36,-3],[-51,-5],[-32,-2],[-60,-5],[-51,-5],[-45,-5],[-56,-8],[-36,-6],[-74,-11],[-29,-4],[-125,-24],[-65,-13],[-59,-15],[-55,-17],[-16,-5],[-57,-20],[-81,-30],[-11,-6],[-18,-9],[-42,-30],[-49,-65],[-26,-35],[-9,-24],[-15,-48],[-5,-29],[1,-40],[9,-52],[6,-24],[18,-70],[13,-58],[11,-68],[-8,-51],[-6,-33],[-14,-54],[-18,-37],[-2,-2],[-2,-3],[-1,-2],[-28,-35],[-40,-39],[-2,-2],[-12,-9],[-16,-11],[-71,-24],[-50,-8],[-7,1],[-21,-2],[-82,14],[-75,21],[-37,21],[-33,20],[-25,17],[-54,37],[-57,42],[-22,18],[-50,41],[-41,32],[-7,6],[-36,31],[-38,35],[-32,32],[-13,14],[-20,23],[-29,37],[-3,5],[-21,30],[-19,32],[-30,44],[-15,25],[-33,43],[-35,30],[-20,30],[-30,53],[-24,41],[-7,10],[-24,38],[-23,33],[-20,32],[-40,63],[-27,26],[-5,6],[4,7],[1,0],[34,-19],[39,-23],[15,-1],[-23,20],[-103,81],[-10,8],[-9,5],[-17,8],[-63,31],[-63,30],[-26,12],[-44,21],[-17,8],[-61,26],[-34,14],[-51,17],[-66,25],[-88,34],[-71,24],[-75,25],[-31,10],[-100,28],[-65,16],[-62,10],[-97,15],[-58,9],[-59,9],[-35,5],[-36,3],[-67,3],[-71,2],[-43,3],[-66,7],[-110,0],[-62,-2],[-41,-1],[-56,-2],[-138,-9],[-133,-17],[-19,-4],[-228,-50],[-67,-12],[-152,-28],[-96,-14],[-97,-15],[-75,1],[-72,0],[-205,35],[-208,69],[-80,31],[-11,4],[-11,5],[-4,1],[-47,19],[-46,14],[-62,19],[-63,19],[-17,6],[-65,17],[-62,16],[-62,16],[-97,32],[-43,18],[-43,15],[-80,28],[-75,27],[-10,3],[-86,26],[-30,12],[-47,20],[-40,30],[-21,21],[-32,34],[-41,32],[-66,40],[-49,24],[-39,17],[-48,20],[-33,26],[-40,26],[2,2],[24,13],[-64,22],[-104,28],[-26,9],[-59,22],[-130,47],[-41,9],[-88,27],[-86,37],[-153,77],[-30,16],[-71,42],[-125,82],[-44,29],[-35,36],[-40,42],[-29,30],[-15,23],[-53,81],[-30,46],[-18,46],[-18,44],[-19,51],[-28,75],[-30,80],[-6,27],[-19,82],[-17,143],[-1,27],[-1,100],[3,104],[12,62],[7,36],[15,64],[11,47],[27,114],[38,120],[12,24],[4,9],[36,77],[17,77],[8,36],[16,40],[12,41],[10,45],[5,83],[-4,40],[-13,51],[-99,127],[-56,53],[-38,41],[-25,25],[-26,24],[-41,42],[-34,43],[-45,27],[-40,54],[-36,40],[-47,50],[-1,1],[-10,6],[-33,19],[-31,17],[-56,28],[-73,33],[-50,23],[-48,23],[-50,27],[-54,23],[-74,28],[-92,29],[-32,10],[-30,9],[-77,33],[-74,24],[-71,23],[-31,10],[-34,11],[-95,52],[-65,34],[-103,64],[-80,59],[-7,4],[-2,0]],[[69610,12955],[-73,-17],[-37,-18],[-211,-53],[-11,-2],[-17,-2],[-53,-6],[-172,-21],[-169,-21],[-165,-44],[-63,-16],[-1,0],[-1,-1],[-5,-3],[-2,-1],[-85,-48],[-59,-33],[-38,-47],[-70,-78],[-18,-26],[-57,-77],[-3,-8],[-12,-32],[-15,-43],[-66,-183],[-1,-2],[8,-50],[1,-8],[-6,-97],[-2,-19],[-8,-56],[-2,-15],[-6,-38],[-6,-29],[-16,-78],[-11,-51],[-9,-14],[-5,-8],[-90,-133],[-11,-12],[-26,-30],[-40,-47],[-97,-96],[-52,-51],[-21,-21],[-32,-21],[-112,-63],[-116,-62],[-72,-39],[-115,-60],[-61,-33],[-20,-11],[-89,-55],[-28,-17],[-61,-37],[-167,-101],[-217,-185],[-137,-118],[-85,-72],[-88,-105],[-69,-115],[-20,-33]],[[49404,8759],[-20,-14],[-47,-33],[-52,-74],[-33,-48],[-9,-28],[-12,-40],[9,-65],[7,-59],[72,-140],[153,-120],[239,-94],[298,-59],[39,-13],[38,-13],[132,-62],[71,-70],[24,-44],[25,-90],[-63,-243],[-27,-53],[-32,-33],[-45,-46],[-32,-33],[-47,-49],[-213,-132],[-35,-21],[-48,-27],[-30,-16],[-95,-53],[-216,-57],[-98,-18],[-43,-7],[-86,-15],[-150,-10],[-269,-15],[-116,4],[-74,3],[-50,1],[-44,-2],[-21,-1],[-14,0],[-189,1],[-37,-1],[-38,-1],[-151,-14],[-202,-19],[-29,-6],[-73,-16],[-65,-24],[-79,-47],[-14,-14],[-12,-13],[-24,-25],[-15,-37],[-10,-28],[-15,-39],[-46,-102],[-9,-34],[-7,-27],[-1,-22],[-1,-37],[6,-51],[7,-55],[1,-10],[5,-61],[-8,-143],[-31,-142],[1,-180],[-6,-60],[2,-50],[0,-34],[0,-40],[2,-27],[3,-28],[9,-35],[8,-25],[8,-39],[-1,-7],[-9,-26],[-1,-2],[-4,-29],[3,-23],[8,-45],[-2,-58],[1,-26],[1,-35],[-1,-61],[-2,-42],[-4,-32],[1,-52],[0,-31],[0,-1],[11,-45],[0,-1],[13,-47],[8,-25],[26,-56],[25,-61],[2,-5],[9,-17],[13,-25],[18,-30],[17,-28],[38,-47],[45,-34],[43,-31],[27,-13],[47,-31],[31,-23],[44,-46],[11,-12],[25,-28],[21,-30],[22,-48],[26,-53],[15,-34],[8,-57],[0,-12],[-2,-37],[6,-15],[9,-39],[-37,-47],[-25,-23],[-61,-40],[-29,-14],[-33,-14],[-51,-17],[-29,-13],[-41,-17],[-94,-35],[-44,-14],[-46,-15],[-20,-9],[-60,-18],[-34,-12],[-16,-5],[-34,-10],[-53,-15],[-35,-7],[-61,-13],[-43,-6],[-22,1],[-43,-3],[-55,-2],[-40,1],[-78,5],[-46,4],[-60,7],[-33,4],[-55,8],[-30,8],[-55,15],[-19,5],[-35,10],[-38,4],[-12,1],[-33,4],[-74,14],[-52,11],[-50,11],[-66,12],[-47,8],[-39,2],[-49,-1],[-20,0],[-56,-5],[-18,-1],[-49,2],[-48,7],[-50,5],[-40,2],[-31,0],[-52,0],[-11,0],[-49,-1],[-1,0],[-71,-8],[-37,-7],[-73,-24],[-19,-13],[-38,-28],[-28,-20],[-84,-61],[-49,-45],[-30,-33],[-28,-30],[-13,-22],[-10,-26],[-9,-30],[-14,-23],[-10,-30],[-9,-45],[-1,-44],[3,-37],[4,-30],[4,-26],[9,-78],[4,-42],[9,-55],[9,-40],[8,-33],[5,-41],[7,-64],[-2,-53],[-2,-61],[-7,-33],[-5,-16],[-5,-17],[-4,-30],[-12,-52],[17,-22],[23,-30],[19,-39],[3,-20],[0,-6],[-4,-20],[-3,-16],[-3,-5],[-9,-18],[-61,-77],[-92,-98],[-5,-7],[-16,-21],[-1,-1],[-16,-20],[-20,-20],[-2,-2],[-15,-7],[-110,-56],[-35,-15],[-8,-3],[-80,-24],[-39,-13],[-206,-88],[-109,-47],[-132,-51],[-125,-42],[-3,-1],[-90,-22],[-49,-12],[-112,-11],[-26,-4],[-138,-15],[-166,9],[-16,4],[-74,22],[-23,12],[-59,31],[-7,7],[-52,59],[-35,62],[-8,38],[0,1],[-7,30],[-4,31],[-4,39],[1,56],[9,31],[11,47],[7,31],[22,53],[14,27],[41,72],[20,45],[14,19],[12,11],[28,42],[38,61],[62,92],[37,48],[19,25],[44,61],[22,32],[25,48],[11,21],[1,1],[20,33],[7,17],[4,12],[3,4],[8,7],[2,2],[22,41],[5,8],[17,32],[7,12],[14,50],[7,35],[1,34],[1,31],[-7,45],[-15,37],[-1,3],[-7,17],[-15,38],[-20,30],[-39,33],[-9,6],[-31,19],[-9,4],[6,5],[-4,1],[-37,13],[-63,10],[-66,15],[-50,10],[-65,9],[-56,11],[-30,1],[-43,3],[-31,2],[-31,7],[-47,7],[-66,5],[-59,11],[-40,7],[-29,2],[-54,5],[-54,0],[-34,0],[-42,1],[-52,-2],[-5,-1],[-77,-22],[-32,-12],[-35,-11],[-16,-14],[-52,-43],[-57,-36],[-77,-32],[-4,-2],[-47,-20],[-77,-34],[-41,-21],[-43,-30],[-39,-26],[-36,-19],[-41,-23],[-19,-11],[-49,-29],[-64,-35],[-68,-27],[-10,-3],[-6,-2],[-82,-34],[-28,-13],[-34,-17],[-7,-4],[-88,-33],[-61,-10],[-53,-3],[-1,0],[-52,8],[-19,6],[-8,4],[-37,3],[-65,5],[-31,4],[-51,8],[-36,13],[-38,18],[-41,29],[-22,20],[-78,66],[-44,34],[-41,31],[-28,20],[-29,21],[-12,12],[-20,19],[-21,19],[-39,31],[-13,3],[-5,3],[-3,2],[-1,2],[-1,7],[-102,93],[-15,14],[-5,5],[-37,41],[-16,18],[-12,13],[-26,31],[-28,38],[-12,20],[-4,7],[-14,16],[-24,31],[-18,20],[-30,25],[-2,2],[-23,22],[-37,41],[-34,37],[-37,43],[-22,27],[-41,47],[-32,39],[-16,21],[-9,12],[-23,32],[-8,11],[-6,8],[-26,35],[-21,29],[-22,20],[-10,8],[-18,32],[-4,4],[-4,5],[-5,12],[-6,10],[-12,16],[-26,42],[-12,22],[-22,35],[-32,34],[-38,25],[-20,13],[-23,20],[-20,27],[-15,22],[-6,9],[-12,18],[-15,22],[-12,44],[5,6],[19,-12],[8,-8],[8,-3],[3,2],[3,2],[2,2],[-6,23],[-15,24],[-22,36],[-8,15],[-46,41],[-34,22],[-32,42],[-33,42],[-21,21],[-32,31],[-10,12],[-11,12],[-3,2],[-4,25],[-3,20],[-13,53],[-12,35],[-16,29],[-6,11],[-21,48],[-12,30],[-17,39],[-16,26],[-34,54],[-16,28],[-10,16],[-7,11],[-12,25],[-17,29],[-30,20],[0,1],[2,2],[2,1],[5,-1],[6,1],[-2,6],[-34,11],[-47,14],[-46,16],[-37,11],[-38,12],[-76,30],[-2,1],[-29,16],[-1,1],[-32,17],[-25,14],[-27,15],[-35,17],[-40,19],[-37,13],[-36,12],[-23,9]],[[38761,5678],[3,13],[9,8],[2,1],[37,15],[67,24],[7,3],[91,33],[4,1],[0,1],[107,173],[27,50],[0,13],[1,9],[-6,13],[-11,15],[6,4],[63,32],[49,26],[20,10],[8,-10],[21,-7],[20,-13],[53,-54],[62,-63],[14,-17],[7,-12],[0,-1],[0,-38],[4,-34],[7,-20],[16,-24],[35,-26],[58,-44],[29,-19],[23,-8],[10,-4],[5,-1],[14,-4],[60,-12],[208,-33],[100,-4],[12,5],[9,8],[0,1],[9,19],[8,16],[0,1],[0,45],[0,18],[-32,42],[-41,58],[-10,97],[-6,36],[-23,135],[-30,132],[-98,45],[-14,5],[-20,7],[-32,32],[0,17],[19,28],[9,10],[40,13],[75,13],[23,1],[65,-1],[31,-3],[49,-13],[28,7],[22,5],[2,24],[1,16],[-38,23],[-66,41],[-203,104],[-91,47],[-10,-6],[-42,-14],[-20,5],[-2,1],[-5,6],[-35,35],[-1,16],[5,4],[19,16],[48,39],[17,10],[25,11],[13,1],[17,-3],[2,-10],[-17,-8],[-4,-10],[4,-6],[9,-5],[11,-4],[2,0],[19,1],[41,32],[2,5],[1,1],[15,84],[0,6],[-6,3],[-41,41],[0,81],[16,16],[15,6],[8,-4],[67,-31],[5,-2],[3,0],[21,1],[18,6],[2,1],[1,0],[10,9],[7,21],[23,17],[68,33],[32,8],[145,68],[-2,1],[-78,24],[-1,0],[-68,97],[-39,56],[-17,32],[-56,77],[-4,2],[-19,33],[-19,33],[-38,36],[-8,7],[-5,10],[-8,13],[-4,8],[-25,43],[-2,4],[-4,36],[22,8],[4,1],[8,5],[127,77],[21,13],[2,1],[22,17],[56,80],[24,33],[62,87],[11,17],[1,2],[11,23],[0,1],[-6,21],[-57,133],[-22,51],[-58,4],[-2,0],[-18,4],[-17,7],[1,12],[6,49],[1,12],[-13,3],[-31,-2],[-79,-28],[-30,-22],[-19,-15],[-31,-17],[-18,-5],[-1,-1],[-51,-1],[-2,0],[-26,7],[-155,72],[-9,5],[-2,2],[-7,10],[1,20],[41,14],[68,57],[1,2],[12,13],[1,10],[0,1],[-48,49],[-21,12],[-16,0],[-4,-15],[-9,-7],[-48,-9],[-2,0],[-5,0],[-16,8],[-5,7],[-1,1],[-23,50],[-32,49],[-1,1],[-18,17],[-13,8],[-19,3],[-29,-3],[-14,-5],[-45,-33],[-21,-18],[0,-4],[9,-7],[16,-5],[5,-2],[8,-5],[3,-5],[-1,-8],[-51,-30],[-6,-2],[-2,-1],[-81,-33],[-13,-2],[-10,5],[-68,55],[-103,122],[-4,5],[7,13],[70,40],[40,19],[20,5],[62,11],[4,1],[73,10],[23,7],[62,27],[3,10],[1,53],[-84,123],[-12,11],[-2,2],[-23,13],[-22,14],[-81,36],[0,2],[-14,13],[0,9],[4,5],[59,21],[14,5],[12,8],[11,14],[0,20],[-5,11],[-19,34],[-9,8],[0,1],[-1,0],[-88,45],[-50,4],[20,98],[3,36],[1,11],[52,16],[0,1],[119,105],[105,117],[-2,21],[-40,50],[-37,-3],[-10,3],[-39,68],[0,9],[25,52],[12,46],[4,13],[-2,9],[-135,70],[-1,0],[1,2],[23,41],[1,2],[0,1],[-1,17],[-11,15],[29,46],[1,2],[3,4],[0,1],[6,14],[2,2],[1,5],[1,4],[1,4],[1,5],[0,4],[0,92],[0,2],[21,0],[82,-16],[140,4],[35,-8],[8,-4],[1,125],[0,1],[-1,67],[-1,104],[0,8],[-8,151],[1,46],[4,33],[-1,91]],[[32608,10825],[3,-105],[-1,-62],[0,-9],[0,-24],[0,-92],[-1,-130],[-2,-90],[-3,-143],[-2,-28],[1,-157],[1,-248],[1,-46],[2,-440],[0,-1],[0,-107],[0,-1],[2,-86],[-1,-92],[-1,-95],[3,-180],[-320,-2],[-566,-1],[-37,0],[-50,-1],[-84,0],[-39,0],[-2,0],[-450,-2],[-31,-1],[-82,0],[-16,-27],[-5,-28],[-17,-26],[0,-9],[-1,-17],[29,-9],[12,-29],[4,-30],[-21,-22],[-4,-29],[6,-25],[16,-23],[-21,-23],[-39,0],[-29,-14],[-18,-21],[-7,-32],[6,-33],[40,-18],[17,-6],[1,0],[-2,-4],[-13,-15],[-66,-75],[-59,-35],[-68,-51],[-53,-39],[-169,-126],[-11,-5],[-57,-44],[-3,-5],[-59,-285],[-1,-17],[4,-29],[1,-1],[5,-14],[0,-18],[1,-2],[-1,-3],[-24,-51],[-73,-119],[-37,-59],[-14,-24],[-16,-26],[1,-45],[4,-28],[1,-1],[95,-52],[14,-4],[15,1],[44,9],[32,10],[104,-59],[-3,-21],[-27,-49],[0,-1],[-8,-13],[-24,-13],[-1,0],[-40,-3],[-143,-9],[-1,0],[-2,-1],[-79,-1],[-2,0],[-16,2],[-12,5],[-5,-2],[-4,-1],[-151,-42],[-2,0],[-134,-11],[-60,-2],[0,1],[-93,17],[-128,-38],[-150,-37],[-37,-5],[-1,1],[-2,-1],[-31,17],[-16,8],[-1,1],[-145,116],[-17,13],[-17,25],[-16,95],[-1,1],[-172,47],[-37,10],[-25,7],[-176,39],[-34,-2],[-38,-12],[-109,-85],[-21,-20],[-11,-20],[2,-18],[38,-95],[18,-45],[-123,-128],[-1,0],[-22,-36],[-2,-15],[-6,-48],[8,-13],[17,-14],[46,-26],[1,-1],[8,-8],[8,-26],[0,-3],[-3,-34],[-9,-26],[-18,-22],[-26,-18],[-5,-2],[-14,-8],[-11,-4],[-4,-1],[-1,0],[-28,0],[-16,5],[-1,0],[-8,5],[-15,19],[-7,32],[-5,7],[-6,4],[-9,3],[-21,0],[-152,-51],[-14,-10],[-5,-9],[-2,-24],[4,-9],[4,-12],[2,-6],[88,-34],[1,0],[21,-5],[24,1],[1,0],[5,1],[94,13],[3,1],[23,-3],[42,-12],[1,0],[41,-16],[15,-12],[17,-13],[17,-22],[10,-32],[0,-26],[-1,-2],[-10,-33],[-1,-3],[-17,-22],[-25,-17],[-65,-32],[-2,-1],[-42,-10],[-1,0],[-1,0],[-17,3],[-32,13],[-2,1],[-3,0],[-40,5],[-160,17],[-38,1],[-22,-3],[-18,-6],[-18,-10],[-14,-21],[-2,-15],[29,-85],[1,-7],[1,-5],[-8,-18],[-3,-8],[-46,-25],[-4,-2],[-46,-16],[-43,-8],[-57,-3],[-50,4],[-55,10],[-20,4],[-52,16],[-16,0],[-13,-4],[-3,-4],[-5,-20],[8,-7],[38,-37],[31,6],[37,-24],[44,-30],[7,-5],[49,-32],[26,-17],[-50,-47],[-43,-19],[-26,-8],[-25,-3],[-20,8],[-84,19],[-33,-36],[-3,-4],[-13,-25],[-35,-66],[-30,-23],[-4,-3],[-54,-38],[-193,-131],[-156,-71],[-21,-9],[-145,-78],[-103,-58],[-73,-50],[0,-1],[-4,-7],[-53,-29],[-223,-99],[-23,-6],[-21,-3],[-39,4],[-1,0],[-12,-1],[-24,-15],[-41,-31],[-100,-88],[-13,-18],[-1,-28],[3,-4],[51,-60],[1,0],[1,-2],[8,-13],[0,-14],[0,-1],[-1,-2],[-6,-7],[-19,-10],[-3,-2],[-12,-9],[-53,-105],[-1,-19],[8,-80],[-14,-76],[-15,-21],[-12,7],[-33,19],[-5,3],[-3,1],[-164,75],[-8,3],[-19,0],[-15,-5],[-2,-1],[-50,-38],[-2,-2],[-54,-58],[-74,-71],[-26,-19],[-11,-5],[-13,-7],[-7,-3],[-16,-7],[-26,-10],[-36,-15],[-27,-19],[-25,-20],[-26,-25],[-43,-43],[-95,-86],[-145,-109],[-30,-28],[-46,-41],[-58,-54],[-1,-13],[-13,-123],[-1,-38],[0,-1],[-2,-97],[-1,-4],[0,-3],[-1,-23],[0,-1],[0,-96],[-6,-191],[0,-268],[0,-260],[-1,-62]],[[25034,2686],[-2,2],[-16,13],[-2,2],[-4,3],[-28,19],[-38,21],[-28,20],[-28,16],[-6,4],[-23,16],[-13,8],[-5,3],[-26,10],[-34,9],[-9,-2],[-15,8],[-41,15],[-41,23],[-39,21],[-56,25],[-21,6],[-34,17],[-6,5],[-31,19],[-6,4],[-41,17],[-20,10],[-18,9],[-36,16],[-32,16],[-2,1],[-23,11],[-30,13],[-30,11],[-10,3],[-15,6],[-2,1],[-32,20],[-15,10],[-16,7],[-21,9],[-49,24],[-25,9],[-4,-1],[-3,-1],[-2,1],[-41,19],[-39,14],[-30,7],[-30,9],[-31,9],[-15,5],[-33,13],[-14,4],[-63,15],[-24,8],[-20,8],[-64,28],[-26,10],[-28,11],[-49,16],[-7,0],[-65,18],[-104,20],[-7,2],[-25,4],[-75,12],[-48,9],[-87,15],[-65,0],[-2,-1],[-34,-8],[-56,0],[-75,23],[-85,31],[-88,29],[-22,10],[-11,6],[-7,3],[-30,15],[-14,7],[-26,15],[-36,21],[-35,22],[-33,18],[-4,2],[-32,17],[-28,31],[-12,6],[-45,24],[-18,10],[-33,18],[-21,10],[-15,1],[-33,2],[-31,5],[-37,14],[-44,25],[-28,19],[-20,14],[-5,3],[-49,33],[-9,8],[-30,27],[-21,20],[-28,16],[-44,33],[-38,31],[8,10],[6,9],[1,1],[4,7],[3,3],[1,2],[-2,0],[-11,4],[-8,3],[-20,8],[-14,5],[-31,12],[-8,5],[0,1],[2,0],[4,-1],[0,-1],[1,1],[0,2],[-1,0],[-1,1],[-43,19],[-11,5],[-8,3],[-9,3],[-7,3],[-5,1],[-15,4],[-48,19],[-30,15],[-7,3],[-29,13],[-33,10],[-16,4],[-24,7],[-40,9],[-11,2],[-3,1],[-3,0],[-6,1],[-2,1],[-71,12],[-20,3],[-20,5],[-18,3],[-8,2],[-7,1],[-13,3],[-5,2],[-23,6],[-30,8],[-42,12],[-57,10],[-25,6],[-13,9],[-50,14],[-34,11],[-66,16],[-13,2],[-7,2],[-37,6],[-10,2],[-30,5],[-34,4],[-25,6],[-15,3],[-15,3],[-1,1],[-45,4],[-34,4],[-16,3],[-30,5],[-11,2],[-51,3],[-1,1],[-2,4],[-1,1],[-12,-6],[-45,-3],[-34,-2],[-73,-2],[-29,-1],[-19,1],[-15,0],[-3,1],[-4,-2],[-5,-3],[-5,-1],[-4,-1],[-14,0],[-3,0],[-19,1],[-5,0],[-6,1],[-36,0],[-7,-1],[-11,-1],[-13,0],[-9,-1],[0,1],[-1,0],[-1,1],[-12,-1],[-46,-4],[-23,1],[-8,0],[-27,0],[-9,-1],[-38,-5],[-30,-3],[-62,-4],[-11,-1],[-15,0],[-44,-2],[-59,-11],[-38,-7],[-38,-7],[-64,-8],[-59,-10],[-9,-1],[-12,-2],[-24,-5],[-25,-9],[-25,-10],[-21,-8]],[[19519,4244],[7,25],[4,52],[3,88],[3,91],[1,26],[0,64],[0,1],[2,29],[0,13],[0,27],[2,62],[1,33],[2,57],[1,45],[2,37],[1,31],[0,26],[2,36],[2,83],[2,43],[0,25],[0,24],[-1,31],[0,67],[0,36],[4,201],[10,244],[3,57],[0,19],[0,51],[-4,374],[-6,170],[-5,70],[0,19],[0,40],[-1,30],[5,32],[-340,-5],[-9,0],[-262,2],[-15,0],[-71,-2],[-1,25],[3,151],[3,188],[0,182],[0,42],[-3,127],[3,31],[7,265],[2,81],[-1,86],[2,82],[1,45],[0,40],[4,51],[2,129],[1,53],[1,101],[4,87],[0,44],[0,57],[2,132],[0,125],[0,2],[2,55],[43,2],[1,0],[76,-2],[-2,77],[0,15],[1,187],[2,81],[4,179],[5,183],[8,331],[1,37]],[[12360,9945],[-5,-57],[0,-1],[1,-99],[0,-5],[0,-21],[0,-199],[-1,-81],[-2,-55],[-1,-109],[-1,-36],[-1,-44],[0,-34],[0,-3],[-1,-36],[-1,-56],[-1,-77],[-1,-41],[0,-1],[-2,-93],[-1,-48],[-236,2],[-8,-199],[-1,-68],[0,-61],[0,-37],[-1,-41],[-1,-77],[0,-28],[0,-39],[0,-26],[-5,-159],[1,-31],[-1,-114],[-2,-236],[-5,-330],[0,-5],[-5,-134],[0,-25],[0,-30],[-1,-27],[-4,-378],[-2,-83],[0,-64],[3,-126],[-5,-59],[-3,-188],[-2,-28],[-1,-73],[0,-46],[-3,-40],[-2,-93],[1,-59],[-1,-38],[0,-42],[0,-45],[-1,-27],[-1,-28],[-1,-37],[0,-55],[-1,-36],[-2,-40],[0,-27],[-1,-37],[-1,-30],[-2,-31],[0,-36],[-1,-27],[-2,-37],[-1,-36],[0,-37],[-1,-36],[-1,-35],[0,-1],[-2,-61],[-1,-63],[0,-27],[-1,-31],[-1,-42],[0,-37],[0,-27],[-3,-27],[1,-26],[0,-27],[-1,-64],[0,-27],[-1,-37],[-1,-37],[-1,-32],[0,-33],[-1,-27],[-1,-27],[-1,-41],[-6,-25],[6,-12],[6,-12],[-8,-29],[-1,-32],[-1,-30],[0,-30],[0,-25],[-1,-27],[1,-32],[0,-25],[-1,-37],[-1,-39],[-2,-30],[0,-202],[0,-36],[-10,-41],[-2,-75],[-1,-36],[-3,-186],[-4,-177],[-5,-197],[-1,-14],[-7,-27]],[[11988,3160],[-13,-4],[-24,-7],[-37,-11],[-21,-5],[-1,-1],[-3,-3],[-18,-1],[-40,-10],[-32,-12],[-33,-10],[-19,-6],[-14,-4],[-67,-17],[-24,-5],[-10,-3],[-12,-2],[-48,-7],[-21,-3],[-45,-3],[-33,-8],[-8,1],[-5,0],[-19,-1],[-54,-2],[-71,-3],[-1,0],[-13,1],[-8,-3],[-49,6],[-19,2],[-4,0],[-26,4],[-10,2],[-19,3],[-6,1],[-65,12],[-10,2],[-63,13],[-11,1],[-14,3],[-61,9],[-47,2],[-18,1],[-24,-2],[-13,-1],[-13,-1],[-39,-1],[-35,-3],[-26,-16],[-21,-6],[-5,-1],[-43,-5],[-3,-1],[-22,-4],[-44,-6],[-17,-2],[-3,0],[-15,-1],[-26,-5],[-14,-2],[-9,-1],[-61,-8],[-45,-4],[-77,-5],[-3,0],[-81,-8],[-61,-13],[-42,-9],[-34,-15],[-115,-55],[-5,-2],[-11,-5],[-99,-39],[-43,-31],[-108,-61],[-90,-47],[-80,-46],[-1,-1],[-59,-27],[-64,-23],[-34,-10],[-121,-19],[-114,-9],[-43,-1],[-88,6],[-44,-1],[-79,-6],[-67,-2],[-82,0],[-68,3],[-83,3],[-90,3],[-84,2],[-90,5],[-53,6],[-79,9],[-42,2],[-71,-1],[-45,7],[-33,5],[-27,5],[-48,20],[-95,46],[-93,64],[-13,43],[-2,60],[0,6],[-22,16],[-26,20],[-26,13],[-37,18],[-30,14],[-32,29],[-41,22],[-55,28],[-39,26],[-21,15],[-3,3],[-3,2],[-15,18],[-12,11],[-1,2],[-46,53],[-28,31],[-23,24],[-11,6],[-44,53],[-6,11],[-40,71],[-43,75],[-21,37],[-21,33],[-75,80],[-83,64],[-24,16],[-20,13],[-75,51],[-17,11],[-66,41],[-92,38],[-85,30],[-74,17],[-57,6],[-79,12],[-48,8],[-45,8],[-63,9],[-29,0],[-51,-1],[-52,-7],[-86,-19],[-86,-27],[-28,-11],[-58,-40],[-27,-18],[-65,-48],[-42,-39],[-41,-26],[-8,-16],[-5,-8],[-12,-11],[-27,-24],[-24,-17],[-39,-26],[-6,-5],[-26,-23],[-36,-34],[-23,-19],[-48,-44],[-48,-40],[-22,-19],[-12,-16],[-11,-11],[-23,-19],[0,-2],[-94,-88],[2,-2],[-10,-10],[-29,-19],[-70,-49],[-43,-29],[-38,-25],[-1,0],[-17,-25],[-26,-21],[-3,-2],[-3,-3],[-29,-24],[-44,-37],[-29,-28],[-24,-34],[-27,-44],[-5,-13],[0,-1],[-16,-64],[-3,-31],[0,-42],[-5,-49],[8,-50],[9,-27],[3,-6],[10,-34],[0,-1],[8,-24],[7,-13],[57,-89],[42,-51],[38,-34],[25,-23],[35,-21],[1,0],[8,-10],[81,-79],[82,-64],[44,-30],[45,-31],[49,-27],[26,-15],[1,0],[57,-31],[39,-27],[61,-29],[65,-52],[47,-56],[22,-31],[36,-30],[22,-24],[8,-45],[-6,-50],[4,-3],[46,-26],[25,-41],[6,-52],[22,-120],[12,-28],[24,-57],[9,-66],[3,-11],[16,-41],[8,-36],[6,-28],[12,-39],[1,-39],[-10,-41],[-25,-66],[-32,-49],[-25,-60],[-11,-5],[-4,-7],[-104,-45],[-253,-80],[-69,-18],[-68,-17],[-117,-22],[-66,-20],[-85,-35],[-49,-33],[-18,-22],[-1,-48],[0,-3],[5,-30],[-37,-64],[-44,-24],[-38,-21],[-9,-25],[-20,-53],[-29,-40],[-10,-25],[-32,-36],[-56,-98],[-22,-40],[-69,-47],[-34,-14],[-73,-23],[-67,-4],[-1,0],[-89,10],[-53,8],[-38,5],[-23,5],[-60,41],[-55,38],[-69,51],[-42,30],[-23,13],[-33,17],[-49,36],[-13,27],[-14,22],[-19,21],[-38,23],[-30,18],[-71,43],[-40,15],[-200,80],[-31,1],[-54,9],[-33,17],[-32,13],[-34,9],[-16,5],[-8,4],[-30,17],[-9,4],[-56,33],[-67,28],[-103,26],[-61,22],[-35,10],[-31,8],[-42,7],[-29,4],[-10,1],[-66,9],[-33,9],[-32,8],[-54,6],[-63,4],[-66,-1],[-65,-5],[-47,-7],[-86,-17],[-23,-8],[-51,-13],[-51,-17],[-7,17],[-3,9],[3,45],[0,1],[1,14],[-1,6],[-6,33],[-6,13],[-2,2],[-4,5],[-17,19],[-16,16],[-3,2],[-15,14],[-25,17],[-7,4],[-5,4],[-38,15],[-1,0],[-7,2],[-2,1],[-34,10],[-30,9],[-34,5],[-31,4],[-33,-1],[-35,-2],[-67,-14],[-8,-2],[-102,-25],[-34,-12],[-77,-28],[-64,-29],[-30,-16],[-34,-18],[-104,-44],[-77,-27],[-42,-8],[-52,-8],[-43,-3],[-39,2],[-42,1],[-62,11],[-16,6],[-36,12],[-138,59],[-42,17],[-37,27],[-19,13],[-40,34],[-1,1],[-40,30],[-10,8],[-43,34],[-6,6],[-12,11],[-22,21],[-28,27],[-37,23],[-69,35],[-51,45],[-26,46],[-16,45],[-3,30],[20,44],[14,21],[19,23],[38,35],[37,29],[57,30],[62,20],[53,12],[3,1],[50,7],[36,-2],[78,-17],[71,-27],[95,-45],[43,-20],[52,-23],[97,-35],[117,-31],[10,-3],[66,-11],[115,-4],[72,-4],[69,-5],[32,-3],[152,-6],[2,1],[47,8],[70,14],[80,17],[119,31],[32,12],[13,5],[27,15],[59,36],[16,17],[11,13],[22,32],[20,38],[12,32],[2,8],[0,4],[-4,21],[-7,14],[-32,70],[-26,38],[0,1],[-4,2],[-2,2],[-38,27],[-38,24],[-15,10],[-57,18],[-2,1],[-57,12],[-138,24],[-10,2],[-95,18],[-90,11],[-95,14],[-96,22],[-26,6],[-78,25],[-72,25],[-29,11],[-48,30],[-13,9],[-42,28],[-39,27],[-2,1],[-25,16],[-36,32],[-35,40],[-20,29],[-15,20],[-17,32],[-37,70],[-24,48],[-29,54],[-5,10],[-3,6],[-5,8],[-20,32],[-27,34],[-21,27],[-38,63],[-23,43],[-30,59],[-23,44],[-136,124],[-40,38],[-33,16],[-117,61],[-11,8],[-69,46],[-5,3],[-18,11],[-5,5],[-31,27],[-30,26],[-16,35],[-63,139],[-10,22],[1,10],[1,27],[2,26],[63,45],[91,9],[82,-5],[112,-7],[89,-46],[12,-6],[38,-26],[79,-52],[120,-62],[127,-58],[9,-4],[23,-5],[56,-13],[24,-3],[150,-20],[115,-28],[5,-2],[8,-4],[13,-8],[23,-14],[1,0],[39,-11],[120,-3],[56,-1],[80,2],[52,1],[8,0],[86,10],[99,11],[84,18],[49,0],[66,4],[40,0],[36,-5],[30,-9],[18,-5],[18,-10],[28,-19],[40,-41],[31,-19],[30,-7],[20,-2],[14,-1],[44,-4],[24,2],[34,6],[36,15],[17,8],[54,37],[26,32],[15,27],[13,41],[1,2],[-7,10],[-32,52],[-18,30],[-22,36],[-56,69],[-15,39],[-15,41],[-24,78],[-10,34],[2,33],[-6,30],[-19,18],[-3,3],[-33,11],[-97,9],[-67,5],[-40,-3],[-3,0],[-183,0],[-52,2],[-59,3],[-59,3],[-45,1],[-3,0],[-195,13],[-66,6],[-43,5],[-38,4],[-176,28],[-92,18],[-16,5],[-2,1],[-14,5],[-15,6],[-26,17],[-32,23],[-36,29],[-40,34],[-23,39],[-14,36],[0,2],[-4,27],[0,1],[0,2],[3,9],[12,22],[5,9],[29,30],[13,11],[87,47],[4,2],[36,16],[19,4],[109,26],[38,3],[51,-3],[1,-1],[53,-18],[22,-18],[9,-28],[2,-7],[1,-1],[79,-71],[2,-3],[4,-2],[40,-25],[0,-1],[52,-22],[72,-26],[76,-16],[35,-4],[50,0],[5,1],[53,7],[38,13],[17,5],[21,7],[22,9],[15,6],[45,32],[59,54],[1,2],[4,15],[1,5],[-6,26],[-22,35],[-12,15],[-40,50],[-95,181],[-2,27],[0,9],[-14,174],[-5,55],[-5,66],[0,8],[2,2],[26,23],[6,5],[8,3],[24,10],[54,9],[54,5],[91,-4],[19,2],[71,8],[35,3],[25,3],[36,4],[36,4],[79,34],[30,11],[28,11],[37,29],[6,7],[22,28],[32,50],[17,58],[8,37],[-3,57],[-3,73],[-3,49],[-23,43],[-2,3],[-54,100],[-1,2],[-4,6],[-51,81],[-74,116],[-6,10],[-72,124],[-25,42],[-7,49],[-14,21],[-1,1],[0,1],[-6,14],[-9,21],[-18,42],[-2,3],[-10,22],[-16,60],[-3,10],[4,33],[14,47],[8,18],[24,51],[23,42],[21,32],[7,10],[29,39],[8,11],[1,0],[9,10],[26,27],[32,34],[4,3],[62,52],[52,25],[32,6],[8,1],[36,7],[57,16],[34,17],[31,20],[25,33],[-6,31],[-5,14],[-28,25],[-48,28],[-58,20],[-15,5],[-36,8],[-35,5],[-71,5],[-60,-13],[-31,-9],[-44,-13],[-76,-20],[-76,-17],[-17,-4],[-82,-5],[-63,3],[-49,10],[-31,14],[-14,6],[-77,32],[-19,12],[-43,26],[-21,27],[-24,30],[-12,28],[-3,38],[-3,48],[-3,52],[8,43],[1,2],[20,21],[55,46],[55,31],[75,23],[9,1],[79,15],[72,9],[85,0],[93,-5],[131,-3],[60,-3],[40,-1],[32,-2],[42,-4],[106,-5],[75,-2],[100,-3],[102,13],[30,15],[10,5],[190,45],[150,36],[321,116],[321,169],[30,50],[20,40],[63,104],[23,27],[49,59],[3,4],[56,68],[17,22],[29,48],[36,67],[-15,59],[-59,93],[-5,15],[-22,63],[-8,24],[2,69],[0,6],[0,8],[-3,2],[-18,0],[-27,1],[-12,1],[-6,-2],[-5,-1],[-6,-1],[-5,0],[-32,-12],[-7,-5],[-28,-18],[-7,-5],[-27,-20],[-66,-34],[-148,-37],[-58,-13],[-37,-10],[-42,-15],[-166,-49],[-64,-22],[-137,-40],[-71,-18],[-138,-34],[-46,-16],[-52,-17],[-34,-10],[-38,-11],[-69,-11],[-15,-3],[-39,-1],[-66,8],[-38,4],[-48,17],[-7,2],[-6,8],[-29,34],[-30,50],[-15,40],[-43,82],[-4,9],[-15,34],[-4,8],[2,32],[5,15],[4,12],[30,66],[40,44],[22,19],[9,8],[51,20],[46,18],[81,24],[30,8],[90,24],[4,0],[90,15],[3,0],[53,16],[1,0],[19,1],[7,0],[140,-22],[44,-6],[142,-8],[106,0],[138,33],[65,25],[8,3],[43,31],[24,64],[0,2],[2,26],[-2,45],[-8,54],[-3,5],[-8,20],[1,36],[0,1],[7,26],[1,3],[15,29],[22,48],[31,47],[15,25],[37,45],[37,34],[30,17],[33,13],[34,7],[43,1],[16,-2],[100,-12],[34,3],[73,16],[32,1],[1,0],[57,-17],[77,-36],[41,-26],[27,-17],[10,-8],[24,-20],[9,-7],[12,-15],[3,-2],[34,-12],[9,-1],[5,3],[12,5],[11,10],[2,2],[17,26],[2,2],[14,21],[26,39],[14,16],[3,3],[56,54],[20,21],[34,36],[23,20],[96,70],[41,9],[83,12],[56,17],[4,2],[41,22],[35,32],[9,8],[11,31],[0,4],[0,4],[-2,27],[-29,58],[42,11],[34,9],[40,22],[18,30],[12,10],[25,15],[0,7],[6,42],[4,3],[110,65],[10,0],[45,24],[36,28],[12,12],[47,42],[26,39],[9,66],[4,28],[-4,8],[-18,37],[-9,19],[-7,6],[-27,22],[-102,60],[-38,23],[-92,8],[-56,-9],[-40,-22],[-3,-2],[-11,-8],[-6,-2],[0,-1],[-28,-35],[-3,-10],[-8,-41],[-11,-57],[3,-6],[0,-3],[26,-48],[11,-22],[2,-33],[-1,-7],[-1,-8],[-55,-65],[-6,-3],[-110,-48],[-6,-2],[-3,-2],[-52,-7],[-41,1],[-21,23],[1,7],[5,37],[21,46],[7,53],[-5,38],[-36,86],[-38,52],[-33,44],[-4,6],[-76,64],[-29,15],[-112,46],[-178,74],[-68,28],[-25,6],[-51,11],[-109,43],[-345,204],[-137,112],[-238,225],[-39,60],[-32,119],[-17,25],[-17,75],[-3,94],[23,211],[2,8],[14,43]],[[38761,5678],[-35,11],[-1,0],[-36,5],[-9,1],[-2,0],[-43,7],[-12,2],[-8,0],[-52,1],[-30,-2],[-23,-4],[-19,-3],[-29,-2],[-28,-9],[-64,-22],[-56,-20],[-89,-42],[-58,-19],[-55,-17],[-55,-12],[-48,-14],[-36,-8],[-59,-14],[-69,-12],[-34,-6],[-35,-8],[-43,-10],[-40,-9],[-88,-27],[-72,-23],[-37,-14],[-73,-36],[-67,-32],[-60,-37],[-50,-34],[-60,-40],[-34,-26],[-30,-27],[-30,-34],[-21,-22],[-46,-27],[-33,-21],[-24,-18],[-59,-45],[-7,-5],[-17,-13],[-56,-21],[-15,-5],[-73,-40],[-28,-20],[-27,-20],[-36,-29],[-4,-3],[-30,-19],[-11,-6],[-24,-17],[-51,-55],[-7,-7],[-14,-17],[-37,-48],[-12,-15],[-32,-28],[-9,-7],[-13,-9],[-20,-5],[-1,1],[-11,-10],[-21,-19],[-29,-23],[-45,-39],[-9,-7],[-33,-19],[-32,-16],[-21,-19],[-12,-12],[-18,-22],[-21,-22],[-47,-38],[-27,-12],[-38,-23],[-27,-13],[-44,-26],[-13,-8],[-8,-4],[-47,-14],[-57,-16],[-53,-23],[-72,-39],[-16,-10],[-30,-17],[-16,-8],[-19,-10],[-47,-18],[-40,-11],[-50,-8],[-67,-11],[-38,-4],[-6,-1],[-41,-6],[-19,-2],[-66,3],[-34,2],[-61,-5],[-3,0],[-56,-8],[-79,-6],[-46,-5],[-63,-8],[-47,-3],[-66,-6],[-75,-4],[-31,-1],[-54,-2],[-42,-1],[-50,-1],[-53,-3],[-13,0],[-87,-6],[-17,-1],[-56,-3],[-42,-3],[-52,-3],[-38,2],[-20,2],[-48,5],[28,14],[2,5],[-15,-3],[-24,-9],[-13,-4],[-15,0],[-1,0],[-50,-11],[-62,-14],[-13,-3],[-51,-8],[-30,-6],[-86,-22],[-12,-3],[-198,-59],[-151,-48],[-67,-22],[-217,-70],[-112,-36],[-119,-38],[-241,-77],[-31,-10],[-42,-14],[-50,-25],[-80,-35],[-73,-34],[-55,-26],[-86,-37],[-90,-44],[-26,-14],[-59,-42],[-30,-22],[-7,-5],[-29,-21],[-10,-7],[-48,-38],[-23,-19],[-25,-21],[-43,-38],[-48,-55],[-23,-37],[-23,-42],[-12,-25],[-5,-25],[-4,-35],[4,-22],[5,-25],[22,-36],[13,-23],[17,-30],[14,-58],[9,-45],[9,-83],[1,-34],[-2,-5],[0,-1],[-3,-16],[-2,-49],[3,-20],[-24,-144],[-23,-32],[-1,-1],[-16,-29],[-25,-26],[-7,-8],[-1,0],[0,-1],[-2,-6],[-11,-21],[-7,-11],[-6,-9],[-6,-12],[-7,-13],[-11,-16],[-20,-39],[-13,-31],[-14,-32],[-2,-3],[-7,-18],[-4,-11],[-8,-24],[-5,-11],[-9,-30],[-4,-11],[-22,-54],[-19,-54],[-12,-33],[-1,-1],[-7,-20],[-9,-33],[-10,-28],[-9,-37],[-3,-36],[-4,-18],[-10,-28],[-10,-33],[-3,-9],[-18,-53],[-8,-18],[-5,-17],[-26,-69],[-6,-15],[-1,-2],[-25,-38],[-22,-31],[-15,-20],[-7,-10],[-8,-11],[-10,-15],[-20,-23],[-23,-35],[-2,-6],[-1,-4],[-4,-7],[-7,-33],[-2,-8],[-7,-27],[-12,-17],[-3,-6],[-12,-23],[-10,-17],[-1,-2],[-1,-3],[-13,-33],[-6,-11],[-5,-7],[-11,-21],[-14,-31],[-4,-9],[-6,-12],[-17,-25],[-1,-1],[-6,-9],[-6,-11],[-9,-12],[-9,-12],[-2,-4],[-3,-9],[-6,-9],[-14,-14],[-7,-7],[-13,-17],[-10,-9],[-9,-9],[-4,-5],[-28,-27],[-8,-9],[-18,-17],[-2,-1],[-25,-17],[-26,-20],[-14,-12],[-21,-14],[-11,-7],[-32,-19],[-13,-9],[-7,-4],[-23,-19],[-3,-2],[-5,-4],[-11,-9],[-19,-13],[-49,-29],[-8,-3],[-33,-14],[-85,-40],[-41,-22],[-46,-26],[-4,-3],[-37,-21],[-29,-14],[-49,-19],[-112,-40],[-44,-14],[-37,-7],[-37,-8],[-29,-6],[-44,-7],[-70,-13],[-40,-6],[-40,-8],[-66,-9],[-51,-5],[-5,-1],[-15,-1],[-18,-2],[-12,-1],[-30,-4],[-78,1],[-35,3],[-54,6],[-51,9],[-53,12],[-4,1],[-20,3],[-36,8],[-39,12],[-40,14],[-43,8],[-11,2],[-45,17],[-7,5],[-30,25],[-10,15],[-22,28],[-4,7],[-22,36],[-5,11],[-4,6],[-1,2],[-15,40],[-3,10],[-5,17],[-1,3],[-2,15],[-3,24],[-1,9],[-4,35],[-2,11],[-9,44],[-3,12],[-3,12],[-11,26],[-2,4],[-6,22],[-18,54],[-4,8],[-11,29],[-5,10],[-31,59],[-4,8],[-14,24],[-22,32],[-1,2],[-6,9],[-15,26],[-18,28],[-22,28],[-11,15],[-6,7],[-7,6],[-15,21],[-27,29],[-22,24],[-24,35],[-51,59],[-20,22],[-2,2],[-33,34],[-45,52],[-31,34],[-6,7],[-5,6],[-17,21],[-60,65],[-42,41],[-14,13],[-45,34],[-46,34],[-18,12],[-38,23],[-15,8],[-11,6],[-32,15],[-16,7],[-56,26],[-48,10],[-31,6],[-18,3],[-42,6],[-22,2],[-32,2],[-33,-3],[-90,-3],[-62,-8],[-19,-2],[-31,-2],[-45,-7],[-1,0],[-7,0],[-21,0],[-62,1],[-23,2],[-71,7],[-58,8],[-62,8],[-32,3],[-66,10],[-7,0],[-12,2],[-123,11],[-42,4],[-63,7],[-35,4],[-65,9],[-61,10],[-35,7],[-75,18],[-19,5],[-21,5],[-38,9],[-110,26],[-30,10],[-29,7],[-30,8],[-34,11],[-40,14],[-34,14],[-63,30],[-33,16],[-23,11],[-65,30],[-29,14],[-63,33],[-51,25],[-48,24],[-62,26],[-39,15],[-48,20],[-1,0],[-43,17],[-52,20],[-33,12],[-39,20],[-40,18],[-32,15],[-57,28],[-23,10],[-12,3],[-16,6],[-12,4],[-33,12],[-4,1],[-22,9],[-68,33],[-44,26],[-32,19],[-40,27],[-9,7],[-14,11],[-13,10],[-1,0],[-7,4],[-24,17],[-21,15],[-23,17],[-35,27],[-30,26],[-26,18],[-11,8],[0,1],[-3,0],[-11,3],[-3,6],[-2,1],[-4,3],[-1,1],[-5,5]],[[19519,4244],[-75,-31],[-17,-6],[-66,-25],[-147,-65],[-54,-22],[-56,-27],[-54,-31],[-35,-23],[-21,-13],[-20,-11],[-13,-6],[-17,-8],[-1,-2],[-9,-2],[-1,0],[-1,0],[-3,-2],[-15,-6],[-70,-29],[-18,-7],[-7,-4],[-27,-14],[-32,-16],[-37,-20],[-5,-3],[-14,-6],[0,-1],[-1,-1],[-5,-5],[-5,-3],[-23,-13],[-21,-11],[-19,-8],[-8,-5],[-12,-7],[0,-1],[-4,-2],[-52,-23],[-4,-3],[-4,-1],[0,-1],[-5,-2],[-12,-7],[-14,-7],[-10,-5],[-13,-9],[-9,-2],[-10,-7],[-20,-12],[-1,-1],[-4,-6],[-3,-8],[-6,-2],[-7,-5],[-3,-1],[-5,-4],[-2,-2],[-2,-1],[-1,-1],[-8,-3],[-9,-2],[-10,-15],[-3,-3],[-24,-8],[-1,0],[-8,-5],[-8,-4],[-3,-2],[-4,-3],[-12,-9],[-1,-1],[-1,-3],[-27,-9],[-7,-3],[-4,-3],[-12,-5],[-3,-1],[-4,-1],[-6,-4],[-1,-1],[-3,-2],[-3,-2],[-17,-6],[-20,-11],[-2,-2],[-1,-1],[-9,-7],[-10,-8],[-19,-11],[-17,-11],[-5,-2],[-16,-5],[-6,-4],[-14,-9],[-4,-1],[-5,-2],[-6,-1],[-1,0],[-5,-2],[-12,-4],[-8,-7],[-9,-4],[-6,-1],[-13,-6],[-2,0],[-8,-3],[-22,-17],[-11,-10],[-3,-3],[-2,-1],[-15,-9],[-4,-8],[-1,-1],[-13,-5],[-5,-1],[-5,-2],[-7,-5],[-10,-5],[-28,-15],[-33,-11],[-20,-4],[-10,-2],[-16,-4],[-21,-5],[-9,-5],[-8,-3],[-8,-2],[-18,-2],[-47,-2],[-4,0],[-28,0],[-17,11],[-61,38],[-36,22],[-43,28],[-25,15],[-37,19],[-61,27],[-38,12],[-65,18],[-40,10],[-47,12],[-21,4],[-50,15],[-47,11],[-28,9],[-30,12],[-27,9],[-23,9],[-30,11],[-14,6],[-29,10],[-32,12],[-27,11],[-47,17],[-19,7],[-35,14],[-65,22],[-15,5],[-21,7],[-11,4],[-45,19],[-27,12],[-7,3],[-16,6],[-6,3],[-37,15],[-29,15],[-6,7],[-10,13],[-8,4],[-8,2],[-55,23],[-33,15],[-14,9],[-38,25],[-1,0],[-2,1],[-48,32],[-25,18],[-28,20],[-9,7],[-35,30],[-1,1],[-30,25],[-6,5],[-15,14],[-3,3],[-18,17],[-8,7],[-17,19],[-9,9],[-3,3],[-8,9],[-27,32],[-30,31],[-20,19],[-2,3],[-28,40],[-19,27],[-17,25],[-14,21],[-6,8],[-11,18],[-9,20],[-4,11],[-4,14],[-4,9],[-25,50],[-7,18],[-12,18],[-25,9],[-4,2],[-13,6],[-5,3],[-3,7],[0,1],[7,14],[9,12],[9,14],[8,13],[12,24],[9,37],[11,26],[4,11],[3,13],[0,6],[0,20],[-3,7],[-1,2],[2,7],[-2,14],[-1,5],[-2,10],[-1,0],[-4,9],[-7,20],[-14,38],[-2,6],[-6,11],[-9,21],[-3,7],[-21,31],[-3,2],[-12,11],[-4,5],[-36,31],[-22,12],[-6,2],[-6,4],[-13,4],[-1,1],[-7,3],[-6,6],[1,2],[3,2],[-3,1],[-11,4],[-20,5],[4,4],[1,0],[-1,1],[-6,2],[-18,4],[-4,2],[-6,1],[-26,7],[-33,12],[-34,8],[-7,2],[-6,3],[-8,3],[-2,0],[-3,2],[2,4],[2,4],[0,1],[-4,0],[-1,0],[-1,0],[-6,1],[-17,4],[-36,12],[-5,0],[-11,1],[-6,0],[-10,-1],[-5,-1],[-40,-3],[-49,-1],[-29,-1],[-7,-1],[-11,-2],[-29,-4],[-23,-3],[-44,-8],[-5,-1],[-12,-3],[-52,-18],[-5,-2],[-4,-1],[-47,-30],[-2,-3],[1,-1],[2,-2],[-12,-6],[-2,-1],[-5,-3],[-7,-4],[-4,-4],[-13,-20],[-4,-8],[0,-3],[0,-1],[-8,-12],[-14,-12],[-13,-21],[-21,-35],[-4,-12],[-3,-7],[-5,-12],[-10,-31],[-2,-43],[12,-18],[2,-5],[2,-3],[0,-19],[2,-3],[5,-19],[0,-1],[4,-24],[1,-4],[2,-4],[-3,-18],[-1,-10],[-9,-34],[-4,-11],[0,-1],[-28,-39],[3,-52],[0,-6],[-16,-38],[-15,-24],[-13,-16],[-14,-18],[-15,-17],[-4,-4],[-25,-23],[-49,-36],[-23,-15],[-5,-3],[-38,-25],[-9,-6],[-34,-21],[-32,-20],[-29,-16],[-40,-23],[-27,-17],[-4,-2],[-31,-17],[-75,-50],[-49,-34],[-15,-11],[-15,-13],[-16,-17],[-9,-8],[-6,-6],[-8,-10],[-21,-23],[-37,-52],[-17,-29],[-14,-53],[-3,-14],[7,-30],[4,-32],[-3,-2],[-5,-6],[10,-11],[7,-24],[1,-5],[16,-43],[21,-51],[5,-11],[3,-6],[13,-21],[18,-23],[7,-16],[19,-41],[6,-10],[28,-48],[57,-66],[20,-20],[4,-4],[38,-29],[50,-30],[51,-31],[21,-12],[47,-30],[33,-16],[36,-19],[37,-18],[36,-18],[31,-15],[69,-27],[62,-25],[16,-7],[18,-10],[34,-18],[41,-24],[58,-35],[26,-14],[25,-13],[42,-25],[8,-5],[3,-13],[32,-25],[21,-21],[29,-31],[9,-11],[2,-5],[-10,-32],[3,-35],[12,-38],[16,-38],[6,-10],[13,-30],[12,-32],[11,-26],[10,-34],[-1,-4],[9,-51],[7,-29],[14,-83],[0,-3],[-5,-35],[-4,-19],[0,-1],[-4,-17],[0,-2],[-1,-3],[2,-23],[1,-31],[2,-29],[-3,-34],[-28,-43],[-52,-60],[-42,-28],[-30,-29],[-37,-42],[-31,-46],[-35,-60],[-39,-36],[-16,-10],[-31,-20],[-57,-51],[-70,-66],[-51,-46],[-36,-28],[-26,-15],[-48,-25],[-30,-27],[-53,-42],[-53,-32],[-6,-2],[-24,-10],[-92,-28],[-73,-15],[-55,-13],[-30,-8],[-47,-12],[-36,-5],[-28,-5],[-46,-8],[-49,-7],[-34,-5],[-41,-8],[-29,-5],[-40,-5],[-54,-6],[-44,-4],[-80,-8],[-72,-6],[-37,-3],[-39,-4],[-54,-3],[-64,0],[-84,0],[-59,4],[-35,3],[-59,6],[-82,12],[-28,3],[-52,5],[-106,9],[-40,8],[-33,3],[-46,9],[-27,9],[-32,12],[-53,35],[-59,46],[-30,28],[-9,10],[-28,31],[-11,13],[-9,16],[-13,26],[-14,38],[-24,46],[-6,30],[5,26],[-9,40],[-15,27],[-9,16],[-2,6],[1,52],[18,82],[-3,25],[-9,44],[0,21],[21,49],[36,42],[41,33],[41,61],[19,36],[8,15],[21,28],[2,2],[33,30],[25,23],[11,10],[17,10],[111,66],[81,66],[43,52],[27,40],[15,34],[1,4],[9,31],[4,77],[0,10],[-1,41],[-4,10],[-7,18],[-14,43],[-2,12],[-2,18],[-11,37],[-1,4],[-9,25],[-15,30],[-11,15],[-15,20],[-3,4],[-8,15],[-39,38],[-9,7],[-41,28],[-29,15],[-26,15],[-36,24],[-30,15],[-16,8],[-19,9],[-14,4],[-4,1],[-63,11],[-49,14],[-32,7],[-38,7],[-20,3],[-15,2],[-10,3],[-22,-1],[-12,-2],[-5,0],[-3,1],[-5,0],[-16,1],[-5,-3],[-27,-8],[-58,-6],[-27,-12],[-6,-1],[-1,-1],[-4,-2],[-11,-5],[-5,-3],[-21,-6],[-2,0],[-15,-13],[-30,-11],[-34,-15],[-35,-11],[-38,-17],[-32,-12],[-51,-10],[-33,-7],[-50,-14]]],"transform":{"scale":[0.00003313219504195003,0.00003989321602215976],"translate":[-88.09788658499991,37.77173490200016]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ks-counties.json b/src/js/config/mapconfig/mapfiles/county/ks-counties.json new file mode 100644 index 00000000..4e692cb4 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ks-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-102.05173465899986,36.99301177600017,-94.58837967099993,40.00451627700011],"geometries":[{"type":"Polygon","properties":{"name":"KS"},"id":"20023","arcs":[[0,1,2]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20153","arcs":[[3,4,5,-1,6]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20089","arcs":[[7,8,9,10,11,12]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20183","arcs":[[-12,13,14,15,16]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20157","arcs":[[17,18,-8,19]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20201","arcs":[[20,21,22,23,-18,24]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20039","arcs":[[25,26,27,-4,28]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20137","arcs":[[29,30,31,-26,32]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20147","arcs":[[-16,33,34,-30,35]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20117","arcs":[[36,37,38,-21,39]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20013","arcs":[[40,41,42,43,44]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20131","arcs":[[-44,45,46,-37,47]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20043","arcs":[[48,-41,49]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20029","arcs":[[-24,50,51,52,-9,-19]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20085","arcs":[[53,54,55,56,-46,-43]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20005","arcs":[[57,58,59,-54,-42,-49]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20163","arcs":[[60,61,62,63,-34,-15]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20181","arcs":[[-6,64,65,66,67,-2]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20193","arcs":[[-28,68,69,70,-65,-5]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20141","arcs":[[-11,71,72,73,74,-61,-14]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20179","arcs":[[-32,75,76,-69,-27]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20027","arcs":[[77,78,79,80,-51,-23]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20123","arcs":[[-53,81,82,-72,-10]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20065","arcs":[[-64,83,84,-76,-31,-35]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20161","arcs":[[85,86,87,-78,-22,-39]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20149","arcs":[[-47,-57,88,89,-86,-38]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20087","arcs":[[90,91,92,-55,-60]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20103","arcs":[[93,94,95,96,-91,-59]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20143","arcs":[[-81,97,98,99,-82,-52]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20061","arcs":[[100,101,102,-79,-88]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20105","arcs":[[-100,103,104,105,-73,-83]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20177","arcs":[[-93,106,107,108,-89,-56]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20197","arcs":[[-109,109,110,111,-101,-87,-90]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20209","arcs":[[112,113,-95]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20109","arcs":[[114,115,116,117,-66,-71]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20199","arcs":[[-118,118,119,120,-67]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20051","arcs":[[-75,121,122,123,124,-62]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20063","arcs":[[-77,-85,125,126,127,128,-115,-70]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20041","arcs":[[-103,129,130,131,-98,-80]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20167","arcs":[[-106,132,133,134,-122,-74]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20195","arcs":[[-63,-125,135,-126,-84]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20045","arcs":[[-97,136,137,138,-107,-92]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20091","arcs":[[139,140,-137,-96,-114]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20169","arcs":[[-132,141,142,-104,-99]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20127","arcs":[[-112,143,144,145,-130,-102]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20053","arcs":[[-143,146,147,148,-133,-105]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20139","arcs":[[-139,149,150,151,-110,-108]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20111","arcs":[[-152,152,153,154,-144,-111]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20059","arcs":[[155,156,157,-150,-138]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20121","arcs":[[158,159,-156,-141]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20171","arcs":[[-129,160,161,162,163,-116]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20101","arcs":[[164,165,-161,-128]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20071","arcs":[[166,167,168,-120]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20203","arcs":[[-164,169,170,-167,-119,-117]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20135","arcs":[[-136,-124,171,172,173,174,-165,-127]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20009","arcs":[[-149,175,176,177,178,-134]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20165","arcs":[[-135,-179,179,-172,-123]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20113","arcs":[[180,181,182,183,-147,-142]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20115","arcs":[[-146,184,185,186,-181,-131]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20017","arcs":[[-155,187,188,-185,-145]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20159","arcs":[[-184,189,190,-176,-148]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20031","arcs":[[-158,191,192,193,-153,-151]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20003","arcs":[[194,195,-192,-157]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20107","arcs":[[196,197,-195,-160]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20145","arcs":[[-178,198,199,200,-173,-180]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20093","arcs":[[201,202,203,-170,-163]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20055","arcs":[[-166,-175,204,205,206,-202,-162]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20075","arcs":[[-204,207,208,-168,-171]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20185","arcs":[[-191,209,210,211,-199,-177]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20083","arcs":[[-201,212,213,214,-205,-174]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20079","arcs":[[215,216,217,-182,-187]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20073","arcs":[[-154,-194,218,219,220,221,-188]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20155","arcs":[[-183,-218,222,223,224,-210,-190]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20015","arcs":[[-189,-222,225,226,227,-216,-186]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20047","arcs":[[-212,228,229,230,-213,-200]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20207","arcs":[[231,232,-219,-193]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20001","arcs":[[233,234,-232,-196]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20011","arcs":[[235,236,237,-234,-198]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20069","arcs":[[-215,238,239,240,-206]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20057","arcs":[[-231,241,242,243,-239,-214]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20173","arcs":[[-228,244,245,-223,-217]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20151","arcs":[[-225,246,247,248,-229,-211]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20187","arcs":[[249,250,251,252,-208]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20067","arcs":[[253,254,-250,-203]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20081","arcs":[[-241,255,256,257,-254,-207]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20097","arcs":[[-249,258,259,260,-242,-230]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20095","arcs":[[-246,261,262,263,-247,-224]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20205","arcs":[[264,265,266,-220,-233]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20133","arcs":[[-238,267,268,269,-265,-235]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20037","arcs":[[270,271,272,-268,-237]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20049","arcs":[[-267,273,274,275,-226,-221]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20035","arcs":[[-276,276,277,278,-227]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20191","arcs":[[-279,279,280,-262,-245]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20119","arcs":[[-244,281,282,283,-256,-240]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20025","arcs":[[-261,284,285,-282,-243]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20007","arcs":[[-264,286,287,288,-259,-248]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20129","arcs":[[289,290,-252]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20189","arcs":[[-258,291,292,-290,-251,-255]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20175","arcs":[[-284,293,-292,-257]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20125","arcs":[[-266,-270,294,295,296,-274]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20077","arcs":[[297,-287,-263,-281]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20033","arcs":[[298,-285,-260,-289]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20099","arcs":[[-273,299,300,-295,-269]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20021","arcs":[[301,-300,-272]]},{"type":"Polygon","properties":{"name":"KS"},"id":"20019","arcs":[[-297,302,-277,-275]]}]},"states":{"type":"GeometryCollection","bbox":[-102.05173465899986,36.99301177600017,-94.58837967099993,40.00451627700011],"geometries":[{"type":"Polygon","properties":{"name":"Kansas"},"id":"20","arcs":[[6,28,32,35,16,12,19,24,39,47,44,49,57,93,112,139,158,196,235,270,301,300,295,302,277,279,297,287,298,285,282,293,292,290,252,208,168,120,67,2]]}]}},"arcs":[[[8585,99933],[-3,-84],[0,-55],[0,-74],[1,-271],[1,-196],[1,-404],[0,-36],[1,-137],[0,-108],[0,-40],[0,-90],[1,-187],[1,-476],[3,-263],[1,-448],[2,-608],[0,-69],[0,-51],[0,-145],[0,-86],[1,-477],[2,-483],[2,-480],[0,-115],[1,-107],[0,-121],[1,-136],[-2,-483],[0,-91],[-1,-372],[0,-42],[0,-40],[0,-84],[-1,-52],[0,-74],[0,-92],[-1,-117],[0,-241],[0,-17],[0,-88],[0,-3],[-1,-86],[0,-158],[-1,-266],[0,-46],[0,-60],[-1,-173],[0,-79],[0,-131],[-1,-100],[0,-143],[-3,-368],[-4,-670],[-1,-143],[-1,-55],[0,-3],[0,-40],[0,-45],[0,-90],[-1,-72],[-2,-255],[0,-74],[-2,-251],[0,-101],[-1,-91],[-1,-64],[-2,-303],[-1,-127],[-2,-268],[0,-79],[-1,-83],[0,-42],[-5,-433],[-1,-94],[-8,-893],[-1,-56],[-5,-456],[-4,-476]],[[8546,85516],[-47,0],[-28,-1],[-50,0],[-20,0],[-14,0],[-24,2],[-20,-1],[-15,-1],[-19,0],[-19,2],[-17,-2],[-34,1],[-18,1],[-79,-1],[-35,1],[-17,0],[-32,-1],[-14,0],[-40,1],[-19,0],[-14,0],[-26,0],[-99,-1],[-38,0],[-15,0],[-13,0],[-7,0],[-18,0],[-91,-1],[-21,2],[-26,-2],[-17,0],[-27,0],[-180,1],[-16,0],[-43,0],[-41,0],[-42,0],[-249,2],[-138,0],[-88,1],[-14,1],[-15,-2],[-18,0],[-35,1],[-50,0],[-19,0],[-70,0],[-40,0],[-45,0],[-43,0],[-42,0],[-14,0],[-55,0],[-28,0],[-20,0],[-98,0],[-33,0],[-58,0],[-41,0],[-20,0],[-44,0],[-30,0],[-37,0],[-28,0],[-76,1],[-28,-1],[-29,1],[-118,-1],[-25,0],[-41,1],[-40,-1],[-36,1],[-41,0],[-35,0],[-34,0],[-94,0],[-155,0],[-57,0],[-37,1],[-28,-1],[-31,0],[-29,0],[-39,0],[-37,0],[-18,0],[-17,0],[-52,0],[-37,0],[-46,-1],[-47,1],[-30,0],[-16,-1],[-29,0],[-5,0],[-21,0],[-53,-1],[-51,1],[-54,0],[-148,-1],[-140,0],[-14,0],[-48,1],[-163,0],[-40,0],[-212,0],[-102,1],[-11,20],[-15,-18],[-16,-4],[-104,2],[-54,-1],[-23,0],[-22,0],[-89,0],[-19,0],[-23,0],[-15,0],[-16,0],[-13,-1],[-18,1],[-16,-1],[-8,0],[-8,0],[-155,0],[-128,-1],[-62,0],[-55,-1],[-65,1],[-20,-1],[-23,1],[-17,0],[-132,0],[-40,0],[-56,-1],[-35,0],[-78,1],[-16,0],[-21,0],[-31,0],[-24,0],[-25,0],[-43,-1],[-36,1],[-36,0],[-33,0],[-30,1],[-41,0],[-7,0],[-27,1],[-28,0],[-124,-2],[-16,0],[-15,1],[-45,-2],[-50,0],[-35,-1],[-107,0],[-27,0],[-19,0],[-16,0],[-19,-1],[-21,0],[-24,0],[-187,0],[-59,0],[-68,0],[-16,0],[-46,0],[-24,-1],[-24,0],[-45,0],[-37,0],[-50,0],[-18,0],[-7,-1],[-7,0],[-48,0],[-126,-1],[-25,0],[-36,-1],[-164,1],[-26,0],[-19,-1],[-15,1],[-14,0],[-21,0],[-27,0],[-23,0],[-17,-1],[-24,0],[-16,0],[-35,0],[-23,0]],[[27,85510],[-1,195],[-6,1973],[-2,811],[-7,3093],[-1,458],[-3,1799],[-6,5285],[-1,725],[0,102],[196,0],[19,0],[106,1],[97,0],[86,-1],[3,0],[63,-1],[60,-1],[63,-1],[12,0],[58,0],[67,0],[63,0],[41,0],[112,0],[197,1],[71,0],[55,0],[100,0],[87,0],[32,0],[19,0],[159,0],[42,4],[28,-5],[22,1],[21,-1],[15,0],[35,0],[22,0],[19,1],[24,2],[19,3],[248,0],[101,0],[34,-4],[100,-1],[50,0],[87,0],[190,-8],[117,5],[128,1],[133,-4],[69,-1],[38,-2],[288,5],[35,0],[153,-1],[253,-1],[26,0],[28,0],[426,1],[13,0],[157,1],[34,0],[104,0],[70,0],[144,-1],[169,-1],[15,0],[120,0],[187,-1],[161,-6],[16,4],[16,-2],[359,1],[244,0],[145,-1],[86,1],[66,0],[6,0],[91,-1],[17,-1],[22,1],[67,0],[15,-1],[28,0],[75,1],[29,-1],[16,0],[31,0],[27,0],[21,0],[19,-1],[14,0],[25,2],[14,-1],[33,-2],[53,2],[52,0],[22,0],[20,0],[16,-1],[24,0],[33,1],[42,0],[45,0],[20,0],[58,0],[38,0],[14,0],[35,0],[62,-1],[34,0],[32,0],[17,2],[20,12],[15,11],[13,9],[19,14],[14,10],[13,5],[17,-1],[24,-7],[18,-5],[17,-8],[39,-23],[14,-8],[19,-9],[45,-2],[27,0],[96,0],[53,0],[23,-1],[27,1],[26,0],[49,-1],[28,0],[22,1],[15,0],[44,-1],[14,-1],[19,-5],[38,-1],[27,5]],[[17591,99919],[1,-70],[0,-3],[2,-638],[-3,-257],[0,-56],[-2,-58],[0,-40],[0,-78],[-2,-51],[0,-37],[0,-107],[0,-47],[-4,-207],[-2,-252],[1,-84],[0,-86],[-1,-74],[0,-41],[0,-121],[0,-55],[-1,-46],[0,-42],[0,-66],[-1,-43],[0,-55],[-1,-183],[-1,-34],[1,-40],[0,-43],[-1,-64],[0,-38],[0,-3],[0,-40],[0,-2],[0,-40],[0,-87],[0,-61],[0,-62],[0,-55],[-1,-78],[0,-61],[0,-63],[-1,-39],[0,-83],[0,-66],[0,-61],[-1,-55],[0,-35],[0,-79],[0,-85],[-1,-73],[1,-65],[-1,-33],[2,-67],[-3,-74],[-2,-128],[2,-354],[0,-35],[0,-61],[0,-52],[0,-72],[-1,-45],[0,-38],[0,-121],[0,-59],[0,-46],[-1,-184],[-1,-151],[1,-32],[0,-2],[0,-236],[0,-175],[-1,-51],[-1,-213],[0,-288],[0,-484],[-1,-130],[0,-39],[0,-78],[0,-36],[-1,-79],[0,-45],[0,-36],[0,-60],[-1,-456],[4,-202],[-1,-43],[0,-212],[0,-76],[0,-46],[0,-246],[0,-64],[-4,-71],[-4,-34],[4,-39],[0,-59],[-2,-56],[5,-33],[0,-7],[-1,-339],[-3,-783],[1,-95],[0,-42],[0,-79],[0,-181],[0,-54],[0,-42],[-2,-71],[0,-46],[0,-81],[-1,-62],[0,-286],[0,-128],[2,-408],[0,-431],[1,-37],[-1,-55],[0,-51],[0,-64],[1,-173],[-1,-72],[0,-118],[1,-389],[1,-480],[0,-67],[0,-155],[0,-63],[0,-89],[-1,-66],[0,-50]],[[17564,85505],[-57,1],[-45,-1],[-15,0],[-15,0],[-16,0],[-17,0],[-16,0],[-43,0],[-14,0],[-15,-1],[-30,0],[-24,1],[-36,1],[-58,-1],[-23,1],[-44,-1],[-31,0],[-30,0],[-21,0],[-56,0],[-22,0],[-86,-1],[-33,0],[-24,0],[-20,0],[-75,-1],[-24,0],[-43,-1],[-20,0],[-17,-1],[-29,0],[-14,0],[-26,0],[-22,-2],[-20,0],[-61,0],[-61,-1],[-38,-1],[-54,-1],[-97,-1],[-64,4],[-203,6],[-23,1],[-64,2],[-57,-7],[-93,0],[-1,0],[-97,1],[-53,1],[-173,-1],[-61,-1],[-182,5],[-14,0],[-23,1],[-207,-4],[-45,0],[-44,-1],[-154,4],[-15,0],[-31,0],[-14,-1],[-28,1],[-147,0],[-14,0],[-60,0],[-44,-1],[-133,1],[-14,0],[-22,1],[-25,-1],[-18,0],[-102,0],[-84,0],[-48,0],[-75,-1],[-36,1],[-17,-1],[-27,-1],[-93,1],[-181,1],[-16,0],[-1,0],[-23,0],[-15,0],[-53,0],[-14,-1],[-17,1],[-20,1],[-19,-1],[-83,1],[-60,0],[-88,0],[-45,1],[-88,-1],[-31,0],[-69,1],[-87,1],[-37,-3],[-57,1],[-135,7],[-17,-3],[-57,0],[-19,1],[-24,3],[-24,-1],[-8,0],[-49,-1],[-45,-1],[-80,1],[-35,-1],[-20,0],[-29,0],[-49,0],[-15,0],[-80,0],[-34,0],[-15,0],[-18,0],[-15,0],[-138,0],[-15,3],[-14,-1],[-15,-2],[-33,0],[-20,1],[-48,0],[-20,0],[-16,0],[-39,0],[-20,0],[-41,-1],[-20,0],[-14,1],[-14,1],[-13,12],[-94,-7],[-99,-7],[-68,0],[-92,1],[-96,1],[-61,-1],[-20,1],[-29,-1],[-20,2],[-36,-1],[-15,0],[-27,0],[-16,0],[-22,-1],[-15,0],[-19,1],[-33,-1],[-27,0],[-28,0],[-22,0],[-35,0],[-18,0],[-30,0],[-76,0],[-20,0],[-73,0],[-23,0],[-62,0],[-19,1],[-18,-1],[-54,1],[-18,0],[-108,0],[-17,0],[-23,0],[-36,0],[-46,-1],[-75,1],[-39,0],[-16,0],[-46,1],[-74,0],[-91,0],[-36,1],[-16,0],[-34,0],[-16,0],[-44,0],[-13,0],[-52,-1],[-39,1],[-48,-1],[-30,0],[-28,0],[-41,0],[-16,0],[-16,0],[-51,0],[-53,1],[-20,0],[-27,0]],[[8879,85516],[-56,0],[-26,0],[-39,0],[-19,0],[-67,0],[-56,0],[-35,0],[-35,0]],[[8585,99933],[14,1],[17,1],[16,0],[24,1],[32,0],[38,-1],[15,1],[40,0],[48,0],[34,0],[54,0],[50,1],[51,0],[41,0],[16,-1],[37,0],[26,0],[108,0],[35,0],[169,0],[17,0],[23,0],[24,1],[28,0],[23,1],[8,0],[19,0],[47,0],[39,0],[53,1],[24,-1],[65,0],[39,-1],[39,0],[55,-1],[54,0],[73,-1],[71,-1],[20,1],[18,-1],[20,-1],[35,1],[55,0],[41,-1],[18,1],[15,-1],[15,1],[18,0],[41,0],[26,0],[16,0],[17,0],[21,-1],[17,1],[25,0],[65,0],[23,0],[18,0],[13,-1],[39,0],[17,1],[14,0],[22,0],[48,-1],[60,0],[94,0],[24,0],[17,1],[20,-1],[18,1],[21,-1],[37,0],[45,0],[21,0],[26,0],[14,-1],[35,0],[15,0],[27,0],[17,0],[16,0],[39,1],[41,-1],[50,1],[20,-1],[26,-1],[41,0],[36,0],[34,0],[73,0],[25,0],[56,1],[56,1],[56,0],[55,0],[110,1],[107,-1],[112,-2],[65,0],[38,0],[36,0],[16,0],[33,0],[73,-1],[54,0],[38,0],[154,0],[26,0],[40,0],[68,-1],[21,1],[31,-1],[50,0],[16,-1],[14,0],[36,0],[22,0],[24,-1],[26,0],[38,0],[32,1],[60,-1],[156,-2],[16,0],[51,0],[58,-1],[59,0],[60,0],[17,0],[18,0],[17,0],[33,0],[30,1],[43,1],[58,-1],[86,0],[31,0],[25,0],[34,0],[16,0],[32,0],[23,0],[22,0],[116,0],[23,-1],[23,1],[14,-1],[18,0],[90,0],[34,0],[16,0],[45,0],[18,0],[27,0],[22,0],[34,-1],[14,0],[18,0],[52,0],[21,0],[2,0],[15,-1],[18,0],[14,0],[21,1],[41,0],[34,-1],[22,0],[69,-2],[55,0],[88,1],[68,0],[166,0],[70,0],[70,0],[110,0],[46,-1],[66,0],[32,0],[60,0],[15,0],[15,1],[126,0],[120,0],[16,0],[68,1],[129,0],[61,0],[19,0],[14,0],[56,0],[55,1],[37,0],[36,0],[108,0],[1,0],[29,0],[28,0],[32,0],[33,1],[99,0],[100,0],[83,1],[85,0],[54,0],[50,0],[34,0],[14,-1],[67,-4],[15,-1],[28,0],[99,0],[15,0],[30,0]],[[55201,99918],[1,-69],[0,-17],[-1,-153],[-2,-51],[0,-5],[-2,-46],[-1,-44],[2,-53],[2,-50],[0,-56],[0,-66],[0,-78],[0,-48],[-1,-51],[1,-108],[-1,-59],[1,-40],[0,-116],[0,-41],[0,-41],[0,-84],[0,-148],[1,-77],[0,-37],[0,-52],[0,-46],[0,-80],[0,-44],[1,-41],[0,-38],[0,-62],[0,-46],[0,-49],[1,-67],[0,-81],[0,-37],[0,-44],[-1,-54],[1,-37],[0,-34],[0,-53],[0,-54],[0,-66],[0,-57],[0,-106],[0,-89],[0,-35],[0,-65],[0,-42],[0,-127],[0,-47],[-1,-44],[-1,-34],[0,-65],[0,-66],[-1,-70],[0,-41],[-1,-47],[0,-42],[0,-57],[-1,-42],[0,-38],[0,-45],[-1,-43],[0,-39],[0,-1],[0,-58],[-1,-35],[0,-40],[0,-55],[-1,-75],[0,-34],[0,-41],[-1,-94],[0,-36],[-1,-77],[0,-43],[-2,-246],[-1,-115],[-1,-50],[0,-76],[-1,-48],[0,-79],[-1,-49],[-1,-190],[-1,-42],[0,-72],[-1,-123],[-2,-116],[-1,-120],[-1,-120],[0,-48],[1,-91],[0,-86],[0,-17],[0,-35],[1,-78],[0,-53],[0,-72],[0,-90],[1,-100],[1,-287],[0,-4],[0,-132],[2,-214],[0,-132],[0,-84],[1,-71],[0,-1],[0,-142],[1,-100],[0,-85],[0,-57],[1,-170],[1,-211],[0,-41],[1,-89],[0,-162],[1,-77],[0,-42],[0,-111],[0,-190],[0,-71],[1,-112],[0,-37],[2,-47],[0,-37],[1,-98],[0,-90],[1,-136],[0,-64],[1,-84],[0,-130],[1,-108],[0,-141],[1,-97],[0,-34],[0,-3],[1,-111],[0,-51],[0,-33],[0,-36],[0,-75],[1,-122],[0,-49],[0,-70],[1,-109],[1,-224],[0,-70],[0,-57],[1,-120],[0,-36],[0,-38],[0,-71],[0,-39],[1,-42],[0,-53]],[[55206,88352],[-1,-91],[0,-89],[0,-100],[0,-37],[-1,-161],[0,-3],[0,-56],[0,-49],[0,-105],[0,-48],[0,-42],[0,-11],[0,-22],[0,-41],[-1,-51],[0,-45],[1,-44],[-1,-39],[0,-157],[0,-41],[0,-211],[-1,-264],[0,-58],[0,-151],[-2,-76],[0,-95],[0,-194],[-1,-124],[2,-70],[0,-67],[0,-342]],[[55201,85468],[-25,0],[-16,0],[-22,0],[-26,1],[-16,-1],[-24,1],[-19,-1],[-17,1],[-27,0],[-26,0],[-20,0],[-14,0],[-20,0],[-32,1],[-38,0],[-42,0],[-82,1],[-18,0],[-19,0],[-15,0],[-22,1],[-63,0],[-32,0],[-44,0],[-16,0],[-22,0],[-30,0],[-19,0],[-66,1],[-66,-1],[-25,1],[-21,0],[-23,1],[-39,-1],[-15,0],[-111,0],[-31,1],[-22,0],[-24,0],[-16,0],[-34,0],[-82,0],[-29,0],[-82,5],[-18,-1],[-28,-2],[-16,-1],[-27,1],[-139,1],[-31,1],[-33,0],[-18,1],[-43,-2],[-56,-1],[-28,0],[-24,0],[-25,1],[-28,-1],[-53,0],[-60,0],[-47,-1],[-32,0],[-28,0],[-12,0],[-6,0],[-33,0],[-27,0],[-18,0],[-24,0],[-22,0],[-20,0],[-31,0],[-77,0],[-17,0],[-27,0],[-16,-1],[-18,-1],[-15,1],[-25,0],[-27,0],[-32,0],[-35,0],[-39,1],[-23,-1],[-37,0],[-43,0],[-37,0],[-86,-1],[-18,1],[-14,2],[-5,0],[-20,1],[-21,-1],[-16,-1],[-31,1],[-31,0],[-70,1],[-60,1],[-121,1],[-6,0],[-75,0],[-14,1],[-33,0],[-54,0],[-71,0],[-67,2],[-31,0],[-28,-1],[-34,0],[-21,1],[-60,0],[-92,0],[-44,1],[-15,1],[-22,-1],[-18,0],[-28,0],[-16,0],[-21,0],[-40,0],[-33,0],[-23,0],[-19,1],[-18,0],[-20,0],[-32,0],[-20,0],[-38,1],[-18,-1],[-22,0],[-37,0],[-47,0],[-16,0],[-19,0],[-22,0],[-17,0],[-36,0],[-15,0],[-30,1],[-15,-1],[-76,0],[-25,1],[-57,0],[-46,0],[-15,0],[-35,-1],[-15,0],[-21,0],[-21,0],[-16,0],[-16,0],[-23,-1],[-35,1],[-20,0],[-34,-1],[-21,0],[-20,-1],[-16,2],[-53,-1],[-14,-1],[-19,0],[-43,0],[-18,0],[-23,0],[-49,0],[-56,-2],[-17,-2],[-26,5],[-36,-1],[-1,0],[-36,-1],[-2,0],[-17,1],[-65,1],[-21,-1],[-71,0],[-30,0],[-13,-1],[-30,0],[-32,0],[-27,1],[-24,0],[-38,0],[-34,1],[-36,0],[-29,-1],[-15,1],[-57,-1],[-17,0],[-19,0],[-22,0],[-45,0],[-15,2],[-26,-2],[-17,0],[-23,0],[-14,1],[-14,0],[-77,0],[-33,0],[-20,0],[-21,-1],[-27,0],[-18,0],[-28,0],[-26,1],[-27,1],[-44,-1],[-74,1],[-34,1],[-22,0],[-39,1],[-45,0],[-20,-3],[-23,1],[-22,0],[-27,0],[-18,0],[-15,1],[-30,0],[-40,0],[-43,1],[-20,0],[-17,0],[-18,0],[-28,-1],[-42,0],[-39,0],[-34,0],[-26,1],[-81,2],[-16,-1],[-19,0],[-17,0],[-31,0]],[[47757,85487],[-29,0],[-25,-1],[-39,1],[-38,1],[-38,0],[-38,0],[-18,1],[-4,1],[-10,1]],[[47518,85491],[1,30],[0,4],[1,37],[0,292],[0,48],[0,33],[1,34],[-1,40],[0,78],[0,212],[1,40],[0,71],[0,64],[0,38],[0,61],[0,36],[0,52],[0,94],[0,36],[1,37],[0,37],[0,69],[0,54],[1,375],[0,53],[0,122],[0,42],[0,44],[1,58],[-1,183],[-1,34],[1,34],[1,125],[0,78],[-2,241],[0,396],[2,190],[1,100],[1,169],[0,67],[0,41],[1,70],[0,35],[0,47],[0,47],[0,78],[0,36],[0,167],[0,81],[1,39],[-1,47],[1,87],[0,129],[0,98],[0,54],[1,42],[0,77],[0,38],[0,49],[0,95],[0,57],[0,46],[0,33],[0,123],[0,77],[0,82],[0,43],[1,144],[1,90],[-1,42],[0,72],[0,82],[0,88],[0,132],[0,42],[0,39],[1,39],[-1,77],[1,72],[-1,67],[0,73],[0,49],[1,51],[-1,38],[1,75],[0,40],[0,36],[0,39],[0,64],[1,78],[0,48],[0,7],[0,44],[0,57],[-1,40],[0,36],[0,115],[0,84],[-2,51],[1,56],[1,146],[0,51],[0,39],[0,1],[2,246],[0,48],[0,37],[1,42],[1,105],[0,191],[0,58],[0,38],[0,40],[0,118],[0,60],[0,81],[0,51],[0,52],[0,68],[0,38],[-1,58],[0,83],[0,57],[0,60],[-1,56],[0,58],[0,50],[1,37],[0,48],[0,35],[-3,107],[0,8],[1,55],[0,46],[1,52],[0,55],[-1,42],[1,69],[-1,43],[0,45],[-1,41],[0,34],[0,60],[0,58],[0,55],[-1,54],[0,90],[1,48],[-1,41],[0,36],[0,62],[0,76],[0,141],[0,71],[-1,35],[1,85],[0,156],[-1,94],[0,41],[0,39],[0,50],[0,54],[-1,35],[1,35],[0,75],[-1,44],[0,57],[0,37],[1,45],[0,36],[0,45],[0,45],[0,82],[0,37],[0,38],[-2,49],[3,34],[0,124],[0,128],[0,62],[0,40],[0,43],[-3,71],[-1,100],[0,49],[0,131],[0,79],[5,88],[1,44],[-2,33],[0,73],[0,44],[0,45],[-4,357],[3,58],[0,38],[0,47],[0,54],[-1,48],[0,49],[1,41],[0,49],[-1,39],[1,38],[0,4],[0,76]],[[47529,99925],[55,-2],[77,5],[23,0],[32,1],[16,-1],[42,1],[16,-1],[22,0],[30,1],[65,0],[11,0],[16,0],[17,0],[14,0],[63,0],[42,0],[24,0],[26,-1],[15,0],[92,-1],[16,0],[19,0],[17,0],[25,-1],[15,1],[23,0],[17,1],[28,0],[28,0],[29,0],[20,0],[59,1],[24,0],[16,0],[22,1],[50,0],[22,0],[3,0],[14,0],[51,1],[50,-1],[19,0],[19,0],[23,0],[16,0],[20,0],[20,0],[21,0],[18,-1],[31,0],[42,0],[18,0],[16,0],[27,0],[38,0],[60,0],[29,-1],[71,1],[16,-1],[27,1],[25,-1],[23,0],[26,1],[51,0],[83,0],[16,0],[75,0],[40,0],[1,0],[32,0],[95,0],[101,1],[19,-1],[16,1],[20,0],[22,1],[38,-1],[36,0],[28,0],[21,0],[23,0],[18,0],[14,1],[46,0],[5,0],[10,0],[34,-1],[36,0],[43,0],[44,0],[20,0],[35,1],[36,-1],[17,0],[22,0],[33,0],[33,0],[35,0],[23,0],[15,7],[25,-5],[52,-1],[125,-2],[39,-1],[18,0],[14,1],[29,1],[16,-2],[68,-1],[19,0],[39,2],[64,-1],[98,0],[69,0],[30,-1],[21,1],[85,0],[20,0],[21,-1],[31,0],[17,0],[63,0],[21,0],[15,1],[15,1],[40,-1],[19,0],[92,5],[84,-1],[20,-1],[56,-3],[39,2],[22,-1],[123,-4],[54,-2],[47,-1],[151,2],[14,2],[17,0],[28,0],[24,-1],[22,1],[31,-1],[27,0],[15,0],[39,0],[19,0],[20,0],[14,-1],[20,0],[30,0],[20,0],[47,0],[35,0],[33,0],[30,0],[29,-1],[25,1],[19,-1],[14,-1],[14,1],[24,0],[127,1],[4,0],[151,1],[14,-4],[24,0],[30,1],[19,-1],[26,5],[2,0],[59,0],[125,-1],[2,0],[47,-1],[32,-2],[12,-1],[3,0],[23,0],[28,0],[55,0],[1,0],[111,1],[193,1],[7,0],[8,0],[20,0],[41,1],[133,-3],[36,1],[61,-1],[24,1],[20,1],[18,-1],[24,-2],[52,0],[35,0],[16,0],[65,-1],[5,0],[18,0],[32,0],[19,0],[18,0],[57,0],[25,0],[20,0],[22,0],[21,0],[18,0],[20,0],[21,-1],[15,1],[30,-1],[22,0],[38,0],[41,0],[55,0],[22,0],[31,-1],[16,1]],[[47518,85491],[-23,-3],[-17,0],[-22,0],[-51,1],[-26,0],[-24,0],[-49,0],[-24,-1],[-50,-1],[-29,1],[-81,-1],[-42,1],[-16,-1],[-19,1],[-20,-1],[-7,0],[-8,-1],[-22,1],[-24,1],[-15,-1],[-17,1],[-165,-3],[-24,-1],[-23,0],[-51,0],[-38,4],[-28,1],[-14,-1],[-16,1],[-14,-2],[-25,1],[-17,1],[-33,-4],[-67,0],[-56,1],[-94,1],[-31,1],[-64,2],[-81,1],[-19,-1],[-57,2],[-106,2],[-19,1],[-39,1],[-59,-2],[-14,0],[-17,-1],[-49,-1],[-169,0],[-276,0],[-21,0],[-68,0],[-33,0],[-49,0],[-15,0],[-59,0],[-13,-9],[-2,1],[-40,10],[-28,0],[-48,2],[-18,1],[-36,-5],[-28,-1],[-19,-1],[-4,0],[-15,0],[-19,0],[-3,0],[-35,2],[-86,0],[-44,0],[-2,0],[-66,0],[-151,0],[-27,0],[-59,0],[-4,-1],[-41,-1],[-144,2],[-73,1],[-23,0],[-77,1],[-29,-1],[-71,1],[-18,1],[-14,1],[-18,0],[-156,1],[-31,0],[-39,1],[-27,0],[-48,-2],[-21,1],[-52,0],[-17,-1],[-44,1],[-20,0],[-38,1],[-104,1],[-15,0],[-16,0],[-24,1],[-16,-1],[-71,0],[-19,0],[-38,1],[-33,1],[-24,0],[-69,1],[-67,0],[-17,0],[-52,1],[-23,1],[-28,0],[-19,1],[-19,0],[-39,1],[-17,0],[-17,1],[-19,1],[-18,0],[-59,0],[-19,-1],[-34,0],[-21,0],[-14,-1],[-17,-1],[-74,0],[-37,0],[-50,0],[-17,-1],[-43,0],[-89,1],[-27,-2],[-16,0],[-21,0],[-14,0],[-21,0],[-29,1],[-14,-1],[-19,-1],[-23,0],[-68,0],[-29,1],[-20,0],[-26,0],[-18,0],[-30,-1],[-33,1],[-45,0],[-17,0],[-38,0],[-20,1],[-226,-1],[-17,0],[-24,0],[-38,0],[-23,0],[-23,0],[-26,0],[-46,0],[-29,1],[-19,0],[-31,-1],[-16,0],[-16,0],[-17,1],[-45,0],[-28,-1],[-44,1],[-28,-1],[-56,0],[-154,1],[-78,0],[-21,0],[-26,1],[-131,0],[-52,0]],[[40294,85505],[-28,0],[-14,0],[-15,0],[-65,1],[-14,-1],[-62,1],[-45,1],[-29,0],[-20,0]],[[40002,85507],[1,215],[-1,33],[0,179],[0,52],[0,70],[0,107],[0,57],[-1,39],[0,40],[0,33],[0,70],[0,67],[0,43],[0,57],[-1,256],[-1,84],[1,42],[0,63],[0,53],[0,112],[-1,137],[0,81],[0,34],[0,63],[0,47],[0,68],[0,42],[1,93],[-1,47],[0,47],[0,69],[0,39],[1,42],[0,35],[0,51],[0,43],[0,36],[0,48],[0,64],[1,47],[0,52],[0,45],[0,4],[0,55],[-1,36],[0,48],[1,60],[0,42],[0,63],[0,37],[-1,39],[1,45],[0,35],[0,19],[0,15],[-1,106],[1,46],[0,82],[0,46],[0,96],[0,77],[0,40],[0,34],[0,38],[0,56],[-1,41],[0,48],[0,104],[0,54],[0,62],[0,47],[0,66],[0,71],[0,60],[0,35],[0,61],[0,51],[0,58],[0,89],[0,144],[0,36],[0,91],[-1,36],[0,102],[0,114],[0,34],[0,40],[0,55],[0,41],[0,191],[0,151],[0,77],[0,151],[0,68],[0,35],[0,58],[0,48],[0,65],[0,6],[0,36],[0,48],[1,117],[0,102],[0,19],[-1,40],[1,151],[0,68],[-1,159],[0,71],[0,59],[0,61],[0,55],[0,66],[-1,41],[0,56],[0,56],[-1,72],[0,38],[1,44],[-1,95],[0,144],[0,55],[0,70],[0,52],[0,99],[0,177],[0,104],[-1,82],[0,63],[1,70],[0,37],[0,90],[-1,121],[0,69],[-1,50],[1,50],[-1,55],[-1,245],[1,35],[-1,68],[1,181],[0,34],[-1,70],[-1,74],[1,39],[0,103],[-1,62],[0,37],[0,45],[0,33],[0,39],[0,180],[0,57],[0,37],[0,31],[0,20],[-1,44],[0,79],[-1,210],[0,42],[1,55],[0,69],[-1,39],[0,195],[0,94],[0,47],[-1,34],[0,45],[0,69],[0,87],[0,34],[0,129],[0,42],[0,43],[1,41],[-1,73],[0,67],[1,124],[-1,45],[2,91],[-1,73],[0,40],[1,60],[0,63],[-1,66],[0,47],[0,50],[0,61],[0,93],[-1,51],[1,36],[0,42],[0,72],[1,50],[1,79],[-1,46],[0,54],[0,47],[1,106],[-1,64],[0,60],[0,70],[0,60],[0,87],[1,192],[-1,124],[1,55],[-1,35],[0,18],[-1,78]],[[39991,99927],[21,0],[79,-3],[76,-2],[74,0],[16,0],[126,0],[21,0],[35,0],[40,0],[15,0],[21,0],[26,1],[61,0],[14,1],[17,5],[13,-6],[17,0],[30,-1],[96,0],[14,0],[38,1],[54,0],[67,0],[17,1],[17,-1],[265,0],[47,2],[3,-1],[14,0],[62,1],[25,1],[95,-1],[17,0],[14,0],[150,-2],[74,-2],[1,0],[80,2],[30,2],[30,0],[15,0],[18,0],[38,0],[19,0],[36,0],[76,-1],[73,1],[19,0],[38,0],[19,0],[56,1],[20,0],[43,0],[30,-1],[48,-1],[27,1],[15,0],[27,1],[16,0],[26,0],[16,0],[61,2],[62,0],[19,0],[50,0],[17,-1],[19,0],[22,1],[21,-1],[19,0],[17,0],[87,0],[28,-1],[100,1],[43,2],[43,-2],[87,-1],[34,2],[37,-1],[20,0],[34,0],[28,1],[17,-1],[20,1],[28,-1],[17,0],[35,0],[19,-1],[33,1],[19,0],[55,0],[15,0],[16,0],[23,0],[15,1],[42,0],[34,-2],[36,0],[18,0],[38,1],[20,-2],[29,0],[16,0],[30,1],[14,0],[23,0],[18,0],[26,0],[14,-1],[33,-1],[15,-1],[22,0],[26,2],[64,-1],[20,-1],[19,2],[19,-1],[22,0],[18,0],[20,0],[26,1],[26,0],[49,0],[25,1],[20,0],[36,2],[86,-6],[126,5],[15,1],[13,0],[20,0],[45,1],[62,-1],[14,0],[15,0],[48,0],[9,2],[8,1],[14,1],[116,-1],[126,-4],[42,2],[181,-4],[30,-1],[17,4],[154,5],[15,-1],[65,-4],[74,-1],[37,0],[15,-1],[57,2],[22,0],[23,0],[20,1],[18,0],[15,0],[15,-1],[84,0],[94,1],[47,1],[38,1],[123,-3],[1,0],[59,1],[24,-1],[30,0],[104,-1],[96,-2],[18,3],[33,1],[186,-4],[15,-1],[157,2],[71,0],[23,0],[1,0],[50,4],[137,-2],[65,-3]],[[62740,99914],[0,-46],[0,-19],[0,-114],[0,-47],[0,-256],[0,-53],[0,-1],[0,-306],[0,-122],[-1,-41],[1,-94],[0,-34],[0,-83],[0,-126],[0,-42],[0,-84],[0,-203],[0,-52],[0,-42],[0,-87],[0,-76],[0,-100],[0,-88],[0,-199],[-1,-58],[1,-53],[0,-101],[0,-37],[0,-49],[0,-34],[-1,-243],[0,-68],[1,-61],[-1,-174],[0,-47],[0,-150],[1,-150],[0,-56],[1,-216],[0,-42],[0,-49],[0,-38],[1,-57],[0,-101],[1,-136],[0,-100],[1,-143],[0,-45],[1,-61],[0,-169],[0,-55],[0,-10],[1,-27],[0,-43],[0,-97],[0,-74],[0,-12],[1,-35],[0,-51],[0,-150],[0,-39],[0,-38],[0,-38],[0,-136],[1,-42],[-1,-40],[0,-55],[0,-58],[0,-50],[-1,-132],[0,-52],[0,-34],[0,-125],[0,-61],[0,-33],[0,-26],[0,-24],[0,-94],[0,-119],[0,-64],[0,-37],[0,-135],[0,-57],[0,-80],[1,-208],[0,-58],[0,-79],[0,-80],[0,-182],[1,-65],[0,-35],[-1,-74],[0,-61],[1,-61],[0,-164],[0,-84],[-1,-65],[1,-55],[0,-36],[0,-45],[0,-45],[0,-59],[0,-54],[0,-46],[0,-93],[0,-44],[0,-96],[0,-124],[1,-77],[0,-47],[0,-79],[-1,-47],[0,-107],[1,-94],[-1,-242],[0,-75],[1,-76],[0,-12],[0,-53],[0,-49],[0,-86],[0,-49],[0,-96],[0,-36],[0,-50],[0,-76],[0,-69],[0,-85],[0,-61],[0,-86],[0,-149],[0,-41],[-1,-198],[0,-53],[0,-190],[0,-47],[0,-91],[0,-74],[0,-77],[-1,-79],[0,-78],[0,-35]],[[62747,88361],[-19,-1],[-66,0],[-21,0],[-95,-1],[-52,0],[-40,-1],[-22,0],[-25,0],[-41,0],[-30,0],[-53,-1],[-41,0],[-123,-1],[-25,-1],[-16,0],[-31,0],[-30,0],[-13,-1],[-14,0],[-43,0],[-4,0],[-14,0],[-73,-1],[-24,0],[-1,0],[-65,-1],[-28,0],[-24,0],[-24,0],[-38,-1],[-37,0],[-56,-1],[-73,0],[-21,0],[-119,0],[-26,-1],[-30,1],[-46,-1],[-181,-1],[-69,0],[-19,0],[-127,-1],[-45,0],[-62,-1],[-70,1],[-51,0],[-48,0],[-74,0],[-37,-1],[-93,0],[-67,-1],[-16,0],[-36,0],[-37,0],[-30,0],[-21,0],[-21,0],[-84,0],[-10,3],[-15,5],[-15,-9],[-14,-1],[-21,0],[-118,0],[-23,0],[-51,-1],[-47,-1],[-24,-1],[-52,-1],[-15,-1],[-27,6],[-58,0],[-76,0],[-22,-5],[-130,2],[-26,0],[-76,0],[-14,1],[-16,0],[-52,0],[-41,1],[-17,0],[-73,1],[-48,-1],[-15,0],[-27,0],[-54,0],[-15,0],[-22,1],[-1,0],[-70,0],[-17,1],[-15,0],[-21,0],[-31,-1],[-61,7],[-29,2],[-29,0],[-23,1],[-74,-1],[-38,-1],[-35,-1],[-36,-1],[-19,0],[-18,-1],[-21,0],[-15,0],[-35,-1],[-34,0],[-30,1],[-51,0],[-14,-1],[-38,8],[-14,-8],[-102,1],[-28,0],[-33,0],[-16,0],[-16,-1],[-34,0],[-34,0],[-31,0],[-63,0],[-90,0],[-38,0],[-61,-1],[-62,0],[-68,1],[-5,0],[-23,0],[-30,-1],[-21,1],[-62,1],[-50,1],[-48,1],[-6,0],[-10,0],[-179,-4],[-18,0],[-41,1],[-5,0],[-37,0],[-25,0],[-17,1],[-26,-1],[-43,0],[-40,1],[-22,-1],[-14,0],[-168,-2],[-47,0],[-45,3],[-109,-2],[-97,1],[-14,-5],[-25,1],[-14,0],[-33,0],[-25,0],[-16,0],[-79,1],[-25,-1],[-15,1],[-37,-1],[-84,1],[-37,0],[-19,1],[-18,0],[-18,8],[-8,0],[-22,0],[-29,0],[-28,0],[-19,0],[-19,0],[-2,0],[-15,0],[-43,-1],[-110,-3],[-29,0],[-26,0],[-60,0],[-134,2]],[[55201,99918],[48,0],[160,0],[54,0],[16,0],[19,0],[20,0],[1,0],[24,0],[51,-1],[25,0],[15,1],[27,0],[14,0],[37,0],[17,0],[34,-1],[16,1],[21,0],[25,0],[27,0],[18,0],[27,-1],[25,0],[24,1],[75,0],[48,0],[28,-1],[39,1],[40,0],[22,0],[15,0],[55,-1],[160,0],[27,0],[25,0],[17,0],[31,-1],[28,0],[13,0],[74,1],[37,0],[30,0],[59,0],[25,0],[55,0],[31,0],[27,0],[25,0],[23,0],[126,0],[104,1],[19,0],[42,0],[19,1],[23,2],[18,3],[21,-2],[3,0],[11,-2],[16,-3],[25,-2],[18,5],[37,0],[19,0],[14,0],[71,0],[60,0],[36,0],[28,0],[25,0],[20,0],[15,0],[31,-1],[30,0],[13,0],[40,1],[53,0],[18,0],[33,0],[20,0],[80,0],[153,-1],[18,0],[93,1],[75,0],[16,0],[8,0],[42,0],[23,-1],[47,0],[19,0],[57,1],[67,0],[40,0],[19,0],[73,-1],[43,0],[41,0],[36,0],[40,0],[20,0],[17,0],[28,0],[19,0],[44,0],[72,-1],[53,0],[19,0],[13,0],[31,0],[61,0],[27,0],[19,-1],[21,0],[14,0],[49,0],[26,0],[2,0],[17,0],[37,1],[24,-1],[34,0],[96,0],[15,0],[21,0],[15,1],[2,0],[12,-1],[26,-1],[43,1],[22,0],[85,0],[14,0],[29,0],[49,-1],[57,0],[18,0],[46,0],[39,0],[28,0],[29,0],[31,0],[25,0],[27,0],[24,0],[116,0],[15,0],[106,0],[16,0],[129,0],[16,-1],[22,0],[22,-4],[18,-1],[9,2],[15,3],[19,3],[15,1],[16,-1],[16,-1],[4,0],[17,1],[53,3],[12,-4],[3,-1],[16,-1],[25,-2],[77,-5],[37,-3],[86,3],[35,-1],[95,5],[115,5],[14,-1],[18,0],[36,0],[38,-1],[21,0],[20,1],[20,-1],[38,0],[20,0],[27,1],[84,-1],[17,0],[16,0],[14,0],[123,1],[33,-1],[62,0],[16,0],[16,0],[15,-1],[32,1],[31,0],[46,-1],[45,0],[16,0],[28,0],[16,0],[20,0],[25,0],[103,0],[42,0],[21,0],[28,0],[37,0],[20,0],[68,0],[17,1],[19,-1]],[[70289,99898],[0,-38],[0,-11],[0,-57],[1,-63],[0,-58],[0,-52],[0,-187],[0,-55],[-1,-63],[0,-62],[0,-55],[0,-62],[0,-54],[-1,-38],[1,-69],[0,-385],[0,-74],[0,-46],[0,-61],[0,-14],[0,-37],[0,-46],[1,-111],[-1,-49],[1,-54],[-1,-55],[0,-56],[1,-40],[-1,-88],[0,-74],[0,-47],[0,-68],[0,-47],[0,-38],[0,-33],[-1,-46],[0,-34],[0,-59],[0,-39],[-1,-67],[0,-40],[0,-44],[0,-42],[0,-122],[-1,-36],[0,-40],[0,-39],[-1,-42],[0,-41],[0,-35],[0,-22],[0,-21],[0,-41],[0,-61],[0,-54],[0,-36],[-1,-33],[0,-74],[0,-54],[0,-257],[0,-40],[0,-76],[0,-55],[0,-39],[0,-39],[0,-44],[1,-44],[0,-35],[0,-39],[0,-35],[0,-98],[0,-57],[0,-74],[-1,-101],[0,-120],[0,-52],[0,-87],[0,-49],[0,-66],[0,-65],[0,-53],[0,-66],[0,-42],[0,-71],[0,-36],[-5,-47],[-3,-33],[0,-6],[6,-41],[2,-34],[0,-73],[-1,-94],[0,-61],[0,-54],[0,-59],[0,-65],[0,-56],[0,-106],[-1,-60],[0,-107],[0,-52],[0,-100],[2,-93],[-2,-145],[-1,-43],[0,-41],[0,-38],[-1,-39],[0,-86],[0,-73],[-2,-410],[1,-76],[-1,-71],[0,-146],[0,-186],[0,-78],[-1,-363],[0,-43],[-1,-162],[1,-65],[3,-134],[-1,-41],[0,-81],[0,-20],[0,-74],[-2,-302],[1,-64],[1,-110],[0,-43],[1,-38],[0,-57],[-3,-80],[0,-124],[1,-53],[-1,-52],[1,-45],[0,-50],[0,-37],[0,-6],[1,-45],[-1,-93],[1,-45],[0,-41],[0,-39],[0,-27],[0,-11],[0,-87],[1,-40],[-1,-128],[0,-44],[0,-53],[0,-53],[0,-37],[1,-57],[-1,-114],[0,-54],[0,-79],[0,-74],[-1,-63],[0,-49],[0,-59],[0,-72],[2,-35],[-2,-34],[0,-10],[0,-51],[0,-52],[3,-118],[-3,-47],[0,-49],[0,-83],[0,-39],[0,-57],[0,-234],[1,-42],[0,-40],[0,-100],[1,-34],[-1,-43],[0,-37],[0,-62],[0,-144],[0,-84],[0,-150],[0,-267],[0,-95],[0,-48],[0,-62],[0,-68],[0,-44],[0,-78],[1,-34],[-1,-52],[0,-43],[0,-100],[0,-65],[0,-56],[0,-49],[0,-47],[1,-115],[-1,-56],[0,-386],[0,-46]],[[70279,85452],[-24,-1],[-11,1],[-12,0],[-33,0],[-21,0],[-8,0],[-1,-1],[-6,0],[-136,1],[-18,0],[-20,0],[-7,-1],[-7,0],[-36,0],[-24,0],[-101,1],[-16,-1],[-16,0],[-11,0],[-10,0],[-13,1],[-22,0],[-14,-1],[-26,0],[-26,0],[-21,0],[-18,1],[-16,0],[-9,0],[-10,0],[-19,-1],[-13,0],[-14,0],[-14,0],[-8,0],[-7,0],[-12,0],[-12,1],[-11,0],[-9,-1],[-25,0],[-26,1],[-16,-1],[-15,0],[-24,0],[-12,0],[-13,0],[-16,0],[-16,0],[-24,0],[-14,0],[-15,0],[-7,-1],[-7,-1],[-28,1],[-29,1],[-16,-1],[-29,1],[-27,1],[-45,-1],[-15,1],[-15,0],[-39,-1],[-30,1],[-12,0],[-11,0],[-10,1],[-10,0],[-11,0],[-4,0],[-16,-1],[-15,0],[-17,0],[-14,0],[-14,0],[-15,-1],[-11,0],[-10,1],[-19,-1],[-30,0],[-59,1],[-33,2],[-34,1],[-10,0],[-10,-1],[-18,1],[-18,0],[-54,1],[-15,-4],[-10,0],[-10,0],[-11,0],[-13,1],[-19,0],[-7,0],[-6,-1],[-52,-1],[-24,0],[-37,0],[-17,-1],[-9,0],[-9,0],[-32,1]],[[68238,85451],[-31,-1],[-17,1],[-27,-1],[-21,0],[-18,-1],[-20,0],[-24,1],[-29,1],[-15,-1],[-15,0],[-27,0],[-21,2],[-18,-1],[-21,1],[-22,0],[-17,0],[-23,1],[-23,-1],[-19,-1],[-68,1],[-22,0],[-21,1],[-32,0],[-26,0],[-16,0],[-40,-1],[-51,0],[-19,0],[-17,1],[-31,0],[-100,1],[-37,0],[-18,-1],[-36,1],[-27,0],[-17,1],[-29,1],[-76,-2],[-2,0],[-33,1],[-18,0],[-29,0],[-26,1],[-21,0],[-25,0],[-37,0],[-16,0],[-34,0],[-19,0],[-19,0],[-19,0],[-33,0],[-16,-1],[-26,0],[-14,1],[-19,0],[-49,0],[-14,0],[-15,0],[-17,0],[-25,0],[-27,0],[-18,0],[-39,1],[-15,-1],[-29,1],[-34,0],[-5,0],[-42,1],[-19,-1],[-27,1],[-52,-1],[-18,0],[-13,-1],[-17,1],[-23,0],[-24,0],[-79,0],[-21,0],[-30,1],[-47,0],[-30,0],[-23,-1],[-3,0],[-15,0],[-2,0],[-1,0],[-23,1],[-13,-1],[-11,0],[-36,0],[-11,0],[-6,0],[-4,0],[-38,-1],[-60,0],[-5,0],[-15,1],[-64,-1],[-45,0],[-46,0],[-39,0],[-38,-1],[-17,0],[-20,0],[-26,-1],[-34,0],[-45,1],[-41,0],[-22,-1],[-28,1],[-15,0],[-22,1],[-18,0],[-22,-1],[-24,0],[-2,0],[-33,0],[-32,1],[-16,1],[-22,2],[-32,1],[-15,3],[-53,-3],[-44,-2],[-6,-1],[-8,-1],[-1,0],[-19,-1],[-20,0],[-3,0],[-29,0],[-23,0],[-45,-1],[-20,1],[-14,0],[-15,1],[-50,0],[-50,1],[-52,0],[-69,0],[-61,1],[-15,0],[-23,0],[-18,1],[-53,0],[-14,0],[-17,0],[-34,1],[-15,-1],[-26,1],[-32,-1],[-21,0],[-15,0],[-50,1],[-33,0],[-14,0],[-15,0],[-26,0],[-28,0],[-15,0],[-16,1],[-19,0],[-20,1],[-16,0],[-18,0],[-14,0],[-2,0],[-17,1],[-15,0],[-13,0],[-17,0],[-27,0],[-18,0],[-18,1],[-18,0],[-15,0],[-17,0],[-17,1],[-40,0],[-82,2],[-29,0],[-21,0],[-3,0],[-248,1],[-16,0],[-26,0],[-27,-1],[-31,1],[-26,1],[-14,0],[-35,2],[-18,0],[-29,0],[-21,-1],[-18,0],[-46,0],[-18,0],[-37,0],[-29,1],[-92,0],[-31,0]],[[62748,85471],[-1,296],[4,34],[-1,34],[-2,71],[0,61],[-1,63],[0,49],[0,42],[0,23],[1,71],[-1,58],[1,40],[0,121],[0,69],[-1,63],[0,350],[0,60],[0,89],[0,74],[0,71],[0,65],[0,76],[0,47],[0,365],[0,120],[0,323],[0,35],[0,120]],[[62740,99914],[87,2],[38,0],[118,-3],[24,3],[29,0],[20,-1],[14,0],[35,0],[30,0],[14,0],[21,0],[32,-1],[32,0],[65,0],[35,0],[18,0],[31,1],[15,-1],[29,0],[24,0],[33,0],[17,1],[23,-1],[21,1],[30,0],[26,0],[14,0],[23,0],[25,0],[27,0],[29,0],[23,1],[23,-1],[27,0],[21,0],[14,0],[27,0],[59,0],[27,0],[32,0],[24,-1],[36,-1],[45,0],[18,0],[31,0],[55,1],[39,-2],[29,-3],[78,0],[70,-9],[99,-5],[58,-3],[106,-2],[61,-2],[58,1],[175,5],[14,16],[20,0],[28,-1],[16,0],[47,0],[30,0],[65,0],[18,0],[16,-1],[16,0],[19,0],[88,-12],[49,1],[92,1],[1,0],[56,1],[103,1],[97,4],[26,-3],[23,-3],[14,5],[21,1],[16,0],[68,6],[99,3],[14,0],[22,-3],[60,-6],[149,2],[37,0],[69,-1],[15,0],[18,-1],[83,-1],[35,-1],[21,0],[54,-2],[22,0],[294,-5],[130,-2],[17,2],[113,0],[20,2],[34,4],[69,-7],[16,-1],[128,2],[62,0],[33,1],[24,0],[6,0],[9,1],[14,0],[35,-1],[18,3],[3,0],[22,0],[38,1],[26,0],[30,0],[34,0],[35,-1],[14,1],[51,0],[30,0],[73,0],[49,0],[16,-1],[36,0],[37,0],[40,0],[24,0],[34,0],[27,0],[29,0],[15,0],[20,0],[100,0],[22,0],[66,0],[40,-1],[15,0],[16,0],[22,1],[31,0],[24,-1],[39,1],[20,0],[18,0],[48,1],[18,0],[28,-1],[32,0],[16,0],[65,-1],[25,0],[49,0],[33,0],[15,0],[17,0],[19,0],[182,1],[21,0],[31,0],[5,0],[25,-1],[14,0],[19,0],[17,0],[31,0],[34,1],[36,0],[31,0],[8,0],[21,0],[23,0],[40,0],[74,1],[57,0],[32,0],[38,1],[31,0],[186,-2],[38,0],[26,0],[36,0],[64,-1],[30,1],[34,-1],[27,0]],[[25108,99902],[-2,-53],[-4,-40],[2,-51],[-1,-102],[0,-159],[0,-83],[0,-426],[-1,-58],[-1,-211],[-1,-270],[-1,-296],[-1,-193],[-1,-185],[-1,-142],[-1,-37],[-1,-113],[-1,-110],[-2,-47],[0,-47],[0,-96],[0,-43],[0,-97],[0,-42],[0,-102],[0,-51],[0,-83],[0,-108],[0,-65],[0,-31],[0,-46],[0,-121],[0,-60],[1,-94],[-1,-88],[1,-46],[-1,-64],[0,-146],[0,-198],[0,-135],[-1,-173],[-2,-326],[1,-105],[-1,-259],[0,-33],[0,-2],[0,-65],[0,-45],[0,-33],[0,-42],[-1,-58],[0,-33],[-1,-50],[0,-38],[-1,-137],[0,-43],[0,-1],[-2,-481],[-1,-285],[-1,-40],[0,-83],[0,-88],[-1,-47],[0,-65],[0,-58],[0,-40],[0,-63],[-1,-137],[0,-60],[-1,-476],[0,-76],[0,-174],[-1,-36],[0,-49],[0,-77],[0,-69],[0,-94],[0,-105],[0,-67],[0,-34],[0,-38],[0,-36],[0,-43],[0,-33],[0,-20],[0,-36],[0,-63],[0,-17],[0,-16],[-1,-40],[1,-56],[0,-41],[0,-38],[0,-38],[0,-2],[-1,-45],[0,-37],[1,-56],[0,-46],[-1,-89],[1,-35],[1,-49],[2,-36],[0,-344],[-1,-661],[0,-54],[1,-61],[0,-68],[0,-251],[0,-230],[0,-52],[0,-56],[-1,-41],[0,-86],[0,-171],[0,-42],[0,-42],[0,-99],[0,-64],[0,-7],[0,-56],[0,-36],[0,-62],[0,-94],[-4,-63],[4,-33],[0,-201],[-1,-92],[0,-104],[0,-61],[0,-114],[-1,-87],[0,-38],[0,-94],[-1,-127],[1,-45],[-1,-53],[0,-63],[0,-150],[0,-47],[0,-35],[0,-85],[0,-10],[-1,-133],[0,-44],[-1,-57],[0,-106],[0,-45],[0,-104],[-1,-56],[0,-36],[0,-40],[0,-38],[0,-61],[1,-240]],[[25074,85467],[-168,5],[-202,-1],[-117,2],[-6,0],[-32,0],[-38,1],[-273,3],[-43,0],[-48,-2],[-12,0],[-70,2],[-99,3],[-1,0],[-21,1],[-68,2],[-12,0],[-3,1],[-3,0],[-40,-1],[-54,1],[-17,2],[-5,1],[-66,2],[-66,0],[-30,0],[-1,0],[-21,2],[-5,0],[-37,1],[-68,1],[-3,0],[-1,0],[-19,-4],[-18,0],[-30,0],[-25,0],[-27,1],[-131,0],[-16,1],[-27,-1],[-36,0],[-24,1],[-19,0],[-105,0],[-18,0],[-22,0],[-25,0],[-31,1],[-51,0],[-48,0],[-29,0],[-29,1],[-21,0],[-19,-1],[-15,1],[-90,0],[-103,1],[-41,-1],[-61,0],[-3,0],[-44,1],[-14,0],[-59,-1],[-16,0],[-21,0],[-59,0],[-25,0],[-14,0],[-13,0],[-14,0],[-14,0],[-21,0],[-17,0],[-34,-1],[-168,-1],[-6,0],[-252,-10],[-40,2],[-117,5],[-15,3],[-74,1],[-1,0],[-26,0],[-49,1],[-28,0],[-87,0],[-52,1],[-17,0],[-26,0],[-46,-1],[-14,0],[-60,0],[-38,0],[-27,0],[-26,0],[-18,0],[-18,0],[-16,0],[-148,1],[-14,0],[-16,1],[-14,0],[-31,0],[-31,0],[-22,0],[-21,1],[-22,0],[-23,0],[-20,0],[-73,1],[-25,1],[-5,0],[-12,0],[-18,-1],[-32,0],[-116,2],[-46,-1],[-22,1],[-14,-2],[-235,1],[-19,0],[-164,1],[-67,0],[-107,1],[-2,0],[-14,1],[-46,-1],[-7,-1],[-33,0],[-28,4],[-13,1],[-17,0],[-14,0],[-44,-2],[-35,0],[-31,0],[-19,0],[-48,0],[-24,-1],[-14,0],[-17,0],[-31,0],[-83,1],[-25,0],[-38,1],[-46,0],[-24,0],[-29,0],[-23,0],[-30,0],[-16,0],[-112,1],[-31,0],[-65,0],[-122,0],[-15,-1],[-24,1],[-25,0],[-39,-3],[-10,1],[-14,0],[-7,0],[-11,-1],[-26,1],[-43,2],[-1,0],[-83,3],[-14,0],[-14,0],[-5,0],[-69,-1],[-59,0],[-77,-1]],[[17841,85505],[-9,0],[-11,0],[-14,0],[-23,2],[-25,-1],[-63,0],[-45,-1],[-23,0],[-18,1],[-46,-1]],[[17591,99919],[58,0],[14,1],[41,0],[65,-3],[60,2],[197,1],[49,-1],[48,0],[101,0],[108,0],[31,0],[29,0],[20,-1],[36,-1],[20,0],[64,-1],[32,0],[15,-1],[20,2],[45,4],[45,-5],[147,-4],[15,3],[19,1],[15,-1],[21,-1],[20,2],[13,1],[20,-1],[15,1],[19,1],[25,1],[25,-1],[14,0],[21,0],[14,-1],[21,-2],[21,0],[15,0],[22,0],[25,0],[25,0],[28,-1],[21,0],[19,1],[17,0],[23,-3],[15,1],[15,-1],[16,0],[42,1],[15,1],[21,-2],[37,1],[23,-3],[30,-1],[26,2],[16,1],[14,5],[19,-4],[23,0],[19,0],[25,0],[38,0],[24,0],[15,0],[14,0],[18,0],[19,-1],[25,0],[34,0],[21,0],[39,0],[17,0],[15,0],[14,-1],[97,2],[23,-1],[23,0],[20,0],[23,0],[17,0],[16,-1],[20,1],[31,0],[24,0],[13,1],[7,-1],[8,0],[40,0],[22,0],[37,0],[17,1],[7,0],[50,-2],[15,2],[15,5],[15,-8],[19,0],[43,1],[18,0],[21,0],[22,-1],[15,-1],[63,0],[31,0],[36,0],[65,-3],[108,1],[15,5],[16,1],[22,1],[14,-1],[16,1],[16,0],[17,-1],[16,0],[16,-2],[27,-1],[22,1],[19,1],[18,0],[14,0],[246,-4],[26,0],[20,0],[22,3],[22,0],[18,0],[18,1],[14,-3],[14,-1],[21,0],[95,-1],[127,0],[114,0],[118,1],[16,1],[45,3],[18,-1],[18,-1],[19,-2],[25,4],[27,-1],[15,-1],[28,-1],[17,-1],[23,2],[42,0],[25,-1],[23,0],[30,0],[14,0],[28,1],[41,0],[30,0],[27,-1],[27,1],[55,0],[86,-1],[29,0],[36,0],[24,-1],[17,0],[25,1],[55,-1],[26,-1],[45,1],[27,0],[39,0],[84,-2],[37,0],[29,1],[18,0],[52,-1],[46,0],[17,0],[14,1],[20,0],[43,0],[25,0],[70,0],[49,-1],[15,0],[26,0],[45,-1],[24,0],[20,1],[54,-1],[23,0],[49,0],[18,1],[14,0],[15,-2],[21,0],[17,-1],[26,2],[23,0],[16,0],[59,-1],[44,-1],[16,0],[27,0],[59,1],[50,-1],[16,0],[39,0],[26,0],[33,-1],[21,0],[36,3],[21,-2],[82,1],[21,0],[16,0],[29,-1],[17,1],[19,0],[23,0],[66,0],[18,0],[64,-1],[23,0],[30,0],[29,2],[19,-1],[44,0],[16,-2],[21,1],[21,0],[18,0],[36,0],[24,0],[14,0],[17,-1]],[[32511,99911],[-1,-62],[0,-16],[0,-52],[0,-62],[-1,-114],[0,-37],[-1,-138],[-1,-39],[-1,-153],[0,-44],[-1,-87],[0,-38],[0,-84],[0,-37],[1,-381],[-5,-107],[0,-35],[-1,-96],[0,-97],[0,-50],[-1,-40],[0,-117],[0,-35],[-1,-96],[-1,-37],[0,-39],[-2,-319],[0,-33],[-1,-77],[-1,-139],[0,-71],[0,-24],[0,-13],[-1,-93],[-1,-40],[0,-34],[0,-1],[-1,-39],[-1,-63],[0,-49],[0,-47],[-1,-70],[-1,-130],[0,-36],[-1,-232],[1,-51],[-1,-49],[0,-42],[0,-42],[0,-58],[0,-163],[-1,-73],[0,-52],[0,-41],[0,-39],[1,-98],[0,-38],[0,-55],[0,-45],[0,-110],[-1,-97],[0,-149],[0,-55],[0,-32],[1,-155],[0,-47],[0,-117],[0,-75],[0,-55],[0,-18],[0,-26],[0,-44],[1,-246],[0,-42],[0,-41],[0,-2],[0,-129],[-2,-220],[-1,-63],[0,-91],[1,-66],[-1,-56],[0,-62],[0,-41],[0,-83],[-1,-43],[1,-40],[-1,-67],[0,-36],[0,-34],[0,-46],[0,-39],[-1,-86],[0,-52],[1,-61],[-1,-37],[0,-70],[-1,-47],[0,-45],[0,-85],[0,-48],[0,-89],[-1,-93],[0,-43],[-1,-62],[0,-220],[-2,-252],[2,-197],[0,-43],[-3,-262],[0,-55],[-3,-415],[1,-161],[-1,-43],[0,-41],[0,-53],[0,-50],[0,-106],[1,-36],[-1,-43],[0,-63],[0,-38],[1,-46],[2,-43],[0,-64],[0,-2],[-3,-308],[-1,-37],[0,-82],[0,-85],[0,-64],[0,-100],[0,-63],[0,-102],[0,-62],[0,-58],[0,-48],[0,-51],[1,-40],[0,-44],[0,-3],[4,-436],[0,-38],[0,-36],[0,-8],[1,-94],[-1,-89],[-3,-36],[1,-204],[0,-35],[0,-74],[0,-86],[0,-35],[0,-51],[0,-65],[0,-74],[0,-69],[0,-62],[0,-53],[0,-45],[1,-44],[0,-47],[0,-48],[0,-74],[0,-52],[0,-50],[1,-62],[0,-58],[0,-40],[1,-54],[0,-65],[0,-37],[0,-107],[-1,-50],[2,-66],[0,-52],[0,-44],[-1,-51],[0,-38],[0,-36],[-1,-54],[0,-71],[-1,-67],[1,-44],[-1,-84],[1,-38],[0,-46],[0,-76],[-1,-207]],[[32476,85485],[-17,0],[-131,-1],[-83,-1],[-22,0],[-54,0],[-39,0],[-20,-1],[-25,1],[-15,0],[-14,-1],[-35,0],[-32,1],[-24,0],[-14,0],[-18,0],[-85,1],[-32,-1],[-20,1],[-27,-1],[-14,1],[-31,0],[-19,0],[-27,0],[-14,1],[-24,-1],[-16,0],[-20,1],[-18,-1],[-21,1],[-41,0],[-16,-1],[-17,0],[-85,1],[-21,0],[-37,-1],[-26,0],[-23,0],[-32,0],[-20,0],[-25,0],[-20,0],[-23,0],[-23,0],[-44,0],[-18,0],[-15,0],[-15,-16],[-17,9],[-16,6],[-14,1],[-23,0],[-16,0],[-14,0],[-25,0],[-18,-1],[-15,1],[-16,-1],[-24,0],[-26,-1],[-21,0],[-23,-1],[-39,0],[-37,-2],[-29,-1],[-23,-1],[-21,1],[-18,-1],[-60,0],[-24,0],[-17,-1],[-56,-1],[-32,0],[-29,0],[-17,0],[-17,0],[-17,-1],[-38,1],[-19,0],[-32,0],[-13,-1],[-20,0],[-18,-1],[-36,0],[-34,1],[-28,-1],[-17,0],[-15,0],[-19,-1],[-51,1],[-17,-1],[-18,0],[-18,0],[-20,0],[-91,-1],[-31,0],[-17,0],[-41,0],[-26,0],[-16,0],[-49,-1],[-81,-1],[-33,0],[-2,0],[-41,0],[-38,0],[-20,0],[-31,0],[-35,0],[-288,-1],[-37,0],[-90,-2],[-17,0],[-153,2],[-173,0],[-70,0],[-80,-1],[-263,1],[-20,0],[-17,0],[-19,1],[-20,-1],[-14,0],[-20,1],[-13,1],[-15,0],[-33,-3],[-15,1],[-19,0],[-15,1],[-21,0],[-15,0],[-26,0],[-17,1],[-14,0],[-17,0],[-14,1],[-21,-1],[-17,0],[-16,-1],[-48,0],[-38,-1],[-14,0],[-14,0],[-33,0],[-18,0],[-47,0],[-22,0],[-16,1],[-35,0],[-27,0],[-21,0],[-29,0],[-19,-1],[-33,2],[-16,1],[-17,-2],[-17,1],[-28,-2],[-33,1],[-38,-1],[-17,1],[-19,0],[-17,-1],[-19,2],[-16,-1],[-15,0],[-24,1],[-13,-1],[-26,0],[-15,1],[-42,-1],[-62,0],[-19,0],[-16,0],[-14,0],[-17,-1],[-22,1],[-26,0],[-14,0],[-51,4],[-49,-1],[-137,1],[-198,-9],[-170,1],[-84,0],[-92,0],[-41,0],[-13,4],[-14,0],[-15,3],[-15,3],[-80,-5],[-81,0],[-107,-1],[-175,3],[-105,3],[-27,0],[-13,7],[-58,-2]],[[25325,85480],[-160,-6],[-91,-7]],[[25108,99902],[17,1],[21,0],[75,0],[24,0],[15,0],[32,0],[27,0],[23,0],[29,0],[54,0],[15,0],[21,0],[14,0],[32,1],[21,-1],[14,1],[43,-1],[21,0],[26,0],[16,0],[30,1],[44,0],[14,0],[27,0],[20,0],[26,0],[20,0],[58,0],[19,0],[28,0],[17,-1],[16,0],[16,1],[29,-1],[13,1],[14,-1],[20,0],[32,0],[20,0],[37,0],[14,0],[13,-1],[15,0],[19,0],[21,0],[25,0],[43,0],[23,0],[23,0],[21,0],[44,0],[28,0],[15,0],[16,0],[14,0],[15,0],[19,1],[24,0],[29,1],[52,0],[41,2],[49,-4],[23,1],[14,0],[36,0],[131,1],[14,1],[26,0],[15,-1],[16,0],[15,-1],[58,0],[14,0],[21,0],[33,0],[19,0],[22,1],[33,0],[32,0],[21,0],[31,0],[13,0],[29,0],[36,0],[58,0],[14,0],[37,0],[19,0],[17,-1],[26,0],[29,0],[17,0],[13,0],[10,0],[22,1],[27,0],[14,0],[31,-3],[293,5],[66,1],[124,2],[15,-5],[24,0],[13,-3],[48,0],[221,1],[40,1],[23,1],[33,-1],[16,0],[21,0],[35,0],[17,0],[51,0],[40,-1],[17,0],[22,0],[50,0],[24,0],[49,1],[17,1],[77,0],[127,0],[82,-3],[51,-1],[106,0],[43,2],[18,0],[39,1],[17,0],[17,-1],[20,1],[16,0],[19,-1],[53,0],[22,0],[14,-1],[16,0],[20,0],[22,0],[32,-1],[19,0],[18,0],[18,0],[36,0],[22,0],[14,-1],[37,0],[22,-1],[15,0],[17,1],[200,-1],[245,4],[67,1],[17,3],[30,1],[96,-6],[106,-3],[95,7],[44,4],[18,-5],[28,2],[15,1],[20,1],[23,0],[15,-1],[14,0],[17,-1],[19,2],[16,0],[19,0],[25,1],[19,0],[14,0],[16,0],[36,0],[19,0],[30,0],[22,0],[16,0],[22,0],[15,0],[21,0],[16,0],[37,0],[19,0],[19,-1],[18,0],[18,1],[29,0],[41,0],[37,0],[19,0],[16,0],[23,0],[22,0],[30,0],[3,0],[22,0],[39,1],[26,0],[21,0],[16,-1],[25,0],[33,0],[30,0],[20,0],[16,0],[20,1],[47,-1],[26,0],[72,0],[19,0],[17,0],[36,0],[43,0],[39,0],[15,0],[41,1],[18,-1],[25,0],[18,1],[17,0],[17,0],[20,0],[28,0],[15,0],[24,0],[15,1]],[[40002,85507],[-80,0],[-60,0],[-23,-1],[-45,0],[-29,0],[-16,-1],[-128,-1],[-79,0],[-36,0],[-136,0],[-37,1],[-20,0],[-20,-3],[-12,-20],[-35,22],[-25,0],[-30,1],[-53,-1],[-53,0],[-44,0],[-45,-1],[-32,0],[-86,-1],[-50,0],[-18,-1],[-20,1],[-14,-2],[-15,0],[-55,1],[-50,1],[-30,-1],[-80,0],[-14,0],[-32,5],[-141,-3],[-111,-8],[-82,0],[-125,-3],[-179,-7],[-113,0],[-207,8],[-14,0],[-28,0],[-45,0],[-35,0],[-40,-1],[-33,-4],[-14,-3],[-1,-1],[-27,8],[-23,-1],[-20,0],[-21,-5],[-32,-8],[-7,0],[-7,0],[-115,2],[-17,1],[-3,0],[-16,0],[-13,9],[-18,0],[-15,0],[-16,-1],[-40,1],[-35,0],[-47,-1],[-22,0],[-31,0],[-16,-1],[-28,1],[-15,0],[-46,-1],[-30,1],[-24,-1],[-24,0],[-34,0],[-29,0],[-39,0],[-28,0],[-35,-1],[-34,1],[-36,-1],[-29,-1],[-37,1],[-14,0],[-72,0],[-19,-1],[-31,1],[-23,0],[-26,0],[-77,1],[-34,0],[-31,0],[-49,-1],[-29,0],[-14,0],[-23,-1],[-16,0],[-33,-1],[-26,0],[-27,1],[-26,-2],[-18,-1],[-45,0],[-41,-1],[-46,0],[-28,-1],[-30,0],[-52,0],[-22,-1],[-68,0],[-42,1],[-33,1],[-49,0],[-38,-1],[-62,1],[-3,0],[-80,1],[-28,1],[-12,0],[-5,0],[-24,0],[-21,0],[-130,1],[-30,1],[-1,0],[-29,0],[-24,0],[-66,2],[-8,0],[-31,0],[-24,0],[-6,0],[-68,1],[-7,-1],[-14,0],[-88,0],[-16,0],[-18,0],[-25,-1],[-25,1],[-123,-1],[-72,-1],[-21,1],[-26,1],[-44,-1],[-29,0],[-96,0],[-2,0],[-24,-1],[-17,0],[-40,0],[-20,0],[-22,0],[-41,-1],[-24,0],[-20,-1],[-1,0],[-17,1],[-44,2],[-184,-3],[-43,-1],[-36,0],[-53,-1],[-45,-1],[-34,1],[-2,0],[-3,0],[-33,-2],[-41,0],[-28,-1],[-21,1],[-15,1],[-30,0],[-24,0],[-16,-1],[-20,1],[-27,-1],[-35,1],[-99,0],[-89,1],[-15,0]],[[32820,85482],[-67,0],[-177,-1],[-66,5],[-34,-1]],[[32511,99911],[48,-1],[23,1],[58,0],[85,0],[32,0],[15,0],[54,0],[59,0],[47,0],[45,0],[21,0],[51,1],[50,0],[39,0],[17,1],[69,1],[30,0],[28,0],[52,0],[19,-1],[97,0],[39,0],[76,1],[49,-1],[67,1],[36,0],[80,-1],[58,1],[20,0],[38,1],[37,-1],[1,0],[14,0],[19,0],[53,1],[83,1],[24,0],[23,0],[9,0],[9,1],[19,-1],[16,-1],[24,-2],[22,0],[20,0],[66,2],[50,-2],[15,1],[15,0],[15,1],[54,-2],[75,2],[57,2],[37,0],[2,0],[21,0],[14,1],[135,1],[68,1],[15,0],[5,0],[33,0],[25,1],[9,0],[42,1],[2,0],[57,1],[43,0],[15,0],[57,1],[128,-11],[14,5],[1,0],[17,2],[23,-1],[16,1],[18,0],[28,-2],[13,1],[164,-3],[1,0],[32,1],[2,0],[18,-1],[42,1],[130,3],[38,-10],[77,1],[1,0],[146,1],[48,0],[31,0],[32,1],[14,0],[108,-3],[294,1],[42,-1],[33,-2],[14,1],[241,4],[14,2],[34,1],[14,0],[31,-1],[20,0],[27,1],[43,-1],[71,1],[73,0],[61,1],[51,0],[38,0],[29,0],[22,-1],[28,-2],[23,1],[27,3],[27,0],[16,-1],[46,0],[29,-1],[34,0],[25,1],[40,0],[19,0],[27,0],[24,-1],[40,0],[23,1],[52,0],[70,-1],[14,0],[14,0],[56,0],[32,0],[50,0],[16,0],[118,0],[27,-2],[55,0],[50,5],[120,0],[19,0],[16,-1],[37,1],[16,0],[14,0],[20,0],[26,-1],[34,1],[31,1],[25,-1],[32,0],[32,-1],[58,0],[29,1],[111,0],[104,1],[15,0],[54,1],[28,0],[32,0],[22,1],[84,-1],[5,0],[37,0],[97,-1],[110,0],[44,0],[16,4],[38,1],[17,0],[81,1],[34,0],[24,1],[40,0]],[[77880,99878],[0,-29],[0,-36],[3,-94],[0,-4],[-4,-28],[0,-51],[0,-39],[0,-115],[0,-37],[0,-40],[0,-47],[0,-38],[0,-42],[-1,-167],[0,-43],[0,-38],[0,-38],[0,-63],[0,-74],[0,-37],[1,-53],[-1,-154],[0,-41],[-1,-132],[1,-102],[-1,-109],[0,-1],[0,-513],[0,-42],[0,-42],[2,-39],[-1,-34],[-1,-39],[0,-37],[0,-34],[-1,-53],[1,-62],[0,-122],[0,-52],[0,-63],[0,-34],[-1,-64],[0,-102],[1,-129],[-1,-79],[0,-67],[1,-33],[-1,-81],[0,-52],[0,-37],[0,-47],[0,-205],[0,-36],[0,-47],[0,-40],[-1,-72],[0,-178],[0,-67],[0,-26],[1,-61],[1,-81],[-1,-171],[0,-33],[0,-1],[-1,-125],[1,-181],[0,-38],[0,-38],[-1,-155],[0,-87],[0,-139],[0,-6],[1,-217],[-1,-38],[0,-118],[0,-61],[0,-44],[0,-92],[0,-49],[0,-65],[0,-69],[0,-206],[0,-45],[0,-52],[0,-42],[0,-41],[0,-53],[0,-245],[0,-124],[0,-41],[0,-41],[0,-44],[0,-35],[0,-102],[0,-55],[0,-36],[0,-266],[0,-62],[-1,-49],[1,-43],[0,-49],[0,-50],[0,-74],[0,-34],[0,-109],[0,-48],[0,-57],[-1,-43],[1,-81],[-1,-67],[0,-96],[0,-55],[0,-47],[0,-39],[0,-51],[1,-150],[0,-42],[0,-45],[0,-44],[-1,-72],[0,-128],[0,-85],[0,-42],[0,-2],[-1,-75],[1,-58],[0,-46],[0,-48],[0,-38],[0,-41],[-1,-107],[0,-45],[0,-55],[0,-4],[1,-78],[0,-61],[0,-55],[0,-39],[0,-41],[1,-136],[0,-50],[0,-58],[0,-43],[0,-75],[0,-46],[0,-39],[0,-55],[0,-43],[0,-53],[-1,-51],[0,-66],[0,-44],[0,-69],[0,-37],[0,-66],[0,-43],[0,-89],[0,-34],[0,-49],[0,-41],[0,-38],[0,-116],[0,-75],[0,-197],[0,-90],[0,-163],[0,-85],[1,-164],[0,-47],[0,-65],[1,-131],[0,-76],[0,-37],[0,-33],[0,-91],[1,-75],[-1,-50],[-2,-40],[3,-41],[0,-83],[1,-137],[2,-36],[-2,-53],[0,-42],[0,-34],[1,-68],[0,-67],[0,-34],[0,-37],[0,-52],[0,-34],[0,-61],[0,-153],[1,-87],[1,-242],[0,-35],[1,-71],[0,-133],[1,-241]],[[77883,85445],[-22,0],[-10,0],[-9,-1],[-18,1],[-41,0],[-29,0],[-9,0],[-9,0],[-10,-1],[-8,0],[-16,0],[-16,0],[-14,0],[-14,0],[-26,1],[-251,0],[-21,0],[-14,1],[-20,0],[-1,0],[-8,-1],[-8,0],[-17,0],[-17,0],[-34,1],[-24,0],[-16,0],[-16,-1],[-2,0],[-19,0],[-45,0],[-8,0],[-7,1],[-14,0],[-16,0],[-19,0],[-19,-1],[-24,0],[-18,1],[-17,1],[-19,-1],[-36,-1],[-11,1],[-13,0],[-29,0],[-10,-1],[-10,0],[-32,0],[-27,1],[-18,-1],[-34,-1],[-20,0],[-12,1],[-14,0],[-10,0],[-8,-1],[-15,1],[-31,0],[-14,-1],[-8,0],[-8,1],[-39,0],[-21,-1],[-45,0],[-8,0],[-7,0],[-17,-1],[-17,0],[-15,0],[-15,0],[-38,0],[-35,0],[-25,-1],[-27,-1],[-20,0],[-20,0],[-16,1],[-19,0],[-16,0],[-16,0],[-30,0],[-31,0],[-34,0],[-14,0],[-13,0],[-16,0],[-15,-1],[-37,1],[-17,0],[-17,0],[-13,0],[-12,-1],[-11,-1],[-10,-2],[-14,2],[-15,2],[-3,0],[-25,-6],[-13,3],[-12,3],[-11,0],[-12,0],[-13,0],[-11,-1],[-16,-1],[-33,-1],[-30,1],[-13,0],[-14,-1],[-25,1],[-12,0],[-12,-1],[-1,0],[-140,1],[-151,1],[-25,0],[-23,0],[-35,0],[-132,-2],[-29,-1],[-24,1],[-37,0],[-15,0],[-17,0],[-32,0],[-35,0],[-15,-1],[-44,1],[-62,2],[-101,-1],[-96,-1],[-6,0],[-7,1],[-16,0],[-15,-1],[-9,1],[-10,0],[-8,0],[-9,0],[-32,0],[-7,0],[-7,0],[-23,0],[-8,-1],[-7,0],[-14,1],[-8,1],[-10,0],[-13,-1],[-15,-2],[-16,0],[-19,0],[-7,0],[-7,0],[-9,0],[-9,-1],[-17,2],[-19,1],[-17,0],[-49,0],[-49,0],[-9,0],[-9,1],[-19,0],[-9,1],[-8,0],[-9,0],[-9,1],[-30,0],[-56,2],[-9,-1],[-9,-2],[-8,1],[-8,0],[-22,1],[-36,-1],[-28,1],[-14,0],[-13,-1],[-46,1],[-18,-1],[-20,1],[-20,0],[-18,1],[-14,1],[-37,1],[-39,0],[-50,0],[-47,1],[-83,-1],[-3,0],[-11,1],[-14,0],[-36,0],[-7,0],[-7,0],[-7,0],[-41,0],[-36,1],[-7,0],[-16,0]],[[73290,85449],[-13,-1],[-14,0],[-59,-2],[-15,-1],[-17,0],[-29,0],[-177,0],[-186,-1],[-73,-1],[-18,1],[-17,0],[-30,1],[-31,2],[-37,0],[-36,0],[-24,0],[-25,1],[-38,-12],[-57,9],[-49,7],[-35,-1],[-35,-2],[-9,1],[-8,1],[-22,1],[-15,-1],[-11,0],[-11,0],[-15,0],[-14,0],[-10,0],[-9,1],[-16,0],[-17,0],[-13,0],[-12,-1],[-31,5],[-15,-2],[-15,-2],[-9,0],[-8,0],[-40,-1],[-8,-1],[-9,-1],[-18,1],[-32,2],[-30,1],[-91,4],[-33,-1],[-16,-1],[-16,-1],[-32,-1],[-31,-1],[-13,0],[-13,1],[-9,0],[-8,0],[-14,4],[-73,-5],[-38,2],[-11,0],[-12,-1],[-14,1],[-11,0],[-10,0],[-7,0],[-7,0],[-17,0],[-17,1],[-8,-1],[-6,-1],[-14,-1],[-15,0],[-16,1],[-8,0],[-9,1],[-17,0],[-10,0],[-11,0],[-21,-1],[-18,0],[-17,1],[-26,-1],[-15,0],[-16,1],[-8,-1],[-9,0],[-9,0],[-10,0],[-22,0],[-11,0],[-10,0],[-32,-1],[-15,1],[-22,1],[-10,-1],[-2,0],[-9,0],[-28,0],[-27,0],[-26,0],[-15,0],[-14,0],[-15,0],[-18,-1],[-18,0],[-18,0],[-8,0],[-9,1],[-20,-1],[-15,0],[-27,0],[-23,0],[-23,-1],[-26,0],[-25,0],[-13,1],[-30,-1],[-12,0],[-12,0],[-10,0],[-9,0],[-11,-1],[-11,-1],[-16,1],[-9,0],[-9,-1],[-15,0],[-20,1],[-26,-1],[-9,1],[-10,1],[-9,0],[-9,0],[-7,0],[-7,0],[-8,0],[-8,1],[-18,0],[-9,0],[-9,0],[-25,0],[-24,0]],[[70289,99898],[30,0],[27,-1],[18,0],[41,0],[35,0],[20,1],[26,0],[18,0],[15,0],[14,0],[44,0],[207,-2],[31,0],[16,0],[72,0],[25,-1],[26,0],[15,1],[52,0],[14,0],[18,0],[19,0],[19,0],[54,1],[36,-1],[68,0],[29,0],[18,1],[24,0],[16,0],[31,1],[22,-1],[15,1],[24,0],[16,1],[17,1],[49,-1],[18,1],[14,0],[21,0],[15,-1],[26,-1],[21,-1],[57,-2],[46,-1],[36,0],[21,0],[20,0],[17,-1],[19,0],[27,0],[61,0],[34,0],[28,1],[15,0],[18,0],[26,0],[27,-1],[17,0],[21,0],[44,0],[32,0],[44,1],[42,-1],[34,0],[1,0],[23,0],[27,-1],[34,1],[16,0],[24,-1],[35,1],[58,-1],[67,-1],[14,0],[27,0],[28,1],[37,-1],[31,1],[17,0],[19,-8],[14,-1],[16,-1],[14,-1],[31,-1],[21,1],[33,3],[13,2],[16,3],[28,-1],[22,1],[48,-11],[2,0],[62,1],[18,0],[16,0],[67,1],[42,0],[52,1],[13,5],[15,1],[25,0],[14,1],[89,-4],[91,-1],[59,3],[20,0],[41,1],[30,-1],[55,0],[38,0],[23,0],[14,-1],[41,0],[57,-7],[44,1],[23,2],[23,2],[24,2],[14,-1],[76,-1],[59,0],[17,0],[20,0],[25,0],[16,0],[31,0],[23,-1],[50,1],[20,0],[48,0],[21,0],[80,0],[18,0],[18,0],[21,-1],[24,0],[16,0],[14,0],[59,0],[27,1],[14,-1],[19,1],[22,-1],[25,0],[22,1],[15,-1],[35,1],[21,0],[22,0],[103,-1],[25,1],[15,0],[18,-1],[27,0],[13,0],[62,1],[34,-1],[38,1],[34,-1],[58,1],[27,-1],[27,0],[18,0],[21,0],[23,0],[18,0],[20,0],[16,0],[37,0],[15,0],[17,0],[31,0],[19,0],[36,0],[30,-1],[33,1],[24,-1],[16,0],[103,1],[48,0],[24,-1],[59,0],[35,0],[22,0],[24,0],[42,0],[120,0],[14,0],[46,0],[24,0],[17,0],[20,-1],[18,0],[28,0],[34,0],[38,0],[14,0],[22,-1],[26,0],[64,0],[23,0],[22,2],[16,-1],[25,0],[52,-1],[24,0],[15,1],[48,-1],[28,0],[15,0],[17,0],[27,-1],[26,0],[27,-1],[14,0],[15,-4],[21,-4],[25,8],[17,-1],[19,1],[18,1],[15,0],[79,-1],[36,1],[88,-1],[35,1],[15,0],[19,-1],[15,0],[28,0],[27,0],[77,0],[39,1],[20,0],[25,0],[23,0],[48,0],[57,0],[22,0],[15,-8],[14,-1],[15,4],[14,4],[8,0],[9,0],[31,1]],[[89930,99849],[-1,-413],[0,-53],[0,-159],[0,-159],[0,-44],[1,-307],[1,-199],[0,-44],[1,-481],[0,-240],[2,-425],[-1,-85],[1,-217],[-1,-396],[0,-87],[-1,-240],[0,-234],[-1,-174],[0,-45],[0,-149],[0,-128],[0,-477],[1,-343],[0,-144],[0,-115],[-1,-121],[-1,-244],[1,-485],[-1,-241],[2,-241],[1,-249],[0,-56],[0,-27],[0,-14],[-1,-125],[0,-37],[0,-116],[0,-246],[1,-76],[0,-37],[0,-42],[0,-107],[0,-80],[0,-39],[0,-53],[0,-82],[0,-62],[0,-164],[0,-89],[1,-232],[0,-45],[-1,-88],[2,-50],[-1,-60],[0,-132],[-1,-110],[0,-108],[0,-184],[0,-190],[0,-114],[0,-367],[-1,-337],[-1,-149],[0,-482],[1,-78],[-1,-62],[1,-34],[-1,-311]],[[89931,88325],[-243,1],[-8,0],[-47,0],[-16,0],[-19,0],[-18,0],[-37,0],[-87,-1],[-29,0],[-252,-1],[-184,-1],[-69,0],[-75,-3],[-178,2],[-36,1],[-16,4],[-16,1],[-56,-7],[-119,1],[-120,-1],[-132,-2],[-212,2],[-19,0],[-14,0],[-148,-3],[-40,1],[-46,0],[-83,1],[-95,1],[-8,0],[-82,0],[-72,0],[-4,0],[-39,0],[-25,1],[-50,1],[-72,3],[-36,0],[-18,0],[-186,0]],[[86925,88326],[-40,0],[-24,0],[-61,0],[-126,0],[-252,-1],[-27,0],[-79,-3],[-19,0],[-67,-1],[-59,-1],[-45,0],[-20,0],[-133,4],[-22,1],[-15,0],[-19,1],[-246,3],[-249,-2],[-127,2],[-126,1],[-251,3],[-71,0],[-89,1],[-30,0],[-34,-2],[-19,0],[-23,0],[-53,-1],[-168,-5],[-23,0],[-122,1],[-145,1],[-19,0],[-209,-2]],[[83913,88326],[0,45],[0,52],[0,70],[0,56],[0,38],[0,162],[0,44],[1,40],[0,43],[0,99],[0,50],[0,139],[-1,25],[0,105],[0,54],[1,124],[0,58],[0,53],[0,43],[0,39],[1,108],[0,91],[0,70],[0,72],[-1,47],[0,77],[0,98],[1,54],[0,110],[0,56],[-1,51],[0,57],[0,72],[0,40],[0,42],[0,62],[0,50],[0,44],[0,86],[0,34],[0,100],[0,85],[-1,50],[0,44],[0,65],[-1,56],[0,15],[1,162],[0,66],[0,35],[-1,36],[1,34],[0,35],[-1,106],[1,35],[2,88],[-1,8],[-2,30],[0,35],[0,36],[1,75],[0,45],[0,37],[0,72],[0,41],[0,45],[1,150],[0,40],[0,51],[0,61],[0,43],[0,61],[0,62],[0,36],[0,68],[1,41],[0,41],[0,68],[0,40],[0,69],[0,79],[0,71],[0,49],[0,93],[1,99],[0,86],[0,346],[0,54],[0,54],[1,166],[0,110],[0,84],[0,42],[0,16],[0,17],[0,19],[1,118],[0,241],[1,77],[0,44],[0,58],[0,44],[1,35],[0,46],[0,44],[0,36],[0,49],[0,53],[0,50],[1,48],[0,66],[0,52],[0,36],[0,56],[0,36],[0,46],[0,38],[1,87],[-1,39],[1,72],[0,60],[0,39],[0,37],[0,54],[0,52],[0,49],[0,62],[1,47],[0,39],[-1,39],[0,52],[0,55],[0,40],[0,42],[1,10],[0,35],[0,62],[-1,39],[1,55],[0,52],[0,45],[0,49],[0,60],[0,61],[0,34],[0,102],[0,59],[0,45],[1,38],[0,34],[-1,70],[1,54],[-1,50],[1,44],[0,40],[0,50],[0,47],[0,60],[0,51],[0,48],[0,85],[0,53],[0,115],[0,37],[-1,40],[0,57],[0,19],[0,51],[0,49],[-1,35],[0,3],[0,41],[-1,173],[0,42],[0,60],[0,67],[0,42],[0,35],[0,36],[0,13],[3,289],[0,91],[0,43],[0,98],[1,77],[-1,54],[0,38],[0,36],[0,15]],[[83924,99864],[38,-1],[21,0],[80,0],[36,1],[20,0],[16,0],[56,-1],[16,1],[43,-1],[34,0],[68,1],[87,0],[37,0],[41,0],[15,0],[105,-1],[13,1],[22,0],[23,0],[19,0],[15,0],[22,0],[13,0],[30,0],[28,0],[21,0],[47,-1],[16,0],[18,1],[31,-1],[17,0],[19,-1],[64,0],[16,0],[21,0],[104,-1],[14,1],[26,-1],[78,0],[23,0],[22,-1],[22,1],[15,-1],[30,0],[13,0],[17,0],[27,0],[27,0],[72,0],[26,0],[23,0],[27,0],[15,0],[15,0],[91,0],[15,1],[14,3],[17,-3],[17,-2],[45,0],[25,0],[26,0],[18,0],[16,0],[23,0],[14,0],[21,0],[42,-1],[9,1],[8,0],[21,-1],[16,0],[39,1],[43,-1],[36,1],[101,-2],[46,1],[27,0],[22,0],[22,0],[32,-1],[5,0],[20,0],[141,0],[22,1],[18,-1],[66,-1],[49,1],[47,-1],[10,0],[13,1],[19,0],[8,0],[11,0],[21,0],[25,0],[24,-1],[30,0],[39,0],[25,0],[24,-1],[52,0],[21,0],[33,1],[17,-6],[15,5],[29,0],[19,0],[50,-1],[61,1],[17,0],[26,-1],[27,0],[18,-1],[15,1],[19,0],[54,0],[23,-1],[31,0],[25,0],[29,0],[34,0],[38,0],[41,0],[21,0],[50,0],[24,0],[17,0],[23,0],[18,-1],[38,0],[20,-1],[26,0],[22,0],[24,0],[54,0],[36,-1],[19,-1],[19,0],[19,0],[17,0],[6,0],[14,0],[58,11],[37,-1],[17,0],[43,-1],[182,-2],[15,0],[18,0],[21,-1],[79,-1],[25,0],[68,-1],[78,1],[14,0],[101,1],[21,0],[71,1],[19,0],[4,0],[72,0],[14,0],[227,-7],[46,0],[19,0],[23,-1],[38,-1],[25,0],[20,0],[16,0],[24,2],[107,0],[5,0],[38,0],[38,0],[75,0]],[[83913,88326],[0,-126],[0,-96],[0,-45],[0,-106],[2,-35],[-1,-39],[-1,-34],[0,-242],[0,-46],[-1,-79],[0,-40],[0,-27],[0,-12],[0,-34],[-1,-54],[0,-35],[1,-42],[0,-2],[-1,-140],[0,-54],[0,-44],[0,-45],[0,-34],[0,-35],[-1,-70],[0,-42],[0,-62],[0,-70],[0,-45],[0,-73],[0,-103],[0,-62],[0,-105],[0,-48],[0,-37],[0,-113],[0,-60],[0,-52],[-2,-96],[2,-34],[0,-81],[0,-63],[0,-77],[0,-134],[-23,-17],[-27,0],[-21,-2],[-32,2],[-102,0],[-34,-1],[-16,0],[-20,0],[-19,-1],[-16,1],[-30,-1],[-15,0],[-18,1],[-28,0],[-44,-1],[-23,1],[-26,0],[-49,0],[-44,-1],[-48,1],[-41,0],[-18,1],[-17,-1],[-16,0],[-3,0],[-22,0],[-22,1],[-25,0],[-55,0],[-26,0],[-54,0],[-29,-1],[-40,1],[-14,0],[-41,0],[-60,0],[-17,1],[-16,0],[-26,0],[-25,0],[-15,-1],[-2,0],[-36,0],[-19,0],[-28,1],[-18,-1],[-18,0],[-29,0],[-17,0],[-26,0],[-24,0],[-23,0],[-18,0],[-15,1],[-16,-1],[-16,0],[-25,1],[-32,-1],[-47,0],[-15,0],[-24,0],[-33,0],[-30,0],[-20,-1],[-16,0],[-31,1],[-22,1],[-22,-1],[-19,0],[-19,0],[-45,0],[-34,1],[-18,0],[-36,0],[-36,0],[-26,0],[-36,0],[-35,1],[-17,-1],[-27,0],[-37,1],[-13,0],[-27,1],[-3,0],[-13,-1],[-46,1],[-3,0],[-56,0],[-14,0],[-19,0],[-93,0],[-44,0],[-51,0],[-33,0],[-49,0],[-29,0],[-45,1],[-46,0],[-17,0],[-26,0],[-24,0],[-14,1],[-15,0],[-19,-1],[-26,1],[-17,-1],[-18,0],[-21,1],[-15,0],[-31,0],[-45,0],[-20,0],[-43,0],[-14,0],[-16,0],[-15,-1],[-40,0],[-17,3],[-45,-2]],[[80604,85441],[-18,3],[-13,-1],[-8,0],[-8,0],[-11,0],[-11,0],[-20,0],[-39,0],[-5,0],[-9,0],[-9,0],[-11,0],[-9,-1],[-3,0],[-12,0],[-16,0],[-13,0],[-13,0],[-11,0],[-10,1],[-10,0],[-10,0],[-8,-1],[-7,0],[-37,0],[-14,0],[-21,1],[-16,-1],[-29,0],[-31,1],[-8,-1],[-7,-1],[-8,-1],[-8,-1],[-7,1],[-7,2],[-28,0],[-18,0],[-17,0],[-15,0],[-17,1],[-37,-1],[-17,-1],[-24,1],[-28,-1],[-18,0],[-8,0],[-8,1],[-15,0],[-32,0],[-11,0],[-11,0],[-18,2],[-19,0],[-18,0],[-21,0],[-24,-1],[-24,1],[-12,0],[-13,0],[-15,0],[-13,0],[-8,0],[-9,0],[-21,0],[-22,0],[-38,1],[-36,1],[-12,0],[-12,0],[-43,1],[-42,-1],[-21,-1],[-14,0],[-100,1],[-15,0],[-14,0],[-23,-1],[-32,0],[-45,0],[-10,-1],[-11,0],[-17,0],[-17,1],[-31,0],[-16,0],[-16,0],[-15,0],[-14,0],[-37,0],[-39,0],[-17,-1],[-16,0],[-37,0],[-39,1],[-43,-1],[-31,0],[-23,0],[-21,1],[-28,0],[-25,-1],[-10,0],[-11,0],[-7,0],[-7,0],[-33,-1],[-11,0],[-11,0],[-9,0],[-8,0],[-7,0],[-8,0],[-21,0],[-21,0],[-20,0],[-18,0],[-10,0],[-10,0],[-30,0],[-18,0],[-12,0],[-12,0],[-8,0],[-9,0],[-14,0],[-12,0],[-21,1],[-20,0],[-17,0],[-20,5],[-10,-1],[-9,0],[-9,0],[-7,-1],[-8,0],[-9,-1],[-2,0],[-7,-1],[-9,-2],[-13,0],[-13,-1],[-19,1],[-17,1],[-15,1],[-19,-1],[-13,0],[-13,1],[-7,-1],[-7,0],[-24,1],[-10,0],[-10,0],[-15,-1],[-17,0],[-15,1],[-11,0],[-11,0],[-19,0]],[[77880,99878],[20,1],[15,0],[15,0],[20,1],[25,0],[28,-1],[30,-2],[54,0],[1,0],[46,0],[15,0],[18,0],[15,0],[19,-1],[14,0],[32,0],[135,1],[32,0],[53,0],[31,-1],[21,0],[26,1],[28,0],[22,0],[22,-1],[21,0],[29,0],[17,0],[16,1],[17,-1],[18,0],[17,0],[17,0],[27,0],[17,0],[28,-1],[23,0],[15,0],[20,-1],[16,0],[18,1],[31,-1],[14,0],[14,0],[17,0],[95,-8],[9,-1],[282,-2],[15,11],[15,0],[30,0],[36,0],[98,-1],[18,0],[14,0],[56,0],[36,0],[42,0],[39,-1],[86,0],[51,1],[31,0],[17,0],[14,-1],[137,-2],[131,2],[26,0],[18,0],[88,1],[16,0],[10,0],[76,0],[41,-1],[18,0],[24,0],[3,0],[166,0],[18,0],[17,0],[39,-1],[40,0],[27,0],[54,-1],[21,0],[15,0],[20,1],[58,-1],[29,0],[10,0],[29,0],[15,0],[56,0],[118,-2],[80,0],[14,0],[41,0],[20,1],[26,0],[28,0],[2,0],[26,-1],[24,0],[42,0],[14,1],[14,-1],[56,0],[17,-1],[50,1],[32,-1],[42,1],[23,-1],[14,0],[13,0],[32,0],[30,0],[18,0],[24,0],[19,0],[16,0],[21,0],[247,1],[106,1],[56,0],[130,0],[47,-1],[15,0],[104,-2],[104,6],[101,-2],[56,0],[140,-4],[14,0],[27,0],[17,0],[27,0],[17,0],[16,-1],[21,1],[16,-1],[15,0],[16,1],[24,0],[17,0],[18,0],[15,-1],[48,0],[17,1],[31,-1],[56,1],[29,-1],[37,-1],[35,1],[22,0],[28,0],[43,-1],[25,1],[1,0],[14,-1],[21,0],[26,0],[35,0],[39,0]],[[93747,87348],[-8,0],[-18,0],[-7,0],[-48,0],[-126,1],[-161,2],[-25,0],[-23,0],[-116,1],[-25,0],[-37,1],[-16,0],[0,44],[4,38],[5,6],[31,43],[5,35],[-3,8],[-11,33],[-6,60],[0,58],[-5,36],[-20,25],[-19,12],[-44,15],[-3,1],[-16,4],[-15,24],[-14,39],[-21,43],[-8,27],[-7,31],[-8,41],[-13,31],[-16,2],[-4,-41],[-5,-44],[-3,37],[0,110],[0,240],[-121,2],[-14,10],[-59,-1],[-117,-1],[-36,-1],[-180,-2],[-33,0],[-140,-1],[-49,0],[-18,0],[-12,1],[-63,1],[-17,0],[-22,0],[-140,3],[-101,0],[-114,1],[-20,2],[-221,0],[-26,0],[-236,1],[-7,0],[-27,0],[-25,0],[-160,-2],[-43,1],[-259,1],[-253,-1],[-57,-1],[-22,-1],[-173,5],[-100,1],[-145,-4]],[[89930,99849],[110,0],[5,0],[23,0],[42,0],[59,0],[153,0],[14,0],[17,0],[2,-35],[-1,-63],[-2,-61],[0,-48],[3,-45],[5,-60],[9,-50],[13,-37],[3,-7],[1,-2],[22,-56],[11,-27],[12,-29],[13,-25],[15,-17],[17,-18],[48,-68],[78,-92],[55,-55],[23,-20],[32,-28],[24,-20],[67,-63],[32,-36],[20,-33],[13,-21],[7,-18],[41,-104],[8,-25],[7,-17],[7,-19],[37,-109],[27,-91],[18,-60],[12,-39],[13,-33],[21,-48],[32,-59],[21,-45],[12,-23],[18,-18],[13,-13],[34,-41],[11,-10],[10,-11],[33,-29],[40,-23],[22,-11],[6,-1],[21,-2],[48,-2],[46,8],[3,0],[75,11],[4,0],[18,3],[21,-8],[9,-3],[21,-5],[23,-15],[13,-10],[27,-29],[26,-27],[13,-21],[19,-14],[14,-13],[13,-16],[13,-21],[17,-59],[13,-48],[12,-51],[1,-8],[2,-36],[4,-62],[1,-64],[-2,-72],[-4,-48],[-6,-49],[-6,-52],[-7,-39],[-7,-32],[-8,-38],[-9,-34],[-6,-32],[-7,-29],[-6,-37],[-4,-36],[0,-2],[-1,-14],[-1,-19],[-1,-72],[1,-43],[6,-43],[19,-57],[12,-31],[20,-52],[15,-20],[14,-18],[26,-27],[21,-20],[33,-27],[34,-16],[23,-8],[29,1],[19,1],[35,-1],[27,0],[26,2],[24,9],[25,16],[46,41],[40,37],[38,43],[8,9],[28,28],[29,28],[17,13],[26,11],[9,4],[23,0],[19,-5],[1,0],[7,-2],[14,-8],[22,-12],[23,-16],[27,-30],[21,-29],[12,-28],[18,-47],[12,-67],[5,-63],[1,-86],[-3,-57],[-1,-4],[-2,-33],[-4,-53],[-2,-54],[2,-53],[5,-52],[2,-10],[6,-39],[1,-3],[5,-29],[5,-26],[11,-43],[12,-36],[17,-36],[2,-5],[16,-34],[32,-49],[27,-31],[18,-15],[16,-16],[27,-28],[39,-27],[22,-16],[44,-25],[52,-24],[2,-1],[65,-32],[15,-8],[26,-12],[33,-21],[56,-47],[73,-72],[63,-65],[19,-16],[32,-20],[16,-9],[21,-12],[46,-6],[5,1],[49,4],[53,11],[14,3],[87,19],[43,10],[30,7],[54,14],[31,11],[23,8],[77,11],[62,4],[59,24],[36,42],[40,51],[37,60],[19,46],[24,115],[9,57],[4,70],[-1,35],[-5,79],[-3,38],[-1,16],[-1,55],[0,40],[1,14],[2,32],[7,52],[6,27],[3,12],[2,11],[9,28],[10,26],[13,33],[11,33],[1,3],[14,46],[18,36],[17,26],[4,5],[11,15],[18,19],[21,18],[4,3],[26,11],[17,5],[20,5],[7,0],[15,0],[20,-1],[20,-5],[18,-8],[15,-9],[15,-10],[35,-17],[27,-20],[30,-19],[21,-16],[20,-14],[18,-9],[26,-12],[27,5],[17,4],[5,1],[23,6],[6,2],[21,8],[25,10],[26,14],[34,23],[35,22],[25,17],[40,25],[6,3],[27,18],[26,9],[29,9],[20,-2],[21,-6],[9,-4],[10,-3],[8,-3],[5,-3],[20,-11],[10,-6],[30,-23],[34,-25],[39,-32],[5,-5],[39,-42],[42,-51],[15,-20],[5,-7],[20,-33],[12,-28],[4,-10],[8,-18],[18,-39],[4,-11],[20,-47],[22,-88],[7,-71],[2,-66],[0,-57],[-8,-81],[-9,-49],[-8,-31],[-11,-38],[-13,-37],[-16,-36],[-18,-35],[-10,-21],[-30,-50],[-12,-23],[-19,-38],[-13,-37],[-14,-51],[-8,-35],[-4,-20],[-5,-23],[-5,-33],[-4,-53],[-1,-34],[2,-44],[4,-38],[8,-38],[15,-60],[10,-32],[13,-35],[11,-27],[19,-34],[15,-25],[30,-56],[11,-19],[23,-45],[29,-55],[32,-60],[33,-55],[22,-29],[29,-37],[25,-38],[15,-13],[69,-48],[11,-4],[14,-5],[62,-15],[29,-4],[24,3],[17,4],[17,5],[6,2],[14,4],[22,1],[5,0],[15,-1],[20,-1],[30,-5],[47,-37],[13,-21],[15,-21],[28,-52],[12,-23],[3,-5],[8,-17],[32,-80],[9,-34],[9,-34],[5,-42],[1,-4],[3,-28],[1,-54],[1,-42],[3,-62],[0,-9],[2,-52],[1,-39],[1,-39],[-4,-196],[-5,-42],[-5,-30],[0,-2],[-9,-52],[-40,-189],[-2,-7],[-6,-22],[-10,-31],[-12,-25],[0,-1],[-12,-26],[-12,-18],[-12,-14],[-13,-18],[-20,-21],[-18,-18],[-15,-14],[-21,-11],[-15,-6],[-16,-2],[-19,-3],[-22,-5],[-26,-7],[-35,-2],[-37,-3],[-46,0],[-45,-3],[-30,0],[-33,0],[-30,3],[-14,1],[-15,-5],[-14,2],[-26,-7],[-17,-4],[-18,-9],[-17,-13],[-18,-18],[-13,-17],[-11,-17],[-13,-21],[-15,-24],[-17,-40],[-13,-46],[-5,-36],[-3,-48],[-2,-37],[-1,-38],[3,-40],[3,-45],[3,-39],[8,-47],[12,-51],[18,-28],[11,-29],[11,-20],[14,-21],[9,-26],[13,-24],[14,-25],[15,-26],[16,-25],[15,-23],[18,-28],[14,-22],[16,-24],[15,-18],[13,-18],[13,-16],[13,-12],[14,-14],[20,-17],[14,-12],[18,-5],[17,2],[14,2],[15,3],[17,1],[16,6],[15,6],[15,10],[13,11],[13,11],[16,13],[14,12],[13,15],[14,19],[13,15],[11,17],[12,18],[16,27],[14,-4],[13,24],[91,158],[19,25],[24,19],[24,14],[20,7],[15,5],[26,8],[23,6],[8,3],[8,4],[24,-1],[34,-40],[26,-54],[28,-94],[7,-30],[26,-112],[5,-81],[4,-66],[13,-147],[-2,-13],[-16,-139],[-5,-30],[-1,-7],[-7,-44],[-5,-63],[-14,-100],[-28,-85],[-3,-34],[-36,-85],[-32,-48],[-12,-26],[-50,-89],[-12,-21],[-43,-49],[-33,-38],[-22,-21],[-16,-15],[-102,-63],[-88,-24],[-20,-4],[-16,0],[-21,5],[-19,10],[-14,8],[-14,7],[-23,10],[-19,11],[-20,15],[-20,14],[-18,15],[-16,14],[-15,15],[-15,14],[-15,17],[-10,14],[-9,13],[-17,21],[-19,26],[-22,30],[-20,28],[-20,26],[-12,20],[-14,19],[-16,24],[-12,20],[-14,24],[-6,10],[-10,17],[-13,22],[-14,25],[-14,25],[-16,26],[-16,24],[-19,24],[-14,17],[-10,31],[-22,11],[-16,20],[-18,16],[-15,12],[-13,10],[-18,8],[-14,4],[-17,4],[-21,1],[-15,-3],[-18,-12],[-13,-16],[-17,-22],[-7,-12],[-8,-11],[-13,-20],[-13,-21],[-15,-25],[-14,-26],[-14,-26],[-3,-7],[-11,-28],[-9,-28],[-11,-39],[-8,-27],[-12,-37],[-8,-27],[-11,-36],[-5,-19],[-5,-17],[-2,-15],[0,-2],[-3,-18],[-4,-39],[-2,-42],[-1,-42],[0,-41],[2,-38],[1,-61],[5,-63],[3,-50],[4,-44],[3,-55],[18,-276],[3,-35],[-1,-17],[-1,-49],[0,-34],[-3,-175],[-2,-72],[1,-46],[0,-43],[-1,-44],[-3,-33],[-2,-41],[-6,-35],[-5,-38],[-6,-33],[-10,-37],[-10,-28],[-10,-27],[-14,-35],[-11,-28],[-10,-27],[-12,-23],[-13,-19],[-12,-18],[-16,-20],[-18,-20],[-14,-15],[-16,-13],[-16,-11],[-20,-10],[-20,-10],[-17,-5],[-24,-6],[-22,-5],[-23,-7],[-17,-2],[-20,-2],[-21,-2],[-13,3],[-11,2],[-23,-2],[-24,-6],[-51,-9],[-18,-6],[-28,-12],[-5,-3],[-19,-9],[-39,-27],[-13,-13],[-14,-17],[-14,-17],[-9,-14],[-15,-26],[-20,-34],[-13,-21],[-29,-51],[-40,-101],[-23,-75],[-16,-35],[-3,-6],[-2,-9],[-7,-40],[-13,-38],[-3,-7],[-11,-33],[-14,-43],[-25,-82],[-15,-49],[-8,-39],[-6,-30],[-6,-34],[-14,-34],[-22,-54],[-39,-92],[-14,-47],[-10,-30],[-23,-74],[-20,-65],[-5,-25],[-46,-225],[-12,-86],[-9,-91],[-1,-49]],[[62748,85471],[1,-83],[0,-40],[-1,-99],[0,-77],[-1,-62],[1,-113],[0,-12],[-1,-117],[1,-87],[0,-49],[0,-67],[0,-75],[0,-65],[0,-57],[0,-247],[0,-196],[0,-44],[0,-222],[0,-42],[-1,-173],[1,-139],[-1,-73],[1,-86],[0,-50],[0,-46],[-1,-87],[0,-137],[0,-48],[0,-44],[0,-110],[0,-53],[0,-85],[-1,-357],[0,-47],[-1,-82],[0,-85],[0,-148],[0,-46],[0,-5],[0,-48],[-1,-49],[1,-36],[0,-57],[0,-7],[-1,-34],[0,-109],[0,-45],[0,-167],[0,-40],[0,-89],[0,-130],[-1,-61],[0,-47],[0,-119],[0,-40],[0,-76],[0,-16],[0,-92],[0,-65],[-1,-69],[0,-54],[-1,-192],[1,-64],[-1,-166],[0,-38],[0,-64],[0,-61],[-1,-34],[1,-40],[0,-90],[-1,-44],[0,-103],[0,-59],[-1,-70],[0,-86],[-1,-47],[0,-5],[-1,-103],[0,-225],[0,-57],[0,-36],[-1,-52],[0,-73],[0,-47],[1,-92],[0,-1],[-1,-268],[0,-35],[0,-56],[0,-47],[-2,-186],[0,-116],[0,-42],[0,-34],[0,-156],[0,-114],[0,-63],[0,-67],[-1,-46],[0,-36],[0,-112],[-1,-68],[0,-52],[0,-42],[0,-55],[-1,-57],[0,-61]],[[62731,76804],[-74,4],[-128,6],[-48,1],[-144,2],[-22,1],[-39,1],[-14,0],[-31,0],[-7,1],[-36,0],[-5,0],[-9,0],[-54,0],[-14,0],[-33,0],[-43,2],[-18,0],[-34,-3],[-18,2],[-232,1],[-251,1],[-228,1],[-250,0],[-16,-1],[-212,1],[-24,0],[-15,1],[-239,-1],[-36,-1],[-22,-1],[-11,0],[-144,-1],[-36,3],[-74,-2],[-114,-1],[-47,1],[-13,0],[-7,0],[-126,1],[-76,1],[-40,-1],[-162,2],[-89,-1],[-188,2],[-64,2],[-19,-1],[-72,0],[-32,-1],[-72,1],[-4,0],[-65,-1],[-75,1],[-160,0],[-2,0],[-248,0],[-91,2],[-102,2],[-52,-1],[-135,2],[-36,0],[-80,1],[-126,-1],[-139,0],[-101,-1],[-14,0],[-124,0],[-1,0],[-64,-1],[-174,-1],[-3,0],[-72,0],[-153,0],[-4,0],[-28,1],[-134,0],[-1,0],[-21,-1],[-90,-2],[-15,1],[-251,-2],[-99,-2],[-126,-3],[-26,-1],[-251,-1],[-23,1],[-80,2],[-16,1],[-33,0],[-55,0],[-46,0],[-248,-5],[-124,2],[-79,1],[-45,-2]],[[55233,76819],[0,69],[2,185],[2,81],[1,144],[-2,481],[-2,72],[-1,145],[0,107],[0,53],[-1,104],[0,127],[-1,353],[-1,144],[0,3],[0,208],[-1,131],[-2,124],[0,48],[0,37],[0,8],[0,47],[-1,47],[0,44],[0,140],[1,136],[0,81],[0,125],[1,129],[-1,486],[0,42],[2,441],[0,486],[1,310],[0,174],[1,126],[0,138],[0,220],[1,50],[-1,56],[0,374],[1,151],[8,261],[0,70],[1,493],[0,243],[0,259],[1,507],[0,11],[2,379],[-43,-1]],[[86925,88326],[0,-245],[0,-39],[-1,-48],[0,-153],[0,-444],[1,-39],[-1,-482],[1,-231],[0,-99],[0,-45],[-1,-92],[-1,-256],[0,-161],[-1,-76],[1,-68],[0,-164],[1,-252],[-78,-1],[-4,-38],[1,-233],[1,-41],[1,-226],[-1,-248],[0,-195],[0,-37],[0,-242],[0,-50],[0,-108],[0,-79],[-1,-362],[0,-123],[0,-31],[1,-172],[0,-44],[-1,-112],[0,-119],[0,-318],[0,-74],[0,-92],[0,-120],[-1,-310],[0,-55],[0,-139],[0,-343],[0,-153],[0,-71],[0,-252],[0,-486]],[[86842,80558],[-15,-1],[-23,1],[-16,0],[-15,0],[-19,0],[-17,0],[-23,1],[-29,0],[-19,-1],[-21,1],[-28,0],[-19,-1],[-10,-25],[4,-461],[-1,-54],[0,-42],[0,-35],[0,-79],[0,-40],[0,-247],[1,-311],[0,-90],[0,-78],[0,-51],[0,-4],[-1,-106],[0,-66],[0,-40],[1,-176],[2,-262],[0,-138],[-1,-371],[0,-194],[0,-75],[0,-44],[-1,-374],[0,-197],[-1,-289],[0,-212],[0,-23],[0,-269],[0,-44],[0,-60],[1,-63],[0,-34],[0,-101],[0,-34],[0,-54],[0,-40],[0,-52],[0,-52],[-1,-43],[0,-54],[0,-65],[0,-53],[-1,-65],[0,-38],[0,-49],[0,-58],[-1,-59],[0,-97],[0,-62],[-1,-36],[0,-47],[0,-49],[0,-56],[0,-35],[0,-40],[-1,-68],[0,-53],[0,-47],[0,-97],[0,-64],[0,-51],[0,-85],[-1,-65],[0,-105],[0,-61],[0,-44],[0,-47],[0,-67],[0,-50],[0,-36]],[[86586,73825],[-251,-5],[-34,0],[-64,1],[-1,0],[-23,0],[-17,0],[-42,5],[-48,6],[-101,2],[-16,0],[-28,0],[-43,1],[-30,-1],[-15,0],[-26,-1],[-24,0],[-109,0],[-124,-2],[-35,1],[-15,1],[-75,0],[-27,0],[-16,0],[-82,0],[-85,0],[-39,1],[-100,0],[-26,-1],[-110,1],[-49,0],[-29,0],[-61,1],[-141,0],[-52,0],[-54,0],[-13,1],[-32,1],[-35,-1],[-49,1],[-34,0],[-65,0],[-51,1],[-9,0],[-93,-1],[-98,3],[-25,0],[-97,2],[-146,-1],[-126,0],[-26,0],[-96,-1],[-200,0],[-37,-1],[-263,0],[-235,4],[-22,-2],[-85,1],[-52,2],[-20,2],[-20,1],[-52,2],[-12,-1],[-3,-1],[-243,-8],[-176,1],[-72,0],[-47,-1],[-21,0],[-13,0],[-117,0],[-62,0],[-183,1],[-22,0],[-1,0],[-33,1],[-126,-3],[-123,0],[-129,1],[-120,0],[-25,1],[-3,0],[-218,-10],[-174,2],[-78,1],[-3,0]],[[80609,73833],[0,13],[4,94],[-2,43],[0,188],[-1,21],[0,24],[0,22],[0,20],[0,33],[0,35],[0,22],[0,19],[0,43],[0,22],[0,24],[0,63],[-1,33],[0,83],[2,111],[8,25],[1,3],[-10,25],[1,44],[0,51],[0,56],[-1,20],[0,19],[1,39],[0,42],[0,58],[-1,54],[1,42],[2,20],[1,12],[1,19],[0,17],[1,472],[2,302],[0,6],[0,69],[0,80],[0,82],[-2,23],[-3,41],[1,63],[1,64],[0,70],[1,22],[0,22],[1,48],[0,25],[0,24],[0,46],[0,22],[0,25],[0,77],[1,53],[0,50],[0,42],[0,26],[0,27],[0,40],[0,80],[0,40],[0,56],[1,53],[1,312],[-1,38],[1,20],[0,21],[-1,47],[0,21],[0,20],[1,42],[0,21],[0,23],[0,20],[0,19],[0,38],[0,47],[0,17],[0,18],[0,19],[0,19],[0,17],[0,19],[0,18],[0,16],[0,84],[0,35],[0,46],[0,37],[1,40],[-1,19],[0,18],[1,203],[0,19],[0,19],[0,18],[0,16],[0,38],[0,20],[0,21],[0,52],[0,49],[0,79],[0,51],[0,55],[0,24],[0,22],[-4,403],[3,78],[-2,253],[0,47],[0,48],[-1,51],[0,51],[0,19],[-1,19],[0,46],[-1,45],[0,42],[-2,353],[1,61],[0,40],[0,67],[0,72],[-1,213],[0,9],[0,38],[0,43],[0,96],[0,103],[-1,111],[0,105],[0,10],[-1,470],[0,6],[0,41],[-1,199],[0,235],[-1,129],[0,125],[0,74],[0,79],[0,73],[-1,108],[0,99],[2,45],[-2,232],[-3,270],[0,67],[0,18],[0,19],[2,106],[0,197],[-1,72],[1,48],[0,45],[-1,58],[0,61],[0,17],[0,17],[0,40],[0,43],[0,99],[-1,18],[-1,21],[-1,58],[-1,63],[2,70],[2,66],[-2,19],[-2,21],[0,46],[3,36],[0,55],[0,37],[0,35],[0,97],[0,34],[-1,24],[-1,29],[1,58]],[[93747,87348],[-2,-62],[3,-53],[5,-49],[4,-43],[9,-66],[8,-45],[15,-66],[8,-27],[11,-33],[12,-39],[10,-38],[12,-52],[8,-53],[7,-50],[5,-52],[1,-68],[-2,-35],[-1,-33],[-8,-77],[-6,-52],[-12,-83],[-10,-51],[-14,-51],[-34,-108],[-26,-76],[-28,-65],[-10,-12],[-26,-35],[-51,-55],[-16,-12],[-34,-21],[-26,-8],[-4,-1],[-38,-3],[-41,10],[-20,11],[-18,16],[-58,51],[-19,17],[-19,17],[-13,12],[-17,14],[-15,8],[-26,5],[-22,4],[-7,-2],[-23,-8],[-18,-6],[-45,-31],[-29,-29],[-21,-27],[-5,-7],[-23,-39],[-19,-44],[-15,-51],[-5,-33],[-5,-31],[-13,-81],[-5,-31],[-4,-21],[-27,-181],[-1,-11],[-9,-60],[-2,-12],[-2,-7],[-2,-16],[-3,-34],[-3,-44],[-1,-41],[0,-55],[6,-61],[9,-57],[8,-61],[2,-13],[18,-119],[14,-76],[17,-78],[14,-52],[9,-35],[24,-72],[22,-60],[11,-27],[11,-28],[52,-114],[63,-133],[57,-108],[11,-21],[24,-44],[42,-77],[70,-105],[14,-15],[75,-81],[2,-1],[81,-74],[4,-4],[45,-36],[9,-10],[13,-14],[16,-29],[4,-8],[18,-32],[5,-9],[22,-49],[2,-4],[11,-39],[18,-45],[1,-5],[6,-22],[9,-31],[4,-25],[12,-102],[6,-73],[1,-11],[7,-98],[0,-112],[3,-91],[1,-59],[1,-21],[1,-16],[8,-80],[15,-77],[14,-72],[4,-16],[7,-43],[17,-56],[17,-52],[19,-54],[28,-58],[15,-32],[55,-93],[3,-4],[36,-46],[18,-24],[9,-12],[57,-62],[30,-32],[84,-78],[54,-35],[2,-1],[53,-32],[40,-21],[17,-8],[42,-14],[25,-22],[35,-31],[39,-30],[36,-36],[12,-18],[23,-34],[37,-64],[25,-51],[10,-20],[23,-66],[16,-57],[16,-81],[2,-36],[7,-82],[3,-81],[7,-57],[20,-78],[15,-48],[14,-40],[19,-37],[23,-36],[12,-21]],[[94900,80552],[-35,-2],[-19,0],[-204,1],[-16,0],[-113,1],[-50,0],[-77,0],[-69,1],[-77,0],[-57,0],[-246,1],[-92,1],[-42,0],[-86,0],[-123,1],[-5,4],[-11,11],[-39,-15],[-70,0],[-55,0],[-33,0],[-32,0],[-16,0],[-58,0],[-18,1],[-32,1],[-17,-3],[-39,3],[-15,2],[-18,-2],[-30,1],[-21,0],[-229,-1],[-4,0],[-22,0],[-245,1],[-53,2],[-17,1],[-59,0],[-80,0],[-65,0],[-23,0],[-46,1],[-38,1],[-69,0],[-75,-1]],[[92060,80563],[-23,0],[-17,1],[-17,0],[-34,-1],[-16,0],[-25,-1],[-20,0],[-49,-1],[-35,-1],[-93,-2],[-274,4],[-14,-5],[-57,2],[-57,1],[-107,2],[-5,0],[-14,1],[-72,5],[-52,0],[-124,0],[-136,3],[-17,0],[-15,2],[-16,0],[-18,0],[-17,1],[-22,1],[-20,0],[-17,1],[-13,0],[-25,1],[-19,0],[-15,1],[-19,0],[-22,1],[-22,0],[-66,1],[-30,1],[-24,0],[-25,0],[-37,1],[-45,2],[-27,1],[-15,0],[-21,0],[-45,0],[-10,0],[-6,0],[-30,1],[-19,1],[-20,0],[-15,1],[-16,0],[-15,0],[-1,0],[-23,0],[-20,-1],[-21,0],[-17,0],[-30,0],[-15,-1],[-25,0],[-25,-1],[-49,0],[-7,0],[-19,-1],[-32,2],[-22,1],[-22,1],[-51,3],[-25,2],[-23,1],[-24,1],[-17,1],[-42,2],[-20,0],[-15,0],[-21,1],[-25,0],[-26,1],[-14,0],[-19,0],[-18,1],[-17,0],[-16,0],[-20,1],[-33,0],[-35,1],[-19,0],[-25,0],[-16,1],[-15,0],[-30,1],[-69,0],[-17,1],[-15,0],[-14,0],[-19,1],[-26,0],[-20,0],[-34,2],[-89,1],[-17,1],[-43,1],[-20,0],[-18,0],[-18,1],[-15,0],[-13,0],[-17,0],[-23,1],[-13,0],[-24,1],[-24,-1],[-26,1],[-25,0],[-15,0],[-15,-1],[-58,2],[-54,1],[-33,1],[-17,1],[-19,0],[-26,1],[-15,1],[-22,-2],[-47,-2],[-30,-1],[-24,-1],[-21,-1],[-15,0],[-50,-2],[-24,-1],[-27,-1],[-23,0],[-26,-2],[-44,-2],[-15,-1],[-25,-1],[-28,-1],[-42,-2],[-14,0],[-36,-2],[-43,-1],[-22,-2],[-18,1],[-25,-2],[-15,-1],[-126,-4],[-6,0],[-64,-3],[-56,-1],[-92,-5],[-18,0],[-18,1],[-213,-16],[-21,-1],[-203,-6],[-14,-1],[-22,0]],[[40294,85505],[1,-167],[-1,-38],[0,-51],[0,-35],[0,-48],[0,-38],[0,-39],[0,-44],[0,-35],[4,-43],[-1,-440],[1,-364],[0,-118],[-1,-227],[-1,-116],[-2,-139],[0,-55],[1,-40],[-1,-100],[0,-48],[0,-74],[0,-98],[0,-52],[0,-46],[0,-233],[0,-79],[0,-62],[0,-66],[-1,-50],[-1,-59],[-1,-155],[-2,-136],[-1,-80],[-2,-158],[0,-39],[-1,-32],[0,-15],[1,-45],[0,-31],[0,-9],[-3,-72],[0,-179],[0,-14],[-1,-39],[-3,-92],[0,-67],[-1,-62],[-1,-67],[0,-38],[-1,-37],[-1,-87],[-1,-89],[-1,-49],[0,-42],[-1,-42],[-1,-152],[0,-63],[1,-47],[2,-101],[3,-264],[3,-243],[2,-234],[-1,-112],[-3,-343],[-2,-41],[0,-46],[0,-62],[-2,-71],[-3,-289],[-1,-60],[-1,-38],[0,-73],[-1,-79],[-1,-35],[-1,-69],[-1,-86],[-1,-36],[0,-202],[0,-105],[0,-57],[0,-119],[0,-59],[0,-58],[0,-103],[0,-50],[0,-53],[0,-37],[0,-1],[0,-58],[0,-47],[-2,-43],[-3,-50],[-4,-67],[-2,-46],[-4,-74],[-1,-33],[-6,-116],[-4,-52],[6,-349],[2,-146],[-2,-39],[1,-114],[0,-80],[0,-48],[0,-169],[0,-33],[2,-144],[3,-161],[2,-172],[-1,-243],[-2,-208],[0,-37],[-1,-242],[-1,-47],[0,-193],[-1,-97],[0,-39],[-1,-353],[0,-39],[0,-42],[0,-41],[0,-40],[0,-89],[0,-223],[0,-53],[0,-116],[-1,-33],[0,-34],[0,-34],[0,-80],[0,-12],[0,-78],[1,-26],[0,-46],[0,-43],[0,-38],[0,-39],[0,-40],[0,-50],[0,-58],[0,-37],[0,-37],[1,-73],[1,-380],[2,-133],[3,-429],[0,-55],[0,-160],[-1,-72],[-1,-247]],[[40250,71060],[-75,-2],[-44,-1],[-64,-2],[-17,8],[-18,2],[-13,2],[-30,0],[-30,0],[-15,-2],[-34,1],[-18,0],[-18,-1],[-29,-1],[-14,1],[-20,0],[-17,0],[-20,0],[-13,2],[-18,2],[-115,-3],[-64,-3],[-30,-2],[-109,-4],[-175,5],[-29,1],[-334,3],[-39,0],[-66,3],[-30,-2],[-125,2],[-132,0],[-93,0],[-67,1],[-101,0],[-74,-1],[-77,-1],[-173,-1],[-168,0],[-77,0],[-38,0],[-85,-2],[-177,-8],[-14,0],[-42,0],[-22,0],[-16,0],[-17,0],[-14,1],[-60,1],[-64,2],[-95,-4],[-26,0],[-17,0],[-26,0],[-36,-1],[-13,0],[-15,0],[-12,0],[-17,-1],[-110,-7],[-165,-4],[-19,0],[-25,-1],[-235,-5],[-21,14],[-94,-3],[-109,2],[-62,1],[-25,1],[-33,0],[-101,-13],[-87,2],[-80,1],[-166,8],[-21,1],[-14,0],[-48,0],[-44,-1],[-39,0],[-45,0],[-40,0],[-20,-1],[-33,0],[-28,0],[-18,0],[-51,0],[-63,-1],[-36,0],[-38,0],[-45,0],[-23,0],[-19,0],[-44,0],[-36,-1],[-21,0],[-24,0],[-18,0],[-44,0],[-19,0],[-57,0],[-29,-1],[-83,0],[-75,-1],[-51,0],[-30,0],[-17,0],[-27,-1],[-50,1],[-32,0],[-52,-1],[-72,0],[-24,0],[-24,-1],[-54,0],[-38,0],[-31,-1],[-47,1],[-58,-1],[-42,1],[-24,-1],[-14,0],[-31,0],[-140,0],[-19,-1],[-39,-2],[-56,3],[-23,-1],[-23,-1],[-16,0],[-38,1],[-16,0],[-27,0],[-14,0],[-54,1],[-50,-1],[-23,0],[-16,0],[-16,0],[-16,0],[-29,0],[-15,-1],[-39,1],[-26,3],[-1,0],[-36,-3],[-1,0],[-41,-1]],[[32960,71041],[-30,0],[-28,0],[-17,0],[-22,0],[-17,1],[-20,0],[-18,0],[-27,0]],[[32781,71042],[-1,114],[0,129],[1,51],[0,60],[0,99],[0,35],[0,36],[0,44],[0,75],[0,48],[0,34],[0,39],[0,212],[-1,52],[-1,92],[-1,817],[0,121],[-1,748],[0,56],[0,47],[0,37],[0,447],[0,71],[0,104],[0,86],[0,84],[1,95],[0,44],[0,174],[1,58],[0,98],[0,37],[0,112],[1,50],[1,199],[0,38],[0,48],[0,37],[0,116],[0,60],[1,87],[1,192],[1,144],[0,48],[0,65],[1,129],[0,114],[0,51],[0,68],[1,68],[1,65],[0,47],[3,68],[1,60],[1,125],[1,52],[1,68],[1,62],[0,39],[1,60],[1,39],[0,41],[1,77],[0,17],[1,77],[1,102],[1,39],[1,100],[1,70],[0,39],[1,44],[0,88],[3,152],[0,75],[-1,59],[2,179],[2,292],[1,48],[0,74],[0,35],[1,38],[0,2],[1,151],[0,44],[0,41],[1,144],[3,112],[0,2],[1,178],[1,56],[0,196],[1,45],[0,192],[0,37],[-2,315],[0,96],[1,131],[0,190],[0,79],[1,83],[0,90],[0,106],[0,48],[1,77],[1,576],[0,50],[1,45],[0,253],[5,34],[0,97],[-1,75],[0,84],[-1,260],[0,113],[-1,69],[0,36],[0,69],[-1,74],[0,86],[0,61],[0,116],[-1,35],[0,112],[0,35],[-1,34],[1,85],[0,107],[0,54],[0,48],[0,77],[0,43],[0,70],[-1,68],[-1,461],[0,54],[-1,43],[0,55],[0,45],[0,74],[0,65],[1,70],[-1,56],[0,35]],[[8879,85516],[-3,-445],[-3,-480],[-2,-480],[-1,-480],[0,-118],[0,-286],[-1,-76],[-1,-479],[-2,-480],[0,-102],[-1,-124],[0,-256],[-1,-228],[-1,-250],[-1,-85],[0,-1],[0,-226],[0,-174],[-3,-480],[-3,-484],[-1,-304],[-1,-175],[1,-230],[3,-252],[0,-70],[-1,-83],[0,-48],[0,-43],[0,-34],[0,-1],[0,-42],[-1,-68],[-1,-97],[-1,-161],[0,-70],[0,-48],[-1,-201],[0,-92],[0,-67],[0,-53],[0,-10],[-1,-62],[0,-103],[-1,-91],[0,-47],[0,-37],[0,-80],[-1,-38],[0,-45],[-3,-39],[2,-35],[1,-43],[0,-115],[0,-81],[0,-62],[0,-111],[0,-73],[0,-43],[0,-63],[0,-49],[-1,-35],[0,-113],[1,-124],[-1,-210],[0,-483],[0,-110],[-1,-60],[0,-35],[0,-67],[0,-36],[0,-261],[0,-67],[0,-81],[0,-71],[0,-171],[0,-102],[0,-146],[-1,-233],[0,-195],[0,-46],[-1,-239],[0,-326],[-1,-119],[0,-35],[0,-126],[0,-115],[0,-41],[0,-66],[0,-56],[0,-75],[0,-137],[0,-106],[-1,-87],[1,-65],[-1,-58],[0,-52],[0,-57],[0,-54],[0,-102],[0,-103],[0,-78],[0,-63],[0,-72],[-1,-81],[0,-42],[0,-44],[0,-114],[0,-55],[0,-36],[0,-36]],[[8843,71130],[-32,-1],[-14,0],[-107,-1],[-65,-1],[-43,-1],[-130,0],[-106,-1],[-35,0],[-48,0],[-34,-1],[-25,-1],[-15,1],[-99,-6],[-117,0],[-118,0],[-91,0],[-23,0],[-56,0]],[[7685,71118],[-15,0],[-73,0],[-56,0],[-102,0],[-30,1],[-22,-4],[-105,-1],[-24,0],[-43,0],[-105,0],[-151,-1],[-96,0],[-80,0],[-64,0],[-17,0],[-110,-1],[-90,0],[-35,-1],[-1,0],[-304,-7],[-201,-4],[-43,-2],[-19,0],[-39,2],[-135,0],[-13,0],[-21,1],[-15,-1],[-26,0],[-27,1],[-25,-3],[-43,1],[-38,-1],[-46,0],[-20,0],[-31,-1],[-33,-1],[-67,-2],[-46,-1],[-14,0],[-51,-1],[-65,-1],[-70,-1],[-54,-1],[-32,-2],[-35,0],[-100,1],[-17,-1],[-19,-1],[-42,0],[-58,-1],[-59,-2],[-28,1],[-42,-2],[-16,0],[-16,0],[-38,-3],[-44,0],[-23,3],[-33,0],[-67,-2],[-1,0],[-250,0],[-63,-1],[-22,0],[-40,-3],[-16,1],[-21,0],[-15,0],[-23,-1],[-19,0],[-19,-1],[-21,0],[-15,2],[-18,0],[-31,0],[-26,1],[-17,1],[-14,-1],[-16,1],[-18,-2],[-14,0],[-35,0],[-19,-1],[-14,-2],[-21,1],[-31,1],[-23,0],[-17,0],[-21,-1],[-26,-2],[-27,2],[-21,0],[-24,0],[-66,-1],[-41,-1],[-56,-2],[-20,1],[-33,-1],[-53,-1],[-74,0],[-45,-1],[-29,-1],[-49,1],[-43,2],[-32,-1],[-14,0],[-27,1],[-21,0],[-57,-3],[-35,0],[-57,2],[-58,-2],[-35,0],[-40,1],[-19,-3],[-24,1],[-19,0],[-18,0],[-24,2],[-39,-3],[-15,0],[-51,1],[-23,-1],[-56,0],[-122,1],[-42,0],[-16,0],[-28,0],[-44,0],[-45,0],[-13,0],[-59,0],[-32,0],[-93,0],[-114,0],[-19,-1],[-34,1],[-25,0],[-57,0],[-19,0],[-28,0],[-28,0],[-50,0],[-41,0],[-52,6],[-33,-2],[-37,1],[-37,0],[-26,-1],[-24,-4],[-15,0],[-62,0],[-18,-1],[-28,0],[-51,0],[-37,0],[-38,0],[-17,0],[-61,0],[-31,-1],[-51,1],[-213,-1],[-20,0],[-51,0],[-17,-1],[-17,0],[-28,6],[-55,-1],[-1,0],[-230,-5]],[[61,71064],[0,166],[-6,2010],[-1,532],[-2,637],[-8,3001],[0,179],[-1,94],[-8,3017],[-1,665],[-5,2604],[-2,1541]],[[17841,85505],[1,-62],[2,-76],[0,-84],[0,-167],[0,-62],[0,-49],[0,-68],[0,-136],[0,-174],[0,-70],[-1,-279],[2,-204],[-1,-92],[0,-57],[0,-113],[-1,-79],[0,-45],[0,-90],[-1,-92],[-1,-150],[0,-102],[-1,-90],[0,-45],[-1,-218],[-2,-243],[0,-35],[0,-43],[0,-30],[0,-4],[0,-401],[-2,-482],[0,-35],[2,-447],[0,-84],[0,-1],[-1,-104],[1,-121],[0,-155],[0,-66],[0,-76],[0,-118],[0,-114],[0,-54],[0,-64],[-2,-494],[-1,-210],[0,-85],[0,-67],[-1,-84],[0,-40],[0,-1],[0,-144],[-1,-48],[0,-46],[0,-68],[0,-39],[0,-43],[0,-78],[-1,-151],[0,-33],[0,-46],[0,-48],[0,-33],[0,-35],[0,-37],[0,-55],[0,-48],[0,-1],[0,-47],[-1,-365],[0,-74],[0,-90],[0,-65],[0,-87],[0,-47],[-1,-78],[1,-63],[-1,-52],[0,-55],[0,-82],[0,-57],[0,-47],[0,-61],[0,-54],[0,-89],[0,-34],[0,-93],[0,-68],[0,-68],[-1,-69],[0,-48],[0,-90],[0,-46],[-1,-292],[0,-68],[0,-33],[0,-91],[0,-42],[0,-39],[0,-26],[0,-42],[0,-69],[0,-36],[0,-100],[-1,-128],[-1,-406],[1,-101],[-1,-304],[-1,-152],[0,-88],[0,-62],[-1,-261],[0,-50],[0,-168],[0,-271],[0,-40],[1,-497],[0,-69],[0,-50],[0,-75],[1,-272],[0,-48],[1,-294],[-1,-58],[0,-96],[1,-48],[3,-35],[-3,-34],[-1,-37],[0,-17],[1,-34],[0,-56],[0,-53],[-1,-37],[1,-46],[-1,-57],[0,-27],[1,-35],[0,-445]],[[17826,71072],[-20,0],[-57,1],[-58,0],[-36,0],[-64,1],[-14,1],[-225,-6],[-248,-1],[-13,4],[-24,0],[-13,0],[-39,0],[-48,1],[-68,-1],[-41,1],[-22,-1],[-28,1],[-28,-1],[-25,0],[-33,0],[-16,0],[-38,-1],[-17,1],[-38,-1]],[[16613,71071],[-28,0],[-38,0],[-19,0],[-16,0],[-14,0],[-8,0],[-23,1],[-16,-1],[-30,0],[-25,1],[-32,0],[-22,0],[-31,0],[-14,-1],[-63,0],[-20,0],[-38,-1],[-21,0],[-23,0],[-17,0],[-15,0],[-16,0],[-16,0],[-15,0],[-19,0],[-20,0],[-14,1],[-17,0],[-15,0],[-14,0],[-4,0],[-10,0],[-20,-1],[-14,0],[-18,0],[-16,0],[-10,0],[-4,0],[-14,0],[-4,0],[-23,0],[-52,0],[-37,0],[-24,0],[-53,0],[-37,0],[-102,-1],[-22,0],[-102,0],[-13,0],[-23,-1],[-19,0],[-82,0],[-130,-1],[-19,0],[-19,0],[-50,-1],[-18,-1],[-25,-1],[-29,0],[-19,-1],[-32,0],[-23,0],[-21,-1],[-22,-1],[-14,0],[-14,0],[-193,-1],[-27,0],[-16,1],[-206,1],[-43,0],[-18,-1],[-189,1],[-26,0],[-17,0],[-58,0],[-49,0],[-49,0],[-45,0],[-48,-1],[-64,0],[-98,0],[-39,-1],[-31,0],[-17,0],[-19,0],[-23,1],[-47,1],[-27,0],[-26,0],[-49,0],[-51,1],[-75,1],[-18,0],[-39,1],[-43,1],[-37,-1],[-45,2],[-38,0],[-50,1],[-36,-1],[-38,1],[-41,0],[-47,1],[-59,2],[-83,1],[-20,1],[-35,1],[-15,0],[-37,0],[-34,1],[-42,1],[-43,1],[-49,2],[-36,1],[-44,1],[-56,1],[-22,1],[-27,1],[-49,1],[-37,2],[-35,0],[-24,1],[-21,1],[-47,2],[-39,1],[-56,3],[-29,1],[-57,1],[-246,10],[-35,1],[-29,1],[-26,1],[-19,1],[-19,1],[-65,2],[-14,1],[-32,1],[-14,1],[-20,0],[-120,2],[-20,1],[-31,1],[-23,0],[-36,2],[-29,1],[-60,2],[-32,1],[-31,1],[-14,1],[-28,2],[-54,0],[-38,0],[-35,1],[-26,1],[-40,1],[-43,0],[-43,1],[-25,0],[-14,1],[-22,0],[-28,1],[-28,0],[-70,2],[-22,0],[-189,3],[-25,0],[-34,1],[-39,0],[-28,0],[-14,0],[-38,-1],[-48,0],[-41,-1],[-19,0],[-23,0],[-12,0],[-35,-1],[-30,0],[-59,0],[-22,0],[-133,-2],[-32,0],[-176,-2],[-20,0],[-17,0],[-23,3],[-19,-3],[-16,-1],[-140,-1],[-78,-1],[-30,0],[-96,-1],[-31,-1],[-17,0],[-18,0],[-62,-1]],[[47757,85487],[0,-89],[0,-49],[1,-328],[-3,-355],[0,-4],[-1,-141],[-1,-113],[0,-39],[-1,-100],[-1,-111],[0,-119],[0,-49],[-1,-76],[-1,-104],[0,-23],[0,-16],[-1,-129],[-1,-87],[0,-23],[0,-42],[0,-91],[-1,-59],[0,-50],[0,-44],[-1,-56],[-1,-98],[1,-187],[0,-62],[-1,-90],[-1,-163],[-4,-443],[0,-36],[-5,-484],[0,-44],[-1,-168],[0,-72],[-1,-41],[-1,-40],[1,-43],[1,-57],[0,-13],[0,-111],[0,-22],[0,-32],[-1,-133],[0,-15],[0,-49],[-4,-294],[0,-70],[0,-53],[0,-119],[-1,-60],[0,-233],[-1,-39],[1,-51],[-1,-121],[0,-44],[1,-56],[-1,-57],[0,-62],[0,-92],[0,-39],[0,-56],[0,-34],[0,-67],[0,-65],[0,-57],[-1,-346],[0,-215],[0,-68],[0,-18],[0,-22],[0,-34],[-1,-34],[0,-40],[0,-65],[0,-105],[0,-63],[0,-35],[0,-71],[0,-35],[0,-39],[-1,-43],[0,-52],[0,-30],[0,-5],[0,-75],[0,-38],[0,-35],[0,-50],[0,-241],[0,-48],[0,-52],[0,-60],[-1,-169],[0,-101],[0,-54],[0,-43],[0,-253],[0,-66],[1,-136],[0,-123],[-1,-68],[0,-49],[0,-116],[0,-40],[0,-52],[0,-1],[0,-106],[0,-44],[0,-63],[-1,-132],[1,-74],[0,-64],[0,-56],[0,-36],[-1,-72],[1,-67],[0,-59],[-1,-46],[1,-59],[-1,-48],[1,-35],[0,-62],[0,-83],[0,-43],[0,-74],[-1,-37],[0,-62],[0,-101],[0,-82],[0,-48],[0,-14],[0,-119],[-1,-49],[0,-86],[0,-132],[1,-34]],[[47721,73941],[-1,-58],[1,-42],[1,-46],[2,-62],[-1,-39],[1,-102],[0,-55],[0,-56],[0,-68],[-1,-48],[-1,-112],[-1,-53],[-2,-201],[0,-34],[0,-65],[1,-274],[1,-133],[0,-97],[0,-54],[0,-90],[0,-239],[1,-247],[0,-53],[0,-44],[0,-39],[1,-186],[0,-44],[0,-85],[-1,-205],[1,-61]],[[47723,71049],[-39,1],[-44,1],[-47,1],[-29,1],[-22,1],[-30,1],[-39,1],[-55,2],[-21,0],[-76,3],[-14,0],[-48,1],[-14,1],[-24,1],[-28,1],[-14,-2],[-27,2],[-55,1],[-16,-5],[-17,6],[-15,0],[-14,0],[-15,1],[-21,-1],[-38,0],[-22,1],[-27,0],[-44,0],[-21,0],[-10,0],[-12,0],[-56,0],[-23,0],[-20,0],[-17,-1],[-25,1],[-31,0],[-96,0],[-23,1],[-17,-1],[-41,0],[-33,1],[-120,0],[-48,0],[-49,0],[-58,0],[-25,0],[-24,0],[-27,-1],[-17,2],[-36,-2],[-21,0],[-39,3],[-74,-1],[-164,3],[-9,0],[-133,-3],[-19,-1],[-159,2],[-41,-3],[-27,0],[-28,-1],[-25,1],[-51,1],[-19,0],[-17,-1],[-59,-3],[-27,-1],[-51,3],[-50,-1],[-45,-2],[-17,1],[-18,-1],[-2,0],[-15,0],[-16,1],[-41,0],[-35,0],[-105,-1],[-26,0],[-23,-1],[-14,-1],[-19,1],[-32,0],[-26,0],[-21,1],[-44,0],[-27,0],[-17,0],[-29,-1],[-23,0],[-29,1],[-15,0],[-1,0],[-16,-1],[-15,0],[-14,1],[-32,0],[-39,-1],[-37,0],[-28,0],[-14,0],[-99,1],[-108,0],[-35,0],[-45,1],[-61,0],[-40,0],[-23,0],[-27,0],[-18,0],[-14,1],[-18,-1],[-30,0],[-68,1],[-19,0],[-27,0],[-27,0],[-14,0],[-35,0],[-27,0],[-1,0],[-36,0],[-22,0],[-43,0],[-60,1],[-19,-1],[-16,1],[-25,0],[-42,0],[-53,1],[-46,-1],[-26,0],[-24,0],[-16,0],[-24,1],[-18,0],[-175,-1],[-92,-1],[-31,0],[-128,0],[-68,7],[-29,0],[-50,-7],[-19,0],[-27,2],[-20,-1],[-18,-1],[-14,0],[-22,0],[-15,0],[-35,-1],[-13,1],[-24,0],[-14,0],[-21,0],[-36,0],[-20,0],[-23,0],[-14,1],[-26,0],[-23,0],[-35,4],[-38,-1],[-25,0],[-163,-1],[-2,0],[-14,0],[-73,0],[-27,0],[-18,0],[-24,0],[-33,0],[-35,0],[-51,-1],[-345,-2],[-93,-1],[-154,-1],[-14,-4],[-107,2],[-28,-1],[-20,2],[-21,1],[-26,-1],[-18,1],[-31,-1],[-21,0],[-37,0],[-24,0],[-37,1],[-16,2],[-88,-2],[-23,0]],[[40387,71064],[-137,-4]],[[25325,85480],[-1,-64],[-2,-419],[-2,-185],[1,-156],[-2,-63],[0,-89],[-1,-60],[1,-113],[0,-45],[-1,-261],[0,-409],[0,-72],[0,-80],[0,-65],[0,-57],[0,-56],[-1,-122],[0,-36],[0,-65],[0,-147],[1,-49],[0,-45],[0,-52],[0,-34],[0,-47],[0,-36],[0,-68],[0,-209],[0,-161],[0,-44],[0,-72],[0,-115],[0,-188],[0,-45],[0,-59],[1,-47],[0,-112],[0,-114],[0,-79],[0,-130],[0,-41],[0,-66],[0,-444],[0,-248],[0,-46],[3,-68],[-4,-82],[0,-43],[1,-202],[0,-72],[0,-138],[0,-68],[0,-39],[0,-36],[-1,-57],[0,-40],[-1,-91],[0,-36],[-1,-96],[0,-52],[0,-73],[0,-78],[-1,-48],[1,-56],[-2,-291],[0,-78],[0,-118],[0,-77],[0,-3],[-1,-36],[0,-36],[0,-55],[1,-49],[0,-6],[-1,-75],[-2,-609],[0,-53],[-2,-476],[-1,-216],[-2,-410],[-1,-179],[-2,-533],[-1,-295],[0,-34],[0,-54],[-1,-69],[0,-89],[0,-42],[0,-55],[-1,-107],[0,-64],[-2,-484],[-1,-482],[-1,-489],[-1,-39],[0,-4],[-2,-431],[0,-42],[0,-200],[0,-240],[-1,-481],[-1,-248],[-1,-233],[0,-254],[-1,-134],[-1,-93]],[[25288,71027],[-139,1],[-25,2],[-15,0],[-70,0],[-19,2],[-42,0],[-17,0],[-16,1],[-22,-1],[-154,-1],[-22,3],[-31,0],[-23,2],[-15,-1],[-18,1],[-26,1],[-15,0],[-68,3],[-16,1],[-252,3],[-21,0],[-72,2],[-49,1],[-21,1],[-25,0],[-24,0],[-26,1],[-14,0],[-20,1],[-17,0],[-16,0],[-17,1],[-20,1],[-14,-1],[-65,3],[-22,0],[-32,-5],[-25,5],[-18,0],[-34,1],[-179,0],[-20,0],[-97,1],[-14,1],[-54,0],[-23,1],[-36,-1],[-22,2],[-48,0],[-39,1],[-84,0],[-22,0],[-16,1],[-14,0],[-28,0],[-13,0],[-129,1],[-16,0],[-16,1],[-16,1],[-16,-1],[-17,0],[-63,0],[-72,1],[-21,0],[-21,0],[-36,0],[-22,0],[-21,1],[-33,-1],[-14,0],[-19,-1],[-24,1],[-26,0],[-35,0],[-34,-1],[-47,0],[-18,0],[-76,1],[-27,0],[-23,0],[-124,-6],[-66,-1],[-115,0],[-59,6],[-19,4],[-29,0],[-48,0],[-40,-1],[-20,0],[-31,-1],[-35,0],[-24,0],[-11,0],[-86,-1],[-21,1],[-58,-1],[-34,0],[-24,1],[-23,-2],[-188,-3],[-32,1],[-213,5],[-162,-2],[-34,2],[-41,-1],[-36,0],[-34,-1],[-320,1],[-177,-6],[-176,-1],[-72,-1],[-22,8],[-56,0],[-20,0],[-18,-1],[-15,1],[-17,0],[-97,0],[-228,0],[-15,0],[-16,0],[-21,0],[-45,0],[-107,1],[-30,0],[-16,0],[-18,0],[-14,0],[-17,0],[-19,-1],[-29,0],[-46,0],[-87,0],[-34,0],[-16,0],[-66,0],[-60,1],[-76,0],[-31,0],[-17,0],[-237,3],[-59,1],[-328,3],[-79,0],[-22,-1],[-24,0]],[[68238,85451],[1,-127],[2,-126],[-2,-166],[1,-183],[0,-49],[0,-19],[0,-19],[-1,-57],[1,-79],[-1,-74],[-2,-320],[-1,-32],[0,-32],[0,-19],[0,-18],[-1,-33],[0,-32],[-1,-192],[-1,-135],[0,-135],[0,-20],[0,-21],[0,-17],[0,-16],[0,-47],[0,-46],[0,-164],[0,-52],[-2,-77],[0,-38],[0,-38],[0,-6],[-1,-49],[-1,-159],[0,-46],[0,-47],[0,-17],[-1,-17],[-1,-127],[0,-20],[0,-20],[-4,-412],[-1,-206],[0,-19],[-1,-19],[0,-134],[0,-46],[-3,-64],[-1,-135],[-2,-134],[0,-36],[-1,-36],[-1,-99],[-1,-43],[0,-95],[-1,-78],[0,-78],[0,-115],[-1,-115],[0,-101],[0,-101],[0,-17],[0,-17],[0,-95],[0,-97],[0,-26],[0,-25],[0,-162],[0,-163],[1,-161],[0,-98],[0,-162],[-1,-236],[0,-2],[0,-138],[0,-206],[0,-65],[-1,-65],[1,-111],[0,-111],[0,-130],[1,-128],[-1,-60],[0,-59],[-1,-366],[0,-53],[0,-429],[0,-95],[1,-96],[-1,-24],[0,-25],[0,-71],[0,-72],[0,-24],[0,-24],[0,-27],[0,-27],[0,-35],[-1,-35],[0,-81],[0,-80],[0,-72],[0,-71],[-1,-95],[0,-25],[1,-25],[1,-99],[1,-70],[-2,-76],[-1,-70],[0,-36],[-1,-50],[0,-50],[0,-170],[0,-171],[0,-74],[0,-74],[-1,-70],[0,-70],[0,-34],[0,-50],[-1,-45],[0,-6],[0,-58],[0,-56],[-1,-55],[0,-44],[-1,-48],[-1,-70],[-1,-84],[1,-157],[0,-68],[1,-131],[0,-130],[1,-103],[1,-129],[0,-9]],[[68204,73951],[0,-53],[1,-53],[0,-105],[1,-110],[0,-35],[0,-28],[1,-23],[0,-5],[0,-87],[1,-88],[1,-176],[0,-12],[0,-10],[0,-22],[1,-89],[0,-91],[1,-146],[0,-41],[0,-50],[0,-48],[0,-201],[-1,-190],[0,-25],[0,-26],[-1,-80],[0,-80],[-1,-79],[0,-25],[-1,-27],[0,-83],[0,-107],[-1,-105],[0,-18],[0,-17],[0,-49],[0,-49],[0,-36],[0,-36],[-1,-19],[0,-19],[0,-74],[0,-51],[-1,-246],[-24,-1]],[[68180,71036],[-79,4],[-97,1],[-39,1],[-24,1],[-24,0],[-40,1],[-42,1],[-37,1],[-40,0],[-23,0],[-31,5],[-14,3],[-15,-7],[-65,2],[-16,0],[-31,1],[-72,1],[-58,1],[-14,-1],[-26,1],[-70,1],[-23,2],[-66,0],[-16,0],[-13,0],[-17,1],[-35,0],[-15,0],[-28,1],[-17,0],[-33,0],[-20,0],[-28,1],[-33,0],[-24,1],[-17,1],[-20,0],[-69,-1],[-21,0],[-23,-1],[-35,2],[-17,-1],[-34,1],[-14,1],[-19,0],[-80,1],[-22,0],[-128,2],[-18,1],[-21,0],[-71,-1],[-65,1],[-35,0],[-40,1],[-26,0],[-25,1],[-17,-1],[-55,1],[-34,1],[-15,0],[-70,0],[-13,0],[-1,0],[-19,0],[-19,1],[-15,0],[-14,-1],[-120,2],[-31,1],[-25,0],[-25,0],[-48,0],[-19,0],[-45,1],[-34,0],[-28,0],[-51,1],[-29,0],[-34,1],[-14,-1],[-27,0],[-21,1],[-13,0],[-1,0],[-14,0],[-18,0],[-29,1],[-29,0],[-30,0],[-118,1],[-56,1],[-25,-5],[-17,-3],[-23,-1],[-24,1],[-28,0],[-27,-1],[-51,0],[-17,-1],[-24,0],[-41,-1],[-15,0],[-15,0],[-18,0],[-103,-1],[-70,-1],[-43,-1],[-36,-1],[-118,-2],[-30,-1],[-34,0],[-56,-1],[-26,0],[-17,-1],[-25,1],[-20,-2],[-161,-3],[-54,-1],[-17,0],[-119,-3],[-59,-1],[-46,-1],[-22,0],[-68,-2],[-66,-3],[-33,1],[-25,1],[-5,0],[-12,-2],[-32,-2],[-53,-2],[-141,-3],[-27,-1],[-15,2],[-25,0],[-43,-2],[-18,0],[-60,0],[-21,0],[-40,-3],[-73,-1],[-56,-2],[-14,-1],[-38,-1],[-64,-1]],[[62714,71025],[0,140],[0,87],[0,34],[0,45],[-1,52],[0,42],[0,46],[1,36],[2,348],[-2,144],[0,114],[0,93],[0,54],[0,212],[2,241],[1,233],[0,87],[1,188],[0,60],[0,38],[0,41],[0,36],[0,26],[0,16],[1,44],[1,34],[-1,56],[1,49],[-1,56],[-1,79],[1,89],[1,70],[0,80],[1,68],[0,36],[0,56],[0,93],[1,146],[0,111],[0,56],[0,41],[3,301],[0,41],[0,55],[0,121],[1,63],[0,62],[0,57],[0,58],[0,60],[1,188],[0,2],[0,84],[0,41],[0,10],[0,40],[0,64],[1,34],[1,218],[0,77],[0,55],[0,90],[1,250],[1,126],[0,47],[0,58]],[[55233,76819],[-3,-123],[-2,-176],[-2,-43],[-2,-145],[-22,-482],[1,-478],[2,-199],[4,-176],[0,-10],[-2,-59],[-1,-44],[0,-58],[-1,-4],[2,-74],[-1,-81],[1,-60],[1,-55],[0,-3],[1,-150],[7,-225],[1,-42],[6,-211]],[[55223,73921],[-80,1],[-169,-1],[-40,-1],[-24,-2],[-32,-3],[-81,-8],[-266,4],[-75,5],[-233,6],[-30,0],[-52,0],[-34,0],[-74,0],[-19,0],[-36,0],[-49,-2],[-18,-2],[-186,-2],[-65,0],[-16,4],[-45,1],[-116,1],[-35,-1],[-32,1],[-33,1],[-3,0],[-339,6],[-104,-7],[-79,0],[-249,1],[-219,-2],[-165,-1],[-1,0],[-83,0],[-234,-1],[-54,7],[-45,0],[-33,0],[-21,0],[-17,0],[-260,-1],[-56,1],[-14,0],[-33,0],[-24,0],[-25,1],[-21,0],[-17,1],[-29,0],[-26,1],[-104,-1],[-115,-1],[-27,0],[-15,4],[-32,1],[-23,0],[-47,1],[-80,1],[-40,0],[-19,0],[-25,0],[-24,0],[-33,-1],[-44,1],[-21,0],[-65,-1],[-19,0],[-20,0],[-122,3],[-127,3],[-81,1],[-60,0],[-113,-8],[-122,0],[-55,-1],[-21,0],[-31,0],[-20,0],[-25,-1],[-65,0],[-100,0],[-24,-1],[-34,1],[-15,0],[-15,0],[-38,-1],[-27,0],[-24,0],[-79,-1],[-18,0],[-38,0],[-52,1],[-27,0],[-19,0],[-6,0],[-28,1],[-4,0],[-27,0],[-37,1],[-40,0],[-14,0],[-1,0],[-14,-1],[-28,1],[-38,-1],[-16,0],[-15,0],[-58,-1],[-44,0],[-286,0],[-18,0],[-20,0],[-206,5],[-51,1],[-17,0],[-113,1],[-13,0],[-19,1],[-16,0],[-20,0],[-32,0],[-16,1],[-39,0],[-20,1],[-2,0],[-24,-1],[-60,1],[-15,1],[-49,1]],[[32781,71042],[-26,0],[-23,0],[-31,1],[-17,-1],[-22,0],[-21,0],[-35,0],[-14,0],[-21,-1],[-21,1],[-20,-1],[-16,0],[-30,0],[-26,0],[-30,0],[-24,0],[-28,0],[-36,-1],[-23,0],[-13,0],[-22,0],[-36,0],[-32,-1],[-30,1],[-25,0],[-34,-1],[-94,0],[-38,0],[-28,0],[-38,-1],[-19,0],[-14,0],[-20,1],[-33,0],[-71,-1],[-39,0],[-17,0],[-36,0],[-37,0],[-41,-1],[-26,0],[-17,0],[-24,-1],[-17,0],[-29,0],[-27,0],[-33,-1],[-31,1],[-28,0],[-33,0],[-29,-1],[-31,0],[-21,0],[-34,0],[-112,1],[-27,0],[-33,0],[-14,0],[-39,-1],[-32,1],[-32,-1],[-23,0],[-33,0],[-37,-1],[-41,0],[-42,-1],[-41,0],[-44,0],[-24,0],[-65,0],[-19,0],[-28,-1],[-69,0],[-35,0],[-42,0],[-33,-1],[-28,0],[-41,0],[-27,0],[-32,0],[-41,0],[-18,0],[-23,-1],[-80,0],[-30,0],[-70,0],[-49,0],[-46,0],[-31,0],[-38,-1],[-24,0],[-14,0],[-14,-7],[-263,4],[-48,0],[-72,0],[-53,5],[-23,-1],[-33,0],[-4,0],[-14,0],[-37,0],[-30,0],[-30,0],[-31,0],[-16,-1],[-42,0],[-33,0],[-15,0],[-18,-1],[-102,1],[-110,1],[-34,-7],[-29,0],[-23,0],[-151,-1],[-15,0],[-111,-1],[-97,4],[-178,-2],[-136,8],[-37,0],[-50,-1],[-25,0],[-22,-1],[-23,0],[-38,-1],[-16,0],[-38,0],[-14,1],[-67,-1],[-21,-1],[-160,-1],[-5,0],[-111,-5],[-87,4],[-32,-7],[-54,0],[-80,1],[-77,2],[-14,2],[-18,-7],[-85,0],[-117,1],[-55,6],[-38,0],[-26,0],[-56,1],[-17,0],[-21,0],[-32,1],[-34,-1],[-23,-1],[-19,-1],[-17,0],[-21,-1],[-31,-1],[-47,-1],[-22,0],[-29,-1],[-20,-1],[-17,0],[-23,0],[-17,-1],[-21,0],[-30,0],[-15,0],[-14,0],[-30,1],[-84,0],[-26,1],[-25,0],[-25,1],[-28,1],[-18,1],[-31,0],[-81,3],[-36,1],[-24,-2],[-190,7],[-16,1],[-43,1]],[[25508,71032],[-20,-1],[-1,0],[-32,-1],[-22,-1],[-13,-1],[-14,0],[-87,-4],[-3,0],[-28,3]],[[73290,85449],[-16,-44],[0,-49],[-2,-22],[-4,-8],[-51,-129],[-37,-129],[-7,-49],[-7,-50],[29,-136],[4,-21],[-4,-27],[-11,-26],[-27,-54],[-7,-8],[-27,-38],[-66,-67],[-14,-14],[-28,-44],[-22,-19],[-33,-28],[-26,-39],[-30,-58],[-39,-72],[-19,-12],[-23,-2],[-13,15],[-8,13],[-7,9],[-10,26],[-3,38],[2,36],[10,34],[10,35],[0,20],[-6,11],[-9,-3],[-17,-14],[-16,-20],[-10,-12],[-39,-51],[-66,-134],[-59,-126],[-16,-44],[-1,0],[-13,-42],[-12,-31],[-25,-44],[-44,-50],[-17,-35],[-6,-26],[-7,-99],[-3,-68],[3,-73],[-6,-22],[-18,-90],[-5,-46],[-1,-22],[-2,-55],[-4,-41],[-9,-16],[-14,-11],[-12,-3],[-1,-1],[-12,29],[-3,5],[-14,23],[-9,5],[-16,-8],[-14,-24],[-12,-53],[2,-67],[-4,-11],[-5,-34],[-9,-38],[-6,-27],[0,-1],[-4,-19],[-7,-28],[-10,-45],[0,-1],[-17,-41],[-11,-48],[-7,-42],[-18,-100],[-18,-149],[-8,-115],[-7,-47],[-13,-61],[-9,-38],[-14,-28],[-4,-7],[-3,-3],[-20,-17],[-30,-20],[-21,0],[-26,29],[-17,20],[-27,36],[-19,40],[-1,34],[10,51],[18,34],[14,27],[-1,60],[-9,5],[-6,4],[-6,4],[-22,-16],[-16,-33],[-7,-53],[-7,-32],[-8,-34],[-7,-31],[-37,-163],[-28,-133],[1,-72],[4,-67],[12,-37],[11,-37],[-7,-37],[-25,-36],[-19,-17],[-52,-41],[-30,-8],[-19,5],[-17,31],[-39,54],[-37,31],[-24,-21],[-23,-45],[-76,-262],[-10,-33],[-21,-64],[-14,-42],[-19,-39],[-15,-29],[-9,-54],[8,-74],[28,-83],[29,-27],[16,-10],[16,-10],[13,-20],[5,-47],[-29,-116],[-3,-7],[-52,-105],[-24,-25],[-18,-20],[-24,2],[-32,8],[-14,-5],[-1,-9],[-4,-24],[-3,-22],[13,-56],[16,-48],[17,-27],[24,-20],[20,-4],[17,8],[27,9],[17,-6],[16,-19],[10,-70],[-4,-67],[5,-90],[6,-69],[-4,-44],[-15,-68],[-15,-52],[-39,-82],[-17,-19],[-19,-11],[-29,16],[-20,15],[-2,-21],[0,-1],[-2,-16],[10,-25],[34,-90],[16,-40],[163,-429],[28,-73],[15,-31],[104,-219],[34,-57],[53,-90],[12,-21],[4,-1],[13,9],[19,21],[19,7],[18,-6],[15,-17],[7,-18],[5,-10],[4,-47],[-4,-38],[-7,-21],[-5,-17],[-8,-48],[-8,-34],[-11,-31],[-15,-25],[-11,-19],[-15,-17],[-2,-24],[6,-15],[39,-111],[2,-5],[174,-485],[89,13],[0,-1],[15,-2],[13,4],[18,26],[15,7],[12,-28],[-4,-43],[-7,-38],[-7,-26],[-3,-10],[-3,-2],[-16,-10],[-10,-3],[-8,-16],[-69,-130],[6,-54],[2,-24],[7,-18],[20,-51],[12,-30],[19,-39],[13,-20],[17,-23],[15,-18],[29,-33],[13,-12],[24,-14],[14,-5],[13,-3],[30,7],[19,10],[17,11],[16,19],[13,16],[13,9],[15,-5],[8,-31],[-3,-50],[-9,-44],[-11,-45],[-11,-32],[-19,-27],[-21,-14],[-20,-6],[-17,-1],[-17,-15],[-4,-11],[-1,-1],[-5,-13],[1,-33],[11,-38],[10,-24],[10,-43],[11,-34],[11,-27],[14,-26],[14,-21],[23,-26],[18,-13],[16,-19],[12,-18],[19,-32],[4,-8],[16,-30],[22,-43],[16,-29],[11,-24],[18,-38],[12,-18],[12,-18],[12,-22],[13,-24],[11,-30],[12,-51],[2,-36],[-1,-30],[-1,-8],[-16,-33],[-2,-2],[-11,-7],[-15,3],[-16,-10],[-18,-6],[-13,-17],[6,-38],[11,-34],[9,-25],[2,-7],[59,-122],[101,-207],[78,-162],[41,-84],[90,-186],[15,-13],[22,-8],[20,-13],[13,-13],[21,-12],[27,-9],[16,-7],[26,-19],[11,-20],[12,-33],[10,-44],[1,-33],[0,-26],[-1,-28],[2,-31],[1,-8],[0,-7],[-1,-19],[-1,-7],[-1,-22],[-2,-15],[-5,-31],[-3,-33],[1,-4],[11,-40],[17,-26],[17,-26],[13,-13],[10,-1],[70,-16],[75,-17],[3,0],[16,5],[16,15],[10,26],[6,42],[-4,43],[-10,25],[-13,18],[-14,10],[-18,13],[-13,23],[6,39],[14,18],[14,-3],[15,-24],[12,-23],[14,-29],[11,-23],[13,-29],[23,-46],[11,-21],[7,-33],[-1,-56],[0,-35],[-6,-34],[-13,-36],[-8,-29],[-19,-15],[-21,-2],[-16,11],[-21,26],[-12,18],[-14,12],[-19,-9],[-16,-33],[-19,-21],[-25,-7],[-19,-10],[-2,-4],[-9,-30],[-1,-4],[4,-62],[9,-54],[5,-14],[35,-101],[20,-42],[6,-4],[19,3],[11,2],[1,0],[1,2],[29,73],[11,10],[7,7],[59,13],[11,6],[22,14],[9,5],[50,50],[3,12],[1,6],[3,0],[54,12],[25,-83],[8,-41],[16,-79],[9,-50],[9,-45],[20,-95],[11,-50],[16,-78],[22,-153],[2,-50],[-1,-112],[4,-37],[7,-54],[0,-1],[22,-103],[2,-3],[11,-22],[44,5],[11,21],[4,21],[0,58],[11,54],[2,3],[18,32],[4,7],[5,1],[15,3],[25,-18],[82,-56],[2,-2],[58,-84],[17,-25],[14,-20],[5,-6],[19,-19],[35,-58],[3,-9],[6,-20],[-2,-128],[0,-9],[-6,-45],[-1,-2],[-22,-37],[-35,-9],[-68,-32],[-122,1],[-16,10],[-13,7],[-17,9],[-13,18],[-32,-2],[-21,-12],[-18,-16],[-18,-20],[-31,8],[-33,19],[-24,12],[-20,10],[-15,-7],[-12,-17],[-14,-16],[-3,-47],[5,-38],[5,-44],[10,-76],[3,-46],[3,-35],[3,-37],[1,-34],[-3,-35],[2,-37],[0,-11],[0,-49],[6,-40],[7,-19],[2,-5],[3,-7],[12,-19],[17,-28],[6,-9],[9,-13],[14,45],[25,49],[17,17],[34,20],[42,20],[17,8],[19,8],[25,11],[2,1],[96,30],[31,3],[17,1],[16,13],[3,6],[10,19],[21,25],[51,34],[5,-1],[29,-3],[3,0],[11,-9],[13,-11],[13,-24],[3,-5],[1,-14],[5,-40],[1,-75],[-16,-50],[-17,-37],[-8,-31],[-5,-19],[-10,-40],[-1,-6],[-4,-46],[0,-58],[9,-37],[9,-16],[19,-33],[1,0],[48,-41],[64,-37],[24,-12],[2,-1],[17,-7],[62,-16],[11,0],[7,0],[17,0],[44,19],[24,11],[13,12],[44,55],[13,25],[10,33],[0,33],[-13,33],[-7,25],[-6,37],[0,50],[6,29],[15,22],[3,3],[5,0],[12,0],[11,0],[11,-4],[2,-1],[37,-35],[1,-1],[2,-4],[7,-11],[21,-34],[14,-37],[20,-124],[-2,-79],[-11,-92],[0,-41],[3,-16],[4,-17],[4,-17],[20,-33],[20,-8],[28,0],[27,17],[58,84],[44,79],[3,7],[12,31],[5,12],[2,79],[-3,25],[-15,95],[-18,37],[-5,94],[-4,59],[2,71],[9,33],[24,66],[0,1],[19,37],[0,33],[7,38],[23,20],[67,-11],[38,-7],[31,-5],[51,-9],[75,-29],[15,-6],[10,-9],[45,-41],[33,-20],[15,1],[31,4],[24,0],[29,0],[11,-8],[31,0],[5,-4],[28,-27],[47,-46],[101,-83],[94,-78],[129,-204]],[[75875,72379],[0,-12],[0,-9],[0,-24],[-1,-141],[-1,-131],[0,-1],[0,-39],[0,-53],[0,-18],[-1,-76],[-2,-423],[0,-17],[0,-16],[-1,-114],[0,-163],[-1,-175],[-20,-24],[-1,-149],[0,-21],[0,-22],[-3,-116],[-3,-93],[0,-34],[2,-127],[3,-134],[0,-117],[-1,-112],[0,-111],[0,-34],[0,-35],[-1,-81],[-1,-75],[0,-53],[0,-40],[0,-31],[0,-32],[0,-17],[0,-17],[0,-40],[0,-19],[0,-19],[0,-65],[0,-53],[0,-19],[0,-17],[0,-87],[0,-36],[3,-251],[2,-79],[2,-255],[0,-17],[0,-17],[0,-132],[0,-120],[0,-2],[-1,-89],[0,-95],[-56,-1],[-21,0],[-22,0],[-24,0],[-19,0],[-18,0],[-9,0],[-10,0],[-20,1],[-23,0],[-23,0],[-43,1],[-13,0],[-13,0],[-27,1],[-18,0],[-20,1],[-52,1],[-48,1],[-10,1],[-11,0],[-66,2],[-57,1],[-40,0],[-21,0],[-20,0],[-111,0],[-155,-1],[-39,0],[-108,0],[-65,0],[-23,0],[-23,0],[-3,0],[-70,0],[-72,1],[-21,1],[-20,1],[-36,2],[-29,0]],[[74370,68093],[0,296],[0,178],[0,71],[0,124],[0,45],[1,44],[0,1],[0,48],[0,48],[-1,112],[-154,1],[-94,0],[-162,1],[-85,0],[-10,0],[-130,1],[-94,0],[-64,0],[-105,1],[-61,0],[-68,0],[-27,0],[-32,1],[-25,0],[-16,0],[-18,0],[-67,0],[-60,0],[-32,0],[-105,1],[-114,0],[-140,1],[-115,1],[-26,0],[-54,1],[-93,2],[-29,1],[-98,0],[-264,5],[-47,1],[-27,1],[-87,0],[-65,-2],[-70,-1],[-50,-2],[-56,-1],[-1,587],[-18,-1],[-1,-1],[-19,-20],[-31,-18],[-15,0],[-16,4],[-8,6],[-12,10],[-5,2],[-15,7],[-4,3],[-22,17],[-33,5],[-16,-2],[-14,-12],[-21,-18],[-16,-26],[-11,-19],[-2,-8],[-16,-52],[-13,-32],[-4,-10],[-3,-8],[-13,-29],[-18,-41],[-29,-77],[-12,-25],[-14,-24],[0,1],[-13,9],[-57,42],[-28,21],[1,195],[-95,5],[-29,1],[-44,0],[-19,1],[-16,0],[-37,1],[-4,0],[-175,3],[-29,0],[-29,1],[-46,0],[-18,-1],[-14,1],[-21,0],[-151,0],[-20,1],[-44,0],[-18,0],[-18,1],[-22,0],[-28,-1],[-33,0],[-14,0],[-13,0],[-29,0],[-43,0],[-28,1],[-19,0],[-18,1],[-22,1],[-18,0],[-70,1],[-50,0],[-15,1],[-172,1],[-19,0],[9,1166],[10,1094],[2,2075],[0,7],[-616,7],[-11,0],[-17,0],[-32,0],[-14,0],[-17,0],[-16,1],[-33,2],[-65,2],[-45,2],[-65,3],[-19,1],[-19,1],[-35,1],[-45,2],[-64,-2],[-18,-1],[-1,0],[-41,3],[-32,3],[-30,2],[-23,2],[-24,2],[-15,1],[-15,1],[-47,-3],[-26,-2],[-23,1],[-31,0],[-65,2]],[[80609,73833],[0,-66],[0,-34],[0,-87],[0,-47],[-1,-135],[0,-102],[0,-233],[-1,-398],[0,-103],[-1,-34],[-1,-62],[2,-102],[0,-48],[-1,-120],[0,-54],[0,-46],[0,-94],[0,-84],[-1,-70],[0,-350],[0,-152],[-1,-42],[0,-171],[0,-133],[0,-34],[0,-79],[-36,-27],[-4,1],[-39,7]],[[80525,70934],[1,45],[6,50],[1,5],[5,40],[3,33],[6,95],[-9,57],[-10,41],[-13,19],[-19,12],[-35,0],[-30,2],[-22,0],[-43,2],[-15,1],[-1,0],[-14,2],[-19,1],[-19,11],[-18,13],[-27,21],[-27,28],[-27,34],[-24,47],[-17,29],[-15,21],[-26,18],[-44,41],[-28,28],[-25,11],[-13,1],[-14,2],[-15,8],[-16,12],[-25,11],[-34,27],[-19,29],[-19,49],[-3,41],[1,45],[4,47],[18,53],[23,48],[28,34],[26,16],[16,0],[25,0],[28,-9],[25,0],[29,-4],[25,-8],[31,-9],[14,-11],[12,-15],[11,-23],[24,-44],[11,-20],[15,-30],[15,-16],[8,-3],[10,-3],[18,1],[15,7],[19,18],[8,31],[3,40],[-1,39],[-5,39],[-11,43],[-9,29],[-18,42],[-14,36],[-21,46],[-17,45],[-10,29],[-9,31],[-9,36],[-9,36],[-11,57],[-10,58],[-5,69],[-32,56],[-19,50],[-19,46],[-16,40],[-10,25],[-11,28],[-12,32],[-12,34],[-13,40],[-11,23],[-11,21],[-13,25],[-33,55],[-21,1],[-27,0],[-16,-10],[-44,-49],[-14,-7],[-20,-2],[-15,4],[-14,18],[-23,51],[-19,54],[-9,29],[-19,65],[-26,59],[-34,30],[-21,1],[-26,-8],[-16,-31],[-25,-115],[-8,-65],[-9,-80],[-14,-54],[-18,-39],[-13,-23],[-15,-19],[-20,-16],[-29,-14],[-31,-2],[-19,9],[-19,13],[-15,11],[-7,6],[1,49],[6,21],[-2,58],[-7,20],[-17,29],[-29,-4],[-6,-8],[-50,-92],[-25,-45],[-50,-5],[-35,9],[-79,107],[-2,1],[-22,20],[-38,12],[-54,-4],[-18,-9],[-44,-66],[-22,-4],[-33,8],[-35,29],[-19,37],[-40,220],[0,45],[-22,170],[-35,75],[-33,45],[-20,17],[-33,0],[-33,-21],[-46,-37],[-9,-9],[-6,-20],[-35,-104],[0,-17],[-13,-29],[-29,-13],[-7,-7],[-69,-68],[-16,-29],[-6,-12],[-29,-9],[-13,17],[-22,-8],[-35,-1],[-31,29],[-8,0],[-21,14],[-4,3],[-15,29],[-7,41],[0,67],[-61,173],[-13,25],[-27,26],[-31,-14],[-54,-25],[-88,-40],[-29,-13],[-15,-80],[-15,-129],[-24,-74],[-24,-38],[-9,-12],[-4,-13],[-20,-90],[-2,-10],[-12,-42],[-27,-90],[-12,-30],[-54,-128],[-30,-63],[-56,-134],[-16,-32],[-9,-13],[-16,0],[-37,0],[-29,8],[-19,4],[-15,21],[-38,70],[-67,127],[-42,80],[-16,46],[-4,29],[-57,124],[-9,20],[-30,25],[-28,22],[-4,3],[-26,12],[-22,8],[-6,0],[-26,0],[-1,0],[-1,0],[-9,-7],[-1,-1],[-13,-25],[-11,-13],[-44,-46],[-8,-6],[-97,-143],[-45,-61],[-20,-26],[-18,-22],[-19,-62],[-20,-117],[-4,-78],[0,-63],[-4,-54],[-18,-112],[-41,-83],[-48,-116],[-9,-34],[-26,-108],[-28,-79],[-20,-37],[-20,-25],[-35,8],[-43,0],[-62,-63],[-11,-17],[-7,-5],[-6,-3],[-33,0],[-24,41],[-10,27],[-5,18],[2,54],[22,38],[2,4],[46,54],[22,42],[13,66],[0,79],[-9,112],[-11,42],[-22,41],[-29,25],[-24,8],[-33,-9],[-11,-12],[-11,-21],[-22,-63],[2,-51],[3,-110],[-4,-25],[-26,-50],[-9,-9],[-55,-4],[-3,1],[-61,23],[-17,17],[-56,94],[-14,26],[-32,53],[-9,6],[-15,25],[-4,16],[-6,22]],[[92060,80563],[7,-250],[6,-242],[0,-419],[0,-56],[0,-34],[1,-49],[0,-36],[0,-52],[-1,-79],[0,-46],[-1,-35],[0,-35],[1,-79],[0,-53],[0,-105],[0,-123],[1,-180],[-1,-47],[0,-480],[-1,-95],[0,-61],[0,-41],[0,-145],[0,-59],[0,-44],[0,-43],[0,-42],[1,-52],[0,-50],[0,-41],[0,-57],[1,-40],[0,-201],[0,-57],[0,-58],[0,-86],[0,-43],[0,-47],[0,-46],[-1,-157],[-1,-121],[0,-40],[0,-49],[-1,-45],[0,-36],[0,-75],[0,-41],[-1,-66],[-1,-35],[0,-111],[0,-34],[0,-38],[1,-33],[-1,-47],[1,-80],[-1,-75],[1,-35],[-1,-46],[1,-36],[0,-44],[-1,-37],[1,-46],[-1,-39],[1,-53],[-1,-36],[0,-48],[0,-81],[0,-4],[0,-46],[0,-67],[0,-54],[-2,-75],[0,-85],[1,-259],[0,-138],[0,-88],[0,-54],[0,-55],[0,-53],[0,-52],[0,-51],[0,-55],[0,-74],[0,-73],[0,-49],[0,-51],[0,-49],[0,-53],[0,-38],[0,-65],[0,-33],[0,-57],[0,-33],[0,-41],[-1,-115],[0,-67],[0,-57],[0,-33],[0,-42],[0,-44],[0,-65],[0,-61],[0,-35],[0,-108],[-1,-36],[1,-26],[0,-33],[0,-63],[0,-66],[-1,-53],[0,-43],[1,-90],[0,-63],[0,-76],[1,-51],[-1,-51],[0,-51],[0,-38],[0,-39],[1,-55],[0,-61],[0,-57],[0,-50],[0,-33],[0,-46],[0,-61],[0,-67],[0,-59],[0,-66],[0,-90],[0,-64],[0,-40],[0,-38],[0,-52],[-1,-41],[3,-148],[1,-162],[-50,0],[-56,1],[1,-46],[0,-85],[0,-14],[0,-23],[0,-45],[1,-51],[-1,-34],[1,-125],[1,-254],[0,-213],[0,-60],[0,-67],[0,-60],[0,-40],[0,-34],[0,-60],[4,-293],[0,-128],[0,-64],[-1,-63],[1,-59],[-1,-35],[1,-35],[1,-41],[1,-115],[1,-295],[0,-67],[1,-88],[0,-173],[1,-42],[0,-108]],[[91977,68107],[-106,3],[-22,1],[-28,0],[-29,-2],[-31,2],[-54,0],[-105,0],[-73,1],[-30,0],[-16,-1],[-14,-2],[-16,1],[-17,0],[-18,0],[-22,0],[-29,0],[-17,0],[-39,0],[-56,1],[-8,0],[-15,0],[-180,-2],[-132,-2],[-16,0],[-16,0],[-13,0],[-7,0],[-59,1],[-17,31],[-29,38],[-25,33],[-17,-4],[-19,0],[-22,-9],[-23,-46],[1,-90],[39,-136],[5,-53],[-8,-123],[-14,-29],[-12,-6],[-3,-2],[-49,116],[-17,77],[-25,116],[-29,10],[-53,17],[-51,-57],[-16,-16],[-19,-17],[-44,-53],[-15,-20],[-78,-83],[-6,-7],[-176,-100],[-12,1],[-39,3],[-19,1],[-49,4],[-81,6],[-27,2],[-28,21],[-32,22],[-59,44],[-22,22],[-108,115],[-155,163],[-50,53],[-32,27],[-13,11],[-29,30],[-30,29],[-8,9],[-5,5],[-13,15],[-16,21],[-18,33],[-7,12],[-15,35],[-20,48],[-21,48],[-12,33],[-11,33],[-10,26],[-4,9],[-3,8],[-24,54],[-24,30],[-16,17],[-22,20],[-55,44],[-27,18],[-55,37],[-75,50],[-65,43],[-7,5],[-22,15],[-25,16],[-40,6],[-22,-1],[-62,-3],[-77,-3],[-34,-1],[-51,-26],[-149,-74],[-62,-65],[-29,-30],[-261,-274],[-74,-19],[-11,-3],[-36,44],[-25,31],[-8,9]],[[87781,68524],[-12,39],[-14,49],[-12,28],[-18,43],[-17,34],[-16,46],[-17,35],[-18,24],[-17,18],[-19,16],[-23,17],[-33,1],[-17,-18],[-9,-9],[-3,-4],[-16,-15],[-29,-28],[-15,1],[-16,6],[-21,3],[-71,12],[-4,1],[-16,3],[-24,11],[-2,1],[-2,2],[-12,14],[-13,16],[-38,47],[-4,4],[-27,13],[-29,1],[-16,-5],[-25,-7],[-25,-11],[-22,-24],[-19,-18],[-15,-18],[-21,-29],[-20,-36],[-8,-14],[-15,-30],[-12,-23],[-21,-28],[-27,-36],[-15,-19],[-17,-24],[-13,-16],[-14,-22],[-23,-33],[-39,-41],[-12,-8],[-13,-9],[-26,-18],[-15,-10],[-16,-8],[-17,-4],[-26,-5],[-3,-1],[-21,-2],[-21,33],[-15,21],[-15,24],[-15,24],[-28,44],[-17,36],[-15,29],[-85,180],[-1,117],[15,239],[1,8],[7,279],[2,92],[3,104],[17,693],[4,159],[0,5],[7,263],[4,149],[31,-1],[13,-3],[15,24],[0,115],[-2,347],[0,61],[-1,297],[-1,145],[0,53],[0,56],[0,3],[-1,80],[-1,169],[2,183],[0,38],[0,118],[0,44],[0,37],[0,33],[0,45],[0,42],[-1,52],[0,50],[0,37],[0,49],[0,54],[0,38],[0,137],[1,305],[1,56],[1,95],[0,52],[0,79]],[[94900,80552],[12,-18],[7,-8],[20,-22],[16,-18],[5,-5],[16,-12],[15,-10],[36,-22],[14,-11],[14,-13],[24,-19],[10,-9],[25,-33],[24,-38],[18,-39],[3,-8],[23,-56],[11,-42],[11,-56],[1,-69],[-7,-88],[1,-40],[4,-97],[1,-38],[7,-42],[22,-93],[28,-69],[31,-52],[20,-28],[14,-19],[27,-19],[20,-14],[11,-4],[21,-8],[59,-7],[52,-3],[20,4],[30,6],[21,18],[24,21],[23,28],[21,24],[38,41],[49,61],[13,14],[1,1],[43,45],[23,18],[30,10],[12,-1],[5,0],[22,-1],[17,-2],[18,-4],[46,-32],[7,-9],[22,-28],[23,-50],[19,-63],[22,-75],[14,-58],[10,-60],[12,-77],[3,-76],[0,-59],[-9,-48],[-8,-61],[-11,-54],[0,-3],[-2,-11],[-10,-28],[-17,-54],[-21,-47],[-30,-35],[-27,-29],[-23,-21],[-47,-32],[-30,-17],[-31,-20],[-20,-14],[-28,-35],[-21,-40],[-12,-22],[-30,-61],[-14,-35],[-9,-29],[-5,-18],[-9,-55],[-4,-33],[-4,-63],[-1,-44],[4,-76],[0,-44],[4,-30],[1,-12],[5,-94],[7,-70],[1,-54],[1,-12],[2,-63],[2,-36],[0,-14],[0,-20],[2,-81],[0,-11],[1,-55],[3,-79],[3,-55],[16,-223],[1,-9],[8,-78],[13,-91],[6,-50],[10,-63],[14,-75],[4,-19],[4,-20],[8,-45],[14,-64],[13,-52],[5,-20],[11,-42],[26,-74],[22,-61],[21,-53],[11,-24],[19,-46],[27,-62],[11,-21],[24,-52],[32,-69],[2,-4],[21,-30],[11,-17],[15,-26],[30,-27],[42,-36],[21,-21],[31,-22],[25,-17],[13,-10],[39,-37],[2,-2],[24,-25],[30,-29],[5,-4],[27,-24],[15,-15],[35,-38],[27,-32],[24,-33],[22,-28],[5,-6],[15,-19],[25,-31],[24,-34],[22,-38],[24,-48],[27,-50],[16,-31],[16,-32],[15,-32],[13,-31],[9,-21],[11,-28],[15,-37],[13,-40],[3,-10],[7,-25],[7,-22],[10,-36],[7,-36],[7,-35],[1,-4],[5,-27],[2,-16],[3,-34],[4,-35],[4,-33],[5,-49],[3,-42],[4,-62],[-2,-36],[0,-39],[-4,-39],[-5,-39],[-8,-54],[-10,-50],[-9,-44],[-12,-45],[-13,-49],[-11,-32],[-15,-36],[-9,-27],[-8,-28],[-14,-57],[-5,-35],[-1,-4],[1,-44],[3,-39],[9,-47],[8,-48],[16,-38],[8,-26],[16,-28],[43,-71],[19,-30],[17,-28],[18,-26],[18,-26],[20,-21],[8,-7],[12,-10],[32,-19],[31,-18],[36,-16],[41,-15],[40,-4],[7,-1],[32,-6],[33,5],[37,7],[27,9],[22,8],[26,17],[20,5],[16,4],[23,2],[19,-1],[14,-5],[14,-11],[22,-18],[20,-39],[18,-27],[21,-43],[10,-30],[9,-27],[12,-40],[10,-56]],[[97502,73248],[-14,8],[-14,6],[-11,4],[-153,51],[-187,1],[-138,14],[-1,0],[-58,5],[-14,1],[-41,2],[-18,1],[-10,0],[-33,0],[-17,0],[-20,1],[-58,3],[-151,6],[-30,1],[-44,4],[-95,2],[-77,1],[-251,12],[-242,10],[-4,-18],[-3,-13],[0,-90],[-1,-39],[0,-80],[0,-49],[0,-39],[0,-48],[0,-38],[0,-33],[0,-67],[-1,-81],[0,-64],[0,-46],[0,-46],[-1,-59],[0,-46],[0,-47],[0,-93],[-1,-104],[0,-69],[0,-62],[0,-44],[-1,-65],[0,-40],[0,-45],[0,-44],[0,-34],[0,-36],[-1,-74],[0,-44],[0,-52],[-1,-39],[0,-96],[1,-140],[0,-39],[0,-40],[-2,-84],[-1,-62],[-1,-83],[-1,-35],[-1,-43],[-1,-87],[-41,-10],[-51,0],[-1,-73],[0,-38],[-1,-98],[0,-50],[-1,-158],[0,-2],[-1,-293],[-1,-219],[0,-44],[-1,-167],[0,-95],[0,-37],[0,-5],[0,-45],[0,-61],[0,-46],[0,-118],[0,-206],[0,-120],[0,-274],[0,-82],[-1,-112],[0,-4],[0,-137],[0,-45],[0,-59],[0,-52],[0,-102],[0,-77],[-1,-85],[0,-168],[0,-64],[1,-139],[0,-102],[0,-90],[0,-39],[0,-48],[0,-100],[0,-104],[1,-57],[0,-4],[0,-300],[0,-278],[0,-109],[-1,-50]],[[95706,66358],[-16,-40],[-13,-38],[-18,-45],[-24,-45],[-33,-64],[-29,-25],[-4,2],[-7,3],[-19,38],[-4,99],[2,25],[39,142],[22,77],[0,54],[-4,37],[-17,66],[-26,51],[-17,17],[-10,0],[-17,-9],[-48,-39],[-50,-28],[-36,-15],[-1,0],[-6,-18],[-5,-16],[-25,-54],[-38,-115],[-10,-82],[0,-29],[-9,-58],[-15,-29],[-29,-12],[-4,-5],[-7,-7],[-10,-18],[-34,-60],[-35,-49],[-16,-8],[-53,-7],[-1,0],[-5,0],[-43,-10],[-5,-1],[-23,0],[-18,0],[-22,1],[-29,13],[-34,30],[-46,38],[-39,75],[-8,34],[-5,37],[-43,88],[-30,34],[-24,5],[-11,-13],[-31,5],[-159,140],[-11,17],[-9,13],[-3,5],[-2,1],[-96,60],[-180,-31],[-22,-4],[-13,-3],[-27,-114],[1,-19],[5,-87],[3,-44],[10,-119],[1,-9],[-3,-39],[-3,-45],[-4,-51],[-17,-45],[-36,-94],[-48,-74],[-50,-37],[-51,-14],[-54,83],[-42,44],[-51,11],[-1,0],[-4,7],[-7,9],[-23,41],[-15,24],[-22,33]],[[93730,66049],[-24,49],[-26,42],[-79,46],[-16,-9],[-50,-27],[-5,-2],[-38,-27],[-19,-14],[-39,-32],[-63,-68],[-37,-45],[9,-165],[13,-79],[8,-56],[27,-57],[42,-59],[14,-141],[-22,-111],[-51,-85],[-5,-3],[-65,-41],[-65,0],[-37,0],[-43,26],[-6,3],[-67,89],[-18,70],[-5,20],[-5,41],[0,2],[28,87],[-14,110],[-45,42],[-16,-5],[-19,-6],[-22,-6],[-73,-23],[-1,0],[-43,-59],[-56,-10],[-30,-6],[-44,50],[-13,12],[-103,85],[-107,98],[-4,4],[-10,9],[-73,66],[-57,56],[-20,16],[-16,14],[-25,25],[-6,-53],[0,-51],[1,-64],[0,-48],[3,-11],[1,-73],[-1,-31],[0,-12],[-22,-56],[-39,-59],[-85,-48],[-7,-7],[-84,-14],[-64,18],[-4,48],[-1,210],[0,59],[-1,154],[-1,239],[0,72],[-1,32],[0,138],[-1,111],[0,6],[0,109],[0,73],[0,28],[-1,37],[0,42],[0,7],[-1,28],[0,56],[0,46],[-1,183],[-1,383],[-2,476],[0,104]],[[62714,71025],[-1,-159],[0,-72],[1,-308],[0,-371],[0,-53],[-1,-479],[0,-130],[0,-36],[0,-76],[1,-209],[0,-34],[-1,-38],[1,-139],[-1,-108],[0,-83],[1,-94],[0,-20],[0,-47],[0,-51],[0,-19],[0,-56],[0,-49],[1,-109],[-1,-119],[-1,-66],[0,-76],[0,-102],[0,-268],[0,-4],[0,-426],[0,-53],[0,-106],[0,-40],[-1,-66],[1,-54],[-1,-149],[0,-23],[0,-24],[1,-38],[0,-39],[1,-49],[-2,-35],[0,-110],[-1,-102],[0,-76],[0,-40],[0,-46],[0,-42],[0,-40],[-1,-57],[0,-42],[1,-38],[0,-54],[-1,-72],[0,-43],[0,-59],[-1,-77],[0,-107],[0,-51],[-1,-104],[-1,-144]],[[62707,65244],[-49,4],[-202,3],[-73,1],[-7,1],[-8,0],[-162,2],[-50,0],[-64,-1],[-135,-1],[-215,1],[-35,0],[-57,1],[-22,0],[-4,0],[-43,0],[-45,0],[-102,0],[-1,0],[-152,1],[-63,-1],[-57,-1],[-57,0],[-121,-1],[-13,-1],[-249,1],[-49,0],[-76,0],[-88,-1],[-38,0],[-115,-1],[-116,-1],[-17,0],[-248,-3],[-243,-2],[-14,0],[-40,1],[-196,1],[-36,1],[-137,2],[-73,0],[-92,-2],[-34,-1],[-8,1],[-8,2],[-22,3],[-48,0],[-40,0],[-131,-1],[-124,1],[-18,0],[-157,0],[-27,0],[-43,0],[-126,-1],[-50,0],[-82,0],[-118,0],[-117,0],[-3,0],[-14,0],[-31,-1],[-25,0],[-187,1],[-63,-1],[-28,2],[-6,1],[-152,-3],[-34,1],[-24,0],[-1,0],[-32,-1],[-33,0],[-125,-1],[-128,-1],[-51,0],[-70,0],[-169,3],[-84,2],[-37,-1],[-123,0],[-71,0],[-25,1],[-205,-3],[-37,0],[-152,2],[-38,0],[-62,0],[-22,0],[-102,1],[-255,2],[-117,0],[-21,0],[-119,1],[-32,0],[-67,5]],[[55245,65262],[0,54],[0,77],[1,53],[-1,67],[1,56],[0,51],[0,78],[0,40],[0,146],[0,56],[0,56],[1,71],[0,83],[0,43],[0,50],[0,44],[0,59],[0,76],[0,52],[0,55],[0,70],[0,9],[0,24],[0,71],[0,160],[0,42],[0,23],[0,88],[0,49],[0,48],[0,71],[0,2],[1,171],[0,111],[0,53],[0,83],[0,65],[-7,481],[-1,483],[0,168],[0,37],[1,132],[-1,45],[1,282],[0,418],[1,356],[-1,490],[7,233],[-1,83],[0,151],[-26,3],[4,123],[1,123],[0,37],[0,50],[0,52],[0,50],[0,49],[0,47],[0,9],[0,56],[1,244],[1,48],[0,4],[0,197],[0,38],[0,51],[0,98],[0,116],[1,42],[-1,59],[0,349],[0,88],[0,135],[0,62],[0,35],[1,203],[1,45],[-7,480]],[[74370,68093],[0,-478],[0,-37],[0,-40],[0,-119],[0,-111],[0,-170],[0,-97],[0,-29],[0,-30],[0,-200],[-1,-139],[0,-36],[-1,-103],[0,-94],[-1,-59],[0,-62],[0,-22],[0,-22],[0,-34],[-1,-36],[-1,-261],[0,-146],[-1,-40],[0,-17],[0,-17],[0,-147],[0,-157],[0,-100],[0,-94],[0,-175],[0,-187],[0,-75],[0,-193],[0,-180],[0,-73],[0,-77],[0,-48],[0,-133],[0,-126],[0,-20],[0,-21],[-1,-27],[0,-26],[0,-86],[0,-888],[0,-239],[0,-68],[0,-61],[2,-148],[0,-28]],[[74365,62317],[-8,0],[-8,0],[-9,0],[-47,1],[-54,2],[-35,0],[-3,0],[-30,0],[-34,0],[-22,-2],[-26,0],[-15,0],[-15,0],[-35,1],[-35,0],[-31,1],[-30,0],[-22,1],[-21,0],[-10,0],[-9,0],[-75,2],[-21,0],[-23,1],[-36,1],[-10,0],[-10,0],[-9,0],[-9,0],[-14,1],[-14,0],[-14,0],[-15,1],[-73,1],[-52,0],[-15,0],[-14,1],[-21,0],[-22,0],[-50,2],[-8,0],[-8,0],[-38,1],[-30,0],[-31,0],[-15,0],[-26,1],[-40,1],[-23,0],[-22,0],[-3,0],[-43,1],[-46,0],[-58,0],[-47,0],[-26,0],[-26,0],[-43,0],[-53,0],[-33,-1],[-43,0],[-23,0],[-27,0],[-27,0],[-24,-1],[-24,0],[-19,0],[-19,0],[-106,-1],[-8,0],[-7,0],[-13,0],[-12,0],[-8,0],[-8,0],[-40,2],[-37,2],[-28,1],[-32,0],[-32,0],[-80,1],[-17,0],[-17,0],[-6,0],[-66,0],[-72,-1],[-19,0],[-20,0],[-35,0],[-105,0],[-107,0],[-41,-2],[-12,1],[-12,0],[-49,-1],[-45,-1],[-10,0],[-10,0],[-32,0],[-21,0],[-29,0],[-10,0],[-10,0],[-11,-1],[-11,0],[-11,0],[-10,-1],[-12,0],[-13,1],[-9,0],[-9,0],[-8,-1],[-9,0],[-20,0],[-19,0],[-13,0],[-13,0],[-14,-1],[-14,0],[-25,-1],[-24,0],[-8,0],[-7,0],[-9,0],[-10,0],[-4,0],[-22,0],[-27,-1],[-10,0],[-10,0],[-9,0],[-9,0],[-25,0],[-46,0],[-17,0],[-17,0],[-22,1],[-28,-1],[-28,-2],[-14,1],[-12,0],[-11,0],[-14,-1],[-14,-1],[-23,0],[-18,-1],[-28,0],[-28,-1],[-8,0],[-9,-1],[-28,0],[-29,0],[-16,0],[-20,1],[-6,0],[-15,0],[-19,0],[-19,0],[-26,1],[-28,2],[-56,0],[-18,-2],[-18,-1],[-19,0],[-7,0],[-8,0],[-19,0],[-39,-2],[-18,1],[-9,0],[-8,0],[-22,0],[-22,0],[-13,0],[-13,0],[-9,0],[-9,-1],[-8,1],[-7,0],[-8,0],[-8,0],[-27,0],[-8,1],[-9,0],[-13,-1],[-17,0],[-21,1],[-17,0],[-17,0],[-20,-1],[-29,0],[-29,0],[-49,2],[-52,1],[-29,0],[-20,0],[-32,-1],[-31,1],[-18,-1],[-18,0],[-25,-1],[-86,2],[-105,0],[-14,1],[-16,0],[-53,0],[-53,0],[-39,1],[-38,1],[-16,0],[-16,0],[-19,0],[-19,0]],[[69157,62329],[-13,-1],[-18,6],[-26,1],[-20,-7],[-14,-2],[-10,3],[-7,2],[-23,2],[-23,2],[-7,0],[-7,0],[-17,0],[-17,1],[-78,0],[-78,1],[-17,0],[-18,1],[-4,0],[-19,1],[-5,0],[-11,1],[-3,0],[-26,-1],[-27,-1],[0,34],[0,35],[0,35],[0,49],[0,19],[0,20],[1,218],[0,34],[0,33],[0,68],[-2,44],[2,36],[0,52],[0,20],[1,21],[-2,14],[-1,22],[3,49],[0,36],[-1,37],[0,25],[0,24],[0,42],[0,27],[1,27],[-1,45],[1,18],[2,24],[-2,40],[0,34],[-1,100],[0,32],[0,32],[0,33],[0,33],[0,18],[1,17],[0,44],[0,44],[0,17],[0,17],[0,48],[1,47],[0,67],[-1,68],[0,33],[0,34],[0,33],[0,33],[0,129],[1,33],[0,34],[0,18],[0,18],[-1,66],[1,83],[0,35],[0,33],[0,33],[0,83],[0,83],[0,19],[0,19],[1,230],[0,47],[0,41],[0,42],[1,136],[0,38],[1,64],[0,46],[-1,47],[-6,9],[-6,10],[-10,29],[-2,63],[0,6],[4,6],[12,13],[10,32],[-1,121],[-13,-4],[-7,-1],[-7,0],[-29,-4],[-13,-2],[-19,3],[-7,1],[-7,2],[-18,-42],[1,-21],[1,-16],[10,0],[9,1],[10,3],[14,4],[10,-32],[-2,-16],[-5,-32],[-6,-14],[-6,-14],[-14,-13],[-9,1],[-9,0],[-6,-6],[-1,-1],[-5,-1],[-11,4],[-8,13],[-3,7],[-4,21],[-2,15],[-1,6],[-1,16],[-1,29],[-7,11],[-5,8],[-2,2],[-7,1],[-5,2],[-5,1],[-5,-10],[-10,-20],[-11,-41],[-14,-28],[-27,-56],[-11,-17],[-17,0],[-9,16],[0,18],[0,15],[19,42],[0,17],[-5,20],[-17,29],[-7,4],[-22,-4],[-9,-18],[-1,-3],[-3,-52],[3,-6],[2,-46],[-2,-54],[-20,-42],[-10,-21],[-52,-67],[-1,-1],[-1,-2],[-26,-25],[-10,-11],[-12,-9],[-1,-1],[-12,-8],[-6,-3],[-8,-4],[-2,280],[-2,37],[-2,117],[0,38],[0,34],[0,4],[0,19],[0,19],[1,114],[0,19],[0,19],[0,35],[0,44],[1,49],[0,51],[0,18],[0,19],[0,55],[0,3],[0,15],[0,18],[0,45],[0,45],[0,53],[1,69],[1,172],[1,81],[0,17],[0,17],[0,49],[0,44],[0,50],[0,26],[0,26],[0,68],[1,76],[0,50],[0,54],[0,21],[0,22],[0,18],[0,18],[0,156],[0,4],[0,66],[0,67],[1,39],[0,34],[0,32],[0,19],[0,19],[0,26],[1,27],[0,72],[0,72],[0,51],[0,34],[0,32],[1,42],[0,18],[0,19],[0,44],[1,27],[0,25],[0,17],[-1,18],[0,160],[0,55],[0,54],[0,30],[0,30],[0,39],[0,39],[1,42],[0,32],[0,33],[0,30],[0,30],[0,53],[0,23],[0,24],[-1,44],[1,82],[0,51],[0,155],[0,18],[0,16],[-2,18],[0,9],[-2,19],[0,62],[1,18],[0,19],[0,33],[0,8],[1,96],[1,106],[0,20],[0,21],[0,34],[0,38],[0,38],[-2,47],[1,24],[2,23],[-1,22],[0,23],[0,95],[0,20],[0,19],[0,83],[0,85],[-1,34],[0,34],[0,27],[0,27],[0,26],[0,24],[-1,65],[0,68],[0,54],[-1,54],[0,23],[0,24],[0,20],[0,20],[0,48]],[[55245,65262],[0,-97],[0,-51],[0,-107],[0,-69],[0,-188],[0,-139],[0,-43],[0,-110],[-1,-127],[0,-57],[0,-56],[0,-61],[0,-60],[0,-44],[0,-153],[0,-61],[0,-31],[0,-7],[0,-44],[0,-95],[0,-47],[0,-196],[-1,-48],[1,-44],[-1,-54],[0,-54],[1,-42],[-1,-312],[1,-88],[-4,-46],[2,-122],[2,-41],[0,-35],[0,-78],[-3,-48],[-1,-43]],[[55240,62364],[-30,0],[-19,2],[-44,-4],[-19,0],[-19,0],[-16,-1],[-17,0],[-14,1],[-19,-1],[-27,0],[-21,0],[-28,0],[-17,0],[-14,-1],[-32,0],[-14,2],[-15,-1],[-15,-1],[-17,1],[-20,0],[-24,1],[-53,-1],[-18,2],[-50,0],[-29,-1],[-34,0],[-68,-2],[-30,2],[-19,-1],[-25,0],[-18,0],[-38,1],[-16,1],[-28,-1],[-59,0],[-18,1],[-31,0],[-50,-1],[-131,2],[-33,-1],[-16,1],[-35,1],[-14,-2],[-113,-1],[-48,-1],[-74,-1],[-284,-2],[-5,0],[-9,0],[-195,-2],[-38,3],[-23,0],[-38,-1],[-23,0],[-67,-1],[-49,-1],[-42,-1],[-37,0],[-15,1],[-16,3],[-17,-1],[-125,-8],[-159,10],[-18,0],[-308,-7],[-14,0],[-199,-2],[-52,-11],[-2,0],[-19,0],[-38,2],[-21,0],[-3,0],[-11,0],[-246,14],[-69,6],[-29,-13],[-16,2],[-24,2],[-14,-2],[-11,1],[-139,7],[-105,0],[-89,6],[-169,11],[-53,2],[-26,-7],[-66,1],[-101,-8],[-15,1],[-85,-1],[-48,-1],[-40,1],[-21,0],[-41,0],[-17,-1],[-19,0],[-25,0],[-21,0],[-88,-3],[-18,0],[-21,0],[-19,0],[-22,-1],[-20,0],[-42,-2],[-16,-1],[-30,0],[-18,0],[-18,-1],[-7,0],[-15,0],[-83,-3],[-67,-2],[-17,0],[-41,0],[-85,-3],[-38,0],[-48,0],[-26,1],[-29,0],[-21,0],[-45,1],[-49,1],[-21,0],[-25,3],[-45,1],[-190,-1],[-19,0],[-26,1],[-68,2],[-15,1],[-30,0],[-18,0],[-19,1],[-53,1],[-37,0],[-27,-1],[-20,1],[-27,-1],[-21,0],[-48,-1],[-16,0],[-25,0],[-27,-1],[-27,-2],[-29,2],[-14,-1],[-36,0],[-17,-1],[-22,0],[-31,-1],[-21,1],[-15,-1],[-15,0],[-17,0],[-45,1],[-77,1],[-55,0],[-139,-1],[-161,0],[-89,0],[-64,-4],[-39,3],[-71,0]],[[47791,62353],[2,140],[-1,252],[-1,556],[-1,341],[0,19],[-1,334],[0,4],[-1,33],[-1,39],[0,349],[0,233],[-2,597],[0,153],[-1,9],[0,32],[0,157],[-1,181],[0,138],[0,8],[0,44],[-2,671],[0,50],[1,181],[1,300],[0,218],[-2,84],[-4,135],[-1,45],[5,158],[0,19],[1,19],[9,291],[3,479],[4,482],[0,34],[0,136],[0,73],[0,246],[0,99],[1,49],[0,50],[1,74],[1,90],[0,59],[1,62],[0,47],[1,56],[1,65],[0,47],[1,100],[1,45],[1,123],[0,35],[0,44],[-1,110],[1,46],[0,220],[-1,35],[-30,0],[-14,0],[-17,0],[-22,0]],[[87781,68524],[0,-51],[0,-64],[0,-4],[0,-44],[0,-121],[-8,-63],[-2,-47],[-6,-37],[0,-36],[0,-36],[0,-38],[1,-56],[0,-50],[0,-243],[0,-67],[-1,-35],[2,-245],[2,-41],[0,-2],[0,-6],[-2,-98],[0,-47],[0,-53],[0,-67],[0,-73],[0,-91],[0,-63],[0,-39],[0,-41],[8,-266],[3,-97],[3,-129],[-5,-478],[0,-38],[-2,-67],[0,-36],[0,-49],[0,-89],[0,-127],[0,-81],[0,-41],[0,-129],[-1,-113],[0,-88],[0,-48],[0,-63],[0,-92],[0,-222],[2,-40],[-2,-93],[0,-36],[2,-237],[-1,-78],[-1,-41],[2,-126],[1,-228],[5,-462],[0,-48],[0,-41],[0,-8],[0,-176],[-7,-83],[0,-140],[0,-45],[0,-39],[0,-92],[0,-40],[1,-40]],[[87775,62320],[-224,-14],[-25,1],[-233,-2],[-18,0],[-56,0],[-70,0],[-21,0],[-98,1],[-119,3],[-25,0],[-115,4],[-76,3],[-115,1],[-59,0],[-247,4],[-168,0],[-82,-1],[-40,0],[-16,1],[-14,0],[-171,1],[-257,1],[-31,0],[-41,0],[-24,1],[-61,0],[-32,2],[-59,2],[-51,-3],[-4,0],[-28,-2],[-44,-3],[-23,0],[-90,-2],[-133,-2],[-52,-1],[-56,0],[-15,0],[-27,-2],[-100,-6],[-71,-1],[-36,-1],[-95,-3],[-22,0],[-19,2],[-70,-1],[-62,-2],[-40,0],[-37,-1],[-54,-1],[-50,-1],[-15,-1],[-57,-1],[-147,-4],[-15,-1],[-66,-2],[-22,0],[-82,2],[-150,4],[-153,4],[-33,1],[-77,2],[-58,2],[-87,2],[-56,1],[-3,0],[-38,0],[-22,0],[-152,-1],[-69,6],[-40,-1],[-15,0],[-88,2],[-64,1],[-35,1],[-18,0],[-45,2],[-52,0],[-139,4],[-124,1],[-82,0],[-41,0],[-51,0],[-144,-1],[-58,4]],[[81801,62325],[-1,76],[-1,124],[0,52],[0,119],[0,62],[0,52],[2,275],[0,157],[-2,170],[0,37],[-1,34],[1,53],[-1,55],[0,35],[1,37],[0,39],[0,76],[-1,47],[0,93],[0,61],[0,42],[-1,63],[0,67],[0,56],[0,65],[0,102],[0,66],[0,37],[0,57],[1,34],[-1,61],[1,79],[0,38],[-1,39],[0,39],[0,64],[0,81],[0,112],[0,49],[0,75],[0,7],[-1,27],[-1,43],[1,34],[0,143],[0,54],[1,34],[0,131],[1,119],[0,41],[0,64],[1,127],[0,51],[0,37],[0,43],[0,58],[0,62],[0,44],[0,106],[0,36],[0,40],[0,43],[0,92],[0,54],[1,60],[0,104],[-1,56],[0,44],[0,82],[0,58],[0,55],[0,37],[0,63],[0,110],[0,43],[0,33],[0,43],[0,38],[0,59],[0,55],[0,85],[0,43],[0,45],[0,59],[0,238],[0,45],[0,93],[0,39],[0,62],[0,70],[0,36],[0,42],[0,56],[0,29],[0,8],[0,52],[0,53],[0,106],[1,45],[0,59],[0,57],[0,84],[0,40],[0,33],[0,72],[0,94],[0,59],[0,44],[0,48],[0,46],[0,49],[0,40],[0,45],[0,62],[0,54],[0,34],[1,34],[-1,45],[0,2],[0,37],[0,41],[-22,30],[-3,1],[-2,1],[-2,1],[-36,7],[-4,0],[-54,-7],[-95,125],[-19,25],[-24,45],[-7,25],[-2,19],[-6,60],[-3,8],[-13,38],[-19,37],[-24,33],[-44,42],[-20,0],[-32,-16],[-1,-1],[-72,-54],[-44,-45],[-15,-13],[-44,0],[-3,2],[-6,2],[-7,-9],[-8,-11],[-29,0],[-15,12],[-11,22],[-20,28],[-3,4],[-6,7],[-3,4],[-22,38],[-3,6],[-15,13],[-20,18],[-28,36],[-29,36],[-5,25],[-2,11],[6,49],[21,60],[30,53],[42,16],[28,8],[3,1],[19,4],[13,9],[16,13],[13,11],[22,29],[19,38],[6,31],[7,47],[0,46],[-4,44],[-10,52],[-11,36],[-20,21],[-26,5],[-13,-6],[-21,-11],[-13,-7],[-3,-2],[-16,-16],[-31,-30],[-19,-28],[-27,-50],[-23,-52],[-17,-56],[-13,-46],[-10,-39],[-9,-30],[-29,-49],[-14,-15],[-1,-1],[0,-1],[-15,-20],[-9,-2],[-9,-3],[-27,2],[-47,26],[-20,11],[-55,33],[-20,14],[-22,27],[-16,16],[-13,14],[-20,25],[-22,25],[-39,43],[-13,28],[-1,36]],[[81801,62325],[0,-37],[0,-38],[-1,-52],[0,-81],[-1,-48],[1,-36],[0,-30],[-1,-13],[1,-38],[0,-39],[-1,-68],[0,-54],[-1,-125],[0,-51],[0,-50],[-1,-101],[0,-50],[-1,-53],[1,-50],[0,-91],[0,-77],[1,-55],[0,-44],[1,-72],[0,-54],[0,-41],[0,-45],[5,-63],[-4,-39],[0,-109],[1,-115],[1,-114],[0,-78],[0,-33],[1,-50],[1,-72],[1,-251],[0,-48],[1,-46],[0,-59],[0,-43],[1,-35],[-1,-49],[5,-41],[-3,-34],[0,-46],[-4,-34],[2,-49],[0,-34],[0,-19],[0,-53],[0,-126],[0,-138],[0,-35],[-1,-36],[0,-35],[2,-335],[0,-142],[0,-5],[0,-50],[0,-71],[0,-118],[0,-28],[3,-219]],[[81810,57980],[-24,1],[-40,0],[-21,0],[-2,0],[-21,0],[-19,0],[-53,2],[-72,2],[-22,-1],[-17,1],[-34,-1],[-22,-2],[-23,0],[-18,0],[-20,0],[-38,-1],[-55,0],[-16,-1],[-20,0],[-46,0],[-35,-1],[-43,1],[-20,0],[-20,1],[-24,-1],[-25,0],[-35,0],[-87,-4],[-26,-1],[-48,-1],[-16,0],[-30,0],[-22,0],[-39,-1],[-30,1],[-54,-1],[-42,1],[-58,-1],[-58,3],[-190,2],[-77,-3],[-14,-1],[-32,0],[-34,0],[-17,0],[-55,1],[-17,0],[-38,0],[-27,1],[-28,0],[-33,0],[-85,1],[-26,0],[-15,0],[-1,0],[-18,0],[-26,0],[-30,0],[-16,0],[-16,0],[-27,-1],[-7,0],[-41,1],[-63,3],[-116,-1],[-59,-1],[-15,0],[-42,2],[-20,-1],[-103,-1],[-32,0],[-114,-1],[-147,0],[-41,0],[-42,0],[-11,0],[-238,-1],[-17,0],[-73,0],[-51,-1],[-26,0],[-99,0],[-124,-1],[-4,0],[-46,-2],[-75,-3],[-58,2],[-76,1],[-51,0],[-17,1],[-46,0],[-35,0],[-23,0],[-36,-1],[-50,0],[-33,0],[-17,0],[-18,0],[-39,0],[-58,1],[-115,1],[-77,1],[-117,5],[-72,0],[-205,13],[-17,-12],[-19,0],[-27,0],[-59,2],[-52,1],[-55,0],[-39,1],[-15,0],[-61,-1],[-15,0],[-75,-4],[-98,-6],[-51,3]],[[76361,57977],[-34,8],[-149,-2],[-19,-2],[-39,1],[-64,-5],[-162,-1],[-14,0],[-17,0],[0,47],[-3,257],[-1,61],[0,65],[4,55],[0,38],[-1,42],[0,63],[0,88],[0,65],[0,34],[0,33],[0,48],[0,53],[0,104],[-1,47],[0,42],[0,85],[0,86],[0,35],[0,38],[0,64],[1,209],[-1,35],[0,64],[1,36],[0,122],[0,42],[0,46],[0,36],[0,127],[-1,41],[0,39],[-1,90],[0,65],[-1,39],[0,45],[-1,36],[0,36],[-1,63],[-1,79],[-1,112],[0,63],[-15,10],[-24,1],[-152,4],[-16,0],[-17,0],[-19,0],[-19,0],[-46,-3],[-15,-1],[-23,-3],[-24,-2],[-58,-4],[-17,-2],[-43,-2],[-15,-1],[-111,6],[-18,1],[-61,3],[-29,1],[-17,1],[-52,0],[-17,1],[-76,1],[-35,2],[-16,0],[-17,1],[-14,4],[-15,-3],[-36,1],[-24,-1],[-39,0],[-46,-1],[-23,0],[-18,0],[-29,0],[-22,-1],[-21,0],[-24,1],[-48,1],[-51,1],[-37,2],[-34,0],[-36,1],[-19,2],[0,55],[0,59],[0,45],[0,92],[0,93],[0,74],[0,62],[0,44],[0,46],[0,53],[0,82],[0,48],[0,53],[1,44],[-1,53],[-3,41],[0,21],[0,88],[0,18],[0,20],[0,110],[1,244]],[[97502,73248],[16,-57],[18,-104],[13,-75],[1,-5],[7,-36],[13,-50],[28,-114],[7,-26],[29,-83],[15,-45],[12,-33],[15,-24],[45,-71],[75,-121],[16,-16],[6,-5],[37,-26],[64,-43],[8,-5],[6,-4],[10,-6],[14,-11],[57,-24],[173,-9],[40,15],[87,31],[41,46],[3,4],[54,61],[18,2],[59,82],[24,33],[13,19],[27,38],[28,48],[35,51],[15,17],[23,25],[20,15],[31,10],[39,8],[23,3],[28,-4],[32,-12],[26,-9],[64,-45],[33,-34],[19,-26],[9,-21],[10,-21],[10,-19],[20,-40],[27,-89],[4,-153],[-14,-67],[-2,-25],[-12,-151],[28,-157],[1,-6],[46,-71],[62,-49],[6,-2],[19,-4],[80,-7],[47,-4],[46,10],[11,3],[13,6],[143,78],[9,9],[104,108],[59,24],[32,6],[30,-7],[45,-29],[18,-12],[23,-23],[25,-17],[27,-24],[31,-28],[13,-20],[13,-22],[17,-27],[23,-104],[7,-58],[0,-34],[-4,-127],[-4,-67],[-4,-56],[-2,-26],[-6,-52],[-16,-71],[-15,-35],[-19,-46],[-55,-132],[-33,-79],[-42,-98],[-13,-40],[-10,-36],[-10,-38],[-10,-43],[-5,-37],[-3,-34],[0,-51],[-1,-40],[-1,-35],[-1,-33],[0,-34],[0,-14],[0,-26],[0,-43],[1,-25],[0,-9],[1,-36],[0,-28],[0,-9],[1,-37],[0,-37],[0,-85],[0,-41],[0,-16],[0,-33],[0,-24],[-1,-48],[-1,-193],[1,-50],[0,-10],[-1,-63],[0,-46],[1,-80],[0,-11],[0,-30],[-2,-97],[0,-61],[0,-48],[0,-11],[0,-27],[1,-37],[-1,-52],[0,-3],[1,-55],[-1,-33],[1,-73],[0,-39],[-1,-52],[1,-36],[0,-48],[-1,-56],[0,-55],[0,-37],[0,-80],[0,-34],[0,-39],[0,-68],[0,-53],[0,-41],[0,-62],[-1,-78]],[[99744,68107],[-14,0],[-15,0],[-15,0],[-14,0],[-2,0],[-15,0],[-16,0],[-16,0],[-16,0],[-14,0],[-48,-1],[-14,0],[-14,1],[-23,-1],[-15,0],[-14,0],[-14,1],[-15,0],[-16,0],[-15,-1],[-16,0],[-16,0],[-16,0],[-14,0],[-15,0],[-14,-2],[-14,2],[-58,-1],[-73,0],[-58,0],[-24,0],[-15,0],[-31,0],[-14,1],[-14,0],[-21,1],[-24,0],[-37,0],[-25,0],[-2,0],[-23,0],[-18,0],[-19,0],[-16,0],[-16,-1],[-4,0],[-11,1],[-26,-1],[-18,0],[-16,1],[-22,-1],[-15,0],[-15,0],[-15,0],[-15,0],[-17,0],[-23,0],[-14,0],[-21,0],[-18,0],[-17,0],[-31,-1],[-17,0],[-15,0],[-14,0],[-15,0],[-16,-1],[-18,0],[-14,0],[-26,0],[-14,0],[-14,0],[-15,0],[-17,0],[-24,0],[-86,0],[-25,0],[-21,0],[-17,0],[-22,0],[-27,0],[-17,0],[-22,0],[-14,0],[-30,0],[-22,-1],[-40,-1],[-31,0],[-14,-1],[-77,-3],[-17,0],[-17,-1],[-49,-1],[-22,-1],[-22,-1],[-35,-1],[-75,0],[-36,1],[-14,0],[-56,1],[-22,1],[-17,-1],[-29,0],[-78,-3],[-34,5],[-12,-4],[-6,-2],[-19,-1],[-7,0],[-21,-1],[-17,0],[-38,-1],[-14,0],[-18,0],[-3,0],[-14,0],[-33,0],[-36,42],[-13,14],[-13,11],[-29,26],[-18,16],[-13,12],[-34,33],[-39,35],[-19,21],[-24,27],[-15,23],[-21,28],[-10,13],[-29,47],[-35,48],[-30,33],[-44,56],[-15,15],[-19,20],[-26,26],[-17,13],[-26,19],[-18,10],[-19,4],[-25,1],[-26,-2],[-19,0],[-33,2],[-19,-1],[-17,-3],[-15,-3],[-28,-3],[-28,-5],[-31,-3],[-27,-7],[-25,-11],[-15,-6],[-37,-20],[-9,-7],[-10,-7],[-25,-27],[-14,-18],[-18,-26],[-14,-25],[-24,-54],[-15,-37],[-25,-56],[-14,-36],[-7,-46],[-5,-60],[-2,-34],[-7,-62],[-12,-102],[-6,-38],[-10,-64],[-5,-28],[-3,-17],[-8,-31],[-16,-66],[-12,-65],[-8,-51],[-2,-45],[0,-48],[2,-34],[3,-33],[5,-49],[5,-41],[9,-36],[16,-87],[-1,-100],[-7,-35],[-9,-37],[-11,-35],[-1,-3],[-25,-77],[-11,-40],[-1,-4],[-9,-30],[-12,-44],[-12,-33],[-12,-31],[-15,-37],[-19,-56],[-13,-39],[-12,-34],[-9,-25],[-10,-27],[-2,-6],[-17,-41],[-12,-37],[-26,-80],[-29,-80]],[[16613,71071],[3,-276],[-5,-33],[0,-2],[0,-14],[-1,-94],[0,-39],[0,-5],[0,-32],[-1,-131],[-3,-314],[-1,-139],[-1,-95],[0,-85],[-1,-58],[0,-51],[0,-53],[0,-52],[-1,-47],[0,-40],[0,-34],[-1,-69],[0,-48],[-1,-90],[0,-50],[-1,-48],[-2,-264],[0,-65],[0,-39],[0,-8],[-1,-30],[0,-76],[-1,-253],[-1,-45],[0,-162],[-3,-496],[-1,-184],[-1,-241],[0,-56],[-2,-436],[0,-37],[0,-135],[0,-35],[-1,-38],[-5,-760],[0,-38],[0,-34],[0,-65],[0,-67],[0,-69],[0,-35],[-1,-132],[0,-41],[-1,-136],[0,-5],[-1,-43],[-1,-54],[0,-41],[-1,-37],[0,-40],[-1,-74],[-5,-533],[-5,-480],[0,-41],[-3,-306],[0,-4],[-5,-452],[0,-82],[0,-73],[-3,-175],[-3,-236],[-1,-60],[-5,-497],[-3,-231],[-3,-124],[0,-44],[1,-37],[-3,-36],[0,-45],[1,-183],[2,-232],[0,-37],[-3,-430],[-2,-292],[0,-339],[0,-112],[-1,-96],[-1,-128],[0,-44],[-1,-120],[0,-7],[0,-46],[-3,-476],[-1,-79],[0,-99],[-1,-120],[0,-39],[-2,-224],[-2,-657],[0,-57],[-3,-349],[1,-103],[0,-201],[0,-298]],[[16521,56677],[-214,-1],[-146,-1],[-351,-3],[-1,0],[-18,-4],[-29,-7],[-403,-8],[-34,-1],[-177,-2],[-1,0],[-56,-1],[-239,-3],[-302,12],[-31,1],[-121,5],[-98,4],[-184,7],[-35,-9],[-29,1],[-29,0],[-150,3],[-152,4],[-20,0],[-39,1],[-125,2],[-226,5],[-13,1],[-237,5],[-34,1],[-68,2],[-79,1],[-23,1],[-43,1],[-317,7],[-23,0],[-63,0],[-39,0]],[[12372,56701],[-22,2],[-21,1],[-206,1],[-176,3],[-56,1],[-19,3],[-45,3],[-102,-3],[-225,-4],[-112,6],[-41,10],[-79,10],[-16,-4],[-103,5],[-18,-3],[-22,-1],[-29,0],[-195,0],[-108,1],[-17,-1],[-22,1],[-30,0],[-33,-1],[-30,1],[-28,-1],[-34,0],[-68,0],[-26,-1],[-35,0],[-35,-1],[-137,-1],[-19,-1],[-42,0],[-43,-2],[-39,1],[-29,0],[-25,-1],[-43,0],[-73,-1],[-32,-1],[-37,0],[-16,0],[-37,-1],[-25,0],[-51,-1],[-37,0],[-83,-1],[-33,-1],[-22,0],[-146,-4],[-31,0],[-261,-3],[-1,0],[-20,-1],[-17,0],[-8,0],[-29,0],[-16,0],[-36,0],[-28,-1],[-18,0],[-50,0],[-17,0],[-74,-1],[-83,-1],[-69,-1],[-25,-1],[-71,-1],[-54,-1],[-56,-1],[-69,0],[-41,-1],[-48,-1],[-32,0],[-22,0],[-48,-1],[-31,-1],[-37,-1],[-21,0],[-36,0],[-24,0],[-34,-1],[-34,-1],[-56,0],[-30,0],[-26,-1],[-26,0],[-43,-1],[-15,-1],[-26,0],[-46,-1],[-14,0],[-21,0],[-46,-2],[-58,-2]],[[7602,56688],[1,125],[0,54],[1,61],[1,180],[1,37],[0,38],[0,1],[1,60],[0,61],[1,84],[3,294],[0,55],[1,45],[1,144],[0,48],[1,85],[0,73],[1,43],[0,52],[1,43],[0,43],[0,43],[1,76],[0,93],[0,98],[4,562],[0,222],[0,35],[2,145],[3,514],[3,433],[2,230],[0,72],[0,49],[4,132],[-3,151],[1,50],[2,374],[1,209],[1,61],[2,630],[1,409],[1,357],[0,7],[1,166],[2,60],[2,213],[1,121],[0,47],[1,44],[0,93],[1,36],[3,353],[0,43],[0,93],[1,59],[0,76],[1,200],[0,36],[1,38],[0,48],[0,71],[0,53],[0,9],[0,249],[2,710],[0,15],[1,444],[0,13],[0,87],[3,21],[3,25],[0,145],[1,119],[0,42],[0,96],[1,266],[1,134],[0,37],[0,47],[1,197],[1,218],[1,53],[0,64],[1,145],[1,273],[0,167],[0,58],[1,41],[0,44],[0,53],[0,45],[1,177],[0,123],[0,44],[1,132],[0,51],[1,106],[0,51],[0,40],[0,54],[1,43],[1,35],[-1,38],[0,37],[1,38],[0,42],[0,49],[1,156],[0,39],[-1,341],[0,1],[6,264],[0,115],[1,209]],[[7602,56688],[-16,0],[-30,-1],[-41,-2],[-14,0],[-46,-2],[-17,0],[-25,-1],[-25,0],[-38,-1],[-34,0],[-84,-1],[-24,0],[-32,-1],[-62,-1],[-15,0],[-14,0],[-59,0],[-27,-1],[-20,0],[-18,1],[-16,-1],[-16,0],[-37,0],[-39,-1],[-35,1],[-35,-2],[-38,0],[-21,-1],[-16,0],[-22,0],[-30,0],[-35,-1],[-23,-1],[-21,0],[-62,0],[-21,-1]],[[6494,56671],[-117,-2],[-21,0],[-38,-2],[-35,0],[-39,-1],[-78,-2],[-34,-1],[-17,0],[-16,0],[-34,-1],[-38,-1],[-18,-1],[-20,-6],[-14,0],[-17,-1],[-52,6],[-16,-3],[-49,-5],[-49,0],[-18,6],[-20,-1],[-45,-1],[-90,-1],[-41,0],[-76,-2],[-138,-2],[-108,-2],[-40,-1],[-84,-1],[-20,0],[-46,-1],[-67,-1],[-33,-1],[-34,0],[-44,-1],[-80,-2],[-41,0],[-122,-3],[-26,0],[-45,-1],[-38,-1],[-36,-1],[-36,0],[-19,0],[-15,5],[-16,4],[-17,-1],[-18,-9],[-13,-1],[-15,0],[-19,0],[-22,-1],[-14,0],[-15,-3],[-31,-2],[-126,2],[-19,-1],[-4,0],[-14,0],[-34,0],[-18,0],[-22,-1],[-15,0],[-79,-1],[-68,-1],[-53,-1],[-38,-1],[-135,-2],[-73,-1],[-57,-1],[-118,-1],[-240,-2],[-140,-2],[-109,-1],[-46,0],[-93,0],[-41,0],[-47,0],[-22,0],[-75,0],[-64,-1],[-32,0],[-58,0],[-18,1],[-25,-1],[-50,1],[-48,0],[-16,0],[-86,-1],[-21,1],[-29,-1],[-45,0],[-52,0],[-40,0],[-85,0],[-39,0],[-87,1],[-60,-1],[-24,0],[-37,0],[-133,-1],[-81,0],[-20,0],[-16,0],[-69,0],[-35,0],[-27,0],[-49,0],[-146,0],[-169,0],[-131,0],[-27,-1],[-30,0],[-22,0],[-6,0],[-17,0],[-16,1],[-118,0],[-66,0],[-34,0],[-43,0],[-44,0],[-37,0],[-25,1],[-111,0],[-16,0],[-72,-10]],[[88,56601],[-7,4264],[0,80],[0,82],[-2,885],[0,94],[-3,1886],[-7,4313],[-1,438],[-6,2307],[-1,114]],[[40387,71064],[-2,-228],[-1,-42],[-3,-200],[1,-136],[0,-196],[1,-175],[0,-209],[-1,-374],[0,-241],[0,-116],[0,-45],[0,-110],[0,-171],[0,-179],[-1,-147],[-1,-210],[-6,-126],[3,-168],[0,-1],[0,-84],[1,-136],[-4,-439],[0,-74],[-1,-85],[0,-150],[-1,-83],[-1,-218],[3,-77],[-1,-133],[-2,-287],[-1,-297],[-1,-151],[0,-36],[0,-69],[-1,-134],[-1,-63],[0,-105],[0,-42],[-1,-93],[0,-142],[0,-67],[-1,-123],[0,-120],[0,-488],[-1,-148],[0,-237],[0,-108],[-2,-472],[-1,-226],[-1,-135],[0,-123],[0,-37],[0,-167],[0,-36],[0,-39],[0,-26],[1,-47],[-1,-125],[2,-244],[1,-164],[0,-90],[-2,-474],[-2,-269],[-1,-212],[-1,-67],[-1,-177],[-2,-237],[-1,-138],[-1,-143],[0,-64],[-1,-24],[0,-154],[-1,-82],[-1,-43],[0,-60],[-4,-261],[-4,-479],[-3,-482],[0,-162],[-9,-465],[-1,-43],[0,-66],[-1,-90],[0,-1],[-1,-136],[-1,-143],[-3,-325],[-4,-499]],[[40318,56574],[-15,0],[-38,0],[-25,1],[-27,0],[-13,0],[-19,1],[-106,5],[-58,2],[-194,3],[-37,1],[-43,-8],[-14,-1],[-13,-1],[-17,0],[-14,0],[-42,0],[-70,1],[-21,0],[-21,1],[-19,0],[-39,0],[-17,0],[-34,0],[-47,1],[-24,0],[-27,0],[-69,1],[-27,0],[-19,0],[-40,0],[-50,0],[-44,1],[-105,0],[-15,0],[-25,0],[-15,0],[-17,1],[-36,3],[-18,5],[-23,2],[-13,-10],[-22,1],[-27,0],[-18,-1],[-19,0],[-31,0],[-33,0],[-55,-1],[-21,0],[-16,0],[-25,0],[-20,0],[-16,0],[-43,1],[-19,-1],[-37,-1],[-23,0],[-32,0],[-21,0],[-22,0],[-17,0],[-64,0],[-46,0],[-30,0],[-42,-1],[-26,0],[-21,0],[-35,0],[-29,0],[-30,0],[-22,0],[-19,0],[-36,-1],[-18,0],[-22,0],[-16,7],[-75,-4],[-1,0],[-29,-3],[-58,1],[-25,7],[-37,1],[-9,0],[-20,0],[-52,-9],[-39,1],[-15,-1],[-56,0],[-19,0],[-13,0],[-14,0],[-15,0],[-18,0],[-19,0],[-16,0],[-23,0],[-29,0],[-16,0],[-21,0],[-16,0],[-25,0],[-29,-1],[-16,0],[-31,-1],[-5,0],[-16,0],[-36,0],[-85,0],[-21,0],[-29,0],[-15,0],[-36,0],[-14,0],[-25,0],[-16,0],[-22,0],[-23,0],[-18,0],[-36,0],[-21,0],[-20,0],[-13,0],[-35,-1],[-5,0],[-14,0],[-21,0],[-60,0],[-14,0],[-29,0],[-36,0],[-41,0],[-24,0],[-89,0],[-16,0],[-16,0],[-23,0],[-18,0],[-24,0],[-14,0],[-18,-1],[-20,0],[-41,0],[-17,0],[-23,0],[-40,1],[-41,0],[-27,0],[-27,-1],[-56,1],[-17,-1],[-17,5],[-63,-3],[-40,0],[-122,-3],[-15,0],[-18,0],[-14,0],[-38,-1],[-20,0],[-27,0],[-18,0],[-32,0],[-51,-1],[-15,0],[-14,0],[-22,0],[-55,0],[-25,0],[-34,-1],[-22,0],[-22,0],[-15,0],[-40,0],[-22,0],[-19,1],[-18,4],[-13,1],[-35,-6],[-137,1],[-56,-1],[-30,0],[-69,0],[-31,-1],[-28,0],[-34,0],[-28,0],[-22,0],[-26,0],[-17,0],[-36,0],[-21,0],[-29,0],[-33,-1],[-36,1],[-27,0],[-32,0],[-29,0],[-62,1],[-15,-1],[-28,0],[-38,0],[-16,0],[-76,0],[-57,0],[-26,0],[-16,0],[-48,0],[-17,0],[-60,0],[-24,0],[-18,-1],[-47,1],[-47,0],[-61,-1],[-30,0],[-46,0],[-25,-1],[-19,1],[-112,-1],[-16,2],[-34,-2],[-15,0],[-30,0],[-18,0],[-93,-1],[-22,0],[-109,0]],[[33050,56567],[-121,-1],[-56,0]],[[32873,56566],[0,48],[0,35],[2,325],[1,48],[0,49],[1,81],[-1,73],[3,212],[4,96],[2,37],[-1,34],[3,278],[0,66],[1,53],[-2,120],[1,41],[2,180],[1,69],[0,39],[1,71],[1,167],[0,41],[1,56],[0,125],[1,57],[0,432],[0,5],[4,252],[1,43],[1,233],[0,35],[0,66],[0,76],[0,70],[1,69],[0,98],[0,78],[0,37],[1,38],[1,55],[0,38],[0,69],[0,36],[1,63],[0,47],[1,95],[1,183],[1,293],[1,93],[0,177],[2,398],[0,55],[1,241],[0,41],[1,141],[0,53],[0,42],[0,45],[1,37],[0,128],[0,37],[1,82],[0,57],[0,40],[0,50],[1,55],[0,37],[0,40],[0,38],[0,38],[1,107],[0,89],[0,38],[0,36],[1,212],[0,36],[0,40],[1,41],[0,41],[0,157],[1,37],[0,43],[0,47],[0,41],[-1,159],[-1,83],[5,49],[-1,19],[-1,20],[0,73],[0,78],[0,67],[0,82],[0,45],[1,50],[0,5],[0,69],[0,37],[0,93],[0,49],[1,51],[0,59],[0,64],[0,45],[1,140],[1,56],[0,68],[1,67],[0,59],[0,55],[0,49],[1,143],[1,90],[0,70],[1,41],[0,49],[0,53],[1,90],[0,85],[1,93],[1,149],[0,44],[0,40],[1,83],[0,82],[0,37],[1,46],[0,36],[0,38],[1,82],[0,40],[0,113],[0,36],[1,38],[0,35],[0,64],[-2,145],[3,41],[1,38],[0,51],[0,41],[1,33],[0,41],[0,39],[1,52],[0,89],[0,39],[1,39],[0,44],[1,44],[0,53],[0,34],[1,104],[0,36],[1,85],[2,214],[0,54],[-2,37],[0,84],[3,42],[1,123],[-3,37],[6,221],[0,61],[3,461],[0,38],[0,35],[1,47],[0,58],[1,111],[1,120],[0,59],[0,37],[1,135],[0,38],[1,32],[1,81],[0,46],[0,64],[1,39],[0,83]],[[25508,71032],[-1,-195],[0,-72],[0,-38],[0,-163],[-2,-494],[-1,-161],[0,-274],[0,-44],[0,-308],[-3,-648],[0,-291],[-1,-90],[0,-81],[0,-49],[-1,-70],[0,-48],[-1,-65],[0,-73],[0,-15],[-1,-32],[0,-89],[-1,-62],[-1,-239],[0,-5],[-2,-238],[0,-123],[-3,-360],[-2,-62],[-4,-455],[0,-1],[0,-476],[0,-79],[-1,-58],[0,-50],[-2,-47],[-1,-48],[0,-87],[-1,-41],[0,-44],[0,-59],[-1,-33],[-1,-133],[-3,-253],[-1,-211],[-1,-101],[-1,-130],[0,-39],[-3,-481],[-3,-398],[0,-47],[-1,-68],[0,-67],[-1,-65],[0,-40],[0,-33],[-1,-42],[0,-63],[-1,-67],[0,-74],[-1,-71],[0,-34],[-1,-128],[0,-42],[-1,-64],[0,-45],[0,-2],[-1,-105],[0,-49],[0,-43],[0,-37],[0,-156],[0,-362],[0,-40],[0,-283],[-1,-38],[-1,-173],[1,-273],[-1,-205],[1,-319],[0,-316],[0,-436],[1,-80],[0,-57],[-1,-37],[0,-62],[-1,-36],[0,-42],[-1,-60],[0,-68],[-1,-33],[-1,-75],[0,-19],[0,-25],[0,-39],[-1,-35],[0,-45],[0,-35],[-2,-149],[0,-39],[0,-36],[-1,-54],[0,-54],[0,-36],[0,-35],[-1,-38],[-1,-64],[-4,-341],[-2,-241],[-1,-43],[-1,-81],[0,-35],[-1,-52],[0,-56],[-1,-83],[0,-73],[0,-36],[-1,-40],[-1,-163],[0,-40],[-1,-42],[0,-41],[-2,-349],[-1,-70]],[[25430,56593],[-166,4],[-91,2],[-84,4],[-33,2],[-131,2],[-57,1],[-35,1],[-165,0],[-180,3],[-153,3],[-27,0],[-58,3],[-55,2],[-17,1]],[[24178,56621],[-43,4],[-63,1],[-44,1],[-27,0],[-76,2],[-155,3],[-178,3],[-154,1],[-14,0],[-106,3],[-77,2],[-51,1],[-124,3],[-42,1],[-111,-1],[-25,1],[-25,0],[-16,-1],[-98,7],[-114,2],[-177,3],[-19,0],[-33,0],[-19,2],[-65,-2],[-19,0],[-75,4],[-20,-1],[-54,1],[-34,1],[-42,1],[-34,0],[-32,1],[-28,0],[-21,0],[-119,2],[-78,1],[-30,1],[-33,0],[-21,0],[-53,1],[-51,1],[-25,1],[-40,1],[-43,7],[-125,0],[-107,-1],[-16,0],[-70,0],[-144,0],[-104,-1],[-118,-1],[-46,2],[-14,0],[-62,0],[-52,1],[-58,0],[-16,0],[-58,0],[-24,0],[-19,0],[-53,0],[-20,1],[-53,0],[-64,1],[-17,0],[-75,1],[-48,2],[-69,1],[-25,0],[-31,1],[-14,0],[-52,0],[-35,0],[-43,0],[-15,1],[-16,0],[-14,-1],[-17,0],[-16,0],[-19,0],[-20,0],[-23,0],[-22,0],[-21,0],[-22,0],[-25,-1],[-19,0],[-20,0],[-38,-1],[-20,1],[-18,-1],[-15,1],[-36,-1],[-18,1],[-37,0],[-19,0],[-27,0],[-20,0],[-34,0],[-27,4],[-38,0],[-86,-2],[-45,-2],[-36,1],[-18,-1],[-100,0],[-57,0],[-17,0],[-26,0],[-32,3],[-30,1],[-72,-3],[-32,-1],[-37,0],[-16,-1],[-42,1],[-24,1],[-32,1],[-22,-1],[-34,0],[-35,1],[-16,0],[-22,-4],[-44,0],[-75,-1]],[[18272,56682],[-29,0],[-54,0],[-136,0],[-30,0],[-120,0],[-85,0],[-118,0],[-38,0],[-110,0],[-68,0],[-48,-2],[-118,-2],[-31,-1],[-177,-3],[-67,-1],[-106,1],[-122,0],[-57,-3],[-36,1],[-18,-1],[-20,1],[-19,-1],[-26,0],[-25,7],[-74,-1],[-19,0]],[[69157,62329],[0,-59],[0,-416],[-1,-177],[0,-165],[0,-104],[4,-43],[-1,-126],[1,-182],[0,-45],[0,-40],[0,-85],[0,-49],[-3,-234],[3,-74],[0,-3],[-3,-121],[-59,1],[-24,-1],[-6,0],[-20,1],[-16,-1],[-19,0],[-17,1],[-17,0],[-28,-1],[-21,-1],[-23,1],[-29,2],[-15,0],[-18,-1],[-53,-2],[-15,0],[-28,0],[-21,-1],[-20,1],[-21,1],[-25,0],[0,-50],[0,-61],[0,-235],[1,-137],[0,-48],[0,-117],[0,-42],[0,-9],[-1,-72],[0,-59],[0,-53],[0,-81],[-1,-97],[1,-35],[-1,-61],[1,-49],[-1,-37],[0,-55],[0,-83],[0,-79],[0,-40],[-1,-82],[0,-44],[-1,-171],[0,-49],[0,-26],[0,-30],[0,-25],[-1,-38],[0,-38],[-1,-61],[-1,-55],[0,-102],[0,-46],[1,-33],[0,-51],[1,-60],[0,-8],[0,-50],[0,-70],[0,-86],[0,-68],[0,-41],[0,-44],[0,-115],[0,-74],[0,-35],[-2,-62],[-3,-73],[-2,-36],[-2,-57],[-4,-81],[14,-19],[0,-59],[0,-47],[0,-3],[0,-64],[0,-60],[0,-52],[0,-34],[0,-45],[1,-163],[-17,0],[-19,0],[-5,0],[0,-2],[1,-112],[0,-2],[-1,-42],[0,-80],[0,-44],[0,-77],[0,-41],[0,-70],[0,-51],[0,-40],[-1,-55],[-2,-33],[-2,-35],[-6,-122],[-1,-24],[-3,-49],[-3,-62],[0,-11],[-1,-25],[-3,-40],[-2,-54],[-4,-70],[-1,-26],[-1,-14],[-1,-17],[-5,-78],[-1,-10],[-10,-64],[28,-39],[12,-20],[8,-35],[9,-29],[-8,-28],[0,-19],[-1,-17],[-1,-375],[1,-75],[0,-74],[1,-97],[1,-60],[0,-140],[0,-35],[0,-78],[0,-87],[1,-79],[-3,-54],[0,-95],[1,-43],[0,-48]],[[68621,53672],[-89,1],[-39,1],[-19,0],[-47,-1],[-52,-2],[-1,0],[-29,1],[-25,0],[-17,-1],[-13,0],[-15,-2],[-18,1],[-11,0],[-125,0],[-25,0],[-20,-1],[-53,-1],[-24,1],[-17,0],[-32,-1],[-23,0],[-40,-1],[-14,0],[-25,0],[-13,0],[-51,0],[-16,0],[-17,-1],[-15,0],[-28,0],[-24,0],[-17,0],[-22,0],[-20,-1],[-14,0],[-14,1],[-39,-1],[-44,0],[-16,-1],[-47,1],[-20,0],[-24,-1],[-17,-1],[-16,0],[-24,0],[-28,-4],[-2,0],[-20,0],[-21,3],[-5,0],[-15,0],[-32,0],[-17,-1],[-20,0],[-17,0],[-15,0],[-17,-1],[-9,0],[-9,1],[-16,0],[-20,0],[-26,0],[-22,1],[-15,0],[-18,1],[-18,0],[-17,0],[-27,1],[-14,1],[-17,0],[-20,0],[-24,1],[-20,-1],[-30,0],[-34,2],[-33,0],[-49,1],[-57,1],[-20,0],[-25,0],[-16,0],[-16,0],[-120,2],[-19,0],[-32,1],[-102,0],[-36,1],[-43,0],[-23,0],[-26,0],[-17,0],[-35,0],[-108,0],[-40,0],[-69,2],[-37,1],[-37,0],[-20,1],[-28,0],[-40,1],[-17,0],[-55,0],[-17,-9],[-14,3],[-17,0],[-19,-1],[-23,1],[-156,0],[-29,0],[-101,-1],[-32,-1],[-14,0],[-60,0],[-89,5],[-16,1],[-18,1],[-9,-6],[-6,-3],[-113,3],[-16,3],[-19,0],[-16,0],[-18,0],[-21,0],[-19,-1],[-25,0],[-34,0],[-21,0],[-20,0],[-30,0],[-18,0],[-60,0],[-41,1],[-20,0],[-15,2],[-14,-4],[-18,1],[-15,-2],[-22,0],[-35,0],[-20,1],[-31,0],[-54,-2],[-13,0],[-17,0],[-33,1],[-33,0],[-29,-1],[-16,0],[-26,0],[-30,-1],[-33,1],[-18,0],[-21,0],[-38,1],[-25,-2],[-44,0],[-16,1],[-46,0],[-14,-1],[-25,1],[-35,0],[-45,-1],[-36,0],[-22,0],[-16,-2],[-55,-1],[-65,0],[-15,1],[-14,2],[-2,0],[-19,2],[-67,1],[-75,1],[-48,-1],[-19,0],[-19,0],[-32,0],[-15,-1],[-19,7],[-34,-2],[-43,-6],[-31,-2],[-21,1],[-18,0],[-37,0],[-50,-1],[-26,0],[-20,0],[-24,0],[-28,0],[-19,0],[-53,-1],[-15,-2],[-14,1],[-17,2],[-29,2],[-15,0],[-37,1]],[[62704,53671],[-1,98],[0,45],[0,50],[0,59],[0,60],[0,47],[0,35],[0,36],[0,50],[0,52],[-1,42],[1,83],[0,40],[0,53],[0,36],[-1,41],[0,37],[1,97],[0,52],[0,46],[-1,73],[0,34],[0,62],[0,61],[0,37],[0,116],[0,73],[0,69],[0,53],[-1,68],[1,63],[0,40],[0,39],[0,83],[0,56],[-1,63],[1,61],[0,110],[-1,35],[1,36],[0,43],[0,71],[0,2],[0,58],[0,36],[0,38],[0,56],[0,56],[0,83],[0,77],[0,81],[0,40],[0,73],[0,34],[0,68],[0,68],[0,55],[0,49],[0,91],[0,59],[0,47],[0,59],[0,37],[0,120],[0,52],[1,78],[-1,55],[0,74],[1,49],[-1,101],[0,36],[0,67],[1,66],[-1,73],[1,68],[0,47],[0,35],[0,37],[0,74],[0,67],[0,44],[1,101],[-1,40],[1,75],[-1,37],[0,63],[0,41],[0,41],[0,39],[1,60],[0,35],[0,51],[0,65],[0,115],[0,76],[0,64],[0,36],[0,33],[0,41],[0,74],[0,73],[0,73],[0,49],[0,118],[0,41],[0,35],[0,51],[0,37],[0,69],[-1,43],[0,39],[1,36],[-1,42],[-1,165],[0,77],[0,59],[0,125],[0,68],[0,63],[0,34],[0,70],[-1,77],[0,57],[0,109],[0,35],[0,85],[0,84],[0,99],[0,44],[0,60],[0,66],[0,46],[0,72],[0,88],[0,69],[0,43],[0,95],[0,53],[0,46],[0,40],[0,58],[0,67],[0,48],[0,71],[0,35],[0,40],[0,40],[0,125],[0,44],[0,54],[0,82],[-1,72],[-1,34],[0,178],[0,10],[1,363],[0,12],[1,26],[0,102],[0,54],[0,173],[-14,1],[-29,2],[-65,-1],[-14,0],[0,50],[0,47],[0,37],[0,34],[0,37],[0,35],[0,52],[0,192],[29,0],[40,1],[17,0],[25,0],[13,26],[1,76],[0,51],[1,98],[0,36],[0,43],[0,100],[0,48],[1,72],[0,66],[0,103],[1,53],[0,64],[0,43],[0,38],[0,44]],[[47791,62353],[-1,-416],[-1,-66],[0,-83],[0,-152],[0,-12],[1,-113],[0,-70],[0,-35],[-1,-247],[0,-41],[0,-40],[0,-46],[-1,-40],[0,-21],[0,-23],[0,-42],[0,-30],[0,-112],[0,-46],[0,-62],[0,-66],[0,-47],[0,-51],[0,-68],[-1,-132],[-1,-181],[-1,-49],[0,-114],[-4,-129],[1,-267],[0,-3],[2,-424],[0,-61],[0,-41],[0,-39],[0,-326],[1,-51],[-1,-47],[0,-38],[1,-36],[-1,-101],[0,-43],[0,-53],[-1,-130],[0,-107],[-1,-101],[-1,-48],[-1,-227],[-1,-71],[0,-41],[0,-52],[-1,-64],[0,-49],[0,-44],[-1,-48],[-1,-228],[0,-50],[0,-40],[0,-2],[0,-34],[0,-83],[-1,-88],[1,-63],[-1,-99],[0,-42]],[[47775,56578],[-151,-3],[-11,0],[-3,0],[-83,0],[-64,-1],[-98,-1],[-44,0],[-41,1],[-59,0],[-66,0],[-29,0],[-74,3],[-101,2],[-7,0],[-161,-3],[-21,0],[-103,0],[-32,0],[-42,0],[-51,1],[-99,0],[-53,0],[-93,0],[-135,0],[-21,0],[-83,0],[-15,0],[-53,0],[-91,0],[-106,-1],[-149,0],[-32,0],[-67,-1],[-77,0],[-73,0],[-34,3],[-31,0],[-33,-4],[-28,0],[-28,-1],[-6,0],[-51,0],[-36,0],[-79,-1],[-22,0],[-30,0],[-120,0],[-99,0],[-148,1],[-99,0],[-142,1],[-19,0],[-2,0],[-87,0],[-141,1],[-24,0],[-81,0],[-64,0],[-57,0],[-14,0],[-70,0],[-44,0],[-47,0],[-29,0],[-36,0],[-30,0],[-108,0],[-141,0],[-40,0],[-29,-1],[-16,0],[-3,0],[-19,0],[-109,0],[-37,0],[-59,0],[-24,0],[-20,0],[-50,0],[-37,0],[-56,-1],[-1,0],[-63,1],[-41,0],[-19,0],[-62,0],[-63,1],[-35,0],[-55,0],[-17,0],[-139,0],[-241,1],[-30,0],[-72,0],[-15,0],[-14,0],[-84,0],[-22,0],[-129,0],[-113,0],[-135,0],[-41,0],[-67,-1],[-18,0],[-111,0],[-131,-1],[-55,0],[-75,0],[-26,0],[-93,0],[-130,0],[-118,0],[-19,0],[-104,0],[-122,0]],[[40448,56574],[-15,0],[-33,0],[-24,0],[-38,1],[-20,-1]],[[32873,56566],[-49,-1],[-21,0],[-23,0],[-19,0],[-14,-1],[-16,0],[-21,0],[-18,0],[-20,0],[-16,0],[-29,-1],[-28,-1],[-27,1],[-25,-1],[-15,0],[-41,-1],[-36,0],[-40,-1],[-22,0],[-16,0],[-28,0],[-42,1],[-30,0],[-20,0],[-18,1],[-16,0],[-151,2],[-34,0],[-146,2],[-19,0],[-61,1],[-53,0],[-24,0],[-18,0],[-37,0],[-52,0],[-20,1],[-31,0],[-79,0],[-62,0],[-177,0],[-26,1],[-19,-1],[-42,1],[-19,-1],[-50,1],[-5,0],[-12,0],[-25,0],[-26,0],[-24,0],[-14,-1],[-19,1],[-119,0],[-22,-1],[-20,0],[-27,0],[-22,0],[-15,-1],[-97,0],[-14,1],[-138,12],[-119,-1],[-77,0],[-152,4],[-17,-3],[-52,-11],[-20,-1],[-41,0],[-21,0],[-22,-1],[-49,0],[-28,1],[-52,-2],[-19,0],[-15,-1],[-26,1],[-25,-1],[-20,0],[-16,0],[-20,0],[-68,0],[-21,0],[-15,0],[-17,0],[-126,-1],[-47,0],[-16,0],[-21,0],[-38,0],[-31,0],[-20,0],[-57,0],[-19,1],[-38,-1],[-22,0],[-17,1],[-31,0],[-64,0],[-18,0],[-165,0],[-14,0],[-2,0],[-29,0],[-31,-1],[-71,0],[-64,0],[-31,-1],[-17,1],[-88,-1],[-112,-1],[-29,0],[-19,1],[-16,0],[-17,-1],[-27,-1],[-18,0],[-55,0],[-36,0],[-31,0],[-41,0],[-84,0],[-40,0],[-84,0],[-16,0],[-25,0],[-48,0],[-41,0],[-21,0],[-14,0],[-37,-1],[-26,0],[-20,0],[-42,0],[-47,0],[-31,0],[-28,0],[-20,-1],[-49,1],[-30,-1],[-39,0],[-40,-1],[-23,0],[-66,0],[-17,0],[-64,0],[-34,-1],[-18,1],[-34,0],[-35,0],[-61,0],[-35,-1],[-31,1],[-34,0],[-54,2],[-40,1],[-29,1],[-38,1],[-37,1],[-17,1],[-16,1],[-16,0],[-50,1],[-22,1],[-14,0],[-22,2],[-18,0],[-30,1],[-17,-1],[-23,2],[-19,0],[-36,1],[-36,1],[-23,-1],[-100,4],[-27,0],[-55,1],[-18,1],[-48,1],[-29,1],[-39,1],[-28,1],[-35,1],[-27,0],[-15,2],[-13,-2],[-15,0],[-28,2],[-29,0],[-25,1],[-17,0],[-77,2],[-26,0],[-123,2],[-25,0],[-49,2],[-21,0],[-24,0]],[[93730,66049],[-1,-54],[-1,-306],[0,-50],[-1,-122],[0,-6],[0,-54],[0,-72],[0,-14],[0,-83],[1,-63],[0,-91],[1,-124],[1,-35],[0,-39],[1,-68],[0,-44],[0,-39],[0,-29],[0,-10],[0,-42],[0,-56],[0,-115],[1,-54],[0,-64],[0,-8],[0,-40],[0,-51],[1,-50],[1,-147],[0,-51],[0,-4],[0,-71],[1,-81],[0,-42],[0,-35],[0,-40],[0,-49],[0,-58],[0,-208],[0,-59],[0,-116],[-1,-58],[0,-65],[0,-37],[0,-119],[0,-36],[0,-43],[-1,-92],[0,-59],[0,-47],[0,-62],[0,-50],[0,-57],[0,-37],[0,-40],[-1,-104],[0,-87],[0,-78],[0,-83],[0,-37],[0,-61],[0,-64],[0,-52],[0,-62],[0,-42],[0,-61],[0,-76],[0,-38],[0,-45],[0,-36],[0,-111],[0,-16],[0,-19],[0,-100],[-1,-85],[1,-57],[-1,-63],[0,-72],[0,-59],[0,-39],[1,-44],[-1,-51],[-2,-42],[1,-48],[2,-42],[0,-40],[-1,-38],[0,-44],[0,-35],[0,-76],[0,-74],[0,-67],[0,-49],[0,-38],[-1,-63],[0,-66],[1,-34],[0,-36],[0,-35],[0,-101],[0,-49],[0,-57],[0,-47],[0,-44],[-1,-67],[0,-37],[0,-50],[0,-44],[0,-49],[0,-47],[1,-55],[-1,-50],[1,-35],[-1,-42],[0,-36],[0,-54],[0,-54],[0,-39],[0,-33],[0,-23],[-1,-19],[0,-65],[0,-6],[0,-177],[0,-34],[0,-71],[-1,-45],[0,-58],[0,-58],[0,-43],[0,-231],[0,-251]],[[93728,57963],[-25,0],[-20,0],[-23,0],[-60,1],[-15,0],[-35,0],[-52,1],[-19,0],[-3,0],[-19,0],[-28,-1],[-19,0],[-17,0],[-28,0],[-25,1],[-18,0],[-22,1],[-56,0],[-17,0],[-28,0],[-37,0],[-21,1],[-21,0],[-48,0],[-33,0],[-27,0],[-30,0],[-74,-5],[-48,-4],[-14,0],[-15,0],[-8,1],[-90,5],[-196,-5],[-49,0],[-52,0],[-66,0],[-36,0],[-31,0],[-25,0],[-29,0],[-17,0],[-43,0],[-34,1],[-43,0],[-83,-1],[-53,2],[-33,0],[-25,1],[-43,-7],[-62,1],[-34,3],[-52,3],[-36,1],[-39,0],[-37,0],[-60,1],[-20,0],[-44,0],[-40,1],[-27,0],[-14,0],[-14,0],[-23,0],[-19,0],[-18,0],[-68,1],[-23,0],[-16,0],[-19,0],[-128,-2],[-19,0],[-20,-1],[-13,0],[-35,1],[-24,0],[-16,0],[-20,0],[-20,0],[-2,0],[-12,0],[-10,0],[-4,0],[-28,0],[-75,0],[-24,-1],[-18,1],[-31,0],[-19,0],[-27,0],[-24,0],[-19,0],[-28,0],[-27,1],[-68,-1],[-15,1],[-30,0],[-16,0],[-46,0],[-25,1],[-22,0],[-18,-1],[-51,0],[-15,0],[-17,1],[-19,-1],[-85,1],[-20,0],[-40,-1],[-16,0],[-22,0],[-22,1],[-17,0],[-23,-1],[-23,1],[-29,1],[-23,0],[-25,0],[-14,0],[-23,1],[-88,1],[-22,1],[-16,0],[-20,1],[-23,-1],[-21,0],[-19,0],[-43,0],[-26,0],[-21,0],[-37,0],[-14,-1],[-14,-3],[-16,-14],[-15,5],[-13,13],[-30,3],[-23,-2],[-15,0],[-23,1],[-17,0],[-44,0],[-30,1],[-21,-2],[-24,0],[-18,1],[-14,0],[-15,-1],[-28,1],[-18,1],[-21,0],[-26,-1],[-27,1],[-33,-1],[-54,1],[-36,-1],[-54,0],[-15,0],[-17,0],[-35,0],[-15,0],[-23,0],[-65,0],[-31,-1],[-27,0],[-18,0],[-22,0],[-82,-1],[-32,0],[-31,0],[-35,0],[-21,-1],[-16,0],[-18,0],[-23,1],[-14,-1],[-34,-1],[-22,0],[-16,1],[-20,0],[-14,1],[-21,-1],[-32,0],[-25,0],[-20,1],[-35,-1],[-17,1],[-45,-1],[-31,-1],[-24,1],[-29,-1],[-18,1],[-25,0],[-87,0],[-34,1]],[[87775,57970],[0,1447],[0,382],[1,97],[1,238],[0,59],[-2,448],[0,34],[0,187],[0,195],[0,35],[3,254],[0,205],[0,91],[1,67],[-1,78],[0,42],[-3,33],[0,118],[0,152],[0,188]],[[99744,68107],[0,-36],[0,-36],[0,-34],[0,-37],[0,-57],[-1,-36],[0,-37],[0,-46],[0,-21],[0,-59],[0,-36],[0,-6],[-1,-82],[0,-75],[-1,-40],[0,-47],[0,-70],[-1,-68],[0,-49],[0,-35],[0,-50],[-1,-41],[0,-42],[0,-45],[0,-116],[0,-47],[-1,-45],[0,-53],[0,-47],[0,-35],[0,-34],[0,-36],[-1,-48],[1,-38],[-1,-47],[0,-41],[0,-34],[0,-60],[0,-60],[-1,-44],[-1,-71],[-1,-54],[-2,-68],[-2,-64],[0,-43],[1,-43],[1,-76],[1,-36],[0,-38],[1,-64],[0,-63],[0,-53],[0,-36],[1,-48],[0,-42],[0,-78],[0,-49],[0,-57],[-1,-48],[0,-51],[0,-56],[0,-51],[0,-88],[0,-83],[0,-90],[0,-36],[0,-67],[0,-30],[-1,-10],[0,-12],[0,-33],[5,-34],[-1,-17],[0,-20],[0,-39],[-1,-43],[0,-46],[0,-42],[0,-55],[0,-60],[0,-52],[0,-59],[0,-34],[0,-64],[0,-38],[0,-35],[1,-192],[0,-39],[0,-41],[0,-45],[0,-55],[0,-44],[0,-35],[-1,-64],[0,-37],[0,-51],[0,-34],[0,-46],[1,-58],[0,-75],[0,-41],[0,-82],[0,-144],[0,-93],[0,-2],[-1,-44],[0,-75],[0,-43],[0,-93],[0,-42],[0,-75],[0,-93],[0,-57],[0,-6],[0,-44],[0,-149],[0,-36],[0,-8],[0,-40],[0,-104],[0,-46],[0,-34],[0,-26],[0,-93],[0,-5],[0,-100],[4,-475],[0,-40],[1,-138],[0,-53],[-3,-317],[-2,-177],[-2,-36],[0,-47],[0,-69],[-1,-39],[0,-34],[0,-44],[0,-35],[0,-43],[-1,-59],[0,-60],[0,-58],[0,-36],[-1,-89],[0,-37],[0,-79],[0,-62],[0,-40],[-1,-54],[0,-42],[0,-46],[0,-62],[0,-59],[0,-62],[-1,-36],[0,-40],[0,-43],[0,-68],[-1,-58],[0,-57],[-1,-36],[0,-54],[0,-34],[0,-57],[-1,-59],[0,-61],[-1,-64],[0,-48],[-1,-70],[0,-39],[0,-38],[-1,-45],[0,-59],[-1,-62],[0,-57],[0,-40],[0,-39],[0,-33],[0,-34]],[[99722,57947],[-31,0],[-16,0],[-21,1],[-26,0],[-13,0],[-20,-1],[-31,0],[-16,0],[-22,-1],[-27,0],[-15,1],[-23,-1],[-38,0],[-24,1],[-28,-1],[-13,1],[-14,0],[-27,0],[-15,1],[-13,0],[-20,0],[-24,0],[-19,0],[-40,1],[-37,-1],[-62,1],[-16,-1],[-17,0],[-26,0],[-15,0],[-61,-1],[-23,0],[-23,0],[-43,1],[-23,0],[-23,0],[-3,0],[-14,0],[-17,0],[-2,1],[-19,0],[-17,0],[-15,0],[-16,-1],[-24,1],[-5,0],[-10,0],[-15,0],[-41,0],[-53,0],[-62,0],[-46,-1],[-19,0],[-47,1],[-33,1],[-15,1],[-36,1],[-29,1],[-17,1],[-14,0],[-68,1],[-27,0],[-66,0],[-26,-1],[-33,-1],[-20,0],[-49,-1],[-15,0],[-49,0],[-24,0],[-15,0],[-38,-1],[-15,0],[-24,0],[-45,1],[-39,-1],[-28,0],[-14,1],[-26,0],[-26,0],[-25,1],[-31,0],[-55,0],[-44,1],[-24,0],[-38,0],[-45,0],[-78,-1],[-23,1],[-41,0],[-55,0],[-39,0],[-15,0],[-15,1],[-27,0],[-43,0],[-16,0],[-17,0],[-17,1],[-1,0],[-13,1],[-18,0],[-35,1],[-15,0],[-17,0],[-18,0],[-14,0],[-2,0],[-23,-2],[-17,1],[-18,0],[-15,1],[-41,2],[-18,-2],[-17,0],[-13,0],[-21,-1],[-24,0],[-14,0],[-34,1],[-36,-1],[-19,0],[-20,1],[-16,0],[-15,0],[-30,0],[-24,0],[-14,0],[-24,-1],[-21,1],[-16,0],[-28,1],[-23,-1],[-15,0],[-17,-2],[-19,-2],[-24,0],[-45,0],[-33,1],[-19,1],[-19,0],[-18,0],[-30,0],[-19,0],[-19,0],[-44,-1],[-32,0],[-41,0],[-21,-1],[-41,0],[-17,0],[-36,-1],[-32,0],[-21,-1],[-22,1],[-35,1],[-16,-1],[-16,0],[-44,1],[-18,1],[-20,0],[-62,0],[-24,0],[-24,0],[-38,1],[-42,0],[-14,0],[-35,0],[-15,-1],[-27,0],[-18,2],[-14,0],[-24,-3],[-66,5],[-23,0],[-13,1],[-21,-1],[-28,0],[-22,0],[-21,0],[-14,-1],[-35,1],[-14,4],[-42,1],[-14,-1],[-42,0],[-14,-1],[-125,-3],[-17,1],[-22,-1],[-15,0],[-75,0],[-19,0],[-27,0],[-24,0],[-22,0],[-22,0],[-65,0],[-24,1],[-33,0],[-17,0],[-15,0],[-43,-1],[-16,-3],[-5,0],[-9,0],[-27,5],[-62,0],[-26,0],[-29,0],[-14,0],[-3,0],[-17,0],[-31,0],[-26,0],[-32,0],[-44,1],[-15,0],[-37,0],[-33,0],[-76,1],[-45,0]],[[62704,53671],[-42,-3],[-16,0],[-50,0],[-45,-1],[-18,0],[-78,0],[-22,0],[-19,-1],[-92,-1],[-17,0],[-29,-1],[-55,-1],[-15,1],[-27,0],[-32,1],[-31,-1],[-29,1],[-41,1],[-18,0],[-15,0],[-16,0],[-26,0],[-13,0],[-30,1],[-63,1],[-16,1],[-15,6],[-3,-2],[-11,-7],[-23,1],[-53,0],[-16,0],[-18,0],[-32,0],[-26,1],[-45,-1],[-15,0],[-32,0],[-28,0],[-60,-1],[-20,1],[-122,0],[-15,0],[-22,-1],[-19,0],[-21,1],[-19,-1],[-67,4],[-31,2],[-18,0],[-141,-5],[-38,-1],[-60,1],[-7,-1],[-28,-1],[-51,0],[-29,0],[-37,1],[-38,0],[-112,-1],[-23,0],[-56,0],[-51,0],[-32,-1],[-32,0],[-25,0],[-25,-1],[-217,-3],[-82,1],[-52,-1],[-32,-1],[-25,0],[-19,1],[-55,0],[-16,0],[-93,-1],[-18,-2],[-112,0],[-41,2],[-43,0],[-20,0],[-41,0],[-62,-1],[-21,0],[-21,0],[-43,-1],[-22,1],[-51,0],[-30,0],[-22,0],[-9,0],[-31,0],[-23,0],[-25,1],[-75,-1],[-15,0],[-19,0],[-29,1],[-220,0],[-18,1],[-22,-1],[-21,1],[-83,0],[-16,0],[-30,2],[-41,0],[-17,0],[-26,0],[-17,0],[-50,0],[-35,0],[-13,0],[-34,0],[-30,0],[-36,1],[-33,0],[-36,1],[-20,0],[-47,0],[-32,0],[-51,1],[-28,0],[-42,1],[-20,0],[-23,0],[-27,0],[-47,0],[-21,0],[-21,0],[-17,0],[-32,0],[-25,-1],[-24,0],[-72,3],[-13,0],[-52,1],[-61,1],[-23,1],[-15,-1],[-16,0],[-19,0],[-18,0],[-20,0],[-28,1],[-23,1],[-43,0],[-25,0],[-17,0],[-18,0],[-34,0],[-56,0],[-25,1],[-21,-2],[-28,1],[-13,1],[-15,0],[-28,1],[-22,-1],[-30,1],[-14,0],[-37,0],[-22,1],[-25,0],[-23,0],[-22,1],[-36,0],[-23,-1],[-69,3],[-179,-1],[-98,3],[-61,0],[-85,-1],[-41,0],[-14,1],[-93,0],[-90,0],[-70,-1],[-19,17],[-99,-5],[-38,1],[-33,-1],[-95,-1],[-153,-1],[-142,-2],[-33,1],[-69,1]],[[55296,53689],[0,76],[-1,52],[1,82],[0,40],[-1,41],[1,37],[-1,73],[0,60],[0,41],[0,134],[0,61],[0,242],[0,409],[-2,668],[-1,388],[-1,183],[0,300],[-45,5],[1,159],[0,322],[0,1280],[0,67],[0,9],[0,38],[0,40],[0,25],[1,73],[-1,94],[-1,53],[0,46],[0,112],[1,132],[-1,145],[0,135],[0,123],[0,36],[1,89],[-1,67],[1,102],[0,138],[0,124],[0,138],[-1,90],[0,40],[0,54],[2,103],[1,49],[-1,52],[0,88],[0,55],[-1,36],[0,80],[0,38],[0,47],[0,57],[-1,46],[1,72],[-1,245],[0,117],[0,129],[0,39],[0,50],[0,47],[-1,56],[0,120],[0,40],[0,67],[0,46],[0,54],[0,46],[0,34],[0,66],[-1,89],[0,37],[-4,45],[0,2]],[[76361,57977],[-2,-341],[-2,-142],[0,-54],[-1,-53],[0,-46],[-1,-174],[0,-39],[0,-54],[0,-62],[-1,-53],[0,-54],[0,-61],[0,-53],[0,-60],[0,-16],[0,-34],[0,-24],[0,-21],[0,-36],[1,-36],[0,-34],[0,-42],[0,-36],[1,-93],[0,-19],[0,-19],[-3,-50],[0,-42],[0,-35],[0,-85],[0,-65],[0,-33],[0,-109],[0,-95],[0,-38],[0,-53],[0,-65],[0,-62],[0,-10],[0,-35],[0,-34],[0,-64],[1,-99],[-1,-52],[0,-56],[0,-140],[1,-100],[0,-134],[0,-129],[0,-49],[-1,-148],[0,-58],[-2,-290],[0,-51],[3,-458],[0,-259],[0,-96],[-1,-151],[-2,-165],[0,-52],[-1,-66],[0,-60],[0,-52],[0,-60],[0,-71],[-1,-176],[0,-40],[-1,-50],[0,-39],[0,-121],[0,-56],[0,-52],[-1,-47],[0,-68],[0,-66],[0,-60],[-1,-127],[0,-35],[0,-30],[0,-197],[-1,-128],[0,-55],[0,-32],[0,-23],[0,-38],[0,-63],[0,-55],[1,-46],[0,-54],[-1,-109],[0,-57],[0,-67]],[[76345,50759],[-125,5],[-32,1],[-36,2],[-14,-5],[-19,1],[-62,-3],[-132,-2],[-19,0],[-82,1],[-27,-1],[-14,0],[-19,0],[-163,-1],[-32,2],[-16,0],[-29,1],[-79,1],[-51,1],[-24,0],[-26,0],[-55,-1],[-32,-1],[-11,0],[-17,-1],[-14,0],[-15,0],[-65,-1],[-22,1],[-14,-1],[-72,0],[-136,1],[-33,-3],[-17,0],[-15,0],[-43,1],[-29,0],[-15,0],[-4,0],[-36,-1],[-36,1],[-57,1],[-30,0],[-15,0],[-22,0],[-31,0],[-14,0],[-50,1],[-20,-1],[-55,1],[-18,-1],[-104,1],[-118,0],[-17,1],[-24,-1],[-17,1],[-24,-1],[-16,0],[-95,1],[-5,0],[-14,1],[-43,2],[-33,0],[-75,1],[-150,1],[-85,1],[-85,1],[-228,2],[-103,1],[-36,0],[-45,0],[-76,0],[-105,0],[-146,-1],[-14,0],[-74,0],[-212,0],[-90,0],[-82,0],[-83,0],[-60,0],[-185,0],[-61,0],[-50,1],[-176,2],[-14,0],[-22,0],[-41,-1],[-21,0],[-41,0],[-12,0],[-91,1],[-128,1],[-68,1],[-86,1],[-32,0],[-32,1],[-119,1],[-114,1],[-29,0],[-112,1],[-313,3],[-65,0],[-153,2],[-25,2]],[[70102,50786],[-245,2],[-31,0],[-83,0],[-133,0],[-37,0],[-43,-1],[-17,1],[-52,0],[-15,0],[-23,0],[-15,0],[-46,-1],[-24,0],[-16,0],[-5,0],[-88,-1],[-17,0],[-20,1],[-19,-1],[-40,0],[-18,0],[-105,0],[-142,-1],[-87,0],[-74,0],[-30,0],[-18,0],[-34,0],[0,111],[0,248],[0,91],[0,53],[0,231],[0,208],[0,28],[0,17],[0,116],[-1,127],[1,56],[-1,66],[0,33],[0,52],[0,150],[0,38],[0,118],[0,70],[-1,54],[1,59],[-1,87],[-1,395],[0,115],[0,34],[0,39],[0,40],[-1,251]],[[55296,53689],[0,-58],[-1,-43],[1,-35],[2,-221],[-1,-36],[0,-1],[-2,-94],[0,-69],[0,-49],[0,-263],[0,-105],[-1,-101],[1,-111],[-1,-48],[1,-48],[-1,-60],[0,-68],[1,-46],[0,-21],[1,-119],[0,-47],[0,-44],[1,-37],[0,-66],[1,-63],[1,-86],[4,-954]],[[55303,50796],[-197,-6],[-61,-2],[-35,-1],[-177,-5],[-55,-2],[-26,1],[-18,0],[-23,1],[-21,0],[-17,0],[-40,0],[-18,1],[-15,-1],[-22,0],[-29,0],[-18,0],[-19,0],[-24,0],[-22,0],[-20,1],[-16,-1],[-124,1],[-57,0],[-56,1],[-28,-1],[-28,0],[-32,0],[-21,0],[-18,0],[-2,0],[-12,-2],[-3,0],[-11,-3],[-65,1],[-46,0],[-50,0],[-18,0],[-40,0],[-16,0],[-30,0],[-53,0],[-64,0],[-85,0],[-80,0],[-40,-1],[-61,0],[-66,0],[-58,0],[-23,0],[-20,0],[-24,0],[-56,0],[-51,0],[-16,0],[-37,0],[-34,0],[-43,0],[-51,0],[-84,0],[-60,0],[-27,0],[-63,-1],[-49,1],[-10,0],[-20,0],[-3,0],[-22,0],[-22,-1],[-46,1],[-15,0],[-121,-1],[-45,0],[-2,0],[-2,0],[-36,0],[-20,0],[-16,-2],[-7,-1],[-17,-5],[-8,3],[-6,3],[-20,0],[-22,0],[-14,0],[-18,0],[-27,0],[-24,0],[-14,0],[-54,0],[-180,-1],[-24,0],[-37,1],[-29,0],[-15,-1],[-19,0],[-24,0],[-14,0],[-27,0],[-19,0],[-17,0],[-25,0],[-116,1],[-131,1],[-49,0],[-14,0],[-51,0],[-44,0],[-42,0],[-26,0],[-4,0],[-18,0],[-69,0],[-24,0],[-27,1],[-34,-1],[-24,1],[-35,0],[-35,0],[-24,-1],[-70,-1],[-31,0],[-37,0],[-49,-1],[-24,-1],[-16,0],[-120,-1],[-127,-2],[-36,-1],[-29,0],[-42,1],[-17,0],[-31,-1],[-28,0],[-22,0],[-47,-1],[-68,0],[-62,0],[-113,0],[-248,-5],[-17,0],[-19,0],[-14,0],[-15,0],[-14,1],[-14,0],[-16,0],[-19,0],[-22,1],[-8,0],[-22,0],[-33,-1],[-52,0],[-48,3],[-31,0],[-20,-5],[-16,-4],[-18,6],[-20,4],[-38,0],[-28,0],[-36,0],[-91,-1],[-37,0],[-32,0],[-82,-1],[-14,0],[-16,0],[-56,0],[-37,0],[-32,0],[-31,0],[-35,-1],[-26,0],[-21,0],[-31,0],[-46,0],[-61,0],[-16,0],[-86,0],[-19,0],[-20,0],[-15,0],[-17,0],[-3,0],[-22,0],[-27,0],[-14,0],[-20,0],[-35,0],[-47,0],[-40,0],[-49,0],[-18,0],[-15,0],[-19,0],[-45,0],[-37,0],[-19,1]],[[47852,50766],[0,60],[0,78],[1,66],[0,74],[0,72],[1,38],[0,93],[0,145],[1,66],[0,1],[0,118],[0,44],[0,51],[0,58],[0,64],[0,205],[0,60],[0,65],[0,88],[0,78],[0,23],[0,176],[0,171],[0,58],[1,61],[0,76],[0,59],[0,47],[1,156],[0,60],[0,155],[0,89],[1,238],[0,134],[0,108],[0,120],[0,46],[0,74],[-1,140],[0,1],[0,89],[0,251],[0,365],[0,118],[0,316],[0,52],[0,114],[0,115],[0,34],[1,143],[0,189],[0,102],[-1,174],[0,42],[0,52],[0,134],[-59,6],[-23,0]],[[87775,57970],[0,-38],[0,-57],[-1,-45],[0,-38],[0,-75],[0,-124],[-1,-55],[1,-45],[0,-48],[0,-53],[0,-54],[-1,-35],[-3,-306],[-1,-57],[-1,-335],[0,-81],[-18,0],[-40,0],[-27,0],[-7,-90],[-1,-51],[-1,-45],[-1,-71],[0,-49],[-1,-43],[0,-59],[-1,-44],[0,-64],[-1,-66],[0,-90],[0,-44],[-1,-68],[0,-44],[0,-42],[0,-45],[0,-93],[-1,-85],[-4,-112],[1,-225],[2,-483],[2,-284],[0,-36],[0,-40],[0,-61],[0,-35],[-2,-68],[0,-112],[-1,-252],[0,-60],[0,-34],[1,-18],[2,-106],[0,-92],[1,-108],[0,-103],[0,-38],[0,-137],[0,-9],[-2,-72],[0,-100],[0,-967],[1,-120],[0,-41],[1,-289],[-1,-74],[0,-118],[0,-87],[1,-45],[0,-37],[0,-69],[-1,-66],[0,-88],[2,-92],[0,-137],[-1,-59],[0,-55],[0,-97],[0,-69],[-1,-33],[1,-46],[0,-38],[0,-47],[0,-52],[0,-80],[0,-39],[1,-59],[0,-102],[0,-41],[1,-52],[0,-98],[-1,-40],[1,-56],[-1,-53],[0,-47],[0,-51],[0,-45],[1,-41],[-1,-35],[1,-36],[0,-61],[0,-134],[0,-46],[1,-78],[-1,-45],[0,-53],[0,-35],[1,-57],[0,-88],[-1,-33],[0,-34],[1,-66],[0,-62],[0,-34],[0,-67],[5,-33],[-4,-37],[-1,-71],[0,-52],[0,-44],[0,-77],[1,-36],[0,-37],[0,-61],[0,-57]],[[87674,47847],[-46,-2],[-21,0],[-15,1],[-34,0],[-16,0],[-23,0],[-22,1],[-16,0],[-55,1],[-34,0],[-49,0],[-46,0],[-16,0],[-52,1],[-26,0],[-25,1],[-101,0],[-94,1],[-21,0],[-32,0],[-49,0],[-33,1],[-53,0],[-22,0],[-18,0],[-14,0],[-22,0],[-25,0],[-14,0],[-16,0],[-32,0],[-23,1],[-15,0],[-20,0],[-22,0],[-14,1],[-91,-1],[-14,0],[-22,1],[-74,0],[-45,0],[-55,1],[-31,0],[-33,0],[-30,1],[-66,0],[-15,0],[-28,0],[-16,0],[-25,0],[-31,1],[-52,3],[-210,6],[-151,0],[-36,-1],[-58,0],[-84,-7],[-44,-3],[-39,0],[-46,0],[-18,0],[-51,1],[-127,5],[-33,1],[-19,0],[-29,-2],[-14,-5],[-101,-2],[-38,-1],[-26,1],[-27,-1],[-18,1],[-16,0],[-16,0],[-26,-1],[-15,0],[-16,0],[-20,0],[-39,0],[-27,0],[-27,-1],[-27,-1],[-15,0],[-29,0],[-68,-1],[-26,0],[-23,-1],[-20,-1],[-23,0],[-20,-1],[-19,1],[-49,-1],[-28,0],[-134,-4],[-21,-1],[-19,0],[-26,-2],[-17,0],[-15,0],[-135,2],[-15,0],[-13,1],[-24,1],[-39,0],[-242,-2],[-6,0],[-8,0],[-73,0],[-50,0],[-16,0],[-73,1],[-28,0],[-54,1],[-65,1],[-57,0],[-28,0],[-22,0],[-22,0],[-60,1],[-84,1],[-47,0],[-57,1],[-38,1],[-27,0],[-48,0],[-59,0],[-47,2],[-28,-1],[-29,1],[-21,0],[-16,0],[-15,0],[-26,1],[-18,0],[-82,0],[-31,0],[-54,0],[-151,0],[-15,-1],[-28,0],[-105,0],[-22,1],[-26,0],[-31,0],[-28,0],[-14,0],[-32,1]],[[81751,47852],[1,244],[0,53],[1,73],[0,35],[0,77],[0,220],[2,191],[0,72],[0,47],[0,165],[0,123],[0,47],[0,75],[1,38],[-1,354],[-1,123],[0,67],[0,57],[0,48],[0,80],[0,72],[0,44],[0,45],[0,61],[0,107],[0,48],[0,113],[1,48],[-1,34],[1,40],[0,10],[0,30],[0,47],[0,3],[1,182],[0,194],[0,49],[0,40],[0,16],[1,39],[0,40],[0,56],[0,48],[0,101],[0,80],[1,59],[1,13],[1,49],[-1,37],[0,31],[0,51],[-1,342],[0,39],[1,267],[0,195],[0,95],[-1,213],[-1,273],[2,46],[1,273],[0,58],[0,117],[0,164],[0,44],[1,167],[0,70],[0,40],[0,76],[0,92],[0,145],[0,52],[0,34],[0,34],[0,45],[0,319],[0,39],[0,12],[0,35],[0,102],[-1,64],[0,58],[0,11],[0,84],[0,61],[1,66],[0,43],[-1,171],[1,43],[-1,86],[0,128],[0,104],[0,53],[0,33],[0,46],[0,47],[0,214],[53,-1],[0,34],[-1,81],[-1,84],[-1,104],[-1,121],[0,60],[-1,91],[0,54],[0,97],[-1,174],[-1,51],[3,323],[1,179]],[[81751,47852],[0,-108],[0,-63],[0,-65],[0,-65],[0,-41],[-1,-96],[-1,-46],[0,-34],[0,-78],[1,-132],[0,-6],[-1,-189],[0,-43],[0,-100],[0,-51],[0,-79],[0,-73],[0,-45],[0,-73],[0,-45],[0,-123],[0,-10],[-1,-69],[0,-296],[-1,-80],[1,-66],[0,-53],[0,-94],[0,-44],[1,-65],[0,-35],[0,-45],[0,-314],[0,-79],[-1,-75],[0,-46],[1,-36],[1,-45],[-1,-48],[0,-73],[1,-170],[-1,-45],[1,-145],[0,-95],[1,-242],[-1,-34],[0,-99],[0,-10],[0,-100],[0,-60],[0,-37],[0,-42],[1,-36],[0,-38],[0,-43],[0,-63],[1,-60],[0,-59],[1,-76],[0,-42],[0,-50],[0,-77],[0,-76],[0,-103],[0,-85],[0,-40],[1,-59],[0,-66],[0,-102],[1,-62],[-1,-212],[0,-9],[0,-44],[1,-182],[-37,0],[-14,-1],[-14,0],[-27,2],[-18,0],[-4,-101],[0,-41],[-2,-109],[-1,-38],[2,-34],[0,-55],[0,-68],[0,-95],[0,-49],[1,-74],[0,-72],[-1,-154],[0,-39],[0,-38],[0,-56],[0,-165],[0,-79],[0,-47],[-1,-54],[0,-35],[0,-87],[0,-145],[-1,-104],[0,-48],[0,-88],[-1,-80],[0,-49],[0,-71],[0,-55],[0,-187],[0,-75],[0,-76],[-1,-49],[1,-50],[0,-258],[0,-51],[0,-73]],[[81637,39113],[-41,1],[-207,5],[-24,0],[-37,2],[-88,1],[-24,1],[-34,1],[-40,0],[-13,1],[-26,0],[-18,0],[-43,2],[-15,0],[-23,0],[-28,1],[-31,0],[-23,1],[-27,1],[-36,2],[-87,2],[-95,4],[-28,0],[-35,0],[-25,1],[-76,0],[-76,1],[-20,0],[-33,1],[-35,1],[-66,0],[-23,1],[-16,0],[-58,1],[-22,0],[-22,-1],[-24,0],[-24,1],[-21,0],[-18,-1],[-24,1],[-21,-1],[-60,1],[-135,0],[-121,0],[-115,6],[-88,0],[-42,0],[-42,-1],[-31,1],[-25,1],[-69,0],[-47,1],[-93,2],[-26,1],[-87,1],[-45,1],[-3,0],[-95,2],[-98,0],[-22,-1],[-24,1],[-15,1],[-32,1],[-33,-1],[-26,2],[-63,1],[-17,1],[-14,0],[-24,0],[-24,1],[-18,0],[-44,0],[-18,1],[-19,0],[-47,1],[-20,1],[-23,0],[-18,0],[-38,1],[-23,1],[-49,1],[-41,1],[-28,0],[-15,1],[-35,0],[-24,0],[-24,1],[-48,1],[-18,0],[-45,1],[-16,0],[-23,0],[-15,0],[-40,1],[-15,-1],[-24,1],[-17,1],[-82,0],[-24,0],[-15,0],[-1,0],[-23,-1],[-28,0],[-23,0],[-15,1],[-18,-3],[-31,0],[-26,0],[-24,-1],[-37,0],[-19,-1],[-43,2],[-18,0],[-21,1],[-28,0],[-40,1],[-17,0],[-22,-1],[-19,0],[-16,0],[-26,0],[-107,-1],[-289,-2],[-108,0],[-94,-1],[-236,33]],[[76299,39205],[2,34],[1,121],[1,36],[1,35],[-1,46],[0,75],[0,9],[1,80],[0,39],[1,134],[1,341],[1,74],[0,101],[0,112],[1,469],[-1,35],[2,154],[3,495],[1,144],[0,72],[0,3],[1,211],[0,58],[9,88],[0,42],[0,106],[0,242],[1,544],[0,3],[0,47],[0,3],[1,289],[0,64],[1,499],[0,43],[0,192],[0,40],[0,573],[1,112],[-1,58],[0,43],[1,42],[0,19],[0,44],[0,49],[0,83],[0,52],[0,36],[0,60],[1,55],[0,59],[0,36],[0,45],[0,54],[0,43],[0,54],[1,206],[1,173],[0,36],[0,203],[0,46],[1,67],[0,34],[1,47],[0,120],[0,11],[0,23],[0,75],[0,41],[0,34],[0,28],[1,28],[-1,61],[0,42],[1,77],[0,138],[0,43],[0,49],[0,58],[0,124],[0,53],[1,46],[0,97],[0,51],[1,157],[0,48],[1,197],[1,78],[0,59],[1,88],[0,72],[1,142],[0,184],[2,431],[0,46],[1,91],[2,360],[0,85],[2,223],[0,206],[0,56],[0,45],[1,63],[0,110],[0,34],[-2,82],[0,54],[0,35]],[[93728,57963],[0,-45],[0,-87],[0,-50],[0,-66],[0,-70],[-1,-48],[0,-43],[0,-75],[2,-65],[-1,-85],[0,-2],[1,-126],[0,-75],[0,-38],[-1,-28],[0,-6],[0,-46],[0,-40],[-2,-212],[-1,-244],[-29,-1],[-28,1],[-19,0],[-46,-10],[0,-74],[0,-81],[0,-49],[0,-50],[1,-34],[0,-123],[0,-51],[1,-40],[0,-60],[1,-71],[0,-36],[0,-44],[0,-66],[0,-60],[0,-39],[1,-66],[2,-209],[0,-84],[1,-186],[0,-141],[1,-142],[0,-101],[1,-101],[0,-130],[1,-136],[1,-150],[-2,-62],[-3,-250],[0,-162],[1,-76],[1,-175],[1,-159],[-3,-272],[0,-68],[2,-44],[1,-247],[0,-124],[0,-113],[0,-128],[0,-60],[0,-58],[0,-243],[-1,-99],[0,-30],[-1,-49],[0,-21],[0,-14],[-1,-83],[0,-35],[0,-55],[0,-169],[0,-170],[0,-205],[0,-196],[-2,-117],[-3,-103],[0,-7],[0,-87],[-1,-215],[3,-241],[0,-45],[-1,-242],[0,-131],[0,-66],[0,-273],[0,-66],[1,-183],[1,-219],[0,-38],[1,-253],[0,-14],[0,-98],[0,-38],[-4,-74],[0,-79],[0,-50],[0,-61],[0,-45],[-1,-607],[-4,-356],[0,-36],[0,-40],[0,-37],[1,-67],[0,-60],[0,-32],[0,-3],[1,-201],[1,-177],[0,-64]],[[93602,46386],[-57,-3],[-58,-3],[-16,0],[-25,1],[-14,0],[-27,-1],[-46,-2],[-65,3],[-23,-1],[-22,0],[-141,5],[-25,0],[-19,1],[-3,0],[-15,1],[-81,4],[-17,-7],[-15,1],[-5,0],[-32,1],[-33,1],[-54,2],[-132,5],[-57,-9],[-41,1],[-24,0],[-15,0],[-83,1],[-30,0],[-57,1],[-103,1],[-30,0],[-33,0],[-19,0],[-31,1],[-20,0],[-17,0],[-22,1],[-13,-1],[-16,1],[-18,1],[-35,-1],[-16,1],[-25,0],[-15,0],[-22,1],[-33,1],[-15,0],[-192,8],[-26,1],[-14,-8],[-16,-8],[-20,-8],[-14,7],[-14,6],[-14,11],[-38,-6],[-38,1],[-17,1],[-26,0],[-16,0],[-16,-1],[-34,1],[-42,-1],[-151,-1],[-18,0],[-16,-1],[-13,0],[-1,0],[-17,0],[-15,-1],[-48,0],[-20,-1],[-24,0],[-73,-1],[-21,-1],[-28,0],[-31,-1],[-121,1],[-18,0],[-78,1],[-48,0],[-61,-1],[-83,0],[-28,-1],[-27,0],[-15,0],[-28,0],[-70,-1],[-75,1],[-26,0],[-30,0],[-46,1],[-26,0],[-37,1],[-81,0],[-62,1],[-134,-1],[-17,1],[-34,-1],[-36,-1],[-36,0],[-23,0],[-42,0],[-40,0],[-20,0],[-26,1],[-46,-1],[-27,1],[-22,0],[-113,3],[-31,0],[-44,0],[-37,0],[-23,0],[-47,0],[-34,0],[-17,0],[-26,-1],[-37,1],[-44,0],[-35,-1],[-33,1],[-39,-1],[-13,-7],[-18,-1],[-17,9],[-30,-1],[-9,0],[-6,0],[-16,0],[-27,-1],[-51,0],[-42,0],[-190,0],[-17,1],[-17,-1],[-6,-17],[-3,-8],[-22,20],[-27,5],[-34,0],[-64,0],[-30,-1],[-62,0],[-26,0],[-26,0],[-13,0],[-24,1],[-15,0],[-37,0],[-88,2],[-90,0],[-21,1],[-28,0],[-23,0],[-20,0],[-14,0],[-10,0],[-9,0],[-15,0],[-18,0]],[[87673,46397],[0,3],[0,41],[0,40],[1,169],[0,39],[0,33],[0,158],[0,152],[1,132],[0,123],[0,81],[0,106],[-1,139],[0,40],[0,95],[0,99]],[[99722,57947],[-1,-72],[-1,-70],[-1,-69],[-1,-47],[0,-33],[-1,-72],[0,-43],[0,-68],[-1,-71],[0,-60],[-1,-56],[-1,-59],[0,-40],[-1,-85],[0,-60],[0,-43],[0,-40],[-1,-35],[-1,-51],[0,-58],[-1,-40],[0,-39],[0,-52],[-1,-38],[0,-55],[0,-67],[-1,-40],[0,-51],[-1,-68],[0,-44],[0,-35],[-1,-50],[-1,-86],[-1,-89],[0,-70],[-1,-43],[0,-46],[0,-39],[-1,-40],[0,-39],[-1,-72],[0,-76],[0,-35],[-1,-122],[-1,-114],[0,-67],[-1,-49],[0,-62],[-1,-58],[0,-35],[0,-66],[0,-36],[-1,-53],[0,-45],[-1,-40],[0,-33],[0,-45],[-1,-44],[-1,-103],[-1,-55],[0,-49],[-4,-41],[1,-148],[1,-122],[-2,-170],[0,-2],[0,-84],[-1,-111],[0,-64],[-1,-79],[0,-37],[-2,-54],[0,-57],[0,-126],[0,-14],[0,-302],[0,-134],[0,-103],[0,-157],[1,-33],[0,-40],[0,-64],[-2,-157],[-3,-210],[0,-40],[1,-465],[0,-88],[-2,-33],[0,-380],[0,-65],[-1,-169],[0,-196],[0,-48],[0,-64],[-1,-417],[0,-150],[0,-60],[-2,-139],[-1,-133],[-1,-51],[0,-38],[-2,-159],[0,-40],[2,-34],[-2,-151],[-2,-58],[0,-5],[-1,-97],[0,-40],[0,-48],[-1,-59],[-1,-64],[0,-49],[0,-40],[-1,-53],[0,-79],[0,-35],[-1,-80],[0,-64],[0,-49],[0,-44],[0,-86],[1,-39],[1,-37],[0,-68],[0,-38],[-1,-35],[0,-70],[0,-83],[0,-69],[0,-52],[0,-45],[-2,-99],[0,-126],[0,-53],[1,-58],[-1,-133],[1,-33],[0,-44],[0,-169],[0,-60],[0,-51],[1,-35],[0,-57],[0,-43],[0,-133],[0,-127],[1,-121],[0,-123]],[[99666,46345],[-131,3],[-29,0],[-202,3],[-135,0],[-89,-1],[-14,0],[-52,1],[-36,0],[-6,0],[-24,0],[-23,1],[-23,0],[-17,-1],[-8,0],[-16,1],[-64,-3],[-25,-1],[-15,0],[-17,-1],[-16,1],[-51,0],[-28,1],[-28,0],[-51,1],[-123,4],[-17,0],[-14,-1],[-73,-1],[-33,1],[-77,1],[-18,0],[-115,1],[-36,1],[-24,0],[-4,0],[-47,1],[-93,1],[-62,0],[-37,0],[-47,-1],[-15,0],[-15,0],[-16,0],[-33,-1],[-105,-1],[-62,-1],[-4,0],[-56,-1],[-71,0],[-30,-1],[-125,-1],[-13,-21],[-15,21],[-34,0],[-23,0],[-19,0],[-30,-1],[-14,1],[-10,-1],[-9,0],[-15,1],[-23,-1],[-34,0],[-30,0],[-27,-1],[-28,0],[-69,-1],[-36,2],[-19,0],[-288,-3],[-25,1],[-34,4],[-34,0],[-23,0],[-21,1],[-46,-1],[-102,2],[-34,-1],[-76,1],[-81,1],[-15,0],[-94,1],[-30,1],[-30,0],[-23,1],[-24,0],[-37,0],[-14,0],[-1,0],[-28,1],[-91,0],[-15,0],[-19,0],[-20,0],[-23,0],[-18,0],[-48,1],[-14,0],[-39,0],[-15,0],[-72,-4],[-19,3],[-36,-1],[-47,1],[-32,0],[-32,0],[-32,2],[-15,0],[-18,0],[-14,0],[-82,2],[-10,0],[-9,0],[-90,1],[-3,0],[-54,1],[-28,-1],[-17,1],[-17,0],[-15,0],[-30,0],[-16,0],[-35,1],[-20,0],[-44,1],[-26,0],[-43,0],[-30,1],[-51,1],[-85,1],[-28,0],[-35,1],[-73,4],[-39,2],[-226,-2],[-13,0],[-16,1],[-178,7],[-49,1],[-90,1],[-33,1]],[[18272,56682],[2,-474],[2,-318],[3,-677],[0,-80],[0,-12],[2,-408],[0,-40],[0,-71],[1,-133],[-2,-181],[0,-65],[0,-61],[0,-41],[0,-75],[1,-240],[0,-52],[0,-43],[1,-81],[0,-250],[1,-50],[0,-10],[1,-254],[3,-658],[0,-6],[0,-353],[0,-48],[1,-127],[0,-84],[0,-205],[0,-36],[3,-640],[1,-381],[-2,-41],[0,-44],[1,-97],[-1,-305],[1,-89],[1,-195],[2,-187],[0,-25],[0,-18],[-1,-73],[0,-4],[3,-472],[1,-251],[0,-75],[1,-56],[0,-55],[1,-50],[-1,-111],[1,-135],[-1,-78],[-1,-60],[1,-40],[0,-48],[0,-54],[0,-60],[1,-69],[0,-98],[0,-51],[0,-34],[1,-127],[0,-42],[-2,-53],[1,-113],[0,-36],[0,-87],[0,-33],[0,-56],[0,-49],[4,-494],[3,-497],[1,-175],[1,-170],[1,-122],[0,-119],[1,-363],[0,-53],[1,-137],[0,-52],[1,-86],[0,-155],[0,-38],[0,-49],[0,-46],[1,-183],[0,-48],[0,-123],[1,-66],[0,-37],[0,-37],[0,-54],[0,-40],[0,-98],[0,-52],[1,-87],[1,-87],[0,-67],[0,-52],[1,-66],[0,-79],[0,-36],[0,-51],[1,-52],[1,-33],[-2,-713],[-42,-231]],[[18275,42209],[-18,0],[-25,0],[-46,0],[-43,1],[-31,1],[-23,0],[-17,0],[-46,0],[-24,0],[-45,0],[-34,1],[-37,0],[-43,1],[-15,0],[-38,1],[-159,2],[-39,0],[-31,0],[-36,1],[-83,1],[-15,0],[-14,0],[-15,0],[-46,1],[-15,0],[-23,0],[-36,1],[-19,0],[-22,0],[-36,1],[-47,0],[-22,1],[-45,0],[-51,1],[-22,0],[-43,1],[-21,0],[-14,0],[-25,0],[-25,1],[-17,0],[-23,0],[-66,1],[-22,-1],[-21,2],[-91,0],[-24,1],[-18,0],[-127,1],[-97,1],[-95,2],[-54,0],[-103,2],[-18,0],[-14,0],[-20,0],[-19,0],[-38,1],[-33,0],[-34,0],[-32,0],[-18,1],[-14,0],[-30,0],[-33,0],[-28,1],[-30,1],[-20,0],[-17,0],[-26,1],[-15,0],[-39,0],[-123,3],[-1,0],[-123,1],[-33,1],[-38,0],[-47,-1],[-23,0],[-15,0],[-25,0],[-20,0],[-28,-1],[-18,0],[-33,0],[-94,-1],[-14,0],[-32,0],[-18,0],[-15,-1],[-15,1],[-73,-1],[-16,0],[-16,0],[-46,-1],[-14,0],[-17,0],[-85,-1],[-252,-1],[-26,-1],[-23,0],[-40,0],[-33,0],[-24,-1],[-31,0],[-31,-1],[-46,1],[-36,-1],[-34,1],[-37,-1],[-25,0],[-34,-1],[-36,0],[-21,0],[-31,0],[-16,0],[-187,-2],[-19,0],[-129,-1],[-25,0],[-56,-1],[-36,0],[-43,-1],[-62,0],[-58,-1],[-33,0],[-22,0],[-29,0],[-25,-1],[-17,0],[-36,0],[-32,-1],[-18,0],[-18,1],[-29,-1],[-43,0],[-29,-1],[-48,0],[-49,-1],[-34,1],[-38,-1],[-69,-1]],[[12708,42222],[-49,0],[-18,-1],[-55,1],[-69,-1],[-21,0],[-20,0],[-14,0],[-51,0]],[[12411,42221],[0,73],[0,44],[-1,124],[0,71],[-1,99],[0,43],[0,46],[-1,121],[0,41],[-1,83],[-1,218],[0,51],[-4,577],[0,48],[-1,77],[0,3],[-1,163],[0,45],[-1,182],[0,34],[0,46],[-1,51],[0,37],[0,38],[0,39],[-1,54],[-1,214],[-1,228],[0,56],[-1,34],[0,16],[-1,164],[0,42],[-1,35],[0,34],[-1,67],[0,35],[0,41],[-2,180],[-1,115],[0,34],[-2,175],[0,133],[0,90],[0,54],[-1,181],[-1,83],[0,54],[-1,190],[-1,157],[0,124],[-1,52],[0,46],[0,53],[-1,33],[0,109],[0,22],[-1,42],[0,39],[0,54],[0,44],[0,60],[-1,56],[0,128],[0,62],[0,39],[1,385],[-1,59],[0,36],[1,111],[0,369],[0,237],[1,45],[0,80],[0,1],[0,59],[0,57],[0,4],[0,41],[0,52],[0,54],[0,36],[0,44],[0,38],[0,50],[0,45],[1,58],[0,57],[0,66],[0,60],[0,73],[0,52],[0,57],[0,53],[0,53],[0,66],[0,482],[0,347],[0,54],[0,80],[-1,125],[0,55],[0,61],[0,67],[-1,135],[0,62],[0,38],[-1,95],[1,56],[-1,59],[1,45],[-1,47],[0,62],[0,59],[0,36],[0,207],[0,68],[0,77],[-1,34],[0,84],[0,94],[0,43],[0,347],[0,44],[-1,95],[0,123],[0,180],[0,40],[0,42],[-1,44],[1,49],[-1,77],[0,90],[0,111],[0,40],[0,39],[0,443],[-1,186],[0,62],[0,202],[0,35],[0,64],[0,94],[0,119],[0,72],[0,89],[0,45],[0,122],[-1,69],[0,81],[0,212],[0,77],[0,54],[0,69],[0,62],[0,88],[0,40],[0,61],[-1,60]],[[24178,56621],[-1,-215],[-1,-180],[-3,-326],[0,-272],[-2,-423],[0,-37],[0,-43],[-7,-328],[-2,-43],[-1,-72],[-1,-18],[0,-15],[-1,-462],[0,-66],[1,-79],[0,-45],[1,-131],[0,-42],[0,-40],[0,-77],[0,-48],[3,-284],[1,-107],[1,-77],[0,-71],[1,-52],[0,-42],[1,-38],[0,-68],[0,-47],[1,-75],[1,-55],[1,-71],[1,-89],[1,-292],[1,-129],[0,-2],[0,-108],[1,-283],[0,-45],[0,-55],[1,-137],[2,-475],[1,-244],[2,-259],[0,-158],[1,-99],[1,-256],[-4,-195],[2,-473],[1,-59],[1,-183],[1,-37],[0,-86],[1,-68],[0,-2],[1,-210],[1,-252],[1,-90],[0,-55],[0,-21],[0,-76],[0,-39],[1,-37],[0,-75],[0,-70],[1,-48],[0,-54],[2,-468],[1,-70],[1,-132],[0,-29],[2,-67],[0,-69],[0,-36],[0,-49],[1,-51],[0,-81],[0,-38],[1,-34],[0,-88],[1,-80],[0,-58],[1,-78],[0,-43],[0,-70],[1,-79],[1,-76],[0,-71],[1,-75],[0,-69],[1,-69],[0,-41],[3,-369],[1,-85],[0,-42],[0,-67],[1,-133],[2,-300],[0,-48],[0,-67],[0,-65],[1,-160],[3,-208],[0,-40],[1,-142],[0,-1019],[0,-33],[0,-64],[0,-14],[0,-290],[0,-298],[2,-109],[0,-59],[-2,-131]],[[24216,42147],[-146,1],[-119,1],[-14,0],[-13,0],[-23,0],[-74,1],[-175,1],[-83,0],[-80,-7],[-26,-2],[-12,13],[-17,1],[-14,-3],[-17,2],[-20,0],[-21,1],[-16,1],[-46,-1],[-49,2],[-20,-1],[-25,1],[-35,1],[-25,1],[-17,-3],[-17,0],[-28,0],[-21,0],[-79,1],[-233,3],[-35,0],[-227,3],[-89,1],[-161,1],[-101,1],[-69,1],[-44,1],[-24,0],[-35,1],[-41,0],[-45,-1],[-16,1],[-15,2],[-19,-1],[-42,-1],[-32,-1],[-24,0],[-15,1],[-32,-1],[-137,4],[-39,-1],[-47,1],[-22,0],[-18,0],[-38,0],[-36,2],[-21,0],[-19,1],[-26,-1],[-11,1],[-32,1],[-121,2],[-120,1],[-40,1],[-16,0],[-33,1],[-13,0],[-20,1],[-21,0],[-16,1],[-14,0],[-15,1],[-19,1],[-39,-3],[-469,6],[-187,2],[-58,0],[-65,1],[-105,1],[-17,0],[-18,1],[-19,0],[-18,2],[-128,0],[-19,1],[-70,0],[-23,0],[-55,3],[-50,1],[-25,0],[-23,0],[-15,0],[-33,-1],[-17,0],[-18,-1],[-28,0],[-61,0],[-27,1],[-51,0],[-36,1],[-14,0],[-14,0],[-36,0],[-19,0],[-25,1],[-56,1],[-57,0],[-29,0],[-13,0],[-18,0],[-15,1],[-32,1],[-44,0],[-18,0],[-37,1],[-39,0],[-52,0],[-20,0],[-50,0],[-16,1],[-57,0],[-90,1],[-30,0],[-61,1]],[[6494,56671],[0,-94],[0,-67],[0,-46],[0,-48],[0,-109],[0,-41],[0,-116],[0,-331],[0,-149],[0,-232],[0,-51],[0,-45],[0,-44],[0,-93],[0,-42],[0,-65],[0,-47],[0,-47],[0,-84],[0,-93],[-1,-44],[0,-50],[0,-43],[1,-92],[-1,-134],[0,-241],[1,-44],[0,-77],[0,-49],[-1,-47],[0,-124],[0,-46],[0,-62],[0,-45],[0,-76],[1,-186],[0,-90],[-1,-122],[0,-49],[-1,-431],[0,-483],[-1,-481],[0,-35],[0,-34],[1,-36],[0,-68],[-1,-35],[0,-69],[0,-33],[1,-125],[0,-58],[0,-36],[-1,-72],[0,-123],[1,-164],[1,-75],[0,-144],[0,-41],[0,-82],[0,-151],[-1,-67],[-1,-127],[0,-20],[1,-175],[1,-446],[0,-5],[1,-190],[-2,-34],[0,-208],[0,-56],[0,-38],[0,-49],[-1,-7],[0,-88],[0,-246],[0,-722],[0,-241],[0,-185],[0,-74],[0,-222],[0,-241],[0,-482],[0,-291],[0,-34],[0,-71],[0,-112],[0,-39],[0,-37],[0,-33],[0,-37],[0,-312],[0,-231],[0,-280],[0,-46],[0,-404],[-1,-243],[0,-57],[0,-76],[0,-105],[0,-285],[0,-52],[0,-43],[0,-34],[0,-66],[-1,-241],[0,-262],[0,-74],[0,-43],[0,-48],[0,-58],[0,-82],[0,-50],[0,-105],[0,-42],[0,-65],[0,-10],[0,-42],[0,-40],[0,-42],[0,-90],[0,-88],[-1,-62]],[[6488,42175],[-159,-3],[-87,1],[-37,0],[-121,-1],[-89,0],[-155,-3],[-93,-1],[-35,0],[-114,0],[-99,-1],[-152,-1],[-90,-2],[-42,-1],[-89,-3],[-27,1],[-27,0],[-34,0],[-31,3],[-150,1],[-96,0],[-153,-1],[-93,0],[-128,-3],[-30,-1],[-92,-1],[-228,-4],[-16,-1],[-70,0],[-2,0],[-72,-2],[-24,1],[-79,-1],[-21,0],[-63,-1],[-37,0],[-22,-1],[-30,0],[-21,0],[-38,0],[-17,0],[-15,0],[-67,0],[-60,0],[-34,0],[-69,0],[-38,1],[-105,-1],[-103,0],[-23,0],[-122,-1],[-71,-1],[-27,0],[-252,1],[-130,1],[-27,0],[-14,0],[-74,0],[-133,1],[-249,0],[-111,0],[-133,0],[-39,0],[-76,0],[-134,0],[-36,0],[-74,0],[-32,0],[-60,0],[-41,0],[-14,0],[-102,0],[-125,0],[-78,0],[-43,0],[-15,-1],[-60,1],[-46,0],[-2,0],[-24,-1],[-103,0],[-120,0],[-36,-1],[-87,1],[-30,0],[-27,0],[-40,0],[-25,1],[-106,0]],[[93,42151],[2,211],[2,229],[-5,6403],[0,124],[-2,3778],[-1,969],[-1,1835],[0,901]],[[12411,42221],[-46,-1],[-32,0],[-77,-1],[-38,0],[-43,0],[-39,0],[-23,0],[-19,0],[-16,0],[-17,-1],[-41,0],[-36,1],[-66,-1],[-21,-1],[-40,0],[-31,1],[-43,-1],[-39,0],[-22,0],[-15,-1],[-35,0],[-41,0],[-24,0],[-61,-1],[-48,0],[-23,0],[-25,-1],[-24,0],[-25,0],[-50,0],[-48,-1],[-27,0],[-38,0],[-44,0],[-51,-1],[-20,0],[-22,0],[-44,0],[-66,-1],[-58,-1],[-91,0],[-52,-1],[-48,0],[-55,0],[-187,-2],[-1,0],[-305,-3],[-56,-1],[-135,3],[-181,0],[-53,-1],[-248,-6],[-68,-2],[-14,0],[-31,-1],[-67,-1],[-18,1],[-26,-1],[-24,0],[-55,-1],[-258,3],[-128,-1],[-40,-3],[-79,0],[-46,-1],[-18,-1],[-15,-1],[-88,1],[-13,-14],[-13,12],[-24,2],[-15,1],[-14,1],[-166,-1],[-82,-1],[-41,-1],[-15,2],[-16,-1],[-31,1],[-23,-1],[-119,-2],[-168,-1],[-18,0],[-190,-3],[-30,-1],[-25,0],[-49,-2],[-16,1],[-26,0],[-30,0],[-30,0],[-14,-1],[-21,0],[-42,0],[-26,0],[-19,-1],[-21,0],[-18,0],[-32,-1],[-30,0],[-28,-1],[-56,0],[-23,1],[-15,-1],[-46,0],[-17,2],[-126,-1],[-32,-3]],[[6826,42177],[-86,0],[-4,0],[-161,-2],[-33,2],[-54,-2]],[[33050,56567],[-2,-198],[-1,-133],[-5,-585],[-1,-107],[-1,-231],[1,-148],[-1,-150],[-2,-94],[0,-34],[0,-121],[-1,-36],[7,-33],[0,-2],[-6,-31],[-2,-121],[0,-124],[-3,-228],[-1,-69],[-2,-403],[0,-212],[0,-56],[0,-11],[0,-211],[0,-58],[1,-52],[0,-45],[0,-69],[0,-78],[0,-54],[0,-71],[0,-1],[0,-36],[0,-37],[0,-51],[0,-51],[0,-59],[1,-69],[0,-77],[0,-46],[0,-93],[0,-66],[0,-59],[0,-41],[0,-107],[0,-187],[0,-49],[0,-98],[0,-83],[0,-99],[0,-71],[1,-97],[0,-33],[0,-34],[0,-41],[-1,-40],[0,-40],[0,-66],[1,-239],[0,-66],[1,-451],[0,-54],[0,-128],[1,-105],[0,-65],[0,-85],[0,-209],[0,-70],[2,-336],[1,-114],[0,-28],[1,-185],[0,-22],[0,-4],[1,-94],[0,-1],[6,-880],[0,-81],[0,-44],[1,-89],[0,-273],[1,-44],[0,-40],[0,-45],[0,-80],[0,-38],[1,-51],[0,-48],[0,-164],[0,-162],[1,-111],[0,-37],[1,-142],[0,-60],[0,-39],[0,-64],[0,-50],[0,-68],[-1,-127],[0,-72],[-1,-44],[0,-72],[4,-266],[0,-117],[1,-468]],[[33054,45039],[0,-129],[0,-111],[0,-241],[1,-513],[0,-43],[0,-56],[0,-55],[2,-253],[0,-46],[1,-191],[0,-141],[1,-35],[0,-68],[0,-71],[2,-460],[0,-58],[-1,-121],[0,-58],[-1,-50],[3,-196]],[[33062,42143],[-39,0],[-38,0],[-147,0],[-137,-1],[-66,0],[-64,0],[-61,-1],[-38,0],[-159,-2],[-30,-3],[-58,1],[-257,1],[-138,1],[-28,-7],[-28,0],[-96,-1],[-17,0],[-49,0],[-19,-1],[-76,5],[-1,-1],[-29,-4],[-14,0],[-29,0],[-15,0],[-22,0],[-71,-1],[-21,0],[-18,0],[-17,0],[-24,-1],[-47,1],[-46,0],[-29,-1],[-28,1],[-16,0],[-15,0],[-22,0],[-20,0],[-29,0],[-35,-1],[-4,0],[-29,1],[-25,-1],[-39,0],[-29,1],[-26,0],[-17,0],[-45,2],[-38,0],[-60,-2],[-37,-2],[-59,-1],[-27,2],[-22,1],[-15,0],[-27,-1],[-16,1],[-15,-1],[-23,1],[-27,-1],[-33,0],[-52,2],[-196,1],[-19,2],[-35,0],[-25,0],[-52,-1],[-111,-1],[-103,0],[-82,-2],[-31,0],[-34,0],[-151,1],[-134,-1],[-135,-1],[-36,-7],[-63,0],[-90,0],[-24,0],[-108,-2],[-3,0],[-20,1],[-20,0],[-138,3],[-114,0],[-45,0],[-20,0],[-15,0],[-18,0],[-14,0],[-56,1],[-28,0],[-63,0],[-90,1],[-10,0],[-84,1],[-25,-4],[-18,0],[-66,1],[-22,0],[-32,0],[-112,1],[-186,3],[-34,0],[-20,-2],[-17,1],[-120,-6],[-103,2],[-25,1],[-203,3],[-21,-4],[-14,-1],[-178,8],[-41,1],[-32,-6],[-22,0],[-22,0],[-27,0],[-37,1],[-16,0],[-14,1],[-15,0],[-14,0],[-42,1],[-33,0],[-96,3],[-274,2],[-60,3],[-23,1],[-22,-3],[-19,0],[-144,1],[-178,-2],[-129,2],[-192,2],[-276,3],[-53,0],[-84,1],[-42,2],[-77,1],[-14,-1],[-76,1],[-44,0],[-21,0],[-24,0],[-14,1],[-19,-1],[-17,1],[-19,0],[-23,-2],[-158,2],[-81,1]],[[24447,42145],[-121,1],[-110,1]],[[47852,50766],[0,-3],[0,-59],[0,-32],[0,-153],[0,-125],[-1,-112],[0,-126],[0,-134],[0,-94],[0,-62],[0,-66],[0,-124],[0,-91],[0,-218],[0,-49],[0,-172],[0,-261],[0,-50],[-1,-155],[0,-131],[-1,-196],[0,-93],[0,-2],[0,-36],[-1,-58],[0,-86],[0,-135],[0,-72],[0,-93],[0,-390],[0,-54],[0,-70],[0,-358],[0,-206],[1,-197],[0,-80],[0,-166],[1,-75],[0,-90],[0,-51],[0,-101],[1,-107],[0,-168],[1,-207],[2,-234],[0,-94],[1,-75],[0,-79],[0,-1],[1,-138],[1,-67],[1,-159],[2,-119],[1,-313],[1,-170],[0,-237],[0,-21],[0,-18],[1,-46],[-5,-104],[0,-1],[-1,-47],[4,-78],[0,-37],[0,-37],[-1,-83],[-1,-196],[0,-43],[0,-964]],[[47859,42097],[-248,4],[-137,0],[-114,-2],[-42,2],[-68,4],[-31,2],[-21,1],[-19,1],[-28,1],[-14,0],[-22,1],[-42,0],[-44,0],[-16,0],[-25,1],[-23,0],[-23,0],[-20,0],[-35,1],[-16,0],[-20,1],[-24,-1],[-46,-1],[-29,0],[-20,0],[-14,-1],[-24,0],[-70,-1],[-18,-1],[-40,0],[-91,-1],[-28,-1],[-44,0],[-16,0],[-19,0],[-36,0],[-49,0],[-30,0],[-15,0],[-17,0],[-45,0],[-26,0],[-17,0],[-87,0],[-55,1],[-36,-1],[-71,0],[-15,0],[-33,-1],[-41,0],[-37,0],[-14,0],[-39,0],[-14,0],[-24,-1],[-38,0],[-40,0],[-56,-1],[-19,0],[-17,0],[-58,0],[-33,-1],[-14,0],[-18,0],[-13,-1],[-39,0],[-64,0],[-18,0],[-22,-1],[-16,0],[-57,-1],[-29,0],[-49,0],[-60,-1],[-23,0],[-42,0],[-43,0],[-86,-1],[-15,0],[-19,1],[-18,-1],[-60,0],[-49,0],[-40,0],[-84,1],[-14,-1],[-27,0],[-35,0],[-47,0],[-52,1],[-43,0],[-44,0],[-39,0],[-14,-1],[-1,0],[-13,0],[-56,1],[-57,1],[-77,-1],[-38,0],[-34,0],[-26,0],[-50,0],[-74,0],[-16,1],[-69,2],[-38,-1],[-23,1],[-95,0],[-25,0],[-74,0],[-29,1],[-31,0],[-28,0],[-40,1],[-39,1],[-120,0],[-26,0],[-23,0],[-48,0],[-27,1],[-42,0],[-39,0],[-38,1],[-20,1],[-58,-1],[-51,1],[-116,2],[-13,0],[-17,1],[-22,-2],[-56,0],[-21,1],[-22,0],[-18,0],[-78,0],[-68,-1],[-14,0],[-19,1],[-27,0],[-14,0],[-31,0],[-33,0],[-36,0],[-32,0],[-44,0],[-29,-1],[-17,-2]],[[42061,42107],[-125,5],[-147,1],[-58,-1],[-47,1],[-22,0],[-220,-1],[-113,0],[-16,0],[-117,0],[-31,0],[-26,0],[-11,0],[-16,0],[-42,-1],[-17,1],[-19,0],[-34,0],[-55,0],[-125,-1],[-118,-1],[-45,1],[-69,0],[-108,1],[-24,0],[0,298],[0,184],[-1,481],[0,182],[0,301],[0,234],[0,247],[0,261],[0,221],[0,483]],[[40455,45004],[-1,66],[0,41],[0,43],[-2,209],[-1,32],[-1,91],[-1,345],[0,45],[-1,92],[-1,242],[-1,90],[0,94],[0,55],[-2,374],[-1,140],[0,81],[0,46],[0,50],[-1,51],[0,79],[-1,144],[1,35],[1,53],[8,380],[-1,239],[0,243],[-1,211],[0,19],[0,30],[0,114],[0,3],[-1,290],[0,5],[0,76],[-1,217],[0,129],[0,233],[-1,127],[1,155],[1,95],[1,244],[1,478],[0,90],[0,7],[0,152],[0,219],[0,1],[-1,242],[0,241],[-1,339],[0,39],[-1,103],[0,74],[0,63],[0,358],[0,111],[1,125],[0,1],[0,75],[1,158],[-1,84],[-2,325],[0,75],[0,481],[0,225],[0,209],[1,47],[0,64],[3,52],[0,40],[0,90],[0,75],[-3,55],[0,106],[2,76],[1,47],[0,75],[-1,59],[0,54],[0,48],[-1,53],[0,73],[0,183],[1,135],[-2,170],[0,48],[0,48],[0,36],[0,38],[0,115],[0,58],[1,142]],[[40455,45004],[-15,0],[-232,1],[-31,1],[-59,0],[-23,0],[-20,0],[-23,0],[-15,0],[-18,0],[-15,0],[-18,0],[-12,1],[-12,0],[-22,0],[-23,0],[-19,1],[-85,0],[-37,0],[-23,1],[-38,0],[-76,1],[-77,0],[-22,0],[-42,0],[-30,0],[-33,1],[-72,0],[-41,0],[-29,1],[-19,0],[-14,0],[-39,0],[-51,0],[-17,0],[-55,1],[-39,1],[-2,0],[-50,0],[-26,1],[-22,-1],[-14,2],[-27,1],[-23,1],[-37,2],[-15,0],[-29,1],[-24,2],[-35,3],[-14,0],[-111,3],[-109,5],[-34,2],[-247,14],[-29,1],[-17,1],[-201,8],[-178,9],[-32,3],[-28,2],[-22,1],[-73,3],[-28,1],[-78,4],[-19,-2],[-35,0],[-131,-4],[-76,-2],[-41,-2],[-19,-1],[-75,-2],[-112,-4],[-26,0],[-57,1],[-25,-1],[-74,-2],[-29,-1],[-22,-1],[-16,0],[-1,0],[-244,-8],[-44,-1],[-150,-4],[-14,-1],[-37,0],[-101,-4],[-140,-3],[-25,-1],[-31,0],[-43,0],[-38,0],[-31,0],[-33,0],[-18,0],[-24,0],[-21,0],[-13,-1],[-15,1],[-24,-1],[-26,0],[-66,0],[-43,1],[-28,-1],[-16,0],[-15,1],[-16,-1],[-19,0],[-25,0],[-25,0],[-31,-1],[-15,0],[-61,0],[-63,1],[-1,0],[-131,1],[-120,0],[-124,0],[-120,1],[-75,0],[-3,0],[-166,-2],[-40,1],[-25,0],[-36,0],[-15,1],[-16,-3],[-31,0],[-45,1],[-26,1],[-18,0],[-76,-1],[-48,-2],[-114,2],[-18,-1],[-274,0],[-102,0],[-23,1],[-65,0],[-39,0],[-6,0],[-21,0],[-21,0],[-19,0],[-31,0],[-31,0],[-31,0],[-21,0],[-16,1],[-25,0],[-19,-1],[-19,0],[-112,0],[-24,0],[-24,0],[-31,0],[-45,0]],[[62704,53671],[0,-89],[0,-191],[0,-64],[0,-44],[0,-66],[0,-33],[0,-162],[0,-184],[0,-44],[0,-37],[-1,-160],[0,-66],[0,-309],[0,-74],[1,-173],[0,-65],[-1,-61],[0,-108],[0,-91],[0,-55],[0,-116],[0,-183],[0,-38],[0,-148],[0,-137],[0,-116],[0,-81],[0,-95],[0,-75],[0,-64],[0,-68],[1,-54],[-1,-68],[0,-59],[1,-254],[0,-227],[0,-67],[0,-83],[-1,-84],[0,-109],[1,-137],[0,-57],[0,-156],[1,-102],[-1,-210],[0,-14],[0,-73],[0,-353],[0,-75],[0,-79],[0,-70],[0,-34],[0,-169],[0,-57],[0,-85],[0,-87],[0,-92],[0,-147],[0,-1],[-1,-68],[1,-35],[-1,-35],[0,-104],[0,-139],[0,-123],[0,-47],[1,-43],[0,-75],[-1,-97],[0,-93],[0,-87],[0,-86],[0,-88],[0,-67],[-1,-18],[-1,-44],[3,-35],[-1,-112],[0,-52],[1,-90],[0,-18],[0,-24],[0,-44],[1,-121],[1,-252],[1,-481],[0,-77],[0,-135],[0,-115],[0,-46],[0,-35],[0,-75],[0,-133],[0,-71],[0,-46],[0,-53],[0,-64],[0,-61],[0,-54],[0,-236],[0,-62],[0,-38],[0,-39],[0,-36],[0,-36],[0,-55],[0,-46],[0,-50],[0,-60],[0,-60],[0,-66],[0,-54],[1,-55],[-1,-72],[0,-50],[0,-65],[0,-54],[0,-60],[0,-102],[0,-35],[0,-58],[0,-47],[0,-41],[1,-47],[0,-59],[0,-49],[0,-55],[0,-88],[0,-60],[-1,-67],[0,-56],[0,-71],[0,-79],[0,-42],[0,-41],[0,-65],[0,-41],[0,-45],[0,-86],[0,-126],[0,-38],[0,-38],[0,-35],[0,-36],[0,-80],[-1,-114],[0,-38],[0,-39],[0,-54],[1,-61],[0,-45],[0,-70],[-1,-161],[0,-47],[0,-34],[0,-78],[0,-39],[0,-68],[0,-50],[0,-139],[0,-42],[0,-37],[0,-13],[0,-21],[0,-58],[0,-60],[0,-50],[0,-36],[0,-80],[0,-88],[0,-38],[0,-38],[0,-67],[0,-36],[0,-37],[0,-183],[0,-56],[0,-66]],[[62706,39204],[-26,0],[-45,0],[-87,0],[-26,0],[-27,-1],[-36,0],[-15,0],[-16,0],[-15,-9],[-16,1],[-14,7],[-14,1],[-13,0],[-13,0],[-121,1],[-53,0],[-71,1],[-83,1],[-18,-1],[-31,1],[-25,0],[-42,1],[-15,0],[-21,0],[-29,0],[-41,0],[-33,0],[-15,1],[-25,-5],[-15,-1],[-1,0],[-20,0],[-88,0],[-59,0],[-18,2],[-46,0],[-20,0],[-14,1],[-22,0],[-142,2],[-5,0],[-14,2],[-31,3],[-90,1],[-48,0],[-43,1],[-24,0],[-21,0],[-21,1],[-122,4],[-60,-2],[-6,0],[-27,-1],[-31,-1],[-33,0],[-23,0],[-24,0],[-112,-1],[-20,0],[-31,0],[-65,1],[-67,1],[-48,1],[-70,1],[-24,0],[-47,1],[-112,1],[-31,0],[-32,0],[-63,0],[-131,0],[-46,1],[-40,0],[-24,0],[-90,0],[-44,0],[-25,0],[-14,0],[-76,-1],[-102,-2],[-26,0],[-31,0],[-22,-1],[-38,0],[-53,-2],[-35,2],[-7,0],[-8,0],[-22,-3],[-57,0],[-26,0],[-83,1],[-45,0],[-41,0],[-78,-2],[-91,0],[-32,0],[-37,0],[-63,1],[-23,-1],[-61,-1],[-62,-1],[-61,-1],[-53,-1]],[[58283,39209],[-45,0],[-1,0],[-112,-1],[-55,0],[-34,0],[-133,-1],[-35,0],[-36,0],[-42,0],[-20,-1],[-40,1],[-34,-1],[-33,0],[-120,-1],[-55,0],[-192,-1],[-75,0],[-54,-1],[-32,0],[-85,0],[-28,0],[-42,0],[-32,0],[-25,0],[-75,0],[-15,-1],[-23,0],[-69,0],[-30,0],[-12,0],[-17,0],[-29,1],[-5,0],[-26,0],[-42,1],[-17,0],[-68,0],[-124,2],[-41,-1],[-19,-7],[-143,1],[-13,0],[-85,6],[-40,1],[-32,-1],[-20,1],[-20,0],[-33,-2],[-70,2],[-37,0],[-33,0],[-36,0],[-38,0],[-40,0],[-29,0],[-39,0],[-27,0],[-34,0],[-55,1],[-117,-1],[-18,0],[-21,0]],[[55331,39206],[0,72],[0,62],[0,239],[0,42],[0,68],[0,48],[0,79],[0,82],[0,144],[0,34],[0,54],[0,41],[0,41],[0,66],[0,97],[0,65],[0,41],[-1,39],[0,45],[0,50],[0,39],[0,58],[0,181],[0,161],[0,82],[0,329],[0,80],[0,36],[0,38],[0,215],[0,35],[0,123],[-2,42],[-1,52],[-6,0],[-13,1],[-9,27],[-8,31],[-1,39],[1,50],[0,43],[0,37],[0,35],[0,123],[0,100],[-1,114],[1,75],[0,9],[1,48],[0,58],[-2,177],[1,180],[1,52],[2,252],[0,73],[0,111],[1,180],[0,56],[1,94],[0,84],[0,132],[1,237],[3,430],[1,55],[-1,122],[0,219],[-1,143],[0,181],[1,87],[0,86],[-1,63],[1,65],[0,1],[0,35],[-1,285],[0,2],[-1,86],[0,75],[0,204],[-1,279],[0,35],[0,46],[-1,403],[2,121],[1,123],[1,196],[-1,70],[-1,454],[-1,44],[0,256],[0,69],[0,115],[1,240],[0,118],[0,125],[0,97],[1,222],[2,163],[-1,42],[-1,181],[1,154],[0,39],[2,65],[1,249],[0,247]],[[70102,50786],[0,-216],[0,-132],[-2,-397],[0,-37],[1,-186],[1,-238],[-2,-151],[0,-90],[1,-243],[0,-234],[0,-249],[0,-231],[0,-390],[0,-134],[2,-172],[0,-112],[0,-155],[0,-78],[0,-18],[0,-203],[1,-183],[0,-406],[-1,-513],[1,-128],[0,-259],[0,-140],[0,-182],[1,-59],[0,-44],[0,-40],[0,-56],[0,-100],[-14,2],[-22,0],[-66,1],[-141,1],[0,-52],[-1,-438],[0,-182],[0,-34],[0,-255],[0,-39],[0,-176],[0,-173],[0,-56],[0,-45],[0,-50],[-1,-436],[0,-91],[0,-380],[0,-108],[0,-55],[0,-51],[0,-18],[0,-16],[0,-122],[0,-52],[0,-19],[11,-24],[-16,-23],[-19,-5],[-18,0],[0,-46],[-1,-34],[0,-4],[-2,-158],[0,-27],[-2,-106],[2,-53],[1,-285],[1,-241],[0,-51],[0,-119],[0,-135],[0,-122],[-1,-374],[-1,-64],[0,-83],[0,-72],[4,-70],[1,-42],[2,-335],[0,-37],[-2,-141],[0,-299],[-1,-42],[1,-125],[1,-210],[0,-28],[0,-11],[0,-1],[0,-57],[0,-1],[1,-49],[4,-395],[0,-89],[-1,-50],[0,-154],[-1,-67],[0,-60],[0,-108],[0,-46],[0,-175],[0,-35],[0,-78],[-1,-123],[0,-51],[0,-51],[-1,-74],[0,-45],[0,-76],[0,-37],[0,-48],[0,-60],[-1,-107],[0,-199],[-1,-41],[0,-242]],[[69820,36281],[-17,-1],[-21,1],[-162,1],[-22,0],[-16,0],[-39,0],[-21,0],[-35,0],[-23,0],[-52,0],[-35,0],[-12,0],[-4,0],[-33,1],[-41,0],[-20,0],[-36,0],[-22,0],[-28,0],[-35,0],[-18,1],[-19,0],[-27,0],[-99,1],[-6,0],[-20,-1],[-32,1],[-20,0],[-15,0],[-21,0],[-20,0],[-22,0],[-105,0],[-21,0],[-26,0],[-25,0],[-19,0],[-35,1],[-26,0],[-16,0],[-38,0],[-22,1],[-25,0],[-30,1],[-43,0],[-46,2],[-20,0],[-47,2],[-54,2],[-29,0],[-66,-1],[-31,0],[-30,0],[-28,0],[-29,1],[-20,0],[-30,1],[-51,1],[-27,1],[-30,0],[-65,2],[-28,0],[-30,0],[-48,2],[-75,0],[-49,1],[-32,1],[-14,0],[-100,1],[-15,0],[-20,1],[-17,0],[-21,1],[-14,0],[-14,0],[-22,0],[-16,-2],[-12,3],[-3,1],[-21,0],[-77,2],[-24,0],[-20,1],[-73,2],[-53,3],[-68,3],[-42,3],[-35,2],[-46,0],[-27,-1],[-49,1],[-75,0],[-18,0],[-34,1],[-21,0],[-75,1],[-36,0],[-36,1],[-18,1],[-28,0],[-95,3],[-29,1],[-72,2],[-26,1],[-33,0],[-18,0],[-15,1],[-31,1],[-4,0],[-21,1],[-19,0],[-11,0],[-4,1],[-29,0],[-19,1],[-14,0],[-17,1],[-23,0],[-21,1],[-14,0],[-27,1],[-21,1],[-28,1],[-20,0],[-15,1],[-15,1],[-28,0],[-47,2],[-18,0],[-15,1]],[[65638,36350],[-1,103],[0,140],[-1,198],[0,42],[-1,264],[0,84],[0,76],[-1,58],[0,77],[0,72],[0,51],[-2,226],[0,58],[0,195],[0,53],[0,17],[-1,121],[0,50],[0,34],[-1,107],[-2,387],[7,317],[0,156],[-23,1],[-44,0],[-36,0],[-18,0],[-16,0],[-30,0],[-15,0],[-29,0],[-36,0],[-58,0],[-27,0],[-20,0],[-13,1],[-1,0],[-25,5],[-14,3],[-14,3],[-16,2],[-15,-2],[-17,-5],[-26,0],[-13,2],[-28,0],[-20,-1],[-18,1],[-35,0],[-17,0],[-25,0],[-17,0],[-16,0],[-17,-1],[-20,0],[-20,0],[-16,-1],[-22,0],[-48,-1],[-57,0],[-22,0],[-20,0],[-61,1],[-18,0],[-45,0],[-20,0],[-16,0],[-27,0],[-55,-1],[-19,1],[-47,-1],[-28,1],[-38,0],[-16,0],[-100,0],[-64,1],[-31,-1],[-179,-5],[-37,-1],[-43,-2],[-66,-3],[-18,-1],[-22,0],[-14,0],[-26,-1],[-21,-1],[-14,0],[-11,2],[-9,1],[-14,-4],[-16,-1],[-26,0],[-45,-1],[-29,-1],[-37,0],[-48,-2],[-34,0],[-18,-1],[-20,0],[-20,-1],[-18,-1],[-92,-2],[-17,0],[-19,-1],[-39,-2],[-17,0],[-7,-1],[-7,0],[-26,-1],[-14,0],[-14,-1],[-18,0],[-25,-2],[-28,0],[-28,-2],[-20,0],[-23,-1],[-19,0],[-34,0],[-188,-4]],[[76299,39205],[-1,-48],[0,-170],[1,-155],[0,-144],[-2,-211],[-1,-204],[-2,-411],[0,-94],[-1,-179],[-1,-129],[-1,-122],[-1,-165],[0,-147],[-1,-189],[0,-117],[-1,-160],[0,-134],[0,-45],[-1,-94],[-40,0],[-20,0],[-87,-1],[-42,0],[-41,2],[-75,1],[-63,1],[-74,2],[-96,1],[-96,2],[-716,9],[-18,1],[-30,0],[-15,1],[-17,2],[-24,1],[-17,-1],[-14,-2],[-31,0],[-54,1],[-30,0],[-40,-1],[-43,1],[-58,0],[-36,0],[-30,0],[-39,-1],[-30,-1],[-29,1],[-174,0],[-127,-1]],[[74081,36305],[-16,0],[-103,0],[-5,0],[-9,0],[-86,0],[-18,1],[-19,0],[-18,0],[-36,-1],[-33,0],[-88,-1],[-211,-2],[-202,-2],[-14,0],[-109,0],[-32,0],[-56,0],[-107,-2],[-4,0],[-165,-1],[-5,0],[-34,0],[-40,6],[-77,1],[-66,1],[-15,0],[-56,0],[-74,0],[-120,-1],[-103,-1],[-237,-2],[-145,-1],[-16,0],[-106,-1],[-157,-1],[-68,-1],[-49,0],[-27,-1],[-58,0],[-20,0],[-7,0],[-91,-1],[-29,0],[-102,-1],[-16,0],[-82,0],[-50,-1],[-89,-1],[-100,-3],[-17,-1],[-104,-2],[-36,0],[-30,-1],[-120,-3],[-42,-1],[-23,0],[-19,-1],[-77,-1],[-14,-1],[-18,3],[-48,-1],[-33,1],[-21,0],[-15,-1],[-10,0],[-7,0],[-15,0],[-68,-1],[-38,1],[-19,1],[-24,2],[-18,0],[-14,-2],[-45,0],[-16,0]],[[55331,39206],[-54,-1],[-20,1],[-27,0],[-25,0],[-14,-1],[-18,1],[-84,0],[-166,-11],[-27,-1],[-24,-2],[-34,-5],[-22,-1],[-38,0],[-46,-1],[-27,0],[-14,0],[-37,-1],[-15,0],[-16,-1],[-23,1],[-43,0],[-17,1],[-49,0],[-25,0],[-35,1],[-50,1],[-36,0],[-32,0],[-25,1],[-18,0],[-21,2],[-28,0],[-84,2],[-34,0],[-45,0],[-12,0],[-65,2],[-125,2],[-74,1],[-150,4],[-23,1],[-233,2],[-14,1],[-22,1],[-216,1],[-46,1],[-17,0],[-64,0],[-58,1],[-44,1],[-27,0],[-58,1],[-58,0],[-40,0],[-60,1],[-15,0],[-5,0],[-23,0],[-138,0],[-2,0],[-55,0],[-32,1],[0,-89],[-1,-61],[-1,-179],[2,-54],[1,-70],[-19,-19],[-8,-9],[-34,0],[-19,0],[-68,-3],[-111,-5],[-2,0],[-27,-2],[-78,-3],[-127,-5],[-96,6],[-28,0],[-32,1],[-20,-1],[-42,1],[-29,0],[-39,-2],[-24,-1],[-32,-2],[-23,-1],[-6,0],[-125,-6],[1,51],[-1,35],[0,106],[3,44],[-3,219],[-1,35],[-35,2],[-23,-2],[-24,-1],[-29,-2],[-16,0],[-28,-1],[-81,-4],[-15,9],[-58,0],[-14,0],[-3,0],[-23,0],[-23,0],[-23,0],[-60,0],[-19,-1],[-21,0],[-55,0],[-47,0],[-36,0],[-42,0],[-34,1],[-23,-1],[-17,0],[-40,0],[-29,0],[-71,0],[-53,-1],[-36,0],[-21,0],[-54,2],[-47,1],[-39,0],[-48,0],[-37,0],[-68,1],[-45,-1],[-57,0],[-45,0],[-32,0],[-52,-1],[-71,0],[-49,2],[-47,3],[-21,1],[-128,2],[-59,1],[-39,-1],[-21,0],[-120,-2],[-56,-8],[-21,-2],[-49,-1],[-57,-1],[-14,-1],[-50,4],[-124,-4],[-108,-3],[-146,-4],[-244,-8],[-254,2],[-42,1],[-154,-5],[-43,-2]],[[47953,39174],[0,34],[-4,95],[0,35],[5,34],[1,34],[-1,65],[1,193],[0,278],[-1,79],[1,123],[0,480],[1,275],[0,9],[0,44],[0,164],[2,246],[1,239],[-2,139],[1,356],[-99,1]],[[87673,46397],[0,-36],[0,-48],[0,-64],[0,-71],[0,-34],[-1,-50],[1,-34],[1,-37],[0,-51],[0,-57],[0,-70],[0,-61],[0,-70],[0,-65],[1,-78],[0,-49],[1,-52],[3,-39],[-1,-144],[0,-341],[1,-100],[1,-388],[0,-64],[1,-73],[-1,-229],[-1,-115],[0,-106],[1,-88],[0,-41],[0,-39],[0,-80],[0,-164],[0,-58],[0,-47],[0,-56],[0,-35],[0,-72],[0,-48],[0,-46],[0,-85],[1,-42],[0,-34],[0,-69],[0,-39],[1,-75],[0,-95],[0,-39],[0,-74],[0,-102],[0,-60],[0,-36],[0,-6],[1,-42],[0,-98],[1,-155],[-124,2],[-1,-241],[0,-67],[-2,-51],[-1,-185],[-1,-70],[0,-40],[-1,-149],[-2,-255],[-1,-154],[0,-53],[0,-81],[-1,-54],[0,-136],[0,-65],[1,-127],[0,-36],[0,-39],[0,-90],[-1,-105],[-4,-335],[0,-173],[2,-39],[0,-68],[-2,-240],[0,-3],[0,-133],[0,-54],[0,-68],[-1,-55],[0,-50],[0,-43],[0,-88],[-1,-135],[0,-130],[-1,-51],[0,-72],[0,-110],[-1,-80],[0,-39],[0,-88],[0,-71],[-1,-207],[0,-114],[-7,-484],[-1,-83],[0,-36],[0,-76],[1,-43],[0,-122],[1,-53],[1,-70],[0,-157],[-1,-85],[0,-71],[0,-93],[0,-75],[-1,-141],[-1,-64],[0,-254],[0,-74],[-1,-110],[0,-41],[0,-59],[0,-35],[0,-67],[-1,-124],[0,-46],[0,-51],[1,-160],[0,-53],[0,-34],[-1,-35],[0,-42],[-1,-59]],[[87530,34707],[-21,0],[-28,0],[-40,0],[-32,1],[-59,-5],[-72,2],[-31,-1],[-83,-6],[-15,2],[-68,0],[-165,4],[-101,5],[-18,1],[-14,-5],[-177,6],[-16,1],[-31,0],[-50,3],[-34,8],[-14,4],[-21,2],[-41,-1],[-14,-2],[-16,-9],[-14,-1],[-41,-2],[-31,3],[-1,0],[-103,4],[-26,1],[-25,2],[-20,1],[-23,1],[-18,-2],[-143,12],[-3,1],[-41,2],[-62,-2],[-33,0],[-21,0],[-178,-2],[-20,-1],[-18,0],[-62,1],[-91,-1],[-46,1],[-25,0],[-31,0],[-21,-2],[-52,0],[-41,0],[-89,0],[-18,11],[-102,-3],[-19,0],[-138,-3],[-4,0],[-48,-1],[-15,-1],[-17,0],[-36,1],[-70,1],[-39,-1],[-15,0],[-37,2],[-83,3],[-70,0],[-29,0],[-55,0],[-89,0],[-29,0],[-90,1],[-46,0],[-85,2],[-55,0],[-58,1],[-30,2],[-91,4],[-32,1],[-85,4],[-26,0],[-15,0],[-81,0],[-27,0],[-19,-1],[-50,0],[-30,-1],[-15,0],[-31,-1],[-198,0],[-40,2],[-16,0],[-133,6],[-71,3],[-21,1],[-64,1],[-35,0],[-60,0],[-20,0],[-3,0],[-33,0],[-44,-1],[-19,0],[-19,0],[-21,0],[-93,-2],[-28,0],[-24,-1],[-246,2],[-174,5],[-76,-5],[-23,1],[-21,1],[-15,0],[-21,1],[-13,0],[-26,1],[-31,1],[-16,0],[-73,2]],[[81634,34772],[0,41],[0,79],[0,52],[0,45],[0,49],[0,40],[0,54],[0,80],[-1,43],[0,77],[0,56],[0,48],[-1,42],[0,58],[0,40],[0,39],[0,45],[0,39],[-1,52],[1,56],[0,41],[0,107],[-1,111],[0,88],[0,45],[0,39],[1,178],[0,48],[1,89],[0,100],[0,55],[1,54],[0,83],[1,117],[0,84],[1,95],[0,42],[0,5],[1,80],[0,48],[0,57],[1,48],[-1,71],[1,58],[0,39],[0,75],[1,115],[0,109],[1,138],[0,119],[0,37],[1,92],[-1,60],[1,101],[0,44],[0,88],[0,59],[0,59],[-1,64],[0,55],[-1,119],[-1,90],[0,5],[0,33],[-1,62]],[[93602,46386],[1,-238],[0,-258],[1,-127],[1,-83],[-1,-217],[0,-121],[-2,-409],[-1,-43],[1,-100],[-1,-79],[0,-60],[0,-128],[1,-35],[0,-36],[3,-86],[0,-60],[2,-51],[2,-146],[3,-155],[1,-113],[0,-35],[1,-35],[0,-63],[-2,-180],[-1,-66],[-1,-48],[0,-70],[0,-67],[0,-110],[0,-142],[0,-62],[-1,-43],[0,-101],[0,-212],[0,-58],[0,-40],[3,-281],[0,-146],[-9,-56],[-30,0],[-18,1],[-38,0],[-15,0],[-15,1],[-14,0],[1,-242],[0,-43],[-3,-237],[-1,-39],[0,-49],[-1,-35],[0,-40],[-1,-160],[-1,-101],[-1,-215],[-3,-400],[-2,-158],[-1,-115],[-3,-243],[0,-61],[-1,-82],[0,-305],[0,-142],[1,-79],[0,-82],[-1,-37],[0,-53],[1,-86],[-1,-304],[0,-2],[0,-185],[0,-77],[1,-97],[-1,-249],[0,-37],[3,-181],[0,-305],[-3,-251],[-1,-83],[0,-13],[0,-24],[-1,-55],[0,-54],[1,-131],[0,-168],[-3,-199],[-3,-380],[0,-90],[0,-2],[-1,-65],[-1,-122],[-1,-91],[0,-47],[0,-159],[-1,-109],[0,-44],[0,-45],[-2,-140],[0,-46],[-1,-97],[3,-60],[-2,-272],[0,-150]],[[93443,34690],[-110,0],[-87,1],[-54,0],[-36,0],[-6,0],[-31,0],[-29,5],[-85,0],[-30,1],[-27,0],[-20,0],[-17,0],[-16,1],[-13,1],[-19,0],[-17,0],[-31,1],[-17,-1],[-16,1],[-32,0],[-21,1],[-29,0],[-15,0],[-48,-2],[-60,-2],[-40,-1],[-18,0],[-38,-2],[-19,0],[-24,0],[-13,0],[-70,-2],[-20,-1],[-38,-1],[-58,0],[-2,0],[-24,0],[-15,0],[-51,-1],[-24,3],[-20,-1],[-118,0],[-21,-2],[-119,0],[-16,0],[-97,0],[-14,0],[-95,3],[-83,2],[-49,-1],[-20,0],[-59,0],[-187,2],[-94,3],[-103,0],[-43,1],[-17,0],[-41,0],[-45,0],[-29,0],[-132,1],[-99,1],[-70,0],[-46,0],[-31,1],[-246,1],[-60,0],[-100,0],[-6,0],[-28,0],[-44,-1],[-29,0],[-28,2],[-31,-1],[-52,1],[-46,2],[-35,1],[-18,0],[-55,3],[-43,2],[-37,2],[-33,2],[-47,2],[-32,1],[-29,0],[-37,0],[-21,-1],[-22,0],[-5,0],[-21,0],[-39,-1],[-41,-1],[-31,0],[-55,-1],[-105,0],[-87,-1],[-210,-1],[-19,0],[-16,-1],[-18,0],[-58,-1],[-63,-1],[-107,-1],[-173,-2],[-49,0],[-28,0],[-32,1],[-57,0],[-54,0],[-45,0],[-18,0],[-34,-1],[-36,0],[-146,0],[-68,4],[-24,-4],[-17,1],[-26,-2],[-18,-2],[-29,3],[-29,1],[-20,0],[-24,0],[-16,-1],[-15,0],[-33,0]],[[99666,46345],[0,-439],[2,-172],[0,-50],[-1,-48],[-1,-33],[0,-55],[0,-83],[0,-45],[0,-38],[1,-207],[1,-120],[1,-206],[1,-209],[-1,-47],[1,-179],[2,-205],[0,-141],[1,-97],[0,-42],[1,-37],[-1,-57],[0,-47],[0,-47],[0,-168],[1,-90],[0,-35],[-1,-89],[1,-54],[-3,-191],[0,-39],[0,-47],[2,-60],[0,-46],[0,-35],[0,-52],[0,-51],[0,-43],[0,-49],[0,-43],[0,-38],[1,-86],[0,-43],[0,-46],[0,-76],[0,-85],[0,-49],[0,-105],[0,-76],[0,-47],[0,-35],[0,-6],[0,-46],[1,-70],[0,-102],[0,-193],[1,-75],[0,-46],[0,-56],[0,-40],[0,-35],[0,-38],[0,-94],[0,-50],[0,-98],[0,-46],[0,-46],[0,-48],[0,-59],[0,-38],[-2,-37],[0,-41],[0,-48],[1,-71],[0,-38],[0,-48],[0,-51],[-1,-86],[-1,-51],[0,-47],[0,-34],[0,-13],[-2,-35],[0,-52],[1,-34],[-1,-47],[-1,-48],[0,-71],[0,-36],[0,-35],[1,-40],[-1,-49],[-2,-34],[1,-66],[-1,-48],[-1,-35],[0,-53],[1,-58],[-1,-69],[0,-56],[0,-39],[-1,-92],[-1,-48],[-1,-67],[-1,-42],[0,-35],[0,-54],[0,-44],[0,-117],[0,-37],[-3,-214],[-1,-77],[-1,-69],[3,-46],[0,-35],[-1,-36],[0,-177],[0,-62],[0,-34],[0,-130],[0,-55],[-1,-51],[-1,-70],[-2,-70],[3,-50],[0,-49],[0,-46],[0,-79],[0,-63],[0,-120],[0,-75],[0,-45],[-1,-34],[1,-53],[0,-34],[0,-36],[0,-80],[0,-67],[-1,-40],[0,-102],[1,-40],[-2,-82],[0,-47],[0,-46],[0,-48],[0,-45],[0,-42],[0,-52],[0,-34],[0,-51],[0,-44],[-1,-208],[0,-41],[0,-48],[-1,-45],[1,-43],[0,-36],[-1,-35],[0,-14],[0,-52],[-1,-96],[0,-38],[1,-53],[0,-121],[0,-55],[0,-61],[0,-39],[0,-56],[0,-52],[0,-45],[0,-38],[0,-131],[0,-54],[0,-69],[0,-43]],[[99655,34668],[-19,-1],[-26,-1],[-23,-1],[-23,0],[-13,-1],[-48,-1],[-38,-1],[-27,0],[-41,-1],[-73,-1],[-16,0],[-21,-1],[-25,4],[-71,3],[-69,5],[-36,2],[-24,1],[-15,0],[-71,-1],[-38,1],[-28,0],[-48,-1],[-38,0],[-36,2],[-33,0],[-35,2],[-28,1],[-21,-1],[-46,0],[-54,-1],[-37,-4],[-17,0],[-4,0],[-85,-1],[-26,0],[-80,-1],[-2,0],[-99,5],[-18,0],[-114,5],[-15,1],[-120,-5],[-124,-5],[-19,1],[-181,3],[-17,-1],[-20,4],[-241,8],[-231,-7],[-31,4],[-2,0],[-22,-1],[-63,-1],[-16,-1],[-14,0],[-40,0],[-64,-2],[-21,0],[-29,1],[-33,1],[-35,0],[-24,1],[-26,0],[-22,0],[-43,1],[-18,0],[-18,0],[-37,0],[-14,0],[-16,0],[-15,0],[-16,-1],[-13,-1],[-40,-3],[-17,0],[-22,-1],[-41,0],[-14,-1],[-29,0],[-20,0],[-19,1],[-27,0],[-34,1],[-45,0],[-18,0],[-20,0],[-18,0],[-19,0],[-1,0],[-33,0],[-19,0],[-25,0],[-19,-1],[-58,0],[-48,0],[-23,0],[-22,0],[-20,0],[-16,0],[-17,1],[-15,0],[-14,1],[-15,1],[-14,0],[-22,2],[-27,1],[-30,0],[-20,1],[-28,1],[-15,-1],[-21,0],[-22,-2],[-16,-1],[-19,0],[-14,0],[-15,-1],[-32,-2],[-17,-2],[-17,-1],[-27,-1],[-14,0],[-37,-1],[-14,-1],[-19,0],[-23,0],[-25,1],[-23,0],[-14,0],[-33,-1],[-17,0],[-43,-1],[-21,-2],[-22,4],[-44,2],[-19,2],[-53,3],[-94,6],[-217,-1],[-30,-2],[-72,1],[-89,3],[-84,0],[-134,0],[-87,0],[-76,1],[-169,0],[-108,1],[-138,0],[-115,1],[-14,0],[-114,1]],[[42061,42107],[-1,-140],[0,-59],[0,-34],[0,-44],[0,-36],[1,-72],[0,-40],[-1,-45],[1,-482],[0,-50],[0,-101],[-1,-35],[0,-65],[0,-64],[0,-70],[0,-96],[0,-41],[0,-67],[0,-69],[1,-137],[0,-166],[1,-53],[0,-69],[0,-61],[1,-91],[0,-69],[0,-139],[0,-47],[0,-54],[0,-155],[1,-53],[0,-58],[-1,-54],[0,-58],[0,-61],[0,-114],[-1,-62],[0,-52],[0,-54],[0,-61],[0,-57],[0,-26],[0,-23],[-1,-58],[1,-55],[-1,-54],[1,-58],[-1,-59],[0,-57],[0,-55],[0,-59],[-1,-118],[0,-94],[0,-47],[-1,-102],[0,-56],[0,-44],[0,-51],[0,-120],[0,-76],[-1,-112],[0,-68],[0,-75],[0,-58],[-1,-147],[0,-63],[0,-128],[0,-87],[0,-43],[-1,-191],[0,-76],[-1,-172],[0,-274],[-1,-69],[0,-141],[0,-134],[0,-41],[0,-56],[0,-63],[-1,-77],[0,-62],[0,-49],[0,-64],[0,-57],[0,-56],[0,-76],[1,-42],[0,-3],[0,-34],[0,-55],[0,-62],[0,-34],[0,-75],[-1,-52],[1,-57],[0,-55],[-1,-106],[0,-55],[0,-53],[0,-58],[0,-271],[0,-175],[0,-242],[0,-104],[0,-57],[0,-79],[-20,1],[-76,0],[-47,1],[-39,0],[-63,-1],[-84,0],[-39,0],[-121,-1],[-194,-3],[-53,-1],[-19,0],[-55,-1],[-73,-1],[-39,-1],[-43,0],[-16,0],[-29,0],[-41,-1],[-80,0],[-33,0],[-63,0],[-83,0],[-37,1],[-59,0],[-15,0],[-39,0]],[[40593,33445],[-61,0],[-17,0],[-18,0],[-26,0],[-118,-1],[-20,-1],[-232,-2],[-26,0],[-23,0],[-103,-1],[-83,-1],[-127,-1],[-53,-1],[-44,1],[-36,0],[-35,-1],[-26,0],[-63,-1],[-116,-1],[-61,0],[-46,-1],[-142,-1],[-31,-1],[-32,0],[-31,0],[-22,-1],[-15,1],[-114,0],[-43,0],[-58,0],[-51,0],[-19,0],[-35,0],[-18,1],[-14,0],[-228,-2],[-19,1],[-50,0],[-56,0],[-63,1],[-39,-1],[-38,1],[-67,1],[-29,-1],[-55,1],[-28,0],[-67,0],[-61,1],[-51,0],[-119,2],[-33,0],[-15,1],[-17,0],[-19,0],[-40,2],[-41,1],[-80,1],[-16,0],[-34,1],[-18,1],[-177,3],[-22,-1],[-19,1],[-18,1],[-16,1],[-35,0],[-117,6],[-18,-2],[-62,1],[-46,0],[-36,1],[-97,1],[-33,-1],[-14,-1],[-10,1],[-8,0],[-15,3],[-14,1],[-23,0],[-41,0],[-17,0],[-3,0],[-73,1],[-132,2],[-22,-1],[-5,0],[-23,1],[-59,0],[0,57],[0,34],[0,73],[0,75],[0,102],[0,103],[0,38],[0,79],[0,47],[0,52],[0,53],[0,157],[0,94],[0,98],[0,169],[0,109],[0,105],[0,213],[0,268],[0,61],[0,64],[-1,54],[0,95],[0,71],[0,35],[0,56],[0,43],[0,125],[0,340],[-202,18],[-43,0],[-90,1],[-70,2],[-87,4],[-14,-1],[-43,1],[-28,0],[-72,1],[-65,0],[-23,0],[-28,1],[-38,0],[-16,0],[-15,-1],[-16,0],[-15,2],[-19,0],[-24,0],[-59,1],[-18,0],[-26,1],[-15,1],[-94,1],[-28,0],[-49,0],[-38,1],[-33,-1],[-19,0],[-13,0],[-22,0],[-61,2],[-44,0],[-41,-1],[-45,-3],[-123,-2],[-14,0],[-62,-1],[-47,-1],[-128,-2],[-19,1],[-65,-4],[-39,1],[-174,-6],[-23,1],[-117,2],[-14,6],[-29,-6],[-22,-3],[-139,5],[-172,-12],[-144,-1],[-93,-1]],[[33258,36339],[0,159],[0,63],[0,35],[0,35],[0,11],[1,52],[-1,136],[0,439],[0,43],[0,98],[0,120],[-1,58],[0,192],[-1,189],[0,122],[0,189],[-1,286],[-1,193],[0,204],[-1,248],[0,34],[0,26],[0,90],[0,12],[0,27],[-1,75],[0,60],[0,181],[0,66],[0,100],[-1,72],[0,257],[-1,134],[-1,47],[-1,108],[0,58],[0,68],[0,34],[-1,35],[0,52],[0,59],[0,99],[-1,67],[0,56],[0,114],[0,36],[1,203],[-1,280],[0,46],[0,117],[-1,99],[0,36],[0,65],[0,112],[-55,8],[-66,0],[-62,-1]],[[12708,42222],[2,-155],[0,-131],[0,-103],[0,-61],[0,-57],[-1,-67],[1,-99],[0,-62],[0,-19],[0,-39],[0,-57],[0,-72],[0,-49],[0,-59],[0,-78],[0,-44],[0,-43],[0,-37],[0,-39],[0,-162],[0,-49],[0,-52],[-1,-156],[1,-58],[1,-61],[-1,-65],[0,-48],[0,-46],[1,-43],[0,-90],[0,-63],[0,-46],[0,-90],[0,-47],[0,-42],[0,-506],[0,-153],[0,-31],[0,-59],[1,-238],[1,-219],[1,-51],[1,-37],[-1,-88],[0,-34],[0,-44],[0,-49],[0,-167],[0,-34],[0,-33],[0,-43],[1,-53],[0,-55],[0,-53],[0,-249],[0,-40],[1,-99],[1,-51],[0,-35],[-1,-46],[1,-66],[0,-40],[0,-49],[0,-34],[-1,-136],[0,-111],[1,-93],[1,-157],[0,-84],[-1,-71],[0,-45],[0,-40],[0,-40],[0,-133],[-1,-58],[1,-86],[0,-44],[0,-53],[0,-47],[-1,-35],[0,-61],[0,-52],[0,-34],[-1,-58],[1,-39],[0,-53],[-1,-46],[1,-130],[-1,-36],[0,-42],[0,-60],[0,-59],[0,-45],[-1,-240],[0,-60],[0,-71],[0,-175],[-1,-108],[0,-36],[0,-49],[0,-40],[0,-117],[0,-37],[0,-41],[0,-59],[0,-71],[-1,-97],[0,-246],[0,-107],[0,-37],[0,-36],[0,-62],[0,-2],[0,-100],[0,-33],[0,-111],[0,-94],[0,-84],[0,-33],[0,-41],[0,-38],[0,-10],[1,-44],[-1,-45],[0,-54],[0,-71],[0,-89],[0,-117],[0,-482],[0,-57],[0,-53],[0,-61],[0,-61],[0,-59],[0,-117],[0,-56],[0,-65],[0,-60],[0,-62],[0,-71],[0,-45],[0,-57],[-1,-58],[1,-49],[0,-67],[0,-59],[0,-68],[0,-79],[0,-51],[0,-55],[0,-68],[0,-56],[-3,-711],[0,-58],[0,-51],[-2,-389],[-2,-662],[0,-34],[0,-66],[-2,-347],[-2,-580],[51,1],[136,2],[0,-690],[1,-298],[0,-405],[1,-681],[0,-314],[0,-112],[1,-581]],[[12891,24682],[-28,5],[-123,-1],[-329,-4],[-60,0],[-26,0],[-29,0],[-113,0],[-29,-1],[-31,0],[-30,0],[-61,0],[-96,0],[-26,-1],[-28,0],[-28,0],[-42,0],[-15,0],[-17,0],[-13,0],[-27,1],[-27,-1],[-26,0],[-25,0],[-82,-1],[-15,1],[-22,0],[-17,0],[-26,0],[-22,-1],[-45,1],[-32,0],[-43,-1],[-18,0],[-14,1],[-15,0],[-18,-1],[-21,0],[-23,1],[-31,0],[-31,-1],[-99,0],[-23,0],[-124,0],[-45,0],[-35,-1],[-46,0],[-38,0],[-33,0],[-34,0],[-15,0],[-16,0],[-28,0],[-31,-1],[-32,0],[-16,0],[-40,0],[-29,0],[-41,-1],[-16,0],[-42,1],[-33,-1],[-44,0],[-74,0],[-30,0],[-18,0],[-37,1],[-30,-1],[-21,1],[-31,-1],[-31,0],[-31,0],[-62,0],[-29,1],[-28,-1],[-15,-1],[-43,0],[-15,0],[-68,0],[-16,1],[-17,0],[-24,-1],[-20,0],[-33,0],[-24,0],[-32,0],[-14,0],[-26,0],[-96,0],[-42,1],[-14,0],[-43,0],[-21,0],[-17,0],[-16,0],[-22,0],[-25,0],[-37,0],[-9,0],[-100,1],[-21,0],[-29,0],[-19,0],[-76,0],[-126,0],[-7,0],[-8,0],[-90,0],[-14,1],[-110,-1],[-15,0],[-22,0],[-49,0],[-38,0],[-17,1],[-15,0],[-21,0],[-32,0],[-23,0],[-41,1],[-27,0],[-45,0],[-17,0],[-21,1],[-20,0],[-31,0],[-16,0],[-101,1],[-32,0],[-18,0],[-137,0],[-23,0],[-34,0],[-68,0],[-16,0],[-138,1],[-33,0],[-18,0],[-38,0],[-18,-1],[-14,0],[-18,0],[-47,0],[-20,0],[-129,0],[-119,0],[-22,0],[-20,0],[-14,0],[-59,1]],[[7030,24682],[0,78],[0,56],[0,103],[0,61],[0,126],[0,49],[-1,185],[0,67],[0,241],[0,285],[0,53],[0,55],[0,53],[0,37],[0,52],[1,72],[0,359],[0,42],[0,46],[0,140],[0,154],[0,102],[1,87],[-1,84],[0,45],[0,40],[1,110],[0,144],[0,42],[0,37],[-30,26],[-36,1],[-82,-1],[-46,-1],[-17,1],[1,133],[-1,268],[0,234],[7,939],[4,1314],[0,100],[0,42],[1,113],[0,8],[-1,224],[0,62],[1,19],[2,67],[0,36],[1,55],[0,54],[1,65],[-8,28],[6,31],[2,77],[0,2],[0,228],[0,121],[0,34],[1,69],[0,47],[0,50],[0,67],[1,123],[0,68],[0,46],[0,99],[0,154],[1,115],[0,121],[0,84],[0,40],[0,62],[1,136],[0,190],[0,71],[0,484],[1,48],[-1,70],[0,122],[1,427],[0,67],[0,83],[-1,71],[1,80],[0,485],[0,181],[0,302],[0,289],[0,109],[0,60],[0,49],[0,69],[-1,284],[0,51],[0,49],[0,53],[-1,387],[0,45],[-1,160],[0,53],[0,38],[0,80],[0,35],[0,66],[0,48],[0,61],[-2,413],[0,58],[0,178],[0,34],[-1,117],[0,44],[0,51],[-2,478],[0,113],[-1,159],[0,77],[0,100],[1,35],[-2,77],[0,45],[0,72],[0,34],[0,54],[-1,52],[0,106],[0,34],[0,52],[0,66],[-3,370],[0,219],[-1,159],[0,106],[-1,132],[-2,288],[1,57],[0,44],[1,250],[0,14],[1,174]],[[24447,42145],[1,-159],[2,-308],[0,-46],[0,-61],[1,-70],[0,-62],[1,-187],[1,-166],[1,-86],[1,-230],[0,-52],[1,-59],[0,-45],[1,-55],[1,-291],[0,-19],[0,-20],[1,-49],[0,-42],[0,-73],[1,-69],[0,-86],[0,-38],[1,-45],[0,-111],[1,-161],[0,-53],[3,-712],[0,-145],[0,-86],[5,-37],[6,-39],[-1,-36],[-4,-43],[-5,-39],[0,-12],[-1,-27],[1,-51],[0,-50],[0,-43],[0,-67],[0,-65],[0,-66],[0,-70],[1,-77],[0,-40],[0,-65],[0,-160],[0,-34],[0,-61],[0,-62],[0,-85],[1,-292],[0,-90],[0,-43],[0,-59],[1,-497],[-2,-482],[-1,-140],[0,-62],[-1,-82],[-1,-166],[0,-20],[0,-96],[-1,-64],[-1,-126],[0,-68],[-1,-76],[0,-48],[-1,-124],[0,-35],[0,-14],[0,-20],[0,-61],[-1,-181],[0,-51],[-1,-87],[0,-64],[-1,-70],[0,-34],[0,-35],[0,-48],[-1,-145],[0,-51],[0,-58],[-1,-89],[0,-86],[0,-152],[-1,-43]],[[24454,33471],[-155,1],[-90,0],[-45,1],[-23,0],[-28,0],[-46,0],[-34,0],[-52,0],[-17,1],[-117,1],[-128,0],[-24,0],[-46,0],[-55,1],[-40,0],[-48,0],[-33,0],[-16,0],[-50,0],[-94,0],[-16,0],[-18,0],[-18,0],[-34,1],[-18,0],[-56,-1],[-49,0],[-31,0],[-64,0],[-22,0],[-24,0],[-44,-1],[-36,1],[-30,-1],[-29,0],[-16,-1],[-17,1],[-26,-1],[-24,-1],[-23,1],[-13,-1],[-209,-1],[-30,-1],[-123,-2],[-65,-1],[-27,0],[-24,-1],[-122,-2],[-99,-1],[-20,-1],[-58,0],[-52,0],[-35,-1],[-13,0],[-38,0],[-30,-1],[-62,0],[-23,0],[-21,0],[-25,0],[-74,0],[-38,-1],[-239,5],[-110,3],[-22,1],[-125,2],[-16,0],[-105,2],[-22,1],[-29,1],[-29,1],[-15,0],[-17,1],[-20,1],[-16,6],[-15,1],[-19,-2],[-16,-4],[-46,1],[-21,1],[-37,0],[-24,1],[-16,1],[-17,0],[-202,4],[-138,3],[-15,0],[-130,1],[-22,1],[-57,1],[-43,1],[-99,3],[-22,0],[-246,5],[-175,3],[-39,0],[-33,1],[-52,1],[-5,0],[-99,1],[-48,1],[-39,0],[-246,5],[-40,1],[-45,1],[-38,3],[-31,0],[-63,3],[-22,0],[-1,-41],[1,-39],[-1,-401],[-1,-353],[0,-77],[0,-51],[-1,-481],[0,-53],[0,-81],[-1,-348],[-1,-39],[1,-68],[-1,-72],[0,-55],[0,-87],[0,-98],[0,-78],[-1,-98],[0,-114],[0,-33],[-1,-63],[0,-102],[0,-86],[-1,-92],[0,-129],[0,-61],[-1,-165],[0,-253],[0,-158],[-1,-62],[0,-45],[0,-56],[0,-43],[-1,-50],[0,-53],[0,-5],[1,-39],[0,-44],[0,-15],[-1,-290],[0,-25],[0,-191],[-1,-114],[0,-81],[-2,-879],[28,0],[59,-1],[18,-1],[13,0],[62,-2],[0,-635],[0,-49],[0,-34],[-1,-330],[0,-37],[0,-35],[-1,-338],[0,-41],[0,-38],[0,-44],[0,-38],[-1,-37],[0,-48],[0,-43],[0,-137],[0,-51],[0,-39],[0,-40],[0,-41],[-1,-44],[0,-39],[0,-157],[0,-38],[0,-35],[-1,-58],[0,-83],[0,-41],[0,-64],[0,-97],[-1,-107],[-1,-191],[0,-61]],[[18751,24680],[-47,1],[-25,0],[-55,0],[-20,1],[-30,0],[-17,0],[-25,0],[-26,0],[-26,1],[-79,1],[-22,-1],[-14,0],[-14,0],[-14,0],[-19,0],[-25,0],[-13,0],[-22,0],[-20,1],[-147,1],[-48,1],[-22,0],[-25,0],[-44,1],[-24,0],[-25,0],[-31,0],[-20,1],[-33,-1],[-46,0],[-244,3],[-56,0],[-184,1],[-246,1],[-132,-1],[-111,-1],[-246,4],[-251,1],[-121,0],[-123,0],[-34,0],[-56,0],[-28,0],[-24,0],[-24,0],[-29,0],[-38,0],[-2,0],[-39,0],[-19,0],[-20,0],[-45,1],[-22,1],[-20,0],[-19,-1],[-28,0],[-36,0],[-41,0],[-26,1],[-28,0],[-24,0],[-85,0],[-32,0],[-16,-1],[-31,1],[-169,0],[-281,0],[-373,0],[-83,0],[-28,0],[-14,0],[-109,-1],[-124,-1],[-327,-3],[-406,-5],[-100,-1],[-44,0],[-80,-1],[-58,0],[-206,-3]],[[7030,24682],[-15,-1],[-24,0],[-23,-1],[-33,1],[-14,1],[-14,0],[-70,1],[-23,1],[-34,-3],[-54,2],[-66,-4],[-121,9],[-110,1],[-38,1],[-27,0],[-258,5],[-57,1],[-77,0],[-19,1],[-30,0],[-17,0],[-72,1],[-37,1],[-41,-1],[-28,1],[-46,0],[-36,0],[-70,0],[-134,1],[-16,0],[-15,0],[-21,1],[-22,-1],[-21,0],[-15,1],[-96,1],[-26,0],[-123,0],[-15,0],[-50,0],[-30,0],[-44,1],[-42,0],[-65,1],[-25,-9],[-36,0],[-62,0],[-66,9],[-27,1],[-41,1],[-48,-1],[-32,-1],[-22,-1],[-21,1],[-27,-1],[-29,1],[-28,-2],[-27,1],[-83,-13],[-39,4],[-42,1],[-15,0],[-37,1],[-42,1],[-19,2],[-38,4],[-25,7],[-24,0],[-16,-1],[-21,1],[-10,0],[-19,1],[-29,1],[-3,0],[-18,-2],[-51,1],[-46,1],[-50,2],[-44,1],[-16,0],[-16,0],[-31,0],[-27,2],[-31,0],[-15,1],[-31,0],[-21,1],[-29,1],[-33,0],[-27,2],[-15,0],[-14,1],[-26,1],[-19,-1],[-20,1],[-32,1],[-15,-1],[-49,3],[-15,0],[-22,1],[-15,0],[-215,2],[-23,-2],[-55,9],[-64,2],[-24,2],[-104,-4],[-100,2],[-83,-1],[-63,-5],[-67,7],[-41,0],[-135,-1],[-155,-1],[-212,2],[-122,1],[-214,4],[-33,-4],[-119,4],[-122,1],[-243,4],[-129,-8],[-144,10],[-6,0],[-213,2],[-346,2]],[[128,24756],[-1,377],[-18,6679],[-2,433],[-2,2198],[0,3],[-1,475],[0,28],[0,80],[-11,7085],[0,37]],[[47953,39174],[-2,-484],[-2,-352],[2,-129],[1,-50],[2,-436],[1,-134],[0,-101],[0,-238],[1,-479],[0,-49],[0,-41],[1,-47],[-1,-62],[0,-38],[0,-129],[1,-126],[0,-66],[0,-49],[0,-51],[0,-105],[0,-103],[0,-56],[0,-40],[0,-68],[0,-41],[1,-55],[-1,-52],[0,-50],[0,-226],[0,-87],[0,-5],[1,-46],[-1,-62],[0,-34],[1,-87],[0,-62],[0,-99],[0,-481],[0,-107],[1,-102],[0,-34],[0,-41],[0,-69],[0,-73],[0,-48],[0,-419],[0,-35],[0,-123],[1,-58],[0,-88],[-1,-76],[0,-75],[0,-57],[0,-36],[0,-38],[0,-73],[0,-74],[0,-148],[0,-51],[0,-98],[1,-207],[0,-112],[0,-41],[0,-14],[0,-50],[1,-46],[0,-8],[0,-57],[0,-105],[1,-189],[0,-96],[0,-43],[0,-81],[1,-401],[0,-78],[1,-237],[0,-60],[0,-3],[1,-55],[0,-46],[0,-388],[0,-97],[-1,-85],[0,-60],[-1,-411],[0,-175],[0,-228],[-1,-315],[0,-50],[0,-102],[0,-99],[0,-56],[0,-85],[-1,-40],[0,-163],[0,-56],[0,-205],[-1,-243],[-4,-35]],[[47956,27609],[-86,1],[-49,1],[-20,-2],[-24,1],[-17,0],[-46,0],[-26,0],[-34,0],[-89,1],[-68,0],[-28,0],[-150,0],[-19,1],[-25,-1],[-28,-1],[-24,0],[-25,0],[-34,0],[-24,-1],[-24,0],[-43,0],[-50,0],[-37,-1],[-29,1],[-22,-1],[-29,0],[-23,0],[-26,0],[-32,-1],[-26,0],[-48,-1],[-20,0],[-34,1],[-34,-1],[-33,-1],[-44,0],[-47,0],[-24,-1],[-30,-1],[-15,0],[-25,0],[-29,1],[-31,-1],[-27,0],[-18,0],[-26,0],[-68,-2],[-15,0],[-45,0],[-28,0],[-22,0],[-20,0],[-22,0],[-67,0],[-29,0],[-64,1],[-53,-1],[-32,0],[-79,0],[-21,0],[-23,1],[-73,1],[-21,0],[-18,1],[-32,0],[-41,1],[-35,1],[-27,0],[-122,1],[-42,1],[-30,0],[-29,1],[-22,1],[-119,1],[-39,1],[-35,1],[-29,0],[-18,1],[-43,1],[-26,0],[-55,2],[-43,0],[-38,1],[-14,0],[-23,0],[-24,1],[-77,1],[-27,0],[-19,1],[-34,0],[-16,0],[-35,1],[-33,0],[-45,1],[-42,0],[-22,1],[-19,1],[-29,0],[-6,1],[-20,-1],[-33,1],[-32,1],[-53,0],[-54,1],[-42,1],[-31,-1],[-18,1],[-115,3],[-42,0],[-24,0],[-36,2],[-42,0],[-68,0],[-53,1],[-17,-1],[-15,1],[-31,0],[-32,1],[-29,-1],[-23,0],[-26,0],[-57,-1],[-33,1],[-108,0],[-139,0],[-44,0],[-41,0],[-23,0],[-24,0],[-35,0],[-43,1],[-36,0],[-75,-1],[-32,1],[-15,0],[-134,-3],[-96,3],[-64,1],[-73,0],[-23,0],[-30,0],[-56,1],[-37,0],[-90,0],[-39,1],[-31,-1],[-27,1],[-21,0],[-79,0],[-49,1],[-83,1],[-35,-1],[-47,0],[-39,1],[-32,0],[-41,0],[-58,0],[-28,-1],[-94,-2],[-34,0],[-17,0],[-29,1],[-40,-1],[-32,-1],[-51,0],[-37,0],[-40,0],[-47,0],[-33,0],[-39,0],[-20,0],[-44,0],[-41,0],[-22,0],[-24,1],[-66,-1],[-29,1],[-16,0],[-40,0],[-2,0],[-18,0],[-17,-1],[-28,1]],[[40711,27638],[-32,-1],[-41,1],[-21,0],[-19,0],[-12,61],[0,61],[1,52],[0,142],[0,92],[0,47],[0,78],[0,10],[1,50],[0,50],[0,48],[0,142],[0,47],[0,49],[0,36],[0,56],[0,46],[0,44],[0,57],[0,36],[0,472],[6,733],[-4,249],[0,185],[0,57],[0,103],[0,34],[1,226],[0,66],[0,36],[0,71],[0,39],[0,39],[0,80],[0,39],[0,65],[0,83],[0,60],[1,113],[0,47],[0,68],[0,40],[-1,48],[0,153],[0,41],[0,5],[0,78],[0,11],[0,202],[0,1],[1,192],[0,77],[0,115],[0,116],[0,82],[-1,94],[1,172],[0,50],[0,221],[1,40]],[[33258,36339],[0,-443],[0,-37],[0,-346],[0,-115],[-1,-517],[1,-66],[-1,-45],[0,-65],[0,-124],[0,-59],[0,-107],[0,-106],[0,-65],[0,-36],[0,-211],[0,-15],[0,-67],[-1,-401],[0,-53],[0,-275],[0,-58],[0,-40],[0,-63],[0,-74],[0,-142],[0,-251],[-1,-88],[0,-316],[0,-167],[0,-75],[-1,-405],[0,-94],[0,-22],[0,-38],[0,-44],[0,-130],[0,-153],[-1,-189],[0,-198],[1,-90]],[[33254,30549],[-242,-6],[-127,-3],[-10,-1],[-6,-1],[-30,3],[-57,3],[-19,-1],[-14,1],[-113,2],[-118,0],[-178,2],[-68,1],[-52,2],[-98,1],[-96,2],[-163,4],[-34,0],[-31,1],[-15,0],[-71,-1],[-133,0],[-41,-1],[-129,0],[-29,0],[-21,0],[-40,0],[-26,0],[-236,-2],[-53,-1],[-5,0],[-47,-1],[-99,-1],[-50,1],[-211,-1],[-34,0],[-94,-2],[-28,-2],[-83,1],[-52,0],[-189,1],[-106,1],[-13,1],[-181,2],[-52,0],[-217,4],[-2,0],[-33,1],[-22,0],[-38,0],[-126,-4],[-80,0],[-60,1],[-135,2],[-76,0],[-25,0],[-101,1],[-12,0],[-82,1],[-128,-2],[-36,-1],[-31,0],[-172,-1],[-26,0],[-350,-4],[-20,1],[-121,-1],[-26,0],[-53,0],[-64,0],[-63,0],[-56,-1],[-55,-1],[-78,-1],[-106,-1],[-18,0],[-73,-1],[-16,0],[-17,1],[-18,0],[-79,1],[-24,0],[-39,0],[-85,1],[-112,3],[-118,4],[-155,1],[-37,0],[-74,0],[-30,1],[-177,1],[-22,0],[-126,1],[-229,0],[-118,4],[-105,2],[-22,0],[-131,4],[-115,3],[-126,1],[-120,1],[-114,1],[-130,1],[-20,0],[-153,1],[-73,0],[-136,2],[-107,1]],[[24447,30582],[2,113],[0,369],[0,175],[0,47],[0,34],[0,50],[0,45],[1,79],[0,51],[0,241],[0,120],[0,54],[1,73],[0,79],[0,42],[0,41],[0,136],[0,61],[1,70],[-1,46],[2,481],[1,431],[0,51]],[[65638,36350],[-2,-486],[0,-174],[2,-99],[0,-212],[1,-487],[-2,-266],[0,-44],[0,-171],[-1,-285],[0,-48],[0,-150],[0,-185],[0,-45],[1,-67],[0,-56],[0,-126],[3,-88],[1,-66],[0,-287],[0,-47],[0,-485],[1,-117],[1,-42],[0,-46],[0,-24],[0,-11],[0,-37],[0,-16],[0,-21],[-1,-35],[0,-78],[0,-37],[0,-10],[0,-9],[0,-38],[0,-106],[0,-61],[0,-53],[-1,-36],[0,-67],[2,-129],[0,-168],[-3,-73],[0,-88],[-1,-54],[1,-44],[0,-20],[1,-26],[1,-62],[1,-49],[0,-275],[1,-104]],[[65644,30540],[-74,0],[-54,-1],[-37,0],[-48,0],[-45,0],[-54,-1],[-54,-1],[-59,0],[-14,-1],[-49,-1],[-7,0],[-7,0],[-17,-1],[-17,0],[-73,1],[-36,0],[-17,0],[-18,0],[-36,0],[-31,-1],[-43,0],[-86,0],[-22,0],[-23,0],[-67,-1],[-16,0],[-25,0],[-37,0],[-18,-1],[-27,-1],[-99,-3],[-25,0],[-47,-1],[-69,0],[-21,0],[-112,-1],[-32,-1],[-29,0],[-27,0],[-91,0],[-66,0],[-34,0],[-72,0],[-16,0],[-40,0],[-55,0],[-29,0],[-23,0],[-46,0],[-118,-1],[-14,0],[-46,0],[-37,0],[-23,0],[-16,0],[-29,0],[-7,0],[-9,0],[-13,0],[-23,-1],[-36,0],[-17,0],[-21,0],[-16,0],[-21,0],[-14,0],[-35,0],[-20,0],[-28,0],[-23,-1],[-42,-1],[-16,-5],[-16,1],[-1,0],[-15,4],[-14,1],[-21,0],[-34,0],[-20,0],[-39,0],[-23,0],[-26,0],[-44,0],[-26,0],[-80,0],[-34,0],[-21,0],[-110,1],[-53,0],[-191,1],[-39,0],[-40,0],[-29,0],[-14,1],[-13,0],[-17,0],[-26,0],[-1,0],[-15,0],[-16,0],[-17,0],[-17,1],[-16,0],[-15,1],[-57,1],[-38,1],[-32,-1],[-15,-1],[-82,-1],[-88,0],[-20,0],[-57,0],[-36,0],[-39,0],[-47,-1],[-56,0],[-67,0],[-47,-1],[-27,1],[-45,0],[-64,1],[-30,-1],[-68,0],[-36,1],[-48,0],[-26,0],[-60,0],[-39,0],[-41,0],[-38,-1],[-55,0],[-21,0],[-74,-2],[-65,-1],[-27,-1],[-22,0],[-59,3],[-41,1],[-79,1],[-46,0],[-70,1],[-78,0],[-18,0],[-24,1],[-24,0],[-33,0],[-64,-1],[-51,1],[-59,1],[-20,-1],[-51,0],[-14,1],[-77,0],[-88,0],[-67,0],[-117,-1],[-33,0],[-96,0],[-34,0],[-87,0],[-67,0],[-41,0],[-18,1],[-35,0],[-94,0],[-32,0],[-15,0],[-63,-1],[-18,1],[-50,0],[-150,2],[-36,0],[-31,0],[-145,0],[-61,0]],[[58280,30531],[-1,247],[0,242],[0,187],[0,67],[0,197],[0,35],[0,36],[1,446],[0,116],[0,138],[-1,40],[0,188],[1,366],[-1,118],[1,42],[-1,324],[-5,118],[1,66],[0,1],[1,161],[0,108],[1,124],[1,43],[0,164],[0,64],[0,124],[0,13],[0,42],[-1,46],[1,113],[0,125],[0,74],[0,39],[0,70],[1,53],[0,62],[-2,201],[0,104],[1,116],[0,61],[0,62],[0,95],[1,44],[-1,219],[0,51],[3,433],[-1,183],[0,40],[0,82],[0,1],[-1,131],[0,50],[1,108],[-1,78],[0,71],[0,219],[0,310],[0,171],[0,45],[-1,179],[0,220],[0,41],[0,478],[1,202],[4,284]],[[81634,34772],[1,-103],[0,-40],[0,-62],[0,-35],[0,-91],[0,-117],[-2,-33],[2,-39],[0,-33],[-2,-68],[1,-242],[1,-353],[1,-118],[1,-45],[0,-266],[0,-73],[0,-213],[1,-260],[1,-266],[1,-167],[1,-189],[0,-124],[0,-126],[0,-127],[0,-194],[0,-347],[0,-132],[0,-201],[0,-284],[0,-131],[-1,-106],[0,-48],[0,-121],[0,-103],[1,-38],[-1,-54],[0,-48],[1,-194],[0,-78],[0,-78],[-1,-137],[-2,-74],[2,-199],[1,-313],[1,-58],[1,-167],[1,-59],[0,-34],[0,-126],[1,-253],[0,-204],[0,-3],[1,-72],[0,-88],[0,-113],[-22,1],[-22,0],[0,-121],[-1,-122],[0,-81],[-1,-93],[0,-39],[0,-59],[0,-35],[1,-36],[0,-16],[0,-55],[0,-7],[0,-54],[0,-38],[1,-111],[0,-38],[0,-34],[1,-153],[0,-77],[0,-44],[0,-44],[-1,-6],[0,-34],[0,-40],[0,-23],[-1,-32],[0,-55],[0,-12],[0,-189],[1,-182],[0,-102],[1,-457],[2,-79],[1,-69],[1,-133],[0,-6],[2,-235]],[[81609,24615],[2,-231],[1,-283],[1,-50],[1,-72],[1,-77],[1,-41],[0,-55],[1,-103],[1,-58],[-1,-103],[0,-98],[0,-34],[1,-72],[0,-46],[0,-53],[0,-66],[0,-47],[-1,-160],[-1,-124],[0,-113],[0,-40],[0,-71],[-1,-246],[-1,-52],[0,-44],[-1,-229],[0,-54],[-1,-292],[-1,-149],[0,-188],[-2,-377],[-1,-108],[0,-97],[0,-18],[0,-86],[0,-58],[0,-65],[0,-67],[0,-70],[0,-48],[0,-34],[0,-56]],[[81608,20280],[-36,1],[-14,1],[-17,0],[-56,1],[-55,0],[-128,3],[-1,0],[-113,0],[-35,0],[-68,3],[-3,0],[-16,2],[-23,2],[-17,1],[-30,-5],[-105,3],[-136,4],[-29,1],[-17,0],[-19,-1],[-18,0],[-17,0],[-19,4],[-17,1],[-63,2],[-14,2],[-104,7],[-227,3],[-86,1],[-63,3],[-109,4],[-32,1],[-20,5],[-30,-2],[-18,1],[-62,3],[-130,-2],[-99,3],[-146,4],[-128,3],[-99,1],[-13,1],[-22,0],[-94,1],[-46,1],[-180,2],[-114,1],[-14,0],[-13,6],[-174,-1],[-216,3],[-8,0],[-11,0],[-90,1],[-63,-1],[-1,0],[-22,3],[-34,4],[-116,-2],[-15,0],[-91,-1],[-59,-1],[-22,0],[-17,-1],[-18,1],[-31,-1],[-13,1],[-9,0],[-17,0],[-24,1],[-13,0],[-94,1],[-40,1],[-52,1],[-131,3],[-108,2],[-15,1],[-70,1],[-37,1],[-67,1],[-8,0],[-45,0],[-16,1],[-27,0],[-21,0],[-15,1],[-23,0],[-23,0],[-15,0],[-42,1],[-51,0],[-13,1],[-28,1],[-26,0],[-127,2],[-44,1],[-14,0],[-43,1],[-20,-1],[-23,2],[-97,0],[-26,0],[-15,-1],[-14,1],[-17,0],[-19,0],[-17,0],[-21,1],[-17,0],[-91,8],[-104,-3],[-69,-2],[-68,-1],[-73,-2],[-47,-1],[-79,-2],[-21,2],[-47,-1],[-20,0],[-40,1],[-26,0],[-46,1],[-24,1],[-63,0],[-60,1],[-40,1],[-81,3],[-49,0],[-34,1],[-48,0],[-64,1],[-210,2],[-96,2],[-105,1],[-14,0],[-14,0],[-39,2],[-83,-8],[-20,-1],[-127,1],[-71,0],[-128,0]],[[74047,20388],[0,475],[-1,123],[-1,43],[0,112],[-2,240],[-2,239],[-1,44],[-1,172],[-1,157],[0,217],[0,48],[0,55],[0,34],[0,155],[0,67],[0,42],[0,172],[0,260],[0,102],[1,214],[0,63],[0,116],[0,109],[-1,266],[2,75],[1,132],[1,123],[1,291],[0,169],[0,155],[0,90],[-1,34],[-1,155],[0,51],[0,43],[0,325],[-1,553],[-1,215],[0,219],[-1,216],[3,140],[0,153],[0,73],[0,59],[0,192],[0,173],[0,80],[1,139],[0,196],[2,410],[1,145],[0,74],[0,180],[1,98],[0,90],[1,115],[1,211],[1,254],[1,415],[4,434],[1,132],[2,306],[0,290],[1,165],[5,382],[5,291],[-2,505],[8,602],[-2,375],[0,101],[1,59],[0,49],[2,631],[1,585],[3,778],[1,484],[1,180]],[[58280,30531],[-1,-131],[-1,-16],[0,-19],[0,-238],[3,-83],[-1,-237],[1,-241],[0,-105],[-1,-88],[0,-32],[0,-30],[0,-66],[0,-45],[0,-56],[0,-61],[0,-114],[0,-120],[0,-71],[0,-39],[0,-56],[0,-47],[0,-37],[0,-72],[0,-35],[0,-99],[0,-157],[-1,-34],[0,-85],[0,-171],[1,-181],[-1,-133],[33,0],[1,-152],[0,-45],[1,-43],[0,-38],[2,-182],[0,-82],[0,-35],[1,-34],[0,-80],[0,-62],[0,-142],[1,-64],[0,-62],[0,-47],[0,-46],[0,-113],[1,-70],[0,-80],[0,-142],[0,-34],[1,-100],[0,-85],[0,-35],[0,-103],[1,-55],[0,-106],[0,-213],[1,-100],[0,-162],[1,-96],[0,-56],[1,-215],[1,-113],[-35,-5],[-26,-5],[-27,-5],[-27,-4],[-17,-2],[-17,-1],[-25,0],[-25,-2],[-27,0],[-22,-1],[-29,-1],[-5,0],[-62,-1],[-149,-4],[-16,0],[-46,-1],[-32,0],[-32,-1],[-28,0],[-25,-1],[-26,0],[-39,-1],[-80,-2],[-17,0],[-15,0],[-39,-1],[-2,0],[-15,0],[-16,-1],[-15,0],[-15,0],[-30,-1],[-23,0],[-28,-1],[-14,0],[-24,-1],[-28,-1],[-27,1],[-44,11],[-182,-6],[-51,-1],[-60,-2]],[[56863,24600],[-358,-11],[-12,0],[-2,-1],[-16,0],[-25,-2],[-18,0],[-60,0],[-23,-1],[-22,0],[-18,0],[-15,0],[-61,-1],[-19,1],[-56,-1],[-30,0],[-46,1],[-21,1],[-43,1],[-21,1],[-56,2],[-51,1],[-43,1],[-70,3],[-21,0],[-86,3],[-21,1],[-19,0],[-241,2],[-38,0],[-23,0],[-56,-1],[-28,0],[-97,-1],[-6,0],[-31,0],[-70,-1],[-29,0],[-14,0],[-57,-1],[-31,0],[-13,-1],[-29,0],[-38,0],[-40,-2],[-114,0],[-24,-1],[-57,-1],[-58,0],[-18,-1],[-50,0],[-35,-1],[-24,-1],[-3,0],[-105,-1],[-59,0],[-47,-2],[-33,0],[-84,-2],[-15,1],[-52,-2],[-38,-1],[-15,0],[-16,-1],[-20,0],[-59,0],[-15,0],[-17,0],[-30,-1],[-26,0],[-23,0],[-24,0],[-48,0],[-24,0],[-24,0],[-74,0],[-16,0],[-38,-1],[-19,0],[-32,0],[-16,0],[-56,-1],[-67,0],[-42,-1],[-41,0],[-39,0],[-45,-1],[-46,0],[-33,0],[-120,-1],[-23,0],[-37,-2],[-39,-1],[-28,-1],[-42,-2],[-28,0],[-48,-1],[-94,-2],[-91,5],[-25,3],[-30,-5],[-44,-1],[-21,1],[-56,-1],[-18,-1],[-39,-1],[-20,0],[-47,0],[-124,-4],[-46,0],[-35,-1],[-39,0],[-11,0],[-233,1],[-79,1],[-35,0],[-47,0],[-84,1],[-26,0],[-31,0],[-47,1],[-50,1],[-90,0],[-57,1],[-53,-1],[-23,-1],[-96,-4],[-24,-1],[-79,-2],[-51,-1],[-24,0],[-90,-2],[-21,1],[-148,1],[-48,0],[-28,0],[-204,1],[-41,0],[-58,1],[-69,0],[-26,0],[-92,0],[-113,0],[-22,0],[-21,-1],[-43,0],[-21,0],[-25,0],[-56,-1],[-18,0],[-18,1],[-22,0],[-17,0],[-67,-1],[-21,0],[-21,0],[-16,1],[-25,-1],[-20,0],[-172,-2],[-28,0],[-28,0],[-78,0],[-121,0],[-105,0],[-69,0],[-35,0],[-33,0],[-81,-1],[-45,0],[-122,1],[-54,0],[-25,0],[-51,0],[-46,2],[-27,0],[-25,1],[-20,0],[-48,1],[-45,0],[-25,1],[-120,1]],[[48060,24561],[0,241],[0,245],[1,90],[0,88],[0,67],[0,240],[0,485],[0,364],[0,118],[-1,188],[0,97],[-1,196],[0,84],[0,94],[0,42],[-1,67],[0,73],[1,274],[-59,-3],[-44,-2]],[[74047,20388],[0,-380],[0,-27],[0,-31],[0,-40],[-1,-153],[0,-345],[0,-41],[-1,-225],[-1,-198],[-4,-582],[-1,-115],[1,-274],[0,-112],[0,-29],[1,-57],[-3,-38],[-2,-396],[-1,-245],[-2,-265],[8,-340],[0,-177],[1,-105],[0,-162]],[[74042,16051],[-78,-1],[-16,0],[-19,1],[-55,1],[-19,-1],[-36,6],[-30,2],[-28,-1],[-95,0],[-76,-1],[-7,0],[-29,0],[-17,-1],[-20,1],[-84,0],[-56,0],[-129,1],[-42,2],[-18,1],[-134,-2],[-68,-2],[-88,-1],[-177,-4],[-14,1],[-82,2],[-24,-4],[-129,-3],[-107,-3],[-62,-1],[-74,-5],[-122,-3],[-24,-1],[-28,0],[-24,-1],[-15,0],[-35,-2],[-55,1],[-109,-4],[-77,-2],[-124,-3],[-109,1],[-139,0],[-113,0],[-130,3],[-30,1],[-63,0],[-21,-1],[-144,2],[-13,0],[-95,1],[-87,2],[-154,3],[-204,4],[-38,0],[-43,0],[-214,2],[-123,1],[-21,0],[-99,1],[-47,-2],[-71,-4],[-55,-2],[-112,-1],[-134,6],[-70,-1],[-38,-1],[-150,-3],[-15,-1],[-32,-1],[-255,-4],[-114,-2],[-127,-2],[-31,1],[-17,0],[-37,-1],[-78,0],[-82,1],[-19,-1],[-91,-1],[-59,0],[-73,3],[-228,0],[-20,-1],[-64,0],[-17,0],[-15,1],[-115,2],[-31,0],[-3,0],[-34,0],[-39,0],[-25,0],[-4,0],[-20,1],[-16,1],[-104,0],[-169,0],[-1,0],[-16,0],[-47,0],[-119,0],[-101,-1],[-26,0],[-79,-1],[-37,0],[-130,-6],[-20,0],[-59,-2],[-58,-2],[-19,0],[-34,-1],[-6,0],[-47,0],[-80,-1],[-52,1],[-127,1],[-30,0],[-16,0],[-98,1],[-87,1],[-244,1]],[[65632,16023],[1,70],[0,54],[0,108],[0,78],[1,41],[0,36],[0,62],[0,36],[0,33],[0,35],[0,83],[0,42],[1,65],[0,94],[0,71],[0,60],[1,172],[0,128],[0,67],[0,116],[0,129],[1,120],[0,153],[0,83],[1,150],[0,46],[0,32],[0,6],[-1,34],[1,60],[0,52],[2,82],[0,8],[-1,26],[0,39],[0,71],[0,36],[0,83],[1,80],[0,63],[0,52],[0,49],[0,105],[-1,159],[0,66],[0,59],[0,114],[0,57],[0,55],[0,37],[0,53],[-1,97],[0,60],[0,105],[0,76],[0,38],[0,35],[0,49],[0,38],[0,37],[-1,40],[0,41],[0,70],[0,58],[0,66],[0,3],[-1,44],[0,93],[0,35],[0,38],[0,60],[0,102],[0,59],[0,59],[0,64],[0,43],[0,77],[0,66],[0,65],[0,50],[0,74],[0,36],[1,68],[0,43],[0,37],[0,53],[0,103],[0,73],[0,33],[0,35],[0,33],[0,66],[0,77],[0,51],[0,49],[0,52],[0,36],[0,35],[0,55],[-2,44],[0,36],[0,47],[0,48],[0,20],[2,55],[0,50],[-1,88],[0,56],[0,34],[0,12],[0,92],[0,40],[0,40],[0,65],[0,108],[0,42],[0,54],[0,45],[0,34],[0,38],[0,55],[0,109],[0,10],[0,31],[0,40],[0,127],[0,34],[1,69],[0,37],[0,82],[0,48],[0,7],[0,44],[0,35],[0,39],[0,36],[0,50],[0,38],[1,58],[0,62],[0,55],[0,48],[0,48],[0,151],[0,63],[0,80],[-1,52],[0,9],[0,73],[0,37],[0,135],[0,37],[0,60],[0,77],[-1,73],[0,70],[0,181],[-1,82],[1,232],[0,59],[0,132],[-1,61],[0,76],[0,83],[0,71],[0,8],[0,89],[0,128],[0,24],[0,14],[0,54],[0,81],[-1,73],[0,85],[0,41],[-1,80],[0,59],[0,44],[0,52],[-1,84],[-1,35],[0,52],[0,56],[0,91],[0,68],[17,0],[0,44],[0,35],[-1,52],[0,99],[-1,56],[0,114],[0,102],[-1,244],[1,186],[-1,37],[0,110],[0,40],[0,40],[0,84],[0,101],[0,72],[0,39],[0,42],[0,67],[0,35],[0,61],[0,58],[-1,77],[0,35],[2,41],[0,77],[-1,46],[0,124],[0,173],[0,132],[-1,244],[0,105],[0,136]],[[40711,27638],[0,-82],[0,-81],[0,-147],[0,-20],[0,-124],[0,-9],[-1,-188],[-1,-50],[0,-52],[0,-221],[0,-41],[0,-49],[0,-70],[-1,-153],[0,-66],[0,-38],[0,-154],[0,-72],[0,-45],[0,-57],[0,-54],[0,-56],[0,-38],[0,-56],[0,-42],[-1,-56],[0,-43],[0,-37],[0,-36],[0,-48],[4,-33],[-2,-283],[-1,-566]],[[40708,24571],[-81,2],[-17,1],[-16,0],[-25,1],[-19,-1],[-26,1],[-31,1],[-15,-1],[-18,1],[-105,0],[-33,0],[-23,0],[-84,1],[-35,0],[-48,2],[-27,0],[-15,1],[-23,1],[-27,0],[-23,-1],[-18,0],[-15,1],[-27,-1],[-19,0],[-63,0],[-31,1],[-74,2],[-19,0],[-30,0],[-35,0],[-28,1],[-58,0],[-75,2],[-21,-1],[-26,0],[-28,0],[-34,0],[-39,1],[-38,0],[-18,0],[-65,0],[-32,5],[-15,0],[-76,-6],[-25,-5],[-32,1],[-150,1],[-12,1],[-84,6],[-82,6],[-246,-5],[-235,0],[-253,-7],[-235,-2],[-113,3],[-133,9],[-28,0],[-42,0],[-47,0],[-83,0],[-43,0],[-110,0],[-45,1],[-24,0],[-35,0],[-30,0],[-60,0],[-44,1],[-17,0],[-26,0],[-97,0],[-100,1],[-129,-1],[-11,0],[-3,0],[-107,0],[-35,-1],[-47,0],[-24,0],[-24,1],[-128,1],[-48,0],[-17,1],[-37,0],[-27,0],[-30,0],[-33,1],[-38,0],[-18,0],[-18,0],[-40,1],[-23,0],[-32,1],[-180,3],[-43,0],[-21,1],[-209,3],[-28,0],[-16,0],[-37,1],[-69,0],[-62,2],[-25,0],[-19,0],[-24,1],[-42,0],[-31,1],[-95,1],[-46,1],[-25,0],[-44,-3],[-632,14],[-301,4],[-467,7],[-25,-2]],[[33392,24634],[0,74],[0,5],[-1,147],[-1,151],[-2,112],[-1,487],[0,86],[0,59],[0,47],[0,267],[1,354],[0,46],[0,49],[0,87],[-1,50],[0,96],[0,43],[-1,53],[-1,188],[0,42],[-1,150],[0,34],[0,49],[0,64],[-1,45],[0,60],[0,46],[0,54],[-1,67],[-29,1],[-18,0],[-51,1],[-20,-1],[-2,0],[-17,23],[0,99],[1,147],[0,63],[0,38],[0,109],[1,122],[0,79],[0,82],[0,35],[0,62],[1,103],[1,482],[0,58],[0,68],[0,35],[0,35],[1,179],[0,36],[1,39],[0,52],[0,72],[0,67],[0,28],[0,7],[0,52],[1,238],[1,224],[0,38],[1,191],[0,39]],[[87530,34707],[0,-89],[-1,-64],[0,-46],[0,-40],[0,-38],[0,-43],[0,-46],[0,-45],[0,-71],[-1,-311],[0,-61],[0,-111],[0,-53],[0,-96],[1,-114],[0,-125],[0,-35],[0,-61],[-1,-200],[0,-132],[0,-176],[0,-9],[0,-111],[0,-103],[-1,-314],[0,-157],[-3,-50],[1,-130],[0,-63],[0,-59],[0,-64],[0,-58],[0,-130],[1,-55],[0,-60],[0,-39],[0,-59],[0,-51],[0,-42],[0,-41],[1,-124],[0,-50],[0,-40],[0,-44],[0,-49],[1,-45],[0,-20],[0,-85],[0,-97],[0,-235],[0,-85],[0,-71],[0,-43],[-1,-74],[0,-83],[0,-49],[-1,-69],[1,-68],[0,-41],[0,-76],[0,-41],[0,-70],[0,-37],[0,-41],[0,-35],[0,-10],[2,-77],[0,-107],[2,-52],[-1,-74],[-3,-250],[0,-78],[2,-130],[-1,-57],[0,-62],[-1,-154],[0,-239],[1,-133],[0,-110],[0,-58],[-1,-164],[0,-187],[-1,-45],[-3,-7],[-7,-20],[-54,1],[-11,-57],[0,-53],[-1,-40],[0,-59],[0,-42],[-1,-37],[0,-35],[0,-41],[0,-37],[-1,-45],[0,-43],[0,-44],[1,-37],[0,-37],[0,-38],[0,-84],[1,-39],[0,-40],[1,-129],[0,-36],[1,-92],[0,-125],[-1,-94],[0,-80],[0,-83],[1,-219],[-1,-154],[0,-52],[1,-42],[0,-75],[0,-40],[-1,-114],[-1,-38],[-2,-109],[0,-36],[-1,-51],[0,-34],[-1,-74],[0,-57],[0,-48],[-1,-88],[-1,-115],[-1,-113]],[[87443,24564],[-197,-1],[-43,0],[-123,2],[-46,1],[-38,1],[-41,1],[-29,0],[-31,1],[-72,-1],[-26,0],[-21,0],[-18,0],[-44,0],[-36,0],[-22,1],[-44,0],[-21,0],[-16,0],[-34,0],[-49,0],[-23,0],[-23,0],[-16,1],[-16,0],[-15,0],[-18,0],[-42,1],[-50,1],[-20,0],[-19,1],[-23,0],[-51,1],[-70,1],[-22,0],[-22,1],[-14,0],[-16,0],[-33,1],[-15,0],[-52,1],[-42,1],[-17,0],[-25,0],[-50,2],[-23,0],[-16,1],[-39,-2],[-213,7],[-15,-1],[-24,0],[-14,1],[-20,0],[-40,1],[-23,0],[-46,1],[-55,0],[-4,0],[-11,1],[-40,1],[-15,0],[-34,0],[-13,0],[-2,0],[-13,-1],[-26,1],[-21,0],[-10,1],[-6,0],[-45,0],[-20,1],[-21,0],[-29,0],[-159,0],[-22,0],[-33,0],[-40,1],[-21,-1],[-15,2],[-134,1],[-117,2],[-14,0],[-22,1],[-13,1],[-21,-1],[-34,0],[-27,0],[-122,0],[-29,0],[-24,-1],[-50,0],[-19,0],[-55,0],[-19,1],[-47,0],[-61,0],[-20,1],[-42,0],[-124,1],[-22,1],[-17,-1],[-75,2],[-22,0],[-14,0],[-44,-1],[-108,2],[-51,1],[-14,0],[-105,2],[-37,1],[-69,-4],[-24,-1],[-14,0],[-16,5],[-10,-1],[-4,0],[-19,-1],[-18,0],[-18,2],[-14,0],[-16,0],[-15,0],[-15,1],[-23,0],[-69,0],[-66,-4],[-58,1],[-285,7],[-76,3],[-19,2],[-18,0],[-14,1],[-17,2],[-22,-1],[-58,-7],[-14,-2],[-24,2],[-11,1],[-5,0],[-16,3],[-21,0],[-80,1],[-63,1],[-18,1],[-15,0],[-227,-3],[-54,-1],[-33,-1]],[[93443,34690],[-2,-81],[-1,-159],[-2,-255],[0,-44],[-2,-255],[-2,-167],[-1,-250],[-1,-40],[1,-38],[0,-159],[0,-210],[0,-38],[0,-75],[-1,-192],[-1,-105],[0,-109],[-1,-90],[0,-148],[-3,-482],[-2,-482],[-2,-295],[0,-2],[0,-56],[-1,-131],[0,-76],[-4,-405],[-1,-145],[-1,-92],[0,-22],[-1,-35],[1,-46],[-1,-34],[0,-35],[-1,-67],[-1,-62],[-1,-182],[-2,-239],[0,-99],[0,-269],[1,-395],[0,-165],[1,-33],[0,-253],[0,-160],[2,-73],[0,-189],[1,-293],[-26,0],[-84,0],[0,-399],[3,-111],[-3,-215],[-1,-82],[1,-157],[1,-50],[0,-212],[2,-39],[-2,-148],[1,-45],[0,-56],[1,-425],[-3,-238],[-1,-144],[0,-97],[0,-93],[0,-355],[0,-34]],[[93304,24558],[-71,-1],[-86,-2],[-88,-2],[-26,1],[-104,1],[-134,49],[-43,2],[-59,2],[-126,3],[-27,1],[-4,0],[-33,0],[-172,0],[-118,-40],[-122,-6],[-43,0],[-10,0],[-136,-2],[-62,-1],[-142,0],[-104,0],[-226,-3],[-17,0],[-146,-3],[-74,-1],[-25,0],[-158,-1],[-135,3],[-37,1],[-38,0],[-26,1],[-52,2],[-38,1],[-121,-1],[-132,4],[-205,7],[-31,1],[-139,1],[-42,-3],[-29,-2],[-35,-2],[-245,3],[-48,1],[-111,1],[-28,0],[-60,1],[-69,0],[-26,0],[-140,0],[-33,-1],[-19,0],[-194,-3],[-71,0],[-38,0],[-15,3],[-79,-2],[-7,-1],[-25,2],[-65,-1],[-39,0],[-17,0],[-105,-1],[-116,0],[-1,0],[-17,0],[-5,0],[-141,-1],[-176,-2],[-64,0],[-153,-3],[-96,3],[-23,2],[-98,-1],[-121,-4]],[[99655,34668],[0,-102],[0,-100],[0,-61],[0,-51],[0,-39],[1,-81],[0,-50],[0,-57],[0,-53],[-1,-54],[0,-42],[0,-54],[1,-48],[0,-35],[-1,-85],[0,-48],[0,-56],[0,-49],[0,-47],[1,-37],[-4,-300],[1,-62],[0,-27],[0,-29],[0,-51],[1,-59],[0,-34],[0,-34],[0,-59],[0,-101],[0,-37],[-1,-39],[1,-34],[0,-34],[0,-45],[-2,-48],[-2,-35],[-1,-81],[0,-121],[0,-36],[0,-263],[-1,-162],[0,-49],[0,-45],[0,-144],[-2,-119],[-1,-82],[0,-53],[-1,-36],[1,-47],[-3,-400],[-2,-204],[-2,-273],[-1,-45],[3,-47],[-1,-70],[-2,-126],[0,-36],[-1,-39],[-2,-167],[-1,-170],[0,-42],[0,-78],[0,-67],[0,-41],[0,-40],[-2,-53],[0,-67],[0,-77],[0,-45],[0,-53],[-1,-59],[0,-113],[0,-33],[-2,-153],[-1,-34],[-2,-205],[0,-16],[0,-47],[-1,-45],[-1,-108],[0,-75],[0,-3],[0,-38],[-1,-128],[-2,-323],[-3,-291],[-1,-75],[0,-37],[-1,-62],[0,-82],[0,-46],[-1,-67],[0,-58],[0,-47],[0,-40],[-1,-34],[0,-59],[0,-39],[-1,-46],[-1,-73],[0,-37],[0,-35],[0,-57],[-1,-66],[0,-43],[0,-45],[-1,-48],[0,-44],[0,-54],[0,-39],[-1,-55],[-1,-64],[0,-37],[0,-47],[0,-89],[0,-53],[0,-34],[0,-62],[0,-37],[0,-49],[0,-101],[0,-49],[0,-46],[0,-70],[0,-61],[-1,-37],[0,-94],[0,-35],[0,-48],[0,-34],[0,-62],[0,-44],[0,-71],[0,-60],[-1,-57],[0,-71],[0,-53],[0,-119],[0,-60],[0,-47],[-1,-77],[0,-67],[0,-50],[0,-44],[0,-65],[0,-54],[0,-75],[0,-78],[0,-88],[0,-87],[-1,-60],[0,-59],[1,-60],[0,-56],[0,-64],[0,-60],[0,-83],[0,-95],[0,-57],[0,-43],[3,-71],[-1,-37],[0,-28],[-1,-21],[-1,-38],[-1,-37],[1,-34],[0,-43],[1,-100],[0,-38],[0,-46],[0,-65]],[[99605,22583],[-45,4],[-20,0],[-48,3],[-41,3],[-5,0],[-16,0],[-21,1],[-21,0],[-35,-1],[-22,0],[-22,0],[-52,-1],[-67,-4],[-43,-1],[-24,0],[-41,0],[-43,0],[-34,0],[-41,0],[-17,1],[-96,2],[-17,0],[-49,0],[-36,-1],[-47,-2],[-31,0],[-28,0],[-95,-1],[-15,0],[-27,0],[-49,2],[-1,1],[-39,-4],[-11,0],[-97,9],[-91,9],[-33,1],[-36,3],[-33,1],[-20,0],[-72,3],[-39,3],[-15,-1],[-51,-1],[-37,1],[-48,0],[-66,1],[-43,1],[-20,0],[-36,1],[-21,0],[-46,2],[-27,0],[-81,-1],[-16,0],[-32,0],[-168,-2],[-50,0],[-73,-1],[-5,0],[-61,-1],[-113,-1],[-17,0],[-65,0],[-160,0],[-1,0],[-33,1],[-25,1],[-25,1],[-26,1],[-15,-1],[-19,1],[-25,1],[-30,2],[-21,0],[-35,2],[-106,2],[-76,0],[-41,0],[-21,1],[-64,4],[-25,2],[-26,2],[-21,1],[-56,5],[-125,2],[-78,-1],[-16,0],[-85,-7],[-85,0],[-46,0],[-41,0],[-25,0],[-49,0],[-19,0],[-43,1],[-40,0],[-83,1],[-54,1],[-54,0],[-30,0],[-35,0],[-17,1],[-19,0],[-20,-1],[-65,-1],[-122,3],[-2,0],[-86,2],[-161,2],[-83,1],[-33,0],[-51,-2],[-93,-2],[-49,0],[-55,-1],[-19,0],[-29,1],[-37,0],[-17,0],[-31,2],[-78,1],[-24,1],[-14,1],[-17,0],[-51,-1],[-35,-1],[-14,0],[-42,-2],[-40,-1],[-39,-1],[-132,-4],[-89,-5],[-22,-1],[-68,-1],[-34,0],[-85,2],[-57,2]],[[93305,22630],[1,117],[2,258],[0,45],[-1,73],[1,476],[-1,100],[0,51],[0,332],[-3,476]],[[24447,30582],[0,-364],[0,-93],[0,-11],[0,-32],[0,-356],[-2,-94],[0,-345],[0,-150],[0,-484],[-3,-338],[1,-141],[0,-486],[24,-1],[43,0],[79,0],[26,0],[-1,-256],[0,-272],[-1,-234],[0,-105],[0,-159],[0,-23],[0,-89],[0,-10],[0,-64],[0,-98],[0,-3],[0,-106],[0,-122],[-1,-256],[1,-224],[0,-58],[-1,-904],[0,-101],[0,-37],[0,-173],[0,-56],[0,-67],[0,-49],[0,-112],[0,-102],[0,-93],[0,-105],[0,-42],[-1,-57],[0,-95],[0,-134],[0,-106],[0,-117],[0,-112],[0,-58],[-1,-91],[0,-118],[0,-70],[0,-33],[0,-198],[-1,-193],[0,-86],[0,-20],[0,-76],[0,-24],[0,-30],[0,-57],[0,-59],[-1,-62],[0,-46],[0,-48],[0,-62],[0,-126],[0,-55],[0,-102],[-1,-116],[0,-84],[0,-56],[0,-53],[-1,-50],[0,-187],[-1,-83],[0,-55],[-2,-485],[3,-231],[-1,-79],[-1,-173],[0,-306],[-2,-177],[1,-270],[-2,-213],[0,-204],[-1,-280],[-1,-340],[2,-142],[-4,-496],[0,-117],[-1,-359],[0,-134],[-1,-197],[0,-41],[0,-41],[0,-68],[-1,-76],[0,-42],[-1,-309],[0,-57]],[[24593,16011],[-24,0],[-205,-1],[-14,0],[-24,-1],[-19,8],[-16,1],[-20,-1],[-21,-1],[-15,-1],[-24,-1],[-5,0],[-12,-1],[-5,0],[-54,-2],[-28,0],[-115,0],[-17,0],[-38,-1],[-73,-1],[-258,-2],[-24,-1],[-5,0],[-113,-1],[-88,-1],[-23,0],[-215,-1],[-91,1],[-13,0],[-138,-6],[-3,0],[-37,0],[-29,-1],[-22,0],[-40,0],[-42,-1],[-41,-1],[-28,0],[-17,0],[-25,0],[-30,-1],[-55,1],[-38,-1],[-21,0],[-38,-1],[-25,1],[-27,0],[-18,0],[-80,5],[-190,-1],[-7,0],[-60,0],[-95,0],[-233,-1],[-17,-5],[-25,0],[-29,0],[-29,1],[-28,0],[-10,0],[-32,1],[-30,0],[-60,1],[-41,0],[-91,0],[-73,0],[-40,0],[-36,0],[-33,0],[-13,1],[-15,0],[-25,0],[-59,0],[-50,0],[-22,0],[-41,0],[-34,0],[-36,1],[-51,0],[-26,0],[-30,0],[-17,0],[-20,1],[-14,-1],[-19,1],[-15,0],[-14,0],[-25,0],[-16,0],[-26,0],[-43,1],[-39,0],[-13,0],[-38,-1],[-43,0],[-30,1],[-132,0],[-57,1],[-66,-1],[-20,0],[-30,0],[-72,0],[-16,0],[-61,1],[-49,0],[-28,0],[-91,0],[-109,-1],[-31,0],[-85,-1],[-18,1],[-32,2],[-1,0],[-90,-1],[-64,0],[-42,0],[-15,0],[-131,0],[-23,0],[-41,0],[-50,0],[-131,0],[-74,0],[-42,-1]],[[18746,15999],[0,61],[0,160],[0,40],[0,67],[1,68],[0,87],[0,63],[0,142],[0,67],[0,81],[0,38],[0,106],[0,81],[0,43],[0,61],[1,41],[-1,56],[1,53],[0,40],[0,53],[0,40],[1,484],[0,72],[0,44],[0,25],[0,45],[0,28],[0,14],[1,43],[-1,44],[1,44],[-1,38],[1,41],[-1,65],[0,50],[1,411],[0,15],[0,161],[0,330],[0,44],[0,54],[0,34],[0,84],[0,4],[-1,80],[1,43],[0,51],[0,44],[1,42],[0,44],[0,44],[0,57],[0,56],[-1,224],[0,55],[0,63],[0,64],[0,60],[0,48],[0,73],[0,60],[0,96],[0,95],[0,47],[-1,42],[1,45],[-1,179],[0,48],[0,47],[0,49],[1,45],[-1,51],[1,64],[0,34],[0,45],[0,46],[0,47],[0,43],[0,49],[0,50],[0,45],[0,46],[1,107],[0,50],[0,107],[0,65],[0,94],[0,52],[0,53],[-1,51],[0,61],[0,52],[0,51],[0,53],[0,40],[0,49],[0,34],[0,36],[0,47],[0,48],[0,63],[0,68],[1,71],[0,40],[1,66],[-1,42],[0,125],[0,38],[0,157],[0,42],[0,43],[0,121],[0,44],[0,122],[0,182],[0,43],[0,82],[0,39],[0,63],[0,196],[0,41]],[[33392,24634],[-1,-102],[0,-53],[21,-3331],[1,-162],[1,-252],[0,-35],[2,-270],[0,-114],[1,-65],[0,-129],[1,-178],[1,-125],[0,-117],[0,-5],[2,-286],[1,-146],[0,-6],[-3,-41],[3,-40],[0,-18],[0,-16],[1,-89],[0,-6],[0,-78],[1,-60],[0,-138],[1,-81],[0,-89],[1,-102],[0,-94],[1,-193],[2,-221],[0,-91],[0,-88],[1,-88],[0,-197],[1,-88],[0,-96],[0,-108],[1,-90],[0,-44],[0,-40],[0,-74],[2,-153],[0,-74],[0,-39],[0,-80],[4,-812],[0,-68]],[[33438,15762],[-101,-2],[-272,-4],[-113,0],[-120,0],[-23,2],[-96,-1],[-60,-1],[-23,-1],[-15,0],[-25,-1],[-14,0],[-16,-1],[-28,-1],[-68,0],[-2,0],[-15,-1],[-71,-1],[-62,-1],[-15,0],[-50,-2],[-30,0],[-45,-1],[-3,0],[-19,0],[-38,0],[-65,-2],[-73,-2],[-13,2],[-44,0],[-187,0],[-44,0],[-81,-4],[-119,4],[-101,3],[-23,1],[-46,-2],[-52,0],[-18,1],[-14,0],[-48,0],[-64,0],[-19,1],[-39,0],[-16,0],[-49,0],[-82,1],[-22,0],[-31,0],[-24,0],[-58,1],[-26,1],[-18,0],[-8,0],[-7,0],[-25,0],[-42,1],[-36,-1],[-90,1],[-18,0],[-114,8],[-56,3],[-137,8],[-136,8],[-191,11],[-26,1],[-69,4],[-31,2],[-51,3],[-16,1],[-33,3],[-26,1],[-21,1],[-27,3],[-31,2],[-47,3],[-25,-2],[-45,3],[-17,4],[-18,1],[-67,4],[-21,1],[-10,1],[-11,0],[-20,2],[-68,4],[-16,0],[-17,2],[-28,2],[-17,0],[-38,2],[-35,2],[-23,2],[-33,1],[-39,1],[-208,15],[-49,3],[-15,0],[-44,3],[-48,2],[-16,1],[-36,2],[-37,2],[-87,3],[-112,8],[-17,0],[-26,2],[-28,4],[-19,1],[-24,2],[-59,4],[-62,4],[-17,1],[-18,1],[-15,1],[-31,2],[-20,2],[-16,0],[-18,2],[-24,1],[-143,9],[-50,-1],[-193,13],[-22,1],[-25,1],[-11,0],[-39,2],[-42,2],[-38,2],[-28,2],[-25,1],[-15,1],[-2,0],[-123,6],[-31,1],[-42,2],[-46,2],[-65,3],[-20,1],[-160,7],[-78,4],[-55,3],[-43,2],[-36,2],[-32,1],[-101,4],[-144,7],[-33,2],[-36,1],[-43,2],[-20,1],[-64,4],[-20,0],[-26,1]],[[26055,15999],[-17,1],[-17,0],[-198,3],[-18,-1],[-17,0],[-47,1],[-22,0],[-29,0],[-81,0],[-32,1],[-19,0],[-74,0],[-1,0],[-49,1],[-31,0],[-30,5],[-9,-1],[-36,-4],[-59,1],[-17,0],[-19,0],[-147,1],[-14,0],[-17,0],[-29,0],[-48,1],[-19,0],[-1,0],[-26,0],[-13,0],[-86,1],[-189,2],[-51,0]],[[65632,16023],[-34,-1],[-65,0],[-21,0],[-35,-1],[-22,0],[-18,0],[-20,0],[-30,0],[-13,0],[-17,0],[-46,-1],[-121,3],[-47,1],[-89,1],[-79,1],[-77,2],[-101,-3],[-24,-1],[-14,0],[-9,-1],[-17,1],[-17,1],[-64,-1],[-38,0],[-1,0],[-20,0],[-15,1],[-23,0],[-34,0],[-32,-1],[-29,1],[-17,0],[-19,-1],[-19,0],[-15,0],[-24,0],[-1,0],[-18,0],[-16,0],[-107,-3],[-4,0],[-14,1],[-14,0],[-2,1],[-15,0],[-38,2],[-14,0],[-53,2],[-34,1],[-47,3],[-28,1],[-14,0],[-31,2],[-78,3],[-39,2],[-19,1],[-28,1],[-15,1],[-1,0],[-19,1],[-21,1],[-12,0],[-27,1],[-15,1],[-35,2],[-3,0],[-112,5],[-4,0],[-25,1],[-62,2],[-20,1],[-20,1],[-9,1],[-50,1],[-37,2],[-35,1],[-244,9],[-102,3],[-95,4],[-25,0],[-24,1],[-18,0],[-15,0],[-17,-1],[-14,0],[-7,0],[-50,-3],[-17,0],[-29,-2],[-29,-1],[-45,-2],[-14,-1],[-64,-3],[-49,-3],[-25,-1],[-13,0],[-1,0],[-78,-3],[-19,-1],[-21,0],[-39,-2],[-53,-2],[-23,0],[-34,-2],[-37,-1],[-17,-1],[-43,-1],[-38,-2],[-44,-2],[-21,0],[-59,-3],[-14,0],[-34,-2],[-22,-1],[-36,-1],[-53,-2],[-23,-1],[-20,-1],[-51,-2],[-29,-1],[-14,0],[-43,0],[-39,-1],[-26,0],[-17,0],[-17,0],[-36,-1],[-39,-1],[-14,1],[-85,-13],[-29,-1],[-130,14],[-15,-1],[-34,-1],[-18,0],[-51,-2],[-66,-2],[-18,-1],[-26,0],[-25,-1],[-26,0],[-20,0],[-35,0],[-34,0],[-21,-1],[-31,0],[-21,0],[-24,0],[-13,-3],[-4,1],[-13,2],[-37,-1],[-19,0],[-14,0],[-28,-1],[-33,-1],[-29,0],[-23,-1],[-14,-1],[-44,-1],[-23,0],[-32,-1],[-36,0],[-25,1],[-58,-1],[-14,0],[-15,0],[-26,0],[-16,0],[-15,0],[-16,-1],[-16,0],[-21,0],[-39,-1],[-60,-1],[-20,0],[-14,0],[-23,-1],[-31,-1],[-16,0],[-25,0],[-44,0],[-42,-1],[-33,0],[-35,-1],[-32,0],[-14,0],[-27,-1],[-18,0],[-83,-2],[-17,0],[-86,0],[-20,0],[-27,-1],[-13,-1],[-19,0],[-58,-1],[-16,0],[-20,0],[-84,-1],[-42,0],[-33,-1],[-39,0],[-34,-1],[-28,0],[-46,-1],[-24,0],[-44,-1],[-50,0],[-22,-1],[-19,0],[-22,0],[-3,0],[-12,0],[-70,-2],[-31,-1],[-40,-1],[-37,0],[-137,-3],[-24,0],[-20,-1],[-17,0],[-19,0],[-165,-1],[-24,-1],[-23,0],[-48,0],[-36,0],[-53,0],[-18,0],[-19,0],[-18,0],[-19,0],[-19,0],[-20,0],[-22,0],[-21,-1],[-31,0],[-89,0],[-36,0],[-60,-1],[-19,0],[-38,-1],[-37,0],[-16,0],[-24,0],[-30,-1],[-19,0],[-43,0],[-20,0],[-16,0],[-20,-1],[-15,1],[-30,-1],[-20,0],[-79,0],[-66,0],[-48,-1],[-15,0],[-39,-1],[-30,0],[-18,0],[-29,-1]],[[56866,15977],[0,43],[0,100],[0,334],[0,213],[1,35],[-1,133],[0,36],[0,46],[0,1],[0,40],[0,44],[0,281],[-1,62],[0,64],[0,49],[0,127],[0,328],[0,62],[0,229],[0,160],[0,41],[-1,135],[0,112],[0,128],[0,54],[0,41],[0,35],[0,73],[0,97],[-1,155],[0,63],[0,47],[-3,73],[0,53],[-1,215],[0,23],[0,65],[-1,218],[0,14],[2,292],[0,51],[0,96],[-1,161],[0,96],[0,60],[0,37],[-1,104],[0,39],[0,43],[0,39],[-1,196],[0,90],[-1,251],[0,60],[0,37],[0,44],[8,103],[5,51],[3,34],[4,34],[2,50],[-1,61],[-1,96],[0,59],[-5,234],[0,8],[2,238],[-1,72],[-1,70],[0,36],[0,50],[-1,69],[0,50],[-1,44],[0,49],[0,40],[0,38],[0,37],[-1,47],[0,45],[-1,83],[0,50],[0,49],[-1,80],[0,42],[0,59],[-1,117],[0,46],[0,91],[-1,34],[0,34],[-1,109],[-1,44],[0,14],[1,431]],[[48060,24561],[0,-66],[0,-48],[0,-83],[0,-41],[0,-44],[0,-46],[0,-83],[0,-28],[0,-21],[0,-135],[0,-46],[0,-55],[0,-45],[0,-36],[0,-70],[0,-75],[0,-41],[0,-44],[0,-46],[0,-102],[0,-102],[0,-72],[0,-33],[0,-90],[0,-48],[1,-53],[0,-53],[0,-45],[0,-72],[0,-209],[0,-62],[0,-48],[-1,-107],[0,-73],[0,-47],[0,-72],[0,-40],[0,-37],[0,-87],[0,-51],[-1,-102],[1,-61],[-1,-88],[0,-31],[0,-47],[0,-11],[0,-44],[0,-52],[0,-44],[-1,-293],[0,-56],[0,-51],[0,-59],[0,-81],[-1,-86],[0,-101],[0,-57],[1,-35],[-1,-49],[1,-189],[0,-46],[0,-58],[0,-39],[0,-92],[0,-139],[0,-67],[1,-119],[0,-38],[1,-375],[0,-49],[0,-207],[1,-350],[-1,-130],[0,-112],[0,-11],[0,-189],[0,-39],[0,-100],[0,-72],[1,-218],[0,-140],[0,-81],[0,-122],[0,-71],[0,-149],[0,-136],[0,-14],[0,-28],[0,-37],[0,-67],[0,-227],[0,-41],[0,-70],[1,-255],[0,-223],[0,-177],[0,-52],[0,-129],[0,-120],[0,-7]],[[48062,15872],[-22,0],[-88,-1],[-19,0],[-20,0],[-19,-1],[-77,0],[-59,-1],[-23,0],[-20,0],[-16,0],[-54,0],[-44,-1],[-29,0],[-24,0],[-23,0],[-26,0],[-23,0],[-20,0],[-21,0],[-18,0],[-54,-1],[-27,0],[-26,0],[-26,-1],[-24,1],[-146,-2],[-31,0],[-15,0],[-21,0],[-28,0],[-38,0],[-21,-1],[-34,0],[-14,0],[-19,-1],[-14,0],[-15,0],[-22,0],[-32,0],[-21,0],[-19,-1],[-19,0],[-31,0],[-25,0],[-4,0],[-61,-1],[-24,0],[-20,0],[-28,-1],[-49,0],[-23,0],[-22,0],[-22,-1],[-20,0],[-72,0],[-88,-1],[-15,1],[-2,0],[-140,-1],[-85,-1],[-55,0],[-16,0],[-35,0],[-24,-1],[-26,0],[-21,0],[-18,0],[-22,0],[-21,0],[-20,0],[-82,-1],[-64,-1],[-33,1],[-66,0],[-31,1],[-53,1],[-62,0],[-25,1],[-42,0],[-23,1],[-44,1],[-21,0],[-22,1],[-52,1],[-17,0],[-2,0],[-49,5],[-52,2],[-113,2],[-154,2],[-48,2],[-26,-13],[-18,-1],[-28,0],[-35,-1],[-48,0],[-22,1],[-31,0],[-19,-1],[-17,0],[-31,-1],[-23,0],[-23,-1],[-25,0],[-25,-1],[-102,0],[-44,0],[-15,0],[-27,-1],[-59,-2],[-32,0],[-50,-1],[-78,0],[-24,0],[-59,1],[-35,-1],[-28,0],[-99,0],[-14,0],[-1,0],[-157,0],[-38,-1],[-57,0],[-101,3],[-143,0],[-45,0],[-15,0],[-186,-1],[-112,0],[-133,0],[-27,-2],[-51,3],[-45,-12],[-57,2],[-67,0],[-114,1],[-39,0],[-28,0],[-36,0],[-27,0],[-96,1],[-188,1],[-140,0],[-47,1],[-144,0],[-112,1],[-48,0],[-24,0],[-37,1],[-17,0],[-23,0],[-251,1],[-93,0],[-46,1],[-41,4],[-83,-3],[-57,-1],[-24,-1]],[[40720,15852],[0,77],[-2,408],[-2,466],[0,11],[4,53],[-3,299],[-6,608],[-3,65],[-3,415],[0,44],[-1,67],[-1,119],[-1,55],[0,49],[-1,85],[0,50],[0,72],[0,39],[0,41],[0,35],[0,64],[-1,87],[0,91],[0,51],[0,115],[0,87],[0,87],[0,76],[0,117],[0,40],[0,70],[0,40],[-1,138],[0,57],[0,42],[0,88],[-5,460],[0,37],[-1,52],[-1,123],[-1,59],[0,36],[-1,50],[0,46],[-1,108],[-1,61],[-1,60],[0,63],[-1,44],[-1,70],[0,47],[-2,124],[1,62],[0,65],[1,86],[0,48],[0,35],[1,73],[1,67],[0,60],[1,64],[1,65],[1,128],[0,67],[0,59],[1,64],[0,75],[0,56],[1,35],[0,47],[1,60],[0,66],[1,33],[0,40],[1,101],[0,52],[1,108],[1,124],[0,53],[1,54],[0,59],[1,58],[0,55],[1,105],[1,192],[1,102],[0,35],[6,293],[0,225]],[[7030,24682],[0,-153],[0,-45],[0,-35],[2,-97],[-2,-148],[0,-467],[0,-32],[4,-501],[0,-127],[0,-4],[0,-79],[3,-126],[0,-90],[0,-145],[0,-111],[1,-146],[0,-94],[1,-70],[0,-43],[0,-56],[1,-82],[-1,-39],[1,-74],[-1,-47],[1,-47],[0,-103],[0,-47],[1,-39],[0,-76],[-1,-51],[0,-81],[0,-85],[-1,-356],[-1,-159],[2,-243],[0,-33],[0,-150],[0,-59],[0,-93],[0,-78],[-1,-65],[1,-98],[0,-60],[-1,-58],[1,-219],[0,-50],[0,-60],[0,-93],[0,-47],[0,-36],[0,-243],[0,-238],[0,-8],[0,-183],[1,-54],[0,-62],[0,-103],[0,-55],[0,-110],[0,-53],[1,-50],[-1,-48],[1,-47],[0,-98],[0,-47],[0,-48],[1,-480],[0,-64],[0,-59],[0,-50],[1,-65],[0,-37],[0,-48],[0,-54],[0,-42],[0,-54],[0,-49],[0,-70],[0,-40],[0,-70],[1,-42],[-1,-110],[0,-52],[1,-34],[2,-105],[0,-16],[-1,-380],[0,-280],[0,-203],[1,-85],[-1,-147],[1,-46],[-1,-35],[1,-42],[0,-44],[0,-59],[-2,-279],[0,-8],[0,-128],[-1,-45],[0,-44],[3,-219],[-1,-51],[1,-97],[0,-6],[0,-67],[-1,-58],[0,-9],[1,-39],[-1,-44],[1,-129],[0,-58],[0,-39],[0,-56],[0,-38],[0,-39],[1,-107],[-1,-90],[0,-46],[0,-55],[0,-41],[0,-155]],[[7047,13129],[-27,1],[-24,-1],[-52,0],[-20,1],[-19,-1],[-28,0],[-16,0],[-15,0],[-21,1],[-20,1],[-137,0],[-34,1]],[[6634,13132],[-43,1],[-33,1],[-25,1],[-23,-6],[-57,1],[-45,0],[-32,1],[-107,0],[-58,0],[-54,0],[-60,0],[-26,0],[-29,1],[-15,-1],[-50,0],[-40,0],[-28,1],[-13,0],[-69,0],[-37,0],[-54,0],[-48,0],[-24,0],[-55,1],[-24,0],[-42,-1],[-25,0],[-53,1],[-24,0],[-19,0],[-36,0],[-25,0],[-21,0],[-17,0],[-29,1],[-41,0],[-34,0],[-28,0],[-16,0],[-38,0],[-33,0],[-39,1],[-40,0],[-50,0],[-39,1],[-52,0],[-32,0],[-26,0],[-19,0],[-22,0],[-31,0],[-25,0],[-27,1],[-14,0],[-105,1],[-32,-1],[-81,1],[-17,0],[-24,0],[-44,0],[-20,1],[-57,0],[-45,0],[-43,1],[-44,0],[-38,0],[-16,0],[-70,1],[-23,0],[-104,0],[-27,0],[-41,1],[-35,0],[-17,0],[-46,1],[-28,-1],[-38,0],[-31,1],[-29,0],[-29,0],[-31,0],[-61,0],[-29,0],[-44,0],[-15,1],[-34,0],[-36,0],[-31,0],[-33,0],[-53,1],[-31,0],[-34,0],[-26,0],[-19,0],[-127,1],[-16,0],[-45,-1],[-27,1],[-57,-1],[-57,1],[-19,0],[-24,0],[-95,1],[-145,0],[-65,1],[-24,0],[-48,0],[-39,0],[-31,0],[-38,0],[-94,1],[-27,0],[-34,0],[-52,1],[-17,0],[-36,0],[-25,0],[-25,0],[-20,-1],[-15,0],[-77,2],[-65,0],[-57,0],[-42,0],[-36,0],[-82,1],[-20,0],[-16,0],[-47,1],[-98,0],[-55,1],[-28,0],[-50,0],[-35,1],[-95,0],[-106,1],[-64,0],[-43,1],[-53,0],[-19,0],[-22,0],[-17,1],[-70,0],[-22,-1],[-13,0],[-56,0],[-26,1],[-22,-1],[-125,1],[-103,1],[-14,0],[-19,0],[-193,-4]],[[135,13155],[0,596],[1,2069],[0,25],[0,674],[0,709],[0,2217],[0,2181],[0,168],[0,35],[-8,2927]],[[12891,24682],[0,-465],[-1,-263],[0,-52],[0,-84],[0,-50],[-2,-57],[-1,-112],[0,-57],[0,-71],[-1,-48],[0,-49],[0,-44],[0,-63],[0,-34],[-1,-89],[0,-48],[0,-58],[0,-39],[-1,-124],[0,-124],[-1,-479],[-2,-239],[0,-195],[0,-54],[0,-67],[-1,-171],[0,-244],[-1,-316],[1,-161],[1,-487],[1,-482],[1,-239],[-1,-61],[1,-70],[0,-118],[0,-36],[0,-78],[0,-40],[0,-75],[0,-34],[0,-64],[0,-53],[0,-95],[0,-2],[0,-46],[0,-67],[1,-51],[0,-94],[0,-141],[0,-50],[0,-47],[0,-50],[1,-260],[0,-62],[0,-62],[1,-41],[0,-137],[0,-90],[1,-103],[0,-54],[0,-35],[0,-51],[0,-73],[1,-167],[0,-63],[1,-63],[0,-58],[0,-58],[0,-48],[0,-35],[0,-34],[2,-293],[0,-16],[0,-55],[0,-52],[0,-13],[1,-169],[2,-277],[0,-144],[0,-34],[0,-55],[0,-72],[0,-35],[0,-40],[-1,-73],[1,-40],[-1,-149],[0,-34],[0,-244],[1,-40],[0,-63],[-1,-76],[1,-52],[-1,-50],[1,-37],[0,-108],[-1,-49],[-8,-28],[8,-432],[0,-1],[-1,-282],[0,-228],[0,-1],[-1,-360],[0,-143]],[[12891,13106],[-49,1],[-125,5],[-26,-1],[-65,1],[-17,1],[-13,0],[-19,2],[-14,-4],[-3,-1],[-14,-1],[-15,0],[-22,0],[-27,0],[-22,0],[-30,1],[-35,0],[-54,1],[-29,0],[-18,0],[-14,0],[-14,0],[-16,0],[-27,1],[-18,0],[-28,1],[-22,2],[-16,1],[-22,-2],[-16,-2],[-180,-1],[-17,0],[-22,0],[-37,1],[-23,-1],[-23,0],[-46,0],[-27,0],[-16,-1],[-35,1],[-79,-5],[-95,3],[-27,1],[-235,3],[-37,0],[-38,0],[-36,0],[-29,0],[-32,0],[-27,0],[-50,1],[-49,0],[-36,0],[-57,0],[-25,0],[-29,1],[-40,0],[-24,0],[-27,0],[-80,0],[-42,1],[-71,0],[-26,0],[-23,0],[-19,0],[-58,1],[-49,0],[-44,0],[-18,0],[-32,0],[-26,0],[-127,1],[-59,0],[-26,0],[-27,0],[-45,1],[-20,0],[-15,-1],[-43,1],[-34,0],[-34,0],[-57,0],[-29,0],[-46,0],[-50,1],[-60,1],[-6,0],[-115,0],[-40,1],[-31,-1],[-56,-2],[-29,-2],[-88,-4],[-46,-2],[-50,2],[-20,0],[-450,27],[-1,0],[-63,-11],[-14,0],[-24,13],[-9,-29],[-18,2],[-17,5],[-24,2],[-19,-4],[-14,6],[-22,2],[-22,1],[-38,-1],[-51,0],[-46,-1],[-14,0],[-13,-1],[-57,0],[-61,1],[-39,0],[-29,0],[-24,1],[-30,0],[-47,0],[-19,0],[-66,0],[-27,0],[-26,0],[-15,0],[-32,0],[-29,1],[-28,-1],[-31,1],[-44,-1],[-19,0],[-44,1],[-26,0],[-29,0],[-21,0],[-51,0],[-16,0],[-36,0],[-34,0],[-30,0],[-26,1],[-37,-1],[-41,0],[-33,1],[-37,0],[-28,0],[-14,0],[-30,1]],[[18746,15999],[0,-93],[0,-68],[0,-59],[0,-43],[0,-34],[0,-74],[0,-66],[0,-52],[0,-111],[0,-109],[0,-44],[0,-59],[0,-69],[0,-84],[0,-65],[0,-49],[0,-73],[0,-88],[0,-174],[0,-34],[0,-35],[0,-127],[0,-80],[0,-60],[0,-71],[0,-67],[0,-43],[1,-488],[-2,-348],[0,-129]],[[18745,13103],[-33,0],[-79,1],[-45,-1],[-56,1],[-28,-1],[-29,0],[-56,1],[-56,-1],[-66,1],[-13,0],[-25,-1],[-19,0],[-45,2],[-30,-1],[-27,0],[-121,3],[-222,-1],[-22,-3],[-103,1],[-20,0],[-106,-2],[-75,1],[-16,0],[-38,2],[-18,0],[-52,1],[-45,0],[-18,1],[-23,-3],[-16,-1],[-14,-11],[-17,-5],[-27,8],[-16,11],[-23,0],[-37,-1],[-15,1],[-17,1],[-20,-1],[-21,0],[-47,0],[-54,-1],[-26,1],[-54,0],[-41,0],[-19,0],[-83,0],[-23,0],[-15,-1],[-49,0],[-67,1],[-116,0],[-63,0],[-62,0],[-21,0],[-47,0],[-41,-1],[-38,1],[-82,0],[-24,0],[-43,0],[-78,0],[-74,1],[-36,0],[-1,0],[-71,2],[-68,3],[-93,-2],[-23,-1],[-105,1],[-22,-4],[-53,0],[-39,1],[-38,1],[-23,0],[-167,0],[-26,-1],[-28,-1],[-33,1],[-34,0],[-26,0],[-24,0],[-43,1],[-48,0],[-22,0],[-26,1],[-23,0],[-48,-1],[-25,1],[-85,-1],[-47,1],[-56,0],[-42,1],[-102,-2],[-15,1],[-19,0],[-66,1],[-38,0],[-69,1],[-41,-1],[-30,0],[-14,0],[-30,0],[-35,1],[-34,-1],[-26,0],[-47,-1],[-73,1],[-29,0],[-32,0],[-20,0],[-14,0],[-37,0],[-35,-1],[-26,0],[-37,-1],[-117,0],[-1,0],[-111,0],[-18,0],[-26,1],[-18,0],[-15,0],[-19,-1],[-29,1],[-21,-1],[-23,0],[-45,0]],[[13182,13108],[-42,0],[-28,-1],[-17,0],[-32,0],[-23,-3],[-104,2],[-29,0],[-16,0]],[[40720,15852],[1,-180],[5,-885],[0,-71],[2,-59],[3,-98],[1,-37],[0,-58],[0,-1],[1,-337],[0,-54],[1,-304],[0,-298],[1,-198],[0,-78],[0,-116],[0,-51],[0,-35]],[[40735,12992],[-50,-1],[-126,-1],[-211,-2],[-76,0],[-35,0],[-190,-2],[-128,-1],[-34,0],[-163,-1],[-101,-2],[-99,-1],[-8,0],[-37,0],[-14,0],[-15,-1],[-46,0],[-26,-2],[-22,-1],[-18,6],[-17,1],[-19,-10],[-37,-1],[-21,0],[-27,0],[-74,0],[-28,-2],[-19,1],[-22,0],[-26,-1],[-5,0],[-11,-1],[-17,1],[-44,0],[-41,-1],[-43,0],[-34,-1],[-52,-1],[-37,0],[-23,-1],[-20,0],[-88,-2],[-79,-1],[-62,-2],[-45,-1],[-68,-1],[-61,0],[-15,0],[-35,0],[-33,0],[-42,-1],[-18,0],[-27,0],[-60,-1],[-25,0],[-24,0],[-24,0],[-36,-1],[-19,0],[-32,0],[-25,0],[-50,-1],[-33,0],[-41,-1],[-38,-1],[-40,0],[-17,-1],[-67,-3],[-25,0],[-16,0],[-35,-1],[-22,0],[-18,0],[-26,-1],[-35,0],[-17,-1],[-21,-1],[-19,0],[-19,-1],[-30,0],[-29,0],[-20,-1],[-51,-1],[-14,-1],[-21,0],[-23,-1],[-25,0],[-15,-1],[-24,-1],[-21,-1],[-21,0],[-20,-1],[-13,0],[-9,0],[-27,0],[-18,0],[-38,-2],[-23,-1],[-17,0],[-20,-1],[-36,-1],[-21,0],[-27,0],[-18,-1],[-25,0],[-18,0],[-36,-2],[-19,0],[-26,0],[-24,-1],[-14,0],[-31,0],[-22,0],[-19,0],[-2,0],[-21,-1],[-15,0],[-31,0],[-117,-2],[-25,0],[-24,0],[-23,-1],[-19,0],[-75,-1],[-26,0],[-43,-1],[-2,0],[-22,0],[-21,-1],[-26,0],[-26,0],[-25,-1],[-27,0],[-23,0],[-23,-1],[-25,0],[-31,-1],[-38,0],[-32,-1],[-24,0],[-39,-1],[-37,-1],[-25,0],[-48,0],[-38,-1],[-38,0],[-19,0],[-51,-2],[-32,0],[-33,-1],[-34,-1],[-26,-1],[-29,0],[-19,-1],[-22,0],[-29,-1],[-34,0],[-14,-1],[-19,0],[-32,0],[-36,-1],[-35,0],[-38,-1],[-27,0],[-35,-2],[-27,0],[-44,0],[-15,0],[-17,-1],[-72,-1],[-20,-1],[-26,0],[-18,-1],[-15,0],[-34,0],[-38,0],[-39,-1],[-17,0],[-55,-1],[-41,0],[-135,-1],[-19,-10],[-39,-1],[-19,1],[-117,4],[-139,0],[-24,-1],[-18,0],[-31,0],[-75,0],[-1,0],[-99,0],[-187,-1]],[[33611,12887],[-82,0],[-86,0],[0,120],[3,72],[-3,60],[2,43],[1,53],[0,2],[-1,126],[1,355],[-1,218],[-1,192],[-1,145],[-1,37],[0,6],[0,69],[-1,128],[0,42],[0,36],[0,62],[0,83],[-1,148],[-1,161],[0,154],[0,44],[0,45],[0,60],[0,37],[0,35],[-1,72],[0,40],[0,35],[0,38],[0,36],[0,46],[0,75]],[[56866,15977],[0,-44],[0,-44],[1,-159],[0,-39],[0,-174],[0,-32],[0,-2],[1,-42],[-1,-63],[1,-61],[0,-225],[1,-59],[0,-36],[-1,-30],[0,-9],[0,-56],[1,-107],[0,-36],[0,-39],[0,-49],[0,-48],[1,-73],[0,-39],[0,-125],[0,-76],[0,-42],[0,-37],[0,-127],[0,-34],[1,-43],[-1,-37],[1,-109],[0,-59],[0,-76],[1,-99],[0,-122],[0,-141],[1,-156],[0,-48],[0,-121]],[[56873,13059],[-16,0],[-27,-1],[-30,0],[-27,0],[-20,-1],[-19,0],[-40,0],[-17,0],[-16,-1],[-19,0],[-14,-1],[-20,1],[-33,-1],[-49,-1],[-29,0],[-25,0],[-23,-1],[-31,0],[-34,-1],[-22,0],[-17,-1],[-16,0],[-62,-2],[-95,-1],[-18,-1],[-95,-1],[-18,0],[-25,-1],[-37,0],[-16,0],[-41,-2],[-14,0],[-2,0],[-65,-1],[-32,0],[-21,-2],[-96,-3],[-92,-7],[-42,-3],[-111,9],[-40,-1],[-123,-1],[-17,-2],[-48,0],[-13,0],[-28,0],[-19,0],[-34,0],[-42,0],[-43,-1],[-76,0],[-39,-1],[-35,0],[-81,0],[-20,0],[-28,0],[-84,-1],[-26,0],[-25,0],[-27,1],[-34,0],[-21,0],[-67,0],[-14,-1],[-16,-1],[-16,-1],[-28,0],[-41,0],[-74,-1],[-32,0],[-6,0],[-25,0],[-35,0],[-19,0],[-31,0],[-28,0],[-43,0],[-16,-1],[-97,-1],[-35,-1],[-48,0],[-28,-1],[-22,-1],[-14,0],[-15,-1],[-42,0],[-29,-2],[-17,0],[-21,0],[-15,-1],[-22,0],[-16,-1],[-63,-1],[-62,-1],[-43,-2],[-19,0],[-48,-1],[-26,-1],[-36,-1],[-34,-1],[-2,0],[-13,0],[-24,-1],[-20,0],[-15,-1],[-16,0],[-15,0],[-13,0],[-25,-1],[-15,0],[-51,-1],[-62,-1],[-21,-1],[-27,0],[-15,-1],[-46,0],[-32,-1],[-34,0],[-72,-2],[-61,-1],[-20,0],[-1,0],[-30,-1],[-58,-1],[-11,0],[-19,0],[-46,-1],[-59,-1],[-36,-1],[-149,-2],[-32,1],[-46,0],[-32,1],[-67,-1],[-45,0],[-24,1],[-48,0],[-38,1],[-34,0],[-29,0],[-13,0],[-49,1],[-22,0],[-38,0],[-22,-1],[-14,1],[-14,0],[-29,1],[-28,-1],[-15,0],[-36,0],[-30,0],[-31,-1],[-55,-1],[-17,0],[-16,2],[-60,-3],[-19,1],[-15,0],[-30,0],[-15,0],[-19,0],[-16,0],[-48,-1],[-70,0],[-24,0],[-18,0],[-23,0],[-42,-1],[-20,1],[-16,-1],[-31,0],[-105,0],[-39,-1],[-20,0],[-15,0],[-31,0],[-26,-1],[-38,1],[-25,0],[-32,-1],[-22,0],[-22,0],[-19,0],[-22,0],[-27,0],[-16,0],[-87,1],[-14,-1],[-20,1],[-24,-1],[-26,0],[-24,-1],[-17,1],[-16,1],[-21,-2],[-21,1],[-190,-1],[-17,1],[-34,-1],[-158,1],[-79,0],[-4,0],[-53,-1],[-1,0],[-80,-1],[-57,-1]],[[49601,12985],[-42,-1],[-28,1],[-68,0],[-39,0],[-68,0],[-97,-2],[-158,0],[-35,-2],[-119,3],[-46,0],[-95,-2],[-66,4],[-167,0],[-4,0],[-47,0],[-104,0],[-162,-1],[-112,0],[-32,0],[-54,1],[1,87],[0,89],[0,17],[0,49],[0,119],[0,60],[0,56],[0,50],[0,101],[0,41],[0,77],[0,75],[0,73],[1,71],[0,138],[0,51],[1,279],[1,491],[0,204],[1,341],[-1,358],[0,59]],[[87443,24564],[0,-46],[0,-93],[-1,-68],[0,-268],[0,-42],[1,-214],[0,-50],[-1,-128],[0,-47],[0,-35],[-1,-183],[0,-44],[-1,-35],[0,-37],[0,-149],[0,-5],[0,-59],[0,-64],[-1,-51],[0,-63],[-1,-86],[0,-159],[0,-159],[0,-183],[0,-142],[1,-53],[0,-127],[0,-34],[0,-14],[0,-68],[-1,-121],[0,-67],[-1,-53],[0,-36],[0,-75],[-1,-44],[0,-42],[-1,-102],[-1,-92],[0,-78],[1,-121],[0,-61],[1,-250],[0,-54],[1,-87],[0,-48],[0,-38],[1,-72],[0,-70],[1,-46],[0,-69],[1,-259],[0,-75],[1,-44],[0,-47],[0,-50],[1,-85],[0,-58],[1,-119],[-1,-44],[2,-183],[3,-357],[1,-79],[0,-48],[0,-50],[-1,-186],[-1,-52],[0,-57],[0,-50],[0,-12],[-1,-88],[3,-113],[-4,-303],[1,-71],[0,-64],[1,-75],[1,-40],[0,-109],[2,-147],[0,-45],[1,-105],[0,-85],[0,-54],[0,-43],[1,-116],[0,-83],[-2,-47],[-1,-193],[0,-90],[-1,-237],[-3,-391],[0,-93],[0,-61],[-1,-53],[0,-68],[0,-47],[0,-57],[0,-97],[-2,-107],[-1,-379],[-2,-240],[1,-43],[0,-94],[0,-56],[1,-53],[0,-37],[1,-111],[0,-89],[-1,-43],[1,-83],[-1,-122],[-1,-128],[0,-61],[-1,-46],[1,-17],[1,-132],[1,-95],[0,-40],[1,-63],[0,-113],[0,-58],[0,-45],[0,-165]],[[87442,12982],[-42,0],[-39,0],[-32,0],[-54,0],[-17,0],[-18,1],[-42,-1],[-75,-1],[-19,0],[-27,0],[-42,0],[-20,0],[-38,0],[-23,0],[-14,0],[-23,1],[-24,0],[-35,-1],[-30,0],[-22,0],[-35,0],[-63,1],[-43,2],[-42,0],[-20,0],[-20,0],[-39,2],[-29,1],[-25,0],[-74,1],[-19,1],[-20,0],[-2,0],[-28,0],[-16,0],[-20,1],[-72,1],[-36,1],[-30,1],[-15,-1],[-25,1],[-14,1],[-31,0],[-39,1],[-28,0],[-27,0],[-25,1],[-41,1],[-23,0],[-20,0],[-14,0],[-14,0],[-20,1],[-32,0],[-37,1],[-26,1],[-20,1],[-28,0],[-14,1],[-33,1],[-78,-1],[-33,0],[-15,1],[-111,3],[-20,0],[-117,2],[-10,0],[-4,0],[-14,0],[-35,2],[-39,0],[-28,0],[-23,1],[-27,1],[-29,0],[-15,0],[-30,1],[-27,1],[-1,0],[-16,1],[-351,7],[-37,0],[-23,0],[-36,1],[-21,1],[-37,0],[-15,0],[-22,0],[-16,1],[-39,1],[-16,0],[-45,0],[-30,1],[-17,0],[-18,1],[-18,0],[-60,1],[-25,0],[-22,1],[-23,0],[-114,1],[-71,0],[-14,1],[-87,1],[-120,7],[-2,0],[-20,-1],[-22,1],[-19,0],[-15,0],[-22,0],[-42,1],[-52,0],[-120,2],[-43,1],[-31,0],[-15,1],[-35,0],[-62,0],[-74,3],[-33,1],[-43,-1],[-20,0],[-20,1],[-64,1],[-18,1],[-29,0],[-15,1],[-27,0],[-81,2],[-14,0],[-33,0],[-58,0],[-40,1],[-11,1],[-6,0],[-16,-2],[-18,-1],[-14,-4],[-17,4],[-15,6],[-45,-1],[-18,0],[-103,6],[-44,2],[-16,-6],[-20,2],[-19,1],[-20,0],[-16,-1],[-18,2],[-50,0],[-49,-1],[-16,-1],[-28,1],[-79,2],[-154,2],[-38,0],[-22,-2],[-15,2],[-74,3],[-88,1]],[[81600,13071],[0,116],[0,37],[0,88],[-1,62],[-1,76],[-1,54],[0,52],[-2,122],[-1,93],[0,41],[-1,148],[-1,67],[-2,42],[-4,35],[0,53],[4,52],[1,52],[1,42],[-2,216],[0,136],[-1,81],[0,142],[-1,57],[0,52],[0,14],[0,20],[-2,225],[0,54],[1,188],[0,221],[2,186],[0,36],[0,217],[0,294],[0,331],[0,63],[-2,67],[2,168],[0,95],[2,223],[2,192],[2,281],[2,292],[2,145],[0,92],[1,110],[0,88],[1,106],[0,66],[0,48],[1,92],[1,33],[1,97],[-1,108],[0,112],[0,8],[1,126],[0,54],[0,77],[0,40],[1,112],[1,189],[0,3],[0,38],[1,342],[1,40]],[[93305,22630],[-1,-90],[0,-44],[0,-165],[1,-77],[-1,-47],[-1,-60],[1,-35],[1,-143],[1,-35],[0,-47],[0,-172],[0,-41],[-1,-158],[0,-101],[0,-77],[0,-160],[0,-61],[1,-51],[0,-60],[0,-123],[0,-81],[0,-106],[0,-43],[0,-67],[0,-33],[0,-79],[0,-33],[0,-108],[0,-119],[2,-167],[0,-55],[0,-66],[0,-55],[0,-92],[-1,-44],[0,-44],[-1,-45],[0,-39],[-1,-111],[0,-50],[-1,-48],[0,-34],[-1,-76],[0,-35],[-1,-60],[-1,-41],[-1,-67],[0,-48],[0,-39],[-1,-47],[1,-52],[-1,-7],[-1,-34],[0,-46],[0,-43],[1,-216],[0,-79],[-1,-182],[0,-41],[1,-74],[0,-231],[0,-133],[0,-81],[0,-158],[0,-223],[0,-29],[0,-41],[1,-71],[0,-59],[0,-94],[0,-48],[-1,-74],[0,-67],[1,-57],[3,-156],[2,-138],[1,-91],[0,-65],[0,-61],[0,-180],[3,-237],[0,-228],[1,-77],[-1,-176],[0,-109],[0,-37],[0,-37],[-1,-71],[1,-38],[0,-34],[-1,-156],[0,-63],[0,-57],[0,-66],[-1,-182],[0,-116],[-2,-141],[0,-246],[0,-8],[0,-35],[0,-38],[0,-17],[0,-86],[0,-14],[0,-61],[0,-35],[0,-23],[0,-81],[-1,-47],[0,-71],[0,-45],[0,-91],[0,-40],[0,-163],[-2,-217]],[[93302,12977],[-23,0],[-35,0],[-17,0],[-14,-3],[-19,4],[-14,0],[-56,0],[-68,1],[-162,5],[-24,0],[-44,3],[-3,0],[-17,4],[-15,2],[-31,-4],[-41,6],[-20,-2],[-23,1],[-35,-1],[-34,1],[-33,0],[-21,0],[-44,0],[-74,1],[-37,-1],[-29,0],[-39,-1],[-87,-1],[-51,0],[-27,0],[-31,0],[-47,1],[-50,-1],[-26,1],[-17,-1],[-22,1],[-16,-1],[-29,1],[-46,0],[-22,-2],[-21,1],[-42,0],[-15,0],[-13,0],[-26,0],[-17,0],[-44,0],[-41,0],[-15,0],[-18,-1],[-15,-1],[-26,0],[-26,0],[-49,-1],[-41,0],[-32,0],[-27,-1],[-19,0],[-19,-1],[-15,0],[-32,0],[-33,0],[-50,-1],[-14,0],[-14,0],[-14,-1],[-37,-1],[-35,0],[-19,0],[-94,0],[-6,0],[-8,1],[-17,0],[-2,0],[-15,-2],[-22,1],[-17,-1],[-14,0],[-17,0],[-16,0],[-25,1],[-24,-1],[-79,2],[-34,1],[-38,1],[-41,0],[-80,-1],[-16,1],[-24,0],[-21,-1],[-40,-1],[-21,0],[-36,0],[-16,0],[-15,-1],[-55,1],[-23,-1],[-63,1],[-23,0],[-16,0],[-15,0],[-48,-1],[-37,0],[-24,1],[-29,1],[-89,-1],[-21,0],[-22,0],[-56,0],[-52,1],[-46,0],[-14,0],[-18,0],[-16,0],[-30,-1],[-28,1],[-20,-1],[-39,1],[-28,-1],[-50,-1],[-18,0],[-27,-1],[-13,0],[-27,0],[-23,1],[-30,0],[-38,0],[-97,-1],[-37,1],[-25,0],[-86,-1],[-30,-1],[-17,0],[-15,-1],[-19,1],[-30,-1],[-19,0],[-31,-1],[-88,1],[-27,-1],[-41,1],[-19,0],[-18,0],[-21,-1],[-27,0],[-26,0],[-20,0],[-33,0],[-32,1],[-14,1],[-2,0],[-17,-1],[-22,0],[-31,0],[-18,-1],[-32,1],[-57,1],[-30,0],[-26,0],[-28,1],[-26,-2],[-26,1],[-17,1],[-36,-2],[-40,0],[-21,1],[-27,0],[-24,0],[-13,1],[-54,-1],[-16,0],[-22,1],[-15,0],[-14,0],[-13,0],[-33,0],[-38,0],[-38,0],[-25,0],[-47,0],[-17,-1],[-21,0],[-8,0],[-6,0],[-13,1],[-14,1],[-3,0],[-16,-1],[-21,0],[-27,0],[-15,0],[-25,0],[-23,-1],[-24,0]],[[87501,12982],[-59,0]],[[99605,22583],[0,-47],[0,-45],[-1,-73],[1,-83],[0,-59],[0,-46],[1,-52],[0,-85],[0,-49],[0,-66],[0,-44],[1,-103],[0,-47],[0,-40],[0,-67],[0,-61],[1,-34],[0,-53],[0,-36],[0,-100],[1,-64],[-1,-49],[0,-49],[0,-61],[0,-27],[-1,-35],[0,-68],[0,-47],[3,-274],[2,-215],[-2,-138],[1,-502],[-1,-156],[1,-164],[0,-79],[2,-75],[1,-56],[-1,-83],[2,-38],[0,-152],[-1,-34],[0,-35],[0,-53],[0,-52],[0,-39],[0,-35],[0,-45],[0,-56],[0,-49],[0,-39],[-1,-70],[0,-42],[1,-77],[1,-134],[0,-50],[0,-44],[0,-42],[0,-77],[0,-83],[1,-98],[1,-117],[0,-28],[2,-182],[-1,-150],[1,-121],[0,-36],[0,-88],[0,-58],[0,-63],[0,-99],[0,-99],[0,-35],[-1,-140],[0,-136],[-1,-138],[0,-47],[-1,-72],[-1,-50],[0,-123],[-1,-54],[0,-72],[0,-106],[0,-40],[0,-3],[0,-25],[0,-24],[1,-51],[-1,-65],[-1,-128],[1,-40],[0,-59],[0,-55],[0,-70],[0,-52],[0,-53],[0,-49],[0,-39],[0,-34],[-2,-46],[0,-38],[0,-40],[0,-66],[0,-33],[0,-39],[0,-80],[1,-40],[0,-105],[0,-48],[-1,-145],[0,-36],[0,-75],[-1,-76],[0,-39],[0,-55],[0,-63],[0,-59],[-1,-37],[0,-108],[0,-4],[0,-81],[0,-43],[-1,-34],[0,-44],[0,-59],[0,-106],[0,-115],[0,-67],[0,-64],[0,-58],[0,-117],[0,-58],[0,-59],[0,-63],[-1,-95],[1,-76],[-1,-56],[0,-37],[0,-60],[0,-72],[0,-49],[0,-59],[0,-78],[0,-74],[0,-34],[0,-188],[-1,-76],[0,-73],[0,-44],[0,-128],[0,-40],[0,-60],[-1,-58],[-1,-80]],[[99605,11469],[-19,-2],[-15,0],[-14,0],[-18,0],[-16,1],[-17,-1],[-86,-1],[-16,0],[-68,0],[-64,-1],[-55,0],[-4,0],[-49,0],[-80,-1],[-20,0],[-33,0],[-24,0],[-23,0],[-16,0],[-41,6],[-14,1],[-14,1],[-17,1],[-15,0],[-14,1],[-2,0],[-46,-1],[-48,0],[-21,0],[-26,0],[-14,0],[-17,0],[-23,0],[-29,0],[-32,0],[-18,-1],[-16,-1],[-27,-1],[-19,1],[-20,1],[-37,4],[-18,-1],[-8,0],[-9,0],[-18,1],[-31,0],[-46,0],[-29,0],[-16,1],[-23,0],[-26,0],[-14,0],[-18,1],[-23,-1],[-32,2],[-33,0],[-41,1],[-17,1],[-24,0],[-30,0],[-20,0],[-18,1],[-17,1],[-34,1],[-31,0],[-34,1],[-23,0],[-15,1],[-14,0],[-23,0],[-21,1],[-42,1],[-31,0],[-22,1],[-30,0],[-28,1],[-28,0],[-27,1],[-21,0],[-16,1],[-47,0],[-28,1],[-54,1],[-162,3],[-66,2],[-53,0],[-40,1],[-30,0],[-16,0],[-15,0],[-25,1],[-14,0],[-16,0],[-3,0],[-28,0],[-14,0],[-28,0],[-19,1],[-35,0],[-35,0],[-46,1],[-28,1],[-20,0],[-20,0],[-20,1],[-29,0],[-41,1],[-18,0],[-50,1],[-18,0],[-106,2],[-15,0],[-21,1],[-22,0],[-80,1],[-86,2],[-33,0],[-58,2],[-33,0],[-13,1],[-19,0],[-21,0],[-34,1],[-26,0],[-31,1],[-35,1],[-14,0],[-2,0],[-26,0],[-54,1],[-25,0],[-29,0],[-57,0],[-52,0],[-25,1],[-54,0],[-1,0],[-17,0],[-23,0],[-34,0],[-34,0],[-12,0],[-17,0],[-27,0],[-72,0],[-105,0],[-40,0],[-99,1],[-26,0],[-53,0],[-4,0],[-88,0],[-167,0],[-36,0],[-114,0],[-65,-1],[-42,0],[-30,1],[-106,-1],[-24,0],[-27,1],[-36,-1],[-37,0],[-36,0],[-35,1],[-28,-1],[-22,0],[-138,0],[-17,0],[-14,0],[-50,0],[-19,0],[-26,-1],[-40,0],[-31,0],[-50,0],[-29,0],[-15,0],[-25,0],[-32,0],[-16,0],[-37,0],[-45,-1]],[[93477,11519],[0,113],[0,303],[0,72],[0,198],[0,83],[0,82],[1,121],[0,107],[1,88],[0,133],[0,36],[0,122],[-16,0],[-14,0],[-87,0],[-31,1],[-29,-1]],[[81600,13071],[-27,0],[-14,0],[4,-385],[-3,-389],[1,-678],[0,-70],[0,-127],[1,-200],[0,-87],[0,-138],[0,-17],[0,-85],[0,-119],[0,-145],[0,-69],[0,-12],[0,-47],[0,-91],[0,-135],[0,-109]],[[81562,10168],[-116,5],[-113,4],[-15,1],[-92,3],[-71,3],[-18,0],[-52,2],[-4,0],[-79,0],[-184,2],[-45,1],[-25,0],[-38,-8],[-22,1],[-50,8],[-46,1],[-189,3],[-55,1],[-29,0],[-65,1],[-46,1],[-65,1],[-39,1],[-115,3],[-21,0],[-108,1],[-48,0],[-83,-1],[-16,1],[-20,1],[-16,0],[-20,1],[-13,0],[-26,0],[-40,1],[-19,4],[-17,2],[-49,-1],[-20,0],[-57,0],[-190,4],[-14,1],[-23,1],[-18,-1],[-17,1],[-14,-2],[-17,4],[-51,1],[-14,0],[-41,0],[-31,-1],[-21,1],[-80,-1],[-17,1],[-65,0],[-13,1],[-14,2],[-31,1],[-64,1],[-97,3],[-2,0],[-348,-5],[-27,0],[-105,-2],[-19,1],[-25,0],[-138,1],[-188,-9],[-8,0],[-139,5],[-15,2],[-27,-2],[-35,0],[-18,-1],[-42,0],[-116,-1],[-23,1],[-29,0],[-52,1],[-33,1],[-2,0],[-175,12],[-25,1],[-28,2],[-15,1],[-58,3],[-21,0],[-50,1],[-14,0],[-48,2],[-23,0],[-30,1],[-26,2],[-28,1],[-57,3],[-34,1],[-15,1],[-32,2],[-38,1],[-23,1],[-21,-1],[-14,0],[-38,-1],[-14,-2],[-131,1],[-14,0],[-16,1],[-111,1],[-29,2],[-3,0],[-51,-2],[-34,0],[-82,0],[-40,0],[-21,0],[-46,1],[-23,1],[-21,0],[-193,7],[-61,1],[-62,1],[-85,0],[-29,-1],[-48,-1],[-43,1],[-30,0],[-26,1],[-36,0],[-108,1],[-14,1],[-63,0],[-22,1],[-18,2],[-1,0],[-15,0],[-21,0],[-19,-1],[-74,-5],[-26,0],[-21,0],[-16,0],[-25,1],[-25,0],[-25,1],[-33,2],[-23,0],[-18,2],[-21,0],[-161,7],[-162,7],[-134,0],[-33,0]],[[74053,10284],[1,468],[1,147],[0,380],[-1,268],[0,163],[-1,183],[0,47],[0,3],[-1,134],[1,59],[0,126],[0,40],[1,138],[-2,245],[-1,171],[0,3],[-1,119],[-1,156],[-2,444],[0,49],[0,115],[-1,126],[-1,566],[0,132],[-1,326],[-2,290],[3,164],[-3,288],[0,417]],[[74053,10284],[-1,-285],[-2,-349],[-1,-262],[-2,-539],[0,-194],[0,-121],[0,-190],[0,-3],[0,-284],[0,-490],[-1,-649],[1,-147],[-1,-46],[1,-103],[0,-53],[0,-54],[0,-58],[0,-96],[4,-37],[6,-40],[-3,-42],[-1,-2],[-5,-37],[-2,-40],[0,-37],[0,-50],[0,-48],[0,-53],[-1,-59],[0,-51],[0,-53],[1,-63],[-1,-37],[0,-56],[1,-63],[0,-40],[6,-39],[5,-31],[-6,-44],[-6,-34],[0,-42],[0,-54],[0,-45],[1,-35],[0,-33],[0,-59],[0,-55],[0,-51],[0,-43],[1,-98],[0,-69],[0,-117],[1,-45],[0,-45],[0,-48],[0,-59],[0,-105],[-1,-71],[0,-35],[0,-49],[-1,-76],[0,-80],[0,-67],[-1,-65],[0,-62],[1,-10],[0,-80],[0,-41],[-1,-123],[0,-96],[0,-50],[0,-34],[-1,-48],[1,-312],[0,-45],[0,-91],[0,-92],[-1,-68],[0,-34],[0,-68],[-1,-86],[1,-45],[0,-50],[0,-79],[-1,-80],[-1,-58],[0,-61],[0,-40],[0,-43],[0,-43],[0,-56],[0,-88],[0,-56],[1,-51],[0,-55],[0,-59],[0,-52],[0,-85],[-1,-152],[-1,-124],[0,-45],[1,-36],[-1,-36],[0,-43],[0,-10],[0,-416],[2,-247],[1,-227],[0,-49],[0,-44]],[[74044,189],[-42,0],[-337,3],[-185,1],[-139,1],[-273,2],[-121,1],[-229,1],[-38,2],[-276,1],[-53,1],[-1,0],[-312,1],[-154,1],[-2,0],[-249,1],[-51,0],[-16,3],[-30,0],[-258,0],[-62,0],[-30,-1],[-33,0],[-115,-9],[-270,6],[-295,1],[-37,-3],[-260,-1],[-36,1],[-62,2],[-17,1],[-108,0],[-134,-1],[-24,0],[-157,3],[-176,-1],[-105,0],[-177,-1],[-181,-1],[-20,-1],[-160,1],[-22,1],[-64,-1],[-29,-1],[-7,0],[-13,0],[-122,-2],[-62,-1],[-134,2],[-110,-2],[-132,1],[-89,-1],[-21,-1],[-17,0],[-116,1],[-107,-1],[-92,-1],[-114,3],[-40,0],[-220,-4],[-24,-1],[-103,2],[-21,0],[-36,1],[-48,0],[-2,0],[-156,-3],[-160,0],[-81,0],[-187,2],[-1,0],[-56,1],[-95,0],[-3,0],[-46,0],[-95,2],[-59,-1],[-23,0],[-37,-1],[-13,0],[-18,1],[-36,1],[-54,2],[-120,-2],[-127,-1]],[[65707,200],[0,132],[0,34],[0,68],[0,155],[-1,74],[0,25],[0,24],[0,69],[0,64],[0,91],[-1,44],[0,88],[0,77],[0,46],[0,132],[0,129],[0,61],[0,62],[-1,74],[-1,61],[-2,59],[-1,36],[-1,78],[-1,54],[0,42],[0,62],[0,65],[-1,8],[0,72],[0,63],[0,73],[-1,75],[-1,35],[-1,57],[-2,49],[0,46],[0,58],[0,60],[1,103],[0,72],[0,41],[1,41],[0,105],[0,67],[0,90],[-1,92],[0,39],[-1,188],[0,70],[-1,83],[0,54],[0,35],[-1,65],[0,38],[0,36],[0,54],[0,38],[-1,40],[0,63],[0,1],[1,157],[-1,36],[0,43],[0,41],[-2,125],[0,52],[0,67],[0,37],[0,35],[-1,80],[0,1],[0,57],[0,67],[-1,70],[-1,72],[0,76],[0,65],[-1,99],[0,2],[0,38],[0,59],[-1,39],[-1,57],[1,37],[0,33],[0,45],[1,116],[2,37],[0,37],[0,21],[0,17],[0,52],[0,65],[0,110],[0,72],[0,74],[0,59],[0,70],[0,68],[0,35],[-8,488],[-1,242],[0,53],[0,35],[3,99],[1,64],[3,195],[0,25],[0,21],[-2,360],[-1,265],[-1,22],[0,46],[-7,179],[-2,339],[-1,144],[0,39],[0,93],[0,3],[0,42],[0,49],[0,1],[-1,70],[1,42],[-1,87],[-1,47],[0,27],[0,22],[0,247],[0,22],[-1,19],[-1,490],[0,140],[0,233],[0,127],[0,34],[0,60],[0,255],[2,128],[0,55],[0,56],[0,82],[0,33],[0,35],[0,37],[1,57],[0,64],[0,46],[0,47],[0,58],[0,65],[0,95],[0,42],[0,36],[0,53],[0,92],[-1,53],[0,39],[1,107],[0,75],[0,84],[0,37],[0,43],[0,66],[0,60],[0,34],[-2,362],[17,-1],[0,2],[0,41],[-2,151],[-1,34],[-1,55],[0,43],[-1,34],[0,45],[-1,77],[-4,178],[-1,64],[-1,70],[0,38],[-1,75],[-1,39],[-1,45],[-1,57],[0,24],[0,43],[-1,29],[0,5],[-1,34],[1,39],[-3,194],[0,41],[-1,49],[-2,71],[-2,92],[-2,106],[-1,54],[-1,56],[-1,39],[-8,477],[-2,83],[-2,49],[-3,89],[-1,37],[-3,79],[-2,79]],[[65707,200],[-96,-1],[-18,1],[-122,1],[-58,-2],[-25,1],[-36,-2],[-67,1],[-26,1],[-36,0],[-71,0],[-32,0],[-39,-1],[-35,-1],[-30,0],[-29,-1],[-18,1],[-52,0],[-49,-1],[-15,0],[-61,-1],[-52,0],[-69,0],[-45,-1],[-14,0],[-60,1],[-22,0],[-28,0],[-21,0],[-48,0],[-31,1],[-16,-1],[-59,-1],[-29,0],[-38,1],[-18,-1],[-34,0],[-42,1],[-38,-1],[-2,0],[-12,0],[-49,1],[-44,-1],[-49,1],[-45,0],[-28,-1],[-21,0],[-49,-1],[-45,1],[-57,0],[-41,-1],[-30,0],[-51,0],[-24,0],[-17,0],[-21,0],[-14,0],[-14,0],[-56,0],[-33,1],[-192,0],[-28,-2],[-32,0],[-28,0],[-51,0],[-1,0],[-26,1],[-26,-1],[-43,0],[-31,0],[-30,0],[-31,0],[-36,0],[-35,-1],[-30,0],[-82,1],[-27,1],[-25,1],[-23,-1],[-22,1],[-16,-1],[-7,0],[-12,-1],[-19,-1],[-20,0],[-23,0],[-62,1],[-15,-1],[-75,-1],[-34,0],[-19,0],[-2,0],[-19,0],[-97,-1],[-13,0],[-4,0],[-22,0],[-44,0],[-40,0],[-41,1],[-44,0],[-29,0],[-137,-1],[-25,0],[-46,0],[-33,0],[-53,0],[-27,0],[-49,-1],[-43,0],[-17,0],[-48,0],[-15,0],[-17,1],[-7,-2],[-10,-3],[-15,1],[-21,1],[-44,1],[-40,1],[-71,-1],[-46,0],[-26,0],[-57,-1],[-28,0],[-22,0],[-45,1],[-21,0],[-32,1],[-51,-2],[-25,0],[-21,0],[-28,-1],[-15,1],[-42,0],[-20,0],[-20,-1],[-32,0],[-33,1],[-63,0],[-28,3],[-36,0],[-1,0],[-89,0],[-6,0],[-54,0],[-39,-1],[-33,0],[-4,0],[-143,1],[-1,0],[-17,0],[-49,-1],[-78,-3],[-20,1],[-32,-1],[-41,-1],[-15,1],[-16,1],[-39,0],[-90,-1],[-80,-2],[-135,2],[-12,1],[-4,1],[-17,0],[-16,0],[-1,0],[-86,3],[-51,1],[-84,3],[-154,6],[-14,-9],[-19,-1],[-13,3],[-23,0],[-22,-2],[-35,1],[-19,0],[-35,0],[-25,4],[-243,-2],[-41,1],[-68,0],[-185,-2],[-66,-1],[-178,0],[-56,1],[-12,0],[-22,0],[-156,-4],[-14,-2],[-14,2],[-15,-1],[-39,0],[-55,1],[-44,0],[-45,1],[-15,0],[-43,-1],[-69,0],[-45,1],[-53,0],[-29,0],[-30,0],[-24,0],[-196,6],[-42,-6],[-58,-1],[-53,0],[-31,0],[-28,0],[-43,-1]],[[56937,189],[0,92],[0,96],[-1,108],[0,54],[0,58],[-1,77],[0,34],[1,108],[0,56],[0,59],[-1,89],[0,60],[0,56],[0,111],[0,80],[0,162],[0,50],[1,425],[2,218],[0,73],[0,7],[1,87],[0,99],[-1,122],[1,129],[0,240],[1,227],[0,65],[0,86],[0,104],[1,52],[0,151],[-1,135],[0,43],[0,100],[0,36],[1,194],[0,162],[0,70],[-1,140],[-1,100],[-1,118],[-1,82],[-1,69],[-1,55],[0,137],[-2,155],[-1,64],[0,43],[-1,35],[0,4],[1,125],[1,70],[0,34],[0,65],[0,44],[1,142],[0,38],[1,139],[0,161],[1,145],[0,46],[1,83],[0,58],[0,167],[0,41],[1,41],[-1,46],[1,95],[0,17],[1,126],[0,44],[-1,44],[1,41],[0,52],[0,39],[0,110],[-1,38],[-1,128],[0,39],[0,39],[-1,46],[0,35],[0,38],[0,38],[-1,72],[0,34],[-1,77],[0,50],[-1,242],[0,44],[0,44],[0,44],[0,42],[0,77],[-1,32],[0,2],[0,44],[0,34],[0,34],[0,58],[0,116],[0,39],[0,40],[0,38],[0,34],[-1,43],[0,36],[-1,119],[0,44],[-1,40],[-1,35],[0,6],[0,101],[-2,125],[-1,168],[0,1],[-1,45],[0,63],[-1,88],[-1,152],[0,107],[0,53],[0,65],[-1,100],[0,34],[0,78],[-1,48],[0,42],[0,38],[-1,40],[-2,363],[-1,121],[-1,108],[0,46],[-2,325],[-2,75],[0,63],[0,99],[-1,68],[0,64],[1,98],[0,61],[-1,45],[0,99],[0,50],[0,54],[-1,50],[0,140],[-1,59],[0,59],[0,65],[-1,41],[0,35],[0,45],[0,79],[0,39],[0,60],[-17,0],[-17,0]],[[26055,15999],[0,-492],[0,-481],[-2,-485],[0,-53],[-1,-230],[0,-202],[0,-67],[0,-41],[0,-68],[0,-30],[0,-278],[1,-487],[125,-3],[55,-2],[31,-1],[0,-255],[0,-133],[0,-41],[0,-55],[-1,-184],[0,-42],[0,-70],[0,-34],[0,-71],[0,-35],[0,-39],[0,-56],[0,-41],[0,-61],[0,-35],[-1,-35],[1,-37],[0,-36],[-1,-45],[1,-50],[0,-40],[-1,-61],[0,-970],[0,-276],[1,-212],[0,-441],[0,-9],[0,-61],[1,-354],[1,-223],[-1,-283],[0,-101],[0,-159],[0,-128],[2,-51],[1,-121],[2,-107],[0,-95],[-1,-390],[0,-453],[0,-11],[0,-197],[-1,-177],[-2,-242],[-1,-68],[-2,-191],[0,-133],[-1,-89],[3,-361],[3,-321],[0,-48],[0,-39],[0,-137],[0,-87],[0,-264],[0,-17],[2,-327],[0,-97],[10,-367],[0,-131],[2,-454],[1,-43],[-1,-103],[0,-44],[-1,-42],[0,-78],[1,-220],[2,-143],[1,-117],[2,-226],[3,-246],[3,-281],[1,-119],[3,-340],[-3,-476],[0,-93],[0,-62],[-1,-491]],[[26292,307],[-33,0],[-28,1],[-49,0],[-32,-1],[-38,0],[-41,1],[-26,1],[-29,-2],[-27,0],[-24,-1],[-19,0],[-20,-1],[-25,-1],[-78,3],[-17,0],[-41,0],[-163,-1],[-39,-1],[-7,0],[-339,-2],[-63,-1],[-176,-1],[-60,0],[-27,1],[-27,1],[-17,1],[-34,-1],[-16,-1],[-87,-2],[-114,-1],[-15,0],[-32,-1],[-19,0],[-388,-4],[-65,3],[-128,-2],[-76,0],[-128,-2],[-31,0],[-160,-1],[-41,0],[-109,0],[-31,0],[-15,0],[-64,-1],[-161,-4],[-232,-4],[-222,-1],[-158,-3],[-61,-3],[-185,-2],[-90,-1],[-1,0],[-115,-1],[-106,-1],[-16,0],[-40,0],[-89,-3],[-76,0],[-62,1],[-42,0],[-74,0],[-91,-1],[-34,0],[-4,-1],[-28,-1],[-87,-1],[-58,0],[-17,-1],[-124,-1],[-133,-1],[-63,-1],[-27,0],[-27,0],[-1,0],[-64,-1],[-20,4],[-15,0],[-67,-1],[-127,-3],[-58,-1],[-29,-1],[-69,-3],[-98,-1],[-69,-1],[-47,-1],[-27,2],[-49,-1],[-1,0],[-16,-1],[-4,0],[-10,0],[-15,4],[-5,0],[-10,-1],[-126,-7],[-196,-3],[-128,-1],[-52,0],[-85,-3],[-24,0],[-84,0],[-108,0],[-35,-2],[-73,-4],[-48,-2],[-58,0],[-48,2]],[[19005,235],[2,589],[1,46],[1,217],[-1,281],[0,35],[-1,218],[0,36],[0,60],[-1,47],[-1,179],[-1,16],[0,125],[0,59],[0,77],[-2,148],[-1,65],[0,79],[-1,137],[0,36],[-2,103],[0,47],[-1,91],[-1,72],[-2,118],[-2,142],[-3,224],[-3,211],[-6,210],[1,50],[-5,430],[0,60],[0,52],[0,53],[0,66],[0,83],[0,44],[0,51],[0,43],[0,121],[0,66],[1,54],[-1,47],[1,95],[0,125],[0,55],[-1,59],[0,48],[1,45],[0,50],[0,39],[0,94],[0,50],[0,50],[0,56],[0,172],[0,43],[0,43],[0,139],[1,50],[0,45],[0,92],[0,85],[0,48],[0,237],[1,289],[0,195],[0,478],[0,219],[0,45],[0,4],[0,46],[0,40],[0,8],[0,58],[0,63],[0,155],[0,272],[0,51],[0,478],[0,5],[1,482],[-1,44],[0,193],[2,245],[5,961],[1,239],[1,56],[1,187],[0,57],[1,117],[1,68],[0,52],[0,67],[1,67],[1,69],[2,467],[1,65],[1,72],[0,132],[0,49],[1,164],[-100,1],[-44,0],[-109,0]],[[33611,12887],[-1,-159],[-1,-43],[-2,-458],[0,-37],[0,-37],[-2,-225],[0,-105],[-6,-742],[-2,-251],[0,-36],[0,-37],[-1,-48],[-2,-195],[-1,-66],[0,-34],[-2,-63],[0,-43],[2,-83],[-1,-39],[0,-50],[-1,-105],[0,-42],[1,-483],[-1,-367],[-1,-91],[0,-109],[0,-57],[1,-98],[0,-83],[1,-113],[0,-54],[0,-237],[0,-39],[0,-66],[3,-618],[2,-440],[0,-43],[1,-341],[1,-102],[1,-35],[0,-5],[1,-86],[1,-98],[0,-43],[1,-103],[1,-51],[1,-97],[5,-405],[1,-80],[5,-468],[0,-37],[1,-127],[1,-68],[1,-222],[1,-44],[1,-86],[1,-45],[2,-252],[2,-94],[-2,-38],[2,-114],[0,-77],[1,-37],[1,-397],[0,-126],[0,-56],[6,-1481],[0,-14],[1,-311],[2,-662],[0,-146],[1,-71],[0,-198],[1,-255]],[[33639,219],[-109,-2],[-7,0],[-35,0],[-23,0],[-52,-1],[-42,11],[-14,0],[-18,-1],[-17,1],[-34,0],[-20,0],[-16,0],[-31,1],[-27,-1],[-42,0],[-16,1],[-47,1],[-41,-1],[-75,1],[-17,-1],[-15,1],[-22,1],[-27,0],[-16,0],[-22,0],[-16,0],[-23,0],[-32,1],[-21,0],[-55,0],[-51,-1],[-33,1],[-50,0],[-19,0],[-15,0],[-29,0],[-26,1],[-22,-1],[-24,0],[-1,0],[-29,0],[-28,1],[-67,0],[-15,0],[-16,0],[-15,0],[-14,1],[-16,0],[-15,0],[-74,1],[-18,0],[-26,1],[-25,0],[-55,0],[-1,0],[-19,0],[-93,2],[-21,1],[-43,0],[-63,1],[-20,1],[-17,0],[-19,1],[-25,1],[-26,1],[-46,0],[-14,0],[-23,1],[-24,0],[-19,0],[-64,1],[-32,0],[-14,0],[-27,0],[-14,1],[-27,0],[-17,0],[-15,0],[-30,2],[-32,0],[-36,-1],[-14,0],[-21,1],[-42,1],[-45,2],[-23,0],[-37,1],[-33,2],[-26,0],[-27,1],[-34,0],[-21,1],[-20,1],[-31,1],[-29,0],[-36,0],[-46,2],[-22,-1],[-136,4],[-22,0],[-28,1],[-34,0],[-8,0],[-150,-1],[-138,2],[-141,3],[-258,4],[-17,0],[-17,1],[-43,1],[-61,1],[-10,0],[-6,0],[-483,11],[-24,1],[-162,0],[-233,-1],[-432,0],[-489,0],[-66,-1],[-194,0],[-29,1],[-32,1],[-38,1],[-29,0],[-41,1],[-27,2],[-40,1],[-17,0],[-19,0],[-15,2],[-27,0],[-32,1],[-22,0],[-22,0],[-25,0],[-15,1],[-28,1],[-19,-1],[-21,0],[-25,1],[-25,0],[-34,1],[-29,0],[-20,0],[-14,0],[-33,1],[-19,0],[-23,0],[-31,1],[-19,0],[-31,0],[-20,2],[-30,-1],[-23,1],[-39,0],[-18,0],[-15,0],[-14,0],[-26,0],[-32,1],[-24,0],[-27,0],[-29,1],[-25,0],[-25,0],[-39,1],[-22,1],[-51,1],[-32,0]],[[49601,12985],[4,-130],[1,-170],[0,-49],[0,-136],[0,-244],[0,-232],[-2,-896],[0,-58],[1,-194],[0,-52],[0,-212],[0,-29],[0,-9],[0,-40],[0,-38],[1,-118],[3,-256],[0,-43],[1,-468],[0,-50],[0,-121],[1,-59],[0,-61],[0,-55],[0,-47],[1,-99],[0,-120],[0,-41],[0,-43],[1,-68],[0,-143],[0,-48],[0,-38],[0,-50],[1,-121],[0,-42],[0,-55],[0,-42],[0,-56],[0,-106],[0,-47],[0,-111],[0,-75],[0,-150],[0,-53],[0,-48],[0,-50],[1,-54],[0,-51],[0,-63],[0,-94],[0,-56],[0,-48],[0,-48],[0,-53],[0,-44],[1,-54],[0,-67],[1,-93],[1,-310],[0,-98],[0,-71],[1,-104],[0,-44],[2,-323],[1,-37],[0,-45],[0,-78],[0,-203],[1,-70],[0,-212],[1,-70],[0,-1],[1,-135],[0,-36],[0,-95],[0,-31],[0,-3],[0,-109],[2,-347],[-1,-82],[-1,-55],[1,-128],[0,-152],[0,-93],[1,-107],[0,-352],[1,-131],[0,-83],[1,-107],[0,-52],[0,-59],[1,-119],[0,-62],[0,-194],[0,-1],[0,-93],[0,-69],[1,-127],[0,-92],[0,-96],[0,-92],[0,-232],[1,-55],[0,-98],[0,-88],[0,-96],[0,-119],[0,-112],[0,-131],[1,-484],[1,-135],[0,-364],[3,-34]],[[49637,171],[-14,-1],[-21,0],[-18,-3],[-132,-1],[-38,1],[-4,0],[-49,1],[-102,8],[-418,6],[-24,-4],[-134,1],[-25,3],[-61,-4],[-41,-1],[-53,1],[-61,0],[-15,0],[-17,0],[-64,0],[-88,0],[-47,1],[-14,0],[-20,0],[-24,0],[-36,0],[-48,1],[-25,0],[-40,0],[-45,1],[-15,1],[-18,0],[-21,0],[-18,0],[-62,1],[-27,0],[-15,0],[-16,0],[-37,1],[-11,0],[-13,0],[-19,1],[-79,1],[-19,1],[-24,0],[-8,0],[-15,1],[-4,0],[-29,1],[-29,1],[-37,1],[-49,1],[-37,1],[-34,1],[-36,1],[-15,-1],[-24,0],[-19,0],[-27,1],[-60,-2],[-34,0],[-17,-1],[-22,-1],[-28,0],[-51,0],[-16,0],[-32,0],[-52,1],[-62,0],[-22,0],[-39,0],[-16,1],[-27,-1],[-27,1],[-15,-1],[-15,0],[-25,1],[-96,0],[-23,-1],[-22,0],[-22,0],[-36,0],[-20,0],[-62,0],[-17,0],[-40,1],[-26,0],[-19,0],[-56,0],[-13,0],[-18,0],[-98,1],[-14,0],[-14,0],[-29,1],[-14,0],[-53,0],[-36,0],[-19,0],[-29,0],[-47,0],[-35,1],[-31,0],[-33,-1],[-22,0],[-20,0],[-37,0],[-47,-1],[-25,0],[-15,0],[-51,0],[-19,0],[-19,1],[-13,0],[-28,1],[-35,0],[-35,-1],[-20,1],[-37,0],[-121,1],[-56,0],[-47,1],[-15,0],[-33,1],[-40,-1],[-53,1],[-48,0],[-70,1],[-41,1],[-44,1],[-59,3],[-14,-4],[-32,0],[-28,0],[-23,0],[-134,2],[-39,0],[-30,1],[-34,0],[-21,1],[-34,1],[-27,0],[-15,0],[-21,0],[-61,2],[-75,1],[-118,2],[-14,1],[-76,-1],[-221,3],[-18,-1],[-26,1],[-199,-6],[-66,1],[-241,3],[-3,0],[-123,2],[-28,-1],[-53,0],[-17,0],[-5,0],[-234,0],[-17,-1],[-38,0],[-21,2],[-13,0],[-50,0],[-13,-5],[-326,6],[-32,0],[-210,2],[-144,1],[-98,0],[-56,0],[-182,0],[-249,0],[-83,-1],[-14,0],[-18,0],[-21,-1],[-22,0],[-65,-1],[-30,-1],[-53,0]],[[40885,214],[0,45],[0,55],[0,64],[-1,45],[0,242],[-5,186],[0,480],[0,200],[0,3],[0,32],[1,124],[0,24],[-3,250],[0,71],[0,748],[-1,39],[0,65],[0,41],[0,595],[0,1],[1,375],[1,48],[-3,209],[0,135],[1,52],[-5,40],[0,64],[1,160],[0,351],[0,294],[0,181],[0,53],[-1,169],[0,34],[0,529],[0,38],[0,105],[0,23],[0,16],[-1,53],[0,1],[-2,288],[-1,52],[0,81],[-4,436],[1,60],[-1,42],[-3,185],[2,301],[2,42],[-1,187],[-2,284],[0,80],[-4,42],[2,651],[0,154],[2,38],[0,166],[0,3],[0,167],[1,136],[1,250],[1,193],[-1,531],[1,241],[1,57],[-1,79],[0,42],[0,39],[2,76],[-1,490],[-2,577],[0,7],[0,80],[8,174],[-1,77],[-2,231],[-133,-1]],[[6634,13132],[-1,-150],[-1,-89],[0,-56],[0,-112],[2,-52],[0,-46],[2,-466],[0,-246],[1,-54],[2,-154],[1,-41],[0,-84],[0,-97],[-1,-239],[0,-53],[0,-201],[0,-69],[0,-58],[0,-51],[0,-51],[0,-52],[0,-43],[1,-59],[-1,-140],[1,-41],[-1,-62],[0,-63],[0,-73],[0,-119],[0,-61],[1,-63],[0,-63],[0,-65],[0,-73],[0,-63],[0,-60],[0,-67],[0,-61],[0,-65],[0,-58],[0,-62],[1,-102],[0,-145],[0,-55],[0,-35],[0,-44],[0,-187],[-1,-247],[3,-236],[2,-147],[0,-1],[0,-153],[0,-316],[-1,-227],[1,-133],[0,-204],[0,-36],[0,-111],[0,-91],[0,-45],[0,-44],[1,-57],[0,-37],[0,-50],[0,-51],[0,-61],[0,-46],[0,-65],[-1,-54],[0,-48],[1,-50],[-1,-33],[0,-60],[0,-57],[0,-38],[0,-87],[1,-110],[0,-94],[0,-49],[0,-49],[0,-50],[0,-47],[0,-88],[0,-94],[0,-41],[0,-93],[0,-180],[0,-58],[0,-124],[0,-26],[-1,-92],[0,-5],[1,-32],[-1,-51],[0,-147],[0,-48],[0,-47],[1,-38],[0,-42],[0,-60],[-1,-41],[1,-97],[0,-211],[0,-43],[0,-136],[0,-115],[0,-114],[0,-33],[0,-57],[1,-84],[0,-35],[1,-49],[0,-47],[-1,-48],[-1,-56],[1,-56],[0,-43],[0,-37],[1,-39],[0,-54],[-1,-100],[0,-37],[1,-141],[-1,-51],[0,-39],[0,-45],[0,-36],[0,-34],[1,-47],[-1,-35],[0,-65],[1,-72],[0,-34],[0,-48],[-1,-55],[1,-66],[0,-75],[0,-52],[1,-77],[0,-58],[0,-62],[0,-33],[1,-60],[-1,-106],[1,-166],[-1,-88],[1,-77],[-1,-143],[1,-91],[0,-73],[1,-75],[1,-101],[0,-50],[0,-52],[0,-73],[0,-77],[0,-77],[0,-49],[0,-66],[0,-38],[0,-44],[0,-92]],[[6652,77],[-18,0],[-38,-2],[-56,-1],[-32,0],[-94,-2],[-32,0],[-26,0],[-43,-1],[-24,0],[-34,-1],[-31,0],[-40,0],[-19,-1],[-14,0],[-25,0],[-27,0],[-25,-1],[-20,0],[-23,0],[-35,0],[-72,-2],[-51,0],[-36,0],[-29,-1],[-30,0],[-29,-1],[-31,0],[-24,-1],[-23,0],[-20,0],[-34,0],[-23,0],[-26,-1],[-29,0],[-27,0],[-48,-1],[-22,0],[-56,0],[-66,-1],[-49,0],[-74,-2],[-42,0],[-33,0],[-27,0],[-19,0],[-40,-1],[-34,-1],[-28,0],[-19,0],[-36,-1],[-16,0],[-21,0],[-62,-1],[-29,0],[-30,-1],[-28,0],[-21,0],[-48,-1],[-34,-1],[-34,0],[-31,0],[-24,-1],[-27,0],[-44,0],[-49,0],[-14,-1],[-34,0],[-37,-1],[-36,0],[-34,0],[-38,-1],[-50,0],[-19,0],[-43,-2],[-73,0],[-57,-1],[-24,0],[-30,-1],[-121,-1],[-67,-1],[-21,0],[-31,0],[-30,-1],[-34,0],[-60,-1],[-19,0],[-67,0],[-32,-1],[-32,0],[-23,-1],[-139,-2],[-23,0],[-14,0],[-24,0],[-22,0],[-35,-1],[-44,-1],[-24,0],[-21,0],[-15,-1],[-17,1],[-18,-1],[-27,0],[-29,-1],[-18,0],[-23,0],[-45,-1],[-20,-1],[-17,0],[-21,0],[-24,0],[-20,-1],[-14,1],[-25,-1],[-18,0],[-16,0],[-26,-1],[-76,-1],[-14,0],[-18,0],[-15,0],[-27,0],[-18,0],[-28,-1],[-17,-1],[-29,1],[-45,0],[-23,0],[-31,-1],[-26,0],[-37,0],[-20,-1],[-41,0],[-23,-1],[-18,0],[-14,1],[-15,-1],[-15,-1],[-15,0],[-14,0],[-15,0],[-17,-1],[-21,0],[-20,-1],[-24,1],[-26,0],[-8,0],[-18,-1],[-40,0],[-23,0],[-28,1],[-33,-1],[-37,0],[-46,-1],[-33,0],[-90,-1],[-29,0],[-44,-1],[-2,0],[-13,0],[-13,0],[-14,-1],[-22,1],[-71,-1],[-30,0],[-31,0],[-20,-1],[-28,0],[-14,0],[-29,-1],[-69,0],[-35,-1],[-31,0],[-27,0],[-35,-1],[-16,-1],[-22,0],[-24,0],[-48,-1],[-15,0],[-30,0],[-25,0],[-27,-1],[-17,0],[-19,-1],[-15,0],[-16,-1],[-28,1],[-24,0],[-21,0],[-1,0],[-18,0],[-26,-1],[-45,0],[-14,0],[-15,0],[-19,-1],[-82,-1],[-14,0],[-40,0],[-33,0],[-27,-1],[-15,0],[-30,0],[-25,-1],[-17,0],[-65,-1],[-59,-1],[-20,17],[0,242],[1,914],[0,87],[0,70],[0,1163],[2,2439],[1,3771],[2,4452]],[[13182,13108],[0,-66],[0,-52],[-2,-109],[0,-85],[0,-38],[0,-132],[0,-49],[0,-77],[1,-109],[0,-179],[0,-34],[0,-41],[0,-37],[0,-131],[0,-74],[0,-63],[0,-74],[0,-136],[0,-47],[0,-53],[0,-104],[0,-90],[0,-56],[1,-53],[0,-36],[0,-94],[0,-36],[0,-41],[0,-71],[0,-81],[0,-142],[0,-602],[2,-408],[0,-38],[-1,-21],[1,-233],[-1,-43],[1,-40],[0,-77],[-1,-47],[0,-61],[0,-72],[0,-69],[0,-55],[0,-62],[0,-62],[1,-49],[1,-245],[-1,-249],[0,-108],[0,-135],[0,-58],[0,-117],[1,-63],[0,-116],[0,-95],[0,-73],[0,-45],[0,-42],[0,-47],[0,-50],[0,-99],[0,-34],[0,-102],[0,-41],[0,-45],[0,-51],[0,-53],[0,-68],[0,-37],[1,-44],[-1,-158],[1,-215],[0,-260],[1,-102],[0,-147],[0,-6],[-2,-481],[4,-481],[0,-205],[0,-52],[1,-155],[0,-69],[0,-48],[0,-82],[0,-53],[0,-45],[1,-117],[0,-116],[-1,-89],[0,-45],[1,-52],[1,-58],[0,-71],[-1,-33],[0,-66],[1,-100],[0,-61],[1,-39],[-1,-40],[-1,-45],[1,-34],[1,-53],[1,-48],[-1,-37],[0,-42],[0,-42],[0,-40],[0,-45],[0,-56],[1,-68],[0,-109],[0,-49],[0,-37],[0,-47],[0,-46],[0,-35],[1,-40],[0,-60],[-1,-57],[2,-303],[-1,-481],[2,-480],[1,-482],[2,-347],[-2,-70]],[[13198,163],[-67,-5],[-182,-15],[-20,0],[-36,0],[-14,18],[-41,-1],[-36,0],[-15,0],[-49,-2],[-17,0],[-25,0],[-15,1],[-26,0],[-62,-1],[-69,-6],[-52,-1],[-61,-1],[-184,0],[-66,-2],[-241,-4],[-178,-3],[-61,-2],[-140,2],[-161,-3],[-122,-2],[-27,0],[-16,-2],[-322,-6],[-129,1],[-13,0],[-41,0],[-86,-2],[-38,0],[-35,-1],[-22,0],[-232,-4],[-187,-3],[-309,-4],[-18,0],[-488,-6],[-20,-1],[-22,0],[-23,-1],[-16,0],[-16,-1],[-49,0],[-36,-2],[-28,1],[-17,0],[-23,0],[-17,0],[-15,0],[-16,-1],[-96,-1],[-17,1],[-21,-1],[-16,0],[-15,0],[-22,0],[-22,0],[-16,0],[-16,0],[-37,-1],[-28,0],[-17,0],[-37,-1],[-38,-1],[-16,1],[-18,0],[-18,-1],[-16,0],[-17,0],[-14,0],[-15,-1],[-33,0],[-20,0],[-71,-1],[-14,0],[-117,-1],[-39,0],[-87,-3],[-27,0],[-93,-1],[-40,0],[-81,-2],[-60,0],[-18,0],[-31,0],[-15,-1],[-24,0],[-20,0],[-17,0],[-59,-1],[-26,-1],[-2,0],[-26,1],[-17,0],[-18,-1],[-30,-1],[-20,0],[-21,0],[-26,-1],[-19,0],[-21,0],[-14,0],[-17,-1],[-25,1],[-19,-1],[-28,0],[-51,0],[-18,0],[-25,-1],[-40,-1],[-20,0],[-36,-1],[-19,0],[-16,0],[-43,-1],[-57,0],[-63,-2],[-51,0],[-36,0],[-21,0],[-21,-1],[-121,-1]],[[19005,235],[-33,0],[-14,0],[-32,0],[-68,-1],[-29,0],[-43,-1],[-44,-1],[-58,0],[-26,-1],[-53,0],[-66,-1],[-14,0],[-22,-1],[-51,1],[-254,-12],[-480,-15],[-66,-2],[-213,7],[-85,2],[-40,2],[-22,0],[-43,-1],[-13,-6],[-546,-3],[-110,-1],[-114,-8],[-196,-3],[-155,-2],[-14,-1],[-75,-1],[-72,2],[-98,5],[-62,1],[-33,-7],[-99,0],[-110,0],[-9,0],[-167,3],[-76,-5],[-96,-1],[-38,-1],[-33,0],[-18,0],[-50,-1],[-48,-1],[-134,-1],[-17,-1],[-43,0],[-15,0],[-67,0],[-44,-1],[-18,0],[-27,-1],[-28,0],[-43,0],[-166,-2],[-276,-8],[-7,-1],[-10,0],[-36,9],[-21,-1],[-142,-1],[-15,-1],[-21,-1],[-33,1],[-53,-2],[-63,-1],[-14,0],[-43,0],[-16,0],[-25,0],[-27,0],[-175,-3],[-19,0],[-45,-2],[-176,-1]],[[87501,12982],[1,-35],[0,-20],[3,-210],[3,-229],[2,-107],[1,-71],[1,-103],[1,-61],[0,-3],[-1,-50],[3,-33],[0,-62],[1,-54],[1,-31],[0,-8],[1,-116],[1,-47],[1,-56],[1,-38],[1,-58],[0,-82],[0,-152],[1,-192],[1,-48],[0,-97],[1,-67],[0,-38],[0,-304],[0,-63],[0,-65],[2,-109],[0,-41],[0,-35],[1,-119],[0,-65],[0,-34],[0,-43],[5,-240],[5,-251],[1,-55],[1,-87],[1,-67],[0,-64],[2,-99],[1,-62],[0,-23],[0,-11],[0,-56],[0,-53],[0,-61],[0,-74],[0,-69],[-1,-118],[0,-46],[0,-40],[-1,-49],[-1,-39],[-1,-99],[-3,-124],[0,-45],[-2,-72],[1,-34],[-2,-69],[-3,-181],[-4,-85],[-1,-23],[0,-34],[-1,-35],[1,-65],[-7,-239],[-3,-164],[0,-95],[-6,-127],[-3,-61],[-4,-119],[-3,-62],[-2,-58],[0,-18],[0,-43],[0,-67],[0,-94],[0,-55],[1,-146],[0,-38],[0,-38],[1,-64],[0,-72],[0,-77],[-1,-64],[1,-55],[0,-41],[-1,-49],[0,-57],[1,-34],[0,-34],[-4,-108],[0,-69],[-1,-35],[-2,-88],[-1,-53],[-1,-40],[-1,-67],[-1,-102],[0,-107],[2,-190],[1,-46],[0,-47],[1,-166],[0,-104],[0,-58],[1,-103],[0,-68],[1,-92],[1,-328],[-2,-473],[-1,-123],[0,-84],[0,-39],[0,-56],[-1,-171],[0,-45],[-3,-77],[-2,-65],[-1,-35],[-2,-91],[-2,-124],[-1,-40],[-1,-38],[0,-442],[0,-38],[0,-40],[0,-52],[0,-45],[-1,-27],[0,-8],[0,-44],[-1,-227],[-1,-81],[1,-183],[2,-151],[1,-69],[1,-448],[1,-34],[0,-39],[2,-122],[-1,-45]],[[87484,208],[-95,1],[-65,1],[-86,2],[-155,-3],[-83,2],[-39,0],[-81,-1],[-43,-1],[-39,0],[-41,-2],[-124,1],[-41,0],[-4,0],[-118,0],[-46,1],[-25,0],[-42,0],[-33,0],[-42,0],[-48,2],[-62,0],[-54,0],[-24,-1],[-10,0],[-15,1],[-16,0],[-35,-1],[-84,1],[-60,1],[-30,0],[-29,0],[-120,0],[-61,-3],[-50,1],[-66,-2],[-65,0],[-31,-1],[-136,3],[-36,-1],[-42,1],[-58,-4],[-115,3],[-69,2],[-61,-3],[-42,-1],[-101,1],[-36,0],[-57,1],[-126,-2],[-61,-1],[-50,0],[-61,0],[-69,2],[-17,0],[-18,-1],[-83,-2],[-191,3],[-51,1],[-103,-2],[-29,-1],[-152,-3],[-33,0],[-23,0],[-96,1],[-49,1],[-124,1],[-67,0],[-49,1],[-206,0],[-38,-1],[-104,1],[-82,1],[-30,1],[-17,1],[-128,-5],[-40,0],[-81,0],[-201,5],[-44,-1],[-73,-1],[-125,-1],[-35,1],[-17,1],[-58,-2],[-68,-2],[-3,0],[-99,-4],[-67,2],[-102,0],[-35,-1]],[[81564,202],[2,92],[0,43],[-1,85],[1,88],[0,34],[-3,41],[-3,64],[-2,49],[0,36],[1,38],[1,48],[0,111],[-1,36],[1,49],[2,316],[0,35],[-1,79],[1,240],[0,85],[-2,603],[0,5],[0,96],[0,228],[-1,217],[-1,88],[0,169],[0,68],[0,56],[0,93],[0,36],[2,174],[1,179],[1,135],[0,84],[0,36],[-1,94],[-1,35],[1,67],[0,48],[0,59],[0,44],[1,48],[0,117],[0,65],[0,44],[0,48],[0,53],[0,42],[0,38],[0,33],[0,55],[1,75],[-1,163],[0,176],[0,140],[0,91],[2,420],[1,155],[0,169],[1,124],[0,67],[0,281],[-1,204],[0,43],[0,271],[-1,96],[0,37],[0,45],[0,72],[-1,88],[-1,106],[0,104],[0,151],[0,183],[0,55],[0,92],[1,50],[0,63],[0,43],[0,38],[0,41],[-1,45],[0,67],[0,39],[1,76],[0,68],[0,61],[0,39],[-1,201],[0,39],[1,102],[0,6],[0,109],[0,44],[-1,177],[0,51],[0,35],[0,37],[0,117],[0,55],[-1,58],[1,123],[0,48]],[[56937,189],[-45,1],[-49,-1],[-47,1],[-53,-1],[-46,0],[-29,0],[-36,0],[-40,0],[-15,0],[-15,0],[-70,-1],[-19,0],[-17,0],[-36,0],[-34,0],[-72,0],[-69,0],[-64,0],[-46,0],[-35,1],[-41,-1],[-83,-1],[-25,0],[-57,1],[-76,-1],[-84,1],[-35,-1],[-99,0],[-53,0],[-18,0],[-55,-1],[-19,0],[-66,0],[-82,0],[-43,0],[-17,0],[-12,0],[-23,0],[-125,-1],[-70,1],[-22,-1],[-26,0],[-16,0],[-76,-1],[-36,0],[-28,0],[-60,-1],[-16,0],[-23,-1],[-46,0],[-74,-1],[-48,0],[-39,0],[-17,0],[-55,0],[-69,1],[-25,0],[-72,0],[-21,0],[-19,0],[-79,-1],[-79,0],[-43,0],[-24,-1],[-61,-1],[-39,0],[-21,0],[-50,0],[-27,0],[-17,0],[-19,0],[-17,0],[-72,-1],[-1,0],[-17,0],[-96,0],[-43,-1],[-63,-1],[-28,-1],[-64,0],[-46,0],[-5,0],[-15,0],[-25,0],[-117,-1],[-102,-1],[-24,0],[-36,-1],[-150,-3],[-16,0],[-17,0],[-29,0],[-103,-1],[-89,0],[-24,0],[-16,-1],[-27,1],[-40,0],[-96,1],[-64,2],[-16,0],[-75,-3],[-44,-1],[-58,-2],[-47,-2],[-181,0],[-40,0],[-25,-1],[-14,1],[-16,0],[-19,0],[-56,-1],[-19,1],[-44,-1],[-22,0],[-56,-1],[-98,4],[-20,0],[-35,-1],[-88,-1],[-37,1],[-44,0],[-40,1],[-22,-1],[-52,1],[-37,-1],[-13,0],[-16,1],[-160,-10],[-42,1],[-272,0],[-1,0],[-241,-1],[-63,0],[-3,0],[-50,0],[-121,1],[-247,4],[-104,2],[-140,2],[-13,7]],[[40885,214],[-14,1],[-103,0],[-36,1],[-26,0],[-23,0],[-27,1],[-30,-1],[-42,1],[-28,-1],[-32,1],[-22,0],[-94,-3],[-117,-5],[-33,-1],[-35,-2],[-64,1],[-237,1],[-43,1],[-218,2],[-188,3],[-42,0],[-39,0],[-105,0],[-71,-1],[-61,0],[-129,0],[-221,1],[-93,0],[-121,0],[-134,2],[-322,0],[-42,0],[-90,1],[-59,1],[-29,0],[-13,-2],[-17,0],[-28,1],[-8,0],[-284,-1],[-25,1],[-64,-1],[-71,0],[-61,1],[-26,-1],[-14,0],[-84,-1],[-48,1],[-97,3],[-53,1],[-60,1],[-1,0],[-117,1],[-119,1],[-122,1],[-1,1],[-97,1],[-87,1],[-63,0],[-28,1],[-84,0],[-138,2],[-2,0],[-66,3],[-177,5],[-26,-1],[-28,0],[-18,0],[-67,-1],[-45,-3],[-42,-3],[-60,-4],[-138,-8],[-145,-1],[-218,-1],[-114,-1],[-182,-1],[-93,0],[-36,0],[-76,0],[-48,3],[-77,1],[-19,1],[-29,4],[-64,-1],[-17,0],[-89,0],[-39,0],[-34,0],[-21,1],[-15,0],[-25,0],[-16,0],[-100,-1],[-132,1],[-135,-3],[-40,0],[-13,-1],[-20,0]],[[93477,11519],[0,-289],[-1,-191],[0,-57],[0,-68],[0,-110],[0,-188],[0,-66],[0,-245],[0,-239],[0,-184],[0,-285],[-1,-285],[0,-222],[0,-67],[3,-235],[5,-252],[3,-172],[3,-91],[1,-98],[0,-57],[0,-242],[0,-248],[0,-330],[0,-150],[0,-72],[0,-37],[0,-145],[0,-464],[0,-114],[0,-28],[0,-61],[0,-5],[0,-47],[0,-23],[0,-441],[0,-101],[0,-113],[0,-9],[0,-127],[0,-10],[0,-27],[0,-243],[0,-4],[0,-30],[0,-8],[1,-321],[-2,-42],[1,-59],[0,-48],[0,-104],[0,-82],[0,-34],[0,-85],[2,-144],[0,-145],[0,-11],[1,-217],[1,-316],[1,-268],[0,-166],[0,-27],[0,-12],[1,-565],[0,-144],[0,-71],[0,-59],[1,-100],[0,-194],[0,-15],[0,-44],[0,-316],[1,-25],[0,-20],[0,-35],[0,-52],[0,-8],[0,-138],[0,-42],[0,-36],[0,-55],[1,-146],[0,-67],[0,-144],[-1,-63],[0,-34],[0,-46],[1,-173],[0,-149]],[[93499,217],[-26,0],[-25,0],[-31,0],[-46,0],[-13,1],[-24,0],[-39,0],[-28,0],[-21,0],[-33,0],[-22,0],[-1,0],[-21,0],[-14,0],[-17,1],[-27,-1],[-20,0],[-37,0],[-48,0],[-24,0],[-34,0],[-32,0],[-29,-1],[-26,0],[-14,0],[-38,0],[-26,1],[-15,-1],[-29,0],[-15,2],[-22,1],[-48,-1],[-21,-1],[-16,0],[-15,0],[-74,1],[-48,-1],[-19,0],[-26,0],[-15,0],[-16,1],[-17,0],[-33,-1],[-38,1],[-16,0],[-18,0],[-37,1],[-19,-1],[-24,0],[-41,0],[-34,0],[-15,-2],[-76,-3],[-49,1],[-125,3],[-39,0],[-45,0],[-16,0],[-38,0],[-45,0],[-56,0],[-35,0],[-24,0],[-23,0],[-18,0],[-20,0],[-24,0],[-42,0],[-18,0],[-30,-1],[-17,0],[-56,1],[-28,0],[-30,0],[-55,0],[-66,-1],[-25,0],[-14,0],[-28,0],[-71,-1],[-35,0],[-69,0],[-23,0],[-33,-1],[-35,1],[-31,0],[-41,1],[-21,0],[-60,-1],[-65,1],[-51,0],[-129,-2],[-60,-1],[-49,-1],[-68,-1],[-24,0],[-16,0],[-19,0],[-34,0],[-27,1],[-21,-2],[-2,0],[-37,0],[-25,1],[-22,-1],[-23,0],[-24,-1],[-27,1],[-18,0],[-19,1],[-18,0],[-47,1],[-85,-1],[-19,2],[-17,-1],[-22,-1],[-39,0],[-27,1],[-26,0],[-25,0],[-19,-1],[-20,1],[-14,-1],[-21,-2],[-33,1],[-30,0],[-50,-1],[-21,0],[-31,0],[-63,0],[-75,0],[-27,-1],[-34,0],[-75,0],[-31,0],[-48,-1],[-26,1],[-34,0],[-83,0],[-22,-1],[-28,0],[-30,0],[-36,0],[-34,0],[-36,0],[-64,0],[-18,0],[-25,0],[-38,0],[-15,1],[-19,-1],[-27,1],[-20,0],[-188,-2],[-19,3],[-17,0],[-50,2],[-23,-1],[-13,0],[-47,0],[-51,-1],[-28,0],[-36,1],[-30,0],[-15,0],[-14,0],[-46,0],[-32,-2],[-29,0],[-32,-1],[-13,0],[-41,0],[-26,1],[-44,1],[-42,-3],[-82,1],[-17,0]],[[99605,11469],[1,-52],[0,-40],[0,-2],[1,-291],[-2,-99],[0,-107],[-1,-252],[0,-39],[-1,-78],[0,-33],[1,-75],[-1,-316],[0,-10],[0,-34],[-1,-152],[0,-342],[0,-140],[0,-349],[0,-128],[0,-231],[0,-127],[0,-130],[0,-109],[-1,-117],[-1,-95],[1,-38],[-1,-111],[3,-41],[-2,-64],[-1,-60],[0,-92],[0,-111],[1,-126],[0,-234],[-1,-113],[-2,-446],[1,-173],[-1,-44],[0,-160],[0,-35],[0,-24],[0,-215],[-1,-283],[0,-4],[-1,-192],[4,-258],[1,-288],[0,-22],[0,-18],[4,-143],[-2,-117],[0,-34],[1,-49],[-1,-41],[-1,-48],[-1,-159],[0,-8],[-1,-189],[2,-211],[0,-105],[-1,-181],[0,-68],[0,-103],[1,-56],[1,-86],[-2,-35],[0,-5],[0,-69],[0,-65],[1,-72],[0,-41],[1,-149],[0,-67],[0,-21],[0,-38],[0,-84],[0,-60],[0,-35],[0,-3],[1,-33],[-1,-64],[1,-41],[0,-83],[0,-34],[0,-40],[0,-107],[0,-61],[0,-46],[0,-115],[0,-46],[0,-95],[-1,-59],[0,-46],[0,-41],[-2,-34],[2,-104],[0,-123],[-1,-128],[0,-13],[0,-54],[1,-540],[0,-85],[-1,-100],[2,-45],[-1,-46],[0,-52],[0,-4],[0,-29],[0,-37],[0,-84],[0,-43],[-97,4],[-79,-12],[-121,1],[-232,0],[-135,0],[-183,0],[-64,2],[-72,3],[-113,-1],[-28,0],[-114,0],[-15,0],[-2,0],[-16,0],[-45,0],[-28,-1],[-50,0],[-25,0],[-59,1],[-45,-1],[-16,0],[-47,0],[-40,-3],[-18,2],[-2,0],[-70,-1],[-27,0],[-24,0],[-23,0],[-11,0],[-3,0],[-86,-2],[-37,0],[-76,-1],[-77,3],[-42,-1],[-60,2],[-18,0],[-14,0],[-55,2],[-97,0],[-73,0],[-18,0],[-101,0],[-62,0],[-40,0],[-46,-1],[-13,0],[-19,0],[-53,-1],[-14,1],[-41,0],[-16,1],[-1,0],[-50,1],[-66,0],[-19,0],[-18,-1],[-17,0],[-17,0],[-14,1],[-15,-1],[-28,3],[-26,-1],[-4,0],[-15,0],[-69,1],[-113,-1],[-17,1],[-51,1],[-45,0],[-39,0],[-90,-2],[-21,3],[-48,1],[-69,2],[-127,4],[-219,0],[-21,1],[-74,2],[-50,1],[-121,3],[-51,0],[-62,0],[-108,3],[-26,0],[-20,1],[-73,1],[-28,0],[-22,0],[-69,1],[-31,-1],[-27,1],[-28,0],[-35,1],[-120,-2],[-30,0],[-14,0],[-52,-2],[-55,1],[-22,0],[-2,0],[-20,1],[-51,0],[-253,0],[-59,-1],[-4,0],[-38,0],[-14,3],[-56,0],[-51,0],[-35,0],[-17,0],[-56,-1],[-134,0],[-115,0]],[[81564,202],[-36,0],[-83,-1],[-80,-1],[-79,0],[-139,0],[-62,-5],[-11,-1],[-230,2],[-19,0],[-19,0],[-15,0],[-30,0],[-155,2],[-168,1],[-39,0],[-63,1],[-23,0],[-21,0],[-67,0],[-48,1],[-171,1],[-18,0],[-126,1],[-31,1],[-15,0],[-186,1],[-14,0],[-2,0],[-41,0],[-84,-3],[-44,-1],[-23,-1],[-15,-1],[-111,0],[-27,-1],[-76,0],[-13,4],[-38,-3],[-28,0],[-24,1],[-46,0],[-24,4],[-35,-3],[-53,1],[-104,1],[-73,2],[-37,1],[-104,4],[-4,0],[-26,-1],[-20,0],[-15,0],[-16,-2],[-14,-2],[-14,1],[-31,-1],[-56,1],[-14,-6],[-51,1],[-27,1],[-29,1],[-61,0],[-66,1],[-106,0],[-15,0],[-24,0],[-17,1],[-39,-1],[-18,1],[-19,0],[-16,-1],[-47,-3],[-16,3],[-82,3],[-24,0],[-23,0],[-30,0],[-16,0],[-17,-1],[-20,0],[-14,0],[-71,0],[-89,0],[-19,0],[-35,0],[-20,1],[-24,2],[-17,1],[-74,-2],[-15,0],[-171,4],[-2,0],[-12,0],[-90,-9],[-41,0],[-41,-1],[-93,7],[-1,0],[-65,0],[-25,-1],[-29,1],[-24,-1],[-88,0],[-21,0],[-22,0],[-32,0],[-47,0],[-87,0],[-19,0],[-111,0],[-67,1],[-56,0],[-32,0],[-30,-2],[-46,0],[-15,0],[-23,0],[-40,0],[-96,-1],[-24,0],[-14,-1],[-67,0],[-16,-1],[-24,1],[-71,0],[-15,0],[-17,0],[-16,1],[-16,2],[-13,-2],[-22,0],[-276,-4],[-196,0],[-14,0],[-408,-10],[-244,-5],[-112,1],[-228,1]]],"transform":{"scale":[0.00007463429622296157,0.000030115346163460966],"translate":[-102.05173465899986,36.99301177600017]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ky-counties.json b/src/js/config/mapconfig/mapfiles/county/ky-counties.json new file mode 100644 index 00000000..608c82dd --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ky-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-89.56948826399986,36.497147153000014,-81.96476111899995,39.14745049100014],"geometries":[{"type":"Polygon","properties":{"name":"KY"},"id":"21015","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21037","arcs":[[4,5,6]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21117","arcs":[[-6,7,8,-1,9]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21191","arcs":[[10,11,-8,-5,12,13]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21077","arcs":[[14,15,16,17,-3]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21023","arcs":[[18,19,20,-14,21]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21081","arcs":[[-9,-12,22,23,24,-15,-2]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21161","arcs":[[25,26,27,-19,28]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21041","arcs":[[29,30,31,32,-17]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21089","arcs":[[33,34,35,36]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21223","arcs":[[-32,37,38,39]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21187","arcs":[[-25,40,41,42,-30,-16]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21135","arcs":[[43,44,45,-26,46,-36]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21201","arcs":[[-28,47,48,49,-20]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21103","arcs":[[50,51,52,-38,-31,-43]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21097","arcs":[[-50,53,54,55,-23,-11,-21]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21069","arcs":[[56,57,58,-48,-27,-46]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21185","arcs":[[-53,59,60,61,-39]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21019","arcs":[[62,63,-34,64]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21043","arcs":[[-64,65,66,67,-44,-35]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21209","arcs":[[68,69,70,71,-41,-24,-56]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21181","arcs":[[-59,72,73,-54,-49]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21205","arcs":[[-68,74,75,76,77,-57,-45]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21111","arcs":[[78,79,80,81,82,-61]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21073","arcs":[[-42,-72,83,84,85,-51]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21017","arcs":[[86,87,88,-69,-55,-74]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21211","arcs":[[89,90,-79,-60,-52,-86]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21011","arcs":[[-78,91,92,-73,-58]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21127","arcs":[[93,94,95,96,97,-66,-63]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21063","arcs":[[-98,98,-75,-67]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21067","arcs":[[99,100,101,102,-70,-89]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21163","arcs":[[103,104,105]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21239","arcs":[[-103,106,107,108,-84,-71]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21173","arcs":[[109,110,111,-87,-93]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21215","arcs":[[112,113,114,-80,-91]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21005","arcs":[[-109,115,116,117,-113,-90,-85]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21029","arcs":[[118,119,-81,-115]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21175","arcs":[[-97,120,121,122,123,-76,-99]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21049","arcs":[[124,125,126,-100,-88,-112]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21165","arcs":[[-77,-124,127,128,-110,-92]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21027","arcs":[[129,130,131,132,133,-105]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21093","arcs":[[134,135,136,137,-130,-104,138,-82,-120]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21113","arcs":[[139,140,141,-107,-102]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21115","arcs":[[142,143,144,-121,-96]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21091","arcs":[[-133,145,146,147]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21179","arcs":[[-118,148,149,150,-135,-119,-114]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21101","arcs":[[151,152,153,154,155]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21167","arcs":[[-142,156,157,158,-116,-108]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21159","arcs":[[159,160,161,-143,-95]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21197","arcs":[[-129,162,163,164,-125,-111]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21059","arcs":[[165,166,167,168,-152,169,-147]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21151","arcs":[[170,171,172,173,-140,-101,-127]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21229","arcs":[[-159,174,175,-149,-117]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21225","arcs":[[176,177,178,-155]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21153","arcs":[[-145,179,180,181,182,-122]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21237","arcs":[[-183,183,184,-163,-128,-123]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21065","arcs":[[-165,185,186,-171,-126]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21079","arcs":[[-174,187,188,189,-157,-141]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21071","arcs":[[-162,190,191,-180,-144]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21195","arcs":[[192,193,-191,-161,194]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21183","arcs":[[-132,195,196,197,198,-168,166,-166,-146]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21123","arcs":[[199,200,201,202,-136,-151]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21155","arcs":[[-176,203,204,205,-200,-150]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21129","arcs":[[-185,206,207,208,-186,-164]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21021","arcs":[[-190,209,210,-204,-175,-158]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21025","arcs":[[-182,211,212,213,-207,-184]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21149","arcs":[[-199,214,215,216,-153,-169]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21233","arcs":[[217,218,219,-177,-154,-217]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21137","arcs":[[220,221,222,-210,-189]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21085","arcs":[[-138,223,224,225,-196,-131]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21109","arcs":[[-209,226,227,228,229,-172,-187]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21107","arcs":[[230,231,232,-218,-216]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21045","arcs":[[-223,233,234,235,236,-205,-211]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21055","arcs":[[-220,237,238,239,240,-178]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21189","arcs":[[-214,241,242,-227,-208]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21203","arcs":[[-230,243,244,-221,-188,-173]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21119","arcs":[[-181,-192,-194,245,246,-212]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21217","arcs":[[-206,-237,247,248,-201]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21087","arcs":[[-249,249,250,251,-202]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21099","arcs":[[-203,-252,252,253,254,-224,-137]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21193","arcs":[[-247,255,256,257,258,-242,-213]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21139","arcs":[[-240,259,260,261,262]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21177","arcs":[[263,264,265,266,-231,-215,-198]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21031","arcs":[[267,268,-264,-197,-226,269]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21033","arcs":[[-233,270,271,272,-238,-219]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21051","arcs":[[-259,273,274,275,276,-228,-243]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21199","arcs":[[277,278,279,-234,-222,-245,280]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21061","arcs":[[-255,281,282,-270,-225]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21125","arcs":[[-277,283,284,285,-281,-244,-229]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21131","arcs":[[286,287,-274,-258]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21001","arcs":[[-236,288,289,290,-250,-248]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21133","arcs":[[-193,291,292,-256,-246]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21007","arcs":[[293,294,295]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21145","arcs":[[-262,296,297,298,-296,299]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21227","arcs":[[-283,300,301,302,303,-268]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21207","arcs":[[-280,304,305,306,-289,-235]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21169","arcs":[[-291,307,308,309,-253,-251]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21143","arcs":[[-273,310,311,-260,-239]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21009","arcs":[[312,313,-301,-282,-254,-310]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21047","arcs":[[-267,314,315,316,-271,-232]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21141","arcs":[[317,318,319,-265,-269,-304]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21219","arcs":[[-320,320,-315,-266]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21157","arcs":[[-312,321,322,323,-297,-261]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21121","arcs":[[324,325,-284,-276]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21095","arcs":[[-293,326,327,-287,-257]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21221","arcs":[[328,329,-322,-311,-272,-317]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21231","arcs":[[330,331,332,-305,-279]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21235","arcs":[[-326,333,334,335,-285]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21147","arcs":[[-336,336,-331,-278,-286]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21013","arcs":[[-288,-328,337,-334,-325,-275]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21039","arcs":[[-299,338,339,340,-294]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21083","arcs":[[-324,341,342,343,-339,-298]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21057","arcs":[[344,345,346,-308,-290,-307]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21003","arcs":[[-314,347,348,349,-302]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21053","arcs":[[-333,350,-345,-306]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21213","arcs":[[351,-318,-303,-350]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21171","arcs":[[-347,352,-348,-313,-309]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21105","arcs":[[-344,353,354,355,-340]]},{"type":"Polygon","properties":{"name":"KY"},"id":"21035","arcs":[[-330,356,-342,-323]]},{"type":"MultiPolygon","properties":{"name":"KY"},"id":"21075","arcs":[[[357]],[[358,-355]]]}]},"states":{"type":"GeometryCollection","bbox":[-89.56948826399986,36.497147153000014,-81.96476111899995,39.14745049100014],"geometries":[{"type":"MultiPolygon","properties":{"name":"Kentucky"},"id":"21","arcs":[[[357]],[[9,6,12,21,28,46,36,64,93,159,194,291,326,337,334,336,331,350,345,352,348,351,318,320,315,328,356,342,353,358,355,340,294,299,262,240,178,155,169,147,133,105,138,82,61,39,32,17,3]]]}]}},"arcs":[[[65038,97240],[2,-46],[3,-87],[1,-7],[3,-73],[1,-23],[2,-48],[3,-77],[2,-43],[3,-61],[1,-44],[4,-78],[2,-61],[3,-61],[6,-144],[2,-39],[1,-24],[0,-15],[2,-47],[4,-78],[5,-116],[3,-68],[2,-46],[2,-62],[2,-51],[2,-47],[3,-69],[2,-40],[3,-61],[3,-69],[2,-56],[2,-57],[4,-92],[3,-65],[1,-32],[1,-6],[1,-40],[5,-104],[2,-45],[4,-101],[2,-38],[3,-68],[4,-96],[1,-42],[2,-48],[1,-2],[5,-125],[2,-61],[4,-90],[2,-43],[8,-180],[1,-38],[3,-59],[3,-63],[2,-65],[3,-57],[2,-60],[2,-44],[2,-39],[5,-123],[2,-40],[0,-7],[2,-32],[2,-53],[1,-38],[2,-38],[3,-65],[5,-112],[2,-54],[4,-86],[2,-53],[3,-65],[3,-78],[2,-38],[3,-71],[2,-67],[2,-46],[4,-82],[4,-102],[3,-54],[2,-66],[7,-146],[2,-47],[4,-101],[2,-45],[3,-74],[3,-63],[2,-63],[3,-71],[3,-71],[2,-40],[3,-67],[8,-190],[6,-142],[1,-42],[3,-50],[3,-72],[2,-46],[3,-60],[3,-43],[3,-43],[5,-76],[10,-161],[3,-46],[2,-43],[6,-86],[5,-82],[2,-30],[10,-169],[0,-1],[3,-44],[6,-101],[8,-200],[0,-6],[-4,-45],[-5,-72],[-5,-57],[-4,-50],[-6,-73],[-4,-51],[-3,-40],[-6,-76],[-8,-91],[-4,-43],[-3,-46],[-4,-43],[-4,-59],[-6,-68],[-3,-38],[-5,-70],[-9,-107],[-2,-19],[-1,-20],[-3,-37],[-8,-96],[-10,-125],[-3,-39],[-4,-51],[-5,-66],[-5,-66],[-4,-45],[-4,-46],[0,-5],[-5,-60],[-12,-153],[-14,-174],[-3,-42],[-6,-73],[-6,-71],[-8,-106],[-3,-37],[-8,-101],[-8,-102],[-6,-63],[-3,-39],[-3,-42],[-13,-166]],[[65141,86975],[-22,38],[-17,3],[-14,-10],[-14,2],[-14,14],[-15,-6],[-30,4],[-23,-24],[-19,-9],[-14,1],[-21,-16],[-10,-34],[-17,-12],[-17,-12],[-13,-8],[-18,-15],[-12,-12],[-16,-9],[-19,-12],[-24,-23],[-14,-29],[-6,-46],[-8,-69],[-10,-52],[-11,-25],[-24,-12],[-17,-9],[-19,-21],[-16,-19],[-28,-21],[-20,-10],[-9,-31],[2,-37],[0,-66],[-16,-18],[-1,-12],[-3,-27],[7,-44],[7,-38],[4,-40],[-8,-30],[-2,-49],[17,-10],[8,-33],[-2,-39],[-66,-15]],[[64557,86033],[-39,65],[-76,130],[-97,164],[-50,85],[-35,59],[-48,81],[-28,48],[-9,16],[-5,7],[-8,14],[-89,152],[-173,294],[-60,102],[-21,37],[-9,14],[-266,451],[-91,157],[-78,132],[-2,4],[-9,42],[-3,41],[-5,-3],[-1,5],[-15,150],[-4,30],[-7,34],[-18,60],[-36,51],[-14,37],[-4,17],[-6,30],[-2,28],[-1,53],[0,5],[0,1],[-6,42],[-10,29],[-6,7],[-21,24],[-1,0],[-6,5],[-3,0],[-26,2],[-8,-3],[-2,0],[-19,-21],[-12,-23],[-2,-5],[-8,-23],[-14,-25],[-10,-12],[-17,-12],[-2,0],[-11,0],[-3,0],[-8,8],[-43,56],[-5,9],[-3,23],[-10,162],[1,18],[10,55],[2,7],[-2,10],[-3,21],[-1,39],[0,12],[0,42],[0,30],[-10,19],[-8,3],[-12,-17],[-9,-13],[-24,-75],[-2,-30],[-10,-18],[-14,-6],[-12,4],[-25,8],[-4,3],[-19,10],[-27,23],[-2,1],[-39,39],[-2,1]],[[62780,89055],[1,0],[2,2],[18,21],[14,45],[19,54],[16,59],[19,80],[0,2],[3,15],[7,37],[11,65],[12,77],[2,16],[4,47],[3,39],[4,45],[3,62],[0,42],[-3,82],[-4,66],[-2,17],[-12,53],[-4,14],[-21,53],[-18,36],[-26,48],[-12,27],[-6,17],[-6,13],[-6,3],[-6,2],[-14,17],[-16,28],[-8,15],[-16,29],[-18,32],[-9,14],[-21,28],[-15,16],[-14,10],[-19,10],[-13,17],[-12,5],[-5,2],[-6,6],[-10,10],[-10,11],[-8,9],[-22,20],[-3,1],[-29,17],[3,-15],[0,-3],[-13,-1],[-23,6],[-25,13],[-64,31],[-63,29],[-17,6],[-9,1],[-2,0],[-37,3],[-50,6],[-38,4],[-24,-1],[-23,-3],[-37,-2],[-21,3],[-5,0],[-5,-1],[-23,-5],[-58,3],[-17,6],[-24,1],[-6,0],[-8,-1],[-17,3],[-29,8],[-21,14],[-22,17],[-18,14],[-8,10],[-4,5],[-13,19],[-15,35],[-1,1],[-3,10],[-8,26],[-8,34],[-8,46],[-2,12],[-2,13],[-14,31],[-8,43],[0,1],[-1,1],[-3,5],[-3,12],[-4,9],[-3,6],[0,2],[-8,25],[-7,25],[-4,20],[0,5],[0,18],[0,6],[-6,34],[-4,17],[-7,35],[-4,73],[-3,49],[-2,15],[1,16],[6,43],[6,53],[2,15],[3,26],[2,10],[10,44],[6,20],[4,12],[15,56],[8,29],[6,22],[9,22],[4,17],[9,35],[11,43],[9,32],[3,6],[9,25],[3,8],[7,16],[11,24],[10,32],[9,29],[11,30],[5,15],[10,25],[16,36],[16,31],[17,30],[15,27],[22,41],[20,42],[13,30],[11,33],[19,47],[9,24],[8,29],[12,40],[4,16],[9,40],[1,5],[4,13],[8,24],[20,31],[19,26],[25,39],[18,30],[10,21],[11,27],[9,30],[7,28],[12,21],[21,38],[13,28],[17,37],[12,32],[8,25],[7,27],[10,54],[9,61],[1,1],[2,22],[5,46],[6,67],[7,36],[3,38],[1,8],[1,62],[0,76],[-3,43],[-2,22],[-10,83],[-5,33],[-11,73],[-21,122],[-11,55],[-14,73],[-13,72],[-7,31],[-18,63],[-12,37],[-16,40],[-23,54],[-18,42],[-24,54],[-22,61],[-5,19],[-3,32],[-2,15],[-1,7],[-2,12],[-3,6],[-1,5],[-3,8],[-8,44],[-5,31],[-19,76],[-1,3],[-1,2],[-21,78],[-10,38],[-17,53],[-11,36],[-16,68],[-25,83],[-32,95],[-29,89],[-9,32],[-12,33],[-12,39],[-11,36],[-18,42],[-1,4],[-15,47],[-21,53],[-8,18],[-8,18],[-17,29],[-14,24],[-2,5],[-18,37],[-15,29],[-3,4],[-1,2],[1,1],[-4,4],[-6,9],[-19,34],[-14,29],[-18,39],[-12,27],[-14,36],[-16,46],[-15,50],[-10,32],[-13,45],[-11,43],[-8,45],[-11,49],[0,1],[-7,38],[-7,22],[-1,3],[-10,31],[-1,5],[0,3],[-8,66],[-5,21],[-8,31],[-26,72],[-11,35],[-3,60],[0,2],[-1,72],[4,48],[0,2],[2,4],[0,2],[13,61],[12,63],[17,57],[26,60],[22,51],[16,33],[2,3],[15,22],[1,2],[24,30],[17,22],[56,66],[13,16],[76,90],[15,24],[14,12],[12,15],[13,10],[2,1],[37,43],[31,37],[22,26],[14,16],[17,27],[21,49],[11,40],[11,36],[5,12],[15,50],[13,26],[10,27],[17,39],[6,21],[15,34],[17,40],[12,23],[8,14],[11,16],[3,3],[17,39],[12,34],[11,24],[57,111],[8,23],[6,19],[3,7],[32,57],[29,67],[11,35],[37,61],[27,34],[23,29],[4,2],[11,7],[57,35],[1,1],[4,2],[44,13],[18,6],[22,19],[15,18],[7,14],[1,4],[8,37],[1,7],[13,25],[37,22],[25,15],[16,9],[58,39],[64,42],[28,21],[18,16],[22,23],[10,13],[11,14],[17,31],[12,26],[17,40],[14,32],[21,87],[46,141],[20,69],[21,71],[52,190],[64,204],[103,204],[40,69],[19,33],[48,26],[61,3],[12,1],[4,-7],[10,7],[159,-113],[42,-51],[36,-44],[13,-24],[35,-64],[7,-13],[16,-31],[29,-52],[39,-109],[20,-57],[9,-38],[8,-26],[40,-123],[32,-102],[32,-103],[19,-62],[15,-50],[44,-156],[26,-95],[86,-283],[18,-62],[9,-23],[7,-21],[39,-71],[51,-42],[49,-41],[65,-5],[81,-7],[117,-94],[23,-36],[68,-107],[79,-195],[7,-15],[31,-77],[50,-121],[11,-22],[14,-27],[21,-45],[22,-61],[50,-26],[37,-37],[22,-22],[8,-6],[1,0]],[[70187,89709],[-18,-20],[-13,-16],[-2,-2],[-22,-25],[-22,-25],[-19,-21],[-17,-19],[-27,-31],[-22,-25],[-3,-4],[-16,-18],[-29,-34],[-14,-15],[-57,-66],[-14,-15],[-26,-30],[-19,-21],[-48,-55],[-25,-28],[-10,-12],[-3,-4],[-15,-17],[-48,-54],[-21,-24],[-48,-56],[-18,-21],[-84,-97],[-19,-22],[-16,-18],[-29,-34],[-28,-32],[-44,-51],[-65,-75],[-33,-38],[-32,-36],[-86,-101],[-26,-30],[-5,-5],[-27,-31],[-28,-33],[-39,-45],[-46,-53],[-20,-23],[-17,-20],[-19,-22],[-27,-31],[-39,-45],[-13,-15],[-8,-9],[-26,-31],[-49,-56],[-42,-48],[-14,-16],[-42,-49],[-47,-55],[-41,-48],[-15,-16],[-32,-37],[-52,-60],[-20,-23],[-14,-16],[-2,-3],[-23,-26],[-22,-26],[-39,-45],[-30,-35],[-14,-17],[-18,-21],[-42,-49],[-33,-38],[-55,-64],[-52,-42],[-13,14],[-4,1],[-17,4],[-28,-12],[-9,-4],[-8,-5],[-29,-43],[-19,-32],[-17,-29],[-25,-44],[-21,-36],[-16,-23],[-13,-17],[-2,-2],[-21,-21],[-16,-3],[-20,-9],[-15,4],[-76,21],[-16,5],[-35,-16]],[[67717,87117],[21,118],[-4,8],[0,4],[5,39],[1,15],[3,64],[-1,23],[-7,58],[-2,24],[-15,188],[-8,52],[-13,45],[-18,72],[-20,45],[-37,67],[-36,13],[-23,8],[-1,0],[-36,-34],[-11,-11],[-6,-12],[-30,-65],[-9,-29],[-18,-92],[-11,-61],[-4,-22],[-1,-1],[-24,-32],[-11,-4],[-14,-3],[-15,3],[-16,15],[-11,17],[-14,27],[-17,49],[-10,43],[-8,41],[-5,53],[-2,47],[-1,122],[-7,66],[0,11],[1,102],[1,30],[-3,85],[-1,10],[-24,100],[-1,3],[-31,64],[-1,6],[-10,71],[-4,16],[-7,25],[-15,21],[-4,79],[0,48],[0,60],[3,43],[4,41],[6,49],[86,140],[3,5],[3,8],[17,34],[11,32],[1,3],[1,2],[7,32],[0,59],[-31,68],[-8,30],[-1,46],[0,1],[0,1],[9,44],[9,31],[22,89],[22,117],[0,2],[25,151],[17,116],[11,106],[5,67],[22,252],[9,61],[8,60],[13,149],[7,161],[1,43],[-4,44],[-8,24],[-20,23],[-19,60],[-16,66],[-7,35],[0,14],[0,13],[0,29],[6,27],[5,24],[-1,15],[-1,28],[0,2],[-1,2],[-36,82],[-9,28],[-20,167],[-5,43],[-11,70],[-28,163],[-17,88],[-28,81],[-54,125],[-11,50],[-17,99],[-9,69],[-7,95],[5,21],[6,7],[28,40],[71,8],[23,11],[10,10],[12,16],[34,16],[9,8],[5,11],[13,26],[16,37],[14,46],[20,74],[4,27],[-1,77],[3,26],[34,167],[24,88],[26,79],[8,17],[51,135],[22,51],[11,34],[10,48],[17,117],[2,28],[0,27],[-4,35],[-12,41],[-17,33],[-41,70],[-20,20],[-39,7],[-45,-34],[-12,-18],[-45,-90],[-1,-1],[-2,-7],[-19,-52],[-1,0],[-24,-71],[-15,-45],[-18,-82],[-5,-34],[-4,-29],[-3,-60],[-18,-169],[-54,-10],[-25,11],[-32,39],[-40,122],[-11,106],[1,69],[8,91],[6,22],[43,140],[83,238],[5,16],[2,11],[3,19],[36,109],[4,20],[1,6],[1,16],[2,46],[-3,54],[-20,71],[-14,29],[-13,26],[-3,6],[-26,36],[-47,67],[-30,31],[-9,10],[-68,18],[-46,46],[-91,213],[-67,195],[-48,202],[0,15],[-2,33],[-21,276],[-2,61],[-2,41],[8,28],[47,241],[-5,48],[-22,86],[-21,54],[-38,91],[-3,11],[-4,28],[-8,23],[-14,57],[-7,26],[-22,82],[-15,78],[-3,40],[5,106],[30,216],[18,149],[-24,99],[-21,67],[-3,17],[-35,194],[-14,80],[-2,14],[-21,62],[-11,34],[-8,48],[-4,-2],[5,79],[0,4],[1,29],[4,60],[0,16],[3,59],[-8,27],[-13,43],[-13,44]],[[66581,98022],[55,61],[3,6],[24,47],[6,10],[11,21],[8,16],[4,7],[25,51],[1,1],[1,2],[0,2],[30,74],[9,38],[65,256],[38,96],[29,74],[19,49],[3,8],[28,40],[29,42],[2,3],[1,2],[16,19],[21,25],[38,43],[21,3],[67,9],[26,2],[53,-35],[42,-27],[45,-60],[22,-32],[1,-1],[19,-39],[34,-70],[27,-80],[20,-60],[7,-18],[11,-34],[21,-85],[5,-24],[26,-107],[12,-50],[11,-85],[15,-124],[13,-106],[-9,-41],[-10,-159],[-4,-66],[3,-19],[19,-104],[2,-130],[1,-88],[0,-9],[-3,-49],[-2,-28],[0,-141],[2,-69],[2,-53],[2,-54],[16,-162],[10,-81],[3,-29],[0,-1],[0,-3],[1,-5],[0,-4],[0,-1],[3,-24],[3,-39],[1,-4],[3,-12],[1,-3],[2,-5],[4,-10],[2,-4],[10,-20],[12,-69],[6,-32],[2,-8],[6,-14],[0,-2],[4,-8],[18,-27],[13,-21],[21,-29],[17,-20],[71,-74],[108,-113],[22,0],[29,0],[7,0],[15,19],[6,7],[10,-4],[46,-21],[34,-16],[7,0],[38,-2],[19,-1],[30,-1],[76,-31],[92,-37],[26,-11],[37,-15],[106,-44],[58,-45],[40,-36],[94,-82],[142,-171],[72,-114],[52,-82],[12,-29],[82,-192],[49,-115],[26,-59],[20,-69],[91,-304],[7,-24],[10,-55],[15,-85],[1,-5],[13,-78],[31,-172],[20,-174],[9,-79],[1,-22],[1,-9],[4,-69],[3,-50],[2,-77],[1,-41],[0,-1],[1,-26],[2,-87],[7,-250],[1,-39],[6,-137],[14,-66],[11,-58],[17,-85],[19,-99],[14,-71],[14,-77],[14,-50],[6,-24],[44,-160],[45,-167],[19,-41],[47,-97],[26,-78],[45,-137],[11,-35],[31,-93],[38,-115],[23,-71],[11,-32],[8,-21],[5,-14],[37,-94],[18,-72],[5,-24],[28,-113],[16,-66],[4,-16],[31,-125],[38,-156],[8,-31],[3,-13],[37,-140],[15,-37],[19,-49],[56,-218],[19,-71],[5,-63],[21,-255],[1,-18],[3,-145],[3,-185],[0,-30],[0,-2]],[[67717,87117],[-1,-1],[-42,-26],[-5,-2],[-1,0],[-7,-2],[-22,-8],[-23,-8],[-13,-4],[-13,-5],[-37,-13],[-36,-13],[-16,-5],[-17,-6],[-14,-5],[-21,-7],[-15,-6],[-38,-13],[-25,-9],[-25,-9],[-24,-8],[-23,-8],[-24,-8],[-38,-14],[-41,-14],[-29,-11],[-31,-10],[-33,-12],[-33,-12],[-22,-7],[-15,-5],[-16,-6],[-21,-8],[-20,-6],[-45,-17],[-55,-19],[-5,-2],[-19,-6],[-18,-7],[-24,-8],[-24,-9],[-19,-6],[-19,-7],[-23,-8],[-19,-7],[-38,-13],[-49,-17],[-17,-6],[-18,-7],[-22,-7],[-22,-8],[-33,-12],[-42,-15],[-16,-6],[-22,-7],[-13,-5],[-2,0],[-23,-9],[-37,-13],[-24,-8],[-66,-24]],[[66262,86593],[-51,-17],[-25,-9],[-66,-23],[-24,-9],[-28,-10],[-19,-7],[-30,-2],[-14,1],[-25,2],[-22,1],[-28,2],[-13,1],[-22,1],[-16,1],[-29,2],[-20,1],[-15,1],[-24,1],[-56,4],[-14,0],[-21,2],[-13,1],[-14,0],[-26,2],[-27,2],[-22,1],[-33,2],[-32,2],[-14,1],[-13,0],[-35,3],[-36,2],[-16,1],[-17,1],[-16,1],[-7,0],[-28,18],[-37,24],[-21,13],[-2,2],[-13,14],[-29,74],[-35,90],[-11,26],[-62,159]],[[65038,97240],[5,-5],[19,-13],[29,-15],[10,-4],[3,-1],[22,0],[17,1],[17,3],[29,-1],[39,-3],[20,2],[22,3],[23,9],[19,11],[24,20],[16,19],[16,27],[16,24],[9,15],[14,14],[40,29],[22,13],[10,5],[18,12],[19,13],[15,10],[15,10],[1,0],[0,1],[35,16],[22,12],[8,4],[43,24],[27,19],[16,13],[18,18],[13,20],[7,11],[1,2],[7,15],[7,12],[16,34],[4,9],[2,3],[13,29],[12,24],[5,11],[12,26],[3,6],[14,37],[13,38],[21,72],[11,39],[14,50],[21,61],[12,31],[7,16],[12,31],[22,39],[25,27],[12,8],[2,1],[9,3],[7,2],[26,5],[17,0],[2,-2],[1,0],[19,-13],[30,-9],[1,0],[14,-12],[10,-10],[36,-40],[4,-5],[7,-9],[24,-29],[25,-34],[24,-38],[35,-52],[13,-16],[7,-6],[21,-11],[18,-6],[2,0],[6,-1],[16,1],[8,2],[14,3],[11,3],[2,1],[42,18],[16,7],[14,6],[44,24],[1,2],[6,4],[45,37]],[[70536,78675],[-15,0],[-11,-11],[-1,-4],[-8,-17],[-11,-18],[-29,-24],[-20,-3],[-29,6],[-15,16],[-13,-5],[-34,-10],[-48,-17],[-72,-24],[-48,-16],[-29,-9],[-64,-22],[-15,-5],[-17,-5],[-40,-13],[-15,-5],[-52,-18],[-98,-31],[-25,-8],[-123,-37],[-208,-65],[-31,-9],[-21,-7],[-62,-19],[-33,-11],[-13,-4],[-10,-3],[-131,-40],[-197,-61],[-49,-15],[-264,-82],[-61,-19],[-59,-18],[-18,-2],[-20,-12],[-16,-6],[-19,-5],[-19,-4],[-66,-21],[-15,-5],[-17,-5],[-69,-19],[-73,-22],[-111,-33],[-77,-23],[-55,-17],[-3,-1],[-17,75],[-12,26],[-9,26],[-4,-2],[-52,57],[-21,8],[-14,1],[-14,-3],[-17,-13],[-4,-6],[-6,-9],[-6,-12],[-12,-44],[-1,-2],[-9,-51],[-5,-26],[-1,-17],[-1,-34],[-3,-19],[-41,-42],[1,-25],[0,-11],[0,-4],[-3,-9],[-6,-3],[-1,1],[-7,2],[-4,1],[-26,16],[-5,9],[-28,18],[-5,2],[-10,1],[-10,-11],[-7,-21],[4,-51],[2,-19],[7,-24],[20,-34],[13,-13],[25,-43],[9,-23],[1,-13],[1,-3],[0,-1],[-1,-20],[-5,-25],[-5,-7],[-7,-4],[0,-1],[-1,0],[-17,9],[-8,0],[-10,-8],[-24,-59],[-21,-68],[-1,-13],[2,-5],[11,-31],[5,-9],[7,-4],[6,1],[13,8],[19,5],[6,1],[8,1],[2,0],[8,-5],[1,-2],[15,-38],[9,-28],[0,-29],[-2,-14],[-10,-14],[-70,-94],[-14,-19],[-10,-7],[-13,2],[-12,11],[-6,3],[-3,2],[-23,13],[-7,-7],[-3,-10],[-5,-36],[0,-5],[-2,-51],[-1,-3],[-14,-98],[-1,-4],[-1,18],[-2,53],[-1,8],[-5,12],[-7,6],[-86,20],[-49,-7],[-12,-2],[-1,0],[-4,-2],[-6,-5],[-7,-4],[-6,-17],[-1,-30],[0,-3],[1,-4],[3,-12],[26,-44],[2,-14],[0,-28],[-5,-37],[-11,-60],[-1,-4],[-11,-25],[-1,-1],[-1,2],[-10,16],[5,38],[9,40],[1,41],[-13,15],[-15,-18],[-28,-60],[-16,-20],[-13,-4],[-16,9],[-1,2],[-1,-2],[-13,18],[-6,18],[0,9],[0,16],[13,36],[3,20],[0,20],[0,1],[-2,8],[-3,13],[-2,8],[-6,21],[-10,21],[-9,11],[-6,3],[-11,-8],[-37,-64],[-2,-4],[-25,24],[-13,14],[-4,3],[-14,19],[-16,34],[-18,37],[-4,12],[-2,3],[0,2],[-1,6],[0,2],[-2,27],[0,50],[-2,17],[0,4],[-1,4],[-17,71],[-3,13],[-9,13],[-2,-1],[-13,-3],[-1,0],[-1,-1],[-17,-12],[-12,-39]],[[66973,77183],[-46,542],[0,8],[-74,787],[-15,213],[-1,17],[-9,115],[-28,361],[-10,125],[-19,222],[-29,357],[-13,158],[-16,189],[-15,179],[-5,86],[-6,83],[-9,112],[-15,199],[-5,63],[0,2],[-15,183],[-6,82],[-20,264],[-18,248],[-6,80],[-11,136],[-5,64],[-2,39],[-3,37],[-4,51],[-7,87],[-22,301],[0,4],[-41,541],[0,3],[-3,46],[-8,98],[-3,42],[-8,106],[-22,258],[-5,62],[-15,178],[-4,54],[-14,186],[-9,126],[-3,43],[-10,170],[-11,186],[-8,104],[-16,220],[-12,160],[-8,105],[-22,286],[-5,69],[-13,163],[-3,38],[-10,125],[-16,212],[-12,152],[-15,190],[19,93]],[[70187,89709],[6,-69],[-1,-17],[0,-10],[0,-4],[-2,-49],[0,-4],[-6,-131],[-3,-26],[0,-7],[-3,-67],[1,-53],[0,-25],[-1,-50],[-1,-24],[-2,-30],[-2,-23],[0,-2],[1,0],[1,0],[0,-1],[-1,-56],[-1,-11],[-1,-16],[0,-30],[0,-37],[0,-18],[-3,-55],[0,-52],[1,-40],[1,-42],[0,-3],[0,-90],[-1,-113],[0,-1],[0,-2],[0,-72],[8,-129],[7,-164],[10,-144],[12,-118]],[[70207,87924],[-16,-46],[-1,-3],[-26,-64],[-3,-8],[-26,-65],[2,-51],[13,-296],[1,-13],[4,-82],[4,-101],[9,-179],[13,-266],[2,-41],[5,-127],[6,-125],[6,-123],[5,-116],[3,-83],[5,-85],[6,-120],[8,-180],[11,-219],[22,-420],[6,-109],[3,-72],[7,-169],[0,-11],[2,-36],[4,-84],[12,-287],[6,-164],[15,-343],[22,-523],[8,-196],[3,-75],[5,-101],[13,-320],[2,-45],[6,-128],[5,-131],[3,-58],[4,-89],[11,-267],[1,-19],[1,-32],[12,-282],[8,-198],[1,-6],[5,-118],[4,-107],[4,-95],[2,-44],[6,-137],[7,-157],[1,-37],[12,-286],[2,-42],[2,-51],[6,-135],[3,-74],[7,-155],[10,-250],[8,-171],[11,-253],[12,34],[23,66],[47,138],[29,-194],[7,-54],[18,-126],[16,-112],[4,-46],[1,-38],[-7,-10],[-80,17],[-9,-6],[-12,-26],[-19,-38],[-4,-19],[-2,-7],[0,-5],[-1,-32],[0,-24],[3,-97]],[[64557,86033],[-68,-20],[-24,-7],[-161,-44],[-29,-9],[-79,-22],[-29,-9],[-61,-19],[-12,-3],[-8,-2],[-29,-8],[-20,-5],[-16,-3],[-36,-13],[-30,-9],[-40,-12],[-15,-5],[-45,-13],[-84,-26],[-110,-31],[-182,-51],[-98,-28],[-42,-12],[-131,-36],[-171,-50],[-66,-19],[-4,-107],[-7,-149],[-8,-188],[-4,-79],[-1,-64],[-5,-129],[-8,-168],[-4,-93],[-6,-143],[-1,-39],[-9,-252],[-2,-53],[-2,-42],[0,-13],[-3,-127],[-3,-53]],[[62904,83878],[-10,89],[-15,21],[-17,6],[-6,3],[-41,-14],[-31,-94],[-14,-42],[-10,-16],[-21,-94],[-9,-21],[-15,-25],[-18,-25],[-8,-4],[-9,14],[-34,-9],[-23,-20],[-15,-67],[-87,-73],[-1,-8],[-5,-25],[1,-4],[26,-122],[1,-8],[21,-15],[11,-13],[8,-16],[0,-1],[2,-12],[0,-15],[-9,-43],[-8,-14],[-10,-8],[-28,-7],[-36,9],[-14,10],[-29,28],[-23,25],[-38,59],[-8,22],[-32,88],[-52,53],[-14,-8],[-16,-45],[-93,-263],[-2,-4],[-3,-8],[-4,-7],[-5,-5],[-5,-4],[-12,-112],[-16,-44],[-5,-6],[-7,-1],[-111,37],[-11,9],[-17,18],[-25,41],[0,13],[-5,31],[0,3],[-23,-1],[-3,-2],[-13,-14],[-75,-74],[-20,-35],[-34,-85],[-1,-2],[-2,-25],[1,-27],[0,-6],[2,-8],[3,-4],[3,-18],[0,-15],[-8,-46],[-5,-29],[-5,-20],[-10,-20],[-1,-2],[-10,-20],[-46,-71],[-5,-6],[-37,-43],[-40,69],[-7,-3],[-40,-16],[-17,-7],[-3,-1],[-2,-14],[0,-149],[7,-130],[0,-3],[1,-5],[1,-17],[-2,-12],[-15,-34],[-6,-12],[-6,-6],[-2,0],[-8,-1],[-2,0],[-2,3],[-11,14],[-4,4],[-15,40],[-5,13],[-1,0],[-83,2],[-9,3],[-6,-12],[-26,-94],[-3,-12],[-15,-45],[0,-1],[-7,-18],[9,-15],[1,-2],[4,-52],[-24,-94],[-14,13],[-9,0],[-38,-30],[-14,-4],[-2,0],[-6,4],[-40,27],[-73,32],[-2,2],[-6,7],[-8,24],[-5,16],[-6,-2],[-9,-7],[-6,-6],[-22,-38],[-17,-30],[-18,-31],[-7,-16],[-3,-10],[-12,-76],[-10,-58],[-4,-20],[-7,-25],[-4,-13],[-11,-26],[-6,-11],[-5,-5]],[[60956,81672],[-31,56],[0,1],[-22,37],[-53,92],[-17,31],[-94,169],[-45,80],[-55,97],[-49,86],[-11,30],[-9,32],[-16,57],[-8,33],[-8,35],[-8,32],[-14,40],[-19,85],[-22,88],[-12,46],[-81,319],[-31,124],[-121,473],[-22,84],[-8,35],[-1,4],[-50,195],[-18,72],[-10,48],[-10,44],[-23,106],[-53,189],[-40,145],[-9,31],[-50,181],[-11,37],[-9,33],[-23,86],[-10,33],[-11,43],[-18,69],[-8,30],[-6,23],[-10,33],[-12,40],[-4,15],[-19,67],[-1,3],[-16,78]],[[59778,85439],[12,11],[6,6],[18,26],[2,4],[8,7],[18,26],[21,29],[10,8],[2,2],[14,16],[9,11],[3,5],[11,12],[3,4],[10,13],[12,19],[12,22],[12,21],[13,20],[20,35],[17,35],[4,8],[30,66],[19,46],[8,18],[13,29],[1,1],[2,3],[7,14],[1,1],[24,44],[23,37],[7,6],[4,6],[3,4],[6,11],[14,12],[3,3],[8,7],[1,0],[23,12],[4,4],[4,1],[4,-1],[4,-1],[1,0],[6,1],[9,3],[15,4],[8,1],[7,0],[16,2],[13,1],[3,0],[26,1],[19,2],[13,-2],[12,-4],[17,-5],[38,-12],[55,-16],[30,-7],[37,-11],[2,-1],[2,0],[3,-1],[5,0],[7,-1],[16,-2],[17,-10],[12,-7],[26,-14],[32,-20],[5,-2],[26,-13],[26,-13],[3,-2],[14,-8],[29,-13],[19,-4],[25,1],[14,4],[8,2],[20,11],[21,13],[15,10],[12,8],[16,10],[23,15],[21,17],[37,37],[19,23],[12,19],[13,20],[20,24],[15,9],[2,0],[3,3],[4,4],[16,23],[6,9],[20,18],[27,18],[27,30],[16,16],[14,17],[2,3],[6,8],[12,17],[5,8],[23,31],[21,26],[15,21],[18,30],[25,41],[29,38],[36,42],[21,19],[13,13],[2,3],[5,7],[16,20],[15,17],[14,7],[20,7],[20,9],[23,11],[4,1],[6,-4],[2,-2],[11,-3],[26,-9],[11,-7],[18,-18],[22,-21],[20,-11],[21,-10],[21,-8],[6,-1],[19,3],[22,-7],[13,-4],[18,-7],[60,-16],[62,-22],[44,-21],[19,-12],[1,0],[42,-26],[56,-42],[33,-28],[13,-11],[23,-20],[44,-39],[25,-27],[16,-13],[1,0],[6,-6],[25,-12],[40,-16],[5,-2],[22,-10],[15,-3],[17,-1],[21,-1],[43,1],[17,4],[29,14],[1,1],[22,13],[14,17],[9,11],[12,28],[3,7],[14,77],[3,25],[1,12],[3,76],[1,52],[-2,38],[-5,30],[-5,34],[-3,23],[-3,38],[-2,42],[-3,28],[0,4],[-8,71],[-8,43],[-8,46],[-8,49],[-7,43],[-10,40],[-13,43],[-13,46],[-2,13],[-10,55],[-9,38],[-4,10],[-2,8],[-16,42],[-4,12],[-15,47],[-9,33],[-12,46],[-16,51],[-5,21],[-8,44],[-16,103],[-5,42],[-3,39],[-1,1],[-7,50],[-1,34],[-1,80],[0,39],[0,6],[2,22],[2,17],[13,66],[4,21],[8,38],[23,80],[18,51],[12,37],[11,24],[8,18],[3,7],[34,68],[24,44],[13,20],[18,29],[15,27],[7,12],[21,27],[11,12],[8,9],[8,9],[17,25],[4,8],[10,21],[0,1],[5,9],[14,24],[28,38],[6,12],[6,10],[22,54],[8,34],[8,31],[6,19],[31,63],[12,24],[16,21],[2,1]],[[74499,85682],[0,-2],[-12,-66],[-17,-92],[-1,-6],[-18,-93],[-2,-13],[-21,-114],[-1,-5],[-7,-40],[-10,-53],[-8,-43],[-23,-121],[-6,-34],[-24,-134],[-31,-180],[-43,-236],[-137,-770],[-8,-44],[-11,-63],[-42,-234],[-15,-86],[-7,-39],[-28,-158],[-7,-39],[-40,-222],[-12,-68],[-20,-111],[-2,-12],[-14,-80],[-14,-78],[-40,-221],[-14,-80],[-25,-145],[-48,-261],[-6,-38],[-34,-194],[-17,-99],[-13,-76],[-19,-107],[-12,-77],[-16,-95],[-18,-109],[-11,-63],[-17,-98],[-23,-138],[-28,-163],[-11,-66],[-16,-91],[-8,-52],[-6,-42],[-19,-116],[-13,-117],[-44,-216],[-12,-76],[-29,-172],[-12,-72],[-16,-88],[-28,-175],[-15,-94],[0,-2]],[[73348,79103],[-4,-6],[-12,-19],[-2,-43],[2,-13],[3,-28],[-2,-44],[-7,-59],[-2,-53],[-11,-42],[-10,-27],[-13,-33],[-11,-24],[-9,3],[-5,2],[-2,1],[-2,4],[-5,8],[-5,8],[-4,38],[0,6],[2,40],[-8,41],[-4,18],[-16,40],[-11,21],[-7,7],[-1,1],[-10,4],[-2,0],[-18,0],[-5,0],[-13,-5],[-4,-3],[-3,-10],[-1,-8],[-16,-115],[-3,-17],[-5,-14],[-8,-15],[-9,-9],[-59,-30],[-6,-1],[-8,-2],[-48,16],[1,4],[26,125],[1,9],[2,7],[12,94],[-14,64],[0,1],[-2,7],[0,4],[0,9],[10,12],[5,6],[-24,34],[-18,26],[-2,2],[-30,43],[-9,-57],[-4,-23],[-30,-76],[-7,-26],[-1,-14],[1,-2],[2,-21],[0,-6],[2,-8],[2,-12],[17,-93],[-8,-36],[-28,-118],[-93,5],[-5,9],[-3,6],[-3,8],[0,22],[1,12],[6,15],[11,34],[1,6],[3,10],[0,4],[8,129],[1,36],[1,8],[-1,148],[0,15],[0,1],[-2,13],[-16,32],[-8,9],[-5,1],[-29,-7],[-13,-11],[-99,-123],[-18,-30],[-16,-46],[-3,-8],[-1,-1],[-6,-5],[-3,-2],[-4,1],[-5,0],[-2,0],[-13,6],[-16,12],[-5,12],[-2,2],[-2,15],[-1,1],[0,5],[0,21],[9,38],[2,5],[11,24],[11,14],[3,5],[3,4],[8,-1],[1,-1],[13,-12],[2,-1],[8,-5],[13,3],[7,9],[10,27],[3,17],[1,55],[0,2],[-4,68],[-1,13],[-2,19],[-9,32],[-4,9],[-6,13],[-9,14],[-12,14],[-21,14],[-1,0],[-5,-1],[-6,-1],[-8,-9],[-2,-2],[-1,-3],[-12,-22],[-35,-88],[-1,-7],[2,-18],[1,-3],[7,-19],[0,-4],[7,-32],[3,-25],[-1,-25],[-5,-40],[-5,-29],[-6,-20],[-18,-41],[-17,-31],[-4,-4],[-5,0],[-9,5],[-22,23],[-5,12],[-2,37],[6,30],[3,10],[18,63],[7,37],[0,25],[-8,29],[-8,21],[-7,7],[-8,4],[-4,-1],[-18,-3],[-8,-7],[-8,-10],[-2,-2],[-2,-5],[-11,-21],[-6,-8],[-1,-3],[-9,-12],[-2,3],[-16,20],[-1,2],[-3,15],[0,7],[0,12],[0,16],[3,19],[1,3],[0,2],[17,61],[2,12],[1,8],[0,21],[-1,12],[-5,10],[-12,14],[-5,2],[-6,2],[-4,2],[-8,0],[-3,-12],[-9,-40],[-1,-2],[-3,-8],[-42,-111],[-3,-6],[0,-1],[-5,-11],[-9,-10],[-4,-5],[-34,-3],[-5,108],[-2,19],[-5,28],[-2,59],[0,2],[-1,15],[-3,17],[-21,53],[-6,30],[-1,65],[-28,-17],[-7,-4],[-12,-7],[-23,-14],[1,-60],[0,-7],[1,-13],[1,-12],[3,-13],[17,-83],[19,-108],[2,-61],[0,-3],[-1,-2],[-53,-61],[-22,-12],[-24,-28],[-42,-85],[-19,-48],[-5,-36],[0,-5],[2,-51],[-6,-31],[-5,-8],[-9,-14],[-7,-10],[-2,-1],[-7,-5],[-15,-4],[-4,3],[-51,-37],[-8,-9],[-5,-10],[-1,-6],[-2,-12],[-1,-19],[1,-15],[16,-36],[18,-55],[1,-28],[-6,-17],[-2,-7],[-2,-6],[-15,-14],[-2,-1],[-10,-2],[-20,-6],[-12,-8],[-1,-6],[-8,-4],[-1,0],[-5,-15],[-6,-53],[0,-30],[-2,-37],[-5,-27],[-64,-162],[-4,-5],[-7,-7],[-40,0],[-30,-10],[-18,-11],[-5,-11],[-15,-32],[-1,-5],[-2,-10],[-9,-38],[28,-158],[-38,-56],[-9,-34],[-19,-5],[-10,-37],[-13,-26],[-12,-16],[-15,-28],[-14,-11],[-14,9],[-13,-16],[-12,-18],[-13,-18],[-4,-36],[4,-40],[-8,-31],[-29,-19],[-11,-25],[-25,-26],[-11,-31],[-12,-22],[-29,-25],[-14,-7],[-36,33],[-29,-25],[-17,17],[-20,40],[3,40],[-8,33],[-17,26],[-26,-1],[-29,14],[-23,-19]],[[71105,77608],[-7,45],[-3,17],[-15,4],[-13,50],[-13,12],[-12,25],[-10,28],[-14,1],[-14,-4],[-12,-12],[-11,-26],[-13,-12],[-14,16],[-13,22],[-14,-1],[-11,-19],[-14,0],[-14,10],[-15,6],[-12,-22],[-14,-23],[-9,-39],[-12,-18],[-14,-7],[-14,0],[-12,-20],[-12,-17],[-12,-15],[-10,-30],[-11,-25],[-22,14],[-22,18],[-14,-8],[-19,-22],[-10,-28],[-13,-13],[-15,-25],[-14,-8],[-30,-10],[-13,24],[-13,-2],[-14,-3],[-21,16],[-15,-3],[-12,-18],[-10,-26],[-10,8],[-8,11],[-20,47],[-24,60],[-21,64],[-4,13],[-22,106],[-1,20],[-1,10],[0,4],[2,38],[1,15],[6,24],[11,25],[1,2],[12,19],[10,12],[10,12],[22,11],[32,-3],[49,8],[14,9],[11,13],[10,26],[1,2],[1,6],[6,35],[7,34],[3,57],[1,31],[1,10],[-2,51],[-25,308],[-3,32],[-6,51],[-12,44]],[[70207,87924],[0,-3],[1,-10],[7,-48],[3,-19],[23,-125],[4,-21],[15,-71],[14,-71],[16,-55],[27,-93],[31,-82],[10,-27],[4,-11],[2,-4],[49,-109],[19,-56],[5,-15],[26,-30],[1,-2],[38,-45],[31,-40],[16,-11],[79,-52],[105,-44],[17,-7],[29,-10],[60,-20],[18,-6],[87,-33],[71,-29],[71,-29],[49,-24],[51,-25],[54,-39],[67,-48],[35,-28],[31,-25],[14,-14],[12,-13],[33,-20],[14,-9],[14,-9],[24,-23],[51,-50],[59,-57],[16,-18],[58,-62],[48,-46],[15,-11],[15,-13],[23,-22],[19,-17],[-1,-5],[-18,-2],[15,-25],[16,-26],[5,-9],[9,-7],[39,-30],[54,-43],[1,-1],[1,-1],[87,-69],[15,-19],[11,-10],[1,-1],[17,-10],[26,-7],[22,-7],[15,-2],[44,-37],[11,-7],[39,-22],[10,-6],[21,-11],[17,-6],[36,-23],[20,-13],[41,11],[19,8],[42,8],[25,0],[29,1],[35,-3],[20,-1],[31,8],[18,5],[44,-13],[14,-7],[32,-14],[76,37],[25,17],[16,11],[7,5],[17,10],[31,18],[26,18],[1,1],[20,13],[39,24],[22,15],[3,2],[17,12],[12,9],[15,12],[16,11],[36,31],[25,26],[19,20],[26,26],[2,2],[9,8],[17,15],[29,20],[50,16],[16,9],[14,7],[3,2],[18,15],[17,13],[31,28],[57,43],[113,18],[62,43],[35,6],[116,-2],[36,-9],[107,-26],[36,-25],[41,-12],[53,-45],[34,-41],[51,-75],[129,-258],[19,-39],[22,-45],[45,-54],[90,-65],[146,39],[1,-1]],[[66973,77183],[-12,-148],[-13,-136],[-4,-43],[-7,-75],[-10,-110],[-26,-271],[-39,-436],[-7,-69],[0,-2],[-26,26],[-12,13],[-13,12],[-13,13],[-14,14],[-13,14],[-16,15],[-13,13],[-14,14],[-7,7],[-5,4],[-15,-4],[-13,-20],[-13,-10],[-1,-1],[-14,-5],[-11,19],[-14,3],[-11,-22],[-9,-27],[-14,-5],[-12,-21],[4,-36],[-7,-35],[-12,-18],[-13,2],[-13,-7],[-15,6],[-14,3],[-11,21],[-12,22],[-13,-12],[-13,-12],[-14,-4],[-14,-8],[-13,12],[-18,3],[-14,-1],[-12,-9],[-5,-39],[-11,-27],[-11,-23],[-13,-9],[-14,-12],[-12,12],[-15,7],[-16,-18],[-9,-30],[-9,-34],[-16,-10],[-15,3],[-17,2],[-12,-23],[-5,-38],[-5,-36],[-13,0],[-14,-3],[-14,-11],[-9,-27],[-15,-4],[-15,-7],[-14,-4],[-7,-33],[-2,-40],[-13,-5],[-16,-2],[-5,-36],[-12,-18],[-15,22],[-13,-19],[-10,-24],[-9,-30],[-12,-30],[-13,-19],[-14,-6],[-15,5],[-20,0],[-15,0]],[[65908,75306],[0,-1],[-31,-37],[0,1],[-12,14],[-27,-75],[-70,-194],[-25,-72],[-20,-56],[-106,-295],[-2,-6],[-11,-41]],[[65604,74544],[-40,46],[-60,71],[-143,165],[-18,20],[-29,1],[-28,3],[-10,0],[-5,1],[-110,9],[-3,0],[-54,5],[-4,0],[-20,15],[-10,8],[-11,9],[-1,1],[-2,3],[-20,39],[-14,26],[-1,14],[-1,129],[-28,209],[-71,230],[-40,64],[-56,91],[-18,125],[-2,13],[-7,9],[-19,31],[-4,20],[12,28],[4,15],[0,4],[1,21],[-1,113],[-7,18],[-8,-3],[-20,-18],[-9,-2],[-20,19],[-17,16],[-15,17],[-6,13],[-1,9],[2,16],[7,64],[9,36],[5,9],[8,7],[4,4],[37,29],[0,10],[-4,11],[-20,19],[-11,3],[-24,-3],[-30,-33],[-8,7],[-36,0],[-9,20],[-51,303],[-52,-27],[-83,-44],[-1,-1],[-7,-4],[-8,0],[-4,5],[-6,25],[-14,136],[-2,75],[0,10],[45,281],[4,17],[17,32],[2,5],[24,25],[2,15],[0,18],[-15,44],[-11,21],[-7,5],[-4,4],[-8,0],[-25,-8],[-6,-2],[-51,27],[-4,15],[-43,160],[-9,34],[3,12],[21,79],[2,1],[29,20],[6,3],[5,12],[4,20],[1,6],[-1,17],[0,5],[-1,22],[-2,13],[-3,22],[-5,12],[-34,40],[-12,7],[-6,3],[-15,-3],[-8,4],[-17,26],[-6,23],[1,21],[-68,99],[-18,34],[-21,37],[-14,25],[-38,66],[-20,34],[-16,32],[-13,22],[-70,126],[-14,32],[-48,84],[-11,17],[-61,111],[-58,104],[-82,148],[-2,5],[-124,225],[-24,43],[-35,58],[-28,50],[-110,200],[-14,19],[-29,54],[-86,158],[-87,160],[-37,67],[-15,28],[-67,133],[-3,105],[-4,131],[-2,40],[-3,74],[-1,48],[-4,111],[-4,87],[-4,113],[0,3],[-6,146],[-2,44],[-6,162],[-6,178],[-10,250],[-3,96],[-4,105],[-3,73],[-15,403],[-2,42],[-3,91],[-13,300],[-1,47],[-1,13],[-6,156],[-4,80],[-4,116],[-2,46],[-5,138],[-3,72],[-2,45],[-9,195],[-14,311]],[[77905,80722],[22,-21],[35,-34],[6,-23],[22,-93],[25,-100],[15,-68],[16,-64],[83,-366],[37,-168],[5,-26],[1,-8],[-4,-44],[-14,-189],[-20,-312],[-4,-58],[-22,-268],[-4,-54],[-7,-91],[-9,-147],[-28,-377],[0,-11],[-7,-89],[-3,-39],[-2,-28],[0,-11],[-15,-214],[-8,-118],[-15,-218],[-7,-112],[-12,-184],[-16,-243],[-10,-144],[-7,-97],[-4,-55],[-9,-115],[-1,-2],[0,-8]],[[77944,76523],[-91,-72],[-16,-8],[-75,-49],[-22,-14],[-31,-20],[-61,-38],[-68,-43],[-33,-25],[-24,-19],[-24,-18],[-24,-21],[-187,-163],[-60,-50],[-54,-47],[-22,-19],[-18,-14],[-57,-45],[-20,-15],[-161,-128],[-24,-29],[-28,-34],[-20,-24],[-47,-61],[-47,-56],[-98,-115],[-36,-41],[-13,-15],[-16,-10],[-45,-16],[-75,-34],[0,-1],[-16,-11],[-121,-122],[-22,-23],[-139,-138],[-71,-71],[-96,-96],[-119,-119],[-13,-13],[-2,-2],[-36,-36],[-6,-6],[-21,-21],[-109,-109],[-63,-63],[-161,-162],[-46,-46],[-43,-42],[-152,-150],[-122,-120],[-90,122],[-31,45],[-89,130],[-12,18],[-27,39],[-4,6],[-9,14],[-30,43],[-1,1],[-16,23],[-15,22],[-135,194],[-14,20],[-58,84],[-5,8],[-13,20],[-13,19],[-8,13],[-32,47],[-10,14],[-44,65],[-47,67],[-233,334]],[[74153,75277],[-58,170],[-31,92],[-11,32],[-57,169],[-9,33],[-28,166],[-26,132],[-51,207],[-53,205],[-13,52],[-19,72],[-16,65],[-10,45],[-21,93],[-14,306],[-20,359],[-10,200],[-11,226],[-5,96],[-12,200],[-9,170],[-4,53],[-3,83],[-2,47],[-12,134],[-12,-19],[-14,2],[-14,9],[-18,-2],[-8,0],[-6,0],[0,2],[-6,33],[2,42],[1,7],[17,19],[13,1],[6,0],[13,13],[1,50],[-9,34],[-13,24],[-12,25],[-17,18],[-7,-3],[-9,-3],[-18,-10],[-23,1],[-13,12],[-12,16],[-17,15],[-6,4],[-15,11],[-14,3],[-14,-5],[-1,-1],[-19,-14],[-13,-10],[-15,19],[8,32],[14,31],[1,7],[5,26],[-4,13],[-1,4],[-4,12],[-7,3],[-9,4],[-11,-1],[-4,0],[-4,-1],[-12,-4]],[[74499,85682],[49,-26],[2,-123],[23,-2],[1,0],[52,-11],[1,0],[8,-3],[19,-7],[30,-11],[2,-1],[68,-34],[9,-5],[1,0],[1,-1],[6,-4],[17,-12],[66,-2],[26,-31],[54,-33],[54,-56],[54,-71],[59,-98],[23,-42],[37,-107],[43,-181],[6,-47],[16,-50],[35,-320],[23,-271],[11,-137],[16,-88],[1,-4],[39,-127],[45,-130],[21,-47],[38,-61],[47,-55],[112,-99],[51,-33],[102,-35],[104,-69],[97,-108],[66,-74],[4,-6],[5,-25],[16,-172],[5,-21],[8,-39],[22,-179],[7,-74],[15,-180],[7,-80],[26,-344],[27,-201],[26,-114],[23,-109],[38,-107],[8,-13],[46,-84],[65,-75],[8,-18],[5,4],[2,-1],[31,-24],[22,-21],[29,-19],[36,-18],[11,-5],[170,-54],[63,-10],[3,6],[134,-43],[44,-38],[47,-70],[14,-34],[17,-20],[92,-119],[5,4],[7,-8],[65,-68],[20,-31],[161,-172],[135,-105],[18,-12],[84,-58],[25,8],[32,11],[115,69],[42,47],[45,68],[33,164],[3,25],[5,21]],[[60956,81672],[-11,-27],[-18,-107],[-1,-16],[-9,-189],[2,-3],[3,-19],[0,-19],[-1,-14],[-9,-19],[-2,-3],[-8,-5],[-5,-2],[-9,-2],[-32,-2],[-6,-1],[-34,-2],[-9,-1],[-38,-28],[-21,-16],[-30,33],[-13,24],[-16,30],[-49,-8],[-10,-1],[-14,-2],[-41,-7],[-30,-26],[-31,-32],[-3,-9],[-21,-72],[-14,-37],[-1,-3],[-8,-126],[-1,-37],[0,-1],[0,-1],[-2,-26],[-6,-28],[-29,-115],[-2,-4],[-11,-34],[-10,-19],[-11,-12],[-14,-4],[-3,-1],[-4,4],[-8,7],[-30,58],[-7,-11],[-17,-25],[-5,-8],[-29,-106],[-7,-16],[0,-2],[-9,-16],[-3,-4],[-41,-45],[-15,-12],[-6,-1],[-6,-2],[-14,7],[-17,14],[-72,66],[-16,8],[-88,4],[-11,-8],[-30,-38],[-14,-4],[-2,0],[-6,5],[-5,-8],[-20,-36],[-11,-54],[-1,-54],[-2,-25],[0,-6],[13,-25],[12,-25],[3,-6],[9,-27],[3,-22],[1,-4],[1,-36],[-5,-33],[-11,-27],[-11,-14],[-15,-13],[-19,-12],[-28,-4],[-16,-7],[-8,-10],[0,-1],[-18,-71],[0,-1],[-22,-134],[-3,-13],[-5,-26],[-6,-13],[-9,-13],[-9,-7],[-72,-33],[-62,-28],[-16,3],[-15,-25],[-17,-10],[-1,0],[-23,14],[-7,10],[-8,12],[-8,10],[-15,81],[-41,-27],[-165,-145],[-1,-1],[-28,-62],[-28,-64],[-43,11],[-6,-101],[-6,-101],[59,-14],[-6,-64],[-15,-157],[-1,-5],[-2,-7],[-2,-7],[-5,-9],[-2,-2],[-9,-6],[-3,2],[-37,82],[-18,26],[-15,7],[-14,6]],[[59107,79223],[-9,-2],[-90,-31],[-20,-7],[-1,-1],[-105,-37],[-105,-37],[-75,-26],[-89,-31],[-30,-8],[-73,-32],[-67,-27],[-113,-46],[-107,-30],[-26,-8],[-44,-9],[-16,-4],[-59,-21],[-15,-3],[-4,-1],[-15,-5],[-139,-48],[-33,-11]],[[57872,78798],[-30,-11],[-2,-1],[-18,-10],[-54,-19],[-4,-1],[-139,-48],[-45,-16],[-42,-16],[-72,-24],[-9,-3],[-16,-5],[-72,-25],[-38,-13],[-27,-9],[-11,33],[-5,38],[-9,28],[-15,32],[-9,29],[-2,46],[-3,42],[-11,36],[-13,41],[-4,56],[5,38],[3,46],[-9,36],[-9,42],[-3,49],[4,37],[13,45],[10,28],[13,18],[13,24],[9,28],[4,60],[-5,40],[-10,31],[-8,31],[-21,41],[-17,22],[-12,23],[-7,36],[7,34],[2,39],[-11,30],[-6,36],[-10,28],[-12,15],[-15,31],[-14,20],[-16,13],[-15,14],[-11,25],[-4,40],[-16,15],[-16,25],[-2,38],[-8,51],[-1,46],[9,45],[0,40],[5,38],[1,10],[5,41],[2,44],[-8,34],[-1,3],[-77,209],[-22,62],[-87,250],[-41,115],[-33,97],[-33,89],[-57,157],[-18,51],[-10,30],[-11,31],[-54,154],[-50,143],[-10,28],[-22,63],[-72,204],[-21,58],[-27,76],[-48,137],[-63,175],[-19,54],[-16,45],[-17,49],[-14,38],[-38,107],[-27,76],[-16,45],[-91,257],[-110,311],[-49,138],[-24,71],[-13,35],[-57,157],[-61,169],[-8,73],[-1,4],[-9,76],[-2,21],[-1,17],[-12,104],[-1,4],[-9,78],[-2,19]],[[55707,84485],[30,16],[37,18],[18,9],[25,13],[14,9],[14,11],[36,23],[24,15],[17,11],[9,5],[7,4],[27,17],[4,2],[21,11],[36,16],[23,11],[14,11],[25,-1],[26,11],[1,1],[44,-1],[15,-1],[19,4],[27,5],[5,-2],[5,-7],[1,-1],[12,14],[0,1],[26,4],[6,1],[9,1],[5,-1],[21,-5],[23,-5],[22,-7],[27,-5],[29,-5],[15,-3],[18,-7],[21,-9],[21,-9],[26,-13],[30,-14],[14,-7],[38,-22],[32,-20],[24,-16],[22,-18],[16,-15],[19,-23],[13,-22],[0,-1],[17,-21],[11,-15],[27,-30],[20,-28],[5,-4],[10,-14],[11,-16],[1,-2],[15,-27],[10,-18],[3,-5],[6,-38],[1,-3],[34,-133],[1,0],[7,-29],[18,-51],[25,-72],[14,-34],[16,-47],[3,-15],[22,-87],[0,-3],[-1,-2],[-3,2],[-3,7],[-5,7],[4,-36],[17,-44],[23,-49],[-1,-11],[-7,0],[-2,-7],[1,-9],[8,-21],[0,-1],[16,-55],[24,-76],[11,-35],[22,-86],[7,-34],[1,-1],[5,-24],[17,-31],[15,-29],[9,-37],[12,-40],[8,-23],[17,-35],[8,-17],[22,-47],[12,-34],[21,-39],[19,-33],[25,-38],[26,-33],[7,-9],[4,-6],[2,-2],[14,-20],[5,-6],[30,-31],[32,-19],[2,0],[16,-7],[4,-4],[4,-3],[15,-13],[3,-3],[25,-23],[12,-7],[13,-7],[16,-4],[26,0],[2,0],[14,-11],[3,-3],[-1,-3],[-4,-3],[-7,1],[4,-21],[9,-10],[12,-16],[25,-12],[8,2],[11,4],[23,4],[16,7],[20,5],[22,0],[8,3],[19,6],[19,1],[4,1],[28,-11],[17,-6],[32,25],[34,18],[23,14],[23,13],[38,26],[44,39],[24,21],[48,47],[31,29],[26,28],[4,4],[17,15],[14,16],[28,33],[39,53],[14,19],[20,29],[16,26],[8,11],[4,9],[12,24],[19,30],[20,32],[9,19],[24,55],[11,32],[10,28],[3,9],[7,17],[5,12],[23,52],[7,9],[3,6],[20,40],[24,40],[26,42],[1,1],[55,108],[18,33],[32,64],[53,103],[4,7],[0,3],[0,31],[47,116],[1,3],[-6,0],[33,69],[8,7],[1,1],[25,23],[17,19],[11,34],[36,47],[23,28],[18,20],[9,11],[24,44],[2,5],[5,6],[26,35],[30,40],[16,13],[54,102],[19,37],[2,17],[1,0],[13,7],[26,39],[6,8],[1,2],[13,19],[5,2],[20,9],[25,35],[49,35],[30,23],[29,30],[12,19],[12,18],[19,31],[13,13],[18,16],[11,5],[17,8],[0,2],[5,22],[3,12],[7,1],[9,0],[40,2],[14,0],[0,1],[34,51],[34,51],[53,78],[17,30],[17,35],[6,17],[16,39],[2,7],[6,11],[25,29],[18,27],[16,24],[13,17],[0,1],[6,7],[15,19],[21,28]],[[90784,75789],[-15,-31],[-24,-49],[-16,-33],[-6,-15],[-14,-28],[-16,-32],[-12,-25],[-12,-27],[-2,-4],[-13,-22],[-18,-37],[-10,-21],[-12,-20],[-26,-54],[-1,-3],[-22,-42],[-42,-85],[-18,-33],[-34,-66],[-3,-5],[-31,-64],[-31,-62],[-57,-114],[-19,-37],[-40,-80],[-11,-23],[-14,-28],[-28,-59],[-60,-123],[-64,-131],[-37,-77],[-65,-128],[-12,-22],[-35,-68],[-32,-66],[-72,-147],[-34,-70],[-14,-28],[-21,-43],[-12,-22],[-14,-25],[-11,-23],[-12,-25],[-15,-26],[-41,-77],[-73,-147],[-34,-67],[-85,-160],[-19,-43],[-11,-19],[-1,-2],[-29,-59],[-11,-23],[-17,-35],[-9,-45],[-14,-52],[-7,-34],[-11,-22],[-15,-26],[-5,-38],[-2,-38],[4,-48],[-13,-55],[-13,-39],[0,-50],[10,-23],[15,-11],[12,-16],[3,-44],[-15,-25],[-17,-15],[-8,-47],[-7,-43],[-19,-12],[-12,-32],[-19,29],[-13,-7],[-8,-33],[-14,-32],[-19,-27],[-17,6],[-14,22],[-15,-24],[-6,-43],[8,-42],[-2,-41],[-8,-46],[-8,-33],[9,-36],[5,-44],[-14,-10],[-14,-32],[-9,-39],[-16,2],[-7,-39],[-12,-26],[-19,1],[-18,-22],[-16,-5],[-5,-55],[-14,-27],[-17,-4],[-20,7],[-19,-18],[-12,-39],[-10,-28],[-21,-5],[-22,-27],[-11,-32],[-10,-49],[9,-39],[-6,-40],[-10,-52],[2,-43],[18,-31],[-7,-56],[-8,-35],[-11,-45],[-9,-47],[-17,-35],[-5,-47],[-15,-21],[-9,-45],[-2,-47],[-13,-15],[-10,-31],[6,-36],[-5,-46]],[[88784,70810],[-31,24],[-28,22],[-90,68],[-162,121],[-81,61],[-234,178],[-127,98],[-82,62],[-103,77],[-11,8],[-192,144],[-82,69],[-10,5],[-5,2],[-16,4],[-24,-36],[-17,-3],[-16,-30],[-16,-3],[-13,-3],[-69,27],[-16,-20],[-13,6],[-13,-11],[-18,0],[-12,25],[-19,-3],[-18,24],[-14,-9],[-29,59],[6,45],[-10,28],[-16,-14],[-12,32],[-12,-16],[-6,-39],[-15,-4],[-9,-52],[-17,15],[-23,10],[-18,-17],[-15,25],[-9,-30],[-16,-26],[-12,9],[-18,27],[-19,0],[-2,-46],[10,-45],[-13,-26],[-22,-20],[-14,12],[-11,-65],[-15,10],[-29,-20],[-16,6],[-12,-32],[-18,-8],[-16,31],[-20,9],[-19,-8],[-16,-3],[-15,-10],[-6,47],[1,61],[-18,30],[-1,43],[-14,20],[-13,-5],[-18,5],[-16,16],[-21,-19],[-17,11],[-2,42],[-19,14],[-14,35],[-16,3],[1,52],[-9,29],[-7,41],[-25,9],[-4,46],[6,38],[-4,43],[8,41],[-16,37],[-31,-20],[-13,59],[-11,21],[-18,-4],[-14,-6],[-9,-37],[-12,-19],[-16,11],[-12,41],[-18,-5],[-11,-21],[-16,-17],[-11,26],[8,34],[6,41],[7,34],[4,39],[-15,25],[-5,54],[-3,41],[2,43],[-12,65],[-62,160],[-18,48],[-33,83],[-144,372],[-34,90],[-31,78],[-1,4],[-20,52],[-8,20],[-90,232],[0,1],[-21,52],[-84,217],[-11,26],[-4,10],[-3,9],[-3,9],[-48,126],[-19,50],[-8,19],[-2,6],[-14,2],[-26,-17],[-22,-15],[-20,13],[-16,25],[-19,11],[-13,40],[-16,-6],[-13,-12],[-15,-11],[-18,-6],[-4,36],[-14,8],[-5,46],[-18,26],[-15,5],[-12,35],[-13,36],[-5,42],[-14,21],[-10,23],[-17,22],[-20,1],[-15,-1],[-19,11],[-14,-5],[-14,42],[-9,47],[-8,31],[-6,38],[-18,-23],[-16,-14],[-15,-2],[-10,34],[1,45],[-8,33],[-16,12],[-13,15],[-14,-5],[-16,6],[-14,-22],[-16,13],[-8,33],[-5,49],[-17,-11],[-13,-11],[-18,-2],[-14,-19],[-11,-21],[-14,-8],[-11,-33],[-15,-7],[-16,13],[-16,14],[-9,32],[-17,8],[-5,50],[-8,47],[-19,-17],[-13,-29],[-13,20],[-11,30],[-13,38],[-14,12],[-21,-5],[-26,-4],[-13,18],[-24,51],[-19,7],[-19,35],[-12,27],[-13,28],[-18,31],[-14,6],[-8,44],[-19,23],[-13,51],[-7,36],[-15,12],[-11,33],[-21,26],[-21,4],[-33,-18],[-15,5],[-25,-3],[-14,20],[-22,11],[-16,14],[-22,40],[-11,42],[-16,20],[-14,2],[-19,5],[-20,39],[-11,38],[-3,39],[-16,11],[-17,7],[-16,0],[-16,-26],[-20,-6],[-15,49],[-13,-23]],[[84199,75719],[-16,34],[3,72],[-4,41],[7,34],[13,16],[16,-7],[13,-5],[14,8],[14,13],[16,20],[5,51],[1,64],[14,21],[15,11],[10,41],[0,38],[3,45],[2,45],[5,42],[13,-23],[14,-20],[14,-17],[14,32],[16,-14],[9,50],[7,55],[14,20],[10,28],[0,72],[8,45],[0,43],[-10,52],[29,107],[14,6],[11,21],[29,43],[12,20],[18,35],[11,51],[14,5],[8,-30],[20,-51],[16,1],[14,22],[8,41],[16,10],[10,-29],[14,-41],[24,19],[19,14],[19,21],[15,14],[15,33],[16,41],[13,24],[14,16],[12,7],[1,1],[23,14],[3,15],[1,3],[4,17],[-4,47],[0,38],[4,20],[4,17],[11,35],[12,42],[20,22],[11,20],[13,16],[6,2],[9,3],[12,15],[10,31],[0,40],[4,42],[32,39],[12,19],[9,29],[13,55],[1,41],[-3,37],[-2,39],[1,4],[0,1],[7,34],[10,9],[5,5],[14,20],[0,34],[-1,5],[2,38],[14,80],[3,40],[-2,17],[-1,22],[-4,18],[-7,31],[-10,33],[18,30],[2,3],[-1,7],[-3,33],[12,17],[15,-16],[20,-29],[14,15],[7,7],[0,40],[-6,32],[-1,6],[5,20],[6,26],[3,44],[1,3],[13,12],[13,9],[21,60],[-8,35],[-2,26],[-3,31],[3,11],[5,17],[3,12],[13,12],[23,23],[8,32],[9,32],[8,47],[7,43],[11,19],[7,12],[9,17],[6,40],[4,42],[1,5],[14,10],[5,-6],[11,-13],[16,7],[13,9],[15,-10],[14,36],[11,32],[8,33],[-2,19],[-3,21],[5,39],[12,4],[5,1],[-1,16],[-1,26],[10,25],[4,6],[8,11],[-4,10],[-5,20],[-5,36],[-16,6],[-15,21],[-11,46],[-6,36],[-3,37],[5,45],[-18,11],[-12,26],[1,41],[-5,44],[11,41],[10,41],[0,53],[-14,9],[-11,37],[-20,2],[-12,18],[-3,58],[7,33],[17,15],[7,49],[-2,47],[22,38],[1,40],[15,2],[15,11],[-2,37],[8,32],[14,-1],[22,-9],[15,1],[11,28],[1,46],[-5,27],[-2,9],[-11,38],[-5,51],[-3,41],[-11,87],[-2,51],[8,63],[-17,17],[-4,47],[18,6],[28,44],[11,21],[21,34],[22,-6],[13,7],[20,57],[-11,47],[11,24],[43,-2],[30,24],[16,0],[14,17],[26,-13],[14,-13],[14,0],[12,15],[-11,30],[-7,47],[-4,35],[14,28],[3,41],[9,42],[4,48],[8,41],[0,51],[-4,60],[-32,60],[-13,55],[6,37],[-9,31],[-3,43],[14,17],[11,21],[13,51],[4,40],[-23,35],[13,49],[10,32],[12,-23],[14,12],[13,18],[16,-28],[13,-12],[9,-28],[24,33],[12,21],[16,23],[14,20],[13,15],[-6,60],[12,36],[12,39],[2,43],[-8,46],[-20,27],[5,35],[3,47],[15,4],[14,-15],[14,15],[5,39],[-2,58],[10,50],[11,62],[13,10],[10,-29],[17,11],[20,2],[15,13],[9,46],[16,29],[21,60],[-2,52],[-14,-7],[-20,-11],[-11,-27],[-19,17],[-26,20],[-9,33],[11,43],[19,45],[-14,28],[-17,33],[-3,65],[-14,14],[-14,7],[-5,49],[0,54],[-12,44],[-17,24],[-1,40],[-12,51],[-2,7],[0,43],[21,140],[5,33],[7,47],[11,70],[10,65],[14,88],[41,262],[19,125],[0,1],[-17,67],[-2,5],[-8,32],[-8,32]],[[85980,84081],[1,2],[23,33],[15,-69],[0,-2],[131,107],[6,5],[43,34],[190,-4],[33,-18],[240,-131],[40,28],[54,38],[6,4],[15,22],[95,135],[60,86],[80,118],[117,175],[14,21],[3,4],[232,247],[211,164],[15,12],[25,19],[228,48],[33,-55],[71,-123],[22,-37],[24,-95],[66,-608],[4,-36],[-66,-795],[-18,-321],[-21,-397],[21,-154],[85,-296],[113,-488],[51,-640],[7,-82],[11,-12],[0,-6],[4,-21],[2,-13],[1,-14],[3,-28],[2,-64],[-2,-45],[-2,-53],[-1,-42],[1,-41],[2,-56],[0,-38],[-6,-27],[-3,-38],[4,-54],[1,-21],[9,-70],[1,-51],[3,-51],[1,-13],[1,-10],[1,-43],[1,-81],[0,-29],[3,-41],[2,-39],[5,-62],[3,-47],[6,-72],[5,-50],[5,-45],[9,-76],[4,-42],[7,-53],[14,-104],[11,-70],[12,-58],[7,-44],[3,-23],[4,-31],[4,-31],[3,-24],[12,-67],[11,-50],[19,-79],[5,-16],[6,-17],[15,-49],[12,-35],[11,-24],[15,-41],[19,-44],[10,-23],[1,-2],[26,-48],[12,-22],[49,-84],[23,-38],[12,-28],[1,-6],[-4,-6],[-2,-3],[2,-3],[12,-23],[20,-42],[22,-22],[13,-31],[4,-10],[15,-39],[20,-33],[20,-29],[13,-18],[21,-27],[35,-48],[14,-22],[21,-38],[20,-32],[25,-24],[33,-38],[7,-8],[27,-39],[28,-37],[34,-36],[26,-28],[12,-10],[13,-11],[15,-11],[35,-26],[16,-9],[57,-15],[18,-1],[19,-5],[14,-3],[40,0],[9,2],[30,11],[24,16],[18,6],[23,3],[22,10],[15,5],[38,-3],[166,-31],[14,-2],[36,-7],[28,-5],[14,0],[14,0],[5,0],[19,0],[21,-9],[14,1],[14,0],[11,-2],[14,2],[18,12],[9,-3],[6,-4],[8,-1],[18,5],[2,1],[6,-4],[23,-14],[25,-17],[14,-13],[28,-42],[27,-55],[1,-5],[10,-38],[7,-12],[13,-16],[19,-15],[3,-2],[7,-4],[11,-33],[2,-4],[4,-10],[8,-19],[9,-20],[11,-14],[15,-21],[20,-26],[14,-19],[14,-18],[10,-13],[13,-13],[22,-24],[12,-16],[8,-13],[18,-26],[4,-6],[1,-1],[12,-12],[10,-12],[10,-14],[3,-5],[17,-32],[17,-34],[4,-6],[10,-29],[10,-29],[1,-4],[1,-1],[9,-30],[17,-44],[16,-28],[4,-10],[8,-21],[10,-35],[2,-8],[15,-55],[9,-38],[7,-29],[17,-68],[10,-44],[11,-44],[16,-72],[21,-99],[4,-18],[1,-5],[57,-220],[18,-72],[14,-33],[3,-8],[12,-29],[13,-38],[12,-31],[18,-53],[2,-6],[11,-33],[16,-55],[21,-55],[12,-25]],[[57872,78798],[-39,-87],[-8,-19],[-12,-32],[-37,-75],[-18,-37],[-69,-142],[-1,-2],[-12,-25],[-34,-70],[-41,-85],[-32,-68],[-13,-29],[-15,-31],[-3,-6],[-12,-25],[-92,-199],[-121,-261],[-25,-55],[-57,-122],[-126,-272],[-63,-138],[-53,-113],[-21,-48],[-74,-161],[-64,-141],[-1,0],[-88,-261],[-46,-121],[-9,-29],[-27,-79],[-37,-111],[-34,-99],[-42,-126],[-54,-157],[-12,-31],[-2,-4],[-21,-46],[-32,-64],[-14,0],[-26,3],[-16,4],[-16,5],[-16,8],[-13,9],[-23,29],[-13,11],[-25,-5],[-15,-4],[-13,0],[-18,1],[-15,-3],[-13,-13],[-15,-10],[-15,-2],[-23,13],[-14,10],[-15,6],[-21,-10],[-15,-2],[-13,19],[-10,28],[-13,17],[-18,3],[-3,1],[-15,-41],[-5,-15],[-10,-27],[-7,-38],[-1,-51],[-2,-16],[-3,-22],[-13,-44]],[[55958,75291],[-8,46],[-9,59],[-10,29],[-21,34],[-25,33],[-13,20],[-16,37],[-14,28],[-13,17],[-16,-1],[-17,-4],[-18,12],[-16,16],[-14,-1],[-24,17],[-14,1],[-17,24],[-15,6],[-15,11],[-24,-5],[-15,12],[-13,25],[-10,34],[-16,23],[-14,18],[-13,14],[-13,21],[-18,17],[-16,14],[-12,16],[-11,24],[-14,10],[-25,12],[-19,6],[-17,11],[-13,6],[-15,-3],[-22,-10],[-14,-13],[-20,-20],[-19,-16],[-16,-11],[-12,-2],[0,-7],[-20,40],[-51,70],[-12,31],[-4,34],[-7,76],[-1,17],[-1,8],[-3,4],[-14,14],[-39,46],[-4,10],[-1,2],[-11,56],[-4,11],[-13,7],[-27,-20],[-40,-30],[-35,-44],[-40,-26],[-7,5],[-8,6],[-5,9],[-4,17],[-5,11],[-36,42],[-4,3],[-20,-11],[-22,4],[-2,0],[-1,1],[-7,6],[-5,3],[0,1],[-11,16],[-8,5],[-63,4],[-8,-10],[-2,-1],[-30,-12],[-50,-12],[-2,0],[-20,14],[-18,13],[-46,33],[-6,7],[-14,18],[-18,22],[-10,-4],[-27,-27],[-38,-27],[-11,16],[-6,8],[-12,14],[2,10],[0,1],[-7,46],[-6,15],[-26,70]],[[54392,76473],[18,28],[38,72],[39,83],[35,109],[27,109],[32,155],[15,83],[8,55],[4,69],[2,19],[8,68],[2,71],[3,55],[1,92],[-1,51],[0,73],[-3,222],[-3,53],[-1,10],[-1,22],[-3,35],[-1,17],[-13,97],[-9,61],[-26,167],[-60,279],[-17,88],[-15,46],[-15,64],[-1,3],[-75,322],[-5,20],[-25,109],[-2,21],[-3,20],[-11,89],[-7,58],[-8,80],[-5,81],[-3,39],[-2,92],[1,78],[0,3],[0,6],[0,173],[-1,39],[-1,74],[1,101],[4,63],[-2,124],[-3,144],[3,99],[10,128],[0,25],[0,1],[1,72],[-2,184],[0,7],[7,77],[5,43],[-3,76],[-7,110],[-3,46],[1,21],[-1,111],[-1,15],[-1,2],[-7,21],[-12,46],[-5,48],[-18,107],[-14,71],[-23,111],[-28,88],[-2,7],[-32,90],[-16,60],[-19,64],[-1,3],[-5,21],[-12,25],[-10,33],[-10,38],[-19,136],[-2,39],[-3,61],[0,82],[5,128],[1,13],[6,77],[10,85],[7,43],[2,38],[4,58],[8,58],[6,50],[4,36],[5,90],[3,40],[8,42],[17,65],[9,29],[11,34],[14,35],[15,41],[34,90],[12,41],[11,37],[29,106],[17,76],[14,66],[11,35],[20,47],[17,33],[22,27],[20,23],[22,23],[29,30],[17,19],[4,5],[6,5],[2,2],[3,6],[12,23],[11,26],[6,8],[17,11],[14,10],[27,21],[30,24],[46,16],[11,5],[33,-3],[24,-6],[28,-8],[33,-12],[25,-10],[40,-20],[59,-37],[33,-22],[17,-11],[36,-23],[17,-7],[27,-12],[23,-16],[28,-9],[36,-24],[15,-2],[13,-1],[17,-15],[17,-7],[22,-1],[2,0],[33,0],[14,0],[21,0],[13,-1],[12,2],[3,1],[21,10],[6,4],[7,2],[40,11],[34,5],[8,2],[3,0],[23,9],[1,1],[4,4],[7,6],[4,3],[26,13],[3,2],[21,16],[28,10],[19,12],[28,20],[16,19],[20,-9],[2,2],[3,-2],[15,11],[12,16],[1,2],[-4,1],[-2,0],[-4,5],[-1,2],[2,10],[31,24],[6,2],[8,6]],[[65604,74544],[-74,-206],[-65,-182],[-49,-135],[-103,-288],[-20,-56],[-44,-124],[-72,-201],[-1,-4],[-18,-49],[-15,-43],[-19,-53],[-11,-30],[-8,-21],[-53,-152],[-10,-26],[-9,-18],[-9,-18],[-2,-3],[-11,-16],[-51,-82],[-28,-45],[-132,-210],[-48,-77],[-57,-93],[-2,-3],[-31,-74],[-107,-252],[-38,-91],[-50,-115],[-178,-421],[-21,-48],[-140,-329],[-97,-229],[-36,-87],[-40,-90],[-9,-20],[-140,-201],[-17,-26],[-138,-202],[-111,-165],[-26,-40],[-14,-25]],[[63500,69994],[-68,-94],[-12,-17],[-36,-25],[-179,-116],[-63,-42],[-9,-6],[-13,-8],[-14,-10],[-21,-13],[-4,-3],[-22,-15],[-253,-169],[-17,17],[-15,37],[-16,18],[-5,36],[-15,19],[-2,46],[-19,41],[-17,-4],[-7,58],[-11,30],[-15,8],[-15,18],[-13,40],[-20,14],[-12,30],[-17,-18],[-18,19],[-21,6],[-15,9],[-6,-40],[-14,-31],[-23,5],[-22,1],[-19,29],[-14,25],[-20,-31],[-33,-16],[-21,4],[-3,41],[-17,17],[-14,24],[-22,0],[-13,28],[0,52],[-20,14],[-13,29],[-14,32],[-1,38],[-15,37],[-15,7],[-13,-24],[-13,7],[-11,-24],[-14,-3],[-31,-14],[-20,-1],[-17,-10],[-17,-13],[-16,3],[-21,4],[-17,1],[-14,7],[-23,14],[-10,26],[-19,27],[-13,8],[-14,-17],[-8,0],[-7,1],[-23,-2],[-110,-2]],[[61786,70153],[9,16],[2,4],[12,18],[12,48],[15,153],[2,112],[-10,79],[-8,32],[-24,62],[-21,41],[-30,39],[-68,53],[-214,66],[-3,1],[-23,41],[-11,27],[-9,29],[-8,63],[17,310],[3,62],[16,92],[11,33],[34,157],[3,11],[51,143],[2,6],[1,3],[8,63],[3,17],[1,24],[3,67],[14,87],[26,95],[46,136],[4,17],[8,39],[0,1],[4,74],[-7,32],[-7,35],[-28,38],[-179,178],[-181,98],[-22,21],[-31,64],[-15,19],[-123,22],[-15,19],[-12,34],[-11,94],[-2,51],[3,60],[24,101],[17,42],[2,4],[3,7],[5,7],[12,21],[8,10],[96,114],[1,0],[22,26],[24,42],[0,1],[3,270],[-83,236],[-47,57],[-27,-8],[-60,-20],[-9,-3],[-38,-71],[-21,-50],[-33,-103],[-26,-136],[-11,-160],[3,-60],[4,-115],[5,-460],[0,-4],[0,-3],[-7,-86],[-5,-24],[-21,-36],[-64,-44],[-23,-4],[-68,22],[-36,50],[-29,64],[-64,184],[-17,60],[-5,37],[6,27],[11,37],[7,42],[14,57],[27,65],[20,86],[7,49],[13,195],[36,146],[6,21],[4,19],[4,75],[0,22],[0,24],[-1,66],[-6,104],[-26,196],[-7,14],[-23,47],[-3,6],[-9,18],[-23,47],[-25,59],[-4,11],[-3,11],[-8,36],[-8,32],[-19,41],[-51,85],[-86,103],[-36,31],[-17,23],[-51,39],[-16,2],[-45,6],[-6,21],[-42,162],[-1,137],[8,115],[1,15],[0,13],[-1,14],[-1,15],[8,31],[20,83],[27,85],[93,235],[22,76],[2,25],[-9,58],[-12,35],[-11,19],[-30,49],[-5,7],[-9,9],[-32,8],[-103,-4],[-47,-13],[-41,-27],[-26,-17],[-37,-52],[-41,-71],[-49,-114],[-98,-182],[-61,21],[-45,48],[-5,21],[-4,16],[-6,127],[44,429],[28,144],[67,220],[34,119],[15,67],[7,54],[6,115],[-2,13],[-1,8],[0,51],[2,23],[7,108],[1,4],[1,3],[25,56],[70,56],[14,25],[9,18],[6,10],[-2,6],[-3,8],[-30,92],[-34,128],[-65,106],[-2,4],[-4,8],[-2,7],[-19,58],[-12,11],[-38,35],[-1,1],[-2,3],[-57,77],[-25,34],[-12,18],[-29,26],[-55,51],[-34,49],[-2,4],[-24,50],[-7,-1],[-52,-9],[-49,-62],[-3,-3],[-4,-3],[-5,-2],[-44,-8],[-2,-1],[-61,-93],[-39,-72],[-5,-11],[-2,-1],[-20,-11],[-12,18],[-129,210],[-41,98],[-18,198],[-3,113],[0,6],[-1,13],[-2,13],[-3,18],[-7,28],[0,2],[2,32],[15,217],[2,20],[7,110],[0,3],[-6,74],[-1,14]],[[84199,75719],[-12,-27],[-17,-13],[-13,-11],[-13,-27],[-7,-46],[-17,-15],[-14,16],[-9,35],[-20,17],[-10,36],[-17,0],[-8,-34],[-14,-32],[-6,-12],[-17,-33],[-6,-48],[-14,-41],[-10,-31],[-11,-30],[-24,-6],[-25,8],[-10,-27],[4,-52],[13,-15],[8,-29],[-2,-41],[14,-19],[8,-42],[-13,-37],[6,-35],[2,-46],[-14,-38],[-8,-44],[-11,-33],[10,-34],[15,-15],[-5,-36],[-9,-34],[-7,-47],[-14,-20],[-16,-14],[1,-39],[8,-34],[16,-18],[18,-23],[-2,-39],[4,-48],[4,-39],[-9,-30],[1,-42],[5,-35],[-7,-46],[-15,-20],[-13,18],[-13,7],[-12,17],[-16,6],[-13,-21],[-8,-38],[1,-37],[-4,-54],[-17,-15],[-14,8],[-14,0],[4,-61],[-3,-46],[4,-49],[-11,-45],[-2,-48],[6,-44],[-9,-47],[-10,-38],[-13,-37],[-17,10],[-17,19],[-14,-12],[-9,-36],[-3,-11],[-5,-22],[-17,18],[-6,24],[-2,7],[-12,18],[-14,3],[-5,1],[-8,3],[-12,7],[-2,1],[-14,0],[-16,0],[-9,-35],[6,-48],[5,-5],[9,-8],[-6,-20],[-4,-16],[-3,-40],[4,-37],[10,-29],[9,-22],[1,-2],[5,-37],[13,-25],[10,-38],[4,-43],[2,-42],[16,-25],[2,-43],[-12,-18],[-22,-22],[-16,-13],[-17,0],[-16,7],[-13,20],[-15,-36],[-13,-43],[-6,-37],[-8,-36],[2,-42],[-4,-47],[-13,-50],[-11,-19],[-17,-15],[-15,25],[-18,17],[-17,2],[-15,-17],[0,-42],[1,-46],[-6,-35],[-14,-31],[-12,-20],[-17,0],[-15,-9],[-11,19],[-12,20],[-18,-26],[-12,-17],[-16,-17],[-8,-32],[12,-63],[10,-34],[10,-32],[-10,-30],[-8,-33],[-10,-55],[-3,-37],[-1,-50],[-4,-38],[13,-47],[4,-36],[2,-49],[13,-36],[12,-26],[-4,-39],[-14,-37],[-1,-41],[-5,-43],[-6,-51],[-5,-44],[0,-40],[7,-38],[5,-48],[-13,-23],[8,-46],[-6,-36],[-22,-21],[13,-25],[18,-38],[12,-33],[-4,-41],[-5,-46],[9,-30],[14,-19],[-13,-39],[1,-48],[-4,-41],[-13,-21],[0,-63],[6,-41],[16,-9],[16,18],[19,-16],[-2,-42],[-8,-46],[0,-50],[-16,-19],[-16,-8],[1,-62],[11,-61],[11,-57],[7,-41],[3,-42],[-8,-49],[-1,-57],[3,-42],[-3,-38],[-5,-37],[-12,-80],[-10,-52],[-10,-41],[28,-91],[-7,-35],[-21,-15],[-16,-12],[-20,-44],[-8,-41],[0,-43],[13,-14],[9,-31],[-14,-40],[1,-45],[9,-66],[3,-53],[16,-31],[14,9],[15,11],[16,-30],[17,-26],[16,-35],[9,-39],[12,-25],[-2,-39],[-17,-29],[-14,-11],[4,-37],[7,-42],[-8,-41],[-20,-12],[-12,-38],[-8,-28],[-10,0],[-6,0],[-12,-21],[-11,-18],[-19,-13],[-15,-28],[-13,25],[-11,19],[-14,-1],[-10,-26],[-13,-12],[-12,-20],[-10,-23],[0,-45],[-5,-42],[-9,-38],[-14,-12],[-16,9],[-14,1],[-14,-20],[-18,12],[-1,51],[-17,-2],[-8,-31],[-7,-35],[-18,0],[-12,-15],[-11,-28],[-18,3],[-14,6],[-10,36],[-12,18],[-14,-11],[0,-38],[-7,-35],[-14,-31],[-12,-40],[-13,-17],[-15,-3],[-13,11],[-13,22],[-13,26],[-14,-13],[-8,-38],[-12,-19],[-12,-21],[-13,-32],[-14,-8],[-14,-1],[-16,10],[-18,5],[-15,-4],[-12,18],[-22,-1],[-13,8],[-4,38],[-10,26],[-17,8],[-15,20],[-20,39],[-18,17],[-16,9],[-8,31],[-15,-3],[-19,5],[-14,7],[-12,10],[-17,1],[-17,3],[-14,-1],[-14,12],[-14,11],[-17,-8],[-14,-10],[-13,8],[-15,-1],[-13,4],[-9,27],[-12,23],[-4,36],[-12,19],[-18,-15],[-17,-14],[-15,-14],[-14,-11],[-24,-2],[-16,-16],[-14,-29],[-16,-23],[-12,-15],[-11,21],[-13,-18],[-10,-28],[-7,-41],[-8,-31],[-12,-24],[-10,-29],[-6,-42],[-3,-39],[-4,-46],[-1,-46],[-8,-32],[-15,-24],[-11,-24],[-13,-15],[-13,-21],[-17,8],[-14,23],[-8,48],[-13,5],[-14,-12],[-25,-27]],[[81898,68759],[-13,14],[-21,3],[-25,7],[-15,8],[-23,35],[-17,14],[-20,16],[-13,4],[-13,-6],[-28,-15],[-14,21],[-13,36],[-16,20],[1,40],[13,25],[5,49],[-6,34],[-17,14],[-14,3],[-15,12],[-15,-8],[-20,6],[-3,52],[15,27],[12,27],[5,41],[-7,43],[-13,36],[10,25],[-10,27],[-5,36],[2,40],[0,41],[8,31],[-10,31],[-3,45],[6,42],[-9,29],[-18,4],[-9,30],[-9,32],[1,40],[-12,39],[-10,38],[-14,-2],[-16,8],[-21,17],[1,46],[-1,46],[-18,2],[-15,5],[-17,69],[-14,1],[3,47],[-3,39],[-11,32],[-12,65],[12,51],[-5,63],[6,45],[-15,10],[-19,17],[-27,58],[-21,-21],[-19,42],[-19,15],[-12,73],[-16,-5],[-8,-44],[-16,-8],[-17,23],[-1,46],[-6,69],[-23,39],[3,44],[-10,37],[-21,12],[4,36],[-14,15],[-35,17],[0,41],[6,37],[13,27],[6,34],[-20,16],[-16,16],[5,42],[2,49],[-4,48],[3,44],[6,34],[-10,30],[-5,39],[7,53],[-1,46],[-15,-7],[-16,6],[-3,37],[-9,46],[-18,-29],[-14,20],[-13,33],[-12,-21],[-14,4],[0,45],[-9,37],[-17,-3],[-11,35],[2,45],[-18,-3],[-21,-29],[-13,15],[-13,2],[-12,-36],[-12,-33],[-16,-7],[-16,-22],[-15,-33],[-20,-36],[-20,-19],[0,-48],[-12,-32],[-2,-4],[-14,-23],[-19,2],[-20,21],[-14,4],[-14,15],[-20,-22],[-16,4],[-21,-24],[-25,-2],[-18,1],[-17,-16],[-17,-17],[-16,-17],[7,-36],[-8,-35],[0,-44],[-7,-44],[-10,-46],[-13,-29],[-18,2],[-17,5],[-14,13],[-14,-1],[-20,21]],[[80431,71107],[-19,-1],[-14,-16],[-11,61],[-1,38],[-17,11],[-16,-11],[-3,50],[-4,56],[6,36],[-5,53],[-17,39],[-15,8],[-12,39],[3,38],[-10,30],[-19,6],[-16,-8],[-9,31],[13,32],[9,32],[-5,40],[-11,32],[-1,38],[-15,13],[-21,-13],[-17,-22],[-13,-30],[-20,-5],[-14,-5],[1,48],[-13,41],[-16,10],[-11,23],[-4,35],[-14,24],[-12,18],[-18,23],[-12,19],[-10,38],[-17,4],[-17,-15],[-12,28],[-14,4],[-13,-18],[-15,-8],[-29,-45],[-15,38],[-16,-4],[-15,-24],[-13,-22],[-14,-13],[-13,-28],[-13,32],[-6,48],[-14,46],[-18,21],[-14,24],[-15,3],[-2,39],[-9,46],[-10,35],[-1,47],[-15,33],[-14,10],[-17,-24],[-16,-4],[-20,-12],[-15,-5],[0,39],[11,37],[5,38],[-11,37],[-17,9],[-27,-16],[-6,-36],[-13,-39],[-16,-21],[-9,-30],[-14,0],[-18,1],[-11,-44],[-10,-34],[-14,1],[-14,38],[-15,16],[-16,21],[-8,33],[-12,19],[9,78],[13,35],[3,49],[-7,42],[-16,14],[-18,17],[-14,-16],[-17,-26],[-15,-16],[-16,-14],[-13,-14],[-13,5],[-10,29],[-13,2],[-14,11],[-12,13],[-11,22],[-14,1],[-15,-1],[-14,-1],[-13,-6],[-7,4],[-11,6],[-14,10],[-18,14],[-13,12],[-13,11],[-16,8],[-15,24],[-12,25],[-9,29],[-19,29],[-14,22],[-12,21],[-13,14],[-13,18],[-12,17],[-14,5],[-11,27],[-9,14],[-4,-2],[-5,-8],[-7,-5],[-9,1],[-171,133],[-11,8],[-7,20],[-6,16],[-14,63],[0,8],[-2,27],[0,7],[0,66],[4,29],[5,38],[7,52],[7,26],[23,76],[6,22],[8,28],[6,14],[17,19],[1,0],[4,1],[-2,10],[-32,145],[-4,32],[-18,181],[0,48],[6,36],[5,10],[15,13],[4,5],[1,9],[1,29],[-3,28],[-3,18],[-2,14],[-3,24],[-4,19],[-8,38],[-7,31],[-23,101],[-10,43],[-10,42],[-12,55],[-5,24],[-5,23],[-4,24],[-35,44],[-29,24],[11,100],[10,81],[2,19],[41,137],[5,33],[1,14],[-1,17],[-29,123],[-2,4],[-9,6],[-28,-4],[-31,0],[-8,8],[-3,13],[-1,67],[1,19],[2,9],[7,7],[5,-1],[10,-8],[8,2],[5,5],[1,18],[-4,19],[-5,13],[-6,8],[-4,2],[-10,4],[-42,-9],[-11,11],[-2,4],[0,11],[3,12],[36,74],[0,18],[-6,23],[-11,16],[-7,3],[-15,1],[-26,-11],[-11,5],[-5,8],[-14,33],[0,23],[9,33],[21,52],[4,24],[1,21],[-2,26],[-1,9],[-1,2],[-1,7],[-3,13],[-7,14],[-4,2],[-6,-3],[-10,-6],[-19,-14],[-13,-14],[-23,-33],[-2,1],[-7,8],[-2,1],[-4,9],[0,13],[20,87],[13,50],[3,17],[0,1],[0,15],[-2,2],[0,1],[-27,13],[-18,7],[-3,2],[-12,-56],[-2,-8],[0,-41],[-1,-21],[-2,-11],[-5,-10],[-1,-2],[-5,-5],[-11,-5],[-5,0],[-26,1],[-2,0],[-12,6],[-14,13],[-7,14],[-3,8],[-3,7],[-2,4],[-13,37],[-15,5],[-10,0],[-5,0],[-17,-1],[-8,-61],[-35,27],[-14,11],[-18,14],[-2,2],[-33,89],[-8,12],[-9,2],[-17,1],[-6,4],[-8,14],[-3,10],[-1,4],[-1,11],[0,22],[3,15],[5,14],[8,10],[13,11],[27,11],[1,0],[8,6],[7,4],[5,8],[3,9],[4,23],[0,1],[-1,18],[-1,9],[-1,9],[-10,31],[-1,2],[-5,12],[-21,29],[-17,14],[-2,2],[-5,11],[-1,5],[1,13],[5,15],[12,11],[43,29],[5,13],[1,1],[2,20],[-1,29],[-2,19],[-3,15],[-6,27],[-5,15],[-20,38],[-7,10],[-9,3],[-16,-2],[-5,-3],[-12,-13],[-2,-3],[-4,-10],[-5,-19],[-2,-13],[-3,-14],[-5,-37],[-5,-30],[-2,-8],[-1,-4],[-1,-5],[-6,-11],[-5,-4],[-5,1],[-1,2],[-6,5],[-7,11],[-1,3],[-3,9],[-39,141],[-2,6],[-3,9],[-7,32],[-9,52],[-1,9],[-1,7]],[[77905,80722],[47,116],[27,226],[20,214],[8,135],[0,81],[13,220],[16,149],[14,82],[38,127],[33,92],[33,70],[57,82],[77,95],[22,24],[67,43],[82,35],[0,1],[2,0],[2,0],[151,6],[102,12],[42,5],[44,8],[34,12],[44,32],[8,9],[6,6],[27,92],[9,69],[38,55],[55,76],[78,74],[153,114],[128,64],[114,18],[122,-46],[108,-88],[13,-19],[44,-38],[13,-19],[130,-170],[62,-138],[5,-8],[24,-40],[1,-2],[48,-85],[1,-2],[2,-4],[0,-1],[33,-76],[1,-1],[28,-68],[0,-1],[2,-4],[55,-159],[56,-75],[107,-26],[27,-18],[56,-62],[11,-19],[21,-62],[52,-25],[106,-37],[35,5],[53,0],[62,-8],[193,-57],[4,-11],[22,-12],[79,-28],[56,-32],[50,-9],[87,-46],[48,-9],[92,-43],[124,-97],[56,-63],[56,-72],[59,-94],[58,-99],[37,-41],[96,-126],[90,-148],[54,-103],[36,-97],[34,-117],[35,-230],[13,-360],[19,-205],[16,-91],[46,-146],[63,-146],[49,-96],[22,-22],[46,-39],[42,-23],[73,-21],[37,9],[33,36],[20,35],[26,43],[32,72],[71,213],[24,59],[66,174],[20,99],[3,59],[7,51],[13,40],[89,12],[127,238],[194,3],[148,-137],[153,-143],[151,-140],[20,6],[225,74],[242,39],[11,1],[22,4],[18,3],[49,8],[51,65],[96,125],[42,54],[162,425],[66,327],[30,261],[13,169],[8,39],[59,294],[11,58],[16,32],[113,233],[206,207],[56,56],[86,87],[4,5],[16,18],[39,49],[17,22],[25,25],[5,5],[29,31],[19,21],[19,30],[9,8],[13,9],[31,41],[32,70],[18,45],[13,15],[26,42],[28,46],[15,41],[17,71],[21,79],[12,34],[11,30],[15,43],[25,83],[28,106],[11,77],[18,99],[2,9],[18,105],[32,140],[25,72],[11,54],[18,47],[13,32]],[[74153,75277],[-94,-188],[-43,-87],[-68,-140],[-33,-68],[-70,-143],[-31,-63],[-181,-372],[-35,-145],[-39,-167],[-9,-42],[-14,-19],[-26,-19],[-18,-15],[-19,-22],[-11,-44],[2,-52],[-5,-52],[-7,-42],[-6,-37],[-5,-41],[4,-69],[4,-32],[3,-32],[14,-46],[15,-33],[18,-33]],[[73499,73274],[2,-38],[-6,-40],[-11,-28],[-14,-3],[-14,-10],[-11,-21],[-25,-14],[-13,-6],[-18,12],[-18,-5],[-13,1],[-7,-35],[2,-45],[1,-38],[-2,-37],[-6,-44],[-7,-58],[-5,-38],[-5,-36],[-7,-53],[-2,0],[-12,-3],[-16,-14],[-14,-10],[-10,-30],[-11,-32],[-16,28],[3,64],[8,42],[10,58],[5,42],[5,83],[1,82],[-1,59],[-1,63],[-8,125],[-9,49],[-10,27],[-7,2],[-10,2],[-18,-8],[0,1],[-1,-2],[-6,-8],[-3,-4],[-11,-26],[-6,-31],[0,-40],[6,-64],[3,-7],[6,-67],[0,-65],[-1,-18],[-4,-20],[-1,-8],[-6,-24],[-6,-7],[-11,-8],[-2,-1],[-4,-3],[-10,4],[-1,0],[-1,1],[-27,25],[-11,14],[-7,20],[-9,43],[-19,105],[-11,60],[0,7],[-6,44],[-8,50],[-4,22],[-4,30],[-14,55],[-15,48],[-2,4],[-8,12],[-5,6],[-3,3],[-1,0],[-13,2],[-6,-2],[-6,-2],[-12,-7],[-6,-10],[-20,-44],[-18,-47],[-9,-18],[-5,-10],[-6,-7],[-14,-20],[-12,-16],[-14,-6],[-5,0],[-2,0],[-3,-1],[-4,3],[-6,3],[-2,1],[-9,11],[-45,87],[-38,55],[-48,58],[-28,35],[-1,1],[-15,14],[-86,61],[-16,17],[-47,79],[-1,6],[-8,10],[-33,25],[-27,13],[-55,32],[-21,17],[-8,10],[-21,28],[0,1],[-35,53],[-3,4],[-16,8],[-11,0],[-77,-30],[-15,-9],[-1,-1],[-2,-2],[-22,-24],[-11,-18],[-4,-4],[-6,-7],[-9,-5],[-3,-2],[-5,2],[-18,6],[-11,15],[-17,38],[-6,12],[-9,23],[-13,34],[-10,17],[-14,25],[-2,3],[-4,6],[-22,29],[-10,8],[-3,2],[-4,3],[-13,-2],[-3,-3],[-16,-19],[-4,-3],[-21,-13],[-1,-1],[-16,-2]],[[71889,74040],[-7,7],[-10,23],[-6,24],[-4,41],[0,1],[-3,118],[0,17],[-2,18],[-2,13],[-3,25],[-6,30],[-16,43],[-15,20],[-17,15],[-19,16],[-44,28],[-16,18],[-26,28],[-5,9],[-13,24],[-31,74],[-24,40],[-26,19],[-9,-2],[-9,-4],[-15,-19],[-16,-25],[-14,-17],[-11,-6],[-7,3],[-3,1],[-1,1],[-3,7],[-5,11],[-4,12],[0,43],[2,24],[20,121],[0,1],[-2,43],[-4,23],[-2,9],[-2,5],[-5,9],[-11,10],[-11,-2],[-15,-13],[-22,-26],[-26,-46],[-13,-37],[-5,-20],[-3,-11],[-2,-9],[-6,-22],[-6,-43],[-6,-23],[-1,-1],[0,-1],[-7,-10],[-8,-8],[-25,6],[-15,3],[-29,7],[-4,4],[-4,4],[-8,16],[-31,143],[-2,8],[-5,21],[0,11],[-1,33],[-2,40],[2,72],[9,102],[-1,23],[-1,10],[-2,11],[-5,6],[-8,3],[-4,-2],[-12,-7],[-5,-2],[-14,-17],[-22,-44],[-30,-44],[-1,0],[-1,-2],[-8,-10],[-1,0],[-25,-19],[-48,-36],[-2,0],[-10,1],[-1,1],[-52,29],[-6,4],[-10,9],[-7,13],[-8,22],[-7,17],[-1,3],[0,1],[-6,20],[-1,3],[-3,23],[0,8],[-1,8],[1,39],[2,13],[0,4],[5,30],[6,21],[10,31],[4,12],[12,19],[8,12],[2,4],[12,8],[5,4],[45,10],[1,0],[50,5],[14,11],[20,21],[10,20],[4,20],[1,25],[0,34],[-10,62],[-1,8],[-23,46],[-6,5],[-6,5],[-25,8],[-8,3],[-11,-2],[-52,-5],[-8,-1],[-52,11],[-20,-10],[-16,-19],[-2,-7],[-1,-1],[0,-1],[-6,-29],[-2,-23],[-5,-51],[-8,-37],[-15,-36],[-7,-8],[-4,-4],[-3,0],[-7,-1],[-1,0],[-3,1],[-11,4],[-7,7],[-4,4],[-1,3],[-4,10],[-5,11],[-1,11],[-1,7],[-1,7],[-1,81],[13,114],[5,65],[0,2],[0,3],[2,103],[0,60],[-2,80],[-4,102],[-3,81],[5,96],[-2,25],[7,2],[10,17],[14,40],[4,18],[0,1],[5,23],[3,37],[1,48],[2,43],[6,40],[5,36],[0,69],[0,95],[0,10],[3,42],[1,4],[9,21],[15,9],[14,1],[23,2],[13,4],[12,20],[10,24],[1,4],[19,23],[8,10],[17,28],[15,23],[16,22],[12,18],[10,29],[3,41],[0,2],[-1,19],[0,20],[-5,38],[-2,8],[-5,24],[-3,37],[2,15],[3,33],[5,40],[-3,37],[5,46],[9,40],[3,40],[7,32],[0,69]],[[61786,70153],[-19,8],[-11,-1],[-25,-2],[-6,-1],[-4,0],[-70,10],[-10,2],[-10,-18],[-6,-24],[-12,-134],[-1,-16],[-8,1],[-16,56],[-6,11],[-11,12],[-32,37],[-17,7],[-12,5],[-5,2],[-6,-7],[-3,-1],[-4,18],[-156,661],[-8,34],[-7,34],[-23,-27],[-82,-102],[-18,-23],[-73,-91],[-229,-282],[-88,-108],[-76,-92],[-69,-85],[-19,-23],[-19,-23],[-18,-21],[-17,-22],[-34,-42],[-34,-42],[-37,-44],[-32,-40],[-38,-47],[-38,-47],[-25,-31],[-24,-29],[-2,-2],[-58,-72],[-82,-101],[-18,-22],[-48,-62]],[[60120,69367],[-32,3],[-108,24],[-19,4],[-15,4],[-13,3],[-225,51],[-41,9],[-29,6],[-25,7],[-14,8],[-13,5],[-108,19],[-31,8],[-89,24],[-112,21],[-81,19],[-84,20],[-1,0],[-14,2],[-129,31],[-1,1],[-54,12],[-62,14],[-71,15],[-114,26],[-18,6],[-14,1],[-19,7],[-34,7],[-7,2],[-36,7],[-17,4],[-20,5],[-26,7],[-31,8],[-48,10],[-2,1],[-20,4],[-16,4],[-24,5],[-22,5],[-28,7],[-63,14],[-38,8],[-35,8],[-19,4],[-22,5],[-31,7],[-101,22],[-47,10],[-29,7],[-25,6],[-24,5],[-34,8],[-34,8],[-19,4],[-18,4],[-71,16],[-2,1],[-15,4],[-17,3],[-6,1],[-42,10],[-75,16],[-93,21],[-50,12],[-48,11],[-48,11],[-71,16],[-67,15],[-67,14],[0,1],[-34,7],[-26,6],[-18,4],[-102,22],[-17,3],[-2,1],[-13,3],[-29,4],[-64,15],[-22,5],[-1,1],[-92,18],[-20,6],[-18,3],[-14,2],[-81,21],[-4,1],[-24,6],[-38,8],[-58,12]],[[56365,70213],[-35,134],[-2,7],[-39,140],[-72,263],[-16,53],[-1,2],[-21,63],[-87,252],[-10,30],[-22,64],[-11,32],[-10,28],[-31,89],[-15,44],[-11,34],[-30,86],[-38,111],[-10,28],[-51,152],[-24,69],[-19,83],[-3,46],[-6,108],[-4,55],[-11,192],[-8,127],[-7,114],[-6,107],[-1,7],[-4,81],[-4,48],[-2,45],[-5,91],[-7,102],[-2,47],[-1,9],[-14,243],[-2,12],[-3,18],[-3,19],[-23,77],[-26,88],[-11,37],[-41,138],[-10,31],[-43,143],[-26,86],[37,110],[11,33],[49,144],[49,145],[80,239],[23,68],[30,93],[55,172],[4,11],[67,214],[16,14]],[[71889,74040],[-42,-116],[-78,-217],[-20,-53],[-33,-92],[-33,-91],[-57,-155],[-32,-89],[-48,-127],[-116,-321],[-19,-56],[-23,-66],[-14,-38],[-14,-41],[-17,-44],[-18,-49],[-5,-15],[-39,-104],[-44,-122],[-85,-233],[-155,-429],[-117,-323],[-27,-75],[-126,-344],[-22,-55],[-22,-57]],[[70683,70728],[-57,-110],[-90,-177],[-4,-7],[-32,-62],[-47,-92],[-50,-95],[-45,-87],[-15,-28],[-22,-46],[-100,-197],[-55,-106],[-29,-58],[-25,-49],[-39,-75],[-29,-56],[-96,-181],[-30,-50],[-21,-43],[-25,-53],[-103,-193],[-6,-11],[-4,-1],[-19,-18],[-20,-23],[-11,-26],[-8,-35],[-2,-21],[-3,-5],[-111,-204],[-24,-39],[-5,-25],[-6,-28],[-25,-24],[-30,-19],[-41,-12],[-21,10],[-10,11],[-6,5],[-2,7],[-1,16],[0,18],[7,11],[0,3],[1,13],[1,11],[0,27],[-4,25],[0,1],[-6,32],[-4,13],[-7,8],[-26,17],[-17,0],[-7,0],[-3,0],[-6,0],[-10,-6],[-8,-12],[-1,-11],[0,-29],[1,-10],[0,-4],[1,-2],[3,-4],[7,-8],[15,-26],[6,-15],[1,-3],[1,-1],[1,-4],[14,-68],[2,-23],[1,-48],[-1,-21],[-5,-22],[-1,-4],[-5,-7],[-10,-5],[-5,5],[-5,12],[-36,76],[-3,6],[-60,65],[-19,-6],[-16,-4],[-5,-2],[-5,-1],[-26,-7],[-18,-61],[-1,-50],[2,-80],[1,-3],[5,0],[4,3],[4,4],[7,3],[0,-7],[1,-7],[0,-6],[1,-7],[1,-6],[1,-6],[1,-6],[0,-3],[3,-12],[2,-8],[1,-5],[2,-5],[1,-2],[4,-11],[1,-3],[2,-4],[2,-4],[3,-5],[-4,-8],[-8,-19],[-10,-4],[-3,-2],[-8,-3],[-22,-5],[-15,-1],[-5,-2],[-7,-4],[-31,-57],[-6,-15],[-16,-93],[-1,-11],[-2,-44],[-1,-4],[-17,-52],[-6,-10],[-11,-10],[-6,-2],[-7,10],[-4,16],[-7,39],[-4,9],[-10,4],[-7,-11],[-12,-26],[-7,-24],[-12,-53],[-1,-4],[-1,-4],[-3,-5],[-69,-54],[-14,-4],[-13,12],[-40,46],[-8,17],[-2,11],[-19,40],[-8,6],[-15,0],[-7,-6],[-14,-17],[-7,-16],[-3,-11],[0,-16],[2,-9],[3,-13],[10,-43],[18,-32],[8,-12],[13,-20],[22,-77],[-12,-21],[-37,-67],[-7,-12],[-10,-13],[-24,-33],[-7,-10],[-2,-2],[-5,-1],[-4,0],[-16,9],[-25,19],[-21,22],[-25,27],[-40,43],[-24,33],[-3,4],[-26,48],[-3,9],[0,8],[0,1],[0,6],[11,42],[3,12],[1,19],[-3,16],[-8,36],[-8,39],[0,8],[0,7],[-35,0],[-36,0],[0,-5],[-7,-42],[-32,-121],[-2,-10],[-2,-10],[-3,-20],[-1,-10],[-28,-251],[-1,-13],[0,-7],[0,-7],[0,-27],[0,-13],[0,-8],[0,-2],[-20,-56],[-5,-13],[-9,-9],[-26,-21],[-3,-1],[-28,-10],[-18,-7],[-50,26],[-33,36],[-6,14],[-10,27],[-16,37],[-4,8],[-22,10],[-69,20],[-18,5],[-28,8],[-5,2],[-43,15],[-27,10],[-45,16],[-5,2],[-27,28],[-1,7],[-3,5],[-71,69],[-16,4],[-13,0],[-21,-18],[-8,-12],[-25,-50],[-1,-20],[2,-8],[0,-11],[0,-13],[-1,-17],[-4,-15],[-1,-4],[-6,-13],[-12,-24],[-10,-21],[-14,-28],[-20,-23],[-28,-26],[-12,-12],[-17,31],[-15,-5],[-14,6],[-12,30],[-12,26],[-11,34],[-12,24],[-1,2],[-17,9],[-14,-4],[-16,2],[-14,-5],[-13,-11]],[[67416,67386],[-17,14],[-12,30],[2,46],[10,30],[11,23],[12,34],[-9,30],[-9,36],[5,34],[5,36],[8,37],[7,38],[0,47],[12,30],[6,49],[12,20],[14,-14],[15,-22],[14,22],[15,18],[12,16],[9,35],[4,44],[-8,45],[-18,62],[7,34],[7,40],[-10,42],[4,45],[-16,13],[-10,29],[-4,38],[4,39],[-4,40],[-12,38],[2,44],[-11,26],[-20,42],[-4,45],[2,37],[-2,43],[-5,41],[-17,10],[-21,30],[-13,16],[4,45],[-2,41],[-2,48],[-14,-3],[-13,11],[-5,36],[3,38],[2,46],[-9,31],[-14,0],[-8,37],[-4,43],[-13,-1],[-13,21],[-17,15],[-2,44],[-15,11],[-5,36],[7,36],[-14,16],[-17,22],[-7,35],[-1,43],[-3,37],[6,41],[-7,41],[-4,42],[-12,17],[-14,16],[-2,38],[-4,38],[0,39],[-7,35],[-10,30],[-4,37],[3,39],[-2,41],[-1,39],[-6,35],[0,39],[3,38],[-4,38],[-7,36],[-7,35],[-1,39],[3,39],[5,36],[2,38],[-7,34],[-3,41],[9,31],[13,17],[3,39],[-3,39],[3,37],[2,21],[2,16],[-2,39],[-3,36],[8,42],[13,6],[15,23],[-5,41],[-4,43],[-5,40],[-14,6],[-4,47],[-8,47],[-14,47],[-3,37],[0,38],[-2,38],[-1,41],[-10,29],[-8,34],[-11,27],[-12,17],[-7,36],[-3,38],[-3,37],[-4,37],[-8,31],[-6,34],[-13,-11],[-13,12],[-9,29],[-12,21],[1,38],[-3,37],[-13,14],[-3,39],[-8,29],[-9,33],[-8,31],[-12,13],[-13,16],[-11,25],[-12,20],[-12,15],[-13,13],[-9,29],[4,37],[-13,16],[-10,28],[-3,37],[-10,25],[-13,1],[-7,34],[-3,36],[-4,36],[-15,1],[-14,4],[-11,25],[-10,25],[-8,31],[-7,34],[-8,29],[-15,10],[-12,16],[-11,23],[-8,30],[-10,28],[-13,1],[-14,-2],[-13,15],[-13,17],[-13,6],[-13,15],[-13,2],[-9,29],[-10,24],[-11,25],[-13,13],[-10,-25],[-14,6],[-12,17],[-9,31],[-11,23],[-12,13],[-6,35],[-3,38],[-7,32],[-12,23],[-13,-15],[-13,-11],[-13,13],[-13,11],[-11,22],[-7,31],[-13,14],[-14,0],[-14,-2],[-13,10],[-9,30],[-3,38],[-2,38],[-12,18],[-13,13],[-10,25],[-10,29],[-13,-1],[2,19],[4,26],[2,31],[2,17],[4,31],[4,35],[0,9],[1,17],[3,41],[-1,12],[-2,29],[-4,40],[-2,63],[-2,63],[2,43],[5,40],[5,37],[-2,47],[-4,36],[-6,37],[-8,36],[-12,21],[-9,28],[-7,35],[-2,39],[-4,38],[-3,19],[-3,14],[-4,20],[-4,14],[-11,22],[-11,22],[-8,23],[-1,6],[-16,20],[-11,13],[-14,-16],[-12,17],[-12,19],[-9,27],[-11,21],[-12,16],[-14,4],[-12,16],[-9,29],[-8,32],[-3,9],[-21,57],[-9,40],[-6,54],[-15,135],[-7,77],[-8,38],[-15,70],[-3,26],[-3,30],[-11,170],[-3,63],[-3,53],[-4,115],[-10,42],[-13,25],[-21,29],[-13,17]],[[80431,71107],[-8,-48],[-5,-43],[-2,-59],[-12,-22],[-9,-32],[-8,-44],[-14,-26],[8,-66],[-22,-33],[-14,6],[-16,39],[-16,-10],[-28,5],[-18,-41],[6,-41],[15,-24],[12,-51],[-17,-67],[17,-20],[17,-67],[15,-25],[11,-60],[8,-33],[-14,-19],[-10,-32],[-15,-20],[-17,-11],[-10,-45],[-24,-10],[-20,-53],[-29,-36],[-14,-16],[-18,13],[-5,37],[-7,44],[14,42],[-38,66],[-31,-45],[-62,16],[-14,-14],[-6,-33],[-12,-44],[-15,-51],[-6,-45],[-9,-29],[-12,-22],[-10,-38],[-11,-28],[-34,10],[-14,-20],[-18,-16],[-13,-16],[-27,-16],[-20,-14],[-12,-42],[5,-45],[12,-32],[2,-39],[-13,-38],[-25,-45],[-2,-42],[13,-7],[13,-58],[24,-16],[18,-24],[-1,-40],[-2,-57],[15,-45],[-12,-36],[-28,-27],[8,-53],[16,-6],[22,-22],[7,-47],[4,-54],[9,-42],[18,9],[12,37],[27,-88],[8,-94],[-13,-13],[-11,-33],[-15,-8],[-6,38],[-18,18],[-32,-5],[0,-53],[-4,-39],[-14,-11],[-8,-36],[-8,-38],[-14,-15],[-4,-44],[-9,-36],[-20,-33],[1,-43],[6,-72],[-9,-60],[-16,-26],[3,-47],[-8,-46],[-12,-40],[-8,-32],[-3,-45],[-2,-41],[2,-63],[1,-55],[-2,-50],[9,-33],[12,-33],[-1,-48],[-5,-38],[-9,-35],[-15,-36],[-25,-11],[-40,-5],[-18,-3],[-17,-23],[-11,-27],[5,-64],[6,-94],[10,-46],[7,-48],[-1,-40],[14,-8],[22,-44],[-12,-37],[5,-61],[10,-44],[6,-40],[16,-10],[3,-58],[-6,-41],[3,-46],[7,-50],[23,-15],[-5,-39],[-14,-37],[-5,-47],[-21,-1],[-11,23],[-22,-1],[-13,-65],[-22,0],[-15,-32],[-8,-39],[-15,4],[-12,29],[-12,11],[-13,13],[-21,-8],[-13,-8],[-2,-75],[12,-46],[14,-14],[-25,-54],[-4,-44],[-14,-30],[16,-27],[11,-23],[11,-54],[-18,-34],[-18,-48],[-23,-19],[-13,7],[-25,22],[-20,-9],[-17,-12],[-15,1],[-11,-22],[-17,-1],[-11,-30],[-20,-46],[-9,-48],[-3,-48],[28,-44],[-17,-32],[-20,-51],[-14,-43],[-23,-11],[-20,6],[-30,-33],[-12,-32],[-17,-21],[-21,-28],[-18,-30],[-11,-21],[-19,-14],[-20,-20],[-11,-59],[-23,-29],[-7,-39],[-7,-37],[-9,-55],[-14,-48],[-2,-20],[-2,-21],[-5,-36],[4,-123],[3,-43],[-5,-63],[-6,-40],[0,-48],[-2,-55],[-9,-46],[-11,-16],[-2,-3],[-8,-30],[-8,-32],[-10,-33],[-13,-6],[-14,-7],[-18,-11],[-14,-11],[-22,-18],[-16,-10],[-13,-11],[-13,-9],[-13,-6],[-16,-4],[-13,-6],[-24,13],[-8,55],[-11,27],[-11,29],[-11,36],[-13,12],[-18,3],[-28,-8],[-17,-14],[-3,-38],[3,-37],[-7,-62],[-17,-43],[-14,-31],[-11,-34],[-16,-39],[-18,-24],[-17,-2],[-20,-2],[-12,-17],[-13,-39],[-9,-63],[-6,-33],[-5,-38],[-12,-34],[-19,-28],[-17,-13],[-16,-6],[-15,6],[-14,-18],[-13,-13],[-14,-4],[-19,7],[-12,36],[-14,15],[-8,-35],[-6,-62],[3,-67],[-8,-58],[-11,-49],[-3,-56],[-8,-63],[-17,-14],[-28,3],[-16,43],[-14,29],[-14,5],[-19,-6],[-18,-47],[-14,-29],[-10,-29],[-20,-9],[-15,27],[-18,7],[-19,-24],[-17,16],[-6,-35],[-12,-38],[-4,-68],[-2,-42]],[[78032,63779],[0,-1],[-9,-11],[-2,-8],[-2,-9],[-1,-7],[-2,-68],[-1,-14],[-2,-16],[-8,-70],[-7,-60],[-3,-19],[-13,-76],[-8,-33],[-24,-85],[-35,-97],[-14,-32],[-3,-8],[-9,-12],[-7,-2],[-9,62],[-3,23],[-2,14],[-1,4],[-21,73],[-8,60],[-1,119],[1,6],[5,52],[0,2],[0,33],[0,3],[-27,176],[-27,175],[-3,20],[-11,45],[-4,16],[-1,5],[-7,23],[0,1],[-19,50],[-3,9],[-5,41],[-3,48],[-8,62],[-5,21],[-10,17],[-19,18],[-16,7],[-14,0],[-29,-23],[-23,-22],[-3,-7],[-2,-2],[-1,-6],[-7,-38],[-19,-80],[-2,-5],[-2,-4],[-9,-28],[-3,-4],[-12,5],[-11,20],[-10,37],[-1,6],[-29,140],[-23,92],[-17,42],[-10,51],[-5,40],[-9,54],[-7,62],[-1,11],[-4,39],[-8,39],[-2,9],[0,1],[-4,17],[-2,3],[-3,8],[-5,3],[-7,4],[-2,0],[-8,-3],[-10,-18],[-11,-32],[-6,-22],[-18,-46],[-15,-19],[-13,-10],[-30,-12],[-9,-10],[-7,-7],[-5,-12],[0,-23],[2,-15],[10,-51],[0,-4],[3,-12],[29,-148],[19,-94],[7,-54],[0,-2],[1,-15],[0,-10],[-3,-14],[0,-3],[-2,-6],[-1,-2],[-19,-21],[-37,1],[-21,7],[-9,6],[-13,18],[-2,3],[-2,2],[-13,32],[-8,22],[-21,77],[-1,47],[0,92],[-9,53],[-2,44],[11,44],[12,30],[12,44],[15,36],[11,34],[1,44],[-17,95],[-6,41],[12,90],[-3,38],[-2,46],[4,45],[2,33],[9,73],[5,17],[15,36],[26,40],[13,29],[5,18],[4,25],[0,4],[1,10],[7,77],[-3,25],[-9,69],[-4,27],[-9,69],[-9,-10],[-6,28],[-12,53],[-3,26],[-5,56],[-1,9],[0,48],[6,35],[11,46],[39,85],[23,41],[28,45],[35,52],[3,19],[0,45],[-4,60],[-15,127],[-17,90],[-7,33],[-4,8],[-1,1],[-12,10],[-6,-3],[-8,-8],[-11,-19],[-8,-21],[-11,-54],[-4,-37],[0,-31],[3,-33],[0,-43],[-3,-86],[-3,-48],[-3,-22],[-7,-40],[-8,-30],[-23,-52],[-34,-63],[-24,-27],[-63,-64],[-45,-10],[-16,17],[-1,1],[-2,4],[-4,4],[-12,14],[-8,15],[-50,188],[-12,45],[-5,38],[0,22],[3,32],[7,34],[6,21],[21,49],[14,21],[23,8],[23,22],[4,4],[8,10],[9,11],[9,17],[9,31],[4,15],[3,8],[6,63],[2,27],[-2,19],[-24,109],[-8,30],[-8,22],[-14,17],[-21,13],[-51,11],[-6,1],[-38,4],[-3,1],[0,-2],[0,-1],[-15,-11],[-13,0],[-14,14],[-6,6],[-24,7],[-15,-4],[-3,-1],[-5,-1],[-9,-12],[-2,-3],[-13,-28],[-1,-3],[-8,-24],[-11,-44],[-21,-95],[-2,-12],[-11,-21],[-10,-13],[-9,-6],[-6,2],[-7,9],[-10,12],[-4,5],[-3,6],[-9,22],[-7,22],[-13,72],[-3,21],[1,88],[0,11],[9,82],[23,203],[15,124],[8,59],[4,16],[9,28],[10,21],[9,11],[21,7],[5,0],[9,0],[27,-7],[17,1],[4,1],[9,17],[0,1],[2,4],[9,52],[-1,44],[-9,132],[-1,10],[-5,45],[-2,11],[-6,25],[-5,15],[-18,18],[-27,11],[-56,4],[-8,-1],[-2,-2],[-11,-7],[-5,-7],[-4,-5],[-35,-57],[-1,-2],[-9,-23],[-7,-42],[-1,-27],[1,-52],[-6,-48],[-8,-26],[-8,-19],[-10,-13],[-21,-14],[-3,-1],[-35,-7],[-7,-1],[-16,1],[-4,1],[-2,-1],[-20,-7],[-65,-2],[-16,11],[-16,20],[-10,34],[-2,9],[-4,24],[-4,25],[0,15],[0,2],[1,48],[-2,119],[-7,52],[-11,33],[-6,9],[-24,12],[-8,0],[-5,1],[-1,0],[-3,-1],[-10,-4],[-6,-4],[-4,-2],[-13,-15],[-3,-5],[-6,-13],[-18,-43],[-9,-30],[-22,-88],[-9,-37],[-15,-62],[-1,-10],[-15,-27],[-5,-8],[-6,-12],[-4,-3],[-10,0],[-8,7],[-5,13],[-8,23],[-12,38],[-1,4],[-20,97],[-9,41],[-1,9],[-7,25],[-6,21],[-11,38],[-41,12],[-1,-2],[-2,-3],[-1,-1],[-130,-138],[-7,-14],[-2,-3],[-1,-17],[-7,-38],[-10,-115],[-4,-49],[-8,-63],[-6,-35],[-10,-41],[-12,-28],[-11,-17],[-34,23],[-8,5],[-17,32],[-2,3],[-1,2],[-37,34],[-19,6],[-12,0],[-3,0],[-8,-1],[-5,6],[-8,19],[-7,31],[-1,5],[-7,46],[-2,33],[0,18],[2,58],[17,86],[-1,23],[-1,6],[-5,18],[-12,28],[-7,17],[-10,15],[-20,21],[-9,5],[-7,4],[-9,1],[-9,0],[-8,8],[-10,22],[-2,22],[0,5],[0,8],[0,16],[2,10],[5,24],[4,27],[4,25],[3,24],[1,22],[-4,27],[-6,12],[-8,8],[-178,75],[-9,2],[-3,0],[-34,-4],[-12,-2],[-18,-32],[0,-1],[-1,-5],[-2,-1],[-22,-50],[-29,-102],[-18,-40],[-11,-3],[-6,17]],[[75235,67903],[-7,60],[6,44],[21,80],[18,48],[13,33],[8,21],[14,31],[4,10],[8,30],[5,22],[4,49],[0,27],[0,27],[2,43],[7,50],[4,18],[3,7],[1,4],[2,4],[11,14],[16,-1],[10,-4],[18,-8],[10,2],[6,9],[3,8],[3,22],[0,16],[0,15],[-3,17],[-2,21],[-2,8],[-4,16],[-3,11],[-10,29],[-12,30],[-1,1],[-30,65],[-5,10],[-17,30],[-9,9],[-19,9],[-24,-8],[-5,-2],[-3,2],[-20,7],[-10,13],[-7,13],[-3,12],[-3,17],[-3,19],[1,35],[3,27],[10,48],[26,70],[2,3],[28,88],[1,5],[2,6],[13,54],[2,8],[8,49],[5,37],[8,52],[0,4],[6,38],[0,1],[1,23],[-3,19],[-3,18],[-9,14],[-6,3],[-16,-4],[-13,-12],[-14,-20],[-14,-25],[-5,-12],[-3,-8],[-6,-24],[-2,-9],[-2,-7],[0,-5],[-7,-34],[0,-14],[-5,-21],[-12,-42],[-3,-11],[-3,-3],[-1,0],[-52,-11],[-3,0],[-12,-58],[-27,65],[-10,22],[-2,4],[-16,39],[0,200],[0,40],[-5,111],[0,26],[1,38],[9,49],[6,35],[2,2],[-1,17],[-1,121],[0,8],[-28,7],[-8,-3],[-12,-5],[-5,-8],[-8,-11],[-5,-12],[-9,-24],[-8,-16],[-12,-14],[-11,-8],[-10,0],[-11,13],[-7,15],[-1,3],[-2,4],[-1,5],[-10,44],[-7,41],[-7,57],[-6,68],[-6,124],[-6,70],[-3,16],[-9,23],[-7,7],[-4,0],[-6,-2],[-5,-2],[-12,-4],[-58,-32],[-41,-22],[-9,-5],[-9,-15],[-7,-19],[0,-1],[-15,-85],[-8,-53],[-4,-28],[-7,-54],[-8,-59],[-26,-41],[-54,-70],[-50,-40],[-13,-3],[-5,5],[-10,14],[-1,0],[-2,4],[-2,9],[-5,23],[-7,86],[1,38],[0,15],[3,25],[1,6],[1,2],[3,17],[8,19],[5,13],[17,44],[3,4],[6,13],[13,22],[6,8],[11,12],[1,1],[41,38],[10,10],[5,14],[4,14],[5,40],[0,40],[-7,32],[-5,16],[-18,34],[-10,10],[-20,14],[-78,26],[-18,6],[-11,3],[-22,5],[-7,-1],[-8,-1],[-2,0],[-9,-5],[-16,-9],[0,-2],[-1,0],[-20,-7],[-22,-15],[-2,-1],[-2,-1],[-14,-14],[-8,-14],[-7,-16],[-4,-10],[-4,-9],[-3,-9],[-4,-16],[-6,-23],[-3,34],[-3,37],[-5,50],[-15,160],[-4,40],[-10,98],[-11,92],[-9,75],[-4,30],[-4,40],[-7,54],[-6,41],[-8,64],[-1,2],[-35,131],[-12,50],[0,1],[-29,124],[-33,140],[-12,49],[-41,171],[-11,44],[-33,135],[-9,38],[-13,53],[-51,207],[-94,355],[-12,19],[-91,138],[-25,38],[-59,91],[-23,37],[-51,74],[-36,53],[-37,55],[-61,92]],[[56365,70213],[-31,-104],[-9,-32],[-20,-68],[-39,-125],[-31,-99],[-22,-75],[-25,-85],[-21,-67],[-24,-79],[-10,-33],[-11,-38],[-13,-44],[-1,-4],[-16,-51],[-12,-44],[-9,-29],[-25,-79],[-22,-75],[-15,-49],[-12,-39],[-11,-38],[-24,-81],[-48,-159],[-26,-87],[-13,-43],[-23,-76],[-27,-87],[-15,-25],[-47,-34],[-20,-16],[-40,-28],[-21,-17],[-24,-18],[-30,-23],[-27,-19],[-86,-62],[-55,-40],[-130,53],[-54,22],[-33,14],[-30,13],[-57,23],[-73,28],[-35,17],[-37,1],[-62,2],[-12,0],[-14,1],[-4,-1],[-12,-22],[-9,-28],[-2,-6],[-5,-19],[-2,-5],[-5,-10],[-2,-2],[-10,-9],[-44,-8],[-16,11],[-6,8],[-7,1],[-52,-32],[-18,-11],[-13,-10],[-1,0],[-7,-11],[0,-2],[-4,-11],[-1,-3],[-2,-14],[-1,-42],[0,-61],[1,-31],[5,-63],[13,-118],[-6,3],[-14,7],[-8,2],[-25,-14],[-27,89],[-14,83],[-3,39],[-10,74],[-5,18],[-5,9],[-21,13],[-107,27],[-7,-7],[0,-1],[-3,-13],[0,-38],[6,-167],[3,-33],[2,-21],[11,-29],[7,-11],[3,-9],[0,-14],[-1,-12],[-1,-3],[-20,-46],[-5,-7],[-9,0],[-35,8],[-16,15],[-18,31],[-51,90],[-8,14],[-2,11],[0,9],[-1,8],[-6,3],[-80,49],[-8,1],[-8,-6],[-9,-12],[-10,-22],[-14,-45],[-6,-21],[-4,-10],[0,-1],[-4,-6],[-9,0],[-10,18],[-2,10],[-12,46],[0,5],[0,24],[5,18],[13,18],[15,18],[12,19],[4,8],[7,14],[4,14],[0,14],[-5,57],[-7,21],[-6,0],[-8,-9],[-5,-41],[-7,-22],[-8,-15],[0,-1],[-22,-20],[-14,-13],[-7,-19],[-3,-14],[-1,-3],[-2,-22],[0,-1],[-1,-66],[0,-27],[-4,-133],[-4,-52],[-10,-24],[-4,-2],[-5,-4],[-12,0],[-2,0],[-4,3],[-35,34],[-20,14],[-3,-2],[-6,-16],[0,-22],[0,-1],[1,-16],[4,-137],[-43,-51],[-20,-22]],[[53944,67471],[-13,4],[-106,158],[-43,69],[-16,23],[-19,31],[-21,33],[-18,27],[-14,23],[-22,34],[-23,36],[-16,26],[-18,27],[-46,73],[-33,52],[-1,2],[-40,64],[0,1],[-38,62],[-22,35],[-24,39],[-13,19],[-45,75],[-17,29],[-16,26],[-14,24],[-21,33],[-14,20],[-48,81],[-16,25],[-27,43],[-22,34],[-1,3],[-24,33],[-17,27],[-16,27],[-16,26],[-18,29],[-14,23],[-21,35],[-18,32],[-16,24],[-63,98],[-15,27],[-6,11],[-7,11],[-14,22],[-13,21],[-17,28],[-15,23],[-29,46],[-30,47],[-14,22],[-9,16],[-41,65],[-19,32],[-178,-125],[-23,35],[-12,18],[-13,19],[-80,123],[10,33],[55,32],[15,8],[21,5],[32,8],[66,17],[-58,96],[-22,36],[-15,24],[-25,40],[-23,38],[-1,1],[-31,51],[-20,32],[-13,20],[-22,37],[-33,56],[-15,23],[-13,21],[-13,21],[-15,25],[-18,27],[-21,35],[-18,35],[-5,7],[-43,66],[-40,61],[-22,34],[-5,8],[-20,35],[-22,36],[-21,37],[-32,50],[-34,55],[-11,18],[-54,90],[-16,24],[-12,19],[-16,27],[-14,22],[-8,13],[-18,29],[-2,3],[-24,40],[-61,94],[-25,38],[-25,37]],[[51692,71061],[4,50],[1,3],[1,13],[1,15],[1,3],[4,32],[2,20],[6,41],[5,42],[3,37],[4,25],[1,4],[7,45],[3,25],[3,23],[2,21],[0,6],[1,5],[1,15],[3,32],[4,33],[1,14],[1,14],[0,6],[0,1],[0,7],[1,2],[1,3],[8,49],[5,34],[2,20],[5,32],[2,12],[3,29],[6,42],[2,2],[1,2],[2,6],[-1,10],[5,45],[11,53],[6,28],[4,18],[7,32],[0,1],[15,63],[9,48],[2,10],[6,29],[7,37],[4,18],[8,34],[10,52],[11,67],[1,8],[5,33],[4,26],[6,44],[5,41],[3,30],[1,13],[2,63],[2,30],[-1,8],[3,15],[4,16],[3,7],[0,2],[0,4],[0,2],[1,1],[0,1],[1,4],[1,4],[3,13],[1,2],[2,5],[0,1],[0,2],[1,5],[1,2],[5,17],[3,12],[1,3],[5,15],[2,5],[3,10],[1,2],[2,7],[7,19],[1,1],[12,31],[1,2],[8,26],[10,30],[4,11],[8,24],[17,46],[8,26],[17,54],[1,5],[7,20],[9,38],[17,64],[26,84],[10,23],[2,2],[0,2],[3,10],[14,29],[11,18],[4,6],[8,14],[10,14],[16,24],[1,2],[1,0],[3,2],[4,11],[1,2],[1,3],[11,18],[28,40],[12,15],[19,31],[22,30],[21,29],[9,12],[4,5],[19,22],[22,25],[19,18],[37,28],[4,2],[6,4],[10,8],[1,0],[14,6],[16,16],[1,1],[20,13],[20,9],[20,4],[6,0],[8,3],[6,2],[16,1],[18,2],[15,-1],[18,-1],[17,6],[16,9],[5,3],[8,6],[14,2],[15,-1],[6,0],[23,2],[14,0],[11,-2],[18,2],[27,2],[21,5],[31,10],[1,0],[17,5],[13,3],[13,3],[7,4],[10,4],[3,0],[2,0],[23,12],[30,7],[26,9],[31,12],[13,1],[67,36],[22,17],[24,17],[55,38],[80,78],[12,13],[86,93],[47,54],[33,40],[29,42],[14,14],[10,10],[12,19],[19,38],[16,40],[18,47],[17,49],[1,3],[20,54],[9,32],[9,35],[14,40],[8,29],[6,19],[11,45],[10,41],[12,41],[10,44],[23,89],[14,59],[8,42],[2,49],[5,52],[6,46],[0,5],[9,71],[8,52],[2,11],[7,40],[6,35],[16,78],[4,21],[9,56],[25,102],[19,58],[37,81],[37,72],[1,0],[30,49],[23,36],[37,48],[16,20],[35,37],[53,53],[20,21],[56,54],[56,53],[49,54],[19,23],[39,55],[7,10]],[[91590,66047],[-1,62],[-2,102],[-1,19],[-3,50],[5,57],[-6,49],[-13,30],[-4,42],[-8,33],[1,51],[-15,44],[-18,14],[-6,67],[-21,14],[-16,12],[-20,40],[-16,20],[-15,-5],[-17,-11],[-15,-9],[-19,3],[-19,10],[-17,33],[-11,50],[-14,17],[-14,-6],[-18,19],[-17,-5],[-15,-28],[-12,-11],[-14,-9],[-26,-12],[-16,-6],[-35,-12],[-34,-7],[-60,-14],[-29,-6],[-177,-39],[-13,-3],[-46,-10],[-303,-68],[-100,-22],[-12,-5],[-39,-18],[-2,0],[-6,-36],[-8,-57],[-11,-22],[-9,-42],[-14,-18],[-19,-24],[1,-37],[6,-42],[-15,-48],[-16,-13],[-16,8],[-17,7],[-12,37],[-14,-5],[-24,-33],[-9,-40],[-18,-59],[-18,2],[-16,9],[-21,-12],[-13,-20],[-24,-28],[-1,-60],[-11,-77],[-11,-28],[-9,-53],[-16,-10],[-24,-31],[-25,47],[-20,-19],[-19,2],[-15,-11],[-14,-12],[-15,-26],[-4,-95],[-11,-53],[-14,-24],[-23,-17],[-11,35],[-21,-3],[-17,-34],[-15,-2],[-29,18],[-5,61],[-39,-42],[-17,-4],[-13,-23],[-14,-11],[-15,22],[-11,39],[-12,37],[-16,-14],[-14,-37],[3,-49],[-11,-24],[-16,-15],[-15,-8],[-17,-23],[-18,15],[-13,2],[-25,9],[-8,45],[-7,37],[-10,26],[-12,-18],[-14,-24],[-19,5],[-9,30],[-20,39],[-13,12],[-9,33],[-13,19],[-15,6],[-11,-32],[-12,-32],[-17,-16],[-10,-28],[-19,23],[-14,21],[-18,10],[-6,37],[1,39],[8,39],[-3,47],[-14,33],[-18,-15],[-21,-21],[-14,9],[-9,10],[-4,6],[-17,4],[-12,-26]],[[89092,65906],[6,110],[3,66],[3,56],[9,187],[2,50],[23,511],[13,277],[22,401],[11,259],[8,176],[8,170],[13,298],[8,168],[4,98],[9,202],[14,292],[2,61],[2,58],[5,42],[5,39],[-7,39],[11,29],[-7,33],[-7,40],[11,27],[-2,38],[1,38],[-1,38],[3,38],[9,28],[-5,38],[4,42],[12,18],[6,16],[4,15],[6,39],[5,38],[5,39],[6,34],[6,23],[4,13],[8,31],[1,2],[2,5],[1,2],[9,28],[9,27],[6,5],[8,8],[8,36],[4,37],[3,44],[1,38],[-1,15],[-3,22],[0,1],[-13,25],[-15,-1],[-7,4],[-7,4],[-14,10],[-16,13],[-13,5],[-14,11],[-16,3],[-10,3],[-15,6],[-19,6],[-19,9],[-98,75],[-125,96],[-197,150]],[[90784,75789],[14,-37],[14,-56],[10,-36],[11,-36],[13,-29],[4,-9],[1,-2],[4,-9],[1,-3],[1,-2],[2,-5],[6,-19],[9,-28],[2,-7],[16,-54],[19,-41],[12,-30],[7,-17],[16,-42],[18,-34],[4,-7],[7,-13],[0,-1],[10,-18],[21,-41],[4,-8],[1,-2],[2,-3],[3,-6],[1,-1],[20,-34],[11,-20],[16,-25],[1,-2],[2,-4],[12,-18],[12,-19],[10,-15],[15,-22],[5,-6],[0,-1],[29,-44],[25,-28],[6,-6],[2,-1],[6,-7],[6,-5],[1,-2],[5,-5],[3,-3],[11,-10],[1,-2],[10,-11],[1,0],[2,-3],[9,-9],[16,-15],[29,-50],[6,-11],[15,-27],[13,-29],[33,-45],[2,-3],[9,-11],[15,-22],[14,-27],[26,-44],[14,-20],[1,-3],[19,-34],[5,-9],[3,-7],[13,-20],[4,-15],[6,-24],[11,-46],[1,-4],[0,-1],[2,-6],[13,-47],[1,-8],[43,-276],[8,-23],[20,-404],[7,-105],[7,-150],[13,-147],[2,-17],[3,-37],[6,-71],[32,-255],[13,-73],[30,-159],[5,-23],[2,-8],[-11,-251],[-1,-10],[-1,-67],[-3,-84],[1,-76],[8,-100],[8,-110],[13,-169],[3,-45],[-9,-38],[-37,-115],[0,-118],[0,-48],[33,-181],[6,-66],[4,-46],[0,-2],[1,-5],[15,-138],[1,-1],[0,-1],[8,-68],[2,-21],[0,-2],[0,-4],[-1,-7],[-3,-21],[-15,-79],[0,-2],[0,-3],[-7,-44],[-6,-34],[0,-3],[-1,-6],[-1,-7],[0,-6],[0,-3],[-8,-127],[0,-3],[0,-7],[-3,-115],[-3,-180],[0,-1],[-1,-62],[-5,-270],[0,-5],[0,-1],[0,-25],[0,-1],[1,-20],[0,-5],[0,-7],[0,-6],[1,-7],[0,-6],[19,-107],[13,-52],[1,-5],[1,-5],[2,-5],[2,-4],[29,-74],[2,-4],[2,-3],[1,-3],[39,-68],[1,-1],[2,-4],[1,-1],[1,-1],[16,-21],[5,-14],[29,-74],[1,-2],[12,-33],[7,-45],[0,-3],[1,-6],[2,-5],[1,-6],[1,-5],[1,-2],[4,-11],[45,-142],[1,-3],[2,-4],[2,-5],[10,-52],[1,-3],[34,-184],[1,-3],[1,-6],[1,-6],[0,-7],[1,-6],[0,-7],[0,-2],[3,-80],[0,-4],[0,-7],[0,-6],[0,-7],[0,-2],[-8,-150],[-6,-113],[-1,-5],[0,-6],[0,-3],[-3,-23],[-7,-74],[-1,-3],[-12,-101],[-1,-5],[-1,-7],[0,-1],[-53,-300],[-2,-24],[1,-29],[4,-62],[11,-158],[5,-113],[0,-1],[0,-4],[0,-5],[10,-164],[0,-9],[1,-3],[0,-6],[1,-7],[0,-3],[15,-108],[0,-2],[1,-6],[14,-84],[0,-1],[1,-5],[2,-6],[0,-2],[11,-45],[5,-28],[2,-18],[0,-14],[-8,-322],[-78,-495],[-14,-61],[-15,-44],[-26,-39],[-14,-12],[-22,-5],[-134,-13],[-21,13],[-18,10],[-14,14],[-19,15],[-3,-2]],[[89092,65906],[-5,-135],[-4,1],[-45,4],[-59,-19],[-49,-62],[-13,-27],[-14,1],[-14,20],[-18,7],[-16,-22],[2,-38],[-3,-43],[-12,-20],[-10,-40],[-14,6],[-16,24],[-18,3],[-10,-29],[-13,-30],[-15,-15],[-13,-27],[3,-44],[-14,-30],[-15,-14],[-8,-36],[7,-32],[13,-31],[12,-32],[15,-18],[12,-33],[-1,-43],[16,-2],[14,-8],[17,-37],[22,-8],[6,-43],[10,-23],[13,-24],[-15,-35],[-4,-37],[-12,-29],[-18,1],[-31,-6],[-7,-34],[11,-27],[13,-46],[-15,-35],[-5,-45],[-19,-45],[-8,-32],[-16,-30],[-11,-31],[-15,-29],[-19,-14],[-15,3],[-16,-11],[-13,-22],[-14,-11],[-14,-16],[-16,-4],[-17,-20],[-16,-14],[-12,-20],[-14,-27],[-13,-12],[-13,-19],[-13,-22],[-11,-24],[-6,-37],[-6,-34],[-9,-34],[-13,-15],[-12,-12],[-9,-28],[-9,-38],[-11,-26],[-11,-23],[-14,-8],[-17,-14],[-11,-31],[-4,-42],[-9,-42],[-11,-19],[-19,-23],[-16,-4],[-17,12],[-14,-4],[-15,5],[-12,15],[-11,21],[-15,14],[-10,36],[-13,-13],[-15,-13],[-14,8],[-19,37],[-13,16],[-14,2],[-8,-32],[-13,-18],[-14,-7],[-14,-2],[-15,0],[-13,15],[-15,12],[-12,28],[-10,25],[-15,2],[-12,20],[-13,18],[-17,13],[-14,5],[-15,2],[-2,-12],[-5,-21],[-12,-27],[-7,-32],[-2,-7],[0,-43],[-13,-10],[-11,-29],[-23,-9],[-13,-19],[-9,-28],[-13,-23],[-14,-13],[-11,-27],[-4,-37],[-8,-33],[-9,-37],[-9,-32],[-11,-23],[-6,-35],[-14,-6],[-13,8],[-14,-5],[-14,-11],[-14,-10],[-14,-12],[-14,-24],[-14,-14],[-15,-5],[-13,-8],[-16,-21],[-19,-18],[-12,-19],[-14,-2],[-14,-13],[-19,7],[-16,12],[-19,-5],[-17,-13],[-10,-34],[-9,-30],[-11,-53],[-14,-6],[-18,8],[-13,-21]],[[87376,63309],[-11,-9],[-50,-42],[-42,-33],[-42,-37],[-78,-70],[-4,-8],[-11,-20],[-11,-26],[-13,-10],[-13,15],[-15,16],[-17,21],[-16,16],[-7,33],[-3,43],[-16,26],[-14,13],[-19,-13],[-13,25],[-15,23],[-17,21],[-11,-29],[-13,-20],[-14,11],[-18,14],[-16,-13],[-19,4],[-16,-12],[-15,1],[-13,-33],[-14,0],[-15,24],[-17,15],[-17,-10],[-15,-22],[-15,-13],[-14,-18],[-14,18],[-9,29],[-8,41],[-11,22],[-17,0],[-12,30],[-22,1],[-13,17],[-12,24],[-14,15],[-11,25],[-12,22],[-6,38],[-23,1],[-5,43],[-9,44],[2,38],[-2,38],[8,38],[11,47],[4,46],[-2,42],[-5,50],[-11,28],[-17,9],[-17,0],[-13,11],[-20,-1],[-19,4],[-22,22],[-20,16],[-12,19],[-13,0],[-15,-12],[-16,-10],[-15,6],[-15,1],[-15,7],[-9,26],[-13,24],[-6,34],[-4,39],[-2,47],[-10,30],[-15,33],[2,45],[1,54],[2,85],[-3,72],[-1,-3],[-10,-17],[-14,-28],[-1,-2],[-28,-59],[-27,-56],[-26,-46],[-54,-97],[-30,-53],[-22,-4],[-17,7],[-30,50],[-6,9],[-8,14],[-14,15],[-13,22],[-1,2],[-16,23],[-6,5],[-15,13],[-11,-2],[-5,-1],[-2,-1],[-6,-11],[-26,-47],[-4,-8],[-7,-35],[-3,-13],[-12,-58],[-16,-33],[-22,-21],[-3,-2],[-1,-3],[-12,-20],[-5,-10],[-7,-63],[0,-38],[12,-27],[12,-27],[1,-18],[0,-1],[1,-19],[-3,-37],[-9,-18],[-6,-11],[-12,-39],[0,-16],[1,-25],[-17,-94],[-3,-16],[-13,-75],[-2,39],[-5,46],[-1,43],[-14,19],[-14,29],[-23,26],[11,58],[1,38],[4,71],[13,38],[-16,64],[-23,3],[-23,9],[-24,-10],[-10,40],[6,50],[-10,36],[-5,45],[-11,57],[-26,38],[-12,41],[-11,38],[-13,9],[-15,-3],[-13,5],[-3,37],[4,38],[-18,-4],[-12,48],[-8,31],[-13,18],[-13,13],[-23,19],[-1,41],[-2,58],[-19,88],[-11,35],[-14,51],[-14,10],[-11,24],[3,46],[-13,29],[-11,53],[13,27],[-12,14],[-16,12],[-5,42],[9,50],[0,41],[-13,15],[-16,34],[-11,26],[-21,-4],[-11,38],[-14,39],[-14,-2],[-11,53],[-16,-21],[-18,2],[-18,-17],[-25,-2],[-9,-44],[-16,-6],[-20,13],[-26,48],[-5,66],[8,42],[-9,42],[-26,2],[-4,39],[1,42],[-15,4],[-7,40],[-13,-2],[-18,-5],[-8,38],[-22,15],[-13,7],[-16,5],[-15,-4],[-11,-26],[-9,-37],[-18,-42],[-16,10],[-9,27],[-23,33],[-34,52],[-86,135],[-47,72],[-27,64],[-17,41],[-2,5],[-59,142],[-19,55],[-51,120],[-89,209],[-5,44],[10,30],[-13,36],[-16,21],[-8,37],[-23,44],[-17,2],[-13,12],[-13,12],[-22,38],[-14,0],[-17,-1],[-18,-7],[-11,20],[-14,-16],[-14,-16],[-9,30],[-13,12],[-17,-32],[-15,5],[-12,30],[-13,-5],[-12,-20],[3,-47],[5,-45],[0,-47],[-3,-46],[-10,-29],[-14,-8],[-15,-7],[-12,-17],[-30,-7],[-13,8],[-9,-27],[-4,-37],[5,-42],[6,-35],[-4,-41],[-3,-36],[-11,-44],[-15,19],[-15,13],[-15,-29],[-7,-45],[-9,-36],[-10,-28],[-18,-2],[-17,17],[-9,-33],[-15,-5],[-15,-21],[-20,27],[-13,40],[-14,12],[-18,-6],[-11,-25],[-4,-49],[3,-77],[2,-40],[-18,-8],[-12,-30],[-18,-23],[-6,-47],[-17,-8],[-18,-9],[-2,-44],[-6,-35],[-19,-22],[-14,11],[-11,-36],[-18,-31],[-19,-33],[-20,-7],[-8,-32],[-4,-40],[3,-40],[2,-39],[-8,-35],[11,-25],[7,-35],[9,-29],[-4,-38],[-13,-14],[-14,-16],[-11,-28],[-6,-42],[3,-39],[-4,-37],[-4,-43],[-13,-11],[-13,-19],[2,-40],[9,-33],[0,-42],[-6,-35],[-6,-35],[4,-36],[2,-59],[11,-54],[-5,-37],[-7,-34],[9,-43],[13,-25],[-13,-18],[-20,-38],[-1,-44],[-12,-26],[-17,-39],[-17,-12],[-6,-42],[-12,-19],[-4,-48],[-10,-41],[-16,-14],[-9,-37],[-14,-33],[-6,-28],[-2,-8],[7,-46],[11,-24],[-9,-54],[-12,-49],[-13,-9],[-19,25],[-14,-11],[-26,-4],[-13,-19],[-11,-20],[-20,-19],[-15,2],[-12,27]],[[83175,63965],[-37,-22],[-9,41],[-15,0],[-14,10],[-13,27],[-14,7],[-16,-17],[-19,21],[0,1],[-13,-14],[-1,-3],[-8,-27],[-17,-19],[-16,-18],[-14,-32],[-15,-11],[-13,-4],[-11,-1],[-3,-1],[-12,20],[-27,9],[-12,22],[-4,66],[-14,-7],[-20,1],[-3,52],[-12,22],[-16,-8],[-23,-5],[2,39],[10,32],[0,60],[-12,45],[4,36],[-11,40],[-16,21],[-6,59],[-22,-29],[-14,-18],[-24,27],[-14,13],[-19,27],[-11,33],[-20,-1],[-12,24],[5,42],[8,54],[-12,20],[14,49],[1,43],[-2,59],[-11,37],[-15,31],[-18,4],[-23,-35],[-12,-68],[-7,-38],[-21,-28],[-27,0],[-12,-29],[-24,-4],[-15,-24],[-17,10],[-5,35],[0,51],[8,45],[13,9],[13,36],[8,46],[5,44],[2,40],[-6,42],[-13,54],[-16,32],[-15,17],[-16,5],[0,44],[-9,29],[-14,8],[-12,24],[-14,33],[-13,32],[0,39],[-1,38],[-9,81],[-3,54],[-2,50],[15,16],[11,23],[-8,37],[-11,39],[-18,44],[-20,29],[-3,41],[0,45],[-14,53],[-4,56],[-1,41],[15,15],[16,28],[7,47],[-10,25],[11,19],[8,43],[0,45],[12,78],[-10,23],[-11,34],[-17,-28],[-16,-14],[-13,36],[-9,34],[-10,36],[-9,39],[-4,43],[-12,21],[4,47],[11,30],[-16,1],[-15,-12],[-16,14],[-2,48],[4,51],[-3,76],[8,45],[16,38],[-2,45],[-22,24],[-24,29],[-11,50],[5,50],[0,3],[-12,27],[-11,24],[0,47],[-6,40],[-1,47],[-10,37],[-16,5],[-13,-21],[-15,4],[-12,26],[-3,49],[9,35],[-7,35],[-15,-3],[-16,-9],[-13,13],[7,45],[3,41],[-12,24],[-9,5],[-5,2],[-12,31],[-12,35],[13,15],[11,24],[18,3],[11,18],[14,9],[16,-13],[12,16],[13,42],[3,51],[-13,8],[-14,5],[-11,39],[0,54],[-4,38],[-7,42],[-18,9],[-18,17],[-8,39],[-12,40],[-1,45],[11,26],[9,29],[12,44],[-2,43],[-16,19],[-18,6],[-15,24],[8,38],[4,54],[-4,39],[-15,24],[-12,38],[-3,54],[-7,38],[-19,34],[-22,36],[11,30],[3,42],[-11,40],[-5,41],[1,39]],[[67416,67386],[10,-38],[3,-19],[4,-21],[-12,-21],[-4,-38],[7,-40],[5,-37],[-1,-51],[15,-11],[14,-17],[2,-45],[16,-20],[15,14],[9,-34],[1,-42],[8,-34],[-9,-28],[-11,-36],[6,-41],[2,-38],[-4,-38],[12,-22],[11,-23],[11,-26],[13,12],[14,2],[11,-34],[-7,-40],[0,-41],[11,-39],[11,-38],[14,-6],[15,-23],[11,-25],[12,-28],[13,-27],[16,13],[14,-17],[2,-39],[7,-44],[3,-51],[4,-43],[-3,-38],[3,-55],[7,-55],[3,-47],[-15,-53],[-7,-39],[-5,-49],[-5,-58],[13,-35],[-3,-47],[-10,-38],[5,-41],[6,-42],[8,-57],[6,-51],[-3,-47],[10,-39],[11,-42],[16,-11],[13,-35],[4,-41],[0,-46],[0,-42],[6,-48],[2,-11],[4,-31],[-3,-42],[1,-50],[-15,-25],[-18,-13],[-17,-20],[-8,-33],[-13,-31],[14,-46],[15,-26],[4,-46],[18,-24],[21,3],[18,3],[9,-33],[26,-49],[22,-16],[21,4],[13,-16],[15,-23],[18,-37],[19,-16],[14,-11],[23,-23]],[[67953,64544],[-137,-137],[-104,-104],[-66,-68],[-20,-20],[-29,-29],[-89,-90],[-38,-38],[-12,-13],[-74,-77],[-42,-43],[-40,-40],[-98,-104],[-47,-48],[-189,-189],[-34,-35],[-21,-22],[-12,-15],[-12,-23],[-10,-8],[-42,-35],[-23,-20],[-2,-2],[-151,-153],[-101,-105],[-198,-198],[-16,-18],[-17,-17],[-83,-86],[-1,-1],[-37,-39],[-2,-1],[-55,-56],[-4,-4],[-12,-13],[-13,-15],[-17,-18],[-33,-35],[-21,-22],[-3,-3],[-44,-46],[-173,-179],[-52,-55],[-129,-134],[-13,-13],[-5,-5],[-12,-12],[-211,-218],[-188,-194],[-34,-36],[-2,-2],[-106,-111],[-3,-3],[-15,-115],[-5,-49],[-36,-324]],[[65020,61104],[-14,-3],[-3,-1],[-5,-8],[-30,-72],[-7,-27],[-2,-8],[-7,-7],[-18,-16],[-9,-10],[-3,-4],[-2,-2],[-4,-13],[-6,-35],[-3,-6],[-6,-1],[-9,11],[-3,4],[-13,18],[-8,10],[-15,21],[-20,32],[-13,28],[-14,34],[-40,65],[-5,4],[-7,-6],[-6,-13],[-5,-24],[-31,-89],[-17,-33],[-8,-5],[-1,1],[-3,4],[-1,3],[-3,11],[-2,5],[-29,126],[-4,38],[-8,97],[0,6],[0,4],[0,12],[2,8],[6,8],[62,-26],[16,-33],[11,-10],[11,3],[35,21],[12,13],[14,23],[9,30],[0,2],[1,19],[1,39],[-3,16],[-11,29],[-27,44],[-2,3],[-4,9],[-12,46],[-2,8],[-2,5],[1,15],[10,21],[8,3],[46,-3],[6,-4],[7,-14],[2,-11],[20,-124],[4,-49],[0,-20],[1,-47],[2,-15],[3,-9],[4,-3],[0,-1],[8,0],[7,6],[7,17],[5,13],[2,6],[2,12],[0,3],[2,35],[1,60],[0,20],[-1,5],[-5,42],[-2,17],[-1,6],[-4,14],[-7,16],[-19,23],[-7,16],[-8,42],[-3,17],[-23,114],[-3,34],[-5,18],[-6,20],[-11,18],[-7,6],[-11,-4],[-17,-27],[-11,-6],[-16,0],[-14,8],[-9,14],[-1,6],[-1,5],[2,23],[1,11],[31,98],[23,70],[26,80],[23,116],[16,80],[4,20],[1,6],[-7,22],[-11,-3],[-15,-5],[-3,-7],[-8,-20],[-72,-42],[-14,-9],[-11,-11],[-6,31],[-13,73],[-15,81],[0,1],[1,187],[1,1],[80,36],[5,2],[31,-24],[7,2],[5,4],[4,4],[3,11],[2,6],[2,5],[1,17],[-8,26],[-1,2],[-19,62],[-29,91],[-28,-13],[-8,-4],[-83,-37],[-26,-7],[-6,-2],[-3,205],[1,14],[19,119],[4,10],[9,-3],[20,-25],[7,-21],[4,-15],[2,-19],[4,-19],[2,-11],[3,-6],[5,-8],[8,5],[8,15],[1,1],[0,3],[11,57],[2,10],[22,194],[0,3],[0,11],[0,8],[-6,29],[-15,37],[-26,32],[-52,39],[-27,2],[-40,-10],[-8,1],[-6,4],[-20,57],[-7,17],[-13,20],[-16,12],[-9,-3],[-6,-18],[2,-22],[1,-18],[13,-65],[17,-31],[1,-18],[-4,-12],[0,-2],[-13,-30],[-17,-16],[-64,27],[-7,8],[-57,64],[-22,24],[-4,5],[-3,15],[1,30],[5,37],[10,100],[1,18],[1,18],[-3,5],[-15,-4],[-11,-11],[-20,-38],[-21,-82],[-2,-14],[-1,-5],[-1,-13],[-19,-191],[3,-17],[1,-2],[10,-24],[9,-11],[18,-10],[47,-39],[13,-14],[7,-16],[3,-14],[0,-23],[-1,-8],[0,-2],[-9,-22],[-29,-32],[-12,-9],[-21,-1],[-19,9],[-69,32],[-12,6],[-10,6],[-5,3],[11,31],[4,12],[6,18],[3,7],[0,3],[2,33],[9,161],[-1,65],[-9,38],[-12,28],[-13,17],[-6,0],[-13,-4],[-12,-9],[-9,-13],[-20,-44],[-10,-35],[-12,-27],[-7,-13],[-17,-9],[-14,0],[-15,9],[-24,33],[-14,11],[-8,-4],[-5,-10],[-3,-16],[-2,-14],[-8,-70],[-7,-61],[-2,-11],[-5,-11],[-1,-2],[-6,-7],[-11,0],[-16,6],[-54,48],[-18,22],[-14,34],[-4,17],[-2,19],[1,8],[0,6],[2,8],[9,33],[12,137],[0,11],[-6,11],[-11,-3],[-9,-14],[-17,-35],[-6,-20],[-3,-14],[-6,-29],[-2,-1],[-3,-2],[-16,29],[-16,63],[-4,28],[-1,51],[4,26],[0,13],[-6,13],[-30,11],[-45,-26],[-13,0],[-8,5],[-22,31],[-9,20],[-4,22],[-1,23],[0,7],[0,14],[1,1],[5,24],[19,44],[1,3],[9,8],[18,-2],[11,-15],[1,0],[7,-4],[11,5],[4,5],[1,1],[2,3],[9,20],[8,38],[5,56],[-2,19],[-17,42],[-7,6],[-7,-9]],[[63695,64072],[-8,107],[-8,60],[-5,36],[-9,64],[-31,225],[-9,304],[-21,688],[-3,109],[-2,66],[-1,46],[-8,269],[-2,69],[-4,140],[-2,78],[-1,43],[-1,56],[-2,68],[-3,66],[-6,207],[-3,110],[-2,46],[-1,64],[-3,88],[-3,92],[-14,508],[-8,254],[-2,430],[0,14],[-1,70],[-2,78],[-3,134],[-1,56],[-7,344],[-4,159],[-4,209],[-10,459],[-4,62],[3,44]],[[75235,67903],[-18,-9],[-13,-12],[-11,-26],[-127,-295],[-42,-96],[-68,-156],[-12,-31],[-59,-125],[-46,-111],[-44,-108],[-62,-150],[-57,-134],[-15,-36],[-26,-60],[-54,-126],[-65,-156],[-24,-56],[-18,-56],[-14,-29],[-72,-161],[-3,-7],[-32,-67],[-176,-408],[-103,-251],[-41,-96],[-64,-147],[-52,-122],[-73,-170],[-92,-217],[-15,-35],[-34,-81],[-47,-110],[-24,-54],[-53,-99],[-32,-47],[-24,-100]],[[73523,63959],[-15,13],[-36,8],[-6,8],[-8,17],[-9,33],[0,18],[3,14],[9,17],[63,99],[7,8],[5,-1],[3,-7],[1,-10],[1,-3],[3,-49],[3,-15],[4,-8],[5,1],[4,4],[2,8],[21,74],[6,26],[36,153],[2,11],[2,19],[3,65],[-5,48],[3,42],[10,33],[-1,4],[1,4],[0,12],[-3,7],[-6,6],[-2,3],[-25,11],[-10,2],[-6,-5],[-25,-63],[-17,-28],[-6,-4],[-22,-4],[-5,6],[-5,10],[-1,20],[-3,149],[0,30],[2,16],[30,73],[6,16],[3,18],[2,51],[1,40],[-1,15],[-4,13],[-10,14],[-14,4],[-12,4],[-116,12],[-11,-6],[-6,-68],[-6,-87],[-9,-253],[-1,-39],[1,-20],[4,-22],[4,-11],[5,-20],[12,-62],[1,-16],[-3,-19],[-8,-19],[-7,-8],[-1,-2],[-9,-2],[-2,-1],[-26,12],[-18,17],[-4,15],[4,40],[12,25],[5,38],[-12,28],[-20,4],[-20,-5],[-18,-3],[-19,9],[-2,3],[-10,16],[-15,47],[-12,27],[-13,15],[-9,30],[15,12],[18,-5],[20,7],[6,8],[7,9],[0,1],[27,34],[12,31],[7,36],[-4,39],[-12,24],[-27,9],[-10,-15],[-2,-2],[-5,-39],[-12,-48],[-14,-14],[-7,5],[-27,18],[0,2],[-22,71],[-15,50],[-24,79],[4,11],[44,81],[-4,6],[-3,5],[-3,6],[-1,3],[-6,-8],[-7,-10],[-19,-6],[-8,-7],[-20,-30],[-6,-19],[-5,-20],[-2,-16],[-1,-35],[-3,-22],[-5,-11],[-50,-35],[-11,-7],[-38,-27],[-19,-13],[-62,-46],[-22,-8],[-10,2],[-1,1],[-3,6],[-3,20],[1,15],[9,43],[13,32],[5,32],[0,1],[0,22],[-3,13],[-66,165],[-4,9],[-7,5],[-7,-4],[-23,-29],[-5,-4],[-13,1],[-15,8],[-19,19],[-4,5],[-50,50],[-29,46],[-12,20],[-30,50],[-8,13],[-43,86],[-11,4],[-16,13],[-29,49],[-14,27],[-12,19],[-12,15],[-6,2],[-15,13],[-3,9],[-3,11],[-1,8],[0,7],[0,6],[0,15],[2,13],[8,23],[19,18],[39,26],[31,14],[17,19],[3,5],[2,4],[7,103],[1,32],[-1,36],[0,5],[-5,22],[-14,44],[-4,13],[-19,84],[-1,5],[0,7],[-9,16],[-2,2],[-2,10],[-6,26],[0,1],[-4,61],[0,44],[9,128],[-2,14],[-2,13],[-3,4],[-2,2],[-5,6],[-10,-4],[-24,-29],[-25,-25],[-28,-15],[-20,-10],[-12,-6],[-23,17],[-3,2],[-10,15],[-4,9],[-9,21],[-13,23],[-8,5],[-7,-1],[-8,-2],[-4,0],[-7,-6],[-14,-11],[-26,-20],[-14,6],[-10,16],[-3,12],[-7,20],[-2,18],[0,46],[8,77],[6,45],[9,33],[12,12],[8,2],[29,-3],[8,8],[5,13],[1,3],[5,24],[0,7],[1,9],[2,24],[-38,109],[-27,-7],[-15,-21],[-6,-18],[-17,-73],[-7,-20],[-4,-6],[-5,-6],[-1,0],[-11,0],[-13,6],[-6,7],[-1,1],[-6,20],[-1,3],[-1,5],[-1,5],[1,25],[12,107],[3,17],[6,10],[8,0],[1,0],[22,-20],[1,-1],[7,-3],[11,5],[20,17],[3,8],[2,6],[1,38],[-5,29],[-11,19],[-10,10],[-16,-1],[-80,-10],[-18,-3],[-3,-1],[-7,-1],[-2,-9],[-7,-38],[-10,-50],[-10,-20],[-11,-12],[-29,-21],[-9,-12],[-6,-23],[2,-9],[1,-8],[9,-14],[8,-16],[23,-47],[12,-26],[1,-5],[0,-2],[1,-6],[1,-17],[-5,-43],[-7,-60],[-5,-15],[-15,-38],[-19,-31],[-26,-11],[-9,-1],[-40,-2],[-22,-1],[-7,8],[-5,11],[-14,62],[-1,6],[-1,10],[0,28],[4,14],[9,19],[21,32],[5,13],[3,7],[4,24],[-1,39],[-1,21],[-32,140],[-7,14],[-11,16],[-3,2],[-17,12],[-4,18],[-4,17],[-11,51],[0,1],[-1,5],[-6,21],[-4,16],[-4,9],[-2,5],[-3,4],[-8,-1],[-5,-7],[-25,-77],[-1,-2],[-7,-11],[-11,-9],[-19,-7],[-7,1],[-25,4],[-6,5],[-3,2],[-7,39],[-6,33],[-5,32],[-1,7],[0,3],[1,5],[1,5],[48,121],[5,7],[16,250],[4,8],[1,2],[1,1],[4,4],[6,-1],[4,0],[6,-7],[4,-11],[1,-4],[12,-38],[2,-6],[2,-14],[4,-20],[2,-10],[4,-31],[0,-2],[1,-15],[5,-13],[1,-3],[3,-4],[7,-6],[29,11],[14,15],[4,4],[9,30],[4,52],[3,45],[0,14],[0,6],[-2,10],[-3,6],[-10,8],[-14,0],[-17,-11],[-13,-3],[-27,21],[-53,40],[-19,14],[-15,17],[-9,43],[-1,5],[-2,27],[5,32],[2,6],[2,10],[6,35],[-1,14],[0,3],[0,8],[-6,38],[-4,9],[-44,41],[-34,17],[-9,3],[-4,1],[-3,0],[-14,-2],[-7,-45],[-7,-20],[-6,-4],[-19,-4],[-10,9],[-1,1],[-2,9],[0,22],[11,53],[18,120],[0,33],[-9,55],[-7,39],[0,1],[-1,5],[1,29],[4,24],[9,13],[43,19],[5,5],[2,2],[3,17],[-1,9],[0,1],[-6,17],[-15,20],[-2,3],[-11,2],[-5,-6],[-2,-3],[-1,-1],[-71,-95],[-1,-1],[-21,89],[-4,17],[-26,113],[-8,35],[-3,13],[-14,59],[-15,68],[-10,42],[-17,52],[-6,45],[-8,33],[-7,38],[-19,85],[-34,152],[-19,79],[-16,69],[-55,234],[-48,200],[-8,35],[-31,129],[-41,171],[-12,47],[-16,66],[-57,99],[-18,31],[-17,31],[-55,95],[-115,198],[-17,28],[-44,76],[-45,79]],[[83175,63965],[-13,-166],[13,-22],[-38,-74],[-15,30],[-14,30],[-15,-6],[-24,-27],[-19,33],[-14,63],[-15,25],[-21,-29],[-10,-23],[-10,36],[-10,38],[-15,-10],[-13,-17],[-14,-31],[-16,-20],[38,-50],[10,-27],[10,-37],[0,-1],[0,-1],[5,-11],[7,-17],[2,-2],[10,-16],[14,-15],[16,-14],[13,-21],[13,-13],[13,-8],[15,-19],[14,-16],[9,-10],[8,-8],[12,-19],[11,-22],[9,-28],[8,-33],[5,-36],[2,-2],[21,-19],[13,7],[6,10],[4,7],[3,4],[1,0],[13,5],[16,5],[3,3],[11,12],[14,1],[5,-4],[11,-10],[13,-11],[16,-3],[4,-2],[11,-6],[16,-13],[20,-2],[11,-22],[14,-20],[11,-19],[4,-11],[6,-17],[14,4],[18,7],[14,15],[5,5],[14,15],[12,12],[14,-9],[10,36],[5,6],[3,5],[5,7],[6,0],[8,2],[10,11],[3,4],[13,-6],[6,-5],[8,-7],[16,-11],[3,0],[14,0],[15,-8],[13,-29],[13,-18],[16,7],[14,16],[13,1],[0,-39],[7,-22],[3,-8],[10,-26],[14,-21],[4,-4],[10,-7],[13,-23],[13,-18],[4,-34],[2,-17],[1,-39],[-14,-17],[-13,-24],[-17,-6],[-13,-17],[-12,-14],[-14,-4],[-13,-8],[-13,-16],[-14,-21],[-14,-12],[-16,-2],[-15,-14],[-13,-21],[-12,-23],[-9,-31],[-12,-22],[-25,-60],[-12,-46],[-1,-25],[-1,-16],[11,-49],[1,-39],[2,-59],[-2,-58],[-4,-38],[-12,-23],[-8,-31],[-7,-33],[-2,-41],[8,-31],[10,-29],[-3,-49],[-5,-57],[-11,-69],[-9,-34],[-5,-63],[-6,-52],[-3,-45],[1,-46],[-8,-36],[-2,-74],[-11,-32],[-9,-5],[-5,-2],[-15,-15],[-13,-1],[-31,15],[-21,-4],[-14,1],[-12,39],[-16,-1],[-14,12],[-16,-13],[-13,-5],[-15,-7],[-14,-2],[-11,-24],[-13,-21],[-14,-11],[-14,-14],[-15,6],[-15,4],[-17,-3],[-15,-10],[-13,-20],[-10,-31],[-7,-36],[-12,-17],[-14,-15],[-13,-39],[-8,-30],[-8,-33],[-66,-158],[0,-2],[-14,-7],[-10,-30],[-1,-52],[-6,-36],[-14,-14],[-8,-31],[-7,-35],[-9,-38]],[[82909,60994],[-36,19],[-15,-14],[-12,-18],[-14,-13],[-13,-13],[-12,-15],[-14,-20],[-11,-26],[-5,-41],[-12,-37],[-10,-24],[-10,-31],[-15,-11],[-14,-9],[-15,-10],[-13,-6],[-13,-22],[-13,-15],[-25,-44],[-5,-61],[-4,-13],[-6,-14],[-46,-17],[-3,-2],[-4,-1],[-5,0],[-8,-1],[-5,-1],[-21,9],[-6,3],[-74,-73],[0,-10],[-4,-110],[0,-11],[5,-59],[2,-19],[3,-29],[0,-19],[1,-10],[-1,-4],[-1,-5],[-2,-4],[-2,-5],[-29,-34],[-23,-27],[-39,5],[-4,3],[-4,0],[-1,0],[-12,1],[-18,-6],[-138,-77],[-3,-1],[-5,-11],[-11,-43],[-4,-6],[-29,-52],[-7,-13],[-6,0],[-40,0],[-20,4],[-11,-7],[-22,-34],[-10,-7],[-2,-2],[-7,-5],[-8,1],[-5,7],[-2,16],[1,54],[5,45],[0,30],[0,3],[-1,1],[-3,16],[-1,2],[-3,1],[-7,3],[-24,-22],[-6,-6],[-2,-3],[-21,-37],[-6,-21],[-1,-19],[1,-11],[12,-28],[2,-7],[8,-57],[1,-6],[0,-10],[-1,-15],[-5,-17],[-7,-15],[-5,-5],[-1,-1],[-51,-118],[-16,-84],[-24,-136],[-1,-7],[-1,-7],[0,-4],[3,-10],[12,-25],[24,-43],[4,-7],[2,-8],[-2,-12],[-5,-8],[-4,-6],[-33,-34],[-21,-5],[-38,-76],[-2,-5],[-5,-15],[-3,-9],[-5,26],[-5,22],[-4,12],[-5,6],[-3,2],[-2,2],[-2,1],[-10,5],[-23,-4],[-13,-10],[-1,-2],[-10,-19],[-1,-1],[-1,-3],[-5,-4],[-5,-4],[-1,0],[-51,15],[-26,18],[-33,30],[-44,70],[-5,1],[-4,1],[-7,-13],[-4,-54],[0,-6],[2,-46],[-6,-65],[5,-22],[9,-89],[-5,-70],[-5,-12],[-5,-10],[-16,7],[-18,8],[-2,1],[-13,14],[-1,3],[-18,48],[-24,28],[-14,4],[-2,0],[-10,-22],[-8,-64],[-1,-5],[0,-3],[-5,-127],[7,-69],[13,-50],[0,-12],[-1,-38],[-10,-18],[-11,4],[-24,63],[-13,21],[-10,16],[-9,5],[-9,5],[-13,0],[0,-1],[-19,-40],[-3,-60],[-16,-102],[-3,-6],[-4,-7],[-27,-28],[-16,-26],[-1,-31],[-2,-19],[6,-53],[-4,-80],[-29,-72],[-32,-51],[-31,-49],[-12,82],[1,25],[1,64],[-24,30],[-3,4],[-13,-22],[-5,-95],[-6,-9],[-7,-12],[-7,-3],[-18,10],[-19,57],[-15,55],[-5,34],[-5,30],[-10,29],[-6,16],[-30,56],[-7,12],[-15,9],[-27,-17],[-34,-36],[-14,4],[-17,5],[-10,23],[-23,7],[-13,-22],[-17,-30],[-9,-28],[-4,-7],[-22,-41],[-53,-46],[-13,-21],[-1,-20],[0,-11],[7,-22],[37,-40],[22,-25],[-5,-50],[-6,-37],[-2,-39],[-8,-56]],[[80681,57990],[-10,-34],[-12,-32],[-51,-44],[-9,-7],[-48,-1],[-43,8],[-14,-9],[-3,-2],[-15,-26],[-12,-37],[-3,-50],[4,-98],[10,-31],[-9,-173],[-2,-4],[-16,-27],[-64,-47],[-16,-3],[-37,-6],[-19,0],[-62,33],[-19,62],[2,40],[9,33],[59,89],[7,9],[20,40],[10,20],[19,38],[37,85],[9,28],[2,34],[0,7],[-2,7],[-9,32],[-23,6],[-39,-9],[-40,-28],[-6,-4],[-27,-38],[-24,-41],[-35,-64],[-40,-54],[-9,4],[-31,13],[-22,62],[-3,27],[8,120],[11,62],[6,35],[17,33],[27,50],[9,3],[55,88],[1,2],[13,32],[29,80],[4,12],[14,118],[5,85],[-5,15],[-9,25],[-58,12],[-26,-12],[-19,-10],[-54,-25],[-2,0],[-45,-9],[-25,-5],[-56,16],[-43,1],[-19,1],[-14,9],[-16,8],[-5,2],[-11,6],[-14,8],[-16,14],[-13,15],[-20,46]],[[79824,58635],[1,92],[7,38],[11,20],[15,27],[12,25],[12,36],[8,36],[12,27],[11,8],[2,1],[3,0],[2,15],[56,95],[7,7],[51,48],[61,32],[47,12],[39,-1],[33,56],[20,35],[22,65],[7,141],[-16,86],[-51,147],[-181,69],[-39,42],[-126,42],[-79,-135],[-22,-75],[-46,-78],[-7,3],[-49,19],[-33,106],[-1,52],[-33,96],[-10,15],[-18,29],[-13,25],[-19,40],[-8,16],[-47,102],[-35,102],[-9,44],[0,2],[-4,45],[7,160],[49,84],[12,21],[24,64],[15,47],[8,94],[3,96],[-3,72],[-8,89],[-9,38],[-43,125],[-5,1],[-26,49],[-13,26],[-26,25],[-4,2],[-5,-2],[-32,-13],[-24,-10],[0,-7],[-6,-12],[-2,-3],[-3,-3],[-29,-32],[-11,-20],[-7,-11],[-6,-10],[-1,-5],[0,-1],[-37,-41],[-2,-3],[-116,-93],[-14,-11],[-11,-9],[-3,0],[0,1],[-3,0],[-2,4],[-6,8],[-21,50],[-6,14],[-6,15],[-2,7],[-10,37],[0,12],[0,4],[2,9],[6,26],[-1,8],[35,62],[12,45],[16,31],[22,34],[-2,38],[-28,12],[-3,43],[21,53],[10,24],[13,37],[7,46],[15,94],[-5,100],[-7,34],[-11,51],[-2,48],[0,43],[10,35],[13,18],[10,15],[3,6],[11,26],[0,4],[-2,40],[-13,20],[-12,-1],[-1,0],[-13,-11],[-12,-28],[-19,-55],[0,-1],[-11,-31],[-6,-35],[12,-95],[-6,-34],[-14,-1],[-12,15],[-9,52],[2,38],[-3,38],[-8,27],[-2,8],[-5,44],[3,78],[4,60],[-8,32],[-16,2],[-16,-31],[-4,-62],[-14,-25],[-22,15],[-26,57],[-13,17],[-15,32],[-28,36],[-17,11],[-7,5],[-7,-1],[-15,-2],[-27,-4],[-4,0],[-13,-7],[-8,-11],[-1,-2],[-2,-4],[-3,-6],[-1,-6],[-4,-21],[-11,-27],[-2,-1],[-6,-2],[-16,16],[-7,17],[-6,12],[-12,12],[-7,3],[-4,-4],[-13,-11],[-3,-3],[0,-4],[-42,-295],[-5,-33],[-14,-69],[-4,-21],[-8,-27],[-12,-28],[-12,-20],[-12,-9],[-23,-16],[-4,-11],[-47,-170],[-2,1],[-2,0],[-3,0],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-2],[-17,-20],[0,-1],[-3,-2],[-2,-3],[-1,-3],[-29,-53],[-15,-23],[-5,-5],[-4,-2],[-2,-1],[0,5],[-1,79],[9,20],[16,26],[7,16],[3,22],[-1,27],[-2,9],[-6,11],[-4,8],[-24,31],[-22,8],[-21,7],[-6,-1],[-10,-1],[-18,12],[-15,40],[-9,40],[-5,44],[2,38],[7,-3],[16,-9],[18,-5],[7,10],[7,11],[1,50],[-16,14],[-21,-12],[-15,9],[-8,33],[1,44],[11,26],[-5,47],[-13,17],[-25,1],[-15,8],[-6,35],[0,39],[2,48],[-10,53],[-16,23],[-13,26],[0,36],[12,28],[7,8],[3,3],[4,0],[2,-1],[5,-3],[6,-11],[11,-26],[1,-1],[24,-22],[8,4],[5,7],[1,5],[4,20],[0,3],[0,22],[-4,22],[-5,20],[-6,10],[-11,10],[-2,2],[-3,3],[-27,31],[-7,7],[1,31],[1,20],[2,52],[3,101],[19,-1],[22,67],[8,19],[14,20],[6,9],[5,6],[9,5],[8,-1],[13,-9],[59,16],[37,9],[20,44],[28,59],[0,1],[13,28],[-31,83],[-2,6],[-1,3],[0,2],[0,14],[8,23],[21,17],[7,-3],[52,-37],[6,11],[1,1],[2,3],[31,44],[2,3],[13,17],[-31,84],[-16,12],[-13,28],[-86,217],[-2,7],[0,20],[0,9],[0,3],[3,13],[4,14],[1,1],[11,17],[13,8],[7,5],[12,-3],[2,0],[8,1],[1,0],[10,11],[3,3],[0,2],[2,7],[0,25],[0,8],[-4,28],[-6,16],[-6,7],[-23,3],[-27,-23],[-5,0],[-20,-1],[-7,0],[-8,9],[-6,17],[-12,75],[-5,12],[-7,4],[-1,1],[-4,-5],[-6,-6],[-4,-10],[-3,-6],[-1,-23],[3,-15],[0,-2],[1,-5],[6,-19],[7,-16],[12,-8],[0,-1],[1,-1],[4,-11],[4,-20],[1,-18],[-2,-19],[-8,-25],[-11,-11],[-5,-5],[-14,-2],[-9,9],[-7,17],[-3,14],[-4,47],[-1,52],[-3,36],[-4,21],[-10,38],[-8,10],[-13,1],[-8,-5],[-1,-2],[-6,-8],[-4,-23],[-1,-39],[0,-60],[2,-21],[6,-25],[16,-36],[1,-2],[11,-35],[2,-11],[3,-23],[5,-45],[0,-19],[-3,-54],[0,-1],[-2,-11],[-5,-10],[-3,-4],[-9,-2],[-36,49],[-9,4],[-7,1],[-8,-7],[-8,-11],[-24,-55],[-7,-14],[-4,15],[-23,75],[-2,9],[-9,30],[-8,22],[-6,11],[-15,26],[-11,16],[-11,18],[-58,101],[-24,74],[-6,19],[-10,24],[-17,18]],[[53944,67471],[16,-21],[19,-19],[187,-190],[120,-120],[64,-65],[90,-89],[13,-12],[30,-30],[49,-51],[17,-17],[12,-12],[13,-11],[24,-22],[20,-20],[16,-15],[15,-16],[21,-18],[10,-8],[33,-53],[33,-18],[14,-15],[-3,-48],[-3,-58],[-6,-99],[-3,-61],[-2,-39],[-3,-56],[-3,-51],[-4,-77],[-5,-82],[-2,-42],[-7,-113],[-6,-107],[-7,-131],[-3,-61],[-7,-108],[-3,-64],[0,-13],[-1,-25],[-7,-98],[0,-3],[-2,-38],[-8,-160],[-5,-94],[-4,-84],[-1,-19],[-1,-19],[-4,-72],[-4,-55],[-15,-259],[-4,-79],[-3,-46],[-4,-67],[-10,-178],[-9,-148],[-3,-37],[-5,-87],[0,-4],[-2,-41],[-3,-42],[-7,-111],[-10,-166],[-10,-181],[-4,-37],[-4,-76],[-4,-75],[-6,-108],[-2,-43],[-2,-59],[-4,-68],[-8,-128],[-7,-131],[-7,-110],[-6,-114],[-6,-109]],[[54511,62268],[-1,-19],[-2,-25],[-12,-223],[-14,-238],[-3,-50],[-4,-56],[-4,-76],[-5,-75],[-3,-55],[-4,-71],[-5,-72],[-3,-42],[-3,-49],[-3,-54]],[[54445,61163],[-22,-26],[-53,-54],[-30,-29],[-30,-29],[-54,-52],[-17,-17],[-12,-12],[-17,-15],[-13,-13],[-17,-18],[-29,-27],[-13,-13],[-16,-14],[-15,-17],[-31,-30],[-39,-41],[-18,-18],[-37,-37],[-24,-24],[-52,-52],[-53,-52],[-14,-14],[-23,-23],[-35,-29],[-35,-34],[-28,-28],[-23,-23],[-23,-23],[-14,-13],[-23,-23],[-22,-22],[-13,-13],[-39,-38],[-24,-24],[-20,-19],[-16,-16],[-16,-16],[-31,-31],[-20,-15],[-49,-51],[-19,-20],[-50,-52],[-26,-27],[-129,-132],[-18,-17],[-16,-14],[-60,-58],[-15,-14],[-14,-13],[-104,-101],[-13,-15],[-69,-74],[-10,-10],[-71,-73],[-10,2],[-125,24],[-4,1],[-26,5],[-40,12],[-38,10],[-92,20],[-8,3],[-27,8],[-27,6],[-23,6],[-12,1],[-27,3],[-55,23],[-10,2],[-42,10],[-60,12],[-116,28],[-20,4],[-15,4],[-5,1],[-14,5],[-89,24],[-23,5],[-129,34],[-17,4],[-39,9],[-37,8],[-56,15],[-14,3],[-21,6],[-40,7],[-15,2],[-14,3],[-13,2],[-51,17],[-15,1],[-36,11],[-21,3],[-13,4],[-15,4],[-11,3],[-4,1],[-22,5],[-21,5],[-19,3],[-14,1],[-28,12],[-20,5],[-16,4],[-17,8],[-23,0],[-30,6],[-19,8],[-46,7],[-67,17],[-69,21],[-17,4],[-4,1],[-9,2],[-20,1],[-27,7],[-96,22],[-13,-11],[-83,-59],[-5,-7],[-13,-18],[-16,-14],[-82,-70],[-152,-120],[-71,-52],[-16,-11],[-66,-52],[-193,-152],[-18,-15],[-13,-11],[-124,-98],[-22,-14],[-80,-66],[-14,-4],[-19,-15],[-21,-15],[-15,-12],[-16,-14],[-16,-13],[-20,-16],[-14,-11],[-28,-21],[-13,-11],[-55,-46],[-176,-147],[-18,-18],[-37,-29],[-36,-28],[-152,-117],[-78,-60],[-52,-34],[-14,-7],[-15,-14],[-13,-5],[-17,0],[-13,6],[-14,-19],[-12,-13],[-13,-1],[-12,-19],[-17,-35],[-11,-18],[-17,-16],[-25,-20],[-24,-22],[-88,-65],[-33,-30],[-19,-13],[-59,-43],[-1,-1],[-43,-28],[-15,-3],[-1,-9],[-12,-22],[-64,-119],[-81,-119],[-6,-10],[-30,-67],[-8,-24],[-14,-58],[0,-3],[-5,-1],[-17,-3],[-5,-1],[-5,-1],[-24,-7],[-4,-1],[-14,-5],[-7,-6],[-1,-4],[-3,-9],[0,-11],[1,-13],[5,-33],[0,-18],[-2,-12],[-27,-71],[-6,-11],[-7,-17],[-16,-28],[-19,-34],[-1,-1],[-24,-39],[-8,-14],[-6,-16],[-3,-11],[-14,-103],[-8,-53],[-6,-45],[-1,-22],[3,-11],[9,-40],[4,-25],[-20,-59],[-37,-14],[-10,-10],[-12,2],[-19,-31],[-6,-6],[-10,-10],[-23,-34],[-53,-77],[-8,-14],[-3,-9],[-12,-39],[-1,-5],[-3,-13],[-12,-63],[-5,-22],[-3,-19],[-11,-24],[-45,-39],[0,-7],[-23,-7]],[[47753,56649],[-16,31],[-14,16],[-1,2],[-14,17],[-1,1],[-18,26],[-4,6],[-24,36],[-7,29],[-1,1],[-17,71],[-21,76]],[[47615,56961],[5,5],[12,13],[13,14],[18,22],[25,33],[27,38],[23,49],[15,30],[44,83],[37,95],[21,52],[21,65],[20,59],[18,56],[11,43],[2,8],[11,59],[7,36],[9,45],[8,52],[8,81],[6,84],[4,81],[5,69],[1,13],[6,70],[3,38],[1,45],[1,63],[1,102],[0,4],[8,186],[4,83],[7,85],[3,45],[5,64],[2,58],[2,49],[1,52],[4,48],[7,41],[6,36],[6,50],[26,208],[19,100],[3,12],[26,136],[38,202],[6,32],[14,352],[6,160],[1,20],[-3,173],[-1,71],[-2,62],[-2,102],[-5,110],[-6,106],[-33,643],[-12,235],[1,293],[8,503],[46,276],[33,201],[28,172],[9,51],[30,172],[38,158],[37,108],[60,177],[94,279],[73,153],[27,56],[12,25],[39,82],[9,18],[26,48],[50,92],[31,58],[51,93],[49,95],[14,32],[9,31],[22,77],[43,145],[17,70],[12,45],[4,19],[39,200],[3,12],[4,21],[4,76],[7,118],[3,44],[3,57],[0,22],[4,85],[1,28],[2,146],[0,12],[-3,76],[0,2],[29,276],[6,65],[6,48],[1,13],[24,116],[9,38],[30,117],[17,72],[25,49],[37,73],[1,1],[2,4],[1,1],[0,1],[28,24],[72,66],[73,32],[75,32],[23,9],[8,3],[4,2],[0,1],[92,79],[16,27],[32,26],[21,-1],[20,0],[82,-3],[17,0],[15,-15],[1,0],[0,-1],[22,-36],[1,-1],[4,-8],[7,-10],[47,-15],[7,-10],[2,-4],[32,-76],[24,-51],[0,-2],[3,-5],[31,-66],[2,-17],[-4,-56],[34,-127],[16,-39],[17,-61],[2,1],[1,1],[4,3],[5,3],[7,-8],[105,-162],[11,-11],[14,-15],[25,-6],[34,-8],[5,-1],[48,42],[25,31],[54,75],[1,0],[39,55],[7,6],[191,255],[39,54],[122,170],[0,1],[2,2],[12,17],[57,84],[53,69],[0,1],[119,156],[37,49],[18,33],[17,32],[22,43],[32,58],[14,32],[10,23],[8,29],[10,38],[2,11],[9,52],[15,82],[3,13],[3,17],[0,1],[2,14],[5,20],[1,6],[8,17],[4,12],[5,15],[8,22],[4,13],[1,4],[7,18],[76,228],[19,48],[4,9],[13,33],[10,24],[11,74],[16,41],[8,34],[12,39],[1,4],[3,8],[6,23],[0,1],[4,12],[4,20],[1,8],[5,29],[2,8],[4,25],[6,33],[4,32],[7,35],[3,18],[1,8],[11,73],[0,2],[5,30],[1,7],[11,68],[6,38],[9,49],[0,3],[5,34],[2,7],[2,20],[2,12],[12,59],[9,60],[11,71],[3,26],[3,35],[4,39],[0,6],[6,65],[1,6],[4,70],[2,19],[7,43],[9,64],[3,6],[6,17],[4,9],[6,33],[2,14],[1,2],[1,6],[10,75],[5,39],[3,34],[2,34],[3,44],[0,25],[-1,59],[0,31],[1,111],[0,14],[-3,99],[-1,12],[0,1],[-1,15],[-1,11],[-3,74],[1,37],[1,56],[2,46]],[[63695,64072],[-10,7],[-89,-67],[-8,-10],[-4,-11],[-5,-46],[-24,-27],[-52,-58],[-87,-98],[-2,-2],[-42,-44],[-61,-69],[-16,-18],[-165,-183],[-2,-3],[-41,-47],[-21,-22],[-59,-66],[-35,-38],[-16,-17],[-15,-17],[-2,-2],[-27,-31],[-15,-16],[-28,-31],[-5,-6],[-7,-7],[-198,-219],[-15,-16],[-14,-16],[-8,-9],[-46,-52],[-53,-59],[-15,-17],[-78,-87],[-19,-20],[-59,-67],[-28,-31],[-17,-19],[-51,-56],[-18,-20],[-61,-68],[-54,-59],[-20,-22],[-24,-28],[-8,-10],[-64,-73],[-21,-24],[-23,-27],[-99,-107],[-15,-342],[9,-262],[8,-73],[21,-72],[-4,-75],[-22,-98],[-1,-15]],[[61860,61100],[-26,-3],[-23,8],[-15,4],[-21,-5],[-14,-4],[-10,-24],[-6,-36],[17,-7],[11,-21],[-3,-47],[-9,-35],[-18,-29],[-13,-42],[-15,-11],[-13,-23],[-13,-16],[-8,-30],[11,-24],[10,-35],[-1,-46],[-20,-5],[-18,1],[-8,-30],[6,-41],[-7,-35],[-16,-16],[-14,-18],[-16,-9],[-11,-30],[-4,-41],[-3,-45],[-10,-35],[-18,-11],[-17,1],[-19,-2],[-13,3],[-16,-11],[-17,16],[-105,-47],[-3,-37],[0,-51],[-17,-1],[-14,5],[-15,-8],[-23,2],[-14,40],[-17,23],[-18,1],[-18,7],[-12,19],[-14,27],[-13,15],[-10,25],[-14,13],[-14,40],[-8,16],[-4,7],[-35,22],[-14,8],[-15,12],[-172,132],[-181,138],[-35,27],[-23,17],[-31,24],[-56,164],[-25,74],[-43,125],[-12,9],[-5,3],[-33,27],[-13,11],[-112,96],[-23,19],[-22,18],[-18,14],[-19,12],[-20,11],[-34,31],[-3,2],[-10,8],[-15,-46],[-7,-32],[-14,15],[-9,43],[-1,40],[-9,31],[-14,2],[-18,-2],[-19,16],[-14,6],[-6,-36],[-13,12],[-13,11],[-19,12],[-14,17],[-18,38],[-217,-20]],[[59773,61573],[-8,57],[9,31],[10,27],[-1,39],[6,35],[13,14],[13,1],[12,19],[9,31],[3,42],[-4,37],[1,41],[1,40],[-7,37],[-5,41],[10,25],[13,31],[0,39],[11,24],[11,21],[2,42],[0,2],[13,17],[13,23],[11,30],[16,65],[9,31],[74,247],[5,15],[6,19],[3,7],[7,81],[-5,14],[-4,13],[-8,7],[-31,0],[-14,5],[-7,9],[-5,9],[-3,24],[-1,45],[0,12],[2,8],[1,4],[2,2],[2,3],[7,1],[23,-10],[8,-3],[2,0],[10,1],[6,9],[28,74],[2,10],[-3,19],[-6,10],[-7,-5],[-8,-6],[-7,0],[-40,9],[-5,6],[-2,8],[0,19],[3,19],[42,53],[0,50],[-1,7],[-7,33],[-13,24],[-14,14],[-8,31],[7,40],[14,-10],[9,216],[8,172],[4,84],[4,83],[2,63],[3,63],[8,190],[8,191],[6,136],[4,88],[5,89],[3,76],[4,82],[12,310],[0,3],[1,34],[0,8],[2,40],[4,90],[1,44],[1,78],[1,79],[1,76],[1,77],[2,87],[3,198],[2,141],[1,90],[3,157],[2,103],[1,112],[2,113],[2,181],[2,182],[25,95],[24,96],[24,93],[23,92],[73,286],[79,305],[21,78],[14,54],[25,100],[33,132],[63,245],[32,131],[59,232],[47,181],[11,42],[-54,13],[-23,6],[-179,41],[-142,35],[-15,3],[-14,4],[-78,18],[-29,7]],[[73523,63959],[-20,-102],[-68,-271],[-32,-129],[-47,-165],[-118,-210],[-1,-3],[-48,-87],[-39,-70],[-27,-48],[-46,-82],[-1,-2],[-37,-67],[-55,-100],[-69,-127],[-43,-72],[-12,-23],[-11,-23],[-12,-23],[-11,-23],[-11,-23],[-14,-13],[-13,-13],[-13,-13],[-13,-13],[-14,-14],[-13,-16],[-11,-21],[-10,-29],[-8,-33],[-8,-31],[-9,-35],[-9,-32],[-11,-23],[-12,-20],[-12,-16],[-13,-19],[-16,-29],[-18,-30],[-22,-40],[-14,-17],[-18,-16],[-12,-14],[-20,-22],[-21,-17],[-29,-13],[-16,-15],[-16,-38],[-15,-35],[-14,-30],[-17,-46],[-17,-41],[-9,-39],[-7,-38],[-15,-47],[-13,-43],[-2,-5],[-8,-21],[-47,-110],[-41,-100],[-12,-30],[-17,-41],[-22,-52]],[[72174,61039],[-68,-43],[-54,-36],[-89,-58],[-24,-16],[-96,-62],[-32,-20],[-14,-10],[-77,-50],[-17,-12],[-18,-12],[-16,-11],[-23,-16],[-10,-6],[-11,0],[-31,-17],[-24,-19],[-12,-12],[-3,-12],[-1,-3],[-3,-43],[-3,-14],[-3,-7],[-9,5],[-9,12],[-8,21],[-1,3],[-2,-2],[-84,-57],[-121,-80],[-73,-48],[-23,-14],[-107,-69],[-90,-59],[-87,-56],[-18,-11],[-2,-2],[-23,-17],[-111,-73],[-3,-2],[-112,-74],[-73,-48],[-51,-34],[-24,-16],[-82,-54],[-55,-37],[-3,-2],[-36,-24],[-31,-21],[-124,-84],[-71,-48],[-29,-20],[-81,-55],[-32,-23],[-20,-14],[-45,-30],[-99,-67],[-122,-83],[-147,-100],[-13,-9],[-20,-13],[-33,-22]],[[69471,59233],[20,57],[6,38],[-8,50],[-18,7],[-15,57],[-4,68],[0,57],[-19,14],[-20,27],[-13,20],[-20,22],[2,50],[-6,38],[-16,19],[-13,-3],[-15,-12],[-21,-10],[-5,39],[-10,20],[-9,17],[-18,25],[-12,46],[-20,29],[-18,13],[-10,-33],[-15,-1],[-2,39],[-10,36],[-13,11],[-14,-1],[-20,17],[1,47],[-10,40],[-9,36],[-2,46],[-10,48],[-18,7],[-14,3],[-19,-3],[-11,-34],[-13,-59],[-9,-51],[-15,-35],[-16,-8],[-10,-29],[-14,-36],[-10,-24],[-24,-27],[-18,17],[-20,13],[-12,20],[-13,9],[-15,5],[-15,21],[-19,14],[-11,18],[-13,11],[-7,32],[-12,25],[-13,14],[-14,12],[-17,23],[-19,15],[-2,42],[1,53],[-7,34],[-14,2],[-19,6],[-27,19],[0,40],[-15,28],[-19,1],[-17,7],[-11,22],[-20,-5],[-17,3],[-20,-2],[-13,14],[-22,19],[-6,47],[-11,23],[-11,-20],[-13,16],[-15,28],[-14,26],[-14,41],[-1,45],[-12,22],[-14,1],[-12,21],[7,47],[1,51],[-8,29],[-15,6],[-17,23],[-14,9],[-17,7],[-22,-5],[-14,31],[-12,24],[-14,-6],[-14,46],[-1,47],[9,33],[4,43],[8,35],[10,27],[15,22],[1,66],[-7,57],[10,28],[17,27],[18,4],[14,28],[15,18],[17,6],[14,18],[8,33],[9,28],[6,45],[-2,39],[6,35],[4,48],[-4,67],[-6,32],[-5,20],[3,48],[-9,40],[-10,53],[0,50],[-8,41],[3,47],[10,54],[-6,73],[-1,55],[-5,51],[-6,42],[-3,61],[8,60],[1,52],[-19,38],[-2,49],[-9,41],[-12,26],[-6,50],[1,57],[5,49],[13,36],[22,-7],[15,-10],[22,11],[11,61],[12,27],[20,40],[17,37],[3,38],[-11,38],[6,48],[16,51],[21,4],[15,17],[9,28],[-3,42],[12,28],[9,49],[16,52],[13,43],[-18,30],[-11,28],[-6,57],[2,61],[-23,19],[-10,34],[8,43],[17,37],[6,42],[-9,30],[-6,53],[-1,42],[5,36],[0,58],[0,38],[-15,34],[-15,4],[-15,5],[-19,2],[-21,19],[-13,5],[-7,33],[-2,53],[-7,49],[-15,16],[-16,-2],[-17,0],[-12,29],[-17,57],[-12,18],[-7,59],[6,50],[10,28],[10,52],[-19,7],[-15,3],[-2,50],[-18,44],[-25,28],[-16,-27],[-17,-25],[-15,0],[-17,3],[-24,3],[-27,-14],[-17,-19],[-23,-26],[-11,-9],[-2,-1],[-13,-10],[-16,-38],[-18,-24],[-15,-1],[-13,-32],[-18,17],[-18,-16],[-13,-15],[-7,40],[-1,57]],[[59773,61573],[14,-10],[6,-36],[-11,-31],[-11,-34],[-11,-31],[-13,-28],[-15,-13],[-18,6],[-15,5],[-14,-2],[-16,-24],[-10,-28],[-9,-32],[-13,-28],[-16,-24],[-14,-21],[-14,-12],[-15,-7],[-13,-19],[-5,-40],[-5,-45],[-7,-42],[-6,-36],[-3,-26],[-1,-13],[-13,-15],[-15,2],[-12,-19],[0,-40],[-17,-30],[-2,-44],[5,-43],[6,-37],[1,-41],[-6,-42],[-7,-38],[-4,-41],[-3,-41],[-6,-35],[-8,-37],[-3,-41],[3,-43],[0,-41],[-11,-79],[-8,-43],[-9,-36],[-9,-34],[-11,-40],[-11,-42],[-7,-35],[14,-32],[1,-44],[-8,-37],[-19,-45],[-5,-35],[2,-88],[3,-38],[4,-38],[1,-61],[6,-41],[5,-44],[12,-34],[24,-7],[21,-48],[7,-41],[-2,-2],[-48,-37],[-26,-22],[-16,-18],[-17,-37],[-9,-28],[-18,-6],[-13,-13],[-10,-29],[-3,-53],[-3,-39],[-10,-27],[-4,-37],[-10,-29],[-14,-23],[-12,-20],[-17,-30],[-11,-22],[-13,-17],[-16,-8],[-21,-14],[-12,-15],[-12,-24],[-7,-46],[-12,-56],[-10,-54],[-3,-65],[-11,-28],[-1,-40],[-10,-42],[-7,-47],[-7,-40],[-8,-36],[-11,-32],[-13,-32],[-13,-17],[-12,-33],[-14,-24],[-11,-35],[-13,-21],[-19,1],[-14,1],[-13,-4],[-11,-22],[-15,-5],[-16,-9],[-16,4],[-13,10],[-12,-25],[-29,-23],[-11,-28],[-15,-12],[-9,-30],[-20,9],[-14,8],[-13,-11]],[[58739,58100],[-42,53],[-37,47],[-41,53],[-40,52],[-2,1],[-15,8],[-118,143],[-33,37],[-66,76],[-67,76],[-46,53],[-55,64],[-28,32],[-36,41],[-10,12],[-2,3],[-13,13],[-12,18],[-21,24],[-25,29],[-132,150],[-351,400],[-19,22],[-19,22],[-166,188],[-36,43],[-49,56],[-44,50],[-5,6],[-18,21],[-24,28],[-15,16],[-28,32],[-17,20],[-12,14],[-67,78],[-1,1],[-59,52],[-60,53],[-108,95],[-34,29],[-13,11],[-17,15],[-1,1],[-22,18],[-20,17],[-168,151],[-16,14],[-14,3],[-16,13],[-16,13],[-21,17],[-45,39],[-27,24],[-15,13],[-22,19],[-24,21],[-15,12],[-23,20],[-24,19],[-30,25],[-35,29],[-48,43],[-55,48],[-24,22],[-13,11],[-17,14],[-14,12],[-14,12],[-19,16],[-19,17],[-15,11],[-24,19],[-25,18],[-47,45],[-43,36],[-108,89],[-32,26],[-32,27],[-3,2],[-133,119],[-35,31],[-23,20],[-3,3],[-62,56],[-46,41],[-45,41],[-57,50],[-56,50],[-22,18],[-47,40],[-46,41],[-32,27],[-41,37],[-14,12],[-36,34],[-8,7],[-81,72],[-24,21],[-66,59],[-16,14],[-73,64],[-19,17],[-44,39],[-18,16],[-72,66]],[[79824,58635],[-14,-58],[-18,-20],[-34,13],[-4,2],[-57,21],[-74,29],[-214,82],[-170,65],[-118,45],[-32,12],[-59,23],[-125,49],[-80,3],[-8,-48],[-12,-24],[-3,-38],[0,-40],[-11,-24],[-1,-38],[3,-39],[10,-29],[5,-36],[0,-40],[11,-26],[11,-26],[14,-26],[4,-40],[-9,-33],[-3,-51],[17,-49],[2,-38],[0,-39],[0,-39],[-13,-24],[-12,-25],[0,-39],[-2,-38],[-11,-29],[-9,-45],[4,-45],[-5,-43],[3,-38],[-3,-37],[8,-30],[17,-20],[15,-35],[-12,-32],[-14,-20],[0,-45],[12,-31],[10,-25],[-1,-44],[-8,-31],[-11,-24],[-20,-25],[-14,-24],[-10,-33],[0,-48],[4,-54],[-8,-35],[5,-44],[-7,-33],[-13,-10],[-16,-17],[-11,-27],[-16,-1],[-6,43],[-11,25],[-16,13],[-15,23],[-15,-20],[-10,-35],[-11,-29],[-14,13],[-13,33],[-15,27],[-16,3],[-13,-5],[-14,-25],[-14,-2],[-13,-12],[-14,-11],[-15,5],[-14,2],[-21,5],[-9,35],[-11,33],[-13,-19],[-16,-29],[-9,-36],[-6,-44],[12,-29],[-9,-30],[-9,-37],[-10,-27],[-14,-25],[-12,22],[-12,36],[-6,36],[-5,36],[-28,35],[-6,36],[-14,30],[-9,32],[-16,30],[-19,12],[-17,15],[-9,63],[-8,34],[-12,47],[-5,39],[-4,45],[-11,33],[-12,34],[-54,56],[-33,44],[-5,8],[-8,11],[-18,12],[-13,-9],[-1,0],[-14,-8],[-17,-10],[-15,1],[-18,-5],[-16,14],[-18,-11],[-10,-29],[-15,-1],[-17,22],[-12,23],[-14,2],[-15,-14],[-12,-29],[-12,-41],[-15,-2],[-13,8],[-12,28],[-11,29],[-10,27],[-12,28],[-14,24],[-16,15],[-13,3],[-14,-16],[-14,3],[-11,-25],[-11,-21],[-11,-22],[-15,-9],[-15,-11],[-17,-17],[-14,-17],[-8,-37],[-13,-35],[-11,-27],[6,-41],[-10,-35],[-16,-11],[-13,-15],[-8,-40],[-15,-19],[-13,7],[-12,-16],[-12,-27],[-11,-24],[-16,11],[-13,13],[-13,-18],[-14,-22],[-13,5],[-14,-18],[-7,-35],[1,-38],[-10,-30],[-16,-22],[-13,2],[-15,13],[-18,14],[-15,-4],[-16,0],[-13,-21],[-18,-13],[-15,30],[-16,5],[-20,-29],[-18,7],[-14,9],[-17,-1],[-16,-13],[0,-50],[-7,-36],[-15,2],[-12,-23],[-14,-8],[-15,10],[-19,-2],[-10,-25],[-12,-29],[0,-38],[-6,-42],[-7,-32],[-11,-27],[-16,-11],[-13,-30],[-16,14],[-13,26],[-11,33],[-16,24],[-15,-10],[-14,14],[-15,24],[-16,5],[-11,31],[3,38],[-11,26],[-14,8],[-13,22],[-13,13],[-15,-7],[-12,-35],[-2,-47],[-10,-32],[-17,-1],[-17,2],[1,39],[-9,37],[-14,26],[-9,-29],[-11,-30],[-10,-33],[-13,-6],[-16,-10],[-15,5],[-10,-26],[-2,-43],[-12,-27],[-14,-18],[-11,-22],[11,-26],[13,-32],[5,-35],[-2,-44],[-21,-25],[-13,-4],[-2,-46],[-6,-35],[-13,-17],[-17,20],[-17,-11],[-11,-31],[-15,-33],[-5,-45],[-12,-24],[-24,-18],[-7,37],[-7,37],[-9,46],[-1,45],[-7,55]],[[76398,56657],[13,50],[19,94],[14,65],[0,39],[-27,65],[-23,55],[-83,195],[-39,88],[-4,8],[-21,49],[-31,69],[-19,43],[-16,37],[-11,26],[-10,23],[-118,272],[-37,84],[-73,165],[-66,145],[-21,41],[-9,60],[-37,224],[-62,362],[-18,110],[-8,47],[-55,323],[-17,102],[-1,4],[-24,139],[-15,87],[-9,42],[-14,37],[-70,187],[-29,75],[-92,244],[-83,219],[-3,7],[-9,26],[-17,45],[-14,38],[-95,252],[-66,172],[-25,75],[-54,137],[-3,8],[-54,134],[-41,112],[-39,101],[-12,31],[-1,2],[-10,27],[-59,141],[-11,19],[-15,10],[-15,10],[-15,11],[-157,104],[-18,12],[-30,17],[-55,21],[-16,10],[-31,19],[-216,160],[-90,52],[-14,6],[-14,-16],[-12,-21],[-13,-5],[-15,4],[-9,33],[-11,24],[-13,12],[-14,-2],[-13,16],[-9,29],[11,29],[-10,30],[-53,24],[-52,27],[-4,3],[6,73],[1,4],[-59,98],[0,2],[0,3],[-1,4],[-9,55],[0,3],[1,15],[2,18],[7,91],[-20,6],[-8,3],[-7,2],[-35,11],[-10,-105],[0,-12],[-6,-107],[0,-76],[0,-23],[0,-8],[-2,-17],[-2,-2],[-2,-2],[-4,-4],[-9,0],[-2,0],[-10,-1],[-6,8],[-5,12],[-3,22],[-1,4],[0,20],[0,4],[1,16],[1,3],[1,0],[0,3],[0,15],[0,18],[-2,9],[0,3],[-11,21],[-6,12],[-28,43],[-6,1],[-4,0],[-12,-17],[-3,-25],[-11,-10],[-8,-39],[-13,-33],[-17,25],[-4,38],[-14,30],[14,11],[17,10],[6,43],[-46,245],[-3,16],[6,2],[15,8],[21,-61],[9,-10],[27,-18],[20,0],[6,0],[9,13],[13,26],[7,37],[6,84],[-1,27],[-5,25],[-9,18],[-21,17],[-13,4],[-27,-7],[-4,-3],[-10,1],[-4,0],[-4,0],[-11,14],[-11,17],[-47,70],[-13,21],[-6,15],[-1,7],[-1,9],[0,3],[0,9],[0,6],[2,14],[6,11],[65,24],[15,11],[9,12],[8,16],[6,25],[-1,15],[-7,42],[-7,29],[-1,3],[-8,10],[-15,13],[-28,19],[-7,1],[-22,-7],[-13,8],[-4,7],[-1,3],[-2,5],[-2,7],[-3,24],[-1,5],[1,19],[1,14],[10,115],[4,11],[8,-4],[3,-6],[9,-17],[20,-26],[11,-7],[8,0],[44,1],[8,0],[10,7],[1,21],[-6,98],[-1,13],[-5,33],[-8,20],[-6,3],[-3,-1],[-5,-2],[-2,-4],[-10,-17],[-1,-2],[-13,-13],[-7,3],[-6,8],[-36,44]],[[91590,66047],[-1,0],[-9,-9],[-13,-19],[-20,-53],[-11,-85],[-29,-191],[1,-210],[24,-257],[37,-133],[31,-79],[20,-51],[36,-91],[8,-62],[9,-60],[8,-135],[-1,-93],[-19,-110],[-2,-12],[-34,-247],[-16,-148],[-13,-123],[-16,-172],[-5,-52],[-44,-288],[-11,-37],[-22,-127],[-5,-27],[-6,-39],[-13,-22],[-74,-48],[-51,31],[-224,13],[-35,-3],[-17,-138],[6,-103],[4,-22],[52,-268],[4,-49],[8,-111],[9,-256],[5,-112],[11,-89],[21,-56],[41,-60],[55,-52],[37,-35],[43,-115],[11,-28],[14,-114],[37,-157],[74,-77],[12,-11],[56,-51],[21,-33],[18,-65],[15,27],[5,3],[2,-2],[14,-3],[7,-11],[7,-22],[55,-173],[15,-26],[10,-20],[14,-21],[9,-15],[43,-26],[7,-10],[7,-14],[17,-55],[1,-86],[1,-105],[3,-180],[-3,-120],[30,-152],[17,-42],[22,-52],[50,-130],[28,-71],[22,-19],[3,-2],[2,1],[14,1],[3,-1],[53,-11],[21,-40],[24,-90],[19,-66],[14,-68],[19,-48],[41,-40],[51,-14],[26,-60],[4,-8],[4,-10],[2,-23],[1,-12],[3,-26],[-2,-51],[-3,-108],[2,-5],[2,-6],[2,-6],[19,-53],[39,-110],[2,-44],[2,-20],[-5,-69],[-1,-26],[1,-6],[23,-126],[30,-112],[28,-65],[25,-64],[-7,-71],[-6,-78],[-4,-68],[3,-11],[1,-37],[23,-151],[29,-98],[7,-16],[17,-38],[27,-44],[1,-1],[17,-15],[11,-8],[12,-20],[5,-13],[7,-21],[0,-7],[3,-19],[-1,-18],[-1,-13],[-1,-29],[-2,-51],[2,-113],[14,-96],[14,-86],[6,-33],[2,-11],[39,-175],[1,-4],[14,-42],[50,-82],[0,-13],[-6,-29],[-9,-27],[-10,-20],[-11,-23],[-17,-47],[11,-28],[22,-31],[3,-4],[15,-15],[11,-4],[5,-6],[4,3],[2,-1],[16,12],[1,3],[12,8],[27,63],[10,3],[47,-38],[43,-38],[2,-1],[20,-18],[147,-7],[33,-73],[-22,-41],[5,-33],[3,-21],[1,-8],[-2,-174],[0,-2],[0,-7],[1,-7],[0,-6],[1,-7],[6,-66],[1,-5],[0,-2],[4,-37],[1,-5],[1,-6],[1,-6],[1,-6],[1,-2],[5,-22],[1,-4],[2,-5],[1,-5],[2,-4],[1,-3],[6,-14],[1,-2],[2,-4],[2,-3],[1,-2],[12,-19],[1,-1],[2,-3],[2,-2],[3,-2],[2,-2],[2,-1],[2,0],[2,-1],[12,0],[1,0],[2,0],[2,0],[10,4],[1,0],[2,1],[3,2],[93,75],[7,3],[9,0],[13,-6],[29,-28],[20,-27],[8,-21],[4,-12],[-3,-103],[-3,-51],[-9,-31],[-33,-91],[-13,-8],[-23,-5],[-71,-3],[-15,0],[-1,-1],[-3,0],[-1,-1],[-25,-12],[0,-1],[-3,-1],[-2,-2],[-2,-2],[-2,-3],[-1,-2],[-9,-13],[0,-1],[-2,-4],[-1,0],[-3,-7],[-10,-20],[-2,-3],[-2,-5],[-1,-4],[-2,-5],[-2,-5],[0,-2],[-4,-17],[-1,-3],[-1,-6],[-1,-6],[-1,-6],[-1,-3],[0,-5],[-1,-2],[-2,-15],[0,-2],[0,-6],[-1,-2],[-1,-20],[-7,-74],[0,-4],[0,-5],[3,-123],[0,-6],[1,-6],[1,-6],[1,-6],[1,-6],[1,-3],[4,-16],[1,-2],[1,-5],[2,-5],[6,-17],[1,-5],[2,-4],[2,-3],[8,-16],[2,-4],[2,-3],[2,-3],[2,-2],[1,-1],[29,-25],[1,-1],[2,-1],[66,-38],[23,-21],[2,-3],[-1,0],[-4,-12],[0,-1],[-11,-32],[-39,-111],[-63,-163],[-19,-44],[-28,-52],[-18,-24],[-15,-15],[-10,-10],[-2,-2],[-1,-1],[-4,-6],[-1,-2],[-2,-3],[-2,-3],[-2,-4],[-2,-4],[-2,-5],[-1,-4],[-30,21],[-10,9],[-19,13],[-15,-3],[-12,-17],[-6,-28],[-2,-1]],[[92991,54647],[-78,70],[-10,29],[-30,41],[-70,98],[-71,99],[-162,225],[-9,13],[-47,62],[-10,14],[-27,-56],[-19,-47],[-21,-10],[-13,-20],[-8,-55],[-6,-35],[-24,4],[-10,34],[-14,3],[-14,16],[-15,17],[-11,24],[-17,-50],[-14,-26],[-12,21],[-19,43],[-19,17],[-13,-18],[-16,-20],[-16,-39],[-17,-44],[-24,-29],[-16,-30],[-4,-38],[-12,-23],[-16,-18],[-14,-14],[-10,52],[-4,54],[5,35],[-44,7],[-27,-33],[-6,-70],[-16,-23],[-22,21],[-23,-1],[-17,24],[-15,-5],[-14,4],[-12,-31],[-6,-45],[22,-56],[-5,-40],[-1,-45],[15,0],[16,-28],[1,-60],[5,-38],[-19,-45],[-19,-19],[-22,-15],[0,-46],[10,-36],[-4,-39],[-3,-47],[-2,-43],[12,-65],[6,-46],[14,-24],[-8,-83],[-4,-37],[-25,-41],[-20,-12],[-19,26],[-31,38],[-18,15],[-13,7],[-5,-49],[-14,-23],[-10,-36],[-2,-41],[4,-45],[3,-47],[-15,-45],[6,-39],[-11,-31],[-24,-6],[-1,0],[-29,-26],[-13,3],[-19,15],[-15,4],[-5,-40],[-6,-35],[3,-41],[12,-25],[8,-31],[11,-24],[12,-41],[-14,-41],[-13,-42],[-3,-38],[33,-42],[20,31],[12,-27],[2,-52],[13,-19],[10,-42],[-14,-22],[-15,-30],[-11,-44],[-11,-30],[-9,-46],[9,-39],[10,-28],[-6,-38],[-11,-86],[12,-13],[16,-24],[2,-39],[-3,-44],[13,-30],[-2,-41],[-7,-88],[-12,-26],[-12,-37],[-9,-51],[-33,-8],[-18,30],[-17,16],[-19,-31],[-19,-9],[-15,-6],[-15,-14],[1,-44],[-4,-70],[-11,-41],[-11,-26],[-8,-36],[-4,-49],[-6,-48]],[[91481,52148],[-17,9],[-45,26],[-101,59],[-104,61],[-332,192],[-232,136],[-17,9],[-19,22],[-19,23],[-22,26],[-21,24],[-18,21],[-6,7],[-24,26],[-16,20],[-31,35],[-35,42],[-18,20],[-96,113],[-14,16],[-22,24],[-42,48],[-26,30],[-18,20],[-52,60],[-14,18],[-54,62],[-17,19],[-36,42],[-48,57],[-47,54],[-8,9],[-36,42],[-14,15],[-1,1],[-11,17],[-30,44],[-56,87],[-87,133],[-129,203],[-63,98],[-77,118],[-39,61],[-73,113],[-140,216],[-148,231],[-36,56],[-39,61],[-203,319],[-13,24],[-33,47],[-48,76],[-33,52],[-5,3],[-27,19],[-170,108],[-88,56],[-45,28],[-27,17],[-28,18],[-79,50],[-15,10],[-66,43],[-17,7],[-50,50],[-22,21],[-14,13],[-131,126],[-140,135],[-9,9],[-31,29],[-32,31],[-63,61],[-45,43],[-51,50],[-21,20],[-136,123],[-68,65],[-15,14],[-21,25],[-14,-19],[-5,-8],[-8,-11],[-15,2],[-20,19],[-14,3],[-19,17],[-9,29],[-13,17],[-18,2],[-37,-10],[-4,-41],[-2,-45],[-5,-50],[-17,-16],[-13,11],[-18,9],[-18,6],[-12,-34],[-13,-12],[-14,-11],[-14,-18],[-14,2],[-14,-4],[-14,-21],[-6,-33],[-15,-47],[-19,-6],[-14,-26],[-17,-17],[5,-50],[3,-43],[-9,-33],[-17,-39],[-5,-38],[-13,-23],[-18,9],[-14,2],[-10,-49],[2,-52],[-2,-44],[0,-39],[-9,-38],[-3,-43],[-4,-45],[2,-64],[-19,-38],[-23,-50],[1,-45],[-3,-47],[-10,-38],[-16,0],[-14,-27],[-15,-4],[-12,-40],[-15,-15],[-16,-17],[0,-53],[-3,-46]],[[86533,55345],[-17,-10],[-12,-32],[-6,-37],[-15,-21],[-14,19],[-13,26],[-21,-1],[-12,25],[-16,44],[-1,42],[1,40],[-5,45],[-14,9],[-24,-1],[-22,-28],[-14,-25],[-14,12],[-12,32],[-19,9],[-15,8],[-16,44],[-8,32],[10,57],[9,36],[0,42],[-16,15],[-16,-28],[-41,-22],[-15,29],[0,39],[9,67],[10,65],[-1,61],[-39,11],[-15,30],[-12,29],[-20,3],[-13,18],[4,74],[0,56],[-3,51],[-3,38],[-24,-1],[-3,53],[1,42],[-12,25],[2,42],[7,36],[20,43],[18,50],[12,26],[-1,39],[12,36],[6,39],[-18,14],[-11,33],[-12,13],[-16,31],[4,38],[-10,32],[9,33],[25,59],[-7,40]],[[86094,56971],[12,23],[14,16],[23,3],[25,34],[19,12],[20,-8],[49,92],[-18,19],[-13,25],[-21,1],[-7,36],[-4,41],[-5,42],[12,26],[14,2],[14,5],[16,-9],[17,13],[14,28],[6,38],[5,42],[-13,50],[3,40],[13,18],[18,-12],[13,0],[25,37],[8,36],[-5,37],[-3,37],[8,35],[8,36],[15,21],[-2,38],[-12,35],[-10,29],[8,36],[-8,39],[2,43],[12,12],[9,11],[13,15],[11,20],[6,49],[15,37],[15,-9],[20,11],[20,-3],[20,6],[17,75],[8,33],[15,-17],[14,6],[31,64],[18,11],[-15,66],[8,46],[15,58],[10,39],[5,37],[31,-16],[29,-21],[17,-11],[27,58],[14,-10],[20,18],[11,35],[22,33],[13,-12],[28,19],[17,-23],[37,-80],[18,5],[22,48],[18,-35],[17,-12],[12,24],[20,50],[3,44],[15,15],[24,67],[19,37],[-5,49],[-15,-4],[-11,41],[3,59],[12,14],[16,-11],[18,33],[16,9],[16,46],[11,28],[24,21],[10,28],[3,72],[-11,24],[-10,85],[17,24],[17,89],[-7,57],[0,84],[-9,31],[0,38],[15,6],[21,17],[11,31],[14,49],[17,3],[11,27],[21,39],[23,23],[13,27],[2,46],[33,52],[6,36],[-11,37],[-11,29],[6,49],[16,0],[37,105],[20,10],[23,-19],[20,48],[5,120],[36,84],[17,-6],[13,-28],[19,-7],[19,-20],[19,-56],[20,-13],[21,5],[6,35],[-9,70],[-1,59],[9,33],[0,66],[17,39],[19,5],[17,-27],[20,-9],[19,25],[14,-12],[12,34],[13,108],[25,40],[16,51],[20,15],[11,35],[21,12],[11,21],[6,66],[-13,1],[-15,22],[-11,39],[15,36],[2,40],[-25,64],[2,39],[-12,19],[-20,-2],[-15,-10],[-13,16],[-8,30],[-9,82],[-14,32],[6,42],[-2,40],[-11,31],[-6,39],[13,50],[-14,34],[-12,23],[-15,35],[-13,-1],[-26,21],[-18,-5],[-6,35],[1,44],[6,36],[-1,40],[-6,47],[3,38],[13,22],[-2,40],[-1,45],[7,47],[-9,31],[-13,3],[-13,36],[-10,30],[4,39],[7,36],[-8,35],[10,32],[-5,39],[-11,24],[10,46],[2,37],[-12,22],[1,51],[8,33],[-7,53],[-14,18],[-13,18],[-16,8],[-10,25],[-4,46],[-2,42],[-12,19],[-21,9],[-9,30],[-1,43],[11,40],[-13,26],[-14,15],[4,42],[-6,44],[6,37],[14,5],[13,59],[7,42],[-15,34],[-15,16],[-5,36],[-14,4],[-11,-33],[-8,-38],[-20,11],[-14,3],[-16,-5],[-1,43],[-11,28]],[[86094,56971],[-18,-9],[-14,25],[3,41],[-5,35],[-15,-1],[-20,14],[-14,-10],[-15,-16],[-3,-43],[-13,-20],[-16,-6],[-6,-38],[-1,-38],[-14,-23],[-14,-4],[-14,-25],[-2,-39],[-12,-34],[-1,-46],[-13,-13],[-13,-28],[-17,7],[-16,-16],[-10,23],[-2,39],[-6,41],[-14,-16],[-11,-25],[3,-39],[3,-49],[-8,-35],[-18,-4],[-16,-14],[-12,-29],[-20,23],[-14,13],[-14,15],[-11,32],[-19,1],[-16,-11],[-12,17],[-11,23],[6,36],[6,38],[-2,48],[-12,30],[-13,16],[-12,33],[4,45],[-14,0],[-15,7],[-17,21],[-19,6],[-12,28],[-14,-9],[-14,-23],[-11,-24],[-11,-28],[-12,-23],[-10,-31],[-11,-41],[-9,-50],[-22,-6],[-6,45],[-15,4],[-2,44],[-1,39],[-1,41],[-25,39],[-14,-9],[-14,-1],[-13,-1],[-14,0],[-16,9],[-19,37],[-15,-7],[-13,-5],[-15,11],[-4,36],[-4,42],[-13,11],[-15,-17],[-11,-39],[-13,-20],[-13,-16],[-17,-3],[-15,16],[-10,23],[-10,47],[-15,6],[-13,-17],[-13,-6],[-13,6],[-14,-23],[-8,-51],[-11,-22],[-18,-49],[-17,-2],[-15,-7],[-11,-30],[-12,-27],[-15,-6],[-13,38],[-15,20],[-15,3],[-13,-20],[-6,-43],[-14,-11],[-14,-1],[-15,3],[-12,21],[-16,-17],[-9,-32],[-16,-27],[-12,20],[-2,40],[-13,18],[-12,-27],[-10,32],[-15,-7],[-15,-11],[-15,-12],[-16,-4],[-13,9],[-13,3],[-10,28],[-14,-9],[-20,-7],[-13,-25],[4,-41],[-11,-22],[-15,-10],[-14,5],[-14,-20],[9,-37],[-9,-32],[-7,-49],[-12,-54],[-14,-12],[-20,9],[-3,72],[2,38],[-15,11],[-14,7],[-2,40],[-16,23],[-7,38],[-6,47],[-12,38],[-18,28],[0,55],[-5,41],[10,50],[-10,31],[-14,11],[-16,-2],[-16,3],[-11,-23],[-10,-30],[-16,-38],[-15,-8],[-15,22],[-13,15],[-6,35],[-17,1],[-8,31],[-10,28],[-29,7],[-22,51],[-12,67],[-25,-4],[-15,12],[-12,44],[-12,19],[-9,-32],[-12,-65],[-16,-58],[-18,1],[-19,-9],[-16,-18],[-17,6],[-18,36],[-16,-20],[-15,-14],[-19,-3],[-19,-15],[-18,-5],[-16,-7],[-12,-19],[-17,-14],[-12,29],[-10,37],[-11,43],[-14,-2],[-13,11],[-17,1],[-22,-1],[-17,8],[-13,27],[-9,38],[-7,44],[-13,35],[-11,19],[-14,5],[-7,37],[-2,52],[-5,42],[-16,12],[-18,15],[-7,102],[8,32],[6,35],[-15,3],[-13,18],[-27,10],[-12,-37],[-12,-26],[-16,-1],[-20,8],[-11,23],[-12,23],[-7,41],[-11,32],[-6,34],[6,39],[14,17],[11,25],[-1,46],[3,49],[-1,48],[0,40],[2,40],[-14,18],[-7,35],[-11,76],[5,36],[2,41],[-21,8],[-19,9],[-16,21],[-14,-3],[-14,34],[-15,17],[-14,30],[-2,46],[7,45],[-6,43],[-12,31],[-11,24],[-16,7],[-15,15],[-11,28],[-15,6],[-15,-2],[-16,-31],[-7,-40],[-10,-26],[-14,-2],[-16,29],[-14,-8],[-12,-39],[-13,-12],[-22,2],[-20,1],[-15,25],[-13,19],[-14,20],[-12,27],[-6,38],[-20,10],[-10,30],[-13,8],[-14,7],[-14,8],[-16,18],[-13,10],[-10,25],[-13,21],[-11,26],[-11,27],[-14,8],[-14,7],[-9,30],[-2,8],[-5,31],[0,46],[7,26],[3,11],[-2,10],[-2,7],[-5,19],[-4,8],[-8,14],[1,14],[3,28],[-10,30],[2,43],[-11,24],[-2,20],[-4,25],[3,24],[2,17],[3,57],[-6,41],[7,38],[3,40],[-3,33],[-1,4],[3,15],[5,25],[8,33],[2,31],[2,16],[12,21],[10,38],[2,38],[9,29],[2,11],[4,26],[1,35],[0,4],[2,30],[0,9],[0,4],[-5,33],[1,11],[1,17],[1,15],[5,18],[1,2],[4,14],[8,30],[11,19],[1,3],[-2,18],[-2,19],[1,24],[1,14],[-2,38],[0,2],[-2,40],[1,9],[4,36],[6,34],[7,33],[9,31],[9,35],[1,56],[-1,46],[0,2],[-8,31],[-11,26],[-10,24],[-14,37],[-12,41],[-14,20],[-14,21],[-35,-50],[-7,36],[9,30],[5,38],[7,42],[14,24],[5,37],[12,28],[20,44],[10,24]],[[69471,59233],[8,-32],[19,-126],[-14,-114],[16,-119],[-25,-63],[-2,-5],[-2,-94],[20,-181],[-7,-173],[-4,-168],[-49,-59],[-19,-22],[-19,-61],[26,-118],[7,-51],[7,-58],[24,-96],[-6,-130],[41,-94],[16,-38],[-148,-213],[-134,-176],[-140,-183],[-53,-68],[-33,-48],[1,-19],[0,-3],[2,-16],[17,-104],[-18,-155],[-3,-5],[-23,-38],[-12,-42],[-1,-7],[-5,-35],[3,-86],[7,-65],[2,-10],[5,-12],[2,-3],[15,-25],[17,-56],[9,-127],[-1,-156],[-2,-70],[-15,-58],[-10,-61],[-17,-100],[0,-56],[0,-1],[1,-7],[1,-15],[7,-20],[10,-9],[9,5],[18,20],[24,15],[18,11],[58,31],[7,-1],[3,-5],[11,-124],[-3,-34],[-35,-73],[-35,-10],[-14,-4],[-26,-10],[-4,-14],[-10,-33],[-19,-63],[-1,-9],[-4,-23],[-1,-7],[8,-50],[7,-32],[2,-8],[17,-5],[5,-2],[12,4],[7,11],[2,14],[5,9],[13,2],[70,-17],[6,-10],[0,-1],[8,-12],[4,-12],[0,-11],[-3,-24],[-3,-7],[-4,-11],[-1,0],[0,-2],[-101,-150],[-26,-30],[-35,-30],[-46,-15],[-65,-133],[-15,-38],[-40,-47],[-20,-16],[-4,-14],[-1,-23],[-3,-4],[1,-128],[-15,-8],[-8,-117],[-7,-106],[12,-20],[9,-10],[10,-3],[42,19],[2,2],[9,5],[54,-157],[3,-25],[-4,-56],[-12,-67],[-1,-1],[-9,-16],[-24,3],[-31,5],[-9,29],[-1,3],[-5,36],[-6,17],[-5,11],[-8,1],[-4,-6],[-12,-31],[-3,-10],[-11,-42],[10,-119],[-43,-95],[-19,-31],[-14,-24],[43,-111],[38,-127],[9,-29],[-51,-141],[-3,-4],[-8,-2],[-8,-1],[-14,4],[-3,-3],[-2,-10],[-14,-85],[-5,-32],[-1,-59],[3,-8],[50,-138],[4,-7],[17,-8],[36,-6],[15,-45],[4,-12]],[[68798,52625],[-2,-35],[-15,-237],[-8,-31],[-15,-54],[-7,-10],[-17,-24],[-3,-4],[-2,0],[-24,7],[-3,1],[-1,1],[-10,12],[-3,10],[-11,29],[-3,23],[-12,68],[-22,62],[-35,70],[-42,58],[-54,91],[-55,132],[-16,35],[-15,19],[-9,3],[-89,126],[-19,10],[-2,1],[-1,0],[-32,4],[-3,-3],[-25,-20],[-21,-35],[-16,-51],[-10,-54],[-4,-80],[2,-46],[7,-28],[43,-139],[5,-52],[15,-139],[1,-8],[4,-13],[51,-190],[18,-86],[11,-85],[30,-156],[50,-344],[-2,-24],[-5,-99],[0,-2],[0,-2],[-8,-39],[-8,-36],[-5,-12],[-21,-47],[-42,-19],[-34,-31],[-31,-28],[-8,-18],[-13,-27],[-30,-63],[-26,-71],[-6,-17],[-7,-10],[-17,-25],[-16,-25],[-3,1],[-31,8],[-39,51],[-1,1],[-22,62],[-24,103],[-13,74],[-3,17],[-6,19],[-13,37],[-67,161],[-1,6],[-14,55],[-7,31],[-29,206],[-2,17],[-9,43],[-6,19],[-2,5],[-14,43],[-12,28],[-21,22],[-11,1],[-23,4],[-7,1],[-19,-6],[-12,-12],[-20,-35],[-12,-21],[-5,-9],[-5,-18],[-4,-16],[-18,-88],[-4,-18],[-14,-95],[-4,-23],[-8,-57],[-3,-15],[-18,-163],[-17,-117],[-9,-29],[-5,-12],[-1,-1],[-38,-87],[-5,-21],[-6,-12],[-4,-6],[-4,-6],[-25,-70],[-3,-10]],[[67507,50936],[-17,38],[-4,10],[-6,34],[2,18],[2,20],[12,20],[5,37],[8,30],[4,45],[8,32],[-1,38],[-8,32],[-7,33],[-2,37],[0,3],[-2,12],[-6,23],[-7,33],[-1,12],[-2,29],[-2,38],[5,47],[8,45],[12,50],[9,33],[8,37],[-2,13],[-3,25],[-11,27],[-12,26],[-12,31],[-2,13],[-4,23],[-1,3],[-5,28],[-1,8],[-7,40],[-10,54],[-7,38],[-9,33],[-13,43],[-20,40],[-2,44],[7,35],[8,53],[1,41],[-4,58],[-4,45],[-14,34],[-34,92],[-6,33],[-8,49],[-9,49],[-8,59],[-9,75],[-8,68],[-2,39],[-3,43],[-5,38],[-7,39],[-9,56],[-2,63],[-2,48],[-6,50],[-21,33],[-13,21],[-13,21],[-32,45],[-13,23],[-14,24],[-16,29],[-12,33],[-18,56],[-8,38],[-8,32],[-10,25],[-22,18],[-21,4],[-28,22],[0,41],[-2,63],[-6,61],[-1,39],[-2,40],[-5,105],[-3,42],[-5,39],[-10,33],[-12,27],[-10,28],[-14,44],[-14,47],[-2,10],[-4,28],[-6,51],[-5,42],[-182,215],[-45,52],[-27,32],[-22,28],[-91,110],[-77,93],[-44,54],[-14,17],[-24,28],[-24,28],[-21,24],[-18,20],[-18,20],[-118,139],[-8,10],[-4,4],[-23,27],[-69,82],[-2,2],[-21,28],[-125,143],[-38,44],[-156,181],[-28,33],[-81,97],[-62,71],[-70,82],[-57,67],[-9,13],[-7,10],[-20,14],[-122,86],[-18,13],[-153,111],[-20,15],[-61,44],[-66,50],[-56,42],[-195,141],[-182,135]],[[64552,56847],[4,70],[7,92],[6,80],[4,87],[7,102],[5,74],[10,90],[14,129],[25,176],[11,101],[6,59],[6,43],[7,71],[13,94],[9,98],[7,49],[6,45],[2,20],[2,19],[8,99],[13,119],[5,37],[8,71],[13,117],[8,79],[1,3],[21,183],[25,218],[32,287],[4,33],[11,97],[14,114],[55,474],[6,44],[5,41],[32,281],[6,34],[6,52],[44,375]],[[46953,56695],[5,-75],[1,-6],[3,-43],[2,-39],[1,-10],[0,-49],[8,-79],[9,-139],[1,-29],[5,-74],[4,-70],[14,-210],[6,-90],[15,-236],[26,-363],[0,-2],[3,-49],[9,-123],[3,-37],[17,-254],[14,-198],[5,-93],[29,-532],[0,-5],[4,-58],[8,-133],[8,-127],[4,-58],[11,-175],[1,-7],[6,-109],[13,-184],[5,-74],[5,-69],[5,-79],[1,-48],[2,-43],[8,-82],[3,-39],[5,-85],[7,-115],[10,-169],[8,-126],[5,-82],[-4,-38],[-30,-156],[-7,-38],[-8,-40],[-11,-60],[-17,-87],[-7,-39],[-20,-102],[-9,-53],[-12,-58],[-22,-116],[-12,-63],[-15,-80],[-7,-36],[-9,-47],[-27,-145],[-13,-66],[-10,-56],[-9,-47],[-12,-61],[-51,-268],[-24,-125],[-48,-257],[-8,-39],[-4,-21],[-12,-57],[-25,-23],[-17,-15],[-22,-9],[-138,-52],[-16,-5],[-41,-17],[-38,-15],[-17,-7],[-17,-7],[-165,-65],[-29,-12],[-2,-1],[-4,-1],[-218,-83],[-74,-28],[-42,-16],[-242,-96],[-87,-32],[-34,-14],[-22,-9],[-207,-83],[-89,-37],[-49,-17],[-229,-84],[-48,-17],[-28,-11]],[[44944,49117],[-13,33],[-30,74],[-143,319],[-123,279],[-67,151],[-19,44],[-12,31],[-81,216],[-49,111],[-157,366],[-19,45],[-28,64],[-16,33],[-10,24],[-34,89],[-182,472],[-160,422],[-16,36],[-13,64],[-25,78],[-1,3],[-75,130],[-1,2],[-20,35],[-11,21],[-50,95],[-62,116],[-31,59],[-63,118],[-87,165],[-3,5],[-20,38],[-12,22],[-170,321],[-16,31],[-12,22],[-14,27],[-182,342],[-25,47],[-34,62],[-57,107],[-103,194],[-155,292],[-78,146],[-30,56],[-131,248],[-44,82],[-19,35],[-62,116],[-46,86],[-22,40],[-59,112],[-45,87],[-79,150],[-30,58],[-77,148],[-59,112],[-25,57],[-154,302],[-11,21],[0,1],[-61,115],[-33,64],[-173,337],[-73,146],[-71,149],[-71,151],[-12,25],[-16,33],[-27,58],[-126,268],[-42,91],[-110,232],[-116,247],[-20,44],[-13,26],[-11,25],[-42,89],[-12,26],[-60,127]],[[40483,58432],[9,2],[19,3],[22,-2],[32,-4],[51,-7],[117,24],[65,14],[38,23],[18,11],[43,27],[94,86],[42,79],[13,25],[21,40],[15,32],[93,199],[20,73],[14,49],[20,70],[14,50],[11,79],[28,366],[-11,136],[-11,66],[-30,105],[-58,94],[-17,19],[-17,21],[-129,87],[-105,142],[-66,181],[-31,211],[-4,88],[-3,98],[5,61],[4,42],[14,72],[23,111],[20,50],[9,21],[9,22],[17,41],[30,70],[9,11],[3,1],[26,33],[25,26],[29,24],[57,14],[35,1],[33,-9],[27,-12],[24,-7],[20,-4],[19,-6],[14,-12],[10,-8],[9,-11],[16,-27],[43,-72],[47,-102],[1,-1],[1,-3],[53,-103],[20,-24],[3,-3],[0,-2],[1,-11],[1,-12],[1,-7],[32,-73],[19,-44],[18,-48],[40,-107],[41,-108],[3,-7],[18,-18],[33,8],[1,0],[8,7],[24,20],[23,41],[7,16],[5,10],[3,11],[4,13],[3,13],[6,18],[1,5],[17,118],[23,198],[14,63],[11,55],[27,107],[12,39],[6,15],[15,33],[35,64],[34,46],[2,3],[0,1],[20,17],[1,1],[22,25],[4,0],[3,4],[13,1],[1,-1],[18,-8],[61,-15],[131,-34],[86,-21],[42,-6],[19,-3],[42,-4],[16,0],[31,7],[38,12],[40,24],[33,33],[18,29],[17,31],[20,44],[11,35],[5,13],[5,17],[3,11],[10,33],[11,40],[20,83],[15,120],[9,68],[1,120],[-4,76],[-6,40],[-12,57],[-10,41],[-26,55],[-28,36],[-15,19],[-50,47],[-31,26],[-30,22],[-25,18],[-18,13],[-103,38],[-40,8],[-41,7],[-19,3],[-33,10],[-39,11],[-19,13],[-32,23],[-45,58],[-31,47],[-21,41],[-25,58],[-2,7],[-2,8],[-18,79],[-16,132],[-2,47],[-2,71],[0,76],[-5,63],[1,69],[1,63],[6,68],[8,72],[5,39],[10,56],[15,70],[11,36],[31,73],[12,28],[41,55],[38,36],[44,22],[18,4],[30,-5],[24,-4],[36,-37],[20,-20],[48,-61],[11,-19],[20,-30],[24,-50],[19,-38],[45,-101],[19,-55],[19,-53],[33,-67],[12,-25],[39,-79],[1,-1],[3,-6],[35,-88],[45,-97],[28,-51],[41,-78],[15,-16],[14,-15],[30,-35],[33,-37],[33,-49],[13,-14],[14,-15],[41,-43],[32,-42],[23,-35],[22,-41],[21,-33],[22,-35],[32,-50],[24,-43],[13,-25],[15,-29],[4,-9],[1,-1],[20,-76],[16,-60],[17,-80],[20,-41],[15,-66],[18,-63],[11,-36],[11,-37],[16,-62],[25,-81],[43,-190],[5,-77],[2,-61],[-2,-124],[-4,-68],[-5,-61],[-7,-61],[-4,-54],[-7,-116],[-16,-116],[-2,-13],[-5,-36],[-17,-182],[-11,-171],[-5,-70],[-7,-96],[-3,-54],[-5,-94],[-1,-157],[0,-150],[0,-40],[8,-216],[8,-124],[3,-40],[13,-120],[12,-113],[9,-77],[7,-67],[8,-68],[13,-70],[23,-122],[7,-34],[12,-46],[18,-62],[15,-55],[19,-44],[55,-123],[31,-63],[13,-25],[66,-115],[38,-56],[38,-40],[18,-14],[57,-71],[25,-32],[12,-15],[45,-42],[28,-33],[-11,-19],[0,-3],[17,-39],[14,-39],[21,-31],[17,-25],[22,-36],[28,-61],[18,-48],[14,-51],[9,-32],[18,-45],[20,-30],[13,-18],[38,-39],[4,-5],[33,-40],[35,-42],[18,-23],[19,-27],[42,-48],[28,-24],[26,-25],[29,-26],[7,-8],[28,-29],[27,-28],[20,-22],[20,-28],[2,-2],[5,-6],[4,-7],[36,-47],[90,-103],[89,-53],[32,0],[32,-1],[42,21],[42,22],[66,42],[30,19],[99,75],[8,6],[58,26],[60,13],[25,3],[18,2],[27,3],[48,-1],[28,-11],[19,-3],[31,-4],[29,-5],[16,-4],[15,-8],[26,-13],[25,-13],[42,-24],[27,-15],[29,-23],[43,-42],[14,-15],[33,-38],[30,-36],[39,-51],[28,-38],[23,-25],[15,-22],[26,-39],[8,-12],[19,-31],[11,-19],[27,-44],[28,-47],[7,-13],[4,-7],[5,-12],[45,-122],[10,-30],[-7,1],[-17,35],[-15,29],[-2,-11],[2,-9],[12,-39],[17,-95],[9,-48],[10,-49],[11,-57],[2,-16],[11,-62],[13,-79],[9,-45],[15,-45],[15,-66],[6,-36],[13,-67],[8,-48],[10,-46],[1,-7],[13,-57],[8,-33],[6,-21],[14,-49],[16,-52],[16,-47],[3,-9],[18,-48],[22,-62],[9,-27],[25,-63],[23,-57],[12,-25],[14,-29],[16,-32],[33,-33],[36,-21],[9,4],[2,-1],[22,11],[31,36],[7,17],[5,14],[1,3],[18,58],[12,53],[1,3],[0,4],[1,4],[8,55],[6,82],[3,49],[3,78],[-5,101],[-5,87],[-8,105],[-3,38],[-4,78],[0,59],[2,44],[7,72],[4,37],[11,52],[21,99],[19,45],[7,13],[5,9],[36,45],[25,30],[6,8],[24,25],[26,24],[28,19],[55,35],[13,7],[32,16],[15,9],[25,12],[19,8],[23,7],[26,8],[13,2],[23,9],[15,5]],[[64552,56847],[-5,-46],[-8,-89],[-15,-114],[-35,-293],[-35,-293],[-6,-47],[-6,-52],[-61,-498],[-16,-132],[-3,-25],[-27,-214],[-18,-139],[-68,-560],[-16,-132],[-18,-152],[-85,-717],[-9,-73],[-18,-150],[-35,-285],[-1,-8],[-37,-304],[-36,-294],[-5,-42],[-25,-196],[-5,-37],[-8,-60],[-47,-397]],[[63904,51498],[-6,5],[-65,17],[-60,-9],[-54,-42],[-107,-114],[-43,-49],[-48,-79],[-34,-78],[-40,-70],[-12,-12],[-201,-135],[-33,9],[-29,28],[-52,120],[-28,79],[-21,77],[-11,53],[-4,98],[12,129],[13,78],[8,23],[18,31],[19,21],[94,56],[25,39],[16,52],[6,59],[-7,53],[-70,222],[-20,56],[-4,42],[-2,61],[6,146],[-6,58],[-14,44],[-10,18],[-47,18],[-93,-32],[-18,5],[-21,26],[-13,59],[-3,32],[4,70],[16,87],[19,56],[61,116],[13,47],[3,45],[-5,37],[-20,51],[-30,39],[-25,6],[-18,-10],[-31,-63],[-68,-201],[-30,-144],[-11,-69],[-8,-145],[2,-61],[-4,-71],[-6,-19],[-17,-25],[-32,3],[-24,21],[-20,52],[-17,141],[-8,160],[8,110],[14,83],[54,194],[21,101],[4,80],[-2,52],[-15,100],[-22,62],[-21,31],[-36,15],[-20,-5],[-10,-8],[-125,-216],[-37,-36],[-36,-6],[-72,111],[-26,68],[-3,21],[6,115],[20,117],[14,57],[21,61],[11,18],[12,21],[36,42],[87,119],[38,26],[89,7],[40,20],[7,13],[12,43],[5,55],[-2,15],[-7,28],[-13,23],[-25,32],[-63,159],[-27,48],[-13,14],[-34,9],[-26,-12],[-25,-11],[-34,9],[-10,13],[-12,34],[-11,54],[-8,68],[5,95],[17,62],[35,57],[33,17],[30,17],[35,42],[25,44],[49,109],[67,109],[34,83],[9,28],[3,55],[-3,32],[-14,39],[-12,18]],[[62766,55576],[-5,7],[-66,53],[-45,6],[-77,-25],[-56,20],[-19,25],[-24,62],[-11,49],[-10,79],[-15,55],[-23,72],[-6,32],[-3,62],[3,55],[2,15],[26,166],[35,153],[22,66],[12,52],[-1,72],[-9,29],[0,1],[-8,25],[-3,1],[-5,18],[-20,51],[-52,55],[-52,39],[-32,22],[-57,50],[-32,44],[-21,72],[-3,77],[3,50],[15,67],[45,131],[34,77],[19,92],[-1,112],[-8,114],[-18,137],[-32,79],[-19,31],[-15,9],[-59,57],[-37,36],[-22,71],[-5,15],[-8,27],[-25,79],[-15,80],[-2,36],[5,101],[25,85],[30,53],[19,15],[28,8],[64,-4],[7,10],[1,0],[16,-4],[15,8],[13,22],[13,41],[6,46],[1,47],[-6,59],[-7,41],[-13,54],[-14,41],[-17,28],[-6,6],[-13,37],[-24,44],[-45,126],[-5,27],[0,51],[17,57],[86,160],[16,42],[71,133],[11,33],[2,76],[-7,129],[-11,99],[-16,91],[-31,95],[-67,170],[-26,32],[-11,3],[-21,-15],[-25,-44],[-30,-89],[-62,-126],[-61,-111],[-26,-19],[-24,6],[-24,27],[-33,115],[-18,86],[-8,69],[-1,76],[16,347],[-15,187],[4,93]],[[76398,56657],[-15,-12],[-17,-25],[0,-45],[0,-39],[-10,-40],[7,-66],[-11,-29],[-8,-47],[0,-46],[-8,-32],[-4,-36],[-10,-71],[-9,-6],[-4,-2],[-16,14],[-13,48],[-10,31],[-13,12],[-17,29],[-11,22],[-19,22],[-11,-22],[-7,-40],[-6,-48],[6,-42],[6,-36],[5,-44],[0,-39],[-6,-45],[6,-49],[6,-39],[-5,-61],[6,-55],[-3,-41],[-11,-27],[15,-27],[-9,-42],[-17,-19],[-16,-11],[6,-46],[6,-42],[14,-30],[19,-25],[10,-42],[-7,-62],[-9,-37],[-3,-42],[20,-8],[17,-16],[14,-44],[-9,-34],[-14,-36],[-8,-42],[-11,-32],[-15,-36],[-7,-33],[5,-35],[9,-33],[-4,-145],[0,-18],[-1,-36],[-7,-251],[0,-11],[-3,-107],[20,-27],[13,-31],[-6,-41],[-1,-39],[-5,-40],[10,-47],[16,-23],[11,-24],[14,-8],[14,-11],[16,7],[12,-45],[12,-15],[16,-27],[2,-38],[-17,-30],[-10,-33],[7,-40],[6,-35],[-16,-44],[-6,-49],[-8,-36],[-10,-46],[-5,-61]],[[76276,53626],[-20,-46],[-2,-44],[-11,-29],[-15,-21],[-17,0],[-20,7],[-17,-68],[4,-43],[-13,-27],[-16,-13],[-13,-14],[-19,7],[-8,-35],[-1,-38],[-11,-26],[-14,-2],[-13,-9],[-14,-18],[-27,2],[-13,12],[-12,-20],[-31,-5],[-15,-11],[-15,-11],[-14,13],[-13,12],[-24,-2],[-22,14],[-15,-35],[-10,-51],[-21,-17],[-17,-5],[-15,-14],[-9,-32],[-15,4],[-21,14],[-17,-8],[-15,11],[-15,-30],[-6,-33],[-10,-40],[-7,-33],[-15,14],[-2,41],[-4,54],[-17,-11],[-16,6],[-16,22],[-16,13],[-8,39],[-10,26],[-33,2],[-19,-4],[-17,12],[-14,18],[-32,-72],[-5,-43],[-13,-21],[-16,13],[-16,7],[-8,38],[-20,24],[-19,40],[-25,0],[-13,9],[-21,-11],[-7,-33],[-5,-39],[-8,-45],[-14,-1],[-14,18],[-14,-11],[-14,10],[-17,8],[-17,-3],[-14,-25],[-14,8],[-16,17],[-15,21],[-12,21],[-17,3],[-15,11],[-18,15],[-11,34],[-8,40],[-9,33],[-12,-15],[-14,-21],[-13,-11],[-15,-6],[-24,-1],[-17,-6],[-14,-4],[-6,-7],[-6,-7],[-17,6],[-16,-6],[-16,-12],[-15,-49],[-27,40],[-8,68],[-16,72],[5,170],[-21,-7],[-29,-6],[-9,51],[-7,33],[-18,31],[-12,-19],[-18,-12],[-34,49],[-17,8],[-12,-13],[-40,0],[-24,-1],[-15,0],[-117,9],[-18,10],[-13,18],[-19,24],[-15,11],[-10,22],[-4,10],[-117,107],[-49,45],[-22,20],[-14,13],[-276,252],[-70,64],[-13,12],[-35,22],[-12,-29],[-13,-15],[-13,12],[-5,-37],[-13,-14],[-14,-10],[-14,-18]],[[73680,54093],[-29,140],[-53,260],[-16,84],[-24,117],[-17,85],[-41,204],[-4,15],[-27,138],[-9,43],[-1,3],[-9,38],[-11,52],[-8,54],[-39,192],[-49,244],[-78,391],[-27,136],[-1,4],[-19,70],[-11,43],[-31,163],[-8,30],[-21,87],[-43,193],[-38,178],[-13,56],[-17,82],[-26,117],[-1,4],[-52,242],[-41,187],[-9,41],[-18,82],[0,1],[-12,56],[-23,109],[-46,212],[-26,121],[-32,146],[-40,185],[-8,38],[-39,181],[-1,3],[-25,115],[-29,133],[-10,44],[-10,44],[-32,149],[-35,156],[-13,62],[-15,68],[-11,48],[-8,40],[-13,55],[-50,214],[-17,73],[-135,579],[-14,60],[-24,103],[-23,95],[-10,43],[-14,38]],[[58739,58100],[-6,-37],[-9,-32],[-7,-32],[-7,-39],[-11,-31],[-7,-39],[-10,-35],[-20,-25],[-10,-42],[-2,-39],[-9,-18],[-6,-11],[-11,-22],[-12,-18],[-23,-8],[-36,5],[-13,3],[-26,4],[-15,-9],[1,-44],[11,-41],[10,-57],[-3,-40],[-16,-5],[-20,8],[-15,6],[-20,-10],[-13,-8],[-5,-58],[6,-56],[2,-37],[9,-44],[3,-52],[2,-40],[4,-43],[6,-40],[4,-44],[-7,-44],[-7,-36],[-6,-35],[-5,-42],[-9,-49],[-9,-36],[-14,-34],[-14,-42],[-10,-48],[-5,-43],[0,-51],[-3,-45],[-15,-20],[-18,12],[-17,22],[-16,7],[-18,3],[-19,10],[-15,38],[-7,53],[1,46],[-3,52],[-13,-25],[-6,-42],[-6,-44],[-2,-45],[1,-38],[-19,-16],[-16,15],[-21,33],[-20,26],[-24,19],[-13,13],[-4,-7],[-8,-13],[6,-37],[26,-32],[9,-31],[-18,-38],[-15,-32],[-7,-67],[3,-41],[0,-50],[0,-38],[-6,-41],[-16,-6],[-13,25],[-6,67],[-10,44],[-10,34],[-13,18],[-16,-6],[-13,-10],[-18,-30],[-17,-40],[-15,-12],[-13,27],[-4,39],[5,46],[7,43],[-4,54],[-7,42],[3,39],[11,26],[13,23],[8,34],[-2,37],[-15,7],[-25,-2],[-10,-26],[-12,-26],[-11,-25],[-13,-16],[-13,-24],[-11,-32],[1,-45],[-2,-38],[-6,-43],[8,-30],[10,-25],[7,-37],[-4,-37],[3,-48],[12,-32],[13,-40],[4,-41],[-10,-26],[-7,-63],[-8,-33],[-3,-40],[-2,-50],[8,-40],[-1,-56],[-1,-47],[3,-38],[0,-38],[-2,-41],[1,-26],[1,-43]],[[57881,55650],[-14,-16],[-35,-16],[-13,-5],[-5,-2],[-3,-1],[-17,-7],[-12,-12],[-14,-13],[-14,-17],[-18,-18],[-21,-9],[-13,5],[-15,13],[-14,3],[-24,-9],[-9,-3],[-6,-2],[-8,-3],[-2,-1],[-11,-4],[-54,-21],[-68,-27],[-276,-108],[-48,-20],[-94,-37],[-33,-13],[-57,-22],[-56,-22],[-16,-6],[-15,-6],[-54,-21],[-47,-19],[-130,-52],[-76,-30],[-3,-1],[-25,-11],[-72,-28],[-42,-17],[-18,-7],[-100,-40],[-151,-58],[-28,-10],[-15,-6],[-20,-8],[-33,-13],[-2,0],[-64,-26],[-33,-12],[-31,-16],[-80,-39],[-141,-69],[-111,-55],[-152,-75],[-17,-8],[-1,-1],[-65,-32],[-64,-32],[-25,-11],[-102,-52],[-49,-24],[-26,-15],[-15,-8],[-15,-5],[-39,-14],[-44,-1],[-80,2],[-80,1],[-15,0],[-10,29],[-12,42],[-3,11],[-7,21],[-13,24],[-11,31],[-16,21],[-11,34],[-12,23],[-15,28],[-19,5],[-12,20],[-7,41],[-13,13],[-15,11],[-9,40],[-16,15],[-8,32],[-11,24],[-10,23],[-12,42],[-11,29],[-8,29],[-9,37],[-13,24],[-15,23],[-13,12],[-13,22],[-12,22],[-11,23],[-14,6],[-38,33],[-22,27],[-14,2],[-19,10],[-21,1],[-18,18],[-15,34],[-16,4],[-15,36],[-14,32],[-20,18],[-13,18],[-21,3],[-15,16],[-17,-10],[-13,19],[-12,33],[-16,12],[-15,16],[-15,7],[-13,6],[-16,28],[-14,11],[-15,5],[-17,-16],[-13,-6],[-10,35],[-13,25],[-32,45],[-8,18],[-8,16],[-12,27],[-12,26],[-107,234],[-63,132],[-48,99],[-6,13],[-56,123],[-34,74]],[[53624,56419],[-71,150],[-19,42],[-20,42],[-12,23],[-13,23],[-81,178],[-29,61],[-20,42],[-19,41],[-17,36],[-18,41],[-12,27],[15,-13],[17,-9],[13,2],[9,5],[4,3],[5,51],[0,25],[0,1],[1,14],[3,17],[13,70],[3,16],[20,118],[22,125],[38,212],[35,204],[24,122],[15,83],[42,239],[13,72],[74,422],[29,155],[0,2],[37,222],[28,158],[77,442],[6,34],[7,41],[32,182],[24,101],[14,76],[4,18],[20,-6],[19,-7],[11,-3],[4,-2],[15,2],[1,1],[14,6],[12,16],[11,23],[12,19],[1,1],[12,12],[13,11],[13,13],[11,24],[12,21],[14,26],[11,21],[11,21],[12,23],[13,10],[14,-10],[12,-19],[16,1],[9,1],[13,2],[13,2],[17,4],[14,4],[15,4],[15,-6],[4,-2],[12,-4],[13,0],[13,11],[13,21],[-1,17],[-3,49],[0,1],[3,7],[12,23],[29,31],[22,17],[4,27],[13,93],[3,41],[2,58],[3,46],[4,76],[0,14],[2,87]],[[62766,55576],[-37,-33],[-69,-64],[-64,-59],[-69,-66],[-158,-140],[-169,-154],[-30,-28],[-12,-10],[-12,-15],[-14,-13],[-18,-16],[-124,-129],[-9,-51],[-23,-24],[-38,1],[-14,-17],[-14,-27],[-11,-42],[-41,-27],[-14,-13],[-19,-15],[-5,-5],[-26,-25],[-45,-43],[-62,-60],[-12,-29],[-27,-18],[-1,-1],[-17,-3],[-96,111],[-12,14],[32,119],[-14,11],[-14,5],[-14,2],[-13,3],[-13,7],[-14,11],[-15,-6],[2,-78],[-75,-258],[-1,3],[-4,13],[-5,19],[-1,2],[-1,17],[-7,14],[-12,22],[-5,5],[-54,-13],[-6,3],[-2,6],[-6,14],[0,12],[0,2],[0,13],[12,268],[1,29],[-12,34],[-63,-50],[-3,-53],[-31,6],[-3,-44],[-15,1],[-40,11],[3,54],[2,38],[1,43],[1,41],[3,37],[-45,12],[-65,15],[-42,9],[-6,-171],[-56,119],[-121,-130],[-15,-16],[-6,-159],[-66,31],[-37,20],[-4,-114],[-9,-227],[-25,-32],[-98,-34],[-16,-19],[-73,17],[-9,-36],[-5,-48],[-7,-48],[-10,-42],[-9,-32],[-4,-34],[-1,-12],[3,-38],[-4,-44],[-7,-62],[-7,-51],[2,-46],[7,-36],[2,-42],[-11,-25],[-8,-35],[-7,-41],[4,-66],[-7,-33],[-13,-16],[-18,-22],[-14,-27],[-19,-6],[-19,-7],[-10,-31],[6,-70],[0,-47],[-6,-34],[-7,-45],[-10,-48],[-11,27],[-25,10],[-35,37],[-2,-48],[-2,-39],[-10,-39],[-19,-11],[-13,22],[-18,28],[-24,68],[-13,10],[2,-41],[7,-39],[1,-44],[-3,-48],[-7,-35],[-10,-39],[-29,1],[-16,-22],[-4,-47],[-13,-16],[-12,-19],[3,-41],[10,-39],[1,-39],[2,-44],[-3,-38],[-25,-63],[-13,9],[-27,22],[-14,3],[-17,12],[-8,39],[-3,53],[-13,28],[-15,-4],[-19,-14],[-14,-18],[-17,-18],[-13,-25],[10,-34],[7,-47],[-3,-46],[-3,-52],[-5,-38],[-9,-33],[-18,-7],[-20,3],[-26,7],[-11,-21],[-8,-57],[-7,38],[-18,50],[16,37],[13,41],[0,53],[-5,49],[-16,12],[-15,-16]],[[59687,52613],[-18,19],[-15,19],[-19,-5],[-13,-24],[-4,-35],[10,-30],[6,-47],[-14,-11],[-13,10],[-40,21],[-14,-26],[-7,-54],[-17,-38],[-16,-5],[-9,39],[12,35],[25,49],[-5,39],[-13,19],[-15,18],[-15,16],[-9,32],[-9,35],[-17,46],[-5,43],[17,32],[8,37],[-14,25],[-28,-1],[-14,-19],[-12,-20],[10,-30],[9,-32],[-8,-35],[-14,-18],[-22,-10],[-17,-2],[-17,6],[-16,18],[-11,15],[-2,3],[-13,-11],[7,-33],[3,-11],[7,-23],[3,-41],[-8,-37],[-16,-15],[-4,-3],[-7,33],[-11,24],[-14,15],[-11,20],[-11,35],[-14,48],[-17,34],[-16,13],[-14,-42],[9,-42],[8,-43],[8,-37],[6,-39],[4,-37],[-1,-38],[-8,-44],[-10,-30],[-12,-48],[-14,-3],[-11,32],[-14,55],[-14,19],[-16,4],[-17,-2],[-16,-6],[-13,-18],[-11,-41],[-6,-41],[-17,23],[-3,46],[6,62],[1,39],[-7,39],[-24,85],[17,8],[-3,40],[-17,-18],[-11,-25],[-16,-38],[-18,-36],[-10,-29],[-10,-27],[-10,-32],[-1,-44],[-12,-22],[-15,6],[-26,14],[-19,-5],[-17,-1],[-10,27],[-13,16],[-13,19],[-14,9],[-13,21],[-16,15],[-23,16],[-13,-4],[-14,8],[-11,26],[-18,25],[-7,41],[1,43],[0,39],[-1,18],[-1,20],[-3,40],[-6,39],[4,38],[3,41],[-4,37],[-3,39],[2,39],[7,36],[7,35],[5,35],[0,38],[-1,39],[-12,24],[-10,26],[-11,25],[-15,-2],[-13,-5],[-12,19],[-13,19],[-12,15],[-11,26],[-11,29],[-13,9],[-13,-11],[-14,-1],[-13,12],[-11,24],[-3,39],[1,37],[-16,9],[-46,66],[-7,5],[-6,-2],[-6,-8],[-4,-7],[-5,-19],[-5,-112],[-6,-191],[5,-93],[0,-3],[-3,-5],[-32,-50],[-13,-26],[-5,-24],[-4,-29],[-1,-9],[0,-6],[2,-29],[1,-6],[7,-36],[0,-37],[-3,-17],[-1,-5],[-11,-29],[-13,-16],[-12,0],[-5,4],[-10,11],[-60,69],[-38,34],[-12,7],[-17,2],[-9,-5],[-3,-4],[-5,-15],[-3,-9],[-1,-14],[3,-11],[1,-4],[9,-39],[11,-19],[6,-4],[61,-50],[8,-12],[6,-15],[7,-31],[5,-36],[3,-20],[1,-10],[1,-31],[-4,-25],[-7,-38],[-10,-2],[-15,20],[-15,13],[-3,1],[-10,1],[-5,1],[-7,-9],[-18,-32],[-20,-21],[-3,-3],[-10,1],[-2,4],[-5,12],[-1,1],[-2,11],[-16,90],[-1,35],[0,31],[2,35],[-1,19],[-6,15],[-20,17],[-12,0],[-11,-15]],[[58078,52840],[-11,155],[-21,289],[-15,216],[-11,148],[-3,43],[-4,54],[-8,124],[-5,64],[0,3],[-3,45],[-4,60],[-8,110],[-18,256],[-5,61],[-14,199],[-20,294],[-11,158],[-3,39],[-16,222],[-2,38],[-7,123],[-4,71],[-4,38]],[[53624,56419],[-8,-34],[-9,-38],[-12,-48],[-20,-69],[-2,-6],[-13,-26],[-47,-79],[-16,-26],[-31,-51],[-23,-37],[-33,-53],[-33,-53],[-32,-52],[-23,-38],[-98,-159],[-151,-263],[2,0],[12,2],[9,-55],[16,-4],[13,-14],[14,-14],[10,-26],[10,-29],[12,-29],[9,-35],[15,-96],[-8,-46],[-4,-38],[-4,-57],[-1,-39],[-14,-24],[-16,-57],[-13,-56],[-10,-36],[-9,-31],[-16,-20],[-16,-24],[-11,-32],[-7,-39],[-15,-5],[-14,6],[-14,-33],[-8,-35],[-14,-13],[-14,-29],[-17,-16],[-17,-7],[-9,-36],[-11,-26],[-6,-57],[-5,-44],[-7,-31],[-10,-38],[-9,-36],[-4,-38],[-3,-41],[-10,-42],[-13,-31],[1,-39],[-11,-33],[-10,-30],[-18,-35],[-16,-12],[-18,0],[-9,-35],[-12,-24],[-13,-4],[-16,-8],[-12,-11],[-14,-8],[-18,7],[-16,14],[-10,34],[-14,20],[-12,-17],[-10,-48],[8,-44],[0,-41],[-2,-41],[-9,-29],[-10,-24],[-13,-20],[-15,-17],[-14,-16],[-13,-23],[-16,-22],[-15,21],[-14,16],[-14,-15],[-10,-27],[-10,-34],[-10,-34],[-9,-31],[-10,-24],[-14,-27],[-11,-28],[-14,-2],[-15,-19],[-4,-43],[-9,-20],[-4,-8],[-6,-38],[4,-47],[2,-15],[2,-24],[4,-76],[1,-152],[1,-43],[-1,-50],[-2,-38],[1,-41],[1,-41],[5,-37],[7,-39],[8,-37],[10,-43],[6,-39],[8,-39],[8,-35],[15,-17],[13,-1],[16,-18],[12,-31],[0,-2],[-17,-51],[-5,-10],[-71,-152],[-21,-45],[-4,-9],[-11,-24],[-14,-26],[-16,-19],[-7,0],[-13,1],[-15,1],[-20,2],[-16,-15],[-1,-1],[-41,-80],[-11,-21],[-5,-11],[-9,-26],[-8,-76],[-2,-21],[-11,10],[-34,31],[0,1],[-5,4],[-13,7],[-7,1],[-6,-5],[-24,-43],[-3,-5],[-10,-9],[-13,-3],[-42,40],[-1,0],[-1,-1],[-8,-4],[-1,-7],[-4,-17],[0,-16],[0,-12],[1,-42],[2,-25],[14,-36],[16,-38],[0,-25],[-4,-25],[-3,-4],[1,-13],[10,-80],[2,-17],[4,-32],[1,-19],[-2,-11],[-6,-19],[-76,-219],[-5,-15],[-6,-13],[-7,-16],[-17,-21],[-15,-13],[-8,-3],[-37,-7],[-2,0],[-14,-4],[-18,-5],[-6,-4],[-5,-14],[-20,-51],[-1,-4],[-2,-6],[-3,-11],[0,-39],[-4,-31],[-7,-24],[-4,-4],[-13,-14],[-2,0],[-3,-1],[-1,-5],[-33,-91],[-3,-10],[-86,-242],[-5,-15],[-7,-19],[-8,-2],[-25,-5],[-7,-28],[-1,-4],[-6,-7],[-8,-4],[-42,-2],[-16,-1],[-27,6],[-12,-8],[-4,-16],[-4,-30],[5,-12],[1,-5],[23,-64],[9,-26],[-6,4],[-17,12],[-4,0],[-35,-35],[-7,-10],[-4,-17],[-44,-74],[-9,-10],[-11,-14],[-1,-1],[-11,-12],[-11,-3],[-51,5],[-3,0],[-51,-43],[-34,-4],[-10,-4],[-14,-35],[-6,-21],[0,-12],[2,-10],[4,-16],[0,-1],[1,-17],[-6,-33],[-6,-17],[-50,-150],[-1,-3],[-4,-7],[-16,-2],[-8,3],[-4,7],[-2,7],[0,9],[0,8],[16,147],[-5,-6],[-30,-32],[-28,-20],[-19,-6],[-6,-2],[-14,7],[-5,7],[-9,5],[-6,4],[-5,-6],[-11,-20],[-27,-102],[-21,-77],[-11,-40],[-7,-18],[-2,-2],[-3,-3],[-10,0],[-5,5],[-2,2],[-6,13],[-5,23],[-3,17],[-7,16],[-11,13],[-11,12],[-7,-4],[-12,-31],[-4,-1],[-6,0],[-51,-9],[-10,-1],[-1,0],[-9,-5],[-5,-3],[-136,-180],[-3,-14],[-1,-4],[0,-22],[0,-2],[-2,-9],[-1,-1],[-4,-3],[-29,-9],[-4,3],[-2,3],[-1,0],[-3,8],[0,26],[10,32],[8,17],[4,3],[7,6],[18,-7],[7,3],[1,2],[2,5],[0,3],[0,20],[-6,16],[0,1],[-2,7],[-5,4],[-4,2],[-14,7],[-39,21],[-2,2],[-10,-4],[-1,0],[-35,1],[-4,0],[-58,5],[-1,0],[-8,2],[-2,0],[-33,4]],[[50390,49581],[-25,76],[-13,39],[-3,10],[-21,61],[-8,25],[-16,50],[35,72],[2,5],[-2,8],[-5,19],[-10,43],[-4,4],[-31,23],[-2,2],[-35,1],[-13,0],[-23,1],[0,37],[-3,109],[-22,61],[-3,8],[-71,77],[-5,6],[-3,5],[-9,20],[-8,23],[-1,0],[0,2],[-7,33],[0,10],[0,15],[-8,65],[-6,37],[-5,16],[-9,18],[-124,164],[-14,19],[-7,8],[-16,11],[-2,2],[-24,-5],[-31,-8],[-25,1],[-17,4],[-6,2],[-37,15],[-11,11],[-14,20],[-77,151],[-12,23],[-10,34],[-4,23],[0,9],[0,6],[-6,42],[-4,24],[-6,23],[-7,15],[-14,18],[-8,9],[-20,22],[-3,3],[0,5],[5,130],[1,34],[-2,14],[-5,12],[-7,11],[-1,1],[-11,5],[-5,0],[-4,0],[-8,-1],[-13,-17],[-19,-33],[-12,-16],[-8,-12],[-7,-10],[-9,-13],[-1,-2],[-12,-13],[-17,-7],[-5,0],[-26,3],[-1,0],[-1,1],[-13,7],[-30,34],[-4,8],[-6,11],[-4,15],[-1,11],[-2,35],[0,7],[-7,61],[-8,41],[-10,33],[-7,22],[-12,32],[-2,4],[-18,40],[-37,63],[-27,28],[-24,57],[-12,36],[-8,25],[-91,274],[-5,18],[-16,54],[-7,66],[-2,12],[1,19],[1,46],[0,9],[3,119],[5,34],[3,18],[0,3],[7,31],[7,16],[16,37],[10,16],[10,9],[8,3],[7,1],[9,-6],[18,-20],[62,-74],[32,-49],[37,-45],[41,-43],[16,3],[11,9],[30,33],[19,34],[4,12],[0,13],[-1,16],[-3,7],[-6,7],[-11,13],[-5,8],[-5,14],[-10,27],[-5,14],[-4,14],[-10,51],[-1,8],[-6,55],[-4,16],[-7,16],[-5,6],[-28,30],[-2,2],[-58,81],[-12,27],[-1,3],[-4,22],[-2,8],[0,34],[0,11],[2,19],[1,19],[1,4],[2,72],[-6,41],[-3,21],[-6,42],[3,87],[2,34],[3,42],[0,29],[0,5],[0,4],[-3,54],[-1,2],[-3,28],[-9,53],[-8,37],[-2,6],[-22,48],[-95,80],[-1,0],[-10,3],[-22,-1],[-11,0],[-19,1],[-1,0],[-6,3],[-7,3],[-2,1],[-5,5],[-7,7],[-16,19],[-13,28],[-8,23],[-1,1],[0,1],[-5,21],[-3,25],[0,39],[2,10],[9,43],[2,17],[1,7],[2,23],[0,4],[0,14],[1,22],[-1,22],[0,10],[-8,89],[-9,65],[-1,6],[-8,57],[-10,73],[-7,54],[-19,88],[-14,50],[-4,14],[-8,29],[-3,5],[-10,23],[-18,32],[-16,21],[-28,29],[-58,33],[-10,2],[-29,-2],[-21,-8],[-18,-16],[-18,-21],[-19,-14],[-15,0],[0,2],[-7,6],[-7,7],[-19,37],[-14,17],[-3,2],[-6,4],[-4,-3],[-82,-124],[-42,-73],[-1,-6],[-40,-70],[-18,-30],[-23,-27],[-28,-25],[-15,-8],[-24,-2],[-19,10],[-10,12],[-19,32],[-19,45],[-4,20],[-1,29],[12,66],[1,2],[8,66],[3,57],[1,19],[-3,76],[-12,127],[-2,74],[2,85],[3,64],[4,61],[3,44],[7,65],[5,41],[7,53],[18,110],[1,21],[-1,51],[-6,45],[-7,48],[-4,47],[-6,69],[-8,86],[-3,58],[-4,67],[-3,43],[-6,49],[-21,124],[-19,111],[0,2],[-3,4],[-7,4],[-1,0],[-1,1],[-111,20],[-32,-1],[0,-1],[-19,-1],[-12,0],[-3,0],[-13,0],[-20,-1],[-15,1],[-13,0],[-14,8],[-5,4],[-9,6],[-15,12],[-1,1],[-6,5],[-6,6],[-7,6],[-11,15],[-8,17],[-11,26],[-15,31],[-6,18],[-11,26],[-11,23],[-13,34]],[[86533,55345],[8,-48],[14,-9],[2,-43],[-6,-43],[1,-39],[12,-38],[-5,-46],[-5,-36],[14,-53],[2,-41],[14,-28],[4,-47],[13,-17],[15,-9],[15,-27],[4,-38],[4,-43],[-5,-42],[3,-49],[2,-39],[-1,0],[-18,-3],[-13,20],[-19,6],[-10,-34],[2,-38],[10,-36],[24,-29],[17,-43],[56,-46],[2,-55],[16,-40],[-4,-59],[8,-34],[3,-40],[0,-51],[1,-38],[15,-9],[20,-2],[12,-53],[-2,-54],[-5,-51],[14,-20],[14,-15],[14,-10],[10,-36],[-2,-54],[6,-58],[-7,-34],[-10,-34],[-13,-12],[-6,-44],[10,-87],[-12,-29],[-27,-13],[10,-47],[10,-42],[11,-21],[19,-10],[17,-5],[21,-1],[6,38],[16,4],[16,27],[17,1],[5,-38],[5,-46],[1,-57],[1,-40],[2,-46],[-8,-49],[-13,-43],[-15,-18],[-6,-46],[7,-34],[1,-40],[-1,-38],[3,-38],[4,-54],[6,-39],[11,-37],[1,-43],[-18,-48],[-18,-3],[-7,8],[-4,3],[-12,12],[-10,26],[-14,58],[-6,35],[-2,20],[-1,14],[-5,12],[-5,5],[-5,-3],[-3,-3],[-11,-11],[-55,-103],[-9,-45],[-5,-9],[-4,-4],[-4,0],[-10,11],[-29,63],[-3,8],[-6,30],[1,26],[0,1],[1,7],[-3,21],[-6,18],[-8,15],[-10,10],[-12,4],[-11,-1],[-14,-1],[-13,-10],[-5,-7],[-8,-16],[-1,-1],[-7,-15],[0,-43],[-1,-164],[16,-79],[20,-72],[30,-119],[0,-10],[-1,-12],[-17,-53],[0,-11],[3,-32],[5,-56],[-5,-45],[-13,-15],[-11,-24],[-3,-42],[14,-27],[12,-15],[-12,-33],[-13,-17],[-10,-28],[-13,1],[-10,-34],[8,-38],[-4,-41],[-13,-25],[-15,-4],[-8,32],[-14,15],[-13,-8],[-15,-16],[-13,-19],[-10,-29],[-15,17],[-13,-20],[-10,-28],[-10,-26],[0,-40],[-5,-38],[-6,-34],[-10,-32],[-13,-16],[-4,-38],[-13,-8],[-5,-46],[-5,-34],[-10,-41]],[[86324,51393],[-14,-5],[-14,11],[-15,40],[-9,28],[-14,25],[-14,10],[-13,11],[-5,37],[-22,3],[-13,13],[-6,35],[-13,22],[-13,17],[-14,-9],[-17,-9],[-13,-3],[-17,-14],[-13,-4],[-12,14],[4,37],[14,30],[11,32],[-1,50],[-8,58],[-4,35],[0,49],[-6,34],[8,40],[-34,58],[-11,26],[-15,12],[-11,27],[3,39],[-6,45],[-21,9],[-18,-10],[-11,46],[-1,53],[-8,78],[-14,34],[-15,23],[-11,-22],[-16,-23],[-21,-3],[-15,-17],[-3,-39],[-1,-94],[-5,-74],[-11,-32],[-14,20],[-9,29],[-16,-20],[-11,-46],[-4,-40],[11,-24],[3,-44],[12,-37],[14,-4],[1,-52],[-15,-22],[-16,-9],[-20,-7],[-15,10],[-19,20],[-14,-15],[-12,-28],[-17,9],[-18,-17],[-12,-25],[-18,-11],[-18,0],[-16,24],[-16,40],[-15,1],[-14,16],[-10,32],[-16,-6],[-12,-16],[-11,-23],[-13,-25],[-13,25],[-9,44],[8,42],[-3,62],[-18,45],[-14,47],[-10,32],[-14,12],[-29,55],[-13,16],[2,49],[0,39],[-18,5],[-9,29],[-15,6],[-17,0],[-16,27],[-12,48],[-10,26],[-25,0],[-15,-2],[-25,35],[-5,40],[-14,33],[-16,7],[-14,-6],[-19,12],[-20,-3],[-17,14],[-15,-19],[-16,-4],[-12,24],[-15,3],[-17,-14],[-15,31],[-6,36],[-23,6],[-12,21],[-5,44],[-13,4],[-13,-22],[-12,-27],[-14,-24],[-16,2],[-16,4],[-16,11],[-20,9],[-19,-32],[-17,-18],[-13,13],[-8,46],[-16,11],[-20,-9],[-18,8],[-16,10],[-27,31],[-17,-5],[-18,-1],[-12,-27],[-20,-42],[125,-574],[18,-90],[57,-247],[21,-95],[16,-73],[-87,-131],[-62,-95],[-43,-67],[-38,-55],[-43,-65],[-12,-19],[-44,-67],[-24,-36],[-15,-23],[-63,-96],[-120,-185],[-19,-29],[-2,-4],[-28,-41],[-17,-26],[-39,-59],[-69,-104],[-18,-30],[-30,-45],[-19,-28],[-2,-16],[-4,-23],[0,-38],[3,-38],[-10,-48],[-13,-39],[-11,-21],[-12,-38],[2,-43],[-15,-42],[-3,-44],[-11,-28],[-18,-20],[-11,-27],[-18,-18],[-21,-23],[-36,-21],[-20,-13],[-27,-16],[-31,-18],[-14,-5],[-12,16],[-14,29],[-14,-3],[-12,41],[-11,28],[-15,-10],[-13,16],[-20,-2],[-18,10],[-19,-19],[-17,-4],[-13,-11],[-7,-33],[-7,-42],[-12,-34],[-12,-18],[-8,-50],[-12,-23],[-5,-37],[-11,-45],[-9,-27],[-20,-17],[-16,-37],[-9,-49],[-5,-35],[-6,-49],[-1,-41],[-1,-50],[0,-44],[-13,-23],[-16,-24],[-14,-15],[1,-42],[-22,-35],[-7,-38],[-16,-31],[-9,-42],[7,-37],[11,-35],[8,-48],[4,-39],[-11,-38],[-14,-21],[-16,18],[-17,41],[-14,-3],[-16,-28],[-18,33],[-17,18],[-13,-13],[-7,-42],[-7,-42],[-18,-15],[-14,-3],[-12,-19],[-27,-3],[-16,-26],[-11,-23],[2,-51],[-8,-33],[-17,-12],[-24,8],[-15,16],[-13,-24],[-2,-58],[-11,-43],[-14,-16],[-14,-19],[7,-34],[9,-34],[-7,-33],[-9,-28],[-19,-28],[-15,-11],[-16,8],[-14,-2],[-11,-35],[-9,-33],[-13,-23],[-20,7],[-16,-3],[-6,-36],[-14,-32],[-14,-23],[0,-44],[0,-38],[-15,-31],[-17,15],[-13,8],[-10,-29],[-19,-3],[-13,11],[0,-41],[3,-49],[11,-33],[12,-23],[27,-62],[24,-60],[45,-108],[22,-51],[19,-46],[46,-110],[22,-51],[11,-23],[12,-30],[14,-32],[32,-80],[38,-93],[1,-1],[14,-36],[8,-29],[-3,-46],[-4,-38],[12,-35],[3,-86],[-11,-29],[-16,-14],[-15,2],[-17,-48],[-19,-18],[-17,-3],[-17,-6],[-7,-50],[14,-37],[3,-40],[-4,-52],[3,-43],[-17,-28],[-17,-17],[-1,-65],[2,-38],[-14,-31],[-19,6],[-21,23],[-16,-6],[-13,21],[-13,11],[-15,-26],[-5,-42],[-4,-43],[-7,-78],[-3,-37],[3,-56],[4,-55],[3,-42],[8,-46],[0,-40],[-10,-44]],[[82940,45860],[-17,10],[-8,42],[-8,34],[-16,2],[-17,-10],[-19,-12],[-21,-23],[-17,-30],[-20,18],[-7,65],[-17,2],[-24,21],[-5,40],[-10,43],[-18,-10],[-16,27],[-12,16],[2,39],[2,54],[5,46],[-3,46],[-3,42],[-9,39],[3,42],[9,40],[2,93],[8,30],[-5,49],[-7,49],[-4,38],[-8,44],[-7,35],[-17,4],[-6,-44],[-14,-16],[-29,-18],[-16,15],[-4,41],[8,57],[15,32],[13,22],[-10,94],[-14,23],[-15,-18],[-33,17],[-10,36],[-10,31],[-15,0],[-15,-7],[-17,24],[-15,-48],[-13,-21],[-10,34],[-15,7],[-16,-12],[-14,12],[-10,-35],[-14,-22],[-16,31],[-10,39],[-15,16],[-17,6],[-5,43],[-7,34],[-11,46],[-3,40],[-18,8],[-19,-12],[-19,32],[-11,22],[-7,33],[-13,22],[-15,-24],[-15,2],[-14,12],[-10,41],[-14,3],[-14,-6],[-16,-1],[-16,20],[-10,37],[5,36],[-4,42],[-10,30],[-18,13],[-13,-25],[-15,6],[-18,15],[-12,22],[-2,45],[-2,48],[-3,46],[6,36],[-1,23],[-1,23],[10,39],[4,33],[0,3],[7,60],[6,36],[5,36],[10,25],[10,28],[7,34],[6,42],[9,29],[1,39],[-7,44],[2,37],[15,6],[14,-8],[15,20],[-1,44],[-12,31],[-12,13],[-7,33],[-10,51],[-9,40],[-10,29],[-18,10],[-13,-16],[-4,-37],[-9,-39],[-2,-39],[-8,-35],[-17,-27],[-13,22],[-14,22],[-4,41],[-10,34],[-9,34],[-10,35],[-15,-3],[-13,-26],[-16,8],[-11,31],[-14,30],[-16,12],[-13,32],[-9,36],[-2,44],[-3,46],[-9,38],[-5,50],[-15,6],[-18,-1],[-11,29],[-5,35],[-18,17],[-10,29],[-13,10],[-17,1],[-14,15],[-7,35],[-3,41],[-13,16],[-13,17],[-15,4],[-16,20],[-11,28],[11,28],[6,43],[-13,36],[-14,1],[-10,-31],[-9,-33],[-7,-35],[-21,-12],[-13,7],[-17,-1],[-15,2],[-18,13],[-10,-29],[-15,-30],[-17,-12],[-10,33],[-7,36],[-18,2],[-18,0],[-16,-5],[-15,-12],[-21,13],[-18,7],[-16,9],[17,44],[16,51],[-3,50],[5,56],[-6,39],[5,49],[-1,38],[-13,32],[-15,39],[12,22],[10,29],[-9,51],[-16,3],[-32,5],[-47,8],[-17,3],[-49,7],[-39,7],[-37,6],[-24,4],[-1,0],[-25,4],[-20,11],[-16,37],[-18,22],[-20,0],[-23,4],[-13,18],[-13,-10],[-16,-21],[-15,-15],[-13,-31],[-15,4],[-8,47],[2,37],[-3,47],[-17,-10],[-14,-20],[-14,6],[-14,-8],[-15,-1],[-20,10],[-14,9],[-13,10],[-18,14],[-5,43],[-8,29],[-13,22],[-5,44],[-15,16],[-20,15],[-12,42],[-5,41],[-4,37],[-14,-11],[-23,23],[6,37],[-11,23],[-10,38],[9,38],[13,41],[11,24],[9,33],[-3,43],[-15,24],[-16,-20],[-15,17],[-16,28],[-11,29],[-21,-5],[-17,-2],[-15,17],[-16,2],[-12,-18],[-11,29],[-3,47],[-13,16],[-15,31],[-3,38],[5,35],[1,43],[-32,14],[-14,2],[-17,3],[-15,3],[-23,-4],[-15,4],[-16,8],[-45,-12],[-24,-6],[-62,-16],[-14,-62],[-19,-2],[-16,-28],[-16,13],[-9,28],[3,41],[4,53],[-18,-5],[-34,32],[2,267],[17,-13],[16,-30],[19,12],[18,2],[-2,56],[-14,6],[-17,-3],[-13,8],[-15,19],[-9,30],[-7,35],[-13,20],[-17,23],[-18,30],[-19,22],[-15,21],[-9,34],[-11,24],[-13,18],[-16,29],[-6,41]],[[79874,51485],[14,41],[14,23],[12,18],[-8,30],[-12,19],[-23,51],[-9,32],[-12,21],[-14,-2],[-14,3],[-17,5],[-14,-5],[-13,-3],[-19,16],[-22,20],[-12,20],[14,27],[13,2],[13,39],[6,37],[0,46],[17,23],[25,16],[14,27],[3,45],[2,45],[5,71],[3,49],[4,64],[5,79],[11,177],[3,60],[18,52],[118,338],[3,9],[36,102],[55,157],[14,40],[13,39],[41,116],[71,203],[62,177],[14,42],[59,168],[10,30],[41,118],[21,60],[25,71],[29,84],[18,50],[32,92],[5,96],[2,66],[2,52],[8,204],[7,155],[2,74],[20,488],[12,313],[16,397],[7,187],[5,146],[7,164],[2,55],[29,708],[11,282],[3,74]],[[73680,54093],[-18,21],[-15,-13],[-12,-40],[-14,-14],[-16,-12],[-14,19],[-14,16],[-11,-29],[-16,2],[-14,-2],[-1,-2],[0,-3],[-3,-3],[-25,-32],[-3,-5],[-1,-2],[0,-1],[-1,-5],[0,-18],[2,-14],[11,-24],[15,-18],[18,-40],[4,-20],[1,-13],[0,-4],[-2,-17],[-26,-7],[-12,-3],[-16,5],[-29,9],[-5,2],[-9,-15],[-11,-10],[-1,0],[-6,-17],[-2,-3],[-5,-15],[-5,-26],[-33,-74],[-5,-9],[-37,-104],[0,-1],[-14,-76],[30,-40],[6,-6],[-2,-7],[-13,-47],[-17,-173],[5,-135],[0,-4],[0,-7],[2,-12],[6,-8],[3,0],[9,6],[11,16],[6,6],[25,3],[4,1],[8,-5],[2,-4],[1,-1],[0,-18],[-1,-6],[-4,-30],[-8,-66],[-2,-6],[-1,-3],[-3,-13],[-9,-11],[-4,-2],[-12,18],[-6,5],[-3,3],[-2,-4],[-7,-38],[-7,-36],[-13,-67],[-60,-246],[-22,-84],[0,-9],[10,-28],[14,-52],[5,-19],[2,-22],[0,-40],[-1,-2],[-27,-65],[-4,-12],[0,-10],[2,-10],[11,-22],[4,-7],[9,-27],[0,-14],[0,-4],[-1,-4],[-11,-42],[-10,-36],[-16,-24],[-6,-4],[-1,-6],[0,-1],[-13,-78],[-2,-14],[-1,-85],[0,-2],[-23,-81],[0,-2],[-40,-154],[-5,-46],[0,-78],[-4,-33],[-8,-19],[-1,-2],[-10,-7],[-86,-38],[-14,17],[-6,13],[-10,28],[-9,43],[-7,84],[-9,189],[0,8],[-3,10],[-10,35],[-1,5],[-1,1],[-19,23],[-7,8],[-12,6],[-17,-11],[-1,0],[-23,-15],[-6,-4],[-6,0],[-3,0],[-5,-6],[0,-16],[3,-64],[4,-35],[5,-27],[7,-19],[9,-17],[2,-4],[10,-24],[3,-17],[0,-1],[6,-48],[4,-82],[5,-44],[2,-17],[13,-37],[17,-37],[4,-8],[1,-4],[7,-8],[9,-10],[3,-4],[9,-7],[8,1],[3,3],[15,12],[16,3],[21,-5],[13,-8],[2,-2],[16,-16],[13,-14],[5,-10],[9,-24],[5,-16],[1,-4],[1,-19],[-5,2],[-35,8],[-22,5],[-1,0],[-6,1],[-3,-5],[0,-34],[6,-73],[6,-13],[7,-14],[2,-2],[8,-8],[3,-8],[10,-29],[5,-16],[72,-251],[1,-9],[7,-20],[8,-25],[2,-9],[4,-29],[12,-43],[3,-10]],[[73210,50579],[-13,-67],[-10,-41],[-14,-44],[-16,-7],[-22,0],[-12,4],[-7,2],[-15,1],[-38,-6],[-27,-9],[-16,-13],[-5,-5],[-2,3],[-10,10],[-9,12],[-5,7],[-9,19],[-9,26],[-1,5],[-1,4],[-3,9],[0,29],[0,3],[0,34],[1,21],[2,8],[6,15],[20,35],[3,5],[10,17],[25,25],[7,-1],[6,0],[13,-1],[2,5],[3,9],[1,5],[-2,21],[-5,12],[-3,6],[-14,32],[-6,8],[-3,0],[-1,0],[-2,0],[-7,-5],[-43,-38],[-5,-7],[-28,-59],[-5,-22],[-12,-26],[-18,-34],[-26,-32],[-1,0],[-118,-112],[-19,-7],[-18,-5],[-7,0],[-7,5],[-1,1],[0,7],[0,6],[-36,256],[-11,29],[-6,6],[-9,-5],[-7,-8],[-8,-21],[-7,-34],[-3,-18],[-11,-50],[-23,34],[-8,16],[-36,145],[-3,7],[-6,18],[-5,87],[0,2],[-3,10],[-3,12],[-2,3],[-4,8],[-3,4],[-1,2],[-5,1],[-43,3],[8,-14],[0,-82],[0,-42],[1,-125],[13,-24],[1,-1],[-1,-10],[-6,-72],[-7,-73],[-4,-28],[-10,-40],[-10,-28],[-9,-13],[-16,-13],[-18,-6],[-5,-6],[-36,-40],[-4,-46],[1,-38],[-1,-11],[-1,-19],[-1,-9],[-3,-25],[-1,-8],[-4,-117],[-4,-16],[-11,-31],[-19,-25],[-10,-12],[-6,0],[-23,2],[-9,9],[-28,45],[-1,2],[-4,6],[-5,10],[-6,26],[-7,90],[-10,249],[0,43],[5,57],[-2,103],[-4,21],[-3,15],[-15,76],[-8,46],[-6,51],[-1,17],[12,100],[3,18],[7,33],[1,4],[3,14],[2,5],[14,37],[0,16],[0,1],[0,3],[-6,19],[-30,43],[-4,5],[-3,4]],[[72180,51152],[-7,12],[-71,121],[-16,21],[-18,16],[-17,4],[-15,3],[-17,-2],[-19,-7],[-16,-9],[-20,-12],[-24,-23],[-38,-47],[-11,-24],[-10,-25],[-10,-25],[-1,-3],[-7,29],[-31,-91],[-12,-31],[-9,-8],[-24,1],[-4,3],[-26,14],[-31,48],[-4,7],[-22,62],[-9,43],[-5,27],[-33,142],[-20,66],[-51,142],[-26,68],[-20,37],[-36,10],[-115,-9],[-26,-8],[-5,-9],[-6,7],[-58,-19],[-16,-11],[-11,-7],[-21,-15],[-3,-4],[-96,-136],[-26,-25],[-13,-13],[-2,-1],[-39,7],[-13,2],[-4,12],[-19,56],[-4,11],[-19,112],[0,51],[0,44],[0,64],[0,4],[0,3],[-7,52],[-6,40],[-20,57],[-1,5],[-9,13],[-12,13],[-93,103],[-18,15],[-13,2],[-18,4],[-27,5],[-2,-1],[-58,-49],[-25,-30],[-19,-23],[-27,-39],[-112,-199],[-2,-3],[-2,-1],[-88,-28],[-3,-1],[-16,4],[-7,2],[-38,11],[-15,14],[-24,27],[-13,23],[-3,7],[-4,13],[-15,53],[-15,88],[-9,56],[-1,24],[0,2],[0,10],[-23,109],[-42,129],[-3,10],[-3,6],[-19,31],[-7,12],[-9,5],[-66,42],[-10,6],[-3,-9],[-5,-18],[-4,-11],[-7,-16],[-6,-11],[-6,-9],[-8,-7],[-19,-11],[-20,-10],[-21,-13],[-26,-21],[-8,-10],[-15,-23],[-10,-19],[-7,-18],[-19,-53],[-22,-66],[-6,-19],[-4,-8],[-4,-7],[-3,-6],[-16,-19],[-7,-6],[-12,-5],[-3,-1],[-6,-2],[-1,0],[-40,-28],[-2,-1],[-14,13],[-14,-4],[-8,84],[-1,15],[-9,99],[-2,18],[1,12],[6,59],[1,10],[1,3],[29,96],[5,34],[13,235],[1,14],[0,6],[-1,5],[-7,69],[-1,11],[-18,91],[-35,111],[-10,25],[-18,45],[-10,43],[-10,44],[-11,49],[-9,42],[18,133],[-1,52],[-10,49],[-31,29],[-7,-7],[-5,-3],[-29,-8],[-5,0],[-6,3],[-9,7],[-1,1],[-71,-75],[-14,-18],[-24,-29],[-6,-7],[-4,-7],[-38,-69],[-31,-56],[-32,-54],[-29,-47],[-9,-12],[-23,-30],[-25,-13],[-46,2],[-19,-9],[-20,-10],[-1,0],[-1,-1],[-11,-10],[-57,-51],[-35,-47],[-16,-16],[-20,-20],[-5,-4],[-134,-105],[-63,-74],[-25,-44],[-6,-19],[-1,-1],[-3,-7],[-16,-56]],[[79874,51485],[-15,-35],[-14,-32],[-3,-41],[-10,-26],[-12,-21],[-9,-28],[-14,-9],[-15,4],[-12,-19],[-13,-12],[-16,-8],[-18,-16],[-14,-20],[-13,-14],[-16,-14],[-14,-5],[-25,-22],[-18,-22],[-16,-13],[-13,-10],[-10,-29],[-6,-43],[-7,-48],[-2,-44],[-14,-28],[-8,-35],[-4,-41],[-9,-38],[-9,-30],[-2,-37],[-12,-19],[-13,-27],[-9,-39],[-5,-38],[-15,-34],[0,-40],[0,-44],[-1,-39],[-1,-44],[13,-12],[7,-34],[6,-42],[-13,-13],[-13,6],[-20,-9],[-14,-16],[-15,-7],[-7,-32],[-11,-21],[-13,-15],[-7,-38],[-14,-12],[-18,-11],[-7,-34],[-14,-4],[-12,19],[-13,12],[-13,1],[-5,-36],[-16,-12],[-13,-15],[-14,3],[-13,-7],[-15,9],[-16,-17],[-8,-29],[-11,-27],[-15,-12],[-12,-23],[-18,-21],[-17,-3],[-16,7],[-14,-5],[-12,-19],[-5,9],[-10,1],[-13,-14],[-15,-15],[-3,2],[-43,44],[3,23],[3,29],[1,11],[1,6],[3,31],[-2,15],[-3,4],[-3,3],[-8,3],[-3,0],[-12,0],[-8,-5],[-2,-4],[-2,-4],[-2,-5],[-14,-35],[-19,-46],[-10,-36],[-28,-26],[-36,-25],[-1,-1],[-32,5],[-1,1],[-72,-1],[-8,7],[0,1],[-9,22],[0,11],[1,4],[3,14],[10,29],[2,21],[-4,47],[-2,7],[-2,4],[0,1],[-5,4],[-25,17],[-4,2],[-4,1],[-4,1],[-6,-8],[-2,-8],[-2,-5],[0,-5],[-3,-76],[-1,-19],[1,-57],[-8,-33],[-2,-8],[-26,-31],[-10,-11],[-3,-4],[-18,13],[-41,30],[-21,25],[-4,7],[-18,56],[-4,20],[0,5],[0,54],[0,1],[4,67],[-5,29],[-18,103],[-4,18],[-2,3],[-5,11],[-8,1],[-10,-5],[-26,-26],[-24,-20],[-28,-23],[-3,2],[-3,2],[-2,1],[-4,10],[-1,8],[0,4],[0,10],[0,1],[2,4],[6,12],[0,4],[-13,112],[-38,41],[-70,60],[-8,-3],[-24,-18],[-9,-12],[-6,-13],[-5,-22],[0,-3],[-10,-94],[-4,-37],[-31,-195],[-4,-24],[-23,-39],[-23,-17],[-10,42],[-5,41],[-18,17]],[[78087,50117],[-14,0],[-5,4],[-88,17],[-25,-20],[-8,1],[-20,15],[-7,11],[-25,128],[-17,82],[-1,5],[-1,0],[-3,0],[-2,1],[-1,0],[-22,11],[-1,0],[-2,2],[-3,2],[-2,2],[-21,25],[-6,2],[-73,-52],[-40,59],[-5,7],[-26,44],[-6,15],[-2,13],[1,14],[12,47],[9,24],[1,2],[2,7],[2,12],[1,12],[0,3],[1,24],[-1,3],[-3,39],[-8,30],[-13,30],[-7,6],[-9,23],[-3,6],[-6,14],[-1,27],[-2,40],[0,1],[0,1],[-2,8],[-9,17],[-9,-1],[-2,2],[-16,-27],[-15,-40],[-25,-42],[-13,-13],[-16,-1],[-16,21],[-7,48],[13,16],[12,17],[17,20],[16,26],[9,46],[9,28],[15,14],[9,30],[10,43],[-2,37],[-6,34],[-14,-9],[-15,6],[-14,-2],[-21,2],[-18,2],[-12,32],[-30,97],[-8,20],[-3,8],[-150,234],[-44,69],[-33,50],[-86,135],[-60,94],[-24,36],[-12,19],[-38,59],[-192,298],[-125,196],[-169,264],[-20,28],[-12,21],[-11,26],[-15,30],[-13,34],[-18,18],[-13,29],[-10,37],[-11,28],[7,39],[-4,39],[-16,33],[7,40],[3,41],[22,54],[2,39],[-2,62],[2,37],[11,40],[-6,43],[-13,27],[-11,34],[-14,-1],[-21,4],[-14,32],[-13,20],[-13,11],[-14,-13],[-14,-7],[-14,12],[-13,26],[-14,14]],[[44944,49117],[-48,-232],[-14,-66],[-10,-51],[-65,-312],[-33,-157],[-161,-774],[-13,-51],[-2,-14],[-4,-23],[-21,-115],[0,-2],[-9,-36],[-2,-10],[-13,-53],[-16,-81],[-59,-282],[-9,-45],[-34,-166],[-30,-142],[-9,-45],[-28,-134],[-9,-45],[-10,-46],[-8,-39],[-10,-53],[-31,-150],[-31,-150],[-48,-237],[-1,-1],[-80,-390],[-14,-67],[-14,-66],[-7,-36],[-49,-235],[-32,-157],[-32,-151],[-20,-96],[-44,-210],[-14,-78],[-9,-33],[-64,-310],[-107,-516],[-53,-255],[-7,-38],[-21,-90],[-68,-320],[-10,-50],[-11,-44],[-13,-56],[-13,-60],[-17,-74],[-8,-37],[-9,-37],[-3,-16],[-30,-136],[-34,-152],[-8,-39],[-14,-64],[-20,-87],[-2,-9],[-15,-64],[-6,-27],[-1,-7],[-15,-66],[-16,-74],[-20,-89]],[[43316,41369],[-11,19],[-23,37],[-11,8],[-6,0],[-7,-7],[-12,-20],[-8,-25],[-28,-79],[-15,-13],[-39,-107],[-2,-46],[-10,-13],[-14,-2],[-26,12],[-17,44],[0,4],[-12,70],[-10,28],[-20,9],[-7,-13],[-7,-34],[-11,-130],[-3,-30],[-12,-27],[-10,-8],[-26,11],[-15,43],[-1,3],[-6,20],[-4,26],[2,30],[21,39],[28,51],[19,67],[0,56],[-10,23],[-3,0],[-15,4],[-53,-69],[-20,-36],[-2,-56],[7,-37],[2,-61],[-4,-86],[-45,-248],[-13,-23],[-11,3],[-75,83],[-11,28],[2,25],[32,64],[19,61],[1,17],[3,23],[-6,17],[-16,3],[-6,-7],[-13,-14],[-64,-112],[-29,-32],[-31,-47],[-32,-47],[-9,57],[23,98],[9,40],[22,94],[-4,39],[-22,128],[-28,-63],[-4,-10],[-24,-56],[-21,0],[-8,0],[-54,5],[-1,0],[-29,17],[-21,30],[-8,22],[0,3],[1,22],[23,51],[1,22],[1,23],[-6,17],[-18,4],[-12,-8],[-13,-32],[-1,-45],[-1,-56],[6,-32],[2,-36],[-1,-81],[-10,-18],[-9,2],[-23,31],[-5,7],[-4,6],[-13,17],[-22,5],[-14,3],[-19,-36],[-2,-28],[0,-17],[9,-241],[13,-104],[1,-82],[-4,-103],[-1,-6],[0,-11],[-7,-45],[22,-208],[13,-33],[1,-1],[12,-7],[10,-23],[1,-2],[11,-31],[3,-36],[-14,-17],[-19,4],[-22,5],[-6,12],[-13,13],[-20,4],[-61,4],[-29,-8],[-1,0],[-32,-8],[-6,1],[-4,1],[-28,6],[-12,34],[1,25],[16,35],[-18,77],[-46,115],[-25,-49],[-23,-45],[-31,-92],[-1,-2],[-1,-35],[10,-28],[29,-28],[19,-18],[13,-8],[16,-34],[0,-1],[2,-10],[0,-4],[-3,-26],[-1,-5],[-17,-26],[-9,-3],[-25,5],[-7,8],[-23,23],[-2,2],[-36,64],[-3,8],[-33,92],[-23,45],[-15,19],[-23,16],[-10,7],[-14,33],[1,26],[12,22],[6,10],[2,4],[14,7],[39,21],[15,32],[2,35],[-4,22],[-12,33],[-19,29],[-26,27],[-43,4],[-10,-23],[-1,-55],[-1,-51],[-6,-29],[-11,-22],[-9,-19],[-12,-2],[-14,-23],[-35,-21],[-61,-38],[-80,-17],[-27,6],[0,1],[-8,21],[-3,26],[4,100],[11,59],[9,52],[1,6],[1,6],[5,69],[-1,16],[-13,33],[-22,0],[-21,-39],[-51,-97],[-14,3],[-10,28],[0,86],[0,2],[-11,67],[-13,36],[-3,8],[-35,33],[-24,11],[-15,-27],[-16,-47],[-4,-16],[-12,-47],[-41,-56],[-27,6],[-21,45],[0,4],[-3,22],[4,80],[32,69],[2,40],[1,21],[-7,6],[-22,15],[-35,-32],[-20,-42],[-14,-62],[-9,-90],[-3,-10],[-7,-19],[-5,-18],[-35,-53],[-24,0],[-17,40],[-1,15],[6,237],[3,18],[17,108],[8,46],[2,50],[-10,33],[-27,6],[-29,-49],[-10,-30],[-1,-4],[0,-9],[-6,-91],[-3,-21],[-7,-47],[-23,-41],[-2,-2],[-35,-30],[-39,-12],[-67,21],[-17,39],[0,50],[1,3],[5,27],[30,49],[56,-8],[21,16],[17,31],[1,5],[3,9],[4,15],[2,62],[1,44],[-16,44],[-16,6],[-4,24],[-27,-7],[-224,-52],[-6,133],[-1,20],[13,-6],[12,-9],[3,-3],[14,-5],[19,11],[21,34],[8,31],[2,102],[-4,53],[-51,150],[-75,-2],[-14,-37],[-16,-34],[-2,-1],[-11,-7],[-16,29],[0,54],[7,42],[15,34],[17,33],[2,7],[10,37],[-4,55],[-5,40],[-15,10],[-12,-1],[-12,-1],[-21,2],[-4,1],[-8,1],[-23,-1],[-14,-28],[-26,-78],[-6,-16],[-8,-25],[-35,-76],[-41,-75],[-15,-30],[-17,-34],[-14,-21],[-20,-2],[-15,21],[-9,41],[-6,35],[1,50],[17,42],[13,45],[15,19],[2,3],[32,23],[14,25],[10,17],[21,87],[-5,110],[-10,63],[-24,81],[-10,47],[-14,26],[-3,7],[-47,68],[-14,10],[-18,6],[-39,2],[-17,-4],[-11,-12],[-10,-20],[-15,-27],[-35,-64],[-8,-18],[-22,-62],[-8,-18],[-17,-26],[-19,-14],[-10,-5],[-14,-7],[-7,-4],[-3,0],[-12,-3],[-23,-5],[-14,-1],[-60,11],[-17,-8],[-6,-6],[-10,-22],[-5,-18],[-2,-6],[-5,-23],[-2,-38],[1,-19],[0,-5],[-1,-72],[-5,-68],[-4,-26],[-5,-24],[-1,-5],[-34,-168],[-8,-49],[-3,-31],[-1,-17],[6,8],[29,39],[3,5],[16,21],[22,25],[20,16],[30,7],[57,-3],[28,-15],[17,-16],[8,-19],[5,-37],[0,-1],[0,-38],[-3,-18],[-25,-70],[-125,-270],[-15,-25],[-28,-27],[-17,-10],[-108,-10],[-40,-2],[-7,7],[-5,8],[-2,11],[0,3],[-11,247],[0,16],[-7,22],[-6,10],[-37,29],[-30,16],[-8,1],[-33,4],[-66,8],[-6,1],[-61,8],[-9,10],[-9,13],[-2,3],[-14,20],[-9,-1],[-16,-60],[-9,-40],[-2,-19],[0,-3],[-1,-31],[2,-19],[1,-9],[2,-24],[10,-84],[10,-80],[2,-13],[31,-125],[10,-62],[17,-51],[16,-32],[3,-13],[2,-8],[1,-19],[-3,-23],[-10,-35],[-11,-28],[-42,-67],[-11,-15],[-5,-7],[-5,-10],[-30,-58],[-17,-45],[-5,-11],[-15,-41],[-2,-5],[-2,-8],[-17,-53],[-11,-29],[-6,-17],[-18,-30],[-4,-7],[-5,-6],[-33,-35],[-2,-3],[-30,-35],[-31,-52]],[[39140,40275],[-13,19],[-14,12],[-7,-37],[-14,17],[-12,20],[-17,9],[-5,35],[4,41],[-13,2],[-6,43],[-14,16],[-17,16],[-5,38],[-10,48],[-10,47],[-12,41],[-10,33],[-9,30],[-9,47],[-13,16],[-11,26],[-12,17],[-11,31],[-15,25],[-8,32],[-12,21],[-15,39],[-15,29],[-19,30],[-14,23],[-10,23],[-9,61],[6,44],[1,41],[-2,46],[3,38],[-16,23],[-15,14],[-7,36],[-9,34],[-9,33],[-12,29],[-8,44],[7,35],[-3,38],[-7,46],[-3,50],[5,37],[2,37],[-1,40],[-13,33],[-10,26],[-15,42],[-7,36],[-9,34],[-15,37],[-11,22],[-21,55],[-8,31],[-6,38],[-13,26],[-14,33],[-13,40],[-10,34],[-12,27],[-12,28],[-16,2],[6,217],[5,355],[2,129],[-1,51],[3,153],[5,263],[4,237],[1,59],[1,40],[1,65],[1,39]],[[38538,43942],[135,-158],[38,-45],[16,-19],[15,-16],[14,-8],[-7,52],[-33,223],[-49,348],[-20,142],[-1,3],[-18,129],[-50,356],[-59,416],[-14,97],[-42,303],[-32,213],[-32,221],[-6,38],[-25,191],[-25,187],[0,4],[-62,441],[-32,210],[-13,90],[-12,82],[-10,75],[-11,75],[-32,228],[-21,142],[-5,36],[-24,156],[-13,88],[-5,36],[-22,150],[-18,132],[-44,319],[5,48],[21,205],[9,98],[24,239],[12,119],[8,80],[16,157],[12,118],[7,64],[6,52],[1,5],[10,68],[3,39],[5,43],[10,104],[18,181],[33,34],[8,10],[39,50],[3,5],[13,17],[21,70],[7,26],[14,44],[1,5],[-11,17]],[[38314,50777],[32,-34],[7,-5],[72,-14],[60,23],[12,6],[49,17],[21,17],[39,34],[1,1],[55,64],[57,76],[48,71],[89,132],[18,21],[34,35],[4,5],[15,22],[48,84],[7,11],[1,3],[8,30],[7,30],[1,1],[7,33],[2,10],[40,148],[26,116],[4,26],[1,8],[2,24],[2,30],[0,9],[-1,31],[-9,57],[-10,46],[-7,33],[5,79],[2,44],[2,26],[2,24],[3,50],[1,91],[1,80],[-3,98],[-3,60],[-3,50],[-4,60],[-4,83],[-2,64],[-3,117],[-2,39],[-2,45],[-1,56],[0,67],[4,67],[4,44],[7,35],[4,46],[4,39],[5,32],[13,47],[13,49],[21,67],[37,92],[12,31],[17,41],[8,20],[32,37],[16,11],[30,11],[1,0],[21,1],[5,1],[23,-1],[13,1],[18,-3],[22,-8],[20,-10],[22,-3],[7,0],[25,8],[9,1],[21,1],[17,-4],[21,-12],[28,-17],[22,-16],[23,-18],[32,-21],[14,-5],[5,-2],[17,-7],[15,-13],[9,-9],[24,-22],[13,-13],[24,-11],[14,-6],[26,-10],[20,-7],[34,-8],[18,-1],[24,3],[18,4],[10,0],[19,8],[26,19],[15,11],[24,22],[14,16],[7,7],[15,18],[26,28],[9,12],[20,24],[19,21],[41,52],[18,26],[13,19],[22,26],[14,21],[13,22],[26,60],[12,34],[16,71],[-4,58],[-3,23],[1,55],[0,20],[-4,85],[-6,52],[-11,79],[-10,72],[-9,46],[-11,41],[-5,19],[-19,68],[-14,35],[-20,47],[-12,19],[-19,47],[-19,51],[-17,72],[-7,41],[-8,45],[-6,39],[-3,24],[-2,9],[-11,91],[-11,84],[-3,38],[-6,71],[0,1],[-4,68],[0,1],[0,47],[-1,78],[2,49],[0,63],[1,92],[0,52],[-1,39],[1,87],[-4,69],[-1,34],[2,44],[0,2],[0,1],[5,39],[0,11],[-4,57],[-3,38],[-4,53],[-1,43],[-1,40],[0,61],[0,50],[-1,76],[2,90],[0,271],[13,214],[4,215],[-2,92],[-1,15],[-3,82],[-2,78],[0,56],[1,32],[3,41],[4,50],[20,154],[6,60],[5,41],[6,56],[10,38],[6,19],[6,21],[34,72],[29,35],[31,24],[13,9],[88,28],[66,22],[17,1],[15,1],[83,-1],[6,0]],[[50390,49581],[-6,-24],[-41,-165],[-5,-17],[-3,-15],[0,-1],[-6,-86],[-1,-4],[3,-45],[5,-28],[7,-22],[28,-88],[3,-19],[0,-8],[0,-27],[-2,-23],[-5,-20],[-38,-90],[-2,-4],[0,-2],[-4,-17],[-1,-20],[0,-3],[-1,-16],[7,-22],[1,-4],[7,-26],[14,-29],[2,-3],[10,-13],[4,-4],[14,-18],[17,-7],[15,-6],[15,3],[15,11],[16,15],[14,4],[1,0],[6,2],[7,-3],[2,-1],[4,-3],[17,-11],[9,-12],[2,-2],[6,-16],[4,-10],[2,-20],[0,-34],[0,-1],[-5,-37],[-18,-40],[-13,-18],[-7,-7],[-2,-2],[-12,0],[-4,2],[-13,8],[-19,16],[-10,9],[-8,-4],[-6,-13],[-5,-23],[0,-3],[-3,-16],[-1,-8],[-2,-30],[-1,-10],[2,-19],[5,-25],[10,-48],[10,-26],[27,-57],[15,-24],[17,-29],[22,-31],[14,-12],[10,-4],[3,-1],[2,1],[17,3],[21,25],[27,32],[13,8],[19,7],[10,-8],[7,-4],[16,-16],[5,-6],[16,-17],[10,-23],[2,-6],[10,-25],[4,-26],[0,-25],[-1,-20],[-2,-10],[-8,-13],[-13,-8],[-10,-6],[-7,-13],[-3,-11],[-3,-8],[-3,-11],[-1,-19],[0,-2],[3,-20],[4,-15],[3,-8],[6,-8],[39,-45],[66,94],[18,22],[26,-78],[27,-78],[25,-83],[2,-15],[9,-154],[1,-4],[9,7],[5,9],[0,1],[2,83],[4,17],[11,23],[8,2],[7,-8],[6,-15],[8,-119],[0,-5],[3,-73],[3,-14],[5,-9],[1,-2],[4,-6],[6,-2],[37,10],[11,6],[16,23],[9,24],[12,52],[2,9],[5,13],[5,6],[8,0],[1,-1],[9,-10],[5,-4],[13,-25],[2,-16],[-1,-2],[-25,-27],[-4,-5],[-15,-18],[-14,-32],[-7,-15],[0,-9],[0,-3],[0,-7],[2,-14],[6,-7],[29,-20],[3,-15],[17,-115],[2,-18],[-3,-34],[-18,-5],[-15,-26],[-9,-44],[7,-29],[2,-8],[20,6],[7,-45],[-3,-47],[5,-76],[1,-10],[6,-16],[6,-11],[8,-6],[2,0],[24,3],[0,-7],[1,-1],[0,-5],[1,-3],[0,-3],[1,-6],[2,-6],[0,-2],[-1,-6],[-3,-21],[-16,-55],[-2,-2],[-6,-12],[-9,-2],[-3,2],[-7,5],[-7,4],[-1,0],[-9,1],[-6,-6],[-27,-60],[-7,-17],[-1,-4],[-4,-17],[-1,-21],[0,-4],[0,-1],[2,-12],[6,-10],[13,-17],[7,-2],[2,0],[11,-4],[14,7],[3,3],[5,7],[9,14],[7,12],[2,4],[30,90],[5,11],[4,5],[5,7],[2,4],[6,5],[1,-4],[4,-16],[1,-4],[1,-5],[2,-5],[1,-4],[2,-5],[2,-3],[2,-4],[2,-3],[2,-3],[2,-2],[0,-19],[-1,-34],[-1,-10],[-5,-13],[-2,-3],[-1,-1],[-14,-2],[-5,0],[-8,-1],[-7,-11],[-3,-4],[-1,-2],[-7,-15],[-1,-7]],[[51139,46598],[-25,-103],[-13,-53],[-13,-51],[-10,-39],[-60,-242],[-22,-83],[-45,-182],[-37,-144],[-25,-101],[-31,-130],[-9,-34],[-8,-34],[-27,-103],[-27,-103],[-127,-513],[-16,-62],[-52,-196],[-65,-251],[-4,-14],[-13,-64],[-62,-272],[-7,-30],[-5,-1],[-6,-32],[-46,-171],[-5,-18],[-9,-36],[-15,-26],[-38,-46],[-3,-2],[-50,-18],[-17,-7],[-22,-8],[-32,-6],[-4,-1],[-45,-6],[-15,-2],[-2,-1],[-40,-18],[-43,-36],[-20,-35],[-40,-38],[0,-4],[0,-28],[-2,-9],[-1,-10],[-52,-119],[-14,-10],[-27,-6],[-1,-15],[-6,-138],[0,-3],[12,-55],[4,-35],[7,-48],[-5,-11],[-6,-12],[-13,-10],[-17,-13],[-37,-28],[-20,-9],[-29,-11],[-9,-4],[-20,-3],[-7,-8],[-17,-23],[-23,-31],[-14,-13],[-9,-2],[-11,-3],[-6,-2],[-3,2],[-8,5],[-7,12],[-1,1],[-8,-6],[-29,-34],[-45,-76],[-21,-36],[-20,-63],[0,-17],[4,-38],[17,-116],[6,-36],[11,-51],[3,-15],[52,-85],[-11,-99],[-1,-6],[-6,-57],[-4,-35],[-8,12],[-1,1],[-19,-31],[-2,-2],[-12,-20],[-8,-7],[-1,6],[0,-23],[0,-2],[-3,-27],[0,-1],[-11,-42],[-4,-8],[-17,-30],[-3,-5],[-8,-7],[-13,-13],[-5,2],[-2,1],[2,-28],[1,-19],[0,-9],[-12,-157],[-5,-26],[-17,-53],[-40,-126],[-2,-2],[-16,-26],[-6,-5],[-9,22],[-3,-43],[-4,-17],[-4,-18],[-18,-69],[-2,-7],[-16,-35],[-7,-24],[-2,-11],[-1,-81],[-1,-2],[0,-2],[0,-52],[-14,-67],[-13,-42],[-9,-25],[-7,-100],[-16,-35],[-3,-1],[-5,-3],[-6,-2],[-10,-7],[-5,-3],[-21,-24],[-7,-15],[-8,-22],[-39,-47],[-7,-8],[-45,-48],[-5,-5],[-6,-7],[-2,0],[-1,0],[-6,1],[-16,5],[-2,-2],[0,-1],[-57,-104],[-54,-100],[-26,-49],[-22,-38],[-13,-28],[-90,-166],[-76,-142],[-57,-104],[-70,-129],[-9,-30],[-12,-37],[-4,-36],[-6,-95],[-3,-56],[-4,-56],[-8,-136],[-2,-38],[-4,-55],[-3,-49],[-6,-100],[-5,-80],[-3,-47],[-3,-42],[-3,-56],[-4,-66],[-1,-14],[-2,-43],[-4,-53],[-4,-73],[-3,-48],[-11,-176],[-3,-43],[-5,-92],[-6,-80],[-3,-52],[-2,-30],[-1,-17],[-5,-72],[-3,-49],[0,-2],[-3,-50],[-2,-40],[-5,-73],[-3,-45],[-2,-44],[-6,-85],[-3,-38],[-2,-38],[-1,-24],[-2,-30],[-3,-39],[-6,-65],[-4,-40],[-7,-40],[-12,-63],[0,-39],[1,-47],[3,-54],[-7,-68],[-17,-30],[-18,9],[-23,-3],[-9,-2],[-5,0],[-4,-38],[0,-40],[1,-62],[1,-10],[2,-27],[5,-40],[5,-42],[2,-45],[-2,-40],[0,-42],[-1,-30],[0,-12],[0,-38],[1,-42],[11,-88],[10,-77],[4,-42],[2,-41],[1,-54],[-1,-85],[-4,-68],[-2,-47],[-4,-78],[-2,-42],[-2,-39],[-2,-43]],[[48346,35586],[-12,-3],[-3,-1],[-14,3],[-249,52],[-137,35],[-72,11],[-27,4],[-365,59],[-50,8],[-136,24],[-218,36],[-22,3],[-100,23],[-32,4],[-144,26],[-83,14],[-140,25],[-37,6],[-153,27],[-38,0]],[[46314,35942],[-8,22],[-15,104],[-5,11],[-9,4],[-8,-13],[-6,-18],[-23,-101],[-8,-15],[-20,-32],[-5,-6],[-4,-4],[-11,0],[-38,58],[-2,6],[0,2],[-1,3],[-3,14],[1,10],[1,7],[3,12],[21,35],[2,5],[11,23],[8,19],[4,10],[7,29],[-2,45],[-1,4],[-2,5],[-3,11],[-9,9],[-2,0],[-8,-2],[-10,-11],[-45,-11],[-1,1],[-53,39],[-12,9],[-6,5],[2,16],[9,64],[3,27],[38,288],[19,133],[3,11],[10,23],[4,3],[10,7],[1,1],[62,24],[4,2],[43,88],[2,6],[19,63],[2,6],[-21,182],[-3,11],[-3,13],[-4,13],[-8,21],[-17,20],[-1,1],[-16,26],[-44,85],[-35,82],[-5,21],[1,19],[0,1],[11,50],[1,6],[1,0],[0,1],[7,12],[6,-1],[1,-2],[3,-3],[17,-33],[3,-6],[4,-6],[1,-1],[8,-1],[5,7],[2,6],[2,6],[1,2],[21,87],[2,15],[3,18],[1,14],[1,18],[-2,7],[-2,2],[0,3],[-8,9],[-49,23],[-2,1],[-8,6],[-13,30],[-2,14],[1,17],[0,1],[1,7],[1,4],[4,7],[4,4],[17,19],[3,3],[14,3],[16,4],[-5,18],[-2,3],[-5,9],[-60,56],[-11,7],[-7,11],[-3,13],[-6,83],[-12,101],[-2,23],[-17,43],[-12,37],[-28,89],[-47,154],[-11,35],[-71,231],[-24,77],[-26,83],[-45,148],[-32,106],[-50,167],[-19,63],[-16,51],[-27,88],[-18,58],[-37,121],[-18,63],[-1,3],[-25,86],[-22,78],[-20,72],[-20,79],[-21,80],[-1,4],[-7,27],[-11,44],[-4,15],[-6,22],[-5,39],[-2,7],[-6,21],[-31,-36],[-46,-53],[-2,-3],[-8,24],[-4,7],[-8,13],[0,1],[-23,36],[0,1],[-9,10],[-10,11],[-4,2],[-30,12],[-3,2],[-1,0],[-55,-19],[-76,-110],[-49,-70],[0,-1],[-2,-7],[-2,-7],[-15,-46],[-12,-36],[-4,-6],[-5,-3],[-3,0],[-25,5],[-15,11],[-14,16],[-10,28],[-5,7],[-2,2],[-44,37],[-38,29],[-44,18],[-3,-19],[-2,-3],[-9,-15],[-7,0],[-9,25],[-2,5],[-43,120],[-4,16],[-2,19],[-6,51],[0,18],[2,21],[5,16],[1,19],[-6,28],[-6,10],[-2,0],[-3,0],[-3,-4],[-6,-14],[-77,-198],[-1,-5],[0,-2],[-15,-118],[0,-2],[-1,-21],[1,-50],[0,-57],[8,-84],[0,-36],[-3,-19],[-2,-5],[-3,-4],[-21,-14],[-6,-4],[-1,-1],[-8,1],[-6,6],[-28,108],[2,7],[14,90],[6,15],[1,21],[0,25],[-3,17],[-6,17],[-8,8],[-16,-1],[-2,-1],[-17,-9],[-5,-10],[-3,-13],[0,-51],[0,-1],[0,-6],[-5,-30],[0,-2],[-3,-9],[-2,-4],[-5,-8],[-5,-3],[-11,0],[-9,5],[-9,12],[-12,33],[-8,30],[-6,21],[-5,25],[-3,63],[-1,3],[-5,19],[-1,4],[-7,11],[-2,3],[-16,4],[-23,-1],[-9,2],[-14,3],[-11,3],[-2,0],[-5,6],[-3,7],[-20,57],[-33,147],[-1,7],[-13,81],[15,42],[9,23],[-13,-14],[-11,-13],[-13,-15],[-22,-41],[-4,-7],[-4,-5],[-9,-11],[-21,-26],[-13,-15],[-2,0],[-3,1],[-2,3],[-1,1],[1,19],[6,48],[2,11],[0,8],[-1,35],[-3,59],[-3,29],[0,8],[-9,21],[-8,14],[-17,11],[-10,-2],[-2,-5],[-9,-17],[-4,-19],[-3,-21],[-6,-19],[-5,-6],[-9,-7],[-24,-2],[-4,-1],[-16,-2],[-8,-1],[-32,17],[-4,4],[-5,8],[-2,10],[2,45],[7,38],[15,39],[1,3],[-1,12],[-5,9],[-1,1],[-9,6],[-11,8],[-23,15],[-13,-6],[-28,-36],[-2,-11],[-14,-93],[-1,-6],[-4,-11],[-1,-5],[-4,-8],[-5,-10],[-3,-6],[-26,-43],[-2,-2],[-7,-6],[-5,4],[-5,3],[-9,23],[-41,240],[-11,112],[-1,24],[2,30],[5,37],[-1,51],[-3,18],[-8,31],[-13,31],[-2,6],[-1,1],[-12,20],[-23,22],[-1,5],[-7,81],[-1,8],[16,51],[1,13],[1,23],[-2,14],[-8,22],[-4,8],[-47,102],[-3,-1],[-15,4],[-1,0],[-22,-82],[-6,-48],[-1,-23],[1,-10],[5,-18],[-16,-77],[-1,-2],[-51,-38],[-16,41],[4,38],[-2,30],[-4,7],[-3,0],[-4,-1],[-7,-5],[-15,-14],[-41,-43],[-20,-55],[-1,-2],[-1,-4],[-1,-8],[0,-11],[3,-13],[9,-13],[41,-34],[18,-20],[10,-16],[4,-12],[3,-14],[0,-2],[-1,-12],[0,-11],[-7,-16],[-7,-13],[-10,-19],[-1,-2],[-24,-37],[-3,-3],[-5,-4],[-18,-1],[-12,30],[-19,56],[-3,10],[-6,11],[-7,-4],[-2,-4],[-6,-10],[-6,-10],[-1,-6],[-5,-21],[-7,-73],[-2,-7],[0,-1],[-1,-7],[-4,-15],[-3,-3],[-1,-1],[-2,0],[-4,0],[-90,105],[-13,15],[-8,10],[-1,2],[-4,11],[-1,9],[13,14],[17,18],[8,7],[5,13],[5,19],[-1,32],[-8,49],[-10,32]],[[46953,56695],[5,2],[19,8],[16,16],[13,5],[32,10],[15,8],[21,6],[23,15],[3,2],[21,11],[22,14],[19,8],[20,7],[47,22],[23,8],[38,7],[15,2],[28,5],[48,9],[14,0],[42,9],[45,9],[6,2],[3,1],[70,28],[24,16],[16,19],[14,17]],[[67507,50936],[-14,-34],[-14,-34],[-13,-29],[-22,-46],[-38,-62],[-29,-33],[-36,-21],[-50,-2],[-56,16],[-54,55],[-38,61],[-41,113],[-29,105],[-46,124],[-14,24],[-20,6],[-17,-6],[-35,-67],[-58,-182],[-15,-67],[-2,-22],[-5,-81],[-3,-42],[2,-92],[5,-46],[5,-37],[5,-45],[2,-14],[59,-301],[31,-95],[26,-46],[1,-2],[6,-12],[10,-27],[13,-34],[11,-30],[105,-445],[21,-128],[0,-4],[2,-25],[0,-7],[-3,-71],[-21,-91],[-10,-37],[-7,-23],[-6,-25],[-5,-8],[-21,-41],[-21,-13],[-2,-1],[-38,11],[-2,1],[-18,28],[-1,2],[-2,6],[-24,143],[-16,50],[-4,6],[-32,4],[-33,-22],[-15,-26],[-4,-17],[-2,-7],[-7,-79],[-9,-58],[-1,-6],[-5,-17],[-65,-228],[-8,-24],[-15,-43],[-37,-110],[-8,-14],[-7,-13],[-43,-39],[-61,-29],[-70,-22],[-40,-30],[-58,-60],[-49,-63],[-19,-25],[-5,-15],[-9,-27],[-3,-10],[-5,-59],[7,-58],[1,-6],[-2,-14],[-10,-88],[-20,-57]],[[66327,47997],[-6,6],[-54,51],[-27,17],[-17,-13],[-2,-2],[-14,-11],[-22,-38],[-6,-11],[-28,-84],[-2,-4],[0,-11],[-3,-57],[-1,-7],[5,-88],[0,-3],[7,-35],[2,-117],[-8,-115],[-9,-28],[-6,-10],[-21,-34],[-4,-2],[-12,-8],[-12,-2],[-27,-3],[-36,-26],[-9,-11],[-31,-37],[-23,-27],[-35,-61],[-9,-22],[-13,-34],[-15,-66],[-14,-58],[-20,-157],[1,-26],[-5,-9],[-19,-91],[-37,-107],[-23,-76],[-12,-56],[0,-1],[0,-1],[-28,-53],[-15,-3],[-6,-1],[-3,3],[-42,44],[-24,12],[-32,34],[-60,88],[-12,18],[-13,24],[-19,61],[-25,169],[4,66],[19,84],[13,56],[5,17],[4,20],[11,141],[3,28],[-2,5],[-4,16],[-12,40],[-10,18],[-49,23],[-51,-17],[-33,-27],[-30,-52],[-14,-43],[-13,-72],[-30,-175],[-20,-36],[-18,-5],[-34,60],[-15,14],[-38,10],[-10,11],[-3,3],[-8,13],[-16,45],[2,40],[9,33],[22,40],[29,32],[18,31],[13,22],[51,114],[14,42],[0,11],[0,2],[2,68],[-11,26],[-8,22],[-15,37],[-4,11],[0,2],[-11,57],[-17,61],[-22,61],[-20,43],[-5,6],[-28,33],[-1,1],[-15,18],[-47,62],[0,1],[-1,3],[-61,115],[-21,26],[-23,6],[-24,-24],[-52,-31],[-38,5],[-4,1],[-11,13],[-8,10],[-3,3],[-3,6],[-13,31],[-4,9],[-28,79],[-1,4],[-16,78],[-2,7],[1,16],[1,32],[-2,15],[-1,11],[-8,81],[-8,76],[-1,10],[1,22],[4,97],[0,12],[16,77],[5,11],[21,42],[14,28],[28,38],[55,67],[43,34],[19,10],[50,-8],[30,-39],[30,-64],[44,-68],[33,-34],[36,-9],[28,12],[17,26],[15,59],[2,8],[1,36],[1,15],[0,30],[-8,89],[-15,60],[-27,48],[-77,106],[-22,17],[-51,13],[-35,-6],[-54,10],[-143,43],[-53,42],[-6,5],[-4,8],[-21,44],[-32,34],[-33,0],[-5,0],[-78,1],[-15,-12],[-13,-37],[-1,-22],[-1,-54],[13,-95],[21,-81],[78,-209],[26,-109],[4,-41],[1,-10],[2,-22],[-1,-13],[-1,-10],[-5,-62],[-5,-16],[-38,-110],[-52,-82],[-19,-16],[-56,-20],[-58,15],[-20,16],[-21,26],[-52,95],[-18,51],[-17,70],[-13,77],[-9,56],[-13,175],[-1,28],[-2,64],[-1,53],[3,70],[9,155],[3,51],[5,38],[24,164],[11,77],[6,171],[0,94],[0,28],[-6,63],[-12,59],[-25,53],[-13,18],[-21,16],[-37,5],[-16,-6],[-82,-34],[-44,-44],[0,-1],[-44,-68],[-9,-7],[-5,-2],[-70,-203],[-66,-120],[-45,-49],[-29,-18],[-23,-10]],[[63811,49740],[-36,46],[-7,20],[-13,36],[-25,94],[-3,14],[-2,12],[-12,70],[-4,102],[0,2],[2,53],[3,82],[3,48],[4,77],[7,49],[12,52],[25,85],[12,24],[14,25],[25,74],[13,36],[24,34],[5,-3],[18,-9],[4,-1],[6,0],[9,7],[5,6],[5,12],[6,18],[2,9],[5,19],[98,11],[4,-3],[19,-8],[21,-9],[11,-4],[7,1],[4,2],[15,13],[14,18],[13,20],[15,29],[13,32],[4,11],[4,15],[19,92],[5,34],[2,19],[1,20],[0,2],[-1,52],[-1,18],[-4,53],[-3,18],[-7,48],[-6,24],[-8,24],[-10,26],[-8,15],[-27,37],[-18,21],[-28,22],[-56,-30],[-18,-9],[-18,-10],[-13,12],[-57,49]],[[91481,52148],[-16,-18],[-19,-12],[-17,-27],[-17,-12],[-21,-17],[-8,-40],[-7,-66],[-13,-20],[-19,1],[-18,-2],[-8,57],[-19,-19],[-16,4],[-11,-39],[-2,-39],[-13,-43],[-13,-19],[-24,-32],[-8,-31],[-14,-10],[-22,19],[-6,35],[-14,17],[-14,-12],[-12,16],[-18,-15],[-6,-37],[-13,-35],[-15,-19],[1,-40],[17,-37],[-4,-47],[-1,-48],[-6,-39],[-16,1],[-20,2],[-12,-14],[-26,-101],[-19,-13],[-22,11],[-23,14],[-10,-29],[2,-51],[-22,-4],[-19,8],[-15,17],[-14,-11],[-8,-56],[-7,-45],[-17,-1],[-18,-9],[-7,-46],[-12,-16],[-30,-9],[-16,17],[-13,-19],[-11,-49],[-16,-16],[8,-73],[-2,-61],[8,-43],[10,-41],[3,-9],[18,-50],[18,-23],[15,-38],[10,-31],[-6,-48],[11,-34],[16,-15],[19,21],[16,-2],[15,-22],[1,-38],[1,-38],[14,1],[14,10],[13,-14],[7,-36],[6,-35],[13,-32],[19,-27],[13,6],[20,44],[18,10],[13,-15],[7,-34],[-4,-48],[17,-62],[0,-42],[-13,-18],[-10,-24],[-18,-11],[-11,25],[-20,-16],[-14,-15],[-2,-43],[1,-40],[-7,-34],[10,-31],[19,-17],[20,1],[12,31],[13,10],[18,-18],[12,-18],[-5,-62],[-13,-15],[-15,-40],[-13,-26],[-23,-23],[-15,-20],[-13,-38],[4,-40],[12,-20],[-1,-42],[-30,-31],[-16,-8],[-14,-30],[-9,-42],[9,-39],[13,-22],[2,-56],[-17,-36],[-29,17],[-9,-29],[-11,-35],[-13,21],[-13,16],[-31,-39],[-6,-40],[-4,-55],[5,-44],[8,-44],[5,-101],[-8,-44],[-15,-12],[-11,-27],[-9,-75],[-13,-23],[-21,-30],[-17,-15],[-22,4],[-13,-33],[-9,-50],[-3,-61],[-4,-42],[-2,-81],[40,-18],[12,-30],[22,-10],[15,15],[22,33],[19,2],[13,-72],[7,-36],[-8,-46],[7,-51],[12,-34],[26,11],[13,-12],[13,-18],[14,-40],[26,-5],[22,-20],[5,-47],[2,-9],[6,-26],[-1,-40],[-12,-46],[-27,13],[-17,-18],[-9,-33],[-4,-41],[-6,-69],[-7,-45],[12,-28],[13,-42],[1,-54],[-7,-32],[5,-43],[2,-47],[-8,-80],[-4,-50],[7,-35],[15,-24],[11,-26],[1,-39],[8,-46],[-4,-67],[31,-38],[33,-47],[11,-27],[18,-33],[1,-45],[12,-27],[6,-34],[7,-57],[10,-24],[6,-41],[3,-48],[-7,-54],[7,-62],[-20,-48],[-10,-33],[-5,-40],[11,-35],[24,0],[10,-26],[10,-51],[19,-16],[16,6],[12,-31],[14,-51],[-6,-61],[13,-24],[19,-18],[9,-38],[2,-51],[-12,-28],[-11,-30],[-8,-33],[-25,-34],[-12,-29]],[[91111,46141],[-13,17],[-11,24],[-10,45],[0,39],[-16,30],[-18,-22],[-15,6],[-15,37],[-11,26],[-12,-18],[-13,-16],[-28,62],[-14,4],[-13,-33],[-13,-11],[-13,-8],[-11,46],[-12,30],[-21,-12],[-24,-39],[-13,-6],[-20,17],[-15,33],[-29,2],[-14,5],[-14,-6],[-13,-19],[-10,-28],[-23,-7],[-5,47],[-19,20],[-15,1],[-21,20],[-10,26],[-11,42],[-18,-4],[-14,-18],[-16,-11],[-20,9],[-24,15],[-8,43],[6,37],[15,34],[17,19],[8,32],[-7,47],[-17,15],[-16,11],[-15,7],[-14,-1],[-24,19],[-28,-10],[-18,-1],[-13,65],[-15,-5],[-32,-37],[-13,0],[-15,7],[-6,37],[-12,29],[-16,12],[-17,-1],[-24,13],[-17,5],[-6,37],[-1,55],[-18,48],[-15,10],[-22,38],[-13,10],[-14,-7],[-14,-2],[-14,-25],[-16,-4],[-22,21],[-15,40],[-9,40],[-11,31],[-1,16],[-2,24],[-1,39],[-5,-2],[-15,-4],[-14,-6],[-13,4],[-19,-16],[-15,-30],[-11,-26],[-35,-21],[-22,-20],[-22,-19],[-11,-12],[-2,-1],[-15,-35],[-13,-9],[-3,46],[13,40],[4,40],[-22,23],[-24,4],[-14,-1],[-17,-6],[-16,1],[-13,11],[-16,21],[-15,31],[-9,29],[-10,24],[-11,76],[-5,53],[-3,37],[-8,37],[-8,-98],[3,-42],[-17,-23],[-4,-2],[-11,-4],[-33,16],[-16,32],[-12,28],[-20,39],[-13,21],[-11,23],[-11,-24],[-2,-12],[-7,-29],[0,-14],[-4,-76],[3,-38],[0,-3],[2,-9],[7,-25],[-2,-10],[-5,-36],[-3,-40],[-2,-45],[-10,-30],[6,-29],[1,-8],[-8,-34],[-1,-2],[-2,-6],[-9,-36],[-59,-4],[-15,-6],[-15,5],[-22,-2],[-11,-1],[-15,9],[-21,17],[-18,19],[-37,47],[-15,20],[-19,23],[-15,8],[-9,-7],[-5,-4],[-13,-11],[-34,-30],[-7,-6],[-84,-67],[-24,-19],[-14,-13],[-18,-14],[-17,-14],[-196,-156],[-240,-191],[-31,-25],[-79,-64],[-51,-15],[-21,-7],[-141,-43],[-15,-2],[-20,73],[-16,39],[-14,19],[-23,-16],[-35,-56],[0,-58],[-9,-37],[-21,-69],[-13,-42],[-1,-47],[3,-51],[-14,-40],[-22,-31],[-22,9],[-14,-1],[-11,-30],[0,-48],[-4,-37],[-31,-18],[-16,-1],[-14,-15],[-10,-49],[-13,-16],[-17,-42],[-13,-40],[-17,-53],[-9,-51],[-20,-1],[-13,5],[-17,-6],[-23,-1],[-17,-50],[-18,-63],[-19,-97],[-29,2],[-7,50],[1,47],[-2,43],[-13,36],[-30,30],[-9,123],[-11,27],[-22,-40],[-10,-35],[-12,-19],[-34,1],[-14,-11],[6,40],[-1,53],[-41,31],[-11,30],[-16,23],[-16,20],[-27,5],[-19,-10],[-13,19],[-4,47],[2,43],[-16,51],[-12,-22],[-17,-16],[-11,-43],[-21,-18],[-14,-13],[-12,18],[-14,-1],[-19,2],[-20,23],[-15,-7],[-24,-38]],[[87168,46004],[-100,125],[0,42],[0,7],[14,1092],[-7,196],[-2,47],[-1,42],[-4,130],[-4,131],[-13,444],[-1,40],[-5,170],[-1,42],[-5,160],[0,2],[-8,277],[-143,213],[-29,43],[-2,2],[-12,18],[-179,254],[-38,54],[-15,22],[-23,30],[0,50],[-12,26],[-14,13],[-14,12],[-1,38],[-5,37],[-13,10],[-5,35],[-5,37],[9,32],[8,30],[9,28],[1,39],[9,28],[8,33],[14,6],[11,20],[2,39],[3,38],[-9,27],[-14,-5],[-12,45],[2,60],[6,44],[10,34],[9,43],[16,-8],[17,29],[7,39],[1,47],[-20,58],[-19,-1],[-22,52],[6,37],[24,71],[-77,196],[-131,333],[-17,39],[-21,51],[-27,64]],[[38538,43942],[-25,30],[-19,23],[-19,21],[-50,59],[-50,59],[-14,16],[-1,2],[-12,13],[-41,49],[-36,43],[-28,32],[-33,38],[-16,20],[-47,55],[-56,65],[-19,24],[-23,26],[-24,28],[-24,28],[-67,79],[-33,39],[-42,49],[-42,49],[-1,1],[-13,18],[-302,351],[-36,42],[-48,55],[-82,95],[-42,49],[-13,15],[-54,64],[-17,21],[-120,147],[-24,31],[-15,18],[-16,19],[-1,1],[-29,34],[-29,35],[-7,8],[-83,98],[-84,99],[-13,16],[-14,16],[-39,46],[-39,46],[-15,17],[-15,18],[-28,33],[-62,74],[-21,25],[-21,25],[-47,55],[-47,55],[-44,52],[-14,16],[-58,69],[-18,22],[-2,1],[-28,33],[-58,70],[-33,38],[-33,38],[-17,21],[-27,34]],[[36108,46810],[13,374],[0,2],[5,88],[2,56],[3,95],[4,95],[1,41],[9,223],[8,222],[9,267],[3,75],[5,130],[4,105],[6,162],[4,97],[-12,38],[-32,103],[-33,103],[-24,77],[-33,104],[-65,202],[-15,47],[-62,195],[-10,32],[-51,160],[-12,52],[-4,37],[-5,49],[-9,54],[-19,112],[-51,270],[-24,126],[-9,48],[-8,41],[-16,-6],[-58,-27],[-54,-25],[-28,-14],[-21,-9],[-30,-14],[-30,-13],[-34,-7],[-81,-31],[-19,-40],[-19,24],[-18,11],[-6,-17],[-27,-75],[-6,-18],[-31,-96],[-3,-7],[-8,-26],[-16,-27],[-12,-11],[-7,-3],[-9,1],[-1,0],[-1,1],[-101,48],[-11,10],[-7,10],[-9,23],[-3,7],[-10,26],[-4,10],[-12,28],[-27,67],[-34,84],[-24,59],[-8,29],[-3,19],[1,6],[4,56],[0,2],[18,152],[11,96],[0,1],[12,85],[8,31],[5,11],[21,50],[3,6],[17,41],[2,4],[7,21],[3,14],[1,13],[-3,50],[-3,52],[-2,29],[-7,98],[-6,80],[-7,64],[-3,55],[0,4],[0,33],[2,13],[4,12],[6,13],[11,11],[1,1],[41,19],[9,11],[7,15],[3,6],[28,94],[50,167],[5,21],[0,1],[9,82],[0,2],[0,32],[-2,10],[-6,25],[-10,24],[-9,6],[-19,-2],[-9,-4],[-46,-16],[-21,-1],[-6,4],[-3,3],[-5,8],[-1,2],[-19,40],[-18,37],[-6,14],[-20,48],[-3,9],[-6,19],[-1,9],[0,43],[0,5],[3,23],[2,10],[15,75],[6,43],[-1,29],[-5,25],[-14,37],[-8,13],[-9,10],[-7,9],[-11,19],[-6,17],[-4,21],[0,25],[0,32],[3,68],[-2,21],[-5,21],[-6,15],[-9,10],[0,1],[-10,9],[-81,76],[-13,13],[-69,64],[-45,43],[-12,7],[-14,-1],[-52,-40],[-39,-30],[-18,-14],[-90,-69],[-9,-20],[-9,-20],[-7,-14],[-24,-48],[-20,-31],[-41,-65],[-21,-34],[-12,-16],[-13,-8],[-1,-1],[-82,-62],[-34,40],[-8,9],[-42,49],[-100,-47],[-6,-4],[-5,-5],[-31,-48],[-5,-12],[-4,-10],[-4,-16],[-18,57],[-2,38],[-3,48],[1,19],[22,208],[7,63],[4,13],[8,25],[6,22],[50,166],[2,7],[25,81],[23,75],[14,45],[-2,7],[-13,99],[-5,33],[-14,96],[-9,56],[-8,66],[-1,9],[-9,84],[-1,15]],[[34064,54071],[5,4],[37,32],[13,10],[23,12],[5,4],[27,22],[22,17],[7,0],[6,6],[10,13],[7,4],[-1,-7],[-12,-21],[20,-8],[9,-3],[17,-2],[23,4],[18,5],[24,4],[8,1],[37,9],[6,1],[23,4],[22,2],[19,0],[23,3],[13,3],[33,6],[29,9],[20,4],[28,12],[20,8],[34,8],[24,12],[2,1],[26,7],[15,-4],[29,-3],[8,2],[18,10],[3,1],[16,6],[30,16],[21,12],[18,17],[20,28],[9,14],[7,12],[12,26],[8,15],[31,59],[23,35],[25,24],[20,20],[4,6],[6,13],[19,39],[11,20],[17,33],[12,19],[20,57],[9,34],[8,32],[5,19],[10,28],[14,24],[14,29],[4,10],[19,59],[13,35],[9,27],[5,16],[0,-1],[9,7],[6,14],[4,10],[13,43],[6,22],[16,72],[6,26],[3,10],[23,83],[10,26],[5,9],[13,29],[1,4],[16,44],[12,30],[12,29],[32,62],[6,6],[25,32],[7,20],[3,8],[26,66],[10,28],[15,32],[20,41],[9,33],[13,51],[13,40],[15,39],[26,61],[22,51],[26,55],[29,49],[32,54],[16,21],[31,35],[39,40],[17,14],[19,15],[15,12],[15,9],[30,18],[26,20],[15,13],[21,20],[25,19],[23,26],[26,28],[38,63],[25,31],[28,33],[12,13],[13,3],[8,5],[10,6],[13,4],[23,-3],[3,0],[5,-3],[19,-10],[1,-1],[4,-1],[15,-7],[1,0],[15,-16],[10,-14],[16,-18],[16,-20],[18,-29],[15,-25],[11,-22],[11,-22],[14,-26],[1,-1],[12,-24],[1,-2],[33,-44],[17,-19],[16,-16],[20,-25],[20,-21],[15,-15],[0,-1],[1,-8],[-2,-2],[-3,0],[0,-1],[-1,-3],[0,-1],[13,-29],[7,-45],[5,-37],[3,-17],[5,-24],[7,-43],[14,-80],[7,-40],[8,-58],[5,-45],[9,-72],[3,-17],[7,-43],[5,-53],[6,-80],[1,-31],[2,-37],[1,-3],[5,-19],[4,-17],[14,-47],[9,-31],[15,-63],[14,-64],[15,-32],[19,-62],[4,-23],[10,-54],[6,-37],[3,-34],[-1,-3],[-1,-3],[-2,-3],[-3,4],[0,1],[-4,12],[-8,17],[-2,-9],[5,-65],[7,-34],[5,-28],[3,-13],[6,-32],[9,-41],[10,-31],[8,-20],[17,-37],[14,-51],[9,-53],[6,-33],[11,-63],[5,-24],[3,-16],[2,-17],[2,-8],[1,-6],[8,-47],[5,-12],[9,-31],[9,-44],[12,-52],[2,-12],[4,-17],[10,-49],[4,-17],[7,-31],[14,-60],[18,-71],[9,-39],[16,-65],[15,-57],[16,-61],[10,-33],[1,-3],[13,-38],[8,-30],[11,-46],[6,-24],[1,-10],[6,-31],[12,-58],[11,-46],[5,-19],[7,-28],[16,-62],[3,-7],[6,-22],[45,-139],[0,-10],[1,-4],[1,-2],[2,-5],[6,-5],[17,-46],[9,-29],[8,-28],[6,-18],[12,-33],[13,-30],[17,-46],[20,-51],[34,-100],[9,-29],[18,-44],[17,-28],[15,-19],[22,-13],[14,-5],[28,-7],[16,-6],[4,-4],[8,-10],[23,-12],[23,5],[27,14],[38,50],[4,6],[14,26],[12,19],[36,52],[3,2],[4,5],[30,41],[27,53],[22,43],[8,16],[18,35],[16,29],[17,39],[19,45],[17,32],[34,51],[20,30],[2,3],[34,49],[25,53],[22,65],[7,21],[15,17],[14,17],[34,34],[2,2],[23,3],[18,-2],[15,0],[23,0],[24,-7],[12,-4],[18,-10],[26,-16],[28,-8],[21,-11],[13,-10],[14,-3],[19,-6],[13,-1],[24,-16],[29,-14],[21,-15],[29,-23],[27,-14],[17,-19],[1,-3],[-2,-7],[3,-5],[14,-29],[4,-9],[17,-50],[8,-45],[7,-57],[3,-26],[1,-5],[6,-55],[3,-68],[0,-47],[0,-51],[-4,-52],[-6,-76],[-3,-18],[-7,-47],[-2,-12],[-10,-62],[-1,-4],[-3,-10],[-2,-6],[-2,-18],[-2,-25],[-9,-51],[0,-2],[-5,-31],[-11,-72],[-10,-48],[-19,-92],[-8,-37],[-16,-73],[-27,-139],[-17,-91],[-12,-63],[-5,-16],[-7,-29],[-8,-69],[-18,-107],[-6,-42],[-10,-79],[-3,-46],[-5,-71],[-4,-48],[0,-83],[2,-60],[1,-45],[4,-45],[0,-2],[3,-58],[15,-93],[23,-88],[3,-11],[26,-47],[10,-18]],[[58078,52840],[-15,-38],[-2,-15],[0,-1],[-1,-7],[0,-35],[3,-14],[8,-17],[19,-41],[1,-3],[1,-2],[1,-2],[5,-19],[2,-13],[4,-63],[0,-16],[-1,-3],[-1,-3],[-9,16],[-13,21],[-1,0],[-5,1],[-3,-10],[0,-22],[0,-6],[0,-13],[4,-27],[10,-28],[3,-11],[1,-12],[-2,-6],[-17,-47],[-5,-9],[-4,-5],[-5,-3],[-6,-4],[-5,-1],[-20,-2],[-14,10],[-8,10],[-16,46],[-2,11],[-1,23],[0,31],[-1,18],[-6,15],[-13,17],[-1,1],[-1,1],[-41,34],[-2,1],[-5,0],[-7,-8],[-14,-25],[-15,-47],[-5,-23],[-11,-28],[-1,-4],[-6,-6],[-2,-2],[-1,0],[-7,-1],[-14,9],[-9,11],[-33,81],[-2,4],[-10,27],[-10,5],[-21,12],[-45,36],[-21,9],[-3,1],[-13,0],[-18,-12],[-8,-14],[-3,-15],[-1,-20],[18,-147],[-1,-45],[-6,-43],[-5,-18],[-5,-18],[-5,0],[-6,0],[-5,0],[-8,10],[-2,2],[-12,17],[-48,67],[-10,21],[-6,21],[0,2],[0,2],[-4,19],[1,28],[3,11],[4,10],[14,35],[4,10],[18,36],[4,10],[7,18],[1,14],[1,4],[1,32],[1,19],[-2,42],[-1,3],[-7,35],[-3,8],[-2,9],[-57,155],[-1,3],[-15,39],[-2,2],[-6,9],[-9,-1],[-2,0],[-1,0],[-4,-2],[-7,-9],[-3,-9],[0,-1],[-7,-25],[-3,-19],[-1,-72],[1,-29],[5,-30],[5,-52],[1,-85],[-5,-103],[-1,-85],[6,-63],[4,-36],[16,-71],[14,-72],[4,-73],[1,-27],[0,-7],[2,-95],[0,-8],[2,-94],[-28,-7],[-8,-2],[61,-288],[1,-7],[0,-4],[2,-27],[0,-30],[-2,-15],[-3,-12],[-7,-14],[-6,-5],[-7,2],[-4,3],[-2,3],[-9,19],[-5,22],[-2,18],[1,37],[0,17],[0,37],[-5,33],[-11,21],[-1,1],[-5,6],[-12,6],[-9,-2],[-13,-8],[-6,-14],[-16,-69],[-19,-63],[-13,-46],[0,-15],[5,-14],[14,-16],[1,-2],[2,-1],[29,-22],[1,-1],[2,-3],[23,-42],[9,-21],[9,-19],[2,-6],[11,-36],[12,-61],[2,-35],[-3,-13],[-3,-13],[-9,-10],[-2,-1],[-19,-7],[-14,-5],[-10,-11],[-6,-12],[-5,-23],[-2,-17],[2,-90],[-3,-19],[-7,-33],[-5,-19],[-14,-66],[-8,-13],[-7,-6],[-1,-2],[-8,1],[-5,10],[-4,11],[-4,22],[-5,42],[-2,18],[-5,45],[0,2],[-5,11],[-2,4],[-32,54],[-5,8],[-7,4],[-52,5],[-1,0],[-7,5],[-6,8],[-5,6],[-3,7],[-7,13],[-6,12],[-3,22],[0,27],[4,15],[19,46],[32,52],[5,15],[3,25],[-1,69],[-2,32],[-14,186],[-11,134],[-9,36],[-1,1],[-10,10],[-8,-6],[-6,-8],[-6,-12],[-4,-56],[-4,-101],[-6,-26],[-28,-55],[-28,-60],[-18,-110],[-5,-41],[-3,-112],[-4,-11],[-6,-12],[-8,-8],[-12,-3],[-34,5],[-5,1],[-8,12],[-3,26],[-15,178],[-1,107],[2,50],[3,30],[9,45],[18,39],[19,42],[-1,20],[-2,7],[-2,5],[0,1],[-6,6],[-5,-2],[-8,-2],[-26,-54],[-3,-3],[-11,-1],[-1,0],[-26,17],[-11,7],[-10,0],[-1,0],[-6,-3],[-5,-9],[-5,-20],[-2,-48],[15,-111],[1,-19],[-5,-14],[-8,-13],[-11,-11],[-13,-8],[-19,-3],[-8,4],[-12,11],[-7,16],[-22,63],[-24,59],[-23,33],[-1,1],[-9,8],[-17,1],[-35,-40],[-6,-11],[-8,-19],[-5,-25],[-2,-200],[2,-9],[5,-10],[2,-2],[39,-47],[12,-14],[22,-44],[28,-60],[4,-9],[21,-57],[17,-57],[14,-51],[7,-46],[0,-11],[0,-12],[-1,-4],[-5,-18],[-11,-23],[-10,-7],[-11,-1],[-13,4],[-40,27],[-52,25],[-46,14],[-17,2],[-13,-12],[-23,-95],[-9,-24],[-12,-23],[-10,-8],[-53,3],[-4,6],[-1,0],[-4,14],[-1,3],[-12,63],[-8,23],[-10,12],[-8,8],[-20,3],[-2,-1],[-5,-1],[-10,4],[-6,7],[-6,16],[-6,41],[-8,113],[-1,16],[-4,9],[-11,8],[-6,1],[-6,-6],[-11,-25],[-17,-51],[-6,-34],[0,-50],[7,-67],[20,-129],[0,-35],[3,-25],[0,-2],[8,-40],[2,-18],[7,-63],[0,-22],[-5,-32],[-11,-37],[-25,-48],[-13,-14],[-55,-48],[-6,-7],[-19,-36],[-24,-52],[-7,-9],[-19,4],[-28,40],[-4,-1],[-30,-10],[-8,-2],[-27,-9],[-2,-1],[-11,-69],[-16,-134],[0,-29],[2,-23],[0,-1],[14,-83],[5,-31],[-2,-3],[-1,-1],[-7,-10],[-3,-2],[-65,-28],[-11,-9],[-7,-9],[-10,-26],[-3,-31],[0,-2],[-13,-201],[-1,-7],[-3,-21],[-8,-33],[-1,-5],[-1,-2],[-56,-75],[-1,-32],[-4,-122],[10,-25],[3,-6],[73,-128],[8,-25],[6,-26],[2,-19],[4,-35],[1,-30],[-7,-51],[-8,-43],[-9,-36],[-5,-16],[-46,-84],[-20,-29],[-18,-26],[-1,-2],[-53,-77],[-9,-13],[-27,-15],[-23,-6],[-36,-7],[-40,24],[-37,22],[-1,0],[-3,-2],[-40,-23],[-12,-17],[-2,-11],[-13,-68],[-2,-18],[1,-26],[3,-56],[0,-4],[0,-34],[-4,-18],[-6,-19],[-11,-13],[-38,3],[-60,30],[-5,2],[-5,6],[-13,15],[-13,18],[-50,69],[-23,13],[-9,1],[-10,-10],[-5,-22],[1,-19],[1,-28],[1,-13],[2,-19],[17,-160],[15,-129],[-7,-83],[-4,-48],[1,-2],[3,-19],[5,-15],[3,-9],[48,-40],[1,0],[39,-59],[-23,-140],[-6,-38],[-15,-90],[-4,-9],[-30,-56],[-12,0],[-27,11],[-9,4],[-3,2],[-27,21],[-15,17],[-58,77],[-57,108],[-8,7],[-65,35],[-9,-3],[-2,-5],[-3,-13],[0,-237],[3,-39],[9,-94],[11,-97],[-1,-199],[-3,-49],[0,-1],[7,-186],[0,-7],[0,-16],[-2,-8],[-8,-14],[0,-1],[-1,0],[-7,-1],[-5,7],[-24,19],[-1,1],[-1,0],[-11,0],[-8,0],[-1,-5],[-1,-1],[-11,-14],[-30,-16],[-6,0],[-2,0],[-8,-1],[-9,6],[-4,6],[-11,29],[-14,8],[-8,4],[-1,-1],[-2,-1],[-6,-5],[-16,-34],[-31,-90],[-2,-6],[-9,-34],[-1,-10],[-2,-14],[-1,-50],[-4,-22],[-2,-9],[-5,-13],[-3,-3],[-5,-6],[-14,-12],[-56,-48],[-14,-13],[-22,-3],[-4,3]],[[54806,46544],[-171,-451],[-90,-236],[-38,-100],[-66,-174],[-13,-34],[-11,-29],[-75,-198],[-76,-197],[-21,-57],[-2,-5],[-81,-212],[-30,-157],[-1,-4],[-6,-33],[-26,-131],[-52,-269],[-46,-237],[-11,-58],[-8,-41],[-27,-140],[-11,-55],[-56,-287],[-2,-10],[-12,-63],[-25,-128],[-20,-104],[-12,-64],[0,-1],[-19,-99],[-13,-60],[-8,-42],[-9,-48],[-27,-134],[-20,-129],[-16,-95],[-14,-77],[-6,-35],[-6,-36],[-166,-966],[-29,-149],[-11,-70],[-22,-103],[-33,-175],[-29,-149],[-29,-150],[-28,-149],[-4,-19],[-45,-238],[-2,-47],[-11,-90],[-8,-65],[-4,-13],[-26,-48]],[[53232,39883],[-6,1],[-20,-2],[-19,0],[-9,23],[-1,8],[-6,207],[1,33],[-4,27],[-12,20],[-4,2],[-10,-3],[-8,-12],[-11,-29],[-2,-7],[-9,-17],[-7,3],[-1,1],[-17,20],[-1,1],[-3,5],[-8,14],[-11,20],[-10,11],[-1,1],[-3,-1],[-6,-1],[-14,-20],[-4,0],[-38,3],[-8,-2],[-24,-7],[-30,-47],[-52,-80],[-31,-155],[0,-1],[-5,-21],[0,-19],[0,-59],[0,-21],[3,-20],[7,-49],[3,-18],[3,-21],[5,-15],[6,-14],[1,-4],[5,-22],[0,-26],[0,-3],[-3,-19],[-17,-61],[-17,-58],[-3,-19],[-9,-49],[-1,-7],[40,-220],[18,-61],[2,-10],[8,-63],[1,-15],[0,-18],[-11,-17],[0,-1],[-17,-1],[-10,16],[-14,24],[-2,5],[-46,1],[-32,-29],[-1,-3],[-33,-164],[-3,-13],[-4,-29],[-8,-20],[-10,-14],[-36,-33],[-12,0],[-5,0],[-10,13],[-28,42],[-7,12],[-5,21],[-5,31],[-10,35],[-1,1],[-26,23],[-12,6],[-1,1],[-62,44],[-1,0],[-64,53],[-4,3],[-7,6],[-9,10],[0,9],[-16,57],[-8,6],[-71,53],[-1,0],[-8,-3],[-5,-10],[-2,-13],[0,-6],[-1,-36],[0,-15],[-3,3],[-9,7],[-24,20],[-31,63],[-4,18],[0,16],[0,2],[12,39],[8,25],[10,12],[12,15],[2,7],[1,2],[7,56],[8,58],[0,23],[-1,23],[-4,32],[-6,34],[-6,28],[-11,8],[-8,-2],[-3,-1],[-6,-8],[-6,-18],[-11,-68],[0,-17],[0,-17],[0,-19],[1,-5],[2,-34],[0,-11],[0,-9],[-3,-10],[-10,-10],[-10,0],[-6,6],[-3,8],[-3,6],[-42,138],[-4,16],[-1,15],[0,1],[5,20],[5,7],[1,1],[2,2],[12,5],[21,-1],[1,0],[4,13],[2,13],[0,15],[-1,2],[-3,11],[-8,32],[-22,23],[-31,8],[-8,4],[-10,-6],[-3,-14],[-1,-85],[0,-1],[-8,-21],[-8,-8],[-15,-4],[-9,-3],[-8,-9],[-5,-17],[-1,-8],[-6,-39],[-6,-45],[-1,-10],[-1,0],[-7,-3],[-9,-3],[-46,-11],[-4,-1],[-3,3],[-4,10],[-4,21],[-4,21],[0,4],[-8,21],[-7,6],[-5,0],[-3,0],[-1,0],[-11,-9],[-6,-13],[-1,-1],[-7,-22],[-10,-45],[-4,0],[-8,27],[-3,8],[-4,13],[-8,43],[-8,53],[-3,24],[1,21],[4,14],[13,11],[17,18],[6,14],[0,15],[-4,9],[0,12],[1,52],[2,103],[66,177],[4,8],[68,120],[8,2],[6,-8],[1,-1],[5,-15],[0,-3],[2,-11],[0,-10],[0,-28],[6,-20],[4,-4],[4,-3],[13,0],[10,12],[8,21],[0,1],[0,1],[1,27],[0,13],[0,44],[-1,54],[2,7],[28,121],[4,15],[11,94],[-3,33],[-8,55],[-3,31],[-5,37],[-1,8],[0,23],[0,11],[0,2],[-1,66],[2,15],[1,9],[4,14],[16,20],[6,38],[-8,12],[-5,7],[0,1],[-4,10],[-2,10],[-17,219],[0,22],[0,17],[4,29],[10,33],[2,6],[5,24],[0,2],[-3,22],[0,2],[-8,16],[-7,11],[-5,7],[-3,8],[0,16],[2,9],[2,6],[0,4],[45,84],[8,8],[95,35],[9,111],[-2,10],[-3,11],[0,1],[0,8],[1,25],[4,11],[67,156],[7,14],[12,20],[6,18],[4,12],[-9,21],[-16,-2],[-4,-1],[-35,-72],[-8,-11],[-16,-15],[-1,0],[-6,1],[-9,8],[-3,2],[-34,30],[-1,1],[-3,3],[-57,62],[-1,5],[-14,11],[-48,0],[-7,5],[-42,41],[-1,1],[-5,6],[-4,6],[-21,57],[-1,2],[-8,26],[-17,133],[-1,8],[2,37],[3,13],[2,7],[2,6],[4,10],[2,5],[9,13],[18,16],[1,0],[15,7],[8,3],[62,19],[16,5],[5,2],[1,-1],[12,-10],[53,-42],[15,-11],[3,-7],[1,-2],[12,-47],[1,-4],[7,-19],[9,-11],[13,2],[7,1],[12,10],[30,47],[17,26],[1,2],[10,20],[6,14],[6,18],[3,14],[0,5],[-1,21],[-8,42],[-12,65],[2,3],[19,-2],[-3,46],[-1,23],[6,15],[3,7],[14,37],[19,49],[10,7],[46,29],[6,4],[1,-1],[8,-10],[0,-3],[11,-40],[2,-8],[1,-27],[-3,-12],[0,-2],[-1,-1],[-11,-26],[0,-1],[-1,-10],[1,-16],[1,-3],[2,-8],[2,-6],[62,-178],[4,-7],[4,-7],[30,-2],[9,-1],[6,13],[1,9],[2,19],[21,182],[0,14],[-1,10],[0,1],[-21,88],[-3,10],[-7,29],[-29,44],[-10,17],[-2,18],[0,45],[10,198],[4,93],[0,5],[1,10],[-41,27],[-14,14],[-10,15],[-3,5],[-36,60],[-9,22],[0,1],[-21,71],[-6,12],[-11,10],[-15,2],[-8,0],[-15,-1],[-10,-5],[-24,-69],[-81,-125],[-1,0],[-24,-23],[-16,-5],[-5,-1],[-3,4],[-3,5],[-10,15],[8,53],[1,8],[2,13],[0,20],[-2,90],[-2,58],[2,10],[5,23],[19,16],[3,37],[5,43],[-3,36],[-1,25],[35,97],[3,42],[-10,24],[-13,-16],[-12,-45],[-11,-22],[-15,1],[-16,30],[-8,23],[-4,14],[0,13],[6,89],[1,15],[8,8],[2,2],[2,1],[1,0],[23,2],[20,1],[9,9],[-17,170],[0,12],[0,6],[1,9],[2,6],[26,59],[26,42],[9,24],[4,17],[3,29],[-1,18],[0,1],[0,6],[-4,9],[-4,11],[-5,6],[-1,0],[-9,-2],[-25,-35],[-2,1],[-3,0],[-4,17],[0,14],[0,9],[5,76],[4,39],[2,78],[5,121],[0,3],[1,3],[1,14],[6,31],[9,42],[16,65],[1,7],[1,7],[2,13],[3,16],[-1,12],[-2,36],[-6,61],[-2,21],[-1,22],[0,36],[5,50],[14,60],[2,11],[0,1],[0,20],[-7,62],[-5,8],[-13,25],[-17,32],[-5,15],[-8,33],[-58,95],[-2,3],[-7,8],[-14,4],[-24,6],[-10,9],[-22,30],[-1,2],[-3,-3],[-31,-34],[-18,-20],[-29,-32],[-20,-20],[-1,-1],[-20,-10],[-5,-3],[-7,-4],[-27,-22],[-48,-53],[-36,-47],[-9,-7],[-8,-4],[-5,13],[-2,4],[-1,3],[-6,23],[-5,20],[-3,10],[-1,2],[-3,2],[-7,4],[-11,-5],[-15,-15],[-35,-61],[-8,-1],[-5,8],[-42,73],[-6,19],[0,13],[0,6],[4,26],[1,10],[4,24],[1,17],[-1,11],[-1,24],[0,8],[-3,21],[-2,4],[-10,20],[-6,10],[-3,4],[-5,1],[-22,4],[-3,10],[-1,15],[1,4],[2,9],[6,17],[7,11],[6,15],[0,16],[-7,22],[-1,1],[-6,9],[-1,0],[-1,0],[-19,1],[-5,7],[-43,53],[0,1],[-10,17],[-1,12],[0,1],[-1,14],[5,12],[7,6],[6,0],[18,1],[7,10],[4,11],[16,67],[0,4],[0,3],[1,6],[-1,12],[-45,178],[-6,14],[-32,40],[-2,3],[-23,16],[-1,1],[-21,63],[-17,53],[-3,2],[-67,54],[-1,0],[-35,82],[-46,110],[-8,19],[-13,17],[-10,10],[-39,15],[-4,4],[-6,7],[-1,16],[0,6],[1,11],[2,43],[0,1],[-1,8],[-6,5],[-5,1],[-4,-1],[-34,-76],[-22,-31],[-3,-1],[-8,-2],[-7,9],[-34,88],[0,9]],[[29814,52885],[-6,-66],[-6,-65],[-2,-16],[-4,-46],[-6,-63],[-1,-14],[-14,-153],[-8,-84],[-10,-96],[-14,-149],[-4,-42],[-3,-102],[-8,-93],[-6,-72],[-22,-269],[-22,-268],[-8,-86],[-6,-78],[-13,-160],[-6,-71],[-1,-11],[-11,-116],[-3,-39],[-1,-8],[-12,-135],[-8,-94],[-3,-39],[-4,-44],[-36,-388],[-10,-104],[-2,-22],[19,-4],[43,-60],[21,-49],[15,-24],[70,-4],[20,-19],[24,-46],[12,-22],[20,-55],[7,-52],[-6,-90],[-18,-63],[-33,-75],[-15,-37],[-19,-77],[-6,-100],[3,-31],[20,-60],[11,-17],[7,-2],[26,-5],[62,2],[4,-10],[16,-44],[3,-57],[-4,-202],[9,-52],[25,-61],[13,-13],[9,-7],[31,-6],[63,2],[111,23],[47,-10],[7,-1],[11,-3],[4,-5],[13,-16],[7,-9],[1,-3],[9,-24],[3,-26],[-2,-61],[-5,-19],[-17,-47],[-19,-57],[-36,-75],[-26,-55],[-55,-115],[-1,-2],[-25,-64],[-24,-102],[-6,-23],[-19,-140],[0,-3],[-11,-35],[-4,-10],[-4,-12],[-1,-3],[-17,-33],[-63,-116],[-21,-39],[-35,-66],[-20,-36],[-97,-153],[-51,-81],[-2,-4],[-62,-96],[-30,-47],[-5,-4],[-36,-33],[-74,-36],[-3,-2],[-103,-42],[-265,-43],[-164,-12],[-25,-10],[-7,-14],[-12,-2],[-23,-32],[-62,-88],[-16,-22],[-44,-72],[-68,-136],[-49,-134],[-20,-103],[-3,-60],[10,-261],[7,-39],[0,-3],[1,-8],[2,-82],[0,-7],[-16,-174],[-19,-130],[-2,-13],[-2,-6],[-30,-145],[-27,-106],[-7,-25],[-10,-35],[-37,-126],[-3,-10],[-7,-42],[-2,-12],[-19,-97],[-10,-52]],[[28416,44766],[-26,-134],[-4,-40],[-10,-84],[-16,-62],[-18,-41],[-10,-23],[-7,-15],[-11,-21],[-31,-57],[-12,-15],[-9,-11],[-3,-2],[-16,-8],[-9,-5],[-52,-5],[-7,8],[-4,5],[-47,19],[-28,3],[-65,7],[-13,2],[-106,-30],[-34,-18],[-121,-42],[-36,-13],[-67,-32],[-32,-29],[-44,-57],[-12,-26],[-30,-67],[-56,-120],[-26,-56],[-23,-45],[-93,-184],[-19,-37],[-3,-5],[-7,-22],[-35,-99]],[[27274,43405],[-61,-9],[-35,-4],[-41,-7],[-15,-2],[-23,-3],[-21,-1],[-16,-3],[-2,0],[-17,-4],[-117,-15],[-30,-4],[-3,0],[-45,-7],[-67,-9],[-32,-5],[-30,-4],[-6,-1],[-65,-6],[-47,-4],[-25,-2],[-16,-1],[-171,-16],[-36,-5],[-36,0],[-28,-1],[-37,-2],[-23,-5],[-16,-5],[-1,-1],[-30,2],[-116,-15],[-25,-2],[-66,-9],[-107,-7],[-24,-2],[-28,-3],[-27,-2],[-28,0],[-22,0],[-16,-2],[-16,-1],[-22,-2],[-23,-2],[-22,-1],[-18,-2],[-53,-4],[-37,-3],[-42,-1],[-94,-9],[-26,-2],[-52,-5],[-1,0],[-33,-4],[-14,-2],[-19,-4],[-48,-4],[-34,-5],[-97,-14],[-18,-2],[-34,-5],[-16,-1],[-26,-2],[-18,-3],[-108,-14],[-49,-4],[-19,-2],[-82,-10],[-25,-4],[-24,-5],[-28,-3],[-29,-4],[-18,-2],[-16,-2],[-17,-2],[-30,-4],[-94,-14],[-14,-2],[-122,-19],[-39,-6],[-15,-3],[-31,8],[-68,-14],[-1,0]],[[24131,43055],[-7,20],[-20,68],[-3,15],[-10,131],[-6,40],[-64,272],[-54,190],[-25,94],[-27,116],[-34,150],[-10,60],[-1,11],[-4,24],[-1,13],[-2,33],[12,62],[32,164],[7,42],[0,1],[0,3],[-7,129],[-1,90],[-1,62],[-5,168],[-6,139],[-3,80],[-14,218],[-6,134],[-3,197],[2,78],[0,22],[0,160],[-8,86],[-1,9],[0,13],[0,45],[-2,262],[2,15],[10,79],[2,17],[0,7],[0,37],[-1,21],[-2,36],[-1,7],[-2,12],[-4,22],[-90,346],[-6,21],[-21,58],[-2,1],[-1,0],[-23,65],[-6,36],[1,12],[1,25],[6,65],[19,227],[27,109],[2,28],[0,8],[0,26],[-4,20],[-4,-2],[-22,-9],[-19,-2],[-19,-2],[-9,10],[-6,20],[-1,2],[0,1],[1,39],[-3,19],[-3,4],[-11,13],[-18,12],[-49,9],[-2,0],[-37,-13],[-5,-4],[-1,-3],[-17,-36],[-44,-100],[-5,-11],[0,-1],[0,-19],[1,-7],[9,-33],[15,-58],[7,-18],[2,-4],[17,-29],[3,-14],[3,-26],[0,-3],[1,-8],[-2,-28],[0,-1],[0,-7],[-7,-15],[-2,-7],[-1,0],[-8,1],[-3,0],[-3,2],[-46,27],[-30,-5],[-56,-11],[-3,0],[-1,0],[-5,4],[-63,96],[-5,8],[-19,47],[-13,29],[-5,19],[0,24],[22,138],[9,31],[11,30],[40,108],[5,24],[4,17],[3,28],[-1,12],[0,3],[-2,11],[-2,4],[-3,6],[-14,13],[-3,2],[-28,18],[-15,10],[-22,14],[-35,-1],[-105,-56],[-27,-15],[-12,-7],[-2,-2],[-12,-15],[-8,-16],[-11,-46],[-13,-76],[-2,-26],[0,-23],[-5,-14],[-3,-6],[-6,-1],[-18,65],[-18,66],[-9,31],[-31,112],[-44,154],[-12,44],[-89,317],[-65,232],[-26,92],[-62,223],[-74,263],[-116,414],[-29,104],[-23,81],[-66,235],[-48,171],[-15,54],[-14,55],[-36,127],[-32,116],[-37,132],[-43,148],[-33,119],[-34,120],[-45,160],[-5,18],[-139,505],[-31,112],[-4,15],[-102,367],[-52,187],[-26,92],[-8,28],[-17,61],[-17,61],[-2,8],[-10,34],[-11,39]],[[21598,52993],[-1,3],[41,132],[0,3],[10,29],[5,16],[5,24],[10,30],[21,60],[20,65],[10,29],[16,51],[11,35],[3,7],[17,40],[10,24],[12,37],[5,17],[2,11],[4,26],[18,38],[18,59],[29,71],[11,28],[26,60],[12,16],[37,41],[38,29],[22,11],[23,1],[12,0],[28,-14],[19,-12],[21,-12],[34,-18],[25,-9],[33,-25],[37,-45],[40,-58],[28,-62],[8,-16],[33,-77],[8,-19],[11,-24],[36,-96],[32,-121],[10,-49],[9,-56],[19,-114],[17,-106],[3,-17],[19,-79],[5,-9],[10,-36],[12,-48],[20,-79],[1,-3],[4,-17],[7,-27],[1,-3],[2,-4],[9,-23],[17,-38],[24,-43],[18,-34],[13,-43],[13,-21],[17,-27],[11,-20],[11,-29],[10,-25],[0,-9],[1,-91],[5,-64],[41,-96],[41,-70],[21,-30],[12,-8],[15,-7],[19,-10],[31,2],[18,-4],[35,-14],[23,-8],[39,-7],[37,-4],[39,-4],[36,-5],[30,-4],[35,-1],[30,4],[34,9],[19,1],[39,-9],[18,1],[50,15],[53,28],[14,14],[28,35],[26,42],[1,0],[35,70],[39,71],[46,91],[19,47],[44,59],[4,7],[2,4],[50,83],[15,22],[19,13],[26,20],[35,12],[2,0],[33,7],[20,7],[27,11],[4,3],[5,2],[12,8],[7,1],[1,1],[7,2],[19,10],[10,5],[1,1],[19,9],[2,1],[9,8],[12,25],[15,5],[17,1],[6,2],[5,1],[11,2],[7,0],[21,-4],[26,-13],[7,-4],[4,-3],[28,-19],[4,-3],[28,-18],[3,-1],[9,-5],[4,-3],[11,-6],[2,0],[8,-3],[22,-9],[3,4],[6,-1],[0,-1],[31,5],[23,3],[9,2],[2,0],[4,-1],[14,11],[20,5],[9,4],[20,12],[6,2],[4,4],[11,8],[29,25],[6,7],[8,9],[14,14],[15,19],[17,15],[8,1],[1,5],[1,2],[8,8],[16,16],[11,11],[6,5],[22,22],[14,9],[22,16],[14,18],[17,26],[15,16],[15,22],[13,17],[7,19],[0,1],[10,10],[2,3],[4,7],[2,4],[1,1],[2,2],[12,18],[25,8],[12,13],[2,4],[7,0],[2,-1],[2,-2],[2,0],[5,3],[10,2],[4,-5],[6,-2],[9,-4],[17,-12],[14,-10],[21,-21],[27,-17],[2,-1],[6,-6],[9,-14],[7,-12],[12,-22],[16,-37],[12,-22],[12,-23],[18,-42],[4,-10],[17,-57],[4,-24],[1,-4],[7,-31],[4,-23],[7,-46],[4,-36],[0,-6],[5,-57],[1,-26],[1,-19],[6,-64],[3,-28],[1,-15],[1,-62],[0,-15],[-2,-115],[-4,-47],[0,-5],[-7,-52],[-12,-61],[-18,-78],[-36,-99],[-48,-99],[-7,-15],[-5,-15],[-11,-34],[-14,-47],[-1,-3],[-9,-42],[-4,-22],[-8,-54],[-18,-92],[-18,-50],[-16,-62],[-9,-75],[0,-30],[4,-67],[2,-38],[-8,-124],[-1,-78],[1,-8],[4,-24],[6,-41],[4,-60],[-2,-40],[3,-45],[11,-70],[5,-57],[6,-39],[4,-24],[5,-19],[12,-47],[4,-14],[13,-42],[26,-71],[23,-51],[14,-19],[11,-13],[21,-14],[14,-4],[17,-13],[47,-13],[22,-7],[12,-6],[36,-17],[26,-9],[15,-4],[26,-7],[37,0],[27,1],[24,3],[17,7],[16,4],[31,9],[35,12],[19,6],[24,9],[18,8],[12,7],[18,12],[15,7],[21,12],[20,12],[12,7],[16,8],[21,18],[12,11],[25,20],[31,23],[40,41],[11,16],[3,4],[23,47],[23,64],[13,41],[20,37],[12,23],[16,41],[22,70],[30,99],[25,77],[14,31],[6,15],[18,53],[15,90],[13,70],[16,63],[14,44],[18,42],[22,89],[13,66],[1,51],[-1,44],[-1,46],[0,35],[0,4],[0,3],[2,26],[0,1],[2,29],[2,53],[0,5],[-6,125],[-3,43],[-4,77],[0,6],[-4,51],[-5,39],[-5,48],[-6,45],[-2,15],[-7,58],[-6,57],[-1,53],[4,48],[0,7],[-5,17],[-12,46],[-9,32],[-14,37],[-1,20],[-4,7],[-18,39],[-11,19],[-12,21],[-24,52],[-19,37],[-14,27],[-8,16],[-7,9],[-27,38],[-30,41],[-14,22],[-16,27],[-15,28],[-16,28],[-14,25],[-21,44],[-9,19],[-22,46],[-22,45],[-17,43],[-2,7],[-8,30],[-25,100],[-12,71],[-3,16],[-8,62],[-3,24],[-8,34],[-6,32],[-1,8],[-2,18],[-9,76],[-7,65],[-1,7],[-3,36],[-4,18],[2,9],[1,2],[-1,49],[-4,45],[2,20],[6,80],[7,44],[16,78],[10,35],[3,15],[3,8],[4,13],[7,26],[6,19],[6,17],[22,50],[33,75],[13,26],[2,4],[12,25],[17,34],[13,26],[14,28],[15,32],[4,10],[16,37],[2,5],[10,22],[22,55],[10,35],[2,6],[7,25],[6,26],[6,26],[6,35],[7,58],[0,8],[-1,79],[12,58],[0,1],[2,17],[3,51],[1,15],[1,27],[0,7],[-1,6],[-2,36],[0,1],[0,1],[-2,28],[-1,5],[0,27],[-1,6],[-1,7],[-5,28],[1,64],[4,47],[3,17],[1,11],[2,18],[9,53],[5,31],[7,18],[3,18],[0,2],[0,5],[2,12],[5,29],[2,7],[3,5],[3,5],[0,2],[6,9],[-1,4],[-1,1],[1,4],[21,45],[1,2],[3,3],[22,27],[5,4],[2,2],[20,12],[10,4],[12,6],[5,3],[3,1],[13,2],[21,1],[18,6],[2,1],[4,1],[3,0],[5,-1],[2,0],[16,-19],[7,-6],[2,-1],[1,0],[2,0],[0,-1],[-1,-6],[-1,-6],[2,-3],[0,-1],[4,-4],[3,-4],[3,-3],[15,-12],[14,-18],[11,-11],[3,-2],[1,-2],[8,-6],[3,-3],[1,-1],[-1,-1],[-2,-5],[9,-9],[5,-5],[1,-1],[-1,-4],[-1,-2],[3,-10],[3,-5],[0,-1],[6,-7],[3,-5],[2,-4],[10,-17],[16,-47],[2,-7],[5,-17],[1,-3],[9,-46],[1,-11],[4,-32],[3,-16],[1,-9],[6,-57],[3,-30],[2,-14],[0,-1],[1,-14],[0,-8],[1,-21],[0,-10],[0,-4],[1,-9],[0,-1],[0,-31],[0,-8],[-1,-19],[-2,-18],[-5,-39],[-3,-55],[-6,-36],[-3,-20],[-4,-21],[-4,-18],[-3,-21],[0,-2],[1,-9],[0,-1],[2,-5],[6,-9],[2,-2],[10,-13],[6,-29],[3,-26],[11,-76],[1,-13],[2,-21],[2,-17],[4,-29],[5,-28],[2,-12],[6,-31],[8,-39],[8,-40],[12,-60],[1,-5],[9,-28],[13,-47],[12,-47],[3,-14],[1,-5],[4,-14],[8,-28],[3,-11],[8,-25],[2,-5],[6,-22],[2,-7],[14,-38],[0,-1],[15,-44],[4,-11],[13,-31],[10,-27],[21,-48],[1,-1],[0,-1],[17,-37],[6,-14],[14,-23],[25,-33],[3,-4],[3,-5],[5,-20],[3,-11],[12,-22],[16,-24],[3,-3],[7,-9],[3,-5],[12,-18],[19,-28],[5,-7],[9,-11],[7,-7],[28,-33],[15,-21],[9,-11],[20,-25],[12,-17],[14,-17],[12,-16],[7,-8],[13,-18],[9,-13],[12,-14],[13,-17],[13,-14],[20,-17],[22,-22],[9,-7],[20,-17],[18,-16],[28,-26],[17,-19],[26,-39],[16,-30],[11,-22],[19,-42],[16,-34],[26,-57],[8,-16],[12,-1],[2,0],[20,4],[8,2],[4,3],[3,5],[4,7],[9,9],[7,6],[4,3],[9,6],[14,16],[13,22],[4,8],[3,7],[2,4],[2,1],[6,7],[0,3],[2,12],[7,13],[1,2],[1,4],[5,15],[10,25],[3,4],[1,1],[5,10],[3,1],[4,6],[4,9],[4,7],[3,3],[3,2],[2,2],[2,3],[6,12],[2,6],[8,8],[2,3],[7,17],[8,16],[5,12],[4,10],[0,2],[1,4],[8,16],[8,9],[1,2],[2,4],[0,2],[3,5],[1,2],[2,2],[5,7],[2,4],[0,1],[3,4],[11,14],[1,3],[0,3],[5,13],[2,4],[1,3],[4,6],[4,8],[0,1],[10,12],[2,4],[4,22],[4,4],[4,4],[0,1],[1,1],[1,3],[2,7],[1,2],[3,7],[3,3],[1,12],[2,9],[0,2],[9,18],[5,10],[3,4],[6,13],[4,7],[7,11],[5,10],[2,4],[2,2],[1,4],[23,36],[2,3],[0,1],[5,10],[4,8],[8,13],[9,16],[10,19],[2,4],[2,9],[1,1],[0,1],[6,10],[2,4],[16,30],[14,24],[12,21],[3,5],[8,12],[30,44],[7,9],[1,2],[1,0],[4,4],[0,3],[8,11],[5,9],[9,16],[9,21],[16,34],[23,47],[24,41],[24,33],[64,97],[29,38],[7,9],[33,46],[9,14],[11,13],[11,14],[10,8],[6,2],[3,3],[26,15],[28,12],[17,10],[16,11],[26,17],[19,2],[7,0],[4,1],[27,7],[13,5],[17,7],[4,1],[12,1],[3,-1],[10,-1],[20,6],[5,1],[1,0],[0,-2],[4,0],[6,1],[5,2],[3,0],[16,0],[2,0],[2,-1],[8,-1],[2,0],[6,0],[2,1],[2,1],[2,5],[2,3],[1,0],[7,-2],[8,-1],[13,2],[31,3],[15,3],[20,4],[5,9],[0,-1],[1,-6],[1,-1],[22,-5],[4,-3],[14,-8],[7,-4],[15,-6],[19,-7],[1,0],[6,-5],[7,-5],[11,-9],[14,-6],[13,-7],[5,-4],[16,-8],[3,-3],[6,-3],[28,-25],[15,-15],[22,-22],[6,-13],[11,-10],[24,-15],[19,-17],[13,-13],[10,-10],[2,-1],[6,-5],[2,-2],[4,-3],[8,-5],[9,-7],[9,-5],[30,-18],[1,-1],[3,-2],[1,0],[2,0],[4,-4],[18,-14],[10,-10],[7,-6],[14,-15],[13,-19],[3,-6],[13,-22],[21,-28],[7,-7],[2,-1],[3,-4],[4,-6],[3,-4],[5,-8],[19,-28],[0,-1],[1,-1],[0,-3],[-1,0],[-2,3],[0,-1],[0,-1],[3,-8],[14,-18],[6,-8],[9,-11],[3,-4],[5,-7],[0,-1],[0,-2],[-1,-5],[-2,-10],[-1,-2],[-2,-13],[-3,-15],[16,-47],[19,-49],[12,-24],[10,-31],[13,-40],[4,-12],[21,-49],[2,-6],[9,-21],[12,-28],[19,-38],[16,-21],[14,-7],[14,-3],[7,-2],[9,-15],[14,-27],[8,-15],[20,-36],[5,-10],[12,-45],[14,-27],[2,-3],[14,-27],[15,-33],[16,-32],[11,-21],[7,-12],[13,-22],[3,-5],[5,-8],[9,-16],[38,-43],[38,-47],[32,-34],[24,-1],[15,13],[1,1],[29,-1],[37,-22],[21,-14],[33,-18],[11,-6],[3,-2],[45,-30],[29,-28],[3,1],[21,-24],[12,-17],[12,-16],[27,-41],[9,-12],[11,-12],[27,-23],[6,-6],[15,-20],[6,-7],[14,-14],[13,-13],[13,-10],[17,-21]],[[63811,49740],[10,-33],[7,-26],[6,-34],[9,-59],[4,-25],[7,-70],[3,-37],[0,-38],[-1,-13],[0,-1],[-5,-25],[0,-4],[-2,-4],[-14,-42],[-10,-45],[-3,-14],[-7,-29],[-4,-30],[0,-30],[4,-23],[2,-3],[3,-6],[12,-2],[6,4],[14,6],[28,12],[3,2],[15,0],[8,-7],[5,-9],[1,-13],[0,-8],[0,-15],[-1,-14],[-8,-33],[-1,-4],[-6,-17],[-13,-32],[1,-1],[41,-102],[14,0],[15,-9],[10,-13],[2,-4],[7,-14],[9,-25],[0,-1],[0,-3],[8,-55],[5,-75],[0,-1],[0,-34],[-8,-47],[-2,-8],[-3,-11],[-39,-72],[-30,-56],[-18,-30],[-3,-15],[-2,-44],[-1,-8],[-4,-61],[-2,-85],[-7,-48],[-14,-36],[-8,-22],[-13,-33],[-10,-31],[-3,-9],[-5,-60],[23,-71],[15,-23],[12,-18],[22,-15],[16,-10],[1,-1],[18,-11],[24,1],[14,15],[16,26],[17,8],[25,-17],[14,-19],[12,-18],[17,-28],[14,-11],[15,-26],[12,-30],[5,-13],[1,-6],[0,-11],[0,-32],[0,-39],[-3,-26],[-5,-28],[-2,-13],[0,-2],[-2,-4],[-11,-33],[-33,-45],[-24,-5],[-14,-7],[-17,-6],[-19,-30],[-5,-73],[1,-44],[-7,-31],[-2,-31],[0,-8],[-4,-92],[-1,-12],[14,-40],[18,-28],[32,-10],[31,7],[27,11],[22,-7],[21,-12],[14,-15],[8,-14],[4,-6],[7,-24],[16,-55],[0,-117],[2,-47],[2,-63],[-3,-4],[-1,-3],[-20,-38],[-13,16],[-17,34],[-12,42],[-26,52],[-16,17],[-13,0],[-20,-24],[-17,-21],[-35,-32],[-16,-21],[-31,-41],[-9,-74],[1,-31],[1,-12],[8,-13],[5,-8],[5,-8],[31,-12],[15,-15],[27,-4],[23,-10],[58,-46],[19,-3],[6,-1],[9,-10],[8,-10],[2,-3],[0,-2],[-7,-53],[-10,-35],[-55,-109],[-29,-28],[-7,-3],[-14,-7],[-12,33],[-9,54],[-19,27],[-5,6],[-6,-3],[-14,-8],[-13,-7],[-1,0],[-22,-13],[-14,-9],[-1,-1],[-15,-7],[-14,-7],[-7,3],[-52,18],[-51,5],[-11,1],[-18,13],[-14,13],[-23,36],[-15,48],[-15,32],[-18,5],[-8,2],[-17,-26],[-14,-33],[6,-63],[24,-88],[23,-106],[14,-64],[11,-60],[7,-45],[-3,-38],[-11,-27],[-15,-1],[-20,21],[-14,23],[-15,27],[-11,19],[-29,51],[-21,25],[-16,4],[-24,-1],[-14,-1],[-8,-6],[-6,-4],[-13,-10],[-6,-4],[-8,-6],[-3,-5],[-19,-27],[-6,-9],[-22,-64],[6,-34],[3,-21],[3,-17]],[[63438,45878],[-18,3],[-17,3],[-17,3],[-55,23],[-33,8],[-15,-1],[-3,1],[-10,2],[-33,9],[-188,46],[-4,1],[-51,12],[-51,13],[-117,29],[-24,5],[-85,-211],[-1,-3],[-86,-215],[-11,-26],[-5,-3],[-96,-45],[-20,-8],[-61,-23],[-40,-15],[-228,-92],[-29,-11],[-15,-6],[-43,-18],[-28,-11],[-20,-7],[-29,-11],[-22,-7],[-145,-49],[-68,-26],[-27,-8],[-13,-4],[-152,-54],[-13,-5],[-19,-6],[-143,-51],[-85,-31],[-20,-8],[-13,-4],[-101,-38],[-7,-2],[-25,-9],[-31,-12],[-17,-6],[-270,-100],[-161,-59],[-19,-8],[-4,-2],[-167,-61],[-23,-8],[-73,-28],[-94,-35],[-73,-27],[-17,-6],[-110,-41],[-39,-6],[-14,-3],[-100,-14],[-134,-20],[-49,-7]],[[59757,44585],[3,57],[7,122],[1,15],[3,71],[4,74],[10,186],[6,109],[3,51],[16,309],[18,342],[7,145],[2,37],[9,130],[25,519],[3,54],[5,106],[6,92],[11,216],[3,54],[3,63],[5,108],[2,70],[5,89],[8,191],[6,142],[3,51],[9,197],[30,647],[20,476],[2,67],[21,408],[-83,23],[8,161],[17,243],[3,136],[6,158],[65,-15],[2,-1],[13,-1],[24,481],[12,245],[-2,8],[-5,28],[-9,27],[-13,13],[-12,-11],[-1,0],[-14,5],[-13,10],[-11,27],[-10,26],[-12,12],[-13,14],[-11,23],[0,6],[-3,31],[-7,34],[-12,23],[-5,14],[-6,14],[-1,13],[-3,24],[-8,32],[-10,26],[-8,34],[-5,8],[-7,13],[-12,24],[-7,33],[-11,22],[-2,5],[-7,25],[-2,40],[-5,36],[-8,32],[-10,29],[-10,27],[-10,26],[-9,36],[-7,35],[-10,54],[-9,32],[-13,17],[-13,13],[-9,13],[-4,5],[-11,22],[-12,21],[-12,15],[-13,8],[14,376]],[[92991,54647],[1,-9],[1,-37],[2,-49],[9,-30],[4,-9],[2,-4],[3,-120],[-1,1],[-3,0],[0,1],[-13,1],[-2,0],[-2,0],[-13,-3],[-2,0],[-2,-1],[-2,-2],[-2,-2],[-3,-2],[-2,-3],[-9,-13],[-1,-2],[-8,-13],[-1,-1],[-2,-3],[-2,-4],[-2,-5],[-1,-2],[-6,-18],[-1,-2],[-1,-5],[-2,-4],[4,-75],[2,-49],[5,-26],[76,-205],[67,4],[9,0],[34,1],[45,-6],[37,-102],[0,-3],[-1,-31],[0,-3],[-1,-7],[0,-6],[-1,-7],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[-1,-5],[-1,-3],[-12,-39],[0,-1],[-2,-5],[-1,-5],[-2,-4],[0,-1],[-34,-72],[-4,-10],[5,-23],[16,-1],[11,0],[3,-1],[2,0],[2,-1],[2,-2],[3,-2],[2,-2],[2,-3],[1,-1],[79,-118],[1,-2],[2,-3],[2,-4],[2,-4],[1,-5],[2,-5],[2,-5],[1,-5],[1,-6],[1,-6],[1,-6],[1,-3],[25,-198],[1,-3],[1,-6],[0,-7],[0,-6],[1,-7],[0,-7],[0,-6],[-1,-7],[0,-7],[0,-6],[-1,-3],[-13,-121],[12,-38],[10,-9],[10,8],[22,99],[0,293],[0,7],[1,7],[0,6],[0,7],[1,6],[1,6],[1,6],[1,6],[1,6],[2,5],[1,6],[2,4],[1,5],[2,4],[2,4],[2,4],[2,3],[2,2],[2,2],[28,29],[40,-18],[11,-40],[11,-38],[6,-20],[9,-57],[11,-25],[13,-12],[71,-28],[3,-3],[5,-4],[4,-3],[8,-10],[38,-94],[17,-49],[29,-50],[26,-41],[9,-17],[57,-109],[43,-193],[15,-69],[11,-47],[4,-15],[4,-17],[17,-29],[5,-9],[12,-15],[6,-8],[35,-33],[33,-26],[23,-26],[4,-12],[4,-2],[16,-44],[7,-25],[7,-66],[2,-92],[-1,-6],[-2,-165],[3,-55],[5,-49],[24,-111],[43,-37],[45,-4],[17,-22],[4,-23],[-10,-19],[-15,-18],[-32,-13],[-109,-63],[-10,-6],[-2,-2],[-14,-15],[-2,-3],[-10,-16],[-1,-14],[-1,-2],[0,-34],[2,-21],[8,-32],[4,-7],[16,-28],[24,-29],[12,-14],[3,-3],[22,-26],[17,-15],[15,-19],[0,-35],[-5,-39],[-37,-131],[-15,-71],[0,-13],[1,-85],[38,-45],[31,-36],[28,-73],[26,-164],[0,-3],[11,-55],[0,-2],[12,-68],[31,-69],[67,-148],[8,-50],[0,-114],[-1,-91],[7,-53],[-18,-174],[-3,-29],[-12,-92],[-2,-16],[-1,-29],[1,-35],[1,-8],[1,-4],[5,-22],[3,-8],[2,-5],[9,-16],[7,-6],[18,-14],[11,0],[1,0],[3,2],[8,7],[12,19],[2,4],[42,113],[55,153],[48,-40],[60,-186],[18,-98],[13,-140],[2,-23],[3,-33],[32,-41],[69,-27],[40,-66],[19,-80],[5,-21],[19,-62],[6,-18],[8,-8],[1,-1],[19,-18],[69,-24],[23,-32],[26,-55],[24,-96],[15,-47],[36,-25],[19,9],[33,-11],[25,-12],[10,-21],[9,-61],[6,-103],[2,-28],[-3,-41],[-5,-34],[-1,-6],[0,-2],[0,-19],[2,-33],[4,-18],[13,-38],[8,-16],[14,-17],[9,-5],[35,-4],[10,8],[5,12],[5,18],[7,14],[9,10],[11,3],[42,7],[9,-4],[3,-4],[3,-5],[10,-23],[3,-7],[7,-28],[1,-4],[1,-10],[-4,-41],[-5,-11],[-30,-58],[-74,-107],[-18,-33],[-8,-21],[-1,-2],[0,-3],[-3,-11],[-1,-21],[2,-13],[9,-29],[26,-57],[10,-13],[7,-7],[6,-8],[13,-5],[14,-1],[6,4],[11,7],[16,10],[14,17],[50,42],[31,20],[49,9],[14,-4],[11,-13],[5,-13],[10,-53],[1,-8],[0,-2],[0,-11],[0,-7],[-1,-6],[-10,-22],[-13,-21],[-5,-8],[-43,-25],[-18,-14],[-2,-5],[-7,-7],[-9,-16],[-8,-23],[-14,-77],[-6,-31],[-11,-125],[-24,-60],[-56,-24],[-44,-101],[-33,-130],[0,-6],[0,-12],[0,-70]],[[95145,46947],[-18,19],[-7,6],[-41,41],[-71,71],[-33,-147],[-90,-14],[-42,-6],[-17,-3],[-232,-36],[5,-34],[12,-34],[6,-40],[-11,-32],[-19,-15],[-20,-12],[-17,-9],[-31,8],[-31,-50],[-9,-32],[-12,-66],[-4,-46],[-12,-61],[-21,42],[-28,-2],[-7,-35],[-18,-43],[-18,-1],[-15,-11],[-12,-133],[-12,-14],[-29,-66],[-19,-46],[-19,-11],[-32,5],[-10,-71],[-28,13],[-18,-37],[-6,-67],[-19,-20],[-23,-62],[-14,-68],[20,-92],[25,6],[13,-6],[17,-58],[-5,-40],[0,-39],[30,-49],[10,40],[24,53],[44,49],[14,-1],[1,-83],[16,-39],[13,-12],[25,16],[17,-131],[16,-16],[32,-9],[15,-34],[26,-88],[-1,-44],[-8,-75],[6,-54],[-12,-32],[-10,-35],[-17,-27],[-8,-44],[-13,-27],[-23,9],[-50,-149],[-3,-83],[-6,-53],[-31,-66],[-11,-123],[17,-42],[-6,-53],[-33,-25],[-11,-26],[-8,-39],[-16,-12],[-13,6],[-28,101],[9,46],[-31,157],[-33,-5],[-19,-42],[-19,40],[-19,45],[-27,17],[-30,-65],[-1,-55],[-13,-43],[-22,-15],[-26,18],[-13,12],[-20,8],[-20,4],[-10,28],[-41,-47],[-4,-85],[-31,-6],[-36,68],[-19,-34],[-28,-31],[-1,-43],[-18,-65],[-58,-23],[-42,-50],[-20,-11],[-19,-19],[-17,-8],[-20,47],[-16,26],[-7,64],[15,38],[5,57],[15,29],[-11,49],[-52,121],[-18,-15],[-22,45],[-18,92],[-21,-33],[-31,-22],[-33,5],[-10,38],[-41,2],[-54,-37],[-19,-17],[-11,-22],[-60,-24],[-21,-60],[-24,-19],[-39,82],[-15,-6],[-24,81],[-3,83],[15,41],[17,56],[13,44],[-12,49],[-55,12],[-23,-35],[-14,-9],[-16,6],[-13,-10],[-23,-18],[-11,-35],[-11,-22],[-19,-18],[-16,1],[-16,29],[-23,42],[-10,25],[-13,26],[-8,36],[-9,46],[-33,-17],[-15,-4],[-15,22],[-5,50],[-5,51],[-24,-2],[-16,-17],[-21,-14],[-7,-38],[-8,-53],[-2,-38],[-11,-39],[-13,-21],[-17,-7],[-12,-26],[-13,9],[-15,1],[-15,-14],[-15,4],[-7,38],[0,41],[-7,35],[-17,4],[-32,-15],[-9,-43],[-14,-19],[-18,9],[-11,46],[-15,9],[-13,-4],[-23,-28],[-9,-41],[-20,-23],[-13,4],[-1,38],[-4,48],[-13,8],[-20,24],[-17,16],[-18,-26],[-8,-50],[-14,-27],[-16,0],[-13,-14],[-9,-30],[-10,-49],[-9,-33],[-14,-24]],[[92125,44809],[-12,44],[-1,43],[1,54],[-21,11],[-21,-16],[-14,2],[-14,42],[-16,-9],[-17,-28],[-14,-22],[-20,-3],[-10,36],[-2,48],[1,38],[-13,29],[-5,49],[7,45],[-18,11],[-16,3],[-13,2],[-16,-1],[-15,-20],[-15,-12],[-10,-50],[-11,-29],[-14,-3],[-14,23],[-15,-6],[-14,3],[-15,35],[-8,30],[-15,24],[-20,64],[-11,23],[-16,0],[-10,24],[-11,31],[3,41],[-11,32],[-17,16],[-13,30],[-16,10],[-19,-4],[-17,-7],[-14,-2],[-10,61],[-32,-9],[-14,-6],[-10,34],[-4,52],[-14,9],[-15,3],[-15,42],[-20,14],[-15,1],[-12,-13],[-13,-9],[-12,-51],[-13,-13],[-14,29],[-1,39],[-5,44],[-18,66],[-10,26],[-15,14],[-20,37],[-15,24],[-19,24],[-9,36],[-17,43],[-11,28],[1,60],[-24,3],[-15,-1],[-17,-7],[-18,15],[-11,27],[-18,31],[-7,48]],[[78087,50117],[-15,-69],[-44,-178],[-29,-117],[-28,-111],[-24,-98],[-38,-156],[-23,-94],[-44,-176],[-13,-52],[-14,-58],[-4,-16],[-7,-27],[-9,-35],[-57,-233],[-10,-42],[-12,-47],[-27,-111],[-46,-189],[-25,-99],[-26,-106],[-10,-39],[-16,-70],[-10,-37],[-10,-42],[-9,-35],[-10,-39],[-8,-31],[-13,-56],[-23,-92],[-37,-153],[-29,-116],[-30,-119],[-30,-120],[-39,-158],[-88,-357],[-16,-68],[-34,-137],[-26,-106],[-38,-155],[-41,-168]],[[77075,46005],[-14,23],[-27,85],[-16,31],[-16,-20],[-12,-25],[-17,-4],[-16,-24],[-24,-18],[-20,-25],[-22,-28]],[[76891,46000],[-8,37],[7,38],[-10,41],[-2,40],[4,46],[-6,41],[1,38],[14,23],[5,44],[-5,37],[-6,51],[-3,38],[-18,-22],[-15,-16],[-13,2],[-14,26],[-17,44],[-15,23],[-4,41],[-16,5],[-14,4],[-7,32],[-18,-4],[-17,-15],[-11,-21],[-12,-34],[-14,-1],[-17,-12],[-46,80],[-14,-3],[-21,-16],[-13,4],[-21,-8],[-20,23],[-12,18],[-10,27],[-1,41],[10,31],[7,42],[-18,-5],[-16,24],[-15,-7],[-13,-12],[-22,-7],[-19,62],[-12,19],[-19,4],[-11,25],[-13,14],[-14,-2],[-17,6],[-15,12],[-12,20],[-16,13],[-13,13],[-10,41],[-15,65],[-5,40],[-11,21],[-21,62],[9,49],[-9,35],[-9,28],[-4,40],[3,42],[-9,27],[-14,14],[-3,39],[-11,36],[-4,41],[11,41],[9,33],[-11,42],[-13,-2],[-16,21],[-13,7],[-13,-25],[-11,26],[-16,-5],[-15,6],[-19,-24],[-13,-41],[-7,-38],[-11,-27],[-14,-25],[-10,-26],[-18,-19],[-17,32],[-15,3],[-15,7],[-15,11],[-7,40],[-16,17],[-13,-18],[-17,-4],[-15,-11],[-15,-14],[-14,-7],[-13,-9],[-10,-34],[-13,-18],[-12,-33],[-11,-21],[-12,-19],[-14,-21],[-11,-22],[3,-39],[-9,-34],[-22,-7],[-16,-4],[-16,5],[-13,-49],[-23,2],[-12,-30],[-10,-39],[-14,-44],[-17,2],[-11,25],[-10,33],[-14,21],[-8,36],[-9,36],[6,52],[-16,28],[-12,-10],[-13,-5],[-12,26],[-4,46],[2,54],[3,48],[11,36],[10,26],[4,43],[-3,39],[11,28],[11,40],[1,45],[-12,37],[-15,10],[-17,25],[-15,16],[-11,-9],[-2,-2],[-19,2],[-14,-11],[-16,-20],[-19,-24],[-14,-13],[-2,-2],[-7,5],[-10,8],[-13,-18],[-3,-1],[-13,-3],[-17,-5],[-12,-28],[-13,-45],[-11,-21],[-7,-2],[-6,-3],[-10,6],[-3,2],[-1,-1],[-12,-11],[-21,-34],[-13,-20],[-25,-8],[-17,19],[-15,10],[-14,-3],[-16,0],[-1,0],[-15,-9],[-5,-8],[-8,-12],[-5,-7],[-10,-29],[-7,-50],[-9,-34],[-11,-28],[-8,-4],[-20,-11],[-8,-34],[0,-4],[3,-33],[-9,8],[-21,19],[-19,7],[-26,9],[-22,-1],[-15,-5],[-12,-26],[-13,-14],[-13,8],[-14,21],[-10,36],[-8,43],[-6,39],[-3,42],[-10,26],[-27,31],[-15,-3],[-5,-35],[-11,-22],[-15,-14],[-15,9],[-10,34],[-11,20],[-14,26],[-9,31],[-12,-26],[-13,5],[-22,21],[-12,10],[-18,0],[-13,-2],[-14,5],[-16,1],[-14,-11],[-10,-22],[-15,0],[-14,-19],[-14,-2],[-12,18],[-9,70],[-5,39],[-10,32],[-2,40],[-10,33],[-14,60],[-15,4],[-27,31],[-17,32],[-33,63],[-50,92],[-80,150],[-56,105],[-12,22],[-19,36],[-28,51],[-38,71],[-52,97],[-47,88],[-47,88],[-43,78],[-26,51],[-32,63],[-34,62],[-28,54],[-23,40],[-19,55],[-5,42],[4,49],[8,55],[8,32],[10,33],[15,31],[-7,51],[-12,37],[-6,58],[2,60],[11,55],[3,43],[1,39],[-1,39],[12,45],[8,45],[10,33],[-5,41],[-12,16],[-6,34],[-3,42],[-8,44],[-1,40],[-2,40],[-1,42],[8,38],[-8,43],[-1,40],[2,39],[-5,38],[-7,34],[3,38],[6,41],[-8,32],[-2,45],[12,32],[5,18],[3,11],[3,38],[-3,37],[3,45],[-8,34],[-12,21],[-13,9],[-14,16],[-14,20],[-13,-11],[-12,-20],[-11,-25],[-14,-4],[-8,4],[-4,4],[-60,50],[-4,5],[-11,12],[-9,9],[-12,10],[-5,-6],[-6,-14],[-7,-29],[1,-71],[-4,-49],[-1,-6],[-10,-15],[-11,-4],[-12,5],[-12,11],[-12,15],[-9,26],[-4,26],[-3,22],[-1,45],[-4,24],[-6,35],[-3,10],[-5,11],[-1,3],[-5,11],[-23,16],[-13,9],[-13,-3],[-6,-16],[-10,-31],[-5,-24],[-8,-26],[-2,-7],[-21,-94],[-15,-47],[-14,-28],[-8,-30],[-6,-38],[-6,-38],[-5,-14],[-8,-19],[-19,-54]],[[36108,46810],[-26,-53],[-26,-54],[-111,-214],[-23,-43],[-22,-42],[-54,-103],[-58,-112],[-56,-106],[-28,-55],[-115,-221],[-33,-58],[-13,-31],[-2,-3],[61,-119],[26,-54],[24,-49],[21,-44],[21,-43],[14,-29],[19,-38],[72,-148],[26,-54],[21,-42],[21,-45],[32,-65],[80,-165],[33,-67],[21,-43],[32,-66],[60,-121],[49,-92],[13,-24],[-13,-28],[-23,-42],[-15,-17],[-18,-13],[-15,-8],[-9,-30],[-14,-55],[-10,-36],[-16,-25],[-13,-15],[-29,-6],[-26,-4],[-15,-7],[-15,-4],[-16,3],[-15,0],[-10,-9],[-3,-2],[-27,-18],[-15,-11],[-11,-22],[-11,-23],[-10,-28],[-13,-34],[-12,-22],[-12,-19],[-12,-33],[-9,-30],[-12,-27],[-12,-27],[-17,-40],[-14,-35],[-14,-36],[-10,-24],[-13,-11],[-14,-19],[-13,-18],[-12,-14],[-15,-15],[-15,-20],[-12,-16],[-9,-28],[-15,-26],[-15,-15],[-16,-23],[-13,-4],[-12,-16],[-21,-11],[-16,-1],[-17,-3],[-12,-18],[-13,-31],[-11,25],[-3,41],[-12,21],[-14,-23],[-17,-21],[10,-29],[-11,-31],[-3,-48],[-7,-34],[-27,23],[-15,-1],[-15,-4],[-21,-21],[-23,-17],[-5,42],[-20,-29],[-11,-25],[-15,1],[-11,25],[-14,-2],[-9,-36],[-15,-19],[-6,-42],[1,-41],[-16,-6],[-14,-11],[-10,-50],[-11,-21],[-15,-34],[-13,-15],[-13,-18],[-19,-40],[-7,-35],[-10,-34],[10,-30],[2,-43],[-13,-22],[-14,0],[-15,2],[-18,4],[-14,4],[-9,-28],[-14,11],[-21,17],[-15,3],[-14,28],[-16,13],[-11,-27],[11,-24],[11,-28],[-11,-29],[-10,-36],[12,-22],[-10,-34],[-12,24],[-6,-41],[-15,-1],[-16,-10],[-3,-73],[-13,-15],[-18,32],[-9,39],[-14,-12],[-10,-32],[-11,-17],[-5,-9],[-17,-26],[-15,-9],[-7,36],[2,36]],[[34718,42563],[0,1],[0,-1]],[[34718,42563],[-12,-18],[-6,-41],[-9,32],[-15,11],[-5,-37],[-7,-35],[-9,34],[4,48],[4,42],[0,5],[-1,38],[-15,-11],[-14,-13],[-1,0],[-7,5],[-13,9],[-18,15],[-25,19],[-5,4],[-12,10],[-10,4],[-45,45],[-27,26],[-7,4],[-5,-4],[-14,-19],[-5,-27],[-17,-37],[-9,-9],[-5,4],[-5,7],[-21,-54],[-24,-63],[-70,-174],[-34,-84],[-33,-80],[-20,-50],[-86,-210],[-13,-31],[-25,-71],[0,-1],[-17,-46],[-46,-110],[-64,-150],[-12,-33],[-13,-33],[-62,-164],[-2,-5],[-28,-79],[-45,-141],[-21,-58],[-47,-131],[-13,-37],[-26,-44],[-30,-52],[-33,-57],[-109,-189],[-81,-141],[-34,-59],[-42,-73],[-66,-115]],[[33286,40139],[-11,36],[-19,28],[-17,38],[-15,20],[-15,16],[-45,44],[-14,19],[-24,39],[-24,35],[-18,25],[-22,30],[-13,21],[-14,15],[-14,12],[-13,12],[-15,12],[-22,14],[-17,11],[-13,9],[-14,5],[-13,1],[-14,-3],[-7,-33],[0,-40],[1,-37],[-11,-22],[-14,5],[-13,3],[-16,5],[-6,-35],[-10,-26],[-15,2],[-13,1],[-14,2],[-14,-2],[-13,-2],[-14,-3],[-15,-2],[-15,-3],[-15,-2],[-16,-3],[-16,-3],[-16,-2],[-16,-3],[-16,-3],[-15,-2],[-16,-3],[-15,-2],[-15,-3],[-13,0],[-14,2],[-14,14],[-14,14],[-14,15],[-15,16],[-14,13],[-57,10],[-2,1],[-28,50],[-13,26],[-64,27],[-88,38],[-20,1],[-42,30],[-85,36],[-104,47],[-55,68],[-48,59],[-23,34],[-75,167],[-19,40],[-48,48],[-207,204],[-218,215],[-2,2],[-85,84],[-66,65],[-70,69],[-65,65],[-108,107],[-22,23],[-87,85],[-28,26],[-138,131],[-92,99],[-155,146],[-14,17],[-37,48],[-23,32],[-18,26],[-93,106],[-70,80],[-77,89],[-18,21],[-57,64],[-25,30],[-23,27],[-17,21],[-58,74],[-60,75],[-79,101],[-113,135],[-75,92],[-60,71],[-15,17],[-18,21],[-21,26],[-15,21],[-30,35],[-62,74],[-19,23],[-76,90],[-21,25],[-17,22],[-3,3],[-18,22],[-20,23],[-190,228],[-50,58],[-18,19],[-65,82],[-33,41],[-86,106],[-18,21],[-73,88],[-17,21],[-40,47],[-12,15],[-73,87]],[[29814,52885],[0,-1],[18,-29],[1,0],[1,0],[2,2],[10,-13],[22,-37],[9,-14],[7,-10],[6,-14],[14,-30],[1,-2],[7,-9],[4,-5],[13,-16],[13,-20],[10,-16],[1,-2],[14,-25],[16,-23],[8,-13],[8,-15],[18,-27],[3,-5],[13,-29],[3,-7],[15,-25],[9,-10],[24,-37],[17,-32],[18,-36],[18,-21],[6,-12],[1,0],[3,2],[15,-12],[11,-16],[3,-4],[5,-12],[10,-24],[3,-6],[12,-25],[12,-31],[17,-30],[0,-1],[12,-28],[2,-5],[1,-3],[7,-19],[1,-3],[2,-7],[0,-2],[2,-5],[1,-1],[1,-9],[5,-6],[1,1],[0,-1],[5,-12],[11,-28],[13,-38],[15,-42],[11,-25],[9,-22],[10,-26],[3,-6],[1,-1],[5,-15],[7,-16],[3,-10],[18,-40],[14,-30],[19,-39],[29,-49],[10,-13],[2,-3],[14,-17],[5,-7],[7,-8],[6,-6],[10,-14],[25,-42],[13,-23],[18,-27],[17,-30],[14,-18],[23,-31],[19,-25],[21,-29],[17,-24],[27,-39],[21,-35],[22,-38],[28,-49],[12,-22],[29,-44],[10,-17],[14,-25],[28,-44],[14,-22],[18,-21],[14,-17],[14,-11],[12,-12],[13,-14],[48,-39],[17,-14],[9,-8],[8,-7],[33,-26],[15,-11],[27,-16],[28,-13],[15,-6],[28,-10],[18,-7],[54,-16],[5,-3],[3,-1],[29,-14],[14,-6],[27,-11],[25,-12],[31,-11],[10,-3],[27,-1],[9,0],[3,0],[20,11],[14,3],[8,3],[27,12],[39,4],[15,5],[13,-4],[10,-2],[0,-1],[18,-9],[8,-3],[14,-9],[21,-17],[24,-38],[7,-11],[14,-23],[5,-9],[6,-12],[17,-34],[8,-19],[19,-51],[20,-50],[7,-19],[18,-63],[26,-98],[7,-31],[2,-9],[3,-11],[13,-51],[20,-79],[14,-50],[1,-4],[9,-32],[22,-90],[11,-52],[9,-36],[12,-44],[7,-32],[2,-9],[3,-10],[5,-22],[10,-43],[8,-42],[6,-39],[3,-14],[0,-3],[10,-48],[6,-35],[2,-12],[13,-90],[2,-15],[5,-43],[2,-13],[7,-81],[3,-33],[1,-6],[5,-38],[1,-20],[1,-17],[4,-66],[1,-17],[2,-53],[1,-14],[1,-36],[1,-21],[0,-6],[2,-25],[2,-15],[6,-61],[1,-2],[1,-10],[3,-16],[9,-54],[2,-10],[9,-42],[5,-23],[13,-38],[3,-8],[19,-25],[5,-3],[19,-12],[17,-22],[17,-17],[16,-12],[9,-5],[2,-1],[23,-19],[22,-12],[23,-10],[15,-4],[34,-2],[14,5],[5,2],[8,3],[6,3],[2,1],[23,7],[28,14],[18,11],[17,10],[31,19],[19,11],[12,9],[17,11],[16,12],[19,21],[49,59],[21,30],[13,21],[16,32],[2,3],[20,39],[18,33],[37,62],[14,20],[3,5],[22,43],[8,20],[5,13],[2,7],[1,3],[10,27],[3,6],[6,15],[14,29],[5,10],[9,21],[6,17],[11,30],[11,26],[1,3],[8,25],[4,13],[11,41],[2,7],[4,13],[5,15],[5,25],[3,11],[6,21],[3,12],[1,14],[1,7],[4,18],[4,17],[3,17],[2,13],[1,3],[7,37],[3,18],[1,13],[7,48],[5,31],[1,11],[3,16],[6,50],[0,4],[1,3],[4,26],[5,35],[2,9],[5,26],[3,40],[1,12],[3,50],[1,10],[1,6],[1,9],[0,1],[10,52],[8,34],[5,23],[3,17],[3,14],[7,31],[10,47],[10,56],[1,3],[3,23],[11,105],[2,25],[4,26],[7,81],[2,13],[4,50],[4,42],[2,27],[2,54],[3,55],[5,43],[4,50],[3,29],[0,2],[0,1],[5,49],[9,81],[9,82],[2,16],[0,1],[4,45],[2,16],[4,36],[1,17],[4,27],[0,4],[6,49],[6,46],[9,58],[4,24],[4,20],[2,18],[3,14],[3,17],[5,30],[1,10],[0,1],[0,1],[3,12],[11,39],[7,44],[0,1],[10,48],[11,217],[-1,30],[0,74],[2,24],[0,1],[1,8],[-1,51],[-4,125],[-4,68],[-6,86],[-7,47],[-6,34],[-10,53],[-2,38],[-1,34],[1,53],[3,37],[5,37],[10,64],[10,55],[21,83],[18,58],[11,32],[10,28],[21,56],[5,12],[12,30],[3,8],[14,33],[25,63],[12,22],[39,66],[37,56],[24,39],[32,50],[35,53],[21,39],[19,20],[13,15],[105,117],[52,57],[49,54],[95,106],[29,32],[65,73],[87,89]],[[72180,51152],[0,-17],[0,-1],[-14,-104],[-9,-145],[-23,-136],[-21,-76],[-27,-79],[-18,-45],[-23,-40],[-32,4],[-13,14],[-90,142],[-22,12],[-17,-26],[-10,-48],[-18,-245],[-34,-194],[-47,-154],[-86,-139],[-18,-46],[-7,-29],[-8,-64],[-9,-165],[-2,-111],[9,-54],[7,-19],[4,-10],[9,-22],[6,-5],[26,-19],[21,-6],[14,11],[20,35],[71,169],[93,168],[19,34],[5,5],[17,15],[20,-6],[10,-13],[11,-14],[8,-10],[18,-22],[87,-162],[3,-6],[3,-1],[42,-12],[19,5],[22,-6],[16,-14],[21,-17],[1,-1],[15,-44],[14,-111],[3,-77],[-3,-50],[-11,-38],[-84,-185],[-121,-200],[-45,-114],[-27,-52],[-1,-2],[-19,-15],[-54,-9],[-1,-1],[-25,-13],[-2,-1],[-13,-4],[-39,-10],[-18,-36],[-6,-146],[14,-80],[13,-36],[6,-15],[8,-23],[26,-38],[25,-22],[17,-16],[40,-36],[3,-1],[134,-37],[13,-14],[34,-35],[17,-25],[10,-28],[2,-42],[-7,-44],[-76,-182],[-16,-67],[-5,-59],[4,-83],[13,-59],[19,-49],[3,-8],[14,-35],[22,-42],[13,-24],[19,-27],[10,-14],[2,-3],[1,-11],[7,-65],[1,-21],[-3,-18],[-15,-92],[-3,-23],[-1,-1],[0,-2],[-17,-57],[-4,-13],[-2,-3],[-11,-23],[-15,-32],[-10,-21],[-37,-39],[-8,-5],[-33,-19],[-36,-21],[-12,-18],[-7,-23],[-3,-9],[0,-20],[0,-5],[1,-11],[3,-44],[6,-40],[7,-30],[8,-25],[10,-32],[10,-33],[11,-30],[3,-30],[7,-87],[0,-25],[-25,-84],[-1,-3],[-4,-6],[-2,-4],[-8,0],[-4,-1],[-2,-2],[-40,-38],[-6,-6],[-3,-26],[-2,-16],[-7,-54],[-12,-95],[39,-45],[49,-56],[0,-18],[1,-83],[2,-117],[4,-21],[19,-112],[0,-10],[0,-2],[3,-254],[0,-13],[-2,-25],[-1,-7],[-12,-16],[-14,-15],[-8,-29],[-2,-13],[0,-26],[0,-2],[1,-20],[3,-17],[3,-12],[4,-7],[16,-11],[7,-13],[1,-7],[1,-10],[0,-1],[0,-2],[0,-26],[-2,-17],[-7,-49],[-4,-26],[-7,-24],[-62,-219],[-1,-3],[-4,-12],[-6,-5],[-21,-17],[1,-7],[18,-74],[5,-31],[18,-126],[2,-33],[3,-26],[2,-10],[5,-12],[38,-93],[7,-16],[3,-5],[2,-3],[6,1],[24,11],[4,0],[10,-1],[2,-7],[0,-13],[-1,-12],[-4,-13],[-9,-32],[-7,-25],[-5,-17],[-7,-16],[-9,-13],[-31,-48],[-19,12],[-10,7],[-25,-88],[-27,-95],[-107,-6],[-7,-1],[-32,-66],[-4,-6],[-7,-27],[1,-5],[2,-64],[-6,-53],[0,-2],[-33,-65],[-10,-19],[-30,-62],[-13,-25],[-2,-4],[-24,-38],[-43,-20],[-24,-23],[-1,-7],[-2,-11],[-1,-38],[-1,-39],[28,-217],[17,-131],[43,-337],[27,-191],[75,-528],[33,-180],[61,-317],[9,-50],[27,-131],[5,-24],[11,-56],[15,-76],[35,-178],[7,-37],[31,-161],[25,-110],[32,-169]],[[72049,40347],[-25,-2],[-126,-4],[-43,-9],[-40,-3],[-17,-2],[-82,-6],[-120,-7],[-16,0],[-75,-5],[-62,-4],[-72,-5],[-87,-63],[-75,-53],[-101,-71],[-129,-92],[-9,-33],[-72,-260],[-35,-129],[-32,-114],[-12,-44],[-23,-82],[-12,-43],[-9,-34],[-12,-43],[-11,-38],[-16,-55],[-82,-303],[-12,-42],[-10,-33],[-16,-68]],[[70616,38700],[-77,39],[-20,3],[-17,-6],[-2,0],[-39,-3],[-25,31],[-12,24],[-15,18],[-13,7],[-22,0],[-10,-22],[-14,2],[-11,26],[-12,17],[-11,26],[-13,6],[-14,-1],[-17,-19],[-14,-16],[-16,-23],[-15,-24],[-6,-38],[-5,-40],[-14,-21],[-25,-37],[-8,-33],[-9,-31],[-14,-1],[-11,27],[-8,37],[-13,44],[-13,19],[-22,24],[-30,9],[-38,12],[-43,14],[-22,-18],[-19,-15],[-12,-18],[-13,-25],[-9,-39],[-4,-36],[-5,-40],[-5,-45],[-16,-19],[-84,-93],[-14,0],[-63,15],[-7,48],[-5,36],[-7,48],[-9,30],[-30,19],[-12,24],[-10,37],[-19,22],[-17,28],[-15,-4],[-14,-25],[-20,20],[-18,18],[-20,20],[-17,5],[-26,3],[-18,-13],[-18,-21],[-13,-17],[-21,-7],[-72,-11],[-27,-4],[-12,12],[-8,32],[4,43],[2,57],[-13,35],[2,52],[-3,49],[18,7],[13,11],[-1,39],[8,42],[12,32],[-3,39],[-9,23],[-13,36],[-46,51],[-12,-24],[-12,-31],[-11,-26],[-5,-42],[5,-42],[-2,-49],[-10,-43],[-15,-21],[-10,-44],[-26,-7],[-4,-2],[-14,-17],[-14,-1],[-2,3],[-15,30],[-9,27],[-6,44],[-15,16],[-11,27],[0,40],[15,37],[-6,41],[-9,32],[-1,42],[-11,31],[-13,5],[-1,2],[-15,23],[-18,13],[-15,-3],[-15,-13],[-6,-41],[-11,-20],[-16,4],[-12,33],[-16,13],[-11,35],[-9,-34],[-14,-29],[-18,-12],[-16,12],[-5,-41],[-12,-20],[-15,9],[-11,24],[-13,-11],[-16,15],[-17,8],[-13,29],[-8,35],[-11,26],[-13,-14],[-18,-9],[-17,-3]],[[68663,39310],[-18,76],[-23,17],[-13,48],[-2,38],[-8,48],[-1,52],[4,46],[13,43],[-4,52],[0,1],[-11,8],[-8,14],[-40,89],[-4,10],[-34,105],[-6,20],[-4,19],[-27,166],[-13,76],[-5,34],[-13,80],[-22,54],[-17,35],[-12,9],[-19,25],[-5,12],[-10,30],[-4,11],[-3,11],[-2,13],[-3,19],[-14,150],[-1,27],[0,43],[0,60],[3,97],[2,58],[0,37],[-30,252],[-10,32],[-7,17],[-9,14],[-58,33],[-37,-2],[-12,5],[-40,38],[-14,26],[-18,52],[-10,11],[-52,15],[-4,4],[-5,6],[-3,7],[-4,10],[-13,37],[-1,2],[-13,41],[-4,17],[-2,11],[-2,18],[-8,100],[-3,65],[-5,31],[-3,25],[-8,116],[-4,66],[-3,78],[-7,22],[-5,11],[-32,28],[-10,-10],[-36,21],[-38,22],[-20,11],[-9,2],[-53,13],[-40,9],[-20,6],[-6,5],[-3,2],[0,25],[5,19],[31,77],[11,17],[23,14],[31,7],[6,24],[2,14],[-1,10],[-1,8],[-2,31],[-8,42],[-10,26],[-26,34],[-2,3],[-5,16],[0,14],[4,12],[9,12],[25,26],[24,7],[13,11],[6,31],[0,21],[0,9],[-6,33],[-7,14],[-6,6],[-9,-3],[-27,-20],[-23,-12],[-17,3],[-20,13],[-17,19],[-30,49],[-8,20],[-16,72],[-1,4],[1,33],[8,56],[6,27],[4,7],[8,3],[15,-1],[26,-12],[25,1],[8,3],[5,7],[4,11],[0,29],[-3,14],[-14,30],[-19,36],[-14,27],[-10,11],[-11,0],[-14,-8],[-12,-12],[-19,-35],[-10,-11],[-25,-1],[-6,39],[-1,4],[-11,241],[0,13],[-1,3],[-19,82],[-3,13],[-6,-13],[-16,-12],[-27,25],[-25,34],[-20,2],[-15,-12],[-17,-23],[-17,-32],[-11,-28],[-13,-26],[-16,-1],[2,44],[11,29],[16,32],[19,34],[10,27],[8,55],[6,48],[14,28],[30,4],[6,4],[2,5],[5,24],[0,26],[0,2],[-6,30],[-9,17],[-7,8],[-16,7],[-25,4],[-6,5],[-3,10],[-1,2],[1,20],[15,82],[12,54],[4,17],[0,37],[-6,14],[-6,4],[-13,-6],[-11,-15],[-20,-36],[-8,0],[-8,9],[-3,13],[-5,16],[0,2],[-2,20],[-1,55],[0,32],[10,57],[7,22],[3,8],[9,46],[2,8],[3,15],[1,4],[11,66],[-1,26],[-4,18],[-14,33],[-13,30],[-5,3],[-10,-3],[-11,-12],[-25,-43],[-11,-27],[-2,-18],[-5,-21],[-23,-82],[-3,-6],[-4,-2],[-25,3],[-9,17],[-20,45],[-10,37],[-25,94],[-70,151],[-2,11],[9,116],[29,51],[15,15],[26,28],[30,32],[41,65],[10,27],[8,21],[16,43],[13,40],[2,5],[1,13],[1,11],[-1,14],[-2,23],[-1,2],[-11,21],[-12,-4],[-49,-39],[-27,-39],[-19,-32],[-17,0],[-19,22],[-42,77],[-1,1],[-41,77],[-2,3],[-6,13],[-16,51],[-4,33],[0,18],[-3,31],[-4,18],[-8,28],[-9,33],[-7,24],[-24,68],[-34,17],[-14,-4],[-27,-21],[-6,5],[-42,33],[-1,0],[-16,42],[-6,40],[1,35],[9,135],[2,30],[5,85],[3,33],[0,1],[-2,36],[-9,51],[-40,235],[-6,18],[-8,20],[-9,9],[-7,-5],[-8,-28],[-13,-57],[-2,-20],[-3,-41],[-5,-16],[-9,-6],[-13,0],[-7,5],[-25,32],[-7,20],[-3,18],[0,3],[0,27],[4,25],[-1,39],[0,20],[-22,70],[-12,28],[-10,17],[-32,42],[-1,1],[-4,16],[1,17],[2,25],[15,34],[13,18],[23,26],[39,50],[30,43],[3,4],[2,27],[4,37],[0,31],[-1,18],[-14,169],[-24,29],[-11,-3],[-6,-9],[-1,-2],[-10,-25],[-6,-6],[-12,4],[0,1],[-14,16],[-17,29],[-8,32],[-1,22],[-1,19],[-1,29],[0,8],[-2,50],[-4,27],[-3,16],[-2,6],[-2,9],[-14,22],[-3,2],[-7,-5],[-4,-12],[-6,-6],[-57,-13],[-9,3],[-3,3],[-14,13],[-19,17],[0,115],[0,12],[34,210],[1,7],[2,36],[-6,34],[-20,38],[-83,67],[-35,-7],[-17,-1],[-21,24]],[[59757,44585],[-13,-342],[-7,-202],[-11,-287],[-15,-391],[-1,-20],[0,-22],[-13,-320],[-7,-213]],[[59690,42788],[-13,2],[-107,1],[-57,-8],[-67,-3],[-34,0],[-94,-1],[-44,9],[-3,1],[-141,-10],[-26,7],[-22,-1],[-27,-3],[-24,5],[-38,0],[-116,-3],[-71,0],[-1,0],[-57,-1],[-19,0],[-79,0],[-80,0],[-21,-1],[-22,0],[-63,0],[-20,0],[-108,0],[-36,0],[-15,1],[-48,2],[-159,-2],[-24,0],[-92,0],[-57,0],[-147,2],[-51,0],[-38,-1],[-56,0],[-27,0],[-30,0],[-16,0],[-74,0],[-37,0],[-60,0],[-85,1],[-17,0],[-14,0],[-30,0],[-40,0],[-41,0],[-18,0],[-19,0],[-24,0],[-25,0],[-122,0],[-73,0],[-14,0],[-24,0],[-23,0],[-15,2],[-74,-9],[-3,0],[-14,13],[-14,16],[-3,3],[-29,33],[-28,30],[-15,16],[-142,158],[-108,118],[-101,114],[-13,14],[-246,272],[-12,-38],[-11,-23],[-20,-7],[-14,36],[-14,23],[-14,11],[-16,-6],[-15,-3],[-15,-6],[-14,-20],[-13,-3],[-19,13],[-14,9],[-13,13],[-15,13],[-17,22],[-14,-1],[-16,5],[-24,-10],[-21,-22],[-17,-20],[-20,0],[-19,-2],[-18,8],[-22,38],[-21,39],[-9,34],[-12,48],[-17,17],[-16,-1],[-12,-30],[-47,89],[-4,19],[-5,42],[-16,91],[-4,11],[-15,26],[-8,24],[-12,40],[-2,15],[-7,40],[-7,41],[-7,11],[-29,8],[-14,-7],[-51,11],[-7,20],[-69,216],[1,108],[2,118],[1,101],[-3,66],[1,10],[1,7],[15,70],[10,45],[-24,151],[0,1],[-9,5],[-7,13],[-21,95],[-1,7],[-7,38],[0,74],[2,0],[6,33],[0,10],[2,48],[-1,46],[-4,17],[-5,9],[-4,5],[-23,-8],[-9,0],[-9,9],[-7,13],[-7,23],[-18,82],[-9,64],[-1,8],[-6,29],[-10,26],[-6,16],[-8,11],[-5,7],[-4,4],[-25,23],[-8,8],[-7,60],[-5,13],[-38,34],[-1,1],[-1,3],[-12,21],[-2,7],[-23,103],[-36,236],[-14,83],[-8,50],[8,54],[1,42],[-10,29],[-14,-3],[0,-38],[-29,58]],[[24131,43055],[-45,-109],[-19,-49],[-41,-102],[-69,-175],[-32,-71],[-28,-71],[-40,-95],[-44,-109],[-46,-111],[-19,-46],[-26,-66],[-17,-39],[-17,-42],[-1,-4],[-28,-66],[-26,-62],[-20,-49],[-72,-169],[-11,-27],[-38,-86],[-28,-67],[-16,-41],[-26,-63],[-22,-55],[-18,-43],[-28,-69],[-41,-103],[-31,-76],[-33,-83],[-11,-26],[-34,-79],[-33,-79],[-48,-111],[-51,-118],[-15,-35],[-64,-160],[0,-1],[-31,-57],[-34,-84],[-39,-87],[-22,-51],[-65,-145],[-11,-24],[-21,-42],[-83,-181],[-57,-126],[-103,-224],[-71,-151],[-85,-178],[-15,-33],[-74,-158],[-17,-33],[-27,-55],[-11,-22],[-69,-142],[-49,-99],[-112,-228],[-17,-36],[-13,-28],[-27,-56],[-38,-80],[-13,-26],[-49,-112],[-111,-263],[-11,-26],[0,-1],[-43,-101],[-28,-67],[-110,-252],[-4,-10],[-12,-36]],[[21521,37084],[-10,1],[-10,2],[-13,1],[-17,-3],[-13,-13],[-11,-18],[-19,-36],[-4,-4],[-18,-20],[-10,-10],[-8,-2],[-2,0],[-6,0],[-4,0],[-3,1],[-24,11],[-7,8],[-7,8],[-22,46],[-7,9],[-11,7],[-10,0],[-2,0],[-24,-4],[-9,-6],[-4,-3],[-1,-2],[-17,-21],[-7,-15],[-3,-4],[-52,-123],[-5,-13],[-2,-6],[-8,-20],[-10,-79],[-9,-25],[-6,-13],[-1,-2],[-1,-1],[-9,-9],[-11,-2],[-30,35],[-4,6],[-12,7],[-12,-5],[-1,0],[-8,-10],[-4,-11],[-3,-25],[-7,-16],[-26,4],[-38,13],[-13,9],[-1,2],[-77,115],[-5,11],[-1,1],[-2,5],[0,23],[4,22],[14,50],[2,0],[34,-4],[30,4],[10,1],[2,0],[5,15],[11,48],[3,14],[6,13],[1,3],[23,58],[14,36],[5,13],[7,11],[31,58],[1,2],[12,25],[8,29],[2,5],[-3,48],[-2,41],[-4,23],[0,1],[-2,8],[-3,14],[-21,60],[-5,16],[-3,13],[-5,25],[0,8],[-21,172],[-9,71],[-16,50],[-54,0],[-3,0],[1,-10],[-29,-166],[-11,-44],[-5,-14],[-1,-1],[-14,-8],[-5,4],[-14,50],[-10,16],[-11,7],[-22,7],[-1,1],[-12,13],[-9,20],[-10,50],[-18,72],[-1,2],[-8,91],[-41,82],[-16,32],[-22,42],[-5,49],[-18,163],[-5,44],[-5,29],[-2,13],[3,51],[0,4],[11,66],[-1,67],[-8,176],[0,13],[-1,24],[1,34],[2,56],[3,58],[3,78],[0,30],[0,200],[0,15],[-2,61],[-10,145],[-3,15],[-6,26],[-8,27],[-9,31],[-3,7],[-13,9],[-22,11],[-136,25],[-15,1],[-8,-5],[-9,-12],[-12,-27],[-18,-38],[-3,-6],[-13,-42],[-4,-21],[-25,-172],[-3,-25],[0,-5],[0,-18],[1,-18],[6,-34],[16,-38],[2,-6],[1,-2],[9,-35],[5,-50],[1,-21],[1,-13],[0,-44],[-1,-23],[-3,-12],[-5,-19],[-12,-38],[-31,-97],[-12,-30],[-33,-75],[-1,-3],[-16,-28],[-1,-13],[-14,-142],[-3,-31],[-5,-18],[-23,-55],[-2,-6],[-21,-43],[-4,-5],[-16,-6],[-34,1],[-10,5],[-6,11],[-1,2],[-5,16],[-2,19],[-3,21],[-4,21],[-7,25],[-11,23],[-12,17],[-32,26],[-20,1],[-5,-4],[-3,-8],[-5,-12],[-16,-112],[-28,-196],[-8,-56],[-5,-17],[-3,-11],[-6,-4],[-1,-1],[-18,-7],[-11,-10],[-11,-19],[-14,-15],[-57,-19]],[[19832,38036],[0,2],[-8,43],[-8,37],[-5,77],[2,72],[1,16],[1,59],[-1,41],[-8,50],[-8,35],[-8,31],[-8,37],[-11,40],[-14,59],[-10,56],[-16,98],[0,4],[-5,18],[-12,39],[-3,8],[-6,20],[-12,34],[-26,56],[-27,44],[-18,22],[-42,30],[-24,22],[-2,2],[-21,24],[-13,10],[-11,5],[-17,15],[-12,22],[-12,30],[-17,40],[-13,35],[-15,49],[-18,65],[-12,43],[-15,59],[-25,97],[-9,43],[-19,77],[-17,73],[-16,54],[-17,55],[-23,68],[-5,12],[-3,7],[-28,53],[-54,107],[-11,21],[-2,5],[-14,27],[-2,6],[-25,59],[-12,31],[-19,45],[-10,22],[-8,20],[-28,59],[-18,31],[-17,26],[-1,0],[-8,31],[-7,6],[-50,44],[-24,28],[-2,6],[-19,41],[0,2],[-6,41],[-9,56],[-12,75],[-2,11],[-8,43],[-14,64],[-12,60],[-10,46],[-8,36],[-1,4],[-5,23],[-4,43],[-5,45],[-4,75],[0,4],[0,2],[4,69],[3,39],[0,1],[2,40],[0,15],[0,11],[-4,75],[-1,27],[0,5],[-2,27],[0,2],[-1,20],[-4,45],[0,1],[-13,96],[-1,11],[-1,3],[-12,74],[-17,77],[-8,39],[-17,83],[-5,26],[-10,50],[-10,60],[-6,34],[-9,51],[-12,57],[-3,21],[-2,11],[-5,37],[-6,34],[-10,45],[0,1],[-2,6],[-8,65],[-1,5],[-3,9],[-2,24],[-5,33],[-6,42],[-4,29],[-15,91],[-13,89],[-8,80],[-7,88],[-4,77],[-3,77],[0,72],[1,50],[-1,86],[-1,59],[-2,44],[-7,76],[-1,14],[-6,58],[-5,67],[0,98],[2,34],[3,61],[6,55],[8,62],[7,40],[8,38],[6,22],[17,61],[11,39],[15,61],[9,69],[2,23],[9,42],[9,43],[13,50],[22,80],[12,40],[20,68],[7,22],[3,10],[20,48],[17,39],[19,35],[4,9],[4,8],[12,22],[8,16],[2,2],[22,72],[2,10],[3,14],[17,35],[19,34],[2,5],[1,2],[3,25],[0,4],[3,46],[4,43],[1,3],[6,39],[5,33],[4,23],[13,52],[1,4],[2,9],[12,41],[0,2],[14,45],[12,46],[23,101],[9,35],[9,36],[5,12],[13,31],[10,34],[15,38],[0,1],[14,30],[3,5],[4,7],[2,4],[2,2],[2,3],[5,9],[1,1],[3,5],[13,20],[35,38],[12,11],[29,26],[35,29],[26,21],[45,44],[16,22],[15,19],[1,3],[12,22],[12,28],[9,24],[5,14],[12,35],[12,28],[12,29],[15,30],[4,7],[19,25],[16,23],[20,33],[11,20],[18,30],[17,24],[15,23],[14,15],[22,31],[23,29],[15,15],[2,1],[14,8],[17,6],[13,12],[15,16],[13,13],[34,42],[29,50],[19,36],[5,12],[12,22],[8,13],[20,33],[1,2],[4,6],[11,20],[23,57],[18,51],[14,39],[11,37],[9,36],[10,54],[8,53],[9,32],[22,54],[6,13],[1,1],[23,54],[0,1],[6,18],[21,80],[3,12],[11,52],[5,23],[10,56],[15,69],[5,24],[16,77],[8,45],[4,36],[5,30],[1,3],[14,65],[12,80],[2,14],[8,88],[6,74],[5,77],[3,54],[1,18],[4,95],[0,3],[7,47],[-1,53],[0,6],[7,69],[8,62],[8,66],[6,40],[6,52],[14,66],[11,38],[12,42],[15,60],[18,43],[18,33],[7,11],[15,21],[22,25],[22,20],[10,11],[38,26],[20,10],[29,9],[28,1],[28,-7],[23,-8],[14,-11],[14,-15],[29,-13],[5,-2],[12,-6],[19,-11],[13,-11],[15,-16],[27,-32],[45,-39],[29,-43],[24,-49],[4,-7],[13,-26],[4,-5],[7,-7],[15,-14],[14,-20],[14,-25],[23,-14],[14,-2],[87,-119],[18,-24],[31,-64],[13,-27],[16,-35],[8,-31],[7,-33],[5,-42],[21,-53],[15,-25],[10,-20],[18,-46],[30,-76],[24,-57],[26,-61],[10,-9],[17,-8],[23,-11],[39,-15],[29,6],[32,34],[15,22],[30,70],[10,60],[24,148],[14,55],[4,37],[13,60],[9,79],[4,39],[16,31],[20,36],[16,97],[-2,45],[-1,5],[1,71],[8,34],[21,49],[37,52],[29,30],[51,34],[29,26],[30,26],[111,121],[45,68],[2,10],[5,9],[10,90],[14,73],[11,100],[5,61],[-1,58],[-5,60],[-3,42],[-3,53],[-7,62],[-2,16],[-3,100],[-11,87],[-5,41],[-10,181],[-2,78],[-11,62],[-20,39],[-2,4],[2,76],[-3,67],[-10,37],[-15,44],[-10,47],[-20,85],[-29,78],[-26,43],[-17,41],[-25,47],[-1,0],[-11,22],[-21,42],[-20,46],[-19,45],[-36,96],[-35,119],[-3,15],[-1,1],[-15,31],[-11,34],[-16,52],[-19,76],[-24,134],[-4,20],[-3,36],[0,1],[-5,52],[-1,9],[-4,40],[-3,76],[2,73],[0,64],[2,46],[6,96],[0,2],[2,20],[12,67],[11,51],[12,41],[20,56],[12,37],[2,4],[1,3],[11,32],[8,36],[0,2],[17,37],[18,43],[31,74],[12,29],[5,15]],[[87168,46004],[-22,-583],[-2,-47],[-3,-71],[0,-5],[-5,-98],[-12,-248],[-11,-231],[-2,-46],[-11,-52],[-5,-45],[9,-45],[17,-36],[17,-4],[11,-52],[9,-39],[-6,-48],[-14,-64],[7,-45],[22,-25],[13,-32],[22,13],[17,-36],[6,-59],[2,-42],[27,-9],[6,-69],[4,-37],[15,0],[13,4],[16,-59],[16,-10],[16,-30],[-11,-75],[12,-43],[15,7],[19,-8],[15,7],[14,9],[15,-47],[17,-23],[17,-41],[19,-3],[18,12],[17,-20],[13,-15],[14,18],[14,-16],[6,-55],[13,-28],[10,-50],[5,-41],[-9,-31],[-25,-33],[-12,-28],[-3,-56],[6,-40],[15,-20],[20,-13],[16,6],[35,-22],[11,-25],[13,-12],[12,-10],[-13,-39],[-12,-39],[0,-50],[4,-56],[-7,-35],[-5,-40],[-6,-46],[-6,-55],[17,-38],[5,-47],[1,-41],[34,-20],[0,-42],[-6,-34],[-6,-35],[0,-39],[15,-23],[18,-50],[-20,-12],[-13,-9],[-17,-13],[-9,-32],[-8,-33],[13,-40],[-1,-40],[-13,-77],[2,-59],[0,-50],[-8,-42],[12,-41],[7,-40],[-7,-44],[-13,-40],[16,-46],[10,-28],[-1,-47],[2,-19],[5,-36],[16,-65],[-1,-38],[-7,-41],[-1,-42],[-12,-79],[20,-58],[1,-41],[24,-15],[19,-37],[11,-38],[17,-24],[8,-32],[-8,-41],[-8,-67],[11,-31],[-9,-58],[10,-38],[-3,-41],[-8,-40],[-25,-9],[-20,-50],[-13,-38],[10,-44],[6,-54],[13,-31],[15,-9],[6,-40],[-4,-41],[-12,-29],[17,-47],[13,-39],[10,-52],[16,-3],[13,-16],[25,-13],[21,-14],[19,-23],[3,-68],[-7,-35],[0,-58],[-3,-49],[-5,-59],[-4,-41],[-2,-41],[0,-44],[26,-4],[14,-6],[-13,-70],[3,-79],[15,-16],[24,-26],[-41,-84],[-11,-31],[-6,-99],[14,-9],[22,-8],[14,3],[8,-85],[14,-14],[18,-1],[15,-17],[18,-1],[16,5],[10,-68],[-5,-75],[0,-44],[-13,-32],[-30,-8],[-14,3],[-15,10],[-16,-16],[-11,-45],[-17,-6],[-19,-9],[-15,-11],[-13,10],[-13,-6],[-9,-69],[-11,-32],[6,-53],[15,-27],[-1,-65],[-11,-22],[-12,-21],[-3,-38],[-1,-59],[10,-59],[13,-16],[15,-17],[-5,-38],[-19,-27],[-8,-21],[-4,-11],[-22,-31],[-12,-16],[-6,-51],[9,-102],[12,-51],[-3,-52],[-25,-51],[-19,-7],[-14,8],[-16,8],[-21,-113],[-10,-26],[-18,-4],[-16,-9],[-12,-27],[-1,-46],[-11,-47],[-12,-16],[-17,-39],[10,-138],[14,-77],[-3,-48],[-5,-38],[-20,-12],[-28,-40],[-7,-32],[-14,-23],[-16,1],[-26,51],[-12,25],[-17,8],[-18,-10],[-41,-138],[-13,-18]],[[87367,37333],[-11,59],[-10,36],[-17,4],[-2,40],[-14,35],[-19,-1],[-18,15],[-4,36],[-12,42],[-17,-6],[-22,-96],[-21,-8],[-29,-41],[-17,18],[-1,54],[-3,43],[3,46],[-1,42],[2,41],[-18,53],[-13,-2],[-6,53],[7,46],[0,44],[-10,27],[-21,-17],[-17,20],[-11,40]],[[87065,37956],[-8,37],[-9,39],[-13,13],[-28,-34],[-14,7],[-11,55],[5,37],[12,14],[7,36],[25,68],[9,66],[-30,80],[-25,-42],[-12,15],[-28,41],[-14,31],[-6,35],[-8,66],[-15,7],[-20,7],[-17,14],[-18,-11],[-18,6],[-23,68],[-8,30],[-34,7],[-14,11],[-19,-52],[-15,-29],[-16,-1],[-21,15],[-5,46],[4,38],[-8,32],[-16,17],[-42,-60],[-21,26],[-29,8],[-22,74],[-13,24],[-29,16],[-17,44],[-15,8],[-18,31],[-23,15],[-17,-8],[-13,-10],[-15,10],[-4,70],[12,31],[12,39],[-12,53],[-6,46],[-9,31],[-6,52],[-14,56],[-3,52],[4,43],[1,64],[2,39],[9,39],[2,45],[-20,31],[-14,24],[3,39],[-13,14],[-14,9],[-12,33],[-16,14],[-14,-26],[-20,-7],[-15,22],[-17,34],[-13,-3],[-13,-26],[-21,-19],[-17,-1],[6,40],[3,44],[0,50],[-7,31],[-10,34],[0,42],[10,36],[14,8],[14,3],[13,16],[10,44],[9,33],[-6,44],[-17,60],[-5,39],[-8,30],[-4,38],[-1,59],[-14,29],[-5,56],[17,67],[23,-1],[17,-12],[22,55],[9,31],[-8,37],[-1,43],[10,26],[11,24],[-10,63],[-20,62],[-10,49],[2,66],[10,42],[-13,21],[-18,-4],[-18,-12],[-15,16],[-18,34],[-11,-27],[-9,-49],[-18,-7],[-10,43],[-11,28],[-18,25],[-2,44],[-3,53],[-35,64],[-16,-29],[-17,-38],[-15,-35],[-16,19],[-16,-2],[-26,-35],[-9,-36],[-18,-18],[-18,-35],[-4,56],[-18,100],[-7,35],[-17,22],[-8,39],[-35,18],[-16,-24],[-14,-9],[-6,42],[-13,9],[-10,41],[-16,25],[-21,49],[-15,8],[-13,-18],[-10,-41],[-19,-17],[-14,37],[-8,32],[-13,13],[7,45],[11,27],[13,23],[7,38],[-14,21],[-4,46],[-11,24],[-6,43],[13,45],[10,52],[0,39],[-15,-12],[-17,8],[-8,57],[-6,40],[-2,11],[-8,37],[-7,47],[-10,24],[-18,2],[-8,-36],[0,-46],[-6,-52],[-16,-16],[-18,21],[-27,34],[-17,15],[-5,48],[1,41],[3,45],[3,71],[-1,48],[-15,52],[-1,39],[-2,45],[-13,40],[-20,-1],[-23,4],[-16,4],[-24,-14],[-14,32],[-13,21],[-4,36],[10,49],[14,35],[-11,47],[-19,22],[-2,41],[0,46],[-16,27],[-13,26],[-23,16],[-19,41],[-12,-12],[-18,-42],[-2,-50],[-4,-66],[-5,-43],[6,-44],[-3,-43],[-10,-25],[-11,-25],[-9,-53],[-15,-13],[-16,22],[-17,-9],[-13,-5],[-11,32],[-4,52],[-17,8],[-13,-36],[-6,-43],[-12,-29],[-13,-18],[-10,-39],[-19,-18],[-19,-22],[-18,-33],[-6,-40],[-11,-24],[-13,-22],[-3,-49],[-10,-40],[-16,-25],[-11,-25],[-19,7],[-22,46],[-16,20],[-17,-2],[-22,-64],[-15,-55],[-23,-80],[-15,-20],[-15,15],[-17,-14],[-14,-25],[-17,-23],[-14,-6],[-16,4],[-17,13],[-14,30],[-15,30],[-11,57],[8,62],[3,56],[-8,59],[-19,15],[-11,27],[-10,55],[-13,34],[-9,39],[-13,16],[-10,29],[-12,17],[-11,39],[-9,33],[-13,21],[-8,38],[-14,13],[3,40],[-22,16],[-1,57],[-5,35],[-4,37],[11,33],[-17,58],[-16,-4],[-37,-66],[-17,-29],[-13,14],[-8,43],[-5,47],[-14,35],[-14,17],[3,65],[-13,20],[-12,-17],[-2,-1],[-30,-11],[-17,30],[-16,-10],[-15,5],[-21,57],[-31,39],[-14,25],[-5,37],[17,27],[13,44],[-10,34],[-17,8],[-13,35],[-19,-15],[-9,-37],[-14,-28],[-14,31],[-23,58],[-17,-16],[-20,-6],[-15,5],[-3,-50],[-4,-43],[-19,-44],[-12,18],[-11,23],[-14,17],[-10,38],[-18,-7],[-20,15],[-5,35],[-14,33],[22,85],[-3,42],[-39,0],[-5,-35],[-29,-12],[-6,-35],[-21,-46],[-20,72],[-18,-36],[-22,-18],[-12,21],[-27,80],[-11,31],[-15,27],[-37,23],[-18,3],[-17,-14],[-21,-7],[-16,23],[-17,29],[-21,1],[-14,14],[-7,39],[-15,35],[-20,55],[-22,23],[-9,32],[-12,17],[-16,18],[-2,48],[-10,40],[-13,43],[-12,48],[-16,6],[-16,22],[3,70],[10,27],[-11,36],[-11,37],[-8,36],[-13,9],[-13,-24],[-16,-9],[-13,20],[-13,8],[-17,-9],[-13,-16],[-13,-16],[-14,2],[-11,21],[-3,41],[-17,54]],[[83117,44239],[-5,66],[-6,45],[-14,13],[-18,25],[-34,53],[-19,29],[-10,33],[-7,48],[-10,35],[-5,48],[10,45],[16,42],[-6,44],[-3,45],[-1,39],[7,44],[19,40],[15,-7],[15,18],[16,21],[13,42],[5,51],[5,48],[23,51],[13,38],[15,11],[6,42],[15,9],[19,7],[2,52],[-9,37],[-16,6],[-17,9],[-10,27],[-12,30],[-24,-1],[-5,44],[-5,47],[-9,28],[-17,9],[-15,25],[-17,31],[-7,56],[-26,18],[-16,-8],[-14,6],[-16,-13],[-16,47],[5,41],[0,43],[-7,62]],[[83117,44239],[-15,-4],[-17,5],[-12,16],[-25,11],[-17,17],[-16,-25],[-16,1],[-9,37],[-7,47],[-17,19],[-17,22],[-14,20],[-14,1],[-10,42],[-3,39],[-17,29],[-13,48],[-16,58],[-19,-11],[-10,-45],[-18,-4],[-14,5],[-25,-25],[-15,-7],[-7,-45],[-27,-34],[-16,-33],[-25,17],[-10,56],[-11,28],[-16,-21],[-12,-15],[-18,-9],[-13,39],[-8,38],[0,46],[-18,21],[-14,-4],[-14,-21],[-11,44],[1,60],[-32,18],[-15,-41],[-18,-22],[-12,-22],[-6,-46],[-18,-16],[-18,25],[-17,9],[-23,12],[-17,-28],[-10,-27],[-21,13],[-10,33],[-18,26],[-13,-4],[-21,22],[-4,57],[-14,23],[-14,-21],[-35,25],[-16,-21],[-19,-31],[-16,-13],[-19,8],[-11,-23],[-18,-31],[-14,15],[-19,1],[-14,-9],[-7,-37],[0,-38],[-11,-27],[1,-40],[1,-39],[-13,-28],[-14,18],[-17,7],[-5,43],[-12,22],[-21,-19],[-20,-12],[-17,18],[-16,17],[-13,30],[-17,-15],[-21,-23],[-19,-3],[0,46],[-8,51],[-11,26],[4,52],[-19,57],[-16,1],[-1,3],[-12,26],[-11,22],[-15,-13],[-13,-16],[-18,-14],[-15,16],[-13,10],[-18,-15],[-9,30],[-12,30],[-16,-8],[-15,2],[-17,-9],[-11,-17],[-18,33],[-5,42],[-3,39],[-12,26],[-14,13],[-22,19],[-8,29],[-5,50],[13,47],[-13,31],[-14,24],[-13,19],[-16,36],[-18,-34],[-19,-42],[-13,1],[-18,-23],[-11,-24],[-18,-1],[-9,36],[2,54],[-13,29],[-16,49],[-18,9],[-9,30],[-9,74],[-14,26],[-19,-9],[-15,-1],[-18,-16],[-19,-24],[-23,-36],[-25,-22],[-15,-19],[-11,-40],[-11,-24],[-39,20],[-13,-19],[-10,-39],[-19,-12],[-11,-30],[-12,-31],[-20,-24],[-14,-63],[-10,-44],[-14,-21],[-14,20],[-7,40],[-12,25],[-16,0],[-28,22],[-14,-64],[-24,-30],[-7,-40],[-8,-33],[-16,-27],[-13,-21],[-13,-41],[-12,-22],[-16,-1],[2,-54],[7,-48],[-3,-40],[-18,-16],[-8,-44],[1,-38],[-3,-42],[-15,-33],[-15,-31],[14,-74],[3,-45],[9,-41],[6,-38],[3,-42],[-17,-27],[-5,-44],[-16,-19],[-14,8],[-18,-10],[-14,-25],[2,-68],[-8,-29],[1,-45],[9,-32],[-4,-36],[8,-41],[13,-46],[-14,-42],[-6,-39],[-8,-37],[-18,15],[-20,-9],[1,-39],[1,-41],[-10,-29],[-16,10],[-14,-19],[-17,11],[-18,-2],[-1,0],[-16,-4],[-5,-49],[2,-46],[8,-36],[-7,-36],[13,-48],[2,-47],[-14,7],[-16,7],[-12,-34],[-13,-10],[-15,-40],[-2,-46],[7,-40],[-7,-36],[-3,-52],[-16,-9],[-19,-6],[0,-46],[-4,-39],[-10,-30],[-16,-17],[-35,-16],[-6,-53],[-4,-38],[-18,-30],[-16,8],[-15,5],[-11,25],[-16,1],[-15,-14],[-23,8],[-17,-12],[-11,-76],[-15,2],[-12,20],[-16,-17],[-5,-48],[-5,-37],[-13,14],[-18,-33],[-7,-37],[-4,-49],[-16,-27],[-17,22],[-15,18],[-30,12],[-18,-28],[-17,-36],[-16,9],[-17,-8],[-14,-19],[-16,-10],[-7,-36],[-21,-21],[-15,-22],[-16,-20],[-15,28],[-5,36],[-9,29],[-10,30],[-20,9],[6,93],[4,56],[12,33],[12,20],[7,36],[11,24],[-4,43],[-5,47],[9,27],[6,41],[4,44],[-1,66],[4,52],[-5,49],[-11,24],[-15,13],[-5,51],[10,33],[7,45],[-3,64],[-13,12],[-16,5],[-24,-17],[-32,-28],[-90,-82],[-60,-54],[-56,-51],[-57,-51]],[[79518,43060],[-8,7],[-5,5],[-19,16],[-3,2],[-54,47],[-115,100],[-17,14],[-14,12],[-55,48],[-82,71],[-92,79],[-13,12],[-18,15],[-15,13],[-48,42],[-40,34],[-2,1],[-36,32],[-93,80],[-8,7],[-38,33],[-43,37],[-98,84],[-22,20],[-23,20],[-17,15],[-26,22],[-14,12],[-95,82],[-19,17],[-20,17],[-34,29],[-19,16],[-14,13],[-23,20],[-17,50],[-73,218],[-17,54],[-44,132],[-15,20],[-74,103],[-21,29],[-138,189],[-43,60],[-68,93],[-102,140],[-67,92],[-82,112],[-15,22],[-13,17],[-68,93],[-3,4],[-11,15],[-22,0],[-8,31],[-9,45],[1,40],[-11,55],[-14,6],[-24,8],[-15,4],[-12,-20],[-12,23],[-18,9],[-11,45],[-12,16],[-13,-1],[-18,10],[-17,50],[-36,-1],[-54,114],[-25,-6]],[[76891,46000],[-23,5],[-26,-3],[-16,-3],[-18,5],[-20,18],[-24,9],[-13,7],[-15,3],[-15,-4],[-21,-6],[-2,0],[-6,11],[-30,11],[-12,-4],[-28,-35],[-16,-20],[-35,-32],[-9,-7],[-17,6],[-9,3],[-34,-87],[-106,-256],[-104,-224],[-28,-60],[-26,-57],[-42,-6],[-13,-17],[-4,-17],[-24,-103],[-1,-4],[3,-47],[-2,-33],[0,-2],[0,-1],[-2,-7],[-24,-80],[-13,-42],[-1,-4],[-14,-23],[-5,-6],[-7,-5],[-27,-1],[-25,-7],[-6,-8],[-19,-43],[-10,-26],[-10,-46],[-2,-43],[-4,-17],[-1,-1],[-38,-56],[-1,-2],[-9,-11],[-10,-7],[-8,-2],[-3,-1],[-8,4],[-14,4],[-13,-14],[-17,-27],[-12,-20],[-16,-30],[-2,-41],[-1,-38],[-3,-43],[0,-5],[-2,-43],[-12,-16],[-15,-25],[-13,-13],[-12,-20],[-13,-23],[-12,-34],[-9,-36],[-8,-32],[-15,2],[-14,-7],[-13,8],[-13,8],[-14,1],[-20,-12],[-13,-25],[-13,1],[-16,-7],[-10,-33],[-14,-12],[-10,-31],[-9,-32],[-9,-30],[0,-1],[4,-37],[5,-42],[3,-42],[8,-37],[14,-70],[42,-208],[17,-84],[12,-59],[7,-36],[8,-38],[3,-12],[6,-28],[17,11],[16,-2],[45,-47],[-5,-74],[2,-4],[2,-15],[0,-50],[-7,-48],[-10,-70],[-18,-18],[-36,-26],[-59,-33],[-6,-1],[-14,3],[-10,5],[-5,4],[-1,0],[-31,21],[-92,72],[-2,2],[-2,1],[-3,1],[-4,0],[-16,-3],[-3,-1],[-2,-1],[-1,0],[-16,-11],[-1,-1],[-2,-2],[-1,0],[-25,-26],[-2,-2],[-2,-3],[-1,0],[-80,-119],[-1,-2],[-1,-1],[-73,-125],[-1,-2],[-97,-174],[-1,-2],[-1,-3],[-95,-204],[-1,0],[0,-2],[-15,-34],[-2,-3],[-1,-5],[-2,-4],[-9,-30],[0,-1],[-2,-5],[-1,-6],[-1,-5],[-2,-6],[0,-4],[-4,-27],[-1,-2],[0,-6],[-1,-7],[-1,-6],[0,-7],[0,-6],[0,-7],[0,-3],[0,-14],[0,-20],[0,-4],[0,-6],[1,-7],[0,-6],[0,-2],[1,-5],[1,-6],[1,-6],[1,-6],[1,-6],[1,-5],[1,-2],[6,-22],[0,-1],[9,-31],[1,-3],[1,-5],[2,-4],[2,-5],[2,-4],[2,-3],[2,-3],[2,-3],[2,-2],[2,-2],[3,-2],[1,-1],[6,-2],[23,-10],[1,-1],[-13,-12],[26,-11],[2,0],[14,-7],[-11,-44],[-13,-50],[-20,-84],[-16,-64],[-16,-62],[-17,-67],[-9,-38],[-12,-47],[-17,-68],[-11,-43],[-12,-51],[-11,-42],[-8,-34],[-8,-30],[-9,-35],[-13,-53],[-12,-53],[-18,-74],[-94,-377],[-32,-129],[-8,-33],[-26,-108],[-15,-59],[-17,-68],[-8,-33],[-9,-39],[-10,-38],[-28,-115],[-14,-54],[-11,-45],[-9,-34],[-13,-51],[-15,-62],[-15,-59],[-32,-128],[-8,-35],[-10,-36],[-11,-43]],[[74478,39457],[-31,83],[-11,30],[-39,105],[-19,50],[-33,89],[-14,36],[-94,248],[-14,36],[-2,4],[-59,143],[-40,93],[-40,95],[-16,39],[-44,98],[-40,37],[-34,33],[-19,18],[-40,36],[-18,18],[-33,30],[-93,86],[-51,47],[-46,-40],[-7,-6],[-14,-26],[-19,2],[-88,-72],[-66,-52],[-21,-16],[-110,-89],[-14,-9],[-46,-25],[-26,-12],[-40,-21],[-113,-63],[-102,-57],[-51,-28],[-288,-161],[-100,17],[-25,4],[-65,11],[-66,11],[-83,15],[-23,4],[-123,26],[-109,23]],[[68663,39310],[-18,-47],[7,-35],[3,-42],[-3,-42],[-12,-25],[-19,-5],[2,-42],[7,-40],[3,-56],[-6,-56],[-5,-48],[-6,-33],[-9,-40],[-9,-35],[-4,-56],[-5,-40],[-7,-34],[-12,-31],[-19,-34],[-16,-41],[-19,-48],[-23,-61],[-8,-59],[0,-3],[-1,-1],[32,-315],[24,-37],[30,-48],[0,-25],[1,-72],[1,-17],[1,-36],[-2,-11],[-37,-158],[-36,-114],[-18,-38],[0,-2],[0,-1],[-3,-11],[-4,-16],[-1,-18],[1,-2],[3,-24],[-2,-3],[-37,-73],[-16,-32],[-1,0],[0,-2],[-1,-91],[-15,-88],[-4,-1],[-6,-1],[-3,-1],[-8,-9],[-11,-21],[-8,-17],[-2,-13],[-3,-25],[-4,-40],[-27,-100],[2,-21],[-2,-23],[-3,-21],[-5,-17],[-5,6],[-9,-7],[-149,78],[-227,118],[-71,36],[-75,39],[-96,43],[-122,65],[-137,72],[-67,38]],[[67362,37300],[-19,45],[-11,23],[-11,24],[0,45],[-16,15],[-12,32],[-6,37],[-2,47],[-13,-18],[-11,-23],[-13,10],[-15,-3],[-11,33],[-14,2],[-13,-6],[-16,9],[-17,5],[-22,-10],[-15,3],[-20,26],[-10,37],[-15,9],[-14,17],[-6,44],[-14,10],[-15,-23],[-9,-33],[-9,-29],[-108,214],[-22,43],[-58,115],[-52,101],[-17,33],[-19,37],[-14,29],[-17,33],[-43,86],[-109,210],[-91,178],[-87,170],[-31,59],[-42,82],[-74,143],[-2,4],[-21,39],[-75,146],[-28,55],[-13,25],[-58,114],[-61,117],[-124,242],[-51,98],[-23,45],[-89,173],[-119,231],[-17,33],[-101,196],[-83,162],[-46,89],[-33,65],[-7,12],[-43,84],[-43,84],[-24,47],[-37,70],[-27,59],[-1,-1],[12,165],[-1,72],[-6,50],[-13,36],[-3,9],[-8,17],[-18,35],[-11,12],[-14,-5],[-60,-27],[-25,-12],[-10,-11],[-13,-24],[-10,-10],[-8,3],[-6,5],[-16,33],[-7,19],[-42,108],[-12,36],[-20,62],[-4,11],[-1,4],[-18,62],[0,2],[-47,-20],[-2,7],[-34,154],[-24,105],[-3,11],[27,116],[28,125],[5,18],[4,10],[8,3],[5,-3],[6,-14],[14,-68],[6,-46],[11,-41],[10,-20],[10,-11],[9,0],[11,12],[33,65],[1,3],[0,2],[4,20],[2,6],[-1,17],[-1,3],[-6,10],[-6,11],[-21,19],[-15,8],[-12,12],[-11,26],[-5,15],[-20,75],[-6,21],[-3,27],[1,37],[3,43],[1,2],[-1,32],[-5,21],[-7,17],[-10,17],[-25,16],[-39,2],[-5,0],[-8,10],[-3,28],[-1,9],[-12,116],[-19,-14],[-6,-4],[-24,-80],[-6,-12],[-19,-7]],[[64581,42913],[-8,26],[-2,4],[-1,2],[-3,5],[-16,7],[-12,-5],[-8,-5],[-6,-11],[-4,-19],[-2,-21],[-5,-19],[-8,-13],[-12,-1],[-10,7],[-10,11],[-4,14],[0,2],[-1,5],[-1,22],[7,165],[8,35],[22,18],[14,3],[21,38],[2,2],[18,20],[55,13],[8,-2],[21,36],[18,102],[3,54],[-1,47],[-6,73],[-8,35],[0,1],[-12,38],[-24,48],[-14,18],[-12,9],[-23,0],[-45,-19],[-27,-29],[-16,-17],[-19,-63],[-6,-60],[-3,-70],[-7,-32],[-6,-12],[-6,-8],[-57,-37],[-2,-1],[-26,-1],[-1,1],[-4,12],[-3,4],[-19,5],[-12,-7],[-3,-9],[-3,-5],[-7,-18],[-2,-35],[5,-32],[8,-22],[2,-6],[70,-67],[-3,-3],[-5,-12],[-5,-12],[-86,-103],[0,-1],[-7,11],[-40,70],[-44,37],[-13,9],[-54,9],[-6,17],[-6,17],[1,19],[0,6],[3,45],[11,43],[13,32],[61,106],[26,28],[28,49],[27,34],[7,8],[4,7],[16,28],[2,8],[6,20],[2,30],[-6,68],[-27,84],[-27,48],[-20,5],[-29,-28],[-29,8],[-18,45],[-25,129],[-14,39],[-16,5],[-76,-107],[-10,-18],[-9,-27],[-5,-6],[-3,-17],[-7,-17],[-6,-16],[-8,-10],[-3,9],[-4,13],[-2,-3],[-7,21],[-1,2],[1,8],[8,87],[2,24],[12,63],[29,68],[35,62],[56,72],[91,79],[12,4],[5,3],[16,20],[40,13],[20,45],[1,6],[4,39],[-4,16],[-29,78],[-26,73],[-2,6],[-6,27],[4,66],[33,67],[2,38],[1,12],[-12,34],[-11,18],[-31,8],[-34,-31],[-45,-49],[-26,-49],[0,-2],[-2,-4],[-17,-50],[-29,-43],[-25,6],[-10,13],[-5,7],[-17,50],[-1,1],[-21,89],[-3,13],[4,60],[11,27],[4,10],[3,9],[14,47],[10,39],[27,104],[6,34],[1,11],[0,45],[-10,28],[-18,6],[-26,9],[-14,5],[-27,-8],[-125,-73],[-37,-61],[-8,-7],[-23,-18],[-6,-5],[-12,-16],[-8,10],[-7,8],[-7,10],[-13,55],[-18,45],[-22,16],[-20,-6],[-20,-14],[-26,-35],[-29,-10],[-40,12],[-13,25],[-12,29],[-16,17],[-26,6],[-4,6],[-13,24],[3,47],[11,39],[12,44],[11,45],[6,45],[14,61],[16,54],[18,24],[23,7],[16,17],[4,25],[3,13],[-5,35],[-20,57],[-21,32],[-13,4],[-13,17],[-29,17],[-18,-29],[-15,-7],[-17,16],[-1,1],[-5,5]],[[92125,44809],[-6,-37],[-9,-52],[-10,-40],[-25,-59],[-14,-16],[-11,26],[-17,18],[-15,-5],[-20,-9],[-16,13],[-19,0],[-12,-18],[-15,-10],[0,-1],[-9,10],[-3,2],[-9,1],[-15,2],[-15,-3],[-5,-7],[-2,-7],[0,-8],[1,-4],[7,-17],[-1,-11],[-2,-5],[-5,-14],[-9,-27],[-4,-6],[-1,0],[-3,0],[-7,10],[-21,27],[-5,8],[-5,19],[-4,62],[-21,13],[-1,1],[-11,5],[-38,19],[-16,-88],[-5,-5],[-15,0],[-21,-5],[-17,-11],[-6,-40],[-14,-68],[-5,-58],[-12,-26],[-13,5],[-20,20],[-14,8],[-20,19],[-31,-36],[-18,11],[-13,-25],[-13,-32],[-13,-35],[-19,-28],[-10,-40],[-2,-40],[-4,-36],[6,-41],[19,-19],[14,-44],[-8,-34],[-8,-55],[0,-42],[10,-38],[18,-2],[22,-8],[19,4],[18,-14],[12,-26],[30,-4],[18,-2],[11,-37],[-4,-45],[-16,-28],[-5,-46],[7,-44],[-1,-46],[-14,-25],[-17,-34],[-8,-90],[10,-29],[20,-26],[18,-46],[8,-43],[12,-50],[14,-33],[16,-27],[-4,-66],[-32,-438],[0,-1],[-10,-141],[-39,-585],[-19,-279],[-14,-200],[-10,-153],[-7,-107],[-35,-507],[-3,-46],[-8,-130],[-13,-181],[-34,-501],[-18,-270],[-19,-287],[-4,-57],[-7,-104],[-11,-158],[-6,-92],[-2,-29],[-9,-40],[-12,-54],[-10,-48],[-14,-115],[13,-43],[9,-58],[4,-58],[-6,-49],[4,-37],[-22,-142],[8,-57],[-1,-44],[-10,-64],[3,-41],[6,-36],[14,-14],[17,-12],[18,13],[17,9],[14,29],[15,27],[23,-1],[12,-21],[11,-26],[11,-24],[20,23],[13,12],[20,28],[27,31],[18,10],[26,-11],[16,-30],[18,-37],[15,-16],[16,-42],[15,-65],[1,-51],[3,-48],[-15,-45],[-14,-19],[-9,-40],[-17,-41],[11,-36],[32,-24],[35,-77],[2,-41],[3,-64],[11,-34],[1,-47],[13,-37],[14,-53],[9,-29],[6,-59],[-5,-47],[9,-49],[-1,-39],[3,-48],[-2,-44],[6,-40],[14,-12],[15,-26],[1,-111],[23,-82],[9,-29],[-13,-50],[-17,-27],[-14,-48],[2,-60],[1,-59],[1,-44],[-23,-42],[-18,-71],[4,-69],[7,-41],[11,-36],[-6,-42],[5,-40],[-7,-42],[10,-115],[-29,-71],[-7,-43],[-12,-66],[-2,-60],[-17,-12],[-16,7],[-34,11],[-28,-28],[-15,-34],[-15,-56],[4,-43],[15,-25],[13,-49],[2,-49],[-7,-31],[0,-43],[6,-50],[-9,-37],[-8,-34],[-14,-22],[-29,-65],[-2,-45],[-23,-79],[-8,-34],[3,-64],[29,-70],[10,-40],[-4,-47],[-7,-37],[-1,-49],[-12,-97],[-15,20],[-15,8],[-25,-17],[-23,-28],[-18,-33],[-5,-39],[-2,-88],[1,-54],[11,-38],[3,-88],[-16,-48],[-39,2],[-16,-1],[-2,-62],[-24,-124],[-18,-21],[-13,-25],[7,-45],[18,-43],[14,-116],[-11,-67],[-25,-9],[-29,-34],[-21,-69],[-20,-10],[-6,-46],[-14,-27],[-35,-8],[-9,-27],[-14,-27],[-25,0],[-25,31],[-24,58],[-15,-3],[-19,-8],[-33,-17],[-14,25],[-13,-18],[-17,-30],[-24,-22],[-14,8],[-13,7],[-24,16],[-14,-2],[-12,-31],[-10,-52],[-18,-80],[-18,-71],[-1,-43],[-27,15],[-43,-63],[-18,-34],[-18,-54],[20,-67],[13,-40],[-2,-65],[-5,-49],[5,-68],[3,-65],[24,-35],[9,-37],[17,-4],[16,-10],[17,-6],[14,-32],[11,-44],[5,-36],[26,-7],[23,17],[13,22],[22,-24],[13,-20],[8,-50],[-13,-6],[-19,-20],[-29,-40],[-8,-21],[-15,-36],[-13,-45],[-24,-28],[-17,-46],[-8,-45],[-12,-25],[-16,-36],[-15,-17],[-13,7],[-11,-51],[8,-53],[-8,-65],[32,-97],[-9,-32],[-10,-71],[-13,-52],[-8,-43],[-10,-42],[-12,-68],[-3,-46],[9,-38],[4,-74],[-8,-34],[-18,-16],[-17,-25],[-9,-29],[-14,-16],[-15,-48],[-4,-45],[18,-28],[17,-52],[-12,-15],[-13,-26],[-20,-49],[-4,-46],[1,-195],[-2,-41],[-27,-6],[-18,-10],[-14,-4],[-18,12],[-38,-7],[-22,48],[-23,39],[-22,-19],[-36,-82],[-21,-7],[-11,29],[-21,-8],[-15,-29],[-8,-40],[-16,-23],[-25,-48],[-31,-66],[-2,-56],[3,-56],[8,-56],[3,-37],[-9,-30],[-14,-15],[5,-43],[2,-117],[-14,-8],[-42,-73],[-26,-1],[-23,-35],[-17,-11],[-14,-46]],[[90189,29738],[-16,27],[-17,103],[-34,-27],[-25,19],[-13,-6],[-16,2],[-25,5],[-28,-2],[-23,13],[-24,50],[0,67],[-9,65],[8,66],[8,62],[6,36],[9,52],[14,78],[-6,45],[-12,45],[-7,32],[-15,12],[-26,17],[-23,-10],[-14,-18],[-24,-12],[-34,-51],[-11,-33],[-24,-9],[-20,47],[-9,50],[-9,50],[-13,16],[-16,-7],[-22,-1],[-26,8],[-12,38],[-6,33],[-15,36],[-16,75],[7,39],[6,36],[7,62],[12,30],[10,28],[11,43],[-5,45],[-11,38],[-3,50],[-2,39],[-4,38],[-2,39],[-8,87],[-40,51],[3,48],[2,75],[-4,55],[6,77],[10,42],[14,43],[9,43],[-10,27],[-12,39],[-14,32],[0,53],[-6,87],[-21,30],[-22,-6],[-14,4],[-5,62],[-12,28],[-12,15],[-7,44],[-13,53],[-9,41],[-3,44],[-4,63],[5,41],[12,35],[6,74],[-19,47],[14,72],[16,21],[16,59],[12,24],[10,32],[11,28],[-2,51],[-5,38],[8,57],[13,20],[18,11],[14,12],[20,25],[10,42],[-9,59],[-12,15],[-21,28],[-9,36],[-12,55],[-6,116],[11,30],[5,55],[-14,30],[1,75],[7,33],[8,59],[12,53],[-1,45],[-12,41],[10,46],[-5,37],[14,52],[19,48],[8,43],[4,86],[-16,2],[-31,23],[-11,26],[-15,24],[-5,58],[9,41],[-16,41],[-13,20],[-1,52],[-10,32],[-14,21],[-10,50],[10,30],[26,22],[28,51],[12,16],[-6,43],[-13,33],[-9,39],[-17,8],[-20,18],[-14,49],[-28,67],[11,39],[6,35],[-2,66],[0,50],[-19,26],[-29,14],[-21,44],[-20,-27],[-13,-58],[-20,7],[-20,-1],[-17,-5],[-15,-36],[-30,23],[-11,31],[-28,60],[-1,39],[-9,36],[-21,-32],[-19,-7],[-34,5],[-31,-34],[-17,-11],[-16,-8],[-12,-15],[-19,-16],[-12,-39],[2,-43],[0,-62],[-5,-35],[0,-25],[0,-51],[-3,-38],[-9,-27],[-3,-7],[-17,-5],[-13,20],[-21,7],[-1,1],[-20,-50],[-17,-11],[-12,-28],[-12,-61],[-24,-27],[-38,-79],[-32,-1],[-37,-15],[-27,20],[-23,21],[-13,23],[-1,40],[-7,65],[-15,-7],[-19,-20],[-17,8],[-8,-44],[-28,-53],[-16,16],[-17,-30],[-14,11],[-9,46],[-17,12],[-16,13],[-12,36],[11,86],[11,55],[9,98],[-55,67],[5,81],[9,65],[3,39],[7,46],[9,41],[9,30],[29,22],[0,41],[6,42],[-3,42],[14,40],[16,8],[18,18],[34,65],[-9,39],[-3,44],[-3,41],[-15,29],[-7,38],[0,54],[-3,69],[-19,89],[17,20],[24,29],[13,24],[-3,55],[-9,64],[-9,46],[-17,81],[-11,62],[2,52],[7,74],[-10,68],[-3,23],[-14,29],[-13,30],[-6,2],[-134,57],[-128,54],[-12,5],[-13,6],[-20,8],[-24,10],[-20,8],[-18,7],[-17,7],[-149,69],[-26,12],[-71,30],[-152,64],[-472,198],[3,72],[-3,52],[11,36],[20,52]],[[92102,26373],[-108,297],[-17,48],[-17,21],[-2,3],[-18,-8],[-22,9],[-12,17],[-13,16],[-12,13],[-15,10],[-14,23],[-27,-6],[-16,3],[-19,20],[-12,26],[-9,34],[-12,29],[-15,34],[-7,33],[-10,30],[-1,52],[-2,66],[-6,33],[2,52],[-21,42],[0,38],[-3,57],[3,51],[-38,47],[-10,34],[6,48],[-16,52],[-10,35],[-26,15],[-13,10],[-13,15],[-13,25],[-11,34],[-10,28],[-15,15],[-15,18],[-19,18],[-11,20],[-17,37],[-12,23],[-16,18],[-25,41],[-17,38],[-14,40],[-21,20],[-6,11],[-7,13],[-29,106],[-13,23],[-10,27],[-5,41],[-15,23],[-12,28],[-13,10],[-26,10],[-17,-6],[-17,12],[-11,-31],[-7,-39],[-9,-51],[-27,-27],[-19,4],[-29,0],[-13,18],[-22,-34],[-13,-4],[-31,-71],[-9,-28],[-11,-53],[-33,-26],[-14,-75],[-7,-65],[-26,14],[-22,-6],[-18,12],[-19,23],[-18,-19],[-15,-22],[-24,-20],[-9,-39],[-1,-43],[-18,-106],[-19,-13],[-10,-38],[-11,-30],[-23,-29],[-17,8],[-19,23],[-12,18],[-17,3],[-20,27],[-12,17],[-26,-42],[-11,-26],[-13,21],[-18,5],[-12,28],[-2,83],[-16,24],[-26,6],[-21,-16],[-23,-17],[-14,42],[-12,22],[-10,39],[9,38],[18,52],[12,28],[6,33],[-3,50],[2,41],[-15,19],[-32,13],[-17,41],[-15,-3],[-12,-14],[-14,-20],[-20,13],[-14,-4],[-16,1],[-6,38],[-20,-12],[-6,51],[7,47],[6,40],[21,14],[15,-9],[20,26],[12,44],[9,51],[-8,48],[-17,21],[-4,46],[2,41],[12,22],[0,52],[-33,94],[-16,-24],[-16,-24],[-12,21],[-17,31],[-24,14],[-21,35],[-14,-32],[-18,-35],[-13,-35],[-15,0],[-15,6],[-19,-1],[-19,-24],[-22,12],[-18,36],[-27,-31],[-18,39],[-8,62],[13,87],[16,60],[-9,52],[-15,-17],[-17,29],[2,80],[-13,11],[-32,59],[-25,19],[-8,73]],[[89901,29217],[11,49],[18,46],[13,17],[10,31],[17,64],[6,38],[6,35],[17,30],[17,57],[24,0],[22,-28],[13,-13],[26,42],[14,22],[22,50],[43,7],[12,15],[-3,59]],[[95145,46947],[62,-132],[31,-63],[10,-11],[4,-6],[22,-15],[3,-2],[18,-5],[30,-25],[7,-6],[11,-24],[7,-27],[3,-39],[2,-135],[1,-27],[22,-233],[3,-11],[8,-15],[11,-22],[19,-20],[10,-18],[3,-6],[5,-12],[3,-16],[2,-7],[3,-31],[3,-60],[2,-92],[2,-9],[7,-29],[21,-60],[2,-6],[19,-52],[13,-38],[54,-79],[9,-14],[48,-129],[-1,-76],[-26,-72],[-11,3],[-34,9],[0,-5],[-15,-77],[-1,-4],[-1,-6],[-1,-6],[0,-6],[7,-189],[41,-110],[9,-41],[8,-161],[-4,-12],[-44,-111],[-6,-16],[-6,-20],[0,-1],[-2,-10],[-4,-18],[-3,-19],[1,-30],[1,-10],[6,-13],[13,-8],[8,0],[21,22],[22,31],[19,26],[1,-1],[0,-2],[2,-3],[1,-1],[10,-16],[9,-23],[0,-3],[0,-72],[0,-6],[1,-7],[0,-1],[6,-120],[0,-5],[1,-7],[0,-6],[1,-6],[1,-6],[1,-6],[1,-6],[2,-5],[0,-2],[5,-16],[1,-4],[1,-5],[2,-4],[2,-5],[2,-4],[1,-2],[8,-13],[0,-1],[2,-3],[2,-3],[1,0],[10,-12],[1,-1],[3,-2],[1,-1],[13,-9],[1,-1],[2,-1],[2,0],[3,0],[7,0],[3,0],[2,0],[2,1],[1,1],[9,6],[2,1],[2,2],[2,2],[2,3],[2,2],[19,30],[1,1],[2,4],[19,77],[6,41],[0,3],[1,5],[7,54],[2,10],[1,0],[10,-1],[14,-49],[26,-90],[0,-3],[2,-5],[2,-5],[64,-159],[1,-4],[2,-3],[2,-4],[9,-16],[20,-35],[9,-17],[6,-11],[44,-88],[39,-65],[0,-1],[53,-85],[2,-2],[1,-1],[18,-24],[1,-2],[2,-2],[2,-2],[1,-1],[16,-10],[1,-1],[2,-1],[2,-1],[1,0],[9,-1],[2,-1],[3,1],[2,0],[2,1],[31,17],[0,1],[2,1],[2,2],[2,1],[20,23],[11,12],[1,1],[2,2],[9,13],[44,62],[32,39],[8,6],[2,0],[15,-5],[7,-4],[4,-3],[13,-11],[9,-10],[13,-22],[21,-61],[11,-43],[0,-2],[2,-5],[1,-5],[2,-4],[0,-2],[8,-17],[1,-3],[2,-4],[2,-3],[1,-3],[10,-15],[1,0],[50,-73],[18,-32],[5,-14],[1,-3],[3,-80],[0,-4],[4,-90],[0,-7],[1,-6],[1,-7],[0,-6],[1,-6],[1,-6],[1,-2],[15,-72],[1,-4],[1,-5],[2,-5],[1,-5],[2,-5],[2,-4],[2,-4],[2,-3],[2,-3],[2,-3],[2,-2],[2,-2],[1,-1],[12,-9],[13,-11],[13,-14],[19,-21],[9,-11],[0,-1],[1,-2],[-1,-6],[-31,-122],[-1,-3],[-2,-6],[-6,-116],[3,-28],[0,-4],[1,-6],[1,-6],[1,-6],[1,-6],[1,-3],[6,-25],[14,-59],[2,-5],[1,-5],[43,-142],[1,-2],[6,-19],[1,-2],[2,-5],[0,-1],[8,-18],[1,-3],[2,-4],[2,-4],[7,-12],[2,-3],[2,-3],[2,-1],[17,-18],[3,-2],[2,-2],[11,-6],[3,-2],[2,0],[2,0],[21,0],[2,0],[3,0],[1,1],[26,13],[1,1],[2,1],[23,16],[1,0],[2,2],[2,2],[2,3],[1,2],[16,24],[1,2],[2,3],[2,4],[2,4],[0,1],[7,17],[2,4],[5,4],[6,1],[10,-1],[2,-3],[15,-21],[0,-1],[2,-3],[3,-2],[2,-2],[31,-23],[2,-2],[1,0],[28,-14],[2,-1],[2,-1],[2,0],[3,0],[1,0],[50,28],[1,1],[2,2],[2,3],[2,3],[2,3],[0,1],[13,25],[1,2],[2,3],[1,5],[2,4],[2,5],[1,5],[2,5],[1,5],[3,15],[0,2],[1,5],[1,6],[4,24],[3,25],[1,7],[1,6],[0,6],[0,1],[3,38],[0,5],[0,7],[0,4],[0,7],[-1,63],[0,2],[0,7],[0,4],[-3,43],[0,2],[0,7],[-1,3],[-5,50],[-1,3],[0,6],[-1,6],[-1,6],[-1,4],[-28,178],[-13,87],[-5,34],[1,14],[0,6],[4,29],[1,5],[3,10],[3,9],[3,8],[3,6],[1,3],[8,11],[6,7],[1,2],[3,2],[2,1],[5,2],[86,18],[7,1],[8,-1],[12,-20],[10,-21],[2,-5],[1,-2],[1,-8],[1,-10],[-1,-12],[0,-6],[-20,-89],[-1,-5],[-1,-6],[-1,-6],[-1,-6],[0,-1],[-4,-28],[0,-6],[-1,-5],[-2,-28],[0,-1],[0,-7],[0,-6],[0,-7],[0,-17],[0,-7],[0,-7],[0,-6],[1,-7],[0,-6],[1,-6],[1,-6],[1,-6],[1,-1],[5,-26],[1,-4],[0,-2],[11,-45],[1,-4],[2,-5],[1,-5],[13,-36],[19,-59],[1,-8],[1,-12],[0,-11],[0,-3],[-63,-152],[-7,-12],[-23,-40],[-6,-12],[-2,-6],[-2,-5],[-4,-13],[-26,-81],[1,-9],[1,-12],[0,-4],[0,-7],[1,-6],[1,-3],[2,-18],[3,-30],[0,-2],[1,-6],[1,-6],[1,-6],[0,-1],[3,-14],[1,-5],[1,-2],[5,-20],[1,-3],[1,-5],[2,-5],[1,-4],[1,-2],[5,-12],[1,-3],[2,-4],[1,-1],[9,-17],[2,-3],[13,-22],[2,-3],[1,-2],[14,-18],[1,0],[2,-3],[2,-2],[2,-1],[3,-1],[2,-1],[1,0],[12,-1],[1,0],[11,0],[2,0],[2,1],[2,1],[3,1],[2,2],[1,1],[13,14],[1,1],[2,3],[1,1],[23,35],[2,2],[1,3],[15,28],[20,27],[18,13],[5,2],[11,-6],[3,-4],[-1,-3],[-58,-230],[0,-1],[-1,-5],[-1,-6],[-1,-3],[-6,-36],[0,-3],[-1,-6],[0,-7],[-1,-6],[0,-7],[-1,-7],[0,-1],[0,-25],[0,-6],[0,-6],[0,-7],[1,-6],[0,-7],[1,-6],[1,-7],[1,-6],[1,-6],[1,-5],[0,-2],[32,-96],[11,-15],[13,-11],[17,0],[23,9],[16,13],[16,19],[7,5],[7,-5],[5,-15],[7,-295],[-2,-35],[0,-3],[0,-7],[0,-4],[-1,-30],[0,-2],[0,-26],[1,-7],[0,-7],[0,-6],[1,-7],[0,-1],[5,-55],[1,-4],[1,-7],[1,-6],[0,-3],[5,-26],[1,-3],[1,-5],[1,-6],[1,-4],[7,-21],[0,-1],[1,-4],[1,-3],[7,-17],[0,-1],[2,-4],[2,-4],[1,-2],[10,-17],[0,-2],[2,-3],[2,-2],[9,-11],[1,-1],[2,-2],[0,-1],[10,-9],[2,-1],[2,-2],[2,-1],[12,-5],[1,0],[14,-5],[2,-1],[2,0],[1,0],[13,1],[2,0],[2,1],[2,1],[1,1],[16,10],[1,1],[2,2],[2,2],[2,3],[2,3],[1,0],[33,56],[4,6],[19,29],[15,18],[13,11],[13,8],[17,3],[5,-1],[58,-29],[4,-4],[1,-2],[2,-3],[0,-1],[24,-124],[13,-65],[0,-1],[1,-6],[2,-5],[1,-5],[20,-66],[14,-201],[1,-6],[0,-7],[1,-6],[1,-6],[3,-114],[-5,-19],[-6,-19],[-5,-11],[-6,-7],[-11,-6],[0,-1],[-19,-11],[-45,-11],[-37,-5],[-1,0],[-2,-1],[-1,0],[-29,-12],[-1,-1],[-3,-2],[-2,-2],[-2,-2],[-17,-19],[0,-1],[-2,-2],[-2,-4],[-2,-3],[-1,-1],[-8,-18],[-14,-42],[-19,-114],[19,-68],[7,-5],[74,-52],[36,-68],[9,-38],[2,-57],[-13,-82],[-2,-86],[0,-43],[14,-63],[65,-64],[53,-5],[2,2],[11,10],[14,13],[22,53],[10,92],[9,57],[20,59],[41,16],[70,-11],[40,16],[44,0],[6,-81],[5,-43],[7,-76],[3,-6],[7,-20],[24,-61],[12,10],[101,63],[2,1],[1,1],[12,10],[6,3],[37,6],[123,-13],[1,0],[2,1],[2,0],[8,2],[9,-3],[8,-8],[3,-4],[1,-4],[2,-13],[5,-57],[0,-2],[1,-7],[1,-6],[1,-6],[4,-22],[1,-5],[1,-6],[1,-5],[2,-6],[1,-4],[1,-3],[5,-12],[1,-3],[2,-4],[1,-4],[2,-3],[1,-1],[34,-55],[7,-15],[12,-37],[13,-49],[3,-12],[1,0],[13,-49],[2,-9],[2,-15],[1,-10],[0,-8],[-4,-41],[-4,-29],[0,-3],[-1,-6],[-1,-7],[0,-6],[0,-7],[0,-2],[-1,-28],[0,-4],[0,-7],[1,-7],[0,-6],[1,-7],[0,-6],[0,-1],[4,-27],[0,-5],[1,-6],[1,-6],[2,-6],[1,-5],[1,-5],[1,-1],[7,-24],[2,-4],[1,-5],[2,-4],[2,-4],[1,-1],[3,-7],[2,-2],[2,-3],[2,-3],[2,-2],[2,-2],[1,-1],[7,67],[30,6],[31,-58],[14,6],[10,0],[7,-1],[43,-28],[12,-16],[10,-18],[4,-10],[0,-6],[-1,-35],[-2,-27],[0,-5],[0,-7],[0,-2],[-1,-18],[0,-5],[0,-6],[1,-7],[0,-6],[0,-7],[1,-6],[1,-5],[3,-20],[0,-2],[1,-6],[1,-6],[1,-6],[1,-5],[2,-5],[1,-5],[2,-5],[5,-12],[2,-4],[2,-4],[2,-3],[2,-3],[2,-3],[0,-1],[11,-12],[2,-1],[2,-2],[2,-2],[2,-1],[3,0],[2,-1],[2,1],[1,0],[10,2],[2,1],[2,1],[2,1],[3,2],[2,2],[2,3],[2,3],[2,4],[2,4],[2,4],[10,26],[1,4],[2,5],[2,5],[1,6],[1,5],[5,22],[0,1],[1,6],[1,6],[0,5],[4,30],[0,1],[6,48],[0,1],[1,6],[0,6],[1,5],[4,76],[0,3],[0,7],[0,8],[0,52],[0,5],[0,6],[-1,7],[0,6],[-1,4],[-7,62],[0,3],[-1,6],[-10,76],[0,1],[-1,6],[-2,6],[-5,26],[-3,36],[-3,80],[1,35],[1,8],[4,9],[6,8],[5,3],[15,-1],[9,-4],[4,-6],[1,-3],[4,-39],[4,-39],[0,-2],[1,-7],[0,-6],[1,-6],[1,-6],[2,-6],[0,-2],[5,-19],[1,-3],[1,-5],[2,-5],[1,-5],[2,-4],[2,-3],[34,-66],[68,-131],[0,-1],[2,-3],[2,-3],[2,-3],[1,-1],[2,-2],[7,-8],[1,-2],[3,-2],[2,-1],[2,-1],[3,-1],[2,0],[2,0],[2,0],[5,2],[1,0],[2,1],[12,7],[2,1],[2,2],[2,3],[1,1],[20,25],[-17,52],[53,86],[29,6],[27,-59],[15,-173],[25,-33],[74,-9],[18,30],[46,155],[30,101],[19,63],[22,18],[21,-30],[-6,-95],[9,-60],[32,-18],[7,56],[18,6],[0,1],[2,0],[0,1],[2,1],[10,7],[2,2],[3,2],[2,3],[2,3],[2,4],[13,25],[6,11],[9,13],[2,1],[13,0],[76,-11],[2,0],[2,0],[2,1],[3,1],[2,1],[2,2],[2,3],[2,2],[16,22],[2,3],[2,4],[2,3],[1,5],[1,0],[15,111],[31,39],[54,12],[31,-46],[11,-17],[29,-83],[-13,-69],[-30,-106],[-145,-287],[-224,-453],[-280,-555],[-149,-302],[-282,-555],[-5,-12],[-62,-142],[-69,-149],[-35,-75],[-28,-62],[-56,-120],[-200,-410],[-226,-452],[-170,-337],[-172,-350],[-215,-423],[-228,-443],[-221,-428],[-275,-532],[-126,-268],[-92,-184],[-34,-68],[-52,-106],[-48,-97],[-178,-355],[-238,-480],[-193,-387],[-156,-310],[-88,-171],[-66,-132],[-149,-283],[-20,-38],[-4,-7],[-7,-22],[-9,-26],[-9,-18],[-24,-50],[-12,-24],[-6,-13],[-15,-33],[-10,-44],[-6,-9],[-6,-10],[-4,-85],[-8,-53],[-10,-29],[-2,-63],[-19,-42],[-23,-31],[-21,-46],[-12,-45],[-39,-14],[-24,-8],[-22,-16],[-14,-21],[-31,-12],[-19,14],[-7,-33],[-6,-40],[-23,15],[-17,35],[-23,-6],[-19,9],[-6,-34],[1,-47],[11,-34],[-3,-39],[7,-36],[6,-55],[-7,-30],[-15,-22],[-36,-19],[-21,-1],[-17,-103],[5,-36],[-5,-41],[-26,-38],[-38,-36],[-16,-30],[-78,-14],[-43,-16],[-13,-32],[-27,-30],[-29,-11],[-21,-28],[-36,-38],[-32,-32],[-16,5],[-21,-6],[-14,3],[-23,-1],[-14,9],[-14,-21],[-15,3],[-14,-28],[-17,2],[-11,-11],[-17,-23],[-26,-4],[-17,-25],[-18,0],[-22,-22],[-29,-48],[-20,2],[-35,-23],[-22,-10],[-34,-39],[-21,-13],[-26,-5],[-13,17],[-18,-30],[-26,-28],[-28,-9],[-24,-37],[-29,-27],[-28,-40],[-25,-7],[-18,2],[-15,-32],[-14,-21],[-11,-14],[-21,-14],[-27,-7],[-22,10],[-18,-9],[-11,26],[-17,-14],[-19,6],[-38,-79],[-4,-42],[-12,-25],[-15,8],[-8,32],[-20,-14],[-13,12],[-10,-8],[-42,-55],[-7,-36],[-20,-37],[-17,-14],[-18,-45],[-9,-33],[-17,1],[-16,20],[-14,-8],[-23,2],[-22,-95],[-31,-5],[-13,13],[-23,-42],[-23,5],[-12,21],[-15,-11],[-20,-29],[-29,-16],[-41,-43],[-12,-29],[-6,-5],[-53,-40],[-23,-26],[9,-35],[-8,-70],[-15,-32],[-17,-4],[-19,-60],[-14,-6],[-41,19],[-8,69],[-39,-14],[-12,-32],[-22,-35],[-14,-11],[-14,-6],[-4,-8],[-16,-29],[-42,-66],[3,-43],[-12,-24],[-6,-53],[-18,-31],[-16,-10],[-9,-20],[-26,-20],[-32,-93],[-15,-17],[-10,-18],[-15,-18],[-12,-34],[-24,31],[-6,51],[-11,17],[-16,-1],[-33,-23],[-29,-33],[-25,-67],[1,-43],[3,-23],[14,-48],[-12,-21],[-14,-45],[-5,-1],[-14,-2],[-19,13],[-15,3],[-22,-13],[-12,15],[-18,-19],[-30,-54],[-38,-74],[-21,14],[-24,-29],[-6,40],[-9,27],[-17,-34],[-29,-33],[-9,-12],[-11,-27],[-14,-21],[-32,-53],[-10,-15],[-75,-119]],[[39140,40275],[-9,-42],[-2,-14],[-6,-33],[-3,-24],[0,-15],[0,-15],[7,-30],[6,-19],[8,-16],[17,-23],[80,-77],[4,-1],[3,-2],[26,-21],[5,-4],[15,-13],[42,-38],[13,-14],[5,-14],[4,-28],[0,-33],[0,-1],[-34,-146],[-13,-40],[-15,16],[-10,66],[-11,50],[-13,-16],[0,-70],[-28,-25],[-16,5],[-21,44],[-17,-3],[-2,-41],[-7,-44],[-16,20],[-9,27],[-14,-5],[-11,-39],[24,-66],[-3,-39],[-12,-24],[-15,9],[-13,32],[-5,47],[-15,8],[-7,-33],[1,-50],[12,-36],[0,-31],[0,-10],[-12,-35],[2,-45],[7,-41],[-28,25],[-7,15],[-11,19],[-16,25],[-9,8],[-1,0],[-1,1],[-23,7],[-17,21],[-43,69],[-15,31],[-4,11],[0,10],[7,17],[1,2],[11,18],[13,40],[5,16],[4,26],[0,13],[0,6],[1,5],[8,29],[0,1],[-19,56],[-21,-1],[-18,13],[-96,88],[-13,13],[-5,9],[-5,14],[-5,16],[-8,30],[-13,81],[-18,101],[-7,61],[-5,46],[-4,81],[0,1],[-10,19],[-3,0],[-33,9],[-1,0],[-71,-32],[-26,-34],[-3,-16],[0,-3],[-3,-13],[-6,-2],[-8,-3],[-3,-1],[-12,13],[-10,27],[-2,9],[0,4],[0,11],[0,3],[-42,-104],[0,-9],[-4,-97],[0,-10],[-45,-134],[-19,-31],[-17,-11],[-14,4],[-42,37],[-64,22],[-55,20],[-11,3],[-12,-1],[-4,-6],[-1,-2],[-9,-36],[-9,-43],[-19,-93],[-2,-8],[-18,-85],[-2,-26],[-1,-11],[3,-17],[25,-59],[14,-13],[15,-9],[5,-38],[5,-45],[10,-31],[15,-31],[2,-61],[-2,-59],[1,-59],[1,-38],[10,-27],[9,-50],[12,-24],[53,-426],[18,-157],[36,-304],[10,-80],[35,-286],[15,-119],[27,-220],[8,-61],[8,-61],[12,-97],[16,-152],[12,-110],[7,-74],[7,-60],[9,-69],[18,-159],[14,-95],[26,-180],[13,-106],[5,-50],[16,-137],[32,-277],[1,-7],[11,-100],[6,-50],[19,-168],[0,-2],[15,-124],[1,-15],[5,-42],[27,-221],[14,-124],[5,-41],[11,-93],[9,-84],[19,-165],[20,-166],[25,-207],[13,-109],[14,-116],[13,-115]],[[38889,33887],[-62,-117],[-11,-21],[-4,-7],[-14,-28],[-17,-27],[-17,-27],[-33,-53],[-12,-19],[-15,-26],[-16,-28],[-75,-128],[-38,-71],[-35,-62],[-65,-118],[-17,-31],[-49,-95],[-11,-21],[-35,-60],[-30,-52],[-53,-94],[-46,-78],[-38,-68],[-52,-89],[-15,-26],[-22,-39],[-136,-236],[-142,-246],[-65,-114],[-21,-36],[-9,-17],[-28,-48],[-134,-237],[-310,-549],[-30,-52],[-36,-65],[-3,-5],[-56,-101],[-48,-85],[-1,0],[-13,-22],[-124,-238],[-8,10],[-38,63],[-4,7],[-5,5],[-27,26],[-22,22],[-19,24],[-2,5],[-17,46],[-7,21],[-15,79],[-32,241],[0,16],[2,44],[2,30],[4,22],[4,22],[2,40],[0,3],[-4,28],[-3,21],[-14,39],[-12,18],[-2,3],[-9,15],[-98,92],[-35,19],[-11,6],[-31,45],[-24,50],[-18,38],[-13,12],[-5,6],[-8,8],[-22,15],[-10,2],[-12,3],[-14,3],[-16,-7],[-137,-127],[-9,-12],[-13,-16],[-23,-29],[-4,-8],[-21,-44],[-7,-17],[-55,-226],[-2,-34],[0,-4],[-1,-17],[3,-97],[35,-485],[31,-129],[47,-143],[7,-20],[2,-10],[9,-41],[14,-72],[2,-8],[17,-66],[-21,-22],[-20,26],[-17,18],[-15,33],[-15,-1],[-9,27],[-14,-9],[-8,-45],[-5,44],[-13,1],[-12,-26],[-12,31],[-17,-2],[-13,-21],[-15,6],[-6,50],[-12,-23],[-9,-31],[5,-43],[-8,-38],[-11,-29],[10,-43],[7,-33],[-14,-33],[-3,-38],[-18,-20],[-16,11],[-4,-39],[10,-45],[4,-43],[15,-19],[-8,-30],[-9,-28],[-5,-40],[-15,-34],[-18,21],[1,-55],[-17,-40],[-16,0],[-7,-34],[9,-29],[-3,-43],[-19,-40],[-18,-32],[-9,-32],[-8,-35],[9,-47],[-12,-17],[-17,19],[-18,0],[-9,-34],[-4,-38],[-14,28],[3,-73],[14,-26],[-16,-22],[-13,-26],[-14,13],[-1,-60],[-13,-21],[-16,13],[-10,-26],[-13,8],[12,-26],[-12,-23],[12,-21],[-13,-22],[-8,-40],[10,-32],[-1,-58],[-12,-20],[-14,-33],[-17,8],[-13,-10],[4,-42],[17,4],[4,-75],[-17,-59],[-10,0],[-42,24],[-31,27],[-14,3],[-1,1],[-1,-1],[-7,-7],[-13,-13],[-42,-62],[-9,-13],[-17,-16],[-9,-8],[-19,-17],[-17,-32],[-53,-160],[-14,-44],[-38,-103],[-33,-85],[-13,-32],[-11,-38],[-2,-5],[-5,-19],[-15,-78],[-8,-135],[-2,-269],[-11,-36],[-10,-36],[-17,-60],[-8,-25],[-4,-9],[-8,-15],[-5,-8],[-1,-1],[-5,-5],[-18,-16],[-21,-19],[-38,-33],[-4,-63],[-26,-33]],[[35111,26982],[3,55],[-9,45],[0,1],[-1,5],[-1,6],[-2,5],[-1,5],[-2,4],[-2,5],[-2,4],[-2,3],[-2,3],[-2,3],[-2,2],[-1,1],[-10,9],[-21,86],[-6,16],[-16,42],[-25,69],[-14,28],[-24,26],[-20,14],[-4,0],[-18,0],[-8,4],[-10,5],[-14,0],[-15,1],[-19,20],[-7,16],[-2,10],[-10,35],[-1,4],[-1,17],[-2,39],[-1,21],[1,9],[2,60],[1,16],[11,58],[18,32],[11,8],[18,6],[27,-6],[18,-14],[24,-5],[10,23],[0,4],[-2,48],[-14,48],[-13,34],[-3,6],[-4,10],[-11,18],[-5,1],[-13,3],[-13,-20],[-5,-9],[-11,-16],[-28,2],[-3,0],[-1,3],[-17,41],[-12,89],[-12,30],[-11,16],[-16,3],[-53,-39],[-59,-8],[-17,-16],[-54,-106],[-58,18],[-30,42],[-23,55],[-3,6],[-1,6],[-2,10],[-1,6],[0,11],[-4,96],[-9,73],[-11,53],[-22,56],[-37,48],[-16,49],[-6,57],[3,187],[-9,48],[-4,12],[-3,8],[-3,7],[-17,34],[-15,19],[-47,5],[-4,-11],[-36,-87],[-9,-54],[-6,-9],[-2,-3],[-7,-10],[-3,1],[-11,2],[-12,3],[-8,9],[-3,4],[-4,5],[-3,5],[-13,34],[-7,17],[-58,169],[-73,220],[-2,5],[-5,16],[-13,79],[-3,45],[-1,20],[-1,12],[0,3],[10,204],[3,44],[10,89],[10,58],[5,25],[1,26],[4,141],[0,14],[-4,55],[-4,41],[-4,49],[-10,63],[-8,25],[-9,27],[-16,51],[-31,99],[-12,84],[-6,132],[-2,25],[-4,53],[1,26],[4,83],[0,16],[4,17],[5,29],[26,132],[3,17],[2,45],[0,13],[2,28],[-2,56],[-9,58],[-17,52],[-12,36],[-5,15],[-12,12],[-15,13],[-2,1],[-7,7],[-29,27],[-22,30],[-3,9],[-9,23],[-6,17],[-3,26],[-7,53],[-3,24],[-2,14],[0,3],[-10,21],[-16,34],[-14,29],[-22,47],[-1,3],[-1,3],[-17,35],[-4,9],[-2,4],[-24,66],[-13,34],[-10,41],[-6,23],[-32,119],[-6,29],[-5,30],[-11,45],[-8,40],[-5,27],[-13,88],[-4,13],[-14,47],[-31,77],[-55,139],[-40,62],[-3,5],[-10,15],[-22,47],[-15,32],[-10,11],[-67,76],[-18,19],[-72,56],[-9,2],[-7,2],[-67,53],[-38,30],[-51,21],[-94,10],[-7,-5],[-5,-3],[-90,15],[-8,1],[-27,-30],[-9,-19],[-53,-105],[-50,-99],[-3,-6],[-6,-9],[-28,-40],[-4,-8],[-32,-67],[-8,-17],[-4,-14],[-15,-68],[-12,-49],[-4,-82],[-9,-169],[-7,-59],[-22,-107],[-19,-72],[-9,-22],[-6,-15],[-25,-102],[-2,-17],[-8,-62],[-9,-64],[-3,-43],[-4,-62],[-14,-78],[-19,-62],[-6,-14],[-16,-31],[0,-1],[-1,-2],[-18,-22],[-67,-84],[-4,-5],[-25,-32],[-13,7],[-44,27],[-13,3],[-27,6],[-30,36],[-10,18],[-9,22],[-21,59],[-9,23],[-18,101],[-17,39],[-15,3],[-24,-28],[-2,-3],[-10,-12],[-2,0],[-13,3],[-1,0],[-11,18],[-10,17],[-18,49],[-10,43],[-6,67],[1,47],[2,52],[1,52],[11,39],[43,163],[57,176],[12,28],[39,118],[4,157],[16,57],[9,16],[54,92],[3,5],[3,3],[72,68],[38,47],[73,132],[73,107],[26,49],[1,1],[15,34],[7,17],[1,5],[5,37],[5,3],[8,7],[-21,89],[-36,146],[-11,48],[-3,22],[0,2],[-9,70],[1,26],[3,124],[1,16],[3,21],[4,22],[8,45],[7,22],[5,16],[4,21],[2,14],[1,4],[0,56],[-3,8],[-3,9],[-5,41],[-11,185],[2,44],[3,62],[-1,53],[-2,150],[-7,62],[-10,63],[-3,16]],[[32474,34669],[-6,35],[-6,36],[-10,137],[-1,30],[4,86],[9,61],[0,3],[0,2],[-1,79],[-13,69],[-26,76],[-6,47],[0,5],[-4,32],[2,41],[12,249],[11,215],[2,42],[-3,36],[-3,15],[-19,101],[0,6],[-1,89],[-1,68],[-3,95],[0,2],[-1,36],[-2,12],[-9,51],[-1,2],[-11,31],[-13,18],[-64,44],[-8,7],[-15,11],[-12,9],[-46,65],[-13,19],[-21,55],[-7,47],[-5,82],[-20,90],[-1,6],[-72,200],[-19,36],[-3,5],[-20,30],[2,9],[14,87],[2,12],[48,5],[8,1],[3,14],[3,19],[16,11],[5,1],[10,-7],[14,-24],[9,-20],[19,-59],[5,-25],[0,-4],[3,-31],[1,-18],[-3,-34],[0,-19],[0,-20],[0,-3],[7,-26],[1,-2],[9,-15],[14,-21],[2,-3],[0,-3],[-5,-77],[-1,-18],[0,-29],[4,-28],[10,-46],[12,-33],[9,-13],[8,-5],[3,-2],[1,1],[13,6],[2,1],[3,3],[3,5],[13,26],[8,21],[33,126],[9,34],[7,57],[7,36],[3,13],[3,12],[2,5],[4,10],[7,16],[1,1],[7,7],[4,0],[22,-13],[98,374],[19,73],[9,34],[13,47],[50,189],[10,32],[12,47],[15,55],[37,140],[72,275],[12,46],[8,30],[38,144],[34,128],[13,51],[20,75],[32,122],[40,151],[55,206],[13,51],[13,50],[13,48],[14,53],[13,50],[9,37],[27,104],[12,46],[12,34],[18,43],[31,72],[32,74],[35,83],[25,52]],[[53232,39883],[19,-26],[9,39],[17,13],[15,15],[15,28],[16,10],[14,3],[13,1],[16,-6],[15,-6],[15,-11],[12,-27],[16,-27],[14,-20],[13,-20],[14,-38],[18,-10],[9,-32],[14,-29],[8,-41],[12,-24],[13,-30],[2,-42],[-6,-51],[0,-42],[5,-38],[3,-51],[12,-52],[10,-28],[1,-40],[10,-40],[12,-18],[-3,-47],[12,-22],[12,-27],[3,-40],[1,-62],[2,-95],[16,-26],[-1,-38],[8,-45],[0,-46],[-10,-56],[-2,-38],[-2,-38],[0,-52],[-1,-41],[4,-36],[0,-52],[-5,-45],[1,-38],[10,-30],[11,-26],[7,-51],[8,-40],[-1,-66],[8,-32],[3,-48],[7,-34],[13,-21],[11,-20],[12,-28],[-9,-33],[8,-32],[10,-35],[7,-34],[10,-31],[25,-48],[13,-27],[11,-23],[11,-24],[9,-28],[12,-24],[13,-61],[11,-23],[12,-38],[3,-43],[-4,-46],[4,-60],[9,-37],[-7,-33],[3,-47],[6,-51],[-4,-52],[3,-39],[11,-37],[14,-42],[7,-37],[16,-51],[5,-42],[2,-44],[0,-49],[-1,-43],[10,-52],[6,-48],[6,-34],[11,-61],[2,-58]],[[53957,36536],[-19,45],[-15,-8],[-15,20],[-10,24],[-14,-25],[-11,-20],[-13,2],[-15,30],[-13,-26],[-14,-9],[-21,-15],[-21,-13],[-13,8],[-12,33],[-15,-3],[-6,44],[-15,-28],[-12,-21],[-13,7],[-14,32],[-16,4],[-11,28],[-15,43],[-10,47],[-4,41],[4,39],[3,38],[-4,47],[3,43],[-14,25],[-5,41],[-3,49],[-12,11],[-12,21],[-12,-25],[-9,34],[-11,24],[-5,43],[-16,20],[-20,-3],[-19,-25],[-18,-15],[-13,-47],[-9,-71],[-11,-32],[-13,-27],[-16,5],[-11,-27],[-13,-8],[-14,-20],[-8,-38],[-24,14],[-8,-51],[-20,-22],[-2,-40],[-1,-51],[6,-45],[10,-34],[-6,-44],[-17,-8],[-37,-53],[-18,-29],[-4,-37],[-14,5],[-13,-16],[-10,-27],[-14,-13],[-16,-7],[-9,-28],[-2,-54],[-2,-45],[-9,-34],[-4,-48],[1,-74],[-12,-27],[-20,13],[-14,-4],[-1,-2],[-15,-19],[-19,-3],[-13,22],[-16,18],[-10,22],[-2,3],[-13,6],[-18,21],[-12,-9],[-11,-9],[-9,-33],[-17,17],[-8,31],[-3,26],[-4,43],[-21,6],[-11,21],[-22,-6],[-24,53],[-11,33],[-17,-9],[-11,-25],[-24,-27],[-7,-14],[-5,-11],[-18,-6],[-3,8],[-7,16],[-19,1],[-14,3],[-19,8],[-15,13],[-4,-4],[-10,-10],[-22,38],[-2,13],[-6,33],[0,47],[-15,37],[-12,17],[-11,-4],[-8,-3],[-3,6],[-9,17],[-32,5],[-8,-7],[-5,-5],[-19,14],[-1,0],[-13,12],[-6,-5],[-9,-5],[-5,10],[-7,14],[-10,-5],[-4,-3],[-2,10],[-5,25],[-7,52],[-22,8],[-2,1],[-4,15],[-5,23],[-3,37]],[[52413,36700],[-8,54],[-15,-47],[-10,-41],[-12,15],[-21,-4],[-11,-9],[-6,-6],[-14,21],[-3,5],[-14,15],[-26,23],[-15,-11],[-16,-23],[-20,-23],[-9,-37],[0,-9],[-1,-39],[-15,-14],[-8,10],[-14,19],[-19,5],[0,-4],[-2,-37],[-12,-25],[-13,-7],[-14,-133],[-8,-47],[-12,-31],[-20,-10],[-16,8],[-4,40],[-3,52],[-9,28],[-23,-7],[-17,-7],[-8,33],[-23,70],[-5,74],[-1,44],[-16,-29],[-12,19],[-10,32],[-30,-40],[-29,5],[-12,34],[-5,38],[-10,24],[-12,21],[-14,2],[-15,1],[-15,2],[-14,9],[-13,8],[-16,5],[-1,-40],[-9,-49],[0,-42],[-12,-26],[-9,-35],[5,-47],[-9,-39],[-9,-29],[-9,-46],[-10,-34],[-1,-46],[-3,-46],[14,-17],[8,-35],[-1,-40],[-9,-45],[6,-42],[-12,-13],[-8,-35],[-19,-25],[-18,-7],[-22,-88],[-19,-10],[-28,1],[-9,-30],[-12,-23],[-12,-13],[-13,17],[-15,16],[-17,-34],[-17,-19],[-10,-37],[-5,-49],[-21,-32],[-11,-40],[-6,-22],[-3,-9],[-10,-43],[-14,-4],[-12,-19],[-8,-41],[-6,-39],[-9,-26],[-22,-33],[-2,-47],[8,-34],[7,-33],[2,-45],[1,-44],[16,-21],[12,-20],[16,13],[9,-45],[8,-30],[6,-36],[1,-41],[2,-37],[9,-33],[1,-39],[0,-42],[10,-32]],[[51442,34895],[-41,11],[-18,2],[-83,7],[-114,8],[-25,9],[-46,6],[-26,3],[-98,10],[-53,9],[-55,6],[-17,2],[-16,2],[-17,2],[-38,5],[-53,7],[-87,10],[-67,9],[-41,6],[-63,7],[-40,5],[-93,95],[-1,1],[-114,110],[-15,14],[-2,0],[-94,19],[-15,3],[-172,32],[-111,21],[-1,0],[-71,13],[-82,16],[-17,2],[-34,5],[-16,3],[-25,5],[-96,17],[-66,13],[-40,9],[-19,2],[-230,42],[-128,23],[-266,49],[-154,26],[-98,20],[-19,4],[-78,12],[-17,5],[-6,1],[-18,3]],[[59690,42788],[-6,-130],[-4,-100],[-20,-503],[-1,-38],[-1,-24],[-2,-61],[0,-1],[-6,-153],[-16,-296],[0,-11],[1,-31],[-5,-153],[-2,-47],[-2,-63],[-7,-100],[-18,-553],[-16,-431],[-1,-3],[-4,-150],[-2,-42],[-2,-54],[-1,-27],[-1,-27],[-1,-49],[-8,-198]],[[59565,39543],[-7,-247],[-14,-456],[-9,-306],[-6,-229],[-5,-149],[-4,-150],[-2,-64],[-3,-101],[-2,-72],[5,-92],[-1,-187],[0,-203],[2,-188],[3,-39],[3,-274],[2,-331],[-1,-96],[-3,-161],[-3,-191],[-1,-55],[-5,-252],[0,-45],[0,-20],[-1,-88],[-2,-123],[-1,-61],[-4,-165],[-1,-203],[-5,-196],[-1,-235],[0,-13],[-7,-5],[-21,31],[-18,-6],[-16,-23],[-14,1],[-8,42],[-13,18],[-18,25],[-14,34],[-11,33],[-19,4],[-25,-13],[-16,-1],[-13,36],[-16,18],[-16,-25],[-17,-29],[-6,-21],[2,-32],[-17,-16],[-14,9],[-27,-22],[-12,-25],[-15,9],[-10,31],[-16,-6],[-5,-36]],[[59117,34582],[-21,12],[-17,39],[-21,-7],[-25,84],[-12,15],[-7,37],[-15,-8],[-15,-27],[-23,10],[-11,26],[-23,3],[-4,40],[-12,20],[-1,56],[-16,3],[-10,41],[-14,41],[-15,33],[-37,41],[-11,30],[8,42],[-1,58],[-29,12],[9,45],[2,37],[-14,20],[-17,-7],[-15,5],[-20,5],[-10,27],[-11,37],[-15,17],[-14,59],[-15,40],[-16,2],[-22,-12],[-16,-17],[-23,36],[4,39],[5,48],[-9,58],[-12,23],[-10,38],[-28,-17],[-18,59],[-18,30],[-23,28],[-18,11],[-10,44],[-7,38],[-18,46],[-5,60],[-14,6],[-10,54],[-10,30],[-21,-10],[-13,22],[-16,-5],[-17,-14],[-10,-44],[-9,-55],[-11,-43],[-16,-21],[-17,-5],[-14,-12],[-12,-30],[-2,-4],[-22,-5],[-7,39],[-8,39],[-8,39],[-12,19],[-10,52],[-14,-26],[-11,-23],[-22,-7],[-16,5],[-17,42],[-4,40],[-17,35],[-17,7],[-16,10],[-11,48],[-17,7],[-13,32],[-1,53],[1,60],[-4,40],[-8,34],[-19,11],[-12,26],[-14,-5],[-19,-19],[-15,24],[-7,39],[-18,10],[-24,19],[-21,11],[5,-53],[-9,-30],[-19,-25],[0,-41],[4,-51],[0,-43],[-14,-41],[-14,-30],[-16,-22],[-11,-23],[-18,-17],[-23,-4],[-37,-40],[-10,-44],[4,-40],[-19,-28],[-19,-12],[-8,35],[-12,72],[-10,24],[-15,-20],[-22,8],[-18,43],[-14,-24],[-19,-77],[5,-47],[-17,-44],[10,-27],[-14,-67],[-21,-11],[-19,34],[-16,39],[-13,-43],[-7,-40],[-6,-49],[-19,-28],[-7,-36],[-19,-16],[-14,7],[-4,40],[-20,10],[-39,2],[-16,0],[-13,21],[-6,17],[-11,6],[-6,-8],[-18,-5],[-14,-17],[-21,-2],[-19,-3],[-17,-40],[-18,-16],[-17,-5],[-6,-38],[-7,-42],[-21,-6],[-2,-48],[-13,-12],[-4,-41],[5,-37],[-6,-42],[-13,-22],[-10,-38],[-26,18],[-20,-9],[-11,-32],[0,-74],[-8,-51],[-5,-54],[-2,-46],[-18,-24],[-28,-9],[-20,-19],[-15,-53],[-11,-53],[-16,-51],[-4,-45],[-11,-43],[-17,8],[-19,14],[-17,-13],[-15,-31],[-16,-16],[-14,-5],[-21,22],[-21,-12],[-9,-30],[-2,-40],[-18,-20],[-14,8],[-19,16],[-21,-30],[-30,-11],[-21,-2],[-17,29],[-15,-2],[-23,-13],[-6,46],[-1,39],[-5,63],[-17,30],[2,60],[-10,25],[-16,26],[-3,4],[-21,23],[-2,44],[-8,63],[-13,45],[12,23],[6,35],[3,46],[5,43],[-6,42],[-16,31],[-22,13],[-20,14],[-27,2],[-8,1],[-7,1],[-22,22],[-19,38],[-6,38],[1,46],[-10,31],[-13,-14],[-17,-26],[-16,19],[-10,43],[-14,2],[-17,1],[-17,37],[-13,23],[-14,32],[-12,42],[-16,-9],[-21,5],[-19,22],[-15,19],[-2,58],[-14,18],[-15,4],[-22,2],[-9,31],[-6,36],[-4,38],[-12,26],[-18,-10],[-18,12],[-18,-19],[-18,-2],[-23,-16],[-18,20],[-3,43],[-8,44],[-20,25],[-18,7],[-14,41],[-15,23],[0,44],[-10,34],[-8,33],[-13,13],[-12,20],[-3,37],[-8,29],[-15,9],[-15,8],[-15,37],[-14,-10],[-13,-16],[-1,-1],[-13,-9],[-13,12],[-10,22],[1,39],[5,40],[-2,46],[-10,37],[-10,26],[-2,46],[-7,35],[-16,-34],[-20,-16],[-13,13],[-13,10],[-12,32],[-13,-4],[-8,36],[-7,41],[-15,-17],[-7,-33],[-12,-30],[-17,21],[-20,26],[-25,-26],[-15,-45],[-7,-32],[-12,-20],[-12,13],[-13,-14],[-10,-30],[-19,-4],[-8,37],[-15,28],[-22,-9],[-4,-45],[-14,-3],[-17,10],[-6,-36],[-20,6],[-14,23],[-10,26],[-16,55],[-14,-18],[-13,-39],[-15,-30],[-23,-12],[-22,-29],[-15,-14],[-13,11],[-15,9],[-24,18],[-17,49],[-24,7],[-20,-5],[-15,-8],[-16,6],[-13,9],[-18,34],[-16,-6],[-25,4],[-4,44],[-7,34],[-13,20],[-16,36],[0,39],[-7,45],[-19,22],[-11,-22],[-12,-16],[-14,-9],[-13,-7],[-15,0],[-8,31],[-15,19],[-16,-11],[-14,-19],[-15,-22],[-16,-1],[-19,12],[-19,-12],[-17,2],[-14,10],[-15,34],[-19,0],[-19,10],[-13,-30],[-14,1],[-13,20],[-15,61],[-10,40],[-13,22],[-12,18],[-27,-39],[-16,6],[-32,28],[-25,-33],[-14,44],[-34,-41],[-17,-14],[-11,-47],[8,-36],[-2,-52],[3,-39],[6,-37],[-9,-28],[-16,-26],[-17,-8],[-13,16],[-18,9],[-14,-10],[-10,-36],[-12,-24],[1,-42],[-8,-32],[-16,17],[-16,36],[-8,33],[-12,31],[-15,0],[-16,-15],[-10,-38],[-1,-49],[-12,-21],[-16,15],[-16,-10],[-18,22],[-16,-22],[-6,-40],[-13,-17]],[[79518,43060],[0,-2],[-11,-61],[-12,-78],[-7,-46],[-14,-90],[-21,-133],[-14,-92],[-35,-215],[-16,-102],[-9,-53],[-22,-139],[-7,-47],[-16,-105],[-7,-48],[-7,-45],[-28,-182],[-10,-61],[-9,-56],[-17,-113],[-12,-79],[-20,-126],[-5,-37],[-9,-56],[-28,-183],[-10,-61],[-18,-120],[-7,-44],[-8,-49],[-17,-112],[-12,-80],[-6,-39],[-7,-36],[-5,-38],[-16,-106],[-8,-45],[-7,-51],[-6,-41],[-8,-47],[-6,-38],[-5,-36],[-6,-36],[-8,-51],[-22,-143],[-8,-48],[0,-5],[-6,-37],[-3,-18],[-4,-22],[-6,-55],[-4,-27],[-12,-92],[-16,-115],[-28,-206],[-15,-106],[-8,-56],[-5,-36],[-18,-131],[-7,-51],[-7,-52],[-17,-124],[-6,-42],[-12,-88],[-36,-264],[-12,-89]],[[78770,38074],[-17,-42],[-8,-59],[-17,-3],[-14,26],[-13,38],[-18,0],[-21,20],[-15,3],[-14,7],[-2,40],[-6,57],[-15,27],[-15,-2],[-16,21],[-14,43],[-13,13],[-22,3],[-11,33],[-15,-4],[-15,23],[-19,-7],[-21,-4],[-18,-15],[-10,27],[-7,33],[-12,18],[-7,34],[-19,-12],[-15,-21],[2,-42],[-7,-34],[3,-63],[-12,-12],[-17,-19],[-15,-26],[-13,18],[-19,6],[-12,11],[-31,41],[-12,-23],[-14,14],[-8,31],[10,64],[5,42],[-7,35],[3,49],[7,49],[20,41],[8,41],[0,44],[-10,29],[-13,0],[-18,-23],[-12,-20],[-14,18],[-12,23],[-16,23],[-18,16],[1,42],[-8,38],[-7,30],[-4,44],[1,44],[3,42],[-10,25],[-15,25],[-9,32],[7,34],[8,37],[3,39],[-3,50],[-11,40],[-7,36],[-13,3],[-13,-16],[-13,12],[-12,20],[-3,48],[-16,23],[-12,-22],[-15,-11],[-24,7],[-12,30],[-9,27],[-12,22],[-14,-10],[-11,-38],[-5,-44],[-16,-21],[-14,21],[-9,44],[-16,-20],[-16,-8],[-16,5],[-13,-30],[-11,-39],[-14,-18],[-14,-14],[-14,-3],[-12,-18],[-14,-43],[-6,-39],[-12,-20],[-10,-24],[-12,-21],[-10,-26],[-7,-35],[1,-42],[-10,-26],[-12,-24],[-8,-34],[-9,-30],[-1,-38],[-10,-65],[-10,-27],[-15,-40],[-13,-30],[-13,-33],[-16,-38],[-14,-39],[-26,-63],[-56,-142],[-21,-45],[-13,-8],[-27,-16],[-82,-46],[-16,-9],[-16,-9],[-20,-12],[-18,-10],[-34,-19],[-19,-12],[-18,-10],[-15,-2],[-14,18],[-2,2],[-20,25],[-22,27],[-37,47],[-25,31],[-16,20],[-12,16],[-22,28],[-17,22],[-23,30],[-20,25],[-59,77],[-19,26],[-15,18],[-44,55],[-18,23],[-11,9],[-3,2],[-14,-13],[-14,-29],[-18,-18],[-11,-21],[-10,-33],[-14,-16],[-8,-33],[-13,-60],[-10,-30],[-10,-24],[-4,-41],[-8,-37],[-9,-29],[-5,-35],[-8,-32],[-11,-28],[1,-39],[9,-31],[11,-53],[-2,-38],[0,-41],[-8,-41],[-1,-40],[8,-34],[4,-38],[7,-38],[-4,-38],[2,-38],[-1,-38],[-10,-29],[-14,-4],[-13,-5],[-39,-14],[-14,-5],[-15,-4],[-46,-10],[-15,-4],[-14,-3],[-42,-10],[-19,-4],[-20,-5],[-24,-5],[-42,-10],[-19,-4],[-18,-4],[-41,-10],[-16,-4],[-33,-8],[-24,-6],[-49,-12],[-16,-4],[-36,-9],[-18,-5],[-21,-5],[-61,-15],[-24,-6],[-16,-3],[-13,-4],[-31,-7],[-16,-4],[-15,-4],[-30,-7],[-16,-4],[-24,-6],[-36,-9],[-115,-27],[-32,13],[-13,5],[-7,33],[-14,-14],[-24,-25],[-14,3],[-20,-45],[-16,28],[-17,80],[-28,57],[-10,36],[-28,11],[-13,20],[-14,-10],[-13,-19],[-36,9],[-18,26],[-9,52],[-13,40],[-16,22],[-31,-23],[-18,-7],[-19,44],[4,40],[-16,29],[-13,1],[-19,-4],[-15,26],[-4,43],[-6,38],[-15,-7],[-14,4],[-14,13],[-14,8],[-14,0],[-18,10],[-16,37],[-10,47],[-7,41],[1,42],[-2,39],[-3,55],[-1,40],[-1,57],[3,38],[2,40],[-2,1],[-3,2],[-9,5],[-14,16],[-14,13],[-18,8],[-19,11],[-14,16],[-16,30],[-2,3],[-2,1],[-13,3],[-1,0],[-2,-1],[-10,-16],[-12,-1],[-2,0],[-16,0],[-2,0],[-14,-3],[-7,4],[-7,4],[-12,11],[-13,14],[-16,30]],[[74747,38495],[-6,36],[-9,38],[-10,26],[-12,41],[-7,34],[-18,30],[-13,30],[-9,32],[-15,68],[-7,35],[-1,44],[3,41],[-3,39],[-12,39],[-31,70],[-14,19],[-16,23],[-12,33],[-8,29],[-41,148],[-11,41],[-17,66]],[[64581,42913],[-19,-32],[-6,-19],[0,-18],[5,-9],[3,-5],[6,-4],[3,-6],[37,-83],[1,-1],[41,-118],[2,-8],[5,-21],[-1,-32],[-6,-17],[-47,-130],[-7,-18],[-42,-23],[-1,13],[-1,27],[-1,11],[-5,34],[-15,64],[-17,40],[-12,13],[-11,-4],[-5,-18],[0,-19],[5,-32],[2,-5],[4,-11],[3,-17],[1,-23],[-6,-64],[-9,-61],[-6,-25],[-1,-4],[-9,-19],[-5,-6],[-10,-5],[-56,-30],[-21,-11],[-26,12],[-11,10],[-7,18],[-2,8],[-1,11],[-1,26],[2,10],[17,47],[5,18],[4,27],[0,1],[0,27],[0,5],[-2,22],[-6,34],[-6,11],[-3,7],[-4,8],[-5,1],[-17,-4],[-26,-15],[-16,-20],[-64,13],[-5,20],[-16,44],[-15,21],[-13,4],[-4,-6],[-69,-252],[-2,-10],[-5,-21],[-1,-6],[-1,-13],[0,-14],[0,-3],[1,-12],[4,-6],[5,-7],[30,-11],[52,-62],[7,-13],[8,-29],[0,-14],[-5,-22],[-1,-1],[-7,-9],[-34,-22],[-21,-21],[-12,-17],[-2,-2],[-8,-11],[-10,-21],[-6,-22],[1,-21],[3,-17],[-12,-18],[-12,-17],[-27,-45],[-99,-174],[-15,-25],[-67,-116],[-133,-227],[-5,-8],[-48,-39],[-13,-11],[-19,-15],[-13,-10],[-14,-11],[-24,-19],[-13,-10],[-38,-29],[-15,-11],[-3,-2],[-25,30],[-22,220],[-5,8],[-141,-70],[-10,-39],[14,-233],[-19,-75],[-29,-20],[-56,-37],[-18,-12],[-16,-10],[-27,-17],[-17,-12],[-20,-12],[-55,-37],[-15,-9],[-13,-9],[-43,-29],[-31,-20],[-34,-23],[-16,-11],[-14,-19],[-24,-32],[-13,-17],[-1,-1],[-44,-58],[-29,-37],[-1,-1],[-59,-76],[-16,-19],[-1,-2],[-14,-18],[-17,-21],[-12,-16],[-41,-55],[-30,-39],[-71,-94],[-73,-97],[-17,-22],[-52,-69],[-72,-95],[-66,-87],[-112,-148],[-45,-58]],[[62093,39633],[-68,-62],[-90,-81],[-79,-71],[-83,-71],[-28,-24],[-15,-13],[-160,-135],[-60,-53],[-83,-73],[-248,13],[-14,0],[-163,7],[-239,11],[-14,1],[-172,7],[-307,13],[-13,0],[-43,1],[-128,2],[-21,-2],[-8,23],[-2,314],[0,124],[-10,-13],[-10,-10],[-14,-6],[-14,0],[-7,3],[-9,7],[-9,11],[-13,22],[-6,13],[-14,37],[-28,45],[-5,4],[-6,-11],[-8,-9],[-15,-11],[-7,-1],[-12,3],[-13,4],[-18,-7],[-31,-5],[-9,1],[-17,-1],[-1,1],[-26,35],[-15,32],[-8,29],[-9,-8],[-14,-18],[-81,-96],[-61,-72]],[[87065,37956],[-38,-28],[-13,-5],[-12,-27],[-19,-33],[-27,-28],[-12,20],[-15,12],[-24,-5],[-18,-8],[-10,-25],[-23,0],[-11,30],[-15,9],[-13,-11],[-12,-32],[-15,0],[-15,-13],[-12,-32],[-16,-4],[-15,-14],[-20,26],[-20,23],[-13,22],[-14,9],[-12,35],[-14,45],[-2,59],[-19,49],[-11,31],[-19,27],[-16,-19],[-14,-38],[-17,-37],[-17,-29],[-8,-40],[-14,-7],[-21,-2],[-6,39],[-14,15],[-17,13],[-16,-14],[-33,8],[-12,-40],[-17,-46],[-13,-6],[-19,38],[-12,42],[-13,-7],[-17,16],[-11,39],[-17,22],[-23,-6],[-12,19],[-3,45],[-10,50],[-17,14],[-19,0],[-21,-27],[-13,-31],[-15,-30],[-16,-22],[-11,36],[-15,15],[-19,2],[-17,-2],[-19,-20],[-20,-12],[-13,13],[-17,14],[-16,14],[-24,60],[-1,39],[-16,36],[-9,66],[14,12],[1,40],[-16,18],[-15,6],[-18,62],[-21,58],[-14,24],[-18,28],[-9,45],[-19,17],[-18,12],[-12,26],[2,46],[9,36],[-8,62],[-16,11],[-15,-5],[-21,-14],[-10,-31],[-15,-44],[-15,-19],[-10,-47],[-13,-43],[-12,15],[-14,15],[-16,33],[-10,27],[-13,20],[-16,48],[-10,51],[-16,-1],[-17,-9],[-15,-38],[-11,-27],[-6,-36],[-15,-33],[-7,-41],[2,-44],[-1,-51],[-2,-39],[-15,-15],[-21,1],[-20,41],[-18,-15],[-20,-16],[-11,36],[-17,24],[-16,-17],[-12,-20],[-13,22],[-12,40],[-5,46],[-27,40],[-14,-25],[-14,3],[-10,27],[-16,23],[-12,-16],[-4,-49],[5,-67],[-4,-38],[-13,-27],[-16,9],[-20,18],[-14,7],[-8,-71],[5,-36],[-5,-37],[7,-51],[23,-21],[11,-38],[-7,-34],[-4,-48],[-20,-79],[5,-53],[15,-76],[8,-41],[2,-54],[0,-49],[-10,-74],[-6,-24],[-3,-14],[-19,-62],[-33,-90],[-52,-145],[-37,-101],[-20,-56],[-90,-247],[-111,-310],[-48,-139],[-61,-167],[-33,-90],[-36,-101],[-1,-1],[26,-356],[11,-149],[40,-585],[15,-221],[12,-174],[18,-259],[3,-39],[5,-85],[1,-89]],[[84744,34264],[-25,10],[-13,29],[-14,-7],[-13,8],[-15,32],[-13,35],[-16,7],[-19,-5],[-12,-30],[-7,-55],[-14,-19],[-26,-15],[-16,-2],[-21,-28],[-23,3],[-1,49],[-16,43],[-14,24],[-16,-23],[-13,6],[-14,18],[-18,4],[-9,26],[-7,49],[-15,3],[-15,-13],[-15,-38],[-14,15],[-13,45],[-18,-5],[-13,-15],[-22,-14],[-16,12],[-11,33],[-15,23],[-16,-12],[-12,-19],[-16,-13],[-12,-30],[-14,-26],[-17,27],[-18,3],[-24,-5],[-20,2],[-19,19],[-14,-8],[-16,3],[-18,-11],[-19,3],[-15,28],[4,39],[4,49],[-12,31],[-15,29],[-22,-25],[-16,-16],[-16,-16],[-13,-10],[-19,-14],[-19,14],[-22,24],[-14,-7],[-14,29],[-17,18],[-16,33],[-7,41],[-7,35],[1,44],[-3,59],[1,45],[-2,45],[-13,20],[-17,5],[-14,21],[-13,56],[-8,36],[0,38],[9,46],[5,36],[15,20],[12,34],[0,38],[-13,26],[-12,34],[-11,23],[-12,20],[-9,34],[-12,30],[-7,43],[-13,18],[-26,26],[-3,41],[-1,66],[-6,40],[-5,38],[-2,3],[-22,40],[-14,-15],[-1,-4],[-104,-242],[-49,-114],[-74,-174],[-54,-125],[-47,-109],[-11,-27],[-32,-74],[-26,-62],[-31,-71],[-27,-65],[-114,-263],[-59,-135],[-15,-37],[-50,-118],[-23,-55],[-7,-4],[-10,-6],[-20,-7],[-29,-32],[-13,10],[-21,21],[-21,-47],[-5,-45],[-30,-41],[-7,-35],[-12,-29],[-18,23],[-19,-5],[-13,-21],[-20,-75],[-21,-20],[-15,3],[-17,-15],[-18,-5],[-19,-32],[-16,4],[-11,-52],[-19,0],[-15,2],[-34,-73],[-12,-42],[-7,-54],[15,-55],[-9,-36],[-9,-26],[-18,-8],[-15,-16],[-14,-24],[-15,-5],[-30,-49],[-28,26],[-14,42],[-10,25],[-20,4],[-28,31],[-20,-26],[-9,-33],[-17,-30],[-14,14],[-12,17],[-16,18],[-9,29],[-19,0],[-26,-52],[-13,16],[-31,-8],[-15,-16],[-8,-36],[-3,-43],[-28,-37],[-20,-71],[-16,-30],[-13,-27],[11,-31],[1,-44],[1,-50],[-15,-15],[-13,-18],[-9,-39],[-4,-36],[-2,-56],[-17,-15],[-20,-27],[-16,-31],[-5,-45],[-20,-17],[-26,-21],[-17,4],[-14,-1],[-13,5],[-20,-56],[-13,-17],[-8,-37],[-12,-13],[-25,1],[-17,28],[2,45],[8,51],[8,34],[13,73],[18,65],[18,44],[23,35],[44,41],[14,32],[-17,-20],[-18,-14],[-17,-4],[-14,-20],[-27,-50],[-14,-19],[-19,-10],[-17,-34],[-2,-48],[-5,-14],[-6,-15],[-6,-34],[-13,-37],[-8,-39],[-10,-27],[-14,-38],[-15,-6],[-15,-34],[-5,-42],[1,-57],[-1,-44],[11,-25],[13,-36],[3,-38],[-10,-41],[-11,-55],[-7,-52],[-13,-25],[-14,25],[-15,25],[-16,-4],[-16,-13],[-20,-11],[-14,-52],[-17,-123],[-2,-63],[-14,-24],[-13,-34],[-14,-38],[-24,8],[-11,31],[-31,7],[-16,-30],[-17,-43],[-24,-6],[-13,16],[-13,11],[-28,1],[-35,-10],[-15,-34],[-27,52],[-16,-1],[-14,0],[-15,8],[-12,24],[-15,38],[-19,42],[-5,9],[1,52],[-10,51],[-10,28],[-13,-9],[-30,14],[-2,59],[-15,19],[0,74],[-2,41],[0,1],[-5,65],[-18,48],[-22,31],[-20,-11],[-6,-54],[-10,-57],[-22,0],[-11,38],[-27,39],[-12,26],[-19,49],[15,38],[0,60],[-21,18],[-15,24],[-21,48],[-18,15],[-5,45],[10,51],[-16,20],[-24,-4],[-27,32],[10,87],[-21,28],[-26,17],[-9,52],[-15,9],[-27,26],[-38,35],[-7,52],[-11,35],[2,76],[0,50],[-1,40],[-9,34],[-25,-2],[-11,-38],[-20,-12],[-24,44],[-19,-11],[-13,-11],[-11,-33],[-14,-40],[-30,-21],[-23,-40],[-31,-15],[-33,15],[-14,17],[-11,3],[-4,1],[-14,19],[-22,17],[-16,11],[-9,30],[-21,32],[-12,-27],[-15,-38],[-21,-25],[-13,-45],[-4,-54],[-15,-22],[-16,4],[-19,-3],[-5,-83],[16,-67],[-10,-58],[-12,-28],[-23,-53],[2,-52],[-4,-62],[6,-56],[3,-39],[-23,-24],[-7,-7],[-13,8],[-27,-9],[14,-93],[-20,-37],[-14,-41],[-42,-3],[-34,-35],[-17,-53],[-8,-54],[-19,-31],[-7,-38],[0,-49],[5,-43],[-9,-42],[-3,-51],[-8,-29],[-25,-16],[-23,10],[-12,-18],[-13,-8],[-39,-23],[-19,36],[-25,0],[-12,-21],[7,-44],[9,-84],[-8,-35],[-16,-5],[-18,50],[-11,59],[-19,-5],[-17,-7],[-9,-43],[-16,-41],[-25,-16],[-36,-17],[-14,-26],[-17,-27],[-13,-21],[-9,-28],[-29,-68],[-24,-51],[-16,10],[-18,39],[-35,-1],[-8,36],[-31,47],[-13,8],[-18,30]],[[79182,31597],[9,40],[16,21],[13,16],[24,30],[6,51],[-6,56],[11,54],[2,49],[6,55],[-4,61],[11,40],[17,5],[20,31],[8,58],[13,36],[13,16],[13,31],[-3,46],[-22,27],[-6,54],[-29,24],[-14,11],[-5,36],[-11,64],[-15,29],[0,61],[-18,7],[-10,48],[5,49],[-8,47],[12,25],[18,62],[-17,38],[-17,-1],[-22,27],[-7,39],[-18,64],[3,75],[7,80],[-8,39],[-12,62],[11,33],[24,-9],[13,30],[16,27],[12,15],[13,31],[7,49],[-17,26],[-5,38],[9,61],[10,54],[-11,25],[-19,-25],[-19,14],[-10,48],[1,56],[-21,22],[-5,44],[-2,44],[5,53],[4,36],[17,26],[13,10],[5,45],[22,27],[38,-3],[4,43],[0,50],[6,68],[-2,56],[24,40],[3,39],[-15,35],[-9,68],[2,56],[22,38],[16,5],[11,9],[12,9],[1,57],[17,110],[-7,61],[-13,30],[-27,-44],[-15,-43],[-24,11],[-13,35],[-6,55],[-18,2],[-1,41],[-14,38],[12,46],[7,46],[-5,41],[-30,34],[-15,51],[-20,44],[3,45],[-11,34],[-28,24],[-14,41],[7,37],[7,42],[3,44],[-15,48],[-17,9],[-9,42],[5,55],[9,30],[14,20],[8,49],[8,60],[26,45],[16,-19],[15,-9],[15,73],[-17,29],[-18,35],[-16,18],[-11,42],[-7,52],[-10,74],[-16,51],[-8,39],[-2,90],[-15,34],[-3,59],[11,30],[13,52],[19,4],[18,-16],[19,18],[13,32],[-19,38],[-1,3],[-8,42],[-21,6],[-18,23],[-19,21],[-13,35],[-21,-23],[-10,24],[-9,39],[-21,38],[1,51],[-17,26],[-20,-31],[-1,-53],[-20,12],[-13,50],[-10,29],[7,32],[15,28],[-2,39],[-18,-1],[-15,7],[-17,22],[-10,58],[-5,46],[-3,55],[11,28],[15,1],[0,52],[-11,49],[-16,9],[-11,24],[-6,47],[13,45],[-6,36],[-6,43],[-26,10],[-11,35],[-11,36],[-12,17],[-10,37],[-22,3],[-16,-2],[-9,31],[-3,48],[-2,58],[10,46],[6,43],[17,18],[15,25],[2,38],[-7,42],[-1,38],[-3,42],[-12,59],[-13,19]],[[32474,34669],[-20,-37],[-9,-37],[-5,36],[-9,-33],[-9,30],[-14,4],[-17,8],[-13,-18],[-13,-7],[-16,-13],[-11,-25],[-13,-25],[-13,-13],[-1,-38],[-37,3],[-31,3],[-90,9],[-203,19],[-13,2],[-166,15],[-68,7],[-8,1],[-6,0],[-147,14],[-141,-327],[-1,-2],[-86,-201],[-214,-502],[-56,-126],[-26,-63],[-7,36],[-15,-18],[-12,-25],[-14,-1],[-16,9],[-10,-26],[-14,22],[-15,-16],[-14,11],[-19,28],[-14,2],[-12,22],[-17,0],[-16,13],[-12,21],[-14,5],[-13,-24],[-26,-12],[-22,19],[-13,13],[-14,14],[-19,-2],[-19,38],[-19,19],[-14,6],[-18,-10],[-15,19],[-16,11],[-15,7],[-19,8],[-21,9],[-17,3],[-16,-2],[-20,2],[-13,2],[-25,11],[-32,13],[-40,13],[-26,9],[-34,11],[-117,39],[-24,8],[-20,6],[-22,8],[-52,18],[-69,24],[-109,36]],[[29898,33752],[-10,27],[-25,-13],[-1,0],[-3,-8],[-16,-47],[-3,-4],[-5,-10],[-6,0],[-14,32],[-12,28],[-13,4],[-9,53],[-9,52],[-1,2],[-3,20],[-31,178],[-42,58],[-13,9],[-45,-16],[-15,-6],[-19,-7],[-6,-3],[-3,-2],[-2,-2],[-4,-11],[-2,-67],[-7,-20],[-5,-15],[-7,-2],[-67,19],[-29,-2],[-1,2],[-2,4],[-6,15],[-4,18],[-5,43],[0,96],[2,17],[3,17],[3,8],[3,6],[5,5],[1,1],[32,41],[2,2],[6,18],[3,12],[1,3],[0,16],[-1,6],[-2,8],[-7,17],[-10,16],[-64,101],[-9,16],[-25,38],[-56,87],[-2,4],[-12,24],[-35,71],[-10,32],[-1,7],[-9,22],[-21,34],[-28,61],[-50,136],[-6,3],[-7,26],[-8,38],[-1,16],[9,234],[3,48],[5,64],[3,41],[-1,17],[-10,63],[-13,91],[-29,157],[-5,109],[1,42],[0,9],[2,109],[0,18],[-1,43],[-4,153],[-6,69],[-12,72],[-2,13],[-3,15],[-3,233],[-1,34],[8,40],[9,43],[17,85],[5,47],[3,47],[0,156],[-2,32],[-3,16],[-3,14],[-14,29],[-12,18],[-10,7],[-10,3],[-13,5],[-9,7],[-12,25],[-1,3],[-5,31],[-1,27],[0,39],[6,41],[13,60],[13,48],[21,65],[9,72],[-1,40],[-5,43],[-7,47],[-7,31],[-13,66],[-2,27],[3,54],[11,71],[13,53],[8,30],[13,33],[37,97],[0,1],[5,11],[37,79],[2,10],[9,49],[1,20],[-1,32],[-6,67],[-11,44],[-10,33],[-13,50],[1,8],[1,5],[1,13],[0,6],[0,14],[-2,38],[-14,80],[-3,16],[-17,95],[-9,-4],[-4,-2],[-5,11],[-11,24],[-26,71],[-15,24],[-33,11],[-5,2],[-31,2],[-5,0],[-10,27],[2,56],[17,87],[32,70],[25,111],[10,64],[0,127],[-10,78],[-14,54],[-54,163],[-37,123],[-18,64],[-1,2],[0,1],[-36,191],[-20,149],[-8,37]],[[28856,40486],[-33,169],[-23,116],[-13,39],[-14,43],[-5,16],[-2,4],[-26,47],[-5,8],[-20,28],[-13,18],[-44,100],[-48,86],[-25,28],[-12,15],[-16,1],[-16,1],[-49,4],[-68,23],[-53,8],[-18,3],[-91,66],[-4,3],[-31,22],[-16,3],[-23,-5],[-22,-5],[-28,-6],[-18,-10],[-9,-4],[-39,-5],[-38,-4],[-3,0],[-10,0],[-103,2],[-94,24],[-29,3],[-19,2],[-25,12],[-79,39],[-8,8],[-86,82],[-84,93],[-16,22],[-25,35],[-2,3],[-5,13],[-5,12],[-9,24],[-5,45],[-1,7],[-18,135],[-30,122],[-28,108],[-8,32],[-68,270],[-15,46],[-15,69],[-28,152],[0,234],[-3,31],[8,191],[8,57],[8,61],[12,84],[25,89]],[[28856,40486],[-10,-25],[-63,-118],[-11,-22],[-29,-55],[-11,-21],[-11,-21],[-28,-47],[-41,-72],[-13,-24],[-128,-258],[-17,-37],[-73,-140],[-19,-36],[-13,-24],[-36,-69],[-113,-213],[-79,-156],[-34,-60],[-149,-289],[-52,-101],[-73,-142],[-41,-75],[-48,-88],[-44,-85],[-51,-98],[-21,-47],[-104,-192],[-5,-10],[-43,-81],[-20,-40],[-49,-94],[-80,-153],[-56,-107],[-20,-38],[-5,-8],[-5,-25],[-9,-40],[-13,-16],[-16,-15],[-3,-2],[-124,-94],[-27,-20],[-29,-21],[-26,-22],[-102,-77],[-32,-22],[-88,-67],[-27,-20],[-96,-72],[-26,-22],[-26,-17],[-46,-37],[-15,-9],[-37,-31],[-41,-29],[-21,-15],[-14,-11],[-32,-25],[-30,-22],[-49,-38],[-122,-92],[-29,-22],[-62,-46],[-28,-22],[-88,-67],[-21,-16],[-12,-18],[-26,-38],[-28,-44],[-43,-60],[-46,-67],[-18,-26],[-77,-113],[0,-1],[-58,-84],[-46,-68],[-59,-86],[-50,-74],[-15,-25],[-59,-85],[-44,-64],[-31,-46],[-17,-26],[-88,-129],[-57,-85],[-31,-45],[-30,-45],[-19,-26],[-15,-23],[-16,-24],[-18,-27],[-26,-35],[-62,-93],[-37,-54],[-130,-191],[-16,-17],[-46,-73],[-63,-92],[-63,-91],[-143,-209],[-18,-26],[-52,-75],[-56,-75],[-18,-26],[-1,-2],[-13,-23],[-38,-57],[-21,-32],[-16,-23],[-62,-83],[-68,-106],[-7,-10],[-11,-17],[-26,-38],[-84,-121],[-52,-71],[-14,-18],[-1,-1],[-142,-207],[-16,-23],[-39,-64],[-55,-70],[-18,-25],[-53,-77],[-59,-84],[-18,-28],[-20,-29],[-105,-148],[-69,-102],[-42,-60],[-45,-62],[-132,-190],[-4,-7],[-4,10],[-3,7],[-6,-4],[-7,-22],[-5,-27]],[[23093,32206],[-30,33],[-36,86],[-1,1],[-3,1],[-10,-4],[-35,-35],[-44,-35],[-10,1],[-5,1],[-8,7],[-7,18],[-5,28],[1,24],[4,23],[7,19],[9,20],[6,13],[0,18],[-3,7],[-8,11],[-9,10],[-3,2],[-7,36],[0,19],[5,17],[11,29],[11,17],[6,6],[8,-8],[5,-11],[15,-25],[5,-8],[17,-22],[10,0],[2,7],[10,25],[-2,33],[0,2],[-22,91],[-10,24],[-1,2],[0,2],[-2,9],[0,7],[0,15],[3,13],[1,6],[0,1],[7,10],[30,28],[15,7],[20,-1],[15,-12],[17,-20],[12,-19],[17,-21],[0,-1],[13,1],[11,9],[6,11],[63,218],[2,11],[56,306]],[[23252,33269],[5,60],[1,35],[0,5],[-3,13],[-9,7],[-3,0],[-46,2],[-2,-1],[-4,-3],[0,-16],[6,-28],[6,-18],[5,-5],[12,-14],[3,-13],[-2,-21],[-5,-8],[-50,-73],[-7,-4],[-25,-14],[-2,-1],[-7,15],[-77,202],[-7,19],[-5,18],[-5,58],[0,36],[7,80],[-11,14],[-11,-3],[-7,-6],[-59,-85],[-19,-28],[-92,-156],[-6,-20],[-1,-10],[1,-22],[6,-17],[15,-35],[-2,-10],[-10,-3],[-51,7],[-4,2],[-3,2],[-27,32],[-11,29],[-1,1],[-1,1],[-1,2],[-4,4],[-7,-1],[-3,-7],[-21,-110],[-1,-26],[-1,-40],[-3,-8],[-6,2],[-1,1],[-2,2],[-5,13],[-12,50],[-6,12],[-6,7],[-7,-4],[-8,-17],[-6,-24],[-92,75],[-11,10],[-9,38],[-1,8],[-45,34],[-8,18],[-1,160],[1,263],[4,18],[8,13],[58,48],[66,55],[3,-9],[4,-9],[6,-9],[6,-5],[8,-4],[36,-9],[1,14],[2,48],[2,39],[2,62],[2,40],[-2,114],[-2,25],[-9,42],[-17,73],[4,21],[4,19],[25,246],[4,51],[2,51],[1,10],[-2,20],[-28,95],[-4,11],[-1,3],[-10,9],[-7,1],[-9,-4],[-3,-2],[-56,-33],[-11,-9],[-24,-49],[-1,-16],[-1,-26],[-3,-51],[-5,-20],[-5,-8],[-10,-2],[-10,6],[-50,26],[-11,6],[-1,1],[-2,2],[-6,9],[-8,20],[-3,11],[-9,17],[-4,4],[-5,0],[-5,-9],[-3,-20],[-1,-35],[5,-14],[5,-7],[31,-59],[0,-5],[19,-127],[-1,-28],[-1,-4],[-5,-16],[-5,-7],[-85,-122],[-2,-3],[-1,-2],[-7,-2],[-4,-1],[-43,66],[-13,16],[-9,6],[-14,1],[-12,-6],[-10,-11],[-4,-6],[-6,-13],[-31,-40],[-15,-12],[-20,-4],[-17,-6],[-7,-2],[-6,-2],[-12,-4],[-41,-28],[-36,-34],[-17,-5],[-20,5],[-4,3],[-18,14],[-1,0],[-5,-2],[-5,-11],[-6,-28],[-1,-30],[-2,-18],[-10,-37],[-29,-56],[-12,-12],[-15,2],[-10,7],[-7,10],[-11,16],[-36,65],[-37,78],[-8,16],[-4,1],[-2,0],[-16,15],[-28,23],[-2,2],[1,33],[4,19],[8,10],[2,1],[3,1],[1,0],[19,-11],[6,1],[4,7],[3,15],[0,16],[1,6],[-1,4],[-8,94],[-2,20],[-4,14],[-7,12],[-6,5],[-2,3],[-8,0],[-6,-5],[-5,-12],[-2,-10],[0,-4],[0,-25],[3,-38],[2,-25],[-1,-9],[0,-9],[-3,-9],[-1,0],[-7,-2],[-8,8],[-5,7],[-24,36],[-17,25],[-1,-1],[-49,-17],[-53,-6],[-8,-1],[-6,2],[-4,5],[-1,0],[-6,14],[-36,141],[0,75],[1,29],[-1,23],[-8,72],[-13,49],[-26,111],[-11,53],[-11,50],[-5,24],[-2,98],[-17,134],[0,39],[1,8],[4,38],[5,44],[7,39],[5,16],[15,43],[6,52],[-7,89],[1,51],[-4,54],[-5,36],[-22,114],[-22,74],[-6,31],[-4,26],[1,140],[-6,57],[-22,255],[1,53],[17,84],[12,58],[6,24],[28,64],[27,64],[48,100],[13,27],[8,34],[4,39],[-7,38],[-11,22]],[[67362,37300],[-71,-553],[-9,-67],[-32,-258],[-33,-259],[-7,-62],[-12,-94],[-1,-7],[-16,-119],[-12,-92],[-3,-24],[-5,-42],[-5,-31],[0,-7],[-11,-78],[-2,-14],[-11,-88],[-19,-143],[0,-5],[-14,-107],[-58,-440],[-31,-243],[-18,-144],[-20,-160],[-7,-59],[-13,-103],[-31,-255],[-14,-126],[-34,-279],[-3,-28],[-3,-23],[-15,-121],[-20,-155],[-15,-167],[-84,-680],[-8,-62],[-43,-357],[-14,-117],[-8,-64],[-34,-275],[-3,-26]],[[66623,31366],[-14,24],[-18,24],[-28,40],[-14,20],[-22,34],[-85,124],[-74,108],[-28,42],[-56,83],[-14,19],[-59,86],[-46,68],[-66,98],[-37,53],[-54,80],[-24,34],[-48,69],[-17,25],[-74,-152],[-52,-105],[-27,-56],[-50,-104],[-29,-59],[-1,-1],[-12,-26],[-119,-246],[-18,-37],[-15,-33],[-96,-196],[-18,-38],[-41,-84],[-18,-37],[-32,-61],[-58,-113],[-15,-33],[-56,-112],[-16,-33],[-83,-173],[-15,-28],[-12,-24],[-43,-90],[-38,-79],[-20,-41],[-38,-80],[-26,-54],[-94,-195],[-75,-155],[-10,-24],[-3,-6],[-11,-23],[-28,-57],[-12,-26],[-18,-37],[-16,-32],[-11,-24],[-17,-34],[-25,-52],[-13,-27],[-13,-28],[-37,-75],[-66,-138],[-53,-110],[-11,-23],[-4,-7],[-130,-272],[-29,-58],[-46,-94],[-30,-63],[-91,-184],[-75,-151],[-22,-45],[-80,-163],[-4,-9],[-75,-153],[-39,-78]],[[63759,27959],[15,231],[5,1],[11,28],[3,18],[2,22],[1,12],[-7,20],[-2,7],[-7,30],[-9,35],[0,25],[4,30],[18,161],[-2,25],[-9,209],[-10,113],[2,33],[-5,210],[-2,58],[0,9],[-10,29],[-15,21],[-9,19],[-4,32],[1,82],[2,2],[4,27],[-1,32],[-5,31],[0,34],[1,21],[2,48],[0,8],[-1,39],[-1,40],[-1,19],[-9,4],[-1,0],[-5,30],[-1,32],[1,9],[27,86],[2,2],[3,4],[5,8],[3,0],[5,-7],[2,-3],[1,0],[8,-1],[7,10],[1,2],[10,24],[5,12],[8,42],[0,5],[2,17],[58,172],[5,45],[1,2],[8,22],[2,4],[12,14],[5,0],[15,-18],[3,-4],[5,0],[31,45],[-5,58],[-6,76],[-16,182],[-35,367],[-14,152],[-20,221],[-11,113],[-18,187],[-4,41],[-19,175],[-5,54],[-20,180],[-11,121],[-15,163],[-7,73],[-8,78],[-1,45],[-55,75],[-12,17],[-62,86],[-41,57],[-67,77],[-90,104],[-30,30],[-23,26],[-82,89],[-25,24],[-63,74],[-117,137],[-69,81],[-140,163],[-76,89],[-1,1],[-13,14],[-38,74],[-13,30],[-112,218],[-22,46],[-68,126],[-63,121],[-73,140],[-106,193],[-68,130],[-45,87],[-102,194],[-12,76],[-3,17],[-93,1148],[-21,266],[1,35],[2,103],[14,289],[10,194],[0,5],[-1,103],[1,141],[1,73],[2,251],[0,68],[0,63],[1,264],[1,58],[4,509],[1,123],[1,60],[126,720]],[[46314,35942],[24,-69],[2,-7],[-4,-1],[-49,-9],[-9,-104],[0,-3],[-8,-83],[-1,-18],[6,1],[31,-51],[10,0],[10,3],[13,10],[11,20],[22,22],[15,5],[4,-4],[5,-18],[-1,-35],[-8,-26],[-14,-32],[-19,-36],[-10,-15],[-24,-14],[-1,-1],[-3,-11],[0,-12],[0,-2],[1,-9],[10,-32],[5,-8],[49,-37],[37,16],[6,-3],[5,-7],[2,-10],[2,-16],[-2,-12],[-6,-20],[-10,-26],[-6,-9],[-18,-23],[-4,-6],[-22,-12],[-1,-1],[-2,-3],[-2,-10],[0,-3],[-1,-30],[6,-31],[14,-23],[28,-24],[29,-13],[24,0],[22,12],[12,0],[6,-3],[10,-25],[2,-21],[11,-254],[0,-25],[-3,-8],[-1,-3],[-3,-7],[-5,-4],[-13,-12],[-30,-9],[-44,-20],[-8,-10],[-6,-12],[-5,-26],[1,-33],[5,-43],[2,-3],[20,-69],[4,-20],[0,-25],[-2,-10],[-3,-8],[-8,-8],[0,-1],[-34,-8],[-5,-6],[-11,-14],[-7,-15],[-7,-28],[-1,-31],[4,-49],[5,-28],[14,-31],[15,-19],[23,-14],[9,-2],[88,-19],[16,0],[18,10],[22,6],[6,-7],[6,-17],[0,-2],[4,-16],[1,-4],[1,-11],[1,-33],[3,-70],[7,-67],[0,-1],[0,-1],[8,-15],[6,-7],[54,-18],[10,-10],[6,-14],[4,-29],[0,-12],[-2,-9],[-15,-20],[-24,-18],[-12,-9],[-5,-4],[-37,-20],[-14,-2],[-7,4],[-34,22],[-14,-2],[-9,-10],[-3,-12],[-7,-44],[-1,-12],[-1,-5],[2,-11],[5,-33],[10,-36],[8,-43],[-1,-36],[-5,-20],[-8,-9],[-9,-4],[-7,5],[-10,17],[-5,19],[-6,28],[-3,31],[1,64],[4,31],[-1,78],[-2,11],[-11,28],[-7,10],[-69,17],[-22,-13],[-9,-14],[-2,-10],[0,-18],[0,-12],[2,-10],[5,-27],[13,-45],[25,-78],[16,-67],[5,-40],[3,-74],[-5,-39],[-7,-23],[-9,-17],[-16,-16],[-17,-9],[-6,0],[-22,-1],[-4,1],[-8,2],[-3,3],[-2,3],[-3,3],[-4,9],[-3,13],[1,40],[5,29],[20,34],[19,37],[12,30],[8,42],[0,21],[-2,30],[-5,19],[-20,65],[-12,28],[-12,13],[-75,51],[-13,6],[-14,2],[-12,-16],[-10,-19],[-5,-10],[-1,-5],[-10,-51],[-1,-34],[6,-26],[12,-36],[10,-18],[26,-17],[15,-22],[9,-20],[0,-27],[-3,-23],[-7,-18],[-5,-6],[-20,-10],[-4,-3],[-19,-5],[-8,-2],[-19,9],[-8,11],[-42,100],[-4,10],[-4,6],[-23,30],[-19,11],[-28,3],[-44,-32],[0,-29],[3,-19],[5,-11],[15,-15],[21,-6],[11,-9],[8,-10],[6,-20],[1,-17],[-2,-19],[-13,-34],[-9,-10],[-13,-8],[-1,0],[-45,-27],[-1,-1],[-1,-2],[-7,-21],[-1,-13],[0,-16],[5,-15],[18,-40],[47,-107],[12,-26],[28,-27],[13,-3],[18,4],[34,37],[9,2],[9,-9],[6,-11],[3,-9],[1,-7],[-1,-24],[-4,-22],[-7,-12],[-13,-11],[-16,-5],[-26,-1],[-31,16],[-24,-5],[-15,-5],[-18,-16],[-9,-13],[-9,-47],[-1,-45],[13,-99],[13,-41],[11,-22],[16,-23],[12,-20],[5,-21],[1,-17],[1,-21],[-6,-62],[-4,-56],[-15,-82],[-6,-25],[-6,-8],[-18,-21],[-1,-3],[-9,-15],[-10,-18],[0,-13],[-1,-18],[3,-8],[3,-8],[35,-36],[4,-4],[30,-27],[22,-56],[0,-46],[-5,-12],[-9,-18],[-3,-7],[-5,0],[-25,-3],[-10,2],[-59,10],[-20,-31],[-1,-76],[11,-59],[26,-63],[3,-7],[3,-8],[-1,-18],[0,-19],[-1,-4],[-2,-7],[-8,-19],[-1,-4],[-6,2],[-13,3],[-45,13],[-3,4],[-7,8],[-36,120],[-8,2],[-7,2],[-12,-17],[-27,-81],[-7,-14],[-32,-63],[-12,-12],[-23,5],[-20,46],[2,45],[17,31],[19,16],[39,52],[0,1],[54,98],[11,38],[1,15],[1,35],[-10,33],[-17,24],[-13,4],[-17,1],[-80,6],[-11,-20],[-1,-2],[-2,-41],[17,-70],[-1,-29],[-1,-21],[-25,-45],[-27,7],[-17,19],[-12,33],[0,10],[-20,91],[-22,61],[-13,19],[-29,6],[-17,-31],[-1,-5],[-5,-19],[-1,-81],[8,-58],[27,-103],[0,-60],[-15,-22],[-29,-44],[-6,-29],[0,-13],[1,-59],[6,-26],[2,-6],[6,-15],[26,-64],[15,-19],[44,-25],[17,-22],[17,-22],[10,-32],[-2,-41],[-12,-22],[-45,10],[-49,30],[-19,12],[-41,35],[-11,18],[-1,1],[-47,132],[-20,31],[-14,22],[-20,5],[-17,-26],[-6,-50],[-6,-110],[-10,-13],[-29,-34],[-28,148],[65,170],[2,3],[10,28],[8,39],[3,60],[-18,45],[-22,20],[-22,6],[-8,-10],[-17,-22],[0,-5],[1,-2],[0,-4],[0,-7],[0,-6],[0,-7],[0,-7],[-1,-6],[0,-1],[-2,-26],[0,-7],[-1,-6],[-1,-6],[0,-6],[-2,-6],[-1,-6],[-1,-5],[-2,-5],[-19,-64],[-9,-10],[-24,-27],[-30,-33],[-3,-4],[-2,8],[-1,6],[0,1],[-1,6],[-23,63],[0,15],[-12,33],[-8,11],[-19,26],[-41,9],[-11,9],[-8,6],[-5,6],[-12,-1],[-16,10],[-15,22],[-11,28],[-10,48],[-1,2],[-3,40],[-5,85],[-12,13],[-16,-1],[-18,-15],[-1,-52],[14,-37],[13,-29],[7,-23],[4,-14],[-7,-55],[-16,-10],[-21,-2],[-21,4],[-18,7],[-15,7],[-15,11],[-1,1],[-13,44],[11,57],[4,43],[-8,34],[-11,50],[-11,25],[-20,7],[-14,-7],[-16,-22],[-2,-43],[15,-58],[7,-45],[7,-45],[1,-6],[10,-52],[11,-48],[12,-36],[24,-55],[1,-3],[11,-27],[1,-39],[-10,-37],[-15,-27],[-26,-44]],[[44865,31639],[-9,-8],[-5,-6],[-18,-12],[-16,1],[-4,-1],[-10,0],[-18,-16],[-33,-38],[-17,-19],[-18,-8],[-4,-3],[-10,-9],[-21,-21],[-16,-5],[-23,2],[-16,11],[-18,21],[-11,28],[-5,22],[-4,15],[-7,43],[-7,41],[-20,32],[-17,4],[-16,-8],[-19,-16],[-1,-1],[-12,-3],[-9,47],[2,42],[0,3],[-7,46],[-22,-3],[-24,-31],[-19,-62],[-8,-41],[-5,-39],[0,-69],[6,-42],[10,-52],[4,-19],[4,-21],[-1,-40],[-11,-37],[-19,-25],[-14,-4],[-17,1],[-20,2],[-24,15],[-13,25],[-1,2],[-12,40],[-21,25],[-19,23],[-13,17],[-15,21],[-10,11],[-16,16],[-21,-3],[-6,-1],[-7,-1],[-33,-5],[-23,-4],[-20,-3],[-13,-2],[-22,-4],[-14,-2],[-15,-2],[-14,-2],[-33,-5],[-18,-4],[-43,3],[-23,-13],[-13,-2],[-24,-3],[-43,-7],[-71,-11],[-21,-4],[-66,-10],[-72,-12],[-4,-1],[-37,-8],[-85,-20],[-42,-4],[-41,-5],[-38,-4],[-38,-3],[-14,-2],[-14,-2],[-48,-7],[-51,-7],[-148,-20],[-55,-8],[-31,-7],[-14,-2],[-45,-9],[-33,-6],[-123,-19],[-15,-3],[-9,-2],[-8,-2],[-1,0],[-50,-9],[-29,-5],[-100,-11],[-18,-2],[-68,-7],[-25,-3],[-95,-9],[-128,-12],[-95,-8],[-73,-7],[-66,-8],[-89,-11],[-19,-2],[-104,-12],[-41,-4],[-23,-2],[-68,-7],[-98,-11],[-39,-5],[-66,-7],[-132,-15],[-1,0],[-14,-1],[-18,-3],[-227,-24],[-53,-5],[-12,-2],[-4,0],[-20,-3],[-61,-8],[-82,-11]],[[40769,31084],[-17,112],[-5,37],[-31,216],[-6,38],[-25,163],[-55,364],[-37,239],[-6,44],[-55,350],[-113,107],[-22,21],[-34,32],[-101,61],[-15,7],[-22,18],[-14,10],[-16,13],[-14,10],[-62,43],[-47,37],[-21,16],[-15,11],[-45,34],[-71,57],[-126,93],[-8,6],[-131,97],[-37,28],[-94,72],[-66,49],[-47,35],[-63,48],[-18,13],[-175,128],[-81,60],[-58,43],[-11,7],[-116,84]],[[74747,38495],[5,-45],[2,-41],[3,-46],[-4,-38],[-9,-55],[-10,-34],[-2,-19],[-2,-19],[-8,-41],[-11,-42],[-6,-43],[3,-37],[2,-44],[3,-40],[5,-51],[20,-37],[13,-37],[8,-44],[-5,-47],[11,-33],[33,-35],[-2,-38],[-9,-181],[-18,-483],[113,-454],[13,-49],[41,-160],[88,-306],[35,-29],[16,7],[11,-19],[15,-25],[14,-20],[10,-31],[17,-7],[14,-16],[20,-2],[14,-1],[21,20],[8,-35],[10,-26],[9,-48],[9,-39],[6,-39],[16,-41],[8,-42],[16,-25],[20,-35],[4,-43],[-11,-29],[3,-36],[0,-9],[-13,11],[-11,28],[-16,-15],[-4,-22],[-4,-16],[14,-15],[23,-7],[12,-26],[18,-20],[17,-31],[-9,-30],[-11,-22],[-5,-35],[4,-38],[2,-39],[5,-34],[7,-34],[2,-40],[2,-40],[10,-26],[9,-29],[8,-34],[9,-35],[6,-33],[3,-10],[7,-20],[7,-34],[10,-29],[9,-27],[11,-22],[8,-30],[7,-33],[8,-31],[9,-30],[9,-29],[10,-27],[7,-33],[8,-56],[21,-169],[7,-50],[1,-12],[23,-170],[29,-220],[61,-473],[15,-29],[26,7],[11,-26],[0,-42],[8,-35],[13,-78],[6,-37],[8,-41],[-7,-37],[-11,-49],[1,-38],[16,-13],[8,-34],[12,-26],[10,-37],[11,-65],[13,-40],[21,-4],[17,-7],[13,10],[18,0],[-9,-54],[-4,-63],[4,-53],[15,-33],[15,-48],[17,21],[17,20],[9,-38],[12,-57],[-13,-19],[-8,-31],[11,-20],[9,-34],[7,-44],[-1,-51],[13,-18],[13,17],[21,41],[10,27],[16,5],[17,-43],[2,-73],[9,-34],[20,9],[14,-16]],[[76064,32129],[5,-39],[3,-41],[17,-26],[7,-38],[7,-48],[-12,-39],[-10,-57],[-1,-38],[-11,-30],[-8,-33],[-6,-35],[8,-30],[13,-9],[3,-64],[-18,-15],[-15,8],[-20,-4],[-19,-2],[-13,-17],[-6,-37],[5,-39],[-12,-38],[-12,-30],[-18,6],[-13,-17],[-21,2],[-39,1],[-18,4],[-86,15],[-127,21],[-45,8],[-16,7],[-14,-20],[-146,-251],[-92,-155],[-92,-160],[-31,-52],[-37,-60],[-15,-25],[-19,-33],[-104,-179],[-67,7],[-85,11],[-39,-4],[-15,1],[-3,-1],[-35,-4],[10,-30],[-5,-90],[-3,-46],[14,-13],[21,-22],[7,-49],[-8,-74],[-10,-47],[-8,-45],[1,-46],[46,3],[-41,-93],[-18,-34],[-15,-42],[-11,-25],[-1,-3],[-64,-145],[11,-43],[2,-42],[-9,-57],[-4,-66],[7,-35],[-7,-48],[-12,-33],[-8,-51],[-7,-40],[-18,-16],[-21,-49],[-13,-24],[-26,-51],[-9,-26],[-12,-27],[-7,-36],[-11,-40],[-11,-26],[-2,-58],[27,-10],[12,-49],[4,-53],[-14,1],[-13,-7],[0,-105],[0,-41],[2,-52],[-23,2],[-2,-40],[-10,-41],[-3,-37],[-20,-1],[-10,42],[-15,33],[-16,7],[-37,-1],[-17,5],[-14,15],[-12,46],[-14,20],[-18,23],[-12,15],[-16,21],[-11,25],[-14,12],[-17,16],[-21,20],[-24,-3],[-11,-36],[-29,-10],[-14,-11],[-25,-23],[-16,-11],[-15,0],[-17,-3],[-19,-7],[-13,-2],[-14,16],[-11,-24],[-16,14],[-14,-8],[-10,-24],[6,-36],[-10,-69],[-12,-21],[-6,-43],[-10,-36],[-8,-80]],[[73978,28430],[-22,3],[-17,2],[-67,10],[-84,11],[-50,7],[-53,8],[-210,30],[-127,18],[-21,3],[-43,5],[-47,7],[-75,1],[-48,50],[-53,55],[-56,59],[-39,41],[-35,36],[-76,80],[-32,33],[-59,61],[-8,9],[-14,14],[-44,5],[-51,31],[-59,36],[-19,6],[-51,10],[-2,1],[-3,1],[-2,1],[-2,2],[-2,2],[-2,3],[-1,2],[-7,10],[-1,2],[-2,3],[-2,4],[-2,4],[-2,5],[-1,5],[-2,5],[-1,5],[-1,6],[-1,6],[-1,6],[-1,6],[-1,6],[0,7],[-2,20],[0,4],[-7,129],[0,3],[-1,6],[0,4],[0,33],[0,10],[0,6],[1,7],[0,6],[1,7],[1,6],[1,6],[1,6],[1,6],[1,2],[8,34],[1,2],[1,6],[2,5],[1,4],[1,2],[15,34],[1,2],[1,3],[23,45],[0,1],[2,3],[2,3],[6,8],[3,5],[-10,11],[-1,0],[-2,3],[-2,3],[-2,3],[-1,3],[-7,14],[0,1],[-2,5],[-2,4],[-1,5],[-2,5],[-1,6],[-1,5],[-2,6],[0,6],[-1,6],[-6,44],[0,6],[-1,7],[0,4],[-37,31],[-1,1],[-8,6],[-9,-2],[-8,-7],[-13,-31],[-5,-18],[-8,-22],[-1,-2],[-8,-15],[-4,2],[-4,7],[-16,38],[-4,20],[1,13],[5,25],[4,19],[0,29],[-1,5],[-4,0],[-4,1],[-13,-17],[-6,-19],[-8,-31],[-8,-22],[-8,-3],[-31,6],[-15,5],[-5,2],[-9,-8],[-13,-11],[-7,-8],[-2,-3],[-5,-14],[-3,-12],[-4,-15],[-9,-43],[-3,-15],[-2,-3],[-21,7],[-5,12],[-1,6],[0,18],[5,25],[12,31],[12,29],[14,25],[4,16],[-1,16],[-2,10],[-1,6],[-7,19],[-55,138],[-2,6],[-8,12],[-7,10],[-11,9],[-1,0],[-7,1],[-4,-7],[-3,-5],[-6,-14],[-4,-9],[-10,-9],[-2,-2],[-12,-11],[-13,1],[-10,4],[0,15],[-2,54],[-2,64],[-56,54],[-13,27],[-3,5],[-55,116],[-30,63],[0,4],[10,48],[0,5],[0,20],[-2,12],[-1,1],[-11,13],[-32,37],[-4,5],[-54,108],[-8,22],[-5,31],[0,19],[3,14],[6,3],[4,2],[7,-1],[2,-2],[19,-20],[13,-4],[9,5],[116,84],[4,7],[4,12],[3,26],[0,16],[-11,21],[-1,1],[-34,67],[-2,2],[-1,1],[-4,5],[-6,0],[-8,0],[-13,-4],[-42,-12],[-2,0],[-11,-5],[-11,-5],[-13,-5],[-12,3],[-2,9],[0,19],[2,19],[8,50],[1,20],[-1,8],[0,5],[-2,21],[-19,256],[-3,5],[-3,7],[-11,14],[-11,14],[-22,20],[-5,5],[-13,16],[-11,26],[-2,9],[-7,65],[-1,8],[-5,29],[-2,4],[-13,37],[-16,46],[-1,-2],[-3,-5],[-1,-1],[-15,-20],[-1,-1],[-2,-2],[-2,-2],[-3,-2],[-2,-1],[-2,0],[-3,-1],[-1,1],[-42,6],[-11,-15],[-1,-2],[-2,-2],[-1,-1],[-8,-7],[-14,-13],[-1,-3],[1,-15],[5,-58],[1,-2],[0,-7],[0,-6],[1,-7],[0,-6],[0,-7],[-1,-7],[0,-6],[0,-7],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[-2,-5],[-1,-6],[-2,-4],[-1,-5],[-2,-4],[-2,-4],[-2,-4],[-2,-3],[-1,-1],[-67,-87],[-6,-19],[-4,-13],[-1,-7],[-5,-43],[0,-4],[-1,-6],[-1,-6],[-1,-6],[0,-3],[-10,-42],[0,-2],[-1,-5],[-1,-1],[-12,-45],[0,-6]],[[71451,31035],[-35,24],[-20,14],[-14,10],[0,15],[1,4],[0,7],[0,3],[1,3],[-2,8],[-9,33],[-1,6],[-2,15],[0,1],[-47,119],[-7,16],[-2,19],[3,27],[8,49],[7,32],[3,6],[4,4],[5,-2],[1,-1],[9,-8],[9,-23],[7,-5],[64,-13],[6,4],[6,23],[2,7],[0,1],[6,41],[4,27],[1,12],[1,12],[0,11],[-1,28],[-5,26],[-8,43],[-4,3],[-18,17],[-7,13],[-34,82],[-8,21],[-6,39],[-2,43],[-3,125],[0,26],[5,5],[29,-3],[8,-3],[8,-13],[5,-10],[16,-33],[13,-28],[2,-5],[2,-4],[6,5],[5,11],[1,2],[11,33],[1,13],[3,44],[7,95],[1,24],[1,10],[-2,6],[-2,11],[-2,4],[-6,12],[-2,2],[-2,2],[-1,2],[-13,0],[-12,0],[-22,0],[-10,-2],[-22,-15],[-15,6],[-1,1],[-6,7],[-13,52],[-2,19],[-1,18],[5,13],[3,2],[2,2],[13,12],[44,43],[10,4],[5,4],[78,70],[2,2],[17,24],[3,11],[0,30],[-18,95],[-2,8],[-3,15],[-1,1],[-6,16],[-1,0],[-21,28],[-26,46],[-8,25],[1,14],[5,22],[5,7],[3,8],[4,38],[-14,34],[-20,-3],[-16,31],[-16,0],[-18,8],[-25,0],[-19,-1],[-13,0],[-14,17],[-19,30],[-39,88],[-16,0],[-32,58],[-33,38],[-3,51],[-8,45],[-13,36],[-16,8],[-15,7],[-12,55],[-15,39],[-14,1],[-19,-2],[-14,20],[-1,38],[2,38],[-15,37],[-13,15],[-12,27],[2,38],[7,65],[-1,55],[-7,38],[-1,40],[0,62],[4,46],[1,39],[1,44],[7,35],[6,43],[9,31],[13,20],[6,36],[0,40],[10,24],[11,27],[9,43],[1,55],[-2,43],[0,41],[7,55],[7,52],[17,38],[11,25],[5,37],[3,40],[4,51],[0,53],[-13,25],[-14,38],[-10,32],[-9,31],[-14,43],[-19,21],[-13,0],[-12,24],[-6,41],[-10,26],[-8,34],[-2,38],[4,36],[5,51],[-8,36],[-13,25],[-11,28],[-13,10],[-10,24],[-6,40],[-12,62],[-12,23],[-5,36],[-3,38],[-9,46],[2,44],[9,34],[-14,-10],[-10,25],[-10,41],[-12,20],[-8,32],[-14,11],[-21,19],[-9,30],[-9,39],[-5,44],[3,41],[2,38],[8,40],[10,43],[0,39],[-2,38],[-12,16],[-10,27],[-13,7],[-14,-7],[-17,2],[-12,19],[-7,41],[5,36],[2,49],[-3,40],[-8,58],[-8,45],[-3,37],[-10,33],[-16,16],[-10,32],[-2,54],[1,38],[-8,43],[-3,47],[-5,37],[2,39],[-3,37],[-13,21],[-11,27],[3,40],[-1,40],[-10,27],[-14,33],[-6,37],[-3,41],[-6,35],[-9,31],[-10,30],[-13,22],[-15,33],[-10,31],[-6,37],[-3,39],[1,42],[-2,39],[6,36],[11,26],[16,37],[16,40],[5,39],[-5,37],[-12,21],[-11,28],[-11,31],[-10,24],[-1,55],[-1,47],[-11,45],[-4,43],[11,37],[1,46],[-4,38],[-3,40],[4,41],[1,44],[3,52],[10,26],[14,21],[18,-4],[18,15],[8,36],[11,40],[-4,46],[-8,38],[2,42],[-6,62],[-8,34],[-1,4],[-3,40],[13,25]],[[29898,33752],[2,-19],[1,-30],[0,-33],[1,-79],[-2,-26],[-5,-28],[-3,-7],[-7,-17],[-1,-4],[-3,-3],[-18,-18],[-27,-24],[-19,-10],[-16,-12],[-18,-19],[-8,-15],[-61,-197],[-1,-10],[-1,-4],[0,-7],[-2,-15],[0,-2],[2,-8],[22,-60],[9,-19],[8,-9],[8,4],[16,32],[6,5],[42,1],[3,-10],[2,-11],[2,-49],[-1,-15],[-8,-30],[4,-45],[15,5],[6,0],[10,-6],[3,-9],[1,-9],[-3,-21],[-7,-28],[-3,-14],[-1,-3],[-9,-12],[-15,-14],[-13,-17],[-2,-4],[-2,-10],[0,-1],[0,-19],[2,-36],[-14,15],[-14,14],[-11,7],[-6,0],[-8,-8],[-68,-91],[-9,-41],[-2,-20],[-2,-19],[0,-14],[-33,-122],[-36,-133],[-9,-28],[-20,-59],[-5,-17],[-11,-34],[-7,-62],[20,-1],[3,21],[6,47],[13,3],[12,-70],[8,-47],[-23,-83],[-5,-20],[-3,-7],[-14,-18],[-21,-19],[-14,-7],[-48,-12],[-59,-33],[-1,0],[-30,-62],[-42,-164],[-1,-4],[-7,-11],[-3,-11],[-2,-126],[-1,-18],[17,-121],[6,-25],[9,-26],[4,-3],[12,-35],[0,-16],[-5,-9],[-9,-5],[-11,-1],[-87,-10],[-5,-8],[-3,-13],[0,-1],[0,-5],[-4,-38],[0,-76],[1,-18],[11,-82],[7,-32],[22,-64],[1,-7],[13,-54],[3,-17],[1,-23],[-18,-41],[-23,-48],[-141,-6],[-21,21],[-5,9],[-41,88],[-1,0],[-54,79],[-48,68],[-7,-1],[-6,0],[-22,-32],[-4,-7],[-12,-17],[-5,-11],[-2,-10],[0,-14],[-24,-40],[0,-1],[-5,0],[-14,-2],[4,-16],[8,-31],[9,-59],[4,-30],[-30,-1],[-1,10],[-7,17],[-36,7],[-3,0],[-4,-1],[-4,-4],[-9,-9],[-7,-12],[-1,-9],[14,1],[10,0],[1,-97],[-1,-5],[0,-102],[-18,0],[-3,0],[-6,-39],[2,-13],[8,0],[2,1],[69,18],[14,-141],[6,-55],[7,-76],[-36,25],[-17,45],[-9,11],[-13,5],[-4,0],[-6,1],[-5,-6],[-2,-7],[0,-15],[12,-61],[2,-6],[4,-2],[9,-3],[3,-3],[6,-12],[-4,-14],[-4,-17],[-12,-41],[-20,-42],[-3,-4],[-1,-1],[-2,0],[-5,-2],[-7,8],[-1,1],[-5,10],[-2,6],[-7,30],[-7,6],[-25,21],[-10,-2],[-12,-8],[-4,-12],[-1,-14],[3,-23],[35,-27],[14,-25],[4,-7],[11,-21],[3,-10],[0,-11],[-3,-8],[-40,-33],[-4,-6],[0,-9],[11,-83],[3,-6],[6,5],[13,10],[8,3],[21,-40],[12,-21],[14,-30],[2,-11],[0,-10],[-1,-9],[-4,-8],[-7,-6],[-6,5],[-6,10],[-18,30],[-4,3],[-5,4],[-5,-5],[-1,-4],[2,-118],[5,-85],[16,-95],[-12,-16],[-2,-1],[-5,-2],[-7,13],[-9,28],[-7,15],[-1,0],[-7,0],[-8,-15],[-9,-36],[-10,-48],[-12,-98],[0,-22],[2,-8],[0,-3],[5,-20],[-5,-49],[-2,-17],[-1,-38],[2,-13],[3,-7],[4,-5],[6,-1],[4,3],[14,13],[3,-3],[2,-7],[-11,-73],[-15,-104],[-14,-45],[-3,-18],[-10,-58],[-1,-14],[0,-23],[-2,-106],[13,-85],[2,-7],[42,-93],[6,1],[18,17],[8,19],[22,0],[19,-12],[26,-23],[20,-18],[48,-65],[6,13],[10,16],[8,4],[67,-82],[3,-9],[0,-21],[-8,-19],[-9,-11],[-7,-2],[-12,15],[-3,0],[-20,-43],[-2,-6],[0,-5],[-1,-16],[1,-53],[-21,-10],[-3,-2],[-9,-7],[-8,-17],[-3,-14],[0,-16],[4,-6],[7,0],[9,17],[11,20],[10,7],[38,-56],[9,-19],[2,-9],[-1,-24],[-3,-109],[7,-12],[57,-98],[72,54],[12,9],[-18,-94],[-6,-29],[-24,-124],[49,-77],[8,-12],[24,-25],[27,-17],[3,-2],[3,-6],[2,-3],[5,-20],[22,-96],[3,-15],[1,-15],[0,-4],[-5,-41],[-8,-81],[-23,-100],[-2,-10],[-7,-33],[0,-10],[5,-20],[10,-8],[1,-1],[16,1],[6,7],[23,-63],[0,-5],[0,-18],[0,-26],[15,-38],[87,-95],[44,-25],[19,-60],[11,-24],[6,-10],[12,-19],[26,-29],[-23,-27],[-2,-2],[-5,-8],[-2,-7],[0,-18],[11,-89],[39,-70],[30,-45],[5,-6],[7,0],[31,102],[13,43],[5,-19],[15,-31],[13,-26],[23,-25],[2,11],[4,10],[6,2],[6,-5],[14,-14],[29,-30],[4,-9],[39,-105],[21,-68],[2,-10],[0,-22],[0,-3],[-2,0],[-25,-9],[-31,28],[-3,-3],[-44,-143],[-3,-29],[3,-9],[9,-2],[10,16],[10,16],[5,2],[5,-4],[4,-9],[5,-27],[0,-1],[0,-42],[-2,-12],[-6,-7],[-1,-1],[-14,-3],[-13,7],[-34,33],[-6,6],[7,-16],[38,-88],[-4,-45],[5,-64],[1,-1],[6,-4],[5,-14],[8,-100],[1,-21],[-1,-20],[-2,-20],[0,-3],[-20,11],[-56,14],[-8,-25],[-30,-102],[-40,-132],[13,-37],[5,-18],[0,-25],[-20,-105],[-5,-24],[-7,-11],[-5,-1],[-6,8],[-1,2],[-14,33],[-4,5],[-7,2],[-40,-13],[-6,-19],[-25,-85],[-4,-10],[0,-1],[-2,-11],[-1,-55],[1,-104]],[[29399,24898],[-24,-66],[-51,56],[-54,-15],[-2,-6],[-8,-5],[-3,2],[-23,64],[-68,45],[-2,2],[-2,-5],[-8,-27],[-19,-31],[-39,-25],[-33,-7],[-12,-3],[-1,-43],[-1,-40],[-1,-58],[8,-323],[7,-168],[-9,-54],[0,-2],[-1,0],[-27,31],[-7,1],[-32,-39],[-60,-42],[-24,-15],[-38,-110],[-12,-2],[-17,-1],[-8,-2],[-13,-2],[-83,-13],[-27,-4],[-113,-18],[-46,-8],[-45,-7],[-20,-3],[-14,-2],[-131,-24],[-69,-12],[-34,-7],[-15,-2],[-102,-19],[-63,-11],[-206,-38],[-61,-11],[-1,0],[-12,-3],[-14,-3],[-29,-5],[-101,-18],[-53,-10],[-57,-10],[-5,-1],[-13,-3],[-22,-4],[-5,-1],[-43,-7],[-26,-6],[-12,-24],[-91,-66],[-12,-41],[-16,-54],[-24,-111],[-28,-26],[-22,-49],[-27,-28],[-20,-1],[-25,-1],[-26,-41],[-36,-65],[-7,-38],[8,-31],[0,-39],[-34,-96],[-56,-69],[-44,-19],[-30,6],[-25,21],[-194,164],[-128,109],[-78,66],[-31,26],[-19,17],[-49,41],[-75,63],[-60,49],[-15,12],[-60,50],[-120,99],[-14,11],[-95,85],[-101,90],[-122,114],[-39,37],[-66,61],[-15,11],[-18,13],[-19,17],[-78,96],[-88,109],[-107,133],[-23,28],[-13,16],[-13,12],[-1,1],[-13,5],[-26,12],[-47,19],[-150,65],[-53,-2],[-17,0],[-1,0],[-27,-2],[-12,-12],[-1,-3],[-13,-28],[-17,4],[-23,33]],[[24837,24607],[1,6],[5,39],[-3,29],[-20,79],[-1,3],[-1,1],[-32,31],[-47,45],[-1,0],[-11,-2],[-32,-7],[-7,20],[-32,86],[-32,49],[-10,15],[-25,39],[-26,40],[-9,22],[-3,7],[-12,29],[-14,33],[29,40],[-12,18],[-33,49],[-16,56],[-1,5],[-20,69],[-7,36],[-1,7],[-5,40],[0,4],[0,25],[15,38],[4,5],[4,0],[7,-7],[12,-23],[2,-4],[6,1],[1,0],[4,7],[3,18],[-1,4],[-1,5],[-2,23],[-27,85],[-7,-6],[-14,-12],[0,1],[-46,29],[-6,19],[-1,1],[-6,5],[-2,1],[-28,18],[-3,0],[-6,1],[-8,-4],[-2,-1],[-1,-1],[-3,-13],[-2,-17],[0,-44],[0,-1],[5,-105],[0,-33],[0,-15],[-1,-18],[-3,-13],[-3,-9],[-9,-7],[-7,1],[-13,18],[-7,17],[-7,25],[-2,7],[-14,56],[-7,30],[-3,11],[-1,14],[1,23],[2,9],[2,8],[16,42],[2,18],[-32,12],[-4,-6],[-58,-91],[-22,81],[-22,81],[19,34],[2,20],[1,6],[0,6],[4,9],[25,20],[13,10],[5,8],[8,18],[1,9],[0,20],[-3,13],[-2,7],[-7,7],[-28,3],[-22,-4],[-7,-4],[-9,23],[-5,24],[0,2],[-9,54],[-7,83],[-1,98],[-4,3],[-18,-7],[-6,-20],[-12,-48],[0,-2],[-4,-23],[1,-25],[-20,-77],[-94,30],[-4,21],[-7,27],[-5,42],[-4,39],[2,107],[0,56],[1,1],[1,49],[4,11],[2,0],[18,3],[4,6],[1,8],[0,15],[-2,17],[-11,46],[-6,20],[-1,6],[-8,-3],[-12,-6],[-15,-7],[-1,6],[0,22],[10,48],[9,16],[8,14],[3,3],[20,19],[46,43],[-2,19],[-2,6],[-20,29],[-54,64],[-9,10],[-5,4],[-34,-6],[-43,-8],[-17,-3],[-17,-12],[-8,-22],[0,-19],[4,-45],[2,-28],[0,-37],[-10,-42],[-33,-105],[-25,-87],[-1,-6],[-1,-6],[-7,-45],[-7,-48],[-3,-9],[-8,-2],[-4,-1],[-1,0],[-118,96],[-16,38],[0,2],[0,3],[5,44],[1,6],[7,121],[-43,86],[-7,15],[0,23],[63,199],[14,18],[15,6],[30,-2],[18,-17],[18,-9],[19,0],[14,14],[37,51],[2,9],[1,3],[1,4],[0,5],[1,31],[0,1],[-3,17],[-2,4],[-6,18],[-11,21],[-7,14],[-3,4],[-3,2],[-11,9],[-24,12],[-15,-4],[-10,-7],[-2,-1],[-3,-4],[-9,-15],[-10,-17],[-3,-7],[-20,-51],[-1,-1],[-11,-12],[-13,13],[-1,4],[-3,0],[-2,0],[-4,7],[-9,19],[-5,32],[-1,24],[-1,12],[-2,50],[-3,22],[-43,141],[-7,20],[-6,13],[-19,17],[-4,-2],[-3,-1],[-5,-12],[-10,-52],[-5,-13],[-7,-13],[-29,-55],[-4,-7],[-6,2],[-3,9],[-3,16],[-12,110],[-3,20],[0,1],[-4,48],[-97,305],[-1,1],[-4,-9],[-8,-3],[-64,133],[-3,13],[1,17],[-1,9],[-4,103],[-21,9],[-19,10],[19,83],[28,69],[43,22],[8,-1],[9,-14],[4,-11],[25,-60],[5,-4],[7,3],[7,8],[4,10],[2,14],[0,19],[-2,13],[-46,35],[-3,3],[-3,12],[-19,78],[8,198],[5,7],[39,30],[6,3],[15,-14],[2,0],[8,-4],[7,1],[59,13],[1,0],[9,12],[1,8],[1,6],[-2,44],[-6,22],[-3,14],[-4,10],[-6,15],[-6,10],[-7,6],[-6,0],[-25,-12],[-36,-12],[-5,-1],[-2,-1],[-13,-4],[-24,-3],[-9,7],[-5,10],[-22,91],[-5,32],[31,59],[-32,120],[-21,46],[-6,20],[-2,13],[0,12],[5,16],[8,16],[10,9],[5,0],[6,-5],[2,-2],[21,-47],[5,-5],[6,2],[37,34],[5,8],[4,19],[0,24],[-14,22],[-25,22],[-4,52],[-3,48],[-8,100],[-34,56],[0,18],[5,23],[11,9],[12,6],[31,4],[11,6],[3,2],[25,76],[0,17],[-3,18],[-29,133],[28,61],[2,11],[0,21],[-22,76],[-14,36],[-10,21],[-4,2],[-5,-3],[-13,-38],[-7,-10],[-9,4],[-64,39],[-14,8],[-11,13],[-5,8],[-3,10],[5,176],[5,14],[31,81],[7,29],[19,106],[1,13],[-8,36],[-4,24],[-5,26],[-1,20],[0,30],[2,84],[3,10],[34,147],[10,16],[16,7],[6,2],[9,28],[6,30],[9,58],[0,16],[-4,9],[-3,3],[-25,4],[-23,4],[-83,13],[-14,2],[-2,1],[-1,-4],[-18,-58],[-14,-38],[-8,-8],[-2,-2],[-10,-2],[-3,3],[-42,35],[-14,3],[-38,7],[-8,-1],[-6,-8],[-2,-4],[-1,-4],[-3,-6],[-3,-18],[0,-3],[0,-18],[1,-27],[10,-79],[21,-157],[1,-2],[2,-10],[4,-31],[8,-159],[0,-3],[1,-12],[-2,-10],[-36,-111],[-6,-3],[-5,4],[-12,17],[-6,15],[-14,37],[-13,65],[-6,56],[0,22],[-3,9],[-101,152],[-12,-40],[-4,-6],[-3,-6],[-7,0],[-22,19],[-2,2],[-7,10],[-5,6],[-18,32],[-4,10],[-1,4],[-8,64],[-4,20],[-8,21],[-17,27],[-49,19],[-2,1],[-7,13],[-5,11],[-25,63],[-25,25],[-5,5],[-4,-5],[-5,0],[-3,7],[0,11],[18,84],[18,85],[34,78],[16,31],[38,65],[28,47],[4,6],[5,5],[1,-2],[36,-44],[-14,89],[-17,102],[31,18],[5,3],[4,9],[4,15],[10,129],[-18,94],[0,4],[-2,31],[5,8],[32,-54],[16,-24],[1,-2],[1,0],[7,3],[4,6],[0,55],[3,8],[40,51],[9,-1],[6,-14],[14,-44],[3,-4],[20,-19],[8,6],[7,20],[5,14],[3,124],[-3,12],[0,9],[14,36],[6,6],[2,1],[11,1],[4,1],[3,-2],[8,-7],[4,-7],[21,-39],[-1,-22],[-6,-29],[-3,-10],[3,-8],[3,-6],[5,-8],[1,-1],[10,-9],[1,1],[13,2],[4,9],[2,14],[6,74],[1,43],[1,109],[11,55]],[[63759,27959],[-46,-94],[-13,-26],[-3,-6],[-17,-35],[-54,-106],[-121,-242],[-16,-30],[-36,-73],[-22,-43],[-62,-121],[-35,-74],[-12,-23],[-14,-29],[-63,-131],[-94,-194],[-56,-118],[-73,-150],[-13,-27],[-155,-319],[-150,-313],[-69,-143],[-43,-88],[-29,-53],[-17,-32],[-198,-367],[-422,-780],[-59,-110],[-20,-37],[-115,-210],[-25,-47],[-68,-126],[-3,-5],[-66,-122],[-93,-163],[-76,-134],[-12,-38]],[[61389,23350],[-60,-96],[-34,-55],[-39,-61],[-33,-55],[-40,-57],[-14,-7],[-167,-87],[-15,-1],[-20,1],[-21,0],[-86,-31],[-82,-34],[-22,-9],[-42,-16],[-15,-6],[-15,0],[-119,229],[-46,86],[-43,82],[-1,1],[-17,48],[-24,69],[-90,259],[-12,36],[-16,45],[-35,100],[-56,159],[-34,96],[-40,113],[-33,95],[-11,23],[-6,15],[-17,49],[-12,33],[-28,81],[-32,90],[-48,137],[-113,321],[-5,15],[-5,14],[-10,29],[-14,40],[-114,332],[-114,332],[-79,230]],[[59510,25995],[-47,164],[-13,37],[-9,29],[-29,83],[-16,49],[-6,22],[-3,8],[-5,50],[-2,104],[-5,244],[-2,144],[-1,3],[-1,75],[-10,694],[-5,87],[-9,420],[-6,200],[-3,216],[-1,49],[-25,32],[-18,23],[-28,37],[-127,162],[-38,49],[-68,87],[-118,155],[-298,387],[-1,2],[-12,22],[-23,43],[-6,11],[-9,16],[-23,42],[-35,65],[-59,111],[-113,203],[-15,34],[-47,81],[-53,93],[-41,70],[-11,27],[-17,27],[-19,22],[-13,12],[-195,187],[-12,27]],[[57913,30700],[11,50],[9,34],[9,26],[14,20],[17,22],[13,16],[10,31],[8,30],[9,31],[11,37],[6,37],[-7,34],[0,41],[10,30],[15,45],[7,43],[-3,40],[12,32],[8,37],[5,39],[2,40],[1,44],[0,4],[5,40],[9,48],[12,27],[5,37],[5,45],[10,31],[14,13],[13,13],[17,18],[6,36],[1,52],[20,61],[4,38],[3,45],[8,33],[4,54],[5,54],[3,40],[3,41],[6,47],[6,44],[7,34],[11,23],[22,19],[18,1],[10,29],[7,53],[6,33],[8,37],[9,31],[8,36],[2,53],[3,72],[8,35],[0,42],[-4,55],[-7,42],[-11,42],[-3,65],[2,41],[5,45],[7,58],[2,41],[-2,39],[-4,36],[-4,43],[5,35],[15,72],[12,85],[15,19],[11,28],[30,31],[17,-4],[13,9],[21,-42],[18,-5],[13,-14],[14,-5],[10,25],[5,43],[14,12],[13,5],[19,55],[13,57],[6,36],[21,14],[6,45],[6,42],[9,28],[17,4],[14,27],[7,37],[6,37],[14,0],[16,-7],[24,25],[7,35],[17,-8],[20,10],[19,-9],[14,10],[13,26],[12,-22],[16,-19],[14,-25],[24,-10],[13,9],[19,1],[34,44],[15,12],[14,42],[5,52],[-7,62],[15,37],[5,62],[13,51],[6,38],[12,30],[12,15],[10,87],[24,23],[17,13],[11,37]],[[23252,33269],[-23,-27],[-68,-118],[-29,-46],[-186,-297],[-64,-101],[-160,-256],[-80,-128],[-16,-27],[-35,-56],[-24,-40],[-135,-219],[-57,-91],[-42,-69],[-51,-83],[-38,-62],[-45,-73],[-12,-19],[-35,-56],[-40,-65],[-14,-22],[-20,-32],[-157,-255],[-20,-31],[-22,-37],[-13,-20],[-19,-31],[-71,-114],[-217,-352],[-65,-106],[-63,-101],[-75,-122],[-115,-185],[-127,-204],[-22,-35],[-56,-91],[-122,-197],[-70,-113],[-28,-43],[-15,-27],[-72,-116],[-63,-101],[-28,-46],[-46,-79],[-12,-19],[-130,-207],[-35,-57],[-12,-19],[-122,-196],[-45,-70],[-134,-221],[-127,-211],[-20,-28],[-8,-31],[0,-3],[1,-136],[0,-31],[-2,-52],[-3,-9],[-15,-46],[-34,17],[-6,3],[-8,7],[-3,6],[-6,11],[-15,10],[-2,2],[-14,10],[-27,7],[-5,-3],[-38,-46],[-1,-1],[-60,-47],[-18,-8],[-33,-54],[-62,-101],[-4,-16],[-14,-31],[-11,-8],[-12,-4],[-37,-2],[-8,-4],[-20,-13],[-10,-6],[-10,-10],[-6,-15],[-6,-27],[-2,-26],[2,-31],[2,-14],[2,-5],[5,-12],[18,-21],[17,-19],[1,-1],[17,-12],[13,-10],[14,-15],[5,-11],[3,-11],[2,-8],[1,-1],[12,-71],[7,-58],[-1,-31],[-2,-6],[-17,-65],[-11,-41],[-5,-14],[-42,-36],[0,-1],[-35,-109],[-4,-11],[3,-13],[0,-3],[65,-257],[4,-12],[-8,-105],[-7,-94],[7,-6],[0,-1],[1,0],[2,-1],[2,-1],[2,-1],[1,0],[6,-1],[9,-155],[0,-55],[-7,-50],[-54,-153],[-3,-6],[-1,-1],[-11,-7],[-2,-1],[-12,-2],[-22,7],[-14,4],[-7,-2],[-9,1],[-31,-12]],[[19374,25750],[-7,-7],[-42,-20],[-13,8],[-6,-8],[-3,-4],[-10,-40],[-3,-17],[-2,-9],[-1,-5],[6,-14],[23,-35],[1,-1],[1,-3],[5,-14],[1,-37],[-5,-50],[-19,-122],[-1,-4],[-2,-4],[-7,-15],[-44,-86],[-16,-15],[-2,-1],[-9,-2],[-9,7],[-4,-8],[1,-24],[1,-16],[0,-15],[5,-17],[1,-1],[27,-12],[-21,-91],[-2,-8],[-1,-2],[-9,-19],[-1,-3],[-12,-16],[-3,-3],[-12,-14],[-6,-4],[-39,-33],[-83,-70],[-6,0],[-1,0],[-21,-9],[-4,-9],[0,-7],[0,-1],[15,-50],[-1,-2],[-3,-15],[-5,-26],[0,-2],[-7,-7],[-25,-13],[-15,0],[-7,7],[-5,8],[-1,11],[0,2],[-2,83],[-4,75],[0,6],[-3,53],[-2,10],[-6,2],[-31,-53],[-2,-4],[-1,-5],[-8,-30],[-2,-24],[-12,-137],[-4,-53],[-1,-16],[-4,-107],[0,-13],[23,-70],[2,-9],[1,-1],[-2,-22],[-2,-11],[-8,-11],[-13,0],[-10,10],[-73,76],[-4,4],[-19,21],[-8,14],[-2,3],[-3,11],[1,10],[3,75],[4,17],[7,16],[-4,9],[-33,78],[-2,5],[-4,-5],[-2,-8],[-25,-103],[-1,-7],[2,-9],[-2,-55],[-1,-5],[-6,-81],[-6,-27],[-6,-3],[-3,20],[-4,25],[-6,11],[0,2],[-35,68],[-1,0],[-5,2],[-3,1],[-2,-2],[-11,-23],[-13,-64],[-13,-47],[-18,-42],[-7,-11],[-28,-40],[-31,54],[-21,-84],[0,-1],[-3,-13],[-17,-70],[28,-47],[0,-5],[7,-96],[6,-59],[-1,-2],[-58,-112],[-8,-14],[-8,-13],[-6,0],[-12,-1],[-11,-7],[-48,-49],[-3,-2],[-15,-57],[-2,-3],[-24,-27],[-2,-2],[-3,0],[-2,1],[-2,0],[-36,-5],[-3,-28],[-9,-14],[-9,-3],[-16,-5],[-3,-1],[-1,0],[-4,2],[-5,3],[-3,4],[-1,4],[0,2],[3,34],[11,60],[14,147],[0,6],[-3,8],[-1,1],[-9,-9],[-76,-81],[-36,-57],[-6,1],[-6,7],[-15,21],[-15,23],[-23,19],[-6,9],[-2,6],[1,13],[5,6],[8,6],[48,3],[6,7],[1,10],[1,52],[-3,20],[-4,14],[-25,61],[-16,37],[3,17],[21,114],[6,9],[3,21],[5,83],[1,47],[-3,38],[-5,25]],[[18099,24520],[53,154],[16,59],[6,46],[5,58],[-3,153],[-2,73],[-8,58],[-21,108],[-27,119],[-35,113],[-58,122],[-39,42],[0,1],[-2,1],[-101,73],[-136,160],[1,8],[6,68],[26,-28],[9,107],[2,46],[-26,55],[14,43],[16,51],[13,20],[23,-47],[12,12],[-1,35],[15,87],[7,35],[8,47],[0,44],[-5,41],[1,41],[15,24],[13,20],[16,28],[17,31],[14,22],[-8,112],[15,120],[13,19],[9,-35],[6,-22],[7,4],[14,64],[16,82],[12,43],[3,38],[-13,18],[-18,-11],[-12,20],[4,38],[14,9],[14,4],[27,83],[6,34],[-11,62],[-45,80],[-4,42],[9,36],[3,23],[-12,27],[-29,-37],[-14,-4],[-7,25],[54,321],[0,5],[-69,397],[-22,164],[-28,169],[-25,143],[-45,272],[-24,135],[-7,51],[0,1],[-8,49],[-6,41],[-87,226],[-33,87],[-9,36],[-93,233],[-10,27],[-82,218],[-19,50],[-19,51],[-59,161],[-48,122],[-48,121],[-36,93],[-51,132],[-29,73],[-18,42],[-13,25],[-24,49],[-19,34],[-26,53],[-35,68],[-36,78],[-58,114],[-20,35],[-63,128],[-51,112],[-2,4],[0,12],[-6,38],[-7,21],[-2,2],[-7,-4],[-2,-6],[-7,-15],[-3,7],[0,25],[0,8],[7,166],[5,37],[0,20],[0,37],[1,72],[-4,94],[-1,27],[-19,18],[-6,10],[-6,8],[-24,58],[-2,7],[-3,18],[-12,183],[-25,61],[0,1],[-7,0],[-3,3],[-4,11],[-6,62],[0,33],[3,18],[20,66],[5,8],[3,2],[5,-5],[4,-26],[1,-2],[3,4],[2,8],[2,28],[0,3],[-1,37],[-4,12],[-31,52],[-11,5],[-25,9],[-11,-5],[-16,-23],[-5,8],[0,10],[14,50],[5,9],[7,-4],[17,21],[12,15],[28,60],[13,28],[28,76],[8,78],[2,76],[-1,10],[-1,24],[-5,11],[-16,22],[-45,-25],[-5,1],[-51,8],[-22,4],[-14,6],[-13,11],[-7,16],[0,24],[2,8],[1,6],[43,38],[7,6],[1,6],[3,12],[1,54],[0,27],[0,21],[0,2],[-1,11],[-126,394],[-4,6],[-4,0],[-6,-6],[-7,-18],[-20,-77],[-2,-8],[-5,-10],[-7,-15],[-2,-1],[-8,-5],[-10,3],[-3,11],[-1,11],[-1,16],[-5,51],[-6,41],[-10,36],[-2,4],[-17,34],[-7,5],[-12,-4],[-1,-1],[-24,-47],[-2,-5],[-3,-9],[-43,-85],[-1,0],[-19,5],[-68,16],[-4,-5],[-44,-59],[-12,64],[-5,26],[-16,92],[-77,-12],[-41,49],[-25,122],[-1,2],[-5,38]],[[15930,34238],[27,53],[12,24],[12,25],[19,39],[17,16],[19,27],[9,18],[4,8],[13,37],[16,38],[12,37],[7,26],[8,46],[13,49],[14,36],[3,10],[7,19],[16,43],[15,44],[5,16],[27,82],[16,44],[17,51],[10,36],[14,41],[19,47],[22,43],[2,4],[31,39],[15,30],[21,46],[22,44],[18,17],[8,7],[20,15],[12,17],[4,8],[19,39],[17,48],[8,21],[14,37],[1,2],[3,7],[18,34],[15,19],[3,4],[12,11],[21,26],[14,20],[25,30],[3,2],[14,20],[35,47],[20,23],[27,25],[32,34],[10,11],[33,36],[15,16],[9,9],[17,20],[22,25],[36,31],[14,12],[12,12],[26,19],[22,13],[35,12],[40,20],[49,20],[31,16],[27,11],[23,7],[26,10],[23,8],[23,11],[13,7],[20,12],[48,-1],[19,7],[49,-4],[64,0],[48,0],[27,4],[26,3],[22,4],[16,2],[14,2],[16,2],[15,2],[14,2],[25,5],[29,9],[46,24],[23,8],[21,8],[38,10],[20,14],[20,19],[15,8],[28,2],[37,6],[12,4],[31,3],[27,-2],[17,3],[22,7],[25,11],[23,13],[21,10],[17,9],[31,20],[20,12],[27,23],[18,16],[1,1],[19,11],[22,-3],[5,-2],[27,-6],[21,18],[8,24],[17,22],[17,7],[29,10],[37,9],[7,0],[12,1],[9,1],[17,5],[15,4],[17,5],[4,0],[17,5],[18,7],[28,18],[20,11],[15,9],[27,16],[22,18],[10,8],[19,16],[26,15],[14,8],[32,16],[28,16],[16,11],[31,15],[20,1],[4,-1],[9,-3],[10,-9],[19,-17],[14,-12],[22,2],[34,27],[74,3],[51,12],[82,25],[13,2],[165,23],[56,62],[41,62],[16,0],[-6,-38],[-23,-44],[-22,-55],[0,-37],[0,-1],[2,-5],[8,-18],[20,0],[20,6],[26,31],[20,41],[6,37],[7,46],[15,30],[11,18],[17,59],[0,1],[21,73],[23,44],[20,23],[20,38],[10,24],[0,87],[17,4],[-3,37],[-3,8],[3,44],[12,130],[1,2],[6,16],[13,7],[0,-1],[8,-104],[2,-91],[0,-10],[0,-19],[-1,-41],[-3,-79],[-1,-52],[14,-3],[25,61],[15,34],[12,47],[11,52],[6,50],[-2,35],[-8,4],[-32,-76],[-3,-9],[22,198],[14,105],[8,78],[7,105],[5,105],[0,33],[0,61],[1,0]],[[79182,31597],[-19,-27],[-13,-12],[-17,-23],[-3,-44],[1,-65],[8,-36],[-6,-46],[-2,-40],[25,-25],[21,-49],[12,-48],[-12,-51],[6,-63],[-12,-42],[1,-55],[14,-21],[26,-31],[-31,-60],[-12,-23],[-14,-45],[16,-55],[-12,-33],[-22,-17],[-15,4],[-12,-28],[-1,-57],[-7,-70],[12,-17],[19,29],[13,15],[19,-26],[-5,-71],[22,-98],[-11,-41],[-13,-50],[-1,-54],[25,-66],[-20,-67],[-21,-51],[-1,-48],[17,-30],[-16,-47],[-1,-43],[-9,-32],[1,-48],[13,-22],[34,-3],[4,-54],[13,-27],[18,8],[15,-5],[19,10],[25,28],[21,50],[35,-35],[-1,-53],[-13,-76],[10,-36],[18,3],[15,-27],[15,-86],[12,-19],[2,-50],[13,-52],[29,16],[11,-25],[14,-23],[22,-34],[8,39],[9,36],[13,5],[17,-41],[7,-47],[-19,-39],[-8,-33],[-7,-106],[15,-48],[8,-48],[6,-51],[-21,-12],[-14,2],[-12,-52],[-15,-3],[-19,-7],[-23,-12],[5,-42],[19,-29],[7,-58]],[[79452,28732],[-14,-16],[-12,-25],[-4,-41],[-17,-20],[-27,24],[-10,37],[-15,55],[-3,57],[-15,42],[-28,20],[-4,56],[-24,86],[-14,30],[-6,51],[-17,16],[-25,-29],[-15,-32],[-11,-33],[-13,11],[-18,64],[-24,-7],[-23,-23],[-18,-32],[-30,6],[-19,28],[-15,18],[-11,36],[-18,0],[-10,-34],[-1,-54],[-13,-31],[-12,-12],[-29,9],[-15,71],[9,73],[8,53],[2,46],[-3,64],[6,85],[-25,0],[-14,-18],[-9,40],[-18,8],[-14,18],[-16,44],[-13,35],[-11,50],[-12,32],[0,39],[16,44],[3,40],[-5,48],[4,40],[2,54],[-14,24],[-13,3],[-16,21],[-9,67],[-15,12],[-22,-2],[-10,41],[-8,45],[-10,33],[-13,-25],[-16,-39],[-22,-16],[-14,-31],[-17,-21],[-14,7],[-3,41],[-11,26],[-19,-8],[-25,-2],[-21,-24],[-20,7],[-10,32],[4,42],[-7,34],[-27,1],[-15,3],[-11,34],[-15,91],[-16,13],[-16,26],[-3,37],[-8,31],[-27,-17],[1,68],[9,64],[-5,85],[3,55],[-12,22],[-28,-43],[-14,-46],[-14,7],[-15,15],[-19,27],[8,80],[-13,41],[-5,39],[12,57],[5,39],[-14,6],[-24,-29],[-19,-6],[-21,18],[-7,36],[1,40],[8,67],[-1,43],[2,64],[-13,41],[-5,41],[16,40],[-11,30],[-13,39],[1,53],[-17,34],[-13,0],[-18,-23],[-14,-8],[-16,-7],[-10,26],[-2,45],[-11,29],[-15,5],[-13,21],[10,41],[8,33],[1,48],[2,46],[-13,20],[-9,46],[-4,50],[-13,36],[-15,30],[-4,46],[-16,40],[-9,52],[-22,17],[-12,26],[-7,41],[-24,2],[-18,14],[-18,0],[-14,20],[-12,26],[-13,11],[-13,17],[-18,39],[-9,29],[-5,16],[-7,20],[-4,36],[2,29],[0,10],[6,37],[1,19],[4,47],[-2,51],[0,6],[-2,3],[-15,23],[-20,-18],[-17,-12],[-20,-8],[-14,0],[-16,-5],[-21,-10],[-17,-10],[-17,-5],[-22,-11],[-20,-29],[-12,-35],[-7,-33],[-22,-73],[-11,-39],[-11,-44],[-13,-49],[-9,-36],[-9,-63],[0,-41],[2,-76],[2,-45],[-3,-62],[-16,-49],[-13,-22],[-19,-22],[-14,-4],[-26,-2],[-49,11],[-9,6],[-13,9],[-2,1],[-13,1],[-13,-26],[-14,3],[-182,37],[-86,14],[-50,9],[-24,4],[-18,6],[-1,0],[-25,8],[-42,18],[-20,8],[-36,15],[-29,13],[-16,7],[-20,9],[-239,105],[-16,7],[-159,67],[-133,56],[-23,9],[-14,6],[-74,29],[-40,17]],[[71451,31035],[18,-114],[9,-52],[1,-6],[1,-6],[0,-7],[1,-6],[0,-7],[1,-6],[0,-7],[0,-7],[-1,-6],[0,-7],[0,-1],[-3,-36],[0,-6],[-1,-4],[-7,-68],[0,-2],[-1,-6],[-1,-7],[-1,-5],[-1,-6],[-2,-5],[-1,-6],[-1,-3],[-10,-29],[0,-1],[-2,-5],[-2,-4],[-2,-4],[-2,-3],[0,-1],[-20,-31],[-1,-2],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-2,-1],[-3,0],[-2,-1],[-27,0],[-1,0],[-39,1],[-2,0],[-1,0],[-14,4],[-1,0],[-3,1],[-2,2],[-1,1],[-28,25],[27,-123],[1,-3],[1,-6],[1,-6],[0,-6],[1,-7],[1,-6],[0,-7],[0,-6],[0,-7],[0,-7],[0,-6],[0,-7],[-1,-6],[-1,-7],[0,-6],[-1,-6],[-1,-6],[-2,-6],[-1,-5],[-1,-5],[-2,-5],[-2,-5],[-2,-4],[-1,-4],[-2,-3],[-2,-3],[-3,-3],[-2,-3],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-28,-6],[-23,-6],[-1,0],[-2,0],[-2,0],[-22,4],[-1,0],[-2,0],[-2,1],[-3,2],[-2,2],[-2,2],[-2,3],[-2,3],[-2,4],[-1,2],[-15,30],[-17,-5],[-2,-41],[0,-1],[-1,-6],[-1,-6],[0,-7],[-1,-6],[-1,-6],[-2,-5],[-1,-6],[-1,-2],[-14,-48],[0,-3],[-2,-5],[-2,-4],[-1,-5],[-2,-4],[-2,-3],[-2,-3],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-2,-1],[-3,0],[-2,-1],[-2,1],[-3,0],[-2,1],[-2,2],[-2,2],[-3,2],[-2,3],[-2,3],[-2,3],[0,2],[-8,16],[-1,2],[-2,4],[-2,5],[-7,20],[-18,-10],[-2,-1],[-40,-14],[-2,0],[-2,0],[-3,0],[-2,0],[-2,2],[-3,1],[-2,2],[-1,2],[-18,19],[0,1],[-2,2],[-2,4],[-2,3],[-2,4],[-2,4],[-2,5],[-1,5],[-2,5],[-1,5],[-1,6],[-1,6],[-1,6],[-1,6],[-1,6],[0,7],[-1,6],[0,7],[0,7],[0,6],[0,7],[1,7],[0,6],[1,6],[0,4],[2,15],[1,7],[-4,-1],[-1,0],[-58,-10],[7,-29],[1,-4],[1,-6],[1,-6],[1,-6],[1,-7],[0,-6],[0,-7],[1,-6],[0,-7],[0,-2],[-1,-54],[0,-4],[0,-7],[0,-6],[-1,-7],[-1,-6],[0,-6],[-1,-6],[-1,-6],[-2,-6],[0,-2],[-22,-88],[-1,-4],[-1,-5],[-2,-5],[-1,-4],[-2,-5],[-2,-3],[0,-1],[-8,-14],[-2,-4],[-2,-3],[-2,-3],[-2,-2],[-2,-2],[-3,-1],[0,-1],[-28,-14],[-5,-7],[-19,-57],[-14,-93],[-1,-5],[-1,-6],[-1,-6],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-4],[-2,-3],[-10,-21],[-1,-1],[-2,-4],[-2,-3],[-2,-3],[-3,-3],[-18,-56],[-14,-4],[-10,-6],[-2,-3],[-1,-2],[-19,-24],[-1,-1],[-2,-2],[-2,-2],[-3,-2],[-2,-1],[-2,0],[-13,-4],[-9,-7],[-10,-18],[0,-41],[0,-10],[0,-6],[-1,-7],[0,-6],[-1,-7],[-1,-6],[0,-3],[-4,-25],[-1,-3],[-1,-5],[-1,-6],[-1,-5],[-2,-6],[-1,-5],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-3],[-2,-3],[-1,-1],[-9,-9],[-1,-1],[-2,-2],[-2,-2],[-2,0],[-6,-3],[-96,-53],[-35,47],[-26,62],[-14,48],[-4,8],[-1,4],[-1,7],[0,1],[-1,6],[-1,6],[-16,34],[-16,3],[-1,-40],[6,-34],[10,-33],[0,-111],[0,-58],[0,-30],[-3,-189],[-12,-707],[-2,-46],[-2,-148],[-1,-50],[-1,-46],[-3,-38],[-14,-34],[-14,-37],[-11,-27],[0,-2],[-13,-33],[-11,-10],[-10,-2],[-5,1],[-7,9],[-9,14],[-35,69],[-9,22],[-4,20],[-6,37],[-1,33],[3,41],[-5,72],[-3,21],[0,3],[-1,1],[-5,8],[-31,13],[-12,-11],[-9,-12],[-4,-13],[-36,-110],[-16,-48],[0,-3],[-9,-47],[-3,-24],[-3,-29],[-12,-101],[14,-31],[2,-23],[7,-28],[13,-39],[9,-14],[8,-11],[6,-20],[5,-41],[-1,-31],[-6,-42],[-6,-29],[-15,-20],[-22,-19],[-14,-8],[-11,10],[-25,32],[-9,17],[-6,13],[-17,38],[-11,30],[-12,33],[-9,31],[-18,100],[-14,93],[-2,29],[0,8],[-6,12],[-6,5],[-5,0],[-2,1],[-31,-45],[-5,-13],[-14,-65],[-5,-27],[-5,-29],[-4,-30],[-4,-32],[-2,-45],[-1,-25],[1,-46],[-1,-48],[-2,-34],[0,-2],[-2,-10],[-4,-14],[-2,-6],[-2,-7],[-4,-2],[-1,-1],[-2,-5],[-15,-25],[-11,-12],[-15,-16],[-37,-40],[-5,-6],[-9,-13],[-10,-23],[-6,-26],[-1,-13],[-1,-14],[-1,-3],[2,-17],[17,-69],[5,-15],[4,-4],[10,-12],[7,-13],[6,-13],[5,-11],[2,-8],[0,-7],[0,-8],[0,-3],[-2,-14],[-2,-5],[-6,-16],[-19,-26],[-2,-3],[-9,-9],[-25,-24],[-1,-1],[-43,-36],[-4,-3],[-1,-5],[-4,-14],[-1,-4],[-3,-11],[0,-16],[1,-2],[1,-15],[11,-25],[20,-25],[12,-15],[7,-7],[22,-22],[37,-42],[52,-72],[3,-2],[3,-19],[2,-6],[-1,-21],[-9,-31],[-14,-51],[-7,-25],[-4,-10],[-21,-48],[-3,-7],[-11,-19],[-3,-2],[-13,-8],[-13,1],[-50,31],[-2,1],[-3,1],[-17,4],[-2,1],[-12,-3],[-3,-1],[-20,-11],[-2,-1],[-11,-8],[-23,-26],[-14,-15],[-15,-20],[-6,-11],[-6,-16],[0,-1],[-1,-21],[0,-4],[0,-10],[1,-25],[24,-324],[5,-22],[7,-16],[3,-4],[15,-13],[5,-2],[33,-16],[12,-1],[11,0],[27,-2],[6,-3],[3,-4],[8,-12],[14,-11],[8,-10],[6,-13],[6,-25],[2,-10],[5,-44],[0,-1],[1,-21],[-2,-11],[-35,-79],[-2,-3],[-10,-13],[-13,-10],[-1,-1],[-36,-4],[-1,0],[-17,-12],[-6,-3],[-4,-4],[-7,-6],[-25,-21],[-4,-11],[0,-3],[0,-5],[-6,-8],[-7,-12],[-9,-14],[-31,-48],[-12,-20],[-16,-38],[-1,-3],[-2,-3],[-5,-6],[-2,-2],[-2,-1],[-62,-29],[-32,-5],[-7,-2],[-13,-5],[-48,-17],[-8,-4],[-9,-5],[-3,-1],[-9,-12],[-1,-3],[-2,-4],[-3,-19],[-1,-18],[1,-30],[0,-26],[5,-23],[36,-102],[1,-2],[11,-23],[10,-12],[23,-17],[6,-1],[31,-11],[3,-2],[9,-9],[8,-19],[4,-8],[4,-27],[1,-6],[2,-20],[1,-19],[0,-34],[2,-76],[1,-20],[-3,-102],[-8,-75]],[[69439,24707],[-13,50],[-10,57],[5,61],[-3,38],[-15,123],[-10,29],[-32,10],[-40,57],[-33,27],[-38,90],[-99,218],[-15,33],[-11,33],[-39,91],[-24,57],[-124,287],[-57,130],[-10,24],[-105,244],[-56,129],[-120,279],[-107,247],[-86,203],[-63,145],[-12,29],[-16,36],[-42,97],[-14,30],[-143,324],[-69,157],[-136,309],[-28,54],[-105,225],[-40,86],[-63,134],[-39,85],[-1,1],[-92,201],[-39,86],[-2,4],[-28,61],[-99,217],[-38,96],[-46,117],[-38,98],[-82,210],[-89,226],[-43,110],[-2,5],[-115,292],[-93,238],[-21,53],[-67,172],[-17,52],[-12,31],[-11,26],[-12,30],[-12,29],[-18,32],[-12,18],[-6,11],[-9,15]],[[89901,29217],[-21,8],[-15,3],[-13,12],[-15,0],[-14,27],[-11,28],[-20,-45],[-14,-15],[-8,-44],[-11,-54],[-35,-94],[-15,-36],[-34,-5],[-14,-4],[0,3],[-9,26],[-12,23],[-8,22],[-4,15],[-22,11],[-13,29],[-21,26],[-14,-15],[-28,-16],[-20,-74],[-7,-58],[-11,-41],[-33,-43],[-42,61],[-17,-1],[-16,-5],[-46,56],[-13,-42],[-20,-53],[-17,11],[-30,19],[-44,-30],[-12,-16],[-15,-62],[-16,-7],[-9,47],[-8,66],[-9,43],[-18,-27],[-12,-28],[-18,-29],[-16,-41],[-13,-10],[-17,16],[-14,30],[-16,-6],[-30,-64],[-10,29],[-16,27],[-23,48],[-11,48],[-9,55],[-18,34],[-16,-17],[-15,-36],[-27,-29],[-25,-17],[-20,48],[-17,27],[-13,48],[-16,17],[-13,-23],[-16,-11],[-22,-91],[-28,-89],[-24,24],[-15,-6],[-14,-16],[-27,-148],[-11,-22],[-20,-9],[-33,2],[-15,-2],[-33,-36],[-29,-6],[-14,-6],[-16,-49],[-43,-46],[-12,18],[-14,18],[-28,5],[-16,-20],[-36,-78],[-9,-44],[-13,-56],[-15,-32],[-17,10],[-16,1],[-15,19],[-13,13],[-16,-46],[-14,-7],[-36,-92],[-11,-57],[-4,-54],[-15,-19],[-17,-22],[-30,-32],[-4,-44],[0,-43],[6,-41],[-8,-43],[-9,-30],[7,-37],[-3,-38],[0,-70],[-6,-47],[-20,-24],[-20,-29],[-12,-26],[-17,-10],[-30,27],[-11,-36],[-8,-42],[-14,-49],[-17,-54],[-19,-4],[-15,-25],[-11,-27],[-1,-58],[-16,-34],[-5,-52],[-9,-66],[-3,-56],[12,-53],[4,-58],[-17,14],[-6,34],[-13,2],[-14,-7],[-13,-10],[-14,9],[-12,-31],[-5,-46],[-18,-13],[-11,-24],[-15,8],[-18,12],[-20,-6],[-16,-14],[-12,-43],[-12,-27],[-2,-42],[-4,-45],[-5,-43],[-8,-33],[-25,-14],[-20,-16],[-21,10],[-13,-40],[-22,-22],[-2,-2],[-17,-4],[-13,-35],[-1,-41],[-13,-50],[-21,36],[-18,23],[-18,12],[-20,-3],[-14,-4],[-14,28],[-17,9],[-18,4],[-15,-25],[-14,-54],[-14,-52],[2,-61],[-48,17],[-10,-43],[-13,-39],[1,-42],[-3,-54],[-1,-51],[-22,-56],[-14,-10],[-22,31],[-7,34],[-30,43],[-16,-5],[-22,-47],[-45,-24],[-16,11],[-20,-10],[-22,-44],[-1,-66],[-2,-42],[-11,-27],[-9,-55],[-9,-47],[-34,-80],[-72,-36],[-29,-35],[-10,-26],[-13,-15],[-10,-30],[-9,-62],[-7,-39],[-13,-17],[-12,-12],[-10,-36],[-18,-5],[-8,32],[-21,4],[-18,18],[-8,45],[-15,30],[-10,33],[1,39],[2,52],[-6,47],[-6,44],[18,93],[-12,122],[-12,18],[-14,33],[-6,39],[-15,26],[-16,-13],[-18,2],[-15,17],[-12,11],[-26,-24],[-11,48],[-7,80],[-14,44],[-11,27],[-18,-12]],[[86386,26368],[-5,39],[-11,45],[-11,27],[-14,16],[-8,37],[-4,47],[-12,39],[-7,62],[-6,54],[-14,3],[-12,-21],[-26,-14],[-15,-4],[-16,-8],[-14,-5],[-8,37],[-6,40],[-6,37],[3,41],[-14,22],[-15,12],[-14,4],[-26,12],[-17,-6],[-19,-40],[-24,-10],[-30,23],[-20,-17],[-14,-9],[-15,22],[-21,70],[-3,50],[-1,44],[-3,63],[-3,62],[-11,24],[-18,17],[-18,1],[-22,-14],[-20,11],[-16,-9],[-13,-27],[-18,-32],[-13,-7],[-15,-4],[-28,-7],[-16,-10],[-23,-4],[-24,-5],[-16,18],[-15,39],[-11,75],[-3,32],[-2,27],[0,3],[2,37],[-5,48],[-11,28],[-3,4],[-10,14],[-25,9],[-4,36],[-1,39],[-14,49],[-18,2],[-12,35],[-17,48],[-17,39],[-12,27],[-5,39],[-1,56],[-4,41],[-6,39],[3,56],[17,50],[-5,43],[-11,43],[-7,36],[6,36],[15,34],[3,49],[-12,37],[-12,38],[-11,30],[-11,29],[-16,-1],[-17,-5],[-15,1],[-17,-19],[-18,-14],[-24,11],[-18,21],[-14,-9],[-19,-10],[-12,-26],[-6,-55],[7,-57],[0,-46],[-18,-8],[-18,10],[-16,20],[-22,-20],[-32,-19],[-10,-35],[-4,-59],[-9,-64],[-15,-21],[-23,-21],[-15,-4],[-25,-26],[-13,-12],[-15,-13],[-15,-6],[-25,12],[-20,9],[-32,13],[-7,38],[-12,29],[-14,2],[-25,0],[-12,20],[-11,35],[-13,20],[-12,17],[-17,-5],[-22,-20],[-20,-24],[-20,-27],[-9,-41],[-9,-46],[-22,-15],[-26,7],[-2,41],[9,38],[11,44],[8,38],[11,36],[9,32],[-1,39],[6,51],[12,34],[14,21],[3,50],[-8,50],[1,57],[1,79],[-18,19],[-24,38],[-6,41],[-9,35],[-2,37],[11,24],[12,16],[12,21],[19,39],[0,45],[-9,43],[-7,36],[-16,25],[-21,30],[-10,31],[1,43],[-6,37],[-5,40],[2,40],[1,39],[7,44],[5,43],[5,41],[10,34],[12,44],[0,94],[-1,54],[-5,39],[-1,3],[1,1],[14,18],[15,3],[9,43],[16,20],[6,31],[1,3],[-38,177],[10,90],[28,25],[1,99],[15,52],[43,-4],[14,50],[19,17],[14,21],[17,41],[-5,52],[-2,43],[16,62],[-15,53],[-1,54],[-33,19],[-23,19],[-14,10],[-5,53],[3,42],[14,48],[19,48],[11,47],[-8,54],[14,52],[5,66],[32,48],[-5,59],[-11,36],[-16,62],[20,70],[-16,18],[-12,21],[-25,-12],[-31,85],[21,58],[22,12],[34,47],[11,30],[-5,84],[5,84],[-13,46],[-16,40],[-6,57],[-3,57],[12,12],[1,2],[9,43],[-4,57],[-8,39],[-7,126],[-4,44],[-3,41],[-4,37],[0,50],[-1,5],[-5,32],[-3,38],[-26,367],[-19,281],[-1,17],[-4,61],[-44,639],[-23,339],[-11,86],[-7,74]],[[57913,30700],[-14,0],[-17,18],[-16,15],[-15,13],[-13,0],[-13,-15],[-14,-9],[-15,12],[-12,18],[-14,1],[-15,-10],[-21,-20],[-15,-17],[-11,-20],[-13,-14],[-14,-12],[-13,-16],[-12,-20],[-12,-30],[-15,-15],[-12,-18],[-9,-34],[0,-39],[7,-42],[1,-38],[0,-41],[9,-61],[8,-42],[13,-35],[13,-44],[7,-37],[-3,-58],[-5,-44],[-5,-45],[-7,-44],[-17,-63],[-14,-52],[-12,-29],[-10,-42],[-6,-40],[-13,-7],[-9,-32],[-2,-58],[-2,-44],[-1,-39],[5,-35],[15,-91],[-5,-37],[-16,-96],[0,-48],[-32,-37],[-23,-3],[-35,-124],[-18,1],[-16,-9],[-23,-15],[-13,-36],[-23,-30],[-35,63],[-30,19],[-35,-36],[-18,0],[-28,-1],[-13,-10],[-11,-53],[-17,-27],[-39,-66],[-34,8],[-26,-1],[-27,12],[-13,8],[-30,3],[-29,-6],[-111,9],[-8,29],[-16,-4],[-16,13],[-20,-12],[-20,-55],[-18,-46],[-9,-29],[-11,-24],[-19,-1],[-14,-8],[-13,3],[-12,-14],[-16,-12],[-10,36],[-14,25],[5,37],[-17,-2],[-16,-12],[1,47],[-14,18],[-13,-18],[-12,-39],[-14,1],[-15,-6],[-15,18],[-16,17],[-19,-28],[-22,-79],[-13,-25],[-16,-30],[-26,-50],[-49,-93],[-11,-21],[-13,-26],[-11,-22],[-12,-22],[-15,-29],[-22,-42],[-16,-26],[-17,-29],[-3,-5],[-17,-30],[-25,-42],[-20,-35],[-20,45],[-18,-6],[-15,-30],[-4,-8],[-11,-18],[-22,-56],[-11,-21],[-38,-36],[-18,5],[-15,59],[-3,10],[-14,57],[-11,29],[-18,15],[-15,-23],[-7,-34],[-11,-81],[-9,-79],[1,-47],[28,-108],[26,-101],[11,-44],[6,-71],[6,-38],[2,-15],[4,-37],[5,-46],[-21,-53],[-13,-14],[-76,-56],[-13,-13],[-15,-37],[-16,-40],[-16,-40],[-18,-45],[-18,-46],[-13,-34],[-10,-27],[-15,-36],[-151,-385],[-3,-7],[-7,-24],[-38,-95],[-39,-98],[-19,-48],[-48,-126],[-23,-57],[-20,-47]],[[55448,26234],[-33,143],[-9,39],[-89,388],[-51,222],[-17,74],[-49,215],[-3,3],[-5,3],[-36,28],[-41,25],[-14,8],[-66,22],[-13,4],[-18,-4],[-12,-8],[-39,-29],[-8,-6],[-32,0],[-42,0],[-5,0],[-91,-5],[-2,1],[-54,29],[-31,61],[-4,12],[0,92],[9,87],[16,85],[15,68],[2,7],[5,19],[14,27],[30,46],[7,12],[13,12],[14,12],[24,16],[7,2],[7,1],[1,2],[46,67],[40,32],[19,221],[0,3],[-2,7],[-33,103],[-12,42],[-29,121],[-26,111],[-27,112],[-11,48],[-37,158],[-64,268],[-32,132],[-99,411],[-34,144],[-12,49],[-106,442],[-15,63],[-24,-7],[-27,-20],[-21,-13],[0,3],[-5,35],[-4,40],[-10,93],[-10,101],[-18,174],[-34,116],[-10,34],[-17,61],[-55,192],[-22,73],[-36,128],[-18,62],[-90,311],[-29,104],[-25,86],[-63,219],[-31,109],[-1,5],[-20,70],[-10,33],[-29,102],[-19,66],[12,33],[-39,82],[-102,189],[-21,40],[-49,92],[-16,30],[-11,21],[-35,67],[-12,24],[-43,77],[-39,72],[-53,97],[-69,128],[-69,125],[-20,38],[-53,96],[-10,19],[-195,357],[-35,64],[-19,36],[-73,133],[-204,373],[-76,141],[-31,55],[-41,74],[-21,39],[-23,42],[-22,39],[-23,60],[0,41],[3,46],[1,41],[-13,33],[-11,31],[3,41],[4,42],[-7,34],[-5,36],[4,50],[8,43],[11,28],[14,26],[10,26],[5,61],[4,38],[10,46],[2,40],[2,46],[-9,32],[-12,50],[-9,29],[-12,20],[-3,44],[5,49],[6,38],[3,50],[-7,40],[5,42],[-6,57],[2,40],[7,69],[2,51],[2,39]],[[55448,26234],[-47,-117],[-3,-9],[-29,-74],[-80,-203],[-130,-329],[-11,-28],[-10,-29],[-45,-121],[-83,-102],[-17,-26],[-44,-65],[-64,-73],[-37,-44],[0,-1],[-55,-66],[-103,-131],[-18,-23],[-65,-84],[-23,-29],[-38,-46],[-36,-46],[-13,-16],[-35,-42],[-80,-88],[-78,-85],[-78,-82],[-10,-10],[-26,-27],[-2,-3],[-40,-41],[-56,-60],[-12,-12],[-15,-16],[-51,-53],[-43,-43],[-20,-18],[-58,-56],[-111,-110],[-73,-82],[-16,-18],[-30,-34],[-147,-171],[-47,-55],[-53,-64],[-70,-83],[-42,-50],[-23,-27],[-23,-27],[-42,-51],[-32,-37],[-26,-24]],[[53158,23103],[-84,21],[-102,31],[-36,11],[-42,17],[-185,55],[-334,99],[-21,7],[-37,16],[-3,1],[-127,75],[-18,11],[-77,50],[-18,11],[-26,17],[-78,50],[-2,1],[-51,32],[-4,2],[-44,22],[-11,7],[-19,11],[-44,28],[-17,7],[-2,1],[-12,5],[-31,64],[-91,183],[-41,56],[-67,134],[-14,18],[-63,117],[-56,105],[-25,94],[-118,522],[-9,41],[-6,26],[-23,103],[-118,517],[-19,83],[-25,91]],[[51058,25845],[7,141],[3,72],[17,439],[7,222],[4,118],[2,52],[4,85],[9,235],[5,132],[6,126],[3,52],[0,1],[1,58],[6,137],[2,59],[2,50],[2,58],[3,62],[2,49],[2,50],[4,112],[1,127],[4,54],[7,72],[8,127],[-3,8],[-9,47],[-17,136],[3,39],[5,26],[5,14],[15,37],[17,31],[29,32],[45,96],[19,50],[6,26],[1,20],[0,11],[0,1],[0,1],[-1,6],[-5,11],[-48,30],[-30,15],[-48,-3],[-4,6],[-5,34],[1,41],[5,88],[5,79],[4,40],[2,11],[-3,1],[-2,0],[-10,14],[-4,10],[-17,113],[-3,26],[0,49],[4,38],[1,35],[-9,73],[-6,20],[-8,18],[-27,34],[-14,23],[-27,76],[-5,27],[-8,77],[-11,59],[-9,41],[-24,67],[-10,26],[-7,12],[-31,33],[-17,16],[14,201],[12,185],[31,498],[9,221],[4,55],[17,222],[31,516],[41,349],[159,521],[31,141],[13,8],[23,19],[17,29],[12,-23],[27,38],[9,28],[0,38],[28,46],[15,6],[9,54],[6,37],[5,54],[1,50],[14,-9],[24,17],[22,-49],[16,-21],[10,-37],[17,23],[-12,37],[-15,26],[-8,41],[-11,52],[26,38],[1,43],[2,39],[-3,40],[6,36],[-5,36],[-7,36],[-3,37],[2,39],[8,65],[-10,48],[-11,26],[-3,39],[0,40],[3,37],[8,34],[-14,27],[-10,37],[-23,0],[-3,39],[-9,29],[-7,40],[-5,42],[0,41],[3,38],[10,25],[14,27],[6,37],[-4,37],[5,59],[-9,32],[-11,23]],[[51058,25845],[-30,-19],[-56,-25],[-119,-84],[-13,-8],[-49,-31],[-18,-11],[-14,-8],[-69,-34],[-229,-147],[-1,-1],[-128,-78],[-29,-10]],[[50303,25389],[-22,-5],[-52,-16],[-17,-3],[-76,-16],[-28,-6],[-59,-14],[-19,-4],[-28,-6],[-103,-24],[-104,-49],[-123,-57],[-130,-60],[-33,-21],[-119,-74],[-13,-8],[-28,-18],[-58,-36],[-30,-19],[-32,-20],[-107,-66],[-180,-113],[-46,-28],[-55,-33],[-29,-18],[-20,-5],[-39,-9],[-41,-9],[-64,-14],[-35,-7],[-50,-11],[-18,-2],[-27,-4],[-16,-2],[-122,-15],[-17,-2],[-196,-22],[-120,31],[-77,21],[-53,13],[-66,17],[-44,12],[-10,3],[-14,4],[-61,19],[-22,10],[-8,3],[-21,9],[-46,21],[-177,79],[-42,22],[-64,24],[-19,5],[-53,6],[-48,5],[-103,11],[-85,12],[-99,64],[-101,57],[-63,26],[-351,143],[-226,95]],[[46194,25285],[12,213],[12,213],[18,330],[17,329],[11,204],[10,182],[18,347],[-6,19],[-4,13],[-23,72],[-176,552],[-54,169],[-53,169],[-88,283],[-10,28],[-96,304],[-23,70],[-22,71],[-40,126],[-40,125],[-19,61],[-20,61],[-10,33],[-15,42],[-34,109],[-10,32],[-9,29],[-11,35],[-33,102],[-32,102],[-17,62],[-2,4],[-39,127],[-24,74],[-24,75],[-10,31],[-54,170],[-27,86],[-9,28],[-29,96],[-21,71],[-20,57],[-9,34],[-17,51],[-10,31],[-1,3],[-21,70],[-66,217],[-12,34],[-37,106],[-8,43],[-22,70],[-9,31],[-11,34],[-30,96],[-1,6],[-18,56],[-3,10],[-16,52],[-12,40],[-20,64]],[[86386,26368],[-19,-29],[-5,-52],[-13,-33],[-30,-34],[-17,-20],[-17,-24],[-13,-20],[-7,-33],[-3,-47],[2,-46],[-5,-42],[-9,-35],[-13,-24],[-15,-9],[-9,-53],[-6,-43],[-9,-32],[-7,-57],[-12,-49],[-14,-20],[-18,1],[-21,18],[-14,9],[-10,-30],[-4,-43],[-3,-44],[-13,-31],[-16,-34],[-12,-19],[-10,-25],[-17,-48],[-8,-37],[-14,-19],[-16,3],[-16,-5],[-17,-7],[-20,-20],[-14,-24],[-10,-49],[-12,-52],[-17,3],[-10,43],[-8,60],[-12,24],[-19,22],[-8,39],[-14,9],[-16,-2],[-16,-24],[-17,-7],[-14,-5],[-5,-53],[18,-12],[16,-4],[13,-11],[13,-22],[13,-22],[11,-27],[11,-29],[10,-33],[10,-34],[16,-15],[12,-17],[12,-16],[11,-28],[3,-44],[6,-50],[0,-43],[-7,-47],[-8,-38],[-17,-69],[-15,-60],[-8,-31],[-36,-154],[-52,-226],[-18,-75],[-56,-243],[-6,-25],[-13,-54],[-9,-26],[-1,-3],[-14,-13],[-18,-50],[-6,-34],[-7,-37],[-11,-34],[-6,-45],[2,-39],[-1,-58],[-6,-34],[-5,-48],[-13,-26],[-8,-32],[-1,-46],[6,-39],[13,-34],[10,-55],[17,-40],[11,-26],[18,-42],[3,-41],[12,-23],[-4,-55],[4,-48],[-1,-53],[9,-36],[16,-16],[23,28],[20,10],[13,-35],[17,-9],[1,-41],[6,-47],[-7,-47],[-7,-33],[-31,-7],[-15,-35],[-9,-31],[9,-40],[1,-68],[-2,-54],[17,-8],[19,-16],[13,-19],[0,-55],[-5,-74],[5,-37],[11,-21],[14,-51],[11,-38],[16,-31],[11,-34],[12,-45],[11,-18],[4,-40],[-2,-43],[-15,-6],[-11,-38],[-10,-55],[-1,-43],[12,-34],[-9,-39],[-3,-47],[-16,-41],[-17,-4],[-12,-16],[-1,-46],[3,-38],[20,-34],[13,-60],[5,-38],[13,-38],[-4,-36],[-18,-42],[-17,-20],[-24,-29],[-12,-28],[-17,20],[-13,20],[-11,37],[-22,5],[-15,-9],[-15,26],[-12,27],[-17,-2],[1,-65],[2,-41],[4,-37],[0,-40],[-18,-47],[-15,-16],[-21,-23],[-12,-24],[5,-61],[-4,-41],[-19,-22],[-23,2],[-27,-2],[-24,-20],[-15,-50],[-11,-30],[-17,-19],[-10,-24],[4,-54],[6,-46],[5,-49],[5,-37],[21,20],[13,22],[18,-11],[14,12],[13,-80],[1,-58],[5,-36],[17,5],[18,-18],[20,17],[12,-48],[14,-43],[16,-39],[21,-13],[28,23],[17,-12],[13,-6],[-4,-42],[1,-51],[6,-40],[9,-28],[19,-28],[-13,-41],[-14,2],[-12,-29],[-13,-23],[-18,-35],[-22,-18],[-13,-29],[-5,-61],[5,-40],[10,-38],[14,-37],[10,-18],[2,-2],[12,-57],[-8,-36],[-14,-28],[-16,-32],[-11,-23],[-27,-5],[-18,25],[-29,-7],[-20,-31],[-14,-35],[-7,-67],[-15,-47],[-18,-20],[-15,28],[-23,10],[-18,8],[-13,-28],[-20,-29],[-20,-35],[-18,-23],[-15,-50],[-14,-40],[-11,-30],[-18,-48],[-9,-37],[-10,-40],[-13,-24],[-22,-8],[-17,21],[-15,-16],[-10,-29],[-5,-39],[-11,-34],[-15,-23],[-19,-4],[-14,19],[-15,23],[-15,8],[-14,-16],[-6,-41],[-12,-53],[-8,-30],[-13,-34],[-13,-38],[-11,-22],[-19,-4],[-15,7],[-13,-7],[-11,-42],[-31,-3],[-16,22],[-8,38],[-9,34],[-3,41],[-1,42],[-7,34],[-11,26],[-27,0],[-23,-4],[-16,-11],[-8,49],[-13,46],[-13,23]],[[84781,19015],[-6,35],[0,40],[-1,40],[-14,29],[-8,32],[-17,-44],[-13,-28],[-21,-36],[-6,51],[-15,61],[-16,-11],[-15,-31],[-16,8],[-17,-3],[-19,-22],[-16,-1],[-10,35],[-17,-3],[-21,19],[-17,26],[-2,40],[-9,32],[-7,37],[3,60],[-5,53],[-4,48],[-23,-10],[-20,-18],[-15,-2],[-16,11],[-20,13],[-5,60],[-25,19],[-23,0],[-15,-17],[-32,-45],[-14,-4],[-8,36],[-1,68],[-10,45],[-6,64],[5,37],[-13,23],[-19,-2],[-18,4],[-16,-12],[-16,-9],[-13,-38],[-9,-33],[-16,-31],[-18,-23],[-18,-9],[-35,31],[-6,48],[-13,36],[-17,4],[-15,11],[-2,1],[-26,19]],[[83994,19759],[-14,7],[-6,1],[-14,3],[-12,31],[1,51],[-7,55],[-2,59],[14,34],[9,39],[-3,38],[-5,13],[-5,13],[-14,65],[-1,46],[-6,54],[9,31],[18,5],[18,25],[21,25],[12,19],[13,16],[17,23],[6,46],[-1,64],[-5,77],[-2,38],[-31,52],[-8,38],[9,114],[8,37],[14,25],[20,8],[14,-6],[19,30],[1,42],[-13,42],[-22,20],[-14,9],[-15,38],[0,41],[3,55],[5,61],[8,51],[10,45],[33,25],[18,10],[15,-7],[14,-6],[21,26],[17,7],[18,14],[17,25],[9,58],[2,54],[-2,67],[-1,61],[12,47],[10,36],[-21,-2],[-21,-2],[-14,36],[-10,35],[-13,14],[-1,40],[2,53],[-8,42],[-13,10],[-23,-7],[-22,9],[-19,33],[5,39],[2,44],[8,62],[23,23],[25,27],[15,21],[19,36],[14,26],[-11,31],[-13,23],[-12,50],[5,38],[22,35],[9,34],[12,29],[-1,45],[-10,41],[0,39],[-10,35],[-4,48],[9,37],[13,28],[-12,28],[-15,4],[-14,29],[-11,33],[-18,11],[-17,-4],[-17,8],[-15,27],[-14,12],[-14,9],[-14,15],[-24,7],[-15,32],[-8,40],[1,59],[0,49],[-8,36],[-16,-10],[-17,-19],[-12,-22],[-15,8],[-13,-11],[-13,-24],[-20,13],[-12,-25],[-19,-29],[-15,20],[-9,31],[-3,45],[4,52],[-10,30],[6,32],[-1,43],[6,46],[-8,38],[-17,-11],[-13,-17],[-15,1],[-13,10],[-6,37],[-5,40],[1,41],[-4,39],[-5,39],[-13,2],[-14,5],[-16,29],[-8,43],[-4,64],[2,56],[11,32],[-19,13],[-14,0],[-18,0],[-13,20],[-5,36],[-23,28],[-14,-3],[-16,11],[3,40],[-9,48],[-11,26],[-21,18],[-14,-2],[-21,-18],[-18,0],[-13,35],[-14,-4],[-15,-1],[-14,35],[-12,13],[-6,58],[9,39],[18,31],[12,22],[15,36],[24,12],[22,43],[13,22],[10,76],[-9,122],[-16,3],[-18,-11],[-48,51],[-16,18],[-10,31],[0,60],[-1,58],[9,45],[15,9],[16,59],[10,41],[14,19],[30,33],[15,7],[17,-24],[5,-37],[8,-34],[28,2],[11,36],[13,36],[-1,47],[-7,39],[7,40],[3,41],[3,44],[20,20],[15,18],[15,32],[15,6],[68,-18],[6,46],[-6,35],[-11,29],[-13,30],[-4,40],[5,42],[13,29],[1,66],[-9,28],[-17,4],[-14,5],[-16,-33],[-13,-17],[-19,36],[-12,35],[-16,16],[-14,-5],[-14,-34],[-20,18],[-8,30],[-7,93],[-15,30],[-19,15],[-11,-19],[-20,-13],[-16,-7],[-18,9],[-13,31],[-3,46],[-19,37],[-11,36],[-9,28],[-14,0],[-13,5],[-18,-20],[-19,14],[-8,51],[-11,17],[-8,47],[3,38],[-1,39],[-4,53],[-17,20],[-10,36],[-15,0],[-14,35],[-5,46],[-9,31],[-26,-5],[-17,-13],[-15,-10],[-20,4],[-13,-9],[-18,4],[-9,48],[-6,40],[-20,37],[-7,46],[-3,63],[-1,74],[-11,25],[-14,9],[-18,7],[-23,-32],[-27,-37],[-16,-22],[-14,-26],[-19,-27],[-14,29],[-32,14],[-16,-17],[-27,15],[-16,12],[-19,1],[-17,13],[-15,24],[-15,24],[-16,3],[-13,31],[0,42],[-14,37],[-18,31],[-16,8],[-9,58],[-10,31],[-8,53],[-9,64],[0,43],[-1,13],[-9,30],[-18,21],[0,65],[-18,13],[-25,-5],[-16,-4],[-16,4],[-8,-37],[-3,-61],[-16,-24],[-17,-3],[-23,-1],[-22,22],[-11,25],[-5,62],[-20,16],[-14,10],[-10,52],[2,70],[-5,38],[-7,35],[-21,3],[-17,16],[-18,15],[-1,52],[7,49],[4,72],[-21,34],[-14,15],[-20,-31],[-19,-5],[-10,-26],[-2,-43],[-19,-26],[-15,0],[-9,37],[-13,19],[-29,-33],[-9,-34],[-11,-31],[-17,-1],[-10,28],[-3,57],[-5,63],[1,61],[-17,11],[-21,-8],[-13,-23],[-25,75],[-4,50],[-7,57],[-28,3],[-2,0],[-21,-8],[-24,74],[14,46],[19,46],[13,24],[21,35],[0,59],[-3,58],[-18,27],[-12,50],[15,21],[-2,42],[-16,22],[-23,7],[-12,48],[-14,13],[-3,47],[10,35],[19,23],[13,44],[-10,28],[-11,36],[-16,19],[-21,23],[-16,11],[-11,23],[-14,28],[-12,45],[7,49],[15,55],[7,38],[14,42],[21,4],[-6,55],[-14,44],[-7,43],[19,25],[18,24],[10,57],[16,35],[-10,34],[-6,34],[-15,27],[-16,14],[-7,40],[-6,46],[-22,15],[-15,33],[-14,30],[0,41],[6,41],[-5,39],[-14,21],[-15,20],[-20,-1],[-18,15],[-23,7],[-18,-5],[-10,37],[5,38],[6,46],[-12,28],[-3,41],[-7,36],[-9,36],[9,46],[15,19],[14,14],[5,41],[5,36],[-5,49],[-5,35],[-11,24],[-24,9],[-16,15],[-14,16],[-14,37],[-16,-12],[-16,-31],[-22,5],[-11,33],[-30,22],[-14,-14],[-11,-47],[-24,-26],[-13,-40],[-12,-24],[-10,-37],[-15,11],[-7,37],[-4,44],[5,39],[-1,43],[9,50],[1,49],[-10,36],[-4,40],[-8,35],[-13,15],[-13,-23],[-20,-27],[-15,0],[-13,-18],[-23,32],[-11,27],[-20,-7],[-18,-7],[-16,2],[-11,37],[-1,48],[8,36],[-14,38],[-15,12],[-15,-1],[-31,-14],[-17,-12],[-14,10],[-8,58],[-9,30],[8,82],[-18,36],[-4,55],[7,39],[7,52],[-12,42],[-30,-3],[-6,-36],[-8,-70],[-9,-99],[-13,-25],[-27,35],[-35,-22],[-26,1],[-10,-24],[-15,-26],[-29,-16],[-33,-23],[-25,-45],[-14,-19],[-12,-89],[-9,-55],[-17,-37],[-20,-22],[-2,-99],[-20,12],[-17,2],[-16,38],[-16,-8],[-14,-67],[-25,-49],[0,-67],[13,-43],[12,-37],[1,-69],[-15,-54],[0,-69],[-11,-44],[-21,8],[-19,21],[-15,50],[-22,37],[-13,-4],[-8,-41],[-9,-42],[-29,-132],[-20,14],[-13,-6],[-19,26],[-18,28],[-18,-6],[-25,23],[-16,4],[-11,-22],[-17,-30],[-21,58],[-11,37],[-14,22],[-11,25],[-20,44],[-5,11],[-8,18],[-22,-17],[-15,-29],[-23,-29],[-13,-3],[-20,-5],[-20,-18],[-17,5],[-15,-6],[-15,-27],[-13,-34],[-15,-17],[-18,-33],[2,-50],[-30,-33],[-6,-36],[-9,-56],[-11,-44],[-14,-83],[-27,-48],[-4,-40],[3,-60],[-12,-35],[-16,2],[-5,-54],[-3,-56],[4,-52],[7,-64],[18,-59],[23,-24],[17,19],[67,-67],[-13,-52],[-18,-17],[-14,-25],[-27,-9],[-14,-8],[7,-54],[11,-57],[-34,-61],[-4,-66],[20,-56],[-4,-56],[-2,-45],[-20,-34],[-16,20],[-24,-62],[-12,-32],[-13,11],[-24,8],[-13,-21],[-12,-42],[-3,-44],[-10,-28],[6,-52],[-17,-46],[-17,-5],[-12,15],[-14,18],[-17,14],[-17,-62],[-2,-38],[-1,-52],[7,-45],[-11,-27],[-7,-38],[-17,-41],[-21,-28],[-17,-31],[-22,18]],[[79704,27882],[-3,56],[-6,45],[-18,37],[-13,44],[-8,64],[6,37],[6,39],[5,50],[6,77],[-3,41],[-6,44],[-25,36],[-3,56],[5,45],[10,44],[-32,31],[-16,29],[-17,2],[-11,-24],[-17,-19],[-22,-6],[-16,1],[-5,54],[-16,24],[-17,-12],[-17,9],[-19,46]],[[18099,24520],[-41,-96],[-173,-485],[-35,-133],[-18,-123],[-8,-24],[-23,-214],[1,-20],[-17,-301],[20,-237],[-5,-151],[-10,-140],[-11,-49],[-20,-44],[-65,-56],[-15,-8],[-47,-52],[-32,-65],[-11,-59],[-4,-121],[9,-67],[9,-43],[1,-3],[64,-201],[45,-171],[21,-105],[3,-51],[19,-100],[-1,-10],[18,-164],[4,-38],[19,-104],[-2,-51],[-5,-19],[-35,-85],[-31,-65],[-23,-72],[-22,-117],[-18,-179],[-5,-131],[-1,-251],[-1,-119],[15,-185],[6,-38],[10,-54],[3,-11],[11,-84],[15,-115],[55,-27],[31,-117],[35,-132],[38,-163],[15,-105],[-14,-23],[-24,-45],[-4,-7],[-8,-14],[-12,-22],[-22,-38],[-36,-57],[-61,-100],[-1,-3],[-86,-139],[0,-1],[-87,-179],[-42,-87]],[[17490,18250],[-12,39],[-29,86],[-46,144],[-22,66],[-31,82],[-14,28],[-30,66],[-36,80],[-33,60],[-26,72],[-11,33],[-10,30],[-27,81],[-22,67],[-8,32],[-22,91],[-9,33],[-5,85],[-6,16],[-4,12],[-23,63],[-20,53],[-6,19],[-15,58],[-4,14],[-10,23],[-35,77],[-53,101],[-40,78],[0,2],[-54,115],[-45,119],[-72,242],[-47,186],[-41,119],[-44,94],[-25,45],[-32,41],[-61,52],[-9,12],[-45,43],[-22,15],[-99,119],[-16,22],[-12,17],[-17,25],[-39,53],[-17,13],[-45,8],[-23,-6],[-48,9],[-5,1],[-36,6],[-13,9],[-26,19],[-18,13],[-66,37],[-33,17],[-45,-2],[-39,-19],[-32,-29],[-6,-6],[-147,-166],[-14,-16],[-83,-66],[-20,-6],[-42,-12],[-49,-13],[-9,-13],[-7,-3],[-135,-63],[-179,-99],[-102,-83],[-44,-48],[-4,1],[-48,-88],[-30,-76],[-37,-118],[-6,-21],[-57,-155],[-8,-21],[-67,-124],[-161,-184],[-79,-72],[-103,-63],[-28,11]],[[14290,19832],[-38,-34],[-38,1],[-14,-7],[-101,13],[-77,29],[-55,35],[-87,86],[-64,111],[-56,108],[-39,101],[-12,33],[-25,67],[-5,14],[-48,142],[-28,97],[-80,227],[-113,298],[-62,137],[-17,39],[-23,37],[-8,13],[-17,29],[-30,42],[-24,39],[-10,12],[-18,23],[-5,9],[-6,11],[0,254],[0,40],[0,78],[11,67],[-9,20]],[[13192,22003],[21,-45],[7,-12],[11,-20],[15,-25],[18,-27],[2,-3],[7,-12],[14,-24],[12,-19],[13,-20],[4,-5],[36,-45],[22,-25],[4,-5],[10,-8],[34,-31],[30,-39],[13,-15],[31,-18],[17,-8],[17,-8],[29,-19],[54,-35],[11,-6],[22,-13],[29,-15],[45,-24],[20,-8],[39,-14],[39,-7],[54,-6],[24,1],[22,0],[37,2],[42,-2],[5,0],[1,0],[27,10],[30,19],[18,3],[53,37],[28,23],[1,1],[15,9],[14,-6],[1,0],[11,-1],[36,-7],[18,-11],[13,-7],[18,1],[15,10],[16,11],[22,13],[3,2],[22,4],[17,4],[12,10],[7,7],[11,12],[15,19],[71,67],[63,56],[7,7],[33,29],[12,62],[7,34],[24,119],[19,93],[2,15],[10,45],[9,46],[23,115],[82,406],[3,101],[35,255],[-1,0],[1,8],[-16,-3],[-8,12],[19,140],[32,183],[24,134],[3,13],[2,6],[3,11],[3,9],[8,43],[13,65],[2,10],[6,36],[8,41],[16,94],[12,100],[9,89],[5,40],[11,71],[7,36],[16,107],[1,5],[2,10],[4,29],[33,229],[3,20],[7,62],[2,43],[-1,7],[1,22],[-7,35],[-9,39],[-8,32],[-12,44],[-7,28],[-5,20],[-13,15],[-15,32],[-17,48],[-11,47],[-19,95],[3,60],[-1,28],[0,2],[-17,95],[1,17],[1,4],[-1,31],[-3,27],[-5,51],[0,2],[-4,41],[-6,53],[-10,102],[-9,71],[-4,24],[-16,45],[-19,131],[-11,89],[-6,55],[0,26],[-4,19],[-17,79],[-6,84],[0,1],[-24,175],[-25,175],[-38,133],[-43,98],[-11,29],[-21,53],[-30,65],[-16,23],[-32,46],[-26,28],[-34,35],[-62,118],[-14,43],[-24,72],[-50,176],[-15,66],[-12,73],[-15,92],[-15,107],[0,2],[-2,9],[-15,84],[-9,53],[-15,72],[-23,78],[-22,44],[-13,39],[-9,25],[-17,35],[-19,24],[-16,32],[-1,2],[-21,37],[-6,12],[-48,87],[-12,31],[-7,22],[-18,52],[-18,62],[-12,29],[-10,23],[-17,30],[-18,15],[-21,17],[-4,12],[-3,8],[-1,4],[-5,21],[-4,25],[0,22],[3,10],[1,1],[11,-14],[1,-1],[10,-24],[2,-5],[9,-20],[5,0],[21,11],[3,3],[4,4],[11,17],[1,1],[8,7],[8,10],[4,7],[7,26],[1,2],[0,9],[-16,12],[-4,-14],[0,-2],[-1,0],[-14,10],[-2,5],[-2,8],[0,34],[0,9],[-2,28],[-17,82],[-6,43],[-6,68],[-5,54],[-3,57],[-4,30],[-6,23],[-16,41],[-11,21],[-2,3],[-2,4],[-4,10],[-1,20],[-2,10],[-7,-2],[-1,1],[-1,1],[3,12],[0,9],[2,35],[-3,26],[-5,32],[-2,12],[-3,6],[-7,16],[-1,2],[-2,6],[-4,15],[0,21],[5,33],[4,30],[2,39],[0,13],[5,6],[5,10],[0,2],[-10,10],[3,61],[5,53],[6,39],[9,55],[4,34],[3,26],[5,41],[11,66],[20,95],[9,44],[16,69],[6,19],[14,53],[11,38],[13,56],[12,58],[10,60],[7,47],[4,45],[5,42],[11,65],[5,24],[7,36],[20,79],[4,19],[15,71],[11,46],[8,41],[16,59],[7,39],[14,62],[7,18],[8,37],[4,40],[7,67],[14,69],[19,73],[16,54],[8,42],[3,21],[3,35],[1,24],[3,24],[1,12],[9,52],[9,35],[-2,55],[3,37],[7,48],[5,50],[4,60],[0,1],[6,59],[0,5],[2,37],[0,6],[1,3],[1,85],[1,59],[-1,39],[0,49],[1,60],[3,53],[8,80],[7,48],[4,33],[3,43],[8,55],[5,49],[7,68],[7,39],[13,185],[6,141],[6,120],[7,38],[8,36],[16,66],[14,56],[16,67],[23,91],[57,161],[52,119],[16,38],[62,142],[51,81],[26,41],[142,177],[13,11],[73,58],[90,45],[23,20],[37,39],[37,37],[14,22],[29,42],[1,1],[28,30],[43,27],[3,2],[4,-3],[67,-38],[1,0],[43,-46],[46,-49],[6,-9],[107,-163],[15,-24],[36,-68],[32,-58],[24,-56],[22,-41],[20,-29],[17,-65],[15,-61],[0,-1],[2,-2],[8,-29],[7,-27],[8,-29],[8,-22],[18,-32],[22,-20],[14,-5],[6,-3],[30,-11],[24,10],[31,37],[1,2],[21,33],[19,38]],[[35111,26982],[-9,-28],[-6,-34],[-1,-7],[-16,-88],[-5,13],[-2,4],[-1,5],[-2,5],[-1,6],[-1,1],[-9,42],[-1,4],[-1,6],[0,4],[-5,27],[0,2],[-1,0],[-5,1],[-26,-105],[0,-10],[2,-13],[3,-13],[2,-9],[0,-2],[-1,-9],[3,-5],[3,-16],[4,-18],[4,-21],[3,-10],[-1,-7],[-2,-14],[-8,-40],[0,-37],[0,-3],[2,-13],[14,-131],[4,-20],[18,-36],[3,-11],[1,-16],[1,-16],[7,-117],[0,-8],[0,-2],[1,-18],[-5,-19],[-3,-2],[-3,-3],[-4,-1],[-13,-4],[-6,4],[-5,9],[-26,65],[-11,28],[-6,17],[-8,10],[-6,1],[-3,-5],[-3,-14],[0,-5],[0,-14],[4,-87],[6,-49],[7,-40],[68,-150],[17,-23],[10,-9],[8,0],[4,7],[19,42],[28,38],[26,23],[13,4],[9,3],[4,2],[1,-1],[7,-8],[8,-24],[3,-18],[0,-32],[0,-16],[-11,-70],[-4,-18],[-7,-12],[-6,-11],[-6,-13],[-13,-105],[-3,-21],[-2,-17],[-2,-4],[-3,-6],[-14,-15],[-22,-24],[-7,-7],[-17,-2],[-20,10],[-26,30],[-14,17],[-4,4],[-27,23],[-3,-14],[-3,-4],[-2,-2],[-8,-2],[-51,-15],[-17,-4],[-8,0],[-4,3],[-4,9],[0,6],[-3,34],[-1,7],[-5,13],[-6,7],[-4,5],[-1,1],[-45,15],[-16,5],[-13,4],[-6,-1],[-1,-7],[0,-7],[3,-22],[3,-1],[2,-7],[9,-28],[14,-77],[2,-70],[-1,-28],[-10,-147],[-4,-13],[-5,-16],[0,-1],[-22,-96],[-3,-15],[-12,-94],[-29,-227],[-4,-113],[-6,-62],[-3,-26],[1,-17],[1,-10],[3,-28],[18,-91],[17,-79],[1,-15],[-1,-33],[-5,-22],[-12,-27],[-40,-79],[-26,-38],[-5,-6],[-18,-7],[-5,-1],[-20,-2],[-21,-13],[-9,-11],[-22,-48],[-5,-19],[-2,-16],[-1,-35],[3,-15],[4,-9],[3,-2],[5,-4],[6,-1],[47,-3],[3,0],[6,9],[40,80],[9,21],[1,5],[0,3],[53,142],[8,7],[8,0],[5,-6],[94,-154],[16,-28],[9,-23],[3,-8],[10,-26],[6,-20],[15,-129],[1,-18],[-4,-7],[-18,1],[-5,-3],[-5,-8],[-20,-82],[0,-1],[-14,-86],[0,-28],[3,-8],[8,-4],[2,0],[10,0],[34,-1],[47,18],[0,1],[7,4],[8,6],[3,8],[15,136],[10,92],[-1,19],[4,19],[7,13],[3,1],[29,16],[15,8],[6,-10],[29,-88],[0,-3],[3,-68],[-1,-4],[-10,-87],[-12,-114],[-7,-2],[-3,-6],[-3,-18],[0,-15],[2,-95],[2,-7],[8,-11],[8,-1],[21,-2],[0,-39],[0,-88],[3,-7],[53,-51],[8,-7],[37,-26],[27,-18],[3,-2],[42,-24],[9,2],[30,-46],[3,-7],[0,-18],[-5,-19],[-29,-61],[-70,1],[-16,1],[-27,13],[-3,1],[-58,36],[-8,7],[-7,14],[-4,5],[-21,9],[-12,5],[-9,1],[-8,-4],[7,-16],[20,-45],[0,-33],[-4,-16],[-8,-21],[-31,-47],[-7,-4],[-9,0],[-11,0],[2,-26],[1,-8],[26,-93],[4,-9],[56,-134],[4,-5],[33,-32],[-27,-33],[-12,-34],[-14,-44],[-3,-13],[1,-16],[2,-11],[5,-8],[4,-1],[6,14],[1,3],[4,6],[7,2],[3,-2],[5,-14],[44,-222],[0,-6],[0,-16],[-2,-8],[-28,-50],[-11,-2],[0,5],[-11,33],[-7,1],[-43,-47],[-39,-44],[3,-27],[0,-7],[-4,-26],[-5,-13],[-6,-3],[-47,-2],[-17,-4],[-19,-6],[-8,-4],[-29,-38],[-16,-30],[-1,-5],[-8,-17],[-46,-69],[-162,-25],[-22,0],[-11,8],[-10,19],[-7,10],[-6,1],[-6,-8],[-70,-98],[-3,-8],[-8,-73],[-3,-15],[-11,-24],[-5,-11],[4,-4],[31,-33],[4,-5],[3,-6],[28,-60],[-20,-50]],[[34561,21579],[-179,65],[-22,9],[-182,70],[-80,31],[-53,-27],[-18,-9],[-14,-7],[-61,-32],[-21,-11],[-42,-20],[-14,-3],[-15,-11],[-22,-11],[-50,-26],[-14,-7],[-59,-27],[-183,-85],[-36,-16],[-54,-24],[-14,-5],[-15,-8],[-18,-7],[-35,-15],[-45,-25],[-9,-4],[-17,-7],[-2,-1],[-12,-4],[-1,-1],[-14,-5],[-58,-31],[-27,-13],[-87,-40]],[[33088,21272],[-37,-27],[-48,-37],[-42,-32],[-31,-18],[-67,-48],[-167,-120],[-44,-32],[-152,-109],[-12,-9],[-16,-12],[-20,-13],[-14,-11],[-18,-12],[-17,-12],[-35,-25],[-30,-21],[-99,-73],[-14,-2],[-63,-10],[-5,-1],[-13,-2],[-108,-11],[-27,-4],[-21,0],[-22,-4],[-32,-4],[-20,-2],[-49,-3],[-9,0],[-99,2],[-24,-1],[-42,-1],[-50,-10],[-53,-10],[-21,-2],[-93,-7],[-114,-8],[-63,-5],[-10,0],[-788,-56],[0,53],[0,96],[-3,46],[-5,37],[-5,35],[-1,48],[-5,10],[-19,29],[-7,5],[-29,-10],[-40,-17],[-8,1],[-2,0],[-7,6],[-5,3],[-6,11],[-10,38],[-4,38],[-1,37],[3,6],[11,5],[3,0],[87,-1],[4,-10],[6,-4],[17,10],[31,17],[32,11],[7,3],[25,66],[4,9],[0,1],[3,18],[2,10],[0,23],[-2,3],[-33,102],[-1,0],[1,1],[25,124],[0,11],[-7,23],[-1,4],[-1,2],[-12,21],[-21,-6],[-7,3],[-4,4],[-3,11],[1,43],[0,27],[-10,76],[-2,5],[-8,13],[-10,-4],[-11,-13],[-5,-6],[-10,-6],[-14,0],[-3,6],[0,26],[2,32],[26,114],[0,2],[-5,43],[-2,15],[-6,-9],[-5,-6],[-16,-25],[-54,-92],[-5,-16],[-8,-9]],[[30366,21669],[-5,-2],[-3,3],[-5,4],[-9,29],[-2,14],[-2,26],[3,20],[5,16],[1,3],[23,59],[3,13],[0,23],[-4,13],[-5,5],[-17,-6],[-11,-71],[-16,-108],[-9,-46],[-3,-8],[-4,-14],[-5,-11],[-11,-16],[-12,-5],[-11,1],[-1,0],[-11,10],[-9,18],[-3,14],[0,9],[-43,29],[-61,39],[-12,9],[-7,19],[-2,14],[1,4],[2,12],[5,12],[14,12],[8,-2],[7,-7],[9,-22],[5,0],[2,4],[-1,18],[-11,42],[-7,13],[-6,11],[-13,13],[-39,18],[-3,1],[2,4],[13,26],[5,14],[0,12],[-26,69],[-46,129],[-5,17],[-5,57],[0,21],[10,77],[6,0],[5,-3],[14,-37],[3,-7],[5,-3],[35,46],[6,16],[1,58],[0,2],[0,2],[0,13],[-4,9],[-8,10],[-4,-1],[-1,0],[-2,4],[-6,18],[-18,51],[-22,79],[7,49],[6,46],[-1,32],[-6,171],[-7,167],[-6,18],[-3,6],[-111,140],[-5,5],[-13,0],[-32,-14],[-1,-2],[-5,-10],[0,-13],[13,-40],[-1,-9],[-52,-89],[-9,-16],[-23,-40],[-4,-3],[-15,-1],[-9,9],[-2,6],[-3,25],[2,43],[2,41],[-5,14],[-9,18],[-10,18],[-33,52],[-3,5],[-64,10],[-9,-3],[-12,-16],[-6,-7],[-5,38],[0,2],[-1,11],[4,4],[26,23],[27,23],[-6,6],[-9,22],[-23,98],[-5,37],[-3,20],[-10,30],[-7,20],[-19,56],[-12,35],[-22,28],[-16,-13],[-4,-4],[-11,45],[0,14],[0,7],[6,13],[14,34],[3,17],[1,13],[-7,22],[-24,36],[-21,34],[-5,14],[-2,19],[3,21],[5,11],[20,25],[2,6],[6,13],[0,15],[-4,11],[-6,2],[-8,-5],[-8,-9],[-9,-10],[-40,-52],[-2,0],[-7,-2],[-39,9],[-7,3],[-4,12],[0,21],[5,31],[1,1],[11,27],[14,23],[14,13],[8,24],[3,8],[12,37],[23,115],[1,24],[-5,19],[-2,4],[-3,9],[-39,115],[-3,21],[-3,17],[-14,104],[8,2],[5,11],[2,9],[4,76],[1,95],[-3,91],[-32,51]],[[41689,25385],[-15,-12],[-74,-44],[-42,-37],[-18,-31],[-8,-29],[-10,-115],[4,-17],[63,-254],[1,-3],[1,-5],[1,-6],[1,-6],[-25,-47],[-5,-10],[-1,-1],[-29,-57],[-1,-1],[-1,0],[-33,7],[-11,3],[-12,20],[-5,7],[-19,32],[-60,133],[-1,2],[-7,9],[-11,14],[-1,2],[-42,36],[-54,47],[-9,14],[-14,21],[-4,7],[-23,68],[-28,82],[-1,3],[-1,2],[-26,40],[-20,1],[-5,0],[-17,-17],[-15,-27],[-15,-93],[-5,-105],[19,-117],[1,-5],[0,-3],[-3,-62],[-6,-29],[-10,-23],[-42,-77],[-17,-21],[-25,-20],[-5,-4],[-37,-12],[-9,2],[-25,6],[-35,8],[-76,48],[-8,12],[-3,5],[-18,55],[-3,53],[-2,34],[1,71],[-18,152],[-17,74],[-42,122],[-11,31],[-67,189],[-44,123],[-10,27],[-6,16],[-5,37],[-2,102],[2,7],[0,3],[-1,6],[-2,15],[-2,10],[-2,4],[-7,16],[-1,3],[-24,20],[-19,5],[-1,0],[-33,37],[-5,6],[-1,1],[-6,18],[-5,12],[-9,26],[-14,117],[-2,18],[-2,4],[-7,17],[-4,7],[-15,4],[-5,-10],[-7,-15],[-23,-53],[-73,-84],[-7,-8],[-22,-11],[-26,-13],[-4,-2],[-2,0],[-47,11],[-6,3],[-35,18],[-12,6],[-28,-24],[-39,-67],[-20,-51],[-17,-63],[-10,-124],[-17,-42],[-18,-1],[-3,0],[-15,19],[-17,60],[-12,89],[-10,24],[-4,9],[-18,9],[-11,-7],[-40,-72],[-13,-48],[0,-1],[-8,-69],[-2,-6],[-10,-26],[-65,9],[-6,-4],[-4,-4],[-34,-2],[-11,2],[-28,7],[-12,2],[-56,49],[-18,16],[-13,11],[-9,11],[-15,18],[-12,14],[-21,51],[-7,42],[3,70],[26,65],[1,25],[1,16],[-3,7],[-3,8],[0,1],[-18,4],[-84,-52],[-45,-67],[-3,-4],[-12,0],[-7,0],[-1,0],[-15,14],[-3,7],[-12,28],[-9,8],[-8,8],[-2,2],[-4,1],[-5,1],[-4,1],[-10,-18],[-6,-19],[-1,-132],[-2,-11],[-1,-4],[-21,-30],[-18,-15],[-33,-27],[-4,0],[-26,4],[-4,1],[-11,27],[-18,128],[-1,4],[-1,2],[-15,37],[-15,18],[-13,3],[-11,3],[-122,12],[-16,-7],[-12,-18],[-8,-13],[-6,-9],[-13,-40],[-5,-16],[-12,-54],[-17,-31],[-18,4],[-6,11],[-34,108],[-4,12],[-13,3],[-9,-8],[-8,-15],[-12,-24],[-17,-34],[-27,-35],[4,-13],[1,0],[4,-55],[-1,-14],[-5,-63],[-4,-47],[-2,-25],[7,-53],[54,-164],[9,-14],[3,-4],[11,-17],[21,-22],[9,-10],[2,-6],[16,-43],[2,-7],[0,-5],[-2,-96],[-6,-39],[-5,-106],[13,-107],[4,-33],[-1,-3],[-2,-108],[-3,-25],[-16,-51],[0,-1],[-1,-1],[-50,-89],[-2,-40],[3,-10],[1,-2],[4,-11],[16,-6],[-2,-15],[-18,-124],[-42,-323],[-21,-161],[-8,-63],[-11,-89],[-8,-45],[-29,-211],[-20,-150],[-11,-79],[-17,-123],[-7,-51],[-24,-179],[-23,-167],[-5,-40],[-1,-4],[-20,-148],[-3,-22],[-85,-618],[-17,-121],[-24,-179],[-15,-113],[-22,-159],[-8,-54],[-7,-55],[-8,-61],[-37,-268],[-24,-181],[-23,-166],[-7,-49],[-14,-101],[-27,-203],[-72,-530],[-22,-164],[-68,-505],[-4,-30]],[[38068,18960],[-3,4],[-9,11],[-21,19],[-181,174],[-35,33],[-96,91],[-46,44],[-30,28],[-283,270],[-37,37],[-55,51],[-160,150],[-22,20],[-1,2],[-14,15],[-15,16],[-150,143],[-37,35],[-165,157],[-10,10],[-5,4],[-15,15],[-46,44],[-1,1],[-73,70],[-1,0],[-87,82],[-16,17],[-110,104],[-179,171],[-103,98],[-189,180],[-38,37],[-10,10],[-334,129],[-59,26],[-16,5],[-107,33],[-78,29],[-77,29],[-35,13],[-64,37],[-240,84],[-70,23],[-17,4],[-20,9],[-39,14],[-108,41]],[[40769,31084],[65,-431],[8,-55],[17,-109],[16,-110],[15,-99],[11,-73],[14,-91],[39,-251],[42,-267],[14,-93],[8,-47],[30,-188],[35,-227],[14,-89],[7,-44],[32,-216],[8,-44],[0,-3],[46,-230],[0,-39],[0,-18],[24,-150],[50,-288],[2,-15],[5,-28],[8,-45],[14,-84],[64,-384],[19,-110],[21,-125],[38,-233],[14,-79],[27,-163],[12,-68],[1,-7],[31,-186],[20,-115],[1,-9],[43,-255],[12,-68],[46,-276],[37,-233],[10,-54]],[[24837,24607],[-6,-77],[-3,-31],[-1,-15],[-6,-74],[0,-4],[-3,-35],[-4,-45],[-2,-25],[-1,-15],[-5,-56],[-4,-57],[-7,-82],[-1,-11],[-18,-218],[-8,-93],[-6,-78],[-12,-129],[-14,-160],[-7,-84],[-27,-323],[-19,-249],[-12,-140],[-34,-416],[-8,-33],[-15,-235],[-23,-283],[-21,-261],[-4,-49],[-1,-14],[-37,-447],[-10,-123],[-10,-126],[-68,-832],[-1,-5],[-15,-37],[-11,-27],[-166,-410],[-34,-85],[-18,-44],[-53,-129]],[[24142,19050],[-31,-75],[-94,-238],[-92,-231],[-23,-59],[-39,-97],[-37,-92],[-34,-85],[-11,-26],[-1,-2],[-26,-67],[-25,-61],[-14,-10],[-24,-18],[-2,-2],[-154,-114],[-8,-5],[-20,-15],[-31,-23],[-22,-16],[-16,-12],[-185,-136],[-95,-70],[-25,-18],[-21,-10],[-136,-104],[-27,-21],[-107,-80],[-32,-24],[-34,-26],[-33,-24],[-81,-61],[-1,-1],[-22,-16],[-135,-100],[-23,35],[-12,26],[-13,25],[-13,24],[-18,11],[-15,-7],[-15,27],[-15,29],[-6,35],[-14,49],[-13,13],[-17,34],[-22,20],[-18,14],[-14,10],[-18,26],[-1,2]],[[22257,17484],[-45,129],[-57,177],[-34,102],[-6,17],[-8,24],[-41,126],[-28,83],[-15,45],[-93,281],[-20,60],[-10,31],[0,1],[-217,667],[-9,30],[-11,35],[-32,102],[-48,153],[-19,60],[-13,43],[-23,74],[-23,73],[-50,158],[-52,166],[-16,50],[-19,62],[-22,70],[-59,187],[-50,162],[-122,393],[-15,48],[-9,29],[-77,251],[-44,143],[-3,8],[-8,33],[-93,434],[-81,373],[-36,167],[-11,50],[-23,106],[-35,160],[-12,60],[-1,1],[-28,127],[-8,33],[0,1],[-10,48],[-14,68],[-19,87],[-12,57],[-7,37],[-10,41],[-8,36],[-11,51],[-7,35],[-8,36],[-11,54],[-18,75],[-10,49],[-70,320],[-69,313],[-28,124],[-24,113],[-8,32],[-26,121],[-136,617],[-39,166],[-4,18],[-270,90],[-47,16],[-73,-17],[-64,-15],[-83,35],[-37,16],[-63,27],[-71,31]],[[79704,27882],[-265,-178],[-7,-14],[-5,-10],[236,-748],[26,-83],[52,-167],[-108,-260],[-69,-157],[-105,-237],[-79,-180],[-111,-252],[-122,-278],[-11,-25],[0,-69],[0,-16],[1,-61],[0,-39],[0,-5],[0,-882],[0,-380],[0,-158],[-1,-243],[119,-291],[88,-286],[-133,-525],[-11,-47],[-9,-33],[-60,-277],[5,2],[18,5],[59,17],[8,3],[2,0],[2,1],[2,-1],[2,0],[3,-1],[2,-2],[2,-2],[2,-2],[3,-3],[2,-3],[2,-4],[1,-3],[2,-5],[2,-4],[2,-5],[1,-5],[1,-6],[2,-5],[1,-6],[1,-6],[0,-1],[14,-98],[41,-151],[1,-1],[1,-6],[1,-5],[1,-6],[1,-6],[1,-7],[1,-6],[0,-3],[10,-125],[1,-3],[0,-7],[0,-6],[0,-7],[0,-7],[0,-6],[0,-7],[-1,-6],[-1,-7],[0,-4],[-13,-96],[0,-1],[-1,-7],[-2,-5],[-1,-6],[-1,-6],[-2,-5],[-1,-5],[-2,-4],[-2,-4],[-2,-4],[0,-2],[-16,-28],[0,-1],[22,-67],[1,-4],[2,-5],[1,-5],[1,-6],[2,-6],[1,-6],[0,-6],[1,-7],[1,-6],[0,-7],[0,-6],[0,-7],[0,-7],[0,-6],[0,-7],[-1,-6],[-1,-7],[0,-6],[-1,-6],[-2,-6],[-1,-5],[-1,-6],[0,-1],[-21,-75],[-1,-21],[17,-55],[1,-1],[1,-5],[1,-6],[2,-6],[1,-5],[1,-6],[0,-7],[1,-6],[1,-7],[0,-6],[0,-7],[0,-6],[0,-7],[0,-7],[0,-6],[-1,-7],[-1,-6],[0,-6],[-1,-6],[-1,-6],[-2,-6],[-1,-5],[-1,-6],[-2,-4],[-2,-5],[-2,-4],[-1,-4],[-2,-3],[-29,-14],[-10,-5],[-5,-3],[-21,14],[-8,3],[-17,8],[-27,12],[-1,-3],[-1,-5],[-2,-6],[-1,-6],[-1,-6],[0,-6],[-1,-6],[0,-5],[-3,-40],[-1,-2],[0,-6],[0,-7],[0,-6],[0,-7],[1,-50],[0,-7],[1,-6],[0,-4],[4,-45],[0,-3],[0,-6],[1,-6],[1,-6],[1,-6],[2,-6],[1,-5],[1,-5],[2,-5],[2,-5],[1,-4],[2,-4],[72,-123],[0,-6],[0,-7],[0,-7],[0,-6],[1,-7],[1,-6],[0,-6],[1,-6],[1,-6],[2,-6],[8,-37],[2,-6],[1,-5],[2,-5],[2,-4],[1,-5],[3,32],[6,1],[13,4],[22,23],[27,19],[18,0],[9,-43],[3,-57],[11,-70],[9,-57],[1,-44],[6,-35],[10,-38],[17,-45],[13,-29],[0,-3],[1,-37],[2,-64],[3,-50],[14,-12],[18,-15],[20,14],[15,7],[15,-32],[11,-34],[3,-48],[12,-29],[25,-43],[-1,-60],[-9,-65],[10,-43],[10,-57],[24,-36],[22,-18],[8,-34],[-11,-44],[-6,-40],[3,-39],[16,-30],[0,-38],[-13,-15],[-16,-12],[-15,-23],[-14,-20],[-16,-26],[-16,21],[-16,0],[-15,-35],[-14,-32],[-12,-29],[9,-107],[4,-59],[2,-38],[4,-56],[6,-49],[3,-37],[6,-61],[4,-49],[2,-54],[4,-38],[3,-37],[5,-75],[5,-64],[4,-48],[29,-339],[54,-680],[41,-468]],[[79694,16653],[-21,-24],[-13,-11],[-13,-5],[-24,-1],[-16,9],[-25,8],[-17,-7],[-27,-4],[-27,24],[-12,40],[-21,32],[-18,19],[-16,21],[-19,11],[-22,59],[-3,2],[-10,6],[-26,16],[-433,270],[-18,11],[-13,8],[-162,101],[-65,40],[-39,24]],[[78634,17302],[-8,38],[-9,30],[-20,-11],[-13,-15],[-20,-30],[-14,-19],[-15,-15],[-17,-4],[-21,-14],[-20,-24],[-14,11],[-14,8],[-17,-8],[-14,-34],[-18,-26],[-17,15],[-13,45],[-16,26],[-12,30],[-1,38],[-4,37],[2,46],[-11,30],[-23,19],[-13,37],[-9,38],[-17,-8],[-21,-34],[-13,23],[-15,-15],[-4,-42],[-14,-26],[-12,-19],[-20,-15],[-16,4],[-13,33],[-13,16],[-14,-1],[-15,4],[-13,19],[-17,34],[-12,23],[-13,-8],[-10,-26],[-15,-31],[-17,-22],[-18,-8],[-17,-11],[-13,11],[-11,38],[-10,30],[-9,34],[-11,26],[-15,12],[-14,4],[-18,8],[-5,37],[-7,45],[-14,30],[-9,30],[-17,15],[-15,0],[-14,8],[3,41],[5,38],[-7,34],[-7,45],[-15,16],[-14,11],[-12,26],[-15,27],[-13,22],[-6,61],[-15,3],[-14,8],[-16,0],[-17,0],[-13,-8],[-13,-30],[-12,-23],[-17,-7],[-16,7],[-18,19],[-15,23],[8,41],[-4,38],[-11,34],[4,45],[-13,27],[-12,19],[-18,-16],[-14,-34],[-14,-26],[-15,11],[-7,41],[-6,49],[-9,30],[-15,11],[-12,-22],[-11,-30],[-21,-16],[-10,30],[-14,19],[-19,0],[-13,-11],[-13,-4],[-16,15],[-10,30],[-8,34],[-7,34],[-5,41],[-12,23],[-16,7],[-14,-4],[-17,-19],[-15,4],[-5,42],[-12,33],[-16,23],[-6,34],[-3,43],[-14,19],[-20,10],[-17,7],[-21,-21],[-12,63],[-2,45],[1,48],[-14,-2],[-17,-4],[-41,-1],[-13,0],[-12,-31],[-17,8],[-16,6],[-5,39],[-10,28],[-3,41],[-1,46],[-5,39],[7,40],[-1,39],[-11,31],[-56,-17],[-20,-32],[-18,21],[-16,45],[-16,5],[-17,-21],[-22,40],[-9,39],[-12,52],[11,39],[9,31],[-4,47],[11,39],[7,49],[9,34],[-1,58],[7,60],[-38,85],[-24,-36],[-16,-33],[-16,8],[-2,40],[3,62],[4,40],[-31,28],[-7,48],[4,41],[-17,54],[-13,45],[-9,-34],[-17,-3],[-17,9],[-15,27],[-20,5],[-14,-26],[-7,-47],[-20,-14],[-19,-2],[-12,-28],[-15,-57],[-14,-18],[-9,-32],[-17,-12],[-16,3],[-16,8],[-14,37],[-14,-4],[-14,-17],[-11,-69],[2,-38],[-14,-15],[-17,-9],[-24,-30],[-15,-18],[-19,-31],[-17,-15],[-19,2],[-16,79],[-4,55],[3,55],[-12,36],[-17,39],[-16,18],[3,60],[2,46],[5,49],[1,72],[5,37],[20,26],[14,2],[16,30],[2,38],[4,41],[-6,49],[9,51],[0,42],[-27,-10],[-31,19],[-17,-18],[-3,-47],[-13,-24],[-26,-19],[-17,-16],[-14,9],[-24,83],[-15,-4],[-21,-31],[-7,-31],[-15,-17],[-17,32],[-17,11],[-11,44],[-24,5],[9,-98],[-12,-25],[-18,-26],[-19,-11],[-11,26],[-16,16],[-13,-14],[-16,-15],[-13,-47],[-22,-41],[-13,-10],[-13,-11],[-13,-21],[-19,-14],[-23,-43],[-14,-24],[-3,-5],[-14,-11],[-18,1],[-4,0],[-15,0],[-17,-10],[-15,10],[-12,-16],[-18,-16],[-13,28],[-14,27],[-15,21],[-14,40],[-24,19],[-8,30],[-20,18],[-3,40],[11,60],[17,57],[8,34],[15,6],[12,51],[10,33],[11,45],[-13,25],[-25,-8],[-15,-12],[-16,58],[-5,43],[-12,17],[-22,17],[-13,-21],[-21,-56],[-9,-42],[-14,-6],[-27,30],[-13,-6],[-18,48],[-7,49],[-14,2],[-41,-42],[-20,18],[-17,-6],[-13,3],[-20,-10],[-13,17],[-25,2],[-18,-3],[-11,21],[-7,48],[9,42],[19,31],[-1,41],[-21,81],[4,49],[-5,96],[-12,42],[-15,-21],[-23,-8],[-3,-47],[-14,-40],[-13,36],[-26,21],[-14,72],[-15,-7],[-20,14],[-19,-10]],[[74934,21043],[-12,28],[5,55],[-1,46],[-24,48],[-5,35],[-23,24],[-4,45],[-12,13],[-18,7],[-17,-15],[-12,-29],[-17,5],[-14,7],[-14,-13],[-14,24],[4,47],[-5,41],[8,34],[2,59],[-11,39],[-4,39],[-10,46],[-6,47],[-5,46],[-8,42],[-1,43],[13,18],[5,43],[11,25],[17,12],[15,-15],[19,-11],[15,20],[10,26],[10,26],[13,46],[12,30],[12,26],[16,31],[10,-35],[12,-36],[20,10],[14,24],[11,53],[22,-4],[9,32],[-11,44],[10,43],[14,15],[11,25],[6,42],[15,50],[8,33],[10,26],[-6,69],[-2,2],[-20,9],[-13,17],[-7,43],[-16,51],[1,43],[16,94],[-13,64],[15,46],[8,54],[-19,2],[-17,32],[-22,36],[-7,44],[-18,17],[-18,17],[-36,-28],[-16,17],[-16,21],[-13,2],[-18,7],[-22,16],[-16,20],[-8,56],[5,37],[16,12],[12,33],[6,41],[-12,29],[-11,46],[-12,22],[-10,33],[-12,38],[-13,11],[-27,-45],[-19,-31],[-16,4],[-16,-10],[-13,-28],[-20,-7],[-12,-19],[-9,-32],[-16,-13],[-9,-40],[-2,-43],[-18,-21],[-14,-11],[-17,6],[-13,-12],[-16,-13],[-12,24],[-17,0],[-12,28],[-12,27],[-18,9],[-12,-12],[-17,-9],[-17,4],[-14,29],[-14,-24],[-12,-52],[-15,5],[-18,-23],[-10,-27],[-23,16],[-21,14],[-6,6],[-9,9],[-14,11],[-11,33],[-11,23],[-1,9],[-4,30],[-7,34],[-12,40],[-22,38],[-26,25],[-6,58],[-13,32],[-11,27],[-6,53],[-4,47],[7,40],[5,45],[11,33],[6,42],[3,48],[-10,30],[-17,49],[-9,50],[4,56],[-10,38],[-13,27],[-11,72],[-5,43],[-14,38],[-10,62],[-17,20],[-5,41],[-7,36],[-4,42],[-11,24],[-8,30],[-7,35],[-8,31],[-11,33],[-17,69],[-9,31],[-12,30],[-14,33],[-13,30],[-18,41],[-11,32],[-23,57],[-15,41],[-14,55],[-12,21],[-13,24],[-12,30],[-7,36],[-13,12],[-12,20],[-11,33],[-12,24],[-11,30],[-16,16],[-15,5],[-11,23],[-12,20],[-6,52],[5,50],[9,43],[5,37],[-8,45],[-3,38],[10,23],[14,5],[10,30],[11,30],[16,6],[28,4],[10,30],[15,67],[12,21],[14,5],[15,10],[13,28],[3,52],[10,26],[15,14],[-3,44],[-8,49],[5,41],[16,24],[12,12],[14,7],[16,5],[13,29],[12,13],[7,39],[-13,19],[-19,21],[-5,37],[-1,54],[9,56],[10,29],[13,61],[6,45],[7,37],[21,10],[13,-28],[15,-6],[13,23],[13,50],[7,34],[4,38],[1,39],[0,9],[-3,59],[-3,92],[-1,43],[-4,93],[-2,116],[-6,331],[-1,50],[-6,120],[-4,177],[-2,91],[-4,205],[-1,51],[-4,190],[0,43],[0,57]],[[68525,17467],[-49,85],[-11,8],[-66,23],[-13,-22],[-23,-54],[-97,-192],[-14,-27],[-64,-109],[-43,-39],[-36,-22],[-55,-34],[-15,-5],[-134,-41],[-22,6],[-10,-17],[-47,-33],[-50,-22],[-20,-8],[-9,-13],[-73,-103],[-198,-281],[-80,-113],[-49,-69],[-38,-52],[-14,-22],[-81,-116],[-51,-73],[-83,-117],[-62,-88],[-13,-19],[-39,-55],[-17,-23],[-32,-45],[-164,-234],[-86,-122],[-43,-60],[-2,-3],[-11,-15],[-31,-45],[-48,-68],[-27,-39],[-46,-66],[-91,-128],[-70,-100],[-30,-42],[-19,-28],[-57,-80],[-1,-2],[-98,-138],[-53,-73],[-109,-154],[-75,-105],[-12,-17],[-65,-92],[-101,-144],[-12,-18],[-15,-21],[-17,-23]],[[65634,13958],[-38,184],[-4,22],[-18,49],[-10,29],[-41,120],[-13,37],[-7,20],[-1,3],[-9,38],[-6,45],[-4,29],[4,65],[12,58],[11,33],[5,14],[60,106],[4,8],[2,33],[0,7],[3,45],[-5,37],[-14,40],[-19,15],[-14,4],[-10,3],[-3,0],[-4,-2],[-7,-5],[-20,-30],[-13,-37],[-15,-113],[-27,-120],[-15,-40],[-77,-209],[-22,-30],[-15,4],[-15,24],[-29,85],[-10,63],[-93,280],[-20,41],[-10,14],[-18,24],[-1,4],[-21,55],[-1,4],[-2,13],[-3,17],[-6,38],[-8,38],[-9,41],[-10,42],[-11,37],[-8,31],[-10,51],[-18,74],[-50,204],[-71,289],[-79,325],[-2,7],[-23,95],[-63,260],[-24,98],[-14,54],[-117,482],[-65,265],[-10,42],[-71,289],[-48,198],[-2,6],[-9,37],[-17,69],[-8,34],[-10,40],[-2,10],[-8,33],[-12,15],[-18,0],[-17,7],[-17,4],[-18,7],[-21,12],[-28,11],[-26,8],[-24,3],[-21,4],[-21,4],[-21,0],[-22,4],[-17,0],[-24,-2],[-14,-6],[-24,-11],[-17,-30],[-11,-27],[-16,-53],[-6,-34],[-11,-37],[-10,-42],[-9,-35],[-11,-29],[-12,-30],[-22,-34],[-13,-15],[-15,-15],[-22,-23],[-20,-23],[-21,-26],[-22,-26],[-17,-23],[-15,-19],[-13,-15],[-16,-11],[-17,-15],[-19,-19],[-24,-15],[-25,-19],[-25,-23],[-22,-15],[-19,-15],[-18,-11],[-24,-15],[-26,-19],[-23,-15],[-26,-15],[-21,-16],[-120,-52],[-54,-27],[-18,-12],[-18,-13],[-13,-9],[-20,-9],[-28,-14],[-10,43],[-9,43],[-2,8],[-49,214],[-24,105],[-25,108],[-8,35],[-4,17],[-4,18],[-40,171],[-31,34],[-91,96],[-20,22],[-122,130],[-65,68],[-12,13],[-54,58],[-13,13],[-34,36],[-13,13],[-13,15],[-33,35],[-13,14],[-14,14],[-18,19],[-17,19],[-70,74],[-21,22],[-22,25]],[[62253,18880],[-40,38],[-12,15],[-13,12],[-22,26],[-173,183],[-34,36],[-13,14],[-31,28],[-33,36],[-54,141],[-58,176],[-38,114],[-84,203],[-10,25],[-5,10],[-15,36],[-49,132],[-51,134],[-11,29],[-181,485],[-2,113],[-1,112],[-1,77],[-1,77],[-2,124],[0,57],[-1,57],[-2,148],[-2,211],[-5,513],[2,36],[0,2],[6,63],[4,45],[4,45],[6,54],[5,54],[11,111],[6,65],[10,102],[9,189],[5,110],[6,117],[6,115]],[[69439,24707],[-3,-10],[-7,-17],[-15,-33],[-3,-7],[-2,-5],[-17,-57],[-1,-4],[-14,-49],[-5,-53],[-1,-11],[0,-33],[4,-22],[12,-36],[12,-50],[3,-33],[0,-30],[-13,-136],[1,-28],[12,-87],[14,-48],[4,-20],[7,-48],[1,-41],[-2,-21],[-7,-22],[-17,-54],[-11,-23],[-4,-3],[-22,-18],[-5,-5],[-13,-10],[-6,-13],[-2,-17],[-6,-46],[-2,-19],[0,-15],[0,-13],[4,-20],[2,-4],[10,-5],[4,-1],[7,-1],[14,11],[9,13],[12,17],[12,11],[20,15],[8,5],[17,13],[14,3],[3,0],[15,-3],[2,-2],[8,-6],[1,-1],[8,-10],[60,-104],[8,-19],[1,-5],[1,-6],[0,-6],[0,-19],[-1,-39],[-1,-27],[-3,-27],[-2,-15],[-5,-16],[-9,-15],[-2,-2],[-17,-11],[-10,-3],[-49,16],[-19,9],[-9,4],[-14,-2],[-9,-1],[-15,-5],[-4,-5],[-2,-3],[-8,-17],[0,-1],[-1,-2],[-6,-17],[0,-1],[-2,-27],[29,-95],[5,-12],[12,-29],[38,-77],[52,-123],[9,-21],[4,-9],[17,-46],[4,-12],[0,-4],[0,-24],[-3,-16],[-11,-27],[-28,-51],[-31,-67],[-15,-38],[-5,-18],[0,-17],[1,-13],[17,-63],[7,-27],[9,-32],[1,-12],[2,-34],[0,-3],[-1,-3],[-2,-19],[0,-4],[-5,-10],[-3,-8],[-25,-23],[-8,-7],[-23,-18],[-4,-3],[-18,-9],[-28,10],[-15,6],[-43,25],[-8,5],[-1,0],[-17,-3],[-7,-4],[-6,-3],[-7,-9],[-12,-25],[-5,-19],[-2,-22],[-6,-110],[-3,-67],[-3,-28],[-6,-24],[-7,-19],[-10,-26],[-1,-2],[-8,-16],[-3,-5],[-11,-10],[-18,-16],[-1,0],[-4,-1],[-3,-1],[-5,-2],[-10,7],[-11,7],[-9,0],[-3,0],[-12,-7],[-12,-7],[-8,-9],[-5,-10],[-20,-86],[-2,-18],[-1,-27],[-7,-39],[-6,-23],[-13,-50],[-11,-22],[-9,-11],[-14,-18],[0,-1],[-2,-1],[-17,-13],[-19,-22],[-1,-1],[-1,-1],[-9,-22],[5,-90],[-3,-53],[-1,-34],[0,-41],[3,-8],[21,-27],[34,-20],[21,-44],[11,-29],[5,-21],[20,-93],[4,-33],[-4,-106],[-1,-16],[-2,-47],[-4,-63],[-2,-11],[-14,-46],[-3,-7],[-2,-97],[0,-16],[0,-6],[1,-11],[5,-59],[2,-10],[10,-40],[0,-1],[25,-57],[8,-17],[5,-11],[20,-9],[29,18],[7,6],[14,30],[22,75],[13,5],[31,-2],[7,-7],[5,-9],[-5,-90],[-6,-23],[-18,-71],[-15,-58],[-4,-6],[-1,-2],[0,-5],[-12,-37],[-16,-92],[-5,-39],[0,-2],[-4,-124],[-13,-58],[-27,-48],[-26,-29],[-20,6],[-16,40],[1,15],[-7,42],[-7,43],[-23,73],[-58,6],[-24,2],[-3,0],[-19,-18],[-6,-6],[-1,2],[-9,19],[-2,4],[-2,4],[-2,3],[-2,2],[-2,3],[-2,2],[-2,1],[-3,1],[-1,1],[-10,-100],[0,-4],[-13,-118],[-2,-24],[9,-52],[3,-16],[2,-11],[13,-55],[12,-39],[44,-129],[2,-6],[8,-15],[8,-15],[12,-20],[25,-41],[19,-12],[10,-6],[37,-57],[25,-47],[13,-39],[3,-32],[-4,-70],[-16,-133],[-12,-39],[-7,-22],[-5,-13],[-3,-10],[-13,-22],[-2,-1],[-14,-10],[-45,8],[-49,-27],[-26,-24],[-7,-13],[-5,-10],[-35,-65],[-7,-33],[-6,-25],[-15,-41],[-23,-40],[-6,-5],[-43,-37],[-31,14],[-43,-3],[-37,-16],[-17,-15],[-9,-16],[-3,-6],[-4,-20],[3,-36],[43,-114],[7,-88],[-5,-80],[-1,-31],[0,-10],[6,-88],[11,-39],[14,-75],[-4,-121],[-12,-88],[-14,-27],[-11,-22],[-3,-20],[-26,-99],[-23,-40],[-62,-87],[-27,-15]],[[46194,25285],[-25,-480],[-14,-257],[-33,-589],[-5,-91],[-2,-45],[-7,-133],[-7,-117],[-6,-104],[0,-12],[-2,-46],[-3,-65],[-2,-59],[-5,-121],[-3,-81],[-7,-130],[-9,-57],[-16,-312],[-11,-196],[0,-2],[-6,-105],[0,-1],[-4,-70],[-8,-155],[-1,-9],[-8,-143],[-11,-179],[-15,-222],[-4,-56],[-11,-170],[-15,-221],[-4,-65],[-43,22],[-69,39],[-84,48],[-27,14],[-88,50],[-121,70],[-7,4],[-13,8],[-53,31]],[[45445,21278],[-124,70],[-27,16],[-26,15],[-75,42],[-21,12],[-28,16],[-2,1],[-89,50],[-4,2],[-18,12],[-119,67],[-449,257],[-54,30],[-66,198],[-25,74],[-10,30],[-120,356],[0,1],[-14,40],[-71,222],[-38,120],[-144,-102],[-2,-2],[-21,-15],[-43,-61],[-35,-51],[-31,-12],[-31,-18],[-15,-34],[-28,-131],[-30,-50],[-20,-54],[-15,-33],[-91,-131],[-143,-120],[-40,-1],[-100,-41],[-23,-10],[-20,-8],[-31,66],[-17,38],[-97,209],[-16,34],[-62,134],[-38,81],[-11,24],[-17,38],[-15,32],[-27,60],[-14,30],[-28,59],[-31,68],[-70,153],[-114,249],[-33,72],[-24,53],[-47,103],[-41,89],[-37,70],[-18,39],[-160,349],[-20,42],[-74,163],[-35,77],[-58,127],[-59,131],[-32,67],[-91,199],[-12,25],[-61,133],[-73,158],[-18,40],[-63,138]],[[74934,21043],[-10,-35],[-28,-22],[-14,-49],[2,-40],[-7,-32],[-4,-39],[-5,-46],[-14,-35],[-11,-25],[-16,0],[-30,-48],[-15,-19],[-9,-36],[-19,-32],[-25,22],[-19,5],[-25,8],[-14,-4],[-13,-44],[-16,-45],[-12,-28],[-20,-2],[-11,-19],[-22,-39],[-13,-33],[-11,-37],[-7,-38],[-8,-36],[-12,-22],[-27,-15],[-13,-33],[-7,-38],[-17,29],[-12,30],[-13,29],[-17,3],[-18,4],[-15,-3],[-11,-23],[-17,-2],[-9,39],[-8,31],[-12,36],[-18,7],[-14,6],[-18,-6],[-19,-17],[-12,-40],[-13,-56],[8,-31],[-6,-37],[-1,-53],[7,-39],[10,-35],[-5,-39],[12,-28],[-6,-39],[-14,-7],[-10,-38],[-3,-42],[-1,-46],[-10,-38],[-10,-24],[9,-37],[-6,-35],[-14,-10],[4,-54],[-6,-36],[2,-39],[7,-34],[-19,-17],[-15,-10],[-5,-37],[-10,-36],[-6,-38],[5,-40],[-10,-35],[-18,-14],[-14,-29],[-1,-9],[-6,-40],[-2,-43],[-1,-47],[6,-39],[-4,-48],[1,-45],[11,-24],[12,-22],[5,-42],[1,-37],[3,-38],[-10,-23],[-14,15],[-13,-8],[-13,4],[-12,-30],[-12,-30],[-11,-34],[-14,-23],[-7,-38],[-10,-23],[-12,-22],[-11,-23],[-13,-15],[-14,-15],[-10,-23],[-13,-11],[-14,-4],[-13,4],[-13,-8],[-14,-19],[-14,0],[-12,-22],[-11,-31],[-4,-37],[-6,-38],[-12,-19],[-11,-32],[0,-44],[-4,-36],[-13,-16],[-13,-19],[-8,-34],[-7,-38],[-16,-23],[-14,8],[-13,4],[-21,-10],[-18,-4],[-18,35],[-16,17],[-19,-14],[-20,-10],[-14,-4],[-17,2],[-5,37],[-16,5],[-11,-24],[-17,-8],[-19,20],[-2,90],[3,41],[-10,27],[-18,11],[-19,4],[-11,-22],[-12,-23],[-13,-15],[-21,-11],[-12,-18],[-11,-19],[-19,-15],[-14,-4],[-16,1],[-13,7],[-13,12],[-11,23],[-5,38],[-1,38],[-1,57],[-15,-12],[-14,-3],[-11,-30],[-8,-38],[-6,-34],[-13,-12],[-1,0],[-18,4],[-8,38],[-5,38],[-11,23],[-18,22],[-12,38],[-13,19],[-15,-30],[-13,-8],[-6,41],[-3,42],[-16,-16],[-13,-37],[-13,-27],[-12,-18],[-14,-23],[-16,-15],[-13,11],[-12,41],[-12,18],[-13,-10],[-18,20],[-12,26],[-10,33],[-10,31],[1,46],[-12,-19],[-13,-26],[-12,-27],[-10,-25],[-15,-19],[-13,14],[-10,27],[-14,15],[-13,19],[-12,26],[-12,-19],[-13,-26],[-20,-41],[-6,-34],[-11,-31],[-8,-37],[3,-40],[-13,-37],[-12,-28],[-2,-40],[-6,-34],[-9,-38],[-7,-34],[-16,-7],[-13,-4],[-14,-4],[-16,0],[-16,4],[-18,-4],[-13,-4],[-11,31],[-11,22],[-16,-22],[-23,-36],[-7,-38],[-13,-17],[-14,-50],[-13,-22],[-21,5],[-10,26],[-10,26],[-1,45],[-12,16],[-21,-13],[-20,-13],[-17,-11],[-13,-8],[-29,-35],[-17,-25],[-12,-21],[-12,-20],[-12,-17],[-14,-22],[-12,-20],[-11,-25],[-8,-35],[-4,-38],[-1,-40],[-7,-37],[-8,-38],[-8,-29],[-14,-24],[0,-1],[-18,-15],[-25,-28],[-19,-11],[-16,-6],[-17,-32],[-10,-26],[-9,-26],[-11,-28],[-13,-32],[-16,-41],[7,-34],[-16,1],[-18,-18],[-8,-23],[-2,-8]],[[71993,17276],[-33,-12],[-36,-12],[-12,3],[-13,3],[-3,1],[-1,14],[0,4],[-1,25],[-9,242],[0,14],[-1,43],[-1,5],[-5,-4],[-1,-2],[-5,-10],[-13,-42],[-18,-78],[-4,-1],[-18,-8],[-46,-20],[-5,3],[-3,3],[-1,1],[-3,8],[-1,3],[-3,28],[-7,58],[3,16],[-29,62],[-31,67],[0,3],[-1,3],[0,1],[1,11],[3,9],[2,11],[1,1],[-40,71],[-6,-2],[-11,-36],[-9,-94],[-2,-3],[-13,-24],[-7,2],[-12,34],[3,40],[11,48],[1,18],[2,32],[-4,16],[-7,17],[-21,-2],[-4,0],[-46,-49],[-9,3],[-33,9],[-10,-7],[-2,-5],[-13,-21],[-2,-45],[2,-37],[-3,-55],[-5,-95],[-5,-60],[-9,-23],[-35,-67],[-3,-8],[-15,-27],[-6,-3],[-23,-11],[-18,-9],[-6,-3],[-13,4],[-8,23],[0,13],[1,123],[0,1],[2,37],[0,8],[1,1],[14,21],[22,32],[0,2],[6,19],[1,25],[-2,46],[-9,33],[-8,8],[-16,16],[-4,4],[-24,7],[-5,0],[-9,-1],[-25,-3],[-6,-8],[-5,-8],[-4,-18],[-1,-22],[-1,-5],[1,-4],[7,-55],[-4,-75],[-1,-6],[-5,-28],[5,-22],[-1,-52],[-2,-94],[-3,-45],[-4,-8],[-8,-14],[-20,5],[-17,20],[-14,30],[-18,5],[-10,-18],[1,-8],[10,-80],[-18,-50],[-1,-2],[-22,-12],[-1,-6],[-2,-112],[1,-31],[0,-1],[0,-27],[-2,-41],[-5,-115],[-16,-35],[-4,-8],[-15,5],[-18,50],[-11,14],[-7,0],[-6,0],[-18,-15],[-13,-15],[-20,-32],[-6,-14],[-8,-21],[-12,-30],[-14,-13],[-15,-7],[-15,-8],[-17,13],[-2,2],[-16,11],[-19,-11],[-16,-37],[-2,-4],[-19,7],[-15,60],[-2,38],[-6,87],[-13,26],[-27,53],[-21,30],[-13,-7],[-16,-8],[-14,15],[-8,6],[-8,6],[-21,-12],[-17,-30],[-9,-9],[-5,-6],[-14,-15],[-13,-11],[-18,25],[4,54],[-9,52],[-10,46],[0,5],[-8,37],[-15,19],[-15,-8],[-11,-45],[-1,-4],[-8,-42],[-19,-57],[-13,-23],[-14,-3],[-4,38],[-9,49],[-10,27],[-16,18],[-22,20],[-12,18],[-5,42],[-7,45],[-3,46],[0,24],[-1,43],[-10,53],[-14,30],[-16,27],[-13,22],[-15,-4],[-15,-45],[-7,-55],[-6,-51],[5,-62],[0,-2],[0,-6],[-5,-46],[-1,-57],[2,-54],[2,-44],[-2,-18],[-4,-35],[-2,-45],[-21,-39],[-13,-14],[-14,-19],[-13,-8],[-10,-4],[-5,-3],[-14,-31],[-5,-13],[-12,-39],[-16,-15],[-21,19],[-1,49],[2,53],[1,11],[-11,30],[-10,40],[-5,21],[5,37],[5,42],[-5,56],[-23,15],[-19,-45],[-6,-25],[-2,-9],[-13,-30],[-19,-30],[-21,-4],[-2,42],[6,37],[15,27],[9,30],[5,45],[0,4],[-1,11],[-4,30],[-12,31],[-2,5],[-19,48],[-21,3],[-17,-11],[-20,-38],[-3,-6],[-9,-17],[-13,-11],[-20,-4],[-12,11],[-1,1],[-1,-1],[-15,-3],[-21,0],[-11,38],[14,34],[16,30],[3,5],[13,25],[2,45],[-8,49],[-13,12],[-4,0],[-9,0],[-17,1],[-15,14],[-10,26],[1,30],[0,15],[13,46],[16,37],[15,38],[4,42],[1,49],[9,37],[5,42],[-1,41],[-8,53],[-20,8],[0,-1],[-13,-33],[4,-45],[-8,-34],[-5,-24],[-5,-25],[-13,-23],[-21,-8],[-14,-15],[-8,-47],[-2,-9],[6,-19],[7,-23],[1,-49],[-7,-38],[-53,-62],[-1,-1],[-68,54],[-13,1],[-20,-5],[-6,-4],[-6,-17],[-3,-45],[0,-71],[-4,-44],[-8,-25],[-6,-5],[-8,-2],[-19,19],[-3,1],[-8,2],[-5,0],[-17,-9],[-27,-16],[-15,-12],[-1,-4],[-13,-28],[-6,-15],[0,-1],[-5,-12],[-6,-11],[-25,-90],[-1,-18],[-5,-51],[-3,-4],[-3,-5],[-7,-32],[-3,-8],[-3,-8],[-18,-19],[-6,-7],[-4,-5],[-9,-16],[-1,-1],[-7,-15],[-11,-22],[-11,-8],[-4,-1]],[[69327,16935],[-39,25],[-10,7],[-16,-6],[-5,-7],[-13,-21],[-25,-42],[-29,-59],[-5,-9],[-36,-29],[-65,13],[-15,14],[-22,42],[-16,5],[-46,68],[-15,5],[-14,-7],[-96,-100],[-22,-4],[-45,-82],[-8,-15],[-4,3],[-5,4],[-34,-6],[-25,-31],[-11,-14],[-21,-10],[-47,-2],[-34,7],[-93,18],[-84,140],[-11,19],[-24,68],[-4,46],[5,91],[20,35],[12,9],[2,2],[85,155],[12,60],[6,30],[1,1],[4,70],[-10,39]],[[83994,19759],[-7,-52],[7,-49],[6,-59],[0,-47],[1,-49],[-6,-57],[-10,-33],[-22,-29],[-7,-64],[-15,-55],[5,-62],[-19,-18],[-18,12],[-18,25],[-35,48],[-8,30],[-21,7],[-12,13],[-7,33],[-7,42],[-12,32],[-19,-9],[-10,-34],[1,-44],[-8,-43],[-8,-58],[-9,-41],[-9,-55],[-14,-26],[-32,5],[-24,0],[-18,-5],[-19,-20],[-16,28],[-12,17],[-19,29],[-16,-10],[-15,-25],[-20,6],[-14,-19],[-17,-13],[-13,-22],[-14,10],[-14,49],[-8,33],[-19,13],[-12,-22],[-11,-46],[-9,-32],[-23,-7],[-14,-19],[-10,-48],[-3,-42],[-8,-44],[-3,-64],[-7,-79],[-15,-51],[-6,-34],[-14,-51],[-14,-46],[-24,-50],[-9,-34],[-5,-69],[-14,-60],[-23,-56],[-17,-38],[-18,-34],[-17,-41],[-21,-50],[-26,-66],[-133,-315],[-124,-161],[-83,-109],[-22,-28],[-15,-27],[-163,-291],[-300,-312],[-119,-118],[-14,-13],[-54,-38],[-200,-140],[-368,-258],[-3,-3],[-35,-24],[-11,-8],[-118,-66],[-9,-41],[-16,-38],[3,-57],[-12,-30],[-13,4],[-18,-8],[-6,-41],[-15,-4],[-18,-4],[-12,-49],[-30,12],[-11,45],[-15,4],[-16,4],[-13,3],[-11,-22],[0,-53],[-17,-34],[-10,-61],[-8,-33],[9,-31],[13,-49],[8,-53],[1,-52],[2,-38],[-11,-38],[-12,-41],[8,-49],[25,-23],[13,0],[16,-11],[9,-46],[12,-30],[-5,-41],[1,-46],[-1,-37],[-23,-46],[-21,8],[-17,-19],[-9,-30],[-9,-30],[-9,-30],[-11,-53],[-9,-30],[-16,-53],[-10,-27],[-15,-30],[-20,-30],[-17,-4],[-13,-15],[-20,-15],[-17,4],[-15,-12],[-21,16],[-19,-4],[-14,-12],[-21,-7],[-19,30],[-13,-8],[-18,12],[-12,-30],[-13,-15],[-15,18],[-18,-11],[-20,11],[-17,-11],[-17,0],[-11,30],[-9,166],[-17,-19],[-16,-34],[-22,-18],[-18,-34],[-18,7],[-21,4],[-19,-19],[-11,-30],[-17,-23],[-16,15],[-12,19],[-9,30],[-13,8],[-16,15],[-19,-26],[-8,-38],[-8,-68],[-5,-57],[-7,-64],[-4,-49],[-11,-30],[-14,-4],[-8,34],[-9,30],[-13,42],[-18,11],[-14,-4],[-14,12],[-17,11],[-8,45],[-8,53],[-13,15],[-13,-11],[-18,15],[-14,4],[-10,41],[-14,19],[-17,0],[-12,45],[-6,53],[-15,46],[-13,37],[-16,-19],[-13,-30],[-14,-19],[-16,-22],[-14,7],[-12,-37],[-16,11],[-26,-19],[-13,0],[-15,34],[-16,52]],[[79945,15025],[-9,35],[-17,15],[-13,-4],[-9,-38],[-21,12],[-18,11],[-17,-23],[-15,-7],[-13,7],[-13,41],[-12,35],[-15,7],[-14,23],[-3,41],[9,34],[1,42],[-9,45],[-8,46],[11,26],[4,38],[14,15],[13,4],[14,11],[13,-15],[13,7],[2,76],[8,41],[25,15],[12,19],[14,15],[13,0],[18,22],[17,11],[14,60],[-7,61],[-8,57],[-5,45],[-8,31],[-14,26],[-25,23],[-13,-11],[-19,27],[-13,8],[-20,-15],[-4,53],[-5,36],[-9,28],[-8,31],[-17,7],[-14,20],[-15,7],[-16,-30],[-14,-22],[-13,0],[-19,19],[-9,34],[-11,27],[-1,49],[-4,49],[0,38],[4,46],[12,37],[4,38],[-6,38],[-4,49],[7,49],[9,42],[5,64]],[[59510,25995],[-28,-108],[-41,-155],[-37,-137],[-45,-168],[-135,-534],[-11,-46],[-49,-206],[-89,-324],[-130,-469],[-39,-147],[-19,-70],[-3,-12],[-21,-76],[-69,-220],[-73,-227],[-18,-58],[-56,-192],[-23,-79],[-24,-79],[-31,-103],[-61,-207],[-8,-25],[-48,-161],[-14,-59],[-27,-95],[-46,-165],[-11,-43],[-24,-84],[-2,-6],[-6,-25],[-9,-29],[-56,-201],[-21,-73],[-10,-36],[-10,-33],[-51,-179],[-52,-186],[-24,-90],[-8,-26],[-9,-31],[-34,-122],[-36,-127],[-9,-33],[-18,-62],[-18,-65],[-55,-194],[-22,-54],[-22,-55],[-25,-61],[-24,-61],[-141,-341],[-14,-37],[-47,-132],[-47,-131],[-17,-47],[-56,-157],[-25,-70],[-19,-53],[-19,-57],[-46,-130],[-3,-44],[-18,-179],[-16,-162],[-1,-8],[-7,-69],[-15,-149],[-18,-141],[-14,-100],[-8,-59],[-27,-197],[-31,-232],[-3,-18],[-35,-262],[-67,-492],[-31,-251],[-8,-61],[-12,-99],[-16,-126],[-5,-42]],[[57043,16151],[-93,11],[-17,3],[-56,7],[-77,10],[-138,24],[-91,15],[-13,2],[-34,6],[-2,0],[-149,25],[-62,11],[-7,1],[-15,3],[-98,16],[-52,9],[-133,20],[-81,14],[-59,12],[-58,10],[-57,10],[-18,3],[-101,17],[-103,19],[-14,2],[-43,4],[-128,22],[-110,20],[-49,8],[-28,5],[-59,11],[-61,11],[-38,6],[-115,21],[-30,5],[-97,18],[-76,13],[-111,20],[-88,16],[-38,7],[-74,13],[-46,8],[-56,10],[-51,9],[-8,2],[-41,7],[-1,0],[-22,4]],[[54145,16641],[19,88],[14,60],[20,87],[61,271],[16,100],[0,1],[-74,183],[-79,194],[-35,86],[0,1],[-22,56],[-63,161],[-52,128],[-53,132],[-61,150],[-13,26],[-35,93],[-19,47],[-15,38],[-51,126],[-43,105],[-23,57],[-58,144],[-66,165],[-16,37],[-21,53],[-6,16],[-4,12],[-30,259],[-7,66],[-11,91],[-19,187],[-12,94],[-7,60],[-2,11],[-20,177],[-10,90],[-18,181],[-9,77],[-36,313],[-5,46],[-21,187],[-43,390],[-3,45],[-9,261],[-7,190],[-7,214],[-10,279],[-6,180],[-2,66],[-2,87],[-6,138],[-3,70],[-3,86]],[[92102,26373],[-16,-27],[-30,-55],[-13,-16],[-11,-22],[-25,-36],[-26,-39],[-16,-30],[-19,-13],[-11,-29],[-13,-21],[-24,-21],[-26,-39],[-51,-48],[-16,-39],[-15,-8],[-41,-52],[-12,-58],[4,-41],[-12,-24],[-17,-47],[-20,-18],[-13,-35],[-33,-18],[-13,-22],[-30,-21],[-26,-54],[-17,-1],[-5,-36],[-18,-1],[-10,-27],[-42,-94],[-48,-37],[-28,-39],[-53,-91],[-25,-56],[-30,-92],[-17,-35],[-35,-112],[-15,-32],[-19,-65],[-4,-14],[-5,-15],[-19,2],[-29,-6],[-61,-40],[-17,-3],[-27,-76],[-9,-3],[-20,-18],[-15,-5],[-12,27],[-17,31],[-21,-10],[-33,-37],[-5,-79],[-5,-34],[-13,-34],[6,-51],[-11,-23],[-21,2],[-24,-22],[-19,3],[-23,-27],[-8,-39],[-19,3],[-13,-14],[-22,-25],[-27,-79],[-17,-39],[-12,-16],[-18,0],[4,-46],[-14,-24],[-15,-15],[-14,-31],[-30,21],[-22,62],[-19,7],[-12,-17],[-11,-35],[-17,-20],[-49,-67],[-16,-1],[-40,-30],[-20,-25],[-30,-55],[-16,-16],[-41,-66],[-20,-5],[-26,-13],[-8,-40],[-10,-21],[-36,-51],[-14,0],[-19,-35],[-9,-11],[-24,-42],[-18,-40],[-13,15],[-61,-42],[-15,-31],[-7,-35],[-13,-22],[-10,-51],[-17,-35],[-13,-48],[4,-101],[15,-65],[7,-24],[11,-62],[5,-40],[16,-43],[3,-43],[-14,-53],[15,-75],[5,-111],[-11,-85],[3,-83],[-10,-25],[-18,-24],[-8,-41],[13,-36],[16,-44],[-10,-39],[6,-126],[7,-24],[19,-30],[2,-64],[19,-38],[30,-66],[4,-68],[-19,-77],[-19,2],[-26,-13],[-22,7],[-20,-44],[-21,-68],[10,-111],[-6,-94],[24,-140],[20,-56],[-4,-99],[8,-83],[-9,-111],[3,-92],[3,-93],[-6,-64],[3,-44],[-2,-67],[-4,-16],[-14,-48],[-13,-24],[-18,-7],[-13,18],[-23,5],[-20,25],[-15,-7],[-14,40],[-18,2],[-16,-20],[-19,6],[-31,-24],[-13,-23],[-22,9],[-15,-69],[-2,-41],[1,-88],[-4,-43],[-12,-73],[-10,-41],[3,-32],[1,-76],[-9,-61],[-16,-60],[-9,-54],[2,-54],[-34,-53],[-16,78],[-42,57],[-53,18],[-16,-18],[-28,-72],[-30,-18],[-26,-50],[-9,-82],[-30,-47],[-8,-70],[-16,-28],[-8,-52],[-33,-14],[-36,27],[-5,-48],[-13,-34],[0,-52],[-42,-142],[-14,-28],[-50,21],[-21,7],[-5,-11],[-19,-29],[-10,-29],[-32,-43],[-13,-7],[-21,42],[-7,68],[-17,43],[-26,-52],[-69,-41],[-19,2],[-19,-13],[-33,11],[-13,-15],[-15,-34],[-18,-21],[-12,22],[-10,41],[-12,18],[-10,-26],[-7,-39],[-12,21],[-17,-4],[-28,-69],[-7,-4],[-17,14],[-9,39],[-12,23],[-37,-14],[-23,-79],[-10,-108],[13,-57],[8,-52],[-10,-74],[-8,-82],[-13,-20],[-24,-51],[-18,-16],[-13,-45],[-3,-46],[-16,-64],[-14,-22],[-38,4],[-26,-52],[-20,-63],[-17,-4],[-13,10],[-36,-25],[-28,43],[-29,21],[-23,-84],[-11,-25],[0,-45],[-9,-45],[1,-39],[-13,-23],[-29,6],[-13,21],[-8,35],[-24,-3],[-28,-59],[-20,-19],[-14,-37],[-12,-98]],[[88106,17999],[-75,135],[-97,161],[-98,165],[-15,24],[-13,22],[-39,65],[-17,29],[-132,223],[-42,69],[-10,17],[-18,31],[-8,14],[-4,6],[-15,33],[-22,36],[-109,185],[-147,246],[-19,31],[-14,25],[-21,34],[-14,-5],[-28,-32],[-13,-29],[-13,-10],[-18,-14],[-18,-57],[-15,-19],[-18,-21],[-31,-23],[-37,-32],[-9,-29],[-12,-39],[-14,-44],[-13,3],[-17,-29],[-6,-38],[-30,-59],[-27,-42],[-17,-55],[-16,-12],[-17,37],[-19,25],[-22,-18],[-10,-22],[-15,-10],[-17,-24],[-13,-10],[-15,-8],[-15,-14],[-19,-12],[-14,7],[-23,-7],[-15,-8],[-19,-7],[-12,-8],[-14,-11],[-30,-7],[-24,-9],[-15,-12],[-12,-36],[-16,-19],[-19,-1],[-9,-28],[-1,39],[-15,4],[-37,-32],[-16,-4],[-8,-30],[-17,-23],[-13,11],[-16,-11],[-17,-19],[-7,-38],[-10,-25],[-12,-20],[-8,-41],[-14,-31],[-12,-30],[-15,-22],[-14,-15],[-15,-27],[-5,-41],[-16,-34],[-5,-38],[-9,-45],[-8,-42],[-12,-34],[-14,-19],[-2,-37],[-13,-20],[-17,-8],[-7,-3],[-16,4],[-14,-4],[-14,31],[1,56],[-17,8],[-17,-4],[-18,13],[-12,25],[-16,3],[-16,12],[-22,-15],[-19,4],[-13,15],[-6,56],[1,38],[-17,4],[-29,-19],[-53,-45],[-22,-27],[-23,-19],[-15,-22],[-13,11],[-14,-4],[-17,-15],[-15,-11],[-14,-8],[-19,-7],[-17,-12],[-14,-7],[-13,-15],[-22,-23],[-13,11],[-15,-22],[-15,-23],[-15,-7],[-14,0],[-13,-12],[-16,-11],[-19,-11],[-29,-19],[-11,-19],[-16,-8],[-17,-19],[-15,-18],[-15,-17],[-15,-14],[-13,-7],[-16,-8],[-16,-15],[-14,-15],[-15,-14],[-22,7],[-12,-20],[-15,-20],[-15,-2],[-17,-11],[-14,-7],[-9,-31],[-14,-8],[-13,-3],[-17,-14],[-27,-1],[-14,-12],[-16,-7],[-13,0],[-17,-23],[-15,-7],[-15,-16],[-13,-18],[-18,-12],[-15,-11],[-21,-15],[-16,-19],[-15,-4],[-14,-11],[-13,-26],[-15,-19],[-14,-15],[-17,-16],[-19,-18],[-23,-19],[-15,-4],[-13,-19],[-13,-4],[-15,-22],[-14,-15],[-13,-8],[-16,-8],[-18,-3],[-20,0],[-19,-15],[-15,-8],[-13,-4],[-15,-11],[-20,-11],[-29,-19],[-13,-12],[-14,-11],[-15,-15],[-22,-23],[-12,-27],[-18,-22],[-20,-3],[-20,-4],[-15,38],[-11,22],[-11,57],[4,49],[0,1],[14,40],[17,42],[13,26],[4,46],[12,49],[-12,37],[-15,49],[-13,42],[-5,53],[-8,30],[-5,60],[17,38],[22,11],[11,27],[12,34],[10,45],[3,42],[-6,64],[-9,49],[-2,41],[1,49],[8,38],[4,38],[4,37],[14,4],[15,-4],[17,4],[13,34],[18,27],[11,34],[12,30],[17,15],[10,41],[19,19],[13,12],[14,37],[24,-4],[14,4],[18,4],[13,-8],[14,-11],[16,-4],[17,34],[7,46],[-7,34],[-8,41],[7,42],[13,46],[8,33],[12,34],[17,61]],[[9906,17241],[-16,-8],[-16,3],[-20,-16],[-15,17],[-18,-15],[-21,7],[-12,-7],[-5,-3],[-14,-52],[-3,-11],[-40,-45],[-7,-8],[-31,-34],[-1,-2],[-29,-36],[-78,-41],[-5,-1],[-1,0],[-6,9],[-7,17],[-12,25],[-1,0],[-4,12],[-2,13],[-6,-3],[-16,-70],[-2,-5],[0,5],[-7,62],[-2,16],[-7,20],[-45,76],[-3,4],[-12,8],[-3,-4],[-8,-19],[-3,-6],[0,-8],[-5,-14],[-31,-41],[-5,-6],[-7,-3],[-5,5],[-11,4],[-35,12],[-41,14],[-29,-33],[-2,-3],[-9,-22],[-3,-6],[-15,-38],[-7,-25],[-5,-21],[-11,-5],[-11,-7],[-6,-3],[-5,15],[-13,14],[-13,14],[-10,-26],[-13,-15],[-13,-16],[-13,21],[-4,-39],[-13,-8],[-17,-5],[8,-38],[-17,-1],[0,-1],[-7,-9],[-6,-8],[-10,26],[-13,-8],[-13,-41],[-17,-5],[-4,38],[-12,23],[-4,-40],[-14,-17],[-2,37],[-1,30],[0,8],[-20,4],[-1,0],[-14,-8],[6,-38],[-14,-1],[-43,-34],[-17,-8],[-7,-1],[-4,0],[-4,0],[-7,-31],[-2,-5],[-7,-41],[-29,-18],[-10,-7],[-26,-17],[-16,-11],[1,-39],[-1,-3],[-11,-27],[-10,17],[-2,4],[-3,42],[-13,26],[-14,2],[-5,-40],[-3,1],[-10,3],[-12,40],[-17,18],[-3,59],[-16,1],[-12,-31],[-7,32],[-12,15],[-12,-23],[-7,-36],[-15,-22],[-13,-16],[-24,-16],[-11,20],[-6,-47],[-12,9],[-15,-8],[-10,-40],[-14,32],[-7,39],[-16,28],[-3,-45],[-7,-45],[-11,-39],[-14,12],[-11,-47],[-13,0],[-17,-5],[-18,-3],[7,-40],[-14,3],[-15,8],[-13,-13],[-13,-13],[-13,-15],[9,-36],[-14,-8],[-6,-28],[-1,-8],[-3,6],[-12,27],[-15,-2],[-15,12],[-19,-6],[-7,-16],[-5,-14],[-12,20],[-11,21],[-9,-40],[10,-28],[-13,-16],[-21,-12],[-9,-16],[-6,-9],[-2,5],[-10,28],[-14,0],[2,-39],[0,-1],[19,-10],[-5,-39],[-16,16],[-13,10],[-16,1],[-13,-16],[-6,13],[-5,11],[-13,23],[-8,36],[-14,-51],[-13,-19],[-6,35],[2,37],[-17,-12],[-18,-26],[-8,-32],[-12,-42],[0,-1],[-2,-42],[-13,8],[-9,-28],[-11,23],[-13,-17],[-19,5],[-14,-19],[6,-35],[-13,-14],[-17,5],[-17,18],[-17,8],[-12,23],[-11,-27],[-13,18],[-7,-49],[-14,20],[-14,-10],[-6,-36],[-12,-29],[-12,-27],[-13,-10],[-13,20],[-15,-13],[-4,-38],[-12,-23],[-9,-15],[-1,-2],[8,-16],[0,-6],[0,-2],[-2,-5],[-3,-9],[-5,-5],[-12,1],[-73,26],[-2,1],[-18,9],[-4,4],[-8,8],[-6,7],[-3,6],[2,7],[4,16],[5,15],[-25,90],[0,4],[0,106],[-17,-19],[-6,-3],[-9,0],[-23,4],[-17,19],[-9,-3],[-10,-4],[-12,-5],[-3,-26],[-3,-26],[-7,-60],[-1,-10],[-33,17],[12,46],[0,8],[0,3],[-9,117],[-1,10],[-6,14],[0,1],[-19,35],[-7,6],[-8,-13],[-1,-11],[2,-20],[6,-41],[1,-30],[-2,-9],[-5,-4],[-1,-1],[-14,-2],[-1,0],[-6,4],[-29,30],[-23,24],[-2,-7],[-18,-52],[-14,-38],[-4,-9],[-30,-68],[-6,-9],[-2,-3],[-1,0],[-54,49],[-2,2],[-4,6],[-7,21],[-8,32],[-6,18],[-4,2],[-47,24],[-16,-3],[-9,-7],[-9,-15],[-17,-21],[-29,-34],[-7,-7],[-1,-1],[-22,-3],[-1,-1],[-44,41],[-2,3],[-14,42],[-1,2],[7,73],[4,41],[3,33],[-17,182],[-29,65],[-2,5],[-5,1],[-5,-7],[-8,-18],[-6,-21],[-12,-53],[0,-18],[6,-76],[-21,17],[-18,51],[-12,23],[-8,9],[-7,-3],[-5,-6],[-7,-30],[-22,22],[-11,30],[-12,-18],[-20,-29],[-31,-46],[-1,-9],[-9,-107],[19,-22],[14,0],[14,0],[10,-36],[3,-24],[3,-27],[-13,-10],[-7,-36],[-4,-39],[2,-41],[11,-41],[-16,-27],[-20,-47],[-14,-25],[-16,7],[-10,27],[-14,-6],[3,-42],[19,-34],[3,-38],[-4,-38],[-9,-44],[-16,-23],[-23,12],[-13,13],[-11,29],[4,37],[4,54],[-7,33],[-17,6],[-20,17],[-16,-6],[-11,-34],[2,-43],[3,-79],[-10,-32],[-14,12],[-6,43],[-5,56],[-15,53],[-15,37],[-5,48],[14,48],[10,28],[14,48],[-1,36],[-55,174],[-3,10],[-2,6],[-3,3],[-10,37],[-13,69],[-1,16],[0,26],[0,2],[0,5],[3,11],[4,48],[3,46],[0,7],[0,10],[-8,25],[0,1],[-15,27],[-1,1],[-2,6],[-6,15],[-2,9],[-6,21],[-5,24],[-4,33],[-3,25],[-2,8],[-3,8],[-6,18],[-3,8],[-8,8],[-9,-4],[-10,-8],[-12,-38],[-5,-15],[-3,-3],[-1,-1],[-7,-7],[-55,-54],[1,2],[1,44],[-6,-1]],[[6161,16823],[16,563],[-1,166],[-63,260],[-64,198],[-21,45],[-108,239],[-59,4],[-38,3],[-63,-31],[-37,-19],[-54,122],[-1,3],[-2,5],[-133,257],[-116,224],[-49,95],[-1,3],[-9,16],[-7,12],[-13,12],[-3,5],[-6,12],[-37,66],[-3,12],[-16,52],[-5,13],[-19,51],[-19,59],[-7,27],[-23,89],[-11,59],[-2,6],[-6,30],[-7,39],[-13,67],[-20,98],[-11,63],[-8,61],[-1,8],[-5,48],[-10,107],[-3,75],[0,3],[-2,98],[-8,117],[-4,47],[-2,22],[-2,37],[0,37],[2,58],[0,19],[2,27],[1,7],[5,52],[3,53],[3,39],[0,48],[5,66],[6,65],[6,48],[9,71],[8,59],[6,52],[6,50],[8,52],[8,54],[93,58],[29,137],[52,215],[43,145],[22,57],[57,183],[66,166],[60,122],[45,125],[27,81],[230,459],[64,157],[86,244],[44,160],[40,130],[41,160],[13,69],[28,163],[14,144],[15,81],[-1,18],[22,179],[17,119],[44,241],[42,190],[53,184],[93,223],[195,393],[31,81],[107,246],[27,56],[103,201],[32,67],[66,142],[68,128],[152,248],[61,76],[82,93],[62,50],[40,44],[106,64],[105,48],[127,40],[100,7],[296,-23],[10,-6],[52,52],[26,9],[19,8]],[[8369,27462],[-1,-1],[7,-51],[8,-51],[1,-4],[19,-126],[23,-152],[1,-9],[37,-246],[15,-103],[79,-536],[13,-71],[30,-216],[70,-458],[1,-8],[5,-37],[28,-176],[13,-88],[26,-171],[45,-301],[29,-187],[19,-130],[31,-202],[12,-78],[6,-44],[35,-228],[14,-86],[38,-264],[19,-124],[31,-198],[37,-249],[29,-195],[2,-8],[8,-56],[0,-2],[24,-159],[7,-43],[5,-35],[5,-37],[6,-36],[6,-44],[14,-91],[8,-56],[13,-90],[8,-51],[6,-37],[8,-55],[1,-9],[9,-55],[21,-140],[45,-302],[19,-130],[8,-54],[10,-63],[14,-99],[8,-55],[17,-109],[21,-145],[13,-82],[12,-80],[20,-135],[13,-81],[20,-137],[14,-84],[19,-122],[14,-92],[14,-91],[23,-149],[24,-150],[17,-113],[13,-77],[13,-85],[9,-55],[0,-2],[31,-198],[37,-236],[104,-715],[5,-35],[2,-11],[14,-96],[20,-134],[23,-153],[12,-77],[38,-280]],[[14290,19832],[0,-94],[-2,-160],[0,-38],[0,-15],[0,-40],[0,-38],[-7,-33],[-3,-39],[-2,-39],[-3,-37],[-3,-40],[0,-6],[-4,-103],[-7,-102],[-1,-43],[0,-40],[0,-40],[-1,-42],[0,-40],[1,-40],[1,-37],[0,-3],[-3,-43],[1,-39],[0,-98],[2,-215],[1,-109],[-4,-108],[6,-450],[-1,-46],[1,-51],[2,-260],[0,-7],[1,-152],[1,-160],[1,-63],[2,-76],[2,-45],[1,-44]],[[14272,16797],[-101,4],[-29,0],[-67,-1],[-85,1],[-124,4],[-15,0],[-3,0],[-39,0],[-112,-1],[-2,0],[-48,-1],[-27,1],[-71,1],[-79,0],[-221,16],[-11,1],[-72,6],[-23,1],[-45,4],[-24,1],[-22,2],[-49,2],[-33,2],[-39,-2],[-16,0],[-31,-2],[-2,0],[-7,0],[-20,-2],[-24,-2],[-28,-2],[-43,-7],[-77,-13],[-14,-2],[-27,-4],[-1,0],[-1,0],[-63,7],[-9,0],[-43,1],[-1,0],[-117,-6],[-117,1],[-107,1],[-24,1],[-24,-2],[-20,0],[-19,0],[-14,1],[-13,1],[-14,-1],[-14,1],[-13,-4],[-51,4],[-13,0],[-48,0],[-109,1],[-29,0],[-1,0],[-81,1],[-24,0],[-44,4],[-43,-2],[-3,0],[-71,-2],[-13,1],[-14,0],[-14,0],[-15,0],[-15,0],[-14,4],[-14,8],[-14,8],[-14,8],[-14,8],[-14,8],[-13,6],[-13,7],[-14,8],[-12,19],[-10,25],[-11,21],[-14,8],[-13,0],[-14,1],[-14,1],[-14,0],[-14,1],[-15,0],[-14,0],[-15,0],[-13,1],[-14,0],[-12,0],[-1,0],[-14,1],[-14,-1],[-13,0],[-14,0],[-16,0],[-14,1],[-14,1],[-13,0],[-15,0],[-13,0],[-14,1],[-13,-1],[-14,1],[-14,0],[-13,1],[-14,0],[-14,1],[-15,0],[-14,1],[-15,1],[-15,0],[-13,1],[-14,1],[-14,0],[-13,0],[-14,0],[-13,1],[-14,-1],[-14,0],[-14,0],[-13,-1],[-14,0],[-15,1],[-14,0],[-13,-1],[-15,0],[-14,0],[-14,0],[-8,0],[-6,0],[-16,-1],[-15,1],[-14,0],[-14,-1],[-13,0],[-13,0],[-17,0],[-14,0],[-16,0],[-14,1],[-14,-1],[-13,-2],[-14,-2],[-15,-3],[-14,-1],[-21,0],[-14,-1],[-22,2],[-19,2],[-13,1],[-14,2],[-14,0],[-14,0],[-13,-1],[-15,0],[-14,0],[-15,0],[-54,-1],[-105,0],[-60,-1]],[[9949,16956],[-20,140],[-7,53],[-5,36],[-7,35],[-4,21]],[[8369,27462],[5,2],[0,4],[3,11],[-5,4],[-21,15],[-33,26],[-12,10],[-50,50],[-1,3],[-3,18],[16,-8],[62,-19],[22,-5],[36,-15],[21,-17],[13,-11],[13,-11],[6,-4],[35,-36],[29,-21],[26,-6],[51,-18],[1,0],[4,-4],[41,-40],[41,-38],[31,-34],[16,-17],[52,-56],[53,-39],[58,-60],[47,-33],[25,-21],[14,-11],[16,-12],[28,-21],[2,-2],[29,-28],[57,-56],[35,-27],[16,-3],[15,-17],[22,-18],[30,-23],[20,-23],[25,-30],[3,-3],[14,-13],[10,-8],[18,-11],[28,-34],[16,-21],[14,-21],[19,-19],[3,-3],[22,-31],[3,-2],[2,-2],[1,-1],[22,-18],[32,-33],[23,-23],[32,-35],[18,-11],[11,-17],[41,-51],[52,-59],[17,-20],[15,-11],[45,-36],[70,-54],[38,-32],[6,-10],[27,-34],[20,-7],[8,-2],[11,-5],[19,-22],[14,-22],[38,-21],[20,-10],[7,-4],[20,-10],[28,-16],[16,-19],[50,-65],[42,-53],[7,-16],[9,-20],[24,-51],[18,-32],[19,-20],[19,-21],[4,-11],[6,-20],[24,-33],[23,-66],[6,-35],[5,-35],[15,-27],[17,-18],[12,-14],[28,-45],[10,-38],[11,-38],[21,-52],[21,-38],[13,-22],[32,-50],[43,-63],[20,-39],[15,-29],[7,-18],[1,-1],[32,-79],[12,-22],[26,-34],[38,-52],[28,-62],[18,-31],[15,-22],[19,-23],[3,-4],[10,-13],[24,-33],[1,-2],[16,-25],[1,-2],[1,0],[9,-11],[16,-34],[19,-33],[4,-5],[2,-4],[3,-4],[18,-33],[8,-12],[11,-18],[7,-11],[13,-21],[0,-1],[2,-3],[26,-39],[25,-36],[4,-6],[12,-13],[17,-19],[43,-41],[7,-7],[10,-9],[2,-1],[24,-17],[28,-19],[23,-7],[16,-3],[17,1],[22,7],[36,17],[4,1],[17,9],[22,10],[18,11],[19,11],[4,0],[2,-1],[0,-1],[1,-7],[0,-5],[5,-25],[7,1],[10,9],[12,10],[9,3],[4,3],[-7,11],[-2,8],[-2,7],[1,3],[7,1],[10,-3],[3,0],[1,-2],[5,-4],[13,-7],[7,-3],[30,-17],[22,-9],[26,-13],[21,-13],[6,-4],[24,-19],[1,-1],[29,-24],[24,-22],[16,-15],[6,-4],[0,-1],[1,0],[22,-25],[29,-35],[4,-7],[20,-34],[13,-17],[0,-1],[1,0],[22,-18],[9,-3],[15,-9],[4,-5],[23,-28],[41,-50],[26,-33],[31,-40],[4,-5],[26,-31],[18,-19],[23,-23],[15,-16],[23,-24],[19,-16],[9,-8],[1,-1],[11,-15],[6,-6],[21,-20],[8,-7],[29,-16],[2,-7],[11,-32],[22,-21],[13,-17],[18,-18],[49,-24],[8,-4],[2,-2],[9,-9],[9,-9],[27,-12],[31,-7],[1,1],[23,9],[18,6],[14,-21],[15,-15],[15,-16],[3,-3],[15,-16],[7,-8],[4,-5],[13,-18],[20,-26],[16,-17],[22,-31],[30,-43],[15,-17],[9,-10],[13,-16],[40,-62],[40,-62],[44,-68],[22,-35],[30,-49],[24,-55],[23,-68],[16,-43],[31,-34],[28,-33],[37,-55],[7,-24],[11,-46],[10,-31],[8,-28],[7,-28],[12,-40],[13,-41],[8,-23],[3,-10],[10,-32],[28,-80],[14,-42],[14,-25],[5,-9],[-2,-5],[-2,-3],[4,-11],[17,-35],[13,-16],[15,-17],[22,-27],[19,-28],[8,-11],[18,-25],[13,-31],[3,-6],[9,-23],[4,-6],[5,-10],[5,-12]],[[45445,21278],[-9,-59],[-11,-80],[-3,-15],[-18,-128],[-6,-36],[-40,-275],[-8,-57],[-5,-35],[-21,-139],[-8,-60],[-19,-118],[-4,-38],[-17,-116],[-1,-7],[-15,-97],[-16,-116],[-8,-55],[-12,-81],[-45,-308],[-8,-55],[-2,-12],[-22,-148],[-13,-93],[-27,-180],[-7,-48],[-25,-180],[-53,-357],[-16,-113],[-20,-135],[-17,-114],[-14,-100],[-22,-151],[-22,-149],[-20,-141],[-7,-46],[-22,-151],[-64,-440],[-7,-47],[-18,-124],[-19,-126],[-10,-64]],[[44744,16484],[-16,19],[-13,13],[-4,1],[-1,2],[-2,-1],[-9,-1],[-9,-10],[-15,-25],[-5,-7],[-5,-10],[-6,-13],[-2,-3],[-9,-26],[-2,-7],[-10,-42],[2,-20],[-1,-21],[-18,-81],[-22,-55],[-14,-24],[-7,-9],[-9,-18],[-8,-15],[-18,-35],[-18,-23],[-58,-52],[-9,-5],[-3,3],[-10,12],[-2,1],[0,1],[-5,9],[-12,23],[-5,13],[-23,73],[-1,7],[-23,115],[-10,22],[-25,55],[-1,3],[-12,40],[-1,6],[-3,15],[-2,18],[0,2],[0,1],[-1,98],[0,6],[-6,1],[-1,1],[-13,-3],[-2,-1],[-1,-1],[-2,-2],[-6,-7],[-2,-2],[-6,-10],[-26,-44],[-3,-5],[-15,-24],[-4,-12],[-17,-54],[-30,-101],[0,-1],[-5,-24],[-4,-90],[1,-21],[3,-22],[15,-129],[9,-70],[2,-10],[3,-17],[5,-11],[24,-25],[16,-13],[3,-2],[4,-17],[3,-32],[3,-33],[1,-41],[-8,-59],[-33,-132],[-16,-50],[-11,-28],[-51,-113],[-14,-2],[-1,1],[-16,12],[-3,2],[-9,17],[-10,29],[-4,17],[0,2],[-1,11],[-3,15],[-11,67],[-14,77],[-7,32],[-8,15],[-3,2],[-13,10],[-33,-7],[-29,30],[-2,2],[-1,-9],[-15,-89],[-12,-59],[-10,-35],[-4,-9],[-43,-31],[-6,-4],[-4,3],[-7,16],[-2,3],[-7,11],[-1,0],[-4,1],[-5,-9],[-2,-1],[0,-1],[-2,-19],[2,-52],[3,-66],[1,-15],[6,-155],[-1,-17],[-2,-12],[-4,-7],[-5,-1],[-2,2],[-47,50],[-4,-5],[-3,-10],[0,-1],[-3,-15],[-24,-117],[-55,59],[-1,1],[-3,3],[-20,-1],[-11,0],[-1,-1],[-16,-21],[-1,-1],[-3,-9],[0,-1],[-1,-11],[0,-10],[1,-7],[1,-17],[-6,-57],[-10,-48],[-5,-11],[-4,-4],[-59,-14],[-18,24],[-30,27],[-5,4],[-37,25],[-6,4],[-9,4],[-10,2],[-3,1],[-2,-1],[-3,-2],[-21,-28],[-2,-3],[-7,-17],[-10,-107],[0,-2],[0,-8],[-1,-23],[4,-33],[2,-16],[8,-30],[1,0],[4,-7],[57,-117],[-15,-211],[-3,-49],[-1,-1],[12,-75],[7,-46],[-14,-29],[-33,-61],[-32,-61],[-24,-45],[-15,-28],[-12,-22],[-27,-52],[-105,-204],[-110,-214],[-16,-30],[-34,-65],[-31,-60],[-20,-40],[-23,-46],[-41,-78],[-15,-30],[-20,-40],[-30,-59],[-23,-45],[-40,-78],[-22,-44],[-52,-103],[-1,-2],[-30,-58],[-17,-33],[-99,-190],[-7,-14],[-270,-529],[-14,-28],[-24,-45],[-85,-168],[-39,-77],[-21,-43],[-13,-26],[-17,-32],[-16,-31],[-61,-120],[-17,-28],[-21,-39],[-43,-85],[-23,-45],[-37,-74],[-64,-126],[-14,-26],[-5,-11],[-90,-176],[-35,-68],[-27,-53],[-45,-90]],[[41602,10528],[10,173],[10,173],[13,236],[12,202],[7,133],[9,156],[5,97],[-42,16],[-90,34],[-15,5],[-119,51],[-30,12],[-36,13],[-88,34],[-39,17],[-22,11],[-27,9],[-21,8],[-141,55],[-9,4],[-176,68],[-37,13],[-16,6],[-36,11],[-6,3],[-35,12],[-72,26],[-14,5],[-159,58],[-64,22],[-14,7],[-138,49],[-263,93],[-56,20],[-82,29],[-93,30],[-1,0],[-43,13],[-14,4],[-154,51],[-227,75],[-22,6],[-8,47],[-10,54],[-104,554],[-68,364],[-25,136],[-27,143],[-34,176],[-22,119],[-18,97],[-55,293]],[[38896,14551],[-10,61],[-11,56],[-22,115],[-15,83],[-4,24],[-3,14],[-9,52],[-11,57],[-24,128],[-68,355],[-40,225],[-64,336],[-62,321],[-14,81],[-18,102],[-10,57],[-16,86],[-21,108],[0,1],[-31,157],[-31,167],[-14,69],[-9,45],[-30,164],[-79,391],[-30,161],[-14,74],[-36,221],[-31,163],[-9,46],[-14,78],[-2,7],[-36,191],[-7,42],[-1,4],[-32,167]],[[62253,18880],[-20,-38],[-71,-137],[-31,-61],[-49,-105],[-85,-174],[-76,-158],[-30,-63],[-27,-56],[-15,-30],[-14,-29],[-9,-20],[-31,-64],[-12,-24],[-30,-62],[-22,-45],[-55,-116],[-40,-81],[-43,-91],[-54,-110],[-23,-51],[-40,-81],[-23,-46],[-24,-51],[-13,-27],[-11,-22],[-23,-48],[-30,-62],[-13,-27],[-14,-29],[-1,-3],[-16,-33],[-16,-5],[-12,30],[-10,34],[-12,41],[-26,76],[-19,37],[-10,23],[-12,26],[-12,34],[-11,23],[-23,45],[-20,42],[-12,19],[-21,22],[-14,15],[-16,23],[-14,15],[-19,23],[-18,15],[-20,11],[-21,8],[-24,11],[-22,4],[-59,-4],[-13,-7],[-15,-8],[-14,-11],[-25,-34],[-21,-42],[-12,-38],[-16,-41],[-11,-38],[-7,-30],[-8,-34],[-11,-57],[-6,-56],[-3,-42],[-4,-45],[0,-38],[-1,-41],[-6,-68],[-5,-64],[-2,-38],[-4,-68],[-4,-56],[-2,-50],[0,-46],[0,-59],[2,-38],[1,-68],[0,-68],[-3,-52],[-1,-8],[-5,-68],[-5,-57],[-14,-71],[-6,-34],[-9,-49],[-10,-46],[-17,-79],[-13,-49],[-25,-56],[-18,-34],[-20,-34],[-41,-57],[-40,-41],[-19,-12],[-17,-11],[-14,-7],[-16,-8],[-27,-45],[-201,-315],[-15,-24],[-57,-89],[-14,-18],[-40,-63],[-17,-27],[-131,-206],[-44,-68],[-62,-111],[-25,-44],[-11,-21],[-12,-20],[-12,-22],[-18,-31],[-15,-29],[-48,-85],[-14,-24],[-37,-64],[-12,-21],[-2,-4],[-11,-20],[-18,-33],[-25,-46],[-13,-23],[-13,-24],[-22,-38],[-74,-128],[-6,-11],[-7,-13],[-137,-238]],[[59245,13641],[-150,-245],[-22,-35],[-55,-100],[-102,-168],[-224,-367],[-65,-105],[-75,-123],[-8,-14],[-16,-26],[-16,27],[-19,31],[-22,38],[-28,56],[-13,20],[-27,43],[-23,34],[-12,19],[-42,62],[-40,89],[-28,48],[-204,347],[-44,77],[-19,32],[-25,43],[-60,103],[-107,180],[-74,126],[-54,91],[-28,49],[-94,159],[-15,27],[-33,52],[-15,9],[-30,8],[-11,4],[-7,10],[-28,37],[-19,25],[-87,111],[-15,20],[-9,17],[-24,42],[-4,12],[-7,14],[-54,106],[-4,8],[-42,26],[-48,73],[-10,3],[-22,5],[-1,1],[-2,-2],[-31,-25],[-30,-54],[-9,-53],[0,-51],[7,-78],[9,-48],[19,-56],[15,-20],[39,-57],[16,-22],[1,-2],[7,-15],[12,-24],[31,-64],[83,-239],[33,-91],[9,-38],[18,-127],[2,-92],[-11,-53],[-6,-10],[-22,-35]],[[57254,13486],[-63,-68],[-20,-13],[-59,-37],[-6,-4],[-15,7],[-37,16],[-35,17],[-6,4],[-6,5],[-46,50],[-4,5],[-4,6],[-56,96],[-26,72],[-14,75],[-4,52],[3,96],[8,257],[3,9],[-4,93],[-16,91],[-30,73],[-17,21],[-10,22],[-12,25],[-186,397],[-95,204],[-28,59],[272,490],[59,107],[76,144],[167,294]],[[54145,16641],[-34,-198],[-34,-189],[-41,-238],[-57,-324],[-59,-339],[-66,-377],[-62,-141],[-55,-127],[-57,-131],[-57,-130],[-35,-78],[-13,-33],[-22,-52],[-11,-25],[-29,-67],[-83,-188],[-12,-27],[-115,-59],[-94,-48],[-96,-49],[-53,-29],[-35,-17],[-43,-60],[-135,-186],[-17,-23],[-115,-159],[-105,261],[-91,256],[-18,51],[-6,15],[-16,45],[-12,34],[-25,20],[-28,22],[-70,134],[-21,-3],[-41,-6],[-27,9],[-41,13],[-22,-23],[-7,-30],[6,-59],[7,-63],[42,-81],[19,-160],[23,-126],[15,-80],[14,-78],[28,-78],[21,-48],[69,-153],[4,-44],[9,-32],[36,-116],[53,-154],[-11,-78],[-7,-47],[-58,-387],[-17,-72],[-29,-30],[-96,-90],[-14,-13],[-51,-46]],[[52248,12110],[-86,435],[-82,72],[-18,13],[-39,32],[-103,22],[-57,14],[-127,25],[-39,8],[-95,17],[-76,14],[-101,20],[-46,11],[-12,3],[-81,16],[-75,15],[-13,2],[-39,5],[0,1],[-42,8],[-51,12],[-91,17],[-22,4],[-74,14],[-35,7],[-144,29],[-75,14],[-15,3],[-147,30],[-15,-3],[-26,7],[-14,6],[-42,5]],[[50366,12988],[-4,200],[-5,217],[-7,243],[-1,48],[0,4],[-2,95],[-3,148],[-3,107],[-2,86],[-1,67],[-2,54],[-1,59],[-3,100],[-1,71],[-2,73],[-8,347],[-4,181],[-1,5],[-2,87],[-6,252],[-10,455],[-4,145],[-4,182],[-8,345],[-1,27],[-4,182],[-2,81],[-5,222],[-9,387],[-3,110],[-2,102],[-2,79],[-2,73],[-5,211],[-2,101],[-3,111],[-6,236],[0,8],[-2,86],[-6,240],[0,10],[-3,141],[-5,213],[-2,58],[-12,145],[-12,139],[-41,460],[-3,107],[-8,258],[-4,115],[-5,147],[-8,257],[-2,53],[-6,182],[-2,84],[-12,369],[2,219],[0,8],[1,257],[2,402],[1,95],[2,88],[3,114],[6,40],[3,42],[3,40],[3,42],[3,39],[3,43],[2,38],[3,37],[-10,53],[-28,47],[-22,7],[-20,32],[-18,-8],[-46,-39],[-19,-13],[-14,-9],[-13,-7],[-16,56],[-10,166],[-2,37],[-19,329],[-29,491],[27,54],[18,35],[43,83],[27,53],[24,48],[43,84],[16,33],[31,61],[18,65],[12,43],[19,69],[23,86],[11,40],[8,32],[9,33],[13,46],[11,41],[59,221],[17,63]],[[22257,17484],[-11,-12],[-2,-2],[-18,9],[-34,13],[-38,-12],[-90,-7],[-112,-176],[-41,-53],[-90,-116],[-20,-25],[-27,-36],[-110,-145],[-13,-17],[-26,-35],[-3,-4],[-27,-36],[-30,-40],[-64,-83],[-20,-26],[-129,-166],[-103,-131],[-106,-135],[-118,-159],[-21,-28],[-26,-35],[-37,-43],[-26,-32],[-13,-15],[-13,-17],[-15,-18],[-2,-2],[-16,-20],[-17,-21],[-23,-30],[-23,-29],[-36,-47],[-92,-119],[-30,-36],[-59,-54],[-16,-14],[-68,-62],[-37,-28],[-15,-9],[-12,-7],[-23,-12],[-32,-19],[-58,-33],[-2,-3],[-37,-25],[-31,-23],[-24,-16],[-26,-15],[-4,-2],[-14,-10],[-26,-18],[-23,-14],[-14,-13],[-18,-12],[-16,-19],[-25,-22],[-25,-28],[-29,-33],[-146,-119],[-14,-12],[-20,-16],[-14,-10],[-13,-9],[-15,-14],[-31,-30],[-17,-14],[-236,-199],[-7,-6],[-53,-42],[-89,-71],[-124,-100],[-173,-139],[-34,-39],[-17,-19],[-26,-25],[-16,-21],[-60,-50],[-106,-70],[-120,-84],[-46,-31],[-3,-2],[-51,-26]],[[18570,13959],[-73,300],[-18,70],[-58,253],[-58,289],[-16,74],[-20,84],[-11,32],[-35,103],[-11,51],[-47,502],[4,61],[-2,144],[-13,186],[-21,205],[-23,138],[-7,42],[-61,195],[-74,245],[-183,379],[-117,219],[-27,50],[-11,21],[-59,163],[-10,37],[-12,39],[-35,96],[-25,89],[-32,127],[-12,49],[-13,48]],[[50366,12988],[-21,5],[-79,18],[-25,5],[-16,-9],[-89,-93],[-79,-83],[-57,-54],[-74,23],[-22,-31],[-66,-94],[-21,-30],[-22,-32],[-8,-10],[-27,-38],[-39,-55],[-41,-55],[-205,-212],[-119,-200],[-68,-114],[-13,-20],[-42,-71],[-171,-288],[-12,-19],[-17,-29],[-37,-63],[-139,-231],[-175,-294],[-20,-35],[-85,-140],[-36,-60],[-3,-5],[-93,-157],[-26,-44],[-108,-183],[-50,-85],[-10,-17],[-2,-3],[-23,-38],[-125,-209],[-72,-120],[-164,-273],[-33,-57],[-64,-104],[-20,-34],[-78,-128],[-15,-26],[-25,-42],[-43,-70],[-23,-38],[-56,-94],[-58,-96],[-17,-27],[-77,-128],[-35,-58],[-18,-29],[-15,-25],[-28,-49],[-16,-33],[-2,-4]],[[47242,8503],[-1,8],[-35,321],[-14,113],[-27,199],[-5,42],[-32,72],[-88,203],[-19,42],[-70,226],[-9,32],[-21,56],[-11,39],[-61,70],[-31,24],[-153,71],[-17,8],[-18,5],[-27,6],[-33,9],[-89,-129],[-34,1],[-32,46],[4,45],[-13,109],[-42,117],[-25,36],[-31,8],[-46,77],[-15,44],[1,39],[1,16],[11,38],[46,76],[9,8],[45,-11],[25,4],[34,25],[3,2],[22,41],[23,75],[3,56],[-4,56],[-1,17],[-7,37],[-1,6],[-24,128],[-13,75],[-17,30],[-21,35],[-50,87],[-14,2],[-17,-29],[-7,-14],[-6,-13],[-13,-14],[-17,17],[-8,38],[0,41],[12,62],[10,51],[0,5],[41,217],[11,58],[-5,43],[-19,20],[-13,1],[-13,38],[-25,7],[-29,-4],[-39,-11],[-44,-33],[-35,-18],[-34,-25],[-20,-19],[-2,-2],[-16,-9],[-13,-8],[-14,19],[-8,47],[-1,50],[4,46],[5,41],[10,64],[52,346],[16,35],[56,124],[29,64],[18,19],[14,20],[7,52],[-15,85],[-10,43],[-19,57],[-25,55],[-17,48],[-15,26],[-38,64],[-17,31],[-43,74],[-11,30],[-1,0],[-50,223],[-19,106],[-7,32],[-6,44],[0,42],[0,39],[8,37],[2,53],[9,52],[5,43],[5,35],[3,17],[1,40],[-1,3],[-10,41],[-13,27],[-8,41],[19,212],[9,28],[14,10],[12,-44],[0,-2],[9,-33],[15,7],[5,37],[9,65],[7,93],[0,8],[0,49],[-23,31],[-29,24],[-27,36],[-3,5],[-1,91],[-2,58],[-9,80],[-3,59],[-5,61],[0,58],[9,35],[49,19],[27,10],[49,-98],[17,8],[18,57],[9,60],[2,53],[-2,48],[-5,61],[-13,45],[-12,29],[-25,36],[-21,19],[-19,10],[-33,2],[-28,10],[-70,-44],[-14,-10],[-19,-13],[-13,-21],[-21,-19],[-14,0],[-31,30],[-66,12],[-17,3],[-14,-13],[-59,-165],[-41,-185],[-23,-76],[-20,-170],[5,-94],[3,-54],[51,-187],[17,-33],[41,-108],[14,-51],[9,-52],[4,-37],[-2,-46],[-31,-112],[-70,12],[-30,69],[-26,59],[0,12],[1,62],[3,68],[-8,41],[-15,33],[-13,18],[-13,21],[-24,190],[-44,187],[-12,57],[-6,56],[-10,55],[-9,41],[-7,32],[-14,56],[-3,1],[-8,4],[-12,4],[-9,7],[-6,5],[-23,25],[-41,74],[-3,2],[-44,-23],[-21,-11],[-13,-9],[-1,-1],[-1,-1],[-13,-15],[-1,-1],[-20,-46],[-13,-20],[-7,-7],[-7,0],[-7,7],[-29,38],[-3,6],[-7,20],[-2,7],[-20,61],[-5,18],[-1,14],[1,15],[2,6],[21,63],[29,63],[12,15],[48,34],[9,-4],[17,1],[16,15],[4,10],[2,6],[2,5],[2,24],[0,10],[0,7],[0,31],[-4,25],[-22,70],[-24,66],[-12,39],[-11,36],[-22,80],[-5,30],[0,8],[0,5],[0,21],[2,7],[4,11],[12,64],[10,46],[36,269],[0,2],[-1,17],[-6,77],[-2,11],[-4,12],[-8,9],[-17,3],[-29,-5],[-9,-14],[-12,-1],[-27,38],[-6,11],[-10,2],[-5,-4],[-5,-4],[-1,-3],[-3,-5],[-3,-5],[-1,-3],[-10,-24],[-5,-19],[-10,-48],[0,-1],[-1,-6],[-6,-50],[-2,-20],[0,-4],[0,-44],[4,-45],[5,-79],[0,-19],[-1,-10],[-12,-29],[-4,-23],[0,-25],[10,-37],[1,-5],[6,-9],[8,-17],[3,-5],[4,-17],[0,-7],[1,-8],[2,-22],[0,-24],[0,-14],[-4,-60],[-3,-17],[-6,-18],[-9,-19],[-28,-44],[-11,-15],[-45,-60],[-10,-10],[-18,-7],[-16,3],[-20,6],[-9,3],[-7,2],[-3,3],[-40,36],[-23,20],[-8,12],[-17,28],[0,1],[-52,105],[-9,18],[-11,27],[-9,37],[0,7],[0,11],[1,4],[13,46],[40,87],[12,6],[32,4],[15,12],[19,25],[19,36],[54,132],[4,17],[0,5],[1,31],[1,26],[-7,119],[-1,14],[0,7],[-2,16],[-2,5],[-2,8],[-3,8],[-2,3],[-28,51],[-29,53],[-4,5],[-6,11]],[[30366,21669],[4,-42],[-6,-124],[-17,-289],[-4,-72],[-8,-136],[-3,-53],[-18,-304],[0,-1],[-17,-283],[-9,-165],[-3,-39],[-15,-265],[-7,-121],[-3,-62],[-3,-38],[-12,-202],[-3,-58],[-20,-336],[-2,-54],[-4,-50],[-14,-205],[-15,-228],[-27,-405],[-17,-252],[-32,-486],[-5,-78],[-5,-73],[-22,-324],[-1,-6],[-8,-128],[-4,-56],[-9,-135],[-6,-89],[-19,-304],[-11,-174],[-4,-61],[0,-5],[-9,-129],[-3,-47],[-4,-67],[-7,-116],[-4,-56],[-3,-47],[-7,-104],[-23,-369],[-16,-253],[-10,-145],[-4,-63],[-8,-119],[-5,-84],[-6,-109],[-27,-447],[-4,-63],[-2,-43],[-4,-53],[-8,-138],[-4,-59],[-3,-60],[-5,-79],[-8,-130],[-2,-40],[-4,-75],[-5,-78],[-3,-51],[-7,-112],[-4,-67],[-53,-860],[-2,-40],[-3,-38],[-15,-251],[-23,-354],[-16,-260],[-15,-244],[-24,-381],[-9,-146],[-5,-81],[-6,-59],[-12,-225],[-5,-89],[-3,-57],[-3,-50],[-3,-34],[-3,-52],[-5,-104],[-10,-157],[-23,-370],[-8,-140],[-5,-85],[-43,-690],[-1,-18],[-1,-20],[-3,-42],[-12,-205],[-19,-300],[-13,-221],[-7,-113],[-15,-253],[-3,-58],[-57,-962],[-14,-229],[-8,-128]],[[29371,5447],[-53,-1],[-215,-6],[-763,-23],[-156,-5],[-130,-3],[-1334,-40],[-298,-11],[-1065,-42],[-273,-14],[-43,-3],[-143,-7],[-237,-12]],[[24661,5280],[9,151],[16,299],[14,258],[10,153],[2,49],[3,49],[8,160],[2,38],[4,75],[15,250],[9,174],[11,192],[5,80],[6,95],[11,180],[14,208],[6,96],[15,243],[11,163],[17,268],[3,42],[48,746],[2,39],[12,184],[0,70],[12,169],[2,31],[1,16],[0,22],[0,242],[0,446],[0,247],[0,41],[0,289],[0,144],[0,136],[0,92],[-1,350],[-1,243],[0,213],[0,142],[0,14],[1,101],[0,1],[7,485],[0,36],[0,7],[2,120],[9,635],[1,107],[2,95],[4,292],[-1,87],[1,51],[1,38],[4,82],[13,274],[19,394],[24,486],[15,317],[4,83],[5,84],[18,379],[1,13],[8,162],[2,56],[9,183],[2,46],[11,212],[21,388],[0,125],[-6,6],[-44,61],[-83,114],[-52,73],[-130,180],[-19,25],[-53,74],[-15,21],[-134,186],[-57,78],[-2,4],[-119,165],[-9,12],[-49,67],[-48,67],[-96,131],[-52,68]],[[38896,14551],[-43,9],[-135,-8],[-25,-1],[-81,-3],[-46,-38],[-108,-87],[-109,-87],[-17,-17],[-8,-8],[-13,-13],[-14,-42],[-37,-111],[-121,-379],[-12,-42],[-68,-214],[-25,-48],[-16,-31],[-19,-39],[-121,-257],[-24,-58],[-22,-144],[0,-1],[-109,-797],[-14,-91],[-39,-278],[-76,-251],[-78,-269],[-36,-175],[-70,-339],[-49,-244],[-51,-241],[-111,-523],[-7,-41],[-19,-128],[-13,-118],[-32,-237],[-53,-409],[-17,-124],[-4,-90],[-10,-304],[-11,-302],[-2,-51],[-17,-258],[-24,-427],[-2,-27],[-25,-386],[-2,-38],[-19,-365],[-3,-47],[-5,-58],[-2,-48],[-2,-44],[-30,-497]],[[36900,5725],[-1052,-58],[-144,-8],[-953,-52],[-29,-2],[-599,-33],[-99,-5],[-67,-4],[-968,-53]],[[32989,5510],[0,410],[4,901],[1,110],[4,806],[1,185],[0,225],[2,308],[0,49],[0,1],[0,88],[1,221],[1,169],[1,220],[0,2],[0,152],[1,108],[14,77],[52,318],[57,343],[-7,99],[-3,38],[-35,463],[-5,67],[-3,42],[-27,359],[-10,128],[-14,182],[0,2],[-1,52],[2,71],[9,1065],[2,71],[3,275],[1,173],[2,157],[3,354],[0,40],[1,39],[0,41],[0,3],[4,68],[2,47],[-4,166],[-1,53],[-1,156],[0,75],[0,1],[4,730],[2,282],[0,1],[0,70],[2,468],[1,124],[1,85],[2,281],[0,41],[0,220],[0,316],[0,73],[0,46],[1,90],[0,128],[3,219],[-1,61],[0,42],[2,445],[4,690],[0,4],[0,69],[1,118],[1,93],[1,202],[3,240],[0,56],[0,68],[3,192],[0,51],[2,155],[0,124],[1,46],[0,17],[1,51],[3,307],[1,156],[1,119],[2,183],[1,81],[0,38]],[[32989,5510],[-348,-14],[-365,-15],[-508,-6],[-86,-1],[-161,-2],[-406,-5],[-122,-1],[-1622,-19]],[[18570,13959],[31,-148],[22,-124],[18,-121],[14,-85],[8,-54],[4,-41],[4,-42],[4,-57],[8,-52],[77,-428],[8,-40],[33,-198],[19,-116],[19,-144],[32,-224],[27,-166],[17,-109],[23,-169],[13,-120],[4,-41],[6,-74],[3,-57],[4,-124],[2,-66],[4,-71],[3,-55],[2,-41],[3,-49],[2,-46],[6,-48],[4,-59],[7,-53],[11,-73],[6,-37],[35,-206],[7,-38],[4,-18],[6,-45],[4,-48],[8,-44],[8,-41],[21,-66],[17,-55],[9,-54],[5,-51],[0,-52],[-5,-40],[-6,-55],[2,-57],[22,-169],[5,-48],[8,-58],[15,-58]],[[19183,9424],[-30,-33],[-68,26],[-7,3],[-39,16],[-11,5],[-29,12],[-69,19],[-84,15],[-31,-3],[-27,-1],[-21,-1],[-27,7],[-15,8],[-29,-8],[-14,-1],[-12,1],[-86,4],[-44,3],[-98,6],[-101,13],[-32,2],[-24,2],[-36,-12],[-30,0],[-25,3],[-27,3],[-115,12],[-38,3],[-30,2],[-63,0],[-84,3],[-74,3],[-28,0],[-51,-1],[-48,0],[-19,0],[-21,-2],[-18,-1],[-17,0],[-32,0],[-105,-1],[-14,2],[-14,-2],[-21,2],[-14,2],[-104,-2],[-76,1],[-43,0],[-44,1],[-21,0],[-31,1],[-29,0],[-3,0],[-37,1],[-91,1],[-43,0],[-38,1],[-24,-2],[-14,0],[-13,1],[-14,1],[-35,2],[-4,0],[-62,-2],[-20,-1],[-55,-2],[-16,0],[-68,-2],[-32,0],[-36,2],[-17,0],[-68,-2],[-14,0],[-33,-1],[-40,1],[-90,7],[-23,1],[-84,6],[-53,-2],[-17,0],[-18,1],[-100,0],[-40,-4],[-33,2],[-71,0],[-18,-1],[-33,2],[-79,5],[-53,0],[-21,0],[-40,-1],[-21,-1],[-15,2],[-60,6],[-99,7],[-17,1],[-14,-3],[-4,-1],[-34,4],[-107,-11],[-59,-12],[-62,-10],[-73,10],[-48,9],[-35,6],[-82,11],[-44,-5],[-40,-1],[-50,-3],[-30,-2],[-2,0],[-15,-1],[-73,-7],[-171,6],[-39,-2],[-17,1]],[[14252,9554],[-1,263],[0,123],[2,448],[-1,75],[0,8],[-1,45],[0,40],[0,42],[0,41],[0,39],[0,39],[1,39],[0,41],[0,46],[0,38],[-1,55],[3,48],[-1,39],[0,41],[1,38],[-1,48],[4,155],[3,183],[0,8],[0,100],[1,153],[1,90],[0,77],[-2,145],[0,4],[1,123],[1,111],[1,279],[0,107],[1,95],[1,115],[0,52],[6,412],[1,94],[-1,306],[0,172],[0,198],[1,136],[-1,51],[0,97],[0,284],[0,172],[-1,106],[0,49],[-1,289],[0,262],[0,7],[0,64],[-1,140],[-1,40],[1,39],[2,235],[0,67],[1,267],[0,38],[0,96],[1,229]],[[78634,17302],[3,-37],[-11,-53],[-5,-49],[13,-30],[8,-33],[13,-23],[8,-34],[8,-48],[7,-41],[7,-43],[2,-59],[9,-42],[11,-41],[25,-11],[13,-4],[14,-42],[7,-49],[17,-30],[30,19],[13,34],[11,26],[18,8],[19,-19],[21,-11],[0,-46],[-7,-37],[9,-34],[-8,-49],[16,-27],[9,-34],[17,-30],[11,-38],[-13,-49],[-4,-56],[-15,-42],[-18,-11],[-15,23],[-14,-19],[-4,-53],[-20,-49],[-5,-45],[-12,-31],[-5,-45],[1,-45],[4,-53],[3,-38],[6,-45],[4,-45],[0,-53],[-6,-49],[-15,-49],[-17,-27],[-10,-34],[-13,-37],[-14,-8],[-13,-38],[-1,-60],[-3,-53],[-13,-38],[-16,-18],[-15,71],[-12,23],[-13,4],[-19,-12],[-12,-26],[-6,-38],[-16,-41],[-13,-27],[-25,-3],[-12,-31],[-4,-37],[-21,-34],[-13,-4],[-17,19],[-15,41],[-14,-4],[-3,-49],[-21,-30],[-14,-41],[-17,-38],[-13,23],[-20,-19],[-13,-8],[-17,4],[-15,4],[-21,26],[-14,-41],[-2,-57],[3,-45],[-13,-38],[-13,-55],[-10,-28],[-14,-49],[-9,-56],[-6,-53],[-7,-53],[-19,-23],[-21,-15],[-13,27],[-14,7],[-14,-11],[-17,22],[-13,19],[-12,27],[-5,37],[-6,34],[-14,8],[-17,-23],[-12,-26],[-15,-11],[-16,-8],[-8,-30],[-9,-34],[-9,-38],[-12,-26],[-11,-31],[-13,-15],[-10,-37],[-7,-38],[-15,-19],[-14,-4],[-1,-37],[8,-42],[10,-38],[12,-34],[-15,-30],[-11,-22],[-10,-50],[-3,-37],[-2,-42],[12,-37],[8,-34],[3,-46],[-8,-37],[-15,-23],[-14,-30],[-12,-19],[-17,-19],[-20,-11],[-13,-4],[-13,-19],[-16,-11],[-21,16],[-13,10],[-13,-7],[-23,11],[-21,4],[-14,-15],[-15,3],[-12,23],[-13,15],[-13,-4],[-13,-26],[1,-38],[10,-45],[-7,-42],[-12,-26],[-1,-49],[-7,-38],[-14,-11],[-20,15],[-13,0],[-15,-8],[-19,-26],[-21,-23],[-19,-19],[-18,-7],[-16,-8],[-16,0],[-13,0],[-18,12],[-13,-8],[-10,-45],[3,-42],[-10,-41],[-11,-27],[-8,-45],[-9,-34],[-16,-15],[-18,-19],[-12,-22],[-4,-53],[4,-45],[2,-50],[-13,-45],[-10,-41],[-9,-46],[-4,-45],[14,-37],[20,-23],[17,-19],[0,-42],[-13,-15],[-13,-3],[-13,-12],[-18,8],[-14,0],[-15,-4],[-13,-4],[-14,8],[-20,-4],[-14,-4],[-13,8],[-15,0],[-13,4],[-13,11],[-15,19],[-46,-4],[-14,-26],[-8,-31],[4,-37],[10,-38],[4,-38],[7,-41],[-1,-38],[-11,-34],[-4,-46],[-9,-29],[-5,-50],[-11,-26],[-16,-11],[-13,-12],[-6,-37],[-6,-42],[-10,-34],[-16,-15],[-13,-7],[-15,11],[-14,15],[-17,0],[-13,-4],[-12,-34],[-17,-41],[-13,-27],[-12,-30],[-9,-38],[-8,-37],[-15,-27],[-16,-26],[-18,-30],[-16,-8],[-15,-7],[-12,-46],[-11,-26],[-16,-11],[-6,-34],[-16,-8],[-9,-30],[1,-49],[-4,-45],[-6,-42],[-10,-56],[4,-46],[7,-38],[-7,-45],[-10,-41],[-12,-19],[-14,-19],[-11,-23],[-11,-30],[-5,53],[-6,49],[-14,30],[-32,31],[-17,-2],[-13,1],[-18,-16],[-4,-4],[-8,-9],[-26,17],[5,36],[22,52],[4,42],[1,44],[-18,8],[-2,0],[-13,-1],[-16,-14],[-11,-20],[-2,-4],[-22,-44],[-14,-7],[-23,-4],[-19,-19],[-21,-11],[-15,7],[-14,15],[-13,19],[-14,-26],[-16,-30],[-18,-34],[-14,-53],[-15,-23],[-23,-23],[-21,12],[-9,38],[-14,22],[-6,49],[-18,19],[-12,30],[-16,-15],[-19,-15],[-11,-23],[-16,-18],[-12,-23],[-7,-30],[-20,-49],[-16,-64],[-8,-49],[-6,-42],[-6,-45],[-8,-30],[-19,-23],[-17,-72],[-10,-30],[-10,-23],[-11,-56],[-11,-61],[13,-29],[8,-35],[-7,-45],[-3,-38],[8,-64],[4,-38],[-8,-60],[3,-64],[5,-83],[-10,-45],[-12,-34],[-11,-27],[-9,-41],[1,-42],[-2,-64],[-19,-34],[-31,-30],[-16,-45],[-21,-30],[-21,-19],[-12,-42],[-2,-38],[-12,-45],[-7,-34],[-4,-53],[7,-52],[12,-31],[5,-41],[-1,-38],[-3,-41],[0,-42],[4,-49],[-12,-26],[-13,-23],[-24,-38],[-17,-37],[-25,-16],[-28,-30],[-14,-19],[-24,-11],[-18,19],[-17,-19],[-15,-15],[-14,-11],[-16,3],[-14,12],[-14,15],[-5,-46],[-2,-49],[-6,-41],[-8,-60],[6,-49],[-15,-27],[-10,-60],[13,-57],[16,-23],[4,-37],[-20,-46],[-11,-41],[-8,-34],[-9,-41],[0,-50],[15,-18],[14,-27],[13,-41],[-15,-57],[-14,-45],[-9,-38],[-19,-18],[-5,-5],[-24,0],[-11,-45],[-6,-38],[-6,-41],[-8,-42],[-9,-64],[-10,-30],[-22,-19],[-22,-45],[-8,-38],[-22,-49],[-20,4],[-12,-19],[-14,-26],[-16,-8],[-21,-30],[-18,-11],[-15,-9],[-18,12],[-12,23],[-13,19],[-8,57],[-9,37],[2,42],[-18,37],[-15,38],[-18,19],[-13,4],[-12,41],[-25,-22],[-17,3],[-9,-60],[-7,-41],[-9,-38],[-18,-15],[-12,-49],[-4,-42],[-11,-38],[2,-41],[-7,-45],[9,-49],[11,-46],[12,-41],[-2,-42],[-12,-26],[-10,-34],[-12,-34],[-8,-41],[-14,-8],[-16,-15],[-12,-38],[-3,-38],[-2,-37],[-5,-38],[-11,-26],[3,-38],[9,-34],[14,-46],[1,-4]],[[74845,7173],[-2,3],[-18,25],[-85,126],[-77,104],[-127,189],[-12,17],[-15,22],[-82,110],[-48,65],[-58,82],[-51,71],[-30,44],[-30,43],[-95,137],[-17,28],[-93,125],[-37,56],[-68,95],[-71,99],[-47,65],[-6,346],[-4,237],[-6,137],[-7,144],[-19,73],[-19,72],[-16,61],[-57,203],[-1,3],[-17,14],[-34,24],[-47,33],[-13,-20],[-2,-3],[-8,-31],[-11,-36],[-18,-45],[-4,-5],[-9,-11],[-17,-6],[-35,9],[-4,6],[-14,22],[2,49],[-8,52],[-5,57],[-2,42],[-9,193],[16,2],[11,44],[46,149],[16,23],[18,19],[13,56],[16,15],[11,38],[-6,49],[-2,38],[13,30],[-8,34],[-16,30],[-14,8],[-9,38],[5,37],[4,46],[9,34],[17,26],[-10,26],[-16,27],[-15,7],[3,42],[8,45],[12,53],[11,26],[4,46],[-7,41],[-11,30],[-13,4],[-12,23],[-14,34],[-12,22],[-10,30],[-14,27],[-18,7],[-19,-7],[-13,-15],[-17,-15],[-16,0],[-14,15],[-17,0],[-17,-4],[-14,-30],[-13,-4],[-14,-11],[-17,15],[-10,29],[3,46],[7,42],[5,38],[-9,49],[-6,37],[0,36],[-2,62],[-4,42],[-12,26],[-12,23],[-10,42],[-12,37],[-15,46],[-21,41],[-15,15],[-16,-15],[-12,-19],[-13,-22],[-16,-27],[-27,-30],[-24,7],[-13,27],[-23,19],[-17,4],[-6,37],[-11,23],[-14,15],[-19,23],[-20,26],[-18,45],[-1,57],[-2,38],[-14,30],[-15,34],[-5,56],[-2,38],[-4,42],[-20,26],[-15,11],[-10,31],[-1,67],[-14,57],[-13,34],[-22,15],[-17,0],[-15,42],[-13,26],[-12,26],[-15,46],[-4,56],[6,42],[15,26],[18,30],[9,31],[6,49],[0,41],[-8,45],[1,38],[-9,57],[-17,22],[-17,12],[-12,26],[-15,34],[-15,26],[-15,8],[-17,7],[-12,34],[-9,38],[-11,38],[-13,11],[-18,-19],[-7,-37],[-5,-49],[-5,-38],[-16,-49],[-17,-15],[-15,19],[-9,30],[-8,41],[-11,23],[-18,7],[-21,-7],[-17,11],[-9,46],[-3,41],[0,42],[3,45],[5,60],[-1,53],[-3,38],[-2,45],[9,30],[14,19],[20,38],[12,49],[11,22],[5,46],[-13,19],[-14,3],[-14,0],[-17,8],[-13,19],[-8,45],[-5,38],[-8,45],[-8,34],[-1,38],[3,56],[7,38],[-5,38],[-3,41],[-1,42],[-4,38],[1,41],[-25,130],[2,37],[0,4],[10,108],[-56,140],[-106,267],[-33,84],[-3,8],[6,121],[0,1],[0,7],[0,6],[0,7],[0,5],[-3,60],[-4,107],[-4,99],[1,81],[4,272],[0,2],[0,1],[0,6],[-6,282],[0,1],[0,6],[0,3],[-1,12],[15,91],[1,7],[-17,74],[-2,5],[-16,51],[-8,78],[0,1],[-9,81],[-29,124],[-26,107],[-14,57],[-2,8],[2,4],[2,5],[1,5],[2,6],[1,5],[1,6],[1,6],[1,7],[0,6],[1,6],[0,7],[0,7],[1,6],[-1,7],[0,7],[0,6],[-1,7],[0,6],[-1,6],[-1,6],[-36,57],[-2,3]],[[88106,17999],[-2,-55],[11,-55],[-1,-22],[-2,-48],[-24,-17],[-9,-36],[11,-32],[4,-37],[6,-50],[23,-15],[10,-25],[5,-80],[12,-20],[2,-49],[-2,-40],[22,-23],[13,1],[8,-31],[16,-5],[8,-33],[19,-34],[9,-51],[20,-14],[15,19],[4,-42],[-28,-71],[-29,-83],[-2,-48],[-9,-82],[-8,-36],[-3,-44],[0,-42],[-7,-40],[11,-86],[10,-34],[4,-39],[0,-49],[4,-47],[20,-70],[1,-32],[4,-71],[6,-44],[-13,-39],[-16,-76],[-6,-17],[-37,-71],[-5,-42],[-13,-16],[-37,-131],[0,-47],[-8,-7],[-21,-12],[-3,-11],[-15,-53],[-4,-40],[-30,-42],[-8,-43],[-25,-45],[-19,-80],[5,-18],[7,-24],[16,-12],[13,-36],[12,-59],[17,-46],[13,-13],[14,-42],[13,-10],[12,-17],[3,-46],[-35,-70],[-77,-64],[-22,-57],[-5,-56],[4,-30],[-5,-108],[-12,-19],[-68,-23],[-39,-60],[-18,-68],[-27,-52],[-28,-8],[-15,-13],[-12,-33],[-16,-14],[-30,1],[-34,-34],[-48,-42],[-29,-21],[-11,-46],[7,-81],[-3,-41],[-45,-28],[-3,0],[-51,-10],[-53,-7],[-38,4],[-30,-37],[-18,-47],[-33,-47],[-19,10],[-30,-14],[-16,7],[-35,-42],[-19,-66],[-49,-15],[-28,-28],[-20,5],[-15,-17],[-37,12],[-13,-15],[-36,-19],[-4,-52],[-42,-30],[-55,-28],[-29,-30],[-19,-25],[-10,-28],[-44,-45],[-26,-47],[-22,-14],[-25,57],[-26,13],[-27,-1],[-15,10],[-37,-27],[-17,-1],[-14,-17],[-31,13],[-34,11],[-59,-46],[-61,-46],[-51,-112],[-22,-54],[-14,-95],[-15,-37],[-7,-34],[-21,-12],[-34,-4],[-29,-7],[-38,57],[-40,30],[-55,30],[-24,59],[-18,96],[-14,37],[-32,-5],[-58,-36],[-31,0],[-27,19],[-54,-19],[-27,-53],[-44,-45],[-64,7],[-30,19],[-66,45],[-13,-3],[-19,-38],[-34,-30],[-18,4],[-41,64],[-16,3],[-23,31],[-44,-148],[24,-215],[-19,-150],[-15,3],[-44,-15],[-29,-38],[-48,-34],[-27,-31],[-23,-68],[-21,-54],[-57,-50],[-37,-46],[-38,-75],[-14,-78],[5,-50],[42,-102],[-7,-100],[3,-209],[-1,-87],[-24,-61],[-21,-7],[-12,-30],[-4,-68],[5,-91],[-6,-75],[-27,-75],[-38,-23],[-30,-65],[-10,-41],[-36,-98],[-10,-53],[-40,-157],[-14,-60],[-19,-25],[-26,-61],[-34,-40],[-15,0],[-22,-22],[-33,-9],[-21,-15],[-9,-30],[21,-147],[33,-166],[-12,-83],[-13,0],[-12,-26],[-9,-38],[39,-53],[2,-49],[-29,-57],[2,-52],[-12,-21],[-7,-36],[53,-85],[23,-33],[5,-8],[-11,-66],[-16,-53],[-1,-105],[-4,-88],[14,-76],[-11,-36],[-15,-1],[-16,-19],[-19,8],[-34,-38],[4,-38],[14,-68],[-6,-49],[-21,-83],[-25,19],[-53,-26],[-37,-26],[-33,1],[-56,-5],[-22,49],[-10,-34],[-14,-4],[-26,7],[-10,-18],[-19,-24],[-35,-44],[-77,-27],[9,38],[-20,23],[-29,-22],[-35,3],[-22,-31],[-17,11],[-76,-7],[-60,0],[-56,-4],[-52,0],[-29,-45],[-22,-19],[-46,-31],[-34,-32],[-27,-20],[-18,-30],[-32,-19],[-45,-29],[-35,-8],[-29,-53],[-77,-68],[-19,11],[-38,-60],[-27,4],[-61,-65],[-38,-3],[-32,-42],[-51,-6],[-12,-20],[-22,-4],[-33,-51],[-30,-21],[-32,-26],[-12,-30],[-22,-15],[-34,15],[-25,-27],[-36,-15],[-44,-60],[-52,-42],[-14,3],[-25,-1],[-37,-24],[-26,-65],[-28,4],[-18,-5],[-36,-17],[-14,-42],[-5,-4],[-8,-7],[-29,-15],[-46,-4],[-29,15],[-28,-38],[-66,-30],[-13,-30],[-10,7],[-19,7],[-71,-44],[-21,-46],[-21,-22],[-56,-6],[-31,-58],[-68,-44],[-89,-73],[-37,-42],[-27,-2],[-35,-36],[-35,-11],[-37,-11],[-24,-12],[-19,-69],[-9,-31],[-29,-43],[-17,-7],[-20,-37],[-26,-50],[-27,-30],[-21,11],[-17,34],[-16,0],[-111,-170],[-21,-4],[-26,12],[-44,-66],[-38,-63],[-52,-22],[-50,-57],[4,-41],[-40,-72],[-17,-53],[-10,-14],[-20,-46],[8,-38],[-7,-38],[-86,-87],[-65,-60],[-72,-98],[-72,-61],[-49,-26],[-30,-30],[-41,-4],[-32,-7],[-29,-23],[-46,-7],[-56,15],[-47,18],[-53,-64],[-40,0],[-71,-22],[-15,22],[-18,12],[-14,-23],[-22,-11]],[[80327,6329],[1,64],[4,224],[7,355],[1,29],[4,230],[5,288],[1,25],[0,15],[-30,51],[-18,32],[-63,109],[-28,49],[-12,19],[-12,19],[-11,18],[-19,31],[-17,30],[-21,38],[-15,22],[-18,34],[-14,16],[-16,-4],[-15,-8],[-13,-15],[-17,19],[-13,23],[-15,37],[-9,38],[-5,45],[-8,46],[-7,49],[-1,45],[0,60],[-8,46],[-12,41],[-22,27],[-8,37],[2,38],[-11,30],[-12,30],[-2,57],[-11,49],[-13,19],[-13,4],[-11,34],[-5,37],[-15,40],[-11,59],[6,44],[-1,43],[-3,39],[4,52],[5,35],[14,5],[9,34],[1,46],[5,45],[0,49],[4,45],[3,49],[3,53],[7,38],[14,19],[9,30],[1,38],[12,22],[8,34],[4,42],[5,37],[8,34],[8,34],[2,42],[0,41],[7,38],[4,64],[2,30],[1,17],[4,53],[3,29],[1,12],[6,101],[5,59],[4,65],[25,359],[7,109],[-13,15],[-15,8],[-17,3],[-12,19],[-10,23],[-12,23],[-13,11],[-13,4],[-6,37],[0,46],[-2,38],[-13,33],[-11,31],[-12,37],[-8,31],[-8,41],[-21,94],[-14,67],[-20,88],[-12,22],[-14,23],[-26,38],[6,61],[-14,43],[-20,47],[-4,6],[-14,17],[-17,21],[11,46],[31,126],[13,51],[7,32],[1,0],[11,47],[1,2],[11,37],[9,44],[11,48],[4,13],[4,18],[12,47],[23,96],[15,56],[16,65],[10,40],[8,32],[71,284],[88,349],[8,30],[8,33],[8,32],[3,37],[-12,24],[-14,29],[-9,18],[-2,6],[-9,32],[-10,28],[-12,16],[-14,24],[-11,33],[-10,38],[-6,33],[1,43],[-9,36],[-8,38],[-4,40],[-9,34],[-8,34],[-9,34],[0,38],[2,40],[-2,41],[-1,43],[0,38],[0,43],[-2,39],[-4,37],[-7,36],[4,40],[-6,71],[-4,40],[-11,62],[-5,53],[1,48],[-2,65],[-1,40],[10,33],[15,45],[9,35],[6,39],[1,47],[-12,52],[-2,55],[12,40],[20,27],[32,50]],[[24661,5280],[-1003,-69],[-668,-47],[-422,-29],[48,1149],[-668,155],[-33,8],[-193,45],[-558,130],[-498,117],[-66,6],[-726,68],[-163,15]],[[19711,6828],[-4,89],[-10,174],[-8,126],[-15,108],[-14,93],[-12,80],[-13,81],[-23,162],[-7,47],[-31,166],[-20,80],[-9,40],[-8,40],[-20,91],[-22,83],[-13,44],[-109,328],[-55,166],[-25,82],[-9,36],[-8,31],[-20,92],[-7,33],[-12,60],[-18,85],[-14,73],[-22,106]],[[65634,13958],[-1,-59],[0,-36],[0,-26],[-13,-27],[-21,-15],[-30,-7],[-66,23],[-29,-6],[-3,0],[-1,-2],[0,-1],[-13,-19],[-4,-70],[8,-63],[40,-215],[13,-54],[23,-63],[19,-14],[18,-16],[28,-23],[37,-18],[57,-28],[4,-12],[7,-28],[4,-15],[-4,-39],[-13,-24],[-3,-6],[-19,-32],[-75,-97],[-1,-1],[-24,-17],[-116,-14],[-13,-9],[-4,-3],[-15,-10],[-3,-5],[-11,-20],[-4,-6],[0,-6],[1,-18],[1,-32],[29,-85],[34,-48],[10,-14],[10,-24],[20,-41],[7,-20],[49,-130],[9,-25],[9,-25],[21,-10],[23,-10],[1,0],[1,-3],[6,-17],[4,-14],[1,-32],[1,-55],[1,-31],[-2,-46],[-4,-63],[0,-1],[-20,-161],[-1,-4],[-2,-17],[-70,-129],[-16,-3],[-16,-3],[-1,-2],[-5,-10],[-1,-1],[-1,-10],[-1,-26],[1,-8],[2,-13],[13,-59],[3,-8],[9,-26],[8,-15],[2,-3],[3,-2],[25,-16],[6,-10],[7,-12],[4,-8],[0,-1],[-1,-11],[-1,-13],[-7,-13],[-19,-11],[-2,2],[-45,-58],[-9,-6],[-18,24],[-7,15],[-8,21],[-6,23],[1,16],[2,14],[4,12],[13,17],[15,13],[4,9],[0,3],[0,3],[0,13],[-3,8],[-2,3],[-26,34],[-2,2],[-5,7],[-19,22],[-5,1],[-7,-5],[-6,-8],[-12,-51],[-9,-25],[-5,-11],[-13,2],[-7,18],[-3,14],[-6,34],[-8,42],[-10,9],[-4,-2],[-1,-1],[-10,-13],[-12,-15],[-17,-22],[-1,-3],[-2,-7],[-1,-12],[1,-5],[4,-16],[6,-23],[22,-78],[13,-48],[12,-18],[30,-60],[4,-14],[0,-18],[-7,-17],[-12,-11],[-24,-1],[-31,8],[-30,22],[-12,13],[-15,24],[-11,6],[-6,-5],[-5,-10],[-9,-50],[0,-22],[1,-36],[7,-61],[0,-33],[-9,-20],[-11,-14],[-46,4],[-16,18],[-15,32],[-9,13],[-12,2],[-9,-9],[-9,-23],[-3,-33],[-6,-40],[-4,-15],[-7,-8],[-9,0],[-3,5],[-2,3],[-5,11],[-15,35],[-13,6],[-8,-5],[-15,-60],[-7,-25],[-26,-51],[-2,-1],[-2,-1],[-21,-54],[-12,-30],[-4,-17],[-3,-20],[0,-19],[0,-4],[5,-10],[4,-3],[6,1],[12,18],[18,46],[7,5],[0,1],[5,-4],[20,-41],[21,-49],[8,-41],[2,-23],[-1,-11],[-20,-135],[-10,-10],[-12,3],[-46,16],[-47,0],[-8,-13],[-3,-11],[0,-1],[0,-7],[1,-19],[5,-53],[1,-7],[1,-98],[0,-13],[-13,-184],[-2,-15],[-7,-6],[-11,4],[-19,17],[-5,4],[-36,32],[-7,-2],[-1,0],[-5,-10],[-2,-8],[0,-68],[1,-13],[-1,-13],[-4,-10],[-13,-4],[-9,0],[-36,-1],[-6,0],[-7,6],[-25,24],[-27,26],[-10,2],[-11,-5],[-16,-15],[-1,-1],[0,-1],[-9,-28],[-11,-55],[-12,-43],[-8,-11],[-12,-5],[-7,-8],[-11,-49],[-4,-5],[-11,-12],[-5,-7],[-19,10],[-23,-2],[-14,-7],[-6,-9],[-2,-8],[-2,-25],[3,-24],[13,-65],[2,-14],[-1,-45],[-4,11],[-41,98],[-1,3],[-2,4],[-2,3],[-2,3],[0,1],[-13,17],[-2,3],[-2,2],[-1,1],[-17,14],[-1,0],[-2,2],[-2,1],[-2,1],[-4,0],[-4,-1],[-13,-1],[-8,4],[-5,2],[-3,-2],[-12,-11],[-6,-12],[15,-70],[5,-20],[17,-81],[3,-13],[-7,-57],[-3,-13],[-19,-72],[-29,70],[-12,18],[-2,0],[-13,-12],[-1,-2],[-1,0],[-10,-7],[-7,-5],[-1,-1],[1,-2],[11,-30],[3,-9],[18,-125],[1,-8],[-8,-11],[-5,-34],[1,-38],[5,-79],[3,-25],[3,-22],[2,-9],[3,-19],[1,-4],[7,-21],[11,-27],[19,-18],[9,-13],[5,-14],[1,-8],[-1,-17],[-3,-14],[-48,-169],[-19,-71],[-135,-503],[-40,-149],[-47,-178],[-50,-187],[-12,-41],[-97,-362],[-14,-52],[-9,-35],[-101,-378],[-62,-235],[-12,-43],[-14,-52],[-59,-224],[-11,-40],[-8,-31],[-235,-881],[-12,-46],[-12,-43],[-55,-210],[-73,-275],[-13,-48],[-11,-44],[-62,-232],[-11,-44],[-76,-286],[-39,-181],[-5,1],[-1,0],[-14,-49],[-9,-32]],[[63006,4004],[-2,0],[-94,4],[-593,84],[-70,-28],[-20,2],[-77,8],[-17,4],[-46,47],[-424,61],[-754,170],[-489,111]],[[60420,4467],[-18,42],[-19,26],[9,51],[-5,48],[-13,30],[-15,8],[-25,-18],[-24,7],[-19,-10],[-23,-16],[-22,-20],[-16,-24],[-10,39],[-3,39],[-7,52],[-14,25],[-16,11],[-28,15],[-28,22],[-21,21],[-10,26],[-1,42],[2,38],[-1,37],[1,46],[5,41],[-10,30],[-26,25],[-19,38],[-4,55],[-2,56],[-2,79],[-4,40],[-7,43],[5,45],[-1,50],[11,32],[19,39],[11,24],[18,19],[11,18],[14,30],[9,30],[-3,45],[-9,30],[-8,46],[4,41],[8,53],[6,41],[-3,53],[-8,38],[-6,41],[5,57],[0,38],[1,49],[-3,69],[-10,37],[-31,36],[-14,-2],[-25,-4],[-7,33],[-3,44],[-18,27],[-19,-18],[-15,14],[3,40],[20,33],[23,26],[9,33],[19,43],[10,44],[10,56],[11,36],[-7,43],[-22,-2],[-9,43],[-13,39],[-19,13],[-2,53],[12,21],[9,34],[-2,41],[-13,36],[-29,30],[-16,17],[-1,47],[-12,33],[-3,53],[-14,18],[-16,1],[-16,-53],[-13,-26],[-8,38],[-13,14],[-14,-13],[-7,63],[-5,39],[-1,39],[-14,27],[-3,47],[5,58],[9,57],[-2,37],[-14,30],[15,27],[9,29],[-25,70],[-10,28],[32,78],[14,22],[-11,35],[0,41],[15,32],[8,39],[17,62],[23,14],[6,45],[-2,42],[-4,39],[-14,-8],[-23,21],[-13,12],[-23,43],[-7,34],[3,38],[5,37],[6,54],[4,47],[3,56],[11,43],[5,51],[1,45],[7,35],[16,95],[14,76],[14,86],[9,58],[21,136],[9,50],[6,38],[39,239],[6,36],[12,70],[7,42],[11,70],[-50,346],[-4,27],[-3,19],[-12,79],[-6,42],[-10,57],[-6,46],[-6,38],[-7,46],[-16,105],[-6,37],[-68,444],[-17,107],[-13,91],[-66,434],[-13,33],[-208,480],[-12,28],[-42,96],[-32,74],[-34,79],[-15,35],[-77,178],[-5,67],[-13,194],[-6,90],[-4,59],[-6,42],[-5,76],[-4,89],[-17,255],[-4,87]],[[74845,7173],[-11,-267],[-19,-27],[-17,-15],[-14,-19],[-16,-14],[-17,-38],[-14,-27],[-16,-11],[-16,-23],[-14,-15],[-18,-45],[-15,-15],[-15,-8],[-26,-7],[-15,-23],[-14,-30],[-17,-30],[-16,-19],[-18,-26],[-17,-4],[-11,-23],[-13,-26],[-12,-27],[-22,-34],[-21,-34],[-21,-30],[-15,-19],[-18,-34],[-23,-41],[-17,-23],[-14,-19],[-11,-26],[-13,23],[-19,-4],[-15,-12],[-17,0],[-17,0],[-16,-7],[-17,-30],[-9,-30],[-25,-19],[-15,-8],[-13,-11],[-13,-12],[-16,-26],[-17,-23],[-10,-30],[-15,-30],[-17,-26],[-16,-23],[-17,-15],[-20,-11],[-17,-8],[-42,-38],[-13,-15],[-20,-34],[-14,-7],[-20,-38],[-19,-26],[-10,-31],[-14,-37],[-15,-38],[-12,-23],[5,-35],[-8,-37],[-6,-35],[14,-31],[14,-28],[9,-32],[7,-38],[-8,-77],[18,-19],[26,-18],[11,-26],[-6,-74],[11,-48],[31,-41],[15,-8],[20,-14],[9,-39],[20,-7],[13,-14],[11,-21],[4,-18],[4,-18],[12,-41],[8,-34],[0,-40],[6,-22],[2,-8],[1,-2],[11,-26],[20,-40],[11,-22],[11,-27],[11,-27],[5,-36],[-8,-21],[-2,-6],[-6,-38],[0,-40],[12,-20],[13,-18],[8,-21],[2,-7],[8,-33],[6,-37],[6,-37],[10,-32],[10,-34],[3,-27],[1,-10],[8,-32],[6,-17],[4,-14],[9,-40],[5,-35],[2,-41],[0,-1],[8,-35],[-3,-49],[1,-38],[-11,-29],[-11,-22],[-13,-20],[-10,-28],[-4,-42],[-1,-62],[5,-39],[-8,-45],[-11,-26],[-5,-42],[-3,-40],[-3,-40],[-1,-48]],[[74148,3416],[-4,0],[-907,81],[-135,12],[-998,31],[-165,5],[-2,0],[-79,1],[-285,7],[-39,0],[-46,1],[-1234,27]],[[70254,3581],[-11,79],[-14,7],[-5,40],[3,39],[5,39],[7,39],[-7,42],[-3,39],[-13,9],[-7,43],[-11,24],[-7,36],[-14,14],[-12,32],[-14,8],[1,50],[-11,28],[-15,-14],[-10,31],[-1,40],[-13,57],[-3,42],[-12,25],[0,56],[-3,4],[-134,212],[-125,214],[-13,15],[-13,26],[-11,26],[-12,23],[-18,38],[-22,45],[-12,26],[-11,27],[-19,60],[-10,29],[-15,43],[-25,48],[-14,34],[-23,65],[-16,38],[-17,49],[-16,38],[-20,58],[-18,51],[-16,55],[-12,39],[-10,38],[-21,68],[-17,53],[-16,41],[-13,46],[-15,49],[-14,64],[-19,68],[-17,68],[-18,60],[-17,57],[-13,49],[-15,49],[-13,53],[-14,49],[-12,49],[-4,45],[-3,11],[-8,39],[-12,45],[-22,60],[-10,52],[-8,61],[-7,56],[-9,61],[-11,60],[-10,72],[-12,68],[-10,60],[-10,57],[-5,49],[-5,56],[-8,40],[-8,85],[-7,56],[-6,61],[-7,56],[-5,53],[-5,57],[-5,53],[-4,56],[-6,53],[-5,53],[-5,57],[-4,56],[-4,61],[-4,67],[-3,61],[-1,40],[-4,69],[-5,64],[-5,72],[0,72],[-3,68],[0,68],[-1,42],[-2,71],[-2,39],[0,66],[-2,53],[0,49],[0,53],[2,42],[1,45],[0,45],[-1,45],[-2,49],[-1,38],[-1,38],[1,38],[3,56],[0,338],[-9,15],[-7,2],[-60,-11],[-33,27],[-20,56],[-53,305],[0,7],[-6,76],[2,41],[-5,67],[-7,43],[-8,22],[-3,4],[-8,10],[-6,6],[-25,7],[-61,17],[-21,32],[-12,28],[-5,24],[-7,35],[-2,12],[-5,108],[5,81],[7,112],[5,81],[1,16],[-2,57],[-6,29],[-11,99],[0,4],[1,32],[2,36],[2,22],[14,52],[4,9],[19,46],[15,59],[7,53],[0,4],[4,29],[-4,57],[-13,39],[-15,15],[-13,-2],[-17,-3],[-16,-3],[-24,7],[-21,26],[-14,40],[-1,5],[-4,26],[3,86],[2,8],[0,13],[13,33],[16,27],[14,29],[10,33],[14,30],[17,49],[12,34],[18,48],[6,11],[6,16],[62,110],[18,23],[20,25],[13,4],[18,11],[3,4],[20,12],[8,6],[15,9],[15,11],[5,5],[17,11],[7,3],[13,11],[7,10],[70,86],[40,70],[12,35],[5,82],[-6,17],[-3,10],[-10,19],[-3,1],[-16,5],[-22,-7],[-19,-2],[-4,1],[-54,15],[-13,25],[-18,20],[-8,12],[-28,8],[-21,-10],[-33,-49],[0,-4],[-18,-30],[-5,-4],[-19,18],[-50,45],[-18,16],[0,7],[0,6],[1,3],[2,65],[0,4],[0,7],[1,6],[0,6],[1,7],[1,6],[1,6],[1,4],[8,35],[0,1],[2,6],[1,5],[2,5],[1,4],[1,3],[3,6],[1,2],[2,3],[2,4],[2,3],[2,3],[2,2],[1,1],[22,50],[19,15],[7,-2],[18,7],[15,0],[14,1],[14,10],[16,13],[13,12],[21,67],[8,39],[4,82],[7,34],[9,32],[2,3],[11,28],[17,27],[9,8],[13,12],[45,2],[62,24],[23,54],[3,96],[-22,42],[-28,23],[-30,39],[-28,54],[-21,72],[-13,59],[6,146],[19,66],[75,127],[34,97],[9,126],[2,19],[-1,26],[-4,45],[-5,49],[-21,51],[-1,0],[-4,2],[-15,30],[-40,82],[-17,55],[0,1],[-2,16],[-6,37],[1,29],[2,39],[7,38],[5,16],[19,40],[22,46],[26,70],[3,8],[4,106],[1,20],[6,39],[3,10],[6,18],[45,87],[14,9],[14,10],[15,15],[13,9],[29,37],[3,7],[8,19],[5,11],[1,21],[0,4],[-3,35],[-5,49],[-7,65],[-12,102],[-7,81],[-8,46],[-10,39],[0,1],[-12,17],[-6,7],[-7,9],[-3,6],[-36,94],[-3,67],[3,51],[17,66],[35,62],[38,35],[56,86],[13,22],[42,110],[10,53],[5,101],[-7,68],[-3,8]],[[70254,3581],[-454,-3],[-117,8],[-1818,120],[-400,24],[-57,4],[-203,12],[-561,34],[-63,-14],[-191,-38],[-4,0],[-287,12],[-822,76],[-1526,140],[-245,16],[-500,32]],[[80327,6329],[-81,-4],[-69,19],[-31,13],[-65,40],[-17,-23],[-24,4],[-30,34],[-49,25],[-32,31],[-28,64],[-30,-5],[-43,13],[-24,-29],[-28,-28],[-56,-11],[-53,11],[-44,-19],[-18,-27],[-76,-34],[-74,-33],[-33,8],[-26,-35],[-15,-59],[-11,-61],[-16,-45],[-92,-162],[-81,-85],[-21,-14],[-34,2],[-26,-9],[-32,-30],[-80,-65],[-11,-30],[-14,-41],[-29,-63],[-68,-107],[-16,-4],[-55,-113],[-86,-14],[-20,29],[-9,53],[-23,-38],[-3,-38],[-64,-86],[-63,-51],[-60,-40],[-44,34],[-39,-35],[-38,-78],[-19,0],[-21,-30],[-18,-70],[-38,-123],[-33,-56],[-29,-33],[-35,-54],[-26,-27],[-16,-11],[-30,-23],[-29,-15],[-15,-3],[-26,41],[-7,0],[-22,15],[-20,8],[-26,-30],[-30,15],[-13,-19],[-4,-38],[-15,8],[-13,-12],[1,-75],[-3,-17],[-2,-46],[-7,-54],[-11,-30],[-28,-34],[-18,-79],[-19,-29],[-23,-2],[-19,-56],[-16,-45],[-32,-57],[-24,-76],[-16,-15],[-16,-26],[-31,15],[-21,-36],[-37,-13],[-16,-42],[-5,-15],[-7,-93],[-9,-77],[-7,-33],[-1,-5],[-21,-63],[-22,-76],[-28,-30],[-20,-53],[-23,-56],[-4,-38],[-19,-56],[-15,-46],[-13,-87],[-22,-56],[-320,4],[-75,1],[-1766,95],[-523,43],[-41,3],[-92,7],[-342,28]],[[9949,16956],[3,-402],[-1,-120],[-1,-46],[-1,-160],[-1,-121],[-1,-108],[1,-183],[-1,-450],[0,-131],[0,-8],[0,-40],[1,-228],[1,-289],[-1,-100],[-5,-246],[1,-62],[0,-197],[1,-209],[1,-329],[0,-434],[0,-35],[0,-41],[0,-40],[-1,-42],[1,-42],[0,-40],[1,-42],[-1,-41],[0,-88],[1,-77],[-2,-90],[0,-38],[-1,-61],[1,-99],[1,-119],[0,-90],[0,-22],[0,-98],[2,-301],[0,-33],[0,-57],[-1,-39],[-1,-312],[0,-39],[0,-44],[0,-41],[0,-49],[-1,-41],[0,-40],[-1,-43],[1,-241],[2,-218],[0,-83]],[[9947,10407],[-26,5],[-177,-4],[-94,-3],[-46,0],[-75,-1],[-104,-2],[-21,0],[-15,-1],[-52,0],[-17,0],[-36,-2],[-51,0],[-2,0],[-33,0],[-66,-1],[-57,-2],[-29,0],[-115,-3],[-94,-3],[-21,0],[-20,-1],[-77,-2],[-110,-3],[-47,-1],[-22,0],[-10,-1],[-125,-3],[-73,-2],[-27,-2],[-41,-2],[-15,-1],[-23,-1],[-22,0],[-37,-1],[-105,-2],[-150,-4],[-1,0],[-41,-2],[-84,-3],[-55,0],[-30,-1],[-16,0],[-19,0],[-63,-1],[-78,-1],[-37,-1],[-26,-3],[-63,3],[-13,1],[-30,2],[-33,2],[-3,0],[-135,8],[-73,3],[-38,2],[-114,7],[-20,1],[-95,5],[-48,3],[-121,6],[-38,4],[-29,17],[3,25],[6,43],[5,41],[5,40],[5,39],[6,42],[6,41],[5,38],[3,28],[1,10],[23,174],[-28,19],[-7,4],[-171,120],[-32,23],[-111,78],[-20,12],[-3,2],[-61,44],[-126,88],[4,-53],[-7,0],[-17,-22],[-12,-18],[-22,-29],[-11,-25],[-63,-66],[-45,-57],[-12,-27],[-15,-36],[-43,-132],[-3,-7]],[[5872,10855],[-67,99],[-19,7],[-72,27],[-292,92],[-105,106],[-148,454],[-28,412],[4,689],[57,177],[148,201],[77,105],[151,-4],[94,-3],[2,0],[78,387],[14,69],[89,633],[13,54],[12,50],[33,138],[30,170],[11,101],[14,183],[22,255],[13,143],[58,627],[37,290],[63,506]],[[14252,9554],[-2,-92],[0,-48],[0,-105],[-1,-218],[-4,-363],[-1,-86],[-1,-148],[0,-100],[-1,-60],[0,-62],[0,-51],[-1,-50],[2,-108],[0,-108],[-1,-99],[0,-59],[-1,-42],[0,-71],[0,-66],[-1,-40],[0,-39],[0,-39],[0,-44],[0,-38],[0,-41],[0,-41],[0,-40],[-1,-40],[0,-41],[0,-41],[0,-41],[0,-39],[0,-66],[-2,-234],[-1,-40],[0,-39],[0,-49],[0,-38],[0,-45],[-1,-41],[0,-41],[0,-41],[0,-39],[0,-39],[-1,-38],[0,-40],[0,-41],[0,-122],[0,-38],[0,-23],[0,-2],[-1,-43],[0,-39],[0,-47],[0,-60],[0,-69],[-1,-39],[0,-107],[-1,-45],[0,-44],[-1,-110],[0,-80],[-1,-109],[0,-66],[0,-47],[0,-42],[0,-51],[0,-59],[-1,-43],[0,-45],[0,-79],[-1,-56],[-1,-39],[0,-67],[-1,-94],[0,-267],[0,-10],[0,-29],[0,-40],[-1,-39],[0,-101],[-1,-96],[-1,-275],[-2,-219],[0,-52],[0,-2],[0,-56],[-1,-51],[0,-41],[0,-45],[0,-85],[0,-55],[0,-124],[-1,-120],[0,-169],[0,-63],[-1,-420],[0,-112],[0,-109],[0,-53],[-1,-51],[1,-166],[-1,-135],[-2,-210],[-1,-279],[-1,-95],[0,-42],[-1,-60],[0,-60],[-1,-77],[0,-76],[-2,-220],[-3,-162],[1,-38],[0,-4],[0,-40],[0,-41],[0,-57]],[[14206,152],[-60,3],[-308,17],[-2137,25],[-215,3],[-75,-67],[-184,69],[-1329,10]],[[9898,212],[0,110],[-1,442],[-1,143],[0,176],[-1,360],[0,71],[2,81],[0,101],[-1,200],[-2,262],[1,112],[0,103],[0,8],[0,56],[0,69],[0,50],[0,74],[0,222],[0,86],[3,115],[0,53],[0,41],[0,45],[-1,50],[0,48],[1,64],[0,55],[1,45],[0,3],[1,43],[0,194],[0,125],[0,138],[0,90],[0,1],[-1,221],[0,141],[-2,101],[1,109],[-2,207],[-1,186],[0,74],[1,39],[0,93],[0,40],[2,575],[0,107],[0,13],[0,88],[-1,39],[0,40],[2,185],[0,2],[3,393],[1,79],[0,48],[2,107],[-1,62],[0,7],[0,44],[-1,114],[0,60],[-2,120],[-1,48],[1,38],[-3,91],[0,11],[-3,209],[-1,70],[-1,70],[0,38],[-1,39],[-1,41],[-1,40],[-1,43],[0,43],[-1,39],[-1,41],[-1,41],[-1,41],[-1,38],[0,39],[-1,40],[-1,43],[0,41],[-3,166],[-4,208],[-3,222],[-4,259],[-2,122],[0,76],[-2,121],[-6,66],[6,44],[2,48],[3,67],[5,50],[5,49],[6,70],[9,155],[41,154],[12,44]],[[57254,13486],[-16,-164],[-59,-606],[-7,-74],[-49,-502],[-9,-90],[-8,-77],[-31,-327],[-30,-316],[-19,-196],[-21,-220],[-12,-123],[-51,-497],[0,-1],[-23,-229],[-22,-223],[-23,-238],[-19,-186],[-13,-97],[-22,-167],[-17,-132],[-12,-85],[-52,-353],[-16,-107],[-34,-250],[-30,-217],[-25,-175],[-13,-91],[-17,-115],[-60,-424],[-22,-132],[-52,-381],[-19,-132],[-8,-56],[-23,-154],[-36,-247],[-12,-81],[-19,-126],[-28,-181],[-20,-134],[-7,-43],[-36,-229],[-2,-14],[-8,-56],[-6,-41],[-4,-26],[-23,-151],[-25,-161]],[[56194,4859],[-7,0],[-46,-8],[-224,-34],[-29,-4],[-82,-13],[-62,-10],[-264,-40],[-29,-4],[-225,-35],[-12,-2],[-549,-84],[-320,-49]],[[54345,4576],[-11,38],[-57,212],[-15,49],[-9,33],[-35,118],[-72,245],[-67,227],[-13,47],[-23,76],[-4,16],[-4,15],[-293,1005],[-64,218],[-97,331],[-24,84],[5,41],[10,29],[52,218],[2,7],[70,346],[10,38],[55,206],[18,68],[10,82],[2,11],[13,84],[10,38],[33,95],[9,26],[43,142],[9,89],[-2,21],[-1,13],[-3,34],[-6,16],[-2,6],[-4,11],[-20,31],[-26,22],[-44,21],[-40,10],[-54,-2],[-79,-24],[-38,-26],[-2,-1],[-27,-4],[-7,1],[-26,0],[-14,-24],[-13,16],[-13,22],[-18,23],[-16,7],[-13,27],[-15,17],[-15,14],[-19,-8],[-15,-22],[-16,-41],[3,-43],[0,-46],[-10,-37],[-21,-9],[-10,26],[-14,-12],[-16,9],[-13,-12],[-13,38],[7,37],[-15,32],[-10,28],[-17,-5],[-10,43],[-14,15],[8,47],[-11,26],[4,44],[10,42],[4,59],[-1,52],[-31,-12],[-3,42],[-13,7],[-14,9],[-9,33],[9,41],[11,22],[-11,25],[-11,41],[-6,36],[5,37],[-13,25],[-13,23],[-11,36],[-7,66],[-9,34],[-17,9],[-16,23],[-14,-6],[-8,41],[-16,0],[-18,14],[-9,37],[-6,60],[28,24],[-15,39],[1,40],[-20,8],[-11,33],[4,45],[4,49],[3,54],[-9,29],[7,33],[17,41],[-2,39],[-21,30],[-12,30],[-12,30],[-15,-5],[-14,-28],[-16,-7],[-17,5],[-24,-12],[-13,4],[-13,20],[-15,5],[-15,-21],[-5,-41],[-15,-3],[-18,-17],[-14,-7],[-4,41],[-14,18],[-16,-16],[-7,-13],[-6,-9],[-17,-9],[-11,28],[-20,-23],[-17,6],[-10,-30],[-9,-38],[-22,9],[-13,5],[-15,-10],[-5,45],[-14,-11],[-12,18],[-11,31],[11,21],[0,38],[-23,20],[8,36],[-14,10],[5,41],[-11,28],[-13,-4],[-14,7],[-14,-2],[-13,23],[-21,-16],[-12,-18],[-15,2],[-14,-31],[-35,12],[-14,12],[-16,251],[-24,378],[-4,61],[-30,465],[-22,333],[-3,37]],[[47242,8503],[-2,-68],[-5,-180],[-1,-6],[14,-70],[22,-119],[61,-327],[7,-39],[18,-107],[20,-92],[17,-91],[14,-77],[0,-5],[3,-16],[4,-18],[51,-372],[6,-44],[25,-181],[27,-166],[16,-63],[16,-59],[7,-39],[21,-67],[13,-58],[9,-41],[-7,-37],[-2,-39],[-2,-56],[-2,-39],[-2,-46],[-1,-46],[2,-40],[-1,-42],[-6,-54],[-14,-10],[-16,7],[-15,-4],[-15,-16],[-17,-38],[-7,-35],[-13,-26],[-13,-32],[-12,-33],[-14,-40],[-10,-36],[-23,-81],[-18,-67],[-9,-38],[-11,-48],[-6,-34],[-9,-46],[-8,-37],[-10,-41],[-14,-49],[-22,-73],[-11,-62]],[[47297,4960],[-32,3],[-1570,219],[-261,36],[-1099,154],[-86,12],[-526,80],[-263,41],[-465,71],[-90,76],[-436,47],[-942,102]],[[41527,5801],[-3,42],[-6,39],[-6,33],[-2,54],[1,39],[0,42],[-1,44],[-6,34],[-7,41],[1,28],[8,17],[3,12],[-1,8],[0,12],[0,9],[-2,15],[-6,15],[-6,13],[-3,6],[-7,13],[-4,7],[-9,12],[-2,0],[-5,16],[-3,26],[2,13],[10,22],[12,18],[3,5],[2,7],[4,11],[22,103],[-1,23],[-1,14],[-2,20],[-2,6],[-11,27],[-29,72],[-3,8],[-10,10],[-7,5],[-22,16],[0,2],[-1,10],[-2,52],[4,23],[11,21],[23,46],[1,3],[4,15],[3,10],[2,9],[-1,18],[-1,2],[-13,47],[2,11],[5,35],[2,11],[8,57],[1,8],[0,2],[13,190],[0,3],[1,7],[-1,13],[0,3],[-5,45],[3,8],[33,80],[6,15],[-12,30],[-26,115],[-1,12],[0,32],[2,22],[3,15],[4,23],[13,23],[3,7],[21,60],[3,8],[4,14],[6,40],[6,42],[2,8],[4,30],[0,46],[-2,30],[-6,26],[-12,32],[-1,0],[0,1],[-3,4],[-9,14],[-10,8],[-7,6],[-21,24],[-3,8],[-2,15],[8,13],[14,23],[9,16],[20,29],[3,2],[9,8],[1,3],[1,5],[0,7],[10,91],[4,29],[0,11],[-1,4],[-7,15],[-25,23],[-24,0],[-6,6],[-3,9],[0,20],[1,7],[0,3],[0,3],[2,4],[10,29],[3,9],[20,46],[0,1],[7,16],[19,49],[0,1],[-26,34],[-12,16],[-11,30],[-4,17],[-1,45],[2,22],[25,99],[0,25],[-13,40],[-15,33],[-9,29],[-2,17],[3,12],[5,12],[35,35],[2,2],[8,6],[8,5],[2,3],[3,3],[2,10],[1,8],[0,79],[-5,45],[-4,78],[-3,51],[0,16],[0,20],[3,56],[1,20],[5,91],[6,113],[1,26],[2,42],[13,264],[20,390],[3,53]],[[60420,4467],[-739,155],[-734,68],[-890,84],[-184,15],[-20,1],[-20,2],[-192,15],[-40,4],[-17,1],[-246,20],[-58,5],[-19,1],[-38,2],[-51,3],[-89,5],[-57,3],[-78,4],[-115,6],[-238,13],[-131,7],[-4,-1],[-266,-21]],[[41527,5801],[-1,1],[-1249,60],[-15,-13],[-471,-444],[4,131],[-36,15],[-52,20],[-14,-258],[-161,-151],[-8,15],[-102,200],[-244,477],[-1167,-66],[-265,-15],[-846,-48]],[[54345,4576],[-508,-52],[-170,-77],[-38,4],[-145,18],[-85,10],[-115,-19],[-95,2],[-359,25],[-336,24],[-12,0],[-81,6],[-42,3],[-22,2],[-76,5],[-86,6],[-37,2],[-465,33],[-364,25],[-137,10],[-207,14],[-1230,86],[-17,2],[-19,0],[-478,10],[-1242,158],[-682,87]],[[9898,212],[-130,8],[-106,-9]],[[9662,211],[-19,66],[-10,0],[-87,294],[-36,111],[-65,205],[-14,39],[-1,6],[-38,116],[-7,20],[-24,75],[-2,5],[-13,40],[-38,120],[-14,42],[-47,143],[-10,32],[-59,187],[-1,3],[-19,57],[-10,33],[-2,6],[-14,48],[-66,201],[-92,280],[-52,163],[-19,62],[-21,62],[-42,132],[-80,253],[-32,-1],[-15,-5],[-21,-10],[-15,-5],[-29,-8],[-113,4],[-9,-1],[-7,-1],[-29,34],[-25,27],[-17,15],[-14,19],[-11,47],[-28,57],[-11,29],[-17,30],[-9,19],[-18,38],[-6,15],[-5,12],[-11,25],[-10,29],[-9,33],[-7,34],[-1,6],[-10,42],[-8,36],[0,2],[-19,27],[-16,0],[-58,1],[-1,0],[-98,8],[-31,-5],[-60,2],[-46,2],[-87,3],[-95,3],[-17,0],[-119,-4],[-13,7],[-50,-5],[-18,0],[-33,1],[-24,3],[-20,-1],[-35,0],[-15,1],[-14,0],[-17,1],[-245,5],[-5,57],[-1,14],[-2,4],[-5,20],[-2,7],[0,1],[-3,2],[-3,-1],[-3,-1],[-1,-5],[-2,-14],[-1,-15],[-6,-6],[-4,3],[-2,5],[-9,39],[-1,11],[0,11],[0,1],[-3,1],[-14,6],[0,1],[-1,-1],[-16,-8],[-10,2],[-1,0],[-1,1],[-48,33],[-25,18],[-52,49],[-16,15],[-3,3],[-27,91],[0,1],[-11,42],[-2,0],[-106,146],[-56,75],[-56,76],[-93,125],[-103,140],[-73,99],[-17,23],[-57,77],[-60,80],[-19,26],[-49,69],[-17,24],[-47,61],[-227,302],[-4,6],[-34,47],[-54,73],[-47,63],[-71,95],[-118,158],[-38,5],[-109,15],[-51,6],[-13,2],[-7,1],[-142,18],[-3,9],[-29,80]],[[5162,5871],[21,45],[102,163],[40,107],[53,145],[-6,86],[-4,5],[-62,74],[-8,10],[-32,89],[15,488],[-28,179],[-166,364],[-229,682],[-14,406],[47,450],[27,80],[162,473],[196,192],[284,-142],[134,-143],[100,-19],[1,0],[65,68],[74,325],[17,266],[10,155],[-49,243],[-40,193]],[[19711,6828],[21,-566],[41,-367],[115,-485],[19,-182],[6,-261],[62,-435],[70,-541],[46,-640],[26,-497],[49,-387],[45,-825],[-22,-361],[-41,-275],[-29,-506],[-187,-478],[-9,-22],[-31,1],[-6,0],[-47,1],[-334,9],[-244,7],[-953,25],[-49,1],[-33,1],[-1657,44],[-219,6],[-36,1],[-678,18],[-1424,38],[-6,0]],[[1144,188],[-29,-160],[-63,1],[-526,9],[-125,2],[-5,0],[-232,948],[-89,363],[-26,227],[-40,353],[-9,391],[150,559],[157,244],[244,44],[121,-62],[186,-96],[51,-42],[156,-128],[77,-64],[56,-186],[18,-59],[48,-164],[47,-316],[27,-177],[2,-42],[29,-436],[-54,-561],[-101,-462],[-62,-166],[-8,-20]],[[9662,211],[-493,3],[-51,0],[-25,1],[-14,0],[-128,1],[-52,0],[-88,0],[-1429,10],[-30,1],[-318,11],[-312,11],[-309,10],[-498,17],[-498,18],[-1772,78],[-99,-20],[-153,-30],[-87,-18],[-349,-70],[-19,-5],[-5,-1],[-139,-36],[-46,-12],[-259,-66],[-385,-33],[-81,-7],[-34,-3],[19,244],[37,100],[19,55],[8,115],[1,25],[9,116],[15,175],[5,63],[29,345],[11,111],[5,48],[69,582],[9,43],[174,789],[13,59],[70,851],[76,568],[60,316],[94,193],[134,151],[203,105],[132,-41],[97,-142],[178,-508],[66,-394],[37,-300],[7,-60],[80,-168],[62,-152],[271,-666],[9,-22],[100,-124],[13,-4],[56,-17],[44,4],[156,105],[76,70],[244,450],[8,14],[37,157],[16,67],[45,211],[27,469],[4,39],[17,159],[19,530],[141,469],[171,600]]],"transform":{"scale":[0.00007604803193031843,0.000026503298412985413],"translate":[-89.56948826399986,36.497147153000014]}} diff --git a/src/js/config/mapconfig/mapfiles/county/la-counties.json b/src/js/config/mapconfig/mapfiles/county/la-counties.json new file mode 100644 index 00000000..c3497fd2 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/la-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-94.04334529999994,28.929092954000055,-88.82051983299993,33.019447088000106],"geometries":[{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22051","arcs":[[[0]],[[1]]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22017","arcs":[[2,3,4,5]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22015","arcs":[[6,7,8,-6,9]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22119","arcs":[[10,-7,11,12]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22027","arcs":[[13,14,-13,15,16]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22111","arcs":[[17,18,-17,19,20]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22067","arcs":[[21,22,23,-21,24]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22123","arcs":[[25,26,-22,27]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22035","arcs":[[28,29,-26,30]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22061","arcs":[[31,32,33,-14,-19]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22073","arcs":[[34,35,36,-32,-18,-24]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22083","arcs":[[-30,37,38,39,-35,-23,-27]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22013","arcs":[[-34,40,41,42,43,-8,-11,-15]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22065","arcs":[[[44,45]],[[46,47,-38,-29,48]]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22049","arcs":[[-37,49,50,-41,-33]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22041","arcs":[[-48,51,52,53,54,55,-39]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22031","arcs":[[56,57,58,59,-4]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22021","arcs":[[-40,-56,60,61,62,-50,-36]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22107","arcs":[[63,-45,64,65,66,-52,-47]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22081","arcs":[[-9,-44,67,-57,-3]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22127","arcs":[[-51,-63,68,69,70,-42]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22069","arcs":[[-71,71,72,73,74,-58,-68,-43]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22025","arcs":[[53,-53,-67,75,76,77,-61,-55]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22059","arcs":[[-78,78,79,80,-69,-62]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22085","arcs":[[-75,81,82,-59]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22043","arcs":[[-81,83,-72,-70]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22029","arcs":[[-66,84,85,86,87,88,-76]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22079","arcs":[[-80,89,90,91,92,-73,-84]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22115","arcs":[[-93,93,94,95,-82,-74]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22009","arcs":[[-77,-89,96,97,98,99,-90,-79]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22125","arcs":[[[100,101,-86,102,103]],[[104,-97,-88]]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22077","arcs":[[-87,-102,105,106,107,108,-98,-105]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22117","arcs":[[109,110,111]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22039","arcs":[[-100,112,113,114,115,116,117,-91]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22105","arcs":[[-111,118,119,120,121,122,123]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22091","arcs":[[-123,124,125,126,127]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22037","arcs":[[-127,128,129,-104,130]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22003","arcs":[[-118,116,-116,131,132,-94,-92]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22011","arcs":[[-133,133,134,135,-95]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22097","arcs":[[-109,136,137,138,-113,-99]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22033","arcs":[[139,140,141,142,-129,-126]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22103","arcs":[[143,144,145,-119,-110]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22121","arcs":[[146,-106,-101,-130,-143]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22063","arcs":[[-122,147,148,-140,-125]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22099","arcs":[[[149,150,151]],[[152,153,-137,-108,154]]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22047","arcs":[[-147,-142,155,156,157,-155,-107]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22019","arcs":[[158,159,160,-135]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22053","arcs":[[-115,161,162,163,164,165,-159,-134,-132]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22001","arcs":[[-139,166,167,168,-169,168,169,-164,162,-162,-114]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22055","arcs":[[-154,170,171,-167,-138]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22005","arcs":[[-149,172,173,174,-156,-141]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22095","arcs":[[175,176,177,-173,-148,-121]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22089","arcs":[[178,-176,179]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22051","arcs":[[[180]],[[181,182]],[[183]],[[184,185]],[[186]],[[187,188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207,208,209,210,-180,-120,-146]]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22071","arcs":[[211,212,213,-208,-145]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22087","arcs":[[[214]],[[215,216,217,218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308,309,310,311,312,313,314,-213,315]],[[316]],[[317]],[[318,319]],[[320]],[[321]],[[322]]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22093","arcs":[[323,324,-174,-178]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22113","arcs":[[-172,325,326,327,-165,-170,-169,168,-169,-168]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22045","arcs":[[[328]],[[-158,329,-151,330,331,-326,-171,-153]]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22007","arcs":[[-325,332,333,334,-152,-330,-157,-175]]},{"type":"Polygon","properties":{"name":"LA"},"id":"22023","arcs":[[-166,-328,335,-160]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22101","arcs":[[[336]],[[337]],[[-335,338,339,-331,-150]]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22057","arcs":[[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350,351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362,363,364,-182,365,366,367,368,369,370,371,-333,-324,-177,-179,-211,372]]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22075","arcs":[[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[-217,447]],[[448]],[[449,-218]],[[450]],[[451,-313]],[[452]],[[453,454,455,456,-209,-214,-315,457]]]},{"type":"MultiPolygon","properties":{"name":"LA"},"id":"22109","arcs":[[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483,-351]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494,-368]],[[495]],[[496]],[[497]],[[498]],[[499,-370]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507,508,509,510,511,-339,-334,-372,512]]]}]},"states":{"type":"GeometryCollection","bbox":[-94.04334529999994,28.929092954000055,-88.82051983299993,33.019447088000106],"geometries":[{"type":"MultiPolygon","properties":{"name":"Louisiana"},"id":"22","arcs":[[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[340]],[[464]],[[341]],[[342]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[343]],[[471]],[[472]],[[473]],[[344]],[[474]],[[475]],[[476]],[[345]],[[477]],[[346]],[[347]],[[478]],[[373]],[[479]],[[480]],[[348]],[[481]],[[349]],[[180]],[[482]],[[483,351]],[[484]],[[485]],[[486]],[[487]],[[352]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[495]],[[496]],[[497]],[[353]],[[183]],[[498]],[[184,185]],[[186]],[[354]],[[187,188]],[[189]],[[190]],[[500]],[[501]],[[355]],[[502]],[[356]],[[191]],[[192]],[[503]],[[357]],[[374]],[[358]],[[359]],[[375]],[[376]],[[504]],[[193]],[[505]],[[377]],[[360]],[[194]],[[378]],[[195]],[[379]],[[380]],[[381]],[[506]],[[382]],[[383]],[[196]],[[384]],[[385]],[[386]],[[197]],[[387]],[[388]],[[389]],[[198]],[[199]],[[200]],[[390]],[[391]],[[392]],[[393]],[[201]],[[394]],[[361]],[[395]],[[202]],[[203]],[[396]],[[204]],[[397]],[[205]],[[398]],[[336]],[[399]],[[400]],[[401]],[[206]],[[402]],[[403]],[[404]],[[337]],[[0]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[328]],[[448]],[[450]],[[1]],[[214]],[[215,447,449,218]],[[219]],[[452]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[316]],[[317]],[[318,319]],[[320]],[[321]],[[322]],[[308,309,310,311,451,313,457,453,454,455,456,209,372,362,363,364,182,365,366,494,368,499,370,512,507,508,509,510,511,339,331,326,335,160,135,95,82,59,4,9,11,15,19,24,27,30,48,63,45,64,84,102,130,127,123,111,143,211,315]]]}]}},"arcs":[[[75953,14246],[79,-246],[114,-55],[-3,-3],[95,59],[0,58],[43,11],[30,-52],[83,-28],[54,-120],[49,-45],[132,-124],[59,-69],[114,31],[56,45],[146,-45],[81,-65],[22,-76],[-3,-103],[-46,-55],[-229,10],[-230,31],[-5,62],[49,69],[-162,134],[-49,110],[-111,-34],[-16,-100],[76,-138],[86,-51],[35,-38],[-32,-69],[-78,17],[-19,79],[-65,38],[-30,35],[-27,93],[-54,82],[-94,17],[-49,-24],[-32,35],[-46,55],[-105,27],[-121,-3],[-57,-72],[38,-80],[46,-20],[53,-93],[41,-104],[132,4],[157,193],[45,-28],[0,-65],[38,-59],[-35,-24],[-30,45],[-102,-45],[-51,-110],[-73,31],[-24,10],[-71,11],[-27,-7],[-129,-114],[0,-59],[-19,0],[-78,-51],[-49,17],[8,152],[3,213],[-62,48],[-5,124],[-76,49],[-146,27],[-62,-34],[-56,38],[27,99],[70,104],[3,89],[83,-7],[22,-48],[110,104],[22,-35],[59,0],[70,45],[44,-86],[148,7],[30,106],[56,94],[50,-24]],[[74750,16325],[-36,-216],[-67,5],[28,241],[-106,343],[-8,345],[11,158],[13,178],[51,341],[157,101],[122,-75],[-4,-347],[-35,-184],[-85,-71],[-49,-41],[-32,-286],[181,-176],[0,-141],[-141,-175]],[[10954,80875],[-280,-1],[-24,1],[-24,0],[-63,0],[-19,0],[-51,0],[-17,0],[-54,5],[-14,1],[-8,1],[-514,2],[-100,1],[-29,0],[-169,1],[-35,0],[-266,2],[-76,0],[-19,0],[-222,1],[-21,0],[-20,-1],[-31,-1],[-35,0],[-167,-1],[-489,-3]],[[8207,80883],[-25,116],[-6,36],[1,11],[3,10],[2,19],[-3,85],[-19,63],[-18,46],[-6,21],[5,58],[0,1],[28,105],[3,5],[15,17],[4,11],[1,1],[26,67],[-3,108],[-6,18],[-21,46],[-11,25],[-5,12],[-31,45],[-43,62],[-5,5],[-41,47],[-5,9],[-10,35],[0,1],[1,20],[-2,11],[-29,26],[-11,7],[-8,6],[-8,4],[-32,15],[-27,1],[-12,4],[-11,8],[-11,17],[-4,2],[-45,31],[-70,48],[-2,7],[-12,56],[-8,28],[-4,10],[-42,87],[-98,158],[-8,10],[-9,7],[-172,129],[-10,5],[-25,5],[-10,1],[-26,14],[-10,11],[-7,14],[-54,79],[-61,58],[-20,19],[-13,5],[-32,-2],[-34,-3],[-7,-1],[-23,-5],[-14,-12],[-15,-12],[-97,4],[-101,4],[-28,-21],[-5,-4],[-13,-11],[-23,1],[-70,82],[-22,6],[-69,2],[-79,-84],[-138,-5],[-15,0],[-31,1],[-97,8],[-54,5],[-42,44],[-2,127],[0,23],[-36,66],[-34,38],[-40,1],[-86,-41],[-21,-21],[-24,-19],[-11,-9],[-15,-5],[-19,11],[-10,6],[-22,7],[-14,4],[-65,19],[-22,25],[0,31],[15,10],[18,1],[7,9],[-15,41],[-19,30],[-10,16],[-43,69],[-56,60],[-59,21],[-3,0],[-6,22],[-2,6],[-8,27],[-1,2],[-20,11],[-27,13],[-28,14],[-30,4],[-15,1],[-75,9],[-20,1],[-40,2],[-82,4],[-12,-4],[-4,-5],[-4,-23],[-2,-12],[-2,-20],[-3,-10],[-7,-8],[-6,-2],[-1,0],[-55,-14],[-33,22],[-32,26],[-48,11],[-12,1],[-26,-6],[-14,-5],[-50,-40],[-53,-42],[-62,-56],[-28,-1],[-2,0],[-13,-9],[-55,-39],[-33,-31],[-12,-12],[-110,-106],[-8,-11],[-11,-15],[-32,-129],[-2,-7],[-12,-47],[-5,-34],[16,-71],[11,-39],[-32,-84],[-6,-15],[-21,-17],[-17,-13],[-40,-16],[-43,-11],[-37,-10],[-9,-5],[-1,-1],[-1,-1],[-24,-27],[-13,-10],[-17,-12],[-5,-4],[-4,-9],[-21,-50],[-7,-8],[-20,-9],[-72,-14],[-51,-9],[-8,-8],[-51,-48],[-17,-15],[-26,-24],[-15,-14],[-9,-9],[-5,-2],[-49,-20],[-13,-6],[-3,-1],[5,-4],[3,-2],[0,-5],[-19,-47],[-23,-13],[-15,-8],[-36,-4],[-20,4],[-16,-9],[-20,-12],[-16,-10],[-13,-16],[-1,-1],[-12,-15],[-15,-28],[-89,-172],[-4,-23],[2,-38],[7,-46],[-2,-61],[-2,-7],[0,-1],[-17,-57],[-16,-135],[19,-90],[0,-13],[-22,-105],[-1,-3],[-17,-9],[-20,-24],[-2,-5],[-3,-47],[-1,-13],[-14,-8],[-24,-20],[-29,-24],[-7,-7],[-5,-17],[-4,-3],[-59,-39],[-6,-3],[-19,-10],[-19,-4],[-8,-2],[-33,-13],[-5,-2],[-44,-34],[-1,-1],[-13,-15],[0,-11],[1,-3],[6,0],[2,-3],[3,-8],[1,-2],[14,-40],[3,-15],[-3,-5],[-114,-88],[-119,-167],[-54,5],[-16,1],[-39,3],[-99,-118],[-18,-2],[-42,-10],[-6,-4],[-13,-7],[-43,-24],[-5,-3],[-53,-37],[-13,-41],[-1,0],[-64,-28],[-35,-23],[-22,-16],[-14,-9],[-35,-24],[-18,-13],[-30,-21],[-70,-68],[-26,-25],[-4,-2],[-40,-28],[-23,2],[-15,2],[-51,-44],[-32,-28],[-49,-41],[-55,-46],[-99,-88],[-99,-87],[-57,-51],[-153,4],[-172,-3],[-420,0],[-196,5],[-88,1],[-290,2],[-204,1],[-230,2]],[[14,79868],[0,232],[-1,309],[0,70],[0,99],[-3,614],[0,26],[3,288],[-1,160],[0,2],[-1,190],[0,21],[0,16],[0,20],[0,37],[0,91],[1,101],[0,36],[0,34],[0,30],[-2,57],[0,29],[0,39],[0,30],[0,48],[0,73],[0,41],[0,21],[0,38],[0,27],[0,28],[0,30],[0,10],[0,47],[-1,133],[0,12],[0,33],[0,35],[0,27],[0,68],[0,17],[0,131],[-1,32],[0,13],[0,68],[0,15],[0,56],[0,28],[1,26],[0,30],[0,34],[0,64],[0,9],[0,24],[0,22],[1,29],[-1,59],[0,9],[1,29],[-1,25],[0,14],[0,16],[0,23],[0,13],[-1,18],[0,31],[0,27],[0,25],[0,9],[0,34],[1,53],[0,29],[0,25],[1,12],[-1,15],[0,10],[-1,32],[-2,28],[5,44],[-2,234],[0,76],[0,81],[0,27],[-1,187],[0,19],[0,149],[-1,284],[0,21],[0,49],[0,53],[0,49],[0,48],[0,20],[0,56],[0,122],[2,107],[-1,53],[1,84],[0,69],[0,82],[0,9],[0,108],[-1,113],[0,1],[1,29],[0,45],[0,152],[0,1],[0,23],[0,35],[-1,19],[-2,106],[-1,28],[2,30],[2,25],[-2,25],[-1,44],[0,28],[0,26],[1,24],[0,70],[0,35],[1,22],[0,9],[0,29],[0,65],[-1,39],[0,35],[0,10],[-1,26],[-1,59],[2,37],[0,9],[-1,18],[0,14],[0,10],[-1,15],[0,18],[0,10],[-1,19],[0,23],[2,27],[1,25],[-2,36],[-3,43],[0,4],[0,14],[1,28],[-3,102],[0,1],[1,86],[0,133],[1,128],[2,81],[0,62],[-1,32],[0,9],[0,73],[0,28],[2,28],[1,20],[1,28],[0,20],[-1,48],[-2,97],[2,44],[0,7],[0,34],[0,33],[0,39],[0,28],[1,8],[-1,32],[2,77],[1,44],[0,27],[1,25],[0,10],[0,20],[0,55],[-1,71],[1,95],[0,110],[0,56],[0,50],[0,71],[0,56],[-1,89],[0,59],[-3,133],[0,4],[-1,17],[-1,14],[0,21],[0,21],[0,24],[1,22],[0,22],[1,40],[0,19],[2,29],[-2,63],[0,32],[0,31],[0,25],[1,25],[-1,32],[0,35],[0,13],[0,27],[0,21],[-1,55],[0,27],[0,21],[-1,34],[1,29],[-1,26],[-2,27],[2,23],[0,14],[1,28],[-1,32],[1,30],[0,26],[0,34],[0,25],[1,25],[0,31],[0,27],[0,21],[0,19],[0,14],[2,113],[0,60],[0,35],[-1,105],[0,37],[0,39],[0,36],[0,7],[-1,124],[0,123],[0,69],[-1,68],[0,23],[-1,88],[0,154],[1,222],[0,143],[0,30],[1,43],[-1,151],[0,25],[0,8],[0,245],[0,22],[0,34],[0,60],[0,22],[0,20],[0,15],[0,15],[-1,210],[-1,23],[0,53],[0,3],[0,13],[0,16],[0,13],[0,7],[0,30],[0,67],[0,23],[3,138],[2,25],[-5,56],[1,23],[1,21],[2,22],[0,10],[0,18],[0,11],[-1,15],[-3,42],[5,80],[0,14],[-1,102],[1,15],[1,29],[0,7],[0,7],[-1,49],[-2,21],[-1,8],[0,21],[1,12],[1,14],[-1,12],[-1,13],[-1,16],[-1,73],[0,13],[2,135],[1,63],[1,46],[-2,101],[0,180],[0,16],[0,165],[0,24],[0,59],[0,8],[0,21],[0,196],[1,89],[0,131],[-2,34],[3,71],[0,217],[1,70],[-1,29],[-2,19],[0,12],[0,21],[2,35],[-1,45],[0,43],[0,38],[0,9],[-1,25],[-1,26],[0,7],[1,31],[0,15],[0,42],[0,20],[0,9],[1,74],[0,45],[0,112],[0,24],[0,11],[0,16],[-1,55],[0,74],[0,16],[1,62],[0,11],[0,49],[0,26],[0,39],[0,70],[0,16],[-1,549],[0,127],[0,23],[1,40],[-1,29],[0,43],[0,37],[1,37],[0,15],[-1,28],[0,46],[2,43],[0,50],[0,41],[-2,182],[0,63],[0,9],[0,155],[1,448],[0,28],[0,214],[1,151],[0,34],[0,268],[0,8],[413,1],[158,0],[41,0],[1,0],[22,0],[50,0],[2218,4],[466,1],[42,0],[951,-2]],[[4369,99997],[-11,-44],[-29,-42],[-16,-17],[-23,-24],[-48,-11],[-32,-11],[-19,-12],[-24,-20],[-20,-37],[-10,-39],[35,-129],[22,-32],[-1,-5],[-2,-24],[-6,-23],[1,-32],[5,-37],[7,-27],[6,-25],[16,-34],[14,-32],[13,-39],[17,-38],[15,-58],[0,-1],[17,-31],[19,-46],[16,-77],[5,-31],[-2,-71],[-13,-54],[-51,-107],[-46,-61],[4,-5],[23,-1],[32,2],[54,13],[57,25],[32,22],[15,16],[43,37],[22,16],[23,16],[19,11],[29,8],[24,-4],[49,-73],[7,-60],[-6,-39],[-9,-27],[-29,-42],[-32,-31],[-29,-17],[-36,-12],[-30,-2],[-42,11],[-52,39],[-18,16],[-40,21],[-31,9],[-20,5],[-30,1],[-25,4],[-26,10],[-42,-69],[-56,-68],[-27,-45],[-20,-33],[-20,-33],[-35,-12],[-20,-5],[-40,-10],[-24,-6],[-28,-7],[-29,-11],[-19,-11],[-21,-14],[-21,-35],[-7,-24],[5,-29],[20,-29],[26,-32],[29,-17],[25,3],[40,4],[38,1],[111,0],[27,0],[22,0],[22,0],[89,-94],[60,-44],[34,-16],[46,-14],[69,-11],[23,-9],[25,-29],[16,-77],[-9,-113],[-12,-43],[-4,-46],[-1,-40],[5,-30],[-18,-31],[-24,-60],[-22,-77],[-5,-12],[-59,-133],[-36,-67],[-21,-21],[-43,-42],[-15,-27],[-10,-33],[-2,-92],[15,-151],[2,-21],[12,-121],[7,-64],[17,-46],[10,-29],[88,-155],[21,-10],[20,3],[20,1],[27,3],[34,-2],[25,-12],[22,-10],[38,-29],[23,-19],[21,-26],[10,-35],[2,-26],[-1,-25],[-5,-28],[-6,-37],[-3,-13],[-5,-21],[-7,-24],[-8,-24],[-18,-24],[-30,-26],[-22,-13],[-23,-18],[-24,-19],[-34,-23],[-24,-15],[-19,-14],[-22,-13],[-17,-21],[-18,-26],[5,-24],[21,-16],[29,-23],[42,-21],[4,-1],[23,-10],[30,-8],[31,-16],[67,-18],[2,-1],[30,-4],[23,11],[14,16],[5,6],[25,70],[14,43],[21,56],[3,8],[22,55],[12,32],[14,17],[14,17],[29,29],[25,8],[22,-7],[16,-18],[13,-21],[10,-33],[5,-30],[-4,-24],[0,-36],[-2,-25],[-1,-15],[7,-28],[5,-172],[-6,-122],[-9,-46],[-8,-77],[-9,-35],[-16,-56],[-36,-183],[-15,-58],[-34,-91],[-57,-128],[-69,-115],[-8,-10],[-18,-12],[-35,-18],[-29,-12],[-20,-11],[-28,-8],[-24,-11],[-6,-2],[-24,-10],[-50,-20],[-40,-16],[-48,-22],[-24,-11],[-38,-26],[-17,-14],[-25,-26],[-18,-26],[-17,-31],[-15,-50],[-10,-40],[0,-47],[5,-38],[3,-34],[8,-35],[10,-27],[11,-25],[31,-31],[40,-13],[34,3],[26,15],[17,13],[19,28],[14,24],[21,46],[10,25],[25,34],[13,20],[22,32],[18,23],[33,45],[15,19],[6,8],[22,28],[35,36],[21,13],[22,10],[32,6],[36,-3],[25,-3],[24,-10],[38,-24],[24,-22],[19,-23],[23,-35],[11,-32],[8,-41],[7,-27],[17,-33],[11,-21],[8,-17],[9,-27],[6,-18],[4,-11],[-1,-10],[-3,-78],[-39,-247],[-10,-52],[-31,-98],[-67,-155],[-82,-87],[-138,-110],[-167,-137],[-100,-86],[-79,-75],[-80,-124],[-24,-48],[-16,-52],[-16,-67],[-1,-37],[8,-62],[13,-40],[25,-56],[55,-124],[45,-53],[41,-27],[40,26],[20,31],[12,31],[15,42],[14,48],[35,50],[63,72],[44,40],[56,34],[40,13],[24,3],[27,2],[4,0],[28,-1],[63,-12],[60,-25],[50,-17],[27,-28],[41,-53],[20,-74],[3,-53],[2,-35],[1,-35],[1,-11],[0,-22],[0,-82],[-10,-79],[-16,-61],[-1,-5],[-21,-84],[-43,-247],[-13,-80],[-14,-125],[-10,-202],[31,-85],[22,-8],[47,13],[47,35],[32,51],[62,35],[25,0],[9,-27],[-17,-48],[-19,-61],[-3,-33],[16,-67],[37,-44],[7,-8],[27,-22],[15,-22],[4,-29],[2,-8],[23,-40],[31,-37],[28,-33],[14,-45],[-32,-45],[-16,-17],[-17,-18],[-19,-5],[-23,-7],[-58,-3],[-43,12],[-37,10],[-26,-4],[-24,-17],[-6,-13],[-10,-21],[-19,-29],[-30,-24],[-12,-14],[-6,-8],[5,-59],[28,-38],[39,-34],[5,-2],[33,-17],[36,-16],[19,-10],[46,-15],[71,-2],[41,18],[17,14],[8,7],[20,33],[27,38],[26,9],[27,-7],[31,-33],[80,-88],[64,-121],[62,-69],[18,-56],[8,-46],[-3,-135],[-9,-27],[-31,-41],[-25,-26],[-80,-93],[-12,-18],[-48,-100],[-4,-12],[26,-29],[46,-12],[41,-9],[28,0],[38,-2],[24,0],[30,-1],[27,-4],[33,-10],[30,-15],[29,-35],[20,-25],[5,-34],[-10,-31],[-15,-19],[-20,-12],[-35,-13],[-22,-2],[-27,7],[-42,33],[-80,70],[-76,-39],[-23,-10],[-20,-7],[-16,-7],[-31,-7],[-31,-6],[-51,-8],[-21,-5],[-40,-13],[-26,-30],[-4,-26],[15,-36],[22,-19],[27,-12],[28,-12],[19,-7],[25,-13],[38,-19],[36,-11],[36,-9],[42,-1],[25,9],[19,15],[26,26],[23,18],[15,11],[178,-1],[32,-12],[5,-1],[33,-38],[25,-59],[5,-34],[-5,-86],[-25,-76],[-15,-39],[-45,-88],[-38,-48],[-77,-78],[-64,-48],[-46,-23],[-44,-11],[-3,-1],[-2,-20],[-2,-43],[6,-78],[4,-35],[5,-27],[19,-6],[6,-2],[5,1],[32,11],[23,17],[18,13],[29,18],[23,12],[24,13],[24,-20],[14,-26],[13,-20],[4,-8],[11,-24],[14,-32],[0,-26],[7,-28],[7,-19],[4,-12],[9,-25],[13,-34],[42,-73],[25,-67],[48,-93],[29,-42],[24,-30],[10,-30],[-29,-32],[-5,-5],[-17,-9],[-26,-5],[-72,7],[-21,12],[-20,37],[-13,50],[-4,53],[-8,88],[-14,40],[-17,24],[-19,16],[-18,9],[-77,10],[-47,-46],[-16,-31],[-30,-39],[-4,-35],[-27,-30],[-25,-38],[-26,-7],[-50,28],[-22,15],[-24,20],[-19,15],[-17,20],[-18,8],[-29,4],[-20,2],[-8,-25],[1,-50],[40,-51],[19,-18],[20,-16],[30,-23],[44,-42],[19,-21],[16,-25],[39,-13],[23,-11],[22,-23],[28,-4],[17,41],[10,26],[26,30],[32,11],[28,-13],[18,-15],[16,-21],[1,-2],[9,-25],[-8,-229],[-2,-29],[50,-64],[29,-44],[37,-57],[2,-3],[11,-17],[51,-46],[35,-26],[69,-18],[30,11],[36,-4],[19,6],[9,2],[1,0],[46,-1],[45,-16],[60,-33],[98,-82],[68,-60],[14,-16],[0,-6],[0,-6],[8,-9],[6,-7],[7,-6],[2,-2],[20,-20],[-32,-35],[-44,-26],[-22,-12],[-42,0],[-31,-20],[-21,-12],[-61,-42],[-13,-74],[18,-23],[26,-12],[40,2],[20,10],[19,17],[33,34],[47,47],[16,15],[23,21],[64,35],[17,16],[3,3],[15,15],[15,15],[26,12],[23,-10],[9,-28],[3,-35],[1,-14],[3,-35],[1,-35],[0,-4],[0,-40],[-1,-26],[-6,-26],[-14,-60],[-33,-38],[-23,-25],[-14,-15],[12,-35],[11,-40],[10,-21],[62,-61],[22,-6],[56,-37],[34,-67],[0,-27],[17,-19],[-5,-40],[-17,-32],[11,-63],[35,5],[20,14],[21,16],[24,18],[34,6],[20,-10],[3,-42],[26,-31],[-31,-47],[-14,-22],[-12,-18],[-15,-23],[-32,-50],[-13,-20],[-34,-52],[-44,-30],[-12,-64],[20,-34],[18,-31],[24,-39],[32,-34],[32,-19],[22,-7],[16,-1],[21,-1],[65,-7],[55,-15],[27,-14],[19,-28],[13,-31],[17,-47],[28,-52],[44,-33],[74,-38],[34,-44],[18,-46],[-5,-28],[-38,-50],[-7,-5],[-15,-13],[-37,-26],[-78,-34],[-49,-8],[-24,15],[-15,26],[-7,30],[3,40],[5,47],[6,89],[-17,31],[-22,7],[-21,7],[-18,12],[-47,-45],[-19,-35],[-12,-44],[-10,-43],[-18,-20],[-39,-18],[-78,-24],[-20,-29],[11,-21],[30,-34],[15,-19],[17,-12],[30,-22],[31,-16],[27,-6],[105,-4],[41,-14],[34,-9],[17,0],[25,1],[24,0],[25,6],[28,10],[34,6],[19,-9],[47,0],[24,-4],[18,-9],[7,-30],[-46,-25],[-25,-1],[-25,0],[-53,-3],[-52,-5],[-46,-8],[-45,-1],[-81,-24],[-55,-32],[-54,-52],[-22,-36],[0,-2],[-2,-5],[-8,-28],[-9,-46],[-8,-90],[0,-5],[10,-59],[30,-62],[19,-31],[39,-47],[18,-11],[56,-31],[22,-13],[35,-13],[128,-31],[60,-8],[16,2],[64,7],[12,25],[1,27],[-7,36],[-17,32],[-27,39],[-37,37],[-30,43],[-14,43],[-3,52],[2,29],[1,26],[19,31],[20,12],[34,8],[26,4],[35,-3],[37,-4],[39,-7],[33,-8],[39,-13],[42,-20],[26,-13],[31,-21],[38,-38],[30,-33],[22,-33],[33,-31],[20,-19],[46,-4],[2,0],[33,1],[8,-26],[-16,-25],[-24,-23],[-26,-9],[-36,-9],[-30,-4],[-17,-15],[-19,-11],[-26,-27],[-17,-17],[-31,-36],[-10,-28],[-6,-62],[-12,-42],[5,-32],[5,-26],[-14,-19],[-5,-27],[20,-11],[34,6],[34,28],[33,40],[23,36],[25,45],[48,86],[18,27],[19,48],[19,41],[19,19],[21,8],[14,45],[2,54],[26,6],[66,-2],[66,-75],[-19,-37],[-20,-25],[-24,-33],[-21,-32],[-15,-43],[-12,-40],[-4,-40],[0,-67],[0,-33],[1,-27],[0,-28],[0,-1],[-28,-67],[-1,-49],[49,-82],[14,-24],[34,-115],[7,-14],[12,-24],[17,-22],[25,-7],[19,-3],[24,7],[30,13],[29,21],[27,27],[20,25],[14,26],[14,33],[13,37],[12,40],[6,34],[7,26],[8,24],[17,35],[16,27],[17,20],[26,23],[21,15],[23,12],[19,2],[29,-14],[11,-27],[-1,-46],[-9,-26],[-34,-46],[-26,-41],[-18,-25],[-22,-32],[-17,-38],[-12,-48],[-10,-36],[-11,-24],[-18,-26],[-17,-30],[-12,-34],[9,-46],[-5,-37],[-24,-30],[-20,-4],[-36,8],[-30,12],[-18,0],[-6,-1],[-18,-13],[-7,-26],[7,-38],[17,-38],[29,-27],[16,-14],[19,-9],[22,-8],[26,-5],[34,4],[34,6],[35,7],[21,7],[32,4],[34,-6],[31,-10],[45,-9],[25,0],[37,-4],[79,1],[53,8],[29,6],[22,0],[45,-13],[23,-11],[27,-27],[13,-28],[11,-36],[2,-35],[-2,-28],[-10,-28],[-19,-24],[-19,-13],[-22,-13],[-7,-29],[15,-34],[30,-2],[24,10],[21,11],[38,26],[28,24],[17,14],[22,29],[19,15],[29,3],[17,-17],[-4,-30],[-17,-27],[-35,-31],[-31,-21],[-29,-21],[-24,-14],[-21,-19],[-23,-27],[-14,-20],[-10,-27],[5,-31],[17,-25],[19,-13],[34,-11],[39,4],[42,16],[23,15],[19,8],[26,10],[36,14],[20,3],[42,9],[26,12],[17,9],[1,1],[23,29],[7,25],[3,33],[0,37],[-6,32],[-4,29],[-1,30],[2,30],[9,35],[21,26],[33,31],[23,9],[29,0],[20,-15],[14,-36],[0,-45],[-1,-27],[-6,-35],[-17,-38],[-5,-36],[15,-40],[2,-25],[4,-28],[9,-27],[16,-22],[26,-26],[28,-19],[37,-14],[26,-4],[31,1],[27,-6],[22,-21],[-6,-43],[-13,-24],[-20,-26],[-24,-21],[-27,-11],[-23,0],[-35,17],[-75,68],[-29,26],[-32,13],[-25,2],[-11,-3],[-10,-2],[-26,-15],[-21,-17],[-12,-23],[-4,-26],[5,-29],[13,-27],[15,-18],[20,-10],[37,1],[30,10],[28,8],[9,0],[29,3],[31,-3],[31,-12],[22,-17],[24,-36],[19,-34],[11,-32],[7,-26],[6,-35],[5,-39],[2,-25],[-2,-35],[7,-34],[15,-20],[28,0],[19,16],[20,32],[7,23],[5,32],[-1,32],[-4,40],[2,48],[8,31],[28,28],[20,7],[22,-9],[18,-9],[20,-5],[23,-12],[25,-28],[19,-11],[39,-16],[24,-22],[25,-38],[8,-32],[-7,-36],[-18,-36],[-28,-32],[-18,-15],[-37,-17],[-34,-1],[-24,-5],[-24,-8],[-19,-16],[-14,-33],[-5,-28],[8,-49],[6,-14],[15,-39],[3,-27],[-11,-27],[-34,-16],[-51,-9],[-40,-3],[-31,5],[-24,0],[-26,9],[-34,21],[-26,13],[-27,3],[-14,-27],[15,-36],[14,-16],[58,-39],[60,-18],[115,-17],[31,-3],[22,3],[33,13],[41,38],[16,26],[12,25],[13,18],[13,18],[16,15],[28,10],[24,2],[27,22],[74,16],[32,7],[36,4],[27,-4],[36,-20],[15,-17],[7,-24],[-2,-29],[-19,-36],[-6,-24],[0,-30],[8,-29],[-1,-30],[-9,-31],[-10,-28],[-13,-22],[-6,-12],[-11,-19],[-11,-20],[-25,-30],[-22,-29],[-23,-35],[-13,-22],[-12,-26],[-15,-36],[-16,-53],[8,-28],[24,-23],[21,-5],[19,2],[40,17],[22,22],[71,75],[27,25],[26,19],[18,16],[12,13],[10,9],[18,18],[28,26],[26,41],[14,32],[20,21],[26,10],[24,-11],[5,-26],[-3,-24],[-23,-39],[-23,-14],[-46,-23],[-30,-20],[-20,-23],[-5,-6],[-10,-15],[-14,-20],[-17,-35],[5,-40],[15,-23],[44,-29],[82,-26],[27,-9],[31,-11],[31,-31],[53,-31],[24,-14],[26,-14],[19,-11],[17,-76],[-26,-82],[-1,-17],[36,-49],[22,-44],[35,-197],[3,-81],[8,-1],[20,-3],[28,-3],[21,-2],[32,-7],[18,-7],[36,-4],[20,8],[13,29],[-12,35],[-19,29],[-15,16],[-25,24],[-25,20],[-27,14],[-18,14],[-14,33],[-11,31],[-12,36],[-4,26],[6,37],[20,14],[26,-4],[32,-8],[32,-10],[33,-20],[15,-17],[20,-41],[22,-46],[18,-24],[29,-25],[33,-15],[26,-3],[32,7],[20,7],[26,16],[23,12],[23,20],[25,4],[15,-16],[6,-37],[-4,-25],[-9,-22],[-20,-23],[-26,-10],[-22,4],[-25,-12],[-20,-12],[-26,-22],[-20,-20],[-18,-16],[-23,-32],[-8,-24],[7,-32],[16,-27],[17,-14]],[[10002,99979],[9,-70],[37,-13],[30,-29],[34,-32],[14,-12],[22,-53],[-36,-90],[-22,-50],[-4,-10],[-5,-11],[6,-10],[3,-6],[0,-7],[-12,-21],[-8,-9],[-13,-8],[-2,-1],[-41,-11],[-8,-9],[0,-6],[0,-37],[-1,-35],[0,-1],[-48,-153],[-32,-105],[-1,-1],[-5,-13],[-7,-8],[-14,-10],[-6,-1],[-45,-17],[-5,-2],[-14,-10],[-5,-6],[-5,-16],[-2,-108],[2,-4],[4,-10],[13,-26],[3,-7],[29,14],[8,1],[4,0],[23,0],[4,-2],[0,-1],[2,-14],[-3,-19],[-7,-43],[0,-2],[-2,-17],[-4,-8],[0,-1],[-10,-6],[-6,-6],[-1,0],[-19,-31],[0,-1],[-45,-76],[0,-10],[2,-4],[8,-10],[1,-1],[13,-6],[7,0],[1,0],[49,11],[1,0],[5,1],[31,2],[95,-53],[9,-11],[1,-16],[-4,-120],[-1,-12],[-10,-34],[0,-1],[0,-1],[11,-50],[14,-52],[1,-3],[34,-18],[8,-6],[50,-33],[4,-6],[4,-13],[24,-81],[0,-1],[7,-40],[0,-2],[0,-12],[2,-38],[-4,-8],[0,-1],[-25,-24],[-7,-12],[-1,-13],[12,-24],[7,-7],[73,-76],[2,-1],[1,0],[51,-37],[1,-1],[12,-4],[7,0],[1,0],[37,6],[7,-7],[27,-34],[85,-109],[3,-5],[3,-28],[1,-14],[-2,-9],[-35,-39],[-5,-11],[0,-12],[19,-23],[39,-22],[41,2],[1,0],[23,11],[1,1],[9,6],[81,69],[2,1],[1,1],[4,5],[6,13],[2,4],[10,6],[23,4],[61,12],[15,2],[36,-26],[5,-7],[2,-5],[10,-46],[0,-9],[-4,-5],[-14,-8],[-5,-14],[-1,-33],[2,-17],[4,-14],[1,-1],[8,-10],[14,-11],[2,-2],[1,0],[107,-113],[-5,-127],[0,-1],[15,-31],[7,-10],[11,-16],[11,-16],[9,-18],[0,-12],[-4,-4],[-15,-4],[-56,10],[-30,6],[-8,5],[-37,18],[-24,8],[-20,1],[-10,-3],[-19,-7],[-12,-9],[-5,-8],[-5,-9],[-2,-6],[0,-10],[0,-1],[15,-54],[12,-46],[23,-85],[3,-79],[13,-62],[3,-16],[17,-79],[3,-13],[5,-5],[17,-8],[12,-6],[39,-17],[9,-4],[34,-15],[3,-1],[0,-1],[12,-13],[100,-112],[1,-1],[0,-1],[18,-31],[3,-20],[0,-1],[0,-1],[6,-91],[1,-5],[-1,-48],[0,-1],[-4,-29],[1,-11],[0,-1],[2,-7],[5,-8],[9,-4],[27,0],[130,34],[2,0],[70,8],[13,0],[20,-2],[20,-32],[8,-17],[4,-12],[3,-14],[-2,-9],[-5,-5],[-9,-3],[-34,-4],[-12,3],[-18,12],[-11,4],[-11,-2],[-16,-15],[-29,-39],[-21,-38],[0,-10],[2,-7],[0,-1],[19,-58],[2,-4],[7,-5],[39,-24],[5,-6],[24,-31],[7,-11],[2,-10],[-1,-12],[-59,-103],[-1,0],[0,-1],[-9,-9],[-7,-2],[-4,5],[0,1],[-3,18],[-4,5],[-1,1],[-1,0],[-11,4],[-10,1],[-1,0],[-113,-34],[-7,-3],[0,-1],[-1,0],[-75,-55],[-3,-4],[2,-5],[36,-89],[36,-86],[3,-6],[36,-34],[19,-17],[37,-52],[25,-35],[7,-38],[1,-3],[7,-45],[-55,-49],[-5,-7],[-5,-27],[0,-18],[4,-3],[30,8],[1,0],[11,0],[10,-9],[17,-19],[9,-13],[29,-66],[3,-30],[-1,-4],[-8,-1],[-16,5],[-1,0],[-11,-2],[-6,-5],[-1,0],[-25,-24],[-1,0],[-7,-9],[-18,-31],[-22,-38],[-12,-22],[-1,-4],[0,-1],[8,-41],[0,-1],[0,-5],[-3,-60],[1,0],[21,-12],[9,-9],[-1,-11],[-14,-116],[-5,-30],[-3,-14],[0,-1],[-59,-179],[-29,-35],[-47,-22],[-43,-32],[-10,-10],[-51,-50],[-5,-5],[-19,-62],[0,-1],[0,-60],[0,-3],[0,-26],[6,-28],[6,-1],[39,-8],[1,-1],[12,-9],[0,-9],[-1,-5],[-15,-61],[81,-111],[36,-48],[7,-9],[2,-2],[0,-1],[-1,-15],[-6,-18],[-1,-1],[-27,-57],[-4,-4],[-26,-30],[-16,-17],[-3,-7],[-12,-30],[-2,-4],[6,-83],[76,-2],[205,-4],[198,1],[-2,-270],[-1,-46],[-2,-861],[1,-224],[-2,-638],[-1,-105],[-1,-350],[-3,-374],[0,-1],[-3,-457],[0,-210],[-11,-688],[0,-4],[-2,-148],[1,-28],[2,-85],[0,-6],[0,-154],[-1,-143],[1,-28],[1,-32],[-2,-118],[-1,-59],[1,-86],[1,-282],[-2,-114],[0,-18],[-1,-49],[-2,-269],[-1,-400],[-1,-135],[-2,-53],[101,-3],[0,-354],[0,-330],[0,-524],[0,-219],[0,-21],[0,-272],[0,-197],[0,-195],[0,-25],[101,0],[49,0],[1,0],[391,-2],[54,1],[45,0],[80,0],[86,0],[64,-2],[65,-3],[31,-1],[4,0],[35,1],[106,0],[39,0],[113,-1],[47,0]],[[12840,85103],[-29,-35],[-32,-40],[-42,-18],[-19,-8],[-82,-83],[-2,-15],[-5,-34],[-19,-52],[-67,-68],[-44,-27],[-27,1],[-53,2],[-31,31],[-22,16],[-136,75],[-63,2],[-32,4],[-48,7],[-19,17],[-17,15],[-104,3],[-70,-72],[-8,-28],[-5,-17],[-18,-40],[-24,-33],[-9,-9],[-41,-45],[-1,-132],[0,-33],[14,-22],[119,-136],[11,-43],[19,-38],[53,-59],[3,-4],[50,-29],[60,-26],[111,-126],[-5,-200],[-30,-51],[-31,-85],[-1,-55],[-46,-116],[-42,-84],[-18,-43],[-22,-55],[-17,-134],[0,-105],[6,-53],[1,-16],[-14,-32],[-12,-26],[-10,-24],[-3,-7],[-27,-58],[-4,-8],[-41,-90],[0,-1],[-78,-109],[-3,-6],[-1,-2],[0,-2],[-3,-12],[-1,-16],[0,-3],[5,-101],[2,-19],[34,-100],[10,-20],[15,-4],[3,-1],[29,-8],[2,0],[48,-38],[9,-11],[2,-3],[-1,-14],[-2,-4],[-9,-9],[-15,-16],[-1,-1],[-6,-12],[-4,-12],[0,-1],[-5,-24],[1,-13],[32,-161],[7,-13],[19,-14],[11,3],[6,7],[17,31],[1,0],[54,38],[9,2],[9,-3],[1,-1],[2,-2],[31,-27],[38,-9],[2,-1],[1,-1],[10,-9],[4,-8],[1,-1],[32,-151],[1,-19],[-3,-6],[-6,-7],[-24,-5],[-1,-1],[-10,-7],[-7,-9],[0,-2],[-1,0],[-6,-17],[-40,-112],[0,-18],[0,-1],[3,-7],[9,-13],[1,0],[15,-13],[9,-4],[16,-84],[7,-41],[2,-24],[0,-2],[0,-1],[2,-102],[0,-34],[0,-4],[-21,-142],[-5,-14],[-17,-35],[-7,-14],[-53,-32],[-1,-1],[-11,-7],[-18,-17],[-34,-32],[-8,-7],[-8,-15],[-38,-77],[-9,-17],[-15,-18],[-8,-4],[-8,0],[-21,0],[-2,1],[-14,3],[-20,12],[-3,3],[-38,0],[-15,-36],[-11,-22],[-17,-33]],[[11778,80843],[-95,-4],[-39,3],[-41,0],[-54,0],[-168,2],[-1,0],[-129,0],[-21,1],[-21,0],[-19,5],[-48,14],[-37,10],[-69,-1],[-33,1],[-28,0],[-21,1]],[[4369,99997],[12,0],[184,0],[9,0],[19,0],[795,0],[1243,0],[397,-2],[43,-1],[678,-3],[136,-1],[1055,-6],[1004,-5],[58,0]],[[16556,89376],[30,-69],[3,-13],[5,-22],[-1,-118],[0,-5],[-5,-21],[-2,-8],[-1,-17],[-2,-29],[1,-23],[29,-69],[17,-79],[8,-36],[12,-68],[9,-39],[2,-4],[18,-36],[20,-13],[1,0],[5,-7],[16,-22],[9,-15],[1,0],[25,-133],[1,-15],[-2,-5],[-15,-18],[-3,-2],[-11,-10],[-2,-3],[0,-1],[0,-1],[-28,-91],[-16,-53],[-1,-2],[0,-1],[-1,-8],[16,-60],[27,-102],[6,-7],[1,-1],[11,-22],[2,-33],[-1,-38],[20,-26],[1,-6],[-2,-37],[-8,-11],[-21,-2],[-1,0],[-8,-5],[-21,-23],[-3,-3],[0,-7],[56,-176],[22,-70],[5,-5],[7,-1],[9,-10],[10,-28],[25,-139],[9,-51],[1,-20],[-2,-23],[14,-55],[25,-36],[12,-17],[2,-2],[4,-8],[40,-68],[52,-91],[4,-4],[1,0],[19,-42],[1,-1],[17,-47],[3,-10],[0,-1],[0,-1],[1,-14],[-5,-20],[0,-1],[-6,-12],[-10,-13],[-6,-14],[-14,-46],[-8,-33],[0,-1],[-1,-12],[2,-6],[17,-30],[8,-11],[26,-15],[7,0],[5,3],[30,9],[69,-4],[4,-2],[5,-6],[1,-8],[8,-189],[-2,-6],[-53,-52],[-41,-40],[0,-6],[12,-31],[2,-6],[10,-12],[1,0],[2,-6],[4,-20],[0,-16],[-6,-21],[-6,-7],[-10,-2],[-6,-37],[1,0],[40,-51],[54,-65],[0,-7],[-5,-17],[-292,-5],[-202,-3],[-218,-5],[-29,-1],[-155,-3],[-175,-4],[-34,0],[-33,2],[-41,0],[-159,-3],[-39,1],[-26,0],[-315,-3],[0,-46],[-2,-233],[-3,-113],[-6,-84],[3,-64],[0,-94],[0,-30],[3,-147],[3,-154],[2,-82],[0,-32],[-23,0],[-35,-1],[-44,0],[-156,0],[-73,0],[-145,0],[-101,2],[-168,-1],[-1,0],[-103,0],[-29,-1],[-319,1],[-128,-2],[-129,0],[-46,1],[-69,0],[-101,1],[-40,-1],[-157,-1],[-27,0],[-22,0],[-39,0],[-25,0],[-159,0],[-36,1],[-16,0],[-23,0],[-231,2],[-160,1]],[[10002,99979],[242,-2],[331,-2],[10,-1],[19,0],[426,-1],[856,-2],[574,-1],[1418,-4],[138,0],[1365,-3],[27,0]],[[15408,99963],[0,-128],[0,-102],[2,-129],[1,-77],[2,-34],[0,-143],[0,-48],[1,-319],[0,-1],[1,-445],[0,-214],[0,-117],[1,-172],[0,-117],[0,-353],[0,-58],[1,-83],[0,-87],[-1,-145],[0,-111],[1,-32],[0,-33],[0,-278],[1,-26],[2,-144],[-1,-96],[-1,-120],[1,-46],[2,-274],[0,-21],[0,-53],[1,-6],[1,-117],[3,-382],[0,-197],[1,-52],[1,-85],[1,-62],[1,-83],[-7,-192],[-1,-57],[1,-26],[2,-60],[-2,-197],[-1,-83],[0,-146],[-1,-299],[-1,-228],[0,-40],[0,-67],[0,-93],[3,-70],[5,-286],[1,-165],[1,-198],[1,-166],[61,-12],[227,6],[164,4],[187,5],[122,-2],[212,-2],[18,-56],[-2,-19],[-10,-22],[-5,-11],[-4,-8],[-1,-19],[2,-13],[3,-4],[0,-130],[0,-180],[0,-28],[1,-51],[1,-178],[0,-38],[2,-248],[1,-73],[155,1],[-6,-32],[-1,-3],[-21,-34],[-3,-2],[-21,-3],[-24,-34],[0,-1],[-19,-52],[2,-6],[9,-14],[1,-1],[24,-16],[2,0],[2,-1],[39,3],[27,-51],[42,-75],[-1,-8],[-15,-36],[-1,-2],[-44,-63],[0,-1],[-25,-9],[-5,1],[-3,5],[-2,9],[0,2],[-2,2],[0,1],[-8,-1],[-6,-7],[-1,-8],[6,-39],[2,-4],[41,-88],[18,-23],[14,-116],[-1,-23],[0,-7],[-1,-17],[-1,-68],[0,-31],[0,-32],[26,-35],[27,-31],[-26,-129],[-20,-26],[-6,-19],[-11,-31],[-11,-37],[-13,-44],[-6,-7],[4,-3],[15,-31],[1,-2],[32,-162],[-9,-45],[-3,-14],[-8,-32],[-1,-7],[-3,-31],[-1,-10],[4,-73],[4,-27],[4,-22],[20,-37],[1,-1],[6,-9],[0,-5],[-2,-4],[-16,-11],[-51,-26],[-12,-5],[-2,0],[-14,6],[-6,-5],[-2,-7],[-4,-31],[-6,-223],[1,-2],[49,-72],[8,-5],[4,-6]],[[25233,93645],[-38,0],[-1,0],[-73,0],[-233,0],[-128,10],[-48,-2],[-212,-5],[-291,-8],[-381,-2],[-71,-1],[-111,0],[-51,4],[-63,-2],[-119,-5],[-154,-7],[0,-201],[1,-27],[2,-248],[2,-187],[5,-395],[-1,-41],[0,-44],[-18,28],[-4,2],[-25,9],[-5,-1],[-10,-8],[-1,0],[-90,-71],[-27,-6],[-16,-4],[-45,-11],[-4,-10],[-1,-23],[0,-1],[-8,-50],[-72,-127],[-2,-2],[-15,-19],[-33,-32],[-1,-1],[-22,-1],[-34,-32],[-12,-13],[-2,-4],[-11,-36],[28,-2],[5,-4],[1,-11],[-19,-38],[-36,-48],[-2,-1],[-28,-4],[-6,5],[-14,8],[-18,7],[-26,-6],[-46,-37],[-36,-29],[-37,-32],[5,-2],[18,-6],[4,-2],[0,-8],[-3,-24],[-16,-99],[-2,-9],[0,-1],[-37,-116],[-9,-38],[-20,-78],[-1,-8],[3,-14],[4,-26],[5,-28],[3,-4],[13,-4],[21,-68],[0,-8],[0,-1],[-2,-48],[-1,-16],[-1,-24],[-2,-34],[-1,-21],[0,-8],[-1,-2],[-4,-11],[-10,-8],[-1,-1],[-6,-15],[0,-15],[20,-67],[3,-9],[9,-37],[22,-95],[-3,-14],[-1,-11],[5,-34],[3,-7],[16,-29],[4,-9],[6,-10],[16,-28],[1,-50],[0,-25],[1,-76],[0,-32],[21,-73],[0,-1],[0,-5],[-25,-68],[-25,-53],[-3,-13],[-13,-53],[-4,-47],[2,-5],[5,-4],[15,3],[0,-1],[0,-26],[-10,-28],[-14,-24],[-12,-13],[-21,-13],[8,-34],[0,-24],[-2,-34],[-5,-46],[-4,-16],[-18,-65],[-3,-10],[-26,-40],[-4,-4],[-18,-17],[-50,-49],[-1,-1],[-1,0],[-48,-34],[-5,-2],[-78,-30],[-7,-3],[-50,-21],[15,-117],[2,-68],[2,-65],[-2,-64],[1,-53]],[[22259,89378],[-1,0],[-37,0],[-85,-2],[-164,-1],[-28,2],[-52,1],[-73,0],[-144,1],[-173,1],[-61,-2],[-19,0],[-216,-8],[-64,-2],[-86,-2],[-36,-2],[-23,-1],[-206,-1],[-3,0],[-139,-1],[-1,0],[-206,-1],[-133,-1],[-140,-2],[-195,-3],[-27,1],[-27,1],[-261,4],[-448,9],[-322,6],[-122,0],[-200,0],[-3,0],[-27,0],[-349,0],[-144,0],[-153,0],[-27,0],[-74,-1],[-43,1],[-54,0],[-68,-1],[-45,0],[-437,1],[-82,0],[-277,0],[-228,1]],[[15408,99963],[908,-1],[641,-2],[68,0],[510,-2],[2615,-8],[43,0],[46,-1],[289,-5],[1426,-21],[60,-1],[956,-14],[2272,-34]],[[25242,99874],[0,-19],[0,-9],[0,-28],[1,-27],[-1,-7],[0,-19],[0,-58],[4,-42],[0,-2],[0,-2],[1,-80],[0,-54],[-1,-89],[-2,-419],[-1,-256],[-1,-273],[-2,-111],[0,-31],[-2,-300],[-2,-385],[-4,-40],[1,-35],[2,-96],[-3,-432],[0,-15],[-1,-137],[-2,-437],[-1,-56],[0,-90],[-2,-102],[5,-82],[2,-29],[1,-24],[0,-8],[1,-33],[0,-30],[-1,-32],[2,-163],[0,-165],[0,-228],[0,-67],[-1,-289],[-85,1],[-81,0],[0,-72],[0,-25],[0,-224],[0,-1],[-1,-34],[30,0],[13,0],[123,0],[0,-136],[0,-463],[0,-54],[0,-128],[-1,-292]],[[37875,92752],[-1,-1],[-39,-21],[-15,-20],[-3,-3],[-6,-10],[-24,-38],[-43,-74],[-27,-62],[-7,-15],[-4,-12],[-27,-69],[-6,-8],[-11,-19],[-8,-13],[-5,-7],[-42,-41],[-44,-40],[-8,-8],[-10,-18],[-33,-57],[-38,-82],[-1,-2],[-11,-35],[-12,-40],[-7,-40],[-10,-37],[-1,-2],[-8,-31],[-11,-27],[-16,-32],[-10,-10],[-7,-9],[-7,-8],[-33,-23],[-6,-3],[-29,-17],[-18,-10],[-24,-6],[-34,-8],[-17,-4],[-15,-3],[-43,-1],[-44,2],[-26,-3],[-7,0],[-10,-5],[-15,-8],[-15,-15],[-30,-30],[-24,-32],[-16,-23],[-48,-54],[-13,-13],[-25,-26],[-24,-19],[-5,-4],[-30,-11],[-7,1],[-26,3],[-10,2],[-28,10],[-24,12],[-48,24],[-10,2],[-27,5],[-27,-8],[-24,-7],[-2,-1],[-6,0],[-26,-2],[-33,2],[-27,2],[-9,-1],[-24,-2],[-3,0],[-22,-15],[-13,-22],[-5,-34],[-2,-26],[-1,-37],[-1,-32],[6,-37],[10,-34],[22,-59],[24,-61],[-24,-17],[-97,-77],[-127,-98],[-119,-94],[-80,-61],[-56,-44],[-66,-51],[-187,-145],[-86,-67],[-31,-24],[-25,-19],[-223,-174],[-228,-177],[-200,-156],[-4,-1],[-18,-5],[-3,-24],[-22,3],[-6,-26],[1,-29],[-3,-27],[-8,-27],[-20,-1],[-3,-27],[-3,-25],[5,-24],[-5,-26],[5,-33],[12,-20],[-18,-11],[0,-34],[7,-23],[1,-31],[5,-28],[15,-26],[-8,-24],[-17,-22],[-6,-26],[-5,-2],[-11,-3],[-6,0],[-45,-3],[-31,-2],[-96,-38],[-1,1],[-21,12],[-19,7],[-6,2],[-34,5],[-15,-7],[-5,-2],[-23,-8],[-21,-2],[-24,5],[-28,1],[-25,-8],[-23,9],[-26,2],[-11,-20],[-2,-3],[-25,9],[-17,-28],[-4,-18],[-5,-1],[-71,-28],[-93,-37],[-14,-2],[-89,12],[-29,1],[-17,-4],[-6,-3],[-14,-7],[-37,-29],[-3,-4],[-4,-11],[0,-1],[-1,-11],[-6,-7],[-23,-5],[-22,0],[-1,0],[-72,9],[-9,4],[0,1],[5,23],[0,7],[-1,0],[-8,6],[-5,1],[-88,8],[-66,6],[-24,2],[-26,24],[-18,11],[-100,62],[-1,1],[-14,5],[-27,-1],[-1,0],[-14,-33],[-5,-9],[-39,-41],[-1,-1],[-41,-21],[-45,-23],[-123,2],[-25,0],[-20,0],[-43,1],[-74,0],[-148,2],[-20,-1],[-53,-1],[-39,0],[-179,-2],[-158,-1],[-124,1],[-127,-1],[-80,2],[-70,1],[-55,-6],[-20,0],[-44,0],[-51,1],[-78,3],[-37,0],[-21,0],[-20,0],[-70,0],[-73,1],[-7,0],[-52,0],[-68,0],[-71,0],[-69,0],[-83,1]],[[31176,89325],[0,88],[-1,85],[-1,31],[-1,355],[0,47],[0,92],[-1,64],[0,45],[0,83],[-1,110],[0,1],[3,33],[-1,89],[0,1],[1,43],[0,74],[0,36],[2,246],[0,36],[-2,221],[2,168],[0,184],[-95,0],[-40,1],[-280,1],[-125,0],[-8,0],[-111,1],[-163,2],[-87,1],[-120,1],[-3,0],[-51,0],[-46,1],[-18,0],[-67,1],[-138,2],[-277,1],[-169,0],[-180,3],[0,112],[-5,95],[-5,178],[0,5],[0,76],[0,431],[-2,214],[-1,51],[0,51],[0,2],[-21,-3],[-43,-7],[-27,8],[-23,0],[-32,-5],[-19,-7],[-21,3],[-20,4],[-15,16],[-23,-2],[-20,-2],[-22,12],[-21,4],[-1,0],[-6,-23],[-21,-14],[-23,-8],[-11,2],[-9,2],[-17,-11],[-20,13],[-8,-29],[0,-2],[-2,1],[-22,5],[-23,-12],[-19,7],[-18,-6],[-19,9],[-11,1],[-2,1],[-8,1],[-13,21],[-4,25],[-5,13],[-8,20],[-24,22],[-1,1],[0,1],[1,27],[-6,33],[-8,24],[0,29],[-12,22],[-19,6],[-24,15],[6,41],[-5,28],[-16,25],[-21,20],[-23,10],[-22,-9],[-35,27],[-15,25],[20,1],[-18,42],[-3,5],[-6,6],[-18,16],[-14,20],[-21,5],[-15,45],[-28,21],[-13,31],[2,18],[1,13],[-9,22],[-29,18],[-4,5],[-16,18],[-1,0],[-19,3],[-28,-11],[-39,0],[-9,2],[-12,2],[-1,-5],[-3,-19],[-39,10],[-19,9],[-26,-13],[-21,-2],[-22,-1],[-17,12],[-8,-3],[-15,-4],[-6,17],[-3,7],[-35,17],[-1,1],[-19,25],[-45,60],[-11,30],[-1,1],[-4,28],[0,1],[-28,4],[-20,17],[-20,4],[-24,-10],[-18,16],[-42,3],[-2,0],[1,-35],[-19,-16],[-23,10],[-18,-12],[-44,12],[-29,1],[-40,14],[-5,-24],[-8,-6],[-19,-17],[-1,0],[-32,7],[-41,-11],[-9,-3],[-15,-4],[-19,3],[-3,1],[-8,29],[0,1],[-31,6],[-20,14],[-2,28],[-25,2],[-5,2],[-29,12],[-13,-21],[-1,0],[-24,11],[-19,6],[-33,16],[9,24],[-19,36],[-1,1],[-1,0],[-45,13],[-13,0],[-6,0],[-22,2],[-30,-29],[-25,-3],[-21,12],[-134,0],[-253,-1],[-49,0],[-279,3],[-58,1],[-20,0],[-80,0],[-22,0],[-140,0],[-29,0],[-139,0],[-48,0],[-85,1],[-49,1],[-60,0],[-49,0],[-197,0],[-23,0]],[[25242,99874],[1,0],[137,-1],[505,-5],[1514,-16],[501,-6],[1021,-14],[15,0],[235,-3],[1784,-23],[1556,-20],[326,-4],[105,-2],[16,0],[303,-4],[1606,-21],[395,-6],[518,-6],[2020,-20]],[[37800,99723],[12,-39],[5,-12],[27,-69],[3,-20],[1,-5],[-1,-3],[-8,-26],[-23,-17],[-47,-31],[-3,-6],[-16,-33],[-6,-12],[1,-1],[0,-17],[1,-25],[4,-39],[7,-25],[0,-1],[8,-26],[0,-7],[1,-20],[-1,-16],[-1,-27],[-7,-12],[-14,-25],[-87,-35],[-34,-21],[-38,-39],[-24,-28],[0,-26],[14,-27],[12,-18],[25,-37],[47,-65],[21,-31],[1,-8],[4,-21],[1,-3],[-1,-7],[-4,-22],[-10,-31],[-4,-10],[-3,-2],[-26,-15],[-36,-1],[-4,0],[-12,4],[-21,7],[-16,1],[-4,1],[-10,1],[-2,-3],[-18,-33],[-4,-9],[-15,-30],[-5,-14],[-6,-15],[12,-33],[12,-18],[17,-25],[-2,-22],[0,-8],[-18,-31],[-9,-38],[20,-25],[2,-3],[40,9],[19,2],[21,-5],[3,0],[1,-2],[13,-32],[-17,-54],[-18,-54],[2,-42],[10,-25],[42,-50],[-1,-50],[-7,-57],[2,-31],[8,-42],[4,-20],[5,-25],[3,-23],[7,-61],[25,-77],[2,-4],[32,-71],[1,-5],[18,-54],[-4,-37],[-25,-25],[-22,-1],[-9,0],[-35,4],[-18,-7],[-4,-1],[-17,-38],[3,-29],[6,-5],[30,-24],[9,-7],[24,-7],[23,-6],[2,-5],[12,-24],[-4,-42],[-1,0],[-22,-12],[-17,8],[-3,2],[-31,20],[-4,3],[-25,3],[-4,-5],[-15,-20],[-4,-4],[0,-2],[1,-36],[0,-6],[13,-22],[10,-18],[2,-4],[24,-28],[-5,-33],[-16,-20],[-6,-9],[-3,-1],[-24,-10],[-3,-1],[-3,-1],[-4,-15],[-6,-19],[0,-2],[0,-1],[25,-9],[41,5],[22,-13],[-13,-37],[-36,-20],[-29,-12],[-5,-31],[-2,-6],[4,-7],[1,-2],[8,-15],[5,-7],[12,-18],[6,-9],[3,-11],[5,-21],[21,-28],[15,-23],[5,-8],[0,-4],[-2,-22],[-13,-18],[-42,-53],[-12,-35],[-24,-61],[-7,-18],[-25,-45],[-5,-16],[-6,-18],[-1,-4],[-7,-45],[-3,-43],[1,-6],[10,-52],[1,-7],[27,-64],[30,-61],[28,-57],[7,-16],[9,-22],[1,-4],[7,-30],[33,-52],[40,-64],[42,-64],[12,-18],[54,-102],[13,-19],[1,-2],[45,-66],[13,-11],[8,-7],[29,-24],[69,-49],[14,-9],[23,-17],[7,-5],[22,-40],[1,-5],[3,-23],[8,-51],[-1,-8],[-3,-27],[-3,-22],[-15,-15],[-7,-8],[-39,-14],[-87,0],[-6,-2],[-18,-8],[-5,-2],[-4,-5],[-22,-25],[-7,-8],[-1,-7],[-1,-2],[-7,-36],[8,-59],[10,-6],[13,-9],[59,-21],[2,-1],[24,-14],[2,-1],[0,-2],[6,-40],[-9,-34],[-1,-7],[-3,-3],[-15,-15],[-29,-17],[-23,-14],[-9,-10],[-6,-8],[4,-34],[3,-9],[3,-7],[44,-134],[19,-59],[11,-37],[11,-34],[18,-39],[15,-32],[85,-137],[21,-56],[3,-8],[17,-67],[0,-7],[0,-59],[-4,-16],[-16,-60],[-9,-57],[0,-27],[1,-59],[-1,-35],[-1,-36],[-9,-42],[-2,-13],[-61,-173],[-4,-8],[-16,-44],[-5,-15],[-16,-18],[-29,-34],[-4,-10],[-16,-40],[-8,-43],[1,-77],[11,-96],[11,-51],[12,-54],[3,-16],[17,-26],[1,-2],[10,-13],[15,-19],[7,-6],[24,-19],[39,-23],[24,-19],[1,-1],[20,-21],[10,-27],[6,-38],[-2,-58],[-9,-50],[-26,-33],[-25,-19],[-25,-3],[-3,-1],[-61,13],[-18,4],[-51,10],[-5,-1],[-36,-8],[-17,-3],[-38,-18],[-4,-5],[-16,-20],[0,-1],[19,-29],[38,-4],[22,2],[12,0],[21,2],[11,0],[25,-8],[12,-14],[10,-11],[17,-29],[5,-30],[-4,-37],[-9,-18],[-6,-10],[-6,-6],[-15,-16],[-27,-20],[-10,-8],[-11,-9],[-4,-2],[-15,-9]],[[49916,99672],[-4,-32],[-16,-51],[21,1],[15,19],[23,0],[2,-29],[11,-21],[-23,-16],[-20,-11],[-23,-3],[-18,-2],[-8,-106],[-6,-24],[-1,-3],[0,-17],[-3,-75],[-20,-15],[-27,-6],[-19,18],[-25,17],[-33,17],[-19,10],[-29,-16],[-12,-36],[-15,-42],[23,-11],[19,14],[31,-19],[-14,-33],[-33,-23],[-18,-31],[-17,-24],[19,-15],[33,-2],[37,-16],[20,-9],[24,9],[1,24],[-5,25],[7,25],[26,4],[44,2],[3,-31],[2,-14],[7,-24],[0,-2],[3,-9],[6,-10],[5,-8],[-1,-2],[-3,-34],[-1,-10],[-55,-117],[-25,-39],[-3,-3],[-45,-44],[-6,-5],[-98,-63],[-8,-4],[-81,-41],[-24,-17],[-8,-8],[-15,-15],[-1,0],[-8,-16],[-1,-2],[-10,-21],[-3,-13],[-1,-2],[-7,-8],[-24,-28],[-4,-4],[-4,-4],[-7,-17],[-4,-12],[-22,-39],[-8,-16],[-20,-54],[-2,-6],[-5,-19],[-2,-30],[-4,-49],[-1,-3],[-90,-88],[-15,-14],[-1,-1],[-30,-12],[-19,-8],[-3,-1],[-4,-5],[-22,-23],[-29,-31],[-31,-47],[-44,-87],[-7,-26],[-4,-17],[11,-33],[2,-7],[24,-41],[40,-67],[10,-37],[-1,-23],[0,-3],[0,-2],[-7,-24],[-12,-18],[-8,-6],[-23,-18],[-4,-3],[-10,-6],[-21,-13],[-5,-6],[-7,-7],[-21,-25],[-21,-33],[-63,-101],[-63,-110],[-12,-18],[-15,-15],[-41,-42],[-8,-7],[-7,-6],[-5,-3],[-50,-37],[-20,-32],[-2,-4],[-8,-49],[0,-5],[-1,-75],[-1,-24],[9,-62],[7,-28],[12,-28],[5,-15],[9,-23],[19,-46],[5,-10],[-7,-4],[-61,-36],[-40,-41],[-21,-36],[-16,-26],[-5,-4],[-31,-28],[-3,-3],[-132,-107],[-3,-2],[-13,-6],[-7,-3],[-90,-37],[-29,-12],[-2,-1],[-93,-16],[-35,-5],[-5,1],[-29,7],[-22,-1],[-30,-2],[-23,11],[-10,4],[-44,19],[-11,1],[-16,0],[-1,0],[-1,0],[-24,-7],[-15,-5],[-59,-1],[-12,-16],[-15,-20],[-13,-17],[-52,-6],[-30,-27],[-6,-64],[-19,-48],[-20,-45],[-3,-6],[-5,-6],[-52,-50],[-24,-35],[-1,-1],[-2,-1],[-25,-16],[-26,-17],[-18,-11],[-24,-24],[-22,-38],[-45,-44],[-23,-17],[-1,0],[0,-1],[-52,-12],[-12,-12],[-3,-3],[-10,-24],[-1,-11],[0,-7],[-8,-52],[-4,-5],[-9,-11],[-12,-14],[-8,-11],[-1,-15],[-1,-13],[2,-8],[5,-38],[2,-7],[-5,-9],[-13,-21],[-3,-5],[-6,-6],[-46,-47],[-9,-21],[0,-5],[-3,-59],[3,-127],[14,-145],[-1,-33],[-4,-15],[-11,-20],[-15,-17],[-27,-33],[-2,-1],[-13,-7],[-40,-18],[-84,-73],[-15,-15],[-3,-7],[-1,-2],[-6,-15],[-5,-35],[-11,-10],[-3,-3],[-10,-17],[-96,-165],[-1,-15],[0,-13],[0,-1],[1,-109],[2,-16],[9,-35],[1,-5],[18,-38],[-1,-27],[-5,-8],[-9,-14],[-17,-26],[-21,-30],[-75,-67],[-8,-3],[-51,-21],[-6,-5],[-6,-4],[-12,-9],[-7,-9],[-37,-48],[-1,-2],[-29,-37],[-6,-23],[-10,-33],[0,-4],[2,-30],[5,-6],[80,-81],[3,-5],[3,-6],[58,-97],[24,-39],[1,-2],[1,-18],[1,-9],[10,-96],[0,-190],[-1,-6],[0,-4],[-4,-33],[-5,-6],[-1,0],[-3,-15],[0,-10],[3,-46],[-3,-66],[0,-12],[-1,-20],[-6,-13],[-10,-22],[-3,-7],[-9,-13],[-35,-52],[-134,-184],[-6,-5],[-6,-6],[-6,-6],[-9,-3],[-9,0],[-19,1],[-1,0],[-50,-16],[-4,-1],[1,-6],[9,-61],[2,-18],[-1,-10],[-3,-30],[-19,-23],[-32,-26],[-1,-1],[-2,-6],[-31,-68],[-1,-4],[-24,-84],[-3,-3],[-21,-18],[-47,-17],[-2,-2],[-38,-47],[-5,-7],[-4,-5],[-23,-8],[-2,0],[-41,2],[-29,-5],[-7,-6],[-6,-6],[-8,-8],[-6,-13],[-1,-1],[-3,-7],[-2,-18],[-3,-28],[-3,-3],[-7,-6],[-28,-23],[-2,-1],[-1,-3],[-6,-15],[-7,-17],[-1,-20],[-2,-50],[-5,-17],[-3,-13],[-6,-22],[-21,-24],[-7,-2],[-2,0],[-8,-8],[-7,-7],[-6,-6],[-7,-12],[-4,-6],[-8,-14],[-16,-40],[0,-7],[0,-7],[-1,-7],[6,-10],[5,-6],[3,-3],[25,-14],[25,-1],[10,0],[4,2],[19,12],[23,2],[2,-3],[40,-50],[18,-24],[3,-16],[4,-30],[11,-19],[12,-4],[2,0],[29,8],[11,-1],[27,-1],[5,0],[11,-13],[5,-19],[0,-11],[-2,-29],[13,-40],[28,-38],[13,-17],[-4,-27],[-10,-10],[-23,-25],[-9,-13],[-7,-11],[-1,-25],[5,-18],[14,-23],[13,-22],[-1,-30],[-6,-8],[-1,-1],[-57,-56],[-23,-14],[-24,-20],[-2,-2],[-7,-7],[-3,-8],[-17,-55],[-8,-7],[-37,-29],[-80,-63],[-10,-4],[-9,-4],[-2,-1],[-3,-2],[-16,-39]],[[46062,91391],[-29,-152],[-1,-15],[1,-1],[15,-21],[20,-27],[3,-4],[-6,-5],[-7,-5],[-22,-2],[-1,-1],[-17,-1],[-6,-7],[-6,-6],[-4,-5],[0,-13],[0,-64],[-7,-33],[-1,-2],[-18,-37],[-8,-25],[-32,-102],[-46,-113],[-14,-34],[-4,-10],[-18,-14],[-2,0],[-38,2],[-10,-3],[-5,-1],[-6,-2],[-15,-11],[-14,-23],[-6,-9],[-7,-13],[-1,-3],[-2,-20],[-2,-13],[-21,-98],[-2,-3],[-14,-33],[-5,-7],[-41,-59],[-26,-53],[-1,-14],[-3,-29],[-8,-20],[-11,-29],[-4,-11],[-6,-7],[-36,-39],[-3,-4],[-9,-5],[-35,-19],[-46,-52],[-22,-28],[-2,-1],[-7,-11],[-23,-38],[-1,-2],[-4,-3],[-14,-12],[-17,1],[-36,42],[-19,10],[-65,9],[-7,1],[-16,7],[-18,7],[-7,6],[-13,11],[-24,4],[-9,-1],[-14,0],[-12,0],[-15,0],[-5,-6],[-6,-5],[-13,-14],[-3,-2],[0,-2],[0,-35],[0,-40],[-3,-6],[-3,-6],[-3,-2],[-45,-47],[-49,-4],[-37,-10],[-1,-1],[-1,0],[-3,1],[-34,1],[-11,14],[-3,3],[-2,2],[-1,15],[0,22],[-3,5],[-8,14],[-8,13],[-79,12],[-7,1],[-16,12],[-20,15],[-22,2],[-39,-26],[0,-1],[-27,-2],[-23,-2],[-32,-17],[-18,-17],[0,-9],[-19,-33],[-51,-47],[-41,-23],[-6,-6],[-3,-2],[-9,-9],[-28,-63],[-25,-36],[-31,-30],[-5,-5],[-3,-3],[-33,-41],[-13,-20],[-5,-9],[-1,-1],[-10,-27],[2,-34],[-3,-5],[-10,-19],[-8,-12],[-18,-24],[-22,-30],[-45,-40],[-12,-18],[-3,-6],[-3,-9],[-4,-12],[-1,-11],[-1,-20],[6,-16],[-14,-23],[-17,-30],[-57,-108],[0,-3],[0,-10],[4,-4],[7,-8],[2,-1],[43,-20],[14,-16],[3,-14],[4,-16],[0,-1],[2,-26],[3,-51],[0,-9],[0,-7],[-2,-5],[-10,-26],[-79,-216],[-5,-6],[-31,-35],[-24,-12],[-2,0],[-65,-20],[-20,-6],[-51,-12],[-4,-1],[-3,0],[-63,3],[-15,1],[-5,5],[-6,5],[1,15],[6,5],[5,4],[31,26],[-3,12],[-4,6],[-11,13],[-7,7],[-5,1],[-12,3],[-4,-4],[-7,-5],[-7,-6],[-3,-6],[-12,-20],[0,-1],[-8,-7],[-4,-4],[-43,-33],[-82,-63],[-58,-28],[-7,0],[-33,0],[-6,0],[-8,7],[-17,17],[-8,8],[-58,76],[-1,7],[-14,46],[-8,10],[-10,5],[-4,2],[-14,6],[-23,-8],[-25,-24],[-17,-17],[-20,-4],[-10,-2],[-20,-4],[-6,1],[-25,4],[-10,12],[-4,4],[-2,9],[2,16],[2,17],[3,21],[1,7],[-6,9],[-10,16],[-3,4],[-11,6],[-6,4],[-16,10],[-29,6],[-6,2],[-12,-4],[-14,-4],[-9,-3],[-4,-5],[-20,-21],[-5,1],[-12,2],[-5,1],[-3,2],[-24,23],[-18,17],[-4,6],[-23,28],[-11,14],[1,15],[0,7],[0,2],[8,28],[2,5],[-5,-1],[-66,-14],[-5,7],[-12,17],[-19,18],[-23,3],[-37,-12],[-33,-13],[-32,-11],[-24,-13],[-29,-21],[-18,-21],[-31,-8],[-31,-1],[-18,-11],[1,-35],[27,-24],[22,-35],[8,-24],[1,-54],[-15,-28],[-4,-6],[1,-2],[1,-5],[1,0],[-2,-23],[-5,-16],[-14,-17],[-7,-21],[-2,-5],[-15,-13],[-4,-3],[-11,-5],[-14,0],[-13,1],[-11,-5],[-17,-4],[-31,5],[-21,0],[-12,-2],[-7,0],[-5,-2],[-1,0],[-1,-1],[-13,-9],[-21,-14],[-16,-13],[-2,-1],[0,-1],[-8,-12],[-11,-8],[-3,-2],[-13,-5],[-10,-5],[-2,-6],[0,-1],[-7,-15],[-5,-6],[-2,-1],[-7,-7],[-6,-8],[0,-3],[0,-2],[-13,-23],[-1,-1],[-2,-8],[0,-20],[0,-22],[-2,-6],[-10,-3],[-9,-7],[-7,-6],[-3,-9],[-1,-1],[-1,-4],[-3,-3],[-2,-3],[-19,-21],[-7,-13],[-10,-27],[-1,-3],[-4,-7],[-25,-17],[-9,-11],[-3,-4],[-6,-13],[-1,-4],[-8,-24],[0,-2],[-7,-35],[0,-17],[4,-11],[2,-3],[0,-2],[4,-6],[2,-4],[0,-2],[0,-1],[5,-9],[2,-8],[0,-10],[0,-1],[-2,-14],[0,-14],[1,-7],[0,-1],[7,-13],[2,-7],[1,-11],[-4,-17],[0,-8],[5,-5],[7,-4],[3,-5],[0,-13],[0,-5],[1,-5],[4,-3],[12,-11],[1,-4],[0,-1],[0,-8],[-4,-4],[-4,-4],[-1,-12],[-3,-6],[-15,-10],[-6,-11],[2,-16],[2,-1],[0,-3],[0,-1],[5,-8],[2,-10],[-3,-7],[-1,0],[-12,-13],[-3,-8],[-3,-1],[0,-8],[0,-22],[3,-11],[0,-1],[4,-6],[2,-11],[0,-4],[-4,-5],[-4,-10],[1,-15],[-2,-3],[-5,0],[-9,8],[-7,0],[-3,-1],[-3,-5],[-2,-7],[-4,-3],[-11,-2],[-9,5],[-3,2],[-9,4],[-6,0],[-3,0],[-11,-6],[-7,-11],[-7,-7],[-16,-6],[-39,-2],[-9,1],[-29,12],[-32,6],[-5,1],[-1,0],[-10,1],[-19,-7],[-15,-1],[-7,2],[-14,4],[-9,0],[-10,1],[-27,6],[-14,8],[-17,22],[-8,8],[-16,21],[-4,5],[-3,7],[-3,1],[-9,6],[-11,4],[-3,1],[-22,3],[-33,11],[-31,3],[-5,3],[-4,16],[-1,3],[-1,1],[-1,0],[0,1],[-1,6],[-6,10],[-3,5],[-6,6],[-4,4],[-6,4],[-13,8],[-13,13],[-30,38],[-3,8],[-2,2],[-2,4],[0,1],[0,2],[-5,5],[-5,5],[-24,17],[-13,15],[-7,11],[-3,9],[-1,2],[-5,19],[0,4],[0,15],[-5,11],[-2,2],[-8,7],[-13,3],[-11,6],[-3,1],[-6,6],[-3,3],[-3,3],[-4,6],[0,50],[2,9],[3,4],[0,1],[0,1],[0,15],[0,3],[-2,5],[-3,3],[-13,2],[-8,2],[-8,4],[-6,6],[-5,12],[-5,5],[-9,9],[-13,14],[-2,7],[-1,2],[0,9],[0,16],[-2,4],[-3,1],[-11,0],[-5,0],[-3,0],[-1,0],[-1,1],[-1,1],[-1,7],[-2,2],[-3,4],[-15,6],[-39,22],[-15,17],[-7,1],[-3,-2],[-2,-2],[-3,-4],[-5,0],[-7,-1],[-9,1],[-17,-10],[-5,-7],[-9,-12],[-12,-16],[-11,-23],[-2,-3],[-2,-7],[-7,-7],[-4,-1],[-7,-2],[-9,-4],[-7,-19],[-2,-4],[-3,-3],[-5,-6],[-14,-10],[-27,-10],[-4,-4],[-11,-26],[-16,-17],[-4,-9],[-4,-10],[-4,-26],[-5,-15],[-1,-33],[-3,-10],[-2,-8],[-1,0],[-6,-20],[-1,-3],[0,-24],[0,-8],[2,-4],[2,-15],[1,-1],[0,-5],[1,-4],[0,-6],[0,-11],[1,-10],[-1,-3],[-3,-10],[-1,-16],[3,-7],[2,-5],[2,-7],[1,-1],[0,-8],[0,-18],[-1,-5],[-7,-15],[-12,-15],[-11,-17],[-1,-6],[0,-1],[-1,-3],[-2,-21],[-2,-8],[-4,-22],[0,-23],[5,-19],[1,0],[1,-10],[2,-2],[1,-4],[1,-2],[2,-11],[0,-8],[-3,-14],[-5,-27],[-2,-7],[-5,-11],[-3,-5],[-7,-7],[-10,-9],[-2,-8],[-3,-11],[-10,-14],[-3,-6],[-2,-7],[-4,-10],[-4,-14],[-3,-5],[-15,-17],[-11,-8],[-20,-14],[-2,-2],[-9,-4],[-1,0],[-22,-3],[-13,-3],[-6,-7],[-2,-7],[-3,-8],[0,-1],[-1,-3],[-10,-11],[-7,-3],[-3,0],[-36,0],[-17,2]],[[40788,87444],[105,154],[5,13],[5,11],[1,1],[17,10],[18,15],[19,26],[-1,39],[7,24],[6,22],[3,9],[0,1],[2,33],[-1,4],[-2,20],[-3,25],[-4,26],[-2,13],[-4,30],[-3,27],[-3,28],[-8,24],[-21,16],[-18,19],[-9,25],[-17,26],[-13,26],[16,21],[12,27],[-9,22],[-31,21],[-20,11],[-21,12],[-21,15],[-26,24],[-10,9],[-15,17],[-16,15],[-15,16],[-6,9],[-18,28],[-18,35],[-10,22],[-18,46],[0,28],[-10,33],[-5,24],[1,32],[-1,35],[-14,31],[-5,25],[3,34],[4,22],[1,6],[-3,3],[-18,18],[-17,28],[-5,31],[-3,24],[-7,28],[-11,24],[-15,24],[-7,27],[-8,35],[-5,36],[0,4],[1,27],[16,30],[12,21],[11,23],[20,19],[18,18],[14,29],[1,30],[-6,29],[-8,25],[-5,13],[-7,15],[-13,24],[-16,12],[-2,1],[-56,25],[-12,19],[-16,119],[-23,178],[-5,32],[-26,191],[-3,31],[0,23],[0,5],[8,24],[18,16],[16,19],[9,27],[10,32],[16,17],[22,16],[21,21],[5,30],[14,17],[13,13],[4,5],[0,7],[-1,25],[-5,26],[5,28],[13,22],[15,15],[2,2],[22,20],[14,25],[0,28],[0,16],[2,26],[-11,21],[0,31],[-13,26],[0,1],[-8,28],[-14,35],[-3,35],[-11,44],[-2,29],[-1,25],[-3,47],[5,47],[3,27],[-2,26],[16,24],[14,24],[33,14],[19,17],[17,22],[24,11],[23,0],[21,3],[29,-20],[25,8],[19,26],[1,2],[24,10],[12,20],[5,27],[5,29],[-3,25],[-3,34],[-5,36],[-3,26],[-16,36],[-17,20],[-38,15],[-17,23],[-18,20],[-16,15],[-18,16],[-19,16],[-18,15],[-39,23],[-24,8],[-20,2],[-28,-3],[-26,-5],[-21,-5],[-20,-5],[-31,-15],[-21,-32],[-18,-44],[-13,-40],[-11,-22],[-17,-32],[-18,-14],[-20,4],[-2,1],[-17,11],[-19,14],[-22,17],[-21,20],[-20,17],[-19,18],[-19,13],[-19,8],[-20,2],[-30,11],[-17,34],[-6,30],[-14,44],[-19,21],[-16,18],[-15,17],[-16,28],[-15,21],[-20,16],[-19,9],[-21,6],[-21,11],[-15,16],[-16,18],[-40,37],[-17,24],[-13,24],[-15,27],[-11,20],[-12,37],[-22,28],[-8,27],[-23,37],[-5,32],[-10,24],[-8,26],[-10,35],[-5,28],[-7,24],[-7,47],[-6,28],[-7,37],[-3,28],[-13,25],[4,27],[9,23],[3,57],[-1,28],[-13,31],[-19,29],[-21,33],[-14,21],[-20,21],[-30,-3],[-2,-26],[-2,-28],[-21,-14],[-28,-14],[-25,-12],[-20,0],[-17,-17],[-23,-8],[-34,0],[-23,4],[-36,-3],[-18,-20],[-14,-24],[-25,-1],[-21,-3],[-30,-2],[-45,5],[-21,9],[-35,23],[-56,22],[-25,10],[-17,14],[-11,3],[-18,3],[-29,9],[-16,-12],[-12,-21],[-32,-35],[-13,-36],[-27,-36],[-20,-14],[-14,-25],[-32,-16],[-38,-2],[-28,13],[-24,14],[-24,-2],[-24,0],[-21,13],[-19,14],[-26,24],[-18,41],[-30,58],[-12,22],[-26,46],[-10,25],[-12,22],[-37,18],[-24,6],[-35,-5],[-41,-14],[-32,-30],[-25,-37],[-12,-34],[-6,-45],[5,-31],[21,-43],[38,-40],[48,-27],[59,-13],[42,1],[33,-4],[16,-20],[5,-27],[-6,-26],[-18,-32],[-24,-36],[-44,-39],[-46,-21],[-47,-22],[-55,-23],[-22,-15],[-17,-12],[-11,-18],[-15,-25],[-18,-17],[-23,-6],[-28,-5],[-10,23],[5,27],[-2,35],[-3,34],[16,24],[3,1],[26,13],[19,23],[1,41],[0,5],[19,24],[21,12],[2,1],[38,59],[0,26],[-23,5],[-24,-5],[-45,-26],[-22,-12],[-20,-12],[-27,-15],[-26,-8],[-22,-1],[-24,1],[-16,18],[3,32],[12,35],[4,30],[1,12],[-10,30],[-4,5],[-7,7],[-12,15],[-8,2],[-12,4],[-5,8],[-8,12],[-3,5],[0,3],[2,33],[0,2],[2,5],[11,38],[11,23],[5,11],[27,24],[24,17],[11,9],[13,10],[2,2],[5,11],[13,24],[-18,17],[-34,-12],[-5,-8],[-10,-14],[-20,-15],[-25,-16],[-31,-12],[-24,-4],[-9,-1],[-23,-37],[-3,-9],[-6,-16],[-33,-22],[-28,22],[12,20],[31,44],[5,6],[33,45],[29,35],[14,17],[7,6],[37,30],[30,22],[23,7],[20,1],[28,-2],[22,-12],[37,-21],[16,52],[-25,0],[-4,1],[-30,4],[-23,7],[-19,3],[-70,5],[-1,0],[-22,16],[-31,15],[-72,18],[-14,4],[-20,5]],[[37800,99723],[1664,-5],[954,-4],[609,-2],[574,-1],[285,-1],[341,-1],[721,-3],[2087,-9],[1027,-4],[24,0],[168,-1],[63,0],[81,0],[744,-3],[106,-1],[338,-3],[440,-4],[1429,-13],[461,4]],[[53220,99647],[36,-69],[4,-49],[0,-2],[-6,-15],[-9,-22],[-3,-41],[2,-11],[6,-32],[3,-37],[-4,-26],[-1,-5],[-2,-5],[-2,-1],[-7,-5],[-10,-7],[-3,-2],[-8,-2],[-6,-1],[-6,0],[-30,-1],[-10,-1],[-20,-5],[-16,-10],[-25,-18],[-62,-35],[-8,-9],[-5,-7],[-1,-4],[0,-1],[-1,-1],[0,-12],[56,-147],[4,-10],[6,-14],[7,-13],[25,-34],[2,-3],[7,-12],[11,-21],[2,-13],[0,-22],[-1,-5],[-1,-2],[-2,-4],[-5,-9],[-9,-6],[-2,-2],[-32,-17],[-35,-16],[-3,0],[-11,-1],[-6,6],[-2,1],[-1,1],[-1,3],[-1,7],[-3,43],[-2,9],[-5,7],[-7,5],[-14,4],[-16,-1],[-10,-4],[-11,-13],[-1,0],[0,-1],[-5,-9],[-17,-48],[-3,-11],[-1,-19],[1,-2],[1,-3],[10,-16],[2,-2],[25,-29],[38,-89],[4,-10],[3,-13],[0,-3],[1,-4],[0,-8],[-2,-11],[-1,-1],[-7,-16],[-5,-12],[-9,-20],[-1,-3],[-4,-15],[-2,-9],[-2,-18],[6,-34],[0,-1],[4,-13],[0,-22],[0,-3],[-2,-17],[-9,-23],[-15,-29],[-5,-9],[-16,-24],[-19,-27],[-19,-21],[-2,-1],[-10,-10],[-17,-10],[-18,-4],[-107,-21],[-21,-2],[-2,0],[-5,0],[-13,7],[-5,7],[-5,9],[-19,47],[0,1],[-20,-22],[-2,-2],[-73,-56],[-4,4],[-6,4],[-9,1],[-12,-4],[-21,-13],[-6,-8],[2,-10],[8,-32],[1,-17],[-4,-11],[-2,-6],[-1,-2],[-4,-7],[-9,-15],[-3,-4],[-5,-7],[-5,-5],[-3,-3],[-17,-21],[-48,-73],[-17,-28],[-72,-51],[-5,-34],[-1,-5],[46,-105],[2,-2],[71,-57],[7,-11],[4,-12],[1,-6],[1,-5],[0,-1],[-1,-9],[-5,-9],[-15,-4],[-25,-8],[-6,-3],[-13,-7],[-9,-10],[-5,-6],[-4,-14],[0,-17],[1,-3],[0,-26],[-1,-5],[-3,-8],[-7,-18],[-4,-11],[-1,-2],[-40,-93],[-8,-19],[-4,-6],[-6,-8],[-2,-2],[-9,-9],[-16,-16],[-1,-1],[-13,-63],[0,-2],[3,-7],[1,-3],[1,-16],[0,-34],[0,-6],[0,-16],[-7,-35],[-2,-11],[-1,-4],[-3,-10],[-1,-13],[0,-21],[0,-4],[0,-16],[7,-117],[8,-73],[4,-33],[6,-29],[17,-49],[0,-1],[5,-13],[-1,-4],[-25,-82],[-2,-10],[-1,-28],[6,-9],[6,-9],[12,-6],[12,-2],[21,1],[2,-1],[8,-4],[6,-4],[4,-7],[1,-1],[0,-1],[3,-13],[0,-55],[0,-6],[-3,-11],[-7,-5],[-8,-3],[0,-1],[-1,0],[-16,2],[-12,8],[-20,5],[-23,-16],[-8,-33],[18,-33],[-18,-41],[-9,-28],[-13,-44],[-23,-30],[-17,-11],[-28,-9],[-20,-7],[-13,-20],[18,-41],[-12,-48],[-29,-38],[-21,7],[-5,27],[-8,24],[-10,22],[-12,21],[-15,25],[-10,13],[-4,4],[-3,5],[-11,20],[-1,1],[0,2],[-1,3],[-5,12],[-1,1],[-1,2],[-5,7],[-10,9],[-2,2],[-2,1],[-11,5],[-15,1],[-12,-6],[-6,-5],[-3,-2],[-25,-32],[-1,-1],[-61,-111],[-6,-77],[-6,-4],[-5,-4],[-45,1],[-44,-8],[-18,-31],[-4,-10],[-4,-16],[-1,-4],[-4,-74],[0,-16],[1,-7],[1,-155],[-34,-116],[-42,-143],[-25,-81],[-1,-3],[-6,-27],[-2,-29],[-1,-27],[-4,-66],[3,-32],[-4,-31],[-11,-56],[0,-29],[5,-26],[13,-21],[23,-9],[19,11],[7,28],[23,17],[31,-8],[27,-26],[5,-26],[-9,-26],[-16,-21],[-4,-29],[6,-25],[5,-44],[-12,-39],[-9,-39],[9,-33],[-5,-48],[1,-29],[11,-43],[9,-45],[6,-24],[1,-34],[-1,-29],[-5,-29],[-14,-71],[-6,-42],[-6,-55],[-5,-44],[-1,-29],[-4,-42],[-3,-32],[-6,-35],[-2,-30],[-3,-28],[-3,-54],[2,-25],[3,-55],[-6,-34],[-6,-27],[-2,-34],[10,-31],[16,-31],[11,-26],[4,-29],[-12,-22],[-25,-14],[-5,-30],[8,-24],[0,-34],[-6,-28],[-6,-31],[-3,-16],[-7,-40],[-8,-43],[1,-38],[7,-25],[12,-31],[9,-25],[4,-30],[-8,-35],[-23,-19],[-24,-26],[-49,-19],[-25,-15],[-17,-35],[-22,-26],[-44,-36],[-24,-23],[-8,-8],[-18,-24],[-3,-4],[-24,-38],[-50,-104],[-12,-23],[-24,-47],[-3,-5],[-119,-207],[-3,-4],[-8,-15],[-15,-15],[-2,-2],[-13,-13],[-21,-12],[-20,-8],[-8,-10],[-6,-13],[0,-21],[1,-9],[7,-7],[30,-12],[1,0],[7,-9],[1,-11],[-1,-3],[-1,0],[-5,-7],[-14,-10],[-2,-1],[-10,-3],[0,-2],[-15,-31],[-1,-1],[-42,-118],[-10,-28],[-1,-1],[0,-1],[-3,-15],[-1,-7],[-18,-146],[0,-8],[0,-2],[-1,0],[3,-6],[9,-10],[52,-30],[9,-5],[8,-12],[4,-5],[2,-6],[3,-9],[0,-4],[0,-5],[-2,-11],[-57,-42],[6,-14],[21,-33],[7,-24],[-2,-29],[-15,-31],[-30,-2],[-30,17],[-14,17],[22,48],[-4,22],[-78,-59],[-11,-5],[-21,-4],[-8,0],[-160,61],[-47,25],[-5,3],[-1,0],[-7,0],[-15,0],[-4,-2],[-12,-5],[-7,-8],[-1,-2],[-2,-4],[-6,-16],[-2,-9],[-3,-9],[-1,-25],[-3,-112],[-82,-104],[-1,-3],[-2,-18],[3,-8],[3,-8],[2,-7],[5,-12],[7,-15],[14,-25],[1,0],[13,-24],[2,-4],[0,-2],[4,-49],[0,-2],[-2,-34],[-8,-46],[-6,-24],[2,-45],[9,-27],[13,-38],[11,-26],[15,-19],[15,-25],[-6,-26],[-18,-16],[-14,-14],[-24,-18],[-1,-27],[18,-21],[15,-18],[20,-8],[26,14],[15,27],[23,-5],[11,-22],[2,-29],[-8,-27],[-18,-20],[-15,-30],[-13,-25],[-10,-29],[-6,-44],[8,-26],[15,-18],[36,-15],[20,-12],[-8,-30],[-30,-15],[-4,-25],[13,-31],[-19,-39],[-36,-23],[-22,8],[-21,27],[-22,9],[-18,-16],[-2,-26],[-6,-38],[5,-36],[34,-26],[19,-19],[2,-51],[-6,-27],[-15,-33],[-28,-30],[-3,-4],[-22,-18],[-16,-18],[-11,-25],[-7,-38],[-1,-52],[7,-38],[2,-9],[4,-19],[6,-31],[11,-24],[12,-20],[21,-24],[28,-15],[23,-2],[50,0],[28,-14],[16,-23],[4,-26],[-15,-31],[-25,-39],[-35,-29],[-18,-23],[-18,-18],[-34,-20],[-27,-5],[-18,-6],[-30,-21],[-45,-21],[-29,-4],[-19,-3],[-52,2],[-25,0],[-20,-10],[-20,-21],[-12,-20],[-17,-22],[-36,-4],[-20,6],[-28,5],[-42,-9],[-22,-12],[-15,-17],[-26,-24],[-12,-15],[-19,-24],[-13,-24],[-12,-27],[-18,-43],[-22,-23],[-34,-25],[-41,-27],[-28,-21],[-33,-29],[-30,-27],[-3,-2],[-26,-27],[-15,-23],[-1,0],[-7,-16],[-2,-6],[0,-2],[-1,-11],[0,-25]],[[49744,89303],[-80,1],[-21,0],[-29,2],[-27,0],[-22,0],[-235,4],[-23,-1],[-58,0],[-21,0],[-78,1],[-31,0],[-69,0],[-40,0],[-51,0],[-2,0],[-26,0],[-23,0],[-5,0],[-70,-1],[-24,0],[-27,0],[-43,0],[-43,0],[-24,1],[-22,-1],[-20,1],[-43,0],[-26,0],[-28,0],[-26,0],[-24,0],[-27,0],[-24,1],[-18,2],[-1,0],[-35,-3],[-20,-1],[-45,-1],[-20,0],[-30,0],[-53,0],[-32,0],[-19,0],[-35,1],[-41,0],[-27,2],[-47,-2],[-25,0],[-27,0],[-57,1],[-20,0],[-27,0],[-21,-3],[-21,-3],[-28,1],[-28,2],[-25,2],[-23,2],[-22,4],[-33,-7],[-25,-1],[-21,1],[-24,2],[-30,0],[-19,0],[-19,0],[-31,-1],[-39,0],[-25,1],[-21,0],[-20,0],[-23,-1],[-44,-1],[-25,-1],[-26,-1],[-28,0],[-37,0],[-21,0],[-26,1],[-27,-1],[-49,2],[-172,0],[-8,1],[-32,0],[0,114],[3,170],[-2,57],[-6,188],[-2,79],[-4,134],[-12,140],[0,1],[0,62],[0,38],[0,49],[0,26],[0,75],[0,60],[1,40],[1,47],[0,117],[1,34],[-1,4],[0,24],[0,46],[1,72],[0,42],[1,42],[0,24],[0,27],[0,27],[-1,112],[0,64],[1,50],[0,32],[1,58],[-19,25],[-29,1],[-22,0],[-34,0],[-69,-1],[-19,0],[-101,0],[-32,0],[-21,0],[-53,0],[-65,0],[-39,0],[-36,0],[-33,1],[-5,0],[-203,1]],[[49916,99672],[10,1],[1181,-5],[1185,-12],[377,-3],[526,-5],[25,-1]],[[56914,88821],[-153,13],[-55,0],[-305,-2],[-16,0],[-132,-1],[-59,0],[-1,-158],[-55,-35],[-19,-12],[-243,-156],[-77,-48],[-21,-13],[-69,-182],[-50,0],[-113,-1],[-39,-1],[-114,-1],[-69,1],[-67,0],[-89,0],[-114,-1],[-48,0],[-6,0],[-121,-1],[-371,-2],[-20,0],[-51,0],[-109,-1],[-152,-1],[-388,0],[-307,-2],[-105,1],[-944,7],[-35,0],[-238,3],[-286,4],[-99,2],[-395,-7],[-86,-1],[-41,-1],[-22,-1],[-22,-2],[-34,1],[-21,0],[-66,4],[-44,0],[-251,-3],[-103,-1],[-24,1],[-372,-2],[-185,0],[-1,0],[-72,1],[-13,0],[-45,-1],[-15,1],[-42,0],[-21,0],[-74,0],[-318,1]],[[49507,88224],[12,22],[28,57],[27,3],[31,-10],[39,-4],[28,11],[48,38],[24,5],[38,-7],[37,10],[16,20],[18,27],[14,28],[-2,34],[-24,37],[-29,27],[-14,24],[9,42],[23,22],[26,18],[37,24],[20,12],[1,3],[42,45],[3,2],[25,34],[8,27],[6,37],[-7,38],[0,3],[-104,189],[-27,41],[-11,14],[-21,21],[-20,20],[-20,20],[-2,2],[-1,2],[-14,20],[-3,5],[-2,4],[-5,14],[-7,35],[-4,20],[-4,19],[-2,24]],[[53220,99647],[740,-9],[53,-1],[915,-11],[113,-2],[49,0],[-17,-79],[-41,-195],[-8,-34],[-102,-172],[-178,-171],[-54,-32],[-171,-236],[-97,-105],[-22,-100],[63,-154],[-7,-48],[-60,-4],[-161,-241],[-54,-186],[5,-197],[106,-228],[210,-197],[377,-158],[111,-20],[9,-1],[11,-2],[197,12],[285,137],[211,298],[55,261],[-94,437],[-34,159],[7,33],[15,72],[2,8],[87,65],[21,93],[-71,94],[-70,72],[7,61],[21,29],[20,27],[6,104],[178,110],[341,111],[220,-56],[115,-128],[26,-57],[53,-63],[123,-329],[28,-269],[-51,-60],[-29,-35],[22,-77],[22,-23],[65,-78],[120,-154],[69,-132],[59,-197],[1,-5],[4,-20],[6,-172],[-8,-95],[-7,-83],[-11,-51],[-42,-164],[-24,-63],[-13,-30],[-64,-126],[-37,-62],[-128,-137],[-68,-83],[-15,-26],[-10,-21],[-28,-41],[-31,-45],[-137,-155],[-109,-105],[-27,-2],[-40,-3],[-50,-13],[-56,-22],[-23,-11],[-60,-49],[-3,-2],[-55,-53],[-110,-135],[-110,-120],[-81,-69],[-91,-87],[-39,-47],[-47,-75],[-37,-96],[-24,-88],[-25,-97],[-8,-54],[-5,-99],[-39,-99],[-40,-108],[-24,-205],[-3,-64],[-28,-202],[-6,-156],[-2,-31],[-7,-184],[81,-458],[93,-247],[9,-24],[47,-34],[62,-78],[11,-16],[33,-33],[64,-37],[37,-11],[80,-20],[137,-14],[53,10],[126,48],[61,15],[99,13],[60,3],[72,2],[81,2],[104,-6],[17,-1],[131,-29],[51,-21],[73,-35],[79,-50],[116,-74],[23,-17],[95,-113],[-12,-183],[-12,-63],[-3,-19],[-25,-94],[-23,-54],[-65,-159],[-27,-67],[-43,-129],[-32,-60],[-18,-24],[-82,-78],[-116,-77],[-198,-99],[-55,-25],[-120,-36],[-38,-7],[-111,-37],[-51,-31],[-59,-34],[-32,-13],[-132,-55],[-29,-4],[-91,-88],[-21,-20],[-62,-33],[-78,-76],[-39,-67],[-91,-90],[-112,-144],[-12,-98],[-38,-310],[94,-351],[-1,-90],[12,-44],[33,-91],[21,-47],[81,-145],[22,-39],[41,-48],[175,-166],[154,-41],[46,30],[2,7],[41,113],[130,-23],[161,75],[342,140],[50,46],[171,44],[158,64],[240,51],[33,182],[137,280],[17,183],[77,124],[91,75],[49,68],[27,7],[8,2],[6,2],[15,40],[55,-22],[182,-152],[192,-369],[7,-237],[-100,-255],[-105,-142],[-47,-46],[-140,-134],[-61,-58],[-124,-172],[-199,-132],[-503,-329],[-19,-14]],[[31176,89325],[0,-179],[0,-75],[0,-202],[0,-212],[-1,-91],[0,-92],[1,-26],[-2,-313],[0,-12],[0,-54],[-1,-235],[-1,-150],[0,-10],[0,-58],[-1,-118],[0,-38],[0,-65],[-1,-92],[0,-73],[1,-41]],[[31171,87189],[-224,2],[-214,1],[-134,0],[-125,1],[-279,2],[-18,0],[-35,0],[-94,1],[-52,-1],[-94,1],[-155,1],[-46,0],[-154,-1],[-29,0],[-101,2],[-129,3],[-110,2],[-247,-1],[-27,2],[-26,-1],[-30,-1],[-49,1],[-49,0],[-26,0],[-30,0],[-24,0],[-26,0],[-22,1],[-16,0],[-49,1],[-33,0],[-22,2],[-45,3],[-41,1],[-48,0],[-24,-2],[-27,-1],[-22,-1],[-21,-3],[-25,0],[-177,3],[-60,1],[-93,-1],[-3,0],[-53,0],[-60,1],[-66,0],[-110,1],[-44,0],[-10,1],[-19,0],[-33,0],[-33,0],[-26,1],[-50,0],[-47,0],[-31,0],[-62,0],[-44,1],[-20,0],[0,-38],[1,-269],[6,-66],[1,-26],[0,-60],[0,-40],[0,-9],[1,-21],[-2,-58],[1,-30],[3,-35],[0,-26],[0,-31],[-3,-30],[1,-26],[0,-25],[1,-36],[1,-41],[1,-36],[-1,-44],[-1,-31],[0,-25],[1,-45],[-51,-16],[-193,-1],[-19,0],[-77,0],[-55,1],[-23,0],[-157,1],[-59,1],[-30,0],[-20,1],[-32,0],[-32,0],[-65,1],[-74,1],[-100,1],[-109,1],[-98,1],[-258,2],[-133,1],[-126,1],[-271,1],[-47,1],[-46,0],[-261,2],[-67,0],[-37,-4],[-310,1],[-97,2],[-52,-1],[-78,0]],[[24242,86162],[-272,0],[-274,13],[-46,1],[-1,0],[-49,0],[-434,3],[-109,1],[-179,2],[-89,0],[-144,2],[-75,-2],[-75,-1],[-128,0],[-79,-3],[-1,226],[-1,127],[5,180],[-5,167],[-12,425],[0,117],[1,118],[1,60],[1,151],[1,120],[1,56],[-1,312],[0,72],[0,25],[0,8],[-2,50],[-4,130],[-1,92],[0,34],[-1,48],[-1,57],[-4,238],[0,25],[-3,144],[-1,72],[-2,146]],[[40788,87444],[-95,-140],[-1,0],[-33,-49],[-18,-18],[-20,-8],[-24,-17],[-13,-14],[-1,0],[-24,-3],[-19,-11],[-18,-13],[-16,-21],[-22,-20],[-25,-3],[-21,-2],[-19,-6],[-17,-16],[1,-26],[1,-3],[-19,-42],[-9,-33],[-16,-72],[12,-12],[3,-4],[5,-29],[-10,-21],[-19,-24],[-18,-19],[-17,-36],[-16,-34],[-9,-24],[-12,-29],[-24,-28],[-8,-29],[8,-23],[11,-22],[-1,-20],[-50,-87],[-22,-55],[-10,-38],[-7,-28],[-9,-30],[-21,-67],[-33,-106],[-9,-31],[-51,-120],[-44,-93],[-71,-91],[-25,-33],[-79,-102],[-125,-182],[-22,-29],[-6,-8],[-4,-8],[-27,-47],[19,-14],[6,-28],[0,-26],[-20,-4],[-18,-10],[-7,-25],[-14,-25],[-23,-13],[-10,-28],[-22,-3],[-15,15],[-15,18],[-1,-1],[-26,-28],[-4,-3],[-3,-3],[-54,-39],[-10,-7],[-5,-17],[-14,-38],[-40,-111],[-12,-21],[-4,-4],[-27,-27],[-5,-5],[-5,-10],[-73,-146],[-4,-11],[-6,-17],[-1,-3],[-8,-20],[-25,-48],[-1,-4],[-19,-43],[-6,-14],[-57,-134],[-5,-8],[-64,-115],[-15,-75],[-4,-96],[-9,-37],[-29,-29],[-2,-2],[-18,-66],[-25,-146],[6,-43],[2,-8],[14,-21],[9,-12],[26,-119],[-10,-43],[-49,-43],[-34,-42],[-8,-10],[-1,-11],[-2,-10],[-3,-19],[3,-107],[33,-73],[4,-9],[1,-20],[2,-25],[1,-27],[-8,-28],[-9,-28],[-8,-26],[-3,-4],[-26,-35],[-1,-18],[-1,-22],[5,-59],[-24,-39],[-21,-47],[-15,-48],[-5,-83],[-8,-123],[-17,-68],[-16,-45],[-7,-19],[-2,-32],[-3,-32],[-5,-13],[-9,-24],[-5,-15],[3,-24],[3,-14],[-17,-112],[-97,-231],[-35,-76],[-33,-33],[-4,-4],[-61,-60],[-16,-16],[-6,-14],[-28,-63]],[[38465,81850],[-386,4],[-596,-14],[-49,-1],[-15,3],[-6,1],[-21,0],[-23,-1],[-2,0],[-239,-3],[-42,0],[4,-353],[1,-89],[-167,0],[-197,4],[-66,-1],[-136,0],[-296,-1],[-28,0],[6,107],[-1,1],[-28,52],[-70,33],[-86,73],[-29,49],[-1,3],[-23,123],[-106,0],[-41,0],[-204,-1],[-124,0],[-279,-1],[-46,0],[-305,-1],[-158,-1],[-123,0],[-132,-1],[-35,0],[-43,0],[-39,4],[-60,1],[-129,0],[-109,2],[-288,5],[-65,1],[-219,5],[-110,2],[-202,4]],[[33152,81859],[0,165],[1,440],[-1,35],[1,392],[0,27],[-35,37],[-139,149],[-25,27],[-23,26],[-26,28],[-101,109],[-40,42],[-272,291],[-168,181],[-102,109],[-94,101],[-56,60],[-82,88],[-51,56],[-25,26],[-22,24],[-27,29],[-157,168],[-82,88],[-137,148],[-3,3],[-157,168],[-55,58],[-5,6],[-97,103],[-3,25],[0,163],[1,629],[0,203],[0,201],[0,228],[0,108],[0,6],[0,24],[1,29],[-1,49],[0,36],[1,64],[-1,213],[1,26],[-1,51],[1,30],[0,61]],[[49507,88224],[-26,-27],[-20,-9],[-30,-5],[-25,-5],[-30,-17],[-40,-2],[-23,0],[-20,-17],[-9,-34],[-32,-34],[11,-25],[25,-12],[18,-20],[3,-39],[-8,-24],[-45,-22],[-2,-26],[23,-26],[0,-25],[-43,-38],[-16,-20],[-15,-36],[-5,-29],[-8,-23],[-15,-48],[-20,-30],[-11,-40],[-1,-30],[-5,-28],[-14,-31],[-20,-20],[-12,-20],[-10,-24],[-8,-39],[-6,-26],[-8,-26],[-21,-8],[-13,31],[-15,16],[-23,-4],[-6,-26],[19,-26],[3,-27],[9,-24],[21,-16],[21,9],[19,-6],[-35,-30],[-18,-22],[-28,-29],[3,-33],[19,-22],[9,-22],[16,-25],[-9,-26],[-25,0],[-28,-45],[-13,-17],[-2,-26],[2,-28],[20,-68],[1,-8],[-1,-9],[-2,-4],[0,-1],[-1,-1],[-4,-5],[-8,-9],[-2,-3],[-4,-6],[6,-93],[2,-2],[21,-28],[26,-6],[19,-9],[5,-25],[-29,-19],[-18,-13],[2,-30],[0,-1],[8,-9],[10,-10],[2,-1],[25,-15],[11,-11],[5,-8],[53,-125],[1,-3],[7,-25],[1,-2],[27,-122],[15,-69],[12,-55],[4,-24],[-1,-16],[0,-10],[0,-1],[-2,-9],[-4,-9],[-4,-9],[0,-1],[-1,0],[-11,-11],[-30,-21],[-1,0],[-6,-3],[-1,-3],[-13,-41],[-2,-6],[7,-9],[6,-8],[47,-68],[5,-1],[17,-4],[35,-7],[20,-37],[-2,-33],[0,-8],[-4,-4],[-4,-15],[0,-1],[-6,-12],[-9,-10],[-10,-10],[-22,-9],[-18,-1],[-18,7],[-18,7],[-33,13],[-11,6],[-6,6],[-1,1],[-1,2],[-7,7],[-15,7],[-8,3],[-16,-4],[-18,-13],[-35,-29],[-14,-24],[-8,-19],[-2,-9],[-14,-220],[-1,-18],[0,-2],[0,-1],[1,-6],[4,-11],[2,-8],[23,-63],[1,-2],[21,-47],[1,-2],[0,-16],[0,-38],[-1,-29],[-3,-10],[-4,-10],[-14,-15],[-15,-9],[-6,-5],[0,-1],[-1,-7],[52,-60],[2,-2],[47,-56],[14,-10],[65,-47],[14,-14]],[[49142,84997],[-25,-6],[-60,4],[-63,-2],[-41,-2],[-45,-1],[-34,2],[-24,0],[-1,0],[-44,0],[-75,0],[-21,-1],[-31,0],[-52,0],[-24,1],[-47,0],[-25,0],[-70,-1],[-75,0],[-32,0],[-25,0],[-27,0],[-39,0],[-21,0],[-51,-1],[-26,0],[-33,0],[-25,1],[-41,0],[-56,-1],[-28,0],[-15,0],[-28,-1],[-64,0],[-23,-1],[-58,2],[-21,1],[-42,0],[-52,0],[-38,0],[-45,0],[-94,1],[-133,-1],[-25,0],[-111,-1],[-28,0],[-46,0],[-35,-1],[-114,-2],[-50,1],[-19,0],[-43,1],[-24,-2],[-173,4],[-86,0],[-158,0],[-155,-5],[-188,0],[1,-3],[7,-6],[7,-3],[17,-1],[1,0],[15,3],[10,-3],[1,-1],[8,-5],[5,-6],[2,-3],[0,-1],[0,-1],[0,-8],[-2,-6],[-4,-5],[-9,-7],[-84,-57],[-17,-8],[-10,-2],[-1,0],[-11,7],[-55,-43],[-1,-2],[-35,-107],[-1,0],[-69,-11],[-55,-12],[-6,-4],[-5,-9],[0,-9],[6,-13],[16,-32],[3,-8],[1,-7],[-2,-6],[-5,-6],[-1,-1],[-6,-5],[-9,-4],[-1,-1],[-1,0],[-146,-35],[-45,-11],[-20,0],[-17,5],[-11,6],[-44,25],[-1,0],[-15,-8],[-1,0],[-65,2],[-12,-2],[-1,0],[-14,-6],[-9,-13],[0,-16],[2,-9],[4,-8],[13,-19],[11,-18],[2,-8],[0,-13],[-2,-9],[-6,-6],[-8,-5],[-48,-1],[-18,0],[-45,8],[-8,3],[-1,2],[-1,2],[-13,5],[-36,13],[-2,-1],[-15,-2],[-2,-1],[-1,-1],[-2,-5],[-1,-12],[13,-42],[2,-4],[15,-29],[4,-12],[2,-12],[-5,-85],[-3,-9],[-3,-12],[-27,-49],[-88,-45],[-1,0],[-113,-23],[-117,19],[-15,0],[-8,-3],[-8,-8],[-2,-8],[-1,-18],[1,-5],[5,-22],[8,-24],[5,-31],[1,-2],[1,-4],[2,-5],[5,-14],[4,-8],[1,-5],[4,-19],[0,-3],[1,-1],[1,-11],[-6,-14],[0,-1],[-1,-1],[-6,-7],[-15,-6],[-2,-1],[-32,-9],[-14,-2],[-9,-1],[-13,-7],[-7,-7],[-12,-17],[-10,-23],[0,-13],[2,-7],[26,-60],[4,-5],[6,-4],[0,1],[11,2],[3,-102],[-6,-56],[-11,-110],[-1,-7],[-6,-17],[-10,-16],[-12,-11],[-10,-3],[-13,-2],[-40,17],[-21,4],[-14,0],[-25,-1],[-89,-6],[-13,-8],[-2,-8],[-14,-64],[-2,-7],[-4,-5],[-61,-71],[-22,-16],[-13,-6],[-2,0],[-25,-8],[-7,-7],[0,-1],[-1,-1],[-2,-7],[-4,-17],[0,-2],[-1,-6],[-28,8],[-47,10],[-73,16],[-15,-1],[-14,-4],[-23,-11],[-32,-22],[-1,0],[-17,-5],[-18,2],[-2,0],[-45,9],[-23,5],[-2,1],[-15,5],[-7,5],[-1,1],[-7,7],[-5,11],[-2,6],[-4,35],[0,2],[-6,34],[-4,9],[-16,17],[-8,4],[-21,-2],[-4,-41],[-2,-6],[0,-1],[-5,-7],[-9,-7],[-36,-23],[-13,-6],[-1,-1],[-1,0],[-92,-39],[-26,-4],[-13,1],[-69,28],[-5,2],[-9,5],[-4,-3],[-5,-6],[-9,-17],[-49,-91],[-2,-7],[1,-7],[6,-7],[17,-16],[3,-3],[28,-31],[5,-8],[42,-189],[0,-1],[0,-4],[1,-1],[0,-2],[0,-9],[0,-19],[-1,-11],[-2,-7],[-12,-38],[-13,-41],[-2,-1],[-37,-11],[-15,-9],[-4,-2],[-37,-24],[-7,-8],[-6,-11],[-4,-9],[-1,-5],[2,-6],[3,-5],[11,-5],[15,0],[28,0],[39,6],[3,2],[5,4],[17,14],[8,-8],[0,-1],[5,-10],[3,-9],[0,-17],[0,-1],[-36,-101],[-5,-8],[-14,-7],[-22,4],[-21,10],[-17,14],[-21,-5],[2,-30],[-11,-38],[-13,-43],[8,-22],[22,9],[24,10],[7,24],[24,-7],[22,-77],[-20,2],[-18,-8],[-18,-12],[-24,3],[-20,-5],[-15,-24],[-15,-22],[11,-27],[21,7],[24,-4],[20,2],[14,23],[25,-9],[-6,-26],[8,-29],[-1,-2],[-25,-43],[-11,-19],[-7,-9],[-1,-1],[-2,-2],[-12,-9],[-14,-7],[-2,-1],[-13,-9],[-9,-9],[-4,-11],[-14,-49],[-2,-14],[2,-16],[0,-1],[3,-4],[0,-15],[0,-2],[-2,-6],[0,-22],[10,-26],[-10,-23],[-20,10],[-25,-9],[-20,-26],[-16,-21],[-11,-10],[-2,-3],[-12,-22],[-2,-7],[-10,-90],[0,-1],[15,-24],[26,-1],[21,4],[10,-25],[-25,-12],[-25,-10],[6,-25],[-18,-66],[-6,-46],[0,-1],[2,-20],[3,-15],[2,-6],[5,-6],[10,-13],[1,-1],[19,-10],[5,-4],[37,-41],[-11,-22],[-21,0],[-20,8],[-10,-22],[14,-21],[20,-4],[20,-6],[19,-8],[1,-6],[3,-19],[-1,-1],[-5,-10],[-17,-13],[-2,-1],[-16,-20],[-21,2],[-21,-12],[3,-30],[17,-19],[4,-10],[5,-12],[10,-78],[-42,-11],[-14,-6],[-7,-8],[-3,-6],[-4,-15],[-6,-36],[2,-14],[3,-8],[5,-11],[-3,-1],[-28,-10],[-19,10],[-33,8],[-19,-14],[1,-26],[22,-13],[28,-8],[17,-25],[4,-25],[-13,-19],[-25,-2],[-20,16],[-12,22],[-16,15],[-18,7],[-29,-11],[-23,-17],[-29,-5],[-20,-11],[-1,-26],[22,-10],[11,-8],[5,-4],[7,-5],[-1,-3],[1,-14],[-2,-5],[-5,-9],[-10,-8],[-46,-39],[-50,-35],[-50,-65],[20,-63],[6,-22],[3,-7],[-1,0],[-37,-14],[-59,1],[-12,-4],[-89,-35],[-10,-5],[-70,-43],[-18,-12],[-28,-18],[-29,-18],[-3,-2],[2,33],[-9,27],[-18,10],[-19,-6],[2,-27],[7,-27],[9,-30],[-7,-4],[-6,-14],[-1,-1],[-3,-6],[-9,-11],[-70,-56],[-48,-29],[0,-1],[-6,-1],[1,-4],[25,-146],[-22,-30],[-11,-15],[-9,-12],[-1,-1],[-67,-48],[-7,-83],[-7,-94],[1,-12],[4,-16],[-37,-57],[-5,-2],[-55,-80],[-2,-3],[-1,-1],[-7,-11],[-4,-12],[0,-1],[0,-1],[-45,-112],[-3,-8],[-22,-55],[-7,-17],[-3,-7],[-10,-27],[-9,-15],[-2,-2],[-10,-10],[-39,-22],[-75,-43],[-122,-53],[-16,2],[-13,2],[-16,20],[0,15],[-5,5],[-19,19],[-6,5],[-42,11],[-3,0],[-37,-56],[-29,-23],[-7,1],[-45,7],[-2,0],[-2,1],[-26,16],[-26,1],[-31,2],[-16,-1],[-4,-1],[-9,0],[-23,1],[-19,-2],[-32,-3],[-65,-6],[-13,-2],[-11,-5],[-76,-41],[-3,-2],[-2,-2],[-70,-68],[-16,-16],[-10,-11],[-13,-14],[-18,-18],[-3,-3],[-30,-81],[-2,-3],[0,-19],[10,-32],[0,-2],[-7,-12],[-19,-31],[-7,-11],[-22,-30],[-58,-79],[-10,-15],[-6,-13],[-5,-25]],[[41139,78781],[-14,16],[-9,8],[-6,2],[-15,-1],[-23,-6],[-24,-2],[-1,0],[-10,4],[-7,7],[-1,0],[-1,10],[3,9],[7,7],[21,12],[49,24],[37,16],[12,5],[2,1],[2,4],[2,2],[3,8],[28,107],[-1,17],[0,1],[-3,8],[-8,9],[-8,7],[-38,19],[-4,2],[-122,45],[-1,3],[-9,6],[-20,13],[-8,4],[-2,0],[-135,61],[-17,-2],[-12,-8],[0,-1],[-19,-35],[-11,-12],[-10,-6],[-26,-7],[-1,-1],[-1,0],[-10,0],[-17,3],[-2,1],[-28,11],[-6,3],[-10,7],[-11,7],[-8,5],[-20,9],[-12,1],[-18,-2],[-22,-9],[-10,-7],[-7,-9],[0,-1],[-4,-9],[-14,-17],[-8,-4],[-21,-8],[-82,-5],[-8,0],[-9,3],[-7,4],[-2,1],[-3,1],[-87,57],[-1,1],[-1,0],[-5,5],[-14,13],[-5,5],[-8,10],[-11,17],[-4,6],[-3,7],[-1,1],[-2,9],[-1,7],[0,10],[0,1],[6,23],[4,19],[-1,21],[-6,13],[-8,9],[-3,1],[-2,0],[-37,3],[-2,0],[-2,-3],[-9,-13],[-13,-15],[-2,-2],[-3,-2],[-37,-30],[-41,-1],[-8,0],[-9,13],[-2,2],[-20,25],[-4,5],[-25,4],[-44,-22],[-26,-26],[-11,-12],[-49,-50],[-1,-1],[-6,-3],[-11,-6],[-3,-2],[-12,-3],[-5,1],[-65,4],[-61,4],[-3,1],[-1,-1],[-28,-13],[-29,-27],[-31,-28],[-8,-7],[-29,-11],[-1,0],[-48,-7],[-31,2],[-18,5],[-5,2],[-1,2],[-13,14],[-7,22],[1,26],[0,4],[19,36],[45,56],[3,4],[1,2],[7,15],[7,16],[2,6],[11,39],[3,55],[0,16],[-7,22],[-33,57],[-15,49],[-7,47],[-12,37],[-17,19],[-34,18],[-5,3],[-1,1],[-13,15],[-5,18],[1,22],[0,6],[7,15],[7,7],[11,11],[22,12],[23,12],[13,7],[50,12],[2,1],[3,3],[56,53],[6,9],[10,17],[0,2],[0,2],[1,27],[-4,50],[-4,27],[-13,15],[-1,1],[-8,10],[-23,10],[-34,2],[-44,-20],[-48,-43],[-18,-17],[-30,-27],[-7,-6],[-19,-10],[-72,-35],[-26,-21],[-149,-131],[-33,6],[-66,5],[-39,3],[-23,24],[-7,39],[8,46],[17,67],[9,49],[7,13],[0,1],[14,7],[35,19],[52,21],[15,9],[31,20],[2,2],[2,2],[100,119],[13,13],[20,19],[25,9],[2,1],[42,15],[107,13],[11,6],[39,38],[12,24],[4,6],[3,19],[0,6],[1,4],[1,26],[-5,34],[-10,32],[-19,37],[-27,32],[-20,10],[-22,1],[-12,-5],[-21,-21],[-12,-24],[-21,-97],[-37,-69],[-39,-38],[-26,-18],[-111,-41],[-41,2],[-2,0],[-5,3],[-3,2],[-9,7],[-6,7],[-3,5],[-2,5],[-4,11],[-1,2],[1,17],[11,22],[4,5],[5,9],[7,10],[10,15],[16,6],[20,7],[45,17],[48,44],[10,18],[5,9],[1,1],[19,63],[1,30],[0,6],[-4,22],[-25,35],[-28,20],[-65,24],[-37,2],[-11,-7],[-5,-4],[-16,5],[-20,6],[-16,1],[-12,-1],[-1,1],[-6,14],[-10,17],[-6,10],[-8,14],[-4,7],[0,10],[1,2],[5,17],[5,2],[1,1],[48,2],[2,0],[1,1],[20,5],[3,0],[7,7],[2,3],[4,4],[2,2],[5,4],[21,36],[7,31],[0,3],[3,65],[3,67],[-2,40],[-1,30],[9,21],[41,35],[129,62],[32,11],[18,18],[3,3],[0,24],[-3,4],[-7,8],[-11,14],[-5,0],[-32,1],[-23,1],[-27,-11],[-20,-20],[-3,-3],[-4,-1],[-20,-7],[-31,1],[-60,12],[-9,23],[-7,76],[29,44],[29,36],[48,62],[16,22],[2,3],[20,33],[1,2],[0,1],[8,17],[2,5],[8,19],[7,28],[6,60],[0,33],[-18,93],[-37,43],[-26,0],[-1,0],[-25,-1],[-22,0],[-56,1],[-634,7],[-21,0]],[[24242,86162],[1,-37],[6,-366],[2,-138],[1,-54],[2,-107],[5,-281],[16,-220],[2,-31],[3,-44],[4,-46],[-6,-188],[2,-55],[13,-33],[2,-28],[1,-38],[-5,-249],[-8,-19],[-1,-3],[0,-35],[3,-101],[1,-89],[1,-31],[6,-261],[0,-24],[1,-48],[2,-173],[0,-3],[-6,-130],[0,-52],[-2,-188],[-5,-150],[2,-35],[4,-58],[13,-168],[4,-87],[2,-140],[2,-155],[2,-172],[1,-73],[0,-41],[0,-31],[0,-112],[0,-27],[-1,-242],[0,-48],[0,-5],[0,-41],[-1,-37],[0,-26],[-12,-154],[-9,-98],[0,-31],[0,-9],[-2,-151],[-2,-128],[4,-19],[-6,-51],[-37,-18],[-43,-101],[-6,-21],[-9,-9],[-13,-11],[-39,-35],[0,-1],[-4,-23],[0,-1],[-2,-62],[-1,-20],[-1,-31],[-1,-41],[-10,4],[-7,0],[-28,-4],[-4,-3],[-24,-24],[-6,-10],[-1,-7],[-46,-67],[-1,0],[-64,-13],[-12,-2],[-6,-3],[-12,-7],[-69,-34],[-9,-4],[-29,-15],[-11,-7],[-4,-4],[-12,-30],[-1,-9],[8,-27],[1,-2],[6,-9],[7,-9],[4,-11],[5,-11],[33,-90],[0,-26],[-21,-81],[-16,-70],[-12,-54],[-3,-16],[-1,-4],[1,-8],[0,-4],[1,-1],[8,-6],[28,-14],[16,-7],[8,-3],[7,-5],[1,-5],[0,-2],[0,-4],[2,-41],[-2,-6],[-3,-1],[-13,1],[-23,12],[-1,1],[-27,24],[-20,-17],[0,-10],[8,-124],[8,-6],[11,-9],[11,-4],[7,9],[5,0],[10,-10],[3,-24],[-1,-2],[-2,-8],[-6,-18],[-10,-8],[-1,-2],[-27,-18],[-26,-13],[-7,1],[-2,-2],[-59,-83],[-88,-141],[-21,-25],[-28,-34],[-28,-34],[-14,-17],[-21,-25],[-74,9],[-17,0],[-7,-5],[-13,-20],[6,-13],[10,-19],[6,-11],[22,-44],[9,-19],[39,-103],[1,-8],[-1,0],[-4,-8],[-7,-7],[-11,-12],[-5,-1],[-4,4],[-9,2],[-5,2],[-21,-37],[-1,-11],[9,-8],[46,-41],[9,-8],[34,-31],[12,-13],[16,-16]],[[23528,78667],[-509,9],[-172,1],[-350,3],[-130,0],[-162,4],[-66,1],[-64,3],[-239,6],[-362,-3],[-162,1],[-164,1],[-5,0]],[[21143,78693],[-45,0],[-63,0],[-327,2],[-208,2],[-7,1],[-88,-2],[-60,-1],[-94,-1],[-165,-3],[-112,-2],[-45,16],[-22,0],[-265,0],[-41,0],[-127,0],[-146,-1],[-129,-1],[-129,0],[-41,0],[-64,-1],[-126,0],[-75,0],[-65,0],[-121,-1],[-168,0],[-35,0],[-26,0],[-29,-1],[-229,0],[-23,0],[-7,0],[-18,0],[-32,0],[-74,0],[-44,1],[-62,-1],[-41,1],[-58,1],[-169,-7],[-176,1],[-125,1],[-100,1],[-107,2],[-69,1],[-113,2],[-32,0],[-74,-3],[-166,2],[-7,0],[-201,2]],[[16393,78704],[-36,70],[-1,14],[1,46],[-3,8],[-2,26],[2,25],[-9,23],[2,26],[-8,25],[-13,28],[0,26],[-24,9],[-15,21],[-14,23],[9,22],[-14,18],[17,29],[17,19],[6,24],[3,5],[-8,60],[-3,21],[-11,79],[-13,97],[-4,25],[-56,119],[-3,4],[-36,20],[-38,17],[-23,-8],[-4,4],[-21,25],[-5,6],[-17,0],[-5,3],[-33,21],[-12,12],[-6,6],[-4,8],[-9,21],[1,3],[4,2],[-3,4],[-17,21],[-11,13],[-33,40],[-17,9],[-2,1],[4,3],[18,13],[0,5],[-3,18],[-23,24],[-8,16],[-2,4],[0,29],[-9,17],[6,25],[-12,21],[1,25],[1,31],[-15,24],[-9,26],[-20,22],[5,24],[19,-6],[1,25],[4,27],[18,16],[2,24],[1,28],[15,19],[-4,31],[8,33],[-15,28],[16,27],[32,53],[11,67],[-11,109],[-14,88],[-4,30],[-4,24],[0,9],[-32,38],[-21,26],[-105,1],[-69,0],[-44,0],[-56,0],[-174,0],[-27,0],[-79,0],[-85,-2],[-23,0],[-29,-2],[-79,1],[-92,1],[-36,0],[-270,-1],[-95,0],[-1,0],[-131,0],[-169,0],[-52,0],[-35,0],[-252,-1],[-1,0],[-104,2],[-53,1],[-20,0],[-20,0],[-164,0],[-71,0],[-110,0],[-26,0],[-37,-1],[-109,-3],[-21,-3],[-24,2],[-33,0],[-24,6],[-222,-3],[-106,-1],[-36,-1],[-98,1],[-73,1],[-237,2],[-74,-1],[-95,1],[-65,0],[-20,0],[-36,1],[-83,0],[-95,1],[-34,-2],[-6,0],[-24,-1],[-76,-3]],[[57678,78023],[-64,-4],[-109,48],[-149,45],[-104,1]],[[57252,78113],[13,173],[22,279],[50,157],[-19,201],[-115,156],[-60,210],[10,211],[21,-14],[16,-5],[94,-37],[9,-5],[33,-24],[1,-3],[115,-63],[2,0],[5,-1],[61,-42],[0,-1],[13,-10],[20,-22],[9,-8],[28,-28],[29,-24],[13,-9],[62,-65],[20,-22],[68,-48],[180,-61],[198,22],[64,8],[54,-316],[-6,-89],[-26,-69],[-85,-91],[-28,-54],[-31,-41],[-25,-41],[-6,-9],[-1,-2],[-12,-41],[-16,-27],[-22,-21],[-89,-89],[-12,-6],[-70,-33],[-161,-86]],[[55895,80237],[23,16],[23,22],[6,24],[-3,34],[-19,18],[-2,30],[3,28],[-9,23],[-24,23],[4,24],[7,30],[1,28],[12,29],[8,33],[0,33],[-5,36],[8,32],[-9,23],[-12,34],[-9,24],[10,25],[15,21],[9,35],[12,19],[5,24],[-4,33],[-19,17],[-29,30],[-32,30],[-18,18],[-77,82],[-34,31],[-19,14],[-15,9],[-11,7],[-38,2],[-26,1],[-27,1],[-29,-4],[-108,-18],[-22,-6],[-60,-31],[-3,-1],[-21,-13],[-22,-10],[-63,-23],[-62,-18],[-26,-3],[-97,-2],[-31,4],[-39,7],[-33,2],[-142,8],[-1,0],[-86,4],[-21,-4],[-5,-1],[-59,-19],[-55,-21],[-4,-2],[-19,-8],[-41,-17],[-1,0],[-148,-67],[-12,-6],[-39,-21],[-79,-45],[-4,-3],[-49,-32],[-24,-16],[-98,-165],[-57,4],[-21,2],[-37,2],[-75,-152],[-28,-53],[-16,-31],[-12,-21],[-38,-80],[-20,-49],[-33,-55],[-103,37],[-38,39],[-2,2],[-81,74],[-12,12],[-12,7],[-1,0],[-10,5],[-20,-1],[-14,-2],[-3,-4],[-1,0],[-4,-17],[-3,-16],[-3,-2],[-88,38],[-131,84],[-13,11],[-78,87],[-9,13],[-10,21],[-8,20],[-3,10],[-1,11],[0,14],[4,10],[0,14],[-4,17],[-5,10],[-6,10],[-5,6],[-8,3],[-9,-1],[-21,-7],[-8,-6],[-26,-17],[-29,-27],[-14,-17],[-6,-14],[0,-2],[-1,-3],[-11,-32],[-2,-12],[0,-1],[-1,-19],[-3,-18],[-2,-4],[-44,-53],[-5,-5],[-17,-14],[-6,-2],[-3,3],[-19,15],[-5,1],[-1,0],[-59,-31],[-7,-6],[0,-1],[-2,-5],[-2,-24],[-1,-9],[-4,-8],[-7,-9],[-5,-3],[-16,-1],[-7,2],[-8,7],[-6,6],[0,2],[-17,30],[-4,-5],[-12,-15],[-9,-2],[-25,23],[-1,0],[-5,3],[-9,0],[-54,0],[-22,0],[-34,-15],[-1,0],[-36,-32],[-3,-6],[0,-1],[-4,-11],[-12,-17],[0,-1],[-21,-20],[-17,-12],[0,-1],[-3,-1],[-29,-19],[-11,-8],[-54,-26],[-7,-1],[-7,2],[-24,4],[-41,-1],[-10,-3],[-5,-5],[-5,-5],[-17,-51],[-1,-6],[10,-7],[1,0],[6,-6],[2,-8],[-1,-7],[-3,-6],[-9,-11],[-9,-7],[-14,-6],[-15,-2],[-11,8],[-1,-3],[-38,-59],[-36,-55],[16,-18],[-81,1],[-168,1],[-39,0],[-243,2],[-15,0],[-72,1],[-45,1],[-144,2],[-95,1],[-140,2],[-242,0],[-32,0],[-516,2],[-334,2],[-1,0],[-82,0],[-72,1],[-73,0],[-33,0],[-143,1],[-35,1],[-56,0],[-28,0],[-68,1],[-73,0],[-66,1],[-9,0],[-13,0],[-184,1],[-191,1]],[[48836,80047],[-100,2],[-42,1],[-27,7],[-53,5],[-29,5],[-33,2],[-36,3],[-29,2],[-23,0],[-133,-3],[-315,-14],[-42,75],[-6,9],[0,1],[-2,2],[-10,10],[-8,5],[-1,0],[-1,1],[-16,5],[-23,-3],[-1,0],[-17,-8],[-19,-14],[-24,-22],[-10,-5],[-17,-1],[-11,4],[-8,6],[-7,13],[-3,8],[-1,11],[0,18],[0,1],[24,47],[5,10],[6,5],[19,23],[1,1],[8,13],[5,12],[1,1],[0,1],[4,13],[3,8],[12,31],[8,15],[11,20],[23,36],[11,18],[7,7],[1,1],[10,12],[18,17],[3,3],[21,15],[2,0],[16,5],[42,9],[12,2],[42,7],[6,1],[5,0],[9,0],[13,-1],[7,0],[3,-2],[11,-4],[5,-4],[18,-13],[14,-6],[8,-2],[19,3],[1,0],[4,1],[11,3],[15,8],[2,1],[31,24],[6,5],[22,20],[41,51],[2,2],[21,32],[11,22],[12,29],[12,43],[3,40],[0,58],[0,2],[2,13],[3,11],[3,9],[3,7],[4,12],[3,8],[12,26],[31,67],[13,28],[5,10],[17,26],[4,11],[-1,12],[-1,6],[0,1],[-1,1],[-1,3],[-7,17],[-9,9],[-30,5],[-15,-24],[-7,-39],[-8,-23],[-24,-45],[-45,-75],[-30,-35],[-20,-14],[-28,-17],[-45,-18],[-28,-5],[-53,1],[-28,3],[-30,6],[-46,13],[-31,12],[-66,17],[-25,14],[-25,13],[-29,19],[-30,26],[-58,69],[-26,29],[-16,17],[-29,37],[-24,24],[-21,16],[-33,16],[-21,8],[-19,15],[-1,6],[-5,21],[2,29],[12,31],[11,34],[14,26],[28,43],[22,27],[34,21],[37,14],[41,3],[23,0],[35,-2],[45,-29],[32,-25],[44,-23],[18,-17],[16,-25],[6,-23],[2,-38],[24,-31],[18,-11],[63,-10],[34,0],[26,3],[23,19],[17,20],[10,22],[2,18],[1,17],[-11,59],[-2,3],[-27,125],[-10,55],[6,58],[21,171],[10,87],[-6,17],[-64,201],[-31,98],[-4,58],[7,90],[7,91],[23,39],[45,19],[9,4],[1,0],[18,7],[8,3],[41,15],[17,2],[32,-13],[176,-86],[35,-20],[45,-76],[28,5],[5,18],[4,36],[16,138],[-17,174],[-4,81],[19,35],[17,16],[1,1],[32,31],[233,24],[125,29],[42,1],[61,-29],[57,3],[6,32],[-7,28],[-31,127],[-21,102],[11,90],[2,6],[0,9],[10,28],[21,27],[18,32],[0,25],[-6,27],[-17,28],[-18,22],[-38,22],[-19,4],[-30,-2],[-39,-11],[-36,-11],[-47,-20],[-30,-17],[-22,-11],[-35,-17],[-49,-14],[-23,-1],[-35,17],[-35,28],[-34,45],[-16,15],[-8,27],[-1,53],[10,37],[17,27],[17,42],[11,20],[26,43],[49,64],[29,21],[18,9],[19,13],[26,34],[17,24],[15,33],[17,41],[14,32],[7,30],[10,21],[22,8],[26,-13],[5,-24],[-6,-55],[-2,-24],[0,-32],[10,-35],[14,-43],[13,-34],[19,-30],[16,-25],[34,-30],[71,-23],[46,-5],[29,-6],[37,-2],[20,0],[26,6],[82,44],[1,1],[105,75],[5,6],[46,53],[25,42],[18,30],[0,1],[0,4],[1,6],[2,17],[-1,53],[-2,25],[0,2],[-2,10],[-15,46],[-2,7],[-2,4],[-9,15],[-7,11],[-13,16],[-2,3],[-21,19],[-19,16],[-9,8],[-33,23],[-3,2],[-1,1],[-55,35],[-71,47],[-1,0],[-62,49],[-52,47],[-50,46],[-25,25],[-26,39],[-10,21],[-11,52],[-1,11],[-1,1],[-11,36],[-7,18],[-20,51],[-4,11],[-5,12],[-71,79],[-39,42],[-2,2],[1,23],[1,10],[7,21],[19,20],[12,8],[14,5],[44,9],[13,0],[2,0],[36,-7],[17,1],[10,5],[2,3],[5,10],[2,7],[0,7],[-3,17],[0,1],[-1,1],[-3,8],[-14,20]],[[56914,88821],[-184,-141],[19,-46],[77,-192],[211,-205],[253,-182],[62,-28],[702,-322],[214,-148],[159,-191],[69,-145],[-2,-137],[-46,-84],[-109,-93],[-98,-44],[-372,59],[-329,144],[-214,198],[-162,246],[-136,249],[-11,20],[-97,210],[-83,129],[-362,383],[-16,-22],[-63,-85],[-1,-91],[-91,-112],[-12,-119],[-20,-119],[-31,-115],[-18,-57],[-32,-72],[-30,-85],[-11,-45],[3,-6],[-19,-71],[-55,-199],[-18,-42],[-11,-45],[-6,-120],[9,-53],[7,-31],[7,-16],[2,-40],[14,-71],[34,-113],[79,-148],[71,-84],[25,-17],[68,-80],[48,-77],[15,-35],[57,-69],[25,-30],[46,-46],[128,-96],[98,-55],[28,-7],[36,-21],[95,-57],[28,-24],[22,-13],[45,-22],[78,-46],[98,-40],[46,-8],[48,-9],[94,-21],[173,-46],[20,-7],[39,-12],[72,-9],[46,-8],[90,67],[92,70],[172,102],[169,137],[119,37],[265,-73],[157,-166],[103,-176],[7,-230],[1,-51],[0,-1],[0,-1],[-75,-158],[-187,-168],[-19,-18],[-120,-50],[-136,-57],[-8,-206],[-107,-310],[-9,-25],[-2,-5],[-6,-18],[-67,-202],[-4,-21],[-8,-154],[8,-77],[5,-16],[70,-84],[13,-10],[232,-127],[117,-63],[386,-86],[453,-54],[492,-116],[79,92],[85,100],[54,63],[118,247],[41,208],[18,44],[18,45],[51,20],[43,18],[24,9],[152,0],[7,-57],[3,-37],[-7,-17],[2,-2],[-9,-28],[-30,-69],[-53,-112],[-7,-14],[-42,-84],[-23,-54],[-32,-78],[-34,-83],[-29,-58],[-32,-62],[-60,-105],[-44,-80],[-9,-17],[-39,-66],[-22,-125],[-8,-42],[-22,-118],[-6,-12],[-49,-85],[-15,-26],[-14,-25],[-140,-243],[-161,-141],[-202,-175],[-286,-200],[-99,14],[-40,55],[-140,190],[-12,54],[-30,3],[-14,19],[-177,-1],[-93,-84],[-89,-336],[21,-236],[53,-78],[103,-150],[34,-60],[0,-1],[-10,-203],[-1,-9],[-157,-771],[-29,-73],[-121,-308],[-4,-12],[-32,-92],[-7,-14],[-149,-165],[-42,109],[-3,20],[-52,356],[17,198],[19,98],[-61,24],[-296,296],[-244,132],[-234,-10],[-101,-163],[-63,-238],[-108,-133],[-13,-16],[-109,84],[-47,68],[-30,29],[-82,24],[-281,-63],[-37,-30],[-161,-131],[-155,-237],[-41,-14],[-43,-14],[-29,-29],[-60,7],[-38,26],[-86,96]],[[33152,81859],[0,-258],[0,-26],[-1,-70],[-1,-87],[0,-92],[-1,-108],[0,-26],[1,-36],[0,-34],[-1,-14],[-1,-47],[-2,-100],[1,-42],[8,-292],[1,-30],[1,-40],[-6,-180],[-1,-70],[-1,-36],[0,-68],[1,-115],[1,-439],[0,-85],[-1,-128],[-2,-184],[-3,-533],[0,-71]],[[33145,78648],[-162,-4],[-203,-6],[-157,-2],[-224,3],[-274,9],[-21,1],[-11,0],[-153,6],[-46,0],[-30,0],[-463,-1],[-53,-4],[-34,2],[-179,-5],[-50,-3],[-93,-3],[-133,1],[-46,2],[-146,6],[-63,2],[-179,5],[-114,0],[-129,1],[-51,0],[-198,1],[-31,-1],[-31,-1],[-4,0],[-320,-2],[-24,0],[-313,2],[-91,0],[-62,0],[-53,0],[-95,1],[-22,0],[-205,1],[-142,1],[-2,0],[-90,1],[-109,0],[-44,-2],[-51,-1],[-24,1],[-104,2],[-53,0],[-93,1],[-213,2],[-28,0],[-127,1],[-21,0],[-73,1],[-26,0],[-85,0],[-141,1],[-102,0],[-20,0],[-178,0],[-35,0],[-42,0],[-90,0],[-34,0],[-32,0],[-71,0],[-76,0],[-71,1],[-134,0],[-77,1],[-106,0],[-25,0],[-167,0],[-190,-1],[-31,0],[-24,-1],[-19,0],[-1,0],[-57,1],[-129,2],[-56,0],[-48,0],[-194,1],[-258,2],[-30,0],[-66,1],[-93,0],[-40,-12],[-232,-1],[-181,0],[-294,-1],[-86,0],[-73,1],[-161,2],[-63,1],[-80,2],[-62,1]],[[48836,80047],[2,-88],[6,-275],[3,-509],[0,-30],[0,-36],[4,-52],[-2,-34],[-2,-37],[-4,-53],[-1,-26],[-8,-12],[-41,-65],[-1,-120],[-3,-7],[-4,-5],[-8,-8],[-14,-5],[-1,0],[-21,-3],[-8,-2],[-54,-49],[-32,-1],[-30,-10],[-24,20],[-14,-19],[-7,-33],[4,-29],[25,-8],[10,-24],[-2,-26],[15,-25],[9,-29],[-12,-29],[-14,-27],[2,-29],[-3,-24],[8,-28],[-6,-47],[-22,-29],[-20,-29],[8,-31],[13,-28],[6,-28],[2,-28],[8,-31],[2,-34],[-2,-28],[-11,-40],[-1,-26],[1,-25],[27,-35],[8,-26],[25,-12],[19,-17],[-20,-27],[3,-31],[5,-38],[0,-27],[15,-23],[-16,-23],[-21,3],[-19,-12],[-17,15],[-23,-14],[-20,8],[-17,-12],[-19,-14],[-9,-24],[-10,-39],[-5,-46],[9,-31],[22,-18],[69,-1],[28,-13],[17,13],[23,3],[29,-2],[28,-7],[40,-33],[15,-34],[6,-6],[9,-10],[7,-7],[3,0],[44,-4],[15,-2],[12,-1],[17,-22],[2,-3],[3,-4],[1,-37],[-3,-10],[-5,-24],[-3,-11],[-3,-15],[-20,-49],[-16,-24],[-14,-20],[-1,-6],[-1,-11],[-3,-17],[13,-14],[2,-3],[2,-2],[19,-11],[14,-9],[16,-26],[2,-10],[0,-8],[2,-16],[-3,-36],[-1,-10],[-1,-9],[-14,-9],[-7,-5],[-36,20],[-22,4],[-14,-11],[-7,-6],[-3,-9],[-1,-10],[0,-1],[-1,-17],[3,-9],[4,-13],[3,-12],[14,-16],[5,-2],[26,-12],[13,-16],[3,-9],[-1,-2],[0,-1],[-3,-22],[-8,-6],[-8,-7],[-5,-4],[-61,-22],[-11,-2],[-70,-15],[-5,-4],[-7,-7],[-11,-9],[-10,-98],[-9,-123],[-33,-112],[-7,-15],[-1,-27],[7,-14],[1,-1],[8,-17],[12,-14],[21,-25],[13,-28],[-2,-31],[-5,-12],[-5,-13],[-12,-29],[-8,-9],[-22,-23],[-12,-21],[-2,-25],[1,-1],[6,-36],[-8,-12],[-59,-86],[-6,-6],[0,-4],[0,-5],[-1,-18],[13,-18],[22,-30],[17,-23],[2,-3],[0,-7],[1,-39],[-7,-18],[-3,-9],[-5,-6],[-28,-32],[-9,-18],[-36,-88],[0,-18],[-1,-12],[0,-7],[5,-7],[11,-14],[3,-4],[2,-2],[70,-51],[11,-13],[29,-35],[44,-52],[33,-32],[24,-23],[25,-29],[5,-12],[-2,-13],[-2,-15],[-1,-12],[-8,-8],[-1,-1],[-31,-15],[-10,-4],[-18,-6],[-16,-5],[-12,-15],[2,-18],[3,-4],[5,-6],[10,-1],[29,-4],[1,0],[5,6],[52,7],[8,-4],[17,-22],[-3,-8],[-30,-86],[-1,-1],[-11,-15],[-1,-2],[-1,-2],[-5,-12],[-3,-10],[0,-37],[1,-3],[4,-15],[5,-23],[7,-36],[-1,-32],[-13,-25],[-1,-1],[-1,0],[-27,-15],[-20,4],[-8,5],[-24,17],[-26,-2],[-30,2],[-29,14],[-25,-9],[-19,-15],[-8,-6],[-3,-4],[-24,-36],[-24,-48],[-42,-36],[-13,-10],[-6,-5],[-2,-11],[-3,-23],[-1,-2],[50,-159],[13,-10],[-4,-26],[-2,-9],[-1,-6],[-18,-12],[-31,-3],[-20,-5],[-23,-31],[-2,-3],[1,-6],[5,-19],[3,-15],[-1,-26],[-8,-17],[-3,-6],[-10,-6],[-89,-72],[-83,-68],[-4,-2],[-3,-4],[-12,-25],[-7,-26],[-3,-8],[0,-2],[1,-27],[0,-8],[2,-3],[12,-16],[18,-5],[10,-3],[41,4],[8,1],[14,1],[36,1],[18,-10],[1,-1],[118,-71],[17,-19],[7,-22],[30,-108],[0,-1],[1,-26],[-1,-5],[-3,-72],[8,-59],[0,-2],[9,-61],[-3,-31],[-1,-7],[-22,-76],[-1,-27],[-1,-17],[-2,-32],[-5,-64],[-1,-4],[-7,-3],[-38,-14],[-48,-46],[-40,-26],[-9,-6],[-28,-32],[-8,-34],[-3,-16],[-5,-58],[-23,-55],[-31,-37],[-9,-9],[-48,-20],[-50,7],[-51,6],[-15,-2],[-94,-12],[-90,-22],[-71,-49],[-36,-57],[-27,-56],[-23,-32],[-23,-17],[-48,-31],[-1,-2],[-13,-9],[-10,-7],[-3,-2],[-69,-59],[-62,-63],[-30,-32],[-38,-34],[-44,-44],[-38,-61],[-19,-47],[-32,-75],[-35,-86]],[[47247,72205],[-27,3],[-4,0],[-51,1],[-328,-2],[0,30],[0,23],[0,20],[0,123],[0,169],[1,268],[0,142],[0,133],[1,78],[0,91],[0,132],[0,196],[0,27],[1,119],[0,38],[0,203],[0,71],[1,190],[0,77],[-138,1],[-75,2],[-327,13],[-221,-1],[-146,1],[-61,-2],[-1,-104],[15,-68],[8,-26],[9,-24],[-15,-8],[-28,-153],[0,-1],[-11,-27],[0,-1],[-1,-1],[-27,-27],[-2,-2],[-15,-8],[-14,-8],[-10,-5],[-9,-5],[-9,-5],[-9,-4],[-19,-11],[-1,-1],[-8,-7],[-32,-20],[-23,-36],[-1,-7],[-20,-68],[-40,-125],[-1,-2],[-2,-5],[-9,-23],[-4,-5],[-22,-31],[-25,-54],[-17,-21],[-24,-15],[-1,-1],[-15,-18],[-15,-15],[-2,-2],[4,-48],[0,-1],[7,-22],[8,-21],[0,-3],[-2,-29],[-1,-1],[-20,-18],[0,-1],[-1,0],[-38,-10]],[[45430,73253],[0,-1],[0,1]],[[45430,73253],[-29,2],[-37,4],[-40,5],[-20,-7],[-27,-15],[-26,-15],[-19,-5],[-1,-1],[-35,-24],[0,-1],[-81,-87],[-28,-31],[-110,-118],[-13,-22],[-3,-43],[-1,0],[2,-27],[0,-3],[4,-31],[2,-28],[0,-4],[-23,-60],[-14,-26],[-22,-5],[-33,-19],[-29,-18],[-45,-51],[-16,-30],[-10,-26],[-21,-27],[-33,-23],[-1,-1],[-25,-12],[-25,-11],[0,-1],[-1,1],[-27,24],[-1,1],[-34,11],[-57,-5],[-21,-7],[-1,0],[-25,-15],[-26,-5],[-1,-1],[-22,-22],[-18,-17],[-1,-2],[0,-1],[-8,-29],[-15,-33],[21,-27],[0,-1],[1,-28],[-26,-41],[-28,-20],[-28,-31],[-1,0],[0,-1],[-19,-12],[-23,-23],[-1,0],[-48,-18],[-21,-13],[-2,-1],[-1,1],[-2,0],[-230,-6],[-10,-1],[-1,1],[-30,7],[-1,0],[-16,24],[-1,16],[0,9],[0,3],[-5,-1],[-69,36],[-19,1],[-67,-7],[-23,-6],[-20,-15],[-31,-10],[-27,-16],[-10,-30],[-25,-12],[-8,-5],[-32,-15],[-1,-1],[-116,-92],[-6,-6],[-1,-15],[1,-16],[1,-18],[-90,-33],[-70,-27],[-28,1],[-14,16],[-41,100],[-10,29],[4,33],[2,3],[10,9],[3,3],[18,-3],[13,-2],[20,2],[24,27],[9,18],[10,30],[12,77],[1,33],[-1,2],[-7,19],[-5,11],[-5,6],[-34,3],[-2,1],[-1,0],[-52,-27],[-7,-4],[-33,-25],[-1,-1],[-3,1],[-19,5],[-8,2],[-18,22],[0,13],[0,77],[0,31],[-14,19],[-21,-6],[-4,2],[-12,-7],[-6,-3],[-1,-2],[0,-2],[-4,-30],[-1,-21],[-2,-31],[-2,-2],[-1,-1],[-11,-14],[-4,-1],[-17,-2],[-5,-1],[-5,3],[-21,11],[-4,2],[-12,17],[-14,19],[-6,4],[-40,27],[-42,16],[-57,14],[0,4],[2,41],[32,16],[4,4],[11,9],[6,5],[-1,1],[-5,52],[4,31],[3,1],[31,17],[27,10],[19,6],[28,17],[14,13],[10,8],[0,1],[6,44],[-79,15],[-21,3],[-4,3],[-6,4],[-16,10],[1,5],[1,40],[16,18],[8,6],[16,13],[-1,37],[-17,10],[-10,7],[-14,8],[-20,26],[-3,4],[2,6],[10,41],[2,4],[11,23],[0,31],[-18,17],[-27,7],[-21,-2],[-1,0],[-3,-3],[-25,-32],[-3,-3],[-5,-25],[-2,-2],[-16,-10],[-4,-3],[-13,4],[-4,1],[-3,1],[-18,17],[-9,22],[-11,39],[-26,61],[-15,21],[-36,8],[-18,-11],[-11,-20],[-3,-7],[-11,-32],[-13,-23],[-4,-6],[-7,-5],[-13,-8],[-9,-6],[-14,-5],[-17,-5],[-8,-2],[-18,3],[-1,1],[-1,0],[-16,16],[-1,2],[-6,27],[-1,14],[0,18],[0,5],[-8,28],[-1,3],[-9,16],[-9,17],[-120,66],[-17,11],[-4,4],[-3,4],[-9,9],[0,1],[-15,40],[-2,19],[0,11],[1,2],[17,28],[26,10],[8,4],[2,0],[2,2],[22,15],[7,6],[4,6],[5,8],[9,13],[1,1],[10,20],[-10,34],[-1,4],[-3,1],[-19,1],[-31,-14],[-1,-1],[-18,-18],[-12,-5],[-14,-6],[-57,4],[-50,6],[-6,1],[-23,5],[-1,1],[-7,3],[-6,3],[-6,2],[-4,9],[-8,18],[11,26],[2,5],[6,17],[2,7],[-2,3],[-11,23],[-2,3],[-3,3],[-46,27],[-20,11],[-42,30],[-24,23],[-4,4],[-1,3],[-9,38],[0,2],[1,1],[27,11],[23,-14],[17,-15],[23,6],[3,32],[-48,46],[-13,32],[20,24],[24,20],[15,18],[5,5],[20,34],[10,39],[-4,47],[-10,37],[-27,-1],[-1,0],[0,-1],[3,-56],[-1,-4],[-14,-40],[0,-1],[-23,-22],[-22,-21],[-2,-2],[-2,0],[-27,-4],[-6,0],[-17,12],[0,5],[-7,43],[2,9],[4,25],[1,6],[-2,3],[-18,32],[-2,0],[-22,3],[-61,-28],[-9,-4],[-12,-6],[-2,-2],[-24,1],[-7,12],[-10,16],[-1,2],[0,1],[-2,14],[-1,11],[3,21],[1,11],[1,9],[1,2],[7,19],[9,24],[1,2],[0,27],[1,12],[-10,21],[0,1],[-1,1],[-18,10],[-7,4],[-21,-1],[-6,0],[-22,-25],[-4,-4],[5,-25],[7,-45],[7,-43],[-13,-35],[-2,1],[-23,13],[-9,5],[-7,14],[-7,14],[-31,38],[-3,4],[-2,2],[-46,43],[-45,37],[-22,20],[-22,20],[-9,4],[-48,25],[-38,14],[-35,22],[-44,25],[-2,2],[-22,-2],[-1,-1],[-12,-4],[-5,-2],[-3,-1],[-20,-1],[-25,8],[-2,2],[-5,6],[-8,9]],[[41235,74379],[-4,9],[-11,22],[-1,0],[0,3],[-6,34],[-28,128],[-1,2],[-3,40],[-1,4],[-6,35],[0,3],[-1,2],[-14,22],[-1,2],[-19,8],[-23,3],[-1,1],[-21,21],[-30,53],[-15,29],[-3,6],[0,2],[16,36],[22,26],[-1,41],[-33,-3],[-29,-5],[-15,28],[-6,34],[-2,8],[4,7],[10,17],[2,3],[2,1],[15,9],[18,12],[28,18],[10,7],[3,6],[7,17],[3,6],[2,4],[-12,22],[-15,16],[-21,29],[-4,7],[-13,24],[-8,15],[1,25],[18,73],[0,1],[2,8],[18,11],[37,-3],[22,-3],[3,3],[8,6],[7,6],[3,15],[-33,94],[-75,185],[-7,7],[-42,47],[-8,16],[0,22],[36,96],[39,55],[6,8],[2,40],[-3,9],[-16,19],[-61,0],[-21,19],[-8,33],[0,44],[18,25],[28,-4],[24,-25],[30,-2],[16,20],[-20,28],[-19,19],[-25,18],[-19,29],[-1,1],[0,1],[-5,19],[-16,19],[-14,7],[-94,35],[-10,3],[2,25],[3,36],[-22,25],[-13,15],[-16,18],[-11,18],[-17,56],[6,27],[5,23],[11,21],[22,23],[28,15],[17,10],[5,36],[-24,17],[-36,-12],[-37,-48],[-21,-26],[-17,-20],[-24,-8],[-26,16],[-3,5],[-17,23],[-33,100],[-11,64],[-19,14],[-14,1],[-21,0],[-25,7],[-26,-3],[-8,-1],[-19,-13],[-18,-13],[-15,0],[-36,-1],[-8,8],[-11,12],[-2,24],[12,21],[45,45],[20,20],[11,15],[20,27],[0,18],[4,12],[9,31],[52,48],[18,-2],[13,-1],[2,0],[132,16],[5,1],[6,1],[12,13],[3,5],[6,8],[26,42],[5,8],[3,4],[1,16],[0,6],[0,3],[-5,12],[-16,19],[-6,7],[-5,13],[0,3],[0,5],[1,13],[7,5],[9,6],[13,9],[9,-5],[16,-8],[21,-25],[9,-11],[12,-20],[13,-23],[2,-4],[1,-5],[4,-14],[4,-6],[7,-9],[2,-4],[12,0],[8,-1],[79,63],[1,-36],[-9,-26],[-24,-32],[-11,-22],[12,-48],[23,-20],[31,12],[14,58],[0,5],[8,51],[10,45],[6,32],[4,30],[10,26],[33,29],[33,-1],[15,-19],[6,-7],[16,-27],[16,-28],[31,2],[5,24],[-13,23],[-14,18],[-8,23],[5,18],[10,21],[9,22],[24,17],[25,-1],[8,-4],[51,-30],[9,-3],[1,0],[29,-11],[80,-13],[69,12],[12,7],[2,1],[103,61],[1,0],[11,11],[3,26],[1,8],[-8,16],[-12,14],[-19,23],[-2,2],[-10,12],[-1,9],[0,8],[-1,26],[7,8],[5,5],[9,11],[18,5],[8,3],[2,1],[7,5],[3,2],[1,19],[-39,35],[-33,19],[-14,8],[-22,22],[-23,24],[-15,15],[-8,19],[0,4],[2,46],[0,15],[13,33],[9,17],[3,7],[21,38],[4,7],[5,4],[29,26],[3,2],[19,18],[16,26],[2,43],[-5,19],[-14,25],[-28,34],[-6,3],[-4,2],[-9,11],[-17,19],[-4,5],[-2,4],[-2,6],[-1,3],[-1,8],[-2,52],[0,1],[0,10],[-5,15],[-2,2],[-5,8],[-7,9],[-3,4],[-22,4],[-7,-4],[-11,-5],[-6,-3],[-2,-2],[-28,-33],[-16,-36],[-2,-6],[-8,-39],[-3,-13],[-9,-18],[-4,-4],[-22,-21],[-7,-7],[-14,0],[-12,1],[-5,0],[-5,5],[-7,6],[-2,2],[-1,21],[0,6],[0,13],[26,96],[4,13],[19,119],[1,25],[-30,38],[-67,37],[-1,1],[-7,9],[-24,53],[-5,12],[-6,-1],[-43,-8],[-2,0],[-3,0],[-12,0],[-19,4],[-4,1],[-20,11],[0,1],[-10,10],[-31,80],[-1,1],[-2,11],[1,7],[15,55],[30,112],[12,43]],[[8207,80883],[10,-43],[8,-15],[8,-7],[49,-12],[44,-23],[28,-22],[12,-13],[5,-5],[18,-55],[7,-23],[1,-4],[5,-39],[4,-8],[0,-1],[18,-32],[15,-16],[39,-32],[38,-45],[11,-15],[12,-30],[4,-24],[2,-92],[-25,-56],[0,-15],[2,-10],[3,-6],[70,-108],[11,-14],[13,-11],[41,-19],[158,-64],[15,-5],[23,-8],[10,-4],[7,-3],[24,-13],[2,-1],[105,-64],[1,-1],[5,-2],[164,-81],[96,-47],[35,-16],[20,-5],[13,0],[18,6],[10,6],[17,14],[11,6],[22,4],[43,3],[75,-10],[1,0],[115,2],[1,0],[2,1],[26,3],[15,-2],[2,0],[4,-1],[10,-3],[12,-6],[5,-2],[12,-96],[0,-1],[6,-11],[9,-12],[28,-18],[55,-43],[22,-23],[32,-59],[0,-1],[56,-117],[1,-1],[0,-1],[1,-10],[0,-27],[-7,-79],[-2,-20],[-6,-21],[2,-12],[44,-204],[0,-58],[8,-185],[0,-8],[0,-1],[12,-145],[2,-22],[1,-2],[12,-28],[21,-26],[0,-1],[15,-28],[20,-20],[29,-25],[15,-19],[15,-24],[17,-33],[15,-20],[25,-26],[14,-21],[16,-30],[8,-30],[-9,-41],[-9,-25],[-22,-37],[-32,-23],[-58,-17],[-39,1],[-29,2],[-30,3],[-28,-2],[-30,-30],[-7,-8],[-3,-9],[-1,-4],[-14,-41],[-54,-57],[-40,-59],[-54,-17],[-99,-75],[-69,-173],[-2,-51],[62,-59],[2,-2],[65,-62],[46,-46],[33,-21],[47,-40],[72,-95],[6,-3],[161,-99],[24,-13],[9,-1],[8,-63],[1,-14],[3,-23],[4,-28],[2,-16],[10,-15],[0,-1],[18,-18],[13,-8],[17,-8],[13,-6],[11,-8],[6,-5],[1,0],[18,-23],[25,-47],[2,-4],[1,-2],[7,-13],[5,-20],[1,-24],[-2,-9],[-13,-30],[-7,-26],[0,-4],[-1,-33],[3,-19],[0,-2],[32,-47],[8,-8],[10,-11],[24,-14],[25,-15],[18,-7],[14,-5],[153,-46],[10,-3],[39,-10],[77,-3],[17,3],[13,-12],[77,-74],[6,-24],[6,-51],[0,-29],[-1,-64],[0,-60],[-6,-49],[-4,-30],[-11,-49],[-11,-55],[1,-52],[-1,-31],[-4,-90],[5,-40],[16,-37],[74,-65],[42,-1],[49,0],[42,-32],[26,3],[23,2],[21,-10],[13,-18],[7,-42],[10,-23],[25,-4],[33,-11],[11,-37],[-21,-48],[3,-31],[41,-52],[12,-23],[6,-46],[7,-28],[5,-38],[-6,-28],[0,-34],[34,-13],[30,-33],[18,-42],[19,-45],[19,-22],[6,-4],[18,-11],[47,-10],[23,-21],[21,-32],[28,-47],[11,-24],[7,-33],[-1,-28],[11,-27],[26,-23],[5,-4],[41,-16],[29,-3],[21,0],[19,5],[27,11],[21,6],[34,-2],[25,0],[61,17],[43,7],[22,-5],[13,-21],[-3,-39],[-23,-60],[8,-26],[19,-2],[53,26],[45,22],[26,44],[27,30],[25,6],[63,-31],[35,5],[27,-6],[14,-20],[14,-30],[10,-30],[11,-66],[25,-26],[35,-41],[15,-22],[15,-18],[25,-12],[23,-7],[32,-22],[38,-34],[36,-11],[22,-26],[31,-32],[19,-13],[25,-26],[58,-73],[24,-26],[19,-13],[24,-13],[21,4],[20,19],[29,-6],[32,-41],[15,-30],[24,-46],[-4,-27],[-20,-18],[-8,-29],[0,-35],[12,-47],[22,-24],[27,-20],[24,-36],[6,-29],[1,-35],[-3,-64],[-2,-40],[8,-24],[26,-34],[3,-25],[-4,-26],[1,-37],[7,-23],[16,-24],[26,-19],[25,-4],[85,22],[35,-12],[39,16],[28,-14],[21,-20],[10,-38],[-14,-17],[-21,-21]],[[13187,73419],[-328,17],[-25,1],[-41,0],[-52,-6],[27,-123],[-12,-44],[0,-43],[-9,-25],[-26,1],[-20,-1],[-21,-13],[-2,-1],[-11,45],[-26,31],[-26,8],[-25,-1],[-44,-30],[-38,-63],[-25,-28],[-48,-40],[-33,-17],[-58,-14],[-23,0],[-22,4],[-47,19],[-85,11],[-28,12],[-24,27],[-35,47],[-26,21],[-18,25],[-17,45],[-3,26],[0,37],[6,27],[14,71],[-16,22],[-21,6],[-22,-3],[-20,-7],[-19,-21],[-9,-26],[-12,-5],[-10,-5],[-19,3],[-29,-14],[-6,-32],[-15,-44],[-19,-73],[-23,-28],[-26,4],[-16,18],[-19,5],[-9,-23],[-6,-25],[-1,-3],[-10,-23],[-35,-6],[-2,-58],[-14,-37],[-18,-11],[-31,-10],[-14,-42],[-22,-11],[-16,-15],[-9,-6],[-13,-9],[-3,-40],[8,-24],[21,-20],[15,-23],[7,-26],[21,-10],[6,-25],[-13,-31],[-21,-53],[-11,-41],[-13,-31],[-9,-30],[10,-23],[9,-39],[-21,-18],[-7,-53],[-2,-97],[-1,-29],[-7,-272],[-2,-57],[12,-377],[-1,-167],[0,-2],[0,-29],[-5,-25],[2,-132]],[[11530,71292],[-258,-1],[-263,0],[-121,-1],[-2,0],[-467,-1],[-19,6],[-167,4],[-33,1],[-139,-1],[-41,0],[-79,0],[-356,-1],[-252,1],[-252,0],[-149,2],[-36,2],[-128,4],[-221,-5],[-46,-1],[-80,-1],[-125,2],[-156,0],[-133,0],[-105,2],[-292,-2],[-61,0],[-108,-1],[-63,-1],[-157,-1],[-323,-1],[-53,0],[-1,0],[-62,-1],[-469,-4],[-276,-3],[-133,-2],[-235,-2],[-56,3],[-81,-3],[-48,-1],[-29,4],[-197,-1],[-119,0],[-133,-1],[-162,0],[-149,-6],[-3,0],[-19,0],[-28,0],[-37,2],[-40,-3],[-137,-2],[-105,-1],[-239,-2],[-358,-3],[-1,0],[-30,-1],[-96,0],[-128,-1],[-254,-2],[-76,0]],[[3144,71268],[3,22],[-52,39],[-30,7],[-16,14],[-12,44],[11,33],[28,19],[1,10],[10,10],[-6,33],[-8,24],[-21,8],[-65,2],[-29,0],[-6,42],[139,196],[4,12],[6,18],[0,36],[-6,26],[-26,18],[-22,8],[-17,-24],[10,-39],[-4,-40],[-26,2],[-50,96],[-20,5],[-22,3],[-34,34],[-12,33],[-1,10],[20,24],[15,17],[-9,29],[-29,8],[-26,5],[-24,-4],[-23,-10],[-5,-4],[-15,-23],[-18,-18],[-24,-1],[-20,18],[-1,29],[13,23],[-5,26],[-11,23],[0,33],[21,24],[18,26],[12,31],[23,26],[20,15],[10,30],[-4,25],[-1,8],[-2,19],[-3,22],[-3,26],[-9,32],[0,1],[-10,35],[-7,23],[-14,21],[-15,21],[-12,24],[-7,1],[-4,6],[-11,-3],[-13,-8],[-20,-24],[4,-26],[0,-7],[4,-9],[-7,-14],[-8,-15],[-12,-22],[-9,-17],[-8,-14],[-9,-11],[-11,1],[-10,14],[5,10],[8,11],[-7,8],[1,14],[-12,-1],[-18,-2],[-29,-5],[-23,-11],[-19,-20],[-14,-16],[-4,23],[9,23],[-5,5],[-24,9],[-22,6],[-24,-10],[2,-29],[-8,-31],[-25,-2],[-23,22],[-22,-7],[-10,-22],[8,-26],[6,-22],[5,-15],[-4,-9],[1,-13],[-9,-5],[-12,-3],[-21,2],[-21,12],[-20,11],[-21,19],[-17,23],[-13,33],[-4,36],[19,16],[25,14],[-1,10],[-3,20],[-15,16],[-29,-21],[-14,-14],[-7,-5],[-12,-6],[-9,-7],[-12,-10],[-18,-12],[-17,18],[-3,31],[28,31],[21,24],[17,24],[23,37],[10,23],[11,31],[12,29],[12,19],[26,19],[22,9],[11,6],[7,7],[-3,9],[2,9],[-7,9],[-15,18],[-12,16],[-8,12],[-5,10],[-8,19],[-6,9],[-13,12],[-10,9],[-6,6],[-10,9],[-23,41],[-10,20],[-8,3],[-16,-2],[-4,-4],[-17,-27],[-19,-13],[-33,-14],[-23,-4],[-22,-12],[-28,-10],[-21,4],[-23,11],[-33,10],[-21,2],[-19,-1],[-22,-1],[-23,2],[-28,4],[-33,6],[-13,2],[-17,0],[-18,-2],[-19,-5],[-25,6],[-15,19],[-9,13],[-7,17],[-3,20],[-2,38],[-2,34],[-2,11],[-7,17],[-11,20],[-12,21],[-10,25],[-9,26],[-10,26],[-26,26],[-24,10],[-23,4],[-18,-11],[-19,-13],[-17,-16],[-27,-30],[-24,-22],[-29,-12],[-33,11],[-17,17],[-18,23],[-21,24],[-15,17],[-21,32],[-18,35],[-14,35],[-9,47],[-8,37],[-13,49],[-4,12],[-11,27],[-11,42],[-6,24],[-7,26],[-10,27],[-13,13],[-20,21],[-29,20],[-28,33],[-17,25],[-10,27],[-12,39],[-5,17],[-8,26],[-19,23],[-33,32],[-28,28],[-11,12],[-13,17],[-11,19],[-8,17],[-10,20],[-9,24],[-16,31],[-12,22],[-17,25],[-14,18],[-15,30],[-10,29],[-11,26],[-21,46],[-12,32],[-9,24],[-15,44],[-4,9],[-13,33],[-6,15],[-4,12],[-6,14],[-20,28],[-27,23],[-19,24],[-23,20],[-19,20],[-25,16],[-18,12],[-18,14],[-17,33],[-1,26],[-4,39],[-4,23],[-6,30],[-18,51],[-10,25],[7,61],[2,11],[-8,0],[-7,12],[-17,-11],[-21,-32],[-35,-9],[-23,15],[-35,43],[-26,58],[-7,3],[-5,10],[-27,4],[-30,-6],[-49,-26],[-51,-27],[-19,-9],[-25,-16],[-21,-6],[-38,7],[-15,11],[-5,14],[4,25],[2,8],[8,15],[5,8],[-1,28],[-7,23],[-4,25],[-2,7],[-7,20],[-1,4],[0,44],[0,65],[-1,27],[1,8],[0,21],[-1,143],[0,21],[0,21],[0,26],[0,30],[0,17],[0,12],[0,59],[-1,31],[0,32],[0,9],[0,37],[0,42],[0,42],[1,126],[0,82],[1,167],[-1,207],[0,96],[-1,19],[0,163],[0,35],[2,129],[-1,237],[0,156],[2,197],[3,33],[-1,218],[0,121],[3,255],[-8,128],[2,313],[1,246],[0,117],[0,73],[1,56],[0,90],[0,11],[0,113],[0,1],[0,361],[0,86],[-1,265]],[[41235,74379],[-250,0],[-37,1],[6,-1075],[-328,0],[-62,0],[-94,0],[-171,0],[-1,0],[-34,0],[-32,0],[-143,0],[-77,0],[-426,0],[-143,0],[-322,0],[-66,-7],[-36,0]],[[39019,73298],[-174,1],[-153,0],[-159,0],[-72,-1],[-1,0],[-96,0],[-27,0],[-344,0],[-110,0],[-249,1],[-198,-2],[-138,0],[-160,0],[-106,0],[-305,-1],[-282,16],[-29,-1],[-185,0],[-338,-1],[-221,0],[-88,0],[-96,1],[-21,2],[-102,-3],[-29,-3],[-29,1],[-29,0],[-1,0],[-34,0],[-42,-1],[-143,-1],[-21,0],[-22,0],[-48,0],[-28,0],[-26,-1],[-65,0],[-76,0],[-183,-2],[-170,-1],[-18,0],[-78,4],[-541,-12],[-52,6],[-21,-4],[-93,2],[-81,-1],[-19,1],[-172,2],[-207,1]],[[33137,73301],[0,223],[0,111],[-1,65],[0,347],[0,24],[0,54],[-1,247],[0,256],[-3,237],[2,211],[0,4],[1,57],[0,73],[4,321],[7,699],[0,92],[2,166],[1,164],[1,169],[1,120],[0,48],[1,102],[1,70],[1,132],[-2,332],[0,9],[-1,179],[0,1],[-10,322],[6,353],[-2,159]],[[55895,80237],[-76,36],[-31,20],[-50,3],[-10,1],[-5,-2],[-32,-14],[-45,-20],[-183,-107],[-165,-107],[-80,-57],[-10,-11],[-35,-37],[-21,-23],[-31,-47],[-6,-9],[-3,-7],[-13,-29],[-60,-246],[-40,-173],[-6,-25],[-1,-8],[-12,-58],[-35,-210],[-20,-122],[-5,-89],[19,-152],[26,-106],[28,-75],[58,-117],[44,-83],[22,-25],[36,-21],[121,-6],[30,-2],[57,-12],[93,-27],[17,2],[40,-11],[78,-26],[29,-17],[30,-17],[78,-35],[21,-2],[165,-11],[82,-5],[4,1],[17,4],[31,-2],[20,-6],[42,-11],[37,-11],[65,-64],[79,-91],[8,114],[34,47],[101,99],[24,17],[50,19],[92,26],[87,13],[68,-4],[77,-4],[70,-41],[92,-45],[43,-2],[56,-12],[19,-17],[59,-34],[83,-31]],[[57678,78023],[6,-73],[7,-78],[-5,-152],[-90,-188],[-195,-128],[-493,-295],[-112,-66],[-70,-42],[-21,-51],[36,-456],[14,-180],[-7,-18],[-14,-38],[-56,-17],[-84,7],[-96,8],[-124,4],[-90,45],[-186,173],[-205,355],[-99,112],[-44,51],[-98,59],[-126,17],[-178,-95],[-144,-176],[-36,-157],[16,-46],[-9,-37],[18,-54],[28,-11],[37,-101],[149,-137],[132,-54],[697,-164],[283,-83],[94,-84],[50,-45],[69,-240],[14,-69],[11,-5],[59,-27],[-74,-110],[-169,-254],[-29,-43],[-3,-4],[-76,-80],[-74,-78],[-91,-61],[-37,-24],[-96,-30],[-63,-19],[-308,-56],[-235,-26],[-399,-43],[-90,-44],[-53,-57],[-173,-183],[-29,-31],[-149,-213],[-19,-139],[-2,-150],[0,-36],[-63,-232],[-12,-59],[48,-49],[10,3],[84,19],[36,-36],[-11,-186],[-1,-12],[-5,-52],[61,-73],[21,-49],[-25,-25],[-21,-22],[-7,-7],[-130,-61],[-16,-17],[-36,-53],[-21,-30],[-71,-22],[-67,12],[-19,-21],[-27,-30],[-50,-67],[-86,-115],[-37,-49],[-42,-49],[-47,-53],[-113,-128],[-121,-137],[-117,-143],[-3,-4],[-134,-90],[-106,-75],[-126,-45],[-201,-72],[-7,-15],[-62,-127],[6,-42],[17,-126],[23,-27],[287,-334],[111,-109],[-19,-238],[-102,-177],[-126,-130],[-205,-42],[-124,47],[-125,100],[-19,15],[-119,315],[2,310],[0,60],[0,75],[-38,136],[-10,33],[-12,76],[-11,70],[-19,18],[-113,-45],[-115,-40],[-22,-7],[-39,-14],[-77,-6],[-239,-18],[-226,-81],[-149,-195],[-50,-212],[-47,-199],[-50,-211],[-189,-802],[-18,-75],[-6,-134],[-17,-406],[71,-24],[103,-35],[412,56],[272,74],[405,102],[255,110],[270,-29],[172,-105],[1,0],[10,-23],[18,-43],[22,-36],[7,-55],[-5,-8],[-100,-170],[-208,-175],[-34,-11],[-55,-7],[-24,0],[-57,6],[-86,9],[-21,1],[-149,9],[-96,33],[-101,35],[-94,13],[-87,11],[-233,2],[-68,1],[-216,2],[-72,0],[-177,-39],[-51,-12],[-3,2],[-31,18],[-57,-14],[-1,-1],[-31,-32],[-53,-12],[-2,0],[-24,-38],[-160,-255]],[[51005,68580],[7,80],[20,245],[-61,-3],[-26,0],[-3,0],[-31,-2],[-21,0],[-70,-1],[-80,-1],[-26,-1],[-39,28],[-38,43],[-3,29],[15,21],[-5,25],[-19,7],[-22,5],[-21,4],[-35,-6],[-33,-12],[-118,5],[-20,15],[-24,17],[-33,5],[-20,-18],[-19,-2],[-13,-28],[-24,-12],[-30,36],[-21,30],[-27,-3],[-34,-5],[-43,-16],[-26,-20],[-19,-12],[-22,-19],[-19,-14],[-14,-19],[-20,5],[-21,-1],[-20,-1],[-28,-2],[-119,3],[-64,2],[-62,1],[-44,-1],[-50,-1],[-106,1],[-113,1],[-230,1],[-87,1],[-27,0],[-29,0],[-23,0],[-35,0],[-28,0],[-1,0],[-187,9],[-195,11],[-70,4],[-186,1],[-207,1],[-119,1],[-23,0],[-64,0]],[[47830,69017],[-73,82],[-45,52],[-44,60],[-19,34],[-33,63],[-23,47],[-15,18],[-33,55],[-9,18],[-18,35],[-38,67],[-48,77],[-42,62],[-8,13],[-41,76],[-24,42],[-6,15],[-63,155],[-4,10],[-2,4],[-32,83],[-14,58],[0,1],[0,1],[-5,76],[-1,13],[2,18],[4,34],[1,3],[3,9],[14,41],[20,59],[0,1],[13,28],[59,140],[1,3],[1,3],[39,127],[28,115],[3,15],[2,16],[0,15],[-2,80],[-4,68],[-2,39],[-7,123],[-2,18],[-8,161],[-12,133],[0,2],[0,10],[1,58],[2,43],[2,39],[3,63],[-2,2],[-44,50],[-35,3],[-29,-12],[-1,0],[-10,-3],[-12,-4],[-9,5],[-14,7],[-5,3],[-1,3],[-9,34],[3,58],[-6,29],[-13,41],[0,1],[8,28],[0,1],[1,0],[37,34],[12,14],[15,15],[2,3],[3,9],[5,11],[7,21],[-4,14],[-3,13],[-21,44],[3,24],[6,32],[7,16],[5,11]],[[16393,78704],[12,-19],[31,-121],[6,-24],[5,-10],[49,-19],[30,-8],[13,-3],[16,-3],[7,-1],[19,-37],[0,-1],[17,-29],[33,-57],[17,-30],[0,-1],[-1,-29],[0,-4],[1,-37],[4,-10],[9,-11],[35,-36],[10,-10],[0,-1],[19,-6],[5,-1],[2,1],[8,4],[5,3],[4,4],[7,-18],[4,-30],[0,-30],[12,-23],[2,-28],[4,-24],[20,-1],[19,-19],[2,-28],[10,-26],[10,-30],[14,-46],[16,-18],[20,-13],[16,-21],[21,4],[21,6],[13,-19],[14,-17],[-9,-27],[15,-28],[14,-17],[6,-25],[9,-24],[18,-23],[11,-22],[21,-30],[3,-46],[-14,-9],[-2,0],[-79,-63],[-24,-22],[-7,-3],[-13,-5],[-87,-35],[-2,-66],[-1,-24],[-1,-22],[-1,-27],[0,-22],[45,-163],[0,-1],[34,-52],[58,-90],[115,-66],[9,-2],[51,-32],[1,-3],[6,-13],[8,-18],[35,-15],[2,-1],[34,-35],[3,-26],[1,-15],[1,-4],[-2,-10],[-12,-24],[0,-9],[0,-4],[5,-11],[17,-37],[0,-1],[17,-29],[27,-32],[28,-33],[6,-13],[15,-42],[36,-53],[1,-6],[2,-101],[0,-4],[0,-5],[-45,-80],[-5,-8],[-4,-6],[-48,-88],[-8,-15],[2,-48],[0,-18],[-1,-2],[-3,-3],[-89,-98],[-36,-18],[-62,-40],[-8,-5],[-4,-3],[-115,-141],[-9,-11],[-2,-12],[1,-4],[1,-2],[27,-30],[11,-26],[0,-2],[0,-8],[-7,-24],[-2,-9],[-7,-25],[-3,-34],[26,-64],[5,-12],[-8,6],[-20,15],[-26,19],[-20,30],[-1,-21],[13,-17],[48,-47],[18,-18],[-39,-81],[-5,-11],[6,-38],[-14,16],[-13,18],[-11,10],[-10,10],[-13,18],[-20,3],[10,-22],[10,-10],[8,-6],[14,-15],[1,-2],[14,-19],[14,-18],[16,-21],[1,-1],[20,-1],[21,-15],[14,-24],[1,-25],[11,-20],[6,-6],[23,-4],[12,19],[10,-25],[-23,-6],[-18,0],[24,-48],[24,1],[20,3],[28,-20],[12,-31],[16,-14],[4,-7],[14,-29],[-16,-19],[3,-27],[21,-12],[21,-3],[12,-37],[11,-21],[1,-1],[23,6],[13,-18],[3,-29],[9,-30],[20,-25],[21,-11],[20,0],[27,4],[30,-21],[-10,-43],[-4,-28],[-5,-26],[-6,-24],[-4,-16],[14,-21],[30,-14],[2,0],[18,-2],[24,-6],[13,-11],[11,-9],[18,-31],[6,-34],[8,-16],[6,-11],[9,-5],[18,-10],[17,-15],[15,-27],[3,-5],[14,-18],[31,-23],[-48,-8],[-248,-1],[-35,0],[-152,1],[-22,0],[-22,-4],[-31,3],[-142,0],[-141,1],[-68,0],[-65,1],[-28,4],[-76,-3],[-69,0],[-79,1],[-40,0],[-11,0],[-101,2],[-69,1],[-279,2],[-48,0],[-35,0],[-68,1],[-69,1],[-35,1],[-34,0],[-34,1],[-35,0],[-45,0],[-88,-2],[0,-5],[-1,-86],[0,-15],[-1,-10],[0,-33],[-9,-809],[0,-16],[-1,-21],[-5,-477],[-3,-180],[0,-37],[0,-2],[-25,28],[-42,60],[-28,45],[-19,45],[-32,-16],[-58,11],[-30,9],[-25,14],[-5,34],[-20,-13],[-22,-21],[-29,-29],[-28,-34],[-26,-38],[-19,-31],[-10,-22],[-14,-25],[0,-1],[-11,-23],[-18,-23],[-4,-10],[-10,-23],[-9,-49],[-27,-65],[-20,-31],[-41,-20],[-27,-8],[-35,7],[-25,0],[-28,-12],[-28,-45],[-14,-18],[-44,-15],[-29,-47],[34,-33],[-22,-7],[-31,11],[-54,52],[-20,12],[-26,11],[-64,-23],[-28,-4],[-35,16],[-50,50],[-26,12],[-22,1],[-11,42],[2,27],[-20,37],[-35,16],[-21,0],[-28,-18],[-76,-46],[-22,-18],[-19,-31],[-24,-22],[-19,-15],[-16,-25],[-32,-20],[-21,-7],[-22,-18],[-41,-1],[-23,17],[-18,45],[-24,26],[-18,16],[-19,11],[-46,13],[-35,4],[-46,-5],[-47,6],[-124,33],[-22,8],[-2,2],[-55,36],[-38,17],[-29,8],[-28,11],[-5,46],[17,36],[31,28],[30,30],[13,22],[1,25],[-30,28],[-24,13],[-42,15],[-17,16],[-7,25],[9,27],[31,21],[-21,30],[-26,22],[-5,40],[5,35],[-2,27],[-20,18],[-48,13],[-23,10],[-16,16],[-21,26],[-10,32],[1,39],[20,19],[26,13],[50,23],[25,23],[-1,27],[-21,32],[1,42]],[[33137,73301],[1,-109],[0,-67],[0,-252],[-3,-338],[-24,4],[-3,-27],[-22,-32],[4,-40],[-19,-13],[-35,-12],[-5,31],[-24,-9],[-19,29],[-12,-20],[4,-34],[-22,-3],[3,-31],[-24,-5],[-11,-22],[13,-12],[4,-4],[8,-24],[-23,9],[-21,-24],[21,-25],[26,-8],[31,-22],[22,-25],[-13,-23],[-31,-44],[12,-20],[-6,-49],[-18,-31],[21,-35],[-26,-26],[-27,-12],[1,-25],[-24,-16],[1,-38],[21,-7],[10,-30],[-8,-26],[41,12],[-5,-24],[-3,-35],[6,-26],[-19,-7],[-20,11],[-5,-25],[31,-12],[19,-36],[-38,-17],[-16,17],[-25,-21],[-8,-28],[-17,-33],[6,-31],[-28,12],[-61,19],[-25,20],[-14,-35],[-6,-27],[-26,-4],[-18,-19],[-22,-9],[-10,-30],[0,-30],[11,-23],[13,-21],[18,-16],[50,-26],[19,-5],[32,15],[20,-6],[-5,-24],[-53,-38],[-24,-60],[-24,-33],[-19,-19],[3,-47],[21,-23],[15,16],[0,-30],[-5,-38],[-26,-12],[-42,-38],[-20,-19],[22,-2],[-19,-44],[-28,18],[-22,-16],[-7,-29],[6,-24],[3,-10],[-11,-37],[8,-31],[25,-11],[20,-23],[19,-17],[28,-34],[-7,-29],[-40,9],[-19,35],[-27,12],[-19,-13],[-11,-22],[8,-39],[25,-16],[0,-26],[-19,-15],[1,-27],[22,-9],[22,-4],[-14,-41],[2,-30],[0,-30],[-21,-1],[-13,46],[-23,20],[-47,-39],[-24,-22],[-13,-23],[-4,-36],[0,-31],[-18,-22],[-67,-14],[-39,-1],[-65,8],[-44,-29],[-18,13],[-25,-8],[-8,-30],[7,-34],[19,7],[49,0],[23,-24],[9,-42],[-20,-32],[-18,-14],[-38,-13],[-9,-26],[44,-7],[15,-27],[-20,-17],[-24,14],[-30,-10],[-7,-26]],[[32180,70104],[-42,0],[-140,1],[-63,0],[-27,0],[-34,2],[-19,-3],[-103,1],[-43,0],[-121,2],[-83,0],[-127,0],[-57,1],[-24,1],[-47,0],[-121,0],[-83,1],[-20,-1],[-67,1],[-30,-2],[-38,-4],[-24,0],[-31,3],[-25,1],[-37,0],[-29,0],[-45,0],[-33,0],[-51,2],[-30,0],[-39,0],[-33,0],[-29,1],[-32,-1],[-157,1],[-100,0],[-38,0],[-31,1],[-37,0],[-35,0],[-67,1],[-79,-3],[-30,3],[-34,3],[-24,-2],[-43,-2],[-27,-1],[-27,-2],[-88,-3],[-27,0],[-25,0],[-38,3],[-531,2],[-166,1],[-56,3],[-22,-5],[-28,1],[-224,2],[-32,0],[-43,0],[-176,0],[-162,0],[-26,0],[-5,0],[-44,0],[-6,0],[-44,0],[-160,1],[-192,1],[-21,0],[-72,0],[-86,1],[-33,0],[-150,1],[-1,-73],[0,-3],[-1,-161],[-7,-559],[-1,-85],[-2,-198],[-1,-70],[-3,-591],[1,-330],[1,-71],[-110,0],[-31,0],[-214,-1],[-210,0],[-89,0],[-261,-1],[-87,0],[-119,0],[-58,-1],[-142,0],[-224,0],[-52,0],[-96,-1],[-51,0],[-73,-1],[-4,0],[-103,0],[-170,0],[-38,0],[-45,0],[-272,0],[-4,0],[-40,-7],[-165,-1],[-113,0],[-39,0],[-9,0],[-49,-1],[-86,0],[-19,0],[-23,0],[-66,0],[-96,-1],[-106,0],[-48,0],[-22,-1],[-218,0],[-175,-1],[-179,-1],[-92,0],[-244,-1],[-40,0],[-86,-1],[-1,0],[-102,0],[-39,0],[-26,0],[-113,-1],[-47,0],[-108,-1],[-6,0],[-42,0],[-34,4],[-215,1],[-14,0],[-98,0],[-39,1],[-78,0],[-52,0],[-53,0],[-79,1],[-81,0],[-20,0],[-36,0],[-1,0],[-20,0],[-39,0],[-154,1],[-47,0],[-75,0],[-57,0],[-31,-1],[-256,0],[-215,-1],[-73,0],[-36,0],[-22,0],[-71,0],[-22,0]],[[20483,67960],[-38,56],[-10,29],[8,35],[9,22],[9,29],[14,47],[18,65],[18,26],[10,23],[16,42],[7,24],[16,57],[20,93],[2,27],[0,27],[1,25],[-4,26],[-5,43],[3,42],[4,38],[2,33],[-5,31],[-7,32],[0,46],[1,48],[1,50],[-7,27],[-19,33],[-21,16],[-21,25],[13,28],[14,26],[15,19],[2,3],[4,27],[-15,18],[-15,35],[-6,50],[3,41],[12,20],[19,17],[12,21],[2,22],[3,21],[6,28],[13,44],[-2,41],[4,29],[13,24],[6,31],[-19,64],[4,34],[19,9],[29,-22],[28,-17],[25,-18],[19,-11],[23,-2],[22,7],[27,12],[21,16],[26,23],[22,26],[15,20],[16,25],[9,22],[9,51],[-10,42],[-25,24],[31,10],[0,29],[-7,27],[-5,33],[20,20],[8,25],[-15,32],[25,16],[27,23],[29,28],[26,27],[7,36],[-8,44],[-10,48],[-7,29],[-15,46],[1,42],[28,7],[33,33],[30,32],[21,25],[-8,29],[-28,20],[-22,10],[-28,16],[-20,11],[-20,23],[-1,1],[-19,24],[-18,34],[-8,29],[-5,27],[0,31],[16,33],[16,15],[32,8],[20,-11],[22,-27],[40,-36],[21,-18],[32,-23],[30,-9],[16,17],[0,34],[-4,26],[-1,42],[2,30],[3,46],[-11,25],[-19,12],[-15,16],[-10,23],[-13,39],[2,33],[-19,12],[-34,-12],[-5,30],[-25,12],[-44,0],[-20,17],[15,25],[18,36],[19,21],[9,28],[-17,22],[-14,28],[-21,24],[-16,14],[-21,69],[20,2],[20,-13],[31,-12],[19,22],[-5,44],[-3,42],[-27,28],[-28,22],[-8,27],[17,13],[21,6],[33,10],[18,-17],[17,-18],[20,-8],[20,-7],[12,-28],[30,0],[21,0],[27,-14],[37,11],[24,2],[22,-2],[23,10],[28,-7],[8,1],[14,2],[25,6],[30,5],[22,-6],[32,-12],[19,-5],[53,-12],[41,-3],[20,-20],[16,-23],[20,8],[22,-2],[21,-7],[20,-8],[28,11],[27,-16],[23,8],[24,18],[22,20],[74,89],[28,-3],[16,20],[12,29],[6,31],[-13,25],[-29,19],[-18,30],[-13,34],[-21,25],[-22,20],[-16,19],[-13,26],[-8,29],[7,26],[14,19],[13,51],[36,76],[3,36],[2,35],[2,28],[-3,50],[1,33],[9,55],[-1,26],[-2,42],[2,64],[11,26],[3,49],[23,24],[16,19],[17,14],[23,14],[21,14],[17,23],[21,27],[25,50],[7,42],[-6,59],[-20,35],[1,24],[-5,37],[-5,41],[-1,8],[-3,43],[3,27],[-2,45],[-8,23],[25,41],[1,28],[-4,30],[10,24],[11,26],[10,31],[3,27],[6,24],[22,9],[27,1],[9,27],[7,30],[14,31],[-10,36],[2,28],[16,25],[27,9],[1,30],[16,34],[2,26],[8,28],[20,12],[24,8],[30,2],[20,22],[17,17],[18,-15],[18,12],[8,23],[24,7],[13,25],[13,29],[20,6],[0,30],[-23,38],[-32,13],[-21,5],[-20,14],[-15,20],[-33,9],[-30,18],[-33,11],[1,34],[-24,37],[-7,21],[-7,20],[0,48],[10,78],[19,37],[-5,43],[-8,37],[11,58],[7,23],[-8,26],[-7,25],[-10,34],[1,38],[-1,28],[0,6],[2,19],[8,25],[7,36],[3,31],[2,32],[-21,11],[-17,-17],[-23,25],[18,19],[-13,18],[-8,28],[-11,32],[-19,12],[-47,3],[-23,12],[-19,-6],[-4,33],[-17,-18],[-5,-29],[-16,22],[-7,28],[-19,-8],[-7,-24],[-13,19],[-25,-9],[-17,11],[-29,-3],[8,32],[-3,27],[-12,24],[5,25],[17,24],[-10,30],[21,22],[23,12],[19,7],[26,7],[44,54],[12,15],[3,4],[3,7],[31,101],[9,4],[8,6],[19,26],[37,138],[-1,9],[-7,10],[-12,12],[-16,34],[-3,13],[0,12],[38,182],[2,5],[17,47],[-2,9],[-7,25],[-12,46],[-17,58],[-16,53],[-2,5],[-25,19],[-5,3],[-9,7],[-52,44],[-3,3],[0,18],[1,2],[3,55],[6,26],[-16,7],[-4,6],[-11,23],[-10,27],[0,9],[3,3],[7,21],[6,29],[3,79],[-4,28],[-13,52],[-6,27],[-5,20],[-6,25],[-3,5],[-4,4],[-16,23],[-22,31],[-2,1],[-18,11],[-9,1],[-3,8],[-7,19],[-3,12],[-10,48],[-4,22],[2,26],[3,29],[2,24],[0,19],[1,27],[0,11],[-7,6],[-32,24],[-9,1],[-3,1],[-7,3],[-41,36],[-29,38],[-12,18],[-10,15],[-10,48],[-6,54],[1,14],[2,46],[4,52],[7,8],[14,-1],[26,-6],[28,-7],[3,-1],[14,47],[18,64],[7,30],[0,9],[-15,64],[-72,136],[-40,-10],[-1,0],[-7,1],[-5,11],[-8,49],[0,1],[-1,20],[-2,37],[1,7],[1,10],[-5,6],[-49,66],[-9,12],[-18,19],[-8,8],[-2,1],[-46,30],[-38,31],[-1,1],[-14,14],[-60,71],[-15,32],[-9,32],[-1,15],[-2,14],[-5,34],[-5,45],[-3,20],[-56,50],[-4,3],[-10,0],[-4,6],[-2,4],[-12,30],[-48,112],[-1,5],[-1,38],[1,25],[2,8],[7,9],[10,6],[19,-1],[3,-1],[4,2],[0,7],[-3,17],[-7,39],[-5,29],[-1,4],[-8,7],[-2,18],[-1,13],[-23,24],[-19,31],[-42,125],[-2,5],[-10,16],[-8,23],[-9,27]],[[20483,67960],[35,-29],[33,-13],[20,-2],[48,-5],[33,-10],[34,-14],[26,-23],[15,-34],[10,-30],[8,-27],[-1,-26],[-10,-30],[-10,-30],[-8,-28],[-18,-64],[-8,-23],[-20,-56],[-8,-26],[-6,-26],[-11,-34],[-8,-48],[-3,-25],[-1,-32],[6,-24],[15,-31],[16,-20],[18,-9],[26,-9],[31,-11],[63,-22],[20,-6],[32,-14],[29,-14],[27,-12],[21,-4],[32,-5],[27,-3],[28,-2],[26,1],[32,1],[24,0],[143,40],[50,17],[29,3],[34,-11],[27,-38],[4,-34],[-6,-28],[-8,-27],[-2,-32],[3,-28],[8,-30],[12,-29],[19,-35],[25,-30],[34,-29],[44,-25],[17,-5],[50,-17],[23,-5],[24,-5],[61,-11],[26,-1],[57,0],[20,0],[20,-13],[16,-15],[6,-24],[3,-26],[-2,-42],[-8,-53],[-17,-71],[-21,-74],[-19,-57],[-25,-80],[-30,-91],[-6,-27],[-9,-40],[-8,-63],[-2,-29],[-1,-28],[3,-53],[8,-35],[12,-27],[12,-21],[38,-37],[18,-15],[34,-25],[41,-21],[23,-7],[28,-10],[38,-12],[28,-7],[33,-10],[32,-10],[35,-7],[31,-9],[34,-10],[23,-11],[22,-13],[25,-5],[56,-2],[23,0],[73,6],[24,9],[23,6],[24,7],[27,-4],[19,-8],[33,-22],[39,-27],[58,-45],[19,-17],[37,-36],[60,-55],[4,-3],[60,-51],[42,-28],[58,-40],[36,-18],[46,-23],[46,-25],[52,-12],[40,-2],[41,0],[51,4],[46,-4],[36,-8],[62,-17],[53,-19],[97,-9],[51,3],[49,1],[46,2],[36,-4],[38,-12],[28,-11],[31,-15],[20,-15],[18,-16],[18,-16],[7,-7],[27,-27],[23,-28],[23,-32],[13,-21],[48,-112],[45,-105],[11,-33],[16,-37],[25,-23],[28,-13],[21,-6],[17,-18],[21,-22],[35,-40],[31,-39],[49,-65],[23,-25],[27,-32],[40,-35],[29,-22],[31,-21],[36,-22],[32,-18],[40,-18],[36,-24],[36,-24],[23,-17],[17,-22],[7,-31],[-7,-34],[-23,-29],[-16,-18],[-19,-19],[-18,-21],[-23,-38],[-5,-40],[6,-28],[22,-20],[31,-14],[31,-16],[41,-24],[36,-27],[52,-45],[16,-25],[20,-32],[26,-31],[31,-27],[22,-21],[98,-57],[22,-11],[21,-16],[23,-21],[21,-21],[29,-29],[40,-37],[20,-18],[17,-14],[22,-17],[29,-8],[46,0],[29,0],[43,-1],[21,-7],[23,-10],[27,-31],[-2,-31],[-17,-36],[-14,-25],[-16,-57]],[[25357,63282],[-22,-21],[-16,-15],[-14,-12],[-2,-2],[-274,-255],[-130,-121],[-76,-73],[-63,-61],[-164,-152],[-54,-49],[0,-48],[0,-37],[-2,-159],[-53,2],[-41,2],[-97,3],[-29,-2],[-79,4],[-34,3],[0,-77],[-2,-65],[0,-34],[-27,-2],[-1,0],[-43,-2],[-33,-2],[-53,-1],[-4,0],[-2,-171],[-20,0],[-2,0],[-23,0],[-25,-1],[-24,0],[-27,-1],[-38,-1],[0,-161],[-226,-8],[-111,-4],[4,-213],[2,-72],[2,-57],[-304,-3],[-23,2],[-2,-145],[0,-38],[-94,0],[-114,0],[-54,0],[-54,0],[-2,-164],[0,-92],[0,-108],[-71,0],[-400,0],[0,-30],[0,-284],[0,-38],[0,-12],[-69,-1],[-32,-1],[-61,-1],[-123,-1],[-41,-1],[0,-58],[4,-292],[-125,-2],[-57,0],[-122,-2],[-76,-2],[-63,-1],[-38,0],[1,-53],[0,-105],[3,-186],[3,-78],[2,-90],[-142,-3],[-32,-1],[-73,-1],[-78,-1],[-168,-2],[-94,-2],[-70,-1],[2,-209],[1,-138],[2,-167],[-96,-1],[-180,-1],[-75,-1],[-273,0],[-35,0]],[[20331,59103],[-27,43],[-5,30],[-34,-3],[2,43],[-9,23],[-16,17],[-23,29],[-16,14],[-15,18],[-13,23],[-5,25],[-5,28],[-19,4],[-7,24],[-11,18],[-1,2],[-1,0],[-36,0],[-20,0],[-96,-1],[-135,-6],[-24,1],[-48,1],[-37,0],[-47,0],[-30,1],[-201,3],[-38,0],[-56,1],[0,34],[0,60],[-88,0],[-22,1],[-237,2],[-72,0],[-73,1],[-28,0],[-339,2],[-27,0],[-34,0],[-74,1],[-175,0],[-137,1],[-34,0],[-146,-1],[-76,0],[-64,0],[-52,-1],[-109,1],[-64,0],[-51,0],[-61,0],[-20,0],[-48,1],[-24,1],[-109,2],[-52,1],[-46,0],[-65,0],[-41,0],[-47,-1],[-47,0],[-100,0],[-61,0],[-30,0],[-2,0],[-29,0],[-34,-1],[-35,0],[-26,1],[-70,0],[-171,-1],[-26,0],[-23,0],[-35,0],[-58,-1],[-158,0],[-29,-1],[-37,0],[-74,0],[-89,-1],[-94,0],[-89,-1],[-97,-1],[-35,0],[-38,0]],[[15456,59540],[-3,196],[0,2],[-1,63],[-1,70],[0,131],[0,52],[-1,123],[0,1],[0,75],[0,43],[1,139],[1,218],[1,135],[1,38],[0,135],[1,75],[0,141],[0,68],[1,168],[-1,93],[-1,170],[0,54],[0,33],[0,62],[-2,234],[0,156],[0,79],[0,149],[-1,53],[1,72],[0,2],[0,62],[0,50],[1,54],[0,67],[-3,52],[-3,525],[0,89],[-1,68],[0,115],[-1,137],[-103,-4],[-23,0],[-132,-6],[-66,0],[-133,9],[-28,3],[-40,-12],[-83,-1],[-208,-4],[-225,-4],[-27,0],[-108,1],[-264,2],[-48,1],[-53,2],[-77,2],[-177,3],[-36,1],[-99,2],[0,25],[-4,321],[0,39],[0,94],[3,270],[0,56],[1,114],[5,69],[-6,70],[-3,216],[-2,187],[-1,30],[-2,110],[-3,177],[-6,268],[0,25],[1,57],[0,35],[4,305],[-1,36],[2,60],[-19,175],[1,317],[0,7],[1,45],[4,103],[0,3],[3,85],[3,78],[3,51],[-1,32],[0,25],[0,52],[0,30],[0,31],[1,77],[0,76],[-1,37],[1,47],[2,85],[-1,34],[0,27],[-7,117],[-4,110],[0,21],[-3,77],[-21,0],[-102,1],[-103,1],[-6,0],[-69,0],[-21,0],[-371,-1],[-98,2],[-365,-2],[-321,1],[-81,6],[-157,-1],[-227,-1],[-25,0],[3,160],[0,9],[0,25],[1,36],[9,388],[3,89],[-1,125],[-9,56],[3,272],[1,76],[3,201],[5,313],[0,23],[1,3],[2,46],[-4,158],[-5,246],[0,41],[0,44],[1,111],[1,276],[-1,271],[0,47],[-1,86],[-1,94]],[[47830,69017],[38,-44],[4,-5],[3,-3],[36,-38],[16,-20],[18,-21],[26,-36],[16,-32],[16,-32],[14,-71],[1,-20],[2,-31],[-4,-21],[-6,-35],[-1,-1],[-2,-6],[-30,-75],[-3,-7],[-12,-24],[-14,-28],[-31,-44],[-42,-53],[-27,-27],[-1,-1],[-2,-2],[-3,-2],[-24,-20],[-41,-20],[-4,-2],[-12,0],[-26,1],[-29,1],[-50,21],[-4,2],[-27,12],[-58,53],[-34,36],[-23,25],[-36,31],[-7,6],[-40,31],[-65,57],[-26,24],[-3,2],[-23,27],[-10,14],[-22,31],[-49,82],[-45,103],[-1,2],[-24,74],[-16,52],[-12,28],[-17,36],[-11,26],[-13,27],[-2,5],[-2,3],[-17,20],[-15,21],[-19,19],[-18,18],[-22,19],[-18,18],[-19,9],[-20,8],[-3,1],[-14,4],[-13,3],[-32,7],[-19,3],[-23,1],[-28,-2],[-28,-2],[-27,-1],[-21,-7],[-20,-10],[-30,-27],[-12,-16],[-18,-25],[-3,-3],[-23,-37],[-18,-34],[-11,-20],[-8,-17],[-20,-51],[-13,-39],[-15,-43],[-12,-36],[-1,-1],[-6,-12],[-9,-21],[-8,-14],[-16,-26],[-27,-40],[-31,-38],[-40,-41],[-65,-64],[-23,-27],[-59,-51],[-79,-59],[-45,-28],[-22,-13],[-19,-7],[-46,-16],[-30,-5],[-80,-14],[-10,-1],[-84,-5],[-48,2],[-31,0],[-58,13],[-24,7],[-1,1],[-30,9],[-3,1],[-46,21],[-6,4],[-32,27],[-9,7],[-46,45],[-23,28],[-30,38],[-5,8],[-48,70],[-51,58],[-62,50],[-31,14],[-33,0],[-30,-10],[-6,-2],[-19,-12],[-21,-14],[-15,-12],[-21,-17],[-44,-42],[-6,-7],[-37,-40],[-38,-49],[-12,-26],[-27,-56],[-2,-3],[-16,-55],[-2,-9],[-17,-64],[-9,-41],[-8,-38],[-6,-63],[-9,-71],[-13,-95],[-8,-80],[-1,-13],[-4,-136],[0,-9],[-1,-8],[-3,-22],[-17,-56],[-19,-65],[-26,-63],[-30,-60],[-17,-45],[-11,-27],[-20,-49],[-34,-86],[-42,-109],[-13,-42],[-6,-20],[0,-4],[-4,-20],[-2,-14],[1,-58],[0,-1],[11,-92],[6,-43],[5,-27],[1,-4],[7,-24],[6,-21],[19,-53],[6,-18],[14,-41],[18,-49],[41,-103],[14,-37],[9,-58],[6,-50],[2,-58],[-7,-73],[-22,-73],[-29,-58],[-35,-58],[-5,-7],[-2,-4],[-25,-34],[-1,-2],[-13,-13],[-32,-33],[-35,-38],[-35,-30],[-8,-8],[-16,-11],[-23,-17],[-8,-7],[-41,-40],[-30,-27],[-22,-19],[-36,-45],[-18,-23],[-10,-13],[-34,-43],[-40,-49],[-26,-18],[-6,-5],[-18,-11],[-28,-18],[-7,-1],[-14,-2],[-16,-1],[-17,-2],[-24,3],[-3,1],[-25,5],[-58,18],[-67,44],[-30,19],[-2,2],[-21,21],[-15,16],[-16,16],[-10,14],[-14,21],[-14,21],[-10,15],[-3,8],[-22,53],[-17,43],[-36,129],[-18,89],[-2,9],[-17,80],[-17,57],[-2,5],[0,2],[-25,49],[0,1],[-14,17],[-13,17],[-23,22],[-18,18],[-13,8],[-15,9],[-50,22],[-25,3],[-1,1],[-3,-1],[-22,-1],[-17,-4],[-4,-1],[-5,-4],[-13,-10],[-8,-6],[-24,-31],[-10,-10],[-20,-20],[-12,-7],[-27,-16],[-1,-1],[-29,-15],[-86,-53],[-81,-63],[-6,-4],[-155,-116],[-8,-7],[-26,-22],[-34,-18],[-6,-2],[-3,-3],[-14,-14],[-18,-15],[-5,-24],[0,-2],[-5,-28],[-8,-20],[-3,-9],[-16,-25],[-23,-29],[-43,-49],[-8,-9],[-15,-22],[-20,-31],[-7,-11],[-21,-45],[-15,-33],[-10,-27],[-6,-25],[-10,-33],[-11,-33],[-9,-26],[-17,-49],[-10,-25],[-2,-5],[-13,-36],[-8,-18],[-2,-4],[-13,-30],[-10,-24],[-11,-25],[-14,-39],[-9,-24],[-6,-25],[-8,-26],[-11,-54],[-8,-25],[-6,-24],[-9,-42],[-4,-24],[0,-3],[-2,-24],[-6,-39],[0,-34],[-2,-25],[-1,-51],[1,-25],[4,-49],[2,-39],[4,-27],[2,-24],[4,-39],[4,-32],[3,-34],[10,-39],[4,-32],[11,-34],[15,-39],[1,0],[11,-25],[11,-23],[3,-6],[3,-5],[14,-22],[19,-22],[15,-20],[13,-20],[12,-21],[19,-22],[21,-22],[37,-39],[19,-17],[19,-22],[17,-13],[31,-26],[21,-15],[29,-15],[21,-14],[25,-13],[32,-24],[23,-22],[27,-20],[21,-14],[34,-25],[25,-19],[20,-15],[6,-5],[24,-17],[21,-17],[31,-34],[9,-10],[12,-12],[23,-20],[17,-15],[33,-34],[23,-27],[28,-39],[23,-29],[14,-20],[15,-22],[17,-27],[16,-22],[11,-22],[12,-22],[17,-41],[9,-25],[10,-22],[8,-24],[5,-25],[-2,-44],[-2,-40],[-8,-66],[-9,-45],[-7,-27],[-10,-29],[-11,-30],[-16,-41],[-7,-27],[-18,-37],[-11,-27],[-12,-22],[-9,-22],[-12,-19],[-11,-22],[-12,-22],[-56,-52],[-23,-28],[-55,-47],[-43,-30],[-9,-7],[-6,-3],[-53,-32],[-55,-33],[-23,-22],[-21,-21],[-33,-56],[-7,-31],[-9,-31],[-4,-26],[-4,-48],[10,-89],[35,-75],[76,-76],[78,-32],[131,-49],[170,-47],[108,1],[66,-3],[84,-15],[88,-12],[167,-1],[39,1],[197,10],[35,1],[48,-9],[79,-30],[69,-54],[60,-91],[46,-114],[21,-76],[5,-62],[-7,-98],[-17,-77],[-38,-87],[-35,-46],[-26,-28],[-48,-35],[-56,-29],[-67,-28],[-50,-13],[-53,-4],[-74,0],[-32,-5],[-57,-15],[-92,-1],[-85,14],[-73,24],[-63,26],[-63,59],[-46,53],[-75,58],[-68,21],[-94,11],[-64,-9],[-63,-11],[-115,-38],[-53,-14],[-77,-3],[-60,12],[-40,30],[-14,37],[-7,43],[7,79],[7,75],[-12,117],[-22,87],[-38,105],[-43,128],[-32,131],[-44,158],[-42,135],[-14,41],[-15,46],[-17,50],[-25,49],[-21,43],[-7,13],[-11,24],[-24,37],[-10,11],[-19,21],[-27,22],[-16,15],[-8,8],[-12,9],[-5,4],[-23,12],[-21,10],[-25,9],[-20,12],[-7,5],[-21,3],[-13,2],[-12,2],[-26,2],[-33,-5],[-35,-11],[-34,-22],[-40,-37],[-23,-24],[-27,-32],[-38,-26],[-25,-19],[-10,-17],[-9,-13],[-4,-7],[-5,-26],[-2,-9],[1,-44],[9,-24],[13,-24],[35,-55],[9,-72],[-7,-39],[-26,-57],[-26,-29],[-20,-29],[-28,-23],[-32,-46],[-24,-74],[-19,-78],[-3,-10],[-9,-54],[4,-53],[6,-41],[25,-95],[22,-89],[17,-66],[2,-11],[6,-23],[10,-65],[25,-164],[8,-54],[1,-20],[3,-31],[9,-101],[14,-144],[5,-69],[0,-9],[1,-2],[18,-62],[9,-33],[48,-84],[48,-78],[75,-91],[86,-91],[71,-65],[55,-37],[85,-41],[40,-20],[31,-16],[97,-45],[80,-25],[55,-7],[68,-9],[62,-8],[102,-4],[104,12],[85,15],[67,-3],[58,-10],[53,-24],[1,-1],[45,-30],[10,-7],[30,-36],[4,-12],[17,-49],[3,-9],[7,-72],[-14,-42],[-6,-10],[-23,-41],[-26,-29],[-40,-29],[-36,-18],[-43,-41],[-45,-42],[-7,-6],[-30,-19],[-45,-13],[-8,0],[-14,-1],[-7,-1],[-12,2],[-26,2],[-11,1],[-17,2],[-26,2],[-32,-5],[-37,-17],[-30,-19],[-21,-13],[-11,-4],[-32,-13],[-20,-3],[-26,4],[-22,9],[-19,13],[-17,15],[-2,3],[-8,9],[-8,9],[-1,1],[-24,18],[-25,16],[-3,3],[-10,5],[-14,7],[-17,9],[-24,14],[-34,15],[-41,22],[-42,11],[-11,5],[-3,1],[-26,9],[-54,7],[-27,-2],[-28,-2],[-8,-1],[-55,-10],[-53,-17],[-32,-9],[-29,-20],[-25,-14],[-20,-18],[-113,-99],[-100,-119],[-38,-73],[-7,-12],[-26,-48],[-12,-23],[-2,-7],[-17,-52],[-15,-74],[-10,-108],[-11,-112],[-6,-56],[-7,-56],[-8,-41],[-4,-20],[-12,-60],[-14,-113],[-2,-16],[1,-31],[0,-40],[0,-4],[2,-43],[1,-40],[2,-56],[0,-14],[-6,-73],[-4,-53],[2,-40],[5,-53],[20,-86],[4,-13],[9,-26],[17,-44],[43,-77],[82,-91],[71,-61],[123,-57],[77,-23],[52,-9],[71,15],[50,16],[46,16],[59,16],[38,-2],[27,-13],[42,-29],[25,-63],[8,-73],[-12,-77],[-4,-65],[-4,-52],[-14,-53],[-28,-59],[-37,-58],[-49,-56],[-52,-57],[-14,-17],[-23,-27]],[[42296,57140],[-19,24],[-30,10],[-32,-1],[-50,-27],[-16,-30],[-66,-47],[-45,-28],[-30,-10],[-28,5],[-30,18],[-48,35],[-52,56],[-51,72],[-71,118],[-61,95],[-49,61],[-62,52],[-42,34],[-195,143],[-66,38],[-61,10],[-44,7],[-66,28],[-40,17],[-73,31],[-102,33],[-166,-12],[-47,-5],[-51,-5],[-72,-23],[-7,-3],[-11,-8],[-61,-43],[-33,-33],[-27,-26],[-11,-11],[-85,-117],[-39,-92],[-28,-89],[-27,-48],[-28,-38],[-27,-53],[0,-48],[4,-56],[14,-50],[49,-103],[40,-94],[12,-26],[21,-70],[12,-41],[12,-45],[15,-45],[0,-56],[-6,-48],[2,-45],[15,-51],[23,-43],[46,-35],[49,-20],[39,-4],[37,22],[40,29],[34,-5],[31,-37],[18,-45],[-2,-38],[-8,-41],[-18,-17],[-40,-11],[-34,1],[-54,3],[-33,-1],[-37,-16],[-35,-32],[-33,-30],[-31,-48],[-55,-63],[-21,-25],[-18,-9],[-22,-3],[-25,1],[-28,38],[-11,34],[-4,51],[5,81],[1,144],[-5,107],[-10,30],[-13,27],[-25,32],[-33,28],[-52,26],[-30,4],[-46,-2],[-18,-6],[-29,-11],[-36,-34],[-16,-29],[-7,-38],[-8,-46],[-3,-16],[-9,-46],[-4,-18],[-5,-21],[-17,-35],[-11,-21],[-31,-46],[-54,-67],[-65,-62],[-22,-10],[-21,-11],[-74,-18],[-68,-2],[-61,11],[-75,27],[-28,23],[-15,24],[-35,55],[-3,5],[22,58],[16,39],[23,31],[19,20],[-1,31],[-16,38],[-29,23],[-31,14],[-21,7],[-33,1],[-20,0],[-30,3],[-22,4],[-28,12],[-16,15],[-15,19],[8,33],[25,20],[24,9],[24,7],[41,0],[41,9],[20,12],[19,15],[26,18],[39,13],[22,10],[23,11],[14,32],[-5,35],[-41,21],[-55,8],[-54,1],[-46,1],[-25,56],[-19,45],[-16,20],[-19,2],[-19,13],[-8,25],[-6,26],[-12,35],[-2,38],[1,44],[8,25],[17,18],[22,2],[34,-24],[37,-9],[36,10],[16,14],[15,28],[12,38],[16,23],[20,26],[16,33],[-30,29],[-29,-7],[-35,-19],[-23,-22],[-29,-22],[-22,-18],[-26,-5],[-20,11],[-5,26],[-16,18],[-2,27],[10,25],[-26,23],[-21,10],[-20,4],[-22,-1],[-21,-5],[-30,-4],[-21,15],[-17,34],[4,29],[28,44],[17,33],[-8,29],[-32,-7],[-18,-20],[-19,-21],[-30,-12],[-22,-8],[-29,-3],[-32,3],[-45,29],[-18,28],[-6,24],[6,50],[33,35],[30,16],[32,12],[42,10],[22,6],[7,26],[-13,34],[-24,27],[-34,30],[-26,26],[-9,24],[-3,44],[4,31],[14,26],[31,40],[21,19],[30,13],[28,1],[28,-7],[24,-44],[-1,-31],[-16,-52],[-8,-39],[0,-37],[9,-32],[39,-19],[26,25],[14,31],[9,34],[17,32],[18,8],[25,1],[15,-5],[15,-6],[18,-9],[24,-4],[35,-4],[27,9],[16,30],[-4,25],[-74,79],[-32,8],[-27,17],[-31,26],[-23,24],[-22,29],[-11,24],[-10,30],[-2,27],[4,12],[6,21],[3,5],[11,17],[8,7],[3,4],[53,52],[21,26],[13,28],[-12,138],[-15,45],[-28,22],[-18,6],[-8,2],[-36,2]],[[38968,58593],[0,44],[0,150],[0,14],[0,39],[0,25],[0,1],[3,234],[0,11],[0,121],[1,41],[0,141],[2,227],[0,33],[1,55],[4,72],[0,138],[2,273],[0,81],[0,29],[-1,93],[-1,438],[0,77],[0,25],[-1,193],[0,34],[0,42],[-1,189],[-1,502],[-1,315],[-1,304],[0,33],[-1,8],[0,58],[0,6],[0,242],[1,87],[-2,85],[1,25],[-2,81],[-7,288],[0,40],[5,29],[-4,63],[1,32],[0,29],[0,40],[-1,35],[0,31],[0,10],[0,30],[0,49],[3,26],[1,6],[1,26],[4,84],[-3,38],[-12,86],[11,222],[-7,273],[0,55],[-1,66],[0,24],[3,26],[-4,81],[0,3],[-1,85],[-1,32],[6,85],[0,377],[0,35],[-1,35],[0,31],[0,115],[-2,31],[-2,59],[1,29],[-3,152],[1,25],[0,151],[1,90],[0,5],[0,58],[0,38],[0,59],[2,289],[0,110],[0,114],[0,16],[0,29],[0,112],[-1,144],[0,118],[0,77],[-6,122],[-1,82],[6,155],[1,37],[0,113],[0,64],[3,353],[0,25],[1,143],[0,27],[-1,96],[0,66],[-1,152],[-1,92],[0,11],[0,62],[-3,28],[0,26],[1,92],[0,66],[1,59],[1,206],[1,9],[1,145],[0,55],[1,135],[0,27],[1,98],[0,43],[1,155],[43,0],[0,81],[1,72],[0,82],[0,5],[0,108],[0,95],[0,25],[0,58],[0,71],[1,245],[0,56],[0,65],[0,107],[1,112],[0,56],[1,133],[0,103],[0,170],[0,92],[-1,82],[0,47],[0,63],[1,125],[0,124],[0,59],[0,1],[1,70],[0,35],[1,125],[0,64],[0,46],[0,40],[0,39],[2,254],[1,220],[0,72]],[[38968,58593],[-53,6],[-25,18],[-21,29],[-26,5],[-36,13],[-25,6],[-25,5],[-25,5],[-31,17],[-7,26],[8,37],[15,27],[-31,38],[-22,21],[0,29],[12,29],[7,44],[-19,37],[-38,29],[-42,18],[-40,2],[-31,-6],[-37,-10],[-31,-2],[-34,-6],[-29,-13],[-18,-23],[-5,-63],[-5,-35],[-16,-25],[-21,-12],[-32,-3],[-123,12],[-45,-12],[-64,-35],[-44,-25],[-65,-38],[-25,-28],[-18,-9],[-70,-50],[-23,-17],[-43,-4],[-24,-3],[-26,-8],[-39,2],[-21,-7],[-18,-13],[-1,-27],[8,-23],[-27,-24],[-27,0],[-25,26],[10,21],[15,31],[-4,72],[-23,40],[-20,6],[-22,-2],[-21,18],[-5,28],[9,32],[-19,30],[-22,-2]],[[37463,58827],[-30,37],[-3,27],[6,7],[13,15],[19,7],[26,-5],[45,-3],[27,2],[41,17],[14,27],[17,10],[33,9],[20,5],[24,9],[22,27],[-2,30],[-8,25],[-55,73],[-41,-28],[-24,3],[-14,30],[5,60],[20,-3],[20,8],[27,13],[3,12],[3,11],[-1,32],[-10,30],[-19,25],[-27,-4],[-31,-8],[-19,7],[-17,37],[-6,24],[-2,26],[15,39],[-5,22],[-2,8],[-19,60],[-22,15],[-15,20],[-26,5],[-22,-25],[-20,1],[-26,18],[-18,-10],[-22,-17],[-31,47],[9,25],[-11,22],[-8,24],[-15,27],[14,23],[-18,21],[-24,0],[-15,22],[-20,19],[-28,21],[-31,26],[-29,12],[-19,-15],[-26,5],[-16,-24],[-18,-11],[-12,-29],[-14,-26],[-23,-7],[-16,21],[-27,23],[-14,26],[-21,-17],[-12,20],[-18,11],[-33,26],[-8,22],[-26,16],[-20,1],[-15,26],[4,25],[18,10],[24,18],[1,27],[20,22],[26,8],[8,43],[-18,10],[-20,8],[-24,19],[-34,-10],[-9,22],[-19,5],[-64,-9],[-20,1],[-20,12],[-14,19],[-2,26],[-18,16],[-18,10],[-18,11],[-17,17],[-3,28],[-5,31],[-17,27],[-24,25],[-36,23],[-35,21],[-26,20],[-37,22],[-26,19],[-27,25],[-17,28],[-46,18],[-32,33],[-4,40],[-21,50],[-16,46],[13,96],[-13,42],[-18,38],[-31,54],[-55,41],[-27,45],[-8,58],[-10,31],[-6,33],[-18,46],[-1,3],[-11,26],[4,25],[-15,18],[1,37],[-1,30],[-3,31],[12,22],[9,33],[12,22],[14,18],[19,16],[13,23],[19,15],[13,22],[12,36],[16,16],[-14,22],[-7,25],[8,42],[-17,13],[-17,16],[12,19],[-21,7],[-18,-9],[-22,-1],[-23,6],[-17,16],[-16,15],[-21,20],[-24,1],[-20,2],[-33,15],[-12,14],[-8,10],[-9,28],[8,36],[26,39],[13,10],[20,18],[36,25],[36,33],[25,38],[-5,33],[-17,14],[-13,10],[-21,21],[-2,45],[-10,23],[-29,10],[-16,-8],[-12,-7],[-51,-37],[-22,-17],[-26,-6],[-21,2],[-31,22],[-19,18],[-16,22],[-18,23],[-20,38],[-28,32],[-33,3],[-22,-19],[-13,-24],[0,-38],[1,-33],[-10,-34],[-15,-20],[-29,-18],[-29,-1],[-32,10],[-34,37],[-26,56],[-25,58],[-27,52],[-12,27]],[[35368,62311],[-13,24],[-26,26],[-29,14],[-25,6],[-35,-2],[-37,-4],[-21,-3],[-38,-9],[-19,-5],[-26,3],[-23,14],[-26,28],[-11,29],[-6,32],[3,57],[9,55],[1,30],[-13,30],[-27,23],[-24,1],[-24,-8],[-20,-18],[-20,-29],[-19,-39],[-23,-32],[-25,-6],[-33,17],[-18,26],[-24,30],[-17,14],[-51,20],[-41,-3],[-49,-5],[-45,-1],[-21,-2],[-17,-21],[-14,-43],[2,-32],[12,-24],[22,-17],[31,-14],[37,-14],[26,-13],[31,-26],[17,-30],[9,-24],[7,-24],[3,-43],[-12,-28],[-38,-15],[-24,-2],[-26,3],[-28,9],[-41,16],[-44,23],[-14,11],[-14,10],[-29,20],[-30,22],[-22,23],[-16,26],[-10,33],[13,56],[18,36],[21,39],[20,43],[17,51],[7,16],[15,35],[20,35],[18,29],[13,16],[20,25],[2,25],[-16,26],[-36,32],[-25,8],[-21,14],[-34,19],[-37,22],[-30,20],[-11,4],[-10,3],[-3,-1],[-24,-17],[-8,-31],[-1,-31],[6,-37],[3,-30],[-6,-40],[-23,-28],[-24,-17],[-21,-13],[-22,-10],[-23,-11],[-46,-16],[-32,-12],[-29,-12],[-15,-5],[-40,-17],[-20,0],[-53,10],[-4,1],[-23,9],[-65,29],[-34,14],[-19,21],[-21,35],[-23,40],[-13,21],[-37,31],[-9,33],[17,17],[27,9],[35,10],[26,6],[33,22],[18,39],[-7,25],[-11,9],[-14,11],[-32,16],[-21,27],[-11,20],[-4,45],[4,24],[17,30],[30,5],[19,-9],[21,-1],[24,14],[16,30],[3,27],[0,37],[-1,83],[-6,28],[-13,36],[0,27],[16,19],[29,18],[20,7],[21,15],[-16,15],[-23,16],[-8,24],[-1,30],[-7,31],[-13,22],[-27,23],[-23,8],[-12,-23],[30,-54],[5,-24],[-5,-30],[-23,2],[-8,23],[-17,26],[-35,26],[-20,5],[-20,3],[-28,4],[-39,1],[-25,6],[-25,4],[-23,3],[-42,3],[-52,-5],[-28,-2],[-28,3],[-23,4],[-12,29],[5,31],[25,18],[21,11],[29,7],[24,4],[54,-1],[24,-5],[22,-13],[7,-39],[35,6],[15,17],[42,25],[24,13],[15,18],[5,36],[-12,23],[-20,10],[-25,3],[-55,1],[-10,-1],[-16,0],[-32,-2],[-36,2],[-28,8],[-64,24],[-50,28],[-52,41],[-27,29],[-14,25],[-29,50],[0,1],[-4,26],[17,22],[2,2],[16,13],[19,13],[19,23],[19,38],[5,12],[4,11],[14,36],[6,42],[-1,28],[-3,16],[-6,37],[-7,28],[-10,35],[-15,23],[-21,15],[-21,13],[-42,21],[-33,25],[-33,30],[-32,25],[-22,7],[-17,-1],[-16,-2],[-23,-11],[-21,-22],[-19,-19],[-16,-3],[-21,-5],[-18,6],[-18,17],[-16,40],[-21,44],[-12,24],[1,29],[34,11],[46,-3],[29,-4],[21,3],[32,7],[28,17],[21,12],[18,15],[18,16],[14,27],[13,16],[10,12],[22,34],[17,26],[11,22],[5,22],[0,3],[-8,30],[-14,18],[-45,17],[-23,2],[-59,15],[-25,3],[-26,-1],[-77,4],[-28,1],[-40,4],[-15,2],[-32,6],[-35,10],[-85,34],[-88,29],[-21,7],[-32,10],[-74,21],[-30,19],[-26,26],[-10,8],[-17,12],[-19,12],[-41,17],[-54,25],[-48,29],[-79,46],[-76,52],[-37,31],[-43,33],[-55,41],[-34,35],[-21,26],[-25,26],[-46,45],[-25,21],[-51,27],[-25,8],[-16,16],[-16,24],[3,8],[6,22],[17,13],[29,4],[20,-28],[21,-29],[29,1],[26,15],[28,-5],[15,-18],[28,-32],[17,-14],[30,-6],[27,5],[24,16],[1,44],[-5,36],[-4,41],[3,43],[5,40],[16,38],[25,23],[26,-5],[19,-21],[13,-32],[8,-45],[11,-23],[25,13],[25,20],[28,10],[27,-5],[23,-12],[24,-14],[20,-2],[18,10],[6,24],[-16,28],[4,25],[36,5],[44,11],[20,18],[15,24],[0,33],[-41,-14],[-56,-12],[-34,-12],[-26,9],[-5,35],[10,30],[10,37],[2,39],[-9,34],[-19,16],[-22,0],[-20,-31],[-31,-16],[-29,-21],[-25,-32],[-20,-26],[-68,-21],[-40,-9],[-21,15],[11,32],[0,44],[28,30],[20,20],[-9,24],[-4,10],[-6,15],[16,28],[23,8],[34,5],[30,16],[15,28],[6,47],[-7,38],[-13,28],[-17,17],[-58,11],[-22,10],[-5,36],[25,29],[11,13],[50,36],[10,25],[-10,25],[-51,31],[-26,19],[-38,33],[-12,26],[24,1],[25,-17],[20,-8],[28,-1],[28,9],[14,37],[-6,23],[-36,56],[-13,32],[-10,55],[4,34],[3,33],[-9,26],[-7,26],[18,10],[30,22],[22,23],[21,2],[14,-57],[14,-36],[22,-20],[27,-2],[14,17],[11,32],[53,64],[22,54],[11,27],[15,37],[4,28],[-31,17],[-21,-3],[-13,-34],[-30,-31],[-32,2],[-18,11],[-23,32],[-11,23],[0,35],[22,21],[27,1],[28,10],[23,25],[11,23],[15,17],[22,8],[26,-23],[17,12],[18,53],[29,48],[3,25],[-9,88],[-7,33],[-24,29],[-38,22],[-41,19],[-20,15],[-20,9],[-29,-17],[-34,-24],[-8,-37],[-5,-24],[-35,-1],[-30,2],[-22,17],[-4,47],[11,36],[7,28],[-17,32],[-21,-2],[-30,-21],[-29,-22],[-20,-18],[-19,-8],[-20,14],[-26,25],[-12,22],[21,35],[5,27],[-9,25],[20,24],[28,3],[7,25],[-10,35],[6,26],[25,14],[13,25],[-4,26],[-19,13],[-22,10],[-6,24],[18,25],[18,16],[16,23],[-11,24],[-14,24],[-3,25],[6,37],[13,26],[22,-18],[5,-29],[13,-19],[22,13],[1,30],[-3,41],[4,13],[3,13],[20,1],[3,-41],[6,-28],[21,-21],[27,-2],[23,25],[18,26],[13,24],[19,35],[21,33],[14,32],[0,31],[-45,21],[-30,19],[-2,30],[16,29],[22,29],[15,23],[24,8],[38,-12],[20,-6],[20,4],[10,25],[3,26],[-42,22],[-29,5],[-25,18],[-17,23],[-30,34],[-16,27],[15,30],[28,27],[19,20],[17,13],[21,12],[25,20],[9,33],[11,26],[19,29],[40,22],[24,8],[17,18],[10,22],[18,10],[23,-14],[30,-8],[20,1],[18,11],[13,26],[7,25],[20,50],[8,30],[-5,24],[-49,19],[-22,11],[-23,-8],[-17,-45],[-14,-19],[-24,-2],[2,32],[-14,27],[-23,20],[-16,30],[-1,26],[22,21],[34,-2],[18,20],[-3,29],[0,35],[-16,17],[-28,-12],[-21,1],[-18,62],[-14,25],[-24,22],[-1,30],[10,30],[-18,22],[-23,26],[-10,26],[-10,32],[-20,5],[-12,-33],[-12,-23],[-29,-3],[-18,26],[-27,22],[-25,9],[-16,21],[-4,31],[2,40],[-7,30],[-19,39],[-15,47],[0,27],[24,28],[26,4],[-7,29],[-1,7],[-17,13],[-13,21],[2,11],[4,20],[-1,26]],[[15456,59540],[-126,-5],[-4,0],[-104,-4],[-37,-2],[-79,1],[-28,0],[-52,0],[-82,-1],[-58,0],[-186,0],[-68,1],[-21,0],[-76,0],[-33,0],[-24,0],[-33,1],[-10,0],[-32,0],[-20,0],[-20,0],[-19,0],[-38,0],[-155,1],[-59,0],[-61,1],[-21,-1],[-132,2],[-145,-2],[-43,0],[-43,0],[-54,0],[-41,0],[-49,0],[-99,0],[-38,0],[-176,0],[-10,1],[-128,-6],[-29,2],[-43,3],[-26,0],[-28,0],[-52,-1],[-100,-3],[-35,-2],[-37,1],[-23,1],[-137,3],[-42,-1],[-39,-82],[-14,-31],[-20,-42],[-37,-78],[-23,-49],[-72,-156],[-23,-49],[-10,-22],[-23,-48],[-37,-79],[-14,-30],[-10,-22],[-3,-7],[-18,-39],[-8,-17],[-4,-8],[-16,-34],[-22,-47],[-19,-41],[-29,-61],[-26,-56],[-58,-124],[-37,-80],[-41,-88],[-23,-50],[-26,-55],[-12,-27],[-13,-28],[-1,-2],[-20,-43],[-12,-26],[-50,-107],[-19,-41],[-31,-67],[-31,-66],[-30,-63],[-28,-59],[-30,-67],[-13,-29],[-61,-117],[-163,2],[-62,0],[-74,1],[-84,0],[-68,0],[-21,0],[-44,0],[-176,1],[-156,1],[-42,0],[-168,2],[-39,0],[-74,1],[-36,0],[-199,1],[-124,1],[-21,0],[-43,0],[-57,0],[-67,-9],[-38,-3],[-11,-22],[9,-29],[-23,-23],[-3,-28],[23,-13],[3,-25],[-16,-22],[-25,-14],[-2,-8],[-3,-19],[20,-24],[0,-32],[10,-31],[0,-30],[-2,-27],[9,-24],[-1,-6],[-1,-11],[-1,-12],[-26,-10],[-19,-6],[-19,-5],[-3,-34],[-6,-26],[20,-10],[3,-10],[6,-19],[8,-22],[25,-24],[-9,-25],[-19,-10],[-26,-18],[-18,-14],[-19,-12],[-17,-14],[-14,-20],[15,-21],[-23,-18],[-19,15],[-6,-10],[-6,-10],[8,-38],[-10,-30],[3,-24],[-20,-1],[-18,-10],[-26,-12],[-14,-18],[-25,-2],[-28,-10],[-19,5],[-25,-16],[-19,5],[-14,21],[-18,-8],[7,-30],[20,-11],[6,-25],[-9,-24],[30,-3],[21,13],[-7,-31],[11,-25],[-16,-21],[8,-27],[18,-9],[4,-35],[5,-30],[15,-20],[-7,-28],[1,-32],[20,11],[28,6],[19,14],[15,16],[29,2],[36,-49],[22,-30],[-21,-1],[-41,-21],[5,-38],[4,-25],[-14,-17],[-19,-13],[-29,3],[-19,-16],[-19,-22],[-8,-30],[15,-25],[9,-22],[-10,-23],[-26,-12],[-11,-28],[31,-25],[18,-22],[-10,-28],[-4,-27],[18,-21],[18,-14],[6,-30],[10,-22],[38,-67],[1,-3],[6,-27],[-23,-17],[-21,-24],[-5,-26],[-2,-37],[-11,-26],[-27,4],[-19,-6],[-7,-25],[9,-27],[-5,-32],[-17,-20],[-8,-28],[-4,-47],[0,-11],[-22,-11],[-22,-7],[-22,-22],[4,-25],[28,-15],[17,-19]],[[9397,55165],[-39,-18],[-40,-18],[-27,-12],[-19,-9],[-21,-12],[-13,-8],[-17,-13],[-17,-14],[-10,-9],[-17,-14],[-14,-11],[-16,-10],[-13,-7],[-18,-11],[-1,0],[-9,-6],[-35,-23],[-22,-23],[-21,-25],[-19,-26],[-35,-65],[-17,-30],[-20,-29],[-11,-22],[-19,-18],[-20,-11],[-25,-5],[-59,-8],[-32,-12],[-29,-13],[-24,-8],[-21,9],[-166,193],[-20,22],[-14,16],[-13,20],[-10,30],[0,2],[-5,18],[-5,23],[-6,22],[-6,19],[-7,23],[-2,19],[0,17],[3,25],[6,28],[6,52],[-7,131],[3,66],[0,76],[-3,30],[-32,31],[-55,63],[-9,13],[-1,24],[9,26],[13,18],[17,24],[7,13],[15,33],[9,34],[-6,50],[-1,19],[-1,41],[13,30],[142,67],[11,25],[-3,24],[-18,16],[-27,18],[-21,17],[-8,16],[-1,16],[9,16],[12,18],[25,35],[6,11],[3,10],[0,15],[-4,13],[-8,14],[-9,10],[-5,-3],[-76,-33],[-103,-39],[-9,-2],[-12,0],[-20,15],[-4,4],[-11,33],[-4,19],[-6,23],[-4,11],[-10,5],[-12,5],[-25,-2],[-64,-12],[-26,14],[-5,5],[3,24],[5,14],[10,21],[13,23],[5,35],[-7,31],[-10,34],[0,31],[1,8],[12,41],[2,27],[-4,5],[-11,13],[-12,10],[-12,8],[-13,8],[-34,30],[-9,12],[-6,12],[5,18],[34,21],[33,9],[53,17],[21,26],[-13,30],[-19,39],[4,24],[24,63],[2,31],[-24,46],[-21,18],[-30,19],[-20,20],[-17,24],[-4,29],[2,99],[-15,22],[-19,1],[-19,-1],[-21,-2],[-25,-7],[-9,-2],[-25,-3],[-32,-6],[-40,-5],[-41,-6],[-44,-1],[-29,-8],[-28,-7],[-29,-5],[-33,0],[-21,8],[-21,32],[-9,42],[0,45],[-3,55],[-8,28],[-11,26],[-17,29],[-18,28],[-14,43],[-17,32],[-26,11],[-22,-5],[-18,-7],[-57,-34],[-9,-6],[-11,-8],[-17,-12],[-10,-1],[-9,-2],[-19,9],[-5,4],[-8,15],[-12,28],[-15,33],[-15,32],[-22,39],[-21,39],[-13,36],[-15,36],[-14,23],[-14,18],[-11,16],[-12,26],[-8,27],[-5,19],[-17,18],[-36,22],[-35,19],[-37,16],[-21,3],[-9,1],[-34,7],[-32,3],[-46,-3],[-13,2],[-9,6],[-10,10],[-32,43],[-12,29],[-8,22],[-4,17],[-3,14],[-5,30],[1,31],[6,24],[18,32],[43,53],[11,30],[2,36],[3,27],[11,22],[15,15],[28,18],[46,10],[21,7],[17,8],[8,6],[10,11],[21,31],[13,30],[-2,25],[-15,33],[-39,51],[-14,33],[13,27],[16,13],[22,16],[32,40],[9,13],[12,22],[42,57],[10,20],[4,16],[2,32],[1,40],[0,36],[-4,68],[-8,109],[8,27],[29,30],[25,6],[22,7],[18,5],[118,33],[33,14],[62,23],[37,8],[64,16],[13,9],[20,13],[19,29],[-1,40],[-1,28],[5,28],[5,15],[19,31],[20,17],[25,36],[9,22],[11,27],[16,34],[-6,25],[-25,-2],[-25,-17],[-21,-20],[-30,-9],[-45,12],[-20,-6],[-32,-18],[-40,-27],[-50,-19],[-38,-22],[-33,-12],[-29,-5],[-34,-4],[-39,-8],[-33,-12],[-36,-6],[-35,0],[-20,7],[-17,13],[-23,31],[-21,29],[-10,29],[4,27],[23,5],[24,-10],[23,-7],[18,22],[1,31],[-7,62],[-2,50],[-8,141],[-6,102],[-22,107],[-6,42],[-12,32],[-25,52],[-10,24],[-24,15],[-23,10],[-41,-4],[-31,-9],[-17,-3],[-16,7],[-15,19],[-47,58],[-55,80],[-42,45],[-35,19],[-19,10],[-52,39],[-39,7],[-40,-1],[-31,-7],[-20,12],[-26,20],[-19,26],[2,29],[9,50],[-7,43],[2,34],[33,55],[9,26],[28,79],[143,273],[16,31],[2,3],[0,4],[2,20],[-2,34],[-9,2],[-3,10],[-286,37],[-14,4],[-6,20],[105,275],[0,15],[0,14],[-3,12],[-22,15],[-30,17],[-25,4],[-22,-20],[3,-42],[-2,-25],[-18,-16],[-32,7],[-38,35],[-19,32],[-19,31],[-22,12],[-19,-10],[-39,-51],[-31,-29],[-99,25],[-94,64],[-126,132],[-73,73],[-49,23],[-1,1],[-72,34],[-23,11],[-4,36],[23,113],[26,41],[33,40],[-3,56],[-18,35],[-29,-5],[-42,-57],[-23,-5],[-21,34],[-10,30],[12,25],[20,18],[22,14],[33,26],[29,5],[41,1],[14,-17],[23,-21],[19,-6],[21,6],[47,14],[22,6],[14,26],[6,34],[19,45],[12,-2],[10,-6],[19,-14],[32,-18],[21,9],[12,8],[19,17],[28,25],[20,22],[18,20],[27,18],[22,15],[12,22],[-5,32],[-33,49],[2,26],[4,30],[4,38],[7,12],[17,17],[24,-3],[24,-17],[31,-2],[18,20],[-1,27],[-10,23],[-10,10],[-17,19],[-10,31],[2,12],[18,20],[5,4],[20,5],[27,0],[23,2],[1,1],[13,10],[20,18],[18,19],[19,32],[-8,25],[-4,7],[-17,14],[-9,6],[-19,8],[-15,5],[-22,3],[-29,-2],[-44,-5],[-32,-2],[-34,1],[-46,2],[-24,2],[-30,-1],[-34,-1],[-29,-5],[-24,-8],[-45,2],[-13,2],[-16,3],[-11,4],[-16,7],[-13,5],[-11,6],[-13,7],[-11,5],[-9,3],[-20,5],[-22,16],[-17,19],[-2,24],[22,-2],[20,-12],[6,0],[16,8],[6,5],[1,14],[-1,13],[-4,17],[-4,12],[-6,17],[-8,21],[-5,15],[-3,15],[-6,38],[-1,17],[0,12],[-1,22],[-3,7],[-11,11],[-15,1],[-12,0],[-11,1],[-12,3],[-7,3],[-10,9],[-7,32],[3,16],[-9,5],[-3,13],[-11,-4],[-16,-10],[-12,-8],[-7,-8],[-7,-9],[-21,-25],[-35,6],[-24,38],[-35,17],[-31,-17],[-1,-27],[11,-29],[67,-28],[5,-27],[-20,-13],[-99,-21],[-139,4],[-121,18],[-54,14],[-84,0],[-80,14],[-51,34],[-28,47],[-22,36],[-67,37],[-61,33],[-13,8],[-22,21],[0,2],[0,40],[-7,38],[-30,7],[-50,10],[3,26],[17,22],[46,28],[7,27],[-19,11],[-54,5],[-44,33],[-51,34],[-22,36],[-15,50],[-71,16],[-45,49],[-43,56],[-42,83],[8,52],[38,-5],[26,37],[3,34],[-12,25],[-24,-7],[-40,-4],[-28,22],[-12,34],[-1,54],[23,18],[50,1],[14,17],[-1,33],[-35,46],[-60,52],[-35,40],[-36,46],[-50,17],[-12,4],[-9,17],[-31,59],[-47,92],[-8,78],[-9,50],[-47,80],[-17,115],[29,59],[-29,41],[21,80],[31,30],[64,25],[6,42],[94,142],[38,-16],[-8,-25],[-19,-12],[-11,-22],[15,-16],[20,7],[39,27],[26,7],[61,1],[14,0],[-1,50],[-65,47],[-73,24],[-13,29],[16,17],[40,-18],[25,5],[32,14],[58,5],[16,20],[-7,32],[5,34],[-5,7],[-19,17],[-27,11],[-20,29],[2,44],[12,26],[46,23],[21,8],[10,9],[-6,16],[-7,18],[-14,25],[-13,21],[6,45],[21,35],[5,11],[-4,9],[0,16],[-16,28],[-2,19],[0,16],[2,17],[-13,64],[1,42],[15,18],[22,6],[31,-30],[15,-21],[20,-2],[12,8],[10,10],[-1,13],[2,7],[-3,9],[-1,16],[-12,16],[-10,11],[-15,13],[-22,0],[-24,-2],[-20,2],[-26,13],[-21,29],[-15,33],[-11,32],[-10,32],[-22,38],[-42,50],[-18,20],[-8,27],[-4,22],[-2,33],[-2,26],[1,36],[70,155],[5,9],[14,4],[6,1],[18,-21],[27,-16],[19,1],[6,-4],[8,-1],[2,-8],[5,-3],[-1,-8],[3,-9],[-4,-54],[5,-10],[12,-5],[42,25],[20,11],[3,7],[8,7],[0,13],[1,10],[-2,18],[-46,38],[-23,30],[4,30],[17,16],[29,3],[19,7],[10,15],[8,13],[5,18],[3,13],[10,15],[5,5],[12,6],[20,9],[20,7],[19,21],[6,26],[17,16],[19,10],[0,16],[4,5],[-4,9],[0,8],[-9,11],[0,15],[14,18],[15,9],[168,346],[2,33],[-3,18],[-7,22],[-22,10],[-23,6],[-142,-54],[-43,-15],[-21,0],[-31,7],[-20,18],[-5,56],[-2,13],[-6,14],[-6,1],[-7,8],[-59,-1],[-20,-1],[-12,31],[11,21],[42,73],[27,44],[5,34],[-6,24],[-11,50],[-18,76],[-10,124],[-2,42],[-10,25],[-8,6],[-39,24],[-47,24],[-34,17],[-21,17],[-25,26],[-45,78],[-44,89],[-23,58],[-25,46],[-34,26],[-9,4],[-14,6],[-20,28],[-8,26],[-3,7],[1,47],[12,20],[31,34],[46,24],[12,27],[18,54],[-1,43],[5,24],[32,4],[12,2],[4,-37],[24,13],[-2,59],[-12,36],[-22,1],[-22,-13],[-9,22],[15,35],[23,8],[31,14],[5,11],[7,5],[6,24],[-1,27],[10,29],[27,40],[11,36],[-17,38],[-41,44],[-35,20],[-27,-9],[-51,-11],[-25,23],[11,17],[27,13],[-5,13],[5,6],[-17,26],[-21,10],[-31,-11],[-34,-10],[-28,8],[-9,31],[7,40],[27,21],[3,9],[5,9],[1,11],[-13,14],[-13,19],[-6,66],[17,53],[11,27],[9,35],[-6,29],[-20,29],[-25,26],[-12,30],[-8,28],[-12,5],[-32,4],[-24,0],[-27,12],[-23,16],[-22,-21],[-17,-30],[-44,1],[-31,9],[-23,23],[-16,58],[2,37],[0,12],[-23,29],[-45,35],[-30,10],[-21,29],[-3,7],[-14,38],[-17,19],[-114,74],[-22,-2],[-17,-14],[-28,-22],[-21,4],[-25,23],[4,34],[23,5],[15,22],[2,49],[-6,7],[-1,13],[-20,14],[-31,7],[-17,31],[3,31],[4,51],[-3,26],[3,56],[-3,7],[0,14],[-10,9],[-9,8],[-19,18],[-11,23],[2,16],[2,6],[15,27],[20,18],[18,14],[24,10],[-9,25],[-20,29],[-3,7],[-2,12],[-1,15],[0,12],[0,13],[-17,15],[-28,17],[-19,2],[-20,0],[-27,-11],[-25,16],[-11,34],[24,16],[40,0]],[[35368,62311],[-260,-66],[-166,-41],[-457,-115],[-112,-28],[-1,0],[-108,-27],[-282,-71],[-86,-21],[-64,-17],[-24,-7],[-39,-10],[-98,-12],[-80,-13],[-145,-22],[-26,-3],[-2,0],[-105,-16],[-55,-15],[-514,-134],[-24,-6],[-29,-6],[-23,-7],[-27,-7],[-116,-30],[-112,-30],[-135,-34],[-151,-39],[-29,-7],[-23,-5],[-111,-30],[-22,-5],[-135,-31],[-30,-8],[-302,-84],[-67,-18],[-16,-5],[-47,-12],[-68,-20],[-7,-1],[-98,-26],[-36,-8],[-19,-6],[-25,-5],[-69,-19],[-212,-55],[-24,-7],[-38,-10],[-31,-8],[-108,-28],[-55,-14],[-53,-16],[-1,0],[-54,-13],[-99,-26],[-155,-43],[-9,-2],[-221,-57],[-3,-1],[-142,-38],[-54,-14],[-65,-17],[-133,-36],[-19,-5],[-206,-53],[-3,-1],[-74,-22],[-35,-9],[-36,-10],[-50,-13],[-96,-26],[-35,-10],[-87,-24],[-161,-42],[-63,-15],[-152,-37],[-133,-32],[-5,-1],[-136,-35],[-150,-43],[-106,-30],[-57,-15],[-121,-33],[-11,-2],[-125,-33],[-55,-16],[-127,-37],[-168,-47],[-35,-13],[-23,-6],[-44,-12],[-36,-10],[-36,-9],[-27,-8],[-32,-8],[-35,-10],[-48,-13],[-23,15],[-20,25],[-23,13],[-26,11],[-24,-2],[-28,-7],[-33,-11],[-31,-19],[-18,-13],[-28,-16],[-32,-12],[-51,-21],[-33,-13],[-39,-9],[-51,-7],[-34,0],[-33,3],[-17,10],[-23,10],[-15,9],[-3,2],[-19,12],[-17,17],[-15,18],[-14,22],[-15,28],[-17,22],[-8,34],[-4,54],[1,25],[0,26],[-2,29],[-8,59],[-11,31],[-30,11],[-32,-23],[-12,-27],[-9,-28],[-26,-77],[-17,-20],[-16,-20],[-76,-28],[-20,-1],[-24,-2],[-27,8],[-30,7],[-68,33],[-56,24],[-25,17],[-31,33],[-25,34],[-7,53],[11,26],[20,42],[36,29],[33,14],[32,15],[46,24],[18,9],[22,14],[19,12],[32,20],[49,20],[37,25],[7,25],[-6,26],[-24,25],[-62,27],[-60,21],[-49,19],[-58,37],[-41,49],[-22,36],[-7,63],[11,34],[12,35],[18,26],[21,31],[41,40],[46,43],[47,56],[37,40],[40,84],[-3,28],[-8,30],[-25,27],[-43,8],[-21,-7],[-27,-10],[-56,-31],[-72,-28],[-33,-4],[-23,-3],[-61,14],[-57,38],[-42,41],[-14,27],[-14,31],[-10,87],[-27,173],[2,59],[18,60],[-2,71],[5,34],[23,19],[25,9],[79,-3],[20,-6],[30,-9],[64,7],[24,3],[48,41],[0,42],[-31,39],[-98,64],[-28,34],[-14,51],[2,64],[8,44],[-1,26],[-2,26],[-2,26],[-1,26],[12,21],[23,7],[27,9],[24,8],[19,5],[25,1],[31,-5],[37,-8],[37,-3],[38,3],[33,17],[20,26],[1,36],[-2,25],[-5,26],[-13,27],[-47,39],[-24,6],[-26,0],[-29,-17],[-24,-26],[-14,-20],[-26,-36],[-15,-23],[-14,-19],[-18,-11],[-31,-10],[-22,-6],[-37,1],[-30,9],[-14,16],[-68,80],[-38,45],[-21,26],[-20,33],[-32,59],[-13,35],[-14,37],[-20,60],[-14,27],[-24,53],[-15,33],[-4,9],[-10,21],[-19,33]],[[51005,68580],[-16,-25],[-330,-558],[-50,-466],[33,-526],[45,-711],[-51,-382],[-52,-120],[-31,-15],[-101,-51],[-40,-26],[-137,-90],[-120,-38],[-270,44],[-448,186],[-54,22],[-141,59],[-234,215],[-206,299],[-108,-24],[-234,-227],[-73,-145],[-27,-315],[25,-109],[22,-33],[88,-130],[148,-222],[120,-101],[90,-61],[126,-71],[73,-15],[92,0],[366,49],[363,162],[43,19],[306,44],[230,-99],[4,-1],[74,-86],[-13,-178],[-25,-122],[-37,-136],[-23,-55],[-28,-60],[-11,-19],[-17,-28],[-42,-42],[-70,-70],[-23,-16],[-60,-44],[-100,-87],[-196,-190],[-44,-31],[-104,-62],[-76,-46],[-107,-47],[-89,-34],[-42,-27],[-27,-4],[-298,-137],[-4,2],[-143,71],[-16,8],[-455,-30],[-103,-72],[-112,-184],[-6,-112],[41,-90],[12,-25],[80,-37],[19,-165],[-5,-26],[-10,-54],[-1,-27],[-3,-53],[-13,-48],[-17,-129],[-5,-112],[-5,-114],[1,-15],[10,-60],[-2,-51],[-3,-72],[3,-197],[2,-68],[23,-186],[13,-96],[7,-30],[1,-15],[4,-8],[7,-34],[47,-154],[54,-132],[71,-117],[199,-244],[28,-20],[83,-100],[1,-46],[25,-79],[16,-34],[43,-52],[65,-52],[69,-56],[45,-55],[4,-46],[12,-47],[29,-60],[42,-61],[40,-125],[23,-134],[-2,-92],[-19,-54],[-18,-32],[-3,-4],[-31,-54],[-3,-6],[-44,-54],[-61,-76],[-23,-38],[-14,7],[-132,0],[-359,0],[-215,130],[-212,266],[-64,131],[-57,164],[-64,312],[-57,247],[16,62],[23,52],[11,61],[-3,13],[-6,24],[-10,38],[-64,129],[-63,31],[-61,2],[-86,-36],[-22,-40],[-11,-19],[-72,-53],[-107,-69],[-25,-21],[-32,-25],[-68,-55],[-63,-103],[-55,-123],[-43,-134],[-5,-87],[7,-39],[8,-50],[3,-14],[15,-37],[39,-97],[57,-168],[61,-178],[36,39],[83,93],[157,71],[158,-95],[-76,-173],[-12,-258],[33,-424],[281,-240],[1,0],[2,-3],[4,-46],[2,-33],[36,-55],[44,-32],[34,-24],[32,-27],[22,-20],[27,-24],[4,-3],[55,-43],[48,-48],[14,-13],[36,-37],[38,-45],[6,-3],[3,-1],[2,-3],[3,-2],[2,-4],[38,-31],[3,-4],[26,-32],[14,-23],[4,-20],[4,-21],[0,-2],[-17,-521],[-130,-328],[-56,-72],[-261,-144],[-295,-121],[-213,-48],[-105,-20],[-197,-9],[-254,31],[-152,31],[-444,88],[-47,10],[-313,-3],[-105,-53],[-128,-106],[-80,-133],[-17,-136],[56,-183],[169,-215],[314,-175],[32,-18],[335,-309],[202,-229],[97,-174],[49,-141],[2,-36],[12,-211],[-28,-132],[-39,-85],[-120,-262],[-179,-264],[-115,-146],[-71,-92],[-79,-109],[-49,-66],[-28,-122],[-6,-290],[85,-162],[130,-144],[284,-226],[103,-102],[140,-138],[375,-370],[67,-82],[72,-225],[0,-135],[1,-63],[-41,-154],[-37,-104],[-139,-225],[-199,-197],[-396,-222],[-320,-135],[-108,-42],[-184,-123],[-35,-23]],[[46082,50614],[-49,-44],[-29,-36],[-16,-39],[-19,-52],[-19,-41],[-12,-23],[-21,-43],[-24,-46],[-16,-24],[-29,-49],[-24,-29],[-42,-36],[-24,-22],[-44,-48],[-25,-40],[-20,-49],[-10,-26],[-14,-35],[-17,-14],[-43,-14]],[[45585,49904],[-10,32],[-1,29],[-3,48],[-5,48],[-2,62],[5,61],[4,63],[11,36],[17,37],[17,36],[15,23],[17,27],[14,23],[3,31],[-1,15],[-1,16]],[[45665,50491],[4,76],[5,29],[4,38],[5,27],[10,43],[10,36],[8,25],[16,39],[19,43],[2,3],[11,24],[24,46],[12,22],[21,33],[62,108],[45,63],[16,41],[5,27],[-1,29],[-13,59],[-9,24],[-28,104],[-42,86],[-12,21],[-17,23],[-27,30],[-45,38],[-45,33],[-68,43],[-33,10],[-31,7],[-24,2],[-60,-1],[-65,-7],[-68,-12],[-31,-9],[-37,0],[-26,-4],[-48,3],[-45,-1],[-20,-5],[-21,-10],[-53,-34],[-63,-25],[-22,-12],[-34,-13],[-24,-7],[-27,-2],[-38,0],[-32,8],[-40,6],[-22,1],[-18,11],[-25,13],[-26,8],[-39,3],[-43,1],[-42,-2],[-45,-8],[-47,-1],[-32,11],[-14,29],[-2,33],[-29,13]],[[44411,51710],[61,133],[29,70],[67,158],[26,87],[43,143],[13,34],[12,44],[12,44],[7,45],[-2,34],[-6,27],[-27,31],[-36,10],[-35,18],[-56,30],[-20,33],[-6,40],[-3,34],[6,46],[10,38],[20,48],[30,53],[29,27],[34,17],[28,17],[42,18],[39,32],[22,34],[19,44],[26,61],[6,54],[-3,73],[-16,57],[-31,61],[-37,37],[-19,9],[-25,12],[-63,11],[-45,14],[-32,52],[-20,90],[-2,59],[-4,40],[-4,68],[-1,65],[4,57],[34,119],[37,81],[32,69],[19,46],[19,61],[14,36],[20,38],[17,33],[34,61],[45,72],[41,49],[54,28],[71,8],[95,-13],[76,-20],[38,7],[29,20],[25,57],[7,52],[-7,37],[-12,60],[-8,76],[1,61],[20,62],[28,47],[33,47],[27,45],[11,40],[-1,28],[-56,53],[-35,37],[-33,80],[-19,49],[-28,37],[-38,38],[-53,44],[-41,25],[-45,15],[-55,18],[-48,29],[-33,29],[-31,36],[-39,20],[-37,0],[-58,-22],[-51,-29],[-46,-42],[-37,-50],[-21,-34],[-30,-37],[-19,-15],[-57,27],[-38,23],[-53,22],[-55,17],[-61,14],[-53,6],[-46,28],[-28,44],[-26,90],[-8,40],[-12,24],[-16,13],[-37,35],[-52,28],[-63,56],[-70,64],[-26,24],[-61,14],[-76,3],[-57,-3],[-99,-16],[-73,-3],[-109,33],[-86,41],[-68,22],[-48,33],[-43,52],[-18,27],[-27,39],[-67,45],[-49,24],[-35,17],[-90,35],[-42,47],[-26,59],[4,65],[12,33],[10,36],[2,38],[-7,31],[-14,30],[-26,19],[-64,32],[-52,23],[-39,22],[-45,35],[-41,47],[-22,29],[-12,22],[-20,39],[-35,55],[-23,43],[-6,10]],[[37463,58827],[-28,-7],[-17,18],[-23,10],[-21,-5],[-17,-30],[-15,-18],[-21,-20],[11,-30],[-5,-55],[-11,-21],[-23,-16],[-15,-30],[4,-29],[5,-28],[-10,-32],[-7,-5],[-14,-10],[-21,-15],[-20,-13],[-26,10],[-23,10],[-33,0],[-27,-13],[-17,-17],[-26,-23],[-40,-16],[1,-27],[12,-25],[-15,-28],[-66,-5],[-21,-26],[-2,-63],[-13,-23],[-54,-5],[-23,14],[3,31],[-6,23],[-16,18],[-22,-9],[-10,-24],[4,-27],[-11,-21],[-28,0],[-8,-27],[7,-31],[-18,-24],[-18,-21],[-7,-25],[-20,-6],[-20,12],[-21,-11],[-15,-15],[-22,2],[-15,19],[4,26],[6,25],[-22,-5],[-21,-11],[-18,-15],[-20,-2],[-24,4],[-22,-1],[-18,-12],[-9,-22],[-11,-25],[-19,-8],[-21,2],[-15,-21],[-18,-12],[-19,-8],[-13,-19],[-18,-13],[-18,12],[-21,14],[-19,6],[-23,-2],[-19,-2],[-11,19],[-19,11],[-7,-26],[-14,-24],[-16,-13],[-21,-7],[-12,2],[-11,2],[-23,5],[-20,-9],[-9,-22],[-5,-27],[-12,-21],[-20,-4],[-14,26],[3,27],[2,27],[-7,27],[-14,19],[-19,21],[-13,23],[-17,20],[-17,13],[-22,5],[-21,-3],[-15,18],[-11,26],[-17,15],[-18,15],[-24,0],[-19,12],[-7,12],[-7,11],[-20,8],[7,26],[1,26],[17,13],[-10,25],[-21,-3],[-21,4],[8,27],[-2,28],[-7,24],[3,26],[-18,17],[-2,27],[5,25],[14,25],[0,25],[-24,6],[-22,9],[-9,24],[3,9],[6,15],[1,27],[-11,20],[-24,-1],[-14,-20],[-23,2],[-20,-1],[-15,-18],[-20,7],[-18,13],[-5,15],[-3,9],[5,29],[-6,28],[-25,8],[-18,14],[-15,22],[-20,-5],[-13,21],[-21,-6],[-20,-14],[-25,-1],[-1,-25],[13,-19],[-7,-28],[-19,7],[-21,3],[-17,12],[-20,-2],[-14,-18],[-21,-3],[-15,-16],[-18,9],[-22,-6],[-17,-19],[-18,-13],[-20,-8],[-22,-1],[-20,-8],[-19,5],[-4,25],[-19,10],[-11,24],[-18,12],[-20,-4],[-19,-5],[-15,17],[-17,11],[-16,16],[-17,13],[-10,-22],[14,-21],[0,-26],[-22,5],[-10,22],[-17,16],[-14,-19],[-17,-13],[-21,-2],[3,-28],[8,-22],[-10,-25],[-19,-4],[-22,1],[-19,-10],[-10,-24],[-18,-16],[-13,-20],[-17,-17],[-20,-11],[-25,-7],[-11,-93],[0,-76],[5,-1002],[4,-457],[0,-5],[1,-68],[0,-45],[-1,-28],[0,-17],[-1,-129],[-5,-553],[-1,-134],[-1,-135],[-1,-144],[-1,-148],[-1,-83],[-1,-161],[0,-34],[-1,-33],[-2,-222],[-2,-330],[-1,-115],[-1,-149],[-1,-32],[33,-19],[57,-40],[26,-19],[54,-70],[7,-31],[-9,-47],[-58,-67],[-24,-25],[-22,-26],[-26,-41],[-29,-47],[-18,-43],[-6,-41],[-1,-27],[10,-40],[15,-45],[4,-31],[3,-40],[-5,-72],[3,-37],[10,-30],[8,-43],[3,-32],[6,-59],[2,-23],[3,-35],[10,-86],[1,-11],[23,-239],[3,-32],[20,-200],[5,-60],[5,-48],[4,-46],[7,-76],[3,-30],[8,-77],[9,-85],[3,-31],[43,-430],[63,-633],[37,-360],[20,-210],[5,-47],[13,-119],[0,-7],[3,-24],[26,-36],[23,-31],[11,-24],[15,-22],[13,-38],[8,-59],[0,-49],[-1,-32],[-16,-74],[-4,-30],[18,-25],[23,-8],[20,4],[41,6],[21,-24],[23,-13],[-41,-114],[-1,0],[-25,-72],[-4,-36],[11,-27],[-8,-26],[-40,7],[-19,5],[-41,23],[-10,43],[-23,2],[-32,-13],[-72,0],[-208,1],[-352,-3],[-372,3],[-33,0],[-181,0]],[[33748,49774],[-114,1],[-4,0],[-75,0],[-252,0],[-72,0],[-64,0],[-2,0],[-65,-1],[-43,-43],[-107,0],[-103,-1],[-45,0],[16,30],[12,19],[15,21],[33,61],[13,27],[-17,26],[-23,24],[-31,16],[-25,16],[-30,3],[-30,-7],[-28,-5],[-24,-12],[-26,-26],[-20,-5],[-40,-26],[-28,5],[-32,8],[-16,22],[5,30],[-4,25],[23,20],[25,14],[18,34],[16,21],[7,25],[-4,25],[-13,18],[-11,31],[-35,3],[-18,9],[-13,28],[-35,-1],[-28,8],[-23,12],[-26,0],[-34,11],[-32,2],[-27,8],[-27,7],[-22,9],[-35,37],[-11,25],[5,26],[20,14],[-2,35],[-27,25],[-21,10],[-24,-11],[-22,0],[-22,-28],[-16,-16],[-18,11],[-55,13],[-20,3],[11,28],[-26,18],[-31,-12],[-6,49],[7,38],[-29,2],[-19,-10],[-27,-7],[-3,29],[16,21],[5,50],[-27,10],[-16,-26],[-17,25],[-7,9],[-15,17],[-22,8],[-20,5],[-18,-32],[-31,22],[-40,12],[-22,-8],[-12,-25],[-17,-20],[-21,-20],[-17,-12],[-20,-6],[-19,-5],[-17,-5],[-4,-1],[-20,-9],[-26,-11],[-22,-9],[-15,-23],[-19,13],[-25,-12],[-20,-6],[-24,5],[-19,8],[-15,-19],[-19,-17],[-17,-11],[-4,-4],[-13,-13],[-10,-22],[4,-24],[14,-19],[11,-21],[-11,-20],[-16,-17],[-13,-18],[-8,-23],[-12,-21],[-5,-24],[-7,-23],[-2,-27],[-16,-18],[-5,-25],[-8,-24],[-10,-22],[-17,-16],[-19,-13],[-8,-22],[-18,-14],[-21,-8],[-13,-20],[-20,4],[-21,-7],[-20,-8],[-20,-8],[-19,-11],[-21,-9],[-20,-3],[-19,-5],[-20,-9],[-18,-14],[-17,-16],[-20,-11],[-20,2],[-20,-8],[-19,4],[-18,-21],[-14,-20],[-22,-4],[-22,9],[-20,8],[-21,-16],[-13,-24],[1,-28],[-10,-22],[-20,-13],[-23,-9],[-22,-8],[-29,-6],[-23,-2],[-21,-2],[-19,1],[-22,-11],[-15,-15],[-10,-29],[-14,-21],[-17,-22],[-20,-24],[-20,-23],[-24,-23],[-22,-15],[-19,-21],[-18,-13],[-24,6],[-48,19],[-18,9],[-21,8],[-29,8],[-21,5],[-14,-30],[-13,-59],[-29,-21],[-29,-33],[-40,-20],[-39,2],[-38,28],[-23,-2],[0,-29],[-5,-24],[-18,-27],[-2,-35],[-1,-54],[-9,-25],[-5,-30],[0,-42],[16,-21],[-18,-41],[8,-38],[-6,-45],[10,-25],[11,-32],[9,-35],[-5,-25],[13,-21],[-1,-28],[10,-22],[3,-20],[1,-8],[13,-18],[1,-25],[-13,-29],[-20,-3],[-1,-35],[-2,-27],[10,-25],[-20,-13],[20,-15],[-10,-22],[-19,-16],[-6,-34],[-13,-19],[8,-25],[-16,-15],[-18,-19],[-19,-7],[-21,-15],[-14,-31],[-3,-28],[-15,-21],[-19,-16],[-19,-5],[-16,-25],[-22,-17],[-18,-10],[-20,-11],[-16,-14],[-20,-13],[-16,-21],[22,-5],[7,-32],[-20,-3],[-19,12],[-18,-10],[-3,-26],[-17,-15],[-21,8],[-3,-27],[-18,11],[-19,-11],[-16,-15],[-20,1],[-20,0],[-19,-11],[-16,-13],[-16,-16],[-15,-20],[-20,-4],[-19,4],[-16,-15],[-20,3],[-14,18],[-10,-22],[-20,-7],[-20,-4],[-22,0],[-15,-16],[-15,-19],[-19,10],[-24,-10],[-13,18],[-23,-9],[-19,8],[-15,-15],[-19,-7],[-4,25],[9,22],[-14,19],[-12,19],[0,25],[-6,23],[-21,1],[-19,10],[-19,-3],[-19,1],[-19,-8],[-20,-6],[-20,3],[-20,-8],[-18,-4],[-11,21],[-19,-4],[-8,-23],[-20,-1],[-22,-3],[-13,20],[-19,2],[-20,-2],[-18,11],[-19,4],[12,21],[-10,21],[-18,8],[-19,0],[-12,21],[-10,22],[-22,-8],[-19,-4],[-21,2],[-17,-17],[-9,-21],[-21,-12],[-21,2],[-18,-12],[-18,-13],[-20,-2],[-19,-10],[-22,2],[-20,-16],[-11,-5],[-7,-3],[-195,-22],[-145,-10],[-70,-5],[-129,-7],[-131,-9],[-18,-1]],[[27678,48088],[4,59],[-168,12],[-23,0],[-24,0],[-34,0],[-187,2],[-46,0],[-12,0],[-521,0],[-199,3],[-8,0],[-100,0],[-264,4],[-41,0],[-71,-1],[-20,-3],[-275,0],[-85,0],[-2,0],[-250,-13],[-14,-28],[-13,-34],[-6,-23],[0,-53],[0,-28],[-34,1],[-100,1],[-70,1],[-190,2],[-38,1],[-120,2],[-63,-17],[-193,-21],[-137,-16],[-128,-14],[-19,-2],[-22,-4],[-19,0],[-107,3],[-76,0],[-40,1],[-174,5],[-114,3],[-101,3],[-119,3],[-107,2]],[[23348,47939],[1,25],[0,32],[-3,41],[1,38],[0,34],[-1,40],[1,32],[2,25],[2,31],[-8,203],[0,27],[0,60],[1,7],[-1,99],[1,327],[0,94],[0,107],[1,174],[0,103],[-2,99],[-1,65],[0,68],[0,150],[0,85],[0,26],[0,8],[1,47],[1,14],[0,91],[0,179],[1,258],[0,50],[1,24],[2,299],[-72,1],[0,51],[-1,125],[0,99],[0,86],[-1,63],[0,125],[0,42],[-1,93],[0,31],[0,57],[0,4],[-1,48],[-1,242],[-1,59],[0,40],[-1,87],[0,83],[-1,312],[-1,383],[-1,44],[-1,63],[-8,125],[0,29],[0,15],[0,26],[0,47],[-2,228],[-1,170],[0,41],[-1,35],[0,128],[0,32],[0,94],[0,106],[0,67],[0,35],[-2,107],[1,90],[0,90],[0,99],[0,31],[0,37],[-1,120],[-1,237],[-1,168],[-1,97],[0,55],[0,43],[0,2],[-1,65],[0,145],[0,26],[0,27],[-1,64],[0,88],[0,32],[0,37],[0,128],[1,49],[0,59],[1,123],[-2,39],[-2,27],[0,49],[0,123],[0,39],[0,3],[0,25],[0,23],[0,3],[0,39],[0,13],[0,19],[0,55],[-6,50],[0,53],[-82,7],[-7,1],[-76,5],[-17,1],[-29,2],[-53,4],[-54,4],[0,128],[0,76],[-1,48],[0,80],[0,5],[-1,70],[0,58],[0,46],[-71,0],[-106,2],[-55,0],[-5,0],[-73,1],[0,41],[0,27],[1,43],[1,43],[0,8],[0,22],[-1,102],[-1,66],[-66,0],[-38,0],[-19,0],[-36,0],[-52,0],[-30,0],[-58,-2],[-26,12],[-1,163],[-1,38],[0,45],[0,24],[0,27],[0,28],[0,48],[-1,36],[0,21],[1,28],[-2,47],[0,17],[1,16],[0,35],[0,31],[-1,60],[0,27],[-54,1],[-32,0],[-10,0],[-15,0],[-150,1],[-63,0],[0,85],[0,39],[0,2],[0,24],[0,25],[-24,0],[-22,0],[-23,0],[-57,-1],[-42,2],[-34,-3],[-82,0],[-3,0],[-51,1],[-24,0],[-3,0],[-82,0],[-19,0],[-30,0],[-32,0],[-28,-1],[-56,0],[-31,0],[0,70],[-1,47],[0,34],[0,7],[0,31],[-31,-1],[-45,0],[-41,0],[-21,1],[-66,0],[-211,0],[-39,0],[-59,0],[-141,0],[-1,51],[0,23],[0,2],[-1,102],[-196,-2],[-6,0],[-36,0],[-21,0],[-29,-1],[-34,0],[0,40],[0,43],[-1,24],[0,22],[-1,48]],[[23348,47939],[-1,-28],[0,-5],[2,-28],[1,-28],[-1,-29],[-3,-28],[0,-41],[1,-25],[5,-59],[3,-81],[-23,2],[-68,2],[-19,0],[-27,0],[-35,1],[-36,1],[-83,1],[-20,0],[-10,0],[-20,0],[-23,0],[-33,0],[-24,0],[-316,-2],[-23,0],[-48,2],[-85,2],[-95,3],[0,22],[-25,1],[-97,-3],[-157,-1],[-50,0],[-21,0],[-146,-1],[-12,0],[-37,-1],[-28,0],[-106,0],[-41,0],[-47,-1],[-96,0],[-57,0],[-32,0],[-66,1],[-72,2],[-49,0],[-43,2],[-35,1],[-273,11],[-59,2],[-122,5],[-110,4],[-27,1],[-80,3],[-90,3]],[[20389,47650],[-97,4],[-10,0],[-149,3],[-159,3],[-194,-1],[-28,-1],[-79,-1],[-55,0],[-57,0],[-47,-1],[-80,0],[-184,-1],[-258,-1],[-166,-1],[-132,-1],[-27,0],[-56,0],[-256,-2],[-89,-1],[-68,0],[-85,0],[-63,0],[-26,-1],[-34,0],[-207,0],[-60,-1],[-98,3],[-45,-1],[-77,0],[-87,0],[1,108],[-120,1],[-109,1],[-187,2],[-122,2],[-130,1],[-158,2],[-139,2],[-55,0],[-33,1],[-70,0],[-103,1],[-29,1],[-30,0],[-80,1],[-59,1],[-52,2],[-45,-1],[-24,-1],[-26,0],[-35,-1],[-44,0],[-43,-1],[-28,0],[-43,0],[-34,0],[-25,0],[-21,0],[-105,-3],[-18,0],[-36,0],[-70,0],[-74,2],[-20,0],[-41,1],[-28,-1],[-47,0],[-41,0],[-46,0],[-22,0],[-20,0],[-41,0],[-26,0],[-32,0],[-20,0],[-22,0],[-21,0],[-35,0],[-21,0],[-25,0],[-42,0],[-25,0],[-51,-6],[-32,0],[-23,0],[-18,0],[-6,0],[-25,0],[-19,1],[-2,0],[-48,0],[-34,0],[-42,-2],[-21,0],[-29,1],[-21,0],[-30,0],[-28,1],[-49,0],[-22,3],[-63,-1],[-27,0],[-59,-1],[-80,-1],[-32,0],[-59,0],[-60,0],[-60,1],[-221,0],[-147,1],[-59,0],[-121,0],[-45,0],[-28,1],[-140,1],[-49,0],[-51,0],[-33,0],[-41,0],[-22,0],[-53,0],[-52,0],[-30,1],[-26,0],[-66,0],[-63,0],[-78,0],[-414,1],[-102,0],[-15,-9],[-2,-2],[-27,20],[-21,0],[11,-22],[-23,-6],[-26,9],[-6,-26],[-21,-2],[-19,11],[-8,-30],[-24,-10],[-20,11],[-13,-26],[-23,8],[-18,32],[-17,12],[-17,-24],[-28,-33],[-23,-5],[-17,-15],[-11,-36],[-14,-23],[-27,-12],[-18,-17],[9,-23],[20,3],[-3,-26],[-33,-4],[-23,2],[7,-23],[-17,-19],[-17,21],[-15,15],[-25,-15],[-23,7],[-23,-17],[-27,-27],[-34,-19],[-16,-19],[-19,6],[-18,19],[-21,-39],[-10,-45],[-23,-6],[-21,0],[-24,-2],[-3,34],[-8,27],[-14,-24],[-29,-31],[-21,-14],[-12,-23],[-2,-33],[-30,-13],[-31,-17],[-22,0],[-7,32],[-33,-10],[-12,-21],[-11,-29],[-24,-21],[-21,-12],[-27,-10],[-24,-7],[-17,19],[-25,15],[-14,22],[-19,43],[-24,5],[-33,-10],[-40,20],[-18,18],[-12,20],[-35,8],[-30,0],[-11,-25],[-19,-6],[-15,21],[-37,-4],[-19,8],[-26,-14],[-16,22],[3,30],[-1,25],[-20,-8],[-23,4],[0,28],[-22,-7],[-18,-9],[-10,-32],[-18,12],[-17,18],[-30,-5],[-7,4],[-11,6],[0,25],[-24,11],[-21,-5],[-6,31],[-17,20],[-14,25],[-22,8],[-23,2],[-8,25],[-6,25],[-20,7],[-27,-2],[-4,-27],[-13,-17],[-17,14],[2,25],[9,27],[-24,-3],[-21,-21],[-20,21],[15,26],[13,32],[-14,19],[-24,-13],[-16,-15],[-16,-18],[-20,24],[-17,19],[-20,11],[-22,-5],[8,-27],[-24,7],[-21,17],[-24,1],[-24,-1],[-19,-4],[-5,27],[-18,12],[-19,-13],[-20,-4],[-23,-2],[-9,-32],[-22,-2],[-26,20],[-22,-7],[9,-33],[-2,-31],[-19,-12],[-19,17],[-22,1],[-28,-5],[-16,27],[-26,1],[-17,-13],[18,-26],[-19,-12],[-13,22],[-22,18],[-23,-16],[3,-27],[-2,-30],[-23,-8],[4,-29],[17,-14],[-12,-35],[-19,-35],[-39,-23]],[[9281,47421],[-11,26],[-14,-8],[-23,-12],[-33,-18],[-16,2],[-10,11],[-7,36],[29,49],[1,30],[-4,28],[-16,16],[-6,3],[-18,1],[-7,-2],[-19,-11],[-11,-7],[-11,-4],[-12,0],[-19,4],[-13,6],[-17,25],[-7,27],[-7,30],[-2,27],[-18,46],[-13,22],[-12,60],[10,49],[12,23],[17,25],[22,18],[11,17],[14,22],[13,20],[3,6],[12,39],[19,19],[15,10],[16,6],[16,5],[35,9],[24,2],[33,13],[8,3],[19,7],[13,3],[54,-4],[48,4],[18,4],[28,9],[21,14],[6,25],[-3,28],[-30,7],[-24,4],[-7,2],[-24,13],[-10,27],[-2,27],[5,22],[9,29],[8,34],[2,13],[-12,24],[-17,13],[-7,4],[-35,16],[-30,25],[-14,17],[-3,26],[7,27],[23,25],[4,4],[26,23],[22,14],[14,13],[15,20],[12,21],[17,34],[8,20],[1,1],[8,26],[20,53],[20,34],[29,31],[5,4],[16,8],[14,3],[11,1],[16,-4],[12,-5],[7,-6],[12,-13],[0,-10],[-10,-34],[-6,-17],[-2,-9],[-9,-61],[5,-10],[18,-3],[10,2],[9,5],[27,19],[37,37],[25,14],[16,8],[34,10],[29,-7],[19,12],[3,8],[29,61],[5,10],[39,15],[5,9],[12,18],[-14,71],[-7,27],[3,32],[6,26],[26,48],[2,9],[-11,33],[-14,19],[-22,21],[-19,20],[-13,21],[-4,9],[-14,39],[-19,75],[-8,33],[-4,42],[8,31],[17,31],[3,14],[5,21],[1,26],[-2,22],[-4,15],[-10,20],[-8,1],[-9,0],[-9,1],[-18,-2],[-52,-23],[-48,-14],[-27,-1],[-14,1],[-33,6],[-61,21],[-12,26],[-2,36],[-3,47],[-3,38],[-8,27],[-19,36],[-5,8],[-12,16],[-14,1],[-22,2],[-28,-3],[-23,7],[-18,16],[-21,12],[-52,50],[-7,5],[-19,6],[-4,1],[-16,1],[-9,-2],[-11,-6],[-33,-24],[-28,-17],[-25,-4],[-18,-1],[-14,3],[-9,3],[-61,26],[-8,5],[-21,19],[-9,22],[-2,36],[28,27],[30,13],[20,11],[16,14],[20,21],[13,30],[13,21],[-1,33],[8,29],[5,19],[2,19],[3,22],[2,24],[6,25],[19,28],[3,14],[2,14],[0,24],[-6,8],[-10,13],[-6,3],[-14,4],[-9,1],[-18,0],[-26,-2],[-29,4],[-28,8],[-5,2],[-22,15],[-30,47],[-7,18],[-9,18],[-17,28],[-8,16],[-11,27],[-6,19],[-3,17],[8,22],[51,38],[7,14],[13,20],[18,31],[2,67],[15,33],[13,19],[40,34],[15,19],[23,22],[32,15],[18,-23],[13,-21],[12,-35],[17,-31],[27,-25],[95,-88],[22,1],[46,81],[12,27],[27,28],[23,9],[35,6],[28,-7],[7,-2],[53,-33],[26,-18],[25,5],[19,5],[7,2],[8,25],[6,14],[9,30],[5,21],[15,41],[33,74],[29,55],[20,16],[23,15],[6,3],[34,-5],[40,-5],[61,-5],[15,4],[14,4],[59,57],[68,66],[16,13],[55,39],[55,40],[19,32],[2,31],[-19,33],[-20,13],[-35,12],[-16,7],[-41,16],[-41,17],[-23,9],[-38,3],[-30,10],[-30,29],[-28,34],[-2,30],[13,25],[33,3],[48,11],[15,22],[6,25],[-12,21],[-18,18],[-72,23],[-39,24],[-16,15],[-15,16],[-20,28],[-19,28],[-15,23],[-10,26],[-7,20],[-12,39],[18,24],[21,16],[35,7],[104,-11],[11,1],[12,5],[11,8],[20,45],[19,57],[3,15],[0,25],[-9,27],[-1,4],[-2,7],[-8,24],[-21,17],[-39,-4],[-22,4],[-15,7],[-20,15],[-15,14],[-19,20],[-16,20],[1,20],[8,16],[14,27],[7,31],[-11,30],[-24,1],[-28,0],[-21,0],[-20,0],[-26,15],[-25,17],[-19,13],[-29,20],[-28,11],[-15,6],[-16,5],[-20,4],[-20,4],[-7,1],[-22,2],[-32,2],[-58,0],[-14,0],[-28,-1],[-19,30],[-3,47],[1,30],[20,68],[26,31],[24,32],[-4,34],[-11,23],[-22,6],[-14,-33],[-16,-30],[-25,-24],[-20,-12],[-28,10],[-22,32],[-6,24],[-7,27],[-10,9],[-16,13],[-12,7],[-6,3],[-16,8],[-19,13],[-22,15],[-11,29],[2,34],[19,28],[20,11],[9,2],[17,1],[17,-2],[13,-19],[6,10],[41,28],[34,10],[33,15],[25,-1],[21,6],[25,14],[6,25],[-8,49],[-3,27],[12,40],[55,130],[14,15],[14,10],[25,13],[44,17],[18,14],[8,26],[8,66],[14,123],[2,23],[4,20],[1,12],[-1,28],[-4,12],[-42,76],[-35,61],[-12,20],[-15,20],[-14,26],[-8,23],[-5,36],[-8,50],[-7,51],[-6,41],[-14,37],[-7,20],[-24,61],[-1,9],[-2,63],[-1,62],[-1,53],[18,11],[27,8],[89,-14],[30,7],[30,21],[12,8],[11,9],[12,16],[4,8],[1,18],[-2,17],[-4,9],[-27,65],[-20,41],[-23,27],[-8,15],[-5,7],[-11,10],[-6,6],[-9,20],[-10,46],[-1,7],[9,16],[98,24],[29,6],[27,20],[23,17],[5,9],[8,7],[11,29],[8,51],[4,18],[-2,18],[2,18],[-5,16],[-3,9],[-4,21],[-4,14],[-6,16],[-13,29],[-14,17],[-6,5],[-18,5],[-21,-8],[-31,-22],[-7,-5],[-19,-15],[-28,-7],[-7,-2],[-16,-3],[-9,1],[-31,6],[-23,13],[-16,15],[-20,26],[-27,22],[-8,3],[-31,-4],[-13,-17],[-24,-3]],[[44411,51710],[-21,-46],[-33,-60],[-47,-57],[-82,-100],[-62,-50],[-46,-38],[-33,-26],[-51,-44],[-44,-44],[-45,-66],[-11,-20],[-8,-20],[-21,-51]],[[43907,51088],[-13,-13],[-12,-13],[-12,-13],[-39,-41],[-33,-32],[-44,-25],[-29,-18],[-45,-20],[-46,-20],[-17,-12],[-43,-31],[-50,-50],[-46,-56],[-31,-51],[-12,-60],[-20,-118],[-3,-49],[-19,-60],[-25,-52],[-42,-51],[-32,-21],[-37,-12],[-83,-21],[-117,-33],[-38,-7],[-27,-18],[-2,-2],[-38,-30],[-27,-29],[-16,-15],[-28,-26],[0,-1],[-26,-53],[-10,-33],[-7,-45],[3,-63],[4,-38],[12,-49],[7,-40],[11,-73],[11,-49],[6,-25],[5,-40],[4,-68],[3,-71],[1,-30],[-3,-48],[-5,-104],[-5,-65],[1,-27],[4,-30],[13,-51],[3,-33],[25,-194],[8,-45],[3,-28],[-23,-206],[-7,-47],[-2,-29],[3,-259],[1,-37],[9,-58],[-4,-51],[-5,-94],[-20,-230],[6,-94],[14,-104],[-6,-38],[-1,-39],[-10,-65],[-4,-41],[-15,-60],[-15,-37],[-46,-25],[-61,-21],[-148,-2],[-65,-11],[-25,-22],[-6,-26],[-5,-32],[-3,-41],[13,-45],[47,-61],[52,-64],[37,-32]],[[42660,46915],[-69,-1],[-58,-1],[-4,0],[-163,0],[-88,0],[-58,-1],[-207,5],[-127,-4],[-168,6],[-20,-5],[-26,0],[-158,1],[-284,3],[-231,3],[-56,1],[-400,5],[-431,6],[-20,0],[-12,0],[-122,2],[-148,2],[-2,0],[-326,4],[-176,3],[-185,-1],[-72,1],[-335,3],[-68,1],[-74,1],[-23,0],[-17,0],[-101,1],[-88,1],[-121,1],[-176,1],[-265,3],[-268,2],[-101,1],[-160,2],[-64,0],[-2,0],[-115,1],[-35,0],[-215,-2],[-92,-3],[-2,0],[-45,0],[-41,-1],[-122,-3],[-102,-1],[-182,-4],[-188,-3],[-22,-1],[-192,-3],[-22,0],[-134,-2],[-28,-1],[-282,-5],[-44,-1],[-97,-1],[-100,-2],[-3,0],[-26,-1],[-1,0],[-46,-1]],[[35050,46927],[-184,-4],[-116,-2],[-11,0],[-36,-1],[-131,-2],[-2,176],[-2,130],[0,148],[0,10],[-2,196],[0,60],[-2,124],[0,10],[-2,221],[-15,21],[-213,283],[-285,374],[-136,178],[-118,153],[-47,61],[0,68],[0,347],[0,10],[0,54],[0,50],[0,3],[0,116],[0,63]],[[52454,42121],[-121,48],[-59,12],[-33,7],[-42,9],[-99,22],[-77,27],[-50,21],[-38,17]],[[51935,42284],[-81,35],[-32,54],[-32,64],[-43,130],[-10,60],[-18,98],[-6,25],[-28,103],[-7,53],[-11,89],[-33,126],[-13,31],[-4,44],[-2,32],[-5,63],[-6,83],[-27,98],[-14,111],[-4,35],[-11,55],[-33,120],[-6,33],[-14,39],[-26,72],[-13,35],[-10,27],[-10,28],[-12,33],[-85,195],[-131,197],[-21,40],[-16,29],[-49,81],[-34,58],[-106,72],[-35,1],[-35,1],[-118,-7],[-88,-18],[-25,-4],[-31,-12],[-204,-97],[-105,-75],[-64,-40],[-107,-75],[-110,-54],[-49,-22],[-73,-33],[-96,-41],[-51,-21],[-22,-8],[-19,-8],[-104,-41],[-45,-7],[-33,-5],[-5,-1],[-51,-8],[-30,0],[-328,207],[-69,22],[-70,10],[-81,4],[-116,-5],[-36,-2],[-31,-5],[-129,-36],[-22,-11],[-93,-62],[-1,0],[-62,-12],[-66,-17],[-96,-26],[-24,-9],[-46,-18],[-117,-46],[-52,-19],[-79,-30],[-88,-24],[-51,-13],[-75,-9],[-25,-3],[-28,-4],[-60,2],[-91,18],[-35,11],[-40,13],[-23,8],[-49,23],[-18,9],[-45,23],[-131,95],[-65,55],[-117,98],[-39,41],[-24,15],[-37,17],[-20,19],[-18,25],[-24,103],[-7,78],[8,71],[26,75],[29,60],[44,63],[25,28],[22,20],[18,16],[53,38],[86,37],[67,23],[24,5],[60,13],[50,8],[34,5],[29,3],[44,4],[70,16],[57,18],[29,12],[27,13],[22,11],[40,24],[19,16],[19,16],[25,26],[17,14],[123,161],[20,26],[17,56],[42,137],[9,75],[27,97],[48,159],[46,151],[61,254],[47,108],[6,30],[9,61],[8,47],[35,117],[41,128],[17,51],[30,172],[13,72],[8,158],[3,48],[-8,64],[-2,68],[-16,52],[-47,175],[-48,136],[-85,146],[-15,26],[-59,95],[-21,31],[-24,37],[-47,62],[-87,81],[-66,66],[-35,35],[-91,58],[-95,38],[-112,22],[-55,2],[-76,3],[-30,1],[-168,-13],[-145,-7],[-104,-7],[-114,-13],[-83,-1],[-101,3],[-159,22],[-1,-2],[-14,-89],[-1,-26],[-1,-7],[0,-6],[-2,-34],[0,-5],[-1,-2],[-5,-9],[-6,-23],[-1,-33],[3,-13],[4,-24],[1,-1],[6,-23],[6,-17],[30,-54],[18,-22],[13,-11],[20,-13],[4,-1],[10,-1],[68,14],[16,6],[24,20],[19,12],[19,9],[64,21],[28,7],[34,1],[35,-2],[16,-5],[22,-12],[23,-15],[38,-22],[95,-46],[49,-19],[37,-21],[60,-50],[15,-15],[10,-12],[2,-6],[1,-12],[-8,-26],[-2,-9],[0,-20],[0,-10],[2,-16],[2,-6],[13,-25],[80,-78],[34,-43],[3,-7],[1,-12],[-6,-15],[-9,-12],[-1,-9],[13,-55],[10,-25],[3,-6],[1,-4],[6,-17],[21,-26],[53,-18],[61,-72],[16,-57],[9,-99],[5,-64],[3,-37],[3,-35],[15,-162],[15,-171],[-9,-74],[-19,-74],[-21,-65],[-33,-45],[-28,-23],[-26,-16],[-24,-5],[-28,1],[-23,11],[-25,61],[-21,36],[-26,35],[-27,28],[-34,27],[-44,26],[-36,19],[-56,11],[-61,7],[-63,7],[-88,-2],[-47,-3],[-23,-2],[-61,-7],[-69,-18],[-119,-39],[-63,-23],[-60,-21],[-28,-10],[-47,-16],[-24,-9],[-24,-8],[-25,-8],[-33,-6],[-85,5],[-125,27],[-20,9],[-99,45],[-89,28],[-108,76],[-43,41],[-33,33],[-58,77],[-34,71],[-116,221],[-4,290],[67,217],[62,201],[49,210],[13,53],[14,49],[40,110],[25,84],[24,58],[20,37],[6,11],[16,31],[16,31],[19,36],[12,22],[17,31],[35,65],[-32,55],[-44,92],[-7,30],[-24,57],[-36,63],[-23,62],[-15,39],[-18,50],[-36,104],[-44,154],[-13,43],[-26,116],[-7,54],[-12,93]],[[46082,50614],[248,0],[205,0],[900,-1],[19,0],[91,0],[1324,-2],[76,0],[1741,-1],[914,-1],[592,-1],[2686,-2],[18,0]],[[54896,50606],[-16,-14],[-5,-6],[-2,-3],[-3,-7],[-44,-147],[-2,-10],[-3,-33],[-4,-26],[-6,-89],[2,-18],[7,-24],[5,-22],[2,-10],[0,-6],[1,-22],[-3,-19],[0,-2],[0,-3],[-4,-30],[-1,-1],[-5,-17],[-32,-93],[-3,-8],[-1,-1],[-3,-5],[0,-1],[-68,-41],[-6,0],[-5,-1],[-8,2],[-41,8],[-4,0],[-2,-1],[-25,-32],[-19,-24],[-11,-31],[-3,-7],[-37,-113],[-11,-34],[-4,-18],[0,-1],[-6,-49],[0,-18],[0,-36],[12,-76],[1,-8],[-2,-137],[1,-15],[0,-1],[0,-2],[3,-54],[3,-3],[14,-18],[6,-10],[48,-82],[2,-3],[7,-16],[9,-11],[15,-12],[16,-10],[12,-4],[5,-3],[10,-7],[3,-7],[2,-7],[0,-6],[0,-6],[-3,-10],[-15,-26],[-3,-6],[-26,-52],[-7,-8],[-1,-1],[-2,-2],[-3,-3],[-19,-5],[-29,-1],[-8,-2],[-11,-6],[-10,-11],[0,-1],[-9,-16],[-2,-6],[-6,-12],[-20,-38],[-5,-10],[-12,-31],[-7,-21],[-5,-21],[1,-29],[-1,-7],[0,-1],[-1,-7],[-6,-43],[-1,-1],[-7,-13],[-8,-12],[-22,-35],[-8,-6],[-23,-18],[-22,-11],[-15,-3],[-8,3],[-9,7],[-8,8],[-9,6],[-9,-1],[-15,-1],[-7,-3],[-20,-12],[-6,-13],[-5,-16],[-7,-43],[2,-18],[3,-11],[5,-12],[1,-5],[17,-107],[-2,-6],[-25,-67],[-5,-12],[3,-6],[12,-32],[33,-89],[0,-170],[-4,-13],[-6,-14],[-8,-6],[-1,-2],[-19,-10],[-20,1],[-20,2],[-19,2],[-11,5],[-33,7],[-37,10],[-7,1],[-31,-11],[-10,-12],[-3,-10],[-6,-32],[0,-33],[2,-18],[3,-14],[1,-1],[3,-16],[0,-12],[-1,-6],[-7,-17],[0,-5],[-15,-24],[-16,-20],[-3,-3],[-16,-21],[-5,-3],[10,-121],[2,-21],[-7,-20],[-12,-32],[-9,-15],[-16,-17],[-13,-8],[-8,-7],[-7,-14],[-13,-35],[0,-11],[0,-5],[2,-4],[8,-8],[16,-6],[1,0],[13,-3],[20,-4],[24,-6],[7,-2],[13,-15],[5,-11],[4,-19],[1,-25],[-10,-40],[-10,-29],[-53,-141],[-3,-5],[-11,-9],[-99,-45],[74,-152],[2,-7],[5,-10],[-1,-3],[2,-3],[0,-8],[-25,-134],[-5,-29],[-5,-25],[-2,-10],[-3,-12],[-3,-6],[-14,-25],[-22,-42],[-12,-21],[-10,-18],[-4,-9],[-3,-36],[-3,-19],[-2,-9],[-10,-20],[-31,-53],[-8,-18],[-16,-37],[-4,-19],[-5,-6],[-2,-10],[2,-15],[11,-41],[4,-14],[57,-108],[54,-63],[4,-8],[1,-8],[-4,-51],[-2,-8],[-4,-7],[-5,-2],[-9,-1],[-2,2],[0,4],[6,9],[-4,36],[-1,2],[-3,4],[-9,3],[-10,1],[-2,0],[-15,-7],[-4,-5],[-5,-6],[-22,-58],[0,-2],[-5,-13],[-10,-16],[-6,-9],[-23,-20],[-26,-19],[-53,-23],[-30,-6],[-15,-7],[-21,-12],[-8,-9],[-6,-8],[-4,-11],[-6,-18],[-1,-2],[0,-1],[0,-2],[-3,-17],[0,-21],[1,-22],[3,-19],[1,-7],[7,-10],[13,-15],[12,-12],[42,-30],[38,-24],[6,-6],[9,-11],[4,-10],[3,-11],[0,-20],[-2,-15],[-8,-24],[-16,-37],[-25,-29],[-17,-14],[-16,-12],[-20,-11],[-19,-5],[-83,-15],[-4,-2],[-9,-4],[-8,-7],[-13,-18],[-25,-38],[-7,-14],[-17,-38],[-12,-29],[-3,-15],[-3,-34],[-4,-39],[-6,-14],[-22,-33],[-9,-11],[-17,-13],[-28,-18],[-28,-14],[-64,-18],[-7,-5],[-13,-16],[-7,-13],[-13,-29],[-10,-28],[0,-15],[12,-75],[3,-9],[7,-33],[3,-28],[-2,-15],[-2,-13],[-7,-13],[-6,-11],[-36,-43],[-7,-7],[-15,-7],[-12,-1],[-1,0],[-8,2],[-3,3],[1,11],[2,3],[2,6],[0,13],[-6,9],[-6,5],[-16,8],[-18,1],[-56,-13],[-19,-2],[-21,-6],[-18,-9],[-2,-1],[-24,-19],[-13,-13],[-34,-45],[-4,-5],[-3,-6],[-7,-24],[0,-3],[-6,-32],[-1,-31],[0,-19],[-43,-26],[-20,-25],[-1,-1],[-8,-5],[-5,-10],[-2,-5],[-4,-8],[-9,-20],[-3,-6],[-13,-49],[1,-17],[5,-62],[16,-85],[10,-48],[-35,-42],[-21,-26],[-3,-4],[-82,-70],[-45,-49],[-9,-11],[-8,-10],[0,-3],[0,-22],[2,-22],[59,-124],[12,-23],[7,-32],[-10,-34],[-27,-11],[-30,5],[-30,5],[-33,-5],[-22,-9],[-27,-17],[-16,-85],[-3,-30],[-14,-39],[-41,-19],[-22,5],[-25,12],[-19,8],[-22,0],[-24,-16],[-14,-30],[0,-40],[8,-24],[5,-25],[5,-28],[-8,-52],[-12,-25],[-23,-5],[-19,5],[-83,32],[-24,3],[-18,-13],[3,-36],[9,-36],[12,-26],[31,-25],[28,-14],[25,-37],[4,-27],[6,-33],[25,-91],[2,-30],[2,-37],[18,-44],[21,-21],[27,-10],[18,-10],[14,-34],[14,-34],[15,-29],[9,-29],[10,-38],[2,-52],[-4,-38],[-3,-27],[-4,-73],[7,-191],[1,-28],[1,-15],[0,-13],[29,-87]],[[45665,50491],[-30,33],[-15,17],[-19,37],[-17,51],[-11,48],[-15,36],[-18,35],[-23,27],[-44,51],[-2,2],[-50,60],[-76,57],[-51,24],[-62,42],[-37,20],[-22,13],[-62,28],[-72,29],[-34,8],[-17,4],[-52,5],[-53,-11],[-53,-16],[-21,-7],[-8,-8],[-36,-38],[-11,-12],[-14,-29],[-13,-28],[-8,-22],[-13,-37],[-14,-49],[-30,-38],[-63,-29],[-68,-3],[-5,0],[-28,2],[-43,15],[-49,26],[-27,25],[-13,10],[-53,43],[-35,26],[-16,12],[-38,28],[-4,3],[-34,19],[-63,30],[-81,36],[-20,9],[-35,15],[-26,6],[-9,2],[-45,-10]],[[51935,42284],[-51,-106],[14,-20],[41,-8],[43,-8],[362,-69],[-25,-54],[-13,-28],[-112,-232],[-2,-5],[-15,-32],[-19,-42],[-14,-27],[-136,-188],[-168,-233],[-56,-64],[-19,-21],[-48,-52],[-139,-150],[-87,-146],[-78,-87],[-1,-2],[-1,-1],[-56,-64],[-35,-40],[-40,-60],[-2,-78],[1,-53],[0,-51],[1,-5],[0,-29],[1,-60],[0,-26],[0,-152],[-33,0],[-8,0],[-26,0],[-126,0],[-223,-1],[-48,1],[-101,-2],[-61,1],[-2,0],[-46,-7],[-56,-117],[-14,-36],[-18,-40],[-47,-108],[-24,-99],[-17,-94],[-20,-117],[0,-46],[5,-37],[-1,0],[-61,-1],[-29,0],[0,-110],[0,-1],[0,-26],[1,-47],[1,-23],[1,-36],[-1,-77],[0,-45],[2,-172],[-5,-101],[4,-64],[-23,0],[-157,-3],[-140,-2],[-46,-1],[-60,-1],[-79,-1],[-6,0],[-78,2],[-52,0],[-137,-2],[-57,0],[-23,0],[-127,-8],[-109,3],[-108,-3],[-81,-1],[1,-67],[-1,-55],[1,-40],[1,-98],[4,-71],[-69,-3]],[[48982,38335],[-185,-9],[-70,-3],[-21,-1],[1,17],[-93,-6],[-222,0],[-7,0],[-33,0],[-21,0],[-29,0],[-25,0],[-26,0],[-17,0],[-35,-1],[-2,-11],[-7,-2],[-45,-15],[-56,-18],[-40,-13],[-83,-27],[-100,-32],[-155,-51],[-52,-17],[-38,-12],[-19,-6],[-19,-6],[9,-33],[25,-104],[-102,-2],[-159,-3],[-261,-1],[5,352],[-127,0],[-206,0],[-150,0],[-24,0],[-109,0],[-97,-1],[-86,0],[-403,6],[-63,1],[-2,0],[-51,1],[-96,0],[-157,1],[-173,1],[-36,-1],[-40,0],[-431,3]],[[44849,38342],[-315,2],[-39,0],[-401,3],[-59,0],[-134,1],[-64,1],[-46,0]],[[43791,38349],[-2,60],[11,29],[14,67],[23,52],[29,29],[22,17],[20,12],[53,12],[81,-12],[137,-9],[42,26],[23,19],[21,50],[-8,76],[-2,62],[-8,31],[-8,31],[-29,57],[-40,61],[-34,35],[-28,32],[-31,55],[-18,36],[-24,62],[-25,65],[-18,52],[-2,5],[-28,71],[-18,50],[-17,42],[-2,5],[-8,16],[-9,26],[-28,98],[-38,76],[-35,94],[-31,95],[-6,41],[2,63],[11,44],[20,48],[12,32],[10,57],[0,77],[1,77],[5,87],[-2,49],[13,56],[15,101],[13,100],[19,56],[4,60],[-9,58],[-23,61],[-25,47],[-6,51],[-11,55],[2,51],[12,70],[23,54],[11,22],[17,24],[24,30],[47,32],[17,14],[33,14],[33,57],[36,81],[8,42],[-57,177],[-18,144],[-21,168],[-8,152],[20,60],[16,29],[54,29],[67,22],[66,54],[38,31],[22,55],[-13,55],[-57,135],[-17,31],[0,122],[20,101],[2,8],[13,54],[5,22],[2,9],[7,104],[-1,129],[-8,51],[-15,56],[-21,61],[-12,27],[-16,43],[-16,29],[-21,38],[-28,39],[-47,66],[-26,53],[-22,42],[-14,29],[-13,39],[-9,40],[-10,47],[-9,23],[-27,60],[-26,53],[-9,37],[-44,38],[-71,89],[-2,36],[2,76],[13,50],[7,27],[19,36],[8,76],[5,80],[-20,87],[-37,65],[-38,73],[-11,35],[-24,60],[-26,58],[-12,57],[-16,78],[-14,59],[-23,46],[-19,51],[-19,36],[-45,52],[-54,70],[-68,78],[-44,38],[-45,30],[-45,14],[-44,14],[-19,17],[-57,44],[-41,28],[-29,33],[-21,18],[-38,31],[-35,31],[-33,24],[-44,13],[-22,28],[-17,26],[-21,20],[-16,19],[-12,50],[-8,33],[-3,40],[3,43],[15,59],[26,37],[19,22],[26,25],[43,19],[60,110],[-19,129],[-32,79],[-67,79],[-91,66],[-75,83],[-38,31]],[[80440,42474],[-357,-13],[-24,-5],[-16,2],[-9,-1],[-12,-1],[-30,-2],[-70,6],[-29,0],[-84,-15],[-142,0],[-15,0],[-265,1],[-13,0],[-112,-6],[-49,3],[-48,1],[-62,0],[-25,0],[-73,0],[-43,0],[-53,0],[-28,0],[-134,-2],[-64,-1],[-99,4],[-49,0],[-42,-1],[-26,-1],[-31,2],[-80,0],[-95,1],[-64,-1],[-26,2],[-32,-1],[-36,0],[-23,0],[-30,1],[-95,1],[-104,0],[-3,0],[-57,0],[-25,1],[-22,0],[-20,0],[-24,2],[-14,0],[-7,-1],[-10,0],[-54,-2],[-12,0],[-9,0],[-57,1],[-8,0],[-3,-1],[-15,-1],[-38,7],[-57,21],[-14,5],[-11,3],[-5,-1],[-3,0],[-21,4],[-103,25],[-28,7],[-58,13],[-147,31],[-28,6],[-376,80],[-47,13],[-15,4],[-22,4],[-27,6],[-50,12],[-72,17],[-21,5],[-112,25],[-22,5],[-28,5],[-11,3],[-29,7],[-15,4],[-27,7],[-24,5],[-36,9],[-89,21],[-21,4],[-28,7],[-19,4],[-21,6],[-296,64],[-302,70],[-73,19],[-47,12],[-22,10],[-47,10],[-16,4],[-60,14],[-102,23],[-16,3],[-49,11],[-83,18],[-30,8],[-24,5],[-25,6],[-19,5],[-99,22],[-50,12],[-40,9],[-105,24],[-59,14],[-46,6],[-8,6],[-25,6],[-58,15],[-90,23],[-14,3],[-77,17],[-57,13],[-36,8],[-11,2],[-21,5],[-98,22],[-39,8],[-41,9],[-36,9],[-119,26],[-8,2],[-166,43],[-48,12],[-20,2],[-50,7],[-29,7],[-51,12],[-20,10],[-53,4],[-48,10],[-44,10],[-53,11],[-21,5],[-50,11],[-121,26],[-32,7],[-33,8],[-82,18],[-22,5],[-65,15],[-9,1]],[[72521,43588],[-1,9],[-11,29],[-8,14],[-2,43],[-3,8],[19,31],[-7,13],[10,9],[-10,19],[4,13],[9,-2],[10,13],[9,11],[7,1],[5,22],[-16,-1],[-15,37],[3,10],[14,12],[0,8],[-9,2],[-5,11],[0,15],[3,25],[-14,14],[8,5],[6,5],[3,17],[-4,11],[5,26],[4,6],[0,9],[-22,41],[-5,18],[5,7],[7,5],[3,28],[32,8],[3,22],[-5,10],[-14,24],[-16,18],[-10,8],[-18,11],[-7,5],[-26,8],[-8,2],[-11,-3],[-4,-11],[-12,3],[-1,15],[-7,17],[12,7],[3,11],[-6,5],[0,13],[0,13],[-14,3],[1,13],[20,2],[1,15],[-7,-3],[-9,9],[2,22],[-12,2],[0,14],[-7,9],[20,34],[-16,1],[3,12],[5,10],[-18,6],[-17,10],[32,20],[1,7],[-6,6],[-11,-7],[-7,0],[-37,29],[-4,13],[7,21],[-21,2],[-29,-5],[-2,10],[18,36],[-2,23],[-2,7],[4,27],[34,11],[-4,6],[-3,4],[-16,15],[1,10],[18,-7],[1,25],[12,10],[-1,9],[-9,17],[0,13],[5,16],[13,13],[-3,24],[-6,12],[3,14],[-12,8],[20,10],[13,23],[-6,12],[2,16],[-14,8],[-8,13],[-18,3],[1,18],[13,13],[-3,8],[-18,-7],[-20,-6],[-21,11],[-26,21],[-14,21],[-4,14],[-6,5],[-7,0],[-32,10],[-9,12],[-3,22],[-8,23],[3,20],[-6,6],[-10,0],[-24,-1],[-5,10],[11,13],[5,8],[-8,10],[-24,6],[-7,2],[-8,22],[-7,45],[13,5],[1,8],[-11,12],[-14,22],[-20,35],[5,8],[0,25],[-3,8],[-5,14],[-8,17],[-12,21],[17,40],[-6,26],[0,7],[0,38],[6,13],[5,9],[4,13],[-7,25],[-7,9],[-6,4],[-12,0],[-18,4],[-13,30],[-3,7],[-22,0],[-20,38],[-4,46],[-21,8],[-27,19],[-28,15],[1,17],[-7,24],[-10,6],[-23,12],[-7,3],[-4,39],[-16,-6],[-4,7],[-21,10],[-5,7],[0,32],[0,14],[1,22],[-4,18],[11,4],[4,8],[-4,7],[-10,13],[-22,15],[-1,15],[5,14],[10,24],[24,19],[23,19],[-16,20],[-4,13],[16,30],[25,22],[0,2],[-6,34],[-13,28],[8,42],[-1,11],[-8,14],[-6,8],[-18,23],[-14,23],[-6,19],[-3,10],[-3,10],[-19,26],[-14,21],[-5,11],[-13,40],[6,45],[2,18],[-2,10],[3,21],[1,7],[-3,14],[5,9],[-2,22],[0,26],[-6,14],[-7,13],[7,30],[-2,7],[-6,12],[0,10],[1,27],[-19,34],[-7,37],[-24,52],[-16,25],[-19,17],[-49,33],[-85,48],[-12,16],[-5,18],[-8,37],[-11,13],[-8,49],[-4,13],[-30,54],[-5,9],[-28,42],[0,53],[-1,30],[-1,12],[-3,19],[-3,10],[-9,23],[-5,6],[-13,13],[-29,23],[-10,35],[21,31],[3,6],[9,23],[14,41],[2,9],[-3,21],[-18,48],[-6,15],[0,20],[3,209],[-133,0],[-7,0],[-109,-1],[0,65],[0,3],[-1,155],[0,21],[1,25],[-78,1],[1,50],[0,38],[-110,-1],[-135,-2],[-1,104],[0,62],[0,113],[-1,97],[0,120],[-1,176],[-1,220],[0,2],[-3,590],[0,52],[-1,70],[1,33],[0,145],[-1,225],[0,100],[0,41],[-2,29],[0,31],[0,29],[-1,39],[-2,45]],[[70765,50639],[30,0],[1652,6],[1244,5],[141,1],[2312,9],[1272,6],[171,0],[2971,12],[686,-5],[54,-1],[853,-7],[9,-30],[1,-2],[89,0],[22,21],[39,38],[2,2],[12,4],[3,1],[32,13],[48,3],[30,-21],[0,-1],[7,-1],[30,19],[63,36],[33,-9],[51,-53],[0,-33],[-20,-19],[-59,-11],[-43,-1],[-13,-18],[8,-30],[4,-32],[23,-32],[36,-18],[34,-1],[22,0],[6,0],[10,-17],[0,-8],[-1,-16],[-27,-64],[-13,-32],[-11,-36],[0,-3],[1,-59],[0,-15],[7,-39],[2,-11],[-2,-10],[-4,-27],[-3,-18],[-8,-12],[-8,-12],[-22,-19],[-2,-1],[-6,0],[-58,2],[-22,-23],[-2,-34],[2,-3],[22,-26],[3,-4],[3,-2],[93,-45],[35,-24],[7,-9],[5,-6],[17,-21],[3,-8],[7,-14],[-2,-31],[-7,-15],[-15,-14],[-4,-5],[-2,-1],[-26,-7],[-21,1],[-10,1],[-41,18],[-22,2],[-12,-5],[-6,-7],[-9,-10],[-34,-54],[-37,-54],[-41,-22],[-6,-1],[-21,-20],[-3,-30],[-2,-13],[8,-56],[-4,-3],[-67,-41],[-32,-26],[-37,-28],[-22,-17],[-53,-120],[-40,-68],[-6,-49],[12,-40],[15,-20],[5,-6],[3,-4],[36,-25],[43,-30],[34,-46],[4,-18],[-3,-50],[-7,-18],[-10,-11],[-47,-49],[-13,-24],[0,-49],[13,-26],[21,-23],[11,-1],[73,-8],[25,-11],[18,-23],[0,-28],[0,-9],[0,-12],[-17,-52],[-38,-62],[-7,-7],[-3,-3],[-35,-36],[-11,-5],[-29,-7],[-14,1],[-12,0],[-16,2],[-25,17],[-17,20],[-9,9],[-11,7],[-17,2],[-2,0],[-17,1],[-32,-7],[-41,-34],[-25,-38],[0,-34],[-1,-19],[0,-9],[4,-12],[6,-16],[29,-30],[44,-16],[18,-23],[13,-31],[5,-21],[2,-5],[2,-5],[23,-40],[0,-13],[1,-19],[0,-2],[-4,-15],[-1,-1],[-16,-23],[-1,-2],[-3,-2],[-39,-35],[-20,-5],[-32,2],[-21,2],[-14,5],[-20,6],[-75,52],[-26,4],[-2,0],[-9,2],[-32,-26],[-8,-30],[1,-2],[23,-74],[8,-50],[-2,-36],[-7,-17],[-19,-46],[-6,-46],[15,-35],[1,-1],[25,-32],[19,-14],[13,-16],[0,-3],[-2,-31],[-10,-21],[-8,-8],[-43,0],[-42,49],[-12,1],[-1,0],[-4,0],[-8,-2],[-8,-9],[-3,-4],[-17,-19],[-6,-15],[-19,-79],[4,-28],[2,-16],[23,-32],[30,-22],[41,-30],[98,-99],[2,-3],[11,-14],[5,-6],[3,-7],[3,-8],[1,-4],[-2,-16],[-5,-25],[-1,-5],[-6,-6],[-14,-16],[-7,-7],[-7,-2],[-7,-3],[-12,-11],[-15,-15],[-10,-21],[-5,-33],[16,-63],[-2,-28],[0,-12],[-3,-3],[-17,-20],[-5,-6],[-14,-5],[-20,1],[-30,18],[-23,24],[-11,12],[-24,17],[-9,4],[-1,0],[-10,4],[-8,1],[-17,1],[-5,-1],[-15,-4],[-4,-5],[-20,-23],[-3,-4],[-1,-20],[-1,-15],[11,-36],[38,-60],[28,-65],[-5,-37],[-20,-5],[-50,13],[-19,26],[-9,37],[-16,23],[-3,3],[-12,1],[-11,7],[-42,41],[-3,3],[-17,1],[-20,-17],[0,-17],[0,-21],[0,-5],[4,-5],[13,-16],[1,-2],[3,-2],[35,-26],[16,-19],[10,-22],[2,-4],[3,-6],[6,-35],[-1,-24],[-7,-18],[-19,-29],[-3,-4],[-16,-38],[-1,-3],[-5,-50],[-11,-91],[-3,-40],[7,-10],[0,-1],[6,-9],[11,-7],[31,-2],[14,5],[10,11],[45,50],[28,-2],[10,-13],[0,-4],[-6,-51],[-17,-48],[-6,-9],[-10,-16],[-3,-5],[-40,-43],[-11,-12],[-9,-17],[-1,-22],[9,-22],[21,-26],[28,-6],[14,4],[35,8],[16,-19],[-1,-6],[-4,-31],[-10,-13],[-33,-36],[-39,-12],[-13,-4],[-51,47],[-49,51],[-20,-2],[-34,-71],[-25,5],[-6,33],[9,52],[-35,10],[-22,-15],[-29,-61],[10,-78],[35,-48],[13,-30],[-15,-12],[-13,1],[-17,-8],[-78,-75],[-9,-18],[-7,-15],[-2,-33],[3,-9],[4,-17],[-5,-36],[-3,-4],[-13,-14],[-2,-3],[-5,-3],[-59,-35],[-20,-5],[-30,5],[-6,1],[-2,2],[-7,7],[-10,11],[-11,26],[-13,22],[-14,19],[-16,-5],[-3,-1],[0,-2],[1,-7],[2,-16],[86,-116],[30,-14],[17,-15],[10,-35],[-17,-63],[8,-26],[44,-3],[15,16],[21,52],[24,-6],[4,-36],[-13,-40],[-19,-27],[-83,-40],[-35,-17],[-39,11],[-8,27],[13,68],[-4,33],[-73,65],[-49,21],[-6,-12],[0,-27],[-6,-16],[-18,-49],[-15,-43],[-8,-23],[5,0],[6,-16],[31,-80],[3,-8],[1,-1],[4,-24],[-1,-18],[-2,-22],[-28,-27],[-50,-45],[-11,-11],[-20,1],[-11,7],[-5,10],[-9,14],[-3,5],[-3,20],[-3,24],[-8,10],[-15,1],[-2,0],[-6,0],[-13,-14],[-11,-12],[-3,-3],[-10,-33],[-1,-21],[-1,-6],[0,-13],[3,-9],[4,-10],[5,-12],[12,-19],[12,-19],[8,-11],[12,-16],[4,-19],[-3,-55],[-18,-70],[-4,-9],[-1,-2],[-10,-9],[-30,-14],[-22,-2],[-11,29],[-6,52],[-18,16],[-21,-9],[-10,-26],[2,-28],[41,-43],[6,-25],[0,-3],[0,-18],[0,-7],[23,-46],[6,-12],[18,-36],[1,-1],[18,-23],[61,-38],[10,-32],[-24,-40],[-19,-7],[-76,10],[-27,-17],[-5,-27],[6,-26],[53,-46],[21,-3],[49,33],[14,32],[47,35],[21,-20],[-1,-20],[-23,-60],[-12,-26],[-24,-54],[-1,-14],[-4,-25],[0,-8],[15,-74],[-1,-12],[-1,-19],[-3,-9],[-3,-3],[-3,-3],[-15,-14],[-16,-10],[-31,-18],[6,-11],[18,-32],[12,-21],[-1,-12],[-39,5],[-62,9],[-11,0],[-12,-3],[-22,-4],[-32,-29],[-7,-11],[1,-37],[32,-27],[5,-1],[4,0],[36,-3],[32,13],[23,8],[11,1],[6,0],[11,0],[6,-8],[3,-3],[1,-2],[-1,-15],[0,-10],[0,-3],[-4,-9],[-18,-17],[-23,-7],[-66,-1],[-15,0],[-23,-7],[-8,-9],[-5,-5],[-8,-10],[-1,-9],[0,-11],[-1,-7],[11,-10],[6,-6],[4,-4],[37,-6],[37,10],[31,17],[50,26],[28,-5],[10,-13],[0,-5],[0,-7],[-1,-12],[-5,-6],[-4,-6],[-32,-34],[-28,-30],[-35,-25],[-4,-9],[-1,-17],[0,-3],[-1,-17],[14,-44],[15,-44],[-2,-24],[0,-3],[0,-4],[-18,-20],[-9,-3],[-36,3],[-61,20],[-11,6],[-18,26],[-5,19],[-9,35],[-12,22],[-19,14],[-28,-1],[-12,-11],[-5,-28],[13,-25],[25,-52],[13,-109],[-1,-4],[-3,-23],[-10,-21],[-15,-15],[-2,-1],[-10,-10],[-27,-13],[-19,-8],[-17,-15],[-16,-14],[-2,-7],[-1,-5],[0,-3],[0,-20],[0,-20],[15,-15],[15,-15],[20,-20],[3,0],[3,0],[7,-1],[21,-1],[20,10],[8,8],[22,21],[8,0],[6,-1],[9,0],[4,-6],[6,-8],[3,-3],[34,-86],[0,-17],[-1,-5],[0,-16],[-8,-16],[-35,-37],[-1,-1],[-5,-34],[18,-26],[22,-21],[18,-18],[0,-3],[-1,-10],[0,-6],[-4,-4],[-2,-2],[-11,-7],[-12,-6],[-12,0],[-22,2],[-22,2],[-41,18],[-8,2],[-9,2],[-12,-1],[-2,0],[-8,0],[-7,-8],[-4,-5],[-7,-8],[-14,-48],[0,-7],[0,-8],[1,-10],[4,-5],[4,-5],[5,-3],[11,-7],[11,-1],[46,-6],[4,0],[22,17],[31,25],[7,0],[3,-1],[4,0],[8,-10],[0,-5],[0,-3],[-1,-13],[-17,-42],[-7,-11],[-5,-7],[-6,-9],[-28,-28],[-17,-18],[-13,-30],[-1,-24],[2,-4],[16,-22],[11,-4],[17,-1],[5,2],[26,11],[14,-1],[7,-8],[1,-2],[2,-25],[-5,-4],[-15,-15],[-4,-4],[-24,0],[-18,0],[-22,-6],[-1,0],[-3,-1],[-31,-38],[-64,-88],[-5,-8],[-1,-2],[-3,-5],[1,-22],[19,-23],[11,-2],[16,-4],[12,-3],[21,13],[7,5],[4,2],[9,21],[1,6],[5,46],[7,9],[3,3],[15,20],[19,1],[7,0],[2,0],[3,-4],[15,-19],[5,-13],[-2,-24],[-4,-14],[-4,-13],[-9,-28],[-13,-20],[-3,-4],[-47,-41]],[[35050,46927],[0,-44],[3,-35],[0,-2],[2,-24],[7,-100],[1,-9],[13,-201],[0,-252],[0,-80],[0,-32],[0,-241],[0,-94],[0,-18],[1,-79],[0,-7],[2,-140],[16,-14],[10,-27],[9,-24],[18,-19],[15,-29],[0,-27],[-4,-27],[14,-28],[16,-18],[26,-15],[22,-19],[19,-17],[21,-5],[25,-9],[21,-6],[15,-23],[19,-21],[27,-8],[27,-2],[23,-8],[23,-4],[6,-2],[17,-7],[27,-20],[31,-23],[12,-23],[28,-26],[14,-18],[11,-26],[15,-25],[17,-18],[12,-20],[22,-11],[22,-11],[19,-7],[8,-4],[18,-9],[6,-2],[20,-6],[30,-1],[25,-2],[19,-3],[2,0],[0,-1],[0,-81],[0,-6],[0,-50],[0,-38],[0,-86],[-1,-172],[-1,-24],[0,-119],[0,-69],[0,-33],[-2,-43],[0,-41],[1,-178],[0,-31],[0,-143],[0,-25],[1,-77],[-1,-87],[0,-31],[1,-91],[0,-88],[1,-140],[0,-160],[0,-128],[0,-116],[0,-11],[0,-22],[1,-58],[0,-99],[0,-54],[-12,20],[-6,24],[-20,11],[-10,-23],[-18,-18],[-18,-33],[-4,-32],[-12,-33],[-5,-35],[-7,-23],[-8,-27],[-17,-20],[-23,-6],[-22,7],[-26,4],[-20,3],[-28,3],[-24,-14],[-18,-18],[-17,-19],[-27,-28],[-14,-21],[-17,-25],[-21,-28],[-18,-21],[0,-1],[-23,-20],[-33,-30],[-25,-16],[-22,-1],[-22,-11],[-4,-29],[-3,-31],[-1,-33],[4,-41],[3,-29],[5,-31],[-8,-23],[-17,-25],[-15,-21],[-10,-27],[-6,-26],[-11,-28],[-18,-32],[1,-39],[17,-27],[-1,-34],[-25,-26],[6,-28],[7,-29],[-2,-10],[-3,-15],[-11,-38],[-2,-27],[11,-22],[10,-34],[2,-24],[-1,-32],[-17,-24],[-15,-16],[-5,-30],[-13,-18],[-13,-22],[-17,-13],[-23,1],[-16,-14],[-11,-29],[-10,-27],[3,-29],[0,-29],[-8,-23],[2,-25],[1,-83],[1,-102],[0,-70],[1,-97],[2,-143],[1,-102],[1,-191],[2,-134],[0,-40],[0,-79],[-5,-52],[-32,0],[-19,3],[-75,0],[-25,1],[-308,-2],[-66,0],[-113,0],[-83,1],[-1,0],[-18,-1],[-125,-1],[-108,-1],[-2,-196],[0,-30],[-7,-369],[0,-39],[1,-33],[0,-28],[-13,-23],[-54,1],[-26,0],[-50,0],[-21,0],[-44,-1],[-42,0],[-41,0],[-34,0],[-256,-2],[-191,5],[-193,3],[-2,0],[-190,-3],[-9,0],[-192,-1],[-97,0],[-235,-1],[-114,-1],[-51,0],[-4,0],[-82,3],[-27,0],[-21,0],[-25,0],[-24,-1],[-22,1],[-28,0],[-64,-4],[-153,0],[-37,-1],[-57,0],[-89,0],[-117,-1],[-121,0],[-20,-1],[-41,1],[-32,0],[-102,0],[-1,0],[-23,-13],[-21,-3],[-11,22],[-25,-7],[-30,-4],[-7,-20],[-4,-10],[-19,7],[-2,0],[-23,-9],[0,-1],[-15,-5],[-4,-1],[-15,22],[-10,21],[-11,-23],[-7,-24],[5,-26],[-21,-22],[-19,8],[-25,-9],[-16,-16],[-7,26],[-23,16],[-10,15],[-6,10],[-27,-4],[-4,-5],[-12,-19],[-17,16],[-18,-15],[-2,-2],[-11,-19],[0,-1],[-53,-13],[-7,-26],[-15,20],[-24,9],[-18,-12],[-9,10],[-11,12],[-17,-19],[-23,5],[-24,6],[-3,-24],[-8,-24],[-17,-12],[-6,-33],[-23,6],[-13,-21],[-3,-30],[-11,-27],[-16,20],[-19,-10],[-8,-24],[-30,0],[-1,1],[-15,25],[-20,-16],[13,-24],[-5,-24],[0,-1],[-1,0],[-15,-20],[-22,0],[-19,-5],[7,-23],[20,-27],[3,-27],[-8,-25],[-6,-28],[-1,0],[3,-26],[-12,0],[-14,-1],[2,-25],[1,-2],[8,-23],[-18,-13],[-12,-16],[-2,-1],[-21,-8],[-6,-34],[11,-22],[0,-3],[1,-24],[2,-24],[-5,-25],[-7,-29],[-1,-15],[-1,-11],[15,-27],[-17,-11],[17,-17],[-14,-19],[11,-22],[19,-28],[-2,-27],[0,-4],[-10,-26],[-28,-26],[3,-26],[2,-36],[-11,-21],[-6,1],[-15,3],[-25,-1],[-21,-2],[-5,-7],[-14,-16],[-18,-10],[-24,3],[-1,27],[-15,1],[-5,1],[-8,0],[-11,0],[-19,-3],[-18,-10],[-20,25],[-23,-9],[-6,-24],[7,-23],[1,-5],[-24,-9],[-21,-22],[-20,-4],[-3,-1],[-16,-4],[0,-5],[4,-22],[-16,14],[-3,3],[-19,-7],[2,-8],[5,-17],[-20,-18],[-21,4],[-20,-21],[-15,-41],[-23,-17],[-18,-19],[-15,-17],[-4,-24],[-1,-6],[-14,-23],[-26,-14],[-4,-26]],[[29679,37928],[-100,1],[-22,1],[-20,-2],[-31,-1],[-63,0],[-31,0],[-38,0],[-73,0],[-30,0],[-48,0],[-88,0],[-84,0],[-73,1],[-88,0],[-30,0],[-114,0],[-20,0],[-82,0],[-25,1],[-24,-1],[-22,0],[-14,0],[-9,0],[-68,1],[-63,0],[-26,0],[-74,0],[-29,0],[-66,0],[-37,0],[-30,0],[-30,0],[-110,0],[-24,0],[-1,0],[-39,0],[-36,1],[-32,0],[-54,1],[-26,1],[-30,0],[-21,1],[-30,0],[-22,1],[-20,0],[-45,1],[-21,1],[-24,0],[-26,1],[-21,0],[-20,1],[-23,0],[-23,1],[-31,1],[-29,0],[-27,1],[-49,1],[-42,1],[-35,0],[-25,0],[-42,-4],[-24,-3],[-28,-2],[-30,-3],[-20,-1],[-25,2],[-22,5],[-15,4],[-12,3]],[[27023,37944],[37,59],[2,8],[13,56],[0,1],[-1,16],[-5,8],[0,1],[-12,7],[-3,5],[0,3]],[[27054,38108],[1,4],[8,14],[77,48],[26,13],[16,37],[5,10],[13,37],[7,21],[9,25],[1,9],[7,81],[0,3],[84,125],[4,3],[12,2],[13,-5],[1,0],[9,1],[8,8],[0,1],[9,18],[0,9],[0,1],[-37,125],[-7,24],[-3,8],[-11,22],[-51,59],[-61,30],[-5,3],[-3,5],[-2,16],[6,15],[0,1],[1,1],[21,34],[45,87],[5,12],[11,-2],[13,2],[38,27],[2,4],[-10,19],[-1,7],[6,7],[36,22],[85,29],[39,12],[6,-1],[57,36],[9,6],[93,83],[7,77],[0,2],[-1,17],[-6,5],[-14,-3],[-7,-9],[-3,-5],[-2,-5],[-2,-2],[-1,0],[-5,0],[-5,3],[-3,9],[1,19],[9,30],[37,88],[8,5],[36,10],[13,-2],[20,-1],[7,-1],[34,8],[3,2],[18,153],[-1,7],[-6,13],[-14,16],[-1,0],[-9,6],[-8,9],[-11,65],[0,11],[4,12]],[[27744,39805],[0,1],[0,-1]],[[27744,39805],[6,3],[12,-1],[8,-3],[32,-34],[31,7],[8,4],[56,33],[21,33],[0,5],[-12,21],[-1,0],[-14,35],[18,69],[2,5],[20,18],[1,0],[31,15],[3,3],[-3,33],[-28,73],[-5,7],[-26,14],[-7,2],[-17,-6],[-7,1],[-9,5],[-39,38],[0,1],[-20,41],[-1,0],[-5,13],[3,27],[4,13],[-1,9],[-38,60],[-1,0],[-33,3],[-45,13],[-2,66],[-1,1],[0,2],[0,18],[-2,51],[1,0],[-2,147],[-2,122],[-1,102],[-3,172],[-1,124],[-1,19],[-3,208],[-1,66],[0,32],[0,205],[-1,143],[-2,689],[-1,208],[0,147],[0,88],[0,43],[1,246],[0,185],[1,207],[2,237],[0,4],[4,438],[0,30],[-9,156],[0,108],[-1,237],[0,223],[-1,263],[0,41],[-1,95],[1,65],[0,228],[0,2],[1,87],[1,466],[1,227],[0,84],[1,61],[0,189],[0,2],[-1,382],[0,219],[0,77],[1,54],[5,162],[4,183],[2,112]],[[72521,43588],[4,-16],[11,-14],[-5,-8],[-9,-15],[-2,-14],[-2,-31],[3,-15],[28,-42],[-17,-16],[-6,-39],[-6,-17],[5,-25],[11,3],[7,-5],[1,-9],[12,-6],[5,0],[7,-1],[7,2],[7,-2],[6,-3],[12,-4],[5,-7],[-5,-15],[-4,-6],[-8,0],[-8,-20],[7,-2],[6,-16],[-8,-9],[-7,-2],[5,-8],[4,-7],[8,-8],[22,-22],[12,-7],[1,-10],[-5,-13],[-10,-9],[-7,-33],[1,-6],[0,-8],[-3,-10],[-14,-1],[-7,-2],[-1,-9],[12,-28],[-11,-9],[-6,-11],[7,-7],[17,-27],[2,-12],[7,-13],[5,-6],[3,-10],[7,0],[0,-10],[5,-8],[-1,-3],[-29,-40],[7,-153],[-36,-58],[23,-35],[22,-58],[1,-7],[-8,-23],[-10,-17],[-3,4],[-4,0],[-3,-2],[-22,-30],[-2,-7],[-2,-6],[2,-11],[23,-77],[0,-4],[-6,-10],[10,-4],[13,-16],[20,-23],[11,-8],[1,-10],[10,-15],[10,-16],[-18,-15],[0,-11],[1,-14],[7,-21],[6,-4],[-9,-22],[1,-38],[-4,-14],[-8,-6],[-11,-2],[-9,-9],[6,-14],[-4,-4],[5,-4],[8,-5],[10,-4],[-13,-11],[6,-4],[9,-6],[8,0],[5,4],[7,2],[10,-4],[0,-9],[-8,-12],[-5,-5],[-5,-5],[8,-3],[11,3],[9,-1],[-3,-13],[-7,-7],[6,1],[9,-12],[5,-9],[21,-14],[6,-20],[8,7],[20,-13],[-9,-4],[-7,-10],[1,-7],[16,-6],[-9,-8],[12,-5],[8,-11],[-9,-12],[-4,-7],[-9,-8],[-11,-4],[-8,-2],[-5,-10],[8,-5],[8,-4],[5,-4],[0,-17],[-9,-7],[4,-6],[-3,-9],[-4,-12],[2,-8],[5,-3],[-4,-8],[-5,-6],[-7,-19],[6,-3],[-2,-10],[-8,-17],[5,-12],[-4,-10],[-5,-6],[-6,-7],[0,-9],[-7,-4],[2,-7],[-2,-15],[-3,-13],[9,-5],[9,-14],[2,-10],[-1,-10],[-7,-10],[-5,-13],[-6,-5],[-2,-10],[-7,-8],[2,-7],[-4,-7],[4,-10],[-6,-11],[-6,-10],[2,-6],[3,-6],[10,-6],[-6,-5],[-10,-6],[-8,-1],[-4,-7],[0,-14],[-4,-9],[-5,-3],[-8,-5],[-17,1],[-14,-4],[6,-5],[2,-9],[7,-12],[-11,-21],[9,-5],[4,-7],[1,-8],[3,-11],[8,-11],[-8,-10],[5,-4],[6,-18],[8,-14],[-7,-5],[4,-13],[-8,-28],[0,-13],[7,-6],[2,-9],[-20,1],[3,-11],[5,-1],[13,-2],[6,-7],[2,-8],[0,-3],[-1,-8],[-10,-15],[-8,-1],[1,-18],[2,-9],[-3,-12],[-6,0],[6,-10],[8,-2],[11,4],[10,-6],[13,-5],[4,-7],[-6,-7],[-10,1],[-5,-5],[7,-2],[6,-2],[4,-14],[-2,-8],[-8,-3],[-1,-6],[12,1],[3,-10],[2,-7],[-9,-4],[2,-10],[-3,-9],[5,-9],[1,-12],[-9,-2],[3,-9],[5,-11],[-3,-23],[-7,0],[-8,-12],[-8,1],[-3,-7],[-5,-4],[5,-5],[5,-7],[7,3],[6,-1],[-6,-13],[-8,-15],[6,0],[16,-5],[4,-35],[0,-15],[15,-9],[9,-24],[14,-14],[6,-15],[-2,-10],[-5,-7],[-1,-13],[6,5],[6,2],[8,1],[14,-9],[10,-19],[3,-6],[0,-10],[-4,-12],[-2,-13],[-3,-7],[3,-11],[-2,-36],[-6,0],[-7,-7],[-10,-10],[-12,-6],[-7,-4],[8,-21],[-3,-12],[-2,-8],[-4,-5],[-5,-3],[-9,-5],[4,-22],[-5,-6],[-9,4],[-6,3],[-6,-5],[-3,-6],[-6,-2],[-5,-6],[-4,0],[-2,0],[-11,-9],[2,-11],[-1,-9],[8,-3],[12,8],[7,-16],[7,-4],[-2,-13],[0,-13],[2,-11],[11,-36],[9,-4],[3,-7],[-6,-10],[8,-15],[4,-6],[1,-8],[3,-13],[8,-11],[5,1],[-5,-101],[0,-127],[-1,-46],[-3,-50],[14,-22],[5,-11],[6,-8],[-6,-36],[-5,-13],[8,-18],[18,-27],[-31,-140],[-4,-17],[6,-151],[0,-98],[0,-106],[0,-33],[3,-146],[1,-28],[0,-23],[0,-22],[1,-20],[2,-68],[0,-39],[0,-32],[0,-74],[1,-58],[0,-103],[-1,-110],[11,-45],[-10,-46],[0,-15],[1,-19],[-2,-22],[-2,-38],[-2,-43],[9,-34],[1,-31],[-10,-165],[4,-58],[4,-62],[-2,-137],[0,-20],[0,-40],[1,-71],[0,-29],[-2,-73],[-2,-87],[8,-196],[0,-69],[2,-307],[-7,-42],[1,-38],[1,-24],[0,-29],[1,-36],[0,-16],[0,-3],[1,-152],[2,-243],[1,-94],[0,-102],[0,-94],[2,-131],[1,-114],[1,-29],[-2,-7],[0,-24],[-1,-22],[0,-9],[1,-74],[4,-307],[1,-82],[-1,-210],[0,-34],[1,-29],[-1,-12],[-4,-129],[2,-308],[0,-207],[5,-1456],[2,-674],[6,-631]],[[72763,31668],[-130,56],[-455,223],[-51,25],[-25,-119],[-6,-27]],[[72096,31826],[-53,180],[-21,93],[-53,229],[-107,445],[-69,284],[-73,305],[-65,23],[-26,2],[-35,3],[-31,0],[-3,0],[-19,0],[-21,-1],[-15,0],[-37,6],[-31,6],[-64,31],[-77,54],[-52,-2],[-21,-8],[-33,-21],[-32,-20],[-19,-11],[-27,-7],[-32,-7],[-52,-11],[-71,1],[-79,13],[-39,11],[-31,15],[-37,11],[-34,-3],[-28,-9],[-40,-26],[-6,-4],[-91,-62],[-73,-47],[-30,-19],[-56,-44],[-15,-14],[-40,-49],[-24,-22],[-37,-30],[-31,-11],[-18,0],[-9,2],[-13,5],[-22,7],[-20,8],[-19,9],[-26,17],[-14,9],[-47,22],[-20,5],[-34,0],[-22,-6],[-65,-25],[-25,-2],[-29,4],[-35,5],[-30,3],[-20,2],[-25,-2],[-4,-2],[-24,-6],[-19,-5]],[[69726,33160],[-7,0],[-39,1],[-38,15],[-1,0],[-258,100],[-231,136],[-78,78],[-31,28],[-50,48],[-35,40],[-20,23],[-374,478],[-228,292],[-17,32],[-7,43],[-1,19],[7,31],[10,27],[6,11],[6,13],[3,6],[4,8],[-1,13],[0,8],[-1,11],[-2,18],[-5,29],[-6,28],[-12,32],[-2,4],[-12,25],[-18,29],[-5,18],[-5,51],[-6,23],[-2,11],[-7,11],[-2,3],[-1,2],[-9,9],[-20,19],[-16,1],[-22,2],[-11,-4],[-14,-4],[-32,-18],[-20,-13],[-9,-5],[-21,-12],[-26,-8],[-3,-1],[-1,0],[-11,3],[-5,6],[-3,6],[-3,7],[0,7],[-2,19],[0,3],[9,45],[16,39],[1,2],[8,41],[0,1],[-62,69],[-11,11],[-21,2],[-19,-9],[-6,-4],[-32,-22],[-21,-15],[-53,-36],[-20,-13],[-3,-1],[-10,-3],[-7,-2],[-11,2],[-7,4],[-5,5],[-3,7],[-1,2],[-1,2],[1,2],[3,22],[5,15],[5,11],[1,10],[0,1],[0,1],[0,18],[-7,34],[-6,17],[-6,11],[-7,15],[0,1],[13,44],[0,1],[7,8],[13,10],[7,6],[21,17],[3,6],[9,17],[5,13],[5,25],[2,12],[-2,6],[-4,8],[-26,33],[-3,4],[-8,49],[9,19],[10,21],[3,26],[-2,42],[-52,102],[-12,15],[-5,0],[-12,1],[-10,-8],[-15,-17],[-19,-5],[-47,26],[-60,46],[-37,29],[-1,4],[-3,9],[8,24],[0,1],[3,2],[24,16],[31,-2],[22,-5],[0,24],[-20,21],[-20,23],[-15,27],[-5,9],[-3,13],[1,58],[1,10],[-3,27],[-1,3],[-16,52],[-1,52],[-17,19],[-35,30],[-46,19],[-13,5],[-14,14],[-2,2],[-3,2],[-4,22],[10,8],[6,0],[2,-3],[20,-23],[12,-1],[8,34],[-16,36],[-1,8],[0,1],[-3,16],[-5,13],[-8,8],[-12,-6],[8,-21],[0,-9],[-25,11],[-26,20],[-5,10],[3,24],[-7,4],[-12,-3],[-15,27],[-1,3],[-21,16],[-8,2],[-24,6],[-11,2],[-30,6],[-1,0],[-19,-7],[-39,20],[0,8],[10,3],[6,25],[-1,0],[-4,6],[-13,-6],[-9,-9],[-10,-5],[-14,6],[-1,1],[0,1],[-4,12],[0,1],[-3,17],[-6,16],[0,13],[2,8],[-23,11],[4,19],[11,5],[1,13],[-16,-1],[-11,0],[-18,15],[-3,2],[-30,4],[-22,29],[-6,11],[-3,9],[-5,11],[-19,9],[-20,-1],[-12,1],[-17,12],[-7,17],[-6,11],[-6,5],[2,9],[9,38],[0,2],[2,18],[2,17],[-7,5],[-1,19],[1,11],[8,6],[0,1],[-8,28],[-2,10],[-15,19],[-9,16],[-8,16],[-2,2],[-13,21],[-3,4],[-3,3],[-8,6],[-15,10],[-3,14],[4,7],[14,28],[25,19],[4,0],[21,3],[0,8],[-4,18],[6,19],[9,26],[-2,16],[-22,18],[-13,22],[-18,16],[-4,31],[-5,25],[-18,15],[-5,3],[-8,3],[0,15],[0,21],[6,22],[-20,14],[6,17],[-9,6],[-10,-2],[-6,1],[-1,13],[6,18],[-3,11],[-2,6],[-5,13],[-4,11],[10,2],[2,0],[6,11],[-6,26],[19,13],[10,1],[8,27],[0,2],[3,8],[8,24],[-9,20],[0,11],[14,14],[-5,33],[-21,23],[-4,13],[-11,32],[4,12],[-7,6],[-11,-3],[-8,-3],[-3,-1],[-13,11],[3,8],[4,11],[15,22],[6,11],[-3,32],[-8,0],[-13,1],[-24,23],[-12,2],[-3,1],[-33,4],[-6,5],[2,20],[-3,22],[-1,6],[13,34],[3,8],[3,15],[6,45],[4,11],[0,11],[-7,11],[-2,2],[-6,-1],[-3,-2],[-18,-14],[-5,0],[-34,-5],[-20,0],[-2,0],[-1,1],[-7,7],[-1,0],[-1,1],[-7,20],[-2,3],[-3,8],[-3,6],[-39,30],[-4,0],[-9,0],[-20,-2],[0,1],[-4,179],[0,26],[1,52],[1,53],[0,84],[0,32],[0,11],[0,14],[-1,43],[0,12],[0,34],[0,34],[0,26],[1,66],[0,110],[1,31],[0,81],[0,8],[0,29],[0,34],[0,15],[-1,43],[0,33],[0,49],[-1,31],[0,27],[-1,16],[0,18],[-1,66],[0,31],[0,97],[0,25],[0,30],[0,43],[-2,153],[1,188],[1,26],[0,62],[5,290],[0,113],[0,42],[0,27],[-1,54],[-1,37],[0,161],[-1,45],[0,86],[0,33],[-1,283],[-3,219],[0,67],[0,37],[0,116],[1,57],[0,64],[0,65],[0,32],[0,78],[1,100],[0,71]],[[66557,42072],[17,235],[8,115],[1,28],[-1,58],[0,84],[-1,128],[-1,31],[-2,90],[-2,80],[2,26],[1,9],[0,28],[-1,168],[-1,61],[-1,85],[0,107],[-1,123],[0,7],[-1,157],[0,3],[0,24],[1,57],[-3,80],[0,16],[-2,180],[1,20],[-1,49],[-2,13],[1,108],[1,41],[-1,30],[-2,62],[-1,83],[-16,63],[0,32],[0,62],[0,8],[1,21],[0,48],[0,41],[0,39],[0,89],[1,62],[0,51],[0,73],[1,25],[0,32],[-1,62],[1,58],[0,61],[0,27],[1,29],[-1,43],[0,18],[0,65],[1,63],[0,62],[0,31],[0,31],[0,64],[0,63],[1,28],[0,43],[0,35],[0,52],[0,40],[1,73],[-1,36],[1,42],[0,59],[1,63],[0,70],[0,17],[0,7],[0,2],[0,38],[1,31],[-1,37],[1,31],[0,37],[0,32],[-1,34],[0,27],[1,30],[0,73],[1,71],[0,69],[0,69],[0,26],[0,48],[0,36],[1,23],[0,25],[2,36],[2,75],[0,16],[0,31],[-1,125],[0,37],[0,22],[0,37],[0,26],[0,61],[0,47],[-1,72],[0,11],[0,34],[1,34],[0,26],[0,82],[0,82],[1,46],[0,26],[5,18],[1,15],[-10,32],[-1,107],[-1,151],[1,41],[0,34],[0,78],[0,46],[1,54],[0,43],[0,7],[0,52],[1,89],[-2,72],[0,10],[0,42],[0,143],[0,300],[-1,162],[0,181],[0,120],[0,107],[-1,188],[0,304],[0,67],[-1,148]],[[66556,50622],[374,0],[290,1],[511,2],[575,3],[74,0],[297,2],[35,0],[2053,9]],[[66557,42072],[-245,-2],[-38,0],[-37,0],[-11,-1],[-62,0],[-200,-2],[-41,0],[-55,0],[-122,1],[-111,0],[-130,-1],[-7,0],[-51,1],[-186,0],[-2,0],[-166,-1],[-104,0],[-54,0],[-46,0],[-323,0],[-213,0],[-254,0],[-2,0],[-93,0],[-58,0],[-47,0],[-9,0],[-244,0],[-322,-1],[-31,0],[-52,2],[-27,0],[-155,3],[-70,0],[-64,0],[-76,-1],[-61,0],[-11,0],[-14,0],[-196,-1],[-85,0],[-110,-1],[-307,-2],[-35,0],[-191,-1],[-58,0],[-363,-2],[-108,-6],[-22,1],[-124,4],[-37,-4],[-28,0],[-120,3],[-318,-4],[-69,0],[-107,0],[-66,0],[-62,0],[-26,0],[-32,0],[-8,0],[-46,0],[-41,0],[-52,0],[-20,0],[-53,-2],[-1,0],[-17,0],[-82,2]],[[59979,42057],[-9,11],[30,117],[16,17],[7,27],[19,-7],[12,-19],[25,-13],[20,-4],[6,25],[16,-17],[20,-4],[16,14],[9,32],[19,25],[-15,28],[-25,-18],[-24,8],[0,2],[19,13],[8,14],[-1,16],[0,3],[-3,21],[8,37],[5,8],[10,5],[3,0],[55,12],[5,4],[13,10],[48,57],[7,8],[69,86],[23,29],[19,23],[5,26],[0,3],[13,32],[30,13],[71,33],[11,12],[13,15],[19,33],[10,50],[0,33],[11,34],[9,14],[17,15],[6,-1],[19,-3],[20,-6],[16,-1],[25,6],[23,24],[18,21],[8,22],[-1,9],[-2,33],[-10,38],[1,5],[1,23],[9,25],[4,6],[11,12],[22,7],[35,-5],[9,-11],[1,-14],[1,-22],[2,-29],[10,-12],[23,-10],[12,4],[10,4],[2,29],[-2,7],[-11,40],[0,28],[10,11],[51,6],[7,1],[37,0],[1,0],[21,9],[63,32],[16,12],[13,9],[20,33],[1,18],[1,21],[2,22],[9,35],[14,22],[16,8],[20,10],[41,21],[-1,20],[-6,143],[-2,38],[-24,8],[-9,3],[-34,12],[-15,16],[-12,25],[-4,37],[8,20],[5,4]],[[61129,43765],[16,14],[33,12],[39,0],[31,5],[16,17],[15,80],[16,87],[2,18],[1,10],[-22,36],[-13,25],[4,17],[9,7],[1,1],[20,14],[27,20],[-18,56],[-4,4],[-40,47],[-34,17],[-24,13],[-40,22],[-34,45],[-4,18],[4,17],[27,29],[15,34],[1,19],[-19,79],[-9,53],[3,-3],[28,-41],[17,-8],[-10,18],[9,26],[6,11],[3,2],[9,-1],[18,-3],[4,2],[4,9],[8,49],[-1,8],[-5,10],[-20,23],[-26,30],[6,26],[8,31],[52,72],[8,12],[3,7],[2,7],[0,2],[-2,4],[-27,30],[-5,11],[0,8],[1,5],[6,12],[2,0],[0,38],[16,32],[1,2],[0,1],[57,48],[0,4],[-24,56],[-23,34],[-5,5],[-1,4],[-24,35],[-16,15],[5,80],[11,9],[3,26],[-10,55],[-6,23],[16,13],[-2,77],[11,25],[-1,1],[-7,38],[-2,10],[-20,69],[-39,32],[11,22],[44,45],[13,14],[55,4],[2,147],[40,51],[54,-21],[12,55],[52,70],[-30,15],[-1,11],[0,2],[-1,8],[-9,115],[-5,0],[-1,0],[-40,-10],[-11,0],[-12,5],[-7,9],[-3,9],[0,14],[1,4],[1,7],[0,30],[-3,13],[-10,20],[-15,16],[-4,3],[-3,0],[-10,-1],[-41,-6],[-12,32],[-7,19],[-3,9],[7,29],[0,11],[-1,10],[-1,7],[-1,2],[-10,19],[-1,2],[0,1],[-14,12],[-1,1],[-14,-3],[-15,-7],[-12,-8],[-9,0],[-13,5],[-10,7],[-4,6],[-6,15],[-1,4],[2,9],[4,21],[11,11],[28,34],[5,6],[4,50],[-14,20],[-9,45],[12,19],[2,1],[20,5],[14,-24],[29,-28],[19,-6],[18,4],[11,6],[5,7],[22,45],[1,1],[1,6],[2,15],[-1,9],[0,1],[-1,1],[-4,9],[-14,21],[-2,2],[-5,14],[-1,13],[0,19],[1,6],[1,1],[1,0],[10,30],[1,4],[5,13],[0,8],[-3,8],[-3,6],[-10,9],[-10,6],[-6,3],[-17,0],[-50,-5],[-16,18],[21,31],[11,25],[-19,21],[20,31],[8,31],[-23,3],[-31,4],[-22,4],[-12,-32],[-19,2],[-14,20],[-20,2],[-13,23],[18,14],[-21,11],[-22,9],[-34,25],[-9,24],[-20,4],[-16,-12],[-1,7],[5,63],[0,3],[17,1],[1,1],[9,7],[42,49],[1,1],[24,36],[-1,7],[-1,3],[-31,57],[-8,3],[-5,1],[-37,11],[-3,0],[-48,14],[42,39],[10,11],[15,16],[29,32],[1,1],[0,2],[1,8],[3,38],[27,80],[-1,12],[14,54],[1,4],[4,2],[6,0],[16,-7],[10,1],[9,4],[8,10],[5,8],[0,1],[3,11],[-2,17],[25,23],[8,14],[-2,8],[-14,67],[-7,34],[-3,5],[-2,15],[3,13],[10,36],[0,3],[1,5],[4,23],[-5,12],[-3,9],[-26,41],[-13,20],[-7,11],[-54,1],[-2,0],[-4,0],[2,37],[1,31],[0,21],[9,18],[4,9],[-19,23],[62,71],[-12,80],[-6,42],[-8,5],[-34,21],[-2,0],[0,5],[-5,50],[-1,11],[0,3],[-1,2],[-5,7],[-26,81],[34,33],[10,12],[7,16],[-1,13],[0,1],[-11,19],[-38,45],[-21,14],[-18,74],[0,1],[2,24],[4,35],[2,3],[1,4],[2,8],[0,17],[-2,2],[-4,8],[-12,10],[-11,6],[-16,6],[-9,8],[-6,6],[-2,6],[0,22],[1,1],[3,10],[5,5],[4,6],[9,14],[26,56],[5,16],[3,16],[0,18],[-5,8],[-7,-2],[-4,-7],[-1,-6],[-3,-8],[0,-1],[-5,-6],[-6,-4],[-13,5],[-1,0],[-39,36],[-1,1],[-3,4],[-3,11],[7,56],[6,9],[3,3],[11,-1],[2,-1],[15,-7],[10,1],[1,0],[1,0],[5,6],[4,8],[0,16],[-3,13],[-3,8],[-5,5],[0,1],[-3,12],[0,10],[5,6],[50,37],[18,13],[2,0],[36,-1],[2,0],[2,-1],[7,2],[2,3],[2,5],[11,30],[1,5],[-12,14],[-5,4],[-1,5],[-2,26],[1,8],[26,33],[4,4],[14,37],[32,-16],[1,0],[26,48],[2,2],[18,37],[0,1],[1,1],[4,12],[-1,54],[0,10],[41,67],[8,13],[-20,4],[-3,5],[-2,8],[5,11],[18,9],[19,7],[13,31],[14,288],[-7,9],[-1,54],[0,67],[-1,1],[1,1],[4,4],[6,5],[9,1],[7,1],[9,4],[14,7],[8,10],[3,7],[2,12],[3,16],[5,23],[3,7],[25,49],[7,7],[7,5],[1,1],[28,15],[9,4],[9,0],[7,1],[40,0],[1,0],[5,0],[9,22],[1,2],[7,13],[18,26],[8,1],[0,1],[2,-3],[2,-3],[22,15],[5,5],[26,24],[8,8],[9,20]],[[61603,50613],[2189,4],[342,0],[521,1],[1901,4]],[[61129,43765],[-11,0],[-210,-11],[-8,-1],[-239,-13],[-88,-4],[-28,0],[-167,-5],[-120,-4],[-112,-5],[-67,-3],[-176,-7],[-58,-3],[-76,-2],[-36,0],[-81,-5],[-138,-5],[-186,-12],[-107,-3],[-172,-7],[-167,-7],[-75,-4],[-15,-1],[-176,-10],[-67,-2],[-161,-8],[-120,-5],[-74,-3],[-369,-19],[-59,0],[-21,-2],[-263,-10],[-84,-5],[-142,-7],[-3,0],[-496,-22],[-2,0],[-20,-1],[-177,-9],[-100,-2],[-59,-5],[-71,0],[-121,-7],[-3,0],[-171,-10],[-168,-8],[-260,-12],[-105,-7],[-1,0],[-25,0],[-27,-3],[-28,0],[-31,-2],[-29,-2],[-31,-1],[-109,-5],[-47,-2],[-94,-4],[-10,-1],[-40,0],[-89,-5],[-200,-12],[-109,-5],[-74,-3],[-379,-19],[-2,1],[-54,4],[-158,-7],[-90,-5],[-233,-10],[-161,-8],[-77,3],[-4,1],[-15,-25],[-14,-18],[-9,-7],[-11,-9],[-17,-10],[-7,-4],[-22,-12],[-20,-13],[-19,-15],[-11,-10],[-22,-19],[-17,-13],[-24,-28],[-8,-38],[-29,-26],[-12,-19],[14,-17],[-5,-38],[-1,-39],[-12,-30],[6,-67],[-2,-6],[-23,-73],[-22,-60],[-24,-5],[-140,-29],[-52,-11],[-123,-26],[-34,-254],[-33,-83],[-20,-37],[-4,-76],[1,-34],[-10,-40],[-9,-38],[-25,-47],[-16,-29],[-16,-28],[-18,-27],[-2,-3]],[[52571,42061],[-25,22],[-43,27],[-25,7],[-24,4]],[[54896,50606],[1,0],[1281,-2],[185,-1],[265,0],[489,-1],[375,1],[2257,5],[228,1],[1444,3],[120,1],[62,0]],[[27054,38108],[-114,2],[-185,3],[-41,0],[-39,1],[-22,0],[-31,1],[-104,1],[-245,0],[-1,0],[-113,0],[-47,0],[-165,0],[-300,1],[-27,0],[-61,-4],[-26,1],[-73,2],[-13,1],[-98,0],[-22,0],[-34,-1],[-184,0],[-92,0],[-62,0],[-194,-1],[-133,1],[-161,1],[-64,1],[-71,0],[-29,-15],[-3,-48],[-1,-15],[-1,-27],[-2,-27],[-1,-24],[0,-10],[-1,-215],[0,-125],[0,-108],[-1,-10],[-2,-14],[0,-1],[-6,-189],[-1,-31],[-4,-103],[-4,-229],[-2,-47],[-4,0],[-16,0],[-55,-1],[-68,0],[-25,0],[-40,0],[-38,-1],[-41,0],[-26,1],[-19,0],[-4,0],[-101,1],[-43,0],[-41,0],[-55,0],[-65,0],[-24,0],[-21,0],[-43,0],[-20,0],[-52,1],[-53,1],[-63,1],[-21,1],[-33,1],[-23,0],[-111,1],[-105,1],[-42,0],[-21,0],[-24,1],[-24,-1],[-105,0],[-84,0],[-21,0],[-63,0],[-30,0],[-43,0],[-42,-1],[-21,0],[-63,0],[-37,-1],[-40,0],[-13,0],[-13,0],[-27,-1],[-19,0],[-1,0],[-24,0],[-31,0],[-28,0],[-28,-1],[-35,0],[-28,1],[-28,1],[-48,3],[-22,1],[-20,0],[-22,0],[-26,1],[-19,0],[-39,0],[-42,1],[-29,0],[-27,0],[-31,0],[-24,-1],[-32,0],[-28,0],[-28,-1],[-42,1],[-60,0],[-24,1],[-42,0],[-31,1],[-70,0],[-42,1],[-48,1],[-27,0],[-52,0],[-29,-1],[-42,-2],[-28,-1],[-22,1],[-79,0],[-78,0],[-43,1],[-44,0],[-27,0],[-34,0],[-94,1],[-22,-2],[-19,-1],[-28,-2],[-29,-1],[-27,0],[-35,-1],[-49,-1],[-24,-1],[-21,-1],[-28,0],[-28,0],[-28,0],[-31,6],[-81,-1],[-26,-1],[-156,-1],[-62,-1],[-66,-1],[-133,0],[-36,0],[-35,0],[-67,1],[-8,1],[-32,3],[-77,7],[-208,18],[-70,-2],[-3,0],[-104,-4],[-22,0],[-61,-2],[-30,-2],[-48,-1],[-24,0],[-32,1],[-95,1],[-37,1],[-82,-2],[-22,-1],[-26,-2],[-1,-26],[0,-25],[1,-33],[0,-132],[-1,-57],[0,-47],[-5,-26],[-20,0],[-20,0],[-34,0],[-19,0],[-178,-2],[-174,-2],[-72,-1],[-360,-13],[-23,1],[-62,2],[-48,0],[-28,-1],[-20,0],[-22,1],[-71,0],[-100,-3]],[[17465,36537],[0,68],[1,168],[0,368],[-1,108],[-1,27],[1,275],[0,136],[0,274],[0,86],[0,4],[3,146],[3,213],[0,168],[0,36],[0,171],[0,67],[0,4],[0,41],[1,166],[0,32],[0,463],[0,163],[0,127],[0,63],[0,65],[0,92],[0,69],[0,73],[0,94],[0,139],[1,72],[4,106],[1,98],[4,79],[40,0],[29,0],[29,0],[56,-1],[91,-2],[87,-1],[115,-1],[52,1],[104,2],[1,0],[109,4],[49,0],[111,1],[143,2],[166,1],[78,1],[290,3],[1,0],[46,1],[104,-8],[29,0],[25,-1],[95,-3],[20,0],[55,22],[77,-1],[213,-2],[50,0],[39,0],[92,1],[29,0],[28,1],[40,0],[49,-2],[19,-1],[60,-2],[53,-3],[23,0],[196,-1],[3,175],[5,481],[1,45],[0,70],[2,217],[0,71],[4,353],[1,222],[1,42],[0,36],[2,161],[2,293],[2,79],[6,335],[1,48],[2,121],[0,26],[2,104],[0,49],[1,114],[4,185],[1,73],[-1,192],[0,66],[0,154],[0,35],[0,36],[1,37],[5,475],[0,9],[0,39],[2,312],[0,90],[2,178],[0,295],[0,90],[0,39],[-1,93],[0,107],[-1,43],[0,1],[0,135],[-21,0],[-3,196],[-1,83],[1,144],[-2,131],[-2,90],[-2,144],[-2,89],[-2,165],[1,73]],[[17465,36537],[1,-198],[0,-305]],[[17466,36034],[-11,1],[-70,0],[-18,0],[-20,0],[-19,-1],[-23,-2],[-120,0],[-121,2],[-148,0],[-79,0],[-22,1],[-26,0],[-22,0],[-27,0],[-316,0],[-224,0],[-59,0],[-359,1],[-6,0],[-115,1],[-114,0],[-29,0],[-230,1],[-80,-1],[-30,0],[-206,0],[-94,0],[-12,0],[-171,-1],[-31,-1],[-106,0],[-1,0],[-311,-3],[-269,-3],[-31,0],[-139,-1],[-181,-2],[-40,0],[-4,0],[-42,0],[-149,0],[-310,-2],[-68,0],[-56,0],[-82,-1],[-77,0],[-51,1],[-145,0],[0,86],[0,9],[3,227],[0,77],[0,11],[0,38],[1,131],[0,49],[0,81],[0,9],[1,28],[2,81],[1,159],[0,63],[0,22],[0,21],[2,49],[3,36],[1,30],[2,151],[1,48],[-2,19],[0,6],[0,26],[0,25],[0,24],[-1,112],[0,83],[0,83],[-3,260],[0,8],[-2,87],[-36,0],[-197,3],[-31,0],[-152,0],[-231,-1],[-6,0],[-226,2],[-67,1],[-37,0],[-10,0],[-44,0],[-67,1],[-1,0],[-25,0],[-126,0],[-44,0],[-61,1],[-86,0],[-311,2],[-189,1],[0,-123],[1,-244],[1,-53],[0,-41],[4,-194],[1,-70],[3,-138],[-2,-33],[-2,-65],[-3,-77],[1,-50],[0,-154],[0,-227],[0,-222],[0,-12],[1,-60],[0,-6],[0,-43],[0,-166],[0,-11],[0,-38],[0,-47],[0,-78],[-63,0],[-102,-1],[-104,0],[-50,1],[-60,1],[-109,1],[-79,0],[-28,-6],[-3,0],[-38,0],[-8,-1],[-25,-4],[-26,3],[-49,0],[-20,4],[-52,0],[-77,1],[-53,0],[-27,1],[-33,0],[-73,0],[-72,1],[-30,1],[-38,1],[-6,0],[-129,3],[-19,0],[-34,1],[-50,0],[-87,0],[-81,0],[-60,0],[-3,0],[-126,1],[-41,0],[-129,-1],[-65,0],[-32,1],[-20,0],[-37,0],[-17,0],[-126,0],[-55,1],[-12,0],[-267,-5],[-47,-1],[-21,0],[-19,1],[-140,-1],[-78,0],[-82,0],[-30,0],[-4,0],[-125,0],[-62,-1],[-32,0],[-69,1],[-57,0],[-35,-1],[-33,1],[-51,1],[-36,1],[-44,-3],[-4,1],[-45,4],[-193,-5],[-92,0],[-54,0],[-184,-4],[-40,-1],[-463,-3],[-130,0],[-109,0]],[[5775,36015],[2,10],[14,32],[15,3],[13,0],[15,1],[6,4],[18,22],[11,16],[30,38],[10,28],[0,28],[-4,38],[4,47],[12,31],[14,17],[20,-3],[16,-28],[20,-18],[27,7],[19,31],[8,43],[1,15],[-1,11],[9,39],[23,20],[30,-3],[23,0],[17,23],[-7,10],[2,6],[-18,16],[-28,18],[-23,13],[-20,31],[-3,29],[1,58],[9,39],[17,31],[18,19],[21,9],[23,-7],[5,-40],[2,-8],[18,-37],[29,-45],[4,-8],[8,-72],[7,-12],[8,1],[20,10],[10,5],[1,7],[4,45],[-3,58],[11,27],[22,10],[26,23],[11,28],[11,39],[21,5],[16,-17],[18,-30],[15,-19],[17,-11],[46,-3],[27,-4],[30,1],[2,9],[9,2],[-5,14],[0,9],[-22,27],[-12,16],[-1,26],[7,18],[11,12],[72,54],[12,9],[4,10],[5,8],[6,16],[5,30],[0,80],[-5,7],[0,8],[-18,20],[-25,2],[-23,-11],[-39,-25],[-26,-13],[-31,12],[-11,17],[-3,7],[-2,12],[2,12],[7,14],[14,16],[14,10],[32,18],[20,34],[-4,31],[-4,9],[-38,48],[-5,6],[-25,45],[-3,31],[2,11],[10,13],[7,4],[22,5],[22,1],[63,-4],[8,1],[5,13],[6,11],[3,9],[-15,21],[-44,34],[-13,18],[-8,13],[-12,29],[-13,13],[-26,25],[-18,29],[-16,24],[-10,4],[-54,25],[-15,16],[-7,30],[29,63],[8,24],[-3,30],[-5,7],[-3,12],[-42,49],[-5,6],[-46,46],[-18,26],[-9,44],[7,24],[4,7],[27,9],[11,-5],[12,-7],[37,-48],[7,-5],[14,-1],[8,3],[9,8],[6,11],[4,13],[-1,10],[-9,29],[-13,25],[-49,65],[-6,11],[-17,45],[-13,21],[-23,38],[3,39],[23,50],[6,8],[10,4],[9,0],[26,-6],[25,2],[15,5],[15,10],[6,8],[5,14],[3,10],[-3,10],[-8,27],[-22,10],[-34,-14],[-22,-3],[-15,5],[-6,10],[-2,8],[17,33],[40,29],[23,47],[6,7],[11,5],[10,1],[16,1],[16,4],[12,6],[2,15],[5,31],[-4,12],[-2,14],[-18,14],[-18,11],[-10,-5],[-9,-3],[-12,-2],[-12,0],[-9,2],[-8,24],[2,7],[11,20],[18,13],[0,25],[-15,70],[11,23],[18,20],[20,30],[-4,32],[-21,-1],[-21,-26],[-28,-27],[-34,-14],[-49,13],[-30,22],[-13,18],[-11,36],[-12,33],[-28,21],[-35,5],[-30,2],[-37,9],[-20,11],[-27,27],[-36,42],[-34,36],[-18,41],[6,31],[16,72],[1,8],[-15,17],[-94,18],[-33,27],[1,34],[8,12],[80,25],[9,4],[33,21],[26,20],[49,34],[8,35],[-10,27],[-36,73],[-7,43],[11,32],[16,19],[31,27],[51,41],[23,28],[13,26],[0,32],[-6,37],[-12,23],[-48,65],[-4,40],[10,23],[17,24],[-3,8],[3,9],[-35,65],[3,26],[2,11],[18,25],[96,126],[25,2],[22,-20],[35,-32],[29,3],[18,17],[13,32],[15,135],[6,45],[17,20],[20,8],[15,2],[92,-14],[25,0],[23,11],[25,37],[35,40],[30,14],[32,13],[22,13],[34,16],[22,4],[8,-5],[7,-1],[17,-14],[31,-20],[11,-18],[11,-26],[-3,-27],[-70,-82],[13,-25],[96,7],[27,21],[3,37],[-2,57],[9,39],[17,27],[11,9],[6,4],[61,-7],[19,17],[-2,111],[-5,14],[-4,14],[-7,13],[-48,72],[-9,27],[-3,15],[-4,40],[-9,35],[-11,21],[-7,5],[-22,11],[-36,9],[-26,19],[-14,14],[10,29],[29,22],[10,9],[19,57],[25,29],[44,40],[2,14],[6,7],[-2,17],[-3,11],[-57,105],[0,32],[13,29],[12,27],[-1,20],[-1,16],[-4,23],[4,24],[18,21],[13,10],[22,15],[10,24],[3,7],[1,3],[-7,33],[-17,26],[-23,36],[-4,35],[14,33],[24,24],[48,27],[18,21],[38,48],[29,41],[2,16],[4,7],[0,40],[19,20],[43,23],[11,25],[-12,60],[2,15],[4,22],[41,52],[17,13],[30,22],[42,7],[44,-8],[29,12],[28,52],[44,111],[19,36],[28,7],[39,-13],[62,-31],[27,2],[5,42],[5,39],[19,35],[34,1],[76,-15],[26,3],[24,37],[17,43],[21,10],[29,10],[38,20],[30,49],[38,93],[2,13],[3,15],[3,27],[5,34],[11,23],[29,39],[30,47],[32,40],[16,41],[-10,37],[-30,19],[-23,29],[-6,32],[4,28],[19,18],[28,28],[24,28],[5,19],[7,26],[0,27],[8,46],[27,42],[29,45],[12,36],[-5,32],[-13,53],[3,13],[3,16],[18,10],[16,16],[23,-11],[4,-36],[13,-24],[19,15],[25,16],[19,-7],[4,-26],[15,-33],[6,-1],[12,7],[22,20],[18,12],[-4,29],[-15,5],[-16,7],[-13,8],[-10,9],[-10,12],[-10,11],[-10,6],[-9,6],[-16,10],[-5,2],[-17,8],[-8,5],[-2,15],[9,7],[10,-3],[13,-5],[22,3],[6,6],[9,12],[5,12],[4,15],[0,9],[-7,29],[-3,40],[-15,-3],[-15,-2],[-17,-1],[-26,1],[-28,0],[-21,12],[-17,11],[5,31],[26,8],[28,-15],[33,-13],[27,2],[19,11],[11,21],[-6,26],[-15,25],[-18,40],[-15,45],[-17,26],[-25,11],[-35,13],[-33,20],[-23,44],[-2,4],[-3,38],[27,31],[40,21],[9,3],[32,9],[57,12],[11,2],[21,22],[10,23],[0,1],[0,26],[-18,24],[-11,26],[-20,25],[-16,28],[-5,24],[-4,14],[-10,8],[-8,7],[-15,12],[-12,15],[-4,22],[-1,11],[6,46],[8,32],[23,20],[17,-15],[11,-24],[16,-41],[22,-7],[32,6],[19,12],[8,24],[5,24],[-5,27],[-6,28],[3,35],[7,12],[6,0],[11,1],[-2,-29],[20,-62],[13,-6],[29,10],[32,30],[47,17],[55,8],[44,23],[17,31],[5,26],[2,24],[-22,58],[-15,64],[15,70],[11,29],[23,19],[20,16],[26,5],[30,-9],[51,4],[18,22],[-3,12],[3,6],[-8,18],[-3,7],[-10,18],[-47,44],[-6,8],[-25,43],[-6,47],[38,23],[59,7],[33,30],[12,28],[1,26],[-39,60],[-16,63],[2,61],[10,44],[5,29],[21,25],[33,-4],[41,-23],[71,-8],[43,18],[60,12],[67,39],[49,41],[31,37],[8,23],[0,9],[1,27],[0,12],[-19,26],[-31,47],[-15,68],[8,28],[16,23],[28,24],[28,14],[44,32],[29,25],[35,29],[13,34],[-7,8],[1,9],[-41,39],[-16,35],[25,37],[10,12],[31,30],[12,45],[-6,34],[-19,21],[-26,42],[-42,55],[-33,25],[-70,26],[-43,3],[-40,25],[-16,24],[9,30],[19,12],[26,8],[34,13],[27,26],[95,113],[4,27],[-7,8],[-1,10],[-33,32],[-43,66],[-5,25],[15,64],[27,68],[26,100]],[[43791,38349],[11,-115],[28,-188],[34,-100],[44,-66],[27,-24],[93,-171],[28,-102],[4,-131],[2,-87],[29,-70],[16,-38],[60,-38],[119,4],[148,16],[75,-84],[53,-139],[13,-145],[37,-131],[187,-240],[35,-66],[62,-117],[9,-40],[33,-140],[21,-84],[17,-50],[95,-47],[91,-20],[85,-46],[13,-26],[1,-3],[10,-30],[-27,0],[-23,-1],[-130,-1],[-53,-1],[-153,-2],[-195,-3],[-52,0],[-49,-1],[-192,-2],[-34,-1],[-23,0],[-41,0],[-92,0],[-241,0],[-32,0],[-26,2],[-46,3],[-237,0],[-163,-1],[-73,0],[-33,0],[-147,-2],[-31,0],[-55,0],[-135,-1],[-88,0],[-17,0],[-19,0],[-19,0],[-31,0],[-85,0],[-20,0],[-24,8],[-17,22],[-3,27],[-17,15],[-21,20],[-23,14],[-16,19],[-29,15],[-24,5],[-23,-6],[-31,10],[-15,19],[-19,19],[-20,1],[-22,0],[-17,14],[-46,17],[-12,22],[1,30],[-26,6],[-18,20],[-20,3],[-33,4],[-22,13],[-22,-8],[-49,-6],[-18,8],[-41,-2],[-24,5],[-24,-17],[-22,4],[-17,17],[-28,50],[-15,22],[-11,36],[-11,27],[-40,0],[-19,-4],[-28,-8],[-25,9],[-46,11],[-27,9],[-21,-11],[-20,24],[-16,17],[-47,46],[-18,14],[-24,-8],[-28,-13],[-37,-16],[-86,-37],[-29,-13],[-52,-22],[-21,-10],[-27,-11],[-43,-18],[-21,-10],[-58,-24],[-24,-11],[-24,-10],[-20,-9],[-36,-16],[-50,-21],[-22,-9],[-38,-17],[-29,-12],[-59,-26],[-24,-10],[-26,-11],[-18,-9],[-30,-13],[-21,-8],[-21,-10],[-29,-12],[-26,-11],[-18,-8],[-40,-18],[-22,-9],[-28,-12],[-40,-18],[-18,-6],[-19,-7],[-1,-1],[-20,-8],[-22,-9],[-28,-10],[-12,4],[-7,2],[-19,-3],[-18,-10],[-27,-15],[-30,-24],[-19,8],[-25,9],[-40,4],[-20,28],[-23,19],[-17,19],[-16,12],[-35,27],[-19,9],[-37,-4],[-20,18],[-30,13],[-36,19],[-32,27],[-25,26],[-17,20],[-24,13],[-26,18],[-35,33],[-11,28],[-34,33],[-24,-1],[-20,-8],[-29,8],[-20,0],[-26,-19],[-24,-4],[-21,-6],[-49,-27],[-23,-2],[-12,-13],[-4,-4],[-6,-26],[-14,-28],[-18,-37],[6,-32],[-5,-35],[-12,-33],[-9,-31],[-7,-55],[-2,-34],[-13,-33],[0,-36],[13,-18],[-12,-24],[-8,-18],[-6,-12],[7,-39],[6,-26],[5,-45],[14,-34],[1,-24],[0,-2],[-32,-48],[-20,-35],[-31,-64],[2,-30],[-9,-22],[-14,-25],[-12,-19],[-10,-31],[-10,-18],[-2,-3],[0,-2],[0,-10],[-1,-8],[0,-5]],[[39339,35192],[-18,7],[-6,3],[-29,7],[-17,12],[-19,13],[-31,-6],[-4,-2],[-26,-10],[-18,-9],[-8,-5],[-20,-11],[-8,-7],[-11,-9],[-3,-6],[-10,-18],[3,-24],[-2,-29],[-1,-4],[-19,-2],[-14,10],[-9,6],[-30,14],[-16,19],[-25,22],[-8,2],[-13,4],[-24,-4],[-18,15],[-7,25],[-14,24],[-18,17],[-27,10],[-29,12],[-19,-7],[-16,-32],[-11,-26],[-15,-22],[-16,-17],[-20,-21],[-20,0],[-20,1],[-6,0],[-1,0],[-20,-6],[-13,-20],[-8,-29],[6,-28],[-13,-28],[-6,-25],[-18,-23],[-22,-3],[-16,15],[-16,14],[-8,6],[-17,-4],[-19,-4],[-19,10],[-3,4],[-13,18],[-18,-4],[-4,-1],[-22,13],[3,28],[-15,26],[-19,19],[-26,-2],[-1,30],[6,22],[0,2],[-3,-1],[-21,-4],[-16,16],[-19,0],[-6,15],[-4,12],[-5,30],[-1,8],[-2,17],[10,7],[5,5],[2,1],[13,18],[-3,25],[-10,27],[-28,35],[-1,1],[-32,24],[-27,9],[-1,0],[-22,5],[-16,16],[-17,16],[10,33],[-18,20],[-1,0],[-22,-13],[0,-13],[0,-17],[-27,-14],[-21,-4],[-9,-2],[-29,-6],[-18,-7],[-21,-29],[-6,-25],[-24,-13],[-15,-27],[-15,-20],[-19,-7],[-5,-2],[-10,-21],[-7,-28],[-2,-3],[-10,-16],[-3,-2],[-17,-7],[-19,-24],[-15,-30],[-6,-6],[-14,-14],[-20,-11],[-3,0],[-19,1],[-20,-10],[-17,-14],[-20,-6],[-16,-14],[-22,-12],[-13,26],[-20,8],[-22,-12],[-16,-20],[-10,-25],[-8,-24],[-15,-19],[-1,-2],[-27,-9],[-28,-10],[-18,-7],[-5,-2],[-16,-21],[-6,-25],[3,-31],[0,-1],[-1,-29],[2,-25],[0,-2],[1,-27],[-7,-30],[-12,-19],[-18,-18],[8,-32],[4,-25],[13,-21],[3,-33],[-8,-32],[-23,-26],[-15,-23],[1,-4],[3,-26],[10,-12],[5,-5],[14,-19],[-1,-30],[-11,-21],[-19,-21],[-18,-24],[-12,-20],[-9,-22],[-7,-24],[-2,-26],[2,-25],[6,-29],[-10,-15],[-5,-6],[-7,-9],[-7,-1],[-16,-2],[-19,5],[-11,3],[-27,6],[-25,-10],[-5,-3],[-13,-8],[-18,-23],[-4,-7],[-9,-12],[-11,-9],[-126,-108],[-205,-168],[-20,-16],[-49,-40],[-23,-19],[-25,-21],[-56,-46],[-17,-16],[-17,-13],[-51,-43],[-241,-202]],[[36401,33486],[5,177],[2,92],[1,26],[2,64],[1,33],[1,52],[1,61],[0,32],[-21,-1],[-82,1],[-47,0],[-19,0],[-33,0],[-28,0],[-54,0],[-41,1],[0,88],[0,61],[-1,27],[0,27],[0,36],[0,26],[0,29],[0,45],[-1,28],[0,42],[0,31],[0,49],[0,35],[0,42],[0,37],[0,54],[-1,50],[-34,0],[-188,-3],[-79,-1],[-27,0],[-1,45],[0,32],[0,40],[-1,33],[0,24],[0,54],[0,27],[0,27],[-1,35],[0,42],[0,54],[0,37],[0,35],[0,38],[-1,26],[0,103],[-1,57],[1,70],[-2,66],[0,8],[-1,36],[2,34],[0,37],[0,29],[0,37],[0,36],[0,45],[0,52],[-1,85],[0,25],[-2,173],[-1,65],[-5,239],[0,29],[0,45],[0,28],[0,37],[0,37],[0,32],[0,112],[1,36],[0,29],[-35,3],[-27,-3],[-25,-3],[-104,1],[-23,0],[-127,1],[-79,1],[-44,1],[-126,1],[-177,1],[-23,-1],[-3,0],[-53,-1],[-131,0],[-49,-1],[-79,0],[-53,-1],[-34,0],[-51,0],[-54,0],[-2,35],[0,91],[-1,74],[-1,101],[-1,54],[-1,85],[-1,74],[-1,38],[-1,127],[0,27],[-1,42],[-1,141],[-1,151],[-21,24],[-60,0],[-38,1],[-66,0],[-50,-1],[-28,0],[-54,0],[-23,0],[-36,-1],[-23,0],[-50,0],[-212,1],[-51,-1],[-52,-1],[-26,0],[-20,-1],[-104,-1],[-19,0],[-97,0],[-48,0],[-54,-1],[-68,0],[-27,0],[-29,0],[-1,0],[-74,-1],[-51,1],[-177,1],[-77,0],[-78,0],[-146,0],[-71,1],[-178,0],[-40,0],[-63,0],[-73,0],[-48,0],[-34,0],[-128,-2],[-107,3],[-25,0],[-29,-3],[-21,0],[-30,0],[-41,0],[-53,0],[-42,0],[-40,0],[-20,1],[-22,0],[-19,0],[-49,0],[-116,0],[-33,0],[-44,0],[-28,0],[-2,0],[-32,0],[-20,-2],[-3,0],[-23,0],[-26,0],[-28,1],[-38,0],[-28,0],[-21,0],[-32,1],[-21,0],[-46,0],[-33,0],[-46,5],[-26,0],[-24,0],[-82,1],[-92,1],[-65,1],[-98,1],[-50,1],[-38,1],[-25,-4],[-32,1],[-23,0],[-20,-1],[-10,0],[-22,1],[-33,0],[-28,0],[-49,0],[-33,0],[-20,0],[-32,0],[-110,0],[-21,0],[-25,-1],[-21,0],[-22,1],[-25,5],[-45,-1],[-66,-1],[-7,0]],[[59979,42057],[16,-28],[-81,-34],[-4,1],[-2,-1],[-9,2],[-15,-9],[-21,-21],[-10,-34],[-4,-49],[7,-40],[-1,-27],[0,-4],[-7,-13],[-5,-8],[-2,-4],[-8,-6],[-24,-19],[-15,-11],[-40,-18],[-22,3],[-20,15],[-28,32],[-2,3],[-2,2],[-14,-4],[-17,-17],[-7,-21],[-9,-35],[-11,-29],[-62,-74],[-53,-65],[-10,-27],[-14,-44],[-7,-25],[-8,-28],[1,-19],[-25,-1],[-9,-4],[-17,-18],[-4,-7],[-7,-22],[9,-29],[28,-29],[24,5],[8,6],[12,5],[5,4],[24,18],[-7,22],[-3,18],[5,5],[6,-2],[12,-12],[5,-4],[15,-24],[13,-25],[2,-2],[-22,-44],[-5,-12],[-24,-36],[-11,-7],[-5,-4],[-28,-13],[-24,-22],[-9,-22],[-2,-8],[-1,-3],[0,-3],[-5,-34],[-11,-30],[-3,-8],[-13,-15],[-10,-5],[-10,-4],[-31,-2],[-35,14],[-34,13],[-15,-5],[-6,-5],[-5,-6],[-8,-33],[4,-37],[-3,-20],[0,-1],[-12,-14],[-26,-6],[-21,3],[-55,24],[-10,2],[-28,4],[-57,8],[-10,-5],[-1,-22],[8,-22],[14,-15],[11,-17],[9,-15],[8,-3],[22,-11],[-1,-18],[-5,-9],[-17,-12],[-13,-12],[-8,-4],[-9,-1],[-19,3],[-13,14],[6,31],[0,11],[0,6],[-26,-4],[-7,-8],[-7,-16],[-4,-25],[-1,-28],[-8,-55],[-17,-41],[-9,-7],[-20,-1],[-18,20],[-3,28],[10,19],[8,23],[-2,19],[-11,8],[-27,1],[-57,-17],[-16,-1],[-17,-16],[-7,-15],[2,-16],[9,-25],[3,-27],[-9,-23],[-25,-8],[-15,2],[-14,7],[-17,19],[-9,9],[-3,3],[-7,-3],[-12,-16],[11,-60],[-1,-2],[-5,-6],[-6,-3],[-17,-3],[-7,7],[-6,11],[-17,-25],[-1,-1],[2,-7],[7,-12],[5,-6],[8,-9],[3,-8],[1,-9],[-4,-8],[1,-2],[-8,-18],[-19,-41],[0,-1],[-13,-19],[-14,-4],[-16,9],[-42,23],[-17,10],[-6,-4],[-8,-18],[10,-34],[22,-38],[10,-11],[1,-3],[2,-2],[11,-12],[17,-24],[0,-1],[0,-1],[-1,-16],[-19,-30],[-34,-56],[-11,-17],[-10,-27],[-9,-26],[1,-11],[5,-5],[7,-8],[19,-11],[96,-41],[31,-13],[2,-1],[11,-4],[18,-5],[19,-1],[20,-37],[13,-24],[9,-22],[7,-20],[16,-89],[-7,-144],[12,-26],[11,-24],[3,-7],[0,-4],[-6,-32],[-4,-21],[-26,-20],[-31,-31],[-7,-21],[7,-56],[11,-6],[23,-5],[3,0],[18,-21],[1,-3],[1,-4],[2,-25],[-1,-6],[0,-11],[-9,-25],[-33,-39],[-34,-12],[-7,-1],[-12,-1],[-14,2],[-12,-7],[-2,-2],[-27,-33],[-6,-13],[-2,-7],[-1,-3],[-27,-80],[-17,-11],[-6,-4],[-4,-6],[-8,-21],[28,-16],[8,-6],[10,4],[22,12],[9,-4],[13,-6],[12,-14],[3,-8],[21,-68],[2,-6],[-2,-39],[-9,-9],[-7,-8],[-8,-1],[-48,-10],[-21,-6],[-4,-5],[1,-9],[3,-8],[79,-24],[8,-4],[3,-7],[-1,-6],[-51,-51],[-4,-10],[8,-13],[38,-33],[48,-43],[3,-3],[15,-14],[16,-17],[6,-8],[50,-63],[8,-9],[6,-62],[12,-6],[11,-9],[9,-9],[6,-7],[11,-25],[-11,-20],[-13,-4],[-16,-5],[-85,-65],[-3,-3],[-5,-12],[-2,-4],[-13,-28],[-1,-2],[0,-4],[0,-16],[10,-14],[9,-12],[25,-1],[28,17],[25,-5],[4,-4],[7,-9],[5,-19],[4,-34],[0,-62],[-15,-14],[-11,0],[-1,1],[-30,1],[-9,-8],[0,-4],[2,-11],[0,-4],[24,-20],[3,-3],[-4,-6],[-14,-26],[2,-3],[18,-46],[2,-15],[-26,-10],[-13,-13],[-26,-14],[-13,-10],[-4,-11],[2,-12],[5,-8],[8,-11],[1,-13],[-2,-5],[-2,-9],[-23,-25],[-8,-2],[-20,4],[-13,-8],[-5,-23],[9,-14],[12,-19],[2,-3],[4,-5],[7,-5],[10,-6],[19,-11],[7,-36],[15,-86],[-1,-21],[-28,-64],[-2,-2],[-10,-9],[-37,-2],[-22,-2],[-19,-1],[-5,2],[-6,-1],[-27,0],[-5,0],[-10,2],[-11,18],[-5,8],[-2,3],[-9,14],[-9,1],[-16,-5],[-4,-26],[-50,-31],[-2,-2],[-3,-1],[-9,-30],[-16,-19],[-2,-11],[-4,-14],[-3,-16],[-7,-16],[-6,-15],[-2,-30],[25,-11],[4,-12],[3,-10],[0,-1],[1,-3],[15,-65],[5,-13],[6,-6],[4,-6],[6,-7],[52,-34],[22,-20],[10,-33],[-35,-15],[-8,-7],[-9,-7],[-4,-3],[-4,-24],[9,-24],[10,-13],[18,-24],[2,-3],[57,-90],[24,-32],[45,-62],[8,-9],[19,-2],[55,52],[7,7],[8,-4],[3,-3],[4,-6],[1,-1],[-1,-12],[-16,-51],[-53,-56],[-33,-32],[-8,-6],[-8,0],[-26,-1],[-15,-18],[-9,-27],[1,-31],[6,-6],[11,-13],[20,-23],[1,-12],[1,-7],[-9,-7],[-6,-4],[-36,-27],[-1,-2],[-10,-24],[1,-40],[7,-19],[14,-16],[27,-17],[27,-14],[12,-2],[28,-5],[13,-2],[52,1],[4,0],[3,0],[23,1],[30,0],[16,-10],[10,-12],[25,-30],[16,-7],[25,-2],[26,11],[7,3],[6,-12],[0,-1],[0,-15],[-51,-62],[0,-6],[-1,-9],[11,-10],[64,-75],[64,-92],[14,-21],[-2,-12],[1,0],[-1,-1],[-2,-14],[-50,-50],[-23,-17],[-11,2],[-26,3],[-29,12],[-31,20],[-19,12],[-21,15],[-11,-3],[-21,-20],[-15,-28],[-3,-5],[-1,-9],[-5,-49],[-1,-27],[-3,-56],[1,-2],[32,-53],[44,-74],[4,-6],[59,-44],[51,-39],[1,0],[23,-2],[35,-2],[28,8],[46,16],[40,19],[47,56],[7,15],[1,19],[0,6],[3,3],[1,2],[5,6],[5,0],[14,-1],[9,0],[13,-7],[11,-8],[46,-36],[22,-26],[10,-13],[5,-12],[-1,-25],[-35,-183],[-12,-27],[-10,-10],[0,-14],[42,-77],[2,-3],[3,-2],[37,-37],[1,0],[0,-1],[13,-7],[2,0],[12,-6],[50,-8],[11,-2],[66,-19],[16,-11],[11,-13],[2,-3],[1,-7],[0,-1],[1,-15],[0,-5],[-3,-5],[-6,-9],[-3,-6],[-8,-8],[-41,-43],[-4,-5],[-8,-3],[-18,-8],[-21,-20],[-5,-44],[13,-6],[30,-14],[14,12],[9,33],[14,12],[15,-5],[7,-6],[14,-13],[7,-11],[3,-15],[3,-22],[4,-18],[1,-9],[15,-8],[5,2],[9,5],[3,6],[5,5],[87,47],[71,39],[28,1],[24,-29],[0,-21],[6,-30],[4,-7],[20,-14],[11,-4],[1,-10],[2,-31],[0,-8],[1,-1],[17,-19],[4,-4],[19,-1],[31,8],[18,11],[24,30],[2,2],[26,11],[10,0],[34,0],[12,0],[24,-17],[16,-23],[-1,-5],[-3,-27],[-14,-18],[-23,-6],[-25,7],[-24,-2],[-5,-11],[1,-22],[9,-11],[13,-8],[26,-3],[24,4],[29,6],[8,-11],[18,-26],[11,-28],[9,-23],[2,-7],[2,-10],[-2,-52],[-5,-36],[3,-6],[13,0],[10,4],[21,7],[14,1],[22,1],[31,-14],[28,-21],[14,-15],[13,-17]],[[60343,34621],[-10,4],[-11,4],[-23,5],[-29,-5],[-17,-19],[-15,-17],[-30,-13],[-20,-22],[-42,2],[-20,-5],[-10,-31],[-24,-16],[-21,26],[-20,3],[-25,-13],[-31,-36],[-27,-2],[-17,21],[-19,3],[-24,-9],[-43,5],[-14,19],[9,27],[-11,41],[-14,23],[-19,15],[-31,-5],[-27,-10],[-28,-24],[-25,-12],[-25,-1],[-21,-5],[-16,-26],[-14,-23],[-22,6],[-8,23],[-21,4],[-14,-16],[-24,-12],[-23,5],[-38,-9],[-32,-24],[-25,1],[-25,16],[-34,-1],[-23,7],[-13,21],[-12,26],[-42,-12],[-19,7],[4,37],[-17,17],[-17,-12],[-22,3],[-22,21],[-20,3],[-21,-15],[-26,1],[-28,5],[-26,-10],[-26,13],[-31,-5],[-24,9],[-12,23],[-29,4],[-26,-17],[-30,-10],[-21,1],[-40,14],[-27,9],[-19,5],[-27,-7],[-15,-35],[-10,-23],[-21,-7],[-44,4],[-38,4],[-20,-8],[-19,-5],[-17,16],[-16,20],[-25,9],[-8,-11],[-7,-10],[-10,-33],[-22,-11],[-24,-4],[-37,-1],[-6,-2],[-27,-6],[-18,-20],[-40,-2],[-16,-18],[-6,-31],[-12,-27],[-21,-26],[-14,-21],[-14,-4],[-11,-4],[-22,12],[-29,12],[-21,7],[-6,3],[-19,6],[-22,-6],[-10,-23],[-28,-17],[-27,-2],[-26,-10],[-22,-16],[-10,-35],[7,-25],[15,-33],[-5,-9],[-16,-28],[-17,-13],[-15,-19],[-8,-25],[-12,-42],[-8,-29],[-22,-31],[-38,-32]],[[57868,34045],[-22,-14],[-14,-20],[-24,-26],[-18,-16],[-23,-23],[-21,-20],[-24,-25],[-22,-1],[-21,-10],[-20,-11],[-27,-4],[-26,-1],[-27,-1],[-22,5],[-27,4],[-28,4],[-26,0],[-26,2],[-25,-2],[-32,9],[-21,14],[-21,1],[-41,-11],[-28,19],[-21,-11],[-23,-18],[3,28],[0,26],[-27,-9],[-28,9],[-23,-7],[-20,-4],[-22,6],[-15,20],[-23,12],[-25,6],[-21,-19],[-19,6],[-25,9],[-22,17],[-22,2],[-22,0],[-19,5],[-20,-3],[-28,0],[-35,0],[-31,6],[-26,-2],[-34,-1],[-19,-3],[-27,4],[-30,-7],[-21,-1],[-20,-3],[-42,8],[-20,-1],[-21,-4],[-19,20],[-26,10],[-24,-10],[-17,-16],[-28,-6],[-42,6],[-25,-18],[-27,-6],[-22,-7],[-18,-10],[-31,-9],[-25,-15],[-18,-20],[-20,-17],[-23,-4],[-24,1],[-23,-8],[-25,-12],[-21,-28],[-17,-15],[-23,-3],[-46,12],[-20,4],[-33,0],[-19,-6],[-4,2],[-19,9],[-25,-3],[-20,2],[-5,0],[-21,17],[-30,7],[-26,-8],[-20,-11],[-22,-2],[-21,10],[-25,21],[-24,15],[-11,27],[-16,17],[-34,25],[-8,5],[-26,20],[-17,30],[5,39],[0,31]],[[55549,34085],[-7,37],[-8,27],[-41,131],[-55,75],[-69,84],[-50,34],[-151,57],[-125,39],[-35,11],[-78,15],[-112,22],[-40,11],[-145,28],[-92,7],[-185,-43],[-119,-36],[-63,-18],[-115,-40],[-52,-18],[-147,12],[-105,83],[-12,28],[-60,145],[-37,147],[13,99],[4,27],[38,94],[20,48],[23,55],[10,22],[19,45],[26,52],[55,69],[37,47],[18,28],[53,65],[61,75],[21,25],[48,63],[56,76],[15,24],[32,52],[90,161],[46,105],[109,269],[15,101],[9,76],[10,34],[15,92],[24,159],[2,41],[3,62],[2,39],[0,185],[-5,49],[-7,59],[-6,106],[-5,89],[8,163],[-1,88],[-1,31],[0,29],[0,60],[-3,194],[-4,281],[0,42],[-1,108],[-1,66],[-1,2],[-24,145],[-44,112],[-56,51],[-82,60],[-25,19],[-103,-46],[-40,-18],[-25,-10],[-345,-147],[-82,-34],[-119,-51],[-67,-29],[-70,-27],[-62,-33],[-73,-26],[-37,-13],[-106,-13],[-85,-4],[-32,1],[-40,2],[-58,16],[-38,19],[-24,30],[-27,56],[-11,48],[1,45],[6,47],[31,45],[36,34],[44,25],[62,36],[179,134],[81,43],[52,32],[94,66],[30,22],[20,15],[27,16],[58,51],[17,16],[15,21],[2,4],[33,59],[14,41],[7,46],[-2,45],[5,47],[-2,46],[-3,25],[-10,55],[-11,35],[-14,32],[-32,59],[-14,24],[-146,177],[-67,58],[-69,53],[-65,27],[-42,9],[-77,3],[-61,2],[-126,5],[-55,-2],[-76,-7],[-25,2],[-47,-3],[-43,-8],[-36,0],[-139,22],[-56,-2],[-42,14],[-47,26],[-26,28],[-49,74],[-8,23],[-13,37],[-14,59],[-6,38],[0,59],[1,57],[10,48],[13,57],[17,69],[3,13],[13,62],[12,33],[20,36],[29,35],[58,70],[31,38],[35,50],[24,31],[19,28],[26,44],[18,37],[17,45],[1,4],[11,38],[30,76],[13,18],[19,28],[35,155],[-5,48],[-3,62],[-6,48],[-1,29],[-16,75],[-21,68],[-17,45],[-8,29],[-16,37]],[[80440,42474],[-10,-22],[-6,-31],[-2,-2],[-25,-23],[-7,-6],[-9,1],[-10,0],[-14,1],[-19,11],[-7,9],[-4,4],[-5,7],[-7,19],[-20,1],[-13,-7],[-7,-4],[-15,-14],[-12,-21],[-1,-6],[-2,-8],[-2,-13],[3,-10],[5,-8],[10,-15],[16,-7],[87,-15],[8,1],[2,0],[21,3],[24,11],[22,10],[19,-4],[6,-7],[2,-3],[0,-5],[0,-16],[2,-90],[-2,-13],[-6,-34],[-1,-10],[-4,-23],[2,-3],[2,-1],[4,-6],[9,0],[9,-1],[4,0],[18,15],[7,6],[2,2],[19,35],[0,5],[5,38],[7,15],[14,14],[15,6],[7,-1],[3,0],[21,-2],[1,-1],[8,-9],[9,-9],[16,-38],[10,-21],[6,-15],[1,-4],[4,-58],[4,-5],[4,-5],[49,-7],[39,-14],[85,-87],[5,-6],[4,-5],[2,-2],[-1,-15],[-1,-6],[-8,-13],[-1,-2],[-42,-35],[-2,-2],[-7,-15],[-1,-28],[1,-6],[4,-15],[4,-13],[3,-5],[10,-12],[9,-4],[18,-10],[6,1],[20,-7],[67,23],[30,-5],[2,-2],[15,-17],[0,-8],[-2,-26],[-21,-25],[-3,-4],[-10,-6],[-25,-16],[-25,-23],[-31,-28],[-6,-46],[1,-34],[1,-9],[1,-4],[-43,-108],[-7,-21],[-4,-7],[-5,-11],[-27,-26],[-16,-7],[-2,-1],[-25,2],[-10,7],[-14,10],[-13,1],[-12,1],[-15,-14],[-8,-72],[1,-17],[0,-14],[1,-5],[7,-10],[4,0],[10,-1],[87,37],[1,1],[64,36],[2,-2],[5,-8],[7,-11],[0,-4],[-1,-15],[-1,-18],[-18,-40],[-8,-16],[-16,-129],[0,-15],[-2,-23],[0,-2],[2,-10],[20,-87],[5,-6],[8,-9],[42,-51],[22,-8],[49,-31],[12,-15],[10,-13],[2,-1],[1,-3],[5,-14],[1,-2],[-2,-25],[-1,-1],[-16,-13],[-18,1],[-10,1],[-7,3],[-18,8],[-22,1],[-8,0],[-4,-3],[-8,-7],[0,-7],[0,-17],[0,-10],[9,-30],[1,-2],[17,-32],[27,-21],[20,-4],[9,-1],[47,4],[14,1],[11,-47],[-3,-61],[5,-7],[3,-4],[2,-3],[2,0],[12,-1],[26,17],[10,1],[15,2],[7,1],[7,-10],[0,-4],[0,-8],[-1,-12],[-21,-24],[-3,-1],[-19,-9],[-7,-3],[-3,0],[-22,-1],[-30,24],[-10,3],[-12,4],[-22,2],[-6,-6],[-1,-12],[33,-67],[23,-30],[5,-3],[2,-1],[4,-3],[44,-68],[16,-35],[31,-67],[7,-28],[-1,-4],[0,-6],[-5,-42],[-7,-12],[-12,-24],[4,-12],[8,-26],[28,-4],[8,-1],[10,5],[48,23],[3,2],[5,2],[8,1],[6,1],[72,19],[20,5],[38,-3],[4,0],[5,-8],[6,-9],[4,-6],[-1,-4],[-3,-28],[-1,-4],[-2,-2],[-8,-7],[-19,-16],[-1,-1],[2,-28],[12,-11],[9,-9],[20,-1],[11,-1],[5,0],[18,14],[4,26],[5,35],[1,58],[9,10],[3,2],[28,3],[6,1],[6,-4],[7,-3],[4,-5],[7,-9],[5,-12],[-6,-49],[-10,-18],[-43,-62],[-20,-20],[-7,-3],[-14,-8],[-5,-1],[-63,-19],[-2,1],[-23,1],[-5,4],[-52,43],[-9,-5],[-50,-28],[-2,-1],[-10,-31],[0,-4],[-2,-39],[2,-12],[2,-4],[11,-13],[19,-8],[6,-1],[88,-10],[31,-4],[9,-4],[3,-5],[15,-18],[24,-43],[11,-21],[10,-25],[4,-19],[0,-13],[-2,-33],[-1,-16],[-4,-5],[-12,-15],[-27,-1],[-5,2],[-39,26],[-2,0],[-12,1],[-5,0],[-12,-5],[-23,-23],[-10,-9],[0,-9],[5,-7],[21,-7],[149,-51],[56,-10],[6,-1],[12,-3],[63,-3],[2,0],[65,9],[1,0],[17,-20],[27,-55],[9,-42],[3,-12],[2,0],[41,-15],[12,-20],[-6,-24],[-35,-29],[-13,-33],[-9,-32],[23,-4],[20,4],[17,-19],[29,-43],[47,-12],[21,-14],[-30,-39],[-17,-22],[7,-29],[8,-1],[15,-1],[10,-25],[-26,-33],[3,-24],[4,-25],[-41,4],[-5,-24],[20,-14],[42,-23],[11,-6],[10,-60],[9,-21],[12,-57],[30,22],[32,38],[24,9],[44,-9],[22,56],[31,27],[13,-22],[-25,-57],[-8,-28],[-6,-54],[-1,-29],[58,-45],[25,12],[13,-19],[-13,-26],[-46,-18],[-24,-8],[8,-38],[41,6],[41,26],[23,14],[-7,-35],[-13,-27],[22,-54],[-23,-23],[-21,2],[-27,11],[-25,-18],[-2,-22],[-1,-10],[24,-18],[23,5],[14,18],[25,0],[35,33],[40,21],[17,-14],[7,-3],[13,4],[22,13],[-4,-64],[18,-36],[16,-3],[12,20],[16,0],[10,-36],[0,-37],[-12,-24],[-20,-6],[-27,-6],[-24,-13],[-10,-23],[4,-5],[41,-11],[27,13],[14,10],[13,23],[44,28],[22,11],[42,-8],[23,-15],[18,-7],[15,22],[17,-3],[-13,-34],[2,-28],[20,-1],[8,-5],[33,-12],[1,-1],[3,-3],[4,-6],[-2,-13],[-3,-17],[8,-10],[17,-1],[20,1],[10,10],[4,4],[2,3],[35,36],[2,2],[6,-8],[16,-23],[14,-21],[26,-25],[14,-15],[3,-12],[0,-1],[6,-28],[-5,-10],[-37,-73],[-13,-26],[14,-17],[13,-4],[20,22],[13,15],[13,0],[4,-1],[37,-46],[5,-6],[3,-4],[3,-11],[18,-55],[8,-10],[55,-7],[69,-3],[3,-7],[66,-117],[8,-10],[7,-25],[10,-75],[-2,-28],[48,-34],[26,9],[39,-29],[6,-5],[58,-43],[27,-21],[3,-4],[9,-14],[20,-11],[21,-7],[16,-19],[20,-78],[48,-45],[14,-13],[39,-36],[7,-10],[19,-155],[-2,-74],[-6,-15],[-33,-32],[-3,-9],[-1,-18],[5,-42],[11,-81],[1,-5],[4,-4],[7,-6],[11,-1],[17,11],[4,0],[13,-1],[3,-5],[6,-9],[7,-9],[4,-25],[-2,-31],[-12,-55],[-2,-30],[-2,-57],[-1,-42],[2,-7],[19,-106],[1,-3],[10,-39],[14,-58],[-1,-11],[0,-2],[-1,-15],[-22,-45],[-9,-8],[-4,0],[-6,1],[-4,0],[-5,9],[-18,30],[-10,0],[-3,1],[-6,0],[-5,-4],[-5,-3],[-1,-33],[-1,-59],[-1,-51],[2,-22],[18,-30],[15,-28],[11,-17],[39,-62],[1,-2],[8,-19],[31,-80],[1,-3],[11,-33],[1,-3],[11,-34],[39,-5],[13,-17],[35,-111],[7,-28],[15,-69],[0,-3],[6,-34],[16,-28],[87,-150],[2,-4],[2,-2],[8,-7],[12,-9],[12,-8],[46,-21],[7,-3],[-8,-5],[-3,-2],[-22,-14],[-6,-5],[-3,-4],[-1,-6],[8,-10],[32,-24],[14,-9],[13,-8],[6,-41],[0,-7],[-6,-103],[13,-68],[18,-90],[1,-2],[1,-2],[4,-5],[61,-51],[14,-1],[9,9],[19,33],[9,-32],[13,-16],[14,-11],[27,-5],[22,-12],[3,-2],[3,-4],[16,-20],[4,-6],[5,-15],[-1,-8],[0,-9],[-2,-27],[-1,-12],[1,-1],[3,-4],[6,-7],[2,-2],[57,-5],[30,-2],[44,-3],[19,-2],[3,0],[2,-2],[10,-16],[-1,-16],[0,-38],[0,-10],[21,-20],[4,-1],[10,-1],[5,-19],[4,-12],[9,-29],[60,-87],[1,-5],[8,-27],[-3,-26],[-4,-51],[-1,-12],[-7,-12],[-12,-21],[-17,-42],[-8,-36],[1,-1],[3,-5],[10,-17],[4,-6],[25,-48],[17,-54],[-1,-4],[0,-14],[-1,-13],[-10,-24],[-5,-43],[20,-29],[40,-29],[8,-5],[3,-4],[6,-7],[2,-3],[2,-16],[2,-8],[-1,-2],[-12,-13],[-36,-44],[-57,-60],[-20,-21],[-32,-16],[-45,-3],[-2,1],[-12,4],[-42,-13],[-38,-36],[5,-38],[3,-27],[1,-12],[6,-53],[10,-31],[3,-9],[-1,-9],[-4,-77],[-5,-12],[-3,-7],[-2,-5],[-1,-1],[-17,-19],[-29,-17],[-48,-18],[-12,-5],[-5,-5],[-2,-3],[-11,-12],[-2,-25],[0,-6],[23,-36],[13,-10],[22,-8],[21,0],[10,0],[17,0],[18,5],[19,4],[21,1],[6,0],[3,0],[3,-5],[8,-13],[2,-4],[0,-7],[0,-37],[5,-12],[15,-19],[69,-65],[24,-23],[5,-9],[14,-29],[6,-14],[6,-34],[0,-7],[0,-8],[-2,-19],[-7,-30],[-8,-19],[-25,-59],[-2,-37],[4,-28],[23,-30],[25,-14],[21,-8],[44,-12],[24,-27],[3,-3],[-2,-25],[-1,-13],[0,-5],[-14,-16],[-4,-4],[-9,-6],[-34,4],[-30,4],[-8,-2],[-21,-20],[-10,-28],[-3,-43],[9,-43],[101,-128],[29,-27],[60,-33],[46,-15],[25,-8],[35,-25],[24,-30],[12,-16],[9,-34],[2,-13],[0,-8],[-1,-27],[-6,-24],[-13,-47],[-14,-52],[-4,-17],[-21,-163],[-1,-53],[5,-18],[6,-29],[10,-34],[7,-23],[15,-19],[4,-5],[57,-73],[8,-8],[21,-15],[54,-21],[73,-9],[27,-8],[35,-28],[54,-64],[26,-36],[2,-5],[17,-35],[48,-101],[23,-35],[6,-11],[7,-12],[36,-72],[4,-7],[16,-70],[1,-4],[12,-50],[15,-40],[21,-39],[4,-6],[7,-11],[13,-18],[26,-37],[20,-31],[13,-21],[43,-46],[20,-21],[20,-19],[10,-7],[4,-3],[32,-23],[57,-27],[5,-2],[21,0],[22,4],[18,3],[45,18],[30,12],[43,19],[36,22],[40,19],[59,43],[44,42],[17,24],[2,2],[10,14],[28,45],[4,7],[19,17],[25,22],[33,20],[20,11],[27,12],[21,10],[54,10],[23,-5],[49,-7],[19,-11],[29,-17],[7,-9],[12,-17],[31,-49],[13,-22],[15,-23],[1,-4],[10,-28],[5,-16],[27,-80],[39,-109],[9,-27],[-14,1],[-134,3],[-25,1],[-53,25],[-48,58],[-48,-7],[-43,-2],[-41,12],[-50,-22],[-30,-3],[-44,-4],[-47,-8],[-62,10],[-32,-37],[-66,-48],[-68,-53],[-38,-33],[-46,-55],[-29,-42],[-35,-82],[-4,-54],[15,-81],[-12,-44],[-74,-29],[-15,-54],[-43,-34],[-34,-30],[-46,-34],[-70,-34],[-50,-8],[-41,-3],[-34,-2],[-36,27],[-25,39],[-27,4],[-35,34],[-51,-6],[-32,-7],[-51,12],[-71,27],[-58,22],[-51,6],[-38,25],[-65,6],[-4,-6],[-9,-15],[-31,-53]],[[84594,29968],[-19,8],[-70,23],[-19,5],[-13,3],[-14,3],[-37,11],[-70,16],[-53,12],[-29,2],[-21,2],[-17,1],[-24,-2],[-61,-5],[-27,0],[-9,0],[-20,5],[-25,6],[-29,8],[-23,9],[-28,20],[-17,15],[-3,3],[-17,14],[-21,33],[-16,22],[-10,15],[-7,7],[-11,13],[-25,24],[-24,18],[-299,169],[-39,20],[-25,12],[-44,9],[-37,2],[-6,-1],[-2,0],[-18,-3],[-28,-9],[-35,-17],[-31,-32],[-23,-43],[-12,-26],[-4,-9],[-11,-17],[-15,-21],[-24,-20],[-40,-25],[-27,-15],[-6,-3],[-35,-19],[-26,-13],[-36,-18],[-76,-39],[-43,-18],[-4,-1],[-33,-9],[-9,-1],[-15,0],[-19,2],[-23,4],[-26,11],[-45,25],[-13,10],[-6,5],[-19,16],[-22,22],[-30,35],[-59,71],[-45,54],[-2,3],[-7,7],[-70,74],[-8,6],[-11,8],[-25,15],[-41,20],[-46,13],[-48,-2],[-19,-6],[-15,-4],[-15,-8],[-23,-15],[-23,-16],[-55,-40],[-43,-34],[-7,-6],[-37,-29],[-89,-70],[-38,-30],[-101,-81],[-37,-29],[-29,-22],[-26,-20],[-50,-36],[-10,-8],[-41,-30],[-22,-14],[-18,-11],[-28,-18],[-37,-22],[-38,-25],[-31,-21],[-41,-21],[-36,-14],[-15,-4],[-26,-6],[-40,-3],[-27,2],[-29,4],[-20,6],[-28,8],[-39,16],[-35,19],[-15,12],[-37,30],[-12,13],[-14,14],[-25,32],[-16,30],[-17,37],[-14,38],[-8,30],[-2,11],[-7,48],[0,27],[6,37],[2,15],[4,30],[0,39],[-3,41],[-1,12],[-9,43],[-12,38],[-16,34],[-5,11],[-20,30],[-39,45],[-27,25],[-28,20],[-10,7],[-20,11],[-54,22],[-35,10],[-70,17],[-39,6],[-65,13],[-55,8],[-5,1],[-60,10],[-47,9],[-5,0],[-35,6],[-57,9],[-66,12],[-36,7],[-26,8],[-21,8],[-30,16],[-33,20],[-24,17],[-19,19],[-34,36],[-13,21],[-13,19],[-21,28],[-25,24],[-22,13],[-19,7],[-12,2],[-15,3],[-27,0],[-29,-3],[-23,-4],[-6,-1],[-32,-8],[-47,-11],[-22,-7],[-49,-16],[-29,-11],[-50,-21],[-96,-40],[-19,-11],[-17,-8],[-40,-22],[-190,-102],[-31,-17],[-296,-176],[-233,-138],[-259,-154],[-48,-28],[-147,-86],[-42,-24],[-261,-155],[-200,-118],[-41,-24],[-24,-13],[-19,-9],[-36,-8],[-24,-2],[-24,7],[-21,9],[-1,1],[-116,79],[-29,22],[-62,46],[-95,74],[-50,46],[-26,25],[-78,72],[-24,20],[-43,38],[-82,53],[-94,40],[-15,6],[-49,19],[-67,18],[-24,5],[-51,13],[-19,2],[-20,3],[-58,7],[-130,17],[-46,4],[-36,3],[-98,13],[-11,2],[-30,9],[-22,6],[-24,11],[-42,17],[-28,15],[-37,20],[-32,20],[-32,26],[-70,57],[-18,15],[-57,44],[-49,33],[-50,28],[-66,32],[-73,30],[-65,26]],[[75397,30870],[-165,53],[-17,6],[-19,6],[-24,5],[-22,5],[-43,11],[-33,7],[-19,4],[-3,1],[-24,4],[-8,-1],[-8,3],[-37,10],[-46,10],[-141,34],[-42,8],[-21,4],[-58,10],[-101,18],[-201,40],[-180,48],[-96,34],[-123,43],[-23,8],[-107,38],[-31,11],[-14,6],[-94,49],[-158,85],[-41,21],[-59,27],[-171,72],[-77,21],[-38,11],[-82,22],[-160,33],[-93,20],[-55,11]],[[55549,34085],[-81,0],[-8,0],[-451,0],[-599,0],[-355,2],[-23,-2],[-25,0],[-53,2],[-23,-2],[-67,0],[-33,2],[-63,-2],[-67,0],[-59,-3],[-73,0],[-52,-2],[-36,-2],[-36,-2],[-8,0],[-16,0],[-46,-1],[-176,-2],[-23,0],[-46,2],[-107,-1],[-87,-2],[-21,0],[-82,-1],[-34,0],[-38,-1],[-21,0],[-42,0],[-41,-1],[-32,-1],[-66,-1],[-43,0],[-31,0],[-42,-1],[-25,0],[-39,-1],[-75,-1],[-152,524],[-68,43],[-40,25],[-8,5],[-65,40],[-115,73],[-38,24],[-29,45],[-36,58],[-54,81],[-51,79],[-16,25],[-13,20],[-17,26],[-27,42],[-28,44],[-87,135],[-30,43],[-86,119],[-18,25],[-40,18],[-86,39],[-86,38],[-26,12],[-28,15],[-59,31],[-47,25],[-41,22],[-42,22],[-35,19],[-42,23],[-35,18],[-49,27],[0,82],[0,76],[0,4],[0,151],[-45,90],[-203,344],[-1,3],[-35,59],[-54,92],[-29,-16],[-136,192],[-104,146],[-100,141],[-35,50],[-1,1],[-17,23],[-70,99],[-167,236],[-107,150],[-15,20],[-95,-80],[-37,-32],[-76,105],[-46,62],[-171,235],[-105,144],[-79,109]],[[69726,33160],[-6,-3],[-19,-8],[-23,-10],[-16,-9],[-2,-1],[-46,-29],[-49,-32],[-35,-17],[-30,-10],[-64,-16],[-45,-12],[-81,-10],[-51,-7],[-61,-14],[-17,-3],[-7,-2],[-46,-8],[-32,-5],[-27,-5],[-18,-4],[-138,-26],[-172,-47],[-9,-3],[-150,-51],[-41,-16],[-101,-40],[-126,-60],[-137,-68],[-15,-8],[-29,-16],[-26,-14],[-6,-3],[-11,-6],[-13,-8],[-67,-46],[-17,-13],[-33,-26],[-51,-43],[-26,-23],[-21,-27],[-10,-23],[-13,-26],[-17,-32],[-21,-41],[-105,-196],[-31,-58],[-56,-104],[-50,-93],[-28,-54],[-45,-89],[-72,-144],[-59,-99],[-88,-124],[-91,-104],[-62,-59],[-92,-81],[-59,-39],[-20,-13],[-89,-47],[-47,-28],[-64,-29],[-23,-11],[-84,-12],[-31,3],[-55,4],[-55,19],[-57,12],[-91,31],[-70,50],[-33,32],[-44,55],[-18,24],[-57,79],[-15,21],[-29,38],[-3,6],[-15,24],[0,1],[-18,35],[-17,37],[-10,21],[-22,38],[-29,32],[-16,14],[-27,14],[-37,4],[-40,-5],[-19,-8],[-22,-14],[-28,-20],[-19,-17],[-21,-10],[-35,-6],[-25,5],[-25,23],[-4,7],[-12,25],[-19,41],[-17,21],[-23,11],[-83,14],[-21,4],[-45,2],[-28,5],[-86,14],[-15,2]],[[65300,31593],[-27,18],[-7,14],[-5,38],[-8,56],[-20,25],[-32,13],[-23,3],[-19,4],[-46,9],[-40,48],[-30,35],[-33,13],[-32,-16],[-91,-106],[-62,-16],[-22,-6],[-21,-17],[-42,-92],[-26,-66],[-3,-35],[0,-11],[15,-35],[17,-38],[4,-25],[-13,-39],[-19,-4],[-15,13],[-30,40],[-20,19],[-30,10],[-21,-4],[-16,-7],[-18,-12],[-46,-42],[-78,-93],[-23,-43],[13,-52],[32,-43],[15,-24],[34,-64],[12,-32],[-1,-16],[-5,-13],[-6,-5],[-30,-5],[-16,-6],[-16,-13],[-8,-26],[4,-33],[0,-24],[-27,-32],[-44,-28],[-20,-47],[-3,-41],[1,-39],[-4,-24],[-10,-27],[-25,-36],[-54,-64],[-40,-40],[-31,-23],[-19,-11],[-16,-7],[-21,-7],[-9,-1],[-8,5],[-5,6],[-13,10],[-28,-2],[-19,1],[-19,10],[-11,34],[-11,34],[-26,25],[-8,25],[-3,34],[-4,17],[-12,43],[-7,21],[-10,17],[-29,13],[-14,-1],[-19,-4],[-12,-8],[-4,-6],[-2,-6],[-1,-18],[-6,-24],[-16,-2],[-21,6],[-19,9],[-21,9],[-23,18],[-19,9],[-22,3],[-4,15],[-24,22],[-5,4],[-9,9],[1,13],[-3,5],[-5,9],[-19,4],[-4,5],[12,59],[-9,40],[-1,8],[4,18],[3,12],[-1,12],[0,31],[0,13],[-8,13],[-6,8],[-28,19],[-20,22],[-4,36],[-8,28],[0,19],[5,12],[1,55],[-19,15],[-16,18],[-6,14],[-8,29],[-28,34],[-26,8],[-10,7],[-12,13],[-43,3],[-7,-2],[-8,-9],[-8,-10],[-11,1],[-38,22],[-4,13],[1,7],[3,13],[0,7],[4,25],[21,14],[32,17],[4,37],[4,17],[13,40],[-1,13],[-5,12],[-19,14],[-17,13],[-9,5],[-14,7],[3,26],[2,9],[-6,9],[-17,2],[-8,-11],[-10,-2],[-6,3],[-11,14],[-8,19],[-4,12],[-8,18],[-17,18],[-17,21],[-20,18],[-10,27],[-5,13],[-1,25],[3,14],[1,35],[3,31],[-1,11],[-2,7],[-19,3],[-8,-16],[-6,-2],[-13,10],[-15,9],[-8,24],[-8,14],[-29,-7],[-9,25],[-11,23],[-11,10],[4,20],[-3,17],[-34,1],[-24,-4],[-28,-3],[-8,1],[-31,-6],[-30,7],[-22,-6],[-26,-20],[-17,-17],[-23,-3],[-9,0],[-34,4],[-39,0],[-21,1],[-12,8],[3,17],[0,9],[-5,9],[-12,18],[-12,-5],[-7,0],[-19,39],[-8,25],[-25,2],[-7,3],[-7,3],[-13,18],[-8,24],[-6,13],[-4,9],[-13,34],[12,29],[6,14],[4,30],[-25,19],[-18,3],[-15,7],[-18,13],[-24,0],[-22,9],[-6,7],[-3,6],[-7,10],[-10,2],[-9,0],[-20,4],[-6,3],[-25,16],[-20,13],[-15,12],[-3,2],[-9,5],[1,4],[2,3],[-7,35],[-2,8],[-12,17],[-14,21],[-3,5],[-10,18],[-17,26],[-5,9],[-4,12],[-4,15],[-1,49],[10,21],[42,37],[27,53],[15,34],[14,19],[19,25],[24,19],[13,5],[9,5],[0,3],[-1,8],[-5,12],[-12,10],[-7,4],[-7,5],[-20,17],[-8,20],[12,28],[6,11],[-4,10],[-24,13],[-38,8],[-22,0],[-22,1],[-47,-13],[-13,1],[-16,8],[-8,10],[-7,9],[-11,22],[-13,23],[-9,16],[-9,10],[-11,4],[-11,-2],[-4,0],[-4,-6],[-4,-17],[5,-26],[7,-23],[1,-43],[-5,-6],[-13,-9],[-9,-3],[-64,-16],[-24,-6],[-29,-17],[-12,-10],[-17,-25],[-11,-9],[-13,-7],[-37,0],[-23,26],[-9,21],[-14,36],[-8,43],[-13,54],[-6,14],[-11,25],[-4,9],[-25,44],[-3,7],[1,29],[15,23],[19,22],[18,19],[6,31],[-13,7],[-1,7],[-8,-3],[-15,-8],[-18,-10],[-16,-5],[-27,-2],[-46,20],[-37,7],[-33,10],[-8,5],[-21,66],[-4,37],[13,40],[9,13],[35,5],[10,6],[-4,24],[-17,15],[-19,10],[-10,17],[-14,37],[-5,27],[-7,31],[-5,15],[-6,20],[-11,51],[-3,13],[-10,27],[-16,15],[-9,6],[-2,12],[0,13],[5,33],[12,24],[1,2],[0,21],[0,10],[-5,11],[-2,4],[-3,2],[-20,14],[-3,2],[-7,0],[-50,-1],[-26,0],[-27,-1],[-1,-1],[-34,-10],[-29,29],[-5,22],[1,25],[6,41],[16,25],[39,19],[4,5],[-4,24],[-29,15],[-19,4],[-30,14],[-19,15],[-20,14],[-35,-7],[-20,-3],[-13,3],[-23,10],[-14,7],[-13,9],[-8,7],[-25,26],[-14,23],[-5,11],[-3,8],[-8,18],[-4,10],[-16,32],[-6,4],[-6,-1],[-14,-10],[-9,2],[-15,15],[-20,39],[-18,25],[-27,29],[-6,17],[6,9],[36,13],[11,6],[-3,25],[-5,7],[-13,20],[-4,17],[-16,8],[-18,-17],[-7,-8],[-27,-29],[-7,-4],[-18,-18],[-14,-9],[-17,1],[-18,5],[-10,3],[-11,42],[-7,3],[-15,-4],[-31,-11],[-26,-8],[-10,2],[-5,13],[10,21],[-4,32],[-10,7],[-14,7],[-14,1],[-15,-8],[-5,-9],[-30,-26],[-19,19],[-8,5],[-43,8],[-5,1],[-16,7],[-24,-4],[-4,-7],[-1,-10],[-6,-24],[-16,-11],[-7,3],[-11,27],[-7,26],[-18,32],[-15,4],[-20,-10],[-24,-28],[-21,-17],[-9,-4],[-17,18],[-10,12]],[[56355,18832],[-131,48],[-62,23],[-42,15],[-246,308],[-142,172],[-30,37],[-406,-5],[-84,-1],[-322,92],[-24,6],[-27,8],[-7,2],[-18,5],[-8,4],[-21,14],[-6,7],[-41,45],[-1,0],[-50,54],[-11,12],[-145,157],[-208,143],[-140,96],[-36,24],[-99,-20],[-6,-2],[-11,-2],[-66,-12],[-59,-13],[-20,-4],[-9,-2],[-75,22],[-30,9],[-60,17],[-21,6],[-16,5],[-61,18],[-19,6],[-72,20],[-42,15],[-316,93],[-39,11],[-190,57],[-20,6],[-93,27],[-86,25],[-42,13],[-142,42],[-490,15],[-28,1],[-87,3],[-102,3],[-117,4],[-43,1],[-154,7],[-20,12],[-70,46],[-6,3],[-10,7],[-148,95],[-24,15],[-167,105],[-15,10],[-55,36],[-22,14],[-21,13],[-104,67],[36,184],[16,82],[62,319],[14,71],[8,40],[1,3],[12,62],[5,24],[9,49],[32,161],[1,6],[26,123],[12,51],[12,65],[-21,25],[-7,11],[-32,58],[-19,34],[-36,66],[-12,22],[-12,22],[-33,65],[-40,72],[-41,77],[-17,32],[-33,63],[-9,16],[-14,27],[-40,73],[-8,15],[-17,31],[-13,24],[-22,39],[-101,185],[-13,41],[-13,50],[-10,37],[-27,102],[-1,4],[-7,29],[-24,90],[-26,100],[-33,127],[-7,24],[-17,67],[-24,39],[-23,40],[-13,19],[-28,27],[-25,23],[-348,328],[-38,36],[-77,72],[-69,65],[-42,39],[-151,142],[-175,165],[-33,31],[-2,2],[-16,15],[-17,16],[-66,60],[-31,30],[0,9],[0,34],[0,153]],[[49233,25105],[119,11],[34,3],[32,3],[179,16],[68,6],[69,6],[86,8],[91,8],[14,2],[34,3],[37,3],[71,7],[3,0],[85,8],[130,11],[43,4],[23,2],[2,1],[260,24],[91,8],[26,2],[84,8],[131,12],[134,12],[21,6],[68,6],[46,4],[35,2],[65,6],[143,13],[63,6],[76,6],[251,24],[85,8],[76,7],[90,8],[45,5],[100,8],[149,13],[34,3],[61,6],[122,11],[67,5],[69,6],[65,6],[117,11],[116,10],[65,6],[75,6],[19,2],[14,1],[35,3],[5,1],[102,9],[25,2]],[[53383,25483],[3,-27],[5,-25],[9,-25],[26,-39],[11,-21],[4,-25],[11,-27],[6,-23],[7,-36],[-7,-47],[-2,-44],[3,-4],[9,-18],[23,-15],[24,14],[25,7],[1,0],[26,-22],[9,-28],[-2,-32],[-35,-25],[-5,-6],[-7,-10],[-3,-4],[4,-10],[7,-16],[18,-20],[24,-38],[11,-28],[8,-23],[10,-25],[16,-34],[18,-26],[35,-54],[30,-44],[0,-1],[1,-1],[17,-16],[23,-13],[22,-6],[20,-8],[19,-12],[29,-18],[20,-29],[11,-20],[2,-14],[5,-28],[1,-4],[-1,-34],[-6,-47],[0,-1],[-11,-38],[-4,-8],[-16,-32],[-1,-3],[-11,-33],[-6,-30],[-3,-28],[6,-35],[4,-19],[1,-18],[0,-7],[3,-3],[12,-17],[24,-25],[26,-14],[25,-19],[15,-21],[12,-24],[37,-37],[18,-10],[19,-11],[20,-9],[12,-5],[10,-5],[25,-4],[10,-3],[13,-3],[20,-11],[10,-6],[10,-6],[23,-26],[39,-58],[45,-69],[34,-70],[16,-39],[6,-27],[-3,-25],[-4,-35],[-4,-36],[-2,-30],[0,-61],[4,-63],[9,-51],[11,-48],[8,-42],[2,-36],[2,-4],[10,-17],[14,-19],[16,-40],[14,-52],[2,-8],[5,-22],[3,-15],[6,-44],[0,-5],[5,-46],[1,-11],[9,-30],[9,-34],[1,-33],[0,-10],[6,-39],[12,-24],[20,-27],[91,-82],[13,-19],[60,-101],[33,-42],[19,-25],[54,-48],[2,-1],[30,-13],[76,-20],[53,-11],[19,-5],[62,-17],[76,-20],[80,-20],[57,-20],[50,-16],[46,-20],[26,-24],[32,-29],[22,-12],[25,-14],[25,-4],[28,2],[41,11],[39,4],[36,1],[45,-7],[21,0],[60,6],[34,-2],[23,-7],[72,-52],[34,-34],[2,-2],[21,-24],[14,-21],[28,-43],[7,-12],[23,-21],[5,-5],[8,-8],[35,-15],[60,-16],[19,-3],[21,3],[20,1],[8,1],[4,-1],[13,-3],[4,-1],[17,-22],[3,-8],[10,-27],[5,-15],[10,-29],[25,-24],[14,-28],[5,-34],[7,-47],[32,9],[2,0],[27,-3],[8,-23],[17,-22],[2,-2],[25,-8],[4,-1],[7,-9],[8,-9],[11,-47],[9,-30],[17,-21],[13,-23],[7,-12],[7,-44],[0,-27],[18,-43],[22,-32],[19,-29],[-3,-26],[-16,-26],[-21,-17],[-7,-26],[-15,-53],[-11,-29],[-17,-35],[-12,-21],[-15,-47],[-9,-44],[-1,-5],[-1,-9],[-3,-15],[-5,-26],[-1,-9],[-3,-13],[8,-23],[21,-16],[12,-37],[13,-41],[9,-13],[9,-13],[-2,-25],[-12,-17],[-5,-6],[-15,-34],[-13,-22],[-16,-31],[-14,-20],[1,-25],[17,-33],[1,-3],[15,-18],[17,-26],[22,-21],[21,-29],[6,-24],[13,-21],[7,-29],[20,-13],[5,-35],[-3,-27],[26,-28],[8,-39],[12,-26],[20,-22],[-8,-23],[-8,-30],[-16,-38],[-3,-47],[-5,-26],[-18,-31],[-19,-54],[2,-30],[3,-25],[-21,-29],[-10,-35],[-1,-29],[-5,-37],[-4,-26],[-24,-16],[-33,-9],[-19,-4],[-21,8],[-28,6],[-20,5],[-22,-5],[-14,-18],[-18,-22],[-2,-2],[-13,-30],[125,-833]],[[51208,27619],[-120,0],[-122,-1],[-417,-3],[-42,-1],[-52,0],[-77,-1],[-80,0],[-38,0],[-176,-2],[-61,0],[-45,0],[-147,-2],[-24,0],[-138,-1],[-68,0],[-22,0],[-143,-1],[-28,0],[-369,-5],[-47,-1],[-51,-1],[-22,-1],[-10,-23],[-2,-45],[-23,-20],[-16,-17],[-18,-25],[-21,-39],[-20,-47],[-9,-50],[-3,-29],[-3,-27],[-3,-30],[-7,-55],[-22,-17],[-41,-10],[-27,2],[-43,7],[-31,-8],[-23,-16],[-30,-33],[-1,-37],[-4,-27],[-5,-26],[-9,-32],[-55,0],[-39,0],[-265,0],[-273,-1],[-73,2],[-137,-1],[-147,-2],[-187,-2],[-29,0],[-97,0],[-24,0],[-26,0],[-58,0],[-20,0],[-95,1],[-23,0],[-34,0],[-146,0],[-25,0],[-20,0],[-2,29],[-17,53],[-32,62],[-45,71],[-38,81],[-6,31],[7,25],[14,50],[10,34],[3,34],[3,28],[3,34],[-5,38],[-3,25],[-20,40],[-29,61],[-16,33],[-13,26],[-16,35],[-15,32],[-12,28],[-46,18],[-44,4],[-20,6],[-10,3],[-18,4],[-20,5],[-35,8],[-46,12],[-6,1],[-59,13],[-46,22],[-67,82],[-49,61],[-70,85],[-40,54],[-5,12],[-12,30],[-17,41],[-8,22],[-8,18],[-51,84],[-36,60],[-48,66],[-40,67],[-12,34],[-2,6],[-14,36],[-15,33],[-3,4],[-10,19],[-9,21],[-2,6],[-11,23],[-21,29],[-1,1],[-1,2],[-19,18],[-1,1],[-3,3],[-17,13],[-25,10],[-7,3],[-29,-6],[-22,-1],[-4,0],[-14,17],[-4,6],[-4,3],[-15,13],[-11,13],[-6,7],[-30,3],[-21,-12],[-2,-2],[-7,-4],[-19,-19],[-19,-1],[-10,0],[-12,-24],[-11,-26],[0,-10],[0,-5],[0,-14],[9,-23],[-29,-22],[-4,-5],[-12,-16],[-24,-3],[-4,-1],[-5,5],[-19,15],[-20,10],[-16,3],[-3,1],[-2,3],[-14,19],[-17,21],[-14,18],[-3,3],[-1,1],[-8,44],[-9,30],[-17,23],[-34,13],[-30,5],[-47,13],[-41,16],[-24,13],[-11,23],[-7,38],[-8,23],[-14,23],[-27,21],[-28,7],[-27,7],[-26,-11],[-23,-28],[-20,-19],[-18,-27],[-21,-5],[-27,1],[-20,-8],[-35,-5],[-30,12],[-92,40],[-19,7],[-21,14],[-23,-2],[-30,19],[-17,19],[-43,19],[-20,-4],[-22,3],[-21,2],[-25,-2],[-23,-13],[-21,-46],[-21,-11],[-27,-19],[-20,0],[-28,5],[-24,1],[-33,-9],[-40,-8],[-41,-8],[-24,-12],[-36,-52],[-23,-30],[-26,-25],[-23,-22],[-24,-9],[-21,-9],[-23,-12],[-19,-19],[-18,-9],[-21,-7],[-26,2],[-23,0],[-18,-9],[-23,-12],[-24,-10],[-6,-37],[-18,-59],[-17,-71],[-29,-128],[101,4],[9,-24],[11,-29],[19,-42],[12,-44],[-65,-7],[-31,-3],[-46,-5],[-44,-4],[-27,-13],[-21,-9],[-21,-11],[-60,-41],[-19,-15],[-19,-16],[-28,-30],[-17,-16],[-23,-23],[-22,-25],[-24,-25],[-16,-16],[-31,-26],[-24,-18],[-18,-14],[-22,-17],[-24,-25],[-20,-15],[-26,-21],[-56,-51],[-57,-51],[-16,-13],[20,-31],[21,-57],[-88,-126],[-40,-58],[-46,-65],[-30,-43],[-50,-72],[-24,-34],[-2,-3],[-11,-17],[-14,-18],[-11,-15],[-3,-4],[-62,-90],[-63,33],[-20,11],[-79,42],[-88,47],[-126,67],[-41,22],[-190,101],[-20,10],[-337,178],[-31,16],[-3,2],[-40,21],[-33,17],[-21,8],[-118,-79],[-18,-12],[-10,-7],[-34,-21],[-207,-127],[-25,43],[-25,46],[-12,21],[-48,87],[-18,31],[-81,139],[-43,1],[-87,3],[-25,0],[-21,1],[-91,3],[-31,0],[-232,4],[-80,2],[-12,0],[-161,4],[-52,0]],[[40061,27971],[19,63],[20,74],[34,118],[7,27],[14,48],[12,41],[11,39],[9,33],[8,26],[11,39],[6,24],[9,29],[19,67],[3,14],[3,12],[10,35],[10,37],[8,27],[13,46],[13,43],[12,40],[7,24],[6,23],[26,90],[11,40],[3,8],[8,28],[9,34],[6,9],[68,105],[16,28],[16,27],[42,72],[4,6],[18,28],[16,25],[19,30],[74,114],[114,180],[26,40],[56,89],[18,15],[12,24],[18,17],[10,22],[12,21],[-16,13],[-23,-11],[-15,30],[-4,27],[-21,8],[-11,23],[-21,33],[-7,30],[-5,27],[-10,33],[11,20],[4,-1],[8,-3],[14,-4],[18,-13],[13,21],[20,15],[10,32],[0,38],[-20,31],[-22,35],[-7,28],[-15,22],[-16,17],[-17,38],[-18,32],[-15,28],[-15,35],[-20,30],[-15,27],[-1,2],[10,36],[-13,26],[-8,25],[-20,11],[-7,23],[-29,6],[-23,23],[16,19],[1,2],[-14,11],[-6,4],[-19,-17],[-30,-19],[-25,-18],[-28,-13],[-30,-18],[-20,-9],[-3,-1],[-32,-17],[-13,-7],[-5,-3],[-23,-11],[-10,2],[-17,3],[-14,-1],[-14,-1],[-7,3],[-18,8],[-3,0],[-17,-3],[-20,-9],[-21,22],[-23,8],[-20,0],[-28,4],[-17,14],[-22,8],[-20,1],[-18,10],[-19,8],[-25,15],[-28,-6],[-19,11],[-1,1],[-16,10],[-7,-38],[14,-22],[-9,-30],[4,-9],[5,-13],[-1,-28],[-21,-16],[-16,-3],[-7,-1],[-21,-12],[-25,-15],[-24,-4],[-23,-15],[-12,-15],[-5,-7],[8,-27],[-20,-19],[-21,16],[-31,3],[-19,9],[-4,1],[-27,3],[-23,-10],[-8,-3],[-14,-4],[-9,1],[-9,2],[-1,0],[-15,19],[-21,4],[-25,2],[-2,0],[-1,2],[-9,20],[-21,14],[-13,7],[-4,3],[-2,4],[-10,24],[-16,13],[-7,6],[-12,22],[0,3],[-1,33],[-8,34],[5,25],[-1,26],[7,23],[7,24],[-4,30],[13,26],[-4,27],[-13,19],[-9,40],[-5,24],[-2,28],[1,30],[0,20],[0,7],[4,12],[4,16],[9,42],[2,17],[3,31],[2,37],[24,16],[16,11],[8,6],[-1,5],[-8,21],[-21,10],[11,28],[18,22],[5,-1],[15,-1],[39,-3],[7,-1],[4,2],[80,30],[54,54],[34,-44],[1,-2],[1,-1],[55,0],[1,0],[19,0],[48,-5],[39,146],[8,27],[45,62],[9,71],[48,11],[125,28],[7,59],[6,41],[-21,39],[22,115],[-32,24],[-41,15],[-38,11],[-49,14],[-34,-5],[-113,-40],[-92,85],[0,1],[-87,163],[-12,22],[19,60],[11,36],[-14,49],[-1,5],[7,96],[-89,23],[-45,11],[-38,10],[5,10],[6,11],[21,15],[25,19],[26,19],[43,33],[26,19],[17,13],[22,15],[25,19],[26,20],[17,13],[133,99],[49,37],[19,14],[22,16],[48,35],[-6,33],[-3,24],[-5,24],[-3,22],[-1,6],[-5,31],[-5,28],[-6,38],[-3,25],[-5,27],[-6,42],[-6,34],[-9,53],[-6,37],[-5,34],[-6,34],[-4,25],[-3,25],[-6,33],[-4,26],[-4,25],[-5,30],[-6,37],[-6,34],[-3,27],[-108,124],[-16,15],[-50,184],[-25,7],[-5,31],[-2,45],[3,40],[19,70],[173,127],[56,122],[-27,5],[-61,152],[128,88],[-8,36],[-46,213],[-84,33],[-113,22],[-57,9],[-36,5],[-166,26],[-15,3],[-6,33],[2,24],[0,4],[-23,12],[-28,12],[-27,15],[-24,6],[-22,-9],[-32,-9],[-17,3],[-4,0],[0,2],[-17,38],[-1,3]],[[44849,38342],[-2,-49],[-3,-76],[54,-88],[118,-190],[61,-36],[9,-11],[63,-73],[150,-7],[55,-34],[208,-252],[54,-66],[-13,-8],[-5,-3],[-23,-6],[90,-86],[55,-54],[15,-15],[133,-128],[34,-111],[63,-25],[49,-20],[10,-35],[46,-157],[-46,-142],[86,-139],[13,-22],[-2,-26],[-4,-41],[42,-50],[61,-35],[24,-57],[-37,-77],[0,-30],[0,-60],[5,-9],[26,-50],[34,-66],[-9,-64],[24,-50],[4,-9],[15,-53],[-5,-59],[-17,-73],[-5,-71],[-46,-78],[18,-47],[-1,-44],[-24,-40],[-12,-8],[-61,-45],[-64,-39],[-49,-6],[-53,-7],[-17,-14],[-18,-14],[-15,-22],[-65,-136],[45,-55],[2,-1],[70,-49],[68,-42],[27,-17],[21,-13],[24,-14],[24,-14],[18,-11],[33,-19],[29,-18],[61,-36],[1,-36],[-18,-38],[-15,-35],[5,-42],[8,-27],[12,-33],[6,-29],[17,-63],[1,-81],[-10,-37],[-10,-43],[0,-42],[-13,-22],[-16,-17],[-8,-44],[33,-152],[14,-27],[8,-33],[5,-21],[43,-173],[22,-87],[19,-35],[17,-33],[148,-212],[33,-47],[110,-174],[110,-124],[142,-161],[16,-18],[13,-28],[30,-64],[-17,-96],[-43,-62],[-5,-76],[15,-86],[44,-75],[180,-169],[57,-60],[46,-33],[57,-39],[63,-35],[30,-13],[51,-22],[59,-4],[22,-1],[64,3],[98,-25],[81,-21],[58,-7],[23,7],[37,0],[28,-2],[39,1],[29,9],[32,13],[33,7],[24,2],[65,-7],[106,-2],[73,8],[56,-4],[71,-9],[45,-8],[87,-30],[69,-22],[55,-7],[48,-11],[47,-17],[50,-22],[43,-24],[79,-43],[49,-21],[42,-21],[62,-47],[0,-51],[-15,-44],[-21,-26],[-38,-9],[-23,-35],[-18,-30],[-10,-34],[10,-31],[-13,-24],[-18,-18],[-33,-45],[-20,-18],[-41,-77],[-7,-44],[-18,-37],[-7,-28],[-6,-26],[19,-14],[12,-22],[-39,-61],[11,-36],[11,-28],[18,-21],[24,-21],[31,-32],[40,-46],[44,-25],[36,-10],[35,-21],[30,-31],[1,-1],[37,-43],[14,-19],[11,-21],[10,-27],[1,-38],[-10,-35],[-9,-41],[2,-25],[5,-24],[5,-26],[1,-7],[5,-31],[4,-28],[14,-20],[17,-23],[0,-26],[4,-36],[8,-49],[6,-24],[15,-27],[-1,-47],[-10,-25],[-1,-35],[19,-66],[-9,-46],[1,-77],[1,-28],[2,-95],[0,-33],[-15,-18],[-22,-18],[-22,-35],[-19,-50],[-2,-26],[1,-31],[28,-31],[20,-10],[30,-10],[18,-17],[16,-37],[10,-35],[22,-29],[29,-17],[27,-50],[8,-38],[-14,-54],[-19,-75],[-16,-22],[-12,-24],[-60,-54],[6,-26],[-16,-18],[-9,-29],[-42,-42],[-19,-33],[-3,-42],[4,-24],[10,-29],[10,-27],[17,-25],[14,-22],[16,-19],[18,-18],[2,-3],[21,-30],[23,-25],[2,-2],[12,-21],[60,-21],[72,0],[122,-1],[50,0],[476,-2],[129,0],[195,-1],[278,0],[42,0],[-13,-51],[21,-21],[25,-7],[30,-12],[19,-3],[18,-10],[62,-22],[27,-16],[27,-24],[14,-62],[3,-45],[6,-35],[7,-32],[6,-26],[6,-24],[16,-23],[17,-16],[14,-24],[15,-19],[28,-35],[7,-25],[12,-31],[11,-50],[7,-32],[5,-26],[7,-42],[6,-74],[-2,-43],[-1,-32],[-16,-25],[-26,-11],[-17,-25],[1,-51],[31,-31],[15,-19],[16,-39]],[[57868,34045],[11,-22],[10,-22],[9,-22],[-11,-40],[-30,-114],[-9,-30],[-43,-144],[-86,-286],[-21,-72],[-23,-77],[-12,-36],[-22,-74],[-21,-70],[-88,-282],[-16,-54],[-32,-117],[-13,-47],[-11,-36],[-18,-63],[-11,-39],[-8,-26],[-7,-26],[-1,-4],[-9,-26],[-11,-35],[-10,-34],[-29,-97],[-17,-56],[-1,-6],[-12,-41],[-24,-81],[-9,-33],[-10,-33],[-10,-33],[-16,-55],[-10,-35],[-42,-146],[-3,-10],[-22,-74],[-8,-27],[-14,-48],[0,-3],[-23,-76],[0,-2],[-7,-24],[1,-58],[0,-3],[-46,-160],[-8,-25],[-128,-444],[-12,-43],[-8,-56],[-7,-51],[-48,-355],[-8,-59],[-69,6],[-33,-2],[-162,-134],[-49,-41],[-6,-98],[-1,-184],[0,-13],[1,-16],[-1,-72],[0,-18],[1,-45],[1,-146],[1,-108],[1,-106],[1,-75],[0,-80],[0,-1],[0,-35],[2,-87],[1,-28],[-32,-1],[-51,0],[-21,0],[-53,-2],[-163,-2],[-1,-60],[1,-95],[0,-83],[0,-92],[2,-85],[2,-161],[0,-5],[1,-68],[1,-36],[1,-162],[0,-7],[0,-44],[0,-5],[2,-214]],[[56241,27708],[-69,-27],[-109,-44],[-18,-7],[-51,-19],[-18,-8],[-102,-41],[-22,-9],[-91,-37],[-76,-30],[-5,-2],[-22,-8],[-23,-10],[-50,-20],[-28,-11],[-25,-10],[-330,-131],[-34,-13],[-33,-13],[-94,-38],[-40,-16],[-51,-21],[-37,-14],[-27,-12],[-133,-53],[-113,-46],[-122,-49],[-171,-68],[-153,-62],[-172,-69],[-21,-8],[-21,-9],[-6,-3]],[[53974,26800],[23,54],[4,13],[6,17],[13,46],[4,27],[-3,141],[0,6],[-1,6],[-5,25],[-24,40],[-2,3],[-10,10],[-26,26],[-9,3],[-19,6],[-21,-1],[-11,-1],[-2,0],[-13,-8],[-9,-6],[-4,-2],[-19,-21],[-12,-13],[-3,-3],[-36,-43],[-4,-6],[-12,-17],[-31,-65],[-28,-58],[-6,-18],[-5,-12],[-9,-22],[-4,-4],[-13,-15],[-8,-4],[-6,-2],[-8,-4],[-23,5],[-4,3],[-38,26],[-12,9],[-44,41],[-8,7],[-40,37],[-11,10],[-7,8],[-20,21],[-8,8],[-51,52],[-16,17],[-8,10],[-2,1],[-22,34],[-6,10],[-26,38],[-12,26],[-22,45],[-20,37],[-18,31],[-17,24],[-10,48],[2,33],[0,5],[-11,41],[-15,18],[-18,22],[-14,16],[-12,20],[0,1],[-1,0],[-16,13],[-21,16],[-73,-1],[-35,0],[-12,0],[-14,0],[-1,0],[-280,-1],[-422,-2],[-305,-1],[-124,0],[-20,-3],[-16,21],[-20,20],[-41,20],[-25,0],[-29,-2],[-53,-17],[-36,-5],[-31,-2],[-27,-8],[-23,5],[-36,5],[-11,-24],[-21,-35],[-32,-23],[-37,-15],[-35,-15],[-21,-4],[-21,-1],[-19,-6],[-21,-13],[-21,-6],[-14,22],[-13,20],[-7,28],[-6,31]],[[17466,36034],[0,-109],[0,-18],[0,-31],[0,-60],[0,-160],[1,-26],[0,-41],[0,-118],[58,-1],[55,0],[48,0],[50,0],[10,0],[193,-2],[192,-3],[8,0],[60,-1],[30,0],[13,0],[16,-1],[32,0],[7,0],[40,0],[7,0],[3,-1],[11,0],[8,0],[33,0],[22,0],[11,0],[85,-1],[69,-1],[153,-1],[33,0],[58,-1],[25,1],[31,0],[151,-1],[88,0],[159,-1],[67,-1],[50,0],[41,0],[0,-94],[0,-15],[0,-16],[-1,-69],[-1,-31],[-1,-37],[0,-9],[0,-17],[-1,-37],[-1,-61],[-1,-55],[0,-12],[0,-32],[0,-24],[1,-125],[0,-5],[1,-71],[1,-91],[1,-90],[0,-70],[1,-25],[0,-40],[1,-37],[-2,-181],[1,-106],[0,-91],[0,-25],[-1,-30],[-1,-28],[0,-15],[0,-32],[-1,-60],[1,-102],[0,-26],[0,-53],[1,-19],[2,-68],[1,-48],[0,-12],[0,-223],[0,-31],[0,-33],[0,-28],[-1,-42],[0,-79],[0,-42],[1,-44],[2,-29],[1,-37],[0,-7],[1,-132],[0,-11],[0,-31],[0,-158],[0,-18],[77,0],[82,0],[119,1],[42,0],[28,0],[57,0],[40,0],[84,1],[16,1],[25,0],[46,0],[31,-1],[2,-18],[0,-30],[0,-50],[-2,-142],[1,-12],[0,-8],[0,-41],[0,-57],[0,-90],[1,-58],[1,-49],[0,-4],[0,-19],[1,-25],[0,-44],[0,-7],[0,-9],[2,-51],[0,-20],[-1,-18],[2,-17],[0,-19],[0,-50],[0,-142],[0,-98],[2,-123],[2,-207],[0,-16],[0,-362],[0,-184],[0,-134],[0,-53],[0,-149],[0,-128],[0,-102],[98,-1],[104,-2],[37,0],[23,0],[65,-1],[319,-5],[27,0],[54,-1],[12,0],[33,0],[46,-1],[44,-1],[90,-1],[107,-1],[150,-2],[82,-1],[2,0],[73,0],[51,0],[95,0],[19,0],[37,0],[7,0],[18,0],[31,0],[43,0],[75,1],[7,-1],[25,0],[49,1],[30,0],[28,0],[41,0],[32,0],[12,1],[6,-1],[-1,-3],[-1,-12],[-2,-79],[-1,-24],[0,-23],[-11,-14],[-13,-16],[-9,-22],[1,-6],[1,-18],[0,-3],[3,-3],[10,-9],[1,-1],[18,-3],[2,0],[4,-1],[33,-4],[1,-1],[36,-49],[12,-26],[-1,-28],[-5,-18],[-4,-10],[-16,-16],[-37,-39],[-4,-4],[-2,-1],[-135,-124],[-12,-12],[-98,-77],[-2,-2],[-15,-44],[-3,-8],[-55,-162],[-1,-6],[0,-4],[0,-2],[7,-145],[16,-38],[13,-16],[30,-16],[53,-21],[11,0],[49,4],[1,-1],[-7,-19],[-14,-34],[3,-5],[10,-14],[6,-13],[15,-47],[0,-4],[0,-1],[-1,-13],[-4,-56],[-11,-17],[-4,-7],[0,-12],[8,-10],[56,-70],[9,-9],[49,-30],[4,1],[1,-1],[2,1],[36,3],[4,1],[-5,-17],[-16,-50],[-5,-83],[-1,-22],[13,-19],[32,-51],[8,-12],[8,-13],[16,-26],[5,-9],[-2,-37],[-35,-3],[-56,0],[-9,0],[-88,0],[-18,0],[-74,1],[-160,-1],[-243,-2],[-178,-1],[-26,0],[-40,-1],[-88,0],[-156,-2],[-78,0],[-3,0],[-91,1],[-206,0],[-120,1],[-27,0],[-31,0],[-97,0],[-108,1],[-127,0],[0,-54],[0,-98],[-1,-165],[0,-65],[0,-53],[-1,-287],[-2,-42],[-2,-37],[3,-269]],[[20046,27124],[-44,-2],[-38,0],[-26,1],[-14,0],[-125,0],[-26,0],[-47,2],[-91,3],[-6,1],[-15,3],[-28,1],[-29,-6],[-45,0],[-32,1],[-57,0],[-21,0],[-55,0],[-59,-1],[-29,0],[-176,-2],[-114,-2],[-68,-1],[-297,-5],[-59,-1],[-56,0],[-41,-1],[-53,1],[-13,-1],[-2,0],[-14,0],[-27,-1],[-21,-7],[-9,-5],[-17,2],[-10,9],[-30,0],[-125,-2],[-53,1],[-31,0],[-37,1],[-41,0],[-43,1],[-81,1],[-37,0],[-79,1],[-111,2],[-96,1],[-1,348],[-110,-3],[-52,-1],[-8,-1],[-29,1],[-125,5],[-208,-10],[-115,-5],[-71,-3],[-44,-1],[-100,1],[-103,5],[-326,-2],[-8,0],[-86,-1],[-248,-3],[-31,0],[-22,0],[-39,0],[-53,0],[-23,-1],[-76,0],[-42,0],[-52,-1],[-214,-1],[-15,0],[-35,-1],[-60,0],[-30,1],[-105,-1],[-109,-1],[-13,0],[-12,0],[-18,0],[-113,0],[-110,0],[-39,0],[-39,0],[-10,0],[-57,1],[-61,1],[-20,1],[-33,0],[-131,2],[-33,1],[-41,0],[-215,4],[-40,1],[-3,0],[-127,0],[-25,1],[-107,0],[-22,1],[-23,0],[-3,0],[-23,0],[-84,1],[-33,0],[-44,0],[-25,0],[-34,1],[-4,0],[-11,0],[-93,0],[-14,0],[-259,-1],[-259,0],[-6,0],[-40,0],[-513,-10],[-23,0],[-59,0],[-989,1],[-476,0],[-75,0],[-74,0],[-3,0],[-4,0],[-29,0],[-116,-3],[-245,0],[-330,0],[-250,-1],[-9,0],[-3,0],[-18,0],[-22,0],[-42,0],[-24,0],[-23,0],[-21,2],[-8,0],[-42,0],[-273,2],[-151,1],[-179,2],[-35,0],[-47,0],[-43,0],[-68,1],[-78,0],[-24,0],[-12,1],[-3,-1],[-4,0],[-32,0],[-203,2],[-64,0],[-48,1],[-27,0],[-29,0],[-29,0],[-13,0],[-136,0],[-166,0],[-301,0],[-1,0],[-126,0],[-34,0],[-160,0],[-48,0],[-48,0],[-51,0],[-20,0],[-7,0],[-32,0],[-7,0],[-24,0],[-7,0],[-66,0],[-39,0],[-17,0],[-107,0],[-7,0],[-52,0],[-41,0],[-117,1],[-76,0],[-128,-1],[-8,-7],[-9,-8]],[[6159,27441],[27,56],[2,15],[19,46],[12,46],[6,123],[4,10],[23,54],[58,-4],[26,-131],[8,-62],[10,-70],[103,-28],[60,25],[37,52],[29,40],[-4,66],[-5,85],[-1,26],[-4,60],[-115,3],[-139,3],[-47,1],[-1,14],[0,6],[-84,95],[-70,107],[-166,128],[-24,86],[58,74],[17,-22],[112,-146],[0,6],[21,39],[11,19],[1,68],[-10,40],[-17,69],[-1,3],[1,52],[6,9],[26,27],[73,57],[54,57],[21,55],[12,62],[13,31],[17,42],[5,5],[19,20],[7,8],[28,8],[50,-1],[40,11],[25,27],[15,34],[1,40],[0,9],[-5,19],[-2,2],[-39,51],[-35,20],[-14,16],[0,1],[-4,25],[-1,5],[6,7],[5,6],[9,11],[11,6],[73,1],[22,21],[3,3],[3,9],[0,10],[0,28],[-1,24],[-10,33],[-9,28],[-2,7],[0,11],[-2,28],[0,1],[2,65],[7,64],[6,43],[0,4],[9,15],[14,12],[34,-1],[29,-32],[13,-24],[1,-1],[2,-2],[14,-17],[11,-6],[34,-1],[14,15],[14,15],[43,79],[11,20],[6,20],[-18,6],[-21,-2],[-12,-4],[-8,-3],[-22,2],[-10,8],[-6,7],[-8,14],[-4,16],[-3,16],[-3,13],[-3,14],[-4,18],[-5,21],[-3,10],[-8,24],[-8,24],[-8,62],[-12,23],[-18,14],[-22,2],[-23,-7],[-18,-12],[-7,-6],[-8,-11],[-7,-12],[-16,-28],[-15,-17],[-12,-11],[-10,-8],[-10,-9],[-19,-16],[-37,-20],[-20,2],[7,26],[19,17],[18,14],[15,18],[4,30],[1,13],[-4,22],[-2,8],[-5,15],[-5,22],[-3,24],[0,26],[0,4],[3,25],[10,22],[12,22],[19,18],[20,18],[21,24],[8,67],[12,28],[17,15],[-15,7],[-6,5],[-10,16],[-4,11],[-5,21],[-1,7],[-2,19],[0,9],[0,16],[6,30],[5,10],[12,17],[14,16],[16,19],[2,9],[4,15],[-2,1],[-5,3],[-11,4],[-6,-4],[-12,-10],[-6,-11],[-9,-10],[-10,-5],[-8,-2],[-13,3],[-9,6],[-9,10],[-14,20],[-9,21],[-3,13],[0,12],[3,18],[6,17],[6,15],[3,12],[-2,13],[-10,1],[-5,-4],[-12,-17],[-5,-10],[-10,-3],[-13,0],[-12,2],[-9,3],[-17,20],[2,10],[4,13],[3,16],[2,8],[4,18],[2,12],[1,12],[0,18],[2,7],[8,14],[5,7],[-3,8],[-2,12],[-20,1],[-17,-13],[-19,11],[-9,18],[-2,9],[-4,25],[3,24],[1,10],[0,19],[0,14],[1,12],[10,8],[7,4],[4,-10],[5,-7],[16,-15],[18,-5],[8,0],[17,3],[21,5],[26,11],[3,28],[-10,24],[-23,6],[-20,21],[1,30],[-11,21],[-25,-3],[-16,-18],[-13,-22],[-13,-22],[-7,-14],[-3,-8],[-6,-1],[-21,-4],[-14,-2],[-13,-2],[-15,-3],[-17,7],[-9,15],[3,23],[6,13],[6,11],[9,16],[8,8],[10,6],[12,1],[-8,26],[-18,18],[-17,14],[-13,27],[8,21],[6,9],[20,17],[5,5],[12,-9],[7,23],[-3,29],[4,26],[10,62],[1,14],[-11,4],[-6,4],[-17,-22],[-14,-33],[-9,-4],[-13,-6],[-15,12],[-15,18],[-16,13],[-18,27],[4,28],[18,12],[9,2],[36,2],[11,26],[-7,29],[-26,19],[-7,23],[20,11],[-11,0],[-9,-2],[-10,-1],[1,40],[1,28],[7,21],[6,10],[10,15],[8,8],[17,10],[20,6],[21,-17],[14,-25],[18,-15],[16,15],[7,27],[1,12],[13,26],[4,5],[-1,12],[-1,12],[-16,11],[-22,15],[-6,20],[3,12],[6,14],[5,6],[17,19],[6,4],[17,6],[10,15],[4,7],[-12,7],[-10,5],[-13,6],[-7,0],[-16,7],[0,12],[10,13],[14,16],[4,8],[6,23],[9,38],[-4,25],[7,12],[9,2],[6,-8],[4,-5],[-8,-14],[8,-13],[13,-6],[11,3],[11,1],[17,-2],[11,-2],[19,-4],[6,4],[11,8],[-10,22],[-13,20],[-10,17],[-12,-7],[-7,-2],[-20,3],[-13,21],[-7,12],[-2,24],[5,11],[14,13],[26,3],[7,-3],[14,-10],[6,-4],[10,-8],[14,-7],[15,-1],[7,3],[1,20],[0,11],[-7,18],[-13,27],[-9,15],[-6,8],[-9,11],[-14,11],[-14,25],[-22,-4],[-21,4],[16,49],[20,5],[16,1],[-24,28],[-19,3],[-4,28],[19,5],[3,8],[9,5],[-4,11],[-6,10],[-3,6],[-6,8],[28,33],[21,32],[2,28],[-1,28],[6,28],[11,20],[25,34],[11,30],[-19,13],[-23,-11],[-37,18],[-7,27],[-3,9],[-9,21],[24,14],[4,12],[7,6],[-4,7],[-3,7],[-19,-8],[-21,-3],[-6,25],[15,19],[36,7],[6,14],[-44,-1],[-10,24],[10,38],[7,32],[-4,3],[-19,3],[-12,4],[-9,9],[-2,19],[1,9],[21,0],[17,-15],[23,4],[14,27],[5,35],[8,23],[4,31],[22,25],[3,32],[-26,17],[-37,-1],[-32,15],[-5,32],[6,25],[22,16],[24,6],[8,11],[8,4],[10,20],[10,47],[2,13],[0,18],[0,11],[-10,28],[-17,22],[-18,14],[-26,8],[-22,-20],[-3,-60],[-9,-25],[-22,-15],[-38,17],[-4,7],[9,38],[8,15],[9,21],[-6,10],[1,8],[-36,50],[-17,7],[-1,-13],[4,-33],[-23,0],[-18,15],[-14,34],[-8,19],[-7,3],[-5,8],[-10,-2],[-22,-7],[-17,-14],[-39,-8],[-13,7],[-8,55],[-16,18],[-25,-10],[-14,-20],[-11,-2],[-8,-5],[-19,18],[-9,10],[-9,6],[-28,7],[-19,15],[-25,-5],[-25,13],[-7,2],[-20,11],[26,26],[8,18],[-25,6],[-24,14],[-17,29],[-23,-3],[-22,-39],[-15,-18],[-27,13],[-14,45],[-3,9],[-4,21],[4,18],[21,7],[29,11],[10,23],[-19,18],[-16,14],[-30,51],[-7,10],[-19,17],[-24,0],[-17,8],[16,53],[3,26],[-6,6],[-12,8],[-11,2],[-26,3],[-5,15],[4,15],[18,14],[8,5],[2,14],[-37,20],[-17,21],[7,33],[-17,16],[-26,15],[-7,14],[-5,6],[-17,18],[-30,30],[1,26],[20,8],[27,4],[14,4],[7,5],[13,17],[-2,13],[1,11],[-23,-8],[-28,-19],[-21,16],[4,41],[-13,32],[-25,10],[-22,-20],[-13,-23],[-22,-14],[-34,-10],[-16,0],[-11,5],[-21,28],[-3,6],[-4,8],[-13,24],[5,25],[18,9],[6,5],[18,23],[21,28],[19,15],[14,14],[27,32],[6,10],[-9,5],[-1,9],[-11,-3],[-15,-6],[-14,-3],[-28,6],[-7,3],[-16,16],[-27,56],[-7,23],[14,27],[19,-6],[29,-26],[25,-26],[14,-3],[10,5],[7,4],[-8,23],[-13,26],[-11,14],[-17,15],[-17,16],[12,7],[9,9],[15,21],[23,28],[24,12],[8,7],[8,10],[-9,9],[0,11],[-28,16],[-21,9],[-15,10],[-8,20],[17,20],[45,5],[-2,11],[-3,23],[-19,14],[-15,16],[-7,25],[0,36],[13,28],[21,-5],[3,-26],[22,-61],[28,-13],[6,2],[2,10],[7,12],[-2,11],[1,22],[6,22],[30,11],[36,-9],[19,5],[-3,10],[6,5],[-14,21],[-19,17],[-42,41],[-10,7],[-34,14],[-15,16],[-9,22],[-4,15],[-8,45],[5,18],[11,11],[5,5],[6,-12],[4,-13],[5,-18],[7,-19],[13,-25],[12,-6],[6,1],[8,4],[3,27],[-13,43],[2,28],[4,38],[1,30],[-3,57],[-1,90],[-6,33],[-14,28],[-19,21],[-32,37],[13,17],[20,-4],[20,-5],[27,17],[1,32],[-22,9],[-40,-8],[-12,23],[4,42],[12,37],[18,20],[34,9],[33,18],[20,29],[-1,41],[17,29],[23,5],[30,8],[7,0],[12,1],[35,-7],[8,27],[5,31],[21,9],[22,11],[16,18],[3,19],[3,24]],[[27023,37944],[3,-8],[4,-9],[3,-58],[4,-65],[5,-8],[6,-4],[47,-9],[27,-31],[2,-2],[-1,0],[1,-9],[0,-55],[3,-16],[4,-23],[8,-44],[1,-7],[1,-6],[31,-28],[0,-1],[26,-90],[20,-72],[4,-14],[12,-42],[2,-5],[18,-36],[3,-8],[19,-16],[42,-31],[54,-57],[26,-27],[52,-56],[24,-67],[63,-111],[42,-74],[-13,-18],[-3,-8],[0,-9],[2,-6],[7,-12],[1,-1],[0,-1],[31,-51],[20,-31],[1,-1],[23,-18],[23,-15],[5,-15],[0,-1],[2,-42],[3,-42],[3,-48],[-1,-5],[1,-3],[1,-18],[7,-13],[42,-44],[1,0],[2,-13],[-6,-10],[-84,-68],[-5,-6],[-2,-1],[-3,-4],[-49,-80],[-6,-10],[-14,-15],[-14,-14],[-2,-12],[-2,-9],[-7,-49],[0,-1],[5,-29],[4,-30],[7,-47],[14,-59],[8,-50],[-16,-16],[-35,-7],[-3,-4],[-11,-102],[8,-9],[11,-2],[1,0],[21,4],[4,-2],[5,-4],[2,-9],[0,-9],[-3,-12],[-12,-56],[-19,-20],[-16,15],[-7,4],[-3,0],[-3,-4],[-1,-19],[0,-1],[5,-22],[1,-10],[-1,-1],[-1,-6],[-9,-17],[-1,-3],[-1,0],[-3,-8],[-7,-6],[-12,-5],[-1,0],[-29,-2],[-3,1],[-10,2],[-7,4],[-2,1],[-1,2],[-9,14],[-5,11],[-1,1],[-8,24],[-10,9],[-11,5],[-12,0],[-13,-6],[-4,-4],[-35,-67],[-4,-7],[-74,-70],[-3,-2],[-10,-2],[-59,-2],[-1,0],[-11,4],[-12,3],[-3,-2],[-50,-74],[-14,-44],[-2,-5],[-2,-27],[0,-14],[-1,-13],[-2,-42],[-3,-53],[-1,-8],[2,-3],[24,-30],[14,-17],[11,-14],[1,1],[6,-6],[7,0],[6,6],[4,11],[1,2],[9,1],[3,-5],[12,-41],[0,-1],[0,-1],[0,-9],[-3,-10],[-33,-44],[-4,-5],[-1,-1],[-23,-12],[-5,-7],[-13,-27],[0,-10],[12,-38],[3,-12],[20,-69],[1,-1],[3,-7],[1,-2],[-21,-135],[-1,-14],[6,-10],[10,-5],[19,-27],[1,0],[2,-6],[13,-41],[5,-59],[44,-44],[2,-3],[10,-7],[32,-24],[9,-11],[11,-21],[18,-96],[0,-42],[0,-1],[-8,-69],[0,-1],[0,-1],[-4,-22],[-22,-18],[-7,-6],[-38,9],[-47,-51],[-2,-2],[-3,-4],[-8,-16],[-1,-4],[-27,-100],[0,-4],[3,-4],[55,-1],[7,5],[0,26],[3,2],[7,2],[9,-5],[5,-9],[0,-1],[2,-18],[-5,-22],[-24,-50],[-5,-4],[-10,-1],[-36,16],[-5,7],[0,2],[-9,18],[-1,2],[-11,6],[-6,-2],[-1,-4],[-3,-41],[-2,-16],[-11,-19],[-6,-3],[-27,-4],[-11,-2],[-9,-6],[-5,-7],[-1,-14],[3,-54]],[[27019,33865],[0,-1],[0,1]],[[27019,33865],[78,-21],[49,-51],[31,-33],[2,-2],[2,-37],[-13,-41],[-2,-4],[-27,-82],[-31,-80],[-1,0],[0,-1],[0,-57],[2,-5],[14,-32],[1,-1],[5,-3],[52,-72],[4,-18],[0,-1],[0,-23],[-25,-93],[-1,-4],[-2,-5],[-3,-8],[-13,-13],[-21,-13],[14,-23],[6,-12],[43,-75],[6,-16],[16,-41],[1,-69],[-1,-11],[-10,-28],[-10,-12],[-12,0],[-27,-31],[13,-59],[1,-2],[1,-5],[15,-66],[8,-206],[0,-1],[-2,-10],[-7,-6],[-21,-8],[-18,3],[-21,10],[-13,6],[19,-101],[-1,-5],[2,0],[2,-11],[45,-98],[-24,-79],[-5,-11],[1,-9],[0,-15],[0,-1],[3,-8],[10,-10],[17,-20],[6,-7],[28,-37],[1,-32],[1,-13],[-2,-11],[-32,-45],[0,-1],[-48,-155],[-1,-18],[2,-6],[7,-7],[64,-57],[24,-16],[1,0],[33,-17],[4,-1],[18,-4],[8,-6],[7,-2],[36,-13],[10,-5],[7,-6],[5,-12],[35,-132],[2,-12],[-7,-14],[-1,-1],[-9,-7],[-13,-1],[-1,0],[-11,2],[-12,0],[-4,-7],[0,-9],[24,-44],[0,-1],[47,-43],[7,-4],[18,-2],[1,0],[75,-39],[10,-13],[-3,-22],[-4,-24],[4,-4],[3,-4],[4,-5],[50,-35],[5,-4],[5,-3],[28,-14],[5,-3],[12,-1],[2,0],[61,6],[6,1],[2,2],[4,4],[0,10],[1,12],[8,8],[11,0],[53,-11],[127,-80],[2,-2],[2,-1],[11,-12],[4,-3],[10,-11],[18,-19],[17,-19],[-1,-8],[0,-2],[0,-8],[-8,-9],[-4,-3],[-2,-3],[-17,3],[-8,1],[-46,51],[-17,10],[-8,3],[-25,-2],[-14,-14],[-32,-104],[-13,-41],[49,-47],[2,-32],[2,-17],[3,-4],[-1,-20],[0,-14],[0,-12],[-1,-2],[-8,-16],[-6,-6],[-12,-12],[-12,-27],[0,-5],[-1,-38],[8,-18],[21,-45],[-6,-21],[-10,-37],[-2,-5],[-7,-16],[-13,-13],[-2,-2],[-17,-9],[-6,1],[-33,1],[-85,22],[-20,-1],[-28,0],[-7,-8],[-7,-7],[-59,-81],[-15,-20],[-5,1],[-26,8],[-26,11],[-30,-17],[-23,-17],[-33,-1],[-16,14],[-24,28],[-17,-5],[-6,-2],[-8,-33],[23,-36],[29,-18],[69,-20],[18,-17],[3,-17],[0,-24],[-6,-19],[-36,-4],[-26,-11],[-8,-29],[7,-29],[38,-15],[32,-9],[19,-12],[13,-21],[16,-31],[10,-18],[5,-18],[1,-3],[0,-1],[5,-17],[-2,-20],[-9,-18],[-17,-18],[-10,-5],[-1,0],[-2,-1],[-28,-14],[-7,-3],[-16,-17],[-5,-4],[-6,-18],[-3,-52],[-2,-19],[-6,-13],[-23,-46],[-4,-7],[-23,-24],[-17,-9],[-11,-2],[-14,1],[-61,5],[-2,-2],[-3,-3],[-15,-13],[-52,-114],[-8,-16],[-12,-28],[-11,-37],[-2,-10],[-4,-14],[-18,-61],[-5,-60],[11,-26],[35,-1],[18,8],[19,15],[23,5],[24,-17],[-4,-28],[-8,-37],[-2,-40],[-18,-23],[-34,-15],[-29,4],[-26,0],[-14,-25],[14,-52],[19,-20],[36,-7],[29,-11],[20,-28],[-5,-34],[-44,-20],[-15,-15],[20,-133],[1,-4],[1,-6],[6,-41],[1,-2],[5,-9],[6,-11],[20,-34],[38,-39],[1,-1],[4,-11],[17,-20],[7,-8],[1,-2],[13,-15],[4,-11],[0,-1],[1,-4],[-1,-24],[-4,-5],[-16,-17],[-1,-1],[-19,-22],[-3,-3],[-6,-12],[0,-13],[-1,-3],[0,-9],[28,-38],[4,-6],[3,-5],[6,-14],[9,-22],[0,-12],[-1,-16],[0,-3],[-4,-5],[-12,-17],[-3,-3],[-4,-5],[-48,2],[-8,1],[-18,-14],[-13,-10],[-26,-9]],[[27147,28438],[-11,2],[-34,-1],[-25,-31],[-4,-21],[-10,-60],[14,-28],[31,-11],[22,-23],[-11,-23],[-25,-4],[-25,13],[-38,13],[-34,-20],[-1,-28],[49,-61],[4,-5],[-4,-40],[-6,-9],[-14,-18],[-4,-5],[-80,-97],[-25,-28],[-8,-9],[-2,-2],[-3,0],[-26,-1],[-10,0],[-37,44],[-20,10],[-19,1],[-17,-8],[-32,-30],[-16,1],[-25,1],[-22,10],[-22,22],[-8,19],[0,12],[-3,44],[-11,31],[-10,13],[-2,0],[-26,1],[-17,-18],[-17,-30],[-7,-12],[-3,-10],[-12,-33],[-12,-23],[-19,-42],[-20,-41],[-11,-13],[-15,-17],[-74,0],[-14,5],[-34,12],[-38,20],[-8,1],[-63,2],[-5,0],[-3,-3],[-36,-39],[-102,-107],[-8,-26],[-7,-25],[-30,-31],[-39,-41],[-146,8],[-35,2],[-35,-36],[-1,-52],[-7,-31],[-3,-4],[-31,-34],[-17,-5],[-62,-20],[-45,-11],[-46,2],[-1,0],[-113,-80],[-7,-5],[-2,0],[-137,6],[-39,-5],[-9,-5],[-30,-17],[-6,-4],[-4,-4],[-14,-15],[-26,-26],[-53,-100],[-92,-95],[-5,-3],[-31,-13]],[[25006,27094],[-8,0],[-17,-1],[-78,19],[-36,11],[-89,18],[-17,1],[-35,-9],[-33,3],[-55,6],[-20,0],[-3,0],[-210,-2],[-47,0],[-64,-1],[-189,-1],[-31,0],[-81,-1],[-124,-1],[-13,0],[-23,0],[-128,-1],[-88,-1],[-71,-1],[-179,-1],[-25,0],[-21,0],[-92,-1],[-66,-1],[-71,0],[-59,-1],[-26,0],[-64,-1],[-8,0],[-28,0],[-52,0],[-140,-1],[-8,0],[-42,-1],[-69,0],[-66,-1],[-26,-1],[-3,0],[-13,0],[-60,-2],[-61,-1],[-23,0],[-14,0],[-13,0],[-31,0],[-11,0],[-97,1],[-105,1],[-258,1],[-143,1],[-375,-2],[-119,-2],[-120,-3],[-7,-4],[-104,1],[-73,-1],[-16,0],[-173,1],[-20,1],[-69,0],[-11,0],[-86,1],[-58,1],[-45,0],[-22,0],[-328,6]],[[36401,33486],[2,-172],[1,-177],[-21,1],[-27,-1],[-34,1],[-40,-3],[-213,2],[0,-28],[1,-56],[2,-89],[0,-26],[2,-57],[1,-38],[1,-65],[-114,0],[-101,1],[-30,0],[-83,1],[0,-28],[0,-35],[1,-35],[0,-47],[0,-37],[0,-74],[0,-65],[0,-30],[0,-34],[1,-120],[0,-39],[0,-8],[0,-28],[1,-93],[0,-32],[-35,0],[-23,1],[-28,1],[-24,1],[-22,0],[-22,1],[-21,0],[-26,1],[-31,1],[-30,0],[-23,1],[-24,1],[-14,-1],[-6,-1],[-35,1],[-60,0],[-59,1],[-44,-2],[-56,0],[-21,-1],[-49,1],[1,-32],[0,-53],[1,-9],[0,-35],[1,-27],[0,-5],[0,-24],[1,-52],[0,-35],[2,-44],[1,-31],[-14,-28],[-35,-31],[-14,-19],[-14,-19],[-27,-29],[-31,-19],[-36,-14],[-19,0],[-21,5],[-38,11],[-26,-8],[-34,-2],[-17,-14],[-21,-10],[-25,9],[-28,-3],[-18,-14],[-25,-7],[-19,10],[-36,-19],[-44,-19],[-25,-49],[-41,-37],[-41,-32],[-39,-38],[-25,-1],[-11,-25],[-4,-31],[10,-53],[-18,-44],[-42,-37],[7,-29],[21,-13],[28,-34],[-33,-29],[-5,-24],[9,-24],[23,-37],[7,-28],[3,-31],[-7,-36],[-17,-16],[2,-26],[-13,-21],[27,-33],[22,-42],[6,-29],[-8,-34],[-20,-29],[-5,-42],[-17,-37],[16,-36],[-19,-19],[-29,0],[-26,-44],[-6,-54],[-11,-33],[28,2],[10,-28],[-14,-17],[-60,-43],[-11,-23],[-24,2],[-43,-11],[-21,-14],[-11,-24],[-4,-33],[-19,-13],[-8,-28],[-12,-30],[-31,-26],[-15,-33],[-28,-17],[-14,-27],[14,-31],[-15,-20],[-18,11],[-5,2],[-13,-27],[-19,16],[-19,-14],[-11,-33],[-22,-11],[-11,-20],[6,-30],[-20,8],[-23,-29],[-24,-12],[9,-22],[28,-13],[12,-26],[-22,-20],[-18,19],[-28,-1],[-14,-23],[-15,-19],[-20,14],[-11,53],[-33,-5],[-40,-5]],[[33673,29786],[-2,-5],[-54,17],[-5,-1],[-4,-2],[-11,-12],[-6,-17],[-17,-21],[-2,-3],[-32,3],[-17,32],[-22,-7],[8,-36],[18,-6],[5,-1],[7,-41],[-3,-3],[-26,-43],[-4,-6],[-27,-44],[-52,-64],[-1,-1],[-25,-64],[-12,-29],[-18,-45],[-6,-3],[-115,-47],[-5,-4],[-48,-35],[-51,-36],[-11,-8],[-6,-5],[-41,-1],[-1,0],[-3,0],[-26,2],[-1,0],[-1,0],[-8,0],[-65,-23],[-66,-28],[-1,-15],[0,-1],[0,-5],[-1,-115],[-25,-59],[-13,-28],[-3,-8],[-12,-10],[0,-2],[-24,-49],[-5,-12],[-22,-48],[-18,-72],[-5,-45],[-12,-37],[0,-1],[-5,-5],[-11,-6],[-33,-7],[-17,-7],[-8,-7],[-80,-62],[-111,-86],[-7,-10],[-3,-11],[0,-25],[3,-40],[-1,-7],[-40,-110],[-4,-8],[-8,-5],[-13,-1],[-23,-7],[-38,-13],[-17,-9],[-92,-77],[-50,-43],[-24,-25],[-65,-67],[-47,-52],[-33,-43],[-46,-50],[-25,-27],[-9,-9],[-38,-41],[-28,-28],[-12,-12],[-38,-29],[-18,-7],[-25,-9],[-107,-38],[-40,-10],[-156,-30],[-7,-2],[-4,0],[-14,-4],[-18,-4],[-11,-6],[-16,-19],[-96,-106],[-25,-31],[-52,-62],[-41,-4],[-138,-4],[-59,-2],[-112,-2],[-48,-1],[-27,5],[-13,5],[-61,49],[-11,9],[-57,29],[-13,3],[-25,8],[-15,7],[-121,74],[-19,12],[-74,46],[-31,17],[-19,7],[-146,-10],[-39,-1],[-20,2],[-1,0],[-27,7],[-89,29],[-3,1],[-27,10],[-4,1],[-62,21],[-14,5],[-9,3],[-6,2],[-17,4],[-40,17],[-21,21],[-73,73],[-60,67],[-7,14],[0,12],[2,15],[1,3],[-2,5],[-13,40],[-8,7],[-42,-1],[-122,69],[-1,0],[-96,55],[-7,3],[-4,2],[-48,24],[-53,27],[-32,42],[-25,31],[-41,30],[-45,32],[2,27],[3,81],[-2,5],[-23,46],[-5,11],[-7,2],[-27,8],[-7,-4],[-15,-14],[-4,-3],[-23,-17],[-5,-3],[-12,2],[-65,81],[-7,11],[-1,2],[-3,5],[-31,56],[-1,10],[1,3],[2,3],[5,4],[75,65],[-42,8],[-10,-17],[-3,-8],[-8,-5],[-76,3],[-7,2],[-3,0],[-5,8],[-2,3],[0,1],[-1,25],[1,0],[3,10],[3,1],[12,-1],[1,0],[0,10],[-5,41],[-10,6],[-3,1],[-15,4],[-2,1],[-7,-1],[-1,0],[-1,-1],[-42,-26],[-1,-8],[-1,-4],[2,-6],[1,-2],[9,-15],[0,-8],[-8,-6],[-7,1],[-72,33],[-6,4],[-4,6],[1,5],[5,6],[18,27],[-8,5],[0,1],[-49,19],[-31,-1],[-51,12],[-71,19],[-15,6],[-4,7],[0,12],[6,10],[12,13],[8,20],[-2,18],[-3,13],[-8,13],[-9,6],[-1,0],[-61,10]],[[28456,29017],[0,-1]],[[28456,29016],[-9,-2],[-6,-5],[-5,-9],[-1,0],[0,-1],[-14,-43],[1,-12],[-1,-4],[-1,-2],[-13,-31],[-11,-10],[-12,-4],[-25,-1],[-10,5],[-6,6],[-12,22],[-6,5],[-8,-2],[-71,-31],[-4,-5],[-29,-70],[-1,-1],[-2,-31],[-59,-90],[-8,-1],[-2,0],[-1,0],[-13,-2],[-73,-13],[-1,0],[-1,-1],[-6,-4],[-15,-26],[-24,-41],[-1,-2],[-15,-32],[-6,-11],[-1,-5],[-16,-2],[-53,0],[-26,1],[-49,38],[-4,3],[-75,22],[-6,1],[-51,-12],[-4,-5],[-2,-21],[-5,-15],[-5,-7],[-17,-12],[-12,-1],[-52,12],[-8,-1],[-41,0],[-3,-1],[-38,-57],[-76,-69],[-28,-25],[-63,-57],[-8,-2],[-47,-5],[-12,1],[-5,5],[0,61],[0,42],[-13,-7],[-7,-3],[-23,-11],[-41,-52],[-14,-6],[-12,-5],[-18,23],[-3,43]],[[40061,27971],[-24,-85],[-17,-56],[-14,-49],[-10,-34],[-40,-139],[-14,-49],[-30,-104],[-8,-26],[-9,-31],[-44,-152],[0,-2],[-15,-52],[-20,-78],[-12,-31]],[[39804,27083],[-2,1],[-46,22],[-54,25],[-3,2],[-56,23],[-102,49],[-66,32],[-167,80],[-36,17],[-34,15],[-30,16],[-59,32],[-158,69],[-34,15],[-117,52],[-1,0],[-146,64],[-26,13],[-317,153],[-25,13],[-28,14],[-62,29],[-20,10],[-139,70],[-62,22],[-23,-6],[-1,0],[-44,19],[-24,11],[-1,1],[-42,26],[-1,1],[-1,0],[-20,15],[-8,10],[-1,0],[-1,2],[-12,18],[-23,39],[-42,83],[-4,9],[-12,3],[-23,6],[-3,2],[-6,14],[0,11],[1,17],[0,3],[13,48],[-15,137],[-3,10],[0,1],[-29,123],[-4,7],[-47,50],[0,1],[9,59],[0,15],[1,1],[-1,1],[-37,67],[-29,54],[0,1],[-1,0],[-4,8],[-11,8],[-1,1],[-19,8],[-43,10],[-19,8],[-14,10],[-9,9],[-6,11],[-19,39],[-4,9],[-15,40],[-26,101],[0,1],[-1,0],[-5,24],[0,16],[0,1],[9,27],[14,28],[31,47],[23,46],[3,18],[0,14],[-16,37],[-4,8],[-9,6],[-12,4],[-13,3],[-8,-3],[-248,-103],[-70,-34],[-3,-3],[-24,-15],[-3,-2],[-23,-22],[-36,-15],[-35,-12],[-11,0],[-75,-8],[-14,19],[-1,0],[-1,3],[-22,23],[-3,3],[-15,3],[-12,-21],[-19,-33],[-44,-44],[-17,-11],[-62,-30],[-84,32],[-178,83],[-126,59],[-25,11],[-164,81],[-42,17],[-63,26],[-89,41],[-28,13],[-103,48],[-163,76],[-55,25],[-22,11],[-44,20],[-35,16],[-106,51],[-103,41],[-8,-1],[-3,-1],[-24,-5],[-18,0],[-2,0],[-1,0],[-9,0],[-83,-15],[-52,-34],[-1,-1],[-10,-5],[-8,-1],[-1,0],[-15,9],[-1,2],[-5,-2],[-54,-20],[-97,-28],[-84,-14],[-1,0],[-91,33],[-2,1],[-22,4],[-12,1],[-3,2],[-73,31],[-12,5],[-22,36],[-5,6],[-63,40],[-16,-7],[-32,-30],[-8,-9],[-4,-11],[-71,-44],[-33,-12],[-43,-17],[-79,6],[-15,4],[-28,27],[-8,12],[0,10],[3,10],[3,28],[-2,4],[-21,15],[-3,0],[-17,1],[-3,0],[-24,1],[-63,-7],[-27,-3],[-16,-2],[-17,-9],[-13,-12],[-5,-13],[-5,-25],[-3,-4],[-8,-4],[-2,0],[-47,2],[-66,14],[-11,5],[-7,7],[-45,65],[-1,0],[-21,52],[-5,5],[-16,15],[0,1]],[[65300,31593],[-1,-30],[-23,-196],[-16,-113],[-136,-1004]],[[65124,30250],[-87,-22],[-947,-238],[-106,-27],[-113,-29],[-5,-1],[-20,-4],[-54,-13],[-319,-80],[-419,-99],[-181,-46],[-41,-11],[-102,-26],[-361,-92],[-6,-2],[-44,-11],[-18,-4],[-422,-108],[-116,-29],[-192,-49],[-438,-112],[-22,-5],[-109,-27],[-73,-19],[-68,-18],[-63,-16],[-23,-5],[-2,-1],[-111,-27],[-53,-12],[-72,-22],[-137,-27],[-257,-59],[-4,-1],[-133,-31],[-48,-11],[-1,0],[-64,-21],[-6,-2],[17,-101],[-63,-61],[-3,-3],[-25,-26],[-18,-17],[-46,-42],[-24,-22],[-122,-113],[-66,-72],[-16,-17],[-7,-30],[-8,-30],[-15,-33],[-16,-24],[28,-76],[-83,-71],[-99,-86],[-166,-146],[-12,-10],[-6,-5],[-80,-70],[-28,-26],[-45,-39],[-19,-18]],[[58965,27805],[-1,0],[-38,-33],[-3,0],[-109,-1],[-1,0],[-41,0],[-127,-1],[-75,0],[-34,24],[-42,30],[-45,32],[-100,69],[-51,35],[-42,33],[-96,122],[-45,-14],[-245,-68],[-53,-15],[-18,-2],[-30,-3],[-18,21],[-6,-1],[-350,-77],[-4,-1],[-104,-19],[-24,14],[-68,-50],[-90,67],[-23,20],[-69,58],[-97,72],[-17,17],[-63,33],[-37,-61],[-28,-44],[-53,-2],[-29,-1],[-130,-15],[1,-37],[1,-52],[0,-71],[1,-10],[0,-26],[2,-139],[-291,-1],[-32,0]],[[72096,31826],[-1773,-2595],[-102,-151],[-241,-351],[-215,-313],[-144,-235],[-21,-33],[-4,-8],[-8,-14],[-3,-5],[-2,-4],[-253,-381],[-17,-25],[-33,-48],[-82,-121],[-33,-48],[-190,-278],[-12,-19],[-6,-8],[-8,-12],[-48,-66],[-2,-2],[-82,-125],[-137,16],[-23,3],[-4,-1],[-17,-5],[-145,-39],[-2,0],[-10,-1],[-6,0],[-10,-3],[-10,-6],[-20,-11],[-13,-3],[-67,-16],[-17,-4],[-72,-18],[-11,-4],[-16,-8],[-5,-2],[-76,-7],[-86,14],[-26,4],[-91,21],[-3,0],[-21,-8],[-50,-19],[-22,-8],[-29,-11],[-46,-17],[-21,-9],[-25,-9],[-20,-9],[-142,-55],[-32,-13],[-58,-22],[-184,-72],[-40,-15],[-59,-23],[-15,-6],[-22,-9],[-14,-4],[-4,-1],[-13,-3],[-19,-5],[-6,-84],[-1,-3],[-1,-22],[-7,-114],[-5,-145],[-114,6],[-1,0],[-89,6],[2,-39],[2,-89],[5,-162],[0,-2],[0,-10],[5,-145],[129,-1],[1,-57],[1,-35],[7,-266],[-1,-71],[1,-25],[-3,-34],[4,-60],[1,-27],[-4,-77],[12,-113],[-9,-342],[11,-19],[24,-40],[22,-28],[4,-14],[3,-25],[2,-8],[19,-45],[8,-19],[14,-37],[9,-28],[10,-61],[2,-32],[2,-29],[-1,-34],[1,-46],[0,-19],[-3,-7],[-3,-5],[-11,-22],[3,-34],[12,-34],[12,5],[0,-9],[0,-9],[-6,-2],[0,-5],[-2,-6],[3,-8],[-2,-10],[0,-10],[-2,-10],[-3,-10],[-5,-12],[-2,-27],[-2,-9],[-25,-101],[-36,-145],[-13,-52],[-3,-11],[-43,-140]],[[67042,23528],[-6,2],[-24,6],[-10,3],[-46,15],[-20,3],[-30,4],[-45,7],[-12,2],[-7,1],[-15,2],[-245,0],[-34,0],[-210,1],[-41,-2],[-169,-7],[-10,-1],[-76,-3],[-10,-1],[-5,-4],[-3,-2],[-14,-8],[-28,-18],[-5,-4],[-5,-4],[-9,-11],[-11,-11],[-17,-22],[-13,-20],[-1,-2],[-2,-3],[-11,-16],[-16,-26],[-13,-16],[-20,-26],[-14,-8],[-14,-4],[-22,-3],[-33,-17],[-15,-9],[-9,-4],[-18,6],[-9,4],[-13,28],[0,35],[3,35],[-4,42],[-9,32],[-13,16],[-34,-13],[-40,-1],[-4,0],[-22,2],[-12,5],[-70,31],[-8,9],[-14,18],[-15,18],[-41,21],[-3,1],[-16,-2],[-31,10],[-13,5],[-42,-19],[-6,-3],[-35,5],[-34,6],[-38,-35],[-17,-9],[-14,-8],[-33,0],[-2,0],[-13,0],[-29,0],[-2,1],[-67,-12],[-10,-2],[-35,-10],[-15,-4],[-107,-54],[-7,-2],[-8,0]],[[64852,23478],[-1,1],[-70,186],[-27,68],[-27,70],[-29,76],[-7,17],[-9,79],[-1,58],[-10,151],[1,8],[-1,52],[-1,36],[-1,17],[1,58],[3,106],[-1,63],[-1,62],[0,4],[0,17],[0,5],[-2,109],[-1,42],[-7,52],[0,6],[3,171],[-61,-1],[-60,-1],[-42,16],[1,29],[-4,275],[-1,40],[165,5],[-2,34],[-1,31],[-10,294],[-162,-12],[-1,85],[-2,82],[0,5],[0,8],[-36,-3],[-1,8],[8,18],[30,29],[12,11],[25,22],[29,24],[12,7],[-19,58],[-10,22],[-8,29],[-21,74],[-1,5],[-43,124],[-25,77],[-2,5],[-48,150],[-107,355],[-5,17],[-12,37],[-5,18],[-5,15],[-17,50],[-8,25],[0,1],[34,23],[47,32],[113,73],[59,39],[19,12],[51,32],[33,21],[149,112],[25,19],[-12,85],[-1,6],[-5,28],[-1,12],[-4,18],[-7,28],[-6,35],[-1,5],[-8,43],[-6,40],[-3,16],[-8,33],[-4,22],[-1,10],[-3,18],[-5,24],[-4,24],[-10,51],[-2,8],[-5,55],[-2,12],[-1,6],[-4,19],[-17,99],[-64,359],[327,55],[4,29],[62,489],[5,45],[3,23],[1,10],[0,2],[75,534],[11,86],[3,29],[33,234],[17,142],[10,93]],[[73048,18652],[-108,1],[-111,2],[-55,0],[-101,2],[-43,0],[-159,2],[-137,2],[-246,3],[-504,7],[-189,-8],[-33,-1],[-23,0],[-208,6],[-87,3],[-155,4],[-96,7],[-6,2],[-18,18],[-7,5],[-11,9],[-84,90],[-66,92],[-19,34],[-39,49],[-14,35],[0,6],[4,179],[1,19],[5,37],[3,160],[-27,41],[-4,15],[-11,24],[-10,19],[-25,43],[-4,33],[-1,19],[11,40],[9,37],[18,20],[10,26],[-5,45],[-12,22],[-13,25],[-15,21],[-4,5],[-16,21],[-35,30],[-14,10],[-30,15],[-28,24],[-13,16],[-11,12],[-9,23],[-6,43],[-5,25],[-4,11],[-1,15],[0,31],[0,16],[0,12],[1,13],[3,47],[5,29],[1,27],[-6,18],[-9,27],[-26,41],[-7,7],[-8,11],[-4,6],[-19,13],[-17,12],[-8,4],[-24,11],[-7,4],[-23,7],[-21,8],[-22,4],[-36,10],[-43,13],[-23,3],[-34,9],[-13,4],[-27,8],[-20,13],[-22,14],[-37,34],[-35,14],[-6,3],[-17,7],[-15,5],[-8,4],[-12,7],[-31,24],[-36,35],[-10,3],[-34,7],[-10,-4],[-22,-16],[-26,-30],[-7,-3],[-10,4],[-21,10],[-26,17],[-8,6],[-15,7],[-12,5],[-32,10],[-6,3],[-15,12],[-39,15],[-23,6],[-36,7],[-10,3],[-7,0],[-16,-4],[-18,-4],[-32,-15],[-18,-9],[-9,5],[-5,4],[-20,14],[-10,11],[-14,13],[-22,19],[-49,48],[-17,12],[0,1],[-25,24],[-16,16],[-22,22],[-14,19],[-26,38],[-4,7],[-7,11],[-22,27],[-21,23],[-15,17],[-9,10],[-15,15],[-25,20],[-21,11],[-18,8],[-38,15],[-15,7],[-18,10],[-36,23],[-35,24],[-1,1],[-5,4],[-3,2],[-23,21],[-16,22],[-24,29],[-14,25],[-29,37],[-17,16],[-26,15],[-8,5],[-19,11],[-32,24],[-7,7],[-7,8],[-6,7],[-9,11],[-7,9],[-6,7],[-6,10],[-15,37],[-4,17],[-10,33],[-8,27],[-29,25],[-22,8],[-11,13],[-6,11],[-5,24],[-2,33],[-2,45],[-4,32],[-2,11],[-1,3],[-6,24],[-5,7],[-1,10],[0,9],[1,21],[0,1],[1,8],[8,27],[4,14],[0,18],[0,13],[0,45],[-1,28],[1,22],[-12,88],[-8,32],[-2,10],[-9,37],[-4,12],[-13,26],[-7,14],[-7,12],[-6,13],[-5,13],[1,18],[4,17],[3,16],[6,31],[7,35],[0,13],[-1,12],[-3,19],[-8,25],[-22,35],[-9,10],[-24,21],[-1,1],[-27,30],[-2,3],[-9,20],[-9,11],[-19,25],[-10,17],[-12,40],[-17,55],[-18,30],[-10,11],[-16,12],[-2,1],[-18,11],[-29,18],[-20,16],[-18,17],[-9,8],[-18,18],[-14,8],[-7,5],[-31,23],[-24,8],[-24,3],[-40,-7],[-17,-6],[-3,-1],[-34,-14],[-17,-8],[-27,-11],[-24,-7],[-8,-1],[-27,2],[-27,2],[0,1],[-24,12],[-16,12],[-8,9],[-2,3],[-6,6],[-9,12],[-26,35],[-24,35],[-29,37],[-9,14],[-17,27],[-13,23],[-13,25],[-11,18],[-56,138],[-31,75],[-11,29],[-17,37],[-42,53],[-19,24],[-33,24],[-62,4],[-20,9],[-49,24]],[[72096,31826],[7,-294],[-11,-1256],[-2,-232],[-5,-802],[-5,-664],[1,-184],[-1,-172],[0,-157],[-1,-155],[-2,-179],[-7,-283],[0,-65],[0,-10],[0,-7],[-1,-13],[0,-20],[-3,-92],[0,-27],[-1,-183],[-2,-282],[-3,-242],[1,-49],[4,-116],[0,-1],[-3,-12],[1,-21],[0,-11],[-1,-23],[1,-17],[-1,-14],[0,-12],[0,-18],[0,-36],[-1,-13],[-2,-15],[-1,-16],[-1,-20],[-4,-99],[0,-7],[1,-18],[0,-16],[-2,-65],[0,-147],[0,-74],[0,-9],[2,-40],[0,-1],[1,-12],[-1,-16],[-3,-42],[0,-9],[-1,-43],[2,-25],[2,-14],[10,-78],[2,-14],[21,-121],[0,-2],[2,-17],[5,-43],[21,-213],[25,-262],[1,-3],[1,-10],[13,-148],[14,-162],[5,-56],[8,-87],[7,-31],[20,-83],[12,-46],[4,-17],[0,-2],[8,-36],[10,-45],[7,-31],[11,-35],[4,-17],[10,-37],[19,-34],[11,-12],[9,-11],[10,-18],[0,-16],[0,-10],[21,-10],[10,-6],[9,-25],[-6,-12],[-5,-9],[-4,-7],[4,-8],[13,-2],[21,-2],[16,-11],[6,-3],[8,-2],[2,0],[39,-21],[7,-12],[4,-7],[14,-18],[15,-22],[4,-6],[8,-13],[7,-24],[9,-39],[10,-25],[6,-8],[21,-18],[9,-5],[20,-12],[19,-17],[10,-15],[13,-23],[17,-31],[21,-22],[20,-24],[21,-18],[23,-14],[19,-15],[5,-9],[1,-4],[0,-5],[1,-8],[0,-9],[-2,-36],[0,-17],[5,-45],[2,-12],[6,-12],[7,-18],[13,-10],[7,-6],[11,-9],[5,-26],[-2,-6],[-9,-27],[-10,-29],[-2,-8],[-1,-3],[-2,-5],[1,-4],[27,-155],[120,-91],[41,-32],[34,-25],[130,-99],[226,-172],[120,-91],[111,-84],[329,-248],[75,-3],[3,0],[63,0],[27,-1],[6,-24],[3,-12],[4,-13],[6,-16],[2,-4],[41,-75],[36,-39],[11,-18],[6,-16],[1,-1],[1,-7],[-1,-19],[-2,-12],[-35,-43],[-7,-8],[-24,-28],[-2,-9],[0,-17],[6,-32],[23,-83],[0,-6],[0,-29],[-13,-23],[-22,-15],[-22,-18],[-4,-9],[-16,-35],[-16,-36],[-86,-194],[-71,-163],[-43,-100],[-13,-30],[-15,-33],[-52,-120],[-37,-86],[-9,-19],[-5,-11],[-26,-60],[-30,-71],[-49,-114],[-76,-174],[-18,-40],[-7,-17],[-23,-64],[-21,-62],[-8,-23],[-119,-344],[-276,-804],[-12,-33],[-14,-40],[-21,-63]],[[76235,6162],[-63,-14],[40,50],[37,34],[25,45],[42,39],[38,42],[34,6],[48,26],[35,39],[3,19],[6,35],[-30,54],[-87,77],[-7,31],[22,18],[11,-2],[22,-16],[40,-61],[39,-52],[18,-44],[22,-52],[-2,-33],[-8,-14],[-37,-63],[-61,-45],[-73,-44],[-59,-36],[-55,-39]],[[75719,5810],[7,42],[8,35],[11,36],[13,31],[7,6],[6,33],[-7,15],[12,18],[2,9],[-7,5],[-6,-2],[-7,6],[-1,10],[0,9],[-9,29],[-7,9],[-10,14],[-6,5],[-16,10],[-13,10],[-4,5],[3,21],[13,12],[34,15],[28,10],[17,20],[6,42],[13,32],[-14,33],[23,3],[6,8],[7,12],[5,21],[0,7],[0,8],[3,9],[4,11],[14,19],[35,32],[20,19],[11,7],[8,4],[33,24],[7,12],[13,6],[10,0],[13,2],[25,21],[16,34],[5,27],[18,21],[16,14],[21,19],[39,28],[19,8],[10,-2],[7,-1],[21,15],[18,32],[-13,11],[-8,31]],[[76198,6792],[42,38],[45,-16],[17,13],[12,9],[42,0],[24,22],[11,11],[22,43],[33,20],[19,53],[16,-61],[-9,-21],[-8,-21],[-2,-5],[-15,-20],[-16,-23],[-24,-41],[-18,-22],[-6,-6],[-13,-15],[-23,-25],[-29,-20],[-32,-22],[-2,-13],[-7,-68],[-1,-13],[-34,-59],[-29,-66],[-54,-76],[-16,-50],[3,-39],[-15,-46],[-27,-77],[19,-57],[-47,-15],[-21,-27],[-6,-9],[-41,-24],[-54,-38],[-22,-33],[-46,-61],[-36,-35],[-76,-4],[-3,-50],[-1,-15],[-51,2]],[[77205,7712],[6,-55],[2,-19],[-68,-2],[-32,-13],[11,62],[-37,-33],[-64,-51],[-46,18],[45,51],[5,6],[83,75],[5,30],[2,9],[64,5],[24,-83]],[[77907,8014],[-22,-29],[-63,-33],[-61,-23],[-2,79],[-65,28]],[[77694,8036],[52,37],[29,-2],[43,0],[55,-50],[34,-7]],[[77694,8036],[-67,-83],[-26,-49],[-34,-29],[16,67],[25,76],[30,52],[30,2],[37,34],[-11,-70]],[[78090,8116],[-28,-33],[-74,-67],[-48,-21],[-33,19]],[[77907,8014],[33,34],[30,63],[34,60],[69,-1],[17,-54]],[[76945,8120],[-39,-10],[-14,58],[-17,48],[67,20],[60,31],[24,-57],[-28,-54],[-45,-34],[-8,-2]],[[78090,8116],[48,17],[33,55],[49,27],[41,45],[59,-5],[71,15],[37,-34],[-16,-77],[-29,-63],[-38,-61],[-43,-72],[-29,-55],[-36,-28],[-84,-29],[-21,-53],[-29,-25],[-30,-17],[-49,-33],[-45,-26],[-43,-25],[-32,-21],[-51,-30],[-66,-42],[-76,-50],[-70,-47],[-48,-37],[-37,-30],[-54,-48],[-82,-55],[-4,-3],[-138,-91],[-99,-81],[-76,-55],[-50,-45],[-59,-50],[-73,-76],[-55,-52],[-36,-38],[-39,-48],[-39,-46],[-35,-44],[-31,-40],[-49,-36],[-38,5],[-42,50],[38,40],[41,22],[13,15],[39,46],[45,46],[29,46],[61,53],[30,58],[44,24],[20,61],[35,41],[33,54],[22,39],[29,36],[34,21],[33,66],[64,47],[50,17],[45,23],[44,57],[56,99],[42,30],[12,0],[54,2],[49,27],[54,42],[57,41],[66,55],[62,48],[53,39],[45,35],[30,23],[62,35],[74,-2],[37,68],[32,42],[-1,58]],[[78080,8803],[-3,-42],[69,6],[-34,-54],[-19,-40],[-54,35],[-34,-85],[18,-60],[34,-19],[27,-28],[2,-54],[-20,-51],[-37,-32],[-45,33],[19,60],[-35,29],[-67,14],[-68,9],[-13,65],[-69,-25],[-20,75],[-43,20],[-50,21],[-41,-9],[-33,26],[59,36],[83,-16],[62,0],[57,15],[45,51],[22,90],[37,60],[52,-50],[49,-71],[50,-9]],[[79048,8752],[-18,-38],[-36,-23],[-58,-19],[-74,-52],[-35,-21],[-45,-32],[-85,-51],[-58,-36],[-53,-24],[-77,-40],[-59,-16],[-27,75],[52,-2],[56,10],[-11,68],[58,29],[38,47],[32,30],[20,55],[59,21],[63,-10],[56,20],[64,0],[63,22],[55,22],[45,29],[28,42],[9,54],[15,54],[38,18],[36,2],[42,-52],[-35,-70],[-46,-27],[-35,-26],[-41,-32],[-36,-27]],[[77914,9758],[19,-63],[44,-44],[25,-41],[6,-44],[-14,-111],[7,-95],[-4,-62],[-26,-77],[14,-55],[-50,-67],[-60,28],[-51,75],[-2,77],[-42,30],[15,67],[24,43],[-47,20],[-38,4],[-4,52],[-19,42],[26,39],[23,-49],[18,-40],[47,24],[-7,67],[-4,64],[29,32],[24,65],[-54,-1],[46,86],[55,-66]],[[76915,10329],[-22,-52],[-49,31],[-68,64],[19,34],[10,18],[8,17],[14,32],[18,16],[37,35],[17,-66],[56,-51],[19,-53],[-59,-25]],[[77809,10384],[52,-2],[51,29],[1,-67],[-38,-27],[-43,-55],[7,-82],[-54,-4],[-52,36],[7,-82],[53,-12],[-16,-69],[-57,9],[-19,-40],[-38,57],[-33,19],[-15,45],[-52,39],[-36,-77],[-19,-64],[-69,35],[-23,15],[-55,37],[-48,-15],[-55,-6],[-16,37],[-8,19],[-36,37],[-1,51],[-1,32],[43,95],[43,-45],[40,-32],[51,-26],[42,-8],[1,0],[46,-10],[56,30],[26,23],[41,8],[33,47],[51,18],[-11,69],[22,60],[25,116],[37,-43],[-2,-115],[-15,-68],[84,-14]],[[77594,10786],[40,-33],[47,-41],[-41,-30],[-62,-6],[-55,-43],[-51,28],[-37,25],[-3,92],[-5,-2],[-11,-5],[-39,-16],[-46,5],[-3,-2],[-47,-56],[4,-73],[-33,-61],[-10,-17],[-25,-100],[-32,-4],[-6,-1],[-14,59],[-6,21],[-9,29],[34,49],[29,29],[24,48],[8,43],[6,28],[60,55],[53,1],[-11,61],[28,28],[34,6],[1,1],[2,0],[18,64],[39,-48],[30,-45],[37,-43],[52,-46]],[[77223,11104],[15,-33],[13,-27],[13,-38],[-16,-11],[-17,-10],[-20,-8],[-31,-12],[-68,-52],[-32,50],[-43,49],[-51,30],[36,48],[7,10],[31,-26],[32,-8],[16,-4],[17,-16],[20,-18],[46,41],[6,5],[26,30]],[[77223,11104],[-35,106],[-72,99],[44,30],[34,-20],[40,-52],[51,-12],[44,-57],[-80,-43],[-26,-51]],[[77271,11435],[-11,-43],[-5,-17],[-43,25],[-4,2],[-30,16],[-59,-4],[-11,3],[-32,10],[-21,6],[14,15],[13,14],[15,16],[5,4],[37,22],[20,-11],[7,-4],[7,-3],[5,5],[24,27],[9,13],[36,50],[6,-47],[2,-14],[-31,-38],[-15,-17],[23,-12],[39,-18]],[[77271,11435],[37,103],[29,76],[34,-17],[-3,-25],[-6,-53],[-11,-20],[-21,-40],[0,-32],[0,-32],[-59,40]],[[77634,12033],[60,-41],[60,9],[32,-26],[-30,-46],[-32,-49],[-31,-55],[-20,-60],[-13,-53],[-18,-46],[-17,36],[-6,50],[-5,85],[-11,84],[-9,66],[-7,71],[47,-25]],[[77386,12382],[30,-39],[4,-5],[-4,-5],[-24,-36],[-32,-43],[-31,49],[-36,41],[42,10],[51,28]],[[77832,12379],[-11,-110],[-39,61],[-20,91],[45,35],[25,-77]],[[76756,12635],[20,-86],[11,6],[38,20],[65,-37],[-55,-50],[-30,-49],[30,-74],[-57,28],[-5,12],[-17,45],[-62,51],[2,48],[10,21],[11,24],[39,41]],[[76756,12635],[17,31],[15,29],[-1,34],[-1,30],[41,10],[55,-3],[-33,-35],[-18,-19],[-33,-83],[-42,6]],[[77386,12382],[13,47],[-34,27],[-33,49],[-35,46],[-37,40],[-38,17],[-43,-52],[-48,14],[-52,14],[49,41],[-12,14],[-22,24],[-3,42],[-4,45],[-37,21],[-8,4],[-18,71],[-19,111],[-33,18],[-23,12],[-57,61],[-26,37],[-3,4],[-19,5],[-28,8],[-39,5],[-17,31],[-3,42],[-3,45],[-44,-7],[-23,-40],[3,-16],[8,-40],[-66,12],[-3,1],[-56,-9],[-46,-23],[-6,-5],[-55,-42],[-38,17],[-67,-13],[-35,75],[-35,10],[-1,0],[-5,8],[-26,41],[-45,26],[3,61],[31,57],[43,0],[43,-49],[73,-22],[70,23],[21,15],[12,9],[13,2],[28,4],[47,3],[47,-8],[45,-14],[61,10],[44,12],[22,-55],[30,-17],[16,0],[31,-1],[30,38],[50,1],[4,-28],[3,-25],[8,-63],[-12,-30],[-6,-18],[51,-37],[58,-18],[8,-8],[28,-30],[4,-13],[13,-39],[3,-32],[4,-32],[29,-91],[34,70],[8,0],[44,-4],[63,33],[47,39],[5,5],[46,63],[7,9],[0,11],[2,42],[-9,42],[-1,5],[1,4],[8,36],[42,35],[41,-6],[10,-50],[28,-67],[11,-55],[36,-55],[23,-32],[40,-54],[15,-85],[-60,-56],[-23,-50],[5,-72],[-54,-79],[0,-83],[35,49],[33,52],[55,-54],[45,-75],[-30,-49],[-34,-72],[-15,-89],[36,-52],[-62,1],[-55,1],[-32,-41],[-48,5],[-42,9],[-8,6],[-26,24],[26,12],[29,14],[58,23],[23,54],[-11,77],[-52,27],[-47,-7],[-30,-4]],[[75397,30870],[-107,-1375],[-125,-1890],[-34,-528],[15,-167],[-6,-6],[-11,-12],[-15,-38],[-2,-27],[-3,-31],[-7,-7],[-2,-2],[0,-16],[0,-12],[1,-16],[-1,-28],[-2,-29],[-2,-17],[-2,-38],[-5,-63],[-4,-61],[-2,-26],[0,-8],[-4,-46],[-2,-34],[-3,-35],[-2,-31],[0,-15],[-2,-23],[-4,-46],[-3,-44],[-1,-20],[-4,-44],[-1,-15],[-1,-24],[-2,-19],[0,-3],[0,-6],[-3,-46],[-2,-30],[-3,-41],[0,-8],[-3,-38],[-1,-16],[0,-10],[0,-5],[-1,-11],[-2,-17],[-1,-8],[-9,-165],[-1,-73],[-1,-16],[-1,-28],[0,-9],[-3,-8],[-7,-17],[-9,-21],[-4,-8],[-1,-2],[-11,-41],[-14,-33],[-10,-21],[-4,-9],[-4,-9],[-12,-27],[-9,-19],[-7,-17],[-9,-16],[-9,-6],[-4,-3],[-22,-49],[-16,-36],[-5,-11],[-12,-28],[-9,-21],[-4,-8],[-6,-14],[-8,-17],[-6,-14],[-10,-23],[-5,-11],[-12,-25],[-11,-33],[-2,-7],[-46,-84],[-1,-2],[6,-63],[3,-33],[2,-28],[10,-108],[0,-53],[-2,-94],[0,-36],[-3,-125],[0,-22],[7,-83],[6,-66],[38,-47],[79,-95],[26,-13],[38,-19],[33,-17],[31,-11],[40,-9],[23,-5],[10,-2],[64,-13],[17,-4],[100,6],[50,3],[173,11],[128,41],[60,27],[57,20],[48,19],[31,14],[4,2],[17,8],[16,7],[28,12],[65,30],[44,20],[44,20],[17,7],[51,40],[2,1],[29,23],[30,32],[12,13],[46,48],[69,114],[4,28],[17,145],[2,14],[-2,29],[-5,92],[-2,25],[-1,20],[-1,12],[1,0],[9,-12],[17,-20],[55,-68],[4,-15],[2,-6],[3,-3],[10,-8],[15,-17],[13,-20],[20,-22],[2,-2],[9,-9],[32,-38],[44,-54],[9,-12],[13,-15],[1,-1],[20,-25],[14,-20],[14,-17],[13,-15],[43,-50],[0,-1],[14,-15],[22,-28],[19,-23],[14,-17],[19,-22],[29,-34],[29,-35],[19,-23],[22,-27],[37,-45],[8,-11],[21,-25],[56,-67],[18,-22],[68,-81],[1,-1],[13,-17],[38,-49],[27,-33],[17,-21],[4,-7],[54,-67],[20,-24],[8,-10],[25,-29],[4,-5],[-1,-13],[-1,-16]],[[77262,23627],[-13,-35],[-10,-30],[-11,-33],[-41,-81],[-25,-47],[-11,-27],[-13,-32],[-20,-45],[-8,-18],[-5,-10],[-8,-16],[-19,-39],[-1,-1],[-41,-117],[-15,-34],[-3,-9],[-3,-10],[-39,-84],[-5,-32],[-5,-33],[8,-7],[2,-35],[0,-19],[1,-18],[-35,-47],[-10,-14],[-6,-14],[2,-52],[-1,-15],[-5,-27],[-7,-20],[-15,-30],[-32,-40],[-24,-30],[-11,-10],[-14,-12],[-17,-13],[-23,-18],[-17,-11],[-34,-17],[-47,-18],[-41,-18],[-10,-12],[-12,-15],[-12,-19],[-34,-48],[-47,-32],[-20,-11],[-26,-16],[-9,-6],[-23,-18],[-12,-9],[-26,-9],[-16,6],[-15,-3],[-35,-27],[-12,2],[-17,3],[-9,-3],[-13,-9],[-16,-25],[-18,-20],[-17,-9],[-7,-3],[-19,-9],[-23,-12],[-27,-28],[-18,-27],[-25,-26],[-15,-17],[-4,-11],[-2,-11],[0,-9],[2,-31],[4,-14],[16,-24],[0,-12],[0,-12],[-5,-36],[-12,-58],[-1,-7],[-5,-21],[-5,-20],[-5,-15],[-3,-12],[-8,-29],[-19,-81],[-16,-74],[-4,-44],[3,-27],[7,-28],[9,-25],[19,-34],[11,-15],[9,-7],[7,-16],[7,-29],[3,-13],[8,-32],[7,-24],[1,0],[17,-79],[7,-27],[3,-14],[3,-11],[12,-35],[7,-17],[3,-7],[18,-38],[34,-55],[22,-25],[9,-23],[-2,-14],[-35,-8],[-41,-46],[-65,-73],[-14,-17],[-5,-7],[-22,-24],[-27,-31],[-15,-23],[-18,-24],[-19,-10],[-22,-11],[-8,-30],[37,-86],[50,-117],[8,-20],[19,-43],[72,-174],[0,-8],[2,-72],[-3,-32],[-2,-15],[-10,-106],[-2,-8],[-8,-62],[-2,-16],[-5,-33],[57,-114],[11,-21],[29,-55],[90,-124],[42,-57],[23,-32],[20,-30],[103,-141],[12,-18],[86,-120],[7,3],[29,-59],[12,-34],[3,-13],[6,-23],[26,-103],[94,-192],[11,-20],[9,-16],[3,-6],[19,-32],[14,-24],[20,-38],[22,-24],[158,-176],[77,-105],[1,-17],[6,-28],[19,-86],[35,-157],[12,-64],[9,-52],[19,-69],[5,-19],[12,-40],[4,-20],[20,-92],[14,-67],[8,-41],[6,-28],[11,-51],[16,-75],[39,-151],[23,-136],[-3,-7],[0,-53],[34,-20],[14,1],[2,0],[22,9],[20,0],[13,-11],[23,-17],[18,-10],[29,6],[14,7],[24,12],[13,5],[8,1],[41,-18],[12,-6],[19,-23],[5,-8],[10,-18],[18,-37],[6,-28],[-5,-15],[-9,-7],[-15,-9],[-35,-14],[-5,-8],[-1,-8],[4,-11],[25,-32],[10,-13],[9,-34],[5,-17],[21,-26],[12,-1],[54,-7],[7,-9],[1,0],[7,-13],[-1,-22],[0,-6],[-15,-28],[-14,-29],[-9,-18],[-27,-42],[-3,-5],[4,-22],[3,-3],[15,-17],[30,-17],[20,-27],[5,-15],[-6,-53],[-31,-50],[2,-31],[13,-81],[1,-7],[3,-3],[9,-11],[1,-2],[14,-1],[34,20],[19,12],[10,-24],[4,-7],[-13,-11],[-8,-9],[-7,-4],[-50,-29],[-21,-23],[-7,-18],[-1,-29],[-1,-5],[3,-10],[9,-28],[-3,-23],[-2,-17],[0,-6],[-7,-7],[-39,-37],[-22,-20],[-23,-22],[-2,-25],[16,-20],[3,-2],[42,-35],[8,-70],[1,-11],[-2,-40],[-12,-12],[-35,-26],[-3,-2],[-17,-20],[-24,-76],[-21,-70],[-9,-104],[5,-22],[7,-22],[-2,-87],[14,-19],[22,-30],[-1,-19],[-3,-56],[-1,-17],[9,-116],[2,-24],[26,-30],[15,-2],[17,-3],[4,0],[14,5],[49,-29],[0,-4],[9,-30],[1,-36],[0,-36],[0,-46],[0,-15],[0,-3],[0,-15],[-1,-10],[0,-11],[0,-49],[0,-33],[-1,-52],[1,-34],[-1,-25],[-3,-16],[0,-15],[-6,-286],[2,-23],[0,-4],[-2,-91],[-1,-25],[-1,-35],[1,-32],[0,-1],[0,-61],[0,-26],[-1,-74],[5,-125],[36,1],[0,-173],[0,-39],[0,-47],[0,-54],[0,-120],[0,-36],[1,-168]],[[77848,12969],[-25,-50],[-52,19],[-37,45],[-23,25],[-40,43],[-25,61],[-4,27],[-4,23],[-6,33],[-45,78],[41,20],[-38,26],[-7,5],[3,8],[22,50],[-32,60],[-13,34],[-14,35],[-21,67],[-59,-16],[-2,0],[-51,-32],[-2,-1],[2,15],[5,36],[-5,2],[-45,21],[-9,-75],[-24,-6],[-8,-2],[-19,-5],[-32,-10],[-23,13],[-31,17],[-12,47],[-8,32],[-3,9],[-17,51],[10,69],[-31,96],[-27,55],[-6,11],[-43,25],[-40,24],[-42,53],[-51,-74],[23,-51],[-45,-41],[-54,-14],[-42,4],[-77,-1],[-58,-27],[-28,4],[-31,3],[-26,51],[-9,20],[-14,32],[-9,68],[-34,68],[-39,32],[-57,-9],[-10,12],[-97,93],[-202,10],[-185,299],[-160,70],[-50,22],[-177,155],[-162,-31],[-81,144],[-153,114],[-4,8],[-77,136],[-17,16],[-63,56],[-123,-27],[-63,-14],[-258,-361],[-274,93],[80,206],[-3,15],[-29,129],[-105,72],[-48,114],[-89,30],[48,124],[146,10],[145,11],[8,92],[-16,176],[105,0],[105,72],[40,-93],[122,-37],[15,-4],[73,113],[-2,70],[69,32],[94,176],[194,268],[33,211],[-17,150],[-73,72],[0,113],[65,113],[-8,104],[24,133],[-40,310],[-97,236],[-32,22],[-73,51],[89,92],[22,-20],[32,-29],[2,-2],[1,4],[2,16],[2,17],[3,25],[-56,82],[-6,1],[-60,13],[-60,13],[-19,4],[-2,-3],[-55,-110],[-95,-73],[-49,-37],[-17,-14],[-140,127],[-37,33],[-17,15],[40,124],[-11,47],[-1,6],[-12,50],[32,82],[-42,28],[-84,53],[-35,22],[-32,0],[-41,0],[-80,0],[-113,19],[-85,-12],[-1,-3],[-6,-51],[-5,-39]],[[74097,18438],[-24,-2],[-26,-2],[-43,-9],[-19,-6],[-25,-11],[-27,-18],[-1,-1],[-52,-10],[-32,1],[-28,21],[-12,18],[-2,2],[-28,43],[-4,5],[-5,8],[-28,34],[-10,13],[-15,52],[-20,32],[-12,4],[-26,-14],[-10,-2],[-33,0],[-5,-1],[-18,-18],[-41,3],[-16,10],[2,51],[-145,2],[-161,2],[-69,1],[-74,1],[-40,5]],[[84594,29968],[-19,-31],[-17,-29],[-32,-55],[-5,-8],[-17,-58],[-56,-7],[-56,50],[-54,12],[31,-54],[-46,-52],[-31,-8],[-3,68],[-37,-36],[-21,-65],[-2,-4],[-45,-15],[-3,-1],[-53,-11],[7,-33],[3,-13],[-19,-26],[-21,-29],[48,9],[9,5],[24,17],[4,2],[42,28],[45,31],[48,23],[-19,-61],[-17,-68],[-58,-87],[-15,-17],[-29,-32],[-16,-17],[-20,-23],[-36,-95],[-13,-29],[-12,-23],[-14,-27],[-13,-24],[-33,-56],[-18,-21],[-27,-29],[-29,-21],[-19,-14],[-33,-23],[-27,-18],[-24,-17],[-21,-8],[-22,-33],[-57,-45],[-79,23],[-34,-41],[-18,-11],[-20,-9],[-13,-19],[-12,-22],[-43,-49],[29,-34],[-1,-2],[-4,-36],[-3,-29],[-6,-25],[-6,-25],[-5,-24],[-5,-34],[-8,-24],[0,-36],[-8,-41],[-7,-27],[-4,-26],[-4,-42],[-4,-52],[-4,-87],[-3,-26],[0,-29],[2,-26],[-13,-88],[-58,-49],[-23,-12],[-31,-15],[-31,-16],[-21,-9],[-56,-24],[-80,-18],[-21,0],[-27,0],[-25,-1],[-26,-1],[-22,-5],[-25,-6],[-23,-3],[-24,3],[-21,-8],[-39,-15],[-21,-7],[-22,-15],[-20,-9],[-23,-5],[-20,-4],[-33,-13],[-17,-11],[-23,-13],[-9,-23],[-17,-12],[-19,-14],[-20,-2],[-20,-16],[-22,-13],[-15,-22],[-13,-26],[-12,-23],[-14,-20],[-9,-24],[-8,-83],[-9,-26],[1,-26],[4,-31],[-3,-30],[6,-29],[10,-24],[8,-26],[13,-27],[11,-23],[15,-27],[13,-24],[43,-59],[17,-28],[25,-42],[15,-29],[15,-29],[9,-79],[35,-12],[33,-49],[18,-61],[-49,-52],[-76,-15],[-49,-10],[-29,-34],[-25,-1],[-20,-1],[-70,1],[-31,32],[-19,23],[-15,20],[-22,23],[-35,26],[-18,18],[-30,17],[-15,7],[-33,35],[-1,6],[-9,56],[-30,15],[-3,7],[-8,17],[-20,23],[-19,24],[-23,5],[-34,15],[-2,1],[-37,9],[-21,13],[-21,14],[-55,19],[-16,14],[-23,19],[-42,44],[-153,14],[-34,-2],[-18,15],[-20,2],[-19,6],[-23,5],[-28,7],[-11,3],[-26,8],[-21,3],[-28,3],[-21,-1],[-22,2],[-20,2],[-25,1],[-24,-1],[-23,8],[-39,-5],[-26,4],[-48,-4],[-20,-1],[-28,-1],[-47,-3],[-33,-3],[-19,2],[-32,1],[-23,-5],[-20,-1],[-43,-11],[-20,-3],[-55,-5],[-62,-29],[-39,-62],[-23,-28],[-30,-35],[-17,-13],[-63,-46],[-57,-35],[-38,-35],[-32,-60],[-16,-17],[-21,-24],[-35,-34],[-40,-43],[-26,-42],[-27,-35],[-20,-50],[-19,-37],[-14,-27],[-11,-21],[-16,-32],[-64,-142],[-25,-47],[-94,27],[-29,-24],[-19,-4],[-11,-24],[-13,-24],[-5,-26],[2,-48]],[[80109,26247],[-4,-8],[-3,-8],[-7,-23],[-3,-6],[-12,-9],[-11,-7],[-7,-16],[-9,-6],[-12,-5],[-15,-7],[-17,-10],[-8,-7],[-4,-9],[-1,-25],[7,-12],[16,-15],[37,-27],[48,-37],[10,-17],[1,-24],[-11,-22],[-14,-21],[-16,-19],[-18,-16],[-17,-10],[-25,-3],[-13,2],[-12,5],[-15,12],[-9,10],[-14,29],[-5,18],[-9,35],[-12,14],[-12,6],[-23,0],[-17,-12],[-10,-13],[-12,-18],[-12,-29],[-10,-27],[-5,-8],[-13,-13],[-13,-16],[-10,-11],[-26,-13],[-22,-9],[-30,-11],[-10,3],[-6,3],[-12,10],[-9,13],[-6,10],[-12,30],[-12,26],[-14,20],[-4,6],[-6,11],[-5,12],[0,7],[3,12],[9,15],[3,7],[-1,10],[-3,8],[-7,18],[-2,10],[1,13],[0,14],[-4,8],[-7,4],[-7,1],[-8,2],[-13,1],[-20,12],[-7,5],[-8,9],[-5,11],[-5,22],[-4,10],[-19,18],[-10,6],[-21,13],[-40,27],[-7,2],[-9,-1],[-14,-14],[-9,-9],[-15,-14],[-6,0],[-12,2],[-10,3],[-8,3],[-28,10],[-42,16],[-17,7],[-10,2],[-5,-2],[-15,-21],[-20,-9],[-23,-2],[-21,-9],[-32,-13],[-27,-12],[-12,-4],[-7,-2],[-35,-15],[-6,-6],[-6,-3],[-9,-8],[-4,-13],[-3,-7],[-2,-10],[-5,-7],[-8,-9],[-7,-8],[-16,-19],[-12,-12],[-9,-19],[-22,-8],[-7,-3],[-6,-5],[-6,-8],[-5,-6],[-13,-16],[-11,-4],[-15,1],[-6,-8],[-1,-11],[2,-7],[0,-16],[-3,-8],[0,-7],[-5,-8],[-8,-2],[-6,3],[-4,5],[-7,-2],[-7,-12],[-8,-5],[-4,-8],[-6,-5],[-7,-4],[-7,-6],[-10,-3],[-8,6],[-6,-6],[-27,1],[-22,0],[-9,-3],[-13,-5],[-5,-2],[-11,-5],[-8,-4],[-5,-4],[-10,-4],[-5,-4],[-5,-6],[-13,-15],[-17,-16],[-10,-5],[-9,0],[-6,0],[1,-7],[-13,-31],[9,-27],[-6,-10],[-3,-11],[-5,-8],[-6,-12],[-6,-2],[-9,-3],[-11,0],[-53,36],[-13,2],[-9,3],[-6,1],[-6,3],[-7,7],[-3,1],[-5,2],[-9,-2],[-7,-4],[-7,-5],[-9,-6],[-6,-3],[-9,-3],[-6,-2],[-7,-3],[-20,1],[-21,8],[-6,-1],[-12,-3],[-8,-3],[-8,-5],[-7,0],[-12,7],[-5,5],[-8,10],[-6,11],[-6,12],[-3,13],[-2,9],[-1,10],[-1,8],[0,10],[-1,16],[-3,15],[-3,6],[-7,7],[-8,5],[-6,2],[-11,-1],[-7,-1],[-8,-5],[-5,-7],[-7,-7],[-7,-6],[-15,-4],[-6,3],[-5,3],[-7,6],[-7,9],[-11,15],[-11,15],[-9,8],[-19,21],[-8,8],[-9,7],[-10,3],[-10,0],[-10,-3],[-6,0],[-10,7],[-8,8],[-8,7],[-7,5],[-8,3],[-14,6],[-9,7],[-12,11],[-6,6],[-1,17],[1,18],[-5,11],[-8,9],[-5,3],[-6,3],[-5,1],[-14,0],[-16,-1],[-10,-3],[-14,-12],[-5,-6],[-7,-9],[-6,-8],[-5,-9],[-5,-8],[-7,-12],[-5,-7],[-6,-7],[-5,-5],[-6,-4],[-14,-10],[-12,-9],[-5,-7],[-6,-14],[-2,-13],[-2,-11],[-4,-7],[-17,-16],[-8,-4],[-7,-3],[-13,-3],[-13,-1],[-11,1],[-9,5],[-6,6],[-25,15],[-18,17],[-24,13],[-12,8],[-8,-2],[-13,-24],[-9,-29],[-14,-37],[-7,-25],[-10,-22],[-12,-33],[-12,-32],[-41,-107],[-12,3],[10,35],[17,44],[-12,6],[-24,14],[-26,-33],[-3,-9],[-15,-6],[-8,-9],[0,-14],[1,-8],[0,-6],[8,-7],[8,-5],[17,-8],[1,-9],[-17,-47],[0,-5],[0,-4],[-1,-9],[-9,-21],[-16,-36],[-1,-1],[-10,-28],[-5,-13],[-14,-38],[-10,-28],[-9,-25],[-29,-78],[-4,-9],[-17,-41],[-21,-54],[-3,-5],[-2,-5],[-9,-30],[-8,-23],[-8,-22],[-2,-4],[-16,-40],[-5,-12],[-6,-16],[-16,-45],[-12,-35],[-26,-72],[33,-23],[43,-32],[50,-35],[78,-63],[22,-17],[6,-5],[24,-20],[3,-2],[20,-17],[85,-66],[22,-16],[47,-33],[26,-20],[18,-11],[32,-20],[31,-18],[63,-32],[30,-13],[12,-5],[27,-12],[96,-42],[28,-11],[15,-7],[27,-4],[104,-15],[29,-3],[37,3],[38,2],[6,0],[57,1],[53,1],[22,1],[23,1],[103,4],[30,4],[51,1],[22,-1],[38,-6],[52,-16],[27,-9],[66,-35],[39,-32],[20,-18],[9,-8],[16,-15],[66,-78],[16,-28],[23,-30],[48,-84],[20,-33],[57,-117],[13,-25],[27,-48],[22,-37],[20,-40],[3,-6],[6,-10],[37,-86],[17,-52],[31,-103],[5,-31],[7,-47],[2,-23],[1,-38],[-1,-30],[-2,-23],[-3,-27],[-5,-25],[-3,-16],[-3,-8],[-17,-48],[-2,-6],[-22,-40],[-47,-54],[-29,-20],[-29,-15]],[[79122,22968],[-51,-26],[-24,-10],[-20,-5],[-33,-6],[-17,35],[-14,31],[-22,47],[-7,15],[-29,61],[-79,144],[-18,32],[-12,23],[-22,37],[-13,23],[-9,16],[-38,67],[-12,28],[-19,35],[-26,46],[-27,16],[-64,34],[-55,29],[-24,12],[-45,24],[-51,27],[-35,19],[-22,12],[-10,6],[-17,6],[-60,31],[-45,23],[-44,8],[-29,5],[-56,9],[-65,11],[-22,4],[-49,6],[-6,-4],[-17,-9],[-9,-4],[-39,-20],[-9,-6],[-4,-12],[-11,-7],[-13,0],[-26,8],[-18,12],[-51,32],[-6,2],[-15,3],[-8,0],[-9,4],[-15,7],[-21,9],[-3,-27],[-1,-5],[-2,-37],[-5,-46],[-2,-31],[-1,-7],[-4,-31],[-1,-7],[-1,-4],[-2,-25],[-2,-27],[-2,-14],[-2,-30],[-4,-40],[-5,-50],[-91,77],[-11,10],[-6,4],[-14,12],[-14,11],[-71,56],[-13,11],[-31,12],[-2,-53],[-1,-57],[-26,16],[-81,51]],[[88109,17886],[-3,-44],[-28,-43],[48,-24],[-25,-60],[-57,27],[-16,-57],[-35,15],[-15,39],[-39,28],[-34,12],[-22,34],[15,58],[58,-4],[60,-9],[45,-1],[48,29]],[[86278,17871],[48,5],[-18,44],[45,12],[40,1],[43,-32],[46,-28],[59,-37],[-41,-46],[49,-38],[77,-66],[47,-23],[39,-13],[31,-27],[48,-33],[42,-48],[9,-48],[-6,-43],[38,-13],[31,-30],[29,-43],[27,-59],[41,-49],[29,-52],[-79,20]],[[86952,17225],[-45,12],[-29,43]],[[86878,17280],[-8,13],[-25,62],[-25,34],[-22,21],[-21,8],[-26,29],[-12,28],[-39,38],[-33,58],[-34,32],[-44,27],[-28,13],[-22,7]],[[86539,17650],[-60,20],[14,57],[-36,52],[-67,-30],[-76,20],[-36,102]],[[86278,17871],[-55,-51],[-58,25],[-20,60],[-30,18],[46,65],[29,-94],[43,-4],[45,-19]],[[86129,18220],[55,10],[45,13],[50,51],[55,-16],[55,-14],[4,-56],[-46,-31],[-36,-54],[1,-73],[40,-39],[-57,-21],[-34,13],[-29,22],[1,51],[-6,48],[-38,25],[-60,71]],[[85929,18187],[-22,-81],[-34,55],[-9,47],[28,60],[68,27],[32,-64],[-63,-44]],[[86129,18220],[-53,12],[-26,51],[21,44],[38,27],[-34,38],[81,-5],[44,-71],[-57,-8],[-14,-88]],[[87771,18410],[50,-14],[45,19],[55,14],[-19,-42],[-11,-49],[48,-44],[54,-30],[31,-60],[44,-30],[-3,-41],[-31,13],[-41,-6],[-44,-40],[-11,-107],[-58,57],[-41,-57],[-18,-41],[-33,22],[-38,45],[-51,-46],[30,108],[-12,74],[18,87],[18,62],[24,45],[-39,7],[-25,42],[-9,60],[38,-4],[29,-44]],[[89054,18569],[-48,-3],[-52,36],[-39,44],[47,55],[34,-18],[35,-54],[23,-60]],[[86059,18938],[24,-21],[29,-1],[-2,-17],[-31,-3],[-20,-30],[-2,-33],[-14,-5],[-10,12],[-20,-2],[1,31],[7,24],[7,5],[9,2],[-2,26],[11,-8],[13,20]],[[85412,19000],[46,-45],[-42,-5],[-20,-19],[-5,-3],[-17,-10],[-7,-4],[-13,13],[2,7],[-29,45],[22,10],[30,-16],[20,0],[13,27]],[[85773,18972],[34,-33],[0,-21],[-25,13],[-21,16],[-58,-2],[-14,14],[59,44],[25,-31]],[[85057,19102],[15,-41],[-27,-15],[-3,-28],[-3,-17],[-10,4],[-3,-10],[-19,2],[-2,9],[-19,-5],[-11,35],[39,9],[11,31],[1,-12],[31,38]],[[86486,19122],[37,0],[20,0],[15,-7],[6,-2],[-2,-14],[6,-29],[26,-57],[22,-18],[-25,-24],[3,-15],[27,-66],[-18,-46],[10,-47],[55,-36],[57,-3],[34,46],[35,-45],[8,-55],[34,-40],[-51,-5],[-60,10],[-46,0],[-50,-19],[-14,77],[-54,-32],[-37,-32],[-7,-27],[-51,-26],[-13,63],[-48,63],[-16,-16],[44,81],[-74,76],[-9,6],[1,30],[-43,0],[0,41],[65,36],[42,39],[22,-23],[42,36],[0,21],[-32,50],[39,9]],[[84309,19232],[8,-4],[30,6],[77,8],[54,-53],[-34,-32],[-69,30],[-18,-18],[3,-8],[-39,7],[-8,2],[-18,19],[-30,0],[-23,30],[22,-1],[25,25],[20,-11]],[[85700,19181],[-32,-18],[-6,32],[24,16],[10,7],[0,9],[26,28],[0,-63],[6,-5],[-28,-6]],[[85287,19219],[-29,-24],[-19,2],[12,32],[-21,18],[12,26],[20,3],[18,19],[2,-32],[27,-23],[-22,-21]],[[85433,19318],[-4,-85],[-19,9],[-9,0],[-12,0],[-11,1],[-14,21],[-18,68],[46,-24],[25,51],[16,-41]],[[86527,19361],[10,-15],[28,2],[-18,-52],[-3,-14],[3,-36],[7,-15],[5,-63],[-36,52],[-26,32],[0,7],[-11,14],[36,29],[-12,36],[-31,7],[-27,-9],[-45,45],[18,3],[32,-16],[70,-7]],[[84653,19370],[-39,-91],[-24,-18],[-7,-3],[-3,17],[-12,12],[-25,26],[6,34],[22,-23],[16,-3],[22,66],[44,-17]],[[85882,19398],[-9,-32],[-44,21],[-24,-8],[-4,-12],[4,-9],[4,-10],[-12,-15],[-13,10],[-12,9],[-16,0],[-26,-27],[-20,74],[36,28],[40,20],[43,21],[9,-34],[44,-36]],[[88320,19307],[6,-48],[-38,9],[-48,5],[-42,23],[-6,48],[1,46],[-28,40],[37,27],[68,8],[42,47],[17,-46],[-6,-68],[-32,-5],[-8,-43],[37,-43]],[[85075,19415],[11,-11],[20,24],[25,31],[37,-90],[-78,1],[-62,-7],[-32,-9],[-33,-41],[-23,-69],[-27,-27],[-48,-102],[-45,2],[6,59],[6,61],[3,31],[-59,-1],[-50,-2],[19,52],[42,1],[44,5],[15,2],[49,91],[66,23],[-57,16],[-31,8],[61,75],[104,-19],[13,-85],[24,-19]],[[86308,19549],[-3,-34],[-35,-14],[-33,-11],[-22,2],[-25,-7],[-21,-24],[-17,16],[32,53],[31,-4],[15,0],[16,6],[62,17]],[[86425,19564],[11,0],[20,17],[16,-8],[16,-6],[42,31],[22,-8],[-18,-17],[-15,-50],[2,-38],[-24,-17],[-23,45],[-65,40],[-70,1],[-6,18],[35,32],[36,39],[31,1],[19,-9],[-10,-33],[-45,-1],[1,-15],[25,-22]],[[86141,19650],[2,-56],[-51,-13],[-15,-29],[16,-39],[14,-13],[5,-5],[18,-17],[-13,-13],[-17,-21],[-42,-48],[0,-63],[25,-31],[46,-33],[-52,-35],[-48,8],[12,30],[-27,71],[-3,27],[12,29],[23,25],[8,61],[3,15],[-14,15],[-23,-9],[-20,45],[13,11],[3,33],[29,-1],[14,4],[32,16],[9,26],[41,10]],[[85321,19524],[23,-73],[-98,59],[-18,-31],[55,-58],[17,-36],[57,-8],[-27,-29],[-59,14],[-33,-1],[-11,16],[-14,4],[-17,36],[-7,67],[-45,3],[-7,23],[67,11],[74,49],[56,109],[24,-15],[-18,-55],[-19,-85]],[[89785,19816],[-4,-37],[-43,32],[-35,25],[-66,16],[-35,58],[103,4],[60,7],[7,-17],[2,-7],[41,-20],[-30,-61]],[[98172,19290],[-35,-12],[-46,11],[29,37],[37,37],[60,54],[28,40],[54,0],[39,46],[55,45],[46,67],[47,44],[40,31],[39,46],[45,28],[51,55],[44,41],[5,48],[37,19],[31,60],[57,40],[-29,-73],[-32,-47],[-30,-44],[-28,-42],[-29,-38],[-26,-39],[-22,-24],[-41,-47],[-62,-73],[-58,-55],[-30,-33],[-30,-30],[-64,-60],[-30,-20],[-39,-32],[-68,-52],[-45,-28]],[[88056,20082],[57,24],[41,27],[51,-56],[0,-52],[41,-86],[34,-63],[16,-36],[22,-60],[29,-61],[2,-65],[-54,61],[-31,56],[-46,25],[-20,45],[-34,69],[-19,-39],[-37,-3],[-16,76],[-22,71],[-14,67]],[[86473,19972],[1,-62],[-66,49],[-52,13],[-49,-17],[-46,19],[25,60],[-4,47],[21,47],[43,45],[24,70],[39,-40],[-15,-71],[5,-51],[11,-39],[31,-44],[32,-26]],[[99000,20269],[-32,-24],[5,63],[26,43],[15,55],[-1,57],[3,44],[39,7],[60,10],[-24,-106],[-25,-44],[-31,-54],[-35,-51]],[[99337,21019],[2,-74],[-39,-84],[-49,-32],[-40,40],[38,6],[-5,73],[-40,63],[73,-11],[60,19]],[[89889,21010],[-4,78],[-59,-5],[-60,43],[42,104],[63,5],[40,-19],[22,-57],[85,-74],[-24,-56],[46,-52],[59,-60],[58,-42],[88,-13],[33,15],[41,29],[32,36],[50,-43],[57,8],[91,22],[53,69],[29,59],[20,53],[11,53],[17,38],[41,37],[84,-24],[37,54],[56,-14],[-3,-62],[-45,-34],[-5,-43],[15,-97],[-31,-27],[10,-48],[52,-51],[66,36],[-22,-52],[-32,-73],[27,-27],[33,-28],[-21,-46],[10,-93],[6,-81],[37,-64],[50,-24],[24,-50],[-64,-32],[-52,12],[-49,-6],[-28,-40],[-37,-1],[-73,-11],[-53,-18],[-7,42],[-22,56],[-45,1],[-40,9],[-47,-5],[-13,39],[-20,33],[-36,72],[-61,49],[-71,80],[-43,57],[-50,35],[-56,33],[-45,12],[-34,22],[-36,20],[-30,24],[-42,32],[-27,44],[-40,43],[-58,18]],[[87974,21166],[-64,-1],[-61,11],[-36,14],[-54,8],[-46,12],[-3,78],[-2,62],[69,-27],[60,-62],[49,-11],[50,-15],[38,-69]],[[99337,21019],[-31,41],[-37,33],[32,13],[31,-20],[15,46],[6,56],[51,5],[-17,64],[37,6],[5,52],[50,37],[-3,-54],[-21,-49],[-22,-76],[-29,-79],[-28,-71],[-39,-4]],[[89552,21626],[-57,-29],[-51,-1],[-28,-47],[-43,12],[-44,-16],[-35,12],[-19,80],[80,19],[60,-9],[70,8],[67,-29]],[[87589,21666],[16,-63],[-72,41],[-31,49],[-56,22],[33,23],[38,46],[25,-74],[47,-44]],[[89245,21734],[-28,-70],[-71,7],[-41,7],[-19,55],[-42,48],[-60,12],[38,34],[71,-5],[45,-1],[56,-49],[51,-38]],[[89552,21626],[29,70],[48,53],[-72,9],[-26,-48],[-90,20],[-61,16],[-32,49],[48,56],[43,0],[72,71],[46,22],[60,-19],[12,-84],[36,-20],[38,-27],[58,-9],[27,-10],[45,-8],[48,1],[39,-50],[-34,-18],[-68,-32],[-36,-28],[-39,-58],[-49,-38],[-30,26],[-47,30],[-65,26]],[[91867,21905],[-50,-44],[-78,13],[-44,-7],[-27,46],[30,58],[66,14],[77,-15],[26,-65]],[[90424,22109],[31,-32],[31,-66],[71,-57],[2,-62],[-62,-11],[-39,21],[-32,8],[18,32],[-12,69],[-27,31],[19,67]],[[90424,22109],[-39,16],[-45,29],[2,-69],[8,-55],[5,-58],[-62,-41],[-27,50],[-35,24],[-47,49],[-24,52],[-14,51],[-22,44],[-49,-5],[-43,28],[15,56],[61,-8],[66,-18],[58,29],[42,24],[-16,39],[-3,39],[63,48],[49,-3],[-18,-60],[11,-54],[-6,-67],[40,-41],[34,-12],[3,-38],[-7,-49]],[[90378,22573],[-55,-68],[-86,20],[-7,69],[62,-3],[31,-9],[55,-9]],[[90172,22604],[-32,-18],[-33,15],[-50,-6],[-35,-71],[-22,49],[39,59],[67,32],[38,-21],[28,-39]],[[99203,22502],[-18,-64],[-51,39],[2,128],[22,62],[-34,19],[-13,88],[-54,29],[47,75],[40,-44],[7,-66],[24,-119],[28,-147]],[[90699,22933],[51,-2],[-41,-35],[-44,-12],[-34,-7],[-41,-1],[24,-44],[73,-4],[46,-43],[25,-33],[-52,-11],[-17,-48],[-64,-11],[-46,-43],[-32,-59],[-37,35],[-36,23],[-3,48],[-22,30],[-41,37],[-44,16],[-54,-7],[79,98],[75,5],[26,42],[32,2],[32,25],[32,-2],[57,9],[56,60],[0,-68]],[[99679,22935],[-14,-8],[-27,2],[-31,-10],[-17,-14],[-22,16],[70,82],[38,5],[4,6],[64,9],[-18,-50],[-47,-38]],[[90966,22996],[44,-48],[44,-14],[23,-41],[65,20],[49,5],[0,47],[12,36],[45,14],[34,-51],[63,19],[-8,-87],[-8,-72],[26,-56],[15,-75],[2,-94],[-30,-72],[-66,-37],[-55,9],[-38,40],[-53,-36],[-42,-28],[-47,33],[46,43],[55,20],[27,46],[60,-23],[39,-27],[23,38],[24,68],[-59,0],[-16,47],[-61,-4],[-67,-39],[-39,73],[-59,5],[-36,3],[-47,48],[-12,97],[42,4],[-13,39],[-48,3],[-42,-29],[-44,12],[35,84],[-15,41],[38,-1],[55,-9],[39,-51]],[[91506,23099],[52,-16],[33,8],[38,-5],[-18,-51],[-14,-65],[-24,-54],[-47,10],[-43,60],[-20,64],[45,7],[-2,42]],[[91141,23213],[-14,-76],[11,-71],[-31,-71],[-45,-6],[-52,10],[-20,29],[-4,54],[12,87],[-7,51],[52,-25],[47,28],[51,-10]],[[90731,23224],[55,-14],[39,7],[27,-27],[-53,-64],[-36,-22],[-35,5],[-18,37],[-38,-4],[-73,4],[65,40],[-53,47],[55,9],[65,-18]],[[98843,23102],[-35,-43],[0,94],[21,60],[18,64],[31,59],[35,48],[1,-87],[4,-40],[-6,-59],[-47,-42],[-22,-54]],[[91583,23344],[52,-30],[80,38],[60,8],[43,-4],[58,13],[56,4],[-7,-99],[14,-66],[-31,-44],[-33,2],[-61,-9],[-48,5],[-45,22],[-34,32],[-48,8],[-54,0],[-38,60],[-18,101],[54,-41]],[[98922,23518],[-45,-27],[-19,8],[-22,5],[1,49],[28,26],[38,-15],[19,-46]],[[90252,23468],[-91,-42],[24,65],[46,28],[27,70],[52,22],[57,-21],[12,-51],[-31,-49],[-40,-8],[-56,-14]],[[88853,23754],[-28,25],[4,46],[-32,66],[-10,50],[3,55],[39,34],[36,-21],[20,-62],[42,-51],[-33,-57],[-24,-42],[-17,-43]],[[90367,24076],[-29,-53],[-46,30],[-2,62],[37,25],[30,28],[27,-48],[-17,-44]],[[90999,24288],[-40,-49],[-64,-47],[-61,-63],[-35,-40],[44,-12],[-6,-49],[-4,-64],[-38,8],[-54,10],[-51,-13],[-30,-22],[-43,-11],[-51,-55],[-32,-44],[-29,-39],[-58,-21],[17,65],[2,47],[51,-2],[55,63],[52,45],[53,50],[68,34],[38,88],[53,13],[51,71],[43,40],[69,-3]],[[91612,24249],[-36,-71],[-27,56],[-35,71],[14,48],[41,14],[43,-65],[0,-53]],[[92744,24527],[-62,-86],[-41,3],[-67,34],[42,19],[49,13],[79,17]],[[90636,24370],[-56,-9],[40,64],[21,55],[26,47],[31,-84],[-28,-49],[-34,-24]],[[88344,24533],[53,-76],[73,11],[8,-49],[35,-47],[-36,-67],[-50,32],[-41,10],[-61,-1],[36,40],[-37,24],[-31,20],[20,50],[31,53]],[[89753,24287],[-14,-61],[-35,1],[-39,-2],[-20,68],[22,55],[1,61],[30,72],[24,71],[45,-1],[12,-61],[25,-82],[3,-73],[-54,-48]],[[88458,24669],[57,14],[36,-14],[36,-10],[40,-38],[53,-48],[-42,-57],[-49,26],[-51,39],[-26,39],[-26,-49],[-29,-54],[-54,8],[19,55],[36,89]],[[90999,24288],[44,87],[27,59],[29,41],[29,46],[13,44],[47,-3],[15,-82],[49,54],[42,58],[-7,50],[21,49],[57,13],[45,-50],[60,-1],[32,-21],[34,-30],[51,-25],[76,-35],[57,-17],[-31,-36],[-39,-15],[-29,16],[-43,7],[-40,-12],[-34,2],[-43,10],[-60,1],[-57,-33],[-50,-47],[-52,17],[-65,-45],[-44,-34],[-38,-36],[-52,-23],[-44,-9]],[[89268,24379],[30,-43],[-8,-84],[-39,-54],[-16,44],[-35,42],[-51,62],[-57,11],[-40,-39],[-16,-71],[-54,44],[-38,-70],[73,-49],[11,-91],[-58,-66],[-31,37],[-68,58],[-52,14],[-67,23],[-39,-50],[-32,-19],[-12,45],[-44,60],[-28,47],[-15,59],[58,15],[33,47],[60,-44],[56,16],[65,-14],[63,73],[40,-21],[57,32],[29,10],[27,34],[-27,90],[25,35],[37,39],[51,41],[14,49],[1,38],[-39,46],[31,33],[31,-28],[38,-10],[41,-29],[2,-77],[-5,-64],[-1,-49],[-17,-53],[16,-119]],[[91981,24708],[2,-40],[20,-69],[41,-18],[20,-49],[-74,-24],[-67,-11],[-37,25],[-41,1],[-38,3],[-46,9],[34,44],[25,50],[9,88],[43,-36],[39,62],[24,42],[3,49],[-31,45],[78,-13],[5,-51],[-11,-46],[2,-61]],[[90382,25043],[10,-50],[47,14],[12,-68],[-26,-13],[-29,-16],[-39,-36],[-41,37],[-13,57],[15,90],[64,-15]],[[91744,24970],[-1,-85],[-45,58],[-42,-55],[-39,52],[34,29],[12,38],[41,12],[63,46],[52,26],[24,43],[32,40],[48,12],[-34,-64],[-31,-48],[-35,-44],[-41,-31],[-38,-29]],[[93245,25229],[3,-65],[-39,3],[-81,15],[15,49],[55,10],[47,-12]],[[89638,25358],[52,-58],[39,-26],[60,-30],[-9,-77],[-28,-43],[-47,-30],[-23,-31],[-32,-16],[-14,-52],[-25,-62],[-45,56],[-38,44],[48,40],[30,37],[15,49],[25,99],[-8,100]],[[91164,25058],[45,-20],[0,43],[37,16],[8,-49],[-12,-54],[-43,-51],[-51,-13],[-31,-17],[-51,0],[-46,24],[-12,-67],[-54,-62],[-67,4],[-12,63],[4,82],[-52,-15],[35,97],[43,41],[46,38],[42,44],[10,52],[43,26],[32,41],[6,102],[22,57],[28,1],[-10,58],[30,7],[30,30],[38,5],[32,35],[49,3],[51,-66],[6,-65],[-127,-180],[-33,-21],[-31,-29],[-35,-85],[30,-75]],[[89638,25358],[-52,42],[-16,61],[-6,70],[-26,79],[41,68],[36,-3],[46,-7],[28,-54],[57,-37],[62,-56],[-62,1],[-48,5],[-43,9],[-49,-23],[2,-72],[30,-83]],[[91444,25923],[-90,-55],[-44,58],[25,56],[69,-17],[61,-7],[-21,-35]],[[90168,25668],[8,-77],[-76,-27],[-59,-24],[-49,-50],[-62,-1],[-41,-5],[-16,75],[25,73],[51,48],[12,77],[41,67],[25,-70],[33,-97],[48,-29],[15,47],[-18,63],[-4,69],[-7,70],[-54,23],[22,72],[-1,53],[43,11],[32,-1],[30,-10],[-13,-106],[5,-63],[-20,-100],[1,-38],[29,-50]],[[91732,25657],[-27,-54],[5,-55],[56,-1],[-36,-59],[-8,-51],[-52,-12],[22,66],[-53,3],[-19,43],[25,48],[14,69],[-62,-8],[-57,56],[33,70],[55,28],[37,13],[1,72],[12,48],[42,63],[43,58],[45,17],[22,-59],[-13,-48],[-33,-63],[-18,-70],[4,-66],[-10,-52],[-28,-56]],[[91018,26041],[-67,-14],[-24,68],[25,72],[74,-24],[14,-54],[-22,-48]],[[92550,26381],[8,-75],[-42,-65],[5,-104],[-48,-62],[-48,1],[26,65],[-45,53],[-8,70],[-20,43],[-50,-10],[-29,-52],[-35,-24],[12,64],[-2,51],[38,31],[40,56],[64,31],[78,-25],[56,-48]],[[89558,26382],[-19,-64],[-35,3],[-46,41],[-52,5],[-44,-45],[-66,-58],[-23,56],[-10,55],[26,44],[38,8],[15,46],[41,-41],[46,-20],[60,-2],[69,-28]],[[88930,26274],[-18,-29],[-42,46],[-37,11],[-30,34],[-48,47],[-22,62],[31,59],[-10,98],[-16,57],[-14,60],[61,-7],[51,-49],[-3,-37],[-17,-33],[-16,-53],[21,-27],[7,-37],[19,-53],[52,-72],[44,-37],[-13,-40]],[[92231,26841],[-25,-98],[-55,23],[-9,93],[38,-2],[51,-16]],[[99288,27021],[40,-58],[35,-56],[28,-59],[33,-66],[38,-84],[40,-77],[33,-78],[1,-100],[24,-35],[31,-25],[23,-38],[18,-51],[33,-96],[26,-78],[41,-134],[20,-74],[16,-56],[13,-56],[33,-118],[14,-65],[23,-91],[21,-91],[10,-51],[16,-70],[20,-87],[22,-131],[19,-133],[7,-72],[10,-97],[14,-135],[5,-83],[3,-233],[1,-110],[-3,-95],[-2,-55],[-10,-195],[-4,-76],[-7,-119],[-33,-127],[4,-161],[-16,-152],[-7,-62],[-11,-77],[-10,-68],[-11,-82],[1,-101],[-24,-48],[-10,-66],[-8,-52],[-14,-73],[-39,-215],[-25,-111],[-12,-64],[-15,-68],[-18,-67],[-26,-103],[-28,-99],[-34,-128],[-21,-59],[-54,-169],[-16,-46],[-19,-55],[-41,-31],[-54,38],[-45,31],[-5,48],[76,10],[62,26],[-80,29],[63,26],[37,19],[4,66],[63,77],[-31,61],[38,19],[2,50],[-17,59],[30,42],[2,102],[30,49],[19,58],[-36,13],[50,36],[14,62],[26,57],[-36,37],[24,56],[-33,22],[28,30],[45,1],[0,66],[-46,-9],[20,48],[45,17],[-24,45],[31,54],[34,65],[7,64],[8,49],[-43,32],[5,53],[24,60],[-36,45],[-35,45],[44,42],[44,11],[4,49],[1,16],[24,71],[-42,51],[-8,53],[33,52],[0,64],[11,37],[-10,66],[32,71],[-31,51],[46,31],[-6,44],[-28,74],[24,38],[37,52],[-31,64],[12,46],[40,25],[-49,28],[-8,66],[-17,39],[20,33],[30,37],[-17,56],[-34,54],[-52,86],[-4,71],[28,104],[47,51],[-57,33],[-52,42],[-51,-12],[-26,46],[-44,29],[9,54],[60,31],[61,-24],[-6,72],[55,-22],[20,51],[-51,25],[-35,29],[-21,50],[36,32],[10,42],[-34,23],[-61,13],[-39,-29],[-55,-4],[19,70],[17,35],[55,51],[-6,72],[39,71],[-57,0],[13,106],[24,53],[-1,56],[-40,37],[-45,8],[32,60],[-40,15],[-51,37],[56,52],[-4,57],[-34,53],[12,42],[-5,66],[-48,25],[-36,28],[-1,79],[-33,13],[-33,-23],[-21,57],[41,13],[22,38],[-54,33],[-50,0],[15,45],[2,61],[-6,77],[-40,-1],[16,63],[-20,51],[-32,50],[-35,-28],[-8,50],[8,42],[-35,15],[-25,83],[-35,7],[-47,-6],[10,45],[17,45],[-33,21],[50,31],[31,1],[33,-96],[40,-20]],[[93075,26943],[-52,-22],[-54,31],[22,45],[38,57],[38,38],[49,47],[51,56],[42,35],[32,24],[69,-44],[34,-72],[-36,-43],[-52,-2],[-49,-16],[-62,-57],[-38,-52],[-32,-25]],[[90837,27278],[-19,-63],[-45,1],[-63,-4],[-3,74],[40,45],[43,-1],[10,-43],[37,-9]],[[91160,27188],[-27,-45],[-29,9],[-31,54],[-10,78],[-3,86],[32,-46],[23,-44],[26,-47],[19,-45]],[[89060,27365],[-52,-79],[-44,-16],[-56,-11],[-46,-10],[-63,12],[3,68],[60,47],[64,-27],[50,16],[42,12],[42,-12]],[[99124,27271],[17,-63],[-55,24],[-61,32],[-24,67],[-50,22],[22,52],[59,-15],[36,-45],[25,-31],[31,-43]],[[89060,27365],[-3,73],[40,8],[38,-27],[28,-60],[28,65],[81,23],[69,9],[204,4],[-131,-53],[-41,-9],[-48,-37],[-29,-74],[-29,-64],[9,-59],[25,-53],[76,-7],[29,-40],[-25,-72],[-42,14],[-50,24],[-36,21],[-35,-5],[-45,-23],[-8,-4],[-38,-45],[-34,-45],[-66,9],[-56,-6],[-52,-10],[-35,-5],[-38,-16],[-42,-27],[-35,-38],[-29,-50],[-50,26],[21,75],[-12,65],[-54,-3],[-28,32],[-43,46],[-10,57],[-28,46],[42,19],[21,82],[32,-60],[49,-41],[27,-19],[25,-25],[59,-16],[51,-11],[70,3],[55,-16],[49,-1],[37,-37],[48,12],[4,1],[-3,57],[-11,55],[23,51],[10,43],[-26,57],[-38,81]],[[91266,27000],[-18,-79],[-39,88],[-7,76],[-7,49],[41,2],[49,1],[-1,44],[-28,56],[38,22],[38,45],[49,51],[56,30],[33,30],[30,46],[56,-14],[14,-46],[-39,-5],[-42,-23],[-48,-50],[-25,-58],[-32,-58],[-41,-56],[-28,-29],[-30,-59],[-19,-63]],[[90642,27544],[-30,-40],[-30,73],[28,54],[25,59],[31,-33],[7,-54],[6,-46],[-37,-13]],[[93075,27730],[36,-17],[36,12],[18,-35],[-46,-43],[-48,-26],[-40,-7],[-70,1],[61,51],[-59,54],[41,10],[32,-7],[39,7]],[[88458,24669],[-61,26],[-40,-48],[-42,-11],[-60,-27],[-16,-38],[-20,-74],[-19,59],[-39,4],[31,53],[-47,-6],[-41,50],[-34,80],[-47,-53],[-5,-7],[35,-40],[21,-64],[-7,-42],[-43,35],[-56,-25],[-69,-20],[-45,-20],[-21,-34],[48,-20],[51,9],[53,-13],[52,23],[54,-14],[-28,-30],[-13,-54],[-8,-41],[-28,-24],[26,-96],[8,-35],[7,-36],[6,-26],[57,-33],[46,-25],[50,25],[38,20],[47,-11],[-46,-71],[-33,-26],[-48,-11],[-18,-72],[29,-32],[33,-29],[46,-27],[30,-53],[50,-42],[57,-40],[37,-30],[47,4],[-4,-114],[-61,-9],[-49,30],[-46,50],[-55,29],[-70,-12],[-16,-52],[-44,1],[-59,-53],[30,-71],[43,7],[-6,-50],[-2,-22],[74,29],[67,27],[28,39],[32,-68],[29,-38],[35,-43],[39,-24],[27,-39],[50,-31],[5,9],[41,69],[-6,67],[-13,62],[71,-44],[61,59],[52,-48],[41,-34],[46,-40],[41,-21],[26,-47],[20,94],[35,22],[69,-40],[4,130],[-48,16],[-29,52],[-70,-1],[-2,84],[-49,5],[-18,-33],[-42,-9],[-54,11],[16,40],[46,13],[37,29],[43,18],[5,48]],[[88853,23754],[67,-10],[21,-85],[74,29],[55,18],[47,49],[-43,34],[-20,51],[39,51],[-69,92],[51,54],[41,-1],[58,8],[0,40],[47,0],[36,63],[36,-5],[28,-60],[4,-79],[-32,-26],[40,-74],[33,-19],[-36,-42],[57,-47],[48,-58],[5,-78],[10,-59],[20,-67],[-47,-55],[-14,-17],[45,-51],[53,18],[41,-4],[22,44],[35,48],[50,-6],[28,-45],[51,30],[17,60],[0,67],[27,67],[31,57],[28,46],[-3,60],[2,67],[4,76],[78,10],[37,-24],[33,-63],[67,-10],[36,-13],[33,-7],[30,-29],[-57,-64],[-69,6],[-71,-9],[-55,-33],[35,-49],[36,-76],[-58,-3],[-72,-29],[51,-56],[63,-15],[6,-61],[-39,12],[-32,-44],[-60,4],[-29,-80],[-34,-51],[-18,-62],[-1,-2],[48,-12],[7,-59],[29,-59],[56,54],[35,28],[47,40],[31,56],[20,-47],[14,-34],[-33,-52],[50,1],[-6,-73],[35,-18],[38,-2],[36,-16],[35,-8],[37,8],[15,-38],[10,-24],[60,4],[38,26],[10,-34],[-35,-52],[-29,-38],[-35,-48],[-20,-43],[7,-60],[-61,14],[-62,-10],[15,72],[-34,-31],[-22,-20],[-51,-26],[-52,-9],[-48,68],[-48,20],[-40,6],[-74,19],[-58,68],[-1,-26],[-1,-53],[28,-52],[-39,-53],[-42,-34],[-58,-39],[-41,-48],[-19,-71],[-19,-60],[-74,61],[-20,-46],[8,-70],[-39,-42],[-28,-37],[32,-101],[-34,-38],[-71,-9],[-56,-32],[-59,-33],[28,-87],[-11,-65],[-38,-40],[-29,45],[-47,44],[-30,18],[-55,23],[-22,-44],[-51,-41],[-46,-11],[-49,-30],[-51,6],[-41,-16],[-48,38],[-38,-22],[37,-23],[-52,-39],[-39,-1],[-34,10],[-38,11],[-6,-13],[-12,-28],[-4,-40],[55,-2],[40,-32],[-15,-61],[-38,-53],[-47,-1],[-4,-74],[43,16],[30,-23],[36,1],[38,-48],[92,8],[122,-34],[39,14],[67,3],[42,26],[56,0],[25,-45],[62,-49],[31,29],[16,-46],[63,-33],[42,-35],[21,-56],[43,-16],[74,11],[51,15],[29,-45],[9,-44],[1,-2],[30,-50],[52,4],[-18,60],[73,-10],[59,19],[-2,-83],[-60,-15],[37,-59],[55,-38],[60,-52],[74,-20]],[[89889,21010],[27,-55],[40,-74],[-45,-12],[-79,18],[-45,14],[-49,-35],[-36,-19],[-51,-6],[-64,-3],[-55,-70],[-51,63],[-27,93],[-72,-17],[24,71],[-48,14],[12,60],[-33,14],[-51,35],[-47,-27],[-62,8],[-68,3],[-60,-15],[-63,-30],[-54,-37],[-41,-47],[-10,-36],[-29,-62],[21,-68],[-37,-38],[-44,-52],[-9,-59],[26,-67],[-48,-27],[-75,-28],[-4,-62],[-16,-48],[-5,-78],[-20,-38],[-66,-44],[1,79],[13,112],[21,65],[-3,67],[34,58],[-17,61],[-40,71],[-41,38],[-50,22],[-29,21],[33,28],[17,63],[50,24],[12,-46],[56,-29],[38,69],[-19,36],[-17,29],[-25,-18],[-43,19],[-31,-18],[-32,2],[-47,-8],[-35,21],[-22,-46],[-13,-58],[3,-66],[-10,-69],[-44,31],[-55,37],[17,46],[-4,9],[-23,45],[-24,-71],[-34,4],[-16,50],[-43,72],[30,51],[21,57],[27,43],[27,80],[-3,53],[-25,58],[-38,8],[-56,-6],[-44,3],[-43,25],[47,23],[-26,129],[-65,-14],[-63,39],[-37,42],[16,36],[-46,18],[-32,-20],[-54,8],[-46,-15],[-14,59],[-42,55],[68,-7],[32,10],[-12,81],[-69,52],[-53,42],[-31,38],[-23,-62],[-61,14],[-58,24],[-54,-2],[-38,8],[-51,9],[-48,-21],[-41,-25],[-14,49],[-22,-31],[-36,33],[-20,51],[-72,-3],[-18,55],[-45,38],[-53,42],[7,-54],[31,-49],[-6,-51],[-33,39],[-38,38],[-57,-19],[-41,-33],[1,0],[56,-15],[64,-66],[34,-64],[5,-10],[64,-9],[70,1],[39,30],[13,-60],[28,-48],[-52,-10],[14,-46],[34,5],[44,-79],[43,27],[23,-40],[49,8],[32,-30],[41,-14],[48,15],[43,-28],[30,-53],[73,10],[59,-19],[53,-49],[-92,-27],[-15,-93],[-59,38],[-84,30],[-53,-54],[68,-25],[29,-62],[4,-39],[-52,-18],[-2,0],[37,-67],[51,-61],[45,-46],[55,-41],[11,-90],[8,-64],[51,-117],[60,-78],[46,-16],[26,68],[41,-1],[-13,-67],[24,-62],[56,-46],[86,-34],[64,42],[74,-46],[4,-45],[-2,-47],[-11,-55],[2,-89],[-33,-38],[-45,41],[-24,-87],[-5,-9],[-22,-42],[-9,-17],[-4,-7]],[[88056,20082],[-60,12],[-92,40],[-56,0],[-100,-19],[-10,-13],[-35,-48],[-203,-218],[-67,-90],[14,-33],[45,-51],[37,-26],[32,-17],[37,-35],[31,-29],[33,-27],[49,-45],[23,-34],[54,-44],[76,-57],[58,-79],[74,-13],[23,-37],[43,-40],[39,-34],[20,-47],[-33,-35],[13,-2],[41,-9],[46,-11],[45,-25],[42,-17],[52,-48],[90,-115],[-68,7],[-37,32],[-45,-13],[-23,-45],[-8,-16],[-3,-44],[15,-53],[3,-51],[27,-55],[-16,-50],[-18,-39],[-33,-47],[-56,-28],[-35,-20],[-45,52],[-45,18],[-19,56],[-70,-2],[1,-44],[-52,17],[-40,-25],[-17,47],[-88,-14],[-53,19],[67,41],[-22,61],[51,-11],[67,-22],[-13,51],[-25,51],[-54,13],[-8,37],[-16,50],[-8,64],[-43,49],[-31,36],[-46,-11],[-33,43],[-20,-58],[-61,10],[-45,40],[-27,52],[-27,81],[-36,70],[-28,98],[-43,16],[-52,62],[35,57],[1,20],[1,42],[-69,42],[-5,7],[-37,45],[-53,-1],[-35,-26],[-43,-20],[41,-37],[33,-34],[-42,-10],[-40,-7],[-43,23],[17,-88],[-37,33],[-41,15],[-36,81],[-57,-13],[-2,66],[-50,10],[31,32],[39,0],[59,-14],[24,-66],[33,28],[-20,40],[-9,90],[-55,1],[-45,50],[36,47],[-37,33],[-63,12],[-37,-53],[-73,-5],[-64,35],[-36,39],[-14,49],[-23,63],[28,26],[-16,70],[-18,73],[-48,37],[0,70],[-48,28],[23,49],[-23,55],[-39,2],[-36,-30],[-61,-11],[-73,4],[-83,-13],[29,80],[53,14],[38,67],[-91,38],[-42,-44],[-3,-46],[-28,-30],[-36,-32],[10,-84],[62,-22],[45,-4],[63,-29],[-55,-47],[43,-48],[-41,-28],[5,-77],[-18,-87],[-77,18],[-34,-21],[-39,-23],[-58,-42],[-22,-74],[-46,-43],[-54,-6],[-9,60],[-48,67],[-36,33],[-33,49],[-34,67],[-65,31],[-42,46],[-23,50],[-31,47],[-35,58],[-13,20],[-24,41],[-23,-48],[-34,-26],[-33,-23],[-14,-42],[-5,-51],[-21,-52],[-74,-5],[-49,22],[-72,-24],[-49,-16],[-35,-42],[-38,-42],[-5,-93],[8,-49],[0,-70],[-45,-66],[-23,-39],[-25,70],[9,37],[18,51],[-44,38],[-7,45],[-39,30],[-32,42],[-23,65],[-27,54],[-60,36],[-36,20],[-42,15],[-39,18],[-38,20],[-40,23],[-10,70],[-26,21],[-8,50],[55,23],[-14,22],[-16,25],[-46,-32],[-33,-44],[-39,61],[-36,44],[-3,4],[-1,1],[-12,15],[-13,-78],[34,-54],[14,-81],[10,-49],[-62,-21],[-62,-4],[-37,-64],[-20,51],[-72,-54],[-33,-28],[-25,-70],[10,-73],[-11,-55],[-49,1],[2,-10],[13,-90],[60,-58],[16,-32],[23,-20],[6,-5],[48,-18],[-24,-44],[-31,-51],[-12,-54],[-23,34],[-36,-54],[22,-55],[52,0],[8,-77],[-14,1],[-27,2],[-6,1],[37,-62],[-1,-42],[9,-60],[34,-78],[70,-29],[39,0],[37,-14],[31,-33],[34,-30],[40,-3],[32,6],[61,-6],[20,-15],[10,36],[-30,94],[29,2],[18,-32],[52,-21],[-11,-47],[-4,-19],[-3,-9],[2,-44],[39,-48],[47,-50],[61,-14],[54,18],[37,22],[24,52],[43,23],[10,14],[39,-22],[87,-33],[52,2],[14,15],[22,24],[34,-35],[36,-8],[-11,-46],[-12,-48],[-63,-61],[-34,68],[-57,-7],[-31,-20],[-18,-43],[55,-42],[11,-85],[-9,-89],[-46,31],[-14,-48],[-6,-51],[-54,-4],[-35,60],[-36,27],[-19,49],[-42,5],[-9,1],[-9,-66],[-55,-50],[-37,79],[-77,-35],[-2,-1],[-36,57],[-53,11],[14,-72],[49,-51],[14,-13],[52,-10],[14,-32],[6,-14],[47,-6],[16,-59],[58,-30],[48,3],[78,-21],[51,-25],[61,40],[37,27],[43,11],[36,26],[39,0],[47,-44],[42,30],[34,-22],[52,-36],[26,-60],[49,-16],[20,-6],[43,-13],[35,-12],[10,-3],[37,-14],[34,-24],[13,-53],[-36,3],[-49,-7],[41,-52],[36,-12],[39,-19],[51,-19],[51,20],[38,-6],[59,12],[38,10],[70,22],[43,-33],[7,-98],[65,-44],[19,-79],[73,-28],[-25,-46],[2,-34]],[[86108,17692],[-46,49],[-51,51],[-83,64],[-37,16]],[[85891,17872],[-32,55],[-67,19],[-41,-31],[27,-58]],[[85778,17857],[-31,7],[-5,2],[-29,23],[-14,11],[-14,19],[-10,14],[-3,4],[-41,55],[-28,16],[-28,9],[-19,12],[-39,-11],[-13,-2],[-16,-3],[-28,1],[-15,4],[-9,2],[-37,15],[-38,12],[-37,11],[-29,11],[-34,32],[-29,35],[-23,17],[-36,20],[-38,24],[-28,21],[-25,11],[-37,5],[-26,-2],[-8,0],[-15,-1],[-19,-1],[-25,1],[-38,8],[-35,10],[-71,17],[-54,13],[-31,8],[-40,10],[-25,6],[-15,3],[-16,7],[-31,13],[-1,0],[-24,16],[-10,7],[-26,25],[-29,39],[-22,33],[-12,24],[-24,28],[-14,18],[-15,16],[-31,41],[-21,28],[-24,36],[-14,22],[-15,16],[-22,19],[-26,22],[-20,19],[-30,51],[-18,29],[-18,22],[-30,31],[-17,13],[-30,20],[-25,20],[-28,22],[-16,15],[-25,24],[-29,29],[-30,25],[-29,24],[-26,17],[-26,16],[-22,11],[-25,11],[-23,8],[-11,-1],[-14,-1],[-19,-2],[-28,-1],[-26,5],[-26,11],[-8,3],[-3,1],[-17,8],[-9,3],[-14,6],[-19,12],[-24,14],[-24,12],[-47,15],[-3,1],[-11,7],[-10,7],[-4,3],[-16,21],[-6,8],[-28,50],[-18,27],[-15,34],[-7,54],[-8,44],[-8,23],[-2,7],[-9,28],[-7,54],[-7,35],[-9,47],[-2,14],[-7,46],[-16,53],[-1,4],[-34,44],[-26,32],[-33,36],[-24,29],[-21,28],[-17,27],[-2,3],[-7,12],[-24,40],[-14,29],[-14,38],[-14,19],[-9,12],[-2,2],[-16,12],[-9,7],[-6,3],[-16,5],[-14,4],[-5,1],[-22,9],[-35,15],[-37,18],[-43,16],[-51,18],[-16,9],[-15,8],[-13,2],[-9,2],[-7,2],[-21,-1],[-32,0],[-38,-1],[-20,1],[-9,1],[-35,9],[-24,8],[-6,1],[-34,3],[-9,1],[-21,3],[-17,-2],[-15,-1],[-32,-6],[-3,-1],[-22,-4],[-24,-5],[-27,-2],[-23,-7],[-10,-3],[-2,0],[-8,-2],[-34,-4],[-14,3],[-15,2],[-38,5],[-26,0],[-42,6],[-25,9],[-4,1],[-30,4],[-38,2],[-14,0],[-10,-2],[-23,-5],[-34,-17],[-28,-20],[-30,-11],[-22,-8],[-39,-15],[-10,0],[-36,0],[-59,7],[-12,3],[-34,5],[-31,3],[-26,0],[-26,5],[-6,1],[-29,8],[-40,23],[-28,23],[-41,32],[-36,15],[-27,10],[-13,15],[-2,3],[-9,28],[-1,18],[-2,23],[4,30],[8,33],[20,37],[22,30],[12,23],[36,34],[14,16],[-13,25],[-5,8],[-18,17],[-22,19],[-4,3],[-23,47],[-12,31],[-14,31],[-6,6],[-9,10],[-17,19],[-3,3],[-13,11],[-2,1],[-16,19],[-9,14],[-23,37],[-32,53],[-25,42],[-25,39],[-32,55],[-10,12],[-11,16],[-30,36],[-36,44],[-4,3],[-39,37],[-43,26],[-39,20],[-44,16],[-55,13],[-46,5],[-63,2],[-38,-4],[-37,-9],[-35,-9],[-3,-1],[-36,-13],[-34,-14],[-5,-2],[-19,-7],[-30,-11],[-65,-24],[-63,-22],[-66,-24],[-55,-21],[-22,-8],[-30,-10],[-47,-15],[-34,-11],[-49,-18],[-36,-7],[-11,0],[-32,1],[-27,6],[-22,9],[-24,15],[-18,17],[-19,18],[-16,19],[-15,21],[-12,21],[-11,31],[-8,23],[-4,14],[-3,8],[-1,3],[-5,7],[-16,18],[-2,10],[-4,22],[6,28],[-12,27],[-25,15],[-8,8],[-14,13],[-24,10],[-13,8],[-7,4],[0,34],[-3,31],[2,33],[4,31],[12,23],[11,21],[-65,100],[-16,19],[-27,20],[-25,23],[-13,22],[-9,22],[-15,23],[-24,20],[-140,192],[-65,202],[-23,64],[-76,231],[-52,157],[-1,3],[-21,57],[-7,23],[-9,32],[-24,70],[-9,25]],[[80109,26247],[18,-47],[-53,-43],[-34,-62],[5,-4],[41,-29],[18,5],[33,-28],[30,-64],[9,-72],[-12,-21],[18,-65],[21,-53],[7,-45],[-11,-48],[29,-83],[32,-102],[33,-83],[26,-61],[16,-47],[5,-59],[12,-80],[-17,-60],[57,-46],[32,-55],[19,-43],[-2,-31],[109,-143],[72,-39],[126,-102],[126,-65],[212,-51],[252,0],[322,70],[252,77],[338,155],[378,335],[261,-283],[-272,-129],[-33,-29],[-118,-100],[-181,-13],[-59,-199],[-2,-7],[21,-111],[45,-249],[4,-129],[117,-135],[242,-160],[126,-123],[105,-244],[174,-162],[20,-10],[209,-105],[283,-85],[116,27],[45,-51],[200,-59],[51,-5],[30,-13],[52,6],[39,-13],[54,22],[63,-16],[65,1],[42,15],[34,-6],[20,35],[43,11],[40,12],[58,-14],[68,26],[53,53],[32,7],[60,14],[29,31],[39,21],[36,17],[43,25],[43,-10],[43,12],[11,62],[44,-8],[28,33],[18,59],[48,38],[48,43],[35,65],[33,40],[16,16],[36,34],[-34,47],[20,93],[27,49],[16,30],[-44,49],[-38,50],[19,71],[0,48],[3,61],[-24,56],[3,72],[-1,81],[35,58],[16,53],[35,57],[64,71],[58,80],[4,71],[-18,35],[13,61],[32,3],[21,61],[-14,50],[-44,44],[11,62],[3,85],[33,55],[20,63],[38,61],[13,39],[28,32],[40,61],[33,71],[-2,11],[-14,79],[-16,83],[13,69],[14,66],[-21,35],[8,59],[-32,59],[-38,58],[-45,41],[-38,71],[-5,72],[53,65],[61,23],[46,-12],[37,-8],[47,41],[43,-6],[40,5],[47,45],[36,-28],[1,2],[27,40],[48,20],[3,84],[62,53],[84,15],[38,57],[39,19],[49,4],[52,75],[35,46],[10,15],[51,9],[50,35],[58,30],[42,23],[30,29],[39,-3],[45,26],[18,50],[59,30],[50,27],[80,54],[52,59],[38,49],[41,44],[53,28],[59,7],[31,42],[33,16],[46,79],[-31,83],[-43,40],[-17,78],[-5,85],[-22,76],[-22,51],[24,30],[-39,28],[36,51],[37,60],[60,49],[-33,83],[11,52],[48,19],[37,-47],[7,97],[30,55],[41,-28],[36,-49],[2,-47],[77,-27],[67,-13],[39,-55],[80,-36],[39,-15],[33,-28],[44,-58],[29,-68],[33,-21],[37,-9],[27,29],[44,15],[66,-9],[64,1],[43,-60],[56,-35],[28,-44],[-40,-11],[-3,-74],[46,-14],[39,-10],[-52,-50],[-34,-20],[-8,-5],[-42,-14],[2,-33],[1,-41],[19,-75],[39,-69],[32,-24],[36,-29],[3,-42],[74,-5],[58,-29],[61,41],[47,42],[31,-28],[40,-61],[35,-53],[-45,-42],[-30,-30],[-33,-48],[-54,60],[-61,26],[-56,-1],[-65,-27],[-50,-48],[-76,-29],[-31,-24],[-37,-17],[-44,-33],[-25,-71],[17,-93],[-5,-63],[-75,-38],[-26,-73],[-54,-15],[-23,-78],[-1,-78],[18,-65],[8,-74],[-42,-6],[-34,12],[-35,3],[-56,6],[-25,-45],[1,-1],[31,-22],[9,-7],[10,-7],[47,-58],[43,-5],[50,8],[38,38],[38,39],[58,-23],[49,12],[50,45],[38,67],[10,58],[28,-57],[51,-44],[48,-44],[-60,-1],[-37,23],[-31,-66],[-8,-99],[52,-46],[37,-11],[36,7],[-15,-54],[-64,-2],[-45,9],[-41,25],[-45,-22],[-62,-20],[-55,-39],[-63,-84],[-19,64],[-12,52],[-55,-25],[-26,25],[-42,47],[-52,21],[-8,59],[-51,69],[-62,-27],[-13,-35],[-11,-50],[37,-58],[-32,-73],[28,-91],[-9,-69],[26,-72],[49,-33],[59,-55],[66,-85],[-24,-39],[-44,-24],[-39,-16],[-55,-47],[-56,-23],[6,38],[-58,48],[-64,-13],[-1,-71],[43,-27],[0,-36],[0,-6],[0,-30],[85,6],[78,1],[49,33],[56,14],[41,-19],[44,-1],[58,21],[-21,66],[-58,12],[1,52],[51,0],[53,25],[-12,46],[-9,57],[-19,56],[21,44],[35,-27],[37,-27],[41,-21],[25,-40],[-40,-64],[-33,-67],[4,-62],[25,-78],[3,-53],[28,18],[33,21],[117,99],[35,35],[45,62],[37,67],[32,36],[7,41],[-2,46],[4,74],[38,-5],[28,-20],[48,-23],[54,-11],[58,-14],[-32,-62],[1,-69],[-26,-48],[-16,-70],[-2,-69],[41,-18],[32,55],[29,31],[49,17],[36,-22],[41,-20],[18,69],[60,41],[77,-43],[24,-31],[1,1],[47,32],[8,60],[75,-5],[57,3],[46,-1],[66,-49],[67,-41],[96,47],[-11,-77],[0,-71],[-69,17],[-25,-26],[-37,66],[-54,-10],[-51,-4],[-43,27],[-40,-32],[-2,-60],[50,-79],[12,-51],[21,-39],[47,-8],[27,-55],[-5,-61],[-31,-61],[-59,8],[-1,-67],[0,-66],[51,-27],[-55,-42],[-8,-48],[-48,-39],[-40,29],[13,70],[25,80],[26,37],[-53,49],[-44,53],[-38,38],[-36,2],[-11,0],[-53,20],[-43,-9],[-31,-29],[-26,-45],[-43,15],[-21,-24],[-58,28],[-46,-110]],[[92210,27737],[-29,83],[-29,77],[41,69],[20,66],[2,50],[-23,65],[7,51],[48,19],[25,-55],[7,-77],[24,-77],[12,-52],[13,-46],[-47,8],[-41,-57],[-17,-69],[22,-43],[-35,-12]],[[91164,28088],[-43,50],[-38,28],[-41,30],[-55,-17],[-4,80],[26,52],[40,-21],[38,-52],[38,-54],[43,-22],[-4,-74]],[[92210,27737],[-2,-64],[53,-11],[-35,-70],[2,-93],[10,-32],[12,-37],[45,-29],[5,-3],[34,38],[10,48],[48,18],[36,55],[10,86],[49,-13],[48,-1],[41,33],[25,-58],[31,-37],[40,17],[14,55],[32,12],[36,-14],[0,-70],[-2,-58],[21,-77],[54,48],[69,-5],[-64,-90],[-34,-60],[15,-55],[-20,-42],[-33,-33],[-44,-3],[-20,-52],[-3,-69],[-36,-44],[-59,-22],[17,71],[26,40],[-66,-14],[16,44],[-68,-23],[18,69],[-13,44],[-31,30],[-34,23],[12,65],[-32,12],[-24,-38],[1,-56],[-26,-40],[-16,-43],[-63,-11],[-45,26],[-8,-9],[-35,-38],[-51,18],[-15,-72],[-34,-80],[-18,-52],[0,-65],[-54,23],[-26,63],[32,89],[4,63],[-6,71],[-34,44],[-22,70],[21,48],[-5,62],[44,-28],[-12,-42],[9,-58],[47,18],[33,30],[-3,50],[-8,49],[-2,12],[-41,-18],[5,65],[-78,-18],[-61,18],[-46,2],[-42,-18],[-59,30],[-129,25],[-143,76],[-35,87],[-33,-26],[-37,58],[-35,27],[-35,14],[-55,-15],[-59,-38],[-53,-7],[-20,-38],[-34,-30],[-37,-51],[-13,64],[-10,59],[-61,-1],[-77,2],[-60,-13],[-51,-33],[-35,-65],[-46,-46],[-15,71],[-12,72],[-36,47],[-48,13],[-39,-25],[-40,-46],[-19,-74],[-43,-3],[39,-53],[-57,-5],[-55,-25],[-64,-12],[-59,-38],[-39,-32],[-16,-63],[-24,-62],[-4,-72],[15,-61],[17,-76],[-44,-57],[-30,49],[-57,74],[-30,63],[55,-14],[18,47],[-24,51],[-3,60],[38,39],[3,85],[-55,-18],[-27,-53],[-32,30],[31,86],[-57,43],[34,20],[42,-25],[43,-2],[45,41],[39,9],[40,10],[47,31],[45,38],[34,-46],[48,-37],[-20,88],[43,39],[37,49],[31,49],[19,47],[5,55],[47,-34],[49,-12],[41,12],[24,27],[5,44],[-8,46],[1,58],[8,60],[37,59],[19,-51],[2,-56],[-24,-46],[-4,-55],[34,-19],[25,44],[33,-31],[30,-27],[47,-11],[37,-44],[53,40],[43,-63],[55,-20],[3,50],[-12,68],[53,62]],[[91164,28088],[52,-12],[50,43],[36,81],[21,57],[-46,66],[-50,63],[-77,9],[-53,-3],[-9,90],[-39,34],[11,65],[29,17],[33,-5],[2,0],[16,60],[49,5],[12,-66],[48,-57],[49,-7],[25,82],[-27,93],[58,60],[83,31],[49,38],[39,-25],[10,73],[9,54],[64,20],[77,20],[85,84],[52,58],[38,31],[25,-64],[-13,-68],[-23,-64],[-23,-74],[-25,-72],[6,-72],[3,-39],[60,-63],[-25,-43],[33,-6],[29,33],[47,-48],[11,-45],[34,-50],[69,19],[40,54],[60,30],[34,-50],[-20,-47],[16,-64],[-5,-45],[9,-52],[-47,4],[-41,42],[-13,-42],[-59,31],[-75,-12],[-13,-63],[39,-84],[63,-17],[42,-31],[-11,-52],[5,-61],[-26,0],[-27,-1],[15,-92],[-43,5],[-22,-72],[-7,-51],[46,-15],[4,-46],[3,-34],[4,-68],[42,-51],[35,-4],[12,94],[52,21],[30,19]],[[92460,29341],[-28,-68],[-63,-50],[-66,0],[-65,-82],[-47,-40],[-30,35],[-29,49],[-12,120],[39,35],[41,-33],[21,31],[56,-10],[-19,68],[24,46],[54,44],[19,-36],[33,-35],[80,-15],[-8,-59]],[[88513,29579],[-13,-96],[-37,-34],[-40,-59],[-69,-50],[-42,39],[-24,-60],[-40,-15],[-62,-5],[-52,3],[-73,27],[-36,29],[17,79],[96,11],[-20,46],[0,73],[-16,75],[-20,72],[46,-19],[47,14],[33,-9],[30,-47],[33,-53],[22,-36],[30,-9],[67,-8],[-41,54],[-19,63],[32,48],[2,62],[25,58],[54,-48],[74,-60],[49,-37],[-1,-58],[-52,-50]],[[92938,29894],[-41,-64],[-33,43],[-45,21],[-46,-63],[-22,-86],[-49,-52],[-34,-24],[-45,-33],[-50,3],[41,43],[20,38],[41,15],[27,70],[33,55],[19,40],[17,61],[62,26],[42,-3],[53,-25],[10,-65]],[[64852,23478],[-8,0],[-24,-2],[-11,4],[-21,8],[-26,10],[-25,2],[-24,-3],[-27,-3],[-11,-1],[-41,-10],[-19,-4],[-49,11],[-31,21],[-13,24],[-62,29],[-27,-2],[-7,2],[-45,13],[-6,1],[-2,17],[-6,20],[-9,17],[-34,54],[-11,12],[-8,5],[-51,1],[-8,4],[-11,10],[-1,16],[-1,30],[0,2],[8,40],[1,5],[-40,44],[-10,-2],[-34,-16],[-10,-7],[-33,-24],[-7,-6],[-12,-24],[-9,-18],[-10,-12],[-30,28],[-10,22],[-6,10],[-3,11],[-12,6],[-11,2],[-10,1],[-15,-3],[-7,-3],[-9,-4],[-15,-8],[-12,-8],[-6,-6],[-6,-4],[-5,-5],[-10,-8],[-7,-6],[-8,-5],[-13,-1],[-7,1],[-6,3],[-13,20],[-4,9],[-6,6],[-11,-4],[2,-11],[-6,-8],[-3,-9],[-2,-13],[-2,-11],[0,-10],[0,-12],[2,-17],[2,-9],[4,-8],[4,-10],[3,-11],[-1,-7],[-7,2],[-6,0],[-5,-3],[-7,0],[-10,-3],[-7,-3],[-6,-4],[-8,-2],[-8,-1],[-6,1],[-5,1],[-6,1],[-6,1],[-7,2],[-9,-1],[-10,-1],[-7,1],[-9,-1],[-8,1],[-9,0],[-11,0],[-9,8],[-4,6],[1,10],[3,8],[-1,9],[-1,9],[2,7],[0,10],[2,12],[0,12],[-2,11],[-2,9],[-1,12],[1,7],[6,15],[-8,2],[-4,8],[-4,6],[-3,6],[-6,3],[-5,5],[-4,5],[-5,5],[-8,8],[-5,3],[-7,4],[-7,4],[-6,6],[-4,8],[-5,9],[-6,6],[-9,12],[-5,6],[-12,-1],[-11,-4],[-10,-2],[-11,-9],[-7,-2],[-15,-2],[-6,0],[-7,-1],[-5,-1],[-12,1],[-11,1],[-8,6],[-7,7],[-5,7],[-5,13],[-1,11],[-1,9],[2,9],[2,9],[6,7],[4,12],[4,10],[8,12],[-8,11],[-10,-1],[-26,-5],[-36,-3],[-24,1],[-41,6],[-22,2],[-33,5],[-22,3],[-25,1],[-17,-3],[-16,1],[-28,3],[-54,9],[-20,8],[-23,12],[-16,8],[-29,9],[-22,7],[-20,12],[-33,14],[-41,1],[-27,0],[-21,1],[-20,4],[-23,22],[-26,32],[-35,15],[-31,5],[-20,3],[-31,9],[-19,6],[-20,5],[-60,34],[-22,18],[-12,22],[-45,-3],[-84,-6],[-29,-2],[2,-184],[2,-74],[3,-87],[-77,-2],[-120,-4],[-2,0],[-203,-5],[-265,-6],[-38,-1],[-200,-5],[-110,-3],[-82,-2],[-361,-9],[-151,-4],[-83,-2],[-30,0],[-112,-5],[-89,-4]],[[60460,23867],[-2,113],[0,10],[-4,323],[-5,295],[-172,-5],[-156,-5],[-155,-5],[-133,-2],[-55,0],[-12,0],[-77,0],[-1,429],[0,80],[0,58],[0,37],[1,39],[0,3],[0,13],[0,10],[-2,63],[-1,29],[-1,297],[-261,-7],[-62,0],[-74,-2],[-154,0],[-96,1],[1,135],[2,564],[1,396],[1,134],[0,104],[0,14],[1,63],[-69,-1],[-2,147],[-3,195],[-3,200],[1,58],[-1,33],[-1,34],[-1,56],[0,32]],[[39804,27083],[-1,-1],[-15,-53],[-22,-73],[-11,-39],[-17,-59],[-21,-72],[-32,-106],[-26,-89],[-33,-111],[-27,-90],[-31,-104],[-16,-55],[-17,-54],[-7,-23],[-33,-110],[-17,-61],[-10,-33],[-21,-3],[-23,-2],[-21,-4],[-29,-8],[-31,-13],[-23,-14],[-17,-13],[-29,-33],[-20,-34],[-10,-28],[1,-33],[3,-106],[-2,-38],[0,-46],[12,-62],[12,-29],[22,-20],[17,-29],[6,-61],[4,-32],[3,-32],[17,-157],[5,-49],[2,-30],[3,-24],[5,-50],[0,-2],[4,-29],[5,-48],[1,-7],[4,-27],[2,-25],[6,-50],[3,-28],[2,-27],[4,-35],[6,-61],[4,-35],[3,-27],[13,-125],[6,-57],[7,-64],[20,-193],[6,-54],[6,-65],[28,-261],[52,-501],[13,-119],[2,-26],[16,-155],[21,-201],[27,-263],[3,-27],[19,-182],[10,-100],[2,-20],[8,-74]],[[39657,22112],[-48,-32],[-61,-51],[-54,-58],[-37,-49],[-27,-52],[-24,-63],[-14,-61],[6,-45],[27,-51],[31,-49],[40,-70],[39,-100],[16,-68],[-3,-54],[-17,-44],[-43,-52],[-62,-55],[-78,-16],[-40,-9],[-46,-2],[-76,-14],[-75,-15],[-79,-43],[-46,-17],[-79,-40],[-70,-34],[-71,-41],[-46,-20],[-45,-14],[-58,-10],[-57,-15],[-43,11],[-44,-36],[-21,6],[-9,2],[-30,-22],[-205,-118],[-165,-96],[-81,-57],[-94,-61],[-120,-70],[-66,-44],[-53,-36],[-133,-98],[-106,-75],[-94,-75],[-107,-91],[-32,-20],[-38,-34],[-43,-14],[-56,-50],[-55,-15],[-39,-65],[-26,-22],[-53,-40],[-64,-69],[-46,-44],[-102,-110],[-90,-72],[-62,-65],[-69,-85],[-56,-52],[-50,-4],[-48,11],[-17,43],[-30,65],[15,51],[25,54],[109,66],[92,40],[59,81],[12,67],[23,24],[51,33],[51,89],[25,64],[29,43],[19,99],[12,66],[30,57],[-60,23],[6,77],[-12,53],[-27,56],[-50,26],[-46,41],[-25,57],[-34,-44],[-39,41],[-50,7],[-59,-41],[-36,-18],[-54,-52],[-41,-56],[-12,-25],[-14,-28],[32,-85],[-24,-58],[-43,-16],[-50,-36],[-35,-9],[12,63],[-9,90],[-44,57],[-29,66],[-45,-11],[-82,8],[-62,-21],[-65,-64],[-8,-56],[6,-104],[20,-74],[60,-65],[40,-18],[43,-9],[-2,-59],[14,-59],[-38,-11],[-39,-23],[-54,12],[-43,13],[-57,23],[-56,39],[-38,31],[-43,28],[-80,39],[-86,70],[-38,32],[-36,23],[-37,15],[-77,16],[-49,-15],[-40,-16],[-32,-22],[-54,-42],[-40,-54],[51,-32],[29,-27],[48,-13],[35,-83],[9,-68],[6,-53],[32,-68],[46,-57],[7,-69],[24,-64],[61,-49],[76,-53],[30,-42],[39,-26],[57,-40],[82,-79],[45,-47],[40,-64],[74,-59],[48,-51],[38,-43],[48,-60],[17,5],[43,14],[46,-27],[61,-7],[63,-25],[79,-37],[34,-54],[54,28],[72,59],[53,40],[72,10],[47,-3],[51,-17],[45,9],[68,0],[47,-11],[56,-18],[41,0],[44,21],[65,12],[61,1],[85,-8],[37,-12],[25,-60],[-8,-59],[-19,-46],[-33,-45],[-35,-31],[-36,-26],[-35,-27],[-48,-41],[-55,-57],[-45,-62],[-45,-35],[-11,-10],[-104,-87],[-36,-32],[-38,-44],[-49,-17],[-36,11],[-8,-62],[-6,-51],[4,-59],[21,-96],[63,-105],[30,-48],[52,-23],[30,-66],[-7,-78],[8,-144],[43,-85],[22,-65],[17,-60],[29,-68],[59,-84],[33,-68],[22,-60],[16,-108],[25,-54],[47,-35],[48,-56],[63,-24],[56,43],[-44,112],[-38,51],[56,4],[36,-11],[42,-8],[66,-25],[40,48],[48,21],[59,32],[80,-10],[52,-7],[64,-24],[59,-3],[29,-7],[48,-8],[40,1],[46,10],[77,45],[53,7],[33,18],[44,-5],[59,16],[60,53],[59,83],[30,53],[35,40],[84,0],[54,1],[42,-15],[32,-31],[16,-43],[22,-49],[37,-53],[28,-29],[28,-31],[46,-26],[30,-42],[46,-40],[46,-23],[43,-26],[52,-14],[42,-29],[-18,-62],[-60,-2],[-52,43],[-46,25],[-36,8],[-45,16],[-80,10],[-63,8],[-63,6],[-76,5],[-92,-1],[-38,-25],[-47,-2],[-35,-22],[-70,-45],[-80,-33],[-53,-40],[-72,-70],[-53,-52],[-52,-44],[-32,-25],[-68,-56],[-19,-49],[24,-46],[18,-49],[39,-39],[43,-9],[57,17],[48,-11],[48,-31],[42,-12],[34,0],[45,24],[51,-6],[62,2],[28,-34],[26,-59],[-45,-47],[-52,-40],[-34,-8],[-90,-4],[-48,-8],[-50,-35],[-44,14],[-37,11],[-36,13],[-60,11],[-87,-15],[-39,-11],[-41,-9],[-65,-3],[-29,4],[-76,16],[-29,4],[-74,15],[-68,27],[-66,8],[-48,7],[-51,12],[-47,5],[-54,-3],[-62,-1],[-52,-6],[-42,-8],[-94,-4],[-92,-9],[-87,-8],[-56,-7],[-84,-7],[-54,-12],[-39,-5],[-62,-14],[-58,-9],[-44,0],[-54,-7],[-45,-6],[-35,-6],[-47,-22],[-73,-19],[-55,-16],[-69,-37],[-71,-36],[-68,-32],[-55,-29],[-71,-28],[-69,-31],[-66,-32],[-57,-30],[-79,-48],[-70,-27],[-58,-17],[-58,-29],[-60,-29],[-47,-34],[-45,-39],[-35,-26],[-35,-21],[-66,-52],[-50,-39],[-50,-29],[-78,-57],[-54,-42],[-55,-35],[-44,-27],[-30,-24],[-65,-57],[-46,-44],[-39,-37],[-41,-4],[-38,-31],[-74,-28],[-69,-19],[-108,-28],[-139,-28],[-106,-17],[-52,-8],[-122,-9],[-111,-7],[-95,0],[-48,7],[-107,11],[-102,10],[-64,10],[-126,26],[-124,27],[-130,28],[-213,54],[-71,23],[-184,49],[-52,19],[-53,15],[-58,23],[-52,16],[-50,15],[-50,18],[-58,16],[-39,8],[-49,13],[-51,8],[-86,24],[-85,26],[-100,14],[-50,9],[-52,-4],[-60,15],[-41,6],[-79,-10],[-89,19],[-53,10],[-46,16],[-72,19],[-56,12],[-62,12],[-65,16],[-81,11],[-76,19],[-61,15],[-63,9],[-45,10],[-79,17],[-61,10],[-88,10],[-55,12],[-33,6],[-75,6],[-42,1],[-36,4],[-110,22],[-45,3],[-104,8],[-64,10],[-45,10],[-56,13],[-79,11],[-163,23],[-74,1],[-58,7],[-106,11],[-51,8],[-104,17],[-24,54],[-26,-40],[-131,10],[-100,17],[-68,11],[-67,10],[-46,8],[-72,22],[-37,7],[-70,9],[-65,14],[-89,14],[-42,6],[-52,9],[-99,26],[-36,23],[-49,32],[-50,-33],[-58,27],[-58,-6],[-93,24],[-53,50],[-50,-15],[-54,-9],[-20,14],[-38,26]],[[27297,15915],[1,25],[3,55],[3,106],[2,52],[3,119],[5,156],[1,51],[0,40],[1,57],[9,285],[4,157],[10,461],[1,86],[2,68],[1,106],[3,370],[0,166],[1,84],[1,41],[6,188],[0,25],[0,39],[1,98],[0,37],[0,132],[0,305],[0,3],[0,61],[1,114],[0,16],[0,87],[0,31],[0,41],[0,3],[0,35],[0,15],[0,55],[-2,96],[-1,26],[0,13],[-3,126],[-1,39],[2,61],[6,28],[1,170],[2,240],[1,43],[2,51],[1,45],[0,35],[0,3],[3,218],[2,115],[2,122],[2,205],[-3,70],[-5,125],[1,93],[0,80],[-3,316],[-2,346],[0,287],[0,411],[-3,81],[-4,337],[-8,729],[3,11],[3,11],[1,9],[0,120],[0,11],[1,73],[0,39],[-2,85],[0,49],[-2,275],[-1,9],[-1,36],[0,105],[-1,57],[0,18],[-3,134],[0,33],[-1,36],[-2,35],[-1,259],[-1,113],[0,61],[1,113],[0,14],[0,26],[0,26],[0,26],[0,27],[-1,51],[-1,13],[1,9],[0,63],[-1,23],[0,42],[-2,53],[-1,115],[-1,61],[0,1],[2,171],[1,11],[-1,44],[0,31],[0,2],[-2,30],[0,27],[1,152],[1,129],[0,52],[0,27],[-36,0],[-146,-1],[-213,-3],[-24,0],[-6,0],[-10,1],[-17,0],[-71,-1],[-49,0],[-18,-1],[-1,0],[-11,0],[-46,0],[-20,0],[-68,0],[-11,0],[-61,-1],[-22,0],[-28,0],[-22,0],[-36,0],[-110,-1],[-51,0],[-52,-2],[-42,-1],[-120,-1],[-76,-1],[-59,0],[-188,-2],[-37,-1],[-68,0],[-40,-1],[-52,0],[-131,-1],[-121,-1],[-3,0],[-21,-1],[-70,19],[-34,-3],[-17,-10],[-69,1],[-53,-8]],[[41145,17234],[56,-22],[46,5],[-2,-44],[-9,-52],[46,0],[39,17],[85,-3],[53,-20],[28,-35],[20,59],[48,44],[80,-9],[58,7],[61,31],[-5,-81],[8,-61],[46,-38],[51,-17],[95,4],[50,18],[-13,73],[5,57],[47,-14],[60,-10],[69,-33],[34,-70],[-16,-78],[-12,-82],[55,-87],[51,-40],[50,-38],[50,-7],[26,-6],[5,-47],[35,-51],[47,-30],[23,-46],[72,-9],[66,-21],[82,-28],[49,-19],[39,-4],[57,17],[1,-66],[-19,-97],[-1,-82],[37,-54],[60,-16],[57,11],[32,34],[32,13],[57,9],[35,9],[57,41],[39,57],[46,-27],[0,-41],[-19,-49],[49,-55],[58,-18],[31,28],[42,18],[13,-71],[7,-63],[-55,-84],[-5,-63],[0,-66],[1,-68],[3,-64],[-3,-74],[56,-47],[71,41],[1,62],[-33,47],[-27,69],[51,-7],[49,7],[65,11],[67,-30],[77,17],[58,5],[44,-31],[41,-3],[12,-1],[31,-12],[27,-11],[56,52],[60,45],[38,45],[35,56],[12,63],[35,-64],[-14,-54],[-35,-57],[-32,-76],[-23,-84],[4,-61],[13,-45],[6,-52],[40,-10],[61,-3],[63,8],[31,37],[34,61],[60,-27],[66,-11],[35,16],[31,64],[64,12],[59,1],[53,37],[2,-93],[-57,-21],[-7,-73],[4,-82],[-39,-41],[-30,-40],[-25,-78],[-51,-43],[-58,-46],[-33,-25],[-56,-46],[-40,-40],[-79,-65],[-79,-68],[-60,-37],[-58,-21],[-45,-10],[-40,-24],[-51,-21],[-31,-25],[-42,-43],[-36,-37],[-34,-50],[-28,-34],[-56,-60],[-47,34],[-54,27],[-34,-33],[37,-28],[-15,-84],[-30,-53],[-30,-70],[-25,-67],[-12,-49],[-24,-66],[-25,-124],[-4,-85],[4,-77],[33,-79],[31,-41],[48,-66],[-93,-32],[-74,-50],[-85,-48],[-55,-38],[-52,-10],[-63,-22],[-37,16],[-43,14],[-57,45],[-123,51],[-93,-24],[-37,-19],[-50,-36],[-9,-8],[-95,-85],[-98,-107],[-91,36],[-127,37],[-25,7],[-41,-2],[-49,1],[-44,-12],[-46,10],[-51,21],[-42,77],[-14,76],[-7,62],[-30,59],[-26,92],[-49,81],[-71,65],[-84,52],[-43,8],[-36,-1],[-33,0],[-47,-5],[-77,7],[-80,-17],[-65,-22],[-43,54],[-42,68],[-49,40],[-56,32],[-74,47],[-42,45],[-36,28],[-48,52],[-59,42],[-88,3],[-39,5],[-63,18],[-57,46],[-39,30],[-39,22],[-60,3],[-52,31],[-44,42],[-44,50],[-58,22],[-51,13],[-36,24],[-41,28],[-40,19],[-32,38],[-35,41],[-38,22],[-91,14],[-29,-41],[-11,-64],[-26,-45],[-38,-19],[-65,13],[-43,34],[-44,69],[15,66],[-40,89],[-76,51],[-68,30],[-60,27],[-53,10],[-33,36],[-57,34],[-44,21],[-65,37],[-70,17],[-39,41],[-45,24],[-49,27],[-29,24],[-65,45],[-51,33],[-51,27],[-30,24],[-35,21],[-60,28],[-34,24],[-70,51],[-46,73],[-27,58],[-30,70],[-42,68],[51,1],[52,-40],[61,-26],[87,6],[24,63],[45,19],[-9,75],[-6,69],[3,62],[5,88],[87,20],[79,29],[36,24],[24,108],[11,43],[11,101],[49,42],[67,26],[31,21],[31,18],[34,19],[59,41],[69,19],[49,24],[48,47],[52,-3],[38,-43],[50,-37],[41,-18],[62,-25],[38,-35],[57,-10],[68,17],[72,-5],[56,-2],[50,1],[57,25],[48,11],[50,12],[51,-15],[30,5],[29,23],[42,14],[35,24],[56,87],[42,73],[22,45],[57,20],[-40,40],[-10,119],[-19,55],[-19,60],[25,81],[57,-29],[30,-35],[30,-14],[51,25],[76,-22],[43,43],[46,19],[53,25],[45,40],[44,25],[48,26],[35,-72],[-32,-42],[65,-31],[63,-15]],[[53974,26800],[-8,-28],[-12,-40],[-17,-48],[-12,-34],[-18,-48],[-19,-50],[-30,-102],[-16,-47],[-13,-35],[-6,-15],[-9,-19],[-8,-19],[-27,-61],[-10,-17],[-16,-29],[-20,-13],[-14,-9],[-1,0],[-28,0],[-20,0],[-61,0],[-26,0],[-1,0],[-7,2],[-23,6],[-20,5],[-32,7],[-18,2],[-1,0],[-61,5],[-47,0],[-46,-7],[-13,-11],[-10,-8],[-10,-300],[0,-18],[-1,-33],[0,-7],[3,-3],[16,-15],[7,-25],[10,-34],[3,-32],[15,-22],[3,-26],[2,-8],[4,-30],[9,-51],[6,-25],[13,-22],[12,-27],[-13,-26]],[[49233,25105],[-10,-1],[-85,-8],[-12,-1],[-21,-2],[-17,-1],[-115,-11],[-32,-3],[-123,-11],[-124,-5],[-88,-8],[-26,-2],[-16,-2],[-32,-3],[-24,-2],[-17,-2],[-83,-8],[-28,-3],[-58,-5],[-29,-2],[-35,-3],[-79,-7],[-64,-6],[-26,-3],[-64,-5],[-100,-10],[-146,-13],[-23,-2],[-14,-1],[-17,-2],[-8,-1],[-193,-17],[-149,-14],[-49,-5],[-388,-35],[-389,-36],[-20,-2],[-20,-2],[-44,-4],[-44,-4],[-7,-1],[-111,-21],[-7,-13],[-131,-191],[-7,-10],[-77,-119],[-100,-147],[-36,-53],[-62,-93],[-16,-25],[-16,-23],[-13,-18],[-16,-25],[-19,-28],[-17,-24],[-24,-33],[-16,-25],[-19,-27],[-23,-33],[-6,-9],[-7,-10],[-7,-11],[-13,-18],[-2,-4],[-11,-15],[-16,-23],[-13,-20],[-3,-4],[-5,-7],[-18,-25],[-4,-5],[-44,-65],[-33,-47],[-81,-118],[-35,-51],[-6,-10],[-34,-51],[-17,-24],[-3,-5],[-3,-4],[-109,-159],[-30,-44],[-16,-24],[-42,-61],[-31,-41],[-66,-97],[-13,-18],[-113,-165],[-47,-68],[-113,-165],[-109,-158],[-27,-26],[-91,-85],[-299,-282],[-89,-83],[-231,-218],[-9,-9],[-641,-605],[-2,-2],[-3,-3],[-318,-300],[-4,-4],[-8,-7],[-566,-536],[-20,-18],[-22,-21],[-92,-87],[-72,-69],[-121,-118],[-104,-115],[-13,-12],[-16,-16],[-33,-31]],[[41873,19771],[-12,81],[-62,60],[-49,51],[-38,-28],[-51,23],[-49,20],[-45,6],[-49,2],[-49,-3],[-85,-18],[-17,54],[0,56],[28,63],[14,73],[10,48],[62,25],[46,47],[34,43],[75,-40],[-23,70],[-32,23],[24,83],[26,61],[35,70],[33,58],[48,59],[35,60],[37,66],[23,61],[20,47],[19,65],[8,67],[1,73],[48,48],[52,31],[35,17],[-5,-69],[-16,-75],[12,-77],[-2,-82],[26,-87],[45,-68],[23,-34],[42,-9],[44,-34],[10,-58],[13,-47],[38,3],[20,53],[33,26],[56,24],[43,-1],[33,49],[12,71],[3,66],[32,46],[-11,52],[20,70],[15,65],[-7,63],[15,47],[-18,85],[-21,45],[-30,43],[15,89],[21,69],[-44,35],[-15,37],[-20,43],[-50,74],[7,63],[43,6],[45,-42],[-2,8],[-13,66],[-35,22],[16,70],[-47,3],[-13,1],[-72,-13],[-35,-12],[-47,0],[-50,10],[-71,15],[-66,0],[-42,-23],[-63,-27],[-42,-18],[-52,-22],[-64,-3],[-88,56],[-46,28],[-52,21],[-43,46],[-48,30],[-48,24],[-40,22],[-41,18],[-63,15],[-55,-1],[-87,-19],[-130,-44],[-58,-30],[-62,-62],[-31,-100],[-48,-70],[-26,-39],[-35,-64],[-17,-51],[-29,-24],[-59,8],[-52,16],[-40,16],[-52,2],[-31,0],[-82,-22],[-51,-13],[-51,-4],[-24,32],[-42,26],[-30,33],[-55,37],[-59,29],[-44,26],[-65,6],[-55,23],[-34,7],[-36,18],[-41,51],[-46,74],[-5,75],[24,59],[-40,-7],[-80,-47]],[[60460,23867],[4,-366],[0,-2],[2,-123],[1,-190],[-22,0],[-446,-10],[-3,-12],[-9,-34],[-55,-214],[-18,-72],[-14,-52],[-1,-4],[-17,-69],[-20,-67],[-44,-174],[-29,-114],[-27,-107],[-27,-104],[-10,-40],[-6,-26],[-3,-14],[-10,-33],[9,-10],[-6,-19],[-1,-2],[-13,-27],[-24,-50],[-23,-48],[-233,-487],[-23,-49],[-109,-228],[-8,-17],[-252,-448],[-66,-119],[-77,-137],[-42,-74],[-19,-33],[-17,-31],[-20,-36],[-23,-40],[-53,-94],[-92,-161],[-9,-13],[-66,-100],[-33,-51],[-28,-42],[-14,-21],[-37,-56],[-121,-185],[-43,-66],[-32,-50],[-35,-54],[-55,-84]],[[58141,19208],[-111,-167],[-29,-44],[-44,-67],[-119,-180],[-34,-52],[-17,-26],[-50,-76],[-90,-137],[-69,-104],[-55,-84],[-45,-67],[-68,-102],[-5,-9],[-7,-9],[-7,-11],[-10,-15],[-15,-22],[-18,-26],[-21,-32],[-16,-22],[-16,-24],[-158,-233],[-44,-64],[-50,-73],[-27,-38],[-96,-141],[-133,-194],[-9,-13],[-35,-51],[-14,-20],[-41,-58]],[[56688,17047],[0,18],[0,38],[-5,32],[-10,30],[-27,48],[-26,41],[-31,35],[-9,8],[-4,4],[-10,9],[-12,12],[-20,13],[-18,13],[-36,19],[-33,13],[-16,4],[-3,1],[-10,3],[-13,3],[-43,11],[-21,5],[-20,4],[-15,5],[-19,7],[-20,13],[-2,3],[-16,32],[3,41],[1,2],[12,30],[2,3],[13,32],[7,19],[32,89],[12,32],[15,49],[4,13],[5,28],[3,20],[4,50],[3,28],[4,84],[2,43],[2,43],[3,52],[0,2],[2,50],[3,85],[1,17],[0,114],[-8,99],[0,23],[1,39],[17,61],[2,4],[11,19],[11,14],[14,18],[10,18],[2,4],[6,10],[3,30],[-2,3],[-4,7],[0,5],[0,6],[-9,8],[-9,6],[-1,0],[-1,0],[-13,3],[-5,2],[-3,1],[-2,1],[-20,9],[-18,23],[-3,7],[-6,15]],[[27297,15915],[-87,4],[-56,18],[-50,18],[-59,19],[-69,17],[-36,10],[-78,25],[-59,18],[-83,30],[-112,36],[-59,24],[-95,41],[-74,25],[-63,28],[-88,33],[-104,41],[-201,89],[-114,63],[-16,52],[-51,-14],[-51,15],[-58,19],[-58,32],[-88,27],[-57,17],[-34,13],[-127,40],[-118,55],[-85,36],[-57,22],[-58,21],[-58,33],[-67,49],[-55,27],[-55,11],[-59,37],[-83,35],[0,38],[-25,37],[-22,-50],[-74,36],[-68,39],[-39,14],[-60,28],[-80,40],[-47,26],[-45,23],[-53,37],[-36,21],[-43,26],[-38,33],[-39,32],[-38,16],[-86,28],[-32,13],[-71,42],[-64,31],[-62,35],[-98,46],[-48,33],[-88,55],[-63,33],[-74,42],[-75,35],[-74,40],[-59,24],[-89,50],[-60,31],[-119,55],[-139,69],[-60,39],[-83,47],[-72,51],[-97,46],[-57,33],[-75,39],[-48,17],[-39,30],[-48,31],[-49,22],[-41,21],[-70,45],[-48,28],[-93,69],[-40,15],[-33,20],[-17,10],[-79,35],[-94,60],[-58,28],[-47,32],[-81,51],[-56,27],[-65,37],[-51,28],[-60,36],[-44,13],[-73,36],[-48,21],[-123,58],[-43,22],[-38,20],[-76,34],[-77,41],[-72,30],[-106,37],[-50,25],[-146,56],[-65,34],[-68,22],[-89,58],[-76,-5],[-30,111],[-28,-95],[-35,36],[-26,29],[-52,36],[-67,30],[-68,28],[-31,-25],[-38,31],[-49,13],[-36,11],[-44,23],[-54,12],[-33,15],[-44,-19],[-43,10],[-82,25],[-84,26],[-99,51],[-47,20],[-34,18],[-63,24],[-161,72],[-125,60],[-108,44],[-43,24],[-126,28],[-92,39],[-70,25],[-35,16],[-84,32],[-31,16],[-79,25],[-42,9],[-73,39],[-43,13],[-49,-21],[-29,1],[-22,1],[-81,15],[-59,15],[-48,11],[-55,19],[-83,37],[-76,34],[-67,17],[-71,20],[-44,27],[-53,20],[-45,14],[-66,15],[-53,15],[-42,15],[-81,25],[-165,43],[-112,23],[-73,16],[-119,17],[-84,17],[-110,20],[-51,2],[-41,9],[-140,16],[-50,6],[-33,4],[-37,5],[-76,9],[-83,5],[-95,2],[-60,1],[-93,-1],[-81,-3],[-97,5],[-34,-6],[-99,-4],[-74,-6],[-51,-9],[-102,-10],[-46,-7],[-113,-18],[-68,-10],[-72,-13],[-55,-11],[-124,-33],[-52,-22],[-59,-16],[-54,-13],[-60,-27],[-72,-18],[-102,-33],[-43,-12],[-71,-22],[-50,-23],[-77,-26],[-48,-20],[-39,-4],[-30,-53],[-24,-41],[-42,-18],[-66,12],[-77,13],[-66,24],[-60,6],[-79,10],[-54,17],[-72,15],[-72,-18],[-49,13],[-42,6],[-70,10],[-188,28],[-143,29],[-56,6],[-32,1],[-59,3],[-59,9],[-59,10],[-44,2],[-100,15],[-88,8],[-76,7],[-51,5],[-54,2],[-55,9],[-61,3],[-65,4],[-73,4],[-32,0],[-102,2],[-26,0],[-21,-1],[-60,3],[-69,-2],[-78,-5],[-76,-1],[-76,-4],[-79,-5],[-63,-4],[-64,-6],[-67,-7],[-46,-5],[-21,-2],[-27,-4],[-41,-3],[-93,-11],[-58,-7],[-50,-6],[-57,-12],[-40,-4],[-45,-6],[-57,-10],[-55,-10],[-58,-6],[-46,-10],[-57,-7],[-57,-7],[-55,-8],[-75,-12],[-26,-5],[-60,-11],[-90,-16],[-83,-20],[-44,-5],[-36,-8],[-74,-15],[-71,-17],[-76,-16],[-81,-16],[-61,-9],[-60,-9],[-46,-8],[-47,-7],[-67,-11],[-74,-10],[-56,-7],[-52,-7],[-38,-6],[-66,-7],[-75,-4],[-330,-24],[-48,-5],[-74,3],[-59,-6],[-83,-23],[-67,-2],[-137,-17],[-84,-11],[-71,-6],[-57,-16],[-56,-5],[-74,-16],[-58,-7],[-65,-5],[-153,-28],[-112,-25],[-52,-12],[-55,-14],[-46,-7],[-121,-25],[-64,-12],[-116,-30],[-37,-11],[-47,-16],[-78,-23],[-66,-8],[-37,-11],[-86,-20],[-43,-14],[-91,-21],[-80,-23],[-62,-23],[-85,-43],[-32,-19],[-50,-19],[-51,-20],[-61,-23],[-57,-23],[-60,-23],[-57,-25],[-51,-21],[-71,-33],[-70,-25],[-62,-33],[-77,-52],[-68,-28],[-44,-30],[-41,-33],[-63,-42],[-71,-33],[-57,-8],[-60,-38],[-61,-36],[-75,-47],[-49,-39],[-38,-29],[-34,-28],[-51,-42],[-63,-53],[-66,-58],[-49,-38],[-39,-33],[-28,-19],[-55,-53],[-8,-8],[-3,6],[-12,21],[-22,41],[-27,44],[-10,18],[-30,55],[-37,58],[-33,58],[-23,40],[-17,29],[-39,64],[-25,44],[-30,48],[-16,29],[-15,27],[-8,14],[-34,53],[-31,50],[-25,43],[-17,28],[-8,12],[-17,32],[-23,48],[-22,52],[-4,6],[-18,35],[-12,25],[-4,13],[-8,27],[-18,32],[-4,9],[-17,16],[-19,19],[-39,21],[-42,17],[-48,17],[-48,20],[-16,6],[-39,15],[-29,10],[-10,4],[-29,17],[-24,3],[-20,18],[-22,24],[-16,25],[-12,28],[-7,25],[-2,17],[-1,8],[-7,48],[-4,23],[-2,22],[-1,6],[0,13],[2,19],[4,28],[12,56],[15,36],[4,9],[13,35],[6,16],[-1,3],[-1,6],[-1,2],[2,8],[-3,13],[-6,19],[-7,22],[-11,34],[-21,34],[-5,7],[-1,3],[-1,1],[-3,4],[-15,20],[-4,6],[-8,9],[-61,71],[-52,36],[-129,92],[-144,101],[-133,100],[-79,110],[-8,34],[-31,129],[-13,165],[24,163],[43,125],[57,99],[122,151],[52,54],[46,47],[147,144],[55,48],[35,29],[63,51],[94,71],[13,10],[73,53],[54,33],[45,28],[112,57],[32,16],[20,11],[26,21],[20,15],[16,12],[21,15],[18,14],[15,12],[17,14],[16,13],[21,19],[29,29],[25,24],[17,14],[19,21],[14,18],[15,16],[19,21],[24,26],[14,24],[33,40],[18,25],[24,30],[22,32],[21,29],[17,24],[16,23],[15,21],[16,22],[38,53],[43,66],[44,70],[46,84],[48,88],[59,109],[48,111],[52,119],[56,126],[14,31],[48,113],[32,89],[14,56],[8,41],[11,66],[11,68],[13,95],[11,82],[19,92],[11,48],[14,62],[21,97],[23,78],[26,98],[22,63],[2,7],[30,66],[27,53],[19,34],[19,34],[29,47],[30,49],[45,74],[33,67],[19,48],[19,58],[18,67],[16,65],[11,50],[13,31],[13,20],[6,10],[5,6],[-8,31],[103,65],[6,3],[14,8],[26,15],[37,14],[39,13],[33,3],[42,2],[26,8],[18,16],[14,15],[9,13],[5,15],[4,23],[3,22],[7,39],[23,40],[16,25],[23,33],[33,41],[29,39],[34,44],[31,40],[15,16],[46,83],[193,98],[39,24],[37,39],[32,52],[5,102],[0,22],[1,27],[3,30],[7,27],[5,17],[1,6],[5,18],[6,19],[9,26],[14,27],[21,29],[22,30],[91,122],[10,13],[113,93],[17,21],[14,14]],[[52590,12873],[-62,-42],[-14,23],[-76,121],[65,26],[60,35],[2,0],[77,-1],[-8,-36],[-4,-19],[-40,-107]],[[53066,14002],[-61,-162],[-25,-37],[-17,-25],[-57,6],[8,-48],[7,-40],[-2,-77],[-7,-42],[-5,-30],[-51,-62],[-40,-2],[-122,-50],[-50,-39],[-131,31],[-60,14],[-48,22],[-39,11],[-11,1],[-42,3],[-53,34],[-10,29],[25,76],[40,77],[2,69],[0,2],[0,63],[11,22],[18,4],[3,1],[34,-4],[45,0],[38,11],[10,16],[7,10],[31,26],[23,39],[9,8],[24,22],[38,16],[2,0],[47,23],[65,35],[79,44],[113,44],[50,20],[75,16],[-1,-10],[-2,-42],[3,-32],[27,-93]],[[56688,17047],[-1,-2],[-1,-1],[-8,-12],[-16,-18],[-9,-9],[-19,-21],[-18,-13],[-30,-16],[-20,-8],[-2,0],[-12,-2],[-20,0],[-18,8],[-19,8],[-23,12],[-8,2],[-25,4],[-18,-6],[-2,-1],[-12,-8],[-8,-6],[-4,-3],[-9,-7],[-9,-7],[-17,-18],[-22,-25],[-25,-29],[-44,-19],[-18,-1],[-14,-1],[-27,0],[-25,2],[-49,-2],[-30,-3],[-52,-7],[-2,-1],[-33,-12],[-4,-17],[-12,-49],[-1,-4],[-2,-54],[-2,-22],[-6,-37],[-2,-4],[-2,-3],[-18,-20],[-24,-16],[-44,-8],[-28,2],[-23,1],[-24,1],[-61,10],[-26,7],[-42,16],[-34,10],[-8,1],[-38,-4],[-10,-7],[-10,-14],[-4,-41],[6,-33],[5,-31],[1,-14],[-2,-10],[-5,-12],[-6,-9],[-17,-11],[-11,-4],[-56,2],[-28,11],[-31,13],[-22,9],[-26,9],[-25,0],[-18,-7],[-29,-25],[-8,-15],[-9,-18],[-14,-44],[-5,-18],[-1,-2],[-6,-18],[-15,-34],[-7,-10],[-13,-18],[-14,-12],[-21,-16],[-18,-14],[-19,-11],[-20,-4],[-7,-2],[-40,5],[-20,5],[-27,13],[-37,24],[-28,24],[-25,25],[-7,9],[-19,23],[-13,26],[-7,75],[3,27],[6,54],[-3,35],[-5,20],[-25,31],[-8,5],[-18,10],[-16,2],[-5,1],[-9,-2],[-16,-3],[-13,-4],[-7,-3],[-8,-4],[-19,-9],[-35,-16],[-22,-18],[-18,-20],[-20,-27],[-34,-37],[-22,-17],[-41,-27],[-28,-12],[-68,-25],[-20,-11],[-56,-35],[-18,-32],[-20,-18],[-4,-3],[-19,-16],[-30,-29],[-15,-15],[-16,-15],[-18,-18],[-7,-7],[-29,-25],[-5,-4],[-22,-21],[-27,-30],[-18,-15],[-23,-26]],[[54152,16095],[-16,31],[-23,45],[-13,26],[-5,46],[-3,26],[-45,67],[-31,36],[-26,46],[23,47],[-146,55],[48,-120],[-10,-109],[-66,-84],[-59,91],[-197,303],[-2,-4],[-23,-50],[-39,-82],[24,-78],[155,-252],[38,-156],[37,-325],[-28,-276],[-204,-161],[-50,-35],[-40,-21],[-59,-6],[-52,11],[-108,-15],[-51,1],[-32,36],[26,91],[-68,-27],[-68,-174],[-85,-181],[-135,-235],[38,-79],[34,-44],[50,-81],[39,-61],[22,-61],[27,-68],[-62,-66],[-65,-10],[-55,-24],[-34,-19],[-61,-25],[-63,-43],[-62,-39],[-82,-34],[-46,-57],[-37,-55],[-41,-10],[-70,3],[-21,-7],[-36,-36],[-4,-28],[-5,-59],[-51,-104],[-50,34],[-47,15],[-65,20],[-36,-5],[-70,19],[-13,-27],[-59,9],[-86,-4],[-47,6],[-35,21],[-42,39],[-66,44],[-70,39],[38,49],[41,17],[10,144],[-21,26],[-42,62],[-36,65],[-29,44],[-40,43],[-40,28],[-35,-34],[-60,-38],[-54,1],[-53,3],[-38,15],[-28,25],[0,80],[16,65],[-44,22],[-36,-54],[-42,26],[-75,22],[23,59],[-80,47],[-46,-62],[-33,-113],[-35,48],[-55,71],[-41,20],[-60,3],[-51,-51],[-10,-71],[-28,-42],[-31,14],[-56,93],[-49,39],[-39,-39],[-34,-31],[5,-71],[50,-33],[50,5],[15,-41],[44,-27],[-58,-17],[-81,5],[-44,13],[-38,10],[-47,25],[-51,28],[-58,49],[-48,43],[-21,47],[-8,55],[16,53],[44,66],[76,12],[39,23],[68,25],[55,-7],[18,53],[11,42],[0,77],[-15,61],[-54,74],[59,12],[76,62],[19,81],[-8,80],[-31,39],[-88,26],[51,-84],[-82,9],[-68,7],[-47,-1],[-46,11],[-15,-3],[-30,-8],[-6,-35],[-18,-64],[-33,-67],[-41,-61],[-35,-43],[-47,-23],[-48,11],[40,52],[-45,3],[-46,4],[-91,8],[-56,7],[-60,3],[-60,3],[-132,0],[-46,-6],[-48,-10],[-60,-9],[-64,-21],[-68,-29],[-45,-18],[-48,-18],[-70,-26],[-43,-12],[-77,-20],[-62,-17],[-50,-14],[-33,15],[-27,-54],[-46,-25],[-54,-29],[-54,-31],[-73,-43],[-48,-24],[-60,-21],[-40,-9],[-40,0],[-58,-15],[-43,-14],[-45,-24],[-66,-36],[-80,-26],[-39,-16],[-74,-37],[-57,-24],[-72,-6],[56,70],[32,74],[52,36],[59,63],[71,71],[52,75],[33,51],[29,44],[29,53],[31,61],[18,66],[1,41],[3,57],[1,25],[-28,57],[-28,76],[-62,44],[-43,64],[-30,17],[-16,60],[-27,62],[-10,89],[5,70],[18,53],[-14,66],[13,79],[-11,89],[-34,66],[-13,68],[-15,56],[-15,90],[-22,45],[-20,65],[-29,82],[4,68],[-37,65],[7,89],[-23,76],[-16,65],[-13,88],[-22,48],[-5,60],[-19,36],[-8,16],[-3,49],[-20,33],[-41,41],[-46,57],[-41,15],[-68,8],[-51,7],[-33,9],[-60,12],[-40,-7],[-65,-11],[-61,-20],[-48,-10],[-35,25],[-44,-46],[-53,-17],[-83,-33],[-66,-30],[-11,-5],[-54,-24],[-51,-13],[-66,-17],[-56,-15],[-79,-21],[-70,-18],[-60,-10],[-45,-14],[-57,-7],[-29,13],[-44,31],[-56,31],[-48,15],[-33,4],[-44,4],[-59,-8],[-61,37],[-86,59],[60,58],[8,6],[53,34],[34,11],[40,25],[46,19],[36,-55],[51,57],[-38,74],[-39,54],[3,62],[51,57],[73,13],[-32,43],[49,34],[41,-20],[14,51],[13,59],[-25,62],[28,72],[-13,53],[15,84],[40,10],[33,29],[-34,45],[-8,40],[-4,52],[-37,-31],[5,50],[17,43],[-18,55],[7,82],[56,50],[-31,54],[10,57],[-4,65],[12,86],[8,58],[30,67],[36,51],[14,88],[29,50],[-27,47],[8,78],[5,57],[-2,62],[-21,87],[-16,86],[-16,52],[-11,52],[10,61],[10,49],[37,58],[38,24],[8,73],[3,52],[7,75],[1,66],[48,34],[-56,20],[-8,67],[-9,64],[39,19],[41,11],[28,8],[-206,164],[26,-76],[-1,-69],[-63,-23],[-25,-9],[98,-36],[6,-75],[-52,-132],[-45,-57],[-6,-54],[-49,-28],[-48,-10],[-27,-13],[-41,-12],[-59,4],[-63,17],[-53,12],[-79,9],[-52,10],[-46,3],[-85,11],[-67,5],[-59,1],[-78,7],[-89,-6],[-56,-18],[-78,-11],[-67,-9],[-78,-21],[-39,-2],[-68,-20],[-78,-3],[-79,-17],[-80,-16],[-43,-14],[-41,-14],[-61,-28],[-53,-31],[-49,10],[-51,30],[-60,60],[-53,49],[-41,39],[-72,54],[-21,11],[-68,36],[-38,16],[-42,-20],[-58,-7],[-69,1],[-65,-4],[-41,-4],[-91,-23],[-45,-12],[-41,-17],[-77,-17],[-53,-4],[-59,2],[-53,30],[28,66],[24,63],[-47,9],[-47,14],[-19,39],[76,40],[-26,57],[-62,-11],[-59,-40],[-24,-35],[20,-66],[-12,-48],[-15,-68],[35,-65],[48,-49],[-92,-47],[-56,-36],[-56,-37],[-86,-57],[-51,-26],[-33,-17],[-44,-29],[-33,-11],[-52,-28],[-51,-31],[-43,-34],[-44,-32],[-38,-29],[-66,-33],[-41,-9],[-42,-39],[-53,-41],[-43,-23],[-61,-17],[-56,-17],[-37,-42],[-28,-32],[-56,-16],[-54,-61],[-37,-34],[-42,-53],[-67,-40],[-125,-65],[-57,-25],[-6,69],[-55,110],[-60,-16],[-51,23],[-74,18],[-68,4],[-32,-26],[-48,41],[6,20],[21,67],[53,40],[80,43],[44,30],[47,29],[35,57],[36,53],[40,35],[39,43],[33,32],[16,51],[-3,59],[-3,58]],[[71186,3584],[9,-82],[62,-34],[-4,-3],[-52,-37],[-20,-38],[-16,-33],[-2,-28],[-2,-22],[61,24],[63,8],[-6,61],[25,40],[41,20],[59,-4],[62,-21],[21,42],[7,13],[17,-42],[41,-46],[-49,-27],[-53,-42],[-67,-16],[-43,-15],[-46,-16],[-26,-10],[-78,-31],[-55,-14],[-84,-8],[-4,33],[-4,33],[-6,2],[-31,12],[0,15],[2,49],[18,53],[49,40],[3,61],[35,-14],[38,10],[3,1],[19,38],[13,28]],[[72002,3599],[-9,-14],[-22,-33],[-25,-11],[-27,-11],[-56,-36],[-53,21],[-4,1],[54,40],[20,33],[10,17],[5,0],[39,-4],[28,13],[40,-16]],[[72002,3599],[-3,75],[63,59],[42,-20],[12,-58],[-5,-46],[-32,-1],[-36,-9],[-29,0],[-12,0]],[[70795,4361],[16,-8],[48,4],[32,-6],[-11,-42],[-44,-34],[-48,-5],[-4,-1],[-17,-13],[-37,-27],[-48,-9],[-15,-3],[-11,2],[-53,11],[-70,-7],[-45,15],[-1,0],[-45,20],[47,30],[9,7],[15,7],[41,19],[97,32],[49,6],[33,31],[62,-29]],[[70801,4977],[39,-68],[3,-2],[40,-21],[48,-15],[4,-53],[-14,-52],[54,4],[-13,-47],[-46,-55],[-33,-16],[-41,-41],[-39,-33],[-43,11],[-53,-27],[-29,-11],[-29,-11],[-63,-28],[-23,-16],[-28,-19],[-74,-29],[-61,-21],[-23,-8],[-72,-4],[-11,-9],[-58,-45],[-63,-19],[-40,-18],[-44,-17],[-37,-27],[-44,-23],[-43,-7],[-36,-5],[-41,-5],[-23,1],[-49,4],[-37,12],[-38,12],[-42,42],[8,26],[8,24],[41,9],[41,-28],[42,-29],[55,-3],[48,38],[31,11],[63,17],[42,7],[38,11],[10,3],[35,3],[46,37],[41,33],[38,34],[40,-17],[30,43],[29,6],[43,9],[22,11],[32,15],[41,-10],[48,2],[14,9],[18,11],[7,15],[13,26],[18,38],[-21,56],[2,19],[3,28],[-31,28],[10,7],[26,15],[0,48],[0,33],[19,59],[63,8],[21,-35],[22,27],[13,16],[33,6]],[[72349,5146],[-47,-5],[-29,-3],[-42,16],[-50,39],[37,19],[41,8],[56,5],[34,-79]],[[70811,5235],[-13,-27],[-57,3],[-4,-31],[-4,-40],[-36,-63],[-24,62],[8,50],[22,58],[4,13],[23,63],[45,3],[12,1],[17,91],[26,-89],[-3,-32],[-4,-36],[-12,-26]],[[71780,5964],[-15,-81],[-15,21],[-50,71],[-38,4],[-9,2],[-30,27],[45,19],[46,1],[13,0],[1,0],[56,-16],[-1,-16],[-3,-32]],[[71019,6459],[2,-112],[-43,-14],[-19,-6],[45,-37],[-14,-10],[-33,-21],[-19,-1],[-35,-3],[-46,-13],[-56,10],[10,-22],[18,-43],[-26,-92],[-6,-20],[-10,-34],[-6,-25],[-12,-46],[-7,-108],[-35,54],[0,92],[10,73],[-31,15],[-32,68],[20,57],[26,34],[13,16],[19,27],[28,40],[105,28],[35,53],[14,21],[34,-43],[5,-6],[46,68]],[[71703,6434],[-42,-47],[-9,76],[15,29],[7,13],[33,46],[60,-3],[-26,-33],[-3,-10],[-10,-28],[-25,-43]],[[69577,6693],[0,69],[0,51],[0,57]],[[69577,6870],[6,-16],[8,-23],[23,-18],[15,-11],[-2,36],[-1,24],[77,2],[49,27],[6,3],[11,-30],[10,-28],[28,-38],[-18,-46],[-17,-42],[-13,-48],[-4,-15],[-61,3],[-64,39],[-53,4]],[[70750,6820],[0,-56],[-12,-55],[-59,-84],[-53,44],[7,63],[-20,90],[47,-1],[36,-46],[5,38],[6,56],[-9,59],[-6,38],[27,75],[55,-8],[-14,-51],[-14,-75],[4,-87]],[[71484,7586],[-12,-1],[-15,67],[2,46],[1,35],[29,9],[16,5],[0,-5],[-2,-78],[13,-49],[7,-25],[-39,-4]],[[71521,7999],[-28,-43],[-39,44],[-32,45],[-3,4],[48,54],[44,5],[42,-20],[-32,-89]],[[70408,8567],[-30,-20],[-28,90],[59,70],[75,-27],[0,-50],[-49,-44],[-27,-19]],[[76540,8736],[-41,-43],[-8,103],[55,9],[73,48],[22,-70],[-50,-25],[-49,-19],[-2,-3]],[[75836,9054],[-15,-10],[-15,-10],[-40,30],[-10,44],[-15,57],[29,12],[1,1],[31,-23],[30,-47],[48,0],[-22,-27],[-22,-27]],[[75829,9493],[-10,-66],[-37,-1],[-49,-22],[-41,3],[-26,28],[14,9],[31,19],[46,22],[35,-4],[7,3],[30,9]],[[76761,9489],[3,-61],[-56,-34],[-30,-51],[-41,28],[-22,47],[-8,17],[59,-1],[57,73],[38,-18]],[[76429,9663],[-9,64],[49,58],[83,-11],[50,3],[-4,60],[-4,44],[14,42],[-26,55],[27,40],[47,38],[38,-10],[13,-8],[29,-15],[12,-40],[-29,-50],[-21,-31],[-12,-18],[35,-51],[-10,-30],[-16,-55],[32,-53],[-6,-10],[-23,-38],[-82,-8],[-56,-10],[-54,39],[-77,-5]],[[76517,12246],[153,-55],[35,-42],[43,-8],[40,-7],[60,21],[-20,-69],[-67,-16],[15,-88],[3,-40],[1,-22],[-11,-2],[-48,-9],[-64,-12],[-69,-2],[-23,-29],[-25,-30],[-25,56],[28,34],[25,29],[5,28],[2,17],[17,69],[-49,59],[-86,-22],[-54,-48],[-7,17],[-39,92],[-56,69],[48,35],[58,15],[40,-46],[70,6]],[[76517,12246],[-41,51],[4,29],[3,20],[-9,44],[-6,4],[-52,29],[-31,-22],[-21,-14],[16,65],[10,41],[-19,36],[-16,30],[-60,55],[-41,7],[-47,32],[-25,32],[-2,-27],[-3,-50],[5,-80],[-82,-20],[60,-91],[1,-48],[0,-80],[48,0],[32,-16],[13,-6],[-2,-55],[20,-82],[73,-104],[48,-47],[-42,-44],[-23,-25],[-23,-34],[-14,-21],[1,-47],[17,-27],[18,-27],[6,-19],[12,-35],[25,-36],[-43,-22],[-2,-1],[-70,-62],[-85,22],[-28,-30],[-29,-30],[-8,-31],[-4,-17],[5,-16],[11,-29],[41,-25],[45,-11],[55,-22],[40,-52],[45,-32],[1,-9],[10,-83],[5,-31],[3,-14],[17,-7],[24,-10],[37,-50],[-54,-33],[-49,-40],[-27,-47],[60,3],[39,21],[55,15],[69,11],[64,-14],[48,-4],[13,-1],[16,41],[8,22],[61,26],[37,34],[44,-66],[8,-21],[16,-38],[-54,-33],[-13,-46],[-32,-66],[-29,-32],[-48,-18],[-94,-33],[37,-58],[-40,-27],[14,-62],[3,-11],[14,-51],[54,-42],[30,-33],[21,-70],[-68,-34],[-40,-28],[10,-72],[-21,-5],[-29,-7],[-38,-1],[-6,0],[-30,29],[-2,-30],[-4,-49],[72,-64],[72,-33],[-46,-61],[-58,-43],[-70,11],[-41,-6],[36,64],[4,40],[4,42],[-32,85],[-30,31],[-14,14],[-56,-49],[-21,-66],[17,-47],[-50,-21],[-39,-12],[-20,-6],[-1,38],[0,22],[-5,16],[-18,60],[20,75],[-11,73],[-39,48],[-27,23],[-12,10],[-32,18],[-26,15],[44,-98],[-52,2],[-5,-56],[-43,37],[-16,-56],[-18,-72],[7,-50],[39,-30],[12,-18],[18,-26],[37,-66],[52,-60],[10,-45],[4,-20],[11,-26],[23,-56],[5,48],[3,23],[12,91],[60,35],[3,-1],[47,-30],[44,-34],[-18,-58],[-41,-36],[-4,-72],[38,-74],[57,1],[-4,-61],[44,-38]],[[76429,9663],[3,-9],[18,-53],[-8,-49],[-9,-58],[64,-16],[-40,-45],[-2,-2],[-40,-23],[11,-45],[24,-13],[11,-7],[9,-5],[54,-19],[48,-23],[18,2],[29,3],[7,-1],[33,-6],[45,-34],[21,-61],[19,-47],[6,-15],[47,-10],[45,20],[34,-12],[45,-52],[16,-5],[45,-12],[29,42],[51,-10],[33,-3],[34,-3],[1,-62],[36,-50],[-37,-40],[-11,-101],[-32,-64],[-35,-41],[-41,9],[-13,-47],[-23,-16],[-23,-16],[-38,34],[-39,-22],[-49,-36],[-60,-21],[37,71],[46,73],[13,54],[-6,40],[-1,13],[-65,57],[-43,-37],[-53,30],[-59,-2],[-19,56],[-54,21],[-7,4],[-58,34],[-12,7],[-24,26],[-23,24],[38,10],[37,36],[6,-63],[60,-28],[29,104],[-14,60],[-37,6],[-13,3],[-7,1],[-49,13],[-58,14],[-13,3],[-54,-18],[-22,-5],[-36,-10],[-36,32],[-11,9],[1,-67],[11,-35],[10,-28],[-66,12],[-41,0],[5,-43],[3,-30],[-57,11],[-6,1],[0,-41],[0,-51],[-7,-60],[-11,13],[-25,27],[-43,8],[-99,-12],[-65,17],[-15,37],[-16,38]],[[75836,9054],[59,14],[44,2],[14,1],[-20,70],[43,-9],[-43,69],[-5,38],[-7,47],[32,-17],[40,-22],[65,-2],[-2,5],[-9,28],[-15,45],[43,16],[55,7],[12,2],[-39,74],[57,3],[60,22],[-32,51],[-13,21],[-33,49],[-47,19],[-11,18],[-35,58],[-24,48],[-23,44],[-8,-2],[-25,-6],[-49,-86],[-44,-46],[-16,-1],[-20,-1],[-5,-4],[-27,-24],[-36,46],[-46,-21],[-5,-2],[-85,2],[-52,-9],[-17,50],[-2,7],[14,40],[38,18],[-10,26],[-6,14],[-35,59],[-16,28],[-9,14],[-47,74],[-44,98],[-18,38],[-8,19],[-70,36],[-94,26],[-6,-1],[-54,-14],[-5,-2],[-17,-59],[22,-59],[8,-21],[10,-26],[21,-55],[35,-11],[15,-5],[19,-9],[24,-13],[30,-71],[56,0],[31,-35],[-37,-10],[-46,-10],[51,-42],[71,-53],[58,-60],[-32,-23],[-54,28],[-77,-26],[-24,-45],[-13,-25],[-1,-65],[-1,-43],[14,-62],[35,-19],[45,-20],[34,-20],[8,0],[33,-3],[6,-42],[-15,-14],[-25,-22],[-12,-38],[25,-62],[4,-12],[10,-32],[48,32],[29,-48],[-1,-68],[1,-1],[7,-74],[26,-24],[21,-19],[35,27],[39,-94],[91,-63],[-59,-35],[18,-76],[-16,16],[-46,44],[-58,40],[-64,-36],[-5,-28],[-6,-38],[1,-32],[0,-27],[18,-36],[3,-9],[8,-29],[9,-28],[7,-22],[-12,4],[-57,18],[-32,35],[-28,-7],[-30,8],[-37,-56],[-76,39],[-39,-75],[14,-54],[55,-42],[14,-35],[11,-27],[44,-22],[-3,-3],[-39,-41],[-4,-18],[-10,-50],[9,-86],[43,-64],[-16,-50],[-1,-44],[50,-22],[15,52],[46,-30],[6,-67],[-14,-46],[-4,-11],[0,-62],[4,-41],[5,-26],[5,-26],[-6,2],[-56,11],[-44,9],[-11,2],[-5,-33],[-5,-33],[2,-11],[11,-44],[43,-37],[41,23],[1,14],[2,39],[54,-57],[15,-49],[16,0],[35,1],[10,82],[27,-31],[29,5],[53,-46],[94,-30],[5,-14],[19,-51],[36,-33],[34,-50],[38,-11],[49,1],[12,0],[23,0],[46,4],[-15,-46],[-2,-6],[-56,-2],[-49,-28],[0,-2],[24,-59],[-2,-4],[-23,-43],[2,-24],[9,-79],[1,-11],[18,-58],[9,-42],[8,-3],[31,-11],[44,-34],[4,-4],[57,54],[39,-39]],[[75719,5810],[-13,-24],[-6,-16],[-2,-7],[-5,-10],[-21,-41],[-53,-80],[-40,-45],[-18,-24],[-26,-36],[-23,-24],[-13,-14],[-35,-35],[-42,-44],[-31,-30],[-50,-57],[-36,-28],[-30,-24],[-58,-46],[-9,-8],[-75,-64],[-29,-19],[-36,-23],[-48,-44],[-3,-3],[-86,-70],[-66,-53],[-64,-50],[-54,-43],[-36,-23],[-40,-30],[-6,-5],[-4,-2],[-28,-15],[-44,-45],[-55,-43],[-36,-25],[-49,-41],[-12,-14],[-12,-13],[-49,-34],[-32,12],[-32,-20],[-30,-93],[-61,-2],[-43,-31],[-23,-40],[-39,-24],[-34,-23],[-15,-9],[-3,-3],[-59,-47],[-34,-26],[-20,-4],[-45,-9],[-33,-42],[-56,-32],[-38,-15],[-50,-22],[-56,-4],[-75,-44],[-39,-17],[-55,-21],[-22,-9],[-33,17],[-31,-53],[-47,-11],[-21,-27],[-25,-31],[-32,-19],[-48,-29],[-61,-37],[-56,-16],[14,38],[8,19],[9,62],[1,3],[-2,64],[18,85],[13,48],[9,35],[-23,-17],[-30,-21],[-21,-59],[-16,-51],[-3,-10],[-25,-99],[-3,-24],[-7,-46],[-9,4],[-41,19],[-36,36],[-32,-1],[-1,0],[-1,0],[-17,0],[-49,-35],[-71,-21],[-48,-8],[9,54],[21,47],[8,18],[45,-31],[19,44],[63,-15],[68,57],[31,39],[-91,-14],[-44,-13],[-18,12],[-10,8],[-45,18],[-23,47],[-19,65],[-65,68],[-31,37],[-28,13],[-26,25],[-29,28],[25,40],[42,16],[27,27],[18,18],[72,-9],[84,-39],[57,27],[-1,47],[4,82],[-6,103],[13,65],[6,65],[-12,56],[-18,27],[-25,39],[-5,-1],[-33,-2],[-48,2],[-17,45],[-8,25],[2,28],[3,47],[-35,50],[-55,17],[-5,2],[-16,5],[-3,1],[-58,-24],[-54,3],[-48,2],[-43,3],[-17,1],[-47,0],[-50,23]],[[72349,5146],[11,41],[7,26],[47,29],[49,-4],[27,-1],[44,5],[15,13],[33,30],[55,13],[51,17],[36,14],[17,6],[-3,9],[-15,50],[-24,10],[-21,9],[-65,-2],[-34,39],[-50,37],[-72,50],[-12,16],[-24,31],[-11,-8],[-10,-8],[-43,-31],[-42,7],[-10,2],[-8,-27],[-4,-16],[-41,-20],[-44,64],[-40,57],[-55,-27],[-28,-14],[-13,-68],[-3,-18],[-30,8],[-26,41],[-26,38],[2,58],[61,40],[60,58],[35,-9],[6,-11],[19,-33],[79,18],[47,18],[56,22],[52,35],[8,5],[5,3],[7,55],[2,15],[7,40],[22,14],[29,19],[-65,18],[-63,13],[-27,-9],[-8,-2],[-11,-2],[-39,-5],[-46,13],[-19,-36],[-55,-24],[-77,16],[-60,-17],[37,57],[32,23],[22,36],[10,22],[8,19],[-5,15],[-2,8],[-11,35],[-16,-11],[-24,-15],[-48,0],[-35,-7],[-49,4],[15,44],[56,54],[27,91],[22,72],[64,-14],[9,33],[9,32],[-42,76],[74,32],[15,65],[0,2],[33,126],[0,35],[0,44],[-55,40],[-42,-4],[2,62],[1,15],[8,59],[4,-1],[58,-12],[38,-13],[17,-6],[17,11],[20,13],[-27,23],[-13,11],[-39,26],[-6,1],[-41,8],[-61,-21],[-39,-49],[-7,60],[30,53],[-10,50],[-1,10],[-18,25],[-13,18],[-11,15],[-8,-35],[-5,-26],[-30,-32],[-18,52],[-10,28],[-11,72],[-9,19],[-13,30],[-24,16],[-41,28],[39,64],[-12,7],[-23,13],[2,92],[-16,66],[12,55],[-65,14],[-13,-7],[-25,-11],[-21,-61],[-51,-50],[-7,43],[18,47],[2,37],[2,28],[6,4],[32,23],[-26,49],[8,41],[5,29],[4,27],[-3,48],[-15,54],[-14,56],[-6,23],[-4,17],[-11,48],[-37,59],[-5,8],[-79,42],[17,61],[11,41],[-41,57],[-30,40],[-6,9],[-8,-103],[-28,-110],[-18,66],[-17,45],[-42,14],[13,-43],[-34,-61],[-13,69],[-12,63],[-8,89],[-32,-36],[-66,-17],[-38,-34],[-10,-24],[-12,-27],[-12,-60],[-3,-38],[-4,-34],[-14,8],[-38,20],[2,46],[-1,44],[0,16],[-10,28],[-17,51],[48,23],[36,31],[11,42],[10,39],[10,48],[8,39],[12,44],[1,4],[1,8],[7,49],[-44,64],[-44,26],[-11,-77],[-47,3],[17,-83],[2,-20],[3,-48],[-16,-83],[-41,42],[-36,74],[-44,-54],[-44,-21],[-42,-24],[-53,29],[-25,-3],[-21,-1],[-15,2],[-39,5],[20,60],[15,44],[3,87],[5,80],[10,19],[15,28],[33,44],[-28,68],[13,-1],[40,0],[44,-54],[59,26],[41,43],[4,4],[23,25],[25,79],[-20,108],[14,79],[-2,25],[-4,33],[-20,40],[-4,42],[-39,20],[-27,28],[-16,73],[-5,21],[-39,79],[-56,6],[-33,54],[26,42],[62,-8],[-20,46],[-37,38],[11,47],[4,17],[-34,43],[-12,25],[-15,30],[-11,17],[-37,58],[-23,35],[-2,3],[-47,29],[-16,9],[-5,-5],[-38,-41],[-2,-10],[-11,-51],[1,-103],[42,-76],[1,-9],[8,-50],[48,-65],[20,-52],[7,-18],[-33,-46],[-7,-9],[1,-3],[6,-13],[33,-70],[49,-93],[18,-34],[12,-23],[-10,-60],[-3,-22],[27,-47],[11,-71],[25,-26],[14,-15],[19,-10],[47,-27],[-41,-23],[-1,0],[-33,-18],[-11,9],[-38,31],[-52,26],[-6,12],[-22,49],[-15,39],[0,1],[-9,22],[-33,9],[-60,-29],[14,86],[-44,38],[-3,3],[-44,-68],[-10,-28],[-18,-47],[52,1],[11,-82],[-30,-83],[-33,-66],[-30,39],[-38,21],[-4,2],[-19,-68],[-27,22],[-7,6],[-5,2],[-9,3],[-20,6],[0,-16],[0,-34],[-15,1],[-34,1],[-8,-1],[-29,-3],[-30,-15],[-9,-5],[-7,-24],[-5,-21],[-19,-101],[-5,-58],[-3,-33],[58,-32],[-37,-22],[-20,-13],[11,-37],[1,-17],[1,-21],[-4,-31],[-3,-26],[35,-3],[42,5],[47,34],[49,-55],[-70,-49],[14,-61],[26,-43],[33,-54],[-35,-60],[-36,21],[-6,3],[-6,-3],[-41,-24],[-31,-40],[-12,-31],[-6,-15],[8,-53],[-37,-3],[-9,-1],[-35,-17],[-41,-19],[13,56],[9,41],[4,17],[-10,43],[-8,32],[-48,-30],[0,-7],[4,-74],[-29,-65],[-9,-20],[-7,-54],[-3,-22],[14,-75],[1,-4],[22,-53],[-51,-57],[-43,-51],[34,-13],[28,29],[41,-3],[27,13],[25,12],[17,-35],[8,-17],[-17,-65],[1,-7],[15,-69],[-48,-7],[-27,70],[-34,-4],[-45,-2],[-46,28],[-49,15],[-12,4],[-29,-49],[52,-10],[35,-71],[-7,0],[-45,3],[-45,0],[-40,6],[-30,-54],[-6,-15],[-32,-81],[9,-64],[-7,-62],[5,-6],[20,-26],[17,15],[25,22],[27,-45],[-76,-58],[-3,-2],[23,-5],[59,-11],[-19,-37],[-40,-44],[-55,-48],[-48,-10],[-15,35],[-6,15],[-9,-15],[-21,-33],[-5,34],[-8,49],[53,32],[-37,36],[-17,16]],[[69577,7127],[0,36],[0,51],[0,56],[0,44],[0,41],[1,51],[-1,33],[0,31]],[[69577,7470],[3,-2],[21,-10],[11,73],[3,15],[-38,6],[1,31],[0,1],[0,21]],[[69578,7605],[4,6],[16,11],[29,16],[27,5],[21,10],[29,20],[-1,40],[-3,31],[-5,19],[-5,15],[-6,31],[-2,35],[0,20],[1,61],[-4,17],[-6,26],[-1,11],[1,15],[7,19],[4,9]],[[69684,8022],[31,14],[16,-19],[21,-23],[40,-40],[3,1],[68,8],[-18,59],[-18,53],[-75,8],[15,36],[6,15]],[[69773,8134],[49,39],[1,15],[0,32],[0,27],[35,47],[2,3],[4,5],[2,3],[3,3],[13,21],[4,7],[4,7],[4,6],[7,13],[7,12],[1,3],[1,0],[1,3],[1,4],[10,28],[0,1],[13,53],[13,32],[15,24],[37,36],[25,22],[24,17],[4,3],[17,15],[1,1],[1,2],[2,14],[-4,19],[-3,15],[-2,9],[2,40],[3,13],[8,33],[1,19],[1,3],[-3,8],[-3,14],[-1,2],[-3,12],[6,53],[2,11],[5,28],[1,1],[-1,8],[-1,14],[0,2],[-1,24],[5,9],[16,28],[1,2],[15,30],[22,26],[22,15],[1,0],[14,11],[1,1],[1,2],[2,3],[2,4],[1,3],[2,6],[1,2],[1,2],[3,6],[0,1],[1,3],[3,25],[5,58],[-5,35],[-21,68],[-5,24],[-1,4],[-1,5],[0,2],[-2,3],[-14,40],[-8,20],[-1,1],[-2,8],[-10,24],[-4,13],[-15,23],[-8,14],[-2,6],[-1,3],[-2,8],[-1,1],[-3,13],[-1,2],[0,1],[-3,6],[-1,3],[-13,36],[-37,62],[-1,0],[-21,74],[10,32],[0,1],[1,2],[16,29],[12,24],[3,5],[12,27],[1,2],[2,13],[7,18],[11,30],[1,2],[1,5],[7,32],[1,1],[0,4],[1,7],[0,6],[0,49],[-1,59],[-6,26],[2,59],[0,2],[1,2],[3,12],[13,40],[13,30],[7,17],[6,12],[2,6],[2,6],[3,13],[0,1],[0,8],[-3,25],[-2,21],[0,5],[-1,8],[-1,4],[-3,13],[0,2],[-11,48],[-1,3],[-10,39],[-21,39],[-14,28],[-1,5],[-8,30],[0,2],[0,1],[-7,61],[0,5],[-3,35],[-6,29],[-3,9],[-28,44],[-16,18],[-8,8],[-23,25],[-18,16],[-36,41],[-10,11],[-9,10],[-8,13],[-22,39],[-28,36],[-8,19],[-1,4],[-1,3],[-2,6],[-19,34],[0,1],[-1,1],[-16,17],[-2,1],[-1,1],[-26,19],[-1,1],[-24,17],[-26,23],[-8,8],[-31,29],[-1,1],[-2,0],[-20,6],[-13,2],[-1,0],[-9,1],[-2,0],[-18,5],[-10,4],[-28,16],[-10,5],[-6,4],[-23,13],[-12,7],[-17,11],[-3,2],[-4,2],[-9,4],[-8,3],[-22,13],[-3,2],[-16,10],[-5,3],[-36,21],[-13,15],[-16,24],[-1,1],[-3,5],[-34,55],[-3,6],[0,1],[-4,7],[-3,6],[-9,14],[-5,8],[-11,17],[-12,23],[-1,2],[-7,9],[-8,13],[-10,16],[-1,1],[-22,30],[-1,1],[-1,1],[-12,13],[-16,16],[-1,0],[-10,8],[-3,3],[-25,19],[-18,19],[-1,0],[-10,12],[-32,37],[-3,4],[-15,16],[-7,8],[-1,2],[-7,15],[-3,5],[0,1],[-1,1],[-24,40],[-2,3],[-2,4],[-5,8],[-31,40],[-23,20],[-5,5],[-7,7],[-8,6],[-32,19],[-2,1],[-14,9],[-5,3],[-3,1],[-16,15],[-5,3],[-3,3],[-36,41],[-14,24],[-1,1],[-6,19],[-6,21],[-5,16],[-3,7],[-1,5],[-3,8],[0,2],[-3,10],[-2,6],[-1,2],[0,1],[-4,15],[-9,20],[0,2],[-1,0],[-17,30],[0,1],[-59,60],[-3,3],[-26,27],[-16,18],[-6,11],[-10,16],[-1,3],[-10,20],[-3,17],[0,1],[-1,8],[0,1],[-2,15],[0,2],[-1,8],[-1,13],[0,12],[0,3],[-3,23],[0,1],[-2,9],[0,3],[-1,4],[-1,2],[-1,2],[-12,25],[-3,7],[-1,2],[-3,8],[0,1],[-1,4],[-1,0],[0,2],[-4,9],[-1,4],[-6,19],[0,1],[-11,23],[-3,5],[-14,32],[-1,1],[0,1],[-4,10],[-3,6],[-5,10],[-5,10],[-4,9],[-5,8],[-8,17],[-2,5],[-3,9],[0,2],[-5,12],[-1,4],[-1,1],[0,3],[-1,3],[-1,4],[-5,17],[-6,24],[-1,3],[-1,4],[-2,6],[-7,19],[-1,1],[-2,5],[0,2],[-5,13],[-1,4],[-2,4],[-2,5],[-7,15],[-12,22],[-19,26],[-9,7],[-28,12],[-38,16],[-40,17],[-21,9],[-28,24],[-17,24],[-6,10],[-31,45],[0,1],[-15,8],[-24,6],[-57,2],[-1,0],[-19,7],[-1,0],[0,1],[-25,30],[-2,2],[-7,11],[-5,7],[-4,5],[-30,39],[-15,20],[-14,18],[-5,6],[-2,2],[-12,19],[-3,3],[-19,32],[-1,1],[0,1],[-1,2],[-19,36],[-1,1],[-1,3],[0,1],[-1,2],[-2,3],[-2,4],[-2,8],[-2,6],[-2,5],[-1,3],[-1,1],[0,2],[-2,5],[-1,3],[0,1],[-3,6],[-3,7],[-21,31],[-35,32],[-1,0],[-7,2],[-11,0],[-11,1],[-6,0],[-30,0],[-48,10],[-7,3],[-19,13],[-9,9],[-9,16],[-7,15],[-1,2],[-11,29],[0,1],[-1,3],[-3,7],[0,1],[-1,2],[0,1],[-2,4],[-1,3],[-6,17],[-12,27],[-15,24],[-19,23],[-23,26],[-7,5],[-10,8],[-17,12],[-35,24],[-1,1],[-9,7],[-2,1],[-7,6],[-1,2],[-19,18],[-4,4],[-25,27],[-3,3],[-18,20],[-1,1],[-1,3],[0,1],[-2,3],[0,1],[-4,7],[-14,28],[-1,2],[-3,9],[-2,3],[-2,4],[-2,5],[-6,11],[-5,10],[-5,7],[-5,8],[-23,33],[-13,19],[-23,28],[-17,10],[-17,4],[-18,5],[-1,1],[-7,9],[-17,7],[-40,20],[-15,11],[-34,39],[-37,43],[-6,8],[-5,8],[-7,29],[3,12],[17,44],[4,9],[2,7],[2,5],[7,24],[2,18],[0,3],[1,10],[0,6],[-1,4],[0,2],[0,2],[-3,11],[-5,16],[0,2],[-1,0],[-5,8],[-5,7],[-5,6],[-2,2],[-13,14],[-46,48],[-27,31],[-14,29],[-1,4],[-2,5],[-7,23],[-7,28],[-1,2],[0,1],[-2,7],[-1,1],[0,2],[-1,3],[-4,12],[-1,4],[0,1],[-16,32],[-2,4],[-26,42],[-26,27],[-24,29],[-16,19],[-11,15],[-11,12],[-32,31],[-40,34],[-26,20],[-24,13],[-8,3],[-15,4],[-8,1],[-14,0],[-25,-2],[-26,-3],[-30,-3],[-28,-3],[-39,-2],[-4,3],[-17,13],[-16,77],[-23,109],[-59,283],[-5,27],[-11,62],[-1,8],[-41,25],[-14,8],[-5,4],[-15,10],[-17,12],[-28,23],[-19,15],[-27,23],[-7,6],[-82,68],[-35,16],[-5,3],[-12,7],[-67,42],[-17,8],[-9,4],[-39,19],[-42,22],[-5,2],[-20,10],[-19,10],[-22,18],[-29,35],[-12,22],[-4,9],[-7,14],[-16,34],[-16,25],[-23,37],[-7,13],[-3,6],[-7,9],[-5,8],[-33,50],[-19,26],[-35,44],[-16,23],[-55,90],[-1,54],[0,13],[-3,54],[-4,10],[-14,24],[-29,16],[-17,7],[-24,7],[-20,4],[-19,4],[-6,11],[-22,6],[-18,3],[-28,3],[-28,5],[-18,5],[-33,9],[-26,7],[-10,3],[-7,1],[-38,5],[-9,1],[-57,-14],[-23,-2],[-7,1],[-32,6],[-21,4],[-68,20],[-20,7],[-8,3],[-29,13],[-7,4],[-32,26],[-19,17],[-7,6],[-3,2],[-46,33],[-5,6],[-6,9],[-5,14],[0,1],[-3,11],[-12,34],[-3,7],[-6,10],[-7,13],[-5,6],[-28,34],[-16,22],[-17,24],[-15,21],[-2,9],[-4,12],[-23,51],[-19,50],[-1,3],[-7,14],[-2,5],[-23,43],[-5,9],[-20,32],[-14,21],[-13,21],[-6,9],[-12,20],[-40,75],[-16,30],[-9,18],[-8,15],[-9,16],[-6,7],[-6,9],[-4,5],[-8,9],[-5,7],[-8,14],[-6,9],[-9,16],[-10,15],[-20,29],[-13,15],[-13,14],[-12,13],[-20,21],[-26,29],[-5,5],[-17,21],[-27,30],[-2,1],[-21,23],[-19,21],[-5,5],[-11,12],[-7,8],[-8,10],[-33,43],[-21,27],[-19,30],[-26,40],[-7,12],[-6,10],[-14,23],[-20,32],[-19,30],[-24,38],[-5,7],[-19,22],[-15,17],[-19,20],[-24,26],[-19,14],[-17,12],[-6,5],[-18,11],[-11,6],[-7,4],[-29,16],[-19,8],[-14,3],[-17,4],[-7,2],[-10,4],[-7,3],[-21,13],[-9,6],[-11,8],[-10,8],[-26,22],[-11,9],[-40,33],[-9,8],[-12,10],[-10,11],[-19,20],[-22,20],[-12,9],[-17,9],[-7,3],[-25,5],[-8,-1],[-15,-2],[-15,-5],[-6,-2],[-10,-2],[-5,-2],[-44,-4],[-44,-1],[-10,1],[-15,2],[-28,6],[-7,2],[-7,1],[-29,9],[-11,4],[-15,7],[-25,12],[-24,16],[-14,13],[-19,17],[-9,9],[-8,10],[-26,33],[-5,7],[-8,11],[-23,30],[-1,1],[-12,15],[-22,25],[-23,30],[-19,21],[-5,5],[-29,24],[-26,19],[-46,43],[-50,51],[-26,26],[-11,12],[-26,32],[-16,33],[-1,3],[-16,41],[-9,24],[6,3],[4,14],[-15,35],[-9,23],[-29,70],[-14,34],[-11,26],[-10,24],[13,22],[-53,130],[-19,49],[-35,86],[-6,20],[-17,42],[-23,56],[-20,48],[-8,18],[-2,7],[-14,31],[-24,57],[-10,26],[-7,-3],[-31,-9],[-14,69],[-7,34],[-5,22],[25,12],[6,2],[-8,34],[-23,96],[27,13],[35,16],[-73,71],[-163,-72],[-80,62],[-72,57],[3,42],[5,72],[1,10],[7,93],[-13,5],[6,90],[1,20],[-7,1],[-23,5],[-7,51],[-3,136],[21,-6],[19,-5],[-15,50],[-1,1],[-6,19],[-10,29],[-37,33],[-17,3],[-28,5],[-9,1],[-13,4],[-26,4],[-28,6],[-7,2],[-48,8],[-17,0],[-2,1],[-19,5],[-26,13],[-20,-2],[-10,-4],[-30,-15],[-9,-3],[-13,-8],[-16,-7],[-21,-8],[-26,-5],[0,-57],[1,-37],[1,-64],[1,-31],[-5,-40],[-17,-58],[-9,-5],[-79,-44],[-103,-57],[-66,8],[-10,-43],[-11,-51],[-3,-13],[-19,4],[2,-23],[0,-8],[2,-26],[2,-33],[16,-35],[17,-40],[28,-64],[-307,-6],[-347,-7],[-135,0],[31,-602],[3,-59],[0,-12],[0,-1],[2,-30],[0,-9],[-54,-2],[-19,0],[-7,-1],[-29,0],[-23,-1],[-41,-1],[-68,-2],[-116,-4],[-28,0],[-21,-1],[-199,-6],[-57,0],[-20,-1],[-219,-3],[-464,-8],[-48,-1],[-39,0],[-202,-3],[-20,-1],[-124,-2],[-132,-2],[-36,0],[-133,-2],[-197,-5],[-54,-3],[-24,0],[-28,-1],[-20,0]],[[74097,18438],[0,-22],[0,-36],[2,-2],[111,-111],[-48,-83],[48,-103],[-40,-82],[32,-83],[-57,-92],[-64,-196],[-49,-76],[-56,-89],[113,-134],[16,-82],[-73,-134],[-24,-217],[24,-206],[97,-92],[129,-155],[65,-206],[-65,-154],[-80,-124],[64,-144],[73,-52],[0,-41],[-153,-31],[-138,10],[-242,-10],[-298,-103],[-170,-278],[-9,-38],[-63,-251],[-113,-134],[-33,-123],[154,-186],[274,42],[0,-83],[129,-31],[-8,-82],[-105,0],[-193,10],[-267,0],[-113,-185],[186,-196],[89,-28],[145,-44],[194,-10],[153,-217],[64,-237],[138,-226],[338,0],[24,67],[17,46],[81,31],[121,-72],[72,-186],[32,-165],[154,-92],[185,20],[113,-237],[137,11],[57,113],[169,-52],[202,-30],[266,0],[8,1],[-2,-7],[49,-18],[42,-7],[79,25],[48,3],[67,-8],[21,31],[52,37],[69,2],[20,74],[27,-47],[48,-54],[68,-43],[3,62],[55,-26],[32,-69],[-14,-59],[0,-51],[12,-60],[17,-55],[32,-60],[-64,-25],[-12,-22],[-26,-46],[-18,-77]],[[95342,6260],[14,-9],[51,8],[61,-3],[43,14],[-9,-136],[-7,-122],[-101,9],[12,-53],[-22,9],[-246,92],[-56,96],[244,113],[16,-18]],[[80010,9429],[78,-29],[31,-30],[-19,-73],[-13,17],[-25,32],[-52,83]],[[80630,9725],[44,-18],[41,0],[25,0],[17,-38],[0,-34],[-54,-28],[-73,-7],[-57,-3],[-15,-31],[0,-28],[-30,-22],[0,-26],[-60,4],[-47,34],[-4,44],[85,103],[96,29],[32,21]],[[80010,9429],[-40,-31],[-96,43],[-41,12],[0,46],[-55,4],[8,-66],[-18,-62],[7,-78],[1,-5],[13,-33],[25,-5],[44,35],[27,15],[17,25],[54,16],[39,-3],[42,3],[7,-22],[-17,-25],[-42,-19],[-51,-3],[-30,-41],[-22,-15],[-115,-38],[-85,2],[-38,-5],[-42,38],[-2,-1],[-96,57],[-152,94],[-91,50],[20,13],[81,21],[22,-6],[79,-31],[95,-66],[96,-91],[32,-6],[47,46],[4,4],[-18,61],[-73,38],[-15,71],[-69,1],[-41,26],[-45,28],[-54,-27],[-53,-19],[-49,-14],[-51,-11],[-34,-6],[-22,-37],[-52,-9],[32,91],[57,42],[67,15],[40,51],[42,16],[42,28],[53,4],[27,80],[56,-40],[63,-62],[32,-32],[37,-13],[54,5],[59,-4],[35,68],[7,59],[49,-53],[20,-83],[41,-52],[-63,-34],[48,-31],[51,-29]],[[79377,9711],[-52,-32],[23,82],[25,79],[31,56],[12,73],[42,-22],[-8,-60],[-18,-70],[9,-40],[-35,-3],[-29,-63]],[[80630,9725],[-51,13],[29,83],[-14,60],[-37,63],[-47,9],[-17,66],[-25,55],[-1,61],[-5,45],[22,41],[16,36],[11,-18],[124,-79],[58,37],[70,45],[0,180],[34,85],[35,90],[7,3],[45,-21],[16,-7],[258,-119],[105,-48],[2,-85],[7,-277],[-31,24],[-30,-20],[-51,6],[-43,-51],[-35,-14],[-12,63],[-60,-52],[-73,-46],[-32,-56],[-15,59],[6,103],[-32,-55],[-11,-51],[-15,-50],[-35,-55],[-29,-24],[-50,-11],[-29,-71],[-65,-17]],[[80503,10769],[44,-23],[40,23],[65,30],[31,-41],[-59,-62],[-38,-38],[-57,-10],[-32,57],[-35,39],[-58,28],[-20,35],[41,37],[39,-32],[39,-43]],[[80813,10739],[-34,-51],[9,101],[61,82],[39,-60],[-42,-31],[-33,-41]],[[80011,10634],[-40,-20],[-14,57],[-22,47],[3,65],[22,49],[45,39],[-15,-67],[-23,-46],[21,-35],[37,-18],[8,-41],[-22,-30]],[[90719,10731],[-20,-48],[-45,33],[5,80],[-46,19],[12,71],[69,23],[5,-60],[10,-51],[10,-67]],[[82915,10962],[205,-278],[372,32],[243,246],[384,0],[346,-426],[141,-343],[-141,-164],[123,-298],[-28,2],[-44,-25],[38,-50],[-55,-36],[-35,18],[-57,-6],[-16,60],[-46,52],[-54,-4],[-63,15],[30,66],[-51,-20],[-23,-34],[-39,-35],[-46,-13],[-40,-9],[-56,-47],[-35,-23],[-47,6],[25,-61],[-22,-55],[-37,-60],[-47,-14],[-38,-83],[-56,-59],[-28,-45],[-34,-23],[25,-315],[180,-147],[-39,-49],[-253,95],[-63,33],[-32,53],[-7,12],[-32,52],[54,148],[-77,229],[-180,13],[-205,-42],[-76,-20],[-113,-191],[-46,21],[-21,40],[-59,9],[-54,-6],[-101,39],[-26,9],[-42,16],[-75,9],[-26,-26],[-315,64],[-453,74],[-52,35],[-29,44],[-22,-3],[-39,-51],[-67,0],[-203,4],[-192,18],[-105,10],[-71,34],[12,22],[54,6],[39,19],[24,36],[46,22],[76,-34],[37,42],[51,13],[31,47],[63,44],[44,25],[34,28],[63,13],[28,30],[78,-12],[41,39],[48,87],[-42,12],[80,51],[241,64],[154,213],[217,-328],[180,0],[0,262],[-153,195],[169,323],[432,284]],[[89908,11025],[21,-62],[41,-78],[-62,-47],[-69,-4],[-51,3],[18,37],[-21,58],[-13,79],[60,22],[76,-8]],[[80680,10966],[-48,-106],[-40,48],[-29,43],[-72,32],[-5,100],[51,-28],[66,-27],[53,-3],[24,-59]],[[89908,11025],[62,35],[46,0],[43,-16],[38,18],[69,42],[37,-67],[13,-52],[-60,1],[-46,-20],[-38,44],[-69,-30],[-39,26],[-56,19]],[[79570,10970],[4,-54],[-52,31],[-35,-44],[-1,-81],[5,-77],[-17,-50],[-18,-51],[-25,39],[-11,41],[-8,43],[-46,65],[-65,58],[56,36],[64,26],[27,34],[-4,46],[82,48],[72,48],[-47,-98],[19,-60]],[[80259,11091],[-48,-30],[-28,40],[-59,18],[84,27],[62,-3],[41,-51],[-52,-1]],[[89499,11162],[44,-35],[57,4],[29,-28],[29,-29],[72,-31],[-44,-27],[-31,-13],[9,-63],[-48,-2],[-35,-22],[-60,-17],[-26,40],[-2,66],[-38,86],[-55,14],[-47,42],[-34,51],[-45,38],[-41,72],[41,27],[73,-83],[51,-49],[54,-1],[47,-40]],[[86211,11775],[6,-45],[0,-79],[-32,-55],[-25,30],[-31,69],[18,76],[64,4]],[[87412,11678],[-69,-13],[44,74],[46,57],[36,40],[-2,-68],[-16,-47],[-39,-43]],[[79884,11731],[-40,-21],[-33,7],[-20,60],[-60,49],[44,44],[61,12],[55,14],[86,-16],[-14,-61],[-22,-62],[-57,-26]],[[80986,11931],[-8,-62],[-37,-10],[-26,13],[-36,-6],[-65,-14],[21,63],[2,48],[29,30],[20,-70],[63,11],[37,-3]],[[86211,11775],[80,48],[48,20],[-2,40],[10,78],[-61,41],[44,54],[-18,65],[55,36],[31,-59],[28,-46],[28,-80],[38,19],[57,-49],[46,-44],[32,-3],[-21,-96],[-60,61],[-57,-61],[-51,-12],[17,-67],[-70,16],[-21,-85],[-34,31],[-31,25],[-41,34],[-47,34]],[[78609,12339],[-6,-85],[15,-57],[-59,1],[-41,23],[28,32],[21,45],[42,41]],[[79192,12363],[-77,-8],[-33,31],[8,36],[10,71],[55,-69],[37,-61]],[[79887,12681],[-1,-87],[-39,-80],[-13,-88],[-26,-39],[-36,-31],[-94,-36],[-71,16],[-15,72],[-21,76],[-3,58],[-42,36],[-52,7],[-30,-6],[-32,18],[37,34],[50,10],[48,8],[53,-46],[50,1],[29,14],[40,24],[50,13],[44,-12],[40,-25],[34,63]],[[78609,12339],[30,101],[-12,60],[-33,18],[19,54],[-27,86],[-31,57],[-28,60],[36,0],[52,9],[48,38],[53,-37],[-37,-72],[0,-72],[17,-66],[33,23],[30,43],[-19,81],[52,-23],[64,7],[37,63],[70,-32],[9,-59],[-90,-33],[-41,-19],[-61,-42],[-44,-63],[-36,-71],[-28,-74],[-63,-37]],[[79374,12697],[-44,-54],[26,-55],[-28,-82],[-36,-46],[-47,15],[-32,-3],[-15,63],[41,37],[4,46],[-47,1],[-45,5],[28,60],[42,-4],[22,64],[21,66],[43,28],[44,42],[22,72],[52,57],[57,11],[73,39],[50,-31],[62,-22],[8,-94],[-61,-36],[-46,-11],[-65,-18],[-45,-84],[-39,-44],[-45,-22]],[[92592,13059],[-34,-10],[5,62],[32,5],[64,34],[53,-9],[41,-16],[-54,-40],[-39,-17],[-68,-9]],[[79180,13181],[-30,-103],[-67,26],[-2,72],[52,75],[47,-70]],[[85501,13723],[47,53],[51,25],[57,16],[9,-56],[-10,-74],[30,-66],[17,-51],[-1,-48],[-51,-4],[-38,-10],[35,-50],[-14,-32],[-28,21],[-53,45],[-61,24],[-46,53],[26,46],[54,-23],[30,-26],[34,-8],[38,20],[-12,86],[-37,-35],[-39,41],[-38,53]],[[85501,13723],[-42,-33],[-50,-33],[2,51],[-16,53],[-23,45],[37,18],[49,-41],[43,-60]],[[93229,13898],[-10,-56],[-24,36],[-69,3],[-27,-20],[-71,-6],[36,43],[47,25],[38,10],[13,14],[21,0],[21,-1],[46,-2],[36,-38],[-57,-8]],[[84276,14303],[-24,-20],[-4,41],[6,9],[12,13],[7,-2],[30,-6],[12,-2],[-12,-10],[-27,-23]],[[86678,14388],[-45,-25],[-31,46],[49,74],[60,5],[-33,-100]],[[84853,14474],[53,-31],[49,9],[-27,-79],[-29,-54],[-46,29],[-48,-1],[-46,81],[-35,25],[-22,82],[51,-36],[100,-25]],[[83973,14736],[-15,-52],[-37,-26],[-27,-28],[41,-34],[40,-8],[22,-62],[-38,-23],[-40,4],[-44,-5],[-77,-29],[37,-60],[2,-57],[-33,-18],[-32,39],[-47,37],[-52,3],[-65,47],[-48,31],[-38,35],[-10,36],[24,18],[47,33],[45,48],[2,2],[21,63],[56,-23],[45,26],[34,-8],[52,-29],[28,37],[67,-7],[40,10]],[[84811,14856],[-1,-136],[-26,6],[-43,60],[7,56],[63,14]],[[84612,14749],[-22,-31],[-37,19],[2,40],[17,48],[29,18],[43,28],[28,-36],[-11,-15],[-49,-71]],[[86009,14711],[-34,-6],[-32,5],[-36,52],[-5,72],[44,45],[12,-69],[51,-99]],[[84149,14796],[-47,0],[-38,7],[-39,38],[45,47],[59,-13],[37,-21],[39,-51],[-56,-7]],[[95058,14744],[-23,-50],[-56,-4],[-9,-12],[-19,-4],[-47,27],[5,37],[40,-14],[28,13],[-23,50],[-58,1],[-18,49],[50,64],[62,3],[31,-43],[27,-14],[10,-103]],[[86412,15117],[71,-46],[-44,-20],[-28,26],[-43,-31],[-26,-51],[-26,-83],[-50,8],[20,66],[6,64],[62,38],[58,29]],[[83902,15265],[48,-21],[16,2],[1,-9],[24,2],[-19,-66],[-2,-53],[-35,-18],[-54,35],[-20,20],[-31,20],[-20,1],[2,69],[31,0],[6,20],[6,-3],[-3,16],[-36,5],[48,41],[36,-41],[2,-20]],[[85662,15159],[33,-41],[52,11],[37,-51],[-15,-104],[1,-74],[-34,23],[-44,-11],[-10,42],[-26,57],[-43,14],[-35,-44],[-62,-11],[46,-53],[35,-17],[-48,-70],[-32,-23],[53,-67],[-44,-27],[-37,-14],[-38,46],[-32,37],[-51,-27],[13,-55],[-10,-61],[-15,-49],[-39,17],[-29,10],[-39,-33],[-8,-7],[60,-18],[-32,-29],[-22,-48],[26,-57],[-63,-3],[-24,-43],[17,-77],[-43,5],[-22,-76],[-6,-43],[-57,-64],[-66,46],[-44,51],[49,26],[63,25],[57,70],[-17,123],[-15,66],[-49,-13],[14,81],[2,10],[-59,3],[-14,48],[-44,22],[-42,-8],[-1,68],[135,-25],[32,74],[-85,77],[4,67],[58,43],[80,46],[10,62],[31,28],[37,17],[18,42],[23,37],[34,-48],[70,-67],[81,12],[36,14],[41,15],[15,74],[-10,70],[48,73],[12,-78],[26,-78],[57,-38]],[[83528,15343],[15,-64],[-35,0],[-15,31],[-14,-26],[-52,-7],[4,61],[-18,41],[36,11],[11,8],[33,-45],[35,-10]],[[84294,15288],[-29,-32],[-32,34],[-5,56],[-12,12],[8,23],[76,23],[-4,-30],[39,-68],[-41,-18]],[[95572,15434],[18,-73],[-15,-60],[-47,-44],[-29,19],[-10,26],[62,39],[-28,36],[-23,-1],[-50,-5],[-4,31],[44,26],[17,10],[36,6],[22,-8],[7,-2]],[[83643,15582],[-10,-15],[-50,26],[-31,35],[6,13],[20,7],[23,-18],[6,-4],[36,-44]],[[83840,15572],[-3,-37],[-71,15],[34,62],[6,48],[45,-24],[25,-16],[-21,-23],[-15,-25]],[[84500,15623],[-85,-49],[-50,18],[-17,7],[-34,-34],[-65,-52],[-31,38],[95,61],[24,33],[18,7],[133,3],[69,33],[11,22],[56,-19],[-63,-21],[-61,-47]],[[85722,15808],[-28,-63],[-37,-65],[-19,95],[-43,4],[-43,-1],[-49,53],[-39,25],[-43,44],[69,22],[71,-16],[60,-7],[-22,-54],[66,-12],[57,-25]],[[83267,15897],[1,-17],[-11,2],[-44,7],[-30,5],[-27,6],[-21,49],[-9,20],[-32,19],[-24,13],[46,18],[12,-6],[69,-40],[34,-12],[35,-37],[1,-27]],[[83536,15779],[-3,-7],[-94,46],[-15,10],[-60,23],[-22,9],[33,50],[22,5],[45,48],[-6,25],[-2,12],[49,28],[32,-14],[7,-5],[60,-6],[79,-25],[61,-24],[-15,-37],[-5,-50],[-36,-11],[-29,-8],[-101,-69]],[[84109,16084],[44,-52],[-32,-46],[56,-36],[17,-71],[22,-24],[29,-79],[-30,-29],[-29,58],[-45,-11],[-44,1],[-51,-18],[-47,-26],[-60,-3],[-48,12],[-64,38],[51,19],[34,-13],[38,3],[54,37],[-59,17],[-30,56],[-26,36],[15,95],[58,34],[13,-12],[80,15],[54,-1]],[[82834,16075],[31,-10],[40,7],[11,2],[8,2],[71,-3],[3,-44],[-22,13],[-55,3],[-15,-4],[-14,8],[-6,0],[-47,2],[-61,-17],[-20,56],[76,-15]],[[85043,15974],[-46,-10],[-8,34],[-16,54],[-32,69],[30,6],[49,-110],[21,-15],[2,-28]],[[83309,16050],[-22,-5],[-7,35],[13,20],[20,11],[0,28],[-2,12],[15,17],[28,-7],[6,-3],[-5,-10],[-11,-33],[3,-9],[25,-56],[-8,0],[-55,0]],[[83244,16179],[17,-73],[0,-33],[-54,-4],[-49,43],[12,16],[26,-16],[12,26],[13,-1],[23,42]],[[83028,16193],[0,-8],[2,-23],[20,-33],[18,0],[23,1],[-19,-37],[-22,0],[-46,47],[-4,27],[-4,21],[-22,1],[-6,1],[-12,0],[0,25],[53,-9],[19,-13]],[[83590,16183],[33,-30],[7,-2],[32,-7],[-18,-11],[-20,-11],[-7,0],[-23,-30],[15,-26],[-19,-11],[-27,21],[2,46],[1,33],[-22,-32],[-15,-35],[-26,17],[0,13],[-7,14],[-18,24],[-27,7],[-13,20],[23,14],[78,46],[16,-15],[35,-45]],[[83152,16259],[25,-11],[1,-40],[-61,-11],[-24,-13],[-36,55],[-33,11],[-11,-5],[0,45],[86,-11],[29,-6],[24,-14]],[[82998,16240],[-20,-8],[-46,5],[-15,-22],[-7,-7],[-20,-19],[-8,-7],[-26,22],[10,14],[-14,12],[-9,7],[26,34],[43,0],[10,0],[30,30],[43,0],[3,-61]],[[83388,16302],[-15,-39],[-96,27],[-16,6],[-15,2],[-3,89],[35,-23],[38,-24],[72,-38]],[[84507,16388],[16,-72],[-39,2],[-67,-8],[-36,-5],[0,22],[16,12],[23,21],[-9,19],[33,19],[25,-8],[38,-2]],[[84632,16462],[44,-9],[43,6],[37,-30],[40,-26],[82,-27],[66,-44],[2,-40],[-11,-51],[-53,-102],[12,-73],[-49,5],[-44,38],[23,49],[15,66],[56,23],[-73,53],[-67,43],[-56,20],[-56,32],[-53,36],[42,31]],[[83485,16431],[-7,-1],[-57,0],[2,-13],[91,-79],[-2,-33],[-17,-45],[-37,-22],[-24,21],[34,15],[20,64],[-21,0],[-18,-5],[-18,32],[-44,39],[-1,37],[8,2],[17,32],[37,3],[18,2],[40,-3],[2,-27],[-23,-19]],[[83667,16438],[19,0],[35,12],[-6,-23],[-31,-20],[5,-5],[-19,-12],[-10,-38],[-50,20],[-13,29],[-20,37],[-19,0],[-26,-12],[0,8],[-3,41],[-10,8],[39,25],[39,0],[46,-14],[8,-14],[-1,-20],[17,-22]],[[85319,16514],[-14,-1],[-9,8],[-22,7],[7,5],[13,9],[38,35],[17,5],[1,-21],[-15,-8],[-4,-5],[-11,-13],[-1,-21]],[[84842,16732],[15,-11],[5,5],[47,-30],[4,32],[31,-3],[43,-21],[33,-42],[-40,-10],[-35,14],[-45,10],[-47,-1],[-2,-33],[-22,-7],[-21,21],[2,15],[-20,1],[-7,35],[15,13],[23,-3],[21,15]],[[83653,16557],[-18,-16],[1,-7],[-10,-8],[-36,-5],[-37,12],[-39,0],[-43,-19],[-22,29],[-7,9],[-56,-15],[-14,-4],[-41,-14],[-30,42],[41,11],[41,33],[5,4],[14,58],[42,53],[46,30],[63,-18],[20,-35],[-15,-14],[17,-50],[42,-17],[6,-11],[17,-2],[8,-1],[27,-2],[-4,-28],[-18,-15]],[[96425,16856],[-69,-1],[41,45],[49,57],[98,73],[60,27],[101,39],[-72,-85],[-43,-35],[-45,-38],[-44,-32],[-76,-50]],[[84175,17012],[54,11],[4,57],[-26,36],[54,-4],[55,-13],[69,-11],[83,19],[64,54],[-2,-79],[-12,-59],[-37,-37],[-25,-73],[0,-76],[20,-60],[59,-18],[18,-25],[16,-24],[26,-43],[50,-5],[34,-45],[58,-2],[37,21],[22,-19],[-20,-64],[-78,-8],[-63,-20],[-72,-30],[-45,54],[-44,76],[-41,34],[-68,17],[-39,54],[-3,57],[-11,48],[-4,3],[-75,60],[-39,58],[-19,56]],[[85155,17124],[-21,-2],[-16,19],[24,8],[39,20],[1,-33],[-27,-12]],[[84752,17197],[-15,0],[-16,13],[-11,7],[10,11],[14,17],[10,-20],[7,-16],[1,-12]],[[86952,17225],[-19,-36],[-30,36],[-25,55]],[[85156,17446],[-77,-19],[-91,7],[0,40],[76,3],[58,16],[23,4],[26,-35],[6,-15],[-21,-1]],[[86878,17280],[-28,29],[-56,36],[-60,21],[-43,6],[-54,-8],[-69,35],[-9,55],[-36,61],[66,1],[36,-36],[-9,80],[-22,63],[-55,27]],[[84287,17641],[56,7],[72,9],[56,26],[40,-29],[52,-27],[30,11],[40,10],[21,-64],[65,7],[37,-10],[9,3],[25,-4],[19,-12],[7,-5],[64,-10],[27,-32],[37,-46],[-36,-25],[-102,10],[-3,-20],[-52,-16],[-43,-56],[-15,-32],[-53,2],[-6,49],[14,29],[-33,43],[-39,50],[-61,11],[-43,-60],[-37,-2],[-53,30],[-41,59],[-43,36],[-11,58]],[[86108,17692],[3,-30],[-45,20],[-45,5],[-28,29],[-37,48],[-46,18],[-49,54],[30,36]],[[84102,18054],[9,-76],[-11,-55],[-46,-37],[-68,68],[-31,-43],[-28,41],[-4,54],[44,16],[56,-12],[-13,96],[41,5],[39,4],[12,-61]],[[84287,17641],[-36,-51],[13,-84],[-69,33],[-72,-17],[-64,3],[-56,6],[-72,11],[-61,-34],[-2,-1],[-39,-26],[34,-59],[14,-19],[7,-10],[55,-6],[24,-46],[7,-13],[-63,-22],[33,-37],[31,-26],[55,-40],[47,-56],[46,-8],[-22,-54],[18,-47],[60,-26]],[[84175,17012],[-48,-20],[-73,18],[-72,2],[-22,39],[-12,47],[-51,23],[-37,-30],[32,-13],[19,-50],[-65,-74],[-42,81],[-25,36],[-37,36],[-38,4],[-58,5],[-53,-16],[-69,11],[-69,-28],[-38,3],[-14,1],[-14,-69],[-8,-51],[-37,-13],[18,-76],[3,-85],[-32,-15],[-35,-33],[-65,-12],[-63,11],[-21,49],[-59,-13],[31,-44],[-62,-17],[-57,27],[-53,-25],[-30,43],[-53,33],[-87,-6],[-19,-43],[-10,-21],[62,-9],[36,-7],[22,-37],[40,-60],[-76,-5],[-55,10],[-57,-18],[-37,8],[-61,-16],[-42,1],[7,64],[-55,35],[-25,-15],[-11,-7],[-29,-27],[-15,-15],[-29,-29],[43,-29],[25,-23],[16,-13],[51,-29],[41,-43],[59,-33],[6,5],[53,-8],[37,38],[-4,-20],[-1,-49],[29,-53],[63,-50],[-26,-28],[-52,53],[-35,15],[-12,-1],[-34,24],[-80,27],[-8,4],[-52,22],[-6,-43],[17,-45],[14,-10],[25,-22],[16,-47],[25,-42],[32,-52],[23,-45],[28,-45],[42,-64],[33,-50],[13,-20],[58,-51],[45,-37],[53,8],[57,-16],[19,5],[71,-5],[49,-3],[24,-7],[92,-59],[-7,-19],[-34,-20],[-3,-37],[-75,43],[-35,16],[-13,-5],[-19,1],[-53,-5],[11,-53],[2,-2],[39,-40],[40,-58],[26,-20],[27,4],[-21,33],[35,17],[52,-40],[-44,-21],[-12,-36],[-84,0],[-25,0],[-24,1],[-22,-6],[-51,-9],[10,-31],[45,-45],[116,-47],[7,-3],[42,-17],[61,-140],[1,-3],[43,-100],[107,1],[52,0],[49,-49],[25,-49],[34,-50],[-70,-25],[-1,-8],[-3,-34],[9,-47],[32,-33],[44,-71],[-20,-62],[-52,1],[-66,38],[-13,-52],[-73,-25],[-12,47],[37,33],[-47,32],[-34,-18],[-69,-6],[28,-52],[-20,-63],[-4,-53],[-3,-54],[54,-7],[40,20],[44,-1],[39,-6],[35,-6],[15,-64],[-41,-21],[-10,-14],[-16,-20],[34,-9],[50,11],[17,32],[53,-26],[60,-49],[35,-16],[43,-47],[37,-59],[50,-18],[43,-44],[31,21],[29,20],[-32,59],[82,19],[53,6],[45,2],[47,22],[-1,-91],[49,-39],[54,-7],[33,-30],[41,28],[49,-80],[13,-21],[30,-51],[24,-23],[47,-63],[60,-11],[-17,69],[29,29],[57,-31],[73,-10],[23,-61],[-18,-75],[-36,-2],[-51,-18],[-12,-72],[28,-46],[37,-44],[58,-32],[-26,-64],[-1,-4],[-26,-9],[-21,-7],[-14,-62],[53,-37],[13,-97],[20,-5],[45,-10],[55,15],[51,18],[35,31],[14,-51],[49,11],[5,64],[51,-13],[47,12],[-7,45],[-17,57],[-97,13],[-26,3],[-67,17],[-61,16],[28,32],[-47,48],[39,21],[32,33],[41,49],[55,-59],[47,-3],[35,1],[85,4],[48,43],[51,12],[49,27],[46,33],[50,-23],[36,-18],[-8,-54],[-51,8],[-40,-9],[9,-57],[-16,-95],[-7,-87],[47,-61],[59,13],[9,-57],[9,-5],[28,-16],[39,-47],[-55,-7],[6,-55],[26,-44],[63,-31],[35,-56],[56,-38],[61,-16],[8,80],[-16,53],[-20,50],[-9,79],[51,25],[24,-58],[25,-43],[42,-30],[-2,-57],[39,24],[12,-79],[31,-97],[34,-80],[44,22],[28,40],[4,-89],[3,1],[62,27],[32,-63],[21,-73],[46,-42],[42,-39],[45,-43],[42,-17],[40,7],[26,53],[41,40],[53,53],[56,15],[41,-9],[64,10],[-20,-78],[-44,14],[-50,-7],[-55,-35],[-29,-47],[10,-68],[-78,-47],[-68,-55],[36,-65],[40,-14],[-60,-64],[-37,74],[-80,27],[-30,27],[-48,28],[33,45],[-12,77],[-48,63],[-32,15],[-56,28],[-43,-41],[18,-53],[-12,-50],[-34,23],[-41,-20],[-4,-17],[-10,-35],[-8,-60],[27,-104],[51,14],[58,-45],[47,-36],[44,-46],[0,-66],[42,-22],[76,31],[-36,-84],[19,-33],[35,-37],[41,-47],[26,-44],[-20,-42],[-22,-44],[5,-71],[-42,52],[-19,53],[35,70],[-43,58],[-47,17],[-44,-49],[-63,58],[-56,14],[5,-75],[-36,-40],[-46,-34],[-67,11],[-75,-16],[39,-35],[-66,-15],[-39,-20],[34,-55],[-29,-51],[-46,-27],[28,-52],[-3,-55],[-1,-41],[43,-33],[37,9],[27,62],[0,42],[46,-12],[34,-22],[1,-62],[-12,-52],[3,-63],[40,-11],[33,20],[-12,-63],[-8,-36],[-4,-17],[79,-19],[65,8],[49,9],[63,6],[55,2],[36,-88],[41,-61],[38,-37],[35,12],[54,-28],[38,-19],[55,-6],[39,1],[58,-4],[46,11],[42,7],[49,-31],[56,-10],[49,6],[41,-32],[10,10],[35,36],[30,30],[51,4],[48,10],[45,29],[52,36],[47,30],[55,-3],[2,1],[33,25],[56,58],[38,56],[48,30],[49,-18],[39,3],[47,0],[29,61],[43,43],[53,35],[38,-7],[30,-14],[42,-69],[-9,-57],[42,6],[43,-42],[42,-21],[63,-9],[85,-37],[61,14],[6,-82],[65,64],[57,19],[39,9],[67,-22],[76,33],[42,6],[44,-10],[65,-42],[18,-56],[12,-63],[-53,-4],[-58,28],[19,-55],[-11,-8],[-23,-17],[-32,-36],[-17,-63],[18,-61],[69,-33],[40,-23],[2,0],[48,1],[40,34],[56,66],[39,-9],[54,59],[10,82],[11,44],[56,-15],[-50,84],[32,52],[38,38],[55,8],[45,-40],[31,-33],[37,-4],[-25,-62],[-6,-47],[-11,-45],[-25,-54],[-28,-62],[-5,-57],[-3,-32],[61,-50],[43,9],[18,95],[80,47],[40,-60],[30,35],[-18,72],[-66,29],[31,47],[37,28],[46,59],[33,66],[42,-65],[49,-42],[-9,-40],[-31,-22],[12,-62],[-12,-91],[-53,-56],[-26,-74],[46,-46],[18,-56],[5,-50],[-29,-83],[-19,-54],[-35,35],[-18,90],[-86,23],[-50,-33],[2,-83],[10,-49],[-55,-11],[-22,-40],[-29,-25],[27,-46],[2,-14],[4,-32],[39,47],[48,-36],[-38,-49],[26,-39],[25,-54],[33,43],[25,-88],[43,16],[48,13],[7,-57],[49,23],[21,-33],[55,10],[-4,-65],[39,-57],[39,-88],[39,13],[30,24],[34,38],[34,-92],[49,-8],[14,67],[47,39],[-3,-65],[48,16],[44,24],[-8,-69],[18,-78],[68,-41],[94,14],[60,66],[8,56],[25,88],[19,62],[2,40],[13,51],[50,21],[7,1],[82,8],[46,37],[-5,-51],[100,-60],[13,-3],[55,-13],[83,94],[33,31],[48,32],[30,18],[52,11],[25,-48],[16,-53],[32,67],[18,41],[27,57],[-42,42],[62,5],[21,53],[24,-68],[5,-15],[60,-64],[33,-41],[3,2],[53,43],[42,-32],[30,14],[22,-64],[79,6],[52,-40],[19,-70],[28,65],[9,-74],[-31,-103],[-51,-41],[-3,-48],[-38,-24],[0,-62],[0,-6],[26,16],[5,4],[33,44],[18,23],[46,84],[32,21],[15,52],[6,59],[38,60],[0,-79],[47,61],[49,-1],[-20,-63],[71,-48],[11,-60],[32,-30],[-44,-59],[53,-10],[53,21],[0,-57],[-25,-34],[-51,-17],[-40,-31],[60,-62],[53,-49],[-64,-41],[77,-39],[35,47],[72,-30],[-53,-32],[-30,-34],[-24,-41],[20,-66],[-62,38],[-18,-93],[15,-12],[32,-25],[14,-68],[38,-29],[28,-49],[2,-3],[5,-12],[22,-45],[22,-32],[9,-13],[9,-11],[38,-44],[7,94],[57,40],[45,35],[51,71],[42,-71],[18,-49],[-34,-28],[39,-48],[36,37],[29,19],[42,-14],[15,-41],[52,23],[58,30],[-36,25],[-2,18],[-4,36],[30,43],[52,45],[26,67],[8,89],[12,62],[2,13],[51,60],[50,-35],[41,-59],[50,-50],[6,101],[-32,17],[7,47],[6,52],[-32,51],[40,14],[9,4],[-32,48],[37,17],[38,-42],[21,-81],[25,-96],[49,-21],[39,62],[-7,84],[-38,63],[10,80],[1,65],[35,48],[-34,49],[57,38],[23,81],[-10,57],[-13,61],[3,53],[38,-44],[20,-70],[31,-47],[0,-73],[9,-63],[248,-271],[49,17],[43,-57],[45,-60],[55,-16],[-66,-45],[6,-25],[6,-22],[-8,-65],[77,-16],[51,-50],[27,-52],[-1,-35],[-2,-30],[-33,-77],[-24,-61],[23,-62],[-74,-22],[66,-69],[47,20],[51,-29],[31,88],[23,-33],[24,-61],[41,-43],[12,0],[63,-2],[-49,-69],[81,-67],[92,-59],[157,-53],[2,-4],[20,-45],[30,-66],[-80,-315],[49,-38],[26,-87],[120,11],[16,-78],[-41,-79],[-83,-23],[-154,-21],[-157,-47],[-68,-80],[113,3],[132,4],[324,31],[174,65],[-26,-229],[-141,-55],[-8,-37],[-45,-17],[-145,-36],[-100,-38],[-8,-28],[32,-45],[71,17],[55,-19],[13,-4],[53,-13],[82,-73],[-125,-32],[65,-158],[62,-11],[74,-21],[2,0],[79,-33],[29,-71],[-19,-17],[13,-45],[29,-69],[-8,-70],[-48,-90],[-50,-4],[-22,-28],[3,-32],[-47,-62],[-19,-26],[32,-88],[155,-218],[103,278],[118,-18],[211,-242],[22,19],[-1,-43],[0,-32],[64,-81],[-11,-45],[-13,-105],[-4,-44],[-2,-141],[0,-53],[-110,35],[-58,19],[-18,5],[-79,-91],[-37,-44],[-57,-198],[-12,-37],[64,-262],[222,-142],[127,-63],[207,-47],[219,-56],[33,-15],[50,-23],[103,-46],[174,123],[31,24],[0,-9],[7,-359],[-225,-270],[-111,-242],[-53,-117],[-2,-1],[-60,-37],[-18,-12],[-70,318],[-6,26],[-205,294],[-209,51],[-33,8],[-27,6],[-146,-141],[-10,-3],[-111,205],[-190,62],[-160,63],[-75,27],[26,-178],[25,-16],[39,-27],[66,-4],[9,3],[32,12],[75,-43],[38,-68],[22,-40],[26,-53],[45,-46],[-5,-15],[-18,-59],[16,-28],[16,-22],[-6,-57],[0,-7],[-2,-18],[46,-60],[17,-49],[47,-39],[18,10],[-1,-9],[-4,-38],[-61,-18],[-43,-12],[-11,-55],[-15,2],[28,-24],[29,-44],[20,-60],[25,-28],[13,-74],[-60,51],[-5,-2],[-5,17],[-32,45],[-17,16],[-8,-8],[-15,-14],[-49,10],[-7,2],[-45,10],[-53,-20],[-31,-51],[43,-33],[34,-9],[14,-3],[78,-51],[-24,-22],[-8,-7],[-15,-59],[-41,-7],[-12,-2],[-19,-3],[-16,-35],[-4,-7],[-48,10],[-31,37],[-16,20],[-51,13],[-14,5],[-41,13],[-13,5],[-25,-38],[-2,-10],[-5,-29],[-63,-4],[-45,20],[-13,6],[-31,6],[-37,16],[-23,11],[-70,43],[-64,-3],[15,-83],[21,-64],[30,-58],[47,-39],[32,2],[22,2],[43,-21],[3,-49],[-18,-7],[-18,-7],[6,-32],[5,-24],[-54,-4],[-100,-6],[6,-20],[8,-30],[-4,-11],[-13,-38],[24,-64],[37,-36],[34,-44],[-8,-34],[-2,-10],[-46,-37],[-8,1],[-27,2],[-25,0],[-47,-1],[-8,-7],[-12,-11],[-18,-16],[-17,-40],[3,-67],[-32,33],[-44,-6],[-37,5],[-3,-1],[-34,-12],[-65,7],[-62,-36],[0,-21],[10,-85],[18,-79],[3,-14],[17,-48],[42,-11],[12,3],[51,-27],[4,-46],[38,-45],[-55,-33],[52,-45],[-22,-70],[53,-54],[25,-77],[-28,-61],[74,-61],[169,-206],[172,-227],[69,-107],[-51,-213],[-57,202],[-266,319],[-121,107],[-191,80],[-57,175],[-128,82],[-128,229],[-179,17],[-192,245],[-129,327],[0,295],[-98,116],[-81,162],[-144,97],[-78,52],[-163,324],[-41,152],[-24,-26],[-15,78],[-8,52],[-38,9],[-31,49],[9,68],[-44,17],[18,47],[-72,98],[-19,-63],[-36,-97],[-44,-22],[-7,-38],[-24,-47],[-33,-65],[52,-54],[-36,-68],[6,-67],[-5,-91],[22,-46],[3,-16],[14,-60],[68,24],[51,12],[29,-18],[38,-18],[-28,-66],[-56,-86],[29,-72],[28,-69],[-48,-37],[-9,-64],[-17,-87],[-2,-45],[14,-44],[-71,-4],[29,-92],[-46,-35],[-39,2],[-53,-39],[-50,28],[-44,-33],[-8,-72],[-26,56],[-59,4],[-86,-43],[-79,-13],[-45,26],[-57,-27],[-58,-25],[-27,-43],[18,-28],[228,-46],[-251,-183],[-147,-197],[-250,-353],[-278,-375],[-112,-51],[-273,-337],[-68,-134],[-22,-77],[-11,-14],[-117,-163],[-19,-147],[0,-24],[-141,-93],[-16,-2],[-5,-7],[-106,-196],[-165,-158],[-107,-126],[-89,-124],[-78,-36],[20,62],[-51,-64],[-27,-47],[-37,-23],[-9,58],[-150,-17],[-78,-70],[-50,-6],[41,70],[82,151],[46,169],[32,75],[41,35],[100,103],[27,56],[-15,104],[84,232],[108,206],[15,166],[86,17],[105,82],[73,105],[105,81],[90,44],[5,6],[-9,55],[-9,75],[-4,53],[72,46],[2,1],[39,23],[87,180],[35,89],[66,75],[116,212],[-13,79],[-12,69],[-2,13],[-67,62],[-5,35],[57,-4],[25,-2],[114,64],[91,64],[32,-46],[64,-41],[-18,116],[-18,41],[-75,41],[-7,115],[142,-23],[63,-10],[154,82],[189,355],[-17,153],[-17,96],[-27,115],[320,0],[39,197],[-69,275],[-124,232],[205,32],[0,180],[90,99],[167,-164],[192,245],[-192,82],[112,154],[-108,247],[-9,20],[41,32],[14,12],[1,88],[55,201],[-85,315],[-88,179],[-139,273],[-94,188],[-219,235],[-237,19],[13,-343],[-71,-185],[-30,-78],[-46,-122],[-20,-128],[-2,-14],[-10,30],[-16,-8],[-21,-10],[-16,38],[-12,30],[-56,54],[-46,62],[-48,-34],[99,-355],[38,-409],[-179,-458],[-140,-46],[6,-51],[5,-39],[-52,22],[-75,32],[5,271],[2,11],[97,541],[33,301],[68,414],[13,245],[-20,-21],[-134,-143],[-151,-443],[-208,-391],[-384,-343],[-182,202],[51,35],[22,6],[167,99],[144,118],[41,30],[100,220],[41,91],[-6,81],[-24,124],[-85,122],[81,256],[21,121],[-113,115],[-732,-933],[-43,177],[-175,248],[-243,-65],[-131,-259],[-106,-8],[-30,59],[-43,86],[-46,63],[-32,45],[-58,91],[-63,54],[-69,85],[-25,37],[-35,87],[158,6],[49,31],[-11,2],[-45,9],[-156,21],[-31,71],[-41,71],[-22,43],[-46,48],[-61,49],[-40,40],[-23,48],[-16,76],[-4,67],[10,58],[27,67],[37,80],[46,50],[54,10],[38,-21],[48,-50],[-29,-58],[41,-60],[37,-12],[31,-22],[53,17],[15,54],[29,46],[37,13],[1,2],[12,50],[15,51],[-19,73],[-39,67],[-63,39],[-67,-20],[-4,-52],[-10,-47],[-55,-3],[-46,7],[-40,-17],[-42,5],[-16,3],[-42,-24],[-58,-16],[-42,-41],[19,-93],[-20,-44],[-35,-35],[-65,-28],[15,67],[4,52],[16,48],[20,48],[-46,40],[-42,37],[-52,37],[1,1],[19,44],[17,35],[-57,-23],[-51,24],[-37,7],[-57,19],[-34,-29],[-21,-59],[-34,-15],[-34,-10],[-17,-46],[-46,-30],[-39,-71],[-37,-53],[42,-47],[20,-81],[25,-40],[-93,-61],[-36,17],[-50,13],[-45,21],[-43,26],[-39,26],[-20,14],[-65,24],[-54,10],[-87,29],[-88,31],[-62,14],[-52,24],[-64,61],[-48,68],[-37,45],[-16,20],[0,-85],[-50,-46],[-51,1],[-64,19],[-90,22],[-46,8],[-59,18],[-53,18],[-56,11],[-198,71],[-44,14],[-51,16],[-50,32],[40,271],[276,-251],[303,-63],[152,69],[127,100],[39,30],[77,-81],[-26,-213],[288,-106],[185,-45],[117,-29],[128,425],[391,57],[147,21],[198,3],[109,1],[-3,10],[-142,382],[109,171],[-15,222],[-50,114],[-65,148],[-137,249],[-132,196],[-57,84],[-289,109],[-250,279],[-58,64],[-560,312],[-29,16],[0,-41],[0,-123],[192,-294],[-356,-29],[-201,45],[-246,56],[-42,9],[-235,265],[147,316],[11,25],[-104,353],[-15,51],[-59,140],[-130,102],[-73,44],[0,1],[-63,7],[-86,10],[-98,11],[-3,3],[-163,154],[-55,51],[-22,21],[-61,-62],[-13,-13],[-28,-29],[1,-7],[11,-232],[-532,18],[-37,1],[-41,4],[-248,21],[-89,-27],[-331,-100],[-204,150],[-52,39],[-75,134],[-31,54],[-153,-131],[-141,197],[-2,-44],[-11,-300],[-454,-110],[-79,-56],[-87,-61],[8,20],[-13,9],[-25,19],[-15,4],[-35,10],[-42,9],[-43,-14],[25,67],[10,14],[38,60],[38,85],[1,1],[30,46],[11,67],[140,12],[7,8],[6,6],[14,15],[-6,5],[-14,13],[-22,20],[-12,4],[-25,6],[-64,4],[-64,-26],[-7,1],[-49,8],[29,50],[52,20],[5,2],[36,11],[28,-5],[9,-1],[4,59],[-10,42],[-5,22],[34,76],[38,39],[59,71],[-43,14],[-8,3],[-27,-33],[-43,-5],[-49,-11],[-69,-44],[-39,-44],[-12,-25],[-13,-29],[-36,18],[-13,-63],[-58,-13],[-70,-39],[-11,-9],[-42,-33],[-45,-31],[-31,-27],[-35,-17],[-26,-42],[-52,-66],[-25,-73],[-27,38],[-38,-34],[-25,-22],[-12,-9],[19,71],[3,20],[4,31],[-38,34],[-55,-26],[-20,-46],[-27,-31],[-5,-25],[-10,-63],[-48,19],[21,59],[-13,30],[-6,14],[-67,-1],[-43,-76],[-26,57],[-23,46],[-11,81],[-17,58],[94,-31],[52,11],[30,-9],[10,-3],[42,49],[54,45],[52,37],[14,10],[21,38],[11,18],[37,-1],[6,3],[42,25],[30,43],[8,10],[-10,52],[-32,41]],[[80986,11931],[-37,73],[10,49],[1,2],[4,11],[12,33],[20,29],[17,24],[6,36],[7,38],[-10,76],[-50,-42],[-72,-44],[-37,-33],[-27,-34],[-26,-32],[-24,-18],[-19,-14],[-60,-43],[-2,-1],[-64,-20],[-39,-18],[-56,-51],[-60,33],[35,37],[-92,17],[-29,12],[-51,21],[12,33],[9,26],[43,31],[36,-27],[21,64],[33,-10],[70,20],[13,4],[-37,60],[57,26],[47,13],[46,4],[36,40],[7,46],[-6,9],[-26,39],[-45,2],[-6,-37],[-7,-39],[-37,-16],[-42,12],[-39,16],[-58,-32],[-78,-30],[-53,6],[32,78],[25,18],[23,16],[18,15],[18,16],[24,6],[34,8],[16,21],[18,22],[15,80],[-2,59],[-7,55],[-1,26],[-1,23],[15,18],[9,12],[36,-37],[60,18],[61,-48],[53,-50],[43,-46],[64,-11],[37,81],[16,44],[12,33],[1,68],[0,18],[39,31],[-48,73],[-12,62],[-2,14],[-27,-61],[-47,44],[-13,13],[-50,38],[-19,49],[-11,30],[-40,65],[-60,39],[-72,31],[-5,2],[-47,23],[-68,27],[-75,5],[-28,2],[-8,1],[-11,-1],[-39,-2],[-55,-12],[-42,-17],[-15,-6],[-18,-9],[-42,-21],[-64,44],[-43,45],[27,32],[7,9],[21,24],[22,25],[-66,-4],[-57,34],[-6,3],[-22,-6],[-28,-8],[-30,-59],[22,-16],[11,-9],[26,-19],[4,-41],[2,-25],[44,-36],[30,-13],[12,-5],[5,-19],[11,-38],[-10,-68],[0,-11],[-3,-60],[-17,-69],[13,-76],[7,-41],[4,-23],[-41,-38],[-15,-13],[-31,-32],[-34,-34],[-7,-9],[-22,-29],[-20,-20],[-8,-9]],[[79887,12681],[-6,35],[-3,12],[13,51],[19,60],[33,72],[8,17],[-14,57],[-33,29],[-56,-9],[-29,-60],[49,-81],[-33,-43],[-61,19],[-42,13],[15,31],[13,27],[-19,8],[-22,9],[-10,47],[-3,43],[-15,59],[55,27],[24,89],[-17,4],[-25,6],[-9,2],[-13,-54],[-53,20],[-32,-3],[-40,-46],[-75,-1],[-3,22],[-6,46],[-38,27],[-56,1],[-57,0],[29,53],[8,35],[8,38],[51,14],[37,-2],[38,-18],[48,108],[51,49],[54,75],[1,24],[0,26],[-25,43],[-51,41],[-44,12],[-15,25],[-8,13],[-14,26],[-21,-24],[-21,-24],[-14,4],[-54,17],[-50,-9],[-10,-2],[-54,-45],[-4,-18],[-11,-59],[-27,-57],[-49,-67],[-4,-59],[-69,16],[17,29],[9,14],[19,70],[-8,58],[0,56],[10,36],[3,11],[9,46],[-27,51],[-4,7],[-14,24],[-22,37],[1,-1],[48,-16],[6,1],[30,4],[7,1],[0,3],[4,114],[1,20],[1,13],[2,43],[-9,14],[-34,46],[-3,-62],[0,-27],[1,-48],[-8,-65],[-1,-7],[-24,22],[-11,9],[-7,6],[-4,3],[-41,32],[-5,-46],[-5,-46],[21,-41],[37,-83],[-23,-77],[-5,-95],[-55,-18],[-49,51],[-62,12],[21,58],[-26,67],[0,63],[28,63],[9,35],[7,29],[16,63],[6,64],[-25,79],[-45,46],[-69,-3],[-50,-10],[-46,-31],[-40,-40],[3,-20],[7,-60],[59,-91],[76,-38],[10,-27],[11,-30],[-30,-54],[-34,-57],[23,-26],[31,-36],[-51,12],[-26,-50],[-16,-31],[0,-49],[-1,-33],[-31,-28],[-24,-45],[15,-48],[3,-9],[-41,-13],[1,-11],[7,-62],[59,-34],[38,-34],[36,-16],[11,-45],[-62,-1],[-60,-22],[-35,-41],[-43,-8],[44,-53],[36,-18],[32,-22],[37,17],[51,-14],[66,18],[43,54],[49,-11],[-47,-54],[8,-40],[6,-31],[-33,-5],[-26,-5],[-62,12],[-54,0],[-53,-7],[-12,-2],[-25,11],[-59,24],[-37,-28],[-9,-8],[-3,-13],[-11,-43],[-31,0],[-55,21],[-65,6],[-60,-32],[-48,25],[-2,1],[-47,-25],[-43,-5],[-41,41],[-3,2],[-36,32],[-31,22],[-17,12],[-36,22],[-8,4],[-66,-13],[-25,-3],[-9,-1],[-16,-2],[-54,-25],[-41,-1],[-12,-23]],[[85778,17857],[-10,-10],[-29,-29],[-61,0],[-56,-19],[-13,3],[-25,6],[-41,27],[-29,-23],[-8,-7],[-36,-42],[-43,-17],[-45,9],[-26,85],[-35,-1],[-10,38],[-56,22],[-26,28],[-48,38],[26,-65],[-55,3],[-40,36],[-64,-25],[-41,-2],[-50,19],[-53,-10],[-19,-51],[-50,-42],[-38,18],[-28,56],[-35,-25],[-29,-37],[-37,4],[-7,62],[-14,61],[-20,42],[-48,-25],[-45,-3],[29,57],[26,37],[-31,38],[-33,44],[-46,23],[-37,-24],[-51,28],[22,55],[13,61],[6,43],[-25,35],[-50,33],[-57,32],[-23,-67],[-42,-38],[-46,-54],[-74,-28],[-51,-21],[7,63],[-17,73],[-30,33],[-46,40],[-55,14],[-4,1],[-56,8],[-37,-6],[-12,-2],[-49,20],[-44,20],[-60,-18],[-40,-38],[44,-32],[44,-47],[37,-23],[6,-63],[38,-36],[-52,-25],[-43,45],[-42,39],[-35,33],[-52,5],[-50,-5],[-30,-71],[43,-7],[14,-44],[36,-29],[61,-23],[-50,-47],[-68,-26],[0,-46],[-40,-21],[-64,-61],[59,-7],[50,-56],[68,-22],[29,61],[-60,33],[-38,15],[45,53],[53,29],[43,30],[45,35],[57,41],[36,6],[-6,-57],[-21,-35],[15,-49],[23,-58],[17,-41],[-39,-76],[-1,72],[-47,13],[-61,9],[9,-64],[1,-6],[46,-4],[14,-66],[54,-20],[4,-1],[70,-10],[-22,-90],[67,54],[5,47],[33,42],[6,-73],[33,-4],[42,26],[29,38],[51,-31],[83,-55],[28,-76],[49,-21]],[[63367,3092],[50,-8],[45,41],[38,-9],[46,-4],[28,-3],[4,-1],[36,-12],[42,22],[77,16],[11,2],[14,-1],[45,-2],[63,0],[36,0],[34,0],[57,4],[31,-23],[-41,-53],[-194,-77],[-176,-47],[-240,-47],[-227,-64],[-98,-29],[-11,5],[-27,12],[-174,0],[-83,0],[-8,27],[-2,7],[27,38],[19,-1],[25,-1],[20,-1],[31,-2],[141,-16],[83,45],[-16,-13],[-5,-4],[210,41],[3,11],[7,20],[49,52],[-23,60],[6,31],[8,31],[39,-47]],[[61809,3126],[55,-30],[51,9],[48,-2],[40,-21],[41,9],[7,1],[9,3],[49,17],[12,-42],[-7,-2],[-46,-17],[-51,-112],[-72,-70],[-231,-76],[-30,-10],[5,11],[15,30],[-49,-9],[-139,-29],[-3,5],[-60,3],[-67,0],[-36,25],[-76,55],[-40,6],[-25,47],[-1,1],[-52,18],[-28,9],[-63,22],[-88,0],[-12,1],[-149,15],[-59,16],[-21,6],[-16,37],[8,38],[84,-32],[51,-27],[59,0],[80,5],[58,-9],[47,-7],[178,-14],[21,44],[67,-37],[12,-4],[36,-11],[6,-38],[5,-28],[7,-39],[25,3],[52,5],[67,0],[85,17],[115,52],[-48,35],[18,54],[3,9],[-60,3],[-50,39],[51,34],[53,-10],[47,-6],[12,-2]],[[59329,3230],[158,-135],[54,26],[60,-40],[45,-47],[76,-31],[82,-24],[14,1],[55,2],[-13,-48],[-13,-43],[-148,48],[-71,27],[-217,118],[-78,65],[-182,145],[-8,54],[21,0],[165,-118]],[[61939,3333],[-87,-38],[-50,5],[-17,40],[-1,91],[64,-19],[52,-31],[39,-48]],[[61939,3333],[54,77],[50,27],[16,9],[44,-48],[-28,-42],[-24,-39],[-25,-25],[-37,-13],[-50,54]],[[64968,3280],[-46,-17],[-8,-3],[-22,1],[-83,-17],[-97,-18],[-120,-21],[-187,-38],[-55,13],[-18,4],[-33,13],[-10,4],[-30,34],[5,30],[2,8],[70,0],[96,0],[110,-9],[137,1],[88,20],[89,24],[156,48],[102,45],[14,11],[27,21],[0,33],[4,30],[27,8],[35,-5],[15,-8],[4,-2],[-6,-28],[-15,-29],[-1,0],[-10,-19],[-5,-4],[-36,-30],[-103,-55],[-43,-18],[-23,-12],[-30,-15]],[[61680,3584],[14,-72],[1,-36],[1,-20],[3,-10],[15,-61],[-3,-3],[-34,-38],[-34,9],[-22,-17],[-30,-23],[-48,-35],[3,10],[14,58],[12,48],[6,25],[26,88],[6,23],[6,22],[34,-3],[8,0],[20,47],[2,-12]],[[61608,3850],[33,-15],[34,26],[58,-42],[-17,-26],[-28,-42],[-8,-20],[-19,-47],[-39,-22],[-12,-7],[-46,-16],[-9,-6],[-38,-29],[-15,16],[-37,38],[-57,34],[-15,-37],[-10,-27],[18,-33],[17,-32],[28,-69],[84,3],[-42,-64],[-42,-39],[-12,-80],[-63,20],[-43,64],[-22,-31],[-59,26],[-17,7],[-52,75],[-23,4],[-29,5],[-13,17],[-18,24],[-33,39],[12,34],[9,23],[40,31],[18,13],[13,13],[37,37],[47,2],[10,-17],[18,-30],[41,-8],[64,51],[33,53],[-25,62],[-19,52],[45,12],[36,12],[40,1],[5,0],[62,-41],[29,-4],[14,-3],[17,-7]],[[67432,3754],[17,-8],[35,4],[15,2],[13,-11],[27,-22],[58,-17],[47,-23],[12,-32],[9,-25],[55,10],[53,-23],[19,5],[22,6],[-2,-59],[46,-26],[2,16],[4,33],[53,-3],[46,-38],[58,-31],[11,-11],[31,-30],[24,-9],[38,-14],[34,-36],[26,-27],[27,63],[95,-82],[116,7],[45,-49],[39,-44],[178,7],[92,98],[39,-7],[42,-49],[14,-26],[8,-12],[-6,-15],[-7,-21],[53,-31],[40,6],[-42,53],[0,18],[0,28],[42,-22],[27,24],[12,-55],[29,-38],[18,-19],[128,54],[117,0],[-34,-78],[-49,-26],[-45,-23],[-156,-29],[-172,0],[-56,-27],[-67,21],[-59,-28],[-49,26],[-60,41],[-48,32],[-27,18],[-20,-44],[-75,-2],[-171,96],[-67,9],[-112,60],[-65,31],[-46,18],[-46,28],[-27,13],[-12,6],[-23,14],[-12,8],[-70,15],[-133,27],[-139,82],[-89,53],[-56,37],[-156,105],[-116,99],[-39,64],[116,-14],[78,-43],[90,-47],[38,-20],[12,-2],[41,-9],[62,-30]],[[68137,3977],[21,-34],[45,35],[76,-1],[35,-51],[-59,-46],[-25,-33],[-12,-16],[-24,11],[-46,19],[-95,-5],[-52,21],[3,17],[5,30],[49,41],[26,17],[13,8],[7,-3],[33,-10]],[[61261,3903],[-6,-50],[-9,1],[-27,3],[-30,-7],[-16,-26],[-19,-29],[2,30],[1,38],[-21,37],[-8,45],[9,51],[1,10],[23,-41],[12,-21],[31,-23],[57,-18]],[[69307,3955],[-57,-51],[-67,-34],[-52,-26],[-62,9],[-62,27],[-43,19],[-50,30],[-41,24],[-22,36],[82,-6],[61,-11],[54,-18],[45,0],[34,18],[4,2],[31,5],[38,-42],[14,7],[29,17],[36,25],[27,19],[23,16],[-6,-18],[-16,-48]],[[60878,4080],[-6,-37],[-38,21],[-36,2],[-63,-3],[-11,92],[-1,66],[31,54],[20,-40],[8,-35],[10,-45],[48,-14],[41,-46],[-3,-15]],[[62169,4463],[21,-32],[4,11],[10,25],[6,14],[50,-9],[8,-1],[-29,-46],[-22,-64],[-11,-63],[57,14],[43,44],[11,50],[2,-2],[34,-39],[-47,-106],[53,-19],[-29,-56],[-19,-78],[-26,-81],[-31,-43],[-33,-32],[-10,10],[-29,29],[-50,54],[-38,-69],[1,-29],[3,-64],[-41,27],[-54,19],[-24,41],[26,79],[48,42],[15,16],[21,23],[5,22],[10,38],[28,81],[39,100],[-10,21],[-13,25],[-65,-1],[-104,-40],[28,64],[42,44],[1,1],[14,15],[34,50],[57,-53],[14,-32]],[[62337,4573],[-71,-41],[-6,43],[11,48],[20,18],[9,8],[60,8],[-4,-17],[-19,-67]],[[61677,4862],[41,-35],[22,16],[24,17],[14,-68],[-13,-56],[-15,-29],[-10,-18],[-13,-50],[-3,-29],[-2,-21],[42,1],[-21,-37],[-32,-15],[-4,-35],[-2,-21],[-58,-34],[-50,-59],[-57,77],[-30,55],[-4,-24],[-10,-62],[3,-28],[2,-25],[-29,-76],[-48,-20],[-63,-40],[-15,-2],[-48,-5],[-48,34],[-38,-77],[-18,70],[-46,24],[-44,14],[-32,9],[-64,-33],[-10,-73],[-5,-33],[1,-14],[1,-45],[1,-77],[45,-16],[-2,-57],[-18,-51],[20,-68],[-50,20],[-30,53],[5,37],[3,17],[-14,-1],[-23,-1],[-17,46],[9,47],[13,16],[20,24],[-21,76],[-26,74],[-24,-35],[-28,35],[-29,-26],[-11,38],[-29,62],[-62,-19],[-78,-5],[-43,12],[6,22],[8,31],[3,17],[4,28],[-4,19],[-7,27],[34,31],[26,-6],[21,-4],[69,51],[1,60],[25,57],[20,-30],[25,-37],[-16,-79],[-20,-73],[23,-28],[36,11],[-11,75],[11,40],[7,23],[25,54],[37,-9],[12,-3],[37,-14],[49,14],[55,11],[61,-4],[25,-27],[6,-19],[16,-56],[-33,-8],[-44,-17],[2,-61],[59,19],[7,2],[45,-32],[21,70],[-19,46],[-25,47],[36,37],[26,26],[22,12],[26,14],[51,55],[15,-28],[15,-29],[6,53],[7,54],[65,10],[68,46],[26,74],[63,-20],[48,-6]],[[63821,4938],[-20,-41],[-48,-19],[7,-77],[4,-6],[21,-33],[7,-78],[55,19],[9,4],[20,116],[40,42],[10,-46],[-14,-60],[15,-19],[31,-36],[-1,-1],[-44,-33],[-53,-52],[-9,-64],[-10,-58],[-3,-17],[-56,38],[-28,-91],[-16,68],[10,45],[6,28],[-68,1],[51,45],[-19,45],[-8,48],[-18,33],[-4,7],[-43,52],[-35,26],[-21,67],[1,8],[4,41],[43,-14],[9,55],[7,-1],[37,-1],[12,3],[32,9],[39,-26],[34,-19],[14,-8]],[[61388,5071],[25,-64],[30,-42],[47,-42],[30,-24],[-41,-18],[-37,-12],[-6,-2],[-7,-2],[-35,-12],[-43,17],[21,50],[4,9],[-1,61],[13,81]],[[64503,4950],[-17,-54],[-13,9],[-33,22],[-51,30],[3,17],[6,34],[4,31],[3,22],[4,79],[40,-46],[8,-36],[5,-28],[-1,-30],[-2,-22],[44,-28]],[[65065,5131],[-22,-58],[-44,13],[-4,1],[-12,23],[-12,24],[-27,35],[-9,78],[11,9],[36,34],[56,-44],[7,-13],[17,-35],[2,-51],[1,-16]],[[65071,5936],[-4,-133],[-74,75],[-22,74],[8,66],[58,20],[2,-2],[17,-20],[12,-66],[3,-14]],[[57614,6254],[-88,-33],[-53,29],[-36,68],[-8,75],[76,47],[56,-16],[28,-39],[23,-48],[46,-16],[1,-57],[-45,-10]],[[69103,6341],[-7,0],[-7,41],[25,67],[42,0],[33,-30],[-17,-44],[-25,-34],[-44,0]],[[57777,6336],[-38,-32],[5,46],[6,55],[2,48],[4,42],[1,10],[10,-17],[44,-80],[-1,-2],[-26,-65],[-7,-5]],[[65740,6875],[51,-83],[7,-22],[14,-40],[-22,-40],[-40,42],[-7,43],[-6,34],[3,66]],[[69577,6693],[-36,29],[-51,40],[-18,39],[23,32],[14,19],[-12,15],[-16,18],[87,11],[6,-16],[3,-10]],[[60281,6916],[37,-23],[43,6],[40,6],[8,-30],[4,-15],[17,-54],[-53,-4],[-34,20],[-35,21],[-26,12],[-27,13],[26,48]],[[60839,6942],[-17,-26],[-3,-4],[-15,-22],[-42,-32],[-16,-9],[-27,-16],[-15,-2],[-46,-7],[-1,26],[-3,58],[9,34],[7,28],[42,-8],[55,-11],[72,-9]],[[66099,6874],[-6,-29],[-38,59],[-5,9],[-10,53],[-2,41],[-2,29],[38,-43],[36,-58],[-11,-61]],[[60839,6942],[42,60],[38,21],[31,18],[45,-17],[-15,-40],[-7,-19],[-51,3],[-83,-26]],[[60566,6800],[-24,-33],[-53,26],[1,67],[-22,50],[7,44],[8,48],[-33,67],[39,42],[46,-32],[53,-21],[-2,-19],[-6,-49],[-46,-1],[0,-23],[0,-1],[0,-25],[48,-21],[-2,-49],[-1,-18],[-4,-41],[-9,-11]],[[66462,7044],[-44,-12],[-36,2],[-23,24],[-21,22],[-21,48],[22,0],[16,0],[10,6],[39,19],[9,-50],[3,-21],[46,-38]],[[69341,6717],[7,-12],[17,-28],[-10,-5],[-47,-22],[-16,57],[-1,5],[-63,-36],[-53,22],[26,38],[44,13],[13,41],[6,19],[-7,62],[-34,67],[6,76],[-59,3],[-67,46],[52,5],[41,4],[19,17],[13,11],[14,10],[31,22],[18,2],[52,7],[47,16],[50,-20],[24,-19],[23,-17],[-2,-63],[-5,-28],[-5,-25],[-40,-33],[-13,-33],[-7,-21],[-18,-60],[-1,-5],[-8,-36],[-13,-46],[-34,-34]],[[68998,6932],[-9,-57],[-61,3],[-22,34],[-12,18],[-17,45],[8,48],[-1,60],[-31,46],[62,35],[7,-63],[1,-15],[3,-41],[13,-13],[34,-38],[46,-28],[-21,-34]],[[65192,7188],[3,-14],[8,-36],[38,-68],[43,-47],[59,-10],[57,-24],[37,-46],[20,-60],[-56,25],[-30,43],[-34,4],[-9,1],[-52,-36],[-36,17],[-44,61],[-23,55],[-1,3],[-4,33],[-3,30],[27,69]],[[59946,7048],[-28,-52],[56,4],[48,-63],[-48,-32],[-44,-41],[-52,-65],[-16,-24],[-30,-46],[44,2],[53,8],[-1,-44],[0,-26],[-96,-4],[-74,21],[6,-24],[6,-21],[-37,-11],[-22,-40],[-4,-50],[-3,-42],[-4,-29],[-8,-55],[-24,-70],[-41,-45],[-33,-17],[-33,-16],[-16,5],[-56,16],[-52,-82],[-32,-69],[-6,-15],[-13,-40],[-6,-39],[-4,-30],[-31,-58],[-46,18],[-17,51],[-24,-33],[-27,7],[-5,1],[-39,37],[-20,18],[-19,42],[9,51],[-7,38],[-24,11],[-48,21],[-22,24],[-34,37],[-15,37],[-31,55],[-33,-53],[-33,3],[-51,14],[-45,-7],[29,63],[21,49],[16,77],[0,1],[4,19],[54,14],[59,-1],[69,-4],[43,39],[27,11],[9,4],[11,8],[23,16],[-5,52],[27,65],[3,79],[57,6],[-37,52],[54,54],[-28,56],[46,0],[32,3],[8,1],[19,-13],[12,-7],[25,-11],[40,-19],[16,-10],[25,-18],[40,19],[-12,53],[-17,20],[-36,40],[34,54],[44,12],[46,-30],[16,-27],[30,-53],[77,1],[37,35],[14,13],[1,62],[26,25],[44,27],[45,43],[36,-30],[7,-8],[47,-47],[-6,-73]],[[69577,7127],[-42,-22],[-32,45],[-27,31],[-19,34],[-5,9],[6,60],[12,53],[3,17],[6,38],[13,30],[6,13],[33,79],[30,-29],[16,-15]],[[60569,7572],[8,-31],[8,13],[18,30],[25,-60],[36,-29],[8,-45],[3,-18],[40,-44],[14,2],[38,5],[54,12],[26,70],[43,7],[82,-67],[3,-8],[0,-1],[16,-49],[76,-57],[-12,-53],[-2,-4],[0,-1],[-16,-36],[-44,-13],[-54,-9],[-46,41],[-4,54],[-37,-49],[-7,-77],[-10,-52],[-5,-27],[-63,-26],[-75,-4],[-26,60],[-1,0],[-5,12],[50,117],[-33,84],[-60,63],[-31,-11],[-64,-36],[13,74],[3,20],[0,1],[4,30],[4,62],[-13,36],[-6,18],[32,29],[10,-33]],[[58479,7166],[32,-91],[35,-41],[16,-18],[52,-15],[-37,-39],[10,-64],[-31,-36],[-34,-70],[6,-61],[54,3],[32,-57],[3,-63],[34,23],[15,21],[7,9],[-8,82],[-40,39],[-11,50],[18,11],[44,25],[16,78],[41,6],[1,0],[30,44],[32,-6],[25,33],[4,14],[15,46],[35,33],[12,46],[27,22],[56,21],[37,44],[9,-9],[20,-20],[30,-30],[57,-12],[17,-4],[51,-37],[-36,-62],[-12,-55],[-16,-32],[26,-48],[-26,-97],[-14,-63],[-14,-29],[-11,-21],[0,-42],[-22,-26],[-25,-27],[-26,-3],[-91,-9],[-68,30],[-35,-67],[-11,-20],[-39,-68],[-24,-58],[-58,-112],[-10,-61],[13,-40],[26,-36],[44,-6],[40,-11],[21,-6],[24,3],[31,3],[14,55],[50,20],[34,-36],[24,-55],[-9,-9],[-27,-26],[-35,-40],[-41,-15],[-76,-33],[-54,-29],[-73,-56],[-44,-23],[-54,-18],[-53,3],[-8,1],[-88,38],[-19,-20],[-16,-17],[-15,-5],[-23,-8],[-46,-8],[-56,-14],[-59,30],[-15,3],[-50,12],[-64,-14],[-23,65],[-24,74],[2,83],[-22,-2],[-36,-4],[-35,11],[-9,-50],[-1,-10],[-14,-25],[-1,0],[-13,-23],[-7,-4],[-33,-19],[-46,10],[-6,1],[3,16],[7,53],[30,35],[13,37],[-42,42],[15,36],[11,26],[11,44],[8,90],[16,42],[8,23],[60,-23],[8,1],[34,7],[31,-14],[77,8],[-7,77],[26,84],[27,-40],[53,7],[71,17],[48,52],[95,-9],[-1,67],[-8,57],[-34,-32],[-8,3],[-27,10],[-16,20],[-14,18],[-12,53],[-36,15],[-16,51],[-1,41],[-4,24],[-6,33],[-52,22],[-31,19],[-42,-54],[-39,-33],[-12,-10],[-45,-63],[0,-1],[-25,-4],[-17,-3],[-1,-12],[-3,-49],[-13,-15],[-19,-24],[-17,-1],[-35,-2],[-12,-4],[-44,-16],[-35,-38],[-18,-36],[-11,-12],[-21,-22],[10,90],[-23,76],[-15,78],[-7,52],[0,28],[0,15],[17,87],[-2,38],[0,14],[46,-43],[2,-39],[11,-17],[14,-20],[42,-10],[28,-4],[20,-2],[16,16],[36,36],[-25,69],[-2,52],[59,-29],[6,-3],[62,81],[1,81],[-21,56],[21,28],[0,22],[-11,26],[36,54],[24,36],[31,41],[10,69],[8,54],[35,-2],[51,-40],[54,-44],[47,-38],[39,-35],[59,-46],[55,-14],[-19,-39],[-10,-20],[28,-49],[-51,-5],[-17,-22],[-22,-28],[17,-91],[84,-29]],[[66317,7640],[39,49],[47,-3],[22,-31],[74,18],[45,2],[48,-35],[34,-36],[11,-12],[15,-12],[39,-32],[44,-27],[48,-30],[38,-34],[-44,-12],[11,-54],[-50,12],[-19,54],[-39,-34],[-40,14],[-48,28],[-52,16],[-57,78],[-31,40],[-46,-8],[-38,35],[-24,7],[-27,7]],[[60865,7715],[3,-53],[-36,20],[-35,24],[-12,81],[9,9],[33,34],[5,-10],[29,-55],[4,-50]],[[69578,7605],[4,50],[-2,49],[68,16],[-36,98],[-10,80],[63,27],[-19,92],[38,5]],[[69647,8172],[-20,-67],[-32,-79],[-52,-23],[9,62],[-39,27],[-60,-11],[-25,31],[-10,13],[-14,6],[-59,27],[66,42],[53,-8],[5,-46],[27,17],[19,12],[3,7],[20,37],[45,54],[42,42],[8,-89],[14,-54]],[[68919,8331],[40,-37],[24,-21],[39,-36],[51,36],[39,3],[37,-25],[-19,-48],[-5,-11],[59,-15],[0,-1],[-13,-77],[12,-64],[-68,-47],[34,-66],[-4,-2],[-40,-20],[-8,12],[-31,50],[-7,-64],[-4,-13],[-15,-54],[-12,-85],[-45,-3],[-6,0],[-11,7],[-23,15],[-4,-2],[-37,-21],[-34,-37],[-14,-49],[-13,-66],[29,-112],[-65,47],[-13,18],[-10,13],[3,60],[-30,29],[0,84],[-7,41],[-4,28],[-4,21],[46,2],[-14,72],[-7,41],[-16,1],[-31,2],[2,74],[49,11],[14,55],[0,1],[-24,1],[-13,1],[31,43],[20,27],[-38,74],[2,10],[13,59],[-17,36],[25,-2],[9,-1],[70,-11],[55,19],[3,-3]],[[67801,8757],[-4,-18],[-52,24],[-51,30],[32,32],[15,14],[69,4],[-3,-66],[-6,-20]],[[66378,8816],[-39,-15],[-3,22],[-7,48],[52,62],[76,19],[-59,76],[-32,70],[-12,76],[50,-6],[50,-44],[0,-4],[6,-52],[19,-24],[16,-21],[4,-19],[7,-34],[-11,-74],[-5,-31],[-23,-11],[-38,-19],[-51,-19]],[[55140,9791],[19,-43],[-66,5],[-3,0],[-4,0],[-68,5],[-37,40],[32,6],[24,5],[10,1],[47,1],[40,-5],[6,-15]],[[51686,9831],[9,-20],[2,-5],[36,-12],[-91,-43],[-42,23],[2,-17],[6,-43],[-8,-13],[-4,-7],[-3,-1],[-17,-7],[-3,-29],[-6,-24],[-10,-35],[-30,60],[-4,20],[-4,26],[-4,73],[-1,48],[2,-1],[26,-13],[37,11],[33,38],[19,3],[7,1],[48,-33]],[[53749,10753],[-1,-30],[-2,-53],[-3,-56],[-1,0],[-16,-53],[1,-49],[7,-34],[10,-54],[-5,-46],[-3,-29],[62,-45],[7,-58],[27,-64],[21,-28],[6,-7],[18,-21],[28,-31],[43,-57],[28,-54],[22,-51],[41,-64],[17,-61],[54,-82],[39,-58],[1,-1],[12,-37],[7,-70],[64,-63],[53,-38],[43,16],[5,-4],[40,-34],[57,-57],[44,-13],[1,-1],[2,-87],[6,-8],[28,-35],[13,-11],[19,-16],[10,-8],[10,-39],[3,-10],[8,-26],[35,-9],[39,-10],[3,19],[6,36],[-15,18],[-36,44],[-46,91],[13,41],[17,10],[29,17],[46,29],[59,71],[48,47],[22,29],[13,18],[49,37],[44,33],[24,41],[35,10],[56,-8],[51,-4],[49,-15],[17,-19],[21,-22],[12,-25],[7,-13],[24,-64],[-27,-80],[-27,-34],[-11,-13],[-34,-61],[-19,-69],[-9,-38],[-6,-28],[-4,-72],[-6,-44],[-8,-60],[-4,-22],[-5,-35],[1,-43],[14,-55],[3,-11],[2,-17],[5,-52],[8,-53],[-25,-58],[-20,-49],[-16,-65],[19,-65],[-2,-57],[2,-5],[-4,-3],[-42,-44],[-1,-1],[-47,7],[-37,-35],[-17,-6],[-16,2],[-28,31],[-20,31],[-24,0],[-17,-24],[-12,-36],[-24,3],[-77,75],[-12,67],[-6,38],[-81,60],[-16,33],[-20,47],[-8,20],[14,62],[19,54],[25,68],[-16,41],[-74,69],[-37,68],[-34,0],[-4,-3],[28,-121],[12,-31],[31,-21],[4,-67],[-27,-44],[-54,-64],[-2,-54],[-4,-31],[-45,-26],[-42,-72],[14,-47],[30,-23],[39,0],[22,0],[12,-13],[28,-44],[69,-46],[-6,-18],[-49,-18],[-42,-39],[0,-7],[0,-14],[24,-69],[61,-93],[67,-44],[24,-34],[26,8],[24,36],[2,16],[2,28],[-6,54],[6,62],[23,26],[46,18],[79,15],[44,-7],[117,-3],[13,5],[2,-3],[34,-6],[50,-34],[46,-55],[45,-68],[70,-42],[46,-22],[39,-17],[56,-60],[-26,-21],[-15,-12],[-59,35],[-57,-6],[-63,-5],[-4,0],[-14,-19],[-31,-43],[-1,-25],[-1,-13],[-1,-36],[-44,-73],[-5,-14],[-20,-58],[-30,-55],[-5,-102],[45,-53],[33,18],[-12,57],[52,76],[73,19],[37,17],[35,28],[64,-6],[43,-2],[44,-16],[50,57],[14,108],[3,10],[15,66],[96,-15],[37,-14],[32,-11],[31,-74],[7,-41],[5,-24],[-8,-121],[-74,-154],[84,-192],[63,-173],[-23,-64],[-50,-37],[-19,-4],[-28,-6],[-105,25],[-79,22],[-13,6],[-1,0],[-69,30],[-33,14],[-17,7],[-34,8],[-33,7],[-68,-9],[-78,6],[-59,6],[-45,-7],[-47,7],[-51,0],[-28,2],[-18,2],[-37,-1],[-54,2],[-60,6],[-42,7],[-30,3],[-46,3],[-131,14],[-61,17],[-48,13],[-5,2],[-48,15],[-77,25],[-94,28],[-61,24],[-78,36],[-74,34],[-49,29],[-60,42],[-2,1],[-66,37],[-66,37],[-50,43],[-33,13],[-56,-14],[-63,26],[-9,4],[-81,37],[-73,39],[-25,12],[-15,7],[-56,23],[-82,26],[-61,26],[-41,28],[-21,11],[-25,14],[-6,4],[-24,18],[-25,1],[-8,0],[-47,43],[-49,51],[-38,32],[-28,24],[-50,40],[-42,41],[-29,28],[-19,20],[-52,53],[-86,98],[-21,38],[-3,5],[-34,36],[-34,56],[-1,3],[-29,41],[-44,71],[-27,44],[-38,39],[-5,5],[-14,19],[-29,39],[-51,76],[-26,37],[-9,13],[-33,42],[-48,60],[-45,46],[-87,84],[-35,42],[-48,74],[-23,35],[-37,78],[-39,82],[-14,23],[-13,21],[-12,19],[-47,70],[-10,28],[-6,17],[17,-7],[30,-14],[46,-33],[9,-7],[1,-8],[4,-19],[4,-26],[15,-30],[40,-36],[36,-11],[42,-3],[24,-14],[20,1],[18,12],[22,-4],[7,-1],[9,-4],[16,-6],[24,-7],[28,-15],[1,0],[19,-6],[21,3],[33,15],[17,-1],[4,-1],[57,-10],[24,-20],[19,-8],[21,0],[92,-9],[23,-2],[11,41],[6,21],[1,2],[23,12],[19,9],[19,-6],[14,-5],[5,-1],[1,0],[13,3],[52,10],[57,11],[18,4],[5,0],[4,2],[20,10],[51,33],[22,33],[1,0],[3,8],[16,37],[5,24],[2,39],[-8,27],[-20,54],[52,30],[20,9],[13,11],[13,12],[42,35],[21,9],[20,9],[35,27],[16,18],[23,36],[15,34],[5,26],[2,8],[2,39],[3,30],[8,70],[-1,47],[-3,29],[-8,43],[12,41],[3,11],[32,26],[13,57],[7,28],[6,26],[6,29],[16,60],[2,9],[16,67],[28,62],[52,63],[18,5],[87,20],[38,17],[25,13],[24,23],[22,26],[10,12],[8,10],[7,8],[57,34],[10,-5],[8,-5],[1,18],[1,18],[71,30],[70,12],[37,10],[16,4],[19,10],[28,24],[2,2],[44,28],[40,-5],[6,-1],[-2,-4],[-24,-31],[-48,-88]],[[66317,7640],[-19,-44],[-5,-12],[5,-30],[5,-25],[25,-31],[10,-12],[77,-50],[55,-45],[7,-23],[12,-37],[32,-43],[13,-17],[11,-38],[14,-48],[2,-54],[-3,-60],[-1,-22],[14,-55],[23,-49],[22,-27],[19,-23],[18,-41],[9,-22],[56,8],[53,-40],[23,-17],[7,-23],[0,-1],[15,-46],[-55,30],[-48,15],[-15,-10],[-28,-20],[-21,5],[-34,7],[-36,19],[-46,-5],[-29,31],[-63,16],[-20,0],[-17,0],[-49,20],[-2,39],[-1,44],[66,-24],[3,40],[2,16],[44,16],[67,9],[-12,62],[-11,55],[-6,62],[-35,57],[-31,35],[-22,24],[-15,30],[-10,22],[-25,-35],[-8,-12],[-55,1],[-46,32],[42,35],[42,-10],[4,11],[15,41],[-14,11],[-33,26],[-60,-22],[-72,-18],[-67,26],[11,84],[5,37],[-42,51],[33,49],[-8,30],[-7,25],[-3,13],[-55,52],[-29,-36],[-43,-10],[-10,-3],[8,-16],[20,-39],[53,-31],[-42,-33],[-53,-38],[-5,-4],[-19,50],[0,1],[-2,6],[-26,62],[-12,51],[-32,31],[-31,40],[-11,17],[-29,47],[-50,-25],[-42,49],[-79,35],[3,35],[2,20],[-46,-4],[-15,13],[-36,28],[-12,11],[-37,33],[-47,-20],[-3,2],[-44,22],[-7,-44],[-8,-44],[4,-21],[2,-15],[2,-15],[8,-48],[28,-71],[42,-88],[37,33],[52,15],[16,5],[58,-5],[43,63],[18,-45],[40,-27],[24,-17],[-10,-18],[-17,-29],[-9,-38],[16,-34],[10,-21],[9,-63],[-9,-42],[-10,-46],[24,-12],[30,-16],[42,-78],[19,-39],[10,-19],[21,-42],[19,-19],[15,-16],[-77,-5],[-59,-3],[-9,59],[-14,43],[-61,33],[0,-75],[27,-78],[23,-58],[19,-50],[-8,-164]],[[65740,6875],[-46,81],[-22,55],[-30,55],[-28,66],[-14,14],[-1,0],[-41,40],[-4,32],[-3,30],[-21,59],[-10,25],[-14,33],[-37,60],[-18,71],[-18,24],[-23,30],[-35,47],[-35,20],[-4,42],[-17,32],[-17,11],[-34,22],[-32,-12],[-11,-6],[-37,-24],[0,-67],[16,-43],[13,-35],[15,-11],[26,-19],[51,17],[30,-61],[1,-69],[0,-7],[-4,-65],[25,-64],[-15,-16],[-34,-36],[-25,-24],[-15,-14],[3,43],[3,53],[18,132],[-55,7],[-20,-56],[-1,-84],[-28,-75]],[[65192,7188],[-42,133],[-6,44],[-9,59],[-24,36],[-24,35],[-15,-68],[-8,-34],[-4,-53],[-3,-34],[-29,-55],[-59,-1],[-38,40],[-8,8],[-9,59],[-10,39],[15,68],[-12,27],[-11,23],[-15,11],[-23,19],[-36,26],[-4,-32],[-3,-25],[-4,-16],[-13,-45],[4,-18],[20,-93],[-44,-43],[-11,-38],[-6,-21],[-5,-17],[75,-76],[77,-120],[21,-64],[9,-28],[28,-8],[44,2],[-18,-76],[-52,8],[3,-27],[9,-55],[42,9],[5,-17],[12,-47],[20,-35],[12,-23],[6,-11],[12,-27],[21,-34],[16,-26],[28,-22],[9,-6],[1,-16],[2,-48],[10,-31],[14,-44],[6,-23],[10,-38],[-37,21],[-20,11],[-52,61],[-56,-58],[4,-12],[22,-56],[55,-104],[-74,-114],[-40,15],[19,71],[0,2],[8,71],[-46,39],[-59,37],[-2,1],[-40,17],[-10,4],[-14,25],[-24,46],[27,62],[-10,21],[-19,44],[-44,27],[-3,36],[-19,34],[-15,28],[3,69],[2,34],[3,60],[0,4],[19,62],[-3,20],[-9,56],[12,93],[-21,85],[-20,105],[-4,30],[-6,40],[-2,11],[-5,32],[0,1],[-11,73],[-47,-15],[-10,70],[-50,-54],[-4,-4],[4,-12],[12,-33],[7,-25],[6,-26],[-7,-50],[10,-95],[26,-62],[50,-17],[26,-53],[-35,-10],[-24,-22],[3,-47],[2,-24],[17,-98],[1,-25],[0,-46],[-9,-25],[-10,-28],[-61,-63],[5,-27],[9,-45],[25,-58],[-16,-43],[-21,-57],[63,-39],[9,-9],[23,-26],[-31,-30],[-1,-15],[-3,-36],[16,-36],[8,-17],[11,-51],[9,-41],[4,-36],[-27,-29],[-20,-20],[-30,37],[-25,-43],[-1,-1],[-9,-15],[-17,-8],[-46,-20],[-34,-80],[-59,-19],[-49,-2],[-9,-21],[-7,-16],[-43,24],[-39,39],[1,-20],[6,-89],[54,-26],[17,-80],[-65,1],[-33,1],[-26,1],[-21,-66],[34,-27],[10,-9],[37,31],[43,-35],[52,-9],[47,-8],[21,-26],[-36,-19],[40,-22],[-17,-21],[-22,-26],[3,-31],[2,-23],[-59,-12],[-27,-41],[-46,-44],[-14,35],[-12,31],[-17,-31],[-20,-35],[28,-48],[6,-9],[42,-39],[-71,-31],[10,-31],[11,-37],[4,-28],[8,-51],[-43,-31],[-20,-84],[-1,-15],[-1,-30],[-10,5],[-25,14],[-18,10],[-9,-53],[10,-29],[8,-24],[0,-1],[3,-43],[6,-24],[6,-28],[-38,-24],[-30,-18],[-2,-2],[-40,-33],[-40,12],[-1,20],[0,15],[1,22],[3,43],[64,-19],[-20,82],[-12,21],[-29,50],[0,1],[-29,28],[-46,12],[-41,-15],[-30,-5],[-12,-2],[-31,43],[-31,-25]],[[63821,4938],[9,51],[2,16],[-27,44],[-13,20],[26,65],[-54,33],[-18,-10],[-44,-25],[0,-29],[0,-31],[-12,-7],[-23,-12],[-4,-2],[-32,3],[-17,-34],[-7,-14],[-19,-6],[-38,-12],[-13,61],[-8,56],[-55,-38],[-64,-28],[2,45],[2,39],[-86,33],[-55,13],[27,-64],[42,-28],[14,-10],[-1,-19],[-2,-47],[-2,-19],[-3,-46],[-53,7],[-22,-68],[-1,-4],[-17,-69],[-58,0],[4,-78],[18,10],[18,11],[51,9],[44,50],[40,27],[3,-27],[4,-48],[-9,-11],[-30,-37],[-79,-50],[-23,-68],[-1,-11],[-8,-62],[-53,-28],[-9,9],[-41,40],[-36,14],[-16,6],[-50,7],[-44,16],[-5,45],[-4,37],[-3,6],[-25,44],[20,86],[-58,16],[-11,54],[-5,47],[13,74],[-54,17],[-16,-83],[3,-33],[1,-13],[-6,-75],[-26,-69],[67,-31],[12,-48],[-31,1],[-11,-57],[-43,-75],[-34,-48],[-33,-17],[-40,40],[-35,-27],[-25,-94],[13,-82],[7,-2],[36,-8],[1,-18],[1,-41],[-4,-34],[-2,-19],[-36,3],[-56,22],[-48,59],[-34,58],[-3,-42],[-1,-12],[-37,30],[-39,45],[-3,47],[19,1],[25,1],[4,60],[34,78],[54,44],[-6,82],[-41,-7],[1,75],[-27,-18],[-34,-23],[-38,48],[50,46],[13,69],[36,33],[9,11],[22,26],[22,34],[0,30],[-1,23],[-2,50],[-63,-15],[-55,-37],[-3,33],[-3,49],[-26,-55],[-2,-5],[-22,-68],[31,-12],[-10,-17],[-21,-35],[-7,-22],[-12,-35],[-41,-3],[-53,-52],[-18,23],[-18,24],[-51,-21],[-33,-35],[-19,-19],[-24,-24],[-27,-27],[-49,-21],[20,45],[29,63],[-58,-21],[-7,-3],[-29,-63],[-28,-53],[-8,-10],[-17,-20],[-28,-33],[-49,-69],[-40,43],[0,60],[-41,70],[35,50],[5,8],[4,64],[7,20],[19,57],[-23,74],[7,60],[2,47],[6,103],[24,66],[39,56],[-44,0],[-3,0],[-17,0],[-15,-34],[-25,-54],[-37,-73],[9,-60],[-36,1],[-40,-35],[-54,-8],[-43,-5],[-25,46],[-2,4],[-5,-63],[-1,-5],[-6,-60],[-15,20],[-29,41],[-37,11],[-26,42],[-70,16]],[[61388,5071],[1,79],[60,7],[19,3],[0,67],[0,13],[-67,-14],[-49,5],[-4,-3],[-32,-31],[-15,-27],[-9,-15],[0,-14],[-2,-47],[51,4],[-8,-28],[-7,-26],[-6,-31],[-2,-17],[-7,-62],[-5,-57],[-45,-5],[26,-108],[-43,-24],[-11,-24],[-24,-51],[-70,27],[-17,-1],[-59,-3],[-66,27],[-55,-12],[-57,-3],[-61,40],[-78,-33],[-25,-10],[-29,-44],[-11,-16],[-24,-10],[-9,-4],[-13,1],[-29,1],[-42,-44],[-48,-30],[-56,44],[-22,50],[-40,29],[-57,12],[-1,26],[-1,31],[-6,55],[-11,27],[-5,13],[-58,33],[-2,1],[2,11],[6,45],[-19,64],[-7,24],[-16,-63],[-46,-1],[-36,16],[-5,25],[-8,42],[22,50],[52,78],[5,64],[-20,15],[-23,18],[-28,-27],[-23,-23],[-12,-76],[-64,-21],[-38,46],[-36,73],[-55,-3],[-63,78],[-80,51],[-47,32],[-1,31],[-2,41],[-45,39],[-64,32],[-38,31],[-28,25],[-27,23],[-1,33],[0,15],[-56,24],[-28,28],[-41,-8],[-48,47],[6,8],[17,25],[-6,40],[20,10],[26,14],[11,14],[23,31],[17,30],[15,27],[5,64],[6,75],[29,65],[113,28],[37,26],[23,30],[29,33],[49,71],[18,52],[36,31],[-4,35],[-10,80],[48,49],[57,0],[41,0],[50,68],[6,9],[10,76],[4,43],[46,33],[60,-5],[34,-9],[5,-1],[53,-19],[16,-5],[2,-1],[70,-21],[58,-41],[-63,-25],[-41,-55],[-65,-5],[53,-49],[42,22],[53,-12],[56,51],[13,50],[43,-9],[59,-8],[-21,-29],[-19,-25],[53,-2],[38,65],[52,71],[45,-20],[19,-98],[-17,-74],[-19,-56],[-37,-26],[-36,-9],[-31,-21],[-19,-30],[-15,-22],[-49,-19],[-38,-27],[-30,-20],[51,-44],[49,-21],[24,-15],[12,-8],[13,10],[27,19],[4,49],[42,44],[73,35],[24,61],[4,75],[41,54],[38,-18],[9,-4],[21,-9],[41,-18],[56,0],[7,-6],[26,-25],[4,19],[6,34],[28,29],[11,11],[5,3],[41,23],[0,76],[47,36],[12,9],[21,17],[46,37],[37,50],[61,10],[68,68],[-82,47],[-7,4],[-36,-4],[-2,29],[-2,28],[40,15],[18,72],[24,37],[12,48],[57,20],[53,32],[31,47],[29,48],[2,80],[35,-15],[29,-31],[-10,-82],[-36,-15],[-18,-7],[-10,-20],[-12,-23],[-11,-54],[26,-58],[-15,-74],[40,27],[46,-13],[19,10],[26,13],[38,21],[42,18],[13,5],[43,-39],[32,26],[4,3],[48,8],[2,-4],[32,-70],[-12,118],[11,7],[18,12],[-14,52],[39,77],[4,39],[9,92],[37,30],[3,27],[6,83],[5,49],[4,58],[2,35],[-47,-2],[11,-44],[-11,-65],[-24,-65],[-28,82],[-13,62],[-50,-36],[23,-84],[-5,-44],[-4,-32],[-17,-24],[-25,-34],[-31,68],[-23,35],[-28,-5],[-21,-3],[-7,-7],[-30,-28],[-41,49],[-59,-14],[-48,1],[-38,-12],[-32,-40],[-38,-9],[-10,-16],[-26,-37],[4,48],[1,18],[8,18],[19,44],[9,2],[47,14],[35,55],[34,-29],[39,55],[-37,33],[-46,29],[-5,29],[-7,37],[-23,33],[-33,44],[-32,44],[-4,-83],[-50,-44],[-22,-39],[-23,-40],[-22,-22],[-24,-26],[-39,-6],[-22,-3],[-61,5],[-10,78],[-19,86],[-25,88],[-9,27],[-12,33],[-25,13],[-13,6],[-43,15],[-38,-15],[-14,-56],[1,-55],[-55,23],[-44,-22],[-48,0],[17,64],[9,45],[6,32],[-8,42],[-18,48],[-5,15],[-62,-80],[0,-9],[-3,-66],[-10,-74],[-2,-15],[19,-94],[-60,-16],[-59,6],[10,80],[-3,71],[13,74],[18,94],[-38,-8],[-54,-27],[-33,-39],[-67,-42],[-73,11],[-60,8],[-74,-18],[-4,51],[52,63],[48,45],[-74,22],[-70,-23],[-45,-48],[-38,-20],[1,82],[-66,-39],[-67,5],[-31,55],[30,42],[-16,37],[-50,-19],[-38,-18],[-59,1],[-64,-47],[-48,-11],[-31,-21],[-36,-13],[-39,34],[-5,21],[-8,38],[-33,146],[68,84],[87,109],[265,-48],[105,24],[10,2],[32,7],[70,0],[97,4],[12,67],[-33,101],[0,53],[112,15],[32,71],[-64,87],[-26,2],[-159,12],[-126,-27],[-41,0],[-44,-71],[-73,-15],[-65,42],[-38,15],[-76,-87],[-53,-112],[-44,34],[-14,100],[21,53],[43,169],[126,146],[85,89],[26,147],[122,152],[115,184],[214,38],[-5,95],[-125,6],[-273,-82],[-75,-140],[-58,-115],[-52,-71],[-79,0],[-39,47],[-64,151],[-110,134],[-174,51],[-74,60],[-80,47],[-148,-90],[-196,-138],[-150,-102],[-15,61],[0,26],[-4,19],[-79,26],[-65,11],[-45,-11],[-2,-7],[-34,-94],[0,-4],[-1,-24],[-1,-43],[46,-14],[14,-45],[-56,-34],[-111,-68],[-21,-69],[51,-74],[-6,-52],[-88,-20],[-47,70],[-22,7],[-85,3],[-87,-54],[-28,-17],[-25,25],[-99,6],[-36,-94],[0,-34],[0,-30],[7,-5],[31,-23],[43,-58],[88,-37],[13,49],[88,31],[38,-8],[11,-60],[18,-78],[-65,-26],[-150,28],[15,-46],[-49,-88],[-3,-14],[62,-29],[3,6],[60,-36],[131,39],[123,37],[-84,139],[12,49],[69,-53],[128,-178],[33,35],[36,114],[-45,38],[-92,-6],[0,51],[-116,56],[7,27],[223,-35],[142,-185],[-148,-144],[129,-88],[176,218],[-130,232],[-121,28],[-110,86],[-14,46],[27,55],[301,-152],[68,-31],[117,-160],[46,-65],[-38,-80],[-88,-90],[5,-139],[169,-26],[102,-148],[152,-110],[71,-30],[126,38],[31,9],[58,26],[24,-156],[11,-74],[2,-12],[-27,-47],[46,-131],[11,-64],[-39,-24],[-44,-40],[-84,-39],[-4,64],[-103,-80],[-31,-48],[-37,-58],[-20,-31],[-1,0],[-48,-17],[-64,-22],[-31,-26],[-25,-21],[25,-69],[51,-31],[54,-4],[-54,-62],[-124,65],[-88,4],[-91,-22],[-37,52],[-22,-48],[-113,-17],[-12,70],[61,30],[14,72],[84,73],[65,150],[52,19],[-30,52],[-14,63],[-49,4],[-23,-36],[-111,-28],[-21,-79],[-54,-28],[10,117],[-35,107],[13,71],[52,78],[205,1],[60,-40],[55,-26],[62,0],[32,41],[-4,67],[-58,26],[-57,0],[-49,-33],[-117,7],[-42,76],[-64,-15],[-62,-12],[-45,-47],[-103,-38],[-20,-41],[-30,-126],[-30,-97],[-36,-113],[-127,-20],[-7,2],[-13,3],[-44,-54],[0,-37],[6,-59],[-46,32],[-52,3],[-12,3],[-16,3],[-51,-14],[-3,-28],[-3,-31],[51,-51],[-51,-22],[-34,-31],[-15,-60],[16,-11],[-16,-74],[-62,-20],[-32,-31],[-22,1],[-41,3],[-82,-83],[42,-64],[-12,-70],[-6,-204],[32,-49],[7,-62],[-7,-62],[-38,12],[-37,61],[-41,62],[-24,181],[-34,2],[-14,1],[4,-68],[-58,-90],[-88,-232],[24,-141],[-89,-26],[-56,131],[5,138],[54,110],[61,118],[41,155],[36,137],[45,35],[6,54],[15,92],[-40,-26],[22,76],[-19,36],[-6,12],[-128,122],[-11,60],[30,57],[60,86],[113,74],[18,51],[61,21],[105,6],[81,90],[8,161],[23,68],[-24,3],[-83,8],[-118,-44],[-26,-102],[-35,26],[-111,-105],[-21,-68],[-115,-79],[-67,-117],[-32,-92],[-30,74],[-106,-52],[-29,-79],[-25,-113],[-27,-133],[25,-84],[41,87],[5,12],[48,80],[6,-40],[6,-34],[74,-142],[-61,-95],[1,-63],[-54,-38],[-42,-230],[48,-24],[106,44],[73,-27],[-40,-106],[-14,-98],[41,-211],[64,-94],[-77,-136],[-117,-51],[-70,1],[-93,101],[-123,38],[-285,12],[-115,89],[-269,324],[-64,103],[-186,145],[-13,56],[-53,89],[-111,270],[-31,42],[31,54],[24,120],[21,196],[94,16],[86,90],[88,130],[-64,71],[20,46],[0,90],[-47,200],[-53,-47],[-67,40],[-98,197],[-1,48],[18,60],[64,45],[88,96],[89,-81],[-38,-46],[61,-19],[96,-26],[114,17],[177,147],[244,248],[146,-23],[132,-126],[119,-6],[83,9],[37,-57],[70,26],[-87,107],[54,24],[90,-27],[15,36],[66,157],[-41,74],[-11,51],[-44,31],[-39,51],[-16,48],[-4,50],[-3,47],[7,63],[-2,13],[-2,26],[5,71],[19,35],[40,21],[13,6],[15,7],[34,15],[71,11],[94,-11],[46,-69],[38,-4],[35,-45],[13,-17],[74,3],[2,0],[28,2],[81,27],[37,50],[33,91],[12,72],[0,26],[0,22],[1,52],[0,9],[0,12],[-7,3],[-12,7],[-7,4],[-46,24],[-18,10],[-62,41],[-63,10],[-57,10],[-18,58],[-3,10],[-42,-10],[-14,-4],[-49,10],[-44,-5],[-44,-3],[-59,-14],[-22,41],[-12,24],[-31,31],[-57,40],[-26,5],[-1,0],[-56,10],[-40,18],[-56,60],[-45,28],[-39,24],[-58,-38],[-25,-6],[-9,-2],[-10,2],[-29,5],[-1,-1],[-23,-28],[-93,-9],[-12,-1],[-56,-69],[-73,-18],[-42,-54],[-22,-30],[-30,-42],[-30,-68],[1,-5],[27,-86],[13,-33],[11,-30],[12,-96],[61,-53],[58,-39],[-2,11],[-16,79],[47,-17],[62,-32],[52,-28],[54,-34],[38,-37],[3,-19],[7,-39],[75,9],[74,-38],[42,-15],[9,-3],[47,-46],[2,-59],[-17,-59],[17,-50],[7,-19],[44,-64],[47,-57],[3,-86],[-8,-36],[-5,-23],[-34,-13],[-69,-11],[-18,-7],[-12,-4],[-11,-7],[-26,-18],[-64,-46],[-86,48],[-50,44],[-73,51],[-1,1],[-22,62],[-43,-37],[-58,-24],[-58,-29],[-58,-39],[-87,-66],[-57,-40],[-56,-37],[-13,-15],[-25,-28],[-18,-43],[-11,-10],[-18,-16],[-34,-13],[-49,-12],[-57,4],[-44,4],[-45,30],[-65,44],[-58,17],[-29,9],[22,42],[43,43],[37,57],[2,59],[14,62],[-6,56],[-3,34],[-18,65],[1,25],[2,41],[-12,47],[-21,27],[-20,25],[-15,9],[-42,28],[-30,38],[-6,7],[14,55],[2,6],[11,52],[2,51],[1,17],[-1,10],[-3,50],[-16,48],[-5,12],[-4,11],[-27,68],[-41,47],[-13,14],[-17,12],[-38,25],[-51,23],[-56,6],[-54,0],[-43,17],[-68,7],[-23,46],[-4,26],[-6,38],[-23,27],[-32,38],[31,16],[23,4],[67,12],[-28,20],[-28,21],[-29,32],[-44,31],[-53,40],[-63,48],[-53,17],[-37,10],[-12,4],[-31,8],[-1,0],[-24,6],[-51,17],[-43,-8],[-72,11],[-34,66],[-48,27],[-85,50],[-87,9],[-45,7],[-80,71],[-51,47],[20,98],[-4,75],[-17,58],[5,74],[-38,75],[-32,43],[-9,14],[-2,41],[-1,42],[-7,-7],[-14,-17],[-17,-21],[-60,8],[-49,28],[-77,11],[-39,6],[-36,-23],[9,64],[50,78],[-38,45],[17,84],[37,25],[59,-18],[-21,88],[-25,78],[39,63],[51,2],[30,2],[-48,91],[4,31],[0,17],[0,21],[0,29],[1,45],[-52,58],[-14,32],[-1,0],[-15,36],[-23,39],[-15,26],[-30,50],[-4,7],[-23,19],[-44,-12],[-19,-7],[-58,10],[-19,3],[-4,0],[-32,-6],[-54,-7],[-67,22],[-34,41],[-20,69],[-27,27],[-11,11],[-6,0],[-39,3],[-54,41],[-70,14],[-79,-9],[-36,-5],[-47,21],[4,15],[6,26],[2,27],[-3,37],[-4,47],[18,85],[-7,13],[-26,49],[-9,56],[-2,16],[-1,9],[-1,23],[-6,24],[-1,4],[-1,4],[-6,20],[-14,23],[-14,17],[-62,78],[-7,46],[-1,9],[3,14],[8,41],[-33,60],[-3,5],[7,79],[8,63],[11,64],[4,27],[6,31],[4,10],[11,29],[-38,73],[-12,69],[4,17],[12,48],[19,72],[35,53],[15,24],[3,15],[8,45],[14,42],[32,58],[14,42],[4,10],[-7,64],[-27,81],[-10,80],[-8,54],[-5,26],[-23,79],[-27,65],[-13,43],[-5,18],[-10,75],[-4,30],[46,18],[27,28],[15,16],[52,21],[44,-9],[20,-4],[34,-6],[23,-4],[53,16],[30,-15],[10,-5],[4,0],[32,3],[4,0],[52,20],[8,36],[7,31],[21,57],[46,12],[21,37],[13,24],[21,11],[47,23],[32,51],[141,320],[34,78],[30,71],[-5,4],[-17,16],[-17,72],[11,73],[51,46],[31,45],[11,16],[6,16],[24,70],[3,12],[8,33],[2,9]],[[69773,8134],[12,30],[3,7],[-29,39],[0,1],[-7,20],[-7,25],[2,8],[14,39],[20,47],[15,49],[-5,44],[-2,11],[-34,-32],[-45,-13],[-3,78],[-57,-29],[-80,-41],[1,31],[1,29],[26,43],[15,11],[40,30],[20,67],[8,17],[19,37],[44,52],[66,74],[-2,45],[-2,47],[12,57],[7,32],[2,36],[2,21],[0,7],[-2,63],[-28,20],[-18,54],[-16,42],[-13,50],[-3,13],[-45,-3],[-39,27],[-28,35],[-19,23],[-21,25],[-21,18],[-34,30],[-22,43],[-92,44],[-54,31],[-63,14],[-39,20],[-23,11],[-38,-33],[-67,7],[-55,-2],[40,56],[54,25],[1,0],[8,4],[-41,58],[45,-5],[7,9],[25,31],[-32,56],[-49,-1],[-44,-75],[-5,13],[-13,36],[31,81],[48,42],[9,28],[10,33],[-9,72],[-1,44],[0,22],[6,26],[8,34],[-6,16],[-13,34],[-3,9],[-57,1],[-57,28],[-84,-13],[-64,41],[-47,-60],[-46,-54],[-33,-43],[-10,3],[-29,10],[-42,-41],[-32,-88],[-33,-29],[-22,-20],[11,-6],[31,-16],[21,-78],[53,-57],[46,-42],[35,-59],[-4,-63],[-31,-73],[-17,-100],[-28,-15],[-34,-13],[-4,-17],[-8,-28],[-22,-5],[-9,-2],[-12,-16],[-12,-17],[-24,-73],[-31,-11],[-5,-2],[-39,11],[-23,-51],[10,-41],[-7,-57],[-17,-69],[-46,-27],[-33,-48],[-57,-57],[-37,-43],[-4,-5],[-35,-97],[22,-123],[-29,-90],[-22,31],[-12,15],[-30,55],[-12,64],[-21,-45],[20,-84],[-10,-3],[-36,-12],[-43,23],[-33,57],[-33,17],[-47,17],[-47,55],[-9,56],[-15,66],[-4,22],[-5,27],[-20,21],[-9,9],[-28,28],[-1,2],[-19,32],[-16,45],[-7,15],[-21,42],[39,56],[24,48],[0,1],[0,57],[0,9],[-6,89],[0,7],[77,4],[7,12],[20,32],[9,48],[10,45],[-4,33],[-3,26],[5,24],[0,1],[7,37],[0,44],[5,26],[0,1],[11,54],[28,9],[11,4],[8,35],[4,17],[-1,36],[-1,38],[-6,17],[-26,76],[-2,25],[-7,86],[-90,8],[-3,-60],[-1,-25],[-67,18],[-57,44],[-62,16],[-83,-2],[-3,17],[-8,44],[41,23],[42,30],[10,78],[-53,45],[-18,23],[-8,9],[-7,8],[-41,-6],[-53,30],[-46,56],[-28,-48],[-3,-6],[-28,-3],[-24,-77],[-8,-52],[3,-54],[0,-2],[2,-49],[-32,-39],[-8,-10],[7,-2],[33,-11],[-12,-82],[53,-25],[-1,-49],[-2,-69],[36,-41],[17,-18],[16,-10],[13,-8],[18,-36],[-15,-36],[-49,-27],[4,-69],[-4,-34],[-3,-35],[1,-4],[24,-63],[30,-42],[-12,-23],[-17,-32],[-36,-60],[-28,1],[-22,1],[-29,-26],[-6,-5],[14,-51],[21,-47],[40,-26],[22,13],[15,9],[18,63],[72,-14],[-1,2],[-7,12],[-29,52],[-2,3],[24,82],[0,1],[25,58],[26,34],[-6,49],[-2,13],[75,-4],[21,21],[13,12],[1,11],[3,37],[7,94],[41,35],[62,1],[4,-52],[4,-60],[-4,-59],[-2,-31],[39,-67],[-6,-10],[-1,0],[-20,-34],[-12,-7],[-33,-21],[-11,-26],[-7,-17],[-3,-64],[6,-21],[0,-1],[15,-59],[-42,-97],[-67,-25],[-7,-2],[-2,-11],[-2,-23],[-2,-15],[-3,-24],[40,31],[55,-43],[-5,-79],[24,-64],[-74,8],[-68,-68],[-10,45],[-15,68],[-59,84],[-67,7],[-46,12],[-15,34],[-53,40],[-47,23],[-8,4],[-22,-44],[-35,-98],[-7,-36],[-6,-32],[-3,-13],[15,-59],[17,-44],[31,-13],[29,-12],[28,-73],[41,-30],[45,-29],[38,-65],[-19,-20],[-18,-18],[-39,-8],[-12,-3],[-25,-40],[-42,-33],[-14,44],[-7,24],[-7,15],[-20,44],[-14,10],[-42,31],[12,43],[3,10],[-17,63],[-6,25],[-3,11],[-11,45],[-50,-10],[-34,-57],[-51,22],[-21,10],[10,68],[-21,44],[-1,2],[-38,-11],[-3,-1],[-4,-65],[-15,-61],[-1,-47],[33,-18],[-18,-94],[10,-39],[3,-11],[0,-3],[8,-40],[-9,4],[-26,9],[-25,51],[-3,5],[-21,61],[-5,14],[-38,44],[4,-61],[-7,-26],[-13,-49],[44,-47],[-55,-20],[-55,-16],[19,73],[-7,31],[-8,36],[-25,-24],[-13,-12],[-5,-3],[-26,-16],[-28,-3],[-11,-1],[-43,46],[-51,38],[-48,34],[-16,47],[-12,63],[-17,66],[-1,6],[6,52],[3,20],[40,-29],[36,-23],[-10,-68],[49,-42],[44,35],[57,37],[12,19],[16,25],[12,77],[32,65],[10,51],[59,-2],[54,-18],[24,-60],[18,35],[18,34],[-10,46],[24,68],[15,80],[-1,57],[-12,62],[-17,41],[-3,5],[-6,15],[-6,-32],[-5,-28],[-15,-2],[-22,-3],[-15,-23],[-24,-39],[-25,24],[-44,43],[-36,-40],[-27,-55],[-8,-38],[-4,-16],[0,-4],[-5,-55],[-7,-16],[-20,-48],[-48,-22],[-28,-30],[-6,-6],[-20,-97],[-22,7],[-28,9],[-20,74],[-7,36],[-4,27],[-14,28],[-1,0],[-11,23],[-37,49],[-2,2],[-42,55],[7,22],[12,44],[-1,4],[-18,51],[-55,-49],[-63,-67],[-61,24],[-44,33],[-15,72],[-1,-3],[-41,-78],[3,-57],[2,-22],[-6,-65],[-18,-45],[-8,-20],[-42,69],[-59,25],[-8,4],[-32,50],[-54,-22],[-14,-26],[-6,-10],[-2,-5],[18,-77],[5,2],[47,12],[6,-16],[31,-77],[8,-14],[18,-29],[19,-31],[-16,-15],[-35,-31],[-7,-11],[-18,-30],[-39,-34],[15,-56],[4,-16],[52,-78],[-24,-70],[-9,-4],[-50,-20],[-9,-3],[-72,-23],[-41,69],[20,14],[13,9],[0,1],[-1,45],[17,57],[-47,67],[4,58],[-13,19],[-11,15],[0,1],[-29,-1],[-24,0],[-5,-27],[-7,-43],[0,-14],[3,-71],[-29,-32],[-22,-44],[8,-20],[12,-27],[-52,-35],[2,-60],[0,-10],[39,-24],[49,-15],[10,3],[43,11],[40,-39],[12,-12],[5,-74],[40,-28],[48,-4],[69,-31],[57,52],[-7,47],[-5,33],[-13,52],[-4,15],[70,-23],[44,-32],[47,-36],[61,-13],[29,-37],[10,-70],[-8,-55],[-16,-77],[-28,38],[-32,-13],[-35,6],[9,55],[-43,-8],[-15,-3],[-12,3],[-48,15],[-8,-30],[-6,-23],[-1,-4],[4,-74],[58,13],[27,-69],[42,1],[38,-34],[-36,-24],[-33,-46],[-3,-78],[-1,-29],[-48,-108],[5,-25],[5,-25],[26,-55],[0,-1],[3,-2],[7,-3],[38,-22],[32,-18],[30,-36],[60,1]]],"transform":{"scale":[0.00005222877695776965,0.000040903950379504306],"translate":[-94.04334529999994,28.929092954000055]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ma-counties.json b/src/js/config/mapconfig/mapfiles/county/ma-counties.json new file mode 100644 index 00000000..dc5b3676 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ma-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-73.50796377699987,41.23795553600036,-69.9280530069999,42.88676061800015],"geometries":[{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25009","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8,9,10]]]},{"type":"Polygon","properties":{"name":"MA"},"id":"25003","arcs":[[11,12,13,14]]},{"type":"Polygon","properties":{"name":"MA"},"id":"25011","arcs":[[15,-12,16,17]]},{"type":"Polygon","properties":{"name":"MA"},"id":"25017","arcs":[[18,19,20,21,22,23,24,25,26,27,-10]]},{"type":"Polygon","properties":{"name":"MA"},"id":"25027","arcs":[[-27,28,29,30,31,-18,32]]},{"type":"Polygon","properties":{"name":"MA"},"id":"25015","arcs":[[-32,33,-13,-16]]},{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25025","arcs":[[[34]],[[35]],[[36]],[[37]],[[38,39,-25,40,-23]],[[-21,41]],[[42,-19,-9]]]},{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25021","arcs":[[[43]],[[44,45]],[[46]],[[47]],[[-40,48,49,50,51,-29,-26]],[[-24,-41]]]},{"type":"Polygon","properties":{"name":"MA"},"id":"25013","arcs":[[-31,52,-14,-34]]},{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25023","arcs":[[[53]],[[54]],[[-46,55,56,57,58,-50,59]]]},{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25005","arcs":[[[60]],[[61,-51,-59]]]},{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25001","arcs":[[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69,-57,70]]]},{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25007","arcs":[[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]]]},{"type":"MultiPolygon","properties":{"name":"MA"},"id":"25019","arcs":[[[81]],[[82]],[[83]],[[84]]]}]},"states":{"type":"GeometryCollection","bbox":[-73.50796377699987,41.237955536000186,-69.9280530069999,42.88676061800015],"geometries":[{"type":"MultiPolygon","properties":{"name":"Massachusetts"},"id":"25","arcs":[[[71]],[[81]],[[82]],[[83]],[[84]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[60]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[53]],[[43]],[[46]],[[54]],[[47]],[[34]],[[35]],[[36]],[[37]],[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[69,57,61,51,29,52,14,16,32,27,10,42,19,41,21,38,48,59,44,55,70]]]}]}},"arcs":[[[74487,75799],[-11,-3],[-127,189],[-9,59],[21,55],[22,212],[61,176],[85,41],[76,104],[30,141],[75,90],[21,-14],[17,-147],[-63,-177],[-13,-260],[-44,-292],[-96,-103],[-45,-71]],[[76042,78428],[-70,-49],[-47,97],[20,218],[50,122],[139,-225],[-92,-163]],[[75559,79695],[140,-139],[79,72],[55,-212],[-119,-85],[-172,109],[17,255]],[[81587,84273],[-15,-75],[-35,4],[-19,2],[-43,20],[-32,58],[11,98],[77,40],[31,-5],[10,-17],[0,-2],[15,-123]],[[81914,84738],[-52,-25],[-61,19],[-16,22],[-4,62],[102,163],[22,20],[23,20],[23,6],[3,-52],[1,-2],[11,-92],[-52,-141]],[[77175,85783],[-78,-19],[-25,41],[-22,65],[-16,46],[-30,101],[-10,33],[16,17],[49,51],[57,106],[25,47],[9,7],[43,33],[35,-48],[26,-37],[-42,-111],[56,-145],[-48,-105],[-34,-80],[-11,-2]],[[81573,86352],[-58,-187],[-26,10],[-56,3],[-42,66],[-1,38],[67,66],[92,119],[43,13],[9,-39],[-28,-89]],[[74794,94939],[-30,-134],[-24,22],[-68,62],[-108,165],[18,146],[90,92],[100,-55],[21,-118],[14,-77],[-8,-68],[-5,-35]],[[70510,72399],[-2,1],[-55,54],[-14,21],[-42,64],[-73,60],[-34,-29],[-16,-13],[-77,-163],[-30,-29],[-33,-2],[-9,4],[-21,8],[-62,0],[-17,0],[-69,-85],[-28,12],[0,67],[58,30],[-28,61],[-53,12],[-28,42],[-67,12],[-9,-22],[-10,-26],[-2,36],[-1,31],[-25,36],[-23,115],[23,49],[5,79],[-47,60],[47,116],[-36,54],[-17,28],[-5,8],[-17,49],[-22,55],[-23,48],[-61,158],[-48,115],[-50,-73],[-59,-115],[-30,-55],[-26,-30],[-25,-42]],[[69349,73200],[-5,10],[-51,105],[-1,4],[-63,138],[-44,109],[-75,188],[-23,57],[-42,110],[-81,164],[-25,67],[-20,47],[-25,62],[-53,133],[-31,73],[-19,61],[-45,115],[-22,61],[-56,133],[-20,49],[-58,127],[-28,67],[-20,66],[14,134],[3,73],[5,72],[14,158],[9,97],[34,33],[125,82],[39,55],[87,245],[49,221],[-41,104],[-10,30],[-43,134],[64,113],[109,45],[62,163],[-9,79],[-15,126],[-21,50],[11,85],[-17,73],[-13,17],[-54,68],[31,112],[3,9],[-59,121],[-28,103],[73,243],[-59,121],[-98,-18],[-212,-56],[-89,-23],[-62,-24],[-15,4],[-83,20],[-25,6],[-87,0],[-44,12],[-48,49],[-47,86],[-5,9],[-137,238],[39,474],[32,409],[7,123],[7,80],[8,76],[26,344],[21,46],[82,184],[36,82],[25,55],[61,200],[138,464],[2,5],[32,-70],[135,-97],[45,0],[19,5],[100,27],[80,54],[82,42],[3,2],[17,-12],[39,-24],[57,-37],[60,-5],[77,94],[3,4],[35,38],[47,48],[-22,85],[-50,228],[-85,385],[-407,720],[-167,297],[-16,28],[-32,57],[-34,62],[-53,119],[11,99],[5,49],[-182,-113],[-302,-187],[-369,-71],[-293,-54],[-314,-56],[-287,-52],[-3,-1],[-36,-9],[-54,-6],[-196,-37],[-51,-10],[-54,-9],[-154,231],[-26,36],[-52,87],[-24,80],[-36,124],[-23,105],[-57,197],[-160,123],[-46,-14],[-38,-50],[-36,-77],[-10,-163],[-7,-147],[-24,-87],[-17,-72],[-83,-187],[-38,-253],[-24,37],[-42,62],[-81,121],[-27,35],[-166,214],[-39,49],[-23,39],[36,100],[4,11],[5,17],[7,61],[3,67],[2,30],[0,15],[-1,18],[-16,29],[-1,17],[70,93],[11,4],[8,3],[24,8],[20,11],[20,25],[32,40],[-78,91],[-39,42],[-5,5],[-4,4],[-190,197],[-55,61],[-42,42],[-28,31],[-27,26],[-30,29],[-31,31],[-105,108],[-109,115],[-28,24],[-154,158],[-98,105],[-72,77],[-433,449],[-78,91],[-3,2],[-190,204],[-91,98],[-213,211],[-42,49],[-37,32],[-109,107],[-43,41],[4,4],[55,97],[40,65],[105,33],[70,0],[79,54],[30,43],[25,98],[25,129],[5,109],[30,86],[3,84],[-10,81],[-2,16],[-7,55],[-19,233],[-69,609],[-20,162],[-19,152],[-24,158],[-51,397],[-16,125],[-46,362],[-24,186],[-16,128],[-24,190],[-16,123],[-21,162],[-24,189],[-57,450],[-19,149],[-15,113]],[[62906,90861],[7,13],[116,169],[10,12],[70,78],[42,57],[47,65],[343,176],[188,52],[72,21],[198,-96],[167,-78],[18,-8],[13,-6],[22,-10],[28,-13],[5,-2],[9,-5],[52,-25],[21,-12],[66,-37],[33,-12],[45,-19],[57,-26],[12,-5],[95,-41],[108,-50],[56,-27],[172,-81],[-24,772],[-11,169],[-7,84],[-21,621],[-2,60],[-4,116],[-11,306],[-12,329],[-29,764],[21,50],[3,6],[26,53],[26,54],[28,55],[223,442],[187,353],[29,57],[30,21],[285,264],[56,52],[113,104],[41,31],[51,40],[71,55],[308,225],[97,-51],[126,-66],[159,-83],[41,-12],[36,-11],[32,-16],[17,-8],[24,-11],[53,-27],[43,-22],[61,-32],[5,-3],[67,-29],[41,-20],[26,-11],[20,-8],[232,-113],[79,-40],[142,-70],[118,-59],[100,-48],[165,-79],[68,-32],[85,-42],[45,-22],[90,369],[36,212],[70,370],[11,81],[76,398],[35,174],[113,455],[2,8],[28,107],[32,121],[87,285],[98,163],[43,70],[50,102],[73,120],[57,92],[47,75],[66,23],[171,65],[174,62],[51,16],[286,94],[116,37],[89,33],[136,45],[33,4],[28,9],[10,3],[87,21],[141,41],[39,11],[149,42],[67,23],[83,28],[53,28],[28,15],[109,91],[26,24],[16,15],[35,31],[83,78],[24,21],[1,1],[14,12],[124,110],[56,53],[7,7],[211,212],[114,110],[9,10],[28,28],[48,50],[86,87],[6,4],[17,12],[6,3],[52,26],[18,6],[68,14],[149,38],[145,26],[39,2],[31,-1],[29,-1],[35,3],[99,6],[78,-11],[35,-14],[54,-22],[78,-42],[293,-153],[13,-6],[76,-84],[1,-2],[10,-12],[3,-5],[2,-2],[45,-61],[184,-236],[33,-37],[30,-36],[39,-53],[11,-12],[26,-33],[5,-7],[36,-43],[43,-56],[55,-72],[9,-12],[26,-33],[40,-48],[28,-35],[149,-194],[173,-206],[25,-30],[251,185],[70,51],[3,3],[112,150],[12,17],[31,37],[42,43],[40,28],[40,26],[43,32],[29,28],[5,2],[51,25],[23,13],[39,14],[54,2],[16,0],[18,-130],[-1,-151],[-4,-134],[-6,-154],[2,-125],[-8,-149],[2,-124],[2,-125],[5,-197],[13,-185],[13,-253],[15,-267],[12,-177],[25,-301],[8,-162],[8,-373],[-71,42],[-94,0],[-86,-53],[-79,62],[10,90],[1,0],[4,38],[0,1],[-72,59],[-60,-164],[-68,-21],[-23,-7],[-32,1],[-58,2],[-86,60],[-52,-83],[-29,-45],[-33,-14],[-61,-26],[-63,-10],[-30,-23],[-1,0],[-31,-24],[-53,-49],[-57,-55],[-61,-37],[-72,-36],[-46,-81],[-72,-40],[-85,-8],[-99,55],[-34,51],[-43,64],[-68,171],[-75,164],[-80,19],[-78,120],[-82,10],[-102,32],[76,-162],[72,-41],[73,-125],[99,-245],[66,-120],[61,-65],[1,-1],[69,-60],[103,-36],[57,-37],[83,-60],[39,-77],[43,-129],[45,-62],[47,-56],[56,-99],[43,-97],[55,-82],[88,-64],[111,-53],[65,-3],[159,-30],[69,20],[53,3],[86,94],[67,195],[97,-35],[13,191],[-30,161],[13,136],[90,-2],[71,-221],[42,-180],[68,-84],[65,100],[-5,99],[-62,171],[-140,261],[-59,71],[5,122],[49,69],[78,-20],[146,-162],[51,17],[10,-6],[3,-335],[29,-563],[10,-529],[-11,-72],[23,-226],[20,-205],[34,-231],[22,-164],[14,-106],[19,-113],[18,-107],[24,-141],[28,-178],[31,-192],[18,-126],[23,-144],[23,-146],[31,-157],[19,-104],[19,-106],[28,-137],[31,-153],[39,-171],[30,-134],[39,-147],[43,-191],[27,-108],[30,-123],[36,-125],[52,-169],[41,-156],[39,-146],[86,-252],[30,-133],[32,-118],[38,-156],[24,-166],[9,-187],[-85,-134],[-107,-97],[-203,137],[44,387],[0,3],[-60,75],[-87,41],[-27,230],[-103,157],[-19,139],[-64,23],[-66,83],[-34,172],[36,243],[-25,159],[0,91],[0,66],[-3,65],[-4,93],[-56,147],[-100,208],[-29,124],[-47,154],[-54,135],[-3,70],[-2,86],[29,162],[7,39],[-5,110],[7,137],[-46,70],[-20,30],[1,100],[0,51],[-15,171],[-21,112],[-70,-27],[-78,10],[45,-167],[8,-28],[-21,-121],[-11,-65],[-4,-23],[6,-71],[1,-18],[7,-76],[-8,-92],[-3,-33],[-32,22],[-37,26],[-11,21],[-25,45],[-27,50],[-10,12],[-40,47],[-8,9],[-70,68],[-89,44],[-69,1],[-104,27],[-4,1],[-109,22],[1,-3],[1,0],[12,-23],[6,-12],[36,-69],[94,-62],[4,-2],[73,-31],[59,-29],[40,-31],[24,-18],[28,-43],[37,-55],[40,-66],[-11,-136],[-6,-76],[20,-207],[37,-202],[32,-112],[27,-90],[62,-203],[14,-44],[32,-100],[1,-103],[2,-84],[-32,-115],[-17,-62],[-18,29],[-38,68],[-15,28],[-73,31],[-26,-6],[-19,-51],[46,-66],[59,-121],[11,-61],[8,-50],[3,-114],[2,-84],[-79,-30],[-71,20],[-5,-20],[-9,-32],[23,-68],[48,-56],[45,29],[69,13],[62,-250],[64,-146],[-38,-95],[-19,-45],[-14,-91],[-64,-91],[-75,13],[-89,-127],[-48,-213],[-1,-5],[-1,-2],[12,-146],[13,6],[33,13],[102,38],[66,151],[28,101],[68,-19],[50,54],[20,22],[19,141],[52,33],[69,34],[66,8],[74,14],[83,-31],[91,-135],[-11,-128],[56,-162],[51,-136],[42,-102],[23,-130],[42,-119],[-72,-80],[-49,-15],[-35,151],[-94,8],[-52,24],[-54,24],[-81,-4],[-7,-1],[-85,-109],[13,-151],[24,-88],[-18,-99],[-16,-94],[-6,-38],[-1,-2],[10,-31],[19,-60],[17,-51],[77,170],[2,4],[6,163],[1,12],[-7,62],[-14,122],[66,4],[8,-4],[44,-21],[12,-6],[62,-61],[61,-18],[12,-52],[8,-36],[10,-42],[37,36],[10,10],[30,29],[50,48],[65,-9],[86,-33],[67,-16],[171,5],[87,-27],[68,-95],[44,-63],[45,-49],[64,-98],[70,-42],[107,-11],[91,-39],[98,-13],[77,-13],[64,-46],[76,-80],[70,-108],[89,-180],[52,-120],[53,-87],[67,-131],[62,-113],[15,-106],[3,-134],[-7,-148],[-52,64],[-71,107],[-129,128],[-115,93],[-96,70],[-102,70],[-79,53],[-58,52],[-80,113],[-51,35],[-48,50],[-101,23],[-40,-67],[-63,-30],[-8,-4],[-23,-11],[-30,-23],[-59,-45],[-88,-8],[-52,6],[-14,1],[-77,-82],[-74,-133],[59,-1],[52,53],[41,43],[15,15],[90,-52],[56,-26],[77,-32],[50,-53],[30,-32],[50,52],[-5,30],[0,2],[56,74],[177,17],[56,-108],[11,-7],[79,-50],[44,-33],[19,-14],[6,-8],[44,-57],[-47,-160],[-29,-35],[-82,-353],[-21,-18],[4,-4],[-122,-72],[-66,37],[-37,21],[-34,80],[-45,106],[7,2],[-12,24],[-74,149],[-4,1],[-42,-36],[-5,-5],[-80,-114],[-70,-18],[6,-32],[21,-99],[62,-2],[69,113],[73,-143],[58,-101],[23,-82],[44,-63],[13,-80],[7,-41],[-40,-92],[-15,-33],[-18,-61],[-17,-54],[42,-208],[34,-100],[-25,-130],[-72,52],[-8,-131],[-4,-77],[69,35],[50,-9],[66,33],[-26,104],[2,217],[21,116],[21,113],[7,22],[41,125],[78,-8],[-34,-107],[22,3],[41,7],[59,-14],[36,26],[89,66],[84,-86],[75,-194],[75,-122],[4,230],[-72,108],[83,31],[70,-60],[52,-67],[69,12],[53,23],[44,-94],[55,116],[79,38],[52,-21],[29,133],[5,26],[28,127],[-67,45],[-25,174],[13,152],[67,176],[165,-117],[92,-90],[82,-77],[60,-42],[321,-73],[206,-164],[169,-311],[-24,-58],[0,-1],[-73,-236],[-64,-208],[-6,-23],[-32,-124],[28,-16],[20,-12],[78,208],[72,172],[59,-74],[25,77],[55,169],[24,11],[37,17],[88,120],[-15,125],[-74,10],[-7,1],[-44,40],[-34,99],[-32,1],[-66,-62],[-85,83],[0,182],[36,142],[-10,117],[32,142],[90,134],[57,38],[40,0],[88,91],[7,6],[55,63],[21,124],[29,130],[43,90],[31,175],[56,68],[51,65],[97,109],[101,104],[74,118],[46,98],[37,64],[4,22],[47,62],[29,7],[93,-156],[41,47],[42,83],[35,83],[70,72],[108,64],[84,-79],[20,-158],[69,-61],[94,13],[16,-155],[-25,-106],[-55,-118],[14,-270],[17,-161],[-54,-567],[14,-247],[35,-34],[8,-29],[74,-66],[86,29],[84,45],[100,-50],[96,-41],[124,69],[104,-44],[67,-114],[-5,-126],[-44,-163],[82,-135],[1,-7],[38,-61],[0,-189],[-78,-170],[6,-50],[117,-92],[-7,-296],[-144,-165],[-136,125],[-31,-6],[-86,-30],[-114,-75],[-72,-95],[-110,-97],[-83,-168],[18,-139],[-44,-121],[-85,-32],[-75,-36],[-68,-56],[-168,-474],[-4,-113],[29,-147],[16,-176],[-24,-127],[-54,-175],[-63,-150],[-47,-116],[-49,-106],[-76,-94],[-98,-35],[-94,-3],[-54,-83],[64,-236],[-67,-211],[-71,-125],[-90,-32],[-73,-55],[-82,34],[-32,145],[49,98],[10,157],[43,164],[65,108],[67,-7],[60,187],[-24,170],[-56,89],[30,219],[-77,69],[-31,124],[38,58],[46,61],[107,0],[84,222],[20,131],[-87,73],[-142,-203],[-108,-67],[-24,-125],[-77,-24],[-41,74],[-84,19],[-97,-15],[-91,-136],[10,-168],[-47,-111],[-88,-60],[-51,-192],[-53,-124],[-1,-38],[43,-26],[28,-17],[23,-77],[-53,-146],[-57,-22],[17,-143],[-50,-121],[-89,-22],[-78,-112],[-49,-84],[-41,-116],[-27,-99],[-36,-106],[-58,-72],[-44,8],[-66,-45],[-100,-62],[-82,-136],[-125,-7],[-27,174],[-92,56],[-97,14],[-21,-261],[-100,-47],[-75,28],[-24,153],[46,115],[-10,137],[-56,3],[-77,-44],[-14,-159],[-79,39],[-6,-6],[-86,-76],[-10,-9],[-92,-34],[-45,-34],[-62,-18],[-73,-27],[-54,-102],[-77,-57],[-46,6],[-55,-58],[-73,-103],[-50,-188],[-27,-188],[-65,41],[-93,28],[-60,-198],[-19,-4],[-23,-57],[-141,-63],[-29,84],[29,95],[75,95],[-10,214],[45,75],[2,48],[124,218],[1,50],[-27,36],[-60,-44],[-26,-18],[-13,-39],[-12,-33],[-40,-113],[-61,-24],[-43,-81],[-21,-124],[-50,-18],[-102,-12],[-102,-88],[-79,-22],[-18,111],[-117,-55],[-141,-130],[-119,-88],[-147,-237],[-76,-96],[-221,-164],[-196,36],[-81,-115],[-69,28],[-93,-31],[-106,-53],[-118,-69],[-48,121],[-61,34],[-129,-279],[-154,-102],[-103,146],[-61,51],[-102,-34],[-67,-106],[-69,-100],[-57,-161],[-62,-106],[-123,94],[-77,-31],[-6,2],[-45,20],[-57,24],[18,159],[60,72],[14,139],[-10,52],[-26,38],[-121,-221],[-39,-96],[-76,45],[-55,90],[-4,-2],[-53,135],[-1,1],[-2,7],[-255,-29],[-127,160],[-87,72],[-7,-87],[81,-334],[147,-73],[100,131],[31,-9],[61,-123],[83,-58],[23,-166],[50,-83],[101,-93],[-40,-106],[33,-102],[-51,-83],[-34,-139],[-18,-148],[33,-66],[56,72],[97,390],[33,72],[25,53],[38,102],[41,-21],[50,-145],[5,3],[24,-88],[-32,-93],[-67,-183],[89,-118],[53,170],[74,103],[69,139],[80,18],[88,113],[81,47],[50,-20],[33,-148],[-48,-137],[-2,-228],[-51,-107],[-85,15],[16,138],[-81,65],[-11,-126],[-72,-244],[-46,-95],[-92,30],[-53,-61],[-69,-90],[60,-189],[6,-103],[-110,-48],[20,-200],[90,-189],[45,-147],[-74,-62],[-24,-142],[-57,-73],[31,-159],[102,58],[99,126],[46,64],[25,99],[53,70],[49,64],[14,17],[26,126],[50,114],[110,272],[59,201],[11,118],[54,67],[60,-48],[84,45],[132,-30],[89,-58],[29,-51],[117,-61],[73,-190],[14,-295],[-44,-68],[-6,-50],[-71,-135],[-70,-129],[-60,-66],[-35,-236],[-118,-356],[-3,-53],[-78,-93],[-81,-98],[-83,-115],[-94,-170],[-65,-57],[-61,10],[-83,-150],[-116,-94],[-71,-130],[-52,-142],[-72,-160],[-53,-123],[-2,-166],[10,-48],[-27,-101],[-24,-88],[-167,-188],[-121,87],[-234,72],[-2,23],[-1,4],[-10,104],[-86,127],[-56,-19],[-117,37],[-125,-46],[-146,-323],[-80,-34],[-168,-728],[0,-543],[54,-110],[120,0],[42,-12],[-5,-49],[-82,-110],[-45,-128],[31,-140],[107,-110],[104,67],[174,-67],[124,-67],[137,-18],[45,-256],[-17,-165],[88,-43],[73,-12],[-6,-134],[-96,-67],[-101,0],[-143,171],[-107,158],[-115,104],[-149,-110],[-39,-122],[-11,-97],[-93,-6],[-87,0],[-51,244],[23,231],[31,238],[-37,287],[-104,311],[26,494],[13,126],[2,301],[-152,120],[-23,1],[-43,-30],[-46,-75],[-56,-126],[-194,-297],[-138,-190],[-80,47],[-53,31],[-43,29],[-8,-25],[-33,-114],[-38,-100],[-50,-129],[-22,-130],[-25,-21],[-52,-86],[-78,-131],[-103,-178]],[[13549,91172],[-2,-96],[-3,-115],[0,-635],[-2,-249],[-9,-1248],[77,-9],[193,-25],[399,-42],[46,-6],[297,50],[40,6],[118,20],[106,18],[324,54],[348,66],[48,3],[51,4],[32,-31],[4,-65],[-33,-105],[-21,-45],[-1,0],[-17,-16],[-33,-47],[-11,-43],[-11,-38],[-1,-4],[1,-5],[6,-44],[10,-30],[21,-60],[6,-120],[-23,-149],[-3,-13],[-21,-39],[0,-1],[-40,-38],[-6,-4],[-166,-109],[-60,-39],[-15,-2],[-4,2],[-200,86],[-35,-2],[-3,-4],[-62,-65],[-23,-82],[-16,-53],[-7,-25],[-18,-54],[-5,-16],[0,-11],[8,-103],[14,-189],[0,-1],[0,-1],[-1,0],[-71,-5],[-86,18],[-83,-7],[-17,-1],[-79,-32],[-16,-16],[-1,0],[-13,-11],[-7,-16],[2,-30],[0,-2],[25,-146],[1,-12],[0,-1],[-2,-19],[-9,-10],[-15,-11],[-28,-1],[-9,0],[-60,-32],[-64,-33],[-77,-41],[12,-4],[2,-1],[5,-4],[3,-1],[38,-19],[38,-34],[38,-84],[76,-192],[0,-1],[4,-8],[3,-7],[4,-7],[4,-6],[4,-6],[5,-5],[2,-3],[143,-138],[153,-166],[5,-5],[4,-4],[4,-2],[95,-30],[1,0],[5,0],[5,1],[4,2],[5,2],[5,3],[71,52],[148,90],[4,2],[5,4],[4,5],[5,5],[4,5],[1,1],[39,58],[56,67],[1,2],[5,5],[3,6],[39,63],[11,12],[16,8],[10,-2],[22,-23],[28,-37],[4,-9],[3,-7],[5,-27],[5,-103],[-5,-147],[-27,-207],[0,-1],[-1,-11],[-1,-8],[-6,-87],[0,-3],[0,-10],[0,-11],[0,-11],[0,-10],[1,-11],[1,-10],[2,-11],[0,-3],[17,-99],[1,-6],[2,-10],[2,-9],[3,-10],[3,-8],[1,-4],[13,-35],[2,-4],[3,-8],[4,-7],[3,-6],[12,-20],[1,-2],[4,-6],[2,-2],[18,-25],[2,-3],[5,-5],[4,-5],[5,-4],[4,-3],[45,-4],[31,-358],[15,-173],[2,-17],[-103,-731],[-14,-101],[-17,-119],[-187,-1401],[-107,-821],[-77,-588],[-137,-1060],[-42,-324]],[[14877,79934],[-99,-817],[-6,-49],[83,-29],[30,-10],[66,-23],[29,-10],[66,-23],[22,-8],[-1,-2],[-18,-161],[-79,-686],[-123,-1065],[-22,-187],[-37,-317],[-23,-142],[-23,-214],[-4,-37],[-17,-152],[-12,-116],[-42,-398],[-19,-174],[-16,-160],[-45,-402],[-32,-227],[-40,7],[-21,-178],[-107,-905],[-23,-186],[-16,-128],[-14,-123],[-1,-4],[-125,-1068],[-6,-56],[-9,-73],[-93,-753],[-11,-69],[-59,-472],[-44,-358],[-15,-108],[-39,-316],[-70,-485],[-227,79],[-680,258],[-284,110],[-176,63],[-147,51],[-76,-507],[17,-338],[39,-848],[5,-112],[6,-120],[16,-335],[2,-32],[3,-58],[24,-492],[7,-146],[25,-462],[5,-107],[4,-71],[21,-47],[76,-86],[81,-76],[25,-29],[29,-17],[68,-76],[25,-47],[26,-70],[33,-26],[7,-6],[36,27],[44,-63],[3,-42],[3,-38],[37,-18],[30,16],[8,4],[3,6],[29,53],[45,-5],[23,-47],[2,-74],[-2,-47],[0,-19],[20,-145],[36,-35],[41,-50],[32,-47],[36,-97],[31,-61],[50,-60],[31,-28],[94,-44],[45,65],[57,25],[34,-29],[28,-35],[45,19],[20,43],[2,4],[22,62],[36,9],[40,-69],[54,-151],[41,-74],[29,-57],[38,-7],[38,17],[45,27],[11,111],[26,25],[21,55],[2,6],[13,73],[32,47],[17,74],[35,32]],[[14179,65161],[-19,-1742],[-8,-784],[0,-36],[-4,-357],[-1,-62],[-9,-735],[-68,16],[-13,-76],[-26,-191],[-64,-512],[-12,-88],[-55,-415],[-74,-562],[-22,-157],[-9,-69],[-66,-495],[-289,-2153],[-6,-46],[-41,-371],[-20,-143],[-11,-85],[-33,-248],[-42,-316],[-12,-96],[-35,-271],[-16,-121],[-13,-105],[-1,-8],[-75,23],[-96,25],[-34,9],[-25,6],[-29,8],[-82,21],[-61,18],[-156,44],[-152,42],[-97,29],[-114,34],[-76,-21],[-1,0],[11,-72],[-5,-99],[-35,-80],[33,-174],[18,-52],[31,-63],[10,-91],[1,-106],[-20,-44],[-11,-93],[8,-117],[25,-87],[8,-71],[15,-62],[18,-62],[7,-66],[10,-58],[58,-106],[20,-64],[51,-95],[22,-124],[-26,-88],[-73,-113],[-36,-21],[-82,-32],[-59,-56],[-46,-77],[-8,-79],[26,-110],[-10,-76],[-27,-53],[-49,-71],[8,-108],[14,-73],[9,-88],[23,-420],[93,-420],[37,-171],[117,-537],[33,-150],[28,-127],[6,-25],[29,-25],[22,-82],[23,-43],[17,-109],[-22,-52],[-26,-76],[-10,-93],[2,-103],[37,-59],[37,-22],[46,-27],[28,-28],[31,-36],[8,-106],[-1,-105],[-15,-98],[-2,-75],[-13,-86],[-24,-47],[-29,-89],[5,-65],[28,-78],[17,-78],[5,-100],[17,-78],[22,-78],[5,-17]],[[12702,48635],[-1,0],[-11,1],[-4,0],[-31,2],[-39,2],[-1,0],[-55,3],[-30,2],[-68,4],[-408,27],[-7,0],[-10,1],[-107,7],[-174,13],[-473,30],[-199,13],[-185,12],[-63,2],[-74,6],[-52,4],[-95,5],[-89,6],[-91,6],[-9,1],[-34,3],[-342,22],[-176,7],[-59,3],[-57,3],[-223,15],[-75,4],[-81,7],[-361,22],[-132,9],[-87,6],[-282,16],[-226,13],[-239,13],[-126,7],[-92,5],[-64,2],[-35,4],[-77,9],[-103,3],[-157,14],[-94,5],[-86,6],[-142,12],[-25,3],[-1,0],[-8,-1],[-22,0],[-326,21],[-122,8],[-74,4],[-305,19],[-2,1],[-55,4],[-48,5],[-74,7],[-45,2],[-56,5],[-160,10],[-107,7],[-86,5],[-70,4],[-16,1],[-146,10],[-244,16],[-9,0],[-27,2],[-13,1],[-9,0],[-20,1],[-95,4],[-59,3],[-50,3],[-131,9],[-6,0],[-83,3],[-49,2],[-10,0],[-204,15],[-84,5],[-516,24],[-12,-1],[-458,28],[-377,25],[-180,9],[-43,3],[-120,6],[-190,11],[-55,3],[-6,0],[-61,2],[-118,4],[-58,-1],[-52,-2],[-39,-1],[-800,-30],[-294,-14],[-151,-2],[-128,-7],[-1,0],[-38,-2],[-228,4],[-61,429],[-14,72],[-100,711],[-9,61],[-89,620],[-37,250],[1,112],[234,1403],[32,175],[36,201],[0,1],[42,258],[26,159],[13,81],[31,197],[81,483],[15,89],[22,133],[20,117],[56,340],[77,462],[18,103],[12,71],[62,369],[32,189],[22,132],[32,184],[6,38],[25,146],[26,154],[121,714],[12,70],[82,486],[38,219],[31,183],[44,260],[86,515],[18,107],[81,476],[4,28],[18,105],[15,89],[15,92],[11,60],[17,103],[0,4],[78,462],[22,126],[53,316],[16,90],[128,755],[162,956],[88,521],[35,202],[45,269],[333,1962],[7,38],[20,120],[54,317],[63,373],[10,61],[47,276],[3,18],[12,70],[4,22],[5,32],[7,42],[11,63],[127,751],[15,88],[73,425],[22,130],[44,247],[43,250],[29,179],[14,84],[26,147],[6,36],[53,311],[16,92],[19,111],[18,108],[20,115],[10,59],[28,161],[56,328],[56,331],[13,74],[69,407],[18,108],[15,85],[11,66],[84,491],[16,95],[0,1],[36,214],[23,133],[14,83],[18,101],[2,14],[16,118],[131,762],[59,338],[86,501],[38,208],[15,123],[20,78],[85,543],[49,309],[11,68],[0,2],[23,96],[98,605],[15,83],[64,390],[39,224],[28,162],[73,420],[25,134],[20,130],[6,37],[2,12],[32,187],[1,5],[215,1256],[135,792],[105,609],[73,424],[12,76],[29,179],[96,554],[45,254],[23,132],[80,473],[75,447],[41,241],[41,234],[274,1580],[89,515],[379,2237],[44,258],[41,243],[49,292],[28,166],[11,63],[12,76],[9,51],[2,12],[2,11],[106,621],[126,733],[894,-37],[464,-19],[60,-3],[5,0],[34,-2],[55,-2],[23,-1],[97,-4],[223,-9],[281,-11],[10,-1],[36,-1],[84,-4],[67,-2],[38,-2],[187,-7],[286,-12],[295,-12],[294,-12],[501,-20],[138,-1],[46,-1],[27,-3],[13,-2],[529,-31],[215,-13],[29,-1],[263,-11],[179,-8],[35,5],[14,2],[65,-8],[1,0],[39,-3],[148,-12],[219,-11],[177,-10],[398,-12],[31,-1],[212,-6],[48,-1]],[[33335,67052],[-6,-81],[0,-4],[2,-119],[-26,-47],[-33,27],[-36,-39],[-33,-89],[-20,-65],[-25,-42],[-29,-49],[-21,-47],[-13,-59],[22,-68],[-19,-80],[-44,-5],[-7,-19],[-12,-31],[-21,-87],[11,-59],[6,-15],[23,-53],[-15,-59],[-7,0],[-29,3],[-12,68],[-31,-20],[-7,-79],[24,-98],[5,-65],[2,-104],[-13,-69],[-5,-23],[-29,-41],[-7,26],[-12,48],[-37,-3],[-66,-39],[-16,-53],[-29,-31],[0,-19],[-1,-55],[-4,-73],[-54,-23],[-28,-23],[-33,-10],[-54,9],[-36,-16],[-2,-1],[0,-1],[-17,-65],[-25,-90],[-36,-34],[-31,-78],[-58,-38],[-28,23],[-26,47],[-32,-32],[19,-58],[31,-31],[-40,-25],[-37,-48],[33,22],[29,-34],[18,-97],[-23,-67],[-31,-17],[-5,71],[-8,78],[-29,-14],[-28,-22],[-24,-41],[-23,-78],[-17,-7],[-13,-6],[-9,57],[-2,11],[-10,30],[-9,27],[-27,10],[-11,57],[-32,43],[-2,70],[35,31],[7,6],[12,58],[28,4],[13,60],[4,94],[22,55],[19,56],[22,42],[-10,57],[10,70],[-8,69],[-3,65],[26,27],[29,75],[-22,41],[3,61],[-14,39],[-4,9],[22,32],[2,3],[28,18],[33,16],[-22,47],[-22,32],[-4,6],[13,51],[2,5],[0,2],[-8,64],[19,68],[28,19],[-18,53],[-12,27],[-14,31],[8,70],[3,5],[29,40],[11,56],[-10,58],[-28,25],[-7,31],[-12,47],[1,67],[-20,61],[-24,48],[-25,39],[-1,66],[-14,53],[17,50],[-29,-9],[-21,42],[-23,50],[-38,47],[19,49],[-12,56],[3,67],[13,69],[-30,-1],[27,22],[27,24],[27,34],[-11,60],[-25,46],[16,73],[-13,68],[-27,44],[-6,66],[25,49],[16,69],[8,59],[-17,63],[-8,80],[-6,76],[-18,78],[26,27],[5,3],[22,16],[21,69],[-30,23],[-23,12],[-10,5],[-22,55],[-33,42],[-5,68],[3,66],[-26,46],[-35,33],[-23,69],[0,74],[-22,92],[21,43],[-24,80],[-33,-18],[-24,80],[-4,100],[19,54],[32,-11],[32,27],[-40,24],[-27,59],[-24,114],[40,27],[50,74],[-11,59],[-31,30],[-22,42],[8,112],[-25,67],[-29,14],[13,60],[2,83],[-30,54],[-16,67],[25,50],[-30,64],[5,67],[-17,55],[21,82],[15,30],[14,28],[28,35],[-29,85],[-16,63],[-24,64],[-19,47],[-31,30],[-8,77],[35,36],[-14,64],[-23,37],[-22,24],[-8,7],[-29,58],[-4,64],[34,84],[5,14],[-14,56],[-6,3],[-43,26],[-5,62],[-29,64],[3,75],[-40,-11],[-14,-3],[-28,-8],[-195,-51],[-396,-103],[-122,-32],[-372,-96],[-83,-21],[-420,-109],[-222,-58],[-239,-62],[-216,-56],[-145,-37],[-60,-16],[-384,-100],[-90,-23],[-8,68],[-51,482],[-46,432],[-13,108],[-19,183],[-9,82],[-26,237],[-19,-5],[-35,-9],[-7,-1],[-207,-58],[-331,-88],[-32,-9],[-110,-29],[-13,-4],[-370,-98],[-30,-8],[-263,-67],[-95,-26],[-312,-83],[-142,-39],[-1,0],[-118,-32],[-96,-25],[-109,-28],[-109,-30],[-3,0],[-50,-14],[-58,-17],[-43,-12],[-45,16],[-73,26],[-114,-53],[-54,-26],[-153,-72],[-36,-17],[-45,-21],[-127,-60],[-181,-85],[-261,-123],[-13,-6],[-46,-22],[-81,-9],[-1,0],[-30,-4],[-55,-28],[-28,-13],[-42,-11],[-4,-1],[-832,-208],[-196,-49],[-50,-12],[-50,-13],[-147,-38],[-255,-65],[-227,-59],[-145,-37],[-145,-37],[4,119],[52,1428],[3,104],[35,1223],[-230,-61],[-46,-10],[-385,-102],[-225,-62],[-191,-50],[-260,-68],[-43,-16],[-205,-54],[17,391],[-247,-46],[23,254],[170,39],[21,271],[-168,-52],[16,214],[-224,93],[-50,21],[8,79],[-298,114],[-724,275],[-1,1],[-294,112],[-180,69],[-129,11],[-213,87],[-194,81],[-62,25],[-1,0],[-210,87],[-118,53],[-312,139],[-6,59],[-62,739],[-7,81],[-4,91],[-2,33],[-12,164],[-19,221],[9,88],[10,109],[20,206],[13,128],[55,529],[-88,62],[-28,15],[-9,95],[-25,263],[-2,200],[-4,373],[-313,100],[-41,13],[-430,138],[-266,85],[-34,13],[-75,24],[-119,38],[-177,57],[-345,114],[-24,8],[-49,16],[-13,5],[-520,171],[-54,18],[-289,96]],[[13549,91172],[107,-5],[2494,-113],[76,-4],[728,-33],[2357,-123],[190,-10],[1150,-60],[1187,-70],[120,-7],[1279,-75],[1085,-64],[1775,-105],[79,-5],[53,-3],[1602,-96],[1301,-81],[107,-7],[43,-3],[33,-2],[37,-6],[34,-5],[49,-2],[87,-4],[18,-1],[123,-8],[92,-7],[90,-6],[48,-1],[7,-1],[233,-16],[147,-11],[52,-4],[107,-7],[175,-13],[117,-8],[153,-10],[36,-2],[46,-1],[34,-4],[41,-3],[138,-8],[32,-2],[452,-32],[230,-15],[101,-7],[209,-15],[143,-9],[101,-6],[506,-33],[59,-4],[168,-10],[425,-27],[315,-19],[46,-5],[70,-5],[99,-6],[83,-5]],[[34218,89978],[66,-613],[82,-757],[8,-77],[133,-1229],[18,-167],[2,-22],[191,34],[187,33],[24,-391],[4,-61],[243,53],[152,32],[9,-121],[27,-343],[347,71],[91,-1002],[13,-149],[27,-298],[-109,-37],[12,-77],[13,-56],[36,-68],[16,-57],[-1,-76],[6,-59],[14,-78],[-20,-64],[-12,-79],[-17,-71],[-25,-37],[-28,-7],[-28,17],[-34,-25],[-13,-69],[11,-62],[46,2],[6,-81],[22,-58],[30,13],[-5,-60],[-20,-94],[16,-79],[-5,-67],[7,-69],[-21,-58],[-26,-31],[-41,12],[-32,-29],[-47,0],[-46,-4],[-31,-4],[-33,29],[-34,-32],[-36,-12],[-29,16],[-31,-16],[-1,-2],[-7,-28],[-133,-35],[-88,-20],[-42,-10],[6,-18],[-80,-19],[27,-266],[12,-119],[-85,-2],[-21,-50],[-32,-19],[-25,-35],[-25,-146],[-59,-47],[-40,0],[-32,21],[-29,13],[-39,-13],[37,-370],[60,-599],[7,-74],[19,-183],[1,-9],[8,-87],[19,-191],[-44,10],[-69,82],[-46,17],[-42,-7],[-32,-60],[-27,-19],[-27,53],[-9,90],[-23,34],[-30,-2],[-1,-74],[-3,-20],[-5,-53],[-30,-6],[-17,18],[0,1],[-13,13],[-7,-79],[8,-317],[27,-229],[9,-59],[11,-64],[14,-83],[6,-54],[4,-31],[30,-243],[21,-241],[23,-405],[31,-230],[32,-610],[176,-303],[269,-482],[105,-190],[128,-229],[-128,-217],[-30,-49],[-341,-551],[-217,-328],[-44,-69],[-199,-316],[-17,-27],[-322,-509],[224,-2323],[-45,-75],[-39,-31],[-22,-47],[0,-44],[0,-24],[-29,-11],[-10,-1],[-28,-2],[-29,8],[8,-27],[9,-28],[23,-41],[-20,-73],[-4,-77],[-30,39],[-28,-17],[24,-48],[-7,-65],[-21,-66],[-16,-72],[-30,8],[-22,-53],[-27,-42],[-25,-45],[-33,-30],[-1,-1],[-29,-54],[-33,-39],[-34,-67],[-30,10],[24,-50],[14,-70],[-18,-46],[-17,-61],[-34,-30],[-31,-17],[-28,-4],[-33,-20],[13,-72],[-17,-60],[8,-63],[-40,-21],[17,-66],[-29,-14],[-8,-96],[-22,-77],[7,-60],[-30,-11],[-3,-81],[-1,-93],[-34,-32],[-27,-21],[-30,-27],[16,-68],[5,-69],[6,-66],[-16,-52],[-20,-52],[20,-51],[-22,-39],[-24,-55],[14,-59],[12,-76],[-19,-53],[-1,-70],[-34,-2],[33,-66],[31,-42],[-23,-62],[16,-60],[29,2],[13,-77],[-31,32],[12,-69],[34,-41],[15,-20],[17,-23],[-18,-48],[28,-32],[-37,15],[22,-42],[-26,-48],[-15,-84],[-25,-38],[-8,-65],[-4,-66],[13,-80],[2,-61],[-11,-61],[-4,-20],[5,-5],[29,-31],[-12,-72],[15,-56],[-19,-46],[31,-3],[23,-52],[-18,-55],[-46,-24],[-25,-13],[-17,-70],[-11,-61],[33,5],[25,-26],[10,-68],[21,-76],[8,-11],[24,-34],[18,-76],[-11,-32],[-17,-44],[-36,-38],[7,-73],[12,-72],[8,-71],[-8,-65],[-23,47],[-26,-74],[21,-98],[-23,-87],[34,-49],[15,-94],[-12,-63],[-19,-65],[-28,-69],[-7,-84],[4,-84],[5,-78],[-1,-39],[-12,-20],[-1,-22]],[[69349,73200],[17,-67],[39,-103],[23,-73],[22,-48],[45,-110],[-23,-66],[-9,-43],[-5,-24],[-11,-61],[-25,-91],[-32,-114],[-2,-7],[-36,-115],[-19,-97],[-17,-73],[-17,-55],[-28,-115],[-14,-66],[-17,-73],[-19,-79],[-18,-77],[-18,-75],[-26,-79],[-14,-66],[-14,-55],[-8,-79],[-17,-79],[-22,-85],[-22,-66],[-20,-67],[-22,-79],[-14,-54],[-23,-79],[-19,-49],[-20,-66],[-12,-44],[-10,-35],[-22,-37],[-28,-36],[-45,-79],[-42,-60],[-20,-24],[-22,-25],[-45,-43],[-58,49],[-64,-85],[25,-79],[47,-54],[3,-69]],[[68651,70044],[-68,-77],[-72,-158],[-183,5],[-93,-5],[-76,43],[-70,19],[93,242],[-3,18],[-6,42],[-58,-66],[-36,-76],[-72,18],[12,69],[21,132],[-45,20],[-10,178],[93,174],[-42,92],[-5,10],[-5,-5],[-79,-85],[-38,-140],[-2,-212],[0,-7],[50,-244],[5,-22],[21,-98]],[[67983,69911],[-53,-162],[-19,-79],[-10,-24],[-10,-25],[-18,-52],[-15,-45],[-34,-91],[-25,-42],[25,-73],[24,-8],[29,-10],[34,-12],[30,-12],[31,-145],[11,-86],[12,-66],[12,-49],[10,-36],[1,-8],[10,-71],[58,-14],[12,-3],[8,-1],[45,-19],[31,-6],[75,-158]],[[68257,68614],[-18,-13]],[[68239,68601],[-25,0],[-108,1],[-27,-72],[-1,0],[-21,-40],[23,-72],[-29,-5],[-30,-28],[-11,-10],[-21,-38],[-18,-47],[-16,-96],[-8,-48],[-24,-142],[-17,-17],[-44,-43],[-28,-28],[-134,-85],[-14,-8],[-181,-103],[-121,-68],[-33,-19],[-98,-72],[-85,-54],[-83,-13],[-58,4],[-63,82],[-10,13],[-46,60],[-38,48],[-72,126],[-11,31],[-38,101],[-6,144],[0,156],[-3,120],[0,72],[-16,24],[-31,6],[-41,6],[-61,6],[-41,90],[-28,66],[-47,66],[-28,30],[-44,0],[-33,-18],[-3,-42],[-6,-11],[-98,-184],[-72,-134],[-24,-29],[-32,-10],[-78,33],[-10,4],[-2,-1],[-39,-36],[-57,-164],[-51,-42],[-52,-13],[-187,-50],[-1,-1],[-10,-3],[-89,-25],[-15,-5],[-43,-4],[-34,0],[-34,16],[-70,37],[-19,-49],[-28,-61],[-7,-46],[-2,-14],[-33,-61],[-10,-22],[-35,-81],[-33,-91],[-12,-85],[-11,-60],[17,-85],[25,-79],[36,-97],[28,-79],[43,-119],[29,-66],[45,-141],[1,-1],[-65,-98],[59,-303],[39,12],[87,12],[34,-12],[58,-79],[61,-121]],[[65670,66237],[-156,-242],[-25,-37],[-36,-67],[-70,-103],[-39,-32],[-20,-16],[-28,-79],[-42,-67],[-33,-60],[-25,-43],[-31,-42],[-36,-55],[-73,-115],[142,-237],[120,-169],[93,-176],[44,-61]],[[65455,64636],[-58,-97],[-28,-36],[-48,-61],[-30,-43],[-79,-121],[-81,-115],[-58,-85],[-358,-716]],[[64715,63362],[4,181],[-1,4],[-16,43],[-13,36],[-32,45],[-36,23],[-28,-19],[-11,-93],[0,-4],[-4,-4],[-4,-4],[-4,-3],[-19,8],[-196,154],[-24,34],[-17,46],[-8,119],[-8,108],[-33,156],[-17,46],[-17,23],[-68,92],[-27,74],[4,21],[20,118],[-6,57],[-36,110],[0,1],[-14,31],[-6,15],[-10,12],[-67,5],[-102,7],[-9,0],[-4,-6],[-66,-102],[-46,150],[-6,18],[-38,124],[-15,65],[-13,232],[0,13],[-8,144],[-9,152],[-50,0],[-14,11],[-75,57],[-95,73],[-95,43],[-110,0],[-79,44],[-58,-41],[-24,-17],[-73,-51],[-45,195],[-64,-86],[-21,72],[-22,76],[-42,144],[-321,-4],[-59,-37],[-5,-2],[-54,-22],[-67,-36],[-36,-18],[-109,-55],[-282,-158],[-48,-24],[-100,-61],[-42,-24],[-42,-24],[-120,-61],[-69,-30],[-132,-67],[-92,-61],[-56,-36],[-62,-36],[-29,-17],[-46,-26],[-53,-18],[-45,-24],[-50,-31],[-64,-78],[14,-73],[27,-147],[14,-75],[12,-63],[16,-76],[9,-47],[11,-59],[14,-67],[8,-61],[14,-72],[23,-97],[19,-134],[10,-29],[18,-56],[19,-83],[1,-1],[202,-774],[71,-269],[4,-17],[19,-81],[12,-48],[10,-43],[28,-91],[20,-72],[16,-116],[45,-376],[17,-163],[76,-713],[-37,3],[-327,18],[-56,0],[-290,18],[-115,0],[-14,-56],[4,-18],[12,-26],[21,-26],[26,-31],[9,-20],[6,-16],[10,-34],[2,-72],[-5,-55],[-33,-96],[7,-94],[22,-309],[2,-36],[-2,-48],[-17,-41],[-40,-75],[-105,-168],[-68,-98],[-30,-52],[-54,-97],[-58,-201],[-6,-52],[4,-27],[3,-15],[46,-90],[68,-74],[16,-40],[3,-37],[-6,-34],[-33,-76],[-94,44],[-115,130],[-45,-122],[-48,-130],[-24,-161],[-7,-42],[-14,-100],[1,-39],[2,-12],[40,-77],[17,-23],[45,-43],[55,-17],[1,0],[69,-211],[-134,-81],[-236,-142],[-177,-90],[-14,-5],[-319,-98],[-85,-27],[-126,-59],[-61,-29],[-203,-84],[-15,-7],[-48,-17],[-274,-112],[38,-349],[24,-232],[-73,-1],[-178,-5],[-86,-8],[-106,-10],[-51,-6],[-57,-7],[-40,-3],[-7,70],[-36,1],[-39,2],[-105,1],[-293,-204],[-26,-20],[-70,-56],[-3,-4],[-42,-75],[-405,-732],[-102,-195],[-138,-42],[-30,-9],[-47,-15],[-35,-10],[-4,-1],[-57,-1],[-85,-1]],[[56707,55720],[1,107],[3,442],[-53,3],[-6,1],[-115,8],[-63,2],[-173,7],[-97,21],[-34,7],[-67,677],[-81,824],[-50,-63],[-16,-20],[-39,-51],[-27,-18],[-127,7],[-107,7],[-112,7],[-98,6],[-223,-9],[-75,8],[-54,5],[-102,9],[-87,-87],[-259,-250],[-34,-29],[-82,-82],[6,61],[9,75],[-22,47],[-29,14],[14,75],[3,61],[14,68],[-8,98],[-7,69],[-46,29],[-408,20],[21,121],[-179,31],[-70,8],[-63,7],[-65,143],[-109,277],[-193,493],[-46,113],[-76,191],[-59,152],[24,148],[57,337],[22,128],[51,302],[108,636],[1,1],[83,478],[3,23],[33,194],[49,290],[248,176],[1,1],[12,9],[172,124],[73,53],[52,39],[25,-3],[65,-6],[179,-16],[85,-11],[80,-44],[65,-54],[55,-21],[139,0],[22,4],[78,13],[22,4],[275,22],[112,38],[147,49],[35,0],[69,0],[95,-87],[81,9],[88,9],[1,62],[1,35],[2,135],[1,167],[5,107],[102,428],[27,114],[29,112],[12,57],[4,20],[16,71],[55,231],[83,340],[20,83],[14,63],[4,19],[25,114],[16,63],[29,115],[8,31],[20,83],[8,37],[51,212],[18,86],[18,224],[5,176],[11,243],[-41,533],[-117,-5],[-247,-54],[-236,-52],[-18,11],[-73,45],[-20,14],[-19,13],[-97,65],[-62,-15],[-45,-13],[-32,-6],[-73,-17],[-9,-3],[-27,-6],[-174,-43],[-51,-11],[-58,-14],[-19,-3],[-16,-3],[-17,-4],[-26,-5],[-72,-16],[-92,-20],[-4,-1],[-20,-4],[-45,-10],[-41,-9],[-99,-21],[-55,-39],[-31,-21],[-87,-69],[-136,-101],[-27,-19],[-69,-51],[-54,-41],[-41,-32],[-44,-53],[-2,-3],[-202,-247],[-23,-30],[-90,-115],[-10,-12],[-82,-108],[-94,195],[-76,159],[-2,3],[-28,50],[-26,35],[-33,42],[-31,49],[-37,54],[-55,143],[-41,115],[-45,113],[-45,98],[-44,111],[33,66],[4,87],[-5,146],[0,6],[-6,90],[-138,78],[-41,28],[-34,30],[-33,42],[-38,46],[-44,49],[-18,18],[-14,15],[-31,36],[-30,63],[-22,46],[-21,56],[-19,44],[-42,78],[-1,0],[-28,53],[-40,79],[22,59],[40,41],[92,99],[81,87],[47,51],[34,37],[119,124],[63,205],[18,43],[2,5],[24,69],[17,53],[71,220],[-135,181],[257,320],[12,14],[124,163],[113,156],[268,359],[-136,132],[-152,147],[-308,290],[-18,20],[-49,52],[194,214],[323,349],[130,55],[46,15],[4,2],[401,164],[63,28],[54,23],[39,13],[92,676],[44,323],[22,298],[65,449],[3,25],[6,40],[14,114],[26,189],[38,252],[-12,67],[16,96],[20,17],[60,51],[20,153],[-2,8],[58,255],[1,51],[-17,68],[-32,52],[-101,166],[-27,32],[-16,10],[-10,1],[-61,33],[7,50],[-80,115],[-63,83],[-15,20],[-52,70],[25,54],[70,162],[89,238],[23,186],[5,157],[20,110],[9,52],[8,44],[27,72],[3,9],[21,36],[4,12],[-1,18],[-3,4],[22,76],[106,350],[245,799],[34,43],[26,33],[14,59],[21,84],[18,60],[15,55],[13,54],[-46,38],[-30,196],[-38,252],[0,1],[-52,339],[-11,74],[-10,66],[-68,444],[-300,118],[-86,34],[-47,19],[-45,17],[-29,12],[-69,27],[-165,65],[-30,12],[-154,60],[-96,38],[-67,27],[-70,27],[-144,-162],[-43,-49],[-40,-46],[-44,-64],[-33,-47],[-45,-30],[-19,-12],[-34,-23],[-48,26],[-32,17],[-93,49],[-35,18],[-71,7],[-33,4],[-36,1],[-52,47],[-33,41],[-87,109],[-67,87],[-46,57],[-203,-117],[-108,-66],[-17,-10],[-57,-159],[-35,-96],[-26,-72],[-27,-62],[-17,-35],[-22,-15],[-16,-26],[-3,-29],[-10,-287],[3,-38],[0,-3],[-2,-11],[-6,-30],[-18,-31],[-40,-55],[-17,-49],[1,-82],[13,-50],[18,-72],[59,-227],[-205,62],[-193,60],[-31,12],[-81,25],[-58,18],[-221,73],[-310,103],[-81,18],[33,552],[28,357],[1,2],[19,211],[8,60],[3,146],[7,61],[10,85],[0,7],[42,551],[17,200],[19,273],[28,345],[31,352],[36,425],[8,115],[4,43],[16,199],[6,61],[1,18],[0,1],[7,66],[67,800],[-508,322],[-313,206],[-201,127],[-171,104],[-56,30],[-47,30],[-158,102],[-198,128],[-236,152],[-4,3],[-368,234],[-112,67],[-201,126],[-58,37],[-132,89],[-39,27],[-156,97],[-28,18],[-39,24],[-73,36],[0,-97],[0,-182],[6,-163],[-48,0],[-103,-6],[-39,6],[-338,18],[-9,0],[-81,0],[-220,12],[-132,6],[-561,24],[-123,6],[-67,0],[-115,0],[-103,6],[-182,-121],[-94,-54],[-31,-25],[-76,-48],[6,206],[14,552],[11,370],[11,509],[11,425],[-36,443],[-50,78],[-117,194],[-36,176],[-4,19],[-11,60],[-5,31],[-112,-31],[-92,140],[-39,61],[-24,44],[-33,53],[-30,49],[-123,198],[-238,382],[-183,295],[-38,380],[-7,80]],[[44952,89364],[47,-3],[277,-15],[65,-4],[102,-6],[185,-10],[412,-18],[235,-19],[1,0],[28,0],[185,-10],[554,-32],[305,-18],[37,-6],[173,-6],[184,-13],[42,1],[31,-2],[129,-10],[189,-13],[4,0],[358,-24],[13,0],[14,0],[78,-6],[5,0],[83,-5],[348,-19],[39,0],[38,-5],[8,-1],[95,-6],[299,-13],[36,0],[186,-6],[567,-28],[176,-9],[43,-5],[192,-10],[164,-8],[344,-18],[28,0],[22,-1],[4,0],[15,-3],[191,-8],[237,-12],[134,-7],[57,-3],[177,-9],[34,-6],[162,0],[29,-2],[41,-4],[31,0],[52,-5],[118,-7],[56,-9],[64,-9],[11,1],[9,-1],[15,2],[17,2],[51,-2],[110,-8],[14,0],[36,0],[100,-6],[199,-12],[148,-7],[304,-11],[2,0],[415,-20],[103,-5],[403,-18],[8,-1],[145,-5],[67,-4],[56,-2],[17,0],[11,0],[43,0],[39,-6],[502,-25],[174,-6],[307,-12],[75,-4],[47,-2],[49,-5],[58,-5],[77,-9],[91,-3],[49,-2],[175,-15],[125,-9],[79,-5],[189,-14],[83,0],[60,-4],[77,-5],[53,-1],[162,-8],[31,0],[42,0],[15,-1],[39,-2],[112,-5],[84,-3],[1,0],[5,-1],[19,-1],[156,-11],[2,0],[44,0],[50,-2],[20,-1],[179,-9],[60,-4],[26,-2],[430,-25],[55,-3],[309,-21],[69,-4],[36,-1],[43,-1],[62,1],[90,-5],[187,-14],[83,-7],[32,-2],[32,-3],[64,-2],[30,-2],[38,-2],[15,0],[337,-2],[2,0],[176,-26],[17,-3],[121,-9],[289,-21],[232,-7],[136,-5],[62,0],[39,0],[4,0],[255,0],[278,0],[148,320],[14,29],[23,44],[238,466],[13,29],[59,168],[32,95],[207,602],[23,39],[26,43],[202,387],[17,32],[32,58],[34,60]],[[56707,55720],[0,-168],[-1,-272],[-1,-155],[0,-6],[-1,-206],[4,-466],[-1,-137],[-1,-24],[-1,-72],[-111,-139],[-218,-271],[-56,-74],[-33,-47],[-70,-103],[-114,-156],[-38,-52],[-9,-22],[0,-15],[3,-47],[57,-195],[-60,-93],[-38,-59],[-27,-43],[53,-157],[11,-8],[43,-208],[74,-111],[32,-84],[8,-44],[0,-16],[1,-50],[-41,-205],[-17,-59],[-5,-29],[-8,-52],[8,-35],[0,-1],[-3,-168],[-1,-101],[-2,-659],[-1,-183],[-3,-427],[0,-116],[-1,-99],[0,-388],[2,-253],[1,-62],[-3,-67],[2,-114],[1,-86],[0,-831],[11,-97],[-11,-89],[8,-78],[-8,-66],[0,-80],[3,-67],[-3,-105],[0,-97],[1,-89],[2,-196],[0,-39],[0,-22]],[[56145,47260],[-25,0],[-5,0],[-77,-11],[-5,-1],[-73,-12],[-34,-6],[-9,-2],[-53,-10],[-51,-10],[-51,-15],[-75,-12],[-92,-21],[-4,0],[-49,-3],[-29,-6],[-29,0],[-83,-12],[-69,-6],[-6,0],[-39,-6],[-21,0],[-116,-1],[-41,-5],[-3,0],[-31,0],[-16,-2],[-31,-4],[-7,-1],[-19,-1],[-13,0],[-56,-3],[-48,-2],[-33,1],[-5,0],[-37,-1],[-49,0],[-136,-10],[-22,-2],[-7,0],[-57,-4],[-72,-4],[-70,-4],[-25,-1],[-32,-2],[-23,-1],[-57,-2],[-83,-5],[-52,-2],[-40,-2],[-5,-1],[-40,-2],[-83,-4],[-21,-1],[-123,4],[-38,1],[-51,-8],[-23,-4],[-48,-2],[-12,0],[-45,-1],[-43,-1],[-38,-3],[-59,-3],[-7,-1],[-199,-9],[-38,-2],[-59,-3],[-1,0],[-27,-1],[-52,-3],[-183,-8],[-89,-6],[-121,-7],[-1,0],[-36,-2],[-19,-1],[-57,-3],[-24,-2],[-29,-1],[-137,-9],[-84,-6],[-29,-2],[-85,-5],[-109,-6],[-37,-3],[-1,0],[-2,0],[-58,-3],[-73,-4],[-63,-3],[-56,-3],[-205,-11],[-19,-1],[-64,-5],[-1,0],[-10,-1],[-55,-3],[-75,-4],[-125,-6],[-44,-3],[-36,-1],[-32,-2],[-6,0],[-74,-1],[-35,-1],[-12,0],[-52,-3],[-395,-19],[-95,-1],[-23,-1],[-57,-2],[-14,0],[-128,-5],[-29,1],[-11,-2],[-63,-9],[-54,-2],[-159,-6],[-101,-3],[-283,-16],[-164,-10],[-232,-8],[-29,-1],[-44,-2],[-6,0],[-67,-1],[-20,0],[-18,-1],[-106,-5],[-177,-8],[-6,-1],[-11,-1],[-136,-12],[-41,-4],[-120,-10],[-28,-3],[-83,-7],[-102,-9],[-62,-6],[-29,-2],[-60,-6],[-252,-41],[-9,256],[-6,140],[-3,55],[-11,393],[-8,80],[-56,12],[-58,1],[-528,14],[-62,0],[-43,2],[-68,2],[-31,2],[-38,-1],[-48,2],[-34,3],[-10,1],[-29,0],[-37,0],[-26,0],[-8,0],[-34,1],[-41,0],[-19,1],[-11,0],[-29,1],[-47,2],[-76,1],[-42,1],[-113,2],[-153,2],[-38,0],[-148,0],[-67,3],[-78,3],[-36,6],[-52,-4],[-77,2],[-46,1],[-125,1],[-2,0],[-19,2],[-72,4],[-19,1],[-63,-2],[-37,-1],[-14,1],[-170,10],[-94,5],[-10,1],[-44,1],[-329,19],[-177,9],[-458,24],[-24,2],[-42,1],[-86,6],[-43,3],[-32,3],[-33,3],[-16,1],[-140,4],[-61,9],[-24,0],[-35,1],[-44,2],[-10,0],[-10,1],[-95,5],[-27,1],[-121,5],[-109,14],[-205,6],[-123,8],[-120,7],[-162,3],[-44,1],[-102,3],[-33,-2],[-13,0],[-167,-3],[-116,3],[-88,6],[-105,-1],[-167,-2],[-142,4],[-106,4],[-82,4],[-132,6],[-82,4],[-49,0],[-159,1],[-84,1],[-15,-1],[-176,-3],[-76,0],[-28,1],[-98,4],[-94,5],[-47,2],[-38,2],[-158,19],[-75,9],[-48,2],[-47,3],[-112,7],[-35,3],[-132,13],[-131,14],[-65,5],[-40,5],[-39,6],[-39,5],[-96,9],[-57,5],[-80,8],[-107,12],[-57,3],[-56,3],[-54,2],[-33,2],[-43,4],[-108,12],[-68,6],[-60,5]],[[38332,48051],[1,32],[1,64],[1,117],[4,433],[0,428],[1,173],[1,120],[2,397],[2,116],[1,155],[0,179],[2,318],[1,139],[1,570],[1,131],[1,80],[1,220],[1,454],[-1,181],[0,286],[0,107],[0,79],[0,168],[0,75],[0,65],[0,356],[-1,310],[1,194],[1,733],[1,390],[0,120],[1,79],[1,588],[0,11],[0,107],[-99,-25],[-7,-2],[-93,-24],[-102,-29],[-30,-8],[-102,-28],[-353,-97],[-120,-34],[-201,-55],[-161,-45],[-131,-36],[-222,-61],[-181,-50],[-36,455],[-98,78],[-106,83],[-9,7],[-276,216],[-568,444],[-16,12],[-121,95],[-111,86],[-61,48],[-174,137],[-149,116],[-78,61],[-1,14],[6,70],[7,71],[-4,69],[3,71],[10,72],[0,80],[-8,87],[-17,53],[-14,70],[-3,74],[9,110],[8,65],[13,92],[19,83],[15,60],[30,109],[30,72],[38,68],[40,62],[44,106],[95,211],[80,180],[221,487],[23,53],[48,108],[423,947],[52,111],[28,63]],[[35947,61088],[34,76],[55,125],[31,11],[64,23],[3,-94],[116,-22],[-24,178],[-2,66],[-4,74],[1,196],[-101,23],[-35,8],[-5,87],[-12,190],[-19,340],[-7,115],[-6,114],[9,-1],[35,-2],[36,-3],[58,-4],[6,183],[3,102],[3,91],[11,397],[26,29],[54,61],[56,64],[91,217],[18,144],[-15,14],[-92,89],[-104,97],[-3,-1],[-32,-4],[-50,-6],[-7,0],[-74,-9],[7,24],[-5,120],[16,135],[18,54],[36,58],[36,47],[10,100],[-10,58],[-1,77],[8,146],[1,48],[7,41],[31,120],[-19,-6],[-19,-6],[-191,-56],[-375,-119],[-197,-70],[-131,-47],[-75,-26],[-60,-20],[-335,-122],[-12,119],[-141,-85],[-43,-26],[-32,-22],[-138,-67],[-37,395],[-49,524],[-68,725],[84,20],[-37,431],[-82,-17],[-63,753],[-4,54],[-1,13],[-11,140],[-126,-2],[-12,-7],[-13,3],[-21,11],[3,-30],[-25,-40],[-22,47],[-25,-32],[-34,-16],[-36,-25],[-24,-64],[-41,-25],[-28,11],[-34,-26],[-34,-26],[-14,-57],[-30,-43],[-22,-46],[-38,-13],[-36,20],[-17,-52],[-1,-62],[-45,-10],[-26,29],[-12,-56],[-32,-34],[-40,-19],[-18,10],[-17,9],[-28,28]],[[34218,89978],[360,-21],[83,-4],[126,-6],[365,-24],[6,0],[38,5],[236,-13],[123,-7],[129,-7],[9,0],[226,-17],[325,-18],[215,-11],[350,-18],[372,-20],[40,-2],[21,-1],[14,-1],[74,-4],[506,-26],[1,0],[230,-12],[541,-28],[36,-2],[242,-18],[134,-10],[524,-34],[91,-6],[77,-5],[5,0],[4,0],[2,-1],[2,0],[54,0],[70,-5],[6,0],[44,-3],[45,-3],[397,-27],[83,-5],[60,-3],[95,-7],[48,-3],[29,-2],[60,-2],[87,-6],[86,-7],[94,-5],[226,-15],[104,-7],[242,-17],[89,-6],[37,-3],[20,-2],[61,-5],[48,-3],[15,-1],[51,-3],[30,-2],[199,-5],[18,0],[18,-1],[23,-3],[83,-8],[59,-5],[38,-4],[30,-2],[95,-8],[139,-9],[54,-3],[68,-3],[57,-3],[40,-2],[51,-2],[19,0],[456,-19],[172,-8],[36,-1],[62,-2],[285,-11],[153,-9],[50,-3],[7,-1],[1,0],[156,-9],[39,-3],[19,-1],[300,-16],[319,-20]],[[35947,61088],[-113,-29],[-186,-49],[-423,-111],[-73,-172],[-222,-570],[-191,-22],[-108,-14],[-26,202],[-33,238],[-1,3],[-3,16],[-8,-19],[-14,-17],[-19,-12],[-29,-4],[-12,1],[-33,-48],[-15,-23],[-44,-65],[-26,-43],[-101,113],[-290,-170],[-72,-43],[-13,-8],[-284,-165],[-6,-3],[-210,-128],[-162,-94],[-432,-256],[-30,-17],[-5,-6],[-24,-30],[-26,-38],[-41,-9],[-37,5],[-32,-3],[-34,-18],[-33,-29],[-27,-47],[-28,-46],[-23,-51],[4,-81],[8,-58],[0,-6],[1,-75],[-15,-76],[-20,-46],[-38,-7],[-31,-10],[-14,-68],[-22,-44],[-23,-45],[-28,-25],[-31,3],[-22,64],[-21,46],[-20,9],[-13,5],[-31,-31],[-36,-101],[-26,-68],[-28,-30],[-33,26],[-31,21],[19,46],[-21,44],[-29,-11],[-23,-54],[2,-82],[4,-79],[9,-64],[22,-41],[15,-56],[13,-99],[3,-64],[-23,-34],[28,-52],[40,-5],[27,-50],[13,-66],[-18,-48],[-29,11],[-10,-84],[3,-27],[12,-91],[25,-61],[45,-13],[7,-10],[-71,-14],[-43,-6],[-8,-2],[-70,-21],[-120,-32],[-116,-27],[-36,-1],[-106,-24],[-479,-107],[-15,100],[-117,1454],[-63,729],[-14,161],[-2,21],[-17,209],[-10,118],[-413,-86],[-91,-32],[-142,-37],[-486,-103],[-28,-6],[-43,-9],[-483,-118],[-12,-4],[-326,-87],[-53,-18],[-61,-6],[-483,-116],[-21,-5],[-102,-25],[-78,-18],[-126,-18],[-70,-18],[-56,-19],[-244,-54],[-38,-6],[-101,-31],[-252,-54],[-8,-2],[-122,-29],[-134,-30],[-350,-85],[-155,-36],[-57,-12],[-42,-6],[-42,-13],[-77,-18],[-1,0],[-64,-12],[-71,-15],[-37,-8],[-35,-7],[-95,-24],[-114,-31],[-103,-18],[-28,-6],[-45,0],[-20,2],[-44,4],[-3,1],[-62,23],[-75,37],[-9,7],[-33,23],[-23,26],[-34,39],[-102,116],[0,1],[-64,133],[-37,192],[-20,105],[-19,98],[-30,34],[-159,186],[-34,40],[-84,267],[18,98],[147,773],[0,2],[1,4],[281,729],[184,268],[34,49],[33,163],[-5,65],[-19,226],[-26,310],[-14,173],[-3,27],[-24,42],[-46,82],[-50,88],[-86,37],[-119,48],[-2,0],[-41,-48],[-6,-9],[-20,-28],[-28,-36],[-20,-25],[-480,-594],[-75,-358],[-42,-188],[-148,-667],[-50,-206],[-171,-800],[-4,-23],[-124,-566],[-302,-133],[-70,-455],[-11,-97],[-237,-85],[-56,-24],[-239,-78],[-42,-14],[10,-125],[11,-126],[16,-211],[6,-110],[6,-76],[11,-109],[25,-278],[8,-89],[17,-181],[3,-159],[-8,-125],[-3,-113],[0,-65],[-67,-15],[-39,18],[-159,61],[-31,13],[-56,23],[-109,36],[-50,19],[-104,38],[-293,107],[-147,53],[-33,13],[-99,37],[-198,73],[-218,85],[-52,17],[-4,1],[-388,152],[-54,12],[-14,5],[-111,43],[-176,67],[-232,85],[-10,291],[-2,189],[-14,588],[-275,7],[-40,1106],[1,79],[-196,-45],[-336,-67],[-24,561],[-94,20],[-324,-73],[-294,-57],[-171,-43],[-115,-26],[-214,-50],[-210,-507],[-68,-319],[-14,-67],[-14,-66],[-12,-58],[-20,-84],[-88,-358],[-72,77],[-327,406],[-46,58],[-329,413],[-151,191],[-55,69],[-87,100],[-64,80],[18,31],[11,19],[53,95],[8,14],[140,249],[53,94],[82,152],[67,117],[61,108],[342,616],[32,58],[3,20],[12,117],[-10,316],[-1,43],[-16,484],[-37,1231],[-35,1189],[-13,407],[-9,299],[-152,-39],[-115,-30],[-11,259],[-14,307],[-266,28],[-186,21],[-92,12],[-48,5],[-96,12],[-77,9],[-136,15],[-294,34],[-398,46],[-30,3],[-2,0],[-182,-266],[-279,-406],[-49,-70],[-98,-142],[-30,-43],[-116,-168],[-147,-216],[-169,-244],[-96,-139],[-72,-103],[-39,-59],[-23,-55]],[[69858,65340],[-126,-389],[-107,81],[-52,144],[103,139],[151,285],[227,10],[-196,-270]],[[70475,65855],[-15,-261],[-59,99],[-7,186],[-86,152],[136,100],[84,-39],[-53,-237]],[[70873,65068],[-135,-84],[-32,153],[153,325],[194,514],[146,229],[75,93],[60,-98],[-163,-321],[-174,-630],[-98,-112],[-26,-69]],[[72087,66261],[98,-303],[-95,37],[-123,206],[-1,20],[-5,6],[-13,182],[45,42],[45,-42],[28,-140],[21,-8]],[[68239,68601],[74,-42],[50,-28],[49,34],[46,31],[120,13],[59,-95],[14,-79],[16,-84],[19,-109],[10,-126],[-36,-183],[-4,-150],[59,-18],[97,-26],[5,-1],[59,-16],[348,-262],[2,-2],[102,-131],[30,-39],[67,-134],[-328,-120],[-127,-53],[50,-131],[62,60],[135,2],[83,4],[195,43],[162,6],[81,-152],[50,-175],[-83,-127],[-63,-167],[-125,-12],[-82,80],[-84,-29],[-152,-134],[-135,-90],[-134,34],[-130,-14],[-76,-142],[15,-181],[48,-124],[48,-4],[101,-103],[76,-128],[57,-90],[42,-210],[-115,-103],[-101,111],[-90,103],[-54,-89],[51,-90],[32,-147],[-102,-252],[-8,-122],[114,-51],[-7,-157],[-64,-97],[112,-343],[93,-57],[38,-263],[-22,-52],[-13,-31],[-36,-77],[-8,-145]],[[68931,63335],[-7,-29],[-1,-22],[-5,-69],[7,-19],[-14,-81],[-39,-85],[-7,-4],[-80,-40],[-13,-6],[-76,49],[-34,22],[-40,26],[-90,-75],[-15,-25],[-8,-20],[-1,-17],[-1,-7],[-3,-37],[37,-81],[20,-45],[1,-29],[0,-13],[0,-14],[-10,-27],[-83,-114],[-69,-88],[-65,-59],[-33,6],[-21,33],[-13,18],[-9,15],[-14,37],[-3,66],[-1,33],[-1,16],[-14,21],[-52,7],[-102,-30],[-23,-6],[-20,-20],[-3,-10],[-51,-1],[-3,0],[-20,2],[-66,-11],[-59,-29],[-80,-61],[-25,-5],[-31,14],[-92,40],[-47,-14],[-37,-11],[0,-119],[-50,-17],[-27,-8],[-43,-15],[-44,-14],[-10,-33],[-47,-195],[-8,-32],[-22,-13],[-130,-76],[-11,14],[-3,0],[-60,96],[-65,104],[-35,-49],[-104,-146],[47,-111],[41,-100],[53,-109],[6,-61],[0,-67],[-3,-66],[3,-134],[3,-103],[-20,-46],[-28,-32],[-28,-31],[-37,-42],[-38,-43],[-50,-61],[-109,-115],[-42,-60],[-53,-55],[-53,-61],[77,-227],[4,-10],[2,-7],[4,-29],[-4,-18],[-4,-9],[-64,-126],[-28,-49],[-9,-16],[-46,-80],[-42,-73],[-16,-22],[-21,-30],[-38,60],[-123,181],[-8,14],[-25,41],[-39,43],[-31,47],[-37,58],[-15,34],[-12,30],[-11,97],[-9,103],[-8,73],[-3,67],[-14,152],[-22,224],[-10,91],[-14,128],[-7,72],[-3,67],[-5,60],[-73,110],[-39,36],[-28,27],[-42,3],[-48,-57],[-33,-40],[-42,-42],[-31,-37],[-53,98],[-30,54],[-31,37],[-25,48],[-34,60],[-45,80],[-22,42],[-36,55],[-2,3],[-76,142],[-41,73],[-15,27],[-28,100],[-14,51],[-38,142],[-10,173],[20,85],[5,23],[-49,9],[-24,4],[-36,7],[-118,12],[-6,-2],[-49,-19],[-13,163],[-2,21],[-10,130],[-80,-32],[-8,-3],[-24,34],[-22,63]],[[65455,64636],[53,-73],[81,-121],[84,-133],[32,-67],[66,-95],[6,-8],[28,-55],[33,24],[67,76],[8,9],[28,43],[42,48],[45,79],[59,79],[56,97],[139,370],[17,61],[50,163],[53,158],[104,243],[70,188],[78,101],[67,-29],[75,55],[20,121],[14,73],[19,91],[25,103],[17,103],[1,7],[10,62],[39,95],[20,55],[-22,109],[28,182],[136,230],[-16,79],[-14,55],[-2,22],[-5,73],[4,62],[0,20],[0,41],[-74,17],[-30,7],[-2,0],[-27,5],[-62,12],[-6,1],[-56,25],[-70,18],[-56,12],[-28,6],[-28,12],[-28,-18],[-39,-12],[-12,-14],[-27,-29],[-98,-97],[-44,-48],[-90,-91],[-39,-79],[-31,-51],[-23,-38],[-25,-41],[-38,-64],[-36,-61],[-28,-66],[-62,-25],[-47,-62],[8,-71],[-33,-18],[-37,-18],[9,-61],[-39,-30],[-176,-286],[-26,-30]],[[67983,69911],[49,-159],[12,-21],[74,-126],[141,-53],[83,-58],[53,61],[60,6],[221,-68],[14,-32],[36,-78],[-11,-186],[-34,-181],[-47,-86],[25,-116],[-70,11],[-52,19],[-96,-78],[-74,-87],[-20,-24],[-70,-32],[-20,-9]],[[70510,72399],[-42,-139],[64,-21],[49,45],[164,294],[74,167],[33,151],[32,147],[77,9],[15,-4],[94,-30],[82,-31],[-37,-127],[-159,-252],[-436,-710],[-48,-148],[-61,-218],[-84,-449],[-8,-176],[39,-273],[71,-10],[60,-5],[13,-132],[3,-122],[57,-222],[46,-212],[160,-67],[174,18],[44,-130],[-143,-215],[-10,-207],[51,-316],[64,-289],[57,-189],[-80,-378],[40,-276],[127,-102],[100,-15],[161,-319],[-7,-335],[-194,218],[-187,262],[-214,422],[33,218],[54,87],[31,178],[-20,87],[20,117],[-48,89],[-57,-50],[-155,-1],[-67,-87],[-68,-61],[-72,-33],[-69,43],[-80,72],[-95,106],[39,245],[71,68],[-23,209],[-32,45],[-72,-39],[-89,105],[-66,65],[-176,67],[-61,-140],[-29,-113],[-37,-154],[9,-217],[72,-62],[38,129],[69,199],[54,31],[50,-43],[124,-77],[-58,-556],[-71,-112],[42,-122],[119,-221],[18,1],[106,101],[147,15],[54,-277],[-127,-261],[-201,58],[-201,-9],[13,-35],[-20,-436],[-113,15],[-466,583],[-104,129],[67,189],[-27,149],[-28,-45],[-72,-30],[-101,11],[-59,38],[-90,40],[-65,172],[-53,165],[-1,20],[-9,107],[68,80],[35,77],[-25,103],[-16,124],[11,172],[92,135],[99,38],[64,-54],[59,22],[-13,120],[-7,12],[-68,20],[-74,37],[-65,-10],[-48,9],[-67,-69],[-74,50],[-4,3],[-91,64],[-105,73],[53,103],[57,183],[-29,-33]],[[72235,61664],[-66,-36],[-38,388],[59,85],[42,-206],[43,-132],[-40,-99]],[[74920,62265],[68,-26],[93,-4],[83,-17],[84,-37],[80,-73],[64,-69],[29,-29],[154,-94],[143,-169],[241,-247],[68,-49],[5,-3],[13,-10],[26,-134],[-62,-176],[-29,-168],[-65,-90],[19,-60],[25,-79],[31,14],[68,36],[25,32]],[[76083,60813],[21,-28],[15,-21],[-2,-152],[36,-45],[-8,-17],[-25,-46],[-56,-59],[-39,-25],[-3,-7],[-24,-51],[-38,-37],[-1,-1],[0,-4],[22,-208],[30,20],[36,2],[-9,-100],[7,-64],[22,-53],[-23,-48],[-15,27],[-20,35],[-36,-17],[-5,-36],[-4,-27],[-4,-79],[-1,-12],[-1,-20],[-60,-75],[-44,-58],[-132,-161],[-3,-3],[-73,-93],[-155,-196],[-209,-266],[-28,-35],[-106,-134],[-97,-116],[-48,-66],[-58,-74],[-55,-75],[-38,67],[-23,46],[-106,206],[-32,62],[-189,375],[-131,612],[-65,289],[-14,61],[-31,132],[-31,140],[-67,387],[37,24],[75,49],[117,77],[4,2],[95,63],[-27,98],[-74,51],[-78,54],[-40,48],[-1,1],[22,46],[4,102],[-6,66],[-10,76],[18,53],[25,62],[11,69],[15,65],[0,2],[16,74],[12,61],[5,30],[13,79],[29,0],[33,2],[50,27],[28,54],[17,76],[25,40],[52,53],[34,10],[127,-16],[99,-12],[30,14]],[[72377,62546],[-97,-90],[-23,2],[-47,-28],[-100,15],[20,116],[117,61],[91,86],[39,-162]],[[70402,64671],[-60,-30],[-3,1],[-38,-24],[-122,-10],[-8,60],[41,43],[81,156],[6,29],[46,-10],[91,-87],[-34,-128]],[[68931,63335],[47,58],[9,10],[50,56],[15,33],[15,32],[40,306],[-15,145],[-39,158],[-77,261],[5,42],[90,51],[166,-78],[115,-28],[45,-112],[-3,-195],[70,16],[84,131],[109,376],[83,82],[51,-5],[12,-156],[102,-125],[0,-229],[-26,-128],[-42,-116],[-87,-47],[-119,-73],[-45,7],[-76,-1],[-78,-128],[53,-139],[51,-220],[140,-219],[134,-97],[194,-144],[142,-176],[-4,-335],[81,5],[93,9],[80,-105],[73,-47],[64,94],[65,-12],[72,-35],[90,-77],[72,21],[88,173],[111,146],[180,105],[103,66],[42,177],[-29,195],[27,32],[45,-92],[51,-89],[14,-167],[-17,-172],[-19,-204],[-38,-165],[27,-176],[-101,33],[-56,26],[-103,-10],[-109,-87],[-45,-18],[32,-102],[71,-70],[86,-38],[74,-136],[-67,-73],[-44,-205],[-66,-83],[40,-294],[94,36],[3,120],[23,99],[70,25],[114,41],[56,72],[115,74],[194,176],[12,194],[72,5],[173,2],[11,-58],[-144,-164],[-67,-85],[-42,-243],[97,-20],[71,-20]],[[71981,61227],[-12,-151],[1,-4],[6,-17],[21,-66],[46,-142],[138,-526],[21,-213],[-6,-37],[-12,-11],[-15,-88],[1,-55],[13,-37],[49,1],[45,31],[47,30],[20,-49],[61,7],[30,-71],[-4,-54],[-1,-12],[-8,-127],[-7,-82],[-11,-145],[-5,-66],[-7,-150],[-3,-106],[-9,-134],[-11,-72],[-6,-164],[-8,-97],[-25,-346],[-17,-309],[-47,-685],[-2,-24],[-9,-112],[-6,-83],[-15,-166],[-2,-64],[-14,-128],[-8,-151],[-9,-164],[-17,-289],[-16,-227],[-7,-103],[-27,-24],[-93,-84],[-326,-280],[-176,-145],[-55,-46],[-64,-58],[-19,-15],[-71,-57],[-9,-9],[-156,-138],[-209,-163],[-79,-72],[-50,-55],[-137,-103],[-10,-10],[-93,-87],[-9,-8],[-284,-247],[-224,-181],[-70,-104],[-139,-115],[-70,-61],[-42,-33],[-42,-34],[-108,-106],[-4,-3],[-162,-121],[-83,-69],[-12,-10],[-44,-36],[-66,-58],[-10,-9],[-67,-55],[-61,-48],[-137,-121],[-53,-37],[-70,-66],[-31,-25],[-31,-18],[-56,-51],[-27,-22],[-42,-36],[-59,-49],[-147,-120],[-23,-19],[-90,-73],[-64,-55],[-75,-62],[-20,-16],[-229,-237],[-84,-67],[-36,-30]],[[67816,52021],[-93,-81],[-3,-2],[-259,-226],[-6,-5],[-136,-117],[-28,-24],[-389,-321],[-69,-67],[-42,-30],[-213,-180],[-83,-75],[-299,-234],[-81,-65],[-78,-65],[-31,-42],[-62,-35],[-95,-80],[-107,-84],[-73,-60],[-123,-99],[-157,-133],[-43,-37],[-65,-54],[-154,-135],[-44,-37],[-101,-89],[-236,-205],[-62,-51],[-120,-108],[-9,-7],[-38,-27],[-30,-26],[-244,-205],[-83,-73],[-17,-16],[-42,-36],[-68,-60],[-140,-120],[-51,-41],[-26,-32],[-11,-8],[-113,-88],[-107,-93],[-51,-42],[-29,-25],[-17,-13],[-12,-9],[-36,-31],[-95,-84],[-70,-62],[-10,-9],[-139,-120],[-39,-34],[-99,-98],[-41,-36],[-21,-20],[-10,-9],[-39,-35],[-2,-2],[-29,-26],[-42,-36],[-33,-30],[-42,-30],[-154,-133],[-58,-49],[-69,-52],[-4,-3],[-304,-261],[-98,-78],[-459,-380],[-10,-9],[-103,-84],[-91,-74],[-133,-108],[-295,-243],[-27,-23],[-2,-1],[-73,-67],[-18,-13],[-52,-36],[-97,-84],[-23,-18],[-8,-7],[-28,-24],[-31,-24],[-39,-31],[-45,-30],[-36,-36],[-55,-44],[-104,-92],[-45,-40],[-118,-102],[-184,-159],[-66,-56],[-37,-18],[-268,-5],[-101,0],[-89,-6]],[[59405,45307],[-2,324],[0,102],[-1,126],[-2,318],[-1,46],[0,82],[0,312],[0,228],[1,191],[2,321],[-52,0],[-9,0],[-36,0],[-19,0],[-51,0],[-3,0],[-64,0],[-20,0],[-9,0],[-12,0],[-41,0],[-65,-2],[-43,-1],[-46,-1],[-47,-2],[-87,-3],[-213,-6],[-36,-1],[-64,-2],[-12,0],[-39,0],[-62,-4],[-36,-2],[-43,-4],[-47,-2],[-21,-1],[-26,0],[-133,-4],[-268,-6],[-10,0],[-59,-1],[-5,-1],[-1,0],[-158,-11],[-81,-1],[-77,-2],[-98,-2],[-49,-2],[-93,-2],[-113,-3],[-214,-5],[-297,-8],[-38,0],[-49,-7],[-71,-5],[-45,0],[-19,-2],[-51,-4],[-25,0],[-10,0],[-31,0],[-14,0],[-45,0]],[[38332,48051],[-7,1],[-3,0],[-51,5],[-62,6],[-46,5],[-56,5],[-54,0],[-53,-3],[-30,-1],[-47,0],[-6,1],[-203,4],[-87,2],[-56,2],[-79,2],[-39,1],[-33,1],[-92,5],[-80,1],[-216,3],[-83,1],[-41,1],[-43,0],[-82,2],[-113,2],[-105,2],[-171,2],[-156,2],[-4,0],[-46,1],[-415,9],[-145,3],[-156,2],[-43,1],[-40,1],[-6,0],[-216,7],[-339,10],[-33,0],[-66,0],[-165,1],[-77,3],[-171,1],[-223,1],[-116,1],[-224,1],[-8,0],[-2,0],[-83,1],[-68,1],[-54,1],[-40,1],[-234,3],[-109,5],[-3,0],[-29,1],[-322,9],[-83,-1],[-32,-1],[-28,0],[-3,0],[-123,8],[-142,9],[-36,1],[-105,3],[-15,1],[-44,2],[-280,9],[-52,3],[-79,1],[-118,1],[-262,4],[-58,1],[-75,7],[-35,2],[-59,1],[-29,3],[-83,2],[-39,1],[-553,19],[-53,2],[-252,5],[-128,3],[-55,1],[-41,0],[-20,0],[-150,9],[-66,2],[-72,3],[-63,2],[-186,8],[-35,3],[-15,0],[-50,0],[-12,0],[-121,-1],[-142,-1],[-210,-5],[-93,-1],[-82,1],[-257,5],[-196,2],[-130,3],[-140,4],[-118,8],[-109,7],[-33,-2],[-48,-4],[-3,0],[-123,0],[-95,0],[-96,-18],[-221,-40],[-384,-69],[-196,-42],[-30,-4],[-333,-79],[-66,-92],[-80,-100],[-70,-85],[-36,-50],[-24,-2],[-23,-1],[-92,0],[-52,0],[-10,0],[-1,0],[-143,10],[-104,8],[-37,-1],[-47,0],[-41,0],[-43,1],[-71,0],[-1,0],[-21,265],[-7,87],[-97,12],[-147,6],[-7,0],[-34,0],[-522,54],[-1,1],[-61,8],[-64,9],[-50,7],[-238,50],[-162,35],[-85,13],[-75,11],[-1,0],[-230,46],[-45,8],[-59,12],[-91,19],[-217,36],[-1,1],[-218,28],[-56,8],[-102,2],[-312,4],[-29,0],[-29,0],[-34,0],[-2,-8],[-3,-11],[-2,0],[-35,-6],[-81,6],[-34,0],[-52,-2],[-50,-1],[-780,-19],[-126,-2],[0,-3],[-47,-173],[92,-59],[21,-45],[46,-99],[-13,-59],[-1,-2],[-4,-19],[-10,-43],[-47,-192],[-3,7],[-3,8],[-22,-93],[-54,-153],[-19,-5],[-15,22],[-12,17],[-43,60],[-38,-49],[-38,-54],[0,3],[-5,14],[-1,4],[-3,25],[-11,17],[-10,11],[-6,7],[-12,-6],[0,-13],[5,-15],[10,-14],[4,-11],[-18,-48],[-3,-4],[-3,-6],[-5,-18],[0,-4],[1,-4],[6,-15],[4,0],[22,8],[10,2],[47,-18],[11,-115],[50,-26],[9,-4],[-3,-25],[-2,-5],[-7,-18],[-33,-103],[-48,-93],[-5,-11],[6,-24],[22,-82],[25,-94],[-22,-18],[-30,-24],[-35,-29],[-47,-38],[-17,-285],[-120,-25],[-104,-24],[-514,-129],[-20,-4],[-22,-6],[-388,-91],[-147,-30],[-82,-19],[90,2359],[-126,3],[-168,3],[-78,0],[-179,6],[-46,2],[-324,10],[-425,49],[-32,0],[-44,1],[-254,-1],[-29,0],[-120,0],[-109,3],[-204,3],[-53,1],[-168,3],[-639,10],[-82,2],[-9,0],[-74,1],[-106,2],[-48,1],[-219,4],[-17,0],[-58,1],[-14,0],[-4,0],[-322,6],[-319,5],[-128,2],[-186,3],[-28,0],[-492,10],[-56,1],[-47,2],[-95,4],[-148,6],[-75,2],[-44,2],[-205,10],[-213,6],[-62,1],[-109,6],[-82,4],[-115,6],[-91,5],[-31,3],[-159,7],[-3,0],[-52,8],[-5,2]],[[80176,46423],[-57,-46],[-10,141],[25,222],[49,170],[53,88],[46,-90],[-4,-163],[-11,-99],[-21,-126],[-70,-97]],[[71855,63884],[-93,-218],[-178,-70],[-84,-75],[-87,247],[34,102],[89,-6],[172,64],[161,392],[47,291],[147,-29],[33,-233],[-187,-160],[-54,-305]],[[76083,60813],[21,24],[7,7],[75,96],[67,12],[29,5],[38,-113],[12,-35],[62,21],[39,14],[-6,138],[-5,127],[11,41],[10,37],[17,63],[-5,177],[-14,175],[76,56],[56,6],[-9,-166],[84,-26],[3,-209],[5,-267],[81,-112],[25,-215],[31,-193],[39,-147],[44,-136],[43,-177],[78,-165],[81,-94],[113,-175],[88,-40],[87,-77],[57,-141],[67,-116],[28,-95],[83,-115],[70,-46],[130,-39],[53,-88],[-80,-211],[-81,-210],[7,-15],[-33,-72],[41,-33],[0,-4],[69,-155],[19,-196],[24,-111],[26,-7],[24,94],[62,171],[-89,85],[66,122],[97,79],[37,-138],[-45,-91],[-11,-113],[10,-133],[-20,-178],[-63,-151],[9,-190],[41,-140],[40,-129],[25,-182],[-4,-251],[-19,-252],[-52,-118],[-79,42],[-49,50],[-97,31],[-51,-53],[-8,-9],[-3,-3],[-34,-36],[-62,-82],[-31,-73],[-30,-69],[-60,-6],[-2,-40],[-2,-25],[72,-102],[71,27],[9,3],[19,129],[40,90],[90,-42],[72,-59],[95,-1],[14,-14],[39,-39],[54,-85],[44,-119],[14,-135],[4,-147],[28,-74],[9,-22],[51,-92],[103,-74],[59,-65],[-4,-121],[26,-206],[56,-12],[47,-10],[88,-52],[8,31],[-33,160],[-24,25],[-1,0],[-1,2],[-44,59],[-5,6],[-57,342],[-104,267],[-138,100],[-4,109],[57,142],[81,16],[100,-317],[138,-400],[108,-352],[45,-124],[44,-160],[50,-175],[41,-129],[44,-128],[65,-179],[54,-152],[52,-124],[47,-119],[54,-115],[56,-105],[65,-143],[63,-194],[70,-185],[49,-116],[39,-100],[62,-128],[80,-141],[65,-117],[54,-100],[40,-66],[74,-98],[95,-170],[55,-102],[70,-66],[66,-212],[17,-178],[17,-158],[-56,-116],[-113,-95],[-83,-165],[-18,-188],[-10,-127],[5,-177],[9,-146],[18,-208],[13,-96],[84,-360],[136,-582],[292,-702],[307,-565],[300,-839],[252,-360],[-47,-137],[-102,0],[-87,172],[-118,102],[-166,-68],[-252,-325],[-198,-463],[-157,86],[0,188],[86,103],[79,154],[95,171],[268,326],[118,171],[0,188],[-205,514],[-236,325],[-292,788],[-183,267],[-46,67],[-51,-68],[-4,-6],[-65,-152],[-44,-40],[-60,-50],[-89,61],[-105,55],[-8,11],[-102,-149],[3,-33],[-45,-123],[-1,-112],[-3,-210],[-2,-218],[-29,-201],[-76,-121],[-61,-132],[-37,-187],[64,-64],[34,-86],[23,6],[13,102],[70,-21],[37,-229],[24,-210],[-62,-191],[-75,-93],[-79,-42],[-58,-46],[-73,40],[-80,155],[-59,105],[-38,191],[-6,253],[-9,13],[-50,-41],[-78,-175],[-51,-24],[-34,-8],[-76,-15],[-3,-7],[-59,-79],[-68,-81],[-62,-115],[-60,-13],[-57,-94],[-43,-10],[-37,-153],[2,-23],[-3,-136],[10,-40],[85,-119],[27,53],[181,-160],[26,-379],[13,-147],[1,-117],[193,-268],[60,-54],[94,-48],[125,-98],[76,-107],[35,-114],[69,-203],[41,-127],[36,-101],[46,-93],[40,-118],[54,-107],[39,-95],[34,-82],[36,-36],[19,-19],[36,-71],[44,-89],[43,-61],[15,-3],[75,-69],[54,-128],[96,-97],[91,-77],[89,-20],[97,8],[62,-47],[85,-78],[85,-25],[-227,700],[-158,599],[-174,394],[-63,274],[63,154],[142,-240],[142,-514],[276,-959],[321,-740],[18,-17],[84,-59],[105,28],[102,-12],[109,71],[99,133],[113,229],[74,50],[148,61],[50,16],[64,-2],[98,-38],[111,-181],[68,-108],[78,-85],[80,-85],[53,-103],[42,-146],[103,-127],[79,-96],[95,-123],[64,-79],[78,-81],[74,-66],[66,-51],[64,-34],[82,16],[63,-68],[9,-186],[17,-134],[-70,-59],[-91,-55],[-69,-188],[-15,-218],[22,-206],[74,-291],[51,-145],[72,-195],[89,-218],[49,-100],[64,-227],[-18,-229],[26,-186],[13,-196],[-8,-156],[4,-241],[9,-143],[-13,-129],[24,-126],[36,-80],[51,-159],[59,-220],[-44,-174],[-42,-37],[-20,-120],[22,-96],[-51,-83],[-10,-204],[-23,-224],[-55,-156],[-61,-92],[-27,-170],[-25,-127],[-64,-80],[-52,-71],[-19,-117],[-17,-256],[8,-204],[10,-143],[31,-169],[75,-265],[27,-125],[-3,-5]],[[82964,34714],[-204,-383],[-15,-28],[-23,-47],[-20,-37],[-158,-296],[-148,-275],[-54,-94],[-39,-76],[-1,-2],[-103,-195],[-43,-27],[-64,-40],[-7,-5],[-41,-28],[-237,-167],[-53,-37],[-211,-148],[-33,-25],[-56,-39],[-54,-38],[-66,-46],[-41,-29],[-146,-102],[-28,-24],[-254,-221],[-70,-60],[-55,-49],[-60,-53],[-53,-44],[-31,-27],[-39,-34],[-59,-41],[-46,-39],[-34,-34],[-97,-91],[27,-17],[19,-61],[26,-30],[45,-153],[69,-202],[24,-70],[-4,-176],[28,-35],[30,-45],[21,-30],[36,-62],[-15,-113],[-4,2]],[[80623,30841],[-105,53],[-80,-27],[30,-123],[-59,-59],[-54,22],[-91,14],[-67,-65],[-17,-136],[18,-122],[-4,-139],[13,-116],[-107,90],[-95,48],[-79,129],[-57,62],[-95,-5],[-45,148],[-56,-80],[-70,-12],[-96,-34],[-74,-156],[-64,192],[-2,47],[-48,81],[-62,-16],[-31,16],[-21,-64],[8,-20],[7,-148],[78,-94],[79,-45],[-5,-135],[74,-53],[77,87],[34,110],[68,-125],[51,-102],[54,-93],[68,-44],[104,-70],[78,-89],[-64,-115],[-64,28],[-60,-57],[-65,-112],[63,-194],[53,-199],[-42,-121],[-43,-136],[-35,129],[-61,-9],[-70,-56],[-60,22],[-56,35],[-65,56],[-49,70],[-41,79],[-48,139],[-22,105],[-64,88],[-84,195],[-77,45],[-106,-95],[-79,14],[-3,-143],[-111,-27],[-80,122],[-86,93],[-68,24],[-56,33],[-83,4],[-89,3],[-28,135],[-71,25],[59,186],[17,220],[76,178],[-25,185],[35,128],[62,76],[73,20],[-62,157],[-65,145],[-64,113],[-69,-46],[-20,-13],[13,-212],[5,-86],[4,-73],[-15,-266],[-19,-9],[12,-38],[-59,-38],[-74,-58],[-51,-118],[-96,-144],[-86,-80],[-77,82],[-28,-2],[-61,75],[-32,-17],[-22,-107],[75,-117],[29,-121],[30,-146],[60,-41],[29,-111],[12,-189],[-86,48],[-59,118],[-48,69],[-67,36],[-76,66],[-68,120],[-86,116],[-88,-91],[23,172],[-30,148],[-50,69],[-14,36],[-25,65],[40,155],[29,174],[-21,165],[2,132],[-37,92],[-2,-12],[-30,-259],[-52,-185],[-8,-189],[-3,-9],[-57,-157],[62,-98],[11,-28],[50,-124],[30,-179],[86,-138],[110,10],[72,-110],[91,-111],[87,-81],[46,-211],[58,-162],[49,-117],[40,-102],[52,-117],[81,-79],[73,-46],[62,-181],[-20,-153],[-26,-160],[-65,-52],[-109,97],[-83,38],[-63,69],[-59,6],[20,-144],[55,-109],[37,-161],[44,-128],[59,-69],[80,-63],[33,-168],[-53,-154],[27,-113],[10,-116],[22,-204],[-13,-163],[23,-123],[-46,10],[-71,72],[-12,135],[-71,123],[-72,132],[-65,130],[-113,56],[-147,118],[-108,127],[5,160],[49,11],[20,-24],[147,-243],[49,11],[0,139],[-59,170],[-68,80],[-31,119],[-89,183],[-48,-10],[-93,-31],[-39,31],[-44,105],[-20,10],[-24,29],[-74,127],[-32,115],[-33,111],[-48,80],[4,15],[-67,84],[-36,-7],[-10,-2],[-62,79],[-84,-22],[-9,-213],[22,-46],[1,-1],[66,-200],[66,-125],[84,-157],[36,-90],[29,-126],[-25,-91],[0,-220],[0,-104],[15,-128],[28,-49],[39,-103],[30,-179],[41,-102],[63,-101],[97,-248],[1,-165],[-70,20],[-47,79],[-26,91],[-53,137],[-64,51],[-7,6],[-76,159],[-128,32],[-78,-149],[-5,-224],[37,-105],[78,-221],[32,-90],[29,-84],[-7,-64],[-56,-64],[0,-170],[46,-141],[8,-55],[20,-156],[0,-99],[19,-143],[-15,-45],[-83,-43],[-39,-149],[-25,-96],[-103,-10],[-12,-33],[-22,-63],[100,-255],[-66,-86],[-109,10],[-18,112],[-66,200],[70,242],[-73,64],[-87,4],[-3,2],[-56,6],[-64,50],[-106,13],[-92,14],[-63,26],[-99,-77],[-70,-30],[-56,75],[-88,103],[-57,127],[-47,41],[-50,61],[-85,0],[-92,-59],[-44,57],[-92,-2],[-115,-103],[-25,-216],[-39,-112],[41,-117],[10,-4],[61,-64],[55,-49],[52,-94],[50,-32],[53,-35],[75,-15],[87,-57],[82,-120],[37,-124],[29,-172],[27,-153],[5,-194],[-84,-146],[-84,-116],[-82,-56],[-85,96],[-70,126],[-31,145],[45,118],[-80,114],[-11,-120],[-49,-7],[-32,-79],[-5,-198],[-136,-49],[-2,-4],[-81,-117],[-65,-34],[-66,-18],[-65,6],[-95,73],[-71,109],[-42,82]],[[74424,23724],[-42,943],[-18,113],[-46,298],[-12,70],[0,6],[-26,154],[-13,76],[-75,465],[0,6],[-169,1036],[-18,107],[-18,101],[-165,961],[-21,105],[-136,821],[-206,1230],[-26,157],[0,1],[-111,687],[-19,119],[-38,249],[-15,85],[-26,151],[-507,-128],[-60,268],[-16,71],[-15,58],[-141,586],[-44,189],[-14,66],[-21,99],[-76,317],[-12,50],[-29,111],[-46,180],[-55,-14],[-166,-45],[-15,-4],[-37,-9],[-51,-14],[-285,-75],[-107,-28],[-33,-13],[-14,-5],[-32,-10],[-53,-10],[-247,-60],[-7,-1],[-227,-45],[-29,-6],[-109,-22],[-269,-55],[-102,-17],[-31,-8],[-304,-75],[-751,-188],[237,863],[30,111],[65,248],[-85,130],[-157,266],[-197,328],[-125,210],[-25,41],[-30,52],[118,182],[91,149],[139,229],[7,11],[54,93],[29,48],[285,471],[78,130],[37,66],[19,33],[142,211],[39,58],[47,75],[39,64],[58,84],[34,50],[125,193],[60,90],[80,123],[35,33],[36,31],[42,35],[35,35],[36,53],[22,46],[65,104],[-3,106],[-30,258],[-37,335],[-10,75],[-11,94],[-10,100],[-19,117],[-12,76],[-19,120],[-10,77],[-33,171],[-7,54],[-19,141],[-51,339],[-67,436],[-3,16],[-36,234],[-69,-6],[-31,0],[-27,18],[-26,26],[-3,-1],[51,113],[8,87],[-7,82],[-19,226],[-12,50],[-12,16],[-12,4],[-13,-7],[-4,-6],[-7,-12],[-5,-35],[-4,-17],[-16,-1],[-22,12],[-15,20],[-5,7],[-13,32],[-7,19],[-14,180],[30,153],[16,82],[31,158],[-40,65],[-57,89],[-60,48],[-96,235],[-190,406],[-23,32],[-105,138],[-126,163],[-41,60],[-9,13],[-41,58],[-23,33],[-26,37],[-28,35],[-251,329],[-82,107],[-139,184],[-17,23],[-14,19],[-61,36],[-39,39],[-42,89],[-30,38],[-16,97],[-9,87],[-13,119],[-13,111],[-21,188],[-49,441],[-31,277],[31,170],[-90,734],[-61,491],[-20,163],[-2,13],[-92,825],[-54,522],[-14,134],[-13,120],[-28,219],[-3,85],[-34,276],[-13,160],[-14,79],[-23,231],[-10,94],[-1,9],[-72,649],[2,88],[-11,81],[-17,169],[-10,93],[-17,175],[-17,79],[-39,394],[-9,82],[-14,130],[-8,97],[-17,146],[-22,194]],[[71981,61227],[1,197],[76,40],[31,-163],[61,117],[100,135],[72,39],[95,7],[39,98],[-22,119],[4,110],[22,133],[79,17],[74,20],[110,42],[142,-60],[84,72],[98,-28],[-30,-84],[-55,-115],[-29,-145],[25,-87],[52,-55],[52,-73],[21,-136],[87,-132],[46,-132],[87,-31],[79,65],[51,66],[31,81],[44,120],[15,232],[44,134],[-86,65],[-52,122],[8,109],[-38,175],[24,117],[-73,68],[-54,173],[53,158],[70,17],[67,-98],[-6,-130],[-1,-163],[44,-87],[72,-59],[66,94],[78,-65],[8,-191],[80,117],[44,122],[66,-27],[70,-40],[67,150],[-69,129],[-47,106],[-72,-84],[-88,-76],[-45,127],[32,133],[32,151],[-83,37],[-80,-28],[-50,-27],[-70,4],[-79,24],[-68,59],[87,53],[16,116],[-94,190],[-20,204],[-54,133],[-13,126],[-29,108],[-70,77],[9,210],[16,226],[16,220],[-80,41],[-42,73],[-170,-127],[-180,-84],[-161,-181],[-129,56],[-103,167],[-103,-70],[-77,56],[0,126],[129,70],[167,14],[154,140],[251,-154],[181,196],[141,10],[67,19],[45,-45],[-22,-142],[19,-192],[28,-157],[25,-102],[51,-167],[56,-184],[58,-197],[61,-166],[64,-182],[75,-182],[46,-106],[47,-103],[49,-109],[58,-108],[66,-117],[64,-112],[71,-102],[86,-76],[73,33],[7,13],[15,-3],[18,-4],[167,-35],[8,-1],[41,-3],[11,-2],[230,-43],[23,17],[45,-58],[39,-127]],[[74820,22219],[89,-145],[73,-126],[-16,-147],[14,-211],[12,-98],[78,-40],[64,52],[54,-64],[-52,-124],[-67,-37],[-31,-198],[-2,-154],[-128,36],[-113,129],[-68,158],[-40,113],[-63,162],[-30,135],[-15,155],[53,196],[-3,192],[44,-52],[61,-38],[30,207],[56,-101]],[[74424,23724],[-83,89],[-52,-73],[-4,-49],[-34,-22],[-23,-14],[-48,126],[-64,172],[-108,181],[-62,-105],[-68,-35],[-82,-18],[5,-140],[30,-152],[49,-160],[60,-79],[58,-1],[40,-71],[48,-68],[23,-160],[14,-197],[26,-159],[54,-118],[54,-111],[-5,-156],[-24,-134],[-3,-129],[-28,-142],[-3,-129],[33,-128],[75,18],[64,85],[58,-85],[-88,-181],[-105,-115],[-19,-83],[-40,-145],[-15,-129],[8,-157],[-81,-11],[-37,138],[-4,117],[-40,170],[-26,183],[-58,136],[-41,149],[-22,194],[13,186],[-37,185],[-37,156],[-36,154],[-36,131],[-11,169],[6,210],[-8,227],[-45,122],[-84,89],[-117,81],[-79,88],[-87,38],[-98,78],[-58,-8],[-31,-229],[-59,-158],[-60,-65],[-133,-36],[-81,37],[-8,250],[-88,222],[-63,106],[2,297],[-18,140],[-23,178],[-115,250],[-115,79],[12,143],[37,27],[29,79],[0,5],[5,171],[12,25],[20,41],[34,70],[106,60],[0,43],[-19,10],[-8,2],[-2,9],[-11,1],[-131,76],[-3,81],[-20,106],[-12,265],[-39,69],[-39,-106],[0,-286],[12,-116],[-44,-54],[-12,-15],[6,-58],[26,-232],[-23,-134],[-24,-139],[-19,-419],[24,-450],[4,-15],[72,-303],[73,-372],[22,-243],[34,-181],[36,-150],[96,-139],[54,-139],[58,-117],[33,-187],[39,-273],[19,-217],[-20,-184],[54,-144],[38,-162],[-72,1],[-95,95],[-140,87],[-72,301],[-68,298],[-70,265],[-79,151],[-47,158],[-101,-13],[-120,-115],[-35,-276],[34,-182],[-4,-145],[16,-158],[39,-138],[12,-113],[-3,-145],[-51,-137],[-33,-155],[-13,-182],[-46,-149],[-27,-114],[-68,-86],[-61,-86],[-43,153],[-48,48],[-47,12],[-8,130],[-36,149],[-65,120],[-50,143],[-78,44],[-52,78],[-58,140],[-54,134],[-43,145],[-44,85],[-29,-149],[31,-108],[10,-225],[53,-95],[-53,-100],[-84,71],[-21,-139],[27,-118],[72,-135],[101,-73],[33,118],[76,-8],[76,-2],[22,-113],[3,-151],[37,-236],[29,-160],[43,-120],[80,-159],[69,-131],[79,-148],[26,-162],[2,-191],[17,-162],[-35,-165],[32,-192],[65,-156],[35,-130],[28,-105],[46,-139],[42,-140],[-88,40],[-166,31],[-113,-15],[-121,-140],[-33,-193],[-16,-220],[-36,-24],[-6,-68],[-164,-197],[0,-1],[28,-175],[26,-157],[12,-121],[10,-114],[-28,-127],[-64,89],[-47,191],[-10,244],[-44,248],[-85,217],[-110,36],[-58,106],[0,1],[-86,-4],[-32,-121],[-58,-47],[-6,4],[-19,-51],[-49,96],[-5,224],[-20,117],[-20,85],[-1,0],[-78,28],[-56,83],[-6,17],[-22,-11],[-20,-11],[-11,-97],[-27,-153],[-33,-153],[64,-93],[27,188],[92,30],[52,-78],[-40,-150],[12,-161],[10,-39],[-16,-103],[-103,-393],[33,-131],[4,-83],[41,-171],[9,-189],[-87,-98],[-101,35],[-59,22],[-98,63],[-74,20],[-98,72],[-118,-15],[-62,-37],[-56,-49],[-58,-24],[-66,-29],[-71,-20],[-77,-35],[-91,-155],[-53,-172],[-125,-9],[-67,-140],[-83,-65],[-74,-87],[-57,-110],[-10,-37],[71,-377],[15,-213],[-20,-202],[-20,-139],[-63,-10],[-69,394],[-5,447],[-51,234],[-33,58],[-73,101],[-84,93],[-81,70],[-101,74],[-85,54],[-92,47],[-99,45],[-82,20],[-81,1],[-89,12],[-89,10],[-79,23],[-110,26],[-86,10],[-56,17],[3,89],[47,73],[92,-27],[36,85],[59,-10],[74,12],[81,4],[90,0],[99,52],[75,35],[34,7],[112,-119],[157,-202],[108,0],[44,139],[10,287],[49,234],[3,184],[25,180],[2,188],[-25,182],[-33,149],[-31,125],[-20,140],[-27,139],[14,203],[-11,200],[-45,185],[-49,192],[-46,251],[-73,81],[-61,138],[-69,100],[-13,-261],[-107,81],[-70,152],[-26,135],[32,126],[-15,144],[11,168],[-2,252],[44,146],[35,146],[15,157],[-19,201],[54,110],[38,171],[9,168],[-45,121],[-93,-37],[38,-79],[-3,-161],[-68,-119],[-39,-144],[8,-157],[6,-123],[-78,-128],[1,-226],[0,-134],[18,-145],[9,-161],[2,-142],[-33,-115],[0,-188],[24,-139],[69,-160],[61,-188],[25,-147],[46,-175],[42,-154],[32,-121],[26,-142],[18,-175],[10,-242],[-61,-180],[-9,-164],[2,-183],[-38,-212],[-26,-172],[-68,-143],[-3,-7],[-77,-141],[-94,157],[-90,152],[-63,-82],[-71,66],[-85,169],[-51,228],[-19,167],[-18,124],[-45,117],[-74,-66],[-61,-40],[-74,159],[-60,136],[-36,123],[-41,74],[-8,108],[-2,3],[-4,8],[-78,148],[-33,40],[-13,16],[-52,61],[-98,0],[-98,75],[-59,96],[-63,0],[5,-62],[19,-226],[24,-99],[4,-81],[49,-135],[55,-97],[98,-104],[80,-111],[67,-123],[94,-92],[59,-127],[44,-125],[54,-161],[38,-191],[48,-191],[-20,-153],[-38,-121],[2,-190],[66,-134],[23,-14],[175,-72],[-54,-170],[-80,22],[-4,-7],[-130,-39],[-129,36],[-86,-110],[-105,-13],[-85,-71],[-71,-61],[-31,-128],[-31,-99],[-79,52],[-31,137],[-12,371],[-3,66],[-2,38],[0,40],[-3,39],[-5,159],[-1,64],[-4,65],[0,1],[-7,199],[-5,133],[-7,188],[-55,912],[-24,389],[-25,479],[0,12],[-1,9],[-12,146],[-1,10],[-4,32],[1,31],[-9,116],[-2,34],[-10,162],[0,3],[-7,142],[-4,132],[-2,27],[-20,265],[-10,181],[-22,384],[-13,211],[-36,625],[-69,260],[-54,172],[-13,42],[-30,95],[-21,65],[-8,23],[-32,39],[-18,50],[-7,73],[-9,88],[-18,181],[0,218],[5,80],[11,152],[6,88],[11,165],[6,77],[18,37],[32,65],[23,49],[60,136],[22,674],[1,60],[2,71],[3,63],[1,71],[12,234],[4,76],[15,294],[11,205],[6,110],[0,5],[1,10],[6,57],[-13,4],[-8,3],[-46,17],[-6,3],[-31,11],[-33,13],[-1,0],[-11,6],[-11,4],[-8,2],[-3,1],[-27,11],[-21,10],[-7,2],[-13,4],[-45,18],[-13,5],[-9,3],[-33,14],[-35,13],[-21,8],[-57,23],[-9,3],[-20,8],[-21,9],[-11,5],[-4,2],[-13,5],[-56,23],[-5,2],[-32,13],[-33,13],[-88,35],[-81,32],[-7,3],[-18,7],[-63,25],[-12,5],[-108,43],[-35,13],[-86,34],[-46,18],[-20,8],[1,17],[3,86],[3,66],[0,11],[-1,18],[-54,21],[-17,7],[-96,35],[-28,12],[-8,3],[-11,4],[-1,0],[-27,12],[-13,5],[-28,12],[-29,11],[-10,4],[-2,1],[-5,2],[-4,2],[-9,3],[-3,2],[-11,4],[-3,1],[-3,2],[-42,18],[-7,2],[-8,1],[-7,3],[-22,10],[-5,3],[-6,2],[-12,5],[-10,4],[-9,3],[-18,7],[-3,1],[-8,2],[-1,1],[-28,13],[5,116],[4,162],[48,158],[82,129],[30,105],[140,272],[115,296],[140,197],[92,78],[36,85],[49,42],[49,116],[70,69],[43,4],[56,4],[46,117],[14,129],[22,174],[-8,146],[0,167],[32,115],[61,173],[34,52],[21,33],[53,51],[51,50],[43,49],[28,103],[76,65],[4,0],[34,197],[-4,12],[44,52],[90,154],[75,61],[62,123],[43,122],[22,141],[68,165],[44,206],[-63,399],[132,338],[81,41],[59,154],[72,38],[99,39],[88,154],[-1,137],[17,109],[-71,159],[62,137],[-20,196],[34,97],[103,180],[51,165],[67,101],[0,100],[71,131],[36,46],[98,32],[0,170],[74,117],[69,-63],[112,-150],[89,-106],[34,160],[-93,319],[-108,202],[-270,-10],[0,-288],[-112,-298],[-67,-228],[-2,5],[-128,-336],[-55,-71],[-85,-74],[-39,200],[-45,211],[-47,174],[41,89],[27,163],[29,162],[-27,129],[-21,147],[4,213],[89,124],[65,73],[52,93],[74,156],[-37,156],[-88,37],[-104,91],[-3,160],[-54,37],[-13,9],[8,-183],[13,-158],[32,-181],[-33,-148],[-61,-93],[-28,-158],[-17,-156],[-23,-113],[23,-226],[-26,-244],[-51,-183],[-58,-159],[21,-195],[21,-132],[46,-181],[21,-220],[61,-175],[-68,-111],[-73,-182],[-51,-197],[-30,-142],[-3,-4],[-212,-63],[5,-64],[0,-1],[10,-201],[-6,-145],[-27,-235],[-4,-162],[-42,-186],[-78,-214],[-89,-193],[-72,-284],[-112,-170],[-71,-24],[-27,-170],[-105,-343],[-6,-21],[-84,-157],[-82,-120],[-80,-141],[-49,-128],[-217,-215],[-27,-27],[-70,-118],[-79,35],[-55,40],[-8,0],[-37,39],[-128,-10],[-58,-257],[-55,-63],[-49,32],[-24,277],[37,55],[-2,43],[40,100],[-29,182],[-81,9],[-17,-52],[-49,-104],[-40,-182],[-72,-141],[-80,-77],[-58,-33],[-47,88],[-123,261],[115,198],[64,75],[39,136],[-91,107],[-143,189],[-60,20],[-63,14],[-58,95],[-53,-11],[-35,-7],[-11,-250],[22,-313],[-54,-282],[-139,339],[-119,289],[-261,635],[-3,7],[-76,185],[-35,86],[-72,186],[-36,90],[-37,98],[-98,251],[-28,74],[-50,122],[-58,53],[-41,37],[-38,34],[-138,126],[-12,11],[-54,50],[-90,83],[-26,24],[-63,57],[-65,60],[-11,10],[-30,28],[-29,27],[0,1],[-48,43],[-48,45],[-56,52],[-18,16],[-116,106],[-13,12],[-65,60],[-13,12],[-21,20],[-140,128],[-64,58],[-78,72],[-6,6],[-10,9],[-21,19],[-9,8],[-4,4],[-2,2],[-60,55],[-47,44],[-28,25],[-64,58],[-107,109],[-2,1],[-74,16],[-51,29],[-60,47],[-7,20],[-18,63],[-25,107],[-5,172],[11,189],[1,15],[-51,76],[-22,32],[-2,7],[-114,279],[-18,14],[-58,43],[-10,17],[-13,29],[-3,8],[-4,17],[-12,59],[-4,18],[-2,73],[-2,51],[11,45],[0,1],[4,34],[3,24],[8,73],[1,11],[11,185],[9,158],[-14,58],[-16,60],[-65,243],[-101,473],[-9,39],[33,232],[50,131],[47,123],[5,32],[11,44],[3,4],[33,62],[25,147],[-3,158],[-16,46],[-74,-39],[7,171],[7,167],[6,41],[14,69],[17,81],[15,51],[37,167],[-20,195],[-17,90],[14,88],[26,67],[40,62],[10,59],[-19,35],[-2,0],[-48,158],[-35,120],[-29,39],[-8,242],[16,211],[3,43],[9,127],[12,261],[-2,13],[2,77],[1,28],[7,113],[3,67],[16,248],[2,16],[0,12],[1,10],[2,53],[2,44],[0,4],[3,29],[4,40],[4,36],[1,7],[10,241],[-28,-12],[-3,-1],[-56,-9],[-56,-8],[-71,-24],[-9,-2],[-5,-1],[-23,-5],[-28,-15],[-8,2],[-1,0],[-1,0],[-19,-4],[-61,-5],[-7,-2],[-33,-11],[-43,-13],[0,-1],[-3,-1],[-55,-13],[-52,-17],[-92,-25],[-72,-13],[-51,-11],[-130,-40],[-10,-2],[-38,-5],[-39,-10],[-12,-4],[-48,-19],[-7,-2],[-11,-3],[-6,-2],[-8,-2],[-26,-8],[-80,-24],[-9,-3],[-25,142],[-5,30],[-8,35],[-11,6],[10,164],[10,165],[-66,53],[28,213],[10,86],[-14,209],[1,149],[2,168],[61,50],[12,154],[9,111],[-12,74],[0,3],[-1,122],[-1,152],[0,117],[1,474],[0,84],[1,358],[0,45],[1,151],[1,104],[0,27],[1,83],[0,32],[0,49],[0,26],[0,102],[2,241],[1,179],[0,74],[-3,88],[1,8],[3,50],[-1,12],[-1,36],[0,21],[0,8],[1,316],[0,8],[0,38],[-2,184],[1,82],[2,20],[3,88],[0,204],[0,19],[-1,114],[0,39]],[[86906,23365],[-24,-122],[-82,-30],[-82,-3],[-81,-30],[-2,-196],[18,-189],[12,-85],[71,-143],[2,-4],[23,-47],[5,-160],[-265,0],[-436,-160],[-127,107],[34,106],[132,85],[143,39],[-37,104],[-70,261],[16,192],[100,186],[75,27],[81,237],[158,130],[16,-219],[133,78],[109,69],[47,-96],[31,-137]],[[97931,18468],[-95,-22],[-88,8],[-67,28],[-87,143],[-35,109],[-36,168],[33,187],[78,5],[54,1],[113,270],[91,179],[64,155],[38,135],[42,88],[41,132],[22,102],[30,151],[29,97],[38,171],[15,150],[13,124],[2,208],[-10,243],[8,129],[14,203],[-15,316],[-3,152],[17,120],[12,108],[15,15],[118,694],[49,522],[118,415],[108,500],[152,181],[78,-53],[-10,-245],[-73,-127],[15,-437],[-187,-458],[-68,-766],[-16,-63],[0,-6],[-17,-216],[-20,-230],[-32,-183],[-16,-221],[-24,-166],[-34,-182],[-24,-149],[-20,-159],[-5,-174],[-20,-177],[-3,-161],[13,-164],[-3,-166],[-4,-144],[-8,-176],[-1,-276],[-13,-323],[-37,-170],[-46,-119],[-48,-123],[-68,-124],[-99,-177],[-88,-52]],[[99547,25077],[-63,-231],[-27,-108],[-42,-125],[-97,-96],[-56,-145],[-60,-10],[11,155],[11,203],[-21,155],[51,172],[81,-35],[69,44],[48,113],[66,140],[69,117],[45,19],[-19,-122],[-33,-138],[-33,-108]],[[99350,28946],[-65,-6],[-26,17],[-66,45],[-60,80],[-89,132],[-4,6],[28,119],[103,16],[7,1],[22,19],[96,84],[67,10],[6,1],[-14,-161],[-20,-151],[3,-39],[12,-173]],[[80300,29008],[-66,-79],[-64,65],[-9,151],[69,181],[-26,99],[40,84],[92,-7],[-49,-249],[13,-245]],[[99519,30820],[-17,-12],[-92,62],[-11,22],[-115,66],[-49,128],[102,220],[12,85],[22,157],[35,92],[83,-87],[67,-90],[39,-139],[-11,-125],[-4,-64],[-9,-141],[-9,-142],[-43,-32]],[[99589,34465],[-94,-62],[10,142],[34,161],[81,98],[22,-165],[-53,-174]],[[86906,23365],[71,116],[-70,204],[-31,156],[-72,44],[-41,98],[-50,146],[-80,74],[-67,-36],[-80,-77],[50,-244],[-118,-213],[-146,-62],[-104,-52],[-40,-138],[-48,-85],[-86,-18],[-92,-93],[-20,-233],[-37,-160],[40,-160],[-41,-117],[-58,-138],[-17,-107],[-65,-155],[-41,-152],[-60,8],[-42,-171],[4,-162],[-14,-154],[-102,-171],[-69,-62],[-58,-35],[-43,80],[-9,152],[15,225],[-92,116],[-70,-49],[-56,44],[41,145],[-35,234],[-98,-150],[-4,-33],[-77,-192],[-20,-11],[-13,-6],[122,-158],[-114,-155],[-36,-46],[-72,-46],[-3,-11],[-2,-8],[-35,-141],[0,-74],[0,-58],[17,-71],[85,81],[0,1],[31,25],[45,168],[29,-19],[52,86],[7,10],[19,32],[55,-170],[4,11],[57,-134],[56,-111],[45,-181],[-4,-21],[12,-11],[-9,-203],[-39,-97],[-77,-197],[-105,-270],[-142,-222],[-6,-17],[-139,-260],[-108,-158],[-169,-146],[-61,-26],[-164,-140],[-208,0],[-97,-22],[-74,-14],[-91,-29],[-135,-42],[-78,-29],[-135,-36],[-66,-35],[-68,28],[46,163],[80,-23],[107,12],[82,111],[9,138],[17,206],[5,3],[-7,48],[26,347],[-23,146],[-37,150],[-40,174],[-59,83],[20,219],[-56,102],[-139,-29],[-52,-230],[-28,-145],[10,-5],[-15,-35],[20,-133],[-1,-1],[3,-163],[11,-210],[-92,-112],[-28,-117],[-4,-102],[-59,-110],[-65,-173],[79,-60],[116,-122],[25,-241],[-71,104],[-103,106],[-96,45],[-5,7],[-78,5],[-137,-43],[-124,-23],[-24,-32],[-10,-2],[-152,-23],[-264,-40],[-49,-7],[-19,-15],[-41,-31],[-101,-76],[-108,-82],[-22,6],[-29,97],[33,92],[-39,483],[17,397],[-85,89],[-57,-194],[0,-147],[0,-804],[-45,-7],[-43,63],[-61,-40],[-125,-50],[-89,-81],[-101,-84],[-2,0],[-49,0],[-341,0],[-110,0],[-85,-54],[-321,-204],[-79,-50],[-1,-2],[-109,-138],[-13,-37],[-67,-119],[-56,-119],[-52,-146],[-43,-116],[-57,-178],[-81,-302],[-44,-173],[-82,93],[-41,83],[-65,-27],[-62,96],[-8,32],[0,119],[-12,29],[-16,6],[-11,4],[0,-5],[-14,-101],[0,-127],[-22,-79],[-45,36],[-30,208],[-19,66],[-72,130],[-37,88],[-14,26],[-35,10],[-86,54],[-84,12],[-14,-115],[17,-242],[-59,-37],[-78,121],[8,352],[67,188],[84,24],[84,-181],[106,-17],[47,52],[57,105],[60,143],[17,171],[37,119],[64,33],[13,-134],[67,26],[60,18],[108,68],[59,76],[25,154],[12,28],[-17,79],[-48,-6],[-9,-59],[-13,-80],[-103,-49],[-42,67],[47,85],[51,100],[10,35],[28,99],[37,93],[5,128],[-5,134],[-18,207],[28,249],[16,245],[110,85],[21,107],[13,110],[74,67],[90,98],[-10,460],[-38,344],[-23,99],[-29,191],[-20,145],[-17,104],[-36,154],[-86,306],[-3,52],[-4,86],[-4,84],[15,224],[16,17],[21,23],[84,89],[12,26],[26,151],[-6,240],[138,185],[52,120],[-32,168],[-39,160],[-50,135],[-49,177],[-30,34],[-35,146],[-94,0],[-19,22],[-15,117],[52,171],[3,49],[-4,140],[120,10],[89,90],[104,77],[80,-93],[86,111],[101,39],[44,98],[65,89],[41,140],[64,65],[69,70],[-38,87],[-49,20],[-56,15],[-51,31],[-58,64],[-7,17],[0,4],[-52,15],[-122,32],[-64,-192],[-118,0],[-294,171],[-34,351],[122,213],[123,0],[181,-11],[94,-159],[112,-54],[106,11],[24,74],[71,120],[25,-25],[67,13],[65,-9],[4,152],[84,84],[11,148],[-95,115],[-104,-29],[-7,133],[59,107],[35,181],[-55,91],[-64,-73],[-53,-193],[-54,-42],[-64,89],[-16,138],[51,115],[16,201],[-28,172],[-17,-6],[-31,41],[-79,-43],[-2,-163],[-1,-2],[-15,-26],[-52,-46],[-57,-54],[-49,-164],[-123,-104],[-53,-140],[-71,-26],[-60,-17],[-84,-4],[-83,22],[-96,-44],[-70,13],[19,118],[63,85],[42,50],[34,107],[86,57],[58,75],[53,99],[101,35],[-9,159],[41,63],[50,28],[97,32],[61,50],[59,1],[71,-6],[69,23],[91,82],[83,80],[73,76],[47,-1],[49,126],[4,139],[11,146],[0,244],[16,148],[35,144],[-13,148],[-22,135],[-29,134],[-67,184],[-29,-11],[-50,16],[-48,85],[-53,166],[5,38],[57,21],[5,157],[63,108],[59,154],[112,53],[58,103],[7,13],[73,95],[-93,12],[-18,-11],[-72,-45],[-73,-72],[-73,-90],[-72,-90],[-65,135],[60,63],[38,157],[61,172],[1,2]],[[82964,34714],[79,-181],[62,-155],[107,-220],[84,-163],[76,-122],[61,-118],[43,-98],[60,-125],[94,-143],[110,-121],[56,-70],[107,-145],[65,-94],[92,-311],[7,-25],[96,-63],[63,-105],[59,-42],[95,-107],[77,-132],[12,-13],[89,-94],[124,-159],[111,-135],[157,-90],[92,-67],[177,-128],[168,-112],[105,-76],[97,-65],[74,-49],[222,-115],[76,-45],[57,-78],[81,-52],[88,-55],[165,-72],[111,-54],[92,-36],[239,-93],[164,-52],[144,-53],[212,-54],[106,-30],[100,-33],[74,-15],[249,-33],[187,-44],[161,-17],[90,-22],[262,-8],[77,-15],[177,-1],[239,-16],[469,-27],[88,-11],[93,7],[65,-30],[121,-79],[54,-56],[22,-78],[87,-105],[162,-106],[79,-74],[45,-138],[-86,-84],[-64,-36],[-65,18],[-74,120],[-48,154],[-10,-12],[-60,-70],[-47,-106],[-19,-137],[-70,-23],[-87,1],[-49,-69],[-100,10],[-97,59],[-67,182],[-67,156],[-116,38],[-54,-50],[-58,-2],[-86,-73],[-144,7],[-38,7],[-5,1],[-86,-60],[-120,4],[-98,-36],[-95,-16],[-80,-22],[-96,47],[-40,121],[-25,76],[-24,-177],[97,-250],[100,-25],[41,-56],[-112,-212],[67,-116],[294,-116],[74,-102],[37,-79],[0,-4],[5,-64],[3,-44],[59,55],[4,38],[20,158],[131,-75],[84,-51],[102,29],[95,16],[100,21],[75,-2],[8,17],[180,-80],[64,13],[96,68],[106,-12],[223,-27],[68,-4],[56,15],[102,97],[104,70],[49,37],[69,32],[68,4],[52,-162],[80,11],[3,0],[2,115],[5,17],[32,106],[65,55],[18,15],[21,40],[48,90],[0,15],[-1,13],[51,75],[15,31],[91,92],[168,146],[0,21],[0,2],[0,117],[21,41],[-9,28],[121,286],[98,101],[99,111],[95,119],[78,74],[91,109],[96,90],[64,47],[208,152],[73,57],[82,57],[166,115],[166,100],[47,-62],[60,-5],[96,23],[150,73],[61,50],[89,74],[189,91],[123,24],[124,-7],[94,36],[120,75],[101,99],[58,31],[50,-52],[79,-37],[68,109],[60,-21],[56,-34],[100,-29],[74,-83],[59,61],[60,60],[74,69],[73,23],[76,72],[74,24],[90,32],[83,59],[191,137],[151,123],[145,3],[110,49],[118,118],[109,84],[101,-5],[133,1],[100,70],[62,47],[122,85],[84,64],[89,64],[92,70],[68,58],[91,79],[77,66],[100,85],[138,147],[115,53],[70,76],[44,176],[55,120],[74,130],[66,117],[42,79],[85,140],[64,211],[47,102],[95,91],[-26,117],[-25,11],[-48,20],[22,146],[8,18],[35,78],[36,79],[6,33],[4,21],[13,66],[-69,-66],[-28,81],[4,162],[0,7],[1,27],[0,116],[3,165],[-5,262],[-8,392],[-8,211],[-18,238],[-7,127],[-11,133],[-17,214],[-9,166],[-17,157],[-7,137],[-5,128],[-3,137],[-18,191],[-9,156],[-7,131],[5,187],[5,140],[29,134],[97,83],[13,190],[95,142],[63,-137],[14,47],[2,7],[58,201],[14,83],[-19,38],[-93,-25],[-90,104],[-13,-1],[-78,19],[-47,41],[-62,-6],[-102,-30],[-82,-3],[-49,39],[-98,101],[-61,99],[-28,184],[94,28],[71,43],[65,30],[102,25],[28,-162],[59,-61],[114,-50],[49,-102],[31,0],[66,117],[-26,157],[-9,-6],[-43,180],[-59,-24],[-15,117],[17,145],[46,-38],[54,66],[80,4],[64,53],[99,154],[-6,246],[-60,90],[-139,-65],[36,-184],[-68,-77],[-85,-12],[-56,4],[-111,92],[-77,16],[-25,-124],[33,-88],[-59,-72],[-65,2],[-79,52],[-66,96],[-123,246],[-82,187],[-53,210],[-9,21],[-6,38],[-5,35],[-34,225],[89,11],[39,-213],[52,-166],[112,67],[-39,138],[35,215],[-13,212],[-159,13],[-104,21],[-115,15],[-221,-8],[-136,-55],[-122,-104],[-103,-87],[-62,2],[-91,121],[-23,149],[-1,1],[-22,23],[-63,17],[-23,-35],[-2,-2],[-47,-69],[0,-21],[-22,-40],[-1,-174],[33,-116],[66,-19],[51,-25],[77,41],[207,-152],[-82,-200],[-122,-132],[-51,-73],[-48,-138],[28,-135],[-35,-382],[21,-175],[-76,-17],[-78,-55],[-25,486],[1,452],[-18,171],[-11,191],[1,314],[-8,103],[-4,345],[-4,173],[-25,187],[-58,153],[-24,106],[1,153],[7,300],[7,198],[-9,184],[-6,192],[15,223],[2,143],[2,138],[-4,160],[-7,298],[1,133],[-9,182],[-1,150],[-4,131],[-40,197],[1,140],[0,213],[-2,10],[-25,176],[-12,112],[-22,159],[-14,104],[-17,141],[-26,155],[-27,216],[-50,248],[-33,160],[-34,167],[-34,142],[-81,254],[-64,170],[-101,219],[-59,113],[-59,121],[-130,218],[-103,148],[-184,209],[-178,261],[-59,44],[-220,110],[-94,80],[-80,116],[-132,117],[-116,73],[-83,22],[-123,-8],[-81,-36],[-86,-34],[-148,-56],[-73,-39],[-75,-58],[-52,-42],[-79,-67],[-100,-129],[-81,-137],[-35,-95],[-74,-114],[-73,-205],[-58,-227],[-51,-159],[1,-142],[-65,-41],[-16,-253],[-35,-35],[52,-283],[154,-100],[199,84],[184,66],[145,200],[69,0],[15,-167],[-260,-499],[-307,-66],[-321,299],[-231,566],[-119,290],[-21,101],[-45,150],[-60,194],[-51,108],[-102,213],[-100,169],[-69,88],[-81,211],[-69,52],[-77,51],[-71,95],[-87,-52],[-51,147],[36,195],[51,158],[42,102],[88,159],[104,124],[93,83],[72,68],[97,73],[137,69],[139,60],[146,37],[69,14],[140,6],[150,10],[114,7],[71,4],[61,-18],[305,-64],[162,-45],[97,-43],[232,-69],[85,-56],[72,-39],[139,-50],[89,-37],[123,-79],[100,-54],[133,-91],[154,-79],[76,-27],[70,-40],[167,-101],[73,-55],[69,-51],[111,-107],[136,-82],[59,-54],[85,-67],[78,-74],[238,-229],[82,-68],[94,-101],[87,-106],[100,-128],[117,-141],[47,-71],[69,-89],[53,-77],[106,-154],[83,-153],[99,-162],[152,-283],[73,-147],[94,-187],[59,-129],[56,-126],[84,-185],[87,-230],[91,-232],[60,-157],[88,-275],[81,-227],[88,-263],[63,-211],[57,-145],[60,-222],[94,-268],[61,-204],[43,-127],[35,-129],[46,-150],[78,-249],[35,-130],[32,-108],[50,-157],[48,-159],[44,-173],[33,-144],[48,-147],[41,-159],[30,-144],[25,-104],[35,-129],[36,-171],[31,-146],[43,-206],[51,-267],[28,-164],[32,-145],[31,-184],[38,-172],[21,-125],[49,-208],[22,-151],[43,-214],[16,-117],[37,-196],[45,-207],[26,-174],[21,-161],[48,-215],[38,-289],[39,-175],[20,-169],[17,-152],[23,-171],[25,-130],[28,-225],[25,-143],[34,-255],[39,-268],[25,-153],[48,-294],[35,-213],[26,-190],[39,-306],[20,-155],[14,-162],[18,-162],[11,-96],[12,-177],[-24,-190],[-68,169],[0,164],[-23,51],[-36,77],[-19,6],[-6,3],[-34,12],[-58,-55],[-30,-27],[-2,1],[-10,6],[-62,14],[-92,11],[-93,-35],[-38,74],[56,139],[73,94],[-56,123],[-64,-50],[-7,-6],[-74,11],[-94,-48],[-24,-138],[4,-81],[66,-129],[11,-66],[45,-36],[-1,10],[4,-1],[104,-36],[78,21],[54,-44],[9,-8],[75,27],[73,-69],[54,-83],[12,-76],[10,-60],[22,-85],[28,-103],[2,-148],[-13,-75],[-9,-47],[-26,-63],[-14,-35],[-7,-26],[-34,-120],[-23,180],[-37,135],[-63,106],[-77,56],[-56,12],[-29,7],[-48,-52],[-46,-32],[-49,-125],[-55,-22],[-16,-175],[-4,-16],[-288,-452],[-122,-415],[-98,-351],[49,-150],[117,118],[108,244],[74,394],[77,209],[15,-3],[80,76],[37,165],[65,151],[63,241],[45,22],[0,2],[2,-1],[26,-17],[21,-14],[40,-43],[24,-128],[30,-53],[44,0],[19,-138],[-3,-204],[10,-24],[28,-28],[39,-80],[16,-132],[-65,-142],[50,-92],[66,-32],[13,32],[-4,101],[49,188],[91,-5],[31,-39],[8,254],[44,139],[16,-50],[18,-57],[39,-393],[21,-99],[6,-159],[8,-264],[-1,-136],[13,-180],[2,-154],[9,-238],[13,-171],[27,-324],[12,-320],[7,-234],[11,-231],[11,-208],[13,-186],[14,-179],[7,-176],[12,-260],[-1,-250],[-3,-213],[4,-257],[15,-335],[4,-169],[0,-284],[-2,-183],[2,-168],[6,-176],[-3,-191],[-9,-265],[5,-249],[-7,-237],[-7,-141],[-16,-151],[-12,-125],[-16,-165],[-22,-182],[-65,-82],[-46,322],[23,166],[-16,137],[-25,167],[22,233],[47,127],[22,149],[-10,179],[45,76],[17,167],[-2,116],[4,169],[-32,207],[-28,160],[25,175],[15,170],[15,150],[-41,139],[-23,126],[-13,203],[43,201],[7,161],[-19,110],[-34,161],[-44,106],[-40,183],[-16,169],[0,8],[-68,82],[-39,81],[-11,123],[-9,111],[0,7],[7,8],[-5,12],[6,62],[14,132],[9,93],[-34,139],[-12,3],[-68,21],[-31,-56],[-66,87],[-90,23],[-46,-102],[-64,-47],[-45,-107],[-70,46],[-51,290],[-57,68],[-31,146],[29,194],[-17,10],[-19,2],[-93,7],[-98,-159],[30,-42],[25,-35],[14,-19],[11,-2],[29,-24],[51,-88],[18,-91],[-39,-121],[-33,-61],[-32,-50],[0,-95],[104,13],[63,-83],[46,-157],[-68,-99],[-71,-57],[-18,1],[-98,-216],[-19,-201],[27,-125],[59,-97],[32,-193],[-37,-173],[-103,-112],[-53,-12],[-54,-37],[-42,-6],[-28,12],[-153,68],[-7,-5],[-109,-33],[-68,-77],[-18,-135],[-12,-148],[-14,-143],[-37,-139],[-28,-147],[-17,-49],[-39,-355],[2,-26],[0,-118],[54,-59],[88,73],[84,77],[91,122],[121,147],[109,87],[79,-48],[82,-86],[138,-84],[5,-169],[-68,-43],[-56,-68],[-21,-179],[-15,-137],[-86,-66],[-85,-112],[60,-47],[82,108],[63,0],[36,0],[15,105],[85,126],[148,-29],[96,-20],[90,-76],[107,-73],[50,-51],[53,-133],[-41,-99],[-71,-187],[-32,-181],[-9,-171],[7,-137],[1,-179],[51,-228],[51,-201],[38,-122],[0,-227],[-66,-299],[-63,-195],[-43,-62],[-27,-126],[-40,-88],[-2,-96],[-61,-126],[-47,-143],[-115,-202],[-75,35],[-80,106],[-34,96],[-56,231],[118,217],[-89,144],[-140,24],[-73,-159],[-42,-82],[9,-139],[-71,-146],[-88,-15],[-100,173],[-68,148],[-159,227],[-84,84],[-72,77],[-60,35],[-57,45],[-173,53],[-3,1],[-2,-3],[-126,-157],[-362,-106],[-449,-100],[-101,-39],[-210,0],[-248,-141],[-47,-27],[-288,70],[-3,0],[-130,-25],[-93,-17],[-2,2],[-78,-30],[-117,-45],[-16,-8],[-467,-226],[-144,-145],[-10,-10],[-54,5],[-71,-5],[-58,-30],[-68,-25],[-89,-62],[-106,-53],[-68,-41],[-55,-42],[-50,-27],[-103,-24],[-92,-6],[-81,1],[-107,32],[-81,34],[-489,-30],[-463,-179],[-176,-10],[4,11],[34,176],[15,26],[148,159],[-48,156],[-11,36],[-172,-138],[-43,-239],[-15,-48],[5,-160],[14,-149],[-35,-66],[-90,-22],[-94,-33],[-111,-81],[-89,-95],[-84,-84],[-139,-216],[-310,-131],[-100,-65],[-197,-126],[-116,-105],[-112,-153],[-71,-117],[-63,-131],[-28,-192],[-2,-139],[-20,-112],[-72,-203],[-191,-55],[-35,207],[-22,144],[-25,172],[12,192],[-5,199],[86,117],[118,20],[86,-28],[71,221],[48,91],[70,15],[96,51],[102,-85],[93,30],[30,145],[-11,166],[-67,184],[-71,7],[-58,-53],[-42,52],[-74,163],[-66,114],[-85,65],[-65,-41],[-81,-42],[-99,-11],[-100,96],[-107,86],[-11,119],[-36,110],[-45,-78],[-7,-12],[32,-141],[-9,-103],[64,-115],[-89,-114],[-2,-204],[28,-221],[-63,-12],[-86,14],[-71,8],[-104,-9],[-67,10],[-102,67],[-2,-109],[-106,-69],[-55,-100],[-21,-137],[-72,-34],[-202,-49],[-89,-106],[-51,-11],[-19,-16],[-19,9],[-26,12],[-24,11],[-142,266],[-348,277],[-181,32],[-329,-107],[-255,-319],[-47,-4],[-35,-7],[-41,-8],[-73,-14],[-44,-86],[-38,-78],[38,-87],[74,-91],[63,-46],[-26,-207],[-59,-175],[-62,-84],[-76,-70],[-111,-105],[-60,-38],[-84,-53],[-76,-61],[-145,-80],[-92,-32],[-108,53],[-1,47],[60,131],[26,201],[-7,60],[26,69],[30,-34],[53,-69],[38,149],[-8,129],[-20,118],[-66,25],[-53,104]],[[75433,669],[-62,-2],[-62,22],[-63,48],[-93,22],[-78,19],[-89,37],[-92,108],[-80,134],[-50,81],[-5,125],[188,43],[96,12],[119,108],[82,46],[57,105],[47,-153],[86,-78],[159,-120],[-24,-225],[-44,-111],[8,-183],[-100,-38]],[[84838,9777],[-15,-93],[-39,19],[0,12],[8,143],[5,81],[23,-30],[2,-74],[16,-58]],[[85416,10558],[45,-105],[-32,-111],[-7,-54],[-3,12],[-44,-82],[-55,14],[-67,104],[56,167],[91,-24],[16,79]],[[85441,10869],[-7,-165],[-31,-43],[-60,45],[-75,-67],[-36,114],[-65,153],[-60,56],[4,39],[74,35],[89,53],[115,14],[40,-102],[12,-132]],[[72007,10707],[-82,-73],[-93,-73],[-106,-68],[-105,-39],[-74,-44],[-68,-17],[-45,133],[39,211],[64,-6],[84,-51],[39,141],[52,80],[-7,262],[87,149],[145,30],[37,117],[30,148],[70,127],[87,-21],[54,-109],[24,-134],[46,-61],[28,-128],[-94,-6],[-41,-97],[-43,-138],[-48,-169],[-80,-164]],[[74279,11859],[-91,-122],[5,-130],[-92,-125],[-80,-104],[-75,-46],[-64,-68],[-109,-79],[-129,-39],[-82,-3],[-58,-1],[-94,-24],[-113,-7],[-136,68],[-138,-34],[-108,-17],[-84,-15],[-89,74],[-63,168],[50,250],[66,193],[58,97],[90,-75],[69,-2],[91,-20],[96,18],[73,-58],[76,17],[37,124],[85,189],[106,53],[84,144],[66,75],[85,48],[101,85],[51,197],[79,153],[52,-83],[20,-178],[-26,-196],[-34,-127],[141,-203],[54,-74],[30,-123]],[[72270,12875],[-21,-212],[-76,73],[-46,161],[57,167],[90,46],[37,-126],[-41,-109]],[[75138,13287],[42,-91],[75,-92],[67,-95],[41,-200],[23,-169],[21,-128],[-96,-14],[-45,156],[-52,-25],[-81,-49],[-77,-23],[-98,-38],[-98,-121],[-86,-63],[-150,47],[-39,103],[-24,137],[-46,32],[-28,163],[23,214],[47,138],[85,67],[87,92],[88,-47],[73,-41],[120,18],[66,86],[62,-57]],[[81282,13013],[-22,-76],[16,-100],[79,-79],[50,136],[40,223],[76,-58],[-53,-272],[-93,-180],[-165,-272],[-16,-194],[-24,-215],[-33,-187],[60,-64],[36,165],[165,445],[116,208],[109,279],[27,173],[76,64],[39,294],[-115,139],[28,33],[44,83],[61,136],[72,143],[20,20],[82,149],[106,108],[12,-3],[81,26],[79,-85],[71,-144],[44,-160],[40,-234],[69,-164],[11,-26],[44,-209],[27,-164],[-3,-81],[-2,-83],[-12,-170],[-3,-47],[9,-145],[-17,-184],[-27,-117],[-5,-145],[-14,-62],[18,-292],[83,-373],[132,-345],[-53,-97],[-6,-10],[-19,42],[-16,-5],[-101,379],[-76,358],[-13,287],[-73,122],[-135,-86],[-69,-222],[-12,-89],[55,-92],[36,16],[30,29],[13,-44],[-43,-78],[10,-94],[-30,-122],[-129,-157],[33,-65],[119,14],[63,180],[78,0],[38,-58],[13,-165],[10,-61],[10,-61],[-33,-54],[-10,-17],[10,-130],[69,-43],[20,7],[30,-36],[26,-143],[69,-21],[83,-41],[33,-70],[0,-112],[63,-93],[79,86],[-13,194],[-212,394],[19,24],[6,7],[0,-1],[138,-207],[143,-184],[119,-194],[114,-83],[103,-8],[139,-34],[111,-80],[53,-128],[-15,-115],[10,-25],[20,-19],[73,-72],[68,18],[31,28],[53,44],[35,-135],[47,-235],[-38,-50],[-44,0],[-115,-140],[-14,-18],[-43,-122],[145,-394],[57,-344],[-33,-574],[43,-366],[194,-115],[34,-115],[-57,-193],[-62,-51],[13,-64],[76,-7],[892,21],[-3,101],[-93,294],[-102,208],[-60,114],[-185,58],[-307,50],[-66,72],[-70,143],[-125,137],[3,93],[3,165],[-43,93],[7,179],[3,194],[-43,158],[-95,244],[4,7],[19,31],[56,-52],[126,-170],[54,-51],[101,-57],[92,3],[60,11],[99,72],[60,92],[48,135],[52,94],[61,93],[114,141],[93,109],[51,78],[36,50],[21,-8],[6,-80],[-73,-270],[9,-167],[19,-194],[54,-129],[86,-82],[66,-43],[93,-85],[106,90],[69,3],[-15,123],[48,218],[4,191],[0,142],[31,117],[2,67],[79,-35],[-5,-72],[-4,-123],[-9,-151],[-16,-132],[-31,-288],[-12,-159],[-5,-322],[1,-160],[10,-356],[-5,-122],[-2,-145],[28,-263],[2,-233],[-1,-3],[-87,-204],[-158,-100],[-212,-36],[-259,-2],[-49,0],[-663,-5],[-228,23],[-22,2],[-615,61],[-410,0],[-118,5],[-91,3],[-130,5],[-176,7],[-79,3],[-688,27],[-1032,-84],[-7,-1],[-187,-15],[-13,-32],[-53,-11],[-733,-100],[-19,-2],[-41,-6],[-289,-46],[-3,0],[-68,-11],[-77,-16],[-54,-11],[-143,-31],[-103,-21],[-348,-83],[-2,4],[-215,-43],[-496,-244],[-337,-237],[-171,-222],[0,-69],[-35,-159],[-22,-28],[-122,-45],[-44,-56],[-78,-100],[-70,-88],[-112,-187],[-23,-237],[-50,-150],[7,-21],[-3,-10],[42,-173],[-33,-176],[-47,-155],[-124,-118],[-93,-8],[-77,79],[-78,102],[-107,147],[-69,115],[-23,11],[-366,436],[-308,443],[-73,130],[-91,135],[-37,89],[-52,106],[-75,177],[-97,199],[-61,124],[-65,147],[-56,117],[-55,89],[-29,140],[56,123],[36,192],[50,60],[117,-15],[99,11],[107,-5],[68,31],[79,111],[106,78],[165,-14],[204,-182],[4,-2],[125,-119],[79,-77],[130,-101],[84,-38],[133,-2],[118,62],[92,98],[56,91],[26,62],[27,56],[43,-212],[-57,-433],[-171,12],[-245,25],[-28,-346],[0,-340],[60,-80],[150,0],[222,86],[103,223],[45,309],[-22,593],[-55,257],[49,103],[19,78],[38,101],[50,113],[27,104],[24,114],[82,177],[66,171],[94,158],[51,47],[85,92],[47,142],[61,121],[47,159],[26,207],[47,210],[63,160],[67,186],[36,100],[83,16],[67,40],[81,86],[73,148],[36,131],[68,44],[72,121],[68,157],[11,279],[46,205],[75,111],[34,167],[16,107],[40,113],[61,176],[13,52],[0,204],[99,129],[109,36],[99,107],[83,187],[52,44],[4,3],[36,32],[151,-74],[12,1],[78,38],[56,-56],[60,68],[30,196],[27,125],[44,159],[33,106],[29,167],[77,242],[94,148],[78,13],[62,15],[82,0],[61,12],[98,30],[16,2],[339,373],[30,-73],[-13,-136],[86,-187],[106,-36],[0,-186],[16,-244],[57,-65],[39,201],[-43,237],[-43,229],[-33,251],[-96,126],[252,276],[274,287],[36,18],[71,79],[91,100],[95,-44],[78,-170],[15,-111],[0,-140],[6,-112],[12,-110],[5,-120],[-37,-149],[-46,-164],[-27,-179],[-18,-148],[3,-167],[0,-12],[63,-173],[-1,-1]],[[78339,16815],[-50,-104],[-74,-57],[-2,-185],[38,-41],[67,91],[1,2],[3,3],[128,145],[8,34],[49,28],[80,-56],[110,-10],[110,4],[20,14],[197,230],[78,-78],[23,-207],[-34,-145],[-30,-2],[-45,-35],[-75,-111],[-100,-40],[-103,-115],[-66,132],[-88,-17],[-56,12],[-74,-49],[-89,-109],[0,-1],[-66,-83],[-47,12],[-50,-22],[-60,-39],[44,-151],[77,-142],[-30,-122],[-47,-101],[-60,-53],[-41,-107],[-98,-79],[-93,-80],[-88,1],[-118,2],[-91,-65],[-108,-47],[-75,-118],[-71,-111],[-116,-179],[-77,-108],[-78,16],[-101,6],[-85,26],[-78,-37],[-53,-100],[-12,-238],[38,-97],[55,-60],[23,-176],[-34,-169],[-92,-202],[-134,0],[-69,-5],[-16,-174],[-85,-18],[-79,-4],[-72,-63],[-47,-95],[-81,-137],[-62,-158],[-58,-67],[-94,-139],[-161,-5],[-138,-2],[-130,239],[-42,260],[-18,204],[67,66],[59,63],[-11,175],[25,201],[75,83],[79,49],[74,6],[68,58],[57,161],[59,221],[56,116],[80,-33],[53,-24],[130,19],[105,175],[34,224],[71,160],[68,66],[129,30],[111,78],[75,55],[27,120],[85,202],[57,106],[64,153],[94,97],[102,112],[106,22],[108,-57],[71,37],[66,93],[84,165],[31,90],[73,107],[45,179],[99,88],[106,-9],[15,198],[89,89],[42,12],[31,48],[109,42],[51,-12],[5,-72],[-67,-134],[-38,-58],[-27,-113]],[[90710,4455],[248,-176],[143,-165],[1,-1],[55,-76],[49,-140],[16,-172],[69,-158],[3,-152],[-64,-73],[-63,-19],[-93,-9],[-53,11],[-16,5],[-118,19],[-25,4],[-184,134],[-252,396],[-169,403],[61,68],[63,-22],[86,123],[163,0],[2,0],[78,0]],[[89899,5881],[-74,-213],[-41,7],[-335,52],[-34,5],[-45,113],[-38,99],[15,124],[34,52],[35,-19],[93,-3],[269,-9],[48,-24],[73,-184]],[[97737,6919],[1022,-3293],[211,-677],[37,-137],[88,-346],[17,-209],[10,-114],[-2,-200],[-30,-365],[-41,-232],[-64,-315],[-30,-127],[-90,-141],[-76,-97],[-101,-94],[-198,-130],[-71,-52],[-111,-77],[-103,-70],[-90,-57],[-140,-74],[-97,-40],[-110,-28],[-117,-36],[-87,-8],[-84,4],[-71,14],[-87,27],[-86,36],[-84,16],[-219,68],[-117,46],[-147,41],[-155,34],[-163,18],[-70,13],[-141,19],[-243,21],[-102,15],[-165,9],[-123,-34],[-94,-52],[-23,-23],[-1,0],[-249,-93],[-53,-20],[-234,44],[-75,27],[-45,17],[-37,13],[-114,62],[-26,15],[-43,30],[-156,97],[-129,81],[-114,59],[-68,31],[-239,84],[-197,101],[-103,67],[-91,70],[-88,89],[-111,42],[-93,67],[-194,165],[-209,191],[-176,146],[-128,124],[-88,82],[-143,123],[-106,76],[-84,88],[-64,121],[-51,54],[-181,181],[-114,135],[23,63],[112,-72],[102,-41],[109,-72],[5,-117],[114,-131],[118,-45],[95,59],[28,-4],[147,76],[68,135],[114,198],[21,203],[-14,51],[-51,196],[-19,19],[-74,71],[-118,-85],[-135,-54],[31,184],[129,185],[149,94],[454,-163],[143,24],[86,-2],[83,-5],[104,-8],[1262,12],[1,0],[96,12],[114,37],[70,39],[55,14],[18,21],[61,10],[7,1],[238,-249],[94,-98],[1,-22],[3,-58],[1,-18],[-31,-18],[-101,-61],[-17,-231],[51,-110],[132,-287],[135,31],[30,40],[78,104],[24,33],[38,82],[79,81],[52,211],[42,100],[59,75],[70,-104],[68,117],[6,29],[35,323],[157,30],[351,-85],[94,39],[383,388],[65,125],[8,39],[65,61],[0,116],[-191,329],[-27,141],[-4,19],[27,4],[262,44],[177,103],[199,201],[146,122],[109,202],[20,265],[-54,79],[-20,196],[-369,550],[-243,-46],[-116,-436],[-53,-320],[-95,0],[-53,-230],[21,-229],[-74,-23],[-116,0],[-84,-206],[-74,-298],[-137,-138],[-64,-275],[-190,-69],[-74,-183],[-95,-183],[-211,0],[-105,-161],[-85,-367],[-211,276],[591,573],[423,687],[380,734],[253,894],[222,1421],[348,-986]],[[96971,8812],[46,-154],[-129,105],[-97,-27],[-75,97],[-50,112],[-61,163],[-10,123],[4,135],[90,-79],[75,-101],[107,-181],[43,-84],[57,-109]]],"transform":{"scale":[0.00003579946569465664,0.000016488215702156693],"translate":[-73.50796377699987,41.237955536000186]}} diff --git a/src/js/config/mapconfig/mapfiles/county/md-counties.json b/src/js/config/mapconfig/mapfiles/county/md-counties.json new file mode 100644 index 00000000..e61a8c7f --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/md-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-79.48664538499986,37.91512351400007,-75.04946318299994,39.7230291260002],"geometries":[{"type":"Polygon","properties":{"name":"MD"},"id":"24043","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24001","arcs":[[-3,4,5,6]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24023","arcs":[[-6,7]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24015","arcs":[[[8]],[[9,10,11,12]]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24025","arcs":[[[13]],[[14]],[[-12,15,16,17]]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24005","arcs":[[[18]],[[19]],[[-17,20,21,22,23,24,25]]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24013","arcs":[[-25,26,27,28]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24021","arcs":[[-28,29,30,31,-1,32]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24029","arcs":[[[33]],[[34,35,36,-10]]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24510","arcs":[[[37,38]],[[39,40,-22]]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24027","arcs":[[-24,41,42,43,-30,-27]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24031","arcs":[[44,45,-31,-44]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24035","arcs":[[[46]],[[47]],[[48]],[[49,50,51,52,-36]]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24003","arcs":[[[53]],[[54]],[[55,56,57,-42,-23,-41,58,-38,59]]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24011","arcs":[[60,61,62,-51,63]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24033","arcs":[[-58,64,65,66,67,-45,-43]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24041","arcs":[[[68]],[[69]],[[-63,70,-52]]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24009","arcs":[[71,-65,-57]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24019","arcs":[[[72]],[[73]],[[74]],[[75]],[[76,77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86,-61,87,88,89]]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24017","arcs":[[[90]],[[-67,91,92,93]]]},{"type":"Polygon","properties":{"name":"MD"},"id":"24045","arcs":[[94,95,96,-89,97]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24037","arcs":[[[98]],[[99]],[[100]],[[101]],[[102,-93,103]]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24047","arcs":[[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112,113,-95,114]]]},{"type":"MultiPolygon","properties":{"name":"MD"},"id":"24039","arcs":[[[115]],[[116]],[[117,118]],[[119]],[[120]],[[121,122]],[[123]],[[124]],[[125]],[[126]],[[127,-96,-114,128]]]}]},"states":{"type":"GeometryCollection","bbox":[-79.48664538499986,37.91512351400007,-75.04946318299994,39.7230291260002],"geometries":[{"type":"MultiPolygon","properties":{"name":"Maryland"},"id":"24","arcs":[[[115]],[[116]],[[117,118]],[[119]],[[120]],[[121,122]],[[104]],[[105]],[[106]],[[107]],[[123]],[[108]],[[124]],[[72]],[[125]],[[98]],[[126]],[[73]],[[74]],[[99]],[[100]],[[75]],[[76,77]],[[90]],[[78]],[[79]],[[101]],[[109]],[[80]],[[81]],[[82]],[[83]],[[110]],[[111]],[[84]],[[85]],[[68]],[[69]],[[46]],[[53]],[[47]],[[48]],[[33]],[[54]],[[18]],[[13]],[[19]],[[8]],[[14]],[[112,128,127,96,89,86,61,70,52,36,10,15,20,39,58,38,59,55,71,65,91,103,102,93,67,45,31,1,4,7,6,3,32,28,25,17,12,34,49,63,87,97,114]]]}]}},"arcs":[[[45468,99832],[-15,-46],[-2,-15],[-7,-40],[-17,-38],[-31,-94],[-17,-37],[-21,-81],[-27,-52],[-36,-40],[-19,-47],[-24,-37],[-13,-54],[-24,-61],[-21,-32],[-46,-61],[-23,-43],[-22,-27],[-21,-46],[-3,-25],[-8,-64],[-19,-98],[-14,-55],[-15,-44],[-18,-37],[-6,-62],[-7,-77],[-20,-56],[-17,-45],[-17,-51],[-20,-52],[-22,-33],[-23,-18],[-31,-70],[-29,-21],[-27,-23],[-62,-13],[-23,-8],[-25,-38],[-23,-45],[-14,-45],[-18,-57],[-16,-48],[-21,-52],[139,-1],[56,0],[44,-22],[31,-89],[2,-7],[40,-134],[29,-97],[8,-73],[-16,-61],[-24,-38],[-28,-80],[-11,-47],[-12,-67],[-3,-92],[-17,-74],[-31,-60],[-69,-76],[-53,-76],[-5,-67],[6,-78],[-31,-56],[-36,-66],[-66,-164],[-25,-87],[-28,-113],[-10,-85],[0,-79],[-18,-60],[-29,-62],[-18,-40],[-15,-72],[-10,-54],[-21,-76],[-35,-101],[-31,-71],[-24,-34],[-28,-41],[-22,-42],[-31,-33],[-18,-45],[4,-36],[3,-31],[-18,-62],[-34,-79],[-28,-54],[-27,-27],[-23,-12],[-37,-3],[-41,24],[-22,24],[-25,36],[-31,27],[-39,19],[-39,5],[-27,-1],[-41,-16],[-32,-34],[-23,-42],[-14,-53],[-12,-67],[-14,-109],[-9,-66],[-17,-73],[-24,-22],[-35,-18],[-23,-17],[-40,-15],[-27,-23],[-30,-24],[-7,-6],[-21,-20],[-230,-149],[-32,-143],[-16,-102],[-25,-108],[-24,-90],[-19,-77],[-20,-146],[-7,-68],[-16,-101],[-4,-73],[-8,-109],[-4,-156],[-14,-90],[-11,-48],[-17,-118],[-28,-135],[-9,-71],[-12,-93],[-14,-73],[-22,-70],[-22,-82],[-17,-77],[10,-66],[3,-76],[-22,-297],[-12,-70],[-10,-129],[-26,-77],[-12,-67],[-12,-73],[-29,-76],[-28,-70],[-42,-50],[-26,-47],[-1,-64],[15,-55],[-16,-124],[3,-76],[1,-110],[-2,-66],[-9,-84],[-14,-66],[-43,-83],[-22,23],[-23,-28],[3,-62],[14,-66],[-1,-61],[10,-78],[0,-73],[16,-48],[10,-67],[-15,-66],[-46,-49],[-40,-7],[-25,-25],[-24,-48],[-22,-53],[-22,-32],[-1,-5],[-13,-41],[-2,-7],[-23,-33],[-20,-44],[-22,-66],[-16,-67],[-9,-56],[-16,-58],[-33,-9],[-16,-43],[2,-67],[-19,-68],[-18,-40],[3,-61],[8,-75],[-11,-76],[-19,-43],[-19,-58],[-18,-34],[-19,-63],[-7,-80],[-13,-53],[-15,-88],[-16,-81],[10,-57],[-12,-50],[-18,-41],[-14,-54],[-13,-72],[19,-70],[17,-61],[-7,-84],[-11,-50],[-22,-69],[-11,-54],[1,-56],[60,-150],[31,-74],[35,-83],[43,-94],[27,-74],[-13,-72],[-18,-52],[-36,-105],[-26,-78],[-22,-52],[-22,-31],[-2,-4],[-22,-44],[-9,-69],[29,-249],[44,-102],[16,-67],[4,-72],[25,-155],[6,-56],[10,-52],[-55,-142],[-31,-30],[-26,-34],[-17,-60],[-5,-69],[5,-68],[-2,-78],[-23,-48],[-36,-43],[-18,-40],[-36,-33],[-6,-80],[-21,-116],[-12,-112],[20,-74],[15,-49],[-14,-47],[-37,7],[-36,-26],[-19,-34],[-29,-20],[-29,-58],[-12,-68],[3,-78],[-19,-108],[-10,-63],[-23,-102],[-16,-118],[-5,-59],[2,-93],[2,-86],[-13,-98],[3,-110],[10,-82],[-4,-55],[4,-57],[-18,-61],[11,-52],[-15,-90],[-2,-58],[-7,-77],[-15,-101],[-22,-59],[-4,-60],[4,-75],[2,-68],[6,-69],[8,-137],[16,-59],[-15,-80],[0,-63],[-3,-65],[-6,-58],[-20,-92],[-6,-68],[-15,-85],[-18,-72],[-18,-118],[-24,-118],[-10,-64],[-17,-60],[-9,-90],[-13,-80],[-6,-112],[-11,-64],[-9,-65],[-26,-97],[-20,-99],[-11,-110],[-18,-123],[-18,-72],[-21,-65],[-24,-68],[-22,-114],[-19,-53],[-17,-45],[-18,-35],[-25,-84],[-16,-48],[-18,-49],[-13,-71],[-15,-83],[-15,-82],[-13,-47],[-20,-77],[-20,-86],[-10,-56],[-25,-147],[-17,-67],[-22,-56],[-51,-135],[-23,-62],[-19,-48],[-23,-34],[-21,-89],[-14,-149],[-12,-98],[-24,-381],[-4,-73],[-7,-92],[-2,-23],[-5,-207]],[[40784,77959],[-121,-67],[-60,-95],[-69,-110],[-90,-64],[-113,7],[-178,118],[-114,15],[-26,3],[-144,-2],[-20,-24],[-83,44],[-45,6],[-83,43],[-21,59],[-3,6],[-32,60],[-7,13],[-66,95],[-27,34],[-38,28],[-112,78],[-53,44],[-53,57],[-39,41],[-36,44],[-29,39],[-31,13],[-45,10],[-32,27],[-39,76],[-9,18],[-38,95],[-22,85],[-12,50],[-4,63],[5,90],[14,91],[40,86],[14,21],[32,40],[13,14],[110,105],[33,49],[32,65],[29,73],[35,79],[2,72],[12,96],[22,172],[3,81],[0,80],[-8,106],[-13,65],[-15,45],[-16,53],[-29,94],[-19,69],[-16,56],[-19,90],[-18,75],[-12,53],[-19,61],[-31,89],[-12,72],[1,87],[16,76],[19,41],[50,42],[41,19],[50,16],[110,33],[40,22],[27,28],[18,32],[19,43],[9,52],[3,64],[-4,87],[-7,80],[-11,56],[-17,127],[-12,67],[-11,93],[-14,64],[-16,91],[-14,64],[-33,84],[-25,65],[-57,168],[-15,44],[-25,86],[-27,129],[-23,96],[-18,80],[-12,58],[-17,63],[-12,55],[-14,76],[-3,125],[-36,78],[-47,61],[-44,58],[-36,40],[-68,50],[-47,7],[-48,-14],[-48,-9],[-65,-15],[-66,3],[-107,72],[-24,4],[-94,-9],[-40,10],[-77,48],[-49,27],[-38,29],[-38,39],[-25,33],[-8,11],[-4,4],[-22,31],[-44,68],[-24,47],[-19,40],[0,1],[-13,54],[9,119],[21,49],[23,35],[35,25],[39,12],[79,20],[52,14],[30,11],[41,28],[34,32],[25,47],[11,63],[-12,101],[-19,37],[-33,52],[-65,85],[-41,59],[-72,157],[-52,132],[-15,97],[18,126],[30,42],[73,28],[65,-14],[162,-94],[37,-10],[38,4],[29,29],[29,66],[3,68],[-16,47],[-48,54],[-49,43],[-59,41],[-95,92],[-44,50],[-24,31],[-21,28],[-46,81],[-25,66],[-19,92],[-12,70],[-4,66],[12,121],[24,96],[27,73],[79,99],[30,31],[48,49],[31,26],[103,75],[82,50],[117,51],[46,28],[59,59],[24,31],[21,27],[35,94],[3,76],[-13,73],[-31,73],[-33,54],[-20,29],[-28,30],[-57,23],[-35,-6],[-104,-5],[-44,-13],[-32,-22],[-32,-33],[-21,-32],[-26,-49],[-18,-47],[-54,-196],[-24,-53],[-28,-31],[-26,-22],[-1,-1],[-3,-2],[-13,-9],[-38,-25],[-49,-11],[-91,-2],[-45,9],[-90,38],[-62,37],[-41,31],[-80,75],[-36,25],[-14,7],[-25,12],[-34,15],[-27,9],[-59,-17],[-21,-22],[-2,0],[-12,-2],[-22,-2],[-107,81],[-237,163],[-73,52],[-22,50],[-23,64],[-11,78],[12,69],[27,79],[29,59],[49,66],[109,129],[97,153],[49,61],[58,66],[55,88],[22,48],[11,67],[36,331],[-1,68],[-10,63],[-9,54],[-21,97],[-19,39],[-22,31],[-57,60],[-57,48],[-29,13],[-53,-11],[-27,-18],[-43,-53],[-3,-7],[-32,-101],[-3,-100],[-3,-57],[3,-197],[1,-103],[-10,-75],[-19,-62],[-43,-48],[-42,-39],[-84,-70],[-30,-12],[-213,-60],[-42,14],[-36,25],[-40,80],[-21,116],[-3,81],[0,117],[4,80],[4,62],[26,226],[9,134],[-2,74],[2,70],[6,54],[-3,58],[-2,37],[-18,103],[-5,13],[-16,46],[-92,210],[-42,80],[-56,59],[-37,41],[-35,48],[-37,59],[-30,40],[-102,112],[-23,42],[-22,60],[-28,105],[-6,110],[6,63],[32,95],[1,3],[23,33],[44,51],[78,83],[52,36],[37,17],[62,14],[44,-11],[31,-4],[27,-8],[25,3],[24,-6],[25,-3],[23,4],[23,7],[26,3],[25,7],[6,6],[50,18],[27,3],[24,6],[30,5],[31,1],[23,-1],[23,-10],[28,-11],[25,6],[30,-1],[4,0],[28,1],[31,-2],[28,-1],[28,5],[29,-2],[29,11],[24,25],[37,24],[35,43],[22,48],[16,54],[2,8],[13,53],[12,49],[12,55],[-3,58],[4,65],[3,26],[5,33],[3,34],[3,33],[3,61],[10,50],[7,61],[11,79],[9,62],[-3,58],[1,56],[10,63],[2,13],[7,50],[4,70],[2,59],[-1,62],[0,76],[-1,61],[-3,60],[-4,54],[-7,63],[-6,60],[-8,54],[-6,68],[-1,59],[-5,54],[-1,3],[-3,59],[-18,41],[-14,45],[-22,41],[-25,44],[-26,46],[-21,38],[-20,28],[-28,17],[-29,19],[-26,14],[-30,6],[-27,-6],[-30,-8],[-23,-5],[-26,8],[-28,2],[-30,0],[-33,0],[-32,3],[-31,9],[-28,13],[-26,13],[-27,16],[-29,15],[-24,14],[-22,14],[-29,18],[-22,26],[-24,27],[-27,17],[-23,13],[-22,18],[-22,32],[-27,19],[-28,24],[-25,37],[-23,32],[-20,39],[-59,14],[-97,52],[-84,11],[-37,-64],[1,-66],[26,-72],[62,-135],[25,-81],[19,-105],[2,-61],[-3,-170],[-25,-146],[-21,-34],[-2,-3],[-3,-3],[-10,-16],[-29,-26],[-53,-28],[-22,-4],[-43,11],[-36,15],[-24,9],[-45,26],[-50,35],[-47,47],[-33,25],[-30,16],[-66,8],[-60,32],[-37,42],[-33,25],[-25,8],[-58,0],[-43,4],[-46,29],[-34,21],[-42,37],[-51,57],[-20,58],[-31,99],[-18,85],[-19,154],[-17,73],[-52,132],[-34,64],[-32,47],[-36,35],[-32,19],[-45,4],[-51,-22],[-30,-36],[-22,-32],[-18,-35],[-8,-91],[31,-72],[17,-10],[46,-17],[37,-44],[21,-51],[40,-117],[15,-114],[4,-187],[-7,-127],[-1,-113],[-5,-103],[-8,-186],[-15,-181],[-11,-81],[-16,-77],[-15,-48],[-19,-63],[-37,-65],[-2,-4],[-1,-1],[-11,-20],[-23,-21],[-51,-2],[-48,37],[-19,31],[-28,34],[-15,66],[-46,280],[-5,63],[4,220],[23,173],[10,91],[-2,80],[-5,58],[-15,53],[-22,42],[-32,47],[-26,21],[-67,38],[-23,7],[-37,-4],[-28,-10],[-98,-67],[-29,-31],[-31,-46],[-17,-42],[-23,-52],[-23,-65],[-46,-115],[-22,-37],[-26,-27],[-197,-27],[-125,38],[-24,5],[-38,12],[-71,6],[-31,7],[-28,4],[-16,8],[-9,4],[-6,-3],[-22,-12],[-24,-10],[-48,23],[-30,10],[-22,14],[-23,42],[-27,20],[-27,32],[-26,58],[-35,121],[-27,85],[-15,61],[-19,65],[-26,97],[-37,112],[-23,80],[-40,110],[-29,123],[-3,11],[-29,109],[-49,170],[-18,39],[-50,105],[-34,93],[-39,109],[-16,69],[-60,190],[-70,179],[-26,90],[-37,71],[-65,95],[-42,47],[-25,46],[-27,70],[-27,113],[-25,96],[-28,82],[-47,98],[-88,140],[-38,75],[-100,167],[-108,202],[-103,166],[-37,51],[-48,43],[-3,2],[0,3],[-8,33],[-97,102],[-33,14],[-90,80],[-52,79],[-23,31],[-18,35],[-32,44],[-82,125],[-2,2],[-4,4],[-45,46],[-1,1],[-131,122],[-27,25],[-48,45],[-202,85],[-159,66],[-2,1],[-1,1],[-29,15],[-2,2],[-4,3],[-3,2],[-76,75],[-70,47],[-45,33],[-42,24],[-44,14],[-47,29],[-36,22],[-122,75],[-79,2],[-46,2],[-39,4],[-24,0],[-67,39],[-13,38],[-59,21],[-147,87],[-110,36],[-27,-26],[-75,34],[-48,15],[-35,-1],[-44,-27],[-74,-82],[-25,-28],[-66,-56],[-39,-77],[-2,-3],[-3,-6],[-2,-7],[-3,-7],[-2,-5],[-27,-83],[-17,-52],[-1,-3],[-2,-8],[-2,-8],[-1,-2],[-43,-190],[-50,-146],[-77,-179],[-14,-24],[-28,-17],[-31,-7],[-51,-3],[-32,-3],[-99,-6],[-69,-5],[-71,-3],[-30,-1],[-3,0],[-1,0],[-51,-10],[-4,-1],[-69,-23],[-3,-1],[-3,-2],[-81,-49],[-2,-1],[-3,-3],[-3,-2],[-13,-13],[-1,-1],[-4,-4],[-4,-5],[-3,-5],[-3,-5],[-3,-7],[-3,-6],[-3,-7],[-2,-8],[-1,-2],[-19,-63],[-2,-6],[-2,-9],[-2,-8],[-2,-9],[-1,-9],[-1,-10],[-1,-9],[0,-5],[-4,-57],[-1,-6],[0,-9],[0,-10],[0,-10],[0,-9],[1,-10],[1,-10],[1,-7],[9,-67],[0,-2],[1,-10],[2,-8],[2,-9],[2,-8],[2,-8],[3,-8],[2,-7],[3,-5],[30,-68],[1,-1],[2,-5],[132,-256],[11,-37],[0,-2],[-11,-50],[-49,-90],[-183,-230],[-1,-2],[-22,-29],[-1,0],[-34,-47],[-2,-2],[-3,-5],[-3,-5],[-43,-80],[-82,-148],[-2,-2],[-2,-6],[-54,-113],[-63,-97],[-2,-3],[-1,-2],[-48,-83],[-27,-26],[-39,-91],[-19,-48],[-26,-77],[-52,-152],[-50,-160],[-24,-80],[-22,-98],[-4,-19],[-5,-26],[-6,-37],[-5,-73],[-3,-75],[2,-128],[-3,-72],[-9,-48],[-14,-27],[-34,-28],[-34,-10],[-60,10],[-130,51],[-81,45],[-103,46],[-64,22],[-37,20],[-38,34],[-50,35],[-16,6],[-191,164],[-86,86],[-44,44],[-16,-2],[-111,110],[-71,73],[-34,38],[-278,94],[-48,50]],[[25980,95250],[-6,67],[-4,59],[14,62],[-13,51],[-10,8],[-44,42],[-58,41],[-10,7],[-15,6],[-8,4],[-30,24],[-3,5],[-7,13],[-69,211],[-9,33],[-2,21],[0,4],[3,13],[2,3],[11,18],[5,-1],[36,-13],[7,-2],[50,-43],[5,-4],[11,8],[10,95],[4,49],[1,6],[0,2],[-1,25],[-8,28],[-8,17],[-42,27],[-105,67],[-17,9],[-21,4],[-65,11],[-42,20],[-190,164],[-8,9],[-5,6],[-1,1],[-20,62],[-5,33],[1,10],[6,15],[17,17],[7,-6],[43,-36],[29,-14],[38,-18],[12,-6],[181,66],[92,58],[15,20],[6,8],[24,46],[31,38],[26,23],[19,0],[42,-32],[37,-36],[20,0],[9,6],[14,24],[5,21],[6,57],[2,56],[0,1],[0,4],[-3,18],[-6,20],[-49,166],[-12,40],[-3,6],[-3,6],[-44,54],[-42,65],[-5,9],[-56,110],[-5,14],[-2,17],[0,26],[12,44],[4,16],[34,66],[54,86],[32,37],[16,5],[9,-3],[22,-6],[34,-31],[79,-72],[34,-40],[14,-24],[3,-11],[3,-7],[7,-4],[17,-11],[23,-1],[77,0],[11,-1],[15,82],[7,34],[4,17],[1,149],[-18,11],[-4,2],[-24,55],[-4,8],[-1,46],[16,28],[10,10],[8,2],[18,-7],[34,-36],[18,-22],[24,-17],[14,1],[9,10],[15,22],[19,49],[0,1],[-1,26],[-1,7],[-3,17],[-10,19],[-27,28],[-23,15],[-24,7],[-40,3],[-21,13],[-17,19],[-22,48],[0,23],[6,17],[22,22],[80,-26],[30,4],[17,13],[52,96],[0,1],[2,4],[10,34],[0,1],[0,41],[0,3],[-5,23],[-11,21],[0,1],[-8,7],[-16,-3],[-21,-14],[-3,-3],[-1,1],[-18,9],[-2,2],[-33,49],[-3,7],[-9,20],[0,1],[-1,2],[-9,35],[-2,23],[0,11],[0,4],[6,25],[29,67],[13,40],[6,33],[0,2],[3,18],[0,4],[1,14],[-16,170],[-3,18],[-26,157],[-30,24],[-122,96],[-67,58],[-5,5],[-123,27],[15,148],[12,-14],[10,-13],[17,-15],[28,-18],[15,4],[7,9],[12,39],[-12,44],[-68,264],[-15,55],[-1,5],[-8,21],[-8,7],[-29,12],[-3,-2],[-6,-3],[-11,-23],[-1,-2],[-14,-48],[-7,-24],[-15,-63],[-28,-50],[-25,8],[-26,31],[-31,36],[-26,62],[-9,61],[-18,51],[-13,52],[25,27],[26,-11],[21,35]],[[25779,99957],[46,6],[2,-3],[1,0],[7,1],[4,1],[2,2],[1,1],[1,0],[3,2],[3,0],[22,-3],[14,-2],[19,0],[17,-3],[72,1],[35,5],[23,10],[27,1],[183,10],[17,1],[33,1],[39,1],[53,1],[12,-1],[13,0],[76,-1],[79,-1],[34,-1],[10,0],[9,0],[108,-2],[72,-1],[10,0],[91,-2],[28,0],[31,-1],[37,0],[46,-1],[96,-2],[39,-1],[26,0],[114,-1],[99,-5],[3,0],[198,5],[122,3],[41,1],[73,1],[104,-6],[6,-1],[12,-3],[16,-3],[6,-2],[38,-1],[30,0],[61,10],[10,0],[263,-2],[24,-1],[30,0],[120,-2],[8,0],[91,-1],[201,-3],[1,-1],[0,-2],[13,0],[7,0],[18,-2],[5,1],[22,4],[13,-1],[46,0],[16,0],[301,0],[7,0],[5,0],[57,0],[47,0],[63,-1],[23,0],[65,-1],[37,0],[1,0],[195,-1],[317,-2],[7,0],[182,-1],[63,-1],[4,0],[47,0],[28,0],[67,-1],[39,0],[84,0],[29,-1],[55,-1],[190,-5],[1,0],[319,-2],[68,1],[211,4],[87,3],[91,3],[96,0],[1,0],[9,0],[9,0],[4,0],[222,4],[5,0],[26,1],[18,0],[44,1],[75,-2],[60,-1],[113,-3],[24,0],[22,0],[65,0],[3,0],[284,3],[100,1],[27,1],[42,0],[33,0],[172,1],[329,0],[6,0],[95,0],[190,0],[54,-1],[109,0],[73,0],[111,0],[87,0],[31,0],[234,-2],[16,0],[32,0],[84,0],[64,0],[120,-1],[30,0],[52,0],[18,0],[47,0],[136,0],[141,-2],[103,-1],[56,-1],[58,-1],[72,-1],[183,0],[105,2],[91,-5],[58,-1],[151,2],[201,2],[15,-4],[48,-1],[156,-4],[256,-3],[153,-2],[159,-3],[295,-4],[555,-5],[85,-1],[75,-2],[103,-4],[23,-1],[58,-3],[35,-2],[87,-3],[106,-2],[199,-4],[242,-5],[54,-1],[14,0],[38,0],[223,-2],[34,-4],[25,-2],[58,0],[45,0],[33,0],[44,0],[3,0],[76,5],[42,-3],[25,-2],[30,-7],[14,0],[65,-2],[103,5],[32,1],[365,-3],[460,-5],[5,0],[89,-3],[51,-4],[29,-3],[32,-3],[4,0],[349,-1],[296,-4],[45,-1],[317,-4],[86,2],[74,1],[80,0],[134,-1],[38,-1],[25,-2],[1,0],[70,0],[124,0],[76,-1],[88,-1],[82,0],[95,0],[72,-2],[48,-1],[38,0],[62,1],[96,1],[3,0],[42,-2],[317,-7],[164,-5],[16,0],[34,-1],[29,-1],[41,0],[26,0],[85,3],[156,-7],[32,-1],[59,0],[133,-3],[58,-1],[75,-1],[93,0],[3,0],[20,-1],[17,-1],[35,-1],[24,0],[10,0],[56,2],[56,2],[41,0],[87,2],[67,1],[54,-1],[65,0],[37,1],[48,0],[11,0],[18,0],[43,1],[17,0],[47,-1],[50,0],[48,0]],[[25980,95250],[-46,32],[-171,130],[-160,85],[-51,26],[-41,-8],[-48,-46],[-27,-50],[-32,-58],[-9,-123],[12,-66],[8,-49],[30,-90],[25,-78],[22,-70],[2,-65],[-27,-70],[-63,-59],[-45,-4],[-76,31],[-15,14],[-3,3],[-55,77],[-37,53],[-118,34],[-118,-57],[-56,-64],[-21,-92],[-15,-156],[-1,-19],[0,-4],[0,-19],[15,-76],[56,-160],[113,-229],[19,-28],[54,-121],[-105,-199],[-124,37],[-94,82],[-97,118],[-39,70],[-36,90],[-33,47],[-179,133],[-133,102],[-31,25],[-175,145],[-38,28],[-66,23],[-49,-4],[-72,-38],[-53,-73],[-50,-124],[-9,-95],[11,-116],[44,-163],[96,-244],[19,-70],[89,-220],[17,-42],[65,-107],[120,-190],[80,-105],[123,-127],[39,-28],[35,-124],[59,-112],[30,-70],[15,-58],[2,-60],[-2,-57],[-8,-43],[-17,-39],[-11,-25],[-15,-22],[-46,-61],[-67,-40],[-38,-7],[-34,0],[-120,-6],[-112,44],[-30,32],[-33,47],[-33,64],[-37,72],[-22,43],[-75,76],[-56,47],[-8,-4],[-78,48],[-42,29],[-10,18],[-126,93],[-73,25],[-58,-15],[-88,-46],[-120,-148],[-15,-31],[-23,-195],[-1,-120],[9,-136],[5,-30],[69,-249],[97,-202],[41,-78],[29,-10],[108,-129],[48,-80],[54,-110],[16,-27],[33,-40],[140,-119],[41,-35],[28,-24],[44,-85],[86,-234],[36,-90],[38,-147],[-7,-75],[-11,-31],[-49,-75],[-39,-14],[-26,9],[-44,50],[-39,92],[-47,177],[-43,100],[-53,32],[-1,1],[-75,26],[-45,-69],[-16,-121],[12,-67],[13,-49],[5,-46],[17,-87],[18,-126],[8,-86],[-14,-62],[-29,-16],[-33,0],[-29,30],[-114,328],[-33,82],[-33,54],[-58,62],[-24,16],[-133,32],[-35,-16],[-40,-57],[-9,-88],[8,-73],[29,-14],[41,-21],[88,-87],[34,-61],[4,-7],[64,-41],[16,-20],[18,-48],[4,-37],[-12,-18],[-11,-23],[-25,-35],[-26,-42],[-42,-59],[-34,12],[-13,4],[-60,0],[-16,-8],[-52,-67],[-14,-30],[-20,-84],[-7,-68],[12,-103],[20,-63],[6,-128],[-37,-473],[-28,-81],[-24,-39],[-23,-31],[-31,-33],[-10,-9],[-26,-20],[-29,-10],[-52,4],[-170,249],[-61,6],[-123,-28],[-97,-25],[-55,-10],[-109,28],[-102,69],[-148,132],[-118,111],[-83,-11],[-54,-2],[-129,-41],[-101,-10],[-63,-10],[-115,0],[-63,-48],[-84,-54],[-31,-22],[-25,-18],[-87,15],[-67,2],[-95,-45],[-25,-18],[-34,-18],[-28,11],[-61,77],[-111,149],[-78,91],[-5,7],[-40,30],[-28,24],[-104,73],[-51,66],[-58,93],[-29,63],[-10,57],[15,60],[0,7],[3,30],[2,18],[-12,32],[-12,25],[-19,7],[-50,-11],[-41,-15],[-41,1],[-56,-20],[-43,-58],[-28,-48],[-18,-7],[-21,-3],[-33,50],[-149,129],[-141,98],[-95,26],[-85,-13],[-14,-6],[-5,-3],[-15,-2],[-71,-18],[-35,-66],[-10,-15],[-45,-12],[-57,5],[-73,3],[-89,-13],[-55,-12],[-39,-5],[-21,-6],[-82,-129],[-59,34],[-36,28],[-28,17],[-22,10],[-52,35],[-27,37],[-74,154],[0,1],[-4,2],[-23,16],[-50,29],[-47,37],[-50,46],[-47,70],[-54,80],[-77,56],[-85,57],[-27,26],[-33,30],[-25,50],[-10,50],[-7,46],[-1,1],[-34,88],[-13,32],[-7,8],[-31,33],[-22,14],[-50,31],[-91,98],[-19,18],[-58,54],[-15,26],[-27,57],[-21,38],[-42,83],[-45,72],[-5,-24],[-51,41],[-31,10],[-29,4],[-31,8],[-29,6],[-31,-7],[-23,0],[-28,24],[-12,57],[14,102],[-54,230],[-16,68],[0,2],[-2,9],[-3,8],[-2,7],[-3,7],[-3,7],[-1,2],[-38,79],[-25,83],[-18,126],[-1,28],[-3,182],[0,5],[0,10],[-1,9],[0,6],[-7,66],[0,4],[-1,10],[-2,9],[-1,9],[-1,4],[-20,89],[0,2],[-10,39],[-11,2],[-14,2],[-27,-7],[-7,-12],[-7,2],[-24,5],[-40,-9],[-3,0],[-26,-34],[-56,-191],[-10,-71],[-7,-13],[-17,-22],[-23,-19],[-27,0],[-35,34],[-57,64],[-26,16],[-28,-11],[-46,-52],[0,-1],[-1,1],[-31,8],[-42,41],[-87,120],[-5,7],[-1,4],[-26,93],[-20,3],[-33,58],[-2,4],[-27,72],[-12,74],[1,8],[3,26],[-5,72],[-12,51],[-25,98],[0,4],[-1,1],[-27,72],[-17,48],[-21,18],[-21,17],[-4,10],[-14,32],[-10,25],[-6,16],[-4,13],[-12,42],[-2,65],[7,41],[12,53],[32,112],[14,37],[5,5],[22,10],[40,46],[31,81],[39,50],[86,33],[93,25],[96,16],[65,-22],[24,-29],[18,-42],[5,-100],[15,-40],[20,-28],[22,-8],[185,230],[7,24],[88,287],[-2,23],[-9,79],[-20,114],[-40,127],[-20,33],[-8,13],[-82,77],[-150,95],[-16,10],[-12,7],[-6,4],[-75,-72],[-17,-20],[-52,-67],[-47,-89],[-77,-100],[-16,-9],[-26,20],[-17,20],[-24,6],[-14,0],[-22,-12],[-23,10],[-16,18],[-10,47],[-33,14],[-15,8],[-10,-3],[-31,29],[-42,-4],[3,212],[24,123],[37,168],[22,105],[34,138],[84,293],[3,69],[11,315],[-31,-29],[-29,-26],[-42,-39],[-4,-4],[-2,-4],[-3,-4],[-71,-89],[-23,-29],[-58,-263],[0,-3],[-3,-9],[-2,-8],[-2,-7],[-3,-7],[-3,-7],[-3,-6],[-41,-77],[-3,-6],[-3,-5],[-4,-4],[-4,-4],[-3,-4],[-4,-3],[-4,-2],[-60,-28],[-3,-1],[-4,-1],[-4,0],[-2,0],[-60,4],[-2,0],[-4,1],[-3,2],[-84,40],[-42,-14],[-17,-19],[-20,-21],[-35,-117],[-13,-197],[-52,-57],[-13,-14],[-6,-62],[1,-29],[56,-357],[14,-88],[0,-1],[1,-6],[1,-9],[1,-9],[1,-10],[0,-3],[2,-41],[4,-92],[0,-2],[23,-168],[8,-192],[-18,-142],[-24,-55],[-16,-16],[-64,63],[-5,5],[-2,-4],[-12,-23],[-3,-5],[-4,-6],[-3,-4],[-4,-4],[-2,-2],[-15,-14],[-2,-2],[-4,-3],[-4,-2],[-4,-1],[-3,-1],[-2,-1],[-8,0],[-1,0],[-2,-1],[-4,1],[-4,1],[-1,0],[-35,13],[-2,1],[-4,3],[-4,2],[0,1],[-35,31],[-5,-3],[-20,-11],[-1,-1],[-36,-156],[-25,-133],[5,-107],[-5,-47],[-31,-56],[-58,-96],[-29,-48],[-9,-35],[-18,-72],[-1,-5],[-3,-8],[-2,-7],[-3,-7],[-3,-7],[-3,-6],[-2,-5],[-46,-78],[-3,-5],[-30,-50],[-30,-51],[-3,-10],[-19,-145],[2,-112],[15,-286],[1,0],[4,-4],[3,-5],[1,-1],[18,-27],[3,-4],[3,-6],[3,-6],[3,-7],[1,-2],[3,-8],[7,-10],[79,-112],[99,-253],[2,-14],[1,-24],[2,-24],[13,-42],[-2,-37],[-4,-53],[-1,-22],[-1,-21],[-39,-140],[-25,-61],[-5,-19],[-15,-19],[-67,-33],[-26,9],[-23,29],[-99,94],[-13,13],[-4,-2],[-4,-1],[-4,0],[-1,0],[-33,2],[-3,0],[-1,1],[-57,12],[-3,1],[-3,2],[-43,20],[-4,2],[-3,2],[-56,44],[-19,8],[-10,2],[-8,-1],[-58,-68],[-23,-27],[-30,-33],[-49,3],[-20,-14],[-14,-21],[-78,-110],[-13,-58],[8,-38],[0,-3],[0,-9],[-4,-270],[-9,-79],[-156,-438],[-55,-136],[-21,-28],[-34,4],[-37,-36],[-12,-29],[-107,-260],[-7,-15],[28,-78],[2,-140],[-49,-173],[-72,-253],[-27,-78],[-26,-17],[-21,-3],[-49,27],[-42,30],[-113,74],[-8,-6],[-26,-21],[-2,-1],[-57,-41],[-6,-8],[-2,-5],[0,-1],[0,-6],[15,-160],[6,-71],[0,-3],[1,-10],[0,-7],[1,-32],[2,-52],[0,-2],[0,-10],[0,-9],[0,-10],[-1,-10],[-1,-9],[0,-3],[-4,-28],[0,-6],[-2,-10],[-1,-8],[-2,-9],[-2,-8],[-3,-8],[-2,-8],[-2,-4],[-4,-12],[-5,-12],[-1,-3],[-3,-7],[-3,-6],[-3,-6],[-4,-5],[-3,-3],[-8,-11],[-9,-11],[-58,-74],[-1,-1],[-4,-4],[-4,-3],[-1,-1],[-21,-17],[-3,-2],[-4,-2],[-3,-1],[-4,-1],[-4,-1],[-2,0],[-25,2],[-3,0],[-2,1],[-22,5],[-44,6],[-12,2],[-7,-4],[-23,-30],[-5,-6],[-2,-4],[24,-178],[1,-71],[-16,-121],[-33,-143],[-13,-34],[-22,-95],[-41,-112],[-93,-109],[-13,-52],[-15,-149],[-18,-113],[-30,-117],[-17,-22],[-65,29],[-84,35],[-3,-7],[0,-1],[-2,-7],[-3,-7],[-3,-7],[-3,-6],[-2,-3],[-25,-45],[-2,-2],[-3,-5],[-3,-5],[-4,-4],[-4,-4],[-3,-2],[-33,-23],[-1,-1],[-4,-2],[-3,-1],[-88,-31],[-17,-12],[-36,-33],[-35,-38],[-62,-79],[-44,-80],[0,-6],[8,-166],[1,-25],[-49,-418],[-9,-36],[-2,-7],[0,-1],[-2,-8],[-3,-8],[-3,-7],[-20,-51],[-3,-6],[-3,-7],[-4,-5],[-3,-5],[-20,-29],[-3,-5],[-4,-4],[-4,-3],[-1,-1],[-111,-87],[-29,-22],[-75,-59],[-27,-23],[-16,-27],[-5,-20],[-3,-16],[-1,-80],[0,-4],[4,-12],[17,-49],[64,-193],[-3,-70],[-81,-73],[0,-2],[0,-4],[0,-4],[1,-27],[1,-6],[0,-10],[0,-9],[-1,-10],[0,-10],[-1,-9],[-2,-10],[-1,-9],[0,-2],[-4,-23],[-7,-38],[59,-89],[9,-28],[2,-25],[9,-253],[-3,-53],[-21,-38],[-106,-20],[-65,-19],[-40,-50],[-50,129],[-1,2],[-7,30],[-4,3],[-27,25],[-23,13],[-45,0],[-26,33],[-136,175],[-71,92],[-123,92],[-53,86],[-110,179],[-61,48],[-49,65],[-72,81],[-29,43],[-42,44],[-44,64],[-14,21],[-21,32],[-60,88],[-85,124],[-47,27],[-81,-59],[-73,-44],[-68,-5],[-77,32],[-62,146],[-28,189],[-33,211],[-22,130],[-62,97],[-13,38],[-40,113],[-19,3],[-63,7],[-3,0],[-14,-1],[-35,-33],[-6,-4],[-12,-17],[-10,-15],[-3,-6],[-24,-76],[-24,-124],[-1,-14],[0,-2],[-10,-85],[-2,-22],[-40,-102],[-39,-8],[-47,-9],[-22,20],[-22,18],[-13,76],[-9,124],[-4,65],[-16,21],[-44,59],[-17,23],[-28,41]],[[9445,86560],[20,65],[5,24],[7,38],[37,186],[12,58],[33,170],[13,72],[62,304],[106,531],[89,356],[181,730],[19,106],[76,306],[17,75],[37,161],[44,202],[13,60],[19,83],[14,64],[17,70],[88,364],[86,363],[79,330],[13,58],[15,54],[13,60],[70,297],[61,267],[100,460],[22,101],[27,100],[24,112],[11,57],[31,147],[11,55],[26,126],[16,67],[14,63],[41,198],[25,118],[61,253],[65,274],[96,436],[119,520],[214,947],[67,280],[130,559],[34,150],[4,16],[81,342],[2,5],[194,888],[49,222],[14,56],[14,64],[15,64],[30,114],[45,178],[17,65],[63,252],[27,132],[31,103],[107,446]],[[12518,99984],[51,1],[97,1],[23,0],[57,0],[1,0],[77,1],[55,0],[97,1],[176,1],[137,0],[164,1],[90,1],[307,2],[224,2],[26,0],[72,1],[36,1],[57,-2],[79,1],[103,0],[5,0],[50,-1],[43,0],[36,-1],[36,0],[154,-1],[90,0],[65,-1],[62,0],[90,0],[49,-1],[85,2],[45,-1],[29,0],[64,0],[33,0],[107,1],[54,0],[26,0],[141,-1],[113,0],[27,0],[6,0],[25,1],[50,1],[45,0],[3,0],[7,1],[21,0],[21,0],[15,1],[23,0],[27,2],[11,-1],[17,0],[7,0],[39,0],[6,-1],[1,0],[1,0],[2,0],[77,-3],[313,2],[142,1],[60,0],[9,0],[132,3],[146,0],[99,0],[47,-1],[26,-1],[31,-3],[37,0],[48,-1],[41,0],[91,-1],[34,-1],[69,0],[4,0],[64,2],[74,3],[9,0],[102,-2],[49,-1],[24,-1],[7,0],[37,1],[30,0],[3,0],[17,1],[7,-1],[2,0],[48,0],[103,0],[59,0],[93,0],[34,0],[38,0],[25,0],[40,2],[47,2],[173,-7],[74,2],[106,1],[176,0],[65,0],[28,0],[29,0],[89,-1],[30,0],[158,2],[27,-1],[181,-5],[88,-3],[31,-1],[280,-6],[123,-3],[27,0],[13,-1],[158,-1],[104,0],[42,0],[283,6],[37,1],[66,1],[111,3],[4,0],[11,0],[42,1],[91,2],[47,1],[6,0],[7,0],[43,-5],[84,-9],[58,-6],[93,2],[7,0],[202,5],[4,0],[79,2],[76,2],[218,5],[25,1],[23,0],[55,1],[40,1],[111,2],[2,0],[94,0],[39,-1],[63,0],[28,1],[72,0],[37,0],[44,0],[92,0],[8,0],[1,0],[13,0],[108,0],[27,0],[89,1],[61,0],[4,0],[216,-2],[35,0],[34,0],[38,0],[62,-3],[29,-4],[2,0],[9,-2],[86,-11],[52,1],[75,-1],[110,3],[85,2],[33,2],[3,0],[1,1],[59,1],[137,5],[38,1],[66,2],[58,0],[81,-1],[51,0],[24,0],[40,-1],[131,-1],[143,-1],[13,0],[13,0],[100,-6],[233,-3],[65,1],[6,0],[77,0],[51,0],[43,0],[53,1],[39,0],[45,0],[203,-6],[24,-7],[10,-3],[3,-1]],[[9445,86560],[-2,-5],[-2,0],[-1,-88],[5,-89],[-5,-73],[-12,-31],[-7,-20],[-36,-26],[-36,-18],[-37,-9],[-30,-16],[-21,-11],[-12,-6],[-71,-47],[-82,-37],[-26,-1],[-69,17],[-54,21],[-44,34],[-32,38],[-24,42],[-56,83],[-25,31],[-24,21],[-29,12],[-42,-17],[-57,-84],[-22,-50],[1,-79],[13,-53],[16,-54],[21,-44],[21,-27],[32,-35],[100,-197],[17,-86],[0,-47],[-44,-28],[-42,28],[-8,3],[-21,6],[-46,7],[-40,-3],[-34,-10],[-29,-44],[-16,-73],[-20,-164],[11,-38],[13,-19],[48,25],[46,26],[2,0],[30,-102],[-3,-50],[-4,-43],[-21,-260],[-57,-133],[-1,-1],[-1,-1],[-27,-17],[-46,-54],[-15,-6],[-21,-12],[-48,-45],[-59,-142],[-21,-72],[-4,-79],[2,-57],[3,-7],[1,-9],[18,-29],[3,-6],[83,-136],[6,-25],[12,-41],[-2,-47],[1,-10],[-6,-41],[-6,-25],[-18,-6],[-66,25],[-127,88],[-39,0],[-22,0],[-11,-6],[-6,-33],[-10,-23],[-1,-6],[-1,-2],[-2,-6],[-28,-67],[-32,-33],[-5,-5],[-23,-35],[-7,-26],[-3,-21],[-1,-37],[3,-78],[14,-110],[12,-51],[26,-132],[-10,-133],[-23,-64],[-45,6],[-24,6],[-88,60],[-55,-25],[-62,-25],[-27,-63],[-8,-64],[13,-36],[0,-1],[0,-3],[-4,-80],[10,-114],[0,-198],[-32,-138],[-148,99],[-4,3],[9,78],[-2,91],[-5,18],[-1,56],[-1,92],[-12,81],[-40,63],[-45,47],[-40,35],[-59,-29],[-30,-94],[-5,-14],[0,-10],[2,-53],[11,-158],[-12,-95],[-2,-24],[-27,-61],[-49,-70],[-49,-139],[-28,-80],[-45,-132],[7,-58],[19,-181],[0,-2],[1,-10],[2,-9],[1,-9],[2,-8],[1,-3],[12,-48],[1,-5],[2,-8],[3,-8],[3,-7],[15,-39],[13,-34],[16,-61],[12,-51],[2,-22],[1,-10],[-15,-25],[-8,-5],[-16,1],[-14,10],[-21,34],[-20,40],[-62,134],[-24,71],[-1,3],[-28,80],[-19,53],[-3,7],[-3,7],[-3,6],[-3,6],[-3,4],[-28,41],[0,1],[-4,4],[-4,4],[-3,4],[-4,2],[-16,12],[-1,0],[-4,2],[-4,2],[-4,1],[-1,0],[-13,1],[-3,1],[-4,-1],[-4,-1],[-4,-1],[-3,-3],[-1,0],[-24,-16],[-4,-3],[-4,-3],[-3,-4],[-4,-5],[-3,-5],[-3,-6],[-3,-6],[-3,-7],[-3,-7],[-3,-7],[-1,-5],[-13,-45],[-1,-3],[-2,-9],[-2,-8],[-2,-9],[-1,-9],[-1,-10],[-1,-9],[0,-6],[-2,-25],[0,-4],[-1,-9],[0,-10],[0,-10],[1,-10],[0,-9],[1,-10],[6,-49],[1,-9],[1,-9],[2,-9],[2,-9],[2,-8],[2,-8],[3,-7],[2,-7],[1,-2],[42,-102],[-38,-67],[-7,-9],[-25,-32],[-31,-27],[-35,-7],[-9,1],[-16,12],[-43,47],[-1,1],[-2,2],[-96,90],[-2,2],[-4,3],[-4,2],[-3,1],[-30,11],[-1,1],[-4,1],[-4,0],[-4,0],[-1,0],[-19,-4],[-2,-1],[-69,-99],[-3,-7],[-2,-8],[-3,-8],[-2,-8],[-2,-9],[-1,-9],[-2,-9],[0,-1],[-27,-200],[-28,-127],[-36,-128],[-86,-194],[-20,-40],[-4,-10],[-64,-110],[-2,-4],[-3,-6],[-3,-6],[-3,-8],[-3,-7],[-32,-104],[-2,-8],[-3,-9],[-1,-8],[-2,-9],[-1,-9],[-2,-10],[0,-4],[-7,-67],[0,-5],[-1,-10],[0,-3],[-6,-142],[-2,-2],[-20,-7],[-62,-13],[-16,2],[-15,9],[-64,40],[-3,2],[-2,1],[-29,11],[-2,1],[-1,1],[-5,1],[-86,23],[-3,0],[-3,0],[-4,0],[-4,-1],[-4,-1],[-3,-2],[-15,-9],[-2,-1],[-4,-3],[-3,-3],[-4,-4],[-3,-5],[-1,0],[-15,-23],[-3,-4],[-4,-6],[-3,-6],[-3,-7],[-2,-7],[-2,-4],[-14,-43],[-1,-4],[-3,-8],[-2,-8],[-2,-9],[-1,-9],[-2,-9],[-1,-9],[-1,-10],[0,-9],[-3,-57],[-5,-39],[-5,-16],[-8,-9],[-15,-9],[-35,0],[-34,19],[-38,25],[-6,3],[-3,2],[-4,2],[-4,1],[-4,0],[-21,0],[-4,0],[-4,-1],[-4,-2],[-2,0],[-27,-15],[-2,-2],[-4,-3],[-4,-3],[-41,-42],[-1,0],[-3,-4],[-4,-4],[-3,-6],[-1,0],[-84,-141],[-3,-3],[-25,19],[-16,22],[-2,3],[-4,4],[-3,3],[-22,19],[-4,3],[-4,2],[-4,2],[-4,1],[-15,2],[-4,1],[-4,-1],[-4,-1],[-4,-1],[-4,-2],[-3,-2],[-15,-12],[-1,-1],[-4,-3],[-3,-4],[-4,-5],[-3,-5],[-3,-6],[-3,-6],[-3,-7],[-3,-7],[-3,-7],[-2,-8],[-2,-9],[-2,-8],[-2,-9],[-1,-9],[-1,-10],[-1,-9],[0,-6],[-2,-25],[0,-4],[-1,-10],[0,-9],[0,-10],[1,-10],[0,-9],[1,-10],[1,-9],[1,-3],[5,-36],[1,-7],[2,-9],[2,-9],[26,-112],[1,-3],[19,-77],[7,-45],[3,-25],[0,-43],[-3,-32],[-4,-24],[-10,-29],[-36,-83],[-2,-3],[-2,-8],[-3,-7],[-2,-8],[-2,-8],[-1,-2],[-5,-24],[-2,-7],[-1,-9],[-2,-9],[-1,-9],[-1,-9],[0,-10],[-1,-10],[0,-5],[0,-45],[0,-4],[0,-10],[0,-10],[1,-9],[1,-10],[1,-9],[1,-9],[2,-9],[1,-6],[10,-43],[0,-3],[3,-9],[2,-8],[2,-7],[3,-7],[3,-7],[17,-36],[3,-6],[3,-5],[3,-5],[6,-8],[-33,-37],[-38,-38],[-18,-9],[-11,1],[-45,13],[-17,17],[-37,41],[-3,4],[-13,16],[-4,4],[-2,2],[-8,7],[-2,2],[-4,3],[-3,2],[-4,2],[-4,1],[-4,0],[-4,0],[-4,-1],[-4,-2],[-23,-11],[-4,-2],[-4,-3],[-3,-4],[-4,-4],[-3,-4],[-4,-5],[-1,-3],[-9,-15],[-2,-3],[-3,-6],[-3,-7],[-2,-7],[-1,-3],[17,-404],[2,-49],[-22,-41],[-8,-7],[-23,-13],[-23,-13],[-39,-163],[-44,-64],[-73,-106],[-4,-9],[-1,-98],[0,-8],[0,-10],[-1,-10],[-1,-9],[-1,-9],[-20,-149],[-6,-194],[-3,-134],[0,-3],[-2,-35],[0,-6],[-1,-10],[-1,-9],[-1,-10],[-1,-9],[-2,-9],[-1,-5],[-5,-23],[-1,-3],[-2,-8],[-2,-8],[-1,-3],[-11,-33],[-1,-4],[-3,-7],[-2,-5],[-92,-205],[-7,-20],[0,-1],[0,-2],[2,-25],[0,-5],[1,-10],[0,-2],[1,-70],[0,-17],[0,-10],[-1,-9],[0,-6],[-3,-28],[-1,-4],[-1,-9],[-1,-9],[-2,-9],[-2,-9],[-2,-8],[-2,-8],[-3,-8],[-1,-3],[-5,-14],[-2,-4],[-3,-6],[-3,-6],[-3,-6],[-3,-5],[-4,-5],[-3,-4],[-4,-3],[-1,-1],[-22,-18],[-3,-2],[-4,-2],[-4,-2],[-4,-1],[-4,0],[-30,0],[-4,0],[-4,1],[-4,2],[-1,1],[-31,17],[-2,1],[-4,3],[-2,2],[-26,24],[-29,11],[-50,5],[-32,-8],[-2,-1],[-4,0],[-1,0],[-34,1],[-3,0],[-4,1],[-4,2],[-4,2],[-4,3],[-3,3],[-4,5],[-1,1],[-90,114],[-1,1],[-75,98],[-19,22],[-21,6],[-24,-2],[-14,-8],[-13,-14],[-71,-98],[-3,-3],[-4,-4],[-3,-4],[-1,-1],[-52,-40],[-3,-2],[-4,-3],[-4,-1],[-2,-1],[-94,-21],[-138,6],[-30,-15],[-21,-11],[-27,-35],[-12,-21],[-30,-68],[-13,-43],[-11,-46],[-8,-26],[-6,-17],[-8,-3],[-83,-12],[-14,-90],[-16,-112],[-2,-11],[42,-130],[0,-2],[0,-2],[1,-36],[-4,-20],[-14,-36],[-8,-21],[-12,-16],[-15,-12],[-22,-4],[-71,38],[-14,2],[-3,1],[-8,-23],[2,-85],[-6,-75],[-9,-83],[-9,-25],[-31,-92],[-5,-15],[-1,-1],[-61,-86],[-149,-187],[-36,79],[-25,53],[-21,47],[-104,15],[-153,-86],[-213,-300],[-80,-198],[-53,-130],[-162,-348],[-20,-122],[-6,-35],[-29,-181],[-70,-127],[-2,-4],[-3,-6],[-3,-7],[-3,-7],[-24,-67],[-2,-8],[-1,-2],[-8,-27],[-9,-29],[-2,-7],[-56,-189],[-19,-33],[-29,-27],[-62,-10],[-4,-1],[-4,-2],[-4,-2],[-1,0],[-31,-23],[-3,-2],[-4,-3],[-4,-4],[-3,-5],[-3,-5],[-4,-6],[-3,-6],[-1,-2],[-26,-59],[-2,-4],[-3,-8],[-2,-7],[0,-1],[-35,-110],[-12,-23],[-25,-18],[-2,-1],[-4,-4],[-3,-4],[-4,-5],[-3,-5],[-3,-5],[-3,-7],[-3,-6],[-3,-7],[-3,-8],[-2,-8],[-2,-7],[-11,-48],[0,-1],[-2,-8],[-2,-9],[-1,-9],[-1,-10],[-1,-9],[-1,-10],[0,-9],[0,-10],[0,-10],[0,-4],[10,-275],[-2,-15],[-9,-25],[-60,-107],[-15,-30],[-4,1],[-51,5],[-3,0],[-33,-66],[-14,-33],[-29,-72],[-9,-30],[-10,-56],[-1,-2],[-26,-49],[-32,-60],[-18,-33],[-8,-10],[-1,-2],[-5,-5],[-8,-6],[-47,-14],[-21,9],[-8,3],[-24,-12],[-36,-26],[-7,-8],[-72,-107],[-38,-72],[-15,-47],[0,-15],[6,-10],[-1,-4],[-6,-19],[-16,-17],[-29,-12],[-11,5],[-2,5],[-1,30],[-25,13],[-9,5],[-33,16],[-35,-3],[-1,-1],[-1,0],[-21,-10],[-30,-21],[-2,-2],[-111,-139],[-43,-66],[-1,-11],[9,-18],[3,-14],[0,-11],[-19,-127],[-11,-22],[-3,-7],[-58,-65],[-141,115],[-29,24],[-35,28],[-21,22],[-43,15],[-45,3],[26,3237],[6,742],[15,1860],[2,228],[16,1923],[28,3555],[2,197],[1,157],[48,5928],[9,1117],[39,4776],[13,1575],[25,3192],[33,1],[43,1],[352,8],[62,1],[44,1],[175,4],[2,0],[271,5],[60,1],[203,3],[129,2],[162,0],[140,0],[1,0],[198,0],[18,0],[94,1],[13,0],[25,0],[93,1],[32,0],[47,0],[95,1],[199,3],[46,1],[96,1],[318,8],[115,0],[124,0],[34,0],[219,3],[136,2],[30,1],[64,0],[298,0],[9,0],[207,0],[35,0],[42,0],[535,0],[156,0],[50,0],[30,0],[88,1],[145,0],[225,0],[6,0],[6,0],[164,0],[5,0],[77,0],[111,1],[82,1],[57,1],[33,0],[49,1],[152,2],[82,1],[36,1],[446,8],[48,1],[18,0],[89,1],[27,0],[156,2],[104,1],[382,3],[29,1],[122,1],[34,0],[56,1],[62,0],[200,0],[57,0],[24,1],[7,0],[40,0],[384,-1],[128,0],[10,0],[56,0],[146,4],[124,3],[101,3],[256,6],[91,2],[54,2],[31,1],[76,1],[56,0],[220,-3],[162,-2],[204,-3],[69,-1],[258,-5],[41,0],[27,-1],[200,-2],[244,2],[55,0],[219,1],[55,2],[92,1],[56,0],[399,3],[118,1],[84,1],[18,0]],[[79975,80659],[-53,-140],[-65,13],[-54,173],[-4,217],[64,-48],[52,-154],[60,-61]],[[83841,80889],[-24,18],[-28,-3],[-26,37],[-25,13],[-22,19],[-20,28],[-24,-21],[-23,-11],[-23,-32],[3,70],[-20,32],[-30,-5],[-21,27],[-22,38],[-28,31],[-26,-4],[-27,31],[-23,6],[7,-72],[-6,-57],[-34,-8],[-24,11],[-27,12],[-23,38],[-22,-32],[-22,-35],[-26,-8],[-21,14],[-24,-26],[-8,-67],[-18,-46],[-23,1],[-26,-18],[-24,-8],[-21,22],[-22,-14],[-18,32],[-4,6],[-21,-21],[-34,-12],[-39,-36],[-31,35],[-10,18],[-11,18],[-24,15],[-7,58],[-45,41],[-32,2],[-37,14],[-38,21],[-38,70],[-44,8],[-30,-17],[-54,-19],[-40,-86],[-44,-90],[-48,-96],[-15,-64],[-22,-64],[-45,-18]],[[82337,80685],[-49,54],[-57,-78],[-42,-45],[-63,1],[-65,-8],[-69,49],[-32,-152],[-1,-106],[-60,11],[-69,-64],[-48,1],[-34,70],[-77,64],[-27,-79],[-53,-16],[-56,118],[-50,-81],[-41,-83],[-50,-50],[-39,85],[-62,-82],[-69,-71],[-15,-26],[-49,-83],[-65,2],[-23,75],[-45,76],[-65,84],[-37,12],[-52,-4],[-64,-62],[-35,107],[22,136],[44,117],[-58,17],[-51,-123],[-12,-205],[-42,-60],[-84,46],[-64,83],[-44,80],[-66,-18],[-46,9],[-67,131],[-41,55],[-61,49],[-81,-18],[-44,-44],[-51,38],[30,146],[29,70],[73,85],[39,117],[58,33],[82,-12],[71,42],[-60,82],[-59,65],[64,176],[22,153],[-46,-42],[-39,-130],[-58,-62],[-33,-99],[-38,-75],[-66,89],[-57,189],[-16,-200],[16,-165],[17,-141],[-64,-48],[-70,91],[-62,65],[-58,47],[-23,131],[-35,149],[-43,-145],[-4,-124],[-7,-119],[-42,23],[-34,49],[-56,90],[-79,10],[52,-144],[-26,-86],[-41,-33],[-29,-46],[-51,66],[-62,-35],[-60,18],[-30,87],[-50,-38],[-69,-66],[-45,-156],[-38,125],[-33,100],[-25,107],[-49,-135],[-74,90],[-67,59],[-76,96],[-80,71],[-56,-12],[-56,-18],[-65,10],[-70,49],[-40,-2],[-38,-7],[-53,8],[-53,62],[-61,-37],[-87,9],[-47,-55],[-56,-9],[-74,21],[-78,24],[-37,17],[-50,47],[-49,133],[-6,154],[16,152],[26,116],[45,138],[94,181],[78,63],[92,74],[42,37],[54,42],[71,58],[91,111],[85,140],[61,-70],[22,-136],[85,108],[22,-153],[47,-13],[57,10],[63,11],[55,4],[3,142],[61,59],[16,15],[-90,40],[-57,45],[-68,41],[-64,-83],[-38,117],[-45,-104],[-31,92],[21,90],[34,158],[15,163],[21,115],[32,96],[34,104],[41,120],[43,71],[59,40],[46,58],[47,4],[59,20],[51,57],[38,56],[28,97],[42,-8],[18,266],[26,196],[9,142],[44,70],[10,108],[17,117],[32,103],[28,118],[55,119],[39,154],[76,-12],[55,-122],[60,-75],[59,-51],[55,-12],[61,-98],[36,-91],[54,6],[61,-58],[58,36],[-16,128],[-64,48],[-50,77],[-37,28],[-56,16],[-49,49],[-42,70],[-17,156],[63,155],[55,80],[40,139],[31,143],[62,73],[75,0],[51,-11],[43,-58],[64,-48],[75,23],[51,36],[40,-5],[18,-102],[30,-95],[48,-76],[33,-108],[42,-79],[80,-3],[31,105],[79,9],[14,192],[52,152],[52,108],[53,-11],[55,-73],[69,-70],[65,-74],[100,-108],[36,74],[43,29],[28,-206],[52,-71],[50,-8],[73,-8],[63,-229],[84,-99],[12,-14],[22,-166],[51,-100],[85,-73],[80,-52],[64,-8],[46,-66],[55,15],[63,-62],[51,-91],[38,-52],[-27,-66],[12,-107],[40,106],[56,42],[79,-82],[79,73],[-60,115],[-103,12],[-66,111],[-58,61],[-47,79],[-82,29],[-84,29],[-68,-11],[16,104],[44,77],[42,91],[49,-1],[47,19],[36,47],[67,65],[72,31],[51,-35],[45,-29],[80,8],[76,-61],[70,130],[4,8],[-49,54],[-44,60],[-65,-36],[-66,-6],[-58,76],[-65,-57],[-69,-34],[-78,-59],[-69,-42],[-55,16],[-38,-86],[-45,0],[-82,16],[-72,44],[-28,71],[-16,43],[8,166],[-6,195],[-34,80],[-63,-20],[-53,55],[-53,48],[-47,145],[-88,127],[-43,141],[4,161],[-63,-1],[-47,80],[-67,92],[-60,-53],[-61,99],[-67,-52],[-59,-46],[-65,-15],[-48,-3],[-38,48],[-37,-11],[-52,-39],[-59,-14],[-71,-9],[-53,51],[-6,102],[33,63],[9,104],[16,109],[21,191],[50,142],[64,173],[75,11],[90,46],[51,-37],[58,39],[84,65],[80,6],[46,-27],[47,67],[46,66],[63,39],[74,30],[-1,143],[-19,114],[43,-12],[43,-50],[95,50],[61,35],[24,78],[58,-8],[61,60],[-70,73],[-23,114],[-7,127],[25,131],[72,90],[68,105],[82,54],[85,23],[61,44],[69,-20],[35,52],[50,12],[69,-32],[81,54],[81,-20],[57,-8],[39,13],[34,19],[51,2],[99,-4],[79,-30],[62,-32],[44,-23],[61,-32],[7,-3],[57,-67],[44,-19],[60,6],[38,37],[23,23],[56,82],[-93,12],[-82,0],[-49,5],[-37,34],[-25,23],[-64,50],[-77,-1],[-79,116],[-42,-54],[-113,0],[-89,-20],[-87,-1],[-68,-1],[-49,10],[-65,7],[-51,16],[-59,0],[-75,-3],[-41,8],[-59,-37],[-33,-28],[-57,14],[-78,-99],[-23,-66],[-61,-64],[-91,-109],[-79,-71],[-53,140],[56,139],[81,179],[93,56],[83,54],[44,75],[40,123],[47,95],[48,41],[53,79],[31,175],[-14,141],[-34,203],[35,149],[47,4],[70,-13],[39,28],[46,115],[-3,111],[-21,175],[-23,151],[58,54],[72,24],[66,100],[47,15],[56,65],[8,94],[-5,144],[-51,61],[-43,19],[-56,37],[-16,157],[-52,95],[-42,10],[-16,-153],[-63,-63],[-56,-39],[-23,-141],[-13,-99],[-76,-80],[19,-110],[-7,-150],[-67,48],[13,-149],[54,-141],[-56,-51],[-42,-106],[-71,-39],[-70,-41],[-61,-138],[-15,-151],[-29,-156],[-68,-137],[-50,-108],[-34,-121],[-42,-74],[-48,-48],[-38,-84],[-13,-101],[-25,-133],[-23,-124],[-32,-60],[-26,-170],[-38,-135],[0,-174],[-51,-70],[-35,-82],[-33,-109],[-27,-112],[-22,-72],[-50,-84],[-82,75],[-73,118],[-61,45],[-53,62],[-58,78],[-43,-173],[-64,-61],[-55,-31],[-45,11],[-49,53],[-70,47],[-31,-115],[-80,18],[43,-140],[83,20],[38,-153],[21,-125],[-10,-124],[-53,-87],[-27,-91],[-16,-123],[-69,-60],[-55,10],[-34,10],[-70,-66],[-80,-123],[-65,-106],[-33,-212],[-58,-19],[-70,-17],[-74,7],[30,-116],[-17,-115],[-55,-35],[-42,-150],[-67,-60],[-57,33],[-61,4],[20,-142],[-6,-209],[-59,-73],[-44,9],[-60,-51],[-19,-141],[-63,-39],[-47,35],[-50,-30],[5,-125],[-14,-147],[-22,-203],[-69,-145],[-47,-35],[-45,-17],[-59,-55],[-8,-171],[-54,-117],[-54,-64],[-61,-57],[-68,-19],[-67,29],[-28,117],[3,173],[22,86],[58,121],[81,157],[81,166],[44,74],[49,115],[30,151],[17,126],[13,176],[-7,146],[-15,171],[-9,152],[2,141],[25,152],[70,110],[33,93],[31,72],[60,146],[-37,158],[7,133],[5,137],[6,147],[29,225],[50,126],[41,180],[18,211],[-3,158],[-4,198],[68,100],[61,93],[56,33],[69,-37],[91,60],[73,143],[-32,182],[-79,54],[-42,98],[-9,93],[29,75],[54,147],[-34,123],[-1,91],[-16,134],[-33,154],[-9,159],[30,127],[71,-68],[66,8],[22,186],[79,50],[24,155],[20,210],[33,169],[29,160],[66,79],[45,138],[-30,187],[20,92],[12,161],[40,113],[8,111],[-59,55],[-21,17],[-35,30],[-45,-28],[-77,-32],[-73,-106],[-63,-14],[-9,-196],[-52,-93],[7,-129],[-18,-122],[0,-148],[-61,-172],[-47,-124],[32,-94],[-71,-34],[-58,-15],[-58,35],[-45,-42],[-42,-97],[-61,-51],[-65,-89],[-45,-126],[-66,-46],[-58,-18],[-40,-31],[-64,-72],[-39,-74],[-23,-124],[-25,-113],[-31,-94],[-30,-178],[-26,-180],[40,-169],[33,-155],[-50,-127],[-65,-9],[-38,8],[-54,41],[-31,136],[-21,101],[-50,118],[-52,43],[-66,25],[-67,40],[-42,12],[-46,-4],[-2,155],[-84,2],[-69,70],[56,76],[28,163],[40,153],[-26,216],[-14,102],[-14,138],[-49,47],[-37,-40],[0,-141],[-27,-107],[-11,-204],[-49,-145],[-63,-85],[-27,-152],[-41,-9],[-62,59],[-52,63],[-55,70],[-46,-32],[40,-115],[31,-87],[18,-109],[50,-97],[59,-58],[-37,-51],[-55,11],[-71,11],[-58,-24],[-81,7],[-102,40],[-57,48],[-5,4],[-176,-247]],[[76870,90070],[-21,82],[-18,69],[-19,53],[-48,133],[-45,128],[-33,92],[-22,65],[-36,105],[-74,220],[-101,300],[-10,28],[-263,766],[-76,222],[-78,226],[-133,366],[-131,359],[-111,306],[-71,195],[-118,310],[-34,52],[-73,87],[-120,143],[-66,177],[-88,435],[-44,312],[-48,336],[-105,379],[-61,186],[-31,92],[-106,154],[-23,40],[-2,5],[-255,463],[-93,103],[-80,103],[-79,277],[-96,185],[-50,95],[-213,331],[-106,329],[-148,520],[-88,307],[-18,62],[-35,121],[-24,108],[-56,410]],[[73320,99907],[205,2],[3,0],[62,-1],[54,-1],[170,-3],[12,0],[113,2],[57,1],[37,1],[23,0],[358,-5],[29,3],[20,1],[67,1],[45,0],[29,0],[21,1],[282,3],[40,1],[152,-2],[1,0],[35,1],[191,3],[193,-21],[5,0],[3,1],[83,1],[91,2],[2,0],[62,1],[9,0],[2,0],[6,0],[29,1],[37,1],[28,0],[30,1],[63,1],[25,1],[81,1],[53,1],[87,2],[53,1],[364,4],[36,0],[80,1],[29,1],[55,0],[79,1],[98,1],[36,1],[24,0],[146,2],[146,1],[3,0],[49,1],[75,0],[34,1],[29,0],[44,0],[16,0],[92,1],[64,1],[13,0],[34,0],[41,1],[19,0],[20,0],[59,1],[48,0],[97,2],[35,1],[53,1],[24,0],[71,1],[243,-4],[24,0],[37,0],[5,0],[23,1],[3,0],[23,0],[25,-1],[26,0],[25,0],[103,1],[103,0],[31,0],[52,0],[163,1],[58,0],[85,0],[38,0],[41,0],[41,0],[50,0],[106,1],[6,0],[32,0],[78,1],[82,1],[82,1],[133,1],[215,2],[61,0],[6,0],[37,1],[52,0],[26,0],[153,1],[60,0],[70,0],[65,1],[26,0],[60,0],[44,0],[33,0],[28,1],[43,0],[21,0],[133,-1],[128,-1],[140,-1],[85,0],[80,1],[43,0],[28,0],[27,0],[56,0],[62,0],[14,0],[35,0],[18,0],[22,0],[40,0],[114,1],[63,0],[51,0],[3,0],[3,0],[6,0],[200,3],[27,0],[7,0],[33,1],[36,1],[1,0],[21,0],[52,1],[76,1],[24,1],[185,4],[29,0],[15,0],[114,0],[51,0],[28,0],[19,0],[25,0],[15,1],[5,0],[42,0],[10,0],[38,0],[37,0],[40,0],[11,0],[50,0],[1,-138],[0,-1],[-1,-147],[1,-20],[0,-45],[2,-80],[-4,-609],[-1,-104],[1,-21],[0,-66],[0,-2],[6,-107],[-1,-6],[-2,-113],[-1,-37],[0,-37],[0,-69],[1,-107],[-1,-103],[-4,-136],[-5,-156],[-4,-137],[1,-49],[1,-33],[2,-47],[4,-78],[5,-93],[9,-262],[0,-16],[-2,-398],[-6,-271],[-2,-81],[-3,-132],[-2,-59],[0,-6],[-1,-3],[0,-13],[1,-68],[2,-176],[0,-55],[1,-28],[7,-138],[4,-96],[5,-124],[3,-90],[1,-45],[1,-9],[0,-3],[0,-4],[4,-78],[2,-60],[1,-42],[2,-50],[5,-171],[1,-55],[2,-22],[14,-448],[24,-548],[4,-273],[1,-41],[0,-6],[0,-3],[0,-1],[0,-6],[1,-356],[2,-224],[28,-326],[3,-82],[29,-619],[-1,-262],[7,-546],[3,-227],[0,-6],[20,-174],[4,-142],[3,-122],[6,-163],[14,-355],[1,-9],[6,-257],[1,-38],[2,-53],[1,-57],[1,-35],[19,-487],[6,-186],[11,-338],[3,-104],[0,-28],[1,-18],[2,-91],[1,-65],[2,-171],[6,-163],[9,-244],[14,-231],[0,-1],[10,-261],[4,-85],[3,-93],[4,-94],[9,-225],[10,-122],[1,-5],[1,-12],[14,-177],[6,-75],[6,-102],[7,-126],[4,-104],[0,-15],[3,-65],[2,-62],[3,-72],[6,-208],[6,-244],[2,-137],[5,-289],[3,-138],[2,-140],[6,-438],[5,-234],[1,-73],[6,-301],[2,-97],[1,-9],[3,-88],[8,-240],[7,-225],[0,-1],[3,-77],[10,-305],[15,-415],[2,-102],[3,-118],[4,-112],[5,-244],[2,-47],[0,-1],[2,-62],[2,-53],[5,-176],[3,-65],[3,-46],[6,-76],[1,-6]],[[72606,75714],[-51,-139],[41,-95],[-53,-36],[-15,-134],[-49,-93],[7,200],[-3,173],[22,136],[36,-21],[21,185],[20,209],[84,48],[67,6],[20,-211],[-37,-140],[-61,-60],[-49,-28]],[[76788,86218],[31,-18],[63,41],[52,36],[26,-63],[25,-61],[15,-181],[5,-62],[19,-138],[37,-170],[17,-60],[34,-119],[45,-151],[1,-3],[37,-213],[0,-7],[14,-111],[1,-119],[-79,-72],[-40,-28],[-38,-50],[-50,-72],[-32,-46],[-11,-22],[-37,-77],[-89,-113],[-62,-88],[-59,-25],[-22,120],[-24,76],[3,95],[43,15],[-7,112],[-6,85],[22,126],[14,142],[10,88],[4,30],[10,28],[18,47],[-13,73],[-3,16],[-64,-24],[-6,-175],[-21,-75],[-15,-114],[-3,-23],[-5,-41],[-10,-34],[-14,-48],[-9,-16],[-55,-92],[-63,-2],[-6,0],[-65,48],[26,158],[22,85],[22,85],[-25,104],[-3,11],[49,124],[31,131],[26,133],[17,94],[7,37],[12,55],[31,151],[-48,7],[14,164],[-37,110],[-32,1],[-17,1],[-18,54],[-30,92],[64,92],[62,29],[63,15],[6,2],[4,0],[58,-1],[24,-179],[34,-20]],[[76870,90070],[-77,-111],[-12,-17],[-13,-20],[-25,-35],[-9,-14],[-21,-38],[-31,-54],[-5,-9],[-70,33],[-32,-38],[-55,-14],[-43,-13],[-68,-63],[-58,-139],[23,-80],[-6,-107],[-20,-97],[-41,-132],[-71,-158],[-50,-141],[2,-145],[-30,-171],[-44,-162],[-33,-141],[-19,-140],[-14,-151],[-18,-147],[-56,-160],[-50,-165],[-42,-88],[-35,-100],[-60,69],[-47,-12],[18,127],[42,78],[-4,102],[-72,29],[-132,330],[-41,-190],[38,-148],[19,-138],[-30,-184],[-16,-196],[17,-102],[82,-56],[65,-135],[54,-151],[55,-58],[52,-17],[18,-81],[51,93],[42,185],[-8,111],[55,-16],[46,-126],[42,-108],[51,-131],[43,-77],[61,-49],[39,-33],[45,-98],[-37,-88],[23,-67],[35,-56],[7,-174],[-35,-152],[-9,-119],[11,-136],[-49,-151],[11,-95],[-22,-118],[-15,-178],[85,-72],[-46,-329],[-56,-185],[-3,-7],[-5,-18],[-38,-139],[1,-19],[1,-14],[37,-73],[-36,-62],[-24,-36],[-19,-29],[-34,-43],[-42,-47],[-36,-30],[-9,-8],[-6,-4],[-27,-21],[-24,-29],[-8,-9],[-17,-28],[-33,-53],[-37,-22],[-10,-62],[-6,-38],[-33,-87],[-11,-54],[-11,-58],[-8,-18],[-21,-44],[-1,-2],[-35,-61],[-38,-46],[-39,-52],[-36,-65],[-54,-84],[-52,-114],[-51,-100],[-68,-123],[-44,-35],[-23,-18],[-52,-32],[-58,-83],[-72,-23],[-49,11],[-57,-2],[-4,4],[-54,56],[-36,-62],[-54,-73],[-42,-108],[-9,-22],[-19,-27],[-38,-55],[4,-37],[7,-74],[-39,-58],[-23,-102],[-43,-129],[-53,-136],[-50,-144],[-16,-153],[-18,-182],[-29,-79],[-28,-77],[4,187],[-17,183],[32,224],[44,113],[-62,-27],[-57,-13],[-13,-132],[-23,-27],[-38,-45],[-10,-6],[-47,-28],[-37,-46],[-10,-12],[-23,36],[-22,33],[-60,71],[-38,13],[-43,-55],[-42,-122],[-51,172],[-3,102],[-2,50],[-4,-11],[-47,-120],[-63,-13],[-51,134],[-47,131],[22,195],[-56,-115],[-68,-45],[6,-129],[-54,-46],[-71,-85],[-63,74],[-51,49],[-36,76],[-18,113],[-32,76],[-69,58],[-3,-180],[41,-33],[35,-177],[20,-177],[-47,-131],[-30,-89],[55,-27],[12,-113],[22,-110],[36,21],[9,6],[10,6],[42,36],[38,120],[39,109],[39,125],[77,-12],[64,89],[12,-185],[57,31],[36,-71],[2,-51],[2,-55],[46,-3],[63,-89],[11,-40],[1,-1],[20,-73],[33,82],[64,50],[11,9],[45,145],[36,-101],[47,-27],[43,-26],[43,-43],[-42,-182],[-60,-162],[-47,-117],[-31,-131],[-38,-92],[-80,-120],[-55,-82],[-56,-53],[-75,-58],[-92,-111],[-88,-73],[-23,-33],[-11,-16],[-49,-59],[-46,-72],[-37,-137],[-66,-125],[-64,73],[-56,44],[-72,158],[-32,115],[-49,87],[22,140],[-63,-34],[-57,32],[-70,-9],[-68,36],[-22,122],[-8,47],[-43,93],[25,121],[65,-40],[58,46],[35,135],[-41,61],[-43,44],[-38,89],[-30,56],[-49,45],[65,92],[41,67],[38,91],[56,56],[-49,129],[6,119],[-74,-47],[13,159],[44,156],[31,174],[51,112],[24,127],[11,116],[22,158],[-16,156],[37,38],[36,48],[35,127],[31,108],[46,96],[57,93],[67,144],[46,156],[32,97],[12,103],[15,131],[-56,40],[-64,69],[-45,86],[-42,72],[-14,94],[-32,68],[-33,93],[-2,4],[-52,81],[22,104],[40,103],[5,125],[32,137],[31,112],[20,112],[20,87],[9,146],[-26,171],[28,114],[55,40],[80,80],[31,177],[7,105],[-59,-19],[-62,-17],[-51,-19],[-79,-99],[-91,24],[-60,-10],[-59,-21],[-52,-38],[-29,-57],[-16,-100],[57,12],[38,30],[1,-3],[35,-93],[-49,-142],[-4,-191],[-31,-53],[-39,-58],[-40,-88],[-50,-57],[-64,36],[-53,-36],[-53,-5],[-46,-83],[-66,-112],[-69,-10],[-56,139],[-82,113],[-76,-23],[-44,-69],[-49,-60],[-4,-123],[-61,-144],[1,-6],[12,-158],[3,-40],[-3,-188],[43,71],[8,0],[34,3],[3,4],[51,71],[28,85],[35,-12],[21,86],[-7,120],[59,11],[69,-92],[68,-69],[83,-44],[71,145],[35,-29],[41,-27],[39,-53],[44,-107],[25,-91],[27,-164],[0,-1],[-46,-214],[-50,-143],[57,-97],[-30,-200],[-9,-233],[-60,-104],[-5,-182],[-20,-108],[-46,-54],[-51,-35],[-68,-63],[-45,-24],[-8,111],[-57,35],[-35,-67],[-44,-77],[-72,54],[-23,114],[-24,215],[-47,-9],[-2,-192],[-69,41],[-54,-16],[63,-119],[49,-187],[40,-134],[32,118],[36,-63],[17,-74],[43,-8],[62,-128],[14,-186],[36,-153],[34,-147],[-61,-75],[-55,-11],[-67,138],[-71,120],[-41,29],[-40,71],[-58,-28],[55,-107],[-9,-143],[87,1],[28,-154],[110,-148],[-31,-128],[-58,-96],[-24,-182],[60,-44],[25,-76],[-45,-110],[-50,-106],[-49,-97],[-70,-9],[-57,-55],[-60,-93],[31,-109],[52,-116],[63,52],[56,-43],[56,-74],[-13,-151],[51,-122],[47,99],[118,-72],[-9,-149],[-3,-134],[10,-125],[29,-122],[56,-77],[75,-80],[10,-111],[-16,-177],[53,-197],[-89,-148],[-75,-88],[-21,-41],[-19,-36],[-6,-5],[-61,-47],[47,-102],[-61,-114],[-57,-76],[-40,-62],[-17,-33],[-33,-64],[-36,-94],[-4,-120],[-10,-117],[-7,-178],[-53,-176],[-2,-129],[14,-133],[-21,-154],[-17,-165],[-60,-24],[-56,42],[-41,-8],[-58,37],[-43,22],[-57,46],[53,147],[42,66],[20,122],[10,189],[19,154],[9,141],[-57,156],[-19,136],[-18,148],[-41,110],[-56,114],[-15,104],[4,116],[-16,161],[10,177],[24,140],[33,149],[31,76],[25,87],[-51,159],[-54,80],[-36,19],[-55,20],[-71,24],[-44,33],[-43,50],[-34,67],[-44,35],[35,108],[61,73],[46,44],[9,155],[27,138],[32,135],[32,200],[19,104],[-2,142],[-24,139],[-30,148],[-21,103],[-29,77],[-45,79],[-33,56],[-47,68],[-66,49],[-62,5],[-63,-3],[-60,27],[-88,0],[-69,-91],[-73,22],[-29,83],[-50,44],[-55,-12],[-62,72],[-60,-2],[-14,61],[-20,82],[-36,157],[-55,-26],[-1,-1],[-34,-16],[-76,45],[-50,-66],[-11,-88],[-37,-34]],[[70481,81793],[-14,36],[-6,13],[-6,72],[-1,57],[-3,72],[-6,70],[-104,122],[-2,11],[-5,46],[-3,55],[-22,132],[-7,45],[0,1],[-68,152],[-18,130],[16,33],[5,15],[0,32],[-7,97],[0,8],[-2,18],[-3,16],[-2,16],[-8,46],[-27,165],[-6,21],[-20,57],[-18,50],[-9,15],[-10,16],[-13,20],[-7,11],[-1,0],[-30,45],[-17,8],[-3,-1],[-11,-7],[-14,4],[-2,4],[-14,20],[-4,22],[0,57],[0,103],[0,101],[113,223],[-40,125],[-43,132],[-18,221],[0,50],[-2,13],[-46,269],[-9,52],[-7,21],[-16,31],[-20,23],[-41,32],[-16,21],[-12,25],[-22,56],[48,132],[-6,181],[-10,28],[-8,2],[-21,-18],[-13,6],[-31,22],[-7,13],[-4,16],[-5,45],[-15,176],[-16,57],[-16,45],[-59,115],[-12,8],[-22,6],[-45,-6],[-18,14],[-25,47],[-12,85],[-13,89],[-4,24],[-49,34],[-87,138],[-5,10],[-46,86],[-7,12],[-2,2],[-21,2],[-97,-26],[-8,20],[-50,122],[-49,121],[-107,-13],[-3,12],[-17,88],[-18,92],[0,11],[-17,72],[-19,41],[-14,8],[-3,0],[-16,-3],[-27,-19],[-20,0],[-8,8],[-2,7],[-3,11],[-5,60],[-2,16],[-8,93],[0,3],[-2,43],[39,74],[0,1],[36,110],[36,122],[2,23],[-11,108],[-1,8],[-19,238],[-56,86],[-8,-3],[-5,-8],[-31,-48],[0,-1],[-19,-31],[-8,-52],[-7,-76],[-9,-15],[-18,7],[-82,62],[-16,29],[-6,26],[-27,49],[-15,24],[-30,50],[-31,50],[-31,48],[-8,5],[-27,-4],[-38,-37],[-20,-26],[-12,-22],[-8,-2],[-149,23],[-10,3],[-6,10],[0,19],[1,96],[1,12],[-3,26],[-7,20],[-45,93],[-10,10],[-9,5],[-54,29],[-117,169],[-3,6],[-4,6],[-49,57],[-13,11],[-6,1],[-6,-6],[-7,2],[-30,8],[-44,12],[-36,11],[-52,90],[-23,41],[-54,71],[-58,78],[-8,10],[-8,11],[-87,58],[-12,12],[-20,28],[-5,25],[-5,25],[-17,34],[-11,2],[-9,-7],[-1,-1],[-25,-49],[-1,-1],[-111,-52],[-1,0],[-130,-57],[-18,8],[-36,20],[-15,20],[-3,65],[-19,130],[-20,51],[-4,5],[-40,5],[-8,0],[-26,79],[-52,154],[-5,26],[0,48],[1,21],[0,69],[-8,17],[-4,7],[-70,109],[-19,30],[-70,110],[-11,17],[-43,0],[-53,105],[-10,21],[-14,28],[-33,63],[25,92],[13,187],[0,9],[-1,17],[-6,15],[-1,1],[-11,10],[-4,3],[-33,18],[-7,5],[2,86],[2,8],[16,56],[0,2],[3,8],[13,3],[10,-7],[1,-1],[7,3],[8,4],[9,9],[3,3],[6,18],[0,9],[-1,24],[-18,297],[-2,3],[-3,4],[-11,-2],[-17,-10],[-14,-9],[-6,0],[-4,3],[-7,5],[-12,18],[-14,21],[-4,13],[-2,6],[-4,21],[0,4],[0,71],[-4,26],[-5,31],[-6,28],[-6,27],[-67,285],[-7,28],[-62,181],[-1,12],[-4,121],[-5,36],[-8,66],[-3,26],[-13,106],[-19,145],[-3,31],[-9,72],[-8,28],[-15,60],[-9,36],[-36,19],[-34,18],[-1,0],[-34,18],[-7,3],[-9,7],[-1,1],[-4,8],[-113,295],[-31,81],[-3,7],[-41,275],[-57,458],[-5,46],[3,63],[2,60],[-7,32],[-14,53],[0,5],[-5,257],[0,22],[-2,136],[-7,188],[-7,597],[-4,194],[-6,396],[-4,217],[-3,210],[-1,13],[5,439],[-2,84],[-9,715],[-5,393],[-14,59],[-4,65],[2,78],[0,161],[-2,83],[-3,194],[-3,189],[-1,19],[-12,718],[-8,474]],[[65745,99897],[50,-2],[112,2],[224,10],[32,0],[48,-1],[47,-1],[72,-1],[42,-1],[308,0],[47,0],[48,0],[143,0],[269,-1],[304,1],[192,0],[90,-3],[115,-4],[47,0],[147,1],[78,4],[26,2],[65,0],[141,0],[173,-9],[38,4],[3,0],[73,5],[130,2],[50,-3],[159,-2],[115,-2],[55,-1],[34,0],[10,0],[120,0],[57,1],[43,0],[72,0],[45,0],[30,0],[44,0],[35,0],[27,0],[36,0],[13,0],[106,0],[50,5],[101,0],[23,0],[402,0],[161,0],[169,0],[81,0],[1,0],[107,-1],[25,0],[25,1],[58,0],[23,0],[88,0],[210,0],[162,0],[99,0],[30,0],[73,0],[123,0],[30,0],[112,0],[35,0],[23,0],[65,0],[87,0],[113,0],[287,0],[131,0],[92,-6],[106,7],[181,10],[4,-1],[36,-8],[147,2]],[[70220,73174],[-63,-25],[-41,14],[-77,54],[-88,74],[-39,95],[-11,105],[1,21],[51,135],[99,175],[120,82],[143,-620],[-7,-9],[-88,-101]],[[70633,78197],[26,-186],[49,28],[48,53],[6,6],[56,6],[70,-88],[64,-1],[46,-51],[51,-57],[1,-119],[0,-60],[13,-50],[26,-108],[14,-34],[28,-70],[-3,-21],[-45,-12],[-51,-7],[-48,-27],[-43,-105],[-28,-72],[-5,-136],[-24,-7],[-41,104],[-16,48],[-13,37],[-34,105],[1,27],[6,108],[-52,73],[-70,-102],[-3,-126],[0,-32],[-38,-111],[-51,69],[42,92],[-9,86],[-1,8],[-63,63],[-46,35],[-27,117],[60,53],[-40,147],[-27,102],[-15,57],[2,51],[3,68],[21,62],[84,28],[49,61],[63,128],[-1,-27],[-5,-110],[-30,-103]],[[70481,81793],[-6,-127],[-1,-32],[-79,-12],[-26,-84],[-6,-21],[-29,107],[-46,-169],[-28,-140],[-51,-110],[-33,-32],[-51,-65],[-39,-41],[-84,41],[-65,-26],[-44,-10],[-23,74],[-45,-66],[-44,16],[-62,-24],[-62,112],[-62,78],[-56,-13],[-47,19],[-44,38],[-66,17],[-64,27],[-49,-41],[-61,-40],[20,-90],[58,-3],[79,-16],[73,-64],[15,-83],[61,-34],[56,17],[-1,106],[47,6],[-2,-157],[39,-63],[52,-35],[54,-38],[58,0],[77,41],[44,-40],[34,-50],[81,15],[53,-67],[48,-67],[1,-104],[55,54],[36,-50],[44,5],[-37,97],[-40,117],[38,136],[57,-13],[51,-16],[82,53],[47,159],[59,-48],[11,-4],[51,-24],[39,-170],[75,-102],[101,15],[74,-59],[53,-42],[-29,-152],[-27,-154],[35,-158],[-14,-163],[-25,-100],[-88,-71],[9,-121],[38,-128],[31,-113],[39,-133],[40,-139],[30,-156],[21,-120],[33,-214],[-87,64],[-81,30],[-60,42],[-56,5],[-60,-50],[-30,140],[-4,127],[3,124],[-53,-59],[-40,-77],[-44,38],[-32,106],[0,118],[21,112],[-58,82],[-38,-76],[-21,-93],[-50,58],[-41,-100],[-47,-17],[-1,-164],[68,-64],[54,-156],[33,-64],[61,32],[49,2],[-17,-187],[24,-159],[-61,14],[-66,21],[-73,47],[-58,76],[-71,139],[-80,127],[-71,-83],[64,-71],[2,-167],[57,-92],[57,-118],[24,-55],[58,-4],[29,-67],[27,-63],[26,-72],[3,-8],[6,-138],[-20,-68],[-41,-120],[-52,-4],[-53,101],[-23,-130],[-53,-82],[-50,23],[-58,77],[-54,130],[-85,5],[-47,122],[-40,-25],[33,-148],[46,-82],[-59,-97],[-55,-24],[63,-135],[70,130],[74,32],[43,-78],[36,-135],[32,1],[98,129],[96,-132],[38,-306],[-51,-141],[-11,-31],[-39,-100],[-31,-79],[-33,-91],[-40,-68],[-64,-93],[-80,-75],[-64,-11],[-16,112],[39,134],[40,171],[-7,205],[-61,55],[-5,-116],[-81,2],[-17,216],[-46,2],[-45,-71],[-13,-181],[-35,-176],[-44,124],[-33,100],[-54,13],[-51,-63],[9,146],[69,100],[36,142],[-40,107],[-29,78],[6,193],[12,167],[-55,85],[-54,-12],[-25,131],[13,235],[-49,-119],[-57,73],[18,-214],[32,-110],[40,-98],[54,-121],[12,-134],[-22,-131],[-32,-93],[-42,-65],[-50,-105],[-31,114],[-17,115],[-59,76],[-68,106],[16,-153],[55,-140],[-10,-165],[-43,94],[-68,54],[-48,43],[-33,101],[-37,65],[12,96],[-39,0],[-34,109],[22,212],[-58,3],[-69,-72],[49,-119],[-19,-86],[45,-109],[43,-116],[-58,-31],[-55,23],[-41,66],[-45,59],[-35,66],[-32,111],[-16,115],[-36,-16],[18,-191],[42,-145],[55,-85],[37,-123],[-64,-82],[44,-103],[58,-17],[38,53],[55,25],[67,32],[101,-72],[27,-103],[-36,-35],[22,-124],[-83,-15],[-74,-69],[-65,-79],[-3,-135],[92,35],[74,38],[71,45],[69,40],[-4,-163],[55,10],[32,133],[61,-29],[17,-222],[66,21],[82,-25],[40,-144],[49,-85],[-8,-146],[-13,-140],[-71,23],[-80,-93],[-20,123],[-34,117],[-53,38],[41,-149],[-22,-147],[-63,-25],[-67,123],[5,-102],[41,-175],[45,-24],[44,54],[17,-132],[65,77],[113,86],[2,-94],[50,33],[51,-25],[7,123],[57,-32],[75,-11],[69,24],[100,-86],[-26,-135],[33,-153],[-17,-168],[-45,40],[-22,140],[-40,-57],[-66,-24],[-54,-53],[-43,-77],[-4,116],[-24,93],[-45,-101],[12,-104],[-52,-101],[38,-118],[-53,-142],[-31,-50],[13,-158],[64,73],[22,40],[18,33],[35,65],[35,-107],[-45,-85],[-2,-12],[-33,-104],[-42,-121],[-44,-151],[-35,-126],[18,-329],[20,-136],[-7,-15],[-72,23],[-47,-35],[-74,47],[-27,25],[-48,-13],[-38,-47],[-35,41],[-53,71],[-62,147],[-45,62],[-48,46],[-92,-23],[-76,12],[-62,-22],[-2,186],[-50,218],[13,132],[26,78],[-2,160],[27,120],[-40,101],[-8,102],[5,148],[1,125],[-12,161],[53,-1],[-33,137],[-80,-26],[-50,-11],[-56,72],[-30,101],[-36,-59],[-56,-9],[-51,148],[-45,0],[-50,98],[-42,50],[-58,98],[54,122],[18,178],[-62,-117],[-44,71],[-63,-24],[-79,137],[-54,28],[-60,26],[-54,129],[-63,62],[-39,-34],[-53,-29],[-51,31],[-12,8],[-53,66],[6,116],[59,167],[-43,129],[-48,-81],[-27,-157],[-48,35],[-73,40],[-45,-88],[-23,-157],[45,-116],[56,18],[47,-52],[51,-56],[12,-13],[28,-98],[37,-64],[21,-88],[68,-45],[49,-139],[-3,-103],[46,16],[78,-54],[43,-97],[26,-97],[13,-146],[37,-1],[58,-63],[51,-74],[57,-72],[52,-44],[72,-80],[21,-147],[63,-48],[34,-60],[49,-99],[-26,-115],[-61,-22],[28,-182],[26,-160],[-19,-174],[25,-116],[40,-76],[44,-125],[38,-143],[-42,-80],[-51,-92],[-61,-96],[69,-76],[81,16],[33,97],[74,-3],[46,-61],[-44,-98],[-20,-111],[74,-50],[52,-35],[29,-82],[62,-13],[52,-32],[78,-93],[72,-119],[58,-171],[58,20],[78,-5],[47,-9],[43,-29],[35,-3],[62,47],[79,163],[92,184],[42,-85],[-42,-39],[-34,-143],[2,-132],[55,-36],[-53,-112],[-64,-59],[-50,-37],[-52,-56],[-52,-66],[-59,-78],[-60,-89],[-38,-109],[-37,-177],[-26,-135],[-18,-110],[-25,-125],[-44,-162],[-96,-119],[-66,15],[-118,-2],[-4,-165],[-32,-89],[-27,-106],[-76,-151],[-72,66],[-50,158],[-25,128],[26,117],[18,119],[25,92],[26,85],[32,137],[-15,171],[36,105],[54,-15],[69,106],[-48,152],[25,95],[-2,140],[-95,-31],[43,-66],[-13,-112],[-21,-114],[-62,-34],[-61,-17],[-73,-2],[-69,2],[-71,80],[54,144],[-31,111],[-78,1],[33,233],[-43,36],[-58,-126],[-17,-189],[-16,-175],[66,-31],[-25,-82],[5,-104],[4,-193],[5,-195],[-6,-259],[-52,54],[-51,18],[-33,-32],[-39,-6],[-50,-12],[-71,-16],[-79,-15],[-72,-12],[20,179],[20,112],[92,121],[-71,20],[-82,-32],[-40,-31],[-17,-87],[4,-192],[-13,-158],[-45,-45],[-45,-3],[-52,-18],[-67,-25],[-43,93],[12,129],[-31,75],[-60,49],[7,152],[57,178],[12,119],[15,139],[-14,97],[-5,98],[-35,83],[7,94],[40,58],[62,2],[37,40],[52,45],[-37,130],[-30,166],[3,240],[14,45],[35,112],[26,95],[39,78],[4,123],[-5,120],[0,2],[41,-6],[64,32],[70,79],[36,155],[40,-18],[53,-6],[-55,139],[27,138],[52,68],[-62,74],[43,40],[45,88],[-76,106],[-76,18],[8,-164],[-13,-163],[-64,-30],[23,-131],[-31,-153],[-74,2],[-80,10],[1,-127],[-47,34],[-7,5],[-11,-119],[-43,-56],[-49,40],[-57,61],[-49,-114],[49,-30],[54,-76],[28,-101],[-49,-107],[-98,7],[-103,-25],[54,-71],[34,-98],[28,-117],[-46,-129],[-1,-26],[-2,-90],[-68,-31],[-52,-81],[-88,-103],[-12,31],[-61,153],[-15,152],[-3,112],[-7,92],[-8,131],[-110,59],[-88,-15],[-83,-39]],[[66643,73329],[-3,103],[4,74],[-2,88],[2,77],[-2,66],[-2,123],[-2,106],[0,71],[0,77],[0,69],[0,25],[0,46],[0,62],[0,71],[0,69],[0,65],[0,87],[0,145],[0,88],[0,84],[0,5],[3,138],[-3,55],[0,92],[0,65],[0,88],[0,73],[0,84],[0,72],[-4,67],[6,62],[2,80],[-2,131],[0,3],[3,70],[-1,69],[-3,73],[1,140],[2,67],[1,32],[0,31],[0,32],[-2,45],[-2,45],[-1,25],[2,100],[2,92],[-2,97],[-1,57],[0,15],[1,97],[-2,61],[0,59],[0,7],[0,89],[0,71],[0,81],[0,105],[-5,66],[0,110],[7,177],[0,100],[-2,85],[1,74],[1,97],[0,66],[0,162],[0,112],[-1,81],[0,106],[-1,112],[0,83],[0,178],[1,121],[0,70],[5,86],[-6,76],[0,109],[0,92],[0,20],[0,45],[0,56],[0,56],[0,57],[1,87],[-1,62],[0,84],[2,104],[-2,78],[0,89],[0,76],[0,84],[-59,33],[-65,-6],[-34,0],[-41,0],[-29,0],[-59,0],[-25,3],[-19,-2],[-16,-1],[-40,0],[-38,0],[-49,0],[-43,0],[-23,-2],[-29,-4],[-44,6],[-37,0],[-72,6],[-104,-5],[-67,-1],[-7,0],[-52,0],[-135,0],[-23,-1],[-66,1],[-30,0],[-35,0],[-65,-18],[-55,9],[-107,0],[-48,-4],[-129,9],[-39,4],[-32,-4],[-33,4],[-52,5],[-8,-1],[-21,-4],[-65,-19],[-37,19],[-36,0],[-28,-4],[-29,-4],[-41,7],[-45,1],[-25,-2],[-37,-3],[-124,-17],[-27,17],[-24,0],[-78,1],[-110,1],[-64,-1],[-42,-1],[-30,3],[-33,2],[-48,0],[-26,0],[-3,0],[-5,0],[-30,1],[-26,0],[-42,-7],[-50,6],[-31,0],[-104,-5],[-115,5],[-47,-7],[-60,5],[-53,-4],[-29,10],[-38,0],[-27,2],[-23,-8],[-30,-2],[-67,-1],[-23,0],[-37,1],[-25,-1],[-50,5],[-72,-3],[-73,-2],[-63,5],[-52,-5],[-69,0],[-68,-4],[0,-2],[-1,-63],[1,-62],[-1,-69],[-3,-82],[-1,-64],[3,-63],[4,-81],[0,-16],[-2,-63],[0,-68],[-2,-56],[1,-87],[0,-63],[3,-80],[0,-60],[0,-8],[-3,-101],[3,-71],[-4,-55],[2,-93],[2,-194],[1,-65],[-1,-68],[0,-110],[4,-222],[-1,-11],[-9,-90],[0,-153],[2,-127],[-2,-61],[2,-63],[0,-13],[0,-57],[0,-128],[0,-60],[-2,-99],[10,-105],[0,-9],[-1,-223],[0,-73],[-3,-93],[1,-88],[-4,-91],[4,-79],[-1,-96],[0,-105],[0,-73],[0,-49],[0,-34],[-1,-77],[1,-77],[-4,-56],[4,-104],[0,-174],[0,-1],[4,-119],[-1,-65],[-3,-57],[0,-80],[0,-131],[0,-76],[0,-80],[0,-56],[0,-59],[12,-44],[3,-14],[33,-34],[31,-32],[27,-28],[26,-28],[48,-49],[46,-46],[39,-42],[47,-42],[38,-54],[27,-22],[26,-28],[33,-40],[44,-48],[28,-29],[31,-40],[28,-33],[30,-22],[2,-2],[24,-32],[25,-26],[9,-10],[46,-44],[27,-23],[23,-25],[23,-30],[30,-39],[29,-37],[18,-21],[4,-5],[34,-34],[42,-40],[55,-54],[41,-48],[26,-29],[1,0],[26,-24],[42,-48],[26,-28],[7,-8],[72,-75],[25,-25],[30,-32],[39,-43],[23,-20],[95,-106],[65,-60],[4,-3],[42,-51],[24,-29],[21,-25],[21,-25],[21,-23],[27,-28],[88,-104],[51,-48],[25,-27],[72,-83],[20,-26],[75,-72],[88,-95]],[[64634,73139],[-77,-186],[-21,-55],[-21,-58],[-18,-52],[-22,-58],[-23,-46],[-20,-30],[-9,-27],[-5,-19],[-18,-37],[-12,-52],[-10,-51],[-20,-45],[-31,-28],[-27,-11],[-27,-6],[-51,7],[-26,10],[-26,21],[-15,20],[-6,8],[-21,40],[-17,48],[-17,42],[-20,36],[-21,27],[-26,23],[-23,13],[-29,9],[-25,11],[-23,13],[-7,3],[-18,9],[-40,23],[-51,22],[-28,12],[-29,12],[-27,11],[-25,3],[-33,-4],[-35,-11],[-23,-9],[-24,-15],[-12,-17],[-8,-11],[-22,-28],[-29,-20],[-26,-25],[-29,-62],[-18,-35],[-24,-32],[-23,-37],[-22,-47],[-25,-47],[-15,-55],[-18,-56],[-26,-31],[-21,-35],[-19,-38],[-44,-9],[-27,-1],[-24,5],[-29,23],[-20,26],[-31,25],[-22,-22],[-25,-2],[-30,-32],[-27,-22],[-33,-48],[-17,-43],[-1,-3],[-21,-28],[-26,-28],[-6,-55],[14,-48],[6,-55],[-20,-24],[-17,-19]],[[62850,71826],[-23,-36],[-27,-4],[-23,15],[-40,58],[-23,12],[-19,36],[-14,56],[-9,66],[-3,29],[-3,19],[-2,17],[1,77],[-6,65],[-22,14],[-29,9],[-30,5],[-27,-12],[-24,6],[-23,18],[-8,19],[-10,25],[-16,45],[-26,59],[-21,47],[-20,18],[-4,4],[-38,2],[-29,10],[-31,25],[-14,43],[-31,68],[-22,18],[-27,5],[-27,23],[-23,7],[-23,-23],[-22,20],[-20,41],[-37,40],[-23,6],[-26,4],[-24,14],[-23,19],[-27,17],[-27,22],[-22,33],[-12,27],[-6,13],[-6,37],[-2,16],[-13,52],[-16,49],[-25,43],[-27,34],[-19,44],[-17,55],[-16,44],[-20,26],[-23,29],[-14,49],[-12,54],[-17,56],[-22,45],[-19,33],[-19,34],[-36,50],[-23,18],[-27,-7],[-22,-14],[-30,4],[-24,-11],[-24,-23],[-36,11],[-15,57],[0,58],[21,67],[2,35],[1,26],[-20,36],[-29,6],[-25,12],[-26,23],[-24,18],[-17,38],[-19,46],[-20,43],[-22,27],[-19,31],[-22,14],[-25,11],[-24,-3],[-24,8],[-26,8],[-24,10],[-19,33],[-22,30],[-16,45],[-16,47],[-33,63],[-26,30],[-31,40],[-19,48],[-21,41],[-23,26],[-29,37],[-56,46],[-16,41],[3,66],[-2,61],[1,78],[20,37],[29,25],[26,27],[23,53],[10,54],[12,52],[16,173],[16,45],[10,67],[14,54],[17,66],[15,41],[-3,62],[3,106],[2,56],[-4,72],[-2,60],[-1,99],[8,56],[19,45],[25,36],[20,29],[25,22],[25,21],[23,-5],[4,19],[7,38],[-18,75],[-23,14],[-23,9],[-23,42],[-24,35],[-29,32],[-28,11],[-25,12],[-18,37],[-11,49],[-12,47],[-19,37],[-26,34],[-32,10],[-23,-21],[-35,-8],[-21,23],[-14,58],[0,11],[1,56],[18,35],[25,10],[19,32],[4,58],[6,82],[12,48],[1,61],[-11,51],[-12,47],[-20,28],[-20,25],[-23,16],[-30,17],[-23,-11],[-24,12],[-21,19],[-29,32],[-23,4],[-21,24],[-24,1],[-25,-18],[-25,-25],[-23,-20],[-23,-22],[-28,15],[-27,44],[-7,54],[-18,45],[-27,1],[-21,-28],[-7,-48],[-1,-8],[-14,-44],[0,-65],[-1,-57],[-23,-22],[-29,14],[-19,30],[-18,43],[-14,49],[-12,53],[-13,44],[-17,52],[-20,42],[-26,17],[-28,-2],[-32,-33],[-29,-50],[-25,-51],[-15,-48],[-12,-60],[-13,-83],[-14,-46],[-17,-38],[-22,-21],[-25,6],[-20,45],[4,60],[8,56],[-1,57],[-22,13],[-34,-19],[-25,-5],[-23,-3],[-32,25],[-20,32],[-6,11],[-12,22],[-18,57],[-27,22],[-31,-7],[-22,-20],[-17,-66],[-31,-43],[-28,-3],[-23,19],[-18,43],[-23,23],[-17,42],[-16,92],[-6,66],[-3,78],[-6,53],[-23,59],[-20,43],[-19,44],[-21,48],[-25,37],[-17,59],[-19,45],[-18,37],[-28,39],[-30,34],[-28,17],[-26,-5],[-26,-13],[-23,10],[-24,12],[-23,11],[-23,-5],[-24,-11],[-21,25],[-12,51],[-16,72],[-3,5],[-17,40],[-21,41],[7,56],[26,21],[23,-2],[11,52],[1,68],[-13,60],[-20,45],[-28,40],[-17,55],[-9,68],[-9,66],[-14,49],[-16,46],[-13,49],[-14,54],[-5,63]],[[58698,79377],[30,-61],[21,22],[-6,58],[6,57],[1,56],[-1,63],[-6,59],[-7,53],[11,52],[22,4],[24,-18],[25,-3],[23,-11],[22,-13],[23,22],[5,55],[-21,30],[-22,30],[-26,26],[-22,15],[-21,25],[-24,20],[-28,38],[-15,52],[-7,58],[15,42],[22,10],[25,14],[16,41],[-17,38],[-22,22],[-19,-34],[-19,-38],[-25,-1],[-25,7],[-21,28],[-14,52],[-15,65],[-2,56],[-6,53],[-12,47],[-24,4],[-19,36],[-5,60],[-8,57],[-7,54],[-8,57],[-5,60],[-10,47],[-1,3],[22,25],[1,0],[0,1],[-13,45],[2,64],[15,49],[20,26],[-25,3],[-30,-17],[-4,68],[11,55],[22,9],[19,41],[22,30],[34,3],[19,-29],[4,59],[24,40],[28,33],[-26,16],[-12,74],[16,48],[25,-20],[34,-20],[34,31],[25,-8],[1,60],[-15,43],[37,13],[27,-29],[24,-27],[39,-20],[-21,24],[-21,44],[-16,41],[-23,13],[-6,65],[-20,-24],[-20,37],[-1,75],[-5,61],[-22,25],[-21,28],[-22,14],[-29,26],[-8,16],[-23,43],[139,260],[9,87],[-124,39],[0,160],[43,72],[7,210],[18,266],[63,61],[61,-50],[31,83],[-18,77],[-94,-16],[-157,85],[-5,188],[1,55],[-21,-27],[-23,5],[-21,37],[3,56],[-10,50],[-6,55],[13,49],[-23,-23],[-28,-33],[-24,-5],[-22,10],[-12,-49],[-21,29],[1,58],[17,45],[14,44],[-20,27],[-7,56],[3,60],[26,9],[28,-20],[33,-42],[0,10],[-3,66],[11,54],[-15,24],[-4,6],[-11,52],[-9,58],[-41,95],[74,-28],[81,78],[-25,127],[-74,77],[0,55],[74,39],[32,-50],[108,-55],[11,94],[66,122],[20,45],[36,104],[-16,111],[-52,5],[-101,-127],[-59,44],[-24,61],[-122,155],[-2,116],[110,-33],[57,-22],[-50,144],[-92,155],[114,79],[15,77],[24,129],[-59,6],[-17,80],[104,102],[21,96],[-6,147],[34,137],[23,-40],[55,11],[32,-2],[33,126],[-30,58],[-16,44],[23,28],[15,65],[20,-24],[2,-3],[24,9],[64,-5],[33,-6],[7,-1],[11,36],[41,128],[12,139],[-31,62],[-8,15],[-16,41],[0,1],[5,161],[3,88],[0,1],[13,145],[25,232],[11,94],[16,116],[7,54],[41,284],[15,141],[61,451],[32,241],[23,173],[13,89],[2,17],[4,38],[17,118],[16,103],[25,174],[123,836],[49,318],[43,291],[8,54],[33,209],[30,202],[16,109],[3,19],[9,68],[16,116],[26,175],[1,7],[37,291],[10,63],[18,102],[15,81],[10,55],[13,52],[2,66],[11,79],[2,13],[41,304],[2,12],[21,119],[15,84],[22,177],[56,397],[45,320],[9,63],[20,121],[19,122],[9,59],[8,67],[31,235],[91,599],[17,122],[23,175],[58,355],[22,138],[56,359],[26,193],[18,115],[17,112],[21,129],[27,169],[103,659],[29,149],[12,86],[40,290],[47,299],[23,133],[25,178],[18,138],[15,96],[8,55],[32,178],[10,57]],[[60839,99875],[1,0],[52,0],[20,1],[194,0],[61,0],[24,-1],[153,6],[155,0],[35,0],[101,0],[25,0],[45,0],[312,5],[119,0],[71,0],[120,0],[97,0],[30,1],[12,1],[50,1],[3,1],[35,2],[106,5],[27,-3],[10,-1],[54,-1],[76,-1],[42,1],[89,0],[172,0],[27,0],[135,0],[32,3],[177,-3],[42,0],[65,0],[111,0],[47,0],[58,0],[1,0],[204,0],[143,4],[185,1],[46,1],[310,-1],[89,4],[24,1],[7,0],[212,1],[26,0],[160,0],[187,0],[144,0],[124,-10],[17,0],[42,4]],[[58698,79377],[-27,86],[-18,37],[-22,7],[-26,-27],[-11,-60],[-21,24],[-13,54],[2,63],[-24,15],[-27,-25],[-24,-16],[-24,-7],[-23,-14],[-21,-21],[-23,3],[-22,-8],[-24,-22],[-23,11],[-23,30],[-13,45],[-20,40],[-26,20],[-26,1],[-25,-3],[-22,-18],[-24,-14],[-22,-27],[-23,-20],[-15,-44],[0,-9],[4,-47],[5,-54],[15,-43],[-17,-37],[-23,0],[-18,33],[-17,39],[-15,44],[-24,5],[-22,16],[-25,15],[-24,-31],[-23,-2],[-25,9],[-22,19],[-23,13],[-24,6],[-24,18],[-23,17],[-19,33],[-18,34],[-25,2],[-24,-7],[-22,16],[-23,11],[-14,50],[-24,21],[-18,36],[-12,48],[-18,36],[-21,20],[-23,11],[-25,16],[-22,30],[-24,9],[-21,-26],[-17,-45],[-22,-17],[-22,20],[-20,32],[-24,10],[-21,25],[-5,57],[-16,44],[-24,20],[-16,-40],[-23,-1],[-25,-6],[-22,-31],[-12,-47],[2,-57],[-22,11],[-24,-14],[-23,3],[-23,-2],[-24,-1],[-24,-3],[-22,-19],[-19,-35],[-23,13],[-21,22],[-21,26],[-18,41],[-16,39],[-13,62],[-8,54],[-21,27],[-23,8],[-15,19],[-6,7],[-17,39],[-18,32],[-24,12],[-24,-16],[-22,-17],[-24,-22],[-19,-31],[-12,-48],[-22,-14],[-21,33],[-27,-1],[-27,-18],[-23,6],[-24,2],[-23,-1],[-4,18],[-8,35],[-22,11],[-23,-21],[-10,-28],[-8,-21],[-23,-15],[-25,16],[-30,-3],[-27,-14],[-18,-55],[-21,-29],[-25,0],[-19,-43],[-23,-34],[-16,-39],[-20,-33],[-20,-35],[-20,-40],[-10,-52],[-25,1],[-24,-6],[-26,-22],[-21,14],[-29,-5],[-22,6],[-27,0],[-28,4],[-40,4],[-23,-15],[-23,-14],[-27,-34],[-27,-30],[-26,-9],[-24,-24],[-4,2],[-19,14],[-23,-12],[-24,-4],[-28,34],[-24,6],[-11,-48],[-11,-50],[-15,-43],[-23,4],[-24,3],[-23,7],[-23,15],[-16,42],[-21,27],[-21,-28],[-20,-28],[-22,10],[-18,47],[-26,44],[-5,58],[-3,58],[-26,24],[-22,21],[-41,42],[-24,25],[-23,18],[-21,21],[-25,28],[-30,25],[-75,82],[-19,36],[-22,48],[-24,14],[-23,-19],[-17,-49],[12,-50],[-10,-51],[-23,-6],[-38,5],[-69,14],[-25,6],[-29,8],[-33,-10],[-27,-5],[-21,30],[-18,42],[-19,43],[-20,36],[-24,16],[-32,10],[-24,5],[-22,19],[-26,10],[-22,-14],[-33,-7],[-31,-4],[-18,58],[-17,45],[-36,69],[-25,5],[-25,11],[-38,33],[-39,36],[-35,28],[-30,0],[-23,-16],[-23,-8],[-43,-10],[-29,-10],[-24,16],[-21,24],[-16,12],[-15,11],[-28,9],[-33,14],[-37,15],[-35,7],[-31,-15],[-45,-41],[-30,-35],[-22,-19],[-24,-26],[-23,7],[-23,6],[-23,-2],[-36,-19],[-22,-37],[-25,7],[-25,6],[-20,32],[-21,-20],[-23,-30],[-26,14],[-25,-16],[-24,-20],[-32,-15],[-22,-9],[-26,-11],[-23,-18],[-22,-36],[-23,-31],[-29,-29],[-29,-12],[-67,-98],[-28,-19],[-9,-32],[-7,-25],[-20,-33],[-21,-31],[-25,-40],[-16,-48],[-2,-6],[-16,-50],[-33,-75],[-35,-80],[-51,-98],[-39,-31],[-23,-18],[-44,-40],[-35,-18],[-29,6],[-24,1],[-22,11],[-23,14],[-38,36],[-30,26],[-29,24],[-29,37],[-25,35],[-38,22],[-38,2],[-20,39],[-23,18]],[[52253,79584],[-37,64],[-1,1],[13,41],[6,20],[17,54],[16,56],[0,3],[1,59],[0,10],[4,65],[6,59],[9,74],[0,7],[8,59],[9,67],[12,50],[11,66],[16,43],[23,49],[28,59],[28,61],[21,43],[33,68],[-5,70],[14,54],[22,76],[11,74],[4,31],[2,78],[3,85],[-3,77],[34,191],[10,50],[6,62],[-3,78],[-8,79],[9,53],[18,96],[21,118],[11,57],[15,82],[20,113],[16,96],[17,97],[9,71],[5,60],[9,63],[5,66],[5,71],[3,73],[-3,69],[-9,62],[-5,59],[-7,76],[1,56],[13,51],[16,45],[21,28],[12,17],[11,16],[16,44],[20,47],[22,34],[19,33],[20,46],[19,55],[16,48],[17,42],[15,47],[14,56],[13,52],[17,55],[19,37],[18,34],[11,29],[6,16],[10,51],[14,67],[13,67],[10,58],[10,57],[14,68],[14,51],[23,70],[21,71],[14,47],[7,55],[9,74],[11,52],[11,53],[9,51],[7,63],[10,68],[15,42],[21,52],[28,68],[16,46],[22,66],[20,41],[18,35],[16,43],[19,68],[-1,64],[-21,44],[-22,48],[-15,41],[-1,4],[-14,61],[-10,61],[8,55],[7,66],[2,73],[0,76],[2,66],[4,66],[7,65],[15,50],[19,42],[-2,56],[-7,59],[-2,66],[16,41],[23,45],[16,39],[20,48],[40,90],[15,43],[17,42],[16,42],[14,52],[16,65],[10,50],[8,59],[16,51],[15,46],[-4,62],[-10,58],[-11,56],[-20,31],[-10,58],[-13,56],[-24,16],[-18,38],[-24,-4],[-22,-12],[-17,37],[-14,48],[-24,21],[-21,43],[-20,26],[-15,45],[-19,33],[-9,52],[-20,29],[-23,10],[-22,21],[-22,20],[-22,18],[-20,29],[-13,45],[-8,57],[-19,40],[-22,17],[-12,23],[-11,18],[-23,-5],[-18,-38],[-24,-19],[-26,7],[-13,47],[-19,45],[3,58],[-15,45],[-19,31],[-10,51],[-21,29],[-1,56],[9,59],[13,48],[-9,54],[-8,53],[-2,67],[-23,6],[-22,37],[-23,15],[-27,9],[-24,18],[-23,13],[-23,-16],[-25,14],[-23,15],[-24,-17],[-13,47],[-9,62],[-13,49],[-16,42],[0,58],[-15,51],[5,54],[-16,39],[5,57],[3,58],[-20,47],[-21,24],[-22,20],[-20,26],[-24,2],[-22,-19],[-27,3],[-23,-2],[-23,-22],[-23,1],[-21,-20],[-26,15],[-22,16],[-23,6],[4,63],[-24,-12],[-22,-20],[-18,30],[-25,-15],[-22,19],[-15,49],[-9,57],[18,37],[-14,44],[5,55],[0,59],[8,54],[16,51],[19,44],[5,59],[13,53],[17,64],[11,68],[11,60],[-5,55],[-6,81],[-4,57],[-8,93],[-17,62],[-25,19],[-23,-3],[-24,2],[-23,26],[-12,49],[-12,48],[-15,63],[-10,59],[-12,60],[-21,27],[-57,25],[-24,-15],[-22,-23],[-21,-7],[-3,-1],[-21,-31],[-23,16],[-7,61],[-20,35],[-20,38],[-22,10],[-18,45],[-11,52],[16,43],[-3,57],[1,44],[0,12],[-16,24],[-5,7],[-18,34],[-22,61],[-18,39],[-10,59],[-18,40],[-22,17],[-24,6],[-25,40],[-19,39],[-20,47],[-20,53],[-13,58],[-23,3],[-12,49],[-7,63],[-22,22],[-31,17],[-26,12],[-28,-4],[-27,7],[-23,3],[-24,-5],[-28,-15],[-25,-5],[-25,-20],[-17,-39],[-17,-51],[-16,-41],[-13,-48],[-18,-32],[-21,-44],[-26,5],[-23,30],[-33,32],[-24,24],[-35,50],[-4,67],[22,3],[26,20],[15,41],[14,86],[-12,65],[-27,43],[-38,35],[-28,4],[-22,7],[-27,7],[-39,5],[-34,1],[-24,12],[-40,38],[-20,44],[17,39],[27,29],[34,14],[47,36],[-15,43],[-29,32],[-22,15],[-28,-2],[-23,-17],[-59,-59],[-27,-81],[-24,-73],[-22,-31],[-15,47],[-2,79],[11,59],[0,58],[-19,48],[-1,2],[-31,42],[-25,25],[-9,14],[-22,32],[-27,39],[-35,43],[-25,51],[-19,43],[-12,51],[-24,113],[-2,78],[-1,58],[-33,99],[-25,23],[-41,37],[-22,19],[-30,15],[-24,3],[-28,-22],[-34,-60],[-12,-49],[-12,-47],[-9,-78],[10,-95],[15,-66],[21,-55],[6,-61],[-25,-11],[-54,14],[-15,51],[-11,53],[-19,60],[-12,56],[-23,41],[-27,31],[-26,15],[-26,22],[-10,56],[13,51],[10,67],[-3,33],[-2,30],[-11,51],[-21,44],[-24,9],[-27,5],[-28,-9],[-48,9],[-57,34],[-31,2],[-27,1],[-28,9],[-24,12],[-55,7],[-21,-38],[1,-57],[-3,-69],[-26,-17],[-34,28],[6,65],[-14,82],[-19,37],[-5,11],[-56,129],[-22,42],[-23,8],[-30,16],[-31,17],[-31,37],[-27,56],[-32,94],[-18,45],[-23,27],[-20,44],[-30,91],[15,46],[36,16],[24,19],[28,11],[23,8],[16,52],[22,49],[14,43],[-13,47],[-18,48],[-26,27],[-29,16],[-25,1],[-29,24],[-17,47],[-23,15],[-15,44],[-16,57],[-14,48],[-13,51],[8,53],[0,59],[-6,72],[0,57],[2,60],[-19,30],[-18,34],[-2,69],[17,42],[22,23],[23,15],[27,14],[27,0],[23,-15],[29,-12],[28,-20],[30,-27],[27,-20],[23,-43],[14,-44],[-4,-59],[10,-70],[26,-63],[22,-27],[19,-62],[10,-52],[24,-31],[25,-17],[22,-18],[24,-13],[25,6],[21,15],[33,8],[27,11],[28,0],[24,-4],[26,-2],[26,-4],[29,-1],[26,5],[32,19],[24,32],[9,58],[-15,48],[-21,48],[-23,53],[-12,54],[13,55],[20,60],[26,45],[28,24],[26,17],[34,34],[24,27],[8,57],[-16,48],[-27,55],[-16,46],[-19,41],[-22,37],[2,60],[18,40],[24,79],[12,51],[16,52],[22,39],[25,48],[27,36],[24,16],[23,18],[16,45],[23,47],[5,61],[-2,64],[-12,66],[-11,67],[-8,59],[16,45],[16,47],[20,36],[22,17],[20,32],[23,-17],[25,-19],[34,-28],[30,-27],[29,-28],[17,45],[4,58],[0,69],[5,89],[22,17],[32,1],[24,-21],[25,-15],[24,20],[23,20],[37,28],[21,24],[29,39],[23,16],[22,31],[24,53],[15,43],[24,23],[17,38],[22,30],[29,68],[12,49],[20,47],[14,47],[3,59],[-5,41],[-2,20],[-21,32],[-15,55],[9,60],[0,58],[-2,59],[-1,55],[-14,46],[-23,13],[-21,27],[-19,34],[-16,44],[-13,46],[-17,40],[-19,30],[-27,14],[-17,39],[6,75],[13,59],[8,54],[31,27],[23,5],[27,-5],[26,-16],[20,-25],[24,-8],[25,5],[26,-4],[26,1],[23,-1],[27,-9],[40,-11],[24,-9],[24,-5],[24,-7],[26,18],[35,25],[42,29],[44,32],[28,27],[24,25],[26,48],[13,58],[5,71],[-9,50],[-17,50],[-22,32],[-21,38],[-23,24],[-25,7],[-24,18],[-25,15],[-25,13],[-23,39],[-23,51],[-21,26],[-4,56],[3,69],[13,56],[20,38],[28,19],[30,5],[22,11],[34,13],[35,7],[21,21],[23,22],[22,40],[-4,60],[5,61],[20,27],[6,68],[-6,68],[-17,66],[-22,43]],[[51167,99823],[143,0],[3,0],[120,0],[95,-1],[40,0],[153,0],[51,0],[36,0],[48,-1],[34,0],[29,0],[98,0],[56,0],[42,0],[86,2],[22,0],[42,0],[13,1],[127,1],[18,0],[59,0],[48,0],[38,0],[124,1],[18,0],[35,0],[91,0],[68,0],[94,0],[245,0],[13,0],[11,0],[8,0],[39,0],[2,0],[28,0],[9,0],[26,0],[89,0],[38,1],[31,0],[65,0],[116,0],[51,0],[61,0],[54,0],[138,0],[33,0],[125,1],[346,0],[29,0],[179,0],[1,0],[58,-1],[16,0],[54,-1],[71,0],[20,1],[19,1],[86,-1],[100,-2],[21,0],[145,2],[105,2],[80,4],[23,1],[38,2],[43,0],[8,0],[1,0],[4,-1],[24,1],[77,0],[45,0],[63,1],[52,0],[30,0],[105,0],[30,0],[149,-13],[44,-4],[137,7],[76,4],[50,0],[92,5],[18,2],[1,0],[242,4],[20,2],[107,9],[1,0],[126,0],[96,6],[32,0],[15,0],[51,0],[24,0],[1,0],[3,0],[51,4],[90,7],[81,0],[51,0],[3,0],[115,0],[69,-6],[53,0],[75,0],[1,0],[131,0],[146,-5],[42,-2],[59,0],[36,0],[4,-1],[12,-1],[3,0],[31,1],[29,0],[6,-1],[8,0],[67,-5],[116,1],[103,2],[183,6],[26,0],[30,0],[42,-3],[22,-1],[22,-2],[115,0],[2,0],[108,0],[115,6],[42,0],[48,0],[41,0],[16,0],[3,0],[4,0],[70,1],[7,0],[41,-1],[41,0],[340,2],[57,3],[93,1],[180,4],[22,-3],[14,0],[133,-2],[124,0],[148,11],[30,0]],[[52253,79584],[-17,-25]],[[52236,79559],[-57,-54],[-4,-5],[-43,-46],[-42,-55],[-125,-135],[-82,-95],[-36,-39],[-37,-41],[-95,-115],[-33,-30],[-51,-58],[-48,-52],[-60,-61],[-26,-26],[-38,-37],[-24,-28],[-194,-229],[-45,-53],[-29,-32],[-28,-30],[-4,-5],[-45,-45],[-25,-28],[-72,-84],[-30,-30],[-35,-37],[-24,-32],[-24,-27],[-18,-20],[-109,-123],[-42,-46],[-78,-83],[-100,-116],[-93,-107],[-24,-27],[-30,-59],[-55,-49],[-66,-74],[-146,-166],[-101,-117],[-38,-43],[-103,-119],[-89,-108],[-81,-98],[-77,-89],[-34,-50],[-140,-163],[-49,-58],[-122,-147],[-36,-39],[-49,-40],[-134,-141],[-49,-68],[-51,-50],[-8,-10],[-246,-286],[-2,-2],[-64,-68],[-13,-15],[-11,-12],[-113,-119],[-64,-80],[-25,-30],[-23,-24],[-26,-28],[-103,-117],[-61,-64],[-38,-40],[-80,-102],[-58,-63],[-49,-57],[-38,-44],[-102,-117],[-48,-55],[-88,-101],[-103,-119],[-47,-52],[-34,-37],[-83,-108],[-22,-22],[-55,-55],[-35,-36],[-45,-56],[-81,-79],[-22,-30],[-70,-93],[-61,-67],[-41,-47],[-21,-23],[-21,-23],[-495,-540],[-41,-41],[-116,-133],[-8,-9],[-89,-105],[-64,-68],[-88,-111],[-40,-43],[-6,-7],[-26,-28],[-58,-61],[-24,-30],[-87,-26],[-96,4]],[[45727,72371],[-56,257],[-333,498],[-81,163],[-38,77],[-69,139],[-52,106],[-167,214],[-122,54],[-270,122],[-256,315],[-168,121],[-104,75],[-179,198],[-62,224],[-45,105],[-81,188],[-56,206],[-26,96],[-99,155],[-84,273],[0,251],[-23,95],[24,113],[0,223],[-94,268],[-213,-19],[-166,-110],[-119,-79],[-188,-14],[-196,92],[-134,-42],[-162,46],[-217,148],[-79,105],[-1,1],[-132,25],[-116,23],[-152,93],[-183,204],[-142,109],[-193,342],[-109,128]],[[45468,99832],[14,0],[29,1],[57,0],[18,0],[98,-3],[9,0],[38,-1],[22,0],[138,-1],[20,0],[33,0],[51,0],[26,0],[49,-1],[166,0],[96,-1],[291,-2],[33,0],[85,0],[89,-1],[27,0],[24,0],[317,-2],[9,0],[14,0],[29,0],[66,1],[175,2],[28,0],[32,0],[24,1],[17,0],[47,0],[72,0],[55,0],[64,0],[28,0],[151,1],[131,0],[5,0],[18,0],[229,0],[91,0],[71,0],[120,0],[15,0],[66,0],[39,0],[29,0],[299,0],[11,0],[39,0],[258,0],[7,0],[490,-1],[63,0],[101,0],[32,0],[200,0],[111,0],[34,0],[55,-1],[15,0],[17,-1],[6,-1],[1,0],[6,2],[13,1],[6,2],[8,-1],[11,0],[4,-1],[8,0],[5,0],[22,0],[10,0],[18,-1],[16,0],[70,0],[334,-1],[68,0],[6,0]],[[73783,62275],[21,-121],[-35,-122],[53,25],[48,-91],[14,-136],[-73,-2],[-41,52],[-56,-47],[-36,-103],[-8,-25],[48,-34],[14,-9],[56,-48],[51,24],[4,-188],[61,-146],[32,-116],[-34,-78],[64,-83],[34,-118],[14,-50],[27,-107],[-65,17],[-52,-19],[-73,102],[-59,140],[-37,-92],[4,-28],[20,-125],[42,-183],[-5,-1],[-66,-12],[-34,23],[-22,132],[-56,84],[-36,24],[-53,18],[-54,120],[-81,61],[-48,15],[-23,125],[-58,110],[-38,142],[-41,81],[-51,58],[-24,177],[22,192],[2,96],[8,148],[33,222],[76,150],[60,-16],[27,26],[53,50],[28,-147],[32,-122],[73,-108],[15,112],[-41,105],[-14,97],[-3,25],[77,15],[-5,73],[-4,72],[40,105],[11,27],[98,-133],[71,-17],[28,-73],[13,-34],[2,-23],[6,-64],[-36,-127],[-10,-46],[-10,-51]],[[83841,80889],[1,-13],[2,-28],[8,-557],[6,-153],[5,-114],[5,-121],[22,-578],[3,-64],[7,-184],[0,-4],[17,-611],[4,-153],[16,-453],[13,-348],[12,-268],[6,-233],[11,-335],[0,-7],[6,-222],[1,-29],[34,-1097],[7,-231],[14,-423],[12,-361],[0,-2],[1,-17],[0,-3],[13,-440],[8,-224]],[[84075,73616],[-14,47],[-33,7],[-35,-16],[-33,-1],[-40,4],[-31,21],[-24,12],[-29,1],[-26,4],[-21,-24],[-29,-22],[-22,-31],[-24,0],[-35,24],[-32,29],[-24,-45],[-27,-37],[-40,39],[-24,-6],[-25,-23],[-26,-5],[-23,-6],[-28,-51],[-23,-28],[-23,-3],[-19,-42],[-24,24],[-36,-9],[-25,-9],[-24,-14],[-29,12],[-24,16],[-13,-54],[-12,-54],[-21,-26],[-30,5],[-36,25],[-24,10],[-25,20],[-14,46],[-27,52],[-27,-41],[-11,-56],[-20,-36],[-33,35],[-1,76],[-54,80],[-86,28],[-32,-17],[-18,38],[-25,-6],[-39,12],[-23,3],[-31,32],[-30,11],[-19,53],[-37,44],[-16,44],[-27,58],[-25,33],[-24,21],[-29,8],[-25,27],[-19,31],[-36,29],[-27,23],[-19,-36],[-24,7],[-12,29],[-5,10],[-23,15],[-12,55],[14,65],[-1,40],[0,25],[-24,27],[-31,24],[-32,4],[-29,-19],[-22,-13],[-22,40],[-25,4],[-25,21],[-27,-2],[-20,44],[-22,15],[-30,1],[-35,31],[-11,55],[-26,18],[-26,-14],[-24,-20],[-24,-32],[-29,-25],[-27,14],[-18,36],[-24,22],[-18,1],[-14,1],[-44,-57],[-23,-57],[-21,-53],[-26,-65],[-28,-76],[-28,-48],[-29,-29],[-5,-61],[13,-62],[-1,-79],[-23,-78],[-31,4],[-32,1],[-25,18],[-12,58],[-25,22],[-50,-45],[-40,-48],[-36,-36],[-25,10],[-18,46],[-13,86],[-9,63],[-30,53],[-28,12],[-33,-9],[-22,-38],[-16,-42],[-5,-65],[-2,-60],[3,-72],[12,-56],[-25,-44],[-32,-8],[-43,-8],[-152,-59],[-119,-47],[-51,-22],[-49,-31],[-62,-35],[-45,-7],[-38,16],[-40,27],[-30,7],[-14,-1],[-11,0],[-33,-20],[-68,-74],[-38,-34],[-42,-46],[-55,-57],[-53,-41],[-55,-36],[-32,-5],[-28,10],[-28,28],[-31,59],[-13,45],[-24,47],[-19,32],[-22,18],[-24,8],[-26,-11],[-32,-34],[-33,-46],[-34,-37],[-53,14],[-53,34],[-41,31],[-19,34],[-28,58],[-22,50],[-25,46],[-34,33],[-48,21],[-58,-12],[-96,-75],[-39,-3],[-32,11],[-31,19],[-27,21],[-24,17],[-35,-10]],[[78902,73601],[-45,-69],[-10,-178],[-64,-45],[-74,-22],[-52,51],[-61,36],[-49,-21],[-52,14],[-65,136],[-87,-9],[-63,-175],[-29,-145],[-57,-131],[-31,-177],[-59,-140],[-41,2],[-45,14],[-57,45],[-45,-80],[-8,-13],[-22,-12],[-22,-13],[-7,-125],[-58,-41],[-2,-1],[-88,-69],[-62,-48],[-7,-113],[-40,-87],[-84,-99],[-58,25],[-9,-108],[-51,-35],[-76,-99],[-70,-149],[-57,-135],[-11,-35],[-34,-109],[-38,-104],[-45,-43],[-2,-129],[-48,-79],[32,-91],[-29,-72],[-41,-77],[-25,-85],[-4,-126],[-14,-196],[60,-164],[65,-114],[59,-85],[70,-52],[79,-56],[70,-27],[60,12],[42,-55],[55,-13],[33,-53],[60,-159],[30,-106],[-41,-197],[-12,-101],[-89,-80],[-54,-114],[-44,-86],[-41,-22],[-44,-53],[-48,-48],[-58,-76],[-70,-52],[-26,120],[-100,-37],[-55,7],[-69,19],[14,-161],[-21,-87],[-54,-38],[-51,-4],[-40,-85],[-54,1],[-38,-70],[4,-129],[8,-134],[29,-117],[38,-145],[50,-56],[53,-45],[41,-44],[36,-73],[-52,-114],[-75,-67],[-56,-10],[-47,-22],[-52,25],[-45,110],[-9,-143],[-44,40],[-39,87],[-38,81],[-50,49],[22,-139],[-17,-91],[54,-45],[67,-67],[-88,-142],[-81,-52],[-63,-14],[27,-147],[-21,-107],[-72,58],[-37,-119],[48,-25],[-45,-112],[-51,-77],[-27,-107],[-61,-162],[-56,-73],[-30,-85],[-53,-113],[-48,64],[-21,117],[9,117],[-45,183],[-58,91],[-80,97],[-60,-164],[-42,-67],[-29,-137],[-13,-153],[-35,-73],[-42,-77],[-52,-141],[-63,-88],[-76,52],[-46,57],[-34,27],[-46,-38],[-37,-68],[-72,-45],[-55,-64],[-52,-114],[-27,-145],[-49,-64],[-40,-36],[-20,89],[-14,101],[15,83],[22,104],[39,187],[32,109],[36,160],[-26,293],[50,86],[32,74],[61,18],[80,112],[81,87],[56,-52],[32,77],[38,66],[-21,125],[6,179],[73,10],[9,92],[54,52],[-27,112],[26,111],[16,142],[73,18],[86,149],[-55,133],[-60,-69],[-47,-59],[-95,19],[-1,145],[-65,44],[10,188],[-13,157],[11,161],[22,139],[63,53],[16,84],[50,55],[82,25],[23,-134],[42,-40],[62,8],[34,143],[-79,14],[-35,63],[-38,61],[-76,16],[-66,-48],[-70,-19],[12,-163],[-40,1],[-53,-13],[-24,-98],[-5,-97],[-49,-29],[45,-96],[-24,-121],[27,-137],[-62,-64],[-48,-74],[-41,-60],[84,-60],[40,-76],[39,-59],[-7,-111],[44,21],[45,-58],[2,-176],[-32,-130],[-59,-124],[-52,-172],[-46,-122],[-66,50],[-78,-33],[-55,-87],[4,178],[-28,160],[-77,-59],[-57,99],[-8,177],[-50,28],[-34,88],[5,109],[-36,-23],[-46,-10],[39,240],[-40,182],[-1,175],[-44,94],[28,129],[-47,30],[4,163],[47,101],[52,126],[71,28],[-57,161],[7,108],[18,155],[-44,-31],[-48,-96],[-20,-223],[-25,-134],[-75,-93],[-85,62],[-24,137],[-47,-144],[20,-135],[64,-60],[41,-67],[19,-118],[5,-169],[38,-131],[-23,-156],[29,-155],[-47,-93],[18,-166],[15,-107],[41,-94],[-5,-106],[19,-97],[37,-9],[47,-17],[50,-125],[74,-179],[-40,-224],[-67,40],[-57,38],[-36,-66],[-55,-24],[-19,86],[-8,116],[-58,95],[-72,36],[28,-92],[41,-62],[-12,-180],[48,-115],[54,-36],[39,-14],[66,4],[61,-72],[40,-221],[-35,-129],[-77,-23],[-51,94],[-51,-60],[-55,19],[9,-133],[-92,-38],[27,-108],[42,2],[40,-107],[8,-178],[-12,-140],[-51,-20],[37,-121],[-40,-70],[-63,-63],[-52,-102],[-50,-94],[-52,15],[-34,70],[-30,73],[6,107],[-56,104],[-55,186],[-57,56],[-30,-91],[-36,2],[-55,51],[-42,62],[-8,148],[32,168],[84,74],[62,48],[3,160],[34,207],[-90,-129],[1,-122],[-60,-84],[-77,-18],[-57,84],[-65,-18],[-45,106],[-58,113],[26,136],[-49,-14],[-44,-19],[15,-153],[35,-119],[34,-156],[47,-70],[58,-50],[-44,-117],[-8,-154],[49,-59],[27,-133],[-31,-99],[59,-10],[20,-122],[38,43],[75,-96],[74,-146],[39,-183],[26,-157],[-41,-86],[18,-151],[16,-123],[-3,-129],[-45,-143],[-24,-87],[-38,-59],[-53,-157],[16,-200],[25,-161],[10,-112],[-11,-146],[-59,86],[-49,4],[17,158],[-6,201],[-9,170],[-15,101],[-11,141],[-10,179],[-44,151],[6,135],[-32,167],[-31,-161],[-33,-93],[39,-189],[38,-186],[13,-167],[18,-143],[2,-134],[-4,-185],[-11,-139],[-77,-112],[-23,-9],[-38,-14],[-48,99],[-19,-229],[-34,142],[-32,113],[-10,184],[-2,133],[-22,151],[9,230],[3,120],[1,160],[4,161],[-2,129],[-11,154],[-19,232],[-18,148],[-36,313],[-22,169],[-50,187],[-57,201],[-53,135],[-35,137],[-34,134],[-13,144],[75,-60],[74,-16],[-29,119],[-45,107],[-4,169],[-16,139],[3,174],[-12,145],[39,24],[51,66],[-78,74],[-95,57],[-48,-69],[-70,44],[-39,76],[-40,68],[-46,101],[-56,99],[5,26],[12,58],[-2,153],[43,-23],[29,-105],[38,99],[43,72],[43,-105],[40,-112],[44,-102],[52,104],[-7,213],[35,123],[-65,132],[-48,-102],[-46,170],[-12,115],[-47,109],[20,108],[-6,128],[55,42],[56,79],[-64,141],[41,137],[30,161],[-81,-20],[-44,-192],[13,-213],[-49,-35],[-43,-46],[-8,-146],[-17,-193],[19,-83],[31,-76],[-2,-109],[-43,-43],[-60,-51],[-83,-137],[46,238],[-7,186],[-61,-56],[3,-146],[-26,-152],[-53,-50],[-57,-35],[-55,23],[-66,110],[-7,235],[15,118],[34,138],[-16,73],[6,134],[15,182],[31,223],[31,170],[30,123],[27,102],[32,146],[27,110],[53,128],[65,170],[33,91],[48,125],[62,178],[36,32],[4,109],[37,138],[43,189],[57,129],[-3,180],[43,122],[10,137],[9,122],[25,118],[29,169],[19,109],[33,130],[34,140],[31,100],[56,120],[46,164],[56,191],[43,111],[28,152],[16,208],[11,130],[26,259],[44,239],[37,118],[56,45],[-7,197],[45,122],[49,182],[57,55],[36,29],[-5,-86],[46,-122],[-38,-239],[27,-314],[93,-185],[-10,-157],[59,79],[83,4],[197,-201],[79,-271],[70,-137],[3,204],[-56,118],[-83,243],[-80,87],[-62,141],[-95,71],[-22,192],[-31,165],[-60,118],[3,173],[1,85],[51,84],[33,127],[1,213],[12,112],[50,131],[79,4],[59,2],[73,91],[36,74],[39,103],[38,121],[23,94],[16,87],[44,68],[62,-44],[64,-88],[54,-91],[45,-101],[-38,-121],[26,-228],[0,-179],[33,-91],[32,-26],[25,134],[56,40],[85,-74],[57,-145],[32,82],[-20,123],[-53,40],[-51,57],[-29,34],[-52,-26],[-50,17],[15,137],[17,122],[33,140],[55,142],[55,107],[22,134],[-79,-72],[-59,-133],[-46,-64],[-5,143],[3,160],[-42,72],[-26,65],[-70,121],[-76,10],[-15,125],[27,106],[7,147],[-31,176],[-43,80],[-74,44],[-65,138],[10,142],[2,145],[59,102],[94,102],[61,29],[54,105],[32,136],[17,112],[29,121],[54,57],[52,42],[64,46],[73,80],[65,-2],[80,-20],[52,-113],[59,40],[72,-49],[24,-160],[-83,-155],[0,-285],[22,-280],[0,-94],[42,143],[61,0],[-9,132],[51,99],[94,0],[107,-138],[34,-109],[65,-39],[-32,88],[-29,143],[-71,148],[-101,71],[-82,6],[-54,0],[38,127],[33,28],[25,101],[64,135],[79,19],[101,-21],[58,-186],[-9,-159],[9,-127],[78,-93],[143,60],[45,-109],[143,66],[83,82],[24,-170],[114,-72],[119,55],[44,-137],[63,0],[51,60],[-42,116],[-16,142],[-89,-5],[-83,104],[-11,170],[-40,28],[-32,-170],[-114,43],[-91,-60],[-128,-16],[-89,49],[-47,208],[-58,127],[-47,71],[123,27],[0,83],[-103,60],[-65,6],[-74,-11],[-24,-72],[-7,137],[-39,130],[-55,142],[-24,114],[7,169],[38,162],[35,73],[62,69],[60,59],[67,74],[45,52],[97,137],[40,69],[24,61],[32,141],[3,15],[21,120],[22,147],[13,83],[3,19],[51,56],[107,-13],[63,0],[47,-11],[76,-25],[49,-19],[69,-20],[73,-15],[51,-1],[50,2],[47,5],[52,17],[44,15],[48,15],[95,2],[68,-9],[62,-1],[38,4],[16,1],[77,-22],[57,12],[77,-39],[62,-19],[43,-9],[60,-9],[48,-63],[54,13],[48,-89],[-22,-189],[-39,-117],[-26,-100],[67,42],[63,5],[54,-82],[56,114],[42,-61],[-12,-159],[-15,-233],[-27,-101],[-6,-148],[40,2],[21,85],[25,82],[34,141],[20,26],[96,-2],[39,-24],[39,-24],[-3,101],[-25,55],[-64,22],[-56,61],[8,84],[51,137],[48,16],[54,43],[48,53],[53,57],[40,50],[78,9],[45,2],[55,23],[78,84],[57,72],[35,54],[61,43],[72,-37],[22,-136],[44,-38],[39,-129],[37,-161],[-43,-98],[-45,-114],[-20,-146],[72,93],[90,11],[-31,-148],[10,-171],[61,64],[6,-176],[60,-63],[-2,-190],[94,16],[-11,135],[-51,228],[17,207],[-55,46],[-3,145],[-79,49],[36,81],[36,53],[42,51],[39,44],[39,-10],[40,71],[50,135],[52,208],[51,-17],[38,-4],[61,22],[53,-12],[57,5],[67,-93],[22,-163],[64,3],[42,-64],[-9,-96],[-12,-127],[-43,-191],[-40,-138],[-34,-95],[42,-33],[27,-71],[26,166],[62,124],[19,206],[55,116],[80,97],[68,-79],[38,108],[26,103],[25,67],[72,-45],[36,-92],[39,-81],[33,-173],[-64,-222],[-54,-127],[40,-124],[47,129],[44,-84],[50,-18],[17,-159],[51,-132],[51,45],[8,123],[-54,124],[-62,131],[32,142],[33,146],[35,155],[48,1],[74,-96],[69,0],[52,15],[74,-4],[54,47],[50,10],[63,13],[40,-45],[-20,-114],[7,-210],[49,87],[19,130],[40,-38],[39,-49],[43,5],[53,40],[26,170],[2,2],[49,37],[21,-109],[46,13],[26,89],[46,73],[40,45],[68,20],[45,-64],[47,13],[50,33],[41,-131],[38,-95],[22,-66],[-9,-112],[64,-71],[57,-19],[-56,155],[26,162],[44,6],[13,105],[52,102],[63,-55],[62,9],[37,88],[21,169],[43,24],[49,-70],[32,-32],[62,18],[-58,116],[47,140]],[[66564,71493],[-99,-147],[-76,-114],[-57,-90],[-58,-91],[-106,-127],[-28,22],[-83,67],[-2,1],[-156,113],[-28,20],[-81,39],[-53,67],[-31,28],[-11,6],[-47,32],[-85,62]],[[65563,71381],[-21,67],[3,3],[70,66],[71,145],[-21,172],[8,216],[74,-77],[55,-142],[35,60],[39,-6],[68,29],[48,5],[54,30],[74,62],[47,-61],[38,-135],[-43,-35],[31,-114],[77,-35],[98,79],[29,-62],[9,-17],[64,40],[34,-24],[51,67],[9,-221]],[[66643,73329],[-84,-76],[-49,125],[-75,203],[17,133],[18,134],[17,138],[40,251],[-21,125],[-22,-138],[-29,-132],[-32,-114],[-37,-75],[-49,54],[-32,31],[-41,61],[-64,92],[-80,150],[-24,118],[-47,-95],[-26,188],[-32,-69],[-21,-162],[-85,69],[-56,38],[-31,-4],[-29,-4],[-63,58],[-4,66],[-5,82],[52,101],[-29,93],[23,143],[-31,135],[-23,209],[-101,70],[-40,25],[-35,12],[-10,81],[-41,82],[-42,52],[-47,77],[-54,-49],[18,-95],[-43,-47],[-29,48],[-34,43],[-58,-70],[-46,-49],[-70,15],[-13,123],[-63,69],[-49,75],[-55,19],[-60,72],[-20,-173],[53,-38],[38,10],[31,-46],[11,-95],[20,-84],[19,-144],[58,-45],[43,-40],[45,13],[95,81],[68,7],[33,-38],[-9,-103],[34,-42],[45,-93],[65,76],[6,-123],[33,55],[6,-138],[56,-144],[9,-120],[-41,-117],[-31,30],[-45,49],[-38,-39],[-34,-35],[-56,15],[-102,25],[-68,57],[-101,37],[18,-119],[-76,18],[-39,72],[-57,-80],[17,-198],[-83,-78],[-59,110],[-54,88],[-1,3],[-68,79],[-45,45],[-21,115],[6,117],[-1,43],[-6,129],[-2,128],[-10,17],[-37,63],[-24,-85],[-45,-94],[7,-132],[1,-7],[-17,-150],[-40,-134],[-34,-188],[31,-72],[37,-59],[65,-99],[65,-4],[45,10],[49,-3],[25,-2],[57,-125],[40,-155],[4,-122],[-23,-70],[-14,-44],[-1,-144],[0,-12],[49,100],[18,37],[56,-93],[64,-36],[46,9],[53,89],[59,67],[38,-118],[40,14],[61,-18],[0,148],[5,159],[48,5],[64,-29],[5,-175],[44,165],[50,13],[72,6],[58,-98],[21,-20],[31,-29],[30,-48],[34,62],[10,-166],[46,-160],[41,61],[23,-140],[57,-107],[37,-145],[52,-16],[7,-162],[-77,-103],[11,-133],[-36,-147],[-47,5],[-40,64],[-59,50],[-60,-29],[-46,4],[-61,-35],[-54,99],[2,-147],[13,-94],[63,-67],[-43,-45],[1,-98],[-25,-186],[-73,-59],[43,-97],[-15,-168],[-37,-175]],[[65429,71483],[-54,128],[-22,50],[-32,86],[-22,48],[-20,46],[0,1],[-25,51],[-57,133],[-60,138],[-36,82],[-61,136],[-26,66],[-46,111],[-37,87],[-24,51],[-20,58],[-32,73],[-18,47],[-27,58],[-21,44],[-2,2],[-74,78],[-47,47],[-11,12],[-21,23]],[[62850,71826],[1,-5],[9,-46],[-1,-3],[-17,-41],[-23,6],[-25,-5],[-22,2],[-10,-55],[-20,-29],[-21,-24],[-18,-42],[-9,-53],[8,-53],[-17,-39],[-23,1],[-20,-29],[-14,-49],[2,-63],[-3,-58],[-24,-12],[-23,-16],[-18,-36],[-23,-10],[-18,-32],[4,-56],[4,-55],[-1,-56],[-3,-56],[-16,-50],[-8,-54],[-15,-46],[13,-49],[-18,-37],[-18,-41],[-22,-23],[-23,-7],[-24,-2],[-23,-28],[-11,-51],[-19,-40],[-17,-108],[-5,-65],[-5,-90],[-12,-62],[-22,-29],[-33,18],[-33,12],[-23,3],[-25,16],[-26,-7],[-20,-33],[-16,-41],[-22,-20],[-21,-37],[-23,-18],[-23,-28],[-22,-31],[-23,-21],[-24,-25],[-26,-9],[-21,23],[-27,4],[-1,0],[-24,-4],[-23,-6],[-22,-14],[-23,9],[-22,15],[-22,-56],[-17,-57],[-22,-70],[-15,-43],[-20,-46],[-20,-41],[-23,-42],[-26,-43],[-28,-37],[-26,-30],[-22,-24],[-10,-11],[-15,-17],[-26,-33],[-20,-29],[-10,-16],[-4,-7],[-20,-33],[-16,-34],[-3,-6],[-3,-6],[-25,-54],[-29,-78],[-27,-75],[-17,-49],[-21,-60],[-21,-59],[-13,-40],[-10,-28],[-19,-57],[-15,-43],[-16,-46],[-17,-49],[-18,-52],[-18,-52],[-17,-48],[-27,-75],[-19,-58],[-26,-78],[-27,-76],[-28,-79],[-15,-45],[-15,-52],[-12,-50],[-17,-85],[-8,-62],[-7,-61],[-4,-65],[-3,-73],[-2,-70],[-3,-88],[-4,-67],[-9,-69],[-10,-63],[-8,-34],[-4,-19],[0,-2],[-18,-64],[-24,-67],[-20,-47],[-18,-35],[-8,-15],[-19,-32],[-7,-13],[-36,-48],[-36,-37],[-24,-20],[-28,-19],[-25,-12],[-22,-10],[-35,-7],[-27,-1],[-8,0],[-25,3],[-26,9],[-24,11],[-30,12],[-23,7],[-22,3],[-27,-2],[-22,-4],[-27,-10],[-29,-16],[-24,-19],[-10,-7],[-14,-15],[-5,-5],[-12,-11],[-30,-29],[-4,-5],[-34,-35],[-29,-28],[-20,-24],[-26,-25],[-24,-35],[-17,-40],[-6,-12],[-15,-50],[-11,-50],[-6,-55],[-2,-65],[0,-73],[-4,-58],[-1,-10],[-5,-29],[-2,-12],[-5,-20],[-5,-16],[-4,-16],[-21,-54],[-6,-11],[-15,-27],[-30,-40],[-24,-20],[-28,-18],[-25,-13],[-35,-19],[-2,-1],[-28,-22],[-31,-31],[-27,-33],[-23,-36]],[[59638,65711],[-17,57],[3,58],[-14,33],[-3,7],[-23,25],[-18,34],[-23,26],[-22,19],[-4,2],[-22,8],[-24,9],[-6,14],[-11,24],[-21,17],[-24,-8],[-25,4],[-21,31],[-19,16],[-4,2],[-23,0],[-24,25],[-23,17],[-24,-8],[-27,0],[-25,2],[-26,4],[-22,-19],[-26,16],[-23,23],[-26,17],[-28,17],[-28,15],[-30,23],[-27,45],[-8,53],[-26,10],[-21,22],[-6,18],[-13,37],[-16,43],[-20,26],[0,2],[-56,195],[-42,127],[-48,116],[-23,36],[-31,74],[-15,64],[-13,113],[-2,66],[-35,4],[-30,-22]],[[58553,67250],[-38,-21],[-78,-122],[-31,-36],[-83,-67],[-93,-53],[-49,-10],[-38,2],[-25,9],[-50,49],[-32,13],[-52,0],[-28,0],[-18,46],[-11,73],[-30,71],[-9,53],[-18,53],[-2,7],[-86,71],[-46,47],[-38,55],[-16,67],[-13,86],[-31,18],[-49,-52],[-48,-47],[-22,-41],[-29,-88],[-64,-86],[-22,-13],[-37,8],[-36,-7],[-21,-22],[-16,-43],[-19,-61],[-34,-45],[-42,11],[-157,174],[-31,32],[-40,55],[14,62],[28,75],[8,19],[23,52],[54,49],[15,81],[-1,62],[-3,79],[27,14],[31,62],[-29,82],[-26,24],[-69,-78],[-29,3],[-53,12],[-86,39],[-12,59],[-13,71],[-22,22],[-42,10],[-24,-10],[-31,1],[-23,7],[-32,18],[-36,26],[-43,1],[-12,51],[-11,56],[-10,58],[2,90],[16,65],[13,55],[19,73],[15,56],[2,60],[10,58],[6,55],[-17,29],[-2,4],[-22,30],[-22,11],[-26,-12],[-23,3],[-23,39],[-24,3],[-19,33],[-22,-4],[-18,35],[-20,28],[-24,9],[-24,10],[-21,21],[-25,17],[-33,6],[-22,5],[-25,-4],[-31,-5],[-27,18],[-23,-8],[-31,-13],[-30,22],[-16,42],[-22,47],[-22,39],[-21,42],[1,65],[24,42],[21,38],[24,56],[14,54],[-27,36],[-23,-17],[-27,-10],[-24,-15],[-28,-11],[-26,8],[-12,47],[1,63],[26,-2],[25,-6],[22,23],[29,20],[24,19],[0,61],[-22,17],[-26,5],[-27,11],[-22,3],[-25,8],[-20,28],[-28,29],[-25,40],[-11,61],[17,43],[3,57],[1,58],[20,25],[12,49],[12,53],[12,57],[17,64],[-3,60],[6,55],[-3,57],[-16,46],[-13,9],[-149,94],[25,252],[37,387],[-45,45],[-138,122],[-39,175],[-68,60],[-226,350],[1,26],[5,200],[-55,96],[-31,195],[-36,62],[-23,36],[-61,164],[-45,64],[-14,46],[-22,70],[-91,-5],[-23,-2],[-30,16],[-24,33],[-22,20],[-25,-2],[-23,-22],[-13,12],[-11,11],[-21,29],[-14,55],[-26,21],[-22,-20],[-21,35],[-6,64],[14,48],[-10,51],[-3,75],[-15,57],[-6,58],[-19,30],[-34,72],[-16,56],[-11,49],[-24,31],[-26,28],[-16,44],[-23,-17],[-1,63],[-21,25],[-15,41],[-24,-2],[-19,33],[-24,28],[-28,2],[-23,-1],[-24,20],[-18,45],[-7,57],[-21,28],[-20,34],[-25,28],[-23,18],[-32,13],[-31,-2],[-24,24],[-23,31],[-23,30],[-26,14],[-24,8],[-24,10],[-23,-1],[-23,25],[-23,23],[-25,11],[-14,49],[-23,21],[-23,8],[-24,-1],[-23,18],[-23,1],[-29,23],[-25,8],[-19,-39],[-16,-46],[-31,1],[-25,2],[-25,-9],[-28,-1],[-23,15],[-24,22],[-25,-18],[-20,26],[-13,61],[-16,42],[-23,37],[-29,-8],[-27,-6],[-25,-14],[-29,22],[-22,11],[-25,28],[-24,16],[-26,12],[-24,0],[-23,-3],[-25,1],[-24,-16],[-14,53],[-13,51],[-31,8],[-23,29],[-10,60],[-3,63],[10,55],[3,60],[0,65],[-19,35],[0,2],[-13,43],[-23,28],[-1,55],[-19,39],[-16,44],[-15,44],[-15,57],[-14,46],[8,61],[-2,60],[20,49],[17,44],[-4,62],[-25,25],[-20,39],[1,72],[-5,69],[-24,18],[-29,18],[-21,32],[-15,55],[-14,60],[-17,43],[-21,33],[-25,54],[-17,49],[-30,18],[-23,35],[-22,46],[-20,50],[-18,43],[-27,27],[-23,30],[-22,32],[-19,27],[-26,25],[-22,11],[-17,54],[-16,61],[-27,53],[-23,-12],[-22,-19],[-13,47],[-4,55],[-11,49],[-8,67],[-17,45],[-47,14],[-33,40],[-14,46],[-14,64],[-12,48],[-5,56],[-5,60],[-7,63],[-7,56],[-18,47],[-15,50],[-20,34],[-30,69],[-17,38],[-29,76],[-14,54],[-15,76],[-30,58],[-12,59],[-13,103],[-18,60],[-11,61],[-15,45],[-3,59],[-22,23],[-1,1],[-26,100],[-4,84],[6,57],[27,101],[17,58],[23,83],[30,16],[21,22],[30,23],[22,37],[49,71],[28,40],[80,123],[9,14],[25,36],[44,63]],[[58553,67250],[-6,-54],[-27,-104],[-32,-122],[-51,-166],[-102,-74],[-52,-44],[-19,58],[-24,-83],[-110,-133],[25,-58],[46,-144],[-13,-109],[-62,-334],[-36,-113],[-3,-16],[-14,-79],[-101,-342],[-38,-144],[-31,-120],[-57,-178],[-38,-116],[-126,-418],[-34,-107],[-37,-148],[-111,-346],[-14,-65],[-30,-92],[-21,-83],[-77,-249],[-60,-207],[-19,-57],[-15,-48],[-18,-66],[-21,-63],[-15,-43],[-20,-55],[-24,-82],[-39,-134],[-17,-67],[-25,-86],[-43,-144],[-44,-125],[-53,-163],[-17,-96],[-15,-44],[-18,-54],[-95,-292],[-23,-82],[-26,-90],[-29,-82],[-30,-113],[-11,-39],[-3,-10],[-33,-113],[-15,-41],[-16,-51],[-26,-80],[-15,-47],[-22,-79],[-17,-65],[-44,-105],[-11,-38],[-4,-12],[-34,-139],[-29,-114],[-14,-55],[-23,-49],[-18,-65],[-19,-57],[-12,-69],[-39,-84],[-18,-88],[-27,-91],[12,-31],[13,-29],[19,-50],[22,-52],[13,-26],[7,-14],[23,-37],[0,-1],[32,-46],[0,-6],[-3,-98],[-11,-76],[-7,-67],[-9,-86],[-12,-109],[30,-92],[-34,-36],[-24,-18],[-32,-31],[-40,-18],[-3,-2],[-39,-15],[-31,-12],[-23,-52],[-31,-72],[-26,-64],[-17,-54],[-16,-53],[-18,-59],[-50,-161]],[[55987,58116],[-6,10],[-15,30],[-9,17],[-32,62],[-25,46],[-25,49],[-6,11],[-6,12],[-7,14],[-16,30],[-33,64],[-69,135],[-23,41],[-29,51],[-22,42],[-43,81],[-21,45],[-9,14],[-6,8],[0,1],[-1,1],[-54,101],[-20,38],[-19,37],[-24,47],[-5,7],[-22,43],[-5,10],[0,1],[-28,53],[-19,37],[-35,67],[-19,37],[-33,63],[-12,22],[-4,8],[-32,61],[-2,5],[-10,19],[-20,36],[-2,3],[-8,16],[-20,38],[-14,22],[-61,109],[-16,-28],[-15,-34],[-37,-71],[-25,-47],[-23,-40],[-78,-152],[-19,-36],[-30,-53],[-7,-13],[-10,-18],[-21,-40],[-30,-57],[-10,-18],[-14,-27],[-17,-33],[-36,-68],[-16,-31],[-28,-53],[-29,-56],[-31,-60],[-35,-67],[-33,-62],[-1,-4],[-8,-15],[-56,-106],[-19,-36],[-21,-41],[-21,-40],[-12,-23],[-22,-44],[-31,-57],[-21,-40],[-15,-29],[-27,-48],[-12,-25],[-10,-22],[-30,-58],[-18,-35],[-20,-37],[-23,-45],[-18,-35],[-45,-84],[-4,-8],[-9,-19],[-4,-7],[0,-1],[-8,-14],[-35,-66],[-11,-22],[-4,-6],[-34,-68],[-40,-76],[-1,-3],[-12,-21],[-21,-41],[-23,-45],[-31,-59],[-37,-70],[-20,-39],[-13,-24],[-25,-50],[-19,-34],[-14,-25],[-31,-49],[-46,-85],[-35,-67],[-73,-139],[-57,-106],[-47,-88],[-30,-59],[-34,-68],[-1,-1],[0,-1],[-2,-4],[-3,-5],[-2,-4],[-38,-67],[-20,-56],[-80,164],[-54,112],[-42,64],[-19,32],[-13,47],[-40,202],[-21,102],[-26,93],[-24,112],[-25,107],[-31,93],[-53,110],[-21,45],[-19,30],[-35,97],[-48,128],[-55,105],[-46,52],[-44,33],[-48,5],[-50,8],[-52,-2],[-47,10],[-48,33],[-65,64],[-24,1],[-69,-41],[-17,-37],[-53,34],[-22,31],[-70,34],[-47,-7],[-46,17],[-22,9],[-48,11],[-41,-49],[-73,-1],[-22,-16],[-69,37],[-54,-9],[-41,-52],[-46,-9],[-76,36],[-43,36],[-3,2],[-25,21],[-37,64],[-49,31],[-23,-10],[-44,-43],[-46,25],[-45,44],[-98,46],[-48,10],[-50,47],[-51,105],[-20,114],[-37,147],[-29,37],[-44,-27],[-27,-94],[-14,-49],[-27,-20],[-11,24],[-26,58],[-33,86],[-37,83],[-42,51],[-45,25],[-6,3],[-18,39],[-16,113],[-49,284],[-14,132],[-14,48],[-33,79],[-25,17],[-28,50],[-18,104],[-14,43],[-14,120],[-16,42],[4,59],[5,52],[4,37],[9,91],[15,73],[25,122],[31,96],[16,49],[41,59],[3,5],[41,71],[12,51],[25,101],[2,31],[2,28],[0,4],[8,154],[0,16],[-2,15],[-27,145],[-35,96],[-62,70],[-69,95],[-10,14],[-2,4],[-95,51],[-123,61],[-43,22],[-110,67],[-20,12],[-11,8],[-83,65],[-119,198],[-4,7],[-11,17],[-88,129],[-46,93],[-14,28],[-32,64],[-5,9],[-75,113],[-89,81],[-9,9],[-82,77],[-116,132],[-50,18],[-72,-25],[-93,32],[-65,64],[-23,-8],[-21,27],[-42,73],[-45,38],[-39,62],[-77,69],[-80,59],[-17,98],[-21,26],[-92,59],[-46,18],[-199,-30],[-167,12],[-195,-29],[-96,-29],[-95,10],[-144,48],[-52,-19],[-61,-8],[-76,27],[-125,69],[-96,46],[-95,-11],[-95,16],[-79,40],[-85,42],[-63,10],[-75,-1],[-88,51],[-85,48],[-51,58],[-77,44],[-170,69],[-77,-5],[-55,36],[-76,24],[-85,27],[-141,125],[-28,55],[-29,139],[-47,164],[-76,226],[-1,74],[16,76],[-8,59],[-22,38],[0,1],[-41,93],[-56,166],[-39,206],[-31,128],[-17,56],[-69,203],[-111,221],[-132,138],[-77,49],[-70,45],[-137,87],[-93,77],[-92,79],[-46,8],[-90,87],[-55,107],[-52,198],[-43,213],[-9,118],[-30,222],[-8,297],[-6,315],[53,114],[31,226],[50,470],[50,266],[87,371],[104,342],[96,162],[144,85],[324,157],[98,98],[97,189],[36,156],[15,168],[-5,42],[-16,130],[7,181],[21,107],[6,105],[92,253],[140,230],[118,235],[26,181]],[[75659,54665],[9,-107],[54,-72],[-29,-84],[-10,-86],[76,-90],[31,19],[79,-177],[42,33],[46,-57],[3,-145],[59,-90],[52,-36],[34,-90],[40,-40],[75,21],[-4,-104],[-141,-57],[-82,53],[-60,-25],[-59,101],[-56,-9],[-57,-28],[-26,-234],[-58,-63],[-13,177],[3,89],[-60,-45],[-60,1],[-56,-43],[-46,24],[-5,175],[-31,26],[-22,-69],[-69,21],[-32,-46],[-51,19],[-60,-26],[-47,-29],[-34,72],[27,79],[-37,158],[-19,-156],[-21,-137],[-63,3],[-57,21],[-45,-3],[-28,-117],[-34,-153],[2,-129],[-36,-168],[-31,-152],[-6,-115],[-54,63],[-54,69],[-58,-42],[-12,-126],[-88,37],[-36,-170],[-64,-57],[-47,220],[-23,94],[57,133],[26,132],[61,-18],[-19,158],[-64,96],[-20,176],[31,127],[58,-52],[36,-118],[81,-127],[59,2],[1,79],[29,141],[60,113],[75,100],[25,135],[29,95],[65,-25],[-22,116],[-44,58],[-58,-14],[-30,95],[33,136],[55,-3],[51,42],[-80,65],[29,98],[67,71],[45,-37],[48,-62],[89,-6],[51,23],[46,-64],[43,25],[73,28],[53,15],[54,72],[37,-37],[46,126],[68,46],[37,35],[36,-108],[32,-65]],[[73051,54763],[-120,-54],[-5,150],[29,107],[38,115],[1,147],[73,-17],[37,-90],[-17,-114],[15,-156],[-51,-88]],[[72294,59041],[46,-37],[43,75],[81,9],[128,2],[67,-41],[10,-123],[-35,-133],[70,-32],[45,-109],[-2,-153],[-2,-80],[18,73],[34,148],[53,27],[47,39],[-8,151],[49,125],[47,7],[11,-142],[-15,-154],[4,-180],[-8,-126],[-1,-17],[18,-116],[1,-35],[3,-59],[-70,85],[-60,-176],[-68,-151],[-52,-22],[-34,115],[-75,-20],[53,-89],[43,-182],[-15,-152],[-53,27],[-74,24],[5,-97],[-62,2],[-60,-50],[-59,151],[-5,-146],[-32,-145],[91,-8],[50,40],[60,-78],[45,-54],[-3,123],[50,78],[90,-3],[39,117],[62,23],[39,-89],[-20,-131],[-22,-138],[43,-4],[8,-128],[-70,-72],[59,-127],[2,-157],[-43,43],[-6,-169],[-64,-93],[-33,-128],[-68,-6],[15,-159],[36,-112],[60,-30],[18,-104],[75,-23],[40,68],[38,-115],[11,-133],[-38,-93],[-78,71],[-57,-159],[-42,-53],[-18,132],[-71,-62],[-41,169],[-35,228],[-6,182],[-40,127],[-44,96],[5,125],[-52,137],[74,131],[-91,40],[-88,-122],[-40,-112],[-82,-36],[-69,7],[-50,-65],[-32,219],[49,130],[12,181],[-1,207],[-86,-7],[-55,172],[-7,-183],[34,-66],[65,-54],[-19,-157],[-66,-136],[-11,-120],[24,-140],[-5,-115],[-73,-37],[-27,-108],[-10,-206],[-3,-142],[-12,-112],[-56,-181],[-10,-148],[23,-140],[40,-125],[52,-243],[-19,-131],[33,-88],[12,-121],[-84,-49],[-60,-21],[-4,275],[-16,147],[-38,213],[6,152],[-13,146],[-37,216],[-77,102],[-46,55],[-34,206],[3,125],[48,103],[64,41],[-27,162],[35,170],[38,-35],[39,-35],[49,172],[-61,-8],[-80,217],[-11,206],[0,171],[50,143],[57,76],[27,142],[-53,-4],[-54,-49],[-56,-100],[-29,-150],[-60,71],[-6,112],[-26,258],[-27,-106],[-37,-102],[-18,91],[-39,50],[7,-127],[-56,-30],[54,-132],[40,-97],[15,-148],[67,-85],[-5,-148],[5,-107],[-65,-46],[-66,77],[-55,81],[-94,98],[-57,20],[-28,123],[-13,182],[-27,85],[-69,-99],[50,-73],[-4,-95],[-74,23],[15,-114],[-36,-150],[97,82],[47,-112],[28,-115],[-52,-114],[-19,-137],[76,114],[73,-5],[71,-54],[22,-92],[46,-63],[46,-60],[50,-81],[6,-93],[-49,-79],[2,-134],[-25,-140],[-58,39],[8,-157],[68,-89],[8,-125],[-22,-112],[13,-113],[19,-97],[-37,-200],[-49,-25],[-46,-7],[-53,76],[-2,192],[-42,142],[-25,101],[-33,97],[-3,-165],[-49,-29],[-74,62],[-78,73],[4,-158],[26,-123],[-35,-81],[-43,-136],[-21,166],[-14,223],[-38,126],[7,-271],[-65,-148],[58,-41],[-7,-194],[43,-127],[87,18],[36,-129],[-6,-155],[-17,-147],[-49,-120],[-39,-120],[-42,74],[-41,55],[-13,-73],[4,-43],[38,-76],[38,-42],[33,-60],[-10,-95],[8,-99],[19,11],[24,135],[31,-124],[41,-164],[15,-145],[16,-135],[1,-11],[6,-134],[5,-190],[-2,-195],[45,-135],[11,-230],[-29,-148],[-32,-103],[-36,-74],[-67,-123],[-44,-56],[6,122],[-14,103],[36,121],[12,102],[-49,22],[-42,18],[-25,11],[-12,-91],[17,-135],[27,-192],[-63,-70],[-70,35],[-61,38],[-37,-58],[-45,-37],[-40,-85],[-98,-109],[-37,-75],[-31,-75],[-12,-145],[-18,-154],[-28,-148],[-24,-164],[-27,-124],[-47,38],[-83,88],[-19,133],[1,146],[7,248],[-23,193],[32,212],[38,130],[29,103],[33,120],[23,62],[37,226],[22,133],[21,131],[16,165],[6,184],[8,322],[3,3],[-19,285],[-3,53],[-8,130],[-10,136],[1,114],[22,110],[-9,237],[-10,124],[-3,162],[16,260],[2,114],[12,119],[19,178],[7,157],[51,253],[-33,238],[7,159],[17,127],[-4,139],[25,147],[47,252],[54,275],[26,182],[30,130],[43,152],[21,78],[36,131],[43,159],[60,177],[43,117],[56,102],[30,-101],[61,-32],[-8,131],[48,225],[-10,197],[1,9],[26,164],[44,152],[39,102],[68,169],[67,257],[25,147],[-6,160],[12,171],[-22,110],[17,233],[1,208],[36,285],[26,152],[49,173],[51,209],[34,105],[59,171],[64,99],[83,91],[64,-40],[-6,-220],[8,-127],[-81,-73],[7,-184],[54,-118],[-2,-133],[74,-91],[46,-126],[9,-110],[1,-134],[23,-248],[25,-139],[19,-109],[7,-118],[56,-164],[36,-93],[12,-104],[54,-194],[66,-161],[14,-134],[46,-29],[30,-139],[21,-143]],[[84075,73616],[2,-134],[15,-387],[11,-306],[6,-162],[4,-199],[16,-588],[3,-57],[4,-116],[16,-405],[7,-222],[3,-58],[3,-84],[5,-117],[19,-560],[5,-123],[1,-51],[2,-60],[4,-180],[9,-307],[4,-227],[2,-43],[6,-77],[36,-1091],[5,-126],[0,-10]],[[84263,67926],[-41,-51],[-52,-64],[-93,-114],[-28,-32],[-48,-36],[-56,-24],[-1,0],[-23,-11],[-47,-27],[-29,-14],[-70,-41],[-31,-18],[-92,-48],[-15,-4],[-125,-32],[-135,-30],[-60,-20],[-9,-3],[-3,0],[-30,0],[-1,-6],[-16,-54],[-40,-92],[-52,-37],[-32,-15],[-30,-24],[-35,-64],[-28,-125],[-166,-256],[-26,-25],[-77,-60],[-36,-33],[-42,-80],[-39,-52],[-77,-40],[-29,-36],[-9,-23],[-17,-41],[-21,-44],[-30,-53],[-82,-138],[-42,-42],[-55,-5],[-23,-124],[-80,-317],[-2,-59],[-7,-56],[-12,-76],[-10,-58],[-12,-79],[-9,-59],[-15,-86],[-10,-71],[-71,-73],[-32,-80],[-3,-36],[-2,-21],[-8,-66],[11,-51],[6,-61],[5,-86],[-4,-156],[6,-105],[4,-97],[-8,-78],[-16,-81],[-11,-58],[-24,-53],[-70,-150],[-20,-42],[-16,-36],[-24,-48],[-18,-37],[-21,-28],[-23,-36],[-33,-106],[-21,-64],[-37,-54],[-48,-40],[-58,-47],[-47,-41],[-21,-30],[-15,-58],[-16,-54],[-15,-54],[-18,-60],[-17,-55],[-12,-64],[-6,-67],[-26,-42],[-16,-62],[-27,-11],[-24,-21],[-7,-70],[20,-32],[22,-60],[17,-44],[-14,-129],[-25,-133],[-37,-23],[-23,-56],[-3,-94],[-9,-77],[-29,-15],[-15,-45],[-1,-11],[-2,-81],[5,-58],[-14,-50],[14,-58],[-10,-54],[-29,-9],[-38,-37],[-20,-40],[-21,-48],[-2,-58],[-32,-38],[-23,-27],[-13,-75],[16,-84],[5,-57],[-19,-54],[-40,-63],[-31,-43],[-34,-52],[-30,-40],[-32,-19],[-36,30],[-16,45],[-18,49],[-20,47],[-29,-19],[-25,-23],[-5,-73],[11,-50],[11,-51],[13,-88],[-11,-68],[-28,-2],[-29,26],[-23,3],[-30,-16],[-28,-22],[-27,-55],[17,-46],[2,-56],[-11,-72],[-12,-50],[-22,-53],[-21,-24],[-26,-29],[-14,-55],[-36,-32],[-20,-28],[-35,-36],[-11,-61],[-11,-51],[-2,-75],[10,-52],[17,-46],[-21,-41],[-33,-15],[-28,-32],[-27,-12],[-49,-41],[-16,-42],[-2,-63],[-23,-74],[-45,-74],[-28,-22],[-24,-33],[-19,-38],[-18,-82],[0,-65],[-25,-43],[-4,-72],[15,-65],[-24,-51],[-25,-44],[-21,-18],[-33,-43],[-26,-36],[-7,-61],[28,-52],[41,-34],[21,-47],[-1,-68],[-16,-69],[-24,-39],[-36,-46],[-33,5],[-37,-23],[-15,-42],[-31,1],[23,-63],[24,-3],[-14,-45],[7,-61],[27,-33],[18,-51],[14,-72],[6,-84],[4,-89],[-1,-67],[-17,-47],[-27,-37],[-5,-67],[-20,-55],[-27,-50],[38,-182],[4,-63],[-17,-80],[-31,-33],[-36,-12],[-28,-31],[-30,1],[-41,-24],[0,-74],[10,-87],[-5,-67],[6,-57],[29,22],[23,15],[24,-35],[-7,-69],[-31,-36],[-28,-14],[-24,-10],[-23,6],[-25,-23],[20,-38],[16,-39],[22,-14],[29,-5],[23,-11],[7,-54],[-9,-54],[10,-126],[-19,-33],[-20,-50],[-27,-19],[-29,15],[-13,-51],[15,-65],[13,-50],[21,-45],[6,-66],[9,-61],[15,-74],[-1,-34],[-2,-42],[-4,-70],[5,-60],[4,-59]],[[79723,55488],[-26,9],[-44,15],[-44,22],[-34,15],[-23,11],[-24,11],[-26,12],[-19,9],[-13,6],[-28,14],[-26,13],[-33,12],[-28,15],[-29,19],[-21,26],[-25,6],[-34,-10],[-35,-10],[-25,22],[-75,58],[-16,12],[-36,26],[-46,19],[-40,16],[-34,15],[-36,14],[-40,18],[-54,26],[-35,17],[-30,14],[-90,40],[-2,1],[-26,11],[-26,11],[-26,11],[-101,44],[-86,41],[-94,43],[-210,95],[-39,18],[-29,14],[-29,13],[-74,33],[-28,13],[-25,11],[-27,13],[-45,20],[-31,15],[-41,20],[-85,38],[-25,11],[-95,41],[-32,14],[-27,13],[-104,44],[-80,35],[-28,13],[-42,19],[-30,15],[-16,8],[-30,13],[-28,11],[-27,7],[-23,5],[-23,6],[-31,8],[-31,8],[-33,7],[-24,-3],[-48,-14],[-24,-8],[-26,7],[-25,23],[-24,40],[-5,58],[0,2],[-22,-34],[-25,-7],[-14,-43],[-23,20],[-14,50],[-27,2],[-26,3],[-20,27],[-1,61],[-21,18],[-19,33],[-23,-11],[-25,-7],[-19,-41],[-26,12],[-25,9],[-29,-13],[-18,-46],[-4,-60],[-22,-38],[-23,12],[-23,-11],[-29,-99],[-30,-33],[-31,-125],[-13,-64],[-14,-139],[-15,-64],[-30,-121],[-61,-168],[-1,-2],[-8,-106]],[[76068,55843],[-18,-58],[-11,-149],[-67,-168],[-35,-173],[22,-103],[61,-137],[-48,-207],[-12,-187],[62,-105],[-20,-140],[36,-77],[51,-50],[51,-92],[47,-114],[36,-167],[-29,-61],[-36,-47],[-54,30],[-38,80],[-21,131],[-50,104],[-70,62],[-13,-7],[-71,170],[6,121],[-65,120],[-54,80],[5,180],[-50,109],[-79,-15],[-71,38],[3,135],[-91,9],[-15,-83],[42,-116],[-47,-58],[-54,-25],[-85,-84],[-65,23],[-74,20],[28,109],[14,119],[-83,-74],[-46,9],[-40,-55],[-56,-46],[-89,59],[-25,148],[-36,117],[44,67],[5,97],[42,35],[53,-29],[17,144],[-68,9],[26,111],[-38,93],[40,149],[-49,123],[-1,137],[73,-23],[44,79],[50,75],[-14,128],[-8,101],[84,98],[-44,162],[21,158],[62,-21],[-45,118],[40,91],[-16,116],[-5,91],[-14,150],[-49,-41],[-50,108],[-55,-131],[62,-78],[20,-137],[-60,-85],[-1,-155],[-3,-180],[-65,-109],[17,-267],[-38,-108],[-60,-23],[-42,-138],[-19,-193],[6,-112],[-16,-215],[11,-145],[-49,-58],[-1,-154],[-32,-99],[-1,-121],[45,-58],[-59,-146],[-8,-175],[-84,-3],[30,-84],[-31,-86],[50,-34],[-10,-173],[17,-141],[-41,-51],[-47,-3],[-68,-59],[-51,45],[-5,-115],[-58,-53],[-59,-56],[-67,-114],[-69,-132],[-27,-171],[47,-109],[7,-104],[44,-121],[-70,-82],[-51,-147],[49,-25],[27,-67],[-32,-63],[-49,-57],[-23,-187],[6,-151],[-9,-118],[-26,-121],[-72,-119],[-53,-74],[-5,167],[47,201],[28,157],[18,323],[5,128],[14,146],[9,139],[4,246],[7,139],[9,111],[28,192],[8,125],[15,138],[56,169],[69,47],[55,57],[67,21],[-17,133],[-129,-57],[-82,-87],[-19,119],[-24,138],[-39,-87],[26,-142],[1,-124],[-61,-31],[-46,-52],[-2,128],[1,120],[-5,214],[-20,128],[14,227],[-12,231],[11,148],[17,160],[6,307],[-1,142],[-24,228],[-54,48],[-49,-94],[-82,73],[-1,1],[-9,56],[-11,77],[14,192],[54,68],[35,44],[10,116],[11,119],[-42,87],[-57,-132],[-27,72],[-69,6],[-61,129],[-64,7],[-52,-37],[-10,-34],[-17,-58],[-10,-54],[-10,-51],[-15,-96],[-93,48],[-70,-29],[-8,52],[-26,157],[-26,179],[3,105],[18,142],[-37,127],[-2,15],[-14,82],[62,52],[69,-83],[28,-115],[42,-52],[20,-122],[72,14],[82,15],[48,92],[-7,90],[-57,-19],[-75,64],[35,173],[-38,126],[-6,19],[-9,27],[-19,53],[-9,22],[-54,20],[-7,-5],[-16,-11],[-38,-26],[-59,-52],[-43,-30],[-6,-4],[-17,13],[-42,30],[43,138],[-35,29],[-12,11],[-52,23],[-10,30],[-34,101],[-24,88],[-1,5],[8,228],[76,-5],[67,-94],[12,-23],[28,-56],[71,-1],[28,80],[19,-70],[27,-3],[9,-1],[30,231],[73,-70],[-1,-52],[-1,-64],[4,-9],[36,-101],[19,-84],[40,-54],[54,33],[22,138],[86,45],[111,70],[42,32],[83,-34],[28,-176],[79,84],[-41,104],[42,68],[63,116],[70,100],[57,81],[65,153],[64,146],[75,128],[59,132],[78,144],[68,136],[62,97],[60,8],[65,-96],[39,-120],[85,58],[11,102],[48,88],[75,113],[108,-57],[-93,214],[51,167],[41,13],[1,82],[39,5],[-26,107],[-14,78],[-23,39],[-13,-104],[0,-95],[-26,-68],[-47,-109],[-44,-96],[-26,-81],[-54,-62],[-58,-70],[-59,53],[-6,115],[22,180],[5,128],[-13,158],[-34,171],[-31,142],[17,139],[-34,109],[-59,75],[16,152],[56,57],[86,163],[-73,1],[-89,-55],[-40,108],[-43,-75],[-45,116],[-43,95],[24,269],[20,186],[6,179],[-58,47],[-60,53],[-71,43],[50,215],[62,55],[-19,140],[27,119],[57,155],[50,98],[84,134],[74,-30],[-40,-242],[26,-174],[-33,-165],[21,-124],[54,-37],[71,-77],[38,124],[77,-94],[42,-149],[38,-47],[64,3],[22,-52],[3,-121],[67,-8],[35,-91],[53,0],[28,65],[-58,43],[-35,69],[-32,9],[-31,116],[-18,56],[-21,29],[-49,4],[-34,145],[-74,173],[-100,119],[-47,188],[59,-5],[64,-62],[45,76],[21,-89],[52,-89],[70,58],[-40,89],[-20,129],[-56,50],[-58,-27],[3,97],[-9,163],[9,175],[20,90],[68,235],[74,-58],[48,-20],[-20,109],[-57,54],[44,209],[70,-52],[47,20],[63,68],[55,-30],[19,-154],[69,-143],[42,103],[50,37],[45,14],[82,-26],[62,-25],[34,-4],[22,-114],[99,68],[50,75],[24,129],[37,103],[65,-50],[69,46],[48,-149],[78,-90],[80,-82],[79,-96],[56,-161],[69,-125],[26,-205],[12,-154],[40,-113],[67,-16],[53,51],[-32,99],[-36,55],[22,114],[-19,122],[-60,89],[27,123],[-75,35],[14,149],[-50,108],[-96,12],[-47,124],[-45,151],[-69,37],[-40,40],[-35,94],[-70,8],[-74,-44],[-18,145],[-98,-55],[-40,-105],[-35,-72],[-101,31],[-56,79],[-67,39],[-76,-74],[-64,48],[-92,38],[-77,79],[-60,98],[-42,237],[33,113],[53,75],[53,47],[40,106],[60,-20],[71,-39],[86,-14],[62,-8],[46,-3],[71,-4],[40,138],[50,110],[50,162],[53,193],[40,92],[69,105],[30,151],[106,0],[-2,168],[50,126],[25,83],[58,56],[32,94],[51,80],[54,10],[54,10],[32,77],[25,108],[52,7],[100,39],[73,77],[55,116],[55,196],[17,179],[-40,175],[-63,29],[-28,111],[-51,139],[58,114],[35,13],[56,0],[58,53],[44,3],[57,109],[82,102],[85,47],[47,89],[57,75],[50,-14],[65,-15],[63,-74],[53,31],[0,-112],[-31,-129],[9,-156],[36,124],[53,67],[65,67],[70,1],[54,62],[53,89],[52,-40],[75,41],[67,18],[70,-4],[56,-35],[49,-68],[44,-134],[70,-75],[62,33],[-50,152],[-47,69],[-16,155],[-54,45],[-70,-48],[-86,18],[-68,31],[-64,-71],[-64,33],[-51,66],[-72,-11],[-76,73],[-43,26],[-83,69],[27,135],[34,58],[19,155],[-13,163],[-26,146],[-39,163],[-40,168],[-74,88],[-94,125],[-72,35],[-60,7],[-55,-5],[-55,-15],[-75,81],[-39,153],[-6,142],[27,191],[50,93],[19,172],[48,159],[25,132],[4,13],[29,95],[110,55],[47,106],[58,76],[51,125],[58,54],[72,85],[80,30],[61,-6],[-27,136],[71,152],[47,72],[55,21],[51,-59],[66,40],[46,140],[13,133],[78,159],[55,117],[56,85],[50,28],[57,-51],[57,6],[76,9],[44,46],[42,20],[60,3],[1,3],[44,73],[37,5],[48,29],[40,117],[19,154],[-42,112]],[[68018,55082],[80,-65],[45,12],[79,-160],[-101,0],[-122,38],[19,175]],[[68732,64885],[20,-58],[49,25],[69,86],[12,-107],[-29,0],[-23,-20],[-7,-87],[-57,-37],[-14,-91],[81,-70],[24,140],[30,-4],[34,-49],[24,24],[8,-17],[1,13],[15,-45],[49,-13],[32,25],[8,13],[10,16],[2,-386],[-166,-706],[-56,-132],[-47,8],[-64,268],[-144,353],[-30,215],[10,128],[-12,165],[-18,86],[-2,80],[101,241],[93,70],[-1,-68],[-2,-66]],[[68018,55082],[-169,200],[-60,123],[-11,127],[-51,49],[35,128],[18,183],[-47,57],[-29,-182],[-51,-24],[-35,77],[29,146],[50,159],[-73,195],[-13,-195],[-81,-128],[-90,-70],[-144,-138],[5,264],[-112,48],[-46,24],[-52,7],[-37,169],[-114,-33],[24,205],[-67,237],[-43,71],[-9,162],[55,135],[-42,78],[-28,-94],[-73,-141],[11,-148],[-45,-24],[-21,259],[-11,194],[-29,-160],[-77,-14],[-11,201],[24,252],[-69,9],[-24,-153],[-53,53],[-24,176],[-33,-186],[-62,-34],[-63,-60],[-33,111],[-121,39],[-12,32],[-48,122],[-60,-8],[-75,19],[-88,-10],[-43,-123],[-36,155],[-48,73],[-56,8],[7,151],[-54,100],[-36,160],[-31,-144],[6,-106],[-68,-27],[-51,62],[-64,107],[-61,-5],[-96,-14],[-29,122],[-50,221],[-75,146],[-24,164],[-52,232],[-34,-39],[-3,-147],[30,-204],[7,-169],[70,-44],[47,-210],[32,-89],[26,-182],[57,5],[44,-11],[50,79],[39,-134],[103,-84],[71,-152],[72,-63],[51,34],[43,-18],[-35,-132],[-34,-168],[-54,-106],[9,-237],[84,-92],[-5,156],[-18,130],[69,107],[14,144],[128,-51],[76,170],[48,-64],[66,-106],[68,-82],[33,-129],[95,34],[120,-69],[-22,-122],[88,-46],[82,-99],[25,-199],[-36,-56],[-42,26],[-41,-59],[-48,-22],[15,-111],[-30,-183],[37,-137],[27,157],[41,-80],[114,14],[50,214],[79,-35],[44,-8],[-19,-130],[9,-230],[57,-30],[9,133],[98,-63],[37,-119],[50,-61],[-34,-100],[52,-88],[37,7],[67,59],[-4,-309],[-107,-42],[3,-126],[38,-173],[53,-75],[22,-118],[-48,-76],[96,-116],[66,52],[12,176],[67,132],[99,33],[58,76],[-14,-229],[26,-94],[-7,-239],[43,-275],[31,-186],[27,-214],[-37,-145],[-35,-65],[-52,-100],[-80,-114],[-101,-97],[-26,-154],[-76,-155],[-84,-131],[-50,164],[-9,128],[-50,123],[60,118],[52,111],[-22,138],[-58,123],[1,-144],[-49,-144],[-31,73],[-4,122],[-27,105],[-84,109],[-83,-82],[-68,75],[-57,191],[-109,204],[9,-165],[6,-122],[-55,-74],[-21,-131],[-40,-39],[-99,-69],[-44,-63],[50,-97],[-27,-75],[-32,-66],[-38,5],[-29,-99],[4,-127],[54,61],[57,-46],[7,134],[29,133],[58,-78],[-11,-110],[56,-3],[12,130],[58,119],[93,-108],[94,94],[43,-22],[79,27],[-56,-187],[2,-158],[95,-158],[43,-33],[2,-122],[-14,-199],[9,-149],[-59,-48],[5,170],[-51,85],[-71,-209],[-74,32],[-39,181],[-74,-29],[51,-169],[-114,-113],[-45,113],[-19,-210],[42,-80],[63,45],[-2,-344],[-8,-212],[-78,8],[9,116],[-48,86],[-51,32],[1,-254],[48,-55],[140,-235],[-55,-44],[-33,-83],[-39,1],[-28,-198],[-61,142],[-5,-190],[27,-181],[-74,39],[-73,-110],[86,-18],[0,-174],[40,92],[129,127],[-9,210],[23,98],[45,-32],[-2,-165],[63,-66],[46,-41],[36,-7],[-3,-225],[108,-91],[-27,181],[4,92],[57,145],[-20,211],[-64,-72],[-76,11],[12,121],[-30,100],[91,192],[10,133],[33,178],[97,11],[114,21],[63,10],[56,-54],[70,-89],[43,-56],[-73,-58],[-58,-42],[67,-95],[57,77],[88,-7],[46,130],[31,165],[56,135],[71,-115],[30,-167],[21,-232],[51,-51],[-20,-163],[-12,-268],[-35,-59],[-66,-150],[5,-314],[-48,-22],[-6,-139],[18,-84],[-59,-109],[36,-115],[11,-123],[-48,-62],[-46,-117],[-93,-1],[-12,-176],[-6,-139],[-42,-73],[-25,-179],[-66,-16],[-44,-100],[-138,-105],[-76,-131],[-74,-24],[7,-173],[13,-246],[-49,-16],[-26,-109],[-52,-63],[-2,-129],[-39,-71],[-45,-120],[-44,71],[-73,-57],[55,-135],[-97,16],[-104,-135],[-70,-55],[-84,-144],[-44,118],[-41,75],[-32,-62],[-22,101],[-2,108],[-66,-32],[-9,-148],[-17,-94],[29,-128],[88,-99],[-7,-127],[11,-251],[49,-169],[63,-151],[18,-120],[-20,-122],[-49,-126],[2,-239],[32,-151],[29,-150],[34,-134],[67,-192],[104,-214],[62,-40],[73,16],[67,3],[114,43],[84,-73],[17,-147],[-2,-152],[-8,-140],[-7,-102],[-15,-154],[-20,-70]],[[66656,44146],[-17,50],[-15,45],[-9,28],[-5,15],[-103,317],[-74,-1],[-27,-1],[-593,-7],[-55,-1],[-90,-1],[-36,-1],[-171,2],[-29,-1],[-140,-3],[-67,-2],[-58,3],[-50,0],[-27,-1],[-114,-1],[-24,-5],[-3,0],[-24,-4],[0,-1],[-22,-14],[-60,-2],[-27,-1],[-80,-4],[-29,-1],[-10,9],[-119,240],[-40,80],[0,276],[0,73],[1,113],[0,6],[0,60],[0,88],[4,356],[17,49],[24,64],[-23,76],[-29,98],[4,91],[-1,603],[0,67],[0,139],[0,94],[-5,-3],[-13,-18],[-22,-21],[-23,16],[-24,-9],[-24,-9],[-24,4],[-22,13],[-25,-4],[-26,-10],[-29,15],[-24,-1],[-23,25],[-24,12],[-23,10],[-30,23],[-20,40],[-30,8],[-24,4],[-22,-22],[-21,-21],[-24,-13],[-23,5],[-25,5],[-22,5],[-25,-1],[-21,-22],[-18,-37],[-21,-31],[-17,-36],[-14,-44],[-24,-10],[-19,-30],[-22,10],[-15,-1],[-12,-2],[-24,-4],[-22,-23],[-16,-39],[-24,-20],[-23,-46],[-28,-22],[-28,7],[-24,-2],[-14,-45],[-7,-57],[-14,-45],[-23,7],[-20,-32],[3,-62],[1,-57],[-22,-13],[-25,9],[-14,-50],[-15,-43],[-16,-42],[-19,35],[-20,33],[-25,10],[-24,1],[-24,-9],[-23,0],[-20,34],[-10,52],[-23,8],[-10,-52],[-22,-42],[-23,21],[-21,-33],[-7,-57],[-1,-67],[21,-44],[7,-61],[-11,-59],[-17,-41],[-6,-20],[-9,-30]],[[63113,46086],[-44,48],[-49,10],[-43,-5],[-81,2],[-30,44],[-56,192],[-4,123],[-5,190],[-8,142],[-29,334],[-16,44],[-21,41],[-31,63],[-38,69],[-34,59],[-27,43],[-45,44],[-50,67],[-21,156],[-5,73],[5,69],[7,63],[17,62],[30,65],[64,33],[60,24],[35,18],[23,38],[34,71],[8,69],[-19,61],[-29,36],[-26,41],[-25,44],[-29,56],[-20,44],[-30,72],[-12,52],[-6,66],[0,67],[10,60],[15,53],[21,101],[11,69],[-1,66],[-11,54],[-15,44],[-22,45],[-3,8],[-23,63],[-13,64],[-5,55],[-2,15],[0,16],[1,65],[0,7],[6,58],[3,10],[26,79],[33,37],[28,-1],[22,-32],[28,-23],[2,0],[35,-9],[49,18],[34,40],[32,51],[30,42],[6,19],[13,43],[0,63],[7,81],[4,74],[-12,73],[-14,82],[-15,230],[-10,71],[-6,95],[-2,75],[-1,5],[-18,144],[5,92],[11,67],[13,71],[7,73],[7,62],[13,86],[6,58],[13,75],[19,39],[25,58],[20,49],[24,76],[25,127],[11,67],[-10,69],[-18,52],[1,68],[13,80],[23,74],[18,68],[37,126],[26,31],[30,27],[24,26],[32,39],[18,57],[12,76],[27,84],[-4,64],[20,59],[24,20],[24,47],[21,69],[14,58],[0,61],[2,71],[5,90],[13,64],[-11,51],[-1,56],[10,55],[8,55],[28,2],[20,26],[23,36],[-2,59],[-21,24],[-19,34],[-22,59],[-17,41],[-17,90],[1,62],[0,57],[2,60],[9,54],[20,37],[23,24],[15,50],[20,29],[15,52],[8,52],[14,46],[26,86],[5,59],[-6,79],[-12,71],[-23,0],[-27,-13],[-12,26],[-16,35],[-13,30],[-8,17],[-27,28],[-28,8],[-24,31],[-12,58],[12,86],[-1,60],[-8,61],[-9,61],[-17,40],[-24,-4],[-14,51],[-22,60],[-25,28],[-26,22],[-9,-53],[-15,-43],[-23,48],[-14,54],[-16,40],[-19,54],[-21,50],[-14,44],[-12,87],[27,35],[23,-2],[38,14],[33,24],[50,37],[15,41],[18,79],[7,74],[-2,61],[-21,51],[-41,-4],[-30,41],[-23,16],[-39,14],[-17,16],[-20,19],[-20,43],[-14,58],[-21,85],[3,20],[5,37],[16,54],[9,65],[-3,64],[-20,44],[-29,90],[-17,66],[-15,64],[-2,62],[-6,66],[16,39],[26,113],[0,61],[-7,74],[-8,91],[0,1],[-6,54],[-14,45],[-24,52],[-17,40],[8,66],[-22,42],[-19,42],[-22,48],[2,63],[3,69],[-1,87],[-3,56],[-7,65],[-22,5],[-22,37],[-15,44],[-34,36],[-12,51],[6,68],[28,8],[18,40],[1,60],[-13,56],[-12,75],[6,67],[12,74],[52,75],[-7,57],[-8,71],[-10,55],[-22,37],[-8,53],[-21,58],[-29,23],[-14,46],[-16,31],[-5,11],[-3,58],[-9,52],[-36,60],[-2,6],[-16,41],[-29,37],[-36,45],[-29,0],[-33,29],[-12,66],[-25,16],[-30,13],[-20,32],[-17,39],[-16,39],[-26,22],[-31,15],[-21,-19],[-41,-20],[-25,27],[-2,58],[16,56],[10,81],[15,60],[-22,54],[-27,14],[-20,44],[-18,43],[-29,-11],[-23,-19],[-22,11],[-20,30],[-24,-8],[-18,44],[-34,77],[-10,54],[-14,44],[-15,47],[-22,39],[-26,0],[-24,19],[-33,94],[-29,94],[-25,45],[-4,57],[17,47],[18,45],[0,56],[0,14],[-3,98],[-9,63],[-13,46],[-2,56],[-18,41],[-17,81],[-16,47],[-24,0],[-24,18],[-11,67],[-24,27],[19,42],[21,52],[14,66],[-7,6],[-18,16],[-24,4],[-20,28],[-16,10],[-7,5],[-14,43],[-19,32],[-17,37],[-23,35],[-25,4],[-30,-3],[-23,-27],[-16,-39],[-21,-32],[-43,-31],[-13,48],[-19,34],[-16,42],[9,53],[-14,52],[-16,46],[-2,-1],[-20,-16],[-18,-45],[-24,-15],[-25,23],[-15,43],[-16,45],[-25,6],[-24,-20],[-23,15],[-15,43],[-1,73],[-8,52],[-20,27],[-23,41],[-24,6],[-25,12],[-23,23],[-29,7],[-25,-5],[-28,21],[-22,-35],[-19,-40],[-26,-1],[-24,-14],[-24,20],[-24,9],[-29,30],[-23,11],[-20,49],[-8,59],[0,10],[-5,45],[7,57],[-9,59],[-8,73],[-12,48],[-22,30],[-15,53],[-26,10],[-27,7],[-26,6],[-23,16],[-18,41],[-9,60],[-1,71],[-5,71],[-14,52],[-15,51],[-21,46],[-27,-28],[-26,-10],[-21,-33],[-22,-8],[-20,-6],[-10,-2],[-24,5],[-28,18],[-19,54],[-22,-8],[-1,0],[-1,0],[-24,1],[-20,30],[-28,17],[-24,-6],[-23,21],[-23,28],[-28,2],[-28,12],[-22,9],[-22,38],[-24,16],[-25,37],[-25,7],[-13,2],[-13,1],[-15,53],[-1,4],[-13,53],[-14,53],[-19,13],[-3,2],[-28,-13],[-1,0],[-13,-47],[-37,-4],[-18,42],[-19,38],[2,55],[-4,71],[-7,58],[9,63],[22,-16],[20,41],[23,31],[17,41],[23,3],[0,55],[-14,53],[-12,59],[-9,69],[-8,68],[-5,80],[13,50],[28,73],[23,65],[28,23],[20,30],[4,55],[24,25],[17,41],[18,33],[-6,55],[-11,78],[6,55],[-1,21],[-1,38],[-2,4],[-18,47],[-22,21],[-17,-42],[-21,30],[-30,-1],[-14,43],[-25,-16],[-21,29],[-11,9],[-17,15],[-27,5],[-5,56],[0,26],[1,34],[7,60],[0,3],[-10,48],[-23,20],[-14,50],[-16,43],[-1,2]],[[65429,71483],[-9,-53],[32,-112],[43,-122],[44,-109],[10,-25],[49,-491],[-90,-94],[-12,-55],[-113,-30],[-55,-50],[-45,-130],[-43,-65],[-46,0],[-60,-105],[-43,-22],[5,-37],[8,-57],[62,22],[77,58],[47,3],[50,145],[46,97],[85,6],[-2,-125],[-38,-190],[-9,-104],[-36,-161],[-25,-51],[0,-108],[-30,-134],[-12,-138],[-35,-83],[-25,-123],[-28,-115],[44,0],[30,104],[35,4],[29,58],[-22,47],[55,126],[15,116],[17,163],[19,191],[56,105],[-5,83],[11,73],[52,-44],[22,145],[-40,44],[43,77],[40,56],[36,-6],[-27,133],[104,178],[-11,110],[24,111],[15,104],[-84,21],[-72,217],[-3,15],[-15,103],[-36,122]],[[66564,71493],[-45,-223],[64,-57],[87,-367],[-128,-230],[91,-266],[86,-395],[17,-119],[31,-80],[70,-45],[38,-44],[34,-161],[-114,-63],[-34,-146],[-57,-114],[1,-91],[0,-33],[-118,-6],[-8,184],[-49,73],[1,-185],[-65,-14],[-46,3],[-91,8],[-32,94],[-14,-121],[-61,-99],[66,-34],[69,52],[85,-96],[101,-23],[46,-2],[2,-119],[-48,-55],[2,-107],[-43,-65],[-49,64],[13,-107],[-55,-73],[-115,-26],[-68,-38],[-28,-138],[-21,-94],[49,-39],[37,13],[22,142],[86,4],[63,-30],[42,120],[61,0],[61,141],[26,-20],[-16,165],[49,60],[70,37],[29,239],[27,-12],[46,-20],[16,159],[23,155],[68,5],[95,139],[-19,132],[98,-136],[46,-151],[70,-128],[51,-156],[-14,-182],[-92,-170],[-85,-60],[-69,1],[-26,-178],[-52,-179],[-56,-83],[-3,-135],[37,65],[61,-27],[23,170],[80,164],[77,-175],[38,-50],[13,169],[95,93],[70,-33],[-10,128],[-63,83],[119,20],[98,34],[64,140],[23,167],[60,181],[57,86],[69,39],[14,-200],[51,-138],[51,-182],[38,-155],[55,-118],[47,-66],[94,-87],[66,-101],[174,-293],[66,-61],[210,-209],[-14,-150],[-85,-60],[-41,2],[-55,-20],[-30,-63],[-87,52],[-61,0],[-74,-78],[-9,-99],[76,57],[66,6],[62,-50],[-43,-72],[-67,20],[-49,-106],[-71,-4],[20,-207],[74,16],[80,150],[41,-63],[43,120],[5,-219],[57,35],[-16,-157],[44,-137],[18,196],[113,14],[-26,189],[70,247],[-16,127],[131,-33],[60,42],[41,-76],[-85,-276],[-6,-332],[-3,-282],[-3,-133],[51,-436],[33,-205],[40,-233],[60,-424],[30,-135],[-10,-2],[-50,-11],[2,14],[-14,182],[-117,114],[-105,88],[-56,108],[-47,115],[-44,159],[-48,135],[-66,-48],[33,-153],[62,-140],[62,-75],[19,-128],[-119,107],[-93,72],[-53,-63],[-75,-20],[-45,-87],[9,-221],[-58,-66],[-109,-22],[-22,-185],[-63,-73],[-23,-119],[-77,-36],[5,69],[-19,93],[-44,38],[7,-84],[-10,-146],[0,-34],[-33,-37],[-56,241],[-16,112],[-2,17],[41,0],[57,15],[0,100],[-53,23],[-97,-23],[-19,-38],[0,-72],[-6,-7],[-32,-123],[-40,-135],[-44,52],[-69,-70],[-24,-106],[-68,185],[13,122],[-68,142],[-39,54],[12,-171],[41,-94],[-21,-98],[-132,-164],[0,107],[25,89],[-11,92],[-68,13],[-37,28],[-55,48],[-66,100],[-46,3],[-78,-72],[-58,84],[-60,106],[4,211],[-46,-114],[-6,-14],[-25,-164],[-38,-62],[46,-126],[58,4],[33,-60],[33,-118],[34,13],[61,-44],[-31,-236],[-52,69],[-14,-101],[-25,-86],[47,-88],[78,-39],[39,-179],[54,-37],[44,194],[43,11],[77,-20],[43,16],[43,7],[50,-147],[37,-211],[49,-32],[87,58],[48,-209],[-57,-118],[60,-17],[46,68],[44,90],[32,117],[91,91],[19,-174],[18,-85],[63,37],[59,-24],[29,-111],[86,-36],[90,56],[94,9],[40,-93],[93,-76],[36,-125],[-18,-89],[-26,-100],[95,-37],[60,-5],[202,117],[112,-212],[104,-194],[116,-91],[117,-140],[111,-134],[135,-219],[65,-130],[39,-123],[42,-105],[28,-120],[40,-122],[15,-111],[50,-348],[34,-222],[-208,-228],[-2,-3],[-65,-74],[-72,-133],[-75,-217],[-27,-149],[37,-64],[-56,-83],[-45,38],[-74,-68],[-36,-56],[26,-211],[-1,-23],[-52,-168],[-87,66],[-6,140],[76,270],[9,237],[-33,118],[-47,36],[-98,20],[-21,121],[28,105],[0,127],[-47,142],[23,106],[-88,2],[-64,-96],[71,-32],[24,-157],[-24,-98],[-3,-160],[26,-99],[29,-114],[-21,-152],[-70,-41],[-46,31],[-87,-43],[-97,-35],[-24,200],[-79,-88],[-46,37],[-19,263],[-12,229],[-27,128],[-45,25],[-74,20],[83,-191],[12,-176],[-55,13],[47,-134],[4,-162],[91,-214],[2,-117],[77,39],[5,-135],[27,-199],[0,-207],[-30,-277],[-98,-166],[-4,212],[16,197],[-73,132],[-72,-53],[-39,-111],[-75,22],[-87,57],[-45,75],[-78,184],[-16,178],[-49,-14],[-99,227],[-55,22],[-8,4],[-9,256],[-32,83],[-56,257],[-77,-96],[-106,262],[-78,-2],[-18,-1],[-67,226],[-53,-20],[-38,82],[-44,51],[-55,-6],[-28,349],[-63,-23],[-49,-72],[-23,194],[-64,92],[19,325],[-48,72],[-71,136],[-61,49],[47,84],[-7,98],[-72,-7],[-53,-61],[-31,278],[-1,109],[28,123],[-18,124],[-87,215],[-2,131],[-36,173],[-86,51],[-45,58],[-7,122],[-39,289],[-61,-54],[-27,-142],[-123,19],[-72,-22],[-106,-50],[53,153],[8,170],[-77,-11],[-76,-2],[-52,121],[-63,24],[-39,74],[-26,-46],[-77,18],[-79,0],[-76,125],[-40,142],[-113,6],[-82,22],[-18,120],[2,176],[-99,17],[-75,-85],[-25,97],[-77,0],[-53,-165],[67,-57],[33,74],[23,-97],[109,-125],[51,-6],[35,-91],[74,-51],[39,-91],[100,28],[49,-96],[55,-125],[88,-40],[105,-13],[20,-23],[20,-110],[22,-107],[-21,-185],[80,136],[11,-223],[63,-80],[62,-37],[105,-190],[-25,-156],[60,-181],[-69,82],[-90,39],[-55,-157],[-87,-84],[-58,-156],[67,-111],[54,-145],[-33,-82],[6,-107],[61,-30],[97,81],[61,-50],[148,34],[73,-70],[53,-52],[42,-92],[85,-8],[70,-5],[52,-17],[50,-22],[82,-128],[-36,-133],[58,-101],[102,-114],[-65,-160],[92,-147],[-54,-165],[48,-52],[40,79],[95,-86],[51,-102],[-11,-210],[64,44],[71,9],[66,-28],[49,-51],[-6,-105],[19,-24],[77,-97],[-52,-99],[-19,-112],[11,-222],[36,71],[73,204],[120,-40],[48,-72],[-24,-216],[78,-49],[2,0],[46,-1],[52,-322],[43,40],[123,-182],[75,-84],[-82,-200],[-65,-37],[-48,-65],[-21,-189],[59,-16],[46,129],[69,-22],[37,-64],[49,-59],[-29,-107],[-15,-131],[52,-100],[19,-142],[16,-168],[25,-234],[36,-160],[70,-111],[89,-188],[56,72],[51,-44],[66,-188],[96,-191],[-91,-206],[-93,-173],[-50,-105],[-38,-127],[-37,-161],[43,-179],[32,-114],[16,-132],[18,-137],[19,-157],[-61,50],[-101,-3],[-16,150],[-20,157],[-90,61],[-35,-127],[65,-122],[-36,-155],[71,-212]],[[85172,39840],[-28,50],[-36,114],[-25,91],[-13,58],[-11,69],[-1,5],[-14,74],[-11,52],[0,3],[-3,7],[-9,27],[-3,9],[-17,37],[-30,56],[-6,11],[-2,3],[-51,98],[-85,162],[-65,125],[-64,142],[-20,40],[-36,83],[-66,139],[-40,87],[-28,73],[-17,41],[-49,64],[-29,39],[-31,38],[-23,28],[-21,25],[-62,65],[-24,29],[-30,59],[-63,174],[-5,12],[-30,84],[-23,61],[-15,43],[-47,129],[-27,72],[-33,91],[-17,45],[-14,39],[-5,12],[-3,5],[-22,40],[-25,-18],[-27,6],[-27,24],[-29,-28],[-29,-22],[-17,-72],[-35,-100],[-23,-64],[-11,-161],[-17,-37],[-3,-72],[-4,5],[-21,24],[-10,98],[-16,-92],[-22,-21],[-35,5],[-29,-13],[-75,26],[-23,6],[-51,13],[-88,-17],[-34,-8],[-31,-5],[-43,-8],[-73,-15],[-4,104],[0,12],[-2,48],[-12,322],[-1,21],[-5,140],[-5,83],[-17,399],[0,9],[-45,44],[-28,34],[-32,1],[-25,1],[-1,0],[-45,0],[-25,0],[-87,-4],[-35,-1],[-30,0],[-23,8],[-44,20],[-45,25],[-22,12],[-22,13],[-50,38],[-63,49],[-35,26],[-54,40],[-23,16],[-78,50],[-33,19],[-26,8],[-28,3],[-29,-4],[-44,-18],[-151,-67],[-39,-17],[-48,-21],[-99,-46],[-29,-23],[-24,-25],[-20,-25],[-27,-41],[-39,-76],[-26,-49],[-28,-53],[-24,-36],[-57,-47],[-63,-20],[-25,-8],[-32,-10],[-41,-3],[-30,3],[-31,9],[-26,7],[-64,22],[-23,13],[-39,24],[-39,33],[-25,51],[-39,77],[-18,39],[-31,66],[-21,40],[-24,30],[-3,1],[-21,17],[6,-58],[-8,-57],[-5,-22],[-57,-239],[-19,-38],[-22,11],[-9,-50],[-1,-66],[1,-55],[-25,-49],[-10,-56],[-16,-56],[-24,-38],[-4,-6],[-20,37],[-27,-21],[-23,22],[-26,-29],[-21,-40],[-26,43],[-23,88],[-24,-17],[-20,-92],[18,-102],[-7,-76],[-26,-4],[-39,4],[-9,-63],[28,-119],[-23,-26],[-22,43],[-39,15],[-55,46],[-19,-36],[7,-67],[38,-49],[-20,-41],[-95,80],[-15,-144],[-32,-51],[-25,-24],[-31,8],[-12,68],[6,54],[-22,56],[-13,65],[-33,2],[-29,-22],[-42,-29],[1,-63],[-3,-82]],[[79980,42142],[-43,83],[-67,-7],[-42,-3],[-40,84],[-58,28],[-56,61],[-45,39],[-54,16],[-50,22],[-66,20],[-62,25],[-67,29],[-13,152],[10,135],[-7,134],[-41,151],[-92,126],[-58,159],[-49,61],[-69,0],[-101,-11],[-70,-54],[-10,116],[-11,132],[-27,183],[-37,150],[-60,126],[-37,188],[-28,133],[-9,66],[-8,60],[-61,75],[-69,95],[-18,-2],[-47,-5],[-44,37],[-54,34],[-48,146],[7,139],[49,140],[52,132],[61,-50],[49,-49],[33,-9],[12,-3],[53,15],[54,10],[41,112],[9,19],[41,85],[0,119],[-2,158],[34,218],[-16,177],[-65,90],[-49,152],[9,118],[24,28],[42,50],[70,33],[50,44],[63,32],[44,29],[84,91],[70,110],[53,94],[67,143],[65,155],[77,121],[51,80],[24,108],[62,-15],[42,-56],[51,92],[85,40],[42,5],[35,6],[19,101],[43,53],[46,85],[49,74],[54,60],[50,108],[47,54],[61,125],[-30,152],[6,105],[3,107]],[[80093,48713],[108,187],[161,190],[213,202],[30,8],[32,10],[38,3],[32,1],[39,13],[58,167],[31,97],[36,35],[43,7],[2,113],[-22,39],[-136,86],[-50,109],[-23,54],[6,63],[16,40],[48,42],[36,31],[11,102],[-69,94],[-137,126],[-56,45],[-19,96],[1,3],[0,91],[-15,69],[-18,35],[-26,6],[-70,14],[-153,159],[-45,87],[3,78],[197,219],[-3,104],[-49,10],[-116,-2],[-57,109],[-24,103],[46,86],[62,58],[68,125],[9,84],[-32,98],[-17,75],[-36,15],[-53,20],[-43,15],[-29,88],[-32,174],[-40,82],[-51,-31],[-53,-22],[-51,81],[-34,137],[-22,306],[28,22],[26,-9],[35,-2],[27,9],[22,55],[9,65],[-3,69],[-17,45],[-18,40],[-23,3],[-28,-12],[-18,-34],[-35,-67],[-44,-40],[-34,-13],[-33,3],[-35,31],[-22,40],[-3,83],[6,99],[13,78],[31,21],[36,-24],[48,-19],[28,3],[24,-2],[37,1],[25,55],[-17,60],[-29,70],[-25,85],[-23,62],[-29,26],[-32,23],[-23,20],[-1,58],[31,38],[23,47],[14,68],[15,81],[7,52],[-1,92],[-11,63],[-24,57],[-22,21],[-39,35],[-12,63],[24,57],[37,22],[49,56],[28,39],[-7,62],[-28,57],[-53,47],[-32,87],[-10,59],[-9,88],[27,34],[30,-8],[24,-5],[36,5],[9,67],[-20,55],[-37,30],[-7,5],[-23,24],[-37,37]],[[84263,67926],[3,-73],[12,-370],[4,-126],[4,-111],[11,-261],[0,-157],[0,-48],[2,-135],[0,-30],[8,-268],[3,-92],[0,-17],[1,-30],[6,-112],[4,-89],[-2,-58],[2,-36],[4,-121],[8,-96],[4,-98],[0,-5],[0,-67],[0,-9],[1,-8],[4,-40],[13,-223],[22,-657],[0,-168],[3,-74],[7,-223],[3,-99],[3,-91],[14,-443],[13,-397],[4,-149],[16,-486],[1,-31],[2,-83],[1,-50],[2,-53],[4,-90],[0,-11],[3,-83],[3,-81],[4,-123],[1,-44],[2,-142],[0,-18],[4,-124],[-2,-46],[-2,-76],[5,-108],[20,-321],[16,-475],[14,-395],[-1,-72],[8,-303],[4,-102],[25,-759],[2,-60],[5,-132],[18,-539],[3,-67],[14,-414],[0,-6],[2,-57],[7,-216],[37,-1078],[7,-391],[14,-309],[4,-91],[5,-134],[11,-368],[7,-230],[8,-239],[0,-16],[6,-186],[3,-103],[0,-12],[3,-60],[10,-331],[3,-94],[0,-15],[3,-83],[9,-419],[3,-113],[4,-102],[10,-237],[4,-49],[5,-173],[7,-223],[2,-59],[6,-149],[3,-93],[4,-133],[3,-137],[7,-158],[3,-50],[3,-69],[0,-1],[3,-85],[1,-32],[5,-182],[3,-98],[2,-72],[7,-201],[0,-30],[1,-84],[4,-156],[9,-273],[1,-39],[2,-56],[2,-23],[7,-91],[11,-354],[4,-135],[16,-517],[0,-1],[0,-5],[2,-63],[19,-559],[4,-124],[2,-83],[3,-92],[18,-544],[5,-159],[12,-359],[0,-1],[11,-358],[6,-177],[2,-61],[4,-137],[4,-137],[7,-366],[2,-137],[3,-97],[21,-435],[5,-183],[3,-76],[7,-221],[8,-225],[5,-206],[17,-513],[0,-5],[7,-244],[6,-174],[13,-385],[5,-168],[5,-199],[4,-143],[-7,-157],[0,-3],[38,-883],[2,-45],[4,-131],[11,-313],[10,-309],[3,-81],[9,-238],[7,-174],[8,-234]],[[63113,46086],[22,-57],[8,-21],[6,-59],[-1,-12],[-5,-104],[3,-58],[6,-113],[10,-128],[-14,-66],[-54,-70],[-60,2],[-54,2],[-40,-3],[-26,-46],[-16,-105],[4,-91],[11,-67],[9,-51],[22,-129],[2,-128],[-14,-60],[-3,-14],[-25,-98],[-43,-170],[-40,-160],[-43,-148],[-2,-9],[-2,-5],[-17,-104],[22,-90],[34,-58],[39,-64],[40,-114],[23,-139],[0,-119],[-23,-140],[-33,-124],[-24,-182],[2,-100],[22,-146],[44,-112],[49,-73],[31,-38],[41,-51],[44,-48],[23,-34],[-6,-145],[-30,-124],[-38,-156],[-57,-73],[-73,-34],[-69,-35],[-31,-54],[-8,-98],[14,-74],[23,-64],[48,-66]],[[62864,41459],[31,-42],[36,-49],[80,-69],[47,-16],[63,-6],[30,-122],[-16,-142],[-43,-126],[-60,-103],[-36,-77],[-34,-98],[-16,-150],[4,-165],[-7,-121],[-13,-108],[-5,-115],[29,-147],[46,-107],[37,-127],[23,-89],[6,-21],[26,-60],[29,-68],[92,10],[70,-74],[25,-116],[38,-142],[37,-173],[-19,-137],[-22,-163],[-15,-153],[2,-61],[4,-114],[2,-226],[0,-139],[-4,-11],[-60,-146],[-2,-13],[-22,-166],[-9,-43],[-22,-97],[-12,-25],[-44,-88],[-44,-183],[-14,-201],[-3,-212],[37,-167],[29,-119],[38,-104],[-53,-149],[15,-189],[40,-145],[-15,-169],[5,-106],[-8,-190],[44,-124],[23,-109],[14,-146],[4,-174],[-37,-138],[-56,-50],[-59,38],[-61,-18],[-27,105],[-57,89],[-49,37],[-75,-22],[-45,-110]],[[62806,34698],[-31,2],[1,92],[-9,59],[-17,66],[-25,23],[-26,11],[-20,-27],[-13,-49],[5,-55],[19,-36],[9,-51],[-32,-1],[-22,20],[-9,69],[-6,59],[-12,56],[-26,10],[-27,21],[-18,49],[-17,44],[-11,-52],[-24,-17],[-26,20],[-27,-4],[5,59],[-17,35],[-22,28],[-25,4],[-20,30],[-21,20],[-24,-6],[-29,7],[-25,24],[-20,38],[-20,26],[-29,25],[-20,30],[-20,30],[-24,20],[-24,15],[-21,41],[-15,47],[-20,47],[-23,13],[-28,-10],[-27,-20],[-26,7],[-16,42],[-15,10],[-17,12],[-16,41],[12,52],[5,55],[-2,56],[1,58],[3,55],[-7,56],[-30,34],[23,21],[20,35],[7,56],[-12,48],[-5,58],[-21,37],[7,56],[15,48],[1,64],[-22,59],[-17,51],[-14,65],[16,68],[12,55],[-10,70],[-16,74],[-9,57],[7,70],[0,143],[-1,186],[-2,134],[-2,72],[-6,65],[-16,41],[-30,47],[-13,46],[-8,55],[-12,64],[4,57],[8,58],[-8,61],[-6,57],[11,64],[-4,143],[-5,81],[-7,204],[-6,109],[-4,55],[-5,82],[-13,55],[-20,27],[-21,28],[-23,8],[-22,19],[-47,41],[-25,14],[-32,-19],[-27,-9],[-31,17],[-44,37],[-28,26],[-30,66],[-21,24],[-25,18],[-24,0],[-40,28],[-28,27],[-25,36],[-35,24],[-127,107],[-54,51],[-143,136],[-123,115],[-51,47],[-42,39],[-24,23],[-23,20],[-153,140],[-56,51],[-61,56],[-147,125],[-2,1],[-56,56],[-199,177],[-120,106],[-39,35],[-26,27],[-48,46],[-79,75],[-123,110],[-40,36],[-52,46],[-47,41],[-42,37],[-32,27],[-30,28],[-57,53],[-39,28],[-23,1],[-25,-11],[-25,31],[-25,4],[-26,-37],[-27,-8],[-40,39],[-7,3],[-20,7],[-23,-19],[-24,-16],[-16,1],[-15,2],[-26,11],[-24,16],[-25,11],[-23,-19],[-21,-51],[-20,-30],[-25,-10],[-22,15],[-24,-1],[-24,20],[-29,-14],[-22,-13],[-24,-20],[-18,-72],[-25,-19],[-29,3],[-24,-6],[-22,-12],[-25,-17],[-30,10],[-29,-7],[-20,-42],[-14,-43],[-22,-18],[-22,-18],[-26,4],[-22,-24],[-25,-25],[-27,15],[-25,4],[-25,12],[-26,1],[-24,24],[-23,5],[-23,-3],[-25,15],[-25,6],[-23,-22],[-26,-4],[-23,24],[-23,32],[-23,18],[-29,14],[-26,9],[-39,8],[-41,9],[-30,12],[-23,-18],[-22,-10],[-24,-12],[-23,11],[-20,26],[-26,11],[-25,10],[-24,1],[-22,-12],[-26,-13],[-24,4],[-11,-5],[-12,-5],[-20,37],[-21,41],[-24,16],[-26,49],[-22,30],[-20,35],[-19,33],[-24,3],[-22,-14],[-22,-16],[-23,-3],[-23,0],[-24,0],[-23,5],[-25,1],[-27,19],[-30,-4],[-23,5],[-21,32],[-24,19],[-29,15],[-29,25],[-26,10],[-26,23],[-22,-12],[-27,1],[-29,-8],[-21,-21],[-19,-36],[-22,-12],[-14,-48],[-23,-19],[-23,-5],[-29,11],[-22,12],[-22,-27],[-22,-25],[-21,21],[-23,-15],[-24,5],[-21,-23],[-25,9],[-24,-3],[-22,-25],[-23,-17],[-26,2],[-23,-15],[-24,-7],[-22,17],[-23,9],[-22,-28],[-25,-4],[-4,-2],[-19,-16],[-22,-41],[-25,-4],[-15,-20],[-7,-9],[-21,-29],[-26,5],[-25,14],[-23,0],[-20,-40],[-21,-33],[-21,24],[-9,-51],[-23,-4],[-21,-25],[-25,3],[-22,6],[-28,-16],[-17,-50],[-20,-30],[-24,-13],[-23,-4],[-19,-30],[-29,-24],[-26,-17],[-21,-27],[-23,-38],[-18,-38],[-15,-42],[0,-55],[-15,-49],[0,-61],[-8,-56],[-17,-39],[-23,-19],[-14,-46],[-11,-53],[-19,-32],[-16,-49],[-5,-56],[6,-64],[-11,-53],[-21,-48],[-22,-28],[-25,-2],[-25,-16],[-21,-46],[-20,-26],[-23,-16],[-22,-15],[-20,-27],[-21,-23],[-21,-27],[-13,-46],[-22,-20],[-10,-52],[-6,-72],[-13,-48],[-13,-48],[-11,-47],[-22,-27],[-10,-51],[-21,-27],[-18,-32],[-17,-39],[-16,-39],[0,-56],[-7,-61],[-12,-48],[-13,-48],[-4,-7],[-29,136],[-22,105],[-36,259],[-21,89],[-22,144],[-23,160],[-13,90],[-11,63],[-4,22],[-11,62],[-19,88],[-32,178],[-98,645],[-35,224],[-24,154],[-51,325],[-14,87],[-46,297],[-27,189],[-38,306],[-33,205],[-26,102],[-22,156]],[[54306,42862],[76,136],[53,75],[51,76],[52,34],[67,-24],[86,18],[61,-40],[69,-35],[49,109],[76,198],[104,59],[-8,-175],[61,-71],[92,-44],[76,-9],[54,-77],[50,4],[83,26],[75,-37],[49,60],[46,4],[50,-9],[74,-96],[56,-93],[82,125],[42,-29],[45,-6],[65,-46],[51,100],[63,162],[-60,21],[-57,-29],[-59,-5],[-49,95],[-62,-4],[-70,88],[-63,88],[-59,50],[-68,31],[-54,-11],[-64,-27],[-38,12],[-35,4],[-42,27],[-26,116],[-44,115],[-57,16],[-36,95],[1,142],[31,53],[38,97],[45,91],[54,74],[74,83],[-47,70],[-59,-12],[-9,132],[6,129],[5,115],[9,106],[8,132],[5,170],[11,215],[44,128],[47,64],[71,102],[39,25],[69,5],[57,-59],[46,-13],[105,36],[42,142],[0,172],[-46,40],[-91,-34],[-61,46],[-65,39],[-48,32],[-50,69],[-56,-8],[-42,85],[-14,159],[-19,108],[0,88],[6,137],[-37,148],[-18,163],[-5,180],[21,132],[34,69],[47,140],[52,125],[70,51],[48,101],[41,175],[43,109],[-21,112],[-35,97],[-46,56],[-59,20],[14,26],[33,65],[6,124],[-26,98],[-65,53],[-9,108],[30,152],[45,40],[47,-68],[73,98],[9,161],[-40,25],[1,1],[2,5],[159,306],[58,110],[52,102],[69,137],[2,3],[11,22],[2,2],[1,2],[10,21],[14,27],[6,11],[10,21],[8,14],[6,12],[35,63],[9,18],[30,58],[4,8],[14,27],[9,16],[12,24],[2,4],[13,25],[9,16],[4,8],[6,12],[3,5],[3,6],[5,10],[2,4],[1,0],[30,59],[13,25],[7,13],[5,10],[2,4],[5,9],[23,44],[1,2],[1,3],[2,3],[16,31],[9,18],[4,7],[3,5],[14,26],[1,3],[2,3],[15,29],[4,8],[4,7],[0,1],[8,14],[14,29],[11,21],[3,6],[8,15],[11,21],[10,18],[26,52],[23,43],[13,24],[18,35],[8,15],[1,2],[7,14],[20,38],[2,4],[8,15],[1,2],[14,27],[8,15],[3,7],[19,34],[9,18],[1,2],[8,15],[4,7],[3,6],[2,6],[9,16],[9,17],[10,19],[5,11],[7,11],[20,40],[6,12],[11,20],[1,3],[4,6],[8,15],[10,20],[1,2],[12,24],[8,14],[4,7],[3,7],[5,10],[5,9],[7,14],[2,3],[6,11],[2,4],[12,23],[20,39],[1,2],[9,17],[4,8],[2,3],[23,45],[32,63],[31,57],[0,1],[26,49],[11,20],[0,2],[14,26],[4,7],[7,13],[8,16],[13,25],[10,19],[7,13],[1,2],[4,8],[2,4],[2,3],[19,37],[7,13],[9,17],[12,23],[14,26],[9,18],[6,12],[6,11],[9,16],[16,31],[8,16],[5,9],[1,3],[3,4],[1,3],[1,2],[14,27],[6,11],[2,4],[13,26],[8,14],[0,1],[3,4],[3,6],[1,2],[2,4],[21,40],[24,46],[3,6],[15,28],[6,13],[3,5],[17,34],[7,12],[4,8],[8,15],[12,23],[3,7],[10,18],[21,41],[4,7],[2,4],[0,1],[14,25],[1,2],[10,20],[2,4],[11,21],[2,3],[8,15],[4,8],[4,7],[7,14],[3,5],[1,4],[2,2],[1,2],[4,8],[2,5],[17,31],[8,16],[3,5],[7,13],[10,21],[9,17],[7,13],[17,32],[3,5],[5,10],[13,26],[11,21],[3,5],[1,2],[3,5],[1,3],[21,40],[0,1],[24,45],[16,31],[1,2],[1,2],[34,64],[4,8],[2,3],[1,2],[1,2],[35,65],[15,30],[1,3],[2,3],[0,1],[1,1],[1,2],[9,17],[21,41],[2,3],[3,7],[4,7],[0,1],[11,20],[6,11],[2,3],[6,12],[1,4],[3,5],[2,3],[2,4],[3,6],[7,13],[1,3],[1,2],[3,5],[3,5],[6,12],[18,35],[3,6],[11,19],[3,7],[1,2],[2,4],[1,1],[19,36],[77,148],[63,121],[32,60],[-28,54],[-14,27],[-23,43],[-3,7],[-7,13],[-13,25],[-4,7],[-11,21],[-1,3],[-5,8],[-4,9],[-4,7],[-6,12],[-2,4],[-2,4],[-1,3],[-2,2],[-16,31],[-5,10],[-2,4],[-9,16],[-14,28],[0,1],[-3,5],[-1,3],[-3,5],[-2,3],[-4,9],[-2,4],[-4,7],[-2,3],[-3,7],[-3,5],[-10,18],[-4,9],[-6,11],[-7,14],[-3,6],[-7,14],[-8,15],[-7,13],[-3,6],[-4,7],[-9,18],[-5,9],[-6,13],[-19,36],[-16,31],[-6,10],[-9,18],[-1,2],[-8,16],[-4,7],[-7,13],[-1,3],[-2,3],[-8,16],[-10,19],[-3,7],[-2,3],[-1,1],[-1,2],[-1,2],[-2,3],[-9,19],[-9,17],[-11,22],[-1,2],[-4,8],[-2,3],[-8,15],[-4,7],[-5,10],[-2,5],[-3,5],[-12,23],[-9,18],[-12,23],[-2,3],[-5,10],[-5,10],[-2,4],[-12,23],[-3,5],[-1,2],[-1,1],[0,1],[-2,4],[-6,11],[-5,10],[-5,9],[-4,8],[-2,3],[-4,8],[-19,37],[-3,5],[-1,3],[-3,4],[-1,3],[-2,2],[-28,62],[-48,101],[-3,5],[-10,19],[-11,22],[-8,14],[-1,2],[-1,1],[-1,2],[0,1],[-7,13],[-17,31],[-28,55],[-7,13],[-14,28],[-33,64],[-34,64],[-85,159],[-159,298],[-28,53],[-3,7],[-30,56],[-1,3],[-4,7],[-7,13],[-2,5],[-5,10],[-21,40],[-9,16],[-2,4],[-3,6],[-15,29],[-13,26],[-7,13],[-1,2],[-4,7],[-1,3],[-2,3],[-3,6],[-1,2],[-11,21],[-9,17],[-1,2],[-1,2],[-2,5],[-4,6],[-3,5],[0,1],[-10,19],[-18,35],[-6,11],[-19,38],[-18,33],[-3,7],[-1,1],[-1,2],[-11,21],[-20,39],[-1,2],[-4,7],[0,1],[-8,14],[-2,4],[-1,2],[-2,5],[-3,5],[-2,4],[-3,6],[-3,6],[-3,4],[-3,7],[-2,5],[-5,8],[-3,6],[-4,7],[0,2],[-3,5],[-4,7],[-4,9],[-8,14],[-26,49],[-1,3],[-28,53],[-57,108],[-9,17],[-22,41],[-96,187],[-33,66],[-21,39],[-11,21],[-13,24],[-21,40],[-2,4],[-6,12],[-5,9],[-1,2],[-8,16],[-7,14],[-6,10],[-3,7],[-6,11],[-1,2],[-16,32],[-2,3],[-11,21],[-15,30],[-7,12],[0,1],[-2,3],[-1,1],[0,2],[-1,1],[-9,17],[-25,49],[-12,23],[-4,6],[-2,5],[-6,11],[-24,46],[-23,44],[-4,8],[-8,15],[-1,3],[-7,12],[-7,13],[-18,36],[-2,3],[-4,7],[-15,30],[-5,10],[-3,5],[-20,38],[0,1],[-4,8],[-6,13],[-1,2],[-1,3],[-2,4],[-2,3],[0,1],[-2,2],[-13,30],[-3,9]],[[70363,46363],[8,-167],[-85,29],[-47,64],[-50,25],[74,132],[60,1],[40,-84]],[[74657,47570],[54,-170],[-57,24],[-141,221],[-11,115],[41,111],[58,11],[44,-99],[12,-213]],[[80093,48713],[-43,-51],[-33,-96],[-20,-127],[-12,-120],[-36,-86],[-60,-92],[-75,-91],[-47,-75],[-57,-118],[-32,-63],[-42,-14],[-75,43],[-47,37],[-47,25],[-47,21],[-66,-12],[-91,-100],[-21,-37],[-24,-44],[-6,-10],[7,-111],[9,-127],[-27,-129],[-7,-36],[-27,-56],[-55,-114],[-39,-50],[-20,-25],[-9,-10],[-33,-33],[-46,-33],[-71,-48],[-19,-13],[-55,-35],[-25,-19],[-43,-33],[-57,-84],[-42,-76],[-28,-63],[-11,-24],[-46,-101],[-16,-136],[-9,-145],[-5,-77],[46,-193],[59,-279],[9,-96],[7,-70],[-27,-37],[-18,-26],[-67,78],[-78,33],[-47,-23],[-39,-18],[-25,-34],[-36,-48],[-32,-69],[-47,-147],[-35,-147],[11,-131],[17,-117],[18,-61],[26,-88],[38,-102],[24,-66],[68,-87],[73,-123],[31,-133],[29,-101],[8,-26],[6,-17],[42,-109],[48,-66],[15,-21],[-21,-112],[-23,-60],[-19,-48],[3,-129],[1,-44],[34,-166],[93,-129],[45,-22],[51,-22],[61,-14],[44,-7],[53,42],[51,29],[46,10],[-3,-97],[-10,-144],[4,-164],[71,-188],[82,-181],[76,-69],[63,-59],[73,-141],[77,-35],[73,-21],[36,-105],[-79,-99],[-1,-127],[-24,-179],[-39,-97],[-16,-180],[-11,-160],[31,-189],[-19,-176],[-77,-122],[-19,-171],[-64,-51],[-84,-33],[-49,-65],[-58,-117],[-70,-55],[-67,-70],[-81,-36],[-34,-35],[4,-83],[-36,-120],[-27,-124],[-41,-76],[-23,-150],[10,-229],[53,-229],[41,-173],[19,-172],[16,-136],[-62,-67],[-39,-76],[-40,-52],[1,-148],[-46,-99],[-71,-98],[-20,-102],[5,-147],[-31,-62],[-50,-11],[-89,-6],[-51,-1],[-37,-5],[-53,-56],[-50,-48],[-63,-54],[-37,-75],[-40,-104],[-53,-167],[-29,-204],[-19,-155],[-45,-23],[-71,54],[-46,119],[-43,113],[25,159],[54,-28],[7,100],[48,7],[49,-5],[52,104],[-64,42],[-68,-28],[-86,-57],[-75,-43],[13,194],[56,160],[54,55],[52,-62],[83,104],[36,110],[39,97],[74,-48],[15,174],[-65,13],[-73,-12],[-51,66],[12,167],[-52,-98],[-12,-155],[48,-115],[-60,-40],[-40,81],[-100,65],[-21,-207],[-81,-31],[-23,-123],[2,-163],[-49,-193],[-59,86],[-36,39],[-5,6],[-71,103],[-29,163],[-17,146],[33,170],[-93,175],[-48,122],[-43,-19],[-48,42],[-51,30],[-51,53],[-92,122],[-72,76],[-77,51],[-64,33],[-60,61],[-15,123],[52,76],[57,40],[49,11],[-24,138],[-83,-78],[-41,86],[-19,102],[-100,59],[-91,-18],[-95,-3],[-57,31],[14,156],[-69,-130],[18,-96],[-71,-54],[-78,-80],[-47,-83],[-27,-156],[2,-164],[-52,-10],[-12,96],[-1,90],[-3,184],[-40,116],[-1,170],[25,123],[0,116],[10,115],[75,34],[45,113],[54,-20],[-33,133],[37,134],[-72,107],[27,72],[45,-11],[70,113],[75,128],[28,99],[93,-60],[3,201],[-63,-32],[-73,48],[-48,-167],[-50,-128],[-58,-71],[-61,-13],[-35,126],[-56,-45],[-31,133],[-21,-89],[21,-136],[72,-78],[-24,-119],[15,-191],[-44,-99],[-48,-12],[-27,-127],[-39,16],[-13,126],[-43,38],[-54,13],[43,-150],[24,-103],[11,-116],[-47,-87],[-51,146],[-46,179],[-43,103],[-67,85],[-52,21],[-69,8],[-54,-19],[-64,-56],[-67,62],[-52,-19],[-24,138],[-15,93],[-17,140],[-38,110],[-6,214],[-43,165],[-23,117],[-5,125],[51,46],[95,111],[39,-132],[65,-48],[-12,104],[47,41],[38,122],[54,-47],[52,32],[42,88],[5,143],[36,127],[83,63],[62,82],[65,-100],[5,96],[35,68],[55,-107],[46,-26],[25,-96],[24,103],[39,-4],[-25,135],[16,169],[68,-14],[44,-62],[64,237],[-111,2],[-62,96],[-44,-29],[-45,50],[0,-172],[-1,-225],[-50,82],[-74,-17],[-72,6],[-48,-23],[-59,-63],[-99,-173],[-53,-155],[-7,113],[9,129],[0,209],[-65,-106],[-11,-169],[1,-138],[-64,-56],[-51,45],[-14,-179],[-58,-20],[-70,27],[-69,28],[-7,-115],[-78,-44],[-85,21],[-51,191],[-37,123],[-45,57],[-34,-19],[-56,80],[-55,152],[-36,115],[38,67],[52,178],[-8,155],[-1,137],[1,103],[-37,158],[-15,176],[19,10],[60,32],[73,108],[-7,-132],[17,-94],[-51,-61],[4,-142],[11,-130],[35,146],[63,115],[9,-121],[58,29],[7,84],[69,-6],[12,105],[-61,44],[-81,-1],[0,131],[-4,131],[52,107],[59,-13],[52,18],[50,-95],[77,-127],[58,-128],[32,-112],[54,85],[-9,209],[66,-141],[51,-19],[39,-10],[0,-93],[35,-131],[5,151],[31,105],[48,-40],[54,49],[47,-53],[18,-120],[56,-73],[-25,150],[10,163],[-52,61],[-48,-16],[-57,8],[-73,17],[-85,20],[-30,110],[29,177],[48,102],[37,85],[42,119],[50,61],[56,-5],[38,118],[18,95],[28,-144],[8,-117],[-18,-111],[35,-15],[54,-43],[86,17],[-42,101],[69,70],[76,-29],[24,141],[49,-49],[58,-75],[30,-124],[44,-33],[23,73],[40,46],[2,141],[51,49],[67,17],[0,218],[-47,-99],[-54,-37],[-53,-13],[-42,-70],[-60,74],[-30,119],[-15,106],[-14,106],[-56,-98],[-41,-52],[-55,119],[-64,-139],[-65,59],[-46,14],[-42,6],[24,191],[-48,-11],[-34,-112],[-35,-138],[-32,-48],[-39,75],[-34,61],[-47,-82],[5,-129],[-58,-46],[4,130],[-8,146],[44,189],[57,147],[80,38],[-34,113],[-46,190],[62,60],[47,-17],[65,-17],[70,-6],[-2,112],[32,97],[42,-34],[42,70],[42,-62],[32,-45],[61,-4],[74,-123],[30,142],[54,34],[58,-101],[51,39],[42,94],[69,-23],[69,-3],[78,28],[-57,87],[-70,-18],[-63,69],[-68,-28],[-51,35],[-64,114],[-45,-79],[-37,-14],[-36,10],[-66,42],[40,192],[-61,60],[25,84],[17,89],[39,119],[17,120],[27,116],[-36,23],[-66,-20],[48,117],[64,169],[46,51],[37,51],[23,105],[34,22],[44,5],[33,88],[58,76],[65,36],[27,148],[-58,8],[-46,-87],[-46,-58],[-49,-42],[-53,-43],[-42,-56],[-43,-75],[-57,10],[6,220],[-23,135],[-55,211],[-15,-236],[30,-186],[-55,-49],[-9,-88],[-47,-55],[-63,56],[-49,101],[-10,-104],[-26,-127],[94,-57],[64,-14],[5,-166],[-43,-97],[-49,-97],[-64,41],[29,-141],[39,-57],[-21,-151],[47,-162],[-54,-40],[-2,-114],[-35,-96],[-60,-19],[-66,-17],[-72,-20],[-10,140],[-4,149],[29,150],[-72,70],[-65,76],[3,-104],[48,-84],[-17,-173],[-90,94],[23,-117],[11,-121],[63,-37],[-3,-131],[-37,-48],[-52,-71],[-2,-168],[-27,-72],[-39,-58],[-11,-151],[-52,-124],[-38,-58],[-50,66],[-43,102],[-7,-197],[52,-44],[59,-88],[-60,-83],[-62,-5],[-48,-28],[47,-81],[82,-3],[9,-164],[20,-98],[15,-125],[-74,64],[-6,-218],[-59,107],[-51,14],[-39,-106],[-60,-14],[-42,75],[-32,101],[-43,177],[-30,206],[-31,213],[19,150],[64,150],[9,182],[8,81],[30,68],[40,54],[-5,183],[-37,-107],[-36,-41],[-35,34],[-21,-197],[-7,-152],[-31,-164],[-50,-77],[-7,-232],[-78,136],[-2,-219],[55,-133],[44,-125],[22,-105],[-60,15],[-54,38],[-47,70],[-55,135],[-59,44],[10,-167],[12,-113],[47,-46],[-55,-149],[92,25],[-42,-152],[-5,-124],[-34,-107],[-35,-67],[-82,-122],[53,-58],[-8,-127],[-59,-137],[-43,-204],[-48,-137],[-33,-87],[-75,-161],[-66,82],[-11,103],[18,83],[-7,113],[-36,62],[-12,-156],[-19,-186],[-24,-124],[54,14],[29,-102],[10,-151],[-12,-162],[-84,88],[-50,83],[-38,89],[-42,122],[-60,140],[-15,146],[-41,86],[0,123],[46,105],[-26,85],[-51,93],[-55,107],[1,119],[53,41],[60,-41],[-23,149],[-35,89],[34,26],[63,38],[67,-105],[48,19],[50,-3],[39,-168],[21,176],[53,-59],[-2,228],[40,79],[-41,46],[-42,124],[-6,-216],[-51,15],[-71,2],[-61,33],[-28,136],[-34,171],[-25,-112],[-11,-143],[-67,18],[-58,97],[-38,110],[-71,38],[-61,127],[-64,-81],[54,-66],[17,-97],[0,-125],[-12,-154],[47,-85],[-2,-180],[-18,-153],[-40,76],[-25,131],[-49,166],[-60,131],[-54,137],[-37,200],[-5,143],[-19,106],[20,154],[65,152],[61,-89],[49,-104],[0,141],[28,145],[10,142],[-49,156],[-60,72],[-62,72],[-39,129],[45,74],[40,18],[34,-19],[46,81],[35,59],[38,-62],[59,-47],[64,-61],[35,-83],[-63,-72],[63,-69],[42,-96],[-45,-149],[39,-195],[41,-123],[38,175],[-39,103],[39,70],[61,107],[59,108],[54,41],[97,-113],[-34,-99],[10,-177],[18,-102],[32,173],[65,53],[100,-15],[96,-16],[36,-150],[45,-20],[27,88],[-1,125],[-64,136],[-26,135],[-34,-143],[-34,95],[-23,122],[-50,144],[-7,145],[6,125],[36,186],[-63,30],[-38,111],[-38,-153],[38,-112],[-13,-147],[-6,-175],[-73,43],[-43,57],[-41,149],[-21,194],[-33,129],[-47,140],[-45,143],[-4,-174],[34,-175],[-16,-172],[-32,85],[-59,127],[-94,135],[-61,70],[10,129],[9,180],[-22,183],[-72,131],[37,252],[59,42],[29,-134],[47,-69],[0,147],[-25,118],[-15,120],[77,-11],[-12,119],[-61,15],[-26,91],[-36,-167],[-87,-1],[-55,188],[-6,158],[-85,85],[25,-180],[7,-170],[-62,-53],[33,-78],[51,6],[30,-186],[-25,-152],[-50,-25],[-68,-41],[-79,118],[-16,130],[-39,39],[-42,2],[-38,-14],[-58,-16],[-16,164],[-6,85],[-43,-18],[-37,112],[-22,105],[37,88],[36,115],[28,90],[23,127],[-78,-53],[-80,-86],[-33,114],[30,156],[42,166],[45,129],[53,3],[15,180],[78,26],[44,-38],[7,93],[15,110],[68,23],[-28,109],[-37,79],[-24,141],[-21,-175],[-26,-87],[-54,-74],[-56,-97],[-63,-114],[-39,124],[-55,90],[9,-171],[11,-142],[-27,-101],[-14,-150],[-32,-49],[-51,-38],[39,-116],[-23,-220],[19,-97],[30,-52],[-21,-144],[-28,-155],[59,-107],[47,-87],[-48,-54],[-53,1],[33,-120],[89,-45],[67,-84],[54,-52],[38,-67],[76,-22],[63,-110],[-37,-92],[-31,-151],[-23,-125],[33,-62],[19,-108],[-40,-18],[-40,9],[-53,15],[-40,9],[-42,-22],[-30,87],[48,170],[-34,82],[-11,143],[-55,12],[-42,94],[-53,71],[-62,-15],[-82,44],[43,-189],[59,-22],[74,-129],[-54,-171],[-4,-139],[34,-116],[-67,-25],[-39,-138],[-43,63],[7,138],[-48,60],[-38,5],[-7,-147],[-33,-160],[-51,67],[17,156],[1,134],[-4,168],[-34,-70],[-12,-89],[-6,-121],[-33,-108],[-3,140],[-25,95],[-35,-99],[-41,89],[-67,17],[-34,92],[-22,136],[-29,144],[-17,-192],[6,-132],[25,-110],[-15,-117],[69,13],[47,-5],[17,-110],[39,-145],[-19,-124],[-7,-138],[60,74],[84,19],[76,-75],[41,-12],[31,-22],[41,-26],[74,-33],[66,85],[49,113],[41,33],[69,-69],[-8,-233],[-97,-204],[-58,-90],[-53,4],[-42,125],[-49,-9],[-47,52],[12,-126],[68,-100],[0,-119],[-24,-103],[-62,-22],[-73,85],[-48,92],[-21,125],[-57,84],[-2,-177],[-51,47],[8,116],[-39,-6],[-45,-69],[-63,-38],[54,-117],[45,-89],[46,16],[46,-88],[7,-25],[29,-102],[59,-95],[23,-113],[19,-120],[65,-46],[0,-171],[-14,-141],[-77,148],[-90,123],[-54,121],[-12,87],[-35,103],[-93,-43],[-29,144],[-74,21],[-41,-142],[8,-135],[-48,34],[-42,59],[21,107],[26,113],[-10,108],[-55,67],[22,97],[62,117],[20,127],[-3,131],[-40,143],[16,182],[-24,125],[-1,128],[-28,154],[-36,74],[-72,10],[-22,96],[58,142],[34,97],[18,154],[34,135],[36,125],[15,194],[37,-129],[84,122],[60,141],[45,-29],[41,-21],[36,153],[56,-26],[63,-45],[42,134],[49,108],[11,134],[28,146],[38,111],[30,100],[-12,190],[-2,191],[16,190],[54,135],[-13,161],[34,142],[0,150],[-14,103],[8,199],[-81,-154],[28,-128],[-3,-133],[-58,-171],[13,-133],[-70,-96],[-33,127],[-41,72],[-36,103],[-65,109],[-75,40],[-57,-10],[-31,122],[-39,83],[-4,-148],[29,-143],[71,-67],[76,-31],[22,-117],[63,-94],[42,-143],[33,-213],[34,-145],[-30,-116],[-56,-53],[0,-146],[-24,-187],[-48,-79],[-24,-71],[-44,-1],[-52,25],[-31,131],[5,94],[67,111],[28,120],[-52,-20],[17,164],[-60,-123],[-44,170],[-45,-175],[8,-181],[-61,62],[-32,85],[-55,131],[-4,255],[-52,-28],[-78,-41],[47,-152],[25,-158],[19,-113],[56,-71],[57,-119],[44,-126],[-80,39],[-55,22],[-86,40],[-54,96],[3,-129],[33,-98],[37,-117],[68,32],[8,-150],[-60,-85],[-46,52],[-37,47],[-33,36],[-62,100],[-49,132],[-2,102],[-57,43],[17,-200],[25,-193],[9,-134],[-8,-188],[-64,-40],[-43,34],[-8,175],[-40,84],[-27,-97],[3,-157],[6,-150],[14,-125],[32,-101],[-26,-151],[71,-110],[10,-180],[-1,-125],[-5,-149],[-71,-67],[-26,203],[-39,24],[-2,-136],[-33,-208],[-57,14],[-34,25],[4,-157],[6,-186],[74,-3],[34,-67],[48,89],[61,18],[23,-160],[23,-138],[-20,-91],[-77,-1],[-68,-94],[-4,-135],[-24,-123],[-54,-243],[-58,-108],[-67,-53],[18,-111],[-86,-146],[-48,-5],[-4,-123],[48,-97],[-18,-271],[29,-108],[18,-167],[39,-105],[32,-79],[18,-129],[38,-93],[75,-118],[-12,-142],[-18,-104],[9,-191],[-33,-96],[-77,-8],[-66,23],[7,136],[-15,174],[-3,188],[-55,51],[-53,-51],[1,-215],[-6,-4],[6,-58],[-32,-284],[-20,-262],[13,-123],[-37,-75],[-79,257],[-37,535],[-15,219],[-12,172],[30,103],[36,218],[-9,239],[-29,128],[11,153],[25,181],[21,183],[41,148],[35,219],[14,211],[70,-23],[-3,179],[40,151],[-44,109],[-40,-158],[-26,-60],[-17,81],[-9,89],[-14,146],[30,150],[-6,195],[-8,143],[-15,114],[-18,110],[-17,141],[26,177],[38,225],[31,184],[45,80],[61,44],[44,-127],[30,150],[51,81],[-1,176],[-31,148],[-69,89],[-42,146],[28,79],[60,50],[73,-87],[73,69],[8,205],[20,130],[25,72],[26,53],[7,160],[46,130],[44,97],[45,100],[44,113],[40,159],[2,120],[5,100],[7,121],[7,212],[6,176],[5,147],[40,144],[57,172],[30,157],[19,176],[45,80],[54,90],[74,-58],[79,-12],[65,-2],[60,52],[37,121],[54,80],[51,3],[35,44],[-7,121],[-46,111],[3,217],[30,115],[40,64],[41,45],[45,98],[8,18],[35,149],[329,755],[100,-12],[34,-277],[-194,-295],[-132,-94],[-20,-283],[-23,-32],[-48,-66],[77,-245],[44,9],[13,39],[-34,79],[70,58],[34,-39],[40,-56],[29,-42],[7,-188],[-29,-147],[-67,-283],[66,-122],[13,16],[24,109],[3,177],[70,-61],[64,-113],[-12,-131],[-6,-143],[57,-73],[30,-108],[38,-146],[-50,-34],[41,-95],[52,51],[47,-45],[-35,-132],[54,0],[80,88],[-26,132],[-21,93],[63,48],[63,37],[37,-54],[56,-5],[77,-82],[38,-142],[44,-92],[62,-135],[67,-111],[54,-124],[38,-157],[-52,-144],[-56,-4],[-51,54],[-48,39],[2,-164],[73,-78],[-8,-127],[60,-58],[17,-74],[-40,-120],[-36,-110],[-67,34],[30,-191],[-42,-62],[40,-100],[27,48],[68,-30],[78,-55],[54,-98],[46,-70],[35,-107],[52,-112],[80,-110],[73,-28],[26,-80],[-6,-185],[63,-1],[47,-43],[47,-40],[64,-67],[28,-141],[45,-146],[-16,-121],[3,-106],[54,-87],[90,-67],[36,-43],[20,-25],[-45,-163],[32,-149],[-50,-189],[82,26],[77,11],[-62,107],[11,99],[9,175],[41,71],[32,54],[39,108],[88,114],[64,66],[-51,66],[-52,39],[61,235],[52,80],[87,-11],[25,235],[57,63],[85,3],[36,138],[30,74],[47,-12],[42,23],[-50,86],[18,173],[57,83],[75,100],[52,-26],[-6,144],[56,60],[47,-15],[63,-128],[95,115],[-92,75],[36,155],[61,127],[77,24],[71,-39],[60,-46],[70,145],[-74,18],[-53,0],[-32,44],[-10,127],[40,118],[26,90],[-54,-14],[-44,54],[-24,108],[-36,36],[-28,190],[36,167],[-6,124],[14,133],[9,245],[-64,128],[20,130],[77,116],[90,132],[49,89],[5,175],[-53,-80],[-54,-119],[-57,-64],[-66,-117],[-63,-81],[-37,91],[-48,12],[23,-110],[54,-105],[-17,-121],[59,-154],[-22,-86],[22,-110],[-19,-136],[14,-126],[-46,-90],[17,-165],[16,-91],[-8,-157],[73,-149],[-55,-148],[-43,-38],[-31,-130],[-54,-54],[-94,107],[-55,-95],[-48,-133],[-52,-10],[-43,-18],[-25,-191],[-56,-183],[-55,-73],[2,-137],[-60,-23],[-43,-145],[-59,-32],[-69,-56],[-64,-17],[-98,47],[34,197],[69,162],[-64,6],[-52,-98],[-61,131],[-48,51],[-44,5],[-21,130],[42,79],[48,154],[83,52],[55,91],[36,111],[-72,35],[-9,-108],[-64,-47],[-66,-1],[-18,-112],[-69,-107],[-71,-101],[33,-177],[-44,49],[-61,27],[-41,13],[-24,191],[22,204],[-51,-19],[-54,25],[-18,209],[30,215],[61,117],[36,127],[64,29],[2,171],[59,78],[89,54],[49,75],[81,39],[5,168],[38,83],[49,37],[-64,113],[-61,-112],[-54,-157],[-56,-91],[-43,-46],[-43,68],[-36,29],[-26,-100],[-50,-65],[-48,-129],[-61,-98],[-72,-56],[-47,33],[42,-176],[-6,-155],[-47,-130],[-42,97],[-24,174],[28,178],[4,131],[1,115],[7,153],[27,177],[38,118],[37,152],[18,109],[8,163],[25,138],[50,52],[-18,162],[5,188],[-70,34],[-6,-93],[-12,-106],[-48,114],[-32,248],[-14,145],[3,159],[43,77],[35,123],[12,31],[31,532],[37,16],[50,-40],[-9,-453],[78,-2],[61,40],[66,73],[56,-6],[47,114],[32,155],[-40,103],[-22,124],[56,10],[66,-11],[52,-62],[43,-124],[38,-106],[-11,-109],[51,-1],[28,-78],[-38,-118],[25,-108],[52,110],[89,66],[43,-72],[49,30],[-45,160],[-91,37],[-26,103],[15,106],[13,122],[55,36],[70,92],[96,19],[-14,171],[-42,-58],[-39,-12],[-78,-65],[-101,-61],[-19,112],[-46,155],[-42,156],[66,75],[-33,84],[31,106],[8,114],[51,84],[78,-105],[49,-104],[36,20],[29,-93],[43,-31],[49,56],[-23,101],[-42,24],[-44,71],[51,172],[50,-14],[44,-65],[56,-21],[75,-51],[43,51],[33,-17],[57,-55],[47,-139],[53,-39],[50,-22],[39,-137],[67,35],[34,-193],[61,-78],[27,-130],[80,41],[-30,114],[-54,66],[-42,172],[-75,140],[-9,97],[12,123],[38,58],[39,-136],[56,-28],[42,29],[81,70],[47,51],[66,19],[77,15],[17,154],[54,44],[32,-63],[53,19],[49,11],[15,86],[7,106],[77,7],[54,-34],[89,-36],[39,145],[-67,-6],[-67,12],[-43,96],[-66,-56],[-69,-102],[-52,-11],[-55,-41],[-58,68],[19,171],[-46,121],[-26,177],[-24,149],[-18,149],[-34,124],[-62,170],[34,135],[-42,128],[-66,112],[4,119],[24,71],[34,37],[40,98],[-16,144],[-17,192],[-15,-48]],[[66656,44146],[-19,-134],[-23,-196],[-18,-111],[-12,-139],[-5,-90],[-2,-96],[-3,-170],[-6,-183],[3,-160],[0,-156],[6,-195],[4,-106],[-3,-141],[14,-173],[19,-165],[13,-183],[16,-217],[17,-164],[13,-115],[22,-209],[16,-234],[27,-228],[26,-179],[25,-150],[24,-121],[26,-122],[26,-99],[27,-104],[30,-123],[24,-131],[15,-113],[3,-152],[8,-94],[34,-145],[-4,-100],[3,-174],[37,-197],[-10,-127],[-13,-158],[-21,-167],[-9,-149],[-11,-216],[-27,-310],[-12,-183],[-2,-165],[1,-122],[-1,-109],[-3,-112],[-4,-122],[-5,-196],[7,-174],[16,-221],[5,-193],[7,-200],[5,-136],[-3,-127],[-6,-160],[-10,-127],[-13,-142],[-8,-135],[-10,-187],[-2,-132],[4,-142],[12,-158],[12,-123],[16,-120],[18,-124],[22,-158],[18,-140],[17,-127],[34,-196],[30,-189],[35,-170],[25,-130],[23,-147],[22,-96],[32,-118],[32,-137],[24,-101],[19,-75],[26,-80],[23,-92],[31,-116],[26,-89],[20,-74],[29,-124],[32,-113],[42,-128],[36,-89],[31,-71],[55,-131],[128,-242],[50,-109],[40,-71],[65,-75],[16,-78],[51,-108],[50,-85],[38,-69],[27,-72],[45,-148],[42,-26],[21,-100],[58,-53],[39,-103],[4,-191],[28,-113],[42,-113],[51,-97],[83,-111],[61,-85],[56,-103],[72,-128],[36,-47],[44,-110],[31,-70],[40,-90],[38,-121],[46,-121],[41,-99],[35,-49],[59,-93],[44,-108],[50,-99],[40,-98],[26,-118],[12,-135],[27,-96],[40,-86],[24,-139],[35,-29],[26,-97],[38,-143],[65,-229],[61,-112],[53,-114],[44,-47],[34,-61],[80,1],[62,-31],[76,-44],[47,-47],[9,-93],[-39,-18],[-35,-54],[-46,-83],[-53,-134],[-35,-144],[-12,-89],[7,-142],[-2,-125],[36,-87],[19,-130],[31,-152],[-14,-133],[-41,-136],[-30,-122],[-47,-131],[-54,-129],[-47,-108],[-44,-105],[-41,-119],[-50,-138],[-51,-139],[-46,-138],[-70,-150],[-15,-164],[-34,-101],[-69,-60],[-8,-175],[-37,-99],[-67,-88],[-8,-189],[-59,98],[-60,79],[-74,63],[-37,26],[-25,70],[-41,-37],[-74,18],[-52,-17],[-101,-33],[-71,-18],[-51,-43],[-38,38],[41,118],[33,154],[26,196],[41,-60],[50,-69],[49,130],[81,-46],[-41,140],[79,23],[58,36],[-8,128],[-69,-28],[-53,10],[-35,109],[-34,-202],[-81,-44],[-10,117],[33,132],[-47,52],[10,188],[-40,94],[-42,-119],[37,-93],[-49,-100],[43,-88],[-10,-124],[-59,-81],[10,-132],[-41,-81],[13,-170],[-32,-65],[-43,-4],[3,233],[-69,176],[3,213],[17,197],[-74,73],[-4,-165],[-52,-6],[28,-153],[21,-83],[-27,-66],[16,-109],[31,-98],[40,-18],[-16,-124],[20,-126],[33,-129],[2,-151],[-48,63],[-31,168],[-20,18],[-45,41],[-41,37],[-42,82],[-31,88],[-8,10],[-39,50],[-19,76],[-68,-12],[-40,51],[-40,-3],[-55,9],[42,125],[49,103],[49,126],[35,113],[27,124],[17,202],[4,179],[-51,75],[-57,36],[-50,70],[-4,116],[19,129],[34,88],[-4,131],[31,70],[42,5],[49,-8],[-16,78],[-48,26],[-53,26],[20,144],[-71,-49],[-38,-127],[-1,-94],[-23,-119],[-39,104],[-39,98],[-38,103],[-18,173],[-14,149],[-8,100],[-40,99],[-1,98],[-27,100],[35,118],[-9,27],[-45,25],[-51,0],[-53,109],[-50,93],[-4,134],[48,143],[76,-41],[32,62],[78,-16],[27,139],[44,72],[-11,186],[47,81],[25,105],[10,208],[-66,111],[4,125],[16,123],[8,151],[-38,106],[-7,89],[22,104],[56,6],[44,10],[0,54],[-27,54],[-52,4],[-58,-54],[-43,118],[15,148],[-3,108],[20,131],[0,79],[98,330],[0,211],[-81,-74],[-71,-434],[-4,-43],[-49,-143],[-20,-184],[-65,14],[20,-138],[46,-78],[48,-168],[41,-140],[20,-162],[-60,-130],[4,-171],[-42,-79],[53,-22],[24,-88],[-21,-110],[24,-103],[-62,-76],[-36,-175],[-38,-136],[-81,12],[-107,-35],[-22,-137],[-80,-60],[-66,82],[-47,173],[-18,125],[-13,147],[-20,142],[-53,155],[-72,115],[-30,142],[-22,87],[-29,67],[-68,42],[-57,-8],[-48,-32],[-41,-7],[-42,119],[-23,-13],[-29,-111],[-26,-167],[-66,-25],[-36,142],[41,153],[34,173],[3,215],[12,178],[1,110],[-34,76],[-41,91],[-7,-20],[1,-81],[30,-152],[-18,-201],[-3,-138],[-25,-126],[-36,-84],[-16,-160],[-104,-160],[-19,-146],[-58,-173],[-22,10],[15,488],[52,-51],[36,191],[0,1],[-28,117],[-17,118],[-2,189],[44,62],[-67,73],[-33,-109],[-57,-76],[-49,21],[-35,87],[-44,-72],[-63,45],[-42,-8],[-42,7],[-44,5],[-62,34],[-63,130],[-72,233],[-82,46],[-78,90],[-78,109],[-53,31],[-55,178],[-50,99],[-40,2],[-44,-93],[0,-62],[20,-162],[-45,-87],[-51,112],[21,199],[55,145],[-2,82],[16,272],[37,172],[54,93],[-22,111],[53,103],[58,-42],[55,23],[-38,66],[-56,53],[26,70],[26,168],[18,151],[-63,73],[-28,145],[41,195],[-74,7],[-1,102],[14,121],[0,173],[-25,-59],[-14,-33],[-24,-165],[-19,-173],[41,-142],[7,-126],[-17,-121],[24,-179],[-44,-106],[-59,-100],[2,-214],[-48,-102],[27,-104],[-69,-33],[-56,-88],[-45,64],[-6,203],[2,112],[-60,126],[-37,88],[-51,82],[-77,41],[-81,26],[-72,92],[-43,47],[-48,31],[-81,-6],[-55,28],[-51,49],[-38,99],[-47,27],[-32,45],[32,120],[3,88],[20,145],[-15,111],[-87,139],[-37,142],[14,161],[-15,169],[-35,187],[-40,134],[-31,113],[-20,161],[-37,-2],[-10,-155],[-42,0],[-23,92],[-38,18],[-48,91],[-26,165],[13,190],[-47,156],[25,72],[46,132],[77,92],[61,69],[27,154],[22,87],[19,136],[4,109],[8,97],[-22,105],[-27,125],[-31,102],[-50,52],[-42,14],[-60,78],[-50,103],[-35,79],[-15,18],[4,204],[34,64],[46,85],[59,143],[22,118],[0,126],[-7,104],[5,173],[14,17],[44,-71],[76,34],[73,306],[44,4],[40,186],[-40,117],[-75,-97],[-101,-89],[-22,-138],[-41,24],[-94,33],[-63,-16],[-17,-93],[-60,23],[-22,128],[-41,147],[-8,193],[-4,162],[-5,205],[-13,121],[3,179],[8,220],[6,134],[34,97],[46,208],[-10,159],[36,73],[79,-90],[45,48],[-76,213],[-51,22],[-7,16],[1,100],[-36,125],[-18,149],[-3,106],[6,152],[-3,207],[-34,211],[-49,143],[-24,109],[-16,136],[3,126],[-84,53],[-59,21],[-64,78],[-38,2],[-18,0],[-45,82],[-16,71],[-24,98],[7,146],[3,65],[43,181],[-12,49],[-14,53],[2,38],[2,55],[70,166],[37,86],[19,44],[27,102],[7,40],[13,79],[11,111],[44,91],[-76,144],[-80,135],[-9,2],[-74,8],[-50,-43],[-52,-22],[-43,-15]],[[76607,11121],[-57,-39],[-8,62],[-4,30],[3,138],[25,143],[60,105],[54,-106],[-36,-111],[3,-139],[-25,-52],[-15,-31]],[[76663,12574],[-25,-171],[-13,29],[-41,88],[-36,168],[5,49],[11,114],[59,-42],[47,-89],[-7,-146]],[[77258,15937],[93,-3],[87,22],[65,-72],[19,-46],[15,-36],[23,-61],[9,-24],[49,-96],[6,-13],[41,-98],[34,-78],[9,-13],[31,-43],[-18,-114],[-32,-62],[-28,-53],[-49,-124],[27,-145],[56,42],[15,8],[55,28],[33,-30],[16,-13],[9,-3],[49,-15],[62,-38],[57,-144],[30,-95],[16,-50],[27,-158],[0,-50],[-1,-85],[-41,18],[-10,4],[-30,-133],[-52,-116],[-59,-59],[-68,108],[-6,-19],[-26,-87],[-71,-12],[-58,-36],[-36,-82],[64,-33],[61,-52],[39,-124],[12,-170],[67,-84],[58,-166],[-28,-177],[-12,-88],[-8,-54],[-62,-24],[-76,-24],[-8,215],[-61,-164],[-58,25],[-47,-59],[-84,15],[-59,-7],[-25,56],[-23,52],[-7,47],[-12,78],[-15,198],[-29,174],[-23,178],[-30,136],[-5,101],[-6,118],[68,-24],[-12,185],[-77,35],[-73,-58],[-59,8],[0,-165],[-65,-86],[-64,86],[-1,22],[-7,106],[-47,-76],[-18,-70],[-4,-15],[16,-24],[50,-74],[50,-125],[-2,-4],[-33,-109],[-53,18],[-93,18],[46,-101],[27,-109],[-52,2],[-44,54],[-64,-33],[-12,-6],[-12,-41],[-22,-74],[-20,74],[-16,62],[-12,27],[-32,73],[-2,98],[-2,82],[3,84],[3,87],[-13,203],[72,35],[38,67],[60,-16],[-10,141],[-3,36],[-11,46],[-18,73],[-16,62],[-21,78],[15,135],[-9,170],[-13,33],[-27,67],[-41,67],[-7,111],[10,27],[17,46],[3,-8],[38,-91],[57,-84],[27,-21],[9,-7],[67,42],[82,-13],[64,-35],[55,-16],[37,-5],[15,-3],[48,38],[27,20],[85,79],[45,68],[17,51],[18,53],[8,146],[-108,112],[-64,102],[-76,142],[47,95],[14,29],[51,-73],[75,-20]],[[75164,18281],[-1,8],[-19,135],[3,3],[11,8],[39,30],[16,6],[14,4],[19,6],[14,5],[55,-62],[66,-28],[51,-47],[18,-9],[5,-3],[25,-12],[4,-3],[17,-13],[27,-20],[50,-37],[18,-21],[24,-28],[12,-24],[19,-37],[47,-50],[16,-17],[13,-89],[9,-59],[-34,-105],[-34,-73],[-13,-29],[-50,-32],[-40,-98],[-12,-12],[-35,-35],[-14,-3],[-43,-9],[-10,-1],[-2,5],[-39,101],[-68,-31],[-36,-6],[-22,-4],[-1,1],[-16,15],[-19,19],[-11,10],[-32,57],[-24,42],[-4,6],[33,43],[9,11],[32,145],[3,6],[9,16],[22,44],[45,86],[1,47],[3,92],[-65,72],[-50,-6],[-47,-17],[-8,-3]],[[75164,18281],[-5,-14],[-9,-28],[-19,-56],[1,-115],[-28,-76],[-5,9],[-34,62],[-14,25],[-32,57],[-32,58],[-24,43],[-70,-41],[-56,-42],[-26,170],[-38,63],[-82,32],[-5,17],[-24,69],[-22,60],[-8,85],[-7,76],[-53,129],[-21,158],[-1,7]],[[74550,19029],[1,-2],[10,-18],[3,-5],[39,-72],[55,-92],[41,24],[11,6],[3,1],[39,17],[16,7],[47,-97],[50,-142],[19,-172],[54,-44],[38,4],[2,0],[14,-12],[27,-21],[48,29],[24,-30],[16,-22],[2,-4],[2,-2],[15,-30],[36,-66],[2,-5]],[[74550,19029],[-2,2],[-58,63],[-13,26],[-7,15],[-16,32],[-5,10],[-40,103],[-30,79],[-35,204],[-17,103],[-18,108],[-1,49],[-4,133],[-39,171],[-17,45],[-33,90],[-34,138],[-29,50],[-20,33],[-1,2],[-21,33],[-48,77],[43,120],[15,42],[22,65],[2,6],[6,18],[22,93],[5,20],[16,1],[18,2],[20,10],[52,25],[12,-2],[61,-8],[86,-94],[78,-46],[66,79],[47,132],[55,42],[41,-49],[-16,-102],[-4,-27],[-26,-43],[-22,-37],[-1,-2],[-62,-53],[-7,-21],[-26,-83],[26,-69],[15,-38],[2,-4],[20,-51],[15,-38],[14,-37],[-14,-24],[-17,-29],[-21,-34],[-32,-23],[-33,-24],[-10,-19],[-33,-59],[-16,-29],[8,-77],[12,-120],[1,-10],[0,-3],[9,-136],[1,-1],[47,-85],[23,-104],[-71,-9],[-13,-1],[12,-96],[8,-54],[7,-44],[10,-62],[5,-10],[9,-16],[9,-17],[14,-26],[6,-26],[10,-41],[16,-71],[-7,-20],[-5,-14],[-13,-38],[-21,-69],[-3,-10],[-4,-15],[-1,-1]],[[73624,21792],[58,-174],[-82,31],[-64,107],[-70,187],[-56,131],[7,100],[9,69],[5,41],[49,-127],[52,-110],[47,-51],[45,-204]],[[72850,22701],[-58,-14],[-16,85],[-11,58],[6,154],[-6,156],[13,-21],[40,-67],[59,-133],[12,-115],[-39,-103]],[[74782,22495],[-51,31],[-36,22],[-22,67],[-15,47],[-22,1],[-48,3],[-67,28],[-26,-29],[-42,-45],[-38,-56],[-12,-19],[-32,-98],[-43,-52],[-30,-37],[-49,-92],[-48,-29],[-25,-14],[-9,158],[-20,105],[-6,47],[-6,40],[-27,111],[40,67],[51,-44],[69,-52],[8,-6],[87,64],[50,135],[-20,135],[2,148],[57,132],[54,-14],[66,-121],[10,-32],[13,-39],[22,-70],[2,-6],[0,-2],[21,-86],[6,-24],[29,-61],[30,-61],[44,-143],[21,-69],[12,-40]],[[72739,23464],[2,-192],[-80,131],[-39,168],[-4,18],[36,101],[41,-61],[51,-40],[71,-15],[-19,-87],[-59,-23]],[[73657,23419],[35,-167],[-49,-22],[-50,-28],[-88,79],[45,-200],[66,-148],[14,-96],[3,-91],[-56,-121],[32,-188],[2,-161],[-58,-9],[-70,138],[-32,119],[-45,94],[-3,-170],[0,-11],[-32,90],[-34,98],[23,129],[22,91],[-22,139],[-32,137],[-16,154],[2,159],[3,121],[8,119],[11,131],[42,121],[64,48],[6,-6],[52,-45],[46,-115],[49,-156],[55,-80],[39,-45],[33,-97],[-65,-11]],[[71046,33704],[-8,-301],[-56,48],[-37,131],[49,144],[52,-22]],[[72390,34208],[4,-87],[-38,38],[-42,53],[-23,97],[38,221],[19,185],[30,-118],[42,-174],[-30,-215]],[[74782,22495],[54,17],[54,-28],[60,-84],[2,4],[35,71],[15,-5],[33,-10],[57,-53],[2,-1],[34,48],[22,30],[12,16],[7,11],[-36,22],[-35,21],[-6,4],[-37,93],[-51,58],[-9,10],[-33,137],[-27,128],[27,126],[-48,88],[1,31],[1,126],[15,29],[30,56],[-1,127],[21,37],[11,21],[-22,110],[-11,59],[-17,-59],[-13,-47],[-9,-33],[-17,-26],[-22,-32],[-12,2],[-32,3],[8,-65],[7,-59],[-31,-124],[-24,-143],[-11,-116],[-58,95],[-25,96],[8,137],[14,194],[-22,155],[-3,22],[-25,116],[-47,112],[-31,103],[-52,136],[-29,78],[-53,210],[-45,118],[-19,47],[-15,-8],[-49,-25],[-69,7],[-22,23],[-13,14],[-64,82],[22,148],[2,8],[-50,14],[-35,57],[-16,27],[-50,84],[-52,52],[-26,58],[-21,47],[7,18],[36,102],[-47,101],[-40,140],[56,109],[-73,17],[-11,3],[-24,-53],[-23,-52],[46,-194],[2,-95],[2,-42],[23,-209],[-4,-119],[-61,-75],[-46,-7],[-54,-38],[-60,-17],[-4,137],[-2,38],[-7,170],[65,79],[11,179],[19,97],[14,70],[-6,111],[-2,30],[-7,75],[-5,50],[-3,32],[11,170],[-64,157],[-63,103],[-62,102],[-36,81],[-7,16],[-5,11],[-30,-31],[-25,-26],[-12,-12],[-31,-21],[-9,-6],[-38,-61],[-35,-125],[2,-40],[6,-112],[7,-30],[23,-105],[16,-33],[41,-86],[6,-152],[-30,-45],[-12,-16],[-33,-49],[-30,-123],[-3,-11],[7,-157],[20,-156],[-1,-165],[-65,-72],[22,-109],[21,-125],[25,-156],[37,-102],[16,-98],[-17,-188],[-14,-136],[-53,-83],[-36,-3],[-45,-64],[-46,95],[-28,158],[-33,150],[-53,185],[-56,128],[-47,60],[-26,164],[11,192],[-64,56],[-5,8],[-37,72],[2,-87],[3,-98],[-56,1],[-30,78],[-50,125],[-8,19],[-43,68],[-54,109],[-52,41],[-19,5],[-46,13],[-12,6],[-36,16],[-12,94],[-5,36],[9,42],[2,13],[10,49],[-20,63],[-18,54],[-66,-12],[-43,74],[-12,189],[-58,141],[-7,59],[-9,78],[5,128],[19,92],[0,110],[19,147],[7,109],[0,132],[-12,145],[-18,89],[-4,145],[-36,218],[-7,15],[-11,24],[-28,60],[-22,132],[-6,33],[-17,87],[-10,98],[-59,122],[-43,-42],[-31,75],[-34,52],[-27,74],[-10,128],[-37,161],[-60,168],[-13,123],[-27,106],[-41,139],[-55,186],[-57,160],[-58,66],[-13,116],[-26,131],[-49,127],[-62,58],[-58,133],[-55,164],[-46,151],[-32,109],[-36,98],[-69,209],[-2,166],[-15,141],[-33,97],[5,144],[8,144],[84,-94],[80,-129],[6,215],[-19,128],[49,101],[5,130],[-50,83],[-40,121],[8,102],[98,-3],[44,-53],[81,-10],[61,-107],[48,-107],[60,-26],[2,146],[80,90],[59,69],[57,94],[37,47],[42,6],[64,19],[84,59],[58,38],[41,-19],[-25,-89],[-24,-112],[20,-126],[74,19],[74,-58],[-41,-130],[-16,-128],[-37,-118],[-7,-126],[-28,-181],[-29,-93],[-65,-39],[-47,-181],[21,-137],[-6,-113],[-59,-73],[-75,4],[-14,-142],[54,12],[60,1],[10,-53],[19,-106],[3,-72],[3,-115],[24,-194],[5,-132],[34,-53],[12,-19],[17,55],[16,52],[36,-61],[10,-16],[61,-129],[62,-83],[53,-38],[34,-26],[30,-23],[56,-44],[-1,-94],[-1,-114],[60,192],[-2,7],[-40,125],[-2,9],[-37,40],[-22,24],[-12,61],[-10,50],[-76,34],[-17,120],[-48,35],[11,158],[-56,77],[-8,-119],[-48,52],[-10,73],[-11,87],[-2,14],[-33,164],[-1,37],[-3,111],[28,123],[15,97],[25,118],[14,139],[37,188],[64,152],[39,86],[24,69],[17,111],[42,60],[22,114],[81,113],[59,90],[40,-6],[36,-51],[4,-82],[19,-93],[54,-122],[71,-28],[27,77],[-25,145],[-12,163],[-15,180],[-67,40],[6,133],[53,150],[54,146],[34,194],[43,153],[38,128],[39,85],[95,184],[71,-67],[-45,-78],[57,-89],[-25,-111],[33,-143],[17,-180],[57,-76],[18,-116],[28,155],[-30,92],[6,115],[30,125],[-32,98],[7,138],[46,99],[27,88],[37,90],[39,-31],[44,-28],[50,-41],[-24,-226],[11,-116],[53,-18],[22,-157],[0,-175],[27,-150],[43,117],[33,95],[58,31],[50,16],[67,-10],[2,163],[-12,128],[-47,88],[11,174],[12,153],[-22,105],[-69,55],[-39,131],[-32,86],[-7,129],[-33,89],[-2,134],[51,-3],[57,-24],[4,-111],[29,-156],[24,-119],[55,-95],[51,-73],[74,43],[49,20],[-25,-107],[-6,-146],[66,-49],[38,-28],[49,-12],[43,7],[42,1],[27,-83],[-21,-88],[33,-87],[61,74],[-10,176],[46,56],[61,44],[48,-13],[52,73],[44,-19],[0,-129],[-15,-131],[60,-42],[7,-114],[-17,-108],[-15,-207],[38,-110],[-62,-107],[-38,-133],[71,46],[64,21],[38,-162],[55,-37],[58,30],[32,-86],[66,48],[46,-13],[63,-83],[-44,185],[-66,16],[-44,-2],[-58,66],[-38,-3],[-24,70],[-50,126],[-11,175],[41,35],[-36,81],[32,139],[62,18],[35,100],[36,92],[-63,-9],[-55,19],[-49,26],[-36,99],[32,140],[54,108],[81,4],[56,47],[40,-38],[36,40],[76,70],[48,-210],[59,70],[61,35],[72,-15],[81,63],[12,-205],[28,-138],[17,128],[26,145],[-20,138],[-13,161],[-15,179],[19,175],[-79,35],[3,-173],[-4,-158],[-45,-104],[-56,-4],[-57,102],[-56,-38],[-51,2],[-39,96],[-23,-135],[-66,-26],[-58,26],[-25,118],[-41,-204],[-73,49],[-35,150],[-34,-30],[-26,-152],[-13,-156],[-97,1],[-67,-16],[-70,47],[-87,-41],[-69,-6],[-61,41],[-3,93],[8,118],[-2,155],[-63,-101],[-69,-4],[-51,68],[14,172],[25,100],[-57,159],[-39,28],[-57,59],[-53,58],[68,103],[63,87],[42,4],[10,132],[53,-10],[65,-50],[5,120],[59,-35],[72,-9],[58,38],[42,85],[49,45],[42,42],[51,-45],[29,-158],[9,-137],[34,-154],[9,130],[-4,112],[27,101],[-16,130],[35,125],[39,-16],[53,15],[36,-61],[39,-73],[19,128],[-53,35],[-23,70],[-70,159],[30,221],[31,119],[0,128],[49,60],[35,94],[35,-54],[69,18],[57,-76],[44,97],[-59,114],[-87,30],[-55,86],[-36,78],[-52,-86],[8,-166],[-64,-37],[-43,154],[-40,137],[-39,120],[-14,109],[-50,-37],[-2,-104],[39,-104],[16,-141],[37,-138],[33,-160],[-46,-79],[-7,-160],[-68,-35],[16,-167],[-20,-122],[-56,49],[-51,-34],[-85,49],[-53,135],[-25,-127],[-60,-36],[-64,-15],[-56,-108],[-97,-32],[17,84],[59,101],[27,131],[-12,166],[15,112],[35,72],[24,151],[28,90],[15,99],[6,167],[36,126],[-61,73],[-5,91],[-41,136],[-3,-144],[10,-104],[-1,-129],[-44,-194],[-28,-167],[-52,-129],[-21,-206],[-53,-104],[-51,66],[-44,-122],[-68,67],[-9,172],[-3,112],[-89,-31],[-62,66],[-20,200],[24,152],[46,36],[57,47],[-60,49],[-38,-22],[-45,-13],[-25,-89],[-50,-84],[35,-111],[0,-134],[-25,-106],[-9,-131],[88,-49],[87,7],[13,-124],[34,-156],[-62,-12],[-36,-104],[11,-243],[25,-132],[7,-139],[-75,-50],[-56,-16],[-30,-61],[-101,-111],[-35,-62],[13,-159],[-57,96],[-64,27],[25,128],[14,150],[5,123],[27,130],[44,170],[-74,38],[-68,-32],[-12,-146],[-8,-202],[-44,215],[-8,207],[-15,159],[40,117],[53,88],[68,68],[-64,40],[-53,7],[2,172],[25,138],[-22,113],[14,134],[4,138],[-6,116],[-54,89],[-6,148],[36,123],[42,-5],[63,10],[19,131],[39,98],[-36,104],[-13,116],[-9,4],[-23,-69],[16,-148],[-40,-142],[-60,-3],[-58,-81],[-73,0],[-50,85],[-11,-20],[12,-91],[40,-109],[47,-126],[41,-163],[9,-156],[8,-132],[-35,-144],[-72,54],[25,-160],[-20,-109],[52,-214],[1,-162],[-42,2],[-46,85],[-33,-106],[-55,35],[-60,-36],[50,-190],[50,-7],[52,-34],[37,-93],[7,-127],[-74,-90],[-60,-80],[51,-57],[83,-52],[-38,-106],[22,-156],[-19,-156],[28,-81],[36,-96],[-44,-39],[-49,52],[-38,70],[-24,96],[6,144],[-44,123],[-65,-6],[15,168],[-65,140],[1,139],[-5,139],[-40,144],[-61,90],[45,155],[20,153],[26,130],[-57,95],[41,97],[-36,54],[-41,-48],[-40,98],[-60,57],[7,-172],[4,-146],[34,-146],[-19,-123],[-69,-26],[-42,-107],[15,-125],[29,-104],[8,-166],[78,-70],[-4,-146],[73,-24],[39,-146],[-8,-144],[7,-107],[-12,-101],[-94,-24],[-87,-15],[-57,107],[10,141],[9,153],[-19,164],[-31,108],[-32,125],[-36,153],[-73,67],[-33,138],[-27,96],[-27,67],[-43,77],[-20,109],[-77,-5],[-76,20],[-48,13],[-29,105],[-62,84],[61,66],[53,62],[35,99],[37,66],[29,63],[34,121],[37,1],[36,-8],[-16,-101],[-8,-123],[38,-90],[33,-21],[66,-73],[21,-144],[50,-94],[18,186],[54,105],[4,146],[49,114],[61,51],[48,3],[76,147],[78,115],[-74,136],[-14,58],[49,14],[41,6],[0,13],[-39,98],[-47,49],[-63,-89],[-48,-1],[27,145],[65,158],[54,-70],[44,10],[1,237],[56,82],[17,142],[-56,28],[-89,-42],[-62,-10],[-50,-62],[-37,2],[-39,107],[-2,131],[-162,516],[-111,549],[58,72],[151,-222],[101,-216],[44,-158],[-23,-53],[-49,-11],[-27,-96],[34,-134],[1,-109],[48,-109],[25,-12],[23,36],[16,130],[66,29],[62,-10],[-9,152],[17,110],[20,26],[38,108],[29,-63],[-8,-74],[8,-38],[20,-84],[9,-94],[30,-46],[14,-26],[21,3],[1,84],[-20,136],[47,42],[37,-44],[54,-19],[9,106],[-34,151],[-35,92],[-16,148],[75,90],[31,68],[49,-55],[60,27],[70,56],[51,52],[34,-22],[37,-3],[6,-138],[-71,8],[30,-155],[19,-125],[-63,-110],[7,-16],[22,-46],[62,-218],[18,-201],[7,-6],[59,-11],[7,17],[-26,107],[21,129],[67,9],[64,-46],[43,-38],[7,-86],[51,2],[63,-2],[72,-67],[50,-132],[-58,-115],[54,-98],[72,26],[35,61],[36,132],[4,123],[60,33],[36,152],[64,130],[44,84],[56,90],[52,92],[90,83],[88,94],[60,94],[78,130],[52,72],[52,15],[69,33],[50,-69],[-26,-113],[-41,-12],[-44,35],[-48,-20],[-39,-16],[-26,-150],[79,-3],[58,18],[55,-21],[55,-67],[70,-17],[0,-134],[-3,-89],[-5,-169],[-10,-150],[-28,-109],[-12,-155],[-60,-76],[-56,8],[-70,81],[-34,-160],[-53,-20],[-31,89],[-36,131],[-34,86],[-44,-116],[30,-133],[46,-182],[33,-125],[59,-52],[20,139],[54,18],[68,51],[65,29],[36,-108],[57,-153],[64,-102],[83,-92],[56,-4],[72,128],[61,92],[32,74],[40,96],[47,134],[101,59],[34,-152],[44,-135],[56,-120],[27,-88],[33,-50],[36,-74],[48,-69],[51,-114],[45,-76],[28,-75],[61,-76],[58,-64],[50,-77],[11,-129],[42,-120],[56,169],[-31,93],[30,53],[58,51],[75,68],[64,-22],[60,147],[70,89],[58,65],[73,69],[39,-12],[-26,-92],[21,-128],[26,-126],[28,-80],[57,-9],[48,-1],[63,-16],[-4,-159],[33,-146],[70,-83],[40,-90],[19,-166],[77,55],[70,-65],[48,-59],[2,-2],[26,-106],[47,-38],[55,-69],[56,-6],[50,-54],[72,-145],[55,-76],[54,-32],[70,12],[68,45],[86,51],[87,91],[53,-10],[51,60],[71,-44],[66,46],[70,70],[52,27],[42,-143],[15,149],[-20,143],[29,83],[43,-8],[64,-40],[14,94],[8,108],[29,141],[70,8],[37,90],[-3,252],[69,-19],[96,-63],[57,-89],[93,58],[66,76],[80,10],[40,85],[48,32],[-34,138],[-10,137],[4,150],[23,159],[57,24],[58,-37],[30,110],[-57,66],[-15,158],[-43,175],[48,154],[64,30],[53,175],[-20,108],[-74,11],[-74,154],[16,84],[30,97],[21,109],[-15,160],[29,150],[37,38],[1,149],[91,14],[88,-9],[44,-10],[45,42],[61,19],[-56,107],[-67,114],[-1,151],[10,116],[41,119],[65,133],[64,107],[52,163],[37,122],[-32,41],[-25,32],[-15,20],[61,114],[-23,34],[-27,39],[16,91],[6,39],[8,7],[36,31],[-6,80],[-4,74],[-51,80],[11,90],[2,17],[5,4],[49,31],[11,113],[58,104],[74,113],[71,101],[17,114]],[[85172,39840],[1,-14],[1,-24],[0,-25],[1,-30],[1,-66],[3,-75],[1,-34],[0,-4],[1,-88],[1,-33],[4,-119],[2,-63],[4,-85],[1,-5],[1,-44],[3,-82],[1,-51],[1,-71],[2,-73],[2,-40],[0,-16],[2,-67],[1,-14],[1,-30],[0,-11],[0,-3],[2,-42],[2,-94],[2,-32],[1,-48],[1,-14],[1,-38],[1,-16],[1,-32],[1,-42],[3,-110],[3,-86],[2,-80],[6,-159],[1,-40],[2,-69],[6,-159],[1,-25],[1,-27],[0,-23],[0,-20],[0,-16],[-1,-20],[-1,-2],[4,-96],[13,-314],[5,-164],[31,-939],[4,-128],[3,-116],[1,-12]],[[85303,35710],[-4,1],[-19,7],[-25,1],[-27,-3],[-27,-17],[-28,-56],[-28,-109],[-11,-68],[-13,-89],[-15,-65],[-20,-80],[-16,-68],[-27,-48],[-47,-77],[-47,-79],[-44,-84],[-3,-6],[-1,0],[-31,-57],[-29,-61],[-26,-67],[-29,-54],[-61,-82],[-25,-25],[-33,-33],[-54,-38],[-25,-7],[-29,-4],[-14,-2],[-58,-7],[-64,39],[-49,-6],[-24,-12],[-24,-14],[-46,-85],[-18,-57],[-19,-98],[-24,-97],[-7,-6],[-30,-25],[-30,-76],[-23,-91],[-11,-135],[-8,-106],[-6,-167],[-14,-144],[-14,-156],[-18,-81],[-13,-59],[-54,-147],[-118,-201],[-152,-98],[-47,-34],[-117,-88],[-54,-39],[-14,-11],[-66,-82],[-163,-328],[-55,-101],[-17,-9],[-115,-65],[-244,-88],[-55,-22],[-1,-1],[-31,-13],[-64,-113],[-69,-170],[-59,-146],[-24,-107],[42,-171],[95,-203],[66,-164],[20,-161],[-41,-174],[-119,-130],[-147,-75],[-105,-110],[-58,-239],[-23,-288],[17,-159],[65,-98],[146,-67],[120,-164],[34,-187],[-33,-318],[-83,-264],[-81,-98]],[[82441,28124],[-69,69],[-68,30],[-28,4],[-58,10],[-25,-10],[-16,-7],[-18,-8],[-36,-35],[-25,-23],[-29,1],[-25,0],[-44,-103],[-26,-99],[-4,-123],[-15,-141],[-29,-172],[0,-87],[-13,-112],[-22,-157],[-1,-37],[-4,-149],[-10,-160],[-6,-74],[-2,-16],[39,-45],[35,-137],[43,-105],[18,-76],[49,-105],[51,-121],[-80,7],[-49,36],[-25,8],[-49,15],[-60,66],[-15,16],[-2,-5],[-51,-124],[-68,-124],[-63,-112],[-30,-113],[-40,-60],[-48,-64],[-40,-153],[3,-15],[15,-89],[11,-65],[17,-113],[11,-72],[38,-149],[31,-86],[8,-45],[23,-129],[13,-153],[-38,-95],[-56,-54],[-43,-36],[-13,-11],[-11,-11],[-38,-37],[-32,-26],[-28,-23],[-3,0],[-88,3],[-29,75],[0,1],[-8,-35],[-18,-78],[-7,-31],[-1,-3],[-12,-16],[-23,-32],[-26,-35],[-36,-6],[-11,-2],[-9,0],[-33,-1],[-15,0],[-39,-33],[-14,-12],[-2,-2],[-41,-57],[-45,-24],[-61,1],[-67,-64],[-42,-92],[-59,-47],[-27,-35],[-27,-34],[-12,-15],[-17,-21],[-23,-30],[-56,-83],[-32,-90],[-2,-4],[-6,-166],[1,-54],[3,-133],[10,-120],[1,-195],[-9,-29],[-22,-70],[-47,6],[-15,1],[-59,-86],[-16,-28],[-40,-72],[0,-1],[-30,-82],[-5,-5],[-25,-28],[-48,-55],[-18,-111],[-8,-112],[-48,-105],[-3,-7],[-35,-107],[-73,-79],[-16,-71],[-6,-28],[-39,-82],[-45,-53],[21,-99],[50,-55],[-44,-159],[-7,-25],[-43,-198],[20,-113],[4,-24],[24,-105],[9,-40],[1,-2],[32,-107],[16,-51],[12,-114],[-37,-100],[-19,-166],[8,-154],[-9,-178],[0,-21],[0,-89],[-42,-147],[-74,-101],[-73,-98],[-55,93],[-10,-10],[-35,-37],[-14,-70],[-6,-27],[-19,-61],[-18,-56],[-7,-39],[-26,-134],[12,-18],[29,-42],[27,-40],[5,-47],[12,-121],[-47,-159],[51,-124],[51,-106],[10,-6],[66,-33],[60,-15],[8,-2],[21,-58],[24,-65],[-40,-120],[-56,-87],[-18,-102],[-38,-106],[-14,-34],[-15,-40],[-15,7],[-25,11],[-43,-5],[-57,-45],[-48,-21],[-64,-16],[-14,-13],[-39,-37],[-10,-2],[-49,-10],[-48,-33],[-47,-7],[-9,-1],[40,122],[54,116],[30,98],[4,13],[18,78],[5,19],[25,90],[10,-48],[18,-94],[44,-151],[52,137],[62,106],[-6,122],[-27,107],[-59,-14],[-17,-127],[-42,65],[-17,139],[42,99],[-44,115],[-74,64],[-40,89],[-54,84],[-44,59],[-2,2],[-44,66],[-40,59],[-26,40],[-66,102],[-85,125],[-7,74],[-11,116],[45,38],[16,13],[-12,69],[-8,46],[0,24],[-2,89],[62,88],[50,72],[-57,75],[-7,30],[-22,88],[-16,-35],[-40,-87],[-64,11],[-48,112],[-5,20],[-27,114],[-47,131],[-36,104],[-28,60],[-15,33],[-22,68],[-17,52],[-51,107],[-20,56],[-27,74],[46,53],[-4,19],[-17,84],[-38,84],[-27,70],[-6,16],[-16,2],[-42,6],[-31,156],[-1,2],[-50,136],[-69,17],[-78,62],[-36,101],[32,38],[66,50],[72,62],[95,33],[55,12],[68,17],[89,-27],[66,-15],[3,0],[51,115],[44,-77],[12,14],[71,86],[55,14],[52,8],[51,32],[38,40],[38,41],[28,30],[48,67],[38,52],[20,27],[75,132],[50,112],[0,1],[20,150],[18,120],[10,121],[-2,132],[-7,98],[6,129],[4,59],[7,76],[-10,123],[62,107],[8,15],[42,86],[-11,11],[-37,33],[-64,59],[-34,9],[-69,17],[-18,218],[-18,70],[-21,82],[-21,92],[-7,53],[-3,21],[-28,93],[-20,139],[-5,31],[-9,59],[-15,103],[-2,2],[-76,47],[-87,26],[-11,6],[-63,42],[-66,23],[-16,3],[-25,7],[-59,9],[-6,7],[-50,54],[-20,44],[-13,27],[-26,61],[-19,45],[-74,40],[-51,-4],[-43,-4],[-37,-11],[-11,-4],[-47,64],[-25,142],[-1,3],[-1,9],[-29,-58],[-44,-91],[0,-2],[23,-96],[18,-67],[4,-19],[30,-42],[5,-9],[16,-23],[62,-68],[18,-98],[-35,-67],[-30,-59],[-13,-20],[-52,-78],[-4,-80],[-4,-81],[-14,-197],[-15,-99],[-3,-26],[-44,-89],[-12,-24],[0,-1],[14,-6],[32,-14],[3,-1],[12,-194],[-6,-56],[-10,-104],[-7,-130],[-28,-195],[-10,-90],[-12,-106],[-36,-180],[-8,-37],[-72,-52],[-14,-10],[-15,-17],[-46,-52],[-43,-88],[-21,-45],[-5,-4],[-49,-52],[-54,-122],[-62,-65],[-20,-10],[-53,-27],[-44,-17],[-14,-5],[-42,-48],[-35,-110],[-27,-79],[-12,-33],[-3,-7],[-38,-73],[-2,-63],[-5,-104],[-3,-19],[-28,-169],[-59,-49],[-80,-56],[-56,-70],[-52,-38],[-52,36],[12,-73],[10,-56],[1,-4],[67,6],[55,3],[40,-27],[5,-3],[50,19],[22,-20],[33,-29],[11,-13],[63,-80],[84,-129],[44,-103],[9,-41],[28,-133],[54,-160],[54,-110],[70,-69],[5,-69],[9,-103],[75,-223],[-47,-93],[-32,-85],[-16,-39],[-23,-56],[-75,-74],[-13,-12],[-73,-66],[-21,15],[-67,51],[-91,-3],[16,-82],[10,-51],[24,-10],[40,-16],[31,-106],[17,-58],[85,-51],[89,29],[-19,-154],[-26,-97],[-19,-101],[-31,-124],[-30,-220],[-7,-67],[-1,-7],[-20,-170],[-54,-69],[-54,15],[-12,15],[-37,44],[-38,-34],[-20,12],[-45,28],[-39,83],[-10,20],[-2,92],[-60,8],[20,-148],[2,-15],[-32,-89],[-14,-39],[29,-28],[47,-44],[48,-102],[68,-79],[18,-123],[55,-42],[4,-2],[57,55],[1,-135],[29,-132],[13,-85],[3,-19],[16,-41],[16,-37],[46,-90],[29,-85],[14,-41],[-5,-98],[-3,-43],[-1,-32],[-2,-63],[7,-129],[20,-57],[1,-3],[39,-111],[5,-169],[0,-27],[-36,48],[-56,80],[-60,71],[-13,142],[-51,106],[-76,38],[-23,-34],[-45,-67],[-73,132],[-52,13],[-13,14],[-36,40],[-37,44],[-8,63],[-12,87],[-33,95],[-66,75],[-48,94],[-68,170],[-37,135],[-9,113],[-20,162],[-38,137],[-7,54],[-13,102],[3,51],[2,58],[1,25],[-14,10],[-48,36],[-58,-34],[-16,-9],[-25,-117],[-64,45],[-34,31],[-17,16],[-13,-1],[-35,-3],[-41,-68],[-67,-9],[-48,56],[-44,20],[-41,0],[-39,156],[-10,40],[12,-6],[67,-33],[44,-23],[42,47],[42,90],[-4,41],[-10,88],[-4,35],[51,2],[12,0],[10,1],[4,0],[65,9],[76,89],[61,110],[10,10],[43,44],[50,8],[54,51],[10,10],[-63,49],[-59,99],[-85,117],[-92,-28],[18,110],[11,119],[30,83],[44,-11],[21,107],[-48,49],[-62,-18],[-72,-17],[-27,2],[-47,4],[-45,-83],[-28,50],[-9,17],[-28,50],[-26,49],[13,60],[30,143],[-24,97],[-8,28],[-4,101],[-2,39],[-2,40],[-39,35],[-34,30],[-60,-81],[-74,-90],[-51,-53],[-59,89],[-36,130],[63,65],[49,35],[44,42],[39,69],[0,77],[0,34],[-9,48],[-10,53],[18,57],[13,39],[-18,105],[-25,-15],[-32,-19],[-31,-101],[-4,-68],[-3,-62],[-6,-4],[-44,-32],[-20,68],[-13,43],[-11,93],[-8,59],[-7,155],[-37,-12],[-36,-12],[-3,-65],[-1,-21],[-2,-47],[-8,-168],[-64,-18],[-63,110],[-51,76],[-72,-47],[-16,-118],[19,-120],[-25,-109],[3,-152],[-29,-106],[15,-186],[42,-121],[54,-93],[30,-135],[-68,82],[-73,23],[-96,-41],[-74,-73],[-43,-168],[-59,-16],[-90,-50],[-14,171],[-18,121],[1,114],[50,105],[43,25],[26,96],[43,93],[57,132],[19,137],[-16,138],[12,132],[65,-29],[69,126],[-8,185],[42,89],[-2,135],[-77,70],[-57,-18],[-16,119],[-76,63],[-33,0],[-4,0],[-24,0],[-2,-102],[-1,-35],[-41,-9],[-10,-2],[-41,65],[-60,15],[-64,51],[-3,7],[-52,97],[-51,27],[-43,22],[-5,2],[-72,6],[-43,83],[-31,80],[-23,180]],[[59453,19295],[28,-23],[76,24],[70,8],[36,-63],[35,-106],[-27,-139],[-22,-91],[-34,-99],[-66,5],[-58,64],[-74,143],[-40,86],[-64,115],[-62,107],[-59,145],[54,16],[48,-68],[60,-37],[71,-66],[28,-21]],[[62806,34698],[55,-60],[57,-110],[31,-116],[46,-102],[45,-10],[53,-26],[67,-116],[59,-78],[49,-37],[71,-78],[62,-145],[-76,-73],[17,-181],[12,-157],[16,-184],[-1,-37],[-4,-96],[-21,-64],[-36,-85],[-22,-127],[-9,-154],[-54,-77],[-25,158],[-32,-152],[7,-130],[-23,-74],[-36,-127],[-89,-5],[-53,-39],[-42,27],[-61,-8],[-47,-45]],[[62822,32190],[-25,62],[0,55],[-27,50],[-12,48],[-13,51],[-24,28],[-19,-33],[-22,7],[-4,56],[-17,44],[-21,27],[-21,21],[-7,56],[-6,57],[-13,46],[-27,-3],[0,56],[-7,53],[-22,25],[-37,-20],[-8,54],[-18,-39],[-23,-18],[-17,37],[-26,17],[-22,-36],[-22,18],[-20,33],[-23,-6],[-28,5],[-47,33],[-26,19],[-28,10],[-42,4],[-25,-2],[-58,20],[-22,15],[-28,-15],[-88,7],[-28,14],[-25,-3],[-22,-2],[-45,-16],[-47,25],[-41,-10],[-48,35],[-38,28],[-24,8],[-32,-9],[-24,2],[-36,-11],[-26,-18],[-27,-4],[-24,17],[-27,0],[-33,-9],[-30,11],[-24,-9],[-23,5],[-24,-13],[-25,-25],[-19,-63],[-15,-55],[-20,-33],[-25,-18],[-24,-19],[-28,-13],[-10,-4],[-16,-72],[-45,-184],[-20,-85],[-13,-53],[-26,-109],[-39,-172],[-28,-119],[-11,-50],[-16,-65],[-21,-57],[-16,-59],[-52,-199],[-22,-78],[-31,-122],[-32,-123],[-23,-92],[-30,-115],[-47,-169],[0,-1],[-26,-124],[-41,-145],[-26,-106],[-44,-176],[-48,-197],[-14,-74],[-14,-43],[-45,-184],[-54,-232],[-22,-83],[-40,-152],[-23,-90],[-11,-54],[-42,-164],[-22,-87],[-61,-250],[-30,-96],[-19,-68],[9,-82],[-10,-96],[-19,-55],[-16,-40],[-20,-34],[-16,-50],[-44,-59],[-9,-60],[-16,-40],[-17,-53],[-12,-53],[-23,-20],[-29,-23],[-21,-55],[-17,-38],[-21,-25],[-23,-62],[-14,-44],[-10,-52],[-17,-60],[-13,-46],[-26,-83],[-20,-56],[-22,-37],[-23,-16],[-24,-6],[-31,-16],[-36,-58],[-15,-50],[-3,-9],[-13,-36],[-8,-55],[-4,-66],[0,-111],[-7,-65],[-6,-59],[-26,-80],[-23,-38],[-44,-42],[-18,-50],[-19,-40],[-22,-33],[-29,-27],[-30,-24],[-23,-17],[-26,-8],[-15,-51],[-32,-45],[-25,1],[-24,-9],[-23,28],[-20,29],[-11,-57],[-23,23],[6,-54],[-22,-20],[-7,-53]],[[58991,26257],[-35,11],[-24,-37],[-67,-52],[-69,-27],[-89,-34],[-72,-5],[-72,51],[-93,8],[-65,96],[-46,-2],[-66,-50],[-56,53],[-37,4],[-38,5],[-35,22],[-10,6],[-13,8],[-43,-57],[-13,-16],[-4,-56],[-5,-56],[-12,25],[-38,79],[-6,14],[-29,68],[-2,5],[-45,52],[-9,68],[-5,35],[-1,11],[-44,-59],[-12,-16],[1,-104],[25,-73],[-24,-109],[-68,-84],[2,-10],[26,-103],[10,-42],[78,-23],[68,-6],[50,-111],[102,-35],[92,-9],[52,-30],[45,-6],[46,-2],[32,-155],[37,-58],[41,-45],[58,-43],[79,-31],[93,18],[79,-88],[62,-116],[73,-20],[55,-13],[39,-67],[54,-74],[65,-13],[64,-31],[-12,-102],[19,-109],[35,-84],[55,-86],[-46,-80],[-29,-89],[10,-149],[-1,-125],[-22,-103],[-49,-182],[-31,-117],[-45,-31],[-29,-119],[-36,-139],[-8,-218],[-73,-8],[40,-74],[29,-90],[54,-160],[45,-100],[76,-95],[68,-37],[47,-124],[25,-125],[39,-119],[40,-74],[-41,-140],[11,-169],[7,-165],[-65,-14],[47,-129],[63,-115],[62,-86],[52,-173],[-44,-140],[-35,-87],[-74,-42],[48,-176],[-60,-31],[-54,-16],[-53,27],[-54,-8],[24,-93],[48,-27],[73,-13],[58,46],[61,-28],[35,121],[-43,108],[67,2],[51,-46],[49,-65],[42,-49],[18,-137],[15,-140],[10,-142],[7,-190],[24,-118],[29,-68],[32,-84],[-54,-110],[-39,-156],[-43,-81],[-8,118],[-81,-80],[-36,-45],[-68,66],[-20,-76],[-6,-21],[-28,119],[-66,26],[-67,46],[-63,67],[-28,151],[-53,-101],[-55,-20],[-49,74],[-57,106],[-56,43],[-69,17],[-52,54],[-58,67],[-60,-30],[-84,24],[-43,50],[-85,122],[-90,127],[-87,98],[-33,38],[-51,59],[-62,86],[-75,59],[-61,47],[-73,47],[-57,26],[-69,-10],[-47,-66],[-16,108],[-25,103],[9,113],[25,158],[10,134],[7,140],[4,178],[24,161],[15,86],[72,-94],[65,-43],[23,-88],[72,-27],[67,-129],[19,-114],[91,-101],[39,-51],[46,-151],[77,-11],[-52,154],[-50,132],[-49,94],[-23,99],[34,55],[-86,92],[-49,154],[-28,154],[-46,-50],[-75,45],[-64,120],[-57,45],[-73,-40],[-39,38],[-38,122],[-42,139],[-46,125],[-82,119],[-66,107],[-65,72],[-16,83],[62,160],[78,73],[45,92],[36,27],[28,93],[-60,51],[-59,-26],[-51,-74],[-80,-37],[-84,7],[9,-220],[-62,-60],[-60,28],[-54,41],[-38,42],[-61,80],[-55,96],[-38,75],[-36,50],[-49,61],[-59,59],[-45,32],[-53,27],[-61,1],[-43,4],[11,140],[19,138],[-15,159],[-18,119],[47,-53],[15,100],[-57,135],[-45,151],[-69,147],[-18,106],[-19,114],[-24,142],[-10,121],[4,165],[-3,167],[-14,133],[-25,196],[-16,215],[-14,86],[-15,97],[9,146],[4,130],[-29,136],[-70,113],[-28,135],[-19,100],[-62,222],[-46,184],[-28,209],[-12,182],[-7,94],[-10,110],[-27,116],[-33,102],[-24,119],[-36,153],[-47,143],[-65,168],[-39,199],[-29,160],[-35,148],[-28,138],[-20,85],[-34,99],[-74,120],[-60,138],[-35,161],[4,140],[-79,144],[2,149],[-46,170],[32,126],[-11,143],[-26,136],[60,-16],[59,29],[16,155],[63,99],[24,176],[52,136],[-4,169],[30,176],[-39,137],[-24,171],[-28,122],[-10,98],[-10,100],[-42,-74],[-26,-125],[16,-116],[6,-113],[9,-161],[-18,-133],[-45,-127],[-15,-141],[-31,-75],[-67,-78],[-76,-139],[-60,-80],[-12,-96],[-31,-150],[-29,-150],[-3,-136],[38,-210],[1,-141],[-7,-172],[-20,-99],[-58,-128],[-28,-95],[-75,-57],[-97,-57],[-82,-12],[-19,-175],[26,-110],[79,51],[60,17],[71,47],[79,-19],[40,-126],[23,-158],[-53,-63],[-54,-65],[-95,-135],[-54,-101],[-38,-55],[-40,-55],[-70,-91],[-61,-103],[-30,-62],[-31,-67],[-41,-87],[-42,-83],[-48,-53],[-62,-16],[-48,-49],[-46,-103],[-57,-142],[-59,-132],[-53,-111],[-40,-107],[-43,-157],[-47,-177],[-68,-10],[-43,52],[-57,-47],[-44,-16],[-63,-43],[-79,1],[-44,71],[-40,50],[30,69],[41,103],[18,105],[-15,127],[18,135],[28,208],[26,138],[24,124],[-18,96],[5,184],[-88,-2],[16,165],[32,186],[22,134],[-2,110],[-7,93],[9,92],[82,21],[63,93],[9,103],[40,72],[36,151],[3,11],[-56,-34],[-57,88],[-64,-35],[-49,-121],[-46,-46],[-47,-58],[-62,-22],[-71,28],[-46,17],[-63,15],[-82,-33],[-75,-86],[-107,72],[-51,-50],[-49,34],[-71,120],[8,-197],[-66,120],[-36,81],[22,118],[64,89],[42,128],[33,124],[9,93],[6,68],[-66,25],[-18,6],[-41,-112],[-38,-56],[-60,-169],[-52,-144],[-59,-62],[-31,-84],[45,-186],[53,-157],[93,-93],[66,-25],[32,-122],[86,21],[53,33],[58,3],[63,-52],[61,-44],[-1,113],[46,37],[59,-90],[-1,-131],[-13,-119],[-16,-221],[-2,-152],[-40,-76],[-46,-77],[11,-154],[36,-126],[-46,-185],[-30,-179],[20,-140],[-58,-80],[55,-70],[27,-83],[-23,-101],[-17,-120],[-7,-99],[-28,-148],[-31,-104],[-40,-96],[-61,-101],[-28,-90],[-37,-129],[-54,-91],[-40,-43],[-41,-46],[-45,-76],[-44,-62],[-53,-42],[-54,-25],[-75,-69],[-58,-69],[-38,-61],[-67,-135],[-58,-104],[-62,-101],[-57,-43],[-97,-61],[-35,-65],[-60,-127],[-81,-93],[-40,-61],[-55,-77],[-62,-61],[-73,-37],[-48,-33],[-47,-36],[-73,-46],[-83,-36],[-47,-41],[-54,-54],[-72,60],[-44,24],[-73,58],[-67,106],[-55,103],[-43,79],[-39,64],[-54,78],[-40,57],[-37,51],[-32,44],[-47,49],[-63,36],[-76,83],[-55,74],[-53,69],[-75,129],[-52,111],[-20,140],[-19,84],[-22,89],[-6,144],[-13,162],[-34,104],[-37,97],[-3,133],[-8,98],[-28,128],[-45,174],[-55,169],[-33,133],[-13,138],[20,159],[26,136],[44,164],[45,131],[38,126],[20,166],[-21,162],[-38,129],[-52,136],[-54,104],[-35,136],[20,137],[31,146],[16,168],[-25,152],[-36,131],[-49,104],[-50,124],[-20,191],[58,148],[59,-30],[49,184],[-61,5],[-4,181],[-71,127],[-44,83],[-34,173],[-28,133],[21,171],[17,174],[22,98],[33,119],[31,143],[40,144],[-10,168],[30,164],[15,169],[29,185],[49,223],[55,111],[37,79],[18,70],[-8,122],[7,109],[33,109],[44,47],[52,26],[46,35],[62,83],[58,29],[60,-2],[63,158],[50,70],[43,52],[40,96],[54,62],[-21,102],[-17,131],[54,55],[61,153],[25,163],[-37,122],[-40,-60],[-2,-139],[-59,-22],[-36,59],[-20,-93],[-38,10],[-35,-35],[-56,-98],[-48,-56],[-22,-137],[-56,-144],[3,200],[35,120],[63,177],[57,204],[63,173],[59,36],[86,35],[63,-5],[57,19],[66,20],[44,-36],[62,55],[52,15],[37,-14],[69,-39],[78,-68],[46,-14],[54,34],[53,72],[56,158],[41,184],[30,-71],[34,-78],[56,-82],[38,124],[54,-1],[59,140],[45,101],[-7,139],[16,167],[48,-54],[34,-130],[67,-52],[50,45],[26,79],[20,161],[22,188],[-47,105],[29,170],[70,-18],[51,51],[89,7],[48,194],[55,172],[-57,150],[-2,63],[-1,27],[-66,-1],[-42,-100],[-2,-153],[-47,-81],[-33,-37],[-40,11],[-63,20],[-55,-150],[-52,-104],[-60,-182],[-64,-77],[-28,-123],[-41,90],[-33,60],[40,140],[-75,-73],[-48,-95],[-15,-129],[21,-105],[42,-102],[-69,-37],[-60,-74],[-71,-44],[-69,-13],[-61,-6],[-41,-77],[-62,9],[-48,84],[-33,89],[21,174],[40,110],[34,96],[38,63],[90,146],[74,138],[47,102],[33,78],[35,136],[27,171],[34,117],[40,161],[52,195],[55,160],[64,71],[53,62],[64,104],[72,80],[66,22],[52,5],[70,-21],[74,-13],[53,-14],[46,-8],[39,-18],[51,-2],[57,-2],[71,94],[68,132],[73,64],[49,18],[37,26],[61,57],[60,60],[46,96],[27,84],[45,132],[45,63],[57,54],[43,49],[68,68],[61,86],[65,112],[46,127],[31,124],[35,96],[-42,61],[-70,-22],[-1,183],[10,167],[-2,159],[-7,127],[-37,123],[-22,165],[-8,123],[6,94],[-25,198],[-19,173],[-16,135],[0,158],[7,150],[16,128],[61,112],[59,107],[33,151],[44,194],[50,98],[49,100],[58,45],[45,16],[53,48],[53,52],[79,50],[79,32],[69,-11],[69,-21],[40,43]],[[93423,29693],[13,-67],[-1,-70],[10,-62],[34,-71],[18,-63],[10,-57],[21,-72],[18,-73],[2,-70],[-15,-50],[-3,-63],[2,-93],[-1,-71],[32,-35],[22,-17],[11,-69],[14,-102],[17,-93],[5,-57],[-5,-61],[6,-59],[11,-49],[12,-57],[27,-91],[27,-35],[37,-62],[29,-81],[20,-36],[29,-65],[14,-52],[14,-101],[22,-57],[20,-73],[15,-85],[5,-82],[11,-93],[7,-55],[25,-73],[2,-148],[-9,-75],[-10,-87],[-1,-65],[-20,-87],[-1,-69],[6,-56],[-3,-70],[-26,-18],[-20,-32],[-13,-65],[-35,-102],[-7,-74],[-16,-91],[-36,-114],[-18,-44],[-8,-20],[-22,-49],[-31,-54],[-6,-73],[24,-67],[22,-49],[22,-46],[6,-74],[-2,-63],[15,-52],[17,-49],[48,-60],[10,-52],[19,-58],[32,18],[33,-17],[26,-36],[20,-42],[13,-78],[5,-79],[-4,-82],[17,-56],[23,-54],[8,-56],[-2,-77],[15,-64],[26,-32],[52,-113],[57,1],[8,-148],[-17,-42],[-18,-65],[-17,-69],[-9,-65],[-14,-54],[-25,-35],[-5,-1],[-19,-5],[-21,-21],[-12,-59],[-36,-44],[-24,-11],[-2,-5],[-16,-39],[25,-77],[-6,-58],[-25,-42],[-8,-92],[-16,-96],[-99,-361],[-25,-37],[-25,-13],[-32,-33],[-24,-4],[-39,51],[-34,13],[-21,-31],[-26,-21],[-10,-51],[-57,-126],[-35,-64],[-25,-26],[-13,-59],[-3,-75],[-13,-105],[-29,-69],[-37,-34],[-27,-3],[-32,-10],[-43,-38],[-66,-60],[-21,-63],[-31,-10],[-25,-24],[-16,-72],[-2,-60],[-21,-51],[-24,-38],[-6,-10],[-2,-65],[-4,-65],[-2,-63],[-21,-36],[-31,-27],[-17,-42],[15,-56],[14,-63],[-10,-100],[-18,-120],[-10,-84],[-11,0],[-19,-36],[-11,-51],[-8,-87],[-11,-59],[-10,-79],[-13,-140],[-2,1],[-32,-11],[-148,-27],[-4,-1],[-53,-9],[-41,-5],[-3,0],[-59,-9],[-126,-12],[-84,-10],[-112,-12],[-42,-5],[-43,-5],[-60,-8],[-189,-22],[-53,-6],[-97,-10],[-38,-4],[-46,-2],[-133,-4],[-130,-13],[-39,-4],[-44,-5],[-93,-10],[-164,-16],[-72,-7],[-55,-5],[-44,-3],[-36,-3],[-2,0],[-29,-5],[-1,0],[-41,-6],[-156,-28],[-56,-10],[-212,-37],[-46,-6],[-105,-13],[-56,-6],[-70,-9],[-134,-16],[-95,1],[-289,-33],[-71,-1],[-99,-12],[-105,-13],[-27,-3],[-35,-5],[-4,0],[-34,-5],[-143,-17],[-7,-1],[-210,-26],[-52,-7],[-65,-6],[-65,-7],[-42,-4],[-300,-31],[-68,-2],[-26,-3],[-154,-21],[-79,-15],[-38,-7],[-22,-3],[-2,0],[-141,-11],[-45,-6],[-36,-4],[-42,-2],[-229,-32],[-13,0],[-112,-4]],[[87299,20113],[-39,27],[-39,28],[-29,22],[-27,18],[-49,30],[-22,15],[-36,22],[-39,25],[-15,56],[-16,60],[-13,49],[-26,17],[-24,14],[-22,60],[-19,61],[-20,34],[-25,30],[-36,-21],[-40,21],[-72,8],[-23,-5],[-15,-4],[-28,-4],[-23,7],[-9,21],[-9,19],[-19,35],[-23,12],[-18,43],[-19,35],[-16,41],[-16,40],[-20,40],[-24,-3],[-26,-1],[-23,-2],[-48,44],[-25,19],[-19,33],[-19,46],[-53,74],[-24,34],[-23,22],[-23,-24],[-36,-55],[-40,-60],[-28,-11],[-27,-18],[-42,-71],[-22,-36],[-22,-33],[-24,4],[-30,9],[-74,-24],[-27,-8],[-24,-12],[-26,-28],[-39,-58],[-23,-29],[-39,-43],[-12,-61],[9,-90],[20,-34],[-13,-49],[-20,-34],[-10,-51],[-9,-52],[-20,-29],[-17,-36],[2,-64],[-17,-38],[-20,-31],[-10,-51],[-19,-37],[5,-57],[-14,-55],[-8,-56],[-26,5],[-11,-53],[-8,-58],[11,-60],[-13,-51],[9,-62],[22,-17],[22,-32],[6,-61],[-18,-67],[-29,-35],[-46,-48],[-38,-27],[-30,2],[-45,30],[-42,49],[-43,-5],[-32,-34],[-32,-41],[-23,-19],[-35,35],[-10,22],[-28,62],[-21,20],[-23,-5],[-31,-38],[-25,-22],[-2,-2],[-24,4],[-3,4],[-22,31],[-2,3],[-4,13],[-39,145],[-34,115],[0,1],[0,1],[4,62],[9,67],[1,34],[1,14],[1,22],[-15,50],[-6,1],[-21,5],[-38,-35],[-3,0],[-14,-1],[-21,-1],[-5,17],[-13,38],[17,132],[0,3],[7,37],[5,33],[-3,3],[-40,33],[-31,6],[-36,53],[-18,36],[-8,8],[-14,15],[-11,-5],[-12,-5],[-4,-2],[-5,-7],[-35,-44],[-29,-61],[-1,-2],[-23,-50],[-13,-28],[-20,-8],[-3,-1],[-4,-2],[-18,13],[-11,7],[-37,29],[-31,21],[-24,73],[-9,73],[-18,68],[-27,21],[-12,-47],[15,-68],[-3,-71],[-34,-31],[-34,7],[-16,65],[15,70],[6,59],[-17,42],[-33,17],[-36,6],[-34,10],[-72,11],[-30,3],[-23,-1],[-40,-5],[-37,-13],[-34,-17],[-27,-20],[-20,-57],[-6,-68],[-5,-152],[-6,-122],[-4,-69],[-9,-73],[-15,-75],[-16,-54],[-26,-64],[-45,-89],[-30,-49],[-39,-49],[-50,-45],[-69,-16],[-57,-2],[-41,2],[-40,-5],[-41,-14],[-52,-24]],[[83208,19432],[-53,-36],[-13,-9],[-13,-9],[-45,-168],[-54,-127],[14,-131],[-49,-115],[-78,83],[-49,-43],[-44,11],[-49,60],[-28,86],[-28,56],[-43,38],[-15,11],[-43,32],[-10,8],[-51,-6],[-21,-24],[-21,-25],[-43,-97],[-39,-22],[-58,-37],[-87,-17],[-58,4],[-2,0],[-41,-6],[-65,-4],[-36,-13],[-39,-18],[-29,-84],[-30,-82],[-19,-166],[-44,-164],[-73,-34],[-64,8],[-42,5],[-59,-7],[-55,-35],[-33,-50],[-33,-56],[-62,-60],[-45,-3],[-1,74],[0,31],[39,24],[-13,125],[5,21],[23,92],[-28,119],[-44,81],[-35,65],[-63,111],[3,-138],[-37,-71],[-18,-33],[-32,-22],[-41,-29],[-53,-51],[79,-144],[-7,-55],[-10,-86],[-38,-112],[-94,-64],[-54,-57],[3,-62],[3,-76],[33,-135],[21,-98],[17,-102],[30,-113],[52,-117],[-71,15],[-70,24],[-38,-116],[-54,40],[-3,1],[-49,31],[-53,132],[-42,151],[-4,15],[-31,136],[-36,166],[-12,96],[-5,43],[-5,18],[-29,104],[-19,138],[-11,173],[-15,122],[-6,100],[-26,121],[-42,134],[-44,99],[-49,91],[-25,52],[-50,70],[82,121],[63,112],[49,37],[51,182],[25,157],[25,133],[22,102],[40,157],[29,132],[-8,111],[-47,127],[-85,128],[23,88],[52,86],[22,153],[22,64],[39,78],[31,84],[27,95],[29,101],[45,119],[39,94],[32,113],[30,170],[58,269],[33,175],[48,208],[49,161],[65,-40],[59,-46],[21,21],[80,82],[10,140],[-57,86],[7,59],[10,85],[4,53],[6,69],[31,85],[12,32],[19,55],[34,94],[52,74],[19,28],[51,102],[46,56],[39,30],[56,91],[45,178],[28,124],[7,26],[28,111],[7,120],[5,92],[37,62],[7,24],[38,128],[-79,100],[-2,3],[-21,56],[-31,85],[-21,104],[-13,62],[-19,20],[-9,10],[-48,50],[-4,24],[-11,68],[-6,2],[-67,21],[-17,80],[-3,16],[41,99],[8,21],[39,46],[10,13],[22,15],[14,9],[14,9],[37,3],[2,1],[10,-1],[33,-4],[6,0],[67,-19],[103,-36],[16,-81],[9,-45],[2,-12],[1,1],[1,2],[52,77],[43,23],[21,47],[12,28],[4,10],[31,59],[13,23],[12,23],[4,7],[19,36],[47,90],[2,145],[57,-88],[-4,52],[-5,66],[-7,92],[-66,38],[-43,26],[-16,77],[-9,38],[-39,50],[-18,98],[-29,88],[-18,54],[-28,32],[-35,39],[-25,26],[-17,17],[-12,17],[-41,55],[0,73],[-1,38],[41,143],[31,139],[15,117],[19,131],[5,30],[19,104],[-14,223],[47,31],[11,7],[18,-3],[47,-9],[48,2],[8,1],[40,-27],[42,4],[55,-7],[17,-2],[3,164]],[[85303,35710],[0,-4],[2,-56],[10,-337],[1,-9],[2,-77],[8,-271],[3,-86],[6,-161],[2,-68],[0,-1],[0,-1],[3,-68],[2,-62],[0,-19],[2,-32],[1,-51],[3,-69],[1,-46],[1,-95],[2,-58],[4,-56],[2,-61],[0,-15],[2,-95],[3,-60],[3,-91],[2,-81],[2,-61],[0,-13],[2,-27],[0,-22],[3,-171],[2,-105],[3,-106],[4,-113],[3,-84],[0,-9],[5,-140],[4,-125],[12,-347],[2,-66],[3,-134],[3,-98],[2,-58],[2,-73],[3,-65],[10,-291],[19,-514],[10,-271],[4,-118],[7,-203],[11,-321],[39,-6],[6,-1],[3,0],[88,-16],[207,-17],[102,-9],[74,-8],[111,-9],[0,5],[26,-6],[22,-3],[11,-8],[1,0],[109,-6],[165,-8],[25,-2],[26,-2],[52,-5],[350,-34],[34,-2],[24,-1],[34,-2],[28,-1],[38,-3],[21,-2],[42,-3],[41,-3],[43,-5],[24,-1],[36,-3],[45,-4],[39,-2],[24,-1],[23,-1],[119,-12],[79,-5],[41,-2],[29,-2],[49,-3],[34,-2],[48,-4],[23,-2],[10,-3],[18,-4],[16,-1],[13,0],[39,-3],[48,-4],[13,-1],[24,0],[20,0],[1,-1],[45,-4],[10,0],[36,-2],[8,0],[7,0],[16,0],[40,-1],[46,-4],[29,-2],[39,-3],[27,-3],[42,-4],[27,-3],[1,0],[11,-1],[14,-1],[12,-1],[42,-3],[9,-1],[2,0],[6,0],[15,-1],[14,-1],[9,0],[2,-1],[1,0],[4,0],[2,0],[2,0],[4,-1],[27,-1],[36,-1],[5,-1],[12,0],[3,-1],[4,0],[135,-8],[100,-4],[36,-3],[36,-2],[44,-2],[42,-3],[11,-1],[46,-3],[102,-6],[34,-2],[16,-1],[41,-3],[79,-5],[136,-9],[44,-2],[51,-3],[8,-1],[25,-1],[94,-5],[27,-1],[29,-1],[39,-2],[19,0],[37,-1],[67,-4],[28,-1],[29,-2],[41,-2],[17,0],[25,-2],[18,-1],[17,0],[20,-1],[19,-1],[24,-1],[20,-1],[10,-1],[51,-2],[24,-2],[8,0],[29,-1],[24,-1],[22,-1],[6,0],[1,-1],[9,0],[4,0],[48,-2],[5,-1],[14,0],[2,0],[18,-1],[8,-1],[14,-1],[12,0],[18,-1],[19,-1],[5,0],[31,-2],[8,0],[28,-2],[23,-1],[12,0],[33,-2],[34,-2],[33,-1],[15,-1],[25,-2],[23,-1],[24,-1],[19,-1],[2,0],[26,-2],[27,-1],[14,0],[27,-2],[24,-1],[15,0],[2,0],[12,-1],[7,-1],[44,-2],[16,0],[12,-1],[11,0],[19,-1],[18,-1],[9,0],[3,-1],[6,0],[14,0],[11,-1],[55,-3],[150,-7],[37,-2],[52,-2],[30,-3],[6,0],[38,-4],[10,-2],[20,-2],[5,3],[1,0],[6,2],[11,0],[44,-2],[52,-2],[19,1],[1,1],[1,0],[8,-1],[24,-2],[1,0],[69,-5],[2,-1],[19,-13],[13,2],[24,3],[42,3],[150,-6],[27,-2],[141,-6],[17,0],[224,-1],[60,0],[24,0],[24,0],[35,0],[55,0],[26,0],[64,0],[63,1],[23,0],[30,0],[204,-1],[7,-2],[9,-4],[8,-3],[6,-3],[24,4],[37,5],[82,-3],[31,0],[77,-1],[71,-1],[0,-1]],[[67802,11366],[74,-68],[65,57],[53,-121],[-22,-179],[40,-134],[19,-64],[27,-88],[31,-151],[-89,-86],[-35,-113],[-55,3],[-46,37],[-10,80],[-41,158],[-35,163],[-40,230],[-33,192],[-68,122],[-50,90],[-51,133],[-16,55],[-40,142],[69,-50],[50,-93],[33,-53],[32,-82],[44,-52],[52,-58],[42,-70]],[[61835,16244],[-55,-14],[-45,171],[-9,111],[12,100],[35,-129],[51,-98],[11,-141]],[[60730,17706],[-48,-14],[-58,89],[-32,98],[74,25],[86,-27],[-22,-171]],[[67696,22446],[49,91],[78,-10],[40,-12],[2,-1],[-17,-144],[-30,-137],[-37,14],[-18,91],[-12,57],[-55,51]],[[67696,22446],[-26,-161],[65,-64],[11,-154],[49,-37],[60,-72],[62,-110],[50,-63],[37,-166],[64,-172],[-2,-141],[84,-176],[20,-103],[59,-96],[68,11],[39,-32],[35,-106],[89,68],[58,3],[95,-45],[70,17],[63,22],[88,-7],[41,45],[32,67],[37,85],[50,129],[37,158],[21,179],[39,8],[61,7],[56,0],[148,-49],[48,-29],[21,195],[99,62],[52,52],[49,-60],[96,-19],[48,-39],[221,-205],[62,-113],[74,-91],[17,-124],[-54,-136],[-77,-114],[-41,-89],[-41,-142],[-55,-41],[-59,-101],[-32,-114],[-53,-176],[-41,-137],[-45,-194],[-20,-153],[-24,-155],[-7,-147],[-15,-129],[-23,-200],[36,-215],[24,-219],[21,-147],[13,-198],[42,-162],[19,-127],[26,-138],[16,-135],[18,-199],[16,-143],[26,-132],[22,-163],[23,-162],[37,-212],[62,-203],[60,-153],[53,-111],[55,-132],[33,-96],[28,-104],[75,-213],[70,-168],[91,-241],[30,-110],[21,-115],[26,-167],[29,-129],[40,-128],[53,-144],[48,-101],[47,-115],[55,-167],[39,-88],[88,-154],[38,-105],[40,-116],[76,-169],[42,-106],[9,-152],[49,-64],[5,-109],[47,-145],[19,-159],[49,-47],[21,-114],[0,-178],[67,-106],[-64,-166],[-114,-154],[-20,-112],[-59,-207],[-54,-121],[-28,-77],[-31,-73],[-39,-80],[0,130],[41,167],[-5,165],[22,110],[-34,97],[-34,-103],[-4,-82],[-59,-72],[-77,-21],[-17,187],[51,146],[13,94],[-47,-6],[-43,51],[-17,133],[-24,102],[29,132],[-36,183],[-48,86],[1,152],[-51,-40],[2,-144],[28,-113],[15,-117],[8,-81],[-33,-113],[-52,-41],[-24,-116],[78,-18],[47,-123],[-50,-61],[27,-90],[-18,-163],[-52,94],[-53,86],[-4,-150],[-4,-130],[-57,-38],[27,-101],[52,9],[36,-109],[-66,-52],[25,-68],[-25,-114],[-40,-100],[-25,-124],[85,19],[58,72],[25,141],[45,69],[63,79],[41,-89],[92,-10],[30,-134],[9,-131],[39,-123],[61,-151],[38,-156],[38,-175],[12,-163],[28,-178],[-22,-258],[25,-118],[-5,-154],[-6,-277],[23,-119],[2,-137],[7,-117],[0,-89],[11,-93],[-3,-147],[-42,45],[-56,32],[-61,38],[23,-142],[57,-51],[50,-176],[68,-7],[1,-143],[77,-278],[34,-179],[34,-207],[4,-128],[1,-180],[-22,-251],[-7,34],[-43,207],[-42,192],[-12,178],[-74,61],[-83,84],[-65,48],[-115,-55],[-80,28],[-66,16],[-67,-41],[-42,102],[-68,68],[-40,51],[-39,51],[-36,76],[-35,110],[-47,186],[-42,190],[-25,223],[-19,111],[-52,172],[-11,171],[25,146],[-22,136],[-65,-113],[-83,137],[-45,93],[-41,135],[-50,76],[-55,68],[-98,54],[12,214],[-29,259],[-38,59],[-57,19],[-57,37],[-45,18],[-73,57],[-50,44],[-13,131],[0,2],[52,145],[66,156],[61,3],[57,-95],[-5,136],[-9,113],[57,19],[5,119],[60,61],[-70,73],[-41,122],[52,80],[-26,62],[-36,2],[9,101],[12,110],[-32,162],[4,124],[-69,68],[3,-159],[13,-155],[10,-147],[-22,-155],[17,-137],[-3,-114],[-6,-152],[-62,-46],[-70,-46],[-33,60],[0,198],[-69,41],[11,157],[-46,5],[-19,107],[23,147],[-55,20],[-17,173],[22,102],[-22,178],[-49,-206],[4,-180],[17,-176],[-61,-13],[31,-100],[44,-66],[-53,-38],[-29,-52],[34,-141],[72,62],[3,-161],[56,-79],[-51,-137],[-48,-138],[22,-90],[-29,-127],[38,-111],[-61,-114],[-103,66],[-28,198],[-49,156],[-33,80],[-34,93],[-32,86],[-6,98],[30,93],[-19,107],[-15,128],[-7,125],[-69,84],[-48,165],[-51,181],[-8,138],[53,93],[-4,205],[19,151],[-45,103],[-83,107],[35,108],[39,79],[55,87],[47,10],[46,74],[54,101],[8,-100],[41,-82],[89,18],[-37,80],[-50,45],[7,222],[58,62],[59,66],[69,30],[55,20],[-19,182],[24,109],[-62,-64],[-84,-67],[-70,-3],[-52,136],[-16,-161],[-5,-112],[-34,-125],[-50,29],[7,-148],[-83,-24],[-55,-9],[-40,68],[2,108],[-48,168],[-43,179],[52,229],[61,91],[66,77],[28,110],[-19,164],[15,95],[-34,158],[-38,111],[53,32],[66,25],[28,118],[46,98],[-43,167],[-45,104],[-88,125],[-54,-39],[-43,0],[-63,-43],[-73,-109],[6,104],[-19,122],[16,220],[-26,171],[-46,49],[-73,51],[-61,119],[-32,85],[-70,4],[-70,-51],[-58,79],[-50,170],[55,161],[-56,17],[-83,-98],[-68,79],[-61,17],[-44,-3],[4,-21],[16,-87],[17,-128],[64,-62],[-24,-133],[39,-100],[54,-60],[44,-56],[64,-136],[76,-31],[19,-138],[61,-24],[70,9],[11,-84],[49,-119],[-45,-216],[-5,-95],[50,-50],[81,-61],[74,-62],[70,41],[48,3],[-35,-131],[-10,-166],[-57,-115],[-29,-136],[-49,-52],[-60,-95],[18,-109],[3,-104],[-51,-66],[-77,-65],[-82,-65],[35,-170],[23,-101],[63,-120],[47,-72],[39,-101],[38,-97],[-66,-78],[-41,-30],[-55,-39],[-34,13],[-23,-95],[-45,-40],[-52,-26],[-51,-19],[-64,-3],[31,164],[-41,202],[-71,127],[-60,136],[-34,91],[0,-187],[17,-141],[37,-39],[45,-33],[-7,-122],[31,-135],[-11,-224],[43,-116],[58,-10],[51,-150],[-9,-152],[23,-95],[39,-67],[48,-64],[-11,-167],[-11,-126],[-7,-101],[-38,-153],[-63,24],[6,141],[2,89],[1,119],[-20,163],[-52,60],[-55,30],[-38,100],[-49,-91],[10,-128],[37,-132],[-53,0],[-100,131],[-54,31],[-49,30],[-71,32],[-28,103],[-47,44],[-45,-37],[-16,145],[32,95],[44,25],[51,43],[53,16],[57,-27],[39,59],[-44,198],[-65,-84],[-89,33],[-58,-55],[-54,95],[-67,-21],[17,149],[-9,179],[-39,50],[-48,-14],[8,-98],[-43,-40],[-32,210],[-64,41],[-77,138],[42,152],[-57,-3],[-60,-45],[-17,159],[-77,-70],[21,-178],[-45,-101],[67,-29],[35,-53],[35,-108],[51,-60],[46,-40],[26,-159],[-61,25],[-5,-115],[54,-123],[52,32],[49,-122],[41,-100],[-29,-137],[46,-177],[6,-25],[-73,50],[-41,29],[-45,31],[-60,21],[-49,7],[-68,-14],[-66,-28],[-78,-7],[-69,-171],[-38,-79],[-39,-58],[-6,133],[-15,119],[-25,76],[-38,2],[-5,152],[-26,226],[-47,74],[-52,125],[-35,136],[-16,138],[-26,138],[-17,125],[-22,89],[-28,211],[-18,239],[-17,205],[10,113],[56,13],[39,-79],[44,-29],[55,-57],[51,-119],[-60,-31],[37,-112],[60,31],[40,121],[-27,142],[-52,29],[19,204],[78,6],[66,34],[61,28],[54,-10],[66,93],[-78,23],[-54,64],[28,183],[-49,-47],[-61,-123],[-49,-78],[-36,17],[-50,49],[-55,-3],[13,-94],[-51,5],[-27,121],[-11,173],[-49,-57],[-51,-63],[-48,89],[-29,79],[-21,-143],[-32,60],[-48,151],[-42,152],[-63,71],[-49,178],[-50,29],[-39,75],[-45,73],[-66,170],[-49,61],[-80,104],[-86,69],[-48,69],[-70,132],[-45,68],[-37,66],[-19,114],[-47,101],[-60,-17],[-42,67],[-97,7],[-48,20],[-47,19],[-40,24],[-42,27],[-66,47],[-84,72],[-59,50],[-70,44],[-47,43],[-41,19],[-42,114],[-69,-43],[-53,60],[-38,1],[-37,-36],[-65,-5],[-45,-9],[-35,60],[-96,-60],[-39,-32],[-67,34],[-62,43],[-37,46],[-50,58],[-46,54],[-98,151],[-61,47],[-20,81],[-11,157],[-28,-137],[-46,-33],[-91,26],[-36,59],[-53,-26],[-38,-54],[-77,41],[-58,-87],[-18,188],[3,221],[75,161],[49,72],[43,66],[90,127],[39,-29],[46,-88],[47,-72],[63,31],[127,84],[93,49],[59,-2],[60,69],[46,136],[25,114],[17,154],[14,164],[7,122],[69,-63],[51,112],[28,164],[53,2],[136,-1],[45,166],[-4,145],[-6,123],[47,129],[43,93],[52,64],[6,120],[-39,143],[-52,62],[-64,-34],[-28,102],[-70,48],[-80,-15],[-60,80],[-58,15],[-78,58],[-42,118],[-31,107],[-39,59],[-33,-146],[-1,-216],[53,-77],[32,-82],[64,-73],[86,-43],[39,118],[11,-182],[81,-28],[58,-49],[44,-67],[-52,-121],[-37,-156],[-93,-66],[-40,-61],[-15,-123],[-72,-33],[-59,43],[-50,-13],[-39,-61],[-33,-87],[3,-138],[-63,-38],[-39,-57],[-54,-40],[-37,-86],[-41,-79],[-60,37],[-67,8],[-69,-27],[-49,62],[-76,67],[-45,-94],[-60,12],[-49,10],[-35,23],[-39,34],[-34,76],[-42,-67],[-65,-54],[-80,-90],[58,-142],[-27,-153],[-39,-146],[-35,-71],[-11,-100],[57,14],[0,-101],[-19,-125],[21,-135],[-54,-130],[-39,-109],[-43,-157],[-52,-1],[-99,-29],[-54,-39],[-51,17],[-67,33],[-2,156],[-17,145],[-51,85],[65,13],[41,33],[44,71],[32,138],[42,87],[108,74],[25,127],[38,90],[-22,213],[-19,120],[52,68],[49,125],[7,105],[-29,123],[-2,168],[-55,60],[-77,84],[5,151],[39,219],[-48,184],[49,99],[47,101],[-13,101],[-14,78],[-26,56],[29,100],[-16,157],[-77,23],[-60,41],[-37,77],[37,169],[-68,69],[-4,97],[-30,108],[-18,139],[-42,97],[-44,46],[-26,128],[-88,25],[-55,41],[1,-51],[1,-71],[50,-74],[13,-123],[16,-99],[58,-91],[-15,-100],[17,-137],[-16,-131],[-29,-120],[-74,-11],[-43,26],[-42,-1],[-39,-52],[-50,-23],[-9,-91],[59,16],[57,27],[55,-49],[69,-29],[48,4],[44,-80],[49,-126],[29,-133],[-7,-172],[20,-143],[-41,-108],[-30,-84],[37,-125],[28,-108],[-28,-112],[49,-70],[42,-55],[37,-104],[-37,-62],[-54,-148],[-68,-115],[29,-112],[-27,-113],[-42,-111],[-60,-12],[-53,54],[-32,150],[45,28],[16,83],[-19,113],[-67,-46],[-66,-32],[4,152],[-86,4],[-56,14],[15,-196],[1,-144],[49,38],[42,-41],[46,-55],[-18,-159],[-41,-163],[88,41],[-23,-146],[-7,-125],[-55,-160],[-33,-188],[-43,-138],[-95,-90],[-46,-62],[-76,65],[-57,60],[-75,-13],[-66,33],[-25,185],[-41,-61],[-24,-146],[69,-95],[62,-73],[61,52],[37,-77],[59,-9],[72,-44],[3,-149],[-16,-112],[-59,-78],[-81,-161],[-72,-33],[-48,27],[-53,46],[-50,52],[-37,45],[-30,97],[-64,3],[-83,-73],[-39,45],[-75,-48],[-74,77],[-8,201],[47,152],[61,132],[-32,128],[-32,153],[-52,181],[-80,8],[-47,85],[-2,190],[-55,74],[-31,75],[-42,-84],[-73,-28],[-88,-28],[-50,-2],[-48,44],[-57,150],[4,181],[-7,230],[-11,185],[-31,156],[-20,120],[52,113],[28,72],[40,130],[20,219],[-17,184],[-60,68],[-51,102],[-78,119],[-59,17],[11,150],[-28,100],[-36,115],[-64,96],[-31,194],[-40,19],[-60,106],[23,164],[26,155],[-28,124],[-53,128],[-45,114],[49,130],[-64,49],[-43,84],[37,68],[-52,195],[-18,138],[-10,203],[-41,183],[-57,119],[-79,69],[112,178],[44,54],[36,35],[88,-3],[3,198],[39,127],[28,87],[37,76],[41,46],[40,-115],[78,154],[63,37],[39,-2],[48,33],[41,129],[24,130],[-27,-6],[-55,-12],[-99,29],[-44,37],[-49,-18],[-64,-20],[-57,-36],[-56,42],[-50,-43],[-44,-58],[-43,-140],[-25,-95],[-75,-16],[-1,131],[34,145],[30,138],[5,110],[-56,172],[-69,185],[-68,136],[-57,133],[-66,74],[-51,99],[-64,77],[-44,102],[-43,137],[-28,121],[-63,41],[-63,19],[-52,34],[-74,68],[14,188]],[[62822,32190],[48,-122],[71,3],[47,-87],[54,18],[56,-133],[56,103],[60,93],[71,41],[52,-40],[56,-67],[38,-44],[34,-55],[-35,-57],[-67,-66],[-12,-170],[-19,-103],[-37,27],[-39,-52],[-49,-67],[-54,16],[-33,-15],[-62,-97],[36,-22],[59,-36],[84,-60],[57,-2],[79,24],[38,90],[80,32],[58,-137],[44,-154],[21,-126],[44,-209],[22,-189],[-61,-97],[-61,91],[-58,58],[-48,33],[36,-155],[-36,-90],[35,-185],[35,77],[72,-45],[31,-106],[-41,-178],[-80,-35],[-65,-66],[-64,-58],[-82,-101],[-42,-52],[49,-55],[36,13],[60,76],[54,34],[56,69],[48,79],[52,-51],[48,120],[38,100],[57,-30],[43,-91],[4,-110],[-53,-23],[12,-113],[53,-22],[72,-28],[44,-5],[46,-25],[60,-126],[-32,-199],[16,-294],[80,-82],[40,-122],[23,-75],[35,32],[82,-78],[55,-132],[34,-129],[28,-119],[55,-38],[45,-53],[53,-65],[62,-84],[29,-145],[58,-139],[48,-43],[78,-69],[57,-101],[48,8],[34,-84],[38,-77],[47,-93],[40,-102],[72,-41],[48,-129],[41,-66],[81,-122],[39,-89],[25,-123],[45,-47],[44,47],[58,-40],[46,-48],[63,-92],[62,-66],[64,-49],[56,-21],[51,-39],[94,-23],[60,10],[47,-8],[40,-22],[34,-28],[39,-72],[46,-16],[34,-60],[56,-44],[55,-40],[62,-13],[73,-90],[-34,-185],[67,0],[50,-132],[72,-22],[41,-62],[32,-129],[60,-80],[62,-94],[48,-79],[14,-123],[33,-84],[45,-54],[93,-9],[71,-30],[44,-56],[48,-92],[32,-83],[-21,-89],[38,-137],[-16,-135],[27,-141],[41,-155],[-1,-138],[-62,-21],[-43,99],[-13,146],[-31,51],[-40,72],[-37,153],[-42,-61],[-42,59],[-18,124],[-50,-27],[-45,26],[-5,-143],[-59,-94],[44,-36],[46,-3],[27,-58],[35,43],[34,15],[34,-65],[73,-127],[-38,-179],[26,-147],[-51,-59],[33,-140],[-31,-177],[62,-100],[55,-14],[29,103],[53,46],[-31,234],[32,57],[48,-73],[35,-117],[46,-37],[58,-87],[17,-116],[-64,-72],[-25,-122],[11,-133],[-16,-114],[45,-62],[56,-94],[51,68],[66,-4],[59,-75]],[[95549,7102],[-53,-98],[-54,63],[22,62],[37,88],[78,88],[69,86],[-6,-143],[-49,-109],[-44,-37]],[[93615,7190],[19,-175],[3,-32],[1,-144],[-51,20],[-39,119],[-18,56],[-72,-61],[-69,24],[-51,7],[-18,-62],[-22,-78],[-42,-115],[-43,-63],[-58,62],[-24,6],[-47,13],[20,154],[69,11],[57,97],[50,68],[46,45],[34,135],[-9,64],[-11,74],[26,192],[52,24],[51,-60],[15,-18],[20,-22],[99,-112],[12,-229]],[[93747,7541],[-19,-34],[-52,3],[25,131],[12,86],[7,43],[36,90],[33,99],[36,-14],[13,-134],[-36,-167],[-55,-103]],[[95569,8357],[13,-69],[-51,13],[-42,-135],[29,-124],[9,-61],[9,-60],[-18,-56],[-31,-94],[-4,211],[-41,-29],[-41,45],[-25,99],[2,132],[47,45],[4,5],[19,18],[43,41],[65,85],[13,-66]],[[93660,8796],[28,-96],[-37,7],[-9,2],[-49,47],[-75,111],[-71,12],[-54,59],[58,54],[-1,141],[39,9],[10,3],[66,30],[54,-60],[24,-121],[34,-125],[-17,-73]],[[98111,18068],[-23,-121],[-33,-167],[-28,-142],[-26,-121],[-26,-135],[-27,-142],[-41,-214],[-32,-166],[-25,-134],[-44,-244],[-31,-180],[-54,-313],[-30,-194],[-30,-175],[-30,-162],[-27,-164],[-26,-154],[-30,-196],[-24,-154],[-32,-207],[-25,-156],[-22,-159],[-27,-195],[-36,-230],[-24,-162],[-23,-159],[-31,-211],[-29,-202],[-19,-153],[-14,-101],[-23,-151],[-23,-145],[-18,-140],[-19,-136],[-12,-91],[-18,-139],[-24,-168],[-22,-160],[-14,-125],[-30,-120],[-44,-246],[-43,-240],[-36,-188],[-29,-146],[-30,-136],[-44,-198],[-30,-139],[-32,-146],[-46,-195],[-43,-168],[-45,-172],[-39,-148],[-52,-190],[-28,-95],[-37,-143],[-38,-133],[-35,-128],[-71,-259],[-40,-145],[-36,-126],[-43,-152],[-48,-160],[-45,-154],[-30,-102],[-37,-128],[-47,-150],[-44,-139],[-40,-131],[-41,-126],[-36,-122],[-29,-95],[-52,-179],[-39,-129],[-49,-149],[-124,-37],[-21,-6],[-28,-8],[-16,-3],[-38,-8],[-1,0],[-92,-20],[-101,-22],[20,33],[49,77],[-18,140],[84,53],[54,145],[-8,126],[38,75],[30,-213],[31,-67],[35,23],[56,-16],[-1,96],[32,60],[0,108],[15,168],[72,143],[-51,48],[66,124],[-23,120],[-16,124],[-44,122],[19,112],[-12,56],[-12,60],[-25,-57],[-12,17],[-29,40],[-8,127],[14,59],[13,55],[31,34],[34,38],[27,207],[35,-30],[79,-102],[27,-86],[19,-95],[44,60],[19,25],[78,48],[80,15],[-35,122],[-50,28],[-18,11],[16,78],[12,58],[42,229],[14,-45],[20,-69],[18,23],[26,33],[19,29],[26,41],[0,1],[-42,124],[44,25],[45,-59],[43,15],[-3,131],[20,160],[58,82],[-92,101],[-55,83],[-20,29],[-55,121],[-17,28],[-60,95],[34,82],[69,33],[69,-68],[5,5],[56,53],[94,103],[-68,105],[-3,100],[40,8],[-27,96],[43,53],[-25,91],[10,4],[39,17],[22,106],[59,51],[67,-28],[-48,120],[72,90],[70,106],[9,168],[59,86],[54,145],[-74,117],[58,79],[-15,97],[-3,18],[25,74],[55,6],[-19,75],[55,30],[-20,129],[18,101],[7,43],[-33,132],[-4,12],[65,134],[-17,8],[-62,28],[11,106],[2,17],[8,-11],[27,-37],[54,60],[-48,95],[-7,25],[-22,77],[87,90],[-56,114],[3,141],[63,102],[66,-19],[-1,34],[-3,58],[-67,102],[-8,114],[23,53],[18,42],[-33,162],[81,69],[-11,20],[-40,72],[1,71],[1,66],[50,-29],[67,67],[-25,148],[-4,4],[-32,32],[-33,62],[-49,-41],[-30,25],[-32,29],[18,117],[43,0],[38,18],[-4,49],[-7,85],[41,76],[12,23],[2,-97],[2,-77],[22,-76],[13,-43],[108,13],[-18,67],[-9,32],[55,36],[-53,116],[27,147],[84,79],[5,5],[46,13],[8,128],[43,42],[46,151],[23,82],[28,133],[31,132],[-36,130],[-34,105],[-53,-14],[44,117],[-45,151],[43,23],[48,-119],[62,42],[54,83],[-68,120],[-49,172],[62,34],[-6,134],[66,49],[72,-22],[40,56],[-57,69],[59,109],[19,104],[1,106],[43,2],[9,114],[23,182],[78,87],[-57,93],[12,102],[-6,116],[42,169],[49,-31],[10,156],[-12,139],[-2,79],[0,6],[63,-10],[25,-71],[27,91],[53,64],[13,100],[43,55],[-20,112],[47,59],[8,170],[44,160],[24,159],[53,144],[23,109],[12,134],[36,395],[40,52],[22,84],[16,167],[-16,171],[-10,152],[96,197],[42,51],[27,51],[24,135],[-18,218],[23,158],[47,100],[-13,158],[7,154],[33,119],[18,132],[46,64],[54,79],[16,223],[79,165],[46,156],[80,85],[100,-104],[-78,-63],[-49,-125],[-37,-134],[-42,-125],[-46,-151],[-45,-202],[-35,-153],[-25,-131],[-24,-107],[-20,-118],[-32,-177],[-37,-217],[-21,-159],[-18,-98],[-14,-93],[-26,-155],[-23,-127],[-34,-201],[-28,-177],[-23,-111],[-24,-102],[-26,-130],[-33,-201],[-27,-154],[-22,-164],[-27,-170],[-25,-163],[-33,-188],[-31,-162],[-26,-128],[-18,-92]],[[98702,26786],[40,-115],[45,-48],[63,-82],[19,-101],[-13,-123],[-13,-41],[-13,-36],[-73,-30],[-50,0],[-45,-15],[-61,7],[-49,60],[0,11],[5,156],[-27,162],[43,29],[18,100],[59,10],[52,56]],[[99752,26549],[-15,-155],[-12,-144],[-19,-160],[-33,-215],[-30,-205],[-18,-135],[-13,-110],[-13,-100],[-15,-181],[-14,-125],[-15,-125],[-17,-134],[-17,-140],[-22,-138],[-23,-145],[-31,-208],[-22,-98],[-24,-139],[-25,-134],[-35,-196],[-26,-116],[-30,-134],[-22,-121],[-28,-219],[-22,-211],[-31,-106],[-61,29],[-45,57],[0,163],[15,153],[2,11],[22,108],[20,116],[29,113],[32,127],[29,179],[-51,56],[34,100],[8,151],[-1,94],[51,-45],[56,81],[12,179],[-58,98],[-66,58],[0,167],[-16,127],[97,-22],[55,-66],[61,17],[34,158],[-19,120],[6,94],[49,119],[18,182],[19,88],[-3,201],[18,178],[17,112],[-31,70],[-25,57],[0,185],[10,143],[52,33],[41,-23],[33,138],[-15,218],[41,90],[26,118],[-10,157],[-48,53],[-84,122],[-37,51],[50,123],[69,94],[63,55],[-28,100],[43,204],[-19,40],[-93,134],[-20,235],[78,39],[24,117],[28,16],[0,184],[-45,61],[-58,33],[-44,140],[0,124],[49,91],[13,53],[-1,74],[-29,38],[-45,16],[-40,88],[35,79],[14,70],[-2,76],[44,7],[39,6],[22,-4],[41,-6],[12,-1],[29,0],[204,-1],[69,0],[-4,-214],[-4,-182],[-7,-117],[-9,-131],[-8,-133],[-11,-132],[-9,-122],[-13,-182],[-10,-161],[-11,-151],[-9,-128],[-14,-162],[-17,-196],[-12,-170],[-15,-192],[-26,-225],[-30,-204],[-19,-165],[-19,-139]],[[98702,26786],[-60,85],[-4,13],[-6,22],[-7,26],[-8,32],[-16,61],[-7,-34],[-5,-29],[-12,-59],[-35,-41],[-20,-23],[-71,17],[-39,85],[-18,37],[-19,-31],[-36,-57],[-24,-13],[-29,-15],[-7,34],[-8,36],[-3,16],[-12,58],[-12,60],[-60,34],[-14,79],[-14,77],[-67,-95],[-8,4],[-42,27],[-7,4],[-68,52],[-9,4],[-49,24],[-57,7],[-49,27],[-57,-7],[-82,83],[-61,82],[-46,78],[-72,24],[-84,51],[-65,-27],[-43,9],[-55,23],[-33,79],[-48,-58],[-47,-16],[-72,-27],[-69,31],[48,-126],[54,-8],[18,-113],[-60,-16],[-49,-42],[-40,-104],[18,-20],[56,-60],[56,-79],[49,-29],[70,12],[65,43],[55,64],[104,78],[103,-78],[68,-116],[68,-55],[55,-61],[65,-63],[1,-118],[54,39],[37,61],[31,-149],[46,-10],[38,1],[21,-71],[24,-125],[63,-109],[77,13],[28,-60],[30,-87],[1,-17],[4,-84],[25,-94],[-79,-148],[11,-94],[34,-72],[28,-78],[66,-33],[-73,-93],[-81,-57],[-89,-18],[44,-134],[-61,-2],[-72,84],[-58,-149],[58,-27],[80,-85],[75,25],[51,35],[69,77],[-10,-122],[4,-105],[-37,-179],[-54,-87],[-30,-120],[-50,-49],[-36,-105],[-30,-139],[73,2],[57,-90],[-15,-85],[44,-121],[11,-213],[15,-147],[36,-51],[52,53],[-42,217],[-1,177],[-28,139],[-18,132],[-4,108],[45,91],[31,94],[16,-95],[50,116],[62,63],[62,158],[6,-241],[51,-110],[38,-127],[-2,-133],[51,6],[51,-63],[30,-110],[48,-2],[61,34],[-18,126],[57,25],[44,-7],[37,-104],[41,-106],[16,-80],[-20,-111],[40,-36],[-29,-134],[-48,-114],[-26,-120],[-47,-41],[37,-127],[31,-162],[5,-31],[-10,-116],[55,-100],[-28,-96],[-62,-39],[-72,-18],[23,-100],[-43,-107],[-53,-99],[-76,-86],[-17,-90],[-18,-94],[-10,-129],[-58,-160],[9,-120],[-27,-171],[-38,-113],[-26,-128],[-48,-60],[-73,-92],[-50,-32],[-33,-98],[-58,-83],[-15,-143],[-28,-92],[-33,-113],[-91,-55],[-34,-106],[-49,-142],[21,-179],[52,-125],[4,-120],[-47,-131],[-23,-145],[-64,-117],[-27,-151],[-44,-20],[-34,-62],[-44,-91],[-40,-77],[-31,-175],[-6,-162],[6,-146],[8,-115],[5,-172],[0,-28],[-66,-18],[-62,-93],[-46,-191],[-46,-46],[-37,-81],[-19,-126],[-67,-38],[-45,-65],[-19,-159],[-54,-37],[-17,145],[-77,-24],[-40,-12],[-41,-47],[-54,-51],[-47,-52],[-49,-92],[-47,14],[-28,-184],[-12,-153],[-5,-147],[4,-172],[12,-136],[18,-160],[-37,-144],[-24,-78],[-17,81],[-37,112],[-37,90],[-56,-1],[-34,45],[5,178],[2,156],[3,88],[54,150],[29,191],[17,97],[-17,101],[2,27],[5,64],[15,124],[-76,37],[-18,9],[-56,-52],[-71,5],[39,87],[81,188],[44,187],[41,0],[42,149],[-57,72],[11,41],[14,49],[12,42],[47,27],[27,40],[13,20],[1,-1],[44,-82],[31,70],[-17,72],[-3,15],[-20,85],[-14,67],[-9,41],[-1,0],[-39,-7],[-15,-4],[-38,32],[-8,6],[-47,-18],[-6,-3],[-40,-73],[-5,-9],[15,-121],[-59,-44],[-33,-82],[-6,-9],[-37,-65],[-34,-92],[-65,-44],[-37,3],[-73,-62],[-50,20],[-80,-52],[-44,-67],[-79,-123],[-36,-137],[-15,-151],[-69,-95],[-58,-8],[-38,-27],[-15,-10],[-24,31],[-19,24],[-7,-3],[-46,-29],[-57,-71],[-53,-90],[-78,-36],[97,-128],[58,-158],[21,-59],[-10,-45],[-9,-42],[-14,-60],[-13,-115],[-3,-32],[-7,-8],[-31,-35],[-57,35],[-38,-79],[-35,-198],[-8,-133],[29,-107],[-3,-101],[-64,-64],[-38,51],[-41,-38],[-26,-24],[-64,-79],[-53,-94],[55,-147],[-4,-134],[-12,-69],[-11,-58],[22,-143],[20,-48],[14,-34],[18,-61],[25,-83],[-37,-85],[-62,-81],[-55,-44],[-13,-164],[4,-24],[15,-92],[-25,-142],[-38,-68],[-35,-62],[-26,-15],[-27,-15],[21,-142],[28,-172],[20,-137],[19,-180],[-60,-120],[-38,-15],[-3,-22],[-14,-96],[-5,-105],[-76,-26],[-16,-41],[-32,-77],[-30,-12],[-8,-3],[-4,-2],[-60,-32],[-1,-1],[-48,-41],[-35,-71],[-11,-22],[-6,-34],[-18,-97],[-4,-20],[-42,-169],[1,-164],[-5,-221],[2,-129],[-20,-103],[-55,-105],[-51,-82],[-17,-171],[-57,-70],[-4,-105],[17,-118],[32,-148],[14,-49],[25,-88],[13,-59],[22,-94],[-2,-75],[-3,-118],[-85,-49],[45,-108],[7,-130],[-28,-143],[-47,-135],[-27,-32],[-25,-29],[-57,22],[-62,-13],[-97,16],[-58,70],[-3,3],[0,41],[-1,71],[65,29],[51,49],[41,46],[16,6],[21,9],[9,58],[11,66],[-5,143],[-43,71],[-18,30],[-95,-154],[-11,-87],[-11,-92],[-47,-61],[-74,10],[34,-178],[-6,-39],[-14,-101],[-16,-134],[-41,-23],[-3,12],[-18,79],[-34,83],[-10,25],[-73,73],[-8,85],[-48,81],[-47,19],[-12,6],[-22,13],[-41,24],[-25,-15],[-28,-16],[11,-108],[1,-92],[0,-39],[-31,-35],[-36,-39],[-37,-49],[-23,-30],[-36,-42],[42,-136],[-48,-110],[9,-102],[1,-38],[2,-91],[32,-146],[14,-110],[-44,17],[-30,105],[-72,-25],[-35,-124],[-37,-23],[-20,-13],[-8,-1],[-29,-6],[-13,-3],[-6,2],[-38,12],[-68,20],[-82,21],[4,-18],[12,-51],[10,-38],[26,-91],[-20,-184],[-35,37],[-5,4],[-32,-29],[-26,-25],[-29,-32],[-29,-33],[-9,-113],[46,-69],[13,-21],[0,-98],[-5,-8],[-38,-66],[62,-76],[51,23],[64,-47],[33,-177],[43,-69],[35,-87],[-1,-74],[-2,-143],[-57,-166],[-16,-151],[-21,-86],[-17,-70],[-64,-164],[-33,-146],[-3,-26],[-9,-79],[-3,-154],[-4,-193],[50,-105],[9,-18],[51,-65],[-39,-114],[-65,-35],[-19,183],[-40,107],[-15,17],[-46,50],[-67,29],[-6,3],[-10,-15],[-48,-66],[-21,-25],[-45,-53],[-16,-19],[-18,-21],[-56,-63],[-4,-156],[11,-105],[-27,-126],[-18,-98],[10,-60],[17,-101],[49,-63],[20,-121],[-8,-72],[-42,-10],[-23,-5],[-28,-6],[-28,-6],[-40,-9],[-96,-21],[-14,-3],[-59,-14],[-8,-1],[-72,-16],[-38,-25],[-23,10],[-547,-107],[-55,-12],[-2,0],[-3,-1],[-29,-5],[-23,-5],[-20,-1],[-12,0],[-29,-4],[-27,-6],[-30,-7],[-24,-5],[-30,-6],[-23,-9],[-34,-6],[-1,-1],[-25,-3],[-24,-3],[-37,-6],[-166,-33],[-186,-37],[-45,-10],[-38,-8],[-135,-29],[-56,-10],[-96,-21],[-124,-26],[-77,-17],[-73,-17],[-43,-9],[-1,-1],[-11,-2],[-33,-6],[-66,-13],[-58,-12],[-98,-19],[-49,-11],[-14,-3],[-37,-7],[-95,-21],[-38,-8],[-117,-24],[-43,-8],[-45,-9],[-59,-13],[-45,-9],[-143,-30],[-124,-34],[-57,-15],[-11,-4],[-2,0],[-25,-6],[-37,1],[-3,0],[-60,-10],[-14,-2],[-10,-3],[-20,-4],[-42,-10],[-47,-10],[-53,-11],[-1,-1],[-101,-20],[-51,-7],[-89,-20],[-12,-3],[-6,-2],[-46,-10],[-28,-6],[-23,-6],[-44,-8],[-32,-5],[-70,-15],[-140,-32],[-7,-1],[-1,-1],[-19,-4],[-4,0],[-83,-18],[-45,-9],[-87,-19],[-53,-11],[-34,-7],[-3,0],[-25,-5],[-32,-7],[-23,-4],[-5,-1],[-1,-1],[-1,0],[-16,-4],[-27,-6],[-2,0],[-6,-2],[-53,-12],[-74,-17],[-35,-8],[-1,-1],[-4,-1],[-5,0],[-37,-5],[-11,-2],[-39,-5],[-71,-18],[-83,-20],[-1,3],[-17,32],[-15,29],[-15,29]],[[87078,4488],[25,79],[23,134],[7,102],[18,194],[-4,91],[-42,73],[-45,33],[-24,-23],[-41,-58],[-38,-20],[-30,41],[-30,95],[-19,101],[-4,69],[15,108],[6,70],[-14,93],[-25,66],[-17,48],[-37,87],[-15,25],[-28,47],[-24,21],[-29,1],[-23,-18],[-31,-63],[-24,-58],[-34,-17],[-36,27],[-20,62],[-12,93],[-21,106],[-21,55],[-31,23],[-32,23],[-33,43],[-38,69],[-24,50],[-21,52],[-15,49],[-18,70],[-15,68],[-15,96],[-16,101],[-9,59],[-18,113],[1,67],[11,96],[8,72],[7,54],[17,82],[21,53],[23,61],[17,54],[19,72],[25,32],[36,7],[32,-17],[34,-12],[24,-13],[19,-42],[2,-58],[-6,-106],[24,-88],[43,-47],[59,-32],[101,-36],[34,26],[24,71],[8,97],[-25,92],[-2,73],[34,54],[34,29],[49,35],[20,10],[31,16],[26,6],[56,-8],[31,25],[45,42],[45,76],[30,100],[20,112],[22,104],[23,104],[6,62],[-10,52],[-17,50],[-24,88],[-10,96],[9,95],[22,59],[51,57],[69,49],[70,38],[58,-4],[47,-69],[31,-101],[29,-105],[49,-66],[60,-18],[62,-38],[113,-22],[59,-1],[61,4],[51,13],[65,43],[88,137],[4,7],[39,92],[30,99],[9,81],[-2,68],[-7,53],[-2,14],[-17,120],[-2,114],[17,107],[43,90],[52,57],[60,27],[60,5],[47,-62],[37,-86],[47,-42],[69,-8],[58,25],[57,34],[54,48],[52,63],[59,88],[-21,24],[-9,56],[-21,30],[-22,22],[11,51],[14,50],[-9,53],[20,34],[29,34],[19,31],[-29,43],[-25,2],[-24,-12],[-23,-2],[-23,32],[10,67],[0,57],[28,9],[23,-9],[24,17],[19,51],[20,32],[-24,27],[-24,2],[-22,19],[-23,22],[16,49],[5,66],[-6,64],[24,29],[26,-17],[25,-4],[16,46],[-6,66],[-25,28],[-23,25],[-26,-6],[-16,-53],[-23,-10],[-27,-5],[-22,-5],[-24,35],[16,45],[20,28],[13,52],[-9,56],[-17,41],[-24,-8],[-25,-12],[-12,63],[21,27],[11,54],[-25,17],[-22,3],[-23,17],[-3,60],[-1,58],[1,70],[-6,62],[-10,53],[-17,51],[-19,51],[-16,49],[-22,33],[-25,10],[-21,31],[-13,47],[-15,50],[-20,33],[-20,37],[-25,9],[-14,55],[-24,15],[-22,28],[-17,43],[-21,36],[-16,46],[-22,25],[-54,-52],[-23,-9],[-17,36],[-16,57],[-5,59],[-28,92],[-14,64],[-5,58],[-6,108],[-23,16],[-7,57],[10,52],[1,59],[-11,50],[13,49],[17,41],[18,58],[19,30],[12,50],[10,47],[0,3],[8,57],[15,51],[20,25],[19,39],[10,53],[20,36],[27,11],[24,20],[23,34],[17,41],[22,15],[25,-4],[18,50],[1,63],[24,12],[25,17],[22,20],[25,22],[25,56],[24,52],[22,27],[27,23],[28,18],[24,-6],[22,16],[-9,55],[10,74],[11,60],[16,84],[22,55],[14,44],[-1,60],[8,57],[-11,54],[-17,46],[0,63],[4,56],[24,23],[8,63],[2,60],[-2,64],[-1,55],[-14,46],[-17,40],[-23,27],[-14,44],[-5,63],[7,60],[-16,69],[-20,40],[-37,10],[-23,30],[-39,57],[-27,51],[-19,55],[-14,47],[-8,71],[-9,76],[-19,113],[-12,55],[-22,96],[-52,154],[-49,113],[-49,94],[-35,49],[-56,44],[-40,54],[-30,69],[-14,50],[-7,55],[2,57],[3,62],[-4,65],[-8,59],[-8,54],[0,57],[-7,66],[-27,74],[-35,24],[-31,17],[-32,19],[-24,16],[-21,20],[-29,33],[-27,35],[-14,49],[-16,58],[-16,45],[-16,42],[-19,35],[-15,49],[-7,60],[-4,57],[-6,80],[-13,48],[-20,50],[-17,43],[-19,44],[-18,40],[-23,59],[-17,54],[-14,63],[-12,53],[-17,70],[-15,52],[-23,53],[-20,46],[-19,44],[-15,40],[-18,63],[-15,53],[-14,44],[-6,54],[8,66],[8,66],[8,62],[5,59],[-4,58],[1,73],[2,86],[0,62],[-19,63],[-19,44],[-21,47],[-21,66],[-18,61],[-21,70],[-14,56],[-4,60],[3,69],[5,75],[4,61],[1,66],[-10,57],[-10,55],[-17,79],[-21,48],[-6,91]],[[93423,29693],[9,-1],[100,0],[6,0],[6,0],[65,-1],[35,-1],[73,-1],[44,0],[57,-1],[50,-1],[52,-1],[53,-1],[576,-10],[12,-1],[150,-1],[144,-2],[56,0],[34,-1],[131,-1],[9,0],[96,-1],[51,0],[27,-2],[25,-1],[131,-5],[47,-2],[26,-1],[69,0],[160,-1],[57,-1],[31,0],[33,-1],[27,0],[1,0],[27,-1],[97,-1],[3,0],[35,-1],[4,0],[32,-1],[115,1],[11,0],[23,-1],[68,-1],[45,-1],[25,0],[40,0],[26,0],[37,-1],[40,-1],[31,0],[209,-2],[31,-1],[56,-1],[112,12],[48,-1],[41,1],[25,-1],[27,0],[33,0],[48,0],[46,0],[68,0],[43,0],[93,0],[67,-1],[49,0],[48,0],[47,-1],[33,-1],[28,0],[55,0],[26,0],[45,0],[49,-1],[30,0],[30,0],[111,2],[51,1],[37,0],[90,1],[25,0],[79,0],[47,1],[34,1],[123,0],[45,0],[102,0],[27,0],[170,0],[14,1],[61,0],[110,0],[42,0],[77,0],[23,0],[-33,-89],[-4,-10],[-20,-52],[31,-189],[-129,-422],[-139,-185],[-136,114],[-113,49],[-111,134],[-17,98],[-36,60],[-14,23],[-61,119],[-79,75],[-43,26],[-60,98],[-71,-42],[32,-100],[44,-33],[51,-90],[44,-63],[31,-101],[35,-86],[43,-66],[26,-151],[29,-241],[37,-3],[27,-2],[61,-128],[-54,-160],[-4,-70],[-4,-82],[76,-33],[-11,-36],[-26,-92],[12,-10],[42,-35],[4,-65],[4,-68],[20,-128],[6,-29],[24,-114],[57,-18],[22,-102],[60,-46],[40,-144],[4,-8],[34,-71],[48,-59],[-60,-98],[-16,-13],[-23,-18],[-25,-22],[-53,-58],[-72,107],[-2,-30],[-6,-111]],[[81318,99],[-51,-99],[-36,80],[-49,6],[-1,162],[30,50],[8,14],[35,-94],[64,-119]],[[77716,2197],[4,-48],[-81,1],[-88,-20],[-4,25],[-6,40],[-10,93],[-4,41],[2,103],[0,39],[2,168],[9,39],[16,75],[22,-35],[35,-59],[32,-111],[39,-103],[12,-32],[18,-197],[2,-19]],[[78400,3601],[-7,-177],[-16,4],[-54,16],[56,-126],[16,13],[36,29],[39,-67],[28,-73],[35,-75],[13,-70],[8,-47],[20,-37],[19,-36],[65,-105],[58,-85],[4,-109],[1,-35],[76,-26],[-29,-72],[-31,-117],[-33,-154],[6,-88],[-14,-44],[-23,1],[-25,0],[-38,0],[-17,-1],[-21,3],[-22,2],[-40,3],[-6,0],[-58,0],[1,102],[35,85],[47,6],[-7,172],[0,153],[-32,58],[-35,96],[-6,15],[-2,-124],[-69,39],[-77,-38],[22,-102],[11,-56],[-49,14],[-49,96],[-65,121],[-96,-40],[-57,37],[2,48],[5,75],[63,109],[19,127],[5,133]],[[78112,3254],[52,127],[8,165],[10,199],[-10,153],[28,148],[68,54],[23,-127],[48,-193],[21,-84],[40,-95]],[[78112,3254],[-108,-42],[-67,-127],[-34,32],[-41,38],[-25,-184],[30,-103],[24,-147],[2,-90],[1,-78],[48,-109],[55,-65],[44,-71],[14,-67],[19,-102],[-38,-5],[-9,-1],[-7,0],[-23,1],[-21,0],[-24,0],[-9,-1],[-4,1],[-25,3],[5,137],[-28,163],[-41,140],[-29,106],[-62,7],[-32,83],[-22,180],[48,37],[7,6],[-70,131],[-42,-32],[-35,150],[-58,-196],[-33,102],[-16,124],[-3,88],[-1,41],[22,114],[-26,139],[-30,141],[-7,86],[-3,46],[-5,77],[-5,77],[23,69],[27,78],[2,27],[7,109],[-17,134],[48,60],[53,0],[8,0],[11,-52],[21,-90],[41,49],[16,2],[37,5],[67,35],[58,-27],[-27,92],[-26,136],[50,-26],[39,-30],[9,-7],[32,-71],[18,-86],[3,-14],[25,-25],[25,-25],[18,-50],[41,-114],[15,-85],[15,-91],[-21,-108],[-83,217],[-15,-140],[31,-116],[42,-171],[11,-75],[29,-181],[27,-125],[4,-134]],[[77527,5741],[50,-178],[23,-53],[15,-34],[48,-113],[25,-181],[-56,2],[-66,-9],[-34,82],[-8,26],[-24,79],[-5,77],[-3,60],[5,65],[3,29],[27,148]],[[78400,3601],[9,192],[56,153],[4,149],[3,84],[15,208],[1,7],[-65,37],[-32,-150],[-22,92],[-42,91],[14,29],[22,48],[-13,161],[-1,148],[-14,73],[-14,68],[-49,81],[-66,91],[-46,65],[-13,58],[-13,53],[-50,15],[2,90],[-79,111],[-21,24],[-38,42],[-48,22],[-20,10],[-30,-65],[-44,-95],[-51,127],[-2,161],[-62,14],[-19,4],[-45,46],[-20,18],[-24,20],[-9,-23],[-47,-119]],[[77527,5741],[3,91],[5,116],[50,99],[-15,39],[-17,46],[34,88],[11,30],[14,56],[29,112],[46,37],[49,12],[2,1],[7,-3],[53,-23],[55,29],[30,28],[39,37],[30,144],[27,-60],[35,34],[21,22],[8,27],[24,85],[73,30],[61,-8],[85,58],[52,-73],[-72,-40],[8,-25],[24,-79],[-56,-9],[-10,-2],[-58,29],[-9,-131],[39,-95],[13,-152],[14,-10],[45,-30],[20,-29],[33,-45],[42,-70],[17,-204],[27,93],[3,10],[11,6],[84,46],[-23,-165],[20,-87],[3,-14],[42,-178],[101,3],[47,131],[-1,113],[0,8],[38,-6],[10,-1],[-11,39],[-19,68],[49,50],[38,-61],[15,-8],[41,-22],[-31,-175],[10,-103],[5,-49],[38,-101],[18,-48],[36,-140],[11,-68],[6,-36],[17,-120],[27,-128],[-23,-21],[-24,-22],[-15,-32],[-20,-41],[-58,51],[-66,157],[-68,62],[-7,-129],[45,-88],[8,-14],[9,-49],[23,-122],[39,-58],[34,63],[12,-55],[18,-81],[12,-45],[19,-72],[7,-67],[3,-26],[15,-32],[13,-28],[6,-24],[16,-63],[-55,-5],[-4,-46],[-4,-64],[-47,72],[-50,32],[-59,-127],[-18,-20],[-44,-48],[-19,-152],[28,-97],[5,-17],[12,-199],[-37,-170],[-26,-192],[-80,-49],[-51,117],[4,53],[4,66],[-24,141],[-63,85],[-7,9],[-63,-12]],[[81839,8540],[-40,-68],[-41,-29],[-43,-141],[13,-40],[17,-53],[-40,-49],[-41,49],[-46,58],[-66,-19],[-21,166],[-1,4],[-41,95],[7,78],[3,38],[-8,47],[-22,114],[-71,118],[-40,19],[-31,14],[24,81],[29,99],[28,1],[11,0],[30,18],[36,24],[51,-34],[19,-143],[34,-96],[33,-61],[16,-29],[15,-13],[49,-43],[9,-154],[43,23],[38,-56],[47,-18]],[[77858,11184],[-7,-165],[5,-41],[8,-70],[71,-103],[86,-195],[87,-111],[92,-64],[30,-92],[44,-170],[45,-101],[12,-26],[15,-46],[14,-46],[10,-97],[3,-29],[21,-78],[-11,-128],[1,-151],[-4,-74],[-2,-36],[-3,-22],[-9,-73],[12,-21],[33,-54],[6,-150],[-55,62],[-17,-98],[-4,-24],[-5,-64],[-9,-115],[-51,-133],[-19,21],[-38,41],[29,86],[-36,166],[-9,114],[-46,102],[-31,-59],[-52,72],[-28,174],[-51,-33],[-14,-9],[-41,36],[-13,-4],[-40,-10],[-67,3],[-14,0],[-20,-178],[59,-81],[56,-107],[-39,-86],[-40,38],[-61,42],[-41,82],[-73,111],[-53,95],[-68,140],[-32,62],[-15,29],[-69,124],[-60,56],[-42,73],[11,37],[11,35],[19,27],[22,31],[56,-56],[35,-117],[55,76],[38,-90],[15,-110],[43,42],[43,41],[37,-149],[48,32],[48,-69],[49,76],[15,23],[22,60],[22,57],[-9,123],[-77,114],[24,113],[16,151],[-40,118],[-36,110],[-9,-34],[-27,-101],[-44,8],[-31,32],[-13,13],[-19,53],[-20,59],[-27,59],[-26,56],[-54,84],[57,51],[65,31],[40,70],[11,19],[-16,114],[-6,39],[-10,74],[-12,81],[32,59],[38,71],[26,14],[21,12],[45,99],[11,-45],[13,-54],[27,-89],[11,-35]],[[79923,11665],[64,-71],[15,-174],[21,-107],[22,-115],[-3,-26],[-3,-37],[-34,-19],[-8,-75],[-7,-59],[-47,-53],[-35,212],[-15,96],[-4,-4],[-19,-22],[0,-3],[14,-142],[0,-31],[3,-123],[-45,27],[-22,125],[-35,129],[-18,64],[38,185],[0,2],[0,1],[57,184],[8,-13],[53,49]],[[77858,11184],[32,95],[17,51],[60,80],[64,85],[5,62],[3,46],[46,86],[-34,162],[53,11],[1,133],[55,-35],[71,-30],[40,-97],[7,-39],[11,-67],[2,-163],[-60,-192],[-10,231],[-20,-39],[-35,-71],[-11,-40],[-32,-118],[32,-183],[-5,-3],[-49,-35],[-3,-125],[0,-25],[-27,-153],[-50,38],[-28,52],[-7,12],[-22,83],[-53,33],[-53,155]],[[81839,8540],[0,90],[0,74],[-70,55],[-23,152],[36,100],[20,54],[-57,50],[-2,3],[-25,-30],[-33,-38],[-44,112],[-16,145],[-11,86],[-2,25],[-11,122],[-62,114],[82,15],[1,0],[13,-17],[47,-64],[-18,-130],[63,26],[84,14],[-33,94],[-53,72],[18,133],[-30,27],[-28,27],[-18,55],[-10,31],[73,142],[49,99],[25,162],[21,136],[47,68],[49,66],[67,53],[49,86],[54,82],[31,-83],[-21,-111],[13,-139],[-24,-73],[-9,-28],[-68,-6],[-57,-41],[-10,-149],[15,6],[32,13],[16,-125],[30,-152],[19,-60],[21,-64],[24,-155],[3,16],[10,61],[17,107],[-2,63],[-5,125],[-1,161],[69,-95],[73,-65],[41,47],[34,102],[-83,60],[-66,148],[29,126],[62,114],[-60,111],[56,153],[-33,25],[-11,8],[9,142],[44,150],[-53,6],[1,133],[0,54],[-3,74],[-5,135],[54,53],[60,24],[22,110],[40,130],[7,11],[50,96],[27,-111],[42,-129],[14,-94],[8,-51],[63,-57],[16,-55],[13,-46],[14,179],[12,62],[17,84],[10,129],[41,81],[63,90],[66,34],[-11,-65],[-14,-90],[42,-206],[8,-62],[23,-161],[124,132],[30,86],[49,142],[17,66],[49,185],[45,-7],[29,-156],[1,-6],[58,-33],[40,-23],[47,-37],[6,17],[13,35],[45,127],[19,-14],[70,-52],[83,-55],[45,32],[30,43],[19,-93],[34,70],[40,36],[30,83],[14,37],[8,36],[29,129],[-22,-23],[-23,-26],[-66,-70],[-50,-15],[-86,2],[-56,92],[-74,9],[-67,26],[-44,-51],[-32,36],[6,132],[-7,143],[-13,124],[70,140],[60,179],[55,122],[65,-33],[60,85],[72,154],[56,-45],[39,-20],[57,-54],[51,-90],[41,-51],[55,29],[3,9],[10,43],[20,85],[4,17],[-68,25],[-24,41],[-28,48],[-87,105],[-49,123],[-59,-14],[-70,-70],[-65,12],[-55,32],[-23,81],[-29,-128],[-24,-136],[-37,-2],[-40,29],[-51,29],[-52,-17],[-16,-179],[-59,-106],[-30,-115],[-57,-68],[-43,-104],[11,-107],[18,-120],[-36,-92],[-86,-22],[-51,-27],[-68,-60],[-61,117],[-65,76],[-58,29],[39,99],[32,72],[43,52],[-10,111],[-22,124],[32,183],[13,136],[-20,124],[-55,85],[6,-196],[-11,-223],[-25,-144],[-18,-52],[-23,-68],[-17,-48],[-53,-51],[-1,-1],[-46,49],[-68,-34],[-46,1],[-44,115],[-52,36],[-56,83],[28,110],[-15,100],[-66,10],[-3,0],[1,-157],[-2,-110],[0,-26],[-38,-155],[-47,-111],[-19,-82],[-48,-21],[-81,0],[-66,57],[26,178],[1,92],[1,115],[-30,127],[-40,156],[-1,177],[-1,84],[-1,88],[-37,183],[-36,136],[-25,-95],[17,-107],[9,-60],[-16,-130],[-10,-85],[19,-179],[8,-160],[43,-112],[-24,-84],[15,-22],[21,-31],[-9,-151],[-21,-153],[-5,-187],[-67,-43],[-1,-1],[-70,-21],[-44,67],[-17,-18],[-33,-34],[-9,3],[-44,17],[-37,71],[-39,-3],[-29,-102],[26,-136],[3,-15],[72,-141],[-42,-39],[-8,3],[-36,10],[-31,71],[-65,8],[-66,28],[-2,1],[-18,56],[24,56],[74,-3],[-11,166],[-20,103],[-6,32],[-8,40],[-11,57],[-63,17],[-16,92],[-29,16],[-42,-21],[-20,37],[-20,36],[12,48],[11,45],[29,20],[13,9],[3,2],[8,6],[-10,70],[-1,14],[-27,0],[-2,0],[-28,0],[-46,-75],[-12,-25],[-14,-30],[11,-97],[8,-77],[-41,11],[-128,35],[-53,-60],[-57,-62],[-63,-120],[-53,-64],[-11,-116],[-14,-101],[-3,-23],[-36,-7],[1,59],[1,81],[-3,216],[-1,121],[66,140],[0,61],[0,73],[-53,-3],[-46,-81],[-14,-37],[-42,-110],[-91,30],[2,-46],[6,-134],[-23,43],[-36,67],[-21,25],[-50,60],[-45,128],[-4,-2],[-53,-17],[-45,-29],[-43,-29],[-20,-10],[-37,-19],[-14,117],[-5,39],[-2,16],[-2,0],[-4,2],[-58,24],[0,-1],[10,-76],[3,-16],[3,-111],[30,-104],[68,-88],[18,-152],[17,-63],[3,-11],[10,-9],[33,-30],[41,-58],[20,-44],[11,-26],[25,-40],[22,-36],[23,-116],[2,-148],[-72,-51],[-26,-90],[-40,-159],[-57,-28],[-54,-10],[-24,77],[-8,26],[53,90],[49,91],[-69,36],[-49,-8],[-11,3],[-35,11],[-12,3],[-38,7],[-7,1],[-17,2],[-35,4],[-9,6],[-39,26],[-42,-23],[-33,-27],[-37,-30],[4,-194],[-44,-33],[-70,101],[-62,121],[-29,159],[-54,90],[18,142],[6,42],[6,41],[12,77],[49,185],[39,95],[7,120],[5,86],[-11,159],[17,163],[12,153],[25,146],[42,205],[55,247],[-37,167],[-47,160],[-22,104],[55,154],[73,179],[44,92],[30,62],[45,88],[43,49],[63,48],[126,15],[104,9],[5,-176],[11,3],[58,16],[-7,171],[58,62],[103,110],[11,13],[32,34],[24,31],[50,67],[75,93],[55,31],[49,52],[68,37],[15,4],[26,7],[29,7],[25,23],[19,16],[7,7],[32,33],[4,4],[46,51],[83,16],[48,-182],[-19,-91],[-4,-16],[41,-127],[16,-139],[4,-64],[3,-67],[11,-238],[33,148],[1,0],[42,-7],[-16,199],[2,101],[1,38],[-7,38],[-10,58],[-33,124],[16,-5],[32,-9],[66,-10],[76,30],[39,-41],[60,90],[40,-86],[38,-26],[13,-9],[11,121],[46,107],[38,73],[41,55],[8,8],[44,40],[17,16],[104,136],[4,6],[66,95],[44,32],[64,50],[70,134],[31,111],[36,94],[54,-32],[38,96],[20,-12],[24,-14],[22,-72],[21,-91],[48,29],[53,179],[38,116],[39,59],[18,71],[16,61],[27,106],[1,160],[-15,61],[-20,74],[-38,55],[-20,30],[-62,90],[-11,17],[-41,-33],[-2,-2],[18,-108],[61,-103],[-57,-44],[-27,7],[-46,12],[-52,31],[-64,30],[-49,-5],[-59,64],[-57,-48],[-43,8],[-41,-43],[-9,-10],[-48,-93],[-5,-9],[-51,-94],[-50,47],[-19,37],[-26,52],[-46,-12],[-29,-5],[-17,-3],[-2,15],[-7,76],[2,57],[4,87],[42,28],[2,2],[36,104],[72,32],[40,47],[25,54],[2,2],[33,128],[31,30],[37,36],[43,71],[36,55],[95,122],[59,120],[34,58],[35,-12],[59,15],[59,55],[28,84],[53,21],[41,-41],[99,32],[74,24],[58,-71],[56,39],[77,35],[75,27],[21,63],[28,78],[57,135],[62,227],[5,144],[4,99]],[[87078,4488],[-26,-29],[-16,-18],[-15,-69],[-13,-65],[-19,-139],[-5,-33],[-55,-64],[-76,-71],[-8,-14],[-55,-99],[3,-107],[14,-123],[36,-120],[-62,40],[-54,7],[-82,-112],[-52,-88],[-27,-135],[2,-132],[-21,-71],[-50,-64],[-38,-61],[-60,-90],[-46,-99],[-32,-104],[-32,-176],[9,-176],[36,-151],[-62,92],[-37,139],[-41,186],[-80,71],[-73,125],[-44,81],[-57,53],[-23,43],[-25,46],[-33,-20],[-13,-7],[-13,-7],[-50,-25],[-52,-5],[-47,10],[-14,3],[-53,-17],[-33,-16],[-22,-10],[-44,47],[-51,67],[-83,97],[-34,77],[-44,16],[-21,7],[-40,39],[-50,48],[-102,106],[-46,49],[-29,90],[-10,30],[28,184],[3,31],[10,105],[42,52],[41,37],[4,3],[80,25],[-11,13],[-36,43],[-18,22],[-29,0],[-46,0],[-63,27],[-48,-21],[-50,-103],[-34,-25],[-25,-18],[-44,-67],[-1,-69],[-1,-83],[30,-119],[-3,-40],[-6,-93],[1,-167],[-6,-136],[-32,-78],[-29,-56],[-26,-59],[-17,-23],[-19,-26],[-61,48],[-56,-140],[-48,-100],[-11,-8],[-30,-20],[-15,64],[-9,40],[-19,128],[3,80],[3,66],[23,148],[-15,34],[-28,60],[58,100],[22,147],[-18,43],[-22,51],[7,66],[5,47],[-62,75],[-52,36],[-55,136],[-92,64],[15,-147],[3,-43],[8,-94],[15,-33],[14,-32],[22,-93],[-3,-87],[-54,-54],[-69,-56],[-43,-21],[-41,-30],[44,-111],[37,-57],[20,-30],[24,-34],[14,-19],[25,-18],[28,-21],[-18,-28],[-34,-50],[-98,9],[-53,30],[-47,26],[-81,33],[-3,1],[-40,13],[-55,11],[-49,16],[-51,11],[-73,38],[-52,63],[-26,17],[-20,14],[-50,6],[-22,-115],[-41,48],[-45,-114],[-33,-75],[-67,-84],[-54,-175],[-69,13],[-2,-78],[-1,-61],[-32,-40],[-15,-19],[-43,-100],[-5,-10],[-33,-68],[-35,11],[-32,-158],[-37,-2],[-9,-1],[-9,-1],[-32,-5],[-63,8],[-48,110],[-33,82],[12,38],[25,79],[1,137],[-11,150],[-2,39],[-69,26],[-7,-9],[-37,-50],[-57,-41],[-17,-108],[-27,-103],[-40,-79],[-11,-134],[-16,-97],[-27,-88],[-21,-129],[0,-1],[26,-109],[3,-41],[3,-46],[29,-62],[17,-36],[39,-18],[13,-6],[33,-84],[-10,-13],[-68,-100],[40,-58],[14,-21],[0,-66],[0,-79],[-53,80],[-12,-32],[-25,-74],[-90,-55],[-23,6],[-53,13],[-73,-2],[48,-120],[20,-80],[6,-22],[-27,-155],[-18,28],[-40,66],[-51,-115],[-45,-61],[-4,-49],[-6,-71],[-58,-17],[-27,84],[-6,17],[-19,-101],[-29,-103],[-34,-38],[-14,-16],[3,198],[-6,96],[-3,64],[60,63],[11,12],[25,8],[70,22],[23,95],[-107,41],[-6,14],[-28,57],[-46,86],[-81,-28],[-9,-102],[-5,-60],[-40,68],[-24,40],[22,131],[-2,4],[-46,129],[44,35],[12,10],[-51,145],[-13,10],[-34,29],[-45,10],[26,-86],[22,-78],[0,-93],[0,-19],[1,-102],[0,-40],[-34,-41],[-30,-36],[-24,0],[-18,0],[-51,1],[-80,67],[-46,-125],[-7,-19],[-12,-7],[-46,-30],[33,-41],[37,-46],[7,7],[54,67],[30,-31],[21,-21],[37,-26],[13,-9],[44,-73],[53,61],[47,-63],[55,-58],[-10,-83],[-11,-90],[4,-89],[2,-67],[-1,-94],[0,-27],[-5,-4],[-47,-27],[-45,30],[-41,-87],[-65,15],[-12,131],[-34,32],[-10,-103],[-10,-113],[10,-39],[18,-69],[-71,54],[-37,-96],[-55,66],[-74,43],[-43,84],[47,79],[-70,44],[-54,-47],[-2,50],[-3,72],[-79,71],[-38,0],[-35,-34],[-6,-5],[-45,-73],[-48,-51],[-27,-13],[-14,-8],[-24,158],[50,7],[23,121],[61,63],[-35,100],[1,115],[2,96],[13,160],[-38,84],[4,18],[20,90],[32,77],[7,126],[2,32],[-2,70],[-2,126],[28,217],[46,-114],[80,-145],[40,-165],[-76,26],[-4,-66],[-2,-34],[-24,-104],[81,-52],[53,58],[51,30],[19,93],[8,42],[-40,131],[-4,95],[8,4],[55,24],[64,-20],[52,-17],[72,-145],[-2,215],[83,-2],[75,39],[-25,57],[-25,55],[58,-23],[-3,131],[45,75],[38,-18],[8,-3],[17,2],[64,7],[46,-3],[-26,161],[19,27],[27,37],[0,3],[11,117],[42,50],[31,71],[-69,9],[-40,5],[-46,-77],[-39,-125],[-54,39],[-33,-60],[-10,-17],[-44,32],[-20,-27],[-22,-31],[-24,120],[-17,97],[-13,53],[-6,25],[1,20],[4,72],[51,114],[8,17],[22,133],[9,125],[-28,130],[38,69],[-45,30],[-8,5],[-5,117],[48,-7],[50,56],[-30,82],[1,86],[57,-2],[43,22],[-10,251],[26,234],[57,1],[40,-53],[21,171],[18,113],[-70,-51],[3,98],[8,100],[-7,108],[-33,-44],[-20,-27],[-35,-172],[-35,131],[-63,0],[-1,-40],[-4,-96],[1,-11],[9,-85],[-38,-36],[-49,122],[-37,134],[-40,-30],[-47,-136],[-3,-28],[-6,-59],[-6,-18],[-20,-61],[41,-120],[47,-90],[-48,-51],[-50,-74],[26,-111],[4,-14],[4,-29],[24,-180],[-13,-106],[31,-36],[24,-29],[-19,-33],[-26,-45],[-46,-40],[-29,-27],[-73,-41],[-35,-202],[-65,-12],[-16,72],[-12,54],[-48,-14],[-37,46],[-30,38],[-6,176],[-24,73],[-2,8],[-7,-17],[-25,-69],[-41,-110],[-32,26],[-31,-149],[-58,34],[-3,84],[40,115],[38,158],[64,180],[27,111],[40,169],[19,168],[3,25],[31,176],[53,55],[28,152],[4,22],[8,142],[26,110],[33,114],[49,142],[40,118],[30,144],[31,109],[22,-122],[48,-131],[12,-34],[24,85],[49,-38],[25,-29],[10,-12],[47,-16],[-42,158],[-66,81],[-21,80],[59,69],[19,23],[-4,25],[-19,100],[-38,27],[-15,10],[41,215],[-38,91],[-23,117],[53,-57],[36,-41],[16,68],[9,40],[-12,109],[-12,119],[-62,-5],[-55,-7],[-10,-1],[-53,-67],[9,151],[87,42],[53,91],[77,49],[46,61],[46,-36],[19,21],[17,19],[53,-36],[72,-84],[66,-139],[-34,-172],[-30,-37],[-53,-64],[-27,-84],[61,-104],[17,-213],[85,97],[-6,71],[-4,66],[49,107],[1,-2],[45,-37],[11,-41],[19,-71],[1,-46],[2,-79],[63,100],[4,195],[-25,125],[56,99],[55,6],[32,-103],[48,-100],[46,120],[51,-100],[67,-67],[16,-195],[52,-72],[60,-55],[46,88],[-90,106],[20,169],[-43,26],[-44,83],[-28,111],[63,43],[25,115],[-76,-16],[-69,58],[-61,11],[-10,121],[-5,58],[42,148],[39,83],[29,131],[0,-1],[39,-102],[16,60],[12,41],[45,-46],[45,-138],[40,83],[45,51],[35,47],[37,71],[29,53],[76,78],[26,-144],[-6,-27],[-20,-88],[71,-67],[87,-24],[22,-129],[35,42],[45,99],[40,-1],[46,-46],[48,-58],[42,36],[-58,137],[-71,90],[-23,-15],[-54,-36],[-58,69],[5,121],[2,28],[-85,-10],[31,135],[54,65],[2,2],[44,-5],[49,63],[54,31],[8,5],[44,46],[57,-35],[16,45],[22,65],[-36,78],[-48,45],[38,129],[34,20],[36,20],[49,45],[11,-5],[35,-16],[26,138],[9,110],[13,131],[7,23],[30,96],[39,29],[48,36],[29,70],[21,49],[8,3],[68,27],[10,-80],[45,-2],[7,0],[-11,145],[-3,3],[-44,41],[-30,61],[-74,56],[-46,-30],[-45,70],[-54,-49],[-64,-3],[24,129],[16,103],[4,31],[36,97],[34,128],[48,87],[29,174],[72,-52],[20,-45],[24,-54],[26,-111],[9,-37],[62,-28],[45,-93],[19,9],[73,35],[57,116],[42,27],[89,-82],[-1,4],[-31,158],[-73,56],[-63,-67],[-67,-27],[-46,61],[-27,116],[19,56],[34,98],[-55,-20],[-39,12],[-18,6],[-41,31],[-29,50],[-29,51],[-12,20],[-54,36],[-8,-12],[-51,-79],[-58,-42],[-56,20],[5,-139],[42,-95],[-48,-120],[-23,-55],[-20,-46],[-9,-13],[-44,-63],[-90,-2],[-59,58],[-30,7],[-73,15],[10,-164],[0,-5],[2,0],[51,-5],[6,-1],[39,8],[17,-145],[-9,-69],[-7,-54],[19,-69],[-36,-96],[65,-148],[-78,23],[32,-130],[-34,-74],[-71,123],[-8,-145],[-30,85],[-57,-10],[-82,44],[-60,82],[-5,-29],[-12,-70],[31,-124],[14,-126],[6,-37],[19,-110],[39,-22],[31,-44],[11,-16],[-21,-135],[-60,10],[-43,64],[-15,109],[-15,105],[-39,-59],[-60,-5],[7,-56],[10,-93],[-32,-79],[-20,-48],[-53,159],[-36,66],[-36,103],[0,1],[-2,38],[-5,77],[-56,51],[-21,69],[-21,70],[-104,-72],[-63,-87],[-43,93],[-33,-180],[-59,83],[-79,41],[-25,105],[-76,23],[-71,3],[-2,-8],[-27,-108],[-23,-71],[-11,-33],[-65,52],[-36,-5],[-9,-1]]],"transform":{"scale":[0.000044372265742656594,0.000018079236912370395],"translate":[-79.48664538499986,37.91512351400007]}} diff --git a/src/js/config/mapconfig/mapfiles/county/me-counties.json b/src/js/config/mapconfig/mapfiles/county/me-counties.json new file mode 100644 index 00000000..04f6c202 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/me-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-71.08446388399989,42.98476421400011,-66.94909100299992,47.459830086000125],"geometries":[{"type":"Polygon","properties":{"name":"ME"},"id":"23023","arcs":[[0]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23003","arcs":[[1,2,3,4,5]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23025","arcs":[[6,7,8,9,10,11,-5]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23021","arcs":[[12,-7,-4]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23019","arcs":[[13,14,15,16,-8,-13,-3]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23029","arcs":[[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58,-14,-2,59]]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23007","arcs":[[60,61,62,63,-11]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23017","arcs":[[-63,64,65,66,67,-68,68]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23009","arcs":[[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138,-15,-59]]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23027","arcs":[[[139]],[[140]],[[141]],[[142]],[[143]],[[-17,144,145,146,147,-9]]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23011","arcs":[[148,149,150,151,-61,-10,-148]]},{"type":"Polygon","properties":{"name":"ME"},"id":"23001","arcs":[[152,153,-65,-62,-152]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23013","arcs":[[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207,208,-146]]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23015","arcs":[[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[-147,-209,226,227,228,-149]]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23005","arcs":[[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[-154,258,259,260,261,262,-66]]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23023","arcs":[[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[-261,271]],[[272,273,-228,274]],[[275,-259,-153,-151]]]},{"type":"MultiPolygon","properties":{"name":"ME"},"id":"23031","arcs":[[[276]],[[277,-68,-67,-263]]]}]},"states":{"type":"GeometryCollection","bbox":[-71.08446388399989,42.98476421400011,-66.94909100299992,47.459830086000125],"geometries":[{"type":"MultiPolygon","properties":{"name":"Maine"},"id":"23","arcs":[[[276]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[263]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[264]],[[246]],[[209]],[[265]],[[266]],[[210]],[[247]],[[211]],[[212]],[[248]],[[267]],[[249]],[[250]],[[213]],[[251]],[[252]],[[253]],[[214]],[[254]],[[255]],[[215]],[[256]],[[154]],[[257]],[[268]],[[155]],[[216]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[217]],[[166]],[[218]],[[167]],[[269]],[[168]],[[169]],[[170]],[[219]],[[171]],[[220]],[[172]],[[270]],[[173]],[[221]],[[174]],[[175]],[[176]],[[177]],[[222]],[[178]],[[179]],[[180]],[[223]],[[181]],[[224]],[[182]],[[183]],[[225]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[0]],[[195]],[[196]],[[197]],[[198]],[[69]],[[199]],[[200]],[[70]],[[71]],[[72]],[[73]],[[201]],[[74]],[[75]],[[202]],[[203]],[[204]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[205]],[[85]],[[86]],[[87]],[[206]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[139]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[140]],[[112]],[[141]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[142]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[17]],[[143]],[[18]],[[134]],[[135]],[[19]],[[136]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[137]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[272,273,228,149,275,259,271,261,277,-68,68,63,11,5,59,138,15,144,207,226,274]]]}]}},"arcs":[[[30805,23489],[-91,-7],[-44,12],[0,115],[74,79],[83,120],[72,44],[52,63],[53,97],[8,128],[47,56],[19,110],[23,65],[16,164],[39,89],[44,11],[74,15],[50,-3],[66,-76],[0,-61],[-102,-182],[88,-25],[17,-66],[-55,-49],[-64,-189],[3,-99],[-76,-130],[-4,-7],[-16,-29],[-119,-43],[-6,-89],[-25,-41],[-113,-67],[-113,-5]],[[79267,60244],[-192,-31],[-2,0],[-219,-36],[-30,-5],[-151,-24],[-1,0],[-695,-112],[-123,-20],[-153,-26],[-35,-5],[-27,19],[-94,58],[-80,28],[-101,6],[-124,-4],[-66,4],[-9,4],[-1,1],[-117,71],[-5,11],[-6,7],[-60,27],[-18,4],[57,-156],[3,-8],[-182,-22],[27,-80],[-241,-34],[33,-98],[-418,-63],[-39,-6],[-11,-2],[-246,-36],[-4,0],[-60,-9],[-898,-132],[-379,-56],[-84,-13],[-423,-68],[-349,-54],[-321,-50]],[[73423,59334],[-129,-20],[-74,-12],[-37,-5],[-241,-38],[-1,0],[-35,-5],[-38,-6],[-2,0],[-124,-20],[-86,-13],[-14,-2],[-10,-2],[-288,-44],[-10,-2],[-412,-62],[-303,-46],[-42,-6],[-263,-42],[-22,-4],[-35,-6],[-685,-115],[-44,-9],[-254,-36],[-9,-1],[-66,-10],[-341,-49],[-329,-47],[-72,-10],[-903,-129],[-131,-22],[-98,-16],[2,-6],[62,-171],[-15,-2],[-180,-27],[-140,-20],[-87,-13],[-198,-28],[-160,-22],[-30,-5],[-230,-38],[-9,-1],[-250,-33],[-105,-15],[-29,-4],[-345,-51],[-63,-10],[-224,-32],[-1,0],[-161,-23],[-65,-9],[-84,-12],[-236,-29],[-167,-23],[-79,-9],[-118,-16],[-1,-1],[-28,-4],[-27,-4],[-676,-105],[-15,-3],[-27,-5],[-28,-6],[-157,42],[-78,24],[-33,10],[-39,13],[-53,19],[-125,46],[1,40],[0,106],[-4,410],[-4,376],[-1,85],[10,972],[0,32],[2,211],[8,758],[0,1],[7,745],[8,74],[0,215],[86,0],[-1,47],[-1,72],[0,36],[0,45],[1,62],[1,79],[3,117],[-2,116],[-1,218],[0,1],[2,119],[3,115],[0,3],[5,294],[5,235],[2,129],[8,372],[0,17],[4,182],[7,332],[0,3],[-2,112],[-3,160],[-1,82],[-3,122],[0,20],[0,27],[-1,32],[0,13],[-1,20],[0,7],[-5,306],[-4,187],[-1,57],[-1,53],[0,45],[-2,61],[-2,157],[-2,80],[-82,167],[-3,112],[-1,48],[-5,157],[-1,52],[-3,107],[0,5],[-7,270],[-4,172],[0,5],[-1,8],[0,8],[-1,56],[-15,70],[-1,198],[-1,254],[0,148],[-1,31],[-1,108],[-3,54],[-116,175],[-1,153],[-1,29],[0,2],[0,40],[3,69],[3,81],[1,30],[2,91],[2,83],[-1,43],[0,1],[-1,40],[0,28],[-1,32],[8,307],[2,90],[1,37],[2,78],[4,161],[0,25],[5,209],[1,201],[0,189],[0,85],[0,74],[0,133],[0,26],[1,56],[0,118],[-1,67],[0,3],[0,41],[-1,44],[0,34],[1,62],[0,3],[-2,219],[3,295],[-3,318],[-1,57],[0,18],[1,149],[-6,186],[-2,56],[1,44],[2,220],[1,81],[2,175],[1,35],[2,63],[0,2],[5,201],[1,26],[2,55],[2,83],[-3,249],[0,2],[-2,157],[0,57],[-1,148],[0,11],[0,36],[-4,666],[2,217],[0,2],[1,60],[4,517],[-5,241],[1,61],[2,92],[-61,1],[-333,5],[-98,2],[-179,2],[-78,2],[-503,8],[-274,0],[-179,0],[-4,0],[-198,0],[-883,-1],[-403,-1],[-847,0],[-123,0],[-6,0],[-379,0],[-154,-1],[-891,-4],[-553,-2],[-7,0],[-98,-2],[0,11],[0,164],[0,114],[-146,0],[-86,1],[-10,0],[-41,0],[-424,1],[-567,2],[-6,0],[-40,3],[-157,-4],[-857,6],[-675,2]],[[54774,76220],[-43,0],[0,148],[-1,74],[0,129],[-5,151],[-5,479],[-1,74],[-4,329],[-2,209],[0,1],[9,737],[0,243],[1,169],[1,134],[0,59],[-1,384],[0,110],[1,317],[-13,203],[-137,1],[-322,-4],[-223,3],[-131,2],[-307,-4],[-151,-3],[-255,1],[-453,0],[-455,-2],[-3,0],[-112,0],[-321,-2],[-400,0],[-665,5],[-219,0],[-24,0],[-13,0],[-103,1],[-127,4],[-4,0],[-168,-3],[-522,-2],[-144,-1],[-417,-2],[-520,-1],[-604,3],[-168,1],[-348,3],[-258,-1],[-293,3],[-2,0],[-119,0],[-17,1],[-133,1],[-20,0],[-37,0],[-326,0],[-26,0],[-53,0],[-501,3],[-57,1],[-29,0],[-35,1],[-28,0],[-1089,15],[-141,0],[-371,-1],[-649,-2],[-521,-1],[-87,-1],[-565,-1],[-54,-1],[-24,0],[-30,0],[-38,0],[-81,-1],[-462,-3],[-159,0],[-570,3],[-250,1],[-158,1],[-154,2],[-78,1],[-820,4],[-271,1],[-81,1],[-134,1],[-3,0],[-42,0],[-45,1],[-65,0],[-104,-2],[-9,0],[-79,-5],[-609,6],[-401,0],[-92,0],[-601,-1],[-567,2],[-444,-2],[-7,0],[-302,4],[-55,0],[-874,0],[-1406,0]],[[32969,80201],[-688,6],[-1240,-2],[-365,-1],[-189,0],[-30,0],[-3,0],[-35,0],[-61,0],[-73,0],[-35,0],[-27,0],[-265,0],[-118,0],[-34,0],[-45,0],[-372,-2],[-16,0],[-19,1],[-96,-10],[-68,1],[-19,0],[-22,0],[-65,0],[-177,2],[-93,0],[-35,0],[-15,0],[-500,1],[-317,1],[-465,2],[-246,1],[-552,1],[-146,1],[-303,0],[-570,0]],[[25665,80203],[72,311],[17,76],[2,7],[2,9],[16,68],[37,161],[60,259],[14,62],[29,123],[2,10],[43,188],[66,283],[8,37],[75,321],[67,291],[7,30],[62,266],[8,36],[4,18],[4,19],[10,41],[3,15],[5,17],[3,17],[3,13],[9,39],[1,0],[32,30],[33,31],[90,84],[289,268],[287,267],[290,269],[163,152],[125,116],[288,268],[289,267],[289,268],[183,170],[106,98],[220,204],[8,7],[93,86],[247,229],[188,173],[113,105],[140,129],[148,137],[106,98],[184,170],[290,267],[290,268],[169,156],[7,7],[15,13],[99,92],[79,72],[9,9],[37,34],[26,24],[72,66],[67,62],[290,267],[107,99],[183,168],[120,111],[170,157],[29,26],[262,241],[291,267],[291,268],[168,154],[13,12],[109,101],[292,267],[115,105],[10,10],[7,6],[82,75],[4,4],[70,64],[251,231],[45,40],[307,282],[153,140],[123,113],[288,263],[151,139],[145,131],[289,265],[104,95],[99,91],[91,83],[292,266],[173,158],[119,108],[292,267],[293,267],[238,217],[174,159],[79,71],[74,68],[18,17],[292,265],[22,20],[270,245],[189,172],[104,95],[293,266],[292,266],[133,120],[160,145],[112,102],[182,164],[293,266],[95,86],[197,179],[293,265],[234,212],[64,58],[200,181],[89,81],[166,150],[35,32],[94,84],[238,215],[56,50],[87,79],[206,187],[167,150],[127,115],[295,265],[179,162],[115,104],[212,191],[83,74],[294,265],[133,120],[3,3],[159,143],[296,266],[295,265],[170,153],[125,113],[86,76],[26,24],[17,15],[17,15],[6,6],[1,0],[55,-25],[15,-6],[1,-1],[70,-24],[1,0],[22,-6],[140,-39],[53,-15],[116,-38],[3,-1],[3,0],[16,-2],[1,0],[38,4],[1,0],[1,0],[61,18],[33,10],[64,12],[46,2],[92,-4],[44,8],[130,23],[91,10],[48,-3],[32,-7],[50,-17],[32,-18],[24,-13],[1,0],[115,-51],[35,-21],[42,-38],[8,-3],[1,0],[15,-6],[11,-2],[14,-1],[27,4],[1,0],[41,17],[41,17],[28,4],[27,-2],[62,-12],[139,-37],[58,-24],[27,-16],[9,-6],[6,-8],[16,-5],[60,6],[78,-9],[176,-37],[101,-35],[52,-6],[29,-9],[71,-35],[12,-6],[90,-38],[7,-3],[105,-59],[17,-17],[11,-21],[27,-86],[10,-14],[17,-3],[10,2],[49,24],[29,8],[57,2],[29,-11],[42,-42],[19,-12],[74,-22],[80,-32],[131,-13],[63,1],[36,7],[135,40],[95,21],[32,12],[75,43],[56,25],[9,7],[6,12],[8,14],[15,8],[50,-6],[65,-16],[23,-12],[29,-24],[50,-20],[13,-10],[16,-22],[7,-8],[10,-13],[5,-6],[12,-13],[6,-7],[4,-7],[6,-11],[-3,-13],[-11,-11],[-15,-7],[-13,-10],[-3,-10],[2,-6],[15,-6],[20,-3],[18,2],[43,18],[10,7],[15,9],[12,13],[1,15],[-3,13],[-20,20],[-6,6],[-1,12],[3,9],[49,1],[32,-8],[21,-17],[12,-17],[35,-64],[28,-17],[13,-9],[9,-29],[-3,-25],[-11,-17],[-48,-40],[-13,-14],[3,-15],[23,-9],[33,-7],[37,-3],[54,3],[23,-1],[14,-11],[-4,-14],[-42,-100],[7,-23],[19,-9],[18,0],[73,12],[10,-4],[3,-10],[-11,-18],[-2,-16],[-8,-27],[3,-25],[-1,-13],[-11,-7],[-1,0],[-14,0],[-8,0],[-14,5],[-9,4],[-48,18],[-2,0],[-3,2],[-4,1],[-3,1],[-1,1],[-1,0],[-1,1],[-5,2],[-9,3],[-5,2],[-21,8],[-26,6],[-1,1],[-8,2],[-8,1],[-4,1],[-8,2],[-7,1],[-3,-1],[-15,-4],[-9,-14],[0,-8],[1,-9],[13,-8],[20,-12],[48,-22],[27,-6],[23,-8],[0,-1],[8,-7],[-6,-16],[-5,-6],[-1,-2],[-16,-4],[-21,1],[-20,4],[-19,4],[-12,5],[-16,6],[-25,5],[-3,-1],[-14,-5],[-10,-11],[1,-9],[17,-13],[2,-1],[27,-13],[1,0],[56,-22],[19,-8],[5,-2],[3,-11],[-2,-8],[-4,-7],[-2,-2],[-1,0],[-6,-5],[-8,-4],[-17,-2],[-12,2],[-13,3],[-12,4],[-9,4],[-7,3],[-10,2],[-9,2],[-3,0],[-4,-1],[-5,-2],[-1,-1],[-4,-2],[-12,-20],[-24,-30],[-17,-37],[-1,-36],[15,-36],[28,-27],[75,-49],[7,-12],[4,-7],[-1,-14],[-19,-19],[-17,-5],[-10,-3],[-13,0],[-5,0],[-7,0],[-20,4],[-16,3],[-8,1],[-15,1],[-7,0],[-9,-2],[-13,-2],[-6,-3],[-6,-2],[-7,-3],[-13,-9],[-41,-30],[-10,-39],[-10,-11],[-18,-8],[-8,-2],[-13,-3],[-2,-1],[-16,-4],[-25,-17],[-9,-16],[1,-25],[0,-12],[1,-14],[0,-1],[1,-22],[6,-99],[5,-72],[0,-42],[1,-43],[0,-13],[3,-216],[3,-246],[-7,-235],[-2,-47],[-1,-25],[-16,-187],[-7,-71],[104,-161],[8,-12],[4,-7],[21,-32],[-16,-25],[-3,-3],[-17,-14],[0,-11],[0,-21],[-6,-20],[-8,-22],[16,-25],[-22,-18],[-37,-5],[-8,-18],[-2,-12],[10,-16],[6,-21],[3,-23],[-10,-22],[0,-15],[7,-7],[40,-3],[35,-69],[-2,-28],[0,-76],[15,-29],[-16,-27],[-4,-3],[-12,-8],[-7,-5],[-2,-17],[-3,-12],[5,-37],[37,-60],[20,0],[9,-15],[-3,-19],[1,-23],[32,-37],[-19,-27],[-19,-21],[11,-17],[19,-31],[-42,-56],[19,-34],[-23,-17],[-21,-18],[-8,-14],[-8,-19],[-1,-18],[-3,-65],[38,-39],[62,-63],[12,-12],[0,-1],[5,-4],[1,-1],[15,-16],[11,-12],[65,-79],[29,-30],[85,-51],[40,-10],[22,-8],[6,-20],[20,-14],[88,-9],[74,-14],[124,-58],[352,-130],[461,-164],[191,-78],[23,-28],[8,-10],[13,-16],[89,-21],[7,-5],[65,-42],[34,-8],[80,-20],[47,-19],[-1,-30],[13,-23],[31,-10],[16,-28],[25,-46],[15,-16],[28,-10],[69,10],[44,16],[37,8],[23,3],[18,-24],[3,-18],[-8,-23],[9,-29],[28,-16],[27,4],[12,7],[28,15],[12,7],[119,59],[38,-1],[40,-34],[33,-21],[37,-16],[25,-15],[21,-22],[11,-24],[30,-10],[92,-5],[25,-17],[-37,-20],[-9,-5],[37,-22],[11,-2],[20,4],[14,2],[20,21],[4,3],[44,-11],[77,-44],[15,-13],[2,-24],[-2,-50],[4,-35],[19,-11],[30,3],[66,-23],[41,-20],[33,-27],[40,-11],[45,8],[25,-20],[1,-27],[29,-45],[18,-13],[14,-26],[39,-16],[9,-14],[12,-7],[25,-15],[30,-8],[2,-1],[30,56],[28,22],[51,27],[43,8],[112,-17],[113,25],[56,-6],[61,41],[85,57],[122,40],[65,-2],[53,-1],[111,4],[100,28],[156,96],[4,5],[20,31],[171,77],[127,40],[150,54],[39,24],[17,10],[27,17],[27,16],[12,7],[221,89],[22,22],[13,13],[16,16],[89,38],[111,3],[63,2],[322,73],[233,53],[299,3],[109,19],[26,8],[150,43],[125,44],[99,51],[88,44],[25,12],[127,51],[36,21],[53,30],[99,0],[56,16],[71,38],[192,56],[41,6],[73,-12],[68,-20],[18,-19],[69,-18],[88,13],[170,95],[85,28],[110,13],[68,-34],[118,4],[109,-16],[180,-94],[105,-42],[81,-3],[48,19],[28,20],[31,22],[56,9],[57,2],[108,3],[145,28],[125,36],[153,-5],[1,0],[3,0],[76,1],[192,27],[242,81],[21,15],[50,36],[6,7],[22,21],[19,18],[32,32],[39,38],[75,32],[13,6],[20,18],[7,8],[34,32],[1,15],[4,30],[0,7],[-7,9],[-25,32],[-37,47],[-6,8],[-15,20],[-11,13],[-6,14],[-4,8],[-7,15],[2,4],[11,32],[48,33],[81,56],[7,18],[22,52],[15,35],[1,1],[25,37],[125,81],[22,15],[80,51],[59,12],[138,-11],[231,-61],[107,-28],[62,-11],[39,-7],[2,0],[94,-5],[217,49],[29,13],[20,8],[62,46],[97,70],[48,35],[152,55],[173,36],[37,1],[169,7],[117,-9],[164,-46],[44,-4],[9,-1],[12,0],[27,1],[65,1],[86,14],[49,7],[14,2],[36,9],[181,41],[111,-9],[116,-47],[26,-22],[133,-187],[14,-20],[140,-41],[95,-12],[60,4],[120,33],[150,-33],[18,-4],[110,-17],[97,18],[126,59],[133,62],[127,12],[162,-23],[62,-1],[98,-2],[47,-1],[112,-18],[202,6],[61,17],[29,8],[21,13],[33,23],[22,45],[-15,38],[-23,56],[-42,33],[-63,49],[-78,51],[-9,22],[-13,34],[5,5],[43,46],[47,51],[-1,15],[0,6],[0,5],[-2,20],[-10,36],[-6,20],[-8,26],[-9,34],[-27,89],[-26,42],[-2,29],[-2,32],[18,51],[4,13],[3,7],[11,33],[17,27],[1,3],[23,38],[3,17],[9,46],[21,113],[15,23],[44,64],[46,43],[40,37],[55,50],[43,30],[27,19],[108,53],[34,17],[47,10],[16,4],[63,14],[146,32],[100,13],[105,5],[151,28],[37,7],[83,5],[109,3],[128,-15],[220,-57],[53,-14],[143,-22],[46,0],[56,10],[17,3],[17,3],[63,29],[84,38],[76,21],[134,8],[102,-14],[166,-83],[45,-22],[18,-10],[150,-51],[331,-2],[78,0],[123,30],[118,29],[86,12],[153,-43],[66,-52],[17,-18],[12,-63],[12,-61],[15,-10],[91,-59],[116,-45],[77,-17],[97,17],[120,-4],[137,-51],[311,-118],[99,-37],[21,-7],[69,-23],[111,-6],[37,-2],[240,-30],[128,-44],[57,-70],[-8,-58],[-15,-97],[-12,-39],[38,-83],[128,-89],[137,-137],[130,-87],[203,-37],[106,-92],[52,-55],[28,-9],[223,-78],[64,-22],[70,-25],[64,-32],[33,-11],[90,-29],[25,-8],[96,-29],[250,-124],[111,-114],[17,-75],[64,-75],[65,-13],[157,-30],[137,-46],[8,-4],[49,-20],[100,-43],[13,-5],[6,-2],[27,-11],[282,-109],[53,-27],[86,-44],[7,-3],[188,-73],[136,-32],[73,-80],[159,-117],[78,-56],[210,-225],[167,-129],[38,-29],[27,-9],[30,-9],[80,-9],[29,-4],[233,-42],[386,-160],[92,-65],[36,-48],[25,-99],[-14,-149],[74,-40],[80,-86],[45,-39],[21,-24],[86,-91],[19,-44],[27,-65],[35,-39],[13,-15],[73,-48],[8,-13],[40,-59],[31,-46],[33,-28],[145,-73],[166,-50],[49,-15],[62,-35],[55,-69],[60,-104],[38,-67],[88,-59],[24,-16],[28,-13],[39,-18],[46,-28],[17,-29],[67,-60],[20,-49],[-12,-43],[29,-63],[-9,-121],[34,-97],[127,-121],[77,-38],[11,-3],[108,-31],[156,-14],[59,-22],[129,-48],[32,-12],[2,-1],[52,-16],[1,0],[201,-63],[251,-126],[187,-60],[110,-6],[63,-15],[55,-13],[101,-46],[81,-69],[58,-50],[178,-76],[224,-70],[106,-51],[0,-30],[0,-27],[1,-46],[0,-34],[-3,-4],[3,-3],[0,-8],[0,-37],[2,-148],[1,-132],[0,-32],[0,-36],[0,-24],[1,-99],[1,-101],[1,-129],[0,-31],[1,-115],[1,-167],[1,-120],[0,-157],[1,-154],[0,-167],[0,-29],[0,-85],[1,-25],[0,-142],[0,-86],[1,-169],[0,-103],[0,-103],[0,-46],[1,-51],[0,-91],[0,-45],[0,-132],[1,-127],[0,-106],[0,-45],[0,-2],[1,-116],[1,-66],[1,-93],[0,-98],[0,-103],[0,-70],[0,-139],[0,-152],[0,-98],[0,-43],[0,-71],[0,-19],[0,-127],[0,-130],[0,-105],[0,-45],[0,-18],[-1,-104],[0,-59],[0,-80],[-1,-154],[-2,-213],[0,-86],[0,-35],[0,-35],[-1,-125],[-1,-205],[-1,-62],[1,-86],[1,-74],[0,-34],[0,-54],[1,-28],[0,-34],[0,-52],[2,-128],[0,-88],[1,-95],[1,-106],[1,-111],[0,-16],[0,-1],[0,-32],[1,-47],[1,-85],[0,-68],[1,-67],[1,-102],[0,-35],[1,-136],[1,-84],[1,-123],[1,-130],[1,-40],[1,-190],[1,-36],[0,-112],[1,-40],[0,-86],[1,-150],[1,-138],[1,-50],[0,-113],[1,-140],[1,-16],[0,-46],[0,-82],[1,-134],[1,-106],[1,-83],[0,-32],[0,-25],[1,-145],[1,-69],[0,-105],[1,-57],[0,-11],[0,-46],[1,-31],[1,-148],[1,-205],[0,-48],[0,-78],[1,-127],[0,-68],[0,-3],[1,-18],[0,-10],[4,-154],[2,-75],[3,-106],[2,-72],[1,-32],[2,-103],[4,-147],[5,-154],[2,-94],[3,-108],[0,-12],[6,-207],[3,-99],[2,-91],[3,-102],[2,-65],[3,-109],[4,-143],[3,-137],[3,-102],[1,-57],[3,-129],[3,-124],[2,-79],[3,-140],[1,-49],[1,-49],[2,-68],[2,-130],[2,-53],[1,-57],[3,-151],[1,-49],[0,-33],[2,-62],[0,-1],[0,-5],[0,-13],[0,-8],[1,-48],[1,-27],[1,-76],[2,-105],[2,-61],[3,-143],[2,-113],[2,-86],[0,-37],[2,-79],[0,-43],[2,-106],[3,-164],[3,-157],[4,-218],[1,-71],[1,-25],[1,-64],[3,-197],[1,-32],[2,-127],[2,-88],[1,-69],[1,-100],[2,-105],[2,-162],[2,-131],[3,-173],[1,-81],[0,-38],[0,-12],[1,-8],[0,-39],[2,-144],[1,-75],[2,-141],[1,-38],[0,-33],[1,-41],[2,-179],[1,-52],[0,-4],[1,-108],[2,-119],[0,-71],[2,-137],[1,-38],[0,-49],[0,-7],[0,-216],[0,-47],[0,-5],[1,-46],[1,-98],[1,-134],[1,-42],[0,-46],[1,-112],[0,-9],[0,-13],[2,-142],[0,-37],[0,-6],[0,-8],[0,-10],[1,-79],[2,-190],[1,-164],[1,-161],[1,-111],[1,-213],[0,-58],[0,-12],[0,-26],[0,-44],[2,-221],[0,-167],[1,-120],[0,-70],[0,-134],[0,-60],[0,-14],[0,-20],[0,-6],[0,-16],[0,-56],[0,-196],[0,-173],[0,-17],[0,-44],[0,-90],[0,-98],[1,-161],[0,-112],[0,-95],[0,-21],[0,-164],[1,-43],[1,-144],[1,-189],[1,-27],[0,-34],[0,-23],[0,-65],[1,-62],[0,-25],[0,-113],[1,-161],[0,-89],[-1,-153],[-1,-212],[0,-144],[-1,-152],[-1,-182],[0,-90],[0,-115],[-1,-126],[0,-164],[-1,-172],[0,-60],[0,-90],[0,-77],[-1,-160],[0,-123],[31,-102],[27,-46],[27,-30],[26,-16],[69,-17],[65,-34],[69,-25],[34,-21],[48,-40],[82,-32],[41,-23],[6,-6],[14,-14],[18,-19],[3,-4],[19,-19],[6,-4],[28,-20],[17,-12],[14,-11],[14,-10],[31,-29],[7,-10],[17,-27],[1,-2],[-2,-29],[-9,-14],[-14,-24],[-16,-14],[-17,-14],[-2,-2],[-7,-5],[-22,-15],[-48,-19],[-58,-23],[-19,-4],[-7,-2],[-15,-3],[-14,-4],[-28,-6],[-13,-8],[-3,-2],[-5,-2],[-8,-5],[-1,-1],[-23,-32],[-3,-3],[-8,-12],[-30,-41],[-1,-1],[-12,-17],[-7,-18],[-11,-27],[-1,-3],[-8,-34],[-8,-31],[-3,-5],[-4,-8],[-6,-4],[-7,-6],[-29,-12],[-26,-7],[-41,-10],[-17,-2],[-76,-8],[-47,-16],[-16,-6],[-14,-5],[-98,-9],[-60,-18],[-43,-23],[-23,-15],[-7,-6],[-25,-17],[-34,-24],[-42,-29],[-29,-20],[-1,-2],[-17,-11],[-3,-3],[-3,-3],[-1,0],[-7,-6],[-43,-35],[-16,-13],[-4,-3],[-41,-23],[-6,-4],[-16,-9],[-21,-22],[-17,-43],[-13,-110],[3,-43],[11,-47],[18,-40],[24,-23],[73,-44],[25,-19],[9,-14],[5,-19],[5,-19],[37,-80],[42,-52],[12,-14],[78,-85],[1,0],[62,-57],[21,-14],[71,-49],[1,0],[122,-67],[32,-15],[124,-60],[59,-40],[59,-57],[32,-44],[26,-46],[16,-43],[17,-45],[204,-123],[-146,-47],[-23,-19],[-26,-3],[-5,-3],[-36,-21],[-3,-2],[-34,-11],[-26,1],[-6,0],[-21,3],[-13,2],[-31,5],[-17,3],[-19,1],[-2,1],[-5,0],[-4,0],[-13,2],[-9,-1],[-14,0],[-15,0],[-39,-1],[-11,-2],[-31,-4],[-4,-1],[-7,-3],[-2,-1],[-7,-2],[-5,-1],[-23,-15],[-3,-2],[-11,-18],[-1,-7],[-3,-17],[-14,-11],[-3,-2],[-31,-17],[-43,-24],[-117,-65],[-308,-172],[-8,-13],[-59,-108],[-39,-71],[14,-65],[9,-42],[41,-191],[-40,-258],[-92,-49],[73,-271],[317,-105],[237,-381],[22,-35],[11,-19],[-670,-36],[160,-746],[-363,-52],[282,-290]],[[32969,80201],[9,-453],[11,-575],[7,-392],[7,-230],[1,-120],[0,-140],[1,-505],[0,-28],[2,-596],[0,-162],[1,-315],[0,-116],[0,-110],[0,-1],[0,-75],[0,-88],[1,-123],[-190,-3],[-42,0],[-81,-1],[-1,-218],[0,-24],[-2,-168],[12,-1113],[1,-101],[6,-646],[2,-214],[6,-676],[0,-43],[7,-233],[1,-45],[2,-70],[1,-101],[1,-113],[4,-194],[12,-871],[11,-884],[3,-216],[3,-27],[3,-39],[5,-511],[2,-144],[4,-385],[1,-55],[4,-466],[1,-96],[1,-45],[0,-72],[0,-178],[-5,-309],[-1,-19],[0,-43],[0,-2],[-4,-184],[-24,-284],[1,-287],[2,-255],[283,34],[253,32],[558,68],[134,-379],[74,-217],[133,-319],[10,-26],[93,-284],[46,-133],[3,-7],[7,-21],[31,-89],[316,-911],[89,-249],[-16,-8],[-3,-1],[-8,-3],[-25,-12],[-143,-11],[-27,-16],[-22,-12],[-22,-13],[-129,-3],[-7,0],[-26,6],[0,7],[3,6],[-1,6],[-14,9],[-7,2],[-15,5],[-15,2],[-2,0],[-145,-14],[-16,-24],[-2,-5],[-31,-86],[-9,-26],[-3,-9],[2,-16],[2,-20],[0,-1],[3,-7],[-2,-16],[0,-3],[-1,0],[-6,-7],[-12,-8],[-1,0],[-7,-3],[-132,-1],[-48,1],[-24,0],[-27,0],[-14,0],[-12,7],[-32,43],[-42,55],[0,1],[-37,58],[-19,30],[-40,59],[-1,0],[-35,25],[-1,0],[-49,31],[-1,0],[-60,77],[-3,4],[-28,59],[-11,24],[-45,98],[-1,29],[1,5],[21,25],[7,5],[16,4],[32,6],[1,0],[9,5],[14,16],[0,1],[4,10],[7,74],[0,11],[-2,2],[-77,6],[-16,0],[-167,-10],[-14,-3],[-27,-7],[-5,-3],[-11,-5],[-63,-23],[-16,-4],[-154,-40],[-153,-39],[-14,-1],[-29,-2],[-30,-8],[-27,-15],[-34,6],[-10,22],[-33,9],[-26,7],[-29,9],[1,35],[-33,17],[-33,5],[16,-24],[19,-19],[6,-28],[34,-9],[27,-8],[26,-11],[-7,-26],[23,-20],[28,-5],[33,0],[21,-12],[2,-1],[1,-4],[75,-30],[28,-11],[4,-1],[1,-1],[11,-10],[4,-7],[25,-45],[1,-1],[1,-14],[-11,-24],[-4,-10],[-11,-45],[0,-1],[-3,-10],[11,-10],[18,-10],[15,-5],[90,-6],[45,5],[10,0],[28,-26],[69,-73],[32,-35],[1,-1],[56,-89],[15,-26],[2,-3],[23,-88],[21,-78],[12,-45],[8,-31],[-1,-4],[-27,-92],[-7,-17],[-22,-44],[-77,-82],[-14,-10],[-19,-5],[-44,-2],[-13,2],[-15,3],[-36,15],[-16,22],[-31,17],[-25,5],[-24,-5],[-42,-12],[-28,-2],[-29,14],[12,-24],[27,-6],[60,15],[30,0],[20,-18],[18,-18],[22,-20],[-6,-36],[40,-16],[90,-135],[1,-3],[1,-1],[6,-12],[71,-186],[1,-1],[10,-30],[0,-1],[3,-19],[-3,-16],[0,-1],[-14,-23],[-20,-18],[-20,-23],[-32,-40],[0,-1],[-6,-8],[-122,-197],[-3,-4],[-1,-3],[-17,-43],[-4,-19],[0,-19],[0,-25],[-38,-73],[-56,-103],[-1,0],[-33,-17],[-12,-1],[-68,-10],[-27,0],[-27,0],[-15,4],[-29,3],[-6,1],[-2,0],[-18,0],[-89,-9],[-4,-4],[-21,-23],[0,-14],[0,-2],[54,-47],[10,-5],[5,-3],[49,-24],[32,-15],[12,-4],[12,-5],[16,-8],[27,-22],[10,-12],[51,-64],[7,-13],[3,-8],[28,-96],[0,-18],[-5,-17],[-1,-2],[0,-1],[-4,-6],[-49,-63],[-4,-5],[-131,-126],[-13,-9],[-1,-1],[-33,-11],[-2,0],[-47,-11],[-19,0],[-2,0],[-80,20],[-1,0],[-4,2],[-12,23],[-2,5],[-26,36],[-1,1],[-1,1],[-11,14],[-9,9],[-2,2],[-141,85],[-10,5],[-34,-2],[-39,-28],[-14,-6],[-8,-2],[-45,-8],[-1,0],[-2,0],[-214,-9],[-1,0],[-26,1],[-60,7],[-26,3],[-1,0],[-7,3],[-116,76],[-1,1],[-4,2],[-98,115],[-12,26],[-11,24],[-10,7],[-13,32],[-28,23],[2,27],[1,34],[-29,14],[-13,-44],[-28,-9],[-35,18],[7,26],[-25,15],[-3,23],[24,2],[22,13],[17,21],[27,-2],[12,23],[-25,18],[-15,19],[-27,22],[-33,4],[-26,-6],[-34,-2],[-24,-15],[-40,10],[-18,15],[-21,-17],[-26,-11],[-28,2],[-15,22],[-29,10],[-22,-12],[-58,7],[-30,14],[-10,2],[-14,3],[23,-20],[26,-22],[27,-18],[20,17],[23,-19],[26,12],[44,-14],[42,-10],[26,12],[5,3],[36,2],[3,-1],[34,-13],[21,13],[29,-8],[39,-2],[11,-20],[-14,-26],[-40,-11],[-19,-27],[-18,-17],[-22,-11],[12,-21],[23,-9],[11,-21],[26,-15],[20,19],[23,-11],[34,-5],[-20,-14],[-8,-24],[40,8],[27,0],[-17,-24],[-12,-4],[0,-1],[-7,-18],[-2,-5],[-11,-10],[-9,-7],[-50,-34],[-1,-1],[-43,-11],[-11,0],[-11,-3],[-4,-1],[-31,-18],[-38,-61],[-23,-44],[-8,-24],[-1,-3],[0,-1],[0,-47],[0,-3],[0,-41],[0,-20],[5,-6],[52,-63],[65,-96],[-2,-4],[-13,-24],[-1,-2],[-18,-15],[-4,-2],[-37,-17],[-4,-1],[-1,0],[-42,-1],[-75,2],[-22,9],[-1,0],[0,1],[-40,21],[-7,4],[-20,11],[-6,-1],[-134,-16],[-159,-18],[-77,-9],[-69,-9],[-59,-21],[-24,-12],[-10,-21],[-32,-9],[-33,-10],[-25,-19],[-11,-27],[-33,-29],[-58,-17],[-35,-1],[-31,3],[9,-7],[19,-16],[25,2],[60,15],[20,-20],[18,23],[25,17],[4,23],[19,14],[24,18],[39,-24],[0,-4],[14,-11],[9,2],[25,-7],[152,-43],[5,-5],[45,-38],[7,-7],[66,-56],[0,-1],[6,0],[40,-1],[80,3],[21,2],[19,2],[20,0],[20,-3],[20,-6],[191,-104],[3,-4],[-3,-13],[-5,-11],[-6,-7],[-5,-5],[-1,-2],[-2,-1],[-8,-3],[-54,-13],[-12,-2],[-40,-7],[-41,-8],[-78,-14],[-1,0],[-74,9],[-20,-5],[-4,-5],[-15,-17],[-4,-10],[-20,14],[-42,-4],[-28,-4],[-25,-8],[-57,-14],[-25,-9],[46,-3],[40,4],[26,3],[35,8],[25,-5],[29,-22],[3,-3],[8,-8],[10,-10],[1,-1],[2,-8],[2,-14],[0,-3],[-2,-8],[-4,-8],[0,-9],[11,-18],[14,-11],[19,-13],[29,-14],[2,-1],[3,0],[12,0],[7,1],[1,1],[25,2],[39,0],[10,-1],[9,-3],[84,-49],[22,-12],[0,-1],[53,-32],[1,-1],[1,0],[16,-12],[9,-24],[1,-1],[-6,-24],[-5,-16],[0,-6],[-1,-13],[0,-23],[0,-9],[0,-2],[1,-15],[5,-17],[1,-2],[3,-5],[9,-18],[9,-14],[7,-10],[55,-16],[1,0],[13,-9],[9,-10],[7,-11],[8,-24],[2,-6],[7,-28],[1,-4],[4,-20],[-1,-25],[-7,-20],[0,-15],[3,-12],[4,-10],[11,-14],[23,-20],[14,-9],[257,-114],[3,-1],[132,-47],[38,15],[3,1],[2,1],[4,1],[4,1],[49,13],[4,1],[4,0],[5,1],[4,0],[2,0],[26,-1],[2,0],[4,0],[1,0],[19,-3],[3,0],[4,-1],[5,-1],[2,-1],[16,-6],[1,0],[4,-2],[4,-2],[4,-2],[3,-2],[3,-2],[32,-26],[1,0],[3,-3],[3,-3],[16,-17],[6,-3],[5,-2],[129,9],[1,0],[35,2],[4,0],[1,0],[41,0],[1,0],[121,-4],[3,0],[4,-1],[4,0],[4,-1],[4,-1],[1,-1],[12,-4],[4,-1],[52,-20],[4,-2],[3,-1],[4,-3],[4,-2],[3,-2],[8,-7],[3,-3],[3,-2],[3,-3],[2,-4],[2,-3],[2,-3],[2,-4],[2,-4],[1,-4],[1,-3],[0,-4],[1,-4],[0,-4],[0,-1],[-1,-39],[0,-3],[0,-4],[-1,-4],[0,-2],[-2,-9],[-1,-1],[-1,-4],[-2,-4],[-1,-3],[-2,-4],[-1,-1],[-8,-11],[-1,-2],[-3,-4],[-2,-3],[-3,-3],[-3,-2],[-4,-3],[-3,-2],[-4,-2],[-4,-2],[-3,-2],[-3,-1],[-1,0],[-5,-1],[-2,-1],[-23,-100],[-65,-67],[-2,-5],[-24,-90],[0,-1],[43,-10],[6,-2],[10,-4],[59,-67],[1,-8],[-3,-7],[-11,-10],[-1,0],[-68,-34],[-17,-9],[3,-6],[7,-14],[22,-32],[3,-6],[87,-19],[23,-1],[3,0],[1,1],[13,4],[13,6],[7,8],[68,90],[0,11],[47,8],[48,9],[128,21],[15,1],[9,-1],[196,-42],[71,-15],[1,0],[135,-46],[33,-11],[74,-25],[132,-80],[37,-24],[3,-2],[28,-20],[1,-1],[11,-9],[3,-4],[0,-7],[0,-1],[-14,-32],[-4,-7],[-32,-47],[-5,-8],[-10,-4],[-1,0],[-30,-1],[-13,3],[-44,36],[-1,0],[-49,36],[-16,11],[-1,1],[-1,0],[-191,102],[-65,34],[-12,4],[-12,0],[-6,-1],[-7,-4],[-56,-50],[-5,-6],[0,-1],[-20,-57],[-26,-105],[2,-8],[16,-5],[127,-38],[66,-7],[13,-2],[10,-5],[15,-12],[4,-5],[7,-9],[6,-26],[1,-1],[-2,-31],[2,-11],[16,-18],[33,-33],[3,-2],[47,-43],[3,-3],[1,0],[14,-12],[-3,-29],[-13,-72],[-5,-23],[-6,-35],[-4,-20],[-2,-5],[-28,-30],[-25,-25],[-99,-96],[-18,-16],[-82,0],[-39,-2],[-31,-2],[-20,-2],[-7,-11],[-65,-103],[-4,-9],[0,-1],[0,-1],[-1,-19],[12,-51],[8,-36],[15,-65],[0,-1],[7,-8],[53,-39],[13,-4],[38,-2],[11,-2],[14,-10],[12,-15],[4,-7],[6,-12],[3,-23],[-2,-31],[-4,-13],[-9,-23],[-2,-5],[-3,-1],[-5,-17],[-2,-37],[8,-23],[-16,-25],[-5,-2],[-63,-13],[-32,-11],[-8,-4],[-100,-47],[-11,-6],[-19,-11],[-12,-13],[-2,-3],[-13,-15],[-34,-58],[-19,-43],[-20,-52],[-1,-4],[-15,-63],[-3,-2],[-97,-73],[-10,-7],[-116,-44],[-85,-32],[-39,-15],[-1,-1],[-15,-10],[-18,-17],[-3,-2],[-13,-11],[-68,-24],[-51,-18],[-21,-6],[-7,-4],[-35,-8],[-3,0],[-34,-2],[-26,-9],[-11,-7],[-33,-20],[-6,-3],[-45,-21],[-17,-8],[-16,-6],[-13,-3],[-12,-3],[-61,0],[-3,0],[-42,4],[-29,-3],[-69,-15],[-54,9],[-42,15],[-47,-15],[-10,-25],[-5,-40],[5,-18],[11,-47],[7,-27],[23,-16],[10,-20],[-26,-17],[-60,-17],[-81,-28],[12,-32],[7,-20],[64,-180],[47,-131],[154,-432],[43,-160],[136,-394],[129,-375],[104,-300],[3,-10],[53,-155],[45,-107],[19,-58],[10,-35],[15,-49],[14,-37],[59,-166],[94,-244],[112,-300],[38,-103],[31,-82],[93,-248],[49,-130],[32,-53],[36,-122],[24,-86],[11,-39],[36,-103],[1,-2],[16,-46],[12,-35],[55,-169],[14,-45],[73,-226],[21,-60],[30,-86],[12,-35],[52,-158],[32,-115],[51,-143],[42,-127],[26,-83],[39,-113],[-182,-20],[3,-28],[12,-42],[8,-40],[8,-38],[8,-39],[11,-62],[19,-70],[52,-155],[103,-292],[57,-162],[145,-373],[177,-455],[-61,-77],[96,-318],[175,-579],[188,-623],[31,-102],[80,-266],[20,-99],[38,-120],[0,-1],[10,-30],[8,-27],[20,-63],[25,-79],[27,-85],[17,-53],[30,3],[196,16],[12,-40],[26,-87],[207,-701],[97,-328],[17,-56],[0,-2],[17,-58],[56,-197],[37,-131],[39,-137],[40,-134],[42,-141],[84,9],[101,12],[164,19],[250,30],[156,20],[5,0],[173,21],[15,2],[14,2],[128,16],[372,45],[133,13],[186,24],[170,23],[562,73],[-66,193],[123,17],[258,30],[218,26],[-92,311],[-13,27],[-24,43],[266,35],[64,7],[25,4],[215,26],[186,23],[124,16],[75,10],[73,8],[0,1],[142,17],[119,15],[146,19],[93,12],[109,13],[124,15],[32,4],[39,5],[43,5],[221,28],[24,3],[56,8],[74,8],[174,22],[105,13],[192,24],[61,8],[208,26],[56,8],[134,20],[129,16],[190,24]],[[41802,46675],[15,-48],[8,-21],[23,-73],[12,-35],[19,-65],[63,-195],[22,-70],[26,-80],[42,-142],[128,-414],[36,-116],[1,0],[9,-36],[19,-55],[14,-49],[50,-164],[24,-79],[52,-171],[37,-119],[24,-78],[6,-18],[2,-8],[51,-165],[11,-34],[12,-39],[20,-64],[8,-28],[79,-262],[26,-85],[17,-55],[41,-132],[87,-284],[8,-26],[23,-77],[74,-246],[59,-197],[29,-96],[13,-40],[27,-103],[33,-122],[44,-160],[43,-157],[7,-27],[86,-232],[74,-245],[109,-361],[0,-1],[13,-43],[25,-84],[1,-1],[45,-153],[3,-13],[9,-27],[72,-246],[2,-7],[8,-28],[4,-12],[8,-30],[-121,-15],[43,-173],[40,-164],[2,-6],[24,-99],[0,-1],[22,-91],[60,-243],[98,-403],[20,-85],[8,-30],[121,-493],[33,-135]],[[43955,38819],[-29,-3],[-91,-11],[-44,-5],[-187,-21],[-16,-2],[-581,-66],[-519,-59],[-202,409],[-13,25],[-18,35],[0,1],[-27,55],[-19,39],[-27,56],[-33,68],[-43,87],[-8,16],[-52,-11],[-11,-2],[-6,-1],[-43,-4],[-14,1],[-17,2],[-23,3],[-10,4],[-7,3],[-7,3],[-31,4],[-21,4],[-100,16],[-13,0],[-11,1],[-26,1],[-15,2],[-24,3],[-12,4],[-16,4],[-15,4],[-82,34],[-22,6],[-28,8],[-22,4],[-31,6],[-40,7],[-12,-2],[-38,-8],[-4,-1],[-21,-4],[-10,1],[-47,2],[-33,0],[-15,0],[-60,-1],[-51,-5],[-14,-2],[-5,0],[-8,-3],[-32,-11],[-8,-2],[-18,-13],[-10,-7],[-5,-38],[3,-14],[9,-41],[-18,-19],[-1,-1],[-1,0],[-28,0],[-2,0],[-38,8],[-17,4],[-24,6],[-3,0],[-9,-1],[-15,-1],[-15,-2],[-5,-1],[-9,-2],[-7,-1],[-25,-10],[-20,-16],[-12,-24],[2,-17],[8,-43],[6,-31],[1,-5],[11,-36],[44,-78],[14,-23],[0,-2],[1,-13],[0,-8],[1,-9],[-6,-28],[-14,-14],[-3,-3],[-17,-8],[-18,-8],[-21,-6],[-3,-1],[-12,-4],[-24,-7],[-2,-2],[-1,-1],[-2,-2],[-19,-19],[-1,0],[-3,-3],[-3,-3],[-1,0],[-79,-56],[-213,-180],[-24,-20],[-4,-31],[-28,-36],[-3,-32],[-3,-19],[-2,-10],[-4,-18],[-25,-27],[-1,-1],[0,-1],[1,-32],[3,-6],[1,-2],[2,-3],[1,-4],[1,-4],[1,-4],[0,-2],[5,-48],[0,-1],[0,-4],[0,-3],[0,-3],[-2,-25],[-1,-20],[0,-1],[0,-4],[0,-2],[-3,-15],[-22,-3],[-46,-6],[-1,-1],[-172,-23],[-13,-2],[-419,-56],[-126,-17],[-407,-55],[-53,-7],[-72,-10],[-1,-1]],[[39000,38171],[21,69],[10,32],[14,49],[56,184],[-51,7],[-87,10],[39,129],[27,85],[-117,18],[-197,30],[-388,-47],[-222,-27],[-7,-1],[-174,-21],[-198,-23],[-113,-13],[-186,-22],[-149,-17],[-357,-42],[-485,-59],[-90,-11],[-171,-22],[-99,-13],[-189,-26],[-37,-5],[-38,-4],[-1,-1],[-332,-42],[-175,-23],[-161,-22],[-46,-6],[15,-84],[3,-24],[-4,-12],[-7,-24],[-2,-34],[1,-30],[10,-30],[9,-26],[2,-6],[4,-22],[35,-40],[1,-1],[3,-4],[13,-40],[9,-195],[5,-26],[6,-27],[10,-11],[45,-47],[7,-7],[48,-37],[19,-14],[55,-60],[53,-103],[3,-11],[4,-14],[9,-12],[9,-10],[33,-43],[12,-7],[15,-11],[36,-23],[13,-5],[13,-6],[103,-19],[56,-25],[32,-22],[3,-3],[76,-78],[6,-4],[110,-87],[127,-77],[51,-56],[154,-135],[7,-6],[15,-7],[25,-13],[15,-18],[41,-54],[4,-6],[4,-30],[-5,-20],[-2,-5],[0,-3],[-2,-3],[-22,-45],[-12,-24],[-43,-68],[-31,-41],[-109,-102],[-34,-32],[-48,-64],[-10,-20],[-10,-20],[-13,-29],[-12,-26],[15,-15],[17,-19],[3,-12],[1,-50],[-7,-48],[-4,-28],[11,11],[37,-19],[29,-54],[1,-3],[-4,-63],[-8,-28],[-9,-22],[-22,-60],[-17,-17],[-16,-6],[-10,-4],[-6,-8],[-6,-10],[-44,-18],[-30,3],[-81,-16],[-18,-11],[-2,0],[-3,-2],[-4,-2],[-4,-1],[-2,-1],[-35,-10],[-66,-53],[-47,8],[-27,3],[-9,2],[-24,3],[-55,8],[-93,12],[-123,19],[-58,7],[-36,7],[-55,6],[-20,2],[-33,4],[-166,24],[-75,11],[-94,13],[-39,6],[-140,20],[-142,20],[-124,18],[-64,9],[-41,7],[-24,4],[-74,11],[-108,15],[-1,0],[-157,22],[-396,55],[-177,25],[-154,22],[-42,6],[-15,2],[-538,77],[-162,24],[-57,100],[-125,18],[-230,37],[-86,14],[-35,6],[-297,48],[-127,-151],[-140,-166],[-12,-33],[-3,-9],[-33,-94],[-84,-237],[-123,17],[-57,8],[-3,1],[-445,63],[1,6],[2,1],[17,14],[8,6],[9,11],[1,2],[4,11],[3,21],[0,3],[0,2],[-15,63],[-7,32],[-2,13],[-2,11],[-3,14],[-11,63],[-1,29],[5,11],[19,19],[4,5],[0,14],[-78,145],[-6,9],[-45,37],[-38,31],[-1,0],[-52,17],[-7,2],[-2,1],[-4,0],[-9,0],[-18,9],[-11,13],[-554,264],[-38,18],[-516,-73],[-199,-25],[-87,-10],[-51,-6],[-510,-63],[-509,-62]],[[27903,36335],[-10,22],[-15,33],[-14,31],[-43,93],[-65,140],[-113,229],[-126,257],[-13,27],[-295,140],[-196,93],[-9,24],[2,5],[-25,36],[-5,7],[7,17],[11,6],[31,9],[16,-3],[52,-39],[9,-7],[63,-9],[7,3],[23,6],[5,2],[12,28],[8,18],[4,30],[11,78],[0,1],[-12,35],[-5,17],[-19,22],[-23,27],[-12,13],[-48,13],[-32,8],[-11,14],[8,30],[10,13],[65,26],[6,5],[13,9],[12,23],[3,6],[9,16],[-4,7],[-22,13],[-131,-12],[-5,-1],[-472,-45],[-123,-13],[-39,-3],[-88,-8],[-16,69],[-63,287],[-11,51],[-48,214],[-17,78],[-8,34],[-11,49],[-6,27],[-37,168],[-30,120],[-65,266],[-80,257],[-38,139],[222,36],[69,12],[-20,90],[-6,29],[-3,15],[-39,194],[65,10],[39,6],[-16,64],[-3,11],[-61,247],[-304,-33],[-11,62],[-20,112],[-18,98],[-30,173],[-1,2],[-10,59],[-130,-7],[-38,-2],[-70,-4],[-5,36],[-33,256],[-24,178],[135,10],[-38,203],[-3,15],[-51,278],[-19,100],[-31,165],[-134,-16],[-75,-9],[-1021,-123],[-31,-4],[-613,-74],[-10,-1],[-136,-16],[-106,-13],[-69,-9],[-55,-5],[-141,-13],[-29,127],[-7,28],[-40,176],[-41,191],[-7,29],[-28,117],[-8,33],[-39,159],[-27,119],[-37,45],[-160,-31],[-103,294],[217,30],[-37,152],[-38,154],[-12,45],[-60,223],[-27,131],[102,12],[40,5],[1,0],[195,23],[1,0],[27,1],[31,4],[36,4],[118,13],[105,16],[259,21],[101,13],[-53,210],[-38,149],[-94,351],[-126,471],[-49,184],[-71,226],[-17,51],[-13,42],[-105,334],[-107,337],[-13,43],[-139,437],[-165,524],[-9,28],[-185,587],[-24,76],[-104,-14],[-61,-8],[-101,-13],[-310,-41],[-1580,-198],[-76,-2],[-130,-17],[-898,-120],[-18,66],[-59,195],[-23,76],[-236,827],[-87,-8],[-15,41],[-54,-6],[-784,-91],[-424,-49],[35,-120],[-272,-29],[-1073,-120],[-8,27],[-72,256],[-25,88],[-20,70],[-7,25],[-1,1],[-21,75],[0,1],[-2,5],[-7,26],[-6,20],[-73,257],[-2,7],[-30,104],[-72,256],[-57,198],[-166,584],[-15,53],[-48,169],[-36,127],[-39,149],[-43,147],[-135,462],[-30,101],[-31,107],[-14,45],[-34,119],[-12,42],[-30,103],[-29,101],[-11,44],[-12,41],[-32,111],[-34,121],[-24,80],[-38,132],[-4,14],[-42,145],[-60,207],[-13,46],[-35,120],[-83,356],[-145,458],[-32,100],[-192,607],[-128,401],[-305,983],[-76,244],[-81,269],[311,37],[-76,238],[-110,318],[-10,27],[-13,38],[-20,54],[-119,348],[-99,292],[-10,28],[-7,21],[-4,11],[-22,63],[-100,295],[-10,34],[-30,89],[-14,41],[-26,77],[-155,513],[-307,940]],[[12862,59939],[17,0],[125,-8],[100,10],[53,13],[106,34],[55,10],[26,-2],[29,-7],[83,-32],[26,-6],[44,-1],[38,10],[33,13],[32,18],[101,97],[157,112],[56,30],[113,48],[131,72],[117,72],[206,95],[101,42],[52,27],[54,32],[99,69],[77,72],[62,36],[51,12],[101,9],[68,1],[48,-7],[121,-32],[72,-9],[55,-1],[133,9],[41,6],[220,57],[18,10],[-8,26],[4,17],[18,15],[26,12],[193,58],[139,51],[131,36],[68,24],[47,23],[37,25],[37,45],[21,30],[28,57],[25,30],[36,18],[79,13],[33,10],[57,34],[31,27],[17,22],[5,13],[-3,12],[-22,23],[-67,22],[-58,39],[-37,42],[-11,44],[1,15],[13,25],[63,62],[18,26],[5,22],[-5,25],[-34,41],[-77,60],[-55,34],[-96,39],[-47,25],[-48,35],[-34,36],[-13,26],[-4,22],[0,126],[-9,62],[1,74],[-5,24],[-37,73],[-30,44],[-30,28],[-69,37],[-17,16],[-11,26],[-10,67],[-21,70],[-1,16],[8,15],[33,21],[79,22],[50,7],[43,2],[99,-7],[46,1],[50,11],[45,26],[17,23],[7,29],[1,33],[-6,45],[5,35],[1,3],[9,28],[20,29],[104,87],[41,39],[16,24],[38,76],[43,43],[135,94],[149,79],[39,31],[28,37],[13,56],[15,17],[36,13],[90,4],[71,11],[37,9],[43,18],[35,22],[77,63],[56,69],[74,76],[63,44],[63,37],[43,20],[52,15],[55,11],[451,78],[216,56],[60,24],[112,60],[120,50],[66,31],[253,139],[48,32],[161,121],[102,88],[56,33],[136,69],[31,22],[15,16],[8,13],[0,15],[-15,19],[-46,37],[-6,13],[6,20],[23,30],[30,26],[122,88],[25,22],[20,29],[6,33],[-5,31],[-12,21],[-18,18],[-47,34],[-18,24],[-5,37],[3,79],[-3,25],[-12,24],[-67,65],[-10,36],[3,27],[22,31],[56,50],[148,110],[60,35],[163,79],[38,24],[23,20],[13,24],[6,30],[-7,32],[-52,41],[-23,33],[-18,17],[-73,58],[-53,49],[-48,31],[-19,8],[-26,2],[-22,-3],[-61,-20],[-30,-2],[-25,7],[-9,14],[-10,108],[-22,23],[-63,43],[-39,19],[-30,8],[-28,-2],[-91,-14],[-43,4],[-21,14],[-10,29],[-12,15],[-21,16],[-17,6],[-36,1],[-123,-32],[-159,-19],[-83,-7],[-113,1],[-100,11],[-80,4],[-40,-4],[-92,-18],[-45,-3],[-32,6],[-14,7],[-3,7],[1,11],[29,41],[9,21],[46,177],[52,79],[18,44],[22,26],[36,26],[29,13],[101,38],[102,30],[50,22],[50,30],[96,67],[48,54],[-5,8],[-43,4],[-47,12],[-75,31],[-157,39],[-46,16],[-25,15],[-24,27],[-39,66],[-27,80],[-23,38],[-76,67],[-44,63],[-76,54],[-21,22],[-6,13],[6,14],[12,14],[51,38],[67,32],[143,61],[47,27],[32,26],[20,23],[7,16],[-15,52],[8,48],[26,52],[25,34],[40,34],[78,47],[120,88],[99,59],[56,37],[39,43],[32,73],[8,46],[-5,30],[-9,15],[-22,15],[-86,31],[-35,5],[-36,1],[-172,-26],[-63,-4],[-90,4],[-137,17],[-32,8],[-34,19],[-10,11],[-6,18],[4,16],[21,29],[87,78],[14,18],[9,33],[18,37],[19,61],[21,48],[3,59],[12,21],[13,14],[33,22],[120,58],[34,29],[27,43],[26,79],[35,43],[22,19],[72,29],[10,10],[0,14],[-34,36],[54,6],[103,2],[123,31],[31,4],[216,-24],[89,5],[66,-13],[13,-15],[54,-2],[44,13],[6,15],[7,18],[-4,30],[-1,18],[-1,9],[-1,10],[0,14],[-33,69],[-9,32],[1,21],[19,64],[31,53],[13,23],[29,51],[2,4],[80,109],[11,15],[40,49],[30,47],[43,90],[26,57],[24,51],[2,5],[27,87],[21,44],[11,23],[-3,29],[-23,34],[-19,16],[-28,24],[-49,15],[-72,23],[-41,20],[-56,51],[-45,42],[-37,25],[-60,34],[-28,16],[-5,2],[-79,64],[-70,45],[-53,53],[-6,5],[-7,7],[-38,30],[-30,17],[-50,28],[-7,4],[-79,38],[-5,2],[-72,41],[-49,33],[-43,36],[-5,4],[-15,13],[-53,52],[-62,62],[-31,22],[-13,9],[-29,19],[-21,46],[-40,45],[-8,27],[53,19],[36,30],[1,1],[88,75],[99,84],[47,40],[30,35],[8,9],[49,57],[60,55],[19,23],[9,32],[-21,58],[5,27],[11,12],[45,26],[28,22],[22,27],[12,16],[8,18],[15,32],[11,22],[17,39],[27,31],[15,17],[6,7],[2,2],[5,4],[18,17],[3,2],[6,6],[2,1],[15,14],[3,4],[16,18],[45,91],[21,87],[19,40],[12,26],[12,21],[5,7],[19,33],[38,53],[23,32],[10,13],[4,11],[2,6],[0,8],[-1,8],[0,12],[-12,33],[-15,39],[10,73],[7,20],[7,17],[18,26],[8,13],[12,17],[1,2],[7,12],[13,24],[4,7],[10,17],[19,33],[15,26],[54,59],[6,5],[14,13],[7,7],[49,43],[32,28],[23,38],[5,11],[18,38],[11,23],[20,23],[4,3],[29,26],[4,3],[2,2],[11,10],[11,8],[3,5],[5,4],[0,1],[10,11],[27,29],[25,41],[21,44],[13,28],[27,28],[33,17],[34,13],[182,38],[96,32],[90,52],[90,36],[36,27],[13,32],[10,24],[1,22],[1,17],[5,78],[21,59],[13,39],[5,28],[-7,35],[-21,41],[-6,13],[-24,48],[-4,39],[-2,23],[-5,45],[-13,61],[-3,14],[-3,14],[2,24],[19,34],[26,27],[6,5],[11,10],[10,8],[58,49],[19,17],[33,27],[11,10],[62,53],[7,8],[5,6],[13,16],[26,40],[2,3],[4,6],[27,42],[29,33],[23,27],[17,15],[23,12],[162,58],[126,74],[55,33],[33,15],[40,13],[41,5],[109,-1],[125,34],[61,-1],[65,6],[129,-15],[25,1],[11,0],[11,3],[22,4],[43,17],[88,43],[8,4],[64,65],[1,1],[34,34],[28,22],[32,12],[51,10],[58,11],[39,16],[10,8],[1,0],[14,11],[4,7],[8,14],[6,71],[2,18],[3,35],[7,18],[20,31],[42,33],[101,53],[36,20],[9,6],[57,40],[20,2],[39,-13],[27,2],[13,6],[23,18],[58,23],[4,24],[2,8],[6,12],[44,42],[28,27],[49,47],[37,45],[44,81],[17,56],[0,22],[59,35],[27,47],[3,4],[11,9],[28,9],[92,13],[66,-2],[22,-1],[101,5],[21,1],[97,-3],[24,3],[56,5],[107,23],[56,15],[213,69],[36,16],[10,12],[4,16],[15,64],[16,72],[3,12],[2,8],[2,12],[3,12],[24,104],[74,321],[54,235],[19,85],[74,321],[74,321],[73,320],[24,102],[48,211],[76,329],[74,321],[19,84],[55,236],[33,144],[41,177],[2,10]],[[54774,76220],[-6,-462],[-9,-573],[0,-2],[-5,-414],[-9,-432],[-2,-132],[0,-1],[-3,-40],[-6,-47],[-8,-210],[3,-30],[-21,-884],[-1,-28],[12,-491],[-1,-32],[-2,-260],[-1,-40],[-1,-112],[-5,-137],[-2,-66],[-4,-109],[1,-35],[1,-13],[5,-69],[0,-10],[-2,-197],[0,-4],[0,-28],[-2,-111],[0,-62],[-1,-48],[0,-36],[0,-120],[0,-1],[-2,-405],[1,-127],[0,-84],[0,-196],[-2,-1148],[1,-84],[2,-443],[2,-515],[3,-552],[0,-22],[0,-1],[0,-28],[-11,-682],[0,-79],[-1,-109],[0,-89],[0,-32],[-2,-460],[1,-96],[-1,-58],[-1,-225],[-1,-228],[-3,-527],[0,-4],[-2,-204],[-13,-266],[-7,-659],[-4,-128],[-10,-340],[-1,-95],[-7,-281],[-4,-169],[0,-1],[-17,-658],[-1,-42],[-4,-140],[0,-1],[1,-69],[0,-36],[5,-424],[0,-3],[2,-260],[1,-63],[0,-2],[2,-131],[0,-52],[1,-32],[1,-85],[4,-322],[-864,-126],[-34,-5],[-300,-55],[-50,-7],[-317,-48],[-323,-48],[-2,-1],[-873,-131],[-1,0],[-26,-4],[-153,-23],[-132,-19],[-12,-3],[-159,-27],[12,-36],[10,-31],[2,-5],[79,-237],[19,-55],[78,-228],[2,-6],[3,-46],[-4,-187],[-9,-322],[0,-14],[-1,-9],[-2,-136],[-4,-317],[0,-2],[-2,-179],[-53,-273],[-246,-1267],[164,21],[736,93],[136,17],[1,0],[95,12],[247,31],[430,54],[71,9],[13,2],[53,6],[40,5],[50,6],[128,17],[406,56],[192,-603],[63,-182],[29,-73],[3,-6],[22,-63],[40,-130],[6,-19],[102,-333],[0,-1],[123,-399],[16,-53],[7,-23],[150,-487],[12,-40],[303,-984],[3,-32],[68,-228],[162,-481],[24,-90],[38,-137],[2,-7],[10,-40],[40,-146],[8,-29],[70,-230],[13,-44],[136,-453],[96,-322],[8,-26],[2,-8],[17,-55],[10,-32],[132,-433],[67,-217],[-885,-121],[-434,-59],[-28,-2],[-33,-4],[-466,-63],[-411,-56],[-123,-19],[-157,-19],[11,-34],[63,-200],[17,-51],[20,-64],[46,-147],[196,-604],[0,-2],[29,-88],[2,-6],[49,-154],[1,-2],[70,-216],[25,-76],[62,-192],[-59,-7],[-69,-8],[-134,-17],[-172,-22],[-123,-15],[-317,-39],[-437,-54],[-444,-54],[-709,-87],[-25,-4],[-80,-10],[-16,-2],[-23,-3],[-30,-4],[-130,-16],[-150,-19],[-51,-6],[-104,-13],[-139,-18],[-123,-16],[-113,-14],[-7,-2],[-423,-67],[-18,-3],[-223,-33],[-229,-32],[-27,-3],[-64,-9],[-50,-7],[-59,-9],[-25,-4],[-107,-18],[-15,-2],[-60,-8],[-241,-26],[-32,-4],[-26,-4],[-86,-9],[-37,-5],[-57,-6],[-4,-1],[-237,-30],[-191,-27],[-275,-38],[-169,-24],[-9,-1],[-360,-51],[-17,-2],[-8,-1],[-53,-7],[-1,0],[-45,-6],[-4,-1],[-164,-20],[-201,-29],[-193,-25],[-18,-3],[-115,-14],[-46,-6],[-62,-8],[-232,-24],[-63,-7],[-97,-13],[-196,-26],[-131,-17],[-129,-17],[-151,-20],[-212,-26],[-208,-25],[-50,-6],[-201,-24],[-68,-8],[-23,-3],[-10,-1],[-195,-23],[-60,-7],[-70,-7],[-94,-13],[-178,-23],[-108,-14],[-43,-6],[-97,-11],[-294,-36],[-87,-10],[-50,-6],[-52,-7],[-128,-16],[-212,-25],[-26,-4],[-43,-6],[-32,-5],[-64,-11],[-62,-7],[-32,-3],[-76,-10],[-7,-1],[-26,0],[-1,0],[-57,-7],[-2,0],[-199,-25],[-90,-12],[-110,-14],[-86,-11],[-62,-8],[-103,-10],[-42,-5],[-41,-6],[-66,-10]],[[73423,59334],[57,-160],[63,-175],[106,-314],[64,-183],[50,-146],[141,-409],[114,-331],[18,-51],[13,-37],[44,-128],[125,-362],[142,-416],[29,-84],[114,-332],[9,-30],[8,-25],[80,-261],[8,-23],[1,-3],[43,-148],[14,-40],[17,-49],[58,-170],[139,-385],[23,-63],[9,-24],[47,-132],[88,-245],[9,-23],[50,-122],[2,-5],[49,-119],[7,-27],[5,-19],[17,-46],[15,-40],[5,-13],[175,-450],[114,-292],[0,-1],[15,-38],[12,-51],[159,-426],[-148,-19],[-128,-20],[22,-69],[11,-37],[62,-172],[3,-10],[9,-23],[40,-111],[12,-34],[39,-107],[33,-95],[1,-3],[93,-276],[138,-401],[56,-163],[46,-139],[34,-104],[56,-145],[-96,-16],[-3,0],[-292,-32],[-33,-3],[-117,-16],[-86,-9],[-2,0],[-74,-8],[-1,0],[-148,-16],[-369,-45],[-254,-21],[-81,-9],[-109,-12],[-90,-11],[-258,-30],[-95,-10],[-148,-7],[-49,-3],[-1,0],[-310,-14],[-207,-10]],[[73237,50736],[-53,-5],[-1,-1],[-418,-47],[-70,-8],[-264,-34],[-92,-12],[-76,-9],[-72,-13],[-614,-84],[-943,-132],[-406,-57],[-109,-13],[-131,-15],[-181,-22],[-68,-8],[-466,-54],[-537,-64],[-182,-22],[-427,-50],[-2,0],[-58,-7],[-251,-28],[-207,-26],[-356,-41],[81,-277],[121,-416],[137,-469],[17,-58],[54,-185],[42,-144],[37,-154],[17,-17],[8,-36],[11,-51],[28,-92],[12,-50],[19,-55],[13,-46],[30,-107],[72,-227],[20,-40],[14,-45],[37,-119],[33,-104],[3,-19],[-75,-8],[-135,-17],[-60,-9],[-1025,-125],[-227,-28],[-2,0],[-1004,-124],[-229,-28],[-138,-16],[-172,-21],[250,-914],[81,-300],[183,-650],[15,-48],[-25,-3],[-20,-2],[-315,-38],[-258,-30],[-490,-59],[-291,-34],[-731,-87],[-1,0],[-296,-35],[-313,-38],[-184,-21],[-48,-6],[-40,-4],[-64,-8],[8,-26],[13,-42],[43,-143],[91,-300],[0,-1],[5,-22],[83,-201],[36,-88],[8,-29],[100,-357],[219,-872],[6,-23],[7,-22],[31,-111],[42,-143],[15,-64],[24,-87],[9,-33],[104,-390],[80,-297],[118,-441],[13,-49],[77,-289],[7,-26],[91,-340],[2,-8],[12,-42],[9,-34],[102,-382],[-128,-16],[-228,-29],[-186,-23],[-3,-1],[-68,-8],[-367,-47],[-32,-4],[-144,-18],[-135,-21],[-417,-57],[-227,-29],[-26,-4],[-33,-4],[-67,-9],[-51,-6],[-18,-2],[-266,-33],[-64,-11],[-166,-19],[-600,-69],[-45,-9],[-480,-53],[-1,0],[-155,-15],[-85,-10],[-133,-16],[-157,-177],[-30,-35],[-9,-10],[-141,-153],[-403,-454],[-18,6],[-50,18],[-13,5],[-208,76],[-83,31],[-679,259],[-48,-33],[-507,-369],[-2,-1],[-21,-11],[-144,-74],[-2,-1],[-145,-85],[-5,-10],[-3,-6],[-62,-113],[-33,-58],[-148,-282],[-76,-147],[-18,-34],[-71,-139],[-136,18],[-165,21],[-30,3],[-5,-13],[-168,27],[-173,28],[122,229],[12,23],[-315,53],[-38,6],[-3,10],[-94,-7],[-6,37],[-21,148],[-163,-28],[-11,25],[-11,-3],[-13,30],[-64,-16],[-29,37],[-96,-26],[-138,-35],[-72,-19],[-1,0],[-36,-10],[-24,-7]],[[54921,37979],[-56,-14]],[[54865,37965],[-1,3],[-15,43],[-25,16],[-17,10],[-26,7],[-23,2],[-24,1],[-1,0],[-12,1],[-14,2],[-1,0],[-10,2],[-2,0],[-20,5],[-43,11],[-161,42],[-31,8],[-41,10],[-24,6],[-27,12],[-33,29],[-12,35],[24,16],[4,4],[17,14],[10,16],[14,23],[-2,23],[-18,40],[-13,28],[-54,-12],[-111,-16],[-4,0],[-421,-66],[-111,-17],[17,-66],[-92,-12],[-12,-2],[-32,-4],[-78,-12],[-518,-78],[-19,55],[-169,-26],[-568,-89],[-41,-6],[-575,-89],[-49,-8],[-187,-29],[-34,-5],[-521,-82],[-198,-30],[-73,-12],[-70,-13],[-209,-34],[-146,-24],[-27,-4],[-149,-23],[-108,-17],[-53,-8],[-654,-100],[-106,-15],[-32,-5],[-24,-4],[-35,-6],[-28,-6],[-39,-6],[-54,-8],[-108,-16],[-32,-5],[-142,-22],[-118,-18],[-93,-15],[-508,-79],[-28,-4],[-115,-18],[-29,-4],[-201,-30],[-33,-6],[-130,-20],[-653,-94],[-36,-6],[-84,-12],[-57,-8],[-312,-45],[-108,-15],[-28,95],[-53,137],[-9,35],[-8,33],[-46,191],[-25,97],[-18,68],[-10,37],[-51,184],[-2,6],[-93,333],[-9,48],[-2,22],[-87,322],[-83,305],[-99,-12],[-582,-66],[-390,-46],[-91,-11],[-26,-3],[-49,-5],[-251,-29]],[[78167,32263],[-14,-90],[-58,-32],[-25,-83],[-64,12],[-30,60],[-66,32],[-77,27],[-35,-32],[-48,-17],[-15,69],[-89,183],[-35,85],[-14,81],[0,68],[26,71],[55,60],[49,68],[20,61],[62,-5],[59,-36],[-11,-88],[24,-88],[88,-33],[10,-50],[-5,-91],[23,-73],[56,-42],[65,-2],[27,-57],[22,-58]],[[78540,32771],[-51,-11],[-33,92],[-4,61],[-30,97],[54,52],[52,-18],[23,-32],[40,-30],[40,-62],[38,-32],[-31,-66],[-45,-31],[-53,-20]],[[80954,33079],[-36,-24],[-47,39],[2,87],[77,-7],[100,-51],[-44,-39],[-52,-5]],[[79782,33280],[-91,-34],[-43,70],[-70,62],[52,38],[67,-10],[75,-14],[77,-48],[-67,-64]],[[82530,33365],[-40,-34],[-72,4],[27,61],[19,35],[64,45],[18,-70],[-16,-41]],[[78842,33541],[-72,-68],[-85,-8],[-66,-49],[-52,55],[27,42],[62,28],[79,-2],[6,70],[37,33],[51,-43],[13,-58]],[[85868,33743],[58,-26],[74,1],[53,-55],[-9,-90],[-67,-17],[42,-58],[-48,-45],[-37,-46],[-95,10],[-65,15],[-92,41],[-58,22],[-16,50],[40,48],[61,26],[-59,61],[36,49],[93,-17],[17,35],[72,-4]],[[80564,33810],[15,-53],[-98,10],[-57,34],[63,22],[11,61],[68,-9],[-2,-65]],[[79197,34096],[14,-61],[57,2],[42,-28],[20,-70],[37,-66],[-21,-61],[77,-42],[68,-31],[91,-27],[-32,-58],[-31,-54],[-39,-81],[-60,-23],[-79,7],[-47,29],[-17,50],[13,48],[7,52],[-9,42],[-63,-37],[-57,34],[-46,34],[-59,60],[-30,57],[-35,46],[93,56],[-49,34],[-66,56],[34,59],[110,11],[77,-38]],[[83260,33995],[-55,-33],[-55,12],[-20,50],[54,73],[25,66],[88,-1],[78,-10],[5,-69],[-86,-58],[-34,-30]],[[85549,34196],[41,-23],[100,13],[84,3],[100,-24],[98,-30],[78,-12],[91,-42],[76,-55],[57,-30],[49,-45],[-13,-61],[65,-39],[19,-52],[39,-34],[-57,-64],[-94,-28],[-84,33],[-18,53],[-74,36],[18,54],[-61,32],[-71,14],[-50,47],[-34,39],[-43,-25],[1,-56],[-44,-57],[-92,-13],[-72,4],[19,90],[-48,38],[-58,28],[-37,27],[-64,19],[-47,-3],[-91,-6],[-82,13],[-63,3],[-24,41],[81,44],[-56,28],[53,21],[58,12],[105,-11],[92,-8],[53,26]],[[84575,34107],[53,-60],[-38,-64],[-43,-56],[-27,-53],[12,-55],[-31,-52],[-60,-49],[77,-29],[87,-6],[73,-13],[59,-25],[45,-51],[-114,-48],[84,-58],[76,-2],[89,-21],[12,-63],[74,-49],[58,-44],[34,-13],[51,-53],[-68,-2],[-79,18],[-36,-54],[-28,-47],[17,-66],[18,-71],[-10,-45],[12,-60],[63,-49],[-74,-51],[-66,-25],[-76,-12],[-84,-14],[44,82],[-79,43],[-107,1],[-19,-66],[-10,-67],[-45,61],[-32,51],[-55,65],[-36,73],[67,73],[-12,83],[-51,24],[-33,48],[-47,66],[-28,51],[65,24],[-37,51],[-90,49],[-36,49],[-37,44],[61,31],[-32,27],[-17,33],[30,43],[-39,22],[-15,37],[-20,58],[4,53],[69,74],[7,72],[93,62],[69,-5],[41,34],[21,72],[61,31],[86,9],[70,6],[40,-10],[-28,-58],[-83,-54]],[[84803,34314],[-25,-33],[-75,0],[-106,29],[51,39],[75,1],[80,-36]],[[83968,33929],[-58,-11],[-65,35],[-72,4],[-24,75],[59,55],[19,52],[25,45],[-38,33],[88,37],[-48,21],[-74,6],[61,45],[66,26],[79,-13],[37,-32],[39,-45],[80,-70],[25,-73],[8,-45],[7,-13],[-28,-75],[-40,-15],[-91,-34],[-55,-8]],[[83143,34465],[-100,-10],[-74,14],[-12,49],[40,37],[62,-5],[56,-5],[59,-10],[-31,-70]],[[78772,34254],[-49,-19],[-45,25],[-40,40],[-1,60],[-41,27],[-17,41],[1,69],[-1,84],[5,95],[43,49],[65,-24],[37,-47],[28,-46],[22,-57],[-3,-69],[-41,-77],[45,-56],[55,-72],[-63,-23]],[[78637,34862],[-82,-17],[-71,14],[60,80],[88,-7],[50,-27],[-45,-43]],[[86423,35089],[-84,-20],[-80,3],[-79,48],[-51,79],[69,-25],[58,-23],[83,-37],[84,-25]],[[83027,35045],[8,-76],[96,21],[62,-40],[-66,-59],[-47,-38],[-54,-38],[28,-57],[38,-47],[-49,-29],[-67,-4],[-43,12],[-46,-2],[-63,29],[-59,-28],[-55,39],[19,59],[76,10],[-23,56],[-16,81],[-14,60],[8,66],[31,59],[-18,56],[27,58],[158,15],[9,1],[60,5],[13,-6],[31,-88],[-44,-115]],[[86439,35309],[70,-25],[71,3],[89,-12],[87,-43],[85,-9],[70,-8],[-37,-56],[-81,-49],[-124,-17],[-115,-34],[-60,19],[111,38],[-78,18],[-80,14],[-80,27],[-59,-3],[-49,41],[52,44],[62,38],[66,14]],[[87752,35479],[-96,-45],[-74,11],[16,52],[48,20],[67,13],[39,-51]],[[86960,35546],[-59,-1],[-78,40],[91,19],[48,31],[43,-64],[-45,-25]],[[90162,35568],[-54,-3],[-16,77],[48,56],[51,38],[84,14],[5,-59],[-63,-68],[-55,-55]],[[86974,35746],[36,-74],[-84,29],[-81,29],[-24,49],[98,6],[55,-39]],[[89260,35855],[34,-103],[-44,-28],[-89,21],[-20,33],[2,0],[-4,4],[24,46],[9,-2],[88,29]],[[86750,35803],[27,-75],[-37,-70],[-60,-47],[-76,58],[-59,36],[-134,37],[-102,-22],[-76,-45],[-47,-48],[-28,-62],[-3,-70],[76,-35],[25,-46],[50,-30],[-42,-74],[-62,-60],[-26,31],[-74,46],[-46,55],[13,61],[-76,13],[-72,-17],[18,-56],[39,-53],[-81,-28],[-57,63],[-49,67],[-21,76],[-53,61],[-35,55],[14,60],[-10,82],[13,89],[93,21],[51,-58],[11,-55],[20,-44],[-6,-61],[69,4],[35,61],[90,8],[143,36],[94,56],[-16,98],[-20,64],[45,52],[66,-12],[59,-70],[65,-34],[27,-38],[46,-22],[40,-27],[71,-10],[68,-21]],[[89811,36012],[-62,-69],[-10,72],[22,66],[96,27],[-16,-46],[-30,-50]],[[89417,36086],[-86,-51],[-59,8],[24,58],[65,48],[65,37],[32,-50],[-41,-50]],[[85398,36370],[-77,-5],[-26,59],[-3,60],[54,29],[51,3],[17,-79],[-16,-67]],[[86620,36521],[-27,-33],[-61,42],[-30,53],[74,13],[78,-42],[-34,-33]],[[91792,36385],[-29,-52],[62,17],[43,34],[33,31],[48,17],[84,11],[74,-5],[18,-39],[79,-43],[-65,-25],[-56,-1],[-43,-9],[-42,-22],[13,-94],[-57,-28],[-86,15],[-89,-14],[-69,-52],[-31,-44],[-56,-7],[-94,-9],[-105,-30],[-68,0],[-64,8],[-60,18],[-72,3],[-10,47],[6,51],[29,47],[-62,8],[-76,-16],[-34,50],[-51,47],[6,66],[68,0],[78,-13],[53,-9],[55,-31],[31,46],[-9,51],[12,66],[99,61],[60,35],[68,49],[70,-50],[99,-12],[41,-30],[64,-51],[57,-51],[-22,-41]],[[89995,36997],[-59,-27],[-73,40],[30,46],[37,24],[42,-5],[23,-78]],[[90095,37127],[-55,-8],[-45,54],[58,60],[56,51],[38,-9],[28,-65],[-42,-52],[-38,-31]],[[90103,37607],[43,-62],[-71,3],[-68,-8],[-49,-6],[-64,35],[69,23],[73,26],[67,-11]],[[97700,41685],[-66,-19],[-14,53],[-45,41],[-18,75],[-40,54],[-27,56],[78,-21],[52,-53],[39,-45],[44,-44],[17,-40],[-20,-57]],[[99094,42292],[-70,-32],[-73,77],[-40,31],[32,35],[60,1],[62,-59],[29,-53]],[[94962,42268],[-50,0],[-90,34],[-16,48],[3,8],[-2,66],[0,38],[50,-2],[95,-87],[-54,-48],[34,-24],[31,-4],[21,-10],[-22,-19]],[[96026,42265],[-18,-19],[-35,5],[-29,7],[-2,-2],[-31,6],[-99,34],[-102,58],[-21,13],[8,33],[58,86],[52,34],[9,9],[54,-25],[39,-31],[117,-208]],[[94749,42823],[26,-8],[-1,1],[0,1],[105,-28],[62,-25],[60,-35],[16,-50],[0,-1],[-14,-12],[-78,-9],[-94,53],[-127,82],[45,31]],[[98279,43627],[66,-3],[81,5],[84,-38],[-15,-49],[-57,-53],[-44,-25],[-14,-41],[43,-44],[81,-34],[64,-14],[74,-20],[33,-45],[45,-56],[42,-33],[49,11],[39,-26],[54,2],[67,21],[46,-11],[51,-39],[61,-40],[25,-67],[-2,-79],[2,-74],[-32,-52],[6,-49],[-42,-50],[-61,-7],[-51,-26],[-18,-1],[-41,-3],[-45,-72],[-53,10],[-37,46],[-48,51],[33,57],[-23,44],[-59,7],[79,76],[-46,32],[-81,-17],[-104,7],[-63,-32],[-58,-40],[30,-59],[5,-58],[-40,23],[-95,0],[-51,46],[37,48],[49,43],[28,54],[-63,36],[-44,1],[-42,32],[-8,55],[-36,37],[54,1],[58,3],[44,16],[46,1],[35,47],[-37,67],[8,69],[-73,45],[-83,-10],[-67,-37],[-63,-3],[-35,37],[-134,33],[-99,22],[-93,-4],[-74,42],[2,70],[-40,52],[82,-2],[65,-50],[67,-16],[20,-41],[83,2],[90,51],[22,48],[9,77],[22,7],[70,22],[57,-21],[63,-15]],[[97931,43670],[-5,-30],[-242,130],[68,32],[24,17],[59,-16],[98,-28],[4,-63],[5,-33],[0,-2],[-11,-7]],[[74853,33898],[-44,18],[-14,19],[-8,27],[-11,34],[-9,27],[-3,10],[-18,55],[-44,136],[-45,156],[-38,120],[-6,20],[-13,39],[-41,121],[-18,55],[-3,6],[-23,71],[-195,584],[-132,395],[-19,57],[302,35],[95,12],[31,3],[146,22],[-89,311],[-17,58],[-1,3],[-24,84],[0,1],[-82,277],[-60,207],[-99,347],[-11,36],[-1,4],[-129,451],[-31,107],[-451,-55],[-99,361],[-62,225],[-21,73],[-24,87],[-121,441],[-84,304],[-15,51],[-40,145],[-30,58],[-39,109],[-33,94],[-7,23],[0,1],[-11,45],[-51,181],[-72,252],[-30,107],[-37,126],[-39,135],[-137,467],[-5,19],[-32,109],[-28,94],[-29,101],[-90,308],[-127,434],[-17,56],[-18,57],[-4,10],[-7,16],[-11,49],[-8,49],[-67,170],[-2,11],[-36,171],[-47,158],[-2,8],[-119,399],[-88,296],[-36,122],[269,34],[68,8],[255,32],[294,37],[174,22],[831,104],[341,43],[285,35],[60,7],[0,-2],[150,18],[251,32],[-130,476],[-55,202],[-31,114],[-52,198],[-22,111],[-86,406],[-25,118],[-88,398],[-2,8],[-3,14],[-35,132],[-57,211],[-110,475],[-73,317],[-3,14],[-67,340],[-27,84],[-12,57],[-15,66],[1,43],[-15,47],[-6,17],[-58,176],[-33,134],[-11,46],[-23,98],[-6,22],[-16,68],[-201,670],[-17,59],[-79,267],[-90,304],[-35,122],[-45,155],[-71,193],[-6,23],[-17,53],[-61,197],[-13,31],[-16,63],[-17,48],[-13,42],[-8,26],[0,1],[-15,47]],[[79267,60244],[68,-69],[99,-1],[100,0],[29,0],[616,-3],[350,-222],[177,68],[58,50],[3,2],[137,-117],[74,-17],[35,-46],[3,-5],[16,-11],[24,-17],[29,5],[51,-10],[38,-7],[9,-5],[35,17],[14,6],[1,5],[5,6],[28,-4],[11,-11],[20,-13],[10,-9],[4,-4],[9,-5],[11,-1],[12,2],[13,3],[6,4],[4,11],[5,9],[10,10],[6,14],[8,6],[20,10],[-11,13],[3,43],[-56,22],[-78,30],[-5,50],[-66,29],[-40,33],[-45,38],[-16,30],[-39,74],[-31,60],[-21,88],[-4,21],[92,1],[12,2],[21,4],[11,0],[16,1],[6,-9],[14,-2],[9,-7],[2,-9],[1,-1],[3,-3],[3,-3],[10,-8],[4,-8],[6,-9],[10,-9],[1,-3],[2,-13],[23,-14],[14,-9],[15,-8],[30,-38],[67,-45],[32,-22],[43,15],[72,25],[85,3],[-24,-48],[106,-126],[40,-35],[75,-65],[84,-213],[160,-134],[-26,-78],[305,-265],[110,-167],[128,-85],[89,-60],[72,25],[260,-163],[40,-25],[128,-81],[140,62],[-101,157],[0,1],[118,44],[176,-84],[567,-340],[61,2],[386,12],[161,-101],[63,-21],[231,-75],[227,-73],[89,2],[5,1],[17,48],[60,5],[75,7],[85,7],[309,-62],[386,-165],[116,-5],[373,-18],[182,95],[9,52],[40,11],[22,30],[14,17],[6,26],[-64,1],[-32,33],[-58,10],[20,53],[47,0],[12,-12],[116,14],[214,56],[114,-76],[96,4],[85,61],[200,20],[162,-42],[65,-130],[32,-4],[18,-2],[9,-10],[42,-46],[139,-109],[91,-71],[64,-38],[86,-82],[46,-45],[2,-14],[2,-20],[33,-69],[19,-49],[1,0],[-43,-21],[-57,-27],[-9,-4],[-21,-10],[-8,-3],[2,-8],[15,-58],[1,-1],[17,-38],[9,-21],[32,-51],[39,-48],[14,-17],[19,-33],[23,-95],[2,-53],[-61,-132],[-18,-30],[-20,-23],[-34,-18],[-51,-12],[-28,-6],[-26,-10],[-25,-19],[-19,-24],[-20,-38],[-8,-33],[-8,-61],[4,-57],[11,-38],[18,-39],[19,-42],[17,-50],[15,-26],[25,-21],[76,-47],[28,-31],[26,-28],[10,-7],[78,-65],[30,-30],[36,-49],[29,-48],[12,-43],[-4,-20],[-7,-7],[-16,-3],[-1,0],[-29,7],[-19,7],[-44,17],[-35,3],[-28,-9],[-10,-5],[-8,-4],[-25,-12],[-21,-10],[-28,-6],[-28,1],[-81,29],[-12,3],[-31,9],[-64,18],[-84,24],[-21,6],[-13,6],[-13,5],[-64,29],[-52,23],[-22,6],[-22,3],[-16,1],[-29,-6],[-10,-7],[-9,-19],[7,-25],[32,-54],[11,-45],[-6,-26],[-7,-9],[-10,-7],[-14,-2],[-10,-2],[-13,3],[-15,4],[-19,8],[-15,7],[-77,53],[-59,41],[-46,27],[-35,12],[-33,0],[-21,-6],[-21,-5],[-32,-15],[-1,-1],[-23,-11],[-26,-23],[-9,-20],[1,-41],[11,-25],[22,-22],[64,-40],[7,-14],[-15,-13],[-30,-8],[-9,1],[-9,0],[-38,2],[-8,1],[-11,0],[-10,1],[-14,-1],[-35,-1],[-3,0],[-54,-1],[-37,-1],[-60,-15],[-19,-6],[-35,-9],[-51,-5],[-31,-3],[-24,-8],[-36,-20],[-74,-71],[-27,-10],[-22,-3],[-37,0],[-11,0],[-28,0],[-76,14],[-32,6],[-15,-1],[-18,-9],[-15,-23],[-8,-33],[-1,-27],[7,-33],[7,-35],[23,-49],[12,-27],[8,-17],[17,-19],[19,-23],[60,-54],[44,-40],[6,-4],[114,-85],[46,-35],[66,-80],[35,-55],[10,-29],[3,-30],[-8,-29],[-24,-54],[-3,-33],[7,-34],[13,-28],[24,-32],[91,-74],[20,-28],[5,-15],[0,-25],[-30,-68],[0,-28],[13,-68],[40,-113],[63,-97],[17,-20],[27,-23],[39,-18],[45,-12],[63,-11],[37,-6],[27,-5],[46,-20],[20,-20],[72,-106],[90,-85],[33,-25],[17,-12],[40,-24],[53,-32],[10,-6],[69,-47],[59,-46],[301,-231],[49,-45],[20,-26],[56,-116],[7,-14],[64,-96],[11,-15],[41,-51],[9,-23],[-29,-31],[-32,-17],[-14,-2],[-22,-3],[-35,1],[-45,2],[-39,-18],[-21,-9],[-19,-16],[-23,-29],[-40,-81],[-11,-13],[-1,-28],[12,-41],[12,-20],[30,-28],[80,-53],[19,-23],[2,-13],[-6,-19],[-66,-123],[-4,-27],[6,-56],[4,-32],[-17,-42],[-36,-38],[-3,-2],[-122,-73],[-55,-39],[-37,-32],[-45,-50],[-26,-21],[-54,-28],[-8,-3],[-138,-49],[-11,-5],[-33,-16],[-28,-24],[-13,-24],[-1,-22],[15,-36],[47,-75],[7,-33],[-5,-35],[-24,-51],[-49,-64],[-40,-52],[-19,-45],[-18,-41],[-15,-34],[-8,-18],[-20,-27],[-25,-20],[-11,-5],[-17,-7],[-11,-4],[-39,-11],[-33,-17],[-14,-20],[1,-14],[2,-21],[-3,-12],[-21,-25],[-50,-25],[-89,-26],[-23,-7],[-22,-30],[-16,-8],[-13,-7],[-19,-3],[-35,5],[-48,16],[-30,7],[-18,-1],[-17,0],[-8,-1],[-23,-9],[-23,-24],[-22,-59],[-46,-86],[0,-21],[12,-17],[10,-8],[82,-39],[86,-67],[27,-13],[15,-2],[9,-1],[35,15],[22,-11],[-17,-34],[33,-58],[-5,-18],[-4,-13],[-7,-19],[4,-10],[11,-26],[6,-16],[8,-19],[11,-58],[72,-37],[8,-20],[-40,-47],[48,-77],[53,-42],[11,-59],[13,-8],[28,-16],[63,-100],[55,-54],[45,-15],[47,-1],[60,-2],[43,-15],[113,-103],[44,-78],[123,-90],[45,-30],[27,-36],[0,-30],[56,-46],[-7,-63],[33,-60],[14,-25],[7,-11],[100,-144],[4,-68],[1,-1],[1,-1],[65,-95],[-18,-47],[-13,-139],[58,-44],[211,-33],[70,-72],[45,-31],[26,-37],[20,-27],[119,-81],[146,-28],[53,-96],[-21,-99],[-111,-40],[-13,-5],[-11,-3],[-10,-41],[6,-56],[20,-35],[37,-30],[59,-29],[16,-8],[57,-24],[110,-46],[18,-5],[30,-10],[27,-8],[44,-11],[25,-6],[82,-20],[25,-6],[18,-8],[43,-18],[53,-37],[26,-23],[146,-129],[10,-6],[36,-23],[198,-126],[117,-93],[59,-30],[79,-25],[2,0],[78,-33],[41,-13],[65,-10],[44,4],[42,13],[19,10],[35,17],[20,10],[56,27],[48,20],[51,12],[50,6],[85,10],[20,2],[40,17],[23,22],[7,7],[10,20],[13,47],[-2,47],[-12,33],[-9,12],[-2,8],[-5,20],[42,5],[37,4],[168,19],[91,24],[9,2],[7,2],[14,3],[72,17],[49,12],[54,19],[34,16],[8,8],[11,11],[5,8],[10,18],[1,9],[4,29],[6,37],[1,8],[-16,7],[-12,6],[-19,9],[-15,7],[-10,4],[-13,7],[-6,2],[-7,4],[-23,14],[-25,16],[-19,17],[-22,35],[-3,39],[-1,11],[9,28],[17,47],[21,35],[10,14],[16,19],[47,32],[62,29],[30,14],[25,27],[4,41],[-6,22],[-8,28],[1,29],[17,57],[9,28],[5,29],[9,42],[9,21],[15,34],[2,2],[5,5],[17,16],[14,9],[12,8],[11,5],[49,25],[36,13],[16,3],[7,1],[62,4],[125,-3],[80,-2],[21,-5],[47,-11],[169,-57],[167,-114],[138,-37],[53,-7],[84,-59],[27,-130],[43,-32],[134,-29],[63,-26],[48,-52],[28,-31],[49,-26],[11,-5],[38,-1],[24,0],[4,0],[34,-1],[18,11],[60,34],[47,27],[11,2],[71,15],[17,4],[6,1],[110,36],[11,4],[12,-26],[3,-9],[7,-14],[68,-38],[56,-18],[78,5],[52,-17],[72,-18],[47,-5],[84,-9],[101,-59],[90,-12],[65,-2],[130,-8],[94,-1],[95,-7],[51,-26],[57,-60],[43,-53],[23,-48],[36,-54],[12,-72],[25,-81],[42,-71],[61,-100],[69,-115],[34,-100],[7,-6],[144,-133],[153,-152],[158,-114],[87,-62],[149,-108],[93,-146],[16,-25],[13,-26],[60,-121],[38,-55],[46,-67],[14,-57],[-3,-85],[-3,-32],[-6,-57],[10,-49],[-37,-70],[-28,-64],[-129,-28],[-81,-20],[31,-49],[90,-38],[46,-29],[68,-63],[87,-35],[58,-32],[42,-47],[55,-65],[23,-52],[-61,-39],[-64,-14],[-49,-32],[-60,-40],[64,-15],[81,8],[63,0],[66,24],[96,23],[67,-20],[93,-62],[69,-72],[39,-59],[24,-54],[45,-42],[30,-36],[22,-32],[-66,-45],[97,-85],[15,-65],[25,-62],[49,-57],[30,-59],[34,-38],[61,-41],[59,-52],[-8,-55],[26,-33],[49,-26],[52,-36],[62,-50],[25,-46],[37,-66],[38,-59],[-3,-62],[-17,-59],[-91,-34],[-67,16],[-41,-35],[-6,-5],[29,-91],[59,-51],[55,-17],[65,18],[63,-7],[169,-101],[56,-60],[19,-40],[7,-49],[0,-1],[-14,-3],[-40,-8],[0,3],[-105,8],[-68,16],[-65,27],[6,65],[-91,34],[-62,15],[-36,22],[-89,32],[-48,-25],[-66,-22],[63,-68],[95,-21],[28,-9],[90,-103],[101,-82],[25,-43],[6,-11],[-25,-55],[-3,-6],[11,-112],[-59,-61],[-52,-43],[32,-66],[-83,-1],[-68,-30],[-48,18],[-68,-28],[-59,-2],[-43,49],[6,63],[-39,38],[-18,-54],[-27,-89],[-58,-36],[-25,-57],[-74,-17],[67,-76],[4,-51],[33,-21],[72,-23],[-5,-47],[-111,40],[-114,-2],[-189,43],[-211,108],[-21,90],[46,62],[51,-13],[10,-18],[28,-53],[93,33],[-29,14],[5,1],[-146,109],[-53,67],[-45,0],[-67,56],[44,56],[-9,47],[62,37],[-46,27],[-23,65],[21,12],[20,11],[-6,10],[-24,33],[-45,9],[-13,-27],[-58,-23],[11,-52],[-24,-65],[-56,-42],[-62,-36],[-67,-19],[-48,28],[73,63],[-42,49],[-65,-24],[-35,-38],[-10,-50],[-59,6],[-61,-10],[-75,28],[-48,1],[11,56],[78,34],[-10,77],[-51,46],[-9,-81],[-55,39],[-19,79],[-44,44],[-103,28],[25,-51],[48,-60],[1,-63],[-79,-37],[35,-86],[-44,-7],[-47,19],[-10,59],[-28,45],[-89,8],[1,-71],[77,-50],[30,-44],[5,-66],[51,23],[92,21],[70,5],[58,-42],[55,-31],[46,-28],[71,-6],[65,-52],[54,-1],[63,7],[66,-57],[15,-102],[14,-86],[-92,-29],[-57,3],[-110,29],[-107,22],[-73,6],[-59,18],[-88,15],[-64,23],[-56,38],[-36,47],[51,14],[43,19],[-80,67],[-73,33],[-42,23],[-50,51],[-67,-4],[-61,-17],[-57,17],[8,-36],[47,-36],[84,-80],[-61,9],[-70,2],[-60,50],[-34,66],[-43,31],[-35,41],[-32,52],[-8,12],[-33,-46],[-77,-15],[42,-78],[54,-78],[31,-51],[44,-34],[74,-22],[54,-23],[31,-31],[57,-26],[-45,-18],[78,-56],[112,-42],[69,-32],[54,-26],[40,-13],[41,29],[72,8],[98,-18],[93,-21],[91,-49],[-6,-77],[52,-60],[145,-107],[95,-66],[28,-53],[-37,-33],[-32,-127],[-101,17],[8,9],[-9,112],[-158,28],[-15,2],[-39,-51],[20,-32],[-10,-24],[-17,-2],[-23,9],[-94,77],[-7,-1],[-33,-47],[-1,-1],[73,-61],[92,-86],[-9,-49],[-23,-66],[0,-3],[-57,-71],[-53,-29],[-70,19],[-74,76],[-13,49],[-39,0],[-69,22],[-19,6],[-61,32],[-22,124],[-25,12],[-26,30],[-105,116],[-64,62],[-25,4],[0,-26],[0,-28],[-80,23],[-14,33],[-60,9],[-12,-26],[-2,-28],[-31,-1],[-15,5],[-53,70],[-75,32],[-48,42],[-11,4],[-32,-20],[-18,-17],[-40,0],[-61,35],[-12,36],[16,20],[61,10],[-39,54],[-113,39],[-75,-41],[93,-66],[41,-71],[-57,-23],[-53,7],[-75,53],[-74,46],[-35,15],[-45,-25],[-34,32],[-55,-4],[-68,43],[-83,25],[-87,33],[59,-96],[24,-62],[-53,-1],[-58,15],[-54,14],[-55,9],[-63,-14],[28,-62],[51,-48],[14,-13],[59,24],[74,-20],[128,0],[77,-1],[130,-8],[77,-14],[56,-22],[63,-44],[74,-26],[75,-10],[42,-42],[21,-64],[-17,-53],[-34,-44],[-54,-37],[-99,40],[54,60],[-62,59],[-60,5],[-89,19],[-86,-9],[17,-66],[33,-61],[-71,-32],[-16,-73],[66,-14],[46,-16],[25,41],[63,0],[81,9],[77,-13],[8,-60],[-25,-34],[-52,-26],[4,-63],[51,-10],[64,23],[81,-42],[75,8],[85,-10],[68,-9],[79,-24],[42,-54],[59,-12],[67,-22],[-23,-72],[62,-29],[35,-35],[34,-63],[49,-17],[29,-43],[18,-66],[29,-76],[10,-66],[-48,-42],[-20,-41],[17,-91],[-67,28],[-52,-59],[7,-57],[80,21],[53,-56],[-36,-63],[-88,12],[-52,48],[-51,48],[-65,9],[55,-66],[27,-58],[44,-55],[40,-38],[35,53],[63,-13],[5,-56],[-2,-3],[-13,-140],[-62,-61],[-82,-112],[-10,3],[-52,43],[-28,1],[-11,-72],[-6,-14],[-42,-51],[0,-5],[24,-14],[24,-14],[11,-7],[5,4],[58,33],[91,-24],[55,54],[56,61],[59,-14],[5,-67],[-69,-56],[9,-22],[92,23],[42,-38],[91,-14],[14,8],[26,15],[44,27],[-10,26],[-47,40],[18,97],[62,16],[14,12],[18,7],[49,-47],[65,18],[9,25],[-24,42],[-35,41],[-53,-13],[-51,5],[15,43],[14,59],[-51,73],[51,33],[-32,38],[-28,56],[-27,85],[-11,81],[55,12],[-13,48],[66,43],[-15,81],[-91,103],[-19,100],[-19,74],[-22,52],[3,48],[27,67],[3,4],[24,-6],[39,-104],[39,-1],[22,21],[0,1],[0,59],[-22,74],[6,52],[64,21],[37,-9],[39,-10],[13,-3],[25,-7],[55,-14],[75,-3],[2,-1],[1,-1],[3,-3],[93,-8],[2,1],[51,-3],[8,-9],[11,-53],[-24,-68],[-81,-7],[0,2],[-65,0],[7,-78],[6,-100],[-7,-25],[-3,-9],[-4,-2],[-35,-20],[4,-28],[-28,-42],[88,-26],[55,18],[24,-57],[-23,-65],[4,-61],[-56,-65],[60,9],[51,0],[56,-20],[76,23],[62,-48],[56,-26],[63,-13],[-29,99],[-10,56],[19,32],[56,-39],[60,-13],[-11,53],[-4,61],[65,44],[86,8],[24,16],[-6,38],[-45,21],[-35,-24],[-79,-41],[-64,-14],[-65,50],[-199,262],[10,38],[58,24],[95,0],[44,-67],[71,-110],[48,-69],[40,0],[16,37],[-46,47],[-72,71],[49,66],[11,38],[35,27],[46,2],[43,-42],[-11,-83],[2,-66],[32,-30],[65,-27],[70,-11],[35,78],[-87,126],[-117,115],[-155,69],[-57,9],[-48,34],[-73,9],[-38,43],[38,36],[35,13],[54,0],[45,-22],[13,-1],[5,14],[-59,53],[-32,60],[26,48],[65,20],[12,4],[102,-5],[69,-11],[56,-62],[5,-28],[9,-52],[2,-17],[31,-63],[54,-54],[159,-52],[110,-26],[3,0],[33,-15],[48,-49],[104,-68],[30,-29],[40,-34],[93,-12],[57,-36],[-61,-51],[-71,6],[-55,-37],[-36,-58],[51,-7],[42,5],[50,17],[7,-49],[52,5],[3,62],[50,54],[76,-48],[48,-53],[16,-58],[19,-67],[64,-81],[-58,-35],[-26,-27],[8,-13],[53,-18],[14,-76],[-69,-38],[-88,-91],[58,-72],[-63,-36],[-49,-15],[-51,-43],[-29,-35],[-72,-59],[31,-58],[157,66],[117,41],[59,97],[6,10],[29,47],[103,12],[95,-4],[40,77],[9,18],[-2,3],[-74,-15],[-14,46],[28,35],[2,2],[1,1],[5,7],[13,0],[32,12],[78,8],[1,3],[-90,59],[-9,58],[73,20],[70,5],[-5,44],[65,24],[70,40],[90,-18],[2,3],[-23,49],[62,18],[42,62],[-55,48],[-29,-53],[-48,-24],[-54,-2],[-63,-45],[-69,4],[-74,2],[-17,45],[48,45],[-35,73],[4,83],[-47,71],[-52,47],[-46,-2],[-49,33],[-55,70],[-20,89],[-43,36],[-33,43],[20,61],[-5,59],[-13,63],[-15,51],[-82,41],[-94,39],[-67,32],[-61,33],[-45,45],[34,41],[72,41],[83,-15],[74,-17],[42,-21],[67,-13],[54,19],[63,-37],[84,-12],[76,-37],[37,-34],[42,-33],[34,-48],[-11,-58],[44,-27],[71,-40],[40,-56],[63,-17],[81,-7],[98,3],[38,-62],[31,-81],[-6,-6],[23,-40],[-38,-155],[22,-9],[69,-16],[10,-7],[71,-37],[9,-41],[-96,20],[6,-38],[44,-66],[-7,-63],[3,-44],[-89,10],[23,-79],[5,-59],[-43,-54],[-52,-44],[51,-16],[42,-14],[53,-21],[93,19],[63,26],[34,38],[-7,54],[76,51],[81,-26],[60,38],[44,45],[50,76],[50,65],[113,12],[17,-17],[-3,-24],[27,-45],[3,-5],[23,-60],[12,-20],[-45,-37],[-76,-33],[-139,-52],[-53,-42],[-42,-89],[49,-47],[72,-39],[44,-54],[-18,-63],[2,-60],[2,-57],[13,-58],[25,-103],[40,-65],[32,-30],[19,-47],[14,-64],[14,-9],[139,12],[143,98],[223,34],[222,22],[108,-81],[-103,-132],[-250,-122],[-222,12],[-90,26],[-101,-7],[-47,-64],[-71,-31],[-29,-9],[-62,-59],[-9,-34],[-61,-62],[-53,-33],[-18,-20],[-30,-34],[-9,-26],[-35,-24],[-113,-4],[-90,-2],[-76,-27],[-8,-84],[-23,-43],[-47,-54],[-24,-44],[-103,-25],[-43,-26],[-91,-46],[75,-47],[-95,-50],[-110,-11],[-90,-3],[-71,-31],[-76,-13],[-89,-12],[-35,-32],[-76,-42],[-68,6],[32,67],[-33,67],[5,69],[17,58],[-42,28],[-77,2],[-59,-35],[-67,-45],[-66,-6],[-60,2],[-67,11],[-26,-67],[62,-32],[78,-42],[-62,-78],[73,-57],[-43,-77],[-24,-73],[-88,33],[-107,-1],[50,-58],[-36,-17],[-44,12],[-52,-47],[96,-60],[-30,-83],[-132,-40],[-92,-14],[-78,10],[-75,37],[-59,13],[-73,-12],[-83,-24],[-72,-12],[-97,-22],[-50,-8],[-60,-3],[-102,1],[-95,7],[-54,11],[-59,12],[10,-42],[56,-13],[62,-3],[36,-16],[55,-22],[79,8],[113,-3],[105,-40],[74,-76],[-58,-64],[-52,-55],[-9,-42],[-27,-34],[9,-60],[-14,-61],[-49,-18],[-50,-26],[-32,-77],[-78,-13],[-76,30],[-40,-50],[-25,-75],[-26,-89],[-35,-31],[-61,-32],[-37,-30],[-46,-41],[-36,-41],[-68,-9],[-104,-11],[-77,-33],[39,-68],[-94,-27],[-50,-26],[-26,-34],[-61,-24],[-29,-67],[-52,-68],[13,-55],[-84,-58],[-53,-56],[-53,-24],[64,-33],[-72,-49],[-68,-23],[-52,-15],[-74,-45],[-76,-15],[-61,0],[-61,-3],[-79,6],[-46,2],[-45,27],[-50,16],[-59,-16],[-53,-55],[-71,-40],[6,-54],[-68,-27],[-31,-28],[-83,4],[-79,12],[-66,24],[-82,11],[-76,-35],[91,-44],[52,-38],[65,-28],[114,-32],[40,-32],[62,-53],[-75,-17],[-60,-25],[-109,-5],[-89,1],[-51,-19],[55,-46],[-96,-16],[-73,-11],[-76,4],[-128,-24],[-60,-18],[-75,-3],[-70,3],[-107,5],[-70,41],[-53,48],[-46,-26],[-57,38],[26,59],[-29,37],[-27,34],[-14,55],[22,93],[23,77],[55,80],[23,73],[-58,58],[-64,62],[-80,-38],[-98,-15],[-136,-10],[-88,-5],[-80,-16],[-54,-19],[-64,-27],[-22,-16],[-52,-38],[-9,-18],[35,-12],[39,-189],[35,-76],[-18,-70],[1,-57],[20,-55],[36,-27],[50,-5],[85,-3],[46,-25],[28,-56],[21,-49],[69,-18],[22,-50],[-47,-63],[-64,2],[-63,27],[-63,40],[-84,-5],[-22,-24],[-10,-12],[-4,-3],[-33,-26],[-77,8],[-1,-1],[-18,-16],[13,-45],[-2,-24],[-70,-5],[-76,1],[-65,20],[-84,14],[1,93],[-42,36],[-79,26],[-34,55],[-39,59],[24,43],[-21,44],[7,68],[41,76],[-5,9],[-66,20],[-58,-15],[-52,-3],[-6,4],[-12,58],[56,65],[3,5],[-65,27],[-23,14],[-60,14],[-163,61],[-91,6],[-115,-6],[-76,6],[-44,-51],[-53,-6],[-15,65],[-30,92],[13,35],[25,7],[11,-5],[83,-21],[169,-38],[221,-2],[7,7],[1,76],[-52,35],[5,75],[9,66],[48,51],[26,78],[-3,22],[-22,188],[105,115],[9,14],[18,30],[26,44],[89,116],[22,43],[-17,17],[-27,4],[-33,4],[-116,10],[-119,45],[-102,-29],[-103,-29],[-25,-8],[-66,-18],[-189,-49],[-79,-46],[-128,-29],[-51,3],[-62,-17],[-67,-2],[-92,5],[-58,6],[-70,40],[-68,43],[-43,-6],[-56,-29],[2,-4],[-12,-7],[7,-45],[3,-17],[-53,-24],[-24,-3],[-20,-19],[14,-13],[0,-31],[-17,-7],[-52,-23],[14,-22],[7,-11],[68,-2],[20,0],[11,-11],[40,-38],[-30,-42],[-21,-29],[-130,-7],[-105,65],[-19,17],[-55,14],[-150,-45],[-79,5],[-51,58],[-2,57],[-73,11],[-27,94],[33,77],[-37,82],[33,14],[15,-5],[40,-15],[55,26],[-27,43],[2,35],[76,65],[-7,9],[-4,33],[39,51],[17,55],[-19,20],[-108,34],[-6,-8],[0,-67],[0,-27],[0,-3],[0,-31],[-61,-27],[-152,45],[-144,-9],[-151,-33],[-126,-15],[-12,-41],[46,-9],[81,1],[54,14],[18,5],[120,-2],[8,0],[87,-47],[13,-57],[5,-21],[7,-32],[-12,-76],[44,-69],[3,-4],[7,-11],[-8,-9],[-1,-44],[-55,-75],[21,-76],[-4,-58],[-59,-9],[-51,-27],[-72,-33],[-92,-15],[60,-48],[85,-28],[60,-4],[67,-3],[76,16],[50,-17],[7,-58],[63,6],[85,38],[77,4],[31,-51],[-53,-57],[-78,-9],[-89,-13],[5,-60],[-50,-47],[58,-40],[50,-19],[74,6],[72,-19],[66,-4],[68,-42],[4,-59],[-51,-47],[66,-46],[59,6],[56,-18],[38,-81],[-48,-44],[20,-61],[-56,-35],[-49,25],[-63,31],[-56,-52],[-49,-56],[51,-14],[60,-9],[-27,-51],[42,-38],[38,-24],[42,-39],[119,9],[50,-40],[3,-62],[-52,-61],[-43,-70],[-82,-57],[-61,-32],[-98,-26],[-74,65],[-23,120],[-62,-9],[-90,-21],[-80,-50],[34,-55],[4,-75],[-10,-95],[-68,-18],[-65,-34],[-10,-39],[-11,-21],[-9,-67],[-9,-12],[4,-61],[-45,-21],[-6,-8],[-45,-83],[-55,-32],[-45,-44],[-80,-7],[-88,61],[-43,43],[-45,28],[-66,76],[-30,129],[12,68],[15,45],[-7,50],[-35,51],[-50,58],[-41,38],[-42,15],[-37,20],[-5,60],[34,26],[44,3],[43,9],[65,-17],[55,-34],[0,45],[-24,33],[-23,31],[-51,73],[-47,63],[-53,80],[-66,61],[72,66],[45,-3],[67,82],[-67,6],[-69,-38],[-65,-35],[-70,-31],[0,-58],[25,-60],[7,-49],[-28,-56],[-70,43],[-59,48],[-29,51],[-6,70],[18,78],[71,43],[15,52],[-63,15],[41,72],[66,29],[81,23],[20,43],[-80,7],[21,73],[-112,37],[-58,-6],[-11,-63],[-46,-75],[-38,69],[-59,57],[35,60],[-78,-8],[-59,52],[-22,-47],[-25,-43],[50,-5],[62,-45],[-10,-70],[28,-71],[40,-42],[5,-77],[56,-23],[35,-31],[-47,-64],[-30,-69],[-19,-55],[-40,-87],[-82,-16],[-16,-57],[6,-49],[7,-63],[30,-33],[52,-52],[40,-48],[69,-65],[80,-67],[55,-72],[24,-22],[38,-21],[21,-12],[47,-26],[-83,-133],[-150,-20],[-157,18],[-77,-33],[37,-75],[-58,-33],[-28,24],[-50,24],[-58,0],[-77,33],[-37,-36],[35,-46],[34,-44],[-42,-15],[-50,39],[-56,44],[-28,48],[-31,60],[-27,56],[-93,30],[-77,-15],[-48,16],[-68,24],[-65,16],[-57,15],[-68,-24],[-76,-14],[-55,-34],[-25,29],[-21,42],[-40,63],[87,8],[48,14],[-52,50],[0,51],[13,65],[2,63],[-26,66],[-63,39],[-78,71],[-90,24],[-70,41],[7,88],[-16,71],[-56,2],[-41,-15],[-9,-66],[28,-51],[-41,-35],[-53,30],[-30,-34],[-42,-27],[-57,-4],[-58,-18],[-47,-27],[-36,-24],[32,-33],[-26,-56],[-62,-57],[-67,-36],[-37,-30],[-62,6],[-21,73],[-86,-27],[-33,47],[13,79],[49,65],[45,27],[48,39],[96,43],[38,39],[-115,14],[-98,-28],[61,75],[-93,44],[-9,-60],[-69,-1],[-45,-21],[-27,56],[69,52],[-31,59],[-64,36],[-69,52],[13,84],[-49,60],[-48,6],[-65,56],[-37,-49],[-41,26],[-57,5],[-64,8],[-45,20],[-71,-22],[-8,-3],[28,-32],[60,-8],[73,-10],[59,-37],[73,-17],[64,-3],[11,-78],[-5,-88],[59,-57],[-108,-36],[-31,-88],[39,-100],[74,-65],[49,-46],[60,7],[51,-19],[-3,-51],[-38,-73],[-43,-33],[-45,-26],[-101,53],[39,79],[-61,16],[-90,-16],[-46,-92],[-73,-32],[-80,-11],[-91,1],[-47,17],[-78,24],[-88,5],[-59,18],[-67,-39],[-116,22],[-68,-75],[73,-53],[108,-22],[72,-10],[65,-2],[53,4],[73,-27],[53,-25],[58,-6],[54,15],[55,-37],[31,-28],[45,-3],[-12,-83],[39,-52],[22,-53],[28,-56],[25,-48],[-30,-63],[-58,-63],[-45,-58],[-33,-56],[1,-57],[-29,-102],[-64,-65],[-36,-27],[-36,-33],[-14,-34],[10,-55],[3,-91],[-55,-79],[-56,-73],[29,-41],[47,-30],[49,-46],[23,-68],[96,-45],[-34,-44],[-10,-45],[69,-22],[-31,-43],[27,-52],[58,-14],[-20,-48],[-36,-45],[-34,-47],[-3,-46],[-58,-24],[-66,8],[-82,-5],[-93,-25],[-44,4],[-79,17],[-68,5],[-68,5],[41,61],[-49,66],[-46,-56],[-74,-40],[-37,-29],[-31,-31],[-64,1],[-59,-11],[-62,-1],[-94,-6],[-73,-20],[-67,-19],[-84,-3],[-101,-2],[-52,-1],[-54,-6],[-55,15],[-57,0],[-58,3],[-87,5],[-81,-7],[24,48],[40,21],[19,73],[63,35],[-27,47],[-43,-13],[-94,11],[49,53],[50,75],[57,81],[-22,71],[81,30],[-83,34],[-55,42],[0,80],[-22,46],[0,44],[-64,36],[-53,19],[14,64],[-26,41],[-7,2],[-20,4],[-23,-31],[-34,-68],[-57,-12],[-68,1],[-6,-4],[-98,0],[-34,5],[-12,56],[6,30],[-25,6],[-35,-25],[-45,-43],[-61,-13],[-26,-35],[-74,16],[-25,-12],[0,-85],[6,-8],[110,0],[33,-22],[-40,-46],[1,-36],[-27,-64],[-2,-50],[28,-40],[-21,-53],[-30,-45],[-97,-45],[-40,-78],[-54,-67],[-98,21],[-38,32],[-68,6],[-73,5],[-32,39],[38,13],[27,32],[-39,19],[-40,14],[-68,-32],[28,-48],[-31,-51],[-62,-3],[-34,23],[-23,0],[-23,-31],[174,-41],[-39,-41],[-92,-6],[-57,-26],[-66,-27],[-23,-38],[1,-65],[56,-34],[29,-54],[-46,-55],[27,-54],[31,-42],[-1,-59],[-66,-47],[-40,-50],[-14,-70],[-55,-60],[-9,-43],[-27,-37],[-42,-17],[-11,-20],[9,-78],[-69,-41],[-83,19],[-95,61],[-87,11],[-86,0],[-30,11],[18,80],[47,20],[35,25],[18,16],[19,38],[-39,28],[38,35],[57,34],[53,29],[-11,70],[-16,53],[-99,36],[-72,2],[-53,-29],[-81,-19],[-73,-20],[-42,-4],[-10,-9],[29,-60],[3,-15],[8,-42],[7,-39],[80,-6],[5,-3],[15,-26],[-58,-40],[-9,-74],[-1,-2],[-4,-23],[-10,-61],[-72,-27],[-104,29],[-18,6],[-62,17],[53,212],[11,88],[7,53],[3,25],[-77,135],[53,16],[81,-47],[28,5],[109,20],[50,11],[0,22],[-42,4],[-74,7],[-214,80],[0,47],[12,51],[1,3],[4,20],[34,10],[16,4],[-12,33],[-14,8],[-60,4],[-35,2],[-110,74],[0,36],[-8,7],[-22,47],[0,11],[1,1],[0,22],[-54,38],[-5,50],[28,17],[2,3],[38,52],[-47,14],[-41,-36],[-28,-25],[-71,14],[29,55],[66,41],[156,36],[1,1],[60,42],[92,-2],[13,82],[-28,56],[-60,10],[-40,40],[30,18],[-50,65],[-77,42],[6,32],[36,24],[45,-3],[63,10],[30,49],[45,45],[21,60],[34,63],[7,40],[29,59],[-12,60],[18,45],[-16,59],[-7,53],[19,71],[-15,46],[-23,92],[-27,43],[-59,28],[-72,57],[-5,63],[-1,11],[-72,-6],[3,-98],[70,-88],[-23,-82],[-43,-51],[-79,2],[-10,-111],[23,-90],[59,11],[20,-75],[-6,-55],[-40,-73],[-22,-42],[-47,-7],[-69,2],[-51,38],[-59,-8],[-11,-21],[33,-46],[-18,-82],[25,-57],[-118,-42],[-36,-73],[6,-25],[-19,-45],[26,-17],[57,41],[54,39],[27,-5],[12,-55],[-46,-13],[-27,-55],[-5,-55],[-55,-6],[-43,13],[-51,-30],[10,-74],[-22,-23],[-24,-5],[12,-69],[14,-50],[16,-58],[-48,-2],[-35,67],[-96,-41],[-88,-2],[-52,24],[-50,-18],[-65,0],[-73,-55],[41,-50],[72,-17],[70,-48],[22,-67],[15,-57],[-9,-61],[-16,-59],[-6,-68],[-4,-75],[-41,-47],[-65,-10],[-48,49],[-92,-3],[-29,-46],[-78,7],[-78,39],[-58,46],[-6,76],[-24,48],[7,84],[-3,57],[-3,60],[-14,68],[18,54],[81,55],[-23,63],[64,24],[100,-10],[51,-21],[68,-5],[52,11],[39,37],[56,9],[12,40],[-13,59],[-42,29],[-32,57],[-46,52],[-15,57],[19,38],[20,41],[-5,54],[10,56],[32,80],[75,18],[51,16],[-3,16],[-44,29],[-52,51],[-10,93],[-38,68],[16,55],[8,55],[42,76],[8,88],[-10,57],[-66,-4],[-31,22],[-26,-8],[-2,-1],[-1,-29],[62,-51],[-48,-57],[-42,-15],[31,-59],[-27,-44],[-58,-24],[-47,25],[-48,34],[-42,25],[-14,-62],[0,-5],[41,-122],[-47,-80],[15,-102],[-3,-58],[-36,-74],[21,-80],[-21,-30],[-51,-22],[-36,-108],[-17,7],[0,-1],[-57,0],[-72,11],[-38,-25],[-36,36],[6,51],[-13,26],[-34,79],[-36,41],[-37,53],[-4,79],[-11,65],[-44,61],[38,29],[-17,42],[-119,-25],[-134,-3],[-1,0],[-24,-49],[-42,-52],[-31,-59],[-10,-34],[54,-125],[3,-77],[-96,22],[-53,55],[13,82],[-49,12],[-71,6],[-56,41],[-126,-3],[-20,-33],[13,-20],[22,8],[53,-12],[65,-38],[23,-40],[27,-53],[4,-44],[7,-21],[31,-8],[38,32],[61,-2],[49,-28],[79,-26],[35,-48],[41,-57],[60,-13],[40,-44],[49,-62],[62,14],[39,84],[76,-29],[27,-130],[-2,-57],[8,-61],[-8,-57],[-22,-55],[-93,-18],[-52,50],[19,77],[-20,96],[-69,8],[-17,35],[-80,2],[-37,51],[-7,65],[-86,29],[-44,17],[-122,36],[-79,-16],[-81,19],[-73,-11],[-29,-76],[-3,-64],[25,-47],[66,-15],[34,-42],[-53,-46],[68,-61],[52,-72],[-35,-47],[-57,-18],[-46,-42],[-79,-57],[49,-63],[-50,-84],[-77,-42],[-61,-11],[-24,41],[-25,48],[-90,76],[-93,36],[-1,36],[-69,46],[-96,35],[-87,57],[-58,6],[-28,-39],[-17,-3],[-10,-2],[62,-83],[45,-80],[-38,-51],[26,-49],[91,-18],[12,-15],[36,-46],[10,3],[61,5],[52,-32],[15,-50],[55,-37],[73,-44],[64,-76],[40,-48],[7,-53],[4,-54],[20,-69],[50,5],[27,-61],[1,-6],[-41,-68],[17,-75],[5,-3],[27,-22],[36,-28],[-9,-10],[-14,-61],[-11,-43],[10,-58],[-23,-62],[-9,-44],[-13,-19],[-3,-42],[-44,-49],[-66,-9],[-60,-47],[-14,-38],[-84,-10],[-6,-8],[-38,-22],[-4,-10],[-3,-60],[-9,-83],[-74,8],[-39,86],[-92,66],[-5,128],[-25,42],[2,70],[-59,19],[-78,20],[-72,-3],[-59,-15],[-45,17],[-51,-3],[-2,-8],[-49,-18],[2,-47],[37,-44],[7,-52],[-29,-34],[-42,-18],[-23,-38],[19,-31],[69,13],[44,39],[61,27],[42,-82],[9,-52],[0,-68],[55,-88],[23,-73],[127,-65],[-3,-52],[-119,-44],[-4,-1],[-29,-23],[-45,-97],[-46,-59],[-23,-53],[44,-34],[8,-40],[-45,-62],[-25,-99],[5,-85],[3,-65],[-76,0],[6,-72],[6,-72],[-40,-66],[13,-68],[54,-52],[-18,-43],[-48,-48],[-54,-24],[-35,-35],[25,-55],[-32,-59],[-62,-47],[-59,72],[-31,75],[-44,77],[-21,57],[-39,49],[-6,53],[-41,62],[-63,78],[25,80],[3,70],[-5,77],[-11,42],[-17,66],[48,26],[4,54],[-6,58],[5,70],[3,57],[22,62],[-2,63],[15,38],[-51,75],[-12,74],[42,3],[78,-57],[6,-4],[83,-30],[57,3],[0,49],[-72,25],[-69,59],[33,52],[-50,42],[5,42],[-8,62],[-41,56],[-33,57],[-8,85],[8,74],[9,80],[45,26],[72,20],[59,14],[-35,57],[-64,19],[-55,-15],[-42,12],[-36,-37],[-55,-33],[-34,-70],[-55,-76],[-21,-64],[-33,-60],[-36,-86],[-35,-52],[-92,46],[-47,18],[-21,13],[-40,53],[-51,19],[-33,-27],[3,-61],[-30,-55],[-17,-34],[15,-16],[59,-8],[64,26],[54,-14],[57,-51],[35,-63],[6,-79],[8,-53],[-1,-46],[13,-57],[-15,-92],[-49,-8],[-66,5],[-38,13],[-59,-35],[-4,-7],[31,-76],[0,-31],[38,-14],[24,-49],[-59,-19],[14,-55],[51,-32],[-17,-83],[-2,-5],[-13,-97],[0,-3],[-40,-38],[-20,-20],[80,-47],[3,-12],[7,-37],[2,-11],[-47,-61],[-3,-102],[0,-10],[-33,-15],[-39,9],[-51,-19],[-70,9],[-68,40],[-57,55],[-61,45],[4,51],[-46,34],[-25,47],[-46,76],[-46,60],[-3,108],[-27,85],[-51,67],[-19,56],[-6,65],[-13,71],[8,67],[-26,60],[-35,48],[-11,43],[-33,36],[-39,54],[-54,76],[-57,66],[-69,59],[40,55],[31,54],[57,36],[25,51],[-8,61],[-29,65],[28,92],[-89,28],[53,86],[-33,55],[28,55],[0,57],[-6,57],[0,2],[-71,-54],[-88,-14],[-71,-54],[-79,-4],[-40,42],[-58,-6],[-61,-14],[-39,5]],[[27903,36335],[20,-43],[49,-108],[-98,-103],[-7,-7],[-356,-375],[-164,-172],[-761,112],[-61,9],[-92,14],[-36,5],[-98,14],[-63,9],[-79,13],[-610,99],[-213,35],[-73,12],[-1,-16],[9,-24],[30,-43],[25,-43],[0,-2],[-16,-28],[-13,-21],[-18,-29],[-5,-25],[-10,-28],[-27,-9],[2,-26],[10,-46],[-17,-17],[-1,-46],[-40,-19],[-14,-25],[-11,-21],[-27,-16],[-25,2],[0,-38],[-20,-14],[-25,-8],[-15,-24],[-25,-52],[-22,-15],[6,-27],[-41,-34],[-16,-22],[-21,-18],[-23,-16],[4,-26],[-12,-33],[-26,-4],[-28,-11],[-23,-14],[-17,-24],[-25,-25],[3,-25],[10,-21],[-18,-19],[-19,-17],[-2,-23],[-15,-18],[-27,-9],[-23,-44],[-29,-21],[-21,-39],[-30,-11],[-27,-4],[-7,-25],[-40,-19],[-19,-18],[-9,-32],[-15,-48],[0,-23],[-6,-34],[422,-195],[169,-79],[80,-32],[70,-32],[36,3],[14,-26],[27,-35],[11,-30],[6,-37],[43,-20],[-6,-17],[-2,-1],[-1,-2],[-2,-3],[-2,-2],[-1,-2],[-1,-3],[-14,-27],[0,-2],[-6,-11],[-1,-3],[-34,-93],[-2,-3],[-5,-6],[-67,-85],[-6,-8],[-12,-15],[-1,-1],[-1,-1],[-9,-5],[-3,-2],[-3,-1],[-2,-2],[-2,-2],[-3,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-3],[-1,-2],[-2,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-3],[-7,-31],[0,-3],[-1,-2],[0,-3],[0,-3],[0,-2],[1,-3],[0,-3],[1,-3],[0,-2],[1,-3],[1,-2],[2,-3],[1,-2],[1,-3],[2,-2],[2,-2],[2,-2],[2,-2],[2,-2],[17,-14],[0,-1],[1,-1],[1,-1],[5,-7],[1,-1],[0,-1],[5,-14],[1,-3],[2,-3],[-9,-24],[-16,-28],[-61,3],[-77,3],[-39,0],[-364,5],[-361,8],[-367,7],[-2,0],[-701,18],[-120,2]],[[23093,33575],[-348,-40],[-278,-32],[-5,-1],[-115,-13],[-278,-33],[-40,-4],[-250,-30],[-31,-3],[-45,-7],[-1,0],[-67,-11],[-36,-4],[-12,-2],[-95,-11],[-29,-3],[-21,-3],[-34,-4],[-29,-2],[-24,-8],[-10,-3],[-22,-11],[-64,-30],[-461,-216],[-147,-69],[-25,-12],[-176,-82]],[[20450,32941],[-42,147],[-6,22],[-9,33],[-73,259],[-98,325],[-11,37],[-21,69],[-8,27],[-5,15],[-21,62],[-40,-5],[-406,-46],[-29,112],[-250,-25],[-28,103],[-17,61],[-16,56],[-32,118],[-74,268],[-50,180],[-171,-21],[-258,-31],[254,277],[262,285],[32,34],[54,61],[47,51],[-82,12],[-408,59],[-77,11],[-9,1],[-30,5],[-87,12],[-113,16],[-14,2],[-44,7],[-5,0],[-129,19],[-150,22],[-22,3],[-87,13],[-361,52],[-515,74],[-1,0],[-132,17],[-1625,225],[-102,14],[-229,32],[-223,31],[-8,1],[-148,19],[-16,3],[-646,90],[-26,4],[-63,7],[-25,4],[-106,17],[-171,23],[-52,7],[-113,17],[-224,33],[-200,29],[-141,18],[-128,21],[112,43],[43,16],[196,76],[162,62],[192,75],[127,47],[124,46],[-273,409],[-1017,1512],[-329,489],[-101,152],[-19,28],[-115,157],[-80,122],[-591,895],[-231,-81],[-158,-60],[0,-1],[-109,-41],[-156,-60],[-25,-9],[-608,-232],[-817,-312],[-579,-221],[-1047,-399],[-24,399],[-90,1982],[-1,27],[-87,322],[-5,16],[-2,9],[-48,160],[-2,8],[-76,269],[-12,40],[-56,210],[-4,12],[-10,34],[-71,243],[-10,35],[-24,89],[-103,378],[-31,95],[-196,-20],[-51,220],[-82,347],[-15,65],[-5,20],[-47,203],[-8,32],[-3,13],[-12,53],[-1,3],[-39,167],[-16,66],[-50,201],[-7,32],[-8,36],[-6,27],[-34,163],[-1,3],[-3,12],[-6,24],[-24,81],[-1,3],[-18,91],[0,1],[-26,131],[515,47],[2,0],[59,6],[157,14],[161,15],[159,15],[-10,38],[-7,34],[-63,254],[-155,637],[-8,33],[-13,55],[-14,56],[-44,181],[-7,29],[-8,34],[-18,71],[-1,6],[-7,25],[-63,259],[-19,80],[-24,103],[-114,484],[-56,249],[-216,957],[-7,31],[-238,1047],[-101,509],[-21,107],[-98,504]],[[6049,51230],[28,31],[27,40],[31,100],[7,67],[-13,40],[-58,63],[-6,13],[4,15],[14,13],[35,18],[102,34],[75,18],[167,29],[28,11],[42,29],[30,33],[16,35],[1,37],[-9,50],[2,16],[18,26],[64,67],[31,68],[23,87],[6,41],[-5,39],[-23,58],[-15,23],[-13,13],[-107,46],[-58,40],[-29,29],[-18,27],[-17,42],[-13,106],[14,42],[31,40],[34,28],[79,46],[27,25],[10,14],[7,20],[0,22],[-6,16],[-42,65],[-5,16],[2,22],[9,14],[56,51],[66,80],[82,65],[15,34],[-4,40],[-36,101],[-40,77],[-34,42],[-79,96],[-62,88],[-30,28],[-30,20],[-33,15],[-97,31],[-25,12],[-24,22],[-17,35],[-14,92],[12,36],[13,18],[114,98],[118,115],[85,99],[35,24],[116,44],[44,27],[42,42],[82,104],[25,21],[28,14],[46,12],[29,2],[84,-3],[50,6],[111,42],[43,8],[55,-3],[61,-8],[161,-29],[92,-23],[31,-4],[36,0],[124,14],[61,-5],[39,-13],[32,-19],[66,-51],[87,-57],[15,-18],[10,-25],[5,-67],[8,-32],[35,-60],[38,-32],[186,-117],[27,-21],[20,-26],[27,-52],[44,-48],[43,-29],[76,-42],[172,-70],[77,-22],[55,-4],[41,6],[125,33],[87,10],[34,0],[84,-13],[64,-2],[115,11],[119,21],[67,-2],[55,-9],[74,-22],[86,-33],[112,-53],[63,-36],[38,-28],[19,-22],[18,-33],[23,-70],[22,-37],[14,-10],[22,-10],[52,-10],[98,-4],[79,12],[65,18],[61,22],[108,44],[41,23],[22,22],[7,25],[-5,24],[-31,68],[0,37],[21,60],[30,51],[36,34],[52,28],[36,13],[106,28],[41,16],[23,18],[10,18],[-6,26],[-12,16],[-23,18],[-39,19],[-86,31],[-51,26],[-39,29],[-18,21],[-11,21],[-5,31],[8,25],[17,20],[59,44],[48,53],[12,22],[5,18],[-1,26],[-21,40],[-23,26],[-19,13],[-112,48],[-52,29],[-47,33],[-50,49],[-47,68],[-59,57],[-84,89],[-43,34],[-28,12],[-44,11],[-135,18],[-53,12],[-204,76],[-85,27],[-88,22],[-43,18],[-22,25],[-24,108],[-12,26],[-17,23],[-37,25],[-126,45],[-21,12],[-23,25],[-11,35],[-7,108],[-10,26],[-21,25],[-59,41],[-58,29],[-43,15],[-106,24],[-66,25],[-113,65],[-79,57],[-31,40],[-10,34],[0,17],[17,44],[71,89],[16,26],[11,43],[-6,32],[-18,30],[-29,23],[-38,21],[-101,43],[-31,18],[-19,17],[-16,23],[-9,38],[3,30],[11,30],[27,39],[43,36],[65,36],[96,40],[32,21],[25,25],[52,66],[58,57],[32,22],[78,42],[18,13],[29,60],[99,153],[155,146],[19,18],[46,34],[35,19],[35,13],[76,20],[18,9],[10,10],[1,16],[-14,20],[-134,104],[-40,40],[-19,27],[-6,25],[2,17],[29,61],[4,43],[5,11],[23,12],[71,17],[65,19],[60,32],[79,64],[66,74],[28,25],[130,83],[100,77],[60,62],[80,67],[52,53],[43,53],[32,61],[24,33],[76,89],[37,30],[63,28],[85,26],[41,9],[118,10],[99,15],[93,21],[61,20],[36,25],[53,56],[41,37],[149,102],[63,56],[31,22],[38,17],[156,54],[86,25],[49,23],[109,105],[114,137],[75,53],[91,72],[152,96],[72,62],[20,23],[41,65],[35,90],[18,21],[52,41],[32,18],[26,9],[76,13],[34,2]],[[20450,32941],[-259,-119],[-70,-32],[-490,-235],[-39,-18],[7,-25],[39,-146],[17,-79],[73,-255],[8,-38],[-251,-33],[47,-167],[17,-58],[0,-1],[11,-39],[46,-169],[104,-384],[20,-76],[80,-270],[-181,-416],[-19,-46],[-10,-25],[-6,-13],[-46,-105],[-23,-54],[-1,-2],[-43,-98],[-65,-148],[-205,-465],[-12,-44],[-113,-265],[-53,-127],[-13,-32],[-55,-130],[-10,-24],[-139,-331],[0,-1],[-49,-117],[-13,-32],[-19,-48],[-17,-38],[-19,-51],[-80,-197],[-53,-132],[-61,-149],[-26,-65],[-42,-105],[-79,-195],[-71,18],[-41,11],[-101,23],[-70,-63],[-165,-150],[-140,-125],[-10,-9],[-94,-87],[-29,-27],[-29,-26],[-220,-197],[-48,-45],[-6,-5],[-40,-40],[-109,-98],[-4,-3],[-142,-131],[-19,-17],[-18,-19],[-17,-18],[-37,-33],[-60,-56],[-27,-26],[-55,-50],[-43,-40],[-49,-46],[-208,-191],[-155,-141],[-295,-270],[-134,-125],[-18,-16],[-28,-26],[-20,-19],[-26,-24],[-187,-171],[-271,-250],[-60,-55],[-12,-11],[-16,-14],[-19,-18],[-153,-140],[-308,-283],[-19,-21],[-64,-56],[-47,-44],[-27,-26],[-28,-26],[-32,-29],[-15,-13],[-71,-66],[-12,-11],[50,-44],[77,-42],[19,-18],[3,-43],[-25,-122],[-30,-84],[-2,-40],[17,-67],[13,-36],[34,-47],[9,-29],[-15,-30],[-24,-34]],[[14615,23401],[-123,54],[-116,50],[-50,21],[-49,22],[-38,16],[-10,4],[-32,14],[-52,24],[-70,32],[-69,-67],[-86,39],[-73,-62],[-20,-19],[-42,-39],[-8,-8],[-265,-249],[-1,-1],[-73,-68],[-1,-1],[-147,-138],[-188,-176],[-36,-35],[-19,19],[-241,242],[-26,-23],[-22,22],[-109,108],[-63,63],[-50,-47],[-83,-78],[-53,-68],[-19,-6],[-2,4],[-37,-14],[-1,-1],[-5,-1],[-20,4],[-92,27],[-17,6],[-43,16],[0,1],[-32,16],[-49,43],[-2,6],[-1,9],[20,11],[-17,42],[-86,44],[-2,1],[-28,21],[-120,90],[-5,4],[1,25],[0,26],[7,18],[8,23],[-159,115],[-4,3],[-67,51],[-15,98],[-1,4],[-57,79],[-9,4],[-13,13],[-9,10],[-38,77],[-4,13],[-27,115],[0,1],[-45,43],[8,27],[6,21],[2,6],[11,34],[22,67],[3,10],[12,63],[18,99],[-1,24],[9,15],[76,84],[1,2],[17,52],[29,88],[0,2],[-25,50],[-9,43],[-28,128],[0,21],[7,27],[2,2],[85,129],[0,1],[0,1],[12,16],[62,64],[8,7],[60,50],[18,18],[38,40],[79,84],[1,1],[28,37],[46,59],[2,3],[-65,105],[-3,4],[10,66],[2,15],[-61,40],[-49,36],[-14,11],[-5,7],[-11,90],[0,10],[7,9],[1,0],[24,18],[-10,31],[-2,6],[-83,110],[-3,5],[-1,0],[-57,47],[-8,-2],[-25,-7],[-64,45],[-18,12],[-57,40],[-61,-4],[-20,-1],[-65,29],[-4,2],[-28,41],[-1,0],[-15,27],[-6,3],[-91,34],[-7,3],[4,96],[-15,19],[-20,23],[-34,41],[-27,28],[-45,-20],[-320,-149],[-156,-72],[-93,-47],[-357,-165],[-150,-70],[-60,-29],[-87,-43],[-186,-92],[-161,-79],[-51,-25],[-64,-33],[-61,77],[-27,34],[-6,-2],[-44,-19],[-19,-9],[-51,-24],[-47,-21],[-77,-35],[-189,-87],[-27,-13],[-53,-23],[-48,-22],[-26,-12],[-111,-46],[-154,-68],[-86,-39],[-42,-19],[-229,-110],[-175,-83],[-290,-138],[-41,-20],[-31,-15],[-244,-116],[-26,-13],[-63,-31],[-76,-36],[-203,-97],[-44,-21],[-64,-31],[-102,-48],[-99,-48],[-29,-13],[-6,-3],[-18,-10],[-57,-27],[-15,-7],[-57,-27],[-5,-2],[-102,-49],[-210,97],[-27,12],[-88,40],[-82,38],[-61,27],[-301,138],[-61,28],[-49,22],[-3,-5],[-24,-39],[21,-15],[1,-3],[19,-23],[0,-30],[-7,-42],[-31,-46],[-38,-9],[-22,14],[-31,2],[-9,-22],[-5,-10],[-12,-27],[-6,-18],[-6,-15],[-2,-3],[-18,-21],[-28,-22],[17,-31],[3,-6],[24,-13],[34,-4],[37,-8],[0,-33],[6,-16],[1,-20],[7,-35],[26,-44],[5,-7],[4,-15],[25,-86],[4,-12],[-2,-12],[-5,-56],[-1,-6],[3,-6],[23,-42],[29,-47],[30,-14],[1,0],[233,-111],[216,-103],[449,-275],[335,121],[-18,33],[-3,6],[58,14],[22,5],[13,4],[84,20],[7,-15],[29,-64],[-32,-14],[59,-172],[29,-84],[19,-53],[15,2],[35,6],[12,2],[273,44],[57,-55],[37,-35],[340,-327],[99,-95],[4,-4],[41,-39],[91,-88],[2,-2],[17,-18],[33,-33],[202,-196],[18,-16],[54,-53],[18,-17],[176,-172],[133,-131],[2,-2],[73,-71],[66,-64],[83,-81],[-260,-119],[-158,-73],[-24,-12],[-29,-10],[-15,-7],[-138,-64],[-88,-41],[-64,-23],[-17,-5],[-3,-4],[2,-2],[8,-3],[18,-9],[33,-24],[16,-15],[109,-98],[120,-110],[112,-101],[31,-28],[-141,-81],[-171,-98],[-38,-22],[-27,-16],[-101,-56],[-81,-51],[-2,-6],[-14,-44],[-9,-25],[-15,-25],[-7,-5],[-26,-5],[-11,-7],[-50,-32],[-2,-1],[0,-1],[4,-15],[16,-20],[1,-2],[6,-10],[0,-49],[1,-45],[-2,-5],[-25,-60],[13,-22],[41,-47],[12,-15],[-7,-19],[16,-106],[37,8],[42,7],[35,-10],[15,-29],[-26,-27],[38,-10],[82,0],[36,7],[29,-1],[-136,-83],[-122,-75],[-141,-87],[-128,-76],[-18,76],[-9,48],[-81,-48],[-23,-13],[-237,-138],[-26,123],[-337,-198],[-1,0],[-34,-20],[-23,-13],[11,-33],[9,-5],[47,-31],[30,-11],[17,-23],[-8,-14],[-5,-7],[-2,-1],[-8,-3],[-27,6],[-36,7],[-5,1],[-21,5],[-31,-1],[-10,-3],[-18,-7],[-8,-3],[-8,-11],[-19,-29],[-1,0],[1,-1],[117,-77],[26,-5],[9,-10],[68,-103],[6,-27],[-5,-12],[-2,-4],[-1,-3],[-3,-2],[-9,-7],[-31,-61],[-12,-24],[-3,-6],[2,-102],[5,-30],[1,0],[15,-15],[19,-17],[2,-1],[15,-2],[16,-3],[17,5],[22,5],[17,0],[33,-6],[12,-7],[30,-34],[9,-26],[20,-47],[83,-97],[4,-12],[-2,-7],[-38,-110],[-1,-1],[-7,-22],[3,-55],[8,-20]],[[7284,18526],[-125,12],[-16,-6],[-22,-8],[-28,-9],[-9,-6],[-26,-20],[-31,-23],[-54,-28],[-3,1],[-3,2],[-25,-3],[-17,-5],[1,-3],[24,-49],[-1,0],[-62,7],[-40,4],[-21,37],[-1,1],[-129,12],[0,-1],[-48,-37],[-14,-1],[-12,-1],[-29,51],[-3,4],[-15,7],[-25,7],[-38,2],[-13,-3],[-24,-6],[-64,-28],[-28,-20],[-1,-9],[-28,-27],[-19,-3],[-117,-11],[-16,4],[-10,4],[-1,0],[-73,45],[-185,17],[-18,2],[-41,-12],[-3,0],[-6,0],[-10,-4],[-34,-14],[-30,-6],[-75,-15],[-1,-1],[-127,-26],[-117,-8],[-56,4],[-15,1],[-41,3],[-41,-1],[-37,5],[-8,1],[-27,0],[-40,2],[-10,0],[-135,36],[-47,13],[-3,0],[-114,4],[-6,-55],[-7,-65],[-146,-7],[-62,-1],[-64,-7],[-237,-68],[-99,-4],[-91,-12],[-65,-20],[-51,-44],[-43,-36],[-160,-44],[-74,-57],[-5,-4],[-27,-3],[-62,-1],[-91,2],[-20,4],[-5,0],[2,2],[40,51],[-81,0],[-83,-1],[-18,0],[-11,-3],[-20,-5],[-39,-10],[-3,-2],[-46,-29],[-83,-63],[-56,-36],[-107,-17],[-104,-3],[-95,0],[-70,8],[-24,0],[-60,0],[-35,7],[-46,8],[-4,1],[-4,1],[-4,2],[-4,1],[-15,7],[-4,2],[-3,2],[-21,12],[0,1],[-4,2],[-3,2],[-3,3],[-3,3],[-3,3],[-2,3],[-1,2],[-20,29],[-14,14],[-9,6],[-63,31],[-9,3],[-40,1],[-63,24],[-38,-44]],[[2309,18016],[2,-20]],[[2309,18016],[-1,14],[-1,18],[-1,7],[0,24],[0,9],[-2,100],[-4,148],[-3,93],[-2,26],[-2,117],[-5,131],[1,133],[-1,138],[-2,120],[-5,129],[-2,34],[-3,53],[-6,87],[-2,31],[-4,66],[-2,46],[-5,60],[-2,36],[-4,103],[-4,89],[-1,66],[-6,41],[0,1],[-1,74],[-7,136],[-12,221],[-5,258],[-3,145],[2,27],[-1,64],[-6,117],[-1,26],[-5,101],[-9,177],[-11,123],[0,1],[-11,330],[-4,66],[-27,437],[-17,447],[0,2],[1,23],[-6,41],[-2,33],[0,1],[-5,88],[-2,51],[-4,67],[-2,26],[-7,127],[0,22],[-1,29],[-1,52],[-1,44],[-1,38],[-3,94],[-1,23],[-2,42],[-1,28],[0,4],[-4,93],[-4,55],[-19,281],[-11,115],[-10,169],[-12,194],[-6,147],[-2,36],[-3,61],[-2,48],[-1,30],[-3,61],[0,1],[-1,11],[-10,187],[-1,14],[0,5],[0,10],[-1,11],[-1,26],[-2,27],[-2,38],[0,8],[-2,33],[-16,283],[-41,834],[-2,54],[-13,254],[-29,561],[0,20],[-1,11],[-1,39],[-2,48],[-5,119],[-5,113],[-2,41],[-10,162],[-1,20],[-1,26],[-2,36],[-9,161],[0,5],[-5,81],[-3,63],[-4,59],[2,112],[-1,13],[-2,30],[-2,26],[-1,108],[-17,168],[-1,24],[-1,43],[-4,108],[-8,245],[-6,77],[-6,77],[-13,168],[-5,60],[-19,472],[-11,253],[-6,145],[-5,64],[-1,12],[-7,98],[-3,37],[-14,186],[-8,105],[-14,183],[-7,81],[-2,23],[-1,27],[0,7],[-1,11],[-4,90],[-3,78],[0,5],[-3,52],[-1,20],[-6,77],[-4,48],[-3,80],[-6,80],[-3,46],[0,1],[-2,58],[-2,29],[-10,165],[-5,77],[-10,191],[-2,32],[-5,74],[-2,40],[-12,150],[-14,222],[-17,234],[-11,191],[-6,97],[-10,150],[-8,108],[-9,95],[-8,74],[-19,161],[-12,159],[-15,206],[-5,65],[-4,65],[-20,317],[-3,37],[-3,58],[-3,42],[-3,42],[-6,91],[-2,24],[-1,21],[-3,41],[-5,90],[-3,29],[-1,44],[-14,308],[-11,264],[0,11],[-5,116],[-4,89],[-16,346],[-17,329],[-24,434],[-14,245],[-19,250],[-14,203],[-8,104],[-24,323],[-6,82],[0,11],[-4,47],[-5,83],[-2,19],[-7,62],[-2,16],[-1,17],[-7,54],[-1,5],[-8,114],[-16,235],[-9,122],[-3,53],[-6,85],[-5,85],[-10,144],[0,3],[0,24],[0,97],[-8,102],[-1,9],[-6,72],[-6,71],[-10,124],[-11,125],[-3,47],[-31,380],[-2,15],[-8,105],[-20,219],[-1,15],[-2,22],[-30,324],[-8,98],[-23,236],[-1,24],[0,1],[-10,100],[-13,129],[0,4],[-1,9],[0,4],[-3,26],[-12,120],[0,4],[-3,27],[-4,47],[-4,34],[-1,13],[-13,129],[-6,25],[-4,15],[-4,42],[-15,148],[-12,127],[-1,6],[-14,145],[-5,49],[-8,84],[-1,14],[-37,369],[-25,256],[-4,52],[-13,153],[-24,299],[-36,447],[-7,99],[-1,2],[-9,119],[-14,163],[-17,213],[-4,18],[-1,1],[-18,74],[-16,156],[-2,27],[-3,37],[-6,79],[-3,41],[-1,2],[-37,448],[-15,180],[-16,183],[-5,65],[-4,40],[-6,75],[-23,282],[-26,318],[0,2],[-7,73],[-16,217],[-32,436],[-2,31],[-2,23],[-29,355],[-4,47],[-20,205],[-32,344],[-6,68],[-20,214],[-11,144],[-1,9],[-5,69],[-3,37],[-55,708],[-28,485],[-1,23],[-9,70],[-1,12],[-25,178],[-17,125],[-60,443],[0,2],[-24,218],[-13,43],[-12,79],[-19,135],[-3,8],[170,30],[54,13],[129,46],[124,56],[55,13],[82,8],[168,-20],[149,10],[55,0],[69,-6],[116,-25],[59,-2],[31,7],[102,45],[55,18],[141,20],[82,17],[92,32],[70,37],[35,30],[73,89],[38,60],[8,30],[-8,24],[-25,30],[-37,27],[-90,48],[-11,12],[-10,25],[-28,128],[-2,50],[15,34],[17,16],[23,11],[21,2],[62,-12],[82,-35],[131,-84],[144,-75],[63,-53],[30,-20],[51,-22],[49,-11],[80,-4],[147,11],[105,-1],[45,3],[64,18],[118,58],[86,32],[44,8],[30,2],[26,-3],[26,-11],[21,-22],[31,-64],[30,-49],[61,-66],[51,-77],[34,-31],[106,-72],[41,-15],[87,-24],[47,-17],[109,-60],[97,-38],[35,-17],[28,-22],[9,-13],[7,-30],[5,-64],[12,-39],[19,-29],[91,-104],[20,-44],[3,-26],[-11,-45],[-24,-49],[-94,-113],[-38,-63],[-16,-50],[0,-45],[20,-30],[56,-41],[109,-101],[125,-103],[32,-44],[23,-73],[12,-18],[22,-18],[84,-49],[23,-17],[16,-19],[48,-84],[10,-27],[-2,-34],[-20,-69],[-6,-42],[7,-42],[28,-41],[37,-31],[37,-21],[70,-31],[97,-49],[89,-32],[77,-15],[107,-10],[51,-8],[171,-42],[120,-26],[58,-3],[38,5],[235,72],[174,31],[21,9],[14,10],[6,20],[-13,17],[-159,113],[-39,37],[-20,29],[-10,47],[10,113],[-24,93],[10,86],[12,41],[11,16],[22,21],[101,64],[48,41],[36,46],[62,99],[47,50]],[[66307,25143],[38,-9],[64,4],[88,22],[86,-24],[-18,-65],[-38,-35],[-55,-51],[-82,-25],[-77,29],[-5,51],[20,45],[-21,58]],[[62706,25159],[-50,-43],[-62,-1],[-20,40],[-74,-4],[-69,-19],[-38,-35],[58,-63],[6,-75],[-33,-43],[-35,-52],[-47,36],[-37,54],[15,43],[-68,8],[-64,-27],[-59,10],[-49,14],[-23,48],[12,50],[-8,78],[-19,50],[33,48],[48,45],[51,42],[31,54],[32,67],[62,35],[53,7],[47,-26],[71,-19],[68,-51],[61,-47],[45,-53],[27,-55],[-39,-56],[-20,-38],[94,-22]],[[66307,25143],[-64,-46],[-72,-59],[-69,-26],[-107,-6],[-66,36],[-70,8],[-60,-66],[-45,-34],[-41,-69],[-30,51],[0,55],[-5,92],[-39,37],[-54,26],[-60,18],[-43,58],[22,65],[67,28],[41,16],[51,49],[54,22],[51,-4],[9,-72],[52,66],[50,46],[53,56],[90,39],[101,21],[76,-29],[6,-85],[97,-38],[96,-54],[-29,-55],[-56,-46],[-6,-100]],[[59267,25500],[-74,-32],[-79,9],[27,65],[87,21],[83,-3],[-44,-60]],[[59706,25567],[40,-52],[42,5],[39,-31],[-79,-51],[-58,-56],[-85,-28],[-66,-2],[21,34],[29,44],[-6,74],[45,74],[78,-11]],[[64064,25527],[-65,-35],[50,-71],[-73,-5],[-51,17],[-42,42],[-56,28],[-83,-8],[-2,52],[46,40],[53,19],[47,3],[43,18],[87,-15],[46,-85]],[[59996,25751],[-64,-23],[-63,37],[-1,69],[44,21],[68,0],[48,-50],[-32,-54]],[[58407,25973],[7,-68],[32,-83],[-43,-66],[-90,27],[-83,-2],[-107,1],[-1,63],[40,65],[66,34],[51,9],[60,-1],[68,21]],[[60516,25917],[-89,-40],[-20,53],[-52,29],[67,42],[83,26],[75,-28],[-43,-37],[-57,-6],[36,-39]],[[59698,25952],[-39,-11],[-53,12],[-56,23],[65,28],[77,19],[63,13],[57,-52],[-74,-27],[-40,-5]],[[59313,25954],[-55,-8],[-31,51],[24,32],[50,34],[83,10],[11,-63],[-82,-56]],[[68693,25901],[-37,-53],[-47,6],[-54,41],[2,59],[-33,42],[-38,39],[20,55],[-42,47],[73,51],[89,26],[69,-24],[-68,-96],[24,-72],[22,-55],[20,-66]],[[68739,26525],[-80,-25],[-73,56],[-15,54],[50,21],[45,4],[67,-5],[43,-62],[-37,-43]],[[60145,26622],[-41,-33],[-110,23],[-61,13],[46,40],[116,-8],[50,-35]],[[63557,26281],[-110,-17],[-69,15],[11,-48],[-44,-60],[-59,-28],[-48,18],[-42,-3],[-46,2],[-100,-62],[-67,-63],[-29,-65],[-99,-40],[15,-58],[-69,15],[-25,87],[-100,22],[-74,-27],[-48,12],[-107,64],[6,73],[12,85],[9,52],[58,14],[99,76],[25,55],[74,46],[48,25],[41,24],[20,-62],[4,-90],[-14,-46],[-39,-34],[62,-20],[47,-4],[68,18],[98,40],[-2,68],[14,33],[33,26],[66,23],[41,32],[-36,48],[52,52],[19,48],[-39,47],[46,31],[1,48],[36,40],[65,9],[67,-48],[63,16],[66,-4],[46,-32],[86,-37],[36,-27],[33,-44],[-30,-58],[18,-42],[46,-24],[-65,-45],[-61,-36],[-82,-7],[-1,-52],[-26,-81]],[[66236,26819],[53,-34],[93,11],[57,-40],[14,-33],[11,-44],[-10,-50],[-29,-44],[-25,-40],[-58,-49],[-61,-6],[-69,-4],[-80,-26],[-17,68],[-53,73],[-4,115],[49,76],[51,40],[78,-13]],[[63557,26281],[53,-40],[47,21],[13,60],[105,75],[96,-2],[41,-73],[52,26],[75,52],[56,46],[92,47],[50,28],[78,19],[54,31],[38,70],[-31,67],[-17,30],[-13,22],[5,66],[-36,52],[-2,63],[52,-7],[42,-39],[66,-27],[66,2],[51,-6],[8,-64],[45,-62],[41,-66],[51,-62],[78,-40],[20,-50],[112,-22],[66,-53],[53,-76],[14,-57],[88,-43],[-1,-65],[84,-11],[48,-31],[-134,-25],[-76,-7],[-55,-26],[6,-90],[-14,-55],[24,-36],[39,-50],[-37,-38],[-71,-13],[-51,-40],[-79,-49],[-49,-39],[-97,-11],[-81,-26],[-47,-44],[-122,-14],[-48,-35],[-67,19],[-94,17],[-122,6],[-12,55],[27,43],[27,53],[-109,27],[-76,3],[-37,21],[-31,34],[45,1],[59,39],[-76,28],[-46,-2],[-53,33],[29,113],[-49,50],[47,30],[40,47],[-63,8],[-82,-41],[-44,-47],[12,-64],[1,-92],[-35,-71],[7,-56],[-3,-50],[65,-59],[-82,-12],[-53,31],[-60,19],[-37,30],[-24,52],[1,74],[41,41],[44,44],[21,69],[-69,56],[-39,63],[48,45],[1,60]],[[66469,26951],[-62,-14],[-62,2],[-48,33],[43,60],[73,49],[71,-21],[60,-57],[-75,-52]],[[65688,26753],[-64,-27],[-45,9],[-59,9],[-82,48],[31,37],[27,42],[53,26],[28,47],[46,59],[102,54],[48,41],[54,10],[39,10],[105,17],[88,-37],[32,-64],[-97,-62],[-92,-91],[-87,-51],[-46,-44],[-81,-33]],[[57119,27140],[-67,-31],[-55,41],[-52,37],[6,31],[39,19],[52,1],[71,-37],[6,-61]],[[63515,27113],[-84,-3],[-115,19],[-75,55],[62,31],[42,76],[94,-13],[79,-50],[76,-29],[4,-53],[-83,-33]],[[66956,27164],[-4,-80],[-79,0],[-77,29],[-76,-47],[-54,-29],[-40,43],[-99,53],[-55,6],[28,48],[-41,39],[-8,50],[66,40],[85,-5],[86,-10],[73,-26],[35,-49],[60,-47],[100,-15]],[[59749,27217],[-48,-19],[-17,33],[-31,35],[54,59],[72,-59],[43,-28],[-73,-21]],[[63018,27216],[-91,-6],[-63,32],[33,91],[-32,49],[-37,61],[45,4],[66,11],[50,8],[51,-20],[44,-69],[68,-58],[-54,-50],[-3,-51],[-77,-2]],[[60665,26864],[-94,-35],[-64,35],[-101,2],[-48,46],[-97,11],[-49,29],[-54,18],[-67,26],[73,21],[50,17],[92,11],[74,14],[-20,57],[9,70],[-31,32],[-69,20],[-91,47],[27,71],[39,38],[62,34],[16,53],[72,14],[62,-44],[-27,-77],[-55,-42],[107,-26],[73,-30],[105,-19],[82,-35],[3,-63],[66,-43],[50,-26],[66,-48],[-5,-67],[-121,-1],[-92,-21],[102,-43],[-88,-34],[-57,-12]],[[60973,27441],[-53,-8],[-60,29],[-62,15],[-37,46],[64,12],[74,-5],[70,-39],[53,-35],[-49,-15]],[[55782,27218],[-52,-24],[-83,12],[38,41],[-4,55],[-50,36],[-55,58],[52,27],[34,45],[75,44],[73,35],[29,33],[46,-3],[75,-10],[53,-33],[-41,-59],[-47,-48],[-87,-64],[-50,-67],[-6,-78]],[[54605,27538],[-81,-5],[29,38],[58,37],[29,62],[56,-26],[-24,-72],[-67,-34]],[[59868,27612],[-55,-16],[-75,32],[-28,79],[67,7],[84,-25],[109,-4],[-42,-56],[-60,-17]],[[61790,27696],[-48,-18],[-50,6],[-61,8],[-67,21],[78,24],[41,-5],[72,-2],[35,-34]],[[61417,27736],[-37,-41],[-130,18],[-13,61],[87,9],[93,-47]],[[63168,27800],[70,-55],[11,-60],[-60,-18],[-40,-67],[-100,-12],[-68,9],[-43,23],[-21,57],[-6,67],[42,45],[53,-2],[71,11],[91,2]],[[60604,27766],[-89,-13],[-56,3],[-95,5],[-45,60],[118,42],[56,15],[62,-24],[75,-41],[-26,-47]],[[59960,27822],[-83,-10],[-55,45],[-36,39],[60,11],[89,-12],[25,-73]],[[55674,27740],[-75,-20],[-69,14],[-92,2],[-94,3],[-63,85],[-35,51],[5,60],[51,19],[80,17],[69,-6],[84,-51],[95,-67],[0,-66],[44,-41]],[[54773,27887],[7,-45],[-9,-40],[-51,28],[-47,50],[-48,-63],[-70,-3],[-61,77],[73,74],[9,78],[41,35],[59,23],[111,-15],[40,-71],[-37,-43],[-41,-33],[24,-52]],[[69827,27985],[-75,-4],[-81,73],[-11,57],[49,49],[103,32],[66,-43],[35,-91],[-35,-48],[-51,-25]],[[56383,28092],[-111,-23],[-101,4],[-75,26],[6,61],[37,56],[89,-13],[111,-14],[47,-7],[55,-48],[-58,-42]],[[68686,28179],[-21,-39],[-73,1],[-19,12],[-29,26],[-18,56],[-60,59],[94,-9],[24,-69],[102,-37]],[[68268,28495],[77,-45],[-25,-86],[-25,-55],[47,-103],[14,-16],[3,-3],[23,-27],[5,-41],[66,-33],[56,-18],[62,-6],[52,31],[38,9],[46,-17],[60,-27],[-73,-9],[-51,-51],[-106,-53],[-71,-3],[-92,22],[-52,21],[-74,-13],[-70,-42],[-41,-1],[-67,10],[-86,22],[-52,49],[-40,50],[37,75],[-5,73],[20,91],[49,51],[-48,67],[4,48],[49,15],[83,-29],[76,15],[111,29]],[[54818,28457],[-92,-27],[-68,4],[-38,22],[-43,23],[-35,41],[54,20],[60,-3],[66,-49],[96,-31]],[[69060,28585],[75,-1],[61,6],[46,-17],[67,-37],[76,19],[34,-59],[48,-53],[-44,-46],[-47,27],[-72,14],[-71,-3],[-75,-10],[-77,-21],[-77,2],[-88,-34],[-64,-23],[-59,-29],[-7,72],[34,60],[-14,49],[-47,41],[34,55],[84,36],[63,5],[78,-6],[42,-47]],[[56477,28653],[61,-19],[61,11],[67,27],[58,-10],[55,-71],[97,-40],[-78,-43],[-80,30],[-103,6],[-124,2],[-81,11],[-51,8],[31,36],[-41,40],[-59,66],[116,-15],[71,-39]],[[68582,28853],[51,-51],[-49,-60],[-81,-10],[-118,-8],[-100,12],[-74,6],[-80,32],[-58,43],[80,12],[72,23],[68,3],[54,-9],[40,-1],[54,12],[75,0],[66,-4]],[[58558,28712],[54,-9],[52,3],[46,-41],[3,-56],[24,-46],[84,1],[49,34],[61,10],[77,-6],[85,-15],[21,-51],[68,-28],[68,-4],[63,-41],[18,-42],[46,-9],[37,17],[62,13],[58,-54],[51,-57],[16,-50],[-41,-56],[88,3],[87,-36],[85,-40],[37,-62],[-1,-60],[-87,-33],[-47,-73],[-65,-9],[-100,37],[-90,-10],[-128,11],[-101,-18],[26,-41],[53,-3],[92,4],[65,-14],[69,-61],[-90,-33],[-55,-11],[-37,-27],[-21,-31],[78,-50],[-40,-65],[-55,-26],[-99,-13],[-85,-10],[-67,15],[-63,-26],[-69,-29],[48,-18],[49,-1],[56,-1],[81,0],[61,-31],[56,14],[40,-16],[69,35],[86,9],[61,-5],[68,-3],[89,-26],[87,-1],[36,40],[62,27],[58,-6],[52,-17],[52,-8],[47,-27],[31,-53],[16,-42],[-66,19],[-132,4],[-67,7],[-67,1],[-129,-27],[-64,-52],[-38,-9],[-86,51],[-42,27],[-87,-5],[19,-65],[44,-41],[66,-40],[59,-36],[8,-57],[-83,-6],[-66,-3],[-78,21],[4,41],[-63,-5],[-85,1],[-54,25],[-24,43],[-40,34],[-67,-15],[-57,31],[-82,-13],[-58,1],[-41,26],[-9,57],[17,61],[37,25],[70,18],[-39,46],[-82,22],[-32,-14],[-30,-42],[-90,-11],[-61,-11],[-57,-10],[-79,-32],[-60,-17],[-37,6],[-7,58],[-15,10],[-27,0],[-22,-12],[-6,-60],[-2,-20],[-27,-29],[-99,-9],[-6,-34],[148,-11],[50,20],[94,28],[49,-22],[32,-62],[60,50],[120,47],[6,-69],[43,-50],[63,-62],[-54,-4],[-83,24],[-77,10],[-66,-60],[78,-7],[46,-21],[-8,-46],[44,-9],[57,9],[121,-6],[24,-57],[-51,-21],[-59,-29],[-95,-15],[-31,-85],[145,-14],[76,-25],[60,-26],[-35,-54],[94,-23],[51,-39],[38,33],[49,15],[55,-10],[55,-22],[66,-3],[-42,43],[-55,26],[-25,28],[-53,16],[-67,10],[-59,29],[-5,65],[62,9],[106,34],[-102,66],[79,35],[69,-21],[36,-35],[82,-2],[82,9],[70,-12],[37,-30],[36,-16],[90,-7],[28,-41],[9,-43],[-3,-101],[81,-28],[-69,-37],[-69,-13],[-91,-18],[72,-42],[-51,-32],[-43,-59],[-62,-62],[-78,-17],[-132,32],[-96,18],[-72,50],[-15,71],[-53,15],[-70,-15],[-69,-12],[-3,-72],[45,-38],[86,23],[-22,-65],[-84,-21],[73,-54],[63,-52],[50,9],[72,3],[18,-48],[-30,-63],[-65,-37],[-101,-24],[-55,-26],[-70,-10],[-92,-3],[-88,-30],[-64,8],[-97,-3],[-74,-38],[-31,-55],[-87,-14],[-85,41],[-55,-12],[23,-52],[-52,-22],[-85,8],[35,64],[-84,35],[-85,30],[-91,27],[-74,43],[-53,44],[-119,-19],[-106,-13],[-2,39],[108,64],[123,9],[10,2],[66,14],[50,-2],[11,37],[-18,12],[-37,0],[-51,17],[-57,-29],[-116,16],[-38,47],[31,78],[28,74],[-17,33],[-19,1],[-37,-31],[-31,-66],[-37,-42],[-55,-1],[-37,28],[-67,-32],[-43,-12],[-44,14],[-16,27],[6,51],[26,37],[50,33],[-25,76],[0,86],[26,71],[87,51],[36,10],[129,31],[3,17],[-26,14],[-56,-9],[-20,14],[-37,51],[-18,109],[47,50],[24,48],[-33,55],[-68,26],[36,22],[28,31],[1,16],[-73,35],[-34,-35],[-49,29],[-43,30],[-44,22],[-77,44],[-43,57],[-95,15],[-20,54],[104,67],[79,40],[135,18],[56,-9],[51,17],[59,-30],[55,8],[41,52],[28,52],[35,43],[16,6],[53,-26],[39,0],[42,-5],[55,-47],[32,-29],[31,-31],[42,-20],[93,-1],[33,-47],[58,-19],[34,-16],[-10,-24],[-4,-43],[44,-7],[78,-30],[64,-15],[-2,32],[-28,26],[-22,48],[-51,44],[16,34],[-73,24],[-34,54],[-89,46],[-75,29],[-26,28],[-70,29],[-65,56],[-3,84],[8,66],[21,57],[80,110],[66,65],[50,37],[53,54],[78,49],[78,56],[57,61],[23,56],[1,47],[3,46],[-24,44],[-11,54],[-1,4],[63,45],[35,3],[79,-17],[47,-49],[48,-39],[51,-64],[47,-54]],[[63257,28670],[-36,-76],[-100,29],[-77,9],[-107,14],[-54,25],[-64,41],[-38,60],[-30,44],[-27,59],[-30,54],[-8,62],[82,-7],[111,-43],[50,-27],[78,-62],[57,-31],[55,-47],[59,-28],[79,-76]],[[67427,28907],[-108,-39],[-74,32],[-18,64],[13,51],[99,-27],[88,-81]],[[55478,29001],[-52,-32],[-52,9],[1,60],[-62,27],[74,15],[78,-15],[83,-16],[-70,-48]],[[57472,29329],[82,-77],[81,-43],[73,-7],[94,-12],[34,-18],[3,-1],[0,-47],[39,-34],[73,6],[30,-66],[2,-3],[-9,-42],[-1,-3],[-8,2],[-67,-29],[5,-76],[-44,-49],[-63,-28],[-53,-24],[-80,-20],[-79,1],[-71,33],[-46,3],[-68,16],[-76,43],[-53,37],[-72,33],[-34,40],[-70,4],[-66,46],[-39,44],[17,76],[49,8],[54,7],[-18,23],[-79,33],[-100,22],[-61,39],[-65,25],[-33,27],[-52,-4],[-55,3],[-32,17],[-4,60],[31,74],[0,58],[75,34],[76,19],[87,-10],[42,-36],[55,-27],[93,-32],[48,-36],[51,-14],[71,-31],[74,-26],[86,-19],[73,-19]],[[63744,29401],[-44,-53],[-61,14],[-54,23],[17,62],[14,66],[-38,69],[-20,39],[12,52],[76,19],[47,-9],[37,-40],[-24,-53],[19,-63],[16,-55],[3,-71]],[[73843,30014],[-35,-35],[-37,72],[-32,70],[38,46],[47,35],[32,-63],[-24,-66],[11,-59]],[[73376,30188],[40,-1],[43,5],[44,-13],[-96,-111],[-89,28],[-9,34],[-2,4],[1,12],[2,51],[49,6],[17,-15]],[[64508,30196],[-8,-55],[-27,3],[-19,12],[-37,25],[-19,41],[1,1],[85,37],[9,-4],[15,-60]],[[72313,30655],[-6,-65],[-76,26],[-58,35],[-58,52],[-35,51],[4,57],[71,25],[46,-37],[55,-34],[17,-48],[40,-62]],[[54987,30745],[-88,-54],[-19,66],[-4,68],[26,61],[84,7],[18,-74],[-17,-74]],[[64438,30596],[-13,-59],[-6,0],[-47,4],[-75,41],[-39,-28],[-19,-48],[43,-77],[-21,-35],[-25,-1],[-7,3],[-44,-14],[0,-70],[-19,-38],[-17,-36],[36,-38],[-4,-30],[20,-48],[7,-90],[-30,-38],[-40,-44],[-79,-16],[-24,-8],[-65,-52],[-51,2],[-99,80],[26,30],[26,77],[19,91],[-14,72],[-49,45],[-58,-23],[-65,-40],[-72,13],[-37,57],[1,1],[-49,95],[2,4],[1,2],[61,104],[2,2],[6,6],[45,42],[11,40],[33,77],[74,64],[127,57],[41,35],[75,91],[25,42],[50,32],[62,23],[55,4],[74,16],[47,27],[30,-14],[4,-23],[-15,-62],[20,-76],[47,-75],[41,-39],[32,-30],[23,-32],[9,-41],[-92,-54]],[[62959,29956],[18,-34],[7,-66],[-6,-62],[-79,-39],[-93,-35],[-91,-49],[-29,57],[-72,26],[-53,70],[-56,52],[-61,47],[-75,16],[-98,4],[-115,8],[-93,-38],[-71,-8],[-57,12],[-77,28],[-75,64],[-54,58],[22,65],[22,63],[-2,87],[24,52],[13,65],[30,65],[78,132],[75,91],[-14,71],[1,127],[-5,88],[19,65],[11,45],[25,63],[47,59],[66,47],[49,21],[98,31],[80,-30],[55,-32],[42,-66],[24,-91],[17,-50],[12,-63],[14,-55],[36,-80],[61,-95],[46,-77],[38,-65],[19,-72],[21,-43],[17,-54],[39,-110],[0,-70],[-23,-69],[-20,-76],[79,-89],[114,-61]],[[69599,31562],[-51,-6],[-81,26],[49,40],[75,6],[45,6],[40,-3],[26,-43],[-103,-26]],[[71256,31149],[-77,-13],[-52,66],[-50,73],[-75,19],[1,56],[24,60],[16,63],[55,7],[38,47],[54,62],[65,65],[61,40],[51,28],[88,-14],[27,-70],[29,-36],[11,-56],[11,-50],[13,-70],[-3,-88],[-38,-25],[-48,-16],[-62,-55],[-81,-51],[-58,-42]],[[70602,31668],[-67,-10],[-35,50],[50,54],[79,62],[80,59],[48,7],[48,0],[-21,-59],[-50,-57],[-132,-106]],[[65211,31726],[-73,-11],[-54,52],[-20,75],[49,47],[68,16],[42,-35],[32,-67],[4,-49],[-48,-28]],[[71618,31769],[-53,0],[-70,10],[-32,47],[-15,49],[-36,45],[-47,55],[-11,47],[71,26],[102,-9],[52,-20],[41,-33],[42,-32],[36,-43],[23,-55],[-22,-37],[-35,-36],[-46,-14]],[[66377,32281],[-34,-28],[-55,37],[-59,96],[-4,4],[14,49],[77,-9],[12,-26],[50,-52],[16,-10],[8,-35],[-12,-13],[-15,-9],[2,-4]],[[67267,32458],[15,-7],[53,16],[41,-13],[2,-1],[33,-45],[68,-45],[22,-7],[63,12],[129,-38],[41,7],[92,92],[29,6],[57,26],[40,20],[57,6],[51,24],[79,-13],[104,-33],[67,-18],[91,-16],[62,-27],[106,-39],[71,-61],[24,-89],[41,-65],[3,-58],[-35,-20],[-59,-31],[-58,-18],[-13,-79],[58,-30],[64,-33],[64,-30],[66,-26],[47,-29],[66,-40],[54,-23],[29,-40],[30,-46],[30,-12],[85,-35],[35,-32],[54,-17],[52,-32],[56,-43],[28,-28],[21,-21],[73,-2],[69,24],[71,6],[68,-16],[61,-28],[35,-40],[56,-41],[25,-51],[-1,-52],[-58,-17],[39,-44],[81,4],[-11,-61],[58,-34],[65,-35],[47,-36],[42,-46],[25,-45],[-23,-63],[62,-57],[-14,-101],[14,-59],[23,-59],[23,-62],[48,-57],[68,-24],[38,-54],[-56,-26],[39,-102],[6,-67],[-40,-72],[58,-90],[-60,-51],[-66,14],[-25,52],[-55,40],[-18,-39],[-29,-40],[-31,-71],[-49,-73],[-46,-61],[-2,-48],[14,-73],[25,-72],[-26,-49],[-59,-10],[-40,26],[-35,72],[-34,57],[-72,75],[-10,-71],[15,-44],[-7,-40],[-12,-55],[-25,-40],[-28,-36],[-13,-49],[-66,-32],[-49,-39],[-58,-22],[-46,-4],[-71,-21],[-73,49],[-75,-78],[-66,-57],[-59,-50],[-68,-24],[-58,-22],[-77,2],[-61,63],[-27,40],[-25,46],[-54,11],[-59,-30],[-29,-58],[23,-64],[-73,3],[-45,-9],[-30,39],[-40,37],[-45,18],[-42,3],[-37,-61],[-68,-38],[-59,-11],[-45,13],[-41,21],[-58,-22],[-86,33],[-76,21],[-57,1],[-6,53],[-31,66],[-34,64],[-57,51],[-45,-79],[-29,-52],[48,-19],[45,-24],[11,-36],[4,-39],[30,-51],[-11,-39],[-77,-16],[-115,24],[-77,16],[-57,47],[-10,-47],[-62,28],[-45,68],[-49,59],[-65,0],[-24,86],[60,74],[-17,62],[-24,38],[2,62],[-25,42],[-21,75],[-26,91],[16,99],[0,88],[-2,117],[18,87],[5,84],[-68,59],[-32,60],[13,53],[7,47],[19,47],[10,87],[21,96],[-84,67],[-48,-3],[-21,-49],[-93,8],[-90,-22],[-14,-46],[-55,-32],[-28,59],[-9,84],[32,53],[8,74],[-62,10],[-51,-22],[-41,26],[-12,-47],[-7,-76],[-78,-34],[0,-52],[-13,-66],[120,16],[57,-21],[18,-86],[-18,-79],[-20,-53],[82,-38],[40,-65],[40,-56],[51,-73],[20,-73],[26,-64],[59,-68],[45,-67],[4,-51],[-47,-42],[-46,-32],[-5,-52],[-11,-76],[-51,-59],[24,-48],[81,-9],[65,-46],[11,-60],[17,-44],[-3,-66],[-79,-34],[-3,-58],[-77,29],[-41,-42],[-21,-74],[-39,-55],[67,-15],[80,-64],[43,-72],[46,-42],[23,-31],[-52,-39],[-85,27],[-95,33],[-80,7],[0,-69],[-34,-56],[19,-51],[89,8],[46,0],[75,-1],[51,-18],[50,-17],[91,-14],[103,0],[89,-40],[14,-56],[33,-32],[50,-32],[13,-57],[21,-46],[20,-55],[26,-53],[30,-51],[-3,-62],[-51,-28],[-54,-40],[-50,-20],[-69,-58],[-8,-18],[-6,-13],[-26,-58],[-113,0],[-33,-27],[-3,-56],[-53,-64],[-30,-40],[-92,10],[-5,-8],[-12,-3],[-38,-67],[-59,14],[-47,-2],[-59,-19],[-67,3],[-73,-12],[-65,-42],[-132,-6],[-77,75],[-50,69],[-19,42],[-44,39],[-43,37],[8,45],[17,64],[40,44],[-41,52],[6,62],[-7,74],[-23,36],[-53,28],[-28,-71],[-71,-23],[35,-40],[-42,-56],[59,-75],[4,-54],[-53,-31],[-85,-9],[-63,-51],[-10,-47],[-22,-45],[7,-48],[-82,-8],[-72,71],[-3,78],[78,33],[55,37],[-63,28],[-44,56],[-49,33],[-62,45],[-49,9],[-40,29],[-59,28],[-35,43],[11,37],[22,69],[-59,32],[-16,-7],[-31,-40],[-28,-75],[-63,-61],[-43,-42],[-54,19],[-63,57],[-39,27],[-4,46],[64,35],[49,59],[-29,55],[-40,50],[-66,0],[-5,2],[-53,-17],[1,-10],[-23,-35],[-32,-84],[-60,-52],[-62,53],[-32,39],[-13,35],[27,36],[7,52],[-70,36],[-66,50],[-50,72],[-49,47],[-48,26],[-30,29],[10,23],[34,4],[59,-10],[37,16],[-13,60],[71,38],[48,67],[-83,39],[-71,31],[-47,18],[-59,-20],[-67,-15],[-58,22],[-48,60],[-15,53],[13,84],[-52,42],[-63,47],[5,70],[-10,70],[3,2],[-2,118],[0,5],[8,57],[78,5],[58,-22],[27,-37],[77,24],[-35,49],[-25,57],[2,1],[-12,19],[85,47],[12,-2],[31,-1],[42,52],[41,5],[48,17],[47,-6],[47,57],[11,63],[-16,80],[22,56],[25,53],[7,8],[-11,27],[-24,40],[-33,22],[-39,42],[-26,5],[-2,-6],[-10,-27],[-21,-28],[-45,-3],[-18,-2],[0,2],[-2,0],[-4,5],[-4,18],[-2,7],[7,17],[6,18],[-11,24],[2,57],[62,50],[12,49],[22,33],[24,30],[69,46],[69,-12],[6,-52],[56,17],[9,52],[15,74],[56,65],[50,38],[27,-59],[76,-62],[45,-7],[38,37],[-1,13],[-47,25],[-14,63],[-24,53],[-33,42],[31,51],[-83,92],[43,62],[120,35],[9,4],[28,53],[-6,24],[38,69],[13,-2],[1,0],[41,-6],[153,-75],[30,12],[25,41],[24,35],[-22,102],[79,39],[83,27],[44,-8],[27,-37],[38,-31],[61,-33],[41,-18],[23,13],[15,37],[68,54],[10,50],[40,62],[36,86],[24,18],[69,14],[26,26],[-53,39],[-189,-15],[-77,35],[-53,77],[13,78],[-53,53],[-47,45],[-19,60],[69,34],[10,55],[4,2],[53,15],[15,10],[48,5],[54,-11],[76,12],[51,27],[11,22],[70,12],[2,-2],[16,-32],[-6,-8],[-5,-73],[-42,-42],[34,-17],[15,-1],[56,23],[74,-3],[63,1],[70,9],[18,50],[17,39],[52,12],[42,-7],[19,23],[-10,41],[-8,61],[29,74],[70,41],[58,37],[45,39],[54,41],[29,25],[81,26],[18,-3],[51,-1],[14,0],[54,-10],[38,-17],[67,-37],[34,-16],[78,-78]],[[71251,32222],[-68,-14],[-41,44],[4,56],[11,63],[12,110],[27,86],[22,59],[58,62],[73,45],[97,-23],[87,-59],[20,-66],[-48,-45],[-77,-46],[-33,-49],[-30,-55],[8,-53],[-49,-80],[-73,-35]],[[70980,32994],[53,-66],[-71,5],[-58,18],[-100,72],[-67,59],[60,4],[63,-19],[83,-34],[37,-39]],[[70546,33064],[-77,-11],[-59,2],[-46,14],[-80,22],[-67,30],[84,17],[73,-9],[78,-24],[94,-41]],[[71903,33250],[34,-41],[-91,17],[-73,50],[-21,65],[77,-25],[37,-33],[37,-33]],[[55530,35362],[105,-32],[79,1],[69,-19],[37,-51],[0,-66],[11,-78],[13,-66],[44,-65],[9,-79],[24,-39],[62,13],[15,-63],[40,-102],[47,-75],[50,-20],[44,-3],[55,-23],[28,-65],[-17,-85],[-53,-65],[-31,-54],[-13,-42],[0,-72],[-4,-75],[-39,-54],[-80,-57],[-55,-41],[-72,-12],[-95,-35],[-108,0],[-48,82],[-42,81],[-51,65],[-53,54],[-40,45],[-63,40],[-29,63],[-58,51],[-54,47],[-21,67],[-7,70],[7,67],[-12,95],[-18,109],[-38,103],[-18,87],[16,53],[50,44],[31,29],[9,9],[38,48],[34,51],[47,45],[32,36],[44,21],[51,-25],[28,-13]],[[74853,33898],[-39,5],[-14,2],[20,-38],[30,-59],[-56,-66],[74,4],[80,29],[50,22],[65,-26],[8,-92],[22,-81],[2,-75],[-9,-58],[-46,-69],[-43,-80],[-55,-73],[-79,-103],[-72,-76],[-61,-66],[-89,60],[-49,50],[-56,2],[-89,-31],[-71,23],[-39,23],[-54,58],[11,72],[0,59],[-37,74],[-68,40],[-120,-21],[-16,78],[-82,22],[-22,75],[-74,-41],[29,-90],[3,-26],[4,-44],[-14,-39],[34,-76],[35,-56],[-39,-53],[27,-48],[51,-90],[88,-42],[88,-51],[21,-59],[20,-49],[10,-48],[11,-69],[18,-54],[-2,-72],[-15,-80],[16,-79],[1,-57],[56,18],[56,28],[10,58],[-3,45],[-19,103],[-5,95],[62,32],[15,61],[64,46],[76,-44],[65,-84],[52,-46],[62,-35],[82,-28],[77,-21],[34,43],[31,38],[37,23],[22,-5],[1,-63],[-27,-73],[13,-56],[39,-71],[23,-71],[37,-39],[40,-98],[25,-68],[3,-45],[57,-37],[45,-37],[-16,-79],[-64,-46],[32,-47],[-4,-49],[-20,-53],[61,-7],[66,47],[73,23],[59,-17],[9,-61],[-9,-77],[55,-48],[-7,-29],[-41,-23],[-55,-15],[-53,4],[-54,60],[-84,11],[-20,-36],[52,-17],[-10,-52],[-86,-50],[-68,-50],[-24,-69],[-22,-61],[-89,6],[-22,77],[-59,56],[-71,13],[-43,65],[-52,55],[-64,94],[-46,85],[-57,54],[-66,76],[-54,41],[-71,18],[-36,-55],[-6,-69],[-28,-86],[-75,-7],[-41,-2],[-41,9],[-38,28],[-49,40],[-70,33],[9,-78],[19,-73],[37,-61],[98,-58],[45,-67],[41,-38],[19,-51],[-6,-50],[-54,-54],[-97,-28],[-57,11],[-72,-3],[-79,8],[-15,-8],[-2,-31],[40,-24],[68,-10],[46,-64],[-55,-77],[-29,-75],[-109,-7],[19,-49],[65,-8],[28,-61],[26,-69],[16,-60],[-5,-59],[-5,-2],[-4,-33],[-80,0],[-66,74],[-92,74],[-24,14],[-50,-1],[-1,-4],[-96,-42],[-65,-13],[-26,-60],[-3,-55],[-3,-55],[23,-43],[8,-52],[17,-58],[24,-71],[-14,-63],[-40,-38],[-58,-6],[-19,-11],[-46,2],[-70,11],[-12,-13],[-16,-4],[-44,-43],[-49,-68],[-57,-3],[-80,34],[-40,30],[-33,23],[3,48],[4,60],[68,24],[76,32],[-46,19],[-73,8],[-97,29],[-85,-2],[-49,45],[-3,46],[12,48],[-32,64],[-5,100],[3,79],[-6,115],[5,64],[1,37],[101,76],[0,99],[-81,71],[-28,73],[-68,63],[-30,68],[-65,24],[-20,-69],[-61,-44],[-69,23],[-87,-26],[19,-66],[43,-65],[62,-94],[-2,-78],[-13,-71],[-65,-9],[-74,29],[-56,64],[-31,36],[-62,55],[-39,53],[-25,48],[-10,42],[7,56],[35,40],[44,51],[-64,59],[-99,35],[-55,37],[-42,54],[-35,71],[-7,46],[1,44],[1,53],[34,42],[60,22],[8,49],[5,66],[-77,46],[-43,63],[-44,63],[-24,52],[11,82],[-19,45],[-3,56],[-17,73],[-37,82],[7,73],[-25,42],[6,39],[1,57],[10,90],[49,81],[28,59],[8,70],[39,47],[65,-16],[94,-11],[80,-24],[96,-17],[67,-18],[24,55],[-73,56],[-48,63],[-24,52],[-84,-1],[-76,30],[-49,57],[-110,50],[-67,-19],[-67,-16],[-111,12],[-57,78],[-96,15],[-22,-59],[-18,-90],[-89,3],[-59,34],[-65,58],[61,74],[72,-22],[71,44],[-41,37],[-42,45],[-57,47],[-59,27],[-65,27],[-47,13],[-63,52],[-89,54],[-70,56],[-12,-1],[-42,-2],[-69,36],[-45,-45],[-67,46],[-79,24],[44,-80],[84,-56],[49,-65],[-45,-63],[-28,-70],[-73,-73],[2,-76],[73,-47],[48,-26],[-81,-37],[43,-42],[45,-49],[-55,-28],[-90,-34],[-80,-14],[-40,11],[-69,-5],[-74,20],[-77,2],[-63,2],[-62,-15],[-49,-7],[-94,28],[55,46],[61,28],[115,-15],[77,6],[-15,62],[-56,67],[-61,33],[-9,47],[-19,59],[-45,26],[-73,25],[-56,48],[-60,65],[28,71],[-24,57],[-40,37],[-1,61],[-1,59],[-58,46],[26,60],[72,20],[57,1],[55,-10],[66,-9],[112,34],[-85,46],[-79,1],[-42,-16],[-88,34],[-81,68],[-174,25],[-94,-4],[-34,53],[-77,34],[-78,48],[-53,-4],[-54,16],[-62,30],[-60,6],[-42,3],[-33,3],[-107,26],[-72,45],[-51,48],[-57,22],[-76,33],[-84,57],[-15,72],[63,67],[-18,65],[-45,39],[-9,49],[-16,59],[-93,-34],[-5,52],[52,29],[-7,71],[4,66],[2,72],[40,61],[55,-22],[59,-35],[76,14],[29,36],[10,51],[84,89],[95,60],[24,-55],[46,-48],[59,-22],[56,-28],[89,1],[78,3],[76,-9],[69,-6],[41,53],[69,-55],[50,-12],[40,19],[-19,48],[-48,56],[-70,46],[-69,49],[-49,48],[-102,0],[-95,-23],[-83,10],[-79,28],[-45,66],[-83,26],[-32,-52],[-28,-52],[-37,-52],[-80,43],[-20,38],[-3,39],[-14,53],[-39,-46],[-1,-45],[14,-81],[-47,8],[-51,11],[-79,-52],[-86,4],[-54,-28],[-45,-12],[-14,-52],[-62,10],[-60,24],[-20,-38],[4,-40],[-6,-57],[5,-65],[7,-92],[39,-42],[-8,-46],[-84,-7],[-60,40],[-80,23],[-36,36],[-40,27],[-56,34],[-59,-21],[-46,-67],[-54,28],[-69,3],[-8,0],[-32,-65],[-25,-77],[97,0],[49,-4],[78,-29],[53,-54],[36,-66],[30,-57],[26,-87],[35,-48],[71,-8],[38,63],[44,-12],[7,-37],[-2,-57],[40,-43],[39,-49],[66,37],[75,17],[70,-8],[62,-20],[48,-10],[48,-16],[58,-35],[49,-46],[77,-22],[61,-26],[58,-24],[79,-41],[60,-4],[28,-35],[54,-32],[39,-15],[46,5],[51,-22],[35,-32],[43,-27],[141,-31],[60,-36],[5,-52],[-62,-33],[-13,-76],[-7,-81],[-48,-55],[-28,-68],[-44,-41],[35,-45],[23,-37],[-41,-8],[-46,0],[-67,8],[-41,-23],[24,-71],[30,-70],[-50,-89],[-49,-29],[-62,-24],[19,-42],[42,-52],[6,-62],[62,-56],[19,-35],[17,-55],[-33,-41],[-66,-17],[-62,13],[-43,44],[-53,36],[-49,25],[-67,39],[-86,44],[-55,46],[-30,34],[-16,41],[-40,30],[-31,56],[-59,31],[-57,32],[-44,34],[-67,31],[-61,67],[11,76],[19,44],[-58,47],[-61,50],[-51,49],[92,73],[72,19],[44,40],[68,18],[37,37],[-84,-6],[-41,33],[-60,24],[-9,49],[23,18],[13,22],[-39,11],[-26,-33],[-11,-5],[-56,-6],[-38,55],[38,36],[29,-1],[22,32],[-4,42],[1,51],[-30,45],[-24,8],[-67,-57],[8,-83],[-61,-35],[-56,21],[-72,25],[-44,-18],[-3,-22],[33,-32],[61,-102],[-19,-79],[-112,24],[-109,13],[-80,13],[-61,-7],[-61,27],[-24,41],[-57,61],[-49,20],[-23,86],[4,5],[1,2],[16,19],[32,-4],[21,11],[2,9],[-11,16],[18,60],[-39,34],[-43,50],[-57,35],[-21,28],[-87,19],[-38,-17],[46,-34],[22,-17],[21,-53],[-38,-10],[-36,6],[-24,38],[-8,13],[-55,20],[-40,-5],[-67,8],[-10,34],[-72,24],[-28,17],[-34,-6],[-12,-47],[0,-35],[32,-5],[40,-5],[-24,-37],[11,-52],[51,-28],[10,2],[28,31],[55,2],[22,-18],[16,-5],[41,-35],[62,-12],[27,-10],[40,-1],[0,-49],[-12,-12],[-4,-16],[9,-19],[39,-29],[-25,-49],[-45,11],[-5,12],[-24,57],[-94,27],[-87,24],[-57,-55],[13,-55],[12,-45],[99,42],[45,-6],[56,-58],[-49,-2],[-57,24],[-21,-3],[-14,-17],[35,-35],[22,-6],[15,-14],[48,-9],[56,-15],[47,-30],[-1,-65],[-62,-39],[-70,-15],[-23,4],[-66,20],[-79,14],[-36,-16],[-17,-19],[9,-12],[74,8],[47,-28],[12,-13],[104,-13],[26,-7],[52,-33],[50,-22],[1,-59],[19,-58],[26,-38],[53,15],[-29,61],[44,44],[7,71],[25,31],[-7,15],[-52,44],[17,74],[63,6],[51,-16],[19,-33],[8,-19],[26,-22],[119,-38],[72,-29],[44,-40],[61,-32],[85,4],[54,-45],[15,-50],[39,-10],[50,4],[49,-28],[-56,-35],[40,-40],[59,-20],[33,-34],[51,-65],[12,-59],[0,-57],[-34,-72],[-44,-81],[-72,-15],[-67,3],[-65,1],[-115,-32],[-78,43],[-109,33],[-71,17],[-17,6],[-71,-32],[-12,-25],[20,-76],[49,-44],[25,-56],[55,-47],[91,-80],[72,-6],[26,46],[55,1],[63,-38],[23,-10],[65,0],[4,51],[-12,47],[44,0],[45,-56],[-7,-53],[-99,-32],[-42,0],[-43,-23],[-60,-31],[-42,-48],[-113,-21],[-80,-21],[-97,-14],[-90,-8],[-22,6],[-65,52],[-72,47],[-77,20],[-36,39],[-72,20],[-53,0],[-45,33],[-44,30],[-66,13],[-11,6],[-90,22],[-58,-15],[-8,-74],[-29,-54],[-29,-58],[-20,-65],[-50,-6],[-62,16],[-58,-7],[-47,19],[-90,24],[-96,31],[-55,45],[-44,50],[-70,78],[-11,75],[0,58],[-21,64],[-18,58],[16,46],[41,41],[53,63],[20,65],[1,68],[62,58],[-7,55],[-47,43],[-23,53],[-5,58],[-64,-56],[-87,-17],[4,-77],[2,-80],[3,-105],[-4,-78],[-92,-20],[26,-55],[20,-65],[-28,-58],[55,-56],[17,-61],[0,-62],[42,-46],[16,-54],[-39,-41],[32,-81],[16,-121],[-13,-75],[-95,-56],[-83,-47],[-24,-51],[-65,-54],[-21,-51],[-28,-28],[-2,0],[-75,0],[-53,-27],[6,-74],[-5,-51],[-57,-3],[-41,110],[-92,72],[-56,28],[-89,23],[-72,17],[-44,12],[-32,-6],[-10,-48],[15,-82],[17,-51],[5,-77],[1,-49],[-7,-41],[-27,-54],[-91,-58],[-34,-31],[-50,-48],[-67,-56],[-96,-17],[-56,-50],[-55,-48],[-32,-71],[-60,-56],[-78,-30],[-74,-14],[-60,1],[-46,1],[-65,18],[-56,33],[-33,29],[-19,34],[27,63],[65,81],[-3,71],[-55,39],[-17,42],[16,79],[6,52],[4,59],[0,51],[4,59],[15,65],[45,44],[33,60],[50,35],[-27,55],[3,88],[-4,41],[-19,63],[-8,45],[-12,44],[-17,35],[-9,40],[9,49],[22,70],[-4,84],[18,81],[24,41],[105,4],[-5,56],[-13,60],[-33,83],[25,71],[0,84],[-11,79],[19,57],[11,85],[-35,43],[-46,17],[-78,37],[-72,20],[-9,2],[10,-61],[-37,-61],[-45,-49],[-51,6],[-18,-63],[20,-92],[0,-67],[-55,-24],[-126,20],[-95,17],[-126,37],[-101,52],[-60,20],[-61,4],[-56,9],[-72,70],[-120,-9],[-55,2],[-71,15],[-104,7],[-74,12],[-60,6],[-89,-14],[-92,-19],[-50,-11],[-54,-13],[99,-47],[74,-2],[74,-3],[87,11],[78,-12],[131,-25],[90,-33],[80,-62],[44,-58],[19,-58],[-10,-78],[6,-53],[6,-88],[8,-63],[36,-53],[54,-45],[74,-105],[64,-81],[5,-47],[-16,-55],[0,-60],[-54,-45],[-77,-32],[-92,-30],[-68,-46],[16,-44],[44,-33],[45,-43],[44,-85],[46,-79],[24,-57],[45,-56],[28,-66],[-17,-81],[32,-63],[-9,-75],[-20,-42],[-33,-66],[-39,-65],[-31,-58],[3,-55],[5,-51],[-18,-72],[27,-78],[50,-30],[4,-45],[-129,-71],[-121,-51],[-12,5],[-42,2],[-119,15],[-39,45],[-33,60],[-23,58],[-15,72],[1,74],[38,59],[35,52],[76,39],[70,39],[5,73],[-13,60],[-21,52],[-23,70],[-23,72],[-18,59],[-10,61],[3,53],[-11,57],[8,50],[56,25],[20,54],[-20,44],[3,71],[-17,82],[-6,81],[90,25],[-13,94],[-61,38],[-70,28],[-76,34],[-16,-54],[-29,-76],[-67,-68],[-24,-64],[-2,-52],[-5,-88],[-53,-85],[-38,-18],[-75,-6],[-43,-17],[13,-68],[4,-77],[-14,-63],[-18,-69],[-49,-90],[-47,-27],[-41,-23],[-128,-10],[-98,21],[-48,28],[-38,9],[-26,-29],[-45,11],[-52,33],[-15,1],[-31,-20],[21,-29],[38,-49],[-6,-41],[-26,-38],[-24,-54],[-42,-46],[-46,-36],[-31,-31],[-32,-32],[-68,-13],[-63,15],[-83,-3],[-59,13],[-57,29],[-47,27],[-62,10],[-55,23],[-81,10],[-63,3],[-64,12],[-60,14],[-55,55],[-61,66],[-76,39],[-10,3],[-70,3],[22,-55],[-86,-17],[-62,54],[-60,22],[-53,0],[-46,-3],[-14,3],[-33,-21],[1,-5],[12,-41],[11,-79],[84,-12],[77,-35],[80,-39],[54,-2],[59,29],[69,24],[60,-54],[0,-56],[-53,1],[-16,-73],[3,-13],[-15,-65],[7,-10],[23,-33],[12,-17],[-26,-37],[-28,-62],[41,-15],[42,-8],[29,-47],[46,-43],[-5,-3],[5,-4],[-23,-54],[-1,-2],[16,-18],[5,-3],[5,-2],[-2,-2],[-27,-24],[-82,-71],[-42,-124],[-28,-30],[-10,-11],[-39,-41],[-53,-57],[-102,-85],[-10,-8],[-117,-98],[-9,-83],[10,-137],[-66,-111],[-79,-54],[8,-71],[40,-43],[34,1],[109,134],[194,182],[34,34],[28,110],[41,49],[104,208],[-1,48],[16,39],[130,150],[15,17],[19,-5],[90,-16],[57,-40],[30,-59],[34,-68],[30,-88],[24,-109],[-28,-52],[-48,-48],[-66,-76],[-51,-35],[-12,-69],[-35,-68],[-80,-66],[-78,-67],[-33,-93],[-21,-73],[10,-68],[-45,-67],[-17,-73],[12,-62],[13,-64],[32,-82],[43,-41],[24,-33],[56,-33],[77,-73],[58,-66],[47,-59],[46,-82],[63,-10],[54,1],[65,-1],[57,-16],[64,-24],[38,42],[-23,42],[-20,50],[-15,84],[97,28],[68,-32],[-2,-52],[51,-42],[-38,-60],[-20,-65],[-10,-60],[34,-58],[25,-55],[19,-56],[5,-49],[60,-81],[64,-71],[73,-67],[16,-60],[5,-68],[-89,-10],[-77,0],[-24,16],[-36,0],[-206,24],[-54,25],[-9,36],[-103,89],[-122,43],[-5,8],[-8,14],[-11,18],[-20,48],[-61,26],[-44,-31],[-31,-48],[11,-9],[-27,-35],[39,-211],[14,-7],[46,-51],[101,0],[86,1],[87,-18],[105,-43],[45,-15],[43,-24],[37,-35],[31,-21],[33,-42],[14,-77],[28,-108],[47,-53],[55,-51],[14,-98],[-27,-81],[-79,-4],[-55,6],[-59,11],[-66,5],[-90,52],[-113,39],[-137,36],[-64,45],[40,59],[46,45],[41,37],[-86,56],[-71,9],[-71,-6],[-86,30],[-87,33],[-67,22],[-56,17],[-55,23],[-17,10],[-101,23],[-33,83],[2,121],[-82,14],[-79,18],[-89,-6],[-61,25],[-48,33],[-66,44],[55,15],[-67,51],[-64,1],[-75,30],[-44,48],[-52,18],[-41,11],[-45,-7],[-97,-7],[-75,0],[-53,34],[-104,21],[-86,46],[-16,79],[11,86],[42,61],[19,51],[60,28],[23,48],[42,48],[63,35],[75,39],[3,56],[-131,-24],[-92,-44],[-23,-54],[-28,41],[-30,38],[-48,-8],[-46,-53],[-32,-62],[-21,-59],[13,-64],[-11,-83],[-64,-8],[-68,15],[-77,40],[-76,-1],[-49,17],[-64,-2],[-63,3],[-71,25],[-62,37],[-61,6],[-72,7],[-110,4],[-49,9],[-47,19],[-41,19],[-46,27],[-30,36],[-42,39],[-73,45],[-11,33],[-35,21],[-27,-8],[-28,-58],[-10,-53],[-30,-48],[-53,1],[-6,1],[-58,9],[-56,20],[-35,32],[-38,83],[24,49],[-71,66],[-73,33],[-82,32],[-99,53],[-86,28],[-70,46],[-73,51],[-86,16],[-73,6],[-75,37],[-67,46],[-43,47],[-42,32],[13,63],[-34,37],[67,18],[25,6],[-11,64],[-51,39],[-79,42],[-69,13],[-69,16],[-65,-18],[-38,-57],[-8,-52],[24,-82],[-39,-11],[-75,-12],[-52,3],[-48,35],[9,79],[-1,75],[62,42],[-10,51],[31,79],[-9,18],[-82,21],[2,-4],[-56,-52],[-41,-52],[-41,-48],[-10,-71],[-21,-75],[3,-65],[-57,-68],[-54,-39],[-60,-29],[-16,60],[32,71],[25,71],[-24,46],[-17,20],[-32,1],[-12,-32],[-28,-48],[-2,1],[-16,-54],[24,-157],[-32,-105],[-34,-24],[-13,-9],[-38,-10],[-37,19],[-4,2],[-14,35],[-48,27],[-44,-19],[-8,-22],[-5,-12],[-20,-13],[-48,7],[-33,1],[-67,66],[-15,-12],[-3,-56],[21,-37],[-48,-30],[-33,-63],[-9,-76],[-64,-51],[-91,-6],[-84,42],[-61,32],[-59,-37],[-98,-4],[-48,13],[-64,27],[-86,4],[-94,-11],[-60,12],[-29,53],[-34,69],[14,61],[54,72],[78,55],[75,35],[-53,46],[-38,34],[-33,32],[-23,56],[26,109],[15,70],[47,59],[13,70],[1,72],[99,34],[103,10],[62,40],[43,27],[20,41],[55,35],[51,-28],[53,49],[14,47],[61,29],[68,2],[65,37],[45,48],[61,62],[-70,30],[-52,48],[-49,19],[1,10],[58,48],[92,-17],[8,-51],[81,-23],[0,-67],[81,-37],[52,-39],[0,-59],[71,-43],[59,-35],[82,-39],[87,-20],[76,9],[26,64],[27,56],[2,0],[2,9],[34,40],[-3,4],[21,62],[-22,62],[-60,70],[91,12],[-16,62],[-66,41],[-68,22],[-119,-11],[-79,54],[-73,-1],[-70,32],[-10,81],[41,38],[10,65],[61,43],[41,51],[35,27],[43,30],[47,-14],[24,-12],[29,-1],[27,27],[72,67],[-27,82],[-30,63],[-26,74],[7,60],[19,49],[21,43],[31,69],[27,37],[75,14],[92,18],[82,-10],[24,-71],[11,-41],[13,-7],[51,33],[36,62],[42,-24],[-2,-74],[-6,-57],[47,-55],[0,-52],[33,-31],[77,0],[63,-3],[59,-34],[37,-52],[73,-40],[50,16],[34,13],[25,-10],[42,-49],[8,-9],[28,-33],[50,-25],[18,19],[1,40],[-57,96],[-52,75],[52,16],[65,-40],[0,-46],[59,-47],[35,-44],[106,-16],[67,-46],[7,-17],[-26,-76],[2,-9],[10,-33],[112,-96],[136,0],[87,8],[137,0],[29,-34],[16,-85],[50,-61],[95,0],[21,-38],[-34,-134],[-86,-91],[16,-37],[57,-10],[4,-44],[-7,-13],[-31,-56],[1,-39],[45,-32],[8,-22],[-26,-34],[7,-50],[16,-56],[34,6],[3,53],[0,47],[26,22],[19,43],[-16,47],[-27,48],[5,29],[26,-9],[10,-37],[53,-21],[174,96],[0,57],[-100,111],[-37,229],[-70,73],[-95,61],[-95,96],[-108,0],[-145,0],[-136,30],[-12,9],[-35,25],[-8,48],[-29,65],[-62,56],[-50,54],[-16,20],[-68,8],[-3,2],[-13,11],[-76,65],[-31,21],[-77,26],[-57,-31],[-75,-39],[-52,18],[-61,37],[-17,59],[67,54],[2,94],[66,39],[14,54],[-21,72],[-13,56],[33,57],[10,56],[24,70],[14,73],[15,101],[53,10],[66,-12],[68,7],[56,-17],[72,20],[48,54],[-17,13],[-35,24],[-15,75],[16,46],[-33,58],[-69,2],[-87,50],[-76,13],[-83,6],[-43,31],[-41,36],[-21,36],[-45,-46],[43,-63],[-72,-16],[-88,41],[-90,38],[-56,-35],[32,-55],[34,-41],[55,-27],[-20,-51],[91,17],[58,3],[51,-41],[1,-52],[-30,-69],[1,-107],[-90,-28],[-39,-68],[-22,-67],[-9,-59],[-30,-46],[-28,-44],[-62,-31],[-13,4],[-42,68],[-17,78],[-54,-22],[-15,-75],[-50,-28],[-44,-30],[-48,-50],[-78,-46],[-80,-28],[-83,24],[-67,23],[-56,-33],[-4,-60],[-22,-74],[-38,-60],[-32,-56],[-18,-103],[-36,-45],[-53,-39],[-39,-63],[-65,-38],[-57,-49],[-63,24],[-96,37],[-122,-13],[-126,-37],[-103,-35],[-40,-48],[-2,-9],[64,-14],[62,12],[76,21],[87,22],[80,19],[1,-83],[-20,-67],[-110,-68],[-43,-70],[-51,-25],[-75,-23],[-66,-26],[-61,-11],[-78,-40],[-106,12],[-104,-16],[-52,58],[-10,162],[-7,66],[77,31],[66,-19],[76,29],[34,77],[53,63],[7,49],[-70,35],[-48,-65],[-63,-6],[-49,0],[-71,63],[-20,55],[29,75],[37,68],[38,74],[25,68],[-4,47],[-2,38],[30,63],[72,56],[108,30],[92,33],[55,34],[32,63],[3,65],[-11,52],[6,83],[24,55],[26,36],[98,36],[73,2],[62,-25],[75,-49],[60,-26],[17,74],[7,77],[-23,85],[-19,45],[-37,77],[14,62],[-1,77],[31,85],[16,44],[41,55],[33,48],[19,38],[22,65],[3,90],[9,112],[40,53],[63,37],[64,27],[44,29],[62,66],[69,46],[111,69],[50,56],[16,90],[35,109],[54,66],[44,80],[45,35],[-3,81],[-8,80],[55,77],[29,51],[-13,48],[43,71],[7,83],[64,60],[-16,72],[-16,66],[-24,63],[8,53],[18,42],[-18,44],[-11,6],[-60,36],[9,-63],[9,-56],[-46,-49],[27,-70],[19,-54],[-13,-67],[-45,-43],[-25,-57],[-62,-39],[-41,-83],[-8,-72],[-57,-48],[-40,-50],[-85,22],[-28,72],[10,83],[-21,54],[-34,86],[-4,57],[3,98],[14,65],[-59,41],[-43,-11],[-34,39],[-18,83],[-76,26],[-73,14],[-100,13],[-65,3],[-86,18],[-16,2],[-88,13],[-52,-3],[-52,13],[-50,14],[-87,26],[-60,-2],[-59,-13],[-42,24],[-15,57],[-37,32],[-23,52],[41,93],[-54,40],[8,63],[-55,56],[-6,61],[-55,60],[-33,45],[-51,50],[-35,53],[-42,37],[-26,85],[-36,87],[-79,52],[-50,32],[-85,45],[-117,32],[-38,35],[-42,92],[106,154],[81,83],[49,43],[39,81],[20,70],[13,64],[42,73],[45,26],[31,56],[19,51],[80,107],[45,55],[69,28],[71,18],[52,19],[43,31],[6,70],[-36,79],[-26,50],[-24,79],[-22,78]],[[51647,27599],[-73,-7],[39,69],[34,54],[52,63],[59,81],[68,74],[79,61],[-18,-87],[-27,-74],[-20,-70],[-37,-70],[-25,-29],[-64,-39],[-67,-26]],[[51972,28696],[-62,0],[-23,70],[-30,70],[77,-16],[64,-30],[7,-59],[-33,-35]],[[51843,28690],[46,-47],[-109,-22],[-27,-63],[-39,-56],[36,-44],[75,29],[60,-9],[57,-46],[-52,-30],[-75,-40],[-74,-83],[-63,-28],[-51,11],[-75,-11],[-15,-50],[-48,-51],[-103,64],[-95,32],[-57,21],[-33,28],[10,39],[40,53],[-9,77],[67,31],[31,-55],[61,15],[42,43],[27,90],[-6,68],[25,47],[27,45],[69,-2],[50,-67],[83,-18],[-43,66],[-20,38],[-26,50],[26,70],[66,-12],[41,-48],[31,-84],[50,-51]],[[53608,31150],[41,-65],[5,-64],[4,-60],[-12,-50],[51,-38],[75,-36],[-38,-53],[-58,-33],[-43,-20],[-92,18],[-66,-30],[-50,-35],[-13,-65],[44,-61],[-62,-10],[-35,-36],[20,-34],[54,-33],[55,-50],[-34,-34],[-47,-31],[-70,-37],[-61,-28],[-63,-14],[19,52],[-27,41],[-27,35],[-37,18],[-57,-8],[-70,-41],[46,-40],[24,-55],[-33,-34],[-52,-65],[-6,-39],[2,-96],[-60,-6],[-55,-26],[9,-105],[45,-34],[20,-52],[-75,-7],[-69,25],[-23,-47],[26,-56],[-4,-42],[-20,-58],[-8,-57],[58,-26],[50,34],[77,-42],[75,-14],[68,-13],[-5,-69],[-29,-37],[-53,-57],[-56,-3],[-39,-36],[-16,-70],[-18,-74],[-66,-92],[-29,-64],[-80,-65],[-16,-57],[-11,-47],[-32,-47],[6,-44],[-24,-48],[-13,-46],[-2,-48],[7,-68],[-26,-73],[-64,-52],[-53,-76],[-7,-56],[11,-85],[-91,-75],[-55,-47],[-27,-30],[-105,-58],[-47,-83],[-78,-20],[-38,36],[25,72],[58,81],[53,80],[49,42],[53,44],[-44,51],[50,24],[78,15],[29,83],[58,67],[-83,-11],[-51,-12],[-64,13],[0,61],[18,53],[-68,2],[24,42],[71,37],[12,46],[27,35],[-22,58],[35,87],[63,27],[10,48],[-62,-26],[-83,13],[-17,50],[-6,62],[-101,9],[4,104],[-72,-12],[-59,-55],[-47,-58],[-45,-43],[-74,-31],[-75,26],[60,58],[41,55],[-23,46],[28,58],[51,-15],[51,10],[38,42],[50,13],[18,41],[-5,62],[20,66],[34,55],[95,58],[55,33],[64,52],[108,25],[121,28],[87,-23],[18,59],[-57,30],[-69,-13],[-54,26],[31,45],[69,25],[79,29],[30,38],[33,63],[-57,42],[-29,63],[-66,47],[-65,-41],[-97,-31],[-43,-51],[-45,88],[-7,58],[16,88],[68,25],[64,1],[51,74],[-2,50],[54,44],[55,21],[26,46],[-70,19],[-29,63],[-62,45],[8,67],[34,86],[19,41],[-38,49],[41,70],[27,49],[37,50],[57,11],[56,41],[4,93],[96,11],[54,-9],[65,-5],[56,-11],[48,-5],[63,-9],[92,50],[-1,62],[6,54],[49,47],[85,-63],[51,-27],[51,-18],[88,-31],[28,-56]],[[53349,32285],[-41,-26],[-43,3],[-78,25],[-47,39],[-50,68],[-35,70],[-5,64],[-42,71],[36,59],[40,61],[34,64],[65,55],[62,75],[94,-60],[116,-26],[43,-23],[5,-64],[25,-109],[-17,-73],[18,-74],[13,-56],[-51,-46],[-61,-53],[-81,-44]],[[54865,37965],[-31,-7],[-30,4],[-15,-58],[23,-70],[8,-59],[29,-38],[13,-79],[-106,-39],[-25,47],[-57,-1],[-39,-49],[-93,-10],[56,-58],[-31,-104],[-59,-33],[-66,-25],[-51,-71],[-29,-55],[-13,-53],[-2,-73],[-29,-85],[-29,-46],[-23,-52],[-25,-44],[-43,-33],[-45,-35],[-42,-28],[-31,-33],[-81,-110],[-44,-47],[-71,-86],[-62,-35],[-67,-26],[10,-35],[40,-55],[49,-87],[21,-71],[-40,-113],[-48,-52],[-76,10],[-31,2],[-31,3],[19,-70],[5,-85],[-17,-57],[13,-59],[51,-69],[13,-36],[14,-70],[92,-51],[53,-56],[30,81],[-24,68],[-25,46],[21,50],[2,68],[-51,61],[-15,89],[86,37],[37,39],[39,46],[69,9],[58,9],[90,6],[66,-16],[69,-8],[66,-43],[62,-41],[85,-97],[32,-81],[20,-39],[52,-93],[64,-77],[16,-64],[50,-27],[45,-27],[45,-32],[54,-42],[76,-20],[80,-26],[54,-9],[69,-64],[-32,-48],[-28,-52],[-2,-2],[-42,-38],[-66,-98],[-12,-65],[3,-75],[32,-51],[19,-83],[-11,-75],[-1,-55],[8,-71],[-20,-59],[-21,-86],[27,-74],[19,-90],[-10,-59],[-1,-40],[-68,-33],[2,-66],[19,-50],[41,-42],[22,-41],[-69,-90],[14,-44],[-44,-42],[-70,19],[-66,29],[-61,-33],[-14,-53],[-32,-25],[-61,-25],[-97,26],[-47,-49],[-58,-3],[-48,-46],[-41,-95],[-64,-39],[20,-48],[41,-43],[43,-62],[72,-62],[56,-51],[38,-62],[48,-27],[145,31],[102,19],[64,-7],[30,-38],[-74,-49],[-68,-22],[-41,-4],[-71,3],[-79,-19],[-144,-62],[-32,-46],[-67,-57],[-105,-41],[-56,-24],[-50,-42],[-65,-19],[-87,-23],[-91,-39],[-59,-33],[-46,-30],[-71,-25],[-32,88],[-10,69],[11,72],[43,65],[23,48],[4,50],[33,81],[25,64],[49,30],[70,32],[27,34],[21,76],[88,28],[-29,52],[-41,69],[-103,-23],[-49,-64],[-68,-1],[-55,1],[-54,19],[-59,-29],[-44,-29],[-46,-39],[-52,-44],[-89,-40],[-58,-39],[-28,-46],[-11,-59],[-49,-15],[-66,-20],[-24,-57],[-37,31],[-64,23],[-113,86],[-66,17],[-58,-41],[18,-46],[-3,-69],[-12,-142],[8,-73],[-50,18],[-53,-12],[-95,-5],[-92,32],[-79,46],[-112,6],[-51,36],[-64,3],[-39,-40],[-49,-31],[-46,-40],[-3,-75],[-17,-76],[-72,-83],[-18,-64],[-58,-46],[-112,-48],[-51,-30],[-52,-83],[-77,-18],[-55,38],[-39,15],[-52,-3],[-63,-22],[-68,-29],[-61,-11],[-66,2],[-49,-1],[-71,-12],[-50,-19],[-72,-12],[-70,0],[-61,-3],[-106,-2],[-110,29],[-74,29],[-51,32],[-1,1],[-91,3],[-73,17],[-65,6],[-40,18],[-57,12],[-28,21],[-17,14],[-3,54],[-73,25],[-35,37],[-52,33],[-91,26],[-11,-4],[-45,-18],[64,-33],[46,-17],[41,-58],[31,-43],[26,-30],[12,-9],[50,-39],[6,-5],[78,-38],[71,-17],[42,-36],[56,-34],[49,-42],[56,-37],[29,-44],[47,-66],[32,-43],[29,-48],[60,-89],[32,-53],[38,-51],[20,-41],[6,-67],[-49,-57],[-84,-46],[10,-39],[44,-39],[38,-46],[23,-58],[99,-21],[89,-11],[44,-38],[96,-20],[71,-48],[87,-73],[48,-31],[21,-71],[45,-36],[67,-46],[26,-62],[27,-63],[70,-73],[65,-85],[-10,-65],[-20,-78],[-15,-98],[-11,-62],[9,-43],[-53,-30],[-53,-7],[47,-54],[2,-56],[-25,-150],[-23,-71],[-52,-49],[-25,-54],[-24,-41],[-54,-20],[44,-35],[-42,-52],[-43,-50],[-27,-45],[-87,-31],[-44,-34],[-49,-64],[-52,-28],[-31,-44],[-37,-18],[-44,-33],[-59,-36],[-42,57],[-75,11],[-98,-13],[-91,-8],[-76,-10],[-69,-24],[-42,-14],[-50,7],[7,-66],[30,-67],[-62,-38],[-53,-79],[-28,-73],[17,-28],[37,-59],[5,-57],[-26,-37],[-29,-42],[-17,-45],[-39,-36],[-66,-50],[-33,-68],[-38,-53],[-56,-78],[-56,-46],[-62,-37],[-52,-36],[-49,-39],[-60,-7]],[[49704,28260],[-10,6],[-21,8],[-38,26],[-1,0],[-42,29],[-22,16],[-38,25],[-100,68],[-68,46],[-89,-4],[-204,-9],[-638,-29],[-372,-17],[-1,0],[-60,-4],[-12,0],[-57,-3],[-197,-9],[-30,-1],[-190,-8],[-40,-2],[-75,45],[-4,3],[-50,33],[-30,20],[-29,21],[-48,33],[-75,52],[-12,8],[-175,120],[-72,50],[-162,112],[-52,35],[-122,84],[-299,206],[-182,125],[-216,149],[-233,161],[-46,31],[-55,38],[-1,0],[-172,119],[-88,60],[0,1],[-214,147],[-310,209],[-106,72],[-274,186],[-260,171],[-144,94],[-46,30],[-31,20],[-47,-32],[-444,-297],[-174,-116],[-59,-40],[-561,-378],[-179,-123],[-132,-86],[-42,-28],[-1,0],[-46,-30],[-129,-89],[-28,-25],[-43,19],[-83,38],[-59,49],[-119,65],[-82,56],[-90,61],[-223,145],[-61,42],[-61,40],[-353,239],[-59,-46],[-30,13],[-39,15],[-39,16],[-29,11],[-49,-45],[-115,-105],[56,-41],[51,-38],[-117,-106]],[[40505,30017],[-249,39],[-284,41],[-33,5],[-49,4],[-98,9],[-143,23],[-289,36],[-1,0],[-73,12],[-422,69],[-41,6],[-38,6],[-49,6],[-357,52],[-52,-4],[-176,26]],[[38151,30347],[96,168],[80,138],[38,69],[100,178],[87,167],[155,284],[164,306],[50,93],[36,64],[11,22],[13,23],[34,62],[23,41],[29,54],[29,52],[0,1],[11,20],[33,62],[51,90],[29,52],[87,153],[32,64],[48,85],[99,183],[148,273],[291,-38],[905,-113],[25,123],[1,6],[102,313],[34,103],[53,162],[83,254],[85,346],[35,121],[63,221],[25,85],[14,46],[42,148],[9,27],[-51,12],[-74,10],[-353,47],[-305,40],[-87,12],[-206,28],[26,90],[57,194],[43,146],[3,14],[38,131],[2,7],[10,39],[102,360],[36,133],[3,11],[45,169],[55,184],[0,1],[45,171],[63,193],[48,148],[-286,26],[-468,42],[-316,29],[-89,8],[-216,20],[-30,2],[-114,12],[-10,1],[-14,4],[-46,1],[-39,5],[-4,2],[-16,9],[1,6],[1,9],[31,45],[4,15],[4,16],[-8,39],[-5,22],[10,29],[3,10],[7,7],[21,24],[14,7],[7,3],[6,3],[2,3],[11,14],[5,6],[6,22],[0,2],[2,27],[5,5],[10,9],[14,12],[6,2],[12,3],[27,7],[45,1],[5,-1],[1,0],[23,-5],[12,-14],[5,-6],[16,-4],[5,0],[4,1],[17,6],[4,5],[29,33],[2,2],[3,6],[21,48],[2,6],[6,22],[-2,3],[-3,7],[37,67],[4,8],[4,7],[12,12],[-69,9],[-101,13],[-58,8],[-19,2],[-189,25],[-128,16],[-230,32],[-4,31],[-14,108],[-3,27],[-13,101],[-3,27],[-6,47],[136,18]],[[38151,30347],[-156,-622],[-35,-137],[-31,-121],[-35,-137],[-5,-26],[-1,-2],[-72,-286],[-3,-12],[-183,-167],[-57,-52],[-101,-60],[-239,-144],[-240,-39],[-51,6],[-23,4],[-3,1],[-146,25],[-24,5],[-26,4],[-161,28],[-169,30],[-109,19],[-33,5],[-287,51],[-258,45],[-73,13],[-347,59],[-72,12],[-26,4],[-30,5],[-90,16],[-1,0],[-145,24],[-237,39],[-37,-90],[-7,-28],[0,-1],[-32,-91],[-134,-453],[-48,-119],[-19,-74],[-91,-309],[11,-117],[5,-52],[0,-3],[36,-403],[1,0],[9,-117],[2,-25],[4,-48],[0,-13],[1,-20],[22,-241],[18,-194],[5,-52],[12,-130],[45,-479],[13,-145],[13,-145],[12,-107],[3,-60],[-194,35],[-39,3],[-156,22],[-185,29],[-453,70],[-97,14],[-29,5],[-5,1],[-180,28],[-559,86],[-148,23],[-199,31],[-38,4],[-117,18]],[[32127,25790],[-55,10],[-5,1]],[[32067,25801],[7,48],[-20,83],[-24,42],[-16,28],[-28,50],[-43,59],[-15,2],[-68,10],[-4,1],[-33,5],[-31,4],[-435,64],[-456,66],[-110,16],[-378,56],[-95,13],[-90,14],[-13,2],[-13,2],[-278,42],[-30,4],[-1,1],[-102,15],[-33,5],[-25,5],[-1,0],[-27,-2],[-13,-19],[-35,-21],[-81,-39],[-56,-13],[-45,-17],[-6,-5],[-22,-17],[-17,-23],[-20,-33],[-34,-30],[-41,-31],[-38,-22],[-11,-3],[-40,-7],[-31,-15],[-41,-25],[-25,-29],[-19,-23],[-19,-19],[-23,-22],[-14,-23],[-10,-16],[-6,-10],[-12,-26],[-14,-26],[-13,-21],[-8,-26],[-20,-42],[-19,-29],[-11,-22],[-8,-31],[0,-2],[-25,-57],[-14,-23],[-11,-25],[-20,-35],[-10,-21],[-15,-19],[-16,-24],[-14,-15],[-21,-25],[-14,-24],[-9,-30],[-8,-62],[13,-52],[-6,-48],[-20,-23],[-21,-42],[-14,-27],[-27,-45],[-11,-36],[3,-23],[-70,11],[-76,12],[-1,1],[-152,23],[-26,4],[-74,10],[-33,5],[-43,6],[-167,25],[-73,11],[-127,20],[-230,31],[-110,17],[-573,87],[-331,44],[-385,52],[-126,18]],[[26096,25470],[-34,3],[-17,2],[-46,6],[-76,9],[20,55],[-170,27],[-211,33],[24,67],[2,5],[87,241],[8,22],[96,275],[41,-3],[70,-6],[88,248],[272,-40],[127,310],[-141,20],[-90,16],[-208,32],[-251,39],[-77,12],[-359,53],[-191,31],[-57,9],[-73,6],[-166,29],[28,44],[37,51],[57,67],[-16,3],[-200,30],[-36,4],[-156,81],[-84,44],[6,31],[-1,28],[1,7],[3,57],[4,74],[0,73],[1,221],[0,14],[1,30],[0,1],[0,28],[2,145],[2,87],[0,43],[-1,140],[3,213],[2,78],[2,134],[1,52],[5,280],[2,86],[0,2],[0,44],[-3,192],[-2,1],[-580,461],[-13,31],[-4,10],[-2,21],[-18,152],[-11,103],[7,27],[-19,18],[-26,15],[-19,26],[-58,67],[-41,47],[-169,192],[-1,2],[-255,271],[-103,115],[-96,-4],[-4,75],[25,2],[178,18],[107,11],[-10,51],[-41,134],[301,38],[100,10],[1,0],[121,15],[-14,44],[-34,117],[-74,248],[-117,391],[-36,123],[-7,24],[-42,130],[-18,62],[-37,122],[-37,134],[-20,73],[-6,22],[-102,315],[-35,108],[-17,57],[-103,341]],[[26096,25470],[-56,-172],[-24,-87],[-97,-336],[-111,-377],[-22,-78],[-94,-336],[-10,-29],[-75,-237],[-12,-44],[-7,-23],[-10,-33],[-9,-60],[1,-4],[7,0],[15,-4],[16,-102],[8,-45],[-4,-11],[-28,-53],[-2,-3],[-5,-10],[-9,-17],[-50,-44],[-58,-7],[-6,-1],[-11,-2],[-33,-15],[-8,-3],[-29,-34],[-9,-31],[-11,-25],[0,-8],[22,-38],[28,-11],[5,-2],[2,0],[-1,-1],[-91,-73],[-8,-2],[-12,-24],[23,-30],[9,-12],[37,-68],[11,-32],[5,-16],[12,-37],[4,-14],[-4,-18],[25,-58],[-30,-73],[31,-6],[15,-3],[-49,-17],[-43,-16],[-41,0],[-27,36],[-99,-7],[-7,-29],[-1,-2],[-1,-4],[-42,-83],[-34,-67],[-15,-37],[-9,-21],[-12,-19],[0,-1],[-27,-36],[29,-24],[55,-62],[120,-84],[96,-74],[75,-29]],[[25404,22145],[-19,-18],[-203,-199],[-177,-174],[-431,-421],[-54,-46],[-41,-42],[-67,-65],[-53,-51],[-51,-50],[-39,-40],[-39,21],[-52,24],[-43,18],[-71,31],[-70,32],[-68,-66],[-73,-74],[-72,-71],[-1,0],[-76,-74],[-53,-55],[-32,-32],[-26,-26],[-32,-31],[-28,-27],[-73,-73],[-37,-35],[-33,18],[-2,0],[-23,11],[-70,30],[-32,14],[-50,22],[-78,39],[-47,23],[-92,40],[-83,36],[-93,41],[-90,39],[-89,41],[-40,18],[-48,22],[-108,47],[-37,15],[-35,16],[-23,10],[-18,8],[-70,28],[-75,35],[-66,28],[-64,29],[-25,12],[-49,22],[-54,23],[-44,23],[-39,19],[-1,1],[-121,54],[-257,113],[-24,10],[-48,17],[-31,11],[-42,14],[49,58],[19,25],[-75,56],[-174,125],[-43,31],[-61,43],[-177,123],[-142,93],[-194,132],[-38,29],[-126,85],[-70,52],[-99,67],[-199,137],[-138,92],[-12,8],[-2,2],[-36,27],[-2,1],[-4,3],[-260,176],[-213,142],[-2,1],[-10,7],[-12,9],[-156,104],[-6,4],[-231,158],[-4,2],[-201,132],[-106,74],[-22,-14],[-195,-200],[0,-1],[-45,-45],[-601,-580],[-2,-2],[-66,-70],[-218,-210],[-21,-22],[-64,30],[-20,10],[-103,49],[-80,40],[-82,40],[-190,93],[-81,40],[-4,2],[-126,64],[-10,5],[-3,-2],[-8,-22],[-3,-11],[-5,-16],[-2,-2],[-5,-18],[-17,-58],[-7,-23],[-29,-71],[-15,-35],[-15,-8],[-47,-22],[-4,-3],[-395,194],[-31,26],[-122,101],[-523,108],[-47,12],[-46,11],[-20,5],[-226,112],[-258,129],[-11,6],[-25,12],[-27,14],[-41,20],[-25,13],[-24,12],[-62,32],[-38,80],[12,23],[17,25]],[[53347,19069],[33,-46],[-48,-45],[-46,0],[-80,-21],[-70,-16],[38,-41],[-52,-9],[22,-68],[-4,-95],[-73,-4],[-42,-34],[-79,-9],[-88,24],[43,33],[35,47],[27,51],[20,81],[18,50],[62,33],[78,21],[46,42],[99,-17],[61,23]],[[54840,19437],[-47,-56],[-60,9],[18,76],[52,37],[44,63],[74,0],[60,-18],[-48,-49],[-56,-30],[-37,-32]],[[43531,19844],[32,-43],[15,-44],[-8,-76],[-75,-36],[-73,6],[-57,-18],[-56,-9],[-55,16],[-48,64],[38,90],[53,31],[44,-5],[72,-3],[44,19],[74,8]],[[53216,19501],[-54,-43],[-50,11],[-66,-5],[-37,-63],[-92,-42],[-33,-48],[-59,2],[-74,-6],[-79,4],[-47,16],[39,52],[42,65],[60,46],[51,61],[-14,47],[32,82],[-61,73],[60,49],[87,49],[79,13],[38,37],[48,-4],[57,-48],[35,-57],[36,-76],[-23,-60],[63,-65],[-86,-13],[48,-77]],[[42803,19927],[108,18],[87,6],[-22,-61],[25,-42],[-49,-57],[-3,-85],[-65,-53],[8,-61],[-25,-48],[-115,-61],[-106,-5],[-37,41],[-14,55],[66,63],[46,70],[0,71],[26,45],[43,46],[27,58]],[[42803,19927],[-77,30],[-10,52],[73,45],[61,-11],[2,-59],[-49,-57]],[[43037,20150],[-55,-59],[-49,38],[35,36],[29,57],[47,17],[22,-44],[-29,-45]],[[47330,19832],[-48,-66],[-77,27],[34,40],[29,45],[14,53],[-44,51],[39,76],[12,85],[20,44],[-2,79],[32,70],[49,54],[61,7],[57,-16],[-43,-67],[16,-81],[-6,-71],[-24,-102],[-60,-34],[-26,-55],[-17,-66],[-16,-73]],[[42820,20453],[33,-92],[-86,17],[-85,16],[-57,39],[-10,53],[50,21],[68,10],[55,-18],[32,-46]],[[50219,20479],[-52,-8],[-52,18],[2,43],[10,73],[84,-1],[58,-44],[18,-51],[-68,-30]],[[41243,20512],[-73,-19],[6,77],[-43,87],[93,56],[31,-67],[9,-73],[-23,-61]],[[42975,20651],[-60,-40],[-55,27],[1,62],[-71,44],[11,95],[81,38],[57,-1],[60,-79],[-46,-69],[22,-77]],[[45171,20851],[-70,-57],[-94,24],[-58,7],[4,55],[30,66],[59,61],[54,4],[74,-15],[76,-57],[-28,-54],[-47,-34]],[[43855,20802],[-65,-30],[-50,30],[-73,27],[-31,73],[40,73],[82,78],[56,30],[69,18],[98,-38],[34,-55],[-51,-41],[-5,-56],[-26,-70],[-78,-39]],[[42019,20975],[-90,-10],[22,78],[60,68],[39,38],[14,87],[81,11],[35,-48],[-27,-50],[2,-6],[-38,-58],[-28,-58],[-70,-52]],[[41569,21011],[-58,0],[-46,27],[-7,67],[50,72],[119,68],[4,4],[31,27],[33,42],[51,12],[68,10],[56,-10],[59,-30],[-100,-78],[-69,-42],[-46,-13],[-119,-129],[-26,-27]],[[43255,21191],[-46,-7],[-57,26],[9,70],[49,57],[88,40],[25,-55],[14,-68],[-43,-45],[-39,-18]],[[42495,21492],[-56,-8],[-72,24],[17,41],[43,31],[31,49],[29,64],[52,13],[40,-30],[36,-47],[-12,-58],[-59,-43],[-49,-36]],[[42271,21840],[5,-56],[61,12],[28,-49],[-64,-38],[-13,-51],[-80,-44],[-62,-36],[-50,-18],[-67,-57],[-9,-59],[-46,-35],[-52,15],[-82,14],[-85,-16],[-65,6],[-9,-1],[-63,-25],[-40,37],[46,49],[55,16],[46,31],[58,46],[23,52],[82,0],[66,32],[40,55],[20,60],[12,63],[42,11],[62,13],[24,11],[136,91],[35,-53],[-54,-76]],[[42854,22017],[-62,-46],[-50,1],[-30,-8],[-17,-4],[-29,4],[-4,20],[0,1],[-7,37],[87,48],[66,75],[58,2],[43,-65],[-26,-28],[0,-2],[-11,-6],[-18,-29]],[[48521,22304],[50,-47],[66,3],[-40,-50],[-92,-41],[-42,62],[23,45],[35,28]],[[47290,22190],[-73,-20],[-49,74],[12,81],[73,-28],[109,-30],[47,-62],[-46,-10],[-73,-5]],[[48174,22258],[-38,-20],[-61,9],[22,69],[50,21],[49,10],[73,27],[-14,-80],[-81,-36]],[[47023,22299],[-32,-42],[-80,3],[-6,74],[76,42],[42,-77]],[[48786,22488],[-66,-12],[-52,43],[81,38],[46,29],[16,-39],[-25,-59]],[[47043,22542],[-57,-35],[-37,-26],[-28,-3],[-36,-83],[-6,-12],[-43,-17],[-43,5],[0,33],[31,103],[-37,7],[-110,0],[-41,-104],[-72,19],[27,116],[72,29],[128,23],[20,30],[77,2],[67,0],[66,57],[10,9],[67,1],[6,-10],[29,-45],[-59,-60],[-31,-39]],[[47492,22700],[95,0],[78,4],[50,-18],[30,-11],[-48,-81],[-15,-7],[-80,-97],[-58,11],[-26,85],[-71,28],[-61,-1],[-37,51],[-2,22],[-5,54],[72,61],[44,-15],[39,-25],[-5,-61]],[[49156,22615],[-88,-36],[-88,51],[18,54],[9,2],[85,17],[43,44],[-18,58],[104,27],[77,-42],[-38,-53],[-73,-32],[-1,-19],[-1,-21],[-29,-50]],[[55317,22812],[-72,-2],[4,69],[46,29],[72,26],[-39,-67],[-11,-55]],[[48796,22898],[-47,-53],[-66,23],[-16,83],[58,15],[61,-17],[10,-51]],[[53199,23416],[6,-50],[-57,23],[-87,2],[-50,-17],[-22,43],[2,81],[37,61],[78,-34],[42,-71],[51,-38]],[[54450,23469],[-64,0],[-49,51],[17,60],[64,20],[42,9],[41,-2],[26,-20],[-26,-44],[-51,-74]],[[48708,23553],[-46,-28],[-43,50],[64,64],[62,-29],[15,-34],[-52,-23]],[[61163,23628],[-22,-53],[-69,14],[-17,81],[69,18],[39,-60]],[[53881,23432],[54,-12],[52,-13],[22,-84],[-80,-8],[-92,27],[-31,89],[-104,-64],[25,-100],[-67,61],[-28,52],[-75,52],[-43,77],[-54,99],[38,68],[61,41],[68,-14],[58,-19],[-16,-46],[53,-47],[78,-20],[55,-43],[70,-57],[-44,-39]],[[55241,23805],[99,2],[14,-67],[-96,-71],[10,86],[-27,50]],[[49288,24105],[-33,-50],[-62,44],[-3,96],[42,44],[42,-53],[14,-81]],[[60325,24025],[-63,-15],[-12,61],[-6,58],[41,53],[48,45],[11,52],[55,16],[56,-29],[-20,-40],[-50,-71],[-26,-63],[-34,-67]],[[59053,24306],[-54,-1],[-60,-40],[-75,-25],[-98,-11],[-82,2],[-91,35],[63,62],[-78,-2],[-68,1],[-55,-16],[-84,14],[6,57],[84,60],[100,-41],[68,0],[56,37],[67,-15],[73,65],[111,-17],[87,-14],[100,15],[61,10],[56,-11],[-25,-39],[-57,-40],[-67,-16],[-38,-70]],[[52903,24510],[10,-75],[12,-65],[-1,-79],[-9,-57],[-54,55],[-19,57],[-33,31],[-60,40],[-25,53],[-33,-47],[-43,47],[37,86],[79,0],[84,-28],[55,-18]],[[49555,24386],[-75,-40],[-84,6],[-80,0],[5,71],[34,58],[19,40],[36,32],[66,40],[53,-29],[64,-51],[34,-60],[-72,-67]],[[59053,24306],[92,29],[81,52],[70,33],[58,50],[-27,66],[43,32],[84,33],[-32,41],[28,43],[46,-36],[77,-13],[75,-18],[85,22],[52,17],[60,-1],[127,-26],[67,-37],[-65,-46],[58,-28],[16,-49],[-26,-71],[33,-45],[17,-48],[-10,-50],[18,-72],[-20,-82],[-14,-153],[-24,-84],[4,-83],[7,-76],[-48,-38],[-19,-58],[-20,-70],[-42,-63],[-6,-60],[-34,-32],[-29,-36],[-10,-43],[-41,-42],[7,-80],[-17,-61],[44,-70],[-7,-73],[-56,-21],[-50,-47],[-48,3],[-22,51],[1,106],[29,61],[-21,62],[-53,-56],[-73,-1],[-79,23],[-45,-7],[-59,-15],[28,-58],[-74,-8],[-77,28],[-67,-2],[-9,-50],[-72,-5],[-60,-7],[-89,-45],[-27,-38],[-62,-78],[-65,-54],[-57,66],[-10,93],[-49,54],[-36,42],[28,97],[22,36],[35,33],[33,55],[53,41],[-53,76],[45,64],[29,58],[68,53],[100,34],[-23,44],[68,36],[76,5],[-5,99],[-80,66],[-26,58],[-55,-50],[-30,-36],[-70,-33],[-16,-53],[-32,-40],[-48,-15],[8,71],[-70,-17],[-49,3],[50,67],[67,75],[10,92],[47,61],[28,62],[74,10],[78,39],[52,64],[30,74]],[[59689,24687],[-47,-13],[-58,12],[-50,46],[-51,33],[40,45],[128,28],[4,-52],[98,-15],[-49,-26],[-15,-58]],[[54978,24843],[51,-13],[60,4],[-31,-82],[-90,-29],[-64,-38],[-46,-31],[-53,-43],[-61,-30],[-57,-17],[-56,-9],[-52,7],[-15,44],[15,29],[77,-5],[38,43],[54,60],[46,39],[70,27],[61,64],[53,-20]],[[60688,24836],[-45,-15],[-31,64],[48,65],[70,-21],[7,-67],[-49,-26]],[[59047,25073],[37,-53],[71,-12],[11,-72],[-100,-14],[-71,22],[-48,7],[-72,-2],[-55,18],[34,49],[58,35],[-55,8],[-41,-9],[-93,7],[-64,60],[84,48],[97,-22],[84,-35],[79,0],[44,-35]],[[55241,23805],[-57,-42],[-65,-33],[-51,-17],[-60,1],[42,-50],[-19,-72],[71,-71],[-46,-35],[-17,-3],[-52,-20],[-66,-24],[-134,-32],[-221,-6],[-6,7],[-19,21],[-14,16],[11,37],[10,29],[4,14],[43,96],[-35,11],[-27,3],[-90,11],[-17,2],[-3,3],[-119,10],[-7,-1],[-23,0],[-20,1],[-3,1],[-52,17],[-28,2],[-19,1],[-13,-15],[0,-30],[16,-34],[-6,-4],[-46,-33],[-61,6],[-52,47],[-54,41],[-65,15],[-19,40],[-74,-9],[-55,33],[24,56],[-11,93],[-55,4],[-72,14],[-54,-50],[-60,0],[-73,46],[8,69],[-76,31],[-48,9],[-25,31],[49,12],[42,43],[-66,41],[-51,32],[24,46],[41,47],[58,39],[-64,41],[-19,34],[-53,36],[-48,67],[10,103],[95,51],[-55,78],[-64,-15],[-21,-48],[-18,-50],[-51,22],[-61,40],[-113,33],[-3,-54],[-77,-52],[-82,45],[-70,63],[92,46],[-10,79],[72,23],[44,62],[2,46],[8,77],[-74,50],[-18,-65],[-24,-43],[-28,-41],[-36,-42],[-34,-43],[-33,-36],[-97,15],[56,91],[31,94],[31,56],[-13,75],[-68,15],[6,39],[61,66],[73,59],[52,51],[45,57],[45,8],[69,9],[56,17],[46,10],[45,14],[43,-26],[86,12],[52,-20],[60,-8],[107,-18],[102,-21],[42,-14],[58,-24],[52,-24],[25,-37],[-42,-4],[-70,36],[-21,-52],[-87,21],[-55,-58],[100,-5],[57,-15],[67,-2],[73,-41],[-20,-79],[-48,-55],[-59,-54],[-28,-37],[53,-29],[70,33],[70,13],[77,-88],[18,99],[17,47],[73,-22],[71,-39],[-8,-45],[4,-70],[57,-4],[93,-19],[49,-59],[78,-26],[59,-3],[37,-20],[24,6],[59,-37],[-54,-37],[-65,-28],[-78,-37],[112,-5],[102,12],[49,-35],[-82,-50],[54,-8],[52,-3],[65,-1],[61,-10],[58,-5],[59,21],[61,12],[47,-4],[31,18],[18,-15],[80,10],[72,4],[72,24],[15,-38],[-49,-35],[-24,-59],[77,-14],[59,46],[24,65],[47,42],[13,22],[33,12],[94,56],[-4,109],[0,20],[42,35],[85,-22],[-13,-83],[65,-40],[57,-118],[62,-157],[-52,-140],[-9,-68],[2,-5],[45,-43],[36,-35],[-5,-5],[-62,-26],[-56,6],[-58,-24],[-20,-43],[-76,-33],[-18,-46],[-26,-44],[-12,1],[-69,13],[-7,44],[-1,24],[-4,1],[-62,27],[-39,-96],[-29,-49],[-12,-55]],[[54297,25485],[-43,-71],[11,-58],[24,-70],[77,-4],[66,18],[81,30],[73,58],[57,2],[51,25],[73,3],[58,-52],[51,-37],[3,-48],[82,-3],[97,11],[30,-60],[48,-30],[-30,-33],[-47,-25],[-7,-76],[-15,-53],[-42,-32],[-63,-24],[-46,-24],[-60,-20],[-39,-50],[-9,-11],[-11,-13],[-85,-70],[-19,-1],[-84,-30],[-25,-10],[-58,18],[-173,54],[-42,38],[-9,9],[-25,23],[-9,20],[-38,85],[-31,2],[-1,2],[-28,49],[-32,40],[31,34],[-49,32],[-35,4],[-52,31],[27,23],[60,15],[70,67],[-52,48],[31,68],[53,28],[-14,34],[-61,19],[-73,-24],[-58,-17],[-37,53],[56,19],[52,6],[70,29],[52,62],[70,-45],[48,-68]],[[54788,25720],[-86,-19],[-77,41],[37,53],[50,13],[49,14],[84,6],[92,27],[89,41],[62,-18],[-23,-48],[-7,-59],[-104,-11],[-83,-23],[-83,-17]],[[55556,25806],[-97,-33],[46,54],[27,35],[36,41],[75,19],[39,-57],[-78,-31],[-48,-28]],[[55264,25834],[-78,-14],[14,44],[40,31],[162,53],[-32,-60],[-53,-19],[-53,-35]],[[54726,26767],[47,-52],[-47,-30],[-72,-10],[-51,-38],[33,-30],[54,-37],[26,-58],[49,-23],[9,-98],[13,-92],[108,-34],[65,23],[93,-49],[-43,-39],[-70,-21],[-56,-20],[-47,-44],[43,-30],[2,-5],[98,-10],[151,53],[57,4],[14,-100],[-123,-88],[-118,0],[-147,37],[-44,-40],[-75,-20],[-70,-13],[-57,12],[46,61],[74,50],[-49,55],[-69,29],[-21,-28],[-40,8],[-27,-47],[-79,-36],[-82,-20],[-92,21],[-87,-3],[-31,-60],[-76,-23],[94,-59],[-72,-39],[-42,-44],[-67,22],[-72,38],[-71,19],[-113,-69],[31,-69],[46,-67],[36,-74],[16,-23],[-15,-26],[-36,-3],[-99,18],[-89,-11],[-46,-8],[-81,-1],[-62,13],[-17,4],[-86,53],[-57,36],[-50,-28],[-66,-21],[-62,-11],[-25,56],[37,41],[31,46],[45,38],[63,-13],[59,-49],[62,-10],[42,47],[-5,57],[53,70],[61,70],[-99,16],[-51,13],[-74,1],[-69,-5],[-58,-3],[-63,-46],[-74,-56],[-41,-34],[-63,-33],[-54,-27],[-160,-118],[-109,-8],[-108,0],[-7,-5],[-15,-35],[-31,-40],[-74,1],[-72,-1],[-236,-222],[-52,-144],[-100,-53],[-109,27],[0,78],[209,166],[103,116],[-54,24],[-46,39],[39,57],[83,42],[47,22],[78,24],[72,-1],[83,54],[-65,11],[-55,43],[59,73],[54,57],[67,39],[85,-4],[48,27],[28,67],[66,25],[107,1],[8,3],[30,33],[198,88],[90,-70],[161,-77],[13,11],[37,52],[-43,48],[-50,-32],[-17,40],[-70,-9],[-23,54],[41,46],[66,33],[55,29],[66,35],[61,52],[54,25],[70,19],[76,26],[55,17],[45,46],[152,76],[88,38],[43,31],[66,23],[68,41],[88,17],[62,-44],[46,0],[58,4],[70,22],[34,36],[56,10],[141,-10],[64,-59]],[[51386,26980],[-45,-50],[-63,47],[-12,65],[8,113],[56,10],[82,16],[1,-92],[-47,-56],[20,-53]],[[49704,28260],[-7,-1],[-16,-46],[-26,-86],[-60,-61],[-16,-33],[-45,-42],[-29,-30],[-40,-18],[-32,-38],[-9,-65],[-47,-76],[-18,-68],[-6,-47],[-11,-52],[16,-58],[1,-51],[-51,-34],[-30,-67],[-51,31],[17,68],[-42,35],[-72,-3],[-37,-45],[-35,-49],[-46,-62],[-36,-8],[-7,-31],[-8,-39],[21,-27],[40,-31],[58,-14],[-11,-44],[42,-42],[40,-77],[-36,-75],[-56,-47],[-18,-74],[-13,-93],[16,-75],[89,-86],[-25,-72],[-111,-78],[-70,0],[-49,102],[-57,111],[-36,34],[-79,76],[-20,76],[-52,3],[-36,-57],[0,-48],[29,-68],[5,-57],[-41,-72],[-29,-54],[-28,-64],[-5,-68],[-8,-38],[-37,-32],[-32,-109],[42,-87],[16,-86],[-72,-59],[26,-54],[-23,-61],[-63,-33],[-65,5],[-76,-34],[-54,-61],[35,-71],[87,33],[45,15],[56,-13],[53,-6],[91,10],[20,-91],[-15,-82],[-37,-66],[-40,-52],[-5,-63],[-71,-63],[-77,-22],[-89,66],[-79,50],[-114,-13],[-79,-48],[2,-71],[-28,-42],[-38,-12],[-63,-5],[-45,-54],[27,-62],[91,37],[19,-75],[-79,-45],[-26,-14],[14,-55],[105,-56],[-21,-66],[-16,-10],[-91,-32],[14,-20],[14,-22],[18,-27],[13,0],[23,-21],[18,-72],[-1,-49],[-16,-80],[64,27],[60,44],[60,28],[59,28],[38,24],[65,-1],[53,21],[67,25],[85,29],[63,28],[51,18],[84,-3],[83,16],[91,-11],[52,-52],[59,28],[67,75],[43,24],[6,13],[87,-16],[16,-6],[4,3],[57,-4],[68,-19],[63,-22],[-44,-44],[-33,-48],[-21,-35],[-52,18],[-52,-17],[-22,-44],[-24,-35],[13,-70],[-1,-59],[-57,-80],[-75,-80],[-48,8],[-64,-11],[-89,-38],[-77,-44],[-34,-95],[-58,1],[-42,2],[-84,33],[-2,-48],[32,-55],[-24,-72],[64,-91],[62,-89],[-63,-79],[-74,-46],[-61,-12],[-58,-8],[-70,-9],[-25,0],[-109,5],[-43,-39],[-8,-7],[-49,-16],[-1,0],[-23,-53],[-8,-17],[-55,0],[-56,44],[-37,26],[-57,0],[-69,-38],[-23,6],[-15,44],[-31,72],[12,43],[102,28],[66,40],[-31,65],[-87,-3],[-74,-46],[-43,-57],[-48,-41],[-61,-18],[-66,-3],[-51,-18],[-20,0],[-22,-9],[-29,19],[7,40],[27,11],[1,4],[30,19],[47,31],[13,75],[-75,47],[-1,-3],[-2,6],[-37,97],[-104,91],[-87,86],[-52,-21],[122,-182],[101,-89],[9,-8],[27,-32],[-15,-45],[-57,-44],[-37,-41],[-24,-76],[7,-84],[70,4],[47,23],[54,12],[62,11],[57,-17],[-1,-35],[-4,-19],[-42,-44],[-9,-23],[69,1],[45,30],[3,1],[29,10],[31,-10],[4,-44],[18,-74],[-4,-4],[4,-17],[-69,-44],[-30,-9],[-59,-18],[-8,-28],[-12,-39],[-59,-6],[-17,-11],[-31,-11],[-33,-35],[-60,-47],[4,-60],[19,-68],[-43,-56],[-60,-80],[-73,-43],[-66,33],[-12,35],[-30,4],[-21,-26],[-11,-36],[-23,-37],[-54,-17],[-42,-14],[-8,-10],[-4,-6],[-19,-1],[-35,-23],[-6,2],[-29,11],[6,17],[5,15],[3,14],[-5,13],[-29,9],[-11,-3],[-34,-44],[-3,-4],[-8,-11],[-66,4],[-14,7],[-4,3],[-4,-3],[-61,-34],[-55,34],[-15,9],[-19,70],[7,5],[2,42],[-2,0],[-16,10],[-48,-3],[-56,-34],[-15,-79],[-25,-20],[-17,-13],[-79,-19],[-34,0],[-10,-35],[54,-31],[12,-16],[5,-12],[12,-26],[33,-31],[-21,-25],[-73,7],[-5,1],[-16,-2],[-71,-2],[-51,7],[-37,-15],[30,-39],[11,-69],[69,-5],[38,-36],[-3,-41],[-12,-41],[-64,-3],[-61,-19],[-26,56],[-81,24],[-80,34],[-25,47],[72,-1],[38,23],[30,65],[-42,21],[-48,12],[-9,55],[4,82],[-49,-5],[-57,-2],[-17,-64],[-19,-62],[-43,-35],[2,-57],[-21,-53],[-52,-27],[51,-28],[103,4],[60,-49],[-18,-55],[-68,-24],[-27,-69],[-37,-39],[-67,39],[-12,-80],[27,-82],[-67,-31],[-46,-1],[-62,9],[-48,-21],[-53,-27],[-75,-13],[-59,-54],[81,-39],[141,53],[66,20],[84,-4],[72,-20],[62,9],[66,-73],[-41,-91],[-17,-56],[-40,-52],[-38,-33],[-31,-44],[-49,-37],[-68,-61],[-80,-25],[-53,-34],[-29,-35],[-81,-41],[81,-46],[-46,-45],[-73,-16],[-39,51],[-78,47],[-60,24],[3,71],[-29,59],[-74,2],[-66,10],[-44,-20],[6,-51],[58,-28],[-1,-84],[-28,-40],[-104,-16],[-51,-10],[-49,-2],[-72,0],[-64,-6],[3,-62],[23,-62],[-78,-33],[-41,-31],[-51,-20],[-60,-16],[-77,-43],[-71,-28],[-58,4],[40,58],[55,46],[-18,47],[-44,58],[-10,51],[-22,37],[-44,10],[-7,34],[-65,-1],[-71,6],[-49,19],[-39,42],[54,27],[62,35],[28,34],[-22,57],[36,35],[-3,41],[-109,-4],[-58,23],[-73,17],[10,45],[12,56],[80,-7],[-15,59],[85,30],[84,30],[66,-31],[55,-33],[128,7],[-13,70],[-72,49],[-77,36],[-48,45],[13,61],[55,3],[52,23],[45,32],[75,48],[-44,40],[-44,33],[12,54],[49,54],[61,41],[19,50],[43,28],[75,-2],[90,-9],[52,-18],[-24,-50],[44,-4],[39,-42],[21,7],[13,47],[47,40],[-5,81],[45,35],[-19,59],[50,27],[0,68],[100,47],[52,-21],[64,2],[85,-18],[-18,-83],[66,-12],[38,51],[60,32],[11,65],[-77,10],[4,20],[15,76],[49,17],[61,29],[82,73],[-71,15],[-69,-27],[-128,-74],[-97,-26],[17,54],[34,35],[89,57],[59,70],[57,39],[52,47],[76,42],[19,64],[-16,57],[82,45],[82,6],[66,47],[11,81],[56,90],[82,30],[98,36],[16,53],[-6,49],[-24,53],[0,65],[60,16],[49,53],[-13,58],[62,34],[13,52],[22,37],[25,4],[18,-23],[0,-79],[54,2],[49,37],[60,19],[65,92],[101,99],[-2,43],[-88,55],[-60,42],[-41,33],[-3,3],[-54,-24],[-70,-22],[-66,-35],[-57,-24],[-11,-5],[-67,-97],[-97,-42],[-9,-53],[-31,-61],[-30,-55],[-39,-59],[-18,-76],[-47,-45],[-70,-20],[-45,45],[-32,43],[-77,-22],[-86,4],[43,-43],[66,-26],[20,-62],[16,-85],[-25,-69],[-22,-65],[0,-41],[-36,-35],[-83,-53],[-43,-66],[-35,-59],[-34,-46],[-30,-53],[-55,-53],[-65,-33],[-52,-24],[-53,-23],[-61,-9],[-70,-46],[-62,26],[-39,43],[-26,81],[-84,-5],[-45,32],[-61,-31],[16,-53],[-6,-68],[-42,-55],[-39,-43],[-24,-64],[37,-53],[-55,-48],[-12,-3],[-63,-18],[9,-67],[-17,-67],[-75,-34],[-77,-23],[-4,-76],[-19,-84],[-64,-40],[-67,-10],[-68,-9],[-70,-48],[-66,21],[36,49],[-53,44],[-31,49],[-59,24],[8,85],[-7,4],[17,75],[38,47],[-43,4],[-55,-41],[-29,-57],[-1,-48],[-2,-63],[-53,38],[-41,-67],[92,-87],[-30,-79],[-54,-21],[-59,26],[-22,-70],[50,-47],[77,-42],[67,5],[40,10],[60,-7],[-53,-50],[-58,-11],[-36,-49],[-33,-41],[-25,-58],[-9,-65],[-64,-35],[-60,35],[-68,-3],[-60,-42],[64,-40],[-23,-62],[-41,-38],[-63,-19],[-60,-32],[-5,72],[-63,2],[-21,-46],[-53,-52],[-41,-85],[-82,-29],[-85,-13],[-89,-10],[-28,68],[63,56],[51,38],[52,41],[32,37],[41,16],[69,-4],[21,58],[41,52],[5,6],[27,84],[0,2],[1,9],[3,53],[1,4],[-15,10],[-46,33],[-28,-17],[-47,-61],[-27,-13],[-44,-37],[-57,10],[2,60],[58,102],[4,16],[60,41],[50,56],[55,39],[70,116],[36,87],[-61,-10],[-39,-42],[-56,-36],[-38,-42],[-46,23],[13,58],[16,48],[65,35],[78,9],[53,65],[40,46],[46,62],[-92,22],[-37,-47],[-7,-40],[-63,-24],[-41,44],[-54,-36],[-38,-53],[-40,6],[-92,34],[-41,59],[-56,-54],[12,-75],[38,-38],[-23,-53],[44,-44],[-32,-80],[-29,-65],[-56,-12],[-44,-38],[-84,-43],[-22,3],[-30,51],[32,55],[37,42],[27,51],[-56,-16],[-62,-23],[-38,-55],[-89,-32],[-78,-32],[-44,-44],[-55,-27],[-63,8],[21,74],[27,52],[14,42],[5,14],[-23,72],[-66,24],[-84,31],[-52,-34],[-27,-46],[-75,-41],[-25,-41],[70,-56],[-34,-48],[-83,-39],[-61,-48],[-78,-27],[-53,-40],[-28,39],[-24,46],[-9,65],[37,62],[43,46],[36,62],[-29,64],[9,37],[5,58],[-15,44],[40,13],[31,24],[44,76],[11,63],[45,48],[41,37],[7,6],[32,80],[-22,90],[73,38],[7,36],[5,26],[8,63]],[[41879,23025],[25,10],[22,11],[22,15],[29,15],[20,16],[29,10],[27,2],[11,-21],[28,-10],[1,-25],[-4,-23],[6,-7],[8,-1],[61,-35],[2,-2],[7,-6],[54,-47],[21,-33],[1,-1],[16,-24],[10,-13],[22,-33],[1,-1],[0,-1],[19,-26],[5,-3],[1,0],[17,1],[17,4],[104,36],[26,9],[28,9],[-1,10],[-17,44],[-2,19],[-6,45],[-5,42],[0,1],[36,116],[30,36],[10,7],[32,10],[24,8],[-1,2],[-18,26],[0,6],[22,24],[10,5],[12,2],[1,0],[54,28],[3,3],[4,20],[7,48],[-1,10],[-20,11],[0,1],[-24,52],[1,10],[7,13],[37,65],[3,7],[12,15],[24,18],[24,15],[5,3],[96,75],[11,9],[11,9],[14,12],[26,23],[23,-11],[9,0],[35,2],[30,1],[1,0],[138,27],[18,12],[7,9],[-3,18],[0,1],[-10,43],[-4,18],[-36,61],[2,13],[1,2],[38,76],[3,7],[13,26],[396,-169],[-12,103],[-13,171],[-3,42],[-56,83],[-33,40],[-24,30],[-38,45],[-16,23],[-4,5],[-14,21],[-79,108],[-43,61],[-126,166],[-28,37],[-50,67],[-2,0],[-32,-48],[-40,3],[-25,14],[-33,-7],[-26,1],[-21,13],[0,10],[-1,17],[18,79],[63,276],[14,59],[0,1],[10,47],[8,32],[38,145],[31,175],[-135,285],[-90,186],[-51,105],[-17,35],[-14,28],[-65,138],[-41,86],[-15,30],[-55,116],[-57,127],[-65,128],[-35,81],[-19,37],[-12,26],[-15,32],[-48,90],[-88,179],[-115,-13],[-199,-20],[-26,-3],[-350,-38],[-146,-14],[-11,1],[-41,6],[-184,27],[-320,46],[-81,12],[-176,26],[12,27],[45,162],[-246,58],[-265,61],[-6,1],[-151,37],[-37,11],[-155,315],[-12,19],[-102,188],[-43,81],[-16,31],[-23,48],[-56,114],[216,494],[-161,411],[-4,10],[-22,60],[-69,180],[172,117],[175,118],[494,-73],[149,133],[21,19]],[[35620,17205],[-44,-59],[-35,47],[-64,1],[-13,47],[18,69],[40,85],[68,37],[73,-23],[-18,-50],[-31,-42],[-2,-66],[8,-46]],[[42761,17243],[-119,-9],[-52,54],[11,55],[40,79],[55,63],[89,70],[47,55],[75,15],[73,22],[73,5],[58,-27],[19,-34],[2,-56],[-61,-39],[-49,-54],[-45,-45],[-56,-31],[-38,-36],[-44,-23],[-25,-45],[-53,-19]],[[35629,17542],[-28,-62],[-21,44],[3,69],[18,81],[65,73],[108,10],[2,-45],[-42,-43],[-67,-68],[-38,-59]],[[36252,17614],[-63,-32],[-3,63],[18,61],[22,54],[79,-40],[11,-82],[-64,-24]],[[35904,18076],[-42,-21],[-22,8],[24,21],[-22,26],[31,69],[61,78],[74,33],[9,-15],[-19,-30],[-15,-43],[-14,-40],[-1,-19],[-51,-6],[-24,-27],[11,-34]],[[35251,18395],[6,-41],[-18,-19],[-6,-17],[-108,-33],[-77,0],[-14,45],[63,46],[-14,17],[-39,-2],[-13,13],[0,12],[0,3],[56,58],[53,61],[41,-1],[45,-63],[10,-31],[6,-21],[9,-27]],[[36790,18778],[-48,-28],[-27,48],[-14,63],[27,65],[49,-29],[24,-61],[-11,-58]],[[34013,19547],[-51,-55],[-65,39],[-42,-7],[-26,81],[85,82],[40,-45],[50,-36],[9,-59]],[[40155,20786],[-71,-22],[-35,68],[9,69],[40,69],[78,-20],[10,-92],[-31,-72]],[[34261,20749],[0,-65],[10,-56],[5,-70],[9,-63],[3,-48],[-19,-64],[-7,-106],[-13,-99],[-7,-21],[13,-13],[8,-43],[-51,-6],[-21,-30],[6,-23],[48,15],[53,-28],[22,-45],[-44,-41],[-1,-51],[18,-30],[2,-46],[20,-104],[-24,-103],[-1,-122],[-1,-22],[-9,-8],[-17,-14],[-51,14],[-41,44],[41,94],[12,66],[7,3],[-4,41],[-80,0],[-124,17],[-48,-4],[-61,54],[3,78],[-45,61],[-36,42],[8,73],[-22,26],[-29,55],[-4,50],[7,49],[17,44],[13,66],[19,30],[33,104],[50,143],[16,9],[5,3],[33,19],[23,15],[0,32],[6,38],[-3,-1],[-1,46],[43,34],[71,55],[31,31],[8,73],[63,58],[61,28],[15,22],[34,-5],[16,-95],[-35,-57],[-7,-32],[-31,-38],[-15,-79]],[[39860,20725],[-37,-54],[-90,23],[-6,128],[31,114],[18,64],[27,80],[15,71],[-8,64],[9,80],[37,84],[57,48],[3,62],[-5,67],[44,60],[57,-63],[27,-121],[71,-42],[73,-47],[49,-51],[-41,-43],[-46,-38],[-28,-54],[-75,-68],[-77,-22],[9,-79],[1,-54],[-47,-52],[-13,-56],[-18,-45],[-37,-56]],[[40967,21787],[-61,-54],[-52,30],[5,69],[65,52],[45,35],[60,16],[-16,-56],[-16,-44],[-30,-48]],[[40335,22208],[-6,-46],[-77,-63],[-2,-70],[-13,-82],[-51,-60],[-59,-50],[-31,-53],[-50,-34],[-31,59],[-16,61],[12,78],[43,77],[54,100],[84,57],[66,-5],[77,31]],[[34058,21097],[-21,-31],[-60,-58],[-43,-37],[-7,43],[3,6],[-4,56],[-28,-11],[-9,-11],[-9,-12],[-33,-43],[-39,-25],[-47,-48],[-69,-40],[-69,-16],[6,-64],[-1,-84],[28,-61],[-3,-76],[0,-54],[-15,-62],[-40,-49],[-31,-35],[-18,-79],[3,-95],[-3,-86],[-7,-63],[-37,-54],[1,-98],[-41,-70],[-53,40],[-36,-102],[-54,-1],[-33,-61],[-10,-56],[55,-56],[-20,-65],[-42,-22],[-28,-42],[-26,-48],[-53,9],[-82,19],[11,-68],[-75,26],[-47,38],[4,87],[-15,66],[-28,57],[1,47],[17,57],[-52,-25],[-3,59],[-5,71],[-67,-19],[3,86],[-55,74],[-46,-21],[-18,41],[5,75],[-7,36],[-31,25],[46,38],[14,96],[-65,17],[-97,-61],[-2,85],[63,70],[103,124],[94,47],[26,31],[56,23],[74,3],[52,1],[76,8],[40,-92],[28,38],[34,117],[44,96],[44,53],[47,64],[53,59],[41,46],[26,47],[21,42],[9,45],[73,60],[51,77],[32,39],[30,63],[33,81],[45,48],[45,47],[25,54],[51,48],[-3,49],[66,81],[97,130],[72,108],[20,29],[85,121],[38,16],[52,49],[25,68],[58,62],[62,40],[65,6],[-29,-52],[-37,-72],[-80,-78],[-26,-78],[10,-50],[-47,-42],[-73,-83],[-70,-85],[-18,-53],[58,-25],[-12,-87],[3,-77],[-32,-72],[-45,-80],[-53,-55],[-45,-63],[24,-85],[10,-71],[-14,-80],[10,-55]],[[41190,22812],[21,-70],[-13,-36],[-19,-20],[-11,-10],[-31,-42],[64,-25],[17,-71],[-13,-70],[21,-54],[-36,-82],[-50,-78],[-24,-79],[-6,-59],[-59,-32],[-48,-9],[-60,-2],[-24,91],[11,79],[-82,-8],[-51,60],[-19,63],[30,60],[24,65],[22,51],[-14,44],[20,58],[55,50],[1,1],[69,46],[51,42],[63,-27],[91,64]],[[41388,22598],[-43,-12],[2,78],[5,22],[14,58],[26,89],[43,66],[76,30],[36,-30],[-11,-91],[-17,-84],[-29,-38],[-29,-39],[-73,-49]],[[41265,22965],[-54,0],[-18,3],[109,196],[32,23],[32,-8],[3,-11],[21,-16],[-2,-19],[14,-37],[-33,-37],[-27,-11],[-28,-49],[-47,-32],[-2,-2]],[[41879,23025],[-4,85],[-22,12],[-93,-55],[1,-3],[-62,-38],[-44,1],[-91,6],[-43,64],[-74,10],[3,72],[56,23],[51,64],[46,25],[46,6],[59,89],[47,7],[52,50],[56,-34],[76,-9],[48,58],[-58,53],[42,41],[71,32],[64,29],[82,49],[-37,81],[-53,-17],[-32,-36],[-54,-14],[-29,80],[-38,68],[27,45],[54,55],[-32,50],[-44,33],[16,45],[-25,80],[-62,-18],[-51,-16],[-37,-32],[-41,-43],[-76,7],[-52,37],[-50,30],[-45,50],[-53,24],[-60,21],[-91,15],[-64,24],[35,45],[-34,46],[-50,27],[-66,18],[-27,38],[13,57],[27,47],[32,64],[29,50],[39,14],[34,37],[41,43],[-34,61],[-61,-65],[-47,-51],[-74,-18],[-30,-29],[8,-58],[-19,-45],[-13,-35],[-20,-37],[-24,-36],[-46,-36],[-50,-18],[-40,-28],[4,-96],[-31,-45],[22,-62],[107,39],[101,-25],[80,4],[43,-22],[67,-23],[49,-3],[-11,-81],[38,-29],[43,-22],[10,-45],[56,-16],[-55,-30],[-12,-52],[29,-52],[44,-62],[-39,-27],[-37,-83],[58,-38],[0,-68],[-66,-46],[-88,-49],[-9,-57],[-58,9],[-41,-16],[-35,-40],[-49,-49],[-59,19],[-30,70],[49,59],[-43,73],[-3,97],[79,52],[59,69],[-5,67],[-20,68],[-58,-55],[-26,46],[8,57],[-49,-20],[-36,-16],[-41,-40],[2,-61],[-21,-47],[-8,-54],[-11,-79],[-68,-60],[-11,-64],[-65,7],[-55,20],[-87,-1],[-63,-64],[-53,14],[-56,-42],[15,-59],[13,-49],[-2,-52],[5,-74],[52,0],[83,3],[72,7],[94,22],[64,-34],[80,-49],[47,-101],[-8,-70],[-46,-92],[-39,-25],[-32,-39],[-53,-29],[-37,-24],[-12,-8],[-40,-41],[-74,-14],[-53,-87],[-66,-81],[-40,-58],[-58,-35],[-51,-37],[-68,-47],[-67,-43],[-66,59],[-8,96],[-21,93],[43,50],[-24,86],[-70,-44],[-48,-28],[-55,-69],[43,-59],[-44,-59],[-58,-68],[-61,-88],[-32,-75],[-48,-49],[-45,-62],[-78,-52],[40,-15],[51,-24],[-27,-62],[-32,-61],[-32,-93],[-30,-57],[-14,-67],[-15,-72],[-47,-46],[-80,-6],[-89,35],[-63,-44],[-10,-81],[21,-60],[48,28],[54,26],[79,-19],[-4,-83],[-42,-78],[-25,-140],[-41,-106],[-15,-85],[-19,-62],[-31,-86],[-54,-41],[38,-71],[-36,-92],[-46,-66],[-51,-50],[-81,-78],[-36,-60],[-56,-52],[-53,-63],[-42,59],[-41,-3],[-122,-241],[-71,-54],[-18,1],[-60,-7],[-20,-29],[98,-8],[9,-5],[-5,-17],[-32,-69],[-27,-19],[-21,-51],[-30,-41],[-38,-54],[-36,-75],[-32,-45],[-31,-49],[-44,-79],[-35,-61],[-7,-62],[-37,-56],[-26,-55],[-50,-59],[-93,-35],[-91,-35],[-71,-64],[-21,83],[8,106],[27,90],[-30,79],[14,50],[-21,39],[-26,81],[-60,85],[-56,74],[0,101],[39,76],[-59,42],[-33,24],[19,46],[-32,49],[66,47],[43,-48],[71,29],[54,53],[53,7],[60,16],[54,40],[33,8],[-5,19],[-28,22],[-15,38],[8,52],[-12,6],[-92,-9],[-18,85],[-19,69],[11,54],[63,9],[48,-57],[26,53],[-58,47],[-20,36],[-34,0],[-32,-1],[-39,-11],[-55,-31],[-39,-56],[40,-97],[37,-62],[10,-41],[33,-69],[-58,-40],[-83,-44],[-71,-13],[-53,-3],[-54,-25],[14,-55],[-70,-2],[-79,-25],[-76,27],[-64,3],[-26,41],[-15,63],[6,70],[0,8],[11,86],[0,1],[1,9],[17,116],[9,3],[55,76],[76,57],[64,56],[6,113],[-15,87],[-52,47],[-16,-2],[-34,-58],[13,-79],[-39,-62],[-87,2],[-44,28],[-11,13],[-14,6],[-33,-28],[-18,3],[1,4],[-1,-1],[3,92],[29,64],[-15,73],[34,25],[-26,41],[-18,-3],[-46,-64],[-4,-85],[-28,-54],[-25,-85],[-25,-56],[-11,-48],[59,-73],[-60,-17],[-59,-10],[-76,33],[-19,14],[-29,3],[-3,-23],[-7,-42],[-12,-32],[50,-118],[7,-115],[1,-15],[29,-69],[24,-5],[15,31],[13,6],[50,0],[15,15],[6,7],[1,2],[12,30],[1,2],[-29,20],[-31,-19],[-26,15],[9,33],[13,43],[2,46],[36,72],[52,5],[33,-7],[35,-104],[14,-31],[0,-11],[-25,-19],[-13,-24],[6,-10],[14,-30],[9,-18],[-20,-38],[-40,-16],[-13,-40],[-45,-34],[-50,-39],[-53,19],[-50,-60],[-13,-52],[-12,-64],[31,-53],[48,-68],[72,1],[48,33],[20,-6],[20,-39],[46,-29],[11,-55],[-39,-69],[-49,-92],[1,-20],[13,-75],[-58,-67],[-6,-71],[-22,-45],[7,-25],[7,-58],[-33,-57],[-53,-57],[-40,10],[-4,75],[4,33],[0,34],[-15,20],[-46,0],[2,57],[86,51],[56,36],[-10,9],[-62,27],[-89,-40],[-59,-28],[-55,-49],[-65,44],[19,98],[41,97],[-11,57],[66,35],[43,50],[26,53],[-93,-9],[-47,41],[-2,62],[-2,76],[4,72],[-60,-6],[-67,2],[18,-46],[-63,-72],[-47,71],[-19,92],[-68,29],[-23,42],[-22,60],[-17,43],[-5,53],[6,85],[73,19],[79,40],[22,-80],[27,-47],[34,-38],[10,-60],[45,-33],[18,1],[21,102],[-2,53],[-30,65],[-30,51],[37,53],[0,64],[4,63],[-9,37],[58,-15],[43,-50],[54,3],[3,300],[-24,5],[-40,-56],[-64,9],[3,11],[-7,23],[23,76],[43,68],[28,58],[20,22],[-18,109],[-55,48],[-7,0],[-63,0],[-17,6],[-7,2],[-79,56],[-32,-17],[-41,-22],[-69,-20],[-19,14],[16,34],[32,19],[22,12],[0,21],[0,13],[-7,16],[-2,3],[-24,0],[-79,13],[-5,3],[26,98],[39,55],[20,51],[58,134],[59,65],[63,15],[62,33],[40,83],[-85,31],[-55,26],[30,38],[13,57],[83,-12],[62,19],[8,67],[68,30],[14,53],[49,71],[55,65],[60,46],[59,14],[64,75],[30,94],[82,65],[78,53],[56,27],[32,35],[22,34],[3,5],[16,49],[10,57],[2,78],[-19,75],[-26,56],[-57,-11],[39,91],[-67,-6],[-54,0],[61,46],[35,44],[77,40],[75,-2],[49,81],[-76,29],[17,65],[-17,54],[-84,-1],[-25,-45],[-45,8],[-33,-28],[-20,-31],[-32,-36],[-69,-40],[-27,-64],[-13,-90],[-34,-44],[-14,-84],[-32,-106],[74,-55],[-6,-84],[8,-51],[1,-5],[-71,-66],[-60,-29],[-59,-45],[27,-50],[-35,-56],[-76,-48],[-66,-35],[-74,11],[-54,-10],[-33,-39],[-29,-61],[-68,-6],[-57,-34],[5,-70],[24,-63],[-65,-51],[-43,-57],[26,-54],[-1,-51],[18,-66],[-17,-67],[-68,-31],[-84,-46],[-64,-34],[-75,24],[-43,11],[-16,-21],[5,-59],[-15,-55],[19,-35],[8,1],[28,46],[66,23],[30,6],[22,-10],[30,-14],[-12,-56],[-82,-79],[-44,0],[4,-95],[-7,-41],[-19,-47],[-28,-69],[0,-67],[-30,-54],[24,-59],[-48,-45],[-25,-24],[-39,-37],[-55,6],[-35,-48],[22,-73],[-7,-50],[-51,-45],[15,-79],[10,-2],[46,65],[54,38],[47,23],[41,40],[-75,42],[22,52],[50,29],[68,39],[48,9],[7,-6],[5,-37],[22,-25],[15,-3],[46,59],[87,52],[60,-59],[31,-45],[5,-83],[-36,-86],[-32,-56],[-22,-35],[-33,-36],[14,-60],[-46,-49],[-39,-18],[-25,-66],[38,-70],[-7,-40],[24,-43],[-51,12],[-44,14],[-46,36],[-11,-7],[2,-38],[-2,-80],[26,-62],[-31,-80],[-24,-55],[-34,-59],[-38,-36],[52,-17],[66,-12],[75,-17],[32,-42],[0,-51],[126,-99],[48,-79],[35,-12],[33,18],[24,-10],[5,-81],[-7,-16],[0,-21],[-23,-50],[-8,-64],[-17,-40],[-10,-41],[0,-57],[-24,-95],[-4,-57],[-30,-91],[-17,-52],[-34,-44],[-52,19],[-46,-22],[-10,-19],[-14,-65],[-51,-89],[-45,-58],[-77,-45],[-91,12],[-31,-39],[-75,14],[-71,-8],[-51,40],[21,53],[-11,76],[1,84],[71,25],[67,-12],[70,16],[54,68],[61,38],[-28,83],[-22,48],[9,66],[40,68],[9,71],[41,61],[9,20],[31,21],[-12,20],[-4,7],[-12,3],[-40,9],[-13,38],[-21,50],[37,53],[4,2],[1,21],[-3,35],[-9,5],[-30,-5],[-14,-11],[-81,-38],[-69,8],[-65,-22],[-9,1],[-41,15],[-46,-24],[0,-47],[-6,-14],[-1,-73],[-12,-43],[1,-16],[-10,-13],[-5,-6],[-9,-12],[-58,0],[-18,-27],[-46,-16],[-48,38],[-10,34],[-46,6],[-7,-33],[-2,-10],[-8,-19],[-3,-29],[6,-5],[12,-30],[54,-78],[28,-83],[-22,-76],[-44,-71],[-68,-42],[-72,-17],[-46,62],[-41,46],[-50,9],[-31,42],[-27,56],[-13,74],[46,50],[79,50],[2,15],[-5,44],[15,25],[10,16],[28,57],[-39,25],[-31,-13],[-11,-53],[-62,-41],[-2,1],[-40,1],[-37,0],[-101,33],[24,30],[26,0],[25,34],[-3,5],[-61,14],[-34,-50],[-1,-27],[0,-39],[-36,-14],[-59,0],[-40,-28],[-46,-15],[-42,-14],[-9,-27],[-13,-58],[91,46],[104,3],[-33,-74],[-57,2],[-42,-31],[-29,-31],[-40,-29],[-51,2],[-18,-67],[43,-55],[-2,-35],[63,-132],[18,-91],[-31,-2],[-66,65],[5,40],[-12,11],[-17,0],[-10,-67],[-13,-34],[-16,-101],[14,-69],[-3,-55],[-35,-68],[37,-29],[-11,-68],[-13,-69],[3,-55],[-9,-48],[-12,-39],[3,-58],[12,-43],[22,-31],[-51,-107],[-50,-25],[-36,29],[9,52],[-7,19],[-2,-3],[-41,3],[-2,0],[-47,6],[-13,48],[-38,41],[-40,39],[-33,72],[-41,81],[-24,81],[-46,41],[-2,26],[-29,14],[-29,-9],[-75,7],[-65,24],[7,56],[-13,50],[-15,14],[-21,-4],[-7,-24],[-55,-22],[-6,2],[-22,7],[-9,3],[-20,42],[29,112],[-5,98],[-8,32],[-3,10],[-22,2],[-19,-11],[-29,-17],[-46,0],[11,63],[49,35],[35,79],[-3,66],[24,68],[57,23],[45,-18],[16,-61],[38,-55],[1,-52],[9,-4],[28,9],[9,44],[22,10],[6,-6],[31,-16],[22,2],[9,31],[-3,8],[49,10],[4,-18],[9,-46],[59,3],[-28,71],[29,35],[-43,35],[-8,65],[-20,42],[21,38],[-3,62],[-3,66],[42,42],[61,-29],[17,-61],[73,12],[62,-42],[71,-49],[72,-14],[-24,80],[48,35],[-8,64],[-55,-24],[-99,-14],[-8,51],[-52,9],[-44,17],[12,42],[-2,393],[-14,69],[18,27],[15,47],[27,39],[10,86],[-54,-2],[-30,49],[38,53],[31,80],[2,80],[26,76],[-16,71],[9,65],[13,67],[46,56],[1,68],[-13,78],[59,64],[21,55],[28,26],[32,50],[18,51],[4,56],[44,59],[45,32],[237,-8],[9,-10],[28,-50],[36,-20],[58,-8],[-8,-61],[11,-58],[68,-48],[48,-68],[24,-73],[3,-50],[-8,-32],[39,-36],[50,6],[4,35],[4,-1],[52,76],[0,105],[35,60],[-50,66],[-60,0],[0,-26],[-48,2],[-82,67],[30,52],[-28,34],[-38,14],[36,30],[20,34],[-35,12],[-43,24],[-19,49],[-63,30],[-45,-30],[-43,-81],[-215,12],[-8,34],[-60,-1],[-52,-73],[-62,-49],[-46,-14],[-60,-18],[-83,-27],[-80,-30],[-84,-33],[-18,46],[-15,65],[-9,53],[-1,59],[11,87],[25,40],[13,42],[36,52],[33,52],[21,46],[35,55],[13,65],[8,43],[34,53],[2,38],[-3,72],[42,89],[40,79],[34,63],[27,53],[60,73],[46,61],[31,41],[23,73],[42,57],[26,55],[-88,-5],[-50,-18],[-39,-12],[-57,-7],[-18,51],[63,31],[59,49],[31,20],[8,5],[19,12],[54,19],[81,-20],[3,-9],[1,-2],[23,-65],[56,-18],[52,66],[2,17],[3,17],[5,37],[12,24],[-88,59],[26,58],[59,45],[98,67],[48,35],[133,95],[96,40],[101,-44],[60,22],[-32,75],[-20,107],[8,238],[66,198],[22,66],[-28,33],[-52,-44],[-302,-550],[-44,-134],[-125,-26],[-103,-102],[-1,0],[-39,-25],[-29,-18],[-102,-11],[-5,-1],[-33,52],[-44,15],[-9,37],[-38,17],[-39,-22],[-39,-55],[4,-75],[-60,-34],[-33,-72],[-1,-1],[-40,-63],[-5,-9],[-27,-48],[-14,-3],[-82,-19],[-94,-5],[-96,-61],[32,-55],[-18,-62],[43,9],[60,58],[40,-4],[25,-34],[-17,-26],[0,-2],[-24,-38],[-23,-28],[-20,-25],[-118,-141],[-13,-28],[-1,-56],[119,133],[25,11],[23,-11],[-4,-82],[-87,-136],[-49,-76],[-37,-56],[-24,23],[0,70],[-21,29],[-46,-35],[-56,-51],[23,-73],[-1,-3],[1,-4],[-73,-149],[-168,-189],[-57,-101],[-56,12],[14,93],[6,40],[-13,7],[-34,17],[-24,-23],[-13,-21],[0,-158],[-32,-78],[-109,-33],[-96,0],[-29,92],[-28,8],[-8,-19],[-8,-80],[-29,-75],[-56,-63],[-82,-13],[-35,80],[-14,62],[-15,46]],[[32927,21363],[0,9],[1,6],[20,167],[-3,24],[-7,36],[-19,22],[2,6],[18,45],[0,78],[10,1],[37,3],[61,8],[-27,58],[-7,15],[-20,44],[-15,34],[-3,7],[-32,69],[62,44],[11,8],[12,23],[57,110],[54,106],[8,17],[30,59],[27,39],[10,15],[55,79],[24,46],[1,12],[-2,9],[-5,21],[7,17],[40,47],[38,26],[11,8],[12,5],[4,2],[10,12],[14,17],[17,23],[-16,28],[48,68],[-48,7],[-359,52],[-302,44],[-82,13],[-62,8],[-174,24],[-57,8],[-28,5],[-78,27],[-26,4],[-1,0],[-197,31],[-12,2],[-260,41],[-403,63],[-236,38],[-137,21],[-37,6],[-48,8]],[[30925,23238],[63,1],[31,65],[-11,53],[44,43],[32,53],[53,-2],[37,-33],[42,10],[51,4],[37,23],[56,44],[28,40],[59,48],[65,28],[99,45],[20,50],[7,43],[5,64],[18,67],[24,46],[-82,-6],[-61,-34],[-17,61],[-8,50],[-27,54],[-27,41],[2,78],[31,27],[13,55],[16,71],[-69,24],[-56,6],[19,74],[51,89],[-8,62],[-30,57],[32,31],[49,23],[19,9],[85,95],[46,42],[54,19],[50,39],[24,56],[17,71],[48,63],[75,42],[7,98],[-18,86],[44,70],[31,41],[39,45],[18,70],[8,59],[24,60],[4,62],[14,41],[25,29]],[[20533,12566],[74,-15],[82,4],[51,-3],[6,-14],[-28,-23],[-43,-36],[48,-32],[-60,-41],[-78,12],[-37,-34],[-56,17],[-61,-9],[-77,0],[-40,34],[59,44],[41,32],[62,43],[57,21]],[[21599,14763],[-124,-117],[-145,-88],[-105,-40],[-2,47],[21,39],[-52,28],[-31,41],[57,66],[98,43],[67,-2],[41,-27],[117,32],[48,-4],[10,-18]],[[21193,15197],[-51,-34],[-41,15],[-25,31],[25,29],[41,34],[44,30],[71,15],[25,-66],[-89,-54]],[[21825,14934],[-56,-24],[-64,4],[-87,-2],[-80,11],[-31,-29],[-74,0],[-49,39],[17,57],[4,40],[-14,84],[33,32],[51,29],[35,45],[60,64],[63,41],[69,69],[52,-1],[57,-12],[1,-52],[-4,-92],[62,-39],[63,-31],[13,-86],[-54,-84],[-67,-63]],[[24048,15564],[-167,-172],[-83,37],[70,151],[77,40],[59,42],[72,38],[1,-54],[-29,-82]],[[21410,15370],[-28,-5],[-107,39],[-3,106],[29,66],[51,60],[71,48],[60,34],[51,5],[76,-14],[-19,-83],[72,-17],[3,-74],[-63,-64],[-124,-89],[-69,-12]],[[20649,15689],[-76,-10],[-44,30],[26,50],[65,44],[63,-4],[56,-40],[-29,-48],[-61,-22]],[[22244,15508],[-80,-48],[-19,64],[-41,32],[-53,67],[48,84],[60,43],[77,39],[97,33],[107,26],[62,56],[57,45],[74,0],[47,49],[53,70],[86,57],[113,-80],[-21,-50],[-42,-11],[-36,-30],[-16,-52],[-75,-45],[-87,-81],[-65,-38],[-68,-36],[-29,-42],[21,-64],[-132,-63],[-80,-1],[-58,-24]],[[23917,15969],[62,-30],[55,3],[55,35],[32,-10],[-158,-176],[-20,5],[-9,34],[-69,12],[-35,15],[-29,13],[-11,21],[22,41],[10,18],[-30,5],[-20,-22],[-30,-35],[-326,-295],[-28,5],[-13,61],[49,38],[10,10],[16,33],[17,33],[100,75],[60,59],[133,150],[113,91],[93,42],[11,11],[20,0],[5,-22],[-37,-30],[-68,-71],[-52,-77],[72,-42]],[[22718,16257],[-68,-78],[-173,55],[161,83],[92,12],[-12,-72]],[[25533,16542],[52,-23],[68,9],[-10,-49],[-49,-38],[-31,-39],[-37,-39],[-40,-15],[-45,-19],[-65,-25],[1,68],[74,42],[45,46],[-3,47],[40,35]],[[27844,16535],[-56,-9],[-91,15],[-63,48],[9,63],[79,4],[42,-58],[80,-63]],[[26990,16729],[-39,-52],[-74,19],[11,64],[59,14],[36,0],[7,-45]],[[21799,16858],[-39,-5],[17,57],[36,16],[47,43],[68,0],[-36,-79],[-93,-32]],[[26493,17039],[0,-91],[88,22],[37,3],[-34,-94],[-110,-117],[-54,-72],[-17,-64],[25,-70],[-105,-93],[-26,-25],[-113,-225],[-101,-4],[-34,82],[20,91],[-2,4],[70,65],[5,50],[-59,28],[172,263],[0,17],[106,144],[33,97],[12,8],[49,-11],[38,-8]],[[23875,17127],[-8,-64],[-40,-26],[-38,-37],[-29,-51],[-35,-53],[-59,-54],[-36,-55],[-14,-45],[-44,-41],[-22,-51],[37,-46],[36,-48],[-28,-45],[-52,-15],[-39,36],[-71,-19],[-28,-45],[42,-40],[-4,-57],[-61,-41],[-49,-66],[-13,-5],[-25,-24],[-73,-48],[-69,-23],[-2,-1],[-38,5],[13,57],[42,72],[-4,2],[25,66],[32,32],[-37,35],[-64,0],[-88,-33],[-61,4],[-56,35],[-23,72],[-22,63],[54,48],[30,62],[61,50],[53,45],[30,49],[33,56],[26,68],[20,53],[66,12],[58,52],[83,-5],[68,29],[70,-23],[75,0],[46,65],[44,55],[64,62],[90,30],[63,14],[-13,-52],[-27,-50],[11,-66]],[[24947,17108],[-66,-52],[-48,7],[7,23],[73,80],[48,45],[38,60],[33,69],[78,54],[33,27],[18,-3],[5,-26],[-18,-40],[-50,-100],[-151,-144]],[[23407,17423],[-51,-39],[-82,-43],[-42,-62],[-94,-42],[-109,-39],[-63,-13],[-21,63],[46,62],[57,53],[55,36],[58,-9],[64,29],[69,4],[58,8],[55,-8]],[[23192,17678],[-30,-81],[-93,-9],[-92,-45],[18,-46],[-29,-71],[-24,-62],[-33,-60],[-42,-38],[-46,-53],[22,-48],[-55,-56],[-73,-4],[-86,-43],[-78,0],[-132,61],[60,62],[46,39],[63,36],[44,34],[47,35],[51,40],[-33,62],[1,69],[9,67],[4,30],[31,20],[20,-4],[58,-21],[74,40],[45,-2],[217,81],[36,-33]],[[23831,17770],[-44,-15],[-85,5],[52,69],[38,38],[37,39],[61,31],[64,-17],[70,-31],[-40,-44],[-72,-45],[-81,-30]],[[28372,17958],[-1,-11],[6,3],[23,-88],[-29,-62],[8,-37],[21,-26],[-79,-97],[-51,0],[1,28],[2,40],[-35,10],[-10,3],[-68,-16],[-147,-15],[-56,34],[23,60],[36,54],[35,11],[20,13],[31,34],[6,21],[-1,23],[265,18]],[[25153,17952],[-53,-34],[-16,47],[-26,48],[30,45],[46,49],[42,65],[69,22],[87,39],[21,-50],[-43,-55],[-46,-47],[-43,-37],[-33,-51],[-35,-41]],[[24457,18135],[-70,-3],[-49,19],[46,28],[23,28],[34,38],[50,37],[55,20],[65,0],[16,-59],[-63,-54],[-69,-36],[-38,-18]],[[27188,18257],[0,-80],[-31,-32],[-54,-9],[-16,51],[-47,-40],[-49,-31],[6,66],[62,46],[67,43],[28,68],[60,14],[-26,-96]],[[25473,18275],[-72,-22],[-18,89],[35,60],[68,47],[67,-13],[-10,-70],[-21,-55],[-49,-36]],[[25155,18552],[0,-86],[-55,0],[-8,-8],[-64,-24],[-14,-2],[-39,-4],[-17,81],[55,25],[21,14],[1,-1],[51,31],[69,-26]],[[26235,18847],[-27,-82],[57,2],[56,7],[-22,-46],[-23,-41],[-63,-53],[-66,-47],[-43,-29],[-60,-42],[-69,-31],[-78,-10],[26,68],[-79,10],[-28,60],[53,56],[34,65],[87,39],[73,15],[30,59],[75,3],[67,-3]],[[29248,18671],[0,-74],[-51,7],[-68,126],[-29,19],[-8,91],[-36,28],[-12,50],[18,81],[63,8],[10,-72],[39,-55],[11,-77],[22,-55],[41,-77]],[[26504,18999],[-53,-57],[-44,19],[-53,-19],[-48,23],[47,57],[58,66],[58,65],[71,2],[-39,-92],[3,-64]],[[25404,22145],[26,-171],[30,-51],[96,-66],[22,-70],[10,-28],[23,-26],[1,0],[33,-37],[26,-54],[-7,-16],[3,-13],[20,-27],[20,-24],[6,-48],[32,-40],[3,-2],[11,-7],[65,-21],[24,-7],[24,-5],[19,3],[99,-21],[10,-2],[39,-22],[10,-13],[31,-36],[26,-42],[-3,-6],[32,-70],[15,-17],[22,-14],[32,-6],[5,0],[27,-5],[57,-3],[11,6],[45,26],[41,-50],[16,-19],[25,-31],[41,-23],[4,-3],[24,-28],[0,-2],[11,-43],[80,-93],[21,-55],[39,-44],[61,-28],[17,11],[23,16],[17,15],[42,38],[73,16],[95,24],[9,0],[41,2],[17,1],[1,0],[47,3],[28,1],[16,26],[9,14],[80,21],[32,3],[64,-14],[29,-6],[28,-12],[47,-20],[18,-9],[65,-18],[138,-72],[99,-56],[91,-32],[60,-8],[34,-1],[73,52],[9,6],[6,10],[20,31],[82,70],[8,5]],[[28130,20908],[-16,-26],[46,8],[-18,-63],[75,56],[69,4],[25,-52],[57,46],[71,38],[85,25],[101,16],[57,31],[22,59],[22,67],[48,44],[91,20],[24,58],[46,15],[49,23],[38,45],[51,35],[71,52],[82,84],[80,41],[40,13],[74,16],[61,-20]],[[29481,21543],[68,-32],[123,-80],[-21,-43],[-15,-44],[-17,-45],[4,-25],[-28,-12],[-1,-23],[-11,-24],[6,-25],[-21,-16],[-25,-21],[-4,-22],[-5,-39],[-12,-50],[-14,-95],[-21,-78],[-4,-8],[-7,-14],[-13,-19],[-31,-38],[-24,-42],[-1,-2],[-10,-18],[3,-26],[-13,-20],[-21,-25],[-10,-31],[-37,-32],[-20,-15],[-24,-30],[-16,-26],[-16,-29],[-25,-29],[-23,-23],[-22,-34],[-22,-47],[-26,-32]],[[29125,20329],[-46,-25],[-43,-65],[-45,-28],[-64,-8],[-18,67],[27,105],[-48,55],[-52,-26],[29,-72],[-54,-58],[-57,-72],[-4,-99],[-21,-46],[-32,-90],[-18,-91],[-13,-47],[-41,-45],[-66,-27],[-10,-57],[-47,-35],[31,-36],[-18,-50],[-52,-11],[-37,62],[-100,-33],[-1,-66],[-20,-55],[48,-45],[32,50],[62,28],[74,8],[52,-14],[56,-18],[29,-43],[41,39],[16,-56],[88,-20],[41,68],[76,-50],[53,-77],[-23,-75],[-49,-48],[-29,-42],[-3,-41],[-21,-52],[83,15],[56,37],[9,-68],[-9,-54],[-10,-71],[-20,-69],[-17,-54],[7,-46],[41,-36],[43,-35],[45,28],[25,-27],[2,-67],[16,-63],[-45,-65],[-47,-43],[-54,-58],[-25,44],[-3,50],[-52,-12],[-27,-36],[3,-76],[42,-79],[12,-71],[6,-65],[-32,-38],[-45,-13],[-15,-59],[-7,-60],[8,-69],[15,-68],[6,-49],[-34,-42],[-35,1],[-9,-20],[17,-58],[-26,-54],[-81,0],[-29,-16],[-53,-52],[-40,18],[4,54],[-5,14],[10,97],[32,44],[64,45],[-83,34],[-31,50],[51,22],[77,-27],[69,44],[-64,49],[-49,-2],[-71,28],[-58,51],[-10,83],[-89,-31],[-11,-56],[-45,-61],[-52,42],[26,65],[-52,44],[-66,-43],[-5,77],[23,73],[39,67],[61,60],[73,4],[68,-30],[44,-18],[75,49],[1,84],[54,62],[-23,63],[-9,52],[13,65],[-33,38],[-4,62],[-61,-48],[-36,55],[-47,-71],[-70,-23],[-28,66],[-58,-40],[-25,72],[-44,-59],[-17,-71],[-42,-36],[23,-37],[-17,-72],[-48,-86],[-25,-79],[-56,-107],[-14,-84],[-37,-43],[-36,-39],[-40,48],[-42,69],[-48,-36],[-10,-71],[22,-48],[-31,-44],[-13,-33],[1,-41],[22,-25],[85,80],[45,-16],[-71,-166],[-78,-100],[-24,-50],[-38,-47],[-144,-255],[-101,0],[-38,78],[13,105],[27,34],[12,30],[20,71],[11,56],[13,48],[32,86],[27,107],[0,2],[-39,3],[-36,3],[-55,-47],[3,-84],[-171,-309],[-236,-261],[-169,-168],[-76,-5],[20,136],[-67,4],[-75,-119],[-34,-36],[-96,-49],[-31,22],[19,44],[2,45],[35,40],[50,113],[72,86],[97,116],[42,129],[97,-4],[55,74],[46,136],[135,98],[139,101],[93,35],[119,15],[5,11],[13,53],[21,50],[-3,54],[8,39],[29,36],[-1,51],[-59,20],[27,85],[-49,-41],[-46,-5],[-31,43],[-67,17],[28,58],[43,49],[50,58],[36,71],[21,58],[30,51],[56,73],[64,42],[62,61],[11,78],[-76,-36],[-5,65],[37,40],[42,51],[79,75],[-10,80],[-8,60],[-9,93],[-8,62],[-80,-23],[-40,-60],[-14,-69],[-27,-53],[-49,-23],[-43,-31],[46,-23],[29,-72],[-12,-54],[-23,-41],[-84,-1],[-45,-44],[-76,-12],[30,-44],[-48,-55],[-3,-66],[49,-14],[17,-54],[2,-67],[-23,-48],[-26,-48],[-42,-63],[-48,-93],[-88,-93],[-43,20],[-58,7],[-35,-57],[-25,-70],[-38,-40],[-46,-51],[-70,-21],[-13,67],[-28,41],[15,36],[-55,-4],[-28,-58],[-55,-57],[-22,-85],[46,-60],[41,-65],[-5,-63],[-67,0],[1,-83],[-91,-1],[-92,-35],[-3,-66],[-66,-102],[-53,-64],[-86,-51],[-79,-20],[-38,-41],[-33,-49],[-89,-68],[-53,-24],[-43,-48],[1,-61],[-3,-73],[53,-30],[57,34],[15,19],[84,12],[34,0],[25,-27],[-8,-55],[-114,-159],[-28,-4],[-7,-7],[-46,-18],[-48,-14],[-60,-27],[-61,-38],[-66,-64],[-71,-23],[-182,-210],[-21,66],[122,128],[165,167],[-11,59],[-58,3],[5,47],[38,83],[-80,-21],[-66,-34],[-48,-29],[-36,-31],[-102,-123],[-51,-4],[7,53],[-1,16],[11,43],[-51,27],[-36,-15],[-2,-36],[-2,-49],[-55,-26],[-48,-47],[-45,-30],[-14,6],[5,37],[27,41],[30,42],[13,95],[63,58],[44,87],[46,72],[55,68],[79,48],[69,23],[81,9],[24,52],[5,56],[17,50],[32,63],[18,77],[37,45],[49,20],[85,18],[53,42],[49,30],[-20,62],[70,17],[34,51],[22,100],[33,42],[43,61],[40,26],[27,39],[28,36],[5,54],[74,7],[35,49],[42,45],[70,10],[87,-8],[75,66],[35,86],[-2,88],[-1,57],[21,51],[38,30],[44,24],[21,43],[38,27],[45,35],[60,43],[47,67],[53,31],[14,54],[34,49],[58,-20],[50,43],[37,59],[24,77],[28,72],[74,36],[31,-37],[38,48],[-32,68],[-17,85],[-59,-62],[-61,47],[-39,-63],[-59,-50],[-56,-22],[-35,-55],[-62,-39],[-63,-31],[-53,-15],[-66,-6],[-56,-18],[-45,21],[-61,-6],[-82,19],[-80,-38],[14,52],[39,33],[39,68],[-56,14],[-19,-56],[-65,-39],[-42,-54],[-33,-44],[-53,-18],[-86,-34],[-46,-63],[-26,-66],[-62,-69],[-79,-54],[-79,9],[-52,-57],[-87,-63],[-54,-34],[-37,-32],[-50,-38],[-58,-33],[-33,-27],[-51,-23],[-66,1],[33,73],[51,43],[38,49],[58,33],[48,31],[48,32],[71,44],[80,55],[53,75],[46,56],[37,31],[38,26],[41,42],[40,7],[44,33],[71,81],[28,61],[21,58],[71,9],[60,59],[36,89],[-85,39],[-85,-35],[-78,-15],[-107,-29],[-55,5],[-62,-51],[-55,-45],[-47,-48],[-55,-29],[-102,23],[-45,9],[-6,5],[-100,-29],[-33,-26],[-44,-30],[-46,-40],[-73,-60],[-67,-51],[-45,-29],[-48,-23],[-49,-28],[-55,-56],[-41,-40],[30,-62],[-25,-24],[-81,-20],[-21,-79],[-43,-15],[-64,-21],[-56,-21],[-39,-40],[-22,-34],[-39,-35],[-50,-57],[64,-3],[46,-23],[-46,-63],[-48,-45],[-70,-39],[-21,-13],[-40,-42],[-65,-109],[-151,-32],[-6,37],[104,102],[93,91],[-39,59],[23,42],[16,50],[16,51],[-69,10],[-85,-13],[-50,-33],[-74,-6],[-9,64],[-49,20],[-79,-32],[-14,-84],[14,-56],[-62,-29],[-60,-19],[-67,-18],[-84,-26],[-50,-15],[-43,-45],[-29,-43],[-47,-40],[-51,-30],[-28,60],[38,76],[44,61],[59,55],[60,33],[39,60],[39,63],[58,45],[91,114],[38,67],[-1,1],[45,62],[28,22],[39,53],[1,58],[-42,10],[-16,4],[-40,-39],[-126,-124],[-18,-17],[-36,-75],[-98,-5],[-12,86],[-21,49],[-40,-11],[-19,-39],[-62,-85],[60,-50],[4,-61],[-71,-28],[-65,0],[-116,-129],[69,-37],[0,-22],[-151,-101],[-142,20],[-29,-49],[110,-19],[-40,-57],[-61,-46],[-39,-43],[-1,0],[34,-47],[82,0],[156,80],[41,-48],[-87,-91],[-99,-38],[-142,0],[-20,-4],[-109,-35],[-81,-16],[-44,-51],[-111,-8],[-41,85],[-65,-42],[-62,7],[-86,44],[-39,-29],[-54,9],[-51,31],[-12,-9],[-9,-7],[6,-13],[66,-52],[59,-21],[-67,-33],[-37,-30],[21,-30],[16,-23],[4,-2],[76,15],[8,-1],[84,28],[76,-54],[-95,-45],[-6,-6],[-40,-42],[-63,-17],[-43,-39],[-50,-37],[-39,-28],[-22,-32],[51,-48],[-88,-65],[-62,-21],[-69,-21],[-32,25],[-47,-27],[-25,-50],[-40,-48],[-33,-41],[-62,-32],[-41,-58],[-110,-16],[-35,32],[108,243],[-20,42],[-154,12],[-21,-4],[-62,-16],[-58,-56],[-69,-30],[-104,-45],[35,-81],[2,-38],[-16,-35],[-8,-46],[-56,-75],[-23,-69],[25,-48],[59,-43],[42,-25],[-21,-56],[-11,-61],[-41,-40],[-25,-43],[-56,-31],[-74,-57],[-70,-52],[-52,-60],[-42,-32],[-30,-37],[-72,-58],[-102,-69],[-50,-25],[-12,5],[-59,-65],[0,-36],[51,-11],[47,19],[52,-16],[-1,-11],[1,0],[53,-64],[5,-48],[-79,-58],[-13,-32],[-40,-45],[-62,-22],[-52,-13],[-85,-1],[-41,20],[-58,31],[-25,-29],[-45,-34],[-29,-67],[-39,-67],[-53,-30],[-72,-15],[-50,-23],[1,5],[7,61],[-39,60],[35,42],[13,88],[-49,48],[38,72],[48,81],[-49,59],[-14,24],[-36,-16],[-25,-15],[-62,-38],[-63,-31],[15,-60],[0,-78],[-21,-57],[-28,-40],[-39,-43],[13,-120],[-26,-63],[49,-73],[60,-3],[58,-18],[2,-1],[-59,-102],[-2,-64],[-33,-41],[-66,-27],[-29,4],[-77,11],[-120,26],[-77,-16],[-88,37],[-72,-63],[-43,-75],[-18,-92],[50,-26],[38,-43],[101,-30],[72,-26],[83,52],[80,49],[32,79],[48,58],[1,2],[171,-39],[70,-23],[125,-55],[67,-78],[-57,-55],[-78,-51],[-78,-55],[1,-62],[-64,7],[-19,-39],[-41,-29],[-72,-76],[-82,-91],[-7,-6],[-39,-32],[-139,-25],[-96,-5],[-160,-16],[-65,-13],[-20,-5],[-29,37],[0,3],[-2,60],[-119,103],[-82,-72],[15,82],[-52,-27],[-61,50],[-117,10],[-49,49],[-32,38],[-61,27],[-72,14],[-72,22],[34,-55],[5,-9],[102,-37],[48,-75],[137,-71],[27,-83],[2,-55],[22,-36],[66,39],[9,5],[47,-18],[61,17],[41,-3],[38,-45],[7,-7],[32,-38],[30,-44],[71,5],[60,1],[41,-33],[49,-28],[45,62],[46,56],[80,38],[-17,-47],[12,-61],[18,-49],[85,3],[47,7],[43,17],[-32,35],[9,44],[32,56],[25,41],[9,15],[71,18],[27,-42],[-1,-71],[64,-38],[38,4],[45,39],[-21,46],[-27,82],[53,24],[29,45],[32,36],[48,45],[14,50],[41,24],[110,-20],[50,-52],[81,-26],[49,-2],[18,-39],[-12,-24],[-14,-42],[-6,-57],[62,-57],[45,-53],[4,-61],[26,-64],[48,-38],[36,-43],[64,-18],[70,-36],[66,-41],[50,-54],[-13,-40],[-28,-50],[-21,-60],[-20,-59],[-78,-83],[-30,-39],[16,-40],[31,-33],[-30,-60],[-42,-72],[4,-51],[54,-14],[-22,-87],[69,-38],[85,-25],[86,-3],[58,-50],[-30,-85],[-80,-125],[41,-47],[86,-24],[39,-49],[9,-59],[56,-30],[7,-66],[-34,-43],[-54,-50],[-59,-45],[-66,-18],[-63,-2],[-66,-24],[-96,1],[-46,65],[-54,60],[-104,36],[-71,-8],[-54,-15],[-51,-31],[-30,-46],[-71,-40],[-60,-43],[-50,-30],[-64,-5],[-45,-32],[-64,-5],[-46,7],[-58,3],[-71,1],[-72,9],[-109,-2],[-68,1],[-61,41],[-44,76],[-5,78],[-21,68],[-28,51],[5,64],[36,43],[5,45],[15,15],[-20,25],[-28,-7],[-72,-90],[0,-50],[-47,-32],[51,-40],[12,-74],[-54,-45],[-44,-12],[-61,-16],[-67,-29],[-86,-46],[-68,-38],[-81,-35],[-92,-37],[-64,-17],[-52,-26],[-133,-95],[-50,-35],[-44,-63],[-40,-60],[-39,-38],[-9,-43],[50,-43],[45,-74],[-92,-42],[-119,4],[-77,8],[0,59],[45,42],[44,27],[-4,36],[-31,36],[-72,58],[-54,38],[60,54],[-24,39],[-15,25],[-55,39],[25,33],[13,16],[11,-1],[41,-2],[16,12],[9,6],[10,7],[6,5],[63,-7],[-27,70],[-49,-30],[-8,0],[-69,-2],[-15,-7],[-19,-8],[-25,-11],[-74,-33],[-76,10],[-9,1],[-15,22],[-27,39],[0,27],[-1,16],[40,32],[-26,35],[6,58],[12,2],[36,7],[11,10],[-26,22],[-7,6],[-9,8],[-38,5],[-59,-70],[-28,-101],[-29,-65],[-26,67],[-16,26],[-13,20],[-47,8],[-17,3],[-36,6],[-63,19],[-30,-23],[-13,-10],[1,-5],[3,-13],[1,-8],[1,-6],[71,-12],[49,-26],[-11,-61],[3,-6],[24,-50],[5,-13],[5,-13],[12,-30],[14,-34],[63,9],[28,4],[39,-35],[1,0],[48,-25],[75,13],[60,-18],[23,-27],[-7,-26],[-32,-9],[-90,1],[-77,-1],[-45,-6],[-65,-11],[-102,-31],[-64,-28],[-41,-22],[-54,-22]],[[17674,12309],[-21,10],[-1,0],[-41,19],[-30,14],[-8,4],[-60,28],[-35,16],[-64,28],[-41,19],[-19,8],[-101,48],[-85,36],[-223,102],[-150,69],[-7,3],[-253,119],[-3,1],[-60,29],[-124,58],[-107,51],[-10,4],[-103,48],[-128,61],[-494,231],[-168,80],[-79,38],[39,36],[-229,102],[-11,5],[-211,94],[-129,52],[-35,18],[-41,19],[-25,13],[-44,19],[-184,82],[-62,27],[253,247],[37,37],[29,29],[3,3],[97,92],[61,57],[26,30],[22,19],[27,26],[25,27],[17,17],[23,19],[21,20],[95,83],[12,10],[8,8],[74,68],[-91,71],[-150,110],[-89,60],[-27,20],[-21,16],[-14,11],[-8,6],[-23,17],[-26,19],[-28,20],[-28,20],[-38,26],[-175,135],[-78,62],[-69,50],[-95,69],[-52,37],[-96,70],[-272,195],[-183,132],[-6,5],[-20,17],[-26,20],[-25,20],[-38,31],[-26,21],[-24,17],[-18,15],[-24,18],[-28,20],[-26,20],[-32,24],[-36,24],[-20,14],[-32,23],[-27,21],[-27,20],[-28,22],[-22,14],[-18,17],[-45,26],[-40,29],[-30,22],[-53,37],[-70,-67],[-61,-60],[-96,-93],[-341,-329],[-75,-64],[-27,-22],[-277,143],[-35,18],[-47,25],[-3,1],[-64,32],[-68,-57],[-94,-81],[-3,-2],[-82,-71],[-22,-1],[-29,-3],[-1,8],[-7,49],[-8,60],[-62,-3],[-7,-1],[-33,47],[-30,44],[-29,41],[-3,4],[-24,5],[-38,7],[-58,3],[-31,1],[-23,4],[-2,1],[-20,15],[-4,5],[-6,7],[-4,5],[0,7],[0,5],[-3,3],[-11,11],[-14,14],[-29,14],[-32,10],[-15,4],[-37,7],[-15,3],[-71,-6],[-125,-31],[-28,-7],[-54,13],[-6,1],[-60,-18],[-29,-18],[-49,-19],[-12,-22],[-16,-8],[-11,-5],[-22,-2],[-49,9],[-83,33],[-10,5],[-8,4],[-3,0],[-6,-1],[-13,7],[-15,9],[-13,19],[-11,15],[-10,13],[-10,49],[4,95],[4,16],[10,36],[3,11],[22,43],[22,22],[19,46],[6,23],[1,5],[21,92],[5,31],[9,48],[-4,21],[32,62],[0,61],[1,61],[53,-2],[2,0],[56,45],[3,2],[3,1],[54,21],[25,62],[0,41],[-13,31],[-3,6],[2,15],[8,20],[1,0],[5,15],[26,17],[5,3],[6,12],[8,12],[8,30],[2,6],[0,32],[-21,53],[-4,5],[-18,20],[-11,13],[-11,5],[-11,4],[-6,2],[-29,11],[-91,11],[-2,2],[-110,120],[-6,7],[-9,10],[-3,4],[8,19],[19,14],[12,4],[6,2],[13,5],[66,12],[22,8],[4,1],[1,4],[7,17],[3,7],[-7,15],[-27,30],[-12,12],[-16,26],[-6,28],[4,11],[-12,45],[-28,49],[-18,17],[-19,19],[6,57],[12,30],[1,86],[0,7],[-42,47],[-40,44],[-43,-40],[-56,10],[-18,4],[-8,1],[-10,-1],[-23,-3],[-36,-4],[-20,4],[-1,1],[-15,13],[-5,22],[-10,11],[-13,16],[-28,3],[-10,1],[-16,-6],[-15,-15],[9,-22],[10,-27],[-2,-7],[-7,-25],[-1,-4],[-10,-13],[-26,-10],[-20,4],[-12,2],[-4,1],[-8,7],[-18,20],[-5,4],[-3,7],[-14,37],[-6,7],[-18,21],[-13,9],[-103,70],[-54,7],[-53,-11],[-15,-2],[-23,-4],[-13,-2],[-25,4],[-11,4],[-66,25],[-8,3],[-10,3],[-12,14],[10,18],[20,37],[3,5],[4,9],[0,19],[0,2],[0,11],[-6,9],[-7,10],[-11,17],[-52,12],[-19,-2],[-42,-19],[-43,-50],[-2,-10],[-12,-45],[-6,-27],[-1,-1],[-26,-10],[-4,1],[-5,0],[-27,5],[-22,14],[-24,15],[-26,11],[-11,2],[-23,4],[-19,3],[-90,-16],[-46,-17],[-23,-13],[-13,-7],[-32,-17],[-11,-36],[-1,-3],[-3,-2],[-34,-15],[-64,-6],[-71,8],[-24,-5],[-62,-23],[-17,-9],[-28,-27],[-23,-35],[-1,-1],[-1,-1],[-40,-17],[-1,-1],[-1,0],[-46,-6],[-129,-6],[-113,-20],[-147,27],[-79,-12],[-41,7],[-72,28],[-47,6],[-7,1],[-72,16],[-11,5],[-48,23],[-27,19],[-3,3],[-130,111],[-155,92],[-11,9],[-2,2],[-7,11],[-11,19],[-12,60],[-8,42],[0,20],[13,32],[1,3],[-3,13],[-24,27],[-20,9]],[[32109,16115],[-12,-45],[-50,42],[-27,81],[19,68],[36,-34],[65,-51],[-31,-61]],[[31890,17428],[58,-36],[29,-75],[-28,-67],[-74,-50],[-20,42],[7,54],[-3,58],[31,74]],[[31620,17439],[-28,-76],[-38,-72],[-23,75],[-4,100],[-16,46],[28,49],[46,36],[22,-69],[13,-89]],[[29375,17483],[-35,-48],[-46,48],[11,86],[16,57],[54,3],[18,-50],[-4,-53],[-14,-43]],[[29297,17767],[-45,-33],[-3,3],[-2,-3],[-77,3],[-45,-26],[-20,5],[-6,-9],[-61,15],[-16,71],[46,64],[12,44],[69,44],[57,-85],[63,-8],[33,-25],[-5,-60]],[[33322,19066],[-48,-39],[-25,8],[-33,33],[2,32],[-32,41],[-24,76],[-17,72],[47,19],[46,21],[59,5],[96,27],[30,-66],[-12,-47],[-36,-85],[-41,-51],[-12,-46]],[[32955,21000],[-37,-59],[-59,14],[-44,23],[61,35],[8,65],[71,46],[19,-59],[-19,-65]],[[30457,21768],[-94,-38],[-57,30],[-26,63],[22,43],[14,39],[36,44],[67,36],[61,-33],[2,-66],[-12,-73],[-13,-45]],[[29481,21543],[42,49],[42,36],[36,88],[13,86],[53,68],[48,35],[28,63],[64,43],[49,73],[52,20],[39,-11],[24,-50],[27,-62],[50,15],[46,35],[34,66],[36,73],[114,67],[54,-37],[-16,-41],[-35,-55],[32,-51],[-53,-61],[-74,-42],[9,-38],[-77,-6],[-56,-60],[-2,-66],[60,-37],[70,-5],[-6,-96],[9,-83],[25,-61],[73,-32],[-17,-49],[-75,-40],[59,-58],[2,-125],[61,54],[46,79],[24,60],[31,47],[32,50],[49,20],[26,37],[40,29],[81,-3],[53,-55],[26,-62],[-8,-91],[0,-129],[25,-81],[44,-48],[28,-32],[-7,-45],[-21,-40],[-22,-48],[-10,-53],[-9,-35],[-5,-41],[11,-85],[-3,-10],[-19,-57],[-6,-19],[18,-59],[-15,-92],[-14,-66],[-17,-81],[-16,-86],[23,-89],[-39,-103],[-63,-47],[-91,-37],[-25,-34],[-11,-15],[-34,-24],[-65,-148],[-7,-60],[101,0],[58,74],[0,53],[0,47],[3,2],[50,28],[61,-28],[67,27],[42,61],[62,21],[59,12],[58,-7],[69,1],[86,-24],[5,-91],[-44,-83],[79,-48],[23,-102],[-18,-67],[-15,-87],[-28,-86],[-3,-103],[23,-100],[-42,-36],[-31,-43],[-81,-48],[49,-32],[-16,-110],[-37,-61],[-18,-66],[-72,31],[-10,76],[33,64],[19,69],[-78,8],[-48,-4],[-29,-78],[-14,-60],[0,-70],[36,-52],[51,-26],[13,-93],[-15,-51],[-79,4],[-94,-80],[-80,-101],[29,-67],[44,21],[36,87],[94,67],[95,4],[15,-14],[31,-74],[91,-11],[29,-70],[8,-64],[63,-92],[69,-60],[46,-56],[27,-55],[7,-76],[-55,-37],[-51,-4],[-65,-8],[-42,-18],[-9,89],[23,76],[-45,50],[-34,26],[-36,-9],[-11,-36],[33,-173],[8,-14],[42,-41],[57,-30],[55,-21],[27,-50],[-12,-77],[53,-58],[-36,-45],[-10,-51],[77,-30],[63,-5],[10,54],[55,-5],[36,-53],[-40,-50],[-73,-11],[-31,-72],[-19,-58],[-80,54],[-44,31],[-23,-74],[-15,-78],[-28,-89],[-44,-81],[-11,-67],[17,-67],[63,-35],[51,37],[35,76],[46,32],[57,37],[20,58],[47,33],[48,-24],[84,32],[63,-82],[55,-60],[19,-66],[-75,-43],[-74,-8],[-91,-21],[-70,-40],[-53,-48],[-29,-71],[-77,-17],[-85,-10],[-90,29],[-55,20],[-28,-35],[-47,-28],[43,-24],[-54,-36],[-80,-12],[-80,-24],[-91,-29],[-62,-24],[-134,-64],[-90,-26],[-6,53],[-47,-59],[-11,-64],[1,-63],[23,-60],[59,-39],[-52,-27],[-72,-84],[75,-77],[-63,-47],[-34,69],[-52,27],[-62,23],[-76,0],[-113,-42],[-85,-1],[27,67],[36,58],[-17,44],[26,59],[43,52],[-39,73],[-85,-12],[-10,71],[-53,31],[25,59],[9,74],[19,52],[57,53],[37,49],[31,56],[55,42],[19,-52],[24,-54],[79,44],[-12,68],[-13,69],[-25,52],[-40,34],[34,48],[34,87],[-60,19],[-47,-15],[-36,-72],[-75,-82],[-17,-27],[-57,-36],[-68,0],[-53,0],[-59,-55],[-91,-5],[-62,3],[13,57],[18,74],[0,2],[45,46],[26,63],[-3,39],[34,71],[53,39],[25,73],[-56,-14],[-39,30],[-2,55],[36,51],[-75,59],[-31,49],[-10,40],[-23,72],[-14,68],[-34,38],[-41,43],[-62,86],[-16,61],[11,62],[38,66],[64,65],[69,50],[81,43],[-18,84],[60,62],[63,5],[55,9],[41,62],[45,41],[20,77],[19,92],[45,77],[75,6],[-7,59],[22,85],[31,55],[45,56],[-54,14],[-40,-61],[-1,1],[-52,-101],[-59,13],[-43,-9],[-118,-54],[-88,-18],[-64,-14],[-10,-57],[-53,-15],[-35,30],[15,54],[37,34],[-54,26],[-31,67],[-13,71],[-8,79],[19,60],[11,67],[47,49],[47,-2],[35,43],[8,78],[-55,25],[5,50],[77,-6],[-25,68],[-4,78],[24,46],[13,56],[-2,64],[95,47],[74,13],[90,22],[-1,53],[-13,91],[-43,-39],[4,-59],[-68,2],[-37,50],[-64,4],[-15,25],[-44,0],[-9,-23],[-7,-69],[-15,-44],[-48,-49],[11,-78],[-24,-64],[-4,-50],[-10,-75],[-60,-5],[-14,70],[8,59],[3,66],[7,74],[-1,44],[16,55],[-63,-14],[-62,-71],[-47,-54],[-77,-3],[-69,10],[-46,-53],[20,-44],[118,-15],[6,-1],[10,-1],[87,-47],[-15,-107],[-94,-47],[-55,28],[-1,0],[-87,44],[-74,68],[-22,59],[17,53],[-26,55],[20,86],[10,58],[39,53],[-18,54],[58,55],[68,43],[19,42],[41,5],[26,31],[23,44],[-23,50]],[[31890,17428],[-89,-31],[-42,-74],[-15,-65],[-18,-50],[-66,-13],[-25,62],[4,62],[0,50],[-19,70]],[[31620,17439],[45,30],[41,50],[64,75],[-24,65],[-16,44],[-39,44],[-41,61],[-34,85],[33,68],[-45,51],[-56,20],[-52,25],[-17,77],[25,70],[14,63],[13,49],[47,50],[1,0],[33,107],[0,9],[17,66],[57,26],[8,83],[20,90],[14,81],[6,13],[-45,37],[-42,-4],[-4,-4],[-99,-35],[-66,-47],[-59,39],[-61,-56],[98,-45],[1,-68],[-3,-96],[-12,-75],[-47,-69],[-56,-10],[-17,88],[-99,21],[-78,43],[-95,5],[-47,32],[28,63],[-11,63],[31,58],[72,50],[32,53],[17,60],[8,47],[38,55],[66,42],[55,41],[-13,59],[-12,82],[2,76],[36,63],[-83,19],[-74,6],[5,74],[15,66],[19,73],[15,77],[-39,53],[-3,64],[32,45],[20,56],[-34,56],[-32,42],[-58,33],[-61,-29],[-78,-2],[-63,2],[-33,38],[-12,56],[19,59],[16,64],[-15,74],[-13,59],[11,67],[65,39],[37,94],[60,54],[2,2],[29,40],[-63,-9],[-2,0],[-56,-17],[-4,10],[-14,40],[-2,4],[-2,43],[-4,52],[-11,66],[-8,66],[-10,57],[9,82],[3,54],[16,75],[8,94],[-25,114],[-44,51],[-62,77],[-90,86],[-92,33],[-39,64],[-38,69],[-13,69],[51,89],[27,53],[-102,0],[10,91],[-17,61],[21,60],[12,55],[31,70],[49,73],[38,37],[10,60],[-48,-22],[-41,-54],[-75,-58],[-43,-35],[-34,-55],[-65,-27],[-45,30],[21,61],[43,51],[42,56],[22,59],[43,85],[57,55],[21,21],[11,11],[30,45],[50,34],[42,50],[42,52],[11,55],[-30,47],[-51,28],[-15,63],[68,33],[83,56],[100,78]],[[32927,21363],[-42,-61],[-50,-15],[-38,-34],[-37,-29],[-28,-71],[-12,-54],[6,-68],[-11,-58],[-47,-104],[74,-17],[49,-54],[-56,-45],[-47,-27],[-46,-67],[-42,-57],[-20,-51],[-18,-52],[-46,-20],[-46,-51],[-73,23],[-74,-12],[-24,82],[-40,-45],[-38,-15],[8,71],[62,57],[62,57],[36,50],[16,56],[-30,50],[4,48],[40,64],[2,60],[-52,-40],[-68,-9],[-56,15],[-79,26],[-35,-46],[14,-50],[-4,-52],[-44,-44],[50,-48],[80,52],[-23,-64],[-27,-37],[-49,-46],[-39,-43],[-1,-64],[-18,-58],[31,-39],[-16,-61],[-48,-64],[-7,67],[-63,-10],[-31,-33],[-33,59],[-30,-44],[-49,-26],[-57,42],[-67,56],[-50,-11],[5,-19],[17,-58],[62,-20],[45,-11],[60,-57],[-32,-68],[64,-56],[87,30],[16,-69],[-52,-53],[33,-75],[-21,-70],[120,7],[5,75],[33,43],[35,51],[32,-51],[32,-30],[8,-40],[9,-56],[15,-66],[-18,-58],[40,-32],[8,-58],[0,-2],[1,0],[76,71],[12,75],[25,69],[30,70],[32,35],[46,-61],[41,40],[61,69],[56,7],[7,-112],[-71,-29],[26,-90],[1,-77],[33,-33],[28,-41],[-25,-54],[-3,-71],[-5,-91],[35,-45],[-26,-99],[-21,-71],[-57,-24],[-30,-72],[5,-55],[-31,-41],[-50,-72],[-49,-66],[-12,-59],[0,-62],[-34,-56],[-61,-27],[15,-64],[21,-40],[-19,-49],[-43,-73],[7,-57],[59,22],[56,43],[30,78],[12,57],[50,37],[43,51],[28,93],[26,76],[38,54],[19,51],[37,26],[3,46],[27,58],[-3,60],[5,56],[24,44],[50,44],[80,33],[85,4],[85,-66],[21,43],[35,-44],[-18,-105],[14,-111],[45,25],[14,4],[33,-24],[58,-61],[12,-38],[11,-79],[45,-56],[-6,-41],[-37,-27],[-36,-37],[-18,-42],[-20,-60],[-49,-64],[-13,-30],[22,-89],[-7,-48],[-66,-11],[-4,82],[-33,75],[-14,30],[-5,33],[-19,67],[-52,-20],[20,-88],[27,-80],[-23,-84],[65,-123],[19,-56],[7,-46],[6,-91],[-31,-101],[-52,-70],[-66,-13],[42,-59],[-84,-47],[-74,-48],[-70,-49],[-33,-33],[-33,-34],[-83,-1],[-72,-44],[-56,-80],[-44,-54],[-34,-44],[-54,-68],[-38,-84],[-63,-1],[-5,-35],[-54,-41],[-48,6],[30,68],[-1,73],[33,52],[51,-38],[16,48],[-34,67],[5,76],[28,68],[-52,38],[-44,-47],[-80,-11],[-22,-68],[-31,-40],[-64,12],[-55,-45]],[[32067,25801],[-47,6],[-12,-70],[-54,-168],[-9,-93],[-48,-29],[-61,-47],[-33,-41],[-13,-75],[-8,-50],[-27,-40],[-14,-58],[-48,-70],[-10,-48],[-13,-50],[-65,-52],[-64,-81],[-41,-50],[-83,-52],[-8,-5],[-52,-14],[-66,2],[-72,-15],[-15,-9],[-73,-33],[-45,-49],[-13,-33],[-17,-30],[7,-45],[-38,-60],[-48,-85],[-2,-47],[-32,-42],[-43,-57],[9,-63],[-37,-88],[-13,-49],[-40,-88],[-46,-65],[-41,-56],[-64,-77],[-88,-53],[-54,-57],[21,-76],[-46,-46],[-11,-91],[28,-77],[73,-29],[-12,-34],[-61,-49],[-69,-51],[-53,-53],[-47,-15],[-30,-38],[-14,-81],[3,-64],[23,-51],[51,-43],[62,-42],[-60,-18],[-133,-4],[-99,-21],[-75,-2],[-111,55],[-17,56],[-76,33],[-61,20],[-20,7],[-17,-72],[13,-63],[-31,-74],[-2,-6],[-17,-48],[-34,-44],[-39,-53],[-19,-51],[37,-44],[-63,-24],[-50,-43],[-85,-35],[16,47],[-82,46],[-66,-7],[-81,68],[-120,-12],[-68,-40],[-38,53],[4,44],[4,35],[-1,45],[-1,-1],[-57,-56],[-3,-56],[-10,-78],[11,-75],[59,-28],[16,-73],[-62,-70],[-80,-92],[-28,-74],[9,-82],[67,51],[107,5],[-52,-49],[3,-70],[36,-68],[-36,-70],[-25,-77],[-26,-52],[-63,-50],[-46,-58],[-44,-49],[-67,-60],[9,-50],[37,-33],[-41,-41],[-47,-42],[-73,-21],[-13,48],[-48,-45],[-21,-58],[-34,-55],[-32,-30],[-41,-51],[-74,-22],[-56,2],[-65,-32],[-74,-36],[-58,-17]],[[11421,19],[-66,-19],[-72,6],[14,69],[2,72],[66,27],[45,-51],[53,-52],[-42,-52]],[[17674,12309],[-72,-59],[-81,-39],[-29,-43],[-67,-64],[-48,-59],[-40,-40],[-44,-39],[-33,-49],[-39,-48],[-45,-43],[-34,-38],[-35,-44],[-42,-58],[-39,-61],[-57,-100],[-38,-68],[-44,-24],[21,-63],[-7,-78],[-1,-83],[10,-59],[27,-76],[2,-112],[11,-64],[15,-61],[28,-65],[54,-72],[-83,-7],[-98,13],[-154,55],[-25,17],[-12,-8],[-31,-22],[6,-16],[33,-40],[64,-53],[82,-5],[46,0],[49,-16],[79,9],[62,-7],[84,-28],[49,-62],[1,-24],[55,-25],[4,-2],[88,-33],[37,-14],[5,-1],[114,-29],[1,0],[-68,-45],[-110,-32],[29,-86],[93,16],[133,48],[32,23],[32,4],[59,30],[50,-2],[35,5],[67,21],[70,28],[2,0],[6,4],[87,-5],[116,-43],[-46,-70],[-99,-58],[-31,-25],[-66,-17],[-21,18],[-99,14],[-31,-18],[-112,-30],[-145,-26],[-74,-2],[-92,-71],[-45,-32],[-48,-45],[-56,-59],[-48,-20],[-18,-175],[-117,-25],[-23,-13],[0,-66],[58,-110],[-127,-102],[-49,-7],[-50,-8],[-51,4],[-17,-19],[63,-93],[-47,-43],[-36,-2],[-36,-21],[-68,-1],[-54,12],[-2,69],[-27,2],[-16,0],[-39,2],[-71,-31],[-79,-35],[-44,-29],[-132,-10],[-66,-24],[-53,-30],[-32,-38],[-28,-70],[-34,-84],[1,-1],[9,-57],[12,-54],[11,-51],[-114,-83],[-51,-169],[-18,-12],[-1,-1],[-90,-40],[-14,-35],[6,-107],[-64,-97],[-139,-14],[-6,-2],[-120,-97],[-71,-58],[-15,-9],[-9,0],[-17,-28],[-8,-5],[-148,-6],[-133,-75],[-52,-2],[-90,38],[-32,55],[-5,19],[-24,8],[-14,0],[-173,-9],[-80,-45],[-359,-43],[-125,23],[-26,4],[-32,-1],[-155,-7],[-74,-3],[-411,-144],[-10,-6],[-113,-65],[-32,-19],[-48,-46],[-59,-47],[-46,-30],[-57,-39],[-41,-40],[-63,-53],[-64,-65],[-53,-51],[-50,-60],[-46,-70],[-30,-52],[-40,-70],[-10,-55],[-14,-46],[-42,-63],[8,-78],[-56,-69],[-11,-79],[-6,-62],[-88,-37],[-39,-17],[-41,-42],[-45,-50],[-79,-107],[-21,-34],[-1,-2],[-27,-42],[-25,-46],[-33,-54],[-28,-51],[-53,-68],[4,-54],[-15,-48],[-67,-119],[-52,-50],[41,-49],[66,-11],[64,-38],[25,-84],[-7,-5],[11,-12],[-6,-35],[-5,-28],[6,-1],[1,-49],[49,-19],[79,-44],[36,-46],[24,-75],[54,-43],[53,-49],[-29,-79],[-96,-99],[-109,-89],[-58,-30],[-32,-64],[-1,-1],[-11,-58],[39,-25],[7,-55],[-1,-1],[6,-10],[-17,-107],[-39,-6],[-21,-19],[-54,-27],[-42,-43],[-35,-60],[-52,-25],[-66,62],[-71,5],[-22,-68],[3,-7],[68,-80],[-26,-24],[-12,-12],[-49,-44],[-8,-3],[-25,-27],[-24,-44],[63,-38],[66,6],[52,-2],[56,-8],[52,-31],[55,-60],[9,-85],[-59,-31],[-59,4],[-58,16],[-63,27],[-78,28],[-89,18],[-56,-5],[-80,-45],[-66,-53],[-39,-51],[-29,-66],[-50,-96],[-13,-52],[-17,-46],[-23,-61],[-14,-65],[54,-36],[23,-50],[10,-60],[-1,-43],[-28,-40],[-84,-5],[-72,4],[-57,-18],[-86,2],[-50,-36],[-40,-30],[-41,8],[-1,44],[-15,7],[-30,-8],[-41,-9],[4,-6],[-58,-29],[16,-60],[71,-14],[58,7],[99,9],[76,-38],[-24,-72],[21,-35],[-39,-28],[-11,-15],[-57,-18],[-31,-115],[-41,-17],[-64,-75],[-60,-49],[-38,-58],[-61,-48],[-81,-37],[-68,9],[42,36],[-47,20],[-48,-36],[-64,-28],[0,-44],[66,-26],[47,-15],[19,-83],[-52,-38],[-9,-22],[-20,-6],[-34,-43],[0,-82],[-92,-40],[-14,-52],[1,-68],[-25,-46],[-53,-26],[-62,-23],[-30,-65],[-49,-17],[-47,-23],[-57,-5],[-71,-2],[-66,-31],[-77,-36],[-61,10],[-49,9],[-40,41],[-24,63],[-23,53],[49,51],[35,43],[-28,42],[29,45],[-52,48],[-64,-5],[-50,-35],[-125,10],[-126,-24],[-80,-37],[-46,11],[-60,29],[6,48],[1,9],[60,28],[-54,53],[42,54],[69,21],[-66,80],[-38,47],[-42,52],[-69,6],[-106,27],[-9,52],[-23,61],[-1,6],[-8,58],[-7,3],[-23,44],[-30,43],[-7,2],[-42,-18],[3,-17],[7,-53],[-3,-1],[20,-69],[30,-104],[26,-90],[27,-10],[101,1],[10,-75],[-45,-39],[-65,-25],[25,-47],[61,5],[70,-17],[25,-70],[3,-9],[-81,-4],[-87,39],[-129,-6],[-4,1],[-12,-42],[136,-22],[69,-12],[13,-38],[-68,-14],[-64,-37],[-14,-53],[-94,-8],[-75,-9],[-43,52],[4,15],[-49,41],[-1,0],[-49,25],[-68,1],[-39,37],[-99,39],[-119,46],[-36,25],[-24,30],[-45,54],[-65,28],[-18,14],[4,31],[4,27],[16,103],[-81,43],[-82,10],[-17,-69],[2,-44],[2,-23],[-22,-13],[-105,14],[-85,23],[-41,46],[-5,58],[-65,52],[-77,35],[-63,46],[-100,41],[-105,41],[-42,41],[22,50],[-2,55],[-78,21],[-63,30],[-22,43],[-70,-5],[-66,8],[-98,15],[-75,33],[-49,44],[-38,51],[0,65],[-46,38],[-22,50],[-57,-5],[-70,-30],[0,1],[-36,122],[-3,5],[-31,46],[-34,78],[2,27],[0,8],[1,26],[21,48],[41,94],[24,69],[27,24],[2,6],[14,34],[15,111],[-3,10],[-17,60],[24,60],[74,41],[13,33],[-5,21],[-18,29],[9,34],[-11,25],[1,13],[3,18],[-31,46],[-34,50],[-1,6],[-3,18],[-13,20],[-8,13],[14,35],[62,24],[17,11],[72,16],[36,14],[26,53],[-26,54],[-4,19],[-8,31],[-1,5],[1,3],[2,13],[7,40],[10,27],[18,52],[1,6],[5,31],[9,10],[12,22],[23,44],[2,4],[10,26],[3,8],[-5,10],[-12,22],[8,30],[16,18],[35,12],[15,5],[6,4],[20,12],[3,2],[11,15],[-3,4],[-22,33],[1,2],[7,16],[0,1],[3,2],[34,28],[15,12],[19,26],[12,30],[5,11],[-40,46],[-16,19],[-23,18],[-28,6],[-42,68],[-3,14],[-8,37],[-1,5],[0,4],[-13,14],[-20,22],[0,7],[-2,16],[-4,4],[-8,10],[-164,88],[-66,20],[-40,8],[-64,2],[-4,0],[-7,-2],[-10,-5],[-44,-9],[-43,-9],[-19,-4],[-9,1],[-4,1],[-8,2],[-5,3],[-7,5],[-3,4],[-1,1],[0,1],[-3,14],[0,16],[0,3],[-1,66],[0,2],[-16,71],[-8,26],[-34,37],[-32,8],[-17,5],[-24,7],[-4,0],[-55,11],[-44,9],[-27,6],[-58,21],[-2,1],[-25,-7],[-5,-3],[-34,-23],[-1,-1],[-1,1],[-68,18],[-14,3],[-19,15],[-2,2],[-8,9],[-3,4],[-6,8],[-5,51],[-14,24],[-22,36],[-69,41],[-39,23],[-52,3],[-2,0],[-37,2],[-21,15],[-50,42],[-3,5],[0,33],[-3,5],[-7,9],[-18,18],[-15,8],[-34,7],[-1,0],[-46,6],[-93,-1],[-16,0],[-26,16],[-4,15],[-4,59],[2,24],[-35,54],[-8,12],[-8,13],[-56,38],[-58,26],[-26,7],[-66,15],[-20,3],[-34,2],[-15,14],[-82,51],[-52,60],[-48,9],[-48,11],[-15,17],[2,23],[0,1],[0,2],[23,7],[16,30],[17,18],[22,12],[1,1],[26,8],[31,6],[32,-1],[46,-7],[14,1],[9,4],[17,9],[1,0],[8,11],[-1,9],[-1,1],[-1,1],[-3,4],[-73,50],[-1,1],[-12,2],[-44,3],[5,19],[-13,38],[-8,12],[0,2],[2,11],[-1,9],[-1,4],[-1,2],[-1,2],[-8,6],[-7,3],[-14,6],[-3,1],[-6,1],[-15,-2],[-10,-8],[-5,-6],[-1,-1],[-12,-12],[-4,-5],[-6,-5],[-10,-3],[-8,4],[-25,11],[-13,6],[-34,28],[-8,6],[-11,0],[-9,0],[-23,7],[-34,30],[-5,5],[-32,143],[9,5],[23,6],[20,2],[1,0],[10,0],[11,-3],[8,-4],[0,16],[-13,5],[-5,1],[-17,8],[-88,70],[-6,6],[3,19],[-2,17],[-1,2],[-22,24],[0,1],[-20,22],[-9,5],[-6,1],[-21,-3],[-34,-12],[-1,0],[-12,-7],[-13,-4],[-8,1],[-19,6],[-20,12],[-6,7],[1,6],[17,10],[26,7],[4,1],[2,7],[1,1],[-6,5],[-18,14],[-12,5],[-61,26],[-98,33],[-15,26],[0,6],[5,8],[6,9],[-3,8],[-18,47],[-29,8],[-12,7],[-2,4],[1,8],[7,6],[10,2],[15,-6],[4,-2],[20,2],[11,4],[5,4],[2,6],[-6,6],[-21,7],[-56,12],[-13,0],[-11,0],[-16,3],[-12,2],[-2,-3],[-22,-25],[-3,-14],[-38,12],[-11,3],[-16,5],[-61,19],[-6,-25],[-8,-19],[-52,7],[-11,0],[-6,0],[-107,-2],[-42,-21],[-3,-4],[1,-14],[0,-2],[-1,-5],[-6,-2],[-7,1],[-20,3],[-54,8],[-9,3],[-12,7],[-4,6],[-2,17],[0,20],[0,4],[-6,29],[-12,24],[-34,41],[-19,13],[-103,42],[-10,1],[-32,-2],[-9,0],[-15,7],[-25,28],[-13,19],[-3,13],[3,4],[46,33],[7,4],[-3,7],[-5,4],[0,1],[-17,17],[-17,-5],[-95,-24],[-31,48],[17,66],[7,9],[2,2],[5,3],[-2,26],[-7,0],[-3,1],[-21,9],[-97,55],[-8,32],[80,77],[-26,65],[-11,22],[-10,11],[-12,16],[-98,121],[-39,102],[-5,6],[-14,6],[-9,1],[-52,52],[-8,8],[6,37],[8,45],[4,25],[-67,98],[13,26],[2,3],[119,73],[0,11],[0,86],[0,5],[-8,4],[-1,1],[-25,18],[-36,28],[-20,35],[1,5],[48,200],[49,148],[12,36],[46,18],[19,2],[68,-3],[52,19],[7,19],[13,10],[14,6],[43,18],[17,9],[22,53],[12,31],[-4,55],[-5,51],[6,16],[2,5],[2,6],[5,2],[17,9],[3,1],[5,1],[16,1],[15,1],[39,16],[63,27],[7,12],[24,43],[-6,36],[-2,18],[-3,3],[-47,58],[-31,20],[-50,58],[-14,64],[0,20],[16,41],[41,36],[20,28],[14,19],[8,31],[5,11],[51,111],[18,43],[-29,61],[-4,8],[0,1],[-33,37],[-34,38],[-6,6],[-14,-5],[-6,-2],[-15,0],[-87,11],[-4,0],[-28,10],[-7,5],[-21,13],[-25,16],[-54,34],[-9,6],[-7,22],[1,10],[19,-2],[27,-3],[31,0],[14,1],[93,45],[10,7],[15,37],[-2,5],[-16,12],[-3,3],[-15,10],[-5,5],[-13,41],[-1,8],[27,44],[35,56],[59,62],[2,7],[-7,15],[5,30],[1,10],[3,24],[0,1],[1,0],[0,1],[111,61],[1,3],[24,33],[2,6],[10,53],[0,1],[5,55],[3,26],[0,1],[75,38],[2,2],[-6,19],[-9,106],[7,17],[10,16],[16,42],[1,19],[4,10],[-2,13],[-3,38],[0,2],[-5,6],[-7,8],[-30,11],[-21,12],[-4,5],[-1,7],[-8,7],[-1,5],[1,21],[5,12],[-3,14],[-8,30],[-4,17],[-15,13],[-54,50],[-52,47],[0,1],[4,109],[6,40],[49,1],[52,1],[63,1],[1,0],[32,24],[0,2],[14,56],[20,80],[4,14],[1,4],[-21,65],[-6,18],[-12,37],[-41,100],[-1,1],[-16,23],[-26,31],[-14,7],[-84,15],[-46,17],[-21,24],[6,24],[-1,3],[-23,28],[-19,24],[-6,7],[-15,17],[-41,3],[-2,0],[-96,24],[-7,9],[-5,77],[-5,53],[-2,39],[-1,15],[-1,27],[-1,24],[-6,80],[-6,94],[-5,87],[0,4],[-1,17],[-2,27],[-1,40],[-2,40],[-11,104],[0,33],[-3,39],[-2,23],[-1,49],[-1,13],[-3,30],[0,5],[-1,5],[2,20],[0,4],[-3,32],[0,3],[0,46],[-4,27],[-2,22],[-3,43],[-1,4],[-2,43],[-2,22],[-1,13],[0,4],[4,24],[-5,52],[-10,110],[-9,105],[-5,52],[-3,42],[-1,1],[-2,26],[-18,217],[-15,169],[-3,29],[-23,256],[-5,56],[-7,77],[-4,44],[-6,63],[0,5],[0,2],[-9,93],[-3,39],[-3,30],[-10,114],[-7,88],[1,38],[-4,89],[-1,39],[1,32],[-1,31],[-2,20],[0,3],[-2,29],[-1,30],[-6,116],[-13,189],[-12,160],[-20,252],[-12,81],[-2,65],[-7,71],[-11,87],[-15,106],[-16,135],[-12,95],[-11,101],[-1,7],[-4,41],[-12,110],[-7,77]]],"transform":{"scale":[0.00004135414235142318,0.000044751106231062466],"translate":[-71.08446388399989,42.98476421400011]}} diff --git a/src/js/config/mapconfig/mapfiles/county/mi-counties.json b/src/js/config/mapconfig/mapfiles/county/mi-counties.json new file mode 100644 index 00000000..71ba7eec --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/mi-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-90.41870179999995,41.69611002300013,-82.12278960199984,48.305499600000076],"geometries":[{"type":"Polygon","properties":{"name":"MI"},"id":"26000","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49],[50],[51,52],[53],[54],[55,56],[57],[58],[59],[60],[61],[62],[63],[64,65,66,67],[68],[69],[70],[71],[72],[73],[74],[75],[76],[77],[78],[79],[80],[81],[82],[83],[84],[85],[86,87,88,89],[90],[91],[92],[93],[94],[95],[96],[97,98],[99],[100],[101],[102],[103],[104],[105],[106],[107],[108],[109],[110],[111],[112],[113],[114],[115],[116],[117],[118,119],[120],[121],[122],[123],[124],[125],[126],[127],[128],[129],[130],[131],[132],[133],[134],[135],[136],[137],[138],[139],[140],[141],[142],[143],[144],[145],[146],[147,148],[149],[150,151,152,153,154,155,156,157],[158],[159],[160],[161],[162],[163],[164],[165],[166],[167]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26131","arcs":[[168,169,-48,170]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26013","arcs":[[171,172,173,-44]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26053","arcs":[[174,175,-49,-170]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26095","arcs":[[176,177,178,179,-41]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26153","arcs":[[-179,180,-36,181,182]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26071","arcs":[[-173,183,184,185,-175,-169,186]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26043","arcs":[[187,188,-185,189]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26109","arcs":[[190,-34,191,-188,192]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26031","arcs":[[193,194,195,196,197,-18]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26141","arcs":[[198,199,-194,-17]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26009","arcs":[[200,201,202,-21,203]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26137","arcs":[[204,205,-201,206,-196]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26119","arcs":[[207,208,-205,-195,-200]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26001","arcs":[[-15,209,210,211]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26079","arcs":[[212,213,214,-202]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26039","arcs":[[215,216,-213,-206]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26135","arcs":[[-211,217,-216,-209]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26019","arcs":[[218,219,-24,220]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26101","arcs":[[221,222,223,-25,-220]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26165","arcs":[[224,225,226,-222,227]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26143","arcs":[[228,229,230,231,-217]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26113","arcs":[[-232,232,233,-225,-214]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26069","arcs":[[-14,234,235,-210]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26129","arcs":[[-236,236,237,-229,-218]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26105","arcs":[[238,239,-26,-224]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26085","arcs":[[-223,-227,240,241,-239]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26133","arcs":[[-234,242,243,-241,-226]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26035","arcs":[[-231,244,245,-243,-233]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26051","arcs":[[246,247,248,-245,-230,-238]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26017","arcs":[[-12,249,250,251,-248,252]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26111","arcs":[[-252,253,254,255,-249]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26127","arcs":[[256,257,-27,-240]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26073","arcs":[[-256,258,259,260,-246]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26107","arcs":[[-261,261,262,-244]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26123","arcs":[[-263,263,264,265,-257,-242]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26157","arcs":[[266,267,268,269,270,-250,-11]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26151","arcs":[[271,272,-268,273,-9]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26145","arcs":[[-271,274,275,276,-254,-251]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26121","arcs":[[-266,277,278,-28,-258]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26117","arcs":[[-260,279,280,281,-264,-262]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26057","arcs":[[-255,-277,282,283,-280,-259]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26087","arcs":[[284,285,286,287,-269,-273]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26081","arcs":[[288,289,290,291,-278,-265,-282]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26049","arcs":[[-288,292,293,294,-275,-270]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26139","arcs":[[-292,295,-29,-279]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26155","arcs":[[-295,296,297,298,-283,-276]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26067","arcs":[[299,300,301,-289,-281]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26037","arcs":[[-299,302,303,-300,-284]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26099","arcs":[[-7,304,305,-286,306]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26125","arcs":[[307,308,309,-293,-287,-306]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26093","arcs":[[-310,310,311,312,-297,-294]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26065","arcs":[[-313,313,314,-303,-298]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26045","arcs":[[-304,-315,315,316,317,-301]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26015","arcs":[[-318,318,319,320,-290,-302]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26005","arcs":[[-291,-321,321,322,-30,-296]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26161","arcs":[[323,324,325,-311,-309,326]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26075","arcs":[[-312,-326,327,328,329,-316,-314]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26025","arcs":[[-330,330,331,332,-319,-317]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26159","arcs":[[333,334,335,-31,-323]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26077","arcs":[[-333,336,-334,-322,-320]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26021","arcs":[[337,338,-32,-336]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26091","arcs":[[339,340,341,-328,-325]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26023","arcs":[[342,343,344,-332]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26059","arcs":[[-342,345,-343,-331,-329]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26149","arcs":[[-345,346,347,-337]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26027","arcs":[[-348,348,-338,-335]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-69]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-65]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-68,349,-66]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-61]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-62]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-63]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-64]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-60]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-59]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-58]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-56]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-57]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-52]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-55]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-54]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-53]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26083","arcs":[[-51]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26061","arcs":[[-71]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26061","arcs":[[-46,-45,-174,-187,-171,-47]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26061","arcs":[[-67,-350]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26103","arcs":[[-73]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26103","arcs":[[350,351,-193,-190,-184,-172,-43]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26103","arcs":[[-72]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26103","arcs":[[-70]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26003","arcs":[[-75]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26003","arcs":[[-76]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26003","arcs":[[-74]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26003","arcs":[[-183,352,-351,-42,-180]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26041","arcs":[[-129]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26041","arcs":[[-128]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26041","arcs":[[-124]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26041","arcs":[[-125]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26041","arcs":[[-353,-182,-35,-191,-352]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-89]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-101]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-100]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-87]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-91]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-92]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-93]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-83]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-94]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-84]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-95]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-85]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-96]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-86]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-97]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-82]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-99]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-88,-90]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-98]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-79]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-78]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-80]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-81]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[-77]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26033","arcs":[[353,-38,354,-177,-40]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-114]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-112]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-118]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-110]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-106]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-105]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-107]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-103]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-104]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-109]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-108]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-39,-354]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-102]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26097","arcs":[[-37,-181,-178,-355]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26047","arcs":[[-122]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26047","arcs":[[-119]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26047","arcs":[[-121]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26047","arcs":[[-120]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26047","arcs":[[-198,355,-19]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-356,-197,-207,-204,-20]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-126]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-127]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-123]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-116]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-117]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-115]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-113]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26029","arcs":[[-111]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26089","arcs":[[-133]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26089","arcs":[[-134]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26089","arcs":[[-132]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26089","arcs":[[356,-221,-23]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26089","arcs":[[-131]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26089","arcs":[[-130]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26055","arcs":[[-135]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26055","arcs":[[-203,-215,-228,-219,-357,-22]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26007","arcs":[[-140]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26007","arcs":[[-139]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26007","arcs":[[-138]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26007","arcs":[[-137]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26007","arcs":[[-136]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26007","arcs":[[-16,-212,-208,-199]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26011","arcs":[[-141]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26011","arcs":[[-13,-253,-247,-237,-235]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26063","arcs":[[-147]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26063","arcs":[[-146]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26063","arcs":[[-145]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26063","arcs":[[-144]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26063","arcs":[[-143]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26063","arcs":[[-142]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26063","arcs":[[-274,-267,-10]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-148]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-150]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-154]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-153,-155]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-152,-156]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-161]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-151,-157]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-149]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-160]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-159]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-158]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26147","arcs":[[-307,-285,-272,-8]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26163","arcs":[[-166]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26163","arcs":[[-165]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26163","arcs":[[-164]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26163","arcs":[[-163]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26163","arcs":[[-162]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26163","arcs":[[-6,357,-327,-308,-305]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26115","arcs":[[358,-1]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26115","arcs":[[-3,359]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26115","arcs":[[-168]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26115","arcs":[[-167]]},{"type":"Polygon","properties":{"name":"MI"},"id":"26115","arcs":[[-5,360,-340,-324,-358]]}]},"states":{"type":"GeometryCollection","bbox":[-90.41870179999995,41.69611002300013,-82.12278960199984,48.305499600000076],"geometries":[{"type":"MultiPolygon","properties":{"name":"Michigan"},"id":"26","arcs":[[[358,-1]],[[-3,359]],[[-168]],[[-167]],[[-166]],[[-165]],[[-164]],[[-163]],[[-162]],[[-148]],[[-150]],[[-154]],[[-155,-153]],[[-152,-156]],[[-161]],[[-157,-151]],[[-149]],[[-160]],[[-159]],[[-158]],[[-147]],[[-146]],[[-145]],[[-144]],[[-143]],[[-142]],[[-141]],[[-135]],[[-140]],[[-133]],[[-139]],[[-138]],[[-137]],[[-134]],[[-132]],[[-136]],[[-131]],[[-130]],[[-129]],[[-128]],[[-124]],[[-125]],[[-126]],[[-127]],[[-123]],[[-122]],[[-119]],[[-121]],[[-120]],[[-116]],[[-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,360,340,345,343,346,348,338,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19]],[[-117]],[[-115]],[[-114]],[[-113]],[[-112]],[[-111]],[[-118]],[[-110]],[[-89]],[[-101]],[[-100]],[[-87]],[[-106]],[[-105]],[[-107]],[[-103]],[[-104]],[[-109]],[[-108]],[[-102]],[[-91]],[[-92]],[[-93]],[[-83]],[[-94]],[[-84]],[[-95]],[[-85]],[[-96]],[[-86]],[[-97]],[[-82]],[[-99]],[[-88,-90]],[[-98]],[[-79]],[[-78]],[[-80]],[[-81]],[[-75]],[[-76]],[[-77]],[[-74]],[[-73]],[[-72]],[[-71]],[[-70]],[[-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,191,188,185,175,-49,-48,-47]],[[-69]],[[-65]],[[-68,-67,-66]],[[-61]],[[-62]],[[-63]],[[-64]],[[-60]],[[-59]],[[-58]],[[-56]],[[-57]],[[-52]],[[-55]],[[-54]],[[-53]],[[-51]]]}]}},"arcs":[[[83944,556],[3,6],[6,8],[13,19],[1,3],[-20,27],[3,7],[16,45],[-44,-2],[-1,0],[-5,0],[-24,-1],[-11,-42],[0,-1],[-13,-21],[-30,-41],[-8,-11]],[[83830,552],[-68,-1]],[[83762,551],[39,39],[23,42],[10,51],[-27,-5],[-12,-2],[-43,-11],[-38,-25],[-28,-40],[-37,-28],[-19,-26]],[[83630,546],[-25,0]],[[83605,546],[1,1],[0,5],[0,11],[17,11],[10,8],[5,3],[3,3],[1,1],[10,10],[8,26],[1,6],[-2,7],[-14,40],[5,42],[12,1],[17,2],[7,-6],[12,-10],[2,-1],[18,-15],[21,0],[17,17],[7,16],[1,3],[2,5],[23,-1],[9,7],[7,5],[-23,19],[-6,1],[-10,0],[-20,5],[-20,5],[-4,8],[-3,6],[38,3],[59,8],[-16,30],[-39,6],[-23,-11],[-22,27],[-19,2],[-6,1],[12,37],[-2,52],[11,7],[28,21],[1,17],[1,33],[6,-2],[21,-6],[26,3],[25,6],[10,1],[1,0],[33,4],[43,-1],[-22,38],[15,44],[14,10],[4,2],[16,12],[36,20],[-29,36],[-17,-2],[-14,-2],[-30,1],[-15,36],[-4,62],[-7,72],[-3,20],[11,-3],[12,-4],[4,1],[16,5],[9,2],[4,2],[2,0],[18,-7],[18,-8],[3,2],[0,1],[16,10],[9,4],[19,8],[10,13],[12,16],[21,7],[9,3],[0,-25],[-1,-27],[-12,-36],[-1,-3],[-6,-17],[27,-43],[1,-1],[2,0],[-2,-21],[-1,-5],[-1,-8],[0,-15],[1,-13],[1,-9],[11,-26],[12,-25],[19,-35],[25,-45],[8,-21],[15,-44],[10,-22],[19,-42],[10,-18],[10,-19],[9,-26],[-2,-13],[-3,-24],[-15,-28],[-1,-28],[0,-23],[21,-11],[16,0],[9,-3],[3,-1],[1,-1],[11,-14],[0,-31],[6,-14],[6,-12],[13,1],[6,25],[1,32],[1,24],[0,39],[-5,39],[-15,26],[-56,166],[-55,105],[-20,93],[-17,84],[-8,5],[-6,4],[-4,30],[-11,83],[-4,34],[0,8],[-1,7],[0,3],[23,40],[0,55],[3,24],[3,32],[1,14],[1,19],[6,34],[3,6],[8,14],[14,48],[32,47],[26,26],[7,7],[38,21],[14,7],[19,10],[30,11],[13,0],[4,-1],[24,-1],[32,6],[28,16],[2,1],[15,9],[5,4],[21,21],[20,21],[11,11],[1,1],[1,2],[9,9],[4,4],[2,9],[0,1],[1,9],[6,30],[13,33],[6,13],[18,42],[20,54],[4,48],[23,16],[4,7],[23,49],[21,39],[22,31],[4,5],[21,29],[21,28],[1,1],[14,20],[22,41],[4,7],[29,50],[29,45],[2,3],[16,25],[35,34],[33,-5],[31,15],[3,1],[9,4],[6,5],[4,3],[22,17],[18,11],[8,5],[21,-10],[4,-1],[4,-2],[27,-5],[11,-3],[32,-3],[31,-12],[39,7],[7,21],[0,1],[6,19],[-9,58],[-8,45],[5,19],[3,14],[4,5],[24,34],[27,-31],[18,-14],[18,-14],[4,-9],[13,-24],[36,-13],[10,12],[11,13],[16,37],[16,37],[12,27],[-26,44],[-4,6],[-8,14],[36,-16],[18,34],[-2,17],[-2,15],[7,32],[5,29],[8,25],[2,7],[4,31],[22,117],[12,9],[25,17],[9,6],[28,74],[-26,16],[-4,2],[-5,3],[-29,-50],[-32,6],[-20,4],[-34,11],[15,31],[2,4],[13,28],[-14,34],[11,1],[31,4],[20,-6],[20,-5],[37,-23],[50,75],[18,28],[5,7],[5,7],[21,25],[41,37],[52,42],[34,21],[16,8],[11,5],[30,31],[3,4],[37,1],[1,0],[1,0],[2,1],[2,1],[21,7],[0,1],[11,4],[8,0],[15,1],[21,1],[39,-1],[5,0],[1,0],[49,-3],[27,-10],[4,-2],[7,-4],[25,-12],[39,-16],[16,6],[4,1],[3,1],[41,-32],[3,-3],[12,-9],[19,-20],[14,-34],[23,-31],[17,40],[19,43],[20,20],[9,9],[59,34],[22,41],[-13,44],[-40,25],[2,16],[2,20],[-11,30],[23,46],[2,15],[2,18],[25,63],[5,48],[-50,31],[-17,-33],[-22,-15],[0,24],[-1,26],[33,37],[20,22],[-7,30],[-42,10],[-12,9],[-13,11],[-7,6],[-15,15],[-35,7],[-17,9],[-10,5],[-32,13],[-2,1],[-26,5],[-35,18],[-15,7],[-22,23],[-15,49],[5,-1],[21,-4],[1,-2],[10,-21],[24,-20],[20,-16],[14,-4],[13,-4],[25,-6],[25,-7],[2,0],[6,-2],[13,-4],[22,-6],[29,-2],[3,-2],[51,-29],[27,-5],[7,-1],[2,-1],[1,0],[9,-4],[14,-5],[22,-9],[13,2],[13,1],[19,-1],[13,0],[19,-28],[27,16],[32,27],[26,30],[11,11],[1,1],[11,10],[36,26],[4,2],[58,45],[15,8],[34,18],[2,1],[1,1],[0,1],[0,37],[6,3],[16,6],[32,38],[18,12],[14,10],[21,26],[29,7],[60,33],[-5,37],[1,4],[1,7],[2,15],[1,5],[0,5],[1,2],[1,8],[10,11],[24,29],[-4,20],[-4,19],[-2,12],[-2,7],[-1,5],[-1,0],[-2,0],[-13,2],[-12,1],[3,45],[41,11],[1,31],[2,27],[0,16],[10,-5],[9,-5],[18,-11],[8,-10],[9,-10],[28,-21],[7,-8],[8,-8],[20,8],[2,1],[11,5],[4,23],[-2,10],[-2,15],[-23,9],[-21,9],[7,15],[9,19],[20,17],[11,9],[-4,7],[-16,21],[-24,24],[-8,8],[-26,39],[43,2],[1,0],[-18,24],[-6,9]],[[87036,5120],[-4,42],[-1,8],[7,5],[4,2],[13,9],[-3,47],[5,-6],[30,-41],[13,-42],[5,-12],[9,-21],[20,-9],[17,-8],[1,2],[14,19],[3,5],[-8,36],[-5,33],[-6,41],[17,26],[4,7],[0,6],[-1,6],[-2,21],[13,87],[-27,37],[-2,17],[-4,26],[-10,78],[-27,23],[6,42],[1,11],[4,72],[-12,55],[-3,15],[-8,26],[-45,51],[-4,24],[0,3],[-3,19],[23,-25],[3,-4],[13,-14],[16,22],[13,-24],[14,-23],[4,-6],[25,26],[17,22],[0,1],[10,12],[-5,39],[0,2],[3,64],[0,6],[1,9],[-6,13],[-11,26],[-31,74],[-2,67],[0,33],[16,34],[12,-42],[22,12],[6,3],[5,3],[10,5],[-4,20],[-3,16],[-11,62],[4,2],[9,3],[8,4],[14,6],[-11,50],[17,3],[32,6],[-1,12],[0,13],[0,7],[0,9],[2,3],[3,4],[7,10],[5,7],[4,60],[28,75],[-7,46],[-1,19],[-1,10],[1,12],[2,18],[5,40],[6,14],[3,5],[11,25],[2,18],[3,35],[4,14],[4,21],[8,23],[5,18],[48,58],[10,31],[18,61],[2,81],[-11,16],[-7,11],[2,4],[8,17],[8,16],[10,21],[21,36],[20,35],[4,8],[37,59],[18,31],[14,7],[5,2],[1,1],[3,1],[14,27],[16,31],[6,18],[0,1],[5,14],[15,54],[12,54],[19,63],[4,12],[3,8],[23,55],[0,33],[3,8],[9,24],[21,26],[4,45],[2,16],[-3,9],[-19,53],[-4,12],[-17,25],[-11,18],[-6,9],[-8,21],[-8,20],[2,17],[1,18],[1,7],[1,14],[3,36],[0,4],[55,101],[31,15],[64,17],[26,14],[41,21],[42,26],[57,95],[12,19],[13,22],[10,25],[9,25],[1,10],[1,11],[2,19],[1,14],[28,25],[10,9],[9,30],[6,19],[2,6],[11,66],[-12,28],[-1,1],[74,130],[31,54],[17,25],[30,37],[3,4],[11,15],[3,3],[5,6],[44,51],[21,25],[63,77],[30,37],[3,5],[26,37],[18,19],[30,31],[9,9],[21,13],[4,3],[127,80],[155,67],[24,7],[26,8],[5,2],[5,2],[29,11],[26,10],[27,10],[7,2],[44,16],[2,1],[54,20],[57,26],[27,11],[38,15],[39,20],[6,3],[10,5],[4,2],[29,16],[27,16],[0,1],[10,6],[10,7],[14,11],[30,20],[1,1],[1,1],[38,35],[39,35],[44,31],[3,2],[52,36],[39,25],[52,14],[9,2],[1,1],[14,4],[31,9],[77,29],[3,11],[4,20],[29,-6],[24,-26],[8,0],[26,-2],[36,-3],[31,-3],[24,-1],[17,0],[54,4],[10,1],[37,4],[36,6],[32,5],[83,10],[56,12],[26,21],[4,4],[49,49],[8,26],[5,33],[8,28],[2,8],[2,8],[15,24],[12,18],[19,21],[2,5],[9,26],[5,14],[24,20],[21,9],[22,11],[2,0],[1,1],[22,11],[1,0],[13,6],[23,12],[3,2],[32,21],[10,7],[44,27],[28,29],[38,39],[25,40],[8,14],[4,9],[16,34],[10,17],[9,14],[11,69],[2,16],[3,32],[11,2],[17,2],[3,1],[-3,3],[-12,17],[-8,11],[34,116],[2,5],[1,3],[11,28],[48,173],[1,4],[17,44],[21,34],[7,11],[-5,56],[10,37],[23,81],[4,17],[5,17],[3,15],[2,13]],[[90986,11421],[10,11],[2,2],[5,6],[16,14],[-10,29],[-4,3],[-3,3],[-44,33],[-43,35],[20,33],[-17,11],[-20,13],[-37,16],[3,40],[-19,7],[-20,7],[5,42],[3,17],[4,8],[9,14],[10,19],[-17,14],[-5,4],[-10,8],[-5,24],[4,2],[6,1],[18,6],[14,4],[-34,17],[0,19],[-1,25],[0,16],[4,2],[14,5],[1,0],[18,7],[-30,17],[-8,4],[9,23],[5,11],[3,2],[47,27],[-39,19],[-11,48],[0,3],[0,5],[3,32],[5,45],[7,22],[3,11],[7,33],[2,10],[4,32],[8,46],[11,30],[0,2],[26,79],[11,33],[4,12],[11,31],[23,39],[12,26],[1,0],[8,16],[23,41],[11,16],[33,47],[22,32],[21,30],[15,22],[84,89],[18,22],[4,4],[20,24],[0,3],[1,3],[8,26],[2,49],[0,6],[0,1],[5,8],[4,7],[27,47],[32,26],[22,9],[12,5],[2,0],[4,-2],[44,-19],[-22,37],[-4,8],[29,35],[12,7],[20,13],[59,21],[2,1],[1,0],[24,4],[66,12],[29,-3],[19,-7],[6,-3],[34,18],[22,2],[11,1],[9,5],[2,2],[6,3],[3,2],[14,9],[6,-11],[6,-10],[23,0],[43,0],[6,0],[45,0],[24,-8],[6,-2],[53,-20],[5,-1],[49,-49],[35,-35],[-11,60],[6,9],[19,25],[0,33],[-12,14],[-27,34],[-8,18],[-3,9],[-7,19],[0,44],[-30,33],[-4,23],[-4,23],[20,43],[22,41],[1,11],[82,8],[29,3],[9,1],[-1,4],[0,5],[-4,23],[-1,4],[0,3],[-1,3],[-6,-1],[-5,-2],[-16,0],[-64,-8],[-3,0],[-56,10],[-7,3],[-37,58],[-4,26],[-2,12],[4,2],[5,3],[11,6],[4,2],[24,13],[-51,3],[-29,1],[-1,0],[-27,15],[-5,15],[-2,8],[-59,24],[-11,5],[-12,5],[-15,6],[-55,23],[-30,24],[-19,14],[-48,38],[6,31],[-2,18],[-7,49],[-1,8],[1,45],[15,48],[7,23],[1,2],[21,62],[4,13],[27,60],[26,43],[16,23],[22,17],[25,41],[35,33],[23,18],[19,19],[39,24],[14,3],[6,2],[7,2],[10,3],[14,0],[6,0],[1,0],[1,0],[4,0],[28,-4],[35,-13],[7,-3],[4,-3],[2,-1],[17,-11],[35,-4],[25,9],[24,8],[1,1],[40,13],[50,11],[25,6],[34,5],[37,12],[12,29],[3,10],[-2,62],[10,20],[7,14],[29,37],[43,29],[33,23],[6,4],[2,1],[3,1],[28,11],[22,2],[35,3],[42,-4],[24,2],[7,13],[14,25],[10,26],[6,15],[7,9],[10,12],[41,30],[11,8],[15,12],[14,5],[15,5],[23,3],[21,3],[51,0],[7,-1],[22,-2],[1,0],[19,-2],[1,0],[13,-1],[31,10],[4,6],[14,19],[10,9]],[[92969,14982],[16,17],[4,4],[32,20],[38,12],[16,4],[16,3],[38,0],[7,0],[45,-4],[28,-2],[17,-2],[4,0],[11,-2],[5,-2],[28,-6],[71,-34],[24,-12],[19,-14],[17,-12],[21,-14],[20,-15],[12,-9],[34,-23],[13,-12],[14,-11],[27,-26],[18,-27],[30,-16],[17,-33],[17,36],[29,30],[3,-2],[20,-9],[28,4],[26,-5],[20,-3],[13,0],[42,0],[11,-5],[28,-16],[29,-18],[11,-14],[14,-18],[26,2],[29,-7],[1,-1],[2,-5],[4,-6],[10,-19],[1,-36],[-19,14],[-8,5],[-5,4],[6,-41],[5,-48],[7,-32],[0,-3],[1,-1],[30,-28],[-24,-19],[-5,-32],[-3,-6],[-1,-4],[-17,-41],[-9,-31],[-2,-9],[-21,-34],[-6,-9],[-11,-18],[-10,-13],[-15,-21],[-26,-22],[-11,-2],[-21,-4],[-9,-9],[-5,-5],[-11,-8],[-9,-7],[-9,-21],[-5,-12],[-15,-31],[-21,-20],[-24,-21],[-4,-3],[41,-4],[34,8],[4,0],[40,10],[46,2],[29,2],[7,1],[16,2],[10,-12],[1,-1],[8,-10],[7,-18],[8,-19],[14,-9],[1,-1],[12,-8],[29,-21],[9,-7],[25,-14],[30,-18],[83,11],[27,12],[29,16],[42,-3],[13,-1],[40,-7],[29,-12],[17,-7],[25,-15],[28,-11],[35,-3],[41,-6],[48,-8],[74,-9],[19,-7],[17,-7],[32,-6],[46,-11],[40,-15],[26,-8],[6,-2],[1,0],[9,-5],[14,-8],[26,-19],[8,-15],[11,-19],[16,-20],[18,-26],[9,-7],[14,-12],[26,0],[11,0],[38,19],[28,29],[17,30],[4,6],[9,14],[11,17],[8,12],[18,24],[7,9],[30,29],[18,16],[2,2],[7,6],[2,2],[4,3],[3,3],[25,21],[3,3],[16,12],[11,10],[17,17],[11,24],[6,13],[0,2],[1,2],[7,22],[6,18],[8,35],[11,49],[7,42],[4,21],[7,43],[-3,32],[0,3],[-3,27],[-1,22],[-2,23],[-3,34],[-1,13],[-1,7],[-4,26],[-1,21],[-1,13],[-1,15],[-3,29],[4,35],[2,13],[3,36],[5,21],[4,15],[8,25],[6,20],[14,47],[14,40],[3,8],[6,18],[10,25],[1,2],[3,10],[6,15],[13,36],[4,15],[2,12],[9,31],[5,19],[3,11],[7,30],[1,19],[2,20],[11,30],[1,3],[14,35],[21,26],[6,9],[15,22],[8,22],[4,13],[1,2],[4,17],[7,25],[8,8],[7,7],[8,7],[3,6],[17,37],[13,22],[13,23],[1,2],[2,6],[4,10],[8,24],[5,48],[-2,84],[0,58],[9,56],[4,13],[1,4],[8,25],[5,11],[14,36],[5,32],[3,17],[20,12],[2,1],[11,7],[12,15],[10,12],[10,12],[33,42],[13,29],[10,20],[9,20],[18,46],[16,52],[2,23],[1,11],[0,27],[2,47],[-2,38],[0,5],[-7,26],[-4,14],[-10,27],[-2,19],[-3,36],[-5,17],[-8,24],[-9,26],[-4,11],[-7,24],[-8,25],[-20,46],[-12,28],[-23,56],[-4,6],[-12,20],[-19,33],[-3,5],[-17,55],[-2,26],[0,1],[0,17],[2,50],[9,46],[0,14],[1,20],[0,7],[1,16],[-1,9],[0,1],[-1,52],[9,50],[7,46],[19,41],[3,5],[23,41],[6,10],[4,7],[25,43],[6,13],[6,13],[7,21],[4,10],[9,30],[5,27],[5,23],[4,19],[8,35],[-3,42],[-5,59],[-4,42],[-1,5],[0,4],[-1,11],[-5,35],[-3,21],[-1,19],[-1,14],[-5,79],[1,22],[0,21],[0,27],[0,59],[0,14],[0,25],[0,11],[1,50],[6,35],[23,72],[14,44],[19,39],[18,43],[7,11],[0,1],[9,14],[11,34],[9,32],[24,60],[3,9],[8,27],[14,42],[17,80],[1,4],[6,29],[16,41],[5,14],[28,51],[26,40],[29,42],[50,52],[13,12],[26,25],[10,8],[29,21],[22,18],[27,22],[14,13],[6,6],[23,24],[30,34],[31,47],[17,25],[6,8],[16,22],[5,7],[20,39],[15,56],[8,40],[1,10],[0,11],[0,6],[0,5],[2,3],[13,27],[-4,17],[-4,26],[-4,11],[-1,1],[-1,3],[-14,37],[-10,18],[-14,22],[-8,9],[-7,9],[-20,51],[-15,37],[-1,33],[-1,24],[4,7],[24,49],[1,2],[3,7],[4,7],[2,5],[5,14],[6,14],[9,37],[0,7],[-1,16],[-2,26],[-10,46],[-2,8],[-6,20],[-16,44],[-16,32],[-7,10],[-9,13],[-23,31],[-10,14],[-6,13],[-13,29],[-34,50],[-17,31],[-9,17],[-14,20],[-5,8],[-14,27],[-18,32],[-14,23],[-13,23],[-21,35],[-23,37],[-20,53],[-3,10],[-6,15],[-1,4],[-1,2],[-1,1],[-1,2],[-13,30],[-28,56],[-17,33],[-16,28],[-21,36],[-27,49],[-16,27],[-14,24],[-18,51],[-10,28],[-9,23],[-9,25],[-10,37],[-14,44],[-20,45],[-1,4],[-9,21],[-24,28],[-24,24],[-6,6],[-18,19],[-17,24],[-6,8],[-20,27],[-21,28],[-41,58],[-3,13],[0,2],[-7,32],[-2,72],[-11,54],[-22,35],[-7,7],[-15,14],[4,51],[1,8],[-1,8],[-3,24],[-6,29],[-1,7],[-7,51],[-4,41],[-1,43],[-1,15],[-2,19],[-3,22],[-2,10],[-2,16],[-3,32],[-6,25],[-5,16],[-10,42],[-6,17],[-11,38],[-18,55],[-19,47],[-12,34],[0,1],[-3,10],[2,45],[-6,20],[-7,20],[-8,23],[-4,10]],[[95411,22283],[-2,15],[-7,51],[-4,21],[-8,43],[-9,38],[-5,20],[-4,15],[-5,24],[-7,34],[-5,27],[0,3],[-3,16],[-1,21],[-1,13],[0,10],[2,24],[-2,17],[-1,19],[-3,11],[-6,24],[-14,32],[-16,34],[-30,52],[-13,20],[-13,19],[-7,13],[-10,18],[-11,30],[-8,34],[-5,36],[-10,38],[0,2],[-12,35],[-2,9],[-9,33],[-3,25],[-3,29],[-2,25],[-2,18],[0,60],[1,41],[0,18],[-4,26],[-5,32],[-6,42],[-4,20],[0,1],[-6,29],[9,26],[2,8],[-2,7],[-2,3],[-8,21],[-8,29],[-10,35],[-5,36],[7,53],[9,50],[18,7],[18,7],[-12,11],[-13,13],[-14,32],[-5,13],[-6,16],[-11,30],[1,40],[-3,57],[-1,66],[0,35],[1,30],[-4,32],[-1,12],[-2,10],[-9,37],[-7,31],[-4,20],[-8,46],[-11,46],[4,43],[0,3],[1,7],[5,27],[22,37],[4,40],[0,4],[0,20],[-1,29],[-1,56],[0,8],[0,1],[-1,3],[-3,26],[0,4],[-2,25],[-1,11],[-1,14],[2,25],[0,5],[1,10],[-2,14],[-1,6],[-5,33],[-4,19],[-5,21],[-18,30],[-15,28],[-8,27],[-9,19],[-4,9],[-12,38],[-6,40],[0,2],[-4,40],[9,61],[6,36],[5,47],[0,10],[0,39],[16,59],[6,33],[-5,50],[6,70],[10,41],[0,1],[1,2],[-3,7],[-8,17],[-14,29],[-11,44],[-9,24],[-5,15],[-6,40],[-8,22],[-9,25],[-2,63],[4,45],[15,45],[-12,36],[0,43],[-8,37],[5,47],[-6,20],[-6,20],[-2,26],[-1,16],[13,55],[5,17],[13,8],[28,16],[-12,7],[-20,11],[-8,37],[-5,17],[-4,17],[-1,3],[-3,6],[-15,38],[-21,35],[-4,5],[-24,35],[-16,21],[-21,43],[0,18],[-1,33],[11,44],[4,17],[-2,2],[-3,4],[-7,8],[-12,15],[-14,28],[-5,7],[-20,27],[-8,9],[-1,2],[-3,4],[-20,51],[-1,10],[-3,29],[-4,18],[-4,24],[2,33],[-1,13],[0,16],[3,17],[2,8],[3,12],[-10,13],[-9,10],[-3,4],[-6,5],[-12,12],[-14,18],[-13,18],[-7,18],[-4,9],[-9,22],[-12,15],[-8,11],[-18,31],[0,1],[-1,0],[-2,11],[-5,27],[0,10],[0,13],[0,14],[1,37],[1,58],[-31,50],[-30,44],[-4,23],[-5,29],[2,54],[-17,45],[-17,49],[-3,8],[-14,28],[-1,2],[-5,9],[0,9],[-3,35],[-10,28],[-4,13],[-11,22],[-8,17],[-13,25],[-10,18],[-9,18],[-9,18],[-17,38],[-8,19],[-3,20],[-6,41],[0,1],[0,1],[0,7],[1,3],[1,31],[0,5],[0,3],[-1,3],[-2,9],[-3,18],[2,23],[2,30],[-4,13],[-10,35],[-17,27],[-17,35],[-8,36],[-1,3],[-4,38],[0,19],[0,16],[1,28],[-10,39],[-7,54],[-16,45],[-9,38],[-3,17],[-5,10],[-5,10],[-15,34],[-5,11],[-14,33],[-5,14],[-6,18],[2,29],[-7,34],[-4,20],[-1,14],[-1,29],[-7,26],[-4,15],[-1,12],[-1,36],[2,30],[0,9],[5,45],[12,12],[26,29],[-11,56],[-1,2],[-1,9],[-3,14],[-2,9],[-2,8],[0,17],[0,4],[0,9],[-5,30],[-9,24],[-8,24],[-20,42],[-9,43],[3,37],[1,4],[1,13],[-10,36],[23,21],[0,1],[-7,21],[-4,12],[-7,28],[-3,13],[-3,10],[-12,46],[-1,1],[0,6],[-1,40],[0,25],[0,25],[-7,29],[-9,44],[-5,39],[3,45],[5,44],[3,23],[1,41],[1,19],[2,21],[3,29],[-17,44],[-12,51],[4,34],[1,12],[0,3],[1,6],[-3,9],[-3,12]],[[94161,30174],[-4,16],[-2,6],[-6,22],[-3,9],[-2,12],[-1,8],[-1,8],[-1,6],[-2,3],[-11,20],[-2,36],[-1,32],[13,32],[1,2],[1,2],[0,5],[0,5],[1,30],[5,7],[10,13],[5,7],[-5,24],[-2,9],[-5,24],[-3,13],[-1,5],[-8,27],[-6,23],[-1,4],[-3,10],[-7,28],[-9,28],[-3,12],[-2,10],[-5,34],[2,34],[18,30],[-7,19],[-9,24],[8,30],[4,12],[-14,44],[2,13],[2,14],[3,19],[-2,2],[-14,19],[-2,2],[-20,17],[-8,7],[-13,16],[-7,8],[-7,28],[-7,45],[-3,28],[-6,26],[-5,23],[16,37],[2,31],[1,22],[-4,55],[3,39],[1,15],[4,4],[28,26],[14,27],[-11,50],[0,10],[0,19],[0,14],[-8,7],[-8,7],[-1,2],[-23,20],[-12,14],[-14,17],[-24,26],[-10,11],[-15,50],[5,32],[2,10],[1,9],[5,14],[11,29],[3,28],[-25,41],[-8,50],[-3,9],[-7,19],[-6,9],[-16,20],[-14,49],[-3,12],[-9,30],[-8,26],[-11,30],[-3,38],[-12,27],[-10,29],[-3,8],[0,4],[0,5],[-1,41],[-6,27],[-4,21],[-2,22],[-2,19],[-8,7],[-6,6],[-11,10],[-3,3],[-32,13],[-5,1],[-20,6],[-16,13],[-20,18],[-15,22],[-7,12],[-8,23],[-1,7],[-1,2],[-2,20],[42,40],[-15,10],[-36,22],[5,7],[14,17],[6,9],[2,2],[-17,5],[-24,8],[-4,37],[-1,13],[-1,9],[-1,2],[-1,17],[-11,37],[-24,10],[-3,19],[-3,22],[-6,9],[-1,3],[-8,12],[-2,3],[-3,6],[0,17],[0,12],[-2,19],[-1,2],[-3,23],[-1,-1],[-9,-5],[-10,-6],[-10,11],[-15,17],[-13,11],[-12,9],[-19,16],[-4,4],[-29,25],[-45,29],[-31,24],[-3,2],[-16,24],[-23,32],[-18,1],[-11,1],[-2,10],[-6,31],[-9,41],[-2,9],[-7,28],[-14,38],[-12,17],[-9,12],[-14,49],[-17,40],[1,8],[2,23],[3,10],[5,21],[29,26],[-9,43],[-38,46],[-22,24],[-2,2],[-16,15],[-8,7],[-15,14],[-16,15],[-12,36],[-9,36],[-42,44],[-22,25],[-4,14],[-5,24],[2,40],[-3,24],[-2,21],[-8,25],[-8,27],[-42,12],[-16,40],[-19,40],[-14,51],[-31,21],[-49,34],[-23,16],[-1,25],[-27,37],[-6,21],[-1,3],[-3,10],[-5,38],[0,13],[1,23],[-10,12],[-13,17],[-8,11],[-25,37],[-13,34],[-4,9],[-9,19],[-1,12],[-1,16],[-1,13],[-35,41],[-3,3],[-17,24],[-11,15],[0,22],[0,12],[0,3],[-11,15],[-8,9],[-9,11],[-8,11],[-13,18],[-4,14],[-8,25],[-22,32],[-4,-5],[0,-1],[-5,-6],[-8,-9],[-39,4],[-34,12],[-3,28],[-1,22],[-34,17],[-5,13],[-8,20],[-27,22],[-8,7],[-31,42],[-11,0],[-16,-1],[-5,8],[-10,14],[-27,29],[-6,5],[-29,25],[-46,-1],[-1,0],[-39,7],[-18,-6],[-9,-3],[-26,0],[-9,0],[-4,2],[-16,5],[-6,2],[-21,9],[-3,4],[-27,33],[-36,36],[-6,27],[-12,32],[-5,13],[-6,17],[-20,32],[-9,6],[-22,12],[-28,16],[-25,14],[-28,3],[-24,29],[-60,-3],[-29,10],[-7,19],[-9,5],[-12,6],[-24,54],[-39,-8],[-13,-3],[-39,0],[-18,5],[-22,5],[-22,10],[-11,18],[-1,2],[-10,5],[-4,2],[-15,8],[-48,14],[-44,11],[-29,1],[-29,5],[-22,4],[-4,1],[-5,2],[-25,6],[-16,11],[-22,15],[-36,-1],[-2,1],[-8,2],[-20,4],[-34,42],[-2,3],[-3,-1],[-15,-2],[-41,-7],[-31,6],[-39,16],[-14,1],[-19,2],[-16,-5],[-8,-2],[-30,25],[-20,4],[-44,17],[-10,6],[-28,15],[-32,26],[-15,14],[-13,13],[-31,40],[5,6],[26,29],[-11,-2],[-24,-5],[-4,1],[-6,1],[-16,2],[-12,1],[-26,29],[-10,11],[-1,2],[-10,2],[-16,3],[-21,3],[-11,9],[-9,7],[-5,3],[-3,3],[-19,7],[-8,3],[-17,1],[-29,1],[-52,20],[-8,7],[-12,10],[-11,9],[-2,1],[-3,20],[0,1],[-5,28],[-23,-14],[-6,-3],[-27,13],[-26,-19],[-19,13],[-21,-15],[-37,-16],[-48,-10],[-23,-12],[-12,-7],[-19,-10],[-12,-7],[-21,-12],[-24,-14],[-43,-2],[-27,3],[-18,7],[-13,4],[-12,6],[-24,14],[-1,16],[0,9],[0,2],[-9,32],[-1,0],[-14,-1],[-10,-1],[-21,2],[-8,1],[-23,-12],[-14,-7],[-18,-24],[-13,-6],[-25,-11],[-30,-40],[-32,-23],[-7,-29],[-21,-27],[-11,-12],[-7,-7],[-29,0],[-36,-50],[0,-1],[-44,-36],[-7,-8],[-14,-15],[-4,-5],[-13,2],[-10,2],[-13,-2],[-19,-1],[-17,-9],[-18,-9],[-36,5],[-43,-1],[-16,-1],[-25,-1],[-34,-7],[-21,-7],[-33,1],[-29,-3],[-13,-2],[-41,0],[-19,0],[-32,12],[-1,-6],[-7,-28],[-34,-33],[-10,-10],[2,-3],[12,-28],[-27,-27],[-4,-24],[-1,-9],[-7,-9],[-19,-22],[-21,-13],[-25,-14],[1,-34],[0,-12],[-20,-31],[-1,-45],[-21,-41],[-33,-56],[-48,-52],[-23,-28],[-29,-50],[-9,-1],[-7,-1],[-11,-1],[-27,-22],[-30,-8],[-1,0],[-21,-29],[-44,-13],[-16,-5],[-59,-35],[-35,10],[-24,-2],[-17,-1],[-42,-3],[-51,4],[-45,2],[-16,1],[-17,1],[-27,3],[-5,1],[-25,3],[-22,4],[-41,6],[-40,8],[-33,8],[-12,4],[-15,6],[-20,2],[-4,0],[-9,-3],[-32,-10],[-21,-11],[-13,-6],[-26,-28],[-11,-9],[-37,-27],[-5,-4],[-36,-26],[-21,-14],[-14,-10],[-36,-24],[-47,-21],[-12,-5],[-32,-17],[-47,-20],[-36,-10],[-14,-4],[-10,-3],[-50,-9],[-18,-1],[-19,-2],[-40,-7],[-37,-4],[-46,6],[-29,-9],[-16,-17],[-17,-16],[-52,-19],[-15,-6],[-30,-5],[-23,-3],[-16,-2],[-27,1],[-29,3],[-40,7],[-24,7],[-16,5],[-9,3],[-17,5],[-35,-7],[-54,-9],[-73,-15],[-45,-8],[-17,-1],[-17,-1],[-50,-5],[-48,1],[-37,-4],[-14,-3],[-36,-8],[-16,-5],[-43,-14],[-48,-23],[-20,-5],[-27,-7],[-37,-5],[-45,-3],[-4,-1],[-70,0],[-29,-8],[12,-33],[0,-3],[-5,-44],[-12,-36],[-27,-51],[-8,-20],[-4,-10],[-6,-13],[-12,-26],[-26,-61],[-15,-20],[-6,-9],[-14,-27],[-19,-20],[-17,-17],[-23,-21],[-1,-1],[-20,-17],[-5,-11],[-2,-5],[-2,-4],[-4,-41],[0,-1],[-5,-2],[-4,-3],[-17,-10],[0,-1],[-1,-2],[-6,-42],[-46,-48],[-5,-2],[-14,-4],[-16,-5],[-5,-11],[-10,-25],[-4,-9],[-17,-14],[-2,-3],[-13,-11],[-9,-8],[-18,-16],[-29,-23],[-25,-17],[-10,-7],[-10,-8],[-6,-4],[-19,-17],[-35,-24],[-6,-4],[-61,-33],[-72,-26],[-45,-13],[-25,-5],[-7,-2],[-27,-6],[-36,-6],[-47,-5],[-28,-3],[-14,-2],[-41,-2],[-14,-1],[-19,-1],[-47,-5],[-14,-2],[-35,-2],[-27,-1],[-16,-1],[-12,-2],[-27,-8],[-27,-8],[-36,14],[-20,-1],[-18,-1],[-18,-2],[-20,-1],[-22,-1],[-27,0],[-11,0],[-16,0],[-12,0],[-17,1],[-15,1],[-12,2],[-11,1],[-15,2],[-50,9],[-44,8],[-9,4],[-18,6],[-30,-1],[-55,12],[-21,10],[-6,3],[-6,2],[-15,-45],[5,-20],[5,-18],[29,-21],[16,-32],[33,-5],[41,12],[36,6],[20,2],[50,11],[29,4],[13,-6],[15,-7],[14,5],[1,1],[9,3],[31,-4],[36,-12],[51,-12],[34,-8],[23,-10],[14,-1],[16,-1],[42,-3],[19,-3],[19,-3],[35,10],[37,-17],[26,1],[25,-2],[3,0],[5,0],[10,-8],[15,-10],[15,-15],[46,-16],[24,1],[35,1],[39,-42],[18,-24],[3,-5],[-10,-47],[-10,-54],[-3,0],[-7,-2],[-20,-3],[14,-11],[13,-10],[-7,-5],[-15,-12],[-10,-8],[7,-9],[7,-11],[8,0],[15,1],[6,0],[20,0],[-1,-42],[-29,-37],[-49,-19],[-19,-19],[-8,-9],[-29,-26],[-13,-10],[-19,-16],[-21,-48],[-8,-4],[-19,-10],[-14,-12],[-12,-2],[-18,-5],[-20,-34],[-32,-21],[-22,-45],[-27,-2],[-9,-1],[0,-10],[2,-32],[-26,-28],[-9,-6],[-26,-16],[-13,-7],[-28,-17],[-40,-29],[-32,4],[-12,2],[-20,23],[-3,4],[-6,3],[-23,8],[4,-11],[11,-27],[-26,-9],[-49,3],[-20,3],[-24,5],[7,-29],[-20,-18],[-10,-8],[-18,-14],[-7,-3],[-15,-4],[-18,-6],[17,-39],[1,-3],[3,-31],[0,-1],[1,-22],[2,-31],[1,-10],[1,-24],[-9,-37],[-1,-5],[-5,-22],[-36,-24],[4,-56],[0,-7],[0,-6],[0,-17],[-18,-26],[-11,-38],[-3,-14],[-5,-20],[-4,-13],[-4,-10],[-12,-28],[-31,-19],[-8,-4],[-9,-5],[-10,-6],[-72,-3],[25,-23],[40,-36],[-27,-28],[-26,15],[-7,1],[-33,1],[-4,0],[-4,-39],[-3,-19],[-41,-51],[-5,-6],[-2,-3],[-5,-12],[-13,-34],[-10,-23],[-14,-28],[-31,-22],[-19,-38],[0,-21],[1,-18],[0,-3],[0,-3],[-3,-22],[-4,-31],[-46,-7],[-40,6],[-33,-62],[-2,-4],[-30,-49],[-3,-4],[-26,-35],[-19,-49],[0,-1],[-4,-9],[-1,-2],[-2,-1],[-29,-24],[3,-8],[3,-9],[1,-3],[3,-8],[-3,-7],[-4,-8],[-11,-22],[0,-40],[-4,-6],[-6,-10],[-15,-22],[-12,-22],[0,-1],[-13,-24],[-26,-19],[-12,-52],[-13,-37],[-25,-19],[-17,-37],[-31,-41],[-15,-23],[-17,-20],[-9,-10],[-22,-26],[9,-45],[-33,-22],[-9,-33],[-2,-9],[-2,-7],[-8,-22]],[[83791,30739],[-8,-24],[-25,-32],[-11,-13],[-38,-37],[-18,-19],[-20,-20],[-18,-22],[-14,-21],[-5,-9],[-5,-13],[-1,-1],[-7,-20],[-29,-41],[-33,-43],[-16,-27],[-32,-11],[-1,0],[1,-13],[0,-7],[1,-13],[-2,-1],[-6,-8],[-10,-13],[-8,-10],[-23,-18],[-36,-12],[-16,-3],[-5,-1],[-1,0],[-11,-2],[-16,0],[-16,0],[-20,2],[-23,2],[-5,0],[0,12],[0,1],[1,140],[-16,-6],[-1,-15],[0,-10],[-8,-6],[-6,-4],[-19,22],[-8,6],[-21,15],[-4,3],[-15,20],[-26,36],[-13,18],[-2,36],[5,7],[9,13],[7,-2],[2,-1],[7,-3],[1,0],[26,-33],[1,44],[-3,23],[0,1],[-1,11],[-7,23],[-1,10],[-3,31],[2,28],[1,5],[1,16],[14,52],[9,67],[-18,8],[-33,-11],[-117,-151],[-135,-216],[-18,-29],[-6,-4],[-6,-3],[-12,-7],[-4,-3],[-4,-3],[-21,-23],[-20,-20],[-11,-12],[-18,-29],[-8,-41],[-1,0],[-5,-1],[-15,-1],[-8,0],[8,-40],[14,-35],[-1,-3],[-3,-3],[-10,-15],[-11,-17],[-21,-16],[-4,-3],[-4,-13],[0,-2],[-5,-16],[1,-24],[1,-5],[1,-10],[-12,-4],[-6,-2],[-6,-3],[-7,0],[-19,2],[-24,-1],[-15,13],[-6,5],[-3,3],[-9,8],[-1,-2],[-4,-19],[-5,-21],[-19,-29],[-26,-44],[-9,-22],[-7,-10],[-13,-20],[-3,-4],[-35,-39],[-44,-28],[-11,-11],[-11,-12],[-10,-4],[-13,-5],[-6,-3],[-9,-4],[-6,-15],[-3,-7],[-13,-34],[-22,-29],[-35,-44],[-3,-4],[-6,-8],[-21,-61],[-29,-18],[-12,-23],[-5,-11],[-38,-48],[-39,-34],[-18,-18],[-22,-23],[-14,-17],[-13,-17],[-15,-14],[-10,-9],[-7,-5],[-13,-11],[-17,-30],[-13,-24],[-6,-10],[-8,-11],[-15,-21],[-32,-30],[-26,-36],[-39,-38],[-20,-8],[-3,-2],[-2,-13],[-1,-13],[-20,-21],[-26,-14],[-23,-13],[-21,-36],[-24,-27],[-17,-21],[-9,-12],[-21,-24],[-5,-6],[-30,-20],[-36,-40],[-2,-3],[-35,-40],[-43,-39],[-10,-11],[-27,-30],[-31,-21],[-20,-22],[-4,-7],[-12,-20],[-37,3],[-17,-23],[-7,-9],[-31,-26],[-9,18],[-3,6],[-4,7],[-20,22],[-19,-40],[-2,-12],[-2,-20],[0,-1],[0,-1],[-1,2],[-3,4],[-23,26],[-2,-3],[-20,-25],[-29,-28],[-5,-6],[-5,-5],[-2,-3],[-14,-17],[-51,-28],[-17,6],[-17,7],[-39,18],[-50,18],[-15,5],[-32,9],[-2,4],[-1,1],[-1,3],[-4,5]],[[80993,28649],[1,46],[0,5],[-2,5],[-11,30],[-30,22],[-11,8],[-2,14],[-5,35],[-43,5],[-18,27],[0,5],[5,22],[-16,-3],[-16,-3],[-2,-1],[0,1],[0,1],[-12,33],[-22,10],[-29,5],[-33,26],[4,24],[-23,11],[-11,6],[-17,21],[-10,-1],[-11,-2],[-23,6],[-15,3],[-45,25],[-34,31],[-24,13],[-36,14],[-5,3],[-34,17],[4,4],[9,9],[12,12],[32,16],[-32,20],[-22,-2],[-20,-1],[-15,0],[-19,1],[-4,-1],[-4,-1],[-14,-4],[-18,-26],[-10,2],[-29,5],[-20,8],[-8,4],[-5,3],[-17,9],[-30,10],[-16,5],[-15,5],[-21,8],[-8,3],[-16,13],[-24,20],[-2,2],[-12,4],[-3,1],[-15,5],[-29,-2],[-14,5],[-11,4],[-19,6],[-12,3],[-2,5],[-7,14],[-5,11],[-2,4],[-8,11],[-17,23],[-31,30],[-2,2],[-6,1],[-33,9],[-21,1],[-11,1],[-4,4],[-13,13],[-7,-6],[-15,-14],[-14,-3],[-21,-4],[-41,11],[-21,-14],[-18,-12],[-12,3],[-21,6],[-16,2],[-18,3],[-18,10],[-18,9],[-14,12],[-21,18],[-4,11],[-12,42],[-28,2],[-37,4],[-29,1],[-18,12],[-18,11],[-88,58],[-4,11],[-5,15],[6,55],[3,26],[-5,-1],[-15,-4],[-27,-10],[-30,-32],[-19,-3],[-13,-2],[-26,-34],[-18,-24],[0,-2],[0,-4],[2,-50],[3,-20],[5,-43],[17,-32],[27,-42],[15,-25],[9,-16],[14,-31],[3,-13],[6,-29],[0,-32],[0,-13],[11,-27],[-26,-40],[-9,-15],[-25,-44],[-28,-21],[-4,0],[-2,0],[-25,-2],[1,2],[14,18],[24,32],[5,8],[21,57],[-31,8],[31,24],[-6,21],[-4,12],[-18,26],[-6,9],[-10,18],[-21,26],[-10,42],[-7,29],[-12,46],[-5,21],[-7,26],[-6,10],[-14,23],[-34,10],[-47,14],[-20,11],[-16,9],[-17,11],[-23,14],[-34,26],[-23,11],[-5,2],[-22,14],[-16,9],[-10,5],[-8,4],[-13,6],[-22,15],[-20,8],[-2,1],[-30,5],[-6,1],[-3,4],[-1,1],[-18,20],[-17,6],[-12,4],[-11,5],[-13,7],[-14,6],[-40,33],[-39,25],[-8,5],[-17,11],[-11,7],[-22,14],[-36,32],[-24,13],[-17,38],[-49,41],[-14,50],[-12,24],[-11,21],[-19,34],[-7,14],[-23,39],[-13,21],[-12,8],[-11,8],[-7,26],[-5,21],[-38,42],[-1,1],[-17,42],[-4,9],[-11,20],[-21,36],[-16,29],[-31,38],[-11,19],[-5,11],[-4,14],[-7,24],[-14,30],[-15,37],[-1,3],[-25,76],[-9,28],[-4,12],[-8,30],[-1,6],[-4,27],[-1,3],[-12,36],[-1,35],[-9,33],[12,27],[2,5],[-1,1],[-3,0],[-24,4],[-17,33],[-21,38],[-8,31],[-20,42],[-11,31],[2,22],[3,23],[-15,21],[-2,4],[-3,17],[-3,18],[-5,23],[-7,33],[35,12],[5,27],[1,5],[1,4],[28,1],[23,1],[27,-2],[3,0],[25,-3],[9,56],[1,0],[17,-1],[1,0],[6,-1],[8,0],[2,37],[0,3],[1,22],[0,3],[1,1],[23,31],[32,0],[1,0],[4,0],[24,14],[10,8],[24,19],[15,33],[1,9],[1,27],[19,31],[4,14],[4,14],[1,4],[1,3],[0,7],[1,11],[0,11],[1,15],[2,36],[0,14],[0,2],[0,1],[0,1],[-5,50],[0,6],[-6,34],[-3,36],[9,20],[13,28],[7,42],[3,20],[2,22],[16,29],[7,25],[6,21],[5,9],[1,1],[2,4],[19,32],[-8,6],[-7,7],[-10,10],[5,29],[3,14],[0,15],[1,42],[1,7],[1,12],[2,17],[0,8],[-5,38],[3,54],[-8,43],[13,33],[-3,12],[-8,27],[-6,37],[-14,24],[-6,10],[8,7],[14,13],[-3,20],[-3,23],[-7,18],[-1,2],[-3,9],[0,14],[1,13],[-8,45],[5,40],[8,22],[3,9],[36,25],[15,-24],[-1,-8],[-1,-18],[-5,-30],[0,-18],[10,0],[3,2],[13,12],[1,10],[1,8],[0,3],[0,13],[-3,17],[0,1],[-4,21],[0,1],[1,8],[2,8],[0,21],[1,21],[-6,64],[3,49],[-6,62],[3,37],[2,22],[7,48],[6,10],[17,27],[-11,36],[19,29],[-1,5],[-8,20],[-7,15],[0,1],[-12,48],[6,43],[20,-4],[20,-3],[3,24],[1,13],[0,23],[-1,36],[9,17],[16,30],[23,12]],[[78477,33502],[-6,25],[1,42],[22,34],[30,10],[27,-2],[34,-3],[14,11],[8,6],[16,17],[-7,3],[-15,5],[-19,37],[4,4],[17,16],[7,1],[12,0],[11,1],[28,12],[5,2],[5,3],[7,10],[11,18],[7,10],[1,16],[0,15],[1,3],[0,3],[2,16],[2,24],[13,40],[0,16],[1,32],[3,3],[20,14],[6,23],[6,24],[8,21],[0,1],[7,20],[11,37],[5,17],[24,15],[1,21],[1,26],[45,10],[-27,17],[10,25],[10,22],[9,18],[14,28],[21,15],[9,7],[24,4],[33,-2],[1,0],[0,-1],[10,-5],[13,-9],[23,32],[16,16],[19,19],[27,16],[6,39],[24,36],[21,52],[15,26],[11,12],[12,12],[34,14],[5,52],[-9,5],[-3,2],[-4,2],[-7,5],[-6,4],[18,35],[23,36],[22,10],[12,6],[29,19],[0,35],[13,3],[33,9],[28,16],[13,8],[14,9],[47,13],[-7,-60],[18,-39],[14,-24],[4,-1],[2,0],[19,-5],[17,22],[4,5],[31,32],[13,28],[18,26],[3,-4],[18,-30],[23,8],[14,5],[13,-38],[9,-18],[10,-19],[6,31],[3,20],[0,55],[2,-1],[3,-1],[28,-7],[17,-10],[4,-3],[25,5],[0,-9],[-1,-30],[6,-30],[0,-3],[1,-6],[-2,-28],[0,-2],[-2,-23],[0,-2],[37,-22],[22,4],[13,3],[24,3],[5,1],[1,0],[7,4],[24,11],[35,-3],[10,-1],[29,-25],[14,-6],[7,-2],[1,36],[0,1],[5,6],[8,10],[0,1],[1,1],[10,-6],[18,-12],[8,-6],[6,7],[5,6],[4,4],[0,-1],[9,-15],[3,-5],[3,-7],[26,-2],[12,4],[42,12],[29,-3],[36,-23],[3,-3],[22,2],[4,-1],[17,-5],[19,17],[15,-6],[8,-3],[14,31],[16,32],[2,3],[47,10],[2,1],[38,24],[-48,19],[18,15],[23,20],[0,36],[0,3],[4,20],[6,31],[14,6],[14,5],[8,7],[6,6],[10,8],[5,5],[8,1],[10,3],[25,5],[55,1],[6,-2],[18,-3],[34,-10],[46,-16],[25,-18],[25,-11],[23,-8],[1,0],[6,-2],[18,4],[6,2],[2,-7],[2,-4],[1,-3],[4,-12],[24,12],[6,3],[9,-3],[8,-2],[15,-5],[8,4],[5,3],[15,9],[25,2],[3,0],[19,1],[10,-5],[15,-7],[28,-13],[23,-18],[13,-13],[10,-11],[20,-48],[32,-22],[5,-3],[10,-4],[12,-3],[1,-1],[10,-3],[21,-12],[17,-11],[27,-5],[10,-4],[2,-1],[26,-8],[31,0],[25,25],[4,15],[5,16],[-7,10],[-10,12],[-15,20],[-3,10],[-4,17],[-15,52],[-1,3],[-2,10],[-5,22],[-4,35],[-1,14],[-3,11],[-2,9],[-4,16],[-7,33],[-1,5],[-6,42],[-8,16],[-7,14],[4,17],[3,10],[-11,17],[-11,17],[-5,20],[-6,26],[-10,14],[-7,11],[3,25],[19,-2],[11,-2],[32,1],[10,21],[9,20],[3,0],[37,-6],[-9,49],[2,48],[14,44],[29,27],[12,11],[20,17],[25,20],[23,15],[1,0],[9,6],[14,7],[13,7],[31,16],[23,17],[19,16],[21,13],[33,13],[20,25],[27,11],[26,15],[40,10],[3,1],[7,2],[10,2],[19,2],[10,2],[3,0],[18,3],[48,7],[57,9],[35,6],[41,7],[38,6],[40,3],[18,1],[16,1],[21,0],[12,0],[9,-1],[21,-3],[18,-2],[25,-3],[37,-7],[16,-3],[19,-4],[33,-8],[20,-7],[17,-5],[29,-9],[10,-2],[11,-4],[1,0],[37,-12],[42,-13],[29,-11],[28,-8],[10,-3],[15,-4],[-6,12],[-10,17],[-8,13],[-5,9],[-37,66],[-15,30],[-10,26],[-5,11],[-17,41],[-13,37],[-15,42],[-3,11],[-7,25],[-4,29],[-2,16],[3,56],[7,31],[13,38],[5,12],[8,24],[32,40],[7,10],[10,10],[22,24],[30,28],[16,26],[38,46],[32,51],[35,46],[24,10],[31,13],[13,33],[0,36],[-14,61],[-5,18],[-10,35],[-9,40],[-8,45],[0,2],[-5,53],[1,23],[0,8],[0,5],[0,24],[5,19],[3,9],[4,49],[-1,56],[3,28],[-5,29],[-1,8],[-4,41],[5,69],[5,64],[3,15],[5,31],[5,21],[2,8],[1,10],[3,38]],[[82603,37331],[9,20],[4,8],[2,9],[4,18],[10,39],[1,3],[8,31],[24,47],[8,20],[14,31],[2,25],[3,29],[6,26],[10,33],[9,39],[12,31],[5,55],[2,18],[6,22],[10,32],[2,20],[2,17],[3,26],[3,69],[-1,27],[0,12],[1,13],[0,1],[3,32],[0,1],[5,35],[1,14],[2,20],[4,13],[3,17],[4,13],[0,2],[6,32],[14,55],[11,36],[9,23],[6,17],[17,43],[15,36],[10,23],[8,19],[27,56],[1,1],[17,37],[2,6],[21,36],[19,33],[5,5],[17,22],[2,2],[6,8],[25,25],[38,37],[7,12],[9,14],[1,2],[14,22],[6,10],[34,36],[7,6],[1,2],[16,15],[21,21],[32,12],[30,24],[16,32],[27,30],[46,26],[39,18],[29,9],[8,2],[46,11],[46,6],[21,1],[7,0],[22,13],[35,6],[12,4],[2,1],[21,7],[38,1],[62,-2],[46,-4],[25,-2],[58,-10],[23,-8],[47,-13],[39,-10],[37,-21],[54,-29],[1,-1],[38,-27],[21,-31],[13,-31],[-1,-48],[-16,-4],[-27,-8],[-8,-36],[-9,-13],[-12,-18],[-18,-22],[-30,-32],[-10,-18],[-8,-15],[-15,-21],[-15,-23],[-7,-9],[4,0],[27,0],[11,5],[19,8],[16,10],[10,7],[8,4],[18,8],[38,28],[30,42],[2,2],[26,37],[27,36],[32,42],[16,22],[30,41],[30,38],[18,35],[18,35],[4,20],[3,10],[8,36],[8,35],[7,17],[4,9],[17,47],[15,34],[8,14],[0,1],[7,12],[22,30],[29,33],[28,17],[8,5],[27,13],[28,21],[28,25],[5,4],[9,8],[25,31],[17,22],[18,24],[37,54],[20,22],[4,4],[32,33],[21,21],[32,32],[30,37],[1,1],[2,2],[38,45],[42,45],[24,20],[20,12],[22,13],[39,27],[12,8],[39,11],[25,1],[25,2],[13,-2],[16,-4],[25,-2],[2,0],[14,-2],[29,-5],[31,-6],[38,-20],[26,0],[12,1],[43,37],[3,5],[11,14],[6,9],[10,13],[15,26],[11,40],[-2,43],[-4,53],[-1,4],[-1,5],[-9,45],[-9,38],[-2,33],[0,15],[-4,38],[1,14],[1,41],[0,3],[6,55],[4,46],[2,20],[2,29],[16,53],[6,17],[15,34],[22,53],[2,9],[0,1],[5,32],[4,15],[3,13],[7,35],[2,12],[3,17],[5,27],[4,16],[7,26],[18,51],[18,40],[12,39],[20,39],[1,1],[-21,35],[-11,24],[-11,29],[-7,18],[-5,16],[-9,30],[-6,39],[-5,29],[-5,49],[-4,34],[-5,42],[1,79],[3,35],[0,20],[0,45],[1,43],[8,31],[2,10],[5,40],[3,45],[3,28],[3,23],[10,58],[10,51],[2,13],[1,5],[7,34],[11,51],[5,48],[0,1],[1,2],[8,38],[0,1],[5,19],[4,19],[5,25],[5,29],[10,47],[5,58],[7,67],[-2,38],[-4,34],[-4,35],[-9,40],[-6,74],[2,42],[1,15]],[[85584,42600],[0,2],[0,2],[5,36],[11,49],[10,28],[13,41],[12,40],[10,40],[13,44],[15,41],[2,4],[0,1],[0,1],[12,36],[4,11],[7,21],[12,36],[12,48],[-4,24],[0,2],[-2,9],[-2,6],[-9,22],[-16,54],[-12,47],[-14,43],[-13,59],[-5,45],[-1,24],[-2,25],[-2,42],[-1,24],[-1,21],[-1,42],[0,14],[-1,14],[-1,24],[0,16],[-3,39],[0,6],[3,58],[-4,26],[-1,4],[-1,9],[-2,19],[-5,51],[3,49],[1,32],[2,48],[2,51],[3,31],[1,6],[8,41],[11,53],[9,33],[10,36],[2,5],[0,2],[1,3],[3,8],[2,4],[6,19],[3,10],[3,13],[10,28],[12,44],[16,45],[20,35],[2,5],[11,20],[19,28],[38,60],[29,44],[6,8],[2,3],[10,15],[18,20],[28,32],[18,43],[11,33],[3,17],[5,21],[12,21],[8,14],[9,40],[0,21],[1,17],[6,43],[5,29],[6,31],[19,49],[2,20],[1,12],[0,4],[1,14],[9,25],[6,12],[3,6],[20,40],[2,25],[2,14],[6,13],[2,4],[9,16],[6,17],[3,8],[4,21],[1,3],[0,4],[1,3],[-1,41],[2,46],[5,18],[6,24],[1,22],[1,23],[4,19],[6,25],[20,32],[20,11],[-3,29],[-5,32],[-1,5],[-15,12],[-27,21],[-23,18],[-22,18],[-6,5],[-3,2],[-25,24],[-9,10],[-26,28],[-11,15],[0,1],[-13,17],[-3,5],[-1,0],[-24,40],[-14,25],[-20,32],[-16,43],[-1,2],[-5,15],[-3,6],[-12,46],[-12,41],[-2,10],[-7,49],[-5,53],[-6,18],[-4,13],[-2,19],[-3,32],[7,37],[2,9],[28,47],[3,7],[5,9],[9,16],[17,19],[4,13],[7,24],[-12,37],[-8,47],[-1,2],[0,1],[-19,38],[-12,49],[-2,19],[-2,29],[-2,49],[-4,43],[12,49],[4,54],[2,3],[2,4],[12,20],[6,11],[-6,35],[-2,19],[-1,8],[-1,6],[0,37],[7,43],[1,2],[-1,34],[-18,35],[-20,37],[-25,42],[-2,4],[-12,72],[-2,12],[0,18],[0,13],[2,26],[1,15],[-1,9],[-7,40],[-7,7],[-20,17],[-9,30],[-19,19],[-21,15],[-4,5],[-3,3],[-22,28],[-9,10],[-32,33],[-28,42],[-4,14],[-3,10],[0,1],[-3,12],[-7,8],[-28,36],[-8,16],[-8,14],[-6,12],[-13,56],[1,9],[5,38]],[[85552,47846],[4,7],[9,20],[7,13],[33,56],[4,20],[7,35],[-8,12],[-17,23],[0,2],[0,1],[-3,17],[0,2],[-4,27],[18,25],[11,16],[11,53],[-6,3],[-5,3],[-12,8],[-4,3],[-5,3],[-29,-3],[-16,-2],[-36,-1],[-13,-1],[-31,8],[-9,9],[-4,3],[-15,16],[-20,7],[-9,4],[-11,-3],[-16,-6],[-15,-1],[-6,0],[-4,-1],[-4,2],[-25,9],[-21,13],[-29,-4],[-5,-1],[-19,0],[-18,0],[-6,3],[-5,2],[-17,9],[-20,10],[-11,5],[-27,12],[-11,4],[-14,5],[-8,4],[-13,7],[-23,14],[-29,16],[-6,4],[-1,-1],[-2,0],[-24,-3],[-20,25],[-1,3],[0,3],[-2,15],[0,1],[-1,11],[-17,6],[-14,4],[-17,7],[-2,1],[-6,2],[-12,16],[-5,7],[-6,13],[-13,32],[-9,4],[-11,5],[-23,5],[-5,-2],[-3,0],[-18,-4],[-26,3],[-22,3],[-8,2],[-8,1],[-24,5],[-25,4],[-2,0],[-8,6],[-13,12],[-32,12],[-13,11],[-4,3],[-10,9],[-8,6],[-17,40],[9,18],[6,12],[2,3],[2,4],[-2,1],[-3,1],[-19,11],[-23,11],[-9,14],[-12,17],[-14,24],[-5,8],[4,24],[1,5],[1,6],[-7,2],[-11,3],[-17,5],[-16,4],[-16,6],[-31,13],[-4,2],[-3,2],[-44,30],[-1,1],[-10,9],[-21,16],[-19,7],[-4,1],[-7,2],[-26,7],[-9,2],[-6,2],[-35,24],[-11,11],[-13,15],[-32,41],[-19,33],[-6,10],[-24,42],[-14,26],[-14,24],[-6,17],[-11,29],[-10,30],[-3,8],[-10,33],[-4,10],[-9,28],[-11,46],[-11,76],[-3,45],[0,2],[-2,15],[0,49],[-2,31],[0,37],[3,48],[0,2],[0,54],[-7,36],[-2,6],[-14,36],[-2,6],[-4,8],[-20,43],[-10,25],[-2,4],[-6,28],[-19,25],[-10,-40],[-1,-4],[0,-1],[-12,0],[-14,1],[-35,11],[-34,31],[-2,4],[-6,8],[-3,5],[-7,10],[-1,2],[-13,18],[-3,13],[-5,24],[-1,24],[0,10],[1,16],[1,18],[16,3],[21,4],[4,18],[1,5],[7,32],[38,14],[21,37],[35,7],[2,-1],[25,-10],[23,-14],[43,-12],[1,0],[30,-9],[-4,-16],[-4,-14],[29,0],[12,0],[31,8],[5,1],[16,-13],[6,-6],[21,-8],[14,40],[-1,2],[0,1],[-8,18],[-13,29],[-42,36],[-23,14],[-27,13],[-16,8],[-21,15],[-15,6],[-6,2],[-5,2],[-20,10],[-16,-1],[-24,0],[-34,-13],[-10,28],[1,5],[1,1],[1,4],[4,18],[-11,24],[-3,6],[-5,10],[2,4],[3,4],[29,38],[20,29],[8,11],[-4,14],[-5,21],[-10,39],[6,51],[30,23],[18,57],[7,18],[1,2],[6,14],[22,30],[22,41],[20,27],[18,20],[18,19],[30,35],[35,25],[61,10],[29,48],[3,5],[16,1],[8,-5],[14,-8],[19,-4],[38,9],[0,17],[-1,67],[0,3],[0,3],[18,3],[1,-6],[5,-25],[38,2],[23,5],[24,6],[-1,16],[-16,-4],[-11,7],[-15,9],[0,2],[-1,16],[36,6],[6,-6],[17,-17],[13,-25],[11,14],[3,3],[41,22],[51,19],[16,-9],[2,-1],[19,-11],[40,1],[2,14],[1,0],[7,44],[23,28],[12,15],[27,9],[15,5],[3,-1],[6,-3],[13,-5],[9,6],[19,14],[27,6],[32,-1],[43,-21],[26,-5],[17,-3],[1,0],[3,-9],[1,-3],[11,-26],[7,-9],[15,-20],[-16,3],[-14,3],[-6,2],[-12,2],[19,-20],[10,-11],[2,-14],[2,-9],[2,-12],[4,-21],[1,-16],[1,-17],[-14,-33],[-3,-8],[14,-27],[1,-2],[7,-15],[12,-15],[12,-13],[27,-39],[1,-1],[25,-26],[14,-16],[35,-9],[13,-3],[23,-2],[23,-3],[24,-34],[26,-36],[4,-6],[40,-32],[36,-23],[22,-3],[27,-12],[30,-11],[10,-3],[26,-7],[53,-11],[41,-1],[16,-4],[12,-4],[7,-2],[5,-1],[2,-2],[28,-24],[11,-11],[0,-1],[10,-11],[20,-10],[35,0],[32,1],[18,1],[8,-6],[2,-1],[28,-19],[17,-11],[18,-12],[34,-6],[21,-6],[15,-10],[2,-1],[20,-11],[24,-11],[20,-8],[4,-1],[4,-1],[24,-8],[38,-5],[55,-14],[42,-20],[1,0],[31,-3],[32,-6],[30,-10],[8,-9],[10,-15],[12,36],[27,33],[-15,8],[-33,15],[-11,24],[-5,13],[-3,7],[-6,11],[-19,40],[-4,9],[-10,34],[-6,18],[-12,40],[-36,38],[-18,24],[-14,19],[-41,13],[-1,0],[-20,-3],[-23,-3],[-29,7],[-30,6],[-29,12],[-27,7],[-40,-5],[-37,5],[-14,4],[-14,3],[-15,2],[-12,2],[-35,18],[-9,11],[-33,34],[-30,30],[1,1],[2,1],[23,19],[-15,25],[-5,24],[-2,8],[0,1],[2,6],[8,20],[10,27],[25,43],[-38,40],[31,28],[-16,18],[-12,14],[-10,7],[-16,12],[-23,21],[-2,11],[-3,18],[0,14],[1,19],[8,7],[9,9],[26,10],[8,56],[-3,5],[-12,23],[-14,12],[-16,-13],[-8,-6],[-3,-3],[-27,-15],[-26,-15],[-19,-11],[-1,-3],[-7,-18],[-5,-12],[-8,8],[-5,5],[2,14],[1,10],[-8,16],[-2,3],[7,19],[31,-17],[29,14],[64,36],[8,-5],[13,-8],[22,7],[35,5],[9,-2],[4,-1],[18,-4],[29,30],[6,35],[5,0],[3,0],[25,1],[-11,21],[-14,27],[-32,28],[-31,10],[-33,33],[-37,30],[3,29],[3,27],[13,7],[32,17],[-2,6],[-6,21],[-5,13],[-8,24],[-15,5],[-31,10],[-24,18],[-10,7],[0,10],[0,10],[0,15],[0,13],[-22,6],[-4,40],[25,41],[26,17],[5,20],[4,14],[-19,25],[-15,18],[-33,46],[-11,18],[-4,6],[1,28],[0,21],[52,23],[13,47],[-20,9],[-26,11],[-38,17],[-1,0],[-35,14],[-5,-1],[-41,-3],[-13,-34],[-19,-4],[-23,-5],[-14,26],[-8,16],[-15,34],[-19,40],[-30,34],[-5,5],[-12,11],[-11,12],[-12,23],[-3,6],[-5,11],[-6,13],[-1,2],[-2,5],[-6,35],[-17,23],[-9,2],[-37,5],[-26,9],[-1,0],[-6,-1],[-24,-2],[-25,9],[-15,6],[-15,17],[-8,9],[-20,30],[-4,26],[-2,13],[-34,32],[-16,40],[-2,9],[-3,23],[0,2],[-2,36],[4,41],[17,23],[-17,24],[-4,5],[-4,16],[-4,17],[-7,17],[-7,16],[-9,19],[-6,18],[-10,28],[-15,25],[-14,26],[-22,32],[-13,22],[-10,16],[-23,15],[-4,0],[-7,-1],[-10,-1],[-5,0],[-21,26],[-3,4],[-7,9],[-15,16],[-15,9]],[[84742,53121],[-16,32],[-4,9],[-18,27],[-17,30],[-11,7],[-10,7],[-2,1],[-3,2],[-22,17],[0,12],[-1,9],[0,9],[0,7],[20,27],[-25,33],[-2,2],[-27,14],[-24,13],[-7,7],[-13,12],[-24,31],[-15,34],[-3,8],[-5,20],[-8,44],[-29,37],[-12,24],[-12,26],[0,50],[1,10],[3,20],[1,4],[1,6],[6,6],[11,12],[-7,35],[-42,21],[-7,5],[-3,3],[-28,20],[17,56],[38,17],[1,-2],[24,-28],[21,-3],[4,-1],[5,-1],[32,-4],[29,-2],[19,-2],[36,-12],[16,-5],[48,-14],[10,0],[19,-1],[27,25],[18,18],[10,51],[2,24],[1,17],[-19,37],[18,2],[18,2],[22,33],[20,41],[-10,23],[-6,16],[-30,40],[-29,30],[-1,2],[-11,3],[-4,1],[-13,4],[-38,13],[-24,20],[-25,17],[-30,-16],[-1,3],[-21,44],[-27,38],[-11,8],[-16,10],[-6,4],[-3,1],[-24,13],[-31,4],[-22,5],[-18,4],[-45,13],[-2,1],[-8,6],[-20,14],[-17,13],[0,39],[-3,30],[-2,17],[-23,-3],[-4,3],[-26,27],[-28,27],[-20,24],[-26,27],[-9,2],[-25,7],[-6,2],[-15,5],[-21,3],[-9,2],[-7,3],[-21,9],[-19,29],[-11,18],[-6,15],[-9,27],[-6,5],[-24,20],[-7,10],[-3,4],[-4,6],[-1,3],[-3,20],[-1,11],[-5,9],[-11,23],[-2,4],[-2,-1],[-3,-1],[-38,-13],[-42,-3],[-1,1],[-1,0],[-36,18],[-7,23],[-7,23],[-8,46],[-1,6],[10,42],[-1,12],[-1,14],[-40,23],[-29,3],[-2,-1],[-21,-11],[-39,2],[-5,-37],[-9,-25],[-5,-16],[-44,-7],[-17,17],[-6,5],[-9,9],[-27,24],[-16,16],[-39,66],[-5,49],[15,38],[22,12],[25,15],[3,-1],[28,-9],[26,-2],[16,5],[9,3],[-1,9],[-2,21],[-1,13],[0,1],[-35,33],[-9,4],[-19,7],[-20,16],[-9,15],[-8,14],[-25,54],[-2,14],[-5,28],[-16,13],[-12,8],[-37,15],[-10,-3],[-16,-6],[-7,-2],[2,-7],[0,-2],[8,-33],[18,-24],[22,-30],[13,-24],[8,-15],[3,-43],[10,-52],[1,-33],[-33,-31],[-14,-1],[-17,-2],[-37,14],[-27,10],[-5,3],[-18,8],[-13,8],[-16,10],[-41,18],[-21,9],[-7,3],[-48,20],[-12,1],[-10,0],[-38,11],[-41,37],[-24,24],[-1,1],[-19,14],[-23,19],[-6,4],[-5,4],[-40,28],[-15,11],[-16,7],[-24,11],[-18,2],[-26,4],[-33,3],[-29,-10],[-4,-17],[-1,-2],[-1,-8],[5,-30],[-24,-33],[-51,-27],[-25,-5],[-19,-3],[-30,6],[-9,2],[-15,5],[-23,6],[-1,0],[-18,1],[-20,0],[-28,-42],[-32,-8],[-9,-2],[-39,-1],[-6,10],[-12,21],[-1,4],[-2,3],[-10,4],[-23,9],[-26,32],[-26,31],[-18,-27],[-1,0],[1,-1],[22,-37],[-20,-31],[-6,11],[-3,7],[-6,12],[-2,2],[-21,2],[-10,1],[-3,6],[-1,1],[-2,6],[-5,10],[-5,9],[-10,9],[-12,10],[-21,-5],[-25,-29],[-36,6],[-20,25],[-2,3],[-18,23],[-2,10],[-3,18],[-33,40],[-29,21],[-33,21],[-44,16],[-5,2],[-1,0],[-3,0],[-6,-2],[-15,-2],[-13,-3],[-36,0],[-26,4],[-34,5],[-12,4],[-17,4],[-11,2],[-4,0],[-9,2],[-14,2],[-49,28],[-24,23],[-17,17],[-11,11],[-14,5],[-14,6],[-33,16],[-9,4],[-14,11],[-3,2],[-9,7],[-8,9],[-19,20],[-18,16],[-6,6],[-19,13],[-25,16],[-26,19],[-22,16],[-10,8],[-16,11],[-44,20],[-28,8],[-28,3],[-25,9],[-6,2],[-34,22],[-38,29],[-36,26],[-10,1],[-24,2],[-23,3],[-12,8],[-12,8],[-25,20],[-1,0],[-39,19],[-8,4],[-8,4],[-14,8],[-4,2],[-31,20],[-15,13],[-22,21],[-20,26],[-10,10],[-8,7],[-6,6],[-8,16],[-9,18],[0,1],[-1,1],[-8,29],[-16,31],[0,1],[-18,32],[-23,21],[-14,13],[-26,17],[-19,-4],[-17,-3],[-4,-2],[-30,-9],[-38,-6],[-5,-1],[-23,-5],[-24,-8],[-17,-2],[-6,-1],[-27,-8],[-31,1],[-8,-7],[-19,-18],[-5,-38],[0,-16],[1,-15],[-37,-20],[-27,3],[-19,3],[-24,30],[-12,14],[-4,4],[-23,22],[-17,13],[-11,7],[-11,5],[-6,3],[-3,1],[-13,6],[-9,4],[-17,7],[-8,4],[-29,-12],[-10,-14],[-20,-27],[-8,-4],[-25,-11],[-45,-4],[-12,-1],[-18,1],[-21,2],[-18,6],[-13,5],[-9,4],[-14,6],[-24,9],[-55,49],[34,30],[7,7],[5,4],[-13,12],[-6,4],[-20,-1],[-13,0],[-31,-1],[-38,3],[-34,8],[-22,-1],[-3,0],[-4,0],[-23,5],[-12,2],[-30,11],[-41,10],[-8,2],[-54,23],[-16,27],[-22,23],[-1,2],[-1,0],[-21,14],[-23,7],[-22,5],[-16,2],[-35,12],[-35,28],[-30,49],[-21,35],[-13,-5],[-15,-6],[-47,6],[-35,13],[-24,14],[-4,2],[-24,22],[-21,23],[-27,19],[-1,1],[-22,17],[-20,15],[-15,11],[-32,27],[-26,23],[-21,20],[-26,31],[-30,37],[-26,29],[-33,42],[-34,45],[-4,7],[-2,2],[-45,40],[-27,33],[-23,26],[-8,9],[-10,12],[-29,22],[-42,21],[-9,5],[-14,7],[-17,9],[-17,9],[-24,17],[-23,17],[-21,18],[-13,11],[-10,13],[-13,17],[-41,34],[-37,46],[-2,2],[-2,3],[-20,18],[-21,4],[-19,4],[-28,8],[-12,3],[-8,2],[-33,7],[-38,8],[-16,6],[-5,2],[-16,6],[-22,15],[-18,6],[-20,8],[-40,11],[-13,5],[-16,7],[-29,5],[-32,2],[-12,1],[-25,1],[-34,10],[-41,7],[-43,-2],[-51,-5],[-15,-2],[-18,-2],[-32,-2],[-44,19],[-36,10],[-11,-2],[-20,-3],[-15,-4],[-31,-8],[-23,-2],[-32,-5],[-47,-16],[-23,-7],[-22,-6],[-26,-5],[-45,-6],[-15,0],[-19,-1],[-28,4],[-16,2],[-48,21],[-49,27],[-17,7],[-16,6],[-28,2],[-4,1],[-33,4],[-24,-2],[-16,-2],[-35,4],[-53,10],[-44,14],[-36,2],[-8,0],[-3,0],[-1,0],[-3,0],[-8,0],[-1,0],[-1,-2],[-4,-38],[-23,-14],[-8,-4],[-3,-2],[-45,-15],[-29,-8],[-38,-18],[-22,-9],[-5,-2],[-47,-11],[-30,-5],[-17,-1],[-21,-1],[-14,0],[-35,-1],[-50,4],[-8,1],[-5,1],[-20,5],[-3,-1],[-4,-1],[-28,-10],[-29,24],[-1,1],[-4,2],[-37,12],[-9,3],[-35,14],[-34,16],[-20,8],[-37,17],[-7,5],[-29,18],[-35,19],[-31,19],[-6,5],[-42,31],[-43,39],[-14,14],[-16,16],[-7,6],[-16,17],[-15,22],[-27,42],[-11,19],[-3,4],[-6,12],[-6,11],[-11,20],[-10,23],[-6,14],[-14,36],[-12,41],[-4,11],[-2,10],[0,1],[-7,30],[-6,25],[-4,14],[-5,40],[-9,47],[0,1],[-2,9],[-12,67],[-1,13],[-2,30],[-3,37],[0,4],[-4,43],[1,22],[1,36],[8,42],[-5,25],[-1,3],[-1,7],[-8,28],[-6,23],[-5,6],[-18,21],[-9,19],[-3,5],[-16,28],[-20,16],[-27,49],[-10,14],[-19,24],[-36,30],[-24,19],[-33,25],[-18,17],[-9,7],[-28,24],[-21,17],[-17,14],[-33,4],[-4,19],[-2,14],[-9,50],[-47,22],[-46,16],[-22,15],[-14,17],[-10,13],[-9,31],[-1,2],[-28,23],[-30,30],[-26,39],[-29,17],[-13,22],[-11,17],[-10,14],[-12,17],[-15,20],[-10,16],[-10,18],[-11,10],[-18,16],[-37,45],[-35,41],[-40,36],[-6,3],[-29,13],[-21,27],[-19,18]],[[74903,59462],[-18,22],[-15,18],[-38,35],[-29,33],[-42,24],[-65,14],[-54,12],[-28,11],[-9,-1],[-16,-1],[-31,1],[-21,1],[-31,1],[-34,7],[-17,9],[-10,5],[-28,6],[-36,11],[-33,12],[-4,2],[-8,3],[-57,13],[-42,19],[-24,3],[-9,1],[-48,7],[-7,1],[-4,1],[-33,10],[-47,24],[-71,40],[-27,19],[-18,13],[-19,11],[-13,7],[-15,5],[-22,6],[-37,8],[-28,4],[-18,7],[-11,5],[-45,15],[-45,31],[-48,18],[-10,4],[-9,4],[-10,4],[-19,6],[-47,15],[-47,19],[-17,5],[-20,7],[-68,20],[-36,-2],[-20,-1],[-41,-13],[-16,-5],[-27,-7],[-49,-16],[-68,-21],[-52,-15],[-11,-4],[-2,0],[-71,-17],[-45,-5],[-30,5],[-1,0],[-2,1],[-3,-1],[-1,-1],[-53,-19],[-44,-8],[-51,24],[-2,1],[-32,11],[-16,8],[-17,7],[-30,9],[-14,4],[-28,10],[-12,4],[-5,3],[-21,10],[-43,19],[-31,16],[-17,10],[-9,5],[-13,6],[-19,10],[-30,21],[-3,2],[-5,3],[-36,20],[-43,5],[-8,1],[-33,2],[-22,0],[-6,0],[-31,-3],[-46,3],[-15,-48],[-5,-7],[-14,-17],[-17,-7],[-16,-7],[1,0],[9,-5],[36,-17],[35,11],[20,-26],[-8,-16],[-7,-15],[12,1],[39,1],[7,0],[19,-6],[6,-12],[0,-1],[6,-13],[2,-6],[1,-2],[2,-1],[2,-1],[13,-9],[16,-21],[9,-15],[9,-14],[-1,-2],[0,-2],[-5,-21],[-2,-8],[-27,-7],[-15,-3],[-30,-28],[-9,-8],[-15,-13],[-30,-19],[-40,-13],[-21,7],[-23,8],[-10,11],[-14,17],[-13,4],[-6,2],[-1,0],[-21,24],[-4,4],[-5,14],[-9,23],[-19,32],[-18,3],[-12,2],[-45,-10],[-20,-2],[-21,-3],[-16,-3],[-20,-3],[-18,-4],[-18,-4],[-19,-2],[-14,-1],[-17,2],[-15,2],[-18,19],[-13,13],[-1,10],[-1,20],[-23,2],[-13,1],[-20,-1],[-19,0],[-37,25],[-2,-15],[-2,-23],[-26,3],[-6,0],[-5,1],[-21,18],[2,11],[4,27],[-34,9],[-31,28],[-30,-13],[-24,24],[-6,2],[-22,11],[-3,6],[-7,13],[-9,18],[-15,13],[-19,16],[-29,28],[-7,17],[-10,22],[-52,7],[-16,9],[-25,14],[-38,8],[-12,5],[-8,4],[-10,6],[-8,3],[-33,28],[-27,26],[-9,9],[-17,18],[-2,3],[-6,6],[-19,20],[-4,5],[-33,16],[-32,9],[-34,1],[-23,12],[-39,16],[-12,5],[-28,43],[-29,19],[-10,7],[-7,5],[-18,12],[-19,11],[-9,6],[-23,17],[-36,24],[-11,19],[-3,5],[-11,24],[-17,54],[-11,55],[0,4],[-33,7],[-27,7],[-21,2],[-21,1],[-19,2],[-10,1],[-30,2],[-48,8],[-49,23],[-46,21],[-35,17],[-37,17],[-43,18],[-45,20],[-31,14],[-21,9],[-26,18],[-43,14],[-39,31],[-34,14],[-23,10],[-35,19],[-11,5],[-26,14],[-38,22],[-25,14],[-10,5],[-19,9],[-57,19],[-32,17],[-25,18],[-14,11],[-13,11],[-20,14],[-15,10],[-40,39],[-1,2],[-41,28],[-4,3],[-50,16],[-41,3],[-1,0],[-13,0],[-17,0],[-32,2],[-57,16],[-41,12],[-1,0],[-52,23],[-22,10],[-25,12],[-8,6],[-21,14],[-3,30],[0,4],[-2,23],[-12,16],[-24,29],[-25,7],[-17,5],[-24,9],[-13,4],[-32,4],[-33,4],[-17,12],[-16,10],[-27,14],[-10,6],[-37,13],[-30,9],[-34,15],[-35,17],[-17,5],[-23,7],[-11,-2],[-6,-1],[-12,-2],[-32,12],[-16,17],[-8,9],[-11,18],[-4,6],[3,34],[-9,19],[-6,11],[2,5],[12,31],[4,11],[-1,31],[18,12],[0,1],[4,2],[2,1],[4,3],[-19,30],[-7,10],[-30,51],[-16,12],[-13,9],[-42,-4],[-1,-1]],[[68543,61905],[-8,0],[-29,-2],[-38,-29],[-75,-27],[-31,-8],[-11,-3],[-37,-3],[-4,-1],[-65,28],[-48,22],[-9,4],[-11,5],[-13,5],[-27,4],[-47,18],[-5,1],[-34,9],[-25,-5],[-21,-7],[-30,-13],[-8,-4],[-26,-15],[-1,0],[-6,-4],[-23,-11],[-27,-15],[-7,-3],[-3,-2],[-7,-4],[-35,-24],[-14,-42],[1,-1],[34,-35],[21,-18],[5,-4],[-3,-20],[-5,-32],[8,-3],[4,-2],[17,-6],[27,-2],[18,-2],[28,-31],[3,-19],[1,-8],[-8,-49],[-5,-14],[-16,-40],[-30,-53],[-27,-38],[-12,-16],[-43,-29],[-36,-29],[-28,-16],[-9,-4],[-10,-4],[-40,-14],[-1,0],[-25,-3],[-5,-1],[-39,-10],[-21,0],[-15,-1],[-12,8],[-10,7],[-11,6],[-32,22],[-19,13],[-2,1],[-1,1],[-15,10],[-35,25],[-6,2],[-4,1],[-29,7],[-20,-11],[-17,-9],[-19,-27],[-7,-12],[-3,-1],[-33,-29],[-30,-19],[-30,-11],[-32,3],[-28,7],[-7,1],[-8,3],[-22,7],[-46,25],[-43,14],[-23,3],[-44,10],[-30,13],[-40,13],[-23,8],[-9,4],[-3,1],[-5,2],[-14,5],[-15,5],[-5,2],[-20,9],[-25,11],[-47,22],[-39,7],[-27,-9],[-9,-3],[-31,-22],[-18,-25],[-11,-17],[-27,-24],[-18,-10],[-9,-5],[-10,-6],[-20,-12],[-26,-8],[-16,-3],[-11,-2],[-29,-4],[-5,-1],[-2,0],[-30,5],[0,1],[-1,0],[-15,12],[-5,5],[-37,38],[-33,23],[-28,12],[-24,14],[-25,15],[-4,2],[-5,3],[-10,6],[-2,1],[-12,7],[-37,17],[-24,6],[-17,4],[-37,12],[-27,8],[-40,9],[-34,-8],[-26,-7],[-32,-3],[-28,3],[-29,1],[-44,-3],[-43,1],[-16,-2],[-19,-1],[-26,-5],[-12,-2],[-26,-1],[-10,-1],[-44,8],[-26,2],[-20,1],[-47,-1],[-35,1],[-9,0],[-35,-5],[-29,-8],[4,-7],[3,-8],[9,-21],[17,-23],[8,-27],[44,20],[39,20],[40,-28],[3,-5],[18,-22],[0,-25],[-1,-7],[15,-28],[20,-32],[31,1],[16,1],[38,-17],[21,-25],[15,-18],[43,-34],[8,-5],[12,-7],[20,-14],[53,-52],[3,-5],[4,-7],[12,-20],[8,-13],[15,-11],[14,-11],[27,-44],[3,-32],[3,-26],[-10,-43],[-8,-23],[-6,-19],[-4,-50],[-7,-42],[-27,-33],[-42,-12],[-32,-18],[-16,-33],[-5,-10],[-1,-2],[-25,-48],[-38,-35],[-9,-2],[-29,-10],[-2,0],[-22,-25],[-24,-27],[-3,-9],[-17,-43],[-13,-24],[-7,-14],[-36,-44],[-16,-10],[-11,-6],[-19,-14],[-20,-13],[-27,-12],[-25,-3],[-13,-2],[-37,5],[-19,16],[-18,-7],[-8,-2],[-6,-5],[-23,-15],[-11,-20],[-3,-6],[-9,-17],[-4,-35],[-5,-39],[-10,-34],[-3,-8],[-2,-4],[-3,-5],[-18,-34],[-26,-48],[-16,-40],[-21,-32],[-13,-13],[-15,-14],[-35,-29],[-12,-9],[-5,-4],[-24,-16],[-40,-29],[-24,-7],[-11,-4],[-4,-1],[-31,-13],[-40,-11],[-38,-12],[-41,-15],[-9,-2],[-26,-6],[-31,-18],[-3,-2],[-2,-2],[-19,-8],[-18,-7],[-1,0],[-1,0],[-22,0],[-24,0],[-28,-24],[-37,-22],[-2,-1],[-32,-18],[-32,-10],[-2,0],[-4,-1],[-13,-1],[-13,-1],[-34,0],[-39,-18],[-42,-38],[-2,-1],[-18,-11],[-17,-10],[-11,-22],[-6,-10],[-36,-41],[-11,-51],[-6,-30],[-13,-36],[-20,-45],[-24,-38],[-34,-43],[-40,-44],[-6,-7],[-20,-19],[-7,-7],[-26,-46],[-1,-1],[-7,-37],[-1,-7],[-12,-20],[-9,-16],[-29,-31],[-3,-3],[-45,-41],[-20,-21],[-16,-16],[-29,-28],[-6,-6],[-29,-31],[-18,-18],[-17,-17],[-22,-28],[-2,-3],[-25,-36],[-14,-27],[-8,-16],[-9,-32],[-7,-22],[-12,-63],[-1,-8],[0,-20],[1,-26],[7,-20],[2,-7],[3,-9],[15,-48],[-2,-37],[0,-36],[0,-6],[-2,-39],[13,-47],[0,-1],[7,-44],[5,-42],[0,-19],[-1,-28],[3,-37],[8,-28],[12,-37],[6,-18],[12,-31],[3,-13],[4,-15],[2,-14],[2,-12],[5,-29],[1,-4],[11,-37],[4,-20],[5,-26],[7,-39],[6,-21],[6,-23],[17,-38],[12,-17],[14,-24],[21,-31],[13,-31],[5,-11],[16,-46],[17,-46],[8,-38],[11,-63],[6,-47],[3,-21],[3,-17],[12,-43],[4,-15],[12,-41],[26,-31],[38,-32],[40,-39],[51,-54],[33,-44],[10,-14],[9,-12],[23,-31],[6,-6],[26,-29],[26,-48],[18,-26],[5,-9],[10,-8],[20,-18],[42,-42],[36,-16],[30,-35],[39,-28],[29,-28],[25,-18],[2,-3],[14,-20],[16,-20],[12,-15],[16,-16],[18,-17],[32,-9],[37,-21],[26,-3],[34,-4],[32,-10],[9,-3],[40,-3],[38,-15],[14,-1],[1,0],[14,-1],[13,-1],[13,-1],[40,-10],[40,-26],[14,-10],[2,-1],[29,-20],[34,-15],[44,-4],[32,-26],[27,-19],[7,-5],[46,-26],[41,10],[-14,14],[-2,3],[-21,23],[1,18],[1,21],[1,8],[9,2],[26,6],[24,11],[14,1],[2,0],[23,0],[34,-3],[11,-1],[15,-5],[17,-5],[36,-14],[11,1],[21,1],[27,2],[36,-3],[13,0],[16,0],[25,0],[20,0],[19,0],[22,-1],[22,-8],[1,0],[12,-4],[12,-4],[1,0],[13,-4],[22,-6],[23,-6],[30,-6],[12,-3],[41,-2],[29,-7],[22,-3],[13,-2],[12,-2],[12,-3],[31,-9],[40,-1],[11,-2],[1,0],[32,-7],[19,-15],[18,-15],[36,-39],[13,-25],[15,-38],[5,-25],[2,-9],[7,-43],[4,-38],[0,-6],[0,-56],[-5,-38],[-13,-42],[-16,-41],[-14,-8],[-22,-13],[-21,-9],[-22,-4],[-14,-3],[-38,-28],[-4,-5],[-10,-10],[-4,-4],[-12,-12],[-31,-10],[-4,0],[-5,0],[-24,2],[-27,1],[-17,-9],[-13,-7],[-57,-29],[-11,-7],[-44,-28],[-30,-24],[-3,-2],[-2,0],[-1,0],[-23,-1],[-18,-17],[-14,-13],[-43,-14],[-19,-14],[-26,11],[-32,-4],[-29,-9],[-15,-6],[-41,-17],[-20,-8],[-29,-14],[-29,-9],[-29,-11],[-49,-34],[-23,-9],[-45,-7],[-10,0],[-28,-1],[-16,7],[-13,6],[-7,3],[-24,15],[-19,-2],[-16,-1],[-3,-2],[-4,-2],[-15,-8],[-18,-10],[-26,4],[6,14],[3,7],[-1,0],[-22,10],[-26,11],[-25,-10],[-19,-8],[-10,-3],[-14,-5],[-23,-8],[-6,-5],[-33,-24],[-46,-15],[-48,-20],[-39,-20],[-12,-14],[-12,-15],[-35,3],[-38,-6],[-47,2],[-54,21],[-19,5],[-13,3],[-6,2],[-27,7],[-6,1],[-8,1],[-29,2],[-4,0],[-4,-1],[-24,-1],[-38,3],[-15,1],[-13,1],[-70,8],[-33,-1],[-8,0],[-44,2],[-61,5],[-39,0],[-25,0],[-21,7],[-56,-6]],[[64160,55523],[-6,1],[-6,2],[-6,2],[-10,3],[-17,2],[-13,1],[-12,1],[-21,1],[-32,-2],[-45,5],[-18,4],[-23,6],[-38,6],[-9,1],[-23,3],[-30,4],[-31,24],[-41,18],[-32,5],[0,1],[-31,13],[-21,5],[-15,5],[-30,-2],[-14,-7],[-17,-9],[-29,-18],[-9,-5],[-45,-25],[-29,0],[-27,11],[-10,-9],[-20,-17],[-19,-8],[-7,-4],[-10,0],[-10,1],[-24,4],[-11,2],[-34,0],[-12,-15],[-6,-8],[-29,-9],[-19,-7],[-30,-22],[-34,-7],[-41,-22],[-21,-5],[-25,-5],[-16,-2],[-15,-2],[-15,1],[-17,0],[-36,-3],[-9,-2],[-19,-3],[-12,1],[-28,2],[-20,8],[-19,6],[-19,6],[-8,2],[-10,-3],[-22,-9],[-34,-18],[-11,-7],[-24,-20],[-19,-37],[-23,-20],[-19,-30],[-27,-34],[-33,-22],[-32,-32],[-30,-22],[-22,-17],[-21,-12],[-47,-32],[-49,-33],[-47,6],[-8,6],[-12,9],[-8,6],[-6,4],[-33,-12],[-33,-8],[-19,-2],[0,-8],[0,-22],[0,-20],[-3,-27],[-2,-21],[-6,-16],[-4,-14],[-19,-43],[-21,-33],[-11,-13],[-8,-10],[-14,-16],[-16,-19],[-31,-37],[-5,-1],[-2,0],[-27,-6],[-28,-22],[-27,-14],[-11,-6],[-41,-14],[-28,-1],[-8,0],[-5,0],[-21,-2],[-12,0],[-33,-8],[-2,0],[-8,-2],[-21,-4],[-19,-4],[-41,-3],[-40,14],[-19,29],[-1,3],[-1,4],[-8,24],[-23,33],[-17,5],[-7,2],[-17,-11],[-4,-2],[-4,-3],[-22,-27],[-14,-47],[-35,-31],[-3,-5],[-15,-26],[-11,-21],[-10,-21],[-15,-22],[-8,-12],[-32,-24],[-34,-17],[-23,-9],[-11,2],[-12,2],[-33,-3],[-13,-1],[-1,0],[-36,-12],[-26,-25],[-5,-5],[-18,-17],[-1,-1],[-22,-33],[-5,-43],[-12,-27],[-8,-19],[-30,-34],[-30,-25],[-8,-5],[-21,-13],[-34,-14],[-13,-3],[-24,-5],[-52,-5],[-20,-43],[-15,-21],[-5,-7],[-7,-11],[-1,0],[-9,-9],[-4,-2],[-23,-20],[-23,-2],[-30,-2],[-5,-8],[-23,-38],[-19,-18],[-19,-17],[-23,-41],[-18,-26],[11,-30],[-3,-11],[-6,-22],[-11,-33],[-1,-2],[-14,-16],[-5,-13],[-6,-20],[-19,-42],[-3,-8],[-17,-43],[-11,-47],[-17,-32],[-6,-10],[0,-28],[-11,-34],[-21,-46],[-20,-24],[-3,-4],[4,-58],[16,-54],[-14,-41],[-2,-50],[-3,-41],[-21,-38],[21,-52],[-8,-52],[6,-38],[0,-2]],[[60636,53131],[14,-25],[2,-20],[3,-38],[-2,-59],[3,-53],[-12,-44],[14,-37],[31,-27],[4,-41],[8,-22],[8,-20],[19,-23],[4,-23],[3,-19],[9,-59],[2,-41],[0,-16],[2,-32],[5,-24],[2,-10],[-1,-18],[-1,-11],[-9,-35],[7,-34],[-1,-23],[-1,-20],[2,-29],[0,-2],[0,-13],[0,-27],[-5,-16],[-6,-17],[-4,-17],[-4,-19],[-1,-16],[0,-18],[27,-18],[13,-21],[4,-13],[4,-11],[4,-20],[3,-14],[5,-26],[1,-8],[11,-38],[12,-41],[2,-20],[1,-5],[7,-48],[22,-48],[9,-20],[8,-15],[14,-31],[6,-11],[23,-35],[27,-59],[-2,-52],[-11,-41],[-1,-8],[-3,-21],[5,-42],[-5,-33],[-2,-16],[-4,-12],[-6,-21],[-5,-29],[-3,-14],[1,-39],[0,-20],[-1,-20],[-15,-81],[-11,-37],[-5,-16],[-5,-18],[-1,-30],[21,-26],[11,-21],[6,-10],[1,-35],[-5,-14],[-8,-26],[-35,-50],[-29,-43],[-19,-27],[-12,-18],[-15,-24],[-17,-53],[-11,-39],[-4,-13],[-3,-11],[-8,-21],[0,-16],[0,-20],[4,-23],[7,-36],[0,-51],[-10,-42],[-5,-18],[-1,-3],[-7,-24],[3,-47],[1,-17],[-1,-58],[-1,-31],[-1,-15],[0,-18],[5,-36],[17,-47],[4,-8],[17,-33],[14,-36],[8,-38],[0,-9],[0,-23],[-3,-19],[-4,-20],[-14,-28],[-5,-10],[-28,-50],[-28,-71],[-18,-38],[7,-26],[6,-20],[-4,-52],[10,-49],[2,-11],[4,-14],[-2,-18],[-1,-15],[-8,-54],[-2,-17],[-4,-24],[-14,-37],[-5,-14],[-1,-1],[-5,-13],[-12,-15],[-9,-11],[-16,-29],[-15,-34],[-3,-18],[-5,-24],[0,-44],[3,-7],[12,-35],[-2,-37],[-14,-35],[-21,-46],[-5,-10],[-13,-24],[-4,-8],[4,-14],[8,-26],[0,-1],[-9,-29],[-11,-28],[-5,-13],[-25,-53],[-19,-37],[0,-1],[-10,-27],[-26,-38],[-14,-34],[-3,-6],[-6,-16],[-16,-45],[-14,-30],[-4,-48],[-11,-20],[-12,-22],[-3,-7],[-10,-26],[-2,-2],[-2,-1],[-15,-12],[-7,-6],[-11,-10],[-19,-20],[9,-12],[7,-9],[-18,-15],[-12,-10],[-1,0],[-1,1],[-24,11],[-11,-9],[-1,0],[-25,-22],[-31,-35],[-11,-40],[0,-7],[1,-13],[1,-40],[-6,-51],[-5,-19],[-7,-23],[-28,-42],[-18,-29],[-11,-31],[-3,-8],[-8,-14],[-30,-48],[-17,-32],[-9,-19],[-5,-24],[-2,-14],[-1,-1],[-14,-4],[-6,-2],[-16,-5],[0,-2],[1,-17],[1,-27],[-11,-7],[-24,-16]],[[59988,47866],[-3,-3],[-5,-5],[-17,-15],[-33,-21],[-21,-44],[-26,-11],[-8,-3],[-1,-20],[0,-7],[0,-5],[-1,-13],[-12,-45],[-14,-43],[-22,-33],[-12,-21],[-7,-13],[-11,-15],[-10,-13],[-4,-7],[-3,-3],[-13,-22],[-12,-24],[-3,-5],[-12,-44],[-2,-43],[-2,-50],[0,-1],[-1,-2],[-12,-18],[-16,-25],[-35,-41],[-36,-39],[-51,-30],[-25,-17],[-16,-12],[-45,-22],[-20,-10],[-14,-9],[-48,-31],[-31,-21],[-5,-4],[-23,-6],[-25,-11],[-29,-17],[-8,-5],[-3,-4],[-36,-63],[-19,-21],[-29,-33],[1,-20],[0,-14],[0,-7],[-7,-33],[-10,-28],[-7,-14],[-6,-12],[1,-3],[5,-8],[20,-34],[22,-35],[1,-6],[5,-48],[-3,-50],[7,-22],[9,-29],[-5,-20],[-10,-42],[-27,-35],[-19,-15],[-19,-15],[-28,-28],[-35,-28],[-34,-36],[-41,-51],[-29,-57],[-30,-36],[-38,-9],[-42,-3],[-8,0],[-35,-3],[-42,3],[-42,4],[-33,5],[-49,8],[-13,3],[-27,7],[-32,12],[-13,4],[-14,5],[-60,25],[-27,14],[-13,7],[-47,30],[-21,19],[-8,7],[-4,4],[-18,24],[-2,55],[20,25],[7,10],[6,8],[7,18],[1,3],[4,13],[5,26],[3,12],[7,34],[17,30],[61,82],[8,21],[7,20],[22,41],[5,12],[11,30],[-16,47],[1,17],[2,37],[6,38],[3,18],[2,47],[3,6],[4,8],[12,24],[-8,24],[-1,5],[-1,3],[-2,8],[-7,59],[15,37],[5,13],[12,42],[15,29],[22,28],[21,26],[23,18],[14,11],[19,15],[8,33],[17,21],[10,11],[28,41],[4,7],[40,38],[52,22],[16,27],[5,9],[28,23],[34,12],[24,4],[15,3],[28,11],[23,28],[4,5],[13,17],[41,10],[35,14],[45,16],[8,26],[10,30],[25,33],[7,6],[21,16],[33,11],[-4,25],[-4,25],[7,53],[22,38],[8,52],[-24,49],[7,38],[8,24],[1,2],[5,16],[14,19],[13,17],[21,50],[0,1],[5,30],[4,23],[0,45],[17,41],[17,59],[8,39],[8,41],[-15,39],[-6,11],[-10,18],[-9,30],[-3,8],[6,17],[13,42],[3,5],[17,25],[1,5],[1,13],[3,23],[-14,50],[-13,40],[-3,49],[4,40],[13,35],[4,33],[0,1],[1,43],[13,42],[10,21],[6,12],[9,23],[3,9],[1,3],[0,3],[0,3],[0,1],[1,19],[2,17],[1,18],[3,42],[-3,48],[-1,8],[-20,45],[0,1],[3,20],[1,11],[11,16],[1,0],[4,6],[6,4],[21,15],[50,6],[19,-9],[17,-7],[31,-13],[33,-16],[39,-9],[23,6],[7,12],[1,2],[10,18],[-5,27],[-4,20],[-16,43],[-7,18],[-12,49],[-15,46],[-11,59],[0,36],[-18,42],[-9,27],[-6,43],[-3,6],[-6,12],[-14,27],[-42,8],[-43,-5],[-49,-6],[-39,-6],[-27,-6],[-29,-24],[-6,-14],[-1,0],[-5,-12],[-3,-9],[-5,-15],[-3,-10],[-35,-44],[-1,-1],[-36,-23],[-26,-11],[-9,-4],[-11,-4],[-18,-6],[-9,-3],[-18,-5],[-27,-9],[-21,-17],[-29,-16],[-35,-12],[-11,-4],[-15,-33],[1,-38],[-1,0],[-10,-29],[-6,-14],[-3,-7],[9,-24],[1,-3],[7,-32],[4,-40],[-15,-28],[-10,-29],[-4,-14],[-5,-22],[-10,-38],[-30,-37],[-2,-2],[-7,-8],[-12,-15],[-1,-1],[-1,-6],[-8,-42],[2,-34],[0,-3],[-1,-9],[0,-33],[3,-44],[-12,-18],[-5,-7],[-11,-15],[-4,-24],[-3,-19],[-7,-11],[-5,-9],[-12,-25],[-8,-34],[0,-2],[-1,-1],[-1,0],[-12,-11],[-27,-27],[-4,-22],[0,-4],[-1,-7],[-37,-67],[-57,-46],[-14,-16],[-15,-18],[-12,-19],[-9,-15],[-18,-30],[-5,-9],[-42,-44],[-30,-25],[-11,-11],[-3,-3],[-13,-13],[-14,-15],[-11,-20],[-21,-21],[6,-23],[6,-23],[22,-36],[0,-1],[18,-39],[29,5],[40,27],[5,9],[11,23],[31,48],[11,27],[6,18],[8,16],[6,13],[8,16],[41,8],[35,-6],[33,-2],[35,8],[28,-8],[13,-4],[40,-25],[12,-8],[3,-7],[14,-32],[6,-13],[-15,-20],[-5,-6],[-4,-6],[-3,-4],[-4,-6],[-27,-34],[0,-10],[1,-27],[7,-42],[2,-8],[-19,-32],[0,-2],[-5,-34],[-3,-53],[-11,-41],[-20,-27],[-20,-20],[-24,-24],[-27,-19],[-19,-13],[-58,-42],[-8,-4],[-22,-11],[-21,-42],[-10,-21],[-8,-13],[-19,-29],[-6,-29],[-7,-34],[-32,-68],[-5,-41],[-9,-31],[-29,-47],[-8,-12],[0,-6],[-1,0],[-1,-10],[-3,-19],[-12,-34],[-8,-23],[-32,-71],[-26,-42],[-25,-27],[-3,-2],[-4,-3],[-4,-4],[-8,-6],[-10,-8],[-8,-6],[-24,-22],[-12,-11],[-14,-17],[-11,-14],[0,-8],[2,-32],[-6,-22],[-5,-18],[-17,-49],[-4,-33],[-2,-42],[-5,-15],[-8,-21],[-6,-13],[-11,-20],[-17,-40],[-9,-23],[-11,-51],[-5,-14],[-8,-27],[-14,-45],[-8,-22],[-7,-22],[-10,-50],[-18,-40],[-5,-15],[-10,-29],[2,-20],[1,-5],[5,-51],[-8,-9],[-13,-14],[-4,-5],[-1,-2],[-32,-14],[-4,-1],[-13,-2],[-16,-3],[-10,-2],[-21,2],[-33,5],[-25,-7],[-25,-7],[-1,0],[-11,-2],[-17,-4],[-22,-2],[-8,0],[-28,4],[-17,8],[-10,5],[-44,19],[-42,1],[-34,8],[-29,15],[-13,9],[-3,1],[-18,13],[-22,16],[-27,22],[-2,5],[-1,1],[-20,33]],[[57587,46585],[5,20],[3,12],[4,7],[7,15],[21,35],[3,10],[5,25],[6,44],[7,32],[-2,9],[-2,6],[-2,10],[7,16],[1,1],[4,9],[24,29],[-4,15],[-6,26],[12,38],[-7,39],[-36,45],[-29,56],[-20,33],[-13,40],[-4,12],[-8,24],[-5,18],[-10,19],[-11,22],[-2,4],[-20,41],[-10,39],[-6,24],[-1,4],[-19,46],[-6,25],[-1,1],[-6,25],[4,43],[-1,37],[-4,25],[-5,38],[8,37],[-5,18],[-5,22],[-2,30],[-1,16],[13,42],[4,16],[6,21],[1,27],[0,11],[6,13],[10,21],[1,22],[1,14],[-1,42],[9,41],[-6,33],[-6,33],[11,41],[11,46],[5,29],[6,16],[8,19],[21,38],[18,31],[1,1],[10,16],[14,18],[6,7],[27,36],[19,62],[17,51],[12,27],[8,17],[16,30],[17,25],[-3,17],[-3,23],[9,23],[8,21],[4,13],[3,14],[3,12],[10,25],[8,16],[15,34],[18,28],[11,16],[29,10],[11,4],[19,5],[22,1],[12,1],[36,-4],[35,-4],[33,11],[9,1],[23,2],[3,0],[2,0],[36,6],[4,1],[-12,24],[-15,38],[-5,15],[-6,33],[-5,30],[-1,32],[-1,32],[-1,10],[11,41],[-4,48],[9,38],[3,17],[3,18],[2,19],[1,2],[2,17],[-6,36],[-9,33],[0,1],[1,22],[1,7],[0,14],[1,1],[2,3],[19,35],[0,8],[-1,30],[-11,44],[0,16],[0,24],[5,33],[4,41],[20,47],[12,48],[-1,50],[-1,14],[-2,23],[-2,20],[-2,18],[-23,13],[-17,17],[-8,-4],[-15,-8],[-22,-12],[-3,-10],[-6,-24],[-3,-12],[-2,-7],[-23,-33],[-8,-11],[-2,-3],[-3,-4],[-15,-19],[-12,-14],[-17,-21],[-31,-33],[-23,-26],[-6,-7],[-22,-21],[-38,-27],[-16,-14],[-15,-14],[-22,-44],[-13,-3],[-23,-7],[-23,-1],[-5,0],[-25,10],[-14,6],[-30,14],[-7,1],[-21,1],[-12,1],[-6,0],[-24,14],[-27,23],[-17,46],[18,12],[7,4],[0,19],[0,29],[14,10],[16,11],[18,38],[22,58],[9,37],[24,28],[2,2],[34,40],[6,41],[15,45],[33,28],[4,4],[3,2],[12,15],[12,15],[36,12],[13,3],[29,8],[46,43],[24,25],[1,1],[4,4],[6,10],[23,36],[22,3],[28,5],[26,29],[21,17],[4,4],[7,8],[18,20],[14,20],[8,13],[9,11],[3,4],[9,13],[5,32],[-2,40],[-6,35],[8,38],[13,46],[3,13],[3,48],[-1,40],[1,14],[1,13],[1,10],[7,7],[0,1],[14,14],[20,8],[9,4],[35,18],[0,20],[0,14],[-1,37],[0,4],[3,5],[2,4],[10,14],[4,5],[16,17],[42,12],[29,-2],[2,-2],[5,-4],[25,-18],[1,-41],[19,-35],[10,-34],[19,-36],[13,-23],[26,-17],[15,-10],[38,17],[15,54],[-1,12],[-1,18],[-11,26],[4,23],[3,20],[2,18],[-1,19],[0,25],[-1,44],[-34,37],[-1,0],[-6,36],[-35,49],[-23,-20],[-1,-1],[-2,-2],[-24,-2],[-7,-1],[-25,6],[-3,1],[-8,6],[-18,11],[-11,8],[0,4],[0,33],[-11,40],[-29,45],[-21,37],[-18,20],[-6,6],[-8,16],[-3,6],[-5,10],[-9,37],[-28,26],[-4,3],[-27,35],[-11,27],[-7,18],[-2,23],[0,15],[15,35],[22,33],[1,1],[-3,25],[-2,20],[-18,35],[-38,2],[-37,23],[-14,23],[-33,42],[-15,31],[-9,25],[-7,16],[-3,18],[-4,19],[-11,27],[-9,24],[-23,63],[1,18],[2,24],[20,33],[16,30],[10,20],[34,25],[4,7],[20,32],[32,39],[13,15],[0,48],[5,21],[6,27],[7,16],[4,8],[23,18],[29,15],[15,8],[18,7],[30,12],[19,5],[23,5],[33,4],[17,-3],[18,-4],[18,-18],[9,-8],[24,16],[3,3],[0,1],[11,13],[14,17],[49,-4],[26,-15],[21,-16],[14,-20],[17,-38],[24,-51],[15,-3],[11,-2],[21,-5],[-1,20],[-2,33],[-7,40],[-2,37],[-9,20],[-4,9],[-9,19],[-3,5],[-4,7],[7,25],[1,2],[2,7],[20,23],[11,8],[9,6],[22,18],[26,42],[12,9],[4,3],[26,18],[3,3],[49,27],[33,17],[16,9],[31,8],[33,14],[5,5],[6,5],[28,26],[17,20],[3,3],[21,56],[0,1],[8,52],[1,1],[0,1],[7,18],[6,14],[4,22],[3,12],[-9,33],[-21,31],[-19,50],[-29,30],[-33,24],[-17,27],[1,30],[-1,13],[0,22],[-3,12],[-5,22],[-27,28],[-9,1],[-36,5],[-12,1],[-19,2],[-22,-3],[-17,-1],[-2,-3],[-12,-24],[-10,-18],[-3,-5],[-32,-5],[-18,-35],[-16,-37],[-1,-1],[-25,-21],[-1,-1],[-13,-10],[-11,-9],[-1,-15],[-1,-17],[-1,-10],[-9,-26],[-5,-14],[-11,-13],[-21,-24],[-38,-29],[-55,-31],[-23,-21],[-19,-18],[-15,-14],[-18,-17],[-35,-23],[-20,-12],[-9,-4],[-27,-12],[-43,-16],[-16,-2],[-24,-5],[-22,-2],[-16,-1],[-48,0],[-47,3],[-22,8],[-6,3],[-1,1],[-1,0],[-11,10],[-25,22],[-4,6],[-18,32],[-18,20],[-11,13],[-32,10],[-3,1],[-8,-15],[-30,-50],[-36,-39],[-25,-32],[-24,-31],[-16,-31],[-13,-34],[-27,-38],[-4,-4],[-27,-27],[-32,-39],[-17,-20],[-8,-9],[-5,-5],[-13,-15],[-20,-23],[-7,-11],[-14,-24],[-21,-34],[-10,-16],[-33,-41],[-32,-39],[-13,-16],[-25,-48],[-11,-36],[-10,-37],[-18,-54],[-23,-40],[-24,-33],[-17,-39],[-4,-10],[-36,-59],[-36,-40],[-12,-13],[-10,-10],[-14,-31],[-12,-23],[-3,-6],[0,-9],[-3,-28],[-7,-42],[-4,-35],[1,-3],[9,-28],[-16,-54],[-21,-49],[-16,-61],[-17,-46],[-7,-9],[-11,-15],[-3,-4],[-15,-18],[-12,-17],[-4,-6],[-32,-29],[-41,-34],[-12,-38],[-9,-21],[-6,-13],[-19,-22],[-6,-9],[-14,-18],[-33,-37],[-42,-35],[-34,-28],[-9,-7],[-59,-38],[-52,-28],[-14,-7],[-18,-8],[-42,-19],[-17,-8],[-28,-9],[-30,-9],[-61,-30],[-44,-21],[-31,-13],[-15,-6],[-44,-41],[-30,-45],[-13,-27],[-12,-25],[-14,-24],[-4,-6],[-15,-26],[-11,-22],[-10,-19],[-8,-25],[-12,-38],[-23,-64],[-14,-36],[-5,-15],[-19,-36],[-23,-28],[0,-2],[-4,-11],[-8,-22],[-25,-28],[-12,-14],[-9,-11],[-30,-24],[-36,-29],[-12,-6],[-26,-12],[-19,-27],[-15,-20],[5,-59],[22,-63],[4,-41],[-8,-86],[-5,-59],[-11,-39],[-3,-37],[-3,-43],[-2,-20],[-16,-37],[-12,-27],[-15,-24],[-18,-30],[-19,-26],[-10,-13],[-15,-14],[-11,-9],[-13,-13],[-37,-41],[-30,-33],[-8,-14],[-11,-18],[-9,-16],[-8,-14],[-12,-17],[-12,-18],[-4,-5],[0,-1],[-13,-17],[-12,-17],[-4,-6],[-16,-17],[-21,-19],[-14,-13],[-20,-19],[-36,-23],[-26,-15],[-29,-14],[-8,-3],[-20,-7],[-9,-3],[-8,-4],[-11,-4],[-12,-4],[-16,-6],[-39,-14],[-9,-3],[-11,-4],[-28,-9],[-50,-13],[-15,-4],[-24,-5],[-39,-9],[-10,-1],[-22,-5],[-34,-5],[-34,-2],[-21,-2],[-4,0],[-26,-1],[-11,0],[-37,-2],[-58,2],[-6,0],[-23,2],[-7,1],[-5,0],[-27,4],[-10,1],[-16,4],[-27,7],[-13,5],[-15,6],[-2,1],[-12,7],[-18,11],[-29,23],[-13,16],[-15,20],[-15,22],[-10,15],[-35,51],[-4,6],[-11,19],[-5,11],[-5,12],[0,1],[-9,18],[-24,31],[-5,6],[-29,27],[-8,8],[-7,7],[-12,8],[-9,6],[-14,8],[-17,8],[-79,34],[-26,12],[-23,10],[-6,3],[-19,8],[-21,6],[-8,2],[-6,1],[-23,5],[-32,7],[-12,1],[-30,2],[-2,0],[-36,-2],[-32,-3],[-14,-4],[-22,-8],[-30,-19],[-27,-24],[-12,-22],[-5,-9],[-6,-29],[-9,-34],[-6,-25],[-4,-14],[-12,-40],[-21,-43],[-13,-18],[-11,-16],[-16,-24],[-2,-2],[-3,-5],[-14,-24],[-9,-15],[-24,-30],[-25,-28],[-19,-15],[-30,-24],[-31,-25],[-21,-23],[-2,-3],[-2,-2],[-14,-21],[-13,-20],[-32,-41],[-24,-58],[-8,-35],[-13,-55],[-4,-16],[-5,-23],[-12,-28],[-24,-40],[-2,-4],[-10,-17],[-5,-8],[-43,-51],[-41,-38],[-10,-7],[-12,-9],[-43,-22],[-24,-11],[-7,-3],[-8,-3],[-19,-7],[-27,-6],[-19,-5],[-11,-1],[-35,-5],[-24,1],[-10,0],[-11,0],[-20,1],[-43,9],[-28,8],[-19,5],[-9,3],[-19,6],[-12,5],[-12,5],[-23,9],[-14,6],[-35,17],[-47,27],[-46,39],[-26,30],[-15,14],[-8,7],[-31,27],[-14,13],[-29,13],[-20,-5],[-12,-3],[-22,-8],[-20,-8],[-50,-18],[-10,-2],[-18,-4],[-36,-11],[-9,-3],[-60,-39],[-23,-26],[-14,-16],[-7,-16],[-18,-38],[-3,-9],[-8,-24],[-14,-47],[-7,-28],[-1,-16],[-2,-19],[-5,-35],[-3,-41],[-1,-32],[0,-4],[0,-9],[-2,-38],[2,-34],[1,-38],[0,-11],[0,-28],[2,-25],[2,-28],[4,-54],[4,-33],[1,-10],[2,-11],[3,-33],[3,-26],[2,-21],[7,-55],[5,-45],[8,-52],[7,-43],[2,-31],[7,-51],[1,-12],[6,-57],[3,-41],[0,-20],[0,-1],[0,-14],[1,-17],[1,-8],[-1,-43],[0,-17],[-1,-20],[-2,-32],[0,-5],[12,-25],[-6,-45],[-15,-57],[-5,-9],[-18,-37],[-13,-35],[-12,-28],[-14,-27],[-16,-32],[-19,-40],[-17,-29],[-11,-26],[-8,-20],[1,-6],[6,-48],[21,-77],[1,-6],[9,-50],[8,-56]],[[52365,46634],[1,-10],[1,-17],[2,-28],[1,-19],[1,-21],[1,-27],[-2,-12],[-4,-26],[-15,-59],[-9,-33],[-15,-34],[-10,-24],[-5,-12],[-10,-17],[-15,-28],[-5,-11],[-10,-18],[-13,-19],[-9,-15],[-12,-21],[-7,-13],[-4,-6],[-17,-33],[-3,-6],[-8,-15],[-12,-22],[-30,-41],[-16,-16],[-30,-26],[-32,-23],[-26,-18],[-15,-11],[-12,-8],[-32,-17],[-53,-23],[-28,-8],[-5,-2],[-7,-2],[-18,-6],[-64,-12],[-37,-4],[-25,5],[-42,0],[-26,1],[-21,0],[-32,3],[-7,1],[-32,7],[-42,12],[-9,3],[-51,6],[-26,7],[-27,7],[-14,2],[-10,1],[-13,2],[-29,-16],[-33,-22],[-25,-28],[-1,0],[-28,-27],[-12,-10],[-6,-6],[-18,-12],[-19,-12],[-47,-26],[-34,-15],[-26,-9],[-27,-8],[-7,-3],[-29,-11],[-46,-13],[-51,-17],[-18,-5],[-21,-6],[-14,-4],[-25,-7],[-32,-9],[-17,-4],[-13,-4],[-11,-3],[-13,-4],[-55,-14],[-30,-9],[-18,-5],[-22,-6],[-32,-11],[-30,-9],[-22,-8],[-13,-4],[-16,-6],[-23,-8],[-37,-14],[-21,-9],[-14,-5],[-42,-15],[-30,-12],[-15,-6],[-9,-5],[-26,-14],[-36,-19],[-51,-49],[-11,-14],[-16,-22],[-19,-31],[-7,-11],[-9,-13],[-12,-17],[-3,-9],[-12,-36],[1,-26],[1,-16],[-10,-39],[-6,-46],[-4,-39],[-2,-59],[-3,-29],[-1,-15],[-2,-24],[-4,-42],[5,-64],[4,-17],[1,-4],[14,-56],[18,-53],[9,-29],[4,-13],[9,-25],[13,-38],[13,-34],[10,-24],[18,-44],[8,-18],[7,-18],[5,-17],[5,-23],[5,-20],[4,-13],[4,-15],[20,-14],[8,-6],[-4,-43],[31,-43],[17,-30],[9,-14],[9,-15],[7,-12],[2,-3],[1,-3],[5,-8],[12,-22],[5,-14],[1,-2],[17,-38],[14,-28],[14,-35],[13,-33],[8,-19],[8,-20],[22,-64],[14,-44],[4,-11],[8,-33],[16,-60],[2,-18],[5,-30],[4,-28],[5,-37],[3,-21],[0,-1],[5,-29],[2,-15],[3,-26],[1,-9],[5,-38],[1,-19],[0,-1],[1,-15],[1,-41],[-1,-18],[-3,-56],[-8,-58],[-4,-49],[-2,-31],[-12,-71],[-8,-25],[-1,-4],[-17,-54],[-14,-50],[-7,-17],[-5,-12],[-8,-23],[-9,-24],[-17,-58],[-4,-14],[-5,-18],[-6,-20],[-7,-24],[-12,-41],[-9,-45],[1,-37],[0,-12],[0,-4]],[[50439,42699],[-6,-21],[-2,-6],[-6,-39],[-9,-38],[-4,-17],[-5,-26],[-9,-36],[-10,-39],[-7,-28],[-6,-19],[-15,-35],[-14,-47],[1,-52],[-3,-8],[-6,-16],[-22,-45],[-4,-8],[-12,-25],[-8,-17],[21,-2],[14,19],[-1,7],[0,9],[0,9],[23,24],[7,6],[-2,11],[-3,18],[18,27],[19,-8],[-1,-4],[-1,-4],[-1,-11],[-4,-22],[-17,-18],[-21,-22],[9,-14],[29,4],[70,-1],[0,-3],[7,-45],[1,-9],[1,-7],[-9,-6],[-5,-3],[-35,6],[-6,2],[-12,-5],[-43,-16],[-47,14],[0,23],[-14,2],[-8,1],[-8,1],[-13,2],[0,-42],[-1,-45],[-5,-28],[-4,-32],[-6,-27],[-7,-31],[-8,-58],[-2,-51],[-3,-58],[1,-36],[1,-39],[3,-28],[0,-1],[2,-27],[8,-33],[7,-31],[5,-27],[8,-41],[2,-38],[5,-36],[3,-50],[3,-33],[1,-4],[0,-15],[1,-20],[-2,-55],[-1,-41],[-3,-28],[-1,-7],[-1,-44],[-3,-16],[-2,-11],[-2,-13],[-2,-19],[-4,-24],[-4,-27],[-7,-43],[-2,-11],[-7,-31],[-7,-36],[-10,-34],[-14,-52],[-15,-48],[-1,-1],[-4,-10],[-12,-27],[-3,-13],[-3,-11],[-5,-17],[-7,-22],[-9,-30],[-3,-15],[-4,-26],[-3,-30],[-8,-54],[-7,-43],[-4,-26],[0,-5],[-5,-34],[-10,-45],[-1,-2],[-12,-41],[-11,-28],[8,-2],[2,0],[41,-10],[38,151],[26,17],[2,2],[18,12],[55,-15],[17,-30],[1,-1],[31,-53],[48,-14],[32,35],[9,19],[7,13],[19,34],[11,14],[-3,25],[9,9],[20,23],[31,1],[6,-1],[9,-1],[67,-43],[2,-1],[70,-45],[94,-99],[12,-6],[31,-15],[41,2],[15,0],[18,-8],[27,-13],[15,-21],[-3,-5],[-9,-15],[-9,-13],[29,-24],[-27,-28],[-56,-26],[-28,-14],[-38,17],[6,2],[5,3],[23,11],[-19,10],[-33,-20],[-34,-20],[-19,12],[-28,18],[-48,31],[-33,21],[-65,-26],[-120,-47],[-197,42],[-18,10],[-55,28],[-2,18],[0,1],[-20,4],[-23,4],[-3,0],[-1,1],[-10,1],[-20,4],[16,-54],[-8,-42],[-15,-66],[-4,-14],[-5,-13],[-4,-9],[-2,-4],[-7,-14],[-7,-14],[-10,-20],[-12,-21],[-7,-13],[-4,-8],[-9,-19],[-18,-28],[-5,-7],[-33,-45],[-28,-34],[-23,-26],[-12,-14],[-23,-27],[-23,-37],[-23,-28],[-2,-3],[-8,-11],[-14,-24],[-27,-44],[-20,-25],[-21,-30],[-4,-8],[-18,-30],[-18,-30],[-24,-43],[-23,-39],[-16,-31],[-2,-4],[-22,-36],[-19,-38],[1,-26],[-22,-13],[-6,-13],[-9,-16],[-4,-11],[-5,-14],[-7,-12],[-10,-18],[-12,-25],[-6,-12],[-11,-22],[-10,-21],[-18,-41],[-11,-28],[-4,-12],[-11,-34],[-17,-45],[-11,-27],[-7,-16],[-20,-45],[-24,-44],[-15,-27],[-36,-44],[-49,-52],[-93,-59],[12,-9],[0,-18],[-1,0],[-9,-8],[-17,-14],[-9,-4],[-7,-3],[3,-17],[1,-6],[-1,-11],[-1,-3],[-1,-18],[-12,-41],[-2,-6],[-10,-30],[-12,-31],[-9,-23],[-4,-15],[-5,-17],[-11,-32],[-2,-9],[-5,-17],[-10,-23],[-5,-12],[-5,-12],[-17,-38],[-14,-40],[-7,-20],[-12,-31],[-12,-30],[-20,-46],[-14,-30],[-22,-43],[-19,-27],[-16,-24],[-30,-47],[-16,-23],[-23,-33],[-22,-25],[-17,-24],[-22,-29],[-23,-28],[-42,-48],[-30,-38],[-19,-27],[-15,-32],[0,-1],[-4,-7],[-1,-11],[0,-4],[-2,-14]],[[48587,37561],[-7,-10],[-17,-23],[-14,-33],[-14,-39],[-5,-18],[-4,-11],[-21,-46],[-15,-34],[-4,-10],[-13,-23],[-4,-9],[-4,-9],[-12,-28],[-19,-38],[-15,-23],[-9,-18],[-6,-11],[-11,-19],[-28,-50],[-26,-40],[-18,-33],[-12,-22],[-5,-10],[-28,-49],[-15,-24],[-21,-31],[-9,-13],[-7,-10],[-7,-11],[-10,-17],[-8,-13],[-12,-20],[-21,-23],[-5,-5],[-32,-51],[-31,-44],[-24,-29],[-16,-19],[-5,-6],[-14,-15],[-26,-26],[-29,-29],[-3,-4],[-2,-2],[-32,-34],[-35,-33],[-45,-43],[-45,-31],[-48,-35],[-6,-5],[-2,-2],[-22,-18],[-15,-11],[-8,-5],[-15,-11],[-15,-11],[-32,-20],[-23,-18],[-11,-8],[-9,-5],[-17,-10],[-6,-4],[-15,-10],[-22,-15],[-65,-45],[-11,-7],[-13,-8],[-26,-17],[-67,-43],[-18,-16],[-17,-12],[-21,-14],[-21,-19],[-50,-42],[-14,-11],[-18,-14],[-47,-48],[-27,-40],[-20,-28],[-15,-28],[-28,-52],[-10,-27],[-5,-15],[-9,-25],[3,-125],[7,-42],[7,-30],[17,-64],[14,-37],[13,-34],[6,-15],[1,-1],[3,-10],[1,-1],[21,-44],[1,-3],[30,-59],[15,-32],[19,-32],[23,-32],[5,-7],[21,-30],[4,-6],[8,-9],[39,-48],[9,-12],[6,-9],[22,-31],[34,-52],[32,-48],[12,-18],[5,-8],[14,-27],[2,-3],[25,-42],[19,-37],[9,-16],[9,-14],[18,-28],[20,-38],[21,-40],[8,-16],[14,-26],[4,-7],[8,-13],[10,-16],[3,-6],[12,-22],[6,-10],[5,-11],[19,-43],[20,-48],[11,-62],[9,-38],[6,-44],[1,-39],[-16,-38],[5,-17],[6,-24],[8,-9],[5,-5],[12,0],[34,1],[3,8],[5,11],[13,1],[17,1],[13,-6],[-15,-7],[-3,-1],[-12,-4],[5,-1],[18,-4],[1,-16],[1,-10],[14,0],[0,3],[0,20],[23,-8],[10,-3],[-3,-8],[-5,-17],[-2,-2],[-5,-4],[-8,-7],[5,-11],[14,-26],[63,17],[11,-8],[14,-11],[1,-19],[-34,-9],[33,-2],[10,-41],[-8,-22],[-5,-17],[7,-9],[1,-1],[11,-11],[21,19],[49,-24],[13,-2],[52,-7],[36,-9],[4,-3],[19,-15],[-8,-11],[-13,-16],[-3,-2],[-5,-4],[-40,-24],[-17,-13],[-33,-26],[-47,10],[-11,9],[-19,17],[-53,0],[-25,35],[1,43],[-12,0],[-21,1],[-19,19],[0,51],[-19,33],[-9,34],[0,18],[-4,4],[-9,11],[0,28],[0,7],[-5,3],[-17,11],[-7,4],[-24,-3],[-2,-24],[-1,-19],[23,-44],[12,-21],[14,-28],[27,-38],[10,-54],[9,-41],[0,-3],[0,-16],[1,-15],[0,-2],[5,-29],[3,-21],[0,-1],[3,-25],[14,-33],[12,-53],[8,-43],[2,-37],[5,-33],[2,-18],[0,-2],[1,-9],[2,-12],[1,-31],[1,-8],[3,-48],[0,-47],[-3,-33],[-1,-2],[-14,-31],[-10,-24],[7,0],[12,0],[5,0],[9,-1],[1,0],[10,-2],[-14,-42],[-1,0],[-5,-1],[-26,-4],[23,-30],[3,-4],[21,-32],[6,-33],[10,-33],[28,-100],[7,-36],[7,-27],[3,-13],[0,-1],[0,-1],[5,-34],[11,-46],[11,-30],[21,-55],[19,-55],[10,-48],[1,-24],[0,-10],[6,-24],[5,-17],[3,-10],[1,-14],[5,-37],[3,-26],[2,-17],[0,-12],[1,-19],[1,-13],[0,-16],[1,-30],[4,-31],[2,-19],[2,-36],[0,-6],[3,-48],[-1,-6],[-2,-20],[-1,-50],[-4,-37]],[[48069,32125],[-1,-17],[-1,-29],[-5,-60],[-1,-2],[-6,-52],[-13,-78],[-4,-22],[-2,-15],[-11,-58],[-13,-55],[-9,-34],[-10,-28],[-19,-44],[-9,-19],[-12,-20],[-14,-33],[1,-1],[-1,-3],[-1,-3],[0,-1],[0,-2],[-2,-4],[-1,0],[-2,-23],[-1,-15],[-5,-19],[0,-1],[-7,-23],[-8,-23],[-3,-8],[-11,-30],[-13,-31],[-9,-18],[-9,-18],[-4,-9],[-13,-29],[-17,-35],[-21,-41],[-25,-48],[-7,-15],[-7,-17],[-30,-47],[-31,-47],[-25,-38],[-19,-29],[-36,-49],[-33,-45],[-11,-13],[-15,-20],[-20,-26],[-28,-38],[-32,-43],[-28,-34],[-23,-26],[-17,-20],[-5,-7],[-12,-16],[-22,-26],[-24,-27],[-19,-21],[-17,-21],[-27,-30],[-30,-39],[-11,-12],[-6,-7],[-6,-7],[-15,-19],[-15,-16],[-11,-12],[-28,-33],[-25,-28],[-22,-29],[-17,-19],[-28,-37],[-19,-26],[-46,-64],[-30,-43],[-27,-40],[-35,-47],[-4,-4],[-8,-12],[-12,-17],[-17,-24],[-25,-49],[-5,-14],[-11,-26],[-25,-58],[-22,-60],[-18,-57],[-13,-50],[-2,-10],[-3,-11],[-4,-17],[-6,-45],[-4,-41],[-2,-36],[-1,-18],[-2,-47],[-2,-46],[0,-22],[1,-48],[1,-23],[0,-18],[3,-34],[1,-13],[2,-13],[6,-46],[4,-25],[4,-21],[3,-18],[0,-2],[3,-15],[6,-35],[3,-19],[3,-16],[7,-36],[10,-32],[6,-15],[9,-26],[13,-41],[6,-34],[3,-12],[5,-15],[7,-21],[14,-43],[12,-37],[11,-27],[15,-34],[17,-38],[5,-12],[15,-32],[14,-33],[19,-43],[18,-38],[15,-30],[17,-29],[10,-19],[11,-21],[10,-21],[7,-12],[10,-17],[11,-19],[5,-13],[10,-24],[20,-41],[17,-15],[2,-2],[12,-42],[21,-31],[32,-57],[25,-42],[5,-7],[34,-54],[20,-36],[7,-13],[3,-7],[5,-12],[8,-17],[22,-43],[23,-43],[20,-37],[10,-21],[4,-8],[15,-33],[6,-13],[0,-1],[11,-22],[14,-29],[6,-10],[16,-32],[13,-25],[18,-36],[2,-6],[1,-1],[14,-35],[10,-31],[22,-47],[19,-43],[18,-48],[10,-43],[11,-34],[6,-16],[5,-15],[13,-40],[14,-35],[13,-34],[19,-54],[12,-44],[1,-7],[4,-23],[3,-13],[5,-24],[10,-35],[5,-11],[7,-15]],[[47707,26874],[2,-29],[12,-25],[-1,-13],[0,-12],[12,-46],[2,-8],[3,-11],[8,-35],[4,-39],[3,-11],[11,-38],[8,-35],[6,-25],[5,-13],[10,-32],[9,-33],[0,-1],[4,-14],[5,-18],[4,-17],[13,-35],[10,-15],[11,-18],[-1,-21],[0,-23],[4,-23],[4,-19],[2,-12],[2,-13],[14,-48],[5,-15],[10,-32],[7,-19],[3,-9],[12,-40],[3,-13],[3,-13],[7,-24],[12,-33],[14,-48],[13,-39],[10,-29],[14,-47],[5,-16],[6,-25],[8,-25],[3,-9],[12,-31],[20,-43],[11,-26],[2,-6],[3,-8],[21,-48],[17,-45],[21,-40],[12,-30],[-4,-24],[-5,-31],[-2,-2],[1,-2],[0,-1],[0,-1],[1,-1],[3,-10],[2,-8],[0,-1],[-1,0],[-1,0],[2,-9],[2,-9],[15,-30],[5,-9],[6,-10],[1,-1],[12,-22],[18,-35],[30,-80],[24,-53],[17,-45],[7,-20],[31,-80],[10,-19],[18,-37],[-1,-2],[13,-22],[8,-16],[13,-24],[-2,1],[1,-5],[9,-41],[5,-11],[11,-27],[7,-27],[16,-38],[15,-37],[14,-24],[18,-41],[8,-16],[25,-63],[29,-60],[23,-49],[19,-33],[24,-48],[9,-16],[19,-35],[26,-50],[19,-37],[17,-31],[27,-45],[18,-33],[9,-18],[14,-28],[23,-36],[10,-21],[8,-17],[24,-40],[15,-32],[12,-24],[2,-5],[6,-12],[20,-45],[19,-35],[6,-13],[7,-13],[2,-4],[20,-40],[16,-31],[7,-12],[18,-39],[12,-29],[15,-28],[14,-24],[2,-4],[29,-49],[14,-29],[16,-32],[19,-31],[6,-11],[13,-24],[16,-31],[6,-18],[9,-29],[9,-36],[1,-2],[0,-1],[6,-21],[2,-7],[6,-21],[13,-25],[155,69],[33,37],[0,9],[-2,21],[-4,64],[0,9],[-1,10],[-31,14],[-2,1],[-7,3],[-13,6],[-12,6],[-27,12],[-12,5],[-12,5],[45,43],[34,-8],[8,-2],[21,-4],[128,-38],[128,-28],[102,-45],[37,-17],[37,9],[45,10],[15,10],[15,10],[8,5],[4,3],[17,11],[2,29],[15,5],[22,7],[17,6],[2,1],[20,8],[0,9],[0,13],[86,21],[4,33],[6,7],[6,8],[1,16],[0,10],[18,13],[29,21],[10,7],[2,2],[82,9],[9,14],[-6,9],[-2,3],[-5,7],[-17,23],[48,13],[13,5],[1,0],[4,-17],[-12,-26],[-1,-3],[13,-32],[32,36],[10,11],[14,15],[4,3],[8,5],[0,-15],[0,-15],[-47,-69],[30,-52],[18,43],[9,2],[21,7],[0,-57],[0,-1],[0,-2],[-11,-5],[-17,-9],[10,-26],[3,-8],[-11,-26],[-11,-26],[-45,-43],[-12,-1],[-20,-1],[-21,13],[-31,-35],[-8,-30],[-2,-8],[-3,1],[-2,1],[-10,4],[-9,-9],[-6,-5],[10,-19],[23,-41],[8,-16],[-8,-1],[-34,-8],[-8,-2],[-13,-3],[-16,-9],[-8,-6],[-44,-27],[-30,33],[-34,38],[-4,-62],[-2,-5],[-28,-56],[-9,-11],[-31,-35],[-28,-32],[-14,-16],[-98,-33],[-21,-2],[-21,-3],[-37,-3],[-11,-2],[-17,-1],[-66,-8],[-44,-5],[-15,-42],[-49,-5],[-83,66],[-19,52],[15,54],[0,3],[0,1],[-67,93],[-83,-43],[-33,-23],[-12,-9],[-9,-6],[-6,-4],[10,-27],[31,-20],[18,-20],[3,-4],[7,-8],[20,-37],[16,-27],[13,-21],[21,-33],[15,-28],[8,-17],[3,-7],[29,-53],[20,-34],[16,-30],[16,-35],[21,-44],[19,-40],[12,-24],[1,-3],[9,-17],[21,-47],[7,-16],[36,-64],[1,-1],[19,-32],[23,-48],[16,-41],[15,-35],[2,-3],[18,-38],[12,-22],[6,-7],[4,-5],[7,-8],[8,-32],[4,-14],[12,-26],[1,-1],[9,-18],[23,-42],[32,-78],[9,-22],[28,-61],[27,-59],[1,-4],[16,-38],[13,-32],[13,-33],[21,-44],[11,-26],[7,-17],[21,-53],[14,-37],[15,-31],[11,-24],[2,-5],[14,-32]],[[49985,21518],[3,-8],[10,-28],[17,-44],[5,-12],[21,-56],[6,-15],[9,-23],[10,-33],[15,-43],[16,-29],[8,-16],[6,-13],[17,-38],[3,-6],[6,-16],[9,-26],[12,-35],[9,-29],[14,-35],[14,-43],[16,-57],[5,-21],[6,-23],[6,-36],[5,-31],[1,-12],[1,-9],[3,-22],[4,-29],[2,-43],[-7,-37],[2,-33],[2,-3],[22,-45],[22,-31],[24,-42],[18,-56],[3,-8],[8,-23],[5,-17],[4,-16],[13,-44],[13,-45],[12,-47],[6,-23],[4,-13],[4,-17],[3,-11],[4,-15],[5,-19],[4,-15],[5,-15],[5,-14],[10,-38],[10,-38],[6,-34],[10,-45],[12,-78],[13,-49],[3,-27],[11,-53],[1,-10],[5,-31],[4,-12],[9,-32],[12,-63],[6,-42],[3,-19],[2,-18],[6,-50],[14,-102],[6,-50],[8,-58],[2,-11],[2,-24],[7,-49],[4,-35],[1,-2],[1,-11],[2,-30],[2,-26],[6,-41],[5,-33],[3,-32],[2,-24],[1,-21],[1,-8],[1,-8],[6,-40],[2,-21],[3,-23],[3,-28],[1,-12],[3,-33],[3,-34],[0,-1],[4,-44],[8,-66],[4,-44],[6,-69],[6,-87],[1,-10],[0,-39],[0,-41],[-5,-34],[13,-32],[1,-3],[-2,-17],[-4,-21],[7,-30],[3,-12],[3,-36],[1,-34],[1,-22],[-3,-52],[1,-17],[0,-34],[0,-1],[1,-41],[1,-16],[5,-38],[1,-10],[1,-1],[1,-14],[2,-14],[4,-21],[3,-20],[10,-40],[6,-59],[6,-57],[0,-19],[0,-1],[1,-26],[0,-23],[0,-8],[0,-33],[-2,-22],[-3,-31],[0,-43],[0,-8],[0,-31],[0,-20],[-1,-19],[1,-46],[-2,-30],[-1,-5],[-1,-10],[-1,-14],[-1,-21],[-1,-23],[0,-49],[0,-59],[2,-35],[2,-32],[1,-38],[1,-32],[0,-7],[2,-28],[0,-53],[0,-52],[0,-14],[0,-34],[-1,-15],[0,-1],[-2,-26],[3,-34],[1,-7],[0,-4],[3,-26],[2,-34],[1,-24],[-2,-34],[0,-19],[-2,-51],[-1,-26],[-1,-47],[-4,-44],[0,-4],[-1,-13],[-2,-18],[0,-4],[0,-1],[-1,-5],[3,-26],[1,-7],[0,-8],[1,-1],[13,-22],[13,-34],[6,-14]],[[50750,16211],[0,-11],[0,-1],[-1,-4],[0,-5],[0,-21],[2,-10],[0,-2],[4,-24],[0,-23],[0,-12],[0,-41],[-1,-19],[-1,-24],[-1,-5],[0,-42],[1,-2],[0,-3],[7,-29],[6,-34],[0,-20],[-1,-55],[1,-47],[0,-35],[0,-9],[0,-29],[0,-21],[0,-18],[1,-45],[3,-34],[1,-20],[1,-16],[0,-18],[0,-1],[0,-26],[0,-32],[0,-9],[-1,-20],[0,-16],[0,-57],[1,-36],[-5,-54],[0,-4],[-1,-31],[-5,-61],[-5,-52],[-4,-40],[-2,-23],[-3,-13],[-6,-23],[-5,-35],[-3,-20],[-12,-44],[-7,-29],[-4,-9],[-7,-19],[-14,-29],[6,-14],[6,-13],[-13,-37],[-7,-46],[-19,-76],[-8,-35],[-4,-13],[-10,-31],[-21,-45],[-5,-11],[-18,-32],[-21,-43],[-13,-26],[-7,-15],[-4,-9],[-9,-21],[-17,-50],[-15,-58],[-5,-35],[-4,-33],[1,-27],[1,-33],[5,-47],[4,-54],[1,-21],[1,-20],[-1,-25],[-1,-7],[1,-32],[3,-38],[1,-15],[1,-10],[4,-32],[5,-57],[12,-79],[3,-37],[-1,-27],[-1,-51],[-1,-26],[-1,-27],[-6,-34],[-9,-45],[-4,-18],[-6,-26],[-17,-64],[-21,-55],[-14,-35],[-20,-62],[-8,-35],[-9,-53],[-8,-50],[-9,-38],[-5,-53],[-2,-17],[-4,-23],[-11,-52],[-8,-43],[-7,-38],[-5,-38],[-8,-44],[0,-18],[-1,-15],[-6,-48],[-4,-36],[-2,-23],[-5,-40],[-7,-40],[-8,-35],[-8,-40],[-2,-36],[0,-23],[0,-1],[0,-22],[-1,-18],[-2,-26],[-7,-46],[-4,-56],[-7,-45],[-2,-19],[-2,-17],[-1,-11],[-1,-23],[-3,-50],[-11,-66],[-7,-31],[-4,-21],[-4,-16],[-7,-41],[-10,-46],[-3,-15],[-11,-40],[-8,-32],[-2,-12],[-6,-27],[-7,-23],[-6,-22],[-12,-57],[-9,-35],[-9,-33],[-7,-34],[-4,-17],[-24,-77],[-19,-58],[-21,-60],[-5,-13],[-15,-36],[-14,-42],[-18,-38],[-13,-35],[-14,-35],[-16,-30],[-16,-44],[-14,-40],[-5,-13]],[[49963,10941],[-8,-21],[-10,-23],[-4,-9],[-8,-24],[-13,-28],[-4,-10],[-15,-28],[-12,-23],[-8,-13],[-8,-15],[-2,-2],[-2,-4],[-17,-23],[-3,-8],[0,-1],[-10,-25],[0,-18],[0,-21],[0,-10],[0,-3],[-1,-17],[-3,-41],[-11,-49],[-8,-35],[-13,-37],[-13,-39],[-16,-29],[-15,-36],[-2,-11],[-1,-3],[-3,-20],[-4,-14],[-5,-18],[-11,-41],[-2,-7],[-1,-7],[-9,-47],[-14,-57],[-10,-29],[-4,-41],[-13,-44],[-16,-35],[-11,-33],[-3,-8],[-9,-19],[-17,-43],[-11,-27],[-9,-21],[-9,-20],[-1,-3],[-6,-15],[-21,-51],[-7,-14],[-10,-21],[-16,-37],[-21,-48],[-13,-33],[-22,-51],[-7,-17],[-16,-34],[-9,-20],[-5,-11],[-5,-16],[-6,-18],[-10,-24],[-12,-27],[-14,-37],[-2,-7],[-8,-23],[-19,-39],[-19,-45],[-22,-40],[-14,-35],[-13,-23],[-8,-16],[-29,-58],[-15,-36],[-7,-14],[-12,-26],[-19,-43],[-19,-35],[-8,-16],[-7,-14],[-12,-24],[-19,-34],[-12,-26],[-1,-2],[-6,-12],[-22,-51],[-22,-44],[-13,-29],[-12,-26],[-12,-25],[-19,-34],[-4,-8],[-12,-25],[-13,-24],[-15,-29],[-10,-18],[-11,-19],[-16,-29],[-8,-15],[-12,-20],[-2,-3],[-10,-17],[-7,-13],[-13,-21],[-19,-33]],[[48871,8276],[-13,-18],[-11,-16],[-21,-34],[-17,-31],[-10,-16],[-9,-15],[-18,-27],[-8,-13],[-13,-19],[-20,-30],[-7,-11],[-7,-12],[-16,-26],[-21,-30],[-22,-31],[-20,-32],[-18,-29],[-14,-21],[-4,-5],[-28,-41],[0,-1],[-21,-28],[-17,-22],[-4,-6],[-19,-24],[-17,-26],[-11,-16],[-15,-20],[-10,-12],[-34,-47],[-22,-33],[-26,-34],[-17,-23],[-9,-12],[-18,-23],[-4,-5],[-7,-8],[-11,-13],[-18,-26],[-9,-12],[-29,-39],[-24,-30],[-14,-21],[-17,-21],[-18,-20],[-2,-3],[-19,-23],[-11,-15],[-13,-18],[-20,-25],[-21,-25],[-15,-18],[-39,-45],[-40,-43],[-27,-34],[-23,-28],[-24,-35],[-7,-19],[-6,-15],[-29,-19],[-20,-24],[-17,-26],[-6,-8],[-11,-14],[-2,-1],[-17,-21],[-19,-23],[-20,-24],[-11,-13],[-7,-9],[-19,-25],[-5,-7],[-6,-7],[-10,-13],[-7,-8],[-40,-44],[-13,-16],[-16,-18],[-34,-41],[-10,-12],[-19,-23],[-20,-21],[-18,-18],[-26,-29],[-37,-42],[-6,-5],[-4,-4],[-26,-24],[-39,-31],[-19,-16],[-16,-13],[13,-26],[1,-2],[0,-1],[0,-1],[-1,-9],[-3,-31],[-3,-25],[-1,-6],[-4,-11],[-14,-43],[-3,-12],[-27,-56],[-18,-32],[-4,-7],[-8,-29],[-4,-13],[-3,-7],[-2,-4],[-12,-27],[-8,-16],[-9,-19],[-17,-43],[-3,-10],[-11,-34],[-25,-48],[-22,-43],[-8,-22],[-12,-26],[0,-1],[-16,-33],[-20,-36],[-21,-37],[-5,-13],[-10,-23],[-7,-22],[-2,-5],[-5,-7],[-9,-15],[-9,-17],[-5,-9],[-20,-41],[-1,-3],[-17,-28],[-16,-30],[-13,-24],[-6,-10],[-29,-48],[-13,-31],[-11,-17],[-8,-14],[-24,-43],[-21,-41],[-21,-39],[-14,-24],[-4,-8],[-20,-41],[-28,-48],[-27,-51],[-13,-27],[-19,-38],[-10,-35],[-12,-42],[-26,-14],[-2,-1],[-13,-28],[-18,-36],[-18,-28],[-25,-42],[-24,-50],[-21,-52],[-4,-17],[-7,-29],[-10,-28],[-7,-19],[-11,-25],[-7,-17],[-7,-17],[-9,-21],[-7,-18],[-10,-29],[-8,-23],[-1,-2],[-4,-12],[-11,-36],[-11,-40],[-15,-45],[-7,-18],[-2,-4],[-11,-29],[-5,-22],[-8,-33],[-18,-44],[-15,-41],[-12,-36],[-2,-3],[-6,-18],[-17,-49],[-20,-48],[-17,-41],[-20,-55],[-17,-39],[-6,-12],[-3,-8],[-11,-26],[-13,-24],[0,-2],[-5,-9],[-7,-13],[-18,-32],[-24,-49],[-18,-41],[-6,-10],[-17,-32],[-14,-26],[-9,-17],[-20,-35],[-24,-39],[-25,-37],[-22,-37],[-35,-48],[-45,-68],[-35,-45],[-19,-28],[-19,-30],[-6,-7],[-17,-21],[-7,-8],[-4,-5],[-20,-25],[-33,-43],[-26,-27],[-20,-24],[-23,-22],[-29,-28],[-22,-26],[-33,-33],[-33,-34],[-22,-24],[-32,-32],[-29,-26],[-18,-16],[-32,-36],[-41,-37],[-44,-38],[-13,-11],[-35,-36],[-21,-18],[-18,-15],[-20,-18],[-5,-4],[-23,-17],[-23,-20],[-27,-28],[-20,-22],[-26,-27],[-29,-40],[-22,-37],[-20,-33],[-20,-21],[-10,-9],[-16,-16],[-36,-34],[-37,-28],[-6,-4],[-28,-21],[-43,-31],[-19,-9],[-12,-6],[-6,-3],[-2,-2],[-15,-9],[-43,-33],[-10,-10],[-22,-19],[-11,-10],[-23,-21],[-10,-12],[-20,-22],[-48,-47],[-27,-20],[-29,-22],[-12,-9],[-27,-19],[-29,-21],[-26,-19],[-14,-10],[-31,-21],[-47,-30],[-20,-13],[-28,-19],[-18,-12],[-12,-7],[-9,-5],[-12,-7],[-18,-11],[-9,-6],[-10,-6],[-17,-10],[-2,-3],[-2,-3],[-18,-25],[-26,-24],[-6,-6],[-6,-4],[-26,-19],[-27,-19],[-10,-7],[-16,-14],[-11,-5],[-1,-1],[-8,-4],[-35,-26],[-22,-18],[-10,-9],[-42,-26],[-37,-23],[-41,-22],[-21,-6],[-25,-7],[-32,-23],[-29,-21],[-46,-28],[-23,-15],[-8,-14],[-9,-18],[-18,-13],[-26,-18],[-14,-9],[-9,-5],[-31,-21],[-21,-14],[-40,-25],[-6,-4],[-29,-18],[-27,-19],[-22,-16],[-9,-6],[-15,-8],[-30,-20],[-56,-33],[-15,-9]],[[43323,971],[-4611,6],[1462,7698],[203,1053],[614,2354],[-594,4914],[-617,5205],[-57,509],[-150,880],[-97,757],[-108,1176],[-29,916],[23,985],[61,943],[115,931],[167,1179],[161,931],[288,1373],[74,365],[290,1284],[105,427],[74,301],[97,396],[353,1291],[474,1885],[7,34],[257,891],[310,1098],[327,1050],[342,1126],[420,1208],[437,1161],[407,995],[377,871],[286,594],[286,526],[425,705],[373,518],[465,581],[420,483],[374,422],[436,449],[530,469],[569,428],[1586,1186],[-2981,1538],[-3178,1642],[-430,-4],[-705,-7],[-2912,-20],[-1006,-1506],[-1541,-1503],[-1156,-583],[-408,-1918],[-920,151],[-671,118],[-258,10]],[[34089,51443],[-27,27],[-15,14],[-36,29],[-20,18],[-10,8],[-28,38],[-33,48],[-14,30],[-5,10],[-22,20],[-6,5],[-21,33],[-5,17],[-6,19],[-2,38],[0,1],[-1,61],[40,33],[-3,14],[-5,21],[-3,22],[-3,23],[11,26],[3,6],[1,5],[7,23],[24,24],[1,1],[17,5],[17,4],[1,-1],[6,-3],[8,-5],[1,-1],[20,-12],[35,48],[-23,42],[-5,11],[-11,26],[-7,37],[-3,12],[12,42],[26,28],[17,6],[22,7],[25,34],[29,11],[26,16],[16,30],[-20,27],[6,47],[24,37],[31,32],[32,25],[39,18],[49,12],[33,40],[19,31],[27,61],[32,33],[32,27],[5,4],[42,34],[33,12],[20,18],[12,12],[21,12],[12,8],[5,3],[7,3],[32,18],[27,8],[10,3],[1,0],[19,6],[39,52],[7,24],[4,16],[9,40],[28,41],[25,23],[43,40],[49,41],[30,18],[25,37],[13,17],[12,16],[22,18],[7,5],[26,4],[12,31],[2,30],[1,23],[18,24],[20,27],[19,23],[14,17],[27,30],[20,37],[4,6],[25,31],[61,58],[14,17],[18,24],[15,23],[37,51],[49,59],[33,32],[28,33],[31,38],[25,7],[20,23],[7,11],[10,19],[19,27],[2,2],[8,32],[4,12],[8,26],[9,13],[0,1],[16,21],[23,32],[33,35],[29,19],[16,14],[13,11],[40,45],[15,22],[24,17],[25,22],[40,46],[25,17],[31,21],[22,7],[3,16],[4,20],[-6,60],[-7,55],[9,42],[10,17],[10,18],[11,24],[0,1],[5,10],[4,9],[12,29],[12,45],[7,12],[2,4],[7,13],[8,9],[19,20],[17,6],[8,3],[22,38],[10,14],[15,21],[27,15],[23,20],[24,19],[23,11],[5,2],[26,0],[28,18],[1,11],[4,28],[-8,28],[-5,17],[-5,38],[9,51],[35,42],[21,26],[47,24],[2,1],[3,2],[1,0],[0,-1],[21,-3],[10,-2],[29,21],[7,28],[14,53],[-1,18],[0,23],[-3,33],[-3,35],[0,39],[0,16],[27,43],[22,22],[4,3],[8,8],[11,7],[32,21],[17,14],[13,11],[15,12],[15,12],[13,10],[1,0],[8,6],[12,9],[3,2],[37,20],[33,48],[13,31],[18,31],[28,18],[38,21],[21,45],[4,18],[6,26],[10,41],[4,13],[5,30],[0,3],[7,37],[34,40],[34,17],[23,3],[-3,30],[-1,11],[0,4],[5,-1],[9,-2],[1,0],[5,-1],[8,-1],[13,-2],[29,11],[27,21],[46,24],[25,13],[15,9],[8,14],[1,2],[10,21],[5,8],[16,21],[14,19],[17,18],[0,1],[12,13],[23,42],[9,67],[-23,22],[-4,5],[-12,10],[-7,10],[-17,20],[0,1],[-8,20],[-3,8],[-11,47],[-2,46],[10,39],[8,40],[27,43],[33,32],[25,7],[22,41],[21,60],[10,37],[4,8],[15,30],[43,38],[38,21],[23,13],[13,8],[24,27],[21,64],[-2,53],[5,14],[9,25],[26,35],[44,59],[14,23],[13,20],[12,20],[18,32],[15,28],[14,28],[11,8],[16,13],[11,21],[8,13],[13,65],[9,37],[2,7],[6,13],[24,54],[21,31],[0,1],[8,11],[4,5],[9,13],[19,26],[7,10],[19,38],[2,12],[6,27],[3,17],[3,12],[8,29],[20,42],[39,56],[6,8],[17,21],[23,29],[9,28],[2,54],[6,45],[2,34]],[[38019,58310],[12,24],[11,20],[20,28],[2,3],[8,35],[46,73],[13,14],[11,12],[21,48],[35,31],[18,12],[1,0],[2,1],[48,33],[8,7],[38,34],[27,64],[20,74],[22,69],[33,43],[43,38],[24,27],[19,35],[6,10],[1,1],[5,9],[13,30],[9,29],[16,20],[31,32],[3,5],[17,27],[13,35],[25,48],[13,23],[1,1],[31,30],[27,49],[10,22],[10,20],[23,21],[33,33],[12,29],[10,25],[20,35],[4,45],[2,37],[31,31],[36,17],[10,4],[1,1],[13,6],[6,4],[16,12],[22,42],[26,21],[36,5],[37,-3],[3,0],[21,-2],[-4,12],[-10,31],[0,18],[-1,18],[10,44],[8,29],[10,18],[11,22],[8,9],[9,11],[15,11],[23,18],[17,10],[7,4],[50,24],[32,14],[38,17],[40,13],[31,27],[4,3],[24,20],[26,21],[21,-7],[6,-2],[11,-3],[4,1],[17,4],[13,15],[15,18],[1,1],[13,11],[22,18],[46,39],[18,10],[32,19],[29,12],[12,4],[29,11],[16,5],[97,24],[14,1],[14,1],[12,0],[56,0],[14,2],[21,3],[16,9],[1,1],[6,3],[7,33],[4,22],[1,2],[0,4],[0,26],[-1,26],[0,4],[-3,41],[19,28],[4,6],[30,19],[21,18],[10,9],[1,0],[-17,0],[-19,0],[-29,10],[15,36],[9,21],[14,-20],[7,-9],[20,1],[15,0],[21,11],[1,2],[6,5],[6,7],[11,11],[5,7],[12,17],[4,6],[1,0],[2,3],[11,19],[15,25],[0,1],[4,0],[0,1],[4,1],[27,7],[10,5],[10,6],[12,6],[31,17],[25,14],[10,9],[14,11],[11,9],[11,25],[1,2],[1,2],[24,31],[17,37],[3,5],[29,23],[7,6],[16,29],[-1,24],[-1,9],[8,19],[11,26],[3,4],[2,3],[25,28],[17,8],[4,1],[10,4],[34,27],[40,-14],[14,11],[2,2],[4,2],[30,14],[43,25],[10,6],[31,7],[-13,18],[-5,7],[-9,2],[-46,7],[-21,13],[-10,5],[-41,9],[-43,18],[-41,10],[-11,12],[-13,13],[-10,10],[-9,10],[-17,19],[-1,0],[-12,18],[-9,13],[-9,58],[0,42],[4,26],[0,11],[-1,20],[1,2],[0,3],[9,27],[-2,44],[0,9],[18,18],[1,1],[6,7],[6,0],[5,1],[15,1],[8,1],[19,33],[-9,24],[-7,18],[-26,21],[-23,32],[-19,28],[3,1],[29,12],[2,3],[7,15],[7,15],[6,15],[16,25],[16,24],[-12,34],[-8,33],[0,3],[-5,20],[1,24],[2,35],[-1,27],[0,22],[4,41],[1,12],[4,31],[2,15],[2,25],[12,33],[38,85],[26,44],[20,18],[3,3],[15,14],[37,36],[21,36],[9,20],[4,12],[24,35],[35,20],[48,20],[34,12],[58,7],[16,9],[19,12],[33,5],[33,5],[1,0],[74,37],[29,13],[19,9],[45,26],[4,3],[6,7],[24,25],[-31,21],[-14,8],[-5,3],[-5,3],[-7,4],[-9,4],[-33,8],[-11,5],[-18,6],[-9,5],[-15,8],[-43,36],[-21,17],[-24,20],[-10,23],[-4,10],[1,2],[9,10],[13,15],[10,13],[21,35],[2,3],[7,10],[24,31],[19,11],[41,-1],[3,0],[1,0],[5,0],[18,8],[1,1],[16,8],[12,31],[-17,6],[-11,3],[-9,3],[13,25],[5,11],[1,2],[34,36],[27,29],[29,31],[30,40],[9,10],[14,18],[1,7],[1,4],[2,12],[4,18],[27,27],[25,8],[24,8],[16,5],[23,8],[6,5],[27,25],[-35,31],[-19,9],[-2,1],[-17,7],[11,35],[16,37],[20,35],[25,6],[23,3],[16,2],[14,51],[17,37],[0,1],[1,2],[8,33],[0,2],[3,12],[39,-1],[8,0],[30,-42],[17,28],[9,16],[8,12],[9,15],[4,6],[4,6],[3,41],[27,17],[0,-3],[0,-17],[0,-23],[4,-14],[4,-13],[27,30],[6,4],[18,14],[-1,-20],[-1,-11],[-2,-26],[-1,-7],[-1,-1],[-1,-1],[-15,-16],[0,-6],[1,-5],[3,-34],[13,-14],[5,-5],[2,-3],[6,-3],[4,-1],[29,-13],[37,19],[18,28],[12,20],[25,19],[28,-23],[1,11],[3,24],[4,15],[3,15],[29,-21],[6,-6],[5,-5],[17,-19],[-2,-31],[-18,-46],[-26,-29],[-26,-28],[-23,-13],[-8,-4],[-2,-1],[-26,-3],[-13,-1],[-31,2],[-23,9],[-26,39],[-46,24],[-9,3],[-22,8],[-28,-4],[7,-10],[0,-1],[8,-11],[10,-15],[8,-6],[21,-15],[41,-27],[52,-26],[6,-3],[2,-1],[13,-6],[17,-9],[16,-26],[13,-21],[0,-72],[7,-42],[-4,-41],[-1,-19],[-1,-10],[-1,-52],[-1,-14],[-1,-28],[-8,-38],[-12,-17],[-12,-15],[-18,-23],[-24,-23],[-13,-10],[-14,-10],[-33,-25],[-23,-17],[-34,-27],[-25,-51],[-20,-32],[-5,-10],[-9,-15],[-18,-35],[-11,-13],[-29,-31],[-46,-34],[-23,-15],[-12,-8],[-22,-13],[-16,-35],[-21,-52],[-7,-40],[-1,-10],[-26,-31],[-87,-39],[-54,-20],[-33,-12],[-13,-3],[-16,-3],[3,-27],[2,-16],[3,-36],[10,-44],[5,-5],[12,-10],[6,-6],[14,-27],[2,-24],[0,-3],[1,-8],[5,-3],[15,-11],[5,-2],[19,-7],[2,-2],[30,-22],[14,-9],[13,-10],[34,-44],[4,-16],[1,-4],[5,-19],[-1,-36],[0,-37],[0,-12],[0,-3],[-1,-2],[-1,-25],[2,-5],[11,-30],[9,-13],[11,-17],[6,-9],[21,-23],[16,-29],[6,-65],[3,-36],[-4,-19],[-4,-16],[-7,-18],[-10,-29],[-5,-54],[11,-54],[-7,-26],[-4,-16],[-3,-26],[11,-15],[19,-24],[4,-32],[-2,-11],[-4,-21],[12,-21],[6,-12],[7,-7],[16,-16],[7,-11],[15,-23],[9,-24],[1,-42],[0,-20],[-5,-32],[-4,-34],[-4,-36],[-9,-26],[-3,-8],[0,-11],[-1,-2],[-1,-31],[-6,-41],[0,-2],[3,-31],[3,-19],[2,-12],[-5,-35],[-1,-11],[-12,-43],[-25,-22],[-9,-30],[-6,-17],[-9,-58],[-5,-51],[-1,-17],[-3,-17],[-7,-48],[1,-49],[8,-29],[2,-13],[3,-12],[11,-36],[16,-42],[36,-7],[41,-18],[23,-14],[26,-17],[8,-19],[5,-15],[9,-26],[12,-39],[-1,-48],[0,-5],[0,-18],[0,-50],[8,-44],[1,-26],[0,-32],[-1,-11],[0,-7],[-1,-13],[-2,-14],[5,2],[1,0],[5,3],[15,7],[3,1],[10,58],[7,10],[8,12],[6,8],[5,6],[16,41],[18,33],[12,32],[12,14],[11,12],[8,9],[7,2],[8,3],[20,7],[21,28],[8,25],[6,21],[7,30],[14,31],[40,21],[-1,20],[-1,20],[24,43],[7,6],[20,16],[9,8],[11,3],[34,11],[16,4],[11,3],[35,-1],[4,0],[45,-7],[43,-23],[5,-22],[6,-27],[12,-12],[15,-15],[42,-1],[25,25],[27,26],[15,15],[5,6],[15,18],[11,12],[1,3],[2,4],[12,31],[21,25],[16,17],[2,2],[2,0],[44,12],[12,4],[3,1],[44,13],[25,3],[57,2],[25,-3],[8,-2],[11,3],[26,6],[73,-11],[19,-3],[15,-5],[31,-12],[24,8],[12,4],[25,10],[38,23],[14,34],[27,12],[2,1],[18,8],[40,9],[26,7],[3,1],[21,5],[14,4],[32,14],[5,2],[42,18],[13,11],[14,13],[11,9],[6,6],[-15,21],[-12,17],[-4,43],[4,28],[2,13],[-36,41],[-4,50],[-1,8],[4,7],[14,22],[16,45],[8,-2],[17,-5],[8,-2],[13,15],[1,1],[8,9],[6,8],[2,2],[11,16],[15,20],[7,20],[6,15],[0,2],[1,3],[23,37],[43,21],[23,12],[29,19],[19,26],[10,39],[0,2],[-6,21],[-11,33],[-13,41],[0,1],[1,1],[22,55],[6,14],[23,18],[15,11],[48,22],[27,8],[1,1],[9,3],[44,24],[57,11],[4,0],[1,1],[7,39],[-20,-9],[-3,2],[-10,6],[-17,10],[-6,4],[-17,29],[-10,17],[-3,7],[-3,11],[-7,39],[10,56],[0,3],[7,6],[13,11],[12,10],[21,8],[18,8],[32,4],[90,3],[11,1],[38,7],[12,-4],[16,-6],[16,-1],[9,0],[17,15],[19,31],[-12,42],[-2,5],[6,2],[26,13],[10,14],[11,15],[24,59],[19,35],[11,22],[0,11],[-1,35],[-1,11],[0,11],[-9,33],[-3,41],[-12,39],[-14,29],[-6,35],[-21,10],[-20,11],[-21,19],[-36,17],[-16,19],[-9,61],[10,14],[0,1],[16,24],[17,14],[5,4],[8,25],[-1,24],[0,8],[-1,13],[1,3],[0,3],[10,45],[-5,43],[-2,5],[-8,35],[-1,13],[-5,41],[24,45],[11,4],[16,5],[35,22],[15,3],[1,0],[18,4],[30,19],[8,4],[32,10],[47,7],[32,12],[43,17],[72,2],[16,1],[10,1],[36,-17],[0,-1],[19,-12],[32,-20],[9,-15],[16,-28],[28,-28],[19,-20],[8,-10],[7,-9],[5,-6],[19,-29],[12,-19],[7,-25],[11,-39],[30,-8],[47,-20],[49,-42],[1,-1],[0,-2],[7,-26],[4,-15],[3,-7],[2,-7],[10,-23],[6,17],[1,3],[5,17],[29,12],[2,0],[26,3],[36,6],[12,5],[15,6],[38,-6],[37,1],[17,-3],[19,-4],[13,0],[1,0],[13,-1],[28,-8],[26,-7],[34,-15],[83,-25],[44,-5],[52,-10],[34,-7],[25,-5],[7,0],[25,-3],[9,-5],[35,-18],[14,-8],[11,10],[27,26],[43,0],[40,-14],[25,-26],[11,-22],[2,-3],[1,-3],[22,5],[-1,23],[-1,20],[0,16],[0,23],[2,16],[1,8],[2,21],[0,2],[50,26],[16,-3],[18,-4],[51,-5],[11,1],[8,1],[8,1],[7,79],[-6,43],[-1,7],[-3,20],[-3,43],[2,38],[0,5],[0,11],[35,50],[0,1],[1,0],[23,49],[27,39],[1,1],[20,17],[10,8],[10,1],[31,2],[22,4],[3,13],[6,29],[18,18],[3,3],[9,6],[15,10],[11,3],[12,4],[111,-2],[10,4],[13,5],[4,1],[8,4],[12,5],[22,38],[2,4],[8,22],[9,14],[14,23],[43,42],[21,61],[6,13],[14,31],[17,20],[9,11],[1,2],[9,24],[4,12],[7,2],[17,4],[27,-10],[1,-1],[15,-1],[9,0],[16,-1],[18,8],[27,13],[53,13],[37,-15],[27,-6],[20,-4],[33,-11],[31,-12],[17,-7],[1,-1],[13,-6],[30,-18],[14,-8],[45,-34],[28,-19],[20,-12],[18,-16],[12,-10],[32,-29],[19,-26],[26,-41],[12,-37],[16,-42],[14,-48],[1,-10],[1,-2],[2,-24],[1,-35],[-1,-31],[-3,-18],[-2,-12],[-6,-50],[8,-41],[2,-10],[0,-5],[1,-11],[1,-2],[0,-1],[1,-11],[-4,-22],[-6,-40],[-20,-46],[-17,-15],[-4,-3],[-7,-6],[-5,-5],[-2,-2],[-4,-1],[-9,-3],[-32,-11],[-14,-4],[-15,-5],[1,-2],[4,-8],[11,-25],[-1,-31],[0,-27],[-15,-29],[-15,-8],[-9,-4],[-4,-1],[-14,0],[-13,-1],[-12,-1],[-6,-1],[-51,-21],[-55,-53],[-15,-32],[-9,-20],[-13,-38],[-8,-42],[-2,-40],[-1,-6],[4,-7],[19,-34],[17,-45],[-4,-32],[-2,-16],[-15,-42],[-12,-6],[-13,-6],[-7,-9],[-13,-17],[-11,-7],[-16,-11],[-51,12],[-4,1],[-41,-1],[-19,-15],[-7,-5],[-16,-13],[-1,-1],[-2,-3],[-21,-27],[-1,-10],[-4,-35],[-32,-44],[1,-26],[1,-44],[42,-35],[26,-15],[2,-2],[15,-9],[21,2],[17,1],[17,-37],[2,-6],[0,-1],[9,-23],[23,-30],[40,-25],[6,-4],[5,-3],[19,-24],[4,-5],[5,-7],[25,-22],[-18,-38],[-25,-25],[-42,-12],[-14,2],[-32,6],[-3,0],[-2,0],[-37,15],[-24,17],[-15,10],[-35,33],[-20,18],[-22,20],[-22,8],[-26,9],[-29,-4],[-31,-5],[-11,-1],[-3,-1],[-38,-6],[-19,-3],[-23,-25],[-1,-21],[0,-6],[-1,-12],[-18,-15],[-15,-13],[-2,-1],[-3,-4],[-35,3],[-9,7],[-23,17],[-2,1],[0,2],[5,18],[5,20],[-18,35],[-3,6],[-8,4],[-28,16],[-32,-6],[-13,-8],[-17,-10],[-1,-1],[1,2],[8,38],[-1,30],[-27,19],[-32,3],[-15,-1],[-39,-3],[-71,-17],[-3,-23],[-2,-23],[31,-53],[9,-7],[32,-21],[23,-39],[-24,-13],[-8,-5],[-5,-3],[-19,6],[-39,13],[-2,-2],[-41,-46],[-5,-7],[-6,-9],[-13,-18],[-3,-4],[-9,-13],[11,-7],[19,-11],[18,-2],[50,-4],[45,17],[34,8],[15,-7],[9,-5],[20,-28],[0,-36],[-31,-26],[-11,-40],[0,-25],[0,-9],[0,-10],[-10,-38],[-22,-17],[-3,6],[-21,44],[-4,32],[-8,7],[-13,10],[-8,5],[-12,7],[-33,-28],[-2,-13],[-7,-34],[-1,-36],[-3,-48],[-7,-8],[-16,-17],[-26,-19],[-51,-36],[-20,-36],[-19,-45],[-9,-51],[-27,-44],[-6,-1],[-3,-1],[-16,-3],[-13,-3],[-2,-1],[-9,-2],[-15,3],[-13,3],[-15,4],[-38,12],[-24,-10],[-19,-8],[-23,-28],[-19,-35],[4,-33],[-20,-36],[-35,3],[3,-12],[16,-46],[3,-39],[3,-36],[15,-9],[5,-4],[27,-25],[2,-11],[6,-27],[-4,-33],[-14,-32],[-36,-52],[-25,-37],[-39,-43],[-5,-4],[-17,-12],[-27,-15],[-2,-1],[-1,-1],[-10,-4],[-12,-5],[-31,-13],[-22,-9],[-56,-13],[-9,0],[-19,-1],[-11,3],[-14,4],[-24,18],[-24,13],[-41,11],[-2,0],[-5,-1],[-27,-3],[-21,-3],[-18,-10],[-30,-16],[-30,-31],[-10,-9],[-17,-17],[-18,-28],[-1,-5],[-11,-35],[-5,-17],[-5,-16],[-3,-95],[2,-35],[4,-24],[3,-18],[10,-27],[18,-33],[29,-54],[13,-30],[3,-41],[2,-7],[14,-36],[3,-9],[25,-24],[4,24],[0,1],[2,16],[10,30],[1,4],[28,21],[37,1],[16,-3],[14,-2],[12,-4],[0,-1],[13,-4],[11,-13],[11,-14],[-3,-52],[2,-48],[44,-60],[16,-27],[11,-18],[4,-31],[3,-18],[13,-36],[28,-22],[6,-5],[5,-4],[23,-17],[13,-15],[7,-7],[11,-13],[13,-14],[25,-8],[40,-27],[2,-2],[37,-31],[37,-22],[54,-29],[35,-11],[20,-4],[23,-4],[43,-14],[36,-25],[41,4],[34,4],[28,7],[22,13],[11,1],[45,5],[26,-9],[62,-50],[25,-14],[24,-29],[14,-26],[9,-18],[32,-25],[2,-1],[13,-11],[6,-20],[9,-26],[12,-39],[20,0],[17,0],[33,16],[5,3],[6,3],[4,14],[8,26],[8,20],[11,28],[-15,7],[-22,12],[-15,12],[-6,6],[-5,16],[-10,33],[-27,28],[-5,6],[-37,18],[-2,34],[0,9],[1,35],[-4,6],[-21,24],[-2,46],[-1,3],[0,1],[0,8],[-13,49],[-17,42],[-9,23],[1,4],[4,21],[-9,29],[-5,17],[-10,24],[0,1],[-5,10],[0,19],[0,19],[0,26],[-1,33],[1,54],[-12,37],[-2,7],[-7,25],[-14,36],[17,41],[5,12],[24,24],[28,27],[24,9],[1,1],[24,9],[32,7],[42,24],[27,-5],[8,-1],[30,-21],[35,-7],[38,-8],[24,-4],[11,-1],[29,-9],[21,-8],[38,9],[1,1],[1,1],[10,9],[7,6],[-32,30],[-7,6],[-3,20],[-1,7],[1,3],[2,5],[14,35],[-13,43],[25,54],[54,21],[21,39],[-3,44],[-4,25],[-4,25],[2,17],[4,31],[-10,20],[-14,31],[0,10],[1,20],[4,45],[-5,21],[-5,18],[13,19],[7,13],[24,32],[5,6],[3,11],[4,15],[4,10],[6,5],[9,7],[35,26],[13,10],[3,2],[47,15],[36,-11],[9,-3],[2,-2],[5,-1],[19,-7],[34,-13],[36,-15],[54,-7],[29,3],[2,0],[15,1],[23,3],[16,2],[43,-40],[14,-8],[4,-3],[3,-2],[21,-13],[0,-1],[10,-6],[29,3],[1,1],[8,1],[21,19],[26,33],[-28,55],[27,19],[28,21],[32,2],[5,0],[34,29],[2,1],[-7,2],[-11,4],[-13,4],[-13,4],[-33,18],[-19,11],[0,1],[-4,31],[-4,31],[20,36],[33,5],[52,14],[31,24],[3,14],[2,19],[3,16],[0,2],[-22,13],[-2,0],[-2,0],[-39,2],[-30,16],[-30,10],[-46,24],[-15,15],[-11,13],[3,17],[6,36],[46,23],[11,3],[5,2],[30,8],[10,-1],[22,0],[24,-1],[38,8],[14,-1],[12,0],[11,-1],[24,12],[11,14],[8,10],[18,32],[17,7],[26,9],[22,8],[3,0],[28,3],[4,-1],[8,-2],[9,-2],[10,-2],[14,-10],[10,-7],[22,-11],[3,-4],[24,-26],[35,-20],[19,-10],[6,-3],[33,-6],[27,-8],[10,-3],[14,30],[4,12],[16,48],[16,15],[1,1],[19,18],[10,16],[7,14],[-6,12],[-7,10],[-10,22],[15,25],[3,7],[16,22],[15,10],[13,9],[10,1],[17,1],[23,-16],[6,-5],[11,-15],[10,-13],[7,-4],[12,-8],[4,-4],[20,-13],[3,-1],[2,0],[6,-3],[10,-3],[9,-3],[2,-1],[2,-1],[36,-26]],[[47716,61443],[45,-14],[17,-6],[11,-5],[17,37],[26,24],[15,27],[15,35],[35,-6],[11,-2],[12,-9],[18,-13],[13,-9],[20,-15],[7,-5],[25,20],[9,49],[14,40],[39,0],[10,77],[34,44],[34,29],[-25,35],[-23,39],[7,30],[1,30],[17,20],[8,10],[26,37],[25,21],[28,15],[36,19],[35,11],[45,10],[13,1],[25,3],[35,1],[6,0],[8,-5],[7,-5],[1,0],[6,-4],[8,-5],[20,-12],[16,-39],[2,-5],[18,-9],[8,-4],[33,15],[-3,7],[-7,21],[9,35],[7,2],[2,0],[7,2],[1,0],[13,3],[3,-1],[41,-21],[16,-9],[1,-1],[21,-13],[16,-12],[12,-9],[6,-13],[13,-28],[23,-6],[8,9],[1,2],[22,25],[22,-31],[35,-14],[31,-17],[9,54],[56,2],[12,21],[3,5],[8,12],[26,-8],[3,-1],[34,-3],[-3,21],[-1,3],[-1,7],[-1,2],[23,35],[4,6],[11,9],[21,17],[7,1],[21,3],[-7,10],[-8,12],[-11,18],[-14,11],[-21,17],[-14,35],[2,30],[2,15],[13,51],[8,40],[20,35],[19,23],[28,27],[12,39],[-2,21],[-4,32],[-6,17],[-10,23],[-7,27],[-4,13],[0,32],[-1,12],[13,28],[12,10],[2,2],[14,14],[41,34],[20,40],[6,51],[11,24],[9,20],[21,11],[3,2],[11,6],[16,12],[15,11],[31,25],[37,27],[-4,22],[-1,9],[-3,6],[-14,28],[-35,25],[-4,3],[-8,7],[-24,22],[-2,53],[12,63],[20,57],[13,34],[12,23],[24,36],[10,40],[15,31],[3,32],[-14,20],[-3,5],[10,44],[11,26],[10,21],[26,39],[-7,42],[-21,30],[1,37],[12,33],[18,36],[10,12],[6,9],[11,13],[4,6],[4,5],[14,14],[18,18],[5,4],[5,7],[30,40],[19,19],[7,6],[48,19],[32,17],[44,24],[8,3],[61,24],[32,9],[46,-9],[37,7],[29,31],[10,12],[5,6],[23,28],[11,21],[1,2],[11,20],[-32,41],[-6,33],[29,39],[13,10],[29,24],[49,21],[36,11],[11,2],[1,0],[29,4],[17,11],[9,5],[36,16],[33,7],[18,5],[20,4],[15,3],[14,-3],[9,-2],[32,4],[22,7],[1,-1],[1,0],[22,-15],[10,-5],[10,-5],[34,-3],[20,-12],[18,-10],[29,-8],[19,7],[2,1],[2,0],[11,7],[21,12],[20,32],[33,38],[30,42],[16,26],[6,10],[27,36],[30,14],[18,8],[35,7],[1,1],[35,16],[74,8],[7,0],[33,1],[5,-1],[1,0],[15,-3],[10,-2],[20,-3],[8,-5],[24,-13],[2,-1],[15,-8],[41,-12],[38,-4],[17,-11],[20,-13],[25,-13],[22,1],[26,2],[37,3],[28,-11],[2,0],[2,-1],[16,-5],[25,-7],[26,-21],[31,-14],[19,-1],[6,-1],[18,-1],[25,1],[6,0],[20,3],[12,2],[31,-2],[36,32],[9,6],[15,11],[28,-4],[48,-2],[32,11],[5,16],[9,27],[36,29],[35,12],[28,6],[24,13],[17,3],[3,1],[12,0],[22,0],[47,2],[3,0],[30,0],[43,2],[18,5],[3,1],[34,9],[48,4],[70,4],[40,-12],[22,-1],[19,-1],[22,3],[20,3],[2,0],[2,0],[16,0],[22,-1],[57,-5],[27,-1],[3,-1],[17,-1],[11,0],[21,-2],[13,-1],[1,0],[21,-2],[21,-4],[45,-7],[18,-4],[15,-2],[24,-6],[26,-6],[38,-9],[22,-5],[7,-2],[31,-7],[4,-1],[3,0],[23,-6],[18,-6],[19,-6],[54,-12],[31,-8],[17,-5],[13,-3],[4,-1],[23,-6],[49,-12],[64,-15],[24,-7],[27,-7],[46,-12],[27,-7],[14,-4],[34,-11],[25,-9],[53,-18],[56,-21],[8,-3],[13,-5],[31,-11],[96,-36],[54,-22],[32,-14],[99,-38],[35,-14],[55,-19],[18,-6],[1,-1],[6,-2],[17,-7],[3,-1],[1,0],[4,-2],[1,-1],[7,-5],[31,-23],[0,-1],[2,-2],[42,-38],[6,-5],[49,-41],[34,-16],[21,-5],[5,0],[27,-4],[7,-1],[20,-5],[17,-6],[20,-7],[34,-18],[11,-3],[14,-3],[14,-14],[0,-1],[13,-13],[14,-14],[11,-11],[30,-22],[7,0],[24,-1],[6,0],[4,-1],[17,-1],[34,-11],[27,27],[-23,4],[-20,4],[-23,20],[0,33],[0,5],[-7,26],[0,3],[-1,4],[-3,1],[-26,11],[-26,10],[-15,8],[-21,11],[-16,32],[-4,7],[2,25],[2,21],[0,3],[1,1],[0,9],[3,30],[21,50],[20,32],[-2,9],[-3,20],[-2,7],[14,28],[5,11],[31,36],[39,31],[20,23],[10,10],[22,-14],[3,-2],[4,8],[19,43],[39,25],[22,8],[31,15],[6,3],[4,2],[4,4],[9,8],[13,10],[30,27],[12,16],[16,21],[0,1],[35,-8],[13,2],[20,3],[8,1],[3,0],[2,0],[20,4],[18,4],[57,2],[28,-11],[15,-6],[21,-1],[18,-1],[15,37],[27,-23],[22,1],[18,0]],[[54886,64637],[3,0],[7,0],[21,0],[19,0],[52,-4],[25,-2],[36,-5],[15,-3],[8,-2],[42,-9],[59,-31],[29,23],[1,2],[2,1],[21,13],[32,2],[15,18],[10,11],[19,41],[50,18],[5,22],[4,17],[27,12],[27,21],[36,19],[38,11],[24,1],[49,1],[32,-4],[35,-4],[58,-8],[10,-2],[25,-5],[28,-5],[2,-1],[19,-3],[53,-15],[5,-1],[5,-2],[36,-10],[77,-33],[6,-4],[3,-1],[6,-4],[23,-12],[38,-17],[11,-7],[2,-2],[19,-14],[42,-14],[14,0],[38,0],[46,-10],[33,-9],[13,-4],[1,0],[1,-1],[21,-5],[20,-5],[17,-6],[26,-8],[27,-8],[2,-2],[21,-18],[11,-2],[12,-3],[13,-2],[35,3],[3,0],[3,2],[45,26],[25,5],[2,0],[24,1],[8,-2],[29,-5],[29,-6],[3,-1],[1,-1],[15,-8],[19,-10],[22,3],[14,1],[6,0],[53,-5],[22,-9],[21,-10],[39,-14],[34,-4],[6,0],[11,1],[7,0],[2,0],[1,0],[19,-13],[3,-2],[17,-10],[13,-7],[39,3],[10,10],[24,25],[1,1],[3,3],[4,11],[1,2],[10,27],[37,24],[2,1],[32,6],[16,-1],[21,-3],[35,-1],[16,8],[13,6],[44,-4],[35,1],[5,0],[27,-1],[10,-3],[10,-2],[13,-4],[23,-7],[4,-1],[13,3],[3,1],[9,3],[17,12],[15,10],[0,2],[0,4],[2,17],[1,13],[-1,5],[-1,4],[-7,28],[-4,32],[13,24],[6,10],[9,14],[0,1],[4,8],[5,7],[17,34],[10,17],[6,13],[7,11],[21,20],[11,10],[4,4],[10,9],[57,38],[7,2],[1,1],[12,4],[32,13],[14,21],[7,10],[2,2],[4,2],[8,4],[0,1],[17,9],[2,5],[2,4],[4,8],[5,11],[3,38],[23,33],[2,2],[35,28],[39,26],[10,6],[31,29],[6,32],[0,2],[18,38],[8,14],[11,17],[8,13],[27,49],[18,30],[3,4],[29,42],[3,11],[7,30],[6,22],[15,30],[22,38],[15,12],[23,19],[31,41],[11,10],[13,14],[19,15],[31,26],[18,10],[8,5],[38,27],[50,21],[15,13],[25,21],[20,17],[25,32],[3,4],[1,1],[8,11],[35,60],[8,11],[20,29],[24,33],[24,27],[20,23],[1,1],[14,11],[1,1],[26,20],[48,41],[27,29],[26,26],[4,5],[15,15],[48,51],[32,29],[7,7],[20,21],[58,49],[36,22],[38,26],[37,33],[28,21],[42,30],[19,10],[20,11],[29,12],[17,8],[41,15],[28,7],[8,2],[7,2],[31,5],[58,8],[26,2],[18,1],[39,-1],[98,-11],[44,1],[14,0],[3,-1],[21,-12],[27,-1],[10,-1],[9,-6],[40,-27],[27,-23],[28,2],[28,0],[56,-20],[28,-23],[17,-14],[24,-12],[35,-24],[54,14],[-7,23],[-10,28],[36,16],[9,4],[31,11],[-5,15],[-9,28],[21,21],[11,5],[20,9],[34,4],[1,0],[1,0],[8,4],[16,9],[22,24],[7,8],[3,3],[47,21],[17,1],[56,3],[29,-2],[72,-13],[35,-35],[27,-3],[4,-1],[30,-4],[52,-17],[10,-4],[47,-19],[18,-14],[22,-20],[10,-34],[4,-18],[2,-10],[2,-9],[2,-7],[6,-39],[31,-10],[25,-13],[10,-5],[16,-17],[13,-13],[8,-20],[5,-12],[0,-6],[0,-26],[0,-7],[-1,-10],[27,-5],[8,-2],[1,3],[3,5],[20,34],[21,16],[14,7],[25,12],[33,38],[19,49],[3,4],[12,8],[38,31],[4,3],[6,5],[50,22],[51,12],[42,4],[5,1],[8,0],[54,4],[2,-1],[102,-11],[40,-9],[28,-8],[23,-9],[35,-16],[89,-42],[37,-20],[9,-4],[24,-16],[21,-32],[19,-27],[15,-1],[17,-2],[15,0],[2,0],[24,0],[37,-19],[6,-7],[10,-12],[14,-16],[1,-1],[6,-7],[-2,-2],[-2,-4],[-15,-25],[69,-13],[25,6],[12,-5],[11,-5],[13,5],[12,5],[3,1],[4,2],[2,-2],[4,-3],[32,-30],[7,-9],[17,-20],[23,-3],[4,-1],[19,-2],[3,0],[2,0],[2,-1],[13,-6],[19,-8],[67,-34],[4,-2],[37,-22],[12,-9],[19,-13],[16,-1],[13,-1],[11,6],[11,6],[12,7],[16,2],[6,0],[3,1],[22,3],[22,-4],[15,-3],[25,-16],[14,-9],[35,-17],[10,-2],[1,0],[20,-3],[31,-14],[25,-16],[45,0],[15,15],[8,7],[54,7],[27,1],[37,-14],[33,-37],[8,-7],[2,-2],[16,-14],[16,4],[18,5],[12,5],[19,7],[11,-51],[30,-1],[21,-1],[2,-1],[26,-19],[28,13],[38,10],[3,-8],[10,-34],[21,-10],[13,-6],[-10,-13],[-7,-8],[-12,-15],[-23,-35],[23,3],[13,4],[23,8],[5,5],[18,19],[11,46],[33,39],[-56,24],[5,38],[25,28],[24,19],[7,6],[48,-2],[16,3],[19,3],[29,-8],[21,-22],[0,-6],[3,-27],[6,1],[22,8],[36,-22],[3,-9],[8,-35],[9,-19],[8,-15],[4,-16],[8,-32],[44,-4],[48,18],[17,3],[14,2],[7,1],[11,1],[34,12],[8,3],[6,-1],[40,-4],[33,-5],[9,-1],[34,-2],[29,-13],[4,-1],[22,-3],[32,-16],[30,-15],[15,-7],[34,-19],[25,-19],[21,-9],[8,-7],[12,-12],[23,-16],[13,-6],[37,-17],[39,-22],[12,-7],[14,-7],[22,-14],[22,-14],[33,-22],[10,-11],[12,-13],[3,-13],[11,-40],[18,7],[17,4],[3,0],[10,2],[15,-7],[10,-5],[16,-14],[25,1],[1,0],[5,2],[1,0],[20,9],[17,0],[16,1],[26,-4],[54,-18],[39,-23],[17,-3],[14,-3],[18,-3],[2,0],[25,-5],[32,2],[18,-3],[11,-2],[6,0],[22,0],[34,-10],[34,-9],[13,1],[12,1],[32,-11],[29,-11],[15,-6],[42,-18],[24,-14],[11,-6],[5,-3],[6,-4],[14,-8],[19,-9],[11,-5],[42,-18],[50,-12],[54,-18],[25,-9],[57,-10],[54,-22],[39,-16],[41,-20],[31,-19],[37,-28],[3,-2],[29,-22],[10,-8],[8,-6],[10,-8],[35,-28],[9,-11],[24,-25],[24,-21],[21,-18],[35,-31],[18,-14],[10,-9],[58,-45],[8,-6],[25,-20],[28,-24],[5,-5],[56,-56],[25,-26],[62,-60],[9,-9],[10,-10],[1,-1],[14,-14],[24,-27],[11,-10],[23,-20],[14,-14],[24,-24],[51,-48],[24,-27],[25,-28],[33,-40],[28,-36],[0,-1],[20,-28],[18,-26],[24,-39],[25,-39],[18,-29],[27,-47],[14,-20],[22,-34],[26,-45],[29,-53],[13,-27],[16,-29],[5,-5],[32,-32],[43,-28],[27,-9],[8,-3],[41,8],[46,-3],[20,29],[1,2],[1,1],[5,4],[0,1],[15,12],[24,7],[8,2],[22,-1],[31,-12],[32,-32],[39,-30],[18,-21],[16,-26],[1,-5],[1,-1],[3,-10],[4,-13],[6,-19],[10,-16],[2,-3],[5,-8],[4,-6],[16,-1],[1,0],[19,-2],[25,-12],[7,-3],[3,-45],[39,-31],[42,-6],[19,-11],[9,-4],[3,-10],[8,-19],[24,-17],[7,-6],[46,-24],[39,-18],[55,-11],[46,-9],[32,-1],[31,-22],[-9,-9],[-9,-10],[-4,-4],[-15,-22],[3,-5],[10,-12],[15,-20],[11,-42],[-2,-26],[-3,-29],[-2,-22],[4,-19],[7,-35],[23,-40],[14,-36],[17,-29],[6,-6],[1,-1],[14,-14],[12,-7],[15,-8],[36,-19],[47,-22],[40,-4],[39,7],[3,0],[50,9],[10,7],[21,14],[28,-4],[15,-1],[18,-1],[20,-15],[22,-16],[1,-1],[4,-8],[11,-19],[4,-31],[2,-3],[23,-40],[51,-42],[26,-16],[20,-13],[26,-14],[30,-21],[12,-6],[29,-15],[16,-11],[2,-1],[19,-14],[23,-26],[15,-8],[53,-30],[32,-19],[30,-14],[15,-8],[21,-10],[28,-31],[3,-5],[17,-22],[38,-8],[4,1],[29,4],[20,37],[4,18],[6,26],[38,17],[46,19],[53,0],[52,-5],[59,1],[37,-9],[12,-3],[4,-46],[0,-6],[14,34],[9,25],[1,1],[18,22],[14,2],[18,1],[28,0],[8,1],[23,4],[12,0],[18,0],[27,-3],[32,8],[43,32],[1,0],[0,8],[0,16],[0,15],[0,11],[-35,37],[-8,13],[-7,11],[-19,17],[-11,11],[-15,5],[-10,3],[-16,5],[-39,18],[-2,5],[-3,6],[-14,29],[-30,20],[-8,6],[-39,24],[-29,6],[-11,6],[-8,4],[-1,1],[-3,1],[-21,14],[-11,7],[3,9],[1,3],[3,8],[5,15],[1,4],[25,7],[17,4],[45,-3],[1,4],[1,6],[4,33],[-14,51],[-5,15],[-10,52],[-3,12],[-9,32],[-13,31],[-5,38],[-28,38],[-37,26],[-28,18],[-1,4],[-3,31],[4,28],[2,24],[-25,29],[18,32],[-10,21],[-5,9],[3,16],[1,10],[-4,23],[18,39],[30,33],[37,8],[22,18],[28,1],[44,-27],[30,-4],[27,2],[30,-11],[-8,45],[-3,14],[-16,33],[-7,13],[-7,34],[-1,1],[-1,1],[0,1],[-22,24],[-37,21],[-2,1],[-48,17],[-22,11],[-21,10],[-35,14],[-9,29],[-5,19],[-15,33],[-5,12],[-1,1],[-21,23],[-7,7],[-5,6],[-1,1],[-5,6],[-2,57],[22,64],[30,57],[6,14],[1,3],[10,26],[21,49],[16,30],[18,28],[5,6],[23,27],[14,10],[21,15],[39,8],[21,-3],[6,0],[22,-3],[13,2],[22,4],[2,1],[17,11],[-1,14],[0,3],[-2,44],[3,2],[26,10],[18,7],[29,-5],[21,-13],[1,0],[10,-6],[7,0],[14,1],[2,0],[20,1],[28,-6],[4,-1],[38,-4],[44,8],[13,-1],[16,0],[17,13],[12,10],[-3,35],[4,15],[3,13],[-28,34],[-14,10],[-15,10],[-10,8],[-23,30],[-6,9],[-8,13],[-4,26],[2,6],[7,21],[37,23],[22,46],[4,11],[5,27],[7,37],[25,24],[-5,14],[-4,14],[-2,24],[12,32],[-25,42],[-21,35],[-12,19],[-18,53],[-4,6],[-15,28],[14,44],[2,8],[-5,10],[-9,19],[-2,4],[-33,32],[29,25],[5,12],[3,6],[5,12],[11,20],[7,14],[44,72],[34,45],[13,17],[12,14],[35,45],[31,32],[32,26],[25,17],[13,8],[36,17],[9,3],[4,2],[26,9],[22,5],[8,1],[27,8],[8,4],[12,6],[10,6],[8,4],[17,-16],[11,-10],[26,-7],[6,-1],[12,-3],[34,-19],[0,-1],[18,-20],[41,-33],[37,-28],[12,-8],[44,-33],[19,-22],[28,-13],[72,-15],[14,-1],[7,-1],[33,-3],[17,-9],[19,-10],[25,-30],[2,-9],[3,-21],[7,-17],[3,-5],[13,-27],[11,-15],[12,-17],[26,-13],[28,13],[1,2],[13,29],[31,7],[3,1],[6,-5],[9,-10],[28,-16],[48,-8],[47,-5],[29,-5],[5,-1],[22,-4],[16,-40],[13,-6],[18,-7],[5,25],[3,20],[-1,37],[6,31],[7,2],[17,4],[3,1],[10,2],[3,-1],[34,-16],[9,9],[10,10],[6,6],[42,11],[12,1],[2,0],[20,2],[10,0],[21,1],[30,-7],[24,-15],[9,-5],[2,-2],[15,-11],[26,-20],[7,-6],[20,-17],[46,-26],[38,-22],[33,-24],[12,-16],[9,-12],[17,-24],[1,0],[4,-31],[2,-17],[-1,-8],[-2,-14],[-3,-16],[-4,-23],[37,-17],[14,-6],[32,-49],[5,-7],[4,-57],[2,-17],[5,-32],[2,-14],[-5,-37],[-2,-18],[-1,-3],[-2,-15],[4,-2],[12,-8],[4,-3],[8,-5],[4,-30],[3,-15],[-11,-49],[-5,-16],[-9,-32],[-7,-12],[-15,-24],[0,-4],[-3,-15],[-2,-14],[1,-7],[1,-4],[1,-7],[0,-5],[3,-22],[9,-48],[7,-26],[2,-9],[35,-15],[8,-2],[7,-1],[12,-2],[11,-2],[30,7],[3,0],[11,3],[16,7],[4,2],[23,11],[38,0],[15,19],[13,15],[-24,46],[10,36],[19,39],[39,25],[-15,23],[-12,6],[-15,9],[-2,27],[-8,29],[-30,44],[31,25],[50,5],[19,50],[6,4],[18,11],[45,12],[42,-25],[14,-4],[9,-3],[28,-8],[74,-1],[58,-16],[29,-28],[0,-2],[0,-5],[-2,-27],[-8,-21],[-7,-15],[11,-40],[-2,-51],[16,-25],[2,-3],[9,-14],[0,-2],[1,-3],[6,-29],[44,-16],[19,-15],[11,-16],[14,-20],[10,-6],[1,0],[23,-14],[20,-12],[5,-3],[3,-1],[31,-14],[10,-5],[1,0],[3,-1],[16,4],[10,3],[-8,10],[-18,20],[-8,41],[-2,17],[-2,31],[18,18],[14,35],[16,24],[-4,4],[-22,22],[-22,18],[2,11],[2,10],[4,16],[-10,37],[-2,8],[-1,8],[-1,17],[0,13],[-1,6],[0,11],[-33,22],[-21,53],[4,11],[12,39],[9,45],[-22,36],[15,11],[10,7],[1,1],[1,1],[39,-10],[27,-11],[13,-5],[48,-32],[42,-22],[33,-11],[8,-3],[5,-2],[10,-4],[3,-1],[5,-1],[0,1],[0,3],[-1,29],[0,1],[-14,14],[-9,10],[41,11],[11,3],[30,9],[32,-4],[10,-1],[40,-18],[33,2],[-2,-32],[24,2],[8,-2],[9,-3],[29,-9],[29,-13],[20,-10],[26,-13],[55,-39],[3,-2],[42,-26],[-1,13],[-2,24],[-1,19],[-9,52],[42,12],[34,-3],[13,-5],[22,-8],[14,-8],[12,-7],[12,-7],[17,-10],[6,-6],[2,-2],[17,-18],[3,-2],[19,-13],[14,-10],[17,-9],[17,-10],[0,-6],[-1,-11],[-2,-22],[-1,-4],[16,-28],[17,-33],[-19,-18],[-69,39],[-23,1],[-8,0],[20,-25],[18,-20],[45,-36],[12,-27],[-45,2],[-21,-16],[-11,-8],[-16,-5],[-21,-7],[-33,-4],[-63,19],[-14,18],[-5,6],[-2,3],[-11,14],[-24,21],[-22,20],[-16,8],[-35,17],[-38,28],[-16,4],[-9,2],[-8,1],[-5,1],[-5,0],[-22,3],[3,-7],[2,-5],[6,-18],[49,-36],[16,-11],[21,-15],[33,-31],[16,-21],[7,-10],[16,-17],[18,-21],[14,-23],[-10,-16],[-7,-13],[-7,-5],[0,-1],[-19,-14],[-10,-22],[-3,-6],[0,-27],[0,-13],[19,-48],[-3,-44],[-15,-19],[-7,-9],[-1,-1],[-3,-4],[-6,-17],[0,-1],[-8,-21],[-12,-12],[-19,-19],[-34,-3],[-13,0],[43,-36],[36,-16],[19,-8],[38,-30],[6,-5],[27,-20],[41,-41],[25,-16],[20,-14],[13,-9],[48,-28],[34,-19],[16,-15],[7,-6],[39,-15],[29,-8],[22,-6],[-7,17],[-7,19],[-24,15],[-6,4],[-15,26],[-8,19],[-12,31],[13,9],[10,7],[7,0],[30,2],[14,4],[11,3],[20,1],[1,0],[7,1],[27,-54],[36,-42],[18,-13],[1,-1],[10,-7],[33,7],[23,-8],[9,-2],[11,-3],[45,-10],[27,0],[12,0],[26,4],[44,-6],[11,2],[31,7],[14,9],[13,7],[7,4],[15,8],[22,11],[15,7],[23,27],[-4,16],[-3,12],[-22,24],[-19,23],[-24,20],[-1,3],[-8,13],[-3,5],[-9,8],[-11,10],[-6,9],[-7,11],[-7,11],[-30,31],[-35,19],[-10,5],[-31,22],[-29,14],[-3,2],[-9,6],[-13,11],[-17,9],[-6,4],[-1,0],[-18,-4],[-14,-3],[-1,-1],[-21,-21],[-10,-9],[-37,-14],[-19,4],[-21,3],[-42,53],[-10,14],[-40,65],[21,29],[36,-11],[26,-8],[2,-2],[1,-2],[8,-12],[12,-15],[30,-18],[43,3],[8,1],[-11,14],[-18,24],[-11,14],[26,2],[42,0],[33,10],[8,3],[-20,18],[-24,19],[-30,4],[-12,12],[-6,6],[-23,28],[-36,47],[-34,43],[-22,41],[-1,4],[-7,21],[-2,6],[33,-13],[22,-21],[26,-24],[22,-23],[8,-8],[11,-11],[26,-17],[34,-26],[10,-6],[11,-8],[29,-21],[31,-22],[28,-19],[55,-30],[46,-28],[24,0],[14,1],[-20,29],[-15,7],[-9,5],[-27,26],[-30,36],[-22,7],[-14,4],[-27,37],[24,2],[12,1],[27,-7],[16,-4],[32,-11],[-2,13],[-3,17],[65,-3],[-15,21],[-8,12],[-31,27],[-15,15],[-10,10],[-17,23],[-8,12],[-8,12],[-2,2],[-6,14],[-7,18],[-22,41],[34,13],[17,2],[11,2],[13,1],[19,-2],[11,-2],[32,3],[31,-7],[5,5],[0,1],[4,3],[8,9],[2,2],[6,1],[21,2],[11,-1],[1,0],[11,-1],[21,-4],[14,-3],[18,-13],[25,-18],[26,1],[15,0],[4,3],[1,1],[5,5],[15,14],[5,5],[0,-10],[0,-6],[0,-39],[31,-28],[26,1],[5,-7],[18,-25],[17,-21],[9,-11],[-20,-11],[-16,-10],[17,-27],[15,-25],[39,-25],[8,-6],[-1,8],[-13,64],[30,-14],[5,-4],[26,-20],[15,-15],[7,-6],[40,-18],[11,-7],[6,-4],[32,-20],[12,-8],[28,-18],[26,3],[-6,33],[-22,15],[-5,3],[-32,25],[-42,32],[-38,25],[-14,15],[-3,4],[-20,22],[-18,35],[-6,10],[-2,5],[-18,35],[45,-1],[25,-24],[42,-39],[4,-7],[12,-20],[26,-8],[8,-3],[16,-8],[25,-13],[19,-9],[3,-1],[35,-17],[10,-6],[1,-1],[21,-13],[8,-11],[1,-2],[4,-5],[7,-35],[-5,-1],[-42,-10],[29,-26],[28,-21],[13,-9],[3,-2],[9,-6],[23,-16],[7,9],[3,3],[4,6],[5,11],[12,30],[-11,17],[-21,34],[5,28],[0,30],[-9,18],[-12,23],[-34,16],[-29,32],[-18,13],[-12,9],[-24,19],[-17,29],[17,55],[38,-10],[11,-8],[15,-11],[21,-26],[35,-21],[48,-40],[47,-34],[39,-33],[15,-14],[2,-1],[15,-14],[17,1],[12,0],[1,0],[20,0],[-25,43],[-15,33],[13,11],[11,10],[16,1],[20,0],[45,-1],[3,-4],[15,-16],[10,-11],[13,-16],[7,-9],[36,-47],[37,-10],[24,-6],[30,5],[16,2],[21,2],[24,-5],[5,-1],[18,-24],[9,-11],[5,-4],[14,-10],[23,-11],[44,-14],[34,-6],[6,13],[7,12],[8,16],[33,1],[70,-4],[-23,15],[-17,10],[-39,30],[-7,7],[-19,19]],[[74573,64889],[-9,36],[8,4],[19,11],[5,2],[19,7],[19,8],[12,-16],[4,-5],[4,-31],[2,-16],[16,0],[8,0],[6,0],[16,0],[15,16],[49,-1],[14,-14]],[[74780,64890],[8,-9],[1,-1],[2,-3],[19,-27],[1,-1],[8,-12],[37,-33],[36,-29],[8,-4],[27,-14],[14,-11],[11,-7],[31,-30],[25,-3],[6,-1],[12,-2],[-5,7],[-30,43],[-26,43],[24,-5],[20,-4],[46,-20],[41,-5],[29,0],[9,0],[35,12],[-3,32],[21,13],[8,26],[13,-7],[21,-13],[6,-5],[4,-4],[17,-16],[10,-9],[44,-13],[37,-7],[32,-13],[42,-12],[-5,12],[-3,8],[-6,13],[-7,17],[13,5],[14,6],[37,5],[11,8],[13,9],[27,-27],[1,-1],[38,-22],[-1,-4],[-14,-41],[27,-16],[31,5],[12,9],[11,6],[0,1],[-4,13],[-10,28],[27,26],[39,1],[28,-13],[14,-8],[12,-6],[25,-9],[15,-6],[0,3],[1,6],[2,46],[62,16],[34,-1],[29,15],[29,14],[34,-1],[5,0],[13,-5],[20,-8]],[[75995,64850],[13,-18],[1,-2],[22,-32],[19,-15],[12,-9],[23,3],[42,13],[28,-28],[25,-8],[9,-4],[5,-2],[32,-14],[25,-29],[5,-6],[0,-8],[1,-13],[0,-11],[0,-1],[0,-9],[10,-21],[5,-9],[0,1],[19,25],[35,-2],[24,6],[1,1],[18,4],[29,10],[45,-10],[9,-2],[7,-1],[21,-8],[34,-13],[23,-31],[1,-1],[3,1],[38,13],[23,4],[43,2],[41,-5],[10,-1],[15,-4],[36,-9],[46,-15],[33,-19],[52,-14],[44,-10],[33,-11],[16,-2],[34,-4],[15,-1],[33,-3],[69,-24],[43,-15],[22,-18],[36,-8],[18,-24],[19,-14],[15,-11],[16,-13],[21,-29],[6,-9],[15,-20],[5,1],[6,1],[4,1],[23,3],[1,1],[3,0],[0,11],[1,60],[9,50],[13,36],[3,10],[48,49],[14,9],[21,13],[30,17],[31,13],[15,-2],[13,-2],[9,-2],[5,3],[54,29],[14,-7],[20,-10],[5,-2],[25,-14],[32,-6],[-4,15],[-2,7],[-2,8],[33,7],[8,-8],[2,-1],[18,-16],[25,0],[21,0],[27,38],[15,3],[21,5],[18,-14],[23,-14],[7,-16],[4,-10],[3,-8],[4,-8],[9,-1],[14,0],[7,-1],[17,-1],[5,-3],[11,-7],[11,-8],[9,-6],[0,3],[2,5],[8,27],[-3,5],[-9,21],[-11,18],[-2,3],[28,4],[11,2],[33,-3],[31,19],[1,0],[32,-1],[7,10],[18,23],[42,35],[29,7],[30,-5],[-3,-10],[-6,-22],[-4,-14],[-4,-18],[-8,-32],[24,-3],[20,-3],[3,-2],[27,-19],[18,-12],[29,6],[14,3],[5,-3],[4,-3],[16,-9],[-1,-21],[-2,-25],[-11,-30],[-1,0],[-1,-4],[-3,-8],[-7,-7],[-9,-10],[-15,-16],[1,-22],[1,-14],[35,12],[26,29],[17,18],[-2,58],[-5,39],[8,43],[1,4],[-11,24],[0,1],[-13,29],[32,16],[42,17],[-6,35],[-2,13],[-21,21],[37,23],[24,16],[30,18],[-8,37],[3,33],[0,3],[6,6],[25,30],[-2,23],[-2,28],[-21,23],[-2,30],[2,28],[1,10],[0,3],[-17,27],[-24,35],[-2,6],[-17,45],[-18,39],[-1,3],[-17,25],[-23,12],[-39,8],[-9,2],[-39,21],[-25,10],[-18,7],[-40,23],[-16,11],[-19,12],[-26,-21],[-5,2],[-10,6],[-6,3],[-26,22],[-11,9],[-4,7],[-17,39],[-7,33],[-6,28],[-25,-22],[-18,-10],[-18,-10],[-33,-1],[-5,0],[-6,5],[-22,19],[-13,41],[-7,1],[-5,2],[-7,1],[-14,4],[-22,1],[-16,1],[-51,6],[-52,-21],[0,-20],[0,-24],[13,-37],[-42,-49],[-25,-29],[-49,-8],[-24,10],[-15,6],[-11,4],[-15,7],[-29,31],[-26,47],[0,8],[1,8],[2,15],[0,3],[1,6],[-13,5],[-23,9],[2,18],[1,15],[-17,12],[-29,19],[-2,1],[0,1],[-20,40],[-25,35],[-1,1],[-33,21],[-7,4],[0,1],[-5,3],[-51,41],[-1,1],[0,1],[-1,0],[-13,23],[-15,25],[-49,-8],[-31,-7],[-8,-2],[-22,6],[-6,8],[-10,13],[-29,24],[-34,7],[-35,15],[-9,8],[-16,16],[-16,14],[-13,11],[-23,48],[-13,34],[-18,25],[-36,31],[-6,5],[6,58],[-44,6],[-19,4],[-7,1],[-12,19],[-3,5],[-8,10],[-23,29],[-12,21],[-21,28],[-12,17],[-25,29],[-17,18],[-20,22],[-9,11],[-51,44],[-24,16],[-13,9],[-7,6],[-18,18],[-35,15],[-16,21],[-10,13],[-13,12],[-12,11],[-40,41],[-2,63],[7,25],[4,15],[4,10],[3,8],[5,12],[13,24],[6,9],[1,3],[18,28],[19,15],[10,8],[9,19],[9,19],[8,16],[9,18],[31,24],[14,-2],[12,-2],[4,0],[11,-2],[18,8],[9,3],[1,6],[11,45],[5,16],[19,7],[8,3],[0,1],[21,24],[4,1],[26,7],[23,19],[27,0],[13,10],[31,23],[2,-1],[3,-2],[33,-20],[22,-2],[20,-3],[10,11],[16,18],[-6,38],[15,25],[0,1],[13,24],[-19,34],[-22,13],[-31,13],[-25,12],[-6,3],[-26,11],[-10,6],[-14,7],[-42,15],[-7,2],[-8,4],[-32,17],[-18,7],[-6,2],[-9,5],[-31,17],[-14,17],[-9,5],[-21,12],[-19,5],[-9,3],[-43,9],[-5,1],[-11,-5],[-14,-7],[-15,-7],[-31,-3],[-27,-2],[-49,22],[-28,24],[-9,8],[-9,8],[-15,16],[-37,-18],[-21,-9],[-10,-5],[-5,-1],[-34,-8],[-45,5],[-21,8],[-19,8],[-32,25],[-5,7],[-19,22],[-3,22],[-5,25],[-24,31],[-25,-3],[-11,-2],[-27,-3],[-25,17],[-11,8],[13,18],[19,28],[-34,-1],[-4,0],[-16,9],[-23,13],[-1,20],[0,1],[-2,21],[19,34],[4,36],[1,10],[-9,20],[-5,11],[-2,8],[0,2],[-4,19],[-35,33],[-52,33],[-2,2],[-5,-5],[-13,-10],[-19,-16],[-29,-28],[-35,11],[2,-20],[0,-3],[2,-28],[-3,-9],[-4,-12],[-6,-19],[-1,-3],[-1,-1],[-23,-41],[-33,20],[-21,31],[-24,10],[-24,13],[-14,11],[-13,10],[0,5],[-1,6],[-2,26],[-13,38],[-14,25],[-8,16],[-44,15],[-4,1],[-15,-18],[-19,-23],[-4,-21],[0,-2],[-4,-19],[-9,-7],[-24,-17],[-1,-1],[-6,-4],[-33,-8],[-44,-17],[-35,15],[-12,16],[-12,16],[0,12],[0,1],[0,32],[-9,44],[-40,26],[-10,3],[-18,5],[-20,9],[-15,6],[-8,-22],[-7,-19],[-12,-39],[33,-40],[1,-27],[0,-4],[0,-2],[1,-9],[-37,-17],[-26,2],[-28,13],[-7,3],[-11,22],[-10,21],[-1,2],[-4,7],[-22,-20],[-10,-16],[-7,-12],[6,-33],[2,-12],[-19,-21],[-17,-18],[-25,-24],[-4,-4],[-14,-5],[-9,-4],[-18,-7],[-16,-8],[-13,-7],[-49,0],[-17,-4],[-35,-6],[-24,-4],[-25,2],[-53,-10],[-6,0],[-35,-3],[-38,14],[-36,36],[-25,30],[-40,-1],[-45,31],[-42,11],[-24,11],[-28,22],[-22,10],[-19,7],[-20,8],[1,38],[16,15],[2,2],[23,21],[41,59],[0,33],[3,29],[-15,32],[-10,22],[-52,12],[-10,-1],[-24,-2],[-12,-2],[-15,2],[-20,3],[-7,22],[-14,-16],[-9,4],[-12,4],[-29,45],[14,18],[34,9],[15,15],[36,37],[-2,18],[-2,25],[17,9],[9,4],[1,0],[2,2],[-1,1],[-34,37],[-2,2],[-13,19],[-4,6],[23,20],[17,14],[-10,25],[-5,14],[-5,12],[10,2],[23,7],[12,31],[26,7],[31,-10],[4,32],[1,13],[0,5],[4,2],[15,7],[16,8],[2,-1],[31,-20],[31,-40],[23,-4],[22,3],[1,21],[2,25],[-3,26],[16,20],[7,4],[40,25],[5,4],[2,1],[31,9],[13,4],[42,10],[23,55],[32,-3],[13,-1],[25,2],[21,14],[0,10],[1,38],[3,60],[2,43],[-9,20],[-7,17],[15,24],[3,1],[12,4],[1,0],[12,5],[35,-14],[82,-14],[43,0],[16,-17],[14,-15],[41,8],[1,0],[1,0],[1,-2],[6,-13],[7,-16],[6,-21],[5,-17],[-1,-36],[1,-16],[3,-23],[24,3],[12,6],[20,11],[7,11],[8,13],[7,12],[2,50],[-10,20],[-7,13],[-15,27],[-4,9],[7,31],[4,45],[-39,34],[-18,49],[-17,34],[-8,16],[-9,21],[-2,4],[-24,46],[-46,63],[-6,19],[-11,32],[-120,137],[-27,34],[-14,7],[-38,23],[-47,8],[-26,40],[-15,37],[-4,72],[-1,28],[-1,19],[9,38],[0,14],[0,28],[-9,32],[-2,39],[0,7],[1,16],[3,28],[6,55],[25,21],[-12,19],[-6,12],[-4,35],[-3,30],[-8,26],[-3,15],[0,1],[-2,13],[2,21],[1,13],[0,9],[0,22],[2,41],[3,26],[3,27],[-4,26],[1,36],[-7,45],[-6,28],[2,30],[12,32],[5,15],[-44,48],[-27,43],[-6,9],[-14,18],[-31,13],[-21,27],[-5,6],[-2,41],[8,37],[-44,53],[-24,31],[-28,47],[-23,33],[-5,9],[-15,23],[-14,29],[-6,11],[-5,10],[-2,4],[-12,25],[-16,24],[-13,20],[-15,39],[-20,41],[-16,50],[-3,22],[-4,25],[-6,30],[-3,16],[-13,39],[-3,50],[-4,83],[-8,48],[-2,23],[0,9],[-5,36],[-9,27],[-11,32],[2,25],[0,48],[-18,32],[-16,22],[-21,38],[-26,32],[-17,21],[-23,26],[-15,18],[-20,25],[-10,17],[-12,18],[-14,25],[-3,5],[-21,45],[-30,44],[-12,26],[-3,9],[-34,16],[-12,25],[-29,26],[-34,30],[-7,11],[-10,18],[-21,18],[-76,75],[-7,13],[-33,54],[1,17],[2,38],[18,37],[1,48],[-16,20],[-37,27],[-34,10],[-9,3],[-66,28],[-35,19],[-14,6],[-10,4],[-30,16],[-40,21],[-46,9],[-23,-1],[-21,1],[-13,30],[-19,13],[-62,41],[-18,6],[-2,0],[-2,0],[-9,0],[-15,0],[-27,0],[0,1],[1,9],[-63,12],[-89,8],[-2,0],[-25,2],[-24,2],[-11,0],[-37,2],[-86,4],[-52,2],[-5,-2],[1,-8],[150,-9],[26,0],[35,-1],[35,-1],[54,-1],[1,-5],[1,-1],[1,-6],[2,-8],[-102,-4],[-35,-2],[-56,-2],[-19,-9],[2,-9],[19,-21],[-75,7],[-4,0],[-11,-4],[11,-4],[4,-2],[11,-5],[5,-2],[24,-22],[6,-6],[2,-2],[8,-7],[-9,-5],[-38,-21],[-16,-3],[-13,-3],[-3,-1],[-2,0],[-35,-15],[-28,23],[-7,6],[-27,14],[-3,1],[-3,2],[11,-36],[-3,-4],[-19,-26],[-12,5],[-7,3],[-11,4],[-7,-4],[-14,-8],[-9,-6],[-30,-23],[-30,-4],[-26,-4],[-9,-2],[-27,1],[-47,-2],[-46,0],[-2,0],[-1,0],[-44,-3],[-1,0],[-34,-15],[-38,-24],[-27,-16],[-18,-11],[-95,-61],[-66,-34],[-17,-10],[-19,-10],[-32,-17],[-36,-26],[-10,-7],[-29,-19],[-9,-7],[-15,-11],[-23,-9],[-3,-1],[-3,-1],[-8,-3],[-3,-55],[0,-29],[0,-27],[0,-16],[1,-57],[-2,-23],[0,-2],[-2,-29],[-13,-48],[-3,-11],[-20,-50],[-25,-43],[-15,-33],[-4,-9],[-8,-13],[-18,-21],[-9,-8],[-41,-33],[-15,-13],[-27,-23],[-26,-12],[-11,-4],[-70,-3],[-44,25],[-18,17],[-14,13],[-12,14],[-16,20],[-16,3],[-16,4],[-23,31],[-22,35],[-5,13],[-10,26],[-12,1],[-30,2],[-1,0],[-11,-5],[-17,-7],[-9,-15],[0,-1],[-17,-30],[11,-33],[1,-2],[4,-14],[-3,-5],[-28,-43],[-4,-4],[-4,-5],[-5,-5],[-8,-9],[-54,-26],[-52,17],[-9,-2],[-18,-3],[-12,-2],[-40,-13],[-28,-28],[-14,-13],[-14,-12],[-73,-51],[-11,-7],[-14,-10],[-8,-4],[-9,-6],[-23,-13],[-21,-12],[-32,-17],[-12,-6],[-34,-18],[-51,-22],[-51,-19],[-47,-12],[-11,-3],[-18,-5],[-32,-6],[-33,-6],[-38,-11],[-31,-9],[-9,-1],[-8,0],[-12,-1],[-16,-1],[-7,-1],[-5,0],[-17,-1],[-41,0],[-40,2],[-23,1],[-25,0],[-19,3],[-16,1],[-19,9],[-23,9],[-31,39],[-16,36],[-3,42],[-25,40],[0,58],[-10,25],[-6,15],[4,34],[0,1],[3,20],[19,33],[21,31],[12,17],[26,29],[27,5],[22,-12],[15,-9],[20,-24],[9,-11],[17,-15],[8,-6],[6,-6],[3,-2],[6,-29],[1,-5],[0,-28],[0,-3],[1,-17],[10,-2],[28,-7],[31,21],[32,-6],[-8,23],[-1,1],[-3,10],[-6,10],[-16,26],[-25,20],[-11,10],[-36,32],[-16,15],[-30,31],[-8,8],[-25,29],[-25,32],[-9,11],[-13,14],[-22,16],[-11,8],[-13,8],[-21,12],[-20,1],[-23,2],[-15,33],[-12,25],[-4,14],[-4,14],[-16,27],[-6,9],[-25,20],[-6,51],[-18,32],[-13,37],[-19,30],[-6,11],[-32,48],[-32,30],[-18,17],[-31,31],[-30,30],[-3,3],[-55,6],[-23,-2],[-8,-1],[-42,0],[-38,-11],[-44,-8],[-19,-4],[-37,-7],[-29,0],[-17,3],[-12,3],[-77,12],[-19,11],[-14,7],[-17,13],[-6,5],[-41,11],[-9,3],[-40,9],[-34,-2],[-10,0],[-29,-22],[-17,-11],[-25,-15],[-25,0],[-20,1],[-38,-21],[-10,-6],[-16,-9],[-19,-15],[-14,-11],[-39,-29],[-34,-19],[-34,-19],[-14,-8],[-9,-5],[-22,-12],[-19,-11],[-37,-17],[-18,-10],[-74,-37],[-19,-9],[-34,-17],[-42,-19],[-44,-21],[-14,-6],[-16,-6],[-52,-21],[-9,-4],[-26,-12],[-19,-7],[-15,-6],[-27,-9],[-31,-12],[-18,-8],[-10,-4],[-32,-15],[-55,-19],[-48,-16],[-67,-26],[-25,-8],[-22,-7],[-15,-4],[-36,-14],[-34,-11],[-17,-4],[-26,-5],[-30,-11],[-19,-6],[-44,-14],[-22,-9],[-18,-7],[-6,-2],[-2,0],[-21,-2],[-36,-9],[-48,-10],[-31,0],[-20,-3],[-60,-10],[-42,-4],[-44,1],[-51,-2],[-58,2],[-45,10],[-45,13],[-12,5],[-32,17],[-40,31],[-5,14],[-3,7],[-3,8],[-5,13],[-11,34],[-8,24],[-10,22],[-17,38],[-8,9],[-9,9],[-8,8],[-6,8],[-16,29],[-28,27],[-23,16],[-54,43],[-10,-2],[-39,-7],[-33,-5],[-38,-16],[-21,-8],[-7,-3],[-21,-3],[-26,-4],[-64,-6],[-71,-8],[-53,-1],[-37,4],[-22,1],[-61,0],[-31,7],[-33,5],[-13,3],[-32,7],[-42,10],[-45,22],[-20,10],[-24,30],[-40,39],[-5,7],[-17,22],[-3,2],[0,1],[-1,1],[-25,21],[-12,11],[-29,31],[4,37],[-6,26],[-5,18],[-4,13],[-8,23],[-25,-39],[-36,-10],[-15,-4],[-17,4],[-15,3],[-16,31],[-4,-3],[-23,-16],[-6,-6],[-5,-6],[-9,-10],[-7,-12],[-19,-29],[-19,-16],[-24,-19],[-2,-1],[-3,-2],[-2,-1],[-9,-4],[-30,-15],[-42,-18],[-7,-3],[-20,-9],[-23,-2],[-26,-2],[-30,10],[-36,2],[-40,1],[-51,8],[-23,3],[-9,1],[-26,3],[-22,3],[-8,0],[-16,1],[-2,0],[-2,0],[-23,-2],[-5,0],[-17,0],[-41,0],[-76,6],[-51,7],[-44,6],[-24,5],[-16,6],[-34,12],[-38,15],[-6,3],[-10,4],[-12,5],[-28,17],[-22,13],[-11,9],[-4,3],[-17,12],[-3,2],[-10,9],[-17,15],[-1,2],[-14,24],[-14,25],[-16,25],[-18,29],[-18,27],[-3,6],[-36,41],[-30,24],[-7,5],[-25,21],[-3,7],[-3,7],[-19,46],[-16,45],[-16,37],[-14,41],[-8,43],[-1,3],[-5,56],[2,28],[1,17],[2,15],[2,15],[4,12],[0,1],[12,35],[4,7],[4,7],[10,19],[24,27],[24,18],[17,13],[40,32],[9,5],[29,16],[14,4],[22,5],[22,5],[11,2],[22,11],[14,7],[26,9],[20,5],[17,5],[14,43],[-3,25],[-3,24],[0,1],[-10,40],[-1,6],[-4,23],[-17,16],[-6,6],[-5,5],[17,39],[-10,54],[-10,55],[-1,7],[-22,72],[-15,56],[-10,54],[-1,7],[-11,36],[-4,19],[-1,10],[-1,17],[-2,36],[-6,53],[-7,75],[0,45],[1,41],[0,27],[0,7],[0,3],[0,28],[1,40],[8,62],[0,45],[0,64],[2,27],[1,26],[4,37],[1,18],[2,15],[3,27],[3,23],[5,43],[0,25],[4,26],[2,13],[5,34],[2,40],[2,34],[5,37],[3,24],[0,4],[3,42],[4,23],[1,2],[4,24],[7,37],[8,55],[3,48],[5,64],[1,20],[1,27],[8,26],[-5,38],[0,2],[7,19],[3,10],[-3,11],[-6,24],[-6,24],[-2,11],[-2,57],[7,47],[4,20],[6,30],[2,41],[3,12],[9,33],[11,40],[20,52],[11,28],[17,45],[10,21],[17,35],[26,43],[7,12],[13,24],[22,35],[29,48],[6,9],[21,30],[38,50],[33,41],[43,50],[42,45],[21,23],[30,31],[21,19],[34,32],[56,50],[32,28],[37,31],[141,125],[19,15],[13,18],[10,13],[28,25],[16,14],[5,4],[10,9],[26,21],[7,5],[39,13],[-23,24],[-2,1],[-2,3],[-44,15],[-45,3],[-14,2],[-26,3],[-39,-3],[-70,3],[-89,0],[-45,0],[-9,-1],[-22,-2],[-23,-4],[-12,-2],[-46,-8],[-44,-6],[-27,-5],[-33,-9],[-32,-6],[-9,-1],[-37,-11],[-28,-10],[-29,-15],[-39,-18],[-71,-31],[-38,-18],[-17,-7],[-20,-7],[-13,-5],[-33,-11],[-28,-7],[-24,-6],[-41,-3],[-17,-1],[-40,-4],[-54,-5],[-12,-2],[-21,-4],[-68,-8],[-62,-10],[-49,0],[-104,3],[-60,5],[-32,0],[-38,0],[-15,0],[-13,0],[-13,-1],[-41,5],[-38,5],[-87,8],[-26,5],[-52,9],[-126,-14],[-49,23],[-61,7],[-45,-19],[-22,13],[-22,22],[-38,5],[-65,3],[-43,2],[-41,6],[-8,2],[-7,1],[-54,-6],[-42,-10],[-12,0],[-14,0],[-16,6],[-19,6],[-42,4],[-23,0],[-20,0],[-48,-8],[-34,-3],[-39,-8],[-72,-11],[-70,-13],[-40,-11],[-53,-11],[-37,-9],[-44,-7],[-1,0],[-34,-2],[-22,-6],[-13,-3],[-22,-5],[-9,-1],[-34,-7],[-34,-1],[-55,-5],[-41,-4],[-31,-5],[-31,-5]],[[62450,76548],[-45,-6],[-4,-1],[-6,-1],[-39,-8],[-37,-6],[-8,-1],[-33,-9],[-15,-1],[-19,-1],[-14,0],[-15,0],[-40,-19],[-41,-15],[-24,-7],[-15,-5],[-37,-12],[-17,-5],[-13,-5],[-53,-18],[-45,-15],[-30,-9],[-30,-10],[-31,-12],[-33,-13],[-19,-7],[-18,-7],[-20,-8],[-38,-15],[-30,-8],[-13,-4],[-11,-4],[-49,-20],[-17,-9],[-3,-1],[-15,-8],[-73,-42],[-41,-19],[-33,-18],[-71,-36],[-20,-9],[-23,-11],[-33,-16],[-10,-6],[-11,-5],[-44,-21],[-30,-16],[-20,-11],[-55,-34],[-31,-16],[-30,-15],[-22,-12],[-23,-19],[-21,-8],[-28,-11],[-15,3],[-15,4],[18,-22],[38,11],[20,-3],[21,-3],[-4,-49],[-30,-24],[-34,-10],[-51,15],[-6,6],[-13,14],[1,6],[3,14],[16,8],[20,15],[-7,12],[-3,6],[-1,1],[0,1],[-24,-8],[-11,-6],[-22,-13],[-2,-1],[-1,-1],[-33,-21],[-8,-4],[-17,-9],[-39,-28],[-20,-6],[-10,-3],[-2,0],[-12,0],[-31,1],[-28,-11],[-3,-1],[-45,-20],[-44,-20],[-21,-9],[-7,-4],[-47,-17],[-31,-10],[-17,-6],[-41,-14],[-42,-6],[-42,-14],[-17,-5],[-21,-9],[-21,-9],[-18,-8],[-18,-8],[-21,-20],[-33,12],[-20,-8],[-32,-12],[-4,-2],[-8,-3],[-37,-17],[-25,-13],[0,-1],[-14,-7],[-13,-7],[-32,-17],[-52,-22],[-25,-7],[-29,-12],[-68,-16],[-39,-11],[-18,-7],[-12,-4],[-34,-12],[-40,-16],[-14,-7],[-30,-15],[-20,-10],[-32,-16],[-57,-24],[-17,-5],[-47,-14],[-44,-13],[-15,-5],[-7,-1],[-26,-7],[-84,-20],[-36,-5],[-10,-1],[-9,-1],[-43,-3],[-40,-3],[-26,-3],[-47,-5],[-19,-1],[-40,-3],[-25,1],[-14,0],[-42,-2],[-31,-5],[-42,-1],[-14,1],[-33,0],[-22,-1],[-9,-1],[-30,-1],[-29,6],[-42,5],[-15,0],[-20,-1],[-34,-3],[-23,-1],[-49,-1],[-51,-2],[-52,-2],[-24,0],[-41,-1],[-49,7],[-18,1],[-30,1],[-21,1],[-19,0],[-43,6],[-46,9],[-10,2],[-19,3],[-40,10],[-58,6],[-8,0],[-37,0],[-54,13],[-37,-9],[-3,0],[-23,3],[-14,6],[-11,5],[-18,1],[-13,1],[-43,1],[-40,2],[-4,0],[-41,4],[-34,4],[-2,0],[-33,2],[-30,1],[-15,2],[-14,2],[-27,2],[-24,2],[-32,3],[-11,0],[-30,3],[-24,0],[-60,0],[-20,-1],[-12,0],[-14,-1],[-12,0],[-28,-2],[-43,1],[-33,-2],[-71,-6],[-10,0],[-33,-2],[-44,-2],[-41,-5],[-36,-5],[-14,-1],[-26,-2],[-12,-3],[-10,-2],[-12,-12],[-3,-3],[-14,2],[-27,5],[-22,-2],[-29,-3],[-41,-2],[-40,-1],[-22,-2],[-12,0],[-44,-1],[-50,0],[-3,0],[-25,2],[-17,1],[-27,2],[-14,1],[-8,0],[-24,1],[-33,0],[-7,0],[-42,2],[-41,2],[-14,-1],[-16,-1],[-52,2],[-51,4],[-42,4],[-32,4],[-29,3],[-11,1],[-13,1],[-51,6],[-22,3],[-20,4],[-16,1],[-17,1],[-30,3],[-41,4],[-26,3],[-23,3],[-11,2],[-24,4],[-13,2],[-18,3],[-26,3],[-17,2],[-35,7],[-36,7],[-16,3],[-14,3],[-41,9],[-12,2],[-29,9],[-40,11],[-53,13],[-42,9],[-21,4],[-21,5],[-64,13],[-7,1],[-30,6],[-29,6],[-17,1],[-32,4],[-42,2],[-10,1],[-8,0],[-22,1],[-36,3],[-6,1],[-42,3],[-62,1],[-4,0],[-19,1],[-3,0],[-1,0]],[[54896,75555],[-61,8],[-46,1],[-27,3],[-50,1],[-70,-9],[-22,-4],[-25,-4],[-22,-3],[-10,-2],[-10,-2],[-44,-9],[-55,-8],[-25,-4],[-26,-5],[-55,-13],[-177,-41],[-61,-24],[-156,-67],[-48,-14],[-75,-21],[-3,-1],[-5,-1],[-3,-8],[-7,-14],[-15,0],[-38,-12],[-35,-11],[-14,-3],[-45,-10],[-33,-14],[-14,-6],[-19,-3],[-13,-2],[-10,-1],[-24,-3],[-7,0],[-29,3],[-9,2],[-12,3],[-23,22],[-8,8],[20,32],[17,7],[22,11],[23,4],[22,4],[33,10],[-1,22],[0,27],[-24,-6],[-36,-14],[-34,-14],[-19,-7],[-20,-8],[-22,-6],[-6,-2],[-24,-8],[-38,-12],[-45,-13],[-55,-15],[-43,-7],[-20,-3],[-19,-2],[-32,-3],[-17,-3],[-11,-2],[-45,-11],[-18,-4],[-12,-2],[-18,-5],[-24,-6],[-43,-8],[-31,-6],[-23,-4],[-27,-4],[-14,-2],[-40,-7],[-23,-5],[-21,-5],[-26,-9],[-47,-16],[-16,-7],[-27,-11],[-27,-10],[-13,-5],[-15,-5],[-32,-12],[-41,-14],[-30,-9],[-41,-15],[-16,-4],[-16,-5],[-28,-8],[-18,-5],[-23,-6],[-36,-9],[-30,-7],[-4,-1],[-24,-6],[-31,-6],[-48,-6],[-29,-4],[-43,-4],[-31,-3],[-38,-2],[-43,-3],[-44,0],[-7,1],[-18,4],[-35,5],[-37,6],[-33,14],[-32,15],[-7,15],[-3,8],[-32,35],[-11,19],[-14,22],[-36,29],[-9,4],[-23,13],[-19,19],[-24,23],[-47,47],[-22,-2],[-33,-2],[-14,-6],[-20,-8],[-39,-10],[-51,-2],[-14,-1],[-13,-1],[-26,-5],[-52,-18],[-30,-18],[-20,-18],[-22,-16],[-20,-12],[-14,-9],[-24,-17],[-27,-28],[-31,-25],[-11,-8],[-22,-16],[-28,-21],[-11,-8],[-15,-10],[-29,-20],[-24,-14],[-16,-10],[-12,-7],[-24,-14],[-15,-9],[-9,-5],[-14,-9],[-10,-7],[-19,-11],[-9,-6],[-14,-9],[-14,-9],[-11,-6],[-28,-15],[-35,-21],[-17,-10],[-31,-19],[-9,-5],[-22,-13],[-12,-7],[-17,-9],[-23,-14],[-16,-9],[-17,-9],[-30,-18],[-34,-20],[-29,-18],[-12,-7],[-36,-22],[-31,-19],[-13,-7],[-11,-6],[-30,-20],[-27,-14],[-24,-15],[-33,-19],[-27,-16],[-20,-13],[-21,-13],[-14,-8],[-34,-19],[-23,-13],[-27,-16],[-39,-23],[-33,-19],[-16,-9],[-22,-12],[-26,-16],[-23,-15],[-38,-22],[-15,-9],[-40,-23],[-62,-39],[-37,-19],[-30,-16],[-26,-16],[-3,-2],[-29,-22],[-22,-10],[-7,-4],[-54,-33],[-30,-21],[-69,-40],[-54,-32],[-59,-35],[-68,-39],[-34,-20],[-7,-4],[-12,-6],[-23,-13],[-33,-19],[-22,-13],[-16,-9],[-41,-21],[-26,-13],[-9,-6],[-17,-10],[-38,-23],[-8,-3],[-21,-9],[-27,-11],[-35,-16],[-27,-14],[-8,-4],[-44,-23],[-13,-7],[-7,-3],[-38,-19],[-52,-23],[-21,-2],[-5,-2],[-23,-7],[-8,-4],[-16,-10],[-23,-10],[-21,-8],[-17,-11],[-32,-14],[-24,-9],[-24,-9],[-43,-14],[-51,-15],[-3,0],[-28,-7],[-15,-6],[-27,-9],[-28,-13],[-8,-4],[-37,-15],[-25,-13],[-22,-11],[-40,-17],[-7,-3],[-37,-18],[-35,-14],[-11,-5],[-18,-8],[-44,-10],[-23,-12],[-22,-6],[-40,-11],[-10,-2],[-24,-3],[-3,-1],[-34,-4],[-16,5],[-24,6],[-13,8],[-18,11],[-31,19],[-12,-3],[-5,-1],[-5,-1],[-13,-4],[-36,11],[-19,11],[-15,9],[-35,-8],[-2,-1],[-3,-1],[-40,-12],[-26,-53],[-31,-17],[-32,-10],[-35,-25],[-1,-1],[-15,-11],[-17,-13],[-11,-40],[-2,-8],[-1,-3],[-19,-56],[-30,-27],[-29,-20],[-3,-4],[-18,-21],[-13,-35],[-26,-43],[-32,-28],[-37,-20],[-38,-33],[-37,-30],[-47,-19],[-22,-8],[-23,-8],[-16,-4],[-21,-7],[-11,-28],[-21,-30],[-17,-29],[-32,-19],[-6,-27],[-4,-17],[-35,-24],[-49,-43],[-41,-33],[-28,-10],[-46,-16],[-30,-11],[-19,-14],[-11,-9],[-8,0],[-25,1],[-33,-2],[-42,-50],[-29,-36],[-5,-10],[-13,-26],[-16,-24],[0,-1],[-9,-14],[-34,-31],[-33,-40],[-21,-35],[-25,-23],[-29,-25],[-27,-28],[-39,-25],[-9,-5],[-20,-14],[-24,-24],[-15,-23],[-3,-4],[-20,-38],[-17,-32],[-4,-5],[-15,-21],[-11,-15],[-9,-12],[-37,-51],[-38,-26],[-20,1],[-27,2],[-3,0],[-17,3],[-1,0],[-37,8],[-29,-4],[-26,-2],[4,-9],[13,-32],[12,-34],[6,-16],[-3,-44],[-8,-15],[-9,-18],[-18,-22],[-9,-12],[-8,-9],[-19,-23],[-17,-21],[-9,-10],[-8,-9],[-14,-15],[-20,-22],[-3,-4],[-9,-11],[-20,-25],[-14,-17],[-28,-32],[-14,-16],[-1,-1],[-13,-14],[-20,-26],[-19,-63],[-21,-27],[-11,-12],[-29,-44],[-25,-25],[-37,-15],[-6,-2],[-11,-5],[-11,-4],[-33,17],[-35,9],[-30,3],[-26,10],[-14,9],[-14,7],[-49,31],[-10,18],[-8,12],[-6,10],[-9,16],[11,49],[12,28],[35,29],[19,19],[20,22],[3,12],[6,20],[-1,31],[0,9],[-1,39],[0,3],[-1,6],[-1,4],[0,4],[-4,30],[-15,37],[-3,2],[-25,16],[-11,7],[-41,9],[-47,9],[-22,-1],[-26,-1],[-32,-19],[-24,-14],[-48,-24],[-43,-23],[-32,-13],[-15,-1],[-23,0],[-34,5],[-29,-4],[-18,-2],[-19,0],[-27,-1],[-27,2],[-30,12],[-23,30],[-17,17],[-5,4],[-18,13],[-5,3],[-2,2],[-14,10],[-12,23],[-6,14],[-21,31],[-19,27],[-10,14],[-6,11],[-14,26],[-19,26],[-6,8],[-5,6],[-15,19],[-44,28],[-16,8],[-19,9],[-26,24],[-17,29],[-6,10],[-3,4],[5,12],[6,15],[3,7],[-8,47],[-21,38],[-2,1],[-44,26],[-32,1],[-17,1],[-11,5],[-26,13],[-12,7],[-13,8],[-12,8],[-23,8],[-16,6],[-32,4],[-22,2],[-34,-2],[-24,-4],[-25,-7],[-36,-7],[-25,13],[-17,-1],[-16,-1],[-14,-5],[-19,-6],[-37,2],[-45,-11],[-53,-1],[-20,3],[-19,2],[-32,-10],[-19,-28],[-8,-11],[-3,-3],[-22,-15],[-25,-22],[-32,-37],[-33,-30],[-30,-23],[-14,-31],[-9,-22],[-13,-15],[-15,-16],[-3,-4],[-3,-15],[-9,-38],[-23,-51],[0,-16],[1,-33],[2,-39],[-17,-35],[-11,-30],[-15,-30],[-16,-50],[-18,-10],[-17,-8],[-15,-4],[-31,-6],[-38,-6],[-35,-7],[-28,-6],[-15,-16],[-4,-5],[-26,11],[-8,3],[-26,-4],[-6,0],[-21,2],[-17,0],[-22,1],[-19,0],[-21,0],[-46,0],[-16,1],[-12,0],[-32,2],[-35,3],[-45,5],[-48,12],[-47,11],[-28,5],[-41,10],[-12,4],[-29,11],[-18,11],[-12,7],[-24,23],[-9,9],[-1,1],[-13,14],[-6,32],[-2,10],[4,14],[17,54],[-25,35],[-8,11],[-11,15],[-16,21],[0,3],[-2,30],[-1,10],[-30,26],[-28,14],[-36,17],[-13,7],[-22,11],[-10,8],[-13,10],[-6,8],[-4,5],[-5,8],[-2,0],[-6,2],[-17,6],[-3,1],[-2,1],[-48,-3],[-5,-2],[-11,-3],[-16,-4],[-8,-2],[-40,-20],[-38,2],[-37,-2],[-33,1],[-32,5],[-7,0],[-32,8],[-22,23],[-28,14],[-28,5],[-11,2],[-9,4],[-39,15],[-43,29],[-23,21],[-18,28],[0,1],[0,1],[0,25],[-1,6],[0,7],[37,26],[9,6],[11,8],[1,1],[6,3],[10,27],[-25,25],[-32,28],[-17,35],[-3,6],[-19,45],[-15,44],[-10,16],[-8,13],[-1,18],[-1,16],[-15,42],[-19,26],[-16,19],[-8,10],[-26,44],[-18,31],[-7,18],[-7,19],[-6,26],[-4,18],[-28,39],[-40,30],[-21,34],[-14,17],[-1,1],[-11,13],[-11,12],[-15,18],[-21,13],[-3,2],[-1,1],[-13,6],[-5,3],[-23,11],[-20,0],[-27,-2],[-15,-4],[-16,-5],[-32,-5],[-33,0],[-32,7],[-14,7],[-4,2],[-19,9],[-11,9],[-10,9],[-2,2],[-1,1],[-5,36],[-7,4],[-24,13],[-30,-5],[-14,-4],[-17,-5],[-32,5],[-11,2],[-25,6],[-43,18],[-4,-2],[-7,-3],[-13,-6],[-8,-4],[11,-43],[1,-40],[-35,-21],[-24,-11],[-38,-22],[-18,10],[-15,9],[-31,-10],[-19,4],[-29,6],[-8,-7],[-23,-20],[-13,-9],[-6,-5],[-8,-5],[-22,-37],[-20,-7],[-20,-7],[-35,-6],[-8,-1],[-4,-1],[-39,-6],[-22,-2],[-25,-2],[-17,-8],[-23,-11],[-59,-11],[-35,-5],[-7,-1],[-1,0],[-40,3],[-24,-3],[-19,-3],[-4,0],[-6,4],[-28,24],[-21,-14],[-2,-3],[-2,-3],[-3,-6],[-6,-12],[-14,-46],[-44,-33],[-21,-10],[-13,-6],[-6,-3],[-2,-4],[-1,-1],[-15,-26],[-42,-22],[-26,-22],[-29,-8],[-26,-32],[-12,-22],[-15,-29],[-27,-28],[-6,-7],[-29,3],[-14,1],[-9,-2],[-24,-5],[-27,-5]],[[39803,72603],[-28,-3],[-13,-1],[-10,-2],[-34,-5],[-25,-1],[-19,-1],[-20,0],[-31,-1],[-26,1],[-15,1],[-17,2],[-12,1],[-7,1],[-13,3],[-19,3],[-15,2],[-12,2],[-42,8],[-20,5],[-18,5],[-32,9],[-43,19],[-14,8],[-34,18],[-2,6],[-11,34],[-16,32],[-44,23],[-16,-6],[-25,-8],[-24,-16],[-17,-29],[0,-2],[-10,-41],[-24,-28],[-13,-7],[-25,-14],[-1,-1],[-39,-13],[-42,-12],[-39,-10],[-44,-13],[-45,-11],[-39,-9],[-25,-3],[-31,-5],[-39,-7],[-36,-4],[-39,-5],[-52,-4],[-24,-3],[-21,-2],[-21,-2],[-34,-3],[-40,-2],[-28,-2],[-15,-1],[-4,0],[-20,-1],[-22,-1],[-20,-1],[-7,-1],[-7,0],[-29,1],[-21,-1],[-19,-1],[-32,0],[-28,-1],[-26,1],[-31,0],[-18,0],[-16,1],[-31,0],[-12,0],[-15,1],[-39,2],[-23,2],[-19,1],[-14,1],[-20,0],[-29,-8],[-44,9],[-15,3],[-30,4],[-17,2],[-14,1],[-25,2],[-12,1],[-7,1],[-19,2],[-35,3],[-36,4],[-28,4],[-32,4],[-10,1],[-25,4],[-13,2],[-13,2],[-35,5],[-38,6],[-19,4],[-30,6],[-30,5],[-21,4],[-9,2],[-19,4],[-31,7],[-1,0],[-31,9],[-28,8],[-17,-3],[-86,29],[-21,7],[-22,1],[-21,13],[-18,5],[-28,7],[-54,23],[-55,24],[-10,4],[-25,12],[-10,6],[-15,8],[-12,8],[-18,12],[-40,29],[-30,21],[-27,23],[-24,28],[-27,20],[-9,7],[-16,12],[-19,15],[-11,9],[-19,17],[-13,0],[-13,1],[-14,38],[-4,10],[-9,10],[-14,16],[-18,26],[-5,9],[-13,29],[2,14],[1,8],[2,67],[-16,1],[-8,0],[-12,1],[0,15],[1,29],[0,11],[0,3],[31,47],[3,36],[1,8],[15,0],[3,0],[20,-1],[10,2],[3,1],[3,1],[34,16],[14,4],[15,5],[11,2],[14,4],[9,13],[1,1],[12,18],[-15,12],[-29,22],[-16,31],[2,38],[0,13],[-19,32],[-22,28],[-28,37],[-12,23],[-11,20],[-24,47],[-19,48],[-1,1],[-1,21],[-2,20],[-3,43],[7,12],[19,32],[17,14],[15,12],[27,18],[25,-5],[41,-6],[3,-1],[2,0],[8,29],[6,22],[18,48],[0,17],[0,39],[-20,20],[-12,12],[-36,-9],[-12,-3],[-5,-9],[-4,-6],[-11,-16],[1,-67],[-8,-5],[-9,-5],[-20,-3],[-1,0],[-5,-1],[-14,-7],[-1,0],[-2,0],[-53,-7],[-19,4],[-16,2],[-3,1],[-25,14],[-27,11],[-8,3],[-53,11],[-23,31],[-2,3],[-2,4],[1,2],[14,18],[9,11],[-11,33],[-25,-15],[0,-2],[-1,-1],[-5,-11],[-1,-2],[-8,-4],[-7,-4],[-8,-4],[-17,-9],[-14,4],[-14,5],[-36,-6],[-38,-6],[-24,-2],[-21,-2],[-32,3],[-26,2],[-3,6],[-21,35],[-11,11],[-20,22],[-21,2],[-24,2],[-25,38],[-2,3],[0,1],[11,21],[6,11],[-14,18],[-9,12],[-15,15],[-2,2],[-10,10],[-27,7],[-20,7],[-5,2],[-26,37],[-31,29],[-24,-3],[-32,15],[-26,24],[-21,16],[-7,59],[-17,29],[-17,40],[-6,25],[-5,20],[-3,32],[-1,6],[2,23],[1,15],[1,7],[1,1],[15,25],[1,1],[13,20],[14,20],[11,16],[-29,2],[-21,2],[-4,0],[-6,1],[-27,6],[-14,3],[-10,3],[-28,10],[-32,9],[-35,11],[-43,15],[-39,17],[-12,4],[-12,4],[-40,16],[-2,1],[-29,12],[-6,3],[-48,27],[-31,25],[-27,22],[-16,25],[-17,37],[-5,16],[-1,3],[-4,10],[-21,33],[-8,46],[-7,15],[-8,16],[-30,33],[-13,15],[-14,17],[-5,12],[-10,21],[-10,15],[-8,11],[-25,22],[-2,1],[-7,10],[-27,36],[-8,27],[-5,15],[4,9],[10,19],[1,2],[8,16],[-10,60],[-2,52],[39,30],[12,30],[-37,-13],[-2,0],[-6,1],[-36,4],[-34,35],[-2,1],[-3,2],[-20,12],[-21,5],[-17,7],[-10,5],[-18,3],[-20,4],[-48,36],[-19,62],[-26,21],[-30,16],[-8,6],[-22,17],[-6,4],[-27,16],[-4,2],[-20,15],[-24,32],[-11,15],[-37,36],[-3,10],[-1,6],[-5,14],[-23,-11],[-27,12],[-22,16],[-18,13],[-23,17],[-15,13],[-11,10],[-34,38],[-30,41],[-21,36],[-1,0],[-28,62],[-10,22],[-2,4],[1,3],[8,34],[0,14],[-1,20],[-3,4],[-12,13],[-8,14],[-3,4],[-1,2],[-11,50],[0,16],[0,10],[0,22],[-5,5],[-2,1],[-20,17],[-6,16],[-12,26],[-7,64],[-3,30],[-4,29],[0,2],[-3,29],[-2,33],[-3,24],[-1,10],[-11,35],[-2,6],[-13,31],[-7,41],[22,40],[1,3],[1,6],[0,5],[1,5],[1,16],[3,6],[1,2],[11,26],[5,10],[-4,1],[-5,0],[-11,2],[-11,1],[-9,4],[-22,8],[-17,8],[-13,6],[-19,12],[-11,6],[-10,4],[-17,7],[-3,1],[-33,19],[-28,30],[-24,24],[-31,32],[-12,12],[-8,9],[-2,2],[-11,11],[-39,41],[-10,15],[-15,23],[-23,20],[-3,3],[-7,6],[-18,17],[-5,5],[-7,8],[-18,24],[-23,51],[-10,11],[-19,19],[-4,4],[-4,4],[-3,2],[-8,9],[-35,9],[-4,1],[-4,2],[-24,3],[-41,1],[-42,-9],[-34,-14],[-7,-1],[-20,-4],[-7,-1],[-10,-2],[-22,13],[-18,10],[-64,23],[-42,21],[-9,4],[-14,10],[-23,17],[-12,9],[-23,28],[-2,2],[-5,6],[-16,33],[0,1],[2,34],[4,29],[1,10],[-5,39],[-8,23],[-3,10],[0,3],[0,3],[-3,33],[-4,20],[-7,34],[-24,27],[-1,1],[-1,0],[-19,10],[-13,7],[-29,10],[-4,-1],[-11,-3],[-3,0],[-4,-1],[-9,-5],[-5,-7],[-6,-12],[-6,-14],[-3,-7],[1,-6],[7,-28],[4,-10],[13,-31],[-10,-24],[-8,-21],[-36,-36],[-28,-16],[-10,-18],[-34,-14],[-17,-4],[-27,-7],[-15,1],[-48,3],[-41,-1],[-17,0],[-11,0],[-46,1],[-27,3],[-11,1],[-20,3],[-16,2],[-14,-1],[-16,-1],[-40,11],[-10,10],[-20,18],[-19,21],[-12,12],[-19,31],[-8,20],[-11,28],[-8,39],[-4,21],[-3,10],[-3,19],[-2,12],[-5,36],[-2,28],[-2,19],[6,14],[8,17],[-7,11],[-10,16],[-1,16],[-3,20],[-9,35],[-4,12],[-3,16],[-6,25],[-10,33],[-3,11],[-5,9],[-14,26],[-20,-1],[-32,-1],[-21,-8],[-6,-2],[-24,-7],[-21,-19],[-26,-21],[-19,-8],[-14,-7],[-37,-1],[-23,3],[-11,2],[-35,-7],[-34,19],[-35,21],[-3,1],[-11,7],[-29,30],[-30,35],[-2,11],[-3,18],[-1,7],[-2,9],[5,12],[15,35],[-6,30],[-2,11],[0,3],[-1,1],[-1,1],[-31,29],[-59,23],[-47,3],[-16,1],[-9,0],[-14,1],[-36,5],[-35,-3],[-42,3],[-50,18],[-51,28],[-25,18],[-17,32],[-4,5],[-24,30],[-9,8],[-12,11],[-27,-2],[-18,-3],[-17,-3],[-35,-5],[-30,-10],[-6,-2],[-23,-8],[-38,-10],[-55,-28],[-34,-26],[-28,-5],[-17,1],[-26,2],[-18,4],[-23,5],[-37,9],[-17,-3],[-20,-4],[-25,15],[-10,6],[-37,15],[-39,17],[-33,18],[-2,0],[-5,3],[-4,2],[-38,24],[-41,24],[-9,6],[-24,15],[-27,20],[-25,24],[-5,4],[-33,32],[-27,26],[-32,32],[-28,27],[-30,25],[-23,22],[-6,5],[-15,5],[-33,10],[-15,-1],[-9,-1],[-9,0],[-16,-1],[-29,-1],[-7,0],[-22,-1],[-24,-1],[-61,-3],[-20,-5],[-15,-3],[-13,-1],[-9,-1],[-40,-1],[-66,-1],[-17,-1],[-14,-2],[-43,1],[-38,0],[-2,0],[-27,1],[-28,1],[-4,1],[-37,3],[-31,2],[-31,1],[-15,0],[-17,1],[-29,-4],[-43,-8],[-54,-8],[-40,-4],[-42,-4],[-37,-2],[-19,-2],[-12,-1],[-25,-4],[-18,-3],[-15,-3],[-28,-7],[-22,-5],[-22,-5],[-15,-3],[-34,2],[-32,3],[-21,5],[-14,3],[-10,0],[-17,0],[-24,22],[-15,9],[-3,2],[-6,4],[-10,5],[-15,6],[-24,8],[-12,4],[-42,12],[-32,-1],[-42,-11],[-13,-4],[-22,-6],[-11,-1],[-17,-1],[-25,-1],[-14,0],[-51,5],[-30,-1],[-2,2],[-7,7],[-4,4],[-5,4],[-31,0],[-55,25]],[[28618,78913],[-9,4],[-7,2],[-42,17],[-6,3],[-42,15],[-38,14],[-36,17],[-35,16],[-41,17],[-45,10],[-38,3],[-54,1],[-23,5],[-12,3],[-10,1],[-10,0],[-8,1],[-6,-2],[-23,-7],[-16,-4],[-18,-4],[-25,-8],[-12,-4],[-11,-2],[-18,-2],[-26,-8],[-34,0],[-13,-2],[-19,-4],[-40,-13],[-38,-19],[-20,-10],[-7,-4],[-26,-14],[-22,-8],[-28,-10],[-8,-3],[-22,-5],[-26,-5],[-13,-2],[-35,-6],[-18,-8],[-5,-2],[-39,-10],[-8,0],[-26,0],[-11,1],[-3,0],[-7,1],[-6,0],[-61,-10],[-16,-3],[-20,-4],[-11,-3],[-11,-3],[-7,-2],[-2,-1],[-31,-9],[-47,-2],[-41,-6],[-21,-6],[-42,-15],[-10,-2],[-10,-3],[-3,0],[-3,-1],[-9,-2],[-34,-4],[-21,-1],[-14,-1],[-20,-3],[-8,-1],[-39,4],[-27,5],[-38,1],[-10,-1],[-7,-1],[-30,-2],[-31,-18],[-18,-15],[-6,-5],[-11,-10],[-24,-20],[-8,-7],[-14,-7],[-17,-9],[-3,-2],[-17,-10],[-12,-8],[-5,0],[-8,-1],[-1,0],[-18,-2],[-16,-9],[-11,-7],[-8,-4],[-25,-2],[-8,-1],[-5,0],[-28,-24],[-8,-7],[-1,-2],[-19,-19],[-9,-4],[-17,-6],[1,-15],[0,-15],[7,-11],[1,-1],[9,-15],[34,-19],[-19,-20],[-14,-14],[-38,-32],[-39,-23],[-3,-3],[-22,-13],[-22,-12],[-13,-8],[-14,-9],[-17,-7],[-4,-1],[-23,-20],[-26,-15],[-22,-22],[-7,-8],[-27,-34],[-23,-30],[-11,-15],[-21,-35],[-21,-34],[-23,-29],[-9,-26],[-6,-16],[-5,-9],[-13,-22],[-10,-22],[-10,-23],[-16,-31],[-9,-16],[-11,-19],[-16,-50],[-3,-10],[-6,-20],[-2,-8],[-1,-2],[-13,-29],[-1,-3],[-4,-7],[-40,-22],[-20,-14],[-9,-7],[-19,-14],[-15,-12],[-6,-27],[-2,-9],[-12,-25],[-5,-28],[-18,-18],[-21,-14],[-23,-17],[-51,-37],[-12,-3],[-27,-8],[-15,-5],[-11,-4],[-37,-15],[-33,-4],[-7,-2],[-29,-8],[-2,8],[0,1],[-1,1],[-2,8],[-2,11],[33,38],[-39,8],[29,35],[25,3],[7,25],[13,32],[23,20],[21,14],[16,11],[17,13],[16,11],[27,21],[29,27],[33,47],[29,54],[21,49],[26,44],[24,40],[16,46],[11,43],[10,28],[7,20],[5,16],[27,10],[31,3],[-6,35],[-5,35],[18,32],[8,19],[5,11],[17,37],[22,44],[31,58],[26,39],[33,49],[9,14],[10,17],[10,13],[10,13],[28,30],[22,23],[11,11],[1,1],[10,10],[26,18],[14,10],[20,17],[21,16],[27,23],[28,22],[3,2],[17,14],[11,8],[33,22],[6,-2],[5,-2],[20,-7],[32,5],[30,40],[11,16],[9,11],[28,22],[21,10],[43,21],[19,10],[9,4],[8,4],[11,4],[25,12],[21,10],[19,13],[33,22],[26,23],[2,2],[1,1],[19,17],[11,10],[11,10],[20,18],[36,30],[14,12],[14,11],[24,19],[39,26],[8,4],[41,37],[24,19],[17,17],[13,12],[37,37],[20,17],[1,0],[9,8],[29,33],[18,28],[-1,38],[-1,5],[0,11],[0,1],[0,12],[8,38],[34,38],[5,3],[1,0],[3,2],[5,4],[20,14],[20,6],[13,4],[29,8],[8,3],[30,25],[2,2],[-1,0],[-25,8],[-33,12],[-27,15],[-11,7],[-3,4],[-16,20],[-11,4],[-22,7],[-18,-9],[-6,-3],[-8,-4],[-17,-8],[-28,-10],[-12,-4],[-38,9],[-3,1],[-2,-1],[-3,-2],[-11,-8],[-30,-19],[-52,-31],[-37,-23],[-46,-28],[-58,-26],[-13,-6],[-44,-16],[-62,-14],[-43,-10],[-29,-20],[-31,-31],[-12,-19],[-10,-16],[-29,-36],[-40,-17],[-40,-18],[-36,-7],[-22,-4],[-8,-2],[-38,-10],[-33,-13],[-21,-21],[-17,-6],[-6,-3],[-6,-2],[-26,-10],[-30,-15],[-20,-7],[-11,-3],[-25,-8],[-18,-7],[-19,-7],[-45,-21],[-9,-4],[-38,-14],[-26,-19],[-18,-13],[-34,-26],[-13,-23],[-29,-17],[-31,-23],[-27,-26],[-20,-30],[-25,-32],[-38,-35],[-15,-9],[-15,-10],[-38,-20],[-8,-5],[-41,-22],[-9,-4],[-6,-4],[-26,-13],[-37,-25],[-5,-3],[-5,-2],[-38,-22],[-56,-40],[-17,-12],[-14,-10],[-5,-4],[-29,-20],[-34,-22],[-20,-19],[-24,-19],[-15,-8],[-18,-9],[-11,-9],[-1,-1],[-6,-5],[-16,-13],[-25,-21],[-44,-32],[-12,-19],[-2,-3],[-16,-25],[-41,-48],[-21,-14],[-37,-25],[-11,-9],[-21,-18],[-36,-38],[-20,-20],[-5,-4],[-14,-14],[-39,-35],[-18,-15],[-11,-10],[-23,-19],[-21,-15],[-24,-22],[-21,-15],[-18,-21],[-13,-16],[-24,-31],[-16,-22],[-7,-9],[-9,-11],[-27,-19],[-27,-8],[-17,-6],[-23,-1],[-14,-1],[-33,4],[-49,11],[-43,14],[-27,14],[-40,30],[-4,3],[-12,11],[-3,2],[-8,6],[4,10],[5,12],[4,12],[8,22],[17,52],[10,39],[-12,0],[-17,1],[-10,0],[-13,-1],[-27,-3],[-7,0],[-5,-1],[-27,-18],[-7,-4],[-8,-5],[-31,-17],[-22,-15],[-8,-6],[-17,-10],[-23,-30],[-11,-15],[-9,-13],[-24,-30],[-6,-7],[-13,-13],[-9,-12],[-14,-19],[-15,-30],[-12,-23],[-21,-49],[19,-3],[15,-2],[3,-1],[6,-2],[25,-6],[36,6],[8,4],[25,12],[9,-2],[6,-2],[15,-3],[2,-1],[6,-5],[22,-16],[6,-6],[13,-11],[17,-19],[10,-11],[23,-38],[1,-3],[2,-13],[4,-26],[-7,-39],[-31,-44],[-15,-16],[-11,-11],[-14,-11],[-23,-20],[-6,-4],[-14,-11],[-26,-25],[-6,-5],[-32,-29],[-32,-36],[-14,-14],[-10,-11],[-24,-23],[-40,-40],[-33,-31],[-10,-9],[-17,-15],[-29,-27],[-25,-32],[-12,-22],[-34,-46],[-28,-30],[-29,-29],[-31,-35],[-9,-11],[-9,-11],[-20,-27],[-32,-43],[-23,-37],[-19,-27],[-17,-25],[-4,-12],[-12,-33],[-12,-42],[-22,-43],[-31,-47],[-33,-59],[-34,-44],[-3,-8],[-15,-37],[0,-38],[0,-18],[-27,-39],[-24,-24],[-3,-1],[-18,-13],[-2,-28],[-27,17],[-38,-35],[-33,-28],[-18,-15],[-12,-11],[-34,-12],[-30,-9],[-18,-4],[-25,-6],[-45,3],[-48,16],[-47,9],[-8,4],[-23,10],[-41,18],[-44,33],[-18,25],[-2,4],[5,52],[26,49],[15,33],[23,23],[18,31],[23,21],[22,47],[22,30],[11,16],[19,30],[8,12],[22,28],[9,13],[25,16],[9,5],[12,-7],[15,-9],[6,-3],[5,-4],[24,-10],[7,-3],[25,-23],[5,10],[5,11],[2,6],[5,10],[36,34],[19,-1],[2,0],[4,-1],[13,39],[-10,25],[-9,23],[-17,40],[-5,12],[-6,14],[-18,30],[-7,16],[-8,16],[-17,30],[-14,28],[-13,36],[-3,9],[-4,10],[5,39],[0,42],[0,7],[-13,33],[-29,40],[-29,44],[-28,55],[-11,41],[-4,11],[-6,17],[-6,29],[0,37],[3,7],[14,27],[11,77],[-1,47],[18,53],[4,10],[18,40],[0,37],[5,55],[-9,25],[-2,5],[-4,27],[3,9],[3,8],[6,15],[2,7],[0,25],[0,21],[18,42],[10,31],[5,28],[3,25],[1,14],[5,26],[-5,38],[-4,11],[-7,22],[-1,16],[-3,25],[8,48],[17,33],[11,16],[4,7],[4,6],[17,27],[25,47],[25,73],[6,15],[9,21],[23,56],[9,22],[11,23],[16,35],[2,3],[20,44],[9,24],[6,32],[11,40],[20,39],[9,42],[8,53],[0,2],[0,2],[18,55],[4,23],[7,38],[1,3],[0,3]],[[23716,79324],[1,3],[0,2],[4,13],[6,24],[1,6],[8,37],[9,55],[1,8],[6,39],[2,17],[3,21],[1,33],[7,37],[2,30],[1,17],[7,27],[5,22],[5,47],[9,46],[25,62],[20,35],[14,27],[6,12],[22,58],[2,21],[6,71],[0,39],[-13,35],[-36,33],[-14,15],[-35,33],[-133,116],[-17,15],[-3,3],[-3,2],[-10,9],[-4,0],[-19,4],[-3,16],[-1,7],[0,1],[-9,8],[-10,10],[-18,17],[-12,12],[-15,12],[-27,23],[-3,0],[-16,0],[-9,0],[-5,0],[-17,0],[-50,6],[-10,14],[-12,17],[-8,31],[22,13],[-2,16],[12,16],[-34,13],[-23,15],[-24,17],[-18,28],[-2,4],[-54,5],[-10,21],[-4,9],[12,-5],[7,-2],[8,1],[7,2],[4,1],[6,1],[-13,14],[18,6],[16,11],[-1,12],[0,11],[-36,14],[-21,-19],[-4,-2],[-11,-2],[-6,-2],[-7,-2],[-20,9],[-17,0],[-6,0],[-16,0],[-18,0],[-12,13],[-1,16],[-21,7],[-1,1],[-32,23],[-15,16],[-15,-18],[-26,-32],[-5,-29],[-21,-3],[-39,-13],[46,-2],[40,-14],[1,-4],[1,-2],[8,-30],[-18,-24],[12,-10],[-8,-9],[-6,-7],[-5,-4],[-29,-15],[-9,-4],[-1,-49],[-15,-12],[-12,-10],[-54,-16],[-23,2],[-25,3],[-12,10],[-8,7],[2,16],[4,32],[14,12],[6,15],[0,8],[-1,21],[-3,7],[-3,8],[5,12],[3,10],[8,35],[12,29],[8,27],[15,17],[-5,27],[7,33],[17,37],[-2,28],[0,53],[-3,25],[-5,39],[0,42],[3,30],[-11,80],[-2,81],[0,8],[6,50],[24,28],[-6,58],[3,36],[16,121],[4,26],[19,12],[-10,9],[4,57],[1,28],[-15,27],[-1,21],[14,13],[10,9],[2,2],[22,17],[5,5],[-8,1],[-11,2],[-6,7],[-5,6],[6,6],[5,4],[2,39],[-3,19],[-26,9],[-20,0],[-4,5],[-2,1],[-4,5],[-2,1],[-12,5],[-19,3],[-14,14],[-7,9],[-27,7],[-6,8],[-4,6],[-4,1],[-19,4],[-12,-4],[-4,-1],[-4,-19],[-5,-28]],[[22789,81929],[0,-2],[0,-3],[0,5]],[[22789,81929],[1,50],[-18,0],[-60,-4],[-38,45],[-7,1],[-7,2],[-53,32],[-29,10],[-8,6],[-17,12],[-33,6],[-2,0],[-22,3],[-9,1],[-15,2],[-48,11],[-19,5],[-61,1],[-98,-12],[-6,-1],[-38,-6],[-16,-4],[-9,-2],[-40,-7],[-7,-1],[-26,4],[-23,-5],[-8,-2],[-23,-11],[-108,9],[-29,9],[-34,10],[-29,19],[-8,-2],[-4,-2],[-22,-1],[-16,11],[-30,1],[-57,16],[-22,19],[-6,23],[-16,14],[-20,9],[-14,7],[-7,3],[-16,10],[-6,12],[-2,4],[1,21],[3,25],[-10,22],[-9,17],[-41,92],[-1,22],[-14,11],[-8,35],[-5,22],[-8,72],[-16,19],[-1,18],[-28,51],[-2,36],[-55,26],[-18,39],[3,11],[1,7],[-3,7],[-7,15],[5,22],[-5,16],[2,18],[0,6],[-26,39],[3,7],[4,8],[15,10],[17,15],[19,0],[9,-23],[11,8],[20,3],[41,46],[49,46],[6,10],[4,7],[-6,13],[2,33],[0,21],[5,20],[25,18],[9,6],[29,34],[8,7],[4,4],[-1,28],[10,-12],[10,-18],[4,22],[3,14],[22,30],[-4,58],[-6,85],[-5,125],[-57,111],[-48,55],[-17,5],[-22,6],[-24,7],[-26,-15],[-16,-10],[-18,-5],[-30,-9],[-28,-4],[-21,-4],[-6,2],[-17,5],[-54,-6],[-20,-6],[-4,-1],[-12,-4],[-23,-7],[-10,-8],[-20,-13],[-34,-19],[-19,-5],[-34,-9],[-28,-14],[-3,-1],[-2,-1],[-1,0],[-1,-1],[-47,-32],[-18,-11],[-23,-14],[-13,-9],[-12,-8],[-26,-14],[-41,-25],[-36,-26],[-9,-7],[-10,-8],[-26,-16],[-4,-3],[-4,-2],[-9,-6],[-19,-13],[-48,-33],[-4,-4],[-24,-20],[-21,-18],[-13,-10],[-27,-24],[-16,-10],[-10,-7],[-30,-24],[-40,-28],[-45,-29],[-10,-10],[-6,-5],[-14,-11],[-9,-7],[-6,-7],[-13,-11],[-7,-6],[-5,-4],[-5,-5],[-5,-5],[-16,-13],[-19,-14],[-15,-12],[-8,-7],[-16,-15],[-14,-13],[-35,-34],[-30,-33],[-11,-12],[-10,-11],[-19,-21],[-21,-25],[-3,-2],[-8,-11],[-18,-22],[-25,-29],[-10,-11],[-36,-43],[-14,-25],[-8,-14],[-27,-42],[-25,-25],[-10,-11],[-10,-12],[-21,-4],[-3,-5],[-23,-32],[-26,-8],[-3,-2],[-27,-19],[-16,-22],[-3,-5],[-1,0],[-39,-2],[-29,-11],[-6,-2],[-32,-14],[-28,5],[-3,1],[-33,-2],[-14,-1],[-37,5],[-36,-1],[-22,-10],[-28,-13],[-34,-18],[-29,-16],[-9,-6],[-37,-32],[-40,-18],[-9,-3],[-29,-8],[-15,-5],[-13,-4],[-42,-20],[-32,-21],[-14,-10],[-17,-13],[-30,-35],[-13,-18],[-11,-15],[-13,-18],[-10,-14],[-32,-41],[-7,-10],[-29,-38],[-22,-36],[-10,-15],[-30,-36],[-47,-44],[-57,-29],[-30,-3],[-18,-3],[-17,-3],[-42,-3],[-32,-25],[-24,-21],[-18,-9],[-12,-5],[-20,-9],[-17,-8],[-18,-7],[-17,-6],[-3,-1],[-37,-9],[-11,-2],[-30,-13],[-1,0],[-44,-19],[-36,-21],[-39,-24],[-26,-12],[-32,-28],[-19,-35],[-3,-7],[-17,-27],[-25,-30],[-11,-13],[-5,-5],[-10,-11],[-17,-13],[-23,-16],[-1,-2],[-4,-5],[-25,-36],[2,-27],[1,-7],[0,-3],[1,-9],[-8,-44],[-9,-18],[-10,-19],[-4,-9],[-11,-23],[-24,-23],[-14,-3],[-9,-2],[-10,-3],[-15,-41],[14,-31],[0,-1],[-2,-18],[-3,-20],[-9,-35],[-7,-27],[-13,-41],[-9,-24],[-6,-16],[-18,-43],[-23,-44],[-12,-25],[-1,-2],[-8,-15],[-14,-28],[-5,-11],[-6,-12],[-15,-28],[-23,-43],[-47,-72],[-23,-35],[-21,-32]],[[17905,80720],[-26,-39],[-3,-4],[-20,-21],[-1,-1],[-9,-13],[-7,-10],[-16,-24],[-8,-9],[-10,-13],[-5,-6],[-18,-23],[-21,-21],[-8,-9],[-14,-16],[-20,-23],[-3,-4],[-8,-8],[-12,-10],[0,-1],[-35,-32],[-2,-1],[-28,-22],[-34,-29],[-27,-18],[-6,-4],[-41,-27],[-30,-17],[-22,-14],[-48,-25],[-34,-12],[-5,-2],[-41,-19],[-12,-5],[-38,-16],[-41,-18],[-3,0],[-37,-8],[-62,-13],[-30,-7],[-26,-2],[-35,-4],[-68,-10],[-30,0],[-44,1],[-15,1],[-17,0],[-34,5],[-17,5],[-21,7],[-29,33],[-14,29],[-6,11],[-20,5],[-11,3],[-30,-8],[-15,-1],[-23,-2],[-32,-12],[-20,-8],[-9,-7],[-24,-17],[-24,-11],[-28,-12],[-26,-12],[-27,-12],[-33,-22],[-41,-24],[-11,-9],[-20,-16],[-30,-14],[-67,-17],[-36,-8],[-6,-1],[-33,-7],[-11,-2],[-58,-9],[-49,-3],[-25,-1],[-12,0],[-27,2],[-3,0],[-3,0],[-93,1],[-45,5],[-12,2],[-40,7],[-13,7],[-4,2],[-12,6],[-46,25],[-19,14],[-5,4],[-5,11],[-15,26],[-33,22],[-5,-1],[-5,-2],[-42,-9],[-34,1],[-21,-9],[-11,-4],[-59,-46],[-15,-12],[-22,-17],[-60,-35],[-47,-45],[-25,-27],[-14,-23],[-10,-49],[-11,-13],[-17,-20],[-23,-22],[-19,-20],[-26,-20],[-3,-2],[-5,-5],[-47,-18],[-39,-19],[-35,-17],[-27,-10],[-24,-10],[-13,-6],[-27,-32],[-19,-31],[-10,-18],[-32,-62],[-18,-42],[-24,-40],[-16,-23],[-35,-50],[-43,-58],[-18,-22],[-22,-28],[-11,-19],[-8,-14],[-54,-55],[-23,-21],[-44,-40],[-9,-11],[-7,-9],[-31,-22],[-39,-36],[-13,-13],[-28,-29],[-43,-33],[-34,-25],[-22,-17],[-10,-7],[-15,-12],[-60,-37],[-45,-27],[-33,-20],[-32,-17],[-57,-30],[-25,-13],[-25,-9],[-31,-7],[-33,-8],[-5,-2],[-2,-1],[-20,-8],[-15,-7],[-14,-7],[-32,-15],[-35,-21],[-6,-3],[-22,-12],[-31,-18],[-32,-21],[-49,-27],[-22,-12],[-24,-13],[-47,-13],[-30,-10],[-9,-1],[-13,-3],[-15,-3],[-10,-4],[-9,-3],[-19,-6],[-19,-10],[-9,-5],[-39,-25],[-20,-14],[-38,-26],[-53,-29],[-18,-10],[-20,-9],[-35,-17],[-56,-20],[-1,-1],[-20,-6],[-30,-8],[-22,-6],[-20,7],[-5,1],[-28,-24],[-29,-29],[-37,-28],[-24,-17],[-14,-10],[-8,-5],[-14,-9],[-28,-18],[-24,-15],[-6,-3],[-8,-5],[-50,-27],[-32,-14],[-29,-12],[-37,-15],[-9,-3],[-6,-2],[-53,-18],[-50,-16],[-44,-15],[-24,-7],[-14,-5],[-32,-7],[-68,-26],[-50,-20],[-65,-29],[-20,-10],[-21,-10],[-15,-7],[-36,-13],[-2,-1],[-14,-4],[-11,-4],[-19,-6],[-14,-4],[-16,-7],[-19,-8],[-16,-7],[-4,-1],[-20,-9],[-36,-16],[-18,-8],[-16,-5],[-2,0],[-12,-4],[-20,-6],[-48,-14],[-36,-10],[-42,-10],[-19,-2],[-16,-1],[-46,-10],[-43,-6],[-51,-2],[-43,-2],[-13,-2],[-29,-2],[-44,-5],[-30,-1],[-21,0],[-22,-1],[-15,-2],[-29,-2],[-21,-1],[-19,-1],[-30,-4],[-55,3],[-16,3],[-11,2],[-12,8],[-7,4],[-3,2],[-4,-1],[-6,-2],[-19,-4],[-24,-1],[-24,-4],[-33,3],[-22,3],[-37,23],[-15,6],[-6,3],[-5,2],[-25,10],[-12,-2],[-9,-2],[-3,0],[-45,-15],[-29,18],[-89,8],[-28,-7],[-5,-4],[-25,-15],[-32,-19],[-39,-4],[-40,0],[-70,-27],[-40,-17],[-32,-2],[-37,-5],[-26,1],[-14,5],[-42,16],[-47,-15],[-26,-11],[-8,-3],[-21,-8],[-54,-16],[-43,-16],[-36,-5],[-15,-2],[-45,-11],[-51,-15],[-46,-1],[-29,-17],[-46,-14],[-23,-9],[-15,-1],[-13,-1],[-33,-11],[-11,-8],[-23,-19],[-37,-26],[-37,-13],[-42,-15],[-10,-3],[-6,-3],[-33,-12],[-20,-5],[-22,-5],[-43,-4],[-20,-1],[-20,-1],[-25,-2],[-9,0],[-56,0],[-57,11],[-34,25],[-21,38],[-38,26],[-54,19],[-49,23],[-19,5],[-14,3],[-34,14],[-13,6],[-16,7],[-23,11],[-98,24],[-49,7],[-10,0],[-16,-1],[-29,-1],[-22,-4],[-26,-4],[-1,-1],[-26,-9],[-42,-14],[-88,-8],[-63,0],[-25,3],[-33,5],[-33,4],[-24,-1],[-10,0],[-51,-2],[-13,0],[-11,-1],[-40,-6],[-49,-10],[-47,-5],[-25,-5],[-19,-4],[-50,-11],[-189,-36],[-17,-4],[-26,-7],[-32,-11],[-40,-12],[-29,-8],[-31,-8],[-69,-9],[-30,-8],[-38,-9],[-29,-8],[-26,-8],[-23,-3],[-6,-1],[-40,-3],[-6,0],[-12,-5],[-31,-11],[-39,-15],[-38,-14],[-21,-9],[-10,-4],[-4,-2],[-36,-18],[-21,-14],[-28,-13],[-95,-41],[-59,-26],[-20,-8],[-43,-18],[-31,-12],[-19,-8],[-34,-16],[-28,-14],[-15,-8],[-27,-16],[-20,-17],[-12,-10],[-21,-17],[-22,-11],[-13,-5],[-22,-16],[-8,-6],[-19,-14],[-25,-25],[-13,-14],[-26,-28],[-50,-43],[-38,-32],[-33,-26],[-20,-17],[-14,-11],[-33,-30],[-38,-37],[-10,-10],[-27,-31],[-39,-35],[-46,-42],[-18,-19],[-1,-1],[-6,-10],[-11,-17],[-9,-6],[-10,-6]],[[6392,76704],[-18,-16],[-26,-22],[-16,-17],[-16,-16],[-29,-28],[-26,-27],[-18,-17],[-27,-41],[-11,-13],[-15,-19],[-27,-34],[-26,-24],[-21,-19],[-28,-29],[-6,-6],[-14,-14],[-17,-18],[-9,-10],[-18,-19],[-26,-22],[-34,-28],[-31,-20],[-7,-4],[-12,-6],[-34,-13],[-7,-6],[-18,-16],[-13,-11],[-5,-5],[-22,-24],[-1,-2],[-19,-23],[-11,-10],[-27,-27],[-3,-1],[-5,-2],[-13,-7],[-2,-1],[-4,-2],[-30,-24],[-6,-5],[-8,-5],[-23,-16],[-49,-32],[-18,-13],[-31,-24],[-27,-15],[-13,-6],[-24,-18],[-9,-6],[-38,-21],[-23,-10],[-20,-5],[-21,-6],[-28,-20],[-6,-2],[-23,-10],[-7,-6],[-31,-24],[-19,-15],[-36,-27],[-22,-19],[-10,-12],[-15,-19],[-10,-13],[-3,-5],[-7,-9],[-6,-10],[-5,-6],[-43,-51],[-30,-29],[-18,-13],[-24,-17],[-9,-7],[-11,-8],[-34,-24],[-46,-40],[-17,-12],[-25,-17],[-29,-24],[-18,-14],[-10,-7],[0,-1],[-18,-15],[-16,-11],[-7,-4],[-28,-19],[-33,-22],[-5,-3],[-15,-10],[-13,-8],[-61,-32],[-37,-17],[-34,-15],[-22,-9],[-14,-6],[-14,-6],[-42,-16],[-41,-15],[-23,-6],[-16,-4],[-54,-14],[-9,-2],[-32,-7],[-34,-8],[-60,-14],[-8,-3],[-63,-23],[-46,-20],[-26,-8],[-53,-17],[-43,-13],[-37,-9],[-46,-14],[-25,-9],[-13,-3],[-40,-10],[-47,-10],[-45,-10],[-54,-5],[-16,-5],[-3,-1],[-28,-9],[-33,-11],[-36,-7],[-11,-1],[-26,-2],[-33,-2],[-37,-12],[-59,-9],[-47,-17],[-37,-9],[-13,-2],[-21,-2],[-26,-6],[-19,-4],[-26,0],[-37,0],[-27,-5],[-25,-2],[-17,-2],[-27,-9],[-27,-13],[-57,-22],[-20,-5],[-15,-4],[-40,-13],[-21,-9],[-29,-11],[-32,-6],[-35,-11],[-2,0],[-65,-22],[-21,-6],[-21,-7],[-19,-6],[-17,-6],[-21,-6],[-13,-4],[-15,-6],[-37,-13],[-32,-14],[-25,-10],[-33,-16],[-21,-7],[-15,-4],[-37,-16],[-14,-5],[-7,-3],[-31,-8],[-27,-11],[-27,-13],[-13,-5],[-44,-17],[-34,-13],[-26,-7],[-26,-10],[-13,-3],[-21,-5],[-20,-5],[-10,-2],[-20,-4],[-13,-2],[-21,-10],[-45,-9],[-12,-2],[-44,-11],[-15,-4],[-15,-5],[-6,-2],[-63,-26],[-43,-22],[-12,-8],[-24,-14],[-15,-4],[-17,-5],[-28,-12],[-36,-17],[-21,-11],[-46,-18],[-3,-1],[-34,-17],[-15,-8],[-18,-8],[-59,-32],[-30,-16],[-46,-21],[-34,-10],[-14,-5],[-53,11],[-93,30],[-39,15],[-12,5],[-44,16],[-25,11],[-25,0],[-25,0],[-11,-5],[-34,-14],[-28,-26],[-16,-13],[-12,-9],[-18,-14],[-10,-7],[-39,-29],[-31,-16],[-27,-19],[-25,-14],[-4,-2],[-20,-18],[-31,-16],[-35,-24],[-56,-36],[-31,-16],[-30,-16],[-51,-28],[-7,-3],[-24,-10],[-31,-20],[-33,-15],[-25,-19],[-4,-3],[-11,-6],[-22,-15],[-35,-30],[-34,-26],[-38,-22],[-17,-13],[-11,-7],[-34,-23],[-56,-35],[-16,-12],[-15,-11],[-46,-33],[-37,-28]],[[17,73671],[-7,3],[-10,21],[315,630],[4732,9329],[507,998],[4888,9344],[722,1381],[103,197],[590,-197],[1177,-394],[764,394],[7170,3689],[3744,933],[9120,-4622],[33171,-16811],[1173,-3852],[1928,-2038],[555,-587],[978,-120],[367,548],[290,174],[309,-30],[258,159],[389,-24],[201,-117],[379,-105],[211,1],[130,22],[128,97],[349,503],[388,93],[193,-198],[131,-12],[159,30],[82,41],[89,22],[126,-30],[68,-142],[62,-48],[85,-207],[-421,-1293],[85,-701],[228,-516],[171,-248],[-163,-107],[49,-709],[214,-176],[-128,-226],[270,-474],[105,-345],[858,-573],[-4,-471],[76,-51],[285,-190],[251,-690],[627,56],[23,22],[907,861],[801,-244],[1265,287],[1001,-241],[1665,-1628],[-985,-1339],[-984,-1337],[1699,-955],[11302,-6347],[3655,-20254],[1116,-6185],[-3507,-8773],[-105,-171],[-10,-16],[-10,-17],[-6,-84],[38,-103],[100,-123],[-44,-160],[-71,-110],[-74,-113],[-228,-218],[-91,-165],[-85,-319],[-96,-276],[25,-480],[-54,-287],[-74,-172],[-38,-259],[16,-88],[105,-246],[50,-240],[6,-119],[-200,-439],[3,-226],[-137,-285],[-186,-523],[10,-407],[-93,-307],[-19,-63],[-54,-96],[-311,-244],[-51,-93],[-81,-88],[-101,-76],[-141,-153],[-44,-154],[-85,-60],[-122,-15],[-54,-7],[-63,22],[-71,68],[-87,39],[-110,1],[-98,-33],[-159,-120],[-95,-84],[-68,-122],[-116,-146],[-7,-8],[-1810,-2267],[-1183,-335],[-229,-65],[-166,-114],[-357,-105],[-365,-47],[-535,-175],[-194,-138],[-208,-283],[-179,-451],[-198,-325],[-71,-967],[147,-747],[-39,-148],[-50,-188],[-52,-196],[-39,-150],[-157,-595],[475,-1313],[-7,-6],[-2479,-2215],[-1199,-1113],[-467,-15]],[[24748,98801],[0,-36],[18,9],[13,6],[35,28],[5,4],[27,18],[11,12],[2,4],[6,7],[5,6],[13,0],[23,0],[29,20],[22,22],[4,4],[1,1],[48,8],[8,4],[0,1],[13,6],[25,13],[10,41],[-42,-8],[-40,-15],[-26,-3],[-28,-17],[-36,-21],[-10,-2],[-35,-7],[-17,-13],[-20,-16],[-20,-31],[-11,-9],[-10,-8],[-3,-2],[-20,-26]],[[21300,97377],[17,2],[9,1],[12,1],[39,14],[26,13],[30,12],[46,22],[33,16],[33,33],[-10,1],[-2,0],[-7,1],[-11,1],[-25,-9],[-35,-11],[-13,-5],[-12,-5],[-29,-11],[-25,-10],[-29,-15],[-7,-4],[-13,-15],[-27,-32]],[[21300,97377],[-1,0],[-21,0],[-18,-1],[-20,-13],[-18,-12],[-15,-16],[-11,-11],[-1,-1],[-1,-1],[11,-10],[13,-12],[25,-6],[2,0],[7,1],[27,1],[30,-9],[-14,-28],[-40,-29],[-28,1],[-39,-10],[-18,2],[-23,4],[-42,-6],[-46,-15],[21,-31],[-9,-1],[-3,0],[-7,-2],[-12,-1],[-24,-12],[-9,-4],[-6,-3],[-37,0],[-1,0],[-39,-13],[-3,-32],[-18,-18],[0,-2],[0,-7],[2,-25],[-8,-8],[-21,-21],[-15,-13],[-15,-14],[-5,-14],[-1,-2],[0,-1],[5,-4],[7,-6],[-54,-46],[-8,-6],[0,-5],[-1,-38],[-29,-23],[-35,-28],[-24,-19],[-22,-44],[-5,-11],[-15,-29],[-38,-40],[-4,-5],[-17,16],[27,40],[9,12],[13,29],[-14,13],[0,16],[29,2],[63,66],[29,42],[0,26],[13,7],[3,1],[25,12],[12,26],[2,4],[40,58],[7,26],[-31,-4],[-33,-2],[-30,-16],[-3,-2],[-32,-19],[-22,-12],[-13,-7],[-18,-10],[-28,-16],[-1,0],[-23,-12],[-19,-11],[-20,-11],[-27,-14],[-23,-10],[-3,-2],[-20,-10],[-20,-7],[-16,-5],[-37,-17],[-17,-4],[-15,-4],[-19,-11],[-12,-7],[-9,-4],[-23,-11],[-67,-27],[-15,-4],[-17,-3],[-38,-15],[-34,-15],[-27,-16],[-12,-6],[-23,-11],[-35,-14],[-22,-11],[-27,-13],[-31,-14],[-26,-13],[-25,-23],[-42,-33],[-8,-8],[-22,-21],[-15,-54],[-9,-17],[-19,-34],[0,-9],[-1,-24],[-1,-8],[-3,-6],[-3,-4],[-3,-5],[-5,-6],[-23,-10],[-18,-15],[-9,-9],[-6,-6],[-6,-6],[-33,-18],[-16,-7],[-18,-7],[-39,-20],[-26,-10],[-14,-5],[-14,-5],[-24,-9],[-37,-17],[-43,-23],[-25,-6],[-13,-3],[-28,-14],[-28,-13],[-17,-8],[-22,2],[-20,1],[0,7],[0,3],[0,9],[0,10],[-29,-16],[-11,-5],[-10,-4],[-24,-8],[-14,-11],[-12,-9],[-21,-15],[20,-25],[-8,-7],[-12,-10],[-1,-1],[-7,-6],[-16,-9],[-4,-1],[-9,-5],[-23,-7],[-9,-3],[-27,-11],[-29,-8],[-16,-3],[-28,-5],[-43,-8],[-50,-16],[-6,-2],[-7,-1],[-29,-8],[-12,-7],[-8,-4],[0,-1],[-57,-35],[-25,1],[6,15],[22,11],[2,2],[16,8],[31,17],[19,27],[-15,-3],[-22,-5],[-54,-24],[-4,0],[-20,-5],[-10,-3],[-12,-3],[-2,0],[-1,0],[-23,-16],[-22,-14],[-7,16],[13,17],[25,6],[33,27],[21,10],[-8,12],[-19,-11],[-18,-10],[-33,-9],[-12,-4],[-4,-1],[-8,-2],[-38,-18],[-29,-13],[-26,-13],[-4,-1],[-21,-7],[-13,-7],[-12,-6],[-47,-26],[-35,-18],[-33,-11],[-52,-30],[-1,-1],[-2,-2],[-37,-29],[-8,-26],[23,-4],[-12,-33],[-50,-24],[-10,-4],[-8,-4],[-33,-14],[-23,-15],[-22,-9],[-12,-5],[-30,-3],[-17,-2],[-6,-1],[-20,-2],[-30,-11],[-48,-22],[-10,-2],[-44,-11],[-16,2],[-15,2],[-21,17],[-26,-5],[-11,-2],[-20,-9],[-28,-8],[-31,-11],[-12,-4],[-10,-3],[-33,-27],[-17,-2],[-24,-3],[-5,-2],[-22,-4],[-27,-42],[-1,-1],[-1,0],[-40,-8],[-8,-1],[-27,-5],[-17,-8],[-2,-1],[-4,-2],[-2,-1],[-3,-1],[-8,-4],[-58,-20],[-23,-9],[-34,-14],[-20,-7],[-11,-4],[-16,-5],[-50,-18],[-30,-12],[-31,-7],[-21,-4],[-13,-3],[-13,-7],[-18,-10],[-28,-9],[-4,-2],[-23,-10],[-25,-20],[-25,-16],[-1,-1],[-7,-4],[-2,-2],[-6,-5],[-20,-17],[-41,-14],[-2,0],[-34,-5],[-16,-4],[-13,-3],[-47,-25],[-28,-14],[-18,-10],[-7,-5],[-28,-20],[-29,-15],[-28,-3],[-23,-3],[-20,-3],[-37,-12],[-24,-13],[-19,-11],[-35,-21],[-27,-8],[-20,-6],[-18,-5],[-19,-8],[-27,-12],[-48,-23],[-15,-7],[-9,-2],[-34,-9],[-9,-4],[-37,-17],[-28,-11],[-4,-2],[-8,-5],[-29,-17],[-31,-8],[-9,0],[-3,-1],[-5,0],[-14,0],[-33,-17],[-13,-5],[-10,-5],[-5,-2],[-5,-2],[-33,-14],[-2,-1],[-35,-18],[-40,-16],[-48,-18],[-16,-7],[-23,-12],[-32,-15],[-19,-9],[-39,-19],[-45,-18],[-4,-2],[-1,-1],[-34,-14],[-42,-20],[-17,-11],[-10,-6],[-4,-3],[-4,-2],[-34,-21],[-31,-14],[-11,-4],[-22,-9],[-6,-2],[-2,-1],[-11,-8],[-21,-14],[-10,-5],[-35,-16],[-28,-16],[-16,-9],[-40,-22],[-33,-15],[-41,-18],[-38,-15],[-5,-3],[-31,-15],[-37,-20],[-61,-28],[-51,-19],[-22,-11],[-11,-6],[-30,-15],[-16,-7],[-37,-17],[-9,-6],[-29,-17],[-29,-31],[-12,0],[-17,-1],[-10,-3],[-14,-5],[-18,-21],[-25,-28],[-30,-26],[-10,-6],[-20,-14],[-23,-8],[-21,-10],[-36,-18],[-50,-35],[-19,-17],[-1,-22],[-1,-19],[-15,-21],[-8,-12],[-22,-10],[-18,-9],[-17,-11],[-24,-16],[-25,-10],[-9,-4],[-38,-10],[-15,-10],[-38,-26],[-8,-43],[-6,-11],[-16,-28],[17,-6],[13,-6],[8,-3],[-2,-3],[-3,-9],[-11,-25],[0,-39],[36,-9],[-27,-33],[-27,-29],[22,-24],[6,-4],[7,-4],[14,-10],[19,12],[14,10],[14,8],[30,20],[54,23],[25,5],[26,6],[27,12],[2,1],[7,3],[12,7],[19,10],[35,5],[18,7],[4,1],[36,15],[7,33],[21,8],[74,16],[22,30],[2,28],[2,27],[49,13],[15,5],[42,4],[24,28],[8,6],[12,11],[10,18],[8,16],[21,-1],[28,-2],[17,-5],[28,-9],[7,-2],[-4,-18],[-1,-6],[-8,-37],[-24,-34],[-2,-2],[-16,-25],[-26,-21],[-4,-4],[-26,-28],[-27,-22],[-10,-6],[-11,-6],[-11,-7],[-14,-9],[-31,-16],[-12,0],[-23,0],[-13,-3],[-18,-6],[-26,-12],[-6,-3],[-16,-6],[-30,-12],[-22,-2],[-22,-2],[-13,-3],[-27,-5],[-56,-31],[-45,-22],[-31,-35],[-37,6],[-9,-8],[-19,-17],[-12,-9],[-20,-16],[7,-12],[2,-3],[7,-12],[6,-9],[28,2],[7,0],[8,1],[16,1],[15,1],[22,-18],[19,-16],[-4,-25],[-3,-20],[-3,-3],[-25,-15],[-27,-28],[-29,-22],[-33,-21],[-25,-15],[-13,-8],[-12,-9],[-26,-19],[-18,-15],[-22,-17],[-9,-21],[-8,-18],[-8,-24],[-5,-16],[-24,-44],[-34,-40],[-23,-19],[-26,-19],[-25,-13],[-3,-9],[-8,-21],[25,-27],[24,-1],[3,-1],[7,0],[34,-1],[7,0],[37,0],[13,-1],[28,-2],[46,-3],[49,3],[42,4],[20,-2],[1,0],[19,-2],[69,-20],[25,-29],[21,-30],[8,-11],[1,-1],[5,-7],[16,-19],[19,-36],[2,-32],[1,-28],[-4,-28],[-2,-19],[30,-32],[29,-5],[1,0],[1,0],[17,0],[27,-2],[21,-2],[20,-2],[42,-20],[1,-1],[3,-2],[12,-7],[14,-10],[17,-12],[17,-11],[21,-29],[9,-2],[30,-7],[39,-10],[39,-5],[18,5],[8,1],[45,22],[43,11],[45,18],[25,4],[25,4],[42,-5],[30,0],[34,9],[31,1],[46,6],[33,-1],[7,-1],[2,0],[22,-3],[37,5],[5,8],[18,33],[42,32],[15,7],[43,20],[28,17],[1,1],[15,9],[23,5],[20,3],[30,14],[35,17],[28,14],[30,11],[36,10],[3,0],[5,2],[8,5],[23,18],[38,20],[2,1],[27,9],[12,3],[12,4],[33,9],[29,12],[4,1],[1,1],[57,13],[37,10],[38,18],[36,27],[41,16],[11,4],[1,0],[36,11],[5,2],[55,18],[11,3],[28,9],[40,0],[26,0],[22,1],[12,0],[11,3],[22,6],[3,0],[3,1],[40,11],[34,13],[24,3],[5,2],[15,7],[3,2],[17,6],[23,8],[4,2],[5,4],[16,12],[14,12],[10,9],[33,9],[28,5],[32,12],[8,2],[30,9],[39,12],[30,8],[13,4],[12,5],[2,1],[30,12],[37,17],[45,15],[11,4],[29,11],[28,18],[23,9],[17,7],[45,16],[22,7],[20,6],[54,15],[23,4],[1,0],[20,4],[19,8],[16,7],[20,6],[25,7],[39,7],[36,17],[23,12],[10,5],[16,8],[23,13],[56,31],[21,15],[30,7],[13,-1],[9,-1],[16,0],[12,-1],[43,14],[67,26],[12,9],[28,22],[23,7],[19,11],[7,3],[20,21],[7,7],[15,17],[35,29],[23,15],[26,17],[26,13],[4,2],[8,22],[-41,6],[-42,-14],[-8,-2],[-34,-11],[-30,-11],[-32,-8],[-49,-12],[-37,-4],[-45,-12],[-16,-4],[-18,-5],[-19,-6],[-17,-6],[-16,-5],[-36,-13],[-22,-7],[-48,-17],[-53,-19],[-20,-4],[-14,-4],[-25,-5],[-12,-2],[-13,-3],[-26,10],[-5,2],[-18,39],[-21,5],[-20,-6],[-27,-8],[-27,-2],[-14,-2],[-19,6],[-21,6],[-35,18],[-1,0],[-32,1],[-11,0],[-7,0],[-4,0],[-7,-1],[-35,-6],[-32,-10],[-14,-4],[-28,-9],[-47,-15],[-31,-9],[-13,-4],[-13,-2],[-38,-6],[-51,14],[-5,8],[-21,38],[-5,47],[0,5],[20,10],[8,5],[29,21],[-32,37],[-1,5],[-8,34],[9,23],[0,1],[11,25],[22,9],[7,3],[20,10],[7,3],[23,10],[11,4],[10,4],[18,7],[10,4],[14,6],[25,10],[12,10],[17,13],[38,18],[15,6],[11,4],[19,8],[11,5],[29,13],[15,6],[22,8],[28,7],[9,4],[12,5],[6,2],[5,2],[3,1],[24,10],[27,23],[26,13],[9,3],[7,3],[25,10],[27,19],[27,13],[54,29],[8,13],[10,17],[-23,17],[-13,10],[23,30],[47,16],[14,5],[49,20],[16,11],[18,12],[0,1],[39,21],[31,13],[10,4],[24,11],[47,20],[29,14],[6,3],[25,11],[49,28],[16,7],[14,6],[13,6],[14,7],[27,11],[24,14],[45,25],[25,12],[13,6],[24,6],[20,5],[13,-5],[2,-1],[6,-2],[33,-12],[49,-15],[31,9],[17,15],[8,7],[27,33],[42,14],[21,7],[17,12],[21,14],[61,38],[64,25],[38,13],[11,4],[2,0],[9,3],[12,4],[20,5],[5,7],[4,6],[5,6],[10,22],[13,25],[20,22],[15,17],[10,9],[3,1],[20,16],[19,9],[9,4],[26,12],[23,11],[8,4],[15,8],[23,12],[14,10],[3,2],[9,6],[39,22],[41,6],[1,0],[48,-5],[41,20],[15,7],[1,1],[24,12],[49,13],[53,9],[32,3],[1,0],[1,0],[38,-15],[26,9],[3,1],[1,0],[4,-1],[14,-2],[9,-2],[34,-4],[9,0],[8,0],[13,1],[2,0],[9,0],[43,2],[41,3],[2,0],[7,-1],[23,-4],[53,16],[36,7],[19,-3],[13,-2],[20,6],[8,3],[30,-19],[36,-14],[9,8],[1,1],[15,13],[25,-16],[19,8],[5,2],[22,29],[3,4],[35,22],[47,16],[12,3],[3,1],[19,5],[23,8],[14,5],[12,1],[4,0],[30,3],[38,10],[33,9],[18,8],[18,8],[25,-3],[48,15],[27,6],[47,20],[26,12],[8,4],[35,18],[9,2],[32,6],[25,18],[0,1],[13,8],[33,12],[29,5],[22,10],[32,11],[45,18],[4,2],[1,0],[9,4],[12,6],[21,12],[18,19],[34,17],[26,-1],[2,0],[28,12],[42,31],[15,2],[20,2],[24,14],[19,10],[13,13],[10,10],[16,5],[6,2],[9,3],[29,14],[25,21],[24,16],[5,4],[34,16],[51,41],[33,18],[26,10],[25,12],[4,2],[14,10],[7,8],[7,8],[-11,11],[-5,5],[-16,3],[-9,1],[-12,1],[-19,3],[-26,3],[-29,-17],[-14,-7],[-54,-14],[-13,5],[-13,-6],[-17,-9],[-28,-19],[17,5],[13,4],[-2,-5],[-5,-9],[-13,-10],[-15,-10],[-19,-19],[-52,-41],[-8,-8],[-1,-1],[-6,-7],[-39,-4],[-13,-14],[-4,-4],[-16,-3],[-14,-15],[-13,11],[0,5],[0,13],[1,1],[18,11],[1,4],[1,6],[3,11],[27,12],[8,3],[45,19],[58,25],[4,17],[19,14],[3,2],[9,10],[-8,6],[-8,5],[1,4],[1,11],[17,10],[5,6],[8,8],[1,1],[1,0],[5,-1],[26,-2],[11,4],[8,2],[7,2],[5,2],[3,-1],[4,-1],[10,-3],[10,-3],[50,3],[11,8],[0,-1],[1,0],[14,-5],[10,1],[9,1],[20,9],[5,2],[4,3],[11,-3],[28,-8],[39,3],[9,11],[15,18],[7,8],[15,1],[1,0],[22,2],[24,17],[17,5],[23,7],[5,1],[42,28],[29,24],[28,15],[5,4],[1,2],[18,16],[21,7],[7,2],[21,7],[34,14],[38,31],[14,9],[20,12],[6,3],[7,4],[19,9],[12,10],[4,4],[11,9],[9,5],[13,6],[5,3],[4,2],[10,8],[20,16],[23,15],[17,17],[19,16],[16,14],[15,19],[13,18],[2,1],[3,1],[12,3],[11,3],[13,12],[7,5],[10,24],[3,9],[3,7],[1,5],[1,2],[11,8],[15,10],[5,41],[1,5],[1,15],[2,26],[-9,29],[0,26],[15,16],[-30,28],[-7,8],[-18,24],[-16,1],[-20,2],[-44,-13],[-56,-10],[-15,3],[-15,5],[-1,0],[42,23],[11,5],[28,10],[36,8],[12,8],[18,12],[10,11],[19,21],[1,35],[-3,1],[-23,2],[-42,-9],[9,17],[4,7],[8,8],[10,8],[8,7],[11,9],[-25,15],[-5,3],[-33,-17],[-26,-7],[-28,-6],[-11,-6],[-12,-8],[-11,-5],[-19,-10],[-12,-5],[-22,-10],[-22,-13],[-11,-9],[-21,-17],[-35,-28],[-10,-8],[-9,-4],[-3,-2],[-35,-18],[-34,-13],[-12,-5],[-5,-2],[-4,-2],[-28,-15],[-25,-17],[-2,-2],[-38,-42],[-1,-1],[-11,-19],[-11,-18],[-1,-7],[-2,-10],[-1,-8],[-1,-7],[-11,-24],[-7,-27],[-12,-14],[-11,-13],[-25,-11],[-23,-10],[-53,-10],[-19,6],[-15,4],[-2,0],[-4,-1],[-19,-4],[-5,-2],[-25,2],[-3,0],[-5,1],[-24,1],[-2,24],[-1,12],[-1,14],[21,34],[15,18],[9,12],[23,15],[32,25],[16,16],[15,14],[24,18],[30,7],[10,3],[11,5],[6,3],[18,9],[32,12],[25,15],[10,7],[25,14],[25,17],[2,2],[5,3],[29,10],[29,21],[17,13],[1,1],[15,11],[11,8],[5,3],[16,11],[14,6],[7,3],[2,1],[7,3],[16,10],[18,11],[3,3],[40,30],[23,27],[37,20],[42,14],[18,3],[8,1],[2,1],[12,3],[14,5],[35,24],[46,27],[36,22],[2,2],[38,23],[33,16],[43,20],[23,14],[4,3],[17,9],[16,8],[24,14],[23,9],[15,10],[2,1],[10,8],[42,26],[28,18],[33,19],[12,25],[4,7],[1,2],[1,1],[37,33],[16,14],[41,31],[20,13],[12,6],[33,28],[24,10],[15,7],[40,20],[26,33],[34,20],[32,17],[31,12],[29,17],[25,24],[22,16],[22,16],[16,14],[14,12],[13,11],[20,11],[2,1],[20,10],[39,24],[56,30],[25,12],[3,1],[35,3],[7,0],[24,3],[4,3],[17,10],[23,16],[47,35],[12,13],[23,23],[40,18],[5,2],[15,7],[26,11],[38,34],[1,1],[3,2],[33,30],[31,17],[11,7],[11,6],[5,2],[21,12],[18,20],[-25,8],[-7,2],[-26,2],[-34,-14],[0,-5],[1,-10],[0,-10],[-35,-21],[-32,-24],[-4,-2],[-28,-15],[-38,-24],[-33,-17],[-10,-2],[-12,-2],[-32,-6],[-7,-2],[-21,-22],[-3,-8],[-7,-16],[-23,-12],[-9,-4],[-43,-28],[-55,-22],[-18,-19],[-54,-23],[-25,-9],[-1,0],[-29,-17],[-29,-17],[-18,-12],[-22,-15],[-28,-19],[-12,-7],[-17,-7],[-12,-5],[-29,-21],[-6,-2],[-27,-12],[-52,1],[18,32],[17,16],[1,1],[9,8],[2,1],[8,5],[18,12],[9,5],[39,23],[37,14],[20,21],[3,3],[14,6],[34,15],[22,10],[22,10],[11,9],[4,3],[23,20],[8,8],[10,12],[2,2],[1,2],[2,0],[16,0],[22,6],[21,6],[42,23],[32,18],[19,10],[5,4],[10,6],[19,12],[22,13],[12,7],[16,23],[32,7],[20,24],[4,5],[3,3],[15,18],[2,3],[21,15],[3,3],[12,9],[9,8],[28,32],[26,19],[9,4],[20,10],[19,17],[15,15],[23,26],[2,2],[3,4],[15,9],[5,4],[4,2],[22,11],[1,0],[28,-12],[38,17],[19,8],[47,33],[7,39],[34,26],[31,18],[36,27],[37,27],[22,29],[11,15],[-22,1],[-20,0],[-9,-2],[-19,-6],[-30,-13],[-33,-15],[-4,-2],[-26,-12],[-34,-9],[-11,-4],[-14,-5],[-9,-4],[-2,-1],[-1,-1],[-3,-2],[-18,-14],[-28,-13],[-5,-3],[-8,-6],[-18,-13],[-6,-4],[-12,-5],[-31,-25],[-40,-25],[-8,-5],[-36,-18],[-14,-6],[-15,-7],[-38,-23],[-45,-23],[-5,-2],[-17,-7],[-17,-6],[-46,-13],[-12,-9],[-12,-8],[-69,-41],[-13,-8],[-20,-24],[-192,-139],[-7,-5],[-13,-9],[-127,-63],[-143,-72],[-21,2],[55,39],[28,15],[13,7],[-9,18],[-21,-7],[-29,-8],[-11,10],[113,68],[86,52],[14,11],[7,0],[6,1],[-34,-38],[-7,-8],[-15,-7],[-20,-13],[-32,-21],[-11,-20],[23,13],[30,17],[92,46],[2,20],[73,64],[1,1],[16,13],[-33,-6],[-10,-2],[23,23],[2,1],[2,2],[79,56],[22,16],[5,-8],[3,-3],[2,-3],[-26,-23],[-18,-15],[12,-3],[33,10],[7,1],[13,0],[17,10],[16,7],[1,1],[24,10],[79,42],[3,3],[9,8],[20,23],[23,16],[8,12],[32,29],[-57,-24],[-11,-3],[-52,-16],[-28,-8],[53,33],[7,5],[35,22],[18,6],[58,42],[7,5],[11,8],[-13,-7],[-24,-12],[-3,-2],[-3,-1],[-25,-4],[-2,-1],[-14,-5],[-6,-6],[-9,-9],[-14,1],[-3,0],[-7,1],[-42,-27],[-30,3],[18,11],[30,18],[-24,5],[-11,-4],[-36,-12],[-15,1],[-15,1],[-33,-19],[-15,-14],[-22,-22],[-43,-29],[-25,-35],[-6,-18],[-3,-8],[-10,-5],[-9,-5],[-5,-3],[0,-1],[-1,-5],[-3,-18],[-19,-13],[-16,-19],[-9,-11],[-7,-5],[-22,-20],[-33,-28],[-7,-5],[-19,-17],[-38,-10],[-18,-34],[-36,-20],[-26,20],[-22,0],[-10,1],[-20,-1],[-12,-1],[-39,-21],[-24,4],[13,36],[9,29],[1,4],[3,8],[31,52],[-15,-7],[-9,-4],[-23,-11],[0,-1],[-1,-1],[-2,-3],[0,-1],[-9,-12],[-13,-19],[-69,-45],[-122,-77],[-8,-14],[-4,-6],[-17,-25],[-26,-36],[-22,-4],[-16,-2],[-19,-16],[-12,-10],[-48,-6],[-6,-1],[-9,-2],[-15,-3],[-4,-1],[-7,0],[-16,0],[-48,-12],[-42,-8],[-35,-6],[46,17],[63,24],[8,11],[4,6],[4,6],[52,33],[2,1],[-5,0],[-37,4],[-38,-13],[-31,-6],[-9,-3],[-11,-1],[-30,-6],[-38,-11],[-31,-8],[-18,-13],[-16,-9],[-4,-3],[-9,-3],[-17,-8],[-23,-11],[-5,-2],[-40,-12],[-15,0],[-18,-1],[-31,-7],[-44,-14],[-29,-14],[-15,-11],[-15,-11],[-28,-12],[-6,0],[-24,0],[-15,-1],[-22,-2],[-38,-12],[-36,-6],[-33,-8],[-20,-16],[-13,-10],[-30,3],[-11,1],[-28,-13],[-36,2],[-31,-9],[-5,-2],[-8,-4],[-21,-12],[-40,-15],[-22,0],[-21,1],[-31,1],[-14,0],[-7,0],[-5,0],[5,17],[0,1],[0,2],[2,9],[3,9]],[[21503,97568],[44,11],[33,15],[8,4],[21,11],[10,3],[15,6],[18,8],[19,8],[30,11],[19,7],[55,22],[11,3],[2,1],[26,7],[35,12],[21,16],[2,1],[1,1],[12,4],[24,6],[33,10],[26,12],[20,10],[6,2],[6,4],[35,22],[-29,9],[-34,-9],[-36,-14],[-42,-13],[-21,-5],[-13,-4],[-38,-3],[-31,-16],[-24,-10],[-14,-3],[-20,-5],[-38,-15],[-32,-13],[-41,-22],[-33,-22],[-5,-3],[-5,-2],[-39,-17],[-60,-24],[-42,-24],[-45,-23],[-30,-7],[-5,-4],[-32,-24],[-25,-10],[-15,-6],[-5,-3],[-22,-12],[-22,-7],[-22,-24],[-16,-10],[-13,-8],[29,-13],[27,10],[2,1],[2,1],[20,15],[15,11],[33,8],[18,10],[9,6],[3,1],[1,1],[8,3],[11,4],[7,3],[64,36],[20,8],[25,10],[16,15],[7,6]],[[21767,97584],[26,-15],[49,17],[39,41],[-24,7],[-10,3],[-27,-13],[-16,-7],[-15,-7],[-16,-19],[-6,-7]],[[22518,96950],[-1,0],[-10,2],[-30,4],[-47,-38],[-21,-32],[22,0],[14,1],[34,19],[28,15],[8,22],[3,7]],[[22518,96950],[34,12],[25,10],[35,16],[26,18],[13,10],[36,18],[44,27],[7,5],[36,28],[35,35],[-12,6],[-17,8],[-21,-7],[-5,-1],[-15,-10],[-16,-10],[-14,-13],[-14,-13],[-39,-31],[-41,-14],[-5,-3],[-20,-12],[-17,-19],[-5,-6],[-29,-14],[-21,-39],[0,-1]],[[22291,96816],[23,-16],[27,10],[24,24],[30,32],[-72,-11],[-4,-4],[-28,-35]],[[19181,94926],[-34,-28],[28,0],[3,0],[25,0],[22,-5],[14,-3],[2,0],[28,25],[-20,7],[-23,8],[-4,2],[24,29],[9,11],[-37,14],[-16,-3],[-20,-4],[-28,-16],[-12,-7],[45,-24],[-6,-6]],[[17798,94357],[-14,-14],[38,5],[10,1],[38,12],[28,10],[12,20],[4,6],[-13,1],[-24,3],[-28,-8],[-11,-6],[-19,-10],[-21,-20]],[[14252,93506],[-36,13],[-71,-8],[-11,2],[-29,4],[-46,-11],[-40,-4],[-17,-26],[-17,-17],[-9,-10],[-33,-43],[46,-16],[1,-1],[16,0],[14,0],[30,20],[41,8],[32,7],[34,10],[29,5],[24,9],[16,6],[8,2],[22,6],[8,10],[3,3],[8,10],[-2,2],[-8,7],[-13,12]],[[14189,93644],[25,16],[-5,31],[-3,16],[-11,-1],[-19,-3],[-41,-5],[-4,-20],[-1,-3],[37,-21],[5,-2],[17,-8]],[[14286,93693],[23,-4],[30,22],[6,5],[9,7],[38,50],[-31,24],[-9,-1],[-22,-2],[-28,-14],[-6,-3],[-11,-15],[-20,-26],[-12,-15],[-11,-14],[26,-11],[9,-2],[9,-1]],[[15070,94013],[-10,4],[-32,-12],[-10,-33],[-5,-14],[12,2],[34,5],[19,21],[14,16],[-22,11]],[[30959,87423],[-6,5],[-19,17],[-25,0],[-27,1],[-16,-11],[-22,-13],[34,-20],[16,4],[18,6],[42,10],[5,1]],[[30959,87423],[18,-28],[11,-16],[-2,-30],[-8,-5],[-16,-8],[-3,-1],[-1,-1],[-12,-6],[-38,7],[-12,2],[-47,2],[-2,0],[-7,-2],[-14,-3],[-18,-5],[-24,-6],[-17,15],[-1,0],[-43,2],[-41,-14],[-21,-19],[-15,8],[-15,7],[-22,3],[-29,7],[-34,15],[-2,1],[-15,6],[-23,8],[-28,3],[-6,1],[-14,1],[-13,2],[-25,5],[-35,5],[-10,2],[-33,6],[-15,3],[45,24],[-19,27],[-6,6],[-15,15],[-27,4],[-12,1],[-9,1],[-23,1],[-25,4],[-28,0],[-15,0],[-15,1],[-27,4],[-25,4],[-31,2],[-36,5],[-16,0],[-21,0],[-42,4],[-13,1],[-25,3],[-18,4],[-23,6],[-37,2],[-17,-2],[-21,-3],[-3,-1],[-3,-1],[-9,-3],[-9,-3],[-34,-3],[-8,0],[-17,2],[-25,3],[-27,-3],[-28,1],[-6,0],[-34,-1],[-29,4],[-33,5],[-3,0],[-3,0],[-17,1],[-10,1],[-7,1],[-25,3],[-20,1],[-18,1],[-16,-3],[-17,-2],[-22,-8],[-1,0],[-28,-2],[-23,-5],[-33,-2],[-51,-6],[-38,-2],[-9,0],[-21,-1],[-14,0],[-23,-1],[-13,0],[-16,0],[-39,-4],[-25,-3],[-10,-1],[-9,0],[-2,0],[-9,0],[-35,2],[-7,-1],[-28,-4],[-61,-5],[-48,0],[-52,-4],[-45,-4],[-26,-3],[-21,-3],[-20,-10],[-19,-10],[-29,12],[-1,0],[-14,-7],[-7,-3],[20,-30],[2,-2],[40,-9],[15,-5],[20,-6],[-2,-1],[-30,-25],[-22,-1],[-17,2],[-18,3],[-19,1],[-20,0],[-22,-3],[-3,-1],[-12,-2],[-14,-2],[-35,-3],[-27,-5],[-19,-3],[-17,-2],[-7,-1],[-14,-4],[-11,-2],[-27,-3],[-37,3],[-28,7],[-39,-8],[-8,-1],[-4,-1],[-25,-3],[-39,1],[-1,1],[-30,20],[-4,0],[-27,0],[-43,-14],[-3,0],[-35,-4],[-26,-6],[-20,-4],[-41,-8],[-33,-3],[-4,0],[-34,-3],[-39,-7],[-50,-15],[-25,-11],[-8,-3],[-1,-13],[0,-2],[-2,-18],[0,-2],[0,-1],[-21,-6],[-7,-2],[-54,-3],[-46,0],[-33,-9],[-20,35],[-33,6],[-14,2],[-49,-7],[-41,-4],[-16,-7],[-28,-12],[31,-33],[-7,-8],[-16,-19],[-17,-6],[-14,-5],[-13,-2],[-18,-4],[-36,-8],[-33,0],[-41,-6],[-7,1],[-17,3],[-1,5],[-1,6],[-3,22],[-1,3],[14,19],[3,4],[-49,2],[-38,-7],[-2,0],[-3,-1],[-39,-8],[-27,-8],[-13,-4],[-13,-1],[-33,-5],[-42,6],[-9,-2],[-36,-9],[-38,-12],[-51,-17],[-16,-6],[-16,-6],[-12,-5],[-2,0],[-5,-2],[-1,-4],[-1,-1],[-10,-26],[-16,-7],[-5,-2],[-8,4],[-3,1],[-9,3],[-40,3],[-39,-3],[-14,-5],[-12,-3],[-46,-15],[-33,-2],[-33,-16],[7,-19],[8,-24],[-9,-30],[-7,-29],[-19,-28],[-21,-21],[-11,-10],[-54,-39],[-24,-19],[-5,-4],[-22,-13],[-16,-9],[-7,-4],[-26,-14],[-3,-2],[-3,-1],[-7,-4],[-10,-6],[-20,-8],[-6,-2],[-27,-15],[-17,-10],[-24,-5],[-22,-4],[-43,-9],[-16,-4],[-34,-8],[-103,-20],[-28,-5],[-53,-4],[-23,-3],[-25,-2],[-44,-4],[-3,-1],[-29,-5],[-11,-3],[-34,-10],[-22,-8],[-16,-6],[-13,-7],[-30,-17],[-53,-36],[-8,-7],[-15,-14],[-1,0],[0,-1],[-10,-13],[-1,0],[-11,-15],[-33,-16],[-10,-8],[-21,-18],[-36,-19],[-9,-4],[-44,-21],[-32,-17],[-57,-31],[-44,-22],[-26,-14],[-35,-15],[-10,-5],[-21,-10],[-28,-9],[-34,-12],[-24,-9],[-15,-7],[-18,-7],[-6,-2],[-5,-3],[-35,-17],[-69,-23],[-1,0],[-34,-13],[-22,-8],[-13,-4],[-46,-10],[-29,-3],[-7,-1],[-42,4],[-21,-1],[-30,-3],[-7,0],[-11,-1],[-22,-12],[-32,-25],[-38,-40],[-33,-23],[-20,-8],[-20,-7],[-31,-9],[-19,-5],[-8,-3],[-4,-1],[-22,-7],[-22,-11],[-10,-10],[-2,-3],[-4,-3],[-8,-9],[-22,-12],[-6,-4],[-6,-2],[-25,-11],[-37,-31],[-9,-7],[-10,-9],[-9,-6],[-21,-15],[-9,-3],[-7,-3],[-11,-4],[-9,-6],[-15,-11],[-10,-8],[-31,-11],[-21,-8],[-2,1],[-11,3],[-16,3],[-16,-10],[-13,-8],[-35,-19],[-1,-2],[-12,-11],[-6,-6],[-28,-41],[-23,-36],[-16,-27],[-31,-47],[-22,-27],[-3,-4],[-22,-22],[-51,-48],[-8,-8],[-22,-20],[-8,-7],[-6,-5],[-40,-29],[-14,-13],[-11,-10],[-11,-17],[-5,-8],[-9,-5],[-16,-9],[-29,-24],[-29,-24],[-4,-5],[-36,-48],[-5,-7],[-9,-12],[-24,-34],[-19,-28],[-36,-52],[-10,-28],[-3,-8],[-7,-17],[-16,-42],[-20,-58],[0,-2],[-18,-36],[-19,-27],[-60,-51],[-26,-39],[-31,-38],[-21,-24],[-20,-26],[-22,-23],[-42,-41],[-12,-12],[-15,-16],[-23,-21],[-20,-21],[-33,-23],[-7,-5],[-6,-4],[-19,-13],[-18,-30],[-7,-12],[-16,-4],[-9,-2]],[[22980,84573],[-5,-4],[-26,-19],[-5,-4],[-19,-16],[-23,-20],[-31,-29],[-35,-30],[-32,-17],[-16,-11],[-15,-11],[-19,-16],[-16,-14],[-23,-17],[-15,-12],[-10,-9],[-9,-6],[-25,-18],[-33,-23],[-30,-20],[-31,-20],[-37,-29],[-27,-20],[-1,-1],[-21,-21],[-19,-19],[-23,-22],[-33,-35],[-12,-12],[-9,-8],[-17,-15],[-15,-12],[-16,-14],[-33,-27],[-6,-4],[-7,-7],[-33,-29],[-22,-17],[-17,-13],[-34,-15],[-36,-13],[-12,-3],[-25,-6],[-21,-6],[-10,-4],[-22,-4],[-9,-1],[-19,-4],[-22,-5],[-34,-4],[-11,-1],[-38,-3],[-25,-4],[-32,-3],[-43,-11],[-33,-1],[-44,-25],[-41,-37],[-31,-22],[-33,-24],[-2,-1],[-23,-34],[-1,-26],[0,-18],[21,-38],[9,-16],[1,-2],[20,-37],[46,-84],[1,-59],[-5,-37],[1,-74],[1,-65],[8,-8],[1,-1],[6,-5],[-4,-27],[-1,-7],[-2,-4],[-11,-17],[11,-14],[-4,-23],[-17,-32],[-12,-11],[-1,-13],[-1,-15],[-11,-14],[-14,-11],[-2,-2],[-3,-3],[-10,-14],[2,-20],[-5,-1],[-10,-4],[-1,-7],[0,-1],[-1,-10],[-1,-2],[-8,-12],[-14,-3],[-21,-6],[-6,-3],[-7,-3],[3,-17],[-27,-28],[-10,-10],[-57,-67],[-17,-42],[11,-35],[28,-17],[52,-14],[7,-2],[23,-37],[0,-39],[-5,-101],[0,-1],[-1,-3],[1,0],[0,-2],[5,-13],[6,-39],[5,-38],[25,-43],[38,-67],[-5,-11],[-6,-15],[21,-11],[-4,-36],[0,-2],[-1,-15],[8,-22],[41,-17],[26,-26],[-3,-17],[2,-4],[0,-1],[4,-8],[7,-1],[36,-5],[28,-3],[41,-5],[27,-9],[5,-1],[5,-2],[28,-9],[78,-31],[8,14],[3,-1],[28,-12],[20,9],[14,6],[31,6],[10,2],[9,1],[65,3],[28,-4],[7,-1],[17,-1],[2,1],[36,9],[1,1],[67,8],[9,-9],[6,-7],[2,-2],[2,1],[3,0],[34,5],[12,10],[1,1],[4,3],[3,-16],[16,19],[15,-5],[33,-10],[18,-1],[1,0],[19,-2],[22,-14],[4,-2],[16,-6],[2,-1],[2,0],[8,-2],[12,-3],[13,4],[1,1],[3,2],[16,10],[10,-2],[5,-1],[8,-7],[0,-1],[6,-5],[5,-4],[3,2],[2,2],[5,3],[7,5],[19,-6],[9,-3],[3,-2],[23,-16],[34,-5],[17,-9],[10,-11],[55,-20],[17,-6],[17,-6],[57,-10],[55,-9],[55,-7],[41,-6],[9,-4],[5,-3],[2,-1],[5,-3],[5,-2],[15,-24],[20,2],[4,1],[17,13],[13,-18],[-18,-9],[-17,-2],[-6,-14],[17,-27],[2,-19],[0,-6],[1,-13],[-14,-70],[2,-16],[4,-4],[20,-17],[14,-52],[7,-29],[16,-68],[12,-13],[8,-17],[23,-14],[25,-14],[4,-4],[19,-18],[23,-11],[6,-3],[18,5],[-2,23],[13,19],[3,4],[17,16],[25,-5],[33,-6],[2,6],[0,2],[6,13],[14,8],[45,5],[44,5],[10,26],[22,-8],[11,-5],[2,0],[39,-10],[17,15],[26,0],[13,26],[0,4],[1,10],[3,25],[0,2],[35,8],[7,-5],[6,-5],[32,-26],[19,-4],[20,-4],[19,5],[16,3],[87,3],[45,20],[14,11],[3,3],[28,23],[-10,18],[31,27],[61,68],[30,34],[33,92],[6,16],[18,52],[8,27],[1,6],[26,94],[-8,53],[-6,45],[10,18],[0,1],[6,12],[27,0],[6,0],[4,16],[-9,11],[-46,58],[-17,62],[31,8],[-45,67],[-2,3],[-1,3],[-1,5],[-7,24],[-2,7],[-13,6],[-25,14],[-144,38],[-63,1],[-56,-59],[-5,-6],[-62,-97],[-37,-59],[-5,-11],[-9,-19],[-20,-11],[1,-24],[-15,-28],[-18,-29],[-14,-10],[-39,-30],[-7,-6],[-19,-20],[5,23],[4,15],[0,50],[0,2],[-18,24],[-5,6],[-18,17],[18,19],[23,6],[11,2],[26,7],[13,4],[-13,27],[-17,13],[-12,-14],[-1,-2],[-7,-10],[-12,8],[-14,8],[2,3],[14,21],[21,3],[21,48],[21,41],[26,33],[65,80],[60,-31],[16,-13],[17,9],[1,0],[10,5],[-6,10],[-6,8],[6,3],[20,9],[8,11],[5,7],[31,1],[4,-5],[4,-5],[5,-5],[16,14],[-5,7],[0,1],[-8,14],[-16,0],[-13,-2],[-1,29],[12,8],[3,-2],[12,-8],[14,-6],[13,-6],[4,-5],[6,-7],[11,-12],[28,6],[2,8],[4,22],[-5,2],[-17,6],[-19,7],[-17,7],[-17,7],[-10,22],[16,9],[14,10],[9,-11],[12,-16],[28,-20],[1,-1],[49,5],[5,25],[-16,6],[-14,4],[-9,-19],[-30,0],[-12,15],[-21,24],[-4,8],[-7,15],[69,36],[28,22],[88,88],[5,5],[20,26],[4,-11],[5,-13],[3,20],[-13,29],[18,20],[7,8],[18,18],[39,27],[-1,11],[0,11],[20,3],[16,-24],[0,-35],[-4,-23],[19,-13],[10,-8],[5,-3],[37,-2],[11,7],[13,8],[19,0],[12,-6],[7,-4],[9,-38],[7,-28],[-11,-17],[-14,-21],[-5,-35],[-24,-35],[-44,-140],[-19,-23],[-3,-3],[-17,-20],[-25,-8],[-18,-25],[-8,-12],[-31,-30],[-21,-11],[9,-13],[2,-5],[12,-18],[6,-17],[1,-4],[20,-59],[3,-8],[15,-29],[19,-40],[18,-37],[0,-20],[-2,-40],[6,-38],[-6,-19],[6,-28],[0,-101],[0,-116],[-7,-7],[-15,-14],[-2,-26],[-29,-33],[-12,-23],[-6,-20],[-9,-35],[-29,-31],[-5,-9],[-21,-37],[-58,-18],[27,-29],[-14,-26],[-4,-8],[-15,-30],[-72,-47],[-77,-62],[-168,-75],[-32,-16],[-17,-8],[-71,-35],[-105,-79],[-34,-32],[-34,-47],[-24,-43],[-24,-22],[-19,-18],[8,-29],[17,-27],[2,-27],[-15,-28],[3,-29],[10,-34],[1,-2],[1,-2],[3,-12],[3,-11],[-10,-42],[11,-46],[-4,-15],[-5,-24],[-5,-25],[-3,-11],[-19,-57],[-4,-40],[22,-64],[29,-45],[23,-22],[14,-13],[23,0],[15,-12],[0,-1],[22,-19],[14,0],[30,0],[11,-1],[12,-1],[5,-7],[2,-3],[6,-10],[18,4],[13,0],[29,-2],[14,-3],[14,-4],[16,-13],[-30,-25],[5,0],[9,1],[4,-15],[18,-5],[-10,-8],[-8,-6],[-1,-17],[14,-31],[31,-36],[16,-39],[56,-57],[31,-30],[14,-14],[16,-17],[4,-4],[7,-8],[4,-37],[1,-23],[18,-5],[19,-4],[30,47],[2,14],[0,6],[-7,27],[9,16],[16,0],[8,0],[2,1],[3,3],[6,5],[3,2],[-6,5],[-7,5],[-1,1],[-3,18],[15,5],[1,-4],[0,-5],[1,-1],[0,-7],[13,-2],[13,5],[-4,-5],[-11,-15],[-4,-20],[-3,0],[-8,1],[-9,0],[-2,0],[-14,-11],[5,-31],[1,-1],[-1,-1],[-5,-13],[-3,-7],[-2,-10],[-3,-11],[-4,-10],[-4,-10],[6,-38],[4,-24],[0,-2],[-3,-10],[0,-1],[-5,-19],[-27,-11],[-1,0],[-34,-4],[3,-41],[11,-63],[29,14],[18,10],[6,3],[11,4],[3,1],[16,5],[41,-4],[53,1],[44,8],[32,10],[25,31],[6,5],[30,21],[29,40],[17,22],[17,20],[20,37],[13,18],[10,14],[39,58],[12,14],[2,3],[21,27],[33,10],[4,32],[13,17],[8,11],[16,17],[10,11],[14,13],[10,10],[5,4],[27,20],[28,18],[6,6],[2,1],[24,21],[11,22],[15,27],[27,41],[26,23],[10,30],[0,26],[0,2],[-1,26],[5,25],[4,22],[2,9],[1,3],[2,4],[21,47],[11,24],[4,8],[9,20],[3,8],[3,5],[2,5],[7,20],[24,28],[2,3],[5,22],[2,8],[7,36],[1,11],[11,41],[5,19],[3,14],[11,27],[17,44],[-1,48],[-2,68],[1,9],[1,23],[4,34],[0,3],[0,2],[12,57],[6,20],[5,17],[15,34],[2,4],[1,2],[12,17],[14,23],[27,12],[14,6],[32,3],[1,0],[15,6],[3,1],[9,4],[24,12],[3,3],[2,3],[12,13],[29,14],[22,4],[10,2],[5,1],[7,4],[16,9],[22,11],[1,1],[24,12],[44,14],[33,28],[13,6],[11,5],[6,5],[9,8],[10,8],[3,4],[17,5],[10,3],[30,11],[12,5],[28,23],[38,15],[36,21],[35,29],[13,45],[12,21],[0,1],[1,1],[2,3],[11,18],[7,11],[3,5],[0,1],[1,0],[0,1],[12,25],[12,30],[0,2],[13,24],[9,23],[14,45],[9,56],[0,1],[1,22],[0,15],[-13,52],[-6,9],[-10,15],[4,18],[2,12],[4,29],[9,13],[8,10],[5,8],[11,15],[21,27],[23,26],[25,26],[24,17],[18,12],[14,9],[18,12],[17,9],[6,3],[32,14],[1,0],[24,6],[23,5],[8,0],[2,0],[30,1],[26,-1],[3,0],[5,0],[12,-5],[28,-10],[44,-34],[29,-40],[2,-12],[7,-28],[10,-3],[9,-3],[5,-2],[26,10],[33,18],[1,0],[19,13],[14,9],[6,6],[21,22],[2,2],[17,18],[12,12],[11,12],[14,16],[9,62],[-21,0],[-18,0],[-23,9],[-9,4],[-29,26],[-2,2],[0,1],[-6,34],[-5,17],[-5,14],[-4,30],[-4,48],[0,47],[2,30],[0,18],[1,15],[3,52],[8,55],[6,27],[4,18],[11,43],[9,45],[13,43],[5,16],[9,29],[27,33],[22,35],[5,7],[11,21],[2,2],[14,20],[28,27]],[[26411,83272],[1,0],[4,2],[14,7],[29,13],[33,19],[2,1],[16,10],[14,15],[49,56],[8,10],[1,1],[2,2],[10,3],[32,10],[38,4],[12,0],[2,0],[15,-1],[50,-3],[29,-4],[40,-5],[20,-2],[51,9],[9,7],[14,10],[7,3],[2,1],[13,6],[2,1],[18,12],[55,23],[54,19],[7,1],[28,3],[19,-3],[23,-3],[13,2],[17,2],[41,25],[11,8],[12,8],[25,19],[33,22],[14,24],[24,42],[25,48],[15,27],[2,4],[10,5],[25,11],[7,3],[8,5],[25,15],[19,12],[41,21],[41,38],[6,5],[9,9],[8,19],[11,27],[10,14],[11,18],[5,5],[20,21],[24,37],[0,1],[2,3],[8,11],[17,26],[15,20],[7,8],[11,10],[18,16],[28,19],[39,28],[24,14],[1,0],[7,5],[46,12],[50,6],[8,0],[1,0],[15,0],[18,9],[12,6],[26,23],[36,47],[28,43],[11,26],[18,21],[23,19],[22,27],[9,8],[18,15],[52,69],[32,29],[25,36],[39,47],[25,27],[26,29],[41,41],[28,24],[37,22],[3,2],[1,0],[10,5],[17,9],[34,7],[4,1],[23,7],[6,2],[14,4],[27,10],[39,-1],[2,0],[9,0],[18,0],[3,0],[18,0],[29,15],[30,15],[19,6],[9,4],[39,10],[34,12],[33,11],[25,9],[34,4],[11,10],[7,6],[1,2],[3,2],[14,13],[20,17],[32,26],[5,4],[28,19],[38,21],[24,16],[16,11],[39,27],[8,6],[4,2],[33,25],[25,26],[25,21],[36,4],[45,24],[27,19],[29,24],[29,24],[12,9],[21,16],[43,27],[27,9],[35,11],[22,1],[3,0],[4,0],[33,12],[45,-3],[5,0],[12,-1],[11,-1],[42,-1],[47,25],[39,15],[3,5],[2,2],[3,5],[10,13],[9,13],[6,9],[24,50],[-4,16],[-5,25],[0,2],[-33,49],[-21,25],[-8,5],[-11,8],[-28,20],[-2,6],[-4,11],[-5,14],[-48,20],[-5,1],[-8,0],[-18,1],[-45,30],[-14,19],[-7,9],[-25,23],[-3,5],[-28,52],[-4,16],[-9,34],[-2,49],[1,36],[0,5],[11,18],[3,7],[5,14],[17,41],[7,19],[7,28],[3,10],[8,6],[4,3],[17,13],[1,1],[0,1],[6,7],[15,20],[68,17],[18,4],[4,1],[18,5],[10,0],[22,2],[9,3],[1,0],[29,10],[29,5],[7,0],[22,1],[33,1],[29,-1],[44,6],[57,13],[37,3],[23,4],[8,1],[32,2],[1,1],[41,2],[17,2],[20,3],[30,-1],[5,1],[25,2],[33,-7],[2,-1],[11,-2],[21,-4],[25,-4],[25,6],[26,5],[17,7],[8,3],[7,3],[21,10],[36,15],[25,4],[2,0],[11,2],[33,-2],[38,-9],[33,4],[22,-4],[11,-2],[16,-4],[24,-5],[26,-1],[39,12],[24,5],[7,2],[7,1],[4,0],[50,-2],[19,-2],[23,-1],[22,-3],[10,-2],[40,-17],[30,-20],[11,-7],[39,-25],[35,0],[9,-1],[23,-1],[15,-3],[2,-1],[22,-4],[6,-18],[4,-11],[12,-12],[10,-9],[65,-10],[26,-8],[38,-1],[4,0],[11,-1],[32,20],[68,54],[56,30],[49,14],[22,6],[2,1],[37,7],[13,2],[3,1],[13,0],[3,0],[26,0],[14,-2],[2,-1],[10,-1],[37,-8],[2,-1],[11,-2],[14,-2],[26,-4],[28,0],[7,1],[2,0],[8,1],[33,6],[33,17],[10,5],[23,21],[15,18],[2,28],[0,1],[3,2],[15,14],[10,9],[36,29],[31,22],[10,4],[18,8],[18,2],[10,2],[17,2],[5,-1],[2,-1],[3,-1],[21,-6],[43,17],[8,-1],[2,0],[31,-1],[46,-19],[16,-5],[28,-8],[36,-11],[41,-7],[10,-2],[6,-1],[14,-3],[38,-8],[35,-4],[14,1],[22,2],[37,12],[7,2],[3,10],[9,27],[4,10],[1,5],[-2,20],[0,1],[-3,32],[-18,42],[-5,8],[-3,3],[-18,23],[-15,60],[-10,54],[6,37],[-7,22],[19,17],[2,1],[24,9],[-7,23],[-7,21],[-12,34],[-2,28],[-1,8],[-8,23],[-3,7],[0,1],[0,1],[2,38],[-32,47],[-5,3],[-14,9],[-34,21],[-56,40],[-4,2],[-29,26],[-22,13],[-9,5],[-5,3],[-16,9],[-35,18],[-24,13],[-13,6],[-54,24],[-39,21],[-11,6],[-2,1],[-29,15],[-4,2],[-32,21],[-26,19],[-13,5],[-24,8],[-25,12],[-15,8],[-12,6],[-28,7],[-12,3],[-15,4],[-24,7],[-37,12],[-6,2],[-7,3],[-6,2],[-38,13],[-64,23],[-30,9],[-25,8],[-23,7],[-38,23],[-15,2],[-22,3],[-46,11],[-2,1],[-19,12],[-2,0],[-2,0],[-7,0],[-18,1],[-23,-1],[-5,0],[-3,-1],[-21,-13],[-27,-1],[-23,-1],[-20,-3],[-12,-3],[-30,7],[-7,1],[-30,3],[-31,0],[-6,1],[-1,0],[-4,0],[-39,5],[-32,3],[-15,1],[-36,3],[-8,-1],[-12,-1],[-9,-1],[-9,0],[-43,4],[-64,5],[-10,1],[-27,3]],[[33474,86542],[43,-12],[41,6],[33,1],[30,-9],[32,-13],[30,-29],[13,-11],[16,-14],[24,-23],[17,-18],[55,-8],[50,4],[18,1],[40,1],[26,2],[24,3],[7,34],[-3,2],[-4,3],[-12,8],[-20,14],[-35,25],[22,12],[1,0],[17,9],[34,8],[20,5],[7,0],[34,1],[27,22],[2,1],[-13,2],[-26,5],[-36,18],[4,18],[3,16],[-41,12],[-22,5],[-18,4],[-17,4],[-37,4],[-31,-6],[-28,-3],[-31,2],[-47,18],[-29,26],[-17,-7],[-11,-5],[-20,-25],[-16,-12],[-9,-5],[-27,-9],[-41,-11],[-30,-18],[-23,-24],[-23,-7],[-4,-2],[-20,-10],[21,-15]],[[38398,82988],[33,-17],[25,0],[15,4],[2,0],[0,32],[-37,52],[-54,52],[-15,4],[-8,2],[-16,-6],[-12,-3],[-13,-14],[0,-16],[12,-28],[24,-29],[44,-33]],[[25881,81309],[30,-14],[9,23],[1,1],[6,16],[-5,42],[-25,21],[-41,-19],[-21,-27],[-3,-3],[-22,-27],[53,-6],[16,-7],[2,0]],[[29573,79503],[14,0],[-9,7],[-27,23],[-8,7],[-6,2],[-39,14],[-46,3],[1,-1],[1,-1],[31,-49],[50,-5],[35,0],[3,0]],[[36151,74192],[29,-30],[41,20],[34,46],[0,1],[-1,0],[-2,4],[-19,29],[-13,3],[-25,6],[-23,-16],[-12,-9],[-15,-13],[6,-41]],[[45377,73589],[-15,-12],[-31,-15],[-46,-11],[-20,-4],[-38,-6],[-42,-2],[-23,0],[-11,0],[-32,6],[-27,44],[-18,0],[-25,0],[-7,-2],[-18,-4],[-17,-4],[-43,-25],[-25,-16],[-30,-5],[-27,-16],[-10,-7],[-21,-15],[-39,-40],[-30,-26],[-7,-10],[-15,-21],[-14,-12],[-2,-1],[-8,-8],[-22,-30],[9,-53],[20,-53],[14,-40],[6,-18],[12,-46],[-3,-38],[-1,-22],[0,-11],[1,-5],[11,-33],[4,-48],[16,-46],[1,-49],[2,-30],[23,-36],[9,-25],[1,-3],[5,-17],[24,-32],[13,-17],[26,-16],[14,-9],[39,-14],[2,-1],[36,-8],[17,-30],[7,-12],[-2,-44],[-8,-37],[-2,-17],[-3,-21],[-7,-28],[-5,-20],[-6,-44],[-2,-51],[1,-10],[3,-47],[0,-19],[0,-26],[-10,-43],[-5,-47],[-8,-41],[1,-48],[6,-35],[5,-24],[17,-30],[4,-8],[11,-6],[5,-2],[35,-18],[38,-18],[6,-3],[33,-4],[2,-1],[3,0],[18,-3],[13,-1],[7,12],[2,3],[7,12],[35,35],[24,44],[5,11],[17,38],[7,21],[4,10],[13,40],[17,48],[5,14],[1,1],[47,19],[25,3],[28,-1],[10,-2],[12,-2],[27,-6],[11,6],[16,10],[18,14],[14,10],[16,-5],[18,-5],[31,-4],[7,0],[2,-1],[-2,-10],[-4,-13],[0,-1],[-2,-7],[-2,-10],[-25,-46],[-23,-36],[-37,-31],[-20,3],[-15,3],[-4,1],[2,-4],[13,-22],[13,-21],[36,-42],[24,-30],[6,-9],[16,-4],[1,0],[17,-5],[29,1],[9,5],[32,18],[16,5],[16,5],[20,2],[7,1],[10,1],[19,2],[17,20],[17,16],[12,12],[9,10],[22,22],[24,24],[12,14],[5,5],[13,14],[3,4],[6,7],[24,33],[16,27],[11,30],[5,20],[5,23],[3,30],[1,33],[0,4],[-15,29],[0,32],[-4,40],[-6,34],[-3,13],[0,13],[0,26],[-16,32],[-9,-3],[-7,-2],[-18,-5],[-35,-31],[-27,-22],[-12,-25],[-7,-15],[-26,-54],[-39,-51],[-55,-34],[-64,11],[-45,27],[-34,32],[-4,4],[-1,1],[-24,26],[-9,11],[-14,18],[-1,13],[0,23],[10,43],[2,5],[0,3],[15,32],[22,31],[11,45],[26,46],[16,11],[16,10],[25,28],[9,19],[7,15],[9,30],[2,9],[2,6],[10,33],[10,37],[4,19],[4,24],[2,16],[2,11],[5,36],[-1,55],[-1,34],[10,35],[14,59],[-26,21],[-6,5],[-3,3],[-31,32],[-31,44],[-19,39],[-4,9],[-21,30],[-13,8],[-31,18],[-22,22],[-4,7],[-9,16],[0,1],[-2,3],[-4,32],[-20,21],[-6,5],[-2,3],[-21,32],[-13,17],[-8,11],[-25,12],[-6,-5]],[[42486,72504],[-38,6],[-32,-20],[5,-22],[5,-19],[17,-14],[12,-7],[1,-1],[10,-6],[28,-32],[15,-4],[12,-4],[6,-2],[-2,14],[-4,34],[7,43],[-37,33],[-5,1]],[[44332,72888],[-43,36],[-26,-1],[-10,-1],[-4,0],[0,-36],[0,-29],[19,-59],[12,-14],[25,-27],[42,-2],[35,-7],[0,3],[1,10],[1,23],[0,7],[-9,57],[-21,20],[-22,20]],[[74098,72556],[-26,-18],[-52,3],[-27,-12],[-31,-28],[-30,-14],[13,-23],[7,-11],[0,-1],[-3,-15],[-7,-27],[-8,-17],[-2,-3],[-3,-6],[-11,-23],[-6,-70],[19,-43],[3,-4],[19,-32],[11,-16],[6,-8],[22,-53],[48,-61],[39,14],[11,-21],[0,-1],[5,-9],[36,-4],[4,-6],[26,-39],[12,-14],[15,-17],[24,17],[1,3],[5,23],[3,10],[1,6],[3,25],[7,-2],[31,-6],[-4,15],[-4,18],[-10,30],[-4,18],[-3,21],[-15,23],[8,32],[10,-2],[21,-2],[2,-1],[5,0],[29,-11],[22,-11],[15,-8],[25,-38],[1,-2],[1,-3],[13,-24],[7,-15],[27,-95],[14,-57],[0,-2],[0,-1],[0,-3],[-3,-48],[-3,-43],[-2,-23],[12,-28],[2,-6],[9,-25],[12,-28],[4,-10],[8,-52],[31,-57],[24,-44],[1,-2],[10,-21],[5,-12],[1,-2],[14,-50],[0,-49],[10,-29],[-1,-46],[2,-55],[13,-29],[4,-34],[3,-14],[8,-36],[1,-20],[1,-15],[8,-27],[7,-23],[7,-23],[6,-18],[35,-32],[19,-10],[6,-3],[2,-1],[48,-14],[20,-19],[6,-5],[20,-23],[3,-4],[29,-24],[42,-40],[40,-40],[38,-32],[41,-39],[38,-27],[42,-25],[42,-26],[9,-6],[15,-9],[22,-32],[33,-18],[1,0],[64,0],[1,0],[2,0],[37,2],[17,1],[10,-27],[-23,-36],[-23,-40],[-20,-38],[-6,-34],[5,-28],[2,-23],[1,-17],[2,-20],[4,-29],[0,-2],[0,-1],[0,-1],[0,-66],[3,-6],[1,-1],[17,-32],[-2,-36],[10,-11],[13,-13],[1,-1],[9,-9],[43,-34],[32,-9],[16,-11],[6,-5],[31,-13],[4,-2],[27,-13],[27,-11],[11,-4],[5,-2],[1,-1],[14,-5],[13,-1],[15,-1],[14,12],[7,7],[6,5],[37,-10],[10,-2],[33,-6],[41,-11],[7,0],[6,1],[32,-14],[15,-13],[23,-20],[48,-30],[35,-31],[18,6],[1,0],[20,6],[33,13],[39,9],[33,13],[-1,7],[-2,30],[-26,42],[-5,13],[-1,0],[-14,36],[-4,49],[-7,12],[-7,14],[-28,40],[-21,33],[-23,21],[-14,20],[-25,44],[-4,24],[-1,8],[-2,15],[-2,20],[-2,18],[-10,5],[-2,1],[-30,15],[-13,23],[-3,5],[-28,10],[12,29],[2,4],[3,7],[-12,26],[-20,22],[-15,16],[-9,10],[-12,40],[-10,46],[-5,24],[-7,5],[-14,10],[-41,-37],[-3,-38],[3,-7],[6,-12],[-5,-14],[7,-12],[15,0],[1,0],[5,0],[5,-8],[24,-37],[7,-10],[1,-1],[2,-4],[0,-20],[-37,14],[-4,4],[-1,0],[-33,32],[-15,51],[-12,20],[-6,10],[10,23],[1,1],[0,4],[2,20],[-7,1],[-19,4],[16,37],[7,17],[6,14],[-12,39],[-11,8],[-13,11],[-11,-3],[-6,-2],[-18,-5],[-9,19],[-7,14],[17,33],[8,14],[5,10],[1,2],[-9,11],[-28,33],[-14,29],[-1,2],[-17,26],[-24,9],[-26,14],[-25,0],[-30,27],[-13,7],[-11,5],[-20,11],[-32,27],[-13,19],[-10,14],[-11,30],[-8,23],[-16,45],[-22,20],[-9,9],[-9,4],[-29,12],[-43,33],[-24,22],[-20,40],[-1,53],[18,21],[5,5],[20,14],[-9,11],[-7,8],[-27,32],[-11,37],[12,27],[8,17],[37,42],[20,38],[19,47],[2,17],[3,22],[-2,17],[-2,24],[7,56],[17,26],[13,33],[16,29],[13,24],[17,31],[3,5],[14,20],[66,57],[43,30],[20,9],[1,0],[23,12],[22,3],[17,3],[43,8],[19,-3],[17,-2],[12,-2],[7,3],[14,6],[4,2],[2,1],[10,36],[5,70],[4,39],[4,40],[2,50],[-4,28],[3,49],[4,12],[8,24],[14,19],[1,2],[16,24],[22,41],[20,62],[20,46],[28,50],[29,43],[21,22],[12,13],[55,21],[6,3],[47,0],[35,7],[33,33],[-2,5],[-11,25],[-4,10],[-1,2],[-45,33],[-26,38],[-30,41],[-9,16],[-6,10],[-2,7],[-4,2],[-14,9],[-26,16],[-17,10],[-5,3],[-21,1],[-23,2],[-7,0],[-10,-3],[-18,-5],[-18,-5],[-5,-1],[-22,-6],[-12,-4],[-9,-4],[-12,-5],[-11,-5],[-12,-6],[-11,-4],[-28,-12],[-20,-8],[-16,-7],[-3,-1],[-14,-6],[-17,-7],[-2,-1],[-11,-4],[-19,-6],[-8,1],[-21,-5],[-35,-6],[-48,-1],[-59,-4],[-57,6],[-50,13],[-17,5],[-11,4],[-33,12],[-33,15],[-8,6],[-24,17],[-27,28],[2,32],[-10,25],[-1,1],[-4,7],[-27,17],[-6,1],[-18,2],[-1,0],[-32,5],[-5,-1],[-13,-3],[-3,-1],[-4,-1],[-6,-1],[-8,-2],[-14,-3],[-7,-3],[-8,-3],[-13,-5],[-18,-7],[-27,1],[-3,0],[-23,-13],[-17,-21],[-12,-15],[-10,-13],[-11,-10],[-23,-21],[-6,-9],[-4,-8],[-16,-25],[-7,-12],[-13,-20],[-20,-33],[-19,-18],[-27,-29],[-17,-10],[-13,-14],[-3,-1],[-5,-2],[-4,-2],[-15,-9],[-5,-3],[-6,-4],[-21,-15],[-7,-7],[-6,-5],[-2,-12],[-2,-11],[1,-11],[2,-11],[0,-5],[0,-6],[3,-26],[-17,-27],[-17,-7],[-15,-6],[-7,-9],[-11,-24],[-7,-12],[-13,-24],[-15,-16],[-17,-18],[-21,-26],[-29,-19],[-29,-5],[-9,-2],[-28,-4],[-28,-3],[-22,-16],[-23,-16],[-45,-8]],[[75257,70038],[-7,1],[-2,0],[-31,-2],[-26,2],[-51,1],[-23,-5],[-11,-3],[-4,-2],[-14,-5],[-21,-9],[-1,0],[-31,-5],[-40,-17],[-33,-6],[-55,1],[-19,-1],[-21,-2],[-8,20],[-4,10],[-25,-8],[-4,-47],[-5,-24],[-2,-10],[3,-38],[3,-26],[2,-20],[7,-70],[1,-23],[1,-17],[38,-35],[22,41],[26,39],[22,40],[7,15],[4,9],[3,9],[16,9],[6,4],[20,13],[-5,-52],[-5,-16],[-5,-15],[-9,-20],[-7,-18],[-33,-57],[-19,-32],[-15,-24],[-5,-10],[-10,-19],[-27,-46],[-10,-4],[-14,-5],[-23,-25],[1,-2],[11,-39],[4,-6],[8,-14],[23,-16],[0,-4],[-3,-14],[-21,-2],[20,-25],[3,-3],[140,-169],[11,-1],[5,0],[28,-31],[9,7],[2,2],[-31,36],[2,5],[4,11],[40,-46],[11,-21],[12,16],[3,5],[6,7],[1,-2],[28,-45],[26,-35],[17,-40],[22,-41],[29,-43],[14,-29],[4,-37],[4,-29],[2,-41],[1,-32],[1,-14],[16,-27],[11,-7],[14,-8],[19,-26],[18,-42],[67,-25],[16,-21],[37,-40],[27,-37],[10,-14],[5,-3],[27,-16],[10,-6],[5,-12],[8,-23],[0,-24],[0,-17],[-4,-18],[-3,-10],[-16,-25],[-39,-10],[-34,-14],[20,-8],[16,-7],[35,-39],[30,-4],[13,-2],[34,19],[3,12],[0,4],[7,31],[-10,28],[2,7],[4,20],[8,33],[18,30],[-25,35],[7,8],[1,2],[15,20],[38,2],[19,-13],[1,0],[7,-5],[16,-11],[8,7],[15,13],[20,17],[41,26],[-19,31],[25,18],[31,11],[18,16],[22,0],[8,0],[5,0],[7,-7],[8,-8],[13,-14],[11,-27],[2,-7],[19,36],[0,1],[1,2],[14,31],[16,48],[-1,14],[0,12],[2,2],[34,27],[26,15],[33,12],[5,2],[-9,36],[9,3],[22,7],[17,13],[17,13],[16,39],[-3,8],[-6,17],[-22,26],[-33,34],[-17,12],[-19,14],[-40,40],[-21,8],[-10,3],[-17,-22],[-1,-8],[-3,-33],[-14,22],[-16,26],[10,23],[5,13],[2,7],[7,17],[-12,41],[-16,16],[-24,23],[-5,7],[-1,2],[-16,25],[-8,22],[-1,23],[-1,18],[-3,10],[-5,15],[-3,17],[-2,13],[2,32],[0,49],[2,12],[5,25],[-6,24],[-7,27],[-13,29],[-2,11],[-1,12],[-10,63],[-13,56],[-10,20],[-27,52],[-7,42],[-23,7],[-34,30],[-28,25],[-12,8],[-38,25],[-46,14],[-35,7],[-23,4],[-33,3],[-24,6],[-43,7],[-25,7],[-7,1],[-15,4],[-23,5],[-16,4],[-16,5],[-26,8],[-33,7]],[[74925,68490],[-13,5],[-6,-4],[-18,-10],[-37,-35],[-17,-16],[-14,-41],[3,-15],[57,15],[26,21],[3,2],[12,9],[-2,40],[1,7],[1,3],[4,19]],[[73815,72298],[-13,38],[-11,24],[-7,16],[-12,-1],[-19,-1],[-5,-5],[-15,-14],[-8,-8],[7,-31],[35,-44],[90,-93],[16,4],[-32,34],[-1,9],[-1,50],[-24,22]],[[73818,72392],[62,-68],[-1,37],[-4,10],[-8,21],[-3,6],[-13,23],[-14,9],[-10,6],[-14,2],[-16,2],[4,-9],[17,-39]],[[77560,66195],[37,-20],[33,4],[23,33],[-1,18],[-1,23],[-15,3],[-15,2],[-22,25],[-1,1],[-1,2],[-9,26],[-21,19],[-21,28],[-11,18],[-7,11],[-28,23],[-3,21],[-3,15],[-19,30],[-25,40],[-8,10],[-15,19],[-14,-2],[-11,-1],[-1,0],[-1,1],[-22,8],[-7,2],[-1,1],[-5,0],[-32,1],[-22,33],[-8,-22],[-9,-27],[-28,-24],[-30,-14],[-9,-52],[14,-26],[8,-14],[35,-21],[34,-40],[44,-38],[9,-6],[32,-24],[32,-24],[19,-9],[14,-6],[47,-14],[35,-26],[1,0],[9,-7]],[[79135,65923],[50,-9],[12,6],[13,6],[-1,1],[-20,28],[-7,11],[-44,41],[-19,-11],[-25,-14],[9,-36],[0,-2],[2,-6],[13,-7],[17,-8]],[[80116,65936],[-19,-45],[1,-26],[0,-1],[0,-13],[6,-14],[2,-3],[8,-20],[7,-7],[4,-3],[16,-16],[7,38],[3,13],[1,6],[-3,27],[-1,11],[24,2],[19,-21],[14,-15],[20,3],[16,2],[-4,-36],[-1,-10],[8,-24],[9,-1],[9,0],[2,0],[6,0],[23,8],[36,8],[47,-1],[7,4],[34,22],[1,1],[3,2],[13,48],[8,11],[19,25],[-2,42],[-11,9],[-32,25],[-22,32],[-7,20],[-2,6],[-14,26],[-7,14],[-4,6],[-30,15],[-9,4],[-2,1],[-2,1],[-6,-2],[-34,-12],[-6,-2],[-10,-1],[-31,-5],[-18,-34],[-6,-10],[-9,-19],[-22,-45],[-8,-11],[-21,-24],[-30,-11]],[[78803,66081],[13,5],[19,7],[0,2],[1,3],[5,13],[4,14],[-21,41],[1,18],[10,19],[-3,12],[-48,-38],[-21,-14],[-12,-29],[10,-15],[13,-19],[2,-3],[27,-16]],[[79039,66185],[26,-10],[29,30],[38,11],[8,36],[2,9],[-25,15],[-24,0],[-10,0],[-21,13],[-18,22],[-32,28],[-2,1],[-28,1],[-1,0],[-1,-1],[-4,-3],[-13,-11],[-9,-7],[-8,-41],[28,-58],[39,-26],[26,-9]],[[79194,64562],[-37,2],[-13,-4],[-10,-3],[-9,-10],[-15,-19],[18,-11],[1,0],[14,-9],[37,16],[7,20],[1,3],[6,15]],[[79194,64562],[5,3],[6,2],[32,14],[5,-2],[6,-3],[8,-5],[6,-3],[-2,-7],[-9,-39],[32,10],[4,4],[29,26],[30,32],[23,-9],[16,-6],[1,0],[-29,-57],[-23,-11],[-16,-9],[-31,-12],[-40,-16],[-2,-10],[-2,-7],[-4,-20],[-2,-13],[-3,-11],[50,-8],[11,6],[9,5],[16,9],[11,-14],[10,-15],[6,-7],[12,6],[1,1],[14,7],[47,19],[3,32],[2,2],[21,21],[12,-7],[24,-15],[4,1],[6,1],[28,3],[12,-9],[31,-25],[3,7],[12,29],[-6,34],[16,48],[14,-4],[18,-5],[3,-2],[32,-23],[-2,-19],[0,-3],[0,-6],[1,-9],[0,-1],[2,-15],[34,-18],[25,-20],[16,-13],[5,-41],[1,-3],[0,-3],[-33,-8],[-8,-1],[-12,14],[-2,2],[-11,14],[-35,-27],[18,-26],[6,-8],[15,-17],[1,-1],[4,-3],[13,-12],[14,-11],[4,-1],[10,-4],[19,-6],[24,20],[6,5],[4,3],[9,6],[0,-1],[0,-2],[5,-43],[-15,-9],[-10,-6],[-24,-27],[9,-26],[6,-16],[7,3],[5,1],[33,12],[23,-2],[1,0],[4,0],[27,3],[2,-10],[5,-23],[5,-21],[3,0],[7,0],[22,1],[4,1],[18,0],[32,-18],[34,38],[32,35],[16,24],[8,13],[3,18],[4,26],[5,24],[7,34],[3,36],[34,-12],[33,25],[40,51],[19,5],[11,3],[17,0],[25,0],[14,-1],[10,-1],[24,-6],[3,0],[19,-5],[0,-1],[-1,-1],[-21,-40],[6,-41],[39,-26],[8,-33],[1,-5],[6,-7],[22,-24],[4,-4],[3,-2],[22,-18],[41,-20],[6,-2],[39,-22],[8,6],[3,2],[23,17],[1,1],[30,24],[1,0],[25,-7],[10,-38],[1,-4],[1,-2],[3,4],[10,17],[3,5],[17,40],[1,3],[1,1],[-1,38],[0,7],[0,2],[0,12],[1,34],[8,-6],[10,-6],[6,-5],[8,-5],[4,-3],[3,-2],[18,-14],[8,-7],[23,-41],[6,-8],[21,-30],[2,-33],[4,-22],[3,-21],[2,-12],[1,-1],[40,-33],[3,-2],[1,5],[7,46],[19,7],[17,7],[24,-12],[1,0],[14,-8],[36,-10],[11,22],[5,12],[6,15],[6,16],[10,13],[11,14],[8,21],[6,16],[27,-6],[4,-1],[17,-14],[18,-14],[5,-7],[15,-20],[11,-14],[25,-22],[14,-11],[12,2],[16,2],[23,17],[36,14],[49,22],[39,25],[49,10],[25,0],[4,0],[3,0],[51,14],[17,15],[6,5],[14,14],[4,0],[21,4],[15,2],[1,-1],[2,-2],[12,-11],[15,-14],[29,-1],[13,12],[6,6],[10,10],[13,-2],[1,-1],[7,2],[13,2],[22,16],[16,17],[12,0],[4,0],[12,0],[46,56],[-12,20],[-12,22],[19,26],[32,29],[46,10],[11,-1],[1,-1],[12,-1],[19,-10],[5,-3],[1,-2],[2,-2],[13,-19],[5,-7],[3,-24],[6,-35],[29,2],[5,-23],[3,-15],[9,-17],[14,-29],[-2,-33],[-1,-12],[-19,-18],[-13,-2],[-10,-2],[-42,-19],[-31,-17],[-19,-34],[-3,-43],[0,-22],[1,-8],[9,-34],[24,5],[25,8],[5,2],[32,24],[23,-9],[1,0],[17,-7],[1,-1],[1,1],[1,0],[1,1],[12,4],[6,3],[7,3],[1,0],[5,2],[1,1],[3,8],[0,1],[4,9],[5,13],[-11,37],[-3,9],[-3,34],[-1,12],[0,1],[0,7],[1,8],[3,25],[18,5],[6,2],[36,-18],[23,-36],[13,6],[30,13],[29,-16],[6,-3],[4,-1],[5,-2],[7,-4],[7,-2],[12,-5],[11,-28],[-13,5],[-6,2],[-7,3],[-11,4],[-5,-8],[-6,-9],[-1,-2],[-1,-1],[-17,-39],[-13,-33],[-5,-12],[-3,-15],[-4,-18],[10,-32],[1,-4],[3,2],[32,19],[14,9],[23,-31],[-6,-17],[-3,-7],[46,-33],[21,-13],[15,-9],[26,6],[19,5],[9,3],[2,-3],[4,-3],[23,-20],[-1,-19],[-1,-9],[0,-13],[28,-2],[4,10],[1,2],[12,28],[6,-15],[10,-24],[4,-10],[3,-7],[21,14],[4,22],[3,15],[2,14],[33,5],[19,-5],[5,-1],[10,-2],[42,10],[5,1],[1,1],[33,9]],[[82573,63938],[-2,-6],[-8,-26],[-10,-16],[-13,-21],[24,-51],[23,-9],[26,-11],[27,14],[-32,22],[-23,31],[0,25],[0,2],[0,21],[-6,13],[-3,6],[-3,6]],[[82573,63938],[7,3],[16,6],[14,6],[26,-7],[16,-5],[39,-20],[19,-10],[33,-18],[16,-29],[19,-26],[4,-7],[1,1],[2,4],[17,27],[4,6],[25,22],[12,4],[4,1],[11,3],[26,24],[-25,26],[-3,4],[12,48],[8,45],[24,3],[11,2],[10,-27],[18,-35],[7,-33],[8,-10],[24,-28],[26,-7],[7,-3],[34,-15],[9,-1],[31,-4],[20,10],[11,6],[27,21],[16,12],[12,8],[8,4],[20,13],[2,5],[7,29],[27,15],[23,22],[2,5],[10,26],[3,8],[-17,16],[-9,8],[-8,46],[-1,6],[3,18],[0,2],[2,11],[48,17],[2,1],[28,25],[9,8],[3,33],[2,17],[2,10],[18,11],[24,14],[22,14],[19,37],[-2,16],[-1,13],[-3,28],[-2,13],[-3,24],[0,5],[0,3],[-2,47],[28,37],[27,17],[17,31],[12,28],[1,4],[29,10],[3,1],[21,8],[8,3],[35,13],[30,24],[14,35],[23,29],[4,12],[8,20],[11,15],[1,1],[9,11],[11,28],[7,16],[16,52],[-1,2],[0,1],[-21,49],[-7,11],[-1,3],[-3,4],[0,1],[-8,12],[-13,20],[-10,16],[-11,11],[-21,22],[-40,26],[-19,7],[0,1],[-9,3],[-9,4],[-46,14],[-32,-12],[-3,-5],[-18,-27],[-17,-6],[-21,-8],[-23,-22],[-32,7],[-34,2],[-7,11],[-5,7],[-12,18],[-2,3],[-22,27],[-20,22],[-6,5],[-28,27],[-8,12],[-10,15],[-32,36],[-17,19],[-19,-14],[-4,-3],[-2,-1],[-29,-20],[-6,4],[-22,15],[-22,-2],[-24,-9],[-14,0],[-18,0],[-4,18],[-4,18],[13,29],[-6,24],[-5,20],[-41,40],[-18,3],[-18,3],[-12,37],[4,36],[-1,29],[-5,26],[-6,31],[-4,27],[-3,22],[-6,57],[-1,10],[-3,31],[-5,16],[-5,13],[-4,26],[-3,20],[-14,40],[-31,54],[-5,8],[-22,36],[-6,32],[-3,16],[-10,27],[-4,10],[-2,5],[-11,22],[-19,16],[-11,9],[-14,-2],[-15,-2],[-13,-2],[-9,0],[-5,-1],[-1,1],[-1,1],[-5,2],[-13,8],[-16,11],[-15,11],[-26,39],[-12,1],[-31,2],[-30,0],[-5,5],[-19,20],[-4,4],[24,13],[3,-1],[10,-1],[23,-3],[-16,42],[-5,13],[0,12],[-2,38],[-10,17],[-16,26],[-6,40],[-5,44],[-17,38],[-24,36],[-34,34],[-1,0],[-62,6],[-15,-10],[-15,-11],[-36,-16],[-4,-40],[-29,-3],[-13,-1],[-28,35],[-1,37],[0,12],[-14,13],[-16,14],[-35,12],[-54,25],[-33,7],[-32,10],[-13,5],[-18,13],[-23,17],[-44,33],[-27,23],[-56,20],[-63,12],[-47,-5],[-30,-6],[-2,0],[-2,0],[-17,2],[-26,3],[-9,-5],[-11,-5],[-4,-1],[-1,0],[-8,3],[-8,3],[-10,4],[-5,-4],[-27,-16],[-28,-2],[-12,-1],[-6,-3],[-14,-5],[-40,-13],[-36,-2],[-20,4],[-16,3],[-22,-2],[-11,-1],[-21,6],[-13,4],[-63,-2],[-16,0],[-38,3],[-23,2],[-20,2],[-3,2],[-3,1],[-22,9],[-11,-5],[-1,-1],[-15,-7],[21,-12],[9,-6],[10,-5],[25,-12],[18,2],[5,0],[23,-9],[9,-3],[-23,-23],[-28,-10],[-47,-3],[-11,10],[-20,15],[-6,1],[-28,3],[-3,3],[-3,2],[-34,39],[-18,39],[-12,-1],[-14,-1],[-33,-3],[29,-19],[-12,-7],[-10,-7],[-16,-1],[-9,-1],[-27,5],[-2,1],[-18,2],[-10,1],[-26,0],[-9,1],[-36,-2],[-22,-1],[-1,0],[-5,-4],[-37,-25],[-4,-29],[-6,-47],[6,-45],[-11,0],[-24,0],[-27,8],[-12,-12],[-18,-16],[-1,-3],[-2,-4],[-8,-19],[-4,-8],[10,-35],[32,-10],[4,-2],[33,-22],[4,-2],[2,-1],[25,-12],[4,-2],[1,0],[8,-1],[22,0],[10,-9],[17,-15],[15,-5],[2,0],[23,-8],[22,-13],[23,-11],[10,-6],[38,-17],[39,-5],[7,-1],[39,-7],[45,-10],[43,3],[44,-11],[39,1],[3,0],[9,0],[41,-3],[38,-9],[35,-15],[27,4],[4,-14],[4,-16],[-5,-2],[-1,0],[-13,-6],[-2,-1],[-12,-1],[-28,-3],[0,-1],[1,-28],[1,-24],[6,-1],[16,-4],[3,0],[0,-1],[5,-1],[-9,-15],[-3,-6],[-3,-5],[-22,-7],[-12,-4],[4,-4],[0,-1],[5,-5],[14,-16],[21,-4],[22,-4],[3,0],[1,-1],[25,-32],[0,-1],[1,0],[-7,-7],[-23,-22],[-8,-28],[-6,-19],[-9,-22],[-10,-21],[-15,-10],[-6,-3],[-5,-4],[-35,-9],[-23,-10],[-7,1],[-15,4],[-24,3],[-4,5],[-1,0],[-13,16],[-1,-2],[-5,-13],[-11,-31],[-18,-41],[0,-7],[-2,-22],[19,-31],[1,-2],[15,-1],[11,-1],[8,-1],[3,0],[14,-2],[7,0],[12,-2],[9,-4],[11,-5],[37,-10],[47,-19],[-2,-10],[0,-1],[-1,-11],[-5,-25],[-28,-2],[-24,2],[-36,17],[-53,12],[-16,-11],[-31,-22],[-37,1],[-27,14],[-15,8],[-43,6],[-25,3],[-16,2],[-38,-2],[-12,11],[-9,9],[-11,2],[-29,6],[-47,2],[-43,-6],[-65,-33],[-33,-27],[-34,-13],[-21,-58],[-48,-54],[-19,-30],[-13,-4],[-18,-6],[-20,-4],[-4,0],[-11,3],[-16,5],[-22,-13],[-15,2],[-6,1],[-30,-2],[-4,27],[0,2],[-3,-1],[-21,-11],[-23,4],[-9,1],[-27,30],[-25,-1],[-39,-13],[-1,0],[-4,-2],[-18,-9],[-24,-13],[-3,-60],[0,-7],[-15,-37],[-3,-8],[-14,-13],[-7,-6],[-18,-17],[-5,-8],[-6,-9],[-4,-6],[-33,-51],[-17,-57],[-10,-15],[-5,-9],[-1,-1],[-3,-3],[-20,-35],[-12,-27],[-5,-12],[0,-2],[-2,0],[-32,-5],[-17,-2],[-40,12],[-3,2],[-5,-4],[-30,-23],[-6,-4],[-13,-8],[-15,-10],[-6,-37],[-1,-1],[-3,-21],[0,-1],[-10,-36],[-3,-15],[-27,-17],[-1,0],[-1,-1],[-8,-4],[-15,-9],[-24,-26],[-9,-10],[-1,0],[0,-1],[-36,-6],[-33,24],[-31,41],[-21,0],[-19,0],[-9,34],[-3,10],[-13,36],[-5,2],[-2,1],[-25,11],[-13,-13],[-13,-12],[-38,-5],[-14,26],[18,10],[33,29],[8,5],[18,10],[3,5],[23,38],[-1,31],[-20,-11],[-23,-36],[-33,-25],[-45,-20],[-5,-2],[-29,-12],[-10,44],[19,8],[27,11],[15,28],[3,5],[-19,7],[-3,1],[-4,2],[-22,8],[-32,31],[-1,0],[-19,29],[10,58],[20,9],[15,6],[16,33],[32,28],[-8,24],[0,2],[-9,29],[-33,37],[-8,9],[-3,1],[-5,1],[-30,9],[-24,19],[-1,0],[0,1],[-1,0],[-34,2],[-43,9],[-15,3],[-26,-16],[-15,-8],[-26,-54],[-21,-39],[-25,-23],[-42,-64],[-14,-27],[-4,-7],[-21,-26],[-11,-5],[-14,-6],[-33,16],[-2,0],[-28,-28],[0,-5],[0,-25],[-6,-17],[-4,-14],[-8,-8],[-19,-18],[-3,-30],[13,-21],[12,-19],[2,-2],[-25,-21],[-14,-6],[-2,-1],[-9,-4],[-20,-17],[-3,-3],[-7,-6],[-4,-5],[-15,-15],[-2,-2],[-1,-2],[-11,-18],[-6,-10],[-5,-9],[-7,-44],[-3,-16],[0,-1],[3,-31],[16,-24],[-2,-21],[-1,-8],[0,-1],[-1,-9],[-18,-6],[-14,-4],[-5,-2],[-4,-1],[-14,-28],[-7,-30],[4,-18],[3,-15],[1,-5],[11,-37],[0,-1],[26,-28],[4,6],[10,17],[19,32],[32,-10],[16,-5],[8,-3],[2,5],[13,30],[28,48],[28,30],[21,9],[3,1],[5,1],[20,4],[8,1],[1,0],[7,1],[5,1],[9,2],[2,2],[1,1],[9,10],[21,24],[0,-1],[12,-35],[5,-27],[1,-3],[1,-7],[22,-15],[18,-11],[19,-2],[13,-1],[4,1],[6,3],[10,4],[1,0],[6,2],[1,-2],[0,-3],[8,-37],[32,6],[1,7],[1,5],[1,14],[1,10],[15,26],[9,2],[16,3],[9,-5],[9,-5],[7,-14],[5,-11],[-17,-42],[-11,-7],[-25,-17],[-9,-11],[-14,-17],[-36,-26],[-8,-15],[-9,-15],[0,-1],[-3,-5]],[[80750,65848],[-30,34],[-20,-18],[-11,-12],[-28,-23],[-9,-32],[46,1],[16,1],[34,2],[2,44],[0,3]],[[80568,65870],[-7,50],[-21,-2],[-11,-1],[-22,-25],[-5,-12],[-9,-21],[4,-19],[5,-17],[35,1],[11,16],[20,30]],[[80876,65893],[4,-29],[9,1],[17,1],[3,0],[1,0],[49,6],[1,10],[3,39],[-42,-8],[-46,-8],[1,-12]],[[81100,66030],[-22,24],[-26,-20],[-4,-3],[-6,-5],[-6,-43],[-3,-21],[19,0],[24,-1],[23,13],[1,19],[0,24],[0,13]],[[80957,66046],[9,8],[20,22],[-1,56],[-29,6],[-15,-21],[-9,-13],[3,-34],[11,-12],[11,-12]],[[79275,66114],[1,28],[0,1],[-14,29],[-12,6],[-22,10],[-4,5],[-8,8],[-14,15],[-3,4],[-25,-37],[5,-58],[1,-1],[32,-18],[34,-21],[20,20],[9,9]],[[80207,66495],[-17,10],[-9,-2],[-9,-2],[-9,-1],[-9,-2],[-22,-4],[10,-18],[10,-18],[32,-28],[41,2],[3,34],[2,16],[-23,13]],[[79884,66640],[-2,5],[-5,11],[-20,46],[-2,15],[-1,10],[-9,2],[-10,3],[-25,-2],[-8,-1],[-9,0],[-11,-1],[-21,-5],[-55,-11],[-29,8],[-39,34],[-30,-1],[-20,-1],[0,-11],[0,-53],[0,-2],[8,-48],[-20,-11],[-16,23],[-2,2],[-19,14],[-5,4],[-17,32],[-22,-13],[-1,-35],[26,-18],[9,-6],[15,-26],[3,-4],[3,-6],[-8,-21],[-6,-17],[10,-33],[16,32],[26,-6],[22,-13],[3,8],[7,28],[1,7],[0,7],[2,39],[15,12],[5,4],[1,1],[10,-1],[2,-1],[14,-2],[43,5],[33,-2],[24,-29],[55,14],[56,14],[3,0]],[[79884,66640],[-36,-34],[2,-39],[34,-18],[7,-1],[20,-1],[24,-21],[25,10],[8,3],[2,-3],[10,-16],[19,-28],[48,9],[-8,11],[-14,21],[-12,35],[-9,10],[-12,15],[-6,2],[-5,2],[-19,7],[-17,7],[-13,5],[-23,-3],[-25,27]],[[81775,64373],[-36,1],[-41,-54],[0,-25],[0,-31],[0,-18],[0,-15],[0,-3],[11,-14],[3,0],[6,0],[5,0],[7,0],[10,16],[0,3],[13,12],[23,31],[27,0],[-4,61],[-18,26],[-6,10]],[[79498,64253],[8,28],[-22,19],[-3,-1],[-2,-1],[-14,-6],[-9,-4],[-39,-25],[-28,1],[-20,-15],[-11,-8],[-10,-14],[-17,-24],[31,-18],[25,1],[19,1],[6,1],[5,8],[25,46],[9,2],[30,6],[17,3]],[[73345,64442],[39,9],[-15,32],[-6,13],[56,-6],[10,-18],[9,-14],[6,-2],[40,-7],[37,10],[8,32],[4,12],[23,37],[3,-2],[38,-17],[8,3],[16,6],[-16,27],[-5,9],[28,4],[25,-11],[1,0],[16,-10],[8,-5],[53,-40],[29,-35],[19,-16],[20,-11],[2,30],[0,5],[0,5],[-5,23],[-7,31],[-45,43],[-17,11],[-7,4],[-7,4],[-19,12],[-23,14],[-31,23],[-13,8],[-17,8],[-27,-32],[-6,-25],[-4,-17],[-23,6],[-12,5],[-13,5],[-35,25],[-19,15],[-26,18],[-16,11],[-19,20],[-1,1],[-5,6],[-15,32],[-23,26],[-13,24],[27,22],[15,34],[-6,11],[-17,29],[-42,32],[-33,14],[-2,1],[-11,5],[-11,5],[-12,6],[-28,18],[-8,5],[-38,29],[-27,3],[-4,1],[-7,0],[-50,4],[2,-42],[40,-49],[3,-14],[2,-14],[10,-11],[1,0],[8,-9],[12,-9],[9,-7],[21,-15],[12,-7],[25,-21],[24,-15],[15,-20],[14,-29],[-9,-35],[-4,-17],[-3,-13],[0,-3],[-9,-5],[-16,-8],[4,-3],[7,-6],[12,-12],[24,-15],[5,-7],[1,-1],[14,-20],[-7,-34],[-33,-17],[-30,12],[-10,4],[-31,26],[-42,-6],[-3,-42],[-54,-17],[27,-30],[30,-14],[10,-6],[19,-12],[16,-7],[1,-1],[16,-7],[28,12],[12,5],[36,10],[37,-29]],[[74125,64666],[16,-14],[51,-32],[32,-18],[6,1],[20,5],[-2,3],[-11,27],[-31,33],[-1,0],[0,1],[-37,14],[-23,11],[-33,16],[-8,1],[-6,1],[-17,3],[27,-37],[17,-15]],[[75260,64647],[45,-49],[24,16],[-27,32],[-11,23],[-2,3],[-7,14],[-30,37],[-41,33],[0,-3],[0,-6],[0,-32],[15,-36],[0,-16],[0,-13],[34,-3]],[[73929,64582],[-44,29],[-19,8],[-14,6],[-11,4],[20,-34],[12,-19],[39,-32],[46,4],[-29,33],[0,1]],[[74021,64565],[9,-33],[-3,-26],[-1,-6],[11,-2],[5,0],[15,-3],[19,-3],[18,-3],[32,-18],[17,-9],[27,-16],[34,9],[-19,17],[-18,15],[-33,24],[-47,22],[-4,2],[-5,2],[-13,7],[-17,9],[-27,12]],[[70483,64641],[-19,5],[-20,6],[-44,-15],[-4,-8],[-37,-60],[7,-18],[8,-19],[-2,-13],[-3,-18],[1,-1],[24,-29],[19,-15],[14,-11],[28,-9],[26,-10],[6,-2],[14,-5],[24,-10],[17,8],[22,12],[21,29],[9,41],[-3,30],[-2,18],[1,39],[-29,26],[-34,16],[-28,9],[-4,1],[-12,3]],[[69939,64637],[-35,26],[-12,16],[-6,7],[-33,36],[-41,33],[-23,27],[-6,4],[-1,1],[-32,21],[-33,16],[-21,-12],[-18,-10],[-13,-52],[-13,-13],[-15,-14],[23,-37],[5,-13],[6,-18],[4,-26],[-10,-34],[-33,-37],[-2,-46],[49,-31],[26,4],[5,1],[14,1],[17,1],[7,1],[29,1],[8,1],[1,0],[7,0],[36,10],[23,22],[32,13],[6,6],[18,21],[20,8],[16,6],[-6,10],[-11,19],[17,3],[15,1],[-20,27]],[[72163,64802],[-16,2],[16,-21],[9,-13],[23,-13],[15,-9],[7,-5],[21,-14],[15,-6],[14,-5],[19,9],[-43,36],[-12,7],[-24,16],[-25,13],[-19,3]],[[69587,63233],[-6,-31],[-10,-14],[-17,-28],[-6,-55],[-1,-13],[-21,-39],[1,-59],[30,-34],[38,-21],[45,-34],[64,-36],[44,-9],[31,-9],[27,-15],[6,-6],[16,-15],[1,-1],[26,-19],[50,-6],[17,21],[1,2],[17,23],[22,15],[43,-15],[39,-5],[44,20],[11,32],[-11,29],[-9,22],[-9,20],[-11,24],[-16,35],[-34,37],[-7,12],[-10,17],[-27,40],[-3,4],[-27,37],[-13,20],[-6,11],[-26,36],[-24,34],[-36,31],[-18,15],[-8,7],[-17,16],[-10,11],[-20,4],[-23,4],[-30,7],[-12,2],[-23,11],[-17,9],[-11,5],[-8,1],[-30,4],[-27,-27],[4,-28],[3,-17],[7,-62],[-3,-20]],[[58255,62692],[-21,14],[-6,-4],[-11,-8],[-14,-4],[-7,-3],[-24,-27],[20,-29],[4,-6],[1,-2],[12,-21],[14,5],[9,3],[16,25],[5,12],[15,37],[-13,8]],[[70017,62604],[-15,-4],[4,-10],[14,-37],[0,-1],[6,-46],[1,-8],[20,-13],[6,-4],[5,-4],[68,-30],[54,-14],[31,-8],[17,6],[18,6],[9,28],[8,23],[2,6],[-12,5],[-24,11],[-15,32],[-32,32],[-14,8],[-31,18],[-47,7],[-35,5],[-21,-5],[-17,-3]],[[59124,62494],[-41,18],[-30,-1],[-37,12],[-27,4],[-26,-16],[-1,-50],[2,-6],[13,-31],[8,-20],[3,-6],[-5,-1],[-4,-2],[-28,-10],[-8,-2],[-5,-27],[-4,-17],[0,-1],[1,-1],[29,-32],[4,-15],[4,-19],[2,-12],[2,-10],[1,-5],[0,-2],[1,0],[2,-1],[25,-10],[3,-3],[37,-30],[20,-40],[-33,-20],[-35,-6],[-9,-7],[-21,-15],[-29,-9],[-23,-9],[-21,-7],[1,0],[1,-1],[38,-22],[32,-2],[4,0],[4,0],[29,-3],[3,-1],[25,-7],[7,1],[16,1],[24,-4],[30,-12],[1,-1],[7,-2],[15,-3],[26,-4],[10,8],[18,13],[33,25],[21,-3],[7,-1],[1,-2],[1,-2],[12,-32],[12,-25],[20,-17],[11,-9],[20,-9],[21,-9],[3,-8],[6,-17],[4,-12],[2,-6],[-9,-11],[-20,-27],[-18,-13],[-10,-7],[-20,-12],[-1,0],[-40,-23],[-23,-26],[-6,-11],[-9,-15],[38,-32],[7,-4],[5,-3],[14,-8],[30,-22],[7,-4],[2,-1],[13,-7],[30,-10],[13,4],[1,1],[25,8],[1,1],[1,0],[40,45],[3,13],[8,28],[6,3],[5,2],[8,4],[9,3],[2,1],[1,0],[12,-2],[19,-3],[14,2],[1,0],[17,2],[3,-5],[15,-23],[1,-2],[2,-2],[-14,-48],[26,-12],[6,-2],[7,-3],[6,18],[8,22],[25,36],[2,0],[2,0],[53,3],[2,-2],[2,-5],[9,-15],[8,-12],[-6,-37],[12,2],[6,2],[10,2],[19,5],[16,25],[33,-1],[30,11],[-33,37],[-30,14],[-4,7],[-12,18],[-10,17],[-21,41],[1,2],[1,1],[20,32],[53,4],[30,10],[23,16],[5,13],[2,5],[9,23],[-27,45],[-8,11],[-2,3],[-16,23],[-12,3],[-17,4],[-16,-6],[-37,-12],[-15,1],[-12,1],[-24,1],[-28,-7],[-9,52],[-1,3],[0,4],[-5,39],[16,14],[18,15],[-33,21],[-16,6],[-13,6],[-21,18],[-23,26],[-22,20],[-27,18],[-2,1],[-25,23],[-44,25],[-28,26],[-4,4],[-19,10],[-36,20],[-38,18],[-49,15],[-5,2],[-35,11],[-6,2],[-38,13],[-21,10],[-12,6],[-8,3],[-5,3],[-3,1]],[[70338,62372],[-19,-21],[-6,-8],[-21,-6],[-19,3],[-9,-26],[-4,-57],[0,-1],[21,-49],[8,-13],[6,-11],[4,-4],[11,-11],[5,-5],[2,-2],[30,-22],[35,-17],[20,-6],[17,-6],[33,-15],[2,-1],[35,-13],[7,-3],[50,-21],[16,-7],[32,-12],[27,-16],[9,-6],[28,-20],[26,-20],[53,-34],[7,-12],[2,-2],[19,-35],[23,-29],[3,-4],[2,-1],[24,-23],[14,-12],[18,-15],[12,-11],[6,-30],[2,-9],[26,-36],[8,-8],[28,-29],[9,-9],[3,-3],[5,-6],[16,-22],[14,-18],[1,-1],[2,-3],[2,-3],[1,-1],[30,-34],[13,-13],[2,-9],[12,-38],[14,-16],[4,-4],[34,-14],[39,-20],[2,-1],[7,-3],[37,-22],[5,-4],[29,-21],[3,-2],[20,-26],[6,-20],[2,-9],[-1,-50],[12,-48],[33,-50],[3,-5],[33,-52],[42,-32],[39,-29],[30,-11],[23,-11],[10,-5],[10,-4],[21,-8],[33,-14],[20,-4],[23,-5],[6,4],[25,16],[23,10],[8,3],[19,0],[17,0],[23,-2],[15,-2],[9,-2],[27,-6],[16,-7],[4,-2],[18,-8],[20,-11],[20,-11],[49,-16],[55,-12],[8,4],[16,9],[45,-8],[26,8],[30,4],[12,2],[39,3],[41,-8],[38,-24],[8,-13],[10,-15],[33,-28],[13,-8],[15,-8],[51,-17],[52,24],[24,9],[19,6],[35,-7],[1,0],[13,-3],[30,2],[10,5],[18,9],[35,25],[19,7],[22,7],[30,34],[-10,43],[1,47],[13,9],[14,10],[21,16],[-2,7],[-5,13],[-4,13],[-4,13],[5,0],[15,2],[13,2],[2,0],[5,1],[19,3],[10,15],[5,7],[7,11],[38,29],[2,1],[59,11],[33,14],[33,7],[25,55],[-13,43],[2,25],[2,16],[16,18],[5,6],[30,25],[8,6],[12,43],[11,13],[21,24],[29,35],[40,58],[-35,29],[-15,12],[-14,4],[-16,4],[-59,16],[-22,7],[-22,7],[-34,8],[-55,23],[-14,6],[-22,12],[-37,20],[-39,24],[-25,17],[-8,1],[-9,2],[-20,4],[-32,-12],[-16,-6],[-23,1],[-5,0],[-39,21],[-20,18],[-7,6],[-19,37],[-8,52],[-14,21],[-8,12],[-22,52],[-8,20],[-8,20],[0,2],[-1,1],[-2,2],[-28,23],[-1,1],[-10,15],[-27,38],[-7,10],[-12,15],[-4,31],[-2,5],[-1,2],[-9,27],[-43,2],[-36,-3],[16,-21],[7,-8],[0,-1],[26,-20],[20,-39],[6,-22],[8,-29],[0,-2],[0,-1],[2,-15],[3,-24],[2,-12],[-7,-59],[0,-1],[-16,-32],[-17,-24],[-33,-29],[-1,-1],[-1,-1],[-23,-11],[-1,-1],[-10,-5],[-18,-3],[-11,-2],[-12,-2],[-13,-3],[-29,9],[-8,3],[-15,5],[-3,1],[-1,1],[-18,7],[-23,13],[-20,11],[-35,19],[-20,10],[-66,24],[-51,19],[-10,3],[-21,8],[-31,6],[-52,13],[-61,19],[-47,17],[-32,12],[-21,8],[-9,4],[-25,10],[-41,20],[-12,6],[-42,20],[-14,7],[-12,6],[-22,14],[-10,6],[-44,31],[-9,7],[-3,1],[-9,6],[-23,12],[-20,3],[-6,1],[-14,3],[-5,0],[-7,2],[-77,-6],[-6,-3],[-15,-9],[-17,-4],[-66,-17],[-66,-18],[-10,8],[-7,5],[-8,6],[-44,7],[-53,-15],[-44,9],[-10,2],[-37,9],[-35,15],[-19,9],[-29,14],[-41,14],[-47,25],[-25,14],[-13,7],[-13,8],[-24,10],[-19,7],[-38,16],[-47,15],[-50,6],[-17,-6],[-9,-4],[-33,-10]],[[60988,61949],[26,20],[14,-1],[8,-1],[11,-1],[30,28],[8,10],[16,20],[-4,11],[-6,21],[-4,13],[0,15],[0,22],[3,4],[1,2],[18,29],[-37,24],[-5,14],[-5,14],[-6,9],[-3,5],[-13,19],[-1,1],[0,1],[-2,2],[-2,4],[-17,30],[-8,18],[-14,32],[-19,21],[-7,9],[-18,13],[-20,7],[-13,4],[-18,0],[-16,0],[-46,-15],[-37,-11],[-28,-25],[-10,-18],[-3,-8],[21,-15],[13,-8],[9,-5],[22,-11],[19,-10],[5,-1],[11,-14],[11,-13],[-19,-46],[-5,-11],[-21,0],[-17,0],[-5,0],[-5,0],[-23,4],[-5,1],[-25,-11],[23,-11],[125,-59],[-22,-39],[-5,1],[-2,0],[-47,7],[-37,5],[-10,-11],[14,-33],[1,-2],[1,-1],[15,-32],[-10,-5],[-14,-6],[-3,-2],[-9,-21],[-8,-22],[-10,-26],[-24,-4],[-21,-9],[-8,-4],[-4,-8],[-7,-16],[-5,-11],[-6,-5],[-3,-3],[-27,-26],[-1,-1],[-10,-15],[-7,-11],[-37,2],[-2,0],[-2,1],[0,-1],[-6,-27],[-14,-28],[21,-20],[15,-15],[26,-14],[33,-7],[52,-18],[30,-19],[3,-3],[19,-3],[19,-3],[2,0],[9,-1],[54,23],[0,1],[17,31],[29,26],[4,3],[1,0],[4,4],[3,2],[2,2],[37,31],[17,5],[23,8],[16,5],[15,5],[-2,5],[-2,4],[-20,49],[0,20],[-1,45],[-1,7],[0,14],[-2,34]],[[57063,61645],[-30,44],[-11,8],[-29,21],[-30,7],[-23,-12],[-2,-13],[-2,-18],[8,-12],[0,-1],[6,-8],[13,-6],[17,-8],[19,-2],[1,0],[23,-2],[36,1],[4,1]],[[57958,62290],[-23,13],[-28,-21],[-13,-11],[2,-38],[7,-4],[25,-14],[26,-5],[32,27],[34,28],[-15,5],[-11,4],[-14,6],[-8,3],[-14,7]],[[66834,63096],[-16,9],[-42,-3],[-18,-30],[0,-17],[0,-24],[17,-25],[53,-42],[42,-25],[17,-9],[5,-2],[31,-15],[27,9],[1,0],[13,4],[13,28],[0,4],[-1,3],[-2,32],[0,7],[-40,12],[-23,20],[-12,11],[-45,41],[-6,3],[-14,9]],[[64644,61543],[-6,4],[-17,11],[-25,11],[-2,3],[-6,5],[-13,12],[-27,-3],[-16,-2],[-45,3],[-29,-8],[-18,-2],[-8,0],[-8,-2],[-22,-4],[10,-18],[14,-24],[17,-3],[40,-7],[57,-11],[23,-1],[20,-1],[40,4],[21,33]],[[64644,61543],[30,3],[29,3],[56,36],[-9,14],[-3,4],[-3,5],[-20,14],[-2,2],[-2,-6],[-5,-22],[-46,-15],[-25,-38]],[[64924,61602],[-9,-38],[-11,1],[-9,0],[-31,3],[-41,-21],[29,-24],[28,-7],[7,-2],[7,-3],[4,-1],[27,-12],[43,10],[17,-1],[28,-1],[9,-34],[23,26],[1,2],[3,3],[22,19],[8,15],[9,15],[-35,11],[-13,5],[-19,6],[-25,20],[-6,5],[-38,24],[-20,-15],[-8,-6]],[[65151,61477],[-1,-6],[-2,-7],[-1,-5],[36,-28],[15,-6],[18,-8],[21,-9],[23,-12],[22,0],[14,0],[23,27],[31,-5],[11,-5],[9,-4],[34,19],[9,18],[2,3],[2,5],[-37,5],[-5,-3],[-14,-11],[-21,6],[-8,16],[-4,7],[-2,6],[-30,5],[-26,4],[-29,2],[-3,0],[-5,1],[-2,2],[-17,21],[-17,7],[-18,7],[16,-42],[-42,0],[-2,-9],[0,-1]],[[59239,61403],[-30,2],[-7,-2],[-7,-2],[-17,-5],[-25,-9],[-15,-4],[-25,-7],[-64,-20],[-16,-3],[-51,-11],[-20,-2],[-11,-1],[-32,-1],[-17,-1],[-49,3],[-10,2],[-33,6],[-45,7],[-24,29],[-15,33],[-31,23],[-8,2],[-26,5],[-37,21],[0,1],[-1,0],[-1,0],[-34,8],[-42,2],[-55,7],[-23,-24],[5,-36],[3,-18],[3,-22],[-6,-51],[16,-34],[10,-20],[34,-55],[10,-38],[3,-44],[-8,-36],[-5,-13],[-12,-28],[-19,-24],[-3,-4],[-3,-2],[-18,-17],[-3,-3],[-6,-5],[-53,-22],[5,-31],[7,-43],[0,-8],[-1,-23],[1,-22],[1,-22],[-4,-33],[-2,-11],[-1,-11],[-4,-27],[-8,-16],[-10,-26],[-19,-22],[-20,-23],[-26,-22],[-19,-25],[-24,-27],[-28,-17],[-14,-5],[-17,-7],[-41,-26],[-32,-37],[-17,-49],[-36,-28],[-21,-20],[-12,-11],[-15,-58],[-29,-39],[-2,-44],[6,-18],[4,-14],[-19,-42],[-24,-25],[-5,-5],[26,-30],[1,-16],[1,-12],[-20,-29],[-16,-15],[0,-1],[-9,-9],[3,-38],[-4,-17],[-8,-34],[3,-5],[2,-1],[15,-25],[-6,-47],[29,-37],[5,-14],[4,-11],[7,-33],[8,-52],[-1,-44],[-3,-14],[-4,-21],[-13,-37],[-10,-20],[-1,-1],[-11,-23],[-13,-15],[-10,-12],[-31,-11],[-28,-29],[-2,-2],[-26,-24],[-6,-6],[-23,-19],[-5,-35],[-16,-52],[-3,-24],[-3,-16],[-11,-49],[4,-35],[1,-54],[-5,-11],[-9,-22],[-2,-27],[0,-8],[-13,-1],[-17,0],[-17,-24],[1,-21],[1,-17],[-10,-28],[-6,-16],[11,-17],[15,-22],[1,-11],[3,-23],[1,-5],[1,-2],[16,-25],[19,-29],[0,-45],[21,-19],[1,0],[15,-14],[14,-1],[35,-5],[37,-16],[10,-1],[18,-2],[7,-3],[7,-4],[12,-5],[13,-7],[7,13],[6,11],[2,5],[31,7],[11,-5],[34,-17],[35,-24],[15,5],[12,4],[37,-9],[31,16],[19,-3],[29,-4],[36,-19],[11,-10],[14,-12],[6,-5],[22,-19],[24,-6],[23,5],[10,-2],[36,-10],[42,-10],[40,-14],[14,-6],[14,-6],[31,10],[51,20],[28,1],[21,1],[14,2],[3,1],[13,2],[44,10],[40,19],[37,19],[23,9],[9,4],[1,5],[5,25],[-3,18],[-1,10],[6,34],[23,39],[34,48],[31,18],[6,3],[5,3],[17,5],[20,5],[49,10],[25,16],[1,1],[3,2],[27,11],[32,13],[23,13],[2,1],[0,2],[5,16],[2,10],[13,22],[26,43],[44,17],[21,8],[21,7],[46,16],[34,36],[12,51],[13,53],[16,37],[15,28],[0,44],[-2,26],[-3,27],[-4,34],[-2,13],[-1,43],[4,29],[4,46],[0,1],[-8,34],[-13,46],[-3,17],[-8,42],[-1,19],[-2,30],[1,18],[1,17],[-13,27],[-23,36],[-29,40],[-1,3],[-9,14],[-17,26],[-11,18],[-7,13],[-16,29],[-3,6],[-20,44],[-22,55],[0,5],[-3,15],[-2,14],[-2,11],[-3,19],[-7,40],[0,18],[0,41],[2,26],[0,8],[5,19],[5,17],[10,25],[1,2],[4,9],[13,19],[13,19],[29,28],[16,10],[13,9],[13,28],[4,9],[1,1],[3,7],[4,40],[1,11],[-2,49],[-5,39],[-18,42],[-2,39],[-5,20],[-6,19],[-9,8],[-11,11],[-18,8],[-12,6],[-10,34],[-4,10],[6,27],[2,8],[14,18],[1,1],[13,17],[-14,23],[-5,8],[-26,20],[0,1],[-1,0],[-19,11],[-9,5],[-1,0],[-2,0],[-13,3],[-8,1],[-20,27],[-12,16],[-14,20],[-15,23],[-29,7],[-15,3],[-24,8],[-25,7],[-6,25],[-6,21],[13,60],[25,31],[22,23],[9,9],[11,2],[42,9],[9,-5],[18,-12],[4,-31],[0,-24],[-1,-11],[0,-1],[0,-6],[4,-3],[19,-13],[4,-2],[10,1],[18,1],[29,11],[9,4],[28,24],[9,31],[-9,31],[-2,7],[-7,26],[-4,14],[-4,8],[-14,23],[-30,2]],[[45721,58613],[-22,46],[-28,-6],[-17,-4],[-31,-11],[-14,-5],[-31,17],[-12,6],[5,23],[6,23],[-16,5],[-21,6],[-2,1],[-3,1],[-28,15],[-2,2],[-3,1],[-14,36],[-7,13],[-1,3],[-8,15],[-37,16],[-17,7],[-49,28],[-6,-10],[-10,-16],[-7,-13],[-2,-11],[-1,-2],[-5,-23],[-6,-6],[-17,-18],[-8,-26],[-2,-6],[1,-48],[17,-32],[15,-63],[5,-17],[2,-14],[7,-34],[5,-23],[5,-21],[-2,-46],[2,-9],[3,-19],[22,-29],[35,-5],[3,-18],[7,-31],[-4,-53],[20,-37],[36,-2],[5,-1],[8,0],[45,-13],[59,17],[34,32],[28,15],[22,18],[7,5],[4,21],[4,17],[6,37],[26,40],[5,10],[24,49],[-1,13],[-7,52],[-4,17],[-6,23],[-22,42]],[[45026,59072],[-7,40],[-29,14],[-29,31],[6,19],[7,24],[5,39],[0,6],[1,4],[8,47],[-9,3],[-4,1],[-13,5],[-5,2],[-5,1],[-14,5],[-10,1],[-30,2],[-19,-11],[-14,-8],[-9,-17],[-16,-29],[-2,-15],[-2,-17],[-2,-13],[-1,-7],[-1,-2],[-22,-38],[-7,-30],[-1,-4],[35,-28],[4,-4],[9,-8],[14,-13],[24,-20],[23,-18],[39,-25],[15,-9],[25,9],[11,4],[12,5],[3,13],[10,41]],[[55247,60515],[3,12],[6,28],[2,5],[4,13],[8,24],[-1,10],[-1,19],[-1,2],[0,6],[-5,29],[-3,22],[-23,43],[-36,3],[-9,-35],[-15,-38],[3,-50],[-8,-23],[-8,-25],[-6,-18],[-10,-35],[13,-41],[21,9],[3,1],[4,2],[10,21],[3,6],[2,1],[44,9]],[[56950,60527],[13,-5],[50,12],[25,7],[9,3],[7,2],[36,-10],[2,-1],[15,-6],[3,-2],[7,-3],[4,1],[31,11],[6,0],[3,0],[22,1],[4,9],[11,23],[4,7],[17,53],[5,3],[5,3],[21,12],[32,32],[34,34],[5,8],[17,27],[13,12],[17,15],[16,19],[18,14],[23,16],[4,14],[2,5],[2,8],[6,18],[1,2],[24,46],[-2,33],[2,26],[1,14],[-3,15],[-5,23],[-12,16],[-11,13],[-10,30],[-2,34],[2,46],[26,27],[3,3],[21,26],[-22,3],[-25,4],[-22,1],[-17,2],[-8,1],[-8,1],[-4,0],[-1,0],[-3,0],[-3,1],[-40,2],[-36,7],[-14,5],[-23,8],[-40,7],[-16,3],[-24,8],[-9,3],[-42,9],[-34,-10],[-35,1],[-27,5],[-2,1],[-20,-7],[-2,-1],[-24,-20],[-15,-12],[-4,-26],[-16,-25],[-31,-38],[8,-35],[23,-19],[1,-2],[2,-4],[14,-23],[7,-18],[5,-17],[0,-26],[0,-1],[0,-15],[5,-34],[2,-8],[39,-32],[18,-36],[2,-19],[0,-4],[1,-18],[-10,-23],[-11,-24],[-31,-11],[-11,-4],[-31,-24],[20,-36],[-12,-27],[-3,-6],[-5,-65],[-14,-29],[-6,-28],[-3,-27],[14,-6],[8,-3],[11,-5]],[[45214,57909],[36,-33],[46,4],[2,6],[5,15],[6,19],[1,7],[3,26],[-5,20],[-3,12],[-8,48],[-8,1],[-31,4],[-23,-4],[-6,-1],[-8,-1],[-32,-39],[0,-36],[25,-48]],[[43827,57406],[4,-34],[19,5],[23,7],[26,-10],[13,-5],[10,-4],[40,-39],[41,-38],[30,-40],[33,-17],[44,2],[8,27],[9,29],[3,47],[-2,16],[-6,38],[-1,20],[-1,18],[-1,9],[11,39],[5,39],[0,1],[-5,44],[5,43],[-5,5],[-22,24],[-6,1],[-36,6],[-13,1],[-30,20],[-35,26],[-33,29],[-52,-4],[-15,-4],[-44,-12],[-24,-50],[0,-1],[0,-1],[-1,-11],[-3,-53],[-5,-26],[-1,-6],[1,-34],[5,-29],[1,-2],[14,-41],[-4,-35]],[[55802,57254],[45,-27],[30,-26],[36,-49],[27,-47],[3,-13],[1,-2],[6,-25],[11,-15],[10,-12],[14,-16],[1,-1],[10,-11],[18,-30],[5,-8],[5,-8],[17,56],[1,1],[14,48],[11,58],[6,51],[-2,21],[-2,12],[-20,40],[-4,12],[-9,28],[-12,43],[-20,37],[-25,23],[-17,5],[-12,3],[-5,0],[-6,0],[-10,1],[-2,0],[-4,0],[-9,4],[-17,8],[-33,-7],[-12,-10],[-12,-10],[-38,-29],[-20,-33],[-5,-42],[19,-23],[6,-7]],[[55211,55723],[-1,-16],[26,6],[7,1],[3,1],[31,29],[20,35],[13,33],[13,37],[13,36],[1,42],[-1,18],[-2,23],[2,36],[4,31],[6,33],[1,24],[0,5],[2,18],[-3,15],[-3,18],[-9,36],[-11,44],[-5,19],[-6,22],[-9,34],[-13,37],[-7,10],[-19,26],[-14,24],[-8,12],[-33,38],[-44,30],[-13,9],[-4,2],[-21,15],[-31,33],[-23,29],[-30,25],[-27,12],[-5,2],[-2,1],[-21,10],[-32,15],[-10,4],[-7,2],[-11,3],[-24,8],[-7,2],[-22,5],[-14,3],[-1,1],[-2,0],[-29,9],[-7,2],[-34,6],[-48,11],[-4,1],[-49,12],[-19,-9],[-6,-2],[17,-50],[9,-16],[11,-22],[9,-21],[8,-24],[12,-42],[11,-41],[23,-44],[38,-43],[11,-12],[24,-24],[21,-24],[10,-10],[2,-3],[15,-15],[10,-15],[12,-16],[11,-17],[1,0],[8,-12],[27,-39],[27,-40],[17,-25],[20,-25],[32,-39],[23,-33],[20,-23],[17,-26],[11,-18],[16,-25],[20,-29],[8,-16],[0,-1],[12,-21],[20,-50],[4,-13],[8,-28],[2,-17],[2,-17],[0,-32]],[[53271,50817],[8,-1],[16,14],[18,16],[26,7],[5,1],[8,3],[36,8],[19,6],[17,6],[59,36],[42,14],[32,5],[3,0],[26,-2],[2,-1],[4,0],[44,-7],[3,0],[26,-6],[14,-2],[43,-5],[-8,18],[-9,19],[-11,18],[-12,19],[-52,41],[-20,13],[-19,13],[-28,23],[-13,12],[-17,17],[-22,33],[-29,52],[-7,19],[-13,34],[-8,34],[-1,6],[-1,14],[-1,28],[9,55],[2,47],[10,72],[5,33],[5,32],[5,16],[9,34],[1,30],[2,52],[11,49],[15,29],[23,38],[11,19],[7,12],[-16,38],[-4,25],[-7,41],[3,39],[2,19],[-3,48],[-13,41],[-33,31],[-24,16],[-13,14],[-21,23],[-26,47],[-7,14],[-29,45],[-37,19],[-19,6],[-25,9],[-29,9],[-9,3],[-34,10],[-9,2],[-37,7],[-37,1],[-37,4],[-26,4],[-14,2],[-4,1],[-26,6],[-27,6],[-26,5],[-27,0],[-18,3],[-13,1],[-26,4],[-18,1],[-14,0],[-33,1],[-16,2],[-29,5],[-48,5],[-44,-2],[-28,-15],[-9,-6],[-15,-11],[-38,-39],[-34,-20],[-20,-26],[-8,-25],[-1,-3],[-7,-22],[0,-1],[-17,-48],[-18,-48],[-12,-37],[4,-22],[2,-10],[20,-51],[13,-64],[1,-14],[2,-29],[0,-43],[10,-25],[7,-17],[15,-58],[-1,-57],[-3,-9],[-13,-37],[-2,-18],[-4,-25],[4,-42],[4,-32],[7,-17],[4,-11],[31,-39],[25,-24],[21,-21],[45,-21],[17,-9],[18,-8],[29,-20],[33,-24],[30,-36],[6,-6],[8,-15],[1,-1],[14,-24],[24,-37],[18,-19],[14,-14],[5,-4],[17,-16],[34,-26],[21,-19],[13,-11],[26,-26],[45,-47],[25,-37],[19,-33],[15,-30],[18,-29],[14,-25],[5,-9],[25,-31],[18,-12],[25,-12],[20,-10],[1,0],[1,0],[12,-1],[22,0]],[[51594,49961],[45,-17],[46,12],[24,10],[18,8],[13,3],[16,4],[36,-5],[41,-5],[45,14],[9,6],[20,14],[13,3],[22,6],[37,11],[19,16],[7,6],[22,15],[10,6],[31,10],[40,7],[29,18],[16,47],[-37,20],[-25,14],[-24,34],[-18,38],[-7,28],[1,45],[11,48],[22,40],[30,31],[30,16],[13,3],[1,0],[11,2],[10,3],[5,1],[6,0],[35,-1],[29,-5],[29,-6],[5,-1],[24,-6],[14,1],[9,1],[-2,3],[-5,12],[-7,17],[-6,15],[-24,29],[-23,28],[-34,30],[-24,10],[-26,12],[-31,3],[-14,1],[-38,7],[-27,5],[-52,12],[-29,15],[-26,5],[-3,0],[-44,14],[-16,11],[-22,15],[-26,16],[-18,-3],[-13,-3],[-22,-5],[-13,-4],[-12,-3],[-23,-7],[-21,-7],[-9,-4],[-14,-6],[-20,-8],[-14,-6],[-25,-10],[-10,-4],[-5,-1],[-6,-3],[-13,-4],[-16,-10],[-7,-4],[-5,-6],[-14,-15],[-8,-9],[-3,-4],[-13,-38],[-12,-40],[-1,-3],[-27,-63],[-26,-59],[-35,-59],[-7,-12],[-21,-37],[-6,-13],[-11,-26],[-10,-33],[-6,-47],[2,-54],[2,-49],[34,-31],[44,-12],[17,-6],[14,-5],[27,-13],[36,-19],[34,-9],[2,-1]],[[58562,52017],[23,-4],[-7,35],[-1,3],[0,3],[-23,43],[-5,13],[-3,8],[-2,6],[-20,28],[-4,6],[-4,-16],[-8,-36],[10,-47],[23,-25],[9,-7],[3,-2],[9,-8]],[[58284,47915],[16,-36],[33,19],[18,4],[4,1],[4,1],[20,6],[21,5],[2,1],[5,1],[22,17],[-11,52],[0,25],[-1,30],[-17,5],[-13,4],[-28,-20],[-21,-12],[-18,-10],[-14,-22],[-7,-11],[-6,-29],[-9,-31]],[[85510,52814],[7,-3],[41,29],[3,38],[2,22],[-38,45],[-48,22],[-42,13],[-4,-1],[-9,-3],[-27,-8],[-7,-44],[-11,-17],[-22,-30],[-1,-2],[29,-10],[32,-23],[44,-10],[11,-4],[23,-8],[17,-6]],[[85846,50944],[70,-42],[5,1],[12,2],[-16,27],[-8,35],[-2,21],[5,25],[6,26],[17,23],[-11,12],[-19,19],[0,-5],[1,-35],[-13,0],[-12,-42],[-9,-4],[-7,-3],[-19,-9],[-18,-9],[5,-26],[2,-9],[11,-7]],[[86885,50760],[5,-13],[2,-5],[1,-2],[8,-8],[17,-17],[20,-34],[9,-46],[1,-6],[25,-44],[24,-20],[14,-22],[5,-6],[25,-20],[35,-11],[16,6],[23,7],[-16,36],[-23,22],[-22,16],[-7,6],[-26,41],[-19,24],[-8,9],[-24,31],[-25,22],[-16,16],[-10,9],[-30,15],[-9,5],[4,-11],[1,0]],[[86788,50722],[-26,27],[-11,-4],[-15,-5],[-4,-2],[-17,-41],[-36,-2],[-10,2],[-2,0],[-24,5],[11,-48],[-5,-9],[-9,-16],[26,-20],[43,-3],[37,6],[43,13],[2,8],[13,42],[-13,38],[-3,9]],[[84411,49782],[30,-7],[9,14],[9,13],[-7,19],[-3,8],[-15,10],[-6,4],[-10,4],[-19,6],[-6,3],[-5,-2],[-7,-3],[-4,-2],[-1,0],[-21,-9],[-20,-27],[2,-1],[2,0],[5,-2],[4,-1],[11,-3],[16,-5],[30,-15],[6,-4]],[[84105,35276],[8,-7],[20,-19],[9,-10],[23,-25],[27,55],[45,14],[12,1],[19,2],[3,35],[-6,15],[-4,11],[-17,12],[-11,8],[-10,4],[-24,9],[-8,3],[-13,7],[-20,12],[-14,12],[-8,7],[-6,5],[-25,21],[-1,-3],[-3,-6],[-4,-8],[-2,-6],[14,-45],[9,-73],[-13,-31]],[[84272,33017],[13,-17],[4,1],[31,3],[41,-15],[31,-9],[18,-20],[5,14],[8,20],[-1,0],[-27,16],[-18,10],[-4,2],[-33,22],[-25,23],[-23,5],[-27,10],[-30,26],[-5,-33],[1,-2],[5,-7],[14,-20],[1,-2],[3,-5],[9,-11],[4,-5],[3,-4],[2,-2]],[[84012,32722],[-16,-32],[14,-34],[6,-10],[14,-24],[2,-15],[0,-8],[1,-3],[0,-5],[9,-33],[6,-26],[20,-15],[12,-10],[25,-20],[9,-19],[3,-6],[8,-16],[8,-19],[1,6],[1,2],[2,11],[4,22],[11,48],[-5,26],[-5,23],[21,4],[10,1],[9,5],[1,1],[16,7],[3,5],[15,21],[13,4],[3,0],[15,4],[-2,22],[0,4],[-1,6],[-1,14],[3,51],[-29,24],[-5,4],[-5,3],[-11,7],[-9,7],[-4,2],[-7,3],[-5,3],[-10,5],[-7,-2],[-14,-4],[-47,-2],[-37,-4],[-21,-13],[-17,-9],[-7,-16]],[[84339,32408],[7,-57],[11,-46],[-4,-47],[17,-1],[7,0],[11,-1],[21,-1],[-20,56],[-1,1],[19,25],[5,25],[-40,19],[-33,27]],[[84148,32336],[-23,7],[-30,-6],[-25,11],[-1,0],[-1,0],[-27,-2],[-14,-1],[-21,15],[-22,-1],[-25,-31],[-21,-60],[-14,-36],[-4,-10],[-2,-6],[-8,-37],[-20,-46],[-7,-15],[-4,-18],[-4,-19],[-1,-18],[-1,-30],[2,-6],[1,-1],[4,-8],[11,-21],[9,8],[10,9],[14,11],[-20,33],[9,18],[11,20],[12,17],[12,17],[6,16],[5,13],[4,33],[9,23],[5,13],[8,16],[10,23],[16,18],[10,12],[1,0],[30,-10],[11,-34],[23,2],[4,0],[3,1],[-7,32],[31,15],[9,5],[14,11],[17,14],[-9,3]],[[84023,32120],[-16,-52],[42,6],[31,11],[10,3],[5,2],[21,7],[27,8],[11,4],[10,3],[34,23],[3,1],[4,3],[-24,9],[-6,3],[-30,-3],[-31,18],[-12,14],[-8,10],[-30,1],[-5,-1],[-17,-2],[-16,-27],[-3,-41]],[[83669,31169],[43,-2],[41,5],[22,3],[2,3],[2,5],[17,27],[1,2],[-64,40],[-29,7],[-7,2],[-15,-1],[-17,-1],[-7,-4],[-19,-8],[-15,-20],[-10,-14],[20,-36],[12,-3],[23,-5]],[[93471,13239],[-35,1],[-23,-13],[-22,-21],[-23,-26],[51,0],[24,26],[23,27],[5,6]],[[93471,13239],[37,5],[33,-32],[9,-3],[32,-8],[-1,-1],[-13,-31],[27,3],[26,3],[-1,27],[0,24],[-3,33],[-1,10],[1,1],[6,7],[12,13],[11,26],[25,22],[26,11],[18,11],[13,7],[11,32],[29,1],[16,-36],[27,-4],[5,-1],[-12,28],[9,36],[20,35],[36,14],[31,-16],[31,-47],[27,-11],[11,-4],[17,-18],[24,-25],[-1,-3],[-6,-30],[36,-42],[2,-42],[13,-41],[33,6],[42,16],[-4,-17],[-2,-7],[-22,-11],[-14,-16],[15,-27],[26,-23],[7,-47],[-27,4],[-26,1],[-10,10],[-10,9],[-26,9],[-31,-8],[-24,-16],[-43,3],[-61,12],[-4,1],[-22,4],[-2,1],[-42,13],[-23,-17],[-24,-20],[-3,-2],[-1,-1],[-2,-6],[-3,-15],[-1,-4],[-1,-2],[-15,0],[-1,1],[-12,16],[-7,9],[-48,-33],[-5,-39],[-10,-8],[-12,-11],[-12,-11],[-7,-6],[-6,-5],[-50,-27],[-44,-24],[-16,-13],[-13,-10],[-14,-11],[-12,-10],[-3,-6],[-12,-20],[-14,-22],[-16,-28],[-5,-8],[-5,-7],[-14,-24],[-2,-30],[23,18],[11,9],[12,9],[13,10],[33,52],[16,25],[12,18],[10,3],[11,4],[26,8],[25,19],[28,20],[47,35],[20,18],[36,33],[8,5],[46,32],[37,5],[13,2],[66,12],[57,-4],[29,-2],[13,-6],[17,-7],[19,-7],[34,-14],[16,-13],[28,-26],[2,-1],[26,-27],[15,-8],[15,-9],[2,-1],[10,-6],[34,4],[28,3],[8,0],[25,3],[85,8],[18,23],[1,5],[5,4],[18,33],[9,13],[3,4],[3,5],[11,18],[8,27],[5,18],[12,41],[4,8],[11,27],[4,8],[0,1],[5,12],[34,48],[41,36],[18,15],[26,21],[21,14],[1,1],[5,3],[42,32],[22,13],[13,8],[24,21],[34,31],[11,12],[20,20],[0,1],[3,4],[0,1],[3,4],[37,57],[10,13],[19,26],[17,23],[11,11],[20,21],[26,19],[18,19],[25,23],[27,17],[53,33],[8,5],[25,14],[19,15],[3,2],[18,16],[13,16],[11,14],[14,19],[8,9],[18,50],[-18,7],[-8,3],[-12,6],[-15,-14],[-33,-31],[-24,-53],[-19,-16],[-12,-10],[-30,-22],[-37,-17],[-42,-6],[-67,1],[-49,34],[-12,51],[-49,32],[0,1],[-20,11],[-23,15],[-47,6],[-26,3],[-16,1],[-24,6],[-10,2],[-4,-1],[-20,-4],[-34,5],[-34,-16],[-79,-6],[-21,-3],[-17,-2],[-55,-9],[-24,-26],[1,-31],[-5,-20],[-3,-10],[-1,-39],[-34,-46],[-20,-25],[-24,-24],[-9,-23],[-9,-22],[-32,5],[-34,-15],[-4,-2],[-33,-12],[-58,-14],[-46,-1],[-46,-2],[-13,-2],[-5,-1],[-6,-1],[-2,0],[-25,-3],[-4,-1],[-42,-16],[-30,-5],[-15,-3],[-47,-19],[-18,-7],[-12,-30],[-16,-32],[-26,-28],[-7,-8],[-16,-16],[-27,-27],[-29,-29],[-25,-12],[-32,-22],[-17,-6],[-33,-11],[-6,-8],[-11,-17],[-12,-18]],[[93363,13289],[-27,17],[-5,2],[-24,-17],[32,-28],[-10,-10],[-9,-9],[-30,-6],[0,-1],[-22,-36],[-14,-2],[-14,-3],[-1,-1],[-4,-4],[-13,-13],[-25,-17],[23,-21],[-14,-23],[-8,-12],[-8,-17],[-8,-20],[5,1],[21,5],[21,26],[20,24],[30,34],[22,11],[15,19],[13,18],[11,13],[33,39],[-10,31]],[[93595,13894],[-52,2],[-7,0],[-31,2],[-16,-28],[-4,-17],[-5,-22],[-6,-13],[-14,-27],[-10,-19]],[[93450,13772],[-17,-4],[-21,-5],[-1,-1],[-7,-26],[-1,-7],[-19,-22],[-10,-12]],[[93374,13695],[-41,33],[-12,1],[-21,0],[-5,-5],[-6,-5],[-12,-11],[-10,-8]],[[93267,13700],[-10,3],[-6,3],[-23,8],[-31,-10],[-27,5],[-18,4],[-32,-4],[20,-27],[2,-4],[11,-14],[6,-8],[6,-3],[2,-1],[21,-13],[26,28],[9,7],[13,11],[31,15]],[[93267,13700],[24,-26],[10,-11],[24,-22],[18,32],[9,6],[22,15],[0,1]],[[93374,13695],[15,-12],[18,-14],[10,9],[14,12],[10,23],[3,8],[16,-2],[9,-1],[-9,25],[-5,13],[-5,16]],[[93450,13772],[6,1],[3,1],[5,0],[1,1],[14,2],[29,16],[17,30],[11,8],[25,17],[31,42],[3,4]],[[93595,13894],[64,-9],[35,9],[7,-4],[20,-10],[3,-17],[1,-3],[6,-24],[42,-18],[-15,-17],[-18,-20],[12,-33],[-21,-19],[-10,-23],[-5,-13],[-4,-3],[-42,-35],[-11,-39],[-26,-32],[4,-14],[1,-4],[5,-23],[6,-2],[28,-8],[-26,-23],[-24,-21],[-6,-3],[-32,-16],[-5,-2],[-4,-2],[-2,-3],[-2,-4],[-12,-22],[-9,5],[-29,15],[-2,-12],[-6,-35],[-2,-7],[-21,-33],[-7,-11],[-19,13],[-9,7],[-8,-3],[-17,-8],[-2,-1],[-1,-1],[-10,-33],[-28,-33],[19,0],[26,-1],[77,42],[48,38],[6,6],[40,33],[22,18],[12,11],[22,20],[19,23],[11,13],[18,22],[9,8],[7,7],[2,5],[5,12],[7,19],[10,3],[21,7],[5,2],[34,3],[8,1],[39,3],[21,2],[13,1],[12,3],[31,7],[29,5],[30,5],[13,0],[18,0],[13,1],[36,2],[33,12],[42,15],[27,8],[16,18],[4,4],[11,25],[10,24],[7,32],[4,23],[7,16],[11,26],[18,31],[34,33],[22,15],[11,7],[6,4],[4,3],[9,9],[10,11],[-28,27],[-14,6],[-11,4],[-21,10],[-31,9],[-46,-12],[-4,-1],[-1,0],[-38,-15],[-25,3],[-16,1],[-36,-9],[-2,1],[-23,7],[-9,4],[-27,12],[-8,2],[-16,4],[-17,8],[-11,5],[-21,28],[-31,24],[-29,17],[-2,2],[-40,18],[-16,2],[-13,2],[-34,-2],[-28,-4],[-9,-4],[-23,-9],[-9,-10],[-10,-12],[24,0],[17,0],[0,-25],[-16,-20],[-8,-12],[-9,-12],[-7,-8],[-4,-5],[-11,-13],[-26,-20],[-33,-22],[-46,-24]],[[93359,13931],[0,39],[-10,13],[-8,9],[-11,6],[-11,7],[-11,29],[-9,22],[-29,6],[-25,5],[6,-26],[7,-27],[14,-5],[15,-5],[2,-26],[2,-21],[18,-20],[3,-4],[11,-11],[4,-18],[4,-14],[8,-32],[8,-17],[7,-13],[27,18],[19,12],[10,2],[1,1],[19,5],[8,35],[-46,12],[-33,18]],[[93544,14056],[-7,-12],[-12,-23],[-22,10],[-23,18],[-40,-6],[-8,-7],[-16,-16],[-25,10],[-27,11],[9,-35],[34,-28],[44,-8],[40,4],[15,-13],[5,-4],[37,4],[25,14],[12,6],[8,5],[-10,22],[-2,5],[-5,12],[-31,30],[-1,1]],[[92957,13626],[53,32],[19,14],[7,5],[24,24],[8,42],[-8,11],[-31,40],[-5,-22],[-5,-21],[2,-44],[-26,-8],[-22,-6],[-42,-14],[-25,-17],[-17,-29],[31,-34],[28,20],[9,7]],[[89839,9916],[-35,-12],[-38,6],[-56,-65],[-26,-32],[-119,-46],[-63,-28],[-37,4],[-12,-25],[-24,-15],[-10,-29],[-9,-7],[-2,-2],[-7,-6],[-4,-3],[27,-13],[89,9],[51,4],[31,10],[56,3],[13,8],[11,6],[28,7],[2,1],[14,4],[4,1],[22,10],[77,36],[23,8],[2,0],[19,6],[11,-6],[13,-7],[13,13],[8,9],[41,31],[16,72],[-15,5],[-14,4],[-25,-2],[-6,0],[-33,6],[-24,4],[-1,21],[0,14],[-11,-4]],[[87312,6231],[8,-52],[0,-1],[4,-27],[0,-47],[0,-49],[5,-9],[18,-34],[20,-29],[10,-14],[40,6],[15,2],[3,-2],[6,-4],[36,-25],[13,12],[34,31],[2,2],[2,1],[29,21],[-9,-18],[-3,-6],[-12,-25],[-26,-37],[-6,-9],[7,-7],[13,-14],[20,2],[48,3],[5,18],[15,53],[4,36],[3,26],[9,31],[2,7],[0,1],[9,15],[33,59],[7,12],[-5,17],[-8,24],[-9,32],[21,52],[1,3],[2,4],[10,32],[30,70],[16,116],[17,40],[12,44],[1,8],[1,4],[3,25],[0,25],[0,19],[0,43],[0,47],[2,72],[1,44],[2,37],[3,65],[-6,45],[-2,20],[-16,38],[-8,21],[-3,4],[-36,44],[-1,23],[-2,30],[-13,43],[1,23],[0,9],[1,12],[-3,56],[-1,13],[0,5],[-1,10],[-61,-45],[-53,-56],[-28,-50],[-13,-23],[-28,-28],[-11,-65],[-11,-51],[-8,-37],[-7,-18],[-6,-18],[-34,-87],[-6,-14],[-3,-7],[-7,-19],[-8,-24],[-4,-13],[-8,-24],[-12,-41],[-14,-64],[-3,-34],[-4,-37],[-4,-52],[-4,-43],[-21,-44],[0,-2],[-1,-8],[-1,-9],[-2,-30],[-1,-20],[1,-63],[-2,-22],[-2,-29],[-3,-26],[-5,-45]],[[87778,6505],[16,-46],[58,5],[38,13],[28,20],[-23,23],[-21,19],[-60,3],[-19,-19],[-17,-18]],[[87679,5945],[10,-24],[48,45],[-3,9],[-10,22],[-16,4],[-9,3],[-28,-42],[8,-17]],[[87315,5901],[-8,19],[-34,-65],[8,-32],[2,-6],[5,-1],[7,-1],[16,-3],[6,-27],[2,-13],[17,-9],[4,-2],[25,-13],[11,-6],[-8,25],[-21,66],[-4,7],[-1,2],[-17,39],[-10,20]],[[87124,4945],[21,-40],[14,51],[5,-7],[23,-37],[2,-21],[2,-27],[28,-23],[9,23],[0,2],[5,13],[-9,46],[-3,11],[-22,48],[-9,6],[-23,15],[-18,-13],[-13,-10],[-12,-37]],[[86819,4429],[24,-4],[62,38],[10,13],[11,13],[-27,46],[-34,-16],[-13,-6],[-2,-1],[-41,-32],[2,-50],[8,-1]],[[17207,71467],[2,-409],[0,-268],[-2,-66],[2,-142],[6,-225],[0,-20],[-1,-74],[1,-104]],[[17215,70159],[-116,-3],[-115,-7],[-271,1],[-78,0],[-219,0],[-72,0],[-18,0],[-89,1],[-112,0],[-23,0],[-46,0],[-358,0],[-14,0],[-22,1],[-13,-1],[-56,0],[-182,1],[-468,2],[-1,0],[-70,1],[-236,1],[-149,-1],[-7,0],[-394,0],[-148,0],[-58,0],[-21,0],[-17,0],[-108,0],[-44,0],[-198,0],[-278,4],[-15,0],[-67,0],[-97,-4],[-20,0],[-41,0],[-26,0],[-1,0],[-104,0],[-26,0],[-25,0],[-23,0],[-33,0],[-35,0],[-5,0],[-2,51],[-3,57],[-4,79],[-2,48],[2,97],[2,106],[1,28],[5,100],[3,69],[0,65],[0,167],[0,87],[-1,16],[0,2],[1,270],[0,64],[-1,713],[0,415],[0,18],[0,16],[0,2],[0,56],[4,32],[-4,54],[-118,0],[-75,0],[-10,0],[-13,0],[-32,0],[-14,0],[-138,0],[-30,0],[-274,0],[-49,0],[-161,0],[-191,0],[-37,0],[-80,0],[-11,0],[-213,0],[-14,0],[-165,-2],[-185,0],[-232,0],[-199,-1],[-94,0],[-17,0],[-9,0],[-22,0],[-229,0],[-220,-1],[-24,0],[-14,0],[-1,0],[-202,0],[-59,0],[-173,0],[-149,0],[-67,0],[-128,-1],[-50,0],[-357,0],[-56,0],[-18,0],[-123,0],[-119,0],[-76,-1],[-74,0],[-8,279],[1,52],[0,25],[3,211],[0,19],[1,36],[0,10],[0,17],[0,19],[0,5],[1,90],[3,276],[1,157],[1,99],[0,20],[-52,2],[-20,0],[-47,2],[-70,0],[-189,1],[-15,0],[-503,2],[-361,1],[-7,0],[-10,0],[-131,1],[-80,0],[-12,0],[1,405],[3,82],[0,10],[0,6],[0,56],[1,105],[0,43],[0,49],[0,34],[0,21],[1,49],[1,131],[1,221],[1,30],[0,36],[1,244],[1,28],[0,139],[1,60],[0,47],[-1,42],[0,20],[0,18],[-2,115],[-2,112],[1,205],[10,71],[1,108],[0,23],[1,102],[-149,6],[-59,1],[-101,0]],[[17905,80720],[1,-65],[1,-57],[0,-36],[2,-141],[0,-126],[0,-39],[0,-16],[0,-43],[0,-72],[0,-146],[0,-115],[1,-106],[0,-104],[0,-18],[1,-37],[0,-61],[1,-142],[1,-82],[0,-9],[0,-44],[0,-43],[0,-42],[0,-82],[0,-20],[0,-19],[0,-86],[0,-31],[1,-63],[0,-116],[1,-78],[0,-24],[0,-38],[0,-34],[0,-24],[-1,-110],[0,-15],[0,-52],[1,-40],[0,-2],[0,-125],[-1,-121],[0,-4],[0,-49],[0,-42],[2,-217],[-6,-211],[1,-48],[1,-29],[2,-52],[3,-101],[0,-40],[2,-169],[-3,-72],[-1,-21],[-6,-126],[5,-195],[0,-3],[1,-14],[32,-14],[33,0],[140,1],[49,1],[19,0],[40,1],[80,1],[18,0],[40,0],[56,0],[20,0],[19,0],[26,1],[26,0],[163,-3],[43,1],[16,0],[6,-36],[-1,-21],[0,-21],[0,-21],[-1,-40],[2,-26],[-1,-24],[-1,-213],[0,-33],[0,-197],[0,-11],[0,-22],[-1,-54],[0,-19],[0,-36],[-1,-35],[0,-59],[0,-2],[0,-8],[-1,-23],[0,-51],[0,-16],[0,-29],[0,-2],[0,-72],[-1,-104],[0,-55],[0,-25],[0,-42],[-39,1],[-14,0],[-23,0],[-82,0],[-22,0],[-24,0],[-56,1],[-3,0],[-29,0],[-87,1],[-120,1],[-126,1],[-34,0],[-101,1],[-81,0],[-45,1],[-44,0],[-14,1],[-56,1],[-14,0],[-56,1],[-12,0],[-40,1],[-16,0],[-5,0],[-32,1],[-25,0],[-194,0],[-18,1],[-1,0],[-95,-1],[-1,-132],[-1,-115],[0,-31],[-2,-108],[0,-50],[0,-16],[-2,-102],[-2,-102],[0,-17],[-2,-227],[-1,-39],[0,-23],[-1,-98],[-1,-109],[-1,-42],[0,-62],[-1,-43],[-2,-133],[-1,-84],[-1,-19],[0,-97],[0,-8],[0,-17],[0,-40],[0,-18],[0,-22],[0,-217],[-3,-225],[0,-108],[-1,-110],[0,-44],[-1,-105],[0,-71],[2,-143],[1,-69],[0,-94],[1,-66],[0,-37],[0,-3],[0,-18],[1,-110],[0,-95],[0,-28],[0,-47],[0,-61],[1,-86],[-1,-47],[0,-34],[0,-160],[-1,-146],[0,-62]],[[28618,78913],[0,-37],[-1,-20],[0,-1],[0,-93],[-1,-102],[-1,-78],[0,-19],[-1,-125],[1,-33],[0,-21],[1,-109],[0,-17],[0,-34],[1,-64],[0,-21],[0,-69],[1,-15],[0,-58],[0,-28],[0,-63],[0,-107],[-7,-66],[1,-16],[1,-26],[0,-41],[1,-63],[0,-19],[0,-27],[4,-51],[0,-68],[0,-68],[1,-51],[0,-11],[0,-155],[0,-220],[0,-32],[0,-19],[-2,-113],[-1,-56],[16,0],[114,-1],[21,0],[76,0],[5,0],[159,0],[38,0],[52,-1],[135,-1],[27,-4],[0,-35],[-1,-102],[0,-32],[0,-42],[0,-114],[0,-49],[-1,-20],[0,-30],[1,-126],[0,-92],[2,-120],[2,-98],[0,-217],[-1,-36],[0,-3],[-3,-123],[0,-9],[-1,-50],[-38,0],[-38,0],[-173,1],[-223,-3],[-21,0],[-272,-2],[-150,-3],[-94,-1],[-83,-2],[-24,0],[-23,-1],[-122,-2],[-87,1],[-150,1],[-1,-32],[0,-6],[-3,-95],[-1,-10],[-2,-73],[0,-17],[0,-16],[0,-14],[-1,-61],[0,-100],[0,-64],[0,-158],[0,-3],[1,-168],[0,-10],[0,-52],[-1,-119],[0,-27],[0,-21],[0,-53],[0,-52],[0,-41],[0,-39],[-1,-71],[0,-214],[-1,-86],[2,-21],[1,-27],[-3,-23],[0,-63],[1,-215],[0,-74],[-1,-71],[0,-39],[0,-7],[-1,-39],[0,-38],[0,-48],[0,-21],[1,-6],[0,-4],[0,-24],[0,-26],[0,-1],[0,-18],[0,-17],[0,-132],[0,-29],[0,-34],[1,-21],[2,-123],[0,-3],[1,-88],[-2,-124],[0,-42],[-1,-55],[1,-216],[-1,-21],[0,-48],[-1,-41],[-1,-108],[1,-186],[0,-30],[1,-146],[0,-4],[0,-54],[0,-26]],[[27750,71466],[-42,1],[-54,1],[-155,5],[-90,0],[-43,0],[-4,0],[-117,0],[-42,-1],[-18,0],[-2,0],[-168,-1],[-22,0],[-269,0],[-86,0],[-3,0],[-141,-1],[-35,1],[-179,2],[-12,0],[-30,0],[-248,-2],[-255,0],[-54,0],[-145,1],[-58,0],[-37,0],[-188,-1],[-44,-1],[-25,0],[-15,0],[-4,0],[-57,0],[-115,0],[-33,0],[-60,0],[-14,0],[-24,1],[-25,0],[-100,0],[-16,0],[-14,0],[-25,0],[-23,0],[-71,0],[-101,1],[-87,-1],[-1,0],[-13,0],[-153,0],[-84,0],[-29,0],[-138,-1],[-187,0],[-3,0],[-57,0],[-187,0],[-47,0],[-31,0],[-288,0],[-1,0],[-12,0],[-187,1],[-34,0],[-3,0],[-215,0],[-36,0],[-48,0],[-56,0],[-115,0],[-132,-2],[-120,-1],[-38,0],[-1,0],[-80,1],[-136,2],[-246,-1],[-2,0],[-16,1],[-56,0],[-177,2],[-68,0],[-160,0],[-3,0],[-41,0],[-233,1]],[[20966,71474],[0,53],[0,25],[0,135],[1,59],[0,66],[1,94],[1,49],[0,86],[0,21],[1,30],[0,33],[-3,131],[-1,92],[0,82],[-1,136],[1,107],[1,39],[1,70],[0,22],[0,2],[0,30],[0,19],[0,1],[0,49],[0,34],[1,63],[1,45],[4,171],[0,29],[-1,191],[0,30],[0,17],[0,56],[0,46],[0,69],[0,39],[0,94],[0,19],[0,69],[0,19],[0,31],[-1,163],[1,210],[0,74],[1,88],[0,18],[0,15],[0,6],[0,26],[0,20],[0,2],[-1,38],[0,17],[0,16],[-1,71],[0,11],[0,12],[0,3],[-1,49],[1,5],[0,66],[2,134],[1,95],[1,114],[0,51],[1,19],[0,20],[0,18],[0,39],[0,68],[1,138],[1,65],[-1,177],[0,6],[0,73],[0,105],[0,6],[-1,86],[5,17],[9,39],[13,69],[-2,93],[0,16],[0,56],[0,70],[-1,23],[0,22],[0,32],[0,26],[3,53],[1,32],[0,23],[-2,40],[0,3],[1,23],[-30,0],[-3,208],[0,15],[0,47],[0,13],[0,23],[0,43],[0,76],[0,17],[0,53],[0,54],[0,3],[1,44],[-1,62],[0,35],[0,17],[0,20],[0,50],[1,106],[-2,100],[0,26],[1,92],[0,138],[1,75],[37,0],[13,0],[210,0],[140,0],[50,0],[63,0],[155,0],[12,-1],[91,0],[27,0],[226,-3],[19,0],[22,0],[15,-1],[139,-1],[55,0],[32,0],[1,0],[21,1],[1,0],[37,1],[1,0],[24,0],[19,1],[22,0],[2,0],[9,1],[9,0],[78,2],[0,70],[0,18],[0,16],[1,44],[0,24],[0,3],[0,13],[0,14],[0,18],[0,22],[0,45],[-1,75],[0,29],[0,25],[0,24],[0,47],[0,37],[0,36],[0,21],[0,32],[0,24],[1,23],[-1,52],[0,55],[0,42],[-1,68],[0,36],[0,21],[0,112],[0,30],[0,2],[0,14],[0,83],[0,5],[-1,62],[-1,70],[93,0],[39,0],[15,0],[34,0],[141,1],[65,1],[25,0],[101,1],[238,2],[58,0],[86,1],[285,1],[8,0],[29,0]],[[17215,70159],[0,-16],[0,-70],[0,-16],[0,-20],[-1,-449],[0,-144],[0,-250],[0,-61],[0,-6],[0,-16],[-5,-224],[0,-2],[0,-137],[0,-2],[1,-50],[0,-12],[-1,-32],[0,-101],[0,-76],[-1,-21],[1,-37],[1,-19],[0,-59],[0,-75],[1,-118],[1,-57],[0,-2],[0,-32],[0,-44],[2,-202],[-1,-58],[-3,-371],[0,-59],[-1,-54],[0,-15],[0,-2],[0,-127],[0,-69],[0,-53],[1,-32],[0,-102],[2,-278]],[[17212,66589],[-111,57],[-214,107],[-12,7],[-20,9],[-18,10],[-1,0],[-2,1],[-12,6],[-41,23],[-366,187],[-21,11],[-61,32],[-3,1],[-28,14],[-23,12],[-136,71],[-2,1],[-2,1],[-1,1],[-27,14],[-33,16],[-81,42],[-78,18],[-27,6],[-21,5],[-5,1],[-39,9],[-32,7],[-2,0],[-88,20],[-89,21],[-23,5],[-131,32],[-40,10],[-2,0],[-76,19],[-118,28],[-13,4],[-20,6],[-2,1],[-5,1],[-19,5],[-8,2],[-3,1],[-12,3],[-17,4],[-16,4],[-17,4],[-63,15],[-36,9],[-22,5],[-47,11],[-15,3],[-25,5],[-22,6],[-105,24],[-21,6],[-19,5],[-17,4],[-13,3],[-14,5],[-21,7],[-6,2],[-24,5],[-1,1],[-59,15],[-71,19],[-12,3],[-31,6],[-12,4],[-181,43],[-30,7],[-30,7],[-83,20],[-1,0],[-9,2],[-6,1],[-12,2],[-2,1],[-2,0],[-318,77],[-83,21],[-6,1],[-15,4],[-2,0],[-110,27],[-208,51],[-221,54],[-8,2],[-2,1],[-89,22],[-82,20],[-368,90],[-120,26],[-62,14],[-2,0],[-27,7],[-23,5],[-2,0],[-5,2],[-18,4],[-18,4],[-3,1],[-9,2],[-26,6],[-4,1],[-7,2],[-19,5],[-16,4],[-34,8],[-175,42],[-9,2],[-54,14],[-55,13],[-3,1],[-29,7],[-12,3],[-91,22],[-31,7],[-37,9],[-79,19],[-86,21],[-63,16],[-14,5],[-27,6],[-12,3],[-57,15],[-12,2],[-18,4],[-27,7],[-32,8],[-5,1],[-12,2],[-1,1],[-7,1],[-11,3],[-18,4],[-71,16],[-4,1],[-2,1],[-18,4],[-31,11],[-21,6],[-221,55],[-14,4],[-12,2],[-40,10],[-97,25],[-7,1],[-6,1],[-30,4],[-10,2],[-40,10],[-46,11],[-55,14],[-17,4],[-19,5],[-15,3],[-12,3],[-48,12],[-44,11],[-129,31],[-29,7],[-6,2],[-97,23],[-1,1],[-35,8],[-54,14],[-59,14],[-60,15],[-19,4],[-14,4],[-3,1],[-4,0],[-17,4],[-12,3],[-4,1],[-4,1],[-206,48],[-103,23],[-56,13],[-103,25],[-18,5],[-8,1],[-86,23],[-88,23],[-38,10],[-31,5],[-43,10],[-20,6],[-115,27],[-28,7],[-111,27],[-17,4],[-28,6],[-61,15],[-18,4],[-22,5],[-24,6],[-15,4],[-45,11],[-62,14],[-13,3],[-14,4],[-14,3],[-17,5],[-19,4],[-23,5],[-83,20],[-1,1],[-43,10],[-25,6],[-18,4],[-13,3],[-5,2],[-44,11],[-70,17],[-131,30],[-146,37],[-810,196],[-123,29],[-16,4],[-15,4],[-93,22],[-81,19],[-11,4],[-150,36],[-60,12],[-14,3],[-12,4],[-28,8],[-15,4],[-11,3],[-9,1],[-20,3],[-74,18],[-8,5],[-74,18],[-3,0],[-7,2],[-17,4],[-36,7],[-34,7],[-66,16],[-13,3],[-12,3],[-31,8],[2,-177],[0,17],[-2,160],[-2,0],[-17,4],[-403,98],[-51,13],[-51,12],[-2,1],[-170,41],[-44,11],[-116,28],[-2,1],[-28,7],[-214,52],[-383,92],[-4,1],[-43,11],[-96,23],[-83,20],[-102,25],[-250,61],[-109,27],[-138,34],[-11,12],[1,5],[-1,2],[2,1],[2,7],[19,5],[1,0],[6,4],[1,0],[6,12],[1,14],[0,2],[0,4],[-7,16],[-8,15],[-3,13],[-3,5],[-11,-1],[-1,0],[-14,2],[-9,11],[-5,8],[-4,1],[0,1],[2,1],[-2,2],[7,3],[6,5],[8,6],[3,10],[8,16],[0,1],[16,6],[9,-3],[11,10],[14,11],[0,6],[-24,122],[0,2],[-3,2],[-16,7],[-7,0],[0,2],[-1,1],[-27,10],[1,5],[0,4],[1,10],[-5,6],[7,14],[0,1],[-9,13],[-18,15],[-4,1],[-2,4],[-3,3],[-49,41],[-5,3],[0,1],[-7,6],[0,2],[1,1],[0,2],[3,18],[0,5],[-10,-1],[-28,16],[-1,0],[0,2],[-1,1],[-1,0],[0,2],[-3,20],[-4,6],[0,1],[0,14],[0,1],[0,2],[3,14],[3,16],[11,11],[2,3],[-4,13],[-6,5],[-2,1],[-2,2],[20,24],[0,6],[-1,0],[-7,6],[-5,4],[-13,2],[-12,12],[-16,13],[-12,8],[-11,7],[-5,3],[-1,2],[-3,1],[0,1],[-1,0],[-3,14],[-9,9],[-5,14],[0,16],[-18,11],[-11,3],[-4,6],[-5,2],[0,1],[0,4],[-6,10],[6,14],[-2,12],[-9,11],[-22,27],[1,2],[0,14],[2,19],[0,8],[1,13],[-19,2],[-12,-3],[-8,12],[-2,4],[-12,6],[-13,8],[-8,4],[-5,37],[-11,8],[-1,17],[7,11],[0,2],[-19,13],[-11,9],[-13,8],[-4,10],[-3,6],[-3,15],[-5,20],[-2,19],[-1,3],[0,1],[-2,7],[0,2],[0,1],[1,10],[0,1],[1,0],[6,43],[-3,5],[-2,12],[-1,12],[7,18],[8,15],[-14,8],[-20,13],[-2,0],[0,1],[-1,1],[2,4],[0,9],[6,10],[2,4],[-3,13],[-1,2],[-15,16],[-11,12],[-7,50],[-1,5],[-7,14],[3,16],[0,1],[0,3],[-1,8],[0,6],[-6,9],[-22,28],[-3,2],[-10,13],[0,5],[-2,6],[-1,6],[-6,32],[-1,6],[0,2],[-7,-3],[-3,-4],[-3,-3],[-4,-12],[-2,-1],[-10,-6],[-1,-1],[-1,0],[-17,2],[-18,2],[-12,-4],[-1,0],[-11,1],[-1,0],[0,1],[-16,4],[-14,5],[-1,2],[-1,0],[-1,0],[1,6],[0,4],[1,5],[0,1],[0,2],[0,18],[-2,22],[6,18],[1,4],[5,22],[1,5],[-1,1],[-6,21],[-11,12],[-8,12],[1,13],[0,4],[-1,4],[-2,4],[-1,2],[1,5],[0,1],[-1,4],[1,2],[4,12],[9,41],[-2,4],[-24,25],[-3,1],[1,-12],[1,-3],[7,-13],[-8,1],[0,-2],[-91,27],[-3,2],[-7,3],[-24,19],[-3,12],[-3,3],[-16,16],[0,1],[-5,7],[7,8],[0,4],[4,30],[1,2],[5,6],[33,35],[-2,2],[-23,1],[-11,-3],[-13,5],[-1,32],[-1,19],[-3,4],[-37,11],[-6,2],[-29,26],[-20,12],[-9,6],[-1,0],[-1,2],[-9,10],[-16,19],[-1,1],[-1,2],[-7,13],[-7,18],[-4,19],[1,26],[0,21],[-16,17],[-10,4],[-16,13],[-11,15],[-11,16],[-8,14],[-6,15],[8,22],[-3,17],[-14,19],[-19,30],[0,1],[-7,20],[0,1],[-1,15],[-20,39],[-17,9],[-12,0],[-1,1],[-1,1],[-10,10],[-4,3],[-5,0],[-3,-1],[-65,-15],[-8,-4],[-13,-5],[-18,-2],[1,2],[-8,-1],[3,4],[7,13],[-12,4],[-6,13],[-1,1],[1,10],[1,4],[0,3],[2,3],[1,2],[14,39],[-16,25],[-1,2],[-1,1],[0,-1],[-36,-18],[-17,-14],[-12,-8],[-1,-1],[-18,-3],[-1,-1],[-13,-6],[-24,-13],[-5,0],[-1,-1],[-1,1],[-11,-1],[-1,0],[-13,-1],[-7,-3],[-5,-1],[-17,-5],[-17,6],[-8,-1],[-25,-6],[-17,-2],[-14,2],[-28,0],[-25,-1],[-17,-15],[-23,-13],[-13,-2],[-17,1],[-9,13],[-17,8],[-3,1],[0,2],[2,2],[-4,12],[14,4],[-7,19],[-6,6],[-8,7],[-12,-3],[-50,-31],[-1,-1],[-1,-1],[-1,-4],[-5,0],[-2,-1],[-5,-3],[0,4],[-1,0],[-2,0],[-3,0],[0,1],[0,20],[-2,20],[6,15],[12,17],[0,1],[1,0],[12,22],[-1,9],[-6,6],[-5,4],[-13,10],[-13,20],[-7,7],[-11,4],[-2,-1],[-1,0],[-3,-2],[-10,-5],[-4,-2],[0,5],[-10,-3],[7,8],[2,3],[0,10],[17,25],[11,9],[1,0],[1,0],[15,4],[1,0],[1,1],[10,11],[0,8],[-57,66],[-3,0],[-19,-28],[0,-1],[-1,-2],[0,-1],[-2,-1],[-2,-3],[-3,0],[-2,-1],[-8,-3],[-22,-3],[8,-18],[-2,-3],[0,-2],[0,-1],[-4,-3],[-4,-4],[0,-1],[-13,-9],[-14,-2],[-14,2],[-30,14],[-24,5],[-1,1],[-17,2],[-13,10],[-1,0],[-11,8],[-6,1],[-1,-24],[0,-2],[2,-3],[0,-2],[-2,-4],[-1,-6],[-5,-2],[-1,-1],[-2,0],[-38,-12],[-3,0],[-21,-5],[-22,1],[-14,-2],[-13,2],[-16,10],[-13,2],[-20,-10],[0,-1],[-6,-11],[-24,-5],[-29,2],[-1,-1],[-12,-7],[-17,8],[-7,3],[-3,0],[-1,2],[-2,1],[0,11],[-2,11],[-9,46],[9,12],[1,1],[5,7],[41,50],[5,18],[9,18],[1,1],[-10,25],[-4,6],[2,1],[-2,3],[7,5],[2,3],[7,5],[8,5],[-1,24],[0,1],[3,18],[0,2],[2,19],[9,10],[0,2],[-9,10],[-1,12],[-4,6],[-2,3],[-5,9],[-2,4],[-17,-4],[-9,8],[-1,0],[-13,3],[-10,-1],[-1,3],[-4,1],[0,14],[-1,4],[-4,11],[6,11],[0,1],[1,24],[-21,-6],[-4,-3],[-3,1],[-1,0],[-3,3],[-6,5],[-21,6],[7,10],[-2,2],[-2,2],[-7,7],[-16,-3],[-6,-8],[-2,-5],[-15,-3],[-10,4],[-3,1],[-5,4],[-5,-1],[-1,0],[-16,29],[4,28],[1,6],[1,6],[1,9],[-14,-1],[-3,-1],[-11,-3],[-9,9],[-1,0],[-23,2],[1,21],[-11,6],[-16,-1],[-16,8],[-1,1],[-21,-8],[-17,-7],[-14,-2],[-17,-2],[-1,0],[-1,0],[-21,-8],[-3,-1],[-1,-3],[34,-23],[12,-2],[1,0],[10,-12],[-1,-1],[1,-1],[1,0],[-1,-1],[-3,-2],[-8,-13],[-1,0],[-13,-5],[-6,0],[0,-1],[-2,1],[-9,0],[-7,6],[-4,1],[-39,14],[-7,-30],[-1,-3],[14,-7],[12,-7],[-2,-6],[3,-2],[-5,-4],[-2,-6],[-10,-4],[-10,-9],[-7,-23],[-2,-5],[-6,-13],[-2,-4],[-6,-20],[1,-15],[-2,-18],[-12,-9],[-24,1],[-1,0],[-10,5],[-12,13],[-3,7],[-5,7],[-11,16],[0,1],[-1,-1],[-21,-7],[-2,-1],[-3,-4],[-1,-1],[-3,0],[-10,-1],[-1,2],[-3,4],[-1,3],[-4,6],[-7,12],[-1,2],[-3,-1],[-15,-7],[-11,-5],[-4,-5],[-17,-4],[-37,19],[-2,1],[-7,-4],[-6,-2],[-18,-10],[-13,-7],[-19,-6],[-10,-1],[-5,-1],[-12,-4],[-6,-11],[-2,-5],[-2,-17],[-12,-11],[-5,-2],[-1,-2],[-2,1],[-4,-2],[-8,8],[-11,6],[-7,0],[-40,-22],[-9,-8],[-1,0],[-25,-13],[-1,0],[0,-1],[-3,-1],[-2,0],[-11,-4],[-18,-1],[-8,2],[-11,-1],[-10,-6],[-1,-1],[-12,-5],[-14,9],[-9,11],[3,3],[3,2],[-1,4],[6,1],[1,1],[11,0],[7,5],[4,8],[-3,5],[-20,5],[-15,2],[-3,7],[-2,3],[1,0],[-5,12],[-6,10],[-7,13],[-5,17],[-1,2],[0,1],[-25,57],[-12,-2],[-13,2],[-35,41],[-1,0],[-1,1],[-6,7],[-1,4],[0,1],[-14,47],[-1,1],[-16,53],[-26,14],[-46,25],[-1,2],[-4,4],[-1,1],[-18,69],[-9,31],[-4,17]],[[62450,76548],[0,-46],[0,-37],[0,-18],[0,-49],[0,-63],[0,-47],[0,-26],[-1,-32],[-2,-161],[-1,-220],[0,-73],[-4,-213],[-2,-73],[-2,-77],[-2,-113],[-2,-107],[0,-33],[1,-55],[0,-22],[0,-66],[0,-19],[0,-208],[0,-33],[-1,-217],[-1,-81],[0,-4],[0,-12],[-1,-124],[0,-7],[1,-110],[0,-29],[1,-41],[0,-1],[0,-40],[0,-123],[0,-3],[1,-90],[0,-44],[1,-27],[2,-147],[0,-20],[0,-17],[0,-22],[-1,-20],[0,-22],[0,-50],[0,-24],[0,-30],[0,-27],[-1,-30],[-2,-30],[-1,-30],[-1,-36],[-1,-26],[-1,-31],[-1,-22],[0,-17],[-5,-172],[-1,-31],[5,-215],[2,-93],[0,-15],[2,-119],[0,-88],[0,-33],[0,-24],[0,-64],[0,-155],[0,-47],[0,-28],[0,-26],[1,-146],[0,-22],[0,-28],[0,-40],[0,-62],[0,-41],[0,-2],[0,-70],[1,-140],[0,-10],[0,-2],[0,-1],[1,-66],[0,-90],[0,-2],[0,-35],[0,-99],[0,-405],[0,-7],[1,-524],[-1,-14],[-1,-66],[-1,-27],[-1,-44],[1,-168],[0,-1],[0,-50],[2,-220],[1,-100],[1,-54],[0,-4],[4,-214],[0,-48],[1,-16],[0,-40],[0,-17],[0,-22],[0,-21],[0,-40],[0,-39],[0,-42],[8,-206],[0,-18]],[[62450,68830],[-48,0],[-59,0],[-147,0],[-15,0],[-238,0],[-200,-1],[-51,0],[-37,0],[-54,0],[-11,0],[-32,0],[-117,0],[-77,1],[-146,1],[-27,0],[-78,0],[-31,0],[-100,1],[-27,-1],[-16,0],[-77,1],[-52,0],[-190,0],[-181,1],[-80,0],[-108,0],[-120,0],[-97,0],[-101,0],[-23,0],[-23,0],[-33,0],[-34,-1],[-137,0],[-67,1],[-186,0],[-77,1],[-174,0],[-204,-3],[-30,0],[-19,-1],[-56,0],[-56,0],[-13,0],[-21,-1],[-28,0],[-35,0],[-43,0],[-29,0],[-117,0],[-25,0],[-83,0],[-2,0],[-13,0],[-137,-1],[-94,-1],[-70,-1],[-149,-1],[-19,-1],[-14,0],[-19,0],[-248,2],[-179,1],[-60,0],[-4,0],[-222,1],[-25,0],[-253,2],[-71,-1],[-59,0],[-19,0],[-104,0],[-38,0],[-3,0],[-192,-1],[-23,0],[-265,-2],[-509,-3],[-231,-2],[-270,-2],[-39,0],[-6,0],[-70,0],[-5,0],[-26,0],[-3,0],[-32,0],[-57,-1]],[[54890,68818],[0,69],[0,31],[0,37],[1,82],[2,177],[1,14],[0,12],[0,18],[0,65],[0,29],[1,18],[0,105],[-1,39],[-2,183],[0,1],[6,219],[-1,105],[-1,110],[0,4],[-1,77],[0,1],[-2,107],[0,5],[0,26],[-1,197],[0,8],[0,28],[-2,206],[0,115],[1,97],[0,11],[0,18],[1,73],[0,36],[0,51],[1,47],[0,16],[1,192],[1,85],[1,136],[0,159],[1,71],[-1,40],[-1,68],[0,42],[0,18],[-1,28],[0,60],[-1,157],[-2,199],[0,52],[0,173],[0,19]],[[54891,72754],[1,130],[0,90],[2,137],[2,81],[0,29],[0,16],[-1,59],[0,24],[0,16],[0,76],[1,218],[-1,47],[-2,170],[2,222],[1,76],[1,15],[0,17],[0,26],[2,86],[-3,175],[0,45],[1,125],[0,27],[-2,23],[0,17],[4,28],[-2,118],[-1,96],[0,61],[0,22],[0,1],[0,56],[0,3],[0,12],[0,60],[-2,231],[0,20],[2,146]],[[54890,68818],[0,-150],[-1,-26],[0,-33],[1,-219],[-1,-219],[0,-84],[-1,-85],[0,-49],[1,-222],[0,-79],[0,-138],[0,-47],[0,-20],[0,-18],[0,-131],[0,-27],[0,-18],[1,-62],[0,-28],[0,-44],[1,-41],[2,-127],[1,-88],[0,-41],[1,-89],[0,-21],[0,-8],[0,-27],[0,-29],[0,-2],[1,-74],[0,-142],[0,-9],[3,-97],[1,-24],[1,-40],[2,-52],[-2,-32],[-1,-129],[-2,-69],[0,-47],[-2,-176],[-1,-40],[0,-73],[-1,-47],[-1,-45],[0,-6],[0,-11],[1,-217],[-2,-221],[-3,-128],[-1,-69],[-1,-31],[0,-35],[0,-28],[-1,-33],[0,-54],[0,-80]],[[47716,61443],[-1,131],[5,220],[1,109],[0,61],[0,48],[2,99],[2,121],[0,74],[-1,25],[0,63],[0,23],[0,37],[0,21],[0,196],[2,137],[1,82],[0,106],[-1,58],[0,15],[0,42],[1,28],[0,51],[2,140],[0,219],[-109,0],[-7,0],[-133,0],[-126,0],[1,119],[0,1],[0,52],[1,39],[1,67],[0,47],[0,48],[0,37],[0,19],[0,2],[1,87],[0,59],[-1,26],[0,26],[0,31],[1,39],[0,74],[-1,62],[0,47],[0,100],[0,39],[-1,37],[1,22],[-1,15],[0,28],[4,196],[0,3],[0,60],[1,158],[0,28],[-1,188],[0,47],[1,177],[0,95],[1,151],[0,83],[1,37],[0,2],[1,162],[0,81],[0,20],[1,20],[-10,12],[0,77],[1,113],[0,26],[3,117],[0,21],[2,86],[-2,148],[0,33],[-1,5],[0,33],[0,191],[0,28],[-1,159],[-2,202],[0,39],[0,39],[-66,1],[-191,-2],[-74,1],[-175,2],[-248,4],[-31,0],[-31,0],[-193,2],[-166,1],[-14,0],[-31,0],[-46,1],[-38,0],[-24,0],[-15,0],[-8,0],[-42,-1],[-16,0],[-18,0],[-20,0],[-65,0]],[[45843,67518],[0,36],[2,72],[-1,10],[-1,30],[0,17],[0,19],[1,36],[-2,220],[0,22],[0,129],[1,26],[0,35],[0,55],[0,24],[0,21],[1,83],[0,44],[0,15],[1,16],[0,23],[0,18],[1,16],[0,31],[1,16],[0,19],[1,29],[0,20],[0,17],[0,56],[0,5],[-1,158],[0,119],[1,90],[0,26],[0,35],[0,2],[0,77],[0,4],[0,10],[-1,6],[0,28],[0,41],[0,48],[0,28],[0,23],[0,82],[0,39],[-1,166],[0,53],[0,110],[0,64],[0,49],[-1,223],[126,-3],[103,-3],[19,0],[12,-1],[174,-1],[63,-1],[237,-1],[81,0],[76,0],[22,0],[87,0],[125,-1],[89,0],[4,0],[33,-1],[64,1],[70,1],[127,1],[241,-2],[47,0],[3,0],[13,0],[56,-1],[115,-1],[7,0],[12,0],[82,0],[35,0],[4,0],[86,0],[46,0],[252,-2],[49,0],[52,-1],[4,0],[146,-2],[41,0],[6,0],[210,-2],[-4,164],[0,20],[0,24],[0,17],[4,216],[-3,220],[0,8],[-3,212],[0,89],[0,60],[0,14],[0,58],[1,19],[3,199],[0,11],[0,156],[0,53],[1,75],[0,6],[0,137],[1,218],[1,218],[0,24],[0,51],[0,111],[-1,251],[85,0],[155,-1],[94,0],[158,-2],[36,0],[20,-1],[15,0],[39,0],[39,-1],[99,-1],[257,-2],[18,0],[86,0],[27,0],[26,0],[25,0],[65,0],[26,0],[26,0],[13,0],[26,0],[26,0],[17,0],[26,0],[66,0],[16,0],[18,0],[143,1],[26,0],[71,1],[41,-1],[169,-3],[27,0],[18,0],[223,-1],[16,0],[12,0],[76,1],[23,0],[44,1],[96,1],[21,0],[248,3],[38,0],[37,0],[140,0],[38,1],[27,-1],[215,-5],[154,1],[97,1],[23,0],[14,0],[13,0],[12,0],[72,0],[103,-1],[5,0],[15,0],[64,0],[21,0],[26,0],[22,0],[84,0],[15,0],[77,0],[199,-1],[32,0],[76,-1],[15,0],[12,0],[18,-1],[75,0],[25,-1],[55,0],[84,0],[17,0],[38,0],[1,0],[49,-1],[10,0],[3,0],[22,1],[51,0],[86,1],[3,0],[280,-4],[19,-1],[283,-1],[201,0],[54,0],[20,1],[229,1]],[[27750,71466],[0,-24],[0,-10],[0,-9],[0,-20],[0,-15],[-1,-119],[0,-13],[0,-65],[-1,-46],[0,-108],[0,-48],[0,-27],[0,-9],[-1,-110],[0,-8],[0,-11],[0,-6],[-1,-87],[0,-6],[0,-85],[0,-4],[-1,-45],[0,-25],[1,-63],[0,-24],[0,-94],[0,-6],[0,-72],[0,-145],[0,-15],[0,-20],[-3,-191],[-3,-130],[0,-38],[-2,-51],[1,-226],[0,-59],[0,-41],[0,-23],[0,-83],[-1,-66],[0,-53],[0,-78],[-1,-18],[1,-77],[2,-145]],[[27740,68848],[-1,-220],[0,-17],[0,-59],[0,-125],[0,-19],[0,-54],[0,-95],[0,-37],[0,-28],[0,-224],[-1,-37],[0,-23],[0,-25],[-1,-124],[0,-100],[-1,-101],[0,-22],[-1,-213],[0,-1],[0,-22],[-1,-62],[0,-48],[0,-7],[-1,-46],[0,-38],[0,-59],[1,-178],[1,-35],[0,-96],[0,-4],[0,-71],[0,-32],[1,-29],[0,-22],[0,-22],[0,-24],[0,-32],[0,-31],[1,-26],[0,-2],[-1,-73],[0,-95],[0,-54],[2,-218],[-1,-206],[1,-232],[0,-42],[0,-23],[1,-153],[0,-19],[-2,-199],[1,-49],[3,-171],[0,-112],[0,-22],[-1,-82],[-1,-184],[-1,-37],[1,-219],[2,-60],[1,-53],[4,-108],[1,-96]],[[27747,63931],[-2,0],[-32,-12],[-2,0],[-1,0],[-31,2],[-1,0],[-1,1],[-17,14],[-18,35],[-8,16],[-19,21],[-34,14],[-38,12],[-46,19],[-28,7],[-2,1],[-3,2],[-18,12],[-2,1],[-15,18],[-24,54],[-21,7],[-33,12],[-5,2],[-11,-5],[-9,-3],[-24,0],[-71,37],[-11,10],[-13,9],[-13,0],[-7,-6],[0,-3],[2,-16],[-2,-3],[-3,-2],[-4,-4],[-22,2],[-47,11],[-25,15],[-23,25],[-11,25],[-9,15],[-8,13],[-22,25],[-6,6],[-26,17],[-14,1],[-25,2],[-10,4],[-16,6],[-6,3],[-30,29],[-9,5],[-19,10],[-1,0],[-6,2],[-5,2],[-51,10],[-9,-1],[-7,-3],[-11,-7],[-39,-37],[-4,-5],[-25,-65],[-7,0],[-41,-9],[-26,-9],[-3,-1],[-3,2],[-39,31],[-12,8],[-7,2],[-8,1],[-35,5],[-1,0],[-1,0],[-28,14],[-45,3],[-15,-9],[-8,-5],[-23,-4],[-5,1],[-51,3],[-33,7],[-8,2],[-4,2],[-18,9],[-33,26],[-34,35],[-15,29],[-5,33],[0,2],[0,2],[-12,87],[-1,5],[-43,0],[-1,0],[-5,0],[-5,0],[-35,0],[-30,-33],[-17,-19],[0,-2],[-3,-2],[-5,-5],[-31,-12],[-85,-33],[-2,0],[-1,-1],[-9,0],[-15,-2],[-56,-4],[-9,-4],[-14,2],[-5,0],[-7,-1],[-7,0],[-30,-13],[-18,2],[-3,0],[-14,4],[-4,1],[-2,-1],[-1,-1],[-9,-6],[-8,-12],[-17,-20],[-26,-9],[-17,-14],[-7,-1],[-1,-2],[-4,1],[-11,-2],[-20,3],[-69,75],[-30,12],[-21,5],[-1,1],[-5,4],[-2,1],[-47,18],[-23,9],[-2,1],[-5,-1],[-16,4],[-22,10],[-2,2],[-2,1],[-14,6],[-6,3],[-4,2],[-1,2],[-6,4],[-1,6],[-1,2],[-1,1],[-13,21],[-17,-9],[0,-8],[2,-13],[4,-15],[-1,-3],[1,-9],[-6,-5],[-1,-2],[-5,-4],[-1,1],[-19,-16],[-5,-10],[-17,-15],[-8,-16],[-4,-3],[-8,-3],[-3,-1],[-10,3],[-28,15],[-2,6],[2,4],[7,10],[7,56],[4,6],[4,7],[1,4],[0,9],[-2,16],[-3,7],[-4,6],[-14,16],[-6,4],[-4,3],[-44,36],[-12,6],[-30,13],[-84,59],[-8,7],[-43,28],[-1,0],[-36,22],[-18,11],[-33,17],[-1,0],[-7,5],[-18,16],[-1,0],[0,1],[-2,4],[-4,5],[-9,8],[-36,18],[-47,22],[-17,7],[-29,2],[-7,1],[-1,0],[-6,4],[-6,6],[-10,22],[-26,25],[-3,2],[-55,35],[-6,0],[-5,0],[-45,-18],[-5,-4],[0,-5],[2,-4],[3,-4],[2,-2],[3,-7],[0,-1],[1,-9],[1,0],[-2,-3],[-43,-70],[-5,-5],[-5,-4],[-10,-4],[-39,-18],[-20,-9],[-3,-2],[-1,0],[-2,0],[-2,-1],[-1,-1],[-3,1],[-12,-2],[-1,0],[-1,0],[-28,0],[-3,1],[-9,5],[-12,5],[-11,2],[-11,1],[-7,-2],[-71,-19],[-6,-2],[-1,0],[-9,-4],[-5,-5],[-31,-35],[-2,-3],[-6,-7],[-5,-8],[-1,-2],[-16,-3],[-9,1],[-9,3],[-33,18],[-9,8],[-23,19],[7,20],[-2,9],[-2,3],[-23,31],[-3,4],[-6,5],[-8,12],[-17,0],[-20,5],[-15,-1],[-12,10],[-11,2],[-9,0],[-2,2],[-3,0],[0,3],[-6,5],[0,1],[2,16],[-1,8],[-3,3],[-29,8],[-4,1],[-22,7],[-11,23],[-5,4],[-68,-3],[-4,0],[-22,-7],[-25,3],[-3,3],[-2,-1],[-6,7],[-10,7],[-3,3],[-19,19],[-10,14],[0,4],[0,5],[-1,51],[0,1],[-38,17],[-9,9],[-2,2],[-21,1],[-17,0],[-15,1],[-11,9],[-53,9],[-2,0],[-1,0],[-30,5],[-25,-19],[-17,-12],[-3,-8],[3,-23],[4,-34],[-2,-2],[-1,-1],[0,-5],[-16,-15],[-5,-5],[-9,-4],[-15,-6],[-12,-5],[-14,0],[-8,2],[-2,0],[-8,-2],[-55,-13],[-3,1],[-3,-1],[-14,4],[-17,2],[-4,1],[-25,8],[-12,6],[-1,3],[-27,21],[-5,4],[-2,2],[-10,5],[-12,8],[-2,5],[-6,5],[1,5],[-1,3],[7,16],[0,1],[6,17],[-3,9],[-42,22],[0,2],[-1,0],[0,1],[-16,44],[-12,32],[2,4],[5,10],[-8,11],[-14,14],[-5,16],[0,1],[-15,17],[-1,1],[-1,2],[-3,4],[-3,100],[-2,3],[-46,15],[-25,8],[-35,8],[-2,0],[-13,-2],[-14,-3],[-21,2],[-33,-5],[-13,2],[-15,9],[-15,7],[-15,1],[-20,-3],[-17,1],[-13,6],[-3,0],[-14,1],[-6,1],[1,-2],[3,-14],[3,-12],[5,-6],[-2,-6],[1,-5],[-4,0],[-3,-5],[-15,3],[-11,-1],[-10,-5],[-12,-18],[-14,-16],[-9,-9],[-14,-10],[-25,-9],[-4,-1],[-15,-2],[-3,1],[-10,-2],[-47,-4],[-1,0],[-4,0],[-19,-2],[-8,6],[-6,1],[-27,19],[-7,4],[-8,1],[-24,-6],[-8,-4],[-16,-2],[-2,1],[-3,-1],[-14,5],[-2,0],[-2,1],[-47,16],[-3,2],[-29,-12],[-1,0],[-28,-11],[-9,-4],[-4,-1],[-5,-5],[-3,-4],[-5,-14],[-19,-17],[-14,-15],[-14,-7],[-19,0],[-21,-24],[-12,-18],[-4,-1],[-10,-3],[-24,-7],[-3,-1],[-4,-2],[-13,-3],[-7,-2],[-12,-3],[-14,-6],[-6,0],[-4,-1],[0,1],[-3,0],[-9,12],[-3,27],[-1,3],[-8,19],[-1,4],[-1,2],[-14,17],[-6,13],[-2,27],[-1,3],[-1,1],[-6,18],[-7,7],[-12,5],[-4,4],[-1,0],[-47,25],[-8,4],[-5,-1],[-37,-21],[-18,-38],[-20,-32],[-7,-21],[4,-14],[1,-18],[-11,-21],[-23,-15],[-6,-2],[-11,-6],[-5,-3],[-5,-3],[-2,-12],[10,-12],[-2,-8],[1,-2],[-6,-19],[4,-22],[-1,-4],[2,-13],[-1,-2],[0,-5],[-3,-4],[-16,-21],[-15,-21],[0,-6],[-11,-8],[0,-1],[-2,-2],[-1,-7],[6,-9],[3,-5],[12,-8],[11,-15],[-6,-14],[-3,-18],[-9,-6],[-6,-4],[-6,-5],[-3,-3],[-2,0],[-6,-4],[-22,4],[-6,0],[-3,0],[-61,0],[-14,0],[-8,-5],[-16,3],[-3,2],[-75,0],[-5,-1],[-12,-26],[-1,-6],[-2,-2],[-3,-8],[-5,-1],[-18,-2],[-24,4],[-24,10],[-32,13],[-4,1],[-14,2],[-11,4],[-7,16],[-14,6],[-26,-11],[-6,-4],[-2,0],[-4,-2],[-3,1],[-4,0],[-7,1],[-13,3],[-15,9],[-7,3],[-1,1],[-20,7],[-1,0],[-11,0],[-46,-22],[-3,-1],[-4,-4],[-1,2],[-6,-3],[-1,3],[-3,7],[-4,11],[-9,4],[-1,0],[-17,-12],[-13,-1],[-34,2],[-12,7],[4,15],[85,44],[0,2],[-20,7],[-9,2],[-12,5],[-5,15],[2,16],[4,12],[0,7],[-5,4],[-6,4],[-14,1],[-16,10],[-11,12],[3,5],[9,13],[-6,14],[-12,14],[-1,1],[-2,3],[6,40],[-1,4],[-39,41],[-3,2],[-2,3],[-2,3],[0,1],[-4,6],[6,13],[0,1],[2,17],[0,3],[-18,5],[-9,11],[-14,10],[-14,11],[-25,6],[-8,2],[-12,-2],[-33,12],[-6,1],[-9,0],[-8,-4],[-11,-10],[-6,2],[-1,-1],[-3,2],[-1,1],[-2,1],[-53,28],[-7,2],[-20,-1],[-3,14],[-5,3],[-3,2],[-1,0],[-13,7],[-18,-1],[-38,5],[-11,-3],[-1,0],[-21,-6],[-7,-7],[-11,-19],[-2,-9],[-2,0],[-1,-2],[-3,2],[-13,-2],[-4,7],[-3,1],[-23,8],[-5,-9],[-7,-30],[0,-1],[1,-2],[-2,-2],[-1,-5],[-1,-4],[-5,0],[-1,1],[0,-1],[-5,1],[-36,5],[-8,1],[-3,1],[-6,1],[0,2],[-3,1],[3,8],[0,11],[0,6],[-6,12],[-14,4],[-16,10],[-3,5],[-5,3],[1,6],[-1,2],[2,3],[4,30],[0,1],[2,7],[1,13],[-21,17],[-12,11],[-10,18],[-4,1],[-96,22],[-3,-4],[-12,-4],[-26,10],[-14,9],[-13,5],[-8,2],[-2,0],[-9,0],[-4,-2],[-15,-13],[-24,-2],[-3,-1],[-38,-15],[-5,-6],[-3,-2],[-8,-5],[-4,-1],[-13,-3],[-1,0],[-5,-1],[-11,-1],[-1,0],[-3,-1],[-6,-5],[-19,-14],[-3,-2],[-4,-7],[-2,-4],[-2,-3],[-6,-6],[-2,-2],[-10,-11],[-6,-2],[-9,-4],[-13,-3],[-17,4],[-19,16],[-26,16],[-13,11],[-5,16],[-5,7],[-2,2],[-18,15],[-8,0],[-27,2],[-2,1],[-2,-1],[1,-2],[14,-37],[6,-15],[1,-20],[-6,-14],[-5,-4],[-1,-6],[-49,-21],[-5,-5],[-13,-12],[-11,-8],[-14,-6],[-12,-3],[-19,2],[-23,11],[-2,4],[-1,2],[-2,5],[-2,5],[-9,21],[-3,16],[-6,19],[-1,31],[4,21],[53,59],[3,4],[3,12],[0,6],[0,3],[0,12],[0,2],[0,7],[-11,8],[-11,2],[-8,2],[-21,2],[-6,3],[-9,2],[-10,-6],[-1,-1],[-11,-13],[-3,-5],[-12,-28],[-13,-7],[-4,1],[-1,-1],[-1,2],[-9,3],[-7,18],[-2,3],[-19,26],[-1,2],[-12,7],[-14,5],[-18,8],[-11,-2],[-9,-10],[-2,-2],[-7,-14],[-12,-5],[-3,-3],[-1,-1],[-7,-7],[-2,-2],[24,-29],[9,-11],[14,-15],[6,-30],[-8,-19],[-93,-18],[-1,-2],[-19,-11],[-17,2],[-9,2],[-64,-12],[-11,-4],[-20,-2],[-2,-1],[1,5],[-2,11],[7,15],[-8,15],[0,1],[-15,9],[-13,5],[-3,16],[-12,9],[-22,1],[-23,1],[-2,1],[-8,1],[-93,41],[-21,9],[-6,1],[-12,7],[-18,-5],[-4,-1],[-23,-5],[-3,3],[-2,3],[-31,36],[-7,3],[-14,5],[-4,16],[-23,30],[-12,8],[-10,19],[-2,5],[-2,3],[-24,28],[-1,1],[-181,92],[-44,23],[-431,220],[-156,79],[-54,27],[-127,65],[-11,6],[-117,60],[-13,6],[-31,15],[-3,2],[-19,11],[-14,6],[-28,15],[-27,14],[-12,5],[-29,15],[-14,7],[-57,30],[-78,39],[-38,20],[-211,107]],[[17207,71467],[112,0],[134,0],[21,0],[230,0],[249,0],[78,0],[108,0],[69,0],[69,-1],[3,0],[11,0],[291,0],[131,1],[117,2],[97,1],[32,1],[169,2],[80,0],[142,0],[110,0],[96,0],[39,0],[13,0],[15,0],[90,0],[21,0],[109,0],[67,0],[56,0],[38,0],[178,1],[34,0],[86,0],[2,0],[155,-1],[16,0],[110,0],[98,0],[29,0],[105,0],[17,0],[65,0],[25,0],[22,1],[20,0]],[[33771,64905],[-1,-53],[-1,-66],[0,-19],[2,-26],[0,-112],[-1,-82],[0,-73],[0,-44],[-1,-122],[0,-7],[0,-24],[-1,-18],[1,-23],[1,-66],[-1,-11],[-1,-28],[0,-2],[0,-63],[0,-40],[0,-102],[0,-98],[0,-5],[0,-15],[-1,-115],[0,-50],[0,-55],[-36,1],[-68,0],[-47,0],[-62,1],[-39,0],[-134,0],[-18,0],[-98,0],[-56,-1],[-196,-1],[-36,0],[-93,0],[-32,0],[-44,1],[0,-20],[1,-133],[0,-5],[0,-26],[0,-47],[-1,-65],[0,-28],[-1,-67],[0,-39],[0,-21],[0,-21],[0,-83],[1,-50],[0,-67],[0,-65],[0,-23],[0,-70],[0,-45],[0,-21],[0,-61],[-2,-122],[0,-26],[-1,-32],[0,-56],[-1,-109],[-1,-27],[0,-9],[-2,-90],[-2,-67],[-1,-74],[-1,-23],[0,-30],[0,-20],[-1,-63],[0,-84],[1,-77],[0,-69],[0,-25],[3,-48],[7,-218],[0,-1],[-2,-137],[0,-3],[0,-26],[0,-53],[0,-118],[0,-79],[1,-19],[-215,-1],[-78,0],[-21,2],[-14,-1],[-116,-1],[-52,0],[-56,0],[-39,0],[-25,0],[-21,0],[-60,0],[-28,0],[-12,0],[-27,0],[-43,0],[-82,0],[-90,0],[-50,0],[-40,-1],[-41,0],[-108,0],[-14,1],[-149,-1],[-93,0],[-24,0],[-32,0],[-38,-1],[-156,0],[-63,-1],[-14,-2],[-1,0]],[[31004,60919],[-21,20],[-21,19],[-4,3],[-6,1],[-32,7],[-17,9],[-8,11],[-1,1],[-10,13],[-3,6],[-9,17],[-64,85],[-8,11],[-1,1],[-3,10],[-17,44],[5,29],[15,18],[5,3],[5,4],[9,6],[1,10],[-18,19],[-23,9],[-12,12],[-16,33],[-4,7],[-10,10],[-39,1],[-8,3],[-18,15],[-31,27],[-105,10],[-48,1],[-28,-1],[-4,-1],[-18,-3],[-18,-12],[-10,-7],[-23,3],[-3,1],[-5,2],[-14,7],[-8,8],[-5,28],[-1,1],[-8,22],[-26,27],[-21,9],[-17,1],[-8,-2],[-3,-1],[-10,-8],[-2,-2],[-2,-5],[-5,-16],[-14,-10],[-8,0],[-5,1],[-13,0],[-8,5],[-12,14],[-1,4],[-2,6],[-12,12],[-19,2],[-11,-3],[-10,-7],[-4,-9],[-6,-11],[-19,-10],[-1,0],[-14,1],[-21,11],[-34,32],[-2,1],[-2,0],[-27,4],[-1,0],[-54,-22],[-59,-10],[-25,-3],[-4,-1],[-29,-3],[-58,3],[-16,3],[-25,6],[-16,1],[-5,0],[-2,0],[-50,-17],[-22,0],[-36,14],[-12,7],[-5,5],[-1,1],[-6,6],[0,1],[3,8],[4,12],[-19,30],[-31,28],[-3,3],[-17,8],[-14,14],[-89,48],[-95,29],[-14,6],[-9,6],[-2,12],[0,3],[1,5],[38,20],[25,-4],[7,-1],[13,8],[12,8],[3,24],[-3,12],[-20,66],[-5,16],[-22,71],[-11,22],[-9,9],[-10,11],[-8,16],[-2,18],[-1,9],[-18,19],[-21,9],[-35,3],[-24,-2],[-47,-15],[-34,-10],[-21,-15],[-11,-7],[-5,-2],[-31,-11],[-28,2],[-13,7],[-45,3],[-28,-2],[-1,0],[-20,-6],[-15,-9],[-20,-13],[-40,-18],[-20,-4],[-54,4],[-82,-10],[-15,-12],[-4,-4],[-11,-24],[-36,-35],[0,-1],[-16,-11],[-9,-6],[-26,-19],[-24,-4],[-77,-2],[-6,-1],[-1,0],[0,-3],[-8,1],[-3,1],[-85,-6],[-28,-2],[-3,0],[-5,0],[-13,-2],[-21,-1],[-21,7],[-9,4],[-20,7],[-9,7],[-3,2],[-7,6],[-3,8],[-7,18],[-12,12],[-13,7],[-2,0],[-45,-1],[-40,-6],[-12,1],[-36,4],[-30,6],[-8,5],[-52,54],[-7,7],[-8,9],[-34,14],[-11,11],[-3,3],[-24,63],[-3,12],[1,8],[1,1],[1,9],[5,27],[-19,30],[-4,4],[-12,11],[-6,6],[-27,-1],[-14,0],[-5,3],[-7,4],[-44,7],[-4,0],[-3,2],[-35,26],[-32,14],[-22,5],[-10,3],[-7,5],[-5,3],[-3,0],[-10,1],[-20,13],[-8,9],[-1,1],[-1,1],[-7,9],[-9,10],[-10,11],[-44,84],[-3,17],[4,38],[25,35],[19,14],[46,34],[44,41],[9,13],[5,11],[4,11],[3,8],[92,71],[37,28],[6,5],[13,9],[22,9],[3,1],[19,14],[2,3],[25,29],[30,42],[20,27],[14,13],[15,22],[11,8],[87,65],[20,19],[2,5],[19,32],[12,39],[0,1],[3,11],[30,40],[10,7],[13,-1],[1,-1],[2,0],[5,-2],[3,-2],[17,-13],[13,-1],[1,0],[7,3],[13,3],[11,9],[3,12],[2,9],[3,11],[5,20],[27,30],[7,14],[16,19],[-1,2],[0,4],[1,5],[0,5],[0,2],[-18,19],[-35,14],[-26,6],[-13,3],[-12,12],[-7,18],[-15,16],[-1,0],[-58,11],[-68,-2],[-12,-2],[-27,-1],[-18,1],[-5,0],[-5,0],[-2,1],[-4,1],[-4,0],[-2,1],[-18,3],[-10,10],[-10,10],[-5,10],[-5,20],[2,63],[-6,54],[-19,57],[-17,22],[-11,13],[-5,5],[-6,28],[4,38],[12,56],[7,15],[8,14],[27,47],[39,29],[35,13],[6,2],[1,24],[0,8],[-2,3],[-2,3],[-68,68],[-16,13],[-14,7],[-59,6],[-61,-3],[-22,-2],[-18,-7]],[[27740,68848],[35,0],[47,0],[25,0],[71,0],[13,0],[57,1],[165,0],[264,1],[33,0],[14,0],[9,0],[5,0],[20,0],[189,0],[57,0],[23,0],[16,0],[62,0],[21,0],[31,0],[93,0],[8,0],[1,0],[12,0],[20,0],[4,0],[131,0],[20,0],[65,-1],[13,0],[94,0],[148,-1],[16,0],[103,1],[148,1],[74,1],[15,0],[56,0],[88,1],[147,-1],[108,-1],[24,0],[146,1],[82,0],[221,1],[13,0],[17,0],[15,0],[30,0],[32,-1],[28,0],[145,0],[52,0],[61,0],[83,0],[78,0],[18,-1],[13,0],[28,0],[8,0],[169,0],[150,2],[80,1],[19,0],[187,1],[316,-3],[157,-1],[21,-1],[22,0],[438,2],[123,0],[21,-1],[26,0],[127,0],[55,-1],[25,0],[66,0],[70,-1],[80,0],[9,0],[26,-1],[49,1],[46,0],[59,0],[11,0],[10,0],[18,0],[20,1],[34,-7],[1,-72],[0,-67],[1,-29],[0,-19],[0,-29],[1,-49],[2,-166],[0,-16],[0,-3],[0,-18],[-1,-21],[0,-13],[0,-20],[0,-1],[-1,-101],[-1,-25],[0,-12],[-2,-160],[-1,-13],[0,-10],[0,-23],[0,-56],[0,-109],[0,-21],[0,-7],[0,-13],[0,-18],[-1,-18],[-1,-101],[-1,-106],[-1,-155],[0,-58],[0,-178],[0,-45],[-3,-99],[-1,-30],[-1,-59],[-1,-22],[0,-23],[0,-68],[0,-84],[0,-1],[-1,-195],[0,-13],[0,-82],[-1,-106],[0,-46],[0,-1],[0,-17],[0,-24],[0,-1],[0,-38],[-1,-42],[0,-29],[-1,-69],[-1,-61],[-2,-147],[0,-55],[2,-133],[0,-44],[-1,-310],[0,-28],[0,-31],[0,-35],[0,-79],[0,-4],[-1,-146],[0,-63]],[[36775,64895],[0,-49],[1,-53],[1,-192],[0,-33],[1,-37],[0,-68],[0,-18],[0,-60],[1,-120],[0,-2],[0,-76],[0,-78],[0,-114],[-1,-16],[2,-15],[0,-4],[-1,-50],[-7,-219],[-2,-71],[-1,-28],[27,1],[107,-2],[26,-1],[81,-1],[27,-1],[6,-1],[35,0],[204,-4],[0,-33],[2,-98],[1,-55],[0,-46],[0,-23],[1,-103],[-1,-63],[-1,-17],[2,-103],[-1,-100],[0,-69],[0,-41],[0,-61],[0,-62],[0,-331],[0,-28],[-1,-74],[0,-87],[0,-92],[0,-42],[-1,-138],[0,-1],[-1,-80],[1,-30],[0,-11],[0,-38],[1,-43],[1,-72],[2,-203],[0,-29],[1,-76],[0,-191],[0,-17],[-2,-91],[-1,-52],[0,-29],[-4,-230],[0,-6],[-1,-41],[0,-2],[0,-26],[0,-13],[-1,-41],[0,-99],[0,-17],[-1,-18],[0,-37],[0,-27],[0,-21],[0,-30],[0,-55],[-2,-104],[0,-58],[-1,-33],[0,-19],[1,-45],[-1,-49],[0,-34],[-1,-31],[0,-28],[0,-33],[0,-17],[-1,-173],[0,-28],[-1,-190],[0,-6],[0,-29],[1,-196],[-3,-47],[0,-75],[-1,-241],[-1,-52],[-6,-193],[-1,-24],[0,-22],[-1,-30],[2,-218],[24,1],[185,0],[225,0],[101,0],[88,0],[28,0],[41,-3],[65,-4]],[[34089,51443],[-53,-1],[-16,7],[-30,11],[-28,-1],[-39,12],[-38,8],[-19,6],[-24,8],[-12,7],[-43,24],[-11,-3],[-6,-2],[-1,0],[-2,2],[-29,7],[-4,1],[-18,8],[-43,8],[-1,0],[-13,2],[-2,0],[-14,4],[-16,15],[-7,15],[-5,4],[-8,7],[-8,0],[-2,2],[-4,0],[-2,0],[-6,0],[-10,1],[-9,8],[-1,0],[-1,2],[-2,1],[-2,1],[-1,0],[-7,4],[-1,0],[-2,1],[-1,0],[-20,6],[-1,1],[-2,0],[-1,0],[-7,1],[-1,0],[-2,0],[-6,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-5,-2],[-2,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-1,-1],[-1,-1],[-10,-5],[-9,-4],[-4,0],[-70,5],[-68,5],[-4,1],[-28,11],[-49,21],[-3,1],[-2,1],[-2,1],[-1,0],[-35,90],[-12,17],[-25,28],[-29,12],[-33,33],[-16,40],[1,27],[0,26],[-36,28],[-10,11],[-4,3],[-1,6],[2,23],[6,11],[14,16],[3,28],[0,4],[-70,97],[-2,2],[-21,23],[-2,2],[-20,19],[-10,10],[-14,13],[-18,12],[-32,22],[-1,1],[-13,8],[-23,11],[-24,0],[-33,-2],[-17,17],[-44,44],[0,1],[-2,1],[-1,1],[-18,14],[-1,1],[-1,1],[-16,10],[0,9],[-1,8],[-10,11],[-6,5],[-5,4],[-6,0],[-68,26],[-38,25],[-26,18],[-18,29],[-8,14],[-6,10],[-9,6],[-26,18],[-8,9],[-1,1],[-1,2],[-2,1],[-15,13],[-2,2],[-2,1],[-2,1],[-1,1],[-71,48],[-1,2],[-3,3],[-1,5],[2,61],[0,2],[0,2],[-1,3],[0,2],[-2,13],[0,1],[0,2],[-1,2],[-6,25],[0,1],[-12,45],[-1,3],[-1,2],[-3,9],[-4,14],[-25,95],[-10,42],[-7,29],[43,65],[6,6],[12,14],[5,6],[7,7],[2,1],[11,12],[1,2],[71,36],[14,7],[2,1],[17,16],[0,7],[1,23],[-16,80],[3,30],[15,28],[42,45],[2,3],[6,13],[5,36],[-2,19],[-3,2],[-17,14],[-22,17],[-4,3],[1,16],[3,3],[57,61],[3,3],[2,2],[6,7],[3,14],[3,11],[18,10],[8,-1],[39,-5],[11,7],[3,2],[10,7],[2,5],[2,13],[0,7],[0,1],[0,1],[-10,26],[3,33],[18,70],[2,10],[1,39],[0,1],[0,2],[0,11],[0,1],[10,10],[4,15],[-1,16],[14,29],[-24,9],[-3,1],[-4,1],[14,15],[7,14],[15,13],[9,17],[8,12],[1,26],[12,11],[16,5],[17,14],[18,7],[13,10],[5,7],[4,2],[0,2],[3,5],[1,33],[-4,18],[-3,33],[-6,18],[3,3],[22,25],[-9,43],[2,5],[3,5],[13,22],[23,26],[6,7],[2,7],[11,34],[3,53],[51,76],[35,49],[71,63],[4,5],[29,28],[34,31],[21,23],[102,115],[6,9],[4,6],[5,8],[11,19],[2,3],[1,2],[3,29],[-2,20],[0,3],[-1,15],[-4,6],[3,23],[3,5],[3,6],[43,67],[37,24],[6,-2],[14,10],[30,35],[19,21],[7,15],[4,7],[5,11],[1,15],[-1,46],[0,23],[-8,29],[7,33],[0,1],[0,1],[-5,15],[-54,39],[-16,14],[-15,21],[-8,27],[-9,9],[-12,22],[2,42],[5,3],[7,12],[0,20],[0,9],[-1,40],[-9,10],[-12,12],[-1,1],[-2,1],[-10,6],[-4,3],[-27,17],[-17,10],[-20,9],[0,1],[-2,1],[-92,58],[-9,10],[-4,4],[-11,22],[-3,52],[-5,4],[-3,4],[-8,3],[-2,2],[-5,2],[-25,9],[-18,3],[-5,1],[-15,7],[-19,22],[-4,5],[-5,10],[-6,11],[-12,13],[-18,9],[-42,11],[-31,0],[-42,-14],[-27,-13],[-46,-33],[-30,-21],[-13,-10],[-10,-16],[-3,-14],[-1,-3],[-2,-2],[-14,-12],[-5,-5],[-55,-25],[-11,-2],[-24,-5],[-32,-20],[-49,-56],[-64,-75],[-37,-45],[-22,-26],[-7,-8],[-5,-8],[-36,-56],[-5,-28],[-16,-12],[-11,-3],[-54,2],[-2,0],[-43,-11],[-13,-4],[-4,-2],[-9,-4],[-8,-5],[3,-39],[0,-4],[-25,-30],[-14,-11],[-25,0],[-1,0],[-2,0],[-22,-6],[-16,-8],[-23,4],[-3,1],[-4,1],[-14,5],[-21,12],[-43,26],[-51,0],[-13,-4],[-21,-7],[-31,-9],[-29,-6],[-16,2],[-7,0],[-11,5],[-22,13],[-27,24],[-9,7],[-13,5],[-5,0],[-79,3],[-41,1],[-15,-1],[-31,-9],[-23,-10],[-2,-1],[-18,-12],[-14,-3],[-69,3],[-31,9],[-21,7],[-43,5],[-6,-3],[-7,-4],[-4,-15],[-16,-12],[-21,0],[-1,0],[-8,8],[-18,11],[-13,5],[-30,2],[-9,-1],[-28,-21],[-8,-20],[-1,-14],[-3,-32],[-15,-20],[-5,-3],[-2,0],[-10,-1],[-7,0],[-31,-7],[-10,-3],[-49,-20],[-12,-3],[-10,-3],[-19,0],[-5,2],[-2,0],[0,1],[12,18],[3,6],[1,1],[1,13],[1,16],[-6,14],[-2,5],[-2,5],[-10,10],[-8,8],[-9,9],[-41,4],[-11,1],[-34,14],[-30,22],[-5,6],[-13,16],[-11,13],[-9,19],[0,3],[0,7],[-1,4],[1,8],[7,52],[-3,18],[0,1],[-1,5],[-4,6],[-9,16],[-4,6],[-3,3],[-10,11],[-4,4],[-4,3],[-13,8],[-37,5],[-1,0],[-1,0],[-2,-1],[-12,-2],[-3,-2],[-11,-8],[-2,-21],[4,-11],[3,-5],[17,-17],[32,-33],[11,-16],[0,-3],[0,-5],[0,-22],[-5,-4],[-12,-10],[-45,-14],[-14,-11],[-14,-19],[-1,-2],[-1,0],[-3,1],[-4,1],[-21,2],[-83,2],[-3,0],[-7,7],[-3,9],[-3,10],[-4,10],[3,27],[9,32],[26,41],[3,4],[5,7],[53,42],[31,26],[73,60],[0,1],[0,4],[0,13],[0,9],[-3,3],[-6,6],[-26,27],[-10,9],[-5,12],[0,2],[3,32],[0,4],[25,33],[26,19],[3,1],[4,2],[84,38],[11,5],[11,8],[13,10],[11,8],[9,10],[5,10],[16,41],[2,7],[2,16],[-2,3],[-2,7],[-10,13],[-5,5],[-1,1],[-2,3],[-3,3],[-4,7],[-2,6],[-1,1],[0,27],[10,15],[14,10],[46,21],[32,12],[18,14],[4,3],[1,53],[-9,66],[-11,20],[-15,16],[-33,24],[-4,2],[-3,4],[-9,12],[-15,19],[1,4],[1,13],[-8,31],[-25,33],[-1,5],[-4,11],[-1,5],[0,10],[6,78],[-16,33],[-1,1],[-9,10],[-1,13],[7,8],[4,4],[16,17],[24,16],[3,3],[8,12],[2,9],[3,16],[8,18],[8,8],[4,3],[2,1],[16,11],[29,9],[25,8],[17,11],[4,3],[7,7],[11,20],[6,21],[3,11],[9,5],[1,1],[19,12],[5,-2],[17,5],[12,3],[43,14],[4,4],[7,5],[5,5],[5,11],[17,35],[2,19],[7,9],[17,12],[83,38],[41,35],[23,17],[44,25],[37,28],[3,4],[61,72],[5,7],[1,2],[4,5],[0,2],[2,16],[0,5],[-1,2],[-17,32],[-2,27],[8,15],[11,8],[5,4],[36,35],[4,3],[6,4],[2,3],[31,33],[1,2],[0,4],[11,87],[-4,8],[2,14],[0,8],[12,16],[19,26],[1,3],[28,35],[6,21],[4,16],[-8,14],[-18,29],[-16,16],[-16,7],[-10,10],[-4,4],[-10,11],[-12,28],[-27,61],[-18,55],[-3,40],[-11,83],[-3,14],[-6,8],[-8,26],[12,106],[9,45],[-50,59],[-11,5],[-59,60],[-22,23],[-3,10],[2,24],[-9,12],[-18,21],[-5,4],[-39,28],[-29,11],[-3,1],[-10,1],[-31,16],[-28,30],[-28,22],[-13,18],[3,15],[7,10],[11,15],[6,17],[1,17],[1,8],[-5,14],[1,13],[21,14],[7,3],[17,-1],[10,-9],[29,-13],[4,-3],[9,0],[17,-1],[46,-2],[16,-9],[30,-10],[45,-4],[7,-4],[8,-4],[51,-29],[61,-10],[0,-1],[1,0],[46,-3],[5,0],[20,2],[22,8],[4,2],[8,6],[16,11],[15,18],[2,4],[8,22],[5,13],[-3,19],[3,27],[0,3],[1,1],[7,14],[6,32],[-2,77],[0,4],[-2,13],[5,30],[1,2],[6,8],[3,5],[18,11],[10,6],[13,5],[11,9],[8,7],[33,28],[9,8],[4,63],[1,25],[1,12],[0,1],[1,2],[12,40],[1,9],[3,50],[-16,16],[-11,22],[-7,39],[3,34],[-23,67],[-16,18],[-10,5],[-45,7],[-74,19],[-31,20],[-13,13],[-1,1],[-5,12],[-2,46],[-1,2],[-6,12],[-4,5],[-18,20],[-4,3],[-4,5],[-24,16],[-3,2],[-5,5],[-8,7],[0,1],[-6,5],[-9,8],[-4,3],[-1,3],[-8,15],[-4,10],[-3,6],[-4,9],[-18,51],[-22,42],[-9,14],[-8,8],[-6,6],[-16,15],[-3,1],[-1,0],[-16,10],[-25,28],[-9,9],[-25,11],[-35,15],[-12,9],[-14,16],[1,5],[5,31],[-7,21],[-1,3],[-10,16],[2,20],[17,18],[15,16],[5,10],[1,17],[0,1],[-19,25],[-3,0],[-31,1],[-12,10],[1,12],[8,14],[15,13],[11,-2],[8,4],[35,1],[23,5],[17,4],[8,3],[9,3],[17,16],[5,3],[11,1],[39,-1],[10,1],[27,2],[47,16],[7,5],[2,2],[35,39],[23,18],[2,0],[6,4],[23,11],[54,5],[11,1],[3,-1],[3,-1],[9,1],[73,13],[8,6],[2,1],[4,4],[4,21],[2,16],[2,11],[3,18],[-2,29],[-12,29],[-3,4],[-21,33],[-20,20],[-4,5],[-15,11],[-21,15],[-23,16],[-82,44],[-36,19],[-36,28],[-26,24],[-4,10],[-3,8],[-36,35],[1,5],[1,7],[5,4],[30,22],[8,20],[6,34],[-23,25],[-11,12],[-21,23],[-23,15],[-13,6],[-7,3],[-3,1],[-31,10],[-54,9],[-13,0],[-39,1],[-23,24],[-13,4],[-4,1],[-71,17],[-2,0],[-31,10],[-25,12],[-43,32],[-50,44],[-4,3],[-2,1]],[[33771,64905],[255,-1],[66,0],[30,0],[38,0],[41,0],[21,0],[55,-1],[47,0],[24,0],[118,-2],[26,0],[34,0],[73,-1],[33,0],[132,-1],[36,0],[225,0],[208,-1],[5,0],[34,0],[119,1],[127,0],[11,0],[13,0],[235,1],[14,1],[395,-2],[3,0],[89,0],[164,-1],[87,-1],[246,-2]],[[74903,59462],[-15,0],[-2,0],[-55,0],[-146,-1],[-352,-3],[3,-127],[1,-50],[1,-47],[3,-193],[1,-41],[2,-88],[2,-112],[3,-170],[0,-4],[1,-43],[1,-51],[0,-53],[1,-46],[0,-21],[1,-50],[0,-22],[1,-80],[1,-114],[3,-139],[1,-34],[1,-40],[1,-23],[2,-108],[3,-109],[1,-44],[1,-66],[0,-39],[1,-70],[0,-16],[2,-67],[2,-141],[0,-19],[0,-1],[7,-362],[0,-27],[0,-1],[7,-320],[1,-14],[0,-46],[0,-39],[0,-119],[1,-97],[-1,-36],[0,-31],[0,-9],[1,-74],[0,-22],[0,-10],[1,-33],[-2,-87],[-1,-31],[0,-13],[0,-3],[0,-16],[-1,-64],[0,-22],[2,-120],[0,-53],[0,-26],[-1,-49],[0,-36],[0,-29],[-1,-79],[0,-18],[0,-2],[-1,-54],[-1,-34],[0,-21],[0,-53],[-3,-55],[-1,-59],[0,-19],[-1,-30],[-1,-17],[-1,-30],[-1,-19],[-1,-9],[-1,-39],[-1,-48],[0,-3],[-4,-163],[-2,-221],[0,-60],[-1,-71],[0,-13],[0,-4],[0,-15],[0,-2],[-1,-30],[3,-18],[30,0],[1,-44],[0,-19],[2,-78],[0,-17],[0,-12],[0,-57],[1,-50],[0,-3],[1,-109],[-1,-49],[0,-27],[-2,-65],[0,-18],[0,-16],[-1,-27],[-1,-20],[1,-38],[0,-22],[1,-29],[0,-49],[1,-77],[0,-87],[0,-26],[0,-109],[0,-16],[0,-17],[-1,-75],[-1,-19],[0,-47],[-1,-39]],[[74398,52994],[-245,0],[-247,-2],[-29,1],[-71,0],[-147,1],[-73,0],[-17,0],[-51,-1],[-107,-1],[-9,0],[-4,0],[-2,0],[-15,0],[-18,1],[-36,0],[-95,0],[-66,1],[-188,0],[-29,0]],[[72949,52994],[-26,1],[-24,0],[-23,-1],[-34,0],[-22,0],[-6,0],[-45,0],[-127,1],[-31,-1],[-17,0],[-26,1],[-18,-1],[-18,1],[-13,0],[-105,1],[-21,0],[-23,0],[-26,0],[-203,2],[-21,2],[-4,0],[-142,1],[-225,5],[-168,2],[-31,0],[-21,0],[-21,1],[-15,0],[-17,1],[-20,0],[-45,0],[-67,-2],[-48,1],[-109,1],[-1,0],[-53,2],[-35,0],[-37,0],[-23,0],[-16,0],[-16,0],[-34,1],[-18,0],[-43,0],[-23,0],[-26,1],[-14,0],[-32,0],[-19,-1],[-25,-1],[-3,0],[-30,0],[-64,1],[-20,0],[-163,1],[-63,1],[-145,2],[-37,0],[-245,5],[-7,1],[-54,0],[-31,1],[-13,0],[-24,0],[-12,1],[-24,3],[-109,1],[-66,1],[-32,0],[-127,1],[-29,1],[-18,0],[-25,0],[-26,0],[-28,1],[-34,0],[-39,0],[-14,1],[-32,0],[-106,2],[-52,0],[-28,1],[-55,0],[-19,0],[-91,0],[-7,1],[-8,0],[-23,2],[-2,1],[-71,-1],[-48,-1],[-4,0],[-11,1],[-46,0],[-22,1],[-106,2],[-39,-1]],[[68520,53042],[-1,16],[0,23],[0,44],[0,17],[0,19],[0,106],[1,91],[1,91],[1,34],[1,82],[1,48],[1,36],[2,60],[1,78],[1,22],[3,115],[1,108],[1,71],[1,37],[2,74],[2,151]],[[68539,54365],[1,34],[2,106],[1,51],[3,193],[2,55],[5,219],[2,101],[1,29],[1,83],[2,88],[2,41],[1,45],[0,51],[5,187],[1,38],[0,16],[1,33],[2,56],[0,53],[1,26],[0,20],[1,72],[0,19],[0,30],[0,53],[0,208],[0,29],[0,46],[0,36],[1,47],[-1,120],[0,18],[0,18],[0,27],[0,28],[0,30],[0,1],[1,56],[-1,57],[-1,49],[0,18],[-1,37],[-1,17],[0,27],[0,15],[-1,16],[0,25],[-1,24],[0,47],[0,54],[0,10],[-1,38],[0,71],[0,105],[-1,17],[0,52],[0,2],[0,14],[-1,26],[0,57],[0,51],[-2,116],[1,42],[1,172],[0,92],[0,128],[-1,77],[0,140],[0,217],[0,89],[0,86],[0,12],[0,32],[0,156],[0,59],[-4,211],[0,219],[0,43],[0,114],[0,5],[1,60],[-2,77],[-1,38],[0,8],[-1,96],[-1,77],[-2,27],[0,56],[-1,57],[0,75],[-1,101],[0,44],[0,23],[0,2],[0,71],[0,25],[0,97],[0,3],[0,17],[0,37],[0,16],[0,46],[1,97],[-2,142],[0,23],[-1,56],[1,49],[-1,59],[0,1],[0,25],[-2,87],[-1,108],[0,60],[0,65],[0,98],[0,16],[-1,24],[0,3],[1,16],[0,23],[0,24],[-1,22],[0,39],[0,7],[0,29],[0,19],[-1,52],[0,17],[0,16],[-1,16],[1,16],[0,16],[-1,16],[1,26],[-1,12],[-1,6]],[[84742,53121],[-59,-1],[-117,0],[-127,-1],[-101,0],[-22,0],[-34,-1],[-18,1],[-18,0],[-17,0],[-11,-9],[-16,-3],[-9,11],[-94,-1],[-34,0],[-33,0],[-29,0],[-31,0],[-17,0],[-1,0],[-34,0],[-44,1],[-4,0],[-121,1],[-68,0],[-123,0],[-19,0],[-84,1],[-1,0],[-190,1],[-35,0],[-198,-10],[-60,-2],[-74,-2],[-13,-1],[-71,-2],[-20,0],[-63,-2],[-21,-1],[-38,-1],[-92,-3],[-32,0],[-65,-2],[-64,-2],[-67,-1],[-110,-2],[-81,-1],[-95,-3],[-76,-3],[-43,0],[-200,1],[-152,-2],[-96,1],[-74,2],[-56,1],[-113,3],[-20,0],[-227,3],[-2,0],[-114,1],[-81,0],[-17,0],[-32,0],[-122,-1],[-124,-1],[-133,-2],[-24,0],[-88,-1],[-244,-6],[-45,-2],[-201,-6],[-61,-2],[-145,-5],[-14,-1],[-2,0],[-11,0],[-13,-1],[-65,0],[-80,-1],[-70,-1],[-30,0],[-105,-4],[-124,-5],[-17,-1],[-14,-1],[-229,-8]],[[78803,53044],[-12,-1],[-97,-2],[-14,0],[-30,-1],[-91,-3],[-85,-3],[-162,-6],[-15,-1],[-172,-3],[-60,-2],[-125,-5],[-59,-2],[-64,-3],[-142,-5],[-70,-2],[-34,-2],[-200,-6],[-12,-1],[-36,-1],[-109,-3],[-109,-3],[-226,0],[-206,1],[-125,0],[-91,1],[-67,0],[-9,-1],[-39,0],[-86,1],[-1,0],[-21,0],[-52,0],[-58,0],[-33,0],[-13,0],[-15,0],[-64,-1],[-61,0],[-59,0],[-62,4],[-62,1],[-14,0],[-47,-2],[-62,0],[-61,0],[-186,1],[-21,0],[-40,1],[-48,0],[-26,-1],[-2,0],[-44,0],[-63,0],[-1,0],[-15,0],[-47,0],[-61,0],[-24,0],[-24,0],[-14,0],[-2,0],[-28,0],[-5,0],[-26,-1],[-67,3],[-86,-1],[-76,-1],[-58,-1],[-53,0],[-91,1],[-65,0]],[[67035,51753],[0,-28],[-1,-101],[0,-88],[-1,-112],[-1,-17],[0,-7],[0,-9],[0,-16],[-1,-23],[-1,-35],[0,-55],[0,-16],[0,-39],[0,-54],[0,-54],[0,-56],[0,-56],[0,-34],[0,-15],[0,-2],[0,-20],[0,-22],[1,-17],[0,-139],[1,-30],[2,-127],[3,-144],[94,-11],[-2,-28],[-1,-15],[0,-73],[-1,-55],[2,-55],[1,-56],[-1,-55],[-1,-54],[1,-54],[0,-32],[0,-22],[0,-21],[0,-25],[-1,-27],[1,-38],[-1,-47],[0,-20],[0,-58],[1,-27],[-1,-68],[0,-127],[0,-20],[0,-17],[-2,-59],[3,-89],[2,-61],[2,-67],[2,-42],[3,-85],[1,-24],[1,-43],[1,-28],[1,-37],[1,-20],[5,-148],[1,-14],[-1,-85],[0,-27],[0,-1],[-1,-70],[0,-37],[-3,-57],[1,-51],[6,-211],[1,-16],[-1,-79],[0,-22],[3,-78],[1,-48],[1,-45],[2,-49]],[[67158,47839],[-33,1],[-6,0],[-38,0],[-174,1],[-69,1],[-49,1],[-119,1],[-134,3],[-113,1],[-255,3],[-50,0],[-182,2],[-199,0],[-45,0],[-44,0],[-101,1],[-22,0],[-28,0],[-30,0],[-23,0],[-14,0],[-86,-1],[-23,0],[-15,0],[-123,-1],[-130,0],[-115,0],[-100,0],[-19,0],[-88,0],[-32,0],[-36,0],[-36,0],[-46,-1],[-90,-1],[-36,-1],[-21,1],[-79,-1],[-22,0],[-117,0],[-55,0],[-6,0],[-102,1],[-3,0],[-14,0],[-29,0],[-37,0],[-17,-1],[-23,0],[-21,1],[-29,1],[-14,0],[-57,0],[-41,0],[-46,0],[-89,1],[-44,0],[-36,0],[-77,1],[-22,0],[-21,0],[-210,3],[-24,0],[-91,0],[-124,0],[-56,0],[-25,0],[-31,1],[-86,0],[-13,0],[-52,2],[-193,0],[-180,0],[-68,1],[-245,0],[-124,2],[-28,1],[-46,0],[-42,-3],[-9,-2],[-7,-2],[-10,-4],[-7,-3],[-13,-4],[-12,-3],[-18,-5],[-11,-6],[-18,-5],[-15,-6],[-30,-12],[-12,-7],[-16,-7],[-26,-9],[-7,-2],[-23,-7],[-16,-4],[-8,-1],[-8,-1],[-5,-1],[-12,-2],[-7,-1],[-7,-1],[-20,-6],[-37,-10],[-18,0],[-1,0],[-1,-1],[-13,-6],[-26,-12],[-10,-7],[-3,-2],[2,-20],[3,-6],[1,-2],[4,-7],[13,-4],[15,-7],[11,-12],[8,-19],[-2,-20],[4,-13],[2,-6],[7,-13],[4,-17],[0,-19],[4,-21],[5,-15],[5,-18],[4,-16],[2,-16],[-2,-15],[-4,-12],[-4,-9],[-3,-19],[-2,-23],[1,-9],[1,-5],[0,-7],[10,-16],[8,-7],[1,-1],[10,-9],[15,-10],[4,-5],[5,-6],[1,-3],[1,-13],[-3,-18],[-7,-14],[-10,-13],[-18,-5],[-22,2],[-21,0],[-18,-10],[-15,-12],[-17,-14],[-13,-8],[-17,-12],[-11,-12],[-16,-16],[-10,-21]],[[61305,47148],[-44,45],[-31,32],[-3,5],[-11,16],[-6,15],[-8,24],[-4,16],[-4,15],[-8,23],[-1,1],[-8,17],[-8,12],[-14,9],[-5,1],[-3,1],[-8,1],[-11,1],[-12,0],[-21,-4],[-14,-4],[-17,-4],[-5,-1],[-6,-2],[-11,-3],[-12,-5],[-11,-4],[-22,-7],[-17,-3],[-21,-1],[-25,-2],[-29,3],[-17,2],[-22,4],[-16,6],[-16,9],[-13,9],[-12,14],[-13,16],[-6,25],[-6,23],[-3,10],[-5,19],[-6,32],[-6,32],[-18,105],[-5,26],[-7,45],[-10,61],[-11,79],[-8,1],[-153,0],[-7,0],[-15,0],[-85,1],[-87,0],[-36,0],[-89,1],[-81,0],[-2,0],[-29,1],[-51,0],[-17,0],[-65,0]],[[60636,53131],[47,-1],[58,-1],[66,-1],[60,-1],[49,-1],[13,-1],[50,-1],[47,0],[14,0],[13,0],[35,-1],[13,1],[21,0],[10,0],[13,0],[15,0],[67,-3],[30,0],[17,0],[51,-1],[31,-1],[55,-1],[60,-2],[70,-1],[61,-1],[30,-1],[29,-1],[26,-1],[28,0],[13,0],[26,-1],[14,-1],[13,1],[94,-2],[30,-1],[68,0],[16,0],[59,-1],[9,0],[50,-1],[17,0],[21,0],[38,0],[14,0],[15,0],[15,-1],[16,0],[17,-1],[21,0],[38,0],[35,0],[33,-1],[59,-1],[83,-2],[14,-1],[43,0],[20,-1],[13,1],[13,-12],[0,-19],[1,-16],[0,-16],[0,-21],[0,-16],[0,-30],[0,-19],[0,-24],[-1,-24],[-1,-23],[1,-15],[0,-43],[0,-141],[-2,-40],[-1,-154],[0,-16],[0,-10],[0,-9],[-1,-32],[-2,-213],[-1,-27],[-3,-190],[-1,-202],[0,-16],[72,1],[109,-1],[14,-1],[15,1],[17,0],[3,0],[26,0],[1,0],[37,0],[5,0],[15,1],[13,0],[22,0],[64,1],[29,0],[54,0],[29,1],[25,0],[220,1],[244,1],[122,-1],[145,0],[1,0],[108,0],[101,0],[13,0],[13,0],[26,0],[50,0],[15,-1],[15,1],[18,0],[60,0],[26,0],[16,-1],[35,0],[94,0],[86,1],[1,0],[12,0],[126,-2],[31,0],[73,0],[13,-1],[56,0],[26,0],[55,0],[23,0],[38,1],[33,0],[15,0],[13,0],[20,0],[13,1],[14,-1],[37,1],[12,-1],[13,1],[28,1],[20,1],[13,0],[15,1],[46,1],[62,0],[56,0],[13,1],[104,1],[14,0],[144,-5],[93,-2],[120,-3],[16,0],[141,-3],[5,-1],[85,-2],[126,-2],[22,-1],[216,-4],[8,-1],[8,0],[112,-1],[2,0],[55,-1],[1,0],[61,-1],[196,1],[50,0]],[[72949,52994],[2,-228],[0,-110],[0,-39],[-1,-43],[0,-21],[0,-17],[-1,-45],[0,-42],[1,-103],[0,-32],[0,-18],[1,-38],[0,-52],[-2,-65],[-1,-35],[-1,-69],[-1,-41],[0,-32],[-1,-54],[-3,-97],[-2,-85],[-1,-37],[-1,-120],[0,-25],[-1,-65],[0,-42],[0,-34],[0,-36],[0,-45],[0,-35],[0,-26],[0,-59],[-1,-86],[0,-73],[-4,-111],[0,-20],[-1,-23],[-3,-67],[0,-20],[0,-19],[-1,-20],[0,-44],[0,-20],[-1,-16],[0,-24],[0,-35],[0,-20],[-3,-18],[0,-20],[-1,-28],[-3,-144],[-1,-72],[-1,-15],[-1,-16],[-1,-43],[-1,-54],[-1,-19],[-1,-55],[0,-36],[-1,-40],[-1,-59],[-1,-26],[-1,-62],[0,-27],[-1,-16],[-3,-80],[0,-18],[-1,-28],[-1,-45],[-1,-18],[0,-31],[-2,-30],[0,-31],[-1,-39],[0,-4],[-1,-41],[0,-20],[0,-28],[-1,-37],[-1,-23],[-1,-22],[-1,-46],[0,-50],[-1,-20],[2,-21],[-2,-131],[0,-16],[-2,-51],[0,-19],[0,-19],[0,-22],[-1,-35],[0,-57],[0,-31],[-1,-21],[0,-22],[0,-15],[0,-29],[-1,-42],[0,-15],[0,-35],[0,-55],[0,-16],[-1,-18],[0,-30],[0,-19],[0,-19],[1,-16],[1,-46],[0,-35],[1,-53],[-1,-18],[0,-28],[0,-50],[0,-22],[1,-15],[0,-67],[0,-27],[0,-33],[0,-5],[0,-24],[0,-55],[0,-49],[0,-58],[0,-26],[0,-24],[1,-24],[0,-18],[0,-20]],[[72890,47794],[-51,0],[-16,0],[-15,0],[-28,0],[-20,0],[-19,0],[-17,0],[-14,-1],[-25,0],[-37,0],[-17,0],[-22,0],[-161,3],[-44,0],[-18,1],[-81,5],[-2,0],[-123,7],[-14,1],[-246,3],[-158,7],[-18,0],[-39,2],[-19,0],[-19,1],[-38,0],[-17,1],[-13,0],[-16,-2],[-14,0],[-14,1],[-19,0],[-16,0],[-12,0],[-59,-1],[-19,1],[-12,0],[-37,0],[-53,0],[-37,0],[-13,-1],[-13,0],[-115,4],[-126,3],[-88,0],[-38,0],[-116,-1],[-259,0],[-131,0],[-36,0],[-43,0],[-17,0],[-70,-1],[-151,-1],[-13,0],[-23,1],[-19,0],[-16,1],[-27,0],[-40,1],[-30,1],[-75,2],[-104,2],[-122,0],[-20,0],[-2,0],[-21,1],[-23,0],[-20,1],[-87,1],[-93,1],[-123,2],[-97,1],[-26,0],[-45,0],[-58,-1],[-52,-1],[-7,0],[-7,0],[-13,0],[-44,-1],[-7,0],[-32,0],[-15,1],[-39,0],[-18,1],[-19,0],[-115,2],[-64,0],[-180,3],[-44,-1],[-14,0],[-37,0],[-7,0],[-124,0],[-90,-1],[-35,0],[-78,-2],[-62,0],[-96,-1],[-136,0],[-21,-1],[-23,0],[-49,0],[-47,0],[-54,-1],[-23,0],[-28,0],[-15,0],[-6,0],[-3,0],[-99,0],[-32,1],[-77,0],[-21,0]],[[67035,51753],[26,0],[37,1],[89,1],[26,0],[23,1],[48,0],[62,-1],[24,-1],[38,0],[62,-2],[62,-2],[246,-6],[172,-2],[64,-1],[254,-5],[246,-10],[-1,136],[0,18],[0,46],[2,19],[-2,47],[-2,55],[0,16],[-1,17],[0,83],[0,4],[0,25],[1,22],[0,23],[0,1],[1,32],[0,7],[0,13],[0,16],[0,33],[1,19],[1,27],[0,20],[0,20],[-1,17],[1,31],[-1,59],[0,36],[-1,32],[0,36],[0,18],[0,21],[4,153],[2,114],[0,35],[0,20],[0,22],[2,23]],[[78803,53044],[3,-84],[2,-41],[1,-24],[0,-14],[2,-49],[-6,-100],[0,-9],[-2,-23],[-5,-80],[-2,-46],[-6,-67],[-3,-49],[-3,-31],[-1,-27],[2,-68],[1,-38],[0,-17],[1,-2],[2,-96],[7,-220],[3,-76],[4,-140],[2,-105],[1,-56],[0,-42],[1,-37],[2,-61],[1,-17],[0,-112],[2,-136],[1,-39],[0,-40],[0,-1],[1,-71],[0,-25],[0,-23],[0,-6],[0,-19],[0,-70],[0,-1],[0,-102],[0,-112],[1,-111],[0,-107],[-123,-2],[1,-124],[0,-25],[1,-63],[1,-91],[1,-17],[2,-142],[4,-290],[2,-120],[3,-148],[2,-167],[0,-20],[1,-23],[1,-80],[1,-54],[1,-157],[0,-19],[1,-181],[0,-6],[1,-62],[0,-37],[0,-21],[0,-6],[1,-114],[0,-179],[0,-55],[0,-29],[0,-27],[0,-35],[0,-63],[-1,-46],[0,-79],[0,-40],[0,-32],[0,-38],[0,-21],[0,-19]],[[78715,47818],[-129,-1],[-127,1],[-71,0],[-69,0],[-1,0],[-87,0],[-16,0],[-16,-1],[-94,-1],[-40,0],[-19,0],[-58,-1],[-33,0],[-26,-1],[-200,-2],[-15,-1],[-83,-2],[-148,-4],[-112,0],[-16,0],[-23,0],[-20,0],[-21,-1],[-41,0],[-104,0],[-21,0],[-14,0],[-23,0],[-13,0],[-55,-1],[-17,0],[-1,0],[-90,0],[-14,0],[-19,-1],[-36,1],[-25,-1],[-66,0],[-95,-1],[-12,0],[-13,0],[-13,0],[-46,-1],[-24,0],[-3,0],[-33,0],[-41,0],[-87,-1],[-25,0],[-40,-1],[-56,0],[-246,-2],[-237,-4],[-118,-1],[-27,0],[-42,0],[-52,0],[-3,0],[-18,0],[-168,1],[-56,0],[-156,-2],[-14,0],[-78,0],[-110,0],[-41,0],[-95,0],[-50,2],[-173,4],[-154,5],[-96,4],[-121,-1],[-125,-2],[-61,-1],[-49,1],[-41,-1],[-32,-2],[-72,-1],[-58,-1],[-13,-1],[-12,0],[-12,-3],[-34,3],[-107,-3],[-21,1],[-14,0],[-210,3],[-108,-1],[-102,-1],[-2,0],[-106,-2],[-71,0],[-25,0],[-44,1]],[[85584,42600],[-27,0],[-6,0],[-94,-1],[-54,1],[-52,0],[-2,0],[-16,0],[-17,0],[-70,0],[-35,0],[-1,0],[-23,0],[-18,-1],[-44,1],[-160,-1],[-43,0],[-17,0],[-50,0],[-46,0],[-100,-1],[-35,0],[-59,0],[-30,0],[-61,0],[-1,0],[-37,0],[-60,0],[-38,0],[-47,0],[-137,-1],[-48,0],[-59,1],[-117,-1],[-46,0],[-24,1],[-20,-1],[-29,0],[-250,-1],[-77,-1],[-32,0],[-91,2],[-22,0],[-157,-1],[-13,1],[-59,1],[-12,-2],[-19,0],[-173,1],[-77,-1],[-104,0],[-24,1],[-14,-3],[-105,0],[-177,-3],[-21,1],[-2,0],[-44,0],[-90,0],[-50,0],[-100,0],[-243,-1],[-13,-1],[-101,0],[-123,-1],[-21,0],[-35,0],[-16,0],[-18,1],[-36,0],[-134,-1],[-80,-2],[-28,-1],[-18,0],[-22,0],[-34,0],[-126,-2],[-59,-1],[-4,0],[-16,1],[-105,-2],[-64,1],[-26,0],[-154,-1],[-154,-4],[-76,-1],[-16,-1],[-41,-2],[-188,2],[-18,0],[-124,-3],[-12,0],[-167,-2],[-87,-2],[-7,0],[-11,0],[-16,0],[-88,-2],[-49,0],[-134,-1],[-22,-1],[-239,-4],[-40,-1],[-117,-2],[-89,-1],[-99,-1],[-140,2]],[[78738,42558],[-1,59],[0,81],[-1,49],[-1,26],[-1,25],[1,42],[-1,42],[0,68],[0,24],[0,64],[0,28],[0,84],[0,107],[0,17],[0,45],[0,30],[0,72],[-1,320],[0,64],[0,41],[0,19],[0,110],[0,78],[-3,32],[0,21],[0,54],[0,23],[-1,21],[-1,78],[0,32],[0,40],[0,30],[0,32],[0,7],[-1,48],[-1,126],[-2,137],[-1,107],[-1,36],[0,38],[-3,224],[0,38],[-1,59],[-1,94],[-1,96],[2,29],[-1,247],[0,31],[0,39],[-1,18],[1,159],[0,44],[-1,110],[-1,102],[0,67],[-1,70],[-1,46],[1,48],[0,28],[0,43],[1,18],[0,47],[0,38],[0,38],[1,40],[0,1],[0,29],[0,108],[1,56],[1,35],[2,51],[1,46],[0,28],[0,47],[1,33],[0,41],[-2,49],[-1,25],[1,33],[-2,120],[-1,101],[0,22],[-1,68],[-1,72],[0,30],[-1,54],[1,30],[-1,18],[1,33]],[[78715,47818],[19,0],[32,0],[34,0],[108,-1],[46,0],[40,0],[114,2],[20,0],[99,-1],[95,-1],[68,0],[35,0],[37,0],[16,0],[78,0],[38,0],[34,0],[62,1],[63,-1],[10,-2],[2,-1],[13,3],[6,0],[9,1],[17,0],[35,0],[30,0],[47,1],[16,1],[3,0],[68,-2],[13,0],[39,1],[41,0],[27,0],[31,0],[22,1],[22,0],[33,0],[10,0],[5,1],[149,1],[30,1],[3,0],[91,2],[125,2],[173,6],[72,2],[110,3],[20,1],[118,3],[28,0],[11,1],[112,1],[95,2],[58,2],[33,1],[32,0],[38,1],[23,0],[48,1],[16,0],[216,0],[63,0],[33,0],[89,1],[66,-4],[11,6],[32,1],[16,0],[31,0],[39,0],[13,0],[3,0],[12,0],[15,0],[17,-1],[53,1],[36,0],[25,0],[17,0],[45,1],[66,0],[57,1],[61,0],[46,1],[16,0],[16,0],[46,1],[61,0],[62,1],[69,1],[48,0],[66,1],[51,-1],[42,0],[34,-1],[14,0],[28,0],[67,-1],[61,0],[62,-1],[63,0],[62,-1],[32,0],[90,-1],[123,-3],[75,0],[48,-1],[62,0],[61,-1],[107,-1],[40,0],[38,0],[55,0],[13,0],[3,-1],[47,1],[77,0],[116,1],[102,0],[136,-3],[209,0],[31,0],[31,0],[2,0],[44,0],[24,0],[35,0],[111,-1],[47,0],[1,0],[165,0],[16,-1],[13,0],[31,0]],[[67158,47839],[2,-220],[-1,-100],[-1,-50],[0,-19],[0,-45],[-1,-158],[0,-37],[0,-28],[0,-65],[0,-70],[0,-88],[0,-109],[0,-106],[0,-108],[0,-109],[-1,-53],[-1,-17],[-1,-26],[-3,-117],[-2,-33],[-3,-65],[0,-1],[0,-9],[-1,-8],[-3,-56],[-2,-43],[-3,-143],[-2,-74],[-3,-81],[-1,-32],[-2,-58],[-2,-51],[0,-23],[-2,-113],[0,-66],[0,-55],[1,-55],[0,-1],[1,-51],[0,-15],[0,-4],[1,-51],[1,-15],[0,-36],[0,-18],[1,-26],[0,-20],[-1,-54],[1,-19],[0,-35],[0,-61],[1,-61],[0,-3],[0,-2],[1,-98],[-1,-53],[2,-44],[-4,-67],[0,-55],[-1,-39],[-1,-113],[-1,-38],[-1,-24],[1,-17],[0,-72],[-1,-136],[1,-128],[0,-89],[2,-15],[0,-23],[-3,-109],[0,-30],[0,-20],[0,-24],[0,-30],[-2,-45],[-1,-62],[-1,-33],[-1,-49],[0,-30],[0,-15],[-1,-44],[-1,-18],[0,-33],[-1,-78],[1,-54],[-1,-55],[-1,-54],[0,-36],[-1,-19],[-1,-40],[-1,-70],[0,-52],[0,-58],[1,-23],[0,-25],[0,-26],[0,-35],[1,-54],[-1,-54]],[[67114,42590],[-104,-1],[-35,0],[-144,-1],[-31,0],[-17,0],[-61,1],[-39,0],[-62,0],[-104,-1],[-13,0],[-39,0],[-54,0],[-25,0],[-179,-2],[-20,0],[-36,0],[-37,-1],[-32,0],[-14,0],[-66,0],[-46,-1],[-22,0],[-18,0],[-16,0],[-221,-3],[-24,0],[-127,-1],[-33,0],[-46,0],[-28,-1],[-53,1],[-23,0],[-20,0],[-12,1],[-63,0],[-13,-1],[-2,-1],[-63,0],[-134,0],[-103,-1],[-246,3],[-74,0],[-31,2],[-12,-2],[-110,1],[-13,1],[-18,0],[-73,-2],[-43,0],[-50,0],[-20,0],[-39,0],[-17,0],[-103,3],[-13,1],[-83,3],[-6,1],[-21,0],[-24,1],[-78,-1],[-72,-2],[-39,0],[-46,2],[-125,1],[-33,0],[-20,0],[-13,0],[-60,1],[-28,0],[-29,0],[-26,0],[-21,1],[-21,0],[-2,0],[-29,0],[-15,0],[-52,1],[-33,0],[-26,0],[-99,1],[-90,1],[-7,0],[-61,1],[-28,1],[-23,0],[-16,1],[-21,0],[-21,0],[-14,1],[-44,1],[-32,0],[-177,4],[-13,0],[-22,0],[-203,-2],[-13,0],[-29,-1],[-16,0],[-103,0],[-53,0],[-51,0],[-18,0],[-170,3],[-13,0],[-5,0],[-10,1],[-48,1],[-64,0],[-10,0],[-13,0],[-13,1],[-10,0],[-13,0],[-6,0],[-64,0],[-59,1],[-24,0],[-18,0],[-30,1],[-36,0],[-82,0],[-38,-1]],[[61291,42608],[0,31],[0,47],[1,20],[0,26],[0,94],[1,77],[0,26],[0,22],[2,92],[1,109],[0,24],[0,29],[0,9],[0,12],[1,96],[2,15],[0,24],[0,13],[1,17],[0,42],[1,18],[0,1],[0,16],[0,21],[0,16],[0,72],[0,67],[0,31],[0,16],[0,28],[1,28],[0,28],[1,28],[0,18],[0,1],[1,40],[0,20],[0,29],[1,81],[0,24],[0,37],[-1,75],[0,40],[0,18],[0,72],[-1,20],[0,70],[0,64],[1,43],[-1,113],[-1,219],[0,23],[2,17],[1,20],[-3,15],[0,31],[0,16],[-1,27],[-1,20],[0,20],[0,32],[0,33],[-1,25],[0,9],[-1,100],[0,48],[0,19],[2,57],[1,25],[-1,60],[0,21],[0,40],[0,50],[0,22],[0,22],[1,16],[0,108],[0,79],[0,28],[1,81],[1,34],[-1,82],[0,25],[0,37],[0,62],[0,111],[-1,119],[1,128],[1,46],[0,42],[1,94],[0,25],[1,40],[0,27],[-1,44],[1,79],[0,24],[-1,33],[0,28],[0,18],[0,14],[1,168],[0,17]],[[72890,47794],[0,-60],[0,-41],[0,-22],[0,-16],[-1,-44],[0,-27],[1,-23],[0,-3],[-1,-18],[-2,-81],[1,-103],[0,-36],[1,-182],[0,-28],[0,-93],[0,-28],[0,-71],[0,-20],[0,-59],[0,-20],[0,-4],[0,-56],[0,-50],[0,-40],[1,-90],[0,-19],[0,-1],[0,-19],[0,-26],[0,-23],[-1,-113],[0,-54],[-1,-67],[-2,-175],[0,-10],[0,-32],[0,-194],[1,-21],[0,-89],[1,-37],[1,-78],[0,-100],[1,-63],[0,-131],[1,-58],[0,-86],[0,-22],[0,-57],[0,-100],[0,-14],[0,-25],[2,-163],[1,-56],[2,-171],[1,-41],[0,-17],[2,-43],[0,-51],[0,-17],[-1,-17],[0,-76],[0,-106],[1,-106],[0,-1],[0,-44],[1,-58],[1,-57],[-2,-17],[-1,-23],[2,-19],[0,-41],[0,-24],[1,-18],[1,-61],[0,-18],[0,-26],[0,-30],[0,-19],[0,-30],[1,-68],[-1,-33],[1,-54],[0,-53],[0,-83],[0,-38],[1,-20],[-1,-20],[1,-59],[0,-164],[-1,-55],[0,-28],[0,-27],[1,-63],[0,-55],[0,-45],[-1,-218]],[[72903,42532],[-49,1],[-13,1],[-20,0],[-26,2],[-14,0],[-15,1],[-98,4],[-14,0],[-29,2],[-21,0],[-19,1],[-14,0],[-17,1],[-13,1],[-20,1],[-33,1],[-70,3],[-1,0],[-49,2],[-104,4],[-40,1],[-53,2],[-17,1],[-27,2],[-77,3],[-54,2],[-14,2],[-25,1],[-23,0],[-59,4],[-57,3],[-14,0],[-62,6],[-15,2],[-13,-1],[-21,0],[-156,0],[-66,0],[-42,0],[-52,0],[-3,0],[-41,0],[-45,0],[-16,0],[-44,0],[-54,0],[-56,0],[-14,0],[-71,0],[-16,0],[-35,0],[-121,1],[-75,0],[-50,1],[-50,1],[-19,0],[-49,0],[-19,1],[-14,0],[-13,0],[-29,0],[-50,1],[-45,0],[-27,1],[-35,0],[-15,0],[-34,1],[-20,0],[-16,0],[-33,1],[-19,-1],[-27,1],[-2,0],[-70,0],[-15,0],[-8,0],[-22,0],[-1,0],[-13,1],[-35,0],[-21,0],[-24,0],[-15,-2],[-13,1],[-4,0],[-11,0],[-46,-1],[-13,0],[-20,0],[-47,1],[-75,0],[-29,0],[-71,0],[-82,-1],[-63,0],[-21,0],[-18,0],[-27,-1],[-13,1],[-33,0],[-1,0],[-14,0],[-14,0],[-20,0],[-22,1],[-60,0],[-26,0],[-96,1],[-20,0],[-55,0],[-46,1],[-45,-1],[-19,0],[-31,0],[-27,-1],[-56,1],[-43,0],[-22,0],[-79,1],[-123,0],[-42,1],[-31,0],[-21,-1],[-13,0],[-15,-1],[-14,0],[-14,0],[-14,1],[-14,-1],[-5,0],[-104,-1],[-57,-1],[-29,0],[-11,0],[-29,-1],[-22,0],[-17,1],[-14,-1],[-35,0],[-16,0],[-13,0],[-67,-1],[-10,0],[-13,0],[-41,-1],[-25,0],[-32,0],[-20,0],[-21,0],[-34,0],[-26,0],[-50,0],[-17,0],[-16,0],[-39,0],[-60,0],[-62,0],[-27,0],[-13,0],[-21,0],[-60,1],[-61,0],[-61,0],[-60,0],[-28,1],[-12,-1],[-21,0],[-50,0]],[[78738,42558],[-61,0],[-61,1],[-122,0],[-56,0],[-12,0],[-120,1],[-50,0],[-69,1],[-129,1],[-51,0],[-145,0],[-96,-1],[-244,0],[-151,-3],[-14,0],[-32,-1],[-41,-1],[-248,-2],[-67,-1],[-171,-3],[-28,-1],[-35,0],[-16,-1],[-165,-3],[-240,-1],[-27,-1],[-174,-1],[-52,0],[-80,1],[-153,2],[-101,-1],[-21,0],[-28,-1],[-20,0],[-72,-1],[-18,0],[-17,0],[-92,-2],[-27,0],[-190,-2],[-36,0],[-98,-1],[-68,0],[-23,0],[-31,-1],[-16,0],[-23,0],[-60,0],[-16,0],[-117,-2],[-13,0],[-60,0],[-55,-1],[-128,0],[-29,0],[-32,0],[-74,-1],[-49,0],[-136,-1],[-50,1],[-16,-1],[-16,0],[-15,0],[-50,0],[-155,-2],[-242,1],[-123,0],[-74,0],[-42,0],[-14,0],[-232,0],[-63,1],[-91,1],[-40,0],[-52,0]],[[55492,46576],[0,-46],[-1,-79],[0,-16],[-3,-17],[-1,-5],[0,-18],[-1,-17],[0,-7],[0,-17],[0,-12],[-2,-113],[-1,-45],[0,-25],[-3,-107],[-3,-112],[-1,-54],[-2,-56],[-1,-26],[0,-16],[-1,-31],[0,-29],[-1,-22],[0,-17],[0,-21],[-2,-121],[-1,-45],[-2,-144],[-1,-24],[-1,-52],[-1,-72],[0,-8],[-1,-36],[-2,-19],[2,-25],[2,-15],[-3,-17],[0,-16],[-1,-26],[0,-15],[0,-16],[0,-35],[1,-21],[0,-40],[0,-94],[0,-8],[0,-52],[0,-25],[0,-34],[0,-17],[0,-18],[0,-36],[1,-35],[0,-27],[-1,-61],[0,-22],[-1,-111],[0,-136],[0,-24],[0,-32],[0,-30],[3,-63],[1,-29],[1,-48],[3,-43],[1,-37],[-1,-29],[-1,-36],[0,-3],[-1,-70],[3,-71],[-4,-30],[-1,-123],[0,-22],[0,-49],[0,-16],[0,-43],[0,-72],[-1,-59],[-1,-43],[1,-38],[0,-55],[-1,-36],[-1,-93],[1,-30],[0,-17],[0,-57],[-1,-89],[0,-22],[0,-55],[-1,-54],[0,-53],[0,-34],[-1,-22]],[[55459,42618],[-123,0],[-122,0],[-21,0],[-25,1],[-144,0],[-16,0],[-23,0],[-14,0],[-100,0],[-143,0],[-128,0],[-43,1],[-5,0],[-205,1],[-7,0],[-98,1],[-66,0],[-55,0],[-27,-1],[-26,0],[-30,1],[-20,0],[-19,0],[-87,0],[-16,0],[-19,1],[-100,-1],[-15,0],[-23,0],[-4,0],[-17,0],[-95,2],[-82,1],[-1,0],[-27,1],[-54,0],[-52,1],[-15,1],[-14,0],[-15,0],[-19,0],[-17,0],[-60,1],[-12,0],[-13,1],[-109,2],[-12,0],[-47,1],[-51,1],[-19,1],[-99,1],[-123,3],[-22,1],[-23,0],[-13,1],[-12,0],[-73,2],[-90,2],[-15,1],[-42,0],[-59,2],[-14,0],[-37,1],[-90,2],[-134,3],[-17,1],[-143,5],[-1,0],[-34,2],[-155,6],[-243,7],[-62,2],[-47,2],[-72,2],[-64,2],[-82,3],[-36,2],[-61,2],[-59,3],[-25,0],[-230,2],[-185,0],[-45,-1],[-128,4],[-16,1],[-14,0]],[[52365,46634],[206,0],[33,0],[13,1],[50,0],[1,0],[62,1],[62,-1],[124,3],[250,1],[17,0],[66,0],[14,0],[22,0],[294,-1],[71,-1],[61,0],[63,-1],[60,-1],[62,0],[62,-1],[39,-1],[25,1],[57,-2],[14,0],[24,0],[21,-2],[19,-1],[47,-2],[61,-2],[62,-2],[35,-1],[150,-6],[62,-2],[61,-2],[38,-2],[96,-4],[127,-3],[53,-3],[41,-3],[14,0],[100,-4],[83,-3],[13,0],[12,-1],[42,-2],[12,-1],[19,-1],[52,-2],[20,-2],[47,-1],[27,-3],[23,-1],[38,0]],[[55459,42618],[2,-36],[0,-89],[-1,-17],[0,-43],[0,-21],[0,-16],[0,-8],[0,-7],[-1,-37],[-1,-85],[0,-46],[-1,-51],[0,-24],[1,-30],[-1,-23],[-1,-31],[0,-32],[-2,-82],[-1,-50],[0,-18],[-1,-16],[-1,-45],[-1,-23],[0,-24],[0,-1],[-1,-45],[-1,-69],[-1,-41],[-1,-54],[-1,-30],[0,-27],[0,-53],[0,-31],[-1,-25],[0,-1],[0,-15],[0,-73],[0,-19],[-3,-103],[0,-24],[-2,-72],[-1,-27],[-4,-137],[-4,-141],[-3,-120],[-1,-35],[0,-57],[-1,-26],[0,-14],[0,-13],[-1,-75],[0,-27],[0,-18],[0,-12],[0,-16],[0,-9],[0,-20],[-1,-29],[0,-115],[0,-16],[0,-97],[0,-66],[1,-22],[-1,-17],[1,-89],[0,-20],[-1,-25],[0,-31],[0,-9],[0,-30],[0,-17],[2,-17],[0,-31],[0,-28],[0,-18],[0,-17],[0,-29],[0,-64],[0,-65],[-1,-33],[-2,-91],[-1,-44],[0,-45],[0,-76],[-2,-82],[-1,-39],[0,-17],[0,-15],[2,-19],[0,-17],[0,-17],[0,-45],[0,-34],[0,-16],[-1,-16],[1,-65],[0,-61],[0,-91],[-1,-106],[0,-43],[0,-68],[-2,-103],[-1,-32],[-1,-72],[0,-1],[1,-25],[1,-86],[1,-65],[0,-20],[1,-27],[3,-15],[-3,-17],[0,-55],[0,-9],[0,-43],[0,-88],[-1,-80],[0,-16],[0,-23],[-1,-71],[1,-36],[1,-216]],[[55419,37342],[-44,0],[-15,0],[-71,-1],[-34,1],[-35,0],[-25,1],[-15,0],[-43,1],[-32,0],[-21,0],[-68,0],[-43,1],[-40,1],[-35,-1],[-104,2],[-25,0],[-71,2],[-50,1],[-187,-4],[-13,0],[-45,0],[-58,1],[-16,0],[-47,2],[-70,1],[-27,1],[-38,1],[-51,2],[-13,-1],[-13,0],[-13,-2],[-31,1],[-44,1],[-20,0],[-25,1],[-29,2],[-173,5],[-73,2],[-55,2],[-35,2],[-86,3],[-28,1],[-37,1],[-14,1],[-118,4],[-43,1],[-87,3],[-80,3],[-14,0],[-22,0],[-286,1]],[[52757,37385],[-28,1],[-73,3],[-156,8],[-73,4],[-105,5],[-67,4],[-30,1],[-62,1],[-13,0],[-2,0],[-14,1],[-20,0],[-81,2],[-20,0],[-15,1],[-67,2],[-36,2],[-13,0],[-14,1],[-14,0],[-12,0],[-16,1],[-17,1],[-25,1],[-194,6],[-14,1],[-42,1],[-108,5],[-24,1],[-42,2],[-32,1],[-72,3],[-56,2],[-27,1],[-41,2],[-47,1],[-18,1],[-14,2],[-13,1],[-51,4],[-37,3],[-28,3],[-39,3],[-20,2],[-21,2],[-60,5],[-80,7],[-110,9],[-51,2],[-26,2],[-21,0],[-22,1],[-30,1],[-81,2],[-42,1],[-18,0],[-22,1],[-20,0],[-70,2],[-18,1],[-60,1],[-46,2],[-114,4],[-34,2],[-29,1],[-28,1],[-22,1],[-18,0],[-114,3],[-14,0],[-34,-2],[-13,2],[-19,2],[-17,0],[-30,1],[-2,0],[-17,0],[-32,1],[-21,1],[-15,1],[-72,3],[-22,1],[-66,4],[-54,3],[-129,6],[-59,3],[-24,1],[-29,1],[-122,4],[-68,2],[-79,4],[-19,1],[-39,1],[-16,0],[-32,0],[-55,1],[-22,0]],[[61291,42608],[-2,-138],[-1,-32],[0,-37],[0,-3],[0,-14],[-4,-75],[0,-18],[-6,-133],[-3,-67],[3,-22],[-9,-183],[-5,-134],[0,-23],[-7,-114],[-7,-104],[-9,-159],[-2,-36],[-1,-23],[0,-21],[1,-39],[1,-49],[0,-41],[1,-44],[0,-23],[0,-31],[1,-36],[0,-19],[1,-21],[0,-2],[0,-36],[1,-61],[0,-20],[0,-21],[0,-25],[1,-46],[0,-34],[2,-30],[0,-18],[-1,-19],[0,-15],[2,-50],[0,-58],[0,-19],[0,-39],[1,-49],[2,-222],[0,-45],[1,-41],[1,-20],[1,-109],[0,-25],[2,-197],[2,-77],[0,-17],[0,-39],[1,-41],[1,-30],[0,-16],[1,-20],[0,-41],[1,-18],[0,-24],[1,-23],[1,-33],[-1,-69],[5,-148],[-3,-16],[0,-2],[-1,-16],[1,-25],[0,-61],[0,-115],[0,-19],[0,-22],[1,-60],[-1,-18],[1,-36],[-1,-25],[0,-31],[1,-47],[0,-2],[0,-33],[0,-15],[1,-77],[-1,-21],[0,-47],[1,-34],[1,-16],[-1,-20],[2,-16],[-1,-16],[0,-16],[2,-63],[-1,-16],[1,-57],[1,-50],[0,-5],[1,-55],[3,-109],[3,-174],[1,-46],[1,-74],[0,-37],[0,-45],[1,-65],[0,-55],[1,-56],[0,-20],[0,-21],[1,-39],[-1,-23]],[[61282,37356],[-145,-6],[-26,2],[-18,0],[-25,1],[-1,0],[-33,-2],[-57,1],[-28,0],[-13,0],[-25,-1],[-61,0],[-54,0],[-133,1],[-111,0],[-121,1],[-124,0],[-34,0],[-20,0],[-14,0],[-51,0],[-71,1],[-31,0],[-13,0],[-5,0],[-60,0],[-18,0],[-30,0],[-151,1],[-50,0],[-66,0],[-207,1],[-16,0],[-13,-1],[-77,-1],[-24,0],[-20,0],[-16,0],[-18,0],[-13,0],[-18,0],[-60,1],[-56,0],[-173,-1],[-69,0],[-167,-1],[-175,0],[-60,-1]],[[58511,37352],[-123,0],[-27,0],[-20,0],[-12,0],[-188,-1],[-174,0],[-56,-1],[-133,0],[-299,-1],[-327,-1],[-23,0],[-59,0],[-177,-1],[-68,0],[-55,0],[-123,2],[-44,-2],[-25,-1],[-238,-1],[-34,0],[-12,0],[-18,7],[-164,-4],[-198,1],[-59,-1],[-181,-1],[-47,-1],[-208,-4]],[[55459,42618],[85,0],[133,0],[35,0],[34,-1],[49,0],[26,0],[41,0],[19,0],[65,1],[28,0],[93,1],[123,0],[29,-1],[66,0],[87,-1],[62,-1],[163,0],[36,0],[46,0],[92,-1],[125,0],[27,0],[116,-1],[13,0],[14,0],[58,-1],[39,0],[1,0],[244,-3],[56,1],[26,0],[13,-1],[27,0],[55,0],[19,0],[46,-1],[15,0],[77,-1],[33,0],[14,1],[14,0],[14,0],[19,0],[14,0],[32,-1],[13,1],[12,0],[162,-1],[13,0],[180,-1],[105,0],[16,0],[105,-1],[40,0],[53,0],[24,0],[32,0],[132,0],[22,0],[55,0],[43,0],[32,0],[33,1],[13,-1],[17,0],[23,0],[20,0],[15,0],[16,0],[16,0],[15,0],[48,0],[34,0],[22,1],[74,-1],[25,0],[38,1],[52,-1],[15,0],[18,0],[94,1],[52,0],[13,0],[142,1],[68,0],[30,1],[13,-1],[62,0],[20,0],[16,0],[14,0],[69,0],[34,-2],[27,2],[20,0],[16,0],[26,0],[40,0],[82,0],[48,1],[13,0],[53,-1],[41,0],[22,0],[1,0],[13,0],[28,0],[3,0],[84,2],[43,0],[17,0],[69,0],[116,-1],[13,0],[23,0],[12,0],[3,0],[18,1],[104,-1],[71,0],[77,0],[43,0],[123,-1]],[[72903,42532],[1,-25],[1,-54],[1,-139],[1,-112],[0,-17],[1,-80],[0,-136],[1,-38],[0,-54],[1,-136],[0,-24],[1,-34],[0,-22],[0,-31],[0,-111],[1,-78],[0,-72],[0,-99],[0,-47],[0,-17],[-1,-42],[0,-48],[1,-54],[1,-56],[1,-140],[0,-22],[1,-70],[-1,-161],[0,-16],[1,-31],[0,-34],[1,-115],[0,-66],[0,-46],[0,-5],[0,-19],[0,-150],[1,-153],[0,-24],[1,-32],[0,-229],[2,-219],[0,-30],[1,-17],[0,-10],[3,-250],[1,-131],[0,-32],[2,-125],[0,-63],[0,-20],[0,-15],[0,-45],[0,-37],[0,-59],[1,-44],[3,-220],[1,-84],[3,-136],[0,-67],[0,-72],[0,-75],[2,-42],[4,-63],[5,-110],[4,-83],[0,-15],[5,-116],[-20,-227]],[[72935,37286],[-236,1],[-2,0],[-15,0],[-19,0],[-2,0],[-15,0],[-100,0],[-91,0],[-206,-1],[-35,0],[-113,0],[-112,-1],[-17,0],[-225,1],[-16,0],[-103,0],[-19,0],[-92,0],[-15,0],[-9,0],[-5,0],[-14,0],[-18,0],[-11,0],[-26,0],[-13,0],[-33,0],[-44,-1],[-13,1],[-35,0],[-54,1],[-26,0],[-36,0],[-151,1],[-18,0],[-173,0],[-210,-1],[-44,0],[-37,0],[-20,-1],[-42,0],[-30,0],[-27,0],[-119,0],[-13,0],[-45,0],[-36,0],[-159,-1]],[[70041,37285],[-6,1],[-13,0],[-63,0],[-65,1],[-51,0],[-31,0],[-23,0],[-19,0],[-61,0],[-58,1],[-57,0],[-63,0],[-59,0],[-60,-1],[-60,1],[-20,0],[-38,0],[-64,0],[-60,0],[-25,0],[-26,0],[-13,1],[-19,1],[-12,-1],[-24,2],[-79,0],[-4,0],[-55,0],[-129,0],[-38,0],[-25,0],[-134,0],[-26,0],[-16,0],[-59,0],[-7,0],[-58,0],[-16,0],[-15,0],[-1,0],[-24,-1],[-3,0],[-28,0],[-17,0],[-2,0],[-42,0],[-1,0],[-116,-1],[-2,0],[-27,0],[-1,0],[-32,0],[-15,0],[-16,0],[-116,2],[-6,0],[-35,0],[-23,1],[-2,0],[-21,0],[-75,1],[-17,0],[-2,0],[-15,0],[-19,1],[-5,0],[-138,1],[-129,2],[-2,0],[-13,0],[-72,1],[-23,0],[-15,0],[-16,0],[-28,0],[-1,0],[-15,0],[-88,2],[-30,-1],[-52,0]],[[67105,37299],[0,41],[0,49],[0,7],[1,111],[-3,154],[-1,73],[-2,205],[-1,123],[-1,15],[0,63],[0,1],[-1,31],[-1,104],[1,39],[-1,17],[-2,34],[-2,87],[-3,89],[0,6],[-2,65],[0,16],[0,6],[2,85],[2,73],[0,36],[0,103],[0,76],[-1,39],[-2,62],[-1,49],[0,9],[4,100],[-1,38],[-1,47],[0,14],[-2,123],[-1,26],[-4,88],[-1,15],[-1,22],[-3,69],[-2,95],[-2,132],[0,1],[-3,187],[1,27],[0,5],[-2,14],[0,4],[-1,18],[0,20],[-2,52],[1,26],[-3,31],[0,7],[-1,45],[-4,151],[-2,67],[0,61],[-1,66],[0,4],[0,16],[0,37],[0,31],[-1,219],[0,134],[0,56],[0,27],[1,16],[0,8],[0,8],[0,22],[1,20],[0,22],[1,20],[1,75],[1,31],[6,136],[4,82],[1,22],[1,15],[9,183],[2,41],[6,105],[1,22],[1,23],[2,31],[1,26],[0,17],[9,163],[1,38],[3,44],[2,42],[0,18],[1,35],[3,67],[1,16]],[[67105,37299],[-58,0],[-30,0],[-19,0],[-2,0],[-82,0],[-50,2],[-12,0],[-28,1],[-18,0],[-15,0],[-14,-3],[-28,0],[-48,-1],[-59,-1],[-15,1],[-21,2],[-24,1],[-13,1],[-17,0],[-18,0],[-13,1],[-50,2],[-32,0],[-22,0],[-13,0],[-144,0],[-26,0],[-22,1],[-19,0],[-20,0],[-70,1],[-42,0],[-167,3],[-23,0],[-70,1],[-17,2],[-80,2],[-53,1],[-23,0],[-56,2],[-38,1],[-39,1],[-85,2],[-22,1],[-23,0],[-48,1],[-58,1],[-15,0],[-17,0],[-10,0],[-3,0],[-13,1],[-15,0],[-15,0],[-65,1],[-24,-1],[-15,0],[-17,1],[-70,2],[-45,1],[-2,0],[-81,1],[-60,0],[-9,0],[-45,1],[-40,1],[-8,0],[-12,0],[-20,1],[-13,0],[-26,0],[-50,1],[-38,1],[-29,2],[-55,0],[-17,1],[-57,1],[-47,1],[-18,1],[-40,0]],[[64268,37342],[-69,1],[-56,1],[-36,1],[-71,0],[-2,1],[-26,0],[-12,0],[-14,0],[-26,0],[-50,0],[-20,0],[-31,1],[-30,-1],[-49,-1],[-63,1],[-130,0],[-45,0],[-31,1],[-4,0],[-32,0],[-82,1],[-68,0],[-79,1],[-4,0],[-129,1],[-52,0],[-70,1],[-12,0],[-44,0],[-32,0],[-4,1],[-9,0],[-21,0],[-40,1],[-89,-1],[-15,0],[-16,0],[-74,0],[-49,1],[-83,0],[-163,0],[-33,0],[-45,0],[-39,-1],[-121,0],[-20,0],[-40,0],[-60,0],[-53,0],[-38,0],[-17,0],[-14,-1],[-82,1],[-19,0],[-22,-1],[-15,1],[-66,-1],[-20,0],[-20,0],[-21,0],[-12,0],[-55,0],[-108,0],[-28,0],[-43,0],[-63,5]],[[82603,37331],[-12,0],[-30,-1],[-10,0],[-7,-1],[-57,-2],[-59,-1],[-53,-1],[-3,0],[-84,-1],[-105,-2],[-62,0],[-17,0],[-31,0],[-30,0],[-44,0],[-8,0],[-22,-1],[-7,0],[-72,-1],[-128,-1],[-1,0],[-16,-1],[-56,0],[-15,0],[-2,0],[-26,0],[-116,-2],[-86,-1],[-51,0],[-189,-3],[-1,0],[-59,0],[-101,-1],[-1,0],[-51,-1],[-24,0],[-29,0],[-90,-1],[-12,0],[-8,0],[-13,0],[-13,0],[-22,0],[-60,-1],[-60,0],[-50,-1],[-133,-1],[-27,0],[-16,0],[-19,0],[-30,0],[-30,1],[-61,0],[-58,0],[-55,0],[-62,1],[-3,0],[-66,0],[-65,0],[-57,0],[-122,1],[-57,0],[-37,0],[-4,0],[-12,1],[-12,-1],[-49,0],[-35,0],[-97,0],[-13,-1],[-52,-1],[-23,0],[-14,0],[-19,-1],[-62,0],[-58,1],[-67,0],[-57,1],[-45,0],[-20,0],[-51,0],[-17,0],[-45,-1],[-51,-1],[-29,0],[-42,-1],[-68,0]],[[78770,37305],[-1,64],[0,124],[0,31],[0,56],[0,31],[0,57],[0,7],[1,69],[0,102],[0,32],[0,84],[2,103],[0,16],[1,97],[1,109],[1,107],[0,36],[1,184],[0,28],[0,23],[0,23],[1,139],[-1,178],[0,41],[0,4],[0,26],[0,31],[0,75],[1,51],[0,15],[0,23],[2,211],[-1,32],[1,74],[0,108],[0,27],[0,43],[-1,59],[-1,50],[-1,20],[0,26],[0,78],[0,21],[-1,119],[1,17],[0,19],[-1,67],[0,21],[0,16],[-1,77],[0,91],[0,84],[0,44],[0,43],[0,67],[1,110],[-1,67],[-1,41],[-1,60],[0,28],[-1,22],[0,26],[-1,83],[-1,58],[0,17],[0,47],[-1,23],[-1,30],[-2,109],[-1,36],[-1,17],[-1,77],[-1,11],[0,4],[-1,38],[0,23],[-2,54],[-1,16],[0,27],[0,29],[-1,20],[0,22],[-2,15],[-1,61],[-1,41],[0,28],[-1,26],[-3,124],[0,18],[-1,23],[-1,34],[1,36],[-1,43],[-1,49],[-2,96],[-1,18],[-1,31],[-1,19],[-1,68],[-1,21],[0,27]],[[78770,37305],[-49,0],[-73,0],[-102,2],[-15,0],[-52,0],[-73,0],[-133,-1],[-14,-1],[-14,1],[-50,0],[-63,0],[-88,0],[-80,0],[-97,1],[-80,0],[-12,0],[-68,1],[-82,-1],[-22,0],[-42,1],[-30,0],[-73,0],[-61,0],[-24,0],[-2,0],[-14,0],[-18,0],[-17,0],[-16,0],[-25,0],[-60,0],[-59,-1],[-96,0],[-82,0],[-50,0],[-22,0],[-25,0],[-14,0],[-19,0],[-19,0],[-37,0],[-145,0],[-3,0],[-11,0],[-23,0],[-19,0],[-14,0],[-57,0],[-17,0],[-17,0],[-13,1],[-19,-1],[-19,0],[-1,0],[-17,0],[-16,0],[-54,0],[-25,0],[-12,0],[-207,0],[-20,0],[-77,-1],[-71,0],[-84,0],[-18,0],[-1,0],[-137,0],[-25,-1],[-64,0],[-13,0],[-2,0],[-131,0],[-21,0],[-8,0],[-8,0],[-29,0],[-10,0],[-21,0]],[[75369,37305],[-66,0],[-130,0],[-10,0],[-33,1],[-91,-1],[-49,0],[-99,0],[-94,0],[-29,0],[-67,0],[-16,0],[-14,0],[-18,0],[-154,-1],[-100,-1],[-124,-1],[-27,-1],[-31,0],[-55,0],[-9,-1],[-19,0],[-39,0],[-38,-1],[-144,-1],[-22,0],[-203,-1],[-2,-1],[-14,0],[-16,0],[-49,-1],[-61,-1],[-26,0],[-91,-1],[-12,0],[-216,-2],[-13,-1],[-23,0],[-44,0],[-20,0],[-16,-1],[-12,0],[-28,-1],[-22,0],[-88,-2]],[[52757,37385],[-3,-29],[1,-49],[1,-132],[1,-30],[0,-14],[1,-28],[1,-121],[1,-48],[1,-63],[2,-74],[1,-48],[0,-24],[4,-153],[1,-59],[1,-28],[0,-22],[4,-151],[0,-20],[1,-55],[2,-103],[1,-110],[1,-40],[3,-167],[1,-18],[1,-20],[1,-29],[0,-65],[1,-39],[0,-26],[0,-46],[0,-52],[-1,-46],[-1,-120],[-1,-51],[0,-40],[-1,-72],[0,-15],[0,-9],[0,-39],[0,-49],[-1,-91],[-1,-25],[-1,-21],[-4,-87],[2,-154],[0,-50],[1,-158],[1,-15],[3,-175],[1,-97],[1,-72],[1,-45],[0,-30],[1,-18],[3,-110],[0,-14],[0,-2],[0,-54],[0,-24],[0,-5],[1,-22],[0,-75],[1,-135],[2,-20],[1,-126],[1,-49],[0,-24],[0,-44],[-2,-177],[0,-38],[1,-158],[0,-21],[1,-78],[1,-135],[1,-118],[2,-102],[0,-118],[-1,-66],[-1,-139],[-1,-78],[10,-43]],[[52806,32068],[-65,1],[-24,0],[-61,0],[-29,1],[-72,0],[-13,0],[-37,1],[-60,1],[-60,0],[-42,0],[-19,0],[-42,1],[-16,0],[-13,0],[-17,0],[-2,0],[-17,0],[-13,0],[-121,1],[-18,-1],[-50,1],[-20,0],[-15,0],[-60,0],[-14,0],[-45,0],[-22,0],[-14,1],[-16,0],[-16,0],[-17,0],[-21,0],[-37,1],[-118,-1],[-60,-1],[-60,1],[-61,0],[-57,0],[-16,1],[-42,1],[-14,0],[-182,3],[-41,1],[-27,0],[-47,1],[-36,1],[-32,1],[-11,0],[-16,0],[-24,1],[-22,-1],[-13,1],[-238,3],[-173,3],[-65,1],[-3,0],[-10,0],[-24,5],[-16,-4],[-16,0],[-27,0],[-57,2],[-61,1],[-23,1],[-75,2],[-41,1],[-28,0],[-13,0],[-14,1],[-16,0],[-16,1],[-14,0],[-14,0],[-21,0],[-51,1],[-46,0],[-21,0],[-47,0],[-14,1],[-28,1],[-59,0],[-85,1],[-97,2],[-54,1],[-66,1],[-60,0],[-61,2],[-65,1],[-92,3],[-5,0],[-36,0],[-25,1],[-18,1],[-59,1],[-60,1],[-29,0],[-16,1],[-27,0],[-37,1],[-14,0],[-42,1],[-56,0],[-54,1],[-28,1],[-20,0],[-9,0],[-8,0],[-20,0],[-23,0],[-32,1],[-18,0],[-31,0],[-13,0],[-22,0],[-16,0],[-18,0],[-17,-2],[-17,0],[-22,2],[-15,0],[-39,0],[-87,-1],[-26,0]],[[58511,37352],[1,-147],[1,-31],[0,-160],[1,-142],[0,-123],[2,-81],[2,-33],[0,-26],[1,-188],[2,-109],[1,-56],[1,-27],[0,-27],[1,-142],[1,-77],[4,-216],[0,-22],[0,-5],[1,-41],[0,-31],[0,-15],[0,-43],[0,-15],[0,-42],[1,-102],[0,-115],[1,-20],[1,-52],[0,-24],[0,-25],[2,-100],[0,-179],[0,-39],[-2,-39],[0,-1],[1,-132],[0,-44],[0,-69],[1,-50],[0,-99],[0,-19],[1,-110],[1,-50],[0,-44],[0,-34],[0,-109],[0,-70],[0,-154],[0,-73],[0,-82],[0,-44],[0,-28],[0,-54],[1,-107],[0,-25],[0,-86],[0,-112],[-1,-104],[0,-90],[0,-102],[-1,-28],[0,-15],[1,-98],[0,-111],[1,-212],[-1,-171],[0,-46],[0,-217]],[[58537,32068],[-19,0],[-61,0],[-88,0],[-55,1],[-20,0],[-37,-1],[-66,1],[-139,-1],[-16,0],[-103,0],[-37,-1],[-32,0],[-51,0],[-96,0],[-17,1],[-251,0],[-46,0],[-21,0],[-49,0],[-67,0],[-53,0],[-62,0],[-18,0],[-32,0],[-18,0],[-152,-2],[-15,0],[-155,1],[-21,0],[-30,0],[-72,-4],[-72,-4],[-21,0],[-124,-1],[-39,0],[-105,-1],[-16,-1],[-19,-1],[-101,0],[-95,-1],[-16,0],[-76,-1],[-61,0],[-14,-1],[-45,-1],[-45,-1],[-31,-1],[-30,-1],[-18,-1],[-10,0],[-41,2],[-88,-1],[-30,1],[-41,-1],[-71,0],[-19,0],[-71,0],[-150,-1],[-95,-1],[-26,0],[-1,0],[-33,0],[-1,0],[-38,0],[-45,-2],[-16,0],[-2,0],[-12,0],[-44,0],[-53,0],[-117,1],[-101,1],[-15,0],[-8,0],[-11,0],[-42,1],[-41,0],[-27,1],[-13,0],[-27,1],[-23,0],[-13,1],[-17,0],[-16,0],[-18,1],[-54,1],[-19,0],[-15,1],[-14,0],[-17,0],[-13,0],[-174,6],[-140,-1],[-120,0],[-13,0],[-14,0],[-22,0],[-23,0],[-23,0],[-12,0],[-14,0],[-121,1],[-43,0],[-113,2],[-86,0],[-100,2],[-50,1],[-97,2],[-186,2],[-45,0]],[[64268,37342],[0,-160],[0,-148],[0,-12],[0,-160],[-7,-19],[0,-33],[0,-33],[0,-125],[0,-27],[-1,-163],[1,-54],[0,-1],[1,-80],[0,-28],[1,-110],[0,-144],[-2,-55],[0,-18],[0,-66],[1,-154],[0,-111],[0,-2],[0,-107],[0,-25],[0,-20],[0,-140],[0,-35],[0,-31],[-1,-187],[0,-111],[-4,-107],[0,-16],[0,-3],[2,-93],[2,-38],[-3,-25],[0,-37],[0,-15],[0,-16],[-1,-17],[-1,-104],[0,-64],[-1,-64],[0,-22],[0,-29],[-1,-104],[0,-38],[-1,-32],[1,-35],[-2,-105],[0,-26],[0,-16],[0,-23],[-1,-35],[0,-22],[0,-51],[0,-52],[0,-8],[1,-142],[1,-69],[0,-120],[0,-99],[0,-39],[0,-40],[0,-17],[0,-18],[0,-24],[0,-18],[0,-18],[0,-18],[2,-84],[0,-35],[-1,-9],[0,-20],[0,-32],[0,-18],[-1,-51],[3,-120],[1,-25],[0,-15],[1,-60],[-2,-64],[-6,-155],[-1,-111],[-1,-109],[0,-109],[-1,-109]],[[64247,32038],[-123,0],[-119,0],[-157,-2],[-190,0],[-1,0],[-131,1],[-1,0],[-44,-1],[-46,1],[-34,0],[-35,0],[-77,1],[-104,0],[-70,0],[-64,1],[-163,0],[-56,0],[-110,2],[-66,1],[-21,0],[-43,0],[-14,0],[-22,1],[-85,0],[-19,0],[-101,1],[-15,-1],[-32,0],[-19,0],[-109,0],[-16,0],[-50,0],[-23,0],[-31,1],[-31,0],[-19,0],[-38,0],[-21,0],[-15,0],[-60,2],[-17,1],[-15,0],[-15,0],[-127,-1],[-66,1],[-194,2],[-31,0],[-51,0],[-50,0],[-24,0],[-116,0],[-238,0],[-62,1],[-33,1],[-35,1],[-22,0],[-73,0],[-154,0],[-103,1],[-32,-1],[-36,0],[-18,0],[-3,0],[-37,1],[-59,1],[-45,0],[-32,0],[-40,1],[-37,0],[-20,0],[-17,0],[-19,0],[-17,-1],[-18,0],[-32,1],[-247,4],[-60,1],[-181,2],[-137,4],[-44,1],[-59,0],[-241,0],[-126,0],[-16,0],[-18,1],[-23,-1],[-19,0],[-41,0],[-36,0],[-199,1]],[[70041,37285],[0,-13],[0,-5],[1,-16],[1,-60],[2,-78],[5,-153],[2,-73],[1,-54],[0,-23],[1,-25],[0,-19],[1,-22],[1,-35],[0,-42],[0,-26],[0,-45],[2,-72],[0,-72],[0,-27],[0,-27],[0,-26],[0,-32],[0,-31],[0,-38],[0,-23],[0,-18],[-1,-56],[-2,-63],[0,-105],[1,-89],[1,-130],[1,-58],[0,-52],[0,-58],[-1,-59],[1,-110],[0,-52],[0,-13],[1,-24],[0,-22],[0,-103],[1,-36],[0,-37],[0,-40],[0,-16],[0,-102],[0,-22],[1,-77],[1,-48],[0,-1],[0,-35],[0,-15],[0,-47],[2,-72],[-1,-221],[0,-76],[0,-33],[0,-110],[0,-77],[0,-91],[0,-58],[0,-43],[-1,-174],[-1,-20],[0,-19],[0,-28],[0,-1],[0,-42],[0,-19],[0,-36],[0,-49],[0,-198],[0,-1],[0,-20],[2,-233],[0,-143],[1,-62],[0,-83],[0,-26],[0,-26],[1,-83],[1,-102],[0,-5],[0,-18],[0,-95],[0,-41],[0,-2],[-1,-79],[-1,-93],[1,-61],[0,-70],[1,-88]],[[70066,32062],[-47,-1],[-76,0],[-84,-1],[-38,0],[-18,0],[-27,0],[-20,0],[-36,0],[-14,0],[-13,0],[-118,0],[-241,1],[-148,-1],[-72,0],[-23,0],[-244,-1],[-257,-1],[-40,0],[-3,0],[-62,-1],[-135,-1],[-20,0],[-20,0],[-12,0],[-1,0],[-13,0],[-15,-1],[-1,0],[-20,-1],[-18,0],[-22,0],[-22,0],[-67,0],[-11,0],[-8,0],[-14,0],[-13,0],[-17,0],[-16,0],[-17,-1],[-2,0],[-94,0],[-49,0],[-20,-1],[-231,0],[-234,-2],[-13,0],[-68,-1],[-40,0],[-71,-1],[-70,0],[-112,-3],[-20,0],[-75,1],[-37,0],[-13,0],[-15,0],[-15,0],[-20,-6],[-146,4],[-72,0],[-76,-1],[-130,0],[-23,-1],[-13,0],[-56,-1],[-42,0],[-1,0],[-98,-1],[-18,0],[-2,0],[-20,0],[-21,1],[-1,0],[-19,0],[-45,0],[-120,1],[-33,-1],[-37,0],[-169,-1],[-233,2],[-120,0],[-31,0],[-66,1],[-22,0],[-152,-3],[-91,0],[-241,-1],[-242,0],[-237,-1]],[[75369,37305],[0,-29],[-1,-59],[-1,-44],[0,-16],[0,-16],[0,-35],[-1,-34],[0,-73],[0,-36],[0,-16],[0,-33],[-1,-16],[-1,-124],[0,-32],[0,-30],[-1,-29],[-2,-127],[0,-16],[4,-190],[0,-10],[0,-20],[0,-151],[0,-12],[0,-22],[0,-21],[0,-76],[0,-39],[0,-21],[0,-2],[1,-26],[0,-24],[0,-25],[0,-39],[0,-34],[0,-22],[1,-115],[0,-35],[0,-184],[-1,-220],[0,-9],[0,-52],[0,-52],[0,-81],[0,-25],[0,-48],[0,-128],[0,-31],[0,-16]],[[75366,34810],[1,-90],[0,-36],[1,-61],[0,-2],[0,-63],[0,-155],[1,-217],[0,-89],[1,-123],[0,-123],[0,-51],[0,-52],[0,-52],[1,-101],[0,-64],[-1,-194],[0,-18],[-3,-180],[-1,-38],[-1,-75],[0,-75],[-1,-68],[-1,-92],[-1,-62],[-1,-33],[0,-32],[-2,-222],[-1,-54],[-3,-148],[-1,-17]],[[75354,32223],[-50,0],[-3,0],[-21,0],[-20,1],[-21,1],[-83,4],[-1,0],[-38,2],[-100,2],[-8,1],[-73,2],[-63,1],[-91,1],[-31,1],[-54,1],[-66,1],[-20,0],[-35,0],[-30,1],[-34,0],[-122,1],[-29,1],[-80,1],[-79,1],[-55,1],[-40,1],[-29,0],[-28,0],[-14,0],[-44,0],[-21,0],[-21,1],[-14,-1],[-39,2],[-238,4],[-93,1],[-32,1],[-127,2],[-34,0],[-27,1],[-15,0],[-39,0],[-23,-1],[-13,0],[-14,0],[-12,0],[-15,1],[-1,0],[-13,0],[-18,0],[-17,0],[-16,0],[-14,0],[-4,0],[-36,1],[-38,0],[-6,0],[-22,1],[-77,1],[0,-29],[0,-14],[0,-8],[0,-16],[0,-22],[0,-22],[0,-22],[0,-22],[0,-10],[0,-22],[-1,-21],[-1,-17],[-32,0],[-8,0],[-13,0],[-20,0],[-14,0],[-19,0],[-5,0],[-11,0],[-7,0],[-5,0],[-5,0],[-12,0],[-13,0],[-10,1],[-6,0],[-59,0],[-1,0],[-21,0],[-59,1],[-40,0],[-121,3],[-16,0],[-54,0],[-123,1],[-2,0],[-47,0],[-68,1],[-174,2],[-57,1],[-14,1],[-23,0],[-14,1],[-13,0],[-123,1],[-88,1],[-33,0],[-106,1],[-3,0],[-75,0],[-104,1],[-62,0],[-199,2],[-42,0],[-122,1],[-22,0],[-98,1],[-37,0],[-47,1],[-53,0],[-27,1],[-1,0],[-15,0],[-27,1],[-29,-1],[-26,0],[-22,1],[-6,0],[-50,0],[-41,1],[-41,0],[-1,0],[-59,1],[-138,0],[-38,0],[-64,0]],[[80993,28649],[-2,-105],[0,-34],[1,-9],[0,-53],[0,-54],[1,-50],[0,-23],[0,-22],[1,-15],[2,-113],[1,-43],[0,-60],[0,-54],[0,-56],[0,-54],[1,-55],[1,-107],[0,-111],[0,-3],[0,-47],[0,-58],[0,-48],[0,-66],[0,-69],[1,-49],[1,-97],[0,-110],[1,-110]],[[81002,26974],[-63,0],[-61,0],[-116,0],[-28,0],[-78,-1],[-50,0],[-82,-1],[-60,-1],[-59,0],[-20,-1],[-68,0],[-37,-1],[-120,0],[-1,0],[-119,1],[-114,1],[-57,1],[-13,0],[-49,1],[-29,0],[-89,1],[-81,1],[-19,0],[-20,0],[1,110],[5,104],[-1,50],[-1,54],[-2,120],[3,112],[0,106],[-12,-1],[-103,-1],[-80,0],[-39,0],[-120,1],[-90,1],[-34,0],[-28,0],[-92,0],[-30,0],[-10,0],[-9,1],[-18,0],[-54,0],[-9,0],[-62,1],[-9,0],[-24,0],[-3,0],[-16,0],[-9,0],[-26,0],[-6,0],[-32,1],[-35,0],[-40,0],[-14,0],[-27,0],[-40,0],[-1,0],[-50,1],[-25,0],[-25,0],[-19,0],[-16,0],[-13,0],[-34,0],[-19,0],[-38,1],[-8,0],[-14,0],[-45,0],[-1,0],[-18,0],[-19,0],[-29,1],[-35,1],[-2,0],[-25,0],[-34,1],[-71,1],[-55,1],[-57,1],[-168,3],[-2,0],[-31,0],[-31,1],[-61,0],[-122,-1],[-64,3],[-1,0],[-67,2],[-106,1],[-28,0],[-21,1],[-42,0],[-53,1],[-15,0],[-81,2],[-200,7],[3,126],[1,88],[2,108],[2,109],[1,48],[0,44],[1,16],[0,26],[1,10],[-8,74],[-20,0],[-84,1],[-128,2],[-27,0],[-107,0],[-104,2],[-12,0],[-232,6],[-136,1],[-45,1],[-56,1],[-61,1],[-32,0],[-17,0],[-5,1],[-22,0],[-68,1],[-33,1],[-67,1],[-52,2],[-107,3]],[[75345,28335],[0,76],[0,17],[1,15],[0,41],[0,28],[1,40],[0,32],[1,80],[2,107],[1,52],[0,58],[1,51],[0,4],[0,16],[0,19],[0,1],[0,1],[-1,17],[1,26],[1,16],[0,16],[1,52],[1,109],[0,53],[1,63],[0,16],[0,31],[0,55],[1,109],[0,52],[0,42],[0,47],[0,144],[0,28],[0,55],[0,55],[0,21],[0,89],[1,53],[0,21],[0,20],[1,125],[-1,191],[0,28],[0,111],[0,110],[0,73],[0,23],[0,1],[0,104],[0,108],[-1,112],[1,100],[0,93],[0,27],[0,95],[-1,96],[0,26],[0,218],[-1,48],[0,16],[0,51],[-1,188],[0,25],[0,5],[-1,86]],[[75366,34810],[247,2],[82,0],[165,1],[172,-1],[49,0],[18,0],[47,0],[75,0],[115,0],[15,0],[62,0],[25,0],[144,1],[60,0],[182,-1],[0,-23],[0,-74],[-1,-97],[1,-16],[1,-105],[0,-51],[0,-19],[0,-37],[2,-109],[0,-30],[0,-33],[0,-6],[1,-43],[0,-109],[0,-17],[0,-25],[1,-17],[0,-51],[0,-38],[0,-94],[0,-23],[0,-32],[0,-32],[1,-61],[0,-42],[0,-56],[1,-19],[0,-27],[200,-15],[28,0],[53,0],[16,-1],[4,0],[45,0],[49,0],[72,0],[44,0],[29,-1],[49,0],[118,-1],[61,0],[60,-1],[31,0],[81,-1],[2,0],[59,0],[5,0],[17,0],[31,0],[19,0],[12,0],[22,0],[21,-1],[52,-2],[67,0],[29,0],[17,1],[32,-1],[101,0],[35,0],[4,0],[136,1],[15,0],[13,-1],[17,-1]],[[75345,28335],[-3,-105],[-1,-44],[-3,-116],[-1,-13],[0,-2],[-1,-39],[-3,-123],[-2,-56],[-2,-52],[-2,-111],[0,-54],[-1,-55],[-1,-21],[-1,-42],[0,-45],[-4,-167],[0,-42],[-1,-10],[-2,-95],[0,-1],[0,-21],[-2,-101],[-66,-1],[-55,0],[-72,-1],[-49,0],[-158,-1],[-81,0],[-52,-1],[-10,0],[-58,0],[-118,0],[-119,-1],[-118,-1],[-31,0],[-99,-1],[-112,-1],[-150,0],[-19,-1],[-45,0],[-37,0],[-120,0],[-120,1],[-73,0],[-53,0],[-112,1],[-69,0],[-54,0],[-23,0],[-17,0],[-79,0],[-60,0],[-171,1],[-1,0],[0,-16],[-1,-109],[0,-30],[0,-24],[0,-56]],[[72913,26779],[-1,0],[-60,0],[-59,0],[-122,1],[-178,0],[-59,0],[-242,0],[-120,0],[-119,0],[-242,1],[-59,-1],[-171,1],[-81,0],[-39,0],[-120,0],[-18,0],[-33,0],[-32,0],[-37,0],[-66,0],[-54,0],[-86,-1],[-83,0],[-33,-1],[-6,0],[-35,0],[-209,0],[-31,0],[-31,0],[-61,0],[-88,0],[-55,0],[-65,0],[-60,0],[-110,-1]],[[70048,26778],[0,48],[0,2],[0,100],[0,67],[0,58],[0,165],[-1,124],[0,38],[0,57],[-1,81],[0,26],[0,55],[0,56],[-1,112],[0,67],[0,40],[0,95],[0,49],[0,46],[0,3],[0,37],[0,25],[0,25],[0,30],[0,30],[0,61],[0,38],[0,61],[0,80],[0,55],[0,32],[-1,94],[1,16],[-1,56],[0,54],[0,39],[0,20],[0,53],[0,104],[0,3],[0,18],[0,22],[-1,16],[0,32],[-1,22],[0,22],[0,15],[0,17],[-1,16],[0,21],[0,17],[1,102],[0,32],[0,47],[1,43],[1,220],[2,221],[1,108],[0,62],[0,27],[1,21],[1,153],[1,67],[0,41],[1,78],[0,99],[1,19],[3,203],[1,111],[0,38],[0,73],[1,79],[0,39],[1,47],[0,54],[1,83],[1,34],[1,71],[0,10],[0,7],[1,124],[1,54],[0,51],[0,50],[1,41],[1,132],[0,54],[0,7],[1,50],[0,38],[0,20],[0,54]],[[52806,32068],[-1,-85],[0,-25],[-1,-53],[-2,-115],[-1,-20],[0,-17],[0,-7],[-2,-31],[-1,-89],[-1,-60],[-1,-56],[-3,-104],[-1,-79],[0,-17],[1,-30],[-1,-36],[-1,-58],[0,-109],[0,-15],[0,-16],[-1,-79],[0,-26],[-1,-85],[1,-109],[-2,-104],[1,-116],[0,-73],[0,-37],[0,-20],[0,-31],[0,-16],[0,-48],[1,-203],[0,-65],[0,-2],[0,-63],[1,-104],[-1,-107],[0,-31],[0,-22],[0,-23],[0,-34],[0,-110],[0,-24],[1,-77],[-1,-22],[0,-59],[0,-26],[0,-20],[-1,-72],[1,-27],[0,-17],[0,-16],[0,-20],[-1,-24],[0,-24],[0,-18],[-1,-105],[-2,-219],[0,-67],[0,-42],[0,-94],[0,-16],[-1,-53],[0,-29],[0,-18],[0,-26],[0,-16],[0,-13],[0,-2],[0,-37],[0,-23],[0,-22],[0,-17],[0,-16],[0,-28],[0,-17],[-1,-21],[0,-57],[0,-42],[0,-24],[0,-62],[1,-38],[0,-20],[0,-74],[0,-26],[0,-55],[0,-76],[0,-56],[0,-29],[0,-118],[0,-78],[1,-44],[0,-7],[0,-39],[0,-75],[-1,-54],[0,-87],[0,-73],[0,-23],[0,-36],[1,-97],[1,-65],[0,-15],[0,-30],[0,-11]],[[52787,26800],[-37,0],[-28,1],[-28,0],[-19,1],[-98,1],[-13,0],[-12,1],[-14,0],[-13,0],[-14,0],[-12,0],[-166,3],[-24,0],[-181,2],[-60,0],[-112,2],[-24,0],[-20,0],[-22,0],[-44,1],[-21,0],[-43,0],[-22,1],[-159,2],[-102,2],[-27,0],[-91,2],[-19,0],[-104,1],[-25,0],[-120,2],[-19,0],[-6,0],[-7,0],[-6,1],[-24,0],[-4,0],[-38,0],[-55,0],[-20,0],[-1,0],[-57,1],[-51,1],[-73,0],[-40,0],[-19,0],[-46,0],[-14,0],[-15,0],[-15,0],[-1,0],[-14,0],[-34,1],[-4,0],[-29,0],[-47,2],[-12,1],[-25,1],[-35,0],[-15,0],[-32,1],[-13,1],[-27,0],[-19,1],[-40,0],[-37,1],[-66,1],[-120,2],[-113,3],[-18,0],[-22,0],[-16,1],[-43,1],[-14,0],[-17,1],[-33,0],[-23,2],[-42,0],[-12,0],[-21,0],[-117,3],[-28,1],[-25,-1],[-21,1],[-22,0],[-12,0],[-104,3],[-62,2],[-62,3],[-19,1],[-9,1],[-6,0],[-18,1],[-26,1],[-15,1],[-34,1],[-116,2],[-92,3],[-25,0],[-21,1],[-103,1],[-56,1],[-39,2],[-151,3],[-58,0],[-18,0],[-44,0],[-69,-1],[-45,0],[-86,-1],[-22,0],[-53,0],[-53,1],[-29,0],[-109,-1],[-27,0],[-31,0],[-29,0],[-20,0],[-12,0],[-15,0],[-49,0]],[[70048,26778],[-109,1],[-5,0],[-108,0],[-18,0],[-236,0],[-48,0],[-88,0],[-49,0],[-55,0],[-55,0],[-27,0],[-39,0],[-8,0],[-9,0],[-24,0],[-21,0],[-2,0],[-59,1],[-21,0],[-86,0],[-129,0],[-90,1],[-47,0],[-105,1],[-119,0],[-62,0],[-58,0],[-44,0],[-197,0],[-17,0],[-45,0],[-180,0],[-120,0],[-32,0],[-17,0],[-18,0],[-54,0],[-16,0],[-89,0],[-169,-1],[-83,0],[-116,-1]],[[67174,26780],[-239,1],[-111,-1],[-39,0],[-91,0],[-110,0],[-121,1],[-16,0],[-112,0],[-24,0],[-102,-1],[-116,2],[-31,-1],[-57,1],[-22,0],[-15,-1],[-7,0],[-7,0],[-54,0],[-1,0],[-43,1],[-17,0],[-2,0],[-107,-1],[-116,0],[-23,-1],[-30,1],[-35,0],[-30,-1],[-187,-1],[-54,0],[-233,0],[-215,0],[-29,0],[-234,0],[-251,2]],[[64293,26781],[-1,109],[0,109],[-1,110],[0,109],[-1,75],[0,34],[-1,109],[-1,109],[0,49],[0,29],[0,25],[-1,54],[0,117],[-1,54],[0,51],[-1,75],[0,16],[0,6],[0,10],[0,23],[-1,35],[0,52],[0,58],[-1,106],[-1,106],[0,60],[0,53],[0,54],[-2,163],[0,1],[-1,82],[0,10],[1,52],[-2,75],[0,55],[-2,164],[0,126],[0,15],[0,36],[0,17],[-1,36],[0,45],[-2,101],[-1,40],[0,24],[0,110],[-1,109],[-2,218],[-1,110],[0,66],[-1,42],[0,49],[0,18],[0,16],[-1,55],[0,25],[0,56],[0,63],[-1,163],[-1,16],[0,1],[-2,92],[-1,40],[-1,70],[-3,220],[-3,37],[-1,34],[0,105],[0,44],[-1,45],[-2,71],[0,23],[-1,79],[-2,109],[0,125],[0,207]],[[64293,26781],[-238,2],[-90,0],[-30,0],[-60,1],[-34,0],[-4,0],[-24,0],[-55,1],[-62,1],[-60,1],[-16,0],[-44,0],[-2,0],[-52,1],[-34,1],[-16,0],[-42,0],[-16,1],[-77,0],[-192,3],[-52,2],[-33,0],[-29,0],[-26,1],[-48,1],[-26,1],[-40,0],[-7,1],[-38,0],[-53,0],[-33,0],[-14,0],[-14,0],[-118,1],[-100,0],[-140,1],[-33,-1],[-27,1],[-30,0],[-29,0],[-4,0],[-118,2],[-74,0],[-43,0],[-120,0],[-119,2],[-32,0],[-87,0],[-105,1],[-13,0],[-17,0],[-44,0],[-60,0],[-13,0],[-41,0],[-63,1],[-122,1],[-58,2],[-21,0],[-98,1],[-14,0],[-45,0],[-94,2],[-54,0],[-105,0],[-105,0],[-123,0],[-118,0],[-125,0],[-95,0],[-18,0],[-67,0],[-59,0],[-100,-1],[-27,0],[-24,0],[-101,-1],[-98,0],[-62,-1],[-2,-1],[-71,0],[-5,0],[-23,-1],[-82,0],[-100,-1],[-59,1],[-48,0],[-25,0],[-12,0],[-14,0],[-37,0],[-69,-1],[-239,2],[-134,2],[-111,1]],[[58538,26812],[0,19],[1,54],[0,39],[0,33],[0,36],[0,38],[0,75],[-1,34],[0,98],[0,20],[0,19],[0,18],[0,41],[-1,36],[0,32],[0,19],[1,16],[-1,30],[0,16],[0,15],[1,17],[-2,15],[0,3],[0,49],[0,33],[0,2],[1,71],[-1,80],[0,50],[0,84],[1,27],[-1,96],[0,4],[0,17],[0,5],[1,15],[0,1],[0,42],[0,24],[0,17],[0,14],[0,75],[0,20],[-1,24],[0,57],[0,108],[0,36],[0,29],[1,18],[-1,27],[0,49],[0,48],[-1,19],[0,106],[1,107],[0,23],[1,102],[2,150],[0,54],[0,78],[1,147],[-2,37],[-1,17],[0,15],[-1,20],[-1,33],[0,27],[-1,17],[-1,56],[0,24],[1,18],[1,105],[1,74],[-1,210],[0,20],[-2,107],[1,55],[-2,147],[1,112],[0,123],[1,90],[0,21],[0,16],[1,181],[1,68],[0,39],[0,75],[0,38],[0,45],[1,64],[0,19],[0,24],[0,42],[0,25],[0,160],[0,26],[0,26],[0,20],[0,21],[0,26],[0,113],[0,46],[0,112],[0,111]],[[58538,26812],[0,-19],[-1,-22],[0,-32],[-1,-148],[0,-17],[0,-22],[0,-16],[0,-33],[0,-42],[0,-32],[-1,-37],[0,-21],[0,-17],[1,-25],[0,-47],[0,-22],[0,-49],[0,-15],[-1,-14],[0,-2],[0,-15],[0,-18],[0,-23],[0,-19],[0,-60],[0,-37],[0,-17],[0,-56],[0,-55],[0,-18],[1,-25],[-1,-16],[0,-26],[0,-4],[0,-12],[0,-59],[0,-3],[0,-52],[0,-58],[0,-110],[0,-55],[0,-58],[0,-108],[0,-45],[0,-108],[1,-69],[-2,-88],[0,-19],[0,-21],[0,-78],[0,-39],[0,-46],[0,-16],[0,-8],[0,-66],[0,-39],[0,-16],[0,-52],[0,-57],[0,-24],[0,-35],[0,-51],[1,-110],[1,-76],[0,-33]],[[58536,24180],[-50,0],[-59,0],[-121,-1],[-60,0],[-40,0],[-22,-1],[-15,0],[-17,1],[-27,0],[-20,0],[-46,0],[-54,0],[-60,-1],[-27,0],[-72,-1],[-24,0],[-26,0],[-27,0],[-64,0],[-121,-1],[-59,-1],[-45,0],[-16,0],[-25,0],[-16,-1],[-19,-2],[-15,2],[-13,1],[-21,0],[-25,-1],[-27,0],[-48,0],[-38,-1],[-12,0],[-91,-1],[-15,0],[-74,-1],[-73,-1],[-43,0],[-49,-1],[-9,0],[-39,-2],[-27,-1],[-42,-1],[-15,0],[-82,0],[-21,0],[-31,0],[-23,0],[-68,0],[-14,0],[-62,0],[-37,0],[-50,0],[-62,-1],[-27,0],[-104,-1],[-14,0],[-45,0],[-42,-1],[-16,0],[-11,0],[-1,0],[-43,0],[-51,-1],[-1,0],[-15,0],[-13,0],[-68,0],[-38,0]],[[55789,24161],[-24,-1],[-101,0],[-118,-1],[-2,0],[-24,0],[-8,0],[-36,1],[-51,0],[-114,0],[-122,0],[-117,0],[-36,0],[-23,0],[-32,-1],[-27,1],[-117,1],[-67,0],[-40,0],[-19,0],[-19,0],[-80,1],[-15,0],[-126,0],[-100,1],[-144,0],[-13,0],[-14,0],[-54,1],[-16,0],[-139,1],[-13,0],[-92,0],[-51,1],[-68,0],[-19,1],[-76,0],[-28,-1],[-133,1],[-43,0],[-60,0],[-115,1],[-21,-1],[-17,-1],[-20,0],[-44,0],[-24,0],[-15,1],[-47,0],[-84,0],[-95,1],[-36,0],[-63,0],[-33,0],[0,78],[-1,21],[0,35],[0,78],[0,61],[0,91],[0,7],[0,33],[0,34],[-1,22],[1,128],[0,28],[-1,41],[1,151],[0,69],[-1,155],[0,66],[0,124],[0,24],[-1,73],[0,109],[-1,110],[0,109],[-1,109],[1,109],[0,21],[0,35],[0,48],[0,24],[-8,11],[-1,1],[5,16],[3,9],[1,3],[0,79],[0,4],[0,17],[-1,61],[1,43],[0,67],[0,33],[-1,76],[-1,152],[0,4],[-1,23],[0,36],[0,4]],[[83791,30739],[1,-33],[0,-56],[1,-37],[0,-9],[1,-70],[1,-45],[0,-59],[1,-50],[1,-111],[0,-108],[0,-86],[0,-23],[1,-18],[1,-17],[0,-71],[0,-3],[1,-6],[0,-43],[1,-61],[1,0],[60,-3],[90,2],[115,3],[86,1],[42,1],[61,2],[121,2],[49,2],[13,0],[114,3],[120,3],[87,1],[34,1],[3,1],[41,1],[31,0],[32,1],[14,0],[64,2],[63,1],[32,1],[24,1],[60,1],[75,2],[32,1],[58,1],[61,1],[151,3],[89,1],[24,1],[5,0],[151,4],[61,1],[43,1],[85,3],[27,0],[85,2],[22,1],[36,1],[44,1],[16,0],[75,2],[23,0],[14,1],[114,3],[17,0],[116,3],[86,3],[117,3],[19,1],[14,0],[13,1],[6,0],[43,2],[43,1],[13,1],[24,1],[25,1],[21,0],[38,1],[42,2],[17,1],[62,2],[120,4],[62,3],[64,2],[62,3],[48,2],[69,2],[73,3],[70,4],[32,1],[30,1],[182,8],[28,2]],[[88005,29948],[5,-169],[2,-59],[1,-56],[3,-90],[3,-75],[6,-183],[0,-4],[0,-32],[1,-45],[1,-36],[1,-20],[3,-118],[2,-63],[1,-45],[3,-110],[1,-33],[4,-120],[2,-66],[2,-54],[3,-53],[1,-17],[4,-93],[1,-18],[0,-1],[7,-147],[1,-22],[2,-32],[5,-110],[5,-110],[2,-22],[1,-26],[0,-20],[4,-71],[1,-26],[2,-44],[2,-37],[1,-28],[3,-55],[2,-54],[2,-56],[3,-54],[1,-16],[1,-39],[2,-26],[0,-22],[3,-62],[1,-40],[2,-67],[2,-60],[2,-57],[2,-53],[2,-54],[1,-21],[0,-29],[2,-50],[3,-109],[1,-66],[2,-53],[1,-54],[2,-54],[2,-54],[1,-51],[1,-33],[2,-80],[1,-31],[1,-30],[1,-24],[0,-25],[2,-53],[1,-28],[1,-18],[2,-63],[0,-27],[1,-28],[0,-1],[1,-52],[2,-46],[2,-119],[1,-18],[0,-36],[1,-57],[1,-19],[0,-18],[1,-20],[1,-52],[2,-109],[1,-43],[0,-32],[0,-35],[6,-220],[3,-111],[1,-62],[1,-24],[1,-22],[0,-26],[1,-30],[0,-22],[1,-8],[0,-32],[1,-33],[1,-16],[0,-4],[0,-12],[1,-38],[-66,-1],[-54,-1],[-80,-2]],[[87974,24676],[-39,-1],[-31,-1],[-20,-1],[-20,0],[-55,-2],[-25,-1],[-46,-1],[-43,-1],[-55,-2],[-47,-1],[-18,0],[-46,-1],[-24,-1],[-50,-1],[-44,-1],[-30,-1],[-39,-1],[-19,-1],[-20,-1],[-7,0],[-23,0],[-41,-1],[-16,-1],[-36,-1],[-40,-1],[-22,-1],[-15,0],[-17,-1],[-18,0],[-46,-1],[-35,-2],[-74,-2],[-84,-2],[-27,-1],[-64,-1],[-24,-1],[-45,-1],[-96,-3],[-15,0],[-37,-1],[-8,0],[-16,-1],[-14,-1],[-22,0],[-24,0],[-25,-1],[-9,0],[-22,-1],[-63,-1],[-61,-2],[-51,-1],[-90,-2],[-16,0],[-28,-1],[-53,-2],[-20,0],[-87,-3],[-77,-1],[-56,-2],[-66,-1],[-91,-3],[-30,0],[-50,-2],[-78,-1],[-63,-2],[-48,-1],[-15,0],[-39,-1],[-109,-2],[-37,-1],[1,-23],[0,-32],[2,-54],[1,-56],[1,-55],[2,-53],[1,-52],[0,-17],[2,-97],[2,-50],[1,-55],[2,-77],[2,-38],[0,-35],[1,-20],[1,-48],[2,-59],[1,-41],[0,-17],[1,-26],[0,-20],[2,-58],[2,-75],[1,-40],[1,-61],[1,-49],[3,-109],[-34,-1],[-14,0],[-191,-6],[-95,-3],[-66,-1],[-77,-3],[-13,0],[-113,-3],[-69,-2],[-44,-1],[-102,-3],[-34,-1],[-45,-1],[-19,-1],[-15,0],[-19,-1],[-13,1],[-58,-2],[-145,-4],[-16,0],[-14,0],[-17,-1],[-19,0],[-82,-3],[-1,-115],[1,-15],[0,-4],[-1,-13]],[[83871,23103],[-20,0],[-1,0],[-18,0],[-59,0],[-14,1],[-14,-1],[-116,-1],[-23,0],[-36,0],[-84,-1],[-37,0],[-25,0],[-19,0],[-243,-2],[-51,1],[-5,0],[-104,-1],[-60,0],[-16,0],[-102,0],[-31,0],[-44,-1],[-44,0],[-15,0],[-16,0],[-42,1],[-60,-1],[-15,0],[-15,1],[-50,0],[-23,-1],[-53,0],[-33,0],[-45,-1],[-161,-4],[-118,-1],[-26,0],[-82,-2],[-13,-1],[-17,-1],[-24,0],[-1,0],[-16,0],[-23,0],[-39,1],[-67,-1],[-19,0],[-31,-1],[-108,-2],[-132,-2],[-14,0],[-2,0],[-80,-1],[-26,-1],[-44,0],[-34,0],[-31,-1],[-19,0],[-63,0],[-40,-1],[-14,0],[-22,0],[-32,-1]],[[81040,23078],[0,70],[0,25],[-1,69],[-1,55],[0,23],[0,37],[-1,48],[0,16],[0,40],[1,15],[0,34],[0,31],[0,32],[0,40],[0,79],[1,36],[-1,17],[1,93],[1,27],[0,87],[0,16],[1,66],[-1,10],[0,18],[0,16],[1,64],[1,30],[0,18],[0,29],[1,67],[0,51],[1,33],[0,36],[0,24],[0,17],[0,34],[1,100],[-1,77],[-12,5],[-13,3],[-12,1],[0,30],[0,32],[0,22],[1,59],[1,61],[-1,51],[1,64],[0,34],[0,76],[0,49],[1,60],[0,41],[-1,93],[0,30],[-1,21],[0,28],[0,22],[0,24],[-1,34],[0,2],[-1,149],[-1,20],[1,66],[-1,17],[0,27],[1,109],[0,1],[0,58],[-1,50],[0,1],[0,52],[0,10],[1,7],[0,18],[0,15],[0,3],[-1,54],[0,45],[0,122],[-1,70],[0,38],[0,16],[-1,17],[0,4],[0,28],[0,15],[0,14],[0,3],[0,21],[0,22],[0,19],[0,43],[0,26],[0,28],[0,3],[0,17],[-1,22],[0,21],[0,16],[0,175],[0,32]],[[95411,22283],[-24,-1],[-17,-1],[-16,0],[-99,-4],[-104,-4],[-86,-4],[-91,-4],[-53,-3],[-222,-10],[-26,-2],[-57,-2],[-51,-3],[-129,-6],[-64,-3],[-52,-2],[-121,-6],[-65,-3],[-125,-5],[-17,-1],[-13,0],[-7,0],[-33,-2],[-48,-2],[-19,0],[-31,-2],[-21,-1],[-90,-3],[-45,-2],[-74,-2],[-123,-5],[-119,-4],[-50,-2],[-12,0],[-41,-1],[-16,-1],[-23,-1],[-107,-4],[-107,-4],[-77,-3],[-60,-2],[-97,-4],[-243,-9],[-107,-5],[-17,0],[-107,-4],[-41,-2],[-19,-1],[-26,-1],[-59,-3],[-93,-4],[-64,-2],[-57,-2],[-117,-5],[-3,0],[-94,-3],[-22,-1],[-25,-1],[-35,-1],[-3,0],[-50,-2],[-144,-5],[-19,-1],[-16,0],[-44,-1],[-21,0],[-23,-2],[-155,-4],[-58,-2],[-184,-6],[-23,-1],[-116,-4],[-105,-4],[-17,0],[-58,-2],[-67,-2],[-59,-1],[-55,-2],[-110,-3],[-84,-3],[-19,0],[-13,0],[-14,-1],[-33,-1],[-28,-1],[-15,-1],[-13,0],[-114,-4],[-34,-2],[-238,-8],[-61,-2],[-187,-6]],[[89470,22059],[-3,110],[-4,109],[-7,220],[-4,150],[-2,67],[-1,27],[-1,25],[0,16],[-1,16],[0,24],[-1,36],[-1,18],[-1,34],[-1,23],[0,1],[-1,32],[-1,26],[-1,40],[-1,31],[0,10],[-1,14],[0,21],[-1,36],[-1,5],[-4,188],[0,19],[-1,28],[-1,56],[-1,45],[-2,116],[-1,30],[-1,58],[-1,22],[-2,102],[-1,105],[-1,119],[-24,0],[-1,0],[-42,0],[-140,0],[-31,0],[-119,-2],[-55,0],[-29,-1],[-23,0],[-12,-1],[-170,-3],[-3,0],[-66,-1],[-219,-3],[-20,-1],[-1,0],[-149,1],[-90,-1],[-153,-4],[-64,-2],[-19,0],[-5,191],[-1,39],[-1,37],[-1,44],[-1,44],[0,25],[-1,22],[0,36],[-2,54],[-1,55],[-1,15],[0,1],[-2,93]],[[88005,29948],[213,8],[24,1],[5,0],[31,1],[201,8],[64,3],[102,4],[78,3],[159,6],[15,1],[58,2],[12,1],[152,6],[90,4],[217,8],[24,1],[237,8],[3,0],[154,6],[13,0],[74,3],[195,7],[42,2],[3,0],[40,1],[114,4],[82,4],[125,4],[90,4],[13,0],[16,1],[44,1],[49,2],[77,3],[70,3],[16,0],[38,2],[38,1],[146,4],[109,4],[137,4],[36,1],[15,1],[36,1],[12,0],[30,1],[112,4],[53,2],[84,2],[100,4],[22,0],[17,1],[46,2],[46,1],[29,1],[30,1],[52,1],[44,2],[81,3],[1,0],[117,4],[102,4],[90,2],[39,2],[24,1],[63,2],[45,2],[15,0],[93,4],[79,3],[53,2],[108,5],[120,4],[120,5],[75,4],[40,1],[36,2],[23,1],[61,2],[55,3],[18,1],[17,1],[14,1],[15,0],[52,3],[16,1],[15,0],[24,1],[18,0],[12,1],[21,0],[15,1],[163,5],[18,0],[23,1],[20,0],[35,1],[35,1],[1,0],[50,2]],[[81040,23078],[-48,-1],[-17,0],[-20,0],[-22,0],[-66,0],[-19,0],[-43,0],[-61,0],[-40,0],[-48,0],[-68,-1],[-5,0],[-18,0],[-34,0],[-89,1],[-29,-1],[-46,0],[-68,0],[-76,0],[-4,0],[-10,0],[-44,0],[-13,0],[-62,-1],[-29,0],[-12,0],[-80,0],[-45,0],[-68,0],[-127,0],[-40,0],[-21,0],[-19,0],[-42,-1],[-74,0],[-123,-1],[-1,0],[-35,0],[-41,-1],[-197,-1],[-67,0],[-103,-2],[-47,-1],[-24,0],[-14,-1],[-38,0],[-27,-1],[-21,0],[-6,0],[-104,0],[-33,0],[-103,0],[-2,-1],[-13,0],[-32,0],[-32,0],[-47,0],[-14,0],[-12,-1],[-17,0],[-33,0],[-28,-1],[-32,0],[-27,-1],[-67,0],[1,-150],[3,-85],[2,-101],[2,-53],[1,-45],[0,-18],[1,-56],[3,-121],[1,-41],[0,-2],[1,-24],[1,-25],[0,-32],[4,-135],[3,-110],[1,-18],[1,-39],[1,-52],[3,-79],[3,-95],[1,-45]],[[78226,21736],[-78,-1],[-33,0],[-15,0],[-4,0],[-13,0],[-12,0],[-13,0],[-9,0],[-3,0],[-3,0],[-13,0],[-51,-1],[-13,0],[-54,0],[-71,-1],[-89,-2],[-129,-1],[-8,0],[-13,0],[-95,-1],[-136,-2],[-93,-1],[-43,-1],[-19,0],[-27,0],[-38,0],[-111,-2],[-59,0],[-13,0],[-22,0],[-25,-1],[-22,0],[-19,0],[-14,0],[-14,-1],[-44,0],[-44,-1],[-207,-7],[-29,-1],[-89,-4],[-148,-5],[-214,-6],[-14,-1],[-15,0],[-144,-5],[-20,-1],[-14,0],[-19,-1],[-53,-1],[-39,-1],[-87,-3],[-91,-3],[-51,-1],[-21,-1],[-76,-3],[-23,0],[-4,0],[-22,-1],[-41,-1],[-2,0],[-87,0],[-3,0],[-69,1],[-54,0],[-29,-1],[-25,0],[-15,0],[-12,0],[-18,1],[-16,0],[-57,0],[-68,0],[-17,-1],[-31,0],[-80,0],[-33,1],[-87,1],[-14,0],[-22,0],[-23,0],[-117,1],[-29,0],[-37,0],[-17,0],[-12,0],[-30,0],[-59,0],[-118,1],[-13,0],[-218,0],[-45,0],[-202,-1],[-114,0],[-16,0],[-17,-1],[-28,0],[-70,0],[-93,-1],[-13,0],[-22,-1],[-96,-1],[-93,0],[-147,-2],[-38,0]],[[72937,21671],[-1,60],[-1,160],[-1,59],[0,114],[-1,47],[0,36],[0,2],[0,50],[-1,132],[0,18],[0,18],[-1,24],[0,1],[0,51],[0,53],[-1,43],[0,53],[0,18],[-1,85],[0,70],[-1,65],[0,50],[0,53],[-1,41],[0,55],[-1,20],[0,119],[0,27],[-1,75],[-1,140],[0,45],[-1,34],[0,28],[0,25],[-1,91],[1,75],[-2,148],[-1,71],[0,75],[-1,78],[0,18],[-1,49],[0,40],[0,115],[-1,64],[0,9],[-1,151],[0,60],[0,32],[0,77],[-1,52],[0,58],[0,161],[0,58],[0,66],[-1,98],[0,56],[0,39],[0,77],[-1,42],[0,39],[0,5],[0,17],[1,32],[0,30],[-1,52],[0,19],[0,26],[0,61],[-1,167],[0,52],[0,3],[0,52],[0,1],[0,115],[0,48],[0,171],[0,49],[-1,170],[1,46],[0,111],[0,7],[0,54],[1,50]],[[55789,24161],[0,-67],[0,-59],[0,-61],[0,-17],[0,-25],[0,-35],[0,-27],[0,-109],[0,-50],[0,-37],[0,-41],[-1,-50],[0,-69],[0,-23],[0,-54],[0,-41],[0,-46],[0,-18],[0,-1],[0,-26],[0,-19],[0,-15],[0,-46],[0,-7],[0,-55],[0,-56],[-1,-56],[0,-109],[0,-38],[0,-1],[-1,-71]],[[55786,22832],[-25,0],[-27,0],[-119,1],[-42,0],[-26,1],[-89,1],[-1,0],[-148,1],[-247,3],[-232,4],[-77,1],[-12,0],[-27,0],[-41,-1],[-75,-1],[-101,1],[-24,0],[-106,0],[5,-139],[0,-2],[-1,-16],[2,-62],[0,-108],[1,-63],[0,-27],[0,-21],[0,-205],[1,-27],[0,-209],[1,-156],[1,-63],[1,-141],[1,-77],[-51,-1],[-35,0],[-35,0],[-120,-2],[-241,-1],[-68,0],[-62,-1],[-80,0],[-31,0],[-241,0],[-59,0],[-94,-1],[-86,0],[-43,0],[-76,0],[-43,-1],[-77,-3],[-29,1],[-4,0],[-63,-1],[-15,0],[-13,0],[-38,-1],[-39,-1],[-39,0],[-65,0],[-174,0],[-239,-2],[-131,-2],[-168,-1],[-41,-1],[-50,-1],[-73,-1],[-42,-1],[-4,0],[-14,0],[-56,-1],[-139,-1],[-104,1],[-15,0],[-14,0],[-13,0],[-14,0],[-14,1],[-36,0],[-1,0],[-31,0],[-23,0],[-39,1],[-14,0],[-22,0],[-16,0],[-19,-1],[-19,2],[-15,0],[-25,0],[-12,0],[-14,1],[-16,0],[-59,0],[-62,1],[-58,-1],[-46,0],[-16,0],[-46,1],[-5,0],[-9,0],[-13,0],[-12,0],[-26,1],[-5,0],[-55,1],[-67,1],[-21,0],[-98,2],[-91,0],[-26,0],[-26,0],[-36,1],[-16,0],[-44,0],[-111,1],[-92,1]],[[67174,26780],[2,-214],[0,-58],[2,-88],[0,-34],[0,-39],[-1,-36],[0,-19],[0,-27],[1,-2],[1,-14],[-1,-16],[1,-61],[0,-27],[1,-20],[1,-110],[0,-54],[1,-29],[0,-28],[0,-43],[2,-95],[0,-30],[0,-54],[0,-51],[1,-73],[0,-17],[0,-77],[0,-59],[0,-106],[0,-53],[-1,-31],[0,-49],[-1,-19],[0,-11],[1,-109],[0,-22],[-1,-16],[0,-180],[0,-31],[0,-82],[0,-18],[0,-12],[-1,-78],[0,-65],[-1,-23],[0,-60],[0,-70],[-2,-174],[0,-47],[83,0],[36,-1],[4,-43],[0,-59],[0,-20],[-1,-91],[-1,-108],[0,-8],[-1,-47],[0,-54],[0,-39],[0,-71],[-1,-108],[-1,-110],[-2,-111],[-1,-111],[-1,-107],[0,-10],[-2,-102],[-1,-110],[-1,-52],[-1,-165],[0,-107],[-1,-56],[-1,-55],[0,-1],[0,-56],[0,-21],[0,-26],[0,-29],[-1,-87],[0,-161],[0,-58],[-1,-220],[-1,-97],[0,-26],[0,-52],[0,-44]],[[67283,21526],[-60,0],[-59,1],[-35,0],[-62,1],[-1,0],[-14,0],[-35,1],[-209,0],[-145,2],[-94,1],[-240,2],[-35,0],[-42,0],[-43,0],[-119,1],[-59,1],[-29,0],[-66,1],[-85,0],[-119,1],[-129,1],[-111,1],[-120,1],[-55,0],[-179,1],[-132,0],[-111,1],[-71,1],[-105,1],[-17,0],[-27,0],[-14,0],[-27,0],[-36,1],[-28,0],[-33,-1],[-124,1],[-98,0],[-13,0],[-114,-1],[-18,0],[-39,0],[-1,0],[-80,0],[-115,-1],[-58,-1],[-39,-1],[-15,1],[-48,-1],[-18,0],[-29,-1],[-38,0],[-59,-1],[-25,0],[-29,0],[-18,0],[-13,-1],[-16,0],[-81,0],[-49,-1],[-189,-2],[-101,0],[-6,0],[-7,0],[-25,0],[-14,0],[-75,0],[-18,0],[-43,0],[-49,0],[-37,1],[-14,0],[-18,0],[-13,0],[-2,0],[-44,1],[-127,0],[-2,0],[-12,0],[-99,-2],[-60,-1],[-66,0],[-55,-1],[-65,-1],[-16,0],[-17,0],[-14,0],[-64,0],[-2,0],[-91,-2],[-116,-1],[-34,0],[-21,-1],[-61,-1],[-24,0],[-19,-1],[-48,0],[-66,-1],[-103,-1],[-13,0]],[[61550,21525],[1,94],[0,16],[0,219],[0,51],[0,38],[0,2],[1,52],[0,20],[1,15],[-2,84],[2,176],[0,110],[0,1],[-1,36],[2,74],[-1,54],[1,55],[0,55],[0,30],[0,16],[0,63],[-1,65],[1,217],[0,22],[0,5],[0,59],[-1,77],[0,32],[0,28],[0,24],[0,50],[0,24],[0,66],[0,55],[0,17],[0,18],[0,21],[0,54],[-1,80],[0,29],[0,110],[1,110],[0,70],[0,30],[-1,130],[-43,0],[-96,1],[-99,1],[-21,0],[-100,0],[-20,0],[-55,0],[-16,0],[-16,0],[-21,0],[-118,1],[-60,0],[-58,0],[-13,0],[-21,-1],[-99,0],[-109,0],[-184,0],[-62,0],[-115,-1],[-91,0],[-25,1],[-60,-1],[-2,0],[-29,0],[-45,0],[-103,0],[-76,1],[-34,-1],[-15,0],[-12,0],[-72,0],[-25,0],[-14,0],[-53,0],[-75,0],[-114,0],[-101,-1],[-18,0],[-21,0],[-16,0],[-13,0],[-18,0],[-28,0],[-16,0],[-16,1],[-12,0],[-64,0],[-13,0],[-16,0],[-15,0],[-17,0],[-33,0],[-25,0],[-2,0],[-14,0],[-14,0],[-15,0],[-47,0],[-13,0],[-16,0],[-37,0],[-9,-1],[-6,-1],[-18,1],[-29,1],[-53,0],[-53,0],[-77,0]],[[72937,21671],[0,-60],[0,-50],[1,-49]],[[72938,21512],[-145,-1],[-36,0],[-44,0],[-14,-1],[-117,0],[-62,0],[-42,0],[-3,0],[-15,0],[-59,0],[-54,-1],[-57,0],[-67,0],[-52,0],[-21,0],[-70,-1],[-38,0],[-16,0],[-40,0],[-119,0],[-110,-1],[-13,0],[-59,0],[-105,1],[-28,-1],[-54,0],[-18,1],[-59,0],[-77,0],[-30,0],[-13,0],[-118,1],[-120,0],[-222,0],[-17,0],[-119,0],[-83,0],[-38,0],[-1,0],[-92,0],[-27,0],[-118,0],[-112,0],[-81,-1],[-21,1],[-97,0],[-23,0],[-54,0],[-65,0],[-56,0],[-63,1],[-16,0],[-43,0],[-65,0],[-256,1],[-17,0],[-1,0],[-35,0],[-17,0],[-9,1],[-7,0],[-23,0],[-30,0],[-8,0],[-30,0],[-27,0],[-18,0],[-54,0],[-82,1],[-7,0],[-92,0],[-36,0],[-81,1],[-120,1],[-81,1],[-158,1],[-238,2],[-239,1],[-53,0],[-136,2],[-50,0],[-99,0],[-139,2],[-224,2]],[[89470,22059],[4,-90],[7,-124],[4,-80],[2,-27],[4,-61],[0,-2],[2,-35],[3,-50],[3,-61],[6,-114],[1,-37],[6,-186],[6,-102],[3,-57],[3,-52],[5,-107],[5,-109],[6,-106],[2,-45],[3,-51],[0,-1],[4,-112],[1,-30],[3,-73],[1,-15],[1,-38],[3,-67],[2,-18],[1,-23],[2,-65],[0,-23],[3,-87],[1,-17],[1,-26],[0,-8],[0,-10],[1,-16],[1,-24],[1,-24],[1,-27],[0,-23],[2,-33],[0,-22],[2,-37],[0,-17],[3,-44],[-1,-18],[2,-20],[1,-19],[1,-37],[1,-8],[0,-10],[2,-59],[2,-50],[-14,-1],[2,-54],[2,-55],[0,-4],[2,-40],[3,-81],[4,-119],[3,-104],[3,-69],[1,-33],[1,-33],[3,-87],[3,-82],[6,-140],[3,-63],[7,-159],[2,-72],[1,-33],[3,-113]],[[89622,18120],[-62,-2],[-15,0],[-55,-1],[-44,-2],[-20,-1],[-36,-3],[-1,0],[-35,-5],[-44,-7],[-32,-5],[-30,-6],[-33,-5],[-15,-2],[-22,-4],[-23,-4],[-19,-2],[-46,-1],[-61,-2],[-58,-1],[-61,-1],[-8,0],[-40,-2],[-50,-2],[-13,0],[-34,-1],[-44,-1],[-19,-1],[-34,-1],[-27,0],[-26,-1],[-27,-1],[-19,0],[-34,-1],[-4,-1],[-15,0],[-13,-1],[-16,0],[-13,0],[-13,-1],[-35,-1],[-46,-2],[-35,-1],[-44,-2],[-31,-1],[-85,-2]],[[88185,18043],[-68,-2],[-51,0],[-63,-1],[-18,-1],[-24,0],[-16,-1],[-22,0],[-43,-1],[-27,-1],[-25,-1],[-21,0],[-31,-1],[-20,-1],[-63,-2],[-17,0],[-26,-2],[-23,-1],[-23,0],[-15,-1],[-58,-2],[-16,0],[-33,-1],[-16,-1],[-64,-3],[-164,-8],[-26,-1],[-44,-2],[-113,-3],[-32,-2],[-29,-1],[-14,0],[-136,-4],[-74,-3],[-23,0],[-51,-2],[-28,-1],[-35,-1],[-61,-2],[-55,-2],[-37,-2],[-82,-2],[-73,-2],[-50,-2],[-21,0],[-8,-1],[-49,-1],[-77,-3],[-20,0],[-27,-1],[-38,-2],[-48,-2],[-29,0],[-67,-2],[-33,-1],[-18,-1],[-44,-1],[-18,-1],[-15,0],[-16,-1],[-4,0],[-24,0],[-42,-1],[-22,1],[-36,-1],[-45,-2],[-18,0],[-51,-2],[-48,-1],[-90,-3],[-75,-2],[-18,0],[-71,-2],[-74,-2],[-86,-2],[-32,-1],[-16,-1],[-17,0],[-28,-1],[-21,0],[-32,-1],[-23,-1],[-12,0],[-34,-1],[-52,-1],[-59,-2],[-40,-1],[-34,-1],[-20,0],[-89,-3],[-30,0],[-20,-1],[-44,-1],[-42,-1],[-43,-1],[-48,-2],[-14,0],[-61,-2],[-87,-2],[-45,-1],[-19,0],[-38,-1],[-15,0],[-13,0],[-21,-1],[-34,-1]],[[83960,17918],[-2,18],[-1,24],[-2,38],[0,19],[-2,57],[-2,63],[-5,140],[0,16],[-3,77],[-5,142],[-4,126],[-1,24],[-1,15],[0,10],[-1,44],[-2,63],[0,23],[-4,117],[0,17],[-2,73],[-2,37],[0,47],[0,23],[-1,23],[-1,16],[0,45],[-1,35],[-1,30],[-2,77],[0,37],[-1,26],[0,3],[-2,55],[0,49],[-2,80],[-1,32],[-2,50],[-1,54],[-1,20],[0,39],[-1,25],[-1,54],[0,28],[-1,24],[0,25],[0,11],[-1,7],[0,22],[0,25],[-2,22],[-1,87],[-3,105],[0,2],[1,29],[-2,17],[0,16],[0,50],[-1,16],[0,33],[-1,22],[0,32],[-1,17],[0,56],[0,51],[0,22],[1,103],[1,27],[0,18],[-1,15],[1,144],[0,17],[-1,28],[0,18],[0,77],[0,51],[0,18],[0,12],[0,17],[0,19],[-1,26],[-1,107],[0,35],[0,5],[-1,26],[0,6],[0,18],[0,53],[-1,21],[0,1],[0,54],[0,7],[0,31],[-1,18],[0,17],[0,30],[0,22],[0,20],[0,29],[-2,110],[-1,97],[0,30],[0,91],[-1,98],[0,86],[-1,24],[0,57],[-1,54],[-1,94],[-1,125],[0,32],[-1,72],[-1,48],[0,68],[-1,81],[0,29],[-1,15],[0,3],[-1,23],[1,15],[0,20],[0,14],[0,9],[-1,43],[-1,3],[-1,29],[0,22],[-1,21]],[[61550,21525],[0,-28],[0,-18],[0,-91],[0,-53],[1,-44],[0,-26],[0,-19],[-1,-22],[0,-23],[-1,-33],[0,-37],[1,-79],[0,-2],[0,-112],[0,-16],[0,-28],[0,-5],[1,-43],[0,-32],[-1,-23],[0,-61],[1,-112],[0,-64],[0,-45],[0,-27],[0,-28],[0,-56],[0,-67],[1,-43],[0,-55],[0,-56],[1,-83],[0,-55],[1,-16],[0,-17],[0,-28],[1,-124],[0,-12],[0,-7],[0,-2],[0,-25],[1,-61],[0,-22],[0,-8],[0,-50],[-1,-34],[1,-36],[0,-18],[0,-20],[0,-15],[1,-30],[-2,-36],[1,-53],[1,-70],[1,-33],[-1,-29],[0,-28],[0,-53],[0,-58],[0,-56],[0,-29],[1,-77],[0,-58],[-1,-43],[1,-66],[0,-28],[0,-13],[1,-37],[0,-12],[0,-74],[0,-2],[-1,-29],[1,-32],[0,-20],[0,-29],[0,-15],[0,-31],[0,-17],[1,-34],[-1,-16],[0,-50],[1,-26],[0,-18],[0,-66],[0,-33],[1,-22],[0,-47],[0,-42],[0,-130],[0,-43],[1,-31],[-1,-43],[0,-14],[0,-3],[1,-30],[0,-56],[2,-191],[0,-28],[0,-25],[0,-27],[0,-4],[1,-55],[2,-98],[0,-37],[0,-27],[1,-72],[1,-40],[1,-55],[8,-220],[-1,-59],[-1,-97],[0,-22],[0,-17],[0,-23],[0,-1],[2,-82],[1,-42],[1,-42],[3,-25],[-1,-22],[-1,-17],[1,-31],[1,-41],[0,-24],[1,-63],[1,-49]],[[61585,16246],[-14,0],[-12,0],[-1,0],[-20,-1],[-71,-1],[-2,0],[-19,0],[-25,0],[-14,0],[-19,0],[-51,-1],[-45,0],[-50,-1],[-24,0],[-58,0],[-32,-1],[-16,0],[-21,0],[-99,0],[-15,-1],[-44,0],[-63,-1],[-36,1],[-80,-2],[-29,0],[-31,-1],[-15,0],[-15,0],[-27,-1],[-238,-1],[-52,0],[-15,-1],[-31,0],[-21,0],[-45,0],[-12,0],[-57,-1],[-60,0],[-28,0],[-19,0],[-16,0],[-22,-1],[-39,0],[-57,0],[-50,-1],[-19,0],[-32,2],[-13,0],[-17,0],[-13,0],[-15,0],[-6,0],[-15,-1],[-23,-1],[-29,0],[-87,-1],[-35,-1],[-32,0],[-14,0],[-15,-1],[-42,0],[-73,-1],[-86,0],[-30,-1],[-41,0],[-26,0],[-4,0],[-105,-1],[-70,-1],[-21,-1],[-36,0],[-33,-1],[-29,0],[-24,-1],[-8,0],[-15,0],[-52,-1],[-19,0],[-55,0]],[[58741,16220],[-90,0],[-41,0],[-77,1],[-30,0],[-37,-1],[-71,1],[-15,0],[-23,0],[-73,0],[-19,0],[-62,0],[-40,0],[-14,0],[-21,0],[-45,0],[-58,0],[-116,0],[-38,0],[-12,0],[-72,0],[-24,-1],[-14,0],[-198,1],[-63,-1],[-166,-1],[-13,0],[-27,0],[-24,0],[-13,0],[-24,0],[-2,0],[-12,0],[-42,1],[-2,0],[-51,0],[-25,0],[-81,1],[-85,0],[-75,0],[-35,0],[-84,0],[-58,0],[-26,0],[-35,0],[-57,0],[-62,0],[-110,0],[-112,0],[-15,0],[-119,0],[-120,0],[-128,-1]],[[55885,16220],[-1,56],[0,55],[-1,65],[-1,46],[1,36],[-1,20],[-1,77],[0,33],[0,54],[-1,112],[2,70],[-1,41],[0,56],[0,41],[1,129],[1,49],[2,108],[0,57],[1,72],[0,9],[1,31],[1,51],[1,32],[1,33],[0,42],[-1,37],[0,31],[0,36],[-1,20],[0,41],[0,19],[0,18],[0,59],[0,12],[0,5],[0,15],[0,28],[0,4],[0,18],[0,53],[0,20],[0,37],[0,24],[0,21],[0,21],[1,42],[1,55],[0,17],[0,20],[0,20],[-1,19],[0,23],[0,2],[0,36],[0,3],[0,2],[0,23],[0,6],[0,6],[0,10],[0,19],[-1,17],[-1,22],[-1,17],[-2,48],[-3,64],[-1,19],[-1,26],[-1,18],[-2,39],[-1,16],[-2,55],[-1,28],[-2,27],[-2,58],[-1,33],[-1,21],[-3,114],[0,21],[-1,26],[0,26],[-1,27],[-1,70],[-2,100],[-1,31],[-1,37],[-1,43],[-2,60],[-2,49],[-6,122],[-4,66],[-1,33],[-3,40],[-1,19],[-4,89],[-1,23],[-2,33],[0,16],[0,1],[-7,78],[-5,83],[-1,5],[-1,30],[-1,9],[-1,19],[2,109],[3,109],[0,30],[0,79],[0,25],[-2,86],[0,60],[0,50],[0,28],[-3,191],[-1,20],[0,90],[-1,54],[0,53],[-1,58],[-1,37],[0,22],[-1,21],[0,1],[-1,19],[0,23],[-1,46],[-1,25],[-1,82],[-1,106],[-2,114],[-1,74],[0,40],[-2,106],[-2,164],[-1,55],[0,28],[-3,192],[-1,63],[0,28],[-1,19],[0,56],[0,55],[-2,110],[0,23],[-1,31],[-1,55]],[[83960,17918],[1,-42],[0,-20],[-19,-3],[-51,-1],[-7,0],[-12,-1],[-23,0],[-33,-2],[-17,0],[-45,-1],[-18,0],[-1,0],[-19,0],[-55,-1],[-63,-2],[-61,-1],[-59,-3],[-15,0],[-19,-1],[-23,0],[-29,-1],[-13,-1],[-24,0],[-29,-1],[-17,0],[-63,-2],[-40,-2],[-77,-1],[-25,-1],[-18,0],[-78,-2],[-118,-3],[-36,-1],[-13,-1],[-14,0],[-28,-1],[-15,0],[-13,-1],[-92,-5],[-28,-1],[-99,-5],[-16,-1],[-43,-1],[-15,0],[-53,-1],[-14,0],[-108,-2],[-47,-1],[-13,0],[-13,0],[-13,-1],[-2,0],[-14,0],[-62,-1],[-14,-1],[-16,0],[-18,0],[-57,-1],[-144,-3],[-7,0],[-57,-2],[-15,0],[-19,0],[-23,-1],[-16,-1],[-22,-1],[-23,0],[-13,0],[-18,-1],[-18,0],[-18,0],[-15,-1],[-13,0],[-28,-1],[-27,0],[-28,0],[-173,-5],[-15,0],[-84,-2],[-21,-1],[-18,0],[-13,0],[-91,-2],[0,-9],[0,-8],[0,-44],[1,-33],[0,-31],[1,-35],[0,-38],[1,-6],[0,-18],[0,-15],[1,-22],[1,-21],[1,-67],[0,-19],[1,-21],[0,-16],[1,-23],[2,-16],[0,-5],[0,-10],[1,-19],[1,-18],[0,-7],[4,-74],[2,-25],[0,-1],[2,-36],[1,-35],[1,-32],[0,-25],[1,-53],[0,-17],[1,-19],[-1,-16],[1,-16],[0,-24],[1,-16],[0,-23],[1,-18],[0,-15],[1,-17],[0,-16],[1,-83],[0,-26],[3,-19],[0,-4],[0,-68],[0,-9],[1,-33],[1,-22],[0,-3],[1,-54],[1,-32]],[[81150,16448],[-50,-1],[-109,-2],[-19,0],[-43,-1],[-20,0],[-30,-1],[-24,0],[-27,-1],[-39,-1],[-12,0],[-69,-2],[-39,-1],[-86,-2],[-19,0],[-16,0],[-27,-1],[-15,0],[-19,-1],[-21,0],[-9,0],[-4,0],[-24,-1],[-44,-1],[-45,-1],[-54,-1],[-46,-1],[-61,-1],[-15,0],[-29,-1],[-16,0],[-25,-1],[-34,-1],[-13,0],[-102,-3],[-120,-3],[-73,-2],[-35,-1],[-51,1],[-62,0],[-35,0],[-4,0],[-88,1],[-36,0],[-1,0],[-43,0],[-34,-1],[-12,0],[-18,2],[-19,0],[-3,1],[-14,0],[-17,0],[-22,0],[-24,0],[-22,0],[-21,0],[-17,0],[-17,0],[-31,0],[-52,0],[-51,1],[-29,1],[-40,0],[-64,1],[-13,0],[-43,1],[-73,0],[-31,-1],[-5,0],[-31,-1],[-14,0],[-39,-2],[-18,0],[-13,0],[-71,-2],[-47,-2],[-37,-1],[-11,0],[-13,-1],[-24,0],[-102,-3]],[[78305,16411],[-9,220],[-2,67],[0,11],[-11,258],[0,1],[-5,105],[-5,110],[-1,17],[-5,93],[-1,57],[-1,23],[-2,30],[-3,75],[-3,63],[-1,29],[-1,29],[-1,16],[-1,22],[-4,99],[-1,45],[-1,56],[-3,84],[0,2],[-1,38],[-1,77],[-2,34],[-2,110],[-1,45],[-2,68],[-1,71],[-2,33],[-2,90],[-1,26],[-2,64],[0,6],[-1,28],[-2,94],[-1,19],[-1,32],[-2,81],[-2,61],[0,26],[0,50],[-1,20],[0,30],[-1,44],[13,0],[-1,39],[1,39],[0,25],[0,16],[0,2],[0,20],[0,27],[0,37],[1,16],[0,24],[0,53],[0,30],[1,46],[0,17],[0,25],[0,22],[0,23],[0,7],[0,30],[0,28],[0,33],[1,19],[0,25],[0,40],[0,19],[0,6],[1,21],[0,115],[1,56],[0,22],[0,110],[0,20],[0,20],[0,47],[0,27],[0,53],[1,66],[0,106],[0,141],[-1,84],[-3,142],[0,47],[0,33],[-1,63],[0,34],[0,125],[-1,118],[0,86],[0,18],[0,33],[-1,37],[0,47],[0,83],[0,16],[-1,124],[-1,79],[0,25]],[[55885,16220],[-118,-1],[-120,-2],[-87,-1],[-151,-2],[-93,-1],[-69,-1],[-44,0],[-28,0],[-103,-1],[-94,0],[-43,-1],[-59,0],[-97,0],[-3,0],[-79,0],[-118,1],[-128,1],[-55,3],[-14,-1],[-36,1],[-33,0],[-99,3],[-237,6],[-238,5],[-34,0],[-16,0],[-25,0],[-23,1],[-14,0],[-118,1],[-27,0],[-17,0],[-26,0],[-57,0],[-113,0],[-2,0],[-11,0],[-30,0],[-75,0],[-17,0],[-90,0],[-120,1],[-88,-1],[-14,1],[-9,0],[-35,-1],[-36,0],[-32,0],[-38,0],[-36,-1],[-14,0],[-49,0],[-12,0],[-31,0],[-14,0],[-16,0],[-16,0],[-15,-1],[-4,0],[-9,0],[-12,0],[-43,0],[-70,-1],[-31,0],[-19,0],[-1,0],[-25,-1],[-29,0],[-4,0],[-9,0],[-31,0],[-13,0],[-14,0],[-14,0],[-32,0],[-1,0],[-16,-1],[-35,0],[-48,0],[-35,0],[-59,-1],[-34,0],[-26,-1],[-33,0],[-39,0],[-26,0],[-21,-1],[-73,0],[-14,0],[-38,0],[-31,-1],[-17,0],[-14,0],[-18,0],[-14,0],[-12,0],[-13,0],[-17,0],[-19,0],[-14,0],[-26,0],[-13,0],[-29,0],[-51,-1],[-13,0],[-55,-1],[-29,-1],[-32,0],[-17,-1],[-39,0],[-30,0],[-28,-1],[-16,0],[-14,0],[-15,0],[-23,-1],[-27,0],[-32,-1],[-21,0],[-21,0],[-12,0],[-16,-2],[-39,1],[-13,-2],[-13,-1],[-17,1],[-21,-1],[-18,0],[-12,0]],[[78305,16411],[-78,-2],[-39,-1],[-121,-4],[-47,-1],[-72,-2],[-67,-2],[-52,-1],[-117,-4],[-59,-1],[-109,-3],[-71,-2],[-38,-1],[-47,-1],[-17,0],[-9,-1],[-86,-1],[-39,-1],[-40,0],[-71,-2],[-19,0],[-149,-3],[-34,-1],[-29,-1],[-60,-1],[-26,0],[-30,-1],[-43,-1],[-47,-1],[-33,-1],[-61,-2],[-52,-1],[-17,-1],[-30,0],[-79,-2],[-46,-1],[-70,-1],[-74,-2],[-41,0],[-64,-1],[-62,-1],[-25,-1],[-20,0],[-7,0],[-30,-1],[-36,-1],[-77,-1],[-15,0],[-27,-1],[-49,0],[-22,-1],[-28,0],[-20,0],[-167,-4],[-73,-1]],[[75464,16348],[-176,-2],[-119,0],[-35,-2],[-18,0],[-13,0],[-105,-2],[-65,1],[-52,0],[-66,-1],[-35,0],[-22,0],[-116,-1],[-1,0],[-85,-1],[-65,-1],[-64,1],[-4,0],[-97,1],[-13,0],[-26,0],[-113,-1],[-50,0],[-37,-1],[-67,0],[-56,0],[-49,0],[-50,0],[-17,0],[-111,0],[-74,-1],[-52,0],[-51,0],[-64,-1],[-55,0],[-36,0],[-25,0],[-54,0],[-45,-1],[-20,0],[-12,0],[-53,0],[-17,0],[-37,0],[-29,-1],[-49,0],[-42,0],[-34,0]],[[72988,16335],[-1,36],[0,30],[0,31],[-1,41],[0,75],[0,32],[0,51],[0,34],[-1,22],[0,48],[0,2],[0,33],[-1,134],[-1,11],[0,6],[0,70],[-1,24],[0,75],[0,36],[0,46],[0,4],[-1,36],[0,23],[-1,110],[0,59],[-1,22],[0,79],[0,33],[0,10],[0,5],[0,84],[0,34],[-1,105],[0,21],[0,20],[0,35],[-1,44],[0,18],[0,3],[-1,19],[0,19],[-1,25],[0,19],[0,46],[0,2],[-1,24],[0,39],[-1,43],[0,16],[0,22],[-1,100],[-1,47],[-1,63],[-1,38],[0,43],[0,27],[-1,70],[-1,65],[-1,30],[0,25],[-1,31],[0,37],[-1,71],[-1,36],[0,22],[0,29],[0,1],[0,122],[-1,45],[-1,56],[-2,118],[-1,45],[-2,112],[-1,65],[-2,125],[0,31],[0,52],[0,11],[-1,19],[0,11],[0,5],[-1,26],[0,27],[-1,22],[0,19],[0,16],[0,16],[-1,28],[0,31],[-1,55],[-1,54],[0,25],[-2,74],[-1,56],[-1,114],[-1,57],[0,37],[0,65],[0,110],[0,57],[0,47],[-1,59],[0,55],[0,58],[-1,51],[0,20],[0,33],[0,58],[0,31],[0,4],[0,23],[0,104],[-1,57],[0,59],[-1,162],[0,59]],[[67283,21526],[0,-97],[0,-47],[0,-62],[0,-55],[0,-23],[-1,-34],[0,-17],[0,-19],[-1,-30],[0,-19],[1,-24],[-1,-100],[0,-49],[0,-17],[0,-55],[0,-17],[-1,-37],[0,-21],[0,-16],[0,-18],[0,-21],[-1,-34],[0,-30],[0,-74],[0,-5],[0,-14],[-1,-23],[1,-34],[-1,-30],[0,-23],[0,-16],[0,-26],[0,-28],[0,-27],[0,-52],[0,-57],[0,-39],[-2,-72],[-1,-185],[0,-60],[0,-50],[3,-105],[0,-13],[0,-23],[-3,-81],[1,-86],[0,-21],[0,-40],[0,-15],[0,-3],[0,-31],[0,-58],[0,-75],[0,-20],[0,-35],[-1,-166],[0,-100],[-1,-121],[0,-72],[0,-22],[1,-109],[1,-121],[0,-32],[1,-66],[0,-20],[0,-158],[0,-40],[0,-27],[1,-196],[1,-121],[0,-55],[0,-48],[0,-59],[0,-51],[0,-112],[1,-21],[0,-22],[0,-60],[0,-6],[0,-35],[0,-57],[0,-16],[0,-54],[0,-33],[1,-131],[0,-17],[0,-32],[0,-16],[0,-46],[-1,-54],[1,-55],[0,-57],[0,-102],[0,-19],[0,-23],[0,-6],[0,-11],[0,-33],[0,-19],[0,-138],[-1,-28],[1,-76],[0,-16],[0,-15],[0,-22],[0,-33],[0,-28],[0,-31]],[[67281,16255],[-236,0],[-189,0],[-19,0],[-29,0],[-41,0],[-81,0],[-42,0],[-19,0],[-56,0],[-72,0],[-14,0],[-36,0],[-119,0],[-177,0],[-53,0],[-64,0],[-129,0],[-5,0],[-50,0],[-142,1],[-95,0],[-237,1],[-196,1],[-40,-1],[-98,1],[-135,0],[-203,0],[-12,0],[-24,0],[-84,1],[-43,0],[-33,0],[-84,1],[-2,0]],[[64422,16260],[-112,-2],[-81,0],[-44,-1],[-165,-1],[-40,-1],[-33,0],[-14,0],[-2,0],[-101,-1],[-14,0],[-12,-1],[-39,0],[-27,0],[-5,0],[-106,-1],[-6,0],[-49,0],[-39,-1],[-14,0],[-49,1],[-119,-3],[-114,-2],[-137,-1],[-107,-2],[-67,-1],[-169,-1],[-101,1],[-135,-1],[-100,0],[-20,0],[-117,1],[-237,1],[-179,1],[-60,0],[-26,0],[-155,1],[-16,0],[-26,0]],[[72988,16335],[0,-88],[-14,0],[-14,0],[-17,0],[-17,0],[-16,0],[-15,1],[-5,0],[-20,0],[-17,-1],[-16,0],[-51,-1],[-38,0],[-14,0],[-44,0],[-92,-1],[-59,0],[-28,0],[-119,-1],[-38,-1],[-53,0],[-4,0],[-24,0],[-101,-1],[-17,0],[-48,-1],[-18,0],[-23,0],[-13,0],[-19,0],[-53,0],[-29,0],[-17,0],[-13,0],[-15,1],[-111,0],[-120,0],[-32,-1],[-42,0],[-60,-1],[-59,0],[-18,0],[-16,1],[-89,0],[-54,1],[-63,0],[-21,0],[-34,1],[-1,0],[-78,0],[-42,-1],[-23,0],[-96,1],[-16,0],[-27,0],[-12,-1],[-23,0],[-44,0],[-16,1],[-26,0],[-22,0],[-16,0],[-25,0],[-14,0],[-35,0],[-50,1],[-39,0],[-22,0],[-15,0],[-26,0],[-89,0],[-76,-1],[-27,1],[-20,0],[-36,0],[-83,1],[-21,0],[-63,1]],[[70105,16246],[-31,0],[-18,0],[-128,0],[-15,0],[-46,0],[-45,0],[-136,1],[-54,0],[-66,-1],[-150,0],[-21,0],[-86,0],[-3,0],[-18,0],[-79,0],[-13,0],[-40,0],[-24,0],[-28,0],[-20,0],[-29,1],[-22,-1],[-12,0],[-41,0],[-59,1],[-76,0],[-4,1],[-52,1],[-94,2],[-56,1],[-15,0],[-13,0],[-15,0],[-20,0],[-58,0],[-15,0],[-13,0],[-17,0],[-17,0],[-15,0],[-111,1],[-26,0],[-86,-1],[-52,0],[-38,0],[-1,0],[-29,0],[-12,1],[-106,0],[-30,0],[-169,0],[-35,0],[-121,1],[-117,0],[-17,0],[-156,1],[-23,0],[-31,0]],[[90986,11421],[-30,0],[-14,0],[-20,-1],[-23,0],[-19,0],[-19,0],[-15,0],[-24,2],[-25,8],[-9,-10],[-16,0],[-53,-1],[-13,0],[-14,0],[-18,0],[-24,0],[-19,0],[-20,-1],[-20,0],[-26,0],[-13,0],[-14,0],[-12,0],[-13,0],[-20,0],[-16,0],[-23,-1],[-25,0],[-7,0],[-6,0],[-18,0],[-21,0],[-20,-1],[-27,0],[-17,0],[-39,-1],[-13,0],[-21,-1],[-19,-2],[-9,-2],[-4,-1],[-13,1],[-15,1],[-15,-1],[-22,0],[-14,-1],[-12,0],[-14,0],[-32,1],[-25,-1],[-14,0],[-21,-1],[-16,0],[-14,0],[-19,-1],[-17,0],[-21,-1],[-30,0],[-31,-1],[-13,0],[-16,-1],[-19,0],[-7,-1],[-6,0],[-14,-1],[-17,-1],[-13,-1],[-14,0],[-13,-1],[-15,0],[-23,-1],[-14,0],[-24,-1],[-32,-1],[-25,-1],[-15,0],[-15,-1],[-14,0],[-17,-1],[-13,0],[-14,0],[-15,-1],[-15,0],[-14,-1],[-15,0],[-15,-1],[-24,0],[-7,0],[-10,-1],[-2,0],[-13,0],[-18,-1],[-12,0],[-2,-1],[-15,0],[-2,-1],[-18,-1],[-21,-1],[-25,-1],[-22,-1],[-16,0],[-16,-1],[-3,0],[-24,-1],[-20,0],[-13,-1],[-12,0],[-14,-1],[-15,0],[-15,-1],[-14,0],[-15,0],[-14,-1],[-16,0],[-14,-1],[-17,0],[-28,0],[-2,0],[-36,-1],[-33,-1],[-17,-1],[-14,0],[-6,-1],[-7,0],[-13,0],[-13,-1],[-14,0],[-17,-1],[-14,0],[-13,0],[-14,-1],[-19,0],[-14,-1],[-23,-1],[-13,0],[-15,0],[-14,-1],[-13,0],[-13,-1],[-13,0],[-13,0],[-13,0],[-15,0],[-17,-1],[-12,0],[-14,0],[-14,0],[-15,0],[-15,-1],[-2,0],[-12,0],[-15,0],[-13,0],[-14,0],[-25,1]],[[88420,11363],[-1,17],[0,20],[-1,24],[-1,16],[0,18],[-1,19],[0,17],[-1,16],[0,18],[-1,21],[0,24],[-2,26],[-1,25],[0,16],[-1,19],[-1,17],[-1,18],[0,27],[-2,84],[0,17],[-1,15],[-1,27],[-1,32],[-1,25],[0,2],[0,20],[-1,26],[-1,22],[-1,35],[-1,26],[0,26],[-1,28],[-1,20],[0,16],[-1,24],[0,27],[-1,20],[-1,28],[-2,65],[-1,17],[0,18],[-1,19],[-1,22],[-1,28],[0,27],[-1,25],[-1,15],[0,18],[-1,16],[-1,17],[0,17],[-2,46],[0,21],[-1,20],[-1,29],[-1,28],[-5,71],[-1,19],[-2,23],[-2,28],[-2,24],[-2,28],[-1,28],[-2,29],[0,19],[-1,17],[0,18],[-1,20],[0,20],[-1,17],[-1,26],[0,3],[-1,15],[-1,38],[-2,59],[-1,47],[-1,21],[-1,41],[-1,20],[-1,30],[-1,26],[-1,57],[-1,17],[-1,31],[-1,20],[-1,35],[-1,34],[-2,48],[-1,25],[-1,22],[-1,33],[-2,29],[0,16],[-2,46],[-1,35],[-1,28],[-1,20],[-1,20],[-3,87],[-1,36],[-1,27],[-1,18],[0,3],[0,16],[-1,16],[-1,23],[-1,15],[0,4],[0,17],[-1,27],[-1,29],[-3,52],[0,23],[-2,34],[0,21],[-2,42],[-2,46],[-1,27],[-1,28],[-1,28],[-2,58],[-1,24],[0,17],[-2,37],[-1,16],[0,43],[-1,11],[0,6],[0,35],[0,2],[-2,22],[-2,21],[0,18],[0,16],[-1,26],[-1,25],[-1,4],[-1,25],[0,17],[-1,31],[-1,34],[-1,22],[-3,68],[-1,19],[0,27],[-1,19],[-1,37],[-1,59],[-1,19],[-1,21],[-1,16],[0,16],[-1,23],[0,4],[-1,29],[-2,51],[-2,55],[0,16],[0,3],[-3,93],[-1,39],[0,1],[-1,16],[0,1],[-2,52],[-1,44],[-2,48],[-2,24],[-1,20],[-3,121],[-2,63],[-2,53],[-3,68],[-1,44],[-3,66],[-2,34],[-2,53],[-1,31],[-1,43],[-1,30],[-1,39],[-1,26],[-1,36],[-1,16],[-2,59],[-3,65],[-2,36],[-2,53],[-1,27],[0,16],[-2,69],[-1,18],[0,19],[1,19],[-3,22],[1,17],[-2,57],[0,22],[-4,87],[-1,40],[-2,65],[-2,66],[-1,51],[-3,70],[0,19],[-2,23],[-1,35],[-2,71],[-3,48],[-1,27],[0,52],[0,18],[-1,19],[0,6],[-1,50],[-1,20],[0,19],[-2,71],[-4,98],[-1,25]],[[89622,18120],[89,2],[16,1],[188,4],[19,0],[33,1],[29,-1],[43,1],[48,1],[242,4],[45,1],[15,1],[4,0],[23,1],[149,1],[151,2],[4,0],[61,1],[55,0],[93,1],[115,2],[72,0],[237,1],[20,0],[110,1],[24,1],[146,2],[21,0],[58,1],[109,1],[84,2],[47,1],[13,0],[92,3],[14,0],[14,1],[20,1],[15,0],[20,1],[13,1],[14,1],[15,1],[11,0],[3,0],[15,1],[21,0],[13,1],[14,0],[19,1],[17,1],[18,1],[11,0],[2,0],[44,2],[24,1],[23,0],[25,2],[86,4],[23,1],[2,-23],[4,-81],[2,-47],[2,-21],[1,-21],[1,-21],[1,-25],[2,-33],[1,-24],[1,-18],[1,-17],[1,-26],[2,-42],[0,-1],[2,-42],[2,-30],[2,-34],[0,-4],[3,-70],[1,-15],[0,-1],[1,-29],[1,-28],[0,-16],[3,-89],[1,-26],[1,-22],[1,-23],[2,-53],[9,-198],[0,-6],[3,-65],[1,-42],[2,-70],[3,-68],[3,-83],[3,-92],[1,-11],[0,-18],[2,-30],[0,-20],[1,-29],[3,-68],[0,-18],[3,-76],[5,-91],[5,-133],[3,-92],[1,-18],[2,-52],[3,-71],[4,-130],[2,-65],[1,-19],[1,-27],[0,-6],[1,-35],[3,-87],[3,-71],[4,-112],[1,-30],[3,-82],[78,-31],[22,-8],[15,-8],[-12,-14],[-17,-16],[-14,-8],[87,-89],[14,-14],[13,-13],[13,-14],[24,-24],[15,-15],[8,-8],[2,-3],[33,-33]],[[88420,11363],[-14,0],[-16,-1],[-14,0],[-27,-1],[-12,0],[-22,-1],[-12,-1],[-22,0],[-1,0],[-13,-1],[-16,0],[-13,1],[-13,1],[-13,1],[-14,1],[-13,1],[-14,-1],[-27,0],[-13,-1],[-16,0],[-15,-1],[-23,-2],[-13,0],[-55,-2],[-25,0],[-23,0],[-19,-1],[-26,-1],[-3,0],[-12,0],[-15,-1],[-33,-1],[-16,0],[-19,0],[-26,-1],[-13,0],[-20,-1],[-14,0],[-12,0],[-14,-1],[-17,0],[-15,-1],[-13,0],[-13,0],[-18,-1],[-18,0],[-19,-1],[-19,0],[-13,-1],[-15,0],[-14,-1],[-14,0],[-13,0],[-14,-1],[-13,0],[-13,-1],[-14,0],[-13,0],[-12,0],[-13,-1],[-13,0],[-13,-1],[-13,0],[-13,-1],[-13,0],[-13,-1],[-14,0],[-13,0],[-13,-1],[-13,0],[-24,-1],[-28,0],[-15,-1],[-15,0],[-15,0],[-14,-1],[-16,0],[-13,-1],[-16,0],[-14,0],[-13,-1],[-15,0],[-16,0],[-22,-1],[-13,0],[-14,-1],[-19,-1],[-15,-2],[-17,0],[-11,0],[-2,0],[-13,-1],[-12,0],[-12,-1],[-13,0],[-13,-1],[-14,0],[-15,-1],[-13,0],[-15,0],[-14,-1],[-14,0],[-17,-1],[-28,0],[-4,-1],[-14,0],[-14,0],[-15,-1],[-13,0],[-16,-1],[-13,0],[-19,0],[-42,-2],[-12,0],[-15,0],[-17,-1],[-12,0],[-15,-1],[-15,0],[-15,0],[-14,-1],[-13,0],[-16,-1],[-16,0],[-15,-1],[-13,0],[-15,-1],[-15,0],[-60,-2],[-21,-1],[-22,-1],[-26,-1],[-21,0],[-30,-1],[-15,-1],[-24,0],[-20,-1],[-38,-2],[-28,-1],[-22,0],[-11,-1],[-8,0],[-20,-1],[-12,0],[-31,-1],[-11,0],[-21,0],[-15,-1],[-12,0],[-13,0],[-15,-1],[-14,0],[-14,0],[-18,-1],[-12,0],[-15,-1],[-16,0],[-12,-1],[-14,0],[-13,0],[-13,-1],[-16,0],[-16,-1],[-17,-1],[-16,0],[-14,0],[-14,-1],[-15,0],[-14,0],[-14,-1],[-13,0],[-15,0],[-15,-1],[-26,-1],[-11,0],[-1,0],[-14,0],[-36,-1],[-14,-1],[-20,0],[-12,-1],[-12,0],[-46,-1],[-30,-1],[-20,-1],[-14,0],[-13,-1],[-14,0],[-25,-1],[-14,0],[-18,-1],[-29,-1],[-15,0],[-31,-1],[-41,-2],[-20,0],[-39,-2],[-13,0],[-17,-1],[-13,0],[-16,-1],[-13,0],[-13,0],[-16,-1],[-41,-2],[-35,-1],[-75,-3],[-14,0],[-20,-1],[-9,0],[-32,-1],[-15,-1],[-31,-1],[-13,0],[-14,0],[-16,-1],[-18,-1],[-39,-1],[-19,0],[-34,-2],[-19,0],[-39,-2],[-65,-1],[-19,-1],[-21,-1],[-44,-1],[-15,-1],[-18,-1],[-20,0],[-23,-1],[-14,-1],[-13,0],[-14,-1],[-12,-1],[-17,0],[-16,-1],[-14,-1],[-18,0],[-14,-1],[-13,0],[-21,-1],[-13,-1],[-14,-1],[-12,0],[-27,-1],[-44,-2],[-18,0],[-17,-1],[-18,-1],[-40,-1],[-20,-1],[-34,-1],[-15,-1],[-15,0],[-16,-1],[-16,-1],[-20,0],[-24,-1],[-19,-1],[-12,-1],[-10,0],[-3,0],[-12,-1],[-21,0],[-2,0],[-14,-1],[-14,0],[-15,-1],[-16,0],[-25,-1],[-12,-1],[-21,0],[-15,-1],[-38,-2],[-14,0],[-30,-2],[-20,0],[-26,-1],[-14,-1],[-23,-1],[-22,-1],[-15,0],[-21,-1],[-20,-1],[-13,-1],[-16,0],[-19,-1],[-22,-1],[-77,-3],[-54,-2],[-49,-2],[-24,-1],[-20,-1],[-70,-3],[-112,-5],[-36,-1]],[[82772,11182],[-21,-1],[-21,-1],[-24,-1],[-48,-2],[-64,-3],[-15,-1],[-41,-1],[-17,-1],[-33,-1],[-33,-2],[-22,-1],[-13,0],[-35,-2],[-14,0],[-16,-1],[-34,-2],[-17,0],[-21,-1],[-25,-1],[-38,-2],[-13,-1],[-32,-1],[-12,-1],[-13,0],[-20,-1],[-22,-1],[-22,-1],[-13,-1],[-16,0],[-26,-2],[-17,-1],[-3,0],[-17,-1],[-13,0],[-15,-1],[-13,0],[-26,-2],[-20,0],[-16,-1],[-14,-1],[-19,-1],[-29,-1],[-15,-1],[-13,0],[-17,-1],[-14,-1],[-16,0],[-21,-1],[-20,-1],[-14,-1],[-21,-1],[-13,-1],[-21,0],[-15,-1],[-13,-1],[-14,0],[-15,-1],[-13,-1],[-20,0],[-12,-1],[-13,-1],[-19,-1],[-13,0],[-12,-1],[-13,0],[-12,-1],[-22,0],[-13,-1],[-13,-1]],[[81412,11121],[-1,21],[-1,20],[-2,23],[0,18],[-1,16],[-1,16],[-1,22],[-1,19],[-1,16],[-1,19],[-1,19],[-1,15],[-1,21],[0,16],[-2,16],[-1,16],[0,20],[-1,16],[-1,15],[-1,17],[-1,18],[-1,30],[-1,17],[-1,20],[-5,94],[-1,21],[-3,45],[-1,24],[-2,24],[0,1],[-1,18],[0,16],[-2,20],[-1,23],[-1,20],[-1,21],[-1,19],[-1,22],[-2,25],[-1,20],[-1,20],[-1,20],[-1,21],[-1,17],[-1,15],[-1,20],[-1,19],[-1,17],[-1,20],[-2,21],[-1,18],[0,16],[-1,17],[-1,18],[-1,19],[-5,75],[-1,22],[-1,21],[-1,18],[-2,30],[0,3],[-1,18],[-5,79],[-2,48],[-1,22],[-1,46],[-1,22],[-5,30],[-1,16],[0,16],[-2,17],[-1,19],[-1,16],[-1,19],[-6,15],[0,17],[4,15],[-1,16],[-1,19],[-1,16],[-2,28],[-2,28],[-2,22],[-3,40],[-1,16],[-1,16],[0,20],[-2,19],[-1,17],[-1,16],[-1,21],[-3,53],[-1,20],[-3,42],[-4,81],[-2,23],[-1,27],[-1,18],[-1,9],[-1,13],[0,9],[-1,6],[0,2],[-2,38],[-2,32],[-2,41],[-2,32],[-3,49],[-1,27],[-2,29],[-1,16],[-1,16],[-1,23],[-2,28],[-2,80],[0,21],[-3,47],[-2,28],[-2,45],[-1,16],[-2,27],[-1,17],[-2,24],[0,16],[-1,21],[-1,16],[-2,27],[-1,18],[-1,35],[-1,5],[0,13],[-2,26],[-2,29],[-1,16],[0,18],[-1,16],[-1,14],[0,2],[-1,24],[-7,116],[0,22],[-1,20],[-1,23],[-1,17],[-1,15],[-1,20],[-1,17],[-1,15],[-1,17],[0,18],[-1,17],[-1,15],[-1,16],[-1,22],[-1,16],[-1,16],[0,16],[-1,20],[-1,20],[-1,23],[-1,15],[-1,22],[-2,26],[-1,26],[-2,36],[-1,44],[-1,19],[-2,39],[-1,21],[1,22],[-2,22],[-1,18],[-2,42],[-1,27],[-1,17],[0,15],[-2,26],[-1,37],[-1,19],[-2,62],[-1,22],[-3,51],[0,17],[-1,35],[-2,34],[-2,27],[0,17],[0,18],[-1,20],[0,23],[-1,18],[-1,26],[-1,19],[-1,46],[-1,19],[-1,36],[-1,16],[-2,95],[-2,55],[-2,51],[-1,58],[-1,43],[-1,33],[-1,35],[-1,18],[-1,37],[-2,54],[0,25],[-2,93]],[[81412,11121],[-52,-2],[-25,-1],[-66,-3],[-16,-1],[-22,-1],[-43,-2],[-30,-1],[-31,-1],[-83,-4],[-25,-1],[-18,-1],[-30,-1],[-61,-3],[-16,0],[-21,0],[-33,-2],[-20,-1],[-24,-1],[-17,0],[-13,-1],[-74,-3],[-83,-5],[-14,0],[-13,-1],[-16,0],[-60,-3],[-40,-1],[-15,0],[-4,0],[-19,0],[-43,3],[-138,8],[-3,0],[-15,1],[-14,0],[-21,0],[-10,0],[-2,0],[-34,-3],[-26,-1],[-37,-1],[-3,0],[-31,-2],[-15,0],[-55,-2],[-45,-2],[-26,-1],[-14,0],[-71,-3],[-186,-7],[-80,-2],[-197,-7],[-119,-3],[-244,-9],[-13,0],[-12,-1],[-32,-1],[-68,-3],[-77,-4],[-18,0],[-18,-1],[-13,-1],[-19,0],[-19,-1],[-76,-2],[-76,-3],[-32,-2],[-19,-1],[-13,1],[-15,-1],[-19,0],[-9,-1],[-10,0],[-36,-2],[-1,0],[-17,0],[-53,-3],[-35,-1],[-13,-1],[-16,0],[-13,0],[-15,0],[-34,-1],[-85,-3],[-51,-2],[-19,-1],[-15,0],[-41,0],[-23,0],[-17,1],[-14,2],[-15,-2],[-67,0],[-55,0],[-28,0],[-55,-1],[-74,-1],[-48,-1],[-41,0],[-37,0],[-56,0],[-31,0],[-13,0],[-23,0],[-16,0],[-13,0],[-1,0],[-15,0],[-27,-1],[-40,0],[-25,0],[-24,0],[-13,0],[-20,-1],[-20,0],[-13,0],[-36,0],[-48,1],[-56,0],[-17,0],[-145,0],[-159,1],[-71,1],[-33,1],[-19,0],[-21,1],[-17,0],[-19,0],[-20,0],[-14,0],[-20,-1],[-19,1],[-17,0],[-13,1],[-19,0],[-25,0],[-21,1],[-31,0],[-31,1],[-17,0],[-21,0],[-21,1],[-22,0],[-15,0],[-13,-1],[-21,0],[-14,0],[-48,1],[-84,0],[-17,0],[-19,0],[-35,0],[-19,1],[-13,0],[-26,0],[-32,0],[-19,0],[-56,0]],[[75790,11021],[-60,0],[-25,0],[-30,1]],[[75675,11022],[0,55],[-1,17],[1,70],[0,24],[0,42],[0,15],[0,33],[0,18],[0,54],[0,86],[-1,20],[0,8],[0,17],[0,38],[0,28],[0,135],[0,159],[0,16],[0,48],[0,28],[0,16],[0,29],[-1,39],[1,49],[1,125],[0,1],[1,24],[0,19],[0,55],[0,23],[0,23],[-1,31],[-1,28],[-2,29],[0,19],[-2,36],[-1,50],[-1,37],[-1,36],[-2,145],[-1,46],[-1,29],[-1,24],[1,17],[-1,39],[-2,17],[-1,22],[-1,29],[-1,16],[-4,91],[-4,92],[-1,21],[-2,31],[-1,31],[-2,30],[0,17],[-2,34],[-3,60],[-1,21],[-2,47],[-1,32],[-3,55],[-1,38],[-3,48],[-1,17],[-1,18],[-2,39],[-4,55],[0,2],[-1,26],[-3,66],[0,19],[-13,231],[-2,27],[-1,22],[0,7],[-1,12],[-2,42],[-3,59],[-3,54],[-1,16],[-1,15],[-1,32],[-2,32],[-1,20],[0,3],[-3,58],[-2,47],[0,1],[-3,51],[-1,18],[-1,34],[-1,15],[-3,48],[-3,53],[-3,67],[0,33],[-2,32],[-1,28],[-1,16],[0,13],[-4,52],[-3,59],[-2,54],[-2,41],[-2,55],[-4,67],[-2,29],[-2,32],[-2,27],[-1,22],[-2,20],[-9,138],[-3,48],[-4,63],[-1,18],[-6,78],[-1,15],[-3,59],[-2,21],[-6,72],[-2,24],[-4,53],[-3,39],[-8,87],[-1,26],[-11,125],[-6,62]],[[75675,11022],[-57,0],[-66,1],[-23,0],[-23,0],[-76,1],[-110,0],[-33,0],[-2,0],[-210,2],[-14,0],[-24,0],[-22,0],[-57,0],[-1,0],[-71,0],[-97,0],[-24,0],[-25,0],[-41,0],[-42,0],[-60,0],[-1,0],[-57,-2],[-86,0],[-16,0],[-20,0],[-19,0],[-20,0],[-25,0],[-95,0],[-87,0],[-63,-1],[-85,0],[-27,0],[-28,0],[-1,0],[-151,0],[-39,-1],[-16,1],[-88,0],[-67,0],[-51,1],[-21,0],[-16,0],[-20,0],[-19,0],[-16,0],[-15,0],[-22,-1],[-39,1],[-42,0],[-28,0],[-148,-1],[-12,0],[-57,0],[-18,0],[-33,0],[-54,0],[-9,0],[-12,0],[0,-18],[0,-20],[-47,0],[-42,-1],[-15,0],[-13,0],[-58,0],[-61,0],[-56,0],[-71,0],[-25,0],[-24,0],[-97,-1],[-19,0],[-61,0],[-179,0],[-21,0],[-27,0],[-12,0],[-6,0],[-83,0],[-2,0],[-13,1],[-13,0],[-193,0],[-16,0],[-27,0],[-60,0],[-56,0],[-61,0],[-58,0],[-178,0],[-89,0],[-30,-1],[-138,0],[-42,0],[-18,0],[-40,0],[-29,0],[-31,0],[-75,0],[-14,0],[-13,0],[-15,0],[-18,0],[-52,0],[-2,0],[-34,0],[-14,0],[-115,-1],[-241,0],[-14,0],[-60,0],[-49,0],[-56,0],[-57,0]],[[70134,10982],[0,28],[-1,79],[0,36],[0,38],[0,39],[-1,109],[0,111],[-2,220],[0,32],[-1,52],[0,24],[0,19],[0,26],[-1,20],[0,27],[0,33],[-1,57],[0,19],[-1,22],[0,17],[0,4],[0,46],[-1,42],[0,52],[-1,72],[0,63],[0,25],[-3,231],[-3,220],[-1,149],[-2,70],[0,23],[1,22],[-1,18],[0,36],[0,22],[-1,99],[0,17],[-1,30],[0,17],[0,17],[-1,28],[0,18],[0,17],[-1,24],[0,2],[-1,53],[0,51],[0,54],[0,46],[-1,69],[-1,110],[0,44],[-1,146],[-1,29],[0,50],[0,4],[0,44],[-2,120],[0,17],[-1,85],[0,121],[0,76],[0,15],[0,24],[-1,29],[0,20],[0,53],[0,48],[0,6],[0,29],[0,27],[0,27],[0,20],[0,19],[0,19],[0,41],[0,24],[0,20],[0,33],[-1,22],[1,19],[-1,18],[0,17],[0,15],[0,16],[0,17],[0,25],[0,17],[0,44],[0,15],[1,17],[0,22],[0,19],[-1,15],[0,18],[1,19],[0,27],[-1,20],[0,8],[0,11],[1,37],[0,32],[0,40],[1,15],[-1,21],[0,3],[0,16],[0,23],[0,6],[1,13],[-1,23],[0,18],[0,16],[1,38],[0,31],[0,42],[0,22],[1,55],[0,32],[0,1],[0,37],[0,38],[0,33],[0,28],[0,15],[0,24],[0,5],[0,15],[1,69],[0,63],[0,43],[1,22],[0,15],[-1,27]],[[70134,10982],[-28,0],[-90,-1],[-13,0],[-110,-1],[-57,0],[-69,0],[-61,0],[-45,0],[-53,0],[-54,-1],[-2,0],[-11,0],[-8,0],[-20,0],[-5,0],[-85,0],[-74,-1],[-129,0],[-67,-1],[-19,0],[-55,0],[-55,0],[-104,-1],[-86,0],[-124,-1]],[[68710,10975],[-177,-1],[-12,1],[-47,0],[-115,0],[-25,0],[-57,0],[-36,1],[-121,0],[-44,0],[-72,0],[-52,0],[-32,0],[-30,0],[-126,1],[-159,1],[-82,0],[-9,0],[-137,1],[-82,0],[-15,1],[-14,0],[-126,0],[-48,0],[-37,0],[-33,1],[-84,0],[-35,1],[-54,0],[-30,0],[-64,0],[-33,1],[-57,0],[-83,0],[-15,0],[-93,0],[-45,1],[-82,0],[-187,0],[-24,0],[-27,0],[-28,-1],[-12,0],[-13,2],[-22,0],[-14,0],[-20,0],[-28,0],[-13,0],[-86,-1],[-49,0],[-7,0],[-6,0],[-88,0],[-28,0],[-60,-1],[-60,0],[-26,0],[-66,0],[-73,-1],[-90,1],[-72,-1],[-31,0],[-22,0],[-30,-1],[-23,0],[-70,0],[-67,-1],[-29,0],[-44,-1],[-19,0],[-78,-1],[-63,-1],[-30,0],[-3,0],[-35,0],[-6,0],[-6,0],[-19,0],[-24,0],[-78,-1],[-31,-1],[-86,-1]],[[64454,10974],[-3,111],[-1,32],[0,1],[-2,76],[0,18],[-2,78],[-1,32],[-1,92],[-1,9],[-3,210],[-2,111],[-3,109],[-2,85],[0,25],[-2,91],[0,18],[-1,59],[-1,38],[-2,132],[0,56],[-1,13],[0,40],[-1,56],[0,55],[-1,35],[0,25],[-1,18],[0,32],[-1,83],[-1,27],[-1,113],[-2,99],[-1,193],[-1,29],[0,7],[0,97],[-1,51],[-1,71],[-1,218],[-1,31],[1,35],[-1,44],[0,33],[0,18],[0,31],[0,17],[0,13],[-1,7],[-1,37],[0,33],[0,71],[0,43],[0,25],[0,98],[-1,121],[-1,218],[-1,124],[0,77],[0,19],[-1,84],[0,79],[0,63],[1,77],[1,96],[1,46],[3,167],[1,52],[1,92],[0,43],[-1,15],[2,30],[0,22],[0,16],[0,56],[2,73],[0,6],[1,70],[-2,18],[0,4],[3,125],[1,86],[0,21],[1,45],[0,23],[0,20],[0,1],[1,116]],[[64454,10974],[-115,-1],[-40,-1],[-69,-1],[-75,-2],[-32,0],[-295,-3],[-2,0],[-15,1],[-18,0],[-1,0],[-22,-1],[-28,0],[-30,0],[-29,0],[-33,0],[-56,-1],[-158,0],[-65,-1],[-17,0],[-20,0],[-28,0],[-105,-1],[-55,0],[-29,-1],[-56,0],[-33,-1],[-25,0],[-29,1],[-5,0],[-10,0],[-42,-1],[-72,0],[-51,0],[-28,0],[-31,-1],[-30,0],[-61,-1],[-87,0],[-109,-2],[-1,0],[-51,-1],[-89,-1],[-24,0],[-50,0],[-38,0],[-25,-1],[-46,0],[-31,-1],[-39,0],[-58,-1],[-29,0],[-44,0],[-24,0],[-54,-1],[-68,0],[-63,-1]],[[61714,10950],[-23,0],[-18,0],[-28,0],[-28,0],[-17,0],[-67,0],[-25,-1],[-33,0],[-44,0],[-60,-1],[-30,0],[-40,0],[-46,0],[-17,0],[-18,0],[-52,0],[-89,0],[-109,0],[-4,0],[-35,1],[-52,0],[-82,0],[-18,1],[-17,0],[-48,0],[-49,1],[-52,1],[-67,0],[-63,1],[-82,1],[-69,0],[-23,1],[-29,0],[-3,0],[-96,0],[-25,1],[-1,0],[-44,1],[-45,0],[-3,1],[-11,0],[-13,0],[-13,1],[-1,0],[-31,0],[-25,0],[-24,1],[-111,3],[-42,1],[-18,0],[-59,1],[-192,3],[-19,0],[-26,0],[-117,1],[-71,2],[-46,1],[-80,1],[-45,1],[-112,1],[-25,0],[-1,0],[-15,0],[-30,0],[-36,0],[-28,0],[-102,-1]],[[58770,10974],[-3,103],[0,2],[0,30],[-1,44],[1,26],[0,18],[-1,75],[0,27],[1,40],[0,28],[0,20],[-1,28],[0,25],[1,19],[0,178],[-1,18],[1,84],[0,25],[1,93],[0,56],[0,53],[1,53],[0,19],[0,18],[0,23],[1,35],[0,29],[0,19],[0,89],[0,45],[0,88],[0,76],[1,27],[0,28],[0,89],[0,21],[0,29],[0,20],[1,40],[0,21],[0,37],[-1,182],[0,72],[-1,40],[0,42],[0,60],[0,11],[0,51],[0,54],[0,16],[0,29],[0,65],[-1,88],[0,1],[0,21],[0,17],[0,17],[-1,13],[-2,46],[-1,58],[-1,34],[0,3],[-1,17],[0,42],[-1,22],[0,19],[0,15],[-1,15],[0,21],[0,24],[0,16],[-1,28],[0,16],[0,22],[0,27],[-1,27],[0,30],[0,22],[-1,81],[0,10],[-1,92],[-1,18],[-1,107],[0,56],[-1,17],[0,21],[0,17],[-2,113],[-1,105],[-1,26],[0,33],[-1,25],[0,19],[-2,69],[-1,44],[0,93],[-1,66],[0,17],[0,44],[0,56],[0,54],[0,104],[-1,116],[0,59],[-1,43],[0,26],[0,15],[0,76],[-1,110],[-1,36],[0,39],[0,31],[0,42],[0,71],[1,111],[0,16],[-1,38],[0,49]],[[58770,10974],[-61,0],[-27,0],[-151,0],[-21,0],[-41,-1],[-14,0],[-31,-1],[-91,0],[-34,0],[-16,0],[-60,-1],[-35,0],[-131,0],[-44,0],[-3,0],[-14,-1],[-5,0],[-6,0],[-6,0],[-20,0],[-33,0],[-2,0],[-56,0],[-25,0],[-22,0],[-38,0],[-15,0],[-14,-1],[-51,0],[-116,-1],[-89,-1],[-15,0],[-60,-1],[-65,0],[-2,0],[-12,0],[-83,1],[-19,0],[-73,0],[-58,0],[-20,0],[-45,1],[-39,0],[-130,0],[-28,0],[-72,0],[-84,0],[-61,0],[-107,-1],[-121,-2],[-14,0],[-96,0],[-61,-1],[-60,0],[-33,-1],[-6,0],[-30,-2]],[[56104,10961],[-15,0],[-15,2],[-136,-1],[-13,0],[-60,0],[-161,-1],[-16,0],[-18,0],[-43,-1],[-24,0],[-19,0],[-28,0],[-88,0],[-79,-1],[-41,0],[-13,-1],[-18,0],[-100,0],[-64,-1],[-72,-1],[-68,-1],[-15,1],[-43,-1],[-36,0],[-2,0],[-147,-2],[-12,-1],[-44,0],[-137,-2],[-41,-1],[-12,0],[-16,0],[-30,-1],[-37,-2],[-54,-2],[-29,0],[-23,0],[-17,-1],[-21,0],[-88,-1],[-23,0],[-16,0],[-20,0],[-71,-1],[-28,0],[-18,0],[-25,0],[-186,-1],[-17,0],[-19,-1],[-13,0],[-68,0],[-117,-1],[-51,0],[-65,0],[-118,-1],[-26,-1],[-32,1],[-41,0],[-19,0],[-86,-1],[-27,0],[-16,-1],[-14,1],[-80,0],[-116,0],[-20,0],[-25,0],[-14,0],[-13,0],[-20,0],[-22,0],[-43,0],[-58,0],[-43,0],[-20,0],[-36,0],[-22,0],[-39,0],[-6,0],[-80,-1],[-20,0],[-14,0],[-13,-1],[-33,1],[-31,0],[-35,0],[-35,0],[-5,0],[-54,0],[-16,0],[-17,1],[-26,0],[-98,0],[-30,0],[-66,1],[-12,0],[-27,1],[-42,0],[-44,0],[-24,0],[-88,1],[-17,0],[-45,0],[-65,1],[-110,0],[-38,0],[-75,-1],[-88,-2],[-33,0],[-58,1],[-56,0],[-62,0],[-68,0],[-17,1],[-28,0],[-33,0],[-31,0],[-74,1],[-44,1],[-193,2],[-38,0],[-23,0],[-23,0],[-41,-1],[-48,0],[-12,0],[-15,0],[-57,0],[-22,0],[-16,0],[-5,0],[-10,0],[-23,0],[-18,0],[-13,0],[-30,0],[-32,0],[-18,0],[-16,0],[-18,0],[-28,0],[-17,0],[-25,0],[-15,0],[-23,0],[-22,-1]],[[82923,5893],[-77,-2],[-41,-2],[-69,-1],[-32,-1],[-7,0],[-34,0],[-14,0],[-21,-1],[-16,-1],[-26,0],[-17,-1],[-20,0],[-32,-1],[-32,0],[-37,-1],[-14,0],[-23,-1],[-13,0],[-3,0],[-10,0],[-40,0],[-28,0],[-16,0],[-86,-3],[-119,-2],[-117,-3],[-118,-2],[-13,0],[-104,-2],[-20,0],[-38,-1],[-54,-1],[-103,9],[-15,1],[-13,0],[-19,0],[-24,0],[-39,-1],[-26,-1],[-14,0],[-15,-1],[-20,0],[-14,0],[-6,-1],[-23,0],[-1,0],[-26,-1],[-18,0],[-30,-1],[-15,0],[-21,0],[-12,0],[-21,-1],[-16,0],[-13,0],[-1,0],[-25,-1],[-16,0],[-24,-1],[-15,0],[-16,-1],[-1,0],[-44,-1],[-62,-1],[-62,-1],[-61,-2],[-126,-3],[-120,-3],[-59,-2],[-63,-1],[-67,-2],[-2,0],[-147,-3],[-84,-2],[-4,0],[-33,-1]],[[80096,5845],[-51,-1],[-5,0],[-105,-3],[-76,-1],[-35,-1],[-84,-2],[-116,-2],[-77,-2],[-34,-1],[-17,0],[-98,-2],[-80,-2],[-42,0],[-33,-1],[-88,-3],[-35,0],[-30,-1],[-29,-1],[-52,-1],[-91,-2],[-55,-1],[-113,-3],[-26,0],[-14,-1],[-54,-1],[-42,-1],[-75,-2],[-67,-2],[-35,-1],[-30,-1],[-28,-1],[-29,0],[-4,0],[-346,-10],[-122,-3],[-3,0],[-26,-1],[-23,-1],[-15,0],[-44,-2],[-38,0],[-28,-1],[-26,-1],[-25,0],[-23,-1],[-12,0],[-8,0],[-11,0],[-19,-1],[-36,-1],[-17,0],[-147,-5],[-6,0],[-100,0],[2,-67],[-33,-1],[-32,0],[-1,0],[-27,-1],[-28,-1],[-42,0],[-42,-1],[-15,1],[-13,-1],[-19,0],[-69,-2],[-14,0],[-19,0],[-20,-1],[-18,0],[-15,0],[-60,-2],[-18,0],[-58,-2],[-108,-2],[-31,-1],[-21,-1],[-19,0],[-65,-1],[-31,0],[-14,-2],[-17,-3],[-13,0],[-12,1],[-31,0],[-28,-1],[-4,0],[-14,0],[-69,-1],[-39,0],[-108,-1],[-21,0],[-16,0],[-23,0],[-14,0],[-16,0],[-151,-5],[-19,-1],[-17,0],[-49,-1]],[[75780,5681],[0,39],[0,17],[-2,116],[-1,63],[-2,97],[0,13],[-1,64],[0,20],[0,39],[-5,193],[-1,34],[0,16],[1,26],[-1,17],[-1,29],[-1,37],[-1,27],[-1,17],[0,16],[-1,24],[-1,29],[-1,49],[-2,63],[-1,20],[-1,40],[-1,24],[0,24],[-1,62],[0,57],[0,1],[0,24],[0,43],[0,17],[0,120],[4,83],[1,45],[2,71],[1,25],[3,61],[2,50],[2,44],[1,65],[1,21],[1,56],[2,34],[1,21],[1,60],[5,93],[1,23],[0,18],[4,125],[3,79],[0,24],[1,112],[4,113],[-2,169],[-1,135],[0,35],[-1,20],[0,57],[0,4],[0,43],[-1,46],[0,83],[-1,38],[0,26],[0,31],[0,17],[0,4],[0,21],[0,19],[0,52],[-1,28],[0,29],[0,18],[0,18],[0,18],[0,69],[-1,112],[-1,123],[1,57],[0,23],[-2,22],[1,99],[0,22],[0,32],[-1,19],[0,17],[0,20],[1,43],[0,17],[-1,21],[0,68],[0,72],[1,48],[-1,33],[1,63],[1,76],[0,155],[0,38],[1,19],[0,21],[-1,23],[0,19],[0,7],[1,8],[1,119],[0,1],[1,31],[0,27],[0,83],[0,122]],[[82772,11182],[3,-42],[3,-82],[1,-34],[3,-53],[1,-30],[1,-25],[1,-21],[1,-30],[3,-54],[2,-54],[2,-55],[2,-37],[1,-20],[2,-53],[0,-4],[1,-50],[3,-59],[1,-29],[1,-33],[1,-16],[0,-16],[1,-18],[1,-30],[1,-4],[0,-20],[1,-24],[1,-24],[1,-16],[0,-16],[1,-21],[1,-21],[1,-17],[1,-22],[1,-18],[1,-30],[0,-16],[1,-32],[1,-32],[1,-26],[2,-35],[1,-29],[1,-24],[1,-29],[2,-53],[1,-19],[1,-16],[1,-23],[2,-53],[1,-21],[2,-33],[2,-90],[1,-19],[1,-36],[1,-27],[2,-47],[0,-4],[1,-19],[3,-83],[2,-42],[2,-51],[1,-20],[1,-20],[1,-41],[1,-20],[1,-41],[2,-41],[1,-31],[1,-27],[0,-17],[1,-26],[0,-17],[1,-17],[1,-45],[2,-46],[1,-49],[2,-63],[0,-4],[2,-64],[2,-87],[0,-17],[-1,-23],[-2,-35],[-1,-29],[0,-7],[-1,-19],[-2,-35],[0,-6],[-1,-18],[0,-8],[0,-10],[-1,-26],[1,-29],[1,-85],[0,-16],[1,-45],[1,-57],[1,-33],[1,-27],[2,-64],[2,-54],[1,-19],[0,-11],[0,-5],[1,-19],[0,-17],[0,-28],[0,-14],[0,-3],[0,-17],[1,-27],[0,-10],[0,-21],[1,-2],[1,-30],[1,-29],[2,-65],[1,-30],[1,-22],[0,-16],[1,-25],[1,-57],[1,-29],[1,-29],[1,-56],[2,-55],[2,-55],[2,-90],[1,-20],[0,-2],[0,-8],[0,-6],[2,-55],[1,-56],[1,-22],[1,-33],[1,-63],[2,-48],[1,-29],[0,-28],[2,-53],[0,-23],[0,-33],[1,-36],[0,-20],[1,-28],[1,-22],[0,-5],[1,-55],[1,-27],[1,-32],[1,-51],[1,-55],[1,-50],[2,-60],[0,-33],[1,-24],[1,-55],[1,-53],[1,-49],[1,-19],[0,-15],[1,-26],[0,-26],[1,-32]],[[75780,5681],[-31,1],[-12,1],[-28,2],[-3,0],[-15,1],[-12,0],[-7,1],[-36,2],[-286,17],[-36,2],[-36,2],[-25,1],[-50,3],[-13,0],[-29,0],[-31,0],[-54,1],[-94,-2],[-26,-1],[-33,0],[-63,-1],[-14,0],[-167,-2],[-18,0],[-16,0],[-39,-1],[-12,0],[-2,0],[-56,-1],[-15,0],[-18,0],[-47,0],[-21,0],[-49,-1],[-28,0],[-68,0],[-73,0],[-65,1],[-130,0],[-31,0],[-26,0],[-91,0],[-73,0],[-15,0],[-39,0],[-49,0],[-18,0],[-38,0],[-26,0],[-6,0],[-26,1],[-17,0],[-52,0],[-15,0],[-44,1],[-14,-1],[-40,0],[-14,0],[-15,0],[-32,0],[-18,1],[-299,0],[-32,0]],[[72992,5709],[-4,0],[-58,0],[-51,0],[-62,-1],[-57,0],[-82,-1],[-152,-2],[-121,-1],[-14,0],[-34,-1],[-23,0],[-14,0],[-13,0],[-21,0],[-26,0],[-19,0],[-13,0],[-2,0],[-12,0],[-19,0],[-16,0],[-60,0],[-59,-1],[-65,0],[-51,0],[-56,-1],[-52,0],[-17,0],[-49,0],[-58,-1],[-102,1],[-35,-1],[-100,-2],[-42,-1],[-55,-1],[-101,-1],[-17,-1],[-14,0],[-34,0],[-58,-1],[-139,-2],[-40,0],[-64,-1],[-29,0],[-2,0],[-91,-1],[-57,-1],[-53,-1],[-60,0],[-112,-2],[-64,-1],[-41,0],[-22,0],[-47,0],[-109,-1],[-126,-3],[-3,0],[-20,0],[-68,-1],[-19,-1],[-90,-1],[-87,-1],[-51,-1],[-65,-1],[-16,0],[-30,0],[-14,-1],[-16,0],[-97,-1],[-19,0],[-53,-1],[-21,-1],[-16,0],[-25,0],[-49,0],[-49,-1],[-12,0],[-9,0],[-16,-1],[-25,0],[-15,0],[-12,0],[-18,0],[-16,-1],[-126,-2],[-46,0],[-135,-2],[-24,-1],[-18,0]],[[68818,5662],[-3,224],[-1,60],[-1,57],[-1,44],[-1,54],[-3,221],[-1,35],[-1,70],[-1,42],[-1,24],[0,21],[0,1],[0,14],[-1,68],[0,17],[-1,26],[0,56],[-1,65],[-1,28],[0,29],[0,28],[-1,27],[0,29],[-2,30],[0,18],[-1,28],[-1,28],[-3,58],[0,1],[-3,62],[-5,98],[-6,121],[-2,45],[-2,54],[-2,56],[-1,27],[-2,33],[-6,105],[-7,124],[-1,29],[-3,67],[-12,220],[-8,165],[-2,35],[-1,24],[0,18],[0,21],[-1,25],[0,43],[0,23],[-1,78],[0,17],[-1,31],[0,1],[-1,44],[-1,54],[0,48],[-1,20],[0,23],[-2,108],[0,38],[-1,67],[-2,84],[0,22],[-1,36],[-1,27],[0,2],[0,26],[0,33],[-2,129],[0,25],[-1,68],[-4,209],[0,18],[0,153],[0,58],[0,37],[0,19],[0,54],[0,16],[0,21],[0,74],[0,27],[0,195],[0,197],[0,5],[0,18],[0,74],[0,34],[0,87],[0,25],[1,39],[-1,17],[1,39],[0,118]],[[68818,5662],[-92,3],[-144,2],[-143,4],[-92,2],[-14,0],[-14,1],[-94,2],[-115,2],[-53,1],[-34,1],[-20,1],[-13,0],[-14,-1],[-44,2],[-59,2],[-94,2],[-5,0],[-139,3],[-201,5],[-25,0]],[[67409,5694],[-26,0],[-2,0],[-33,0],[-34,0],[-139,0],[-45,0],[-14,0],[-59,0],[-62,0],[-55,0],[-118,0],[-114,0],[-61,0],[-18,1],[-41,0],[-91,-1],[-26,0],[-63,0],[-55,0],[-61,1],[-59,-1],[-58,1],[-58,0],[-104,1],[-59,0],[-177,1],[-110,2],[-20,0],[-96,0],[-13,1],[-4,0],[-10,0],[-13,0],[-86,0],[-25,0],[-80,0],[-98,1],[-150,0],[-180,-1],[-31,0],[-24,0],[-130,0],[-35,0],[-83,0],[-157,-1],[-81,0],[-23,0],[-211,-1],[-59,-1],[-67,0],[-109,-1],[-42,-1],[-25,0],[-21,0],[-15,0],[-15,0],[-18,0],[-1,0],[-14,0],[-23,0],[-24,0],[-18,0],[-12,0],[-14,0],[-13,0],[-12,0],[-20,0],[-17,0],[-5,0],[-45,0],[-94,-1],[-24,0],[-93,1],[-24,0],[-34,0],[-73,0],[-119,-1],[-116,-1],[-167,-1],[-66,-1],[-238,-3],[-202,-1],[-20,0],[-15,0],[-58,-2],[-67,-1],[-96,0],[-12,0],[-50,0],[-105,-2],[-7,0],[-29,-1],[-14,-1],[-27,0]],[[61778,5680],[0,23],[-1,24],[-1,64],[-1,54],[0,55],[-1,56],[-3,116],[-1,48],[-2,228],[-1,98],[-4,114],[0,18],[-1,68],[0,24],[0,62],[-1,33],[0,16],[-1,29],[0,20],[-1,27],[-1,44],[-1,91],[0,22],[-1,34],[0,54],[-1,55],[0,17],[0,22],[0,19],[-3,107],[-1,110],[-4,198],[0,26],[-1,116],[-1,38],[0,20],[0,42],[-1,32],[-1,50],[0,2],[-1,67],[0,3],[-1,13],[-1,56],[0,52],[0,56],[-1,56],[-2,62],[0,15],[-1,29],[0,16],[0,25],[-1,24],[0,18],[0,91],[0,29],[0,3],[0,20],[0,53],[0,16],[-1,49],[0,14],[0,15],[0,29],[0,103],[-1,113],[0,64],[0,63],[0,19],[0,15],[0,20],[-1,18],[0,145],[-1,54],[0,46],[-2,45],[0,34],[-1,32],[0,21],[0,34],[0,20],[0,20],[1,16],[0,16],[-1,28],[0,1],[-1,16],[0,15],[-1,19],[-1,96],[0,64],[0,3],[0,17],[-1,23],[0,24],[0,3],[-1,17],[0,9],[0,19],[-1,17],[0,13],[0,5],[-1,22],[0,46],[0,32],[0,3],[0,15],[0,21],[-1,22],[0,24],[-1,66],[-1,49],[-1,28],[0,19],[-1,54],[0,29],[-1,26],[-1,60],[-1,60],[-1,56],[-1,49],[0,19],[-1,33],[-1,48],[-1,51],[-1,18],[7,46]],[[56104,10961],[-1,-48],[-1,-97],[0,-56],[0,-18],[0,-18],[0,-24],[0,-24],[0,-16],[0,-38],[1,-28],[0,-5],[-2,-21],[0,-21],[0,-31],[0,-27],[-1,-42],[0,-17],[0,-16],[0,-19],[0,-19],[0,-1],[0,-26],[0,-23],[0,-27],[-1,-27],[0,-33],[0,-29],[-1,-21],[0,-19],[0,-7],[0,-21],[-1,-45],[0,-45],[-1,-55],[-1,-54],[-1,-76],[-1,-44],[0,-24],[-1,-23],[-2,-137],[0,-23],[-1,-22],[0,-66],[-1,-66],[0,-21],[1,-47],[-1,-52],[-1,-25],[0,-43],[0,-100],[-2,-108],[0,-1],[0,-91],[0,-18],[0,-29],[-1,-32],[0,-49],[0,-82],[0,-27],[-1,-218],[0,-65],[0,-68],[0,-86],[1,-42],[0,-16],[2,-163],[2,-90],[0,-3],[0,-13],[1,-42],[1,-41],[1,-32],[0,-49],[1,-63],[0,-61],[1,-53],[-1,-46],[2,-168],[2,-110],[1,-109],[1,-50],[1,-39],[0,-4],[0,-49],[2,-80],[2,-70],[2,-164],[3,-163],[1,-56],[1,-32],[2,-187],[1,-91],[1,-74],[1,-56],[2,-108],[1,-110],[0,-33],[3,-186]],[[56121,5647],[-19,0],[-105,-1],[-52,0],[-59,0],[-175,0],[-31,0],[-28,0],[-43,0],[-48,0],[-24,0],[-174,0],[-2,0],[-28,0],[-28,0],[-19,0],[-35,1],[-30,0],[-30,0],[-82,0],[-39,0],[-25,0],[-50,0],[-14,0],[-31,0],[-54,0],[-24,0],[-20,0],[-16,0],[-67,1],[-25,0],[-61,0],[-56,1],[-94,0],[-23,0],[-93,0],[-16,0],[-126,0],[-53,1],[-62,0],[-53,0],[-39,0],[-23,1],[-23,0],[-194,1],[-20,0],[-59,1],[-174,2],[-215,3],[-117,1],[-67,0],[-41,0],[-40,0],[-21,1],[-68,0],[-2,0],[-84,0],[-27,-1],[-68,1],[-22,0],[-1,0],[-27,1],[-28,0],[-29,0],[-59,1],[-120,0],[-40,1],[-74,0],[-180,1],[-55,3],[-23,0],[-32,0],[-28,0],[-28,0],[-116,2],[-1,0],[-71,0],[-70,1],[-64,1],[-29,0],[-159,1],[-54,0],[-20,0],[-39,0],[-9,0],[-6,0],[-20,1],[-5,0],[-94,1],[-28,0],[-38,1],[-13,-1],[-17,0],[-79,0],[-4,0],[-48,0],[-7,0],[-7,-1],[-25,1],[-14,0],[-17,0],[-160,3],[-14,0],[-98,0],[-177,2]],[[50576,5679],[0,43],[0,24],[0,47],[0,36],[1,66],[0,2],[0,54],[0,47],[0,52],[0,66],[0,139],[0,82],[0,60],[0,33],[0,124],[0,67],[0,31],[0,52],[0,57],[0,17],[0,63],[-1,60],[0,74],[0,143],[0,55],[-1,20],[0,73],[0,24],[0,45],[0,18],[0,20],[0,3],[0,23],[-1,54],[0,29],[0,25],[0,4],[0,51],[-1,28],[0,33],[0,30],[0,18],[0,27],[0,13],[0,36],[-1,17],[0,29],[-1,56],[0,111],[-1,106],[-2,214],[-117,1],[-2,0],[-101,0],[-16,0],[-77,1],[-38,0],[-23,0],[-22,0],[-64,0],[-2,0],[-114,0],[-125,0],[-123,0],[-39,0],[-68,-1],[-19,0],[-136,-1],[-42,0],[-31,-1],[-17,0],[-74,-2],[-35,0],[-18,-2],[-66,0],[-38,-1],[-118,2],[-18,0],[-2,0],[-27,1],[-24,0],[-23,0],[-15,0],[-17,0],[-16,0],[-30,-1]],[[61778,5680],[-58,0],[-24,0],[-36,0],[-58,0],[-22,-1],[-39,0],[-108,0],[-125,-1],[-23,0],[-7,0],[-205,0],[-58,0],[-31,0],[-56,1],[-91,-1],[-40,1],[-196,-1],[-120,-1],[-29,0],[-1,0],[-12,0],[-23,0],[-57,0],[-34,-1],[-140,0],[-14,0],[-27,-1],[-18,0],[-13,0],[-12,0],[-47,0],[-46,0],[-118,-1],[-44,0],[-34,-1],[-40,0],[-76,-1],[-40,0],[-36,0],[-5,0],[-80,-1],[-116,0],[-91,-1],[-8,0],[-69,0],[-1,0],[-15,0],[-16,0],[-18,0],[-21,0],[-42,-1],[-14,0],[-3,0],[-14,0],[-21,-1],[-45,0],[-102,-1],[-140,-1],[-95,-1],[-51,0],[-68,-1],[-13,0],[-13,0],[-23,-1],[-27,0],[-18,0],[-15,-1],[-6,0],[-13,0],[-20,0],[-15,0],[-38,0],[-21,-1],[-35,0],[-12,0],[-45,0],[-38,-1],[-23,0],[-10,0],[-26,0],[-13,1],[-50,-1],[-64,0],[-18,0],[-37,1],[-76,1],[-40,0],[-23,0],[-33,0],[-21,0],[-36,1],[-53,-1],[-12,0],[-18,0],[-36,0],[-1,0],[-100,0],[-75,-1],[-73,-1],[-3,0],[-16,0],[-67,-1],[-236,-4],[-178,-2],[-43,0],[-36,0],[-18,0],[-55,-1],[-31,0],[-39,-1],[-39,0],[-41,0],[-30,0],[-138,-1],[-6,0],[-61,-1],[-79,-1],[-21,0],[-112,-1],[-25,0]],[[50576,5679],[0,-31],[0,-81],[0,-110],[0,-220],[1,-32],[0,-85],[0,-93],[0,-92],[0,-25],[0,-131],[0,-34],[0,-54],[0,-54],[0,-39],[0,-15],[0,-26],[0,-24],[0,-17],[0,-43],[0,-42],[0,-16],[0,-15],[0,-19],[0,-21],[0,-16],[0,-4],[0,-18],[0,-54],[0,-26],[-1,-84],[0,-29],[-1,-187],[0,-68],[0,-50],[-1,-102],[0,-107],[-1,-128],[0,-69],[-1,-21],[0,-112],[-1,-111],[-1,-109],[-1,-29],[0,-35],[-1,-63],[-1,-12],[0,-30],[0,-29],[0,-5],[0,-19],[-1,-24],[0,-32],[0,-36],[-1,-117],[-2,-114],[0,-2],[-1,-15],[0,-16],[0,-15],[-1,-18],[0,-21],[-2,-27],[0,-22],[-1,-62],[0,-21],[-2,-76],[0,-34],[-3,-107],[-1,-34],[-1,-72],[0,-4],[0,-24],[-1,-35],[0,-20],[0,-22],[0,-36],[-1,-90],[-1,-20],[-1,-83],[0,-22],[0,-25],[-1,-47],[0,-16],[-1,-54],[-2,-171],[0,-54],[-2,-65],[0,-43],[-1,-57],[-2,-117]],[[50538,973],[-297,-1],[-260,-1],[-541,-2],[-173,0],[-2323,-8],[-1071,2],[-560,0],[-719,1],[-42,0],[-351,2],[-388,2],[-191,1],[-60,1],[-239,1]],[[80096,5845],[1,-22],[0,-5],[1,-25],[1,-58],[1,-110],[2,-26],[0,-28],[4,-175],[3,-101],[1,-54],[1,-56],[1,-52],[2,-58],[0,-29],[2,-81],[1,-27],[1,-44],[0,-30],[3,-103],[0,-16],[2,-108],[1,-39],[2,-73],[0,-26],[0,-1],[1,-28],[0,-57],[2,-67],[1,-104],[0,-5],[1,-43],[2,-111],[0,-53],[2,-91],[0,-1],[0,-18],[1,-56],[0,-29],[1,-83],[2,-109],[1,-74],[0,-143],[1,-19],[0,-20],[0,-6],[1,-27],[0,-39],[2,-82],[0,-27],[2,-57],[0,-24],[1,-36],[1,-31],[1,-69],[1,-18],[1,-39],[0,-47],[1,-16],[0,-5],[0,-27],[2,-80],[0,-45],[2,-63],[2,-101],[2,-56],[1,-54],[1,-30],[1,-26],[2,-54],[1,-50],[2,-61],[2,-74],[0,-1],[0,-34],[3,-89],[0,-20],[0,-31],[1,-24],[1,-55],[2,-70],[1,-36],[1,-25],[1,-19],[0,-17],[2,-49],[2,-54],[5,-83],[0,-10],[1,-18],[2,-59],[2,-53],[1,-56],[2,-51],[2,-57],[2,-53],[0,-17],[6,-131],[0,-16],[1,-28],[2,-65],[2,-69],[1,-37],[2,-76],[4,-104],[3,-97],[1,-19],[3,-105]],[[80226,415],[-926,-34],[-487,-18],[-233,-9],[-388,-13],[-593,-21],[-162,-6],[-66,-2],[-449,-16],[-1441,-53],[-648,-22],[-59,-2],[-1524,-53],[-223,-8]],[[73027,158],[-1,50],[0,33],[-1,29],[0,42],[-1,71],[0,45],[-1,55],[0,64],[-1,31],[0,24],[0,33],[0,25],[0,10],[-1,33],[0,69],[0,53],[-1,42],[0,41],[0,32],[0,33],[-1,55],[0,18],[0,41],[-1,55],[0,36],[0,16],[0,50],[0,6],[0,16],[-1,41],[0,55],[0,28],[-1,52],[0,5],[0,42],[0,38],[-1,65],[0,44],[0,17],[-1,93],[1,86],[0,26],[0,20],[0,33],[0,42],[0,28],[-2,77],[0,17],[-1,51],[0,2],[0,58],[0,26],[-1,54],[0,16],[0,17],[0,30],[-1,35],[0,41],[0,1],[0,16],[-1,24],[0,32],[0,24],[0,44],[-1,24],[0,48],[0,55],[0,48],[-1,20],[0,30],[0,19],[0,16],[0,20],[1,19],[0,221],[0,45],[0,64],[-1,84],[0,27],[0,26],[0,22],[0,20],[0,16],[0,20],[0,56],[-1,58],[0,97],[0,15],[0,111],[-1,194],[0,26],[-1,163],[0,58],[0,67],[0,23],[0,20],[-1,33],[0,78],[0,110],[0,33],[0,23],[0,40],[-1,49],[1,20],[-1,55],[0,23],[0,32],[-2,55],[0,56],[0,20],[0,35],[0,55],[-2,55],[0,38],[0,33],[-1,84],[-1,65],[-1,56],[0,12],[0,70],[-1,78],[0,2],[-1,89],[1,7],[0,15],[-1,35],[-1,34],[0,41]],[[67409,5694],[2,-157],[0,-5],[0,-58],[1,-102],[0,-110],[0,-82],[0,-138],[0,-56],[0,-55],[0,-90],[0,-20],[0,-111],[1,-86],[0,-29],[0,-31],[0,-183],[1,-171],[1,-56],[0,-54],[1,-19],[0,-33],[1,-73],[1,-43],[0,-22],[2,-88],[0,-2],[-1,-60],[0,-2],[0,-47],[3,-216],[2,-223],[0,-57],[1,-26],[0,-26],[1,-110],[-1,-219],[0,-102],[1,-79],[0,-37],[-1,-75],[0,-63],[0,-88],[0,-49],[-1,-53],[0,-112],[0,-108],[-1,-111],[0,-220],[-1,-110],[1,-119],[0,-105],[-1,-18],[2,-97],[0,-50],[1,-71],[0,-1],[0,-69],[0,-28],[0,-82],[0,-20]],[[67425,967],[-139,-1],[-214,0],[-174,0],[-867,-2],[-592,-1],[-94,0],[-66,0],[-160,0],[-280,-1],[-564,0],[-67,0],[-78,0],[-134,0],[-786,-1],[-265,0],[-663,2],[-487,2]],[[61795,965],[2,121],[0,53],[0,15],[0,141],[-1,62],[1,26],[0,36],[-1,42],[0,58],[0,51],[1,72],[0,21],[0,20],[0,42],[-1,17],[0,104],[0,55],[0,54],[0,28],[0,1],[0,15],[-1,126],[0,64],[0,6],[0,49],[0,98],[0,32],[0,21],[0,109],[0,74],[-1,43],[1,88],[0,3],[0,40],[-1,88],[0,55],[-1,48],[0,105],[0,68],[0,2],[0,41],[-1,114],[0,108],[-1,111],[-1,162],[0,21],[0,91],[0,50],[0,2],[-1,46],[0,68],[-2,200],[0,20],[1,30],[-1,28],[0,7],[0,46],[-1,116],[0,16],[0,86],[-1,74],[0,18],[0,21],[0,16],[0,124],[-1,81],[0,74],[0,31],[0,77],[-1,34],[-1,86],[0,79],[-1,55],[0,55],[-1,56],[0,1],[-2,108],[0,23],[0,36],[0,9],[0,6],[0,13],[0,17],[0,18],[0,15],[0,39],[0,33]],[[73027,158],[-2,0],[-391,-9],[-79,-2],[-1160,-33],[-371,-10],[-324,-8],[-40,-1],[-51,-2],[-19,0],[-1529,-40],[-54,-2],[-646,-25],[-68,-2],[-637,-24],[-1,173],[-3,796],[-227,-2]],[[61795,965],[-901,-1],[-84,0],[-285,0],[-156,0],[-203,-1],[-565,-2],[-331,-1],[-667,-3],[-172,-1],[-133,0],[-933,-4],[-214,0],[-262,0],[-103,0],[-813,1],[-112,0]],[[55861,953],[0,11],[1,21],[-8,17],[-2,4],[-5,8],[-15,15],[-8,3],[-3,2],[0,52],[2,4],[1,1],[2,3],[0,6],[11,50],[0,3],[5,22],[-9,28],[1,13],[6,6],[2,2],[15,14],[35,12],[7,4],[5,2],[42,21],[29,19],[7,7],[13,10],[11,9],[12,5],[8,4],[5,3],[12,6],[1,3],[8,20],[13,35],[4,16],[4,13],[7,17],[9,9],[13,8],[15,1],[9,14],[-7,14],[-6,16],[5,16],[11,14],[10,9],[15,9],[0,12],[0,10],[0,26],[0,3],[0,91],[0,122],[0,53],[0,25],[0,34],[0,105],[-1,111],[0,20],[0,43],[0,44],[0,52],[0,45],[0,28],[0,52],[0,18],[-1,25],[-1,53],[0,62],[3,152],[0,41],[0,21],[0,30],[0,23],[0,31],[0,84],[1,23],[0,40],[-1,55],[0,28],[-1,28],[0,7],[0,12],[0,61],[-1,29],[-1,97],[0,29],[0,38],[-1,55],[-1,30],[0,25],[0,6],[0,16],[0,7],[0,16],[0,41],[-1,78],[-1,54],[-1,93],[-2,16],[2,53],[-2,93],[0,21],[-1,107],[-1,110],[0,49],[0,49],[-1,61],[-3,171],[-1,49],[0,4],[-1,50],[-1,50],[-1,33],[0,32],[-1,61],[0,17],[-1,19],[0,1],[0,35],[0,32],[-1,22],[0,36],[0,18],[-2,93],[-1,101],[-2,114],[0,27],[-2,69],[0,2],[-2,110],[-1,80],[0,24]],[[55861,953],[-41,0],[-41,0],[-1,0],[-291,1],[-262,1],[-1657,12],[-268,2],[-791,5],[-308,0],[-272,0],[-1391,-1]],[[26411,83272],[-153,-2],[-34,0],[-16,0],[-73,-1],[-67,-1],[-210,2],[-44,0],[-28,0],[-23,0],[-205,0],[0,176],[0,41],[0,97],[-3,246],[-2,75],[0,16],[-3,214],[1,166],[0,27],[0,167],[0,80],[-107,3],[-106,-1],[-36,0],[-14,0],[-26,0],[-80,-1],[-68,-1],[-70,-1],[-45,0],[-143,0],[-85,0],[-203,-1],[-14,0],[-18,0],[-15,0],[-19,0],[-13,0],[-12,0],[-13,0],[-12,0],[-12,1],[-35,0],[-69,1],[-38,0],[-32,1],[-15,0],[-2,0],[-31,0],[-15,2],[-30,-2],[-47,-1],[-59,0],[-45,-1],[-28,0],[-157,-1],[-70,0],[-129,-1],[-19,0],[-14,0],[-129,-1],[-55,0],[-168,0],[-88,1],[-81,1],[-65,1],[-19,0],[-20,-1]],[[39803,72603],[1,-21],[1,-16],[0,-2],[0,-16],[1,-20],[0,-20],[0,-19],[0,-104],[0,-29],[0,-52],[0,-50],[-1,-108],[-1,-44],[1,-60],[1,-127],[0,-109],[0,-147],[0,-180],[0,-50],[0,-31],[1,-70],[0,-22],[0,-38],[-2,-163],[0,-23],[0,-28],[0,-18],[2,-220],[0,-37],[0,-19],[-1,-54],[0,-113],[0,-24],[0,-84],[2,-101],[-1,-9],[0,-181],[0,-1],[0,-17],[0,-18],[2,-63],[3,-157],[0,-13],[-2,-106],[-1,-101],[0,-209],[2,-197],[0,-33],[0,-16],[0,-39],[0,-4],[0,-13],[0,-19],[-1,-128],[-1,-116],[0,-47],[-1,-60],[0,-23],[-3,-199],[0,-28],[0,-13],[2,-175],[2,-149],[1,-71],[0,-18],[1,-79],[0,-106],[0,-234],[0,-18],[-1,-40],[0,-94],[0,-24],[0,-44]],[[39810,67522],[-213,1],[-27,0],[-29,0],[-238,-1],[-158,0],[-94,0],[-155,1],[-35,0],[-61,1],[-216,0],[-141,1],[-4,0],[-24,-1],[-16,0],[-101,-3],[0,-25],[-1,-46],[0,-16],[0,-16],[0,-29],[-1,-87],[-1,-142],[0,-64],[0,-19],[-1,-352],[0,-47],[-1,-36],[0,-166],[0,-196],[0,-74],[-3,-240],[-1,-92],[-1,-52],[0,-16],[3,-22],[-3,-49],[-1,-57],[0,-23],[-1,-107],[-1,-68],[-1,-150],[-1,-57],[-2,-163],[1,-218],[-62,0],[-25,1],[-22,0],[-13,0],[-57,-1],[-79,0],[-1,0],[-36,0],[-8,0],[-41,0],[-1,0],[-33,0],[-52,0],[-52,0],[-23,-1],[-50,1],[-97,0],[-27,0],[-77,0],[-56,0],[-88,1],[-49,0],[-53,0],[-71,0],[-36,0],[-54,0],[-39,0],[-51,0],[-50,1],[-86,0],[-9,0],[-82,1],[-27,0]],[[45843,67518],[-12,0],[-33,0],[-27,0],[-45,-1],[-65,0],[-7,0],[-17,0],[-14,0],[-27,0],[-1,0],[-65,0],[-31,0],[-94,1],[-16,0],[-13,0],[-14,0],[-17,0],[-117,-1],[-4,0],[-14,0],[-15,0],[-90,-1],[-17,0],[-29,0],[-85,1],[-20,0],[-49,0],[-12,0],[-122,0],[-88,0],[-46,1],[-8,0],[-293,0],[-13,1],[-74,0],[-23,0],[-19,0],[-52,0],[-47,0],[-18,0],[-32,0],[-31,0],[-143,1],[-47,0],[-3,0],[-35,-1],[-172,0],[-113,-1],[-4,0],[-200,-1],[-54,0],[-49,0],[-35,0],[-27,-1],[-44,0],[-275,-1],[-19,0],[-39,0],[-15,0],[-2,0],[-40,0],[-62,0],[-72,1],[-16,0],[-49,0],[-61,1],[-126,1],[-51,0],[-100,2],[-100,1],[-13,0],[-12,0],[-17,0],[-17,0],[-13,0],[-16,0],[-50,0],[-51,0],[-16,0],[-13,-1],[-13,0],[-13,0],[-17,1],[-31,0],[-17,0],[-69,1],[-13,0],[-42,0],[-45,0],[-1,0],[-25,0],[-33,0],[-25,0],[-63,0],[-2,0],[-21,0],[-74,-1],[-32,0],[-117,-1],[-97,-1],[-48,0],[-222,3],[-20,0],[-250,0],[-47,0],[-225,0],[-64,0],[-271,0],[-149,0]],[[75995,64850],[0,39],[0,4],[-18,0],[-93,-1],[-20,0],[-389,-2],[-40,-1],[-223,0],[-81,0],[-149,1],[-83,-1],[-38,0],[-37,0],[-32,1],[-12,0]],[[74573,64889],[-26,0],[-61,-1],[0,24],[2,44],[0,3],[-5,31],[0,21],[1,106],[3,414],[5,609],[0,59],[-135,-1],[-117,-1],[-15,0],[-37,0],[-313,1],[-14,0],[-64,0],[-55,0],[-281,1],[-466,1],[0,10],[0,12],[0,195],[0,19],[0,3],[0,36],[0,16],[0,57],[-1,11],[-1,34],[0,23],[0,21],[1,51],[-1,81],[0,1],[0,7],[0,7],[0,42],[1,124],[0,67],[-1,43],[0,13],[0,44],[0,22],[-1,47],[0,18],[-1,77],[0,1],[0,16],[0,4],[-1,57],[1,66],[1,44],[-1,25],[-3,16],[-16,-1],[-70,0],[-52,-1],[-26,0],[-90,1],[-15,-1],[-66,0],[-38,0],[-30,0],[-94,1],[-177,1],[-72,0],[-118,-1],[-134,2],[-12,0],[-50,0],[-63,0],[-23,0],[-103,1],[-78,0],[-102,0],[-72,0],[-72,0],[-78,-1],[-33,-1],[-68,0],[-89,0],[-38,0],[-103,1],[-21,1],[-250,-1],[-130,-1],[-126,-1],[-129,-1],[-41,0],[-1,0],[-192,-1],[-144,0],[-63,-1],[-72,-1],[-97,0],[-223,1],[-296,0],[-145,0],[-102,0],[-58,0],[-155,0],[-282,0],[-149,0],[-116,0],[-186,0],[-57,0],[-56,0],[-57,0],[-55,0],[-11,0],[-270,1],[-187,0],[-69,0],[-151,0],[-124,1],[-168,2],[-20,0],[-140,1],[-122,1],[-329,2],[-254,1],[-125,0],[-128,0],[-78,0],[-60,0],[-251,-4],[-59,0],[-56,-1],[-25,1],[-74,0],[-9,0],[-48,0],[-212,-1],[-62,0],[-156,0],[-138,1],[-11,0],[-110,0],[-162,0],[-232,-1],[-2,251],[0,57],[0,4],[-1,38],[0,86],[0,55],[-1,9],[0,85],[-1,138],[1,34],[0,16],[0,55],[0,1],[-3,286],[0,78],[0,24],[-4,107],[-85,0],[-57,0],[-112,0],[-1,0],[-105,-1],[-245,-1],[-44,0],[-147,-1],[-131,0],[-124,2],[-148,-4],[-55,0],[-5,0],[-164,1],[-78,0]],[[68539,54365],[-19,0],[-24,1],[-23,1],[-15,0],[-15,2],[-23,-1],[-24,1],[-23,0],[-43,0],[-33,0],[-107,2],[-18,0],[-123,3],[-12,0],[-80,1],[-54,1],[-103,1],[-22,1],[-12,0],[-33,0],[-25,0],[-94,0],[-55,0],[-26,1],[-220,2],[-14,0],[-45,0],[-56,1],[-47,1],[-13,0],[-61,2],[-18,-1],[-30,0],[-76,1],[-21,0],[-97,1],[-77,0],[-11,0],[-43,0],[-24,0],[-28,0],[-36,1],[-16,1],[-14,0],[-29,-1],[-18,0],[-11,0],[-90,3],[-18,0],[-36,1],[-6,1],[-10,1],[-5,0],[-20,1],[-13,0],[-23,0],[-5,0],[-34,-1],[-39,0],[-25,1],[-38,0],[-15,0],[-42,1],[-142,2],[-119,2],[-21,0],[-11,0],[-15,0],[-59,0],[-24,-78],[-4,-25],[-2,-32],[-1,-18],[2,-24],[7,-32],[11,-32],[17,-43],[-1,-17],[-13,-9],[-15,-1],[-13,0],[-17,0],[-19,1],[-19,3],[-19,3],[-18,5],[-14,5],[-23,8],[-14,5],[-16,6],[-17,5],[-19,6],[-17,4],[-18,3],[-17,1],[-14,1],[-21,-2],[-14,-2],[-15,-5],[-22,-7],[-21,-8],[-12,-6],[-23,-9],[-22,2],[-14,7],[-12,10],[-14,13],[-12,14],[-11,10],[-30,21],[-16,12],[-11,10],[-12,14],[-9,16],[-9,15],[-9,25],[-6,21],[-7,16],[-6,23],[-7,15],[-14,11],[-9,17],[11,19],[18,21],[10,10],[10,23],[-4,31],[-6,15],[-7,17],[-22,41],[-26,48],[-13,32],[-7,17],[-6,16],[-11,23],[-8,11],[-16,17],[-18,25],[-12,12],[-28,25],[-15,12],[-14,12],[-14,11],[-17,19],[-11,13],[-9,24],[-5,20],[-4,22],[-7,28],[-7,14],[-10,13],[-11,8],[-10,9],[-15,16],[-15,15],[-12,15],[-10,15],[-46,5],[-1,0],[-58,1],[-33,0],[-82,5],[-148,9],[-86,0],[-121,1],[-37,0],[1,18],[0,16],[-1,17],[0,19],[1,37],[2,113],[1,18],[0,23],[0,35],[0,19],[0,29],[0,11],[0,9],[1,22],[0,26],[1,28],[0,16]],[[57587,46585],[-22,2],[-9,0],[-6,0],[-121,0],[-2,0],[-14,0],[-42,1],[-48,0],[-69,1],[-67,0],[-27,1],[-20,0],[-12,0],[-14,0],[-26,0],[-59,0],[-81,0],[-122,-2],[-69,-1],[-51,-1],[-37,-1],[-32,-1],[-26,-1],[-69,-1],[-41,-1],[-42,0],[-129,-2],[-63,-1],[-52,-1],[-145,-2],[-17,0],[-85,-1],[-115,0],[-132,0],[-44,1],[-55,0],[-13,0],[-31,0],[-2,0],[-33,1],[-51,0]],[[87036,5120],[-12,7],[-10,10],[-2,18],[-1,18],[-31,18],[-14,-5],[-13,0],[-16,4],[-40,12],[-9,4],[-3,6],[0,5],[0,3],[1,6],[10,14],[2,2],[0,7],[-3,6],[-4,4],[-6,0],[-3,-3],[-9,-11],[-9,-7],[-6,-2],[-2,0],[-8,1],[-6,2],[-13,6],[-28,20],[-4,4],[-6,9],[-1,8],[-2,21],[-2,15],[-3,8],[-3,4],[-7,3],[-6,0],[-20,-9],[-5,-1],[-63,2],[-4,6],[-20,25],[-1,2],[-43,77],[-10,39],[-31,-7],[-21,23],[-11,6],[-26,4],[-37,5],[-12,17],[-10,12],[-8,10],[-42,53],[-12,14],[-11,15],[-8,10],[-26,33],[-2,2],[-34,35],[-11,4],[-8,2],[-4,-2],[-1,-1],[-6,-4],[-21,-15],[-3,-3],[-9,-16],[-5,-14],[-4,-17],[-1,-3],[-5,-4],[-9,-4],[-12,0],[-5,2],[-11,10],[-5,5],[-12,13],[1,10],[5,30],[0,3],[1,11],[-1,7],[-3,7],[-16,13],[-6,2],[-9,-3],[-8,-5],[-7,-7],[-6,-2],[-6,0],[-9,2],[-6,2],[-21,10],[-4,5],[-27,52],[4,5],[7,9],[11,17],[2,2],[1,2],[0,2],[-1,5],[-4,4],[-30,9],[-28,8],[24,28],[-5,9],[-16,27],[-4,6],[-9,15],[-7,-1],[-21,-2],[-4,4],[-14,13],[-51,49],[-35,26],[-30,-13],[-12,0],[-13,0],[-14,0],[-31,0],[-13,0],[-12,-1],[-13,0],[-33,0],[-4,0],[-123,-1],[-20,0],[-15,0],[-12,0],[-22,0],[-14,0],[-40,-1],[-15,0],[-26,0],[-19,0],[-54,0],[-45,0],[-32,-1],[-22,0],[-26,0],[-40,0],[-18,0],[-13,0],[-52,0],[-2,0],[-12,0],[-20,0],[-47,-1],[-105,0],[-14,-1],[-12,0],[-6,0],[-36,0],[-12,0],[-29,-1],[-1,0],[-24,0],[-36,0],[-20,0],[-8,0],[-11,0],[-14,-1],[-39,0],[-22,0],[-14,0],[-15,0],[-19,-1],[-75,0],[-43,-1],[-58,0],[-24,0],[-22,-1],[1,-22],[0,-32],[1,-33],[-34,0],[-83,-2],[-33,-1],[-93,-1],[-64,-1],[-109,-2],[-54,-1],[-22,0],[-55,-2],[-72,-2],[-83,-1],[-13,-1],[-70,-2],[-36,-1],[-69,-2],[-51,-2],[-18,0],[-41,-1],[-59,-2],[-18,-1],[-41,-1],[-5,0],[-92,-2],[-19,0],[-16,-1],[-65,-1],[-19,-1],[-98,-2]],[[83944,556],[-114,-4]],[[83762,551],[-93,-3],[-27,-1],[-12,-1]],[[83605,546],[-74,-3],[-7,0],[-10,0],[-24,-1],[-25,-1],[-34,-1],[-12,0],[-13,-1],[-27,-1],[-27,-1],[-4,0],[-2,0],[-57,-2],[-113,-5],[-33,-1],[-125,-5],[-47,-2],[-12,0],[-107,-4],[-29,-1],[-608,-24],[-1096,-43],[-893,-35]]],"transform":{"scale":[0.0000829599515795169,0.00006609455671556661],"translate":[-90.41870179999995,41.69611002300013]}} diff --git a/src/js/config/mapconfig/mapfiles/county/mn-counties.json b/src/js/config/mapconfig/mapfiles/county/mn-counties.json new file mode 100644 index 00000000..fb25c318 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/mn-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-97.23908448799983,43.499500660000194,-89.48396557199987,49.384469968000076],"geometries":[{"type":"Polygon","properties":{"name":"MN"},"id":"27069","arcs":[[0,1,2]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27135","arcs":[[3,4,-1,5,6]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27071","arcs":[[7,8,9,10,11]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27137","arcs":[[12,13,14,15,16,17,18,19,20,21,22,23,24,25,-8,26]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27089","arcs":[[27,28,29,30,-2,-5]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27007","arcs":[[-10,31,32,33,34,35,-28,-4,36]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27075","arcs":[[37,38,-13,39]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27119","arcs":[[40,41,42,43,44,45,46,-30]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27113","arcs":[[-36,47,-43,48,-41,-29]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27029","arcs":[[49,50,51,-44,-48,-35]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27125","arcs":[[-42,-49]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27061","arcs":[[-26,52,53,-32,-9]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27087","arcs":[[54,55,-45,-52]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27107","arcs":[[-46,-56,56,57,58]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27021","arcs":[[59,60,61,62,63,64,-33,-54]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27057","arcs":[[-65,65,66,-50,-34]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27005","arcs":[[-67,67,68,69,-57,-55,-51]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27027","arcs":[[-70,70,71,72,-58]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27001","arcs":[[-25,73,74,75,76,77,-60,-53]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27159","arcs":[[-64,78,79,-68,-66]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27035","arcs":[[-78,80,81,-61]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27017","arcs":[[82,83,-74,-24]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27111","arcs":[[-80,84,85,86,87,-71,-69]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27167","arcs":[[-88,88,89,90,-72]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27115","arcs":[[91,92,93,-75,-84]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27153","arcs":[[-63,94,95,96,-85,-79]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27097","arcs":[[-82,97,98,99,-95,-62]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27095","arcs":[[100,101,102,103,-98,-81,-77]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27065","arcs":[[-94,104,-101,-76]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27051","arcs":[[-87,105,106,107,-89]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27041","arcs":[[-97,108,109,-106,-86]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27155","arcs":[[-108,110,111,112,-90]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27009","arcs":[[-104,113,114,-99]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27145","arcs":[[-115,115,116,117,118,119,-109,-96,-100]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27149","arcs":[[120,121,122,-111,-107]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27121","arcs":[[-120,123,124,-121,-110]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27059","arcs":[[125,126,127,-102,-105]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27025","arcs":[[128,129,130,-126,-93]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27011","arcs":[[-112,-123,131,132,133]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27141","arcs":[[-103,-128,134,135,136,-116,-114]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27171","arcs":[[-137,137,138,139,140,-117]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27003","arcs":[[-131,141,142,143,-135,-127]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27067","arcs":[[144,145,146,147,-124,-119]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27151","arcs":[[-148,148,149,-132,-122,-125]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27093","arcs":[[-141,150,151,-145,-118]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27163","arcs":[[152,153,154,-142,-130]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27073","arcs":[[-150,155,156,157,-133]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27053","arcs":[[-136,-144,158,159,160,161,-138]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27023","arcs":[[-147,162,163,-156,-149]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27123","arcs":[[-155,164,-159,-143]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27085","arcs":[[-140,165,166,167,-151]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27019","arcs":[[-162,168,169,-166,-139]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27173","arcs":[[170,171,172,173,174,-157,-164]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27037","arcs":[[-154,175,176,177,178,-160,-165]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27129","arcs":[[-152,-168,179,180,181,182,-171,-163,-146]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27139","arcs":[[-179,183,184,185,-169,-161]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27143","arcs":[[-170,-186,186,187,-180,-167]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27049","arcs":[[188,189,190,191,-177,192]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27127","arcs":[[193,194,195,196,-172,-183]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27081","arcs":[[197,198,199,-174]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27083","arcs":[[-197,200,201,-198,-173]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27079","arcs":[[202,203,204,205,-187,-185]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27131","arcs":[[-178,-192,206,207,208,-203,-184]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27015","arcs":[[209,210,211,212,-194,-182]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27103","arcs":[[213,-210,-181,-188,-206]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27157","arcs":[[214,215,216,-189]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27013","arcs":[[-205,217,218,219,220,-211,-214]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27117","arcs":[[-202,221,222,223,-199]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27101","arcs":[[-196,224,225,226,-222,-201]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27147","arcs":[[227,228,229,230,-208]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27039","arcs":[[231,232,-228,-207,-191]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27161","arcs":[[-231,233,234,-218,-204,-209]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27109","arcs":[[-217,235,236,237,-232,-190]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27033","arcs":[[-213,238,239,240,-225,-195]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27169","arcs":[[241,242,243,-236,-216]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27165","arcs":[[-221,244,245,-239,-212]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27133","arcs":[[-227,246,247,-223]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27105","arcs":[[-241,248,249,-247,-226]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27047","arcs":[[250,251,252,-234,-230]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27099","arcs":[[-238,253,254,-251,-229,-233]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27055","arcs":[[255,256,-243]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27045","arcs":[[-244,-257,257,-254,-237]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27063","arcs":[[-246,258,259,-249,-240]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27043","arcs":[[-235,-253,260,261,-219]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27091","arcs":[[-220,-262,262,-259,-245]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27077","arcs":[[-11,-37,-7,263]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27031","arcs":[[264]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27031","arcs":[[265,-38,266]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27000","arcs":[[267,-16]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27000","arcs":[[-14,-39,-266,268],[-265],[269],[270],[271]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27031","arcs":[[-272]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27031","arcs":[[-271]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27031","arcs":[[-270]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27000","arcs":[[-22,272]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27000","arcs":[[273,-20]]},{"type":"Polygon","properties":{"name":"MN"},"id":"27000","arcs":[[-18,274]]}]},"states":{"type":"GeometryCollection","bbox":[-97.23908448799989,43.499500660000194,-89.48396557199987,49.384469968000076],"geometries":[{"type":"MultiPolygon","properties":{"name":"Minnesota"},"id":"27","arcs":[[[-272]],[[-271]],[[-270]],[[264]],[[11,26,39,266,265,38,13,14,15,16,17,18,19,20,21,22,82,91,128,152,175,192,214,241,255,257,254,251,260,262,259,249,247,223,199,174,157,133,112,90,72,58,46,30,2,5,263]]]}]}},"arcs":[[[10750,93467],[-2,-102],[0,-232],[0,-6],[0,-12],[1,-59],[1,-187],[0,-229],[0,-18],[1,-119],[0,-129],[0,-108],[-1,-138],[0,-225],[1,-238],[-1,-27],[3,-52],[2,-245],[0,-67],[0,-19],[1,-63],[3,-221],[0,-47],[0,-22],[0,-22],[0,-120],[1,-606],[0,-29],[0,-426],[0,-45],[0,-2],[-2,-246],[-4,-189],[-1,-63],[2,-114],[2,-132],[-1,-47],[0,-201],[225,1],[11,-243],[-7,-98],[-2,-5],[-3,-2],[-2,-141],[-5,-482],[0,-26],[5,-62],[-2,-157],[0,-16],[0,-17],[-3,-71],[0,-24],[3,-118],[-6,-106],[-4,-72],[-4,-116],[-1,-99],[-1,-99],[4,-105],[4,-29],[4,-116],[1,-242],[0,-250],[4,-244]],[[10977,85721],[-36,0],[-221,-4],[-29,0],[-194,-3],[-84,-1],[-282,-2],[-298,-3],[-85,0],[-42,-1],[-46,0],[-75,0],[-23,0],[-36,3],[-226,0],[-104,0],[-172,-5],[-42,-1],[-20,0],[-14,1],[-278,3],[-214,3],[-292,0],[-40,0],[-210,1],[-30,0],[-76,0],[-45,0],[-144,0],[-1,0],[-16,0],[-280,-1],[-283,0],[-283,-1],[-70,0],[-209,-1],[-67,0],[-108,1],[-106,0],[-282,-1],[-150,0],[-135,0],[-218,0],[-59,-1],[-288,-2],[-276,0],[-98,-1],[-188,1],[-20,-1],[-8,0],[-28,0],[-90,-1],[-131,2],[-254,2],[-22,0],[-21,1],[-267,4],[-278,3],[-281,3],[-23,0],[-253,1],[-280,1],[-281,-1],[-74,-2],[-77,0],[-130,0],[-280,-2],[-142,0],[-95,1],[-44,-1],[-140,0],[-52,0],[-163,0],[-79,-14]],[[989,85702],[-22,30],[-25,64],[-1,61],[4,13],[17,15],[10,5],[24,0],[22,-13],[29,-25],[15,-9],[19,-4],[187,4],[21,9],[15,17],[-1,22],[-10,17],[-27,22],[-19,8],[-63,8],[-111,-1],[-29,-5],[-100,1],[-43,15],[-66,35],[-7,63],[37,18],[27,9],[29,5],[87,5],[94,14],[19,9],[47,49],[6,43],[7,46],[-43,39],[-77,4],[-30,8],[-17,17],[0,24],[2,7],[15,13],[31,13],[41,-4],[61,-25],[39,0],[14,7],[17,17],[9,24],[12,57],[1,80],[-7,13],[-25,19],[-39,2],[-24,-5],[-36,0],[-20,12],[-5,18],[22,32],[11,11],[80,-3],[12,4],[29,29],[21,43],[19,26],[53,40],[5,8],[0,18],[-10,10],[-12,7],[-39,-1],[-56,-13],[-41,-1],[-22,7],[-14,10],[-3,2],[-7,11],[-5,13],[-1,24],[8,13],[16,15],[17,11],[19,7],[37,7],[36,0],[19,-2],[4,-3],[13,-1],[51,-21],[15,-2],[29,2],[19,20],[0,22],[-13,23],[-73,62],[2,20],[12,11],[7,2],[37,0],[19,-8],[25,-21],[34,-43],[17,-13],[37,-2],[7,2],[17,16],[2,36],[-13,20],[-64,62],[-51,32],[-24,21],[-7,11],[-2,12],[-1,17],[3,16],[2,6],[69,30],[21,-4],[19,-8],[25,-15],[19,-16],[25,-16],[19,-7],[13,-2],[28,4],[14,7],[14,12],[9,14],[4,6],[4,12],[3,10],[-1,13],[-5,25],[-5,19],[-6,21],[-5,11],[-5,12],[-5,6],[-14,16],[-40,33],[-8,13],[0,10],[7,14],[6,4],[11,5],[47,10],[9,6],[9,9],[12,14],[4,6],[4,9],[3,12],[2,15],[-1,10],[1,5],[1,9],[3,12],[3,9],[14,20],[9,10],[18,18],[12,10],[11,11],[14,18],[10,14],[5,8],[3,11],[0,17],[-1,5],[-4,5],[-6,9],[-8,5],[-14,6],[-7,1],[-16,-2],[-32,-7],[-13,-1],[-13,3],[-9,4],[-6,5],[-3,7],[-1,8],[2,7],[6,6],[5,5],[25,8],[18,6],[25,11],[19,13],[7,7],[5,8],[3,9],[2,13],[-9,122],[-5,24],[-6,27],[-1,10],[-1,15],[3,10],[4,9],[4,7],[4,6],[9,4],[10,2],[13,-1],[14,-3],[36,-16],[21,0],[12,3],[6,4],[7,6],[5,8],[2,8],[-2,13],[-3,6],[-4,6],[-18,15],[-23,10],[-18,7],[-53,15],[-67,21],[-13,4],[-28,14],[-16,9],[-13,13],[-6,6],[-15,27],[-26,46],[-18,22],[-12,12],[-35,31],[-13,12],[-10,18],[-2,7],[0,13],[4,7],[4,6],[5,5],[10,6],[19,6],[33,6],[18,2],[21,4],[9,4],[9,8],[8,16],[0,11],[-2,4],[-11,10],[-11,6],[-29,13],[-35,10],[-13,5],[-13,8],[0,1],[-51,84],[-40,71],[-9,13],[-20,15],[-95,53],[-22,19],[-5,9],[-1,15],[15,13],[38,9],[15,1],[29,11],[19,19],[2,35],[-20,21],[-17,7],[-99,-4],[-12,5],[-22,17],[-8,15],[0,17],[7,11],[34,26],[21,27],[14,41],[2,24],[-3,47],[-12,28],[-15,15],[-25,9],[-31,-1],[-29,-9],[-53,2],[-13,4],[-29,26],[-10,15],[-18,41],[0,39],[12,19],[14,13],[63,27],[17,15],[9,16],[2,30],[-2,11],[-18,23],[-17,15],[-20,24],[-22,47],[-15,13],[-53,8],[-26,23],[-2,5],[7,26],[10,9],[97,29],[21,11],[20,22],[-1,13],[-30,19],[-74,-3],[-49,42],[19,47],[18,44],[-68,20],[-19,6],[-35,4],[-59,0],[-17,2],[-28,23],[-3,30],[21,20],[25,7],[29,-2],[5,-5],[24,-4],[24,1],[10,4],[19,18],[-3,34],[-5,9],[-19,17],[-15,6],[-17,4],[-39,-2],[-36,-18],[-58,-53],[-34,-2],[-10,2],[-14,13],[-3,28],[14,17],[22,11],[36,10],[111,51],[88,18],[21,15],[12,11],[3,7],[-1,34],[-2,7],[-15,13],[-22,10],[-27,6],[-61,-5],[-19,-6],[-44,3],[-22,9],[-59,43],[-34,10],[-34,0],[-41,-16],[-27,2],[-12,11],[0,17],[31,22],[36,7],[44,18],[26,26],[17,30],[9,33],[0,15],[-18,28],[-49,43],[-22,30],[-5,34],[4,13],[22,20],[24,5],[27,0],[31,11],[34,31],[2,37],[-8,56],[-13,26],[-27,19],[-58,8],[-10,8],[0,13],[17,11],[34,1],[38,7],[27,17],[9,13],[0,22],[-5,13],[-5,9],[-54,47],[-7,8],[-5,15],[-1,5],[-4,4],[-1,26],[5,24],[-1,34],[-22,24],[-37,2],[-24,-5],[-19,-9],[-29,0],[-15,15],[0,19],[14,27],[19,17],[39,26],[36,33],[43,40],[9,13],[3,24],[-20,19],[-10,4],[-36,0],[-39,-9],[-46,-1],[-42,17],[-54,28],[-25,21],[-12,21],[0,31],[30,50],[0,26],[-10,15],[-44,43],[0,11],[7,8],[27,1],[12,-2],[29,-15],[34,-4],[20,9],[14,13],[9,19],[-2,35],[-23,26],[-24,21],[-20,11],[-54,23],[-73,21],[-39,17],[-35,32],[-15,26],[-7,23],[-1,41],[23,61],[0,26],[2,13],[-10,20],[-24,21],[-52,19],[-19,17],[-13,24],[2,39],[28,56],[36,48],[2,22],[-20,22],[-75,-6],[-24,13],[-18,15],[-15,30],[-10,63],[1,43],[7,22],[0,39],[-17,17],[-56,-5],[-15,6],[-12,11],[-1,24],[42,150],[12,24],[26,32],[7,18],[-3,15],[-14,15],[-30,13],[-22,-1],[-56,15],[-22,23],[-1,52],[14,44],[0,23],[-2,90],[-5,34],[2,37],[7,28],[14,29],[21,30],[24,24],[56,31],[29,27],[0,17],[-13,11],[-17,4],[-27,-3],[-22,6],[-17,15],[2,29],[25,23],[39,23],[147,-1],[126,0],[7,0],[5,0],[48,0],[98,0],[279,0],[290,0],[6,0],[278,0],[284,-1],[285,0],[284,0],[284,0],[284,-1],[284,0],[285,0],[284,0],[284,-1],[284,0],[284,0],[285,0],[284,0],[283,-1],[239,0],[12,0],[12,0],[22,0],[284,0],[284,0],[285,0],[283,0],[285,0],[285,-1],[283,0],[284,0],[284,0],[285,0],[285,0],[284,0],[283,0],[179,0],[108,0],[305,-1],[217,0],[6,0],[40,0],[305,0],[219,0]],[[24455,85653],[-220,2],[-49,0],[-40,-1],[-113,-4],[-72,0],[-47,0],[-20,1],[-97,0],[-152,-1],[-13,0],[-20,1],[-48,-1],[-30,0],[-60,-1],[-120,-1],[-20,-1],[-74,2],[-7,0],[-40,1],[-14,2],[-123,-5],[-24,-1],[-137,-1],[-119,-1],[-20,-1],[-215,-7],[-47,-1],[-92,0],[-65,-1],[-144,-2],[-61,0],[-15,0],[-183,-2],[-74,-1],[-170,-1],[-34,-1],[-27,2],[-174,-3],[-5,0],[-25,0],[-80,-1],[-59,-1],[-105,3],[-80,2],[-15,0]],[[21106,85629],[-35,1],[-27,1],[-67,3],[-71,-1],[-70,0],[-26,1],[-141,2],[-102,2],[-95,1],[-54,0],[-141,0],[-91,0],[-53,1],[-118,0],[-22,0],[-278,-1],[-28,1],[-42,1],[-211,5],[-3,0],[-233,7],[-284,5],[-42,1],[-14,0],[-125,0],[-103,0],[-41,0],[-83,-1],[-200,-8],[-117,2],[-24,1],[-67,0],[-25,0],[-29,0],[-289,15],[-27,10],[-142,1],[-55,2],[-14,1],[-101,2],[-69,-1],[-4,0],[-372,-1],[-51,-1],[-2,4],[-69,1],[-151,3],[-48,0],[-27,2],[-265,7],[-297,9],[-83,2],[-4,0],[-125,2],[-75,0],[-239,1],[-93,0],[-227,1],[-284,-2],[-15,-2],[-2,1],[-2,0],[-183,2],[-72,0],[-295,5],[-14,0],[-83,0],[-21,0],[-36,0],[-167,4],[-21,0],[-83,2],[-69,2],[-72,2],[-14,-1],[-20,0],[-2,0],[-49,1],[-142,1],[-68,0],[-280,4],[-57,1],[-155,4],[-66,-1],[-193,-2],[-90,-1],[-142,-1],[-145,-2],[-154,-2],[-230,-4],[-177,-1],[-284,0],[-171,-2],[-111,-2],[-108,0],[-118,2],[-43,0]],[[10750,93467],[44,0],[305,0],[263,0],[304,0],[264,0],[305,-1],[263,0],[305,0],[148,0],[116,0],[137,0],[45,0],[53,0],[70,0],[30,0],[254,0],[284,0],[19,0],[170,0],[95,0],[284,-1],[283,0],[284,0],[283,0],[146,0],[138,0],[276,0],[60,0],[277,-1],[4,0],[6,0],[28,0],[375,0],[308,-1],[509,-1],[104,0],[167,-1],[90,0],[9,0],[463,-1],[454,-1],[184,0],[33,0],[93,0],[6,0],[140,0],[380,-1],[152,0],[532,-2],[54,0],[20,0],[252,0],[252,-1],[43,0],[415,0],[163,-1],[295,0],[426,-1],[145,-1],[248,0],[33,0],[79,0],[319,-1],[23,0],[154,0],[185,-1],[55,0],[321,-1],[205,0],[38,0],[5,0],[7,0],[3,0],[310,-1],[138,0],[154,0],[2,0],[23,0],[50,0],[12,0]],[[24721,93448],[18,-34],[3,-3],[0,-2],[2,-18],[-1,-12],[-1,-5],[-7,-49],[-21,-49],[-20,-43],[-3,-8],[-5,-18],[-5,-17],[-4,-11],[-5,-29],[-18,-70],[16,-147],[37,-24],[22,-14],[1,-6],[11,-69],[1,-27],[-3,-18],[-1,-7],[18,-36],[10,-13],[4,-39],[5,-22],[1,-1],[29,-19],[16,-10],[14,-7],[15,-2],[-7,20],[-1,17],[12,-6],[10,-15],[17,-2],[51,-28],[3,-1],[1,-4],[2,-28],[1,-18],[-12,-14],[-13,-1],[9,14],[-5,11],[-6,11],[-14,7],[-16,1],[-12,7],[15,-14],[16,-4],[9,-12],[2,-2],[-4,2],[-14,5],[-14,4],[-16,-19],[-47,2],[-22,2],[-75,-78],[-11,-26],[-1,-5],[-3,-18],[2,-28],[6,-26],[-1,-5],[1,-4],[1,-16],[3,-27],[18,-37],[17,-33],[35,-68],[22,-40],[24,-41],[17,-33],[21,-38],[1,-2],[3,-2],[9,-8],[19,-14],[18,-20],[27,-17],[20,-31],[0,-1],[14,-12],[22,-13],[22,-4],[6,-1],[-3,-6],[-7,-14],[-20,-25],[-2,-3],[-5,-9],[-6,-11],[11,-7],[11,-6],[14,-11],[21,-2],[23,2],[11,-6],[4,-3],[13,-7],[3,-2],[21,-14],[15,-14],[2,-2],[10,-20],[7,-12],[1,-1],[11,-6],[4,-2],[6,0],[11,1],[22,-3],[23,-9],[27,-11],[13,-10],[23,-1],[13,3],[12,-26],[2,-4],[9,-17],[27,-17],[4,-3],[11,-7],[4,-2],[44,-22],[12,-12],[8,-5],[7,-5],[10,-5],[9,-4],[12,-7],[4,-2],[1,0],[35,-11],[18,-6],[19,-15],[14,-14],[11,-6],[4,-2],[1,-1],[22,-5],[17,-5],[13,-5],[11,-3],[3,-1],[5,-1],[2,0],[7,-1],[17,4],[18,-9],[24,-10],[14,-2],[48,-5],[13,-4],[33,-4],[27,-2],[32,0],[29,3],[29,1],[28,9],[17,5],[13,4],[20,7],[14,3],[5,0],[25,4],[20,8],[21,5],[21,0],[48,6],[33,-11],[9,-4],[108,18],[30,-5],[30,5],[18,11],[11,0],[111,0],[115,24],[64,24],[88,22],[32,-5],[48,18],[14,13],[29,10],[19,11],[17,0],[19,6],[13,4],[26,9],[44,15],[30,10],[24,13],[9,5],[8,2],[8,3],[9,6],[19,11],[5,3],[59,28],[25,13],[6,1],[10,3],[15,8],[15,11],[1,2],[13,7],[30,19],[25,14],[15,15],[0,1],[64,52],[14,27],[10,8],[4,3],[25,20],[6,5],[18,12],[13,10],[15,9],[15,17],[27,22],[13,4],[17,32],[23,24],[45,26],[0,-21],[0,-59],[0,-83],[0,-162],[0,-3],[1,-17],[0,-4],[1,-224],[0,-22],[1,-178],[1,-45],[1,-143],[0,-40],[0,-59],[0,-53],[1,-49],[0,-21],[0,-25],[2,-102],[1,-80],[0,-4],[1,-46],[1,-116],[1,-248],[1,-182],[0,-19],[0,-1],[0,-21],[0,-18],[0,-4],[1,-9],[0,-7],[0,-1],[0,-45],[0,-76],[1,-90],[0,-9],[1,-257],[0,-71],[1,-19],[-1,-94],[0,-33],[1,-17],[4,-107],[1,-14],[-4,-131],[-1,-29],[-1,-33],[0,-81],[1,-214],[0,-31],[0,-108],[-71,-1],[-61,-1],[-177,2],[-147,2],[-35,-1],[-74,-1],[-107,-2],[-38,-2],[-24,0],[-2,1],[-6,0],[-84,1],[-126,0],[-80,0],[-282,1],[-141,0],[-70,1],[-35,0],[-340,0],[-20,0],[-69,0],[-44,1],[-35,1],[-173,-1],[-7,0],[-21,0],[-74,-1],[-20,0],[-50,0],[-229,-1],[-98,-1],[-273,-1],[-7,0],[-50,0],[-25,0],[-59,0],[-87,1],[-13,0],[0,-76],[0,-60],[-1,-253],[0,-196],[0,-19],[1,-120],[0,-110],[-1,-85],[0,-53],[-1,-244],[1,-70],[0,-17],[-1,-136],[0,-24],[1,-32],[0,-42],[0,-4],[-2,-226],[0,-73],[0,-35],[1,-80],[-3,-15],[0,-874],[0,-39],[0,-1],[1,-51]],[[53521,87140],[0,-2],[-1,-46],[-3,-84],[-1,-21],[-1,-48],[-5,-189],[-2,-65],[-2,-37],[-1,-22],[-1,-33],[0,-8],[-1,-137],[-2,-203],[-1,-41],[-1,-108],[0,-1],[-1,-85],[0,-12],[-1,-40],[-1,-139],[1,-24],[-1,-31],[0,-49],[-1,-148],[0,-95],[-1,-162],[0,-48],[0,-36],[0,-11],[-2,-247],[-2,-165],[0,-21],[-14,-913],[-2,-191],[-3,-159],[-14,0],[-1,-88],[-2,-118],[0,-51],[-1,-41],[-2,-134],[0,-35],[-1,-88],[-2,-120],[-1,-383],[-1,-64],[0,-21],[0,-2],[0,-44],[-2,-140],[-1,-38],[0,-39],[-3,-536],[-1,-172],[0,-4],[-1,-173],[0,-325],[-2,-107],[-2,-76],[5,-126],[-37,0],[1,-81],[2,-321],[1,-109],[0,-88],[2,-231],[1,-243],[0,-79],[3,-320],[0,-23],[1,-55],[-2,-43],[-3,-107],[-1,-1],[2,-234],[0,-63],[1,-165],[0,-2],[0,-40],[0,-22],[1,-34],[0,-64],[0,-1],[1,-285],[3,-208],[2,-149],[97,2],[2,-33],[-3,-94],[1,-33],[0,-126],[-1,-64],[2,-185],[0,-26],[2,-220],[0,-31],[-1,-81],[0,-19],[0,-82],[0,-34],[5,-47],[7,-79],[1,-2],[1,-41],[2,-83],[-1,-29],[-5,-78],[-1,-7],[-1,-3],[-1,-125],[97,0],[-1,-146],[-2,-128],[-1,-118],[-1,-51],[-2,-162],[3,-64],[-1,-24],[-1,-32],[0,-28],[-2,-67],[1,-156],[0,-39],[-1,-208],[1,-92],[1,-81],[0,-35],[1,-39]],[[53615,74636],[-85,3],[-197,5],[-83,2],[-122,4],[-81,4],[-114,-2],[-153,-2],[-190,4],[-65,1],[-8,0],[-14,1],[-34,1],[-72,0],[-132,1],[-210,1],[-78,1],[-136,3],[-27,0],[-167,3],[-39,0],[-22,-1],[-76,0],[-49,-1],[-26,1],[-98,1],[-120,2],[-202,1],[-111,0],[-16,0],[-33,1],[-66,0],[-93,0],[-120,1],[-162,1],[-131,1],[-67,0],[-40,0],[-18,0],[-26,0],[-135,1],[-173,3],[-26,0],[-38,0],[-253,1],[-45,1],[-53,0],[-30,0],[-118,1],[-160,1],[-153,2],[-60,1],[-10,0],[-122,3],[-108,3],[-15,0],[-149,5],[-129,5],[-72,4],[-71,2],[-235,7],[-76,3],[-117,4],[-168,6],[-341,17],[-181,-4],[-18,0],[-20,0],[-51,-1],[-19,0],[-14,-1],[-46,-1],[-217,-1],[-109,-1],[-289,-1],[-367,-1],[-73,0],[-181,1],[-95,1],[-188,-3],[-92,-1],[-2,23],[-174,-1],[-4,0],[-147,4],[-231,-1],[-84,0],[-15,1],[0,-16],[0,-18],[-2,-232],[0,-54],[-2,-52],[-2,-28],[0,-1],[-1,-95],[0,-18],[-1,-58],[1,-149],[0,-13],[0,-2],[0,-3],[0,-17],[0,-48],[1,-88],[-116,0],[-211,2],[-121,0],[-16,0],[-45,1],[-4,0],[-148,1],[-404,2],[-95,1],[-116,4],[-127,1],[-1,0],[-276,1],[-37,0],[-129,1],[-29,0],[-221,1],[-255,1],[-170,1],[-185,1],[-182,1],[-485,-5],[-52,-1],[-503,-4],[-9,0],[-548,-6],[-15,0],[-353,-2],[-139,1],[-1,0],[-30,-1],[-139,0],[-44,-1],[-247,-3],[-256,-3],[-313,0],[-47,-2],[-43,4],[-28,-2],[-92,1],[-112,0],[-264,-2],[-201,-1],[-590,6],[-177,1],[-113,-2],[-28,0],[-124,-1],[-42,0],[-44,-1],[-3,0],[-85,-1],[-267,-4]],[[36370,73854],[-1,150],[0,93],[0,2],[0,87],[0,78],[0,2],[-1,35],[1,48],[11,545],[0,114],[0,82],[2,244],[-1,125],[0,221],[3,111],[0,201],[-1,45],[-1,31],[1,14],[-1,108],[-2,106],[-1,44],[2,5],[0,17],[0,51],[0,61],[0,70],[-1,266],[-76,0],[0,280],[0,572],[0,68],[2,41],[2,36],[0,64],[1,101],[1,55],[0,95],[-1,147],[-1,31],[1,69],[-3,151],[1,77],[1,163],[7,1],[-1,201],[1,172],[3,8],[0,36],[-5,385],[-2,150],[0,26],[-1,194],[0,52],[-3,142],[-11,594],[-4,495],[-5,493],[-5,492],[-5,514],[-38,0]],[[36239,82715],[-4,130],[-2,241],[-1,120],[-1,55],[-1,72],[-1,83],[0,56],[-1,104],[0,6],[-1,118],[0,56],[0,183],[1,70],[0,21],[0,47],[1,39],[0,47],[-1,28],[-1,43],[-3,147],[-1,58],[-1,126],[0,60],[-2,245],[0,60],[0,39],[0,84],[-2,120],[1,244],[1,126],[1,115],[1,74],[1,173],[0,1],[2,88],[2,100],[1,70],[2,97],[4,99],[0,9],[0,100],[0,8],[1,48],[0,39],[0,22],[-1,31],[0,29],[-1,27],[-6,125],[1,193],[0,37],[-1,36],[0,29],[0,37],[-1,22],[-1,142],[-1,29],[-1,115],[-2,187],[0,2],[-1,98],[-2,146],[3,124],[0,30],[-1,36],[-1,56],[0,24],[0,1],[0,82],[0,4],[1,73],[-1,58],[0,4],[0,21]],[[36219,88384],[65,61],[13,13],[36,56],[32,28],[40,13],[65,-5],[61,-4],[40,5],[180,20],[63,-2],[50,-14],[147,-77],[93,-19],[107,-21],[131,-12],[135,13],[9,1],[42,4],[12,5],[83,31],[162,63],[136,-25],[91,-17],[106,-37],[108,-98],[130,-15],[44,-41],[39,-83],[66,-91],[20,-46],[9,-94],[-30,-150],[-23,-90],[2,-43],[48,-77],[53,-47],[30,-12],[52,-7],[89,-12],[121,-49],[81,-1],[44,-1],[191,27],[142,-9],[91,-13],[144,-20],[34,-5],[133,-41],[68,-4],[168,8],[105,-17],[60,-10],[4,-1],[46,0],[6,0],[155,-1],[130,27],[112,-37],[81,7],[97,1],[9,0],[68,30],[40,2],[32,2],[21,-41],[51,-11],[39,6],[62,10],[119,-10],[98,-41],[46,-1],[33,-1],[1,0],[146,20],[144,20],[80,-7],[143,-40],[72,-7],[81,-27],[126,-1],[108,-21],[86,-52],[244,-26],[221,4],[5,5],[19,17],[7,6],[13,13],[29,-4],[71,-8],[8,-2],[109,-29],[23,-6],[69,-6],[66,-5],[4,0],[44,1],[64,1],[76,-13],[249,-5],[32,-1],[48,-9],[101,-45],[39,-33],[54,-136],[22,-28],[40,-50],[39,-65],[51,-208],[57,-153],[46,-76],[41,-67],[28,-158],[-13,-100],[-37,-127],[-51,-112],[22,-99],[-9,-60],[-91,-102],[-6,-60],[30,-49],[65,-65],[105,-46],[110,-85],[14,-11],[59,-7],[11,-1],[70,2],[39,1],[92,3],[53,2],[3,0],[23,1],[58,3],[106,-14],[186,47],[104,-1],[134,-14],[34,4],[92,12],[61,-8],[169,-49],[24,1],[32,1],[27,1],[99,21],[14,3],[77,-2],[162,-4],[154,21],[51,22],[39,37],[11,11],[25,57],[23,55],[60,49],[35,10],[35,-7],[58,-86],[11,-9],[47,-36],[1,-1],[57,-22],[91,12],[115,94],[79,30],[37,-18],[24,-11],[56,-27],[62,-2],[206,45],[11,0],[151,-5],[67,11],[76,33],[28,8],[97,28],[126,13],[207,111],[75,20],[126,12],[234,55],[62,56],[6,12],[16,27],[15,28],[26,103],[0,22],[2,103],[-15,26],[-17,32],[-25,44],[-27,104],[-5,19],[-8,30],[-19,74],[-1,2],[-8,31],[11,14],[9,12],[2,29],[9,4],[27,14],[103,-2],[192,19],[65,28],[18,21],[10,11],[36,41],[92,60],[44,6],[51,29],[12,18],[112,60],[28,2],[7,-39],[18,2],[3,0],[35,-57],[42,-11],[56,14],[9,2],[85,21],[159,-2],[53,39],[24,35],[45,65],[42,-21],[26,-13],[21,-10],[6,7],[15,17],[1,1],[3,3],[2,3],[4,4],[-9,24],[0,1],[6,18],[7,25],[19,59],[11,38],[17,55],[15,4],[216,49],[134,31],[83,19],[315,72],[11,3],[437,100],[2,0],[93,0],[514,-5],[1,0],[275,-221],[28,-22],[72,-84],[88,6],[264,18],[540,36],[243,17],[25,-1]],[[70157,79922],[0,-1],[0,-61],[-1,-120],[-1,-238],[0,-4],[-1,-258],[0,-50],[-1,-158],[0,-18],[0,-19],[0,-28],[-2,-323],[0,-30],[0,-18],[3,-46],[-2,-80],[-12,-351],[-2,-72],[0,-5],[-5,-146],[0,-4],[0,-33],[0,-112],[0,-18],[0,-7],[0,-34],[0,-10],[0,-15],[0,-27],[0,-42],[0,-20],[0,-76],[0,-21],[0,-253],[-1,-26],[-1,-41],[-2,-119],[1,-30],[1,-38],[0,-13],[2,-76],[0,-198],[0,-58],[0,-48],[2,-103],[0,-2],[1,-26],[4,-119],[5,-213],[1,-33],[4,-147],[4,-99],[1,-19],[0,-23],[2,-46],[0,-3],[1,-28],[0,-18],[1,-22],[1,-19],[1,-49],[0,-7],[1,-65],[0,-70],[0,-24],[0,-35],[0,-2],[0,-79],[0,-1],[1,-51],[0,-82],[0,-4],[0,-28],[0,-18],[0,-23],[0,-22],[4,-32],[10,-89],[-16,-128],[5,-118],[-1,-49],[-1,-22],[-2,-37],[-2,-46],[0,-21],[-1,-29],[0,-4],[0,-20],[0,-1],[-1,-19],[0,-23],[0,-5],[-1,-51],[-2,-50],[0,-8],[-1,-52],[0,-1],[-1,-45],[-3,-122],[-3,-115],[0,-1],[-2,-115],[-1,-19],[0,-1],[-1,-38],[-3,-80],[-6,-139],[-1,-246],[0,-25],[1,-105],[0,-114],[3,-195],[1,-51],[1,-192],[1,-53],[2,-126],[2,-119],[0,-38],[0,-129],[0,-81],[0,-12],[1,-75],[0,-8],[1,-91],[0,-15],[0,-19],[2,-40],[5,-147],[0,-29],[5,-54],[3,-30],[14,-190],[9,-143],[6,-114],[1,-34],[0,-2],[1,-55],[0,-85],[0,-23],[2,-38],[-5,-125],[3,-32],[5,-50],[5,-51],[2,-20],[1,-33],[4,-128],[6,-118],[3,-41],[3,-68],[2,-28],[3,-61],[5,-84],[0,-59],[6,-86],[2,-23],[7,-193],[7,-196],[3,-77],[1,-22],[6,-42],[11,-78],[2,-116],[0,-16],[1,-72],[0,-1],[0,-60],[2,-102],[11,-184],[-8,-261],[-2,-73],[0,-16],[-2,-80],[-1,-32],[0,-43],[0,-5],[-2,-116],[0,-18],[-1,-96],[-1,-57],[-1,-41],[0,-2],[-1,-70],[-3,-426],[0,-8],[-1,-180],[0,-3],[-1,-87],[-2,-235],[0,-4],[-1,-145],[-2,-213],[0,-22],[-1,-117],[0,-125],[0,-3],[-1,-41],[-1,-157],[-1,-153],[0,-92],[-2,-41],[-16,0],[-1,-65],[0,-173],[0,-18],[-1,-139],[0,-51],[0,-102],[0,-79],[-1,-128],[0,-4],[0,-189],[-1,-46],[0,-94],[0,-4],[0,-144],[-1,-81],[0,-167],[-1,-137],[0,-26],[0,-181],[-1,-151],[0,-104],[2,-113],[0,-28],[0,-24],[0,-2],[1,-108],[0,-1],[0,-59],[-3,-538],[0,-136],[-1,-492],[-1,-518],[0,-105],[1,-22],[10,-207],[-31,0],[2,-181],[1,-84],[1,-292],[1,-355],[0,-21],[0,-39],[-11,-349],[2,-20],[-1,-123],[1,-152],[0,-9],[-1,-85],[4,-185],[1,-180],[0,-58],[1,-159],[0,-1],[0,-135],[0,-94],[0,-26],[-1,-86],[1,-57],[1,-98],[0,-33],[0,-30],[0,-26],[0,-21]],[[70212,58476],[-3,-6],[-4,-7],[-20,-34],[-44,-9],[-35,-21],[-27,-18],[-23,-20],[-26,-28],[-38,-28],[-19,-30],[-30,-44],[-35,-37],[-33,8],[-31,9],[-34,25],[-38,12],[-11,-1],[-30,-1],[-33,-5],[-11,-1],[-42,-11],[-9,-4],[-27,-11],[-39,-24],[-52,-32],[-27,-30],[-16,-23],[-7,-11],[-7,-12],[-17,-32],[-29,-35],[-14,-9],[-12,-9],[-20,-16],[-18,-17],[-23,-10],[-9,-4],[-32,-17],[-35,-8],[-9,0],[-38,-3],[-38,-9],[-21,-5],[-43,-8],[-27,-14],[-9,-4],[-16,-12],[-13,-10],[-11,-9],[-22,-17],[-46,-34],[-24,-18],[-3,-3],[-53,-45],[-117,-101],[-110,-126],[-20,-13],[-59,-39],[-196,-114],[-57,-26],[-84,-49],[-74,-44],[-164,-151],[-135,-61],[-115,-84],[-93,-122],[-27,-22],[-5,-4],[-30,-23],[-90,-44],[-7,-3],[-4,-2],[-30,-19],[-26,-10],[-68,-25],[-61,-32],[-56,-44],[-5,-4],[-20,-16],[-5,-7],[-24,-39],[-50,-41],[-22,-12],[-11,-6],[-23,-12],[-1,-1],[-28,-15],[-45,-1],[-115,-101],[-1,0],[-41,-42],[-6,-4],[-36,-22],[-25,-17],[-57,-94],[-43,-23],[-33,-6],[-21,-23],[-31,-10],[-32,-20],[-10,-8],[-27,-18],[-40,-25],[-15,-6],[-1,-1],[-31,-13],[-23,-23],[-21,-20],[-2,-2],[-8,-8],[-35,-38],[-13,-14],[0,-2],[1,-4],[1,-21],[1,-22],[42,-150],[17,-38],[7,-12],[10,-19],[11,-18],[8,-13],[18,-29],[9,-16],[15,-26],[23,-41],[31,-45],[28,-48],[4,-11],[3,-9],[41,-56],[11,-14],[2,-3],[2,-4],[7,-16],[17,-16],[118,-169],[118,-142],[91,-110],[9,-16],[11,-21],[50,-52],[81,-85],[32,-38],[10,-13],[31,-36],[18,-9],[46,-1],[42,0],[17,-49]],[[67333,54510],[-11,-6]],[[67322,54504],[-110,53],[-160,128],[-105,110],[5,43],[0,2],[-9,9],[-3,3],[-26,28],[-1,-1],[-2,-1],[-5,-4],[-10,-7],[-12,-9],[-24,24],[-1,1],[-19,19],[-14,24],[23,5],[8,2],[3,1],[-45,88],[-21,-4],[-11,-2],[-40,39],[15,12],[1,1],[2,2],[-111,148],[-24,33],[-47,65],[-17,23],[-31,34],[-22,-11],[-18,-10],[-10,-6],[-18,31],[-4,6],[6,19],[4,11],[3,11],[7,21],[-35,20],[-16,32],[-4,8],[-18,34],[-11,44],[-5,21],[-8,19],[-31,-11],[-2,29],[0,4],[9,14],[12,19],[-6,54],[-20,-2],[-11,17],[-11,16],[-11,-10],[-26,-24],[-9,-9],[-71,-67],[10,-57],[-20,-30],[15,-22],[24,-34],[15,-25],[11,-18],[19,-30],[0,-1],[18,-31],[19,-32],[22,-52],[12,-29],[-22,-13],[-43,-24]],[[66285,55255],[-19,0],[-26,0]],[[66240,55255],[-3,1],[-49,20],[-64,88],[-106,107],[-29,-15],[-2,-41],[19,-46],[-85,-29],[61,-81],[-24,-12],[-43,14],[-39,-38],[-59,51],[-40,-34],[84,-80],[-30,-24],[-48,32],[-46,-36],[-44,19],[-48,-44],[24,-21],[48,20],[12,8],[30,-20],[-45,-45],[-15,-16],[-78,60],[-23,-20],[-2,-4],[-10,-27],[-10,13],[-18,-22],[-27,-64],[-11,-69],[102,-13],[55,-24],[2,-1],[-79,-33],[39,-22],[10,-59],[-54,33],[15,-50],[-112,87],[22,-68],[-37,-38],[-26,67],[-16,-44],[-35,-11],[-19,-6],[-10,-4]],[[65377,54714],[-43,7]],[[65334,54721],[-7,13],[14,43],[-33,30],[-23,34],[-10,-90],[-23,7],[-21,22],[-38,-1],[-11,-66],[-42,8],[-28,-10],[-26,-17],[-46,-33],[-25,-46],[-13,-34],[-14,-53]],[[64988,54528],[-27,-35]],[[64961,54493],[-15,-3],[-45,-21],[-19,-74],[-7,-32],[15,-29],[37,-68],[-26,-83],[34,-32],[-22,-21],[46,-88],[6,-54],[33,-35],[-12,-48],[-50,7],[-22,-57],[-49,-49],[-57,-11],[-10,-51],[20,-26],[40,-35],[58,11],[7,3]],[[64923,53697],[1,1],[16,9],[1,-49],[2,-42],[0,-1],[-7,-13],[-25,-21],[-12,-10],[-10,-1],[-28,-2],[-11,7],[-26,1],[-50,-15],[-24,-12],[-19,0],[-5,0],[-6,6],[-16,15],[-21,4],[-26,6],[-14,3],[-2,-1],[-7,-6],[-1,0],[-2,-2],[-2,-1],[-2,-1],[-9,-4],[-2,-1],[-2,0],[-2,-1],[-13,-2],[-2,-1],[-2,0],[-8,0],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-4,1],[-11,3],[-32,-26],[-9,-7],[-33,-7],[-13,0],[-13,1],[-30,-5],[-14,5],[-26,11],[-43,42],[-34,27],[-23,1],[-75,-1],[-39,-10],[-12,-6],[-29,-24],[-19,-17],[-3,-1],[-17,-7],[-21,-3],[-15,0],[-49,47],[-20,11],[-14,11],[-11,10],[-33,14],[-13,13],[-29,22],[-8,8],[-9,10],[-6,18],[-13,35],[-5,13],[-1,2],[0,3],[-1,3],[0,3],[-1,3],[0,8],[0,3],[0,3],[0,3],[1,3],[0,1],[0,2],[2,13],[1,2],[0,3],[1,2],[1,3],[1,3],[-17,14],[-2,2],[-16,13],[-25,-7],[-11,-19],[4,-8],[-3,-4],[0,-10],[-1,-9],[0,-7],[1,-9],[0,-11],[0,-2]],[[63788,53759],[-17,11],[-46,31],[0,1],[-28,11],[-24,9],[0,22],[0,7],[0,23],[-1,123],[2,64],[-2,60],[1,84],[-1,55],[-1,56],[-2,111],[1,14],[0,9],[0,36],[-1,21],[0,3],[0,9],[0,93],[0,36],[0,2],[0,86],[-1,145],[-1,102],[0,97],[0,149],[0,40],[0,23],[0,10],[-1,62],[1,110],[-19,1],[-89,4],[-114,8],[-46,2],[-136,2],[-98,-1],[-6,0],[-34,0],[-273,-2],[-134,1],[-19,0],[-30,0],[-15,0],[-5,-1],[-13,-2],[-189,-1],[-103,-1],[-32,-1],[-26,0],[-109,1],[-102,1],[-43,0],[-3,0],[-129,7],[-39,1],[-56,2],[-45,2],[-17,-2],[-29,1],[-91,-2],[-39,1],[-42,0],[-54,1],[-78,0],[-131,1],[-51,1],[-17,0],[-2,0],[-18,0],[-16,1],[-68,1],[-162,1],[-133,3],[-17,0],[-6,0],[-120,2],[-83,1],[-42,1],[-35,1],[-57,-1],[-50,1],[-81,3],[-3,0],[-125,2],[-265,0],[-55,1],[-64,0],[-47,0],[-139,0],[-129,1],[-41,1],[-86,1],[-43,1],[-217,34],[-45,7],[-49,0],[-136,-1],[-29,0],[-9,0],[-22,0],[-32,0],[-44,-2],[-30,-1],[-131,-4],[-66,-2],[-32,-1],[-105,-3],[-184,-7],[-66,-2],[-26,-1],[-219,-5],[-56,-2],[-93,-3],[-205,-7],[-97,-3],[-161,-5],[-63,0],[-78,0],[-75,-1],[-123,0],[-156,0],[-78,-1],[-83,0],[-21,0],[-57,1],[-52,0],[-213,0],[-97,-1],[-122,-1],[-13,0],[-217,-2],[-75,0],[-258,1],[-107,1],[-25,0],[-615,11],[-77,1],[-263,-2],[-259,-2],[-15,0],[-169,-1],[-91,-1]],[[53868,55514],[2,123],[3,161],[1,81],[0,4],[1,21],[1,100],[3,167],[1,86],[2,102],[7,439],[5,191],[3,121],[4,156],[0,1],[2,89],[-1,77],[-1,33],[0,4],[0,32],[1,57],[1,46],[1,92],[0,26],[5,196],[1,41],[2,118],[2,106],[0,27],[1,83],[1,127],[0,34],[2,63],[1,86],[0,55],[0,68],[2,195],[5,241],[2,150],[0,61],[2,106],[0,25],[1,62],[2,108],[2,79],[1,3],[4,173]],[[53940,59930],[2,653],[-1,90],[-1,116],[0,121],[-3,428],[-130,1],[0,26],[1,102],[1,66],[0,71],[1,62],[1,136],[1,75],[1,91],[2,158],[1,195],[1,40],[0,38],[1,45],[0,31],[0,64],[0,18],[0,60],[-1,194],[0,31],[-2,457],[1,24],[-3,125],[-1,60],[-1,178],[-1,42],[0,23],[0,46],[0,87],[0,32],[3,97],[1,27],[0,35],[-1,106],[0,106],[-3,55],[-1,68],[1,58],[1,70],[1,60],[1,59],[1,29],[2,41],[4,74],[1,106],[4,122],[2,133],[0,8],[0,57],[1,49],[0,10],[1,148],[0,117],[-2,114],[1,48],[-1,82],[-23,1],[-7,35],[-3,21],[-11,77],[-2,18],[-4,28],[-7,65],[-3,93],[-1,17],[0,7],[-1,88],[0,1],[0,18],[0,28],[1,5],[0,66],[0,39],[0,18],[1,66],[0,25],[0,19],[0,37],[0,41],[1,24],[0,138],[2,126],[-2,286],[1,23],[1,55],[23,278],[3,55],[12,181],[3,42],[7,108],[1,14],[3,38],[2,107],[3,90],[0,62],[4,73],[0,6],[1,46],[1,20],[2,90],[-2,36],[-1,43],[0,25],[2,79],[-1,18],[5,22],[-2,24],[-1,144],[0,10],[1,20],[2,139],[1,80],[-2,114],[1,4],[14,128],[-2,109],[1,56],[-1,25],[0,79],[0,2],[-20,344],[10,129],[0,22],[1,55],[2,63],[3,159],[3,143],[0,5],[1,39],[0,18],[0,3],[0,21],[0,6],[1,34],[1,26],[0,17],[0,20],[0,2],[0,15],[1,24],[0,50],[1,44],[0,3],[2,47],[1,49],[0,7],[0,33],[1,24],[5,213],[0,6],[0,28],[1,36],[2,73],[0,25],[-1,40],[2,19],[4,197],[0,53],[-44,0],[-225,3],[-4,126],[-1,130],[-2,112],[-2,134],[-4,234],[-3,109],[0,17],[1,112],[0,37],[0,13],[1,78],[-2,46],[-2,62],[-1,23],[-4,180],[-1,46],[1,102],[0,5],[-1,162],[7,164],[2,53],[4,72],[7,171],[1,16],[1,17],[9,210],[2,34],[7,161],[0,59],[-3,229]],[[53521,87140],[433,-22],[689,-34],[55,-2],[79,-4],[83,-4],[57,19],[1,1],[182,62],[144,49],[49,-16],[16,-5],[-1,-163],[-2,-210],[264,-24],[236,-169],[15,-10],[117,-14],[84,-10],[51,-23],[231,-102],[174,-77],[463,-204],[569,-251],[122,-54],[330,-145],[201,-89],[141,18],[141,18],[422,54],[206,26],[296,-62],[57,-227],[29,-119],[35,-73],[-18,-64],[5,-12],[19,-9],[-39,-37],[-9,-3],[-27,-24],[-5,-17],[-8,-24],[29,-17],[34,-42],[-24,-21],[-23,-21],[-24,-7],[-31,-9],[-18,-6],[-4,-1],[-6,-2],[-17,3],[-3,0],[-7,3],[-11,3],[-44,0],[-46,0],[-2,1],[-36,12],[-39,14],[-14,4],[-17,-16],[-13,-12],[-5,-5],[-8,-7],[-14,-14],[-38,-37],[-29,2],[-177,10],[-108,6],[-24,-6],[-34,-9],[-33,-8],[-26,-7],[-37,-10],[-12,-3],[-10,-50],[-23,-123],[-103,-200],[-1,0],[2,-9],[8,-35],[-31,-72],[-23,-52],[107,-110],[210,-218],[72,-14],[245,-48],[94,-61],[96,7],[657,45],[275,18],[117,28],[143,34],[247,59],[3,1],[56,2],[227,7],[16,-1],[81,-4],[2,-2],[132,-159],[6,-8],[30,-36],[6,-8],[37,-59],[19,-21],[0,-1],[13,-8],[3,-1],[56,-20],[21,-14],[14,-23],[3,-10],[10,-26],[17,-25],[1,-1],[42,-74],[1,-3],[245,-77],[1,-221],[-103,-197],[-99,-189],[-57,-110],[38,-147],[25,-98],[23,-92],[172,-313],[52,-94],[1,-2],[4,-5],[135,-198],[3,-4],[10,-8],[3,-8],[4,-12],[18,-51],[25,-38],[62,-64],[12,4],[25,9],[44,-22],[56,-82],[10,-15],[62,-65],[86,-193],[33,-75],[60,-135],[61,-105],[16,-28],[27,-47],[8,-13],[3,-20],[13,-37],[10,-32],[3,-19],[-3,-17],[2,-10],[13,-11],[31,-10],[12,-12],[3,-11],[-7,-51],[3,-16],[21,-30],[6,-16],[4,-12],[14,-38],[46,-83],[17,-51],[12,-37],[40,-72],[48,-57],[3,-3],[3,-2],[8,-6],[12,1],[13,13],[5,4],[5,6],[44,9],[14,7],[78,64],[51,38],[38,17],[85,27],[54,30],[26,6],[28,0],[16,0],[29,6],[63,25],[8,3],[52,21],[70,32],[47,15],[68,13],[139,20],[19,3],[13,2],[11,1],[18,3],[31,5],[47,6],[38,6],[25,4],[1,0],[17,8],[74,34],[49,23],[-4,11],[-6,14],[-3,9],[-4,12],[-3,9],[-33,86],[-18,13],[-9,6],[-22,15],[-11,8],[-13,9],[-45,30],[-13,9],[-71,48],[-11,7],[-15,28],[-41,77],[10,46],[8,35],[-8,11],[-7,-1],[-4,-4],[-7,-2],[-1,0],[-1,1],[-1,3],[1,1],[0,2],[-1,2],[0,2],[0,3],[1,1],[1,1],[-1,1],[0,1],[-1,0],[-2,-1],[-1,0],[1,3],[0,2],[0,1],[0,1],[0,3],[-1,2],[-1,2],[-5,13],[-10,23],[-6,15],[-7,16],[-3,7],[-13,30],[-25,58],[-5,12],[8,26],[1,4],[21,74],[9,30],[14,49],[11,36],[4,15],[4,12],[17,59],[-1,1],[-46,52],[-60,68],[-43,49],[0,1],[13,67],[9,44],[116,18],[27,100],[0,1],[28,106],[19,70],[11,45],[17,10],[27,16],[251,152],[44,27],[447,-87],[81,-16],[25,-13],[7,-10],[3,-10],[10,-11],[15,-22],[52,5],[80,7],[3,27],[-16,11],[6,7],[21,29],[7,10],[16,21],[104,-21],[9,-2],[1,-1],[6,-28],[5,-1],[15,0],[3,0],[121,35],[63,17],[0,1],[-8,52],[3,5],[19,33],[199,105],[217,40],[4,0],[15,-164],[411,-15],[270,-11],[95,-13],[69,73],[79,13],[54,10],[11,1],[152,-1],[82,-183],[38,-13],[10,-36],[-35,-36],[12,-150],[119,-29],[89,-125],[206,-40],[26,-5],[1,0],[10,-2],[97,-20],[55,-11],[-9,-23],[-5,-13],[-19,-46],[-30,-73],[-8,-17],[-50,-123],[-45,-107],[8,-113],[5,-65],[61,-109],[3,-82],[7,-176],[44,-17],[33,-13],[11,-4],[9,-3],[127,-50],[88,-168],[22,-42],[14,-8],[16,-13],[9,-7],[14,-11],[12,-3],[8,1],[22,17],[21,26],[2,12],[0,5],[0,8],[-1,14],[-2,16],[4,10],[2,6],[6,8],[10,8],[16,6],[23,4],[36,1],[50,-4],[22,-6],[30,-13],[9,-6],[11,-11],[5,-5],[11,-16],[19,-30],[12,-12],[39,-31],[-20,-24],[-4,0],[-7,-1],[-48,-5],[-53,-5],[0,-1],[16,-84],[-35,-34],[18,-63],[76,-1],[15,6],[80,-52],[39,0],[9,11],[1,0],[11,13],[13,15],[12,13],[12,13],[113,29],[99,15],[19,11],[37,20],[25,5],[18,-1],[3,-7],[33,-5],[12,3],[27,0],[3,-1],[5,-1],[15,-16],[45,-2],[119,14],[113,-179],[217,-140],[41,-208],[15,2],[40,5],[30,4],[160,20],[83,18],[39,8],[43,-16],[221,42],[17,-59],[26,-15],[34,-20],[144,-57]],[[21106,85629],[7,-62],[3,-25],[5,-24],[0,-151],[1,-28],[3,-188],[0,-33],[-2,-118],[-1,-31],[0,-27],[-1,-98],[0,-50],[0,-9],[-1,-61],[-1,-33],[-1,-36],[-2,-35],[0,-65],[-1,-22],[-3,-118],[-3,-101],[0,-158],[-4,-107],[-1,-63],[-1,-75],[-4,-246],[-4,-234],[0,-147],[0,-101],[1,-18],[6,-160],[4,-100],[2,-60],[1,-32],[0,-6],[1,-109],[0,-13],[6,0],[1,0],[1,0],[5,0],[2,0],[97,1],[0,-2],[2,-202],[2,-240],[3,-241],[-1,-42],[-1,-73],[-1,-132],[-2,-206],[0,-23],[-1,-24],[-1,-174],[-1,-72],[-3,-168],[-1,-72],[0,-18],[0,-33],[-2,-182],[-1,-20],[0,-25],[0,-16],[0,-112],[0,-336],[1,-242],[0,-88],[0,-111],[0,-45],[0,-31],[0,-145],[0,-19],[0,-18],[0,-6],[1,-155]],[[21216,79413],[-6,0],[-8,0],[-126,0],[-152,1],[-115,0],[-33,0],[-125,-1],[-299,-2],[-17,0],[-77,-1],[-130,-1],[-15,0],[-13,0],[-66,1],[-218,1],[-135,1],[-39,2],[-89,0],[-279,-6],[-76,0],[-199,0],[-81,-1],[-168,-3],[-312,-5],[-279,-1],[-247,-1],[-36,0],[-290,-1],[-268,-1],[-126,-1],[-156,0],[-277,-1],[-279,-1],[-53,0],[-216,-1],[-178,-1],[-55,0],[-4,0],[-27,2],[-16,-1],[-15,0],[-69,1],[-91,3],[-107,2],[-275,1],[-160,-1],[-120,0],[-135,-1],[-143,0],[-101,-1],[-136,-2],[-118,5],[-17,1],[-82,8],[-64,5],[-111,4],[-168,6],[-137,1],[-21,0],[-129,0],[-93,-19],[-18,-5],[-8,-3],[-53,0],[-46,1],[-49,0],[-1,0],[-18,1],[-22,0],[-53,0],[-2,0],[-20,0],[-44,0],[-6,0],[-143,1],[-81,3],[-31,1],[-9,0],[-7,0],[-26,1],[-28,1],[-89,3],[-62,8],[-39,6],[-19,3],[-15,2],[-23,2],[-54,7],[-44,8],[-14,1],[-15,0],[-240,-4],[-25,0],[-197,1],[-66,0],[-151,-2],[-138,-1],[-16,0],[-46,-1],[-74,-1],[-29,0],[-28,0],[-36,-1],[-46,-1],[-15,1],[-16,0],[-26,1],[-41,3],[-50,2],[-38,1],[-42,2],[-17,1],[-37,2],[-28,-2],[-28,-1],[-32,-3],[-36,-2],[-25,-2],[-72,3],[-49,3],[-15,-1],[-76,0],[-115,0],[-105,1],[-92,0],[-114,1],[-66,0],[-17,-1],[-27,0],[-29,0],[-42,-3],[-25,0],[-141,-8],[-14,0],[-22,0],[-100,-2],[-85,-1],[-49,1],[-23,-1],[-64,0],[-135,0],[-35,0],[-45,2]],[[9520,79432],[-39,-2],[-69,0],[-94,-2],[-51,-1],[-22,0],[-39,-1],[-63,0],[-74,0],[-53,0],[-46,0],[-16,0],[-42,0],[-36,-1],[-48,2],[-34,1],[-58,0],[-51,1],[-29,0],[-48,-1],[-42,0],[-23,0],[-53,-1],[-41,-1],[-47,-1],[-23,0],[-95,0],[-114,0],[-49,0],[-18,0],[-189,-1],[-73,1],[-37,0],[-51,1],[-38,1],[-152,-2],[-280,-2],[-108,-1],[-170,-2],[-28,0],[-255,0],[-279,0],[-141,0],[-59,-1],[-41,0],[-42,0],[-268,0],[-143,-1],[-138,1],[-93,0],[-185,0],[-282,-1],[-280,-1],[-81,0],[-199,-2],[-31,1],[-79,1],[-19,0],[-149,1],[-279,-1],[-61,-1],[-79,-1],[-331,-2],[-60,0],[-31,1],[-47,1],[-41,-2],[-58,1],[-15,1],[-75,0],[-5,0],[-23,1],[-13,0],[-16,0],[-259,1],[-279,-1],[-280,0],[-139,2],[-139,2],[-279,0],[-243,-3],[-37,0],[-115,0],[-107,9]],[[1202,79426],[41,13],[52,3],[27,18],[7,15],[-4,60],[-9,22],[-20,17],[-22,8],[-24,0],[-48,-14],[-24,0],[-24,17],[-5,9],[0,26],[7,17],[12,15],[52,46],[21,-7],[12,44],[8,26],[4,16],[13,44],[37,-15],[-43,100],[-7,11],[-3,23],[7,13],[19,18],[10,4],[65,12],[29,7],[9,4],[17,17],[-1,24],[-17,17],[-9,5],[-61,8],[-29,23],[-17,24],[0,30],[7,13],[9,9],[22,6],[38,1],[22,-7],[10,-6],[41,-41],[23,-77],[7,-17],[25,-24],[12,-6],[36,0],[21,18],[7,17],[0,20],[-12,32],[-10,21],[-15,20],[-39,36],[-48,25],[-141,57],[-36,4],[-31,-7],[-67,-61],[-17,0],[-9,4],[-20,21],[5,31],[33,32],[50,25],[46,20],[52,18],[46,2],[19,-4],[27,-13],[61,-42],[21,-9],[27,3],[21,22],[0,19],[-10,19],[-22,20],[-22,10],[-60,17],[-39,4],[-45,-1],[-49,8],[-31,13],[-22,19],[-7,13],[-1,26],[5,15],[17,15],[14,7],[77,5],[24,20],[2,22],[-3,6],[-22,19],[-17,7],[-14,4],[-46,-1],[-5,-4],[-33,-1],[-12,5],[-20,19],[0,24],[14,21],[19,18],[22,11],[100,48],[17,5],[31,0],[29,-8],[29,0],[17,7],[14,13],[0,28],[-5,15],[-30,37],[-39,34],[-5,8],[0,22],[10,11],[9,4],[63,3],[16,20],[0,13],[-12,21],[-15,11],[-26,10],[-90,19],[-29,2],[-43,-7],[-36,-1],[-17,7],[-7,6],[-10,21],[-1,22],[8,13],[19,18],[33,11],[58,-2],[73,-19],[12,-4],[36,5],[21,11],[15,13],[2,24],[-25,45],[0,15],[12,11],[60,-4],[10,5],[28,26],[7,15],[-5,48],[-18,40],[-24,50],[-28,45],[-29,23],[-10,5],[-24,-1],[-9,-4],[-38,-33],[-7,-11],[-27,-24],[-14,-6],[-19,-1],[-25,17],[-5,11],[0,15],[5,20],[5,8],[95,105],[31,24],[36,-2],[19,-17],[25,-36],[22,-19],[19,-9],[48,-1],[27,15],[4,9],[0,21],[-10,20],[-17,17],[-58,34],[-41,17],[-27,6],[-24,19],[-8,13],[2,30],[57,50],[-2,20],[-20,19],[-19,13],[-27,2],[-19,-7],[-21,-13],[-24,-22],[-22,-11],[-19,0],[-12,4],[-15,13],[-5,10],[0,22],[5,13],[44,91],[19,22],[17,7],[70,-2],[101,29],[12,7],[16,17],[2,29],[-2,6],[-7,11],[-25,19],[-34,15],[-111,18],[-29,0],[-31,-9],[-14,-9],[-34,-31],[-24,-2],[-17,6],[-10,9],[-2,28],[11,24],[17,15],[22,11],[19,7],[67,9],[24,13],[19,22],[33,89],[-1,28],[-5,11],[-5,8],[-29,24],[-19,8],[-29,4],[-70,-1],[-17,7],[-15,13],[-3,28],[5,8],[29,24],[28,31],[-3,30],[-12,11],[-22,10],[-43,6],[-10,5],[-19,17],[-6,36],[-13,21],[-21,29],[-22,17],[-53,27],[-30,26],[-5,13],[0,45],[16,41],[21,16],[10,2],[41,0],[53,-8],[5,-4],[61,-1],[16,8],[15,14],[4,8],[0,15],[-2,11],[-32,39],[-15,23],[-3,26],[5,9],[14,11],[53,7],[17,7],[12,13],[-3,19],[-17,15],[-14,6],[-13,0],[-28,-4],[-80,-38],[-26,0],[-15,4],[-36,17],[-44,27],[-34,30],[-3,26],[17,33],[-1,19],[-19,11],[-48,1],[-20,13],[0,22],[9,19],[19,16],[29,15],[67,12],[32,-4],[48,0],[24,11],[31,29],[26,41],[22,20],[24,15],[50,24],[29,27],[4,10],[0,28],[-43,48],[-26,-14],[-14,42],[-14,45],[-21,47],[-17,0],[-22,-9],[-14,-13],[-10,-18],[-2,-13],[-34,-39],[-91,15],[4,57],[10,9],[40,24],[53,18],[75,18],[41,1],[39,-6],[29,-15],[75,-67],[31,-1],[24,54],[-10,20],[-22,23],[-29,24],[-75,38],[-87,16],[-28,7],[-33,27],[-18,26],[0,26],[5,10],[12,11],[21,9],[51,3],[80,-40],[27,-6],[24,0],[15,4],[31,29],[7,11],[9,28],[7,26],[-1,28],[-10,39],[-17,28],[-34,25],[-53,2],[-32,-14],[-73,-76],[-20,-7],[-26,-4],[-46,1],[-17,9],[-15,13],[-5,10],[0,31],[5,11],[26,28],[72,33],[29,9],[38,20],[19,13],[69,66],[14,28],[3,55],[6,64],[-8,21],[-22,22],[-19,4],[-27,0],[-34,-9],[-4,-5],[-46,0],[-17,8],[-32,28],[-22,30],[-20,41],[-1,30],[17,39],[16,15],[27,9],[31,1],[22,-9],[78,-49],[20,-4],[26,3],[19,19],[5,29],[-10,23],[-25,22],[-51,14],[-58,0],[-50,-10],[-32,-13],[-55,-16],[-41,-7],[-51,1],[-7,1],[-41,10],[-20,17],[-5,15],[0,22],[5,9],[35,28],[32,11],[38,7],[61,10],[36,2],[43,11],[27,14],[12,11],[9,15],[2,24],[-7,21],[-45,47],[0,15],[10,9],[22,-2],[24,-21],[22,-43],[22,-15],[22,0],[14,7],[15,13],[7,15],[-3,20],[-10,19],[-10,13],[-31,28],[-32,19],[-39,17],[-51,14],[-39,32],[-8,10],[-7,7],[-12,28],[-1,56],[7,48],[-12,64],[8,5],[27,0],[31,-8],[37,-6],[31,0],[39,9],[24,16],[66,62],[24,23],[15,22],[-1,26],[-7,13],[-12,10],[-27,11],[-17,2],[-31,-3],[-37,-11],[-72,-44],[-28,-11],[-39,0],[-27,8],[-24,13],[-27,28],[-13,38],[0,46],[6,30],[10,20],[21,19],[22,9],[22,5],[60,0],[15,7],[19,20],[4,28],[-15,26],[-36,27],[-64,26],[-92,18],[-41,19],[-27,26]],[[36370,73854],[0,-35],[-3,-611],[-1,-78],[0,-103],[0,-80],[-1,-43],[0,-89],[-1,-258],[0,-17],[-1,-163],[-1,-152],[-1,-212],[0,-126],[1,-256],[2,-226],[2,-244],[1,-61],[4,-125],[3,-74],[14,-1],[-1,-243],[3,-219],[1,-77],[1,-46],[0,-21],[3,-140],[2,-53],[-1,-29],[-1,-38],[1,-283],[1,-44],[0,-46],[2,-88],[13,-43],[5,-34],[8,-49],[-4,-102],[-2,-77],[3,-234],[0,-4],[1,-70],[-5,-137],[-5,-121],[1,-56],[4,-306],[1,-34],[1,-58],[2,-164],[-1,-36],[-1,-58],[0,-13],[-13,0],[-1,-170],[-2,-15],[-1,-7],[-1,-89],[0,-6],[0,-7],[0,-5],[-1,-3],[0,-1],[1,-14],[-1,-21],[2,-7],[-2,-3],[2,-26],[0,-46],[0,-17],[2,-3],[-2,-73],[0,-41],[-1,-8],[0,-5],[-2,-246],[1,-18],[-2,-92],[0,-14]],[[36399,67040],[0,-3],[-1,-10],[1,-1],[1,-33],[0,-10],[6,-217],[-3,-74],[-1,-37],[-2,-65],[-2,-44],[1,-19],[-1,-48],[-36,0],[-194,-1],[-39,0],[-278,2],[-271,0],[-3,0],[-131,0],[-130,-3],[-408,-10],[-181,-4],[-127,1],[-37,0],[-292,2],[-5,0],[-16,0],[-25,-2],[-8,-1],[-82,-5],[-19,-1],[-31,-2],[-15,-1],[-56,-3],[-46,-1],[-44,-1],[-31,1],[-44,-1],[-16,0],[-61,0],[-39,1],[-29,-1],[-35,0],[-274,1],[-24,0],[-2,0],[-5,0],[-7,-1],[-28,-1],[-7,-1],[-38,1],[-24,0],[-135,3]],[[33125,66451],[-54,-2],[-54,-1],[-59,-1],[-51,-1],[-148,-4],[-256,-2],[-138,4],[-17,1],[-50,0],[-68,3],[-138,9],[-71,-1],[-52,0],[-9,0],[-13,-3],[-11,1],[-9,1],[-5,-1],[-28,-2],[-18,-1],[-57,-1],[-79,-2],[-61,-2],[-49,-2],[-67,0],[-36,0],[-15,0],[-16,-1],[-22,0],[-20,0],[-72,0],[-5,0],[-32,1],[-5,0],[-23,0],[-15,0],[-42,0],[-43,1],[-41,0],[-58,0],[-75,1],[-40,1],[-23,0],[-48,1],[-25,1],[-205,1],[-71,0],[-137,2],[-14,0],[-122,3],[-106,0],[-70,1],[-45,0],[-29,0],[-22,1],[-25,2],[-12,1],[-2,1],[-12,0],[-42,3],[-53,4],[-2,0],[-118,8],[-13,1],[-18,0],[-96,-2],[-12,-1],[-35,0],[-84,-1],[-3,-1],[-26,0],[-54,0],[-32,0],[-100,0],[-1,0],[-23,0],[-1,0],[-2,0],[-61,-2],[-137,1],[-101,0],[-19,-3],[-19,1],[-21,1],[-16,2],[-15,0],[-18,-2],[-45,0],[-160,0],[-72,1],[-62,1],[-152,3],[-23,1],[-39,0],[-37,1],[-22,0],[-17,1],[-39,0],[-42,1],[-8,-1],[-2,0],[-1,0],[-5,0],[-12,1],[-12,1],[-2,0],[-4,-1],[-273,1],[-91,1],[-187,0],[-168,1],[-4,0],[-102,8],[-75,6],[-67,-1],[-13,0],[-135,0],[-16,0],[-25,0],[-86,0],[-62,0],[-343,0]],[[26510,66495],[3,182],[1,165],[-1,76],[0,31],[0,48],[-1,189],[0,36],[-3,43],[-2,81],[1,119],[1,34],[1,29],[1,67],[-2,54],[-1,63],[0,8],[-1,18],[0,100],[1,139],[0,23],[-6,205],[0,67],[-1,58],[-1,41],[0,7],[-1,41],[1,33],[0,20],[-1,27],[0,18],[0,62],[-1,49],[0,95],[0,19],[0,39],[-1,54],[0,21],[0,81],[0,25],[-1,41],[-3,182],[0,24],[-2,149],[0,35],[-1,48],[1,89],[0,19],[0,20],[1,57],[-2,60],[-1,135],[0,22],[-1,90],[-1,60],[0,108],[0,91],[0,50],[2,250],[0,91],[1,55],[0,33],[-1,119],[-2,132],[-10,-1],[-58,1],[-52,1],[-1,129],[-1,140],[0,97],[0,52],[0,57],[0,138],[1,165],[0,21],[0,41],[3,74],[0,28],[0,2],[0,132],[0,174],[0,9],[-2,43],[1,55],[1,70],[1,69],[-2,227],[-1,45],[0,39],[0,43],[-1,65],[-1,77],[-1,18],[1,5],[0,12],[3,47],[3,35],[0,29],[0,69],[1,110],[0,111],[2,323],[0,150],[0,90],[1,102],[-1,167],[0,1],[0,83],[0,42],[-85,9],[-29,6],[-32,8],[-27,2],[-41,5],[-3,0],[-53,10],[-33,8],[-9,3],[-19,6],[-31,8],[-1,1],[-89,26],[-26,9],[-7,2],[-2,1],[-39,18],[-42,16],[-4,2],[-22,8],[-23,10],[-52,15],[-23,14],[-3,3],[-11,9],[-23,14],[-20,15],[-26,26],[-26,25],[-35,31],[-9,15],[-11,13],[-31,41],[-14,17],[-15,20],[-10,12],[-3,4],[-6,9],[-1,2],[0,2],[-6,18],[-11,15],[-1,3],[-8,17],[0,1],[-8,19],[-12,30],[-6,22],[-7,14],[-19,31],[-6,15],[-4,10],[-1,6],[-4,16],[-4,21],[-4,17],[-15,41],[-4,21],[-10,59],[-2,18],[-4,26],[-4,20],[-6,26],[-5,40],[-1,26],[0,7],[2,38],[0,18],[1,22],[1,11],[8,52],[3,46],[2,38],[1,13],[0,5],[1,5],[9,37],[6,25],[7,46],[7,27],[2,17],[1,34],[1,9],[2,13],[1,2],[9,14],[4,9],[3,7],[4,25],[0,4],[4,7],[9,15],[9,22],[9,12],[5,21],[17,49],[2,6],[7,16],[5,11],[9,18],[8,22],[16,42],[1,1],[10,32],[12,27],[10,21],[2,5],[36,62],[9,30],[5,31],[7,20],[3,8],[12,24],[10,20],[2,2],[8,14],[19,42],[2,4],[13,30],[5,8],[5,8],[7,16],[6,17],[0,1],[9,15],[6,17],[0,1],[1,1],[13,18],[13,28],[13,19],[11,18],[1,3],[12,19],[9,10],[1,2],[16,17],[9,15],[13,9],[9,15],[13,8],[3,2],[11,11],[3,4],[8,12],[11,8],[1,0],[7,8],[7,8],[3,2],[29,25],[22,18],[3,11],[15,15],[-1,0],[-114,0],[-3,0],[-154,1],[-21,0],[-328,0],[-125,0],[-164,0],[-18,0],[-659,4],[-297,1],[-441,2],[-377,2],[-33,0],[-391,0],[-176,1],[-180,1],[-14,0],[-72,-1],[-89,0],[-160,0],[-263,0],[-183,-1],[-39,0],[-61,0],[-55,0],[-143,0]],[[21356,76823],[-124,0],[3,285],[0,50],[0,210],[-1,114],[-3,316],[-3,171],[-1,103],[-2,154],[-1,76],[0,51],[0,198],[0,10],[0,36],[-4,418],[-3,268],[-1,70],[0,54],[0,3],[0,3]],[[24455,85653],[281,-3],[74,0],[5,0],[38,0],[321,-2],[155,-1],[3,0],[313,0],[349,3],[145,-1],[1,-62],[1,-62],[2,-74],[0,-7],[0,-60],[6,-415],[0,-356],[0,-326],[1,-71],[0,-61],[-3,-170],[-2,-118],[-1,-85],[-4,-115],[10,-243],[1,-247],[0,-246],[0,-79],[1,-160],[55,1],[507,3],[283,0],[61,0],[79,0],[40,0],[92,0],[118,0],[4,0],[167,1],[32,0],[17,0],[17,1],[115,1],[11,0],[90,-1],[247,2],[70,0],[210,1],[142,1],[360,1],[83,0],[568,1],[552,0],[409,0],[151,0],[281,1],[280,1],[555,3],[345,1],[221,-1],[231,1],[69,0],[260,1],[88,1],[478,2],[265,1],[298,0],[543,0],[8,0],[10,0],[66,0],[535,1],[152,0],[406,-2],[516,1]],[[80041,79692],[0,-16],[-1,-27],[-1,-15],[-2,-35],[-1,-21],[-4,-55],[0,-44],[1,-44],[1,-36],[0,-36],[1,-27],[0,-23],[1,-73],[5,-173],[0,-21],[-1,-94],[1,-107],[0,-166],[-3,-86],[-1,-37],[1,-94],[0,-13],[0,-5],[0,-48],[0,-29],[0,-23],[1,-23],[1,-155],[0,-28],[0,-69],[2,-349],[0,-24],[0,-20],[0,-5],[0,-19],[0,-17],[0,-10],[1,-62],[55,0],[35,0],[0,-43],[0,-22],[0,-22],[0,-40],[0,-39],[1,-18],[0,-7],[-1,-109],[1,-116],[0,-22],[0,-2],[0,-40],[0,-25],[0,-22],[0,-51],[0,-43],[0,-30],[0,-4],[0,-20],[0,-82],[0,-25],[0,-11],[1,-163],[0,-56],[-1,-77],[-1,-56],[0,-18],[0,-17],[-1,-53],[0,-18],[0,-21],[-4,-109],[-4,-129],[0,-18],[-2,-71],[-1,-65],[0,-28],[-1,-19],[-1,-49],[0,-17],[-2,-81],[-1,-73],[-1,-28],[-1,-45],[-2,-101],[-4,-143],[0,-61],[0,-2],[0,-38],[-1,-108],[0,-49],[1,-128],[0,-114],[1,-240],[59,-4],[2,0],[13,-1],[-7,-208],[0,-27],[0,-18],[0,-25],[0,-26],[-1,-165],[0,-18],[0,-22],[0,-17],[0,-17],[1,-24],[0,-3],[-1,-140],[-1,-296],[-1,-64],[0,-54],[-1,-138],[0,-52],[0,-3],[-1,-136],[0,-1],[-1,-84],[0,-124],[0,-172],[0,-236],[1,-110],[1,-94],[-1,-18],[0,-4],[0,-4],[1,-46],[0,-15],[-2,-117],[0,-2],[0,-69],[0,-51],[0,-56],[1,-118],[0,-48],[0,-63],[0,-17],[0,-25],[-5,-163],[-1,-15],[0,-11],[-1,-37],[0,-46],[-1,-26],[0,-24],[0,-4],[0,-32],[-1,-1],[0,-23],[-2,-39],[0,-2],[-1,-29],[0,-23],[0,-18],[-2,-221],[1,-57],[3,-89],[0,-2],[3,-88],[-1,-118],[0,-41],[0,-6],[0,-86],[0,-22],[0,-90],[0,-27],[0,-203],[0,-72],[-4,-181],[-3,-134],[0,-79],[0,-58],[2,-145],[1,-112],[-1,-149],[1,-249],[0,-169],[0,-23],[0,-89],[0,-8],[-1,-80],[0,-69],[0,-194],[0,-39],[-3,-211],[0,-63],[-1,-30],[-2,-502],[0,-29],[0,-27]],[[80152,67388],[-25,-24],[-6,-6],[-1,-1],[0,-1],[-4,-3],[-21,-15],[-10,-7],[-4,-6],[-1,-1],[-15,-17],[-34,-36],[-57,-22],[-29,-10],[-36,7],[-39,-2],[-31,-27],[-16,-31],[-2,-9],[-5,-25],[-20,-10],[-12,-6],[-5,-7],[-21,-30],[-27,-32],[-33,-28],[-32,-16],[-15,-7],[-10,-11],[-18,-20],[-13,-25],[-6,-12],[-34,-31],[-3,-5],[-20,-31],[-22,-39],[-41,-51],[-26,-19],[-4,-3],[-57,-46],[-38,-27],[-32,-26],[-31,-38],[-2,-3],[-26,-39],[-5,-6],[-18,-20],[-7,-8],[-33,-41],[-32,8],[-37,-29],[-43,-12],[-8,-3],[-15,-9],[-23,-14],[-1,-1],[0,-1],[-27,-20],[-24,-24],[-24,-19],[-14,-11],[-52,-25],[-27,-20],[-41,-38],[-39,-25],[-11,-28],[-19,-43],[-28,-32],[-46,-24],[-34,-44],[-42,-32],[-22,-54],[-48,-54],[-46,-30],[-24,7],[-38,-13],[-26,-52],[0,-32],[-29,4],[-30,-23],[-18,-29],[-6,-13],[-11,-21],[-9,-11],[-21,-27],[-35,-25],[-16,-50],[-32,-39],[-15,-24],[-9,-14],[-14,-48],[-17,-47],[-6,-17],[-26,-26],[-10,-25],[-7,-18],[-16,-8],[-24,-12],[8,-50],[-4,-26],[-1,-10],[-2,-12],[-2,-9],[0,-2],[0,-4],[-1,0],[-4,0],[-28,0],[-8,0],[-29,-14],[-22,-11],[-6,-2],[-31,-7],[-13,-16],[-13,-17],[-34,-35],[-45,-37],[-34,-45],[-9,-27],[-6,-18],[-19,-39],[-11,-22],[-9,-21],[-18,-33],[-18,-15],[-16,-13],[-47,-1],[-23,-1],[-39,-33],[-10,-23],[-14,-29],[-28,-9],[-6,-3],[-24,-8],[-14,-37],[1,-33],[-7,-4],[-27,-15],[-39,-10],[-35,-12],[-24,-44],[-24,-58],[-38,-46],[-12,-20],[-12,-20],[-6,-16],[-6,-16],[-1,-2],[-27,-13],[0,-17],[-1,-34],[0,-28],[0,-82],[-26,-7],[-7,-2],[-38,-6],[-51,-19],[11,17],[0,1],[16,24],[-22,55],[0,2],[-32,-38],[-3,-4],[-52,-62],[-22,-24],[-9,-10],[-35,-18],[-32,-24],[-7,-21],[-5,-13],[-23,-22],[2,-8],[6,-26],[-12,-28],[-8,-20],[-43,-3],[-17,3],[-10,1],[-6,1],[-4,1],[-34,0],[-33,-21],[-14,-18],[-8,-9],[-23,-33],[-3,-19],[-6,-33],[12,-5],[10,-4],[16,-6],[-40,-22],[-11,0],[-2,0],[-19,0],[-56,-23],[-41,-20],[-26,-9],[-7,-14],[0,-1],[-8,-16],[-32,-26],[-21,-30],[-2,-1],[-37,-41],[-44,-21],[-34,-44],[-31,-27],[-24,-23],[-32,-13],[-6,-48],[-13,-22],[-11,-19],[-7,-16],[-2,-5],[-4,-8],[-54,-36],[-25,-12],[-3,-2],[-6,-3],[-17,-15],[-7,-6],[0,-1],[-1,0],[-6,-7],[0,-1],[-20,-23],[-23,-12],[-20,-10],[-4,-11],[-4,-11],[-9,-21],[-11,-6],[-9,-5],[-26,-13],[-17,-21],[-1,-2],[-31,-38],[-10,-37],[-9,-33],[-15,-38],[0,-1],[-23,-50],[-9,-2],[-17,-4],[-24,-7],[-27,-9],[-31,-16],[-5,-19],[-2,-11],[-2,-13],[-4,-31],[0,-5],[-1,0],[-4,-2],[-49,-17],[-44,-21],[-21,-5],[-18,-4],[-21,-39],[-2,-4],[-18,-25],[-13,-15],[-1,-1],[-13,-15],[-2,-1],[-1,-1],[-18,-11],[-17,-10],[-20,-11],[0,-1],[28,-31],[-43,-11],[-47,2],[-6,-2],[-67,-20],[-35,-11],[9,-34],[-46,-35],[-14,1],[-49,2],[-3,-5],[-12,-19],[-19,-32],[-2,-8],[-6,-22],[-3,-11],[-38,-23],[-17,-13],[-14,-12],[-43,-28],[-22,-62],[-1,0],[-11,-25],[-6,-13],[-1,-4],[-2,0],[-3,0],[-43,-3],[-20,-14],[-10,-7],[-32,-29],[-28,-41],[-47,-24],[-22,-32],[-9,-13],[-26,-34],[-23,-45],[-25,-27],[-33,-24],[-7,-9],[-17,-20],[-50,-12],[-23,-28],[-6,-24],[-5,-23],[-17,-40],[-2,-2],[-25,-26],[-11,-19],[-12,-20],[-39,-25],[-22,-22],[-8,-8],[-39,-18],[-38,-18],[-10,-8],[-26,-19],[-12,-21],[-8,-14],[-49,-25],[-51,2],[-28,-7],[-17,-4],[-46,-15],[-16,1],[-16,0],[-25,-9],[-28,-4],[-26,-22],[-41,-21],[-43,-25],[-26,-35],[-13,-8],[-19,-12],[-9,-10],[-1,-1],[-24,-28],[-17,-24],[-43,-63],[-16,-32],[-10,-20],[-7,-3],[-30,-12],[-19,-1],[-12,0],[-15,-8],[-2,-1],[-24,-13],[-45,-1],[-41,3],[-8,0],[-42,-23],[-13,-27],[-6,-12],[-36,6],[-7,1],[-42,-33],[-30,-53],[-24,-12],[-12,-6],[-21,10],[-16,8],[-33,3],[-18,-4],[-10,-2],[-55,-25],[-48,-9],[-39,-15],[-13,-11],[-24,-20],[-25,-47],[-14,-23],[-7,-11],[-30,-39],[-9,-10],[-28,-33],[-23,-65],[-9,-48],[-15,-13],[-1,0],[-36,-31],[-24,-32],[-7,-16],[-9,-20],[-23,-21],[-6,-25],[-4,-16],[-22,-2],[-29,-4],[-12,8],[-16,8],[-38,-2],[-6,-3],[-13,-7],[-16,-8],[-33,-25],[-52,-35],[-20,-27],[-5,-4],[-3,-2],[-16,-13],[-25,-25],[-29,-51],[-12,-5],[-38,-18],[-21,-7],[-1,-1],[-6,-2],[-1,-1],[-4,-4],[-32,-30],[-2,-3],[-1,-2],[-19,-31],[-27,-32],[-30,-45],[-46,-12],[-34,-35],[0,-10],[0,-42],[4,-2],[21,-10],[29,-11],[-3,-34],[29,-11],[-12,-52],[-50,-24],[-24,-4],[-33,-5],[-29,25],[-17,18],[-14,14],[-20,0],[-35,-2],[-41,-17],[-14,-12],[-2,-1],[-23,-17],[1,-48],[3,-50],[-3,-37],[-8,-54],[-11,-12],[-21,-23],[-2,-2],[-1,2],[-31,28],[-43,26],[-11,7],[-67,7],[-32,-32],[-3,-13],[-6,-28],[-14,-44],[-36,-30],[-12,-13],[-12,-12],[-18,-8],[-24,-10],[-9,1],[-34,0],[-30,6],[-18,4],[-33,5],[-14,2],[-12,-4],[-30,-9],[-32,-24],[-26,-19],[-27,-28],[-10,-11],[-39,-37],[-6,-5],[-21,-19],[-19,-18],[-25,-25],[-47,-39],[-35,-32],[-13,-13],[-42,-35],[-17,-14],[-8,-6],[-28,-24],[-31,-28],[-31,-29],[-9,-10],[-17,-18],[-13,-23],[-7,-12],[-6,-6],[-40,-40],[-40,-32],[-26,-24],[-24,-21],[-14,-11],[-28,-35],[-43,-48],[-4,-8],[-1,-3],[-12,-24],[-15,-28],[-5,-3],[-20,-11],[-16,-20],[-10,-11],[-29,-38],[-28,-20],[-9,-6],[-44,-33],[-61,-49],[-2,-15],[-1,-10],[-1,-14],[-31,-40],[8,-32],[3,-16],[-20,-11],[-12,-8],[-41,-14],[-17,-6],[-17,-6],[-15,-2],[-29,-4],[-35,2]],[[70157,79922],[13,-4],[65,-3],[15,0],[30,-102],[1,-3],[32,-3],[61,66],[10,12],[207,-2],[5,0],[11,10],[8,8],[12,24],[14,29],[46,15],[16,5],[30,-84],[1,-3],[25,-14],[38,-22],[3,-1],[10,0],[49,1],[10,3],[20,7],[-7,82],[0,7],[42,-6],[12,0],[9,-1],[153,-48],[128,-31],[29,-26],[36,-70],[-1,-23],[-12,-45],[-6,-21],[-1,-2],[-5,-17],[-117,-123],[-13,-30],[-8,-85],[-18,-51],[17,-26],[29,18],[49,31],[22,4],[76,14],[59,-38],[-4,-114],[1,-26],[-2,-43],[-23,-112],[1,-30],[11,-34],[8,-14],[14,-24],[23,-26],[34,-26],[10,-13],[8,-22],[1,-39],[-14,-108],[-14,-49],[-33,-69],[-17,-25],[-35,-38],[-28,-48],[-21,-46],[-2,-18],[5,-13],[8,-9],[10,-5],[4,-2],[23,-6],[31,-2],[46,7],[40,15],[18,6],[5,3],[35,18],[16,14],[6,6],[8,8],[16,18],[18,13],[37,14],[20,2],[7,-3],[4,-6],[1,-17],[-7,-35],[-21,-61],[-3,-23],[2,-10],[12,-20],[7,-6],[36,-28],[23,-11],[37,-8],[14,0],[14,0],[53,3],[8,0],[57,3],[22,13],[20,21],[6,6],[7,8],[26,19],[37,15],[31,4],[11,-4],[8,-8],[4,-9],[20,-59],[35,-55],[11,-28],[91,-114],[15,4],[7,2],[96,26],[205,55],[336,4],[171,75],[191,26],[21,3],[8,-9],[51,-57],[22,-25],[-21,-16],[-33,-25],[-74,-56],[-86,-65],[-77,-459],[19,-86],[15,-72],[-20,-83],[-15,-61],[103,-87],[46,24],[287,147],[439,157],[251,89],[212,-18],[90,-7],[67,13],[123,24],[49,-22],[-3,-46],[-3,-34],[31,-48],[83,-132],[-4,-22],[2,-5],[-3,-4],[-5,-2],[0,-3],[12,-8],[5,-7],[37,-5],[62,-9],[32,23],[6,-2],[9,5],[20,10],[29,4],[10,4],[100,42],[291,58],[2,1],[35,32],[38,35],[32,29],[44,41],[11,10],[1,1],[98,65],[75,-44],[135,58],[5,2],[7,3],[12,5],[1,1],[7,4],[1,0],[11,5],[3,1],[3,2],[4,1],[2,0],[6,-5],[15,9],[111,23],[46,-42],[0,-23],[22,-4],[27,6],[24,5],[16,7],[7,5],[8,5],[36,22],[15,5],[28,6],[96,6],[46,-5],[22,-3],[27,0],[7,-1],[3,1],[99,9],[2,0],[7,1],[23,2],[59,6],[17,2],[11,1],[178,78],[118,1],[220,89],[12,14],[52,56],[40,43],[7,7],[50,53],[30,32],[88,53],[169,61],[46,54],[1,1],[184,217],[47,56],[43,50],[69,-43],[17,-7],[6,1],[2,2],[1,0],[2,3],[6,7],[10,11],[60,34],[17,16],[21,20],[41,40],[73,71],[30,30],[43,41],[37,36],[132,80],[53,33],[60,36],[-6,27],[-5,4],[-5,5],[-6,7],[-4,4],[-4,3],[-2,6],[-7,14],[0,3],[-1,6],[1,3],[3,8],[4,5],[4,5],[12,8],[23,10],[27,9],[116,41],[55,25],[10,7],[20,15],[10,11],[12,14],[12,14],[8,8],[12,14],[32,25],[48,26],[118,44],[55,26],[16,11],[19,14],[16,16],[26,27],[3,3],[7,7],[13,13],[20,16],[23,13],[23,6],[13,1],[48,-4],[38,1],[29,5],[42,12],[37,18],[13,11],[17,15],[4,4],[2,2],[3,2],[2,2],[3,2],[1,2],[20,14],[9,5],[9,5],[44,25],[18,9],[26,7],[81,17],[49,7],[31,1],[36,2],[12,-1],[16,-1],[34,-3],[16,-1]],[[9520,79432],[-1,-122],[0,-248],[1,-246],[-1,-183],[-1,-36],[0,-28],[0,-122],[0,-1],[0,-125],[0,-208],[1,-24],[0,-3],[0,-154],[0,-3],[0,-361],[0,-236],[0,-253],[0,-237],[3,0],[4,1],[100,-1],[6,0],[116,0],[7,0],[-1,-24],[0,-201],[0,-10],[1,-133],[-1,-273],[0,-7],[0,-36],[0,-25],[1,-22],[1,-10],[-1,0],[0,-3],[0,-25],[-1,-220]],[[9754,75853],[0,-158],[0,-115],[0,-220],[2,-7],[0,-125],[0,-91],[-1,-23],[0,-245],[1,-58],[2,-191],[0,-74],[2,-171],[0,-26],[0,-79],[1,-140],[-1,-124],[3,-125],[145,3],[88,1],[49,1],[53,0],[279,-1],[2,0],[59,0],[160,0],[277,0],[263,-5],[15,0],[275,-3],[2,-222],[2,-22],[2,-248],[1,-246],[2,-24],[0,-99],[0,-27],[0,-97],[0,-25],[1,-102],[0,-34],[0,-85],[3,-243],[7,0],[116,-2],[152,-2],[232,-2],[33,-1],[237,-2],[46,0],[4,0],[72,-1],[86,1],[95,0],[14,0],[1,0],[14,0],[37,0],[163,-1],[69,0],[269,-1],[136,-1],[143,-1],[123,0],[154,1],[235,0],[44,0],[96,0],[97,0],[67,1],[179,3],[74,2],[29,-1],[82,0],[19,0],[175,0],[204,0],[73,0],[177,2],[109,2],[268,2],[99,0],[51,0],[10,0],[119,0],[76,1],[29,0],[12,0],[6,0],[4,0],[245,2],[180,0],[131,0],[26,0],[8,0],[118,0],[142,3],[136,3],[145,1],[136,1],[279,-1],[61,0],[23,0],[29,-1],[52,0],[86,-1],[2,0],[133,-1],[169,-2],[0,44],[-2,11],[1,11],[1,5],[1,141],[0,38],[2,87],[3,116],[-1,44],[1,111],[-1,134],[0,251],[-1,247],[0,34],[0,2],[-1,60],[0,30],[0,34],[0,27],[0,60],[9,1],[46,0],[289,3],[191,-2],[48,0],[20,0],[72,0],[138,1],[48,0],[18,0],[130,-1],[78,-1],[28,1],[251,5],[86,0],[93,0],[19,0],[83,-1],[-1,244],[-8,205],[2,48],[1,238],[1,247],[-3,123],[1,130],[1,248]],[[19723,75383],[270,-10],[48,-2],[15,1],[8,0],[25,0],[99,-3],[64,1],[29,0],[47,-4],[1,0],[79,1],[1,0],[28,-1],[16,0],[51,-1],[10,0],[21,-1],[274,-6],[79,-2],[64,-1],[65,-1],[71,-1],[120,-1],[156,0],[2,0]],[[21366,75352],[0,-77],[0,-53],[0,-9],[1,-22],[0,-89],[2,-58],[0,-25],[2,-160],[5,-489],[1,-21],[1,-222],[3,-251],[2,-56],[2,-237],[6,-442],[1,-124],[1,-117],[1,-132],[0,-27],[0,-35],[0,-82],[0,-156],[-2,-43],[0,-19],[0,-2],[1,-37],[4,-114],[1,-28],[2,-58],[0,-12],[1,-42],[0,-6],[0,-60],[1,-45],[1,-32],[1,-61],[1,-122],[0,-47],[2,-76],[1,-221],[0,-22],[0,-200],[0,-19],[0,-28],[0,-247],[37,-1],[61,1],[36,0],[63,0],[26,0],[1,0],[26,0],[78,0],[2,-22],[-4,-29],[-1,-66],[0,-74],[-1,-109],[0,-5],[-2,-137],[2,-46],[2,-3],[1,-95],[1,-57],[0,-22],[1,-34],[-1,-38],[-2,-89],[0,-90],[0,-42],[0,-19],[1,-252],[0,-33],[0,-213],[-1,-61],[-2,-52],[1,-131],[-2,-239],[0,-316],[0,-185],[1,-31],[0,-78],[2,-51],[-2,-110],[-1,-89],[-5,-126]],[[21726,67983],[-41,0],[-71,-1],[-19,0],[-32,-1],[-37,0],[-42,0],[-18,-1],[-81,-1],[-36,0],[-40,0],[-53,-2],[-54,-4],[-16,-1],[-30,-1],[-7,0],[-3,0],[-83,0],[-1,0],[-67,-1],[-186,-2],[-32,0],[-53,0],[-65,1],[-94,0],[-181,0],[-66,-2],[-50,0],[-99,0],[-27,0],[-23,0],[-42,0],[-71,-1],[-243,0],[-190,-1],[-35,0],[-199,-1],[-27,0],[-1,0],[-114,-2],[-10,0],[-10,1],[-30,0],[-23,0],[-204,1],[-53,0],[-126,1],[-40,2],[-25,-8],[-16,3],[-18,4],[-60,1],[-98,1],[-63,0],[-48,0],[-20,3],[-13,-1],[-19,-1],[-37,0],[-107,-2],[-30,1],[-27,-1],[-160,1],[-28,0],[-105,-2],[-26,1],[-41,0],[-96,0],[-33,0],[-46,-5],[-201,0],[-132,-1],[-117,-1],[-234,3],[-63,-1],[-75,1],[-64,0],[-172,0],[-40,0],[-206,0],[-77,0],[-16,0],[-134,1],[-46,-1],[-30,1],[-5,0],[-34,1],[-36,-2],[-31,1],[-73,0],[-59,0],[-10,0],[-69,1],[-29,0],[-27,0],[-63,-1],[-50,0],[-40,0],[-135,1],[-126,0],[-24,0],[-60,-1]],[[15107,67964],[-71,0],[-27,0],[-176,1],[-181,1],[-108,1],[-27,1],[-58,0],[-19,0],[-78,1],[-79,1],[-29,0],[-177,0],[-15,0],[-54,0],[-110,0],[-164,0],[-36,0],[-95,0],[-55,0],[-91,0],[-99,1],[-16,0],[-160,-1],[-14,0],[-102,0],[-19,0],[-57,0],[-19,0],[-19,0],[-44,0],[-65,0],[-93,2],[-117,-2],[-136,1],[-140,0],[-446,0],[-100,0],[-552,-1],[-121,-2],[-709,-4],[-277,-2],[-553,-2],[-73,5],[-196,-1],[-279,0],[-40,0],[-515,-1],[-274,0],[-280,0],[-28,5],[-252,-3],[-120,-1],[-14,0],[-135,-5],[-198,-3],[-90,-2],[-262,3],[-26,0],[-256,1],[-259,1],[-16,0],[-279,0],[-276,1],[-274,0],[-13,0],[-26,0],[-199,1],[-24,-1],[-185,17]],[[5010,67977],[-35,66],[3,50],[8,11],[7,2],[5,0],[26,-14],[13,-4],[17,0],[14,3],[22,6],[9,5],[16,15],[3,6],[0,8],[-3,6],[-9,9],[-11,6],[-11,3],[-21,0],[-33,-11],[-19,-4],[-10,0],[-9,4],[-8,7],[-6,5],[-1,3],[-6,11],[-1,9],[5,12],[3,4],[6,6],[11,5],[9,2],[10,-1],[14,-3],[34,-17],[7,-1],[15,1],[8,2],[9,5],[6,6],[7,9],[3,7],[3,9],[0,16],[-1,2],[-2,5],[-7,7],[-8,5],[-11,5],[-15,3],[-15,-2],[-13,-7],[-7,-5],[-26,-13],[-23,-10],[-17,-6],[-11,-3],[-7,0],[-22,2],[-27,7],[-18,6],[-20,10],[-13,9],[-7,8],[-4,7],[-1,6],[-1,35],[-1,11],[-2,4],[-28,39],[-3,2],[-58,60],[-3,6],[-2,6],[1,11],[3,6],[7,7],[12,5],[15,2],[19,-1],[20,0],[34,1],[16,5],[8,3],[15,14],[68,90],[7,10],[1,16],[-2,11],[-5,5],[-9,2],[-15,-1],[-14,-6],[-13,-6],[-13,-6],[-5,-2],[-8,2],[-12,4],[-13,9],[-13,13],[-5,7],[-2,7],[0,12],[7,12],[19,8],[45,11],[18,3],[13,-2],[16,-6],[13,-7],[12,-11],[5,-10],[4,-7],[2,-7],[6,-12],[4,-6],[8,-9],[8,-5],[13,-4],[9,-1],[8,2],[8,3],[10,9],[7,12],[0,13],[-1,5],[-2,10],[-7,12],[-9,8],[-22,18],[-23,12],[-30,10],[-61,17],[-18,7],[-15,7],[-6,5],[-2,3],[0,6],[2,3],[3,2],[5,3],[25,13],[45,19],[47,48],[6,9],[2,7],[2,11],[-3,8],[-2,4],[-6,6],[-9,5],[-58,9],[-15,3],[-11,5],[-13,10],[-12,15],[-9,13],[-4,6],[-9,18],[0,12],[2,3],[6,6],[9,3],[9,1],[18,-4],[10,-5],[7,-1],[18,1],[12,2],[9,6],[68,57],[11,10],[3,7],[2,9],[-1,9],[-1,5],[-7,4],[-10,2],[-15,-3],[-79,-28],[-20,-11],[-31,-18],[-16,-6],[-14,-4],[-8,0],[-15,2],[-15,7],[-12,9],[-6,6],[-14,18],[-13,25],[-1,7],[0,13],[5,9],[12,9],[17,12],[7,2],[74,-35],[14,-6],[12,-1],[30,1],[21,5],[13,6],[13,10],[5,10],[-1,14],[-2,8],[-6,10],[-10,10],[-11,8],[-14,9],[-29,14],[-18,40],[2,1],[39,27],[14,13],[10,18],[3,7],[3,11],[2,12],[2,61],[3,1],[5,7],[7,16],[19,75],[2,12],[-3,10],[-2,5],[-11,10],[-7,4],[-27,5],[-14,6],[-33,17],[-9,5],[-6,5],[-3,7],[0,7],[6,7],[11,2],[42,-5],[16,1],[12,5],[8,7],[4,9],[3,7],[0,11],[-46,35],[-14,8],[-11,12],[-4,7],[-2,6],[1,12],[3,8],[16,26],[2,58],[-20,21],[0,1],[-1,1],[-29,35],[-71,9],[-12,2],[-12,6],[-10,12],[-10,14],[-19,9],[-14,45],[-3,8],[-6,4],[-7,1],[-44,12],[-1,1],[-13,1],[-41,24],[-15,81],[0,8],[3,5],[7,7],[9,3],[7,0],[25,-2],[18,1],[5,2],[4,7],[2,5],[-2,9],[-1,5],[-9,7],[-15,4],[-28,-2],[-11,1],[-8,1],[-5,2],[-6,4],[-7,10],[-1,3],[-2,8],[-2,9],[0,23],[-4,14],[0,2],[-1,2],[-6,7],[-31,29],[-31,33],[-12,16],[1,13],[0,3],[4,5],[10,7],[17,6],[21,5],[12,7],[3,3],[6,7],[2,8],[4,116],[-4,13],[-3,6],[-10,12],[-10,6],[-3,1],[-20,16],[-5,5],[-4,9],[-9,79],[0,20],[4,11],[21,35],[2,13],[0,19],[-2,14],[-10,21],[-9,15],[-31,37],[51,70],[1,1],[3,6],[2,6],[-2,7],[-6,5],[-7,2],[-6,0],[-8,-1],[-45,-15],[-13,-3],[-21,0],[-14,3],[-8,4],[-16,14],[-3,6],[-1,5],[-10,105],[-17,57],[-6,22],[1,21],[1,26],[-2,14],[-5,13],[-7,9],[-11,10],[-8,4],[-7,2],[-9,-2],[-7,-7],[-5,-6],[-10,-19],[-7,-8],[-11,-7],[-14,-6],[-12,0],[-10,4],[-9,7],[-4,7],[-3,7],[0,22],[5,12],[8,10],[17,14],[5,5],[2,5],[0,12],[-5,8],[-21,27],[-7,10],[-6,15],[-4,11],[-2,6],[-10,22],[-6,11],[-8,8],[-3,2],[-5,2],[-11,-1],[-6,-3],[-13,-13],[-18,-18],[-11,-8],[-8,-4],[-12,0],[-12,3],[-6,6],[-3,6],[-2,5],[0,9],[4,9],[17,20],[10,8],[13,7],[6,1],[10,-1],[12,1],[14,5],[9,8],[7,7],[12,19],[4,15],[-2,15],[-1,5],[-9,7],[-8,3],[-14,2],[-23,1],[-14,6],[-20,9],[-10,10],[-4,6],[-1,4],[-3,8],[0,14],[2,8],[7,21],[4,4],[3,11],[1,7],[0,12],[-8,16],[-5,9],[-11,8],[-9,4],[-10,3],[-10,-2],[-8,-4],[-9,-10],[-3,-7],[-1,-3],[-6,-9],[-9,-11],[-7,-6],[-15,-9],[-9,-2],[-8,0],[-12,3],[-7,6],[-6,7],[-4,13],[1,9],[5,16],[3,7],[7,7],[17,7],[20,5],[27,12],[17,9],[26,15],[15,11],[14,13],[7,9],[3,6],[3,8],[-3,7],[-1,3],[-4,5],[-8,5],[-7,4],[-28,5],[-15,4],[-8,7],[-6,8],[-4,14],[-1,27],[-3,14],[-3,4],[-23,24],[-42,48],[-11,15],[-14,25],[-3,7],[-6,19],[-1,8],[0,11],[4,10],[4,5],[11,14],[13,10],[8,8],[12,14],[4,8],[3,12],[4,13],[-1,53],[-2,17],[-5,21],[-11,12],[-12,9],[-32,17],[-24,11],[-47,13],[-9,8],[-5,7],[1,11],[4,6],[8,6],[9,2],[11,0],[12,-3],[34,-17],[13,-5],[20,-2],[19,2],[7,3],[3,5],[1,8],[-4,5],[-9,7],[-14,7],[-33,12],[-26,12],[-16,12],[-14,21],[-3,8],[-5,12],[1,17],[4,14],[5,11],[37,49],[-2,5],[-9,8],[-10,4],[-23,6],[-12,5],[-16,13],[-24,27],[-9,7],[-16,8],[-3,0],[-21,50],[-6,7],[-11,5],[-12,2],[-16,-3],[-29,-9],[-11,-2],[-14,1],[-17,2],[-13,5],[-6,4],[-3,7],[0,6],[-21,71],[-12,15],[-33,37],[-16,-6],[-16,1],[-7,4],[-5,4],[-2,7],[1,18],[4,9],[7,12],[13,19],[9,9],[10,9],[7,6],[21,9],[17,6],[13,6],[4,4],[1,3],[0,11],[-1,5],[-7,12],[-8,8],[-17,11],[-39,18],[-10,7],[-9,8],[-10,13],[-10,16],[-4,9],[-1,31],[-2,4],[-9,7],[-6,1],[-8,-1],[-11,-5],[-3,-2],[-14,-11],[-18,-7],[-31,-9],[-18,1],[-9,1],[-6,4],[-3,3],[-3,5],[0,24],[9,21],[3,5],[-36,42],[-55,18],[0,3],[-24,21],[-10,6],[-7,4],[-17,1],[-22,0],[-15,7],[-6,5],[-8,10],[1,10],[5,7],[11,4],[16,4],[12,0],[22,-3],[60,-10],[16,0],[12,5],[10,9],[8,11],[3,9],[1,9],[-2,8],[-5,10],[-4,6],[-9,12],[-4,8],[-2,6],[-5,18],[-1,108],[2,6],[8,3],[8,0],[24,-7],[9,-1],[14,1],[10,5],[2,2],[4,4],[0,10],[-3,8],[-7,10],[-11,9],[-15,6],[-18,4],[-13,2],[-35,-3],[-31,-6],[-17,0],[-9,1],[-6,4],[-3,3],[0,9],[6,5],[11,7],[24,11],[16,10],[11,11],[3,4],[1,9],[0,10],[-1,6],[-44,84],[-5,9],[-11,23],[-4,7],[-9,4],[-11,2],[-19,0],[-14,-1],[-10,-3],[-12,0],[-6,2],[-11,7],[-59,58],[1,12],[5,12],[6,9],[14,12],[7,4],[14,5],[5,5],[3,5],[0,5],[-1,7],[-2,4],[-8,9],[-8,7],[-17,10],[-4,7],[-2,6],[-2,15],[2,12],[5,19],[3,19],[-1,32],[-2,17],[-7,33],[-4,15],[-4,11],[-10,16],[-12,14],[-7,4],[-34,27],[-33,28],[-1,13],[7,6],[27,9],[21,20],[-3,21],[-31,28],[-43,17],[-56,6],[-57,1],[-19,5],[-41,14],[-27,22],[-2,17],[2,4],[21,15],[24,9],[17,18],[-1,28],[-4,10],[-13,11],[-41,23],[-25,23],[-6,12],[-5,13],[2,32],[26,26],[43,22],[15,16],[1,16],[-12,18],[-31,23],[-15,6],[-22,22],[0,32],[5,7],[16,15],[26,15],[22,24],[-1,26],[-43,41],[-25,36],[0,26],[7,6],[15,1],[46,-43],[12,-4],[31,2],[19,22],[-3,43],[-13,37],[-14,21],[-22,17],[-46,15],[-14,10],[2,13],[7,7],[63,40],[0,28],[-40,23],[2,6],[-2,1],[-22,10],[-34,29],[-40,34],[-6,5],[-90,58],[-4,-1],[-1,0],[-2,-1],[-2,0],[-3,46],[-3,46],[3,0],[23,4],[-12,54],[-26,21],[-60,6],[-65,19],[-39,21],[-44,43],[-17,30],[-3,28],[3,15],[9,22],[19,28],[9,24],[2,54],[-15,30],[-10,10],[-13,12],[-1,1],[-34,18],[-4,0],[-20,17],[-15,12],[-7,15],[0,22],[9,15],[38,37],[14,26],[-3,19],[-27,43],[0,24],[12,32],[15,31],[43,127],[9,44],[-1,36],[-9,20],[-20,17],[-70,33],[-34,32],[-12,26],[-1,22],[-20,120],[-8,26],[0,26],[50,55],[-1,21],[-19,17],[-36,2],[-26,6],[-30,26],[-9,23],[-1,33],[14,34],[28,53],[5,17],[-1,49],[-15,63],[-3,67],[-4,92],[-5,26],[-7,30],[-20,58],[-18,33],[-24,25],[-60,34],[-34,15],[-49,40],[-22,33],[-32,62],[-51,53],[-21,44],[1,6],[-2,10],[-15,13],[-55,4],[-12,4],[-15,13],[0,24],[50,59],[13,45],[5,35],[-1,36],[-5,30],[-10,28],[-29,30],[-12,7],[-27,8],[-36,4],[-12,11],[0,15],[12,13],[12,6],[19,5],[19,0],[19,7],[10,8],[9,16],[0,15],[-8,11],[-17,14],[-46,24],[-14,12],[-5,13],[-1,52],[-10,20],[-19,17],[-15,6],[-31,0],[-29,-7],[-4,-5],[-39,0],[-24,8],[-17,15],[-2,7],[2,30],[21,33],[14,30],[2,41],[-13,32],[-42,71],[-34,71],[-18,51],[-3,78],[-10,17],[-39,37],[-5,17],[7,6],[15,1],[53,-24],[31,-1],[12,4],[19,17],[5,13],[-3,24],[-17,17],[-36,17],[-119,29],[-31,0],[-19,-9],[-21,-18],[-17,-8],[-29,-1],[-19,15],[-3,26],[2,13],[12,24],[59,80],[14,14],[26,15],[53,16],[95,45],[32,19],[35,32],[5,20],[-5,23],[-32,24],[-34,4],[-33,-7],[-55,-24],[-17,-13],[-31,-12],[-36,0],[-17,4],[-14,9],[-25,30],[-40,131],[-5,17],[0,26],[21,24]],[[21356,76823],[1,-77],[0,-1],[2,-167],[2,-38],[1,-59],[0,-7],[0,-23],[0,-134],[-1,-170],[0,-47],[3,-508],[1,-105],[0,-109],[1,-26]],[[19723,75383],[-2,87],[-1,74],[0,22],[0,14],[0,5],[0,28],[-1,133],[1,121],[-54,0],[-79,-1],[-97,-1],[-48,0],[-143,3],[-102,2],[-40,1],[-75,0],[-202,0],[-138,0],[-140,0],[-238,0],[-44,0],[-195,0],[-63,0],[-90,0],[-188,1],[-1,0],[-197,1],[-86,0],[-259,-3],[-13,0],[-279,0],[-240,-3],[-181,-2],[-131,5],[-44,-1],[-232,-4],[-143,-4],[-4,0],[-26,-1],[-107,0],[-70,-1],[-33,0],[-27,0],[-37,0],[-115,1],[-24,0],[-253,-4],[-248,-1],[-5,0],[-26,-1],[-167,-1],[-49,1],[-47,3],[-135,1],[-124,-8],[-119,-3],[-39,-1],[-218,-2],[-29,0],[-66,0],[-194,1],[-194,1],[-34,-2],[-101,-2],[-1,0],[-19,0],[-127,0],[-139,0],[-94,0],[-17,0],[-97,0],[-25,-1],[-152,0],[-66,0],[-17,0],[-195,0],[-41,0],[-157,1],[-83,0],[-141,1],[-137,5],[-281,-1],[-219,4],[-38,1],[-22,0],[-281,-2],[-16,1],[-124,0],[-26,0],[-26,-1],[-31,0],[-43,0],[-280,0],[-158,1],[-48,0],[-41,0],[-29,0],[-140,1],[-2,0],[-11,0],[-63,0],[-2,0],[-22,0],[-174,1],[-46,0],[-24,0],[-78,0]],[[26510,66495],[-5,-253],[-2,-214],[0,-33],[2,-142],[8,-39],[-1,-84],[0,-100],[0,-215],[1,-27],[0,-20],[0,-41],[-1,-29],[0,-38],[2,-232],[-4,-17],[40,-5],[31,1],[104,4],[0,-268],[2,-74],[-2,-33],[1,-11],[1,-72],[-1,-79],[-1,-19],[0,-44],[2,-19],[-1,-77],[0,-64],[0,-5],[0,-29],[0,-21],[-1,-182],[-1,-285],[5,-160],[0,-13],[0,-219],[0,-18],[-2,-504],[2,-63],[2,-81],[1,-50],[0,-45],[-1,-151],[0,-31],[0,-42],[0,-63],[0,-216]],[[26691,62073],[-276,0],[-338,-3],[-20,0],[-29,0],[-30,-1],[-64,0],[-15,0],[-61,-1],[-16,0],[-42,-1],[-26,0],[-129,2],[-54,-1],[-280,-2],[-97,-3],[-48,-1],[-23,0],[-15,0],[-89,-2],[-136,-2],[-61,0],[-78,-2],[-166,1],[-50,1],[-50,0],[-33,0],[-21,0],[-25,0],[-210,0],[-31,0],[-145,-4],[-41,-2],[-28,0],[-93,-1],[-155,-2],[-45,0],[-182,2],[-89,1],[-38,1],[-17,0],[-162,2],[-56,1],[-111,-1],[-39,1],[-36,2],[-71,3],[-34,0],[-179,-1],[-1,0],[-23,-1],[-212,-7],[-26,0],[-117,1],[-55,0],[-82,0],[-60,0],[-50,1],[-9,0],[-30,0],[-31,-1],[-1,0],[-37,0],[-107,1],[-51,1]],[[21765,62055],[0,187],[1,268],[0,39],[-5,306],[1,45],[2,73],[0,27],[0,38],[0,45],[-2,85],[-5,52],[-1,71],[1,39],[1,86],[1,119],[0,66],[1,128],[0,127],[0,18],[1,331],[1,320],[0,172],[0,31],[1,236],[0,20],[0,24],[-1,17],[0,42],[0,187],[0,26],[2,100],[2,108],[0,20],[0,38],[1,63],[0,29],[0,58],[2,157],[0,115],[-1,40],[0,31],[-1,292],[0,11],[0,52],[0,29],[0,13],[0,32],[-1,68],[0,55],[-1,245],[-2,655],[-1,148],[0,59],[0,10],[0,5],[0,116],[-1,155],[-35,-1]],[[53940,59930],[-211,0],[-68,-1],[-13,0],[-67,0],[-10,0],[-58,0],[-52,0],[-69,2],[-64,-3],[-90,-1],[-114,-1],[-77,-1],[-614,-13],[-77,-1],[-83,0],[-25,-1],[-12,0],[-28,0],[-13,-1],[-264,6],[-238,8],[-153,4],[-34,1],[-43,2],[-28,-1],[-34,1],[-106,3],[-163,3],[-7,1],[-39,1],[-5,0],[-28,0],[-5,0],[-36,1],[-6,0],[-26,1],[-21,1],[-5,0],[-30,2],[-5,0],[-36,2],[-5,1],[-29,1],[-7,0],[-113,7],[-46,2],[-8,1],[-7,1],[-68,3],[-23,1],[-41,0],[-498,-2],[-215,2],[-61,-1],[-28,0],[-516,-1],[-279,4],[-437,7],[-42,0],[-249,0],[-745,11],[-173,-4],[-49,4],[-55,0],[-48,1],[-35,0],[-66,2],[-23,1],[-29,-1],[-30,0],[-23,-1],[-22,0],[-153,-1],[-161,-2],[-357,-8],[-2,0],[-23,-1],[-174,4],[-120,2],[-137,3],[-141,2],[-105,2],[-80,2],[-2,0],[-198,4],[-263,0],[-10,0],[-307,7],[-15,0]],[[44665,59998],[2,172],[1,151],[3,187],[1,57],[1,132],[1,69],[0,3],[1,38],[0,2],[1,62],[5,323],[0,3],[-3,147],[-1,64],[0,18],[0,103],[0,75],[0,36],[1,362],[0,11],[0,75],[0,1],[1,106],[0,132],[1,194],[0,68],[0,49],[1,112],[0,40],[0,62],[0,95],[0,45],[0,19],[1,44],[-4,14],[-2,7],[-4,16],[-21,4],[-16,-14],[3,-27],[5,-16],[-75,-3],[8,25],[1,18],[-16,20],[-6,16],[-7,9],[-12,13],[-1,1],[-14,8],[-20,6],[-19,7],[-33,10],[-14,5],[-13,1],[-17,1],[-5,4],[-12,9],[0,1],[-23,21],[-7,6],[-1,1],[-7,5],[-8,7],[0,22],[10,21],[-39,48],[-5,17],[1,3],[6,13],[8,30],[0,1],[-2,21],[-7,24],[-13,19],[-34,-10],[-27,-5],[-18,4],[-14,35],[0,1],[6,20],[29,4],[5,19],[-10,17],[-31,16],[-22,43],[-1,2],[13,8],[20,-16],[18,-9],[20,5],[26,24],[2,2],[6,17],[1,21],[-1,3],[-7,22],[-7,36],[-1,7],[2,13],[4,9],[1,4],[13,21],[6,11],[26,23],[3,2],[26,22],[4,5],[5,12],[0,1],[0,6],[0,17],[0,1],[0,6],[0,1],[2,11],[6,8],[1,1],[11,2],[44,-27],[8,-4],[4,3],[15,13],[1,1],[0,8],[5,8],[2,3],[3,2],[5,3],[5,1],[3,0],[24,1],[9,0],[32,-2],[5,0],[18,20],[-10,79],[-1,3],[-23,63],[0,1],[32,-12],[6,0],[15,4],[7,2],[8,8],[0,8],[-3,9],[-9,4],[-27,13],[-15,23],[-5,8],[13,32],[35,16],[50,12],[7,5],[4,7],[0,16],[-13,35],[-3,9],[-65,121],[-1,0],[-58,29],[-6,1],[-11,2],[-3,0],[-3,14],[1,1],[0,9],[11,2],[2,2],[2,1],[5,5],[11,18],[1,12],[-6,13],[0,1],[-10,23],[4,21],[1,0],[10,19],[2,1],[6,6],[9,3],[3,1],[22,-3],[1,0],[8,3],[8,7],[15,-1],[13,-11],[0,-3],[1,-4],[1,0],[59,-8],[13,113],[-17,9],[-17,-1],[-20,-4],[-24,-2],[-19,24],[-18,31],[-18,5],[-18,-9],[-12,-16],[-60,26],[-17,4],[-23,-5],[-21,-16],[-21,-18],[-19,7],[-10,16],[-28,0],[-14,-6],[-14,-9],[-13,-28],[-11,-13],[-21,-1],[-5,25],[2,23],[-19,13],[-45,2],[-21,-1],[-12,-10],[12,-25],[16,-15],[35,-19],[11,-16],[4,-21],[5,-24],[-9,-21],[-15,-2],[-46,64],[-45,10],[-5,-5],[-8,-11],[-14,-31],[-7,-6],[-21,-1],[-8,3],[-7,11],[-8,30],[-6,10],[-13,12],[-22,19],[0,1],[-1,0],[-7,6],[-9,1],[-1,0],[-30,-7],[-13,-1],[-6,3],[-1,10],[2,32],[-17,3],[-25,5],[-8,-1],[-3,0],[-19,-9],[-2,-2],[-5,-9],[-5,-12],[-2,-4],[-22,2],[-20,1],[-13,10],[8,18],[1,11],[0,9],[-17,14],[-15,0],[-22,-2],[-15,6],[1,26],[14,24],[16,33],[3,17],[-23,13],[-20,-5],[-13,-7],[-6,-32],[-14,-9],[-43,0],[-16,12],[-3,17],[9,19],[16,24],[-6,17],[-13,1],[-24,-3],[-18,5],[-13,23],[-8,25],[-28,-1],[20,-24],[4,-18],[-20,0],[-30,12],[-14,6],[-33,3],[3,-20],[9,-19],[26,-7],[2,-1],[11,-3],[14,-7],[9,-12],[1,-1],[0,-3],[0,-5],[2,-22],[-6,-1],[0,1],[-4,2],[-23,18],[-2,1],[-1,1],[-32,3],[-1,0],[-1,0],[-1,1],[-33,3],[-9,1],[-34,3],[-20,2],[-14,1],[-24,1],[-25,1],[-2,1],[-5,0],[-30,2],[-6,3],[-2,3],[-1,1],[-2,3],[0,1],[0,1],[1,5],[11,15],[5,7],[-5,3],[-1,0],[-1,0],[-5,2],[-6,-1],[-12,-9],[-1,0],[-8,-3],[-9,-3],[-6,-2],[-12,-1],[-2,0],[1,2],[5,16],[6,11],[2,5],[1,2],[9,18],[5,21],[-9,15],[-17,14],[-7,20],[-13,5],[-15,-7],[-5,-18],[-2,-35],[0,-33],[2,-17],[0,-3],[0,-1],[1,-12],[7,-17],[1,-2],[1,-3],[1,-4],[5,-20],[0,-2],[-1,-6],[-7,-25],[-32,-111],[-3,-11],[-7,-5],[-16,-5],[-26,-21],[-25,-18],[-9,-7],[-51,-36],[-3,-3],[-6,5],[0,1],[-8,5],[-1,1],[-6,4],[-14,1],[-31,-4],[-12,-7],[-2,-2],[-6,-5],[-1,-6],[0,-1],[-2,-16],[-8,-31],[-7,-6],[-3,-1],[-8,1],[-2,1],[-4,0],[-1,1],[-17,13],[-65,57],[-7,8],[-35,45],[4,10],[-3,13],[-13,14],[-1,0],[-3,1],[-9,-1],[-1,-1],[-35,-5],[-20,-3],[-13,-2],[-13,-8],[-10,-5],[-6,-7],[-12,-3],[-2,0],[-2,0],[-10,1],[-17,0],[-12,4],[-1,0],[-6,5],[-4,2],[-7,7],[-4,9],[-4,16],[-6,21],[-6,21],[0,3],[1,14],[-4,32],[-6,12],[-46,51],[-2,7],[-82,-8],[-3,-15],[-10,-2],[-22,27],[-31,34],[-7,1],[-1,2],[1,15],[4,2],[2,2],[10,7],[-13,8],[-24,13],[-11,4],[-12,-2],[-5,0],[-3,17],[3,17],[-49,28],[-5,16],[10,19],[-14,1],[-59,5],[-8,-1],[-11,8],[3,18],[6,8],[2,8],[-3,8],[-1,5],[-11,20],[-10,20],[-8,4],[-7,14],[-5,9],[-14,29],[-15,4],[-14,-6],[-7,0],[-6,7],[-1,6],[-1,1],[-17,12],[-2,1],[-44,-5],[-13,-2],[-12,-14],[-12,-6],[-11,17],[-26,18],[-5,4],[-18,5],[-6,2],[-6,0],[-7,1],[-4,-1],[-9,0],[-3,-1],[-12,9],[-2,9],[-2,12],[-25,23],[-15,7],[-13,8],[-22,11],[-12,7],[-16,13],[-17,7],[-16,15],[0,17],[-17,13],[-16,-1],[0,-23],[-11,-16],[-18,-2],[-39,9],[-32,6],[-12,7],[-12,11],[-8,12],[-6,10],[-16,6],[-19,1],[-33,12],[-5,2],[-14,3],[-31,1],[-8,15],[5,21],[9,19],[13,14],[1,20],[-13,16],[-44,9],[-7,1],[-23,7],[-9,7],[-10,9],[-23,2],[-10,11],[-1,31],[7,21],[-14,19],[-16,5],[-15,7],[-13,12],[10,16],[12,19],[1,18],[-3,4],[-5,12],[-9,12],[-12,15],[-22,22],[-1,0],[0,1],[-11,17],[-4,16],[0,2],[-1,20],[0,1],[3,34],[4,11],[6,17],[1,1],[26,55],[7,15],[0,1],[1,5],[1,18],[-2,3],[-14,17],[-7,53],[-6,38],[-6,22],[-5,36],[2,22],[0,34],[-3,30],[9,16],[8,15],[13,11],[14,2],[24,1],[14,3],[24,19],[44,19],[13,16],[19,29],[1,2],[3,18],[-7,16],[-8,14],[-10,13],[-15,8],[-17,8],[-2,1],[-35,19],[-18,9],[-9,12],[-8,21],[-14,9],[-10,12],[-12,15],[-7,4],[-9,4],[1,19],[-3,17],[-12,16],[-13,17],[-25,25],[-9,13],[-12,17],[-10,14],[-11,16],[-16,19],[-11,10],[-2,2],[-126,140],[-161,387],[-77,128],[-196,161],[-116,19],[-65,10],[-114,18],[-93,-40],[-176,-71],[-91,-37],[-232,-94],[-117,-47],[-158,-63],[-838,-339],[-63,-26],[-98,-40],[-121,-50],[-109,-42],[-108,-45],[-116,-48],[-110,-57],[-80,-40],[-42,-24],[-16,-7],[-43,-25],[-27,-11],[-6,0],[-12,1],[-46,2],[-30,12],[-58,21],[-23,9],[-20,9],[-80,40],[-39,25],[-91,33],[-57,5],[-57,5],[-5,1],[-7,0],[-39,2],[-8,4],[-22,14],[-27,9],[-24,2],[-2,0],[-3,5],[-2,3],[-21,30],[-12,22],[-2,3],[-20,21],[-16,-3],[-5,-1],[-13,0],[-13,5],[-2,1],[-14,-8],[-8,-12],[-7,-12],[-1,-27],[-16,-18],[-95,2],[-21,0],[-22,9],[2,21],[-4,23],[-9,19],[-14,3],[-9,20],[-24,12],[-2,1],[-19,-3],[-22,-2],[-25,1],[-25,2],[-16,12],[-14,13],[-2,2],[2,2],[17,23],[16,5],[23,3],[15,2],[14,10],[-3,10],[-2,9],[-1,2],[-3,3],[-18,13],[-9,18],[-12,17],[-2,3],[-2,2],[-9,9],[-12,11],[-27,23],[-11,4],[-5,1],[-10,0],[-11,0],[-18,-5],[-11,-7]],[[21765,62055],[-42,0],[-168,1],[-1,0],[-15,-1],[-64,0],[-190,0],[-38,0],[-19,-1],[-2,0],[-260,0],[-28,0],[-57,0],[-1,0],[-10,0],[-61,1],[-1,0],[-49,-3],[-25,0],[-21,-1],[-38,-1],[-29,-1],[-28,-1],[-17,0],[-163,4],[-314,-4],[-60,-1],[-74,-1],[-519,-6],[-1,0],[-31,0],[-242,-2],[-32,0],[-63,1],[-62,1],[-4,0],[-2,0],[-17,-1],[-3,0],[-6,0],[-9,1],[-30,1],[-9,0],[-4,-1],[-11,-2],[-30,1],[-18,-3],[-25,1],[-137,-2],[-24,0],[-62,-1],[-27,0],[-20,0],[-15,-1],[-92,-1],[-141,-1],[-59,-1],[-145,1],[-202,1],[-273,1],[-49,0],[-41,1],[-141,5],[-70,2],[-177,6],[-123,2],[-20,1],[-39,1],[-90,2],[-86,1],[-63,1],[-7,0],[-80,0],[-2,0],[-63,0],[-57,-1],[-27,0],[-175,0],[-23,0],[-19,0],[-158,1],[-146,2],[-41,-2],[-5,0],[-65,0],[-163,-1],[-494,3],[-138,2]],[[15113,62059],[1,80],[-2,176],[2,44],[0,132],[0,58],[0,222],[0,25],[-1,136],[0,112],[0,86],[0,20],[-1,139],[4,246],[-1,113],[1,81],[1,55],[1,207],[1,7],[-1,156],[0,61],[1,85],[0,2],[0,65],[0,152],[0,244],[-1,119],[0,80],[0,6],[0,40],[0,37],[0,145],[0,63],[0,55],[-1,72],[0,119],[-1,259],[-1,101],[-1,141],[-2,149],[0,93],[-1,56],[-1,189],[-1,56],[-1,62],[1,70],[0,36],[0,25],[0,164],[-1,83],[1,79],[0,40],[0,57],[0,33],[0,37],[0,59],[0,20],[0,60],[0,70],[0,8],[0,50],[0,21],[0,23],[0,58],[-1,47],[0,76],[1,167],[-1,32],[-1,44]],[[15113,62059],[-90,-1],[-77,0],[-82,0],[-21,0],[-40,0],[-237,-1],[-80,0],[-125,0],[-74,-1],[-272,-3],[-83,-1],[-57,0],[-136,-1],[-154,-2],[-37,0],[-81,0]],[[13467,62049],[-124,1],[-102,-1],[-48,0],[-72,0],[-46,0],[-36,1],[-20,0],[-101,0],[-53,0],[-115,0],[-106,1],[-12,0],[-69,1],[-198,1],[-115,1],[-160,-1],[-270,0],[-193,2],[-353,-3],[-85,-1],[-51,0],[-140,0],[-120,0],[-18,0],[-19,0],[-116,-1],[-373,1],[-87,-2],[-55,-2],[-133,4],[-276,1],[-139,0],[-136,0],[-6,0],[-89,1],[-188,1],[-272,1],[-153,0],[-115,1],[-262,-1],[-281,0],[-125,0],[-121,0],[-22,-1],[-280,1],[-273,0],[-85,0],[-1,0],[-175,0],[-270,-2],[-189,-1],[-24,-1],[-63,0],[-70,-1],[-160,-1],[-45,-1],[-186,-2],[-19,0],[-68,-1],[-101,0],[-19,0],[-154,-1],[-34,-2],[-35,0],[-200,-2],[-35,0],[-22,-2],[-34,1],[-50,0],[-162,6]],[[5138,62045],[-11,16],[1,5],[8,7],[98,49],[9,-5],[21,-5],[33,-3],[30,0],[8,1],[15,9],[10,7],[9,10],[4,11],[0,5],[-4,9],[-7,6],[-9,6],[-16,4],[-57,-7],[-13,0],[-10,4],[-7,6],[-1,6],[0,9],[4,8],[3,4],[5,5],[8,3],[7,1],[63,1],[20,3],[16,8],[14,7],[9,8],[10,13],[5,11],[3,7],[0,10],[-3,5],[-8,6],[-11,4],[-12,2],[-21,2],[-10,3],[-5,3],[-6,7],[0,2],[-5,17],[2,14],[3,10],[8,14],[2,3],[13,23],[6,11],[1,7],[-1,6],[-6,9],[-6,5],[-8,3],[-5,2],[-19,-2],[-17,-3],[-17,1],[-16,3],[-15,6],[-7,5],[-13,12],[-12,15],[1,9],[6,8],[7,4],[11,0],[40,-7],[22,1],[11,5],[6,3],[8,7],[7,12],[0,3],[0,5],[-3,10],[-32,19],[-6,5],[-2,4],[1,8],[3,2],[7,4],[6,1],[5,0],[23,-5],[11,1],[12,5],[4,6],[4,5],[1,4],[-1,14],[-2,9],[-3,6],[-8,5],[-6,3],[-12,3],[-17,-4],[-31,-18],[-27,-11],[-23,-6],[-16,-2],[-14,4],[-7,3],[-11,10],[-5,8],[0,13],[4,8],[11,12],[12,7],[22,9],[15,4],[31,4],[22,7],[7,4],[4,5],[4,11],[0,7],[-4,9],[-5,9],[-10,10],[-16,11],[-26,15],[-4,1],[-44,18],[-12,6],[-26,22],[-9,3],[-7,1],[-12,-2],[-7,-5],[-5,-5],[-2,-5],[-3,-9],[1,-9],[3,-8],[3,-4],[3,-11],[2,-6],[0,-14],[-4,-9],[-4,-4],[-7,-3],[-13,1],[-13,4],[-14,9],[-5,7],[-7,12],[0,17],[1,6],[5,11],[60,55],[33,38],[34,48],[10,9],[4,1],[6,0],[9,-4],[7,-7],[5,-5],[1,-3],[4,-5],[6,-13],[4,-15],[4,-5],[3,-4],[7,-2],[9,1],[6,4],[3,3],[4,6],[0,12],[-3,9],[-4,10],[-12,14],[-12,11],[-13,10],[-13,8],[-59,25],[-4,4],[-5,6],[1,7],[3,7],[9,9],[7,2],[32,0],[17,7],[8,6],[5,6],[3,6],[2,9],[-1,6],[-2,5],[-5,7],[-18,17],[-33,21],[-20,19],[-9,14],[-1,4],[1,9],[2,3],[5,5],[6,5],[19,11],[13,10],[3,4],[5,10],[1,10],[-2,9],[-3,6],[-3,6],[-9,11],[-11,10],[-16,6],[-9,1],[-17,-2],[-4,-2],[-10,-10],[-6,-9],[-2,-7],[0,-34],[-4,-10],[-3,-6],[-5,-4],[-12,-5],[-12,0],[-15,3],[-10,6],[-6,5],[-5,8],[-3,6],[-2,13],[2,11],[7,11],[13,12],[15,11],[21,10],[18,9],[40,12],[32,9],[14,5],[16,8],[6,5],[2,5],[1,7],[-2,8],[-2,4],[-9,10],[-8,5],[-14,8],[-11,4],[-13,2],[-15,-1],[-20,-5],[-21,2],[-10,5],[-10,8],[-9,9],[-2,3],[1,12],[8,17],[6,9],[13,16],[13,9],[16,7],[15,4],[18,-2],[11,-8],[9,-11],[19,-33],[8,-5],[6,-4],[16,1],[12,6],[6,6],[3,9],[1,6],[0,15],[-2,4],[-6,19],[-8,11],[-23,32],[-57,76],[-5,4],[-8,1],[-11,-2],[-9,-6],[-5,-6],[-5,-7],[-3,-10],[-4,-16],[-2,-6],[-3,-4],[-7,-4],[-13,1],[-11,3],[-7,4],[-6,5],[-1,6],[1,16],[3,8],[7,11],[16,17],[23,13],[22,10],[22,7],[21,4],[10,4],[12,6],[9,9],[4,5],[2,7],[0,8],[-3,8],[-59,87],[-5,3],[-2,1],[-12,-2],[-7,-5],[-3,-4],[-5,-5],[-2,-5],[-1,-19],[-4,-8],[-4,-5],[-4,-5],[-14,-6],[-12,1],[-6,1],[-7,9],[-2,2],[-2,7],[0,6],[0,15],[3,6],[14,19],[9,5],[17,7],[19,14],[5,8],[5,9],[-1,10],[-3,7],[-8,7],[-14,5],[-17,-1],[-24,-2],[-8,-1],[-4,2],[-6,4],[-2,6],[1,7],[3,5],[5,5],[10,3],[32,-3],[37,-11],[16,0],[6,2],[7,9],[4,6],[4,8],[2,12],[0,15],[-3,16],[-4,6],[-6,4],[-10,4],[-45,-7],[-16,-5],[-59,-30],[-11,11],[0,18],[3,13],[7,14],[7,9],[7,6],[8,6],[11,3],[6,0],[17,-3],[26,-12],[13,-1],[20,1],[13,4],[8,6],[8,6],[6,8],[5,14],[0,10],[-2,6],[-5,10],[-10,10],[-7,3],[-11,4],[-9,0],[-16,-2],[-37,-10],[-9,-1],[-14,1],[-9,1],[-10,3],[-11,8],[-6,7],[-3,6],[-6,14],[-1,12],[5,13],[7,8],[5,3],[52,13],[14,8],[6,7],[2,6],[3,9],[1,11],[0,14],[-1,12],[-9,27],[-40,183],[-1,10],[0,32],[2,5],[9,19],[9,16],[149,175],[3,5],[0,7],[-6,15],[-57,70],[-8,7],[-9,3],[-9,0],[-9,-3],[-8,-7],[-5,-7],[-9,-16],[-2,-3],[-5,-6],[-15,-6],[-10,1],[-9,2],[-7,7],[-3,12],[1,5],[22,42],[-1,8],[-2,5],[-7,7],[-12,6],[-17,5],[-12,5],[-7,8],[-2,4],[0,12],[5,7],[7,7],[27,14],[11,5],[16,3],[63,2],[14,6],[5,4],[4,8],[4,10],[-1,10],[-1,5],[-2,4],[-6,9],[-21,27],[-1,7],[1,11],[5,8],[2,3],[11,6],[12,4],[7,1],[36,0],[18,6],[5,4],[7,7],[3,6],[2,10],[-3,10],[-2,7],[-6,7],[-10,12],[-12,8],[-17,7],[-18,5],[-10,0],[-13,-5],[-6,-6],[-11,-10],[-3,-9],[-6,-9],[-10,-14],[-13,-13],[-10,-6],[-11,-3],[-18,0],[-14,2],[-11,5],[-10,7],[-9,14],[-1,14],[3,11],[3,8],[4,8],[6,7],[10,10],[12,5],[19,5],[22,-1],[25,-3],[29,2],[7,2],[9,7],[9,11],[4,6],[24,46],[13,26],[2,4],[0,14],[-3,6],[-6,8],[-11,8],[-17,8],[-12,3],[-7,1],[-30,-5],[-8,-3],[-13,2],[-20,8],[-9,8],[-5,7],[-6,20],[-1,9],[-7,15],[-7,8],[-12,7],[-10,5],[-10,6],[-8,7],[-5,4],[-4,11],[-2,13],[-1,8],[15,30],[5,-1],[20,44],[21,43],[40,-5],[33,-4],[-15,24],[-78,4],[-52,-2],[-17,5],[-16,7],[-11,9],[-6,7],[-2,4],[-2,5],[1,20],[3,6],[6,9],[6,5],[20,15],[13,13],[5,7],[1,5],[0,12],[-3,7],[-2,5],[-9,12],[-11,11],[-9,5],[-7,2],[-26,-2],[-20,-5],[-20,0],[-12,4],[-4,3],[-8,8],[-2,3],[-1,11],[0,4],[7,10],[8,6],[10,4],[37,9],[13,1],[25,-4],[11,-2],[16,-10],[11,-5],[36,-9],[12,1],[15,6],[61,38],[5,4],[7,9],[4,14],[-1,8],[-2,5],[-9,8],[-11,4],[-4,1],[-21,-3],[-17,-11],[-16,-15],[-13,-14],[-8,-6],[-13,-6],[-10,-3],[-30,5],[-6,2],[-60,33],[-6,5],[-2,4],[-2,5],[1,10],[4,6],[12,6],[11,4],[10,0],[47,-6],[18,1],[21,3],[7,5],[10,9],[2,4],[2,8],[1,9],[-1,4],[-7,9],[-9,9],[-28,15],[-14,6],[-13,8],[-7,6],[-5,8],[-2,6],[1,7],[2,7],[11,8],[7,4],[9,1],[4,0],[8,-1],[11,-5],[21,-19],[11,-6],[14,-3],[19,1],[15,4],[9,5],[8,8],[3,5],[1,4],[1,8],[8,105],[-2,11],[-1,7],[-5,11],[-18,30],[-6,8],[-5,6],[-6,2],[-9,-3],[-11,-8],[-9,-5],[-8,-2],[-13,0],[-19,4],[-17,10],[-13,9],[-3,7],[0,11],[3,8],[3,6],[6,4],[19,8],[32,6],[13,6],[24,14],[12,8],[5,5],[3,6],[1,9],[-2,4],[-7,7],[-67,56],[-11,5],[-45,10],[-17,7],[-14,10],[-8,9],[-1,3],[0,9],[9,12],[10,3],[20,3],[20,3],[15,6],[25,15],[33,21],[8,12],[0,11],[-7,8],[-7,1],[-19,0],[-14,-4],[-21,-11],[-16,-7],[-29,-10],[-54,-11],[-14,0],[-21,9],[-7,5],[-8,8],[-5,7],[-25,38],[-10,15],[-2,6],[-1,8],[2,10],[10,22],[2,8],[0,2],[-3,3],[-60,19],[-6,1],[-8,-1],[-12,-5],[-6,-4],[-13,-4],[-10,0],[-8,2],[-7,3],[-7,6],[0,9],[3,4],[9,9],[110,38],[76,25],[14,7],[4,4],[3,5],[5,11],[0,6],[-3,5],[-3,4],[-10,8],[-9,5],[-15,2],[-13,2],[-15,-3],[-23,-9],[-6,-1],[-10,1],[-9,2],[-6,3],[-7,7],[-3,5],[1,7],[5,14],[25,12],[20,12],[37,34],[9,4],[8,-1],[7,-4],[18,-11],[5,-2],[8,1],[3,1],[5,5],[1,8],[-1,5],[-6,6],[-8,5],[-16,6],[-44,8],[-19,7],[-10,4],[-18,15],[-4,5],[-1,8],[0,8],[7,11],[15,7],[6,1],[33,0],[12,4],[7,5],[4,6],[3,5],[2,7],[-1,7],[-4,13],[-24,34],[-6,11],[-13,39],[0,14],[4,91],[2,3],[5,5],[10,4],[28,4],[8,3],[8,8],[3,7],[1,8],[-4,7],[-3,5],[-7,5],[-11,4],[-11,1],[-38,-4],[-16,1],[-11,2],[-7,2],[-10,10],[-1,4],[0,12],[2,8],[2,5],[14,7],[8,0],[10,-2],[14,2],[21,5],[34,15],[8,2],[3,3],[4,6],[3,9],[2,12],[-3,7],[-3,6],[-14,13],[-17,11],[-16,15],[-4,5],[-3,6],[-15,29],[-3,9],[-3,8],[-3,21],[-4,20],[-3,20],[-1,11],[2,15],[4,11],[7,3],[29,0],[3,1],[13,6],[20,17],[20,20],[4,5],[9,14],[5,18],[0,6],[-2,7],[-3,6],[-8,8],[-7,7],[-14,5],[-17,5],[-7,1],[-38,-4],[-11,-4],[-14,-11],[-16,-16],[-13,-23],[-10,-9],[-8,-5],[-12,-4],[-15,1],[-5,2],[-6,5],[-6,8],[-2,7],[0,10],[2,5],[2,5],[64,78],[8,5],[8,2],[7,0],[10,-3],[27,-11],[25,-6],[14,1],[15,5],[13,8],[7,7],[6,11],[3,7],[-1,21],[-3,7],[-9,7],[-17,5],[-50,13],[-61,20],[-16,6],[-5,5],[-2,7],[0,14],[2,9],[4,5],[5,3],[5,0],[11,-3],[6,-4],[13,0],[17,5],[40,18],[96,69],[7,7],[3,4],[-1,9],[-2,5],[-22,16]],[[44665,59998],[-1,-97],[-2,-48],[9,-373],[1,-122],[0,-62],[0,-51],[-1,-88],[-1,-88],[-1,-30],[-1,-152],[-1,-42],[0,-48],[0,-4],[0,-28],[-1,-55],[0,-45],[0,-27],[1,-174],[0,-69],[1,-53],[2,-81],[0,-170],[-1,-106],[-1,-221],[-1,-162],[0,-39],[-1,-80],[0,-22],[0,-23],[-1,-1],[0,-81],[1,-76],[-2,-74],[-2,-91],[-1,-73],[0,-1],[0,-74],[0,-1],[0,-23],[0,-20],[0,-58],[-1,-97],[-3,-383],[-1,-148],[0,-8],[-1,-97]],[[44655,56132],[-84,0],[-88,0],[-20,0],[-180,2],[-1,0],[-90,0],[-144,1],[-99,1],[-53,1],[-521,3],[-35,0],[-113,1],[-206,0],[-252,1],[-90,1],[-136,0],[-13,0],[-78,1],[-30,0],[-22,-1],[-32,1],[-29,0],[-15,-1],[-5,0],[-161,1],[-44,0],[-13,0],[-72,0],[-20,0],[-28,0],[-217,1],[-112,1],[-47,-1],[-15,-1],[-52,-1],[-42,-2],[-16,0],[-14,-1],[-25,0],[-19,-1],[-27,0],[-14,-1],[-36,0],[-19,0],[-362,-1],[-22,0],[-100,0],[-28,0],[-85,0],[-157,0],[-268,6],[-153,4],[-28,1],[-19,1],[-323,13],[-31,1],[-36,0],[-531,3],[-36,0],[-51,0],[-449,4],[-16,0],[-17,0],[-74,-3],[-350,4],[-5,0],[-22,0],[-54,1],[-73,-3],[-36,0],[-3,0],[-65,1],[-42,0],[-3,0],[-162,2],[-4,0],[-15,1],[-209,2],[-3,0],[-143,2],[-1,-92],[-3,-49],[0,-1],[-1,-19],[-1,-28],[-3,-102],[-1,-23],[-1,-24],[0,-31],[-1,-126],[-1,-105],[0,-65],[0,-76],[-2,-162],[0,-41],[-2,-62],[0,-58],[0,-18],[-5,-107],[-4,-51],[0,-24],[-4,-31],[-6,-92],[-4,-75],[-1,-17],[1,-78],[0,-28],[-6,-374],[0,-3],[0,-17],[2,-182],[-3,-58],[3,-112],[1,-33],[1,-38],[3,-60],[0,-18],[1,-33],[0,-43],[0,-33],[0,-19],[1,-22],[0,-83],[0,-52],[0,-63],[0,-78],[0,-56],[186,0],[0,-106],[-1,-37],[-2,-97],[0,-27],[0,-26],[0,-23],[1,-23],[0,-22],[0,-38],[1,-46],[1,-19],[0,-21],[1,-60],[0,-9],[0,-19],[3,-46],[0,-5],[0,-21],[-2,-90],[1,-59],[1,-21],[0,-20],[3,-85],[1,-63],[1,-32],[0,-21],[0,-20],[1,-69],[1,-32],[1,-33],[0,-24],[-1,-19],[0,-5],[0,-56],[0,-30],[0,-26],[1,-24],[0,-38],[0,-31],[1,-51],[0,-26],[0,-61],[1,-56],[0,-106],[1,-40],[1,-30],[0,-114],[0,-12],[0,-24],[0,-3],[0,-40],[1,-52],[0,-2],[1,-150],[2,-33],[-2,-20],[-1,-23],[1,-21],[2,-101],[4,-199],[2,-99],[3,-233],[1,-31],[9,-324],[0,-14],[1,-28],[-1,-128],[0,-48],[1,-84],[1,-116],[0,-48],[-1,-23],[0,-18],[0,-29],[-1,-9],[-1,-36],[-1,-48],[-2,-296],[0,-1],[0,-17],[-1,-84],[0,-11],[0,-22],[2,-97],[1,-84],[1,-40],[0,-28],[2,-39],[1,-101],[0,-11],[0,-46],[1,-24],[1,-87],[1,-13],[0,-8],[0,-31],[0,-5],[1,-34],[1,-93],[0,-93],[0,-89],[0,-124],[0,-238],[0,-25],[0,-36],[0,-78],[0,-26],[-17,-18],[-8,-44],[-8,-31],[-8,-26],[-9,-16],[-7,-23],[-22,-15],[-24,12],[-6,22],[-10,30],[-15,24],[-30,-8],[-10,-15],[-9,-22],[-10,-28],[-2,-19],[10,-26]],[[37361,47208],[-22,-13],[-39,-6],[-22,15],[-20,13],[-2,2],[-7,37],[19,30],[10,12],[24,19],[19,19],[14,23],[-8,28],[-14,29],[-8,19],[-16,13],[-17,13],[-11,13],[-24,39],[-34,24],[-30,18],[-33,16],[-24,16],[-22,2],[-20,-2],[-30,-14],[-27,-15],[-31,-19],[-16,-1],[-15,13],[-8,22],[-10,35],[-15,26],[-25,25],[-13,25],[-1,2],[-20,41],[-21,20],[-12,-8],[-5,-21],[-1,-4],[-3,-13],[-9,-21],[-20,-23],[-20,-10],[-15,-2],[-9,1],[-12,0],[-13,11],[-3,19],[10,27],[15,11],[17,9],[5,7],[10,12],[-6,33],[-29,27],[-17,2],[-9,0],[-16,0],[-42,4],[-17,15],[-21,18],[-7,6],[-5,20],[0,1],[0,21],[1,18],[-2,19],[-1,2],[-8,9],[-2,2],[-3,3],[-14,11],[-29,15],[-36,9],[-14,10],[-19,13],[-5,4],[-18,9],[-18,3],[-9,2],[-28,8],[-10,7],[-13,9],[-28,7],[-10,2],[-31,6],[-4,12],[-4,9],[-2,3],[1,28],[-6,8],[-7,9],[-2,1],[-9,4],[-11,5],[-27,4],[-22,-3],[-10,-5],[-5,-3],[-18,-9],[-23,-15],[-16,2],[-41,12],[-24,5],[-29,4],[-25,-1],[-23,-9],[-18,-7],[-14,-9],[-15,-15],[-15,-19],[-22,-6],[-17,8],[-12,20],[-9,20],[-16,10],[-20,1],[-1,0],[-16,-5],[-14,-16],[-5,-10],[-7,-13],[-12,-18],[-15,-14],[-14,-21],[-4,-11],[-4,-8],[-14,-34],[0,-1],[-1,0],[-24,-10],[-15,-9],[-3,-2],[-4,-1],[-14,-4],[-12,-6],[-3,-1],[-9,-2],[-9,-2],[-13,0],[-9,0],[-2,0],[-2,1],[-11,4],[-18,15],[-22,-1],[-5,0],[-13,-22],[-1,-33],[-7,-25],[-16,-15],[-5,-4],[-13,-6],[-28,-17],[-30,-6],[-13,2],[-21,4],[-35,13],[-31,3],[-13,-5],[-9,-4],[-13,-9],[-3,-2],[-18,-10],[-18,0],[-27,0],[-13,-4],[-19,-7],[-11,-15],[-2,-6],[-4,-12],[-14,-25],[-15,-14],[-25,-7],[-14,2],[-7,0],[-29,9],[-29,-14],[-94,-42],[-63,-29],[-10,-5],[-12,-5],[-1,0],[-16,-8],[-75,12],[-59,22],[-30,27],[-2,1],[-37,19],[-2,0],[-16,-1],[-17,-5],[-6,-1],[-33,0],[-9,6],[-7,4],[0,1],[-6,28],[-1,3],[-12,23],[-2,4],[-7,5],[-21,16],[-26,8],[-35,10],[-3,1],[-23,7],[-58,30],[-6,4],[-113,105],[-50,38],[-80,29],[-34,12],[-5,-1],[-34,-3],[-6,1],[-39,10],[-19,28],[-11,12],[-8,5],[-4,3],[-20,-1],[-23,-9],[-21,-18],[-3,-4],[-19,-33],[-14,-15],[-4,-5],[-4,-1],[-19,-6],[-2,-1],[-9,2],[-14,2],[-1,0],[-3,4],[-9,11],[-1,5],[-8,23],[-2,4],[-3,1],[-10,2],[-13,-6],[-4,-1],[-12,-9],[-21,-2],[-2,0],[-3,7],[-5,9],[-3,8],[-6,14],[-14,25],[-40,49],[-1,2],[-57,75],[-17,20],[-4,6],[-19,23],[-6,4],[-6,5],[-5,4],[-10,2],[-27,7],[-31,-6],[-8,3],[-18,5],[-23,20],[-57,64],[-34,28]],[[33341,48414],[-28,22],[-34,32],[-20,3],[-12,-6],[-7,-3],[-5,-8],[-7,-9],[-3,1],[-16,1],[-2,0],[-1,3],[-12,26],[-8,48],[-7,38],[-1,5],[-14,30],[-3,4],[-17,14],[-22,1],[-18,-11],[-5,-3],[-4,-5],[-13,-16],[-4,-5],[0,-1],[-9,-40],[-1,-4],[-10,-34],[-8,-36],[-10,-12],[-6,-7],[-4,0],[-21,-4],[-25,-1],[-14,0],[-28,9],[-8,3],[-6,0],[-25,2],[-20,-1],[-51,-14],[-1,0],[-63,-8],[-16,5],[-3,1],[-7,2],[-39,0],[-9,3],[-16,6],[-50,13],[-16,3],[-43,9],[-1,1],[-6,0],[-18,1],[-16,-6],[-3,-1],[-14,-14],[-2,-1],[-18,1],[-2,0],[-27,13],[-11,5],[-6,9],[-17,24],[-17,18],[-4,4],[-17,34],[-8,30],[-34,52],[-16,38],[0,1],[-4,44],[5,31]],[[32333,48754],[2,22],[-2,51],[8,34],[1,24],[10,18],[5,21],[7,15],[16,19],[-12,16],[-12,11],[-11,11],[-19,21],[-14,2],[-23,-8],[-14,-14],[-3,-3],[-16,-14],[-16,-18],[-12,-7],[-18,-9],[-2,1],[-21,8],[-7,30],[7,19],[-3,8],[-4,10],[-18,6],[-1,0],[-1,0],[-11,-2],[-4,-1],[-3,-2],[-11,-7],[-12,-14],[-7,-17],[-8,-34],[-5,-4],[-17,-15],[-1,-1],[-5,1],[-11,3],[-11,29],[-2,17],[0,1],[-2,17],[-5,15],[-3,8],[-9,-2],[-11,-3],[-13,-10],[-19,-16],[-2,0],[-13,1],[-10,16],[-2,5],[0,34],[2,6],[5,24],[-6,8],[-4,7],[-5,6],[-20,11],[-22,-1],[-13,5],[-4,2],[1,1],[8,15],[13,13],[12,15],[3,22],[-4,5],[-11,14],[-1,2],[-13,11],[-1,1],[-17,8],[-10,4],[-10,4],[-3,0],[-20,2],[-15,-1],[-7,-19],[3,-24],[-3,-21],[-4,-4],[-13,-13],[-4,0],[-5,-1],[-8,0],[-2,1],[-13,4],[-26,17],[-26,26],[0,117],[-4,65],[0,2],[0,20],[1,19],[1,72],[1,20],[-3,43],[2,7],[2,13],[2,160],[0,123],[-1,67],[0,20],[1,38],[0,58],[0,96],[-1,93],[-1,37],[-1,95],[0,22],[1,73],[-2,20],[1,32],[0,38],[1,113],[1,84],[1,241],[-1,39],[0,21],[-2,124],[0,48],[-1,80],[0,2],[0,35],[0,42],[-3,253],[-1,53],[0,29],[0,19],[0,69],[1,61],[0,27],[-1,79],[-3,247],[0,39],[-1,207],[0,23],[-2,87],[-1,141],[0,31],[-2,209],[0,3],[-1,156],[-2,86],[-68,0],[-2,169],[-1,77],[-1,116],[-1,132],[-1,203],[0,42],[0,7],[0,49],[0,122],[0,65],[0,55],[-3,263],[-2,179],[-5,247],[0,132],[1,25],[1,19],[-1,57],[0,10],[0,8],[0,5],[-1,14],[1,42],[0,50],[1,88],[0,36],[0,93],[-1,155],[0,34],[0,3],[0,48],[0,56],[-1,106],[0,10],[0,52],[0,34],[1,154]],[[31619,56152],[139,-1],[51,0],[87,1],[108,-2],[88,1],[74,-1],[249,1],[26,0],[7,0],[7,0],[52,-1],[37,0],[80,-2],[62,-1],[23,0],[1,0],[5,-1],[63,0],[16,0],[186,0],[49,-1],[80,-1],[27,0],[109,-2],[12,0],[1,125],[1,123],[0,51],[0,71],[0,14],[1,368],[1,22],[0,110],[0,45],[0,58],[0,228],[-1,23],[3,244],[2,74],[1,38],[5,131],[0,138],[0,112],[0,243],[0,53],[0,114],[0,58],[0,130],[6,374],[-68,0],[0,66],[-4,326],[0,99],[2,87],[0,72],[0,8],[0,73],[0,30],[-1,51],[-1,136],[0,26],[0,21],[2,53],[-1,95],[1,18],[-1,31],[0,36],[1,215],[0,30],[8,427],[0,288],[-1,20],[-8,308],[0,133],[0,24],[0,31],[0,60],[0,8],[0,51],[0,25],[1,68],[0,23],[0,119],[1,141],[0,73],[0,105],[0,299],[0,30],[1,146],[0,24],[0,49],[0,76],[-1,208],[0,32],[3,179],[-1,120],[1,61],[1,52],[-2,110],[0,18],[-1,130],[-1,93],[0,6],[0,18],[-1,120],[0,57],[0,125],[1,62],[0,20],[1,127],[0,111],[-1,81],[2,127],[-1,17],[-33,1],[-68,0],[0,54],[0,194],[1,50],[1,25],[1,48],[1,33],[0,48],[0,52],[1,238],[0,146],[1,41],[0,1],[2,51],[0,20],[0,17],[1,18],[0,20],[1,26],[0,22],[1,99],[3,164],[1,45],[2,74]],[[31619,56152],[-165,0],[-110,1],[-6,0],[-176,2],[-90,1],[-164,-3],[-93,2],[-101,3],[-76,1],[-51,3],[-119,8],[-22,0],[-44,-1],[-23,0],[-12,0],[-11,0],[-29,0],[-11,0],[-11,0],[-29,0],[-69,0],[-10,0],[-11,0],[-49,0],[-21,0],[-4,0],[-100,0],[-67,0],[-16,0],[-188,-1],[-156,1],[-26,0],[-90,0],[-432,5],[-111,-1],[-58,0],[-146,-1],[-64,2],[-28,1],[-22,-1],[-34,0],[-5,1],[-88,1],[-35,0],[-8,1],[-20,0],[-29,0],[-266,-3],[-62,-1],[-43,-1],[-30,0],[-69,-1],[-165,0],[-172,2],[-7,0],[-21,0],[-18,0],[-16,0],[-11,0],[-203,-1],[-50,-1],[-47,0],[-58,-1],[-112,-1],[-81,-1],[-49,-1],[-61,-1],[-75,-1]],[[26773,56165],[-1,53],[-1,33],[0,43],[-1,29],[0,23],[3,47],[1,145],[0,1],[1,53],[1,34],[1,28],[1,250],[1,50],[0,1],[1,60],[-3,136],[0,22],[0,74],[2,110],[0,29],[2,184],[0,64],[1,249],[0,91],[0,156],[-1,99],[0,63],[0,24],[-1,61],[2,55],[0,54],[0,52],[0,87],[-1,248],[-1,239],[-100,2],[2,53],[1,35],[2,75],[3,33],[0,54],[0,117],[-3,99],[1,146],[0,19],[0,42],[0,65],[2,106],[0,9],[-1,133],[-2,72],[-3,131],[0,43],[-5,93],[-2,39],[-2,30],[-1,25],[0,21],[0,20],[1,105],[1,196],[3,87],[1,55],[-3,66],[3,125],[0,45],[2,85],[2,84],[0,19],[0,3],[4,161],[0,2],[-1,19],[3,73],[3,113],[0,5],[0,10],[0,48],[0,100],[0,98]],[[26773,56165],[-1,-72],[0,-53],[-1,-123],[-2,-125],[-1,-94],[0,-38],[-1,-74],[-1,-162],[0,-131],[0,-23],[0,-37],[0,-55],[0,-79],[-1,-165],[-4,-250]],[[26761,54684],[-82,-1],[-15,0],[-174,-2],[-16,-2],[-119,2],[-43,0],[-26,-1],[-18,-1],[-48,0],[-122,-1],[-34,-1],[-119,-1],[-171,-10],[-100,-6],[-34,0],[-97,2],[-133,2],[-167,1],[-79,1],[-14,0],[-27,3],[-30,-1],[-42,0],[-58,1],[-20,-1],[-33,-2],[-46,-1],[-50,-2],[-40,1],[-38,-1],[-37,0],[-29,-1],[-40,0],[-36,-1],[-17,1],[-50,1],[-35,0],[-37,-1],[-55,3],[-63,3],[-20,0],[-26,-1],[-22,-1],[-16,0],[-30,-1],[-24,-3],[-18,-1],[-38,1],[-30,-1],[-32,1],[-40,-1],[-38,-1],[-14,-1],[-30,-1],[-34,3],[-13,0],[-112,-3],[-14,1],[-17,0],[-1,0],[-36,0],[-26,0],[-67,-1],[-29,1],[-59,0],[-52,-1],[-44,0],[-62,-2],[-66,-1],[-39,1],[-36,-1],[-25,-1],[-27,4],[-31,3],[-35,4],[-25,4],[-40,3],[-44,0],[-73,3],[-100,1],[-16,0],[-40,1],[-115,1],[-138,4],[-130,-4],[-24,-1],[-115,-3],[-59,0],[-78,-1],[-185,-11],[-25,-2],[-37,-2],[-7,-1],[-7,-1],[-13,0],[-11,-1],[-14,0],[-58,-1],[-17,0],[-19,0],[-26,0],[-27,0],[-26,-1],[-30,0],[-61,0],[-78,-1],[-437,-3],[-39,0],[-122,1],[-27,0],[-39,0],[-17,-1],[-36,-3],[-18,0],[-107,-1],[-72,1],[-54,0],[-59,1],[-1,0],[-27,0],[-28,0],[-43,0],[-43,0],[-16,0],[-16,0],[-1,0],[-16,0],[-16,0],[-16,0],[-20,0],[-34,0],[-35,0],[-34,0],[-8,0],[-37,0],[-153,1],[-17,0],[-47,0],[-2,0],[-12,0],[-159,0],[-2,0],[-15,0],[-11,0],[-42,1],[-70,2],[-35,0],[-25,1],[-25,0],[-15,0],[-46,0],[-28,1],[-19,0],[-22,0],[-26,0],[-67,3],[-13,0],[-14,0],[-18,1],[-31,-1],[-270,3],[-35,0],[-37,1],[-30,0],[-21,2],[-93,1],[-84,0],[-186,2],[-78,-1],[-30,0],[-21,0],[-20,0],[-40,1],[-32,1],[-41,-1],[-25,0],[-48,0],[-90,-1],[-15,0],[-9,0],[-4,0],[-20,1],[-15,0],[-14,1],[-14,-1],[-14,2],[-50,0],[-54,0],[-64,0],[-144,-1],[-19,-1],[-121,0],[-48,0],[-147,0],[-5,0],[-96,1],[-26,0],[-38,0],[-36,-1],[-64,1],[-19,0],[-8,0],[-17,3],[-22,1],[-44,0],[-23,1],[-126,1],[-35,0],[-90,1],[-50,0],[-29,0],[-16,0],[-38,-2],[-20,-1],[-15,0],[-20,1],[-62,2],[-102,3],[-49,1],[-14,0],[-17,0],[-27,1],[-36,0],[-62,1],[-20,0],[-57,1],[-5,0],[-66,0],[-16,0],[-30,1],[-89,0],[-137,1],[-32,2],[-78,1],[-15,1],[-26,0],[-125,0],[-206,1],[-172,0],[-15,0],[-27,0],[-60,1],[-105,0],[-13,0],[-11,1],[-10,0],[-13,0],[-19,0],[-15,0],[-17,0],[-144,1],[-84,0],[-46,0],[-41,-1],[-71,1],[-28,1],[-19,0],[-147,-1],[-98,2],[-46,-1],[-25,0],[-201,-4]],[[13726,54687],[0,79],[-6,248],[-1,46],[-1,39],[-1,83],[-1,51],[-1,112],[-1,83],[-5,122],[-1,73],[0,22],[-1,32],[-2,96],[-1,31],[-1,63],[-3,26],[1,30],[-6,245],[2,139],[2,105],[3,124],[1,42],[3,83],[2,122],[2,63],[1,31],[1,30],[0,19],[2,114],[0,32],[-1,81],[6,132],[5,72],[2,39],[1,65],[2,60],[1,76],[0,25],[0,20],[1,112],[0,54],[1,35],[1,138],[-1,32],[0,218],[1,18],[0,1],[-1,134],[1,120],[0,126],[0,121],[1,126],[0,222],[-31,0],[-123,1],[-42,0],[-56,0],[-3,246],[-1,135],[-1,84],[-2,193],[1,73],[-2,199],[-1,29],[0,19],[0,24],[-1,132],[3,88],[-1,253],[-1,166],[-2,72],[-1,130],[-1,118],[0,61],[0,54],[1,131],[-1,156],[0,104],[0,38],[0,61],[-1,61],[0,74],[-1,248]],[[13726,54687],[2,-91],[5,-157],[2,-122],[2,-136],[0,-35],[-2,-26],[1,-32],[1,-19],[1,-48],[2,-75],[3,-79],[1,-81],[-2,-24],[1,-60],[0,-3],[1,-21],[1,-65],[2,-59],[0,-79],[2,-21],[4,-15],[1,-53],[0,-33],[2,-102],[0,-12],[0,-33],[-2,0],[-15,1],[-3,0],[-1,0],[-18,0],[-2,0],[-3,-1],[-2,-1],[-13,0],[-70,1],[-51,0],[-93,1],[-62,0],[-23,0],[-27,1],[-61,1],[-62,0],[-24,2],[-26,-1],[-29,-3],[-19,0],[-70,-1],[-111,1],[-84,-1],[-4,0],[-131,-1],[-123,1],[-3,0],[-238,3],[-14,0],[-17,-1]],[[12355,53208],[-93,0],[-113,0],[-24,0],[-99,0],[-232,-1],[-51,2],[-35,-1],[-23,-1],[-206,-2],[-56,1],[-49,0],[-64,2],[-3,1],[-34,-4],[-13,-2],[-4,2],[-118,1],[-374,1],[-54,0],[-47,0],[-5,0],[-96,0],[-27,0],[-42,1],[-252,-1],[-82,0],[-414,2],[-164,-2],[-55,-1],[-52,1],[-69,-1],[-204,0],[-48,0],[-13,0],[-135,-1],[-78,1],[-69,0],[-166,0],[-5,0],[-93,1],[-212,-1],[-57,0],[-69,-1],[-35,0],[-170,-1],[-137,1],[-26,0],[-48,1],[-60,-2],[-18,0],[-31,1],[-89,0],[-55,0],[-27,-1],[-38,0],[-132,0],[-97,0],[-47,0],[-94,-1],[-35,0],[-94,0],[-46,0],[-227,0],[-43,-1],[-59,0],[-6,0],[-165,0],[-47,-1],[-93,-1],[-10,0],[-25,0],[-47,0],[-45,-1],[-1,0],[-53,0],[-28,0],[-193,0],[-28,0],[-26,2]],[[5881,53201],[-34,9],[-14,-14],[-16,-10],[-7,-4],[-107,-12],[-10,4],[-8,9],[0,8],[3,11],[11,23],[9,16],[5,6],[9,5],[8,3],[22,11],[9,10],[5,11],[5,12],[2,11],[1,12],[7,93],[-8,29],[9,57],[2,5],[0,9],[-1,4],[-47,47],[-12,11],[-14,11],[-7,3],[-18,2],[-8,5],[-3,5],[-2,50],[0,10],[23,25],[1,8],[22,108],[0,6],[-3,7],[-8,5],[-4,1],[-15,-2],[-17,-4],[-14,1],[-11,3],[-7,6],[-4,5],[1,6],[1,3],[8,8],[86,49],[6,3],[21,2],[5,3],[4,5],[2,5],[-1,5],[-1,4],[-5,8],[-9,7],[-5,2],[-11,-3],[-22,-8],[-12,0],[-13,2],[-7,4],[-7,9],[-7,12],[-1,6],[0,13],[3,37],[3,3],[50,19],[5,0],[5,-1],[6,-6],[3,-5],[4,-22],[4,-6],[6,-8],[6,-2],[43,-1],[9,3],[7,4],[1,2],[1,6],[-1,6],[-3,7],[-8,8],[-27,18],[-17,12],[-11,6],[-8,3],[-9,8],[-10,17],[-2,7],[1,8],[5,4],[5,0],[6,0],[19,-4],[10,-3],[8,-8],[12,-13],[6,-3],[10,0],[4,3],[3,3],[44,48],[2,3],[3,4],[2,8],[-1,6],[-2,11],[-3,7],[-3,4],[-5,3],[-4,2],[-11,2],[-21,0],[-18,7],[-7,3],[-10,13],[0,14],[3,6],[10,5],[35,9],[8,2],[2,3],[13,41],[2,8],[0,12],[-3,97],[-44,24],[-16,2],[-14,11],[-3,7],[-1,6],[34,79],[31,34],[34,23],[-43,23],[-6,5],[-2,3],[0,7],[13,14],[27,19],[8,4],[16,3],[5,3],[0,7],[-1,4],[-8,6],[-12,6],[-52,5],[-8,-3],[-9,-7],[-6,-2],[-8,0],[-8,3],[-3,3],[-2,4],[0,15],[3,6],[9,6],[11,2],[32,1],[2,1],[6,1],[21,10],[24,12],[23,14],[15,15],[9,114],[-35,-13],[-8,0],[-6,2],[-5,4],[-9,14],[-2,7],[-5,24],[0,14],[4,5],[35,72],[5,64],[-67,26],[-7,3],[-6,4],[-1,2],[2,11],[5,8],[4,5],[8,2],[9,0],[34,-11],[5,0],[13,1],[5,3],[4,7],[2,7],[-1,8],[-2,4],[-4,4],[-44,10],[-16,7],[-20,13],[-7,10],[0,9],[2,3],[11,3],[10,-2],[18,-7],[13,0],[5,2],[5,5],[1,8],[-1,59],[0,15],[-2,6],[-1,4],[-7,5],[-11,3],[-6,-1],[-15,0],[-16,4],[-19,9],[-7,7],[-6,10],[0,1],[0,6],[4,8],[7,3],[7,3],[9,1],[7,-3],[15,-14],[15,-9],[17,1],[5,2],[2,3],[0,18],[-4,15],[-5,6],[-3,2],[-12,4],[-13,1],[-9,5],[-6,5],[-4,5],[0,12],[7,10],[4,4],[9,3],[12,1],[10,-1],[7,-5],[16,-13],[15,-10],[9,-3],[17,-1],[11,4],[3,3],[2,6],[0,11],[-3,9],[-3,5],[-8,7],[-10,4],[-42,-3],[-12,2],[-20,5],[-14,6],[-17,9],[-17,12],[-5,8],[0,12],[2,3],[7,4],[6,1],[7,0],[28,-5],[60,-14],[33,-14],[21,7],[5,4],[10,14],[3,12],[-1,7],[-3,6],[-6,5],[-36,11],[-21,1],[-49,7],[-21,3],[-13,6],[-12,9],[-6,6],[-10,15],[-4,9],[-3,10],[-2,8],[-2,10],[0,20],[3,4],[4,2],[8,1],[11,-5],[20,-10],[7,-2],[12,2],[9,3],[8,8],[3,4],[4,16],[1,8],[-1,14],[-3,9],[-5,8],[-5,3],[-23,2],[-17,-3],[-13,-6],[-7,-5],[-21,-17],[-15,-11],[-10,-4],[-30,-2],[-9,2],[-11,6],[-8,6],[-3,6],[0,8],[5,7],[76,82],[34,19],[12,18],[2,7],[0,8],[-6,9],[-6,5],[-28,26],[-25,11],[-9,-2],[-19,0],[-10,5],[-8,10],[-6,8],[-10,29],[0,15],[4,5],[21,14],[5,4],[3,5],[2,9],[-2,8],[-3,6],[-4,5],[-9,8],[-12,5],[-6,2],[-33,-7],[-11,1],[-8,2],[-6,4],[-5,5],[1,12],[2,4],[6,5],[15,7],[26,9],[13,5],[12,9],[4,7],[1,8],[0,17],[-2,13],[-2,8],[-2,3],[-7,8],[0,1],[0,3],[-6,4],[-8,6],[-4,2],[-16,-2],[-14,-4],[-9,-1],[-8,0],[0,29],[20,3],[22,2],[22,5],[7,5],[5,4],[2,5],[0,7],[-3,8],[-7,8],[-12,7],[-27,11],[-18,5],[-7,6],[-3,3],[2,39],[12,12],[11,16],[2,4],[2,9],[0,6],[-6,28],[-3,17],[0,28],[15,29],[84,101],[6,3],[6,2],[6,-1],[19,-5],[52,-14],[26,-8],[7,-7],[8,-9],[7,-4],[6,-2],[9,2],[3,2],[1,12],[-2,4],[-17,18],[-16,14],[-18,15],[-23,18],[-14,10],[-56,23],[-14,7],[-10,7],[-4,5],[-2,4],[0,5],[5,9],[6,4],[4,1],[10,0],[12,-4],[26,-15],[14,-5],[16,-2],[11,0],[7,2],[8,8],[11,17],[9,21],[3,8],[-1,9],[-1,4],[-2,3],[-8,11],[-8,7],[-9,5],[-24,8],[-8,7],[-3,5],[-2,4],[0,9],[1,2],[12,12],[5,2],[15,1],[26,-3],[18,-4],[12,-6],[14,-9],[10,-10],[17,-7],[12,-3],[13,0],[10,5],[3,3],[1,10],[-1,6],[-3,9],[-2,4],[-6,6],[-21,19],[-22,15],[-30,24],[-3,5],[23,43],[9,18],[13,26],[43,-4],[9,-1],[5,2],[7,9],[1,4],[0,8],[-4,8],[-12,10],[-8,4],[-8,1],[-13,-1],[-15,-6],[-34,-15],[-7,-2],[-12,0],[-21,7],[-10,8],[-3,3],[-6,15],[-3,11],[-1,12],[0,10],[6,7],[5,3],[15,1],[12,-4],[42,-22],[20,-6],[8,0],[11,5],[2,6],[-1,21],[-2,9],[-5,10],[-3,5],[-12,10],[-58,39],[-12,10],[-6,8],[-3,5],[-2,9],[0,10],[3,12],[5,11],[6,11],[7,9],[10,17],[10,19],[3,9],[17,58],[15,46],[17,48],[15,46],[15,43],[57,-6],[27,-11],[7,31],[1,5],[0,11],[-2,11],[-3,4],[-9,8],[-6,1],[-7,-2],[-28,-12],[-5,-2],[-6,1],[-10,5],[-4,4],[-3,6],[-5,16],[-6,49],[0,10],[2,4],[4,4],[7,6],[18,7],[21,5],[7,4],[6,6],[3,9],[-2,14],[-3,5],[-9,8],[-9,3],[-15,1],[-31,2],[-8,2],[-6,4],[-10,10],[-2,5],[2,18],[1,8],[36,122],[4,9],[23,29],[6,5],[9,2],[10,-2],[7,-5],[10,-11],[9,-8],[8,-4],[12,-1],[5,3],[3,3],[5,8],[19,62],[1,23],[45,85],[4,21],[-1,25],[-12,13],[-16,16],[-6,12],[-6,18],[-2,12],[0,10],[5,9],[6,3],[7,2],[12,-2],[12,-4],[26,-13],[12,-4],[27,0],[12,3],[9,6],[3,3],[2,3],[-1,9],[-2,3],[-10,7],[-12,5],[-24,6],[-29,6],[-21,3],[-16,2],[-27,4],[-9,3],[-6,5],[-6,8],[-2,5],[1,7],[2,8],[2,5],[9,8],[11,3],[27,-4],[4,-2],[10,-9],[15,-12],[5,-1],[12,1],[10,6],[3,3],[4,7],[0,14],[-2,8],[-3,4],[-9,12],[-48,56],[-11,11],[-20,-7],[-121,-54],[-74,-52],[-44,-42],[-14,-18],[-4,-2],[-15,-1],[-5,3],[-2,5],[0,18],[2,17],[5,19],[2,16],[-4,9],[-3,5],[-7,5],[-4,1],[-9,-2],[-8,-3],[-6,-5],[-1,-1],[-8,-14],[-3,-12],[-1,-4],[-3,-6],[-7,-5],[-7,0],[-6,4],[-9,8],[-2,5],[0,11],[10,60],[9,72],[-21,57],[-2,5],[0,21],[9,40],[1,6],[-1,11],[-4,15],[-3,7],[-3,4],[-7,5],[-10,4],[-19,-3],[-8,-4],[-10,-12],[-2,-7],[-6,-10],[-6,-5],[-8,-3],[-11,1],[-12,3],[-5,3],[-35,22],[-11,8],[-4,6],[0,11],[2,4],[3,4],[5,4],[14,3],[24,8],[6,4],[6,7],[5,14],[0,42],[-7,16],[-9,9],[-40,31],[-10,15],[-1,3],[0,9],[4,7],[7,3],[20,4],[6,3],[21,12],[4,4],[3,5],[45,81],[1,4],[3,8],[-1,7],[-2,6],[-4,5],[-36,23],[-15,9],[-9,3],[-10,-1],[-6,-4],[-3,-3],[-1,-9],[1,-17],[-90,-41],[-16,0],[-10,2],[-107,57],[-8,5],[-7,5],[-21,24],[-7,10],[-7,12],[0,13],[6,8],[13,10],[21,74],[2,7],[0,25],[-3,21],[-7,24],[-22,71],[-5,8],[-5,4],[-4,2],[-26,12],[-4,3],[-5,7],[0,11],[5,7],[6,3],[22,6],[7,5],[7,8],[2,6],[0,9],[-3,6],[-6,8],[-3,2],[-4,2],[-9,11],[-2,4],[-1,9],[1,41],[1,14],[4,10],[8,8],[7,3],[8,-1],[12,-4],[-5,29],[-16,10],[8,32],[-82,54],[-56,28],[-21,10],[-8,-1],[-12,-6],[-10,-7],[-13,-6],[-7,0],[-6,3],[-4,5],[-1,3],[0,7],[9,15],[7,7],[8,6],[17,9],[31,8],[6,5],[2,6],[13,80],[-1,4],[-8,11],[39,83],[7,10],[16,14],[5,3],[30,14],[15,2],[12,3],[18,8],[14,4],[17,2],[19,-6],[17,-7],[8,-1],[10,1],[2,2],[6,9],[1,7],[-1,4],[-1,3],[-55,71],[-16,16],[-5,3],[-5,2],[-7,1],[-20,-1],[-23,-9],[-12,1],[-5,2],[-7,7],[-4,5],[-1,6],[1,14],[5,9],[4,5],[13,7],[9,5],[11,2],[9,-1],[12,-1],[26,-6],[21,-4],[14,1],[7,2],[8,7],[2,1],[9,10],[33,55],[2,3],[3,9],[1,6],[-1,5],[-4,5],[-10,8],[-7,3],[-17,-2],[-6,-2],[-14,-12],[-9,-17],[-7,-21],[-5,-8],[-8,-7],[-13,-4],[-10,2],[-4,1],[-7,8],[-9,12],[-1,12],[1,10],[2,11],[17,29],[45,81],[3,9],[-1,10],[-3,11],[-4,5],[-5,3],[-10,2],[-14,-2],[-17,-7],[-19,-11],[-41,-21],[-6,0],[-8,5],[-2,2],[0,12],[4,5],[6,4],[3,1],[18,4],[19,6],[16,9],[32,21],[5,3],[11,10],[12,18],[3,8],[-2,12],[-13,13],[-16,12],[-66,46],[-65,61],[-2,4],[-1,10],[1,2],[5,6],[7,5],[12,6],[16,2],[16,-4],[20,-9],[20,-7],[8,-2],[17,2],[9,4],[5,6],[1,3],[0,6],[-2,5],[-4,6],[-21,22],[-15,19],[-3,4],[-3,9],[-13,95],[0,9],[5,6],[8,2],[25,4],[11,7],[7,5],[4,9],[3,7],[0,16],[-7,7],[-9,6],[-12,4],[-13,-2],[-11,-5],[-5,-2],[-10,-11],[-8,-12],[-7,-22],[-5,-6],[-5,-3],[-8,-1],[-9,6],[-10,9],[-6,8],[0,12],[3,3],[13,12],[24,16],[62,25],[25,5],[5,50],[-9,9],[-6,8],[-4,9],[-1,4],[0,12],[3,8],[4,7],[8,7],[25,17],[12,12],[6,8],[2,5],[0,4],[-2,9],[-7,6],[-33,17],[-8,2],[-17,-1],[-14,-3],[-16,-8],[-17,-11],[-11,-4],[-5,0],[-6,3],[-8,7],[-1,5],[1,12],[3,4],[10,8],[17,3],[41,4],[27,5],[17,5],[7,7],[3,5],[3,7],[0,8],[-7,18],[-1,19],[2,17],[6,17],[-1,11],[0,4],[-3,4],[-5,6],[-33,13],[-5,3],[-2,4],[-1,4],[1,16],[6,9],[14,16],[13,9],[21,11],[11,9],[4,9],[-2,14],[-4,12],[-2,16],[-1,23],[-41,-8],[-4,-1],[-6,0],[-10,5],[-6,4],[-7,7],[-5,8],[-3,5],[0,15],[7,20],[5,9],[6,10],[9,15],[1,14],[-8,21],[-16,20],[-12,10],[-9,4],[-33,13],[-11,20],[-4,9],[-8,10],[-8,2],[-32,-9],[-21,0],[-17,5],[-31,14],[-10,8],[1,10],[7,11],[4,4],[9,3],[14,2],[16,-2],[16,-4],[33,-9],[12,-2],[28,2],[12,4],[5,4],[5,9],[2,7],[1,12],[0,26],[4,12],[5,7],[12,12],[8,5],[18,12],[4,7],[2,6],[0,5],[-6,5],[-9,3],[-9,-3],[-11,-7],[-17,-15],[-9,-6],[-12,-6],[-12,-3],[-14,0],[-11,4],[-6,2],[-9,6],[-5,8],[-2,4],[1,12],[3,9],[5,7],[3,4],[11,8],[20,11],[8,7],[7,9],[1,4],[0,14],[-4,13],[-12,18],[-3,7],[-3,12],[-1,7],[-38,54],[-25,9],[-9,4],[-6,5],[-1,4],[-6,14],[1,6],[1,3],[7,7],[13,7],[18,3],[33,3],[5,2],[1,6],[0,8],[-4,9],[-3,4],[-27,36],[-7,7],[-6,4],[-5,1],[-9,-2],[-6,-3],[-16,-13],[-10,-5],[-8,1],[-8,2],[-8,5],[-9,7],[-29,26]],[[53868,55514],[-12,-278],[0,-4],[-3,-115],[-2,-90],[-3,-110],[-9,-381],[-4,-230],[-2,-51],[-2,-45],[-2,-40],[-3,-75],[0,-1],[-2,-49],[1,-39],[0,-13],[0,-9],[1,-61],[0,-4],[2,-125],[0,-47],[2,-162],[6,-337],[-2,-59],[3,-30],[1,-51],[1,-57],[7,-232],[7,-247],[0,-1],[102,-1],[-3,-56],[-11,-186],[1,-124],[0,-39],[0,-40],[2,-300],[0,-29],[2,-150],[0,-67],[-1,-64],[0,-18],[2,-56],[3,-339],[1,-79],[1,-39],[-1,-88],[0,-16],[-3,-444],[1,-84],[-1,-115],[-1,-153],[0,-1],[0,-114],[1,-34],[3,-157],[0,-15],[3,-150]],[[53954,49613],[9,-492],[-1,-63],[1,-37],[0,-9],[1,-104],[0,-48],[0,-133],[2,-223],[2,-160],[-1,-212],[0,-126],[0,-121],[-2,-495],[-1,-107],[0,-4],[0,-232],[-2,-262],[-1,-49],[2,-80],[0,-20],[2,-230],[0,-64],[0,-42],[0,-137],[-1,-57],[0,-50],[0,-33],[0,-20],[0,-2],[-1,-82],[-1,-61],[0,-9],[2,-31],[0,-88],[0,-117],[2,-133],[0,-112],[1,-62],[0,-130]],[[53967,45176],[-37,0],[-64,2],[-84,-2],[-38,-1],[-45,-1],[-52,0],[-31,0],[-35,0],[-37,1],[-43,0],[-39,0],[-37,0],[-39,1],[-23,0],[-28,0],[-146,0],[-22,0],[-120,4],[-78,-2],[-66,-1],[-18,0],[-28,1],[-45,-1],[-141,2],[-10,1],[-59,1],[-165,1],[-83,1],[-36,1],[-231,-1],[-158,2],[-109,1],[-131,1],[-32,0],[-6,0],[-102,2],[-67,1],[-2,0],[-45,1],[-149,4],[-22,0],[-20,-1],[-30,0],[-14,0],[-21,1],[-23,0],[-18,0],[-23,1],[-32,0],[-13,1],[-34,1],[-19,-1],[-24,1],[-31,-1],[-33,-1],[-42,-1],[-40,-2],[-7,0],[-51,-1],[-59,-3],[-46,-1],[-82,-5],[-129,-7],[-44,-2],[-329,-16],[-119,-7],[-158,-9],[-24,-4],[-23,-1],[-23,-1],[-25,-1],[-33,-3],[-27,-1],[-8,-1],[-30,-1],[-37,-3],[-36,-2],[-45,-2],[-37,-3],[-26,-1],[-28,-2],[-19,-1],[-21,-1],[-56,-1],[-87,-3],[-72,-1],[-73,-3]],[[49093,45106],[3,21],[4,22],[4,24],[2,17],[4,20],[4,33],[1,94],[1,16],[0,5],[1,21],[1,56],[0,19],[1,3],[0,34],[1,38],[0,24],[1,24],[0,5],[1,20],[-1,26],[0,23],[0,20],[-1,26],[0,7],[0,50],[-1,47],[0,25],[0,28],[-2,90],[1,39],[-2,33],[0,62],[-1,31],[-2,18],[1,13],[0,11],[-1,28],[-2,18],[0,33],[0,17],[0,14],[0,7],[0,19],[1,34],[-1,191],[0,30],[0,24],[0,46],[-1,59],[-84,-1],[-24,1],[-32,0],[-9,1],[-15,2],[-20,1],[-16,2],[-19,1],[-17,2],[-21,2],[-14,1],[-20,0],[-94,0],[-59,0],[-95,0],[-64,0],[-49,0],[-50,0],[-35,1],[-71,0],[-91,1],[-245,3],[-92,0],[-9,0],[-27,0],[-1,0],[-18,0],[-47,1],[-119,-3],[-23,0],[-103,-3],[-78,-2],[-850,-18],[-50,-1],[-37,0],[-32,0],[-18,0],[-12,-1],[-1,0],[-39,0],[-18,-1],[-72,-1],[-49,-1],[-63,-2],[-68,-2],[-24,0],[-47,-1],[-41,0],[-56,-1],[-36,-2],[-112,-2],[-276,-5],[-355,-8],[-206,-4],[-39,1],[-33,-1],[-32,0],[-38,-1],[-64,-1],[-58,-2],[-55,-1],[-63,-1],[-187,-4],[-22,1],[-1,0]],[[44395,46622],[-1,4],[-1,6],[-2,13],[-3,8],[-1,7],[-3,14],[-1,5],[-3,14],[0,1],[-7,11],[-6,4],[-14,4],[-6,0],[-9,-2],[-8,-2],[-9,-5],[-7,-5],[-12,-8],[-1,0],[-3,-1],[-1,-1],[-4,0],[-26,10],[-1,1],[-6,3],[-16,11],[-6,5],[-7,9],[-6,8],[-4,4],[-7,6],[-2,4],[-2,12],[-4,31],[1,561],[1,391],[0,10],[0,29],[0,34],[0,156],[0,39],[0,17],[1,76],[0,170],[0,2],[0,18],[0,264],[0,96],[2,194],[0,10],[0,61],[1,142],[0,26],[1,231],[0,24],[0,21],[0,39],[-2,20],[0,18],[0,29],[1,24],[0,88],[-1,21],[0,38],[0,58],[-1,34],[-2,116],[0,26],[-2,136],[-1,56],[-2,81],[0,31],[-1,87],[-1,17],[-4,271],[-1,82],[-1,50],[0,16],[0,3],[0,23],[-1,34],[0,2],[-2,158],[-4,36],[-2,25],[4,75],[1,28],[6,122],[2,50],[6,121],[0,16],[3,104],[0,10],[-1,166],[0,32],[-1,89],[-3,248],[-2,56],[-1,41],[-2,145],[0,122],[12,10],[12,1],[22,1],[6,1],[27,4],[15,2],[25,5],[34,3],[8,1],[5,1],[18,5],[5,2],[15,7],[39,18],[5,1],[10,3],[3,0],[17,8],[22,11],[33,17],[17,-3],[13,-3],[70,5],[-1,44],[0,5],[0,14],[-1,30],[0,62],[-2,164],[0,25],[-1,81],[0,87],[0,87],[0,28],[0,40],[0,14],[0,56],[0,32],[-1,60],[0,121],[0,24],[0,39],[0,130],[1,108],[1,55],[1,95],[0,42],[1,52],[1,49],[0,31],[1,70],[0,45],[1,68],[1,50],[0,37],[1,97],[1,38],[1,130],[1,43],[1,123],[1,20],[0,26],[0,52],[1,40],[0,18],[2,122],[0,87],[0,66],[-7,17],[2,86],[0,17],[1,24],[0,14],[3,107],[0,17],[2,94],[1,46],[2,51],[4,197],[2,75],[3,171]],[[32333,48754],[-4,0],[-19,0],[-50,-1],[-135,-2],[-33,1],[-101,-1],[-2,0],[-37,0],[-20,-1],[-78,0],[-89,0],[-25,0],[-16,0],[-16,0],[-30,-1],[-27,0],[-34,0],[-30,0],[-26,1],[-22,-1],[-21,0],[-17,2],[-18,0],[-14,0],[-14,0],[-19,0],[-52,-1],[-139,-1],[-111,-1],[-35,0],[-51,0],[-301,1],[-51,1],[-56,0],[-160,0],[-109,1],[-19,1],[-183,2],[-70,1],[-63,1],[-41,0],[-31,-1],[-52,0],[-13,1],[-69,0],[-69,1],[-28,0],[-36,0],[-21,0],[-27,0],[-47,2],[-29,1],[-10,1],[-5,0],[-56,-4],[-109,-1],[-375,-1],[-150,0],[-116,-2],[-177,1],[-2,1],[-23,2],[-65,0],[-271,-1],[-172,0],[-27,0],[-31,0],[-40,0],[-271,-1],[-65,0],[-83,0],[-125,0],[-126,1],[-18,0],[-123,1],[-106,0],[-43,0],[-48,1],[-71,0]],[[26865,48758],[0,33],[1,28],[0,48],[0,124],[4,79],[0,58],[-1,124],[0,120],[-1,187],[0,122],[-2,64],[2,43],[0,25],[0,22],[0,30],[1,100],[0,29],[-3,82],[-1,36],[1,10],[2,31],[0,24],[0,24],[0,33],[0,34],[0,22],[0,88],[0,86],[2,65],[0,2],[0,21],[0,26],[-1,42],[-2,110],[0,101],[0,146],[1,161],[0,84],[0,92],[0,144],[0,51],[1,27],[-1,26],[0,22],[0,29],[0,54],[0,36],[0,11],[0,63],[0,188],[-1,190],[0,53],[-1,91],[-1,33],[0,37],[0,87],[-1,36],[-1,80],[-1,131],[0,31],[0,36],[0,114],[0,65],[1,53],[1,64],[0,1],[1,42],[1,18],[0,66],[-49,0],[-52,0],[-1,122],[-1,87],[0,40],[0,23],[0,6],[0,62],[-1,33],[0,48],[0,76],[1,108],[2,139],[-4,132],[-2,117],[0,45],[0,89],[-3,115],[2,101],[1,25],[2,123]],[[44395,46622],[-3,-1],[-3,0],[-2,0],[-4,0],[-31,0],[-50,-1],[-18,0],[-24,0],[-14,0],[-9,0],[-16,0],[-16,0],[0,-44],[0,-55],[1,-30],[0,-20],[1,-30],[0,-58],[0,-53],[1,-55],[2,-142],[0,-13],[0,-9],[1,-164],[1,-35],[0,-20],[0,-25],[-1,-30],[0,-31],[0,-26],[0,-6],[0,-13],[0,-18],[-1,-31],[0,-19],[1,-18],[-1,-30],[0,-22],[1,-21],[1,-22],[1,-32],[1,-38],[0,-25],[-1,-30],[-1,-27],[1,-42],[0,-48],[-1,-39],[0,-70],[1,-29],[-1,-29],[0,-21]],[[44212,45150],[-229,-3],[-122,1],[-77,0],[-78,0],[-26,1],[-117,0],[-80,0],[-108,0],[-133,3],[-86,2],[-52,1],[-17,0],[-20,0],[-47,0],[-26,0],[-19,1],[-46,-2],[-20,-1],[-23,0],[-23,0],[-31,-1],[-87,-1],[-65,-1],[-47,-1],[-33,0],[-25,1],[-27,0],[-32,0],[-26,0],[-113,0],[-39,0],[-22,-1],[-25,0],[-97,1],[-44,0],[-109,-1],[-16,0],[-20,0],[-13,0],[-47,0],[-182,-1],[-81,-1],[-63,-1],[-7,0],[-89,0],[-16,0],[-32,0],[-36,0],[-39,0],[-67,2],[-79,-2],[-30,0],[-98,1],[-63,0],[-99,1],[-184,-3],[-74,-1],[-134,-2],[-141,-3],[-1,0],[-240,1],[-39,0],[-52,-1],[-15,0],[-37,0],[-38,0],[-42,0],[-26,-1],[-50,1],[-68,2],[-67,2],[-127,3],[-15,4],[-98,3],[-79,1],[-97,2],[-130,0],[-56,0],[-30,0],[-48,1],[-43,0],[-41,1],[-34,-1],[-27,0],[-35,-1],[-53,0],[-28,0],[-11,0],[-26,0],[-66,1],[-58,4],[-20,1],[-31,-2],[-18,0],[-56,-1],[-257,0],[-122,2],[-153,0],[-85,-1],[-46,-1],[-59,-2],[-87,-1],[-44,-1],[-106,0],[-47,-1],[-53,-1],[-20,1],[-94,-1],[-22,1],[-82,0],[-81,2],[-14,1],[-37,1],[-110,0],[-73,0],[-2,13],[12,38],[1,2],[2,8],[16,25],[12,19],[2,6],[2,9],[1,13],[0,7],[-1,3],[-1,15],[-2,7],[-6,18],[-1,1],[-3,23],[0,4],[0,7],[1,37],[2,18],[2,13],[1,2],[2,2],[11,16],[6,9],[17,9],[20,13],[4,2],[12,11],[0,5],[1,20],[-9,15],[0,1],[-16,26],[-3,4],[-9,14],[-38,53],[-12,17],[-16,22],[-17,38],[-20,20],[-12,15],[-35,35],[-11,8],[-12,9],[-4,4],[-3,1],[-16,9],[-13,7],[-14,18],[-6,32],[-5,37],[-1,4],[-10,31],[-20,20],[-32,21],[-23,27],[-15,26],[-2,7],[-9,33],[-1,2],[1,13],[1,19],[7,28],[2,32],[-1,32],[1,44],[1,28],[0,24],[1,17],[1,18],[3,31],[1,3],[7,17],[1,1],[0,1],[4,4],[9,9],[4,2],[8,4],[5,3],[7,4],[9,6],[4,6],[9,13],[2,3],[-2,15],[-3,18],[-4,31],[10,21],[9,8],[6,6],[23,10],[28,8],[6,1],[5,0],[47,3],[52,26],[33,19],[1,2],[17,15],[1,1],[6,8],[10,15],[29,39],[24,37],[9,14],[22,23],[30,20],[9,6],[8,3],[19,6],[7,3],[20,9],[12,6],[12,16],[7,24],[4,21],[-1,21],[-8,14],[-12,18],[-3,27],[13,18],[16,19],[34,27],[37,17],[48,8],[33,10],[21,14],[11,21],[8,24],[7,21],[-4,27],[-14,16],[-19,14],[-14,7]],[[63788,53759],[0,-11],[1,-9],[0,-15],[0,-18],[1,-46],[0,-10],[1,-27],[0,-2],[0,-5],[0,-2],[1,-19],[0,-3],[0,-4],[0,-18],[1,-8],[0,-2],[0,-15],[0,-27],[1,-80],[1,-95],[1,-71],[0,-54],[0,-98],[0,-104],[0,-79],[0,-14],[-1,-47],[0,-32],[0,-38],[0,-2],[0,-26],[0,-52],[0,-5],[0,-68],[0,-11],[0,-13],[0,-19],[0,-4],[0,-39],[0,-4],[0,-33],[-1,-122],[0,-15],[0,-1],[0,-98],[0,-56],[0,-3],[0,-16],[0,-42],[0,-79],[0,-59],[0,-26],[0,-1],[0,-25],[0,-32],[0,-11],[0,-7],[0,-47],[-1,-58],[0,-4],[0,-68],[0,-14],[0,-88],[0,-95],[0,-1],[0,-2],[0,-18],[-1,-39],[0,-86],[0,-62],[0,-4],[0,-60],[-1,-156],[0,-48],[0,-35],[0,-7],[-4,-61],[0,-1],[0,-1],[0,-7],[0,-2],[-1,-49],[0,-2],[-1,-99],[0,-6],[0,-50],[-1,-102],[0,-12],[0,-29],[0,-93],[0,-74],[-2,-386],[0,-61],[0,-23],[-1,-157],[0,-16],[0,-46],[-1,-39],[0,-64],[0,-24],[0,-35],[0,-25],[0,-2]],[[63780,49579],[-57,1],[-44,0],[-159,4],[-41,-1],[-36,1],[-483,0],[-30,0],[-195,-2],[-17,3],[-281,2],[-33,0],[-295,1],[-16,1],[-28,0],[-132,1],[-6,0],[-55,1],[-26,-1],[-6,0],[-43,-1],[-30,-1],[-14,1],[-40,2],[-15,0],[-52,0],[-26,0],[-62,1],[-65,0],[-31,0],[-158,1],[-43,0],[-38,0],[-18,0],[-2,0],[-32,-1],[-20,1],[-19,0],[-3,-1],[-23,-2],[-53,1],[-39,1],[-22,0],[-203,0],[-72,1],[-112,0],[-155,0],[-27,0],[-149,0],[-124,0],[-221,1],[-48,0],[-158,0],[-157,0],[-46,0],[-26,0],[-19,-1],[-44,0],[-149,1],[-209,1],[-67,1],[-127,0],[-71,1],[-198,1],[-76,0],[-88,0],[-36,0],[-50,0],[-159,1],[-81,0],[-20,1],[-16,0],[-14,0],[-13,0],[-14,0],[-14,0],[-49,0],[-37,-1],[-61,0],[-55,-1],[-14,0],[-16,-1],[-68,2],[-26,0],[-28,-1],[-22,0],[-21,0],[-44,3],[-16,-1],[-2,0],[-139,0],[-2,0],[-19,-1],[-50,1],[-44,0],[-19,0],[-25,0],[-14,0],[-64,-1],[-19,-1],[-102,3],[-7,0],[-10,0],[-96,3],[-26,1],[-20,0],[-20,0],[-213,2],[-21,0],[-241,3],[-32,3],[-116,-6],[-152,3],[-270,0],[-256,2],[-282,2],[-187,1],[-75,1],[-271,-1],[-119,0],[-175,-1],[-368,0],[-162,-1]],[[26865,48758],[1,-61],[2,-181],[1,-17],[1,-106],[0,-16],[-1,-104],[0,-8],[0,-45],[1,-45],[1,-153],[3,-250],[3,-108],[2,-130],[2,-92],[2,-154],[109,-1],[1,-60],[1,-85],[-1,-55],[0,-23],[0,-42],[-3,-151],[-1,-50],[-1,-46],[-1,-38],[-1,-104],[-1,-46],[-1,-60],[7,-246],[-1,-34],[-2,-85],[0,-1],[-3,-127],[0,-247],[0,-246],[3,-101],[0,-23],[-2,-125],[1,-123],[0,-119],[2,-155],[0,-22],[-1,-23],[1,-52],[0,-74],[-1,-110],[1,-64],[1,-129],[1,-57],[0,-43],[0,-18]],[[26991,44303],[-85,1],[-72,1],[-114,2],[-42,-1],[-47,-1],[-183,-2],[-32,2],[-63,-3],[-3,-3],[-1,2],[-1,2],[-3,3],[-4,1],[-10,1],[-18,0],[-59,1],[-56,0],[-20,0],[-59,0],[-34,0],[-45,0],[-50,0],[-83,0],[-61,1],[-118,1],[-27,0],[-55,0],[-62,-1],[-21,0],[-193,2],[-268,3],[-65,1],[-8,0],[-30,-1],[-12,0],[-33,1],[-42,1],[-13,-3],[-4,0],[-195,1],[-2,0],[-107,0],[-155,1],[-274,3],[-129,1],[-99,1],[-156,4],[-6,0],[-9,-1],[-4,0],[-6,0],[-14,0],[-24,0],[-110,1],[-62,0],[-55,0],[-229,-3],[-28,0],[-54,-1],[-75,2],[-150,2],[-1,0],[-240,2],[-55,0],[-43,0],[-194,-4],[-67,0],[-73,-1],[-92,0],[-29,-1],[-55,0],[-80,-1],[-45,0],[-70,-2],[-17,0],[-13,0],[-79,2],[-90,0],[-2,1],[-3,2],[-40,-1],[-45,0],[-126,-1],[-49,-1],[-83,0],[-375,-3],[-40,0],[-114,-1],[-23,0],[-94,0],[-128,0],[-37,0],[-165,0],[-34,0],[-70,0],[-97,-1],[-40,-2],[-27,-1],[-81,0],[-1,3],[-22,0],[-87,-1],[-54,0],[-20,1],[-50,0],[-22,0],[-86,0],[-18,0],[-16,0],[-70,0],[-15,0],[-55,0],[-43,0],[-95,0],[-128,1],[-15,0],[-31,-1],[-18,0],[-33,0],[-17,0],[-46,0],[-147,1]],[[18947,44316],[-137,1],[-74,1],[-35,0],[-18,0],[-69,1],[-21,0],[-40,0],[-16,1],[-106,1],[-24,0],[-143,1],[-1,0],[-8,-1],[-4,-1],[-6,-1],[-2,0],[-94,3],[-22,2],[-5,0],[-3,-1],[-1,0],[-49,1],[-74,0],[-128,1],[-66,1],[-190,2],[-26,0],[-31,0],[-94,1],[-123,1],[-22,0],[-6,0],[-28,0],[-212,1],[-40,0],[-59,0],[-85,0],[-38,0],[-4,0],[-41,0],[-139,1],[-83,0],[-47,0],[-119,0],[-149,0],[-266,0],[-3,0],[-18,0],[-5,0],[-53,0],[-165,0],[-13,0],[-61,0],[-125,0],[-88,0],[-39,0],[-105,0],[-34,0],[-41,0],[-22,0],[-25,0],[-67,0],[-200,0],[-46,0],[-56,0],[-165,0],[-266,0],[-41,-1],[-99,0],[-114,0],[-83,0],[-98,1],[-83,0],[-115,0],[-22,0],[-133,1],[-134,1],[-84,0],[-51,0],[-195,1],[-52,0],[-18,0],[-269,-1],[-62,0],[-193,1]],[[12556,44335],[2,114],[0,131],[-3,32],[1,213],[0,245],[0,244],[0,245],[1,245],[0,122],[-1,31],[0,83],[0,15],[0,212],[0,6],[0,23],[0,116],[0,48],[-1,83],[0,104],[8,88],[0,72],[0,44],[0,229],[0,8],[1,16],[0,16],[0,17],[0,8],[1,22],[0,117],[-84,0],[-21,0],[-17,1],[-17,0],[-2,0],[-4,0],[-3,0],[-7,-1],[-9,0],[-34,1],[0,1],[0,30],[1,162],[0,54],[-1,115],[-2,40],[-1,96],[0,42],[-2,34],[1,168],[-1,82],[-1,168],[0,43],[0,42],[0,35],[-1,127],[0,47],[0,10],[1,107],[0,27],[0,25],[-1,39],[0,49],[0,33],[-1,94],[0,17],[0,47],[1,220],[0,27],[0,59],[0,95],[0,94],[-1,187],[0,60],[0,65],[0,39],[0,69],[1,74],[-1,77],[-1,108],[0,63],[0,32],[-1,197],[1,3],[0,16],[0,17],[0,20],[0,18],[0,33],[0,18],[-1,24],[0,17],[0,23],[0,21],[0,4],[0,14],[0,45],[0,137],[0,101],[-1,43],[0,176],[-1,32],[1,44],[0,19],[0,82],[-1,46],[0,57],[-1,62],[0,81],[0,12],[-1,71],[0,17],[0,83],[0,81],[-1,83],[0,125],[0,120],[0,137],[0,1],[0,30],[0,35],[0,43],[0,75],[-1,139],[0,46],[1,45],[0,62],[0,33],[-1,42],[-1,21],[1,30],[0,49],[0,59],[0,32],[0,49],[3,27],[1,23]],[[12556,44335],[-1,-241],[1,-222],[0,-34],[0,-240],[-3,-130],[-3,-117],[-1,-131],[0,-78],[0,-33],[0,-11],[0,-8],[3,-234]],[[12552,42856],[-276,0],[-260,0],[-115,-1],[-154,2],[-56,0],[-8,0],[-12,0],[-37,0],[-155,2],[-179,-2],[-88,-1],[-74,0],[-88,-1],[-97,-1],[-266,-1],[-267,2],[-272,-1],[-94,0],[-169,0],[-267,3],[-3,0],[-42,0],[-47,0],[-176,2],[-270,2],[-130,0],[-29,0],[-104,1],[-223,-1],[-50,-2]],[[8544,42859],[-9,26],[-2,9],[-6,22],[-2,30],[6,29],[7,25],[7,17],[13,47],[3,11],[8,31],[40,82],[10,22],[22,56],[14,41],[18,49],[6,16],[13,30],[34,8],[8,-1],[7,0],[11,44],[10,45],[9,-1],[25,90],[0,13],[0,42],[-7,29],[-7,27],[-1,16],[12,92],[4,12],[10,14],[4,7],[3,44],[-13,51],[-11,44],[-1,10],[1,40],[5,10],[0,1],[2,2],[4,5],[1,5],[3,31],[-6,64],[-5,27],[-11,57],[-14,40],[-2,4],[-6,7],[-19,14],[-26,29],[-1,4],[0,6],[30,58],[0,2],[7,34],[4,28],[-1,9],[-1,5],[-10,18],[-17,25],[-10,7],[-7,-1],[-9,0],[-24,-1],[-8,3],[-4,3],[-3,5],[-29,75],[-3,9],[-3,35],[0,24],[3,10],[3,4],[7,8],[2,5],[3,6],[0,17],[0,25],[-3,8],[-31,73],[-20,46],[-28,63],[-21,8],[-5,1],[-6,10],[-25,41],[-13,62],[1,3],[21,70],[6,18],[4,10],[21,38],[0,12],[-3,14],[-11,32],[-1,4],[-6,26],[1,6],[10,19],[6,8],[8,15],[7,17],[1,11],[-18,94],[-1,3],[-3,5],[-29,33],[-8,6],[-5,0],[-11,-1],[-4,-1],[-38,-2],[-13,2],[-26,10],[-5,6],[-8,10],[-2,5],[-3,11],[-5,25],[2,15],[5,19],[17,81],[29,102],[1,7],[-1,5],[-5,4],[-9,2],[-8,0],[-31,-1],[-19,4],[-5,3],[-2,2],[0,4],[6,8],[3,2],[10,5],[14,4],[13,1],[12,1],[18,0],[6,4],[5,8],[4,6],[9,51],[-11,53],[-19,94],[-10,15],[-63,96],[-44,52],[-7,4],[-2,6],[-23,123],[-2,10],[0,13],[-14,224],[1,13],[3,7],[3,5],[39,29],[11,9],[9,3],[9,-2],[18,-6],[13,0],[51,29],[15,9],[2,2],[6,8],[9,18],[3,11],[-1,7],[-2,6],[-7,3],[-13,-1],[-8,-3],[-9,-5],[0,-2],[-27,-8],[-7,-2],[-7,1],[-20,7],[-5,4],[-2,2],[-39,43],[-3,6],[-1,6],[3,5],[5,4],[6,3],[6,9],[5,6],[10,13],[3,5],[0,5],[0,7],[-6,22],[-20,1],[-51,2],[-6,46],[-6,51],[-6,46],[27,25],[13,12],[24,91],[0,17],[-2,13],[-5,14],[-20,34],[-24,21],[-3,2],[-11,6],[-4,5],[1,16],[5,10],[6,7],[5,7],[7,15],[48,26],[-4,18],[-60,-7],[-31,-4],[-2,20],[32,0],[40,1],[8,0],[-3,45],[-3,46],[-28,0],[-17,0],[-3,0],[-22,0],[-43,10],[-7,4],[-2,5],[0,4],[6,7],[10,8],[13,8],[27,12],[14,4],[25,6],[8,4],[7,9],[2,9],[-1,11],[-2,7],[-7,7],[-18,15],[-11,4],[-7,36],[-6,28],[4,22],[9,58],[2,4],[7,10],[8,7],[10,42],[-2,33],[-32,80],[-3,6],[0,15],[4,62],[12,28],[1,5],[0,8],[-3,5],[-6,2],[-7,1],[-30,-10],[-20,-8],[-7,1],[-7,3],[0,12],[4,6],[5,6],[13,8],[3,2],[14,5],[18,-1],[12,5],[10,19],[-19,23],[-37,-3],[-22,4],[-1,0],[-10,5],[-16,13],[-1,5],[-3,18],[-2,7],[-5,16],[-5,12],[-5,7],[-10,6],[-6,1],[-8,1],[-6,1],[-25,7],[-10,7],[-69,46],[-5,5],[-2,5],[1,10],[12,23],[5,9],[0,1],[8,11],[5,6],[22,37],[-12,16],[-32,6],[-12,-2],[-6,0],[-48,14],[-5,2],[-34,12],[-7,5],[-6,6],[-5,10],[0,9],[1,13],[1,9],[0,6],[-25,23],[-15,-5],[-20,-7],[-49,-17],[-33,-13],[-12,-7],[-19,-17],[-3,-1],[-12,0],[-8,2],[-6,4],[-6,4],[-7,11],[-4,6],[-7,13],[-2,5],[-5,14],[-18,64],[-1,11],[3,7],[4,8],[11,7],[40,18],[5,5],[6,14],[0,10],[-8,6],[-6,3],[-24,5],[-24,3],[-2,0],[-11,3],[-19,7],[-18,9],[-28,20],[-12,10],[-2,4],[-6,10],[-28,64],[-6,49],[-60,17],[-13,-1],[-17,2],[-8,3],[-14,14],[-5,8],[-1,5],[-1,20],[8,20],[2,6],[0,12],[-6,18],[-9,20],[-9,16],[-8,10],[-3,8],[-2,13],[2,8],[3,8],[3,5],[10,12],[3,40],[1,19],[-57,80],[-4,5],[-15,28],[-25,45],[-8,14],[-5,12],[-1,2],[-12,46],[-1,7],[-6,12],[-22,35],[-7,8],[-8,6],[-9,2],[-8,-2],[-1,0],[-58,-35],[-10,2],[-7,3],[-6,9],[-5,10],[-7,32],[0,14],[6,9],[5,5],[10,6],[23,10],[0,1],[11,4],[5,5],[4,10],[-1,18],[-2,6],[-5,4],[-10,1],[-38,-3],[-38,-2],[-22,-9],[-13,-10],[-13,-5],[-11,-2],[-8,0],[-15,4],[-8,4],[-7,6],[-22,29],[-4,6],[-2,6],[0,9],[8,8],[16,8],[10,2],[25,-2],[14,-6],[2,-1],[1,-2],[21,-19],[6,-2],[11,1],[6,3],[6,7],[2,5],[0,8],[-1,9],[-7,74],[-2,5],[-7,4],[-6,-1],[-8,-5],[-15,-12],[-4,-5],[-7,-7],[-84,-51],[-8,-3],[-7,0],[-5,4],[-4,6],[-3,9],[0,12],[5,8],[3,8],[14,20],[14,26],[21,51],[2,5],[3,19],[-9,46],[-6,5],[-5,1],[-12,-2],[-10,-5],[-5,-6],[-4,-3],[-8,-6],[-8,-4],[-14,0],[-6,3],[-6,8],[-3,7],[-1,14],[3,15],[6,13],[4,4],[7,4],[15,10],[3,3],[3,8],[15,45],[0,10],[-4,6],[-7,7],[-7,2],[-5,-2],[-6,-7],[-1,-5],[-6,-8],[-14,-13],[-8,-4],[-26,-9],[-65,-23],[-7,0],[-4,1],[-5,3],[-8,8],[-66,89],[0,8],[7,9],[13,7],[18,7],[14,4],[8,0],[14,-2],[4,0],[11,-2],[11,-5],[2,23],[-32,31],[-19,13],[-35,25],[-4,4],[-3,4],[-7,18],[-2,6],[1,7],[3,4],[10,2],[4,0],[30,-2],[17,0],[27,1],[7,3],[6,4],[7,7],[3,5],[-1,13],[-4,11],[-3,7],[-8,7],[4,38],[23,8],[5,65],[0,13],[-4,6],[-7,4],[-10,3],[-14,4],[-16,50],[20,12],[9,6],[5,5],[2,7],[0,6],[-1,3],[-2,3],[-5,3],[-21,8],[-33,12],[-6,2],[-8,-3],[-5,-5],[-4,-6],[-3,-8],[-4,-7],[-4,-7],[-7,-6],[-6,-3],[-4,0],[-6,5],[-4,6],[-6,13],[-3,25],[1,7],[6,9],[6,5],[31,21],[6,2],[9,3],[7,-1],[1,0],[35,-3],[-11,31],[-41,15],[-11,-1],[-4,-3],[-4,-4],[-4,-6],[-1,-6],[-2,-15],[-2,-9],[-4,-3],[-6,-2],[-14,3],[-36,15],[-10,7],[-3,5],[-3,8],[1,10],[2,10],[2,8],[4,21],[0,5],[0,1],[-3,6],[-10,8],[-70,54],[-16,10],[-5,2],[-6,-3],[-7,-6],[-1,-2],[1,-11],[2,-6],[2,-5],[-1,-17],[-1,-4],[-3,-3],[-4,-1],[-7,1],[-6,1],[-15,11],[-6,5],[-1,3],[0,14],[10,21],[15,15],[13,5],[19,4],[20,7],[3,5],[0,4],[1,3],[0,4],[-2,4],[-4,4],[-7,4],[0,1],[-17,9],[-27,11],[-7,50],[31,80],[3,9],[5,12],[12,41],[0,10],[-3,5],[-3,2],[-18,4],[-8,-1],[-5,-2],[-16,1],[-8,2],[-2,3],[-1,6],[4,13],[10,13],[10,10],[0,5],[-1,4],[-6,4],[-5,1],[-16,-2],[-8,-3],[-13,-5],[-4,-6],[-2,-8],[-19,0],[23,21],[46,48],[2,3],[33,-2],[1,-6],[1,-3],[3,-1],[7,1],[2,4],[2,7],[-2,13],[-2,11],[-8,19],[-4,7],[-10,7],[-33,15],[-12,9],[-6,7],[-16,25],[1,7],[1,2],[5,3],[10,0],[12,-4],[8,-2],[3,8],[14,30],[-16,71],[-3,4],[-27,37],[-2,2],[-4,3],[-3,1],[-9,-3],[-5,-8],[-5,-6],[-9,-3],[-5,1],[-10,3],[-10,5],[-7,6],[1,7],[4,3],[55,18],[5,2],[7,1],[9,1],[7,0],[11,1],[4,4],[4,25],[-22,34],[-46,55],[0,13],[-7,37],[-3,14],[-5,16],[-4,5],[-4,5],[-25,5],[-3,4],[0,4],[6,4],[8,4],[18,2],[10,-1],[14,-1],[41,-13],[7,2],[1,2],[1,6],[-8,70],[-4,5],[-10,2],[-40,8],[-8,1],[-8,0],[-4,-1],[-7,-7],[-7,-8],[-6,-5],[-5,-1],[-10,0],[-11,4],[-21,13],[-8,8],[1,6],[9,7],[15,6],[31,6],[11,0],[12,-3],[9,-5],[8,-7],[1,-1],[8,-4],[5,-1],[6,1],[5,3],[5,4],[14,17],[1,4],[3,8],[0,7],[-1,3],[-4,4],[-14,3],[-9,1],[-22,-3],[-5,-3],[-10,-5],[-14,-5],[-16,1],[-23,6],[-17,7],[-12,6],[0,2],[0,5],[4,4],[35,34],[10,10],[11,10],[7,3],[6,0],[3,0],[3,-1],[6,-4],[7,-12],[4,-16],[6,-10],[5,-6],[8,1],[6,3],[2,7],[2,8],[-1,12],[-2,5],[-1,5],[-1,0],[-3,4],[-1,2],[-1,0],[-17,19],[-19,18],[-11,5],[-12,81],[-1,12],[-3,5],[-9,3],[-16,-2],[-29,-9],[-19,-5],[-18,5],[-11,8],[-4,6],[-2,3],[1,5],[2,5],[6,7],[8,5],[17,4],[20,1],[33,2],[10,3],[2,3],[0,8],[-3,5],[-4,7],[-7,6],[-14,5],[-17,4],[-7,1],[-15,7],[-6,4],[-2,3],[1,7],[8,7],[8,3],[61,-3],[62,14],[2,3],[0,7],[-6,9],[-11,11],[-4,22],[-24,63],[-4,8],[-6,5],[-8,3],[-16,4],[-15,0],[-11,-3],[-2,-2],[-24,-8],[-4,1],[-6,2],[-4,7],[0,14],[2,9],[9,9],[12,6],[10,1],[13,0],[20,-3],[12,0],[5,4],[3,4],[1,8],[0,9],[-1,5],[-3,4],[-5,5],[-7,4],[-38,8],[-9,2],[-20,-2],[-11,-3],[-8,-4],[-4,-6],[-9,-18],[-2,-3],[-6,-1],[-8,3],[-3,3],[-3,37],[14,17],[88,48],[5,-2],[11,1],[4,4],[2,8],[0,15],[-4,8],[-14,14],[-11,5],[-12,1],[-6,-1],[-16,-3],[-18,-6],[-10,-9],[-4,-5],[-9,-6],[-54,-10],[-12,-2],[-5,2],[-4,5],[-2,3],[-1,7],[-1,8],[2,8],[11,6],[16,3],[51,1],[13,3],[32,10],[7,3],[2,4],[3,6],[0,8],[-5,10],[-10,20],[-4,6],[-7,4],[-8,0],[-11,-4],[-8,-6],[-20,-11],[-4,-1],[-11,-2],[-7,1],[-8,4],[-30,17],[-14,9],[-5,7],[-3,7],[-4,9],[-1,16],[2,8],[5,5],[7,4],[10,0],[16,-4],[13,-5],[14,0],[14,6],[7,7],[6,11],[6,20],[-1,8],[-3,9],[-4,4],[-10,3],[-10,0],[-11,-4],[-39,-18],[-7,-1],[-7,0],[-10,4],[-7,3],[-5,5],[-2,4],[-1,2],[-6,30],[-7,18],[-5,8],[-6,6],[-11,2],[-9,-1],[-11,-5],[-9,-10],[-7,-11],[1,-20],[1,-3],[-3,-7],[-4,-3],[-4,2],[-8,3],[-4,4],[-5,15],[-2,37],[-1,32],[19,31],[29,48],[1,3],[-1,10],[-3,4],[-7,2],[-28,-3],[-19,-5],[-22,-8],[-7,-3],[-7,-3],[-9,1],[-9,2],[-13,9],[-10,9],[-2,5],[1,7],[2,6],[4,4],[5,2],[10,2],[13,1],[27,5],[14,6],[5,4],[3,7],[22,87],[1,4],[-1,7],[-4,7],[-14,9],[-12,4],[-7,-1],[-9,-4],[-5,-4],[-8,-15],[-10,-9],[-12,-7],[-5,-1],[-9,0],[-12,3],[-14,5],[-6,7],[-7,11],[-3,8],[-1,5],[2,10],[7,5],[13,0],[32,-6],[14,-1],[7,3],[7,8],[3,7],[1,9],[-4,39],[-2,5],[-5,4],[-5,1],[-8,-3],[-17,-16],[-12,-8],[-7,-2],[-83,-11],[-7,-1],[-4,3],[-9,10],[-1,2],[0,14],[3,9],[4,10],[10,15],[2,4],[9,4],[54,23],[32,0],[6,2],[2,2],[1,5],[-2,4],[-7,7],[-6,2],[-10,2],[-22,-1],[-15,-5],[-13,-5],[-24,-11],[-16,-9],[-4,-1],[-18,0],[-31,11],[-5,6],[3,6],[6,5],[8,4],[38,11],[7,3],[10,10],[37,53]],[[63780,49579],[0,-2],[0,-7],[-1,-217],[0,-91],[0,-50],[-1,-78],[0,-152],[0,-135],[0,-66],[0,-16],[0,-26],[0,-52],[0,-20],[0,-98],[0,-96],[0,-114],[0,-93],[0,-57],[0,-85],[0,-8],[0,-101],[0,-16],[0,-40],[2,-42],[0,-19],[0,-11],[0,-52],[0,-21],[0,-7],[0,-37],[0,-63],[0,-40],[0,-7],[-1,-17],[0,-47],[-1,-35],[0,-28],[-1,0],[0,-34],[0,-6],[0,-1],[0,-6],[0,-23],[0,-22],[0,-31],[0,-28],[0,-3],[-1,-63],[0,-7],[0,-12],[-1,-93],[0,-15],[-1,-97],[0,-6],[-1,-58],[0,-11],[-1,-111],[-1,-118],[0,-8],[0,-3],[-1,-35],[0,-6],[0,-20],[0,-66],[0,-77],[1,-92],[0,-3],[0,-15],[1,-37],[-1,-41],[0,-80],[-1,-27],[0,-19],[-1,-125],[-1,-164],[-1,-158],[-1,-148],[0,-3],[1,-99],[0,-109],[1,-129],[0,-7],[1,-142],[0,-13],[0,-224],[0,-18],[1,-308],[0,-42],[1,-147],[-2,-67],[0,-183],[-3,-125],[-2,-122],[0,-91],[0,-10],[0,-63],[0,-3],[-1,-1],[-2,-2],[-7,-5],[-6,-5],[-2,-2],[-2,-1],[-10,-5],[-2,-1],[-2,0],[-13,-4],[-8,-2],[-4,-2],[-17,-1],[-21,-5],[-6,0],[-5,0],[-8,0],[-20,1],[-3,0],[-9,-2],[-1,0],[-2,0],[-6,-2],[-1,0],[-14,-4],[-4,-1],[-10,-3],[-2,-1],[-6,-3],[-12,-6],[-9,-6],[-4,-3],[-9,-6],[-13,-8],[-1,-1],[-1,0],[-15,-7],[-11,3],[-5,1],[-4,-1],[-14,-1],[-2,0],[-1,0],[-4,-1],[-2,0],[-5,-1],[-2,-1],[-4,0],[-2,-1],[-6,-2],[-15,-6],[-5,-3],[-13,-7],[-13,-6],[-14,-11],[-22,-5],[-21,-8],[-13,-7],[-25,-17],[-7,-7],[-12,-11],[-2,-3],[-10,-11],[-9,-11],[-5,-9],[-7,-12],[-6,-9],[-5,-8],[-8,-17],[-2,-8],[-3,-10],[-8,-23],[-7,-28],[-1,-7],[-3,-12],[0,-1],[-2,-4],[-1,-4],[-5,-11],[-6,-16],[-4,-32],[0,-1],[-1,-15],[0,-5],[-2,-5],[-4,-15],[-2,-9],[-10,-13],[-2,-2],[-4,-5],[-13,-16],[-7,-10],[-6,-8],[-1,0],[-8,-14],[-3,-5],[0,-7],[-1,-4],[0,-7],[-1,-18],[3,-17],[0,-1],[2,-19],[0,-11],[1,-19],[1,-3],[3,-17],[5,-21],[0,-8],[-1,-6],[-1,-15],[-6,-29],[-4,-12],[-2,-6],[-1,-12],[-2,-14],[-4,-12],[0,-1],[-2,-6],[-13,-16],[-14,-18],[-13,-9],[-4,-3],[-20,-18],[-1,-1],[-5,-14],[0,-3],[-4,-12],[0,-16],[1,-9],[-1,-5],[0,-2],[-3,-12],[-1,-5],[1,-6],[3,-13],[1,-5],[-5,-17],[-1,-4],[-18,-11],[-13,-6],[-4,-2],[-2,-1],[-13,-7],[-26,-11],[-22,-12],[-1,0],[-12,2],[-17,-1],[-4,0],[-6,-2],[-10,-3],[-4,-1],[-13,2],[-1,0],[-22,2],[-14,4],[-18,1],[-16,0],[-15,4],[-4,1],[-1,0],[-14,0],[-18,4],[-6,4],[-1,1],[-6,4],[-7,4],[-22,16],[-12,2],[-7,1],[-31,10],[-3,1],[-11,3],[-10,2],[-21,10],[-6,3],[-38,5],[-35,11],[-26,8],[-16,6],[-18,11],[-23,16],[-15,7],[-15,8],[-18,13],[-11,9],[-9,7],[-13,9],[-2,2],[-5,2],[-12,5],[-3,1],[-16,7],[-15,6],[-2,1],[-12,6],[-8,5],[-11,5],[-1,1],[-12,5],[-8,4],[-3,1],[-1,0],[-24,2],[-21,-4],[-17,-2],[-23,-2],[-1,0],[-20,-1],[-4,0],[-9,0],[-20,-6],[-19,-8],[-25,-13],[-13,-6],[-33,-11],[-24,-11],[-19,-10],[-28,-18],[-20,-12],[-19,-17],[-16,-15],[-17,-15],[-16,-19],[-18,-20],[-2,-5],[-2,-3],[-9,-18],[-2,-10],[-1,-5],[-1,-8],[-3,-8],[0,-1],[-3,-6],[-1,-3],[-3,-8],[0,-11],[-1,-6],[0,-1],[1,-2],[1,-5],[2,-10],[-2,-6],[-1,-2],[-3,-7],[-5,-10],[-1,-2],[-10,-20],[-12,-21],[-13,-20],[-10,-14],[-10,-19],[-4,-6],[-2,-1],[-4,-5],[-5,-5],[-6,-8],[-1,-2],[-3,-3],[-2,-2],[-3,-4],[-7,-21],[-7,-18],[-1,-2],[0,-1],[-4,-10],[-7,-21],[3,-36],[1,-19],[-3,-4],[-10,-12],[-27,-30],[-37,-15],[-41,-25],[-13,-19],[-11,-25],[-2,-4],[-1,-25],[6,-20],[7,-11],[2,-4],[3,-2],[10,-6],[4,-3],[13,-11],[-4,-8],[-10,-20],[-29,-39],[-63,-42],[-18,-8],[-26,-7],[-27,3],[-28,11],[-6,1],[-26,3],[-14,5],[-20,8],[-1,1],[-18,12],[-5,3],[-1,0],[-3,0],[-2,1],[-13,2],[-1,0],[-1,0],[-4,1],[-3,0],[-8,-1],[-20,-2],[-21,-4],[-2,-1],[-4,1],[-5,1],[-5,1],[-10,2],[-1,1],[-2,0],[-72,45],[-6,2],[-25,6],[-20,12],[-10,6],[-38,10],[-59,22],[-8,2],[-36,11],[-15,4],[-18,5],[-12,3],[-33,10],[-32,5],[-22,-3],[-19,-3],[-2,-1],[-4,-2],[-5,-2],[-13,-6],[-34,-17],[-8,-4],[-3,-1],[-5,-4],[-29,-25],[-59,-41],[-34,-38],[-10,-21],[-3,-6],[-28,-35],[-27,-30],[0,-1],[-2,0],[-12,-7],[-22,-11],[-11,-11],[-7,-7],[-4,-26],[3,-24],[1,-3],[-1,-2],[-5,-27],[-2,-10],[-1,-5],[0,-3],[-2,-10],[1,-5],[1,-11],[2,-11],[0,-2],[0,-2],[4,-12],[2,-7],[1,-26],[-6,-38],[-7,-22],[-4,-21],[0,-1],[-14,-11],[-3,0],[-9,-3],[-2,-1],[-19,-2],[-47,-1],[-21,-2],[-15,0],[-21,-5],[-14,-13],[-2,-1],[-24,-10],[-15,-7],[-12,-5],[0,-1],[-1,0],[-21,-7],[-16,0],[-19,2],[-14,2],[-17,-5],[-12,-5],[-61,-26],[-43,-24],[-18,-10],[-19,-16],[-3,-2],[-12,-11],[-11,-6],[-2,-1],[-12,-5],[-4,-1],[-9,-1],[-4,0],[-23,-2],[-37,-5],[-37,-2],[-26,-1],[-23,-6],[-17,-10],[-21,-12],[-22,-14],[-15,-10],[-5,-5],[-10,-12],[-16,-12],[-16,-13],[-1,0],[-13,-11],[-4,-2],[-12,-5],[-19,-3],[-17,3],[-32,9],[-20,3],[-21,-1],[-5,-4],[-8,-7],[-11,-8],[-1,-1],[-4,-2],[-12,-5],[-5,-2],[-18,-14],[-20,-5],[-19,4],[-18,7],[-17,12],[-13,8],[-24,7],[-19,-2],[-1,0],[-12,-6],[-13,-9],[-2,-1],[0,-3],[-2,-15],[1,-19],[10,-48],[2,-8],[4,-15],[0,-1],[4,-20],[-5,-15],[-1,-1],[-2,-8],[-15,-4],[-14,1],[-5,1],[-20,3],[-16,0],[-22,-1],[-15,-1],[-15,0],[-20,3],[-16,-3],[-14,1],[-11,0],[-3,0],[-8,0],[-6,0],[-12,1],[-4,-3],[-8,-4],[-5,-3],[-2,-1],[0,1],[-9,-5],[-6,-4],[-3,-2],[-4,-3],[-4,-2],[-10,-9],[-11,-8],[-2,-2],[-4,-3],[-2,-3],[-1,0],[-8,-10],[-13,-12],[-21,-15],[-2,-2],[-5,-6],[-5,-6],[-3,-2],[-9,-6],[-12,-9],[-3,-2],[-6,-3],[-13,-6],[-4,-3],[-1,-1],[-7,-5],[-4,-3],[-14,-19],[-6,-8],[-23,-20],[-8,-6],[-4,-2],[-12,-9],[-3,-3],[-6,-7],[-5,-5],[0,-6],[0,-20],[4,-17],[4,-15],[1,-4],[-2,-16],[-1,-4],[-4,-4],[-8,-7],[-5,-4],[-22,-5],[-14,-3],[-19,-10],[-6,-4],[-23,-12],[-5,-4],[-8,-7],[-4,-3],[-1,0],[-6,-3],[-3,-2],[-1,0],[-14,-8],[-31,-20],[-13,-13],[-5,-3],[-18,-11],[-1,0],[-5,-2],[-12,-4],[-2,-1],[-10,-7],[-18,-16],[-17,-9],[-19,-14],[-22,-6],[-13,2],[-7,1],[-13,-2],[-8,-2],[-1,0],[-6,-2],[-7,-3],[-1,0],[-6,-3],[-16,-6],[-13,-5],[-15,-14],[-12,-20],[-11,-10],[-12,-5],[-5,-3],[-10,-8],[-6,-5],[-10,-18],[-2,-4],[-4,-9],[-15,-13],[-2,-2],[-15,-17],[0,-1],[-5,-12],[-4,-11],[-7,-7],[-9,-10],[-1,-1],[-12,-13],[-3,-1],[-13,-4],[-14,-14],[-1,-2],[-8,-22],[-13,-21],[-14,-17],[-4,-28],[-14,-21],[-14,-8],[-11,-18],[-16,-26],[-7,-19],[-1,-2],[-6,-9],[-6,-10],[-3,-5],[-2,-1],[-17,-16],[-15,-27],[0,-1],[-1,-1],[-13,-32],[-2,-5],[-7,-25],[-9,-18],[-14,-14],[-11,-20],[15,-17],[14,-19],[1,-2],[-2,-10],[0,-1],[-1,-6],[-4,-14],[-11,-33],[-8,-51],[-2,-16],[-15,-46],[2,-19],[-8,-20],[-1,-2],[-4,-3],[-12,-11],[-25,-21],[-12,-18],[-10,-18],[-1,-3],[-5,-3],[-11,-8],[-17,-5],[-6,-1],[-7,-2],[-8,-2],[-14,-2],[-13,-7],[-6,-3],[-4,-2],[-18,-21],[-9,-10],[-28,-18],[-37,-25],[-4,-3],[-29,-25],[-6,-7],[-19,-24],[-19,-32],[-5,-20],[-2,-29],[10,-41],[5,-13],[9,-22],[9,-23],[8,-38],[8,-22],[12,-22],[12,-19],[1,-8],[1,-2],[2,-10],[1,-4],[1,-4],[1,-2],[7,-17],[11,-23],[1,-1],[0,-2],[5,-46],[-3,-29],[0,-4],[-15,-44],[-37,-46],[-35,-25],[-25,-17],[-25,-13],[-47,-47],[-28,-47],[-29,-42],[0,-1],[-8,-36],[-1,-4],[-11,-30],[-13,-36],[-7,-20],[-7,-35],[-2,-15],[-13,-106],[0,-2],[-1,-4],[-7,-28],[1,-1],[-7,-28],[-6,-27],[-1,-2],[-20,-61],[-1,-3],[-14,-11],[-1,-1],[-30,-23],[-7,-8],[-12,-16],[-11,-12],[-37,-38],[-69,-70],[-7,-4],[-45,-26],[-12,-26],[-5,-9],[-4,-12],[-2,-8],[-12,-20],[-17,-12],[-12,-13],[-4,-6],[-6,-7],[-19,-18],[-2,-2],[-11,-6],[-8,-5],[-8,-5],[-21,-8],[-1,-1],[-2,0],[-1,-1],[-1,0],[-23,-3],[-15,-14],[-6,-6],[-4,-5],[-13,-11],[-16,-10],[-19,-12],[-11,-13],[-12,-6],[-20,-9],[-14,-11],[-15,-15],[-10,-22],[-13,-13],[-22,-10],[-10,-1],[-13,-1],[-30,-2],[-15,-1],[-4,-4],[-11,-11],[-17,-6],[-15,-11],[-13,-11],[-5,-4],[-1,0]],[[56711,37902],[-4,-1],[-11,0],[-81,0],[-17,4],[-22,-2],[-15,-2],[-126,1],[-39,0],[-124,0],[-45,0],[-45,0],[-165,0],[-47,-1],[-106,1],[-26,0],[-28,0],[-105,1],[-8,-2],[-9,-2],[-15,0],[-34,5],[-30,0],[-25,0],[-47,0],[-98,1],[-266,1],[-18,0],[-19,1],[-4,0],[-28,0],[-73,1],[-63,0],[-62,1],[-21,0],[-105,1],[-17,0],[-43,0],[-61,1],[-19,0],[-25,0],[-213,2],[-24,1],[-176,-1],[-90,0],[-114,1],[-36,0],[-50,0],[-60,0],[-72,3],[-11,1],[-18,0],[-48,0],[-48,-1],[-41,0],[-31,0],[-214,-2],[-55,0],[-262,-1],[-20,1],[-114,-2],[-85,-1]],[[52833,37912],[1,138],[0,90],[-3,100],[-1,162],[-1,122],[0,44],[-1,116],[0,25],[0,85],[-1,65],[0,51],[0,2],[0,25],[0,71],[0,7],[-1,106],[0,32],[0,1],[0,111],[0,119],[0,124],[-1,124],[0,44],[0,151],[0,53],[0,107],[0,8],[-1,11],[0,59],[-2,158],[0,24],[0,117],[0,78],[0,52],[0,40],[0,4],[1,77],[0,71],[0,50],[0,133],[-1,122],[1,83],[-1,98],[0,50],[-1,44],[0,48],[0,98],[-2,195],[-4,247],[-1,121],[1,37],[0,100],[0,53],[55,1],[27,-1],[137,-1],[3,-2],[10,0],[8,1],[28,2],[39,3],[26,2],[82,0],[1,0],[85,0],[19,0],[20,0],[58,-1],[133,-3],[135,2],[30,0],[13,0],[44,0],[89,0],[94,2],[-1,227],[0,3],[-2,88],[0,91],[1,80],[0,59],[0,87],[1,100],[0,94],[0,46],[0,39],[0,67],[1,76],[0,9],[1,162],[0,113],[0,96],[1,89],[0,205],[1,46],[0,125],[3,100],[3,124],[0,19],[2,118],[2,179],[1,19],[2,292],[-1,42],[1,78],[0,133]],[[33341,48414],[0,-101],[0,-29],[0,-11],[0,-15],[0,-17],[0,-19],[-1,-3],[0,-76],[0,-54],[1,-59],[0,-16],[0,-6],[1,-31],[2,-72],[3,-112],[2,-135],[1,-41],[0,-2],[1,-26],[0,-42],[0,-2],[0,-19],[1,-60],[-1,-28],[0,-12],[0,-7],[-1,-127],[64,-1],[-3,-60],[1,-67],[1,-106],[1,-125],[2,-138],[0,-18],[0,-40],[-3,-123],[0,-31],[0,-50],[1,-48],[0,-128],[0,-60],[0,-57],[0,-2],[0,-11],[-1,-39],[0,-2],[0,-19],[1,-53],[0,-30],[0,-27],[-1,-36],[0,-34],[1,-167],[1,-21],[0,-35],[-1,-88],[0,-34],[-1,-29],[0,-20],[0,-20],[0,-20],[-1,-36],[0,-35],[-1,-37],[0,-37],[-1,-86],[0,-36],[2,-61],[0,-19],[1,-31],[0,-23],[2,-24],[-3,-312],[0,-88],[0,-116],[0,-44],[0,-246],[0,-123],[-1,-126],[0,-62],[0,-73],[0,-25],[1,-114],[0,-74],[-1,-20],[0,-79],[0,-46],[0,-26],[0,-46],[0,-53],[1,-123],[1,-61],[0,-82],[-1,-105],[-2,-45],[-1,-50],[1,-41],[0,-41],[-1,-34],[0,-38],[-2,-36],[1,-90],[2,-141],[0,-29],[0,-46],[1,-147],[0,-41],[-2,-213],[-1,-65],[0,-36],[0,-26],[0,-93],[0,-27],[-1,-83],[-1,-33],[-2,-133],[-1,-97],[-1,-63],[-1,-32],[-1,-11],[0,-4],[0,-9],[1,-27],[0,-4],[50,-1],[15,0],[0,-12],[0,-12],[0,-6],[0,-122],[0,-20],[0,-16],[0,-10],[1,-46],[0,-16],[0,-16],[-1,-34],[-1,-18],[0,-17],[-1,-22],[-1,-18],[4,-24],[-1,-21],[0,-38],[1,-24],[0,-29],[0,-217],[-1,-217],[0,-29],[0,-69],[0,-116],[0,-128],[-2,-59],[0,-106],[0,-19],[-1,-223],[0,-28],[-1,-235],[0,-22],[0,-48],[0,-54],[0,-26],[0,-26],[-1,-48],[1,-133],[0,-74],[0,-67],[1,-53],[0,-59],[-1,-91],[1,-32]],[[33463,38648],[-81,-1],[-183,-3],[-44,0],[-93,-2],[-18,0],[-26,1],[-91,0],[-61,-1],[-59,0],[-73,0],[-66,-1],[-65,1],[-308,-1],[-22,0],[-1,0],[-180,3],[-83,1],[-137,2],[-37,1],[-4,0],[-14,0],[-218,1],[-128,1],[-24,0],[-1,0],[-46,1],[-4,0],[-32,0],[-31,0],[-173,2],[-27,1],[-67,2],[-29,0],[-17,0],[-24,0],[-141,1],[-29,0],[-160,1],[-17,0],[-28,0],[-41,-1],[-48,-1],[-52,-1],[-10,0],[-37,-1],[-39,0],[-30,-2],[-1,0],[-95,-2],[-267,2],[-14,0],[-115,0],[-19,0],[-4,0],[-68,-2],[-1,0],[-65,-1],[-5,0],[-15,0],[-95,4],[-166,0],[-34,0],[-135,-1],[-80,-1],[-1,0],[-74,-1],[-117,2],[-19,-1],[-29,-1],[-36,0],[-41,0],[-23,-2],[-21,1],[-18,-2],[-14,2],[-127,1],[-116,0],[-113,-1],[-25,-1],[-1,0],[-17,1],[-102,-2],[-52,1],[-15,-1],[-1,0],[-14,-1],[-43,2],[-43,-2],[-14,0],[-38,0],[-272,-2],[-68,-2],[-91,1],[-45,0],[-152,-1],[-114,-1],[-13,0],[-60,-1],[-51,0],[-115,-1],[-20,0]],[[27070,38639],[0,124],[-1,183],[0,146],[-1,182],[0,223],[-2,99],[-1,266],[0,43],[0,26],[-1,34],[0,22],[0,39],[0,19],[0,24],[0,48],[1,66],[0,13],[0,12],[-2,32],[0,22],[1,19],[1,17],[-1,66],[6,225],[5,225],[2,109],[1,27],[2,103],[1,53],[1,90],[0,30],[-1,60],[0,59],[-95,2],[-1,247],[-2,244],[-1,214],[0,36],[-1,120],[4,124],[-2,123],[0,33],[1,337],[2,245],[0,27],[2,217],[2,151],[1,34],[0,58],[-1,150],[-1,99],[1,78],[0,32],[0,33],[0,67],[0,36],[1,163],[0,88]],[[44212,45150],[0,-28],[2,-46],[-3,-42],[1,-37],[-1,-39],[0,-36],[-1,-30],[1,-45],[0,-31],[0,-44],[0,-64],[1,-46],[1,-50],[-1,-87],[0,-86],[-1,-333],[-1,-196],[0,-58],[0,-46],[0,-46],[0,-77],[0,-87],[0,-181],[1,-428],[0,-44],[0,-39],[0,-124],[0,-38],[0,-254],[1,-155],[0,-80],[0,-19],[1,-33],[65,-2],[183,-4],[89,-1],[111,-1],[73,0],[13,0],[2,-75],[4,-181],[6,-203],[1,-43],[-3,-102],[-4,-135],[-2,-256],[0,-188],[0,-43],[2,-26],[5,-133],[2,-64],[1,-47],[8,-216],[3,-77],[2,-40],[1,-27],[9,-125],[1,-40],[11,-311],[5,-147],[4,-100],[6,-147]],[[44811,39467],[-213,1],[-48,-1],[-253,0],[-158,0],[-26,0],[-100,-1],[-43,2],[-83,3],[-2,0],[-139,5],[-107,-1],[-159,-1],[-105,6],[-68,0],[-69,6],[-152,2],[-116,2],[-269,1],[-137,7],[-133,2],[-138,2],[-134,2],[-269,2],[-127,-5],[-75,-2],[-57,-1],[-134,-2],[-69,0],[-203,-3],[-131,-1],[-44,0],[-136,-1],[-28,0],[-66,-1],[-56,0],[-212,-2],[-386,-3],[-15,1],[-56,0],[-72,0],[-341,1],[-202,1],[-273,-3],[-130,-2],[-30,-1],[-15,-1],[-13,1],[-84,-1],[-272,-3],[-123,0],[-147,0],[-134,-1],[-69,-1],[-72,-1],[-16,0],[-1,0],[-20,0],[-17,0],[-66,-1],[-18,0],[-134,-1],[-256,-3],[-17,0],[-90,-2],[-172,-2],[-31,0],[-17,0],[-26,-1],[-18,-1],[7,-6],[5,-10],[1,-28],[1,-1],[19,-42],[4,-7],[6,-5],[19,-16],[36,-60],[61,-59],[51,-56],[76,-61],[10,-9],[7,-11],[1,-8],[1,-6],[15,-14],[42,-12],[10,-1],[13,0],[10,9],[17,13],[18,14],[8,10],[10,11],[8,-1],[34,0],[19,-21],[4,-39],[1,-2],[-3,-17],[-4,-4],[-1,-2],[-1,-30],[7,-26],[3,-15],[4,-14],[0,-5],[49,-56],[3,-3],[33,-30],[27,-7],[43,-1],[79,-24],[31,-33],[19,-12],[13,-9],[57,-3],[40,-12],[22,-17],[10,-8],[7,-5],[3,-1],[14,-7],[8,-4],[37,-8],[1,0],[14,-7],[14,-17]],[[38262,38669],[-2,0],[-17,0],[-119,0],[-26,-1],[-61,0],[-15,0],[-192,0],[-133,0],[-136,1],[-58,-1],[-23,0],[-30,1],[-87,0],[-68,0],[-125,0],[-141,0],[-101,2],[-30,0],[-136,0],[-67,1],[-201,-2],[-132,0],[-124,1],[-21,0],[-53,0],[-50,1],[-154,1],[-39,0],[-261,-4],[-37,0],[-53,-3],[-13,0],[-21,-1],[-115,-2],[-105,-4],[-99,-2],[-69,0],[-82,-1],[-79,-1],[-42,0],[-62,-1],[-54,0],[-32,-1],[-35,-1],[-13,0],[-69,-2],[-36,-1],[-50,0],[-111,2],[-69,3],[-18,1],[-15,0],[-43,-1],[-36,0],[-50,-1],[-8,0],[-15,0],[-14,-1],[-66,3],[-83,-1],[-106,-2],[-77,-1],[-131,0],[-48,-1],[-62,0],[-75,-1],[-104,-1]],[[49093,45106],[-1,-83],[0,-39],[0,-36],[-1,-30],[0,-11],[-1,-40],[0,-66],[0,-20],[0,-89],[-1,-34],[0,-21],[0,-18],[1,-124],[-2,-23],[-1,-97],[-2,-318],[-1,-49],[0,-61],[0,-202],[1,-58],[0,-43],[-1,-121],[0,-1],[-2,-124],[0,-123],[0,-4],[0,-118],[0,-165],[0,-28],[-1,-154],[0,-51],[0,-20],[1,-26],[0,-43],[1,-178],[0,-67],[1,-160],[0,-20],[0,-6],[1,-7],[0,-2],[0,-14],[0,-39],[-157,5],[-1,0],[-91,3],[-169,1],[-71,0],[-41,1],[-315,-3],[-29,1],[-77,-1],[-82,0],[-46,0],[-25,0],[-10,-275],[-1,-245],[6,-246],[4,-243],[-1,-234],[-1,-256],[0,-33],[-1,-20],[0,-13],[0,-13],[0,-31],[0,-1],[0,-54],[0,-18],[1,-32],[0,-43],[0,-59],[4,-27],[1,-17],[0,-25],[1,-8],[1,-61],[-1,-30],[9,-244],[2,-113],[4,-251],[1,-69],[1,-69],[1,-29],[1,-44],[3,-108],[0,-43],[3,-114],[2,-19],[4,-118],[10,-253],[5,-188],[2,-60],[0,-72],[2,-162],[0,-18],[1,-108],[0,-1],[1,-93],[0,-3],[0,-24],[0,-17]],[[48036,37976],[2,-61],[4,-103],[8,-108],[0,-18],[0,-49],[-2,-75],[2,-104],[4,-237],[0,-19],[-1,-73],[-2,-109],[0,-5],[0,-31],[-1,-221],[0,-33],[0,-119],[0,-36],[1,-14],[0,-22],[0,-79],[-2,-86],[1,-162],[2,-96],[1,-58],[2,-72],[1,-104],[1,-53],[1,-18],[1,-72],[1,-37],[0,-33],[3,-179],[0,-1],[2,-120],[2,-129],[3,-103],[1,-58],[1,-22],[0,-29],[1,-35]],[[48073,34993],[-23,0],[-23,0],[-15,0],[-15,0],[-14,1],[-49,0],[-18,0],[-13,0],[-13,0],[-47,1],[-34,0],[-15,-1],[-25,-1],[-27,0],[-35,-1],[-17,0],[-13,0],[-29,0],[-15,1],[-15,0],[-30,0],[-40,2],[-18,0],[-28,0],[-38,0],[-33,0],[-23,-1],[-29,1],[-13,0],[-17,0],[-19,0],[-23,0],[-22,0],[-9,0],[-4,0],[-42,1],[-30,0],[-22,0],[-21,1],[-20,0],[-43,1],[-27,0],[-16,0],[-47,1],[-10,0],[-3,0],[-69,1],[-22,0],[-28,0],[-19,0],[-26,0],[-15,1],[-16,0],[-21,0],[-35,0],[-31,1],[-14,0],[-15,0],[-15,0],[-16,0],[-15,1],[-26,0],[-21,0],[-16,1],[-19,0],[-15,1],[-17,0],[-13,0],[-17,1],[-15,1],[-14,0],[-20,0],[-14,0],[-13,1],[-18,0],[-16,0],[-16,0],[-19,1],[-15,0],[-42,0],[-18,0],[-13,0],[-4,0],[-10,0],[-15,0],[-20,0],[-46,0],[-101,0],[-119,0],[-66,0],[-60,-1],[-2,0],[-120,0],[-288,-1],[-132,-1],[-140,0],[-32,1],[-14,0],[-15,0],[-23,0],[-10,0],[-20,0],[-2,0],[-2,0],[-9,0],[-19,0],[-17,0],[-16,0],[-19,0],[-29,0],[-3,0],[-1,-1],[-6,0],[-28,0]],[[44869,35006],[-5,299],[-1,84],[-1,116],[-1,104],[-1,130],[-2,276],[-2,62],[-1,39],[0,22],[-3,62],[0,65],[-1,129],[0,28],[0,102],[-1,65],[0,29],[0,18],[-1,22],[-1,113],[0,19],[-3,226],[-4,167],[-1,79],[-4,245],[0,45],[-1,23],[-1,155],[0,6],[-1,45],[0,31],[0,32],[-1,32],[-3,111],[4,248],[2,168],[0,20],[0,59],[-1,155],[-1,6],[0,13],[-2,72],[0,38],[-3,135],[-2,74],[-2,106],[-4,142],[-6,141],[-3,103]],[[52833,37912],[-19,0],[-65,2],[-116,1],[-72,-1],[-34,-1],[-32,-1],[-8,0],[-16,0],[-19,-1],[-23,2],[-27,0],[-19,-1],[-82,0],[-16,0],[-18,0],[-105,2],[-77,1],[-13,0],[-37,1],[-58,-1],[-17,0],[-141,0],[-3,0],[-85,0],[-31,-1],[-38,0],[-181,-3],[-46,-1],[-204,2],[-264,3],[-147,2],[-41,1],[-78,1],[-19,0],[-51,0],[-110,-1],[-88,0],[-29,0],[-50,0],[-118,-1],[-39,0],[-27,0],[-21,0],[-115,-1],[-17,0],[-30,0],[-83,0],[-60,1],[-21,-2],[-48,1],[-34,-1],[-21,1],[-77,0],[-77,3],[-126,5],[-25,1],[-108,4],[-9,0],[-153,6],[-60,2],[-47,2],[-64,2],[-99,4],[-92,3],[-78,3],[-43,1],[-70,3],[-33,1],[-108,5],[-6,0],[-160,6],[-74,3],[-175,6]],[[18947,44316],[-2,-123],[2,-10],[0,-99],[-1,-248],[0,-117],[0,-5],[0,-13],[0,-22],[-1,-94],[0,-42],[0,-30],[0,-35],[0,-85],[-1,-31],[0,-116],[0,-38],[1,-76],[0,-46],[0,-38],[0,-33],[0,-53],[0,-123],[0,-122],[0,-25],[1,-54],[1,-92],[0,-18],[2,-40],[1,-57],[0,-86],[1,-244],[-1,-247],[2,-91],[0,-174],[-2,-42],[0,-37],[0,-17],[1,-131],[92,0],[5,0],[14,1],[27,0],[0,-114],[0,-43],[1,-85],[0,-127],[1,-121],[0,-25],[0,-95],[-1,-64],[0,-60],[1,-64],[0,-164],[1,-37],[0,-227],[0,-163],[0,-19],[0,-68],[1,-87],[-1,-30],[0,-128],[0,-124],[1,-122],[0,-128],[0,-42],[0,-6],[0,-70],[0,-112],[0,-134],[-1,-247],[0,-128],[0,-8],[0,-110]],[[19092,38411],[-38,0],[-55,0],[-178,-1],[-67,0],[-14,0],[-184,1],[-98,-1],[-36,0],[-115,0],[-87,0],[-199,0],[-194,-2],[-73,-1],[-51,0],[-61,0],[-21,-1],[-36,-1],[-87,0],[-264,-1],[-266,-1],[-47,4],[-26,2],[-58,-2],[-136,-4],[-267,0],[-133,-1],[-133,0],[-190,0],[-5,0],[-70,-1],[-85,0],[-192,1],[-10,0],[-247,0],[-13,0],[-34,0],[-191,0],[-98,1],[-85,1],[-2,0],[-15,0],[-46,0],[-50,-1],[-269,1],[-205,1],[-7,1],[-15,0],[-38,0],[-250,2],[-58,0],[-33,1],[-194,-2],[-132,0],[-134,1],[-126,1],[-141,0],[-83,0],[-79,0],[-107,0],[-61,0],[-65,-1],[-88,-1],[-47,0]],[[12703,38407],[-1,246],[0,126],[1,122],[-1,163],[-1,83],[-2,119],[1,128],[1,248],[3,247],[-2,76],[0,172],[-2,112],[0,23],[0,92],[1,22],[0,90],[0,30],[0,127],[-2,262],[1,20],[1,82],[2,129],[2,132],[0,32],[1,36],[0,22],[0,8],[1,25],[-7,0],[-15,0],[-1,0],[-16,1],[-24,0],[-98,3],[-1,140],[0,40],[0,23],[0,8],[0,32],[-1,246],[0,248],[0,78],[-1,166],[0,122],[1,120],[5,88],[3,160]],[[27070,38639],[1,-247]],[[27071,38392],[-189,-1],[-77,-1],[-112,2],[-18,2],[-75,-1],[-63,-1],[-265,-2],[-49,0],[-31,0],[-58,-1],[-31,0],[-72,0],[-29,1],[-119,0],[-16,0],[-59,-1],[-72,2],[-99,-1],[-141,0],[-13,0],[-154,1],[-24,-1],[-20,0],[-26,1],[-20,1],[-24,-1],[-162,0],[-62,0],[-41,0],[-138,1],[-87,-1],[-110,0],[-288,1],[-10,0],[-173,0],[-111,3],[-99,3],[-6,0],[-29,1],[-29,1],[-49,2],[-25,0],[-7,0],[-183,6],[-16,-6],[-91,6],[-16,-1],[-34,0],[-57,-1],[-69,-1],[-20,0],[-130,-2],[-22,0],[-68,-1],[-57,-1],[-75,0],[-42,0],[-24,-1],[-69,1],[-97,-2],[-11,0],[-75,-1],[-21,0],[-40,-1],[-90,-1],[-3,-1],[-64,-5],[-79,0],[-45,0],[-20,3],[-40,3],[-27,-4],[-175,1],[-1,0],[-364,4],[-115,1],[-57,0],[-270,1],[-32,0],[-54,1],[-20,0],[-132,2],[-27,0],[-43,-1],[-25,1],[-55,1],[-25,0],[-117,1],[-48,0],[-27,1],[-14,2],[-13,1],[-23,-2],[-17,-2],[-50,1],[-75,0],[-116,2],[-150,-1],[-99,1],[-107,1],[-62,0],[-17,0],[-85,0],[-36,0],[-131,0],[-62,0],[-99,1],[-48,0],[-56,0],[-34,0],[-126,1],[-39,0],[-66,1]],[[12703,38407],[1,-167],[0,-27],[0,-52],[0,-354],[-2,-142],[0,-140],[0,-105],[0,-197],[0,-3],[0,-48],[0,-23],[0,-98],[1,-125],[2,-232],[0,-9],[1,-254],[0,-56],[1,-62],[2,-129],[0,-68],[0,-55],[1,-122],[1,-52],[1,-42],[2,-152],[-1,-134],[1,-114]],[[12714,35445],[-80,-1],[-2,0],[-25,0],[-157,0],[-77,0],[-30,0],[-35,0],[-92,-2],[-15,0],[-126,-1],[-38,0],[-117,1],[-117,1],[-35,1],[-85,0],[-30,1],[-60,0],[-58,0],[-146,-1],[-184,-2],[-67,1],[-113,0],[-18,0],[-68,0],[-201,2],[-166,-2],[-89,0],[-14,2],[-3,0],[-267,-2],[-70,0],[-31,0],[-6,0],[-31,0],[-132,1],[-26,0],[-18,-1],[-40,1],[-52,0],[-177,1],[-90,0],[-138,0],[-42,1],[-138,0],[-71,1],[-61,-1],[-171,0],[-30,0],[-27,2],[-147,1],[-23,0],[-79,2],[-20,-2],[-48,0],[-105,-1],[-151,-2],[-71,1],[-21,-2],[-33,1],[-131,0],[-105,1],[-140,2],[-22,0],[-68,1],[-168,3],[-304,-1],[-160,0],[-54,0],[-14,-1],[-15,1],[-273,-2],[-262,0],[-50,0],[-4,0],[-78,3],[-138,2],[-85,1],[-184,-2],[-86,0],[-184,2],[-17,0],[-51,0],[-15,0],[-29,0],[-157,-1],[-151,1]],[[5205,35456],[-25,30],[-112,133],[-30,35],[-5,16],[-54,154],[-8,24],[3,95],[42,130],[2,57],[-2,4],[4,24],[28,39],[4,32],[20,94],[34,82],[32,60],[20,30],[14,18],[46,43],[14,8],[18,3],[37,13],[1,0],[65,62],[86,53],[124,103],[9,5],[20,0],[50,2],[108,44],[57,54],[39,47],[101,95],[42,9],[46,24],[67,61],[71,49],[7,3],[108,101],[77,73],[63,59],[24,7],[46,13],[39,19],[104,33],[10,8],[59,55],[41,23],[19,7],[23,15],[95,90],[1,3],[14,0],[82,74],[13,6],[11,8],[72,57],[25,15],[71,67],[30,23],[3,1],[127,50],[33,21],[66,43],[53,51],[2,3],[1,2],[46,42],[8,8],[3,10],[21,74],[66,62],[14,13],[46,32],[2,3],[53,49],[-1,90],[-4,5],[-6,53],[-4,52],[13,19],[21,19],[16,5],[14,13],[51,77],[-1,35],[0,19],[4,12],[3,9],[6,6],[47,46],[49,13],[103,97],[4,5],[51,70],[49,78],[23,28],[32,34],[9,11],[65,79],[8,21],[8,18],[30,28],[9,5],[23,0],[32,13],[10,4],[46,43],[1,19],[1,22],[11,17],[29,62],[19,41],[12,34],[14,78],[-5,78],[6,11],[16,31],[5,12],[2,30],[6,72],[3,64],[5,101],[2,42],[0,1],[1,3],[4,46],[2,9],[15,101],[9,95],[0,8],[2,7],[4,32],[26,213],[4,38],[-2,82],[-1,19],[-1,11],[-3,18],[1,24],[2,9],[9,26],[3,8],[14,29],[21,37],[-29,20],[-23,16],[24,73],[8,5],[14,15],[6,6],[2,9],[1,15],[0,47],[-2,18],[-3,28],[1,33],[5,23],[7,133],[13,42],[20,63],[-3,45],[-1,8],[-1,6],[-3,15],[-2,12],[-7,23],[-17,40],[-4,7],[-17,29],[-3,8],[-3,9],[-3,15],[-9,45],[-32,67],[-14,47],[-3,29],[-1,30],[-1,13],[-1,25],[-1,11],[-1,11],[-5,25],[-9,50],[-5,35],[0,9],[0,31],[1,14],[1,29],[-1,69],[-1,35],[0,3],[0,5],[-7,78],[-2,63],[-2,54],[-6,43],[0,2],[-26,79],[-1,12],[10,68],[4,28],[1,4],[7,32],[-1,13],[-4,20],[-2,7],[-23,60],[0,1],[0,1]],[[44869,35006],[-22,0],[-7,0],[-3,0],[-2,0],[-4,1],[-8,0],[-6,0],[-5,-1],[-4,0],[-3,0],[-60,0],[-14,-1],[-29,0],[-19,-1],[-16,0],[-14,0],[-14,0],[-13,0],[-22,0],[-22,0],[-36,1],[-37,0],[-15,1],[-19,0],[-29,1],[-28,0],[-56,1],[-32,1],[-13,0],[-19,0],[-17,1],[-20,0],[-16,0],[-13,0],[-16,0],[-13,0],[-16,1],[-13,0],[-25,0],[-15,0],[-13,0],[-17,0],[-15,0],[-14,1],[-14,0],[-14,0],[-24,0],[-15,0],[-23,0],[-15,0],[-15,0],[-16,0],[-14,0],[-30,0],[-17,0],[-14,0],[-31,0],[-27,0],[-2,1],[-12,0],[-14,0],[-15,0],[-15,0],[-17,0],[-16,0],[-19,1],[-15,0],[-13,0],[-16,0],[-13,0],[-15,1],[-14,0],[-23,0],[-19,1],[-19,0],[-15,0],[-17,0],[-16,0],[-15,0],[-21,0],[-17,-1],[-21,0],[-14,0],[-23,0],[-13,0],[-21,-1],[-14,0],[-20,0],[-21,0],[-14,0],[-16,0],[-18,0],[-60,-1],[-30,0],[-18,0],[-20,0],[-93,-1],[-21,0],[-94,0],[-10,0],[-35,1],[-6,-1],[-7,0],[-14,0],[-14,0],[-17,-1],[-13,0],[-13,0],[-10,0],[-10,0],[-24,0],[-50,-1],[-40,-1],[-15,0],[-14,-1],[-16,0],[-21,1],[-14,0],[-20,0],[-17,0],[-17,0],[-21,0],[-26,0],[-25,0],[-28,-1],[-15,0],[-16,0],[-48,-1],[-13,0],[-16,0],[-16,0],[-15,0],[-46,-1],[-28,0],[-23,-1],[-18,0],[-18,0],[-25,0],[-13,0],[-18,0],[-16,-1],[-23,0],[-15,0],[-15,-1],[-18,1],[-17,-1],[-20,0],[-23,0],[-130,-1],[-25,-1],[-24,0],[-89,-1],[-13,0],[-17,0],[-19,-1],[-51,0],[-14,0],[-16,-1],[-16,1],[-48,-1],[-73,-1],[-77,2],[-16,0],[-2,0],[-18,0],[-20,0],[-85,0],[-27,0],[-29,0],[-35,0],[-15,0],[-86,1],[-123,2],[-133,-2],[-134,-1],[-17,0],[-84,1],[-32,0],[-59,0],[-20,1],[-56,0],[-17,0],[-22,0],[-94,-1],[-49,0],[-31,0],[-16,0],[-20,-1],[-16,0],[-2,0],[-15,0],[-46,0],[-16,0],[-18,0],[-28,0],[-11,0],[-8,-1],[-13,0],[-14,0],[-21,0],[-26,0],[-19,-1],[-1,0]],[[39839,34997],[-34,30],[-26,24],[-5,5],[-30,20],[-5,4],[-33,24],[-5,4],[-31,54],[-36,71],[-8,34],[-1,3],[-18,83],[-3,85],[-2,9],[-4,7],[-11,10],[-1,0],[-99,88],[-69,61],[-24,20],[-18,15],[-12,10],[-8,6],[-4,4],[-5,4],[-3,3],[-26,27],[-24,26],[-4,4],[-4,6],[-38,62],[-30,48],[-4,7],[-29,51],[-10,16],[-3,6],[-2,5],[-2,2],[-6,18],[-5,18],[-4,17],[-6,11],[-3,13],[-6,24],[3,14],[6,10],[-1,18],[-2,28],[-4,124],[-12,65],[0,1],[4,176],[13,32],[23,32],[2,2],[3,3],[12,13],[30,33],[11,12],[3,151],[-4,37],[-9,16],[0,32],[11,60],[3,9],[14,13],[9,7],[10,5],[14,-1],[4,0],[19,0],[73,33],[20,18],[10,16],[10,21],[0,26],[-14,13],[-4,2],[-19,-1],[-3,0],[-16,0],[-55,-18],[-10,-4],[-28,-26],[-7,-6],[-15,-6],[-12,0],[-28,0],[-20,5],[-34,31],[-7,11],[-9,35],[-4,22],[-16,104],[-55,208],[-24,25],[-3,3],[-10,5],[-22,2],[-13,7],[-12,5],[-70,70],[-24,37],[-7,21],[-1,67],[1,7],[0,2],[1,9],[23,23],[48,10],[32,26],[18,15],[5,9],[0,9],[1,18],[-7,35],[-9,21],[-8,7],[-7,7],[-29,1],[-88,5],[-135,42],[-10,6],[-49,36],[-1,0],[-33,16],[-23,11],[-22,11],[-15,14],[-4,19],[-12,11],[-10,7],[-25,17],[-64,35],[-36,38],[-7,13],[-3,5],[-1,9],[-2,7],[-3,19],[2,7],[-2,11],[-7,12],[-8,13],[-13,22],[-15,25],[-6,12],[-18,43],[1,32],[0,7],[10,15],[8,10],[1,4],[11,23],[1,1],[0,1],[0,21],[0,5],[-2,6],[-3,8],[-6,12],[-1,2],[-17,16],[-44,19],[-29,28],[-8,14],[-1,19],[-1,4],[11,21],[10,20],[0,22],[1,9],[0,6],[-7,14],[-3,11]],[[39839,34997],[33,-51],[13,-34],[-1,-41],[-15,-46],[-10,-119],[-1,-11],[7,-46],[9,-23],[0,-13],[0,-3],[-11,-37],[-28,-68],[-8,-10],[3,-12],[2,-10],[5,-27],[3,-4],[9,-12],[25,-34],[22,-19],[8,-6],[0,-5],[-1,-7],[8,-14],[33,-42],[6,-6],[19,-17],[4,-12],[-3,-34],[-17,-38],[-3,-2],[-11,-12],[-15,-23],[0,-21],[-1,-4],[15,-32],[-2,-88],[12,-22],[2,-59],[30,-71],[14,-20],[36,-50],[6,-4],[0,-1],[17,-16],[15,-13],[16,-11],[13,-9],[15,-12],[17,-17],[2,-2],[1,-1],[9,-7],[2,-2],[14,-10],[48,-15],[52,-17],[6,-4],[26,-17],[37,-35],[9,-9],[3,-5],[33,-49],[1,-1],[71,-66],[10,-10],[12,-17],[5,-9],[0,-1],[2,-76],[1,-37],[-11,-41],[-5,-5],[-15,-13],[-1,-26],[12,-11],[55,-51],[1,-1],[22,-19],[5,-4],[81,-17],[5,-1],[64,-26],[7,-3],[15,-7],[24,-21],[12,-18],[7,-21],[1,-13],[0,-3],[1,-16],[-28,-36],[0,-1],[0,-1],[2,-15],[3,-2],[4,-5],[1,0],[21,0],[1,0],[37,6],[20,7],[31,-1],[8,0],[2,-2],[38,-27],[9,-6],[-2,-10],[-1,-4],[5,-20],[3,-16],[1,-3],[2,-2],[12,-12],[1,0],[17,-8],[44,2],[1,0],[27,13],[5,2],[8,6],[34,26],[10,-1],[20,-2],[10,0],[12,-12],[10,-21],[8,-48],[-1,-22],[1,-8],[0,-2],[0,-8],[-1,-10],[0,-23],[8,-19],[2,-2],[8,-16],[10,-17]],[[41156,32682],[-20,-1],[-1,0],[-54,9],[0,-3],[-3,-3],[-16,-18],[0,-5],[-7,-3],[-3,-1],[-10,-20],[5,-30],[2,-6],[-5,-31],[-1,-3],[-3,-5],[-11,-7],[-3,-1],[-15,4],[-14,-21],[-1,-1],[-10,-15],[-17,-27],[-7,-9],[-15,-27],[-25,-45],[-6,-10],[-33,-36],[-3,-4],[0,-7],[4,-14],[4,-13],[5,-15],[2,-6],[6,-15],[-1,-9],[-3,-15],[-6,-18],[-6,-18],[-31,-23],[-10,-14],[-15,-19],[-15,-20],[-28,-37],[-16,-22],[-9,-42],[-1,-4],[0,-26],[0,-9],[0,-2],[-6,-9],[-22,-20],[-40,-26],[-11,2],[-4,1],[-1,2],[-4,2],[-3,-1],[-10,-15],[-1,-7],[0,-91],[4,-24],[0,-1],[28,-55],[2,-2],[4,-6],[9,-12],[13,-18],[0,-7],[-6,-10],[-2,-4],[-1,0],[-17,-1],[-8,-2],[-1,0],[-45,-26],[0,-5],[-10,-44],[-14,-31],[-15,-36],[-2,-4],[-8,-16],[-14,-28],[-12,-17],[-2,-1],[-1,-52],[1,-4],[5,-21],[2,-5],[3,-8],[23,-57],[-2,-2],[-12,-22],[0,-1],[-30,-11],[0,1],[-46,10],[-8,2],[-3,-3],[-9,-11],[-6,-5],[0,-1],[-2,-1],[-19,-6],[-1,0],[-14,0],[-38,-23],[-10,-7],[0,-1],[-68,-96],[-50,-96],[0,-1],[-4,-2],[-10,-8],[-1,0],[-65,-55],[-21,-59],[-45,-41],[-63,0],[-41,0],[-60,-54],[-78,-38],[-50,-45],[0,-11],[-5,-9],[-23,-23],[-51,-62],[-5,-5],[-7,-9],[-5,1],[-21,5],[-27,-8],[-4,-2],[-124,-34],[-32,0],[-22,7],[-3,3],[-4,4],[0,2],[-5,32],[-10,42],[-4,19],[0,3],[-2,6],[-7,17],[-7,18],[-14,33],[-1,0],[-4,5],[-7,3],[-3,1],[-13,9],[-40,29],[-6,8],[-5,6],[-2,11],[0,1],[0,1],[-1,1],[-15,15],[-7,2],[-19,1],[-35,0],[-16,9],[-2,-1],[-46,-9],[-3,-1],[-10,-8],[-13,-4],[-3,0],[-9,0],[-62,-6],[-3,-1],[-34,-21],[-17,22],[-5,3],[-4,1],[-52,-5],[-1,0],[-9,-5],[-8,-4],[-78,-58],[-6,-5],[-19,-16],[-12,-5],[-57,-6],[-15,0],[-82,-3],[-30,-17],[-17,1],[-13,1],[-4,0],[-33,-22],[-57,1],[-14,0],[-37,-3],[-10,-1],[-13,-4],[-11,-10],[-34,-28],[0,-25],[6,-11],[1,-4],[17,-29],[-1,-30],[-5,-3],[-3,-2],[-55,12],[-12,-34],[0,-1],[-2,-6],[-10,-29],[-4,-12],[5,-7],[5,-139],[3,-55]],[[38404,30322],[-69,-2],[-126,-5],[-147,-4],[-61,-1],[-266,-1],[-133,-5],[-263,-4],[-42,-1],[-226,-5],[-143,5],[-17,0],[-88,5],[0,117],[1,124],[-1,28],[-1,226],[0,47],[-1,149],[0,53],[0,1],[-6,1],[-3,-1],[-23,0],[-19,-1],[-3,0],[-79,-2],[-129,-1],[-76,-3],[-4,0],[-50,-2],[-70,-1],[-33,-1],[-29,0],[-109,-2],[-71,0],[-27,0],[-56,0],[-126,0],[-16,1],[-4,0],[-117,0],[-50,0],[-13,1],[-2,0],[-24,0],[-15,0],[-27,0],[-266,-1],[-58,0],[-72,0],[-128,2],[-135,2],[-63,-1],[-24,0],[-26,0],[-17,0],[-80,-1],[-22,0],[-14,-1],[-16,0],[-21,0],[-13,0],[-16,-1],[-18,0],[-64,-1],[-46,-1],[-46,0],[-30,-1],[-35,0],[-11,0],[-101,-1],[-36,-1],[-78,0],[-20,-1],[-3,0],[-51,0],[-88,1],[-39,0],[-32,0],[-58,1],[-7,0],[-8,0],[-70,-1],[-124,0],[-50,0],[-20,-1],[-123,-1],[-114,1],[-49,1],[-74,1],[-101,1],[-22,0],[-18,0],[-1,0],[-21,1],[-10,0],[-8,0],[-59,1],[-15,1],[-54,0],[-11,0],[-122,1],[-206,1],[-1,0],[-41,0],[-31,0],[-86,0],[-17,-1],[-60,0],[-53,-1],[-15,0],[-33,-1],[-73,-1],[-27,0],[-46,1],[-22,0],[-29,1],[-38,1],[-32,0],[-25,0],[-30,0],[-44,0]],[[31923,31038],[0,48],[0,19],[0,58],[0,155],[0,107],[0,106],[-1,124],[1,106],[0,107],[1,43],[0,20],[0,41],[1,37],[0,31],[0,29],[0,16],[0,62],[-1,117],[1,40],[0,34],[0,78],[1,35],[0,60],[-133,2],[-125,-1],[-9,0],[-136,-1],[-38,0],[-90,0],[-100,1],[-130,1],[-36,1],[-101,0],[-24,0],[-143,-1],[-71,1],[-74,0],[-80,0],[-20,0],[-19,1],[-18,0],[-57,-1],[-42,0],[-8,0],[-17,0],[-90,0],[-28,0],[-132,-1],[-397,-1],[-67,-1],[-43,0],[-204,-2],[-81,-1],[-97,-1],[-235,-2],[-69,0],[-35,0],[-1,0],[-108,-1],[-14,-2],[-95,1],[-193,2],[-122,1],[-115,-2],[-35,0],[-61,0],[-140,-1],[-64,0],[-32,0],[-7,0],[-22,0],[-86,1],[-99,1],[-65,1],[-18,-1],[-78,1],[-57,0],[-67,1],[-72,0],[-36,1],[-15,-1],[-75,0],[-44,-3],[-82,0]],[[27174,32504],[1,228],[0,58],[0,85],[1,217],[0,34],[1,108],[1,126],[1,27],[0,42],[0,52],[-2,434],[0,62],[1,27],[0,32],[0,3],[-1,76],[0,47],[0,6],[1,96],[0,53],[0,147],[-1,235],[0,1],[0,62],[0,26],[1,164],[0,94],[-1,146],[-1,141],[-1,105],[-52,0],[-54,0],[1,189],[0,7],[2,295],[3,187],[0,58],[2,140],[-1,42],[0,147],[0,167],[0,38],[1,207],[-2,68],[-1,177],[0,25],[-1,53],[0,43],[0,126],[-1,37],[0,24],[0,70],[-1,112],[0,36],[0,36],[0,59],[0,12],[0,127],[0,134],[0,91],[1,95],[0,38],[-1,114]],[[19092,38411],[-1,-93],[0,-1],[0,-31],[0,-5],[0,-41],[-3,-30],[0,-4],[0,-47],[0,-41],[0,-49],[0,-154],[0,-88],[-1,-159],[-2,-54],[2,-75],[1,-118],[1,-56],[0,-6],[1,-59],[1,-126],[1,-49],[0,-35],[1,-102],[-2,-60],[0,-39],[0,-22],[0,-4],[0,-29],[0,-45],[0,-108],[0,-77],[0,-63],[0,-108],[1,-21],[1,-49],[-1,-95],[0,-21],[0,-48],[0,-56],[1,-27],[0,-37],[0,-63],[0,-26],[0,-50],[0,-11],[-1,-46],[0,-133],[0,-2],[0,-56],[0,-8],[0,-14],[0,-94],[0,-97],[0,-32],[0,-1],[39,0],[66,-1],[33,1],[1,-217],[0,-24],[0,-109],[0,-136],[0,-36],[0,-68],[0,-143],[0,-52],[1,-127],[0,-66],[1,-124],[0,-27],[-1,-96],[1,-139],[0,-90],[-2,-135],[0,-367],[1,-251],[0,-41],[0,-68],[0,-135],[2,-247],[0,-121],[0,-30],[0,-93]],[[19234,32504],[-37,-1],[-88,-1],[-23,0],[-115,-1],[-95,1],[-39,0],[-1,0],[-131,-1],[-266,0],[-185,1],[-86,0],[-260,-1],[-133,1],[-32,0],[-85,1],[-16,0],[-57,1],[-35,0],[-30,0],[-144,1],[-61,0],[-74,-1],[-57,0],[-55,0],[-19,0],[-265,1],[-99,0],[-159,1],[-86,0],[-187,0],[-6,0],[-17,0],[-49,0],[-19,0],[-175,-3],[-13,0],[-57,-2],[-5,0],[-186,-1],[-208,0],[-3,0],[-54,0],[-123,-1],[-13,0],[-129,0],[-265,-1],[-77,-1],[-23,0],[-1,0],[-115,0],[-84,0],[-93,0],[-44,0],[-85,0]],[[14470,32497],[-109,0],[-14,0],[-14,0],[-14,0],[-118,-1],[-124,0],[-141,0],[-34,1],[-94,0],[-133,1],[-84,1],[-51,0],[-15,0],[-124,2],[-41,1],[-73,3],[-74,0],[-22,0],[-59,1],[-124,1],[-22,0],[-47,0],[-73,2],[0,111],[1,128],[0,243],[1,118],[0,128],[1,363],[1,124],[0,86],[0,39],[1,120],[0,23],[2,84],[0,34],[-1,105],[-2,151],[0,92],[0,42],[0,1],[0,65],[-1,142],[-1,215],[0,129],[-1,148],[0,69],[0,1],[-1,175],[-79,0],[-37,0],[-36,0]],[[27174,32504],[-471,3],[-16,0],[-78,0],[-70,0],[-50,0],[-92,1],[-14,0],[-62,0],[-14,2],[-269,1],[-393,-3],[-63,-2]],[[25582,32506],[-1,0],[-399,3],[-23,1],[-42,0],[-162,-1],[-89,-1],[-11,0],[-18,-1],[-5,0],[-19,0],[-205,-1],[-1,0],[-52,0],[-34,0],[-55,-1],[-207,1],[-16,-1],[-31,0],[-28,-1],[-24,0],[-127,10],[-32,-1],[-329,-9],[-65,0],[-241,-2],[-1,0],[-24,0],[-45,0],[-151,-1],[-127,0],[-43,-1],[-14,0],[-17,0],[-265,-3],[-264,-1],[-125,1],[-136,2],[-121,1],[-144,0],[-114,1],[-17,0],[-131,0],[-81,1],[-44,1],[-93,0],[-66,0],[-46,0],[-75,0],[-126,2],[-39,0],[-234,0],[-14,1],[-250,1],[-271,1],[-1,0],[-76,-2],[-24,0],[-158,0],[-234,0],[-32,-1],[-44,0],[-9,0],[-39,0],[-103,0],[-67,-1],[-14,0],[-118,0],[-135,0]],[[52833,37912],[0,-51],[0,-27],[-1,-166],[1,-120],[3,-127],[-1,-60],[0,-185],[0,-33],[0,-99],[-1,-78],[0,-8],[0,-23],[0,-280],[-1,-88],[0,-21],[0,-74],[-1,-18],[1,-133],[0,-74],[-1,-40],[0,-53],[-1,-53],[0,-19],[-1,-84],[0,-41],[0,-24],[1,-53],[0,-62],[0,-60],[0,-22],[0,-20],[0,-219],[2,-61],[1,-23],[0,-22],[2,-26],[-3,-20],[1,-19],[-3,-209],[0,-137],[216,1],[61,-1],[75,-1],[71,-1],[68,0],[33,0],[39,1],[19,-1],[36,0],[142,-1],[126,-3],[17,1],[112,-1],[38,0],[16,0],[64,-1],[80,-1],[80,-2],[65,-1],[25,-1],[31,0],[21,-1],[73,-2],[34,0],[4,0],[-1,-45],[-1,-201],[-1,-210],[0,-58],[0,-26],[1,-19],[0,-20],[0,-24],[0,-17],[0,-66],[0,-3],[0,-27],[0,-27],[0,-22],[0,-3],[0,-104],[-2,-101],[1,-19],[2,-52],[4,-128],[1,-34],[1,-22],[0,-37],[0,-50],[-1,-37],[0,-44],[1,-76],[1,-40],[1,-40],[3,-109],[0,-18],[1,-62],[1,-60],[1,-98],[0,-77],[3,-48],[2,-54],[1,-22],[2,-36],[1,-18],[1,-29],[2,-45],[0,-3],[5,-136],[3,-102]],[[54410,32496],[-148,0],[-120,2],[-64,0],[-231,8],[-36,1],[-29,0],[-40,1],[-29,0],[-28,1],[-97,1],[-5,1],[-108,15],[-7,1],[-9,1],[-103,-2],[-17,0],[-38,0],[-30,0],[-69,-1],[-155,-1],[-219,1],[-200,8],[-66,2],[-21,0],[-118,-2],[-54,0],[-26,0],[-29,-1],[-18,0],[-160,-1],[-179,-2],[-22,0],[-152,-2],[-24,0],[-104,0],[-25,0],[-20,0],[-22,0],[-25,0],[-24,0],[-81,1],[-11,0],[-44,0],[-25,-1],[-13,0],[-66,0],[-34,0],[-9,0],[-16,-1],[-66,0],[-11,0],[-55,0],[-66,0],[-6,0],[-59,-1],[-111,0],[-15,0],[-77,1],[-21,1],[-307,-2],[-128,0],[-14,0],[-24,0],[-33,-1],[-29,0],[-20,0],[-3,0],[-44,0],[-18,0],[-32,0],[-46,0],[-134,1],[-98,-1],[-122,1],[-183,1],[-98,0],[-33,0],[-126,0],[-17,0],[-61,2],[-17,0],[-71,0],[-92,-1],[-3,-1],[-130,0],[-193,4],[-41,0],[-48,1],[-231,2],[-23,1],[-19,1],[-104,6],[-127,4]],[[48084,32545],[0,30],[0,7],[0,14],[-1,3],[-1,2],[1,1],[1,2],[0,5],[0,3],[0,1],[0,15],[0,5],[0,3],[0,23],[0,18],[0,19],[0,19],[0,31],[0,18],[-1,26],[0,22],[0,19],[0,19],[-1,19],[0,21],[0,26],[-1,19],[0,19],[0,19],[-1,17],[0,23],[0,20],[0,17],[0,21],[-1,21],[0,17],[0,20],[0,19],[0,19],[0,40],[-1,72],[0,39],[0,84],[0,80],[-1,44],[0,22],[0,18],[1,18],[0,24],[0,29],[0,23],[0,20],[0,28],[0,23],[0,19],[0,20],[0,19],[0,25],[-1,28],[0,17],[0,27],[2,235],[-1,136],[0,124],[-1,247],[-1,55],[0,13],[0,13],[0,17],[0,23],[0,39],[0,2],[0,85],[-2,65],[-1,53]],[[56711,37902],[0,-1],[-2,-1],[-12,-7],[-9,-4],[-8,-2],[-3,-1],[-5,-2],[-17,-3],[-17,3],[-7,-1],[-1,0],[-17,-3],[-3,0],[0,-1],[-4,-3],[-8,-6],[0,-2],[-9,-20],[1,-24],[-1,-18],[-10,-13],[-3,-1],[-24,-7],[-4,0],[-30,-3],[-2,0],[-18,-4],[-33,-2],[-32,-7],[-14,-7],[-14,-11],[-12,-9],[-8,-9],[-10,-11],[-10,-9],[-1,-2],[-2,-1],[-3,-4],[-2,-4],[-9,-12],[-1,-8],[-2,-12],[-2,-14],[-1,-7],[6,-18],[1,-4],[1,-9],[2,-12],[0,-5],[-5,-19],[-6,-23],[-3,-10],[0,-18],[0,-7],[0,-19],[-5,-26],[-8,-22],[-4,-23],[-1,-4],[-4,-28],[0,-5],[0,-1],[1,-10],[0,-2],[0,-7],[8,-12],[5,-8],[3,-10],[2,-8],[1,-3],[-3,-5],[-1,0],[0,-1],[-13,-19],[-7,-17],[-9,-17],[-11,-22],[-8,-18],[-6,-16],[-6,-8],[-5,-8],[-2,-19],[-1,-2],[-1,-15],[-4,-18],[0,-23],[-1,-20],[-2,-20],[-2,-12],[-3,-10],[0,-21],[0,-18],[0,-1],[0,-23],[0,-20],[-3,-14],[-1,-9],[-3,-20],[-1,-7],[0,-12],[-5,-20],[-3,-14],[-2,-8],[-4,-17],[-1,-11],[0,-7],[-4,-19],[-2,-18],[-6,-16],[-8,-16],[-2,-5],[-7,-12],[-5,-13],[-1,-3],[-9,-22],[-8,-17],[-2,-20],[-5,-25],[-9,-23],[-4,-23],[0,-19],[-3,-26],[-1,-3],[-3,-10],[-1,-2],[-1,-3],[0,-2],[-2,-8],[-4,-15],[-1,-16],[-1,-14],[-4,-20],[0,-1],[-3,-4],[-5,-12],[-5,-7],[-4,-8],[-9,-9],[-3,-3],[-1,-2],[-7,-8],[-2,-3],[-2,-6],[-4,-8],[-1,-2],[0,-2],[-1,-10],[-1,-6],[3,-5],[7,-12],[2,-2],[5,-9],[1,-3],[3,-4],[1,-3],[4,-9],[2,-6],[0,-4],[1,-6],[1,-6],[1,-4],[1,-5],[1,-3],[0,-5],[0,-15],[0,-9],[0,-8],[0,-10],[0,-6],[-1,-8],[-1,-5],[0,-2],[-1,-5],[-1,-9],[-3,-12],[0,-3],[-2,-8],[-4,-14],[-2,-6],[-1,-3],[0,-13],[1,-17],[0,-8],[0,-7],[0,-9],[4,-14],[5,-22],[0,-2],[5,-17],[4,-37],[18,-47],[9,-17],[14,-27],[3,-9],[4,-11],[0,-1],[2,-18],[2,-17],[0,-1],[-1,-18],[0,-1],[0,-2],[-2,-6],[-20,-56],[-3,-9],[-3,-9],[-1,-2],[0,-4],[-13,-74],[-6,-29],[0,-54],[6,-24],[25,-49],[9,-24],[0,-18],[-17,-115],[-3,-39],[0,-1],[1,-18],[0,-4],[2,-8],[4,-14],[5,-17],[0,-2],[1,-3],[11,-12],[6,-8],[13,-14],[0,-1],[19,-14],[7,-6],[2,-1],[26,-12],[20,-15],[5,-5],[9,-8],[5,-6],[9,-11],[18,-18],[15,-8],[28,-5],[48,3],[20,-3],[30,-4],[40,-4],[34,-2],[25,-2],[40,1],[13,0],[15,-1],[0,1],[24,-1],[1,-1],[23,-4],[5,-1],[6,-1],[5,-2],[27,-11],[92,-39],[16,-4],[72,-19],[52,-14],[17,0],[11,0],[9,0],[2,0],[3,0],[2,0],[17,0],[6,0],[16,0],[61,3],[80,17],[13,2],[19,5],[10,2],[15,4],[29,15],[55,27],[8,4],[54,23],[29,4],[2,1],[13,5],[9,5],[4,1],[16,2],[9,1],[23,3],[7,0],[39,4],[32,0],[10,-1],[23,-3],[15,-7],[18,-10],[8,-5],[8,-6],[30,-24],[17,-13],[18,-14],[25,-31],[27,-25],[20,-24],[27,-23],[17,-9],[15,-5],[1,0],[12,-8],[13,-9],[6,-3],[20,-13],[2,-2],[20,-6],[1,-1],[15,-5],[4,-2],[20,-13],[15,-14],[16,-15],[18,-13],[15,-12],[14,-10],[5,-4],[17,-16],[17,-17],[16,-15],[19,-16],[16,-11],[15,-6],[18,-8],[6,-5],[9,-7],[10,-9],[9,-7],[16,-18],[9,-21],[8,-20],[0,-1],[1,-6],[0,-13],[0,-1],[0,-1],[1,-11],[-4,-10],[-2,-6],[0,-1],[-7,-10],[-10,-15],[0,-14],[0,-10],[1,-4],[3,-15],[-1,-7],[-1,-2],[-2,-16],[-2,-10],[0,-4],[-7,-21],[-7,-23],[0,-2],[-5,-18],[0,-10],[0,-21],[1,-22],[0,-3],[0,-6],[0,-11],[0,-5],[1,-10],[1,-9],[1,-14],[0,-4],[0,-2],[1,-6],[3,-11],[1,-10],[3,-18],[6,-28],[1,-2],[13,-19],[12,-13],[4,-4],[16,-12],[6,-5],[28,-24],[8,-6],[52,-48],[10,-8],[28,-23],[12,-26],[15,-25],[1,-2],[1,-2],[12,-16],[2,-3],[7,-8],[4,-5],[9,-7],[7,-6],[5,-9],[6,-11],[3,-5],[5,-7],[2,-3],[4,-6],[9,-12],[11,-17],[5,-6],[1,-2],[4,-5],[8,-11],[2,-4],[3,-5],[1,-1],[15,-25],[9,-16],[5,-8],[3,-5],[5,-12],[8,-16],[13,-29],[5,-9],[4,-8],[5,-9],[3,-6],[10,-19],[3,-7],[3,-3],[7,-11],[4,-6],[4,-10],[0,-1],[9,-23],[1,-1],[2,-10],[7,-22],[3,-12],[1,-2],[5,-8],[0,-1],[5,-9],[3,-4],[0,-1],[2,-3],[26,-27],[1,0],[12,-12],[14,-14],[3,-2],[5,-5],[6,-6],[1,0],[4,-3],[10,-6],[12,-5],[11,-11],[1,-1],[1,-1],[1,-3],[9,-22],[7,-23],[2,-26],[11,-19],[1,-2],[5,-4],[11,-8],[2,-1],[9,-5],[7,-5],[11,-4],[8,-2],[0,-1],[3,-1],[17,-6],[16,-5],[29,-15],[31,-14],[26,-7],[8,-3],[19,-6],[3,-1],[14,-5],[5,-1],[10,-3],[0,-1],[12,-5],[18,-11],[14,-5],[17,-6],[16,-7],[8,-4],[11,-6],[14,-11],[11,-14],[4,-14],[0,-1],[3,-11],[2,-6],[7,-14],[1,-1],[7,-16],[6,-27],[4,-11],[5,-14],[2,-5],[5,-11],[10,-26],[7,-15],[1,-4],[5,-9],[1,-3],[4,-14],[3,-12],[1,-7],[1,-12],[0,-6],[0,-2],[-1,-18],[0,-4],[-2,-19],[-9,-39],[-11,-40],[-4,-19],[-1,-5],[-1,-9],[0,-4],[-1,-9],[-1,-2],[0,-16],[-1,-8],[3,-10],[0,-2],[2,-6],[0,-1],[0,-6],[0,-10],[0,-2],[0,-2],[-2,-13],[-2,-5],[-3,-10],[-1,-4],[-3,-9],[0,-1],[-2,-6],[0,-1],[-1,-5],[0,-1],[0,-3],[-2,-7],[0,-4],[-1,-2],[-1,-18],[-1,-22],[-2,-18],[2,-15],[1,-3],[2,-7],[4,-16],[0,-1],[1,-5],[12,-13],[1,-2],[4,-4],[2,-2],[1,-2],[5,-4],[3,-4],[5,-10],[1,-1],[2,-2],[-2,-20],[-11,-15],[-4,-6],[-6,-6],[1,-18],[1,-2],[1,-28],[1,-13],[-1,-8],[-1,-8],[-1,-2],[-7,-15],[-1,-1],[-4,-9],[-10,-17],[-1,-1],[0,-1],[-3,-13],[-1,-5],[-1,-1],[1,-4],[0,-4],[0,-4],[0,-1],[3,-28],[0,-25],[-13,-11],[-16,-4],[-13,-3],[-1,-1],[-22,-10],[-34,-14],[-5,-3],[-12,-7],[-5,-3],[-7,-5],[-15,-6],[-1,-1],[-8,-7],[-23,-19],[-13,-10],[-9,-9],[-3,-3],[-17,-19],[-19,-17],[-8,-8],[-4,-4],[-3,-5],[-11,-16],[-10,-18],[-2,-4],[-8,-15],[-2,-3],[-6,-9],[-1,-3],[-5,-10],[-4,-7],[-6,-8],[-6,-7],[-1,-1],[-3,-5],[-8,-11],[-1,-1],[-1,-1],[-4,-7],[0,-1],[-5,-8],[-5,-6],[-4,-7],[-8,-18],[-4,-16],[-7,-16],[-4,-17],[3,-16],[3,-20],[-9,-19],[-2,-2],[-11,-9],[-2,-2],[-16,-10],[-16,-11],[-2,-1],[-28,-17],[-46,-25],[-26,-28],[-13,-14],[-6,-5],[-13,-9],[-10,-7],[-5,-3],[-24,-14],[-6,-3],[-25,-24],[-23,-24],[-9,-9],[-23,-29],[-13,-36],[-2,-25],[-2,-14],[1,-4],[5,-26],[3,-18],[1,-2],[12,-40],[5,-16],[9,-28],[15,-45],[4,-11],[3,-8],[3,-19],[3,-19],[2,-16],[-1,-11],[0,-2],[0,-1],[0,-26],[0,-6],[0,-2],[-1,-2],[-10,-39],[-2,-5],[-14,-23],[-12,-21],[-18,-44],[-4,-7],[-14,-27],[-14,-17],[-3,-4],[-15,-21],[-19,-27],[-7,-8],[-5,-7],[-2,-1],[0,-1],[-4,-4],[-1,-1],[-27,-23],[-32,-23],[-19,-21],[-11,-12],[-12,-13],[-14,-15],[-15,-16],[-15,-13],[-6,-5],[-6,-5],[-25,-19],[-9,-7],[-2,-2],[-20,-17],[-7,-5],[-3,-3],[-3,-3],[-1,-1],[-1,-2],[-19,-26],[-4,-7],[-25,-34],[-13,-16],[-37,-45],[-21,-19],[-15,-5],[-22,-9],[-25,-19],[-5,-3],[-20,-20],[-5,-5],[-13,-9],[-5,-5]],[[57941,30527],[-14,0],[-14,0],[-19,1],[-15,0],[-13,-1],[-220,4],[-2,0],[-68,0],[-112,0],[-8,0],[-5,-1],[-4,-1],[-8,-4],[-5,-2],[-20,0],[-39,-1],[-23,0],[-14,-1],[-7,0],[-6,1],[-11,6],[-5,2],[-5,1],[-8,0],[-91,0],[-162,-5],[-8,6],[-51,0],[-32,0],[-41,0],[-20,0],[-113,1],[-133,-2],[-115,-3],[-70,-2],[-50,2],[-33,1],[-136,2],[-32,1],[-92,-1],[-97,-1],[-20,0],[-60,0],[-14,0],[-75,1],[-57,0],[-195,0],[-103,2],[-18,0],[-26,1],[-14,0],[-43,1],[-59,0],[-43,1],[-81,1],[-47,1],[-62,0],[-37,0],[-30,0],[-28,0],[-9,0],[-9,0],[-32,0],[-33,1],[-53,0],[-5,0],[-20,1],[-11,0],[-6,0],[-6,0],[-79,0],[-66,0],[-18,1],[-32,0],[-5,0],[-16,0],[-44,0],[-107,1],[-14,-1],[-28,0]],[[54415,30541],[-3,23],[-3,24],[0,61],[-1,36],[5,100],[0,42],[-1,152],[0,55],[-2,126],[0,20],[0,18],[0,62],[0,48],[0,2],[1,46],[4,132],[5,202],[4,178],[-1,47],[-2,85],[0,45],[-2,43],[-1,51],[0,1],[-1,61],[-1,45],[-1,23],[-1,27],[0,20],[-1,31],[-1,37],[-2,112]],[[14470,32497],[-1,-75],[-1,-104],[-1,-34],[-1,-23],[-14,-94],[0,-127],[0,-10],[0,-92],[1,-70],[1,-86],[-2,-84],[1,-33],[0,-23],[-1,-19],[0,-15],[1,-14],[0,-56],[2,-63],[-1,-122],[0,-21],[0,-65],[1,-65],[2,-98],[0,-26],[1,-32],[1,-59],[0,-1],[4,-74],[0,-34],[1,-79],[0,-52],[1,-143],[1,-49],[-3,-76],[-2,-168],[-1,-247],[-1,-125],[-1,-129],[-1,-66],[-2,-159],[0,-12],[15,-1],[170,-1],[0,-54],[-1,-204],[-1,-54],[2,-19],[0,-1],[0,-24],[-1,-27],[0,-25],[1,-98],[0,-59],[1,-188],[0,-129],[0,-37],[0,-39],[0,-1],[1,-113]],[[14642,28499],[-62,12],[-17,9],[-30,28],[-69,45],[-116,3],[-29,6],[-22,12],[-22,18],[-45,21],[-32,7],[-32,29],[-7,12],[-3,46],[-37,34],[-1,0],[-24,9],[-25,0],[-95,0],[-13,4],[-27,26],[-7,2],[-37,30],[-182,-1],[-28,16],[-22,21],[-77,-12],[-13,0],[-5,0],[-1,0],[-13,5],[-36,29],[-1,1],[-31,25],[-5,4],[-2,1],[-15,12],[-1,1],[-6,0],[-3,0],[-6,0],[-14,0],[-5,0],[-3,2],[-3,1],[-48,38],[-1,0],[-1,2],[0,-1],[-13,-8],[-2,-1],[-4,1],[-7,2],[-7,2],[-10,10],[-2,2],[-16,13],[0,11],[1,7],[-27,17],[-1,2],[-10,16],[-1,3],[-5,22],[0,3],[-5,12],[-2,3],[-2,4],[-1,3],[-11,12],[-18,14],[-22,20],[-12,10],[-4,8],[-10,17],[-1,1],[-20,21],[-3,2],[-13,6],[-27,9],[-25,9],[-1,0],[-13,-10],[-1,0],[-11,-11],[-14,-7],[-14,-5],[-14,-7],[-15,-5],[-18,0],[-13,2],[-17,7],[-8,4],[-8,4],[-27,15],[-19,2],[-4,-8],[-6,-3],[-13,-2],[-53,-11],[-44,6],[-13,2],[-5,0],[-9,-4],[-16,-10],[-10,0],[-2,2],[-4,5],[3,5],[8,8],[2,3],[-1,3],[-20,14],[-14,11],[-48,35],[-7,2],[-6,-1],[-32,-3],[-7,-3],[-7,-4],[-3,-4],[0,-6],[-21,-4],[-14,-3],[-18,-4],[-8,1],[-57,13],[-33,8],[-2,0],[-21,13],[6,20],[-34,72],[-1,3],[-24,47],[-13,25],[-37,53],[-32,4],[-7,4],[-6,7],[-4,5],[-3,17],[1,11],[9,32],[3,4],[4,5],[10,8],[7,3],[25,35],[6,9],[3,9],[2,8],[0,8],[-2,5],[-4,2],[-50,22],[-25,11],[-11,-3],[-23,-6],[-2,-1],[-32,-9],[-2,9],[-37,7],[-7,-1],[-9,-10],[-47,16],[-4,3],[0,1],[-11,7],[-40,6],[-6,-3],[-1,-2],[-1,-5],[-1,-5],[-1,-19],[-2,-7],[-4,-5],[-1,0],[0,-1],[-4,-2],[-9,0],[-1,0],[-6,2],[-19,7],[-11,5],[-13,13],[-53,49],[-35,-30],[-95,6],[-8,3],[-58,47],[-40,33],[-9,6],[-20,10],[-9,0],[-20,-2],[-7,-1],[-17,1],[-14,2],[-18,5],[-15,5],[-4,1],[-2,0],[-27,-6],[-2,0],[-9,-2],[-10,-1],[-13,-2],[-39,18],[-20,19],[-20,11],[-96,-7],[-14,-14],[-8,-7],[-11,-3],[-3,9],[-10,-1],[-16,32],[-3,5],[-25,7],[-21,6],[-57,-6],[-32,-13],[-2,-1],[-47,-18],[-32,4],[-1,0],[-55,-6],[-15,-1],[-49,-5],[-5,-1],[-10,-1],[-18,-3],[-9,-1],[-29,-4],[-45,-7],[-1,0],[-21,10],[-17,8],[-18,8],[-9,4],[-96,95],[-14,15],[-3,8],[-13,34],[-3,0],[-15,1],[-55,6],[-29,2],[-23,2],[-22,20],[-78,-2],[-54,-1],[-88,-1],[-66,-4]],[[10137,30066],[-4,387],[-1,40],[0,73],[-1,48],[-6,12],[-54,112],[-44,84],[-4,3],[-41,38],[-37,53],[-31,124],[-3,6],[-2,7],[-1,3],[-1,1],[-53,113],[-14,16],[-15,34],[-4,126],[-11,38],[-14,42],[-20,58],[-27,27],[-23,37],[-112,103],[-91,84],[-45,25],[-54,6],[-30,14],[-15,0],[-43,39],[-46,43],[-15,7],[-22,6],[-55,30],[-72,29],[-64,9],[-27,14],[-54,13],[-25,2],[-3,0],[-47,16],[-49,30],[-5,-3],[-60,23],[-47,16],[-29,13],[-50,9],[-62,53],[-42,9],[-12,6],[-87,62],[-23,18],[-10,7],[-49,32],[-37,25],[-58,29],[-96,48],[-5,-2],[-67,29],[-45,25],[-72,20],[-14,5],[-102,-1],[-37,11],[-15,5],[-59,-1],[-17,0],[-15,-7],[-54,0],[-43,7],[-24,6],[-72,0],[-59,-12],[-94,-1],[-15,3],[-55,24],[-76,-2],[-8,4],[-64,7],[-5,4],[-5,-2],[-4,3],[-11,8],[-2,2],[-125,117],[-20,22],[-90,114],[-17,25],[-43,69],[-1,3],[-16,40],[-98,146],[-112,151],[-53,66],[-32,30],[-15,25],[-15,29],[-21,42],[-28,94],[1,9],[2,18],[-11,41],[-19,27],[-13,17],[-27,27],[-6,70],[-3,40],[-17,39],[-8,27],[-18,60],[-23,43],[-25,62],[-5,18],[-13,21],[-78,169],[-2,5],[-46,91],[3,7],[-20,52],[-8,16],[-60,57],[-42,57],[-15,34],[-3,7],[-11,11],[-4,3],[-77,66],[-8,14],[-5,23],[-12,21],[-13,27],[-46,73],[-66,92],[-46,47],[-3,2],[0,47],[0,13],[-5,18],[-8,7],[-4,1],[-17,-2],[-5,1],[-10,4],[-9,7],[-3,7],[-4,15],[-5,7],[-6,7],[-75,58],[-6,2],[-32,58],[0,1],[-26,33],[-54,69],[13,10],[2,2],[0,3],[-19,26],[-16,19],[-8,9],[-4,3],[-12,2],[-22,6],[-46,58],[-3,5],[-129,94]],[[48084,32545],[0,-20],[1,-45],[0,-38],[0,-30],[1,-21],[-1,-23],[0,-21],[0,-24],[1,-18],[0,-67],[1,-60],[0,-20],[0,-18],[-2,-20],[0,-70],[0,-40],[0,-19],[0,-39],[0,-30],[0,-3],[-1,-46],[0,-60],[0,-44],[0,-49],[0,-32],[0,-24],[-1,-36],[0,-63],[0,-43],[0,-31],[0,-23],[0,-20],[-1,-36],[0,-31],[0,-63],[-2,-59],[-1,-66],[-1,-39],[-1,-19],[-3,-59],[2,-123],[-1,-124],[-1,-123],[-1,-48],[0,-54],[-1,-19],[0,-2],[0,-18],[0,-20],[-1,-6],[0,-16],[-1,-21],[-1,-41],[-1,-28],[-1,-33],[-1,-20],[0,-21],[-1,-12],[0,-19],[-2,-64],[-1,-41],[-1,-30],[0,-12],[-2,-85],[-1,-52],[-1,-46],[-1,-27],[-2,-35],[0,-23],[1,-20],[-1,-35],[0,-3],[-1,-43],[0,-27],[0,-12],[-1,-21],[-1,-59],[0,-5],[6,-17]],[[48057,29671],[-12,5],[-1,0],[-2,1],[-12,3],[-17,3],[-9,0],[-19,1],[-19,0],[-31,3]],[[47935,29687],[-21,14],[0,1],[-1,1],[-18,41],[-18,17],[-33,31],[-28,27],[-33,4],[-18,2],[-13,2],[-46,15],[-39,26],[-34,33],[-26,40],[-77,98],[-4,83],[0,3],[-1,1],[-5,44],[0,2],[-1,2],[-2,12],[0,1],[-9,88],[-6,58],[-34,68],[-8,15],[-21,35],[-7,12],[-1,1],[-2,2],[-1,3],[-8,14],[-1,3],[-1,3],[-1,2],[-1,3],[0,1],[-6,24],[0,2],[-1,3],[0,1],[-3,20],[-4,19],[-3,4],[-7,10],[-4,4],[-27,21],[-17,9],[-43,-4],[-14,-31],[0,-2],[-3,-10],[1,-14],[0,-2],[-1,-3],[-9,-28],[-3,-10],[-47,-38],[-45,-12],[-16,0],[-20,0],[-11,1],[-106,7],[-30,0],[-46,-1],[-4,-2],[-4,-2],[-39,-2],[-23,3],[-44,4],[-71,6],[-22,5],[-54,24],[-29,8],[-4,0],[-31,0],[-9,10],[-13,5],[-12,0],[-10,-7],[-52,-1],[-12,3],[-12,9],[-5,0],[-15,1],[-53,-3],[-33,5],[-50,1],[-6,-1],[-24,-5],[-2,0],[-101,-8],[-10,-1],[-121,-4],[-64,-1],[-13,5],[-37,17],[-4,2],[-7,5],[-35,30],[-18,15],[-6,7],[-18,22],[0,1],[-1,0],[-13,39],[-17,17],[-8,3],[-4,2],[-25,0],[-20,-9],[-20,-18],[-31,-40],[-22,-20],[-23,-4],[-52,-8],[-27,-9],[-17,-7],[-16,-6],[-7,0],[-17,1],[-15,2],[-3,0],[0,1],[-7,4],[-17,1],[-61,3],[-55,3],[-26,18],[-3,2],[-47,3],[-3,0],[-76,2],[-10,-1],[-59,-3],[-12,0],[-18,-1],[-22,-6],[-3,-1],[-54,-16],[-63,-33],[-30,-20],[-25,-9],[-1,0],[-51,1],[-19,5],[-44,22],[-74,15],[-24,10],[-51,33],[-75,57],[-124,78],[-41,17],[-1,0],[-51,17],[-37,5],[-42,13],[-19,12],[-48,42],[-22,21],[-10,3],[-24,19],[-26,30],[-7,28],[-17,30],[-70,61],[-31,21],[-58,59],[-18,62],[-22,21],[-15,7],[-38,1],[-4,0],[-4,2],[-20,8],[-37,7],[-57,4],[-5,-2],[-17,-4],[-20,0],[-3,1],[-38,18],[-47,10],[-86,9],[-11,-3],[-4,-1],[-20,0],[-12,6],[-37,16],[-12,7],[-38,42],[-20,16],[-37,21],[-7,3],[-21,17],[-14,15],[-2,2],[-33,37],[-23,34],[-11,23],[-23,49],[-16,35],[0,35],[-1,36],[-6,13],[-4,5],[-6,12],[-34,28],[-34,19],[-113,53],[-12,5],[-39,26],[-1,2],[-12,11],[-13,13],[-3,5],[-14,23],[-5,9],[-11,48],[1,18],[0,17],[-7,11],[-19,30],[-5,8],[-7,7],[-34,14],[-18,7],[-62,18],[-50,14],[-25,-1],[-16,-13],[-7,-5],[-17,-9],[-47,-6],[-17,1],[-37,1],[-3,1],[-30,15],[-8,0],[-21,0],[-10,-4],[-20,-18],[-29,-57],[-45,-40],[-13,-4],[-7,0],[-27,0],[-3,0],[-1,1],[-15,8],[-1,1],[-4,4],[-131,129],[-3,1],[-4,1],[-3,1],[-22,19],[-24,21],[-61,31],[-27,26],[-2,2],[-14,25],[-16,32],[-8,15],[-2,3],[-3,8],[-9,10],[-27,29],[-2,3],[-11,4],[-11,3],[-72,9],[-18,7],[-56,-3],[-15,0],[-2,-2],[-20,-16],[-8,-12],[-12,-10],[-10,-15],[-3,-20],[-1,-55],[-6,-25],[-13,-7],[-24,-8],[-24,7],[-13,23],[-6,20],[-2,17],[3,34],[13,21],[16,13],[12,10],[11,13],[15,14],[5,6],[1,30],[-2,7],[-15,14],[-2,2],[-1,0],[-3,0],[-23,3],[-25,-3],[-5,-1],[-3,-2],[-42,-20],[-10,0],[-77,4],[-6,1],[-6,1],[-2,1],[-32,16],[-31,34],[-15,17],[-26,59],[-4,11],[-11,10],[-21,20],[-2,2],[-13,8],[-15,7],[-15,6],[-23,11],[-18,9],[-29,38],[-45,56],[-17,27]],[[47935,29687],[-6,-15],[-4,-18],[4,-17],[3,-3],[4,-11],[17,-14],[32,-1],[17,-5],[12,-11],[5,-5],[7,-12],[0,-9],[-3,-11],[-7,-7],[-16,-1],[-29,0],[-17,-11],[-14,-32],[-2,-31],[-1,-22],[-16,-15],[-4,-3],[-16,-8],[-20,-18],[-5,-9],[-3,-21],[11,-23],[3,-7],[-1,-30],[-33,-38],[-8,-4],[-12,0],[-6,0],[-4,0],[-3,3],[-19,16],[-7,12],[-9,27],[-7,30],[0,2],[-2,5],[1,7],[1,37],[-10,9],[-91,21],[-12,0],[-10,-9],[-17,-30],[-6,-11],[-8,-18],[-28,-31],[-18,-2],[-38,5],[-16,2],[-9,1],[-82,0],[-7,-9],[-4,-37],[-1,-2],[-12,-18],[-12,-11],[-33,-15],[-10,-9],[-5,-5],[-4,-4],[-22,-25],[-30,-5],[-22,-3],[-32,1],[-14,-4],[-28,-16],[-20,-8],[-15,-5],[-29,-15],[-8,-4],[-13,-7],[-32,-29],[-36,-33],[-28,-25],[-8,-11],[-42,-32],[-4,1],[-3,0],[-25,2],[-5,0],[-13,1],[-2,2],[-10,7],[-3,44],[-17,23],[-1,1],[-3,0],[-60,-9],[-5,-1],[0,-4],[-1,-17],[-33,-36],[-7,0],[-7,7],[0,4],[3,33],[-6,6],[-24,-4],[-30,-26],[-10,-4],[-20,-1],[-17,-1],[-27,9],[-2,1],[-4,0],[-17,-1],[-14,0],[-12,-16],[-1,-21],[38,-34],[3,-3],[-1,-19],[-4,-4],[-18,-16],[-19,-6],[-1,0],[-1,0],[-51,3],[-7,0],[-7,9],[-17,19],[0,2],[-6,35],[-10,30],[-2,4],[0,1],[0,1],[-4,4],[-78,-9],[-12,-12],[-6,-8],[-43,-58],[-10,-15],[1,-2],[8,-28],[-35,-34],[-13,-7],[-49,-1],[-17,-4],[-20,-6],[-10,-9],[-13,-21],[-13,-36],[-1,-34],[0,-3],[2,-7],[9,-23],[7,-18],[69,-107],[55,-54],[17,-5],[27,-15],[41,-40],[26,-25],[7,-16],[-1,-23],[-6,-46],[10,-51],[-2,-13],[-13,-21],[-22,-20],[-25,-11],[-21,-19],[-10,-10],[-25,-42],[0,-1],[-51,-33],[-62,-22],[-62,-37],[-32,1],[-4,2],[-18,10],[-34,3],[-25,-7],[-29,-22],[-11,-9],[-60,-26],[-20,1],[-13,6],[-4,3],[-3,0],[-19,-2],[-28,-22],[-18,-35],[-10,-22],[-39,-52],[-15,-13],[-10,-2],[-35,-20],[-34,-32],[-14,-13],[-16,-18],[-24,-27],[-8,-34],[-83,-147],[-38,-29],[-2,-2],[-18,-18],[-28,-38],[-10,-21],[-24,-28],[-2,-2],[-40,-48],[-37,-78],[-1,-12],[-7,-6],[-13,-31],[-14,-79],[0,-1],[-4,-44],[-5,-16],[-13,-11],[-7,-58],[-2,-22],[-1,-46],[-6,-20],[-15,-14],[-14,-4],[-11,-3],[-2,-3],[-4,-6],[-18,-26],[-11,-16],[-7,-9],[-6,-9],[-12,-17],[-16,-24],[-10,-15],[-1,-1],[-15,-10],[-17,-2],[-5,0],[-46,-2],[-10,-2],[-28,-15],[-21,-1],[-31,11],[-7,3],[-4,0],[-23,3],[-14,7],[-2,2],[-4,3],[-9,9],[1,6],[0,10],[-10,9],[-3,0],[-26,-1],[-5,-3],[-2,-1],[-2,-1],[-5,-5],[-1,0],[-3,-3],[-2,-3],[0,-9],[9,-23],[2,-6],[3,-3],[6,-7],[6,-5],[2,-2],[4,-5],[1,-5],[-9,-29],[-1,-4],[-27,-36],[-27,-34],[-6,-10],[-1,-7],[4,-6],[5,-3],[19,-3],[13,-16],[-11,-23],[-17,-13],[-13,3],[-16,-9],[-5,-17],[2,-21],[0,-10],[0,-23],[6,-16],[-1,-25],[-12,8],[-1,-48],[-2,-69],[-1,-38],[0,-18],[1,-48],[0,-33],[0,-20],[1,-19],[-1,-55],[0,-32],[0,-43],[0,-38],[1,-29],[0,-20],[0,-22],[0,-40],[-1,-95],[0,-75],[0,-165],[5,-118],[3,-127],[2,0],[-2,-138],[-2,-34],[0,-36],[0,-20],[0,-19]],[[44778,25122],[-91,0],[-75,0],[-22,0],[-204,2],[-139,2],[-192,1],[-14,0],[-12,0],[-6,0],[-176,0],[-130,4],[-137,0],[-52,-9],[-80,0],[-73,0],[-167,4],[-7,0],[-129,0],[-411,1],[-142,0],[-122,0],[-209,0],[-56,0],[-81,0],[-48,2],[-239,2],[-91,2],[-64,2]],[[41609,25135],[-266,0],[-265,0],[-128,0],[-131,1],[-50,0],[-149,1],[-64,0],[-262,2],[-106,0],[-36,-1],[-29,0],[-87,1],[-64,1],[-107,-1],[-150,-1],[-80,-2],[-43,0],[-19,0],[-2,0],[-16,0],[-45,2],[-64,1],[-102,0],[-56,1],[-40,0],[-214,3],[-64,0],[-31,0],[-39,1],[-43,1],[-90,1],[-41,0],[-66,1],[-67,2],[-53,-1],[-73,0]],[[38467,25148],[0,70],[0,37],[-1,78],[3,61],[-2,102],[0,36],[-1,75],[0,161],[1,23],[0,92],[-1,64],[2,75],[-1,62],[-1,21],[1,36],[0,23],[0,18],[0,1],[0,92],[-1,167],[0,90],[0,80],[0,10],[0,18],[0,84],[0,84],[0,23],[0,29],[0,14],[0,7],[0,30],[0,26],[1,112],[0,61],[2,244],[0,130],[0,136],[0,75],[0,36],[0,31],[0,70],[0,78],[1,120],[0,63],[0,121],[0,31],[0,90],[0,2],[-1,246],[0,307],[1,51],[-1,53],[-3,85],[1,22],[-2,34],[-1,22],[-5,269],[0,1],[-1,48],[-1,89],[-18,0],[-28,0],[0,5],[0,8],[-1,17],[-2,35],[-4,109],[1,104],[-6,228],[2,89],[0,5],[1,18],[1,52],[1,88]],[[54415,30541],[0,-25],[-2,-60],[0,-92],[0,-58],[0,-174],[0,-75],[-1,-20],[0,-111],[0,-48],[0,-5],[0,-113],[0,-2],[0,-316],[-1,-123],[0,-103],[-1,-140],[-4,-243],[0,-34],[0,-12],[0,-74],[-1,-92],[0,-27],[-3,-309],[0,-45],[-1,-40],[0,-99],[-2,-111],[2,-89],[0,-101],[0,-23],[0,-126],[-1,-13],[-2,-25],[-1,-11]],[[54397,27602],[-12,0],[-21,0],[-30,0],[-56,0],[-41,0],[-27,0],[-16,0],[-50,0],[-76,1],[-24,0],[-16,0],[-7,0],[-14,1],[-78,1],[-113,-1],[-85,1],[-48,0],[-146,0],[-52,0],[-75,0],[-129,1],[-41,0],[-90,0],[-66,0],[-38,0],[-28,0],[-23,0],[-14,0],[-29,0],[-25,0],[-41,1],[-18,0],[-18,0],[-16,0],[-21,0],[-16,0],[-51,1],[-19,0],[-43,0],[-27,0],[-27,0],[-83,0],[-22,1],[-35,0],[-16,0],[-26,0],[-29,0],[-66,0],[-66,0],[-40,1],[-14,0],[-5,0],[-26,0],[-63,0],[-43,0],[-19,1],[-85,0],[-27,0],[-25,0],[-13,0],[-1,0],[-15,-1],[-13,2],[-14,0],[-26,0],[-36,0],[-15,0],[-24,0],[-28,0],[-30,1],[0,-1],[-1,-100],[0,-39],[0,-1],[0,-17],[0,-68],[0,-20],[0,-50],[0,-52],[0,-32],[0,-35],[1,-23],[0,-31],[0,-1],[0,-65],[0,-5],[0,-19],[0,-25],[0,-20],[1,-23],[0,-29],[0,-23],[1,-38],[0,-29],[1,-49],[0,-17],[1,-28],[0,-38],[1,-24],[0,-35],[1,-75],[0,-3],[1,-21],[0,-30],[0,-21],[1,-18],[0,-23],[0,-19],[0,-20],[0,-27],[1,-21],[0,-20],[0,-33],[0,-35],[0,-27],[1,-70],[0,-20],[0,-19],[0,-23],[0,-20],[0,-7],[0,-5],[0,-3],[0,-8],[0,-5]],[[51735,26103],[-18,-2],[-13,-2],[-18,2],[-17,0],[-34,-2],[-33,0],[-15,0],[-17,0],[-22,0],[-23,0],[-19,0],[-9,2],[-9,0],[-14,-1],[-3,-1],[-16,0],[-20,1],[-14,1],[-29,-2],[-27,0],[-71,0],[-20,2],[-6,-2],[-11,0],[-17,0],[-15,2],[-18,-2],[-49,0],[-3,1],[-5,1],[-3,0],[-4,-2],[-42,0],[-23,0],[-41,-1],[-16,0],[1,6],[20,105],[5,69],[1,25],[-2,27],[-9,42],[-25,69],[-6,8],[-1,5],[-5,27],[-2,13],[12,49],[0,3],[1,2],[0,3],[0,2],[3,71],[0,3],[0,2],[7,18],[7,23],[10,37],[23,61],[3,55],[6,61],[5,5],[2,36],[-4,42],[-17,23],[-1,39],[-1,19],[-1,6],[2,5],[7,23],[15,112],[1,34],[-2,18],[-2,14],[-13,35],[-22,21],[-9,3],[-51,38],[-29,28],[-20,20],[-23,107],[-19,19],[-17,10],[-19,18],[-4,10],[-7,37],[1,32],[-12,16],[-18,24],[-11,18],[-21,41],[10,14],[3,4],[-13,17],[-2,14],[-30,81],[-13,30],[-10,10],[-17,7],[-25,1],[-22,7],[-19,17],[-1,1],[-12,10],[-3,3],[-8,7],[-24,7],[-39,6],[-3,0],[-2,1],[-37,17],[-9,4],[-2,1],[-51,58],[-55,47],[-18,9],[-57,27],[-87,55],[-19,16],[-8,6],[-28,39],[-28,63],[-37,65],[-36,54],[-26,26],[-39,23],[-102,24],[-11,1],[-16,2],[-20,9],[-62,27],[-6,3],[-10,10],[-74,74],[-19,8],[-16,7],[-23,10],[-26,26],[-4,7],[-8,16],[-49,46],[-1,1],[-56,22],[-49,25],[-44,23],[-8,6],[-74,49],[-29,31],[-48,97],[-17,45],[-14,22],[-21,38],[-46,45],[-50,33],[-22,9],[-42,1],[-42,-12],[-28,-13],[-33,1],[-16,0],[-84,50],[-13,7],[-61,2],[-3,0],[-2,1],[-46,35],[-50,51],[-32,15],[-59,1],[-25,-4],[-33,-11],[-9,-4],[-30,-1],[-14,1],[-23,2],[-29,8],[-34,23],[-50,47],[-34,36],[-2,11],[-39,35],[-10,49],[-10,18],[-31,45],[-16,16],[-19,8],[-40,17],[-18,4],[-26,17],[-28,15]],[[31923,31038],[1,-39],[0,-27],[-1,-55],[0,-18],[-1,-58],[0,-58],[1,-113],[-1,-51],[-1,-69],[1,-138],[0,-20],[-1,-90],[0,-63],[0,-36],[-1,-28],[1,-67],[0,-54],[0,-62],[0,-186],[1,-62],[0,-46],[0,-18],[0,-17],[2,-103],[54,1],[19,-1],[0,-41],[0,-64],[1,-95],[-1,-31],[0,-138],[0,-116],[1,-76],[0,-37],[1,-62],[1,-60],[0,-83],[1,-160],[1,-253],[1,-114],[0,-68],[0,-58],[2,-204],[-1,-9],[-1,-42],[-1,-8],[0,-49],[0,-59],[1,-122],[1,-248],[-1,-245],[-1,-248],[1,-41],[1,-205],[0,-53],[0,-19],[0,-52],[0,-94],[0,-31],[-2,-77],[0,-91],[-1,-42],[0,-34],[-1,-27],[-1,-53],[1,-55],[-1,-48],[0,-81],[0,-130],[-1,-101],[-1,-69],[-1,-71],[2,-34],[0,-69],[-1,-247],[-1,-173],[-1,-75],[0,-103],[-1,-93],[0,-171],[-2,-126],[-1,-149],[1,-32],[0,-20],[0,-47],[-1,-125],[0,-122],[-1,-247]],[[31990,23663],[-194,1],[-17,-1],[-23,0],[-33,0],[-78,0],[-60,1],[-51,0],[-66,0],[-61,0],[-136,0],[-68,0],[-208,1],[-53,0],[-67,-1],[-48,2],[-150,0],[-73,-1],[-36,0],[-88,0],[-64,0],[-41,0],[-85,4],[-36,-1],[-15,0],[-70,1],[-176,-5],[-291,-3],[-98,-1],[-186,-2],[-62,0],[-175,-1],[-15,0],[-13,2],[-42,1],[-18,0],[-43,-1],[-88,-1],[-24,0],[-13,0],[-56,1],[-38,-1],[-128,-1],[-40,0],[-32,-1],[-2,0],[-61,0],[-117,-1],[-57,-1],[-79,0],[-28,0],[-50,0],[-103,-1],[-59,1],[-30,0],[-166,-1],[-97,1],[-132,0],[-36,-1],[-41,1],[-54,0],[-106,1],[-64,0],[-92,-1],[-84,-1],[-90,-1],[-90,1],[-69,-1],[-102,-1],[-95,0],[-136,-1],[-29,0],[-24,0],[-42,0],[-40,1],[-118,-1],[-35,-1],[-106,2],[-21,0],[-98,0],[-15,0],[-29,0],[-35,0],[-23,0],[-4,0],[-36,0],[-132,0],[-23,1],[-113,-2]],[[25668,23650],[-1,24],[0,90],[0,32],[0,77],[0,23],[0,42],[0,38],[0,25],[0,25],[0,29],[0,32],[0,55],[-1,100],[0,20],[0,53],[-1,63],[0,10],[0,47],[0,22],[1,37],[0,34],[0,39],[0,29],[1,37],[0,35],[1,73],[0,58],[1,73],[0,28],[1,96],[-1,31],[0,27],[1,74],[0,34],[1,61],[2,151],[0,47],[0,36],[0,21],[1,18],[0,24],[1,61],[0,40],[1,73],[0,1],[0,26],[1,16],[0,6],[2,53],[1,24],[0,6],[0,31],[0,15],[1,18],[2,198],[1,27],[2,188],[0,59],[1,71],[0,25],[0,26],[1,33],[0,31],[0,60],[0,68],[0,39],[0,62],[0,47],[0,30],[0,122],[0,22],[0,27],[0,62],[0,24],[0,53],[0,27],[0,35],[1,50],[0,2],[0,67],[0,3],[0,28],[0,75],[0,44],[0,37],[1,62],[0,34],[0,65],[1,93],[1,54],[0,77],[1,47],[1,76],[0,46]],[[25694,28086],[-1,94],[0,65],[-1,56],[0,13],[0,34],[0,109],[-1,27],[-2,94],[0,124],[0,124],[2,127],[1,57],[1,61],[1,135],[0,42],[0,1],[0,68],[0,39],[3,17],[2,32],[-1,94],[-3,22],[-1,32],[-49,0],[-62,0],[2,148],[0,43],[1,66],[1,237],[0,87],[0,17],[0,75],[-1,60],[0,53],[0,75],[-1,132],[-1,45],[-2,148],[-1,44],[0,168],[0,23],[0,7],[0,44],[-1,66],[0,21],[1,18],[0,30],[-1,64],[0,61],[0,124],[-1,41],[1,81],[0,247],[0,70],[0,20],[1,131],[0,22],[2,117],[0,38],[1,89],[1,35],[1,77],[-2,84],[-2,45]],[[25694,28086],[-49,-2],[-13,0],[-180,1],[-23,3],[-33,0],[-25,0],[-23,1],[-25,0],[-75,0],[-24,0],[-23,1],[-38,-1],[-264,0],[-38,0],[-23,0],[-205,2],[-25,0],[-173,0],[-28,0],[-34,0],[-29,0],[-3,0],[-39,1],[-22,0],[-76,-1],[-81,1],[-13,0],[-51,-1],[-28,0],[-16,0],[-27,0],[-16,-1],[-37,0],[-50,0],[-41,-1],[-70,0],[-193,-2],[-42,0],[-199,-2],[-24,0],[-46,-1],[-72,-1],[-41,0],[-35,-1],[-54,0],[-17,-1],[-33,0],[-232,-3],[-58,-1],[-45,-1],[-96,-2],[-51,0],[-13,0],[-31,-1],[-25,-1],[-15,0],[-21,0],[-22,1],[-6,0],[-28,0],[-16,0],[-58,0],[-31,-1],[-42,0],[-34,0],[-52,0],[-51,0],[-21,0],[-32,0],[-33,0],[-61,0],[-53,0],[-48,0],[-28,0],[-33,-1],[-39,0],[-80,0],[-183,-2],[-244,-3],[-19,0],[-2,0],[-27,0],[-24,0],[-39,1],[-27,0],[-79,1],[-49,0],[-13,0],[-38,0],[-75,0],[-15,0],[-16,0],[-17,0],[-31,0],[-32,0],[-38,0],[-51,0],[-15,0],[-13,0],[-53,0],[-36,0],[-28,0],[-30,1],[-31,0],[-25,-1],[-33,1],[-33,0],[-31,0],[-16,0],[-16,0],[-33,0],[-64,0],[-17,0],[-39,0],[-28,0],[-27,1],[-27,0],[-71,0],[-56,0],[-15,0],[-176,-1],[-49,0],[-2,0],[-19,0],[-15,0],[-14,0],[-9,0],[-11,0],[-224,1],[-191,-3],[-74,2],[-70,1],[-3,0],[-55,1],[-28,-1],[-89,1],[-14,1],[-2,0],[-26,0],[-16,0],[-6,1],[-8,1],[-13,0],[-85,0],[-19,1],[-81,0],[-14,0],[-67,0],[-22,0],[-34,-2],[-1,0],[-34,1],[-48,1],[-50,0],[-17,0],[-35,0],[-58,0],[-64,0],[-64,1],[-14,0],[-19,0],[-23,0],[-24,-1],[-63,1],[-53,0],[-94,0],[-22,0],[-62,0],[-18,0],[-34,0],[-48,1],[-36,0],[-18,0],[-27,0],[-13,0],[-29,0],[-4,0],[-37,0],[-168,0],[-249,-1],[-27,0],[-59,0],[-31,0],[-56,0],[-27,0],[-28,0],[-46,1],[-17,0],[-38,-2],[-18,0],[-205,0],[-16,0],[-39,3],[-7,0],[-14,0],[-21,0],[-17,0],[-60,0],[-20,0],[-24,0],[-26,1],[-16,0],[-255,0],[-5,0],[-47,2],[-219,1],[-181,1],[-22,0]],[[15504,28083],[-7,13],[-14,3],[-19,19],[-10,10],[-26,27],[-3,2],[-1,1],[-28,11],[-36,15],[-6,3],[-9,-3],[-9,-2],[-17,-5],[-13,-4],[-9,-6],[-5,-3],[-9,-5],[-5,-4],[-5,-3],[-2,1],[-19,3],[-7,1],[-4,0],[-1,3],[-2,3],[-5,11],[-2,8],[6,1],[-3,7],[-14,7],[-5,0],[-12,1],[-1,1],[-11,4],[-3,2],[-8,3],[-11,6],[-1,1],[-12,15],[-1,1],[-4,4],[-7,3],[-7,4],[-1,0],[-54,27],[-7,4],[-44,22],[-15,8],[-2,1],[-16,8],[-10,4],[-9,-3],[-36,0],[-20,0],[-23,0],[-4,0],[-16,7],[-27,11],[-13,9],[-5,1],[-2,1],[-2,0],[-11,6],[-4,2],[-24,13],[-9,6],[-10,18],[-4,6],[-6,10],[-2,3],[-5,8],[-8,8],[-2,3],[-1,3],[-6,11],[-9,18],[-26,13],[-26,13],[-17,8],[-19,8]],[[38467,25148],[-265,0],[-51,-1],[-39,0],[-93,0],[-25,0],[-5,0],[-50,0],[-127,-1],[-136,-2],[-265,-4],[-133,-1],[-26,0],[-37,0],[-79,-1],[-119,-1],[-89,0],[-42,0],[-35,-1],[-100,0],[-131,2],[-89,-3],[-24,-2],[-55,3],[-33,2],[-286,3],[-2,0],[-37,1],[-80,1],[-1,0],[-461,4],[-60,1],[-158,3],[-17,0],[-23,1],[0,-119],[0,-127],[0,-100],[0,-49],[-1,-100],[1,-96],[0,-32],[-1,-84],[-1,-34],[1,-124],[-1,-100],[-1,-24],[0,-167],[-1,-82],[0,-23],[0,-49],[0,-42],[0,-33],[0,-18],[-1,-82]],[[35289,23667],[-134,-1],[-73,-2],[-56,2],[-191,-2],[-18,0],[-58,0],[-110,-1],[-97,-1],[-56,0],[-63,-1],[-45,0],[-99,2],[-15,0],[-43,0],[-42,-1],[-14,-1],[-36,-1],[-110,0],[-63,0],[-75,-1],[-175,-1],[-17,0],[-59,-1],[-68,1],[-17,0],[-74,0],[-40,1],[-67,0],[-64,0],[-80,0],[-119,0],[-72,1],[-60,0],[-139,1],[-67,0],[-32,0],[-122,1],[-30,0],[-200,0],[-67,1],[-67,0],[-103,0],[-60,0],[-33,0],[-69,0]],[[57941,30527],[-1,0],[-10,-7],[-13,-8],[-3,-2],[-13,-11],[-19,-14],[-1,-1],[-6,-6],[-5,-5],[-7,-3],[-22,-7],[-22,-6],[-23,-7],[-13,-5],[-1,-1],[-4,-3],[-13,-9],[-8,-5],[-14,-19],[-11,-34],[0,-36],[6,-46],[3,-28],[7,-29],[9,-13],[4,-10],[3,-6],[6,-16],[12,-23],[15,-16],[21,-26],[19,-27],[14,-21],[7,-32],[6,-30],[-1,-47],[0,-25],[-17,-40],[-28,-44],[-29,-29],[-19,-27],[-10,-24],[-7,-41],[12,-48],[0,-7],[3,-33],[12,-62],[8,-42],[3,-37],[-4,-52],[0,-2],[3,-27],[2,-13],[4,-24],[1,-10],[2,-9],[0,-1],[2,-6],[10,-29],[15,-28],[2,-7],[6,-17],[7,-7],[1,-2],[9,-10],[3,-8],[3,-9],[3,-11],[1,-2],[2,-23],[-8,-30],[-12,-40],[-10,-30],[-20,-21],[-31,-33],[-44,-34],[-9,-7],[-15,-25],[-8,-14],[-24,-87],[0,-3],[-5,-26],[-2,-7],[-2,-9],[-1,-5],[-5,-29],[-1,-2],[0,-2],[0,-7],[0,-1],[-2,-27],[-3,-41],[0,-2],[-1,-2],[8,-80],[2,-2],[23,-43],[13,-12],[58,-52],[7,-6],[20,-18],[2,-3],[16,-14],[29,-27],[6,-5],[10,-14],[0,-9],[-2,-24],[0,-3],[-4,-10],[-3,-8],[-10,-16],[-1,-1],[-5,-8],[-6,-10],[-12,-27],[-15,-33],[-1,-47],[-10,-32],[-1,-67],[2,-19],[11,-61],[1,-1],[8,-20],[8,-17],[1,-4],[1,-1],[11,-16],[2,-4],[9,-14],[2,-4],[9,-12],[0,-2],[1,-3],[3,-18],[1,-1],[0,-11],[1,-5],[0,-8],[0,-3],[1,-3],[1,-12],[0,-2],[1,-5],[1,-3],[2,-8],[1,-2],[3,-8],[1,-2],[2,-4],[3,-5],[6,-13],[5,-11],[1,0],[6,-7],[1,-1],[2,-3],[2,-8],[1,-5],[1,-4],[6,-30],[1,-5],[4,-15],[1,-4],[1,-6],[2,-12],[1,-14],[0,-4],[1,-6],[1,-3],[2,-8],[2,-8],[2,-8],[1,-3],[4,-25],[0,-2],[3,-17],[2,-22],[3,-14],[5,-22],[1,-5],[1,-5],[1,-1],[3,-6],[3,-6],[6,-10],[3,-7],[19,-23],[1,-2],[3,-2],[2,-1],[6,-5],[3,-3],[10,-9],[6,-4],[14,-33],[-2,-9],[-7,-29],[-2,-7],[0,-2],[-2,-6],[-13,-20],[-8,-10],[-5,-7],[-10,-16],[-6,-10],[-15,-24],[-23,-21],[-15,-9],[-16,-8],[-14,-7],[-13,-10],[-8,-5],[-6,-4],[-13,-11],[-14,-13],[-14,-19],[-1,-1],[-1,-1],[-6,-9],[-5,-6],[-4,-4],[-10,-8],[-4,-2],[-2,-1],[-19,-11],[-24,-17],[-13,-11],[-9,-8],[-32,-28],[-29,-28],[-30,-29],[-24,-23],[-16,-20],[-12,-12],[-4,-4],[-17,-12],[-8,-6],[-17,-12],[-31,-23],[-11,-7],[-29,-20],[-21,-12],[-13,-8],[-32,-22],[-14,-11],[-1,-1],[-11,-10],[-15,-13],[-11,-13],[-7,-10],[-3,-3],[-11,-18],[-5,-9],[-10,-18],[-11,-19],[-3,-6],[-2,-4],[-3,-7],[-4,-4],[0,-1],[-6,-8],[-4,-4],[0,-1],[-10,-10],[-1,0],[-2,-3],[-10,-11],[-2,-3],[-5,-5],[-2,-3],[0,-2],[-8,-11],[-1,-1],[-7,-13],[-9,-18],[-2,-8],[0,-1],[-4,-15],[-3,-11],[0,-2],[-1,-17],[-1,-20],[-1,-11],[0,-17],[0,-4],[2,-11],[1,-14],[1,0],[0,-1],[0,-2],[3,-12],[3,-13],[2,-6],[0,-1],[3,-8],[2,-6],[1,-3],[0,-1],[6,-13],[3,-6],[2,-5],[2,-3],[3,-6],[9,-16],[17,-29],[18,-26],[19,-23],[30,-36],[27,-25],[22,-20],[20,-17],[12,-6],[8,-5],[19,-11],[16,-9],[8,-5],[26,-16],[28,-19],[33,-27],[11,-8],[5,-4],[14,-11],[24,-23],[22,-21],[23,-24],[19,-22],[14,-18],[3,-3],[16,-18],[1,-2],[1,-4],[0,-1],[7,-15],[1,-2],[13,-29],[9,-23],[1,-20],[1,-18],[-8,-26],[-6,-18],[-12,-34],[0,-2],[-8,-23],[-4,-11],[-1,-2],[-8,-21],[-4,-8],[-8,-22],[-7,-18],[0,-1],[-8,-19],[-6,-15],[-3,-9],[-3,-10],[-1,-4],[-4,-15],[-3,-10],[-8,-22],[-8,-23],[-4,-16],[-2,-4],[-1,-7],[-3,-12],[0,-18],[-1,-14],[1,-5],[0,-1],[5,-85],[7,-35],[3,-12],[3,-10],[6,-25],[2,-8],[2,-11],[-1,-6],[-4,-21],[0,-1],[-2,-6],[-2,-12],[-3,-14],[-4,-23],[0,-39],[0,-16],[0,-19],[10,-80],[1,-35],[12,-40],[9,-18],[2,-1],[53,-38],[3,-2],[7,-5],[4,-2],[23,-16],[18,-45],[1,-5],[23,-42],[33,-58],[1,-2],[2,-8],[4,-16],[5,-17],[3,-13],[2,-5],[7,-43],[0,-1],[5,-24],[10,-49],[11,-55],[1,-22],[1,-20],[2,-26],[0,-15],[1,-3],[0,-2],[-19,-109],[-8,-39],[-36,-170],[-26,-125],[-5,-16],[-10,-22],[-11,-19],[-23,-16],[-32,-17],[-32,-18],[-21,-14],[-67,-45],[-11,-21],[-1,-1],[-7,-34],[-1,-7],[-4,-44],[1,-39],[12,-45],[0,-2],[6,-13],[6,-12],[25,-50],[19,-45],[7,-12],[33,-59],[9,-17],[22,-32],[1,-3],[8,-27],[0,-13],[0,-9],[-4,-9],[-4,-9],[-6,-14],[-2,-5],[-15,-29],[-20,-39],[-19,-45],[-9,-34],[-1,-23],[1,-13],[0,-14],[0,-11],[1,-4],[1,-10],[1,-8],[-1,-22],[3,-31],[5,-27],[4,-32],[7,-29],[5,-21],[8,-30],[8,-38],[4,-23],[4,-21],[0,-32],[1,-33],[-4,-26],[-15,-22],[-12,-15],[-10,-15],[-10,-13],[-37,-62],[-7,-23],[2,-24],[4,-16],[3,-13],[-2,-22],[-2,-4],[-4,-11],[-34,-52],[-17,-24],[-7,-10],[-19,-26],[-6,-8],[-3,-6],[-16,-31],[-12,-52],[-1,-3],[-5,-50],[-1,-13],[0,-8],[-1,-5],[-3,-29],[-6,-67],[-3,-19],[0,-1],[-3,-16],[-5,-19],[-7,-20],[-7,-22],[-1,-1],[-4,-10],[-8,-21],[-1,-2],[-4,-8],[-16,-26],[-10,-12],[-3,-3],[-15,-19],[-15,-17],[-4,-5],[-11,-13],[-8,-7],[-3,-4],[-14,-13],[-28,-27],[-19,-28],[-19,-26],[-17,-26],[-12,-23],[-9,-21],[-6,-12],[-11,-28],[-13,-30],[-14,-40],[-2,-12],[-4,-24],[-5,-29],[-7,-31],[-5,-31],[0,-1],[-2,-7],[-3,-20],[-4,-31],[-1,-4],[0,-4],[-1,-9],[0,-8],[-2,-55],[14,-31],[2,-3],[7,-9],[7,-9],[12,-17],[12,-15],[5,-6],[2,-3]],[[57194,21202],[-3,-38],[-1,-19],[-55,6],[-42,10],[-25,4],[-44,11],[-50,11],[-108,31],[-20,2],[-84,-20],[-49,-5],[-56,2],[-24,-4],[-30,-4],[-39,0],[-35,0],[-18,23],[-20,72],[-12,14],[-50,29],[-41,50],[-6,29],[-9,17],[-4,7],[-21,33],[-36,28],[-34,-1],[-32,-19],[-42,1],[-85,90],[-37,5],[-15,8],[-63,79],[-10,12],[-50,64],[-120,10],[-27,8],[-76,-3],[-37,-3],[-58,-46],[-186,-102],[-1,-1],[-10,-8],[-97,13],[-79,10],[-84,-13],[-42,-5],[-133,39],[-12,4],[-66,24],[-14,5],[-24,7],[-18,5],[-19,5],[-71,0],[-41,-11],[-120,-52],[-10,-4],[-9,-5],[-12,12],[-29,3],[-113,86],[-2,9],[-12,15],[-24,80],[-10,16],[-1,3],[-7,21],[-8,41],[2,60],[-3,7],[14,47],[37,82],[38,45],[18,26],[75,111],[37,72],[9,19],[-46,118],[2,7],[0,2],[0,3],[0,3],[1,3],[-1,3],[0,3],[-4,34],[0,3],[-1,2],[0,2],[-14,63],[-31,128],[26,181],[11,43],[-2,16],[2,55],[4,30],[2,64],[-4,37],[-18,55],[-37,43],[-28,122],[4,62],[-8,48],[-5,18],[-30,111]],[[54422,23621],[82,20],[36,0],[21,0],[10,0],[5,0],[30,0],[3,0],[51,0],[1,0],[74,0],[130,0],[0,82],[0,41],[-1,49],[0,37],[0,27],[-1,19],[0,67],[0,24],[0,4],[0,19],[0,32],[-1,30],[0,25],[0,36],[0,31],[0,42],[0,35],[-1,31],[0,72],[0,31],[0,65],[0,21],[0,41],[-1,32],[0,21],[0,25],[-1,32],[0,13],[0,6],[0,62],[0,19],[0,7],[0,27],[-1,33],[0,24],[0,38],[0,31],[-1,45],[0,17],[0,30],[0,30],[0,27],[0,32],[1,30],[0,36],[0,57],[0,66],[0,18],[1,27],[0,1],[0,77],[0,31],[0,31],[0,22],[0,1],[0,20],[0,19],[-1,58],[0,64],[0,31],[0,31],[0,31],[0,30],[0,34],[0,28],[0,18],[0,19],[0,4],[0,20],[0,17],[0,17],[0,32],[0,20],[0,51],[0,33],[0,22],[0,4],[0,22],[0,7],[0,12],[0,23],[0,23],[0,146],[0,19],[0,10],[0,15],[0,9],[0,12],[0,26],[0,20],[0,32],[0,30],[0,19],[0,33],[0,25],[-1,44],[0,32],[0,7],[1,158],[2,191],[1,127],[0,14],[0,31],[0,22],[0,1],[0,6],[0,26],[-1,18],[1,21],[0,11],[0,22],[1,44],[1,22],[-2,34],[0,75],[0,20],[-1,54],[0,53],[0,31],[-70,0],[-33,0],[-22,0],[-46,0],[-25,0],[-43,0],[-1,0],[-22,0],[-28,0],[-44,0],[-22,0],[-24,0],[-77,1],[-2,0],[-2,0],[-2,1]],[[15504,28083],[-3,-19],[9,-21],[10,-20],[11,-15],[23,-25],[18,-14],[16,-12],[13,-17],[11,-18],[0,-2],[20,-50],[4,-11],[4,-36],[1,-1],[10,-8],[6,-5],[47,-15],[6,-15],[7,-32],[19,-18],[18,-6],[8,-13],[11,-11],[13,-15],[5,-21],[8,-32],[18,-32],[13,-5],[15,2],[89,-25],[2,0],[0,-3],[37,-39],[1,-1],[4,-8],[1,-3],[-1,-9],[-4,-18],[-15,-3],[-13,-26],[16,-19],[13,-16],[3,-2],[56,-34],[4,-1],[33,-28],[16,-14],[142,-190],[3,-2],[128,-116],[96,-86],[15,-23],[102,-96],[46,-43],[111,-105],[142,-134],[87,-82],[55,-52],[93,-87],[93,-88],[22,-21],[112,-105],[18,-9],[13,-3],[13,-6],[17,-6],[28,-6],[2,0],[46,-24],[23,-12],[2,-5],[6,-24],[1,-2],[7,-25],[4,-18],[1,0],[14,-20],[17,-24],[3,-4],[6,-8],[7,-10],[18,-25],[2,-3],[26,-25],[53,-52],[26,-26],[18,-18],[5,-9],[12,-21],[13,-25],[38,-72],[0,-1],[52,-36],[1,-1],[1,0],[11,-6],[33,-16],[23,-10],[12,-6],[108,-8],[5,0],[114,-155],[45,-60],[15,-24],[53,-84],[21,-34],[-2,-80],[-3,-103],[-1,-24],[0,-16],[10,-11],[18,-19],[41,-41],[62,-62],[30,-31],[39,-39],[57,-57],[51,-50],[118,-25],[47,-10],[34,-22],[64,-43],[3,-4],[9,-20],[9,-17],[17,-6],[28,-1],[14,2],[15,10],[14,12],[3,34],[0,18],[2,17],[12,7],[5,-6],[76,-91],[2,-3],[10,-2],[1,1],[9,6],[33,22],[44,30],[46,-7],[40,-28],[23,-20],[37,-31],[22,-19],[2,-1],[61,-52]],[[19369,24412],[0,-1],[0,-27],[0,-24],[-1,-22],[0,-72],[0,-31],[-1,-92],[-1,-56],[0,-36],[-1,-30],[0,-50],[0,-74],[0,-21],[-1,-105],[0,-55],[1,-63],[-47,2],[-16,-1],[-17,0],[-18,-1],[-20,-1],[-50,2],[-79,2],[-75,0],[-19,0],[-34,0],[-20,0],[-162,0],[-26,0],[-41,-1],[-18,0],[-152,2],[-47,1],[-67,0],[-17,0],[-197,0],[-55,0],[-52,0],[-74,0],[-119,-1],[-3,-98],[0,-20],[0,-23],[0,-94],[1,-50],[-1,-111],[0,-45],[1,-40],[-1,-29],[-1,-72],[0,-27],[-2,-84],[0,-1],[0,-35],[-2,-121],[-2,-125],[1,-41],[-1,-22],[-3,-184],[-2,-125],[0,-4],[-1,-117],[-81,-1],[-35,0],[-43,0],[-105,-1],[-78,0],[-186,-2],[-263,-1],[-129,0],[-134,0],[-4,0],[-117,1],[-1,0],[-51,-1],[-36,0],[-55,-1],[-97,0],[-154,0],[-14,1],[-17,0],[-196,0],[-37,0],[-116,1],[-4,0],[-141,-1],[-48,1],[-46,0],[-104,-1],[-65,-1],[-260,-2],[-142,-1],[-61,0],[-60,0],[-99,1],[-170,0],[-78,1],[-191,2],[-147,-1],[-47,1],[-30,1],[-46,0],[-134,3],[-27,0],[-101,0],[-126,0],[-49,1],[-87,1],[-63,-1],[-1,0],[-46,3],[-26,-2],[-125,0],[-1,0],[-77,2],[-179,0],[-42,0],[-217,-3],[-106,2],[-7,0],[-75,1],[-76,0],[-54,-1],[-59,0],[-149,-2],[-266,-2],[-67,1],[-65,-2],[-131,-2],[-25,0],[-50,0],[-198,0],[-228,1],[-33,0],[-85,0],[-126,0],[-54,1],[-243,1],[-20,0],[-35,0],[-55,1],[-173,1],[-83,1],[-167,1],[-51,0],[-101,15]],[[10156,22206],[0,23],[0,196],[-5,1985],[0,154],[-2,550],[-1,492],[-2,815],[0,210],[-1,199],[-5,2144],[-3,1092]],[[51735,26103],[11,0],[4,0],[26,0],[22,0],[17,0],[17,0],[15,0],[16,1],[17,0],[33,0],[16,0],[16,0],[33,0],[0,-12],[1,-27],[0,-20],[0,-28],[1,-18],[0,-34],[1,-55],[1,-42],[0,-21],[1,-45],[0,-3],[1,-75],[1,-93],[0,-12],[0,-19],[0,-1],[0,-61],[-1,-29],[0,-29],[1,-59],[0,-66],[0,-7],[0,-30],[0,-24],[-1,-129],[0,-2],[-1,-55],[0,-19],[0,-18],[0,-30],[0,-32],[0,-32],[0,-24],[0,-27],[-1,-31],[0,-32],[0,-47],[0,-5],[0,-21],[0,-19],[0,-3],[0,-30],[0,-19],[3,-22],[33,-17],[4,-8],[21,-21],[21,-39],[6,-21],[9,-55],[-6,-166],[0,-15],[6,-43],[6,-38],[0,-13],[-1,-9],[0,-26],[-7,-18],[-2,-4],[-9,-51],[0,-11],[0,-28],[-1,-87],[2,-23],[1,-8],[5,-6],[22,-26],[7,-14],[22,-18],[3,-2],[1,-1],[2,-2],[1,-2],[2,-2],[1,-1],[1,-2],[2,-2],[1,-2],[1,-1],[2,-3],[25,-27],[0,-1],[24,-23],[6,-10],[3,-6],[0,-12],[-1,-11],[-1,-32],[28,-65],[4,-4],[10,-6],[5,-2],[6,-3],[7,-3],[23,-9],[37,-2],[44,-2],[15,-5],[-4,-18],[-6,-23],[1,-26],[-8,-23]],[[52359,23599],[-12,-1],[-4,0],[-15,-5],[-12,-5],[-13,-8],[-7,-14],[6,-18],[11,-14],[12,-11],[11,-9],[26,-51],[-11,-16],[-30,-29],[-18,-11],[-37,-13],[-25,-20],[-18,-27],[-15,-37],[-51,-46],[-57,-45],[0,-1],[-2,-2],[-2,-2],[0,-1],[-11,-10],[-15,-15],[-1,-1],[-15,-14],[-1,-18],[-9,-116],[-4,-42],[-5,-15],[-56,-153],[-42,-55],[-52,-13],[-34,1],[-29,0],[-21,-13],[-3,-35],[31,-79],[-11,-12],[-15,-9],[-55,-17],[-35,-15],[-30,-19],[-1,-2],[-36,-32],[-72,-89],[-53,-45],[-32,-20],[-43,-37],[-23,-34],[-15,-13],[-25,-13],[-44,-8],[-75,-21],[-29,-13],[-65,-19],[-69,-10],[-59,-3],[-14,-4],[-10,-4],[-20,-18],[-22,-52],[-53,-25],[-34,-15],[-10,-2],[-22,-10],[-61,-34],[-36,-21],[-72,-27],[-64,-24],[-108,5],[-15,-4],[-41,1],[-23,-9],[-25,-15],[-30,-27]],[[50382,21919],[-25,-29],[-30,-24],[-35,-1],[-41,17],[-36,26],[-31,35],[-7,5],[-17,2],[-26,-27],[-34,-35],[-9,-27],[-12,-12],[-27,-1],[-29,14],[-35,33],[-3,1],[-43,7],[-15,-2],[-43,-14],[-87,-37],[-27,-6],[-12,2],[-14,14],[-32,107],[-10,66],[-7,14],[-14,14],[-17,10],[-42,-1],[-49,-22],[-30,-1],[-29,28],[-6,7],[-45,60],[-26,26],[-56,32],[-34,14],[-26,10],[-30,1],[-12,-2],[-18,-9],[-18,1],[-159,58],[-67,37],[-17,0],[-15,-4],[-15,-18],[-17,-68],[-18,-27],[-15,-14],[-37,-17],[-35,-9],[-49,-3],[-27,1],[-19,7],[-48,47],[-32,1],[-64,-17],[-91,-20],[-28,-1],[-32,5],[-11,9],[-1,10],[-28,33],[-68,-47],[-45,-4],[-7,7],[-16,37],[-19,26],[-22,21],[-19,0],[-28,-24],[-5,-12],[-6,-20],[-8,-27],[-7,-7],[-22,-2],[-32,6],[-52,1],[-29,-9],[-62,-31],[-62,-13]],[[47909,22127],[40,112],[-2,125],[0,14],[-1,52],[-2,118],[0,3],[1,74],[0,8],[0,127],[0,27],[0,1],[0,112],[0,42],[0,48],[3,80],[0,22],[0,27],[-1,30],[0,5],[1,28],[0,19],[0,1],[0,22],[0,21],[0,20],[0,24],[0,20],[0,25],[0,21],[-1,17],[1,24],[0,22],[1,19],[0,22],[0,47],[0,20],[0,55],[0,26],[0,33],[-32,7],[-16,0],[-31,0],[-166,-1],[-9,0],[-17,-2],[-51,0],[-8,0],[-33,0],[-45,2],[-17,-2],[-41,0],[-14,0],[-20,0],[-22,1],[-22,0],[-32,1],[-25,0],[-20,0],[-25,0],[-22,0],[-14,0],[-15,0],[-30,1],[-44,0],[-4,0],[-36,0],[-46,1],[-36,1],[-13,0],[-18,0],[-35,0],[-52,1],[-14,1],[-41,0],[-25,0],[-40,0],[-9,0],[-25,0],[-24,-1],[-14,-1],[-39,0],[-18,0],[-20,-2],[-74,0],[-16,-1],[-19,1],[-16,0],[-67,-1],[-35,0],[-2,0],[-48,0],[-48,0],[-97,-2],[-1,0],[-38,2],[-49,-2],[-27,2],[-4,-1],[-31,-1],[-39,0],[-109,2],[-73,-2],[-22,0],[-52,-1],[-147,-2],[-33,0],[-37,-1],[-20,-1],[-74,0],[-113,2],[-48,0],[-169,0],[-18,0],[-49,0],[-82,-2],[-111,2],[-130,1],[0,245],[0,2],[0,25],[0,101],[1,103],[0,17],[1,163],[3,80],[1,199],[0,49],[0,102],[0,58],[2,273],[0,11],[-1,13],[0,39]],[[25668,23650],[-48,0],[-63,0],[-42,0],[-33,0],[-90,0],[-75,0],[-33,1],[-25,0],[-20,-1],[-37,0],[-16,0],[-21,0],[-26,0],[-118,-1],[-17,0],[-21,-1],[-26,0],[-21,1],[-25,0],[-41,0],[-28,0],[-30,0],[-17,0],[-70,-1],[-27,0],[-58,1],[-181,0],[-28,-1],[-22,1],[-24,-1],[-30,0],[-29,0],[-55,0],[-39,-1],[-16,0],[-74,0],[-48,0],[-61,-1],[-42,0],[-26,0],[-27,0],[-29,0],[-17,0],[-28,0],[-37,0],[-34,-1],[-17,0],[-16,0],[-31,0],[-47,0],[-36,0],[-30,0],[-24,-1],[-40,0],[-30,0],[-16,0],[-40,0],[-44,0],[-56,-1],[-67,0],[-27,0],[-41,0],[-75,0],[-62,-1],[-74,-1],[-105,0],[-18,0],[-106,-1],[-15,0],[-5,0],[-14,0],[-78,0],[-33,0],[-2,-31],[0,-23],[0,-45],[0,-58],[0,-29],[0,-43],[0,-19],[-1,-24],[1,-42],[-1,-46],[0,-1],[1,-31],[-1,-50],[-1,-11],[-1,-19],[-1,-22],[-2,-32],[-2,-37],[0,-53],[1,-20],[0,-58],[0,-47],[0,-22],[0,-37],[0,-74],[0,-19],[0,-66],[0,-35],[0,-28],[0,-22],[0,-18],[0,-31],[0,-18],[0,-26],[0,-42],[1,-56],[0,-31],[0,-39],[-1,-35],[0,-18],[-1,-18],[-1,-22],[-2,-31],[-1,-22],[-2,-29],[0,-2],[-2,-32],[0,-26],[-1,-37],[2,-24],[1,-13],[12,-9],[0,-33],[1,-26],[0,-47],[0,-134],[0,-51],[1,-75],[-2,-115],[3,-27],[0,-30],[-1,-41],[0,-53],[2,-83],[0,-3]],[[22646,21299],[-14,-9],[-17,-11],[-12,-9],[-3,-2],[-14,-4],[-16,3],[-15,7],[-13,8],[-6,17],[2,17],[1,2],[-3,21],[-4,26],[-3,29],[1,29],[1,18],[11,20],[17,12],[-4,20],[-1,1],[-12,9],[-15,17],[-10,15],[-9,13],[-2,4],[-9,20],[-10,12],[-1,0],[-12,5],[-11,1],[-5,1],[-18,5],[-17,6],[-17,11],[-12,6],[-10,7],[-8,5],[-14,7],[-17,-1],[-14,-10],[-10,-15],[-11,-18],[7,-42],[1,-21],[-26,-21],[-17,-1],[-29,8],[-13,8],[-5,8],[-6,9],[1,32],[5,20],[-13,24],[-14,4],[-15,-3],[-22,-12],[-19,-14],[-22,-10],[-27,-1],[-25,8],[-17,9],[-18,20],[-8,23],[1,20],[8,4],[20,4],[73,14],[1,17],[-13,13],[-15,22],[-2,3],[-3,15],[-7,38],[8,21],[259,34],[89,47],[-47,79],[-137,90],[-7,5],[-51,40],[-27,11],[-1,1],[-124,21],[-16,3],[-69,11],[-20,0],[-23,-2],[-8,27],[4,14],[9,33],[11,42],[2,8],[-4,17],[-45,91],[-30,13],[-86,35],[-60,35],[-16,10],[-7,4],[-33,6],[-1,0],[-38,7],[-56,79],[-14,32],[-30,61],[-9,21],[-19,48],[-2,0],[-263,51],[9,51],[-2,1],[-86,41],[-126,60],[-6,3],[-42,20],[-51,67],[-2,2],[-73,94],[-1,1],[-71,63],[-14,12],[-31,28],[-32,29],[-22,19],[0,1],[-14,67],[-15,67],[-44,32],[-41,30],[-31,40],[-41,52],[-44,55],[-9,7],[-73,55],[-90,69],[-62,46],[-23,17],[-61,52],[-24,21],[-22,19],[-2,0],[-84,7],[-321,28],[-38,3],[-39,57],[-37,52],[-11,90],[-2,13],[-8,67],[-1,7],[-38,39],[-70,72],[-16,17],[-4,4],[-16,17],[-22,22],[-8,9]],[[54422,23621],[-6,23],[-29,36],[-28,23],[-60,41],[-48,31],[-44,5],[-48,75],[0,1],[-2,2],[-50,64],[-17,48],[-23,44],[-30,52],[-37,60],[-47,3],[-17,0],[-4,0],[-20,0],[-16,0],[-24,0],[-2,0],[-24,0],[-16,0],[-6,0],[-17,0],[-20,1],[-17,0],[-24,0],[-25,0],[-23,0],[-22,0],[-55,1],[-19,0],[-19,0],[-19,0],[-19,1],[-19,0],[-37,0],[0,6],[0,54],[-5,1],[-23,0],[-38,0],[0,-10],[0,-51],[-15,0],[-28,0],[-16,0],[-15,1],[-1,0],[-17,0],[-18,0],[-16,0],[-15,0],[-23,0],[-9,0],[-6,0],[-21,0],[-32,0],[-4,0],[-13,-1],[-12,0],[-15,0],[-34,0],[-14,0],[-46,0],[-46,0],[-9,-7],[-28,-33],[-13,-34],[-7,-64],[-8,-21],[-43,-56],[-32,-21],[-1,-1],[-2,-2],[-2,-1],[-3,-3],[-6,-7],[-92,-91],[-29,-27],[-28,-25],[-59,-53],[-22,-15],[-71,-12],[-3,-1],[-1,0],[-57,-18],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-2],[-1,-1],[-22,-23],[-1,-1],[0,-1],[-22,-25],[-73,19]],[[41609,25135],[-1,-127],[1,-152],[0,-36],[0,-46],[0,-63],[0,-71],[-1,-24],[0,-18],[-2,-120],[0,-49],[0,-32],[-1,-90],[2,-75],[3,-331],[4,-205],[1,-36],[14,0],[11,0],[0,-72],[0,-3],[1,-58],[-2,-17],[0,-17],[1,-58],[2,-4],[0,-22],[0,-15],[-4,-239],[-1,-123],[-1,-118],[1,-5],[2,-23],[0,-99],[0,-77],[0,-46],[-1,-124],[1,-48],[0,-77],[0,-28],[0,-35],[0,-43],[-1,-123],[2,-19],[-2,-85],[1,-183],[0,-69],[0,-27],[-1,-38],[-2,-89],[2,-21],[-1,-25],[0,-74],[-1,-39],[-1,-168],[-1,-101],[0,-62],[0,-120],[-1,-72],[0,-55],[0,-79],[0,-39],[0,-35],[1,-92]],[[41634,20694],[-90,0],[-47,1],[-34,0],[-93,0],[-264,-1],[-82,0],[-43,-1],[-125,1],[-14,0],[-100,1],[-47,0],[-117,0],[-132,0],[-90,0],[-40,0],[-117,1],[-23,0],[-24,0],[-16,0],[-77,1],[-261,1],[-199,1],[-62,0],[-191,1],[-16,0],[-19,1],[-36,1],[-110,0],[-5,0],[-17,0],[-195,1],[-1,0],[-102,1],[-19,0],[-48,0],[-64,0],[-148,-2],[-1,0],[-25,0],[-49,0],[-1,-126],[0,-37],[0,-18],[0,-74],[0,-34],[-2,-210],[-2,-250],[-1,-123],[0,-27],[-1,-125],[0,-1],[-1,-94],[-1,-120],[0,-19],[1,-38],[1,-19],[-2,-44],[0,-19],[-1,-76],[0,-35],[-131,2],[-67,1],[-21,0],[-45,0],[-127,0],[-135,1],[-82,-1],[-31,0],[-53,0],[-6,0],[-9,0],[-79,0],[-62,1],[-90,1],[-175,0],[-66,-1],[-163,0],[-22,0],[-38,0],[-64,0],[-97,-1],[-199,0],[-66,-1],[-58,0],[-62,0],[-51,0],[-61,-1],[-28,0],[-13,0],[-7,0],[-52,0],[-61,-1],[-185,-4],[-41,0],[-44,0],[-76,-1],[-46,0],[-53,-1],[-209,1],[-194,0],[-64,0],[0,51],[0,71],[0,56],[0,1],[-1,67],[1,123],[-1,58],[0,21],[0,3],[-1,287],[0,101],[-1,14],[0,132],[1,11],[-1,143],[-1,39],[0,24],[0,45],[0,237]],[[35344,20692],[0,7],[0,11],[0,65],[0,27],[0,16],[0,30],[0,96],[0,146],[0,1],[0,50],[0,33],[0,74],[1,190],[0,184],[1,186],[0,43],[1,83],[0,141],[0,25],[0,58],[0,25],[1,101],[0,18],[0,106],[0,30],[-1,59],[0,64],[0,118],[-1,174],[0,74],[0,37],[-1,114],[-1,97],[0,39],[0,66],[0,34],[0,58],[1,49],[1,96],[2,61],[1,88],[-33,0],[-27,1]],[[47909,22127],[-48,-8],[-26,-4],[-72,-12],[-16,9],[-20,3],[-12,-5],[-34,-25],[-33,-9],[-6,-3],[-7,-6],[-25,-27],[-13,-14],[-9,0],[-72,62],[-121,-45],[-23,-7],[-110,-11],[-45,-17],[-17,-9],[-25,-22],[-11,-33],[-1,-49],[-3,-99],[-20,-11],[-29,10],[-36,19],[-56,1],[-48,-5],[-31,-19],[-15,-10],[-15,-12],[4,-11],[3,-5],[16,-23],[20,-17],[4,-4],[7,-7],[29,-28],[0,-2],[-59,-72],[-27,-24],[-23,-14],[-61,-21],[-76,-5],[-30,-11],[-55,-71],[-22,-36],[14,-14],[6,-6],[120,-68],[14,-18],[3,-11],[1,-21],[-17,-24],[-33,-27],[-14,5],[-53,61],[-17,9],[-12,0],[-7,-6],[-1,-19],[5,-16],[-1,-36],[-19,-48],[-20,-27],[-75,-69],[-18,-27],[-1,-19],[5,-13],[23,-40],[7,-23],[-1,-30],[-43,-70],[-1,-6],[-5,-39],[14,-14],[39,-1],[27,15],[15,0],[5,-5],[2,-18],[-24,-55],[-1,-46],[6,-21],[15,-32],[21,-30],[69,-70],[-1,-21],[-10,-9],[-27,-8],[-25,-13],[-52,-47],[-27,-11],[-13,-11],[-1,-44],[-15,-15],[-49,1],[-12,-5],[-13,-15],[-11,-32],[-17,-16],[-30,-10],[-29,-2],[-10,5],[-38,35],[-20,0],[-12,-11],[-16,-41],[-7,-9],[-23,-17],[-12,-7],[-15,-2],[-17,19],[-23,60],[-14,14],[-24,10],[-32,0],[-47,-15],[-45,-31],[-44,-15],[-27,-22],[-6,-11],[-6,-44],[-13,-22],[-65,-68],[-20,-29],[-18,-28],[-21,-31],[-15,-18],[-37,-41],[-34,-37],[-22,-29],[-17,-17],[-27,-9],[-14,-5],[-39,-2],[-28,3],[-30,-2],[-23,-5],[-27,-10],[-28,-12],[-67,-41],[-13,-18],[4,-25],[32,-30],[40,-26],[1,-22],[-82,-46],[-49,15],[-17,5],[-28,5],[-16,-52],[-88,-110],[-20,-12],[-56,-5],[-56,-6],[-18,-1],[-20,-8],[-32,-7],[-23,-3],[-16,-1],[-28,4],[-22,-6],[-10,-17],[5,-31],[13,-20],[15,-12],[17,-11],[15,-19],[-6,-27],[-12,-23],[-20,1],[-23,7],[-17,-1],[-5,17],[-7,31],[-16,22],[-39,17],[-1,0],[-17,4]],[[44758,19385],[0,43],[0,32],[0,4],[0,81],[1,62],[0,30],[-1,65],[0,42],[0,204],[-134,0],[-129,-2],[-132,0],[-158,0],[-102,0],[-48,0],[-81,-1],[-149,5],[-117,-2],[-139,-1],[-34,-1],[-90,0],[-23,0],[-47,0],[-56,0],[-56,0],[-63,2],[0,60],[0,58],[0,130],[4,66],[-1,21],[0,99],[1,61],[-1,69],[0,111],[0,68],[-53,0],[-146,1],[-10,0],[-52,0],[-94,0],[-26,0],[-145,0],[-118,2],[-143,0],[-62,0],[-76,1],[-125,1],[-88,0],[-3,0],[-19,0],[-23,0],[-6,0],[-124,0],[-126,-1],[-130,-1]],[[22646,21299],[26,28],[21,21],[24,8],[14,-6],[30,-18],[20,-20],[1,0],[3,-6],[68,-56],[21,-18],[1,-2],[5,-12],[11,-28],[17,-41],[6,-3],[12,-6],[12,-14],[13,-25],[0,-1],[19,-9],[2,0],[23,5],[9,2],[20,6],[24,6],[27,4],[10,1],[2,1],[12,5],[54,20],[16,1],[17,-5],[2,-1],[3,-2],[2,0],[35,-12],[24,-8],[54,-18],[2,0],[33,-26],[20,-16],[10,-7],[13,-14],[4,-4],[20,-17],[3,-36],[7,-19],[0,-1],[0,-1],[11,-12],[0,-1],[2,-1],[11,-5],[1,0],[1,0],[19,-1],[1,0],[5,17],[-1,27],[17,11],[19,-2],[21,-13],[25,-18],[42,-30],[24,-18],[12,-8],[12,-13],[11,-12],[28,-23],[13,-7],[29,-16],[15,-13],[14,-16],[-2,-11],[-1,-12],[-16,-17],[-30,-27],[-1,-1],[1,-4],[1,-2],[4,-10],[1,-3],[1,-4],[10,-26],[6,-17],[6,-18],[4,-12],[3,-2],[1,-2],[15,-7],[1,0],[17,5],[12,13],[10,-1],[10,-2],[11,-9],[2,-9],[2,-9],[1,-5],[1,-15],[14,-11],[10,-8],[1,0],[17,-2],[37,-9],[1,0],[14,0],[29,15],[13,16],[18,-8],[-1,-18],[-7,-37],[-11,-13],[-1,-2],[-8,-25],[-1,-3],[5,-3],[13,-8],[2,-1],[25,-22],[14,-5],[6,-2],[1,0],[22,-12],[22,-9],[1,-1],[26,-7],[6,-2],[1,0],[12,-5],[15,-12],[10,1],[9,0],[10,10],[8,9],[12,3],[11,3],[8,-4],[9,-4],[10,-12],[0,-1],[3,-6],[5,-11],[2,-1],[14,-13],[1,-1]],[[24228,20373],[-3,-112],[0,-23],[-6,-272],[-1,-44],[4,-83],[1,-33],[-1,-124],[0,-57],[-1,-4],[0,-90],[1,-38],[1,-57],[0,-82],[0,-165],[-1,-65],[0,-112],[0,-73],[2,-84],[0,-2],[1,-69],[1,-71],[-1,-20],[2,-133],[1,-113],[-2,-63],[0,-82],[-1,-103],[0,-23],[1,-111],[0,-112],[0,-153],[-1,-48],[0,-12],[0,-33],[-82,0],[-13,0],[-24,0],[-73,1],[-72,-1],[-13,1],[-73,0],[-20,0],[-24,-1],[-15,0],[-52,1],[-64,0],[-132,0],[-71,0],[-22,-2],[-37,0],[-138,3],[-62,0],[-63,0],[-66,0],[-26,0],[-170,1],[-113,-1],[-26,-1],[-65,0],[-63,0],[-133,0],[-64,0],[-28,1],[-37,0],[-191,2],[-69,1],[-116,-2],[-12,1],[-1,0],[-90,2],[-14,1],[-35,1],[-122,2],[-130,1],[-262,4],[-141,-4]],[[21201,17718],[-121,4],[-3,191],[3,45],[0,78],[1,55],[1,375],[0,138],[0,87],[0,22],[1,94],[1,81],[1,85],[-1,151],[0,84],[-130,2],[-145,2],[-245,5],[-148,-2],[-24,0],[-24,-1],[-74,-1],[-134,-1],[-128,-3],[-298,1],[-19,0],[-39,1],[-8,0],[-166,0],[-262,1],[-43,2],[-224,3],[-260,3],[-74,0],[-48,1],[-142,1],[-1,0],[-263,1],[-58,0],[-98,-1],[-28,0],[-19,0],[-15,0],[-15,0],[-31,0],[-103,1],[-157,2],[-76,0],[-92,0],[-101,-1],[-126,0],[-135,-1],[-266,1],[-35,0],[-42,0],[-189,-1],[-44,0],[-86,-1],[-86,0],[-40,0],[-110,-2],[-152,-2],[-60,-1],[-4,0],[-39,-2],[-4,0],[-154,-4],[-262,1],[-268,1],[-194,1],[-65,1],[-30,1],[-222,2]],[[14779,19218],[-14,0],[-43,1],[-39,0],[-35,0],[-30,0],[-20,1],[-44,0],[-34,1],[-100,1],[-31,0],[-24,0],[-34,1],[-40,0],[-33,0],[-28,1],[-35,0],[-30,0],[-5,0],[-37,1],[-35,0],[-25,0],[-29,1],[-42,0],[-50,1],[-5,0],[-13,0],[-75,2],[-18,0],[-22,0],[-14,0],[-19,0],[-21,0],[-23,1],[-24,0],[-52,0],[-24,0],[-30,0],[-13,0],[-36,1],[-38,0],[-18,0],[-37,0],[-15,1],[-13,-1],[-28,1],[-45,0],[-38,0],[-16,0],[-16,0],[-89,0],[-63,0],[-18,0],[-29,0],[-27,0],[-92,-1],[-17,0],[-15,0],[-100,-1],[-20,0],[-14,0],[-30,0],[-33,-1],[-41,0],[-24,0],[-148,-2],[-47,-1],[-58,-1],[-9,0],[-5,0],[-21,0],[-20,0],[-17,0],[-15,-1],[-113,0],[-14,-1],[-57,1],[-61,-3],[-8,1],[-5,0],[-64,-1],[-18,1],[-56,-1],[-22,1],[-27,0],[-58,0],[-32,0],[-20,0],[-19,0],[-73,0],[-77,1],[-256,2],[-85,1],[-134,1],[-44,0],[-20,-1],[-39,0],[-131,0],[-13,0],[-41,1],[-20,3],[-122,-1],[-134,0],[-84,1],[-16,0],[-47,0],[-24,1],[-38,-1],[-55,0],[-112,0],[-19,0],[-25,3]],[[10154,19233],[0,22],[1,482],[0,126],[0,135],[0,711],[1,354],[0,902],[0,241]],[[57194,21202],[17,-21],[3,-6],[21,-17],[22,-20],[37,-32],[45,-38],[145,-67],[37,-18],[24,-12],[36,-17],[14,-6],[7,-4],[8,-5],[25,-18],[98,-76],[79,-51],[19,-7],[5,-2],[6,-3],[18,-6],[14,-4],[12,-4],[46,-20],[93,-42],[34,-28],[23,-14],[35,-21]],[[58117,20643],[0,-35],[0,-14],[-1,-9],[1,-32],[0,-11],[-1,-27],[0,-50],[0,-80],[0,-59],[0,-22],[-1,-50],[0,-25],[0,-1],[-1,-34],[0,-18],[-1,-19],[0,-16],[0,-18],[0,-19],[-1,-2],[-1,-16],[1,-31],[-2,-132],[1,-20],[1,-42],[2,-60],[0,-20],[1,-2],[1,-25],[1,-32],[1,-34],[0,-18],[-1,-30],[-3,-115],[-1,-36],[-1,-46],[1,-75],[0,-22],[0,-30],[2,-67],[2,-48],[-138,0],[-21,0],[-50,0],[-26,0],[-26,-1],[-18,1],[-75,1],[-37,0],[-80,1],[-50,1],[-131,1],[-23,0],[-50,0],[-56,-1],[0,-27],[-1,-218],[1,-122],[0,-85],[1,-41],[0,-16],[0,-52],[0,-175],[0,-97],[0,-19],[0,-40],[1,-91],[0,-44],[-1,-49],[0,-19],[0,-18],[0,-31],[-2,-25],[0,-36],[0,-24],[0,-29],[-1,-29],[0,-41],[-1,-19],[1,-37],[0,-30],[1,-28],[1,-31],[-11,-1],[-5,-3],[-8,-1],[-11,0],[-17,1],[-8,2],[-17,5],[-14,0],[-14,1],[-17,0],[-26,0],[-20,0],[-29,0],[-23,0],[-41,0],[-166,1],[-26,0],[-27,0],[-41,1],[-98,0],[-92,-1],[-26,0],[-114,0],[-276,0],[-21,0],[-125,0],[-1,0],[-57,0],[-59,0],[-83,0],[-65,0],[-25,2],[-67,-2],[0,-176],[0,-70],[0,-53],[0,-12],[-1,-68],[0,-4],[6,-20],[-2,-33],[-35,-4],[-18,3],[-3,1],[-6,-10],[-3,-4],[-8,-13],[-9,-12],[-15,-7],[-17,-7],[-5,-2],[-34,-16],[-15,-7],[-20,-10],[-17,-7],[-13,-5],[-3,-1],[-21,-4],[-14,0],[-13,3],[-5,1],[-9,3],[-58,16],[-17,-4],[-10,-12],[-15,-16],[-9,-14],[-8,-10],[-21,-30],[-17,-13],[-27,1],[-20,26],[6,19],[1,4],[9,16],[-14,45],[-8,18],[-33,14],[-13,2],[-25,5],[-28,-20],[-35,0],[-28,1],[-57,8],[-4,3],[-11,11],[-18,18],[-41,19],[-31,9],[-28,0],[-20,1],[-167,-20],[-27,-17],[-18,-7],[-16,-5],[-40,4],[-13,3],[-7,0],[-14,0],[-9,-1],[-1,0],[-10,-1],[-3,0],[-11,-1],[-18,-2],[-2,0],[-13,-5],[-18,-8],[-5,-2],[-9,0],[-8,-1],[-3,1],[-15,4],[-16,4],[-14,4],[-21,5],[-6,2],[-3,7],[-9,23],[-14,-6],[-6,-10],[-3,-5],[-6,-4],[-10,-6],[-17,-8],[-13,-5],[-13,0],[-19,-11],[-18,-5],[-24,0],[-13,4],[-20,1],[-6,3],[-12,5],[0,-17],[-7,-29],[0,-18],[-2,-180],[-1,-245],[2,-35],[5,-90],[-1,-122]],[[54152,16523],[-46,-1],[-27,0],[-52,2],[-15,0],[-19,0],[-14,1],[-24,0],[-14,0],[-27,-2],[-13,-1],[-15,-1],[-13,0],[-94,1],[-31,1],[-21,0],[-32,0],[-52,0],[-20,0],[-22,0],[-86,-3],[-23,0],[-27,0],[-16,0],[-61,1],[-18,0],[-14,-1],[-36,-2],[-15,-1],[-17,0],[-26,2],[-18,1],[-13,-1],[-28,-1],[-17,-1],[-17,-1],[-22,-1],[-37,-1],[-19,0],[-19,0],[-38,-1],[-13,0],[-22,-1],[-23,-2],[-66,3],[-65,-1],[-63,1],[-14,0],[-35,1],[-21,0],[-17,0],[-6,0],[-40,0],[-13,0],[-19,0],[-26,-1],[-5,0],[-19,1],[-51,0],[-3,0],[-14,0],[-28,0],[-13,0],[-16,0],[-25,0],[-14,0],[-17,0],[-17,-1],[-20,0],[-20,0],[-17,0],[-42,1],[-33,0],[-94,1],[-35,0],[-40,1],[-30,0],[-22,0],[-19,0],[-57,0],[-48,0],[-14,-4],[-17,2],[-52,0],[-39,1],[-13,0],[-34,1],[-19,1],[-30,2],[-13,0],[-16,0],[-19,0],[-26,-1],[-25,-1],[-28,1],[-31,1],[-16,0],[-14,1],[-43,-1],[-36,0],[-33,0],[-21,1],[-68,2],[-40,1],[-23,0],[-29,-1],[-15,0],[-17,-1],[-15,0],[-18,0],[-29,1],[-36,2],[-34,1],[1,50],[0,20],[0,18],[0,18],[0,26],[0,96],[0,18],[0,70],[0,22],[0,27],[0,83],[0,20],[0,84],[0,61],[0,62],[0,40],[0,30],[0,52],[0,61],[0,62],[0,61],[0,96],[0,28],[0,41],[1,73],[0,4]],[[51031,17748],[40,0],[-1,122],[1,123],[0,61],[2,185],[0,18],[1,151],[1,42],[0,15],[0,20],[0,19],[0,27],[1,77],[1,88],[0,20],[0,46],[0,47],[0,44],[0,123],[-1,123],[-2,124],[-65,-1],[-66,0],[-63,0],[-64,-1],[-5,0],[-64,0],[-70,-1],[-50,0],[-76,-1],[1,124],[1,50],[0,74],[0,54],[1,64],[0,58],[0,82],[1,52],[0,70],[0,116],[0,17],[1,103],[0,111],[0,23],[0,29],[-1,34],[0,40],[0,25],[0,27],[0,74],[0,21],[1,21],[0,55],[0,22],[0,46],[0,69],[0,17],[-56,0],[-16,0],[-28,0],[-30,0],[-1,198],[0,17],[0,35],[0,38],[-1,62],[0,22],[0,40],[-1,79],[0,106],[0,21],[0,31],[0,45],[-1,48],[1,72],[0,28],[0,15],[0,124],[-13,9],[0,15],[0,4],[0,26],[0,16],[0,2],[1,91],[0,36],[-29,42]],[[35344,20692],[-28,-2],[-22,1],[-1,0],[-13,0],[-16,0],[-49,-3],[-131,1],[-262,-2],[-272,-1],[-123,0],[-130,-1],[-263,-1],[-109,0],[-74,0],[-78,0],[-69,1],[-58,0],[0,-154],[0,-7],[0,-82],[2,-7],[0,-240],[0,-7],[0,-60],[1,-187],[0,-37],[0,-66],[0,-109],[0,-37],[1,-54],[1,-204],[2,-183],[1,-55],[0,-50],[-1,-22],[0,-30],[0,-32],[0,-32],[1,-77],[-1,-247],[0,-24],[0,-144],[0,-79],[-1,-71],[0,-32],[0,-57],[0,-87],[0,-26],[0,-37],[0,-79],[0,-35],[0,-69],[1,-246],[63,0],[0,-219],[0,-8],[0,-37],[0,-42],[0,-176],[1,-67],[1,-178],[0,-245],[0,-198],[-1,-49],[0,-57],[0,-27],[0,-161]],[[33717,16256],[-13,0],[-85,-1],[-21,0],[-75,-1],[-67,2],[-80,1],[-35,0],[-164,1],[-36,0],[-1,0],[-207,0],[-91,1],[-171,0],[-19,0],[-143,1],[-96,-2],[-26,1],[-2,0],[-83,1],[-22,0],[-99,0],[-20,-1],[-69,0],[-120,-1],[-39,0],[-14,3],[-38,-1],[-184,4]],[[31697,16264],[-12,15],[-41,51],[-148,33],[-78,66],[-3,26],[-10,84],[-89,42],[-17,7],[-26,88],[-13,42],[-4,12],[-2,8],[-50,3],[-68,33],[-106,43],[-14,6],[-44,17],[-35,36],[-50,51],[-107,-18],[-32,-6],[-25,12],[-121,54]],[[30602,16969],[-35,31],[-25,35],[-39,51],[0,2],[-9,25],[-2,5],[-3,7],[-1,5],[-1,3],[-4,9],[-2,7],[-10,28],[-18,33],[-11,19],[0,1],[-4,24],[-14,20],[-12,11],[-12,9],[-31,-1],[-1,0],[-2,-1],[-13,-9],[-1,-1],[-15,-18],[-1,-2],[-9,-16],[0,-1],[-12,-25],[-11,-9],[-18,-2],[-14,3],[-10,11],[0,1],[4,15],[0,2],[12,18],[3,17],[-7,25],[-8,14],[-1,1],[-12,10],[-1,1],[-22,14],[-1,0],[-17,6],[-12,-4],[-8,-2],[-20,-7],[-19,-7],[-22,-7],[-48,-16],[-61,-21],[-59,4],[-53,10],[-39,8],[-16,3],[-1,0],[-14,23],[-36,65],[-9,5],[-33,16],[-60,30],[-36,18],[-371,187],[0,4],[-7,9],[-23,17],[-14,10],[-7,5],[-175,103],[-11,6],[-4,2],[-6,4],[-4,2],[-3,2],[-15,9],[-8,5],[-10,6],[-2,1],[-9,5],[-21,12],[-44,-1],[-219,-7],[-32,-1],[-44,14],[-90,29],[-1,2],[-7,10],[-3,4],[-21,0],[-1,-6],[-70,39],[-18,9],[-35,20],[-4,2],[-36,20],[-83,45],[-37,14],[-106,43],[-45,61],[-44,32],[-28,21],[-32,24],[-41,30],[-16,-8],[-55,-25],[-2,-1],[-7,-3],[-2,0],[-96,-3],[-5,0],[-6,0],[-9,0],[-15,-1],[-24,0],[-14,6],[-41,-7],[-3,0],[-14,0],[-13,3],[-15,6],[-4,22],[8,22],[16,20],[19,12],[20,4],[16,3],[29,7],[17,9],[10,12],[-9,14],[-15,3],[-4,1],[-40,36],[-15,13],[-64,57],[-72,63],[-71,4],[-43,2],[-49,132],[-167,59],[-7,5],[-148,114],[-31,24],[-45,34],[-27,28],[-33,34],[-3,3],[-55,56],[-2,2],[-28,10],[-4,1],[-32,11],[-25,9],[-37,12],[-5,2],[-134,46],[-62,47],[-24,18],[-98,87],[-108,95],[-364,322],[-153,136],[-3,2],[-13,6],[-4,2],[-19,9],[-16,8],[-6,2],[-18,-1],[-3,-1],[-14,-7],[-4,-2],[-10,-11],[-5,-11],[-32,-16],[-24,-12],[-3,-1],[-78,-39],[-50,-25],[-19,-9],[-16,-3],[-20,-1],[-16,5],[-13,4],[-11,2],[-14,2],[-20,1],[-9,0],[-16,4],[-36,0],[-27,1],[-1,0],[-17,4],[-15,3],[-32,3],[-16,2],[-35,3],[-23,2],[-15,17],[-35,41],[-17,19],[-11,13],[-62,71],[-114,167],[0,1],[0,3],[12,78],[5,33],[1,4],[-32,53],[-11,20],[-1,1],[-3,3],[-3,5],[-39,12],[-20,3],[-10,-1],[-11,0],[-14,-4],[-19,-5],[-16,-7],[-9,-4],[-6,-3],[-13,3],[-15,4],[-35,16],[-4,2],[-13,4],[-25,13],[-6,3],[-22,8],[-19,-1],[-10,2],[-19,2],[-1,1],[-45,14],[-10,1],[-16,1],[-11,-4],[-9,-3],[-13,1],[-5,1],[0,1],[-17,15],[0,1],[-20,5],[-1,-1],[-18,-13],[-14,-3],[-1,0],[-16,8],[-23,11],[-19,8],[-6,3],[-5,3],[-8,5]],[[51031,17748],[-22,0],[-63,0],[-135,0],[-25,0],[-1,0],[-15,0],[-95,0],[-49,0],[-14,-2],[-20,0],[-108,0],[-16,0],[-63,3],[-31,0],[-91,0],[-19,0],[-18,0],[-26,0],[-24,0],[-27,0],[-18,0],[-77,0],[-25,-1],[-46,0],[-20,0],[-26,0],[-42,0],[-48,-1],[-108,-1],[-37,0],[-17,0],[-17,0],[-27,0],[-17,0],[-31,0],[-13,0],[-101,-1],[-28,0],[-33,0],[-27,0],[-18,0],[-51,0],[-104,0],[-27,0],[-4,0],[-24,-1],[-68,0],[-35,0],[-19,-1],[-62,0],[-23,0],[-24,0],[-14,-1],[-11,0],[-2,0],[-6,2],[-6,1],[-103,0],[-58,-1],[-23,-1],[-42,0],[-26,0],[-80,0],[-17,0],[-107,0],[-33,0],[-32,0],[-97,2],[-25,0],[-22,-1],[-26,-1],[-24,0],[-1,0],[-22,-1],[-14,0],[-27,0],[-17,1],[-57,-1],[-71,0],[-16,0],[-44,0],[-14,0],[-15,0]],[[47900,17742],[-24,-3],[-3,0],[-71,0],[-31,0],[-38,0],[-16,0],[-55,0],[-22,0],[-105,-1],[-25,-1],[-14,0],[-18,0],[-16,0],[-14,0],[-22,0],[-25,0],[-22,0],[-31,0],[-16,2],[-2,0],[-13,0],[-25,0],[-26,0],[-30,0],[-18,0],[-28,0],[-23,0],[-14,1],[-6,1],[-2,0],[-12,0],[-13,0],[-11,0],[-25,2],[-33,-2],[-57,0],[-23,0],[-83,0],[-32,0],[-45,0],[-25,0],[-15,0],[-17,0],[-155,0],[-264,2],[-17,0],[-246,3],[-125,-2],[-149,-1],[-122,-2],[-70,0],[-16,0],[-28,-1],[-80,0],[-77,-1],[-136,-1],[-85,-1],[-160,-1],[-30,0],[-7,0],[-40,0],[-54,0],[-10,0],[-128,-2],[-101,-1],[-32,-1],[-104,3],[-23,1],[-56,-1],[-69,-1],[-136,0],[-87,-2],[-46,0],[-132,0],[-69,0],[-29,0],[-35,0],[-127,-1],[-4,0],[-36,0],[-94,-1],[-81,0],[-56,-1],[-63,0],[-45,2],[-24,1],[-52,2],[-11,0],[-17,0],[-44,0],[-6,0],[-260,0]],[[42916,17734],[-3,28],[-4,29],[14,26],[10,16],[20,21],[16,15],[27,15],[23,6],[16,-1],[26,-14],[13,-24],[1,-28],[-7,-18],[-6,-31],[15,-15],[20,-1],[18,8],[37,60],[2,71],[-14,16],[-16,7],[-18,4],[-19,0],[-24,2],[-11,16],[6,35],[9,36],[8,20],[9,22],[19,22],[21,19],[25,12],[15,16],[1,16],[-9,9],[-16,23],[-15,9],[-23,2],[-16,-6],[-19,-1],[-16,4],[-12,25],[11,28],[13,12],[14,8],[29,6],[17,8],[-1,50],[0,15],[-1,52],[14,18],[-2,14],[-1,22],[0,5],[0,15],[-11,10],[-17,7],[-10,0],[-19,1],[5,8],[47,80],[6,9],[36,61],[4,4],[3,3],[31,5],[33,1],[21,2],[28,1],[3,11],[-2,51],[13,11],[17,15],[9,18],[14,14],[7,13],[5,7],[11,21],[90,-25],[14,-14],[11,0],[76,47],[6,6],[2,21],[0,4],[26,36],[16,20],[8,12],[37,77],[3,20],[1,25],[-3,20],[10,21],[19,6],[27,-7],[13,-13],[78,56],[23,-14],[32,-80],[92,34],[77,57],[40,29],[2,2],[27,17],[32,30],[14,52],[17,16],[18,-1],[17,-7],[9,-5],[37,2],[52,24],[39,10],[51,-3],[27,-12],[26,-24],[14,-30],[4,-29],[7,-7],[20,1],[40,36],[12,9],[27,2],[40,20],[38,40],[21,37],[40,5],[5,-12],[2,-3],[0,-1],[2,-16],[1,-17],[-7,-23],[-7,-24],[10,-23],[57,33],[29,21],[4,3],[3,2],[16,16],[-9,21],[-14,21],[-12,15],[-2,4],[-15,5],[-43,-11],[-14,7],[3,17],[15,7],[18,5],[21,4]],[[42916,17734],[0,-30],[-11,-29],[-9,-19],[7,-15],[43,1],[17,6],[18,5],[18,3],[21,-7],[18,-24],[7,-25],[4,-17],[-11,-26],[-5,-22],[4,-25],[7,-7],[6,-5],[25,-11],[16,-7],[13,-15],[15,-14],[21,-6],[13,0],[17,4],[22,5],[18,-5],[9,-24],[12,-30],[8,-86],[-2,-11],[-17,-25],[-11,-22],[-1,-55],[5,-14],[1,-37],[5,-15],[-17,-18],[-13,-12],[-14,-18],[-3,-13],[-1,-12],[4,-15],[14,-33],[-15,-38],[-17,-10],[-11,-28],[-34,-81],[-20,-18],[-37,-13],[-24,-4],[-22,-17],[-8,-23],[-29,-41],[-2,-44],[2,-24],[0,-9],[4,-60],[-28,-47],[-36,-43],[-30,0],[-33,17],[-39,28],[-12,5],[-29,-2],[-21,-16],[-48,-91],[2,-2],[38,2],[21,0],[17,-7],[27,-24],[19,-23],[5,-9],[-6,-10],[-8,-16],[-16,-31],[-38,-25],[-35,8],[-29,6],[-16,-15]],[[42681,16304],[-87,-40],[-9,0],[-24,0],[-279,0],[-450,-1],[-68,-2],[-120,1],[-123,0],[-328,2],[-53,0],[-110,0],[-293,2],[-131,0],[-65,0],[-95,1],[-14,0],[-14,0],[-72,0],[-116,1],[-15,0],[-63,-1],[-57,-1],[-104,-1],[-42,-1],[-117,-1],[-210,2],[-56,3],[-177,-2],[-37,-1],[-17,0],[-30,-1],[-130,1],[-111,-2],[-21,-1],[-72,1],[-110,3],[-24,-1],[-25,0],[-30,1],[-157,0],[-36,0],[-25,0],[-24,0],[-72,0],[-58,1],[-15,-2],[-123,0],[-64,-1],[-26,1],[-36,1],[-16,0],[-52,0],[-63,0],[-1,0],[-133,0],[-80,0],[-6,0],[-42,0],[-57,0],[-97,0],[-20,0],[-88,0],[-65,1],[-193,-2],[-14,0],[-117,0],[-43,0],[-81,1],[-36,1],[-14,-1],[-83,-1],[-19,0],[-22,0],[-44,-1],[-26,2],[-19,0],[-66,-1],[-17,-1],[-46,0],[-43,-1],[-17,0],[-52,2],[-20,-2],[-259,-1],[-113,0],[-35,0],[-112,-1],[-101,-2],[-47,1],[-112,1],[-255,1],[-59,0],[-45,1],[-26,0],[-114,-2],[-21,0],[-56,-1],[-82,-2],[-118,0],[-207,-4],[-3,0],[-52,0],[-49,1],[-212,-2],[-63,0],[-185,1],[-76,0],[-65,0],[-20,0],[-34,1],[-106,0],[-110,1]],[[64435,16223],[-7,0],[-104,0],[-20,0],[-20,1],[-26,0],[-189,2],[-50,0],[-15,1],[-12,0],[-15,-1],[-17,0],[-17,1],[-25,0],[-20,0],[-23,1],[-15,0],[-10,0],[-3,0],[-48,-1],[-14,0],[-21,1],[-68,0],[-46,1],[-59,2],[-32,1],[-84,1],[-43,0],[-41,1],[-9,0],[-21,-2],[-72,1],[-60,1],[-89,0],[-73,0],[-168,1],[-100,0],[-22,2],[-59,1],[-258,1],[-195,2],[-71,0],[-8,-5],[-56,1],[-49,0],[-29,0],[-44,2],[0,-79],[0,-164],[-1,-104],[0,-20],[0,-22],[0,-17],[0,-23],[-1,-62],[0,-69],[0,-54],[-1,-167],[0,-38],[0,-67],[-1,-98],[-1,-159],[2,-28],[0,-63],[0,-39],[0,-17],[-1,-19],[0,-19],[0,-22],[0,-47],[0,-20],[0,-59],[-130,0],[-130,0],[-122,0],[-139,0],[-65,0],[-30,0],[-30,0],[-135,0],[-117,-1],[-14,0],[-63,1],[-15,0],[-51,0],[-44,0],[-20,0],[-196,2],[-249,1],[0,-140],[0,-21],[0,-86],[0,-70],[0,-56],[0,-133],[-1,-107],[-2,-60],[2,-199],[0,-44],[0,-127],[0,-66],[-4,-192],[-1,-53],[0,-34],[0,-26],[0,-32],[0,-3],[0,-44],[1,-42],[0,-66],[4,-47],[0,-22],[-1,-67],[0,-71],[0,-49],[0,-42],[-1,-69],[1,-27],[0,-32],[0,-70],[0,-56],[1,-61],[-1,-51],[0,-29],[1,-24],[-1,-19],[0,-122],[0,-19],[1,-127],[0,-4],[0,-99],[0,-49],[0,-76],[0,-116]],[[60453,11817],[-80,0],[-24,-1],[-162,1],[-86,1],[-48,0],[-119,1],[-46,0],[-33,0],[-36,1],[-21,0],[-6,0],[-9,-1],[-22,-1],[-59,2],[-35,1],[-1,0],[-18,0],[-14,1],[-37,0],[-35,1],[-37,0],[-108,1],[-43,0],[-29,0],[-8,0],[-6,0],[-31,0],[-31,1],[-15,1],[-24,0],[-23,-1],[-18,1],[-31,0],[-61,-1],[-35,0],[-16,0],[-14,0],[-22,1],[-15,0],[-17,-1],[-14,0],[-65,3],[-95,-1]],[[58804,11827],[-72,1],[-61,0],[-23,0],[-124,1],[-94,1],[-16,0],[-162,0],[-63,2],[-34,1],[-95,0],[-35,1],[-67,1],[-34,0],[-20,0],[-18,1],[-95,1],[-79,-2],[-166,5],[-82,1],[-15,0],[-24,1],[-4,0],[-39,0],[-28,0],[-47,1],[-12,0],[-17,1],[-24,0],[-49,2],[-106,2],[-9,0],[-16,0],[-52,0],[-29,0],[-54,0],[-108,0],[-92,1],[-23,0],[-1,0],[-68,0],[-45,0],[-30,1],[-100,-1],[-29,0],[-65,0],[-56,1],[-14,1],[-111,-1],[-37,0],[-40,0],[-68,-1],[-55,0],[-44,0],[-161,2],[-101,0],[-46,0],[-8,0],[-11,0],[-187,0],[-25,0],[-49,0],[-194,1],[-61,-1],[-11,-9],[-20,7],[-80,1],[-34,0],[-32,0],[-22,0],[-63,-1],[-20,1],[-46,-1],[-70,0],[-54,-1],[-87,2],[-20,-1],[-80,-1],[-91,-1],[-30,0],[-24,0],[-196,0]],[[54130,11847],[0,94],[0,153],[1,246],[0,32],[0,215],[1,107],[1,54],[1,85],[1,20],[2,15],[-2,152],[0,39],[0,20],[0,57],[1,5],[0,115],[0,19],[0,51],[2,247],[0,86],[1,38],[0,123],[0,35],[0,126],[0,31],[0,5],[1,50],[0,18],[0,42],[0,71],[1,53],[0,63],[0,89],[1,159],[0,246],[1,49],[0,19],[0,55],[1,122],[0,53],[0,23],[0,48],[0,27],[2,26],[2,24],[0,44],[0,77],[0,28],[0,18],[0,25],[0,40],[1,122],[-1,188],[0,55],[0,37],[1,35],[1,111],[0,31],[0,7],[1,46],[1,36],[0,124],[0,47],[0,58],[0,137],[0,3]],[[58117,20643],[16,-16],[27,-27],[17,-14],[13,-11],[81,-79],[35,-32],[51,-46],[6,-6],[21,-18],[23,-21],[34,-30],[61,-50],[8,-6],[2,-3],[18,-25],[7,-5],[2,-1],[2,-2],[2,-1],[1,-1],[7,-6],[17,-12],[20,-14],[15,-11],[49,-52],[56,-54],[34,-44],[51,-60],[44,-64],[57,-56],[51,-51],[26,-32],[14,-16],[48,-42],[67,-48],[119,-58],[39,-26],[52,-16],[96,-51],[22,-29],[16,-22],[18,-23],[17,-23],[17,-23],[41,-53],[3,-11],[6,-23],[7,-25],[5,-23],[0,-8],[0,-6],[0,-25],[0,-5],[1,-18],[0,-17],[-1,-6],[-1,-10],[-1,-5],[-1,-7],[-8,-24],[-2,-4],[-7,-21],[-1,-1],[0,-1],[-12,-25],[-6,-24],[-1,-3],[-3,-20],[0,-14],[0,-10],[2,-14],[2,-10],[1,-5],[3,-10],[3,-7],[1,-1],[2,-6],[5,-10],[13,-15],[12,-13],[7,-6],[9,-7],[10,-6],[13,-7],[4,-2],[17,-7],[21,-4],[14,2],[19,2],[14,3],[15,4],[24,2],[6,1],[23,1],[7,0],[7,0],[3,-1],[14,-3],[11,-3],[1,-1],[6,-3],[11,-7],[28,-22],[8,-10],[24,-25],[20,-12],[21,-12],[2,-1],[24,-11],[2,-6],[7,-20],[1,-5],[1,-2],[1,-5],[1,-6],[3,-12],[2,-6],[1,-2],[3,-8],[4,-5],[10,-11],[5,-6],[14,-6],[19,-4],[25,9],[16,8],[15,21],[17,29],[8,6],[6,3],[5,6],[6,6],[10,-1],[21,-2],[17,-1],[2,0],[4,-2],[2,0],[6,-3],[18,-6],[5,-2],[10,-4],[5,-3],[2,-1],[0,-1],[5,-4],[4,-4],[6,-6],[7,-7],[1,-2],[1,-1],[6,-10],[2,-3],[5,-9],[1,-4],[2,-3],[4,-5],[6,-9],[4,-7],[7,-10],[11,-14],[2,-3],[10,-11],[4,-4],[2,-3],[4,-5],[6,-8],[12,-20],[8,-13],[1,-2],[1,-3],[7,-15],[10,-26],[1,-2],[12,-26],[13,-22],[10,-15],[14,-17],[22,-26],[11,-14],[9,-15],[8,-11],[4,-5],[0,-1],[4,-8],[1,-3],[2,-4],[1,-3],[0,-1],[1,-2],[2,-8],[2,-5],[0,-10],[1,-2],[0,-6],[1,-8],[-1,-3],[0,-2],[-1,-3],[0,-2],[-3,-13],[-2,-14],[-1,-3],[-7,-20],[-4,-10],[-1,-2],[-1,-3],[-4,-10],[-2,-9],[-2,-6],[0,-15],[0,-2],[0,-2],[1,-4],[5,-13],[1,-4],[3,-9],[7,-10],[2,-3],[9,-7],[5,-5],[12,-7],[10,-5],[2,-1],[14,-5],[16,-3],[7,-1],[10,-1],[5,0],[9,0],[17,4],[14,6],[15,8],[40,28],[19,12],[2,2],[1,0],[25,17],[51,31],[1,0],[20,10],[18,7],[24,8],[18,6],[4,2],[3,1],[2,0],[5,1],[6,0],[8,0],[5,0],[4,-2],[1,0],[6,-2],[1,0],[2,-1],[4,-2],[2,-1],[15,-10],[12,-7],[0,-1],[6,-4],[6,-5],[1,-1],[2,-2],[12,-10],[3,-3],[0,-1],[3,-3],[2,-1],[3,-1],[6,-4],[22,-12],[23,-12],[22,-10],[25,-8],[28,-11],[37,-12],[23,-10],[16,-7],[14,-5],[18,-6],[22,-4],[13,0],[10,3],[7,1],[25,8],[22,10],[1,0],[1,1],[11,8],[1,1],[12,5],[3,1],[9,2],[2,0],[4,1],[7,1],[6,1],[2,0],[16,-1],[1,-1],[4,-1],[10,-3],[16,-4],[4,-1],[3,-2],[9,-4],[28,-12],[9,-3],[5,-2],[9,-4],[12,-5],[2,-1],[13,-5],[15,-6],[15,-4],[29,-7],[13,-4],[32,-10],[24,-7],[8,-3],[24,-8],[13,-6],[17,-4],[19,-2],[13,0],[13,0],[2,1],[29,2],[1,0],[13,2],[6,0],[7,1],[0,1],[2,0],[14,2],[10,1],[20,1],[17,0],[20,2],[18,1],[14,5],[18,7],[16,7],[15,8],[14,8],[19,10],[4,1],[8,2],[3,0],[5,2],[4,-1],[3,0],[12,-2],[10,-2],[20,-6],[5,-1],[2,-1],[7,-2],[8,-3],[6,-4],[14,-7],[16,-12],[21,-15],[14,-8],[25,-11],[23,-10],[4,-1],[20,-7],[17,-2],[26,-1],[1,0],[3,0],[21,-5],[28,-6],[21,-7],[23,-4],[21,-3],[7,-2],[28,-4],[8,-1],[52,-6],[48,-5],[32,1],[31,1],[9,1],[41,7],[32,5],[61,4],[77,6],[17,1],[31,-1],[56,-3],[51,-7],[3,-1],[43,-7],[44,-9],[39,-6],[43,-14],[54,-18],[51,-22],[5,-2],[39,-22],[38,-23],[9,-6],[38,-30],[48,-39],[31,-32],[28,-34],[5,-7],[14,-23],[2,-3],[27,-50],[6,-20],[8,-28],[10,-47],[10,-39],[6,-18],[2,-6],[37,-72],[24,-34],[5,-6],[28,-40],[6,-20],[1,-5],[3,-12],[4,-19],[0,-53],[-5,-63],[-2,-45],[0,-58],[5,-38],[4,-14],[1,-4],[3,-6],[0,-1],[5,-8],[0,-1],[17,-34],[4,-9],[19,-38],[12,-22],[27,-45],[14,-23],[26,-40],[13,-19],[4,-6],[39,-48],[25,-28],[23,-28],[25,-28],[26,-26],[27,-26],[19,-17],[36,-30],[29,-23],[16,-14],[39,-31],[29,-22],[35,-25],[36,-22],[40,-23],[28,-15],[31,-16],[18,-10],[20,-9],[9,-7],[14,-10],[31,-29],[24,-26],[13,-18]],[[30602,16969],[1,-251],[0,-23],[1,-194],[0,-245],[0,-50],[0,-32],[1,-165],[-3,-159],[0,-25],[0,-64],[0,-87],[0,-50],[-1,-110],[0,-94],[-1,-95],[-1,-57],[0,-40],[0,-33],[0,-52],[-1,-104],[0,-19],[0,-144],[-1,-39],[0,-60],[-1,-85],[0,-39],[0,-123],[0,-202],[0,-40],[-1,-71],[0,-179],[-1,-31],[0,-84],[0,-9],[0,-61],[0,-60],[0,-90],[0,-84],[0,-72],[2,-211],[0,-1],[1,-35],[-18,1],[-98,1],[-42,0],[-110,0],[-29,0],[-5,0],[-89,-1],[-66,0],[-65,0],[-191,-1],[-12,0],[-56,-1],[-58,1],[-179,1],[-20,0],[-130,2],[-131,1],[-43,0],[-216,2],[-170,-3],[-58,2],[-28,0],[-27,0],[-90,-1],[-14,0],[-127,0],[-97,0],[-164,2],[-184,-6],[-76,-2],[-244,-4],[-17,0],[-122,-1],[-78,0],[-56,-1],[-1,-64],[-2,-181],[-1,-164],[0,-75],[0,-1],[-1,-55],[-2,-193],[-4,-250],[-1,-97],[0,-24],[-1,-52],[-1,-70],[0,-6],[-1,-97],[0,-19],[-2,-125]],[[27470,11819],[-1,0],[-95,3],[-32,1],[-31,0],[-54,1],[-47,0],[-21,-1],[-98,1],[-14,0],[-59,0],[-88,1],[-77,0],[-65,1],[-45,0],[-54,1],[-163,-1],[-40,-1],[-57,0],[-31,-1],[-26,0],[-13,0],[-54,0],[-18,0],[-20,0],[-99,-1],[-148,-2],[-112,3],[-81,2],[-65,-1],[-47,0],[-70,0],[-30,0],[-14,2],[-34,-1],[-15,-1],[-12,0],[-151,1],[-17,0],[-191,0],[-35,0],[-165,1],[-115,1],[-13,0],[-1,0],[-39,1],[-75,1],[-18,-1],[-112,1],[-136,0],[-125,1],[-37,0],[-100,-1],[-121,3],[-31,-1],[-25,-1],[-63,0],[-20,0],[-123,2],[-130,0],[-109,1],[-20,2],[-15,0],[-16,0],[-13,0],[-21,0],[-77,-1],[-121,1],[-74,1],[-65,0],[-15,0],[-79,0],[-27,0],[-135,-1]],[[22910,11836],[-87,0],[-40,0],[-113,-2],[-25,0],[-51,-1],[-51,-1],[-13,0],[-109,-1],[-162,-2],[-31,1],[-29,-5],[-45,5],[-19,0],[-24,-1],[-111,0],[-43,0],[-15,0],[-78,-1],[-124,-1],[-46,0],[-62,0],[-25,0],[-65,1],[-62,1],[-115,0],[-30,0],[-115,1]],[[21220,11830],[-1,77],[0,80],[0,59],[0,30],[1,120],[0,33],[0,50],[0,1],[0,43],[0,33],[0,1],[0,149],[0,66],[0,62],[0,60],[1,58],[0,65],[0,23],[0,180],[0,43],[0,128],[0,122],[0,63],[0,75],[0,25],[0,85],[-3,247],[-3,248],[0,94],[-1,66],[0,23],[-1,63],[0,18],[0,20],[0,40],[0,1],[0,43],[0,127],[0,127],[0,119],[-1,61],[0,18],[0,168],[-1,248],[1,248],[2,177],[1,70],[-2,130],[-1,117],[-1,203],[-1,20],[0,26],[0,82],[-1,55],[-1,109],[-1,131],[0,117],[0,22],[0,95],[-1,31],[-4,31],[3,43],[0,1],[1,142],[-3,62],[1,62],[0,36],[0,73],[2,30],[1,105],[-2,84],[-2,48],[-2,76]],[[14779,19218],[0,-44],[0,-22],[0,-27],[0,-30],[0,-45],[0,-26],[0,-26],[-1,-28],[0,-26],[-1,-34],[-1,-50],[-1,-17],[0,-20],[-1,-31],[1,-21],[0,-12],[0,-41],[0,-81],[3,-160],[0,-21],[-1,-19],[0,-207],[0,-149],[0,-18],[0,-19],[0,-42],[0,-35],[0,-26],[0,-55],[1,-28],[0,-97],[0,-17],[130,-5],[34,-2],[0,-17],[0,-47],[1,-102],[0,-26],[1,-42],[0,-21],[0,-29],[0,-29],[1,-29],[0,-25],[0,-21],[1,-51],[1,-55],[0,-63],[1,-131],[-1,-24],[0,-25],[0,-24],[1,-110],[0,-18],[0,-52],[0,-75],[0,-25],[0,-99],[0,-44],[0,-23],[0,-95],[1,-131],[0,-19],[1,-146],[4,-17],[-3,-18],[1,-45],[0,-1],[0,-62],[0,-37],[1,-36],[1,-56],[0,-9],[0,-17],[0,-31],[0,-106],[1,-35],[0,-43],[0,-43],[0,-21],[0,-22],[0,-86],[0,-40],[0,-19],[0,-25],[0,-36],[0,-20],[0,-32],[0,-93],[0,-32],[0,-60],[0,-33],[0,-55],[0,-47],[0,-46],[0,-29],[0,-18],[0,-5],[0,-46],[0,-78],[0,-45],[0,-23],[1,-103],[0,-56],[0,-47],[0,-21],[0,-19],[0,-49],[0,-47],[1,-37],[0,-46],[0,-28],[0,-25],[0,-41],[-1,-42],[0,-38],[0,-50],[0,-65],[0,-25],[0,-90],[0,-28],[0,-70],[0,-18],[0,-25],[0,-23],[0,-26],[0,-76],[0,-17],[0,-37],[0,-81],[0,-36],[0,-24],[0,-27],[0,-26],[-1,-158],[0,-1],[1,-89],[1,-249],[0,-80],[2,-38],[1,-17],[0,-22],[0,-12],[2,-181],[0,-22],[0,-85],[0,-89],[1,-19],[0,-62],[0,-25],[0,-11],[0,-42],[-1,-23],[0,-1],[2,-22],[0,-32],[0,-43],[0,-43],[0,-39],[0,-21],[1,-23],[0,-34]],[[14965,11846],[-48,0],[-21,0],[-15,0],[-19,0],[-36,1],[-11,-1],[-9,0],[-15,0],[-22,1],[-19,0],[-23,0],[-24,0],[-18,0],[-21,0],[-26,0],[-31,0],[-41,0],[-43,1],[-39,2],[-14,0],[-13,-2],[-16,1],[-67,0],[-99,1],[-23,0],[-26,1],[-27,0],[-17,0],[-18,0],[-23,1],[-38,0],[-35,0],[-18,0],[-45,0],[-13,0],[-51,0],[-27,0],[-30,1],[-28,0],[-27,0],[-22,0],[-16,0],[-80,0],[-19,0],[-26,0],[-18,0],[-16,0],[-33,1],[-28,0],[-127,2],[-16,-1],[-17,2],[-13,-1],[-17,0],[-40,1],[-42,0],[-37,1],[-42,0],[-79,0],[-66,1],[-30,0],[-116,1],[-21,0],[-28,1],[-66,0],[-72,0],[-39,-1],[-21,0],[-16,0],[-51,0],[-68,0],[-19,1],[-28,-1],[-53,0],[-34,0],[-63,0],[-32,0],[-20,0],[-15,0],[-17,0],[-47,0],[-31,0],[-16,0],[-22,0],[-26,0],[-26,0],[-20,0],[-50,0],[-25,0],[-7,-1],[-23,0],[-27,0],[-22,0],[-29,0],[-27,0],[-20,0],[-18,0],[-20,-1],[-34,0],[-10,0],[-64,0],[-35,0],[-26,0],[-27,0],[-15,0],[-17,0],[-18,-1],[-14,0],[-27,0],[-38,0],[-43,-1],[-19,0],[-17,0],[-20,0],[-30,0],[-26,0],[-29,0],[-2,0],[-12,0],[-22,0],[-41,-1],[-19,1],[-24,-1],[-18,0],[-21,0],[-48,0],[-19,-1],[-14,0],[-16,0],[-19,0],[-139,-1],[-44,0],[-42,0],[-39,0],[-13,0],[-18,0],[-32,0],[-196,-1],[-23,0],[-20,0],[-96,0],[-82,0],[-41,0],[-26,0],[-13,0],[-17,0],[-26,-2],[-19,-2]],[[10140,11848],[0,154],[1,446],[1,209],[0,52],[1,359],[4,2176],[1,761],[2,853],[0,120],[0,111],[1,588],[0,64],[1,494],[2,998]],[[21220,11830],[-116,-2],[-145,-3],[-120,-2],[-30,0],[-153,-2],[-33,-1],[-54,0],[-131,1],[-89,1],[-169,3],[-48,1],[-75,1],[-137,4],[-117,2],[-143,1],[-119,0],[-111,2],[-135,2],[-27,0],[-63,0],[-8,0],[-54,-1],[-266,3],[-64,-1],[-27,0],[-47,-1],[-116,0],[-129,-1],[-61,2],[-76,1],[-102,1],[-92,0],[-67,0],[-14,0],[-71,0],[-21,0],[-23,1],[-16,0],[-71,0],[-45,0],[-15,0],[-88,-1],[-159,2],[-40,0],[-15,-1],[-27,-1],[-20,0],[-16,0],[-1,0],[-143,0],[-103,-1],[-163,1],[-68,1],[-30,-1],[-84,1],[-24,0],[-48,0],[-83,1],[-38,0],[-142,0],[-81,0],[-179,-1],[-64,0],[-15,1],[-60,-1],[-11,0],[-17,0],[-29,0],[-64,2],[-30,0],[-4,0],[-37,1],[-62,0],[-48,0],[-76,-1],[-79,-1],[-62,-2],[-22,0],[-59,-1],[-22,0],[-18,0],[-75,0],[-177,3],[-15,1],[-67,0]],[[15155,11844],[-70,1],[-120,1]],[[47900,17742],[0,-3],[0,-187],[0,-46],[1,-48],[0,-25],[0,-60],[0,-75],[0,-20],[0,-20],[0,-25],[-1,-36],[0,-50],[0,-29],[0,-42],[0,-57],[0,-19],[0,-38],[-1,-31],[0,-27],[0,-29],[0,-29],[0,-30],[0,-29],[0,-22],[0,-66],[0,-28],[0,-29],[0,-20],[0,-25],[0,-29],[0,-21],[1,-31],[-1,-26],[0,-26],[0,-31],[0,-30],[0,-30],[-1,-30],[0,-29],[0,-20],[0,-24],[0,-18],[-1,-22],[0,-40],[0,-50],[0,-35],[0,-28],[-1,-51],[0,-63],[1,-58],[0,-36],[0,-43],[0,-44],[0,-1],[0,-36],[0,-117],[0,-59],[0,-39],[0,-41],[0,-20],[0,-23],[0,-97],[0,-34],[0,-26],[0,-51],[-1,-69],[0,-93],[0,-34],[0,-3],[0,-86],[0,-34],[0,-19],[0,-24],[0,-46],[0,-32],[0,-91],[0,-79],[0,-19],[1,-60],[0,-41],[0,-22],[0,-24],[0,-20],[-1,-19],[0,-17],[-1,-26],[0,-19],[-1,-6],[0,-15],[-1,-36],[0,-3],[0,-45],[0,-29],[0,-1],[0,-41],[-1,-47],[0,-33],[-1,-29],[0,-24],[0,-50],[-1,-120],[0,-37],[-1,-24],[0,-23],[0,-28],[0,-29],[0,-21],[0,-61],[-1,-28],[0,-33],[0,-20],[1,-21],[0,-199],[0,-47],[0,-49],[0,-48],[0,-36],[-1,-54],[0,-23],[1,-22],[0,-22],[0,-19],[0,-26],[0,-20],[0,-56],[1,-114],[0,-10],[0,-61],[1,-28],[0,-18],[0,-34],[0,-25],[0,-59],[0,-34],[0,-29],[0,-7],[-1,-104],[0,-20],[0,-53],[0,-10],[0,-19],[-1,-104],[0,-3],[0,-70],[0,-34],[1,-98],[0,-45],[0,-38],[-1,-78],[0,-6]],[[47889,11835],[-23,-1],[-59,1],[-79,0],[-79,0],[-195,-1],[-27,0],[-44,0],[-84,0],[-16,-1],[-154,-1],[-18,1],[-56,-2],[-30,-1],[-50,-1],[-26,0],[-146,2],[-26,0],[-37,1],[-41,1],[-100,2],[-1,0],[-54,0],[-34,-1],[-54,-1],[-47,0],[-39,3],[-1,0],[-23,-1],[-17,0],[-20,0],[-21,-1],[-34,1],[-3,0],[-39,-1],[-10,0],[-176,2],[-47,1],[-33,1],[-13,-1],[-17,0],[-40,-1],[-69,0],[-270,0],[-14,-2],[-183,1],[-54,0],[-31,0],[-60,0],[-87,1],[-83,0],[-38,-2],[-228,-2]],[[44759,11832],[0,86],[0,86],[0,22],[1,27],[0,85],[0,37],[0,28],[0,52],[0,102],[0,91],[1,64],[-1,58],[-16,1],[-112,1],[-78,0],[-38,0],[-29,0],[-116,0],[-31,0],[-99,-3],[-110,0],[-23,0],[-43,1],[-19,-1],[-63,1],[-60,1],[-32,0],[-165,-2],[-59,0],[-43,0],[-42,-1],[-35,1],[-1,0],[-20,1],[-88,2],[-13,1],[-19,0],[-30,-3],[-96,1],[-73,2],[-30,0],[-101,2],[-129,2],[-138,1],[-34,1],[-29,0],[-43,1],[-21,-1],[-18,0],[-45,0],[-17,-1],[-38,-1],[-142,-4],[-75,-2],[-50,0],[-3,0],[-29,1],[-24,1],[-75,2],[-41,1],[-55,0],[-20,0],[-33,1],[-3,0],[-109,1],[-141,-4],[-20,0],[-36,-1],[-94,-10]],[[41614,12563],[-2,14],[-12,9],[-41,1],[-27,31],[-17,21],[-7,8],[61,80],[18,15],[19,9],[27,4],[13,11],[0,9],[-12,21],[-57,63],[-26,21],[-29,3],[-32,-25],[-17,-8],[-20,2],[-6,5],[1,14],[0,8],[2,20],[3,11],[29,31],[35,34],[22,6],[22,9],[27,20],[8,16],[-1,16],[7,16],[30,75],[-6,71],[10,10],[28,17],[17,7],[8,2],[14,3],[31,1],[15,-1],[15,-1],[2,1],[26,8],[3,1],[1,0],[2,5],[7,19],[1,3],[6,27],[1,7],[1,23],[15,48],[10,20],[246,187],[12,5],[17,19],[9,15],[11,24],[14,23],[16,15],[6,6],[18,12],[16,12],[19,4],[56,8],[9,1],[35,74],[15,39],[16,38],[8,16],[26,101],[6,9],[134,200],[26,39],[61,80],[17,29],[-9,21],[-20,42],[-18,32],[-39,41],[-56,40],[-28,8],[-45,5],[-25,5],[-32,17],[-6,6],[-24,39],[-28,51],[-39,74],[-1,3],[0,12],[-2,13],[-10,14],[1,9],[15,14],[49,26],[25,23],[7,9],[1,25],[-19,48],[-23,19],[-30,5],[-12,6],[-2,11],[-1,5],[-1,3],[-1,4],[-12,30],[12,12],[34,16],[37,1],[31,-23],[9,0],[10,13],[1,32],[-16,32],[-24,28],[-12,8],[-34,7],[-46,-13],[-23,-18],[-9,1],[-6,5],[-1,5],[0,19],[2,2],[24,25],[86,21],[37,-4],[39,-13],[15,18],[11,41],[1,55],[-2,27],[-15,78],[-9,26],[-10,9],[-27,9],[-9,8],[1,11],[60,48],[19,15],[40,14],[31,-11],[30,-13],[3,1],[14,52],[11,78],[23,50],[12,17],[20,66],[7,36],[-1,33],[6,46],[18,33],[5,20],[0,2],[1,3],[1,3],[1,3],[3,5],[1,2],[18,47],[13,33],[4,8],[0,29],[-9,26],[-24,23],[-11,6],[-17,10],[-15,17],[-8,20],[2,14],[21,19],[50,1],[17,-5],[10,4],[6,19],[-16,32],[-16,18],[-3,22]],[[54130,11847],[-18,0],[-43,0]],[[54069,11847],[-14,0],[-13,0],[-24,0],[-79,0],[-24,0],[-17,0],[-28,0],[-13,0],[-16,0],[-22,0],[-17,0],[-16,0],[-61,0],[-62,0],[-35,0],[-20,0],[-21,0],[-21,0],[-16,0],[-35,0],[-15,0],[-20,0],[-29,0],[-66,0],[-43,0],[-17,0],[-41,-1],[-72,0],[-54,0],[-52,0],[-16,0],[-43,0],[-18,0],[-46,0],[-46,0],[-13,0],[-67,-1],[-25,0],[-18,0],[-20,0],[-24,0],[-72,0],[-24,0],[-23,0],[-47,0],[-35,0],[-51,0],[-130,0],[-31,0],[-48,0],[-20,0],[-14,1],[-74,-1],[-37,0],[-13,0],[-3,0],[-22,0],[-76,-1],[-89,0],[-45,0],[-9,0],[-90,0],[-26,0],[-49,0],[-17,0],[-81,-1],[-4,0],[-14,0],[-76,0],[-2,0],[-17,0],[-47,0],[-57,1],[-13,-1],[-15,-1],[-24,0],[-1,0],[-13,1],[-37,0],[-26,0],[-28,0],[-47,0],[-88,0],[-23,0],[-15,0],[-87,0],[-43,0],[-29,0],[-17,0],[-25,0],[-30,0],[-27,-4],[-182,0],[-112,0],[-18,4],[-39,0],[-15,0],[-23,-4],[-192,-1],[-14,0],[-17,0],[-94,1],[-25,0],[-2,0],[-269,3],[-14,0],[-18,0],[-18,0],[-80,0],[-43,0],[-18,0],[-42,0],[-20,0],[-14,0],[-88,0],[-24,0],[-13,0],[-27,0]],[[49418,11842],[-53,0],[-25,0],[-55,0],[-21,0],[-79,0],[-25,0],[-84,-1],[-45,1],[-27,-1],[-44,1],[-35,0],[-26,-1],[-63,0],[-77,0],[-27,0],[-16,0],[-54,-1],[-16,0],[-58,1],[-79,0],[-38,0],[-68,1],[-46,-1],[-79,-1],[-72,-1],[-20,0],[-40,0],[-18,0],[-15,0],[-113,-1],[-53,-2],[-22,2],[-11,-1],[-25,-2]],[[31697,16264],[-13,-48],[-7,-26],[119,-63],[24,-12],[15,-8],[31,-17],[5,-2],[204,49],[6,0],[4,0],[34,0],[30,-25],[6,-3],[8,-5],[5,-2],[51,-36],[32,-23],[12,-8],[13,-14],[42,-48],[13,-14],[48,-54],[9,-10],[15,-17],[15,-3],[40,-1],[8,0],[44,-3],[9,1],[10,1],[20,1],[7,0],[1,0],[56,-12],[11,-3],[11,-2],[20,-4],[39,-9],[40,-8],[-7,-23],[-43,-140],[5,-106],[10,6],[7,4],[116,66],[33,-42],[50,-64],[-81,-30],[-25,-9],[-2,-1],[-26,-30],[3,-45],[6,-6],[37,-37],[15,-14],[11,-11],[4,-4],[21,16],[142,107],[36,-72],[0,-86],[27,-18],[56,-38],[50,20],[38,16],[55,50],[42,-33],[18,-14],[3,-3],[74,-6],[12,-1],[73,4],[23,-47],[12,-26],[7,-2],[94,-21],[19,-39],[7,-15],[18,-66],[12,1],[80,8],[21,2],[20,2],[191,-3],[40,-24],[58,-36],[13,-35],[3,-8],[4,-11],[162,-58],[29,2],[117,11],[10,0],[70,0],[28,-47],[42,-2],[11,-1],[30,6],[5,1],[171,-146],[30,4],[22,2],[9,1],[46,6],[52,7],[79,24],[6,2],[11,3],[20,6],[6,1],[10,9],[10,-15],[1,-23],[-2,-17],[-10,-19],[-3,-7],[-20,-87],[48,-7],[63,-9],[50,-7],[18,-19],[21,-22],[8,-8],[1,-1],[17,1],[14,1],[19,1],[6,40],[3,14],[4,26],[14,0],[44,0],[10,-4],[15,-8],[3,-3],[12,-103],[5,-41],[23,-20],[9,-8],[65,-57],[58,-50],[13,-11],[9,-8],[73,-63],[50,-6],[170,-19],[11,-64],[20,-111],[2,-14],[83,-16],[23,-4],[6,-24],[27,-99],[-71,-36],[-12,11],[-51,49],[-9,-16],[102,-154],[12,-12],[6,-2],[17,-7],[1,0],[4,-24],[4,-6],[44,-62],[2,-3],[69,-97],[52,-42],[-4,0],[-27,1],[-7,-3],[-7,-6],[38,-53],[4,-3],[20,-8],[2,0],[17,7],[3,6],[8,14],[4,5],[10,9],[12,0],[9,-11],[5,-23],[2,-10],[12,-11],[13,-6],[32,-11],[1,-1],[12,-4],[22,-21],[2,-13],[-12,-11],[-2,-3],[-2,0],[10,-26],[2,-8],[37,-36],[1,0],[-6,-33],[8,-12],[0,-23],[-33,-30],[6,-7],[17,-15],[14,-10],[42,-24],[21,-10],[39,-19],[29,-14],[2,-1],[62,-29],[74,-20],[45,-2],[19,-4],[8,-4],[4,-6],[4,-38],[2,-1],[63,-30],[2,1],[4,4],[5,10],[-1,7],[-2,6],[-5,6],[-1,4],[0,10],[4,6],[3,4],[22,13],[5,1],[10,-1],[9,-2],[3,-2],[12,-10]],[[36952,13010],[22,-131],[0,-18],[0,-3],[0,-106],[0,-7],[1,-70],[-2,-155],[0,-21],[-1,-117],[0,-96],[0,-65],[0,-45],[0,-94],[0,-73],[0,-1],[-1,-50],[2,-124],[32,-1],[3,-129],[0,-49],[1,-67],[1,-158],[-1,-28],[1,-48],[0,-28],[-1,-104],[0,-42],[0,-27],[0,-47],[0,-18],[0,-83],[0,-43],[0,-71],[1,-150],[-2,-22],[-1,-61],[0,-30],[1,-278]],[[37008,10350],[-80,1],[-182,0],[-100,0],[-26,-1],[-135,0],[-107,1],[-16,0],[-272,0],[-261,-1],[-74,1],[-45,0],[-127,1],[-125,0],[-30,0],[-81,0],[-16,0],[-15,0],[-19,0],[-102,0],[-98,0],[-155,0],[-18,2],[-22,-1],[-32,0],[-35,0],[-153,-1],[-43,0],[-86,0],[-18,0],[-71,0],[-13,0],[-31,0],[-131,2],[-135,0],[-122,1],[-255,1],[-73,0],[-134,-1],[-51,0],[-36,-2],[-10,1],[-8,0],[-154,0],[-23,0],[-27,0],[-132,0],[-127,0],[-21,0],[-39,0],[-132,0],[-67,0],[-5,0],[-128,0],[-98,1],[-9,0],[-20,-2],[-193,0],[-45,0],[-15,0],[-104,-1],[-34,-1],[-242,-3],[-61,-1],[-60,0],[-15,-1],[-32,0],[-3,0],[-119,-2],[-6,0],[-88,-1],[-63,0],[-208,0],[-116,-1],[-137,-1],[-163,-1],[-100,-1]],[[30679,10339],[-38,-1],[-51,0],[-109,-1],[-59,0],[-46,0],[-19,0],[-125,-1],[-14,0],[-18,1],[-29,-2],[-6,0],[-11,0],[-23,0],[-13,1],[-19,0],[-17,0],[-18,0],[-19,0],[-21,0],[-41,1],[-41,0],[-39,-1],[-208,1],[-58,-1],[-70,-1],[-87,0],[-66,-1],[-28,0],[-142,0],[-118,0],[-189,1],[-68,1],[-131,2],[-125,0],[-195,1],[-22,0],[-26,0],[-17,0],[-50,0],[-210,1],[-85,1],[-144,0],[-34,0],[-42,0],[-50,0],[-26,0],[-20,0],[-112,0],[-2,80],[-1,57],[0,30],[0,59],[0,18],[0,22],[0,4],[0,25],[0,204],[-2,36],[-1,66],[-2,88],[0,50],[0,87],[0,159],[0,246],[-2,243],[0,2],[-25,0],[-62,3],[-13,-1]],[[41614,12563],[-12,-32],[-5,-4],[-12,0],[-12,10],[-30,2],[-17,-15],[-15,-18],[71,-201],[-2,-110],[-2,-5],[-4,-4],[-8,-2],[-11,4],[-6,7],[-3,8],[0,9],[5,16],[3,9],[0,11],[0,4],[-2,3],[-6,7],[-10,6],[-21,10],[-20,3],[-28,0],[-11,-3],[-6,-3],[-2,-74],[1,-21],[4,-42],[5,-26],[5,-23],[32,2],[9,-1],[20,-12],[33,-31],[20,-49],[2,-15],[5,-12],[35,-92],[10,-45],[-1,-35],[6,-25],[8,-18],[26,-54],[11,-37],[19,-55],[34,-58],[2,-3],[1,-2],[1,-3],[1,-2],[6,-20],[1,-3],[1,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-69],[0,-2],[-1,-3],[0,-3],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-2],[-17,-42],[-1,0],[-1,-3],[-1,-2],[-2,-2],[-1,-3],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-44,-34],[-2,-1],[-2,-2],[-3,-1],[-2,0],[-2,-1],[-1,0],[-36,-9],[-2,0],[-2,0],[-29,-4],[-34,13],[-47,18],[-78,1],[-88,-19],[-26,-9],[-23,-15],[-14,-7],[-11,-7],[-9,-3],[-33,-4],[-13,-4],[-7,-3],[-5,-3],[-3,-10],[0,-16],[0,-8],[2,-6],[2,-5],[1,-3],[4,-14],[0,-18],[0,-1],[-57,-27],[-33,-4],[-58,8],[-52,18],[-3,7],[-6,21],[1,42],[-2,8],[-2,5],[-7,6],[-16,8],[-11,2],[-11,-1],[-6,-3],[-17,-17],[-6,-5],[-31,-23],[-28,-16],[-97,38],[-41,16],[-56,21],[-62,24],[-29,19],[-4,35],[-4,4],[-5,2],[-7,0],[-29,-10],[-58,33],[-37,21],[-80,122],[-3,7],[-7,10],[-7,7],[-25,20],[-11,7],[-8,0],[-2,-2],[-2,-4],[-1,-14],[-2,-8],[-5,-6],[-7,-3],[-8,1],[-69,6],[-21,3],[-11,4],[-6,3],[-11,8],[-5,9],[-2,4],[1,7],[7,14],[-36,39],[-102,81],[-65,66],[-19,12],[-15,2],[-11,-2],[-7,-3],[-7,-5],[-20,-16],[-12,-8],[-11,-4],[-12,-4],[-9,1],[-9,2],[-15,7],[-10,7],[-36,18],[-29,7],[-20,3],[-45,1],[-18,2],[-35,-1],[-50,21],[-3,1],[-23,6],[-68,19],[-17,1],[-20,5],[-95,2],[-1,0],[-26,13],[-25,20],[-11,8],[-1,1],[-39,27],[-14,9],[-11,5],[-6,2],[-26,-2],[-49,-13],[-45,-11],[-1,0],[-33,14],[-26,15],[0,12],[-6,10],[-11,10],[-8,5],[-14,4],[-20,-1],[-12,-1],[-12,2],[-35,14],[-5,6],[-1,2],[0,10],[5,46],[2,6],[5,7],[7,8],[17,13],[7,6],[7,7],[2,4],[1,6],[0,6],[-6,9],[-12,10],[-43,28],[-7,5],[-8,0],[-7,-4],[-6,-7],[-3,-7],[-2,-11],[1,-6],[5,-6],[6,-3],[10,-8],[7,-9],[0,-14],[-5,-9],[-4,-4],[-4,-3],[-49,-3],[-7,1],[-14,5],[-27,13],[-18,4],[-16,-2],[-10,-4],[-4,-3],[-2,-6],[-2,-16],[-51,24],[-9,17],[-3,5],[-11,11],[-4,2],[-6,0],[-9,-2],[-14,-7],[-93,45],[1,1],[2,3],[12,5],[11,2],[26,9],[7,4],[6,7],[3,6],[2,7],[-1,10],[-2,5],[-4,3],[-9,3],[-42,2],[-20,3],[-5,3],[-9,9],[-9,12],[-7,13],[-14,19],[-8,9],[-9,4],[-62,6],[-11,-3],[-41,-15],[-11,5],[-3,4],[-2,5],[-4,11],[-67,-20],[-84,53],[-37,71],[-22,17],[-46,43],[-12,18],[-9,17],[-3,6],[-4,11],[0,3],[-8,16],[-4,6],[-10,9],[-6,2],[-10,-2],[-10,-10],[-3,-5],[-3,-18],[-1,-18],[-3,-17],[-2,-7],[-5,-10],[-3,-5],[-13,-4],[-6,0],[-10,2],[-4,2],[-5,6],[-2,4],[-1,8],[0,15],[2,12],[-2,30],[-1,6],[-8,26],[-6,16],[-3,6],[-3,7],[-7,6],[-7,4],[-8,0],[-6,-4],[-15,-13],[-12,-4],[-11,-2],[-12,5],[-7,6],[-72,6],[-4,-2],[-16,2],[-73,10],[-8,4],[-5,5],[-3,8],[0,11],[1,5],[5,10],[8,10],[15,17],[2,6],[-1,7],[-3,8],[-4,8],[-13,21],[-7,8],[-6,2],[-5,-1],[-5,-4],[-4,-5],[-3,-11],[-4,-30],[-2,-10],[-8,-7],[-7,-3],[-76,73],[-2,7],[-8,23],[-6,10],[-9,12],[-6,6],[-12,10],[-17,11],[-14,7],[-120,32],[-101,26],[-57,1],[-1,-15],[-7,-21],[-7,-9],[-6,-4],[-7,-2],[-6,1],[-12,2],[-21,10],[-6,5],[-3,6],[0,11],[3,5],[10,8],[11,7],[5,4],[2,4],[2,9],[-3,12],[-7,10],[-4,2],[-7,4],[-6,2],[-57,16],[-1,0],[-9,2],[-26,4],[-20,2],[-10,3],[-9,5],[-8,7]],[[64435,16223],[27,-36],[1,-2],[5,-6],[28,-38],[44,-52],[18,-16],[21,-16],[126,-69],[51,-22],[11,-4],[14,-6],[15,-5],[65,-20],[9,-3],[19,-6],[148,-46],[19,-6],[44,-12],[15,-4],[91,-25],[30,-8],[35,-9],[50,-14],[39,-11],[49,-11],[37,-9],[15,-3],[70,-10],[41,-6],[152,-23],[1,0],[31,-4],[19,-4],[49,-11],[6,-1],[112,-26],[15,-5],[4,-1],[18,-12],[15,-10],[26,-27],[13,-15],[18,-18],[11,-10],[7,-7],[16,-14],[20,-13],[10,-5],[8,-4],[25,-6],[27,-7],[20,-5],[13,-2],[37,-9],[37,-8],[18,-5],[31,-9],[17,-6],[22,-7],[22,-9],[2,-1],[2,-1],[35,-11],[27,-14],[20,-12],[13,-8],[18,-12],[21,-14],[12,-8],[11,-2],[9,-1],[32,-7],[24,-4],[6,0],[21,-1],[18,1],[16,-1],[21,2],[2,0],[13,1],[3,1],[23,1],[15,-2],[5,-1],[17,-5],[29,-10],[21,-8],[21,-11],[11,-8],[5,-4],[16,-17],[10,-15],[2,-2],[10,-15],[14,-20],[10,-11],[5,-6],[14,-18],[13,-15],[19,-14],[25,-20],[10,-11],[12,-15],[16,-18],[23,-18],[5,-3],[14,-7],[18,-10],[8,-5],[35,-16],[5,-3],[37,-21],[46,-26],[33,-18],[42,-19],[34,-11],[28,-5],[31,-1],[22,-5],[8,-2],[8,-2],[14,-4],[24,-10],[20,-11],[4,-3],[19,-15],[20,-18],[15,-19],[74,-50],[5,-4],[87,-45],[4,-2],[12,-4],[6,-2],[21,-4],[1,0],[47,-1],[21,0],[19,-4],[28,-11],[28,-11],[4,-1],[28,-16],[2,-1],[44,-32],[40,-30],[50,-44],[15,-19],[39,-49],[19,-23],[16,-21],[42,-71],[75,-98],[10,-12],[22,-23],[71,-39],[97,-54],[34,-33],[23,-36],[67,-149],[32,-77],[23,-79],[4,-12],[7,-23],[-1,-17],[-3,-19],[-7,-18],[-10,-15],[-21,-30],[-12,-21],[-19,-25],[-4,-5],[-6,-8],[-5,-6],[-8,-11],[-1,-1],[-19,-32],[-13,-22],[-7,-13],[-4,-9],[-6,-14],[-1,-12],[-1,-4],[1,-18],[4,-33],[7,-17],[10,-27],[14,-24],[25,-22],[28,-15],[33,-11],[48,-19],[38,-18],[23,-11],[17,-9],[5,-4],[14,-11],[24,-17],[22,-19],[1,-1],[25,-24],[22,-25],[8,-17],[9,-28],[0,-24],[-2,-23],[-6,-20],[-3,-22],[-1,-20],[-2,-20],[4,-24],[6,-20],[11,-18],[12,-9],[12,-14],[0,-2],[8,-8],[21,-31],[24,-33],[2,-4],[7,-15],[2,-4],[1,0],[5,-10],[4,-12],[1,-4],[1,-2],[0,-1],[1,-6],[2,-9],[2,-20],[-1,-3],[0,-2],[1,-1],[-1,0],[-3,-25],[-5,-34],[-3,-13],[-12,-34],[-19,-55],[-13,-38],[-14,-44],[-1,-1],[-6,-19],[3,-69],[19,-40],[19,-41],[64,-88],[59,-78],[36,-62],[14,-56],[0,-25],[-1,-7],[0,-29],[5,-56],[1,-3],[7,-21],[40,-36],[63,-27],[22,-8],[18,-9],[60,-49],[19,-12]],[[69384,11784],[-50,0],[-15,0],[-56,1],[-10,0],[-17,0],[-23,0],[-14,0],[-27,0],[-6,0],[-30,0],[-25,1],[-44,1],[-54,-1],[-124,-1],[-116,-1],[-190,-1],[-134,1],[-47,0],[-28,0],[-168,1],[-108,1],[-14,0],[-17,0],[-16,0],[-36,0],[-35,-1],[-66,0],[-53,0],[-24,0],[-1,0],[-282,-1],[-83,2],[-125,0],[-175,0],[-134,-1],[-67,0],[-141,-1],[-76,0],[-95,1],[-31,0],[-80,0],[-15,0],[0,-121],[2,-124],[2,-50],[-1,-110],[0,-84],[-1,-103],[0,-112],[0,-64],[0,-43],[1,-277],[-1,-69],[-5,-123],[2,-183]],[[66531,10322],[-174,0],[-90,0],[-60,0],[-98,0],[-83,0],[-165,0],[-11,0],[-79,0],[-309,2],[-94,0],[-126,1],[-111,0],[-144,0],[-17,-1],[-214,2],[-20,-1],[-87,2],[-52,-1],[-25,0],[-114,1],[-51,1],[-4,0],[-36,0],[-268,2],[-16,-1],[-1,0],[-20,1],[-368,-1],[-252,0],[-2,250],[0,50],[0,167],[-2,34],[-1,386],[0,103],[0,2],[-2,250],[-1,236],[-91,1],[-60,0],[-23,0],[-83,1],[-14,0],[-87,-3],[-36,-2],[-13,1],[-37,-1],[-51,1],[-109,1],[-117,1],[-36,0],[-222,-1],[-84,0],[-252,3],[-2,0],[-15,0],[-210,-5],[-43,-1],[-79,0],[-158,1],[-30,-1],[-39,0],[-42,-1],[-19,1],[-80,-1],[-20,0],[-9,0],[-4,0],[-23,0],[-8,0],[-14,0],[-57,0],[-6,0],[-54,-1],[-39,4],[-9,1],[-12,0],[-17,1],[-79,3],[-5,1],[-42,-1],[-17,0],[-5,0],[-56,-4],[-4,0],[-32,0],[-97,0],[-43,-1],[-95,-2],[-110,-1],[-92,15]],[[44759,11832],[0,-28],[-1,-57],[0,-17],[0,-143],[0,-20],[0,-65],[1,-44],[-1,-31],[0,-23],[1,-64],[0,-74],[1,-49],[0,-53],[0,-74],[1,-120],[-1,-71],[-1,-51],[0,-41],[1,-18],[1,-23],[0,-4],[-2,-73],[-1,-61],[0,-28],[0,-103],[-1,-143],[1,-60],[0,-30],[1,-93],[-1,-61],[-1,-31],[-2,-219],[1,-94],[0,-3],[1,-127],[-2,-68],[0,-41],[-1,-160],[0,-57],[0,-59],[1,-115],[0,-13],[0,-120],[-1,-125],[0,-72],[0,-175],[0,-91],[0,-36],[0,-3],[0,-19],[-1,-95],[0,-75],[0,-48],[1,-124],[0,-195],[0,-53],[2,-245],[1,-52],[0,-6],[1,-64],[-1,-126],[0,-123],[-1,-122],[1,-249],[0,-46],[0,-19],[1,-181],[0,-38],[1,-166],[0,-75],[0,-91],[1,-144],[0,-1],[0,-24],[1,-199]],[[44761,5921],[-72,0],[-187,0],[-46,0],[-83,-1],[-66,0],[-60,0],[-33,0],[-69,0],[-28,0],[-13,0],[-52,0],[-21,1],[-46,-1],[-17,0],[-21,0],[-27,0],[-22,0],[-20,0],[-110,1],[-9,0],[-10,0],[-17,0],[-218,2],[-13,0],[-12,1],[-113,0],[-37,0],[-132,0],[-78,0],[-45,1],[-133,0],[-65,0],[-192,-1],[-123,0],[-16,0],[-88,0],[-14,0],[-32,-1],[-92,1],[-26,0],[-64,1],[-83,-1],[-111,0],[-130,0],[-151,-2],[-30,0],[-50,0],[-24,1],[-254,-1],[-2,0],[-280,-1],[-6,0],[-88,0],[-14,0],[-138,0],[-86,0],[-41,0],[-7,0],[-103,0],[-77,0],[-72,0],[-23,-1],[-100,1],[-52,-1],[-165,0],[-29,1],[-14,0],[-93,0],[-37,1],[-70,0],[-43,-2],[-133,-1],[-73,0],[-230,-1],[-11,0],[-148,0],[-25,0],[-237,1],[-42,-1],[-147,1],[-239,-1]],[[38581,5918],[-20,0],[-21,0],[-128,1],[-90,0],[-19,0],[-84,0],[-49,0],[-62,0],[-56,0],[-120,0],[-129,0],[-18,0],[-104,0],[-283,1],[-113,-1],[-42,-1],[-217,-1],[-17,0]],[[37009,5917],[2,249],[-1,144],[1,70],[-1,34],[-1,245],[-1,39],[0,130],[0,3],[1,75],[-1,61],[0,36],[0,149],[0,50],[0,42],[0,38],[0,34],[0,82],[-1,245],[-1,90],[1,34],[0,88],[0,35],[1,70],[-1,60],[1,72],[0,52],[0,117],[0,66],[0,55],[-1,122],[0,6],[0,118],[0,43],[0,204],[1,138],[-1,48],[0,2],[0,50],[0,21],[1,108],[-4,124],[1,198],[0,75],[1,97],[0,34],[0,87],[0,4],[2,33],[1,89],[0,124],[0,163],[0,18],[0,60],[-1,2]],[[15155,11844],[3,-239],[0,-7],[0,-143],[0,-98],[0,-56],[-1,-190],[0,-22],[0,-65],[0,-127],[0,-33],[-2,-236],[-1,-155],[-1,-104],[0,-91],[0,-1],[0,-121],[0,-28],[-1,-251],[-2,-247],[0,-248],[-1,-37],[0,-94],[0,-117],[-1,-71],[0,-35],[0,-72],[0,-66],[-1,-136],[0,-19],[2,-93],[0,-138],[1,-85],[0,-23],[1,-244],[0,-247],[1,-248],[0,-135],[0,-112],[0,-117],[1,-27],[-2,-181],[1,-32],[0,-39],[0,-20],[0,-29],[0,-40],[0,-114],[0,-8],[0,-26],[-1,-35],[1,-80],[-1,-29],[-1,-22],[0,-57],[0,-123],[0,-51],[0,-72],[0,-26],[-1,-55],[-1,-107],[-1,-56],[-1,-123]],[[15146,5941],[-97,-1],[-18,-1],[-3,0],[-15,0],[-89,0],[-36,0],[-105,-1],[-104,-1],[-26,0],[-23,0],[-117,-1],[-151,-1],[-19,-1],[-19,0],[-45,0],[-24,0],[-16,1],[-101,-1],[-16,0],[-1,0],[-31,0],[-87,-2],[-134,2],[-58,0],[-58,-1],[-159,0],[-98,0],[-98,0],[-64,0],[-67,-1],[-26,0],[-60,0],[-63,0],[-43,0],[-45,0],[-46,-1],[-111,0],[-13,0],[-23,1],[-22,0],[-65,0],[-27,0],[-114,1],[-52,0],[-93,0],[-103,1],[-65,1],[-82,0],[-194,2],[-73,0],[-50,0],[-84,0],[-52,1],[-64,-1],[-17,0],[-68,0],[-2,0],[-58,1],[-16,0],[-14,0],[-17,0],[-63,0],[-88,1],[-108,1],[-2,0],[-62,1],[-44,0],[-28,0],[-16,0],[-89,2],[-24,0],[-17,0],[-14,0],[-22,0],[-19,0],[-24,0],[-13,0],[-19,0],[-11,1],[-8,0],[-26,1],[-11,0],[-5,0],[-15,0],[-15,0],[-5,0],[-12,-1],[-23,1],[-16,2],[-13,-2],[-7,0],[-12,0],[-20,0],[-30,1],[-30,0],[-132,1],[-73,0],[-53,1],[-22,0],[-45,0],[-22,0],[-114,2]],[[10133,5950],[-1,2081],[0,473],[0,120],[3,1196],[5,2026],[0,2]],[[22910,11836],[-1,-125],[0,-45],[0,-76],[1,-27],[-1,-24],[0,-18],[-2,-5],[-1,-117],[0,-6],[0,-49],[1,-2],[0,-31],[0,-5],[0,-3],[0,-29],[0,-55],[0,-30],[1,-92],[0,-8],[2,-240],[0,-121],[0,-100],[0,-27],[0,-87],[1,-160],[-1,-247],[1,-133],[1,-113],[0,-138],[0,-108],[0,-94],[-2,-97],[1,-20],[0,-26],[0,-188],[0,-67],[-2,-246],[2,-245],[-2,-128],[0,-118],[0,-69],[0,-109],[0,-30],[0,-38],[-1,-248],[0,-71],[0,-75],[0,-23],[0,-79],[-1,-222],[0,-24],[-1,-202],[3,-28],[0,-6],[-1,-25],[-5,-44],[3,-20],[0,-44],[0,-124],[-1,-142],[0,-66],[0,-37],[0,-68],[1,-55],[0,-10],[0,-61],[1,-86],[-1,-52],[0,-1],[-2,-70],[0,-1],[0,-93],[0,-83],[1,-42],[1,-45],[3,-73]],[[22909,5920],[-40,0],[-16,0],[-16,0],[-39,0],[-20,0],[-38,0],[-58,0],[-39,0],[-19,0],[-71,0],[-28,1],[-15,-1],[-65,1],[-20,-1],[-34,1],[-18,0],[-62,0],[-46,0],[-57,-1],[-58,0],[-14,0],[-31,0],[-60,1],[-35,0],[-31,0],[-31,0],[-30,0],[-44,0],[-16,0],[-18,0],[-43,0],[-22,0],[-29,0],[-31,-1],[-49,0],[-16,0],[-42,0],[-35,0],[-17,0],[-65,0],[-19,0],[-17,0],[-65,0],[-18,0],[-4,0],[-12,0],[-80,0],[-17,0],[-18,0],[-14,0],[-1,0],[-29,0],[-16,0],[-16,0],[-14,0],[-17,0],[-16,0],[-20,0],[-34,0],[-17,0],[-87,0],[-120,1],[-13,0],[-14,0],[-86,1],[-19,0],[-30,0],[-74,0],[-23,0],[-15,1],[-46,0],[-46,0],[-15,0],[-18,0],[-15,0],[-16,0],[-15,0],[-14,0],[-32,0],[-14,-1],[-16,3],[-43,-3],[-35,0],[-19,-1],[-14,0],[-31,1],[-17,0],[-24,0],[-42,-1],[-15,1],[-30,0],[-14,0],[-14,0],[-15,0],[-14,0],[-47,0],[-75,0],[-49,2],[-13,0],[-43,1],[-29,0],[-26,-3],[-13,-4],[-14,7],[-14,0],[-131,0],[-26,0],[-34,0],[-37,0],[-25,0],[-59,-1],[-24,0],[-33,-1],[-26,-1],[-23,0],[-59,-1],[-26,0],[-89,2],[-39,1],[-20,0],[-27,0],[-27,0],[-45,0],[-14,-4],[-29,0],[-54,0],[-14,1],[-14,0],[-55,3],[-21,1],[-42,0],[-34,0],[-135,3],[-59,-1],[-23,-3],[-20,2],[-16,0],[-67,1],[-31,0],[-27,0],[-17,0],[-28,0],[-76,1],[-16,0],[-39,0],[-32,1],[-49,0],[-19,0],[-33,0],[-57,1],[-22,0],[-17,0],[-70,-2],[-38,0],[-17,0],[-35,1],[-46,1],[-42,0],[-13,1],[-61,0],[-39,0],[-31,0],[-33,0],[-72,0],[-26,1],[-59,-1],[-34,1],[-24,0],[-16,0],[-23,0],[-25,1],[-38,1],[-20,1],[-96,3],[-30,0],[-17,0],[-77,-1],[-13,0],[-31,-1],[-14,0],[-31,-1],[-1,0],[-22,0],[-15,0],[-26,-1],[-29,0],[-20,0],[-36,-1],[-90,1],[-26,0],[-19,0],[-2,0],[-48,0],[-19,0],[-17,0],[-26,1],[-39,0],[-25,0],[-25,0],[-26,1],[-28,0],[-32,0],[-15,0],[-22,0],[-26,0],[-20,0],[-17,0],[-28,1],[-19,0],[-14,0],[-33,1],[-29,0],[-16,0],[-24,0],[-32,1],[-32,0],[-29,1],[-1,0],[-24,0],[-25,0],[-22,0],[-33,0],[-41,0],[-42,0],[-18,0],[-31,0],[-20,0],[-35,0],[-16,0],[-33,0],[-31,0],[-38,0],[-31,0],[-16,-1],[-27,0],[-42,0],[-32,0]],[[15303,5939],[-132,2],[-25,0]],[[54069,11847],[2,-338],[0,-32],[1,-113],[1,-88],[0,-46],[1,-41],[0,-204],[-1,-211],[0,-4],[-1,-142],[1,-22],[0,-35],[0,-76],[0,-59],[-1,-57],[1,-135],[0,-103],[0,-4],[0,-14],[1,-43],[0,-22],[0,-35],[0,-31],[0,-18],[0,-95],[0,-122],[0,-126],[0,-131],[0,-24],[-1,-91],[0,-66],[1,-99],[0,-83],[0,-31],[-2,-216],[0,-104],[0,-138],[0,-144],[1,-243],[0,-61],[1,-47],[0,-93],[1,-154],[0,-82],[0,-41],[1,-125],[0,-31],[1,-214],[0,-130],[0,-54],[-1,-63],[0,-124],[0,-100],[0,-60],[1,-85],[-1,-77],[0,-33],[0,-17],[0,-120],[0,-46],[0,-74],[-1,-50],[1,-18],[0,-61],[-1,-58],[-1,-19],[0,-4],[0,-22],[0,-17],[-1,-22],[-2,-38],[0,-30],[1,-30],[1,-42],[-2,-90]],[[54071,5929],[-48,1]],[[54023,5930],[-109,0],[-22,-1],[-34,0],[-45,0],[-33,0],[-17,0],[-13,0],[-20,0],[-85,0],[-77,0],[-16,0],[-46,3],[-18,-3],[-84,0],[-45,0],[-94,0],[-56,-1],[-28,0],[-36,0],[-27,0],[-71,0],[-95,0],[-55,0],[-69,0],[-40,0],[-18,0],[-17,0],[-35,-1],[-47,0],[-40,0],[-24,0],[-22,0],[-31,0],[-31,0],[-17,0],[-29,0],[-29,0],[-48,0],[-41,-1],[-42,1],[-53,-1],[-21,0],[-39,0],[-19,0],[-24,0],[-28,0],[-40,0],[-19,0],[-15,0],[-38,-1],[-59,0],[-22,0],[-14,0],[-21,0],[-32,0],[-40,0],[-27,0],[-57,0],[-29,0],[-16,0],[-90,0],[-39,0],[-26,0],[-44,0],[-12,0],[-5,0],[-53,0],[-44,0],[-43,0],[-46,0],[-37,0],[-45,0],[-4,0],[-21,0],[-47,-1],[-14,0],[-14,0],[-38,1],[-24,-1],[-77,1],[-1,0],[-12,-1],[-13,0],[-27,0],[-19,0],[-28,0],[-81,0],[-33,0],[-19,0],[-3,0],[-30,0],[-38,0],[-15,0],[-85,0],[-32,0],[-34,0],[-54,0],[-46,0],[-19,0],[-23,0],[-15,0],[-36,0],[-38,0],[-37,0],[-50,0],[-41,0],[-24,0],[-33,0],[-43,0],[-43,0],[-27,0],[-36,0],[-31,0],[-24,0],[-38,0],[-26,0],[-15,0],[-39,0],[-29,0],[-35,0],[-18,0],[-16,0],[-28,0],[-13,0],[-22,0],[-88,-1],[-36,1],[-40,0],[-1,0],[-29,0]],[[49418,5924],[-2,21],[0,5],[0,174],[0,192],[0,64],[-1,40],[1,214],[0,93],[0,24],[0,44],[0,34],[0,81],[0,137],[0,109],[2,247],[0,34],[0,62],[0,42],[0,105],[0,147],[0,100],[0,44],[1,113],[1,141],[-1,74],[0,18],[1,41],[0,56],[0,38],[3,86],[0,6],[-1,42],[0,26],[-2,76],[1,20],[0,1],[0,48],[4,135],[0,20],[-1,106],[0,50],[-1,340],[-1,183],[0,179],[0,1],[-1,67],[0,182],[-1,125],[0,152],[0,43],[0,17],[-1,35],[0,156],[1,114],[0,129],[0,42],[0,31],[0,21],[0,91],[-1,47],[-1,45],[0,64],[1,142],[0,103],[0,154],[0,4],[0,38],[0,50],[-1,253]],[[58804,11827],[2,-196],[-1,-116],[0,-1],[-1,-41],[2,-116],[1,-280],[1,-143],[0,-222],[1,-84],[0,-43],[1,-100],[-1,-23],[2,-61],[-1,-60],[0,-27],[1,-99],[0,-125],[0,-120],[2,-52],[-1,-63],[0,-88],[0,-3],[0,-158],[0,-117],[-1,-87],[0,-21],[-1,-138],[1,-63],[0,-125],[0,-6],[0,-15],[0,-26],[0,-20],[0,-4],[0,-29],[0,-82],[0,-19],[-1,-93],[0,-71],[0,-61],[1,-122],[0,-3],[0,-27],[3,-177],[0,-43],[0,-62],[0,-54],[0,-72],[0,-6],[0,-16],[-1,-29],[0,-79],[0,-46],[0,-57],[1,-131],[0,-54],[-2,-26],[-2,-137],[-2,-83],[-1,-244],[0,-44],[-3,-38],[3,-32],[1,-131],[1,-246],[0,-2],[0,-245],[1,-43],[-1,-199],[0,-130],[-1,-121],[-150,-1]],[[58658,5929],[-108,1],[-108,-1],[-39,-1],[-112,1],[-68,0],[-59,0],[-19,0],[-23,0],[-71,2],[-18,-1],[-52,0],[-98,0],[-47,1],[-62,1],[-148,0],[-65,0],[-47,0],[-144,-1],[-30,-1],[-53,2],[-21,0],[-20,0],[-87,0],[-39,0],[-123,1],[-136,-1],[-59,1],[-128,0],[-71,-1],[-133,0],[-1,0],[-25,0],[-49,1],[-13,0],[-39,0],[-72,0],[-37,0],[-28,-1],[-133,0],[-112,-1],[-42,0],[-91,0],[-34,0],[-145,0],[-22,-1],[-64,-1],[-59,0],[-113,0],[-22,0],[-65,0],[-58,0],[-29,0],[-89,-1],[-78,0],[-67,2],[-145,0],[-74,0],[-54,-1],[-30,0],[-21,0],[-56,0],[-9,0],[-66,0],[-219,0],[-35,0],[-58,0],[-41,0],[-104,0]],[[49418,5924],[-23,0],[-25,0],[-212,0],[-27,-1],[-43,1],[-37,-1],[-43,0],[-16,0],[-93,0],[-47,0],[-19,0],[-18,0],[-70,0],[-18,0],[-18,0],[-17,0],[-18,0],[-34,0],[-14,-1],[-13,0],[-54,0],[-16,0],[-35,0],[-26,0],[-27,0],[-15,0],[-2,0],[-13,0],[-26,0],[-10,0],[-57,1],[-14,0],[-37,0],[-21,0],[-16,0],[-15,0],[-15,0],[-63,0],[-21,0],[-18,0],[-110,-1],[-46,0],[-91,0],[-20,0],[-181,0],[-68,0],[-22,0],[-99,0],[-73,0],[-142,0],[-17,0],[-17,0],[-23,1],[-117,0],[-253,0],[-26,0],[-104,0],[-19,0],[-68,0],[-17,2],[-28,0],[-69,0],[-124,-1],[-63,0],[-13,0]],[[46302,5924],[-18,0],[-98,-2],[-14,-1],[-21,0],[-68,0],[-39,0],[-72,0],[-178,0],[-58,1],[-16,0],[-113,0],[-22,0],[-50,0],[-62,-1],[-67,0],[-130,1],[-103,0],[-38,-1],[-118,0],[-30,0],[-125,0],[-65,0],[-36,0]],[[66531,10322],[1,-114],[0,-7],[1,-157],[3,-214],[0,-272],[1,-96],[1,-70],[0,-29],[0,-45],[0,-43],[0,-179],[5,-246],[-4,-245],[0,-101],[0,-270],[-4,-58],[1,-26],[1,-34],[1,-52],[1,-24],[-3,-18],[0,-4],[0,-23],[0,-22],[1,-228],[2,-23],[2,-28],[0,-4],[-4,-77],[3,-82],[3,-149],[-8,-707],[0,-50],[0,-22],[0,-201],[0,-22],[-1,-145],[0,-21],[0,-44],[0,-75],[0,-124],[0,-35],[-1,-30]],[[66533,5906],[-126,0],[-137,0],[-71,0],[-1,0],[-20,0],[-236,1],[-27,0],[-23,0],[-15,0],[-33,0],[-39,-1],[-71,0],[-91,0],[-59,0],[-100,1],[-14,-1],[-73,0],[-37,1],[-25,0],[-18,0],[-44,0],[-24,-1],[-28,0],[-13,1],[-14,0],[-21,0],[-17,0],[-16,0],[-22,-1],[-15,0],[-9,0],[-10,0],[-22,0],[-27,1],[-14,0],[-25,0],[-31,0],[-76,-1],[-24,1],[-36,0],[-25,0],[-2,0],[-25,0],[-61,0],[-52,1],[-19,1],[-43,2],[-29,0],[-51,0],[-32,1],[-44,1],[-38,2],[-20,-1],[-58,0],[-105,1],[-196,1],[-86,1],[-44,0],[-64,1],[-127,0],[-195,3],[-62,0],[-137,-1],[-120,1],[-134,-1],[-44,0],[-41,2],[-82,1],[-86,0],[-15,0],[-74,0],[-117,1],[-59,0],[-62,1],[-296,0],[-29,0],[-254,1],[-90,0],[-43,0],[-1,-119],[-1,-122]],[[61766,5685],[-114,0],[-211,0],[-60,0],[-29,0],[-35,0],[-52,0],[-17,1],[-75,-2],[-67,-1],[-54,-1],[-121,0],[-202,1],[-260,2],[-21,1],[-23,-1],[-13,0],[-60,0],[-13,0],[-14,0],[-50,0],[-33,-1],[-30,0],[-33,0],[-42,0],[-47,-1],[-27,0],[-47,-1],[-62,-1],[-17,0],[-91,0],[-78,0],[-75,1],[-40,0],[-121,0],[-38,0],[-60,0],[-174,-1],[-325,-2],[-18,0],[-57,0],[-76,0],[-18,-1],[-100,0],[0,47],[-2,27],[0,45],[0,127],[-3,4],[-3,1]],[[30679,10339],[3,-145],[3,-101],[0,-167],[0,-33],[0,-5],[-1,-156],[2,-130],[-1,-125],[2,-123],[-1,-194],[0,-50],[0,-101],[0,-1],[0,-146],[0,-63],[1,-183],[1,-112],[0,-5],[0,-126],[0,-110],[0,-138],[0,-45],[0,-65],[0,-133],[-1,-45],[1,-214],[0,-8],[0,-32],[0,-3],[1,-164],[2,-35],[-3,-56],[0,-22],[0,-28],[-1,-127],[0,-9],[-1,-237],[0,-74],[2,-49],[0,-116],[0,-21],[0,-9],[-2,-222],[0,-31],[0,-215],[0,-176],[0,-68]],[[30686,5921],[-205,-4],[-53,-1],[-133,-3],[-62,-1],[-65,1],[-21,0],[-125,0],[-50,0],[-15,-1],[-29,2],[-17,0],[-125,-1],[-71,-1],[-63,0],[-199,0],[-61,1],[-57,0],[-141,1],[-55,1],[-168,0],[-36,0],[-28,1],[-38,0],[-13,4],[-179,1],[-57,-1],[-145,2],[-22,-1],[-21,0],[-78,1],[-105,1],[-1,0],[-15,-2],[-79,0],[-79,0],[-15,1],[-30,0],[-18,0],[-36,0],[-43,0],[-42,-1],[-76,0],[-159,1],[-14,0],[-67,1],[-27,0],[-43,-1],[-1,0],[-130,-1],[-4,0],[-18,-1],[-30,0],[-18,0],[-47,0],[-134,-2],[-66,0],[-175,-1],[-17,-1],[-257,-1],[-65,0],[-128,2],[-18,0],[-31,0],[-1,0],[-24,-1],[-17,0],[-99,1],[-21,0],[-33,1],[-25,0],[-56,1],[-66,0],[-193,0],[-26,0],[-38,1],[-122,1],[-139,2],[-55,0],[-21,-2],[-7,-1],[-21,2],[-29,0],[-59,-1],[-67,1],[-129,-1],[-62,0],[-67,0],[-55,0],[-138,-1],[-63,-1],[-65,0],[-47,0],[-80,0],[-47,2],[-20,1],[-194,0],[-247,-2],[-47,0],[-112,0],[-108,0],[-49,0],[-57,0],[-129,-1],[-48,-1],[-18,0],[-92,-1],[-44,0],[-80,0],[-69,0],[-143,3]],[[23037,5920],[-31,0],[-51,0],[-15,0],[-15,0],[-16,0]],[[69384,11784],[22,-15],[34,-26],[25,-24],[54,-45],[39,-28],[41,-24],[36,-17],[9,-4],[27,-14],[37,-15],[22,-15],[29,-22],[59,-89],[48,-75],[16,-25],[30,-51],[16,-12],[64,-45],[39,-27],[64,-38],[14,-9],[57,-31],[12,-6],[11,-5],[37,-16],[36,-12],[21,-8],[18,-7],[30,-12],[69,-29],[50,-21],[14,-5],[13,-9],[8,-4],[39,-41],[16,-15],[35,-26],[13,-10],[5,-3],[21,-16],[24,-17],[55,-42],[35,-21],[29,-13],[21,-3],[23,-6],[96,-6],[101,-13],[31,-4],[43,-15],[32,-12],[27,-9],[15,-8],[10,-7],[6,-5],[16,-13],[22,-29],[28,-37],[21,-24],[37,-51],[2,-1],[0,-1],[7,-20],[7,-29],[-5,-21],[2,-17],[9,-23],[12,-52],[0,-30],[-2,-67],[8,-20],[1,-1],[1,-1],[46,-26],[63,-36],[48,-29],[52,-12],[35,2],[15,5],[21,3],[20,-4],[18,-5],[16,-8],[58,-52],[38,-34],[21,-18],[13,-13],[25,-26],[12,-12],[21,-23],[22,-32],[13,-33],[5,-27],[37,-82],[19,-43],[33,-47],[15,-10],[15,-9],[19,-18],[16,-15],[18,-20],[22,-38],[12,-14],[19,-13],[22,-10],[17,-1],[22,10],[14,6],[18,0],[14,-6],[12,-7],[1,-1],[16,-11],[32,-31],[11,-11],[17,-18],[21,-29],[4,-3],[15,-13],[5,-3],[3,-3],[26,-15],[4,-3],[18,-8],[38,-13],[16,-6],[54,-24],[48,-29],[15,-10],[41,-33],[27,-31],[16,-23],[6,-8],[23,-39],[0,-1],[19,-43],[11,-26],[1,-2],[19,-32],[3,-5],[26,-28],[46,-33],[54,-32],[55,-29],[13,-7],[18,-4],[15,-4],[64,0],[23,0],[33,-4],[46,-8],[45,-8],[41,-4],[19,-3],[35,-13],[49,-21],[39,-12],[32,-7],[171,-13],[77,3],[19,-2],[26,-1],[89,-14],[98,-21],[34,-7],[16,-6],[48,-30],[11,-9],[15,-12],[8,-6],[22,-17],[16,-14],[21,-15],[52,-25],[83,-32],[47,-18],[14,-3],[16,1],[8,1],[74,16],[12,2],[9,2],[29,3],[1,0],[17,-2],[9,-1],[25,-2],[6,-4],[1,0],[16,-8],[13,-8],[41,-22],[12,-6],[42,-19],[39,-14],[46,-18],[16,-6],[74,-25],[16,-9],[23,-17],[1,0],[27,-23],[13,-10],[23,-20],[15,-22],[16,-23],[3,-5],[41,-92],[2,-8],[11,-45],[0,-4],[3,-6],[2,-5],[2,-3],[13,-29],[118,-119],[33,-37],[25,-43],[36,-88],[4,-10],[18,-20],[75,-41],[66,-36],[39,-29],[29,-21],[28,-20],[24,-18],[18,-20],[62,-79],[9,-11],[12,-16],[31,-37],[5,-6],[39,-41],[65,-69],[6,-6],[4,-7],[12,-16],[8,-21],[3,-14],[2,-10],[1,0],[4,-30],[0,-28],[2,-24],[5,-22],[7,-22],[18,-37],[20,-43],[15,-35],[9,-18],[9,-17],[15,-15],[26,-13],[33,-18],[23,-18],[15,-12],[12,-13],[9,-15],[10,-18],[9,-25],[10,-25],[1,-3],[1,-3],[11,-22],[3,-8],[16,-39],[24,-43],[16,-25],[6,-8],[8,-9],[20,-14],[44,-23],[3,-2],[27,-12],[35,-21],[31,-25],[9,-7],[34,-28],[23,-24],[21,-30],[26,-42],[22,-42],[10,-33],[4,-12],[8,-31],[7,-27],[1,-7],[8,-47],[1,-3],[2,-13],[9,-53],[2,-11],[3,-4],[1,-2],[3,-5],[23,-21],[15,-14],[5,-5],[6,-8],[1,-1],[1,0],[9,-8],[12,-11],[17,-16],[16,-19],[13,-20],[7,-14],[8,-16],[4,-6],[8,-12],[13,-14],[5,-6],[19,-14],[13,-8],[21,-11],[15,-7],[17,-11],[17,-13],[13,-14],[11,-12],[6,-7],[1,-2],[10,-12],[19,-20],[18,-20]],[[76787,5906],[-36,0],[-46,0],[-38,0],[-17,0],[-17,0],[-17,0],[-18,0],[-39,0],[-48,0],[-28,0],[-21,0],[-75,0],[-62,0],[-40,0],[-18,0],[-392,0],[-41,1],[-45,-1],[-176,-2],[-63,-2],[-65,0],[-13,0],[-10,0],[-70,0],[-2,0],[-135,0],[-91,0],[-41,1],[-22,0],[-19,0],[-88,1],[-39,0],[-83,0],[-189,0],[-22,0],[-227,-1],[-16,0],[-74,0],[-97,0],[-135,0],[-111,3],[-122,0],[-245,0],[-314,-1],[-235,0],[-40,0],[-32,0],[-298,0],[-94,-1],[-75,0],[-157,0],[-61,0],[-37,0],[-43,0],[-126,0],[-161,0],[-280,1],[-52,0],[-91,0],[-88,-2],[-33,-1],[-117,1],[-13,0],[-109,1],[-56,0],[-90,0]],[[71032,5904],[-107,-1],[-147,-1],[-28,0],[-27,0],[-124,1],[-18,0],[-147,1],[-86,0],[-29,1],[-17,0],[-34,1],[-77,2],[-23,-1],[-29,-1],[-29,-1],[-347,-1],[-64,0],[-71,-1],[-54,0],[-24,1],[-51,2],[-74,-2],[-21,0],[-164,1],[-74,-3],[-56,0],[-3,1],[-44,0],[-89,1],[-131,2],[-94,2],[-105,-1],[-13,-1],[-33,0],[-1,0],[-73,-1],[-37,-1],[-2,0],[-15,-1],[-103,4],[-23,0],[-86,0],[-181,1],[-17,0],[-111,0],[-98,0],[-22,0],[-19,2],[-70,-2],[-45,0],[-34,0],[-30,-1],[-71,0],[-254,0],[-148,0],[-23,0],[-22,0],[-65,0],[-47,0],[-162,0],[-176,0],[-46,-1],[-84,0]],[[37009,5917],[-81,0],[-162,0],[-18,0],[-156,0],[-84,0],[-15,0],[-62,0],[-141,1],[-48,0],[-18,0],[-115,0],[-117,0],[-17,0],[-130,-1],[-16,0],[-56,0],[-13,1],[-80,0],[-1,0],[-31,0],[-74,1],[-15,0],[-31,0],[-68,1],[-42,0],[-14,0],[-88,1],[-15,0],[-99,1],[-134,-1],[-123,1],[-44,0],[-217,0],[-43,-1],[-69,0],[-166,1],[-22,0],[-219,-1],[-38,1],[-81,-1],[-77,0],[-27,0],[-26,1],[-46,0],[-25,0],[-64,1],[-77,-1],[-120,1],[-64,0],[-195,-1],[-63,0],[-192,0],[-65,1],[-128,-1],[-27,0],[-19,0],[-21,0],[-16,0],[-17,0],[-30,0],[-16,0],[-48,0],[-64,0],[-69,0],[-130,0],[-58,0],[-69,0],[-5,0],[-56,0],[-36,0],[-20,0],[-17,0],[-55,0],[-66,0],[-139,1],[-22,0],[-9,0],[-91,0],[-60,0],[-130,-1],[-62,-1],[-15,0],[-8,0],[-241,1],[-59,0],[-194,0],[-65,2],[-194,-2]],[[30749,5922],[-31,-1],[-1,0],[-31,0]],[[15303,5939],[0,-34],[0,-20],[0,-19],[0,-31],[0,-28],[-1,-23],[0,-87],[0,-18],[1,-16],[0,-3],[-4,-230],[1,-28],[0,-51],[0,-18],[0,-18],[0,-25],[0,-19],[0,-35],[0,-31],[0,-21],[0,-52],[0,-52],[0,-143],[0,-21],[-1,-43],[0,-60],[0,-50],[0,-63],[0,-114],[1,-19],[-1,-55],[0,-60],[-1,-60],[0,-23],[-1,-49],[0,-40],[0,-24],[0,-19],[0,-24],[0,-169],[0,-26],[1,-65],[1,-43],[0,-23],[0,-2],[-1,-144],[-3,-35],[-1,-42],[0,-27],[0,-27],[0,-24],[0,-30],[0,-55],[-1,-42],[1,-45],[0,-201],[0,-121],[-1,-79],[0,-2],[-2,-45],[0,-36],[0,-28],[0,-31],[0,-52],[0,-97],[0,-69],[-1,-83],[0,-28],[0,-66],[0,-29],[-1,-31],[0,-51],[1,-20],[0,-46],[-2,-67],[0,-46],[0,-44],[-1,-97],[0,-23],[0,-36],[0,-29],[0,-67],[0,-20],[0,-109],[0,-22],[0,-19],[0,-115],[0,-65],[0,-42],[-4,-44],[3,-105],[0,-6],[2,-24],[0,-73],[0,-77],[1,-77],[0,-23],[0,-33],[0,-37],[1,-118],[0,-46],[-1,-20],[1,-63],[2,-93],[0,-33],[2,-26],[-4,-17],[2,-51],[3,-112],[-2,-129],[-2,-33],[0,-45],[0,-23],[0,-21],[0,-23],[0,-33],[0,-22],[0,-17],[1,-20],[0,-19],[0,-25]],[[15292,10],[-862,2],[-215,1],[-612,0],[-323,0],[-1668,1],[-223,0],[-78,0],[-850,1],[-211,0],[-114,0],[-2,1491],[0,99],[0,48],[0,209],[0,234],[-2,1612],[-1,512],[1,250],[0,74],[0,641],[1,763],[0,2]],[[23037,5920],[1,-79],[0,-167],[0,-246],[1,-246],[0,-29],[-3,-187],[0,-3],[0,-16],[0,-12],[6,-25],[0,-16],[0,-8],[0,-22],[0,-25],[1,-46],[0,-23],[0,-22],[0,-24],[0,-18],[0,-18],[-2,-34],[0,-62],[0,-1],[3,-149],[-1,-19],[-1,-35],[-1,-17],[-1,-20],[-3,-68],[-1,-18],[-1,-34],[-1,-23],[0,-47],[0,-23],[0,-21],[0,-23],[-1,-49],[0,-64],[0,-19],[0,-56],[0,-41],[0,-27],[0,-115],[0,-21],[0,-57],[-9,-31],[4,-20],[2,-3],[9,-12],[2,-17],[-6,-20],[-2,-7],[0,-24],[-1,-38],[0,-18],[-2,-247],[-1,-53],[2,-35],[0,-26],[-1,-31],[0,-23],[0,-48],[0,-30],[0,-33],[-1,-30],[0,-29],[0,-35],[0,-19],[-1,-47],[-1,-25],[0,-28],[-1,-42],[-1,-39],[-2,-39],[0,-31],[-1,-12],[0,-19],[-2,-64],[-1,-61],[0,-40],[-1,-18],[0,-1],[0,-16],[0,-30],[-1,-21],[0,-27],[0,-32],[0,-20],[-1,-22],[1,-24],[-1,-28],[0,-27],[-1,-121],[0,-25],[0,-24],[0,-27],[0,-46],[0,-20],[0,-5],[0,-25],[0,-79],[0,-33],[0,-2],[0,-24],[0,-13],[0,-4],[0,-6],[0,-20],[0,-27],[0,-27],[0,-19],[-1,-52],[0,-19],[-1,-21],[0,-4],[0,-21],[0,-14],[0,-25],[0,-44],[0,-20],[0,-38],[-1,-25],[0,-20],[0,-3],[0,-5],[0,-53],[0,-8],[-1,-18],[0,-12],[1,-11],[-1,-9],[0,-15],[0,-23],[0,-5],[1,-21],[0,-22],[-1,-29],[0,-13],[0,-22],[0,-17],[0,-31],[0,-12],[0,-14],[0,-26],[0,-3],[0,-2],[0,-26],[0,-44],[0,-1],[-1,-15],[0,-1],[0,-45],[1,-121],[1,-43],[1,-82],[1,-18],[-1,-97],[0,-20],[0,-22],[-1,-41],[0,-1],[0,-30],[1,-17],[-1,-59],[0,-55],[0,-55],[0,-18],[0,-19],[-3,-31]],[[23009,18],[-743,-3],[-1473,-6],[-2,0],[-290,0],[-581,0],[-36,0],[-247,0],[-1288,0],[-431,0],[-77,0],[-70,0],[-460,0],[-1,0],[-1332,1],[-236,0],[-450,0]],[[54023,5930],[-1,-37],[0,-24],[0,-117],[0,-59],[0,-18],[0,-23],[0,-31],[0,-35],[0,-38],[0,-28],[0,-59],[0,-45],[0,-67],[0,-30],[0,-23],[0,-48],[0,-36],[0,-30],[0,-80],[0,-22],[0,-22],[0,-49],[0,-18],[1,-24],[0,-30],[0,-19],[0,-49],[0,-72],[0,-62],[0,-38],[0,-24],[0,-47],[0,-32],[0,-20],[0,-30],[0,-19],[1,-81],[0,-11],[0,-45],[0,-28],[0,-19],[0,-35],[1,-31],[0,-19],[0,-36],[0,-38],[0,-28],[0,-29],[0,-19],[0,-36],[0,-53],[1,-27],[0,-41],[0,-25],[0,-129],[0,-28],[0,-24],[0,-43],[0,-46],[0,-27],[1,-172],[-2,-247],[0,-12],[0,-18],[0,-20],[0,-9],[0,-191],[-1,-120],[0,-116],[0,-1],[0,-29],[0,-103],[2,-198],[0,-46],[0,-102],[0,-32],[0,-54],[0,-41],[0,-23],[0,-22],[0,-34],[-1,-184],[0,-25],[0,-59],[0,-39],[0,-61],[0,-29],[0,-30],[0,-62],[0,-38],[0,-27],[0,-125],[-1,-245],[0,-124],[0,-43],[0,-65],[2,-137],[0,-106],[0,-64],[2,-78],[0,-123],[0,-21],[0,-3],[0,-99],[6,-247]],[[54034,3],[-1024,-1],[-1532,-1],[-39,0],[-153,0],[-75,0],[-429,0],[-680,0],[-1444,-1],[-84,0],[-83,0],[-189,0],[-53,0],[-708,1],[-83,0],[-1095,1],[-65,1]],[[46298,3],[0,36],[0,32],[1,47],[0,91],[0,39],[0,30],[0,21],[0,21],[0,23],[1,29],[0,19],[0,22],[0,50],[0,31],[0,42],[0,20],[0,22],[0,41],[1,108],[0,110],[-1,49],[0,47],[0,38],[0,39],[0,37],[0,24],[0,53],[0,21],[0,28],[0,37],[0,22],[0,39],[0,51],[0,52],[0,56],[0,34],[0,47],[0,45],[0,41],[0,52],[0,75],[0,22],[0,26],[0,116],[0,60],[0,22],[0,25],[0,4],[-1,55],[0,30],[0,38],[0,41],[0,53],[0,55],[-1,65],[1,80],[0,36],[0,36],[0,49],[0,31],[1,75],[0,39],[0,28],[0,113],[0,4],[0,128],[0,38],[0,34],[0,36],[0,32],[0,30],[0,37],[0,37],[0,2],[0,56],[0,70],[0,78],[0,5],[-1,32],[0,11],[1,54],[0,189],[0,19],[1,55],[0,52],[0,97],[0,19],[-1,29],[1,32],[0,18],[0,22],[0,35],[0,20],[0,22],[0,23],[0,23],[0,28],[0,37],[0,40],[1,108],[0,34],[0,22],[0,18],[0,27],[0,29],[0,37],[0,19],[-2,24],[1,100],[1,28],[0,26],[0,39],[0,29],[-1,18],[0,89],[1,35],[-1,197],[0,2],[0,29],[0,41],[1,50],[0,51],[0,38],[0,22],[1,37],[0,32],[0,37],[0,41],[0,21],[1,37],[-1,20],[1,46],[0,36],[0,41],[0,67],[-2,130]],[[61766,5685],[0,-248],[0,-140],[-1,-153],[0,-201],[1,-122],[0,-65],[1,-60],[0,-126],[0,-35],[-1,-85],[0,-47],[0,-7],[1,-140],[0,-53],[0,-70],[-1,-55],[-1,-120],[-2,-127],[0,-5],[0,-114],[0,-119],[0,-7],[-2,-245],[0,-87],[0,-25],[-1,-38],[0,-49],[-1,-25],[0,-147],[-1,-195],[1,-51],[-1,-245],[1,-61],[0,-13],[0,-9],[0,-158],[0,-45],[1,-37],[0,-24],[1,-46],[0,-57],[1,-45],[0,-121],[0,-125],[1,-218],[-1,-29],[0,-220],[-1,-27],[1,-245],[0,-247],[0,-33],[1,-73],[0,-75],[0,-45],[2,-19],[0,-116],[1,-253],[0,-71],[1,-32],[0,-19]],[[61767,16],[-36,0],[-28,0],[-18,0],[-51,0],[-12,0],[-5,0],[-16,0],[-1177,-4],[-56,0],[-1465,-3],[-1008,-3],[-313,0],[-2197,-2],[-35,0],[-57,0],[-654,0],[-102,0],[-190,0],[-313,-1]],[[76787,5906],[8,-20],[5,-17],[7,-21],[8,-16],[8,-16],[14,-17],[9,-16],[13,-17],[11,-19],[4,-17],[1,-4],[2,-14],[1,-8],[0,-11],[1,-10],[2,-22],[2,-50],[0,-4],[8,-56],[9,-34],[8,-26],[4,-13],[6,-21],[12,-35],[0,-4],[9,-57],[1,-3],[3,-18],[23,-61],[11,-17],[11,-14],[10,-19],[4,-52],[39,-65],[15,-82],[4,-20],[5,-28],[1,-5],[0,-1],[1,0],[16,-23],[3,-4],[15,-22],[16,-21],[67,-88],[44,-53],[74,-89],[3,-28],[-5,-28],[-6,-16],[-16,-35],[-8,-17],[-6,-13],[-5,-16],[-2,-9],[-2,-8],[-12,-44],[-2,-7],[-6,-20],[-1,-4],[-34,-116],[-14,-59],[-9,-25],[-11,-30],[-7,-22],[0,-5],[-2,-31],[-1,-19],[-1,-8],[1,-41],[4,-35],[3,-33],[1,-30],[-4,-27],[-2,-9],[-8,-27],[-10,-25],[-13,-41],[-13,-43],[-33,-67],[-15,-20],[-31,-43],[-21,-31],[-18,-39],[0,-1],[-7,-30],[0,-13],[3,-76],[2,-52],[1,-26],[2,-74],[-7,-48],[-5,-33],[-5,-20],[-16,-64],[-2,-24],[-4,-52],[-17,-44],[-7,-39],[1,-21],[11,-22],[6,-22],[-7,-26],[-12,-27],[-7,-23],[1,-28],[9,-46],[7,-43],[0,-22],[-2,-8],[-3,-23],[1,-4],[0,-1],[4,-26],[1,-10],[0,-1],[2,-15],[13,-31],[18,-22],[29,-22],[27,-23],[15,-26],[3,-14],[1,0],[4,-16],[5,-19],[1,-11],[5,-40],[-10,-60],[-18,-51],[-50,-134],[1,-9],[2,-31],[3,-28],[-2,-16],[-5,-51],[-6,-48],[3,-21],[6,-11],[41,-80],[45,-64],[43,-46],[69,-53],[36,-37],[28,-26],[37,-40],[21,-21],[14,-14],[42,-42],[32,-36],[9,-12],[19,-24],[23,-34],[11,-29],[5,-52],[1,-10],[-1,-17],[-1,-24],[0,-1],[0,-9],[-1,-13],[0,-5],[-2,-24],[-1,-18],[-1,-4],[-4,-29],[-2,-46],[-6,-37],[-17,-42],[-3,-10],[-24,-37],[-32,-44],[-25,-34],[-20,-37],[-13,-36],[-5,-17],[-2,-10],[-4,-30],[0,-9],[0,-19],[0,-1],[7,-53],[2,-16],[3,-22],[17,-31],[1,-2],[27,-35],[5,-7],[33,-50],[13,-31],[12,-44],[12,-48],[0,-1],[12,-28],[14,-20],[23,-21],[21,-10],[42,-25],[11,-9],[22,-19],[4,-3],[52,-55],[12,-34],[1,-33],[-6,-22],[-2,-19],[0,-23],[0,-5],[0,-8],[1,-51],[0,-5],[1,-35],[0,-1],[-21,0],[-39,0],[-315,4],[-19,0],[-44,1],[-156,2],[-50,0],[-220,-2],[-67,0],[-297,-1],[-1914,-3],[-45,0],[-1882,1],[-1147,0],[-402,0]],[[71025,20],[7,31],[-1,31],[1,46],[-1,124],[-1,69],[0,19],[-1,48],[0,25],[0,61],[0,28],[0,19],[1,128],[0,46],[0,22],[0,22],[0,245],[0,23],[0,86],[0,100],[0,10],[0,39],[0,23],[0,21],[0,18],[-1,88],[0,36],[0,23],[0,41],[1,23],[0,34],[0,27],[0,101],[1,57],[0,84],[0,162],[0,106],[-1,46],[0,52],[-1,69],[0,163],[0,42],[1,141],[-1,317],[-1,42],[0,17],[0,2],[0,37],[0,31],[2,280],[1,139],[0,17],[1,96],[1,141],[-1,33],[0,91],[1,94],[2,191],[-1,80],[0,36],[-1,185],[0,74],[-1,156],[1,39],[-1,38],[0,227],[0,26],[0,1],[0,50],[-1,68],[0,3],[0,22],[0,154],[0,145],[0,158],[0,71],[0,56],[0,19],[1,23],[2,33],[-2,81],[0,32]],[[71025,20],[-1807,0],[-1786,0],[-905,0],[-38,0],[-121,0],[-118,0],[-214,0],[-289,-1],[-93,0],[-407,0],[-42,0],[-2406,-2],[-63,0],[-61,0],[-17,0],[-17,0],[-15,0],[-11,0],[-11,0],[-11,0],[-43,0],[-506,0],[-34,0],[-14,0],[-16,0],[-14,0],[-79,0],[-9,0],[-67,-1],[-44,0]],[[30749,5922],[0,-35],[0,-16],[1,-126],[0,-65],[-1,-248],[0,-64],[0,-181],[0,-79],[0,-40],[0,-51],[-2,-76],[1,-245],[1,-73],[0,-6],[0,-44],[0,-104],[-1,-20],[1,-193],[0,-53],[0,-217],[0,-28],[0,-19],[0,-32],[1,-195],[1,-136],[-2,-34],[1,-76],[-1,-42],[0,-30],[0,-174],[-1,-245],[0,-70],[0,-40],[0,-18],[0,-117],[-1,-100],[0,-28],[0,-9],[0,-110],[0,-118],[0,-129],[-1,-104],[0,-24],[0,-119],[1,-246],[0,-76],[0,-169],[0,-114],[-1,-133],[0,-96],[0,-159],[-1,-122],[0,-120],[1,-149],[1,-96],[1,-122],[0,-124],[-13,-239]],[[30735,24],[-263,-3],[-353,-4],[-146,-1],[-338,2],[-505,2],[-186,0],[-1409,2],[-33,1],[-88,0],[-141,0],[-150,0],[-42,0],[-547,-2],[-314,-1],[-957,-3],[-1391,-5],[-379,3],[-484,3]],[[46298,3],[-164,-1],[-495,0],[-1069,-1],[-296,0],[-1182,1],[-948,0],[-1409,3],[-112,1],[-234,0],[-568,2],[-1219,3],[-33,0]],[[38569,11],[4,45],[-1,196],[1,248],[-1,216],[0,39],[1,237],[-1,245],[2,125],[0,18],[0,62],[1,40],[-1,55],[0,136],[0,56],[0,31],[0,74],[0,17],[-1,245],[0,36],[0,102],[0,73],[0,282],[1,45],[0,1],[0,78],[0,60],[0,56],[0,21],[0,107],[-3,247],[0,101],[0,8],[0,18],[-1,57],[1,245],[0,72],[0,3],[0,67],[0,32],[0,89],[0,1],[0,46],[-1,246],[0,29],[0,10],[7,28],[1,176],[-1,29],[1,219],[0,207],[0,39],[-1,246],[0,136],[0,111],[1,181],[0,32],[0,32],[3,254]],[[38569,11],[-21,0],[-612,1],[-1880,3],[-54,0],[-36,0],[-278,0],[-1228,1],[-124,0],[-424,0],[-12,0],[-1433,4],[-841,2],[-830,2],[-61,0]],[[24721,93448],[104,-1],[1,0],[234,0],[134,0],[27,0],[99,0],[1176,0],[401,0],[0,3],[-1,2490],[0,410],[0,96],[0,2],[0,87],[-1,270],[0,280],[0,301],[0,279],[0,12],[0,371],[0,316],[0,321],[0,266],[0,10],[0,90],[0,27],[-1,249],[0,44],[0,59],[0,214],[0,72],[0,44],[0,122],[0,52],[0,28],[0,37],[40,-25],[6,-40],[40,-9],[22,-31],[40,0],[28,-37],[91,-43],[51,-53],[165,-66],[79,-3],[85,-22],[1,-27],[173,-40],[405,-135],[114,-2],[455,57],[123,81],[202,131],[190,-21],[218,42],[68,-25],[554,-315],[34,-30],[36,-26],[328,-229],[312,-154],[228,-1],[259,-49],[-104,-211],[-15,-248],[46,-173],[209,-782],[109,-405],[-9,-280],[86,-348],[51,-206],[173,-702],[15,-58],[62,-77],[236,-293],[336,-1434],[381,-1630],[74,-313],[15,-67],[3,-13],[24,-101],[21,-89],[-4,-79],[-7,-121],[-57,-31],[-47,-26],[13,-46],[14,-43],[1,-4],[-1,-2],[-36,-170],[3,-7],[54,-128],[9,-19],[30,-73],[-52,-26],[-20,-11],[-19,-9],[-12,-6],[-50,-26],[-58,-62],[-30,-129],[118,-256],[-11,-162],[7,-60],[14,-113],[14,-62],[31,-132],[49,-49],[132,-59],[52,-39],[73,-54],[88,-98],[22,-15],[49,-34],[36,-24],[51,-72],[16,-22],[19,-26],[0,-31],[0,-55],[53,-47],[97,-26],[43,-12],[3,0],[33,-7],[109,-23],[110,-93],[122,-60],[63,-59],[63,-87],[0,-1],[12,-8],[36,-26],[247,-35],[163,12],[88,-25],[43,-40],[93,-165],[72,-25],[82,4],[23,2],[70,-11],[25,-4],[11,0],[49,-2],[44,-1],[126,-43],[87,-1],[83,0],[203,-23],[96,-23],[82,-33],[57,-15],[75,9],[100,32],[111,104]],[[99881,76554],[-33,-36],[-43,-14],[-47,-9],[-28,0],[-10,1],[-8,0],[-41,-3],[-39,-4],[-11,25],[3,2],[2,3],[9,33],[40,11],[20,-14],[1,-1],[13,3],[11,3],[3,1],[3,3],[22,14],[51,4],[35,-5],[17,-6],[30,-11]],[[98897,76462],[1,-2],[1,-2],[4,1],[17,7],[15,-8],[13,-6],[35,3],[21,2],[11,2],[3,1],[13,2],[15,-1],[17,-1],[25,1],[24,3],[15,2],[21,8],[16,6],[52,6],[37,1],[27,-4],[23,-3],[54,-6],[3,0],[20,-5],[13,-2],[31,2],[36,1],[6,4],[20,13],[6,4],[6,4],[29,-1],[28,-1],[21,-4],[4,-15],[-3,-4],[-9,-10],[-10,-4],[-1,-1],[-19,-8],[-38,-10],[-15,-4],[-41,-12],[-36,-7],[-5,-1],[-18,-3],[-24,2],[-34,-5],[-26,-10],[-26,-10],[-36,-11],[-50,-5],[-14,2],[-43,6],[-9,0],[-32,0],[-16,-8],[-12,-5],[-42,0],[-46,-10],[-6,-5],[-12,-11],[-18,-15],[-4,-4],[-23,-15],[-14,-5],[-11,-3],[-16,-1],[-19,-2],[-7,-60],[-28,-15],[-25,-13],[-46,-17],[-42,-27],[-8,-1],[-36,-6],[-13,-4],[-10,-4],[-17,5],[-18,5],[-22,-1],[-10,0],[-45,-14],[-7,-4],[-13,-8],[-16,2],[-3,1],[-11,1],[-8,3],[-38,13],[-16,-8],[-10,-6],[-25,3],[-9,25],[-3,8],[-1,3],[-34,45],[15,11],[38,29],[29,19],[2,24],[1,10],[-25,32],[-4,4],[-22,20],[-28,16],[-35,20],[-52,-4],[-36,-12],[-26,-25],[-14,-16],[-11,-13],[-3,-2],[-30,-16],[-43,-28],[-39,-16],[-28,-11],[-33,-19],[-7,-9],[-15,-19],[-27,-36],[-23,-21],[-42,-28],[6,-70],[6,-66],[12,-32],[25,-33],[6,-9],[7,-11],[13,-25],[16,-39],[7,-20],[16,-39],[7,-54],[8,-38],[-37,16],[-12,9],[-10,8],[-23,18],[-50,34],[-32,29],[-11,9],[-2,44],[-19,20],[-15,16],[-7,2],[-1,1],[-18,6],[-57,4],[-55,-6],[-27,-3],[-39,-6],[-44,-7],[-6,-1],[-37,-11],[-26,-13],[-8,-3],[-19,-9],[-22,-21],[-10,-7],[0,-1],[-4,-2],[-11,-9],[-5,-14],[-4,-13],[-6,-5],[-12,-11],[-3,-3],[-21,-37],[-4,-33],[-3,-17],[5,-4],[28,-19],[42,-8],[6,-5],[11,-10],[10,-8],[-1,-28],[0,-16],[1,-48],[-38,-12],[-28,-12],[-44,-15],[-19,0],[-17,0],[-65,-25],[-63,-34],[-41,-34],[-75,-44],[-13,-41],[-1,-1],[-34,-29],[-21,-6],[-18,-4],[-37,-11],[-40,-28],[-45,-26],[-27,-37],[-41,-50],[-39,-38],[-52,-45],[-51,-39],[-32,-19],[-12,-5],[-12,-6],[-12,-6],[0,-1],[-10,-5],[-25,-19],[-32,-22],[-38,-21],[-1,-40],[-13,-7],[-30,-17],[-61,-17],[-39,3],[-44,-12],[-7,-5],[-22,-15],[-33,-34],[-34,-18],[-1,0],[-35,-13],[-36,-19],[-43,-24],[-40,-33],[-41,-24],[-29,7],[-26,-13],[-8,-4],[-11,-1],[-11,0],[-3,0],[-1,0],[-8,-5],[-18,-11],[-4,-3],[-32,-24],[-34,-22],[-31,-6],[-28,-8],[-15,-4],[-23,-24],[-30,1],[-7,1],[-38,-20],[-29,2],[-9,0],[-17,-5],[-15,-4],[-21,-12],[-5,-3],[-7,-4],[-6,2],[-24,5],[-40,-3],[-34,-28],[-1,-6],[-2,-12],[-4,-23],[-22,10],[-28,7],[-2,0],[-1,0],[-6,2],[-24,7],[-19,6],[-22,-12],[4,-12],[2,-9],[6,-20],[-41,-22],[-15,-9],[-2,-1],[-17,-10],[-21,8],[-1,0],[-16,6],[-14,-3],[-14,-4],[-15,-3],[-24,-3],[-29,-3],[-24,4],[-22,5],[-34,-3],[-49,-24],[-15,-8],[-46,-24],[-27,-30],[-6,-8],[-22,-22],[-23,-9],[-7,-3],[-9,-3],[-26,-9],[-24,-27],[-8,6],[-21,16],[-14,14],[-20,19],[-29,-2],[-24,-2],[-20,-18],[-10,-8],[-13,-4],[-19,-5],[-27,-8],[-31,0],[-32,-10],[-9,-30],[-17,-7],[-14,-6],[-27,-3],[-26,24],[-33,-4],[-30,-12],[-4,-2],[-2,0],[-20,-12],[-15,-9],[-50,-50],[5,-19],[2,-8],[9,-33],[17,-58],[-27,-13],[-36,-3],[-46,9],[-4,1],[-1,0],[0,-5],[0,-4],[1,-20],[20,-25],[5,-5],[-25,-21],[-11,-8],[-22,-6],[-1,0],[-17,-4],[-26,-28],[-47,-20],[-66,-21],[-49,-8],[-19,5],[-12,4],[-64,-5],[-3,0],[-5,0],[-1,0],[-2,-3],[-22,-17],[-8,-7],[-7,0],[-59,-2],[-7,-42],[35,-42],[-4,-3],[-29,-19],[-26,-19],[-7,-6],[-51,-22],[-26,-3],[-24,-3],[-36,-11],[-41,-13],[-2,0],[-28,-5],[-50,-7],[-21,-6],[-3,-1],[-13,-4],[-5,0],[-30,-6],[-7,-2],[-42,-15],[-40,-21],[-36,-7],[-34,-11],[-31,-21],[-11,-8],[-46,-10],[-10,-2],[-16,-14],[-25,-22],[-34,-10],[-13,-1],[-53,-1],[-48,-10],[-18,2],[-19,3],[-10,2],[-8,1],[-3,1],[-20,-5],[-15,2],[-2,0],[-12,2],[-50,-13],[-12,-6],[-36,-17],[-10,-10],[-16,-15],[-2,-2],[-36,-13],[-15,-6],[-19,-7],[-17,0],[-34,1],[-39,-4],[-27,-2],[-39,-5],[-33,-13],[-8,-5],[-2,-1],[-29,-21],[-15,-25],[-7,-11],[-24,-16],[-24,-38],[0,-5],[-3,-21],[-38,6],[-16,3],[-11,-1],[-32,-2],[-30,-10],[-1,0],[-38,-6],[-15,-8],[-25,-13],[-24,-5],[-15,-4],[-32,-24],[-27,-8],[-46,-15],[-35,-4],[-18,-7],[-16,-7],[-21,-10],[-25,-12],[-19,3],[-25,4],[-28,4],[-7,0],[-10,-1],[-16,0],[-51,5],[-39,-5],[-44,-4],[-52,-11],[-71,0],[-56,-6],[-62,-15],[-42,-7],[-5,-1],[-38,-5],[-39,-12],[-19,-5],[-23,-19],[-37,-23],[-25,-11],[-16,-7],[-34,-11],[-39,-21],[-2,-1],[-35,-31],[-2,-2],[-28,-30],[-28,-41],[-16,-34],[-1,-2],[-3,-6],[-19,-20],[-42,-2],[-27,-5],[-10,-2],[-7,-1],[-23,-5],[-16,-4],[-18,-4],[-92,15],[-5,1],[-29,6],[-1,0],[-7,1],[-39,9],[-45,-2],[-36,0],[-47,-7],[-20,-2],[-66,-7],[-71,-20],[-48,-7],[-42,-12],[-86,-20],[-51,-14],[-49,-17],[-51,-34],[-8,-5],[-23,-13],[-11,-6],[-138,-43],[-31,-9],[-21,-2],[-12,-1],[-66,-23],[-54,-22],[-27,-13],[-18,-9],[-23,-9],[-8,-3],[-47,-17],[-40,-15],[-47,-22],[-54,9],[-5,0],[-47,-2],[-28,-13],[-21,-9],[-11,-5],[-34,-24],[-23,-1],[-2,0],[-12,0],[-39,-28],[-18,-7],[-16,-6],[-29,-33],[-27,-22],[-36,18],[-45,-6],[-4,-6],[-4,-5],[-28,-40],[-35,-7],[-10,-1],[-12,2],[-21,3],[-30,-9],[-24,-5],[-12,-3],[-41,-11],[-33,-3],[-19,-2],[-56,-9],[-32,-4],[-37,0],[-27,-4],[-26,-2],[-24,-6],[-10,-2],[-33,-2],[-40,-6],[-49,-6],[-48,-9],[-36,-39],[-12,-4],[-13,-5],[-18,-3],[-20,-4],[-13,-1],[-14,-1],[-14,-5],[-1,0],[-12,-5],[-26,1],[-7,0],[-34,-5],[-42,-8],[-58,-6],[-20,-3],[-17,-3],[-14,-2],[-26,-3],[-35,-22],[-48,-10],[-16,-3],[-16,-3],[-31,-8],[-53,-9],[-26,-18],[-6,-4],[-27,-54],[7,-15],[1,-1],[7,-15],[-5,-5],[-15,-16],[-28,-7],[-24,-10],[-13,-6],[-24,-3],[-36,-6],[-37,-3],[-42,-11],[-14,-3],[-22,-4],[-27,-5],[-49,-7],[-38,-10],[-46,-4],[-33,-15],[-47,-16],[-29,-7],[-1,0],[-26,-6],[-7,-2],[-18,-4],[-23,-26],[-14,-7],[-21,-11],[-41,-13],[-32,-12],[-54,-18],[-47,-16],[-22,-6],[-37,-9],[-42,-14],[-1,0],[-2,-1],[-49,-14],[-40,-8],[-46,-8],[-1,0],[-49,-9],[-51,-17],[-59,-26],[-35,-19],[-10,-11],[-24,-28],[-40,-28],[-22,-34],[-6,-9],[-22,-32],[-17,-24],[-4,-6],[-32,-37],[-52,-23],[-16,-5],[-21,-6],[-45,-17],[-37,-11],[-27,-9],[-39,-15],[-53,-21],[-18,-5],[-24,-7],[-27,-15],[-31,-14],[-38,-16],[-24,-13],[-8,-5],[-9,-5],[-1,0],[-22,-11],[-24,-11],[-11,-8],[-16,-12],[-12,-8],[-10,-6],[-36,-19],[-17,-8],[-20,-9],[-34,-20],[-43,-17],[-19,-7],[-12,-3],[-7,-4],[-23,-12],[-43,-26],[-10,-6],[-23,-5],[-17,-4],[-8,-3],[-2,-1],[-20,-8],[-32,-21],[-12,-5],[-13,-5],[-33,-14],[-3,-1],[-19,-11],[-15,-8],[-21,-13],[-9,-6],[-9,-5],[-53,-36],[-18,-9],[-1,-1],[-13,-7],[-38,-13],[-32,-11],[-10,-8],[-17,-15],[-23,-11],[-7,-4],[-9,-5],[-27,-16],[-31,-18],[-37,-27],[-25,-17],[-24,-16],[-15,-10],[-17,-5],[-31,-9],[-26,-11],[-19,-10],[-11,-6],[-38,-11],[-5,-1],[-30,-9],[-28,-10],[-17,-7],[-73,-10],[-26,-12],[-15,-8],[-35,-20],[-18,-9],[-17,-9],[-33,-13],[-23,-10],[-10,-4],[-12,-9],[-5,-2],[-22,-16],[-27,-5],[-15,-6],[-17,-7],[-1,-1],[-30,-21],[-20,-12],[-2,-2],[-6,-4],[-20,-14],[-30,-19],[-36,-17],[-41,-15],[-39,-13],[-64,-26],[-24,-13],[-12,-6],[-46,-38],[-49,-36],[-30,-15],[-42,-30],[-39,-19],[-36,-20],[-17,-10],[-43,-38],[-16,-13],[-10,-8],[-13,-9],[-16,-11],[-15,-7],[-14,-7],[-8,-4],[-30,-15],[-77,-28],[-27,-16],[-12,-5],[-17,-7],[-23,-18],[-3,-3],[-25,-21],[-27,-19],[-12,-9],[-30,-29],[-14,-13],[-31,-44],[-31,-29],[-25,-17],[-44,-33],[-43,-24],[-51,-36],[-25,-22],[-26,-12],[-21,-10],[-35,-19],[-52,-41],[-58,-30],[-21,-18],[-15,-12],[-36,-36],[-45,-17],[-12,-5],[-3,-2],[-29,-12],[-9,-9],[-12,-12],[-29,-30],[-48,-44],[-41,-34],[-17,-13],[-34,-25],[-25,-13],[-4,-2],[-6,-3],[-46,-19],[-37,-14],[-46,-21],[-19,-12],[-15,-10],[-24,-16],[-25,-17],[-15,-28],[-17,-33],[-22,-8],[-2,-1],[-27,-10],[-32,-33],[-60,-33],[-50,-36],[-28,-22],[-12,-7],[-24,-14],[-30,-28],[-1,0],[-26,-24],[-3,-3],[-11,-10],[-36,-24],[-40,-35],[-5,-6],[-27,-27],[-29,-26],[-26,-24],[-32,-37],[-21,-7],[-24,-17],[-98,-86],[-11,-11],[-30,-32],[-45,-40],[-23,-19],[-6,-5],[-52,-21],[-18,-10],[-26,-16],[-59,-28],[-30,-29],[-18,-31],[-25,-12],[-11,-4],[-25,-12],[-22,-10],[-7,-6],[-42,-35],[-21,-12],[-22,-14],[-28,-22],[-43,-46],[-36,-36],[-40,-40],[-34,-14],[-25,-21],[-16,-13],[-18,-18],[-8,-7],[-13,-10],[-35,-27],[-10,-39],[-44,-19],[-28,-18],[-13,-9],[-38,-20],[-41,-29],[-18,-8],[-17,-8],[-32,-32],[-21,-23],[-19,-21],[-24,-27],[-16,-10],[-36,-23],[-15,-22],[-9,-15],[-7,-2],[-32,-8],[-46,-25],[-28,-14],[-21,-15],[-2,-1],[-11,-8]],[[80041,79692],[9,-1],[31,4],[16,5],[35,16],[3,2],[12,8],[5,4],[7,7],[7,7],[10,9],[11,11],[3,2],[6,6],[36,22],[23,13],[23,25],[14,14],[122,38],[-11,28],[-4,8],[-1,3],[8,7],[17,14],[10,8],[11,8],[62,50],[241,194],[443,118],[7,2],[202,54],[103,16],[15,6],[4,-1],[24,-4],[22,23],[14,15],[35,37],[36,39],[104,55],[168,89],[6,-11],[48,-82],[1,0],[82,-45],[105,6],[8,4],[241,104],[49,-15],[0,-1],[9,-41],[50,-28],[12,-51],[8,-31],[-2,-11],[-4,-23],[-4,-19],[-3,-11],[-1,-23],[18,-91],[11,-86],[0,-11],[18,-237],[4,-63],[5,-214],[-15,-150],[1,-17],[0,-10],[8,-25],[15,-18],[20,-9],[20,3],[32,16],[30,25],[4,6],[7,11],[0,3],[2,9],[2,10],[0,8],[1,12],[0,5],[0,3],[1,10],[3,7],[2,7],[16,10],[17,1],[17,-9],[11,-10],[20,-18],[16,-11],[25,-9],[75,-18],[26,-12],[21,-17],[15,-23],[13,-42],[8,-31],[3,-17],[11,-75],[10,-34],[18,-31],[31,-30],[9,-4],[12,-2],[77,9],[24,8],[58,33],[10,4],[7,2],[12,0],[12,-1],[9,-4],[6,-5],[6,-4],[6,-8],[7,-19],[2,-29],[-22,-162],[-10,-31],[-18,-20],[-7,-3],[-11,-6],[-6,-3],[-8,-3],[-14,-8],[-21,-10],[-17,-8],[-17,-11],[-8,-5],[-16,-13],[-3,-2],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-3,-2],[-2,-2],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-12,-10],[-9,-8],[-2,-2],[-2,-1],[-7,-7],[-18,-20],[-8,-20],[1,-9],[2,-2],[10,-12],[7,-3],[11,-4],[67,-6],[12,0],[33,-6],[7,-1],[11,-5],[3,-11],[-5,-11],[-12,-9],[-11,-8],[-14,-11],[-10,-14],[-3,-16],[6,-18],[11,-11],[5,-5],[30,-17],[4,-3],[26,-18],[47,-35],[17,-18],[7,-11],[30,-45],[5,-6],[14,-18],[3,-3],[70,-62],[-3,-37],[-3,-28],[22,-51],[54,-130],[-2,-27],[21,-20],[106,-105],[130,60],[497,25],[215,75],[485,44],[42,4],[50,5],[186,140],[69,0],[18,0],[4,-4],[10,3],[14,9],[7,1],[20,-2],[13,8],[21,8],[10,2],[84,44],[192,27],[3,11],[5,17],[1,1],[1,1],[0,1],[0,2],[2,3],[46,22],[4,8],[1,0],[4,8],[3,3],[49,28],[30,3],[35,-45],[16,-9],[56,8],[77,24],[7,-1],[75,-12],[46,-82],[-120,-112],[-63,-59],[28,-84],[1,-3],[0,-2],[25,-31],[14,-16],[25,-13],[75,-36],[512,57],[86,-34],[9,5],[24,26],[4,0],[15,2],[68,-2],[37,1],[61,13],[62,-7],[36,6],[24,10],[22,13],[58,50],[23,14],[90,41],[23,7],[22,0],[24,-5],[147,-46],[2,-1],[60,-23],[52,-48],[63,-33],[359,109],[97,0],[65,-46],[3,-2],[80,-38],[32,-19],[27,-23],[38,-46],[33,-27],[38,-16],[25,-7],[16,-2],[16,4],[22,18],[12,6],[39,12],[31,6],[77,4],[166,-4],[34,5],[37,14],[24,13],[20,15],[40,42],[26,17],[28,15],[41,14],[101,20],[97,24],[32,3],[47,-6],[37,-12],[61,-23],[9,-4],[68,-60],[46,1],[190,70],[130,3],[48,-11],[89,-8],[256,85],[114,17],[112,-30],[74,-2],[202,33],[83,-5],[156,74],[158,-45],[173,11],[19,5],[8,3],[73,27],[36,1],[68,-8],[35,-12],[22,-16],[35,-31],[50,-25],[10,-7],[1,-1],[9,-15],[83,-26],[315,7],[225,-57],[99,-47],[116,-36],[93,-65],[5,-3],[6,-2],[16,-8],[28,-4],[12,-11],[30,-15],[4,-1],[3,-1],[11,-9],[29,10],[14,-11],[111,-30],[78,-47],[59,-218],[51,-82],[52,14],[12,18],[14,-8],[20,-25],[10,-27],[26,-4],[-1,-13],[58,-78],[25,-33],[54,-147],[-29,-118],[-5,-35],[0,-3],[0,-13],[-1,-48],[5,-38],[15,-53],[16,-32],[73,-51],[65,-21],[8,-3],[9,-3],[48,-20],[26,-14],[26,-24],[52,-71],[19,-18],[13,-9],[135,-50],[25,-8],[21,-3],[16,5],[7,4],[10,11],[13,25],[14,10],[21,3],[51,-3],[57,5],[18,-1],[18,-5],[15,-10],[7,-8],[45,-81],[47,-56],[8,-22],[3,-30],[4,-10],[35,-39],[3,-3],[13,-20],[12,-13],[49,-26],[35,-24],[29,-16],[97,-41],[15,-10],[54,-35],[23,-11],[30,-9],[58,-6],[72,-13],[121,-7],[36,2],[26,12],[40,33],[21,11],[43,12],[93,18],[35,7],[4,1],[8,2],[29,9],[27,11],[12,9],[15,17],[17,25],[2,4],[11,22],[6,23],[0,16],[1,32],[3,7],[7,3],[19,-2],[67,-26],[20,-5],[12,0],[20,7],[21,22],[19,33],[8,14],[45,63],[13,23],[12,32],[21,32],[20,19],[25,11],[51,13],[50,4],[18,-6],[27,-17],[14,-6],[30,-4],[26,3],[35,11],[44,26],[29,11],[31,5],[66,4],[39,8],[28,13],[36,27],[15,8],[44,1],[72,17],[37,4],[80,3],[106,-3],[38,-10],[44,-18],[16,-4],[22,-1],[44,4],[22,-1],[16,-6],[24,-14],[18,-5],[36,-3],[50,7],[10,-2],[13,-9],[4,-11],[-4,-12],[-16,-23],[-2,-14],[4,-10],[8,-2],[7,1],[32,15],[14,0],[11,-13],[16,-60],[13,-17],[13,-5],[60,-12],[24,-12],[35,-18],[20,-6],[26,-2],[21,4],[96,33],[49,12],[70,2],[73,8],[26,0],[31,-6],[16,-8],[36,-18],[25,-5],[22,3],[34,15],[12,2],[31,-2],[10,-4],[16,-12],[19,-20],[34,-35],[19,-11],[19,-4],[17,1],[51,12],[20,0],[42,-10],[14,3],[11,9],[14,42],[5,7],[15,11],[45,17],[63,18],[30,5],[47,3],[27,7],[27,16],[50,50],[13,8],[12,3],[11,-8],[6,-19],[5,-35],[1,-45],[3,-13],[17,-28],[20,-16],[54,-22],[101,-27],[72,-32],[17,-10],[11,-9],[2,-2],[11,-14],[14,-19],[20,-20],[14,-9],[14,-5],[25,0],[48,9],[43,15],[24,15],[3,2]],[[67322,54504],[-37,-20],[-6,1],[-51,11],[-106,58],[-222,235],[-320,292],[-143,126],[-78,38],[-74,10]],[[98897,76462],[13,12],[48,42],[1,1],[61,12],[909,191],[70,-25],[-110,-221],[-773,-1551],[-5229,-10494],[-542,12],[-4966,108],[-3576,73],[-8,0],[-4613,-2782],[-57,-35],[-1821,-1101],[-3970,-2351],[-1057,-594],[-192,-108],[-1593,-853],[-4159,-2288]],[[98805,76133],[-44,-23],[-23,-60],[-20,-42],[-50,-34],[12,-35],[45,3],[37,28],[43,26],[22,52],[25,20],[24,18],[16,11],[-52,26],[-35,10]],[[98676,75791],[28,-6],[10,4],[15,6],[16,11],[3,1],[9,6],[25,12],[52,29],[36,7],[47,37],[-36,18],[-43,-12],[-36,-3],[-48,-27],[-51,-25],[-27,-58]],[[97734,75699],[-32,9],[-35,-38],[26,-10],[37,-18],[9,-4],[50,30],[-21,27],[-34,4]],[[64961,54493],[-22,-29],[-9,-47],[13,-58],[54,-44],[77,-1],[7,0],[68,-12],[44,-13],[44,-28],[6,-5],[17,-30],[-1,-55],[-16,-51],[-11,-11],[-43,-46],[-43,-31],[-77,-61],[-87,-77],[-43,-38],[-26,-47],[-3,-59],[13,-53]],[[65334,54721],[-23,3],[-78,-15],[-42,-17],[-34,-21],[-87,-53],[-60,-64],[-13,-15],[-9,-11]],[[66240,55255],[-2,0],[-110,-8],[-127,-50],[-154,-87],[-94,-76],[-6,-5],[-32,-76],[-4,-17],[-16,-59],[-1,-14],[-2,-35],[-13,-39],[-27,-69],[-32,-42],[-56,-16],[-7,-2],[-42,23],[-51,16],[-80,14],[-7,1]]],"transform":{"scale":[0.00007755196467964695,0.000058850281582814636],"translate":[-97.23908448799989,43.499500660000194]}} diff --git a/src/js/config/mapconfig/mapfiles/county/mo-counties.json b/src/js/config/mapconfig/mapfiles/county/mo-counties.json new file mode 100644 index 00000000..a2268068 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/mo-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-95.77469620999995,35.995676355000114,-89.09974805699989,40.61363258200009],"geometries":[{"type":"Polygon","properties":{"name":"MO"},"id":"29045","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29199","arcs":[[-3,4,5,6,7]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29197","arcs":[[8,9,10,-7]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29171","arcs":[[-10,11,12,13,14]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29005","arcs":[[15,16,17]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29129","arcs":[[-14,18,19,20,21]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29147","arcs":[[22,23,24,25,-16,26]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29081","arcs":[[-21,27,28,29,30,31]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29227","arcs":[[-31,32,-23,33]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29211","arcs":[[34,35,36,-19,-13]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29075","arcs":[[-30,37,38,39,-24,-33]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29001","arcs":[[-6,40,41,42,-35,-12,-9]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29103","arcs":[[-2,43,44,45,-41,-5]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29079","arcs":[[-37,46,47,48,-28,-20]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29087","arcs":[[-26,49,50,-17]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29111","arcs":[[51,52,53,-44,-1]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29061","arcs":[[-29,-49,54,55,56,-38]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29003","arcs":[[-40,57,58,59,-50,-25]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29121","arcs":[[-46,60,61,62,63,64,-42]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29115","arcs":[[-65,65,66,-47,-36,-43]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29063","arcs":[[-57,67,68,69,-58,-39]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29117","arcs":[[70,71,72,-55,-48,-67]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29205","arcs":[[-54,73,74,-61,-45]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29127","arcs":[[75,76,77,-74,-53]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29021","arcs":[[-70,78,79,80,-59]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29025","arcs":[[-73,81,82,83,-68,-56]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29049","arcs":[[-84,84,85,86,-79,-69]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29041","arcs":[[-64,87,88,89,90,-71,-66]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29173","arcs":[[91,92,93,94,-77]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29137","arcs":[[-78,-95,95,96,-62,-75]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29033","arcs":[[-91,97,98,99,-82,-72]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29175","arcs":[[-97,100,101,102,-88,-63]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29163","arcs":[[103,104,105,-93,106]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29165","arcs":[[-80,-87,107,108]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29177","arcs":[[-100,109,110,111,-85,-83]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29047","arcs":[[-86,-112,112,113,-108]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29195","arcs":[[-90,114,115,116,117,-98]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29007","arcs":[[-94,-106,118,119,120,-101,-96]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29089","arcs":[[121,-115,-89,-103,122]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29107","arcs":[[123,124,125,-110,-99,-118]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29019","arcs":[[-121,126,127,128,129,-123,-102]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29095","arcs":[[-111,-126,130,131,132,-113]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29113","arcs":[[133,134,135,136,-104]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29139","arcs":[[-105,-137,137,138,139,140,-119]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29027","arcs":[[-120,-141,141,142,-127]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29053","arcs":[[-130,143,144,145,-116,-122]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29219","arcs":[[146,147,148,-138,-136]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29183","arcs":[[149,150,-147,-135,151]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29159","arcs":[[-146,152,153,154,155,-124,-117]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29101","arcs":[[-156,156,157,-131,-125]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29135","arcs":[[158,159,160,-144,-129]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29189","arcs":[[161,162,163,164,165,-150]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29037","arcs":[[-158,166,167,168,-132]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29510","arcs":[[-163,169]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29051","arcs":[[-143,170,171,-159,-128]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29073","arcs":[[-149,172,173,174,175,176,-139]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29071","arcs":[[-151,-166,177,178,179,-173,-148]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29151","arcs":[[-140,-177,180,181,-171,-142]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29141","arcs":[[-161,182,183,184,-153,-145]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29083","arcs":[[-155,185,186,187,-167,-157]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29015","arcs":[[-185,188,189,190,-186,-154]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29099","arcs":[[191,192,193,194,-178,-165]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29013","arcs":[[-188,195,196,197,-168]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29131","arcs":[[-172,-182,198,199,200,-183,-160]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29125","arcs":[[-176,201,202,-199,-181]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29029","arcs":[[-201,203,204,205,206,-189,-184]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29185","arcs":[[-191,207,208,209,210,-196,-187]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29055","arcs":[[-180,211,212,213,214,-174]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29221","arcs":[[-195,215,216,-212,-179]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29161","arcs":[[-215,217,218,219,-202,-175]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29186","arcs":[[220,221,-193,222]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29187","arcs":[[-222,223,224,225,-216,-194]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29085","arcs":[[-207,226,227,-208,-190]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29217","arcs":[[-211,228,229,230,-197]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29169","arcs":[[-203,-220,231,232,-204,-200]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29059","arcs":[[-206,233,234,235,236,-227]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29157","arcs":[[237,238,239,240,241,-224,-221,242]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29039","arcs":[[243,244,245,-229,-210]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29105","arcs":[[-233,246,247,248,-234,-205]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29167","arcs":[[-228,-237,249,250,-244,-209]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29065","arcs":[[-214,251,252,253,254,-218]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29093","arcs":[[-226,255,256,257,-252,-213,-217]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29011","arcs":[[-246,258,259,260,-230]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29123","arcs":[[-242,261,262,-256,-225]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29179","arcs":[[263,264,265,-253,-258]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29031","arcs":[[238,-238,266,267,268,269,-240]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29215","arcs":[[-219,-255,270,271,272,273,-247,-232]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29017","arcs":[[-270,274,275,-262,-241]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29057","arcs":[[-251,276,277,278,-259,-245]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29225","arcs":[[-249,279,280,281,282,-235]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29229","arcs":[[-274,283,-280,-248]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29077","arcs":[[-236,-283,284,285,-277,-250]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29203","arcs":[[-266,286,287,288,-271,-254]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29097","arcs":[[-279,289,290,291,-260]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29223","arcs":[[-276,292,293,294,-264,-257,-263]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29109","arcs":[[-286,295,296,297,298,-290,-278]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29201","arcs":[[299,300,301,-268,302]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29207","arcs":[[-269,-302,303,304,305,-293,-275]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29035","arcs":[[-295,306,307,308,-287,-265]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29043","arcs":[[-282,309,310,311,-296,-285]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29067","arcs":[[-284,-273,312,313,314,-310,-281]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29133","arcs":[[315,-300,316]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29091","arcs":[[-289,317,318,319,-313,-272]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29145","arcs":[[-299,320,321,322,-291]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29209","arcs":[[323,324,325,-297,-312]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29009","arcs":[[-326,326,327,-321,-298]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29023","arcs":[[-306,328,329,330,-307,-294]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29149","arcs":[[-309,331,332,-318,-288]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29143","arcs":[[-316,333,334,335,-304,-301]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29181","arcs":[[-331,336,-332,-308]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29213","arcs":[[-315,337,338,-324,-311]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29153","arcs":[[-320,339,-338,-314]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29119","arcs":[[-328,340,-322]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29069","arcs":[[-336,341,342,-329,-305]]},{"type":"Polygon","properties":{"name":"MO"},"id":"29155","arcs":[[343,-342,-335]]}]},"states":{"type":"GeometryCollection","bbox":[-95.77469620999995,35.995676355000114,-89.09974805699989,40.61363258200009],"geometries":[{"type":"Polygon","properties":{"name":"Missouri"},"id":"29","arcs":[[51,75,91,106,133,151,161,169,163,191,222,242,266,302,316,333,343,342,329,336,332,318,339,338,324,326,340,322,291,260,230,197,168,132,113,108,80,59,50,17,26,33,31,21,14,10,7,3]]}]}},"arcs":[[[64081,92098],[-17,1],[-26,1],[-2,0],[-93,1],[-3,0],[-44,1],[-62,1],[-54,0],[-17,1],[-66,1],[-170,2],[-114,3],[-2,0],[-13,0],[-34,0],[-23,1],[-19,-1],[-194,7],[-31,2],[-136,3],[-155,1],[-17,3],[-38,4],[-45,-1],[-21,1],[-24,0],[-16,0],[-19,1],[-20,0],[-97,2],[-21,2],[-91,3],[-88,2],[-6,1],[-23,1],[-17,1],[-8,1],[-25,1],[-21,1],[-18,1],[-8,0],[-17,1],[-16,1],[-17,1],[-24,1],[-70,4],[-153,2],[-25,1],[-15,-2],[-20,-2],[-74,3],[-6,0],[-62,4],[-57,1],[-94,3],[-40,1],[-35,1],[-58,3],[-38,2],[-28,1],[-30,1],[-24,1],[-34,1],[-39,2],[-25,1],[-28,1],[-19,0],[-20,1],[-23,2],[-28,0],[-26,2],[-28,0],[-29,1],[-45,1],[-17,1],[-27,0],[-17,0],[-25,1],[-15,1],[-38,0],[-28,1],[-15,0],[-19,0],[-25,1],[-16,4],[-23,1],[-26,2],[-26,2],[-24,2],[-30,2],[-19,0],[-30,2],[-23,1],[-53,2],[-31,1],[-99,3],[-34,1],[-46,2],[-79,3],[-22,1],[-118,4],[-79,3],[-90,4],[-18,0],[-36,2],[-29,1],[-55,1],[-2,0],[-14,0],[-64,2],[-85,2],[-20,0],[-93,1],[-99,1],[-37,-1],[-29,0],[-16,2],[-81,2],[-21,0],[-66,1],[-53,2],[-27,5],[-18,-15],[-33,0],[-71,1],[-16,0],[-16,0],[-24,0],[-32,0],[-18,2],[-255,3],[-74,1],[-17,4],[-16,-1],[-35,0],[-29,1],[-62,2],[-2,0],[-135,5],[-98,3],[-175,5],[-29,1],[-31,1],[-24,1],[-19,-3],[-31,1],[-28,2],[-16,2],[-32,1],[-15,0],[-70,2],[-16,-1],[-19,2],[-25,1],[-43,1],[-23,1],[-20,0],[-17,1],[-18,0],[-29,1],[-18,0],[-18,0],[-15,1],[-28,2]],[[57287,92281],[1,78],[1,26],[6,250],[1,79],[0,3],[2,155],[1,25],[0,23],[2,179],[2,53],[0,26],[0,26],[0,21]],[[57303,93225],[4,86],[2,27],[-3,26],[1,30],[2,74],[1,35],[5,193],[4,126],[1,29],[-1,22],[2,66],[1,69],[1,33],[1,41],[1,45],[1,22],[0,24],[1,36],[1,56],[2,33],[1,41],[1,28],[1,24],[0,42],[0,28],[0,35],[1,28],[1,31],[1,28],[1,37],[0,7],[1,24],[0,28],[1,25],[0,29],[1,64],[2,41],[0,46],[1,31],[1,28],[0,30],[0,26],[1,11],[0,22],[1,47],[1,25],[7,20],[-5,24],[1,42],[0,23],[1,68],[0,25],[1,31],[0,45],[1,42],[1,22],[1,62],[1,31],[0,39],[1,68],[1,100],[1,30],[1,27],[1,43],[0,57],[1,56],[1,21],[1,55],[0,1],[0,32],[4,156],[0,28],[0,37],[0,30],[0,26],[0,31],[0,24],[0,41],[1,51],[0,37],[0,2],[0,176],[1,54],[2,93],[0,34],[0,29],[0,24],[0,24],[0,23],[1,29],[1,23],[-1,22],[1,29],[0,22],[1,26],[0,38],[1,70],[0,25],[0,5],[-1,17],[1,22],[0,21],[0,35],[0,22],[0,26],[0,27],[2,25],[1,67],[1,93],[1,140],[1,192],[0,113],[1,120],[0,24],[0,40],[2,294],[0,31],[5,270],[5,271],[2,79],[1,158],[1,101],[1,108],[1,172],[1,85]],[[57402,99830],[57,7],[37,1],[171,7],[46,2],[16,0],[72,3],[10,0],[127,5],[26,1],[53,2],[184,7],[96,4],[123,6],[84,3],[17,0],[233,16],[183,13],[111,8],[16,3],[17,2],[22,1],[38,2],[26,1],[17,3],[153,5],[220,9],[76,7],[19,1],[105,6],[110,4],[132,5],[55,3],[45,3],[194,9],[143,9],[53,3],[99,7],[17,1],[3,0],[25,-48],[111,-214],[49,-65],[71,-76],[71,-50],[34,-21],[74,-44],[28,-17],[28,-17],[8,-7],[29,-27],[76,-69],[33,-50],[3,-5],[4,-11],[4,-12],[7,-19],[-5,-46],[-64,-177],[-22,-75],[-1,-6],[0,-5],[-1,-41],[0,-11],[11,-49],[1,-2],[19,-33],[9,-16],[3,-5],[12,-11],[31,-29],[10,-10],[35,-30],[17,-14],[58,-17],[35,-10],[68,-19],[21,-3],[80,-12],[1,0],[144,-22],[3,-1],[1,0],[94,-32],[19,-7],[26,-9],[19,-6],[28,-8],[25,-7],[32,-10],[47,-8],[2,0],[29,-3],[1,0],[30,-12],[46,-12],[38,-9],[19,-9],[30,-17],[3,-3],[25,-29],[0,-1],[16,-36],[9,-50],[3,-34],[2,-26],[0,-3],[-10,-150],[-1,-15],[-12,-44],[-8,-32],[-8,-32],[-16,-65],[-1,-1],[-5,-21],[-1,-5],[-1,-10],[-2,-48],[15,-88],[0,-5],[2,-3],[26,-60],[38,-51],[35,-29],[15,-13],[12,-10],[67,-51],[34,-18],[15,-9],[43,-20],[39,-20],[58,-33],[16,-9],[32,-28],[26,-31],[21,-30],[14,-29],[4,-6],[4,-10],[22,-58],[-3,-6],[16,-31],[1,-16],[27,-77],[4,-12],[0,-4],[5,-54],[9,-39],[3,-11],[12,-35],[24,-52],[5,-11],[14,-17],[62,-79],[10,-10],[31,-27],[46,-27],[9,-5],[23,-11],[40,-18],[23,-8],[75,-26],[90,-22],[20,-2],[82,-6],[36,-2],[7,4],[2,1],[121,17],[24,-2],[80,-6],[26,-29],[4,-5],[8,-23],[5,-15],[4,-12],[4,-26],[0,-55],[-1,-26],[-9,-23],[-11,-23],[-23,-28],[-56,-49],[-35,-38],[-1,-1],[-1,-2],[-19,-43],[-7,-14],[-1,-38],[19,-53],[35,-43],[63,-29],[94,-2],[12,-18],[0,-9],[-1,-11],[-30,-86],[-75,-135],[-7,-20],[-2,-55],[5,-59],[27,-56],[23,-27],[11,-13],[41,-31],[52,-29],[90,-22],[29,-16],[28,-17],[25,-16],[1,-1],[23,-25],[50,-31],[26,-8],[75,-3],[48,55],[16,30],[1,1],[45,41],[11,3],[29,-5],[33,-36],[19,-50],[0,-64],[-54,-73],[-19,-19],[-14,0],[-45,8],[-8,10],[-7,20],[-7,7],[-3,3],[-24,1],[-11,-11],[-4,-29],[22,-53],[19,-67],[17,-20],[27,-47],[30,-66],[-4,-8],[26,-36],[25,-22],[21,-10],[35,1],[28,25],[19,24],[9,3],[36,7],[62,27],[41,25],[16,8],[13,-11],[3,-24],[-8,-32],[-18,-35],[-18,-56],[4,-28],[10,-18],[16,-12],[53,-4],[59,-1],[43,0],[17,1],[14,13],[46,61],[60,95],[13,21],[12,19],[21,22],[2,2],[19,-2],[3,-1],[26,-11],[31,-11],[21,-5],[10,-4],[18,-9],[44,-20],[29,-11],[8,-2],[9,-3],[15,-2],[19,-11],[17,-9],[16,-17],[6,-9],[11,-15],[25,-31],[-12,-15],[-97,-121],[-103,-72],[-164,-115],[-4,-3],[-89,-154],[-143,-247],[-28,-49],[-67,-172],[-3,-12],[-59,-301],[-263,-668],[-40,-143],[-27,-94],[0,-34],[-2,-141],[0,-5],[10,-39],[11,-40],[23,-85],[-27,-114],[-83,-180]],[[57303,93225],[-17,1],[-27,0],[-17,1],[-21,0],[-68,1],[-27,1],[-34,1],[-15,1],[-20,0],[-18,0],[-25,1],[-27,1],[-26,0],[-19,1],[-24,0],[-15,1],[-18,0],[-15,1],[-38,-1],[-26,3],[-144,2],[-111,2],[-100,2],[-57,1],[-7,0],[-34,1],[-32,2],[-25,0],[-20,1],[-103,2],[-56,2],[-17,1],[-25,0],[-16,1],[-22,1],[-38,1],[-26,1],[-28,0],[-22,1],[-15,0],[-17,0],[-17,1],[-31,3],[-98,1],[-57,1],[-63,1],[-117,2],[-29,2],[-18,0],[-29,1],[-89,1],[-52,0],[-90,1],[-160,4],[-22,1],[-4,0],[-23,0],[-31,0],[-17,0],[-21,1],[-20,0],[-17,2],[-17,0],[-17,0],[-36,1],[-19,0],[-17,1],[-21,0],[-55,1],[-18,0],[-16,0],[-16,0],[-19,0],[-18,0],[-22,1],[-18,1],[-2,0],[-62,2],[-25,0],[-18,0],[-38,1],[-48,1],[-50,1],[-20,0],[-17,1],[-60,1],[-35,0],[-27,1],[-16,0],[-24,0],[-80,2],[-16,0],[-32,0],[-21,1],[-17,0],[-18,0],[-34,1],[-24,0],[-18,0],[-20,0],[-16,0],[-23,0],[-22,0],[-15,0],[-17,-1],[-22,0],[-16,-2],[-18,0],[-16,2],[-15,0],[-28,0],[-18,0],[-24,-1],[-16,0],[-15,0],[-22,-1],[-16,0],[-18,-1],[-35,-1],[-19,0],[-28,0],[-49,0],[-27,0],[-25,0],[-16,0],[-13,0],[-2,0],[-32,0],[-66,0],[-19,-1],[-28,0],[-16,0],[-20,-1],[-16,1],[-17,-1],[-16,-1],[-16,0],[-26,0],[-20,0],[-18,-1],[-15,0],[-16,0],[-51,1],[-110,-7],[-269,-1],[-171,-1],[-15,1],[-36,0],[-15,-3],[-33,0],[-27,0],[-23,-1],[-21,0],[-15,-1],[-16,0],[-18,-1],[-15,0],[-19,-1],[-21,0],[-18,-1],[-37,-1],[-21,0],[-25,0],[-27,0],[-17,-1],[-23,0],[-26,0],[-15,0],[-15,0],[-33,-1],[-147,2],[-22,0],[-17,-4],[-37,0],[-37,-1],[-28,0],[-15,0],[-17,-1],[-18,0],[-18,0],[-17,1],[-22,0],[-16,0],[-39,-1],[-42,0]],[[51339,93267],[-26,0],[-5,38],[-1,40],[1,78],[0,27],[-1,74],[0,30],[0,37],[0,24],[0,23],[0,206],[0,54],[0,133],[0,183]],[[51307,94214],[-1,154],[0,124],[0,23],[0,23],[0,91],[0,29],[0,24],[0,104],[0,25],[-1,6],[-2,40],[-4,168],[2,31],[-1,95],[-2,315],[0,93],[-2,223],[0,93],[-3,115],[0,27],[0,25],[0,24],[-1,29],[0,23],[0,23],[0,53],[0,36],[0,23],[0,64],[1,36],[0,35],[0,32],[-1,26],[0,68],[1,43],[0,26],[0,27],[0,49],[1,24],[-1,32],[0,37],[0,22],[0,15],[0,11],[0,29],[0,42],[0,36],[0,36],[1,32],[0,26],[0,32],[-1,13],[-8,114],[0,22],[0,174],[0,105],[0,41],[1,26],[0,55],[0,37],[0,46],[1,27],[0,31],[0,24],[-7,27],[5,9],[5,9],[-4,27],[0,30],[0,25],[1,29],[0,41],[1,80],[0,60],[0,32],[-1,44],[0,23],[1,22],[0,23],[1,68],[0,23],[1,25],[0,24],[0,35],[0,42],[0,30],[0,35],[1,28],[0,34],[0,29],[1,64],[1,106],[-1,104],[1,49],[0,25],[0,132],[0,42],[1,122],[1,107],[0,30],[0,19],[1,92],[1,46],[-2,45],[0,31],[-1,29]],[[51294,99645],[20,-1],[117,3],[71,3],[91,5],[17,1],[28,1],[30,1],[17,1],[46,1],[18,0],[16,1],[28,1],[57,2],[35,1],[28,1],[56,1],[21,1],[25,1],[19,0],[17,1],[23,0],[35,1],[46,1],[354,8],[27,1],[12,0],[24,1],[62,1],[87,2],[81,3],[37,-2],[28,-1],[147,8],[40,1],[27,0],[30,1],[19,0],[21,2],[62,1],[18,1],[62,1],[93,2],[31,1],[25,0],[38,0],[49,1],[20,1],[16,0],[16,1],[30,-1],[16,3],[203,6],[26,1],[67,2],[231,5],[150,4],[3,0],[82,2],[160,4],[134,4],[45,2],[31,1],[103,5],[243,3],[17,1],[24,-1],[18,2],[44,1],[43,1],[41,1],[25,-1],[165,11],[21,1],[15,-1],[18,-2],[33,1],[32,2],[25,1],[22,1],[28,4],[20,1],[15,0],[18,0],[15,3],[6,0],[15,-1],[24,1],[24,1],[32,1],[18,1],[20,1],[18,0],[27,2],[20,1],[19,0],[17,1],[19,1],[28,1],[18,0],[23,1],[18,1],[16,1],[27,1],[25,0],[16,1],[24,2],[22,1],[16,1],[57,2],[28,1],[39,2],[47,1],[17,0],[124,2],[22,0],[244,8],[170,6],[15,1],[49,0],[76,1],[143,4],[66,2],[31,3],[38,5]],[[51307,94214],[-47,-1],[-16,3],[-148,-3],[-134,2],[-31,-1],[-24,0],[-24,1],[-44,2],[-21,0],[-16,0],[-45,1],[-26,0],[-89,0],[-16,0],[-123,0],[-61,-9],[-82,-2],[-49,-1],[-97,-3],[-31,-1],[-39,0],[-45,-1],[-23,0],[-25,0],[-15,-1],[-31,0],[-6,0],[-29,0],[-17,-1],[-17,1],[-16,-1],[-19,-1],[-18,-1],[-21,-1],[-22,-1],[-16,-1],[-22,-1],[-16,0],[-39,-2],[-26,-2],[-18,0],[-20,-1],[-18,-1],[-16,-1],[-18,0],[-36,0],[-24,0],[-24,0],[-24,0],[-67,0],[-33,0],[-27,0],[-26,0],[-34,0],[-25,0],[-28,0],[-26,0],[-28,0],[-17,0],[-16,0],[-22,0],[-17,1],[-15,-1],[-28,-1],[-15,0],[-35,0],[-28,-1],[-33,0],[-17,-1],[-19,0],[-35,-1],[-30,-1],[-25,0],[-27,-1],[-27,0],[-114,-4],[-103,-2],[-201,-2],[-1,0],[-103,-2],[-24,0],[-24,-1],[-45,0],[-16,-1],[-78,-1],[-4,0],[-19,-1],[-17,0],[-25,1],[-21,1],[-18,0],[-24,-4],[-18,0],[-22,0],[-31,2],[-132,-2],[-110,-2],[-149,-2],[-121,-1],[-154,-2],[-62,-1],[-63,-3],[-149,-1],[-24,0],[-93,-1],[-135,0],[-39,-1],[-209,-1],[-175,0]],[[46300,94149],[9,32],[34,21],[-5,22],[-20,4],[-21,8],[-8,14],[9,9],[116,211],[-141,0],[-10,0],[0,13],[11,137],[2,31],[6,60],[4,41],[5,45],[0,10],[6,76],[0,3],[-1,2],[2,2],[3,35],[3,39],[0,23],[1,20],[4,26],[7,30],[5,13],[4,6],[11,15],[17,18],[76,72],[24,18],[1,1],[53,49],[12,12],[18,17],[3,2],[5,57],[0,1],[-4,1],[-9,2],[-24,9],[-12,6],[-75,40],[-53,49],[-1,3],[-1,15],[1,0],[1,27],[0,16],[5,11],[9,9],[23,13],[1,0],[11,0],[3,-1],[3,-4],[0,-8],[-8,-8],[-4,-8],[-3,-7],[0,-11],[3,-11],[3,-10],[5,-8],[23,-22],[10,-6],[9,2],[6,3],[2,2],[0,7],[-4,5],[-13,6],[-7,7],[-2,7],[-1,27],[4,12],[7,9],[1,1],[10,11],[5,3],[1,0],[3,2],[26,0],[3,0],[0,1],[4,1],[2,3],[2,7],[2,19],[0,6],[-5,53],[-1,8],[-4,11],[-1,0],[-1,1],[-3,4],[-112,110],[-1,2],[-1,0],[-6,4],[-6,2],[-60,10],[-53,8],[-4,4],[-10,7],[-22,16],[-22,17],[-41,30],[-5,18],[-1,6],[-32,35],[0,1],[-1,0],[-8,2],[-11,7],[-1,0],[-1,2],[-49,53],[-1,2],[-4,7],[-4,7],[0,1],[0,1],[0,18],[3,3],[7,0],[42,15],[0,1],[44,44],[5,8],[2,6],[2,30],[-1,9],[-3,5],[-4,4],[-97,19],[-1,0],[-101,98],[-7,8],[-2,11],[-6,72],[-1,4],[27,14],[59,15],[9,0],[4,3],[17,38],[1,2],[2,4],[-1,8],[-16,60],[0,1],[-2,9],[-2,4],[-37,59],[-5,3],[-33,-1],[-7,2],[-5,2],[-2,7],[0,1],[-8,74],[0,1],[0,8],[9,11],[0,1],[6,2],[60,21],[67,24],[0,1],[2,3],[4,14],[-37,29],[-6,16],[15,15],[20,10],[25,30],[-8,25],[-25,-4],[-19,-16],[-18,-10],[-16,3],[5,30],[4,34],[33,27],[-20,16],[-19,7],[-13,14],[-3,25],[6,29],[13,-14],[17,-16],[14,17],[4,33],[-1,22],[-12,23],[-2,38],[5,32],[11,20],[16,-5],[1,-26],[-14,-15],[1,-22],[26,-30],[16,-2],[8,26],[-3,24],[9,24],[13,26],[1,36],[0,2],[0,26],[14,8],[5,-31],[17,-8],[7,22],[4,28],[21,17],[15,1],[15,-8],[15,-20],[9,-29],[13,-14],[16,2],[5,-1],[6,47],[0,26],[0,1],[2,10],[25,35],[1,2],[3,4],[2,2],[4,4],[8,9],[2,2],[9,8],[25,16],[7,5],[13,14],[17,36],[0,15],[-3,13],[-1,7],[-3,7],[0,1],[-5,9],[0,9],[1,0],[9,10],[25,13],[-2,11],[-1,0],[-45,0],[-37,0],[-10,0],[16,10],[10,6],[1,1],[2,3],[1,1],[4,6],[3,6],[-1,11],[-7,11],[-5,5],[-11,4],[-11,0],[-32,-2],[-27,1],[-5,3],[-1,6],[2,5],[17,6],[4,1],[6,3],[8,9],[0,1],[9,15],[6,20],[0,1],[0,1],[1,7],[3,28],[0,8],[0,58],[-2,10],[-4,3],[-6,-1],[-5,-4],[-2,-3],[0,-2],[-4,-8],[-3,-3],[-1,-1],[-15,4],[2,23],[-5,27],[16,36],[-9,23],[-16,12],[-18,-6],[-10,20],[16,9],[17,7],[15,8],[17,14],[15,8],[15,1],[16,-4],[24,-25],[12,-22],[15,-14],[14,34],[20,18],[15,4],[29,5],[22,14],[-15,18],[-17,14],[-12,20],[-10,21],[-16,13],[-18,-5],[-19,12],[-15,-8],[-9,-20],[-14,-13],[-17,16],[0,23],[-29,6],[-15,-3],[-22,-1],[-17,4],[-18,22],[-34,11],[-1,1],[-12,4],[-9,3],[-15,14],[-9,20],[-22,-4],[-19,-1],[-2,0],[-22,6],[-20,8],[0,1],[-6,23],[9,22],[12,21],[7,34],[-10,-20],[-22,-15],[-22,1],[-15,10],[-14,20],[-19,9],[-16,16],[-20,24],[-9,20],[15,7],[6,3],[19,-26],[27,-1],[17,2],[2,0],[0,1],[-1,25],[-19,12],[-10,18],[18,7],[20,-6],[14,11],[1,0],[1,4],[8,18],[16,22],[2,3],[16,25],[2,2],[2,5],[7,17],[1,3],[0,2],[2,51],[0,5],[7,20],[9,22],[9,30],[22,23],[17,13],[13,-19],[17,8],[12,34],[21,7],[11,-21],[15,-21],[1,-23],[4,-21],[19,10],[9,23],[-4,25],[-2,13],[-2,16],[12,57],[13,34],[0,23],[-4,34],[3,31],[-3,22],[-16,14],[-19,32],[-9,12],[-14,11],[-18,10],[-21,4],[-19,-1],[-13,-7],[-16,-14],[-12,-18],[-9,-15],[-3,-12],[0,-8],[-4,-9],[-5,-7],[-21,-10],[-24,-8],[-2,-1],[-129,-43],[-4,-2],[-30,-8],[-23,-1],[-73,20],[-27,7],[-8,1],[18,28],[4,8],[4,13],[-1,16],[-3,9],[-40,35],[-2,2],[1,6],[4,8],[5,1],[10,1],[13,-4],[33,-15],[22,-12],[19,-8],[15,2],[21,6],[1,0],[253,96],[9,4],[17,9],[1,1],[7,7],[6,14],[0,2],[1,1],[3,13],[1,13],[0,2],[0,48],[-2,33],[-2,27],[-1,7],[-3,5],[-7,4],[-9,-2],[-5,-3],[-2,-6],[-1,-8],[1,-68],[-2,-22],[0,-2],[-4,-11],[-9,-18],[-2,-3],[-2,-3],[-4,-5],[-11,-13],[-5,-6],[-6,0],[-68,62],[-2,2],[-22,78],[0,1],[1,41],[0,9],[0,17],[-30,24],[-3,2],[-26,41],[0,1],[-60,36],[-12,7],[-10,2],[-25,-2],[-33,-6],[-17,-1],[-52,0],[-17,4],[-8,3],[-4,8],[-5,12],[0,6],[2,3],[32,15],[17,14],[25,26],[13,19],[13,34]],[[45848,99475],[17,0],[248,6],[102,4],[21,0],[32,-1],[267,8],[136,2],[32,2],[103,4],[39,1],[128,4],[20,1],[56,2],[28,0],[13,1],[94,1],[102,5],[44,1],[37,1],[34,1],[27,1],[115,4],[212,7],[94,6],[18,0],[38,1],[27,1],[34,2],[40,2],[34,2],[22,0],[34,2],[19,0],[26,2],[18,2],[23,1],[28,1],[56,1],[45,2],[64,3],[26,1],[31,0],[23,1],[15,1],[64,2],[31,1],[56,3],[41,2],[43,1],[18,1],[3,0],[47,2],[86,3],[31,1],[38,2],[42,2],[54,2],[19,2],[23,2],[43,3],[15,0],[24,1],[18,1],[21,0],[42,2],[34,2],[28,1],[23,0],[22,-3],[17,1],[16,1],[94,3],[23,0],[23,0],[107,2],[26,1],[43,1],[36,-1],[36,0],[81,0],[2,0],[42,1],[45,0],[59,0],[21,0],[32,1],[24,1],[78,3],[59,2],[28,0],[70,2],[24,1],[102,3],[49,1],[98,3],[74,2],[122,4],[96,1],[18,1],[42,2],[3,0],[109,5],[88,3],[38,2],[23,1],[32,2],[61,1],[17,1]],[[46300,94149],[-9,-1],[-20,0],[-30,-1],[-48,-1],[-54,-3],[-247,-6],[-45,-3],[-96,-2],[-56,-1],[-32,0],[-36,1],[-3,0],[-89,2],[-126,3],[-20,-11],[-37,0],[-42,-2],[-136,1],[-2,0],[-25,0],[-218,1],[-85,-1],[-287,3],[-98,2],[-143,2],[-28,0],[-69,-1],[-254,3],[-26,-1],[-27,0],[-32,0],[-104,0],[-19,0],[-26,0]],[[43731,94133],[0,254],[0,93],[0,104],[0,147],[3,101],[2,102],[0,133],[-24,1],[-120,3],[-109,-2],[-28,-1],[-15,-1],[-23,-1],[-261,-4],[-69,-1],[-83,-1],[-117,-2],[-2,0],[-78,-1],[-121,-2],[-56,-1],[-92,-2],[-158,-3],[-44,-1],[-68,-1],[-16,0],[-33,-1],[-51,-1],[-31,0],[-94,-2],[-15,5],[-16,0],[-27,1],[-17,0],[-16,0],[-16,1],[-15,1],[-15,0],[-20,-1],[-64,0],[-67,2],[-51,1],[-134,4],[-22,0],[-62,1],[-17,1],[-16,0],[-26,0],[-17,1],[-76,1],[-54,1],[-55,1],[-1,0],[-32,1],[-15,0],[-21,0],[-27,3],[-16,0],[-31,0],[-22,-1],[-24,1],[-105,1],[-5,0],[-93,2],[-60,0],[-70,1],[-30,0],[-152,3],[-16,1],[-103,2],[-90,2],[-15,-2],[-17,1],[-16,1],[-4,0],[-140,-3],[-185,-3],[-51,-1],[-48,-1],[-55,-2],[-88,0],[-93,-1],[-33,0],[-27,-1],[-51,0],[-2,0],[-173,-2],[-131,-1],[-103,-3],[-44,-1],[-27,2],[-19,0],[-36,0],[-18,0],[-20,1],[-29,-2],[-30,1],[-19,0],[-17,-1],[-25,0],[-16,1],[-23,-1],[-27,0],[-16,0],[-29,0],[-27,0],[-15,1],[-17,-4],[-16,0],[-23,-1],[-41,0],[-25,0],[-24,0],[-30,0],[-36,-2],[-48,0],[-22,0],[-16,-1],[-18,0],[-19,-1],[-29,-1],[-26,-1],[-19,0],[-26,-1],[-28,0],[-24,-1],[-18,0],[-21,-1],[-17,0],[-22,-1],[-16,-1],[-27,0],[-64,-1],[-33,-1],[-19,0],[-39,-1],[-29,-1],[-35,-2],[-33,0],[-12,-1],[-23,-1],[-22,-1],[-27,0],[-15,0],[-29,-2],[-24,0],[-23,-1],[-20,0],[-26,0],[-19,-1],[-19,0],[-31,-1],[-21,0],[-48,0],[-6,-1],[-21,0],[-37,-1],[-16,-2],[-142,-5],[-73,-2],[-187,-5],[-15,0],[-73,-1],[-6,0],[-163,-3],[-4,0],[-23,0],[-124,-2],[-2,0],[-49,0],[-25,-1],[-22,1],[-19,0],[-21,-1],[-16,0],[-101,-1],[-19,0],[-25,0],[-24,-1],[-16,0],[-20,1],[-40,-2],[-18,0],[-46,-1]],[[36071,95005],[0,129],[0,29],[0,94],[1,38],[-1,26],[1,31],[0,25],[-1,46],[0,25],[-1,162],[0,24],[0,161],[0,24],[0,67],[0,50],[-1,118],[1,22],[1,45],[0,25],[0,34],[0,29],[0,55],[-1,54],[0,28],[0,43],[0,49],[0,63],[3,83],[1,29],[0,166],[0,3],[-1,32],[0,27],[0,32],[-1,40],[-11,16],[-42,1],[-45,1],[-16,0],[-5,35],[0,56],[1,65],[-1,32],[0,32],[0,34],[0,33],[0,44],[0,36],[-1,22],[-1,113],[0,63],[0,42],[0,80],[0,40],[0,80],[0,41],[2,109],[-3,142],[-1,44],[0,61],[0,36],[0,57],[0,23],[-1,112],[-1,57],[0,258],[8,145],[0,85],[0,121],[2,37],[2,128],[1,84]],[[35960,99278],[25,-1],[16,0],[17,1],[16,-1],[22,1],[30,-1],[33,1],[17,0],[28,0],[40,1],[22,0],[15,0],[22,0],[40,1],[20,0],[21,1],[15,0],[18,0],[16,1],[53,-1],[53,-1],[67,0],[92,2],[154,3],[15,0],[63,1],[28,-1],[20,1],[31,0],[26,0],[25,0],[10,0],[27,0],[22,0],[26,0],[19,0],[15,0],[18,1],[17,-1],[21,0],[24,0],[22,1],[22,0],[47,0],[20,0],[16,0],[36,0],[24,0],[35,0],[19,0],[18,0],[23,0],[20,1],[18,0],[41,0],[52,0],[14,0],[20,0],[1,0],[28,1],[103,2],[17,0],[136,6],[116,2],[22,1],[16,0],[16,0],[64,1],[63,1],[139,4],[24,0],[100,3],[22,0],[21,1],[71,0],[77,2],[33,0],[50,1],[16,1],[15,0],[91,2],[169,5],[109,3],[28,1],[143,3],[49,2],[50,1],[1,0],[78,1],[49,2],[29,2],[15,0],[34,2],[32,1],[81,2],[28,2],[222,11],[24,0],[44,2],[19,1],[47,3],[26,1],[39,2],[68,2],[20,0],[72,3],[27,0],[47,2],[24,0],[24,1],[19,1],[27,2],[20,0],[17,1],[20,1],[53,3],[26,1],[16,0],[18,1],[24,2],[26,1],[29,1],[39,1],[72,3],[53,3],[20,1],[41,1],[34,1],[48,2],[41,1],[48,2],[20,1],[65,3],[30,1],[64,2],[17,1],[22,0],[58,2],[78,2],[25,1],[18,1],[19,1],[78,2],[22,0],[48,2],[27,0],[4,0],[16,1],[26,1],[22,0],[19,1],[22,0],[31,1],[33,1],[30,0],[25,1],[24,1],[33,1],[17,1],[22,0],[18,1],[24,0],[29,1],[27,0],[24,0],[18,0],[27,1],[19,0],[15,1],[22,1],[25,0],[24,1],[29,2],[16,-1],[18,0],[133,1],[217,4],[26,1],[134,2],[50,0],[14,0],[54,0],[50,0],[38,0],[31,0],[27,2],[51,4],[108,2],[59,1],[118,-4],[66,1],[22,-1],[30,0],[28,0],[17,4],[11,0],[129,1],[196,1],[48,0],[45,3],[174,-1],[203,1],[104,2],[217,-2],[87,2],[272,4],[65,2],[70,1],[26,1],[63,3],[199,1],[92,1],[128,3]],[[8576,99238],[-2,-148],[0,-92],[3,-21],[0,-31],[1,-195],[0,-95],[0,-110],[1,-212],[-1,-150],[0,-27],[-1,-102],[2,-28],[-2,-315],[0,-56],[-1,-118],[5,-222],[-1,-224],[83,-1],[19,-1],[129,0],[86,-2],[1,0],[46,0],[0,-311],[1,-635],[3,-311],[1,-185],[-1,-110],[-3,-332],[-1,-157],[-2,-150],[-1,-66],[-3,-250],[-3,-313],[-5,-315],[0,-6],[-5,-310],[0,-105],[-1,-22],[0,-3],[-2,-183],[-7,-312],[-4,-28],[-6,-289],[-4,-293],[-1,-23]],[[8900,92379],[-18,0],[-19,0],[-19,1],[-21,1],[-25,0],[-22,1],[-17,1],[-20,0],[-18,1],[-19,0],[-24,0],[-18,2],[-16,0],[-17,0],[-23,0],[-20,1],[-32,2],[-15,0],[-17,0],[-28,1],[-25,1],[-29,1],[-17,0],[-16,1],[-21,1],[-19,1],[-27,0],[-18,1],[-21,0],[-23,1],[-20,0],[-32,1],[-40,0],[-5,0],[-23,1],[-17,0],[-26,1],[-25,0],[-19,0],[-26,-1],[-16,0],[-17,0],[-29,1],[-17,0],[-25,0],[-24,0],[-31,0],[-18,1],[-52,0],[-35,0],[-27,0],[-17,0],[-20,0],[-19,0],[-50,-1],[-22,1],[-41,-1],[-21,0],[-30,1],[-31,0],[-28,0],[-22,0],[-19,-1],[-23,0],[-15,0],[-22,0],[-21,0],[-51,-1],[-33,0],[-39,0],[-21,0],[-17,-1],[-18,1],[-23,0],[-21,1],[-27,1],[-22,-1],[-24,1],[-17,0],[-24,-1],[-17,1],[-32,0],[-36,0],[-27,0],[-42,-1],[-12,1],[-5,0],[-19,0],[-16,-1],[-39,0],[-25,0],[-24,0],[-22,1],[-21,0],[-29,0],[-31,0],[-25,1],[-31,-1],[-23,0],[-6,0],[-32,1],[-25,0],[-48,0],[-52,1],[-39,1],[-35,0],[-30,0],[-23,1],[-29,0],[-27,0],[-44,1],[-26,0],[-25,0],[-34,1],[-2,0],[-77,0],[-206,2],[-157,-1],[-20,0],[-16,0],[-23,0],[-30,1],[-18,0],[-16,-1],[-20,0],[-22,1],[-32,1],[-16,1],[-39,2],[-22,1],[-18,1],[-28,2],[-25,0],[-7,0],[-32,1],[-31,1],[-29,0],[-16,0],[-15,1],[-15,0],[-298,3],[-55,1],[-1,0],[-38,1],[-37,0],[-67,1],[-111,2],[-10,0],[-19,0],[-15,-1],[-19,0],[-4,0],[-32,0],[-22,0],[-16,0],[-29,0],[-32,1],[-45,0],[-18,1],[-46,-1],[-21,0],[-17,0],[-28,0],[-18,0],[-18,0],[-28,0],[-15,0],[-19,0],[-20,1],[-43,-1],[-16,0],[-43,0],[-24,0],[-15,0],[-31,0],[-23,0],[-31,0],[-22,2],[-188,26],[-40,6],[-42,3],[-192,-18],[-31,-3]],[[3292,92444],[-20,64],[0,66],[23,77],[32,92],[17,54],[8,59],[0,47],[-10,59],[-25,54],[-34,46],[-47,54],[-52,34],[-32,16],[-10,4],[-28,11],[-19,7],[-39,7],[-46,1],[-12,0],[-69,2],[-4,0],[-35,0],[-42,24],[-6,4],[-21,10],[-15,7],[-8,7],[-33,27],[-31,36],[-20,21],[-4,5],[-14,14],[-14,17],[-15,17],[-17,19],[-13,14],[-16,10],[-12,8],[-37,22],[-19,11],[-12,8],[-42,21],[-11,3],[-15,4],[-12,3],[-4,0],[-15,2],[-27,4],[-32,-2],[-8,-2],[-26,-7],[-37,-13],[-42,-15],[-31,-19],[-66,-35],[-100,-49],[-89,-36],[-46,-7],[-11,2],[-41,10],[-40,9],[-42,27],[-27,33],[-19,30],[-10,40],[0,8],[2,31],[2,25],[0,3],[0,2],[17,78],[43,67],[37,26],[50,39],[47,21],[64,19],[43,16],[58,25],[58,36],[5,5],[21,19],[8,7],[3,5],[33,54],[11,15],[8,9],[12,46],[5,40],[1,24],[0,2],[1,20],[-3,20],[-2,10],[-4,25],[-6,37],[-10,32],[-6,25],[-18,39],[-8,18],[-3,6],[-6,15],[-12,20],[-15,28],[-28,35],[-14,17],[-14,17],[-15,14],[-9,9],[-19,21],[-22,24],[-4,5],[-15,23],[-12,24],[-29,57],[-21,74],[-1,34],[-3,39],[0,13],[0,26],[1,11],[4,34],[2,16],[1,9],[-1,8],[-8,70],[-18,109],[-36,95],[-46,106],[-35,66],[-2,4],[-18,34],[-90,166],[-5,20],[-18,62],[-8,53],[-4,23],[2,12],[9,51],[15,57],[10,33],[11,34],[26,70],[0,1],[9,45],[3,35],[1,3],[1,42],[-1,46],[0,6],[-4,25],[-9,34],[-5,13],[-9,26],[-1,2],[-6,19],[-12,32],[-15,33],[-17,30],[-27,49],[-28,47],[-24,36],[-3,6],[-2,2],[-18,24],[-20,24],[-38,43],[-25,26],[-42,38],[-17,14],[-46,30],[-58,38],[-4,2],[-8,7],[-34,28],[-1,2],[-88,93],[-11,23],[-12,22],[-25,96],[-3,29],[-3,35],[2,33],[1,23],[4,19],[7,34],[6,43],[8,51],[2,27],[2,37],[-1,14],[0,24],[0,6],[-2,33],[-2,12],[-1,14],[-6,36],[-2,8],[-8,32],[-3,7],[-8,19],[-12,26],[-1,1],[-11,24],[-5,10],[-18,39],[14,5],[1,0],[25,11],[26,11],[54,36],[33,13],[72,29],[34,14],[32,13],[8,3],[59,24],[65,28],[7,3],[18,7],[31,13],[94,51],[39,58],[51,77],[12,82],[12,77],[12,77],[15,79],[-5,27],[-12,55],[-14,29],[-19,39],[-3,34],[-35,28],[-59,45],[-49,139],[-17,33],[-79,102],[-102,-1],[-33,-11],[-67,-23],[-26,-7],[-73,-55],[-34,-26],[-4,-21],[-6,-114],[-27,-120],[-9,-70],[-1,-39],[1,-23],[1,-22],[3,-25],[7,-24],[19,-51],[-9,-46],[-21,-61],[-31,-26],[-25,-22],[-30,-27],[-21,-18],[-29,-26],[-6,-5],[-11,-10],[-18,-16],[-8,24],[-12,25],[-44,56],[-21,17],[-16,4],[-33,9],[-49,5],[-24,2],[-42,-7],[-1,-1],[-18,-7],[-8,-4],[-21,-15],[-4,-2],[-11,-6],[-26,-16],[-54,-24],[-37,-9],[-4,0],[-40,0],[-24,0],[-23,1],[-12,1],[-27,2],[-1,1],[-40,3],[-24,7],[-37,6],[-41,15],[-24,9],[-87,52],[-60,69],[-27,55],[-9,55],[13,80],[21,51],[35,65],[16,56],[2,28],[2,26],[-2,22],[-5,45],[-18,66],[-1,1],[-51,100],[-34,69],[-1,1],[-14,28],[-5,17],[-23,74],[-2,4],[-14,66],[6,36],[8,46],[3,19],[11,19],[5,9],[60,82],[43,41],[27,0],[21,0],[116,-2],[42,-1],[21,0],[15,-1],[22,1],[20,0],[18,-1],[22,0],[17,0],[79,-2],[31,0],[18,0],[49,-1],[79,-1],[78,-2],[48,-1],[16,0],[52,-1],[55,0],[55,-1],[25,-1],[30,0],[113,-3],[57,-1],[46,0],[30,-1],[184,1],[215,0],[28,0],[4,0],[59,1],[6,0],[65,0],[94,-4],[39,-1],[14,-1],[6,0],[80,-3],[10,-1],[17,-1],[80,-2],[215,-7],[60,-1],[82,-2],[122,-3],[26,0],[97,-2],[166,-4],[33,0],[21,-1],[57,-1],[20,0],[21,-1],[23,-1],[35,0],[25,-1],[24,0],[35,-1],[21,0],[31,-1],[19,-1],[20,0],[18,0],[20,-1],[19,-1],[29,0],[25,0],[30,0],[36,-1],[32,-1],[26,0],[17,-1],[22,-1],[23,0],[29,-1],[20,0],[23,0],[21,0],[26,-1],[21,0],[26,-1],[47,-1],[22,0],[26,-1],[28,0],[30,-1],[62,-1],[31,-1],[27,0],[17,-1],[16,0],[32,-1],[21,0],[26,-1],[16,0],[36,-1],[25,0],[18,0],[22,-1],[1,0],[37,0],[18,-1],[38,1],[17,0],[22,-1],[29,-1],[25,0],[16,-1],[16,0],[129,-2],[163,-2],[138,-2],[142,-2],[27,-1],[208,-2],[23,-1],[1,0],[28,0],[285,-4],[1,0],[53,-1],[209,-3],[21,-3],[52,-1],[33,-2],[57,-2],[54,-2],[1,0],[56,2],[38,0],[18,-1],[43,-1],[18,0],[26,0],[16,-1],[40,-1],[18,0],[23,0],[15,0],[40,-1],[28,0],[288,-7],[119,-2],[86,-1],[81,-1],[286,-4],[22,0],[264,-4],[131,-2],[16,3],[230,-4],[16,0],[31,-1],[92,-2],[6,0],[20,0],[22,-1],[19,0],[21,-1],[20,0],[60,-2],[29,-1],[30,-1],[20,-1],[22,0],[19,0],[21,-1],[25,0]],[[36071,95005],[-2,-173],[0,-144],[0,-23],[-1,-204],[-1,-166],[-1,-238],[0,-79],[0,-237],[0,-51],[0,-118],[0,-30],[0,-95],[0,-110],[2,-80],[0,-33],[1,-34],[-2,-77],[0,-152],[0,-36],[0,-292],[0,-97],[0,-58]],[[36067,92478],[-101,-2],[-19,0],[-21,-1],[-6,0],[-222,-4],[-61,-1],[-138,-2],[-70,-2],[-63,-1],[-139,-3],[-16,1],[-15,0],[-33,-1],[-25,0],[-26,0],[-28,0],[-38,0],[-33,-1],[-17,0],[-20,0],[-18,0],[-41,0],[-19,-1],[-4,0],[-13,0],[-85,-2],[-16,0],[-37,0],[-25,0],[-24,-1],[-39,0],[-216,-2],[-26,-1],[-250,-2],[-73,0],[-15,-8],[-121,1],[-5,0],[-277,1],[-299,2],[-216,4],[-16,0],[-26,-1],[-28,0],[-20,-1],[-23,0],[-16,0],[-19,-1],[-22,0],[-24,0],[-42,0],[-22,-1],[-53,0],[-25,-1],[-28,0],[-1,0],[-32,-1],[-43,0],[-12,0],[-52,-1],[-285,-4],[-81,0],[-65,0],[-20,-10],[-114,1],[-17,0],[-56,3],[-7,0],[-146,-1],[-17,0],[-39,-1],[-44,-1],[-36,0],[-15,0],[-15,0],[-27,-1],[-16,0],[-36,-1],[-16,-1],[-17,0],[-27,0],[-16,-1],[-24,0],[-21,0],[-21,-1],[-21,0],[-252,-4],[-32,0],[-195,-1],[-17,3],[-51,-1],[-35,0],[-17,-1],[-34,0],[-24,0],[-39,0],[-17,0],[-21,0],[-20,0],[-32,0],[-74,1],[-41,1],[-20,0],[-22,0],[-34,0],[-40,0],[-24,0],[-34,1],[-56,1],[-41,1],[-41,0],[-37,2],[-27,-1],[-29,-2],[-15,1]],[[30133,92428],[-1,148],[0,125],[-2,347],[-1,155],[3,197],[0,75],[-1,56],[0,36],[0,103],[1,54],[-1,40],[0,73],[-1,60],[0,76],[0,24],[-1,53],[0,60],[0,34],[-2,48],[0,34],[2,60],[2,22],[-1,318],[-8,206],[-1,106],[0,34],[0,70],[-1,60],[0,152],[-1,43],[0,38],[-2,318],[-1,179],[-1,58],[1,81],[0,29],[1,32],[0,42],[-1,51],[0,51],[0,26],[0,84],[-2,88],[1,68],[-2,21],[2,27],[1,32],[-2,29],[0,30],[-1,49],[-1,118],[-1,50],[0,44],[0,101],[-24,0],[-15,-1],[-36,0],[-38,0],[-33,-3],[-1,37],[0,39],[-2,136],[3,138],[-2,198],[-1,51],[-1,60],[0,40],[2,90],[2,113],[2,47],[-2,22],[1,41],[0,37],[1,23],[-1,22],[2,28],[-3,240],[-1,132],[1,106],[1,130],[0,193],[2,331],[0,24]],[[29968,99217],[60,0],[15,-1],[35,0],[15,0],[38,1],[30,0],[59,1],[57,1],[27,0],[19,0],[17,-1],[25,0],[32,-1],[21,-1],[21,1],[26,0],[58,0],[134,0],[17,1],[23,0],[49,1],[33,0],[308,4],[79,1],[65,1],[48,2],[42,1],[22,0],[81,1],[21,1],[77,1],[27,1],[28,0],[59,2],[16,1],[24,0],[16,-1],[46,1],[143,3],[142,3],[92,2],[87,2],[31,4],[101,2],[36,1],[48,1],[4,0],[197,5],[16,1],[77,2],[24,1],[23,1],[16,0],[15,1],[39,1],[39,1],[39,1],[71,3],[71,2],[15,1],[22,0],[15,-1],[78,2],[16,-1],[30,3],[53,1],[15,0],[57,2],[15,0],[77,-1],[146,0],[80,3],[16,0],[16,0],[17,0],[2,0],[18,-1],[17,0],[4,0],[17,0],[20,0],[34,0],[18,-1],[27,0],[62,-1],[73,-1],[66,-1],[34,2],[15,1],[129,0],[47,0],[274,-7],[24,2],[153,-3],[201,-2],[62,0],[32,1],[50,0],[31,1],[74,0],[3,0],[43,0],[24,1],[19,0],[24,0],[17,1],[27,0],[35,-1],[33,1],[24,0],[29,0],[35,0],[20,0],[27,0],[37,0],[72,1],[18,2],[26,0],[26,0],[19,1],[18,-1],[16,-1],[67,1],[19,-1],[19,0],[29,4],[16,-1],[17,0]],[[17119,99084],[-5,-236],[2,-34],[0,-31],[2,-258],[-1,-184],[4,-152],[0,-40],[0,-43],[0,-39],[0,-73],[0,-47],[0,-30],[0,-24],[0,-19],[0,-36],[0,-44],[0,-43],[0,-26],[0,-45],[0,-37],[0,-29],[0,-24],[0,-32],[0,-41],[0,-24],[0,-58],[0,-27],[0,-39],[0,-40],[0,-36],[0,-32],[-1,-90],[0,-50],[1,-178],[100,-1],[112,1],[22,0],[118,-2],[-1,-25],[0,-33],[1,-260],[1,-83],[-2,-23],[1,-46],[0,-43],[-1,-35],[0,-10],[0,-34],[2,-316],[1,-158],[1,-159],[1,-135],[0,-31],[-1,-24],[-1,-26],[-1,-24],[-1,-25],[0,-26],[-2,-27],[1,-33],[0,-30],[-1,-25],[0,-40],[0,-23],[0,-30],[0,-29],[-1,-41],[0,-40],[8,-23],[21,0],[17,0],[18,0],[16,0],[18,2],[53,-1]],[[17621,95085],[-10,-304],[-4,-152],[-4,-194],[1,-200],[-3,-26],[0,-67],[-2,-27],[-1,-35],[-1,-33],[-1,-30],[0,-28],[-1,-30],[-1,-56],[-1,-35],[-1,-25],[0,-22],[-1,-42],[-1,-47],[-1,-31],[-1,-59],[-11,-427],[-18,-3],[-8,-313],[-1,-31],[0,-41],[-1,-28],[0,-28],[0,-28],[0,-38],[-1,-98],[0,-22],[0,-47],[-1,-34],[-1,-45],[0,-33],[0,-31],[-1,-30],[0,-55],[-1,-31],[0,-23],[0,-34],[-1,-30],[0,-36],[0,-36],[0,-29],[0,-28],[-1,-33],[0,-40],[0,-24],[0,-7],[3,-180],[2,-117],[0,-31],[-1,-217],[0,-81],[-17,-314],[-1,-41],[-1,-24],[0,-24],[0,-24],[-1,-25],[0,-31],[-1,-38],[0,-25],[0,-22],[-1,-28],[0,-26],[-2,-302],[-1,-40],[0,-26],[0,-33],[0,-30],[0,-39],[-1,-26],[0,-61],[0,-27],[0,-30],[0,-26],[-1,-31],[0,-73],[0,-49],[-1,-32],[0,-33],[0,-35],[0,-34],[0,-37],[-1,-53],[0,-52],[-1,-37],[0,-59],[-1,-51],[-6,-53]],[[17509,89442],[-24,4],[-22,1],[-37,-1],[-17,1],[-20,0],[-19,-1],[-20,1],[-21,-1],[-16,0],[-22,1],[-25,-1],[-16,0],[-17,0],[-22,0],[-33,1],[-45,0],[-24,0],[-17,0],[-18,0],[-24,0],[-28,-1],[-36,0],[-20,1],[-53,-2],[-22,1],[-49,0],[-33,1],[-44,1],[-37,-1],[-51,0],[-44,1],[-52,0],[-51,0],[-21,1],[-19,-1],[-21,0],[-16,0],[-18,1],[-19,0],[-25,0],[-16,0],[-20,0],[-23,1],[-19,0],[-18,-1],[-16,2],[-16,0],[-29,-1],[-21,0],[-22,1],[-16,1],[-17,1],[-16,0],[-30,0],[-23,-1],[-27,1],[-29,-1],[-21,1],[-22,1],[-23,0],[-21,1],[-18,0],[-19,0],[-19,-1],[-21,0],[-18,0],[-19,1],[-148,2],[-4,0],[-112,1],[-104,-1],[-50,0],[-34,0],[-16,1],[-16,2],[-21,0],[-69,-2],[-26,1],[-38,0],[-39,0],[-52,1],[-58,1],[-18,0],[-21,-1],[-22,1],[-16,0],[-36,0],[-20,0],[-33,-1],[-28,1],[-24,0],[-19,1],[-28,0],[-16,0],[-25,0],[-18,1],[-39,0],[-23,0],[-19,1],[-29,1],[-22,-1],[-25,1],[-37,1],[-22,-1],[-24,1],[-15,0],[-17,1],[-34,1],[-21,-1],[-30,1],[-28,0],[-18,1],[-18,0],[-20,1],[-19,0],[-20,0],[-30,1],[-26,1],[-41,0],[-43,1],[-17,0],[-40,1],[-7,0],[-65,2],[-19,0],[-45,1],[-82,2],[-17,1],[-2,0],[-68,2],[-18,0],[-28,0],[-20,1],[-20,0],[-16,1],[-27,0],[-26,1],[-21,0],[-1,0],[-37,1],[-27,1],[-19,0],[-21,0],[-18,1],[-21,-1],[-50,3],[-17,-1],[-25,0],[-42,1],[-31,1],[-31,1],[-22,-1],[-17,1],[-19,1],[-33,0],[-27,0],[-22,0],[-103,3],[-17,0],[-29,0],[-16,1],[-19,0],[-27,1],[-20,0],[-19,1],[-18,0],[-19,0],[-17,1],[-32,0],[-16,1],[-21,0],[-44,1],[-16,0],[-27,1],[-17,0],[-42,1],[-22,0],[-22,0],[-19,0],[-33,1],[-42,1],[-16,1],[-8,0],[-12,0],[-26,1],[-33,1],[-37,0],[-17,1],[-17,0],[-17,1],[-51,1],[-16,0],[-18,1],[-21,-2],[-22,1],[-59,1],[-22,0],[-23,1],[-34,2],[-22,0],[-18,1],[-71,1],[-71,2],[-75,0],[-73,2],[-68,-1],[-23,0],[-47,1],[-120,1],[-69,1],[-24,1],[-25,1],[-310,2]],[[10961,89528],[-115,70],[1,5],[-5,20],[-5,3],[-60,84],[-7,12],[-4,19],[-1,38],[-7,21],[-8,11],[-26,22],[-25,26],[-35,41],[-22,25],[-11,23],[-8,27],[1,10],[3,7],[19,17],[1,2],[14,16],[19,34],[11,34],[-3,6],[-22,16],[-7,8],[-3,7],[0,22],[6,15],[27,35],[7,17],[0,13],[-2,7],[-3,5],[-23,6],[-9,6],[-19,21],[-9,21],[-1,1],[-4,11],[-13,52],[-47,159],[-3,16],[-9,23],[-19,31],[-15,44],[2,28],[1,15],[18,74],[16,182],[20,177],[13,107],[5,35],[7,25],[0,20],[-2,101],[-3,12],[-3,45],[-8,93],[-1,32],[4,19],[66,222],[55,66],[9,3],[8,10],[1,2],[3,7],[0,20],[-3,9],[-9,10],[-10,6],[-16,4],[-35,2],[-52,4],[-3,1],[-13,3],[-14,10],[-9,10],[-4,9],[-14,49],[-2,17],[-1,42],[-3,94],[6,19],[0,9],[-7,117],[-3,7],[-134,5],[-86,-1],[-1,0],[-39,0],[-22,0],[-31,-1],[-63,0],[-29,0],[-23,-1],[-30,1],[-26,-1],[-19,0],[-15,0],[-30,0],[-25,-1],[-18,1],[-27,-1],[-24,-1],[-21,1],[-18,0],[-23,-1],[-17,0],[-24,0],[-37,0],[-15,-3],[-16,0],[-25,1],[-16,1],[-29,2],[-26,1],[-25,1],[-33,2],[-16,0],[-25,1],[-22,1],[-15,1],[-16,0],[-19,0],[-18,1],[-16,1],[-16,1],[-43,0],[-19,1],[-24,1],[-45,1],[-30,1],[-35,1],[-22,1],[-16,0],[-17,0],[-16,1],[-20,1],[-23,0],[-16,1],[-23,0],[-22,1],[-28,1],[-51,1],[-59,2]],[[8576,99238],[19,-1],[23,0],[19,0],[52,-1],[22,-1],[26,0],[25,0],[21,-1],[16,0],[35,-1],[28,0],[44,-1],[16,0],[44,-1],[20,0],[64,-1],[44,-1],[20,-1],[35,0],[94,-3],[50,-1],[140,-3],[2,0],[141,-3],[58,-2],[108,-1],[36,0],[18,0],[80,-2],[22,0],[28,-1],[38,-1],[15,0],[23,0],[147,-2],[143,-1],[48,-2],[73,-2],[31,0],[18,-1],[44,1],[71,-1],[85,-2],[55,-2],[158,-4],[138,-3],[20,-1],[28,1],[85,-2],[115,-2],[18,0],[175,-3],[148,-2],[129,-6],[306,0],[71,3],[170,-3],[28,-1],[76,-1],[169,-4],[44,-1],[191,-4],[95,-2],[210,-6],[17,0],[45,-1],[148,-1],[16,-1],[114,-2],[44,-1],[250,-5],[79,-2],[65,-1],[14,0],[133,-3],[173,-4],[57,-1],[13,0],[16,0],[31,-1],[16,0],[41,-1],[15,0],[38,-1],[20,-1],[70,-2],[74,-3],[16,0],[13,0],[33,-1],[5,0],[176,-2],[61,-1],[94,-2],[15,0],[24,0],[17,0],[25,0],[20,0],[18,-1],[26,-1],[35,-1],[31,-1],[27,-1],[24,0],[19,-1],[36,1],[15,0],[22,0],[19,-1],[16,-1],[21,0],[41,-1],[23,-1],[18,0],[32,-1],[27,0],[29,0],[25,-1],[19,0],[24,-1],[26,0],[17,-1],[19,0],[48,-1],[17,0],[16,-1],[18,0],[27,-1],[22,0],[17,0],[35,-1],[18,0],[34,-1],[36,0],[41,-1],[33,-1],[23,0],[29,-1],[31,0],[79,-2],[24,0],[39,-1],[23,0],[48,-1],[15,0],[46,-1],[37,-1],[33,-1],[1,0],[46,-1],[24,0],[20,-1],[22,0],[22,-1],[18,0],[45,0],[15,0],[22,-1],[21,0],[37,-1],[15,0],[50,-1],[18,0],[36,-1],[31,0],[24,0],[16,-1],[17,0],[23,0],[16,0],[28,0],[28,-1],[47,0]],[[30133,92428],[0,-25],[1,-221],[1,-57],[0,-28],[0,-9],[0,-15],[0,-63],[-2,-224],[-4,-190],[0,-44],[-1,-60],[3,-222],[0,-44],[-1,-67],[-1,-199],[0,-181],[-2,-245],[0,-89],[-1,-74],[1,-29],[-1,-123],[0,-103],[-2,-211],[-1,-159],[0,-157]],[[30123,89589],[-359,2],[-27,0],[-92,1],[-90,2],[-23,0],[-43,0],[-43,0],[-16,-1],[-41,0],[-28,0],[-46,2],[-19,0],[-23,0],[-17,0],[-44,1],[-16,-1],[-35,0],[-25,0],[-17,1],[-17,0],[-19,1],[-21,0],[-32,0],[-27,1],[-29,0],[-48,0],[-24,0],[-37,0],[-20,1],[-69,0],[-17,1],[-17,0],[-33,0],[-32,0],[-47,0],[-36,0],[-20,1],[-36,0],[-24,0],[-15,1],[-16,0],[-21,0],[-45,1],[-54,1],[-18,0],[-18,0],[-19,0],[-45,1],[-25,0],[-25,-1],[-18,1],[-31,1],[-16,-1],[-4,0],[-20,0],[-48,1],[-42,0],[-22,0],[-16,0],[-16,-1],[-74,1],[-20,0],[-36,0],[-46,0],[-20,1],[-66,-1],[-65,1],[-52,0],[-22,0],[-16,0],[-54,0],[-26,1],[-20,-1],[-42,1],[-44,1],[-28,1],[-21,0],[-16,0],[-17,0],[-45,0],[-41,0],[-51,0],[-23,0],[-17,1],[-50,0],[-34,1],[-38,-1],[-37,0],[-23,0],[-24,0],[-25,0],[-20,1],[-26,-1],[-41,1],[-25,0],[-39,0],[-31,1],[-27,1],[-27,0],[-19,0],[-32,2],[-20,0],[-16,0],[-26,0],[-27,0],[-22,0],[-31,1],[-8,-1],[-89,-2],[-18,-1],[-35,-1],[-14,0],[-6,0],[-64,0],[-59,1],[-60,1],[-53,2],[-28,1],[-24,1],[-28,1],[-60,1],[-16,1],[-15,0],[-14,0],[-6,0],[-19,1],[-74,0],[-21,0],[-19,1],[-21,0],[-21,0],[-23,0],[-36,1],[-18,0],[-4,0],[-18,0],[-19,0],[-66,0],[-8,0],[-6,0],[-8,0],[-98,5],[-67,-2],[-22,3],[-53,-2],[-29,0],[-19,0],[-19,0],[-55,0],[-54,-1],[-26,0],[-20,1],[-5,0],[-67,2],[-129,4],[-68,2],[-18,0],[-25,0],[-18,0],[-16,-1],[-39,2],[-23,0],[-29,1],[-19,1],[-19,0],[-48,2],[-17,-1],[-67,3],[-19,1],[-16,0],[-16,0],[-19,1],[-30,1],[-25,0],[-19,0],[-16,1],[-32,1],[-21,0],[-16,1],[-118,6],[-19,0],[-18,0],[-204,3],[-38,2],[-32,0],[-17,0],[-36,2],[-24,0],[-18,1],[-21,0],[-26,1],[-43,1],[-22,0],[-26,1],[-17,0],[-17,0],[-21,1],[-29,1],[-15,-1],[-17,1],[-21,1],[-17,-1],[-25,2]],[[23341,89670],[0,28],[0,24],[0,30],[1,23],[-1,27],[1,60],[0,24],[-1,33],[1,39],[-1,31],[1,30],[-1,23],[0,2],[0,27],[0,32],[0,22],[3,63],[0,112],[0,67],[0,90],[0,157],[-1,47],[0,56],[1,34],[-1,22],[0,23],[0,23],[0,27],[0,23],[0,24],[1,26],[0,91],[1,22],[0,60],[3,154],[-1,35],[-1,34],[-1,23],[-1,41],[-1,26],[1,46],[1,27],[0,34],[0,47],[0,42],[1,28],[0,50],[1,48],[0,26],[0,14],[0,50],[0,58],[1,168],[0,25],[1,29],[-1,27],[0,51],[1,126],[0,35],[0,73],[0,18],[1,118],[0,82],[1,184],[0,73],[1,135],[0,68],[0,25],[0,24],[1,147],[0,90],[1,79],[3,157],[1,34],[0,27],[2,133],[1,50],[1,41],[0,25],[2,97],[1,33],[0,35],[1,83],[1,38],[0,24],[1,25],[1,69],[1,59],[1,49],[1,48],[0,36],[1,36],[1,26],[1,28],[0,33],[0,85],[1,37],[0,36],[2,36],[-1,83],[0,16],[0,32],[0,69]],[[23377,95032],[1,225],[0,45],[0,44],[1,24],[0,23],[0,26],[0,33],[0,24],[0,23],[-1,38],[0,23],[0,22],[-1,160],[-1,134],[1,23],[0,23],[0,27],[0,26],[0,22],[0,32],[0,32],[0,48],[-1,29],[1,29],[0,56],[-1,66],[0,35],[0,26],[0,37],[-1,23],[-1,185],[-1,201],[-1,48],[-6,54],[-22,0],[-24,0],[-21,0],[-64,-1],[-26,0],[-18,0],[-30,-1],[-43,0],[-1,161],[0,36],[0,36],[-1,93],[-1,90],[0,21],[0,27],[1,30],[-1,24],[-1,22],[2,24],[0,24],[0,31],[1,32],[-3,92],[1,50],[0,70],[0,25],[-1,27],[0,25],[-1,81],[0,63],[-3,281],[0,29],[0,26],[0,23],[0,23],[0,24],[-1,24],[0,7],[0,29],[0,31],[0,31],[0,39],[-1,33],[0,34],[0,28],[-1,24],[0,41],[0,26],[-1,31],[0,36],[0,29],[0,47],[0,75],[2,144]],[[23108,99095],[284,4],[143,1],[58,1],[363,5],[122,2],[59,0],[127,2],[132,1],[126,1],[116,2],[27,0],[46,0],[80,3],[20,0],[122,0],[17,0],[204,1],[79,0],[22,0],[81,2],[30,0],[21,2],[120,-2],[41,0],[135,3],[205,5],[48,1],[69,1],[70,2],[113,2],[2,0],[127,4],[16,0],[22,1],[24,0],[31,1],[127,3],[28,3],[19,2],[184,0],[13,1],[57,2],[101,3],[20,0],[21,1],[26,0],[24,1],[37,1],[30,1],[17,0],[16,0],[22,1],[20,0],[33,1],[16,0],[27,1],[22,0],[41,1],[31,1],[23,0],[22,1],[21,0],[25,1],[9,0],[7,0],[17,1],[5,0],[15,0],[2,0],[16,0],[17,1],[17,0],[13,0],[3,0],[23,1],[47,1],[17,0],[19,1],[21,0],[26,1],[5,0],[10,0],[36,1],[21,1],[15,0],[42,1],[20,1],[24,0],[42,2],[44,1],[30,0],[20,1],[26,0],[31,1],[22,0],[28,1],[28,1],[22,0],[15,0],[22,2],[17,0],[23,0],[17,2],[18,1],[21,0],[32,1],[19,1],[25,0],[39,1],[32,0],[32,1],[40,0],[25,1],[39,0],[51,1],[36,1],[17,1],[18,0],[39,2],[26,0],[70,1],[90,2],[34,1],[148,3],[94,3],[92,0],[30,1],[18,4],[112,0],[79,1],[22,0],[177,1],[38,0],[36,-1],[15,1],[34,1],[19,1],[84,1]],[[23377,95032],[-18,1],[-19,3],[-106,1],[-158,7],[-90,5],[-148,4],[-23,1],[-50,0],[-248,8],[-251,9],[-30,2],[-20,1],[-20,4],[-19,0],[-29,-1],[-28,0],[-23,1],[-16,1],[-21,1],[-16,0],[-17,1],[-43,2],[-31,0],[-142,1],[-113,0],[-1,0],[-244,0],[-351,0],[-43,3],[-37,-1],[-27,0],[-47,0],[-36,-1],[-17,0],[-35,0],[-16,0],[-16,0],[-17,-1],[-19,0],[-24,0],[-21,0],[-18,0],[-21,-1],[-24,0],[-16,0],[-20,-1],[-43,0],[-18,0],[-53,0],[-7,0],[-13,0],[-27,0],[-27,-1],[-32,1],[-68,-3],[-80,-2],[-81,0],[-32,-1],[-5,0],[-45,-1],[-110,-2],[-129,1],[-90,2],[-99,2],[-19,2],[-64,-2],[-74,3],[-15,-2],[-22,3],[-81,1],[-21,0],[-265,5],[-35,1],[-140,0],[-465,-1],[-172,1],[-119,1],[-1,0],[-161,-3],[-32,0],[-16,0],[-18,0],[-15,-1],[-35,0],[-21,0],[-116,1],[-161,-2]],[[17119,99084],[64,-1],[79,-1],[59,-1],[19,-1],[16,0],[25,0],[24,0],[39,-1],[21,0],[16,0],[22,0],[26,-1],[19,0],[104,-1],[33,-2],[127,-1],[101,0],[22,0],[160,-1],[218,-1],[73,0],[21,0],[28,0],[38,0],[20,0],[16,0],[21,0],[20,0],[45,0],[17,0],[24,1],[27,0],[61,0],[25,0],[62,0],[22,0],[43,0],[18,1],[63,0],[52,1],[20,0],[50,0],[50,0],[38,0],[49,0],[28,0],[16,-6],[94,1],[119,1],[35,1],[20,0],[27,5],[49,0],[59,0],[26,1],[36,-4],[17,0],[4,0],[174,1],[150,1],[36,0],[58,5],[21,1],[19,-1],[27,1],[29,1],[25,-1],[32,0],[22,0],[49,-1],[22,0],[40,1],[35,0],[27,0],[33,1],[16,-1],[21,0],[24,0],[17,0],[21,1],[20,0],[33,0],[26,1],[32,1],[2,0],[24,-1],[53,-2],[105,2],[17,0],[19,-3],[39,0],[171,2],[33,1],[15,0],[32,0],[1,0],[18,0],[119,1],[139,2],[16,1],[21,0],[100,0],[19,0],[25,-1],[40,0],[21,1],[20,0],[20,0],[23,0],[23,1],[27,0],[22,1],[18,-1],[28,1],[16,-1],[25,-1],[21,-3],[138,0],[15,5],[52,0],[33,0],[17,0],[66,-4],[197,3],[49,0],[50,1],[61,0],[61,1],[65,2],[13,0],[9,0],[17,0],[75,1],[85,1],[51,0],[27,0]],[[43731,94133],[0,-190],[1,-309],[0,-74],[-1,-70],[0,-4],[0,-199],[1,-65],[-1,-35],[0,-54],[1,-115],[0,-172],[0,-104],[0,-197],[0,-230],[0,-20],[0,-57],[0,-111],[1,-28],[0,-225],[0,-95],[0,-88],[0,-361],[0,-33],[0,-81],[0,-89],[0,-65],[0,-28],[-1,-34],[0,-22],[0,-69],[-1,-42],[0,-29],[0,-34],[0,-52],[-1,-85],[-1,-156],[0,-62],[0,-28],[-1,-48],[0,-39],[0,-26],[0,-26],[0,-22],[0,-38],[-1,-45],[0,-57],[0,-61],[0,-85],[0,-43],[0,-68],[-1,-29],[0,-62],[0,-44],[0,-79],[0,-32],[0,-58],[0,-54],[-1,-35],[0,-52],[0,-63],[0,-68],[-2,-89],[0,-41],[0,-60],[0,-156],[1,-56],[-1,-189],[0,-74],[0,-110],[-1,-122],[0,-64],[-1,-114],[0,-28],[1,-46],[0,-34],[-2,-32],[0,-39],[0,-3],[1,-70],[0,-35],[1,-76],[0,-53],[0,-42],[1,-82],[0,-59],[0,-27],[0,-68]],[[43723,87518],[-132,-10],[-2,0],[-19,6],[-17,0],[-32,0],[-28,-1],[-20,-1],[-34,-1],[-26,0],[-40,0],[-29,-2],[-62,-1],[-60,-1],[-98,-2],[-44,-1],[-12,0],[-61,0],[-44,0],[-79,0],[-179,1],[-228,-2],[-107,0],[-3,0],[-157,-4],[-25,0],[-19,0],[-25,0],[-23,1],[-28,0],[-15,-1],[-32,1],[-20,2],[-20,-2],[-39,0],[-21,0],[-62,0],[-33,2],[-281,-1],[-21,0],[-22,0],[-66,1],[-22,-2],[-36,1],[-23,1],[-42,1],[-16,1],[-15,0],[-23,1],[-28,1],[-17,0],[-100,2],[-67,1],[-83,2],[-56,1],[-19,0],[-35,0],[-33,0],[-72,1],[-22,0],[-76,2],[-35,1],[-30,0],[-24,0],[-17,0],[-1,0],[-33,0],[-56,1],[-40,1],[-40,0],[-72,0],[-61,-1],[-83,-1],[-94,-1],[-17,0],[-35,-1],[-91,-2],[-33,0],[-99,-1],[-23,-1],[-29,0],[-27,-1],[-51,0],[-62,-2],[-75,-1],[-72,-1],[-21,0],[-25,0],[-85,-2],[-37,-1],[-18,0],[-16,-1],[-15,0],[-27,-1],[-22,0],[-24,-1],[-18,-1],[-17,0],[-6,0],[-12,0],[-26,-1],[-17,0],[-18,-1],[-18,1],[-17,-1],[-40,-3],[-6,0],[-66,-1],[-24,1],[-21,-1],[-43,-1],[-27,0],[-36,-1],[-19,-1],[-46,-1],[-32,-1],[-19,0],[-101,-2],[-28,-1],[-42,-1],[-89,-3],[-45,0],[-91,-2],[-2,0],[-43,-1],[-53,-1],[-50,-1],[-41,-1],[-50,-2],[-37,0],[-34,-1],[-26,-1],[-21,0],[-50,-2],[-58,-1],[-46,-1],[-39,-1],[-20,-1],[-56,-1],[-33,-1],[-35,-1],[-30,-1],[-36,-1],[-19,0],[-4,0],[-44,-1],[-54,-1],[-45,-2],[-25,-1],[-27,-1],[-149,-4],[-143,-3],[-65,-1],[-67,-2],[-3,0],[-125,-3],[-148,2],[-47,-5],[-31,0],[-20,0],[-27,0],[-16,0],[-111,-5],[-85,-4],[-98,0]],[[36146,87428],[-69,0],[0,76],[-1,27],[0,30],[0,23],[0,25],[1,28],[-1,52],[0,64],[0,35],[0,35],[0,79],[0,27],[0,23],[0,29],[0,66],[1,89],[0,87],[0,35],[0,37],[-1,79],[1,54],[-1,23],[1,44],[-1,111],[0,56],[0,98],[-1,101],[0,59],[0,34],[0,42],[0,23],[0,72],[0,157],[0,30],[-1,36],[0,7],[-3,97],[0,52],[0,3],[-2,30],[-1,13],[2,22],[0,25],[1,77],[0,25],[0,79],[0,3],[1,67],[0,22],[0,28],[0,25],[0,97],[0,26],[-1,85],[1,35],[0,218],[-1,24],[1,37],[0,39],[1,38],[0,28],[0,39],[0,30],[0,73],[0,58],[0,22],[0,27],[0,36],[1,26],[-1,29],[0,33],[0,26],[0,25],[0,34],[0,48],[0,33],[4,32],[-1,111],[0,26],[-1,87],[0,49],[0,73],[-1,64],[0,25],[0,59],[-1,30],[0,22],[0,83],[0,45],[-1,34],[0,22],[0,34],[0,34],[-1,37],[0,60],[-1,69],[0,31],[0,45],[0,51],[-1,67],[-1,122],[0,68],[-1,43]],[[23341,89670],[0,-29],[-1,-45],[0,-37],[2,-23],[2,-118],[-3,-47],[-1,-27],[0,-134],[-2,-82],[0,-23],[0,-37],[0,-26],[-1,-87],[-2,-74],[-2,-157],[-1,-23],[-3,-168],[-2,-123],[-5,-244],[-1,-66],[-3,-145],[0,-17],[-2,-77],[-2,-80],[-1,-118],[0,-19],[-1,-5],[0,-34],[0,-14],[-2,-90],[-1,-35]],[[23309,87466],[-101,7],[-64,4],[-70,5],[-40,2],[-69,5],[-75,5],[-37,2],[-37,4],[-70,3],[-141,7],[-41,2],[-20,1],[-18,1],[-37,2],[-29,1],[-17,1],[-32,2],[-16,1],[-48,2],[-19,2],[-18,0],[-21,1],[-28,2],[-38,2],[-31,2],[-31,2],[-25,1],[-54,3],[-24,1],[-87,4],[-16,2],[-20,0],[-37,2],[-22,1],[-16,1],[-29,1],[-18,2],[-23,1],[-25,1],[-26,2],[-23,1],[-23,1],[-29,2],[-20,1],[-17,1],[-29,0],[-18,0],[-26,0],[-39,0],[-36,0],[-19,-1],[-18,0],[-21,1],[-23,0],[-24,0],[-17,0],[-18,0],[-24,0],[-17,-1],[-22,0],[-23,0],[-23,-1],[-42,0],[-29,0],[-25,-1],[-15,0],[-31,0],[-16,0],[-24,0],[-16,0],[-54,0],[-16,0],[-24,0],[-29,0],[-23,0],[-59,0],[-29,0],[-35,0],[-24,0],[-25,0],[-24,0],[-18,0],[-44,0],[-19,0],[-19,0],[-16,0],[-22,0],[-30,0],[-21,-1],[-16,1],[-22,-1],[-38,0],[-22,0],[-17,0],[-20,0],[-20,-1],[-17,1],[-29,-1],[-39,0],[-32,0],[-25,0],[-21,0],[-38,0],[-22,-1],[-32,0],[-25,-1],[-16,0],[-17,0],[-25,-1],[-27,0],[-20,0],[-30,-1],[-21,0],[-20,0],[-14,0],[-5,0],[-56,0],[-38,0],[-19,-1],[-19,0],[-21,1],[-42,0],[-25,0],[-25,0],[-19,0],[-21,0],[-17,0],[-18,0],[-24,0],[-20,0],[-16,0],[-18,0],[-20,0],[-24,0],[-19,0],[-16,0],[-36,0],[-31,0],[-24,0],[-20,1],[-19,-1],[-20,1],[-20,0],[-55,0],[-18,1],[-25,0],[-28,1],[-23,0],[-25,0],[-16,0],[-26,0],[-22,0],[-28,0],[-27,1],[-15,0],[-28,0],[-16,0],[-25,0],[-27,0],[-16,1],[-20,-1],[-23,0],[-43,1],[-17,0],[-17,0],[-8,0],[-19,0],[-16,0],[-22,0],[-33,1],[-21,0],[-19,0],[-28,0],[-33,1],[-21,-1],[-24,1],[-36,0],[-22,-1],[-21,1],[-26,0],[-16,0],[-17,0],[-23,0],[-16,0],[-18,0],[-35,0],[-24,1],[-21,-1],[-50,1],[-18,0],[-20,0],[-19,0],[-44,0],[-31,1],[-27,-1],[-24,0],[-29,0],[-23,1],[-23,0],[-28,0],[-16,0],[-30,0],[-21,0],[-15,0],[-12,0],[-24,0],[-19,0],[-140,-2],[-34,0]],[[17518,87560],[-18,0],[0,62],[0,61],[0,31],[1,55],[0,54],[0,26],[0,26],[1,76],[0,77],[1,39],[0,40],[0,41],[0,41],[2,149],[0,31],[1,135],[1,272],[0,72],[1,71],[0,42],[0,89],[0,62],[0,50],[0,50],[0,69],[1,43],[0,32],[0,33],[0,26],[0,27]],[[51339,93267],[-2,-154],[-1,-33],[-1,-71],[0,-42],[-1,-13],[0,-25],[1,-76],[-3,-49],[-4,-22],[0,-60],[1,-25],[-1,-55],[0,-48],[0,-26],[0,-26],[0,-62],[0,-24],[0,-39],[0,-142],[-1,-104],[0,-3],[0,-22],[0,-22],[1,-34],[0,-30],[0,-23],[0,-31],[-1,-27],[0,-25],[0,-33],[-10,-18],[8,-51],[0,-27],[2,-83],[0,-302],[0,-25],[12,-30],[3,0],[17,1],[0,-85],[0,-21],[1,-54],[2,-175],[1,-229],[1,-493],[1,-32],[0,-23],[0,-48],[3,-33],[1,-163],[0,-93],[1,-52],[0,-92],[0,-11],[0,-6],[-2,-55],[1,-53],[0,-28],[0,-30],[1,-29],[-1,-28],[1,-47],[0,-61],[-2,-42],[-1,-22],[0,-71],[0,-40],[0,-22],[0,-23],[0,-23],[0,-25],[0,-39],[1,-37],[0,-33],[0,-28],[0,-31],[1,-30],[-1,-32],[1,-35],[0,-28],[0,-31],[0,-32],[0,-46],[0,-77],[0,-26],[1,-2],[0,-33],[0,-54],[1,-93],[0,-35],[1,-62],[0,-89],[2,-90],[1,-112],[0,-113],[0,-27],[0,-26],[1,-30],[0,-24],[0,-50],[-1,-86],[1,-25],[1,-22],[0,-24],[0,-31],[0,-38],[0,-27],[0,-39],[3,-23]],[[51380,87517],[-57,0],[-65,-1],[-24,0],[-17,0],[-47,-1],[-35,0],[-48,0],[-57,0],[-19,-1],[-34,0],[-48,1],[-69,-1],[-49,0],[-24,0],[-16,-1],[-94,0],[-21,0],[-53,-1],[-31,1],[-38,0],[-33,0],[-7,0],[-200,-1],[-53,0],[-57,0],[-41,0],[-75,-1],[-21,0],[-36,0],[-58,0],[-17,0],[-50,-1],[-20,0],[-39,1],[-55,0],[-24,-1],[-70,1],[-18,1],[-22,-1],[-34,0],[-31,0],[-31,0],[-61,1],[-19,0],[-23,0],[-42,2],[-2,0],[-15,-2],[-19,0],[-23,0],[-42,0],[-63,2],[-27,1],[-14,0],[-24,0],[-56,-1],[-53,0],[-25,0],[-3,0],[-89,-1],[-27,1],[-23,0],[-66,1],[-64,1],[-28,0],[-19,0],[-17,0],[-64,0],[-36,1],[-56,-1],[-100,0],[-100,4],[-12,1],[-73,1],[-30,0],[-55,1],[-52,1],[-49,0],[-24,1],[-67,1],[-18,1],[-77,0],[-23,1],[-26,0],[-17,0],[-28,1],[-24,1],[-1,0],[-89,2],[-29,1],[-15,1],[-91,1],[-37,1],[-26,-1],[-76,3],[-94,1],[-79,0],[-46,1],[-55,0],[-21,0],[-60,0],[-56,0],[-147,-1],[-100,-1],[-93,0],[-43,-1],[-25,-2],[-18,1],[-18,0],[-16,0],[-46,0],[-43,-1],[-39,0],[-31,1],[-29,1],[-69,3],[-69,-1],[-6,0],[-151,-1],[-167,-1],[-32,0],[-136,-1],[-67,0],[-7,0],[-52,-1],[-29,0],[-56,-1],[-73,0],[-17,-1],[-70,-1],[-36,-2],[-61,0],[-4,0],[-45,0],[-104,-1],[-17,0],[-151,-2],[-35,1],[-66,-1],[-45,0],[-38,-1],[-197,-2],[-107,-1],[-35,0],[-54,0],[-210,-2],[-99,-1],[-59,-1],[-67,0],[-2,0],[-58,0]],[[43853,87519],[-21,0],[-64,-1],[-45,0]],[[57287,92281],[-3,-152],[-1,-205],[0,-29],[-1,-32],[-1,-28],[0,-26],[-1,-38],[-6,-427],[66,-3],[-3,-186],[0,-3],[-3,-139],[0,-3],[-1,-58],[-2,-91],[-1,-82],[-6,-156],[-1,-37],[-1,-60],[-2,-54],[0,-27],[-1,-27],[-2,-83],[0,-30],[-1,-27],[-1,-46],[-1,-66],[-1,-38],[-1,-23],[0,-36],[-1,-23],[-1,-24],[0,-27],[0,-23],[-1,-33],[0,-23],[-1,-43],[-1,-49],[0,-25],[-1,-49],[-1,-23],[0,-41],[-1,-41],[-1,-42],[-1,-37],[-1,-26],[0,-32],[0,-34],[-1,-20],[0,-4],[0,-32],[-1,-40],[0,-24],[0,-23],[-1,-38],[0,-31],[0,-29],[0,-48],[-1,-33],[0,-37],[0,-24],[0,-38],[0,-35],[-1,-26],[-1,-61],[0,-92],[0,-25],[-1,-71],[-1,-56],[0,-33],[-1,-64],[-1,-65],[0,-25],[-1,-39],[1,-66],[-1,-38],[0,-35],[0,-3],[0,-58],[-1,-66],[-1,-61],[0,-22],[-1,-43],[0,-71],[-1,-31],[0,-35],[-2,-43],[0,-33],[0,-25],[-1,-24],[-1,-52],[0,-43],[-1,-171],[-1,-43],[0,-124],[1,-39],[-6,-155],[-3,-96],[-1,-63],[-6,-308],[0,-2],[-1,-156],[0,-14],[0,-24],[-1,-46],[-1,-71],[0,-24],[0,-29],[-1,-44],[0,-42],[0,-21],[1,-2],[-1,-23],[0,-31],[0,-101],[-1,-107],[-1,-59],[0,-54],[-1,-150],[0,-97]],[[57258,85616],[-35,0],[-55,0],[-113,2],[-23,0],[-31,-1],[-21,1],[-38,1],[-178,4],[-24,1],[-21,1],[-41,1],[-41,1],[-15,0],[-75,5],[-18,0],[-127,1],[-20,0],[-22,1],[-35,0],[-20,1],[-18,0],[-24,1],[-83,1],[-23,1],[-37,0],[-68,2],[-37,1],[-35,2],[-54,1],[-158,7],[-171,5],[-139,6],[-209,8],[-11,1],[-135,5],[-359,14],[-69,4],[-40,2],[-38,1],[-40,2],[-415,20],[-32,1],[-216,6],[-1,0],[-27,-1],[-257,-4],[-104,-3],[-180,-6],[-36,-2],[-3,0],[-247,-7],[-32,-1],[-42,-1],[-20,0],[-30,-1],[-41,-1],[-30,-1],[-48,0],[-139,-6],[-32,-1],[-22,-1],[-52,-1],[-26,-1],[-23,0],[-1,0],[-59,-3],[-61,-3],[-61,-2],[-62,-3],[-27,1]],[[52231,85678],[-28,3],[-17,1],[-21,2],[-20,1],[-20,1],[-16,-1],[-24,0],[-20,2],[-46,0],[-23,1],[-41,1],[-29,0],[-36,1],[-29,1],[-189,4],[-20,1],[-266,5],[0,24],[1,56],[1,43],[1,35],[1,73],[1,29],[0,32],[1,23],[2,184],[2,53],[1,22],[0,24],[0,33],[0,68],[2,170],[0,69],[1,27],[1,43],[0,2],[1,20],[0,32],[1,41],[2,116],[0,42],[1,29],[0,29],[3,149],[1,79],[1,31],[0,31],[1,32],[0,30],[0,30],[-1,30],[2,30],[-4,55],[-29,0]],[[36146,87428],[1,-26],[1,-50],[1,-39],[1,-42],[0,-31],[0,-36],[0,-41],[-1,-43],[0,-32],[0,-24],[0,-24],[0,-34],[0,-29],[0,-22],[0,-23],[0,-53],[0,-63],[0,-66],[0,-36],[0,-3],[0,-72],[-3,-117],[2,-36],[0,-23],[0,-23],[0,-23],[-1,-27],[0,-27],[0,-27],[1,-22],[0,-29],[0,-36],[0,-23],[-1,-31],[0,-28],[-1,-157]],[[36146,86010],[-95,-3],[-23,0],[-21,-3],[-68,-3],[-36,0],[-48,-1],[-44,1],[-15,0],[-36,-1],[-23,-1],[-18,0],[-27,-1],[-29,-1],[-26,-1],[-17,0],[-22,0],[-17,-1],[-30,-1],[-23,0],[-17,-1],[-21,-1],[-36,-1],[-22,-1],[-52,-1],[-40,-1],[-28,-1],[-23,-1],[-25,-1],[-44,-1],[-168,-3],[-153,-4],[-8,0],[-15,0],[-30,-1],[-23,-1],[-53,-1],[-4,0],[-28,-1],[-19,-1],[-23,-1],[-29,0],[-22,-1],[-17,0],[-37,-1],[-29,-1],[-45,-1],[-25,0],[-35,4],[-15,-6],[-44,-1],[-18,0],[-19,-1],[-28,-1],[-15,0],[-21,0],[-29,-1],[-15,-1],[-21,0],[-26,0],[-40,-1],[-17,-1],[-4,0],[-15,0],[-27,-1],[-28,0],[-30,-1],[-15,0],[-76,-2],[-45,-1],[-28,-1],[-18,0],[-24,-1],[-37,-1],[-29,0],[-21,-1],[-24,0],[-23,-1],[-19,-1],[-42,-1],[-17,-1],[-16,0],[-1,0],[-15,1],[-22,-1],[-36,-1],[-21,-1],[-16,0],[-24,-1],[-19,-1],[-12,0],[-17,0],[-43,-1],[-18,-1],[-46,0],[-29,-1],[-18,0],[-20,-2],[-39,0],[-23,-1],[-30,-1],[-19,-1],[-17,-1],[-18,0],[-31,-2],[-21,-1],[-24,0],[-7,-1],[-9,0],[-21,-1],[-24,-1],[-22,0],[-17,-1],[-32,-1],[-36,0],[-17,0],[-29,-1],[-48,-1],[-59,-1],[-16,-1],[-54,-2],[-32,-1],[-17,-1],[-55,-1],[-37,0],[-28,-2],[-18,-2],[-35,-2],[-13,-1],[-5,0],[-45,-2],[-63,-1],[-50,-3],[-41,-9],[-29,0],[-48,-1],[-19,0],[-87,-2],[-65,0],[-16,1],[-23,-1],[-19,-1],[-21,-1],[-20,-1],[-16,-1],[-19,0],[-20,-1],[-16,-1],[-31,3],[-16,7],[-17,-4],[-39,-8],[-17,-1],[-51,-3],[-44,-1],[-26,-1],[-19,-2],[-33,0],[-21,-4],[-24,0],[-70,-1],[-23,-3],[-16,1],[-86,-7],[-83,3],[-123,-3],[-52,-3],[-15,0],[-76,-4],[-49,-3],[-22,-1],[-19,0],[-17,-1],[-31,-1],[-17,0],[-123,-4],[-109,-3],[-17,0],[-18,-1],[-17,0],[-13,-1],[-9,0],[-15,1],[-17,-1],[-93,-1],[-92,-1],[-40,-1],[-31,0]],[[30153,85835],[-1,85],[0,73],[-1,50],[0,34],[-1,52],[0,93],[0,24],[1,107],[-1,29],[-3,83],[-3,158],[-7,87],[0,1],[-1,60],[-3,180],[0,3],[-1,87],[-1,53],[-2,126],[0,27],[-1,80],[-1,61],[-16,-3],[0,29],[2,133],[1,123],[0,33],[2,209],[7,106],[-1,35],[1,108],[-3,54],[-6,113],[-1,57],[-2,285],[-1,76],[-1,56],[0,118],[8,196],[1,55],[2,101],[2,146],[0,92],[1,79]],[[10961,89528],[-5,-32],[-45,-48],[6,-93],[5,-64],[-81,-49],[-4,-127],[-8,-50],[-18,-34],[-11,-27],[-17,-46],[-12,-56],[0,-13],[7,-94],[2,-66],[0,-311],[1,-97],[-1,-37],[0,-10],[2,-80],[3,-23],[3,-11],[8,-13],[16,-18],[12,-8],[20,-8],[15,-2],[46,-15],[36,-16],[26,-17],[22,-23],[27,-35],[9,-16],[3,-11],[1,-49],[3,-23],[5,-17],[3,-8],[11,-28],[76,-88],[6,-2],[8,-2],[17,1],[1,0],[13,6],[9,6],[7,9],[7,22],[16,17],[90,51],[6,2],[13,0],[4,-3],[88,-96],[29,-36],[7,-78],[6,-32],[11,-46],[7,-20],[18,-27],[19,-47],[-1,-7],[-7,-10],[-24,-26],[-9,-14],[-4,-15],[0,-17],[9,-107],[-14,-155],[1,-23],[2,-10],[13,-35],[-3,-91],[-1,-21],[-24,-105],[-70,-11],[52,-108],[11,-24],[40,0],[1,0],[1,-8],[5,-5],[29,-18],[9,-12],[15,-73],[-7,-70],[-5,-53],[-1,0],[-5,-8],[-4,-13],[-1,-14],[2,-27],[8,-126],[0,-4],[6,-13],[70,-78],[-5,-76],[-1,-17],[-3,-42],[13,-2],[45,-9],[-12,-69],[29,-194],[2,-6],[7,-8],[9,-7],[27,-5],[6,-6],[15,-88],[2,-31],[1,-23],[1,-9],[7,-28],[7,-16],[6,-7],[17,-13],[8,-13],[2,-18],[-2,-12],[-10,-19],[-50,-49],[-46,-33],[-23,-18],[-14,-13],[-39,-49],[-11,-23],[-5,-6],[-87,-103],[-6,-185],[28,-63],[135,-43],[10,-3],[39,-12],[2,-79],[0,-27],[0,-16],[-2,-219],[0,-8],[0,-19],[0,-3]],[[11705,84500],[-33,13],[-31,13],[-39,11],[-16,6],[-17,6],[-20,5],[-23,4],[-22,1],[-16,0],[-8,-1],[-23,-3],[-18,-3],[-30,-7],[-4,-2],[-23,-12],[-20,-12],[-13,-10],[-5,-3],[-19,-17],[-20,-24],[-16,-30],[-1,-2],[-12,-21],[-15,-22],[-10,-17],[-10,-18],[-3,-7],[-3,-8],[-7,-17],[-8,-35],[-2,-20],[-1,-9],[0,-26],[1,-36],[1,-11],[3,-25],[6,-51],[2,-23],[-5,-46],[-10,-37],[-27,-75],[-21,-30],[-41,-39],[-45,-33],[-41,-28],[-65,-16],[-70,-2],[-86,-7],[-26,-5],[-35,-8],[-59,-9],[-34,-4],[-48,-7],[-97,-12],[-16,-2],[-60,-7],[-54,-3],[-5,0],[-52,3],[-23,8],[-19,6],[-36,13],[-21,11],[-71,42],[-81,47],[-63,31],[-37,13],[-29,8],[-16,5],[-73,21],[-2,1],[-59,16],[-49,16],[-24,10],[-44,18],[-30,18],[-18,11],[-20,9],[-31,20],[-35,33],[-18,22],[-2,3],[-19,23],[-13,24],[-13,28],[-5,17],[-6,19],[-1,2],[-7,25],[-1,7],[-7,34],[-2,34],[2,35],[5,35],[3,21],[0,3],[4,37],[-2,56],[-5,41],[-13,44],[-20,31],[-14,18],[-23,19],[-31,19],[-26,11],[-24,8],[-16,5],[-7,1],[-2,0],[-20,3],[-26,0],[-11,-2],[-29,-7],[-18,-9],[-34,-18],[-30,-18],[-10,-6],[-42,-28],[-44,-25],[-52,-26],[-28,-10],[-27,-6],[-29,-2],[-30,1],[-39,0],[-21,0],[-33,-1],[-25,5],[-39,11],[-36,17],[-24,13],[-29,18],[-15,11],[-17,13],[-23,34],[-13,20],[-21,38],[-7,28],[-2,28],[2,47],[1,12],[1,9],[0,2],[5,23],[6,24],[8,19],[6,21],[10,22],[10,25],[8,21],[8,25],[6,34],[7,32],[4,32],[3,47],[-1,41],[-5,40],[-3,24],[0,5],[-14,34],[-14,31],[-20,38],[-14,14],[-14,10],[-16,9],[-21,9],[-15,13],[-29,18],[-30,19],[-15,7],[-26,9],[-23,4],[-10,2],[-23,5],[-21,-2],[-4,0],[-84,-7],[-3,0],[-51,-5],[-54,1],[-23,1],[-8,1],[-24,7],[-45,15],[-36,19],[-12,7],[-13,7],[-38,26],[-14,9],[-20,12],[-13,15],[-24,29],[-35,38],[-24,31],[-15,22],[-14,26],[-19,39],[-30,59],[-42,71],[-8,13],[-7,11],[-10,16],[-46,68],[-7,11],[-15,15],[-22,21],[-36,23],[-74,41],[-1,1],[-26,13],[-37,18],[-25,13],[-61,35],[-87,61],[-54,44],[-19,11],[-18,12],[-14,16],[-13,19],[-12,17],[-25,37],[-1,1],[-3,5],[-15,24],[-10,33],[-6,39],[-3,29],[0,31],[3,40],[1,41],[-3,23],[-2,48],[-13,49],[-28,72],[-15,34],[-25,31],[-11,13],[-46,36],[-3,2],[-47,20],[-109,37],[-94,54],[-78,89],[-5,14],[-19,28],[-77,89],[-26,23],[-51,27],[-76,27],[-104,2],[-64,-8],[-209,-28],[-114,-16],[-76,19],[-114,21],[-68,55],[-69,74],[-64,104],[-10,24],[-22,80],[-32,123],[-6,29],[-9,50],[-3,17],[2,72],[5,20],[3,10],[8,25],[19,53],[9,24],[20,29],[61,71],[32,48],[24,62],[10,48],[0,67],[-10,48],[-10,27],[-15,72],[2,96],[5,27],[15,43],[38,65],[40,43],[74,63],[2,2],[11,11],[13,13],[7,10],[34,51],[3,5],[3,11],[12,44],[2,8],[2,12],[2,21],[0,42],[0,27],[-4,38],[-4,34],[-30,78],[-25,48],[-25,31],[-23,18],[-39,24],[-23,14],[-20,9],[-30,9],[-27,4],[-67,3],[-34,1],[-44,8],[-36,15],[-48,32],[-3,3],[-33,33],[-4,5],[-19,20],[-23,36],[-11,25],[-10,33],[-7,24],[-9,40],[-5,33],[-4,37],[-1,80],[-5,57],[-1,11],[-15,66],[-23,58],[0,1],[-12,16],[-21,29],[-31,31],[-1,1],[-1,1],[-31,20],[-64,30],[-24,10],[-44,14],[-49,18],[-20,11],[-68,45],[-46,44],[-46,51],[-38,44],[-24,29],[-19,30],[-39,50],[-21,30],[-24,40],[-19,39],[-14,35],[-13,27],[0,1],[-8,26],[-8,30],[-5,20],[-2,5],[0,3],[-3,53],[0,53],[1,10],[2,35],[3,27],[7,23],[8,30],[22,57],[18,39],[11,24],[39,55],[0,1],[1,0],[27,49],[8,20],[8,20],[15,43],[10,40],[10,51],[2,25],[0,61],[3,52],[-3,28],[-6,35],[-21,71],[-12,43],[-38,79],[-17,32],[-20,33],[-42,45],[-37,32],[-48,34],[-32,12],[-33,12],[-46,6],[-24,4],[-60,3],[-18,2],[-8,-1],[-36,-5],[-28,-4],[-64,-9],[-33,-3],[-11,-1],[-48,-2],[-17,3],[-34,6],[-46,12],[-30,12],[-33,24],[-22,9],[-23,10],[-35,23],[-45,32],[-33,23],[-41,22],[-10,5],[-5,2],[-45,20],[-56,26],[-65,44],[-15,17],[-27,33],[-10,29]],[[64081,92098],[-67,-82],[-71,-188],[33,-99],[1,-123],[-7,-51],[-7,-61],[-5,-30],[-23,-141],[18,-242],[7,-29],[2,-12],[7,-69],[-29,-46],[-43,-71],[-5,-25],[-39,-167],[-7,-30],[1,-23],[5,-64],[4,-59],[5,-84],[11,-51],[27,-134],[7,-37],[11,-55],[-50,-182],[3,-112],[1,-32],[2,-75],[1,-25],[1,-58],[2,-64],[3,-106],[1,-52],[56,-285],[13,-69],[16,-80],[6,-32],[28,-141],[16,-82],[55,-282],[39,-201],[40,-149],[36,-136],[3,-11],[5,-18],[-7,-39],[-62,-330],[-7,-41],[-1,-2],[99,-259],[18,-46],[36,-94],[16,-36],[97,-215],[72,-160],[32,-71],[14,-30],[9,-27],[2,-8],[12,-40],[3,-15],[3,-12],[-8,-44],[17,-46],[21,-54],[104,-130],[8,-9],[43,-95],[35,-76],[32,-69],[29,-63],[20,-88],[14,-31],[15,-34],[28,-61],[10,-20],[16,-27],[2,-5],[34,-33],[7,-16],[26,-56],[23,-26]],[[65006,85525],[-3,0],[-58,1],[-54,2],[-30,0],[-22,1],[-132,3],[-15,-1],[-153,5],[-415,10],[-86,1],[-59,1],[-214,1],[-6,0],[-63,1],[-73,1],[-18,0],[-30,0],[-29,0],[-73,1],[-58,0],[-278,3],[-25,1],[-5,0],[-43,0],[-67,0],[-53,7],[-39,-4],[-15,0],[-19,0],[-29,1],[-47,0],[-18,1],[-82,-1],[-206,-2],[-203,-1],[-48,0],[-85,9],[-114,1],[-1,0],[-16,0],[-257,1],[-55,-1],[-29,1],[-21,-1],[-16,0],[-182,2],[-19,0],[-16,0],[-37,0],[-35,1],[-18,-1],[-40,1],[-2,0],[-137,1],[-39,0],[-181,1],[-132,0],[-122,0],[-45,0],[-22,0],[-68,2],[-34,0],[-49,1],[-28,1],[-18,0],[-59,0],[-38,1],[-36,0],[-17,0],[-16,0],[-19,0],[-16,1],[-54,0],[-141,2],[-2,0],[-44,-2],[-16,1],[-21,-1],[-32,1],[-22,1],[-28,-1],[-21,1],[-41,0],[-37,1],[-26,0],[-16,0],[-26,0],[-36,1],[-16,0],[-19,1],[-23,0],[-69,0],[-114,3],[-99,1],[-122,0],[-112,0],[-58,0],[-18,1],[-65,2]],[[58941,85590],[-174,6],[-109,1],[-54,1],[-18,1],[-93,2],[-57,0],[-16,0],[-128,2],[-60,-1],[-146,2],[-58,1],[-3,0],[-14,0],[-30,1],[-122,3],[-29,0],[-85,1],[-107,2],[-25,0],[-251,4],[-61,0],[-43,0]],[[30153,85835],[1,-57],[0,-29],[1,-25],[0,-26],[0,-39],[1,-53],[0,-36],[1,-43],[0,-23],[1,-56],[0,-42],[0,-35],[1,-33],[-2,-29],[1,-33],[0,-63],[1,-69],[0,-30],[1,-38],[1,-27],[-1,-27],[2,-103],[0,-12],[3,-241],[0,-28],[0,-23],[1,-59],[2,-101],[1,-37],[0,-117],[4,-43],[1,-22],[2,-27],[0,-25],[1,-45],[1,-49],[0,-86],[2,-80],[1,-96],[1,-97],[2,-124],[0,-41],[1,-102],[1,-59],[0,-14],[1,-60],[0,-22],[0,-84],[3,-182],[4,-151],[0,-37],[1,-79],[5,-26],[-2,-22],[0,-64],[0,-50],[0,-23],[-2,-22],[0,-5],[0,-23],[1,-112],[1,-60],[0,-31],[-1,-68],[0,-23],[0,-22],[1,-28],[0,-31],[0,-39],[0,-39],[0,-40]],[[30198,82048],[-20,0],[-82,1],[-25,1],[-54,0],[-29,0],[-70,1],[-63,0],[-75,-3],[-48,1],[-24,1],[-88,6],[-53,2],[-95,4],[-88,4],[-23,1],[-19,2],[-19,1],[-17,0],[-18,1],[-32,1],[-18,1],[-18,0],[-28,1],[-31,1],[-21,1],[-17,0],[-44,2],[-24,0],[-46,2],[-28,1],[-32,1],[-28,1],[-16,1],[-32,1],[-29,1],[-18,1],[-26,1],[-30,1],[-4,0],[-170,3],[-28,1],[-32,1],[-18,2],[-18,-1],[-41,0],[-28,-1],[-17,2],[-24,-2],[-78,-3],[-23,-1],[-53,3],[-21,-1],[-32,0],[-33,-1],[-22,0],[-25,-1],[-30,0],[-25,0],[-20,-1],[-45,-1],[-26,0],[-24,-1],[-15,0],[-68,-4],[-16,0],[-148,-1],[-30,0],[-33,0],[-18,2],[-36,-1],[-30,0],[-27,-1],[-22,0],[-17,0],[-29,0],[-39,-1],[-220,-4],[-32,0],[-34,0],[-62,-1],[-64,-2],[-17,0],[-53,0],[-71,-2],[-20,0],[-2,0],[-17,0],[-19,1],[-34,0],[-17,0],[-23,0],[-16,0],[-87,-1],[-60,-1],[-16,0],[-15,0],[-65,-1],[-20,-1],[-29,0],[-23,5],[-15,0],[-16,0],[-16,-1],[-33,-1],[-37,0],[-28,0],[-26,0],[-17,-1],[-159,-3],[-38,0],[-17,2],[-24,1],[-18,0],[-20,0],[-18,0],[-26,0],[-28,0],[-27,0],[-25,1],[-16,-1],[-27,1],[-32,0],[-30,0],[-24,0],[-18,0],[-17,1],[-25,0],[-29,0],[-19,0],[-29,0],[-22,1],[-18,0],[-33,0],[-27,1],[-16,-1],[-25,0],[-54,0],[-41,0],[-108,0],[-21,0],[-36,2],[-25,0],[-17,1],[-22,1],[-18,1],[-15,0],[-16,1],[-35,1],[-20,1],[-29,1],[-45,3],[-18,1],[-17,1],[-23,0],[-31,2],[-56,2],[-33,1],[-39,1],[-30,1],[-65,3],[-25,2],[-40,1],[-70,3],[-20,0],[-30,1],[-24,1],[-16,1],[-16,1],[-29,1],[-77,4],[-18,1],[-21,1],[-16,2],[-18,-1],[-27,1],[-19,2],[-16,0],[-17,1],[-56,3],[-42,1],[-71,3],[-38,2],[-37,1],[-16,-2],[-24,0],[-15,4],[-17,1],[-35,1],[-38,1],[-15,1],[-28,1],[-38,1],[-24,1],[-17,0],[-19,1],[-20,1],[-23,0],[-5,0]],[[23503,82141],[1,44],[0,24],[0,25],[0,24],[0,22],[0,40],[0,35],[0,39],[0,31],[2,33],[-1,12],[-1,15],[0,71],[0,26],[0,33],[1,49],[0,28],[-1,21],[1,26],[3,111],[0,31],[0,67],[-1,137],[1,165],[0,154],[0,75],[0,93],[0,23],[0,117],[0,94],[0,121],[1,99],[1,145],[0,99],[1,26],[0,29],[0,27],[1,24],[0,39],[0,22],[-1,32],[0,28],[0,29],[0,35],[1,24],[0,37],[0,28],[0,22],[1,41],[0,31],[0,32],[1,39],[0,23],[1,29],[1,54],[1,22],[-1,32],[0,25],[0,24],[0,27],[0,25],[1,22],[0,23],[1,22],[0,28],[0,30],[1,23],[0,24],[0,27],[0,27],[-1,35],[5,22],[-5,23],[2,22],[1,24],[0,163],[0,11],[1,113],[1,61],[0,58],[0,6],[1,30],[0,27],[1,32],[0,37],[0,55],[2,137],[0,39],[0,43],[1,30],[0,22],[0,23],[0,30],[0,25],[1,31],[0,29],[0,35],[1,22],[0,23],[0,35],[0,25],[0,29],[1,24],[0,38],[1,50],[0,1],[0,24],[0,28],[0,27],[1,36],[0,24],[0,24],[0,23],[1,35],[2,181],[1,110],[0,29],[1,48],[1,103],[0,55],[-17,4],[-19,1],[-25,0],[-15,1],[-24,1],[-17,0],[-18,0],[-41,2],[-17,0],[-20,1],[-17,-3]],[[17518,87560],[2,-246],[0,-79],[2,-314],[1,-121],[2,-89],[0,-88],[0,-30],[0,-31],[1,-24],[1,-32],[0,-126],[0,-64],[0,-23],[0,-31],[0,-23],[0,-23],[0,-22],[0,-36],[0,-28],[0,-33],[-1,-41],[0,-26],[0,-22],[0,-28],[1,-133],[1,-72],[0,-37],[1,-101],[0,-64],[0,-51],[1,-42],[0,-23],[0,-112],[1,-21],[0,-99],[1,-117],[0,-44],[0,-21],[0,-22],[1,-108],[0,-42],[1,-32],[0,-35],[0,-103],[1,-88],[0,-54],[1,-91],[0,-83],[1,-30],[0,-58],[1,-91],[0,-31],[0,-105],[1,-25],[0,-41],[2,-49],[3,-44],[0,-79],[1,-29],[0,-66],[1,-113],[1,-38],[0,-29],[0,-30],[1,-66],[0,-24],[0,-65],[1,-73],[1,-55],[0,-94],[1,-4],[0,-23],[0,-20],[0,-2],[10,-97],[0,-4],[-2,-37],[-2,-23],[0,-49],[0,-2],[0,-35],[-1,-28],[0,-6],[0,-15]],[[17556,82805],[-9,0],[-83,-1],[-80,0],[-16,0],[-25,0],[-37,1],[-37,1],[-56,0],[-33,0],[-33,0],[-42,1],[-42,0],[-23,0],[-24,0],[-139,1],[-2,0],[-18,0],[-41,-1],[-31,0],[-117,4],[-22,1],[-57,4],[-80,2],[-23,3],[-26,0],[-18,0],[-17,0],[-22,1],[-64,1],[-15,0],[-29,0],[-18,1],[-20,1],[-33,0],[-27,1],[-46,1],[-16,0],[-27,0],[-22,1],[-35,0],[-17,0],[-28,0],[-16,1],[-28,0],[-5,0],[-14,0],[-78,1],[-33,-3],[-15,1],[-17,3],[-18,0],[-18,0],[-27,-3],[-19,1],[-20,1],[-29,1],[-19,0],[-36,0],[-25,0],[-19,1],[-23,0],[-16,0],[-57,1],[-25,0],[-20,-1],[-42,4],[-25,3],[-35,4],[-22,0],[-48,-1],[-15,0],[-49,-1],[-75,0],[-19,-3],[-17,3],[-27,0],[-37,1],[-22,0],[-53,-1],[-29,0],[-43,1],[-15,-1],[-33,1],[-22,0],[-30,0],[-25,0],[-37,0],[-21,0],[-32,1],[-18,-1],[-47,-3],[-68,-4],[-16,0],[-16,-1],[-16,0],[-102,6],[-19,0],[-16,0],[-15,0],[-15,0],[-18,0],[-18,0],[-23,0],[-19,-1],[-27,-1],[-16,0],[-17,0],[-16,0],[-17,1],[-16,0],[-16,-1],[-17,0],[-28,0],[-18,-1],[-23,0],[-34,0],[-19,1],[-18,-1],[-19,0],[-23,-1],[-19,0],[-22,0],[-30,0],[-16,0],[-24,0],[-20,0],[-19,-1],[-15,0],[-79,-5],[-17,-2],[-22,-1],[-11,-1],[-17,-1],[-81,1],[-36,0],[-4,0],[-18,0]],[[13456,82826],[-2,35],[-3,19],[-1,3],[-6,27],[-9,22],[-11,22],[-35,52],[-10,11],[-3,4],[-13,15],[-32,34],[-17,13],[-14,14],[-53,24],[-33,4],[-23,0],[-16,1],[-6,-1],[-24,0],[-16,-3],[-7,-1],[-19,-3],[-19,-2],[-27,-3],[-32,3],[-70,10],[-15,3],[-12,2],[-77,32],[-18,9],[-27,24],[-33,25],[-25,18],[-36,36],[-35,39],[-33,36],[-26,29],[-12,13],[-33,36],[-17,16],[-22,23],[-12,17],[-15,23],[-11,21],[-17,39],[-9,25],[-4,25],[-2,28],[0,22],[5,35],[6,22],[6,15],[4,13],[9,23],[15,33],[15,24],[21,25],[14,15],[33,32],[12,14],[20,23],[17,23],[14,25],[13,24],[10,20],[9,32],[9,53],[1,37],[-3,43],[-8,47],[-25,57],[-22,31],[-5,7],[-19,26],[-9,11],[-5,7],[-14,18],[-22,21],[-6,5],[-16,13],[-47,34],[-44,27],[-5,3],[-44,21],[-38,16],[-33,15],[-11,4],[-22,7],[-7,2],[-8,2],[-11,2],[-10,3],[-23,3],[-24,2],[-32,-6],[-29,-6],[-31,-11],[-5,-2],[-46,-17],[-28,-11],[-39,-14],[-37,-15],[-30,-9],[-27,-7],[-24,-5],[-7,-2],[-26,-3],[-5,-1],[-19,-3],[-31,-3],[-28,8],[-20,6],[-23,9],[-24,10]],[[52231,85678],[5,-51],[-3,-138],[-3,-137],[0,-29],[0,-41],[-2,-71],[0,-60],[-2,-86],[-1,-71],[0,-48],[-1,-52],[-1,-85],[-2,-71],[0,-23],[0,-28],[-1,-47],[0,-29],[-1,-35],[-2,-92],[0,-61],[-3,-178],[-1,-44],[-3,-126],[-1,-72],[-1,-23],[0,-6],[-1,-39],[-3,-101],[-1,-39],[-1,-40],[-3,-118],[-3,-113],[-6,-207],[2,-82],[-1,-45],[-1,-37],[-1,-35],[0,-45],[1,-48],[-4,-38],[-4,-131],[-4,-244],[-1,-57],[-2,-47],[-2,-124],[-2,-60],[-1,-51],[-1,-34],[-1,-27],[-5,-104],[-7,-189],[-2,-102],[-5,-212],[-10,-302],[0,-4],[-5,-133],[-5,-177],[-6,-163],[0,-13],[-1,-49],[-3,-95],[-10,-280],[-2,-35],[-5,-314],[-8,-259],[-2,-77],[-3,-129],[-2,-153],[-2,-161],[-4,-159],[-2,-100],[-1,-47],[-6,-161],[-2,-203],[0,-59],[-1,-53],[1,-28],[-1,-44],[-2,-132],[-1,-26],[0,-84]],[[52066,78165],[-24,0]],[[52042,78165],[-51,5],[-37,0],[-29,0],[-51,1],[-19,0],[-55,1],[-62,1],[-143,3],[-79,1],[-51,1],[-148,3],[-106,4],[-22,0],[-26,1],[-64,0],[-51,-1],[-116,4],[-23,0],[-114,0],[-15,0],[-47,0],[-124,6],[-16,1],[-88,-2],[-48,0],[-26,0],[-50,0],[-82,5],[-43,2],[-42,1],[-42,1],[-20,-5],[-22,1],[-32,1],[-141,6],[-46,1],[-21,-1],[-36,2],[-38,0],[-71,2],[-19,0],[-26,0],[-36,1],[-96,0],[-85,2],[-9,0],[-23,1],[-19,0],[-53,0],[-30,-2],[-64,0],[-54,1],[-59,1],[-18,1],[-22,0],[-79,4],[-18,0],[-91,0],[-88,2],[-6,0],[-21,0],[-84,1],[-50,3],[-18,0],[-30,2],[-42,0],[-20,1],[-61,2],[-117,4],[-151,5],[-54,2],[-43,2],[-52,1],[-44,1],[-105,2],[-33,1],[-8,0],[-133,-1],[-237,-2],[-57,0],[-56,1],[-24,0],[-75,2],[-49,1],[-24,1],[-16,0],[-8,1],[-54,2],[-45,1],[-2,0],[-46,1],[-38,0],[-38,1],[-1,0],[-35,0],[-18,0],[-44,2],[-37,0],[-39,-2],[-2,0],[-18,1],[-26,2],[-8,0],[-24,2],[-14,0],[-3,0],[-31,1],[-52,1],[-15,0],[-163,1],[-29,1],[-28,1],[-53,1],[-126,4],[-45,1],[-23,0]],[[46181,78272],[0,28],[1,50],[2,157],[1,79],[2,44],[1,27],[2,60],[2,37],[0,29],[1,39],[1,24],[1,35],[1,31],[1,50],[0,27],[1,33],[0,34],[-1,33],[1,29],[2,27],[-1,28],[0,37],[1,25],[0,25],[3,27],[1,22],[0,27],[-1,24],[1,29],[3,43],[1,18],[0,35],[-1,22],[0,32],[2,28],[3,42],[1,29],[0,41],[1,94],[1,25],[0,15],[0,28],[3,122],[3,81],[1,52],[1,23],[-1,43],[-16,12],[-20,1],[-24,1],[-47,1],[-173,7],[-18,0],[-115,5],[-173,4],[-20,1],[-38,0],[-140,3],[-27,1],[-96,2],[-101,0],[-22,0],[-64,3],[-34,2],[-36,0],[-16,0],[-33,0],[-56,1],[-20,0],[-25,0],[-53,1],[-18,0],[-15,0],[-10,0],[-22,0],[-34,0],[-16,0],[-43,1],[-31,0],[-38,1],[-27,0],[-48,0],[-25,0],[-55,1],[-105,1],[-25,1],[-22,0],[-24,0],[-38,1],[-17,-1],[-27,1],[-20,0],[-15,0],[-73,0],[-34,0],[-17,1],[-16,0],[-1,0],[-16,1],[-24,-1],[-15,0],[-22,0],[-46,0],[-19,0],[-98,-1],[-53,0],[-49,1]],[[43697,80214],[1,82],[0,23],[1,96],[1,39],[2,75],[1,35],[0,23],[2,53],[2,94],[2,80],[0,7],[0,30],[3,34],[0,6],[-2,23],[0,23],[-1,22],[1,57],[1,95],[1,47],[0,39],[0,7],[1,46],[0,22],[2,31],[1,116],[0,55],[0,13],[1,91],[1,63],[0,46],[1,60],[0,3],[0,57],[3,200],[2,118],[2,129],[4,159],[4,153],[3,125],[2,80],[2,52],[0,10],[2,72],[3,122],[2,49],[5,192],[1,37],[1,41],[0,56],[1,55],[2,85],[2,140],[5,323],[7,239],[2,69],[0,23],[3,105],[2,50],[3,128],[7,230],[2,49],[2,67],[0,24],[12,335],[3,86],[1,33],[1,22],[2,79],[2,50],[0,37],[4,195],[1,34],[2,42],[1,30],[2,136],[4,21],[-3,86],[1,35],[2,65],[2,51],[2,56],[4,160],[5,169],[0,2],[1,93],[1,60],[1,24],[1,115],[3,149],[0,39],[1,45],[3,197],[1,22],[0,62]],[[43697,80214],[-38,4],[-15,-1],[-21,2],[-18,0],[-33,1],[-48,1],[-17,0],[-32,1],[-21,1],[-16,1],[-19,1],[-24,0],[-53,2],[-22,1],[-19,0],[-22,2],[-56,2],[-28,1],[-18,0],[-43,1],[-16,0],[-30,1],[-24,1],[-20,1],[-18,0],[-16,1],[-47,1],[-17,1],[-26,1],[-29,1],[-19,0],[-30,1],[-18,1],[-25,0],[-22,1],[-30,1],[-21,1],[-15,0],[-44,1],[-32,1],[-28,0],[-26,1],[-35,2],[-28,1],[-19,0],[-23,1],[-54,2],[-39,1],[-16,0],[-57,1],[-17,1],[-27,0],[-30,1],[-29,1],[-16,-1],[-11,1],[-5,0],[-21,1],[-29,1],[-34,1],[-42,2],[-32,-1],[-55,3],[-18,1],[-35,2],[-52,3],[-32,1],[-79,5],[-25,1],[-36,3],[-34,1],[-30,2],[-53,3],[-22,1],[-22,1],[-21,1],[-15,2],[-22,1],[-23,1],[-21,1],[-31,2],[-38,2],[-51,4],[-131,10],[-19,2],[-16,1],[-5,0],[-61,0],[-35,3],[-28,1],[-32,2],[-22,2],[-58,6],[-24,0],[-2,0],[-72,5],[-76,5],[-65,2],[-37,0],[-15,1],[-19,1],[-16,1],[-31,2],[-34,2],[-47,2],[-46,2],[-21,1],[-25,2],[-30,1],[-2,0],[-16,0],[-31,-2],[-17,-1],[-16,-2],[-30,-2],[-40,-3],[-64,-4],[-44,-3],[-7,-1],[-13,-1],[-17,-1],[-32,-1],[-63,-2],[-28,-1],[-20,-1],[-27,-1],[-19,-1],[-46,-2],[-34,-1],[-16,-1],[-130,-6],[-82,-6],[-20,0],[-17,0],[-17,-1],[-18,2],[-61,-1],[-47,-1],[-29,-1],[-16,-1],[-47,-1],[-63,-2],[-126,1],[-21,0],[-1,0],[-147,4],[-4,0],[-56,-1],[-106,-2],[-52,-1],[-4,0],[-46,-5],[-18,0],[-17,-1],[-35,0],[-64,-1],[-33,0],[-70,-1],[-42,-1],[-28,0],[-71,-1],[-61,0],[-104,-2],[-27,0],[-19,-1],[-17,0],[-54,0],[-28,0],[-15,-1],[-97,-1],[-22,0],[-19,0],[-42,-1],[-16,0],[-80,0],[-16,-1],[-16,1],[-30,-2],[-33,-2]],[[37569,80292],[-3,0],[-148,-2],[-34,2],[-82,-1],[-60,0],[-107,1],[-36,-1],[-75,1],[-15,0],[-26,-1],[-17,0],[-17,1],[-17,-3],[-28,3],[-29,0],[-56,0],[-56,0],[-22,-1],[-38,0],[-32,1],[-36,1],[-18,0],[-205,-1],[-24,1],[-29,1],[-100,1],[-82,1],[-49,0],[-25,1],[2,297],[0,2],[0,68],[-1,145],[0,107],[1,144],[3,116],[3,22],[-1,44],[-1,22],[0,34],[1,34],[1,46],[0,26],[0,92],[1,27],[0,42],[0,36],[0,55],[0,27],[1,37],[1,96],[0,26],[1,44],[0,6],[0,25],[-1,79],[0,30],[0,47],[2,128],[0,25],[1,37],[0,64],[1,50],[0,52],[0,34],[0,31],[1,31],[-1,24],[0,23],[1,28],[0,33],[0,50],[0,33],[0,24],[0,66],[1,22],[0,26],[0,26],[0,25],[0,44],[0,37],[0,25],[0,24],[1,26],[0,27],[0,25],[0,37],[0,33],[0,24],[0,29],[1,27],[0,65],[0,33],[0,26],[0,31],[1,40],[-1,24],[0,24],[1,29],[0,56],[0,59],[1,32],[0,44],[0,23],[0,28],[0,26],[0,39],[0,97],[1,41],[0,30],[0,36],[1,37],[0,32],[28,0],[0,31],[0,57],[0,40],[0,70],[0,33],[0,32],[1,40],[0,48],[0,72],[0,38],[0,22],[0,147],[0,61],[0,78],[0,32],[0,65],[0,26],[1,25],[0,42],[0,22],[0,30],[0,27],[0,49],[0,48],[0,46],[0,39],[0,46],[0,27],[0,31],[0,22],[0,70],[0,44],[0,34],[0,40],[0,41],[0,78],[0,121],[-1,76],[0,45],[-9,0]],[[23503,82141],[1,-16],[0,-7],[1,-25],[-1,-32],[0,-26],[0,-25],[-1,-26],[0,-40],[0,-36],[0,-29],[0,-24],[0,-39],[0,-40],[0,-52],[0,-36],[-1,-50],[8,-106],[-5,-22],[3,-22],[-1,-30],[-2,-59],[-1,-32],[0,-29],[0,-31],[-2,-31],[0,-69]],[[23502,81207],[-22,1],[-40,1],[-17,1],[-22,1],[-39,2],[-33,1],[-37,1],[-2,0],[-13,1],[-20,1],[-23,0],[-36,1],[-16,-1],[-29,0],[-17,-3],[-20,5],[-18,0],[-16,-1],[-24,-1],[-20,1],[-19,0],[-21,0],[-15,-1],[-24,0],[-23,0],[-20,0],[-20,1],[-19,0],[-20,0],[-17,1],[-24,0],[-21,0],[-18,1],[-20,0],[-20,0],[-23,0],[-55,1],[-16,1],[-134,3],[-26,1],[-111,2],[-20,3],[-30,1],[-37,1],[-56,2],[-25,0],[-20,1],[-26,1],[-24,0],[-34,1],[-23,0],[-15,0],[-45,1],[-27,1],[-20,0],[-15,0],[-25,1],[-15,1],[-31,0],[-19,1],[-19,0],[-19,1],[-20,-1],[-19,-2],[-16,-3],[-6,0],[-21,-1],[-20,-1],[-22,0],[-35,0],[-26,-1],[-22,0],[-33,0],[-22,0],[-15,0],[-23,0],[-31,0],[-17,0],[-21,1],[-20,0],[-27,1],[-17,0],[-61,-2],[-16,2],[-21,2],[-28,-3],[-22,0],[-21,0],[-18,0],[-26,-1],[-22,0],[-48,6],[-15,-1],[-16,1],[-45,0],[-60,0],[-24,0],[-45,-1],[-63,0],[-19,-1],[-3,0],[-19,0],[-16,0],[-31,-1],[-40,-1],[-25,0],[-22,0],[-27,1],[-18,1],[-15,0],[-25,0],[-17,0],[-11,1],[-19,0],[-20,1],[-24,0],[-21,0],[-21,1],[-18,0],[-20,0],[-31,0],[-31,0],[-19,0],[-27,0],[-25,0],[-76,0],[-25,0],[-17,0],[-25,0],[-22,0],[-24,3],[-81,1],[-35,0],[-16,1],[-23,0],[-30,0],[-39,0],[-37,1],[-26,0],[-21,0],[-25,-1],[-19,0],[-44,0],[-20,0],[-35,0],[-45,0],[-23,-1],[-23,1],[-19,0],[-36,0],[-18,1],[-30,0],[-24,1],[-22,0],[-30,0],[-30,-1],[-45,0],[-25,-2],[-32,0],[-17,3],[-45,0],[-19,-2],[-41,1],[-22,2],[-28,0],[-21,0],[-17,0],[-24,0],[-25,0],[-65,0],[-79,-1],[-36,0],[-32,0],[-42,0],[-24,0],[-33,0],[-30,0],[-37,-1],[-67,0],[-29,0],[-36,0],[-34,0],[-141,-11],[-140,-2],[-24,1],[-29,0],[-33,-1],[-30,0],[-17,0],[-16,3],[-15,0],[-61,0],[-23,0],[-21,0],[-228,0],[-33,-1],[-58,0]],[[17565,81237],[0,26],[0,11],[1,26],[1,28],[0,23],[-1,24],[0,37],[1,30],[0,34],[0,24],[-1,33],[0,36],[0,23],[-1,38],[-1,24],[0,30],[0,25],[-1,77],[0,79],[0,22],[0,41],[-2,36],[0,27],[-1,146],[-1,122],[0,98],[-3,138],[0,44],[-1,114],[0,39],[1,113]],[[37569,80292],[7,-27],[3,-22],[-4,-22],[13,-5],[4,2],[6,3],[6,7],[6,3],[4,1],[3,-3],[1,-1],[0,-13],[-4,-20],[-7,-19],[-5,-8],[-4,-5],[-10,-9],[-7,-3],[-19,-7],[-18,-6],[-17,-7],[-17,-8],[-17,-8],[-31,18],[-19,-47],[-4,-9],[-16,-39],[-2,-5],[-7,-17],[-2,-3],[-30,-46],[-4,-6],[-19,-37],[-8,-11],[-3,-4],[-4,-4],[-3,-2],[-10,-7],[-12,-1],[-11,4],[-2,0],[-2,1],[-2,0],[-6,-3],[-37,-40],[-3,-7],[-1,-7],[2,-9],[3,-4],[3,-1],[3,0],[6,0],[14,4],[14,0],[67,-12],[8,-2],[7,-3],[4,-5],[-1,-10],[-1,-7],[0,-2],[-1,-1],[-2,-5],[-5,-12],[-17,-45],[-5,-14],[-14,-35],[-9,-24],[0,-11],[0,-24],[0,-2],[9,-37],[1,-3],[-22,-31],[-10,-19],[-14,-21],[-6,-14],[-2,-5],[13,-40],[13,-39],[7,-24],[16,-10],[13,-13],[14,-15],[27,-21],[32,-15],[25,-19],[11,-18],[11,-18],[4,-25],[0,-26],[-8,-19],[-15,-10],[-16,-6],[-17,-1],[-19,8],[-15,11],[-13,15],[-11,15],[-8,19],[-8,19],[-12,13],[-16,-4],[-10,-21],[0,-9],[1,-25],[1,-8],[7,-24],[8,-15],[3,-4],[63,-106],[25,-41],[22,-38],[21,-37],[21,-36],[56,-98],[3,-4],[59,-64],[51,-55],[18,-44],[-1,-49],[-18,-48],[-30,-36],[-3,-3],[-22,-15],[-6,-4],[-3,-2],[-5,-1],[-27,-6],[-32,1],[-5,0],[-24,6],[-32,17],[-42,44],[-2,2],[-5,-1],[-31,-11],[-3,-1],[-20,-21],[-1,-30],[9,-25],[26,-33],[12,-27],[3,-6]],[[37402,78388],[-2,0],[-28,-1],[-16,-2],[-27,1],[-32,-1],[-46,0],[-35,0],[-22,0],[-15,0],[-23,0],[-27,1],[-27,0],[-16,2],[-143,0],[-21,-2],[-54,0],[-56,0],[-40,-1],[-3,0],[-15,-1],[-43,0],[-23,0],[-51,0],[-76,2],[-53,-1],[-21,0],[-37,-2],[-28,-1],[-30,0],[-13,0],[-3,0],[-16,0],[-28,-1],[-37,0],[-29,0],[-30,-1],[-19,0],[-33,0],[-49,0],[-27,-1],[-28,0],[-109,0],[-24,0],[-18,0],[-30,0],[-22,-1],[-37,0],[-33,0],[-96,-3],[-77,0],[-98,-2],[-21,1],[-21,0],[-41,0],[-15,-1],[-57,-3],[-116,0],[-23,0],[-33,0],[-6,0],[-232,-2],[-15,-1],[-19,0],[-16,0],[-33,-1],[-29,-1],[-29,0],[-37,0],[-15,-1],[-29,-1],[-16,0],[-37,0],[-20,1],[-138,-3],[-96,-1],[-30,-1],[-9,0],[-70,-1],[-28,0],[-17,-1],[-30,0],[-17,0],[-23,0],[-17,3],[-23,-4],[-49,0],[-47,-2],[-21,0],[-21,0],[-19,0],[-18,0],[-22,0],[-56,-2],[-48,0],[-29,0],[-17,0],[-37,0],[-17,0],[-21,-1],[-18,0],[-20,0],[-20,0],[-24,-1],[-28,-1],[-29,0],[-21,0],[-27,0],[-92,1],[-85,-1],[-107,-3],[-57,-1],[-35,-3],[-29,0],[-23,0],[-19,0],[-18,0],[-29,-1],[-15,-1],[-17,0],[-37,-2],[-32,0],[-27,0],[-39,2],[-69,-3],[-88,-3],[-33,-1],[-257,-8],[-69,-1],[-27,-1],[-24,-2],[-32,-1],[-35,-1],[-37,-1],[-24,-1],[-20,0],[-25,-1],[-42,-1],[-17,0],[-19,-1],[-26,-1],[-19,-2],[-17,-2],[-16,3],[-83,-4],[-47,-1],[-50,-1],[-72,-2],[-36,-1],[-222,-6],[-34,0],[-16,0],[-78,0],[-50,-1],[-64,2],[-181,-2],[-30,3],[-23,-3],[-159,-1],[-36,2],[-64,-1],[-42,-1],[-73,0],[-133,0],[-31,2],[-23,-2],[-133,-1],[-125,2]],[[30207,78296],[1,57],[0,36],[0,27],[0,27],[1,41],[1,41],[-1,33],[0,3],[1,25],[-2,26],[-1,23],[0,15],[1,25],[0,30],[0,32],[0,26],[0,29],[0,44],[0,37],[0,45],[1,203],[0,5],[-1,110],[0,28],[0,37],[0,22],[0,42],[0,29],[-2,30],[0,23],[0,23],[0,86],[-1,36],[0,44],[0,39],[-1,29],[0,46],[-2,34],[0,67],[0,36],[0,37],[-1,28],[0,28],[0,32],[0,22],[-1,22],[-1,43],[0,49],[0,30],[-1,35],[0,26],[0,24],[1,39],[-1,37],[0,28],[0,22],[0,32],[1,68],[-1,26],[0,47],[0,44],[0,47],[1,23],[-1,33],[1,88],[-1,95],[0,41],[0,36],[0,16],[0,18],[0,31],[0,21],[0,31],[0,27],[-1,22],[0,29],[1,26],[0,24],[0,30],[0,38],[0,22],[0,42],[0,37],[0,32],[0,27],[0,36],[0,26],[0,23],[0,50],[0,26],[0,43],[0,31],[0,38],[1,23],[-1,21],[0,24],[1,25],[-1,28],[0,63],[0,24],[0,28],[0,42],[0,55]],[[58941,85590],[0,-33],[0,-32],[-1,-25],[0,-32],[-1,-56],[-2,-60],[-1,-27],[0,-39],[0,-24],[-2,-63],[-1,-106],[-1,-28],[-1,-62],[0,-31],[2,-94],[-1,-40],[-7,-343],[-4,-162],[-3,-138],[-3,-132],[0,-38],[-4,-224],[-2,-92],[-1,-35],[-1,-26],[0,-25],[-4,-143],[1,-23],[0,-28],[-1,-44],[0,-23],[0,-4],[-1,-23],[-1,-45],[0,-47],[-1,-43],[-1,-33],[1,-33],[-2,-40],[-1,-51],[0,-23],[-1,-34],[-1,-57],[-1,-43],[0,-29],[-1,-40],[-1,-22],[3,-68],[-3,-109],[-1,-30],[0,-45],[-1,-42],[-6,-198],[-1,-40],[-1,-38],[-1,-74],[0,-32],[-2,-111],[-1,-31],[0,-56],[-1,-31],[-1,-42],[-1,-107],[-1,-28],[0,-29],[-2,-55],[-1,-22],[-1,-39],[0,-31],[1,-23],[-1,-49],[-2,-134],[-1,-51],[0,-51],[-1,-25],[0,-29],[-1,-31],[0,-29],[-1,-44],[0,-28],[-1,-75],[0,-28],[-1,-23],[-1,-28],[0,-29],[-2,-107],[0,-23],[-1,-29],[1,-42],[-1,-51],[-1,-60],[0,-4],[1,-33],[2,-21],[-4,-22],[-1,-24],[0,-29],[0,-47],[0,-24],[-1,-44],[-2,-43],[0,-36],[0,-83],[-1,-24],[-1,-38],[1,-30],[-2,-98],[-1,-71],[0,-46],[-1,-26],[0,-23],[0,-83],[-1,-57],[0,-187],[0,-55],[0,-84]],[[58846,79316],[-72,2],[-92,2],[-43,1],[-34,0],[-35,1],[-22,0],[-124,4],[-40,1],[-17,1],[-28,-1],[-147,3],[-72,2],[-30,1],[-21,0],[-61,0],[-16,0],[-77,1],[-78,1],[-2,0],[-529,2],[-58,0],[-94,0],[-26,0],[-66,1],[-171,3],[-204,5],[-23,0],[-41,1],[-38,1],[-73,1],[-70,1],[-22,1],[-119,2],[-61,2],[-18,1],[-29,1],[-26,0],[-72,2],[-74,-1],[-2,0],[-18,0],[-65,2],[-38,1],[-19,0],[-31,1],[-39,1],[-37,1],[-29,1],[-36,1],[-54,1],[-57,1],[-73,1],[-28,0],[-16,0],[-24,0],[-21,-1],[-19,0],[-26,2],[-102,5],[-100,5],[-102,3],[-16,0],[-16,1],[-28,1],[-51,1],[-29,1],[-42,0],[-60,1],[-111,2],[-53,0],[-52,1],[-38,1],[-19,-1],[-17,1],[-8,0],[-150,6],[-48,2],[-29,1],[-38,1],[-68,3],[-16,0],[-31,2],[-54,1],[-33,1],[-20,0],[-19,0],[-44,1],[-77,1],[-81,0],[-59,1],[0,-36],[-1,-37],[-1,-26],[0,-29],[-1,-73],[-2,-93],[0,-24],[-1,-39],[-1,-32],[0,-42],[-1,-37],[-1,-37],[-2,-110],[0,-22],[-2,-78],[-1,-35],[0,-43],[-1,-22],[-1,-32],[-1,-77],[-1,-31],[-2,-63],[0,-29],[-1,-37],[-1,-31],[0,-55],[-1,-21],[-2,-83],[-117,3],[-127,4],[-298,3],[-25,0],[-24,1],[-30,0],[-44,1],[-38,1],[-69,1],[-51,1],[-44,1],[-19,0],[-27,1],[-19,0],[-19,0],[-25,0],[-129,3],[-2,0],[-40,1],[-21,0],[-29,0],[-39,0],[-21,1],[-37,0],[-15,1],[-30,0],[-25,1],[-25,0],[-101,1],[-68,1],[-18,1],[-28,0],[-83,0]],[[65006,85525],[40,-41],[4,-6],[21,-40],[33,-61],[31,2],[6,1],[11,-17],[17,-29],[12,-21],[13,-23],[3,-5],[13,-23],[1,-2],[4,-10],[10,-23],[2,-6],[-5,-61],[17,-32],[13,-25],[-6,-32],[-51,-239],[-1,-9],[-47,-67],[-50,-72],[-35,-49],[-187,-268],[-40,-298],[-8,-64],[36,-135],[41,-157],[30,-112],[8,-29],[13,-42],[10,-37],[6,-20],[21,-71],[6,-21],[16,-55],[5,-5],[39,-32],[36,-85],[2,-5],[11,-5],[123,-51],[157,-133],[43,-37],[152,-129],[59,-50],[40,-29],[131,-99],[56,-42],[5,-7],[22,-41],[31,-57],[46,-85],[108,-199],[6,-11],[1,-8],[17,-110],[8,-49],[-55,-169],[-7,-329],[-2,-72],[-1,-51],[0,-10],[-18,-121],[-38,-244],[6,-55],[10,-99],[4,-41],[1,-7],[26,-33],[197,-251],[79,-101],[44,-56],[266,-245],[39,-36],[279,-256],[14,-14]],[[66956,79867],[-4,1],[-131,20],[-11,0],[-11,0],[-19,0],[-8,1],[-55,0],[-17,0],[-150,2],[-36,0],[-33,0],[-19,0],[-50,3],[-15,0],[-16,0],[-17,0],[-22,1],[-38,-2],[-37,0],[-86,0],[-243,3],[-15,0],[-20,2],[-23,0],[-17,-1],[-16,4],[-43,-2],[-23,-1],[-25,0],[-7,1],[-9,0],[-15,0],[-16,-1],[-33,-1],[-26,0],[-4,0],[-20,1],[-33,0],[-15,1],[-19,0],[-23,0],[-24,0],[-17,0],[-18,-1],[-16,0],[-10,0],[-7,1],[-18,-1],[-22,0],[-24,1],[-24,1],[-25,-1],[-21,-1],[-19,-1],[-16,1],[-19,-1],[-16,1],[-18,0],[-38,0],[-18,0],[-17,-1],[-80,-2],[-24,0],[-28,0],[-33,1],[-32,0],[-28,0],[-21,0],[-28,1],[-16,-3],[-23,3],[-3,0],[-200,1],[-66,1],[-22,-1],[-32,-2],[-63,3],[-22,-1],[-40,1],[-40,0],[-36,-1],[-119,-1],[-63,1],[-5,0],[-32,-1],[-37,0],[-19,2],[-42,-1],[-119,0],[-57,1],[-7,0],[-70,-1],[-71,0],[-53,0],[-51,0],[-102,0],[-33,0],[-2,0],[-107,-1],[-135,0],[-68,2],[-59,1],[-19,0],[-138,2],[-19,0],[-18,0],[-23,1],[-42,1],[-47,1],[-84,-1],[-18,-1],[-19,0],[-15,0],[-47,0],[-18,0],[-45,0],[-21,0],[-36,1],[-29,0],[-6,0],[-31,0],[-36,0],[-38,1],[-21,0],[-47,1],[-23,0],[-39,0],[-17,0],[-45,1],[-11,0],[-16,2],[-29,3],[-21,0],[-20,1],[-25,0],[-64,-1],[-9,1],[-23,0],[-15,-1],[-17,-3],[-16,0],[-17,1],[-18,0],[-53,0],[-30,1],[-32,0],[-15,-1],[-28,1],[-65,2],[-90,1],[-60,0],[-32,1],[-33,0],[-16,0],[-18,0],[-43,1],[-27,0],[-35,0],[-30,0],[-21,1],[-27,0],[-24,0],[-56,1],[-40,0],[-35,1],[-41,0],[-116,2],[-40,1],[-3,-25],[0,-37],[1,-64],[0,-64],[0,-33],[0,-53],[0,-22],[1,-27],[1,-38],[4,-23],[8,-38],[4,-31],[0,-27],[0,-9],[0,-3],[1,-19],[0,-27],[1,-40],[2,-48],[-12,3],[-4,0]],[[60816,79297],[-19,4],[-16,0],[-18,1],[-17,0],[-19,0],[-26,0],[-17,1],[-17,0],[-20,0],[-15,0],[-17,0],[-22,1],[-21,-2],[-13,-3],[-4,-1],[-20,-5],[-5,0],[-12,0],[-20,2],[-26,0],[-24,1],[-15,0],[-20,1],[-27,1],[-15,0],[-18,1],[-28,0],[-16,0],[-22,9],[-17,2],[-20,-4],[-17,0],[-58,1],[-18,-3],[-16,-1],[-19,0],[-27,0],[-61,2],[-34,0],[-36,1],[-38,1],[-29,0],[-74,1],[-84,1],[-56,1],[-70,1],[-83,1],[-98,2],[-15,-2],[-26,0],[-18,1],[-163,-1],[-6,0],[-23,0],[-34,0],[-49,1],[-42,0],[-21,1],[-30,0],[-17,0],[-40,1],[-41,0],[-22,0],[-39,1]],[[17565,81237],[0,-61],[-1,-29],[0,-38],[0,-37],[0,-23],[-1,-25],[0,-30],[0,-36],[0,-30],[-1,-21],[1,-59],[0,-33],[0,-23],[-1,-52],[0,-48],[0,-207],[1,-42],[1,-144],[0,-25],[2,-246],[0,-50],[-1,-350],[0,-55],[-1,-66],[0,-306],[1,-158],[7,-19],[-7,-22],[0,-22],[0,-56],[1,-27],[0,-45],[0,-27],[0,-45],[0,-37],[0,-49],[0,-27],[0,-49],[1,-9],[0,-19],[0,-38],[0,-26],[0,-25],[0,-43],[0,-46],[0,-33],[0,-24],[0,-28],[2,-39],[1,-23],[2,-36],[1,-28],[2,-44],[4,-41],[-1,-32],[1,-33],[2,-35],[0,-36],[0,-42],[0,-40],[0,-40],[0,-39],[0,-54],[-1,-34],[1,-15],[0,-17],[-1,-25],[0,-62],[0,-57],[0,-29],[-1,-22],[0,-26],[0,-28],[0,-21],[0,-58],[0,-29],[0,-27],[0,-27],[0,-25],[0,-26],[0,-30],[1,-22],[0,-43],[0,-17],[0,-37],[0,-43],[-1,-30],[0,-39],[1,-52],[0,-49],[0,-34],[0,-31],[0,-36],[0,-31],[0,-36],[0,-34],[0,-50],[-1,-40],[1,-41]],[[17580,76542],[-89,0],[-45,1],[-138,4],[-146,2],[-170,2],[-33,0],[-73,1],[-125,0],[-8,0],[-5,0],[-57,0],[-76,1],[-284,7],[-286,2],[-223,-1],[-232,6],[-218,1],[-187,1],[-63,3],[-76,1],[-76,0],[-4,0],[-24,1],[-13,0],[-75,0],[-45,0],[-15,0],[-2,0],[-18,0],[-28,0],[-81,0],[-107,1],[-27,0],[-258,0],[-57,1],[-94,0],[-187,0],[-46,0],[-78,1],[-96,0],[-59,0],[-52,0],[-87,0],[-53,0],[-18,1],[-64,1],[-112,1],[-28,1],[-57,1],[-62,1],[-22,0],[-237,4],[-36,0],[-79,1],[-74,2],[-172,2],[-55,1],[-157,2],[-94,2],[-80,1],[-71,1],[-70,1],[-198,3],[-82,1],[-40,1],[-24,0],[-29,0],[-23,0],[-133,-2],[-10,0],[-17,0],[-3,0],[-29,0],[-16,0],[-2,0],[-19,0],[-6,0],[-24,0],[-48,0],[-179,0],[-15,0],[-36,0],[-4,0],[-11,0],[-25,0],[-31,0],[-50,0],[-46,0],[-32,0],[-186,1],[-27,0],[-81,0],[-266,0],[-42,0],[-144,0],[-5,0],[-6,0],[-22,2]],[[10065,76606],[-26,39],[-26,47],[-11,22],[-15,34],[-18,51],[-16,50],[-21,78],[-2,8],[-9,40],[-10,37],[-6,40],[0,35],[1,27],[3,29],[3,22],[3,11],[1,4],[2,8],[11,39],[1,8],[30,117],[4,14],[6,20],[14,53],[6,21],[6,21],[16,33],[22,29],[26,25],[5,5],[24,17],[32,19],[51,21],[19,3],[27,6],[8,1],[24,-2],[29,-4],[17,-5],[19,-9],[14,-8],[21,-11],[21,-11],[65,-33],[21,-11],[22,-7],[46,-7],[43,2],[4,1],[29,5],[38,14],[17,7],[58,36],[29,23],[11,8],[31,43],[29,49],[39,71],[15,33],[11,33],[13,54],[8,34],[8,50],[2,22],[1,23],[-1,44],[-5,34],[-8,32],[-9,35],[-14,34],[-10,25],[-14,25],[-12,22],[-9,18],[-17,43],[-9,29],[-10,43],[-5,28],[-5,32],[-3,34],[2,41],[1,32],[10,59],[14,56],[51,147],[6,16],[22,43],[26,48],[10,20],[17,30],[43,60],[25,35],[15,23],[8,22],[6,19],[9,26],[17,31],[27,54],[17,28],[12,21],[3,5],[14,25],[9,26],[2,6],[3,4],[17,23],[26,49],[46,65],[32,33],[14,14],[22,23],[17,17],[10,9],[16,11],[15,11],[15,8],[44,18],[21,6],[5,2],[32,8],[20,4],[57,6],[27,3],[26,2],[12,-2],[14,-1],[24,1],[22,1],[20,1],[25,5],[25,3],[27,4],[18,3],[22,6],[23,7],[18,7],[18,9],[16,10],[20,13],[18,13],[13,11],[15,13],[13,15],[11,17],[12,19],[16,23],[11,17],[12,18],[11,25],[7,21],[5,25],[6,23],[3,27],[3,21],[1,29],[1,28],[-1,30],[2,47],[3,114],[0,22],[1,32],[1,11],[-3,23],[-20,180],[-4,36],[-5,29],[-2,32],[-6,41],[-2,40],[-1,25],[-1,27],[2,27],[2,27],[4,25],[3,12],[1,2],[2,9],[5,11],[6,13],[12,23],[9,18],[14,24],[9,18],[12,25],[10,19],[12,18],[3,4],[17,17],[15,17],[17,16],[14,14],[15,13],[9,8],[8,7],[19,14],[14,11],[21,8],[17,2],[22,-1],[20,-2],[16,-3],[19,-5],[15,-7],[16,-8],[21,-10],[18,-13],[24,-7],[12,-21],[15,-10],[21,-16],[18,-16],[19,-17],[14,-16],[17,-16],[14,-15],[11,-11],[7,-7],[15,-15],[14,-13],[17,-16],[16,-12],[14,-13],[22,-17],[23,-18],[25,-20],[20,-17],[19,-14],[10,-8],[11,-10],[18,-10],[16,-10],[17,-9],[18,-10],[20,-9],[22,-9],[23,-10],[21,-7],[25,-7],[16,-4],[15,-5],[22,-7],[24,-3],[17,0],[23,3],[99,15],[114,41],[17,10],[25,14],[37,24],[48,32],[13,14],[56,58],[13,17],[36,31],[41,55],[3,23],[31,55],[16,65],[6,41],[7,29],[2,5],[5,19],[18,91],[2,9],[-14,95],[-5,43],[-5,54],[-29,73],[-8,19],[-32,61],[-29,35],[-38,26],[-26,1],[-10,-2],[-9,-2],[-25,-4],[-29,-6],[-17,-3],[-23,-4],[-27,-9],[-26,-13],[-21,-17],[-102,-102],[-14,-16],[-16,2],[-18,-17],[-13,-12],[-13,-11],[-14,-9],[-16,-13],[-15,-10],[-15,-8],[-18,-8],[-14,-7],[-16,-7],[-16,-7],[-17,-3],[-17,-5],[-20,-1],[-17,-1],[-15,-2],[-19,-1],[-20,4],[-16,7],[-22,11],[-15,10],[-16,7],[-14,10],[-15,12],[-16,12],[-18,16],[-16,14],[-20,18],[-17,15],[-17,17],[-17,17],[-16,16],[-14,16],[-11,16],[-15,14],[-13,13],[-12,19],[-19,19],[-15,33],[-8,30],[-4,26],[-3,29],[-3,26],[1,25],[2,24],[4,31],[5,24],[14,30],[20,26],[17,16],[13,14],[13,11],[15,10],[19,12],[20,9],[20,5],[19,3],[29,5],[16,-2],[16,4],[16,-1],[34,-2],[36,0],[34,0],[50,2],[52,0],[41,2],[39,2],[29,4],[25,3],[21,2],[18,1],[17,4],[23,7],[17,10],[20,11],[23,14],[14,12],[14,9],[13,12],[13,16],[1,1],[13,16],[11,21],[7,14],[2,5],[45,123],[9,34],[1,1],[5,20],[6,27],[5,128],[-2,25],[-1,26],[-2,34],[-1,6],[-2,40],[-1,27]],[[30207,78296],[-1,-145],[-1,-140],[-2,-28],[0,-40],[-1,-24],[0,-35],[0,-23],[0,-30],[0,-26],[-1,-41],[1,-53],[0,-23],[-2,-28],[0,-21],[-1,-33],[0,-36],[-1,-38],[-1,-23],[0,-25],[0,-30],[-1,-23],[0,-24],[0,-34],[0,-30],[0,-25],[0,-38],[0,-22],[0,-39],[-1,-38],[0,-40],[0,-39],[0,-31],[0,-26],[0,-22],[0,-39],[0,-82],[0,-36],[0,-58],[0,-30],[0,-28],[0,-32],[-1,-27],[1,-200],[1,-75]],[[30196,76416],[-54,2],[-58,2],[-17,0],[-32,1],[-66,2],[-19,1],[-20,0],[-18,0],[-48,2],[-120,4],[-28,2],[-16,0],[-15,1],[-29,1],[-21,1],[-35,0],[-21,1],[-46,2],[-25,0],[-38,1],[-15,1],[-24,0],[-16,0],[-16,0],[-28,0],[-15,1],[-55,1],[-39,0],[-40,0],[-38,0],[-40,0],[-40,1],[-16,0],[-24,0],[-40,0],[-39,0],[-39,0],[-40,0],[-40,1],[-40,1],[-18,-1],[-19,0],[-40,0],[-40,0],[-88,0],[-44,0],[-45,0],[-33,-3],[-20,0],[-22,0],[-19,-1],[-113,-6],[-54,-2],[-29,-1],[-72,-3],[-73,-2],[-1,0],[-144,0],[-16,0],[-35,-1],[-17,0],[-65,-1],[-41,-1],[-16,0],[-32,-1],[-24,0],[-27,-1],[-72,-1],[-78,-1],[-37,-1],[-36,0],[-39,0],[-34,-1],[-73,-1],[-40,0],[-32,-1],[-46,0],[-28,0],[-21,-1],[-35,0],[-82,-1],[-19,0],[-43,-1],[-41,0],[-13,0],[-12,0],[-19,1],[-28,-1],[-23,0],[-21,0],[-23,0],[-34,0],[-15,1],[-55,1],[-32,0],[-30,1],[-17,0],[-25,0],[-19,0],[-19,1],[-38,1],[-33,1],[-18,0],[-28,0],[-20,1],[-21,1],[-21,1],[-20,-1],[-18,1],[-16,1],[-28,0],[-41,1],[-15,0],[-19,1],[-46,0],[-17,0],[-37,1],[-51,1],[-21,0],[-49,1],[-17,1],[-73,1],[-99,3],[-26,0],[-74,2],[-36,1],[-48,1],[-27,0],[-38,1],[-51,2],[-29,0],[-39,1],[-80,2],[-42,1],[-47,1],[-31,0],[-23,1],[-20,0],[-47,1],[-33,0],[-61,1],[-19,0],[-26,0],[-22,0],[-28,0],[-19,0],[-21,0],[-60,0],[-30,0],[-46,1],[-15,0],[-7,0],[-31,0],[-26,0],[-49,0],[-18,0],[-31,0],[-31,1],[-32,0],[-20,0],[-23,0],[-16,0],[-1,0],[-28,0],[-23,1],[-101,1],[-33,0],[-19,0],[-17,0],[-39,1],[-21,0],[-25,0],[-23,1],[-19,0],[-22,1],[-16,0],[-27,1],[-39,0],[-55,1],[-25,1],[-28,1],[-16,0],[-19,1],[-30,0],[-16,1],[-25,0],[-31,1],[-20,1],[-17,1],[-32,1],[-25,1],[-17,0],[-29,1],[-30,2],[-24,0],[-16,1],[-30,1],[-34,2],[-33,1]],[[23465,76473],[1,49],[2,47],[1,17],[0,5],[1,32],[2,43],[1,23],[1,23],[1,51],[1,43],[0,123],[1,165],[1,50],[2,206],[0,62],[1,61],[0,113],[0,97],[1,45],[0,58],[2,97],[0,36],[2,121],[2,103],[1,143],[1,24],[1,47],[1,50],[0,36],[0,31],[1,42],[0,41],[0,40],[0,25],[-2,25],[1,23],[1,30],[0,46],[0,29],[0,52],[1,72],[0,35],[0,50],[1,88],[5,236],[-5,23],[0,41],[1,24],[0,23],[0,38],[0,25],[1,25],[0,42],[0,49],[1,24],[0,29],[0,22],[0,37],[1,31],[0,34],[0,32],[0,1],[0,34],[1,44],[0,36],[0,31],[1,34],[0,59],[1,40],[0,25],[1,77],[1,60],[0,24],[1,46],[-1,117],[1,70],[0,29],[0,41],[-1,108],[0,49],[0,29],[1,58],[-2,50],[1,21],[-1,127],[0,55],[-1,135]],[[23465,76473],[-2,-52],[-1,-39],[0,-37],[-1,-24],[-5,-150],[-3,-164],[-4,-123],[-1,-35],[-3,-137],[-2,-31],[1,-23],[-1,-46],[-1,-75],[-3,-105],[0,-52],[0,-73],[-1,-46],[-2,-43],[1,-57],[-2,-61],[-1,-36],[-5,-103],[0,-23],[3,-36]],[[23432,74902],[-42,1],[-239,4],[-92,3],[-11,0],[-37,1],[-173,2],[-109,1],[-229,1],[-53,0],[-117,1],[-22,1],[-143,1],[-69,3],[-68,0],[-60,0],[-39,1],[-44,-1],[-107,1],[-21,0],[-18,0],[-2,0],[-41,1],[-30,-1],[-18,0],[-77,-1],[-22,1],[-25,0],[-16,1],[-16,-1],[-1,0],[-21,-1],[-33,0],[-23,1],[-38,-1],[-26,0],[-21,0],[-23,0],[-33,0],[-29,0],[-17,0],[-19,0],[-32,3],[-143,-1],[-34,-1],[-31,-2],[-44,1],[-116,1],[-1,0],[-64,1],[-103,2],[-126,0],[-176,1],[-57,0],[-63,-1],[-150,0],[-22,-7],[-148,0],[-42,0],[-116,0],[-42,0],[-53,1],[-70,1],[-66,1],[-151,0],[-19,1],[-15,0],[-17,-1],[-58,-1],[-24,0],[-77,1],[-29,0],[-22,1],[-89,1],[-66,0],[-52,-2],[-25,1],[-53,1],[-14,0],[-12,-1],[-119,1],[-94,1],[-25,0],[-31,0],[-28,1],[-3,0],[-62,0],[-18,0],[-23,2],[-41,0],[-28,0],[-17,0],[-99,2],[-25,-1],[-16,1],[-18,0],[-17,-1],[-36,0],[-2,0],[-87,0],[-77,-1],[-32,0],[-34,1],[-46,0],[-30,0],[-80,0],[-34,0],[-15,0],[-18,-1],[-45,7]],[[17586,74934],[0,47],[-1,31],[0,33],[-1,27],[0,65],[-1,49],[0,31],[-1,40],[0,91],[0,27],[0,40],[0,152],[0,31],[-1,49],[0,41],[0,33],[0,46],[0,27],[0,33],[-1,21],[1,28],[-1,66],[0,139],[0,134],[0,138],[0,58],[0,42],[0,23],[0,40],[0,26]],[[46181,78272],[-22,0],[-45,2],[-1,-36],[-9,-238],[-5,-152],[-4,-136],[-5,-118],[-3,-71],[-2,-78],[-2,-74],[-2,-77],[-2,-68],[-2,-52],[0,-23],[-1,-28],[-1,-58],[-1,-37],[-1,-37],[-2,-68],[-1,-44],[-2,-77],[-1,-38],[-1,-22],[-1,-39],[-2,-50],[-1,-54],[-2,-55],[-2,-80],[-1,-36],[7,-176],[1,-23],[-1,-39],[-1,-39],[-3,-29],[-2,-38],[-1,-35],[-2,-34],[1,-32],[-1,-25],[0,-34],[-2,-37],[-1,-33],[-1,-35],[-1,-23],[0,-45],[-3,-72],[-1,-23],[-1,-22],[-2,-30],[1,-27],[-1,-24],[0,-28],[-1,-35],[-1,-22],[-4,-167],[-2,-79],[-3,-80],[-1,-38],[-2,-118],[-7,-275],[-4,-134],[-2,-60],[0,-2],[-2,-63],[-1,-45],[0,-16],[0,-18],[4,-30],[0,-24],[-4,-103],[-3,-87],[3,-34],[-6,-67],[-1,-76],[-2,-53],[0,-6],[-3,-121],[-2,-55],[-3,-172],[0,-65],[-2,-130],[-4,-172],[-4,-102],[-2,-79],[1,-24],[-2,-47],[-2,-45],[-3,-113],[-4,-112],[-3,-123],[-1,-25],[-3,-30],[-5,-22],[-1,-61],[-4,-172],[-3,-135],[-2,-67]],[[45952,72021],[-94,36],[-25,9],[-230,86],[-4,2],[-141,53],[-122,45],[-27,10],[-51,20],[-141,55],[-50,19],[-63,25],[-28,11],[-152,60],[-80,31],[-2,1],[-33,13],[-23,-69],[-11,-31],[-31,-101],[-11,-16],[-36,-105],[-94,-279],[-101,-298],[-64,-188],[-21,-61],[-27,-80],[-42,-125],[-11,-35],[-42,-121],[-47,-139],[-33,-97],[-9,-26],[-22,-67],[-18,-53],[-38,-113],[-8,-22],[-40,-108],[-40,-107],[-10,-25],[-19,-51],[-8,-24],[-4,-12],[-10,-23],[-16,-42],[-12,-34],[-3,-7],[-12,-33],[-8,-20],[-11,-30]],[[43827,69955],[6,69],[-9,42],[-5,11],[-4,7],[-4,9],[-6,12],[-13,14],[-15,16],[-9,5],[-26,17],[-38,13],[-29,6],[-11,2],[-21,-1],[-20,0],[-10,-4],[-25,-8],[-40,-18],[-19,-10],[-17,-9],[-35,-26],[-8,-8],[-31,-29],[-46,-43],[-16,-16],[-70,-67],[-80,-43],[-110,-28],[-91,2],[-73,17],[-32,8],[-14,4],[-11,3],[-35,31],[-33,39],[-48,94],[1,9],[-17,73],[0,90],[3,17],[12,40],[17,46],[23,54],[12,67],[-3,136],[-7,29],[-3,5],[-15,31],[-60,74],[-3,3],[-44,34],[-38,14],[-66,16],[-78,26],[-19,6],[-41,16],[-68,31],[-54,37],[-8,10],[-13,8],[-39,38],[-30,35],[-16,19],[-24,41],[-14,46],[-1,21],[-3,48],[6,34],[7,57],[4,31],[8,20],[8,20],[11,29],[17,42],[17,79],[9,65],[-6,81],[-11,35],[-9,31],[-9,18],[-14,26],[-11,23],[-15,17],[-9,12],[-7,9],[-20,16],[-43,27],[-59,21],[-5,1],[-14,2],[-30,2],[-45,-5],[-46,-5],[-40,-4],[-40,-4],[-16,-2],[-84,-8],[-38,-4],[-39,-4],[-7,-1],[-25,-3],[-26,-2],[-18,-1],[-18,0],[-53,0],[-40,0],[-42,1],[-41,-3],[-62,1],[-61,1],[-68,4],[-46,9],[-42,8],[-53,16],[-66,23],[-62,23],[-32,11],[-52,30],[-57,37],[-72,50],[-70,55],[-58,59],[-60,67],[-3,2],[-20,25],[-12,14],[-13,15],[-26,38],[-19,43],[-6,28],[-3,12],[-7,40],[-4,23],[-8,43],[-9,76],[6,58],[4,55],[-2,60],[1,68],[-1,77],[-8,62],[-15,65],[-15,43],[-11,23],[-12,22],[-22,33],[-8,20],[-9,16],[-4,7],[-22,32],[-32,34],[-26,17],[-9,6],[-10,6],[-29,21],[-30,16],[-6,3],[-27,13],[-26,6],[-43,8],[-40,1]],[[40003,73364],[-22,8],[-21,7],[-18,8],[-3,1],[-14,6],[-20,7],[-25,12],[-22,21],[-3,3],[-1,3],[-16,42],[-5,24],[-5,33],[-4,25],[-4,24],[-4,24],[-7,54],[-11,72],[-5,34],[0,10],[0,3],[0,9],[1,20],[0,7],[8,34],[6,24],[12,19],[6,10],[10,20],[12,29],[-1,32],[-10,33],[-6,13],[-4,8],[-14,19],[-16,18],[-1,1],[-8,8],[-3,2],[-13,7],[-18,12],[-15,8],[-25,13],[-7,1],[-8,2],[-12,5],[-36,15],[-41,19],[-68,30],[-58,24],[-17,2],[-22,3],[-15,-9],[-13,-9],[-43,-32],[-14,-5],[-23,-9],[-54,5],[-13,6],[-16,8],[-36,39],[-8,21],[-15,61],[-2,9],[0,21],[-1,6],[-5,21],[0,3],[-12,20],[-13,15],[-23,28],[-3,4],[-17,31],[-8,11],[-23,28],[-8,1],[-9,1],[-50,-45],[-21,-19],[-20,-10],[-21,-8],[-41,-4],[-19,1],[-48,0],[-32,0],[-27,6],[-3,1],[-25,10],[-55,60],[-16,9],[-19,1],[-18,-1],[-24,1],[-18,7],[-9,15],[-2,3],[-12,20],[-5,8],[-27,37],[-31,3],[-1,0],[-28,-8],[-16,-9],[-5,-19],[-1,-3],[1,-2],[3,-9],[4,-9],[4,-2],[11,-3],[18,-6],[23,-5],[5,-1],[11,-2],[16,-4],[20,-18],[5,-5],[7,-9],[0,-7],[1,-16],[-6,-7],[-8,-11],[-4,-2],[-33,-14],[-16,-10],[-10,-12],[-5,-6],[-14,-19],[-27,-23],[-30,2],[-23,12],[-24,8],[-18,-1],[-19,-3],[1,5],[4,23],[9,27],[-1,24],[6,23],[11,34],[10,35],[4,36],[-9,29],[-20,21],[-28,13],[-28,6],[-17,1],[-24,-13],[-22,-4],[-15,-14],[-9,-27],[6,-25],[18,-20],[16,-16],[19,-19],[17,-21],[12,-28],[4,-36],[-5,-32],[-13,-21],[-17,-6],[-25,12],[-25,24],[-17,14],[-16,15],[-17,15],[-29,27],[-3,2],[-25,21],[-16,29],[-4,7],[0,7],[-1,31],[0,11],[2,5],[8,27],[9,21],[7,37],[-7,20],[-1,2],[-11,22],[4,27],[20,1],[34,-13],[29,1],[8,0],[6,3],[16,9],[11,6],[10,16],[7,10],[1,3],[1,3],[4,21],[1,8],[-1,9],[-3,21],[-9,27],[-8,24],[-26,47],[-12,21],[-14,25],[-2,9],[-1,12],[4,38],[21,37],[7,17],[7,18],[4,8],[0,4],[1,13],[1,8],[1,28],[-7,24],[-10,28],[-13,23],[-15,21],[-25,15],[-23,8],[-3,0],[-21,-2],[-44,-10],[-30,-12],[-19,-6],[-17,-3],[-22,-7],[-15,-10],[-8,-30],[0,-3],[1,-2],[6,-22],[10,-19],[14,-16],[8,-21],[-4,-21],[-21,-14],[-19,-1],[-3,0],[-14,-10],[-19,-18],[-17,-32],[-4,-29],[-13,-19],[-3,-5],[-3,-2],[-12,-8],[-5,-1],[-15,-3],[0,-31],[7,-33],[3,-22],[8,-24],[7,-19],[8,-35],[-4,-29],[-8,-49],[-4,-30],[-3,-37],[-9,-19],[-15,-8],[-24,-7],[-29,-1],[-29,25],[-15,31],[-5,21],[2,23],[10,18],[18,15],[11,17],[18,21],[17,25],[3,22],[-7,24],[-9,25],[-5,23],[5,24],[11,23],[-1,29],[-17,16],[-23,21],[-21,23],[-36,15],[-4,1],[-14,3],[-17,-14],[-20,-22],[-9,-19],[-25,-15],[-20,-12],[-4,-2],[-26,-16],[-30,-9],[-36,-11],[-25,-7],[-23,1],[-17,8],[-22,21],[-14,34],[-2,25],[-2,21],[11,39],[22,28],[24,-2],[18,-19],[14,-23],[6,-30],[14,-13],[15,-2],[16,-4],[20,4],[16,2],[18,15],[13,22],[6,10],[2,6],[1,3],[7,20],[9,33],[2,49],[-2,23],[-1,6],[-5,26],[-5,24],[-2,10],[-3,13],[-13,25],[-13,27],[-8,21],[-18,35],[-30,37],[-28,31],[-18,17],[-8,7],[-6,6],[-3,2],[-15,7],[-11,7],[-13,9],[-14,12],[-11,39],[-4,40],[0,31],[0,4],[2,57],[0,29],[1,7],[-1,26],[0,4],[1,15],[2,16],[26,15],[30,-3],[17,-15],[25,-6],[21,3],[16,6],[18,21],[3,3],[4,24],[0,24],[-8,28],[-16,36],[-2,3],[-16,16],[-22,18],[-5,4],[-24,23],[-15,17],[-16,25],[-18,40],[-15,34],[-3,38],[-2,33],[-11,23],[-15,21],[-15,13],[-29,23],[-5,4],[-20,23],[-3,8],[-5,13],[2,22],[0,2],[7,13],[5,11],[4,1],[17,7],[20,2],[21,7],[20,17],[14,28],[8,27],[0,28],[-7,22],[-5,27],[-14,24],[-15,8],[-33,3],[-23,9],[-5,2],[-4,3],[-9,8],[-14,11],[-10,17],[-4,5],[-9,25],[-1,48],[12,15],[4,4],[3,0],[35,10],[26,4],[15,2],[19,0],[15,-1],[22,-8],[14,-10],[5,-12],[1,-2],[2,-5],[2,-11],[4,-22],[4,-21],[2,-3],[6,-13],[2,-3],[1,-1],[19,-6],[31,75],[11,35],[11,26],[32,29],[17,8],[20,6],[29,-1],[18,-3],[41,-4],[37,6],[18,12],[4,28],[-11,19],[-20,14],[-33,5],[-28,-9],[-34,-16],[-22,-3],[-16,9],[-26,25],[-10,31],[0,22],[16,24],[15,10],[25,14],[18,12],[20,8],[21,19],[18,25],[2,29],[-5,14],[-5,15],[-15,12],[-6,2],[-16,6],[-28,8],[-40,-3],[-24,7],[-17,15],[-14,20],[-6,20],[-9,20],[-9,40],[1,25],[4,21],[7,20],[7,23],[10,26],[10,19],[2,3],[17,35],[10,18],[0,8],[1,16],[-20,19],[-21,13],[-18,25],[-18,32],[4,22],[-2,17],[-1,6],[6,23],[11,15],[7,8],[4,5],[2,1],[6,25],[-6,33],[-7,11],[-15,21],[-15,18],[-32,36],[-14,28],[2,32],[6,23],[7,23],[14,25],[14,16],[13,15],[15,31],[2,3],[4,23],[0,33],[-4,15],[-2,8],[-13,28],[-17,28],[-31,61],[-15,37],[-10,27],[-10,27],[-7,26],[-9,33],[-6,50]],[[66956,79867],[7,-12],[2,-4],[48,-90],[61,-43],[28,-20],[105,-75],[53,-38],[171,-157],[87,-132],[24,-36],[14,-21],[34,-52],[55,-95],[2,-3],[69,-68],[76,-75],[12,-12],[40,-79],[22,-45],[2,-3],[4,-9],[67,-128],[26,-27],[64,-68],[92,-95],[305,-172],[11,-6],[37,-17],[26,-12],[246,-113],[15,-16],[35,-36],[23,-24],[9,-10],[23,-40],[13,-24]],[[68864,78010],[-11,0],[-43,1],[-3,0],[-224,2],[-1,0],[-18,1],[-17,0],[-36,0],[-26,0],[-5,-4],[-19,-14],[-46,-36],[-68,-57],[-2,-2],[-55,-45],[-53,-44],[-74,-59],[-16,-13],[-33,-27],[-37,-31],[-16,-13],[-237,-196],[-40,-46],[-48,-42],[-94,-79],[-47,-39],[-132,-112],[-19,-16],[-27,-23],[-27,-22],[-64,-55],[-4,-3],[-69,-58],[-26,-22],[-73,-62],[-140,-119],[-58,-50],[-20,-16],[-40,-34],[-71,-60],[-76,-65],[-42,-35],[-56,-48],[-52,-44],[-69,-58],[-44,-38],[-30,-25],[-22,-19],[-1,-1],[-93,-79],[-13,-11],[-63,-53],[-93,-78],[-108,-92],[-32,-27],[-46,-26],[-48,-26],[-26,-14],[-45,-37],[-41,-34],[-55,-45],[-43,-32],[-52,-41],[-86,-74],[-33,-28],[-50,-42],[-18,-15],[-42,-36],[-51,-42],[-48,-39],[-57,-47],[-36,-29],[-14,-10],[-39,-27],[-20,-16],[-64,-50],[-235,-210],[-38,-31],[-76,-63],[-101,-83],[-32,-26],[17,-161],[7,-49],[9,-75],[13,-115],[10,-79],[9,-80],[8,-64],[1,-29],[10,-95],[5,-50],[14,-125],[6,-31],[34,-290],[5,-38],[34,-289],[4,-28],[5,-44],[8,-68],[14,-124],[46,-395],[7,-62],[1,-10],[28,-245],[8,-72],[1,-3],[6,-57],[4,-38],[17,-145]],[[64966,71958],[-114,5],[-185,9],[-79,3],[-16,3],[-20,1],[-34,3],[-23,1],[-28,2],[-18,1],[-18,1],[-17,1],[-16,1],[-21,1],[-16,1],[-17,2],[-24,1],[-17,1],[-28,1],[-33,2],[-15,1],[-22,2],[-15,1],[-18,1],[-19,1],[-15,1],[-16,1],[-24,1],[-24,2],[-16,0],[-32,3],[-18,1],[-15,1],[-31,1],[-23,2],[-17,1],[-34,2],[-28,1],[-26,2],[-33,2],[-21,1],[-26,0],[-34,2],[-45,1],[-24,1],[-29,1],[-30,1],[-34,1],[-23,1],[-25,0],[-17,1],[-28,1],[-60,2],[-22,1],[-26,1],[-19,1],[-35,1],[-37,1],[-15,0],[-26,1],[-22,1],[-22,0],[-15,1],[-16,0],[-44,2],[-26,1],[-22,1],[-71,0],[-46,1],[-27,1],[-27,1],[-39,2],[-15,1],[-25,1],[-17,0],[-17,1],[-24,1],[-46,2],[-15,0],[-33,1],[-16,1],[-22,0],[-28,2],[-17,0],[-23,1],[-25,1],[-16,0],[-25,1],[-26,1],[-18,0],[-16,1],[-20,0],[-30,1],[-16,1],[-18,0],[-20,1],[-26,1],[-32,1],[-15,0],[-43,2],[-19,0],[-27,1],[-19,-1],[-22,1],[-18,-1],[-16,0],[-26,0],[-17,0],[-18,0],[-18,0],[-27,0],[-28,0],[-26,0],[-16,0],[-10,0],[-14,0],[-21,0],[-18,1],[-18,0],[-26,2],[-16,1],[-16,-3],[-16,0],[-16,1],[-88,1],[-21,0],[-19,-1],[-278,2],[-281,1],[-86,0],[-9,1],[-148,0],[-39,1],[1,28],[2,96],[4,163],[1,29]],[[60775,72400],[2,78],[1,73],[4,167],[0,39],[1,31],[1,46],[1,34],[-1,25],[1,28],[1,22],[2,121],[3,114],[0,28],[1,27],[1,50],[1,39],[-3,22],[5,37],[0,30],[0,33],[0,44],[1,28],[1,58],[2,230],[0,59],[1,57],[0,53],[4,318],[0,26],[0,36],[0,33],[0,48],[10,254],[0,2],[6,261],[1,132],[4,161],[4,71],[4,83],[3,115],[2,44],[0,49],[1,79],[0,33],[1,132],[0,13],[0,22],[-2,42],[0,22],[1,27],[0,3],[1,45],[1,57],[5,36],[0,11],[-1,11],[-3,23],[2,75],[0,24],[1,43],[1,67],[2,91],[0,38],[1,71],[1,26],[0,73],[1,31],[0,6],[0,24],[1,40],[1,27],[0,20],[0,4],[1,59],[4,285],[0,25],[1,107],[0,83],[2,35],[0,49],[0,30],[0,33],[0,27],[0,28],[0,75],[0,26],[1,63],[0,38],[1,71],[0,26],[1,54],[0,64],[0,30],[-49,0],[-16,7],[1,39],[2,109],[0,24],[0,54],[1,83],[0,39],[0,22],[1,131],[0,32],[1,121],[1,82],[1,124],[0,22],[0,61],[8,131],[0,12],[0,23],[0,38],[0,23],[0,25],[0,5],[0,24],[0,35],[0,1]],[[60775,72400],[-68,4],[-25,0],[-157,1],[-36,0],[-77,-4],[-15,-1],[-30,-1],[-150,-5],[-20,0],[-192,-2],[-369,-9],[-75,-2],[-151,0],[-17,-4],[-71,-3],[-18,0],[-23,-1],[-83,1],[-10,0],[-118,1],[-83,-2],[-82,0],[-8,0],[-83,0],[-21,0],[-15,0],[-75,0],[-40,0],[-36,-11],[-19,0],[-16,5],[-16,3],[-29,0],[-34,0],[-17,1],[-58,5],[-18,-4],[-108,4],[-38,1],[-34,1],[-78,3],[-22,1],[-2,0],[-47,1],[-2,0],[-16,0],[-100,2],[-36,-2],[-65,2],[-28,1],[-35,1],[-138,5],[-16,1],[-37,1],[-22,1],[-55,2],[-72,2],[-25,1],[-16,0],[-32,1],[-90,2],[-42,2],[-155,3],[-15,0],[-50,2],[-25,0],[-47,1],[-49,1],[-110,2],[-72,1],[-26,2],[-39,2],[-30,3],[-33,5],[-17,-1],[-55,0],[-56,1],[-23,0],[-3,0],[-4,0],[-59,1],[-14,0],[-16,0],[-23,-1],[-117,0],[-38,-1],[-52,0],[-40,0],[-47,1],[-52,0],[-54,0],[-32,0],[-41,0],[-31,4],[-73,0],[-41,0],[-99,1],[-266,1],[-39,0],[-80,1],[-54,1],[-19,1],[-32,1],[-17,0],[-18,-2],[-15,3],[-26,1],[-20,0],[-120,6],[-149,6],[-25,2],[-26,1],[-16,1],[-49,3],[-20,1],[-114,6],[-40,2],[-71,2],[-53,2],[-75,3],[-64,3],[-15,0],[-34,2],[-37,2],[-24,1],[-56,2],[-38,1],[-20,0],[-73,4],[-31,1],[-18,4],[-23,1],[-4,0],[-15,-2],[-17,0],[-35,1],[-39,1],[-26,1],[-58,3],[-18,1],[-47,3],[-23,2],[-18,1],[-33,2],[-40,1],[-16,1],[-23,0],[-18,2],[-79,5],[-33,2],[-30,-1],[-17,1],[-114,8],[-251,15],[-24,1],[-18,4],[-45,3],[-15,0],[-12,1],[-32,2],[-36,1],[-17,-1],[-25,3],[-23,1],[-113,5],[-64,3],[-109,4],[-256,11],[-73,3],[-45,1],[-83,4]],[[51905,72588],[1,41],[2,27],[8,207],[-1,22],[1,50],[1,62],[2,68],[2,50],[2,59],[1,44],[4,181],[1,40],[2,108],[3,113],[4,167],[1,36],[2,53],[2,88],[1,37],[0,29],[3,108],[1,110],[2,42],[-1,36],[5,192],[2,89],[0,4],[1,47],[1,19],[4,105],[2,56],[1,35],[1,52],[0,6],[1,29],[0,31],[1,28],[0,28],[1,28],[1,40],[1,98],[1,26],[1,55],[0,30],[1,39],[1,33],[1,27],[1,80],[1,45],[1,30],[0,40],[2,60],[2,72],[0,33],[1,27],[0,26],[0,24],[5,175],[4,154],[8,321],[3,150],[5,159],[4,155],[1,43],[4,169],[4,111],[-1,23],[0,24],[1,48],[2,66],[2,76],[1,36],[3,66],[2,67],[1,24],[0,43],[2,50],[0,36],[2,31],[0,23],[1,45],[1,48],[2,84],[1,38]],[[40003,73364],[-28,0],[-7,-2],[-12,-4],[-2,0],[-11,-4],[-8,-2],[-47,-23],[-45,-22],[-150,-72],[-32,-5],[-68,-3],[-55,7],[-34,12],[-27,10],[-58,41],[-25,20],[-14,12],[-41,49],[-48,62],[-19,31],[-18,30],[-31,65],[-13,44],[-16,48],[-15,38],[-17,36],[-21,41],[-8,12],[-9,14],[-17,28],[-44,48],[-38,32],[-41,30],[-29,20],[-21,7],[-24,8],[-49,2],[-20,-3],[-40,-7],[-44,-12],[-9,-2],[-17,-5],[-5,-2],[-41,-19],[-9,-5],[-55,-53],[-18,-25],[-20,-29],[-14,-35],[-7,-20],[-1,-24],[0,-15],[-1,-11],[0,-21],[5,-25],[9,-37],[20,-56],[13,-35],[9,-22],[30,-53],[28,-46],[25,-45],[20,-44],[6,-21],[7,-29],[6,-38],[2,-57],[-11,-101],[-9,-24],[-28,-77],[-48,-69],[-67,-80],[-17,-23],[-3,-2],[-32,-41],[-19,-26],[-35,-48],[-42,-82],[-47,-124],[-28,-72],[0,-2],[-2,-5],[-10,-24],[-14,-22],[-27,-43],[-53,-82],[-16,-16],[-17,-16],[-20,-21],[-5,-2],[-7,-3],[-8,-3],[-28,-12],[-25,-1],[-6,4],[-10,8],[-6,8],[-8,8],[-20,23],[-11,14],[-1,1],[-11,16],[-10,15],[-6,11],[-7,9],[-11,14],[-26,30],[-22,24],[-17,13],[-18,11],[-2,2],[-30,10],[-43,12],[-24,3],[-13,2],[-35,0],[-2,-2],[-12,-9],[-18,-6],[-19,-6],[-100,-122],[-25,-44],[-10,-30],[-13,-25],[-10,-18],[-19,-47],[2,-22],[12,-50],[0,-1],[0,-41],[0,-2],[-15,-22],[-23,-37],[-14,-13],[-23,-21],[-14,-12],[-17,-15],[-32,-28],[-25,-19],[-48,-23],[-37,-13],[-75,-9],[-31,-2],[-16,-1],[-17,-1],[-22,-2],[-54,5],[-61,7],[-11,2],[-22,3],[-44,6],[-53,11],[-20,4],[-68,9],[-49,3],[-23,-1],[-8,0],[-1,0],[-38,-5],[-39,-12],[-38,-12],[-21,-8],[-54,-32],[-36,-27],[-15,-19],[-37,-60],[-16,-32],[-17,-37],[-2,-7],[-15,-34],[-8,-28],[-8,-30],[-4,-60],[2,-51],[1,-21],[3,-50],[12,-52],[14,-37],[8,-21],[9,-22],[14,-34],[10,-18],[13,-23],[25,-44],[50,-75],[13,-24],[11,-23],[15,-29],[30,-87],[13,-60],[7,-55],[-2,-60],[-5,-29],[-5,-24],[-13,-22],[-30,-43],[-72,-73],[-68,-34],[-50,-16],[-117,-48],[-37,-20],[-40,-22],[-127,-132],[-47,-41],[-36,-26],[-68,-35],[-28,-14],[-51,-17],[-13,-5],[-71,-18],[-102,-24],[-1,0],[-100,4],[-20,7],[-31,10],[-27,9],[-9,3],[-17,6],[-30,27],[-19,17],[-9,8],[-22,31],[-10,14],[-4,5],[-29,90],[0,24],[8,69],[28,59],[2,4],[18,26],[28,41],[38,48],[11,19],[17,33],[22,48],[8,25],[12,69],[-2,31],[-6,22],[-20,40],[-15,20],[-20,19],[-33,26],[-32,19],[-37,13],[-31,4],[-31,2],[-20,-3],[-29,-4],[-38,-5],[-41,-3],[-46,-2],[-3,0],[-16,0],[-30,0],[-18,2],[-22,2],[-41,4],[-33,4],[-27,6],[-28,9],[-21,17],[-18,18],[-21,24],[-24,23],[-13,15],[-16,42],[-15,55],[-8,26],[-6,23],[-13,57],[-9,38],[-10,26],[-19,31],[-23,34],[-18,23],[-25,23],[-26,23],[-26,19],[-22,8],[-29,4],[-32,7],[-41,1],[-31,-6],[-28,-5]],[[34419,71397],[-15,-3],[-42,-23],[-44,-34],[-27,-27],[-19,-25],[-14,-18],[-29,-36],[-20,-30],[-12,-18],[-7,-18],[-12,-31],[-15,-50],[-16,-62],[-8,-56],[-4,-38],[-2,-24],[0,-49],[1,-62],[8,-38],[1,-6],[7,-37],[6,-57],[9,-61],[12,-53],[2,-10],[15,-60],[31,-97],[23,-96],[15,-60],[13,-80],[3,-17],[-3,-12],[-6,-23],[-4,-26],[-7,-47],[-21,-56],[-40,-61],[-42,-37],[-58,-49],[-11,-16],[-5,-6],[-7,-11],[-22,-7],[-22,-8],[-29,-10],[-84,-17],[-21,-4],[-26,-6],[-17,-3],[-10,-2],[-7,-1],[-185,-9],[-18,2],[-24,3],[-24,3],[-65,8],[-103,3],[-120,30],[-73,22],[-17,6],[-22,8],[-19,8],[-36,18],[-22,24],[-17,30],[-5,25],[-1,2],[-4,20],[-18,54],[-19,31],[-13,15],[-6,6],[-24,28],[-13,19],[-21,15],[-29,37],[-17,26],[-14,17],[-29,26],[-13,11],[-17,13],[-28,22],[-19,23],[-14,7],[-20,6],[-23,7],[-15,5],[-43,8],[-51,0],[-37,-7],[-21,-3],[-17,-3],[-4,-1],[-20,-6],[-12,-2],[-23,-4],[-19,11],[-3,3],[-10,11],[-18,-6],[-16,3],[-19,7],[-15,4],[-23,3],[-164,8],[-24,1],[-17,0],[-19,5],[-16,12],[-11,18],[-19,18],[-23,16],[-15,8],[-17,9],[-32,8],[-21,2],[-17,1],[-17,-4],[-14,-17],[-14,-14],[-17,-12],[-15,1],[-17,7],[-18,13],[-14,16],[-12,13],[-23,15],[-18,2],[-16,-2],[-18,-7],[-18,-13],[-15,-13],[-13,-15],[-8,-21],[6,-23],[12,-28],[4,-21],[-2,-26],[-8,-21],[-11,-17],[-13,-10],[-18,-8],[-15,-6],[-6,-6],[-6,-9],[-8,-26],[-37,-2],[-23,-3],[-8,-1],[-4,-1],[-41,-11],[-18,-5],[-13,-4],[-23,-6],[-19,-6],[-18,-9],[-17,-8],[-32,-17],[-42,-25],[-28,-26],[-31,-32],[-29,-37],[-29,-46],[-10,-24],[-9,-20],[-16,-43],[-10,-29],[-4,-10],[-8,-35],[-9,-31],[-24,-48],[-9,-15],[-14,-23],[-23,-28],[-24,-20],[-33,-19],[-17,-8],[-20,-10],[-17,-8],[-28,-15],[-51,-14],[-41,1],[-39,1],[-54,5],[-39,10],[-2,1],[-21,8],[-14,4],[-44,14],[-11,3],[-47,11],[-50,8],[-54,8],[-16,-1],[-19,-1],[-2,0],[-23,-1],[-46,-1],[-45,-11],[-18,-8],[-18,-5],[-44,-12],[-36,-10],[-8,-3],[-17,-4]],[[30206,69540],[0,27],[-1,12],[-2,22],[2,49],[-1,134],[-3,32],[1,47],[0,26],[-2,241],[0,22],[0,137],[-1,188],[0,301],[0,1],[0,156],[0,76],[0,81],[-1,162],[0,25],[0,202],[1,5],[0,198],[0,34],[-1,124],[1,78],[-1,106],[0,31],[0,73],[0,90],[0,80],[-1,40],[1,153],[0,33],[1,73],[0,51],[0,25],[0,25],[-1,32],[0,234],[1,313],[0,259],[0,30],[0,8],[-1,18],[0,34],[0,12],[0,34],[0,121],[0,109],[0,42],[-1,268],[1,313],[0,190],[0,133],[0,65],[0,107],[0,135],[0,57],[0,272],[0,85],[-1,210],[0,32],[-1,49],[0,38],[-3,203],[4,89],[-1,224]],[[51905,72588],[-1,-27],[-1,-38],[-1,-39],[-1,-40],[-1,-26],[-1,-49],[-1,-41],[-2,-33],[0,-44],[-5,-99],[-2,-136],[-1,-39],[0,-29],[-2,-60],[-3,-124],[-5,-171],[-1,-50],[-2,-51],[-6,-229],[-3,-107],[-2,-48],[-3,-23],[-2,-42],[-1,-27],[2,-26],[-1,-42],[-1,-9],[0,-14],[-1,-36],[-2,-98],[-4,-177],[-1,-92],[-2,-52],[-6,-54],[-3,-18],[0,-5]],[[51839,70393],[-96,8],[-25,2],[-35,-1],[-136,5],[-85,2],[-49,1],[-110,5],[-237,6],[-22,-2],[-40,1],[-20,1],[-55,1],[-63,-1],[-56,1],[-60,2],[-67,0],[-31,1],[-58,1],[-57,2],[-44,1],[-70,2],[-91,8],[-23,0],[-135,2],[-6,0],[-64,3]],[[50104,70444],[-74,27],[-85,33],[-72,27],[-43,17],[-52,20],[-73,28],[-68,26],[-58,22],[-31,12],[-22,8],[-53,21],[-58,22],[-53,20],[-9,4],[-8,3],[-63,24],[-156,60],[-70,29],[-40,15],[-16,6],[-29,11],[-55,21],[-58,22],[-57,21],[-78,30],[-26,10],[-47,18],[-60,23],[-151,57],[-7,3],[-111,42],[-93,35],[-61,23],[-43,17],[-92,34],[-79,30],[-100,38],[-75,28],[-20,8],[-24,9],[-37,14],[-27,10],[-23,9],[-17,6],[-135,51],[-54,21],[-159,60],[-15,6],[-10,4],[-73,29],[-102,38],[-217,82],[-18,7],[-51,19],[-96,36],[-59,23],[-123,46],[-49,19],[-16,6],[-142,53],[-77,29],[-7,3],[-22,7],[-26,10],[-111,42],[-64,23],[-52,20]],[[75698,69910],[-1,0],[-29,-1],[-32,0],[-2,0],[-118,0],[-20,0],[-20,0],[-86,-1],[-32,0],[-72,-2],[-34,0],[-16,0],[-49,1],[-30,0],[-25,0],[-17,0],[-27,0],[-19,1],[-57,1],[-21,1],[-23,0],[-18,0],[-17,0],[-44,0],[-48,1],[-30,0],[-22,0],[-21,0],[-23,1],[-19,0],[-20,-6],[-237,8],[-2,0],[-46,1],[-75,0],[-44,1],[-142,1],[-131,1],[-50,1],[-26,0],[-32,0],[-45,0],[-18,1],[-158,1],[-16,1],[-49,1],[-86,1],[-147,1],[-153,4],[-82,2],[-48,0],[-21,0],[-16,0],[-33,0],[-19,0],[-49,0],[-29,0],[-33,0],[-24,0],[-27,0],[-15,0],[-42,0],[-39,1],[-40,-2],[-44,0],[-36,-1],[-29,1],[-17,0],[-8,-1],[-27,-1],[-46,-1],[-96,0],[-103,-1],[-20,0],[-41,0],[-44,0],[-118,0],[-146,-3],[-18,0],[-162,-3],[-180,-2],[-68,-1],[-52,3],[-17,1],[-24,0],[-51,1],[-29,1],[-3,0],[-58,1],[-84,2],[-79,1],[-62,0],[-115,1],[-178,1],[-87,1],[-68,0],[-68,1],[-15,0],[-25,0],[-45,1],[-33,0],[-101,1],[-16,0],[-33,0],[-28,1],[-171,7],[-70,3],[-47,2],[-23,1],[-23,0],[-19,0],[-84,5],[-44,2],[-86,4],[-35,0],[-90,6],[-42,1],[-16,1],[-18,0],[-20,1],[-22,1],[-24,1],[-17,1],[-18,0],[-48,1],[-24,1],[-18,1],[-32,1],[-30,1],[-21,1],[-29,2],[-192,-3],[-23,0],[-2,0],[-26,0],[-73,1],[-81,1],[-1,-202],[-1,-108],[-1,-41],[-1,-24],[-1,-38],[-1,-60],[-1,-52],[0,-28],[-2,-69],[2,-28],[-3,-102],[-2,-43],[0,-26],[-3,-41],[-3,-23],[-1,-157],[-7,-235],[0,-18],[-3,-90],[1,-27],[-1,-54],[-1,-53],[0,-30],[-1,-41],[0,-24],[-1,-29],[0,-27],[-1,-29],[-1,-26],[0,-23],[-1,-24],[0,-36],[-1,-29],[-1,-69],[-144,-2],[-22,0],[-16,0],[-29,1],[-25,0],[-28,0],[-32,1],[-39,1],[-34,0],[-27,1],[-25,1],[-17,0],[-43,1],[-50,1],[-20,1],[-16,0],[-26,1],[-24,0],[-32,1],[-16,0],[-17,1],[-21,1],[-25,1],[-15,0],[-4,0],[-19,-2],[-16,3],[-32,2],[-25,0],[-17,2],[-18,0],[-18,0],[-16,1],[-19,0],[-26,1],[-19,0],[-33,1],[-21,1],[-21,-2],[-74,-4]],[[67632,68085],[-68,1],[-129,3],[-63,2],[-2,0],[-27,1],[-99,2],[-99,3],[-16,0],[-53,2],[-53,1],[-4,0],[-193,4],[-22,1],[-23,0],[-117,3],[-116,7],[-73,3],[-49,1],[-16,1],[-87,-1],[-54,2],[-72,7],[-9,1],[-25,-2],[-21,1],[-26,1],[-16,0],[-23,0],[-20,-3],[-135,1],[-105,7],[-17,1],[-57,2],[-26,0],[-16,2],[-19,0],[-27,1],[-18,0],[-21,0],[-33,1],[-100,2],[-43,-1],[-2,0],[-16,0],[-19,1]],[[65403,68143],[-4,36],[-4,32],[-6,55],[-5,47],[-6,54],[-11,96],[-35,303],[-8,71],[-5,47],[-8,69],[-8,69],[-5,38],[-4,38],[-15,138],[-29,252],[-3,27],[-8,65],[-9,80],[-4,39],[-5,40],[-16,138],[-16,138],[-3,33],[-10,80],[-28,256],[-11,89],[-5,52],[-16,137],[-3,26],[-4,31],[-18,156],[-15,132],[-31,265],[-6,54],[-22,192],[-6,49],[-8,66],[-20,179],[-8,66],[-9,80]],[[68864,78010],[50,-106],[38,-217],[12,-71],[9,-53],[4,-38],[17,-167],[39,-122],[196,-307],[157,-71],[247,-50],[165,-34],[66,-14],[103,-21],[52,-11],[10,-15],[46,-69],[10,-17],[64,-142],[27,-60],[117,-288],[17,-26],[115,-178],[31,-48],[101,-106],[2,-2],[3,-40],[8,-94],[4,-46],[5,-70],[6,-70],[3,-32],[3,-43],[5,-59],[44,-114],[16,-22],[31,-43],[132,-188],[5,-8],[20,-27],[53,-75],[138,-148],[82,-88],[210,-162],[141,-108],[61,-47],[49,-33],[103,-69],[30,-10],[100,-35],[80,-62],[93,-86],[50,-26],[62,-31],[113,-33],[97,-27],[138,-103],[33,-66],[43,-164],[27,-32],[37,-42],[99,-71],[127,-57],[38,-19],[19,-16],[49,-42],[46,-61],[1,-1],[38,-49],[26,-36],[4,-5],[39,-56],[111,-108],[131,-69],[160,-122],[52,-24],[6,-2],[131,-41],[90,-113],[22,-27],[16,-15],[42,-37],[46,-30],[72,-80],[36,-55],[114,-134],[61,-72],[19,-24],[45,-59],[7,-10],[46,-54],[89,-47],[81,-44],[200,-106],[65,-6],[278,-284],[80,-188],[21,-117],[98,-192],[-12,-95],[113,-121],[19,-10],[35,-18],[172,-90],[9,-10],[39,-45],[12,-14],[18,-40],[27,-62],[16,-83],[11,-92],[11,-88],[6,-15],[23,-58],[17,-92],[0,-10],[0,-33],[0,-29],[-3,-10],[-10,-23],[4,-35],[2,-18]],[[17586,74934],[0,-46],[1,-57],[1,-29],[-1,-30],[0,-37],[1,-86],[0,-197],[0,-38],[-1,-63],[0,-56],[1,-44],[0,-63],[0,-25],[0,-35],[1,-37],[0,-105],[-1,-86],[0,-31],[0,-41],[-2,-228],[0,-6],[-1,-80],[-1,-69],[0,-37],[-1,-42],[1,-131],[1,-35],[0,-23],[1,-67],[0,-15],[1,-96],[0,-35],[0,-52],[0,-47],[1,-115],[-1,-81],[0,-93],[0,-159],[0,-69],[0,-73],[-1,-55],[-1,-112],[1,-154],[2,-138],[0,-27],[0,-38],[1,-27],[0,-11],[1,-24],[0,-39],[1,-24],[1,-89],[0,-25],[1,-26],[0,-29],[0,-43],[0,-35],[0,-31],[0,-24],[0,-48],[0,-45],[0,-64],[4,-28],[-2,-75],[-7,-210],[0,-27],[-1,-54],[0,-60],[0,-38],[0,-44],[-1,-32],[0,-7],[-1,-85],[-1,-44],[0,-69],[-1,-24],[-5,-21],[6,-40],[1,-59],[1,-26],[-1,-28],[0,-26],[-1,-73],[-1,-51],[0,-41],[-1,-33],[0,-51],[0,-66],[1,-47],[-1,-31],[1,-39],[-1,-65],[1,-25],[0,-44],[0,-28],[-1,-23],[0,-25],[0,-71],[0,-44],[0,-115],[-1,-60],[0,-36],[-2,-25],[0,-23],[0,-21],[2,-23],[0,-4],[-1,-27],[0,-41],[0,-28],[0,-15],[0,-12],[-1,-74],[-1,-69],[0,-27],[-3,-130],[0,-9],[0,-16],[0,-44],[0,-14],[-1,-47],[-1,-40]],[[17573,68513],[-21,8],[-50,18],[-33,5],[-36,-4],[-66,-15],[-117,-71],[-10,-6],[-160,-50],[-14,-5],[-13,-1],[-50,-7],[-53,3],[-90,4],[-21,3],[-7,1],[-69,32],[-52,47],[-1,3],[-31,103],[14,98],[2,17],[15,43],[-4,100],[-30,58],[-22,26],[-12,12],[-11,14],[-10,14],[-21,17],[-37,22],[-72,29],[-29,6],[-36,8],[-31,3],[-26,-2],[-44,-6],[-34,-6],[-23,-10],[-25,-16],[-17,-11],[-39,-34],[-32,-31],[-29,-25],[-15,-12],[-27,-22],[-66,-53],[-20,-1],[-60,-40],[-4,-3],[-45,-29],[-98,-21],[-45,-10],[-193,6],[-63,16],[-17,7],[-10,4],[-8,3],[-8,3],[-72,28],[-41,17],[-7,3],[-18,11],[-84,78],[-50,47],[-16,15],[-14,22],[-17,29],[-33,54],[-7,17],[-32,75],[-14,32],[-8,23],[-1,4],[-15,49],[-19,68],[-18,37],[-12,37],[-13,26],[-10,17],[-12,20],[-23,27],[-19,18],[-24,26],[-24,12],[-15,7],[-16,3],[-21,1],[-26,-1],[-18,-4],[-23,-3],[-29,-11],[-25,-5],[-29,-6],[-42,-5],[-37,-2],[-35,3],[-8,1],[-45,3],[-46,9],[-40,11],[-34,11],[-36,13],[-13,6],[-10,5],[-22,14],[-20,17],[-20,17],[-19,18],[-21,20],[-48,45],[-18,19],[-9,17],[-18,25],[-10,31],[-9,31],[-3,25],[-1,29],[0,2],[6,23],[16,38],[8,18],[10,18],[17,23],[12,21],[15,32],[13,29],[11,29],[11,32],[9,35],[5,26],[5,25],[0,26],[2,23],[-5,41],[-3,27],[-6,32],[-3,22],[-5,22],[-4,22],[-1,11],[-7,17],[-1,3],[-8,23],[-8,24],[-11,23],[-7,14],[-9,17],[-3,6],[-14,26],[-16,24],[-13,19],[-10,13],[-15,20],[-17,21],[-17,21],[-18,21],[-31,32],[-26,31],[-25,25],[-27,22],[-28,21],[-17,12],[-5,4],[-24,18],[-28,22],[-30,21],[-38,24],[-17,10],[-30,16],[-6,2],[-34,19],[-27,16],[-2,2],[-44,24],[-15,7],[-27,10],[-35,15],[-23,13],[-47,24],[-33,18],[-17,16],[-12,12],[-24,19],[-3,3],[-35,45],[-28,34],[-12,13],[-29,41],[-22,30],[-12,16],[-23,34],[-25,40],[-30,48],[-12,28],[-5,12],[-15,35],[-15,41],[-9,29],[-5,14],[-4,12],[-16,49],[-11,41],[-7,33],[-15,59],[-8,51],[-1,6],[-18,145],[-4,36],[-2,52],[-2,35],[-1,8],[-1,53],[0,13],[-1,9],[-1,23],[-3,41],[-1,8],[-1,35],[-8,46],[-5,61],[-2,8],[-4,20],[0,28],[-4,50],[1,28],[5,42],[3,21],[11,36],[6,12],[9,19],[16,22],[34,40],[13,15],[24,25],[31,23],[22,9],[35,13],[33,12],[53,20],[26,14],[30,19],[33,23],[24,31],[19,35],[10,18],[3,7],[1,2],[12,36],[9,39],[9,31],[1,39],[-3,50],[-14,50],[-12,39],[-15,38],[-25,49],[-21,41],[-26,33],[-24,17],[-9,7],[-50,20],[-21,3],[-19,1],[-24,1],[-6,0],[-13,0],[-34,-6],[-25,-12],[-48,-29],[-2,-1],[-14,-9],[-56,-40],[-42,-26],[-23,-16],[-25,-18],[-27,-14],[-24,-12],[-33,-3],[-23,-3],[-58,2],[-66,4],[-24,6],[-12,2],[-22,9],[-31,13],[-15,12],[-23,18],[-35,34],[-30,45],[-26,61],[-6,27],[-2,25],[-5,63],[-1,26],[8,57],[-1,46],[-12,36],[-12,28],[-26,36],[-4,6],[-20,25],[-26,25],[-28,21],[-11,6],[-27,13],[-17,8],[-15,7],[-40,14],[-17,7],[-18,7],[-6,4],[-17,12],[-23,14],[-8,5],[-13,12],[-13,14],[-26,23],[-21,24],[-16,26],[-16,32],[-23,51],[-7,37],[-5,52],[-7,54],[-2,24],[-18,52],[-18,38],[-25,43],[-12,13],[-28,33],[-41,42],[-26,22],[-14,12],[-40,23],[-44,20],[-38,20],[-29,14],[-47,9],[-18,6],[-45,13],[-59,21],[-3,1],[-60,22],[-94,51],[-33,21],[-64,41],[-10,7],[-21,16],[-39,30],[-3,3],[-62,61],[-17,20],[-32,38],[-20,36],[-20,33],[-18,36],[-9,29],[-3,10],[-17,47],[-16,50],[-9,52],[-2,11],[0,14],[-2,38],[-3,59],[0,73],[-7,64],[-1,7],[-8,48],[-14,67],[-3,16],[-10,21],[-7,14],[-2,3],[-19,29],[-13,25],[-2,3],[-25,32],[-5,6],[-20,21],[-5,5],[-17,19],[-15,9],[-11,7],[-49,23],[-5,3],[-91,48],[-2,1],[-84,53],[-15,9],[-79,69],[-47,50],[-26,29],[-13,13],[-64,71],[-70,87],[-59,74],[-12,18],[-11,18]],[[30206,69540],[-29,-9],[-19,-9],[-48,-24],[-60,-29],[-23,-13],[-55,-32],[-55,-20],[-12,-4],[-49,-8],[-39,0],[-17,5],[-22,6],[-22,7],[-90,42],[-57,29],[-22,19],[-19,16],[-29,25],[-75,60],[-42,22],[-52,28],[-14,7],[-19,9],[-11,6],[-20,10],[-69,22],[-16,5],[-27,3],[-22,2],[-23,3],[-42,2],[-72,3],[-53,-1],[-20,-2],[-7,-1],[-13,-2],[-15,-2],[-57,-6],[-20,-7],[-5,-1],[-29,-11],[-41,-15],[-22,-9],[-27,-14],[-60,-32],[-30,-19],[-2,-2],[-15,-9],[-27,-18],[-58,-36],[-28,-19],[-8,-6],[-7,-5],[-34,-30],[-90,-105],[-88,-102],[-41,-49],[-98,-114],[-3,-3],[-29,-33],[-14,-17],[-27,-1],[-44,-22],[-2,-1],[-32,-9],[-40,-11],[-48,6],[-38,5],[-32,4],[-47,7],[-20,4],[-56,13],[-40,1],[-40,-8],[-26,-5],[-51,-36],[-19,-18],[-25,-23],[-22,-11],[-10,-21],[-2,-45],[-8,-35],[-13,-12],[-13,-12],[-10,-32],[-7,-40],[-24,-56],[-6,-22],[-6,-22],[-11,-41],[-15,-71],[-7,-36],[3,-68],[0,-3],[2,-28],[1,-8],[1,-16],[-3,-23],[-16,-20],[-12,-14],[-10,-13],[-25,-26],[-13,-13],[-69,-71],[-6,-4],[-1,-2],[-36,-29],[-88,-25],[-9,-1],[-8,-1],[-80,21],[-61,35],[-23,13],[-84,76],[-51,68],[-11,14],[7,28],[2,3],[23,36],[9,18],[7,19],[6,23],[8,19],[8,23],[7,22],[6,20],[7,21],[1,23],[6,31],[2,23],[2,24],[4,21],[10,19],[12,18],[29,11],[47,30],[17,18],[26,26],[21,23],[13,13],[13,12],[14,8],[15,11],[15,13],[17,17],[16,15],[16,11],[14,22],[13,16],[11,17],[3,27],[5,25],[1,23],[-1,27],[-4,24],[-4,22],[-6,29],[-4,22],[-7,20],[-5,22],[-6,21],[-7,24],[-9,17],[-9,19],[-8,18],[-8,18],[-14,20],[-17,21],[-13,18],[-15,8],[-11,15],[-16,5],[-15,14],[-20,8],[-15,6],[-14,8],[-14,8],[-15,8],[-15,9],[-18,0],[-18,-5],[-17,-7],[-19,-9],[-14,-9],[-15,-12],[-17,-15],[-11,-18],[-12,-12],[-17,-15],[-83,-41],[-90,-28],[-15,4],[-23,-9],[-17,-4],[-26,-9],[-52,-19],[-15,-5],[-15,-5],[-40,-14],[-24,-9],[-62,-31],[-16,-6],[-47,-15],[-55,-19],[-16,-6],[-19,-10],[-35,-27],[-17,-20],[-20,-24],[-9,-20],[-14,-44],[1,-51],[0,-48],[2,-28],[6,-35],[10,-24],[11,-17],[17,-29],[23,-39],[44,-74],[12,-26],[11,-19],[18,-42],[7,-43],[7,-51],[6,-88],[1,-11],[2,-34],[-22,-14],[-10,-8],[-8,-8],[-56,-44],[-4,-4],[-3,-2],[-40,-36],[-46,-40],[-50,-56],[-42,-48],[-14,-13],[-25,-24],[-14,-9],[-24,-18],[-22,-16],[-24,-17],[-44,-29],[-14,-9],[-13,-9],[-46,-23],[-53,-12],[-40,-3],[-41,1],[-13,-1],[-23,-2],[-40,0],[-39,3],[-45,2],[-43,7],[-47,10],[-27,8],[-11,3],[-36,16],[-38,19],[-30,18],[-41,25],[-18,14],[-42,29],[-39,28],[-21,23]],[[25017,68164],[-32,35],[-38,44],[-31,34],[-18,20],[-113,167],[-29,42],[-19,51],[-10,30],[-2,6],[-4,7],[-6,10],[-21,37],[-26,35],[-27,32],[-28,27],[-28,24],[-27,15],[-21,13],[-10,5],[-17,8],[-19,6],[-11,4],[-32,11],[-38,13],[-27,10],[-42,11],[-61,12],[-76,13],[-68,8],[-81,12],[-9,1],[-46,3],[-62,4],[-29,7],[-15,6],[-3,1],[-18,5],[-28,14],[-23,13],[-19,17],[-11,19],[-9,31],[2,17],[1,12],[11,39],[7,30],[1,3],[10,27],[15,25],[19,25],[19,23],[26,23],[25,26],[25,25],[17,25],[17,34],[21,42],[16,37],[14,28],[10,29],[-1,24],[2,26],[7,26],[3,21],[-1,23],[-16,37],[-15,14],[-30,19],[-40,7],[-25,2],[-39,0],[-17,1],[-47,0],[-23,-4],[-40,-14],[-18,-10],[-19,-11],[-30,-21],[-22,-17],[-25,-20],[-45,-35],[-23,-12],[-23,-10],[-8,-2],[-10,-3],[-17,-9],[-27,-4],[-8,-1],[-19,2],[-25,3],[-19,5],[-15,7]],[[23404,69541],[0,10],[0,20],[0,22],[1,59],[3,336],[-1,81],[0,42],[1,20],[1,4],[0,34],[0,335],[1,61],[-1,240],[1,112],[-1,51],[0,5],[-1,70],[-1,38],[0,118],[0,81],[0,154],[1,97],[0,148],[0,30],[0,30],[1,32],[0,34],[0,85],[0,40],[0,132],[1,24],[0,55],[1,54],[0,22],[0,27],[1,24],[4,48],[-1,26],[0,39],[0,20],[0,27],[0,11],[0,16],[0,46],[-1,24],[-1,100],[0,36],[0,30],[1,85],[0,28],[1,101],[0,69],[0,37],[1,164],[1,32],[0,39],[2,115],[-2,27],[0,23],[1,23],[0,23],[2,31],[1,40],[0,44],[1,22],[-1,12],[0,18],[2,113],[0,29],[1,51],[0,58],[1,140],[1,58],[1,56],[0,24],[1,49],[1,48],[0,24],[-1,69],[-1,22],[1,92],[1,116],[1,98],[0,34],[0,5],[2,192]],[[23404,69541],[-31,8],[-18,5],[-16,7],[-15,10],[-7,5],[-28,7],[-37,29],[-27,22],[-13,16],[-27,29],[-4,5],[-21,21],[-11,13],[-6,8],[-23,19],[-25,31],[-31,55],[-30,65],[-24,89],[-7,21],[-10,20],[-34,37],[-18,19],[-28,20],[-36,17],[-22,12],[-14,11],[-16,8],[-27,10],[-18,3],[-36,5],[-37,-2],[-25,-2],[-19,-5],[-35,-2],[-13,-1],[-9,-1],[-31,-1],[-42,2],[-42,4],[-11,2],[-43,7],[-31,2],[-37,2],[-40,7],[-24,3],[-31,6],[-43,-2],[-14,-8],[-24,-12],[-27,-10],[-5,-3],[-13,-8],[-37,-19],[-44,-24],[-14,-12],[-29,-23],[-14,-22],[-22,-30],[-1,-2],[-14,-23],[-3,-2],[-11,-9],[-16,-39],[-21,-40],[-2,-3],[-4,-5],[-9,-10],[-13,-12],[-11,-23],[-16,-42],[-11,-40],[-14,-38],[-7,-23],[-5,-26],[-13,-99],[-5,-38],[-5,-30],[-4,-25],[-11,-36],[-6,-25],[-17,-38],[-10,-30],[-7,-10],[-12,-18],[-20,-33],[-35,-56],[-26,-45],[-52,-73],[-18,-30],[-31,-54],[-32,-36],[-34,-40],[-12,-14],[-42,-49],[-14,-32],[-65,-47],[-32,-26],[-8,-6],[-18,-18],[-19,-23],[-12,-16],[-26,-33],[-5,-4],[-47,-45],[-45,-50],[-38,-54],[-39,-12],[-45,21],[-18,18],[-21,48],[-14,45],[-7,21],[-1,23],[-1,6],[-16,20],[-17,26],[-7,14],[-38,81],[-63,253],[-45,84],[-28,53],[-80,60],[-98,14],[-8,2],[-77,-37],[-20,-37],[-6,-32],[89,-220],[9,-28],[2,-5],[28,-97],[8,-25],[-20,-150],[-3,-13],[-2,-10],[-9,-34],[-2,-10],[-29,-24],[-20,-24],[-51,-70],[-41,-49],[-15,-25],[-45,-59],[-33,-44],[-9,-16],[-22,-37],[-16,-27],[-14,-30],[-22,-44],[-34,-49],[-69,-82],[-18,-14],[-115,-121],[-21,-21],[-97,-68],[-21,-15],[-28,-22],[-7,-6],[-69,-56],[-21,-13],[-71,-46],[-11,11],[-23,24],[-14,14],[-13,15],[-25,30],[-13,16],[-7,28],[-7,42],[-4,21],[1,23],[-8,10],[-26,34],[-34,44],[-37,48],[-58,96],[-65,87],[-1,1],[-39,31],[-43,33],[-80,42],[-37,1],[-14,3],[-3,1],[-87,5],[-23,2],[-94,-10],[-58,-13],[-65,-14],[-39,-10],[-98,-53],[-19,-2],[-43,-8],[-1,0],[-22,-20],[-16,-14],[-37,-34],[-79,-134],[-34,-58],[-98,-109],[-165,-106],[-30,-20],[-3,-1],[-162,-104],[-25,-17],[-14,-14],[-4,-2],[-11,-7],[-37,-24],[-40,-25],[-17,-10],[-11,-6],[-8,-4],[-17,-12],[-3,-2],[-3,-1],[-9,-4],[-15,-6],[-45,-20],[-22,-10],[-24,-10],[-29,-2],[-21,7],[-24,7],[-19,5],[-52,55]],[[17488,67513],[2,22],[1,22],[1,26],[0,34],[3,22],[5,24],[12,28],[11,25],[11,23],[15,26],[46,65],[37,51],[62,86],[22,30],[16,23],[18,46],[7,34],[2,17],[5,36],[4,44],[4,83],[0,22],[-7,38],[-27,68],[-18,18],[-15,14],[-14,13],[-34,18],[-31,16],[-28,11],[-25,15]],[[43827,69955],[-5,-27],[-1,-3],[-3,-26],[-4,-26],[-5,-27],[-6,-30],[-8,-41],[-9,-28],[-17,-57],[-12,-41],[-10,-33],[-9,-32],[-13,-32],[-16,-32],[-18,-43],[-11,-25],[-19,-41],[-11,-20],[-24,-36],[-21,-32],[-23,-38],[-12,-16],[-2,-2],[-12,-18],[-25,-36],[-28,-34],[-28,-33],[-16,-15],[-15,-14],[-21,-17],[-23,-19],[-2,-1],[-13,-8],[-18,-9],[-15,-8],[-4,-2],[-64,-35],[-62,-46],[-14,-9],[-24,-25],[-30,-29],[-39,-43],[-25,-37],[-24,-38],[-14,-23],[-27,-52],[-30,-61],[-7,-37],[-1,-30],[-1,-22],[-1,-30],[-1,-45],[-2,-75],[0,-81],[-3,-33],[-1,-23],[-2,-25],[-18,-68],[-34,-75],[-33,-62],[-13,-19],[-5,-7],[-13,-18],[-23,-28],[-23,-29],[-1,-1],[-3,-4],[-17,-11],[-61,-40],[-83,-33],[-24,-6],[-13,-3],[-46,-12],[-53,-13],[-43,-20],[-27,-22],[-13,-23],[-21,-16],[-5,-12],[-9,-19],[-9,-88],[-1,-27],[0,-23],[-1,-22],[-1,-50],[-3,-66],[12,-81],[33,-57],[14,-10],[11,-9],[15,-11],[31,-23],[40,-26],[20,-12],[30,-10],[40,-12],[28,-9],[43,-3],[119,3],[21,-5],[4,-2],[14,-3],[19,-5],[9,-3],[6,-1],[27,-20],[16,-12],[20,-55],[14,-95],[-4,-37],[-6,-59],[-19,-37],[-11,-21],[-21,-38],[-46,-66],[-10,-14],[-9,-10],[-31,-34],[-17,-13],[-9,-7],[-19,-14],[-14,-10],[-8,-5],[-42,-21],[-16,-8],[-37,-17],[-14,-10],[-23,-14],[-20,-26],[-5,-6],[-36,-55]],[[42549,66454],[-1,-1],[-32,-37],[-4,-4],[-21,-24],[-50,-58],[-76,-88],[-79,-92],[-41,-48],[-37,-44],[-23,-25],[-16,-19],[-113,-132],[-102,-118],[-25,-29],[-99,-115],[-21,-25],[-23,-26],[-77,-89],[-28,-33],[-18,-21],[-80,-92],[-17,-19],[-16,-23],[-100,-119],[-99,-116],[-26,-31],[-18,-21],[-91,-108],[-31,-37],[-9,-10],[-62,-73],[-99,-117],[-2,-3],[-25,-29],[-32,-37],[-110,-128],[-9,-83],[-1,-75],[-2,-86],[-1,-24],[-1,-25],[-1,-42],[-1,-41],[-1,-52],[-2,-50],[-1,-26],[-1,-32],[-1,-31],[-7,-194],[0,-53],[0,-33],[-4,-91],[0,-22]],[[40813,63503],[-99,14],[-191,25],[-23,1],[-41,0],[-36,2],[-23,1],[-19,1],[-39,2],[-41,2],[-23,1],[-24,1],[-25,2],[-17,2],[-28,2],[-16,1],[-21,2],[-15,1],[-6,0],[-70,5],[-19,2],[-29,2],[-21,1],[-16,1],[-17,0],[-25,0],[-24,-1],[-38,0],[-20,0],[-16,0],[-16,0],[-36,-2],[-35,-1],[-51,-1],[-75,4],[-46,3],[-172,9],[-216,11],[-58,0],[-16,4],[-175,-6],[-63,3],[-19,-1],[-33,2],[-104,4],[-51,2],[-223,13],[-5,1],[-64,4],[-40,2],[-125,6],[-95,5],[-15,1],[-21,1],[-16,1],[-38,2],[-16,0],[-17,0],[-16,2],[-16,1],[-68,1],[-70,1],[-30,1],[-199,12],[-15,-1],[-17,2],[-15,1],[-19,-2],[-58,2],[-134,-4],[-84,3],[-46,2],[-51,2],[-101,3],[-39,3],[-62,3],[-29,1],[-16,1],[-34,2],[-21,1],[-18,3],[-17,-1],[-17,1],[-15,2],[-17,1],[-19,0],[-25,2],[-29,1],[-18,1],[-25,2],[-19,1],[-22,3],[-15,1],[-16,1],[-16,-1],[-27,2],[-19,1],[-23,2],[-32,1],[-17,1],[-16,1],[-28,1],[-16,1],[-38,-1],[-54,3],[-176,10],[-32,2],[-68,3],[-66,4],[-57,3],[-84,4],[-146,8],[-32,1],[-90,5],[-41,2],[-20,1],[-25,1],[-15,1],[-134,7],[-13,1],[-12,0],[-77,4],[-95,5],[-117,6],[-31,2],[-39,2],[-103,5],[-207,11],[-205,10],[-22,1],[-236,14],[-17,0]],[[34132,63819],[3,63],[1,22],[1,25],[0,22],[3,54],[0,32],[2,31],[1,40],[2,37],[1,28],[1,29],[1,34],[2,56],[1,36],[1,27],[1,25],[1,27],[1,22],[1,31],[1,29],[1,29],[1,38],[2,33],[0,23],[1,23],[1,27],[1,23],[1,29],[0,13],[1,10],[0,24],[3,39],[7,184],[4,73],[2,22],[3,67],[1,13],[1,27],[9,289],[2,57],[10,179],[2,77],[6,169],[1,60],[8,243],[2,61],[4,177],[6,159],[3,69],[5,134],[1,33],[1,38],[13,264],[0,36],[1,32],[1,15],[0,7],[1,29],[0,22],[-1,13],[-1,13],[1,21],[6,107],[2,107],[1,50],[0,28],[3,83],[2,50],[1,29],[2,31],[0,24],[2,49],[2,51],[3,80],[3,67],[1,34],[1,24],[1,32],[1,29],[1,37],[1,22],[2,50],[2,23],[1,38],[4,112],[16,351],[0,7],[1,32],[3,115],[2,34],[6,99],[1,30],[7,211],[2,35],[0,26],[8,207],[6,122],[-2,18],[-1,6],[1,26],[1,33],[1,22],[1,28],[1,28],[2,36],[-8,25],[0,29],[6,21],[5,38],[2,30],[2,47],[1,28],[1,26],[1,31],[3,73],[6,117],[6,134],[14,319],[1,31],[4,105],[13,282],[1,30],[1,25]],[[65403,68143],[-154,7],[-15,3],[-17,2],[-23,1],[-37,0],[-400,13],[-109,4],[-21,0],[-16,4],[-26,1],[-16,0],[-17,2],[-18,1],[-16,0],[-18,2],[-41,0],[-193,10],[-72,4],[-156,7],[-55,1],[-26,0],[-38,1],[-38,1],[-143,3],[-92,1],[-48,1],[-75,3],[-47,0],[-15,1],[-252,5],[-22,0],[-15,0],[-31,1],[-82,6],[-16,1],[-36,1],[-67,3],[-17,0],[-15,1],[-45,1],[-59,2],[-37,1],[-18,0],[-47,2],[-56,1],[-44,1],[-64,2],[-76,3],[-15,0],[-15,1],[-16,0],[-58,2],[-25,0],[-158,6],[-21,0],[-55,2],[-1,-23],[-2,-60],[-1,-31],[-2,-52],[-1,-36],[-1,-34],[-1,-23],[-2,-60],[-2,-55],[-1,-33],[-2,-64],[-1,-23],[-1,-30],[-4,-84],[0,-28],[-1,-22],[-1,-25],[-1,-38],[-2,-48],[-2,-40],[-2,-67],[-1,-31],[-1,-40],[-1,-26],[-1,-22],[-3,-85],[0,-11],[-2,-51],[-9,-202],[-2,-87],[-3,-85],[-2,-87],[-1,-35],[-1,-23],[-1,-25],[-1,-68],[-6,-169]],[[62033,66335],[-39,1],[-16,0],[-18,1],[-23,0],[-18,1],[-25,0],[-16,0],[-34,0],[-26,0],[-30,-2],[-17,1],[-19,-1],[-15,1],[-31,1],[-26,1],[-22,0],[-28,3],[-30,-1],[-28,1],[-20,1],[-20,0],[-24,1],[-17,0],[-20,0],[-48,2],[-17,0],[-29,0],[-22,1],[-18,0],[-21,0],[-20,0],[-36,1],[-36,0],[-18,0],[-44,1],[-28,1],[-22,-1],[-35,1],[-25,0],[-15,0],[-29,1],[-36,0],[-16,0],[-32,1],[-16,2],[-16,-1],[-6,0],[-10,0],[-27,0],[-18,0],[-41,0],[-48,1],[-16,0],[-2,0],[-31,1],[-16,0],[-38,0],[-22,-1],[-73,2],[-26,0],[-47,0],[-24,0],[-28,1],[-40,1],[-22,-2],[-76,4],[-25,0],[-17,1],[-16,1],[-17,0],[-17,1],[-19,0],[-20,1],[-15,2],[-27,1],[-32,1],[-15,0],[-22,1],[-18,1],[-23,0],[-23,1],[-30,1],[-19,1],[-45,-1],[-52,0],[-94,0],[-74,-1],[-27,2],[-20,0],[-18,1],[-31,0],[-16,0],[-21,1],[-18,0],[-25,1],[-31,1],[-21,0],[-41,0],[-21,1],[-19,-2],[-50,1],[-260,6],[-56,3],[-16,0],[-22,0],[-18,1],[-34,0],[-4,0],[-79,0],[-27,0],[-43,1],[-15,0],[-26,0],[-29,0],[-29,1],[-15,0],[-32,0],[-57,1],[-80,1],[-35,1],[-15,1],[-21,0],[-25,0],[-15,-1],[-17,1],[-23,0],[-41,0],[-18,0],[-19,0],[-41,0],[-16,0],[-31,1],[-17,-1],[-9,1],[-9,0],[-24,1],[-10,-1],[-7,0],[-21,0],[-17,0],[-47,1],[-74,0],[-64,0],[-154,1],[-71,0],[-129,1],[-392,2],[-47,0],[-21,1],[-31,0],[-16,0],[-31,0],[-58,3],[-15,-3],[-16,1],[-25,0],[-25,1],[-19,0],[-21,0],[-25,1],[-34,1],[-31,0],[-20,1],[-15,0],[-31,1],[-21,0],[-38,1],[-17,0],[-32,2],[-16,-1],[-17,1],[-17,0],[-22,1],[-20,1],[-21,1],[-31,1],[-41,1],[-15,1],[-21,1],[-29,0],[-17,0],[-21,1],[-19,1],[-20,0],[-17,1],[-16,0],[-17,1],[-28,1],[-15,0],[-45,0],[-24,1],[-29,1],[-19,0],[-75,3],[-44,1],[-21,3],[-23,1],[-48,1],[-39,1],[-21,1],[-73,2],[-25,1],[-54,1],[-11,1],[-20,0],[-20,1],[-19,1],[-44,1],[-22,1],[-30,0],[-41,1],[-29,1],[-15,1],[-23,0],[-23,1],[-17,1],[-26,1],[-25,0],[-15,0],[-17,0],[-20,-1],[-15,0],[-19,0],[-16,0],[-24,0],[-55,0],[-19,0],[-33,-1],[-18,0],[-17,0],[-20,0]],[[54896,66447],[3,83],[0,56],[1,34],[1,62],[0,24],[4,157],[-1,67],[2,36],[1,42],[1,28],[0,23],[0,23],[8,229],[1,34],[3,98],[5,203],[0,23],[2,56],[1,39],[1,34],[1,40],[2,81],[6,214],[2,67],[2,69],[2,27],[3,61],[3,46],[0,3],[2,50],[4,69],[-1,78],[-1,95],[0,36],[0,1],[1,25],[0,23],[0,46],[1,61],[1,31],[1,26],[1,61],[2,71],[1,27],[1,40],[1,24],[1,39],[1,40],[0,53],[-3,52],[-1,10],[3,145],[1,54],[1,8],[1,47],[3,125],[1,42],[4,132],[1,24],[1,35],[2,67],[1,31],[1,27],[1,27],[0,22],[1,35],[1,29],[-6,36],[-20,1],[-35,1],[-17,1],[-25,1],[-15,1],[-20,1],[-21,0],[-23,1],[-19,1],[-30,1],[-17,1],[-28,1],[-38,1],[-27,2],[-16,0],[-16,1],[-29,1],[-20,0],[-26,2],[-16,0],[-33,2],[-17,0],[-26,1],[-25,1],[-15,0],[-2,0],[-15,1],[-20,1],[-18,0],[-17,1],[-18,1],[-20,0],[-32,2],[-3,0],[-45,1],[-76,3],[-28,1],[-112,4],[-19,1],[-36,2],[-18,0],[-49,2],[-23,1],[-48,2],[-31,2],[-72,2],[-62,3],[-67,2],[-21,1],[-52,3],[-24,1],[-1,0],[-49,3],[-21,1],[-36,2],[-20,1],[-19,1],[-31,1],[-17,1],[-22,1],[-29,2],[-20,4],[-5,1],[-12,2],[-66,3],[-57,3],[-10,-1],[-34,-1],[-29,1],[-33,2],[-21,1],[-16,0],[-15,1],[-29,2],[-35,1],[-30,2],[-94,4],[-29,2],[-34,1],[-41,3],[-23,1],[-70,3],[-58,3],[-19,1],[-33,2],[-26,2],[-73,4],[-18,1],[-23,1],[-28,2],[-32,1],[-59,4],[-18,1],[-32,1],[-26,2],[-40,3],[-4,0],[-17,1],[-27,1],[-40,2],[-23,1],[-18,1],[-19,1],[-23,1],[-34,0]],[[48192,64428],[-13,7],[-2,1],[-47,17],[-24,1],[-16,-2],[-2,0],[-6,2],[-39,-1],[-58,-9],[-56,-24],[-24,-8],[-66,-26],[-29,-20],[-50,-6],[-20,-2],[-24,-2],[-15,-2],[-52,0],[-54,3],[-40,4],[-47,9],[-52,9],[-44,12],[-35,11],[-34,12],[-41,15],[-43,15],[-22,7],[-17,5],[-36,11],[-40,14],[-19,7],[-62,17],[-29,4],[-28,4],[-24,4],[-85,11],[-36,6],[-15,3],[-24,4],[-35,5],[-64,5],[-37,-1],[-8,0],[-23,-1],[-25,-2],[-18,-2],[-4,0],[-14,-1],[-7,-1],[-12,-1],[-41,-3],[-82,-9],[-11,-1],[-63,-4],[-31,0],[-43,2],[-31,1],[-7,0],[-26,1],[-19,0],[-19,3],[-29,3],[-20,3],[-6,3],[-25,13],[-46,29],[-37,21],[-53,38],[-78,43],[-70,24],[-33,5],[-23,3],[-16,-2],[-9,-1],[-28,-2],[-44,-8],[-60,0],[-40,-5],[-26,-3],[-20,-4],[-31,-7],[-17,-4],[-44,-10],[-20,-6],[-28,-9],[-21,-7],[-4,-1],[-24,-8],[-39,-10],[-31,-14],[-33,-10],[-19,-13],[-8,-4],[-26,-14],[-27,-19],[-16,-11],[-15,-10],[-45,-32],[-14,-7],[-17,-8],[-42,-17],[-18,-5],[-41,-10],[-15,-3],[-56,-6],[-1,0],[-20,-2],[-21,-2],[-56,-4],[-27,3],[-43,6],[-5,1],[-28,2],[-29,8],[-47,14],[-19,7],[-17,7],[-44,17],[-32,13],[-26,9],[-17,6],[-63,22],[-100,24],[-22,1],[-13,2],[-16,1],[-17,2],[-20,1],[-24,4],[-18,4],[-17,3],[-18,3],[-53,2],[-22,2],[-47,6],[-65,11],[-73,23],[-19,7],[-27,10],[-34,18],[-39,20],[-21,12],[-22,13],[-38,30],[-24,19],[-44,41],[-33,42],[-34,68],[-14,29],[-2,5],[-21,29],[-13,15],[0,3],[0,28],[-46,29],[-280,174],[-16,8],[-54,25],[-59,29],[-60,30],[-42,61],[-47,78],[-29,49],[-11,35],[-36,112],[-9,26],[-15,60],[-15,60],[-12,47],[-32,86],[-97,186],[-16,28],[-8,22],[-10,27],[-11,27],[-32,81],[3,142]],[[50104,70444],[-26,-72],[-18,-47],[-9,-24],[-14,-41],[-12,-32],[-13,-36],[-18,-50],[-8,-21],[-37,-102],[-19,-51],[-13,-37],[-33,-92],[-14,-39],[-28,-74],[-65,-178],[-7,-21],[-35,-95],[-27,-72],[-15,-44],[-24,-64],[-8,-22],[-30,-80],[-12,-34],[-24,-66],[-38,-105],[-21,-58],[-9,-26],[-40,-110],[-16,-44],[-7,-20],[-20,-56],[-12,-32],[-34,-95],[-20,-54],[-64,-178],[-10,-29],[-10,-26],[0,-1],[-17,-47],[-20,-55],[-23,-63],[-29,-83],[-25,-72],[-16,-46],[-29,-86],[-79,-230],[-11,-31],[-21,-56],[-48,-133],[-43,-119],[-21,-57],[-38,-107],[-14,-41],[-46,-121],[-51,-136],[-50,-130],[-9,-24],[-9,-24],[-45,-117],[-18,-49],[-25,-65],[-16,-41],[-18,-47],[-29,-74],[-11,-30],[-9,-21],[-20,-51],[-9,-24],[-34,-84],[-40,-101],[-18,-44],[-19,-47],[-9,-24],[-9,-21],[-12,-30],[-20,-52],[-21,-50],[-27,-68],[-42,-106],[-113,-282],[17,-14],[-2,-8],[3,-3],[-6,-11],[-18,-32],[-1,-2],[-6,-8],[-8,-10],[13,-48],[1,-3],[1,-2],[2,-5],[1,-5],[-7,-13],[-1,-2],[-23,-44],[-5,-17],[-4,-14],[-10,-33],[-10,-21],[2,-15],[8,-9],[4,-13],[4,-28],[11,-14],[2,-3],[13,-2],[12,0],[15,7],[9,7],[9,1],[9,0],[8,-3],[12,-7],[15,-12],[-1,-8],[0,-4],[-1,-1],[-3,-3],[-12,-11],[-19,-1],[-10,-3],[-13,-4],[-20,-11],[-46,-22],[-11,-8],[-33,-26],[-18,-13],[-2,-2],[-6,-7],[0,-14],[13,-28],[13,-22],[15,-21],[31,3],[23,1],[15,7],[45,-21],[11,-44],[2,-11],[2,-10],[16,-29]],[[34132,63819],[-2,-61],[-1,-33],[-1,-35],[-2,-32],[-1,-39],[-2,-22],[-3,-69],[-1,-21]],[[34119,63507],[-17,-2],[-24,2],[-26,2],[-34,2],[-24,2],[-16,1],[-24,2],[-16,2],[-22,2],[-16,3],[-21,2],[-32,2],[-21,2],[-25,2],[-18,0],[-23,0],[-16,1],[-15,1],[-17,1],[-23,1],[-18,1],[-16,0],[-33,3],[-33,1],[-28,2],[-22,0],[-45,2],[-15,1],[-20,1],[-20,1],[-30,1],[-18,1],[-48,2],[-22,1],[-39,2],[-16,0],[-15,1],[-28,2],[-17,0],[-18,1],[-16,1],[-22,1],[-26,1],[-19,1],[-50,2],[-44,2],[-20,1],[-9,0],[-19,1],[-24,1],[-17,0],[-21,0],[-19,1],[-18,0],[-24,1],[-18,1],[-19,0],[-21,0],[-22,1],[-20,0],[-38,1],[-19,1],[-24,1],[-19,1],[-17,1],[-22,1],[-20,0],[-29,2],[-24,1],[-21,1],[-15,1],[-18,0],[-17,1],[-15,1],[-24,0],[-23,1],[-20,0],[-19,0],[-24,0],[-29,0],[-23,0],[-22,0],[-22,0],[-16,0],[-22,0],[-24,0],[-44,-1],[-25,1],[-15,1],[-20,0],[-16,1],[-22,1],[-32,1],[-17,1],[-20,1],[-18,1],[-21,0],[-25,1],[-22,1],[-27,2],[-29,1],[-19,2],[-24,1],[-19,1],[-16,1],[-18,0],[-16,1],[-31,2],[-16,1],[-19,0],[-19,1],[-17,1],[-17,1],[-19,1],[-15,0],[-29,1],[-22,2],[-25,0],[-17,1],[-15,1],[-27,1],[-56,2],[-22,1],[-17,1],[-24,1],[-34,1],[-27,1],[-15,0],[-37,1],[-23,1],[-19,0],[-16,1],[-20,0],[-26,1],[-29,0],[-53,1],[-24,1],[-26,1],[-17,1],[-24,1],[-15,1],[-16,0],[-21,0],[-27,0],[-21,1],[-24,0],[-17,1],[-16,0],[-23,1],[-29,1],[-27,2],[-26,0],[-23,0],[-38,0],[-24,1],[-18,0],[-4,1],[-20,4],[-28,1],[-18,0],[-18,1],[-20,0],[-26,0],[-27,2],[-16,0],[-24,1],[-17,1],[-15,0],[-17,0],[-16,2],[-17,0],[-15,1],[-17,1],[-36,1],[-36,2],[-23,1],[-79,0],[-133,5],[-27,1],[-24,1],[-37,2],[-18,0],[-74,3],[-26,2],[-26,1],[-16,1],[-62,4],[-59,3],[-18,1],[-16,1],[-46,2],[-41,3],[-101,6],[-16,1],[-42,2],[-91,5],[-19,1],[-103,6],[-4,-129],[-1,-33],[-12,-298],[-2,-55],[-1,-27],[-3,-86],[-62,-3],[-43,3],[-40,2],[-15,1],[-39,2],[-144,7],[-79,4],[-17,1],[-33,2],[-16,1],[-16,1],[-79,4],[-63,1],[-26,0],[-46,2],[-42,2],[-99,5],[-18,1],[-15,1],[-17,0],[-20,1],[-18,1],[-34,2],[-15,2],[-27,2],[-20,1],[-16,0],[-26,2],[-21,1],[-23,1],[-20,2],[-45,4],[-102,7],[-50,3],[-39,3],[-84,3],[-133,3],[-15,1],[-21,1],[-27,1],[-32,2],[-16,1],[-23,1],[-16,0],[-36,2],[-20,1],[-2,0],[-15,0],[-21,2],[-50,5],[-91,5],[-29,3],[-19,-3],[-23,-1],[-133,5],[-20,1],[-116,5],[-72,2],[-57,3],[-29,2],[-20,2],[-94,3],[-46,2],[-18,1],[-89,3],[-72,4],[-167,6],[-55,3],[-2,0],[-42,2],[-52,2],[-22,1],[-20,0],[-79,3],[-23,2],[-35,2],[-19,1],[-15,1],[-19,1],[-16,1],[-18,1],[-26,1],[-23,1],[-18,1],[-37,1],[-28,2],[-17,1],[-17,1],[-18,1],[-18,1],[-38,3],[-91,4],[-108,4],[-20,1],[-23,1],[-16,1],[-56,3],[-141,6],[-60,-6]],[[24877,63266],[0,27],[-2,216],[8,211],[2,37],[1,36],[2,46],[1,28],[1,30],[4,123],[0,29],[1,155],[5,36],[4,84],[4,121],[4,92],[5,131],[2,35],[5,38],[5,54],[1,75],[-1,46],[0,38],[0,24],[2,45],[2,74],[2,58],[0,35],[1,39],[1,47],[0,5],[2,77],[0,23],[5,47],[2,28],[-1,68],[1,116],[2,79],[1,49],[2,45],[1,65],[2,60],[3,90],[0,6],[2,127],[2,30],[2,54],[1,54],[1,28],[2,50],[0,29],[3,85],[8,214],[4,156],[6,179],[2,68],[0,25],[8,271],[2,84],[0,107],[2,82],[3,111],[0,10],[1,12],[4,60],[1,33],[0,8],[0,32],[0,27],[4,129],[0,9],[1,39],[1,17]],[[54896,66447],[-48,0],[-16,1],[-18,1],[-18,0],[-25,0],[-35,0],[-20,1],[-17,0],[-19,1],[-20,1],[-39,1],[-18,0],[-14,-4],[-5,-2],[5,-9],[5,-8],[12,-13],[-3,-21],[-4,-22],[-15,-8],[-12,-13],[-3,-22],[6,-24],[5,-25],[8,-31],[-3,-22],[0,-22],[-4,-21],[-9,-13],[0,-4],[1,-2],[1,-4],[6,-6],[6,-6],[14,-11],[7,-12],[3,-9],[-1,-3],[-14,-51],[-9,-30],[-51,-171],[-1,-6],[-18,-26],[-2,-4],[0,-26],[0,-33],[-1,-3],[-4,-9],[-4,0],[-28,-14],[-34,-30],[-5,-7],[0,-7],[10,-28],[7,-21],[22,-63],[4,-4],[33,-27],[9,-7],[15,-7],[49,-12],[-27,-50],[-1,-4],[-6,-12],[-4,-9],[-3,-22],[0,-7],[6,-23],[0,-2],[9,-21],[0,-4],[-8,-73],[-40,-57],[-35,-64],[-21,-58],[15,-17],[2,-2],[21,-19],[4,-3],[2,-26],[-23,-67],[1,-5],[7,-29],[5,-27],[5,-35],[0,-12],[0,-3],[-24,-92],[-9,-30],[-9,-29],[-15,-50],[-7,-18],[-10,-27],[-3,-3],[-2,-1],[-21,-9],[-5,5],[-1,11],[2,7],[7,10],[0,6],[-3,4],[-2,0],[-4,0],[-11,-6],[-18,-11],[-2,-2],[-13,-54],[-1,-13],[1,-12],[24,-142],[22,-88],[-8,-13],[-31,-50],[-33,-52],[0,-9],[2,-9],[10,-32],[2,-1],[4,-3],[11,-2],[1,-2],[1,-7],[-10,-24],[-6,-15],[-12,-28],[-1,-1],[-6,-9],[-4,-3],[-9,-9],[-4,-3],[-5,-7],[-1,-2],[-3,-6],[0,-2],[-39,-199],[-1,-17],[5,-15],[6,-10],[9,-13],[-2,-6],[-16,-61],[-2,-8],[-1,-3],[-9,-81],[0,-9],[2,-9],[3,-7],[7,-13],[11,-24],[3,-6],[-1,-6],[-23,-65],[-4,-31],[0,-21],[0,-6],[-21,-23],[-1,1],[-18,16],[-6,6],[-16,9],[-11,5],[-7,0],[-6,0],[-8,-3],[-3,-4],[0,-7],[65,-138],[4,-6],[11,-2],[10,-2],[4,-5],[0,-4],[0,-2],[0,-10],[-1,-19],[-4,-20],[-6,-24],[-23,-50],[-17,-21],[-31,-31],[-15,-15],[-7,-5],[-9,-6],[-2,-3],[-14,-17],[-8,-16],[-6,-18],[-8,-47],[-1,-2],[-42,-76],[-19,-49],[-1,-6],[-3,-13],[2,-12],[5,-6],[9,-1],[8,3],[24,15],[8,5],[9,2],[9,1],[10,-5],[14,-6],[12,-5],[4,-5],[3,-7],[1,-7],[1,-2],[49,-56],[3,-3],[-1,-2],[-18,-73],[1,-15],[3,-10],[29,-63],[2,-2],[13,-17],[3,-3],[8,-3],[3,0],[8,0],[20,8],[37,17],[21,6],[11,0],[3,-3],[2,-60],[1,-11],[0,-10],[-1,-6],[-2,-8],[-2,-10],[-2,-3],[-7,-7],[-2,-2],[-8,-5],[-5,0],[-6,-1],[-29,11],[-6,3],[-17,4],[-20,6],[-8,0],[-3,-3],[-2,-2],[-9,-21],[-8,-38],[-20,-53],[-2,-5],[-2,-5],[-10,-34],[-2,-5],[0,-11],[2,-19],[2,-4],[3,-6],[6,-13],[0,-10],[1,-6],[-5,-16],[-3,-6],[-39,-45],[-11,-13],[-5,-12],[0,-9],[4,-4],[4,0],[1,-1],[22,-5],[34,-8],[7,1],[8,1],[14,6],[5,2],[3,2],[17,9],[15,15],[14,16],[8,10],[9,5],[9,0],[25,-29],[5,-15],[16,-72],[5,-67],[1,-36],[-6,-19],[-14,-14],[-14,-4],[-3,0],[-15,0],[-17,0],[-17,-3],[-9,-5],[-6,-7],[1,-34],[3,-4],[13,-20],[11,-9],[26,-12],[10,-2],[3,1],[4,2],[2,1],[6,7],[5,6],[11,25],[5,11],[7,9],[8,4],[10,0],[7,-3],[3,-6],[2,-3],[2,-14],[-1,-16],[-11,-71],[-3,-10],[-35,-66],[-3,-7],[8,0],[12,0],[97,2],[6,0],[0,-20],[-11,-32],[-7,-20],[-3,-8],[-4,-7],[-9,-7],[-15,-8],[-30,-17],[-13,-2],[-1,0],[-15,6],[-5,0],[-6,1],[-17,-6],[-10,-7],[-6,-8],[-7,-14],[-1,-14],[2,-9],[11,-21],[2,-2],[6,-6],[5,-4],[14,-12],[23,-20],[3,-3],[17,-25],[0,-3],[0,-4],[-2,-5],[-4,-10],[-24,-29],[-3,-4],[-5,-6],[-20,-14],[-2,-1],[-12,-4],[-7,-2],[-12,-5],[-11,-5],[-6,-6],[-5,-7],[-1,-6],[0,-18],[1,-7],[4,-19],[8,-23],[13,-19],[2,-3],[5,-4],[7,-4],[5,-4],[3,0],[15,-2],[9,-1],[16,2],[4,1],[33,-7],[15,-7],[5,-8],[3,-4],[4,-10],[1,-3],[0,-5],[0,-26],[0,-4],[-4,-19],[-3,-6],[-1,-1],[-34,-71],[0,-10],[1,-3],[4,-2],[1,0],[13,0],[1,0],[1,0],[6,3],[16,8],[14,9],[12,15],[15,9],[15,11],[2,0],[14,2],[13,-10],[15,-15],[10,-17],[5,-23],[-3,-19],[-1,-5],[-4,-7],[-5,-8],[-3,-4],[-8,-7],[-3,-3],[-4,-4],[-3,-1],[-14,-3],[-14,10],[-2,1],[-15,7],[-18,10],[-4,0],[-13,-1],[-8,-18],[2,-15],[1,-7],[6,-20],[5,-16],[2,-6],[2,-10],[2,-12],[-9,-18],[-16,-16],[-2,-2],[-11,-7],[-15,-2],[-7,1],[-13,0],[-19,7],[-7,2],[-13,4],[-2,0],[-14,-14],[-7,-22],[7,-23],[6,-18],[10,-26],[17,-28],[18,-22],[6,-7],[18,-21],[7,-7],[3,-4],[3,-8],[0,-2],[0,-8],[0,-4],[-2,-10],[-9,-8],[-9,-1],[-4,0],[-4,0],[-12,3],[-4,2],[-17,7],[-17,11],[-11,12],[-9,16],[-8,26],[-1,1],[-4,29],[0,34],[2,6],[0,4],[0,8],[-3,6],[-4,3],[-2,2],[-13,4],[-1,0],[-6,1],[-18,-4],[-12,-7],[-36,-34],[-1,-2],[-17,-27],[0,-12],[2,-7],[27,-42],[11,-18],[7,-10],[8,-18],[2,-13],[1,-35],[0,-1],[-3,-9],[-4,-9],[-1,-1],[-3,-4],[-55,-86],[-2,-4],[-56,-94],[-4,-6],[-8,-14],[-2,-11],[-1,-4],[2,-5],[5,-8],[10,-8],[4,-4],[1,-1],[1,-7],[-9,-22],[-2,-5],[-3,-5],[-1,-3],[-6,-7],[-39,-30],[-3,-2],[-4,-9],[0,-5],[0,-6],[2,-4],[7,-4],[3,-1],[32,-8],[9,0],[15,5],[9,2],[1,0],[2,-2],[2,-2],[7,-29],[1,-12],[0,-2],[1,-32],[2,-30],[0,-2],[-1,-5],[0,-2],[-16,-98],[-2,-15],[-2,-9],[-9,-1],[-15,-2],[-8,-1],[-25,-2],[-9,-1],[-18,-1],[-8,4],[-11,11],[-4,2],[-7,3],[-6,-3],[-5,-8],[-1,-3],[-36,-82],[-4,-11],[1,-15],[0,-7],[0,-9],[-24,-97],[-1,-2],[-3,-6],[-7,-9],[-38,-16],[-10,-1],[-13,0],[-8,-5],[-10,-10],[-5,-19],[0,-14],[3,-16],[1,-2],[0,-11],[0,-9],[-3,-7],[-10,-11],[-17,-9],[-15,0],[-11,2],[-3,0],[-1,0],[-4,-4],[-3,-7],[0,-3],[0,-13],[0,-12],[1,-9],[4,-8],[5,-9],[30,-34],[25,-17],[-1,-3],[-9,-91],[-8,-9],[-29,-35],[-6,-5],[-11,-4],[-15,0],[-40,9],[-10,3],[-34,9],[-3,0],[-9,-2],[-12,-6],[-15,-33],[-1,-7],[-1,-2],[3,-26],[1,-10],[17,-62],[4,-14],[20,-67],[-4,-8],[-2,-4],[-12,-17],[-24,-26],[-6,-5],[-90,-52],[-29,-10],[-7,-1],[-7,-1],[-23,-3],[-7,-1],[-7,-1],[-37,-1],[-35,0],[0,-2],[-10,-31],[-13,-28],[-4,-7],[-5,-3],[-4,-2],[-5,-7],[-1,-1],[-13,-25],[-1,-2],[-4,-8],[-11,-23],[-4,-12],[-1,-4],[1,-2],[31,-94],[4,-19],[2,-24],[-5,-26],[-1,-6],[-15,-58],[-3,-1],[-15,-5],[-11,-3],[-37,-10],[-18,-8],[-3,-2],[-37,-20],[-3,-2],[-9,-7],[-8,-11],[-7,-18],[-1,-13],[0,-2],[1,-2],[3,-12],[30,-71],[13,-28],[0,-1],[8,-19],[14,-31],[25,-21],[17,-6],[1,-42],[-6,-205],[-5,-123],[-1,-39],[-5,-94],[-10,-169],[0,-2],[0,-23],[-1,-47],[-5,-201],[0,-8],[-1,-38]],[[53244,57330],[-51,30],[-16,9],[-41,10],[-47,2],[-70,-9],[-31,-7],[-67,-10],[-35,-4],[-1,-1],[-16,-2],[-4,0],[-61,3],[-8,1],[-75,11],[-62,23],[-28,24],[-41,29],[-17,12],[-53,66],[-42,63],[-68,82],[-12,14],[-46,40],[-40,34],[-27,15],[-37,22],[-48,27],[-31,17],[-8,9],[-5,-2],[-44,10],[-49,14],[-60,17],[-80,18],[-12,2],[-81,14],[-104,22],[-18,6],[-1,2],[-4,4],[-8,-2],[-8,-3],[-23,4],[-145,32],[-42,11],[-113,36],[-57,26],[-36,10],[-46,25],[-26,28],[-32,33],[-6,3],[-12,6],[-27,36],[-12,44],[1,18],[5,66],[17,31],[9,34],[2,9],[17,29],[38,38],[56,56],[33,34],[11,2],[21,5],[43,45],[17,28],[25,39],[16,32],[0,69],[-5,43],[0,2],[-1,8],[-13,61],[-13,22],[-34,58],[-35,51],[-16,19],[-32,38],[-1,6],[-3,21],[-20,24],[-15,9],[-74,67],[-48,36],[-4,2],[-14,11],[-39,13],[-72,18],[-108,20],[-32,6],[-50,14],[-35,19],[-22,9],[-43,17],[-5,0],[-28,22],[-25,21]],[[50634,59408],[-20,21],[-19,9],[-38,38],[-20,27],[-31,76],[-34,71],[-11,37],[-1,2],[-6,18],[-35,105],[-8,45],[7,78],[5,64],[11,92],[53,80],[2,2],[36,25],[85,55],[87,86],[49,68],[36,68],[29,62],[17,37],[18,73],[9,33],[5,87],[-3,22],[-14,77],[-14,39],[1,35],[0,2],[-4,30],[-5,14],[-7,8],[-28,31],[-7,21],[-13,18],[-66,61],[-75,20],[-50,2],[-68,-5],[-8,-6],[-57,5],[-29,-4],[-42,1],[-90,1],[-1,1],[-1,0],[-62,27],[-17,8],[-21,12],[-6,8],[-9,10],[-8,3],[-10,4],[-11,12],[-69,78],[-92,138],[-61,71],[-15,21],[-6,9],[-31,47],[-11,36],[-11,38],[-21,96],[-9,42],[0,1],[-1,4],[-1,3],[-2,3],[-1,3],[-35,78],[-11,24],[-2,3],[-2,3],[-56,92],[-1,1],[-61,92],[-3,2],[-1,3],[-23,25],[-6,6],[-1,2],[-4,4],[-32,32],[-50,49],[-14,14],[-52,58],[-40,44],[-28,29],[-18,82],[-2,8],[2,4],[1,2],[0,56],[1,51],[42,158],[10,12],[14,16],[9,31],[6,87],[-5,21],[-2,8],[-30,48],[-17,41],[-24,54],[-69,84],[-4,6],[-61,57],[-63,69],[-30,39],[-42,38],[-17,22]],[[49083,63369],[-27,44],[-15,15],[-12,15],[-16,21],[-2,3],[-3,7],[-9,15],[-11,18],[-64,98],[-36,42],[-10,12],[-33,39],[-53,60],[-17,19],[-65,48],[-63,47],[-8,6],[-58,57],[-53,47],[-36,45],[-30,38],[-24,37],[-30,50],[-23,33],[-12,17],[-39,57],[-12,17],[-21,29],[-36,47],[-73,76]],[[24877,63266],[7,-42],[-1,-28],[-1,-35],[-2,-95],[-2,-40],[-2,-42],[-1,-42],[-4,-109],[-4,-114],[-5,-130],[-5,-130],[-3,-77],[-1,-36],[-2,-59],[-1,-24],[-8,-29],[0,-3],[-2,-68],[-2,-82],[-3,-89],[-3,-106],[-5,-29],[-3,-22],[0,-22],[-2,-44],[-1,-28],[-1,-30],[-2,-40],[-2,-47],[-1,-22],[-1,-22],[-1,-25],[-1,-30],[-2,-27],[0,-30],[-7,-24]],[[24803,61444],[-25,-4],[-71,3],[-40,6],[-9,0],[-26,1],[-44,2],[-60,-5],[-32,2],[-97,4],[-150,5],[-17,10],[-19,0],[-104,-5],[-117,3],[-27,1],[-27,2],[-82,6],[-47,3],[-27,0],[-40,1],[-51,0],[-106,-14],[-16,-1],[-7,0],[-21,0],[-108,0],[-17,2],[-71,9],[-16,2],[-32,4],[-97,11],[-58,-1],[-27,2],[-37,0],[-141,1],[-82,-2],[-133,1],[-26,1],[-45,1],[-78,-1],[-169,2],[-125,2],[-144,6],[-28,3],[-107,5],[-151,6],[-17,1],[-20,1],[-79,5],[-6,0],[-41,0],[-25,1],[-98,4],[-123,1],[-68,0],[-147,6],[-61,3],[-29,1],[-43,2],[-33,1],[-17,1],[-88,4],[-2,0],[-35,2],[-34,2],[-47,1],[-19,1],[-16,1],[-27,1],[-17,2],[-47,5],[-17,0],[-22,-1],[-21,0],[-47,3],[-77,3],[-199,8],[-52,1],[-52,2],[-45,2],[-44,1],[-81,2],[-30,3],[-44,2],[-72,4],[-35,2],[-102,5],[-63,4],[-76,2],[-60,5],[-16,0],[-169,10],[-20,1],[-118,6],[-16,0],[-17,0],[-110,7],[-57,4],[-30,2],[-22,2],[-22,-4],[-35,9],[-28,-1],[-19,1],[-16,1],[-17,1],[-19,2],[-21,1],[-16,2],[-30,3],[-25,0],[-23,2],[-23,1],[-20,4],[-17,4],[-12,1],[-7,1],[-20,1],[-20,1],[-33,3],[-43,2],[-19,0],[-30,-1],[-16,1],[-15,1],[-21,1],[-24,3],[-27,1],[-8,1],[-30,2],[-15,1],[-30,2],[-16,2],[-47,5],[-31,1],[-34,1],[-3,0],[-15,1],[-21,4],[-16,1],[-24,2],[-29,2],[-77,5],[-123,9],[-33,2],[-24,1],[-110,7],[-47,3],[-138,9],[-29,2]],[[17478,61748],[0,66],[0,3],[0,60],[0,17],[0,23],[0,30],[0,67],[0,26],[0,6],[0,23],[1,97],[-1,29],[0,4],[0,37],[0,61],[0,48],[0,28],[1,61],[0,28],[0,49],[0,28],[0,2],[0,61],[0,93],[0,54],[0,27],[0,48],[0,38],[0,30],[0,23],[0,32],[0,24],[0,42],[0,23],[0,29],[0,36],[0,29],[0,27],[0,26],[0,124],[0,23],[0,25],[0,42],[0,22],[0,38],[-1,35],[0,38],[0,36],[0,28],[0,30],[1,28],[0,26],[1,13],[1,10],[-6,23],[0,21],[0,8],[1,6],[1,20],[-1,44],[0,23],[0,59],[0,54],[1,57],[-1,34],[1,36],[0,33],[0,32],[0,37],[0,32],[0,51],[0,27],[0,32],[-1,23],[0,34],[0,41],[0,42],[-1,25],[-1,23],[-1,50],[-1,28],[0,28],[2,42],[2,44],[1,35],[2,47],[0,29],[0,39],[0,39],[1,22],[0,27],[0,30],[0,25],[0,31],[1,24],[0,22],[0,23],[0,31],[0,34],[0,29],[1,31],[0,76],[0,29],[0,27],[0,27],[1,33],[0,22],[0,33],[1,44],[0,46],[0,30],[1,27],[0,48],[1,54],[0,3],[0,24],[0,38],[0,15],[1,29],[-1,25],[1,23],[0,37],[0,24],[1,22],[0,24],[0,23],[0,51],[1,41],[0,26],[0,35],[0,44],[0,26],[0,22],[0,52],[0,24],[0,36],[0,36],[1,32],[-1,23],[1,34],[-1,26],[0,47],[1,22],[-1,36],[0,2],[1,34],[-1,24],[0,17],[0,8],[0,31],[0,40],[1,62],[0,20],[0,8],[0,52],[0,29],[0,42],[0,6],[0,33],[1,126],[0,31],[1,16],[0,21],[0,11],[0,26],[-1,56],[0,24],[-1,24],[0,6],[0,18],[-1,24],[0,5],[0,17],[0,28],[0,17],[0,9],[-1,22]],[[75698,69910],[18,-57],[53,-164],[0,-2],[11,-26],[-3,-49],[-4,-56],[-10,-158],[-1,-8],[-4,-64],[33,-167],[21,-103],[7,-76],[54,-230],[5,-314],[-20,-147],[78,-125],[46,-97],[31,-65],[20,-43],[77,-141],[27,-33],[20,-25],[13,-12],[37,-46],[16,-39],[6,-17],[5,-39],[7,-49],[31,-217],[27,-262],[9,-80],[-12,-47],[-122,-145],[-18,-18],[-29,-32],[-50,-54],[-45,-73],[-1,-3],[-25,-82],[-8,-36],[-11,-44],[-7,-31],[11,-144],[17,-91],[-21,-193],[-38,-128],[210,-520],[16,-40],[28,-68],[2,-12],[6,-63],[1,-18],[10,-17],[38,-68],[6,-14],[50,-85],[16,-28],[10,-38],[12,-50],[19,-149],[10,-44],[1,-32],[-9,-136],[1,-84],[4,-17],[24,-104],[3,-41],[4,-95],[50,-138],[21,-72],[6,-20],[8,-26],[11,-75],[9,-48],[9,-50],[16,-95]],[[76541,63631],[-3,0],[-58,0],[-1,0],[-77,-2],[-174,-2],[-2,0],[-12,2],[-8,0],[-15,2],[-25,1],[-28,-1],[-23,-7],[-19,-9],[-13,-9],[-11,-10],[-8,-7],[-1,-4],[-3,-9],[-4,-9],[-2,-14],[0,-7],[0,-4],[0,-6],[3,-14],[5,-15],[4,-6],[5,-7],[3,-4],[4,-2],[28,-22],[3,-3],[15,-8],[2,-1],[5,-3],[2,-2],[16,-10],[18,-16],[8,-10],[10,-13],[6,-11],[46,-100],[2,-6],[-13,-43],[0,-1],[-114,-12],[-15,0],[-4,0],[-5,1],[-7,3],[-10,6],[-12,14],[-4,5],[-3,5],[-11,22],[-7,11],[-17,22],[-13,13],[-19,15],[-22,9],[-6,1],[-14,2],[-15,1],[-16,-3],[-5,-1],[-10,-3],[-14,-9],[-74,-57],[-11,-10],[-13,-13],[-7,-12],[-6,-9],[-2,-4],[-3,-9],[-6,-16],[0,-7],[0,-5],[2,-6],[2,-6],[9,-15],[11,-11],[9,-4],[5,-2],[11,-1],[12,0],[1,0],[13,4],[9,5],[10,8],[16,11],[1,1],[2,0],[21,7],[14,-2],[19,-6],[28,-12],[26,-21],[13,-13],[1,-1],[15,-21],[6,-9],[7,-12],[5,-9],[3,-6],[1,-14],[0,-7],[0,-5],[-2,-3],[-8,-9],[-9,-8],[-82,-69],[-48,26],[0,4],[0,19],[0,3],[-1,12],[-1,11],[-2,4],[-1,3],[-5,12],[-9,15],[-13,14],[-9,6],[-24,12],[-18,7],[-16,6],[-23,-1],[-8,-4],[-2,0],[-8,-4],[-16,-11],[-13,-12],[-11,-4],[-45,20],[0,7],[2,11],[5,9],[11,19],[3,7],[1,8],[0,21],[-2,8],[-6,13],[-9,11],[-14,8],[-15,-1],[-21,-8],[-20,-8],[-28,-10],[-21,1],[-14,1],[-4,1],[-2,0],[-7,4],[-3,1],[-7,7],[-4,4],[-6,7],[-6,15],[-2,6],[-2,12],[0,4],[0,18],[0,4],[2,9],[1,3],[5,13],[5,6],[3,3],[5,4],[1,1],[17,9],[1,1],[14,5],[6,3],[3,1],[20,6],[27,16],[23,15],[23,21],[14,17],[3,4],[3,4],[3,8],[1,17],[-3,17],[-7,24],[-4,9],[-7,10],[-13,15],[-23,22],[-26,18],[-23,2],[-32,2],[-12,1],[-12,-1],[-89,-8],[-3,0],[-1,0],[-32,-9],[-8,-2],[-72,-21],[-43,-12],[16,-111],[-51,-51],[-15,-13],[-28,-15],[-20,-6],[-14,-2],[-5,0],[-5,1],[-2,0],[-10,3],[-1,0],[-18,7],[-4,2],[-6,4],[-10,6],[-12,7],[-31,16],[-8,4],[-18,8],[-29,6],[-46,9],[-26,1],[-12,0],[-23,-1],[-40,-27],[-3,-1],[0,-3],[0,-2],[-22,-42],[-6,-6],[-5,-5],[-15,-10],[-17,-8],[-8,-1],[-8,-1],[-31,6],[-23,0],[-17,-1],[-1,0],[-20,-4],[-15,-8],[-21,-14],[-159,-117],[-5,-7],[-3,-5],[0,-5],[3,-4],[17,-27],[4,-7],[7,-4],[28,-22],[20,-20],[14,-21],[5,-13],[3,-11],[1,-14],[-5,-25],[-1,-4],[-1,-3],[-4,-14],[-6,-7],[-6,-7],[-15,-7],[-9,-2],[-3,-1],[-22,9],[-25,6],[-9,0],[-7,1],[-3,-2],[-12,-3],[-9,-6],[-11,-9],[-4,-6],[-2,-3],[-1,-2],[-3,-7],[-2,-8],[0,-8],[1,-6],[0,-6],[3,-16],[14,-61],[-1,-16],[-3,-10],[-25,-64],[-16,-45],[-3,-19],[0,-54],[3,-18],[14,-36],[4,-9],[14,-22],[3,-3],[3,-4],[11,-16],[5,-10],[1,-4],[1,-8],[1,-9],[-1,-8],[-2,-5],[-1,-2],[-3,-8],[-7,-7],[-5,-4],[-10,-4],[-8,1],[-12,6],[-24,21],[-3,3],[-2,0],[-8,2],[-13,1],[-1,0],[-4,-2],[-7,-3],[-17,-12],[-7,-8],[-16,-25],[-1,-1],[-1,-1],[-5,-4],[-3,-3],[-11,-8],[-10,-4],[-23,-2],[-13,2],[-23,7],[-37,31],[-19,17],[-10,8],[-53,-17],[-10,4],[-13,14],[-5,12],[-4,19],[-8,15],[-4,7],[-15,27],[-7,12],[-6,9],[0,1],[-3,3],[-6,6],[-5,2],[-3,2],[-3,0],[-9,0],[-7,-2],[-6,-6],[-3,-5],[0,-13],[2,-5],[1,-3],[0,-2],[1,-4],[-2,-10],[-4,-5],[-13,-1],[-28,6],[-6,3],[-6,3],[-54,24],[-22,10],[-5,1],[-8,2],[-1,1],[-97,1],[-79,-41],[-2,-1],[-1,0],[-5,0],[-8,4],[-6,8],[-1,10],[-3,39],[-1,11],[-3,6],[-18,33],[-9,10],[-1,1],[-9,5],[-3,1],[-38,8],[-55,12],[-1,0],[-6,0],[-54,-8],[-3,-1],[-6,-1],[-113,-17],[-6,-1],[-69,-16],[-42,-4],[-19,-2],[-3,1],[-6,1],[-30,18],[0,-15],[-3,-5],[-6,-1],[-23,-3],[-1,0],[-6,-1],[-5,0],[-32,5],[-4,3],[-10,10],[-1,10],[0,8],[-2,8],[-8,16],[-12,15],[-13,10],[-25,11],[-7,2],[-39,4],[-11,0],[-2,0],[-10,-2],[-14,-2],[-12,-1],[-19,0],[-2,0],[-4,-2],[-5,-2],[-46,-40],[-45,-11],[-43,-11],[-11,1],[-45,4],[-4,0],[-14,-24],[-65,-4],[-4,-1],[-22,-12],[-4,-2],[-25,4],[-74,12],[-6,1],[-4,2],[-3,1],[-4,2],[-14,18],[-6,7],[-31,40],[-7,11],[-2,18],[-4,8],[-32,37],[-5,3],[-13,0],[-77,-2],[-6,-5],[-14,13],[-13,11],[-2,1],[-3,-1],[-13,-5],[-10,-16],[-3,-97],[-1,-22],[-1,-30],[0,-35],[-2,-40],[-3,-101],[-3,-82],[-2,-77]],[[72152,62260],[-73,3],[-118,4],[-29,1],[-39,1],[-33,1],[-174,6],[-19,1],[-31,1],[-107,6],[-57,1],[-46,0],[-33,0],[-96,1],[-101,1],[-38,1],[-29,0],[-54,1],[-69,2],[-67,1],[-37,1],[-30,1],[-134,2],[-61,2],[-29,0],[-74,2],[-20,0],[-108,1],[-20,0],[-26,0],[-24,-1],[-94,-3],[-50,-2],[-35,-2],[-26,0],[-107,1],[-94,3],[-106,7],[-1,47],[0,108],[3,103],[2,172],[0,56],[1,48],[0,6],[1,55],[1,54],[2,84],[1,47],[0,25],[1,42],[1,117],[0,46],[2,113],[-1,30],[3,125],[-185,3],[-53,-1],[-32,2],[-13,0],[-8,0],[-44,-1],[-45,-1],[-31,0],[-96,-1],[-166,-3],[-50,3],[-65,0],[-15,0],[-79,1],[-67,1],[-18,0],[-38,1],[-33,0],[-57,1],[-32,0],[-59,0],[1,45],[0,103],[0,30],[1,65],[0,96],[1,37],[0,37],[0,28],[0,22],[0,30],[1,25],[0,60],[0,23],[1,52],[4,191],[-1,26],[1,25],[1,43],[0,34],[1,48],[1,130],[2,119],[1,30],[-25,1],[-31,0],[-18,0],[-21,-1],[-33,1],[-18,0],[-16,0],[-9,0],[-7,0],[-16,-2],[-60,1],[-65,2],[-71,1],[-31,1],[-46,1],[-101,1],[-92,2],[-51,1],[-70,2],[-145,1],[-166,1],[-45,1]],[[67572,64900],[1,83],[1,75],[5,163],[4,162],[0,2],[1,75],[1,80],[4,143],[0,91],[0,84],[2,63],[2,282],[1,58],[2,134],[1,64],[1,65],[0,53],[10,321],[2,108],[0,32],[1,37],[1,71],[1,31],[1,41],[1,36],[1,34],[3,110],[1,40],[0,36],[2,74],[2,80],[1,40],[1,47],[0,28],[1,54],[3,167],[2,121]],[[67572,64900],[-2,-71],[-1,-101],[-1,-70],[-2,-94],[0,-38],[-2,-98],[-3,-159],[18,0],[1,-71],[1,-41],[0,-43],[-1,-31],[0,-26],[0,-35],[-1,-23],[-5,-280],[-2,-106],[-2,-55],[-1,-63],[-3,-162],[0,-39],[-3,-277],[-1,-96],[-2,-97],[0,-31],[0,-28],[-1,-42],[0,-57],[-1,-40],[0,-61],[0,-31],[-1,-27],[0,-55],[0,-110],[0,-37],[1,-26],[0,-21],[-3,-22],[5,-509],[0,-2],[2,-20],[0,-30],[-69,-2],[-67,-2],[-33,-1],[-35,-1],[-73,-2],[-51,4],[-17,1],[-43,3],[-26,2],[-69,4],[-17,2],[-54,2],[0,34],[-57,-4],[-17,-2],[-63,-4],[-41,-2],[-20,-2],[-27,-1],[-56,-3],[-88,-4],[-26,-1],[-38,-1],[-25,-1],[-79,-3],[-16,-1],[-16,0],[-69,0],[-79,-1],[-18,0],[-66,0],[-93,0],[-49,1],[-33,0],[-128,6],[-107,2],[-69,1],[-24,1],[-110,2],[-62,1],[-72,0],[-63,2],[-96,2],[-3,-76],[-1,-38],[-2,-45],[-2,-71],[-2,-47],[-1,-35],[0,-23],[0,-28],[1,-46],[2,-50],[-1,-22],[2,-54],[1,-115],[-2,-66],[-1,-143],[-2,-41],[0,-34],[-4,-301],[0,-21],[-2,-125],[-2,-159],[-3,-192],[0,-26],[-1,-56],[-3,-117],[-2,-129],[0,-101],[-1,-100],[2,-24],[-2,-104],[-4,-70],[0,-52],[-2,-55],[-1,-73],[0,-28],[-3,-35],[-1,-89],[0,-47],[0,-3],[-1,-53],[0,-17],[-1,-24]],[[65259,58772],[-23,1],[-12,0],[-16,2],[-3,0],[-48,-1],[-2,0],[-1,0],[-23,-3],[-8,-1],[-13,1],[-17,1],[-54,11],[-3,0],[-24,2],[-2,0],[-30,-1],[-2,0],[-2,0],[-2,-1],[-14,-3],[-124,-31],[-49,-10],[-2,-1],[-2,0],[-4,-1],[-120,-40],[-180,-56],[-2,-1],[-56,-22],[-2,0],[-29,-14],[-85,-45],[-98,-36],[-5,0],[-40,-15],[-24,-13],[-48,-9],[-31,-13],[-86,-36],[-197,-97],[-45,-24],[-75,-40],[-78,-65],[-82,-51],[-47,-29],[-22,-22],[-19,-20],[-38,-30],[-27,-16],[-18,-5],[-5,1],[-114,11],[-53,3],[-38,16],[-36,8],[-23,7],[-70,27],[-36,16],[-3,2],[-43,21],[-47,3],[-106,8],[-49,20],[-43,22],[-54,32],[-28,22],[-47,31],[-19,13],[-26,16],[-4,3],[-36,16],[-30,37],[-35,30],[-24,29],[-1,2],[-14,12],[-44,43],[-18,13],[-38,29],[-35,26],[-21,7],[-20,7],[-44,20],[-8,3],[-30,13],[-44,14],[-47,14],[-12,0],[-6,2],[-37,5]],[[61937,58642],[-25,3],[-23,-2],[-29,-3],[-24,-6]],[[61836,58634],[1,30],[1,18],[0,12],[3,53],[2,75],[2,32],[1,26],[0,22],[-2,81],[-2,58],[-3,71],[1,22],[-2,54],[-2,36],[4,53],[4,42],[2,48],[4,70],[4,55],[1,40],[2,28],[2,40],[1,45],[1,44],[4,180],[3,155],[-1,24],[1,67],[0,32],[0,30],[1,26],[2,107],[5,196],[1,44],[2,138],[0,22],[1,34],[2,34],[3,92],[3,159],[2,54],[1,49],[0,39],[1,34],[3,92],[3,64],[1,25],[0,25],[2,40],[0,24],[1,41],[3,95],[3,27],[0,31],[6,165],[0,25],[2,48],[0,28],[2,53],[1,42],[1,28],[1,24],[0,26],[-2,72],[9,171],[1,40],[0,29],[2,79],[3,151],[6,254],[1,24],[0,1],[4,146],[1,40],[0,26],[1,95],[2,60],[1,63],[3,185],[0,27],[2,121],[1,30],[6,174],[0,10],[2,61],[3,89],[1,35],[1,24],[1,53],[4,119],[2,51],[1,22],[2,37],[0,5],[11,263],[2,35],[-4,22],[2,29],[1,22],[1,41],[1,24],[0,25],[1,29],[1,62],[1,26],[1,28],[1,35],[1,25],[1,40],[0,28],[1,36],[1,31],[1,37],[1,28],[0,32],[0,23],[1,26],[1,24],[0,21],[2,41],[2,53],[1,29],[1,25],[1,43],[0,40],[1,24],[1,23],[0,53],[3,106],[3,114],[2,36],[0,28],[1,31],[7,231],[2,64]],[[61836,58634],[-42,-14],[-29,-8],[-22,-6],[-44,-7],[-34,-1],[-37,2],[-49,4],[-41,3],[-32,3],[-125,18],[-82,31],[-54,25],[-56,24],[-44,11],[-143,9],[-24,2],[-47,-4],[-1,0],[-10,-5],[-63,-2],[-73,0],[-40,-4],[-74,-7],[-19,-2],[-4,-1],[-28,-6],[-3,-2],[-78,-46],[-10,-6],[-14,-14],[-13,-14],[-88,-94],[-63,-75],[-82,-100],[-52,-53],[-7,-5],[-60,-47],[-11,-9],[-8,-7],[-18,-5],[-50,-12],[-27,-5],[-39,2],[-34,-4],[-5,-5],[-5,3],[-64,-17],[-44,-4],[-134,7],[-2,0],[-1,0],[-58,11],[-47,3],[-39,-1],[-50,-1],[-3,0],[-4,-4],[-25,-6],[-88,-4],[-98,-24],[-51,-18],[-15,-2],[-80,-46],[-29,-4],[-46,-30],[-45,-15],[-51,-32],[-57,-31],[-1,-1],[-37,-16],[-9,-1],[-36,-5],[-32,-10],[-69,-26],[-77,-37],[-59,-35],[-86,-65],[-61,-63],[-7,-7],[-1,-1],[-21,-32],[-31,-32],[-20,-26],[-17,-23],[-12,-25],[-2,-6],[-7,-10],[-27,-35],[-9,-12],[-11,-36],[-46,-118],[-26,-65],[-37,-82],[-61,-101],[-16,-21],[-4,-5],[-9,-9],[-58,-57],[-41,-47],[-34,-38],[-26,-28],[-16,-18],[-17,-19],[-19,-18],[-43,-42],[-30,-29],[-59,-49],[-81,-88],[-34,-37],[-87,-106],[-74,-81],[-110,-109],[-4,-4],[-29,-31]],[[57328,56277],[-45,5],[-2,0],[-115,-14],[-72,-17],[-40,-13],[-33,-10],[-39,-12],[-1,-1],[-123,-63],[-21,-11],[-15,-12],[-31,-24],[-50,-38],[-29,-25],[-52,-44],[-74,-64],[-34,-41],[-5,-5],[-29,-31],[-22,-22],[-31,-32],[-14,-11],[-17,-13],[-19,-14],[-21,-16],[-19,-15],[-59,-45],[-100,-40],[-71,-27],[-7,-2],[-9,-2],[-102,-19],[-34,-16],[-58,-21],[-79,-19],[-100,-30],[-21,-12],[-3,-2],[-24,-7],[-63,-15],[-52,-6],[-142,12],[-4,0],[-51,1],[-40,1],[-72,12],[-4,2],[-19,13],[-73,12],[-117,13],[-3,1],[-1,0],[-66,17],[-121,32],[-6,2],[-77,23],[-20,7],[-86,32],[-2,1],[-44,20],[-69,30],[-94,42],[-35,16],[-23,18],[-23,17],[-3,3],[-1,1],[-1,1],[-22,14],[-1,1],[-3,1],[-87,44],[-2,1],[-25,11],[-2,1],[-10,3],[-36,11],[-28,9],[-49,23],[-10,5],[-24,11],[-21,15],[-18,12],[-87,78],[-8,7],[-37,51],[-1,2],[-2,2],[-2,3],[-9,8],[-15,14],[-2,1],[-1,1],[-7,5],[-7,6],[-8,7],[-32,24],[-2,1],[-1,1],[-48,32],[-18,14],[-10,9],[-75,72],[-120,121],[-33,39],[-9,11],[-22,116],[3,84],[4,40],[8,29],[1,4],[2,68],[-13,137],[-25,105],[-46,98],[-27,45],[-12,14],[-14,15],[-10,11],[-15,13],[-14,14],[-19,18],[-7,7],[-41,22],[-33,19]],[[49083,63369],[-2,-5],[-11,-28],[-4,-7],[-10,-18],[-17,-54],[-30,-78],[-36,-91],[-10,-28],[-12,-31],[-10,-25],[-13,-35],[-15,-43],[-14,-37],[-1,-2],[-32,-85],[-2,-6],[-58,-156],[-16,-42],[-12,-31],[-20,-55],[-8,-21],[-53,-142],[-13,-39],[-33,-94],[-18,-51],[-5,-19],[-1,-2],[-15,-44],[-17,-47],[-69,-196],[-29,-79],[-26,-73],[-17,-50],[-23,-62],[-13,-34],[-13,-31],[-23,-67],[-15,-45],[-97,-288],[-36,-94],[-33,-94],[-60,-165],[-25,-67],[-29,-79],[-11,-29],[-15,-40],[-13,-35],[-13,-34],[-20,-53],[-14,-38],[-30,-82],[-20,-54],[-13,-34],[-19,-51],[-10,-26],[-46,-124],[-35,-98],[-17,-47],[-9,-25],[-45,-120],[-8,-22],[-18,-52],[-7,-21],[-46,-143],[-21,-62],[-21,-65],[0,-1],[-46,-140],[-16,-46],[-14,-42],[-45,-134],[-12,-34],[-7,-20],[-44,-132],[-13,-37],[-13,-34],[-19,-53],[-93,-254],[-3,-28],[-2,-96],[0,-24],[-5,-171],[-41,0],[-79,2],[-56,2],[-97,5],[-200,9],[-66,4],[-17,1],[-41,3],[-54,1],[-22,2],[-104,1],[-49,1],[-30,1],[-141,6],[-27,1],[-28,1],[-52,1],[-239,11],[-107,6],[-23,1],[-168,29],[-71,-4],[-71,-4],[-137,-3],[-77,1],[-68,1],[-132,3],[-147,2],[-66,2],[-107,2],[-46,1],[-60,1],[-56,1],[-156,3],[-43,1],[-3,0],[-169,4],[-198,5],[-3,0],[-84,-19]],[[43969,58213],[-66,-3],[-81,0],[-128,0],[-29,1],[-124,4],[-54,2],[-49,3],[-24,1],[-193,7],[-62,2],[-22,0],[-198,8],[-8,-1],[-9,0],[-90,2],[-51,2],[-112,2],[-21,1],[-32,1],[-35,2],[-40,3],[-236,3],[-52,5],[-64,9],[-51,2],[-10,1],[-33,6],[-138,15],[-26,2],[-44,5],[-37,4],[-51,5],[-53,5],[-65,7],[-72,9],[-43,6],[-96,4],[-111,9],[-26,2],[-45,5],[-39,4],[-60,5],[-142,16],[-64,6],[-24,2],[-48,3],[-42,3],[-26,2],[-3,1],[-170,14]],[[40670,58410],[1,22],[1,25],[1,32],[1,45],[2,46],[1,34],[1,23],[1,28],[1,32],[2,39],[1,31],[1,38],[1,42],[1,38],[2,73],[2,70],[1,34],[1,24],[1,32],[1,36],[1,30],[2,76],[0,33],[1,26],[1,26],[0,27],[2,25],[0,84],[3,127],[2,35],[7,249],[3,85],[1,21],[1,22],[0,26],[1,33],[0,29],[1,22],[1,34],[1,29],[1,26],[0,27],[1,24],[1,22],[0,23],[1,25],[1,30],[1,23],[1,25],[1,39],[1,28],[1,23],[1,27],[0,23],[1,26],[1,33],[1,39],[2,26],[2,24],[2,88],[1,30],[2,69],[1,35],[5,181],[1,45],[-2,24],[1,40],[1,23],[1,53],[2,45],[4,90],[6,187],[0,3],[0,25],[3,103],[2,71],[4,194],[2,71],[7,271],[0,3],[2,57],[4,137],[0,2],[3,95],[2,74],[2,78],[2,34],[1,34],[2,91],[6,201],[5,129],[-2,59],[0,28],[-1,54],[4,73]],[[72152,62260],[-1,-24],[-1,-49],[-2,-39],[-1,-31],[-1,-29],[-4,-130],[-6,-205],[-3,-113],[-2,-39],[-1,-37],[-4,-111],[-3,-99],[-2,-65],[-2,-36],[0,-24],[-2,-38],[-1,-45],[0,-29],[0,-11],[-1,-12],[-2,-46],[0,-8],[-1,-26],[-1,-60],[-3,-114],[0,-6],[-1,-149],[-1,-30],[-1,-29],[-1,-26],[0,-35],[-1,-25],[0,-23],[-1,-22],[0,-50],[-2,-70],[0,-25],[-1,-27],[0,-44],[-1,-45],[-1,-66],[0,-33],[-1,-34],[0,-39],[-1,-35],[-1,-105],[0,-57],[0,-30],[0,-43],[1,-42],[0,-43],[-1,-79],[-1,-42],[-1,-48],[0,-28],[-1,-35],[0,-24],[0,-29],[-1,-33],[0,-33],[0,-18],[0,-9],[-1,-41],[0,-42],[0,-26],[-1,-26],[-1,-36],[0,-23],[-1,-44],[0,-33],[1,-32],[0,-29],[0,-41],[-1,-24],[1,-22],[-1,-172],[-1,-26],[0,-33],[0,-38],[0,-29],[0,-33],[0,-26],[-1,-23],[0,-46],[-1,-68],[-2,-99],[1,-197],[0,-31],[-1,-54],[3,-31],[-5,-21],[2,-39],[-1,-136],[1,-26],[-1,-61],[0,-85],[-1,-120],[-1,-57],[-1,-44],[0,-26],[1,-89],[-1,-69],[-2,-99],[-1,-65],[-1,-126],[-2,-147],[0,-77],[-1,-28],[-4,-171],[0,-33],[5,-216],[1,-152],[0,-76],[1,-25],[0,-7],[1,-28],[1,-30],[-1,-22],[-2,-156],[-1,-34],[-4,-218],[-3,-223],[0,-4],[-1,-35]],[[72063,55259],[-34,23],[-41,23],[-28,11],[-14,6],[-28,8],[-16,4],[-22,9],[-85,38],[-66,21],[-62,21],[-106,57],[-3,2],[-29,16],[-14,6],[-11,4],[-108,85],[-64,49],[-45,52],[-25,40],[-13,17],[-16,23],[-39,72],[-34,92],[-4,14],[-14,62],[-18,62],[-20,56],[-38,84],[-16,31],[-6,11],[-23,29],[-28,46],[-72,83],[-30,33],[-35,30],[-10,8],[-31,23],[-6,5],[-36,23],[-47,19],[-35,14],[-75,19],[-67,10],[-93,5],[-6,1],[-11,-3],[-63,-11],[-55,-17],[-122,-29],[-21,-5],[-359,-111],[-181,-48],[-114,7],[-155,63],[-131,48],[-435,94],[-224,103],[-261,101],[-138,111],[-44,45],[-19,56],[4,47],[2,33],[-3,12],[0,2],[13,53],[3,12],[0,15],[1,11],[2,50],[-8,41],[-4,20],[-3,15],[-16,40],[-35,85],[-27,52],[-2,4],[-30,37],[-16,18],[-22,24],[-11,13],[-53,49],[-33,28],[-22,10],[-16,7],[-81,51],[-81,62],[-11,14],[-15,18],[-41,42],[-26,17],[-2,2],[-57,61],[-35,42],[-10,18],[-119,140],[-26,26],[-36,36],[-40,29],[-11,8],[-71,65],[-4,3],[-14,14],[-36,36],[-149,170],[-42,52],[-17,30],[-53,58],[-37,28],[-36,16],[-2,2],[-8,8],[-15,1],[-84,4],[-61,-21],[-3,-1],[-43,-46],[-3,-5],[-23,-41],[-69,-69],[-89,-71],[-53,-20],[-40,-7],[-62,4],[-13,6],[-7,5],[-21,14],[-103,26],[-9,1],[-27,4],[-28,13],[-28,13]],[[66000,58546],[-24,11],[-5,2],[-29,14],[-24,11],[-31,19],[-84,45],[-86,34],[-72,36],[-34,15],[-18,6],[-14,4],[-34,7],[-46,6],[-41,4],[-83,6],[-77,5],[-22,0],[-17,1]],[[84749,60850],[-48,128],[-19,52],[-7,16],[-16,43],[-33,88],[-72,57],[-41,33],[-118,93],[-58,9],[-75,11],[-42,0],[-48,-22],[-81,-39],[-137,-115],[-101,-77],[-56,-20],[-66,2],[-51,15],[-132,73],[-63,56],[-37,32],[-186,161],[-68,63],[-218,153],[-27,19],[-10,6],[-24,13],[-294,169],[-40,37],[-110,150],[-49,143],[-36,75],[-19,30],[-26,42],[-55,72],[-109,142],[-48,41],[-40,26],[-103,36],[-77,26],[-42,11],[-136,6],[-85,-23],[-80,-33],[-11,-5],[-33,-32],[-81,-134],[-24,-74],[-38,-213],[-3,-57],[5,-11],[4,-10],[5,-111],[-7,-124],[-17,-72],[-42,-104],[-33,-77],[-48,-66],[-38,-70],[-9,-26],[-54,-80],[-50,-52],[-93,-75],[-60,-34],[-37,-12],[-103,-20],[-63,2],[-67,18],[-70,14],[-53,21],[-36,18],[-89,48],[-93,35],[-59,10],[-242,36],[-120,-51],[-61,-59],[-41,-73],[-17,-30],[-26,-46],[-13,-28],[-101,-214],[-96,-165],[-22,-35],[-36,-58],[-56,-88],[-48,-169],[-28,-88],[-15,-95],[-11,-60],[-28,-123],[-18,-54],[-5,-12],[-55,-138],[-55,-92],[-52,-52],[-9,-14],[-52,-52],[-55,-43],[-49,-34],[-46,-29],[-18,-11],[-81,-41],[-76,-56],[-43,-23],[-3,-3],[-74,-68],[-37,-24],[-17,-10],[-36,-36],[-22,-79],[3,-96],[27,-127],[19,-93],[10,-51],[-1,-42],[-3,-94],[-21,-98],[-21,-121],[-5,-25],[-48,-78],[-10,-12],[-6,-7],[-57,-72],[-108,-47],[-64,-6],[-37,-4],[-115,5],[-63,-5],[-107,4],[-82,-15],[-10,-2],[-127,-33],[-32,-4],[-75,5],[-92,47],[-68,36],[-237,177],[-23,16],[-135,9],[-196,-36],[-49,-1],[-73,-32],[-105,-47],[-3,-1],[-9,-4],[-54,-43],[-33,-33],[-38,-17],[-77,-58],[-3,-17],[-12,-66],[-45,-231],[-19,-15],[-61,-47],[-17,-3],[-44,-15],[-45,-11],[-53,-21],[-42,-26],[-48,-36],[-23,-28],[-13,-54],[-53,-169],[-55,-32],[-54,-22],[-97,-36],[-124,-46],[-31,-11]],[[75541,57249],[-28,-8],[-19,-44],[-10,-20],[-29,-5],[-25,-3],[-10,0],[-37,0],[-22,-12],[-10,-43],[-12,-28],[-70,-100],[-25,-28],[-12,-45],[-19,-104],[-17,-97],[-22,-72],[-109,-185],[-14,-22],[-66,-77],[-45,-48],[-29,-32],[-16,-8],[-87,-48],[-13,-6],[-25,-8],[-6,-2],[-40,-3],[-108,-23],[-31,2],[-101,-29],[-69,-33],[-48,-23],[-54,-35],[-22,-18],[-38,-32],[-11,-9],[-32,-24],[-22,-22],[-96,-96],[-3,-9],[-78,-96],[-9,-9],[-51,-49],[-30,-21],[-54,-43],[-79,-62],[-78,-48],[-79,-33],[-56,-20],[-13,-5],[-46,-20],[-12,-7],[-47,-24],[-59,-41],[-97,-66],[-99,-99],[-103,-92],[-63,-34],[-9,-5],[-7,-3],[-113,-48],[-130,-42],[-21,-1],[-241,14],[-11,1],[-59,9],[-109,58],[-92,50],[-34,23],[-16,12],[-35,27],[-43,38],[-24,20],[-29,25]],[[76541,63631],[37,-118],[1,-3],[-1,-19],[9,-30],[19,-36],[83,-127],[10,-13],[15,-21],[53,-63],[16,-19],[44,-55],[25,-5],[37,-8],[29,-38],[23,-32],[10,-12],[6,-11],[37,-67],[15,-59],[33,-56],[32,-53],[22,-39],[71,-94],[-2,-19],[-11,-82],[126,-210],[99,-74],[224,-107],[71,-9],[121,49],[224,-2],[152,59],[61,11],[66,28],[76,77],[24,25],[22,23],[98,130],[26,35],[6,5],[134,170],[6,12],[29,102],[13,98],[76,112],[37,96],[44,90],[116,123],[96,130],[29,91],[91,102],[58,38],[0,79],[73,150],[111,205],[142,103],[136,58],[17,8],[101,-21],[60,12],[117,-53],[11,-5],[17,-8],[30,-6],[101,-5],[192,-21],[6,-2],[132,-48],[98,-34],[73,-26],[159,-105],[51,-34],[31,-19],[26,-8],[112,-32],[267,-173],[48,-35],[63,-69],[20,-16],[21,-17],[21,-18],[49,-23],[160,-77],[146,-99],[6,-4],[112,-2],[226,-6],[166,-4],[119,-33],[6,-3],[70,-33],[131,3],[57,-25],[73,-50],[42,-29],[134,-79],[128,-83],[22,-14],[27,-24],[48,-42],[167,-194],[300,-213],[13,-9],[3,-3],[56,-45],[34,-28],[8,-3],[20,-6],[26,-9],[83,-52],[41,-26],[18,-14],[30,-23],[95,-72],[166,-127],[105,-75],[48,-34],[17,-10],[113,-69],[128,-84],[37,-8],[37,-32],[91,-114],[18,-124],[1,-2],[-27,-150],[-1,-11],[-27,-142],[-86,-448],[-2,-12]],[[40670,58410],[-1,-26],[0,-5],[-6,-82],[-3,-54],[-3,-232],[-6,-73],[0,-35],[-1,-36],[0,-25],[-1,-30],[-1,-26],[-1,-26],[0,-36],[-2,-56],[0,-26],[-1,-30],[-1,-34],[-1,-28],[0,-32],[-1,-29],[0,-1],[0,-21],[-2,-36],[-2,-37],[-1,-33],[-1,-37],[-1,-22],[0,-28],[-2,-38],[-1,-28],[-2,-48],[-3,-87],[-2,-48],[-3,-87],[-3,-92],[-6,-122],[-3,-176],[0,-4],[-5,-152],[-1,-27],[-1,-41],[-2,-29],[0,-26],[0,-25],[-1,-23],[-2,-30],[-8,-19],[1,-43],[2,-145],[-5,-164],[0,-29],[-1,-27],[-3,-108],[-1,-31],[-3,-106],[-3,-86],[-1,-60],[-4,-126],[-1,-23],[-2,-65],[-2,-96],[-2,-70],[-1,-31],[-2,-55],[-1,-26]],[[40560,54881],[-22,0],[-56,4],[-18,1],[-23,1],[-36,3],[-34,2],[-23,1],[-20,1],[-44,2],[-19,0],[-17,1],[-30,1],[-19,1],[-20,1],[-31,1],[-45,2],[-18,1],[-21,1],[-37,2],[-34,2],[-18,0],[-17,1],[-31,2],[-16,0],[-16,0],[-39,2],[-24,2],[-26,1],[-18,1],[-16,1],[-34,1],[-63,3],[-21,2],[-21,1],[-19,1],[-27,1],[-105,6],[-5,0],[-19,2],[-67,3],[-25,2],[-16,1],[-29,1],[-17,1],[-35,2],[-23,2],[-22,1],[-30,2],[-25,1],[-18,1],[-29,1],[-45,2],[-22,2],[-23,1],[-42,2],[-21,1],[-21,2],[-16,1],[-37,2],[-25,1],[-16,0],[-33,1],[-34,0],[-19,1],[-29,0],[-18,1],[-24,0],[-37,1],[-33,1],[-24,0],[-38,1],[-57,2],[-66,1],[-45,1],[-31,1],[-19,0],[-17,0],[-23,1],[-48,0],[-16,0],[-36,1],[-20,0],[-18,1],[-40,0],[-18,1],[-18,0],[-27,1],[-16,0],[-16,0],[-30,1],[-21,0],[-32,1],[-18,0],[-59,0],[-19,1],[-29,0],[-28,0],[-26,1],[-78,1],[-20,0],[-26,0],[-22,1],[-26,0],[-25,1],[-37,0],[-23,0],[-15,0],[-5,0],[-10,1],[-18,0],[-22,0],[-25,0],[-15,1],[-34,0],[-33,1],[-18,0],[-27,0],[-33,0],[-19,1],[-24,1],[-1,-36],[-1,-24],[-2,-51],[0,-23],[-2,-45],[-2,-49],[-1,-35],[-2,-51],[0,-26],[-1,-25],[-2,-52],[-7,-213],[-28,2],[-30,1],[-35,1],[-25,1],[-23,0],[-35,2],[-33,1],[-20,1],[-17,0],[-31,1],[-28,2],[-17,0],[-46,2],[-19,1],[-27,1],[-19,1],[-19,1],[-16,0],[-25,1],[-19,1],[-41,1],[-27,1],[-27,1],[-30,1],[-21,1],[-23,1],[-27,2],[-39,2],[-22,0],[-34,2],[-18,1],[-30,1],[-16,1],[-96,4],[-29,2],[-17,1],[-94,4],[-21,0],[-16,1],[-17,1],[-50,1],[-17,1],[-18,0],[-54,2],[-19,0],[-29,2],[-22,1],[-18,0],[-26,1],[-29,1],[-19,1],[-40,2],[-47,2],[-16,0],[-82,4],[-80,7],[-33,1],[-23,1],[-23,1],[-23,1],[-44,1],[-29,1],[-15,0],[-16,1],[-10,1],[-14,0],[-93,2],[-21,3],[-81,3],[-17,1],[-27,1],[-35,1],[-34,1],[-29,2],[-30,1],[-22,1],[-16,1],[-38,1],[-34,2],[-18,0],[-30,1],[-43,2],[-24,1],[-21,1],[-30,1],[-34,2],[-22,1],[-32,1],[-59,2],[-36,2],[-17,0],[-23,1],[-37,2],[-20,0],[-21,1],[-39,2],[-19,0],[-52,2],[-33,2],[-35,1],[-28,1],[-15,0],[-27,1],[-18,1],[-33,1],[-24,1],[-47,1],[-19,1],[-21,1]],[[33889,54500],[-1,49],[1,35],[1,24],[1,29],[0,21],[1,29],[1,23],[1,22],[0,23],[1,27],[1,33],[1,40],[0,24],[2,34],[0,25],[1,25],[1,36],[1,30],[0,21],[0,2],[1,26],[1,26],[1,23],[0,22],[1,25],[1,23],[0,25],[1,26],[1,33],[0,28],[1,22],[1,26],[1,22],[1,36],[0,32]],[[33913,55447],[1,42],[1,35],[2,54],[1,27],[1,45],[2,52],[1,58],[1,57],[1,27],[1,24],[1,45],[3,75],[7,244],[1,25],[3,108],[6,165],[7,261],[-9,1],[13,152],[8,226],[-30,1],[6,197],[7,122],[1,35],[2,23],[0,29],[2,23],[17,254],[5,107],[1,25],[2,60],[4,72],[2,55],[8,172],[3,88],[6,136],[1,23],[5,94],[1,33],[-2,29],[2,46],[3,49],[1,31],[1,30],[2,26],[2,50],[2,28],[1,25],[1,25],[1,22],[4,60],[3,61],[2,49],[1,22],[2,48],[2,33],[1,23],[1,32],[2,39],[4,66],[1,32],[1,27],[2,35],[2,56],[1,27],[2,36],[1,28],[2,28],[1,23],[1,33],[4,87],[1,26],[1,24],[1,24],[0,11],[1,24],[2,27],[1,32],[2,30],[0,14],[1,24],[2,35],[1,33],[2,48],[2,42],[2,45],[2,48],[1,43],[1,31],[1,29],[3,51],[1,46],[2,48],[2,51],[1,28],[1,27],[2,55],[1,32],[2,32],[1,54],[2,26],[1,24],[1,39],[2,58],[1,24],[1,38],[2,35],[1,36],[1,40],[1,24],[1,22],[1,23],[2,43],[1,44],[1,25],[1,31],[2,27],[1,43],[0,29],[2,31],[1,23],[2,52],[2,34],[1,33],[1,25],[2,51],[1,38],[1,26],[1,29],[1,29],[2,47],[1,24],[1,23],[4,24],[-1,24],[0,22],[1,23],[1,26],[1,32],[1,25],[2,24],[6,114],[3,46],[1,22],[5,100],[3,103],[1,25],[1,31],[1,25],[7,169],[-39,4],[-29,1],[-12,37],[1,23],[0,32],[0,22],[0,22],[3,39],[5,143],[0,12],[2,70],[2,67],[6,105],[-1,34],[0,26]],[[33913,55447],[-18,0],[-29,1],[-29,0],[-25,0],[-19,1],[-25,2],[-34,2],[-28,1],[-31,1],[-20,0],[-23,2],[-20,0],[-25,1],[-19,1],[-31,1],[-16,0],[-58,2],[-23,1],[-22,0],[-27,1],[-31,1],[-20,1],[-24,1],[-23,0],[-16,1],[-21,1],[-43,2],[-15,0],[-36,2],[-48,1],[-31,1],[-39,2],[-49,2],[-26,1],[-25,1],[-15,1],[-31,1],[-41,1],[-35,1],[-69,4],[-20,0],[-15,2],[-2,0],[-21,0],[-27,2],[-28,1],[-61,2],[-17,2],[-33,1],[-15,0],[-21,1],[-21,1],[-38,2],[-24,1],[-17,0],[-51,3],[-16,0],[-42,2],[-18,-1],[-38,2],[-29,1],[-99,3],[-18,0],[-99,3],[-137,4],[-138,4],[-34,0],[-88,3],[-87,2],[-29,1],[-28,1],[-16,0],[-120,4],[-64,1],[-91,5],[-26,0],[-16,0],[-20,1],[-18,-1],[-15,0],[-42,1],[-20,1],[-20,1],[-20,0],[-16,1],[-17,0],[-16,1],[-29,0],[-20,1],[-45,1],[-20,1],[-51,1],[-16,1],[-50,2],[-44,1],[-34,1],[-92,-3],[-125,3],[-49,3],[-26,1],[-25,1],[-35,2],[-26,-2],[-28,1],[-2,0],[-15,1],[-25,1],[-17,0],[-24,0],[-24,2],[-20,0],[-28,1],[-51,1],[-40,0],[-16,1],[-22,0],[-16,0],[-17,0],[-18,0],[-20,2],[-22,0],[-17,0],[-39,1],[-26,1],[-24,0],[-19,1],[-27,0],[-17,0],[-44,1],[-28,1],[-18,0],[-16,0],[-58,2],[-22,0],[-41,0],[-55,2],[-33,1],[-32,1],[-32,1],[-22,0],[-25,0],[-27,1],[-33,2],[-26,0],[-33,1],[-36,0],[-38,2],[-45,1],[-40,2],[-33,-1],[-20,1],[-26,1],[-15,0],[-20,1],[-25,0],[-15,0],[-17,1],[-23,0],[-19,1],[-16,0],[-22,1],[-26,1],[-18,0],[-51,1],[-24,0],[-23,1],[-19,0],[-19,1],[-21,0],[-35,0],[-62,2],[-33,2],[-26,0],[-17,1],[-15,0],[-32,1],[-27,1],[-37,1],[-19,1],[-26,0],[-33,1],[-31,1],[-39,1],[-37,1],[-19,1],[-21,1],[-17,0],[-16,0],[-69,2],[-47,1],[-15,1],[-52,1],[-22,1],[-17,0],[-66,2],[-18,0],[-48,2],[-46,1],[-36,1],[-16,1],[-16,0],[-17,1],[-37,1],[-41,1],[-22,1],[-32,2],[-19,0],[-18,0],[-27,1],[-28,1],[-32,0],[-20,0],[-15,0],[-17,0],[-31,1],[-30,2],[-29,1],[-16,0],[-25,1],[-24,1],[-4,0],[-60,2],[-38,2],[-93,3],[-130,5],[-15,1],[-76,3],[-56,1],[-66,2],[-62,2],[-105,2],[-168,6],[-34,2],[-18,0],[-23,2],[-16,0],[-15,0],[-16,1],[-48,1],[-22,0],[-15,1],[-155,6],[-1,0],[-28,0],[-110,4]],[[25624,55689],[-43,3],[-16,1],[-50,1],[-13,0],[-8,0],[-9,0],[-16,0],[-16,1],[-16,0],[-14,1],[-1,0],[-6,0],[-20,1],[-32,1],[-16,0],[-73,3],[-8,0],[-4,0],[-17,0],[-19,1],[-6,0],[-10,0],[-4,0],[-13,1],[-11,0],[-40,1],[-24,0],[-15,0],[-18,0],[-18,2],[-33,1],[-128,6],[-46,2],[-35,2],[-18,0],[-12,56],[1,29],[1,60],[1,53],[1,25],[2,39],[0,23],[1,30],[0,23],[1,25],[1,28],[0,23],[2,54],[7,165],[1,28],[2,98],[1,92],[1,42],[1,34],[3,150],[3,94],[1,50],[0,33],[1,51],[1,34],[1,25],[0,22],[1,23],[1,51],[2,51],[0,11],[2,66],[5,189],[1,27],[0,24],[1,52],[-15,1],[-21,0],[-33,2],[-22,1],[-48,1],[-17,1],[-38,2],[3,80],[4,108],[1,25],[3,62],[1,34],[0,14],[3,111],[1,39],[2,51],[1,29],[1,28],[1,25],[0,24],[2,33],[1,40],[2,54],[1,30],[1,36],[1,24],[3,100],[2,48],[1,29],[1,23],[0,27],[2,31],[1,55],[1,29],[1,27],[2,37],[1,35],[2,55],[2,59],[2,43],[0,26],[1,25],[1,25],[1,24],[2,28],[1,31],[1,49],[1,33],[2,33],[1,30],[1,54],[1,36],[0,29],[1,45],[13,77],[2,46],[1,42],[18,127],[0,3],[1,32],[1,30],[1,33],[2,44],[1,43],[1,34],[3,66],[3,66],[0,31],[0,30],[1,67],[1,65],[0,36],[0,27],[1,63],[3,94],[3,114],[1,23],[1,26],[-1,28],[-1,35],[1,34],[1,37],[3,67],[1,24],[3,62],[1,39],[1,26],[1,24],[2,22],[1,30],[0,23],[1,29],[2,33],[3,70],[2,26],[1,30],[1,26],[9,42]],[[50634,59408],[-6,-28],[-4,-21],[-25,-113],[-1,-6],[-19,-87],[-11,-49],[-1,-4],[-6,-27],[-3,-15],[-2,-8],[-14,-62],[-5,-22],[-59,-273],[-54,-244],[-6,-26],[-31,-141],[-29,-131],[-7,-30],[-6,-28],[-5,-22],[-11,-48],[-6,-27],[-9,-42],[-28,-122],[-34,-154],[-16,-73],[-30,-133],[-6,-27],[-11,-47],[-6,-26],[-22,-100],[-10,-47],[-22,-98],[-11,-48],[-20,-90],[-2,-8],[-9,-44],[-25,-125],[-10,-44],[-2,-17],[-2,-11],[-7,-32],[-54,-224],[-15,-62],[-8,-38],[-31,-138],[-6,-23],[-38,-172],[-5,-22],[-16,-73],[-10,-42],[-21,-94],[-11,-49],[-1,-6],[-5,-31],[-33,-148],[-4,-21],[-16,-71],[-36,-157],[-30,-137],[-20,-91],[-3,-14],[-6,-27],[-8,-28],[-8,-33],[-72,-342],[-34,-150],[-6,-23],[-33,-157],[-14,-64],[-8,-41],[-5,-23],[-18,-76],[-5,-23],[-18,-76],[-5,-24],[-13,-56],[-9,-38],[-8,-37],[-20,-87],[-8,-33],[-5,-25],[-7,-30],[-6,-27],[-15,-64],[-39,-170],[-21,-93],[-17,-72],[-8,-37],[-2,-10],[-3,-14],[-10,-40],[-3,-15],[-4,-16],[-2,-11],[-3,-13],[-16,-68],[-7,-31],[-9,-43],[-6,-22],[-5,-22],[-13,-57],[-13,-56],[-6,-26],[-6,-26],[-4,-22],[-19,-80]],[[49131,52667],[-31,-1],[-44,-2],[-67,3],[-18,-1],[-22,2],[-29,1],[-82,2],[-32,2],[-4,1],[-41,1],[-65,3],[-114,4],[-146,6],[-34,1],[-32,1],[-5,1],[-36,1],[-37,1],[-57,2],[-85,4],[-40,1],[-4,0],[-76,3],[-58,3],[-62,2],[-53,2],[-72,1],[-18,1],[-49,1],[-22,1],[-104,3],[-4,1],[-13,0],[-3,0],[-25,1],[-24,1],[-15,0],[-4,0],[-12,1],[-28,1],[-76,2],[-68,2],[-109,1],[-27,3]],[[47184,52730],[-34,38],[-39,45],[-32,35],[-42,47],[-102,113],[-97,108],[-23,25],[-154,171],[-78,87],[-34,37],[-52,57],[-45,50],[-91,101],[-68,76],[-136,150],[-73,82],[-14,15],[-51,57],[-19,21],[-29,32],[-94,105],[-45,53],[-37,42],[-56,61],[-27,30],[-12,14],[-140,155],[-14,16],[-104,114],[-18,21],[-17,17],[-100,110],[-87,98],[-73,79],[-17,18],[-17,19],[-71,79],[-67,73],[-28,31],[-29,32],[-103,113],[-14,16],[-26,29],[-1,1],[-36,39],[-46,51],[-84,92],[-26,29],[-56,61],[-14,15],[-38,42],[-20,23],[-136,149],[-61,68],[-27,30],[-29,32],[-17,19],[-37,40],[-51,57],[-14,16],[-16,17],[-109,121],[-20,21],[2,48],[2,109],[0,26],[2,135],[1,60],[3,40],[0,118],[2,76],[2,278],[1,30],[4,23],[1,81],[-3,41],[5,154],[3,44],[1,87],[2,178],[0,14],[1,59],[2,146],[1,141]],[[84749,60850],[-81,-167],[-142,-129],[-177,-163],[-169,-132],[-114,-73],[-32,-41],[-15,-12]],[[84019,60133],[-123,17],[-9,1],[-100,13],[-27,6],[-1,-43],[-3,-32],[-5,-26],[-3,-22],[-1,-22],[-1,-1],[-5,-38],[-8,-52],[-12,-45],[-24,-44],[-19,-32],[-32,-48],[-21,-28],[-40,-67],[-12,-24],[-20,-26],[-34,-43],[-14,-17],[-18,-24],[-12,-15],[-19,-26],[-26,-31],[-12,-17],[-21,-26],[-41,-50],[-42,-39],[-67,-45],[-1,0],[-24,-31],[-28,-30],[-26,-24],[-28,-17],[-44,-15],[-49,-26],[-39,-22],[-21,-13],[-26,-13],[-16,-11],[-22,-19],[-9,-4],[-54,-22],[-38,-24],[-15,-6],[-27,-16],[-16,-8],[-23,-15],[-15,-26],[-19,-44],[-27,-41],[-27,-45],[-9,-18],[-18,-32],[-12,-20],[-15,-28],[-15,-28],[-15,-28],[-11,-19],[-15,-35],[-10,-24],[-3,-3],[-12,-16],[-15,-26],[-37,-69],[-20,-35],[-19,-37],[-17,-33],[-12,-21],[-9,-17],[-1,-3],[-28,-51],[-16,-30],[-13,-25],[-14,-24],[-22,-37],[-26,-49],[-9,-20],[-31,-56],[-2,-3],[-10,-14],[-12,-24],[-11,-18],[-13,-32],[-12,-20],[-11,-19],[-21,-37],[-9,-17],[-17,-28],[-12,-22],[-8,-28],[-15,-13],[-9,-20],[-1,-2],[-9,-15],[-5,-21],[-11,-19],[-11,-21],[-21,-32],[-18,-28],[-6,-44],[-3,-28],[-3,-23],[0,-29],[-1,-25],[-1,-23],[-1,-36],[-11,-17],[-13,-37],[-5,-26],[-4,-35],[-3,-22],[-5,-23],[-1,-28],[-5,-39],[-1,-22],[-12,-33],[-17,-19],[-12,-43],[-1,-20],[0,-6],[-5,-39],[-1,-33],[-5,-28],[-3,-24],[-6,-30],[-9,-78],[-16,-55],[-3,-10],[-9,-26],[-6,-22],[-9,-34],[-7,-24],[-4,-13],[-15,-48],[-6,-26],[-10,-30],[-8,-41],[-7,-22],[-5,-24],[-6,-21],[-10,-21],[-2,-3],[-1,-4],[-15,-63],[-8,-33],[5,-21],[10,-22],[14,-43],[18,-61],[16,-52],[2,-4],[7,-20],[12,-39],[8,-19],[4,-22],[8,-28],[49,-72],[42,-58],[38,-52],[16,-26],[20,-28],[80,-115],[4,-4],[67,-74],[17,-15],[26,-24],[41,-37],[25,-15],[15,-11],[20,-17],[22,-24],[15,-11],[3,-4],[9,-11],[30,-21],[20,-7],[18,-11],[19,-6],[14,-13],[0,-2],[9,-20],[3,-22],[5,-28],[4,-15],[7,-28],[8,-39],[-9,-17],[-6,-22],[12,-22],[19,-19],[2,-5],[35,-73],[52,-4],[1,0],[16,-3],[24,-14],[2,-1],[48,-28]],[[82656,54919],[-25,-38],[-49,-54],[-60,-103],[-3,-8],[19,-133],[-12,-61],[-7,-36],[-26,-75],[-15,-34],[-16,-60],[-15,-86],[-4,-23],[-13,-153],[-14,-57],[-22,-66],[-37,-113],[-11,-57],[-3,-61],[-17,-74],[-7,-29],[-14,-60],[-22,-83],[-11,-205],[-19,-147],[-14,-66],[-15,-33],[1,-41],[-14,-63],[-20,-77],[-31,-94],[-20,-36],[-98,-130],[-91,-84],[-56,-37],[-58,-57],[-28,-39],[-107,-155],[-6,-17],[-37,-59],[-62,-71],[-88,-90],[-95,-124],[-31,-48]],[[81383,51782],[-25,74],[-9,75],[0,12],[0,68],[-3,10],[-13,43],[-20,51],[-5,12],[-9,33],[-3,35],[-6,35],[3,55],[10,49],[4,4],[5,120],[1,23],[-1,51],[-3,4],[-16,135],[2,87],[5,11],[12,34],[19,57],[27,33],[34,42],[15,19],[26,44],[47,102],[2,37],[-7,79],[-5,9],[-8,14],[-1,1],[-15,16],[-13,7],[-37,19],[-80,29],[-61,16],[-39,2],[-26,-4],[-11,-4],[-74,-30],[-14,-6],[-88,-35],[-24,-7],[-13,1],[-5,-5],[-69,-25],[-22,-5],[-205,-44],[-20,2],[-5,5],[-5,7],[1,23],[12,25],[-1,41],[-5,35],[-23,22],[-28,5],[-13,-5],[-20,-19],[0,-9],[-14,-25],[-31,-30],[-43,-26],[-53,-14],[-31,16],[-1,2],[-39,62],[-44,63],[-14,85],[-8,47],[-1,18],[-15,48],[-36,75],[-29,93],[-9,25],[-12,103],[3,23],[13,12],[4,0],[33,-1],[7,-3],[11,-4],[7,-7],[38,-39],[47,-1],[16,8],[36,38],[28,42],[15,46],[1,23],[-2,3],[-7,12],[-19,30],[1,24],[1,25],[16,101],[11,14],[-2,42],[4,27],[-7,0],[-101,-6],[-111,2],[-25,2],[-65,5],[-42,1],[-36,0],[-175,5],[-17,1],[-1,0],[-39,1],[-33,2],[-31,0],[-25,1],[-24,0],[-19,1],[-62,1],[-17,0],[-24,2],[-44,-2],[-54,-3],[-41,-2],[-56,-2],[-37,-2],[-87,-2],[-27,0],[-15,-1],[-33,-1],[-58,2],[-71,-2],[-73,2],[-20,0],[-102,0],[-34,2],[-16,0],[-17,0],[-31,0],[-65,0],[-66,0],[-47,0],[-35,0],[-44,0],[-163,2],[-67,0],[-152,0],[-51,2],[-318,0],[-41,0],[-21,0],[-15,0],[-15,2],[-24,-35],[-2,-1],[-40,-96],[-9,-24],[-9,-25],[-33,-89],[-8,-22],[-62,-168],[-8,-20],[-22,-31],[-15,-15],[-128,-130],[-36,13],[-28,18],[-54,34],[-45,35],[-19,17],[-14,15],[-28,35],[-17,62],[-4,16],[-27,38],[-18,27],[-5,2],[-31,10],[-53,18],[-9,2],[-60,16],[-28,-2],[-9,-1],[-112,-8],[-3,0],[-2,-3],[-93,-177],[5,-28],[18,-102],[25,-125],[23,-115],[3,-7],[12,-30],[10,-24],[0,-26],[-12,-35],[-1,-6],[-27,-39],[-1,-1],[-4,-5],[-28,-42],[-13,-13],[-41,-41],[-3,-1],[-38,-18],[-40,-13],[-90,-31],[-58,-6],[-24,4],[-10,21],[-14,8],[-18,5],[-17,-16],[-34,-3],[0,26],[12,11],[19,17],[46,20],[21,18],[29,46],[2,35],[-8,28],[-19,26],[-25,10],[-21,-8],[-19,-17],[-4,-33],[-7,-17],[-3,4],[-30,3],[-20,25],[-1,4],[-1,4],[5,44],[-9,35],[-27,34],[-30,25],[-22,30],[-16,45],[-2,39],[-1,7],[-8,44],[-17,22],[-15,9],[-49,9],[-29,-1],[-8,-6],[-19,-15],[-21,1],[-14,9],[-1,0],[-1,0],[-18,-10],[-35,-35],[-16,0],[-8,-8],[-27,-10],[-59,7],[-7,8],[-2,3],[-1,1],[1,20],[9,14],[4,5],[33,31],[4,3],[5,5],[1,11],[0,18],[1,3],[-19,39],[-5,4],[-20,18],[-38,10],[-35,18],[-72,29],[-27,3],[-46,-2],[-1,0],[-7,-1],[-22,-126],[-12,-72],[-11,-66],[-14,-35]],[[75481,53507],[-3,22],[2,48],[3,127],[1,33],[2,30],[0,39],[1,43],[0,4],[-1,33],[1,22],[0,22],[2,23],[0,59],[1,53],[0,3],[3,100],[0,21],[2,42],[1,88],[2,87],[0,24],[6,327],[4,152],[2,62],[0,12],[3,140],[3,78],[2,80],[3,120],[3,94],[2,77],[2,62],[1,28],[2,37],[6,186],[1,372],[3,353],[0,76],[0,33],[1,35],[0,23],[1,87],[0,73],[0,37],[-2,222],[0,3],[0,50]],[[25624,55689],[-1,-23],[0,-1],[-3,-134],[-4,-157],[-14,-470],[-1,-57],[-1,-36],[-1,-61],[-5,-243],[-3,-152],[-5,-127],[-2,-28],[0,-1],[-1,-80],[0,-53],[-1,-25],[-3,-151],[-2,-97],[-3,-145],[-3,-154],[22,-3],[20,-2],[-5,-190],[-2,-111],[-2,-44],[-1,-62]],[[25603,53082],[-16,-2],[-31,-2],[-19,-5],[-15,8],[-9,20],[-9,20],[-16,3],[-5,-23],[-17,-3],[-15,-1],[-16,2],[-17,6],[12,14],[17,7],[4,23],[-6,24],[-12,15],[-20,2],[-17,-10],[-6,-19],[-8,-21],[-15,-1],[-9,17],[-7,49],[-17,15],[-16,14],[-8,20],[-13,18],[-16,0],[-9,-18],[-7,-19],[-7,-20],[-10,-16],[-12,14],[-4,36],[-7,25],[-23,21],[-7,20],[-12,18],[-14,-24],[-11,-23],[-7,-25],[-20,-14],[-66,-1],[-13,18],[-23,7],[-24,2],[-24,2],[-23,1],[6,-25],[-5,-28],[-13,-15],[-19,-8],[-25,0],[-17,-4],[-24,1],[-18,11],[-21,-8],[-16,-12],[-19,7],[-23,5],[-23,5],[-24,5],[-16,3],[-16,1],[-18,3],[-21,2],[-16,4],[-18,4],[-34,3],[-15,-2],[-11,-1],[-6,-1],[-25,-5],[-18,-10],[-27,-27],[-13,-5],[-5,-3],[-13,-2],[-4,-1],[-7,1],[-17,0],[-16,-1],[-24,-12],[-24,4],[-13,16],[-5,21],[-13,16],[-16,2],[-14,-9],[9,-25],[1,-3],[8,-23],[-10,-18],[-16,5],[-16,4],[-13,-16],[-18,-17],[-22,3],[-9,18],[-2,22],[-18,8],[-14,-13],[-25,-18],[-16,-8],[-14,8],[-10,16],[-17,7],[-18,-4],[2,-28],[3,-35],[-14,-9],[-10,18],[-20,16],[-16,16],[-15,10],[-15,2],[0,-26],[11,-17],[33,-26],[-14,-11],[-20,10],[-17,3],[2,-22],[-16,-11],[-15,8],[-19,7],[-18,-2],[-15,-7],[-9,17],[-11,21],[-15,10],[-6,-23],[-27,-17],[-20,6],[-9,26],[-1,24],[-10,16],[-15,7],[-19,20],[-16,-4],[28,-23],[-12,-27],[-16,-19],[-30,9],[-18,-1],[-16,-11],[-17,-7],[-28,-9],[-22,-9],[-17,-10],[-19,11],[-20,8],[-9,21],[-14,11],[-16,-7],[-16,-9],[-5,36],[-3,21],[-13,23],[-15,-3],[-22,-12],[-15,-6],[6,-24],[15,-7],[0,-23],[-13,-13],[-18,-3],[-4,27],[-15,12],[-17,-2],[-15,-7],[-16,-26],[-6,21],[-9,24],[-8,27],[-16,-5],[-21,-12],[-22,-10],[-18,-12],[-15,8],[11,24],[9,25],[2,30],[-17,15],[-16,0],[-11,-18],[-6,-20],[-18,-1],[-35,25],[25,8],[18,2],[-3,17],[0,5],[-18,6],[-15,15],[7,20],[18,-5],[17,8],[12,17],[-1,27],[-9,18],[-15,9],[8,-22],[-13,-19],[-16,5],[-24,7],[-17,8],[-21,-3],[-17,-2],[-19,2],[-19,-16],[-15,-6],[-14,-20],[-14,-11],[-14,19],[9,24],[13,12],[11,15],[-7,25],[-18,6],[-17,-14],[-13,-21],[-19,-2],[-5,-25],[-20,-14],[-9,-24],[-20,-11],[-18,2],[-18,9],[-18,6],[-17,-8],[-10,-30],[-2,-4],[-10,-20],[-17,-7],[-16,-6],[-21,-17],[-11,-25],[-18,-11],[-9,26],[-6,24],[-13,13],[-15,-7],[-24,-10],[-16,-12],[-7,-22],[-5,-21],[-17,5],[-20,7],[2,28],[13,19],[9,19],[-1,4],[-3,11],[-9,11],[-17,14],[-12,7],[-23,9],[-2,1],[-7,5],[-1,1],[-2,1],[-25,31],[-4,3],[-19,16],[-18,7],[-10,-1],[-2,-1],[-2,-1],[-2,-2],[1,-10],[1,-5],[-30,1],[-3,2],[-21,15],[-45,31],[-38,27],[-2,2],[-43,48],[-2,8],[-6,9],[-14,14],[-15,11],[-7,3],[-6,-1],[-2,-3],[-3,-4],[-1,-2],[-2,-8],[1,-2],[28,-90],[0,-10],[-7,-9],[-39,-37],[-4,-4],[-4,-4],[-4,1],[-2,1],[-5,2],[-48,18],[-87,72],[-6,5],[-7,10],[-41,55],[-3,0],[-15,-2],[-26,4],[-12,3],[-8,6],[-3,2],[-4,7],[-32,57],[-2,4],[-30,54],[-9,0],[-16,0],[-39,1],[-7,0],[-43,3],[-20,1],[-28,1],[-17,1],[-15,0],[-16,1],[-16,0],[-22,1],[-16,0],[-19,1],[-17,1],[-18,0],[-16,1],[-18,0],[-16,1],[-18,0],[-16,1],[-20,0],[-16,1],[-18,0],[-16,1],[-18,0],[-18,1],[-17,1],[-16,0],[-17,1],[-13,0],[-2,0],[-142,7],[-35,-1],[-42,0],[-100,3],[-64,2],[-28,1],[-61,2],[-18,1],[-16,1],[-17,0],[-17,1],[-16,0],[-18,1],[-17,0],[-17,1],[-17,0],[-17,1],[-17,0],[-17,1],[-16,0],[-17,1],[-16,0],[-21,1],[-17,0],[-16,1],[-16,0],[-15,-1],[-25,0],[-78,2],[-24,1],[-21,1],[-19,0],[-30,1],[-34,1],[-17,1],[-16,0],[-17,1],[-17,1],[-17,0],[-17,1],[-19,0],[-18,1],[-18,0],[-17,1],[-17,0],[-18,1],[-34,1],[-17,0],[-18,1],[-16,0],[-19,1],[-17,0],[-17,1],[-15,0],[-18,0],[-19,1],[-17,0],[-18,1],[-17,0],[-18,1],[-16,0],[-17,1],[-17,0],[-18,1],[-15,0],[-19,1],[-19,0],[-17,1],[-17,0],[-18,1],[-17,0],[-16,1],[-18,0],[-17,1],[-18,1],[-17,0],[-17,1],[-18,0],[-16,1],[-18,0],[-17,1],[-17,0],[-19,1],[-16,0],[-18,1],[-17,0],[-18,1],[-17,0],[-18,1],[-16,0],[-18,1],[-18,0],[-17,1],[-33,1],[-27,1],[-41,1],[-38,1],[-20,1],[-29,1],[-18,0],[-19,1],[-18,0],[-16,1],[-16,1],[-59,2],[-23,1],[-19,0],[-37,1],[-21,0],[-32,0],[-40,0],[-24,1],[-15,0],[-17,1],[-25,0],[-17,0],[-17,0],[-16,1],[-18,0],[-17,0],[-18,0],[-17,1],[-18,0],[-16,0],[-17,1],[-15,0],[-21,0],[-17,1],[-16,0],[-17,1],[-17,0],[-17,0],[-18,0],[-16,1],[-19,0],[-17,0],[-16,1],[-19,0],[-16,1],[-18,0],[-17,1],[-17,0],[-17,1],[-17,0],[-17,0],[-16,0],[-3,0],[-17,0],[-17,0],[-16,1],[-18,0],[-17,1],[-18,1],[-17,0],[-17,1],[-17,1],[-21,1],[-25,0],[-19,1],[-17,1],[-19,1],[-19,0],[-16,1],[-18,1],[-15,1],[-18,0],[-18,1],[-17,1],[-18,1],[-17,1],[-17,0],[-18,1],[-16,1],[-2,0],[-15,1],[-18,1],[-17,0],[-18,1],[-17,1],[-17,1],[-20,1],[-18,0],[-37,2],[-15,1],[-3,0],[-19,0]],[[17406,53744],[2,98],[-2,23],[0,26],[1,104],[1,24],[1,33],[2,87],[1,91],[0,39],[1,98],[1,272],[0,41],[0,32],[0,128],[0,110],[0,42],[1,248],[2,22],[-1,57],[0,303],[0,27],[3,136],[2,103],[1,41],[0,27],[-2,21],[0,103],[0,67],[0,87],[0,197],[0,9],[0,82],[0,37],[2,35],[1,25],[0,51],[1,42],[0,72],[1,55],[0,2],[2,110],[-1,80],[-1,97],[4,26],[1,32],[0,36],[1,67],[1,29],[0,29],[1,22],[0,26],[1,29],[1,34],[0,24],[0,43],[0,23],[1,38],[0,40],[1,32],[0,44],[1,74],[1,80],[0,22],[1,50],[0,47],[1,26],[0,26],[0,25],[0,30],[1,28],[1,46],[1,58],[1,56],[0,32],[1,24],[0,28],[1,44],[0,34],[1,26],[0,43],[1,36],[0,25],[1,34],[0,25],[0,26],[0,38],[2,34],[0,22],[1,27],[0,27],[0,40],[1,55],[0,26],[1,38],[1,37],[0,39],[1,46],[0,45],[0,28],[1,47],[0,21],[1,31],[2,45],[0,45],[1,47],[0,23],[0,22],[1,25],[0,26],[0,37],[1,40],[0,39],[1,29],[0,25],[0,25],[1,46],[0,32],[1,41],[0,40],[1,38],[0,37],[0,23],[1,35],[0,23],[1,38],[0,38],[1,44],[0,28],[0,26],[0,23],[0,41],[1,38],[0,41],[0,30],[0,27],[0,35],[0,26],[1,41],[0,51],[0,25],[0,58],[1,23],[0,38],[0,39],[1,39],[0,28],[0,22],[0,29],[0,22],[1,25],[0,46],[0,30],[2,24],[2,115],[4,207],[0,35],[-1,89],[0,27],[-5,309]],[[84019,60133],[-15,-27],[-57,-100],[-20,-48],[-33,-81],[-9,-53],[-14,-85],[-21,-33],[-10,-59],[-37,-50],[-96,-132],[-118,-50],[-28,-21],[-86,-62],[-105,-193],[-31,-79],[-25,-228],[46,-130],[46,-128],[7,-21],[14,-14],[56,-55],[164,-296],[68,-144],[8,-31],[28,-108],[30,-140],[13,-57],[3,-17],[33,-247],[14,-102],[7,-54],[-2,-32],[3,-43],[-7,-112],[-5,-35],[-6,-38],[-1,-5],[-11,-66],[-20,-75],[-8,-31],[-17,-64],[-8,-32],[-11,-40],[-25,-92],[-25,-76],[-42,-99],[-30,-68],[-22,-43],[-7,-13],[-37,-58],[-31,-45],[-48,-54],[-133,-127],[-26,-25],[-111,-108],[-58,-56],[-24,-23],[-36,-41],[-41,-67],[-58,-124],[-47,-90],[-40,-67],[-41,-81],[-29,-37],[-10,-13],[-26,-48],[-21,-42],[-10,-43],[-58,-103],[-20,-36],[-27,-57],[-15,-45],[-4,-15]],[[57328,56277],[-8,-17],[-10,-21],[-17,-11],[-77,-74],[-66,-70],[-43,-40],[-44,-48],[-19,-22],[-104,-108],[-98,-110],[-85,-43],[-78,-60],[-64,-43],[-30,-26],[-38,-36],[-16,-3],[-34,-11],[-35,-9],[-9,0],[-24,1],[-22,0],[-69,2],[-72,-22],[-48,-44],[-34,-59],[-7,-12],[-13,-32],[-2,-3],[-11,-50],[-11,-46],[-5,-22],[-1,-10],[-11,-55],[-6,-116],[0,-2],[0,-4],[5,-51],[0,-11],[3,-29],[1,-15],[1,-9],[17,-85],[15,-54],[7,-22],[6,-23],[40,-91],[35,-80],[7,-12],[30,-63],[8,-17],[15,-31],[53,-95],[27,-49],[16,-33],[8,-22],[8,-26],[0,-3],[2,-36],[4,-27],[0,-27],[-3,-32],[-2,-28],[-1,-9],[-2,-19],[-7,-28],[-8,-30],[-13,-41],[-4,-11],[-15,-36],[-9,-20],[-4,-8],[-8,-12],[-13,-24],[-12,-23],[-18,-24],[-5,-8],[-13,-21],[-22,-23],[-24,-27],[-14,-13],[-24,-23],[-52,-44],[-38,-28],[-19,-13],[-31,-13],[-15,-7],[-23,-10],[-44,-24],[-46,-22],[-38,-15],[-72,-6],[-49,1],[-21,2],[-41,5],[-35,3],[-6,1],[-16,2],[-16,1],[-21,2],[-20,4],[-11,2],[-17,-1],[-51,-2],[-77,-9],[-24,-6],[-33,-8],[-66,-18],[-2,-1],[-50,-22],[-10,-5],[-52,-37],[-6,-4],[-19,-8],[-62,-27],[-79,-36],[-66,-19],[-5,0],[-25,-3],[-63,-8],[-26,1],[-49,3],[-49,16],[-13,4],[-10,5],[-23,11],[-11,4],[-10,3],[-8,6],[-10,7],[-14,6],[-22,9],[-13,9],[-27,19],[-42,54],[-37,48],[-16,38],[-22,30],[-66,54],[-73,34],[-63,15],[-32,-3],[-28,-3],[-60,-17],[-21,-9],[-6,-2],[-9,-4],[-11,-10],[-10,-9],[-19,-18],[-40,-35],[-21,-55],[-2,-7],[1,-5],[17,-57],[15,-28],[16,-32],[5,-9],[18,-37],[13,-46],[8,-46],[0,-52],[-3,-53],[2,-10],[10,-65],[17,-61],[27,-58],[4,-7],[18,-36],[29,-47],[19,-31],[17,-22],[19,-26],[22,-24],[15,-16],[4,-4],[11,-4],[30,-11],[13,-5],[31,-12],[31,-20],[43,-31],[79,-64],[52,-35],[54,-43],[23,-18],[27,-31],[21,-26],[13,-18],[2,-3],[18,-31],[21,-58],[20,-48],[13,-35],[8,-30],[4,-39],[0,-36],[-1,-44],[-18,-58],[-14,-35],[-10,-26],[-36,-63],[-23,-39],[-21,-23],[-7,-7],[-29,-25],[-15,-12],[-27,-24],[-37,-28],[-37,-24],[-29,-15],[-27,-17],[-34,-15],[-39,-20],[-51,-21],[-53,-24],[-30,-7],[-25,-9],[-94,-30],[-26,-8],[-21,-2],[-18,0],[-30,-3],[-27,3],[-6,1],[-15,3],[-19,11],[-23,8],[-5,0],[-20,0],[-16,-1],[-22,-7],[-22,-2],[-17,7],[-27,10],[-22,-10],[-10,-19],[-11,-18],[-28,-25],[-39,-28],[-23,-4],[-10,-17],[-12,-16],[-26,-21],[-19,-5],[-1,-37],[-3,-99],[-7,-286],[-9,-342]],[[53636,50668],[-99,1],[-149,1],[-204,0],[-6,-17],[-2,-7],[-7,-21],[-15,-26],[-20,-28],[-13,-14],[-26,-19],[-19,-13],[-17,-13],[-16,-10],[-17,-9],[-16,-13],[-31,-18],[-24,-8],[-27,-15],[-17,-9],[-24,-11],[-14,-8],[-20,-9],[-15,-7],[-23,-2],[-18,0],[-7,0],[-20,13],[-22,7],[-24,11],[-20,10],[-39,11],[-64,32],[-23,11],[-5,3],[-45,21],[-66,48],[-48,43],[-36,41],[-28,24],[-17,15],[-27,17],[-15,10],[-3,1],[-65,28],[-43,11],[-37,2],[-23,-1],[-30,-3],[-25,-19],[-26,-20],[-10,-5],[-22,-12],[-55,2],[-20,1],[-83,3],[-47,1],[-112,4],[-49,2],[-20,1],[-116,9],[-136,10],[-26,2],[-162,12],[-147,10],[-105,8],[-179,13],[-109,15],[-19,-5],[-167,12],[-24,2],[3,57],[5,134],[2,32],[1,42],[2,36],[2,57],[10,240],[6,145],[15,379],[3,64],[4,115],[8,187],[3,82],[5,131],[5,118],[-41,1],[-135,5],[-57,3],[-94,3],[-243,10],[-183,7],[-83,3],[-54,3],[-77,3],[-207,8],[-200,8]],[[66000,58546],[0,-23],[0,-22],[0,-9],[0,-29],[0,-31],[0,-98],[-1,-31],[12,-19],[0,-23],[2,-29],[-1,-350],[0,-33],[0,-32],[0,-2],[-1,-156],[0,-86],[-4,-120],[-1,-145],[1,-38],[-1,-179],[0,-82],[-1,-72],[3,-43],[-1,-171],[0,-28],[0,-117],[0,-30],[-1,-94],[1,-29],[0,-62],[8,-41],[1,-95],[0,-29],[2,-97],[0,-48],[0,-11],[0,-39],[2,-104],[-1,-79],[1,-86],[-1,-90],[-4,-145],[0,-31],[-2,-40],[1,-36],[-1,-160],[-1,-97],[0,-140],[-1,-132],[-2,-248],[0,-27],[0,-26],[1,-57],[0,-73],[13,-202],[0,-40],[0,-26],[0,-268],[1,-94],[0,-58],[0,-33],[-1,-78],[0,-64],[0,-22],[0,-152],[0,-51],[0,-5],[-1,-136],[0,-87],[0,-4],[0,-135],[-1,-26],[0,-36],[0,-51],[0,-30],[0,-23],[0,-24],[1,-43],[0,-47],[0,-31],[0,-31],[0,-24],[-1,-22],[0,-34],[0,-23],[0,-25],[14,-10],[0,-27],[0,-122],[1,-23],[0,-23],[0,-32],[0,-25],[0,-37],[-1,-22],[0,-32],[0,-28],[0,-39],[-1,-31],[1,-33],[0,-30],[-1,-14],[0,-21],[0,-25],[0,-14],[1,-47],[0,-77],[1,-107],[0,-112],[1,-43],[-1,-25],[-1,-31],[0,-32],[0,-31],[2,-87],[1,-93],[-1,-126],[-1,-137],[-1,-75],[0,-51],[-2,-114],[0,-141],[23,-10],[-1,-134],[-1,-69],[-1,-108],[0,-56],[-1,-53],[0,-53],[-2,-160],[-1,-52],[0,-145],[0,-34],[0,-29],[-1,-105],[0,-34],[-4,-49],[-1,-60],[-2,-309],[0,-10],[0,-18],[-1,-66],[-2,-89],[-3,-37],[0,-27],[0,-30],[-2,-26],[5,-160],[-1,-48],[0,-51],[-1,-44],[-1,-19],[0,-21],[0,-17],[-1,-31],[0,-29],[-1,-49],[0,-2],[-1,-81],[-5,-255],[-1,-76]],[[66026,47944],[-73,1],[-23,1],[-39,0],[-22,0],[-18,0],[-18,0],[-16,1],[-24,-1],[-29,0],[-21,1],[-27,0],[-15,0],[-40,1],[-32,0],[-27,1],[-15,0],[-33,-1],[-23,1],[-21,0],[-18,-1],[-22,0],[-19,1],[-20,0],[-15,1],[-22,0],[-32,0],[-18,1],[-37,0],[-34,1],[-16,1],[-61,-6],[-3,0],[-27,0],[0,36],[-72,-8],[-22,-2],[-18,-2],[-27,-3],[-21,-1],[-18,-2],[-23,-4],[-18,-2],[-28,-1],[-71,1],[-35,0],[-3,0],[-42,0],[-134,2],[-20,0],[-17,1],[-19,0],[-19,2],[-17,0],[-33,2],[-22,1],[-78,1],[-32,-1],[-40,0],[-45,1],[-17,0],[-15,0],[-25,1],[-31,0],[-16,0],[-31,0],[-32,0],[-86,3],[-35,0],[-33,-1],[-201,0],[-97,0],[-32,0],[-109,-1],[-16,1],[-1,0],[0,-2],[-1,-1],[-2,-60],[2,-240],[0,-34],[1,-57],[1,-117],[2,-155],[1,-113],[1,-32],[0,-52],[1,-45],[0,-42],[2,-119],[0,-44],[1,-74],[1,-77]],[[63525,46707],[-60,-3],[-33,1],[-15,0],[-15,0],[-20,0],[-118,2],[-102,1],[-112,2],[-11,0],[-37,0],[-129,1],[-35,0],[-47,4],[-92,6],[-105,0],[-85,0],[-82,1],[-17,0],[-127,2],[-118,0],[-27,1],[-54,2]],[[62084,46727],[-31,0],[-168,3],[-15,0],[1,39],[-1,57],[0,26],[0,65],[-1,24],[1,29],[0,247],[0,74],[1,24],[0,62],[-1,43],[-1,191],[0,41],[1,44],[-1,24],[0,40],[0,53],[0,32],[0,23],[0,65],[0,31],[0,24],[0,31],[0,28],[2,162],[0,42],[0,99],[0,22],[0,23],[-1,59],[0,61],[1,41],[0,29],[0,60],[0,23],[1,63],[0,58],[-1,28],[0,22],[0,22],[1,41],[0,44],[0,55],[0,26],[0,49],[0,5],[0,18],[2,35],[-1,34],[-1,66],[0,23],[1,43],[0,67],[1,22],[0,34],[0,32],[0,35],[0,40],[0,28],[-1,45],[0,24],[-1,23]],[[61872,49650],[0,130],[1,90],[0,25],[0,50],[0,25],[0,2],[0,30],[1,192],[0,59],[1,317],[1,51],[1,277],[0,42],[0,127],[0,24],[-1,27],[2,26],[0,102],[0,152],[-3,125],[1,65],[2,211],[1,79],[4,299],[0,88],[0,22],[0,13],[1,20],[2,241],[1,27],[1,149],[1,117],[1,27],[1,124],[1,94],[1,50],[1,173],[0,7],[1,89],[1,80],[0,1],[1,25],[1,147],[1,76],[1,114],[0,7],[0,16],[1,37],[1,148],[1,110],[1,51],[2,56],[1,39],[0,21],[-1,23],[0,27],[0,42],[-1,117],[0,35],[0,76],[0,56],[0,84],[2,132],[0,31],[0,188],[1,81],[0,42],[2,22],[0,26],[0,97],[0,37],[0,129],[0,62],[4,356],[0,60],[0,32],[2,165],[1,84],[1,146],[0,35],[1,29],[1,37],[0,29],[1,25],[1,59],[2,74],[0,17],[0,9],[1,27],[1,31],[-3,69],[0,33],[3,149],[-1,30],[-2,84],[-1,51],[3,74],[0,50],[1,68],[1,57],[1,39],[1,25],[4,118],[0,17],[1,9],[0,15],[0,104],[0,138],[0,12],[3,29],[1,8],[1,5],[-2,172],[-1,47],[1,51],[0,36],[0,76],[-1,119],[1,45],[0,20],[0,18],[0,6]],[[75481,53507],[0,-24],[0,-43],[0,-41],[0,-33],[-1,-32],[-2,-119],[-3,-102],[0,-39],[-2,-139],[-1,-58],[0,-32],[-1,-115],[-2,-61],[-3,-125],[-1,-83],[-3,-62],[-21,-169],[-3,-22],[-6,-48],[-26,-181],[-37,-262],[-24,-161],[-6,-32],[-12,-73],[-12,-89],[-13,-75],[-10,-59],[-5,-27],[-4,-55],[-3,-30],[-7,-26],[-15,-96],[-17,-116],[-14,-97],[-11,-73],[-6,-39],[-8,-57],[-4,-26],[-6,-37],[-6,-46],[-11,-75],[-37,-253],[-19,-136],[-5,-31],[-4,-32],[-21,-144],[-4,-26],[-17,-121],[-31,-212],[-12,-84],[-12,-85],[-4,-28],[-43,-299],[-24,-160],[-4,-91],[-15,-118],[-4,-29],[-15,-109],[-13,-129],[-26,-172],[-31,-246],[-10,-101]],[[74824,47822],[-26,1],[-131,-4],[-213,6],[-80,0],[-82,-1],[-18,1],[-23,-1],[-22,2],[-232,6],[-67,3],[-110,5],[-163,0],[-86,0],[-146,1],[-23,-2],[-72,1],[-28,1],[-46,-3],[-114,4],[-16,0],[-33,-2],[-68,1],[-88,1],[-239,3],[-109,1],[-69,1],[-276,2],[-98,2],[-168,1],[0,26],[-129,-23],[-25,-4],[-5,-1],[-19,-4],[-114,-20],[-157,-4],[-50,0],[-80,0],[-183,-1],[-135,0],[-312,0],[-90,0],[-99,0],[-196,1],[-107,0],[-39,-1],[-114,1],[-28,0]],[[70096,47822],[-22,0],[-2,0],[-25,0],[-18,0],[-86,-2],[-63,1],[-136,1],[-67,1],[-21,2],[-232,-1],[-62,0],[-57,0],[-134,0],[-29,-1],[-29,0],[-21,0],[-16,0],[-16,0],[-18,0],[-18,0],[-20,0],[-13,-1],[-6,0],[-26,0],[-16,0],[-16,0],[-21,0],[-20,0],[-11,0],[-13,0],[-91,0],[-31,0],[-17,0],[-165,0],[-15,0],[-135,0],[-177,0],[-29,0],[-20,-1],[-61,1],[-55,0],[-150,0],[-98,0],[-10,0],[-25,-1],[-49,2],[-30,0],[-203,0],[-78,-1],[-255,-2],[-124,0],[-174,1],[-62,0],[-104,0],[-249,0],[-29,0],[-8,0],[-57,-1],[-10,0],[-17,1],[-17,0],[-26,0],[-67,2],[-58,-1],[-136,-1],[-6,37],[1,46],[1,40]],[[61872,49650],[-30,-1],[-55,1],[-58,0],[-53,1],[-108,0],[-77,0],[-46,-3],[-51,3],[-46,1],[-29,1],[-15,0],[-32,0],[-33,0],[-35,1],[-16,0],[-64,0],[-33,1],[-32,0],[-27,1],[-51,1],[-47,2],[-22,1],[-26,1],[-10,0],[-7,1],[-58,1],[-29,1],[-33,1],[-20,0],[-2,0],[-17,0],[-16,0],[-27,-2],[-78,0],[-163,-3],[-114,-2],[-19,0],[-80,-3],[-28,-1],[-2,30],[-92,13],[-42,8],[-35,6],[-30,5],[-26,4],[-18,3],[-25,4],[-44,1],[-26,0],[-122,4],[-66,1],[-67,2],[-113,3],[-184,5],[-192,5],[-86,2],[-70,2],[-167,4],[-168,4],[-7,-2],[-36,-13],[-147,-33],[-131,-32],[-20,0],[-80,-2],[-31,0],[-149,-3],[-27,0],[-73,0],[-17,0],[-81,0],[-22,0],[-51,0],[-115,0],[-2,0],[-25,1],[-57,-2],[-187,1],[-44,1],[-23,0],[-49,0],[-71,1],[-33,-1],[-66,-1],[-106,-1],[-230,-19],[-51,-1],[-2,0],[-26,0],[-64,2],[-25,1],[-17,0],[-81,-12],[-71,-3],[-24,0],[-52,5],[-21,2],[-66,3],[-31,2],[-17,1],[-24,0],[-18,1],[-25,1],[-79,2],[-105,3],[-55,2],[-24,0],[-159,5],[-80,3],[-22,0],[-25,1],[-139,4],[-31,1],[-67,2],[-144,4],[-104,3],[-21,1],[-387,11],[-160,5],[-36,1],[-59,2],[-53,1],[-164,5],[-5,0],[-100,3],[-105,3],[-83,3],[-19,0],[-19,1],[-170,5],[-62,2],[-20,0]],[[53618,49730],[6,284],[0,29],[1,44],[5,254],[3,179],[1,26],[2,122]],[[47184,52730],[-76,4],[-4,-82],[-1,-120],[-9,-281],[-1,-39],[-5,-150],[-1,-51],[-2,-38],[-4,-124],[-3,-118],[-2,-67],[-5,-141],[0,-27],[-2,-97],[-3,-111],[0,-9],[-2,-131],[-9,-213],[-43,1],[-60,1],[-35,0],[-67,1],[-44,2],[-151,0],[-54,3],[-16,1],[-21,1],[-19,0],[-20,0],[-42,1],[-20,1],[-248,1],[-1,-59],[-2,-55],[-4,-155],[-3,-134],[-3,-108],[-3,-93],[-2,-110],[-2,-41],[-2,-66],[-1,-42],[-1,-54],[-4,-83],[-2,-55],[-2,-58],[-2,-26],[-1,-29],[-1,-38],[-1,-47],[-4,-112],[-5,-153],[-2,-85],[-3,-80],[-1,-33],[-4,-140],[-2,-35],[-13,-241],[-1,-24],[-3,-57],[-1,-29],[-1,-28],[-5,-159],[-2,-75],[-1,-27],[-1,-53],[-1,-32],[-1,-24],[-1,-40],[-1,-33],[0,-17],[-1,-8]],[[46124,48210],[-168,-22],[-75,27],[-2,0],[-11,11],[-114,2],[-78,-16],[-25,-12],[-33,1],[-56,2],[-12,0],[-22,-1],[-4,-3],[-100,-61],[-229,-235],[-20,-21],[-3,-2],[-14,-74],[-9,-45],[-16,-123],[-42,-132],[-10,1],[-68,4],[-75,4],[-22,1],[-39,2],[-39,2],[-84,5],[-78,4],[-94,6],[-91,5],[-19,1],[-67,4],[-60,3],[-31,2],[-1,0],[-43,2],[-43,3],[-144,11],[-22,-1],[-52,2],[-35,2],[-42,3],[-127,7],[-18,1],[-25,1],[-116,7],[-64,3],[-29,0],[-67,6],[-48,3],[-78,4],[-58,3],[-103,6],[-114,6],[-68,4],[-169,9],[-21,1],[-169,10],[-170,9],[-28,2],[-95,5],[-95,6],[-21,1],[-10,0],[-80,5],[11,36],[23,47],[66,66],[33,34],[72,38],[108,58],[27,18],[40,45],[13,42],[11,46],[-1,98],[0,21],[-27,69],[-49,58],[-29,18],[-14,6],[-83,3],[-9,5],[-33,20],[-53,2],[-10,1],[-69,-22],[-46,-26],[-12,-12],[-53,-58],[-30,-40],[-11,-35],[-8,-8],[-2,-10],[-19,-62],[-3,-5],[-10,-40],[-2,-57],[-8,-30],[-22,-75],[-3,-11],[-18,-58],[-46,-82],[-67,-116],[-3,-5],[-36,-55],[-64,-92],[-35,-35],[-7,-7],[-104,1],[-11,-2],[-69,-6],[-26,4],[-109,80],[-26,30],[-49,83],[-12,60],[1,60],[23,50],[50,55],[42,32],[33,23],[61,25],[18,5],[23,7],[40,9],[39,2],[50,14],[36,-2],[12,1],[20,6],[27,0],[7,2],[30,31],[8,19],[1,54],[-6,30],[-12,28],[-20,24],[-3,4],[-2,2],[-29,18],[-41,12],[-32,0],[-85,-24],[-25,23],[-46,16],[-24,14],[-1,2],[-38,48],[-13,63],[-8,57],[-17,95],[-7,17],[-7,13],[0,10],[-1,36],[-27,74],[-98,123],[-31,28],[-76,46],[-63,62],[-38,45],[-50,62],[-26,62],[-35,52],[-54,67],[-33,31],[-21,15],[-12,8],[-84,25],[-58,2],[-74,-25],[-69,-35],[-17,-8],[-47,-50],[-64,-130]],[[40402,49046],[1,22],[1,23],[1,22],[1,33],[2,32],[1,22],[1,27],[1,25],[1,23],[0,14],[1,12],[1,25],[0,16],[1,6],[0,24],[2,28],[0,25],[2,67],[3,82],[1,45],[2,62],[1,25],[1,57],[2,52],[3,96],[0,23],[2,56],[1,46],[3,67],[2,83],[2,46],[2,70],[1,39],[3,98],[1,29],[1,26],[3,86],[1,49],[2,40],[1,27],[2,55],[0,24],[1,26],[1,40],[1,23],[2,37],[2,34],[2,51],[0,23],[1,54],[0,23],[1,32],[0,29],[2,58],[1,22],[1,49],[4,146],[2,49],[1,47],[1,31],[3,56],[2,22],[1,24],[1,31],[1,24],[1,27],[2,39],[5,119],[1,40],[1,24],[3,74],[1,24],[2,38],[6,113],[2,38],[1,34],[2,63],[1,30],[2,57],[3,71],[3,61],[0,26],[3,68],[1,22],[1,22],[3,65],[1,22],[0,10],[0,14],[1,33],[0,22],[1,53],[1,32],[0,32],[-38,0],[-10,28],[1,37],[3,93],[0,23],[1,13],[0,11],[1,23],[5,118],[1,40],[1,23],[1,27],[2,44],[1,24],[3,71],[8,214],[3,72],[2,47],[6,140],[2,47],[0,27],[1,22],[1,10],[0,12],[1,27],[1,29],[1,28],[2,32],[2,42],[3,66],[1,22],[2,51],[1,32],[1,37],[2,35],[1,31],[3,109],[1,35],[1,29],[1,27],[1,33],[1,24],[1,47]],[[33889,54500],[-4,-43],[-1,-27],[0,-21],[0,-43],[0,-23],[-1,-50],[0,-23],[-2,-40],[-1,-23],[0,-25],[-1,-22],[-3,-97],[-1,-32],[-1,-23],[-2,-68],[-1,-22],[-1,-40],[-1,-23],[-3,-77],[-3,-60],[0,-25],[-1,-37],[-1,-36],[0,-24],[-3,-79],[-1,-27],[0,-24],[-2,-33],[0,-23],[-1,-22],[0,-26],[-1,-21],[-1,-31],[0,-23],[0,-24],[22,-19],[24,-1],[0,-31],[-1,-59],[0,-26],[1,-38],[0,-25],[-2,-58],[-3,-97],[-1,-26],[-1,-41],[-1,-40],[-1,-23],[-2,-57],[-2,-58],[-2,-28],[0,-29],[-1,-24],[-1,-39],[-1,-31],[-2,-44],[-1,-24],[-1,-27],[-1,-32],[-2,-50],[-1,-30],[-1,-27],[0,-29],[-2,-25],[-1,-23],[-2,-33],[1,-29],[-1,-53],[-1,-31],[-2,-42],[-1,-34],[-1,-29],[-2,-44],[-1,-32],[-3,-68],[-1,-23],[-1,-40],[-1,-29],[-4,-93],[-1,-41],[-1,-26],[-2,-40],[-1,-23],[-1,-31],[-2,-70],[-5,-145],[-2,-48],[-1,-39],[-2,-59],[-3,-58],[-1,-39],[-2,-54],[-1,-32],[-1,-22],[-1,-26],[0,-24],[0,-3],[-1,-26],[-1,-18],[0,-4],[-1,-34],[-2,-41],[-1,-27],[0,-22],[-1,-22],[0,-6],[-2,-60],[-2,-36],[-2,-62],[-1,-22],[-1,-34],[-1,-43],[-1,-35],[-2,-61],[-3,-67],[-4,-115],[-1,-45],[-1,-26],[0,-26],[-1,-25],[-2,-50],[-2,-25],[-1,-24],[-1,-34],[-1,-32],[-1,-24],[0,-34],[-2,-36],[-1,-27],[-2,-54],[-1,-27],[0,-26],[-1,-22],[-2,-43],[-1,-26],[-1,-26],[-2,-47],[-1,-26],[1,-25],[-1,-27],[0,-7],[-1,-24],[-1,-37],[-1,-25],[0,-26],[-1,-23],[0,-6],[-1,-22],[-1,-26],[-1,-45],[-1,-27],[0,-20],[-1,-23],[-2,-76],[-1,-26],[-1,-25],[-1,-36],[-2,-37],[-1,-35],[-1,-24],[-1,-31],[-1,-23],[0,-23],[-1,-22],[0,-37],[-1,-66],[-1,-36],[-1,-34],[-2,-56],[-1,-23],[-1,-28],[0,-24],[-2,-44],[-2,-68],[-5,-155],[-2,-60],[-1,-25],[-1,-36],[-1,-33],[0,-5]],[[33728,47951],[-9,0],[-7,1],[-36,6],[-44,-2],[-20,-7],[-99,3],[-36,6],[-4,6],[-67,2],[-35,1],[-95,67],[-95,90],[-51,1],[-14,-5],[-42,-45],[-3,-89],[0,-43],[3,-44],[16,-41],[47,-87],[12,-15],[-10,0],[-24,0],[-25,0],[-31,0],[-16,0],[-31,0],[-18,1],[-15,1],[-16,0],[-20,-1],[-19,2],[-56,2],[-135,7],[-29,1],[-19,1],[-31,1],[-54,3],[-133,7],[-16,0],[-27,2],[-33,3],[-19,1],[-33,2],[-20,1],[-118,4],[-144,2],[-32,2],[-33,2],[-16,0],[-25,1],[-18,1],[-26,1],[-28,2],[-19,1],[-21,0],[-20,1],[-16,1],[-30,1],[-31,2],[-57,2],[-19,1],[-38,1],[-23,1],[-39,1],[-40,2],[-25,1],[-23,1],[-20,1],[-46,2],[-47,1],[-16,0],[-26,2],[-31,1],[-28,2],[-23,0],[-29,2],[-24,1],[-28,1],[-41,1],[-43,1],[-19,1],[-16,1],[-25,0],[-15,1],[-17,1],[-17,0],[-25,2],[-23,1],[-22,1],[-19,0],[-26,1],[-19,1],[-32,1],[-27,1],[-37,2],[-39,1],[-32,0],[-59,2],[-27,1],[-29,1],[-30,1],[-33,1],[-34,1],[-18,1],[-25,1],[-20,1],[-18,0],[-36,2],[-22,0],[-17,-1],[-6,-4],[-10,-6],[-20,4],[-16,10],[-20,0],[-38,1],[-28,1],[-25,1],[-17,0],[-19,1],[-16,0],[-32,1],[-20,1],[-30,1],[-47,2],[-66,1],[-51,2],[-15,1],[-19,0],[-27,1],[-27,1],[-22,1],[-29,2],[-20,1],[-8,0],[-17,1],[-21,1],[-29,1],[-17,1],[-40,0],[-40,2],[-244,15],[-75,4],[-32,-2],[-18,1],[-20,1],[-48,2],[-25,1],[-19,1],[-33,1],[-33,2],[-30,1],[-16,1],[-29,1],[-20,1],[-16,1],[-52,2],[-29,1],[-86,4],[-31,1],[-23,1],[-76,3],[-26,1],[-22,1],[-58,3],[-67,1],[-92,4],[-10,0],[-20,1],[-84,4],[-31,1],[-64,3],[-41,2],[-28,2],[-10,0],[-25,1],[-23,1],[-24,1],[-26,1],[-27,1],[-28,0],[-18,1],[-30,2],[-19,1],[-28,1],[-28,1],[-25,1],[-35,1],[-15,1],[-39,2],[-21,1],[-17,0],[-52,2],[-37,2],[-17,1],[-23,0],[-22,1],[-26,1],[-17,1],[-79,3],[-26,1],[-38,1],[-27,1],[-20,1],[-34,1],[-40,1],[-18,1],[-19,1],[-25,1],[-87,3],[-39,2],[-27,1],[-32,1],[-19,1],[-21,0],[-17,1],[-24,1],[-68,2],[-20,2],[-28,0],[-20,1],[-33,1],[-30,1],[-35,1],[-21,1],[-68,2],[-26,1],[-27,1],[-18,0],[-22,1],[-66,2],[-14,1],[-26,1],[-11,0],[-7,0],[-25,1],[-23,1],[-16,0],[-48,1],[-16,1],[-18,0],[-19,1],[-25,1],[-63,2],[-41,2],[-60,2],[-50,2]],[[25840,48036],[-31,0],[-26,1],[-48,2],[-20,0],[-15,1],[-21,0],[-34,1],[-19,1],[-30,1],[-21,1],[-16,0],[-27,1],[-25,1],[-28,1],[-19,0],[2,57],[6,257],[1,37],[0,41],[2,53],[1,46],[1,29],[1,33],[2,62],[0,30],[1,36],[1,28],[1,33],[1,37],[2,71],[0,58],[1,36],[2,79],[0,4],[1,19],[2,58],[1,39],[1,31],[1,23],[1,22],[0,22],[10,330],[1,29],[1,28],[2,85],[3,106],[2,44],[7,178],[0,24],[1,31],[3,54],[0,27],[1,26],[1,26],[5,204],[2,48],[1,32],[1,47],[1,42],[3,101],[4,100],[0,23],[5,145],[2,66],[1,33],[1,35],[1,35],[6,266],[2,39],[2,22],[1,44],[1,33],[1,35],[1,22],[0,21],[1,38],[2,46],[1,26],[0,25],[1,32],[1,31],[1,38],[1,35],[1,31],[1,25],[0,28],[2,42],[0,35],[1,27],[1,31],[0,37],[1,31],[1,23],[-1,29],[1,34],[3,100],[3,100],[7,242],[2,69],[2,69],[0,28],[4,105],[0,30],[1,26]],[[40402,49046],[0,-22],[-1,-24],[-1,-22],[-2,-23],[-2,-22],[-3,-35],[-2,-38],[-2,-43],[0,-24],[0,-50],[0,-44],[-1,-23],[-2,-41],[-1,-23],[-1,-34],[-1,-27],[-1,-23],[-2,-36],[-1,-27],[-1,-23],[-1,-24],[-1,-28],[-1,-25],[-1,-32],[-1,-29],[-2,-23],[-1,-38],[-1,-23],[-2,-44],[-1,-28],[-2,-55],[-1,-25],[-1,-30],[-1,-35],[-1,-23],[-2,-39],[-1,-34],[-4,-90],[-2,-40],[-3,-69],[-1,-45],[-1,-28],[-3,-52],[-1,-28],[-3,-86],[-1,-28],[19,-1],[25,-1],[36,-2],[26,-2],[32,-1],[102,-5],[106,-6],[-2,-33],[-1,-51],[-2,-49],[-2,-66],[-1,-29],[-1,-25],[-1,-36],[-2,-39],[-1,-34],[-1,-25],[-1,-23],[-1,-45],[-2,-36],[-2,-63],[-1,-33],[-2,-49],[-1,-38],[-2,-65],[-2,-51],[-1,-43],[-1,-34],[-2,-67],[-1,-26],[-1,-23],[-1,-46],[-1,-24],[-1,-34],[-3,-98],[-1,-54],[-2,-74],[-5,-91],[-2,-53],[-2,-36],[-1,-27],[-1,-32],[-2,-31],[-3,-85],[-1,-24],[0,-28],[-2,-55],[-4,-99],[-1,-38],[-1,-19],[-3,-58],[-1,-34],[-1,-44],[0,-24],[-2,-36],[-3,-106],[-2,-52],[-2,-49],[-1,-33],[-2,-64],[-2,-32],[-1,-26],[-3,-91],[0,-29],[-1,-59]],[[40592,44755],[-26,0],[-29,1],[-39,0],[-82,1],[-27,0],[-18,0],[-20,0],[-54,0],[-52,1],[-77,0],[-46,1],[-46,0],[-26,0],[-38,0],[-43,1],[-38,0],[-41,0],[-23,1],[-38,0],[-36,-1],[-25,0],[-68,3],[-220,8],[-41,0],[-125,2],[-53,1],[-47,2],[-38,1],[-92,3],[-23,0],[-38,1],[-16,0],[-22,1],[-17,2],[-15,4],[-15,0],[-24,0],[-37,0],[-92,1],[-103,1],[-130,4],[-27,2],[-16,0],[-130,3],[-44,2],[-15,0],[-36,0],[-19,1],[-39,-1],[-17,2],[-52,3],[-28,0],[-195,3],[-63,1],[-56,1],[-107,4],[-54,2],[-32,1],[-18,1],[-29,1],[-36,1],[-119,4],[-36,2],[-41,1],[-16,1],[-11,0],[-55,2],[-18,1],[-149,5],[-56,2],[-16,1],[-48,2],[-26,1],[-30,1],[-16,0],[-31,1],[-31,2],[-93,3],[-34,1],[-15,1],[-10,0],[-8,1],[-18,0],[-21,1],[-17,1],[-18,1],[-18,1],[-23,1],[-19,0],[-16,1],[-38,2],[-19,1],[-23,0],[-15,1],[-24,1],[-23,1],[-26,1],[-44,2],[-16,1],[-16,1],[-48,5],[-20,1],[-37,0],[-30,2],[-29,2],[-17,2],[-52,0],[-24,1],[-42,0],[-42,2],[-80,4],[-45,3],[-184,17],[-46,2],[-136,5],[-51,2],[-27,1],[-28,1],[-23,1],[-25,1],[-20,1],[-47,2],[-17,0],[-52,2],[-24,1],[-35,1],[-16,0],[-44,1],[-17,0],[-18,1],[-15,1],[-25,1],[-18,3],[-15,1],[-19,1],[-19,-1],[-18,1],[-23,1],[-17,4],[-27,1],[-25,1],[-37,-1],[-101,5],[-66,3],[-195,8],[-20,1],[-4,0],[-18,1],[-110,5],[-97,6],[-20,1],[-13,-2],[-2,0],[-19,-3],[-27,-5],[-24,-3],[-18,-5]],[[34018,44956],[0,3],[1,24],[1,44],[1,24],[1,24],[2,57],[3,75],[0,45],[2,49],[1,24],[1,43],[-1,24],[3,35],[1,34],[1,34],[3,99],[1,25],[0,22],[2,60],[0,4],[2,66],[8,267],[5,72],[3,87],[2,66],[2,52],[1,42],[2,32],[0,13],[3,71],[2,36],[2,29],[1,27],[1,30],[0,26],[3,53],[3,26],[1,8],[-2,21],[3,29],[1,28],[2,58],[2,36],[2,60],[2,57],[2,47],[1,22],[1,45],[2,37],[2,51],[3,94],[4,95],[4,118],[2,65],[2,53],[-9,90],[-14,0],[-17,3],[-19,0],[-64,3],[-28,1],[-39,1],[-16,1],[-15,0],[-16,0],[-56,4],[11,26],[3,24],[2,73],[-17,49],[-4,11],[-42,40],[-47,1]],[[81383,51782],[-68,-158],[-12,-22],[-26,-45],[-27,-71],[-39,-110],[-17,-69],[-11,-57],[-5,-6],[-2,-33],[-2,-27],[-38,-88],[-10,-16],[-19,-31],[-35,-73],[-16,-66],[-13,-46],[-3,-14],[-16,-57],[-36,-76],[-23,-48],[-15,-86],[1,-31],[2,-50],[-8,-154],[-11,-55],[-5,-13],[-3,-99],[0,-96],[8,-47],[7,-15],[-8,-150],[-8,-49],[-3,-63],[3,-195],[4,-6],[23,-153],[12,-122],[7,-65],[23,-164],[1,-29],[3,-38],[5,-44],[9,-24],[12,-67],[9,-123],[2,-23],[-3,-6],[10,-15],[9,-64],[5,-42],[6,-46],[35,-165],[27,-69],[10,-26],[37,-87],[20,-62],[6,-27],[0,-6],[25,-56],[83,-154],[41,-55],[31,-51],[55,-103],[25,-57],[31,-54],[0,-6],[46,-58],[15,-10],[19,-21],[37,-48],[31,-41],[54,-65],[25,-16],[119,-54],[80,-11],[28,-8],[44,-12],[43,-20],[33,-11],[65,-48],[51,-56],[95,-119],[14,-27],[124,-151],[10,-22],[9,-20],[18,-45],[22,-65],[28,-57],[89,-174],[13,-16],[41,-52],[86,-160]],[[82727,46170],[-29,-19],[-20,-14],[-1,-1],[5,-26],[7,-20],[28,-79],[6,-23],[8,-22],[11,-17],[31,-45],[-4,-21],[-15,-9],[-17,11],[-16,19],[-18,16],[-26,14],[-17,-10],[-1,-1],[-6,-32],[-17,-3],[-12,-15],[-5,-22],[-2,-36],[-10,-21],[-6,-22],[-11,-18],[-14,-23],[-30,-18],[-14,10],[-15,14],[-23,-12],[-22,9],[-16,-12],[-21,-26],[-15,-5],[-27,-10],[-15,11],[-9,-22],[-21,-9],[-14,9],[-16,-5],[-14,-11],[-12,-20],[13,-13],[11,-27],[-2,-27],[-1,-26],[-19,-8],[-17,-15],[-20,-18],[-11,-17],[-16,-27],[-20,-16],[-6,-29],[-5,-21],[-16,6],[-17,-4],[-29,-14],[-6,-14],[-5,-14],[-15,-20],[-12,-13],[-18,-10],[-14,9],[-12,16],[-19,2],[-10,3],[-8,2],[-16,5],[-19,1],[-25,2],[-22,9],[-16,9],[-18,1],[-14,16],[-16,2],[-15,-3],[-25,17],[-17,-5],[-19,5],[-22,10],[-18,3],[2,24],[-19,10],[-20,8],[-16,5],[-16,-8],[-16,-8],[-16,-12],[-17,0],[-15,6],[-17,-2],[-17,-2],[-16,10],[-184,-158],[-116,-100],[-23,-20],[-72,-64],[-15,-14],[-63,-55],[-51,-44],[-67,-58],[-18,-16],[-19,-16],[-53,-45],[-49,-43],[-41,-36],[-71,-62],[-34,-29],[-16,-15],[-55,-47],[-65,-57],[-87,-76],[-42,-38],[-144,-123],[-8,-7]],[[80280,44319],[-19,6],[-18,-5],[-34,-11],[-27,-10],[-29,-8],[-121,-41],[-266,-90],[-31,-10],[-20,-7],[-112,-38],[-168,-58],[-118,-40],[-5,-2],[-97,-33],[-66,-22],[-20,-7],[-109,-39],[-18,-6],[-219,-75],[-34,-11],[-43,-15],[-98,-33],[-143,-49],[-40,-14],[-348,-119],[-93,-32],[-57,-19],[-133,-46],[-21,-7],[-21,2],[-36,5],[-65,9],[-159,23],[-222,31],[-4,3],[0,2],[-13,8],[-13,4],[-7,1],[-12,-3],[-15,-6],[-11,-4],[-23,-5],[-32,-4],[-14,0],[-8,4],[-8,6],[-5,7],[-4,7],[-1,5],[0,42],[6,24],[4,9],[5,7],[22,11],[32,16],[12,2],[1,0],[26,1],[51,7],[41,13],[11,6],[10,12],[6,9],[2,5],[3,14],[0,3],[-1,22],[-2,7],[-1,2],[-2,9],[-3,4],[-22,25],[-9,11],[-6,9],[-9,20],[-1,4],[-2,7],[-1,11],[0,31],[3,37],[2,12],[1,20],[0,4],[-4,31],[-3,13],[0,2],[-3,11],[-29,108],[-10,32],[0,5],[1,45],[0,3],[-7,85],[-4,51],[-2,22],[18,126],[7,38],[26,86],[7,22],[42,61],[19,56],[2,11],[4,39],[-1,58],[0,4],[-1,6],[0,5],[-2,12],[-1,4],[0,1],[-6,11],[-3,7],[-4,7],[-5,9],[-3,3],[-7,8],[-12,10],[-4,1],[-51,5],[-63,38],[-6,0],[-38,1],[-45,2],[-13,-6],[-28,-11],[-5,-2],[-6,-2],[-13,1],[-16,7],[-5,3],[-6,9],[-1,2],[-8,12],[-3,3],[-63,15]],[[76924,45059],[-24,12],[-18,6],[-2,2],[-38,23],[-3,2],[-67,45],[-43,8],[-52,10],[-41,7],[-38,8],[2,36],[1,22],[2,33],[1,26],[28,-5],[30,-5],[4,-1],[45,34],[2,2],[23,23],[7,8],[1,2],[3,6],[3,13],[1,2],[0,18],[-3,9],[-3,4],[-21,35],[-8,12],[-8,12],[-11,11],[-1,1],[-36,25],[-13,5],[-10,-2],[-10,-7],[-8,-10],[-10,-17],[-3,-5],[1,-20],[2,-5],[4,-6],[0,-1],[0,-7],[-1,-19],[-1,-3],[-2,-11],[-4,-19],[-2,-7],[-1,-4],[-20,-54],[-14,-9],[-16,-3],[-42,-2],[-9,4],[-6,8],[-1,2],[-3,2],[-1,0],[-1,0],[-10,2],[-54,-11],[-1,-1],[-23,-6],[-37,-13],[-19,-2],[-4,2],[-23,11],[-4,3],[-4,-2],[-56,-25],[-2,0],[-2,2],[-5,15],[-5,16],[-2,16],[-1,27],[1,13],[5,11],[2,1],[12,13],[11,7],[1,1],[1,0],[17,2],[20,-3],[36,2],[19,9],[13,24],[7,24],[-10,29],[-24,41],[-35,58],[-5,26],[-6,21],[-148,207],[-14,19],[-21,32],[-38,58],[-71,110],[-27,56],[-61,90],[-84,124],[-13,20],[-31,46],[-15,21],[-27,41],[-2,2],[-41,62],[-46,68],[-30,45],[-173,259],[-24,36],[-26,36],[-63,91],[-73,96],[-30,47],[-14,22],[-20,32],[-76,108],[-105,152],[-16,23],[-189,291]],[[25840,48036],[-1,-22],[0,-26],[-2,-59],[-1,-30],[0,-31],[-1,-30],[-1,-24],[-1,-32],[0,-28],[-1,-27],[-1,-23],[-2,-52],[-1,-24],[-1,-29],[-1,-36],[0,-20],[-1,-17],[-2,-52],[-1,-26],[-1,-35],[-1,-26],[-1,-31],[-1,-23],[-1,-38],[-2,-45],[0,-22],[-1,-25],[-2,-36],[-1,-41],[-1,-40],[-2,-28],[-1,-24],[-2,-66],[-1,-28],[-1,-27],[-1,-29],[-1,-38],[-2,-64],[-2,-41],[-1,-37],[-1,-22],[-1,-43],[-2,-39],[-1,-32],[-2,-64],[-1,-25],[-1,-35],[-1,-37],[-1,-27],[-1,-25],[-1,-43],[-1,-26],[-2,-73],[-1,-15],[-1,-87],[-7,-139],[-4,-108],[-4,-110],[-2,-70],[0,-25],[-6,-163],[-1,-32],[-1,-24],[-1,-33],[-1,-36],[-2,-29],[-2,-71],[-2,-55],[-1,-34],[-1,-27],[-4,-105],[-1,-30],[-1,-27],[-1,-42],[-1,-30],[-1,-25],[-1,-27],[-1,-31],[0,-22],[-1,-26],[-2,-40],[-2,-82],[-1,-22],[-2,-51],[0,-23],[-2,-41],[-1,-36],[0,-32],[0,-28],[0,-26],[-2,-50],[-2,-65],[-1,-47],[-2,-52]],[[25714,44195],[-8,-4],[-15,-8],[-9,-21],[-2,-30],[-2,-20],[-5,-18],[-4,-8],[-6,-5],[-3,-2],[-9,-5],[-4,-1],[-6,-1],[-12,5],[-11,8],[-3,3],[-4,9],[-1,8],[0,1],[0,49],[-3,9],[-4,7],[-7,8],[-22,15],[-4,0],[-8,2],[-23,1],[-8,-2],[-3,0],[-10,-4],[-5,-6],[-1,0],[-5,-6],[-8,-10],[-1,-2],[-5,-12],[-8,-12],[-9,-10],[-5,-3],[-1,-1],[-19,-11],[-17,-6],[-24,-9],[-8,-3],[-23,-7],[-25,-3],[-14,2],[-22,9],[-2,1],[-6,4],[-5,5],[-3,2],[-13,15],[-23,39],[4,59],[15,22],[4,8],[2,8],[2,13],[-2,8],[-6,14],[-3,5],[-3,-2],[-52,-35],[-3,-2],[-2,-1],[-7,-2],[-9,-3],[-5,1],[-4,0],[-13,6],[-13,8],[-9,10],[-4,11],[-4,15],[0,11],[-4,21],[-2,6],[-14,19],[2,6],[7,18],[-39,27],[-37,26],[-17,0],[-13,-3],[-8,-7],[-2,-3],[-8,-14],[-3,-8],[-2,-18],[-3,-20],[-1,-13],[0,-21],[6,-16],[1,-15],[-8,-25],[-4,-14],[-3,-13],[-14,-23],[-8,-10],[-5,-5],[-5,-4],[-8,0],[-7,1],[-12,8],[-20,21],[-18,19],[-8,10],[-19,10],[-37,9],[-12,7],[-3,2],[-11,9],[-7,7],[-6,22],[1,13],[3,16],[4,7],[4,4],[9,7],[23,13],[10,10],[9,17],[-1,12],[-2,6],[-1,2],[-5,8],[-3,2],[-17,5],[-16,1],[-48,1],[-12,4],[-17,9],[-32,25],[-4,5],[-12,17],[-3,4],[-3,7],[-2,9],[-2,7],[-4,18],[-8,26],[-12,25],[-6,8],[-15,11],[-33,21],[-10,5],[-11,1],[-2,0],[-23,-2],[-25,-9],[-50,-21],[-2,2],[-23,-5],[-16,-2],[-32,-15],[-57,-33],[-9,-4],[-8,-4],[-6,-1],[-2,0],[-10,-1],[-13,5],[-6,3],[-8,12],[-2,3],[-4,10],[-4,8],[-2,5],[-8,12],[-3,1],[-8,4],[-8,2],[-16,1],[-9,-2],[-49,-31],[-4,-3],[-31,-42],[-33,-37],[-18,-10],[-117,-57],[-94,-44],[-37,-13],[-31,-2],[-58,5],[-14,1],[-16,-5],[-12,-8],[-20,-21],[-9,-14],[-10,-18],[-7,-20],[-6,-36],[0,-2],[0,-4],[-1,-68],[7,-42],[-10,-13],[-6,-4],[-10,0],[-14,7],[-4,5],[-2,2],[-5,12],[-1,2],[-2,9],[-1,16],[3,13],[6,12],[2,6],[1,9],[1,13],[-4,24],[-7,22],[-16,39],[-6,9],[-8,18],[-3,11],[-2,6],[-2,12],[0,15],[3,17],[0,1],[2,6],[1,5],[9,23],[1,4],[4,6],[13,14],[24,11],[14,3],[2,1],[8,4],[4,5],[4,12],[0,4],[1,11],[-2,10],[-4,9],[-6,12],[-8,8],[-40,11],[-17,1],[-8,0],[-3,0],[-7,-1],[-26,-7],[-19,-8],[-82,-35],[-7,-6],[-7,-9],[-5,-11],[-2,-24],[1,-24],[2,-21],[0,-3],[6,-18],[2,-7],[1,-3],[2,-9],[2,-13],[0,-16],[0,-8],[-1,-20],[-5,-21],[-16,-21],[-13,-12],[-14,-15],[-5,-9],[-13,-40],[-4,-25],[0,-37],[0,-2],[-1,-10],[-5,-9],[-1,-2],[-7,-6],[-9,-5],[-1,-1],[-9,-1],[-6,5],[-2,4],[-6,13],[-6,18],[-4,18],[-1,10],[-1,14],[-6,16],[0,1],[-4,8],[-6,11],[-2,3],[-10,13],[-1,2],[-14,8],[-9,3],[-14,1],[-13,-4],[-11,-8],[-10,-9],[-8,-10],[-6,-13],[-4,-14],[-1,-3],[-6,-30],[-3,-18],[2,-35],[4,-44],[17,-41],[11,-47],[0,-2],[-5,-8],[-12,-8],[-16,-5],[-6,-1],[-4,0],[-28,4],[-14,1],[-72,-9],[-39,0],[-20,4],[-18,9],[-45,14],[-10,12],[-12,19],[-2,4],[-2,11],[1,13],[5,13],[6,16],[9,15],[2,2],[9,10],[7,5],[5,2],[12,0],[22,-9],[17,-8],[34,-11],[24,-2],[13,3],[3,1],[7,8],[4,9],[1,5],[-1,10],[-2,6],[-9,10],[-14,9],[-32,10],[-15,10],[-2,1],[-7,6],[-10,15],[-12,23],[-2,6],[-1,3],[-1,4],[0,10],[3,11],[8,18],[14,15],[14,11],[12,6],[11,2],[28,1],[16,5],[18,8],[16,14],[7,9],[8,17],[1,4],[0,17],[-2,11],[-3,10],[-5,8],[-4,5],[-7,5],[-13,8],[-7,0],[-13,-2],[-21,-9],[-12,-9],[-1,-2],[-6,-10],[-1,-4],[0,-2],[0,-2],[-3,-11],[-4,-9],[-7,-10],[-6,-6],[-7,0],[-6,3],[-5,5],[-3,7],[-4,40],[-6,57],[-2,5],[-12,25],[-13,15],[-51,2],[-34,0],[-21,1],[-25,1],[-20,0],[-18,1],[-61,3],[-18,1],[-30,1],[-15,1],[-19,1],[-88,4],[-17,1],[-45,2],[-38,2],[-71,4],[-15,0],[-49,3],[-29,1],[-21,1],[-16,1],[-26,1],[-21,1],[-104,4],[-280,10],[-17,1],[-23,1],[-197,7],[-38,2],[-42,2],[-229,10],[-3,0],[-22,1],[-16,1],[-30,1],[-15,1],[-117,6],[-20,1],[-18,-2],[-53,4],[-32,2],[-218,4],[-120,5],[-55,2],[-26,1],[-74,3],[-57,1],[-20,0],[-25,1],[-34,1],[-31,1],[-107,2],[-95,6],[-40,2],[-19,0],[-41,2],[-18,1],[-21,0],[-21,2],[-19,0],[-26,1],[-16,0],[-26,1],[-17,1],[-22,0],[-27,2],[-29,0],[-18,1],[-21,1],[-20,0],[-22,1],[-30,1],[-21,1],[-18,0],[-23,1],[-20,1],[-31,1],[-27,0],[-17,1],[-44,2],[-29,1],[-23,1],[-22,0],[-16,0],[-17,0],[-18,2],[-16,0],[-25,1],[-16,1],[-15,0],[-28,1],[-22,1],[-33,1],[-21,0],[-25,0],[-19,0],[-16,0],[-16,0],[-15,1],[-16,1],[-25,1],[-20,1],[-32,2],[-23,1],[-30,1],[-20,1],[-29,2],[-16,1],[-20,2],[-62,0],[-60,-1],[-63,3],[-19,0],[-17,1],[-48,4],[-21,1],[-19,1],[-29,1],[-17,1],[-21,0],[-22,1],[-21,0],[-16,1],[-20,1],[-20,0],[-19,1],[-22,1],[-20,0],[-26,1],[-16,1],[-23,1],[-54,1],[-21,1],[-17,0],[-16,1],[-22,0],[-33,1],[-29,1],[-41,1],[-29,1],[-25,0],[-17,1],[-22,0],[-34,1],[-37,1],[-21,1],[-16,0],[-33,1],[-11,0],[-5,0],[-19,1],[-135,5],[-56,1],[-32,1],[-23,0],[-26,1],[-21,0],[-25,1],[-18,1]],[[17388,44703],[-1,34],[0,25],[0,63],[1,34],[0,9],[1,23],[0,23],[-1,28],[1,30],[0,31],[0,27],[1,136],[0,28],[0,33],[0,22],[0,34],[0,28],[0,29],[0,31],[0,31],[0,30],[2,53],[0,27],[0,66],[0,26],[0,44],[1,52],[-1,24],[0,21],[0,35],[0,23],[0,29],[0,48],[1,79],[-1,41],[1,51],[-1,31],[0,32],[-3,32],[2,45],[1,46],[1,34],[0,36],[0,84],[0,23],[0,40],[1,116],[0,23],[0,22],[-3,30],[1,46],[1,50],[4,139],[0,24],[0,77],[0,29],[0,35],[0,22],[1,28],[1,44],[1,31],[1,60],[0,25],[0,37],[1,45],[-1,38],[0,34],[2,23],[0,31],[0,43],[2,23],[1,32],[-1,25],[0,23],[0,24],[0,46],[1,31],[0,31],[-1,22],[0,34],[3,23],[0,9],[0,22],[0,30],[1,34],[1,56],[0,33],[0,31],[1,25],[-2,46],[0,32],[0,26],[3,25],[0,24],[0,39],[0,31],[-1,30],[0,30],[0,64],[0,33],[0,61],[0,25],[0,23],[0,26],[0,36],[0,30],[0,49],[-1,126],[0,66],[-1,46],[0,30],[0,4],[0,23],[0,30],[0,50],[0,68],[0,32],[0,56],[0,50],[0,30],[0,28],[-1,56],[0,25],[0,27],[0,33],[0,28],[0,33],[0,34],[0,22],[0,30],[-2,39],[0,31],[0,26],[3,124],[-1,35],[1,58],[0,23],[-1,59],[0,109],[0,31],[0,31],[1,37],[-1,24],[0,27],[-1,64],[-1,92],[-1,134],[-1,116],[1,31],[-1,136],[-2,134],[0,78],[-2,136],[0,24],[0,30],[0,54],[0,36],[2,21],[0,32],[0,32],[-2,113],[0,286],[0,80],[-1,79],[0,82],[0,87],[0,29],[0,36],[-1,23],[0,34],[0,39],[0,110],[0,28],[-1,22],[1,87],[-1,37],[0,35],[0,83],[2,64],[0,29],[0,34],[0,45],[0,54],[1,46],[0,23],[0,25],[0,44],[-1,24],[-1,26],[0,56],[0,28],[0,32],[0,42],[1,52],[0,23],[1,52],[0,34],[0,26],[1,32],[0,42],[1,38],[0,31],[1,27],[0,63],[0,3],[3,38]],[[53618,49730],[-1,-64],[0,-27],[0,-6],[0,-36],[-2,-109],[-1,-80],[0,-25],[-2,-138],[-2,-158],[0,-49],[-1,-100],[-2,-91],[0,-8],[0,-37],[0,-33],[-1,-56],[-1,-48],[0,-86],[-1,-139],[0,-126],[0,-72],[-1,-29],[-5,-148],[0,-143],[-1,-80],[-1,-62],[-1,-88],[-2,-185],[-1,-83],[0,-56],[-3,-223],[0,-27],[-2,-203],[107,-18],[139,-3],[-1,-5],[-1,-47],[0,-50],[-1,-31],[-1,-27],[0,-31],[-1,-45],[-2,-30],[0,-30],[0,-27],[-2,-66],[-1,-38],[1,-29],[-2,-85],[-1,-71],[-1,-32],[-2,-140],[-1,-47],[-3,-134],[-1,-46],[-2,-150],[-2,-69],[-3,-147],[-2,-99],[-1,-71],[-2,-114],[-3,-151],[-2,-82],[0,-33],[-2,-78],[0,-29],[-1,-33],[-1,-64],[-1,-60],[-1,-61],[-3,-116],[-1,-51],[-3,-178],[0,-83],[1,-87],[-1,-61],[-1,-51],[-1,-44],[-1,-69],[-2,-35],[0,-24],[-4,-37],[-1,-28],[0,-22]],[[53773,43756],[-30,1],[-26,0],[-198,5],[-60,2],[-16,0],[-182,5],[-32,1],[-24,0],[-49,2],[-17,0],[-48,1],[-47,1],[-78,3],[-45,1],[-20,1],[-32,2],[-34,1],[-24,0],[-26,1],[-18,1],[-23,1],[-33,1],[-16,1],[-37,1],[-29,-1],[-101,2],[-60,2],[-4,0],[-105,3],[-210,7],[-32,11],[-51,2],[-187,6],[-30,1],[-10,0],[-119,4],[-100,3],[-72,2],[-19,0],[-174,6],[-57,0],[-22,0],[-77,0],[-55,-1],[-40,0],[-18,1],[-18,13],[-22,0],[-21,1],[-17,0],[-18,0],[-37,-1],[-21,0],[-19,0],[-16,0],[-25,-1],[-16,-8],[-62,2],[-88,3],[-60,4],[-62,5],[-100,6],[-21,1]],[[50463,43861],[-159,3],[-112,1],[-341,7],[-162,3],[-50,0],[-437,7],[-34,1],[-34,1],[-17,0],[-61,1],[-26,0],[-210,1],[0,27],[3,135],[1,50],[2,104],[-89,4],[-20,0],[-69,3],[-96,4],[1,67],[0,39],[1,96],[2,110],[-78,2],[-141,4],[-64,2],[6,306],[-66,1],[-112,3],[-29,1],[-37,0],[-27,1],[0,33],[-1,24],[0,22],[1,29],[0,51],[1,27],[1,83],[0,1],[3,198],[2,167],[-273,4],[-1,0],[0,3],[2,107],[3,204],[-81,3],[-55,0],[-1,38],[0,37],[0,26],[0,52],[0,156],[-3,49],[7,113],[0,46],[1,32],[2,80],[-68,0],[0,47],[-65,34],[1,75],[1,84],[1,71],[0,51],[2,97],[1,62],[2,148],[-23,1],[-92,4],[-16,0],[-24,1],[-35,2],[-25,1],[-18,0],[-18,1],[-48,2],[-40,1],[-15,1],[-29,1],[-2,0],[-40,1],[-30,1],[-67,2],[-7,0],[-20,1],[0,25],[1,59],[1,45],[2,103],[0,10],[1,25],[1,38],[0,27],[1,44],[2,89],[2,69],[0,38],[0,29],[1,22],[1,15],[1,75],[1,35],[3,112],[0,36],[-16,0],[-15,-4],[-15,-4],[-9,-3],[-61,25],[-154,33],[-179,7],[-75,8],[-72,11],[-12,9],[-29,1],[-118,4],[-81,108]],[[62084,46727],[-1,-81],[0,-116],[-1,-34],[0,-23],[0,-66],[-1,-56],[0,-26],[0,-75],[0,-13],[0,-10],[-1,-115],[-5,-199],[-2,-96],[-1,-28],[0,-26],[-1,-28],[0,-51],[0,-27],[-1,-52],[-1,-148],[0,-3],[-1,-151],[-1,-127],[-1,-22],[0,-22],[-1,-27],[2,-22],[0,-25],[0,-24],[-1,-25],[-1,-23],[-2,-112],[0,-1],[-1,-76],[0,-5],[-3,-170],[-3,-116],[-131,3],[-134,4],[-16,-1],[-34,2],[-18,0],[-39,1],[-14,1],[-19,0],[-24,1],[-27,1],[-16,1],[-21,1],[-19,1],[-20,1],[-19,1],[-38,0],[-18,0],[-122,7],[-27,0],[-69,2],[-33,1],[-16,0],[-17,1],[-16,-1],[-57,3],[-64,3],[-173,3],[-15,1],[-39,1],[-77,1],[-16,1],[-16,0],[-3,0],[-22,1],[-67,2],[-143,4],[-51,1],[-15,0],[-20,1],[-32,1],[-16,-1],[-41,0],[-51,-1],[-51,-2],[-23,-1],[-5,-1],[-23,-1],[-32,0],[-28,-2],[-16,-2],[-18,-1],[-23,-1],[-24,-1],[-19,0],[-27,-2],[-20,-3],[-15,4],[-22,-1],[-32,-1],[-18,2],[-31,-2],[-16,-1],[-18,0],[-158,-8],[-16,2],[-17,-3],[-28,-1],[-16,-1],[-21,-1],[-21,0],[-30,-2],[-36,-1],[-26,-1],[-20,-1],[-23,0],[-95,-1],[-32,-1],[-24,0],[-5,0],[-40,0],[-46,1],[-28,0],[-17,-1],[-113,-1],[-69,1],[-72,-1],[-77,-2],[-16,0],[-138,-2],[-61,-3],[-105,-1],[-16,0],[-286,1],[-7,-33],[-6,-24],[-11,-15],[-21,-9],[-20,-2],[-18,0],[-3,0],[-18,-6],[-26,-11],[-17,-8],[-17,-10],[-16,-20],[-17,-4],[-23,-7],[-32,-16],[-2,-1],[-14,-7],[-4,-2],[-11,-6],[-15,-9],[-14,-10],[-17,-16],[-5,-13],[-4,-11],[-18,-18],[-15,-16],[-5,-5],[-24,-26],[-14,-13],[-19,-21],[-2,-2],[-16,-11],[-23,-16],[-23,-13],[-14,-7],[-5,-2],[-16,-8],[-18,-10],[-15,-10],[-15,-10],[-18,-12],[-23,11],[-9,23],[-1,23],[-3,29],[-7,23],[-2,8],[-9,26],[-10,18],[-10,20],[-12,26],[-8,18],[-19,14],[-14,3],[-6,1],[-21,2],[-22,-3],[-36,-6],[-20,-6],[-18,-9],[-18,-13],[-19,-18],[-14,-19],[-14,-22],[-18,-16],[-13,-15],[-7,-22],[-5,-25],[-4,-22],[-5,-22],[-5,-24],[-6,-24],[-6,-20],[-8,-28],[-8,-26],[-6,-22],[-8,-33],[-4,-26],[-1,-49],[0,-24],[-1,-33],[-4,-32],[-8,-34],[-1,-6],[-12,-32],[-6,-21],[-9,-31],[-4,-11],[-3,-10],[-16,0],[-81,-1],[-179,0],[-161,9],[-69,3],[-27,-2],[-26,1],[-121,5],[-140,6]],[[56233,43633],[-18,0],[-79,1],[-32,0],[-69,1],[-33,0],[-72,1],[-73,1],[-34,0],[-63,1],[-74,0],[-3,0],[-12,1],[-41,0],[-211,10],[-27,3],[-45,3],[-51,2],[-40,4],[-76,4],[-35,2],[-151,7],[-19,1],[-17,0],[-44,3],[-70,3],[-36,1],[-45,2],[-33,2],[-30,1],[-35,2],[-28,1],[-38,2],[-84,4],[-36,2],[-70,3],[-69,3],[-113,5],[-25,1],[-23,1],[-34,2],[-40,2],[-19,1],[-110,5],[-153,7],[-50,2],[0,26]],[[50463,43861],[0,-71],[0,-23],[0,-30],[-1,-64],[0,-60],[0,-72],[-1,-47],[0,-60],[0,-30],[0,-30],[-2,-111],[-2,-125],[-3,-216],[0,-23],[-1,-38],[-3,-263],[-2,-112],[-2,-145],[-1,-51],[-4,-291],[0,-58],[-1,-37],[0,-25],[-1,-43],[-2,-44],[1,-30],[-2,-132],[0,-23],[-1,-51],[0,-42],[-1,-36],[-1,-99],[-1,-52],[-1,-98],[-2,-157],[-1,-76],[-3,-185],[-1,-100],[0,-23],[1,-97],[-1,-28],[1,-24],[-5,-24],[-1,-21],[0,-28],[0,-23],[0,-27],[0,-30],[0,-16],[0,-17]],[[50419,40353],[-35,2],[-34,2],[-17,1],[-18,2],[-21,4],[-32,0],[-17,-9],[-14,-12],[-36,-43],[-6,-21],[-6,-17],[-4,-43],[-6,-21],[-19,-22],[-26,-16],[-23,-10],[-25,-21],[-17,-25],[0,-29],[-14,-16],[-17,-11],[-18,-6],[-27,-10],[-7,-8],[-12,-15],[-21,-46],[-22,-34],[-60,-44],[-19,-18],[-1,-1],[-11,-10],[-18,-19],[9,-24],[1,-11],[1,-13],[-5,-11],[-6,-14],[-19,-15],[-20,-24],[-13,-37],[6,-28],[0,-3],[4,-26],[-3,-34],[-18,-2],[-23,5],[-21,9],[-19,-1],[-9,0],[-25,-5],[-33,11],[-2,1],[-21,17],[-26,17],[-4,1],[-9,4],[-2,1],[-18,3],[-7,1],[-8,0],[-3,1],[-20,12],[-24,2],[-21,-7],[-24,18],[-17,7],[-27,1],[-26,1],[-27,2],[-8,1],[-3,0],[-27,0],[-15,-1],[-19,0],[-29,-1],[-33,7],[-16,6],[-16,2],[-20,-14],[-20,-10],[-7,-9],[-6,-7],[-23,-9],[-20,-1],[-1,0],[-13,5],[-15,7],[-15,-4],[-12,-14],[-15,-14],[-2,-10],[-2,-14],[-14,-24],[-10,-17],[-9,-18],[-11,-15],[-4,-6],[-20,-49],[-5,-25],[-9,-26],[-8,-19],[-6,-15],[-16,-18],[-8,-21],[-15,-13],[-11,-20],[3,-22],[-16,0],[-45,-1],[1,33],[-9,16],[-1,2],[-21,-4],[-28,-5],[-24,-3],[-7,-3],[-22,-11],[-26,-8],[-39,-3],[-9,-1],[-26,-7],[-23,-16],[-9,-13],[-12,-15],[-11,-21],[-29,-51],[-14,-20],[-9,-19],[-12,-42],[-145,-18],[-14,18],[-49,4],[-21,0],[-18,9],[-17,4],[-23,4],[-17,15],[-17,11],[-20,10],[-18,21],[-15,12],[-11,18],[8,19],[-3,22],[-1,30],[7,33],[-4,24],[-23,17],[-14,15],[-1,22],[15,19],[-13,14],[-20,-3],[-12,22],[-1,23],[-8,25],[-9,30],[-3,28],[-12,19],[-15,9],[-21,-4],[-20,-7],[-19,-4],[-18,8],[-14,18],[-10,17],[-12,17],[-20,18],[-13,13],[-15,4],[-21,4],[-15,13],[-9,24],[-10,26],[-11,26],[-12,30],[-10,24],[-15,13],[-18,5],[-21,10],[-15,9],[-26,9],[-13,32],[3,28],[-14,11],[-36,5],[-12,15],[-4,21],[6,26],[12,22],[-3,26],[-14,34],[-10,22],[4,37],[17,22],[12,24],[-14,17],[-19,9],[-14,26],[-16,10],[-23,7],[-18,11],[-24,8],[-16,9],[4,24],[-1,24],[-18,13],[-21,6],[-10,20],[-2,23],[-7,24],[-18,13],[-17,13],[5,22],[3,22],[4,21],[6,26],[-7,26],[-5,22],[0,21],[-10,20],[-15,11],[-18,4],[-15,13],[-8,22],[8,26],[10,21],[3,22],[3,28],[-10,26],[-14,18],[-6,21],[2,28],[-9,33],[-15,19],[-6,24],[12,15],[10,22],[5,24],[-12,24],[-8,26],[5,21],[-19,0],[-16,1],[-39,0],[-44,0],[-17,1],[-49,-3],[-79,3],[-92,4],[-145,6],[-76,2],[-155,4],[-2,0],[-172,4],[-48,1],[-45,1],[-45,1],[-37,1],[-30,1],[-57,1],[-50,1],[-67,0],[-57,0],[-80,3],[-446,7],[-39,1],[-42,0],[-98,2],[-38,1],[-114,2],[-46,1],[-61,6],[-75,1],[-34,-1],[-33,-3],[-21,1],[-52,1],[-21,0],[-165,3],[-134,3],[-30,0],[-29,1],[-16,0],[-105,2],[-17,0],[-41,1],[-21,0],[-100,2],[-35,1],[-122,2],[-36,1],[-29,0],[-103,2]],[[43735,41144],[-15,1],[-47,2],[-123,5],[-76,3],[-36,2],[-54,2],[-75,4],[-33,1],[-12,0],[-73,4],[-98,4],[-68,3],[-49,2],[-84,3],[-95,4],[-31,2],[-59,2],[-366,15],[-154,6],[-63,4],[-46,2],[-43,1],[-32,-2],[-31,0],[-97,8],[-39,2],[-257,12],[-9,1],[-7,0],[-16,0],[-26,2],[-21,1],[-132,6],[-88,4],[-37,2],[-97,5],[-22,1],[-18,1],[-23,1],[-20,2],[-43,1],[-18,0],[-24,2],[-37,2],[-21,1],[-35,2],[-53,4],[-228,13],[-29,2],[-71,4],[-21,1]],[[40483,41294],[2,38],[6,113],[-3,48],[0,36],[1,24],[0,25],[2,39],[1,32],[1,40],[1,27],[2,48],[1,36],[1,44],[0,27],[1,38],[1,29],[1,23],[1,56],[0,3],[1,26],[3,84],[1,48],[1,32],[3,95],[1,39],[1,22],[1,48],[4,144],[2,48],[1,34],[3,99],[1,34],[1,51],[4,119],[1,33],[1,65],[2,41],[1,30],[1,48],[1,24],[0,27],[2,57],[1,31],[1,27],[0,34],[1,42],[2,58],[1,34],[1,26],[3,77],[1,26],[1,25],[2,73],[2,31],[0,12],[2,24],[2,29],[-1,31],[2,38],[5,130],[1,44],[2,33],[4,100],[1,47],[2,40],[1,26],[2,50],[1,31],[3,92],[1,42],[2,51],[1,36],[4,110],[2,37]],[[34018,44956],[-2,-31],[-1,-39],[-2,-63],[0,-24],[-1,-10],[0,-22],[-1,-23],[-1,-25],[0,-28],[-4,-86],[0,-4],[-2,-62],[-3,-77],[-7,-173],[-4,-97],[-1,-38],[-2,-38],[-2,-49],[-1,-44],[-1,-29],[-1,-23],[-2,-86],[-7,-174],[-3,-38],[0,-23],[-1,-53],[-2,-21],[0,-23],[-4,-29],[-8,-110],[1,-28],[0,-27],[-1,-28],[-2,-69],[-2,-40],[-1,-46],[-9,-248],[-5,-141],[-2,-58],[-2,-56],[-3,-126],[-3,-87],[-1,-30],[0,-29],[-6,-189],[-1,-27],[0,-28],[-4,-116],[-4,-110],[-2,-59],[-1,-36],[-1,-29],[-1,-23],[-3,-79],[-2,-62],[0,-23],[-2,-39],[-1,-49],[-2,0],[-17,-2],[-76,3],[-44,1],[-71,3],[-23,1],[-37,1],[-24,1],[-16,0],[-63,2],[-54,0],[-49,4],[-27,1],[-51,1],[-22,1],[-52,2],[-31,1],[-37,1],[-18,1],[-39,2],[-27,1],[-51,2],[-17,1],[-1,-22],[-1,-35],[-3,-62],[0,-30],[-2,-40],[-1,-40],[-1,-22],[-2,-51],[-2,-114],[0,-27],[-3,-100],[-2,-68],[-1,-44],[-5,-166],[-1,-43],[-1,-40],[-1,-34],[-3,-97],[-6,-196],[0,-25],[-3,-86],[0,-4],[-6,-223],[-1,-23],[-7,-231],[0,-10],[-1,-26],[-14,-23]],[[32981,39678],[-32,2],[-15,0],[-36,2],[-88,2],[-35,-1],[-183,8],[-21,1],[-5,0],[-150,6],[-100,3],[-2,1],[-37,1],[-37,3],[-2,0],[-17,1],[-19,1],[-48,1]],[[32154,39709],[-20,1],[-90,4],[-19,1],[-30,1],[-26,-1],[-17,1],[-18,0],[-20,1],[-19,0],[-15,1],[-21,1],[-49,1],[-26,1],[-43,1],[-17,1],[-17,1],[-24,1],[-16,-1],[-116,7],[-25,1],[-59,2],[-27,1],[-21,0],[-7,1],[-32,1],[-15,0],[-34,2],[-19,0],[-51,2],[-44,2],[-22,0],[-17,1],[-33,1],[-135,5],[-29,1],[-58,2],[-16,1],[-77,2],[-57,1],[-89,2],[-153,4],[-22,0],[-46,3],[-134,9],[-30,1],[-107,5],[-48,3],[-101,5],[-21,1],[-27,2],[-22,1],[-15,0],[-15,0],[-31,2],[-40,2],[-86,4],[-18,1],[-16,2],[-17,0],[-28,1],[-18,1],[-41,2],[-20,1],[-21,1],[-20,1],[-15,1],[-16,1],[-16,0],[-20,3],[-39,0],[-30,2],[-15,1],[-21,1],[-7,35],[1,22],[1,42],[2,40],[1,22],[2,34],[1,41],[1,35],[1,35],[6,55],[6,177],[0,4],[7,228],[2,29],[1,59],[0,39],[1,69],[6,25],[2,45],[1,23],[1,27],[1,32],[2,33],[0,23],[0,76],[-15,7],[-20,0],[-26,1],[-3,0],[-27,1],[-52,1],[-20,1],[-174,20],[-75,9],[-131,15],[-31,-1],[-16,-5],[-21,-4],[-23,-6],[-40,1],[-35,2],[-35,1],[-16,0],[-33,1],[-25,1],[-29,2],[-17,0],[-20,1],[-48,2],[-39,1],[-43,1],[-17,1],[-44,2],[-21,1],[-87,3],[-38,2],[-32,0],[-51,3],[-17,0],[-50,2],[-49,2],[-23,1],[-29,1],[-25,1],[-79,4],[-70,3],[-30,1],[-43,1],[-72,2],[-86,2],[-17,1],[-24,1],[-16,1],[-18,0],[-17,1],[-18,1],[-19,1],[-21,1],[-46,3],[-43,2],[-33,2],[-35,1],[-15,6],[-23,1],[-35,1],[-21,1],[-25,2],[-20,1],[-41,2],[-23,1],[-16,0],[-30,1],[-20,1],[-34,3],[-21,1],[-35,2],[-38,2],[-38,2],[-23,1],[-16,1],[-18,1],[-31,1],[-23,2],[-19,1],[-26,1],[-29,2],[-18,1],[-31,1],[-17,1],[-18,1],[-16,0],[-39,2],[-16,1],[-15,0],[-23,2],[-20,0],[-17,1],[-36,2],[-18,0],[-2,1],[-47,2],[-14,0],[-7,0],[-16,1],[-100,3],[-20,1],[-192,11],[-21,2],[-129,8],[-41,2],[-29,2],[-27,1],[-16,1],[-33,2],[-69,3]],[[25603,41258],[1,93],[3,83],[3,69],[3,72],[2,44],[3,74],[8,105],[0,2],[2,33],[1,21],[2,38],[3,66],[0,24],[3,30],[2,31],[2,34],[-4,72],[2,44],[2,44],[3,51],[1,35],[2,31],[2,22],[3,55],[2,52],[1,40],[3,62],[2,33],[1,29],[1,35],[3,58],[1,41],[6,35],[3,284],[1,38],[7,165],[3,100],[1,13],[1,9],[0,35],[0,34],[0,22],[1,32],[-1,34],[0,9],[-2,20],[7,25],[1,24],[0,4],[2,44],[1,35],[1,16],[1,22],[1,34],[2,38],[4,118],[1,23],[7,199],[0,2]],[[70096,47822],[0,-62],[0,-157],[0,-168],[0,-103],[0,-48],[1,-30],[0,-37],[0,-52],[0,-54],[0,-80],[0,-183],[0,-68],[0,-84],[0,-31],[0,-222],[0,-333],[7,-122],[0,-44],[2,-93],[5,-303],[4,-219],[2,-86],[0,-34],[1,-33],[-2,-647],[-2,-35],[1,-115],[2,-150],[2,-276],[2,-139],[0,-66],[2,-294],[0,-24],[1,-27],[-2,-32],[-6,-389],[-2,-116],[0,-34],[-1,-55],[0,-24],[-1,-142],[-1,-98],[0,-23],[0,-94],[0,-36],[-2,-31],[-2,-43],[-3,-50],[1,-140],[0,-49],[0,-36],[-3,-155],[-5,-211],[0,-21],[0,-71],[0,-43],[0,-4],[1,-91],[1,-41],[1,-66],[-8,-233],[-1,-124],[-2,-255],[0,-45],[-2,-46],[-3,-136],[-4,-140],[-6,-196],[-5,-185],[-1,-51],[-1,-31],[-6,-228],[-3,-166],[-7,-307],[0,-35],[-4,-238],[-2,-164],[-2,-49],[0,-69],[0,-107],[0,-56],[-1,-39],[0,-85],[-2,-114],[-2,-40],[0,-97],[-1,-82],[0,-71],[-4,-147]],[[70033,37772],[-84,3],[-54,1],[-87,2],[-52,2],[-15,0],[-2,0],[-83,1],[-301,8],[-19,1],[0,-40],[-1,-193],[-2,-196],[-1,-150],[-1,-88],[-1,-98],[-1,-130],[0,-50],[-51,2],[-44,1]],[[69234,36848],[-21,1],[-61,1],[-21,1],[-15,0],[-45,0],[-18,1],[-56,1],[-33,1],[-41,1],[-25,1],[-45,1],[-21,1],[-62,1],[-32,1],[-46,1],[-37,2],[-111,3],[-50,1],[-39,1],[-22,0],[-25,1],[-14,0],[-4,0],[-17,0],[-17,1],[-24,0],[-33,1],[-20,0],[-29,1],[-19,1],[-30,0],[-17,1],[-28,0],[-16,1],[-18,0],[-35,1],[-104,2],[-36,0],[-17,1],[-42,1],[-16,0],[-23,1],[-69,1],[-23,1],[-39,1],[-117,3],[-39,1],[-28,1],[-81,2],[-27,1],[-17,0],[-16,1],[-26,1],[-75,2],[-25,0],[-25,1],[-75,2],[-25,1],[-22,0],[-65,2],[-22,1],[-23,0],[-68,2],[-29,1],[-18,0],[-18,1],[0,24],[2,70],[1,44],[2,80],[-1,25],[0,22],[0,23],[1,30],[0,42],[1,37],[0,34],[0,25],[1,23],[0,27],[1,28],[2,86],[2,44],[2,69],[0,25],[-1,29],[-1,23],[1,30],[0,24],[1,55],[0,31],[2,94],[0,38],[1,28],[2,108],[2,50],[0,25],[2,77],[1,25],[0,27],[2,61],[4,181],[1,60],[1,33],[2,99],[-5,31],[-80,1],[-240,2],[-82,1],[-42,1],[-127,3],[-49,1],[-21,1],[-18,0],[-31,1],[-21,0],[-43,1],[-26,1],[-77,2],[-41,1],[-2,0],[-21,0],[-20,2],[-57,3],[-18,1],[-15,0],[-39,0],[-16,0],[-54,1],[-162,1],[-68,1],[-49,0],[-16,0],[-38,1],[-116,1],[-41,0],[-19,0],[-15,1],[-45,0],[-27,0],[-82,1],[-34,1],[-21,0],[-17,0],[-31,0],[-17,1],[-29,0],[-20,0],[-22,0],[-15,0],[-35,1],[-16,0],[-44,0],[-20,0],[-20,0],[-7,0],[-15,1],[-45,0],[-15,0],[-16,0],[-38,1],[-115,0],[-38,0],[-20,0],[-60,1],[-21,0],[-17,0],[-53,1],[-30,0],[-33,0],[-23,0],[-47,0],[-70,-2],[-46,-2],[-162,3],[-81,1],[-19,0],[-33,1],[-101,1],[-33,1]],[[63609,38833],[1,113],[2,155],[4,306],[0,29],[0,25],[0,28],[0,34],[2,63],[1,166],[1,97],[2,206],[0,37],[1,75],[0,45],[1,52],[0,44],[2,178],[2,176],[2,34],[2,146],[1,100],[1,128],[0,30],[2,154],[1,94],[3,272],[0,35],[1,41],[2,248],[1,62],[1,128],[0,22],[0,273],[0,22],[0,58],[1,81],[0,111],[0,19],[0,8],[1,39],[1,10],[2,427],[0,109],[2,90],[0,80],[1,37],[0,21],[0,43],[1,40],[-3,30],[0,109],[1,54],[0,28],[3,136],[0,26],[0,35],[0,21],[-1,7],[0,23],[-1,37],[0,7],[-1,24],[0,37],[0,24],[1,35],[1,23],[0,32],[0,33],[1,37],[-1,24],[1,24],[0,47],[0,30],[1,51],[0,22],[0,53],[1,54],[0,25],[0,50],[0,27],[1,33],[0,37],[1,29],[0,71],[0,36],[1,44],[0,42],[0,27],[2,495],[2,168],[1,313],[-3,26],[0,229],[4,118],[0,25],[-1,29],[0,64],[0,59],[0,69],[-23,3],[-117,1]],[[76924,45059],[-4,-206],[-1,-59],[-1,-35],[-1,-146],[0,-73],[-1,-39],[-1,-264],[-1,-116],[-1,-46],[1,-28],[-1,-27],[-1,-134],[0,-1],[0,-53],[-1,-133],[-2,-34],[1,-91],[-1,-33],[-1,-138],[-2,-45],[0,-126],[0,-37],[-1,-102],[0,-98],[0,-52],[-1,-113],[0,-36],[0,-63],[-1,-87],[0,-27],[0,-48],[-1,-112],[0,-84],[0,-53],[0,-13],[0,-37],[-1,-40],[0,-52],[0,-82],[0,-71],[-7,-404],[-4,-156],[-2,-123],[0,-22],[0,-30],[0,-43],[-1,-61],[-2,-222],[0,-27],[-2,-229],[-1,-24],[-1,-57],[0,-30],[-1,-44],[-1,-84],[-1,-2],[-1,-106],[-2,-135],[0,-32],[-1,-67],[1,-84],[0,-72],[-2,-327],[-1,-87],[0,-73],[-2,-211],[0,-62],[0,-53],[0,-2],[-2,-204],[0,-37],[-1,-50],[-2,-74],[-3,-80],[-3,-132],[1,-30],[0,-63],[-1,-101],[0,-90],[-1,-33],[0,-16],[0,-65],[-1,-183],[-5,-84],[-5,-254]],[[76847,37660],[-193,6],[-35,1],[-29,1],[-231,8],[-76,3],[-237,9],[-29,1],[-218,9],[-161,6],[-234,9],[-70,1],[-60,-4],[-22,0],[-107,1],[-41,1],[-9,28],[-4,-1],[-180,-23],[-81,-10],[-50,-7],[-40,-2],[-53,-2],[-64,-4],[-61,-3],[-57,-2],[-104,-4],[-78,-3],[-77,-4],[-32,-1],[-54,-3],[-30,-2],[-194,-10],[-161,-4],[-18,0],[-41,-1],[-299,-8],[1,40],[-16,2],[-72,-6],[-116,-9],[-78,-12],[-110,9],[-15,1],[-7,0],[-69,5],[-16,1],[-23,1],[-31,2],[-358,31],[-133,14],[-52,5],[-116,5],[-97,3],[-42,2],[-16,0],[-133,5],[-127,5],[2,28],[-207,-24],[-57,-7],[-187,-1],[-37,1],[-38,0],[-85,1],[-37,0],[-68,2],[-94,2],[-76,2],[-222,5],[-41,1],[-2,0],[-21,0],[-68,2],[-101,3],[-50,-1],[-124,0],[-35,0],[-26,1],[-113,6],[-56,1],[-15,0]],[[63609,38833],[-51,1],[-59,1],[-81,1],[-56,1],[-96,2],[-84,1],[-11,0],[-17,0],[-46,1],[-17,0],[-28,1],[-59,1],[-2,0],[-54,1],[-183,4],[-49,1],[-135,3],[-16,-3],[-19,0],[-16,-1],[-24,6],[-23,1],[-128,2],[-114,1],[-32,-4],[-44,-5],[-198,5],[-34,1],[-245,5],[-9,0],[-43,1],[-34,1],[-15,0],[-92,2],[-20,1],[-27,0],[-15,1],[-78,1],[-8,0],[-11,1],[-17,0],[-119,3],[-45,1],[-16,0],[-157,4],[-96,2],[-15,-3],[-65,0],[-46,1],[-24,0],[-26,0],[-29,0],[-16,1],[-58,1],[-20,0],[-24,0],[-18,0],[-101,1],[-88,3],[-62,3],[-91,-1],[-38,1],[-74,0],[-17,0],[-32,0],[-23,0],[-19,0],[-16,0],[-143,-1],[-42,0],[-52,-1],[-96,-1],[-20,0],[-168,1],[-8,-177],[0,-22],[0,-39],[0,-108],[0,-221],[0,-55],[0,-2],[0,-33],[0,-69],[-1,-92],[-1,-58],[1,-27],[0,-108],[0,-2],[-1,-33],[0,-38],[-1,-105],[0,-6],[0,-23],[-2,-171],[0,-3],[0,-41],[0,-15],[-1,-62],[0,-24],[0,-22],[-1,-24],[-3,-305],[-22,0],[0,-43],[-1,-183],[-1,-337],[-1,-63],[0,-33],[0,-25],[-1,-180],[0,-22],[0,-25],[0,-29],[-1,-96],[0,-22],[0,-102],[-1,-67],[0,-40],[0,-52],[0,-37],[-1,-62],[0,-77],[-1,-75],[0,-145],[-1,-97],[-1,-96],[0,-24],[-1,-145],[-1,-56],[-1,-105],[0,-44]],[[59410,34716],[-66,0],[-44,0],[-23,0],[-2,0],[-87,0],[-8,0],[-114,0],[-19,0],[-130,0],[-200,0],[-84,0],[-26,0],[-87,3],[-16,2],[-19,1],[-8,0],[-57,2],[-69,4],[-5,0],[-16,1],[-32,1],[-101,2],[-34,1],[-100,3],[-62,1],[-51,0],[-28,-1],[-104,3],[-16,1],[-91,3],[-118,5],[-77,3],[-37,2],[-59,2],[-178,8],[-22,1],[-123,5],[-18,1],[-32,1],[-136,6],[-34,1],[-16,1],[-22,1],[-78,3],[-100,6],[-45,-1],[-69,0],[-137,-1],[-33,0],[-18,1],[-174,5],[-74,3]],[[56111,34796],[0,73],[0,24],[0,37],[-1,121],[0,61],[0,82],[0,102],[0,55],[1,90],[0,71],[2,188],[0,100],[0,33],[-1,23],[2,31],[1,117],[0,78],[3,344],[0,37],[0,39],[1,118],[1,106],[0,29],[1,100],[0,85],[3,114],[24,9],[3,83],[2,132],[3,153],[2,88],[2,99],[1,64],[1,60],[2,104],[3,162],[2,145],[2,119],[2,134],[0,8],[1,23],[0,49],[0,2],[1,61],[1,76],[1,36],[1,83],[2,108],[0,32],[1,57],[5,319],[1,60],[2,159],[1,31],[1,82],[2,132],[2,123],[0,1],[1,51],[2,168],[3,161],[2,156],[1,77],[1,55],[0,5],[1,17],[1,127],[1,34],[5,125],[-2,180],[-1,128],[1,24],[1,114],[0,25],[3,171],[1,103],[1,25],[4,235],[0,9],[0,15],[0,30],[2,112],[2,104],[0,3],[0,34],[2,117],[1,29],[1,21],[0,61],[1,77],[1,63],[2,114],[0,67],[-1,188],[0,22],[0,98],[-2,28],[3,29],[-1,26],[0,45],[0,42],[0,21],[0,122],[-1,97],[0,52],[2,178]],[[87438,40696],[-14,-20],[-28,-40],[-12,-14],[-14,-18],[-50,-62],[-25,-38],[-24,-36],[-19,-11],[-144,-179],[-155,-192],[-57,-72],[-63,-77],[-23,-29],[-21,-27],[-1,-1],[-60,-75],[-2,-1],[-39,-49],[-41,-51],[-1,-1],[-119,-148],[-10,-13],[-4,-7],[-56,-115],[-77,-162],[-10,-17],[-77,-157],[-219,-445],[-77,-156],[-12,-23],[-15,-30],[-85,-172],[-40,-81],[-37,-75],[-31,-63],[-24,-49],[-13,-14],[-46,-89],[-13,-27],[-112,-212],[-45,-85],[-32,-62],[-51,-98],[-36,-67],[-62,-121],[-103,-197],[-1,-2],[-103,-197],[-100,-191],[-105,-201],[-20,-38],[-25,-49],[-29,-55]],[[84856,36285],[-15,15],[-207,195],[-73,69],[-20,19],[-76,70],[-13,13],[-50,47],[-155,146],[-45,42],[-44,-42],[-18,-17],[-109,-103],[-19,-18],[-16,-15],[-45,-43],[-99,-92],[-23,-23],[-103,-98],[-6,-6],[-33,-31],[-117,-110],[-57,-55],[-85,97],[-24,28],[-39,43],[-19,22],[-65,74],[-326,373],[-190,217],[-99,122],[-146,177],[-43,52],[-74,91],[-40,49],[-22,27],[-30,36],[-112,137],[-13,16],[-13,16],[-48,58],[-63,77],[-25,30],[-32,33],[-55,58],[-65,68],[-65,75],[-42,45],[-38,46],[-67,81],[-104,119],[-119,138],[-101,116],[-21,25],[-93,107],[-1,1],[-129,154],[-35,49],[-148,173],[-30,35],[-48,26],[-34,18],[-27,14],[-37,53],[-45,66],[-27,39],[-14,20],[-42,62],[-21,31],[-23,33],[-31,41],[-21,28],[-30,38],[-37,46],[-1,2],[-80,84],[-20,23],[-37,36],[-90,106],[-47,55],[-38,59],[-77,78],[-25,29],[-103,120],[-45,53],[-14,16],[-52,61],[-53,63],[-79,94],[-44,53],[-16,20],[35,40],[84,95],[57,60],[19,21],[24,27],[16,17],[79,87],[74,82],[69,74],[12,13],[43,46],[59,65],[87,94],[35,37],[61,68],[12,13],[66,72],[62,67],[153,168],[48,52],[36,38],[38,42],[43,47],[18,20],[28,31],[15,17],[90,97],[55,60],[35,38],[235,255],[63,68],[51,56],[23,25],[22,23],[21,24],[23,23],[21,24],[22,24],[24,25],[83,92],[-18,17],[-17,16],[-19,18],[-28,29],[-36,34],[-25,24],[-17,16],[-20,19],[-65,63],[-31,27],[-145,133],[-20,19],[-22,20],[-126,117],[-19,18],[-51,48],[-49,46],[-37,35],[-38,40],[-49,45],[-27,25],[-26,24],[-16,15],[-20,17],[-14,12],[-57,53],[-182,171],[-25,24],[-16,15],[-27,25],[-96,89],[-53,53],[-4,5]],[[82727,46170],[23,-77],[29,-45],[12,-42],[5,-17],[58,-123],[19,-31],[100,-123],[22,-19],[25,-14],[10,-5],[61,-72],[8,-9],[10,-10],[14,-14],[19,-22],[6,-6],[1,-1],[43,-34],[22,-28],[32,-28],[36,-14],[29,-31],[10,-10],[42,-40],[46,-43],[75,-73],[57,-44],[19,-25],[50,-44],[37,-23],[50,-41],[17,-22],[84,-63],[81,-50],[53,-17],[20,-8],[16,-7],[41,-6],[48,-17],[126,-9],[59,-10],[96,-4],[16,-1],[58,-21],[46,-21],[39,-29],[79,-86],[22,-29],[31,-39],[39,-84],[52,-189],[11,-27],[9,-36],[25,-60],[62,-103],[23,-48],[40,-61],[46,-8],[94,-68],[39,-46],[127,-44],[50,-53],[47,-26],[50,-19],[94,-34],[125,-97],[35,-26],[47,-23],[11,-1],[48,-24],[31,-29],[6,-5],[20,-7],[20,-16],[41,-21],[74,-64],[32,-16],[10,-12],[77,-58],[118,-153],[12,-30],[14,-19],[106,-132],[11,-36],[0,-6],[49,-87],[15,-24],[29,-40],[84,-98],[60,-51],[34,-28],[10,-8],[7,-1],[68,-10],[60,-8],[29,2],[31,2],[77,6],[87,19],[226,48],[117,25],[163,-12],[44,-140],[-7,-21],[-57,-197],[-48,-86],[-23,-33],[-131,-106],[-256,-215],[-43,-42],[-1,-178],[133,-355],[164,-368],[20,-45],[222,-195]],[[84856,36285],[-69,-83],[-143,-173],[-3,-2],[-186,-218],[-142,-167]],[[84313,35642],[-287,1],[-405,-9],[-91,-2],[-98,-2],[-38,0],[-170,1],[-21,1],[-139,0],[-90,1],[-34,1],[-175,6],[-61,0],[-21,0],[-214,2],[-90,0],[-35,0],[-51,1],[-32,0],[-65,1],[-150,1],[-19,0],[-127,1],[-44,1],[-147,-6],[-22,2],[-75,2],[-30,0],[-21,0],[-26,1],[-22,0],[-22,1],[-80,1],[-113,1],[-35,1],[-41,0],[-30,0],[-96,1],[-204,5],[-42,-1],[-86,2],[-22,-1],[-85,2],[-48,2],[-27,0],[-44,1],[-64,1],[-67,1],[-63,2],[-32,1],[-82,4],[-22,0],[-219,-1],[-53,-1],[-28,0],[-195,-2],[-170,-1],[-313,-2],[-64,0],[-146,-2],[-18,1],[-206,2],[-25,0],[-207,16],[-28,3],[-39,3]],[[78497,35686],[0,29],[-163,-26],[-38,-6],[-74,-12],[-153,-1],[-239,-2],[-162,-3],[-82,0],[-83,-1],[-70,0],[-42,-1],[-98,0],[-146,-2],[-157,4],[-141,2],[-17,0],[-26,0],[1,39],[1,92],[0,53],[0,4],[2,144],[0,28],[2,31],[1,20],[1,6],[-1,28],[3,80],[0,33],[2,23],[1,27],[1,57],[0,21],[0,4],[1,39],[5,296],[3,77],[5,238],[0,27],[1,37],[8,369],[0,46],[1,47],[1,31],[2,96]],[[40483,41294],[-21,0],[-58,1],[-19,0],[-16,1],[-1,0],[-26,0],[-27,1],[-29,0],[-14,0],[-4,1],[-50,1],[-21,0],[-17,0],[-25,0],[-20,0],[-15,0],[-29,4],[-20,0],[-16,-2],[-16,1],[-19,1],[-15,3],[-56,2],[-67,3],[-99,0],[-52,0],[-30,-3],[-21,1],[-18,0],[-21,0],[-24,1],[-73,2],[-18,1],[-18,0],[-134,4],[-105,3],[-84,2],[-17,0],[-30,0],[-21,1],[-17,0],[-19,1],[-33,1],[-20,0],[-15,0],[-48,1],[-35,0],[-38,0],[-19,0],[-25,1],[-16,1],[-1,-58],[-1,-29],[-1,-24],[-5,-144],[-2,-41],[-1,-46],[-4,-94],[-1,-32],[-2,-47],[-4,-116],[-1,-27],[-2,-48],[1,-61],[-9,-174],[-1,-33],[-4,-98],[-1,-32],[-1,-31],[-4,-91],[-1,-31],[-2,-63],[-7,-188],[-2,-63],[-1,-43],[-5,-129],[-2,-43],[-2,-64],[-1,-33],[-2,-60],[-1,-29],[-2,-40],[-1,-24],[-5,-133],[-1,-28]],[[38753,39131],[-128,4],[-20,0],[-43,2],[-3,0],[-86,-1],[-16,0],[-54,1],[-28,1],[-30,2],[-28,1],[-15,0],[-23,1],[-16,0],[-15,0],[-128,5],[-2,0],[-17,1],[-77,3],[-16,0],[-25,1],[-80,5],[-6,0],[-77,1],[-50,2],[-44,1],[-50,1],[-38,1],[-22,0],[-26,1],[-17,0],[-15,1],[-14,0],[-17,0],[-23,1],[-27,0],[-30,1],[-72,3],[-35,1],[-117,3],[-16,0],[-39,1],[-80,3],[-12,1],[-60,3],[-63,3],[-19,1],[-19,1],[-20,2],[-20,0],[-18,1],[-19,1],[-32,1],[-23,2],[-19,0],[-16,1],[-17,0],[-16,2],[-22,0],[-24,0],[-28,0],[-17,1],[-21,1],[-20,1],[-26,2],[-25,0],[-20,0],[-15,1],[-16,0],[-19,2],[-40,2],[-16,1],[-23,1],[-15,2],[-30,1],[-19,1],[-20,1],[-30,1],[-40,2],[-19,1],[-30,1],[-25,0],[-20,1],[-16,0],[-16,1],[-27,1],[-16,1],[-29,2],[-22,1],[-11,1],[-4,0],[-22,1],[-14,0],[-10,0],[-46,3],[-10,0],[-6,0],[-22,1],[-17,1],[-32,1],[-17,1],[-110,5],[-57,3],[-40,3],[-30,2],[-20,1],[-23,1],[-18,1],[-25,1],[-18,1],[-16,12],[-55,2],[-17,1],[-23,-2],[-15,2],[-34,-2],[-15,1],[-18,0],[-31,2],[-41,2],[-16,1],[-60,2],[-16,2],[-25,1],[-44,2],[-207,9],[-43,1],[-26,1],[-37,2],[-16,1],[-35,1],[-9,0],[-72,4],[-31,1],[-28,1],[-16,0],[-29,1],[-16,0],[-31,2],[-20,1],[-31,1],[-19,0],[-24,1],[-26,1],[-21,1],[-34,2],[-26,1],[-43,2],[-44,2],[-26,2],[-61,2],[-32,2],[-20,0],[-43,3],[-32,1],[-19,0],[-152,5],[-102,2],[-73,3],[-53,2],[-209,9],[-20,1],[-15,0],[-58,2],[-63,3],[-11,0],[-4,1],[-25,1],[-89,3],[-72,3],[3,85],[2,34],[3,68],[2,61],[2,43],[1,27]],[[25603,41258],[-4,-106],[-4,-76],[-5,-112],[0,-11],[-1,-11],[-6,-132],[-5,-114],[-1,-21],[-1,-24],[-1,-23],[-1,-26],[-1,-24],[-1,-25],[-1,-27],[-1,-21],[-1,-22],[-1,-18],[0,-8],[-1,-31],[-1,-27],[-1,-25],[-1,-30],[0,-22],[-1,-24],[-2,-30],[-1,-24],[-1,-28],[-1,-25],[-1,-22],[-1,-30],[-1,-24],[-1,-23],[-1,-26],[-1,-23],[-1,-29],[-1,-39],[-2,-45],[-2,-53],[-1,-36],[-3,-72],[-2,-48],[-1,-28],[-1,-36],[-1,-35],[-2,-36],[0,-23],[-1,-22],[-1,-26],[-1,-28],[-1,-22],[-1,-26],[-1,-22],[0,-22],[-1,-28],[-1,-23],[-2,-54],[-1,-24],[-1,-23],[0,-22],[-1,-24],[-1,-25],[-1,-23],[-1,-27],[-1,-51],[-1,-24],[-1,-39],[-2,-54],[-1,-27],[-1,-30],[-1,-30],[-1,-33],[-2,-38],[-1,-34],[-1,-26],[-1,-28],[0,-23],[-2,-39],[0,-34],[-2,-29],[0,-28],[-2,-46],[-2,-76],[-2,-32],[-1,-34],[-1,-23],[-1,-24],[0,-25],[-2,-45],[0,-28],[-1,-23],[0,-27],[0,-60],[15,0],[15,-1],[39,-2],[-1,-34],[-2,-41],[-1,-35],[-1,-43],[-2,-47],[-1,-39],[-1,-40],[-1,-23],[0,-30],[-1,-25],[-1,-26],[-1,-34],[-1,-28],[-1,-42],[-1,-45],[-2,-55],[-1,-31],[-2,-41],[-1,-39],[-1,-29],[-1,-23],[-1,-37],[0,-28],[-1,-38],[-2,-49],[-1,-30],[-1,-45],[-1,-33],[-1,-39],[-1,-42],[-1,-23],[-2,-60],[-1,-41],[-1,-30],[-3,-86],[-1,-37],[-1,-41],[-1,-30],[-1,-35],[-2,-60],[-1,-23],[0,-30],[-1,-29],[-1,-31],[-1,-33],[-1,-28],[-1,-28],[-1,-33],[-1,-31],[-2,-52],[0,-27],[-7,-225],[0,-19],[-2,-54],[-1,-51],[-2,-55],[-1,-40],[-2,-53],[0,-23],[0,-27],[0,-82]],[[25486,35601],[-21,1],[-22,2],[-21,1],[-17,3],[-36,2],[-34,0],[-41,2],[-54,4],[-17,1],[-16,1],[-26,2],[-16,0],[-20,2],[-16,1],[-16,0],[-24,3],[-24,1],[-16,0],[-18,2],[-16,1],[-36,2],[-23,2],[-22,1],[-19,1],[-22,2],[-15,0],[-26,1],[-39,3],[-37,3],[-37,1],[-38,3],[-57,3],[-30,2],[-23,2],[-30,2],[-31,2],[-24,2],[-20,1],[-20,1],[-17,1],[-23,1],[-15,1],[-15,1],[-18,1],[-18,2],[-47,2],[-50,3],[-16,1],[-33,2],[-38,2],[-26,2],[-17,1],[-9,1],[-7,2],[-24,0],[-24,1],[-5,0],[-15,-1],[-15,1],[-50,3],[-66,3],[-15,1],[-28,1],[-25,1],[-50,2],[-49,2],[-62,3],[-62,2],[-42,2],[-28,1],[-36,2],[-37,2],[-27,2],[-29,1],[-46,2],[-47,2],[-121,5],[-37,2],[-20,0],[-17,1],[-23,1],[-19,1],[-46,2],[-31,1],[-68,3],[-40,1],[-22,0],[-51,2],[-23,1],[-63,2],[-23,2],[-58,3],[-50,2],[-25,0],[-42,1],[-67,1],[-72,3],[-35,1],[-23,1],[-20,1],[-12,0],[-20,0],[-58,2],[-40,1],[-15,1],[-28,1],[-3,0],[-27,1],[-26,0],[-30,1],[-18,1],[-17,0],[-25,1],[-16,0],[-22,3],[-2,1],[-36,1],[-22,-2],[-32,1],[-41,1],[-19,0],[-33,1],[-53,1],[-46,2],[-37,1],[-72,3],[-61,2],[-59,2],[-18,0],[-43,1],[-22,1],[-151,4],[-51,1],[-23,1],[-48,1],[-29,1],[-34,1],[-73,2],[-29,1],[-19,0],[-15,0],[-61,8],[-105,3],[-15,-5],[-27,2],[-43,1],[-24,1],[-40,1],[-16,1],[-22,1],[-39,1],[-16,1],[-25,1],[-40,1],[-28,1],[-24,0],[-29,2],[-17,0],[-19,1],[-35,1],[-20,1],[-26,1],[-21,0],[-22,1],[-15,4],[-17,-2],[-22,0],[-16,0],[-32,1],[-15,1],[-41,1],[-51,1],[-25,1],[-36,1],[-28,2],[-39,1],[-55,1],[-23,1],[-16,1],[-22,0],[-24,1],[-22,0],[-37,1],[-60,2],[-39,1],[-25,1],[-37,1],[-14,1],[-4,0],[-34,1],[-30,1],[-49,1],[-43,2],[-33,1],[-29,0],[-53,2],[-45,1],[-28,1],[-43,1],[-32,1],[-118,3],[-22,1],[-16,0],[-17,1],[-25,0],[-39,2],[-26,0],[-21,1],[-73,2],[-29,0],[-25,1],[-26,1],[-40,1],[-40,2],[-21,0],[-33,1],[-42,1],[-18,1],[-34,1],[-23,1],[-21,0],[-65,3],[-18,1],[-26,0],[-74,1],[-25,0],[-26,1],[-16,0],[-10,0],[-61,1],[-70,2],[-48,1],[-49,2],[-75,1],[-17,1],[-58,1],[-2,0],[-24,1],[-15,0],[-22,0],[-29,1],[-15,1],[-17,0],[-43,1],[-60,1],[-24,0],[-40,2],[-22,1],[-27,0],[-20,1],[-26,1]],[[17333,35901],[0,28],[0,44],[0,31],[0,56],[-1,34],[0,30],[0,38],[-1,54],[1,47],[0,30],[0,31],[0,42],[0,30],[0,25],[-1,65],[-1,28],[0,23],[1,23],[1,25],[1,14],[1,18],[0,25],[-4,46],[1,28],[0,37],[0,61],[0,55],[0,39],[0,42],[-1,36],[0,39],[0,39],[0,39],[0,57],[1,57],[0,51],[-1,49],[0,35],[1,42],[0,29],[0,33],[0,44],[1,50],[0,30],[0,39],[0,78],[0,35],[0,46],[1,37],[0,39],[0,47],[0,28],[0,41],[0,22],[0,31],[0,23],[0,62],[1,23],[0,40],[0,46],[0,30],[0,32],[1,66],[0,32],[0,24],[-1,40],[0,22],[0,35],[0,58],[0,31],[0,24],[1,41],[1,36],[1,26],[0,35],[0,29],[0,31],[0,30],[1,27],[0,43],[1,37],[0,24],[0,24],[1,47],[1,30],[0,26],[0,38],[1,22],[0,26],[0,31],[0,38],[1,44],[0,30],[1,53],[0,40],[0,25],[2,49],[3,189],[2,211],[1,84],[0,24],[0,2],[0,49],[2,71],[0,29],[1,30],[0,11],[2,134],[0,22],[3,99],[0,22],[0,74],[1,38],[0,35],[0,29],[0,50],[0,44],[2,34],[0,26],[0,28],[0,43],[0,51],[0,28],[1,110],[3,109],[1,25],[0,24],[2,82],[1,46],[-3,30],[0,30],[3,178],[2,133],[4,261],[-1,31],[0,23],[1,34],[0,54],[3,77],[0,94],[0,30],[0,31],[1,106],[0,172],[0,23],[0,79],[2,53],[2,23],[1,31],[0,30],[1,22],[-1,22],[0,25],[0,25],[0,65],[0,39],[1,22],[0,22],[-1,39],[0,33],[0,18],[-1,19],[0,40],[3,195],[0,24],[0,31],[0,32],[0,37],[0,31],[1,56],[0,22],[-1,31],[0,36],[0,27],[0,35],[1,35],[-1,37],[0,33],[0,53],[0,25],[0,33],[0,40],[0,65],[-1,67],[0,28],[0,45],[1,35],[-1,86],[0,24],[1,29],[0,34],[0,37],[0,25],[0,40],[0,36],[0,79]],[[56111,34796],[-100,2],[-16,1],[-15,0],[-68,2],[-3,0],[-14,1],[-263,7],[-67,2],[-285,8],[-70,3],[-63,2],[-38,1],[-102,3],[-102,3],[-62,1],[-168,5],[-101,2],[-128,2],[-26,0],[-108,2],[-15,1],[-110,2],[-108,3],[-19,1],[-162,2],[-96,2],[-50,-1],[-283,-5],[-40,-1],[-24,-1],[-32,-1],[-124,-3],[-19,0],[-19,-1],[-74,0],[-81,-1],[-1,0],[-45,0],[-39,-2],[-78,-2],[-18,0],[-30,2],[-33,1]],[[52812,34839],[-1,151],[4,170],[3,93],[0,29],[1,26],[1,92],[0,33],[0,71],[1,69],[0,107],[0,33],[0,76],[-19,11],[-26,16],[-75,43],[-19,11],[-2,1],[-203,118],[-22,13],[-81,48],[-40,23],[-61,36],[-106,62],[-72,41],[-20,12],[-19,11],[-3,1],[-58,34],[-80,47],[-18,10],[-83,48],[-33,20],[-87,50],[-76,45],[-56,32],[-128,75],[-22,12],[-74,44],[-35,20],[-131,76],[-52,31],[-99,57],[-22,13],[-58,34],[-133,77],[-103,61],[-15,9],[-121,70],[-185,109],[-31,-2],[3,168],[3,104],[1,59],[2,49],[1,61],[2,63],[1,51],[4,164],[1,63],[3,86],[0,48],[0,7],[2,89],[1,71],[1,64],[1,23],[1,2],[4,281],[0,46],[4,257],[1,31],[0,6],[2,92],[0,23],[2,59],[1,44],[0,27],[1,28],[1,65],[2,100],[4,197],[2,112],[1,48],[2,63],[1,37],[1,69],[0,22],[0,2],[2,76],[1,24],[0,27],[0,2],[1,30],[5,154],[0,13],[1,38]],[[43735,41144],[-3,-103],[-2,-70],[-4,-157],[-1,-72],[-2,-46],[0,-23],[-2,-47],[-1,-48],[-7,-286],[-1,-40],[-3,-117],[-1,-37],[0,-3],[-2,-59],[-1,-45],[-2,-63],[-1,-41],[0,-2],[-1,-35],[-7,-260],[0,-25],[0,-2],[-1,-23],[0,-51],[-1,-25],[0,-32],[-1,-85],[0,-13],[-1,-78],[0,-35],[-1,-50],[0,-6],[0,-23],[-2,-183],[-2,-191],[-1,-34],[1,-128],[1,-169],[0,-36],[1,-63],[0,-27],[0,-44],[-3,-86],[-1,-28],[-5,-164],[-1,-45],[-1,-43],[0,-6],[0,-20],[-3,-146],[0,-10],[-2,-114],[-1,-30],[0,-28],[-2,-65],[0,-38],[-1,-78],[32,-1],[19,0],[153,-3],[-1,-40],[-2,-100],[-1,-40],[-3,-101],[-1,-38],[-1,-54],[-8,-324],[-1,-38],[-1,-26],[-2,-95],[-1,-40],[-1,-47],[-4,-29],[0,-26],[1,-34],[-1,-32],[-2,-32],[0,-28],[-1,-73],[0,-24],[-2,-48],[-2,-75],[0,-23],[-1,-33],[-2,-70],[-1,-66],[-1,-36],[-2,-61],[-1,-43],[-3,-100],[0,-25],[-1,-24],[-1,-42],[-1,-41],[-1,-42],[-2,-60],[0,-38],[1,-49],[2,-22],[-4,-189],[0,-10],[-1,-35],[-1,-42],[-2,-71],[0,-35],[-1,-33],[0,-24],[-1,-28],[-1,-49],[0,-31],[-1,-68],[-3,-77],[0,-22],[-4,-120],[-1,-44],[-1,-142],[-1,-46],[-2,-67],[-1,-58],[-2,-105],[-2,-74],[-1,-68],[-2,-64],[2,-24],[0,-42],[-1,-32],[-3,-128],[-1,-34],[-2,-55],[-1,-65],[-1,-42],[-2,-149],[-2,-74],[-1,-67],[-2,-124],[-1,-38],[-1,-77],[-1,-52],[-2,-110],[0,-27],[-1,-25],[-1,-53],[-1,-21],[-3,-158],[-1,-32],[0,-28],[-1,-23],[0,-31]],[[43764,32230],[-33,-4],[-21,0],[-46,1],[-37,0],[-24,0],[-22,1],[-24,0],[-36,0],[-31,1],[-17,1],[-36,1],[-55,1],[-28,1],[-27,1],[-18,1],[-30,0],[-23,1],[-62,2],[-144,6],[-115,3],[-72,2],[-34,0],[-33,1],[-25,0],[-41,1],[-59,2],[-17,0],[-29,1],[-22,0],[-37,1],[-46,2],[-16,0],[-45,1],[-18,0],[-20,0],[-20,1],[-16,0],[-20,1],[-29,1],[-36,2],[-61,2],[-42,-2],[-30,0],[-17,0],[-47,1],[-30,0],[-3,0],[-22,0],[-48,1],[-132,0],[-31,1],[-52,2],[-20,1],[-30,1],[-32,1],[-18,0],[-41,1],[-22,1],[-19,1],[-37,0],[-29,1],[-66,2],[-97,2],[-33,1],[-22,1],[-19,1],[-41,1],[-167,5],[-176,4],[-47,2],[-57,1],[-142,4],[-119,3],[-3,-1],[-52,-17],[-1,-22],[0,-22],[-1,-34],[0,-51],[-1,-22],[0,-24],[0,-50],[-2,-46],[0,-27],[-2,-80],[0,-35],[0,-52],[-2,-64],[-1,-43],[0,-38],[-1,-45],[0,-30],[-2,-80],[-1,-70],[-1,-42],[0,-22],[-1,-23],[1,-22],[-2,-106],[-2,-56],[-2,-38],[-1,-27],[0,-30],[-1,-35],[-2,-226],[-1,-62],[-1,-26]],[[40469,30734],[-23,-2],[-16,1],[-33,0],[-31,0],[-20,0],[-22,1],[-27,0],[-16,1],[-51,2],[-22,0],[-29,0],[-20,1],[-20,1],[-32,1],[-44,0],[-17,1],[-38,1],[-59,2],[-24,1],[-26,0],[-15,1],[-25,0],[-19,1],[-23,1],[-29,0],[-17,2],[-78,2],[-109,1],[-16,1],[-82,5],[-23,1],[-24,1],[-32,1],[-9,0],[-7,0],[-8,1],[-61,3],[-97,6],[-26,1],[-2,0],[-24,0],[-18,0],[-18,1],[-18,1],[-21,0],[-17,1],[-22,0],[-22,1],[-20,1],[-22,0],[-20,1],[-49,0],[-21,1],[-22,1],[-48,2]],[[38835,30783],[1,102],[4,254],[0,9],[1,18],[0,7],[1,75],[0,6],[1,40],[2,116],[0,31],[0,24],[1,39],[1,29],[0,27],[0,10],[1,14],[0,22],[0,42],[0,27],[1,44],[1,24],[1,75],[4,189],[1,44],[0,34],[1,35],[1,49],[1,28],[1,45],[1,46],[0,46],[1,30],[0,26],[0,24],[1,25],[1,34],[0,29],[1,31],[1,72],[1,66],[0,24],[1,44],[1,26],[0,36],[0,24],[1,26],[1,46],[2,27],[0,57],[3,156],[0,41],[3,143],[1,32],[0,29],[1,78],[3,153],[7,279],[1,36],[2,69],[2,27],[2,47],[3,57],[1,61],[-3,49],[2,58],[1,34],[0,28],[1,35],[0,15],[1,8],[0,30],[1,30],[0,22],[1,40],[1,25],[0,28],[1,28],[1,30],[0,25],[1,38],[1,26],[0,25],[1,31],[1,36],[0,22],[1,25],[0,25],[2,73],[1,49],[9,472],[0,12],[1,23],[1,38],[3,38],[4,204],[5,197],[-3,111],[1,23],[0,28],[1,38],[0,27],[1,25],[0,29],[1,23],[2,50],[8,165],[7,306],[1,28],[4,175],[0,6],[7,345],[4,161],[-77,1],[-60,2],[-17,0],[-35,1],[-61,3],[-23,1],[1,22],[1,32],[1,26],[1,40],[2,45],[1,34],[1,37],[1,23],[2,55],[1,40],[1,48],[3,67],[1,39],[1,25],[2,60],[-1,22],[-7,15],[-2,4],[12,16],[1,50],[2,49],[1,38],[1,29],[1,23],[1,22],[4,102],[2,61],[1,26],[1,22],[2,42],[2,77],[1,33],[1,23],[0,25],[2,37],[1,31],[1,49],[1,33],[1,37],[1,28],[1,29],[1,28],[0,26],[0,5]],[[93675,34009],[-52,-1],[-11,0],[-18,-26],[-6,-1],[-3,0],[-30,0],[-11,0],[-44,37],[-1,1],[-4,13],[-2,22],[0,3],[-5,24],[-2,8],[-12,21],[-1,1],[-42,61],[-6,6],[-9,5],[-1,0],[-13,0],[-4,-2],[-1,-1],[-14,-16],[-1,-6],[0,-17],[10,-18],[25,-29],[8,-19],[1,-12],[-2,-5],[-10,-11],[-9,-5],[-44,-17],[-11,-2],[-9,6],[-58,38],[-1,1],[-3,4],[-22,32],[0,11],[12,12],[5,12],[0,16],[0,1],[-5,14],[-7,9],[-63,53],[-13,4],[-13,-1],[-3,-1],[-33,-20],[-30,-13],[-3,-1],[-3,-2],[-99,-33],[-27,-5],[-56,-3],[-59,-10],[-1,-1],[-13,-4],[-26,-12],[-3,-2],[-31,-16],[-6,0],[-6,3],[-47,72],[1,5],[3,3],[13,7],[18,5],[5,5],[3,6],[-1,17],[-11,101],[-3,6],[-9,4],[-1,0],[-13,-2],[-20,-12],[-1,0],[-16,-14],[-32,-37],[-7,-11],[-3,-10],[-1,-48],[-11,-20],[-7,-4],[-10,1],[-6,3],[-4,4],[-23,48],[-8,19],[-6,9],[-16,8],[-6,5],[-2,6],[0,9],[6,8],[18,10],[22,10],[11,14],[2,7],[0,22],[-9,23],[-37,57],[-50,60],[-26,21],[-31,22],[-6,5],[-1,4],[-3,10],[-1,4],[9,42],[1,6],[1,5],[2,58],[5,95],[-1,19],[-3,5],[-13,2],[-13,1],[-31,2],[-2,-3],[-4,-6],[-9,-26],[-3,-8],[-6,-27],[0,-2],[0,-12],[3,-11],[0,-2],[1,-13],[-3,-8],[-71,-61],[-40,-26],[0,-1],[-23,-7],[-27,22],[-1,0],[-19,-1],[0,-1],[-54,-17],[-6,-1],[-4,-2],[-11,-18],[-13,-86],[-1,-14],[-7,6],[-26,23],[-52,21],[-1,0],[-30,11],[-1,-1],[-7,-4],[-8,-17],[-1,-1],[0,-35],[-6,-16],[-5,-5],[-2,-1],[-5,-5],[-50,-3],[-3,5],[3,66],[0,1],[6,107],[20,54],[0,1],[0,16],[-8,74],[-4,32],[-4,3],[-20,2],[-17,-1],[0,-1],[-3,-4],[-8,-19],[-2,-5],[-24,-40],[-15,-22],[-6,-8],[-16,-16],[-15,-8],[-10,-3],[-36,1],[-23,9],[-7,3],[-25,13],[-3,2],[-49,-3],[-99,-6],[-10,-1],[-6,-2],[-5,-9],[-2,-3],[-2,-3],[3,-41],[13,-63],[3,-24],[0,-24],[-1,-6],[-4,-8],[-8,-9],[-13,-15],[-29,-30],[-7,-7],[0,-1],[-31,-38],[-1,-1],[-2,-3],[-24,-35]],[[91417,34384],[0,-1],[0,1]],[[91417,34384],[-1,73],[-1,1],[-33,73],[-1,2],[-1,2],[-6,9],[-5,7],[-1,2],[-1,0],[-12,6],[-12,-2],[-1,0],[-5,-11],[1,-16],[5,-50],[1,-12],[0,-56],[-6,-10],[-7,0],[-33,4],[-2,2],[-38,31],[-40,43],[-1,2],[-6,12],[-3,13],[0,6],[1,9],[6,15],[15,14],[7,7],[4,17],[0,1],[-2,20],[-4,16],[-10,11],[-42,31],[-12,4],[-23,-4],[-40,-15],[-3,-1],[-13,-9],[-5,-15],[-17,-16],[-13,2],[-56,40],[-20,11],[-11,3],[-22,-3],[-1,0],[-22,5],[-17,10],[-26,21],[-8,10],[-4,8],[-6,12],[-11,10],[-9,0],[-16,-7],[-40,-49],[0,-1],[-2,-2],[0,-1],[-21,-51],[-1,-1],[1,-3],[9,-35],[8,-38],[0,-1],[0,-1],[0,-16],[-3,-15],[-8,-19],[-9,-9],[-15,-8],[-9,-2],[-15,3],[-7,5],[-6,7],[0,1],[-12,35],[-2,5],[-2,34],[-4,38],[-5,24],[-1,1],[-2,2],[1,1],[-22,25],[-67,79],[-3,3],[-22,12],[-60,22],[-21,5],[-16,-3],[-59,-20],[-1,-1],[-10,-6],[-5,-8],[0,-2],[-2,-8],[7,-37],[1,-2],[13,-21],[21,-16],[31,-62],[2,-21],[-4,-13],[-14,-15],[-13,-3],[-23,-1],[-11,3],[-11,8],[-8,15],[-18,19],[-13,2],[-69,-47],[-1,-1],[-21,0],[-8,3],[-65,37],[-1,1],[-47,-3],[-12,-6],[-15,-17],[-12,-20],[0,-9],[6,-20],[1,-18],[-4,-5],[-8,-2],[-11,6],[-24,36],[-2,2],[-31,31],[-20,9],[-20,1],[-14,1],[-29,-2],[-33,-6],[-51,-9],[-33,-2],[-20,6],[-3,2],[-27,13],[-13,13],[0,1],[-7,13],[-8,30],[-16,61],[-2,10],[-5,8],[-10,11],[-7,3],[-6,1],[-9,-2],[0,-1],[-7,-7],[-26,-50],[-36,-70],[-10,-6],[-56,-4],[-1,0],[-72,5],[-4,2],[-6,4],[0,1],[-1,0],[-4,5],[-2,7],[0,6],[20,47],[0,1],[35,68],[19,48],[3,12],[0,18],[-4,11],[-18,36],[-15,30],[-2,5],[-6,-1],[-5,-7],[-8,-19],[0,-1],[-13,-44],[-7,-9],[-10,-7],[-27,-11],[-26,3],[-6,2],[-83,-25],[-5,-2],[-53,-18],[-225,-5],[-40,-1],[-29,-1],[-68,-1],[-13,0],[-19,0],[-52,-1],[-72,-2],[-96,-2],[-54,-1],[-1,0]],[[88593,34725],[-149,-4],[-15,0],[-32,1],[-20,-1],[-18,1],[-15,-1],[-31,0],[-26,0],[-79,0],[-52,0],[-22,0],[-32,-1],[-456,-9],[0,-1],[-71,1],[-46,0],[-58,0],[-40,0],[-87,0],[-26,0],[-203,1],[-22,-4],[-153,-2],[-45,-1],[-175,-3],[-69,0],[-2,0],[-35,0],[-27,-3],[-75,2],[-1,0],[-251,-3],[-177,2],[-52,1],[-84,0],[-4,0],[-63,0],[-58,0],[-133,0],[-240,0],[-312,2],[-41,-1],[-62,0],[-38,0],[-74,-1],[-92,-4],[-192,-10],[-94,0],[-130,-1],[-56,-1],[-44,0]],[[84314,34685],[-3,110],[-2,55],[-4,180],[6,253],[0,85],[2,206],[0,68]],[[87438,40696],[247,-116],[106,-17],[156,13],[15,3],[6,2],[11,5],[28,11],[25,10],[38,29],[230,171],[110,144],[12,16],[155,213],[4,7],[147,120],[7,6],[1,1],[16,13],[27,7],[73,20],[100,-70],[4,-3],[11,-8],[35,-24],[193,-134],[239,-212],[61,-55],[23,-11],[11,-28],[8,-19],[-11,-121],[-4,-41],[-18,-67],[67,-202],[85,-109],[118,9],[119,-59],[106,-3],[61,-20],[69,-58],[67,-44],[95,14],[41,-13],[19,2],[46,13],[34,-51],[167,-249],[4,-6],[101,-159],[201,-143],[33,-24],[280,-192],[21,-16],[154,-112],[162,-270],[32,-53],[2,-43],[6,-170],[1,-20],[-15,-58],[-32,-123],[-52,-197],[-8,-30],[10,-36],[16,-58],[19,-66],[179,-97],[51,-27],[100,18],[222,39],[157,-18],[20,-65],[299,-283],[118,-243],[63,-130],[5,-3],[178,-113],[229,-74],[122,-47],[148,-43],[45,-5],[23,-5],[40,-6],[59,-28],[26,-13],[79,-62],[57,-61],[33,-75],[37,-82],[-1,-98],[-39,-173],[-18,-83],[-1,-4],[-9,-301],[3,-72],[1,-16],[6,-118],[-28,-94],[31,-103],[96,-140],[40,-107],[7,-9],[93,-116],[106,-132],[216,-310],[29,-72],[8,-55],[-1,-60],[-7,-45],[-16,-49],[-23,-33],[-30,-30],[-26,-20],[-23,-14],[-25,-12],[-25,-7],[-95,-9],[-44,15],[-224,81],[-46,3],[-8,0],[-37,-16],[-27,-26],[-4,-15],[-22,-214],[-5,-129]],[[32154,39709],[-2,-59],[-1,-42],[-1,-38],[-1,-24],[-1,-34],[-3,-89],[-1,-37],[-2,-72],[-5,-150],[1,-22],[0,-24],[-2,-28],[-1,-32],[-1,-50],[-1,-57],[-2,-60],[-1,-29],[-3,-98],[-2,-60],[-1,-29],[-1,-32],[-2,-38],[-1,-39],[-1,-39],[-2,-55],[-1,-23],[-1,-39],[-5,-39],[-3,-108],[-13,-441],[136,-5],[17,0],[18,-2],[21,0],[16,-1],[20,0],[15,-1],[18,-1],[28,0],[55,-2],[-3,-99],[-2,-59],[-1,-48],[-1,-53],[-2,-53],[0,-29],[-1,-44],[-1,-49],[0,-23],[-1,-37],[-3,-104],[-1,-55],[-2,-86],[-4,-125],[-1,-56],[-2,-79],[-2,-78],[-2,-70],[-2,-58],[-3,-94],[-1,-30],[-3,-127],[-5,-159],[-5,-186],[-7,-228],[-2,-68],[-1,-41],[-1,-45],[-2,-52],[-4,-168],[0,-5],[-4,-120],[0,-22],[1,-64],[0,-2],[-1,-41],[-7,-86],[-1,-27],[-1,-49],[0,-26],[-1,-32],[0,-27],[-1,-28],[-1,-22],[-1,-38],[-1,-58],[0,-37],[-1,-50],[-2,-51],[-1,-54],[-2,-27],[0,-33],[0,-42],[-6,-163],[-4,-125],[1,-29]],[[32340,34149],[-79,2],[-24,1],[-60,2],[-51,1],[-50,2],[-37,1],[-37,0],[-6,1],[-43,1],[-38,1],[-102,2],[-12,1],[-57,2],[-1,0],[-50,2],[-50,1],[-19,1],[-23,1],[-10,0],[-21,1],[-30,1],[-20,1],[-17,0],[-16,1],[-15,0],[-67,3],[-67,2],[-24,1],[-55,2],[-17,1],[-16,1],[-62,2],[-17,0],[-23,1],[-16,-1],[-19,-1],[-16,0],[-88,6],[-20,1],[-18,1],[-18,0],[-29,1],[-25,1],[-5,0],[-163,7],[-76,1],[-4,1],[-33,1],[-23,1],[-23,1],[-18,2],[-187,10],[-19,1],[-17,0],[-47,2],[-114,4],[-52,3],[-5,0],[-101,4],[-14,1],[-52,2],[-58,3],[-29,1],[-20,1],[-30,2],[-36,2],[-18,0],[-64,4],[-47,2],[-28,1],[-30,1],[-30,1],[-38,1],[-103,3],[-29,1],[-40,1],[-44,1],[-41,1],[-76,2],[-141,3],[-87,2],[-125,0],[-20,0],[-51,1],[-28,1],[-55,1],[-26,1],[-25,0],[-31,1],[-18,0],[-20,0],[-33,0],[-29,1],[-11,0],[-15,0],[-37,0],[-31,1],[-46,0],[-46,1],[-27,0],[-36,1],[-20,0],[-16,0],[-28,1],[-47,0],[-37,0],[-24,1],[-17,0],[-15,1],[-16,0],[-19,0],[-19,0],[-37,1],[-38,1],[-119,4],[-23,-2],[-80,1],[-67,2],[-197,4],[-23,1],[-16,0],[-23,0],[-19,-1],[-15,1],[-17,1],[-23,0],[-18,2],[-41,0],[-16,1],[-122,2],[-66,1],[-15,1],[-20,1],[-29,1],[-17,0],[-48,1],[-26,1],[-20,0],[-38,0],[-98,2],[-112,2],[-24,1],[-112,4],[-28,1],[-22,0],[-15,0],[-46,0],[-61,1],[-16,0],[-21,0],[-15,0],[-20,1],[-17,1],[-17,0],[-30,1],[-36,1],[-22,0],[-15,1],[-17,0],[-17,0],[-26,1],[-22,0],[-20,1],[-19,1],[-26,1],[-16,0],[-31,1],[-40,1],[-18,0],[-16,0],[-16,0],[-49,1],[-29,-2],[-18,1],[-27,1],[-30,2],[-25,2],[-15,3],[-73,3],[-27,1],[-30,1]],[[25458,34341],[0,34],[1,33],[0,27],[1,23],[0,32],[1,46],[2,89],[1,29],[3,193],[1,25],[4,184],[3,132],[2,91],[3,90],[1,36],[1,27],[0,86],[4,83]],[[52812,34839],[0,-44],[0,-4],[-1,-89],[-1,-49],[0,-23],[-4,-226],[-1,-51],[-3,-52],[-1,-99],[0,-46],[-1,-96],[-1,-72],[-2,-157],[-2,-137],[0,-38],[-4,-229],[2,-30],[-1,-24],[-2,-51],[-1,-87],[-1,-81],[-3,-243],[-2,-105],[-1,-105],[-1,-34],[0,-25],[-1,-66],[-2,-135],[-1,-62],[0,-30],[-1,-22],[-1,-95],[-2,-121],[-2,-122]],[[52771,31989],[-75,2],[-22,0],[-69,1],[-82,2],[-15,0],[-183,4],[-23,0],[-98,2],[-199,4],[-39,0],[-15,-15],[-36,1],[-75,2],[-69,2],[-35,1],[-119,3],[-106,2],[-37,1],[-48,1],[-115,3],[-33,1],[-63,2],[-56,1],[-28,-1],[-54,-2],[-93,-2],[-55,4],[-47,3],[-22,1],[-15,1],[-15,0],[-16,0],[-16,0],[-403,15],[-7,0],[-11,0],[-17,1],[-18,0],[-69,2],[-207,5],[-195,5],[-69,1],[-167,4],[-28,1],[-76,2],[-125,3],[-27,1],[-87,2],[-40,1],[-195,10],[-17,2],[-19,0],[-20,0],[-70,2],[-40,0],[-147,7],[-22,2],[-166,18],[-25,3],[-75,7],[-44,3],[-27,0],[-113,0],[-25,2],[-77,3],[-46,1],[-7,0],[-27,1],[-25,0],[-17,1],[-19,-1],[-26,1],[-53,1],[-25,1],[-16,0],[-82,1],[-30,1],[-26,0],[-24,1],[-39,1],[-104,6],[-47,1],[-131,4],[-26,0],[-39,1],[-138,5],[-23,0],[-20,1],[-19,1],[-240,9],[-109,4],[-25,0],[-96,4],[-19,1],[-36,1],[-23,1],[-210,7],[-2,0],[-130,5],[-8,0]],[[46263,32175],[-166,4],[-107,3],[-29,0],[-68,2],[-5,0],[-245,5],[-79,2],[-110,4],[-16,0],[-15,0],[-69,-2],[-26,0],[-17,1],[-41,1],[-20,0],[-19,1],[-15,4],[-145,1],[-58,1],[-108,2],[-21,1],[-25,0],[-84,1],[-32,3],[-171,2],[-45,0],[-160,4],[-19,0],[-17,-1],[-17,1],[-19,1],[-23,3],[-44,0],[-31,0],[-21,0],[-26,1],[-32,0],[-32,1],[-10,1],[-17,1],[-45,2],[-51,1],[-28,1],[-16,0],[-69,2],[-27,1],[-17,0],[-21,0],[-1,0],[-20,0]],[[38835,30783],[-16,1],[-24,1],[-37,1],[-18,1],[-18,0],[-17,2],[-215,7],[-95,4],[-18,1],[-90,5],[-117,5],[-53,3],[-66,3],[-64,3],[-107,-2],[-60,0],[-73,2],[-29,1],[-57,2],[-57,1],[-64,2],[-35,0],[-18,1],[-16,0],[-25,2],[-47,2],[-31,1],[-64,2],[-97,4],[-106,3],[-38,1],[-16,0],[-25,1],[-21,1],[-23,1],[-19,0],[-25,1],[-16,0],[-16,0],[-17,1],[-18,0],[-29,2],[-43,1],[-22,1],[-45,1],[-19,1],[-48,1],[-18,1],[-45,3],[-35,1],[-36,2],[-116,7],[-22,2],[-2,0],[-22,1],[-44,4],[-17,-1],[-7,0],[-10,1],[-26,1],[-36,1],[-17,1],[-25,1],[-16,1],[-19,1],[-17,1],[-15,0],[-40,1],[-26,1],[-83,1],[-19,0],[-94,2],[-118,6],[-7,0],[-11,1],[-129,6],[-21,1],[-137,3],[-74,1],[-17,0],[-17,1],[-29,2],[-24,1],[-49,2],[-30,2],[-29,2],[-135,4],[-71,3],[-116,5],[-95,6],[-37,3],[-27,1],[-33,2],[-16,1],[-151,1],[-44,1],[-24,1],[-192,6],[-29,1],[-16,1],[-97,3],[-140,5],[-35,2],[-47,-7],[-35,1],[-20,1],[-27,1],[-88,3],[-37,0],[-147,5],[-22,1],[-51,2],[-35,1],[-84,3],[-25,1],[-24,0],[-19,1],[-26,1],[-19,0],[-21,1],[-44,1],[-43,1],[-27,1],[-24,1],[-17,0],[-28,1],[-32,1],[-63,1],[-23,1],[-36,2],[-32,0],[-60,2],[-26,0],[-27,1],[-22,1],[-16,0],[-26,1],[-17,0],[-16,1],[-18,0],[-48,2],[-15,0],[-17,1],[-31,1],[-54,3],[-33,0],[-30,1],[-18,0],[-21,2],[-50,1]],[[32263,31003],[1,58],[1,31],[1,34],[0,29],[1,23],[0,35],[2,47],[1,26],[0,28],[1,46],[1,38],[0,36],[0,29],[2,166],[3,116],[8,289],[2,69],[1,26],[0,26],[1,27],[1,44],[1,38],[1,39],[1,30],[0,34],[1,42],[1,26],[1,48],[1,25],[3,144],[2,72],[3,63],[2,67],[0,31],[3,155],[1,72],[1,29],[2,60],[2,78],[1,34],[0,8],[2,81],[1,32],[2,87],[2,83],[2,68],[0,4],[2,78],[0,5],[4,126],[0,26],[2,52],[1,60],[0,2],[1,34],[1,33],[3,57]],[[69234,36848],[-1,-28],[-1,-51],[-1,-34],[-1,-24],[0,-24],[-1,-23],[-2,-74],[0,-33],[-3,-101],[-1,-38],[0,-30],[-2,-56],[0,-23],[-2,-70],[-1,-37],[0,-27],[-1,-81],[0,-45],[0,-54],[0,-31],[-1,-47],[0,-25],[0,-76],[0,-33],[0,-29],[-1,-13],[0,-48],[0,-27],[0,-27],[0,-27],[-1,-80],[0,-35],[0,-23],[0,-26],[-1,-75],[0,-56],[0,-35],[3,-132],[1,-35],[-1,-38],[-1,-53],[0,-29],[-1,-56],[-1,-27],[0,-47],[-1,-29],[-2,-113],[0,-67],[-2,-79],[-1,-22],[1,-39],[0,-33]],[[69208,34483],[-22,0],[-66,2],[-34,1],[-17,0],[-18,1],[-53,1],[-26,1],[-20,1],[-17,1],[-15,1],[-18,0],[-19,1],[-5,0],[-21,2],[-39,0],[-26,0],[-95,1],[-41,1],[-26,1],[-31,1],[-27,0],[-41,0],[-21,0],[-28,0],[-17,0],[-53,-1],[-21,0],[-21,1],[-26,1],[-26,2],[-80,5],[-33,2],[-24,2],[-16,1],[-49,3],[-16,1],[-37,2],[-71,4],[-27,1],[-23,2],[-69,5],[-27,1],[-17,2],[-45,3],[-124,10],[-49,4],[-20,1],[-14,1],[-7,0],[-15,1],[-40,3],[-121,10],[-40,4],[-40,3],[-119,3],[-39,1],[-16,0],[-49,1],[-25,1],[-25,1],[-74,2],[-25,1],[-18,0],[-52,2],[-22,0],[-1,-62],[-5,-187],[-2,-83],[0,-31],[-1,-47],[-1,-81],[0,-32],[0,-9],[0,-39],[0,-23],[0,-68],[0,-31],[0,-27],[0,-26],[0,-26],[0,-28],[-1,-31],[0,-38],[-1,-31],[0,-74],[-1,-39],[-1,-119],[0,-39],[0,-14],[-1,-58],[-1,-35],[0,-23],[-1,-69],[0,-16],[-1,-23],[-1,-64],[0,-31],[-1,-53],[0,-37],[-1,-30],[-1,-32],[-2,-97],[-1,-32],[0,-23],[-1,-68],[-1,-23],[23,-1],[68,-4],[37,-2],[58,-2],[22,-1],[31,-1],[24,-1],[33,-2],[12,-1],[11,-1],[49,-3],[21,-1],[43,-2],[18,-1],[34,-2],[41,-1],[29,-1],[34,-1],[147,-5],[24,-1],[36,-1],[36,-1],[26,-1],[43,-1],[23,0],[28,-1],[24,-1],[72,-5],[24,-2],[3,-1],[23,-1],[77,-3],[26,-1],[17,-1],[50,-2],[28,-2],[37,-1],[16,-1],[27,-1],[43,-2],[28,-2],[83,-4],[18,-14],[2,-30],[0,-75],[0,-27],[0,-30],[-1,-90],[-1,-51],[0,-61],[0,-39],[-1,-55],[0,-38],[0,-56],[0,-40],[-1,-62],[0,-25],[0,-24],[-1,-32],[0,-30],[0,-61],[-1,-39],[0,-2],[0,-21],[-1,-23],[-1,-24],[1,-22],[0,-23],[0,-24],[0,-34],[-1,-25],[-1,-25],[0,-25],[0,-24],[-1,-74],[0,-35],[0,-46],[-1,-139],[-1,-46],[0,-31],[0,-40],[-1,-53],[0,-52],[-1,-83],[0,-25],[-1,-76],[0,-26]],[[68357,30740],[-16,1],[-49,1],[-17,0],[-18,0],[-55,1],[-18,1],[-21,0],[-63,1],[-33,1],[-49,1],[-18,0],[-52,2],[-18,0],[-29,1],[-86,2],[-32,1],[-45,1],[-67,2],[-76,2],[-43,1],[-19,0],[-59,2],[-16,1],[-23,1],[-63,1],[-51,2],[-51,2],[-17,0],[-50,2],[-17,1],[-41,1],[-123,3],[-51,1],[-20,1],[-4,0],[-20,1],[-16,0],[-48,2],[-16,0],[-24,1],[-18,0],[-52,1],[-23,1],[-41,1],[-49,1],[-74,1],[-41,1],[-27,1],[-28,0],[-53,2],[-27,1],[-27,0],[-62,2],[-17,0],[-32,1],[-24,1],[-49,2],[-25,2],[-122,3],[-58,2],[-15,1],[-18,0],[-19,1],[-17,-2],[-58,1],[-19,1],[-28,0],[-82,0],[-18,1],[-34,0],[-48,1],[-21,0],[-37,0],[-94,0],[-32,0],[-16,0],[-17,0],[-29,-1],[-15,0],[-16,0],[-23,-1],[-35,-2],[-33,-1],[-35,-1],[-62,-1],[-24,-1],[-22,1],[-40,2],[-25,2],[-28,1],[-37,3],[-38,3],[-22,1],[-48,3],[-45,1],[-57,-1],[-91,2],[-45,0],[-22,0],[-37,1],[-17,1],[-25,1],[-73,3],[-25,2],[-56,2],[-54,3],[-116,4],[-56,2],[-16,1],[-19,1],[-17,0],[-61,2],[-18,1],[-17,1],[-23,0],[-48,1],[-15,1],[-36,0],[-106,3],[-21,1],[-24,1],[-41,1],[-17,0],[-51,2],[-17,0],[-1,0],[-18,1],[-22,1],[-39,1],[-33,1],[-102,3],[-38,1],[-23,1],[-25,0],[-21,1],[-17,0],[-55,2],[-16,1],[-34,1],[-22,1],[-28,1],[-15,0],[-24,1],[-16,0],[-16,1],[-35,1],[-19,0],[-19,1],[-56,1],[-34,1],[-52,1],[-18,0],[-56,2],[-19,0],[-20,0],[-27,1],[-24,1],[-31,1],[-34,1],[-102,2],[-30,1],[-13,0],[-19,1],[-17,0],[-4,0],[-13,1],[-36,-1],[-17,1],[-12,1],[-3,0],[-21,1],[-61,2],[-21,1],[-26,1],[-34,1],[-45,1],[-27,0],[-36,1],[-108,2],[-33,1],[-15,1],[-36,1],[-21,1]],[[61844,30902],[-8,0],[-15,-1],[-84,3],[-57,1],[-58,1],[-45,1],[-52,1],[-77,2],[-112,3],[-51,1],[-28,0],[-16,0],[-24,1],[-20,0],[-19,1],[-34,0],[-67,1],[-121,3],[-101,3],[-46,0],[-115,4],[-31,0],[-69,1],[-136,2],[-36,1],[-16,0],[-37,1],[-26,0],[-21,1],[-41,-1],[-61,0],[0,25],[0,43],[0,53],[0,199],[0,26],[0,26],[0,46],[-1,138],[0,49],[0,46],[-1,98],[0,51],[0,75],[-1,67],[0,56],[0,30],[0,25],[0,60],[0,78],[0,46],[1,111],[0,77],[5,173],[0,46],[0,149],[0,73],[0,25],[0,47],[0,86],[0,76],[0,16],[0,38],[-1,131],[0,198],[0,50],[0,95],[0,61],[1,309],[1,29],[0,35],[0,25],[0,32],[-2,27],[0,48],[1,23],[1,96],[1,165],[0,32],[-3,50],[2,88],[1,6],[-1,72],[-1,33],[0,23],[-32,0],[-43,0],[-35,0],[-39,0],[-29,0],[-29,-1],[-19,0],[-29,0],[-22,0],[-29,0],[-45,0],[-32,1],[-30,1],[-16,-1],[-25,2],[-48,-1],[-34,0],[-24,0],[-140,1],[-19,0],[-94,0]],[[78497,35686],[-1,-248],[-1,-41],[0,-41],[-1,-73],[3,-46],[-1,-46],[-2,-282],[0,-122],[1,-63],[0,-18],[-26,-3],[-142,5],[-16,-2],[1,-64],[0,-10],[3,-554],[1,-47],[4,-215],[0,-67],[0,-99],[0,-44],[0,-139],[0,-47],[0,-64],[1,-229],[0,-23],[1,-286],[0,-46],[-6,-196],[-7,-981],[-4,-195],[0,-8],[-3,-335],[-4,-378],[-1,-120],[0,-44],[-3,-159],[-3,-336],[0,-118],[0,-33],[0,-295],[-1,-126],[0,-53],[0,-81],[-1,-47],[-1,-46],[-5,-229],[-2,-116],[-4,-251]],[[78277,28625],[-1,-19],[0,-3],[-1,-92],[-1,-49],[-1,-34],[-3,-289],[-2,-144],[0,-15],[0,-12],[-5,-317],[-141,9],[-135,9],[-75,-1],[-213,-2],[-143,-13],[-17,-2],[-105,-10],[-206,-3],[-81,-2],[-70,2],[-58,1],[-47,1],[-28,1],[-61,2],[-75,14],[-133,27],[-27,5],[-21,4],[-1,1],[-28,4],[-91,-7],[-1,0],[-146,-23],[-172,-16],[-25,-1],[-137,-8],[-100,-6],[-30,1],[-107,1],[-29,-2],[-194,-15],[-72,-5]],[[75494,27617],[-220,-18],[-52,-2],[2,75],[2,102],[3,150],[3,133],[7,325],[18,182],[7,357],[6,336],[1,42],[1,69],[1,26],[1,70],[0,164],[0,194],[-163,4],[-92,7],[-87,6],[0,50],[4,218],[2,113],[4,202],[2,125],[3,191],[4,251],[0,75],[0,96],[3,214],[3,365],[0,50],[0,113],[1,153],[4,460],[3,61],[1,70],[0,44],[1,182],[1,121],[4,607],[1,21],[0,25],[1,29],[12,675],[1,33],[4,170],[0,252],[-223,-12],[-17,-1],[-58,-4],[-42,-1],[-16,0],[-149,0],[-40,0],[-101,3],[-342,11],[-13,1],[-533,-1],[-8,0],[-47,-3],[-86,3],[-111,2],[-486,8],[-25,1],[-26,0],[-156,3],[-101,6],[-133,-1],[-53,0],[-53,0],[-9,-1],[-22,0],[-106,5],[-43,2],[-76,0],[-191,-2],[-16,-3],[-36,-6],[-34,-6],[-18,-2],[-48,-9],[-44,-8],[-389,-94],[-20,-3],[-97,-22],[-20,-6],[-152,-34],[-17,-3],[-20,-5],[-253,-56],[-32,-8],[-162,-28],[-49,-8],[-37,-5],[-211,-34],[-28,-5],[-19,-4],[-36,0],[-8,1],[-26,1],[-53,1],[-32,0],[-90,2],[-58,1],[-64,0],[-75,1],[-45,1],[-54,1],[-16,0],[-79,-1],[-93,0],[-51,0],[-35,0]],[[25458,34341],[0,-35],[-1,-25],[-1,-86],[-3,-102],[0,-76],[-1,-60],[-1,-56],[0,-32],[-3,-152],[-5,-211],[-1,-39],[-4,-91],[0,-24],[-1,-25],[0,-26],[-1,-256],[-2,-23],[-1,-35],[0,-22],[-1,-37],[-1,-36],[0,-35],[-1,-27],[0,-28],[-1,-64],[0,-11],[-1,-70],[-1,-48],[0,-33],[-1,-32],[-1,-39],[0,-59],[-1,-27],[0,-27],[-1,-48],[-1,-48],[0,-24],[-1,-36],[-1,-70],[-1,-44],[-1,-38],[0,-35],[-1,-72],[-1,-34],[-1,-39],[-1,-89],[-1,-28],[-1,-39],[-1,-63],[0,-24],[-1,-30],[-1,-39],[-1,-88],[-1,-26],[-1,-39],[-1,-43],[-1,-43],[-1,-80],[-2,-96],[-1,-39],[-1,-78],[1,-23],[-2,-89],[-1,-77],[-2,-76],[-1,-50],[-1,-50],[0,-25],[-1,-24],[-1,-41],[0,-41],[-5,-192],[0,-2],[-2,-116],[0,-5],[-2,-64],[-1,-63],[-1,-26],[0,-6],[-1,-75],[-9,-80],[1,-39],[0,-44],[-1,-32],[-2,-55],[-1,-56],[-6,-240],[-2,-93],[0,-24],[-1,-28],[0,-12]],[[25358,29312],[-6,0],[-14,0],[-30,1],[-30,0],[-50,2],[-47,1],[-16,1],[-20,0],[-29,1],[-34,1],[-14,0],[-35,2],[-39,2],[-21,1],[-17,1],[-16,0],[-31,2],[-21,1],[-46,2],[-20,1],[-24,0],[-45,0],[-16,1],[-20,3],[-16,1],[-19,0],[-48,2],[-43,1],[-54,2],[-19,0],[-18,1],[-33,1],[-23,0],[-142,4],[-28,1],[-26,1],[-69,3],[-69,2],[-57,3],[-68,3],[-61,1],[-25,1],[-45,1],[-21,0],[-39,1],[-39,1],[-16,-2],[-29,1],[-38,1],[-39,2],[-33,1],[-46,2],[-48,1],[-31,1],[-40,2],[-34,1],[-5,0],[-53,2],[-26,1],[-39,2],[-89,4],[-10,0],[-6,1],[-8,0],[-9,1],[-22,1],[-29,2],[-3,0],[-25,1],[-17,1],[-21,2],[-20,-2],[-23,1],[-40,2],[-39,2],[-39,1],[-36,0],[-34,1],[-39,0],[-21,0],[-18,1],[-61,1],[-19,0],[-22,0],[-15,-2],[-18,0],[-17,1],[-30,4],[-19,0],[-30,1],[-20,1],[-20,1],[-55,2],[-55,5],[-6,0],[-26,1],[-66,3],[-70,3],[-1,0],[-27,2],[-27,1],[-13,1],[-5,0],[-22,0],[-2,0],[-17,1],[-18,1],[-22,1],[-39,2],[-2,0],[-18,1],[-25,1],[-19,1],[-20,0],[-13,0],[-3,0],[-17,1],[-35,1],[-38,1],[-48,0],[-76,3],[-16,1],[-68,2],[-39,1],[-44,1],[-34,1],[-40,0],[-65,0],[-50,1],[-17,0],[-26,0],[-45,1],[-269,12],[-78,3],[-49,1],[-18,0],[-18,1],[-21,1],[-40,1],[-40,11],[-23,-1],[-28,1],[-48,0],[-34,0],[-61,2],[-45,1],[-44,2],[-104,3],[-104,3],[-64,4],[-16,1],[-21,1],[-16,0],[-106,4],[-15,0],[-43,2],[-41,1],[-18,1],[-66,4],[-22,1],[-31,2],[-20,1],[-40,2],[-39,2],[-44,3],[-53,3],[-55,3],[-56,3],[-35,2],[-49,3],[-16,1],[-18,2],[-29,3],[-39,4],[-20,2],[-24,2],[-16,1],[-47,3],[-33,1],[-33,2],[-15,3],[-21,2],[-19,1],[-15,1],[-17,1],[-38,3],[-15,1],[-26,2],[-63,5],[-21,2],[-17,0],[-1,0],[-26,2],[-17,1],[-18,1],[-25,2],[-26,1],[-40,2],[-28,2],[-49,1],[-40,1],[-23,1],[-17,1],[-39,2],[-24,1],[-16,1],[-40,1],[-62,4],[-18,1],[-40,2],[-19,0],[-16,1],[-17,0],[-52,2],[-53,2],[-48,3],[-100,4],[-28,6],[-35,1],[-17,-1],[-24,1],[-19,1],[-16,1],[-19,1],[-24,2],[-26,3],[-28,-2],[-28,0],[-18,-1],[-30,0],[-26,1],[-38,1],[-36,1],[-43,1],[-22,1],[-22,3],[-16,1],[-44,1],[-15,0],[-30,1],[-21,0]],[[17335,29634],[1,50],[-1,39],[0,32],[1,47],[-1,39],[1,24],[0,37],[0,49],[0,62],[0,41],[0,39],[0,38],[0,75],[0,39],[0,41],[0,44],[0,75],[1,69],[0,39],[0,29],[0,21],[0,28],[1,53],[0,3],[0,70],[0,24],[1,39],[0,41],[0,36],[0,25],[0,50],[1,49],[0,24],[1,94],[-1,31],[1,69],[-1,26],[0,52],[0,25],[0,22],[0,43],[0,26],[0,24],[2,31],[0,22],[0,25],[0,33],[0,34],[0,34],[0,46],[0,35],[0,39],[-1,26],[1,84],[1,42],[-1,33],[0,16],[0,16],[0,2],[0,26],[0,69],[0,47],[1,35],[0,80],[1,33],[1,47],[1,31],[0,90],[1,89],[1,91],[0,22],[-1,65],[1,65],[0,41],[0,38],[0,57],[-1,23],[0,80],[0,97],[-2,119],[0,18],[-1,76],[0,64],[-1,54],[0,51],[0,27],[0,29],[1,32],[-2,88],[-1,50],[0,27],[0,46],[1,25],[1,32],[-1,37],[0,29],[0,23],[0,26],[0,33],[0,35],[0,23],[1,22],[1,99],[-3,25],[1,54],[-1,36],[-2,49],[0,52],[-1,107],[1,101],[-1,328],[1,90],[-2,140],[-3,179],[0,30],[1,45],[0,22],[0,18],[0,40],[1,32],[0,32],[-1,41],[0,66],[0,24],[0,34],[0,22],[-1,40],[0,43],[0,27],[0,30],[-1,68]],[[84314,34685],[4,-48],[9,-94],[28,-271],[12,-119],[29,-287],[29,-279],[12,-119],[-4,-76],[-5,-113],[-1,-33],[-5,-93],[-5,-113],[-1,-25],[-3,-59],[0,-2],[-6,-105],[-10,-199],[-4,-74],[-7,-76],[-16,0],[-17,-99],[-1,-25],[3,-68],[-2,-64],[2,-82],[0,-33],[4,-237],[0,-60],[0,-65],[-2,-111],[-3,-150],[-2,-93],[-1,-74],[-2,-131],[-3,-181],[-1,-49],[-1,-70],[-2,-96],[-4,-210],[0,-45],[-1,-22],[-5,-30],[-1,-138],[-1,-60],[-2,-212],[-1,-67],[-1,-75],[0,-30],[0,-55],[1,-98],[1,-76],[1,-70],[2,-143],[0,-31],[1,-41],[1,-143],[1,-103],[-1,-163],[-2,-141],[0,-120],[-2,-78],[1,-55],[-1,-100],[-409,20],[-89,5],[-17,1],[-62,2],[-204,7],[-51,2],[-181,18],[-33,4],[-32,3]],[[83251,28568],[-38,5],[-25,2],[-41,4],[-2,1],[-32,3],[-54,5],[-88,9],[-163,-3],[-43,-1],[-82,-2],[-92,-1],[-20,-1],[-61,-1],[-55,-1],[-70,1],[-51,0],[-39,0],[-25,0],[-17,1],[-159,1],[-100,-3],[-95,-2],[-27,-1],[-203,-5],[-40,-1],[-245,-15],[-59,-3],[-174,6],[-258,8],[-35,0],[-33,2],[-32,0],[-195,3],[-21,0],[-3,0],[-216,3],[-43,1],[-50,1],[-21,1],[-167,5],[-78,2],[-71,2],[-83,2],[-40,0],[-37,0],[-37,0],[-5,0],[-36,-1],[-127,2],[-86,-1],[-165,1],[-122,-1],[-55,2],[-16,0],[-99,4],[-20,-1],[-161,-2],[-106,5],[-41,2],[-111,6],[-23,1],[-88,3],[-95,5],[-98,4]],[[75494,27617],[-3,-193],[-1,-68],[-1,-98],[-1,-64],[-1,-31],[-1,-117],[-1,-34],[0,-63],[-1,-183],[0,-100],[25,1],[-6,-371],[-20,-343],[-1,-30],[-6,-127],[-3,-81],[-1,-25],[-1,-24],[0,-83],[-2,-176],[0,-56],[-69,2],[-54,2],[-72,1],[-86,2],[-4,-186],[-1,-54],[-3,-100],[-3,-167],[-3,-120],[-105,1],[-50,0],[-33,1],[-5,0],[-40,0],[-44,1],[-11,0],[-10,0],[-35,-6],[0,-30],[0,-10],[-2,-119],[-1,-66],[0,-47],[6,-78],[0,-70],[-1,-226],[-1,-249],[-1,-118],[-1,-110],[0,-3],[0,-26],[-1,-167],[0,-69],[-5,-438],[0,-64]],[[74834,22838],[-129,2],[-83,2],[-29,1],[-257,7],[-99,2],[-365,9],[-165,4],[-98,3],[-22,0],[-37,-1],[-86,5],[-62,1],[-22,0],[-3,0],[-106,2],[-23,1],[-70,1],[-46,1],[-226,4],[-142,4],[-16,1],[-100,3],[-271,9],[-60,1],[-202,7],[-27,0],[-25,1],[7,223],[3,94],[2,63],[1,42],[1,217],[0,29],[1,117],[-1,163],[-74,0],[-201,-1],[-157,4],[-114,3],[1,54],[-62,-19],[-132,-49],[-73,-28]],[[71265,23820],[-2,93],[2,211],[0,177],[-2,155],[5,152],[6,136],[1,42],[2,36],[-3,33],[-39,-11],[-94,-25],[-136,-36],[2,127],[1,52],[4,206],[3,179],[1,68],[-232,-57],[-73,-18],[-44,-12],[-109,-31],[-42,-12],[-49,-14],[2,115],[1,76],[3,131],[-122,-33],[-49,-13],[-46,-12],[-56,-15],[0,43],[2,72],[0,103],[2,59],[0,89],[2,83],[1,64],[2,115],[-93,0],[-20,0],[-82,0],[-89,1],[-1,-88],[-44,2],[-49,1],[-53,0],[-135,3],[1,85],[0,27],[5,328],[2,167],[2,176],[1,85],[15,11],[16,8],[0,68],[0,111],[0,29],[1,97],[-42,-1],[-25,1],[-17,1],[-44,0],[-414,11],[2,136],[1,42],[0,46],[1,41],[1,65],[1,79],[3,337],[1,86],[2,49],[0,51],[1,22],[-1,24],[-1,38],[2,165],[1,72],[-266,-7],[0,32],[-2,287],[5,521],[1,79],[0,39],[2,235],[1,105],[0,54],[1,128],[0,36],[1,55],[0,45],[0,42],[1,249],[0,78],[1,228],[-32,1],[-267,5],[-31,0],[-1,0],[-141,3],[-74,1]],[[93675,34009],[3,-193],[22,-152],[47,-282],[111,-223],[31,-66],[92,-192],[56,-219],[39,-112],[35,-99],[182,-361],[90,-179],[38,-47],[157,-193],[88,-108],[210,-314],[10,-14],[8,-21],[76,-187],[186,-653],[28,-296],[-24,-168],[-72,-392],[-28,-151],[-51,-124],[-48,-56],[-113,-57],[-60,-29],[-404,-50],[-33,-13],[-112,-42],[-7,-9],[-82,-99],[-27,-31],[-13,-17],[-5,-6],[-52,-90],[-21,-39],[-174,-172],[-33,-74],[-5,-31],[-44,-252],[-8,-46],[-1,-6],[-3,-8],[-32,-92],[5,-162],[92,-194],[295,-451],[48,-44]],[[94172,27193],[-5,-15],[-14,-43],[-16,-2],[-2,-3],[-11,-13],[-16,-1],[-16,2],[-11,-18],[-16,-9],[-17,1],[-13,-22],[-16,-8],[-16,-3],[-8,20],[-18,9],[-16,16],[-16,2],[-11,-17],[-7,-22],[-12,-14],[-13,-13],[-14,-11],[-20,1],[-10,17],[1,26],[-15,10],[-13,-12],[-19,-15],[-11,-15],[-14,-7],[-21,-6],[-16,2],[-19,10],[3,25],[-14,10],[-11,18],[-13,14],[1,22],[-17,-14],[-8,-5],[-8,-4],[-8,0],[-9,0],[-85,0],[-87,1],[-21,3],[-31,-1],[-20,0],[-62,-1],[-27,-1],[-1,-53],[0,-7],[-1,-97],[-40,0],[-23,0],[-80,2],[-47,1],[-20,0],[-25,0],[-41,0],[-18,0],[-19,0],[-2,0],[-16,0],[-46,-1],[-22,-1],[-36,1],[-20,-1],[-48,1],[-29,0],[-27,0],[-4,-157],[-133,-1],[-142,0],[-81,0],[-55,0],[-137,-2],[0,-63],[0,-64],[-1,-26],[-1,-44],[0,-78],[-1,-42],[-29,-1],[-63,1],[-57,0],[-36,0],[-1,0],[-86,-1],[-26,0],[-145,0],[3,-128],[1,-30],[5,-108],[-269,-2],[0,-26],[0,-1],[-1,-4],[-3,-123],[-99,-2],[-49,-1],[-47,-2],[-24,0],[-20,0],[-38,-1],[2,-226],[1,-88],[-48,0],[-29,0],[-61,0],[-60,0],[-69,0],[0,-176],[0,-348],[0,-3],[0,-97],[-41,-1],[-19,0],[-1,0],[-148,-1],[-59,0],[-2,-314],[-17,0],[-53,1],[-49,1],[-19,0],[-72,-1],[-24,0],[-48,0],[-44,-1],[-25,0],[-26,0],[-26,0],[-33,0],[-22,0],[-24,0],[-25,1],[-18,-2],[-25,0],[0,-29],[-1,-24],[2,-103],[-7,-158],[-21,1],[-35,0],[-10,0],[-28,0]],[[90030,24478],[-60,0],[-30,0],[-49,1],[-31,-1],[-29,0],[-27,0],[-16,1],[-46,0],[-71,1],[-30,-1],[-115,1],[-70,0],[-38,-1],[-41,1],[-27,-1],[-39,-1],[-38,0],[-35,0],[-3,0],[-53,0],[-29,1],[-80,0],[-30,1],[-65,0],[-62,1],[-8,0],[-34,0],[-56,0],[-44,0],[-42,0],[-54,1],[-46,0],[-53,1],[-37,0],[-8,0],[-7,0],[-17,-2]],[[88510,24481],[1,131],[-1,130],[0,26],[0,79],[0,51],[0,54],[0,48],[0,36],[0,49],[0,26],[0,58],[1,48],[0,52],[-2,38],[0,275],[0,138],[0,17],[0,8],[0,187],[-1,151],[0,119],[0,180],[0,46],[0,62],[53,1],[1,83],[1,93],[5,318],[2,90],[1,60],[1,28],[0,109],[1,109],[1,149],[0,82],[0,9],[0,32],[0,136],[0,53],[0,66],[1,33],[0,135],[0,50],[1,115],[0,66],[0,68],[0,56],[0,44],[-20,0],[3,172],[0,25],[0,24],[5,312],[0,57],[2,135],[2,145],[2,83],[1,99],[0,1],[3,202],[0,30],[-1,109],[0,216],[-2,305],[0,83],[0,24],[0,64],[0,71],[0,84],[0,46],[1,175],[0,195],[1,92],[2,81],[0,39],[0,31],[0,55],[-1,24],[0,65],[0,104],[0,25],[0,49],[0,116],[-1,202],[0,25],[0,127],[0,26],[0,23],[0,29],[0,53],[0,85],[0,41],[0,74],[9,52],[0,26],[1,59],[0,58],[1,57],[0,48],[1,20],[0,49],[0,40],[1,12],[0,44],[1,38],[1,122],[0,1],[1,100],[0,33],[-1,129],[0,56],[-1,41],[-1,106],[3,56],[0,35],[0,38],[0,50],[0,40],[1,33],[0,21],[0,217],[-1,127],[1,23],[0,43],[1,49],[0,56],[0,31],[1,33],[0,97],[1,187]],[[61844,30902],[0,-14],[-1,-25],[0,-64],[-1,-116],[0,-77],[-2,-250],[-1,-88],[0,-104],[0,-63],[-1,-146],[0,-25],[-1,-61],[0,-25],[0,-18],[0,-29],[-1,-136],[0,-43],[-1,-189],[0,-34],[0,-105],[-1,-61],[0,-57],[-1,-105],[0,-44],[-1,-23],[0,-46],[4,-144],[-1,-28],[-2,-141],[0,-73],[-1,-180],[0,-48],[1,-54],[-1,-57],[0,-51],[-1,-109],[0,-40],[-1,-25],[-2,-117],[0,-33],[-1,-25],[0,-24],[-2,-112],[0,-53],[-3,-131],[-1,-70],[1,-23],[1,-45],[1,-41],[1,-61],[4,-59],[-2,-56],[1,-28],[-15,-3],[-44,1],[-4,-221],[-5,-230],[-1,-54],[-1,-53],[-2,-89],[0,-31],[-1,-38],[-1,-75],[-1,-45],[-1,-50],[-1,-33],[0,-33],[-1,-29],[-2,-29],[0,-24],[0,-38],[-1,-48],[1,-25],[-2,-38],[-2,-31],[0,-72],[-1,-32],[0,-49],[0,-35],[-3,-57],[1,-25],[0,-2],[-1,-24],[0,-147],[0,-29],[0,-57],[0,-30],[-1,-51],[0,-3],[-1,-34],[0,-35],[-2,-112],[-5,-394],[-2,-166],[-2,-100],[-2,-105],[0,-101],[-1,-67],[-1,-87],[0,-26],[0,-33],[0,-69],[0,-54],[-2,-169],[0,-24],[0,-101],[-2,-121],[0,-8],[1,-11],[0,-11],[-2,-113],[1,-39],[0,-35],[-2,-77],[0,-25],[-1,-68],[-1,-23],[-1,-35],[-1,-26],[0,-58],[-1,-42],[0,-2],[-3,-65],[0,-30],[0,-24]],[[61709,22807],[-19,0],[-23,0],[-80,0],[-23,0],[-27,0],[-27,0],[-19,0],[-13,0],[-2,0],[-65,-1],[-44,0],[-65,1],[-65,0],[-20,1],[-17,-3],[-102,3],[-95,3],[-34,1],[-53,0],[-16,2],[-19,0],[-23,0],[-18,1],[-19,0],[-17,-1],[-68,4],[-19,0],[-16,0],[-27,0],[-42,0],[-16,-1],[-20,0],[-29,-1],[-17,0],[-20,2],[-18,1],[-24,2],[-21,2],[-15,2],[-22,1],[-40,1],[-32,0],[-31,0],[-28,0],[-28,0],[-33,0],[-15,0],[-21,1],[-21,0],[-19,0],[-64,0],[-32,0],[-160,2],[-140,0],[-36,0],[-15,0],[-17,1],[-72,0],[-72,0],[-42,1],[-73,1],[-54,0],[-37,1],[-47,1],[-18,0],[-33,1],[-67,2],[-26,0],[-33,1],[-97,0],[-23,0],[-127,0],[-83,-1],[-54,1],[-22,0],[-21,0],[-108,4],[-139,3],[-28,0],[-35,2],[-58,3],[-18,1],[-39,2],[-93,7],[-15,1],[-69,4],[-107,8],[-19,2],[-79,5],[-23,1],[-68,5],[-28,2],[-5,0],[-17,0],[-59,3],[-34,3],[-18,1],[-36,3],[-31,2],[-32,1],[-7,1],[-14,0],[-26,2],[-70,4],[-30,3],[-50,4],[-47,4],[-40,3],[-15,1],[-43,3],[-73,5],[-28,3],[-102,7],[-87,5],[-66,5],[-18,1],[-49,0],[-67,0],[-38,1],[-122,1],[-41,1],[-23,0],[-144,1],[-22,0],[-19,0],[-6,0],[-11,0],[-21,0],[-8,1],[-18,0],[-74,0],[-141,1],[-18,1],[-22,0],[-101,1],[-63,0],[-24,0],[-26,1],[-84,0],[-28,0],[-69,1],[-31,0],[-41,1],[-82,0],[-80,1],[-129,1]],[[55221,22966],[-64,1],[-136,2],[-52,1],[-110,2],[-179,2],[-133,5],[-141,5],[-197,7],[-37,2],[-130,4],[-107,4],[-45,2],[-124,4],[-31,1],[-7,1],[-122,4],[-104,4],[-73,2],[-16,1],[-28,1],[-198,7],[-189,7],[-145,5],[-50,2],[-19,-2]],[[52784,23040],[3,154],[1,33],[1,25],[1,56],[1,58],[4,148],[4,166],[1,29],[2,51],[0,22],[0,47],[3,111],[1,69],[2,63],[3,211],[-1,22],[0,25],[-1,29],[2,23],[1,29],[1,21],[-1,34],[5,91],[1,2],[-1,42],[0,3],[0,32],[0,24],[0,24],[-1,32],[0,58],[2,34],[1,45],[0,68],[0,10],[2,131],[0,25],[-3,136],[0,30],[1,35],[0,34],[1,54],[1,36],[1,34],[0,23],[1,33],[0,24],[0,43],[0,34],[0,33],[1,30],[1,27],[0,28],[2,158],[1,23],[0,27],[0,23],[0,33],[0,1],[-3,20],[5,26],[-1,29],[0,29],[0,47],[2,38],[2,126],[-1,49],[0,34],[0,22],[1,34],[0,41],[1,28],[0,37],[4,234],[1,118],[1,86],[1,93],[1,98],[5,93],[-10,-1],[-8,5],[-27,-7],[-42,1],[0,30],[1,132],[0,71],[0,50],[2,112],[1,88],[4,283],[3,188],[0,96],[1,161],[1,89],[0,21],[0,5],[1,159],[0,102],[1,60],[0,25],[0,62],[0,33],[0,53],[0,38],[-7,46],[0,76],[1,45],[0,24],[0,31],[1,22],[1,116],[0,76],[2,132],[0,82],[1,27],[-10,68],[-9,51],[1,198],[1,39],[2,358],[2,152],[1,202],[1,164],[2,266],[1,44],[0,85],[1,82],[1,105],[0,46],[1,75],[0,72],[1,135],[1,46]],[[88510,24481],[-74,0],[-23,1],[-30,2],[-57,2],[-19,0],[-369,7],[-22,0],[-29,1],[-16,0],[-4,0],[-30,1],[-10,0],[-8,0],[-32,0],[-20,1],[-16,0],[-30,0],[-22,0],[-35,1],[-32,0],[-23,0],[-16,0],[-19,1],[-128,0],[-42,0],[-64,1],[-23,3],[-23,1],[-27,0],[-19,0],[-16,0],[-35,1],[-52,2],[-27,-3],[0,-48],[0,-65],[1,-225],[0,-54],[1,-81],[0,-155],[0,-28],[1,-51],[0,-50],[0,-2],[0,-120],[1,-78],[0,-46],[1,-24],[-1,-22],[0,-44],[0,-122],[0,-45],[0,-28],[0,-76],[1,-41],[0,-50],[0,-32],[0,-91],[-85,2],[-35,0],[-33,1],[-28,1],[-34,0],[-16,0],[-44,1],[-32,1],[-41,0],[-34,1],[-36,0],[-19,0],[-52,0],[-15,1],[-17,-1],[-28,1],[0,-45],[0,-21],[0,-47],[1,-35],[0,-3],[0,-19],[0,-28],[0,-26],[0,-4],[1,-18],[0,-2],[0,-22],[0,-31],[0,-16],[-19,2],[-2,0],[-21,0],[-22,-3],[-5,0],[-13,0],[-5,0],[-12,6],[-2,1],[-19,0],[-20,0],[-21,-1],[-33,0],[-20,1],[-17,0],[-44,0],[-20,-1],[-30,1],[-19,0],[-30,1],[-68,1],[-28,1],[-15,0],[-25,0],[-20,0],[-16,0],[-25,0],[-28,1],[-15,0],[-34,1],[-23,0],[-15,0],[-22,1],[-29,0],[-16,0],[-18,0],[-46,1],[-21,0],[-17,0],[-16,0],[-22,0],[-32,0],[-31,1],[-43,1],[-24,0],[-16,1],[-24,0],[-26,1],[-26,0],[-27,1],[-16,0],[-2,0],[-57,-2],[-1,1],[-54,0],[-91,2],[-23,0],[-31,0],[-24,1],[-38,0],[-39,1],[-22,0],[-72,1],[-102,2],[-16,0]],[[84846,22640],[2,28],[1,88],[0,26],[0,23],[1,232],[0,41],[0,27],[1,35],[1,22],[2,14],[1,21],[-1,65],[-1,46],[2,114],[0,33],[2,75],[1,56],[-3,21],[-25,-3],[-41,-4],[-42,-4],[-32,-3],[-27,3],[-54,6],[-71,1],[-40,0],[-19,1],[-17,0],[-24,1],[-16,0],[-15,0],[-30,0],[-41,3],[-64,1],[-16,0],[-169,3],[-48,0],[-48,0],[-44,0],[-29,1],[-243,13],[-48,-1],[-35,0],[-78,-1],[-11,0],[-4,0],[-67,0],[-117,-1],[-132,0],[-40,-1],[1,60],[4,127],[0,66],[0,36],[1,35],[1,67],[0,43],[1,84],[1,22],[1,61],[0,46],[5,87],[8,100],[2,84],[2,93],[2,124],[1,45],[1,71],[1,23],[1,42],[0,34],[1,58],[1,42],[1,49],[2,118],[3,144],[0,2],[0,69],[1,77],[0,25],[3,209],[1,84],[0,42],[0,22],[2,152],[0,30],[2,219],[3,239],[2,209],[2,103],[1,128],[1,64],[0,4],[0,55],[1,30],[6,23],[0,92],[1,61],[0,4],[1,221],[0,37],[1,209],[0,32],[1,92],[0,29],[1,53],[3,141],[1,41],[1,41],[1,35],[2,108],[2,79],[2,124]],[[32263,31003],[-2,-37],[0,-24],[-1,-31],[0,-30],[-1,-33],[-1,-30],[-1,-34],[-1,-26],[-1,-31],[0,-22],[0,-25],[-1,-36],[0,-35],[-1,-23],[0,-23],[-2,-33],[-2,-80],[-2,-78],[-1,-25],[-2,-66],[-1,-23],[0,-2],[-3,-122],[-2,-77],[-1,-110],[-1,-56],[-1,-22],[-3,-37],[3,-90],[-2,-35],[-2,-111],[-10,-336],[1,-24],[-2,-51],[0,-22],[-1,-34],[-1,-28],[-1,-67],[-1,-50],[-1,-26],[0,-24],[0,-17],[0,-9],[-2,-47],[0,-27],[1,-57],[-3,-111],[0,-4],[0,-20],[-3,-45],[0,-33],[-1,-23],[-1,-24],[0,-26],[-1,-44],[-2,-56],[0,-21],[-1,-50],[-1,-50],[-1,-39],[-1,-29],[0,-23],[-1,-35],[0,-30],[0,-25],[-1,-22],[-1,-57],[-3,-88],[-1,-35],[-1,-32]],[[32191,27855],[-23,-1],[-25,1],[-26,1],[-71,1],[-30,1],[-51,1],[-15,1],[-61,2],[-38,1],[-35,1],[-28,0],[-22,1],[-20,0],[-26,1],[-24,1],[-16,1],[-21,0],[-36,2],[-34,1],[-30,1],[-40,1],[-26,1],[-20,1],[-40,1],[-22,1],[-22,1],[-22,1],[-37,1],[-19,1],[-23,1],[-23,1],[-29,1],[-32,2],[-24,0],[-36,2],[-33,1],[-17,1],[-23,1],[-23,1],[-28,-2],[-17,0],[-43,0],[-23,2],[-21,1],[-21,0],[-18,1],[-55,1],[-19,1],[-22,0],[-16,2],[-19,0],[-78,1],[-52,2],[-16,0],[-20,1],[-33,1],[-20,1],[-26,1],[-44,1],[-25,2],[-40,1],[-15,1],[-48,5],[-54,-1],[-17,0],[-47,0],[-10,0],[-12,0],[-20,2],[-16,0],[-43,8],[-33,-5],[-71,2],[-29,1],[-27,1],[-20,0],[-39,2],[-76,2],[-16,1],[-17,0],[-16,1],[-42,1],[-23,1],[-16,0],[-31,1],[-29,1],[-15,1],[-26,0],[-29,1],[-20,0],[-19,1],[-21,0],[-15,1],[-17,0],[-29,1],[-18,0],[-33,1],[-33,1],[-30,0],[-24,1],[-19,1],[-24,1],[-48,1],[-34,1],[-15,1],[-37,1],[-21,1],[-15,0],[-29,1],[-42,1],[-21,0],[-22,-1],[-7,0],[-17,0],[-19,1],[-25,1],[-88,3],[-31,1],[-15,0],[-21,1],[-49,1],[-73,3],[-24,0],[-111,4],[-32,1],[-31,0],[-74,0],[-46,1],[-19,1],[-25,0],[-50,2],[-62,2],[-23,-1],[-58,1],[-22,1],[-21,-1],[-22,1],[-28,0],[-41,0],[-40,1],[-22,0],[-43,0],[-60,2],[-37,0],[-47,1],[-21,0],[-69,0],[-19,0],[-16,1],[-72,2],[-29,1],[-17,0],[-20,1],[-24,-1],[-47,-1],[-5,0],[-25,1],[-15,1],[-1,0],[-11,4],[-4,1],[-26,0],[-20,-1],[-47,0],[-21,1],[-45,1],[-55,1],[-23,0],[-41,1],[-22,1],[-34,0],[-32,1],[-17,0],[-17,1],[-25,0],[-66,2],[-34,1],[-38,2],[-25,0],[-22,1],[-37,1],[-42,2],[-17,0],[-16,1],[-16,0],[-30,1],[-33,1],[-25,1],[-36,1],[-34,1],[-27,1],[-40,1],[-26,1],[-19,1],[-19,1],[-38,1],[-42,1],[-38,2],[-45,2],[-32,1],[-18,0],[-40,2],[-19,1],[-48,2],[-21,1],[-19,0],[-33,2],[-67,2]],[[25804,28029],[-18,1],[-40,2],[-11,0],[-9,0],[-30,2],[-38,1],[-25,1],[-27,1],[-35,1],[-17,1],[-22,0],[-19,1],[-22,1],[-30,1],[-30,1],[-35,1],[-24,1],[-22,1],[-19,0],[1,29],[1,83],[1,28],[0,41],[1,41],[1,44],[0,31],[1,40],[1,48],[1,23],[0,32],[1,28],[0,28],[1,40],[1,37],[1,61],[1,63],[2,104],[1,48],[2,57],[0,44],[1,39],[1,51],[1,34],[1,32],[2,77],[3,83]],[[46263,32175],[-1,-56],[-4,-261],[-1,-173],[-1,-26],[1,-21],[-1,-47],[-1,-48],[-4,-166],[-1,-94],[-8,-56],[-1,-26],[0,-42],[-2,-45],[0,-29],[1,-46],[-1,-37],[0,-33],[-1,-26],[0,-35],[-1,-54],[-4,-250],[-1,-234],[-4,-28],[2,-22],[-1,-33],[-1,-76],[-1,-71],[-1,-112],[-1,-44],[0,-31],[-1,-86],[-3,-285],[-1,-106],[0,-36],[-14,-99],[-1,-81],[0,-237],[-1,-28],[0,-27],[-2,-85],[-1,-35],[0,-37],[0,-27],[-3,-92],[-1,-56],[-1,-82],[-1,-45],[-1,-109],[-3,-141],[-1,-96],[-3,-146],[-2,-119],[-1,-50],[0,-16],[-3,-141],[-3,-198],[7,-39],[22,-1],[17,0],[15,-1],[139,-10],[-2,-71],[-2,-70],[-3,-141],[-1,-68],[-3,-120],[-1,-33],[1,-22],[0,-37],[-1,-35],[-1,-26],[-1,-38],[0,-26],[-1,-40],[-4,-37],[-1,-54],[-1,-23],[-2,-113],[1,-78],[-1,-22],[-1,-39],[-1,-30],[-2,-48],[-1,-36],[0,-32],[-7,-315],[-2,-100],[-1,-18],[0,-6],[0,-46],[-3,-56],[-4,-107],[-1,-152],[-1,-35],[4,-39],[10,-18],[3,-28],[-21,-24],[-1,-30],[0,-26],[-1,-28],[-4,-81],[0,-171],[-1,-36],[-5,-248],[-2,-91],[-2,-91],[-4,-118],[-1,-37],[-1,-25],[0,-27],[-2,-71],[-3,-91],[-3,-118],[-6,-207],[-1,-26],[-1,-32],[-2,-63],[-2,-86],[-6,-187],[-4,-169]],[[46275,23200],[-28,0],[-32,1],[-98,2],[-49,1],[-52,1],[-37,1],[-177,4],[-61,1],[-52,1],[-32,1],[-15,0],[-86,2],[-77,2],[-18,0],[-48,-1],[-24,-1],[-53,4],[-24,1],[-210,5],[-170,3],[-207,4],[-48,1],[-223,4],[-67,2],[-104,-3],[-22,0],[-18,0],[-20,0],[-28,-1],[-19,-1],[-30,0],[-111,-3],[-21,-1],[-148,6],[-23,0],[-55,2],[-70,3],[-26,9],[-27,1],[-20,0],[-33,0],[-21,2],[-20,0],[-131,5],[-135,8],[-287,12]],[[43018,23278],[1,75],[3,160],[0,36],[1,27],[-33,19],[-19,2],[-18,1],[-52,3],[-168,6],[-80,3],[-32,5],[-23,2],[-29,1],[-27,0],[-35,-3],[-65,4],[-61,2],[-5,1],[-34,1],[-97,4],[-31,1],[-87,18],[-167,0],[-17,0],[-28,-3],[-28,0],[-80,1],[-136,2],[-21,1],[-50,3],[-40,2],[-45,0],[-20,1],[-115,1],[-47,1],[-150,3],[-51,0],[-16,1],[-21,0],[-33,1],[-82,1],[-70,1],[-36,1],[-18,0],[-43,1],[-175,4],[-26,0],[-21,1]],[[40591,23669],[1,100],[2,216],[1,138],[0,2],[1,33],[0,27],[0,26],[1,26],[0,38],[1,26],[0,28],[1,24],[0,27],[1,48],[0,26],[6,331],[1,62],[1,81],[1,73],[0,26],[4,206],[0,28],[1,80],[1,40],[2,95],[0,47],[4,204],[1,97],[-2,23],[4,132],[2,73],[0,81],[1,45],[3,190],[2,67],[0,14],[0,15],[1,36],[0,28],[4,263],[1,48],[0,30],[3,181],[1,112],[0,22],[-1,24],[5,291],[1,73],[-6,1],[-72,15],[-42,6],[-51,1],[-50,1],[-1,5],[-6,39],[2,152],[-1,38],[2,25],[0,23],[1,51],[1,131],[1,29],[0,24],[0,31],[1,93],[1,83],[3,248],[1,30],[1,74],[0,22],[3,145],[4,264],[1,53],[1,61],[-1,24],[0,36],[3,70],[0,32],[1,61],[1,29],[1,82],[2,105],[0,41],[0,41],[1,51],[1,40],[0,24],[0,30],[1,26],[1,33],[1,24],[2,75],[1,48],[2,114],[2,68],[3,148],[1,65],[2,82],[3,168]],[[52784,23040],[-67,1],[-23,1],[-40,2],[-22,-2],[-18,0],[-18,3],[-100,2],[-3,0],[-52,1],[-91,2],[-104,3],[-10,0],[-6,1],[-35,3],[-27,2],[-25,2],[-76,6],[-26,2],[-57,5],[-17,0],[-202,4],[-63,1],[-40,1],[-151,3],[-34,1],[-17,1],[-23,0],[-48,1],[-94,1],[-179,3],[-91,1],[-86,2],[-45,0],[-220,4],[-57,1],[-2,0],[-230,4],[-28,1],[-29,0],[-35,0],[-154,1],[-118,1],[-141,2],[-136,1],[-35,0],[-23,0],[-47,1],[-29,0],[-56,1],[-101,1],[-38,1],[-27,0],[-89,1],[-71,1],[-59,1],[-68,1],[-31,0],[-49,2],[-15,0],[-36,1],[-15,1],[-129,4],[-63,2],[-38,1],[-58,2],[-115,3],[-29,1],[-28,1],[-20,0],[-43,1],[-46,1],[-80,4],[-124,4],[-37,1],[-45,1],[-221,8],[-1,0],[-178,7],[-63,3],[-85,7],[-23,1],[-20,1],[-23,1],[-2,0],[-36,0],[-82,3],[-21,1],[-22,1],[-15,-1],[-78,5],[-30,1],[-16,1],[-24,0],[-15,0],[-18,1],[-17,0],[-16,2],[-20,1],[-24,1],[-24,0],[-17,0],[-32,4],[-29,0],[-2,0],[-47,-1],[-47,-1],[-17,0],[-21,0],[-149,1],[-15,0],[-18,1],[-79,1],[-170,3],[-6,0],[-102,2]],[[40591,23669],[-70,1],[-160,5],[-43,0],[-22,1],[-33,0],[-46,2],[-40,1],[-37,1],[-75,2],[-19,1],[-27,1],[-42,1],[-24,1],[-28,1],[-17,1],[-55,2],[-21,1],[-25,1],[-21,1],[-15,0],[-78,3],[-25,1],[-18,0],[-15,1],[-33,1],[-36,1],[-39,1],[-30,1],[-16,0],[-27,1],[-35,1],[-59,2],[-31,1],[-29,1],[-29,0],[-30,1],[-19,0],[-25,1],[-42,1],[-25,0],[-18,0],[-25,0],[-33,1],[-34,1],[-33,0],[-75,5],[-31,2],[-65,2],[-21,1],[-26,1],[-28,1],[-16,0],[-19,1],[-71,3],[-68,3],[-17,1],[-37,2],[-17,1],[-26,1],[-38,2],[-23,0],[-29,2],[-20,1],[-64,2],[-52,3],[-15,1],[-19,0],[-15,-2],[-46,-5],[-21,0],[-18,2],[-5,0],[-17,2],[-24,3],[-116,11],[-41,4],[-21,0],[-16,1],[-16,1],[-25,1],[-29,1],[-19,1],[-27,1],[-140,9],[-69,0],[-36,2],[-16,0],[-63,0],[-13,0],[-19,0],[-89,5],[-144,7],[-56,1],[-2,0],[-26,0],[-14,0],[-2,0],[-16,0],[-148,2],[-5,1],[-26,1],[-19,0],[-19,0],[-25,0],[-42,0],[-70,0],[-130,2],[-169,3],[-3,0],[-79,2],[-4,0],[-25,0],[-26,0],[-1,0],[-22,0],[-61,2],[-41,0],[-17,-1],[-18,0],[-18,0],[-17,1],[-52,2],[-35,1],[-23,1],[-16,0],[-42,1],[-20,1],[-20,0],[-41,1],[-42,2],[-24,0],[-18,1],[-23,0],[-114,2],[-73,1],[-23,0],[-29,0],[-3,0],[-15,0],[-26,2],[-99,0],[-29,1],[-32,1],[-20,0],[-42,1],[-21,0],[-17,1],[-121,3],[-16,0],[-25,1],[-26,0],[-103,3],[-34,1],[-18,0],[-18,0],[-34,1],[-21,0],[-91,1],[-25,0],[-33,0],[-20,1],[-21,0],[-54,1],[-23,0],[-31,1],[-26,0],[-41,0],[-19,1],[-45,1],[-64,0],[-25,1],[-28,1],[-68,3],[-27,1],[-27,2],[-16,1],[-32,0],[-26,0],[-25,1],[-20,1],[-22,0],[-16,0],[-4,0],[-19,1],[-44,1],[-11,0],[-21,1],[-26,1],[-16,0],[-16,1],[-148,4],[-113,3],[-20,0],[-32,-1],[-42,1],[-61,1],[-41,1],[-20,0],[-17,0],[-17,0],[-26,1],[-20,0],[-64,2],[-40,1],[-16,0],[-3,0],[-90,0],[-57,1],[-42,0],[-25,1],[-15,0],[-19,0],[-38,0],[-23,1],[-31,0],[-23,1],[-101,1],[-59,1],[-20,0],[-26,0],[-53,0],[-13,-1],[-6,-1]],[[32446,23873],[1,57],[0,2],[1,84],[2,98],[1,74],[0,38],[2,140],[1,17],[1,73],[1,114],[2,96],[2,119],[1,57],[0,174],[1,22],[0,104],[1,42],[0,27],[2,24],[0,26],[5,192],[2,159],[1,28],[2,149],[0,4],[0,136],[1,29],[0,30],[1,23],[0,33],[1,44],[0,24],[2,56],[0,35],[1,44],[1,39],[0,51],[1,32],[0,39],[1,31],[0,28],[2,73],[0,22],[0,26],[1,49],[0,28],[1,25],[0,29],[2,38],[0,29],[4,225],[0,23],[1,54],[1,75],[1,121],[0,3],[-1,136],[1,54],[0,30],[0,80],[4,126],[2,131],[-145,3],[-96,4],[-11,1],[-60,3]],[[71265,23820],[-274,-43],[-119,0],[-65,0],[-118,1],[-15,0],[-143,1],[15,-83],[5,-32],[-106,10],[-64,-12],[-60,-11],[-104,-20],[-32,-5],[-92,-2],[-76,1],[-24,0],[-105,0],[-1,-57],[-70,2],[-140,4],[-21,0],[-88,4],[-59,2],[-29,1],[-17,1],[-61,1],[-76,3],[-25,1],[-137,4],[-39,1],[-19,1],[-65,2],[-18,1],[-218,7],[-170,3],[-232,6],[-32,1],[-93,1],[-1,-50],[0,-58],[-4,-230],[-1,-79],[-1,-38],[-1,-30],[-3,-131],[-3,-134],[-2,-73],[-3,-112],[-1,-98],[-2,-167],[-1,-69],[-1,-75],[-2,-152],[-2,-125],[-1,-47],[-5,-197],[-2,-37],[-1,-65],[-9,-322],[-1,-26],[-6,-305],[0,-2],[-3,-124],[-3,-154],[-4,-183],[-2,-114],[-5,-242],[-2,-141],[-1,-27],[0,-25],[-7,-427],[-2,-131],[-1,-41],[-2,-150]],[[68193,19233],[-28,1],[-106,5],[-275,22],[-34,1],[-18,0],[-16,0],[-121,0],[-193,2],[-16,0],[-87,1],[-88,0],[-112,1],[-69,1],[-128,1],[-14,0],[-107,0],[-107,1],[-77,1],[-8,0],[-16,-1],[-34,-1],[-5,0],[-56,1],[-115,1],[-170,1],[-131,1],[-34,0],[-30,0],[-19,0],[-68,-6],[-89,1],[-42,1],[-58,0],[-79,1],[-43,1],[-67,0],[-26,1],[-148,1],[-185,2],[-45,1],[-72,1],[-22,0],[-34,0],[-70,0],[-110,0],[-59,0],[-106,0],[-62,0],[-83,-1],[-82,0],[-61,0],[-68,2],[-74,2],[-64,1],[-17,0],[-1,0],[-106,19],[-15,0],[-125,1],[-37,0],[-108,1],[-185,1],[-48,0],[-1,0],[-18,3],[-23,-2],[-14,8],[-26,-3],[-22,1],[-15,-3],[-16,-1],[-356,8],[-94,4],[-119,7],[-292,-2],[-115,-1],[-107,-1],[-136,1],[-35,1],[-124,5],[-190,6],[-60,3],[-84,11]],[[61673,19347],[4,64],[0,26],[1,31],[1,47],[0,23],[1,129],[1,72],[0,66],[1,62],[2,101],[1,74],[2,256],[1,44],[1,97],[0,77],[1,31],[1,43],[4,140],[2,91],[0,3],[1,71],[3,118],[0,32],[0,176],[1,79],[0,69],[0,32],[-1,136],[1,63],[1,23],[2,87],[1,10],[0,29],[-3,97],[1,131],[1,36],[1,100],[0,69],[3,226],[0,162],[0,25],[0,110],[0,29],[0,73]],[[25804,28029],[-2,-53],[-1,-66],[0,-29],[-1,-33],[0,-30],[-2,-96],[-1,-52],[-1,-44],[-1,-31],[0,-31],[-1,-39],[-1,-78],[-1,-45],[-1,-81],[-1,-36],[0,-29],[-1,-34],[0,-33],[-1,-25],[0,-25],[-1,-46],[-1,-37],[0,-27],[-1,-41],[-1,-74],[0,-30],[-7,-282],[-1,-22],[-1,-60],[-3,-136],[-1,-40],[-4,-147],[0,-109],[-2,-54],[0,-23],[-1,-21],[0,-35],[-1,-17],[0,-17],[-1,-43],[-1,-29],[0,-33],[-2,-34],[0,-29],[-1,-28],[-1,-34],[0,-23],[-2,-47],[-1,-23],[0,-26],[0,-28],[-1,-66],[-1,-26],[-1,-28],[0,-26],[-1,-36],[0,-24],[0,-33],[-1,-31],[-1,-48],[-1,-32],[0,-25],[0,-35],[-2,-36],[-1,-31],[0,-9],[-2,-22],[0,-27],[0,-23],[0,-77],[-1,-74],[0,-32],[-2,-29],[-1,-25],[-1,-47],[0,-33],[-1,-33],[0,-21],[-1,-59],[0,-44],[-1,-35],[-1,-34],[-1,-25],[-1,-33],[0,-24],[-1,-33],[0,-52],[-1,-26],[0,-23],[-1,-77],[-2,-99],[-2,-24],[0,-23],[-2,-113],[-2,-176],[-2,-76],[0,-27],[-2,-43],[-1,-65],[-1,-38],[-1,-23],[0,-23],[0,-4],[0,-19],[-2,-110],[-4,-157],[0,-24],[-1,-53],[-2,-74],[-2,-89],[0,-22],[-2,-78]],[[25700,22790],[-40,2],[-28,1],[-17,0],[-21,1],[-15,1],[-15,0],[-26,1],[-45,2],[-36,1],[-39,2],[-52,2],[-17,1],[-19,0],[-35,1],[-41,1],[-75,2],[-10,0],[-16,1],[-100,3],[-61,2],[-28,1],[-34,1],[-41,2],[-10,0],[-14,0],[-15,0],[-29,1],[-21,1],[-21,2],[-5,0],[-22,0],[-33,2],[-33,1],[-30,1],[-41,1],[-27,1],[-19,1],[-23,1],[-116,4],[-55,2],[-41,2],[-46,2],[-23,0],[-17,1],[-16,0],[-40,2],[-35,1],[-51,2],[-20,1],[-25,0],[-32,1],[-27,1],[-45,1],[-25,1],[-30,0],[-16,1],[-47,1],[-41,1],[-40,1],[-18,1],[-32,1],[-58,2],[-22,1],[-19,1],[-31,2],[-18,0],[-16,1],[-17,0],[-143,6],[-23,0],[-32,2],[-82,3],[-45,1],[-20,1],[-22,1],[-19,1],[-31,1],[-37,1],[-26,1],[-25,1],[-43,1],[-15,1],[-19,1],[-34,1],[-48,1],[-16,0],[-18,1],[-58,2],[-19,2],[-26,0],[-28,3],[-19,0],[-55,1],[-27,0],[-23,0],[-21,0],[-32,0],[-30,0],[-25,0],[-43,0],[-58,0],[-33,1],[-17,0],[-19,1],[-52,1],[-85,1],[-18,0],[-69,0],[-48,0],[-33,1],[-25,0],[-20,1],[-26,0],[-29,0],[-10,0],[-21,0],[-26,0],[-20,1],[-36,0],[-23,1],[-31,0],[-17,0],[-44,1],[-42,0],[-38,1],[-27,1],[-18,0],[-63,1],[-25,1],[-44,1],[-57,1],[-81,1],[-36,1],[-36,1],[-68,1],[-18,0],[-26,-4],[-18,0],[-16,0],[-18,0],[-23,0],[-19,0],[-16,1],[-17,0],[-20,0],[-27,1],[-25,0],[-36,1],[-64,1],[-37,0],[-10,1],[-7,0],[-15,0],[-15,1],[-19,0],[-18,1],[-16,0],[-28,1],[-61,1],[-46,1],[-38,1],[-18,0],[-18,0],[-27,1],[-50,0],[-29,1],[-21,0],[-56,1],[-20,0],[-25,1],[-10,0],[-13,0],[-29,1],[-26,0],[-16,0],[-39,0],[-29,1],[-15,0],[-17,0],[-17,3],[-24,6],[-20,4],[-16,4],[-7,1],[-11,3],[-16,3],[-18,1],[-18,-5],[-16,-8],[-17,-6],[-19,-3],[-34,1],[-17,0],[-16,0],[-40,0],[-25,1],[-40,2],[-17,0],[-32,1],[-25,1],[-32,1],[-2,0],[-33,1],[-20,1],[-16,0],[-37,0],[-2,0],[-14,-2],[-18,-3],[-24,-2],[-20,1],[-17,0],[-19,0],[-25,0],[-16,0],[-33,0],[-21,0],[-18,0],[-18,0],[-16,0],[-21,0],[-25,0],[-15,0],[-15,1],[-18,0],[-21,1],[-18,0],[-15,0],[-20,0],[-15,0],[-30,1],[-18,0],[-16,1],[-17,0],[-17,0],[-16,0],[-16,2],[-17,0],[-23,1],[-25,1],[-29,1],[-17,0],[-16,-2],[-19,-7],[-26,-13],[-23,-8],[-16,2],[-24,10],[-17,10],[-19,10],[-22,1],[-22,1],[-23,0],[-28,0],[-16,0],[-15,0],[-16,0],[-17,0],[-15,1],[-16,0],[-20,0],[-16,0],[-17,0],[-15,0],[-25,1],[-16,1],[-16,1],[-24,1],[-18,0],[-19,1],[-17,0],[-34,2],[-29,1],[-15,1],[-16,1],[-16,0],[-22,1],[-17,1],[-58,2],[-20,0],[-16,1],[-18,1],[-18,0],[-16,0],[-22,1],[-46,2],[-378,7],[-27,1],[-60,1],[-35,1]],[[17331,22978],[0,30],[0,40],[0,70],[0,26],[0,22],[-1,54],[0,27],[1,41],[-1,22],[0,2],[0,23],[0,39],[0,55],[0,24],[-1,14],[0,44],[0,97],[-1,26],[0,48],[0,42],[0,45],[0,3],[2,23],[-1,56],[-2,37],[1,67],[0,44],[0,118],[0,68],[-2,138],[1,124],[1,5],[1,104],[1,31],[1,27],[-1,31],[-1,23],[3,76],[-4,93],[0,12],[0,14],[-2,188],[-4,168],[1,126],[0,2],[1,185],[0,140],[0,15],[0,23],[0,105],[1,28],[-1,113],[2,291],[1,73],[0,154],[-1,81],[0,73],[1,60],[0,39],[3,41],[-3,27],[0,73],[-1,25],[2,61],[0,77],[0,71],[0,84],[0,84],[0,150],[1,83],[0,228],[0,92],[0,222],[1,100],[0,22],[0,7],[1,206],[-1,48],[0,22],[0,51],[1,25],[1,164],[0,70],[2,65],[0,189],[0,2],[-1,26],[-1,34],[1,52],[1,38],[0,39],[0,26],[0,84],[1,28],[0,48],[0,49],[0,123],[0,22],[0,49]],[[84846,22640],[-80,1],[-192,8],[-4,0],[-11,-1],[-9,0],[-20,1],[-17,-1],[-22,0],[-15,0],[-18,0],[-16,0],[-31,-1],[-15,0],[-21,0],[-2,0],[-18,0],[-31,1],[-37,1],[0,-2],[-3,-74],[-2,-30],[0,-40],[-1,-36],[0,-6],[0,-52],[-2,-149],[-2,-109],[-2,-165],[-1,-54],[-1,-23],[-276,5],[0,-126],[0,-26],[0,-32],[0,-22],[-8,-107],[-45,-1],[-223,4],[-4,-126],[0,-45],[0,-30],[0,-90],[0,-22],[-274,-3],[-4,-274],[-1,-34],[-143,1],[-24,1],[-5,0],[-19,0],[-31,0],[-43,0],[-5,-107],[-1,-54],[-1,-23],[-1,-22],[0,-30],[-2,-52],[0,-86],[-1,-41],[0,-39],[0,-44],[0,-30],[1,-22],[0,-24],[0,-23],[-1,-26],[-267,2],[-3,-37],[-1,-56],[-1,-213],[-29,-6],[-30,-1],[-27,-1],[-26,1],[-17,-1],[-29,3],[-45,6],[-19,2],[-29,2]],[[82639,20060],[-59,8],[-27,4],[-28,1],[-15,2],[-166,15],[-26,2],[-60,4],[-17,2],[-30,1],[-22,0],[-28,1],[-50,2],[-18,0],[-15,3],[-49,3],[-16,0],[-70,2],[-68,2],[-2,0],[-33,5],[-21,2],[-5,1],[-78,2],[-5,0],[-10,0],[-17,3],[-15,1],[-19,3],[-20,4],[-28,-2],[-24,0],[-28,3],[-26,0],[-24,2],[-22,0],[-23,2],[-21,-2],[-21,2],[-167,7],[-17,1],[-21,1],[-49,10],[-62,-3],[-221,-12],[-54,6],[-152,-1],[-38,-1],[-233,-2],[-83,-1],[-55,-1],[-51,1],[-41,0],[-23,1],[-21,0],[-120,2],[-124,2],[-15,0],[-32,1],[-15,0],[-39,0],[-29,1],[-107,1],[-15,0],[-7,0],[-39,0],[-127,1],[-76,1],[-77,3],[-76,2],[-57,2],[-62,2],[-88,-3],[-20,-1],[-33,1],[-16,0],[-18,0],[-56,1],[-39,1],[-11,0],[-4,1],[-28,0],[-43,1],[-18,0],[-4,0],[-38,1],[-34,0],[-40,1],[-15,0],[-107,-1],[-32,0],[-73,-1],[-91,-1],[-62,0],[-30,0],[-97,2],[-34,1],[-117,5],[-15,-13],[-74,-3],[-85,-5],[-40,-1],[-58,-3],[-28,-1],[-249,0],[-15,0],[-66,1],[-62,1],[-49,1],[-29,1],[-63,1],[-15,0],[-66,0],[-42,0],[-18,0],[-16,0],[-27,0],[-30,0],[-41,0],[-51,1],[-99,2],[-107,6],[-69,-1],[-18,0],[-18,0],[-36,0],[-73,0],[-19,-1],[-19,0],[-15,0],[-21,0]],[[76347,20156],[-30,17],[-36,1],[-16,-1],[-99,1],[-92,-3],[1,97],[1,21],[2,64],[0,22],[4,122],[4,87],[4,104],[0,39],[1,63],[0,62],[3,262],[-118,3],[-58,2],[-22,0],[-72,2],[1,140],[2,185],[0,31],[1,61],[0,40],[1,85],[0,47],[2,39],[-135,7],[-134,0],[3,212],[1,4],[0,41],[1,46],[1,31],[6,373],[3,173],[1,51],[2,133],[-112,2],[-107,2],[-62,1],[-25,3],[-77,1],[-32,1],[-123,3],[-40,1],[-168,4]],[[32446,23873],[0,-44],[0,-23],[-1,-90],[0,-73],[-1,-85],[-1,-41],[0,-44],[0,-35],[-1,-24],[0,-27],[0,-41],[-1,-24],[0,-69],[-3,-158],[0,-11],[0,-78],[0,-56],[-1,-27],[-1,-36],[0,-22],[-1,-77],[0,-31],[0,-24],[0,-47],[0,-24],[-1,-24],[0,-29],[0,-65],[-1,-28],[0,-42],[0,-24],[0,-34],[0,-32],[0,-59],[-1,-25],[0,-33],[0,-26],[-1,-30],[0,-13],[0,-27],[-1,-23],[-1,-22],[-2,-311],[1,-65],[0,-93]],[[32428,21657],[0,-49],[-1,-119],[-1,-153],[0,-156],[0,-102],[-3,-30],[0,-34],[-1,-156],[-1,-155],[-1,-45],[0,-131],[-1,-20],[0,-51],[0,-2],[-1,-63],[-1,-156],[-2,-131],[0,-27]],[[32415,20077],[-81,2],[-27,1],[-27,2],[-24,0],[-33,1],[-35,1],[-30,1],[-34,1],[-23,1],[-19,1],[-32,1],[-19,1],[-25,1],[-36,1],[-21,1],[-48,1],[-21,1],[-47,2],[-29,2],[-23,0],[-19,1],[-26,1],[-16,1],[-19,1],[-23,0],[-48,3],[-31,0],[-71,4],[-19,0],[-26,2],[-20,0],[-16,1],[-16,1],[-27,1],[-21,1],[-26,1],[-29,1],[-18,1],[-25,0],[-23,1],[-22,1],[-17,1],[-18,0],[-15,1],[-43,1],[-25,1],[-16,1],[-17,1],[-32,0],[-31,1],[-20,1],[-28,0],[-40,1],[-15,1],[-39,0],[-32,1],[-6,0],[-9,1],[-25,0],[-15,0],[-2,1],[-21,4],[-20,0],[-16,0],[-16,1],[-16,0],[-17,0],[-31,1],[-25,0],[-30,1],[-21,0],[-18,0],[-33,1],[-21,2],[-17,-1],[-26,1],[-23,1],[-25,0],[-23,1],[-21,0],[-23,0],[-36,2],[-24,1],[-42,1],[-47,1],[-22,1],[-17,0],[-33,0],[-27,1],[-19,0],[-18,0],[-15,1],[-19,0],[-34,1],[-22,0],[-18,0],[-32,1],[-38,0],[-43,1],[-48,1],[-23,0],[-31,1],[-23,0],[-16,0],[-31,1],[-44,1],[-28,0],[-33,1],[-19,0],[-62,1],[-28,0],[-26,1],[-29,0],[-16,0],[-20,2],[-36,0],[-29,1],[-20,0],[-34,1],[-16,0],[-27,1],[-35,0],[-29,0],[-28,0],[-30,1],[-23,1],[-20,0],[-30,1],[-19,0],[-29,0],[-23,2],[-3,0],[-21,1],[-17,-1],[-17,0],[-16,1],[-107,3],[-25,0],[-23,1],[-4,0],[-32,1],[-25,1],[-24,1],[-16,0],[-22,1],[-24,0],[-24,1],[-33,1],[-20,0],[-25,1],[-22,1],[-25,0],[-25,1],[-17,0],[-22,1],[-47,1],[-29,1],[-17,0],[-49,1],[-22,0],[-15,1],[-16,0],[-24,1],[-22,0],[-27,0],[-20,1],[-19,1],[-19,0],[-33,1],[-24,1],[-22,1],[-28,0],[-17,1],[-25,1],[-31,1],[-19,0],[-18,1],[-18,0],[-16,1],[-23,0],[-19,1],[-21,1],[-18,0],[-18,1],[-1,0],[-18,-1],[-21,0],[-18,1],[-19,1],[-17,0],[-18,1],[-22,0],[-51,3],[-83,4],[-25,1],[-43,1],[-27,1],[-32,2],[-19,0],[-27,1],[-23,1],[-16,0],[-11,0],[-5,1],[-23,0],[-20,1],[-13,1],[-10,0],[-21,0],[-24,1],[-22,2],[-21,0],[-25,2],[-121,3],[-66,2],[-17,0],[-36,3],[-20,0],[-65,2],[-47,1],[-23,1],[-16,1],[-21,0],[-22,1],[-15,0],[-24,0],[-21,2],[-28,0],[-33,2],[-21,1],[-44,1],[-22,1],[-18,0],[-55,2],[-31,1],[-47,2],[-34,1],[-33,1],[-19,1],[-16,0],[-16,1],[-22,0],[-22,1],[-18,1],[-19,1],[-37,1],[-29,0],[-21,0],[-19,2],[-17,1],[-19,2],[-173,1],[-27,-1]],[[25647,20270],[-1,42],[1,33],[0,37],[1,11],[0,37],[1,14],[1,35],[3,112],[0,23],[1,51],[1,22],[-1,37],[1,27],[1,41],[2,44],[0,33],[2,32],[-1,45],[2,88],[0,22],[1,34],[1,35],[1,67],[1,23],[1,40],[2,101],[1,50],[0,4],[1,22],[0,24],[1,16],[0,25],[1,31],[1,27],[0,23],[1,24],[2,132],[1,28],[2,32],[2,51],[1,40],[0,47],[1,30],[1,49],[1,33],[1,36],[0,24],[1,26],[0,37],[1,39],[-1,23],[-1,29],[3,23],[1,46],[1,28],[0,26],[1,42],[1,39],[1,24],[1,61],[1,26],[1,59],[0,34],[1,32],[1,44],[1,48]],[[96782,21974],[-107,-31],[-21,1],[-9,0],[-283,2],[-69,1],[-1,-87],[0,-26],[0,-43],[-26,-11],[-45,-17],[-36,-14],[-32,-13],[-95,-39],[-171,-71],[-6,-46],[1,-24],[0,-34],[1,-83],[0,-32],[0,-98],[-4,-97],[0,-26],[-1,-40],[-3,-103],[0,-54],[-227,-2],[-40,0],[-276,-2],[-1,-37],[0,-57],[0,-24],[0,-34],[1,-86],[0,-79],[-51,0],[-21,0],[-137,1],[-1,0],[-16,0],[-18,0],[-35,0],[-1,-315],[-23,0],[-15,0],[-17,0],[-41,0],[-35,1],[-16,0],[-23,0],[-30,1],[-43,0],[-15,-1],[-15,4],[-23,0],[-15,-1],[-49,0],[-16,0],[-19,0],[-21,-1],[-44,0],[-71,-1],[2,-266],[0,-46],[1,-166],[0,-72],[0,-21],[1,-55],[-24,-12],[-18,0],[-21,0],[-47,0],[-26,1],[-54,0],[-40,1],[-16,0],[-24,1],[-20,0],[-17,0],[-24,-2],[-13,1],[-12,0],[-15,-1],[-21,0],[-131,-1],[-3,0],[-21,0],[0,-29],[0,-58],[0,-3],[0,-62],[0,-19],[0,-154],[1,-32],[0,-26],[0,-26],[0,-54],[0,-4],[1,-164],[-29,0],[-24,1],[-38,0],[-46,-3],[-26,0],[-25,0],[-15,0],[-22,1],[-51,-2],[0,-42],[1,-43],[1,-75]],[[93706,18924],[-66,0],[-1,0],[-36,0],[-19,0],[-32,0],[-24,-1],[-16,-4],[-4,0],[-68,3],[-26,0],[-15,0],[-28,0],[-17,-1],[-21,0],[-3,0],[-19,0],[-24,1],[-27,0],[-19,0],[-17,0],[-16,-1],[-22,0],[-19,0],[-18,0],[-34,-1],[-28,-1],[-18,0],[-18,0],[-29,-1],[-18,0],[-2,23],[-17,9],[-20,-4],[-31,-6],[-15,-12],[-16,-3],[-23,-5],[-26,4],[-40,-6],[-2,0],[-20,-3],[-18,-3],[-16,-3],[-15,-3],[-18,-2],[-30,-5],[-19,-4],[-42,-7],[-16,-3],[-19,-4],[-15,-3],[-15,-2],[-1,0],[-28,-5],[-18,-4],[-15,-3],[-18,-3],[-16,-3],[-15,-3],[-22,-4],[6,-40],[6,-42],[-22,-5],[-20,-14],[-117,-5],[-23,-1],[-15,0],[-28,-1],[-32,-2],[-40,-1],[-22,0],[-81,-2],[-15,-1],[-16,0],[-15,-1],[-28,-1],[-15,0],[-16,-1],[-48,-1],[-1,0],[-18,-1],[-124,-4],[-3,0],[-6,0],[-80,-3],[-62,-2],[-63,-2],[-64,-2],[-25,-1],[-20,0],[-50,-3],[-30,-1],[-46,-2],[-60,-3],[-30,-1],[-16,-1],[-16,0],[-27,-1],[-22,0]],[[91132,18706],[-2,54],[0,15],[-1,61],[0,37],[-21,55],[-38,33],[-8,12],[-12,29],[-6,16],[0,8],[7,13],[2,4],[1,22],[0,16],[5,-2],[10,-4],[6,2],[3,3],[0,1],[1,2],[22,34],[0,1],[12,32],[30,82],[17,47],[2,2],[-1,1],[-8,92],[-3,14],[-15,72],[-10,44],[0,2],[-5,9],[-12,27],[-6,15],[-2,11],[0,9],[8,5],[1,1],[13,8],[3,9],[2,5],[12,52],[-1,10],[-4,2],[-1,2],[-3,5],[-6,76],[9,61],[9,36],[1,8],[2,6],[16,72],[2,9],[6,30],[12,55],[3,14],[5,29],[0,14],[-1,82],[0,13],[-10,48],[-5,23],[-6,27],[-17,17],[-10,9],[-6,7],[-15,18],[-2,12],[-1,7],[3,3],[1,1],[9,5],[4,2],[0,1],[4,6],[3,8],[0,1],[0,3],[0,2],[-13,49],[0,1],[-9,30],[-6,4],[-8,-1],[-8,-6],[-4,-8],[-1,-2],[-1,-3],[-6,-18],[-3,-2],[-2,-3],[-3,-2],[-9,1],[-24,38],[-15,41],[-12,32],[-12,33],[-4,1],[-8,6],[-6,7],[-8,9],[-20,23],[-11,5],[-13,1],[-4,0],[-67,-5],[-3,0],[-37,54],[1,50],[0,10],[-1,2],[-2,1],[-3,4],[-4,1],[-8,-1],[0,-1],[-14,-16],[-3,-4],[-9,1],[-8,7],[3,54],[2,53],[0,6],[0,8],[1,99],[1,14],[-1,13],[-1,28],[0,1],[-2,2],[-6,2],[-8,3],[-5,2],[-22,20],[-1,6],[-6,72],[1,50],[0,4],[3,39],[0,5],[-1,3],[-7,3],[-23,-3],[-17,4],[-12,11],[-1,4],[9,5],[7,4],[5,5],[1,2],[4,8],[10,95],[4,40],[-1,8],[-2,19],[-1,17],[-1,7],[-3,27],[-18,65],[-1,3],[-25,31],[-9,12],[-4,4],[-33,60],[-2,5],[-3,25],[-6,20],[-45,64],[-1,33],[-6,8],[-23,28],[-29,35],[-7,10],[-10,7],[-19,11],[-8,17],[-2,6],[12,29],[6,17],[2,14],[-1,10],[-15,27],[-8,14],[-24,45],[-11,15],[-13,14],[-6,11],[-21,33],[-19,31],[-1,1],[0,1],[-41,73],[-2,8],[0,8],[0,37],[1,2],[10,43],[0,2],[-4,2],[-11,5],[-11,6],[-60,28],[-14,7],[-15,8],[-7,3],[-1,51],[0,67],[-18,0],[-33,1],[-9,0],[-8,0],[0,59],[0,32],[0,7],[0,19],[3,8],[11,27],[3,6],[12,34],[1,19],[0,4],[-1,3],[-4,6],[-13,2],[-20,19],[-2,5],[0,3],[6,69],[1,3],[7,20],[-3,1],[-1,0],[-11,-3],[-5,-3],[-17,-10],[-7,-5],[-20,-12],[-2,-8],[-2,-4],[0,-8],[-3,-4],[-6,0],[-14,9],[-23,26],[-7,8],[0,1],[-16,21],[-3,4],[-4,5],[-17,39],[-3,39],[-17,6],[4,23],[6,30],[0,7],[-1,1],[-4,9],[-17,40],[-3,8],[-2,3],[-1,1],[-2,2],[-5,6],[-2,1],[-14,19],[-9,11],[-39,86],[-40,96],[-2,54],[1,4],[3,2],[7,4],[3,5],[0,7],[-1,3],[-25,49],[-3,5],[-24,39],[-12,17],[-3,2],[-12,6],[-2,1],[-2,4],[-7,8],[-25,30],[-2,6],[-11,60],[0,18],[0,8],[0,33],[0,58],[57,6],[28,18],[53,88],[29,40],[4,57],[-1,9],[-1,16],[0,4],[1,8],[0,2],[2,19],[2,4],[0,1],[47,116],[4,9],[30,63],[1,4],[0,1],[17,58],[51,167],[0,37],[0,21]],[[94172,27193],[177,38],[119,-3],[30,-13],[94,-41],[39,-117],[-1,-90],[-45,-128],[-29,-84],[-28,-82],[-16,-44],[-2,-8],[-1,-1],[-7,-91],[-7,-86],[3,-12],[9,-36],[41,-158],[11,-40],[31,-120],[83,-283],[154,-336],[75,-161],[24,-54],[116,-344],[192,-352],[39,-73],[3,-3],[133,-157],[106,-91],[151,-130],[52,-78],[20,-31],[30,-75],[66,-165],[32,-169],[-23,-173],[-7,-54],[-92,-295],[-18,-79],[-7,-32],[10,-82],[13,-106],[82,-144],[2,-5],[5,-2],[366,-248],[9,-6],[34,-23],[337,-177],[160,-121],[45,-54]],[[91132,18706],[-22,-1],[-37,-1],[-24,0],[-41,-2],[-24,0],[-47,-1],[-3,-36],[1,-24],[0,-47],[1,-66],[2,-58],[3,-73],[0,-10],[1,-19],[1,-36],[0,-6],[1,-32],[0,-26],[1,-37],[0,-6],[2,-97],[4,-150],[2,-85],[1,-86],[2,-92],[2,-32],[-1,-28],[1,-26],[0,-22],[3,-41],[2,-43],[1,-84],[2,-42],[1,-77],[2,-38],[0,-24],[3,-101],[1,-33],[1,-69],[1,-34],[1,-37],[1,-39],[2,-81],[1,-32],[1,-41],[2,-42],[0,-31],[2,-29],[1,-32],[-1,-24],[0,-12],[1,-29],[1,-13],[1,-11],[0,-29],[1,-28],[4,-98],[3,-77],[2,-44],[2,-38],[4,-62],[1,-63],[-11,-9],[-28,-22],[2,-88],[7,-341],[1,-81],[3,-122],[0,-27],[3,-166],[2,-74],[0,-22],[2,-106],[1,-51],[1,-51],[-1,-35],[-1,-40],[7,-23],[-1,-114],[-1,-27],[0,-25],[0,-67],[0,-23],[-1,-74],[-1,-57],[0,-27],[-1,-130],[4,-21],[2,-154],[0,-35],[0,-69],[0,-44],[-1,-169],[-1,-154],[-126,0],[-16,0],[-136,1],[-85,0],[-36,1],[-16,0],[-20,0],[-27,0],[-43,0],[-41,0],[-3,1],[-147,0],[-39,1],[-44,-1],[-29,-1],[-74,0],[-159,-1],[-47,0],[-23,-1],[-34,0],[-75,-1],[-22,-1],[-52,0],[-30,0],[-36,0],[-18,0],[-7,0],[-91,1],[-20,1],[-38,0],[-80,1],[-17,0],[-7,2],[-21,7],[-24,-1],[-24,-1],[-36,-1],[-161,-9],[-8,0],[-27,0],[-72,2],[-23,0],[-15,1],[-35,1],[-20,1],[-23,1],[-17,0],[-30,0],[-53,2],[-28,0],[-20,0],[-24,0],[-20,-1],[-24,0],[-46,-1],[-45,0],[-20,1],[-36,0],[-34,1],[-94,1],[-109,2],[-28,0],[-82,1],[-25,0],[-54,1],[-48,1],[-26,0],[-32,1],[-19,0],[-8,0],[-16,0],[-56,2],[-102,1],[-39,1],[-47,4],[-41,0],[-57,1],[-62,1],[-60,0],[-37,1],[-17,1],[-9,0],[-68,4],[-96,5],[-51,3],[-34,2],[-21,1]],[[87130,13721],[-80,1],[-18,0],[-25,1],[-3,0],[-26,0],[-13,0],[-38,0],[-80,2],[-31,0],[-27,0],[-18,1],[-16,0],[-91,1],[-37,1],[-29,0],[-70,1],[-16,0],[-22,0],[-35,1],[-32,0],[-36,0],[-24,1],[-51,1],[-67,2],[-30,1],[-20,0],[-44,1],[-6,0],[-19,1],[-45,1],[-68,1],[-58,1],[-30,0],[-25,0],[-20,1],[-23,0],[-40,1],[-38,1],[-39,0],[-16,-1],[-21,-1],[-15,0],[-16,2],[-20,-1],[-24,0],[-230,7],[-53,0],[-25,1],[-36,1],[-20,0],[-48,1],[-24,0],[-34,1],[-31,1],[-15,1],[-19,0],[-41,1],[-65,1],[-67,1],[-59,0],[-15,0],[-49,1],[-22,0],[-19,0],[-16,1],[-22,0],[-17,0],[-26,0],[-48,0],[-19,0],[-21,0],[-41,1],[-49,0],[-38,1],[-80,-12],[-90,0]],[[84289,13750],[-13,17],[-1,4],[32,35],[33,36],[8,9],[39,43],[44,89],[0,25],[0,11],[0,2],[-1,24],[-5,73],[-2,10],[-35,54],[-13,29],[-12,22],[-13,20],[-16,21],[-18,26],[-7,24],[15,15],[11,-16],[18,-4],[15,-2],[14,10],[16,36],[5,9],[4,9],[16,0],[21,-9],[20,-3],[17,11],[9,20],[10,24],[-8,21],[-15,8],[-15,16],[-4,27],[6,23],[-1,22],[-17,6],[-10,-4],[-10,-5],[-10,-15],[-17,-5],[-16,2],[-17,13],[-3,23],[15,6],[16,-2],[21,18],[6,23],[-12,19],[-18,13],[-16,4],[-19,-2],[-23,-7],[-20,-1],[-16,4],[-17,9],[-3,26],[15,10],[18,-9],[23,-2],[16,10],[-43,57],[-23,31],[-2,29],[-1,10],[-6,78],[-1,22],[6,15],[14,7],[8,0],[11,0],[13,7],[1,1],[7,6],[10,8],[5,10],[31,66],[24,51],[15,35],[0,12],[0,16],[-1,23],[0,12],[-1,3],[-4,10],[-1,2],[-2,5],[-18,22],[-13,8],[-6,0],[-1,0],[-4,-2],[-4,-5],[-4,-9],[-2,-5],[-40,-10],[-2,0],[-59,55],[-4,4],[-7,6],[-12,13],[-18,26],[-4,6],[-2,5],[0,165],[0,3],[1,14],[3,14],[2,7],[24,82],[4,14],[-2,15],[-2,9],[-4,4],[-1,1],[-1,1],[-1,-1],[-6,-2],[-7,-8],[-10,-21],[-9,-9],[-7,-2],[-7,4],[-8,10],[-6,17],[-18,63],[-1,5],[0,12],[3,9],[-1,19],[-3,8],[-6,11],[-8,4],[-4,2],[-20,3],[-2,1],[-9,3],[-40,12],[-4,3],[-5,5],[0,2],[-2,7],[1,2],[1,2],[3,3],[32,13],[6,2],[-13,19],[-11,21],[-83,161],[-1,7],[-2,15],[-9,72],[-48,31],[-38,6],[-14,6],[-9,8],[-4,5],[-7,9],[-7,11],[-6,11],[-5,14],[-1,14],[3,6],[1,1],[4,3],[13,0],[13,-8],[13,1],[3,2],[6,4],[7,7],[6,6],[7,10],[6,15],[3,7],[3,8],[3,11],[0,3],[-46,42],[-43,39],[-15,7],[-1,1],[-73,58],[-11,42],[21,5],[5,3],[6,8],[4,10],[0,11],[-2,7],[-24,56],[-5,5],[-11,5],[-18,4],[-35,3],[-11,5],[-1,1],[-5,4],[-2,3],[-2,2],[-2,7],[-1,8],[0,1],[0,11],[13,74],[-27,62],[-12,-12],[-4,-3],[-15,-12],[-6,-5],[-7,0],[-11,-1],[-1,0],[-3,2],[-11,3],[-2,1],[-7,9],[-5,6],[-6,19],[0,4],[-1,27],[-3,8],[-7,8],[-17,7],[-4,1],[-13,-1],[-2,-1],[-20,-10],[-27,-16],[-9,1],[-7,2],[-3,2],[-5,6],[-2,2],[-5,11],[0,1],[-3,8],[-1,4],[7,17],[1,3],[60,17],[0,17],[-1,38],[0,8],[-2,41],[13,75],[10,55],[2,14],[2,12],[-4,0],[-31,0],[-5,63],[-6,67],[13,0],[31,-1],[5,0],[5,-3],[4,0],[4,0],[5,4],[1,5],[0,3],[0,3],[0,8],[-45,102],[23,75],[13,0],[16,5],[6,6],[1,5],[0,5],[-5,11],[-56,87],[-5,7],[-6,4],[-10,-1],[-13,-1],[-50,6],[-25,3],[-3,0],[-97,109],[-3,3],[-6,7],[-1,6],[0,6],[0,5],[0,2],[12,23],[2,3],[3,3],[3,4],[8,9],[8,3],[5,-2],[19,-11],[2,-2],[6,-2],[9,1],[3,1],[1,1],[6,2],[3,4],[1,6],[-31,69],[-2,3],[-3,3],[-1,1],[-10,6],[-10,0],[-31,-6],[-2,-1],[-3,-2],[-6,-3],[-4,-5],[-1,-5],[0,-12],[2,-10],[-2,-2],[-15,-9],[-37,18],[-13,12],[-1,2],[-5,6],[-2,6],[0,5],[0,4],[0,4],[25,52],[1,1],[6,12],[3,6],[15,15],[9,9],[6,6],[3,7],[-1,7],[-1,7],[-56,75],[-5,5],[-6,3],[-23,1],[-9,5],[-1,3],[-2,3],[-1,3],[0,15],[3,10],[36,64],[4,7],[37,54],[6,7],[1,3],[2,2],[18,34],[3,5],[5,11],[4,12],[2,7],[1,5],[0,3],[0,9],[0,5],[-66,105],[-1,1],[-39,1],[-1,-17],[-4,-8],[-6,-6],[-6,0],[-2,1],[-3,1],[-4,2],[-10,8],[-58,61],[0,10],[3,3],[1,2],[3,2],[1,1],[2,1],[16,10],[29,23],[7,9],[6,15],[4,13],[-1,12],[-5,7],[-7,0],[-7,-5],[-8,-5],[-9,-8],[-1,1],[-22,36],[-3,4],[-32,56],[-1,1],[-49,19],[-3,5],[-45,65],[-8,0],[-5,-28],[-7,-22],[-12,-20],[-17,1],[-2,24],[12,15],[10,26],[3,24],[-75,99],[-7,5],[-3,0],[-3,0],[-3,0],[-66,-24],[-2,0],[-4,1],[-15,5],[-4,3],[-8,10],[-11,18],[-9,18],[-7,16],[-8,29],[-4,19],[-4,21],[-19,67],[-8,39],[1,18],[2,3],[3,2],[10,0],[5,-2],[8,-7],[4,-8],[4,-10],[0,-2],[1,-2],[6,-19],[3,-5],[4,-6],[4,-4],[11,1],[15,8],[39,20],[5,3],[5,2],[5,6],[0,2],[1,2],[0,4],[-6,8],[-14,14],[-10,9],[-10,9],[-13,12],[-7,34],[-2,104],[0,9],[2,6],[12,17],[10,8],[11,0],[3,-2],[13,-13],[1,0],[9,-5],[4,0],[6,1],[9,5],[10,9],[1,1],[6,9],[3,5],[6,13],[1,1],[1,7],[-5,28],[-1,4],[-32,81],[-11,15],[-7,8],[-3,3],[-8,4],[-13,-1],[-20,5],[-6,2],[-8,3],[-8,6],[-6,9],[-1,4],[-1,13],[12,47],[1,2],[0,2],[-1,10],[-1,7],[-1,7],[-4,10],[-6,14],[-15,33],[-5,11],[0,1],[-4,7],[-2,2],[-5,6],[-1,1],[-19,10],[-43,-7],[-4,-1],[0,9],[5,9],[19,18],[21,11],[9,3],[7,0],[33,-11],[23,-5],[16,2],[8,3],[7,6],[19,21],[1,1],[6,12],[-1,6],[-5,7],[-6,2],[-49,3],[-16,-2],[-18,-5],[-4,0],[-2,0],[-5,1],[-9,3],[-22,13],[-1,1],[-5,6],[-7,17],[-2,6],[-1,2],[-2,22],[-3,33],[0,25],[-4,26],[-1,23],[5,24],[6,31]],[[76347,20156],[-2,-189],[-2,-55],[-1,-38],[-1,-61],[-1,-41],[0,-44],[-1,-47],[-2,-90],[-1,-64],[-1,-5],[0,-22],[-6,-276],[18,-8],[124,-1],[28,0],[84,-2],[23,-1],[-1,-82],[1,-25],[-1,-33],[-1,-23],[-2,-19],[0,-3],[-4,-389],[0,-13],[0,-29],[-5,-383],[-3,-196],[-4,-305],[-1,-47]],[[76585,17665],[-27,0],[-89,0],[-168,0],[-42,1],[-109,0],[-295,1],[-40,1],[-79,0],[-187,0],[-92,1],[-183,0],[-25,1],[-32,0],[-158,3],[-163,2],[-1,0],[-150,3],[-136,2],[-40,1],[-30,1],[-114,2],[-66,2],[-118,3],[-130,3],[-101,2],[-3,0],[-17,-1],[-23,0],[-20,1],[-16,1],[-18,0],[-25,0],[-16,-1],[-25,4],[-110,1],[-137,0],[-79,2],[-20,0],[-32,-3],[-75,2],[-167,0],[-32,0],[-22,0],[-93,-3],[-27,1],[-45,2],[-15,2],[-331,24],[-29,4],[-26,1],[-54,3],[-30,2],[-77,4],[-26,1],[-13,4],[-78,2],[5,13],[1,15],[-3,16],[-4,10],[0,5],[-50,1],[-66,2],[-186,6],[-53,4],[-17,1],[-47,5],[-73,7],[-15,2],[-27,4],[-16,2],[-17,3],[-15,2],[-15,2],[-28,2],[-17,0],[-21,0],[-19,2],[-20,2],[-15,-2],[-24,-2],[-23,0],[-17,2],[-18,-2],[-51,2],[-49,1],[-12,1],[-8,1],[1,14],[0,18],[1,31],[1,26],[-25,-3],[-17,-3],[-4,-1],[-93,-17],[-125,-23],[-100,3],[-177,6],[-123,3],[-217,7],[-153,4],[-92,3],[-35,1],[-18,1],[-168,5],[-200,0],[-71,1]],[[69794,17930],[-32,1],[-106,6],[-48,2],[-70,2],[-151,5],[-81,2],[-240,1],[-116,2],[-56,3],[-18,1],[-202,11],[-254,6],[-180,1],[-77,0],[1,52],[1,102],[3,165],[1,49],[1,33],[1,242],[3,48],[2,29],[0,24],[2,59],[5,239],[7,27],[1,110],[2,81]],[[43018,23278],[0,-59],[0,-101],[1,-116],[2,-40],[0,-26],[-1,-25],[-1,-40],[-1,-26],[-1,-55],[-1,-145],[-1,-39],[-1,-43],[-1,-73],[-2,-89],[-3,-159],[-2,-122],[-2,-182],[-1,-54],[-1,-30],[0,-25],[0,-25],[-3,-29],[0,-23],[0,-42],[-2,-281],[-1,-56],[-2,-112],[-4,-180],[-1,-65],[-3,-100],[0,-29],[-2,-151],[-1,-69],[-2,-172],[-1,-23],[0,-39],[-1,-41],[0,-28],[-8,-337],[-3,-170],[1,-46],[-1,-25],[2,-44],[-6,-105],[-1,-22],[-2,-51],[0,-69],[-1,-32],[-4,-220],[-3,-201],[-4,-92],[-2,-72],[-2,-61],[0,-26],[-1,-84],[-1,-51],[0,-57],[0,-36],[-2,-100],[-1,-118],[-4,-302],[0,-26],[-2,-79],[-2,-92],[-2,-95],[-1,-9],[-1,-59],[-1,-67]],[[42927,17616],[-68,2],[-71,3],[-58,2],[-40,1],[-59,2],[-33,1],[-16,1],[-176,6],[-23,1],[-137,5],[-113,4],[-21,0],[-202,7],[-68,3],[-69,1],[-69,1],[-66,2],[-58,2],[-72,3],[-75,2],[-63,2],[-29,1],[-52,1],[-45,1],[-48,1],[-15,1],[-72,2],[-99,2],[-42,1],[-41,1],[-23,1],[-90,3],[-43,2],[-21,1],[-43,2],[-62,2],[-26,1],[-53,1],[-38,1],[-31,1],[-66,2],[-29,1],[-39,1],[-89,1],[-53,0],[-119,2],[-67,2],[-89,2],[-107,4],[-18,-2],[-30,2],[-23,1],[-21,2],[-53,-4],[-42,3],[-65,7],[-134,-1],[-94,0],[-66,2],[-31,1],[-107,3],[-36,1],[-33,1],[-166,5],[-18,1],[-51,1],[-20,0],[-2,0],[-13,1],[-38,1],[-18,1],[-51,1],[-19,1],[-22,1],[-57,1],[-34,1],[-22,1],[-37,1],[-59,2],[-39,1],[-127,4],[-16,0],[-85,3],[-8,0],[-8,1],[-23,1],[-22,0],[-21,1],[-28,1],[-22,1],[-22,1],[-24,1],[-31,2],[-40,2],[-32,2],[-12,-2],[-3,-1],[-19,-2],[-18,0],[-16,2],[-129,4],[-38,2],[-165,5],[-32,1],[-52,1],[-21,1],[-22,0],[-104,3],[-69,3],[-16,0],[-186,1]],[[37009,17782],[-26,1],[-74,1],[-51,0],[-28,1],[-92,2],[-57,1],[-67,1],[-38,0],[-114,2],[-6,0],[-12,1],[1,60],[1,47],[1,72],[1,26],[0,33],[2,109],[2,126],[2,165],[1,35],[4,215],[0,33],[1,27],[1,23],[3,250],[1,28],[4,170],[1,22],[0,32],[2,69],[0,34],[3,159],[0,25],[1,38],[0,24],[1,23],[1,48],[4,184],[1,160],[1,26],[0,26],[6,292],[1,41],[0,25],[3,154],[0,42],[1,48],[4,198],[1,30],[1,44],[3,149],[0,25],[2,72],[0,3],[1,52],[2,145],[2,100],[1,51],[-5,33],[-51,2],[-17,0],[-21,0],[-24,0],[-19,1],[-28,0],[-99,2],[-76,1],[-32,0],[-81,2],[-10,0],[-7,0],[-23,0],[-16,1],[-35,0],[-19,3],[-119,0],[-73,-1],[-35,0],[-16,0],[-193,2],[-18,1],[-17,0],[-22,1],[-40,0],[-22,1],[-31,0],[-21,1],[-41,1],[-21,0],[-21,1],[-26,0],[-61,1],[-16,1],[-20,0],[-18,0],[-35,1],[-21,0],[-20,1],[-26,1],[-20,0],[-25,1],[-20,-1],[-24,1],[-22,1],[-28,0],[-17,0],[-16,0],[-16,1],[-53,0],[-27,1],[-26,0],[-25,1],[-16,0],[-34,0],[-28,1],[-23,0],[-22,0],[-40,0],[-19,0],[-38,0],[-15,1],[-17,0],[-25,0],[-67,1],[-16,0],[-16,0],[-44,1],[-27,0],[-24,0],[-24,0],[-28,0],[-16,1],[-24,0],[-19,1],[-44,0],[-22,0],[-16,0],[-35,0],[-22,1],[-20,0],[-17,0],[-18,1],[-16,0],[-17,-2],[-18,2],[-19,2],[-16,1],[-19,1],[-19,-1],[-20,1],[-18,1],[-16,1],[-19,0],[-62,3],[-20,1],[-19,0],[-23,1],[-18,0],[-15,0],[-25,1],[-17,1],[-16,0],[-32,1],[-28,0],[-22,1],[-17,1],[-15,0],[-29,1],[-21,1],[-35,1],[-28,1],[-29,0],[-15,0],[-22,0],[-18,1],[-49,1],[-43,1],[-16,0],[-16,0],[-32,1],[-57,1],[-8,0],[-8,0],[-21,1],[-19,0],[-6,0],[-15,1],[-54,0],[-32,1],[-52,1],[-20,1],[-26,0],[-32,1],[-34,0],[-34,1],[-22,0],[-51,1],[-10,0],[-9,0],[-38,1],[-43,1],[-23,0]],[[55221,22966],[-1,-28],[-1,-35],[1,-27],[-2,-45],[0,-77],[0,-30],[-1,-36],[0,-28],[1,-23],[-5,-57],[1,-27],[1,-25],[0,-28],[-2,-45],[-1,-46],[-2,-66],[2,-24],[0,-23],[-1,-43],[-1,-31],[-2,-146],[-1,-34],[0,-26],[-2,-125],[-1,-93],[-1,-49],[-6,-88],[-1,-77],[-4,-218],[-2,-140],[-1,-79],[-1,-65],[-1,-15],[-1,-59],[-1,-30],[0,-46],[-1,-40],[-1,-90],[-2,-118],[-2,-90],[-7,-383],[-4,-186],[0,-7],[0,-33],[-3,-98],[-1,-10],[-1,-33],[-1,-31],[-1,-43],[1,-22],[-2,-28],[-2,-28],[0,-23],[-1,-64],[0,-28],[-1,-22],[0,-23],[-1,-56],[0,-60],[-1,-92],[0,-32],[-1,-108],[0,-42],[-1,-103],[-1,-40],[-2,-67],[-1,-64],[-2,-86],[-1,-40],[-2,-101],[-1,-29],[-5,-190],[-1,-31],[0,-14],[-3,-102],[-1,-35],[-1,-26],[-2,-125],[0,-33],[-3,-114],[-1,-46],[-7,-333],[-4,-180],[-2,-96],[-110,2],[-135,3]],[[54867,17292],[-55,1],[-102,4],[-35,1],[-104,3],[-129,4],[-17,1],[-62,1],[-19,1],[-4,0],[-61,2],[-47,1],[-24,1],[-23,0],[-19,1],[-21,1],[-17,1],[-17,0],[-18,1],[-28,1],[-17,1],[-16,-1],[-20,1],[-25,1],[-19,0],[-17,1],[-89,2],[-18,1],[-41,1],[-41,1],[-42,2],[-30,0],[-52,2],[-17,0],[-16,1],[-76,2],[-40,1],[-24,1],[-60,1],[-38,-1],[-55,2],[-15,0],[-63,3],[-3,1],[-16,1],[-21,0],[-23,1],[-18,1],[-22,1],[-33,1],[-17,0],[-19,0],[-31,1],[-20,0],[-84,2],[-23,2],[-18,1],[-40,1],[-44,2],[-28,1],[-39,1],[-38,1],[-53,1],[-42,1],[-23,0],[-41,1],[-15,1],[-17,0],[-24,1],[-19,1],[-18,1],[-61,2],[-31,2],[-76,0],[-40,0],[-16,0],[-153,5],[-74,2],[-33,1],[-71,4],[-31,0],[-60,0],[-69,2],[-49,2],[-86,2],[-29,1],[-17,1],[-62,3],[-61,1],[-57,2],[-5,0],[-27,0],[-83,5],[-20,-1],[-20,-1],[-32,1],[-3,0],[-22,1],[-21,0],[-4,1],[-38,2],[-27,0],[-22,0],[-38,1],[-40,2],[-38,1],[-121,2],[-2,0],[-238,5],[-61,1],[-17,0],[-23,1],[-57,1],[-62,2],[-20,0],[-27,1],[-80,2],[-30,1],[-17,1],[-23,1],[-111,2],[-59,1],[-81,2],[-99,3],[-80,2],[-21,1],[-16,0],[-47,1],[-19,0],[-21,0],[-18,0],[-17,1],[-77,1],[-72,0],[-71,1],[-29,0],[-30,7],[-143,2],[-82,1],[-45,1],[-45,2],[-20,0],[-71,3],[-69,3],[-61,1],[-22,1],[-17,0],[-44,2],[-51,1],[-204,6],[-71,2],[-63,1],[-19,1],[-206,4],[-95,2],[-21,0],[-27,1],[-86,2],[-26,0],[-34,1],[-44,1],[-37,1],[-345,10],[-30,1],[-85,2],[-36,0],[-35,1],[-3,0],[-16,1],[-67,1],[-83,2],[-37,1],[-42,1],[-96,2],[-42,1],[-56,1],[-75,1],[-26,0],[-21,1],[-26,1],[-89,1],[-112,4],[-29,0],[-26,1],[-30,1],[-5,0],[-17,0],[-135,4],[-142,4],[-41,0],[-79,2],[-56,1],[-33,1],[-16,0],[-55,2],[-100,2],[-201,5],[-31,1],[-51,0],[-65,2],[-80,2],[-54,1],[-21,3]],[[45091,17549],[-68,2],[-66,2],[-69,2],[-26,0],[-26,1],[-17,1],[-29,1],[-24,0],[-18,1],[-19,0],[-398,14],[-29,1],[-1,0],[-21,0],[-81,3],[-1,0],[-54,1],[-3,0],[-58,2],[-4,0],[-21,1],[-28,0],[-19,1],[-65,2],[-36,0],[-27,1],[-67,2],[-39,1],[-42,1],[-18,1],[-39,1],[-69,2],[-33,1],[-35,1],[-70,1],[-47,2],[-23,1],[-149,5],[-38,2],[-24,1],[-67,2],[-69,2],[-49,2],[-15,1],[-38,1],[-25,1]],[[96586,13777],[0,90],[0,6],[0,37],[-11,149],[-130,-1],[1,101],[-1,55],[-67,-5],[-68,4],[-1,26],[0,33],[0,34],[0,31],[-1,35],[0,35],[0,75],[-1,50],[-40,0],[-93,-2],[0,89],[-2,63],[-68,3],[-69,4],[0,58],[1,54],[1,118],[1,77],[-135,1],[-5,190],[-1,22],[-1,28],[0,13],[-3,65],[-25,0],[-27,0],[-45,0],[-44,0],[-54,0],[-15,0],[-21,0],[-33,0],[-2,176],[0,58],[0,54],[-3,25],[-28,0],[-30,1],[-16,0],[-16,0],[-22,1],[-20,-1],[-2,272],[-10,18],[-15,10],[-16,10],[-15,7],[-79,75],[-87,84],[-61,0],[0,77],[0,80],[-125,-3],[0,7],[-2,300],[-131,-4],[-1,161],[-135,-7],[1,37],[0,36],[0,31],[0,41],[0,24],[0,52],[4,39],[1,30],[-2,22],[0,33],[1,77],[0,48],[-30,-1],[-41,-3],[-24,-1],[-39,0],[-130,-2],[-3,153],[-1,64],[-1,44],[-1,48],[-134,1],[0,48],[2,67],[1,41],[3,113],[1,44],[-42,0],[-27,0],[-37,0],[-62,9],[2,261],[-6,56],[-49,-1],[-28,0],[-19,0],[-34,0],[-23,0],[-23,0],[-22,0],[-18,0],[-61,0],[0,177],[-1,150],[-45,0],[-218,0],[1,83],[0,25],[1,89],[-1,35],[0,41],[0,42],[-1,77],[-1,32],[-1,46]],[[96782,21974],[27,-32],[124,-147],[143,-168],[41,-48],[16,-6],[177,-67],[9,-3],[7,5],[156,133],[4,4],[4,8],[61,117],[70,374],[-38,122],[-150,159],[-19,20],[-26,28],[-55,57],[-207,105],[-70,35],[-77,65],[-38,32],[-13,11],[-36,57],[-11,33],[-44,134],[-1,38],[-3,140],[42,55],[7,9],[74,-10],[657,-89],[43,92],[19,42],[9,-19],[63,-128],[66,-133],[11,-32],[42,-123],[23,-65],[7,-21],[28,-82],[63,-114],[13,-23],[19,-18],[178,-162],[13,-11],[39,-26],[16,-11],[28,-24],[35,-28],[2,-2],[132,-122],[1,-2],[37,-69],[34,-128],[5,-31],[31,-170],[2,-12],[11,-219],[3,-67],[3,-8],[35,-113],[8,-25],[83,-117],[123,-57],[107,-2],[15,0],[9,0],[11,5],[133,68],[28,14],[144,74],[6,3],[164,44],[2,1],[16,6],[9,4],[42,10],[72,18],[44,-1],[66,-3],[124,-137],[23,-26],[74,-114],[72,-149],[0,-95],[-18,-323],[-72,-290],[-42,-167],[-66,-360],[-15,-82],[-25,-146],[-16,-105],[-13,-58],[-33,-97],[-38,-80],[-13,-29],[-15,-31],[-102,-363],[-16,-40],[-89,-222],[-3,1],[-106,1],[-173,2],[-88,-60],[-167,-115],[-66,-102],[-5,-395],[32,-237],[169,-260],[120,-61],[333,-53],[81,-15],[22,-4],[77,-57],[45,-111],[56,-140],[-11,-89],[-20,-152],[-84,-187],[-74,-39],[-1,0],[-114,12],[-153,82],[-324,81],[-222,-110],[-185,-272],[-31,-46],[-53,-258],[15,-233],[262,-391],[189,-209],[31,-103],[-17,-280],[36,-51],[10,-6],[70,-42],[5,-3],[7,-49],[-61,-84],[-45,-61],[-116,-94],[-25,-26],[-194,-344],[-161,-269],[-21,-304],[-20,-91],[-4,-23],[-31,-269],[-52,-121],[-18,-39],[-42,-90],[-9,-8],[-277,-258],[-88,-40],[-177,-60],[-51,-2],[-63,9],[-15,2],[-114,72],[-10,12],[-309,383],[-70,87],[-91,96],[-9,34],[-41,173],[-76,226],[-203,291],[-110,82]],[[61673,19347],[-4,-179],[-2,-67],[-1,-59],[4,-31],[0,-160],[-4,-98],[-1,-60],[2,-28],[1,-61],[1,-182],[1,-124],[-3,-86],[-1,-45],[-3,-79],[-3,-67],[-2,-55],[-1,-30],[-2,-74],[-2,-167],[-4,-244],[0,-78],[-3,-44],[-2,-44],[0,-25],[0,-37],[-2,-76],[-28,0],[-34,1],[-68,1],[-82,4],[-4,-227],[-1,-81],[-3,-58],[-2,-69],[2,-47],[0,-31],[-1,-46],[-2,-131],[-1,-56],[-1,-23],[0,-3],[-2,-48],[-5,-187],[-1,-87],[-3,-199],[-6,-282],[-2,-136],[-3,-329],[-3,-135],[-3,-147],[-1,-29],[0,-23],[0,-15],[-1,-34],[-3,-72],[1,-178],[-1,-22],[0,-31],[-1,-62],[0,-25],[-3,-117],[-1,-51],[-1,-93],[0,-6],[-1,-58],[-7,-314],[-1,-26],[0,-34],[0,-12],[5,-232],[0,-28],[5,-137],[26,0],[17,-1],[19,0],[22,-10],[0,-28],[0,-23],[1,-30],[0,-115],[0,-25],[1,-22],[-2,-57],[-1,-33],[2,-111],[1,-114],[1,-74],[0,-52],[-1,-37],[1,-27],[-1,-23],[0,-28],[1,-84],[-1,-141],[-1,-67],[2,-76],[0,-48],[0,-128],[-1,-94],[-2,-66],[-1,-69],[3,-90],[-6,-70],[-3,-167],[1,-29],[2,-83],[0,-56],[1,-42],[0,-23],[-2,-122],[0,-58]],[[61458,10909],[-185,0],[-19,-2],[-21,-1],[-19,1],[-17,1],[-217,0],[-1,0],[-74,0],[-27,0],[-104,0],[-129,-4],[-106,1],[-66,1],[-41,0],[-25,-1],[-24,0],[-27,0],[-26,0],[-27,0],[-17,0],[-40,0],[-67,0],[-28,-1],[-60,0],[-33,-1],[-20,-1],[-164,-2],[-53,0],[-46,1],[-91,0],[-77,-2],[-53,1],[-34,0],[-18,-2],[-28,1],[-17,2],[-54,-3],[-410,-2],[-60,0],[-71,-1],[-137,0],[-40,0],[-81,0],[-23,-1],[-32,0],[-22,0],[-110,0],[-54,0],[-448,-2],[-34,-1],[-69,0],[-150,-1],[-85,0],[-16,0],[-59,0],[-272,-2],[-25,0],[-245,-1],[-196,0],[-6,0],[-48,0],[-130,-1],[-37,4],[-35,-2],[-18,0],[-41,0],[-77,1],[-3,0],[-121,-4],[-27,1],[-20,0],[-18,0],[-23,0],[-26,1],[-24,4],[-81,-1],[-121,1],[-50,0],[-148,1],[-17,0],[-221,1],[-45,1],[-64,0],[-32,1],[-98,0],[-59,1],[-30,1],[-44,-1],[-24,-1],[-76,1],[-25,0],[-99,0],[-15,0],[-115,0]],[[54746,10896],[3,50],[0,24],[0,22],[1,31],[0,31],[0,28],[0,27],[2,23],[0,30],[0,23],[0,28],[2,29],[1,22],[0,31],[1,31],[1,31],[0,26],[0,10],[0,16],[0,30],[1,31],[1,31],[0,31],[1,26],[1,25],[1,31],[0,28],[1,31],[1,34],[0,50],[1,19],[0,3],[0,66],[2,93],[0,46],[1,63],[0,26],[1,29],[0,44],[1,78],[1,45],[4,66],[0,22],[0,31],[1,46],[0,31],[1,47],[1,61],[1,29],[1,48],[0,5],[0,26],[0,40],[1,45],[1,54],[1,25],[1,42],[1,46],[1,23],[1,51],[0,66],[1,56],[0,47],[2,55],[2,46],[0,42],[0,55],[0,33],[2,41],[2,45],[1,48],[1,37],[0,59],[1,31],[0,56],[1,64],[2,86],[1,62],[1,60],[1,49],[0,39],[0,49],[2,81],[2,138],[2,122],[0,49],[3,100],[1,46],[1,23],[1,38],[0,93],[0,2],[0,22],[0,64],[1,53],[0,64],[2,35],[2,23],[2,83],[1,31],[0,31],[0,31],[1,62],[0,24],[1,26],[1,31],[1,39],[0,28],[0,44],[1,62],[1,53],[2,41],[1,30],[0,45],[0,51],[2,48],[1,54],[0,72],[1,26],[1,42],[1,39],[1,57],[-1,39],[2,36],[-1,30],[0,22],[0,31],[1,23],[1,23],[1,31],[1,46],[0,25],[-1,23],[1,23],[0,29],[3,93],[6,202],[3,111],[1,57],[2,55],[2,92],[5,165]],[[25647,20270],[-4,-84],[-2,-50],[-1,-52],[-1,-30],[-1,-24],[0,-34],[-1,-24],[-2,-13],[0,-8],[-1,-23],[0,-28],[-1,-42],[-1,-34],[-1,-37],[0,-23],[-1,-36],[-1,-86],[-1,-57],[-1,-45],[-1,-53],[-4,-199],[-5,-201],[0,-12],[-1,-26],[1,-33],[-7,-218],[-2,-55],[-1,-29],[-6,-198],[-4,-131],[-1,-64],[-1,-93],[2,-30],[0,-26],[-2,-28],[-1,-23],[-1,-45],[15,-5],[-1,-216],[-5,-158],[-7,-154],[-1,-33],[-1,-46],[-1,-22],[-1,-24],[-1,-24],[0,-23],[-3,-143],[-4,-150],[-1,-30],[-11,-361],[-3,-84],[-2,-84],[-4,-123],[-2,-49],[-4,-23],[-1,-37]],[[25555,16287],[-34,2],[-27,1],[-28,2],[-29,1],[-16,1],[-19,1],[-3,0],[-1,0],[-13,1],[-51,3],[-26,1],[-23,4],[-21,1],[-2,0],[-77,1],[-33,3],[-39,2],[-18,2],[-37,1],[-42,2],[-173,8],[-65,3],[-31,1],[-8,1],[-18,2],[-16,2],[-60,2],[-139,7],[-261,13],[-144,6],[-131,6],[-34,1],[-3,0],[-56,4],[-67,3],[-19,0],[-90,5],[-19,0],[-25,2],[-23,1],[-28,1],[-30,2],[-78,3],[-52,2],[-48,3],[-39,2],[-67,3],[-31,1],[-16,1],[-21,1],[-33,1],[-18,2],[-17,1],[-19,0],[-17,1],[-40,2],[-39,2],[-16,0],[-25,2],[-23,0],[-29,2],[-19,1],[-31,1],[-32,2],[-18,1],[-23,1],[-16,1],[-24,1],[-26,2],[-43,1],[-80,4],[-152,5],[-6,1],[-73,3],[-34,1],[-23,2],[-62,3],[-25,2],[-24,1],[-23,2],[-158,8],[-202,10],[-28,1],[-19,2],[-24,2],[-23,0],[-23,1],[-19,1],[-18,2],[-19,2],[-62,3],[-61,2],[-96,5],[-41,2],[-254,12],[-57,2],[-32,3],[-54,4],[-40,3],[-18,1],[-192,9],[-33,-1],[-64,4],[-3,0],[-55,4],[-172,8],[-18,1],[-21,1],[-51,1],[-2,0],[-25,2],[-19,1],[-19,1],[-20,0],[-20,2],[-24,1],[-17,0],[-12,1],[-4,0],[-29,1],[-24,2],[-31,1],[-24,0],[-161,9],[-47,3],[-61,3],[-20,4],[-184,10],[-102,5],[-129,6],[-108,6],[-179,9],[-85,4],[-58,3],[-5,0],[-142,7],[-48,3],[-33,1],[-24,0],[-26,2],[-16,1],[-26,1],[-23,1],[-21,2],[-25,1],[-22,1],[-26,1],[-15,1],[-26,1],[-28,1],[-53,3],[-54,2],[-57,2],[-18,1],[-28,1],[-32,1],[-19,1],[-26,2],[-49,2],[-23,1],[-67,3],[-27,0],[-31,2],[-21,1],[-41,2],[-39,2],[-21,0],[-33,2],[-66,3],[-78,3],[-71,3],[-61,2],[-116,7],[-50,4],[-42,2]],[[17324,16693],[1,112],[1,120],[0,38],[0,43],[-2,310],[-1,181],[-1,270],[0,2],[0,122],[1,54],[0,4],[1,161],[0,38],[0,18],[0,4],[0,35],[-1,26],[0,41],[0,92],[0,24],[0,39],[0,27],[2,41],[0,32],[-1,42],[-1,34],[0,75],[1,23],[0,68],[0,51],[1,62],[-1,33],[0,44],[0,34],[1,34],[-3,97],[-3,25],[1,73],[4,223],[4,84],[0,36],[0,31],[0,27],[0,22],[0,25],[0,162],[0,81],[0,35],[0,34],[0,43],[1,38],[0,25],[0,22],[1,38],[-1,46],[0,26],[0,45],[0,26],[0,25],[0,44],[0,24],[0,49],[0,30],[0,42],[0,44],[-1,47],[0,69],[0,22],[0,84],[0,23],[0,35],[1,31],[-1,31],[0,36],[-2,28],[-2,28],[-9,20],[-10,20],[4,22],[11,23],[1,25],[5,25],[0,141],[0,26],[0,43],[1,60],[1,29],[0,24],[0,38],[1,23],[0,64],[0,45],[0,22],[-1,30],[0,11],[0,14],[1,36],[1,28],[0,55],[0,24],[0,19],[0,2],[0,34],[0,30],[-1,30],[1,65],[0,55],[-1,352],[0,36],[0,8],[0,84],[0,80],[-1,67],[2,23],[0,26],[0,30],[0,39],[0,62],[0,30],[1,75]],[[37009,17782],[-5,-186],[-1,-36],[0,-24],[-2,-54],[0,-26],[-2,-85],[-1,-27],[-1,-43],[-1,-27],[-1,-43],[0,-24],[-1,-27],[-1,-36],[-3,-161],[-3,-126],[-1,-23],[-2,-72],[-3,-89],[-1,-32],[-2,-45],[-3,-72],[-2,-62],[-1,-40],[-2,-66],[0,-4],[-1,-44],[-1,-26],[-2,-69],[-3,-143],[-3,-93],[0,-28],[-1,-48],[-28,0],[-2,-95],[-2,-114],[-1,-50],[-1,-28],[-1,-51],[-1,-28],[-1,-44],[-1,-36],[-2,-114],[-1,-24],[0,-22],[-1,-89],[0,-42],[-1,-82],[0,-23],[-1,-33],[0,-23],[0,-27],[-1,-85],[0,-25],[0,-45],[-1,-61],[0,-81],[-1,-22],[-1,-72],[-1,-18],[0,-6],[-1,-53],[-1,-37],[0,-42],[-2,-73],[0,-22],[-3,-117],[0,-33],[-1,-38],[-1,-31],[-2,-79],[-1,-76],[-1,-23],[0,-39],[-1,-45],[0,-35],[-1,-89],[-1,-51],[0,-4],[0,-2],[-1,-53],[0,-22],[0,-30],[0,-32],[-1,-24],[0,-9],[-1,-75],[-1,-50],[-1,-75],[-1,-23],[-1,-44],[0,-31],[-1,-17],[0,-10],[-1,-67],[-2,-100],[0,-14],[0,-12],[-1,-23],[0,-6],[-1,-35],[0,-48],[-2,-76],[0,-24],[-1,-29],[0,-31],[0,-13],[-1,-59],[-1,-32],[-1,-45],[0,-26],[-1,-72],[0,-36],[-1,-35],[0,-24],[0,-7],[-1,-38],[0,-34],[-1,-48],[-1,-48],[-1,-38],[0,-12],[-1,-19],[-1,-36],[-3,-98],[0,-24],[-1,-24],[-1,-29],[0,-25],[-1,-25],[0,-23],[0,-24],[0,-24],[-1,-30],[0,-22],[-1,-22],[0,-25],[0,-24],[0,-34],[-1,-23],[-2,-22],[1,-24],[-1,-50],[0,-22],[-1,-23],[0,-26],[0,-5],[-2,-67],[0,-25],[0,-15],[-1,-28],[0,-23],[-1,-60],[-1,-32],[-1,-47],[-1,-77],[-1,-42],[-2,-117],[-1,-29]],[[36844,10880],[-71,2],[-108,5],[-19,0],[-18,2],[-165,-3],[-44,-1],[-172,0],[-107,0],[-88,4],[-104,4],[-169,-3],[-83,2],[-17,-3],[-33,5],[-16,0],[-16,-1],[-17,1],[-22,0],[-19,0],[-67,1],[-22,0],[-34,0],[-40,0],[-23,0],[-17,0],[-17,1],[-19,0],[-19,1],[-51,0],[-20,0],[-32,1],[-21,-1],[-35,-5],[-18,-3],[-15,0],[-63,0],[-64,1],[-111,1],[-28,1],[-24,0],[-25,0],[-92,1],[-86,1],[-164,1],[-50,1],[-70,0],[-90,1],[-46,1],[-118,-2],[-16,1],[-35,0],[-58,0],[-29,0],[-45,0],[-30,-1],[-97,0],[-94,0],[-108,0],[-78,0],[-20,0],[-82,0],[-18,0],[-41,1],[-108,0],[-37,0],[-1,0],[-53,0],[-151,0],[-99,0],[-43,0],[-9,0],[-8,0]],[[32815,10897],[1,25],[1,102],[0,31],[1,26],[0,12],[0,54],[1,74],[0,92],[0,22],[-1,53],[3,119],[2,67],[2,77],[1,64],[2,59],[2,85],[4,164],[2,73],[0,28],[4,132],[0,27],[1,45],[1,39],[2,75],[0,5],[0,18],[1,33],[1,35],[1,40],[1,22],[1,35],[-1,25],[-1,26],[3,24],[1,23],[-1,13],[0,10],[-1,29],[1,24],[1,18],[1,30],[0,32],[-5,25],[9,22],[1,35],[1,65],[1,34],[1,55],[1,28],[0,29],[1,45],[1,41],[0,23],[1,137],[2,107],[1,99],[1,47],[1,30],[1,63],[2,69],[10,322],[1,36],[2,77],[4,150],[2,46],[1,54],[4,155],[4,121],[3,65],[0,40],[0,24],[4,169],[3,100],[1,60],[3,105],[3,121],[6,165],[4,159],[2,71],[1,51],[1,37],[0,1],[2,57],[5,199],[3,113],[3,136],[1,25],[2,119],[1,46],[0,16],[1,42],[1,125],[3,130],[1,31],[3,119],[0,42],[2,61],[3,126],[2,115],[2,83],[1,60],[3,128],[2,111],[-54,0],[-99,0],[-26,-2],[-48,0],[-25,0],[-20,2],[-33,6],[-21,-2],[-19,-2],[-18,2],[-21,2],[-19,0],[-21,1],[-25,1],[-53,0],[-23,1],[-17,0],[-44,2],[0,36],[0,32],[1,36],[0,18],[0,5],[1,66],[0,43],[1,52],[-1,24],[2,22],[1,53],[0,27],[1,44],[1,36],[0,30],[0,27],[0,25],[1,50],[0,26],[6,245],[1,43],[-4,38],[1,59],[1,60],[0,84],[1,51],[2,187],[2,166],[1,55],[2,142],[0,24],[2,92],[2,116],[0,2],[0,21],[1,37],[3,141]],[[32815,10897],[-23,0],[-195,0],[-163,1],[-95,0],[-137,0],[-30,0],[-102,0],[-148,1],[-39,-1],[-27,0],[-101,0],[-61,1],[-175,0],[-85,1],[-51,0],[-142,2],[-31,-1],[-116,1],[-59,-8],[-18,-1],[-23,0],[-16,11],[-21,-2],[-22,2],[-3,0],[-15,1],[-18,1],[-22,-2],[-19,0],[-41,0],[-34,1],[-16,0],[-17,-1],[-21,-1],[-20,1],[-22,0],[-25,-2],[-94,-3],[-40,0],[-137,-1],[-19,0],[-15,0],[-27,5],[-31,0],[-21,-1],[-11,0],[-175,0],[-66,0],[-121,-1],[-169,-1],[-113,-1],[-303,-2],[-210,-1],[-50,0],[-16,0],[-90,-1],[-81,0],[-183,-1],[-72,-1],[-35,0],[-132,0],[-54,0],[-44,0],[-88,0],[-51,0],[-128,0],[-92,0],[-33,0],[-33,0],[-106,0],[-57,0],[-19,0],[-29,0],[-31,0],[-19,0],[-49,0],[-12,0],[-6,0],[-35,0],[-176,0],[-62,0],[-38,0],[-90,0],[-21,0],[-31,0],[-19,0],[-31,0],[-80,0],[-81,0],[-19,0],[-19,0],[-153,0],[-99,0],[-30,0],[-15,1],[-17,0],[-66,2],[-276,0],[-18,0],[-16,-1],[-100,0],[-69,0],[-31,0],[-76,0],[-250,-1],[-109,0],[-94,0],[-47,-1]],[[25432,10893],[0,29],[0,10],[0,23],[-1,26],[6,28],[0,38],[0,37],[-2,37],[0,24],[2,68],[8,222],[1,118],[2,66],[1,31],[2,73],[1,49],[2,70],[1,32],[2,100],[2,72],[9,325],[5,142],[0,27],[3,83],[1,26],[2,71],[3,121],[2,55],[2,71],[2,68],[5,208],[3,104],[3,78],[2,69],[2,90],[1,31],[1,29],[2,67],[3,84],[2,74],[8,237],[3,72],[1,29],[0,24],[3,67],[-9,113],[1,36],[4,112],[3,92],[1,48],[4,117],[3,86],[1,43],[1,24],[2,66],[3,68],[0,24],[5,134],[5,139],[1,31],[3,96],[7,226],[7,179],[1,39],[1,28],[1,41],[1,6],[1,37],[6,179],[-4,24],[-21,1]],[[84289,13750],[22,-29],[-17,-6],[-13,13],[-15,12],[-15,2],[-6,-8],[-5,-9],[-5,-7],[-7,-19],[-6,-16],[-8,-17],[4,-6],[16,-13],[15,11],[9,20],[14,12],[16,-10],[10,-28],[9,-36],[-7,-21],[-10,-18],[-15,-14],[-16,-5],[-18,1],[-19,15],[-8,28],[-17,12],[-6,6],[-21,-35],[-27,-46],[-12,-19],[-6,-13],[-41,-76],[-21,-41],[-13,-16],[-43,-42],[-45,-43],[-27,-26],[-34,-31],[-21,-21],[-6,-11],[-5,-7],[-9,-14],[-12,-49],[-11,-40],[-11,-29],[-23,-30],[-3,-7],[-7,-15],[-7,-34],[-10,-53],[-3,-13],[-2,-9],[-5,-7],[-53,-67],[-4,-10],[1,-12],[29,-71],[5,-67],[7,-87],[3,-46],[1,-21],[4,-48],[1,-23],[-7,-66],[-5,-31],[0,-27],[5,-14],[6,-13],[5,-15],[9,-24],[3,-8],[-5,-15],[-19,-11],[-12,-5],[-6,-3],[-45,-70],[-5,-18],[3,-21],[17,-67],[20,-68],[-1,-9],[-23,-20],[-14,-26],[-1,-23],[-19,-6],[-24,-11],[-15,9],[-13,18],[-5,26],[7,20],[17,0],[19,0],[14,15],[-8,25],[-15,13],[-16,-13],[-16,-15],[-16,-13],[-15,-4],[-15,11],[-17,12],[-5,-22],[-5,-26],[-14,-16],[-9,-21],[1,-29],[4,-20],[-6,-26],[-32,-3],[-20,-9],[-11,14],[-5,31],[5,37],[-14,14],[-20,-16],[-20,-15],[-16,-14],[-14,-22],[9,-26],[12,-36],[-5,-21],[-12,-19],[-16,0],[-18,-8],[3,-33],[8,-30],[16,-11],[22,-16],[-3,-26],[15,-7],[17,10],[15,-7],[8,-24],[-7,-22],[-17,-10],[-16,17],[-13,13],[-16,-6],[-15,-15],[-18,-11],[-15,2],[-13,14],[-16,9],[-15,-19],[-11,-22],[-8,-22],[8,-24],[16,-17],[19,-22],[4,-26],[-18,1],[-20,-10],[-15,-11],[-18,-3],[-17,-9],[10,-18],[5,-32],[5,-24],[13,-29],[18,-21],[-7,-21],[-12,-16],[-11,-19],[-4,-22],[-4,-24],[-6,-21],[-15,-36],[6,-21],[15,16],[18,3],[17,-12],[3,-26],[-17,-17],[-17,-12],[-11,-21],[5,-23],[16,-8],[16,-10],[-11,-29],[-1,-28],[-4,-26],[-29,7],[-10,-20]],[[83205,10874],[-86,1],[-38,-1],[-18,0],[-45,0],[-32,0],[-39,0],[-17,0],[-76,-1],[-26,0],[-60,0],[-43,0],[-46,0],[-67,1],[-17,1],[-45,0],[-15,0],[-20,0],[-84,1],[-48,0],[-34,0],[-22,0],[-28,0],[-25,0],[-46,0],[-16,0],[-15,0],[-91,1],[-27,0],[-59,0],[-25,0],[-19,0],[-21,-1],[-15,0],[-59,-1],[-23,1],[-35,1],[-56,2],[-18,0],[-79,1],[-19,0],[-19,0],[-18,-2],[-43,1],[-67,1],[-16,0],[-28,-1],[-25,0],[-17,3],[-235,2],[-38,0],[-101,0],[-87,1],[-15,0],[-49,0],[-23,0],[-82,0],[-176,0],[-67,0],[-93,1],[-91,0],[-200,0],[-33,0],[-66,0],[-18,0],[-3,0],[-28,0],[-1,0],[-79,0],[-1,0],[-29,0],[-1,0],[-120,0],[-93,0],[-179,1],[-29,0],[-65,0],[-30,0],[-18,0],[-46,0],[-27,0],[-3,0],[-28,0],[-59,-1],[-102,1],[-50,1],[-36,0],[-60,-1],[-19,1],[-43,-1],[-44,0],[-40,0],[-8,0],[-29,0],[-85,0],[-48,1],[-36,-1],[-44,1],[-22,0],[-18,0],[-57,0],[-26,1],[-13,-1],[-7,0],[-25,0],[-30,0],[-47,0],[-19,0],[-61,1],[-31,0],[-20,0],[-40,0],[-15,0],[-67,1],[-38,0],[-57,0],[-1,0],[-24,0],[-63,-1]],[[77880,10889],[1,31],[1,50],[0,32],[1,57],[0,53],[0,24],[1,36],[0,56],[0,31],[1,47],[0,35],[1,31],[0,49],[0,53],[1,53],[0,44],[0,24],[1,29],[1,88],[-1,80],[0,32],[1,34],[0,34],[0,35],[0,22],[-1,24],[3,23],[2,116],[0,25],[3,126],[0,160],[1,26],[0,9],[2,85],[0,33],[-1,12],[1,60],[0,15],[0,54],[0,45],[1,65],[1,34],[1,49],[-30,0],[-34,2],[-19,1],[-20,1],[-18,-1],[-15,0],[-16,0],[-37,1],[-18,1],[-22,0],[-31,0],[-14,9],[3,186],[1,37],[0,41],[1,152],[-1,30],[0,30],[0,65],[0,35],[1,63],[1,44],[0,31],[0,23],[0,55],[1,54],[1,59],[0,29],[0,26],[0,75],[1,50],[0,52],[0,46],[0,66],[0,44],[0,32],[1,65],[0,36],[0,33],[0,22],[0,8],[0,26],[0,38],[0,38],[1,66],[1,63],[0,22],[0,23],[1,37],[-1,46],[1,33],[-15,0],[-125,2],[-129,2],[-88,0],[-137,0],[-49,2],[1,32],[1,54],[-2,42],[5,105],[0,55],[1,29],[0,104],[0,6],[0,88],[1,86],[0,128],[1,100],[0,82],[0,35],[2,566],[0,12],[-1,30],[2,30],[0,104],[0,63],[0,128],[0,97],[1,227],[0,127],[0,137],[1,63],[0,25],[0,288],[-18,1],[-125,2],[-68,2],[-99,2],[-110,2],[-29,0],[-77,2]],[[69794,17930],[-4,-205],[-1,-68],[-1,-23],[1,-23],[-1,-24],[0,-23],[-1,-46],[-1,-47],[0,-23],[2,-24],[-4,-88],[-1,-28],[-2,-31],[-10,-256],[-1,-36],[-31,1],[-2,-110],[0,-30],[-1,-39],[-1,-50],[-1,-85],[-2,-104],[-3,-184],[1,-22],[-1,-26],[-1,-26],[0,-35],[-1,-22],[0,-48],[-4,-179],[-1,-47],[-1,-47],[0,-33],[-1,-78],[-1,-46],[-2,-78],[-1,-63],[-1,-34],[0,-24],[-1,-46],[-1,-24],[-3,-124],[-1,-54],[-1,-34],[-1,-44],[-3,-124],[2,-32],[0,-24],[-2,-31],[-2,-28],[0,-37],[-1,-114],[-2,-78],[-2,-156],[0,-2],[-1,-137],[-2,-131],[-1,-79],[-3,-243],[-1,-32],[0,-64],[-2,-107],[-2,-137],[0,-53],[0,-26],[-1,-48],[-3,-164],[-2,-63],[-4,-200],[10,-64],[-4,-117],[-25,-667],[0,-95],[0,-12],[-1,-56],[-6,-175],[-1,-45],[-4,-221],[-2,-134],[-2,-142],[-1,-39],[0,-90],[-1,-36],[0,-62],[-1,-37],[-2,-64],[-2,-94],[-2,-68],[4,-51]],[[69635,10871],[-110,0],[-25,0],[-80,-1],[-52,0],[-39,-1],[-235,-3],[-28,0],[-116,1],[-5,0],[-132,1],[-107,-1],[-76,-1],[-31,0],[-69,0],[-47,0],[-79,1],[-140,-1],[-7,0],[-8,0],[-16,1],[-27,0],[-27,0],[-26,0],[-27,2],[-125,1],[-186,-1],[-31,0],[-133,-1],[-30,0],[-106,0],[-23,0],[-101,-1],[-22,0],[-156,0],[-117,-1],[-96,0],[-19,0],[-312,-2],[-44,0],[-104,0],[-68,0],[-110,-1],[-182,-1],[-48,0],[-102,0],[-3,0],[-68,-1],[-29,0],[-74,0],[-200,-1],[-176,-1],[-29,-2],[-31,1],[-15,1],[-20,-1],[-27,1],[-33,-1],[-17,1],[-16,0],[-20,0],[-15,0],[-17,0],[-20,0],[-22,1],[-18,1],[-19,1],[-27,0],[-27,0],[-26,2],[-20,2],[-54,-2],[-20,1],[-46,2],[-16,1],[-23,0],[-27,1],[-20,-3],[-47,4],[-251,8],[-357,12],[-55,2],[-88,3],[-79,1],[-64,1],[-141,2],[-92,1],[-12,0],[-33,1],[-4,0],[-23,-2],[-25,1],[-25,0],[-16,-1],[-19,2],[-17,1],[-1,0],[-37,2],[-16,0],[-20,0],[-16,0],[-30,-2],[-17,1],[-16,-1],[-16,1],[-30,0],[-24,0],[-27,1],[-32,0],[-34,0],[-27,0],[-26,0],[-33,1],[-21,-1],[-29,1],[-27,0],[-34,0],[-46,0],[-40,0],[-27,0],[-26,0],[-31,1],[-22,-1],[-59,0],[-20,0],[-25,0],[-20,1],[-25,0],[-43,-3],[-77,7],[-4,0],[-13,0],[-16,0],[-16,0],[-17,0],[-21,1],[-24,-3],[-16,-2],[-36,0],[-27,0],[-26,0],[-21,1],[-62,-1],[-112,0],[-32,-3],[-167,3],[-308,2],[-18,0],[-120,1]],[[96586,13777],[-150,24],[-232,-61],[-152,-87],[-107,-110],[-70,-182],[-86,-326],[-80,-488],[-15,-34],[-197,-453],[-11,-24],[-78,-334],[-6,-28],[-12,-63],[-33,-199],[-6,-36],[-17,-100],[-10,-67],[-2,-14],[-8,-66],[-23,-32],[-41,-57],[-22,-140],[-83,-207],[-299,-440],[-86,-76],[-58,-79],[-3,-5],[-6,-3],[-39,-24],[-63,-40],[-238,-6],[-69,32],[-74,48],[-48,53],[-38,73],[-31,122],[-2,59],[11,58],[19,60],[102,323],[8,27],[34,92],[9,11],[71,96],[114,265],[62,322],[-32,250],[-3,24],[-30,102],[-54,181],[-55,94],[-21,34],[-63,107],[-88,37],[-177,73],[-59,24],[-211,55],[-138,36],[-278,-25],[-179,-140],[-171,-321],[10,-225],[46,-202],[30,-131],[101,-208],[263,-544],[50,-73],[201,-293],[41,-92],[8,-90],[-5,-128],[-8,-142],[-24,-108],[-156,-131],[-71,-59],[-19,-40],[-67,-142],[-34,-73],[12,-243],[140,-256],[300,-558],[14,-26],[66,-213],[-55,-328],[-87,-245],[-73,-76],[-111,-118],[-8,-8],[-200,-53]],[[93326,7387],[-37,78],[-21,45],[-61,126],[-10,20],[-130,270],[-44,91],[-27,52],[-47,93],[-16,18],[-17,19],[-10,17],[-27,33],[-16,17],[-16,14],[-25,25],[-49,48],[-28,46],[-10,30],[-11,41],[-13,46],[-19,70],[-12,43],[-11,38],[-42,149],[-7,22],[-23,13],[-124,70],[-44,25],[-51,29],[-33,18],[-15,5],[-18,-10],[-20,-6],[-17,-3],[-16,-5],[-16,-6],[-14,-9],[-15,-12],[-18,-15],[-15,-9],[-15,-13],[-16,-11],[-17,-11],[-22,-7],[-14,-12],[-26,-9],[-19,-7],[-29,-21],[-18,-10],[-16,-10],[-21,-8],[-15,-9],[-15,-8],[-14,-8],[-15,-7],[-24,0],[-29,-14],[-15,-5],[-20,-5],[-18,-2],[-17,2],[-19,3],[-15,-3],[-25,-13],[-17,-2],[-64,1],[-16,-4],[-17,-2],[-16,2],[-17,8],[-15,6],[-16,4],[-25,0],[-20,0],[-17,2],[-25,2],[-25,2],[-19,4],[-15,4],[-15,4],[-16,4],[-16,6],[-16,7],[-14,14],[-12,13],[-14,9],[-16,5],[-14,9],[-14,9],[-14,11],[-13,11],[-13,12],[-14,13],[-13,12],[-20,27],[-16,21],[-11,17],[-5,8],[-6,8],[-10,21],[-8,19],[-12,19],[-11,17],[-9,19],[-7,23],[-13,17],[-15,6],[-16,2],[-21,8],[-4,4],[-38,27],[-8,5],[-32,16],[-63,31],[-152,85],[-3,1],[-17,10],[-37,17],[-58,19],[-26,3],[-18,2],[-4,0],[-13,-1],[-36,-6],[-30,-9],[-4,-1],[-19,-9],[-24,-19],[-2,-2],[-12,-9],[-34,-34],[-4,-8],[-18,-29],[-13,-38],[-7,-50],[-4,-39],[-8,-77],[-2,-16],[3,-95],[4,-35],[-2,-25],[-4,-15],[-6,-10],[-10,-9],[-9,-3],[-6,-2],[-33,0],[-27,0],[-18,-3],[-7,-4],[-1,-1],[-2,0],[-7,-8],[-2,-3],[-4,-6],[-3,-6],[1,-11],[4,-6],[11,-7],[1,0],[14,-4],[20,-5],[7,-3],[1,-1],[1,-1],[9,-13],[2,-3],[13,-25],[4,-19],[-2,-22],[-2,-21],[-11,-62],[-31,-117],[-6,-6],[-16,-13],[-20,-15],[-13,-5],[-18,-3],[-16,6],[-16,13],[-8,10],[-10,15],[-11,23],[-8,15],[-9,8],[-37,17],[-17,6],[-13,0],[-3,-1],[-16,-62],[-6,-17],[-60,0],[-21,3],[-31,0],[-23,0],[-16,0],[-29,0],[-21,0],[-15,0],[-140,-3],[-30,0],[-58,-1],[-21,1],[-21,2],[-66,-4],[-54,13],[-136,4],[-23,0],[-46,0],[-27,-1],[-65,0],[-67,0],[-43,0],[-65,0],[-42,0],[-30,0],[-38,-1],[-46,0],[-44,0],[-29,0],[-55,0],[-49,0],[-65,0],[-17,0],[-28,0],[-36,1],[-28,1],[-18,0],[-21,0],[-21,-2],[-23,0],[-25,-1],[-21,0],[-9,-1],[-100,-3],[-74,-1],[-7,0],[-31,3],[-53,0],[-67,-1],[-62,1],[-48,0],[-10,0],[-42,3],[-53,3],[-41,3],[-18,1],[-47,4],[-40,3],[-68,6],[-1,0],[-20,0],[-53,0],[-1,0],[-71,-1],[-55,7],[-72,7],[-15,4],[-35,4],[-85,7]],[[87092,8513],[-29,3],[-22,3],[-16,2],[-29,4],[-23,3],[-29,2],[-17,0],[5,27],[10,50],[6,41],[9,46],[19,56],[15,43],[1,33],[-3,27],[7,40],[13,38],[25,26],[17,30],[7,36],[-2,27],[-14,19],[-22,29],[2,35],[10,42],[5,63],[14,60],[13,61],[-1,61],[-2,52],[10,47],[14,53],[-5,48],[-5,52],[13,36],[22,31],[13,25],[5,23],[-3,31],[8,40],[8,47],[8,39],[1,1],[4,64],[-2,29],[-28,60],[-23,28],[-2,75],[12,44],[8,19],[13,26],[12,24],[2,35],[-6,34],[3,48],[8,40],[11,30],[-1,34],[-8,40],[-5,34],[-1,39],[-1,25],[-3,35],[1,22],[2,23],[1,22],[-5,39],[-12,28],[-17,38],[-12,35],[16,35],[-2,45],[2,23],[12,18],[-2,89],[0,69],[0,58],[-9,22],[-7,33],[-4,34],[0,38],[18,59],[-6,39],[-12,32],[7,57],[13,40],[10,19],[17,24],[10,28],[-6,28],[-9,18],[2,24],[8,27],[-5,38],[34,53],[8,22],[7,22],[4,43],[-1,44],[-31,71],[-1,14],[-3,37],[-4,23],[-4,26],[1,31],[-5,24],[1,16],[0,6],[5,29],[-4,31],[-5,34],[-2,36],[-3,80],[-1,35],[0,40],[-4,46],[-4,80],[-11,42],[16,60],[-5,75],[-13,28],[-15,84],[-9,48],[-17,26],[-5,33],[-6,25],[-11,27],[0,44],[7,49],[-2,30],[3,22],[5,25],[-2,35],[-6,35],[-14,34],[7,27],[5,23],[-9,35],[1,46],[-3,27],[4,26],[-1,68],[13,26],[56,66]],[[77880,10889],[-23,-2],[-114,1],[-90,0],[-44,-1],[-81,0],[-86,0],[-39,0],[-24,1],[-44,1],[-64,-1],[-72,-2],[-52,2],[-213,0],[-137,-1],[-71,1],[-92,1],[-2,0],[-244,0],[-258,-1],[-74,0],[-63,-5],[-99,1],[-37,0],[-53,1],[-87,3],[-87,3],[-39,1],[-186,0],[-88,0],[-42,0],[-137,-6],[-97,2],[-135,0],[-64,1],[-23,0],[-37,0],[-21,0],[-17,0],[-14,0],[-16,0],[-16,1],[-6,0],[-20,0],[-171,2],[-4,0],[-15,0],[-51,0],[-178,0],[-246,-1],[-46,-1],[-21,0],[-1,0],[-29,0],[-138,-1],[-63,-2],[-42,-1],[-95,-2],[-42,-1],[-50,-1],[-16,-1],[-27,0],[-15,-2],[-20,5],[-26,3],[-36,-1],[-143,-1],[-38,0],[-205,0],[-39,0],[-77,0],[-51,1],[-134,0],[-5,0],[-44,0],[-53,1],[-127,0],[-56,0],[-66,0],[-104,0],[-57,0],[-20,0],[-37,-1],[-136,0],[-55,0],[-81,-1],[-93,0],[-56,0],[-62,-1],[-30,0],[-42,0],[-21,0],[-57,-1],[-48,0],[-81,-1],[-42,-1],[-18,-2],[-84,-1],[-206,0],[-141,-1],[-49,0],[-44,0],[-27,0],[-32,-1],[-172,-1],[-72,-1],[-21,0],[-185,0],[-64,0],[-20,0],[-56,1],[-83,-1],[-84,0],[-27,0],[-239,-3],[-21,0]],[[45091,17549],[-1,-56],[-2,-88],[-2,-74],[-3,-159],[-2,-73],[0,-24],[-1,-24],[0,-32],[-1,-127],[-1,-35],[-1,-84],[-2,-103],[-3,-134],[-1,-74],[-1,-54],[-2,-108],[-3,-160],[-1,-73],[0,-29],[-1,-50],[-1,-126],[0,-27],[-2,-102],[-1,-59],[-1,-115],[0,-40],[-3,-80],[2,-140],[-10,-301],[1,-91],[-1,-77],[-2,-138],[-1,-46],[-1,-49],[0,-29],[-4,-229],[-2,-85],[-4,-290],[0,-27],[-2,-78],[-4,-157],[-1,-68],[-2,-80],[0,-32],[-1,-61],[-1,-78],[0,-50],[0,-30],[-3,-109],[0,-36],[-3,-97],[-1,-50],[0,-28],[-1,-67],[-2,-75],[-1,-99],[-1,-72],[-2,-156],[0,-5],[-1,-31],[-1,-40],[0,-22],[-1,-63],[-1,-55],[0,-25],[-3,-147],[0,-22],[-1,-67],[-2,-81],[-3,-77],[-4,-131],[-1,-27],[0,-59],[0,-36],[-1,-97],[0,-26],[0,-65],[0,-17],[0,-13],[-1,-41],[-1,-49],[-1,-68],[-1,-68],[-1,-36],[-1,-37],[-1,-64],[0,-16],[-1,-5],[-1,-99],[-1,-37],[0,-18]],[[44979,10870],[-22,0],[-21,0],[-51,0],[-52,0],[-3,0],[-19,0],[-22,0],[-45,0],[-26,0],[-5,0],[-23,0],[-74,0],[-17,0],[-24,0],[-50,1],[-3,0],[-36,1],[-50,1],[-70,1],[-24,0],[-39,0],[-119,-1],[-20,1],[-72,0],[-44,0],[-69,0],[-208,0],[-16,0],[-81,0],[-47,0],[-19,1],[-55,0],[-24,0],[-13,0],[-25,0],[-71,1],[-47,0],[-16,0],[-34,0],[-16,0],[-30,0],[-15,0],[-61,-1],[-25,0],[-15,0],[-17,0],[-20,0],[-35,0],[-105,-1],[-38,0],[-29,0],[-31,0],[-25,0],[-1,0],[-40,0],[-115,1],[-38,0],[-42,1],[-20,0],[-57,0],[-8,0],[-14,0],[-23,1],[-67,0],[-24,0],[-19,-1],[-27,0],[-22,1],[-61,0],[-124,-1],[-15,0],[-37,0],[-2,0],[-53,0],[-5,0],[-13,0],[-21,0],[-16,0],[-2,0],[-54,-1],[-17,0],[-50,0],[-65,0],[-3,0],[-28,0],[-28,0],[-16,0],[-12,0],[-19,0],[-47,1],[-16,0],[-31,0],[-79,1],[-69,1],[-16,0],[-34,1],[-6,0],[-42,0],[-6,0],[-10,0],[-21,0],[-21,0],[-115,0],[-133,-2],[-35,0],[-106,-1],[-36,0],[-19,-1],[-52,1],[-82,0],[-70,1],[-66,0],[-55,1],[-15,4],[-18,-2],[-18,-1],[-17,-1],[-18,1],[-16,0],[-17,0],[-16,0],[-17,0],[-18,0],[-17,0],[-17,-1],[-16,0],[-15,0],[-19,0],[-16,0],[-18,-1],[-17,2],[-50,0],[-65,0],[-157,-1],[-180,-1],[-98,0],[-121,0],[-38,0],[-145,0],[-29,0],[-28,1],[-16,0],[-64,0],[-29,0],[-39,0],[-26,0],[-67,1],[-37,0],[-105,0],[-23,1],[-48,0],[-92,0],[-90,1],[-48,1],[-37,0],[-81,2],[-20,0],[-67,-1],[-6,0],[-10,0],[-29,0],[-34,0],[-39,-1],[-25,-1],[-33,-1],[-10,0],[-21,0],[-69,2],[-67,1],[-50,1],[-16,0],[-75,2],[-44,0],[-45,0],[-214,1],[-62,-1],[-76,0],[-123,-1],[-55,-1],[-115,0],[-15,0],[-4,0],[-21,-1],[-1,0],[-28,0],[-16,0],[-42,0],[-12,0],[-2,0],[-11,0],[-2,-1],[-122,0],[-21,0],[-15,0],[-57,-2]],[[54746,10896],[-72,0],[-32,0],[-52,1],[-78,-2],[-26,-2],[-16,0],[-1,0],[-21,-1],[-5,0],[-145,-1],[-171,-2],[-58,0],[-52,0],[-183,-1],[-72,-1],[-20,-1],[-172,-1],[-7,0],[-43,1],[-138,0],[-40,-1],[-34,1],[-168,-2],[-147,-2],[-191,0],[-35,-1],[-24,-1],[-15,-1],[-33,0],[-32,-1],[-3,0],[-39,0],[-5,0],[-19,1],[-95,-1],[-124,-1],[-29,0],[-57,-1],[-102,-1],[-180,0],[-77,0],[-25,-2],[-129,-2],[-88,0],[-152,1],[-40,0],[-3,0],[-41,0],[-153,1],[-53,-5],[-33,-1],[-76,-4],[-110,-1],[-27,-1],[-74,-1],[-50,3],[-16,2],[-53,3],[-27,6],[-229,1],[-144,0],[-40,0],[-93,0],[-34,1],[-82,3],[-83,3],[-32,1],[-150,6],[-23,-1],[-33,1],[-196,3],[-49,0],[-260,-2],[-16,0],[-2,0],[-143,-1],[-58,-1],[-59,2],[-29,1],[-30,0],[-25,0],[-87,1],[-59,1],[-20,0],[-97,-1],[-87,-2],[-122,0],[-173,-3],[-23,0],[-143,-3],[-65,-1],[-179,0],[-245,-1],[-58,-1],[-79,1],[-74,1],[-82,-1],[-8,0],[-47,0],[-24,0],[-24,0],[-93,-2],[-82,1],[-10,0],[-61,0],[-29,0],[-16,0],[-27,0],[-52,-2],[-123,0],[-131,1],[-24,0],[-190,-1],[-184,-1],[-67,0],[-25,0],[-23,0],[-67,0],[-66,0],[-70,0],[-132,0],[-18,0],[-80,0],[-60,0],[-63,0],[-23,0],[-24,-1],[-11,0],[-20,-1],[-33,0],[-5,0],[-39,-1],[-55,0],[-62,1],[-53,1],[-17,-1],[-19,0],[-20,0],[-25,-1],[-11,0],[-36,0],[-22,0],[-109,-4],[-21,-1]],[[25432,10893],[-13,0],[-82,0],[-31,-1],[-124,0],[-20,0],[-52,0],[-26,0],[-25,1],[-119,-3],[-23,0],[-39,1],[-29,0],[-137,1],[-260,-1],[-22,1],[-18,0],[-167,1],[-253,1],[-24,0],[-99,1],[-40,1],[-42,1],[-142,1],[-132,1],[-22,0],[-68,0],[-31,0],[-106,1],[-59,1],[-86,0],[-29,0],[-221,2],[-28,0],[-24,-1],[-75,0],[-84,0],[-58,1],[-29,0],[-33,0],[-5,0],[-30,0],[-25,0],[-5,0],[-44,2],[-2,0],[-21,0],[-37,0],[-64,0],[-34,0],[-44,0],[-30,0],[-324,2],[-58,1],[-182,1],[-67,0],[-84,1],[-68,0],[-25,0],[-27,0],[-97,1],[-111,1],[-49,0],[-161,0],[-28,-1],[-40,0],[-58,-2],[-29,-4],[-17,2],[-46,0],[-240,0],[-44,1],[-103,2],[-313,-4],[-63,-1],[-52,0],[-48,-1],[-78,0],[-66,-1],[-268,-2],[-14,0],[-16,0],[-14,0],[-32,-1],[-15,0],[-249,-2],[-40,1],[-87,2],[-202,3],[-65,-2],[-66,2],[-87,1],[-48,0],[-75,1],[-110,1],[-33,1],[-41,0],[-52,0],[-19,2],[-524,-1],[-22,0],[-4,0],[-62,0],[-56,0],[-32,0],[-174,-1],[-4,0],[1,35],[0,151],[0,31],[0,61],[0,59],[1,29],[-1,32],[0,43],[-1,96],[0,2],[-1,181],[0,35],[2,39],[-1,40],[1,187],[0,23],[0,32],[0,145],[-1,281],[2,194],[0,126],[0,84],[0,34],[0,100],[-1,94],[0,7],[0,18],[0,40],[-1,31],[1,96],[1,125],[0,269],[1,11],[-2,172],[0,117],[-1,189],[-1,18],[0,82],[0,21],[0,24],[0,2],[-1,119],[0,40],[0,33],[0,25],[0,75],[0,34],[0,82],[0,22],[0,25],[-1,91],[0,65],[0,407],[0,86],[-1,69],[0,176],[-1,330],[0,39],[0,87],[-3,267],[1,145],[1,187],[0,25]],[[87092,8513],[0,-47],[0,-42],[0,-69],[-1,-115],[1,-44],[0,-78],[2,-80],[0,-11],[0,-30],[0,-38],[0,-29],[0,-25],[0,-37],[0,-147],[1,-67],[1,-101],[1,-55],[1,-94],[0,-27],[-1,-70],[0,-60],[0,-166],[0,-93],[1,-61],[0,-34],[1,-35],[0,-37],[0,-45],[-5,-117],[-1,-30],[-1,-22],[-3,-78],[-3,-70],[0,-31],[2,-287],[0,-31],[0,-58],[0,-92],[0,-56],[0,-22],[0,-29],[0,-3],[1,-45],[0,-39],[-1,-28],[1,-38],[1,-58],[0,-5],[0,-22],[0,-34],[-1,-41],[0,-32],[0,-4],[0,-21],[0,-32],[0,-22],[0,-29],[1,-69],[0,-39],[0,-23],[0,-34],[1,-43],[0,-5],[0,-17],[1,-55],[1,-38],[0,-26],[1,-27],[0,-35],[1,-44],[0,-24],[1,-45],[1,-23],[2,-90],[1,-72],[2,-82],[1,-58],[1,-39],[1,-39],[1,-79],[1,-57],[1,-28],[1,-34],[1,-45],[0,-22],[1,-23],[0,-36],[1,-25],[0,-23],[1,-28],[0,-32],[1,-24],[1,-34],[1,-78],[1,-68],[1,-26],[0,-3],[0,-20],[0,-43],[1,-82],[1,-77],[0,-43],[0,-44],[1,-23],[2,-23],[9,-23],[-1,-22],[0,-23],[-6,-50],[-2,-22],[-8,-42],[0,-26],[1,-53],[0,-44],[0,-32],[1,-44],[1,-86],[0,-32],[1,-44],[0,-56],[0,-51],[0,-51],[0,-50],[0,-34],[0,-22],[0,-22],[0,-55],[0,-37],[0,-49],[0,-45],[0,-40],[0,-25],[0,-40],[0,-25],[0,-46],[0,-43],[0,-30],[0,-55],[1,-94],[0,-24],[0,-32],[0,-47],[0,-34],[0,-28],[0,-24],[1,-22],[0,-86],[0,-39],[0,-35],[0,-27],[1,-115],[0,-44],[0,-29],[0,-38],[0,-25],[0,-60],[0,-26],[0,-78],[0,-23],[1,-27],[0,-29],[0,-23],[0,-30],[0,-32],[0,-44],[0,-36],[0,-45],[0,-34],[0,-40],[0,-46],[0,-42],[0,-30],[0,-29],[0,-53],[0,-25],[1,-79],[0,-26],[0,-22],[0,-40],[0,-25],[0,-2],[0,-20],[-1,-51],[1,-60],[0,-26],[0,-54],[0,-44],[-3,-88],[0,-9],[0,-18]],[[87121,75],[-22,3],[-15,-4],[-27,0],[-19,-1],[-1,-1],[-48,1],[-20,0],[-41,1],[-350,-1],[-7,0],[-58,0],[-1,0],[-127,-2],[-199,-2],[-166,-2],[-322,-6],[-7,0],[-36,0],[-70,-1],[-95,-2],[-157,-2],[-29,0],[-127,-1],[-11,0],[-7,0],[-203,-2],[-66,-1],[-112,-3],[-19,0],[-18,-1],[-7,0],[-2,0],[-3,0],[-4,0],[-15,-1],[-31,0],[-30,0],[-11,-1],[-24,2],[-15,-1],[-20,0],[-24,0],[-29,-1],[-37,-1],[-36,0],[-28,0],[-43,-1],[-28,0],[-31,-1],[-22,0],[-34,-1],[-32,0],[-35,0],[-17,0],[-20,-1],[-19,0],[-15,0],[-5,-1],[-19,0],[-37,0],[-18,-1],[-23,0],[-18,0],[-23,0],[-33,-1],[-25,0],[-27,-1],[-44,-1],[-66,0],[-21,-1],[-45,0],[-21,0],[-16,0],[-21,-1],[-4,0],[-13,0],[-16,0],[-32,-1],[-19,0],[-23,-1],[-17,0],[-30,-1],[-50,0],[-82,0],[-26,0],[-33,-1],[-22,0],[-78,-1],[-33,-1],[-19,0],[-46,0],[-50,0],[-33,-1],[-42,-1],[-92,-1],[-8,0],[-8,0],[-32,-1],[-19,0],[-41,0],[-7,0],[-21,-1],[-29,0],[-52,-1],[-48,0],[-18,-1],[-23,0],[-19,0],[-21,-1],[-35,-1],[-21,0],[-26,0],[-21,0],[-34,-1],[-27,0],[-214,-2],[-58,-1],[-71,-1],[-4,0],[-33,0],[-23,0],[-45,-1],[-16,0],[-18,0],[-59,0],[-127,-2],[-112,-1],[-18,0],[-18,-1],[-89,-1],[-70,-2],[-19,0],[-26,-1],[-198,-2],[-77,0],[-73,-2],[-39,-1],[-17,2],[-4,0],[-11,0],[-20,0],[-37,-1],[-8,-1],[-42,0],[16,25],[13,28],[13,25],[10,15],[12,17],[12,35],[18,37],[17,39],[9,21],[22,54],[36,42],[20,37],[2,3],[8,20],[12,12],[21,16],[10,20],[11,19],[16,17],[19,-2],[18,17],[9,31],[10,27],[8,19],[17,29],[15,20],[17,14],[2,21],[4,26],[-13,28],[-20,7],[-9,20],[6,24],[18,4],[19,-1],[8,20],[7,27],[16,12],[13,30],[-6,25],[-4,32],[-4,22],[4,25],[20,41],[16,1],[16,17],[15,6],[17,8],[-3,27],[4,6],[5,12],[14,17],[14,14],[2,1],[-1,4],[3,-3],[31,-37],[28,39],[12,19],[1,20],[5,69],[4,24],[25,58],[1,2],[7,36],[-14,14],[-13,18],[-14,17],[7,32],[13,26],[-3,26],[9,25],[7,32],[7,25],[17,4],[47,17],[23,7],[16,19],[13,12],[16,14],[17,16],[67,67],[10,25],[0,22],[-6,20],[2,27],[-9,22],[-14,14],[0,24],[3,25],[15,34],[-10,34],[-17,21],[6,21],[8,23],[9,20],[17,13],[24,0],[9,17],[12,19],[18,22],[16,17],[22,13],[17,-2],[17,2],[16,-3],[15,5],[28,14],[19,17],[13,12],[35,16],[10,21],[-1,33],[9,26],[10,23],[12,20],[1,36],[-8,26],[8,35],[13,15],[12,23],[18,3],[17,8],[-1,27],[-17,35],[13,19],[19,18],[34,4],[18,6],[13,11],[15,7],[20,-5],[15,2],[23,7],[15,9],[15,8],[17,-1],[16,11],[16,5],[19,3],[17,-10],[16,-2],[18,-6],[15,19],[9,15],[3,5],[16,3],[20,6],[18,11],[15,8],[15,10],[12,23],[9,18],[8,18],[2,3],[14,24],[12,17],[12,14],[10,24],[14,12],[14,4],[2,0],[1,1],[3,-3],[14,-8],[14,1],[5,1],[3,-3],[27,-36],[6,-7],[8,10],[67,85],[4,-4],[12,6],[36,23],[24,22],[41,47],[46,59],[27,64],[8,0],[6,0],[0,12],[-1,25],[0,4],[2,11],[8,49],[3,19],[1,4],[5,5],[22,7],[11,7],[8,13],[2,10],[2,4],[-1,121],[0,21],[-3,4],[-8,2],[-1,0],[-5,3],[-5,3],[-8,12],[0,8],[1,2],[8,15],[-16,49],[6,49],[9,28],[17,19],[11,11],[3,9],[16,71],[-1,12],[-9,24],[-1,17],[123,242],[25,75],[22,2],[30,-11],[5,-1],[10,-3],[32,-9],[4,-1],[6,-2],[31,-2],[10,8],[13,23],[25,27],[31,18],[26,2],[-2,10],[57,113],[52,83],[3,5],[15,26],[37,63],[0,1],[7,1],[19,10],[6,1],[17,9],[0,2],[2,1],[5,10],[18,44],[4,24],[1,5],[1,0],[26,-13],[5,-1],[4,-1],[3,1],[36,8],[5,1],[7,6],[0,1],[2,8],[2,5],[41,40],[2,2],[33,20],[48,28],[1,0],[7,2],[4,4],[29,33],[10,15],[8,30],[5,1],[1,0],[57,8],[44,12],[3,-1],[77,-25],[3,-1],[6,-3],[10,1],[17,13],[38,28],[5,8],[5,23],[6,47],[35,51],[1,2],[101,127],[9,0],[52,-6],[2,0],[31,-13],[19,-5],[25,2],[10,-1],[1,1],[7,10],[3,17],[2,13],[4,4],[3,5],[17,10],[10,0],[36,1],[1,0],[6,2],[10,50],[9,47],[-1,32],[-1,29],[-2,58],[-36,-1],[-26,-1],[-5,19],[-11,43],[4,16],[9,8],[12,1],[2,0],[40,3],[3,0],[1,0],[21,17],[12,26],[8,18],[18,38],[55,119],[33,177],[15,76],[1,9],[30,22],[39,9],[7,-2],[66,-1],[4,0],[74,45],[1,1],[36,21],[46,27],[3,2],[49,-1],[36,3],[5,0],[31,3],[30,9],[11,8],[24,39],[2,5],[73,123],[16,28],[2,3],[-3,10],[-1,4],[-15,63],[-8,32],[-2,9],[-11,48],[-3,12],[-2,8],[14,5],[19,7],[26,10],[9,5],[3,1],[29,31],[5,6],[6,7],[21,29],[4,12],[-2,17],[0,4],[-1,24],[1,3],[4,12],[12,20],[25,19],[19,22],[8,8],[8,12],[4,6],[6,14],[4,8],[-2,12],[-3,4],[-31,39],[-7,10],[-1,7],[-8,31],[-3,14],[-4,17],[-6,42],[-5,20],[-10,23],[-76,96],[-7,9],[-2,2],[-23,24],[-5,3],[-7,-1],[-4,-3],[-14,-11],[-8,-6],[-9,0],[-5,5],[-24,55],[-3,7],[-3,13],[6,14],[15,40],[54,134],[21,71],[1,15],[-6,9],[-4,3],[-28,17],[-3,9],[-1,17],[0,4],[3,16],[1,5],[13,63],[5,5],[9,0],[2,1],[11,2],[5,1],[8,9],[1,1],[1,3],[2,6],[2,5],[-3,26],[-6,15],[-39,70],[-6,10],[-2,12],[2,10],[2,3],[11,2],[13,3],[4,1],[5,5],[21,42],[24,42],[25,45],[2,1],[3,4],[31,32],[25,22],[5,11],[1,18],[-6,23],[-1,12],[0,1],[0,5],[11,48],[0,2],[7,23],[15,52],[14,90],[-3,37],[-3,40],[-11,34],[-2,5],[-16,10],[-6,3],[-4,5],[-1,8],[21,55],[11,23],[9,14],[8,13],[3,9],[-2,10],[-6,6],[-25,7],[-17,2],[-6,1],[-17,6],[-4,7],[-8,59],[-1,8],[-5,26],[-6,29],[-8,31],[-6,18],[-2,2],[-2,2],[-88,48],[-19,12],[-4,3],[0,8],[-1,20],[-6,27],[-14,25],[-12,11],[-20,10],[-152,49],[-36,10],[-26,-8],[-29,11],[-8,0],[-13,-14],[-9,-10],[-12,-15],[-10,-3],[-4,1],[-2,2],[-12,18],[-9,24],[-11,23],[-2,2],[-5,3],[-10,-2],[-8,-8],[-8,-7],[-11,-7],[-9,-6],[-17,-3],[-12,2],[-15,7],[-68,33],[-3,2],[-3,3],[-2,1],[-2,7],[-2,37],[-1,0],[-15,12],[-12,9],[-12,10],[-3,2],[-41,25],[-21,0],[-34,3],[-45,6],[-5,4],[-4,3],[-3,10],[4,15],[12,19],[14,22],[5,17],[-1,13],[-8,11],[-8,4],[-11,0],[-11,-6],[-1,-2],[-15,-19],[-10,-9],[-2,-2],[-30,-17],[-29,-12],[-20,-3],[-23,2],[-7,4],[-3,2],[0,2],[-1,6],[-1,5],[5,5],[23,7],[7,4],[1,1],[14,17],[6,17],[2,17],[8,111],[-4,9],[-4,0],[-7,-4],[-5,-3],[-9,-15],[-12,-16],[-8,-4],[-1,-1],[-3,-1],[-7,0],[-6,0],[-3,0],[-10,5],[-6,7],[-20,20],[-38,38],[-2,8],[-2,4],[0,6],[-1,12],[2,27],[3,31],[6,30],[4,16],[0,4],[6,8],[6,2],[7,3],[60,44],[2,1],[33,39],[5,6],[7,6],[4,6],[2,4],[3,6],[2,29],[-1,11],[-2,14],[0,2],[-1,2],[-6,19],[-1,6],[-17,37],[-3,18],[0,5],[-4,63],[-1,15],[2,19],[-10,37],[-2,5],[0,3],[0,3],[1,4],[3,8],[58,46],[-26,48],[-28,49],[-26,47],[-28,-26],[-22,60],[18,61],[0,15],[-1,5],[-3,22],[-1,6],[-23,137],[-14,63],[0,3],[-1,4],[-6,14],[-14,7],[-4,-1],[-37,-2],[-14,0],[-6,2],[-21,8],[-18,8],[-83,36],[-6,3],[-22,14],[-2,2],[-1,1],[-7,10],[-3,12],[-1,3],[1,3],[1,7],[0,3],[18,23],[4,6],[7,11],[6,24],[12,74],[4,32],[2,50],[6,11],[20,17],[14,11],[1,4],[2,6],[-5,15],[-7,19],[-5,14],[-9,21],[-3,22],[-4,0],[-143,-1],[-66,0],[-70,-1],[-99,0],[-29,-1],[-18,0],[-155,1],[-20,0],[-27,0],[-35,1],[-42,-1],[-45,1],[-31,0],[-26,0],[-26,-1],[-31,-1],[-18,0],[-28,0],[-20,0],[-52,0]],[[93326,7387],[-546,120],[-128,6],[-155,8],[-62,-33],[-103,-56],[-27,-15],[-18,-35],[-38,-73],[-41,-79],[103,-414],[265,-226],[81,-69],[269,-147],[82,-45],[271,-148],[132,-81],[28,-71],[32,-77],[12,-344],[-91,-122],[-150,-4],[-132,47],[-2,1],[-178,-22],[-97,-12],[-79,-9],[-355,-43],[-280,130],[-107,50],[-193,-49],[-105,-27],[-191,-49],[-70,42],[-105,63],[-270,-37],[-114,-180],[-41,-137],[57,-100],[116,-122],[222,-234],[101,-106],[73,-77],[262,-228],[133,-118],[176,-157],[222,-176],[207,-275],[32,-88],[31,-35],[18,-39],[16,-35],[12,-32],[11,-41],[-1,-25],[-1,-26],[17,-45],[-26,-423],[-99,-157],[-5,-8],[-9,-6],[-144,-98],[-17,-12],[-14,-11],[-184,-141],[-30,-11],[-239,-87],[-353,-169],[-88,-86],[-95,-156],[-47,-266],[-33,-306],[-66,-627],[-71,-150],[-117,-250],[-19,-36],[-30,-57],[-35,-100],[-86,-2],[-118,-4],[-516,-17],[-130,-1],[-158,-1],[-43,-1],[-37,-1],[-22,0],[-34,0],[-60,-1],[-26,-1],[-47,0],[-41,-1],[-28,0],[-23,0],[-81,-2],[-37,-1],[-40,0],[-40,0],[-47,-1],[-19,0],[-17,0],[-11,0],[-49,0],[-31,-1],[-27,-1],[-94,0],[-36,-1],[-24,0],[-102,-2],[-29,0],[-26,-1],[-46,0],[-24,0],[-13,-1],[-38,0],[-24,0],[-49,-1],[-22,-1],[-36,0],[-57,-1],[-38,0],[-48,-1],[-41,-5],[-3,1],[-13,3],[-36,0],[-29,-1],[-82,-1],[-29,0],[-23,-1],[-18,0],[-50,0],[-48,-2],[-21,-2],[-36,-1],[-2,0],[-32,3],[-36,0],[-39,0],[-3,0],[-33,0],[-26,-1],[-37,-1],[-18,0],[-81,-1],[-44,-1],[-18,0],[-40,0],[-44,0],[-15,0],[-45,0],[-49,0],[-38,-1],[-81,-1],[-119,-1],[-82,-1]]],"transform":{"scale":[0.0000667501490314909,0.0000461800240702405],"translate":[-95.77469620999995,35.995676355000114]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ms-counties.json b/src/js/config/mapconfig/mapfiles/county/ms-counties.json new file mode 100644 index 00000000..a26966d0 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ms-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-91.65490100099993,30.17582385300011,-88.09788278599984,34.99570049900018],"geometries":[{"type":"Polygon","properties":{"name":"MS"},"id":"28003","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28141","arcs":[[4,5,-4,6]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28139","arcs":[[7,8,9,10,-2]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28033","arcs":[[11,12,13,14]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28009","arcs":[[15,16,17,-10]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28093","arcs":[[18,19,20,-15,21,-17]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28143","arcs":[[-13,22,23,24,25,26]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28137","arcs":[[-21,27,28,-23,-12]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28117","arcs":[[-6,29,30,31,-8,-1]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28145","arcs":[[-32,32,33,34,-19,-16,-9]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28071","arcs":[[-35,35,36,37,38,-28,-20]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28107","arcs":[[-39,39,40,41,-24,-29]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28027","arcs":[[42,43,44,45,-26,46]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28119","arcs":[[-42,47,-47,-25]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28081","arcs":[[48,49,50,51,-33,-31]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28057","arcs":[[-5,52,53,-49,-30]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28115","arcs":[[-52,54,55,-36,-34]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28161","arcs":[[56,57,58,-40,-38]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28135","arcs":[[-59,59,60,61,-43,-48,-41]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28013","arcs":[[-56,62,63,64,-57,-37]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28011","arcs":[[65,66,67,-45]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28095","arcs":[[-54,68,69,70,71,-50]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28017","arcs":[[-51,-72,72,73,-63,-55]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28133","arcs":[[-62,74,75,76,-66,-44]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28043","arcs":[[-65,77,78,79,80,-60,-58]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28083","arcs":[[-81,81,82,83,-75,-61]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28025","arcs":[[-71,84,85,86,-73]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28087","arcs":[[87,88,89,-85,-70]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28155","arcs":[[-87,90,91,92,-78,-64,-74]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28097","arcs":[[-93,93,94,95,-79]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28015","arcs":[[-96,96,97,-82,-80]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28105","arcs":[[-90,98,99,100,-91,-86]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28019","arcs":[[-101,101,102,-94,-92]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28151","arcs":[[-77,103,104,105,106,-67]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28051","arcs":[[-98,107,108,109,-83]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28053","arcs":[[-84,-110,110,111,-104,-76]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28103","arcs":[[112,113,114,-99,-89]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28159","arcs":[[-115,115,116,117,-102,-100]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28007","arcs":[[-118,118,119,-108,-97,-95,-103]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28125","arcs":[[-112,120,121,-105]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28163","arcs":[[122,123,124,125,-121,-111,-109]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28055","arcs":[[-122,-126,126,127,-106]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28099","arcs":[[128,129,130,-117]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28079","arcs":[[-131,131,132,133,-119]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28069","arcs":[[134,135,-129,-116,-114]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28089","arcs":[[-134,136,137,138,-123,-120]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28123","arcs":[[-133,139,140,141,-137]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28149","arcs":[[142,143,144,-127,-125]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28121","arcs":[[-142,145,146,147,-138]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28075","arcs":[[148,149,150,-136]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28101","arcs":[[-151,151,-140,-132,-130]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28049","arcs":[[-148,152,153,-143,-124,-139]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28023","arcs":[[154,155,156,-150]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28021","arcs":[[-154,157,158,159,-144]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28061","arcs":[[-157,160,161,162,-152]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28129","arcs":[[-163,163,164,165,-146,-141]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28029","arcs":[[166,167,168,169,-158,-153]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28127","arcs":[[-166,170,171,172,-167,-147]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28153","arcs":[[173,174,175,-161,-156,176]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28063","arcs":[[-170,177,178,179,180,-159]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28067","arcs":[[181,182,183,-164,-162,-176]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28031","arcs":[[-184,184,185,186,-171,-165]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28065","arcs":[[187,188,189,-172,-187]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28077","arcs":[[190,191,192,-168,-173,-190]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28001","arcs":[[193,194,195,-180]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28085","arcs":[[196,197,198,199,-178,-169,-193]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28037","arcs":[[-200,200,201,-194,-179]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28041","arcs":[[202,203,204,-174]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28035","arcs":[[205,206,207,208,-185,-183]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28073","arcs":[[-186,-209,209,210,-188]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28111","arcs":[[-175,-205,211,212,-206,-182]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28091","arcs":[[-211,213,214,215,-191,-189]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28157","arcs":[[-202,216,217,-195]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28005","arcs":[[-199,218,219,-217,-201]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28113","arcs":[[220,221,-219,-198]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28147","arcs":[[-216,222,-221,-197,-192]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28109","arcs":[[-208,223,224,225,-214,-210]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28039","arcs":[[226,227,228,-212,-204]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28131","arcs":[[-229,229,230,-224,-207,-213]]},{"type":"MultiPolygon","properties":{"name":"MS"},"id":"28059","arcs":[[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238,239,-230,-228]]]},{"type":"MultiPolygon","properties":{"name":"MS"},"id":"28047","arcs":[[[240]],[[241]],[[242]],[[243]],[[244]],[[-240,245,246,-231]]]},{"type":"Polygon","properties":{"name":"MS"},"id":"28045","arcs":[[-247,247,-225]]}]},"states":{"type":"GeometryCollection","bbox":[-91.65490100099993,30.17582385300011,-88.09788278599984,34.99570049900018],"geometries":[{"type":"MultiPolygon","properties":{"name":"Mississippi"},"id":"28","arcs":[[[231]],[[240]],[[241]],[[242]],[[243]],[[232]],[[233]],[[234]],[[235]],[[236]],[[244]],[[237]],[[6,52,68,87,112,134,148,154,176,202,226,238,245,247,225,214,222,221,219,217,195,180,159,144,127,106,67,45,26,13,21,17,10,2]]]}]}},"arcs":[[[92465,95018],[-110,1],[-36,0],[-59,0],[-53,1],[-78,0],[-208,-1],[-167,0],[-29,0],[-333,1],[-214,0],[-128,0],[-197,0],[-99,0],[-66,0],[-85,0],[-372,1],[-260,0],[-103,0],[-331,2],[-46,0],[-106,0],[-169,1],[-97,0],[-77,0],[-83,0],[-69,0],[-54,0],[-90,0],[-64,-1],[-85,0],[-216,2],[-103,-1],[-46,0],[-4,0],[-241,0],[-28,0],[-5,0],[-462,3],[-74,1],[-29,-2],[-221,1],[-138,1],[-19,-1],[-10,-1],[-309,0],[-442,1],[-100,1],[-143,0],[-245,3],[-29,-3],[-344,-1],[-175,5],[-35,1],[-161,1],[-245,1],[-143,2],[-260,1],[-94,-2],[-224,1],[-132,0],[-296,1],[-114,4],[-104,0],[-247,-1],[-115,0],[-65,0],[-254,0],[-174,1]],[[82551,95042],[-237,1],[-71,-1],[-145,0],[-116,1],[-170,0],[-147,3],[-85,0],[0,44],[0,197],[0,46],[0,319],[0,104],[1,138],[0,86],[1,211],[0,42],[0,26],[0,407],[1,154],[0,76],[0,26],[0,236],[-152,0],[-131,0],[-274,0],[-14,0],[-210,0],[-83,0],[-266,0],[-31,0],[-87,0],[-156,-1],[-219,-3],[-46,-1],[-36,-2],[-42,1],[-121,2],[-61,0],[-53,1],[0,51],[1,30],[0,30],[-1,201],[5,30],[-2,95],[-2,140],[0,48],[0,104],[0,25],[0,128],[0,33],[-1,61],[-1,71],[-1,29],[0,60],[1,112],[0,65],[2,129],[2,120],[0,32],[1,74],[0,83],[0,70],[0,69],[0,1],[0,87],[4,148],[-1,174],[1,43],[0,73],[2,109],[1,42],[-3,103],[-2,76],[-1,45],[10,43]],[[79616,99989],[854,0],[167,1],[1449,2],[76,0],[140,0],[101,0],[74,0],[191,1],[10,0],[689,1],[2567,4],[777,1],[1184,0],[269,-1],[402,0],[1175,0],[579,0],[1734,-1],[504,-3]],[[92558,99994],[-31,-114],[-2,-39],[-1,-67],[-2,-87],[-1,-52],[-1,-128],[0,-2],[-2,-89],[-1,-72],[-1,-65],[-1,-72],[1,-42],[-3,-98],[-2,-66],[-11,-327],[-1,-46],[-1,-51],[-1,-21],[-3,-134],[-2,-51],[-4,-169],[-4,-144],[-1,-113],[0,-30],[-2,-205],[-2,-213],[-2,-55],[0,-24],[-1,-118],[0,-27],[0,-3],[-2,-205],[0,-15],[1,-53],[1,-24],[-1,-183],[-1,-110],[0,-1],[0,-116],[-1,-244],[-1,-166],[-1,-151],[0,-95],[0,-2],[-1,-70],[0,-100],[-4,-123],[0,-43],[-1,-33],[2,-35],[-1,-25],[3,-45],[-2,-123],[-1,-61],[0,-111],[-1,-118]],[[98357,88951],[-227,1],[-17,0],[-12,0],[-40,1],[-29,-1],[-35,1],[-43,0],[-215,1],[-42,-1],[-46,0],[-49,1],[-36,-1],[-51,0],[-128,2],[-29,0],[-44,0],[-48,-2],[-34,-1],[-30,-1],[-32,1],[-33,-1],[-40,1],[-50,0],[-41,0],[-28,0],[-132,3],[-58,0],[-29,1],[-28,0],[-3,0],[-84,1],[-109,2],[-208,0],[-159,0],[-202,0],[-245,0],[-94,1],[-49,0],[-44,0],[-147,1],[-80,-1],[-66,0],[-166,-1],[-43,0],[-123,-1],[-126,0],[-87,-1],[-49,0],[-80,0],[-66,0],[-129,0],[-79,0],[-48,0],[-106,-1],[-183,0],[-151,1],[-238,1],[-71,1]],[[93496,88959],[0,60],[-1,57],[0,87],[-1,23],[0,43],[-1,46],[0,25],[-2,41],[0,23],[-1,24],[0,28],[-1,22],[0,11],[-2,37],[0,52],[-1,37],[1,51],[-1,26],[0,64],[0,39],[0,65],[0,22],[0,9],[-8,247],[-4,85],[0,21],[-2,32],[0,8],[-6,110],[-1,10],[-7,176],[-1,63],[0,46],[0,43],[-1,45],[1,29],[-1,68],[-3,40],[0,55],[0,5],[-1,67],[-2,189],[1,58],[0,49],[0,39],[0,30],[0,11],[1,118],[2,129],[0,32],[1,27],[3,136],[0,18],[1,42],[0,40],[0,12],[-1,61],[4,36],[-3,72],[-2,76],[9,134],[0,32],[0,104],[-1,73],[0,102],[-1,98],[-1,192],[0,62],[-1,151],[-1,301],[-2,265],[0,113],[0,24],[-1,71],[-1,116],[-1,259],[0,26],[-1,117],[0,1],[-1,219],[0,73],[-148,1],[-86,0],[-1,0],[-158,1],[-102,1],[0,103],[0,45],[-1,43],[0,63],[-1,47],[-40,1],[-44,0],[-229,2],[-121,2],[-58,0]],[[92558,99994],[840,1],[175,0],[2088,2],[1222,0],[104,1],[140,0],[99,-161],[25,-26],[107,-109],[14,-14],[79,-81],[47,-46],[77,-75],[225,-176],[149,-215],[44,-63],[25,-37],[18,-25],[25,-36],[52,-75],[46,-67],[106,-132],[156,-195],[350,-224],[184,-76],[105,-42],[59,-25],[42,-17],[363,-92],[224,-57],[98,-24],[57,-9],[37,-8],[36,-16],[23,-23],[-15,-90],[-14,-80],[-20,-119],[-11,-67],[-52,-362],[-18,-123],[-1,-7],[-1,-6],[-2,-14],[-4,-23],[-53,-310],[-1,-3],[-7,-45],[-8,-47],[-30,-173],[-35,-203],[-1,-5],[-2,-12],[-6,-36],[-9,-45],[-21,-119],[-9,-52],[-75,-417],[0,-2],[-25,-136],[-15,-85],[-8,-42],[0,-2],[-17,-87],[-19,-97],[-12,-62],[-15,-78],[-15,-78],[-14,-103],[-17,-170],[-20,-147],[-7,-47],[0,-1],[-35,-185],[-16,-75],[-10,-50],[-14,-68],[-53,-211],[-9,-34],[-10,-38],[-7,-32],[-23,-129],[-7,-33],[-26,-127],[-28,-133],[-22,-109],[-20,-95],[-49,-234],[0,-1],[-17,-82],[-23,-111],[-3,-15],[-50,-244],[-9,-41],[-16,-66],[-20,-110],[-4,-21],[-52,-278],[-15,-78],[-33,-193],[-13,-28],[-20,-125],[-40,-214],[-21,-110],[-34,-167],[-41,-227],[-14,-76],[-14,-75],[-12,-63],[-24,-126],[-37,-189],[-25,-135],[-60,-313],[-31,-172],[-2,-18],[-1,-6],[-12,-68],[-31,-169],[-8,-43],[-11,-63],[-9,-47],[-14,-78],[-11,-63],[-1,-4],[-6,-34]],[[82551,95042],[-3,-81],[-2,-58],[0,-205],[-3,-33],[0,-3],[-4,-69],[2,-114],[7,-91],[-4,-129],[6,-74],[3,-48],[-2,-26],[-11,-130],[0,-73],[2,-53],[0,-20],[2,-60],[3,-94],[-2,-22],[-1,-76],[0,-62],[-1,-33],[3,-82],[0,-24],[-3,-31],[2,-32],[6,-119],[11,-212],[4,-94],[0,-64],[-6,-346],[6,-74],[-2,-100],[-1,-25],[0,-48],[3,-124],[1,-179],[3,-91],[1,-68],[0,-59],[-189,-5],[-119,2],[-25,1],[-100,2],[-63,0]],[[82075,91716],[-410,1],[-114,0],[-99,0],[-9,0],[-221,1],[-62,0],[-105,0],[-71,1],[-686,2],[-273,2],[-102,1],[-82,0],[-207,2],[-72,0],[-179,-1],[-49,1],[-42,-1],[-196,1],[-32,0],[-422,2],[-261,1],[-231,0],[-127,1],[-161,0],[-4,0],[-227,0],[-38,0],[-132,1],[-163,0],[-93,1],[-115,1],[-276,3],[-208,2],[-480,4],[-172,2],[-80,1],[-63,0],[-171,1],[-111,1],[-274,1],[-130,1],[-175,1],[-314,4],[-47,2],[-68,1],[-13,1],[-34,1],[-36,0],[-17,0],[-122,2],[-112,2],[-318,0],[-204,-1],[-159,0],[-248,-1],[-57,0],[-91,0],[-179,-2],[-37,0],[-144,-1],[-2,0],[-351,-3],[-214,-2],[-33,0]],[[72150,91753],[1,150],[2,142],[1,175],[2,90],[0,45],[-3,387],[-2,204],[0,105],[-2,118],[-1,156],[1,23],[0,415],[0,69],[0,76],[0,330],[0,27],[0,64],[0,50],[0,75],[-1,41],[0,130],[0,68],[0,28],[-1,87],[0,53],[0,1],[0,41],[0,51],[0,95],[0,98],[0,48],[1,70],[0,6],[1,83],[0,33],[3,141],[1,119],[0,99],[0,24],[7,386],[2,79],[0,21],[151,0],[182,0],[139,0],[138,0],[120,0],[163,0],[70,0],[1,0],[233,-1],[285,0],[-1,124],[-1,87],[-1,40],[2,70],[1,51],[0,50],[3,188],[0,2],[0,4],[0,17],[1,86],[6,184],[249,-1],[90,0],[151,0],[1,220],[-1,120],[0,126],[2,180],[5,87],[1,121],[-4,46],[0,27],[1,142],[0,33],[0,24],[-2,248],[1,161],[0,147],[1,52],[1,74],[2,166],[0,1],[3,263],[0,44],[1,49],[0,184],[-1,44],[0,57],[1,211]],[[74156,99984],[928,1],[2540,2],[74,0],[922,1],[996,1]],[[54294,95360],[-183,1],[-131,1],[-68,0],[-36,2],[-57,-1],[-30,0],[-32,0],[-54,0],[-30,1],[-74,0],[-58,1],[-43,0],[-40,0],[-1,0],[-156,2],[-315,2],[-148,0],[-49,0],[-49,1],[-42,0],[-35,0],[-36,1],[-56,0],[-44,0],[-46,0],[-36,0],[-40,-1],[-100,1],[-186,2],[-237,1],[-63,0],[-2,0],[-140,2],[-43,0],[-39,0],[-46,-1],[-55,1],[-40,0],[-30,-1],[-33,0],[-36,0],[-41,1],[-35,0],[-49,1],[-31,0],[-45,0],[-38,1],[-50,0],[-50,0],[-75,-1],[-30,0],[-42,0],[-29,0],[-29,-1],[-39,1],[-35,0],[-50,0],[-41,0],[-56,1],[-31,-3],[-160,1],[-37,-1],[-75,0],[-52,3],[-62,-1],[-34,1],[-29,0],[-46,0],[-35,-1],[-28,0],[-32,0],[-51,0],[-60,-1],[-39,0],[-29,0],[-72,-1],[-61,0],[-42,-1],[-556,-4],[-5,0],[-1,0],[-56,-10],[-61,-77],[-19,-24],[3,-21],[1,-5],[6,-37],[-14,-40],[-26,-44],[-76,-1],[-40,-38],[-46,-44],[-23,-24],[-58,-58],[-157,-9],[-67,-70],[-21,-23],[-151,2],[-27,0],[-96,-46],[-13,-5],[-13,-5],[-47,-17],[-28,-11],[-8,-3],[-130,-49],[-106,-58],[0,-2],[25,-80],[7,-102],[1,-4],[1,-22],[-19,-10],[-29,-16],[-8,-5],[-97,-16],[-6,0],[-114,-19],[-73,-12],[-4,0],[-26,4],[-23,-1],[-130,-7],[-29,-2],[-13,1],[-39,1],[-18,0],[-17,1],[-143,-20],[-16,-12],[-4,-3],[-48,-39],[-29,-23],[-8,-7],[-66,-12],[-130,-24],[-16,-3],[-46,-9],[-19,16],[-8,23],[24,15],[-26,9],[-24,-12],[4,-21],[-19,-16],[-29,5],[-19,20],[8,21],[-30,13],[-4,2],[-1,-2],[-1,-2],[-9,-15],[4,-67],[-3,-1],[-6,-2],[-18,0],[-22,9],[-10,2],[-1,0],[-48,4],[-69,1],[-115,-25],[-6,-5],[-49,-29],[-46,0],[-43,-1],[-101,-14],[-15,-20],[-50,34],[-58,-18],[6,-22],[3,-22],[-20,-19],[-131,-31],[-2,0],[-106,2],[-151,4],[-74,41],[-72,21],[-99,9],[-80,3],[-46,2],[-8,1],[-9,27],[-21,15],[-18,-18],[-16,-11],[-16,8],[-2,6],[13,23],[22,15],[-26,7],[-33,18],[-26,23],[-27,14],[-42,18],[-25,15],[1,27],[24,27],[-44,0],[-9,24],[33,4],[27,-15],[32,0],[3,28],[-34,21],[-28,-5],[-29,-4],[-21,16],[4,23],[15,20],[-45,-5],[-43,6],[-38,3],[-27,-21],[-37,-17],[-46,0],[-42,-5],[-10,-27],[32,-9],[10,-24],[-39,-5],[-31,-3],[-17,-23],[-10,-8],[-10,3],[-58,23],[-1,0],[2,15],[29,18],[-11,19],[-47,-3],[-59,3],[-30,20],[-30,4],[-19,19],[-4,28],[-5,50],[-69,34],[-39,7],[-51,18],[-39,14],[-37,19],[-24,-14],[7,-20],[-5,-28],[-28,-9],[-26,10],[-32,-6],[-26,-18],[-16,3],[-27,6],[-43,-3],[-30,5],[-48,-26],[-36,16],[-13,23],[-17,22],[-31,21],[-12,3],[-27,-36],[-38,-2],[-22,13],[18,22],[13,22],[-1,22],[-37,15],[-40,7],[-30,7],[34,21],[24,12],[25,16],[-9,23],[-35,8],[-32,2],[-42,1],[-2,3],[19,13],[23,15],[-15,21],[-42,11],[-31,-10],[-26,10],[-25,26],[-7,31],[-10,31],[-10,20],[-2,24],[-17,26],[-50,9],[-20,14],[-61,40],[-11,7],[-50,33],[-18,7],[-2,0],[-21,-1],[-30,-1],[-2,0],[-2,1],[-64,23],[-46,16],[-16,1],[-25,7],[-40,10],[-28,3],[-17,1],[-15,-1],[-7,-2],[-42,-19],[-11,7],[-22,15],[-32,19],[-27,-5],[0,-28],[-8,-28],[-3,-8],[-27,-9],[-8,0],[-105,9],[-101,8],[-31,4],[-35,2],[-70,1],[-16,-2],[18,-49],[4,-9],[-15,1],[-21,-2],[-12,-2],[-33,-13],[-13,-8],[-48,23],[-2,3],[-13,18],[-2,3],[-2,0],[-118,2],[-42,-2],[-36,-7],[-67,-19],[-37,-11],[-59,-17],[-65,-18],[-16,-7],[-6,-6],[-4,-21],[1,-24],[41,-7],[1,-25],[-28,-15],[9,-21],[-29,3],[-16,-18],[28,-2],[35,5],[28,-7],[-24,-14],[-20,-15],[-11,-20],[4,-23],[-34,0],[-10,26],[-28,14],[-26,-15],[-10,-28],[-19,-17],[-29,8],[-29,8],[-25,-6],[-3,-1],[-22,-54],[-2,-2],[-28,-35],[-72,-60],[-3,-25],[37,-4],[31,-3],[15,-2],[-9,-3],[-79,-21],[-13,-3],[-4,-3],[-58,-38],[-169,-74],[-137,-64]],[[40891,94368],[-15,138],[-7,106],[-3,65],[-16,321],[-6,124],[-10,245],[-1,11],[4,130],[3,107],[2,31],[2,25],[-2,32],[4,78],[0,76],[2,36],[-2,38],[0,31],[-2,50],[3,24],[-2,26],[-3,49],[0,23],[-1,114],[-1,150],[-1,164],[-1,19],[2,157],[2,153],[2,78],[0,6],[-2,216],[-119,1],[-65,0],[-60,0],[-50,0],[-40,1],[-12,0],[-21,0],[-60,0],[-30,0],[-6,0],[-29,0],[-28,0],[-53,1],[-69,0],[-32,0],[-38,0],[-38,0],[-46,0],[-54,0],[-42,1],[-58,1],[-42,1],[-57,0],[-39,0],[-32,0],[-36,-3],[-30,-13],[-35,-14],[-34,-2],[-36,10],[-7,4],[-15,11],[-33,4],[-61,0],[-166,0],[-39,0],[-43,0],[-55,0],[-31,0],[-71,0],[-32,0],[-77,3],[-54,1],[-29,-1],[-32,0],[-43,-1],[-134,0],[-78,0],[-101,0],[-192,-1],[-289,-13]],[[37969,97182],[-134,140],[-5,6],[-57,50],[-61,48],[102,82],[40,12],[166,46],[13,0],[67,15],[135,42],[213,84],[56,24],[236,76],[14,3],[156,-3],[62,8],[67,16],[196,92],[166,93],[48,45],[161,173],[20,28],[33,62],[31,95],[14,134],[-23,51],[-7,42],[-27,78],[-40,116],[-52,97],[-7,12],[-19,22],[-115,77],[-71,23],[-77,13],[-56,5],[-86,26],[-42,25],[-153,102],[-115,64],[-138,60],[-71,26],[-99,61],[-319,144],[-225,179],[-136,223],[270,-1],[177,0],[2107,-3],[433,-1],[1337,-2],[319,0],[209,0],[301,-1],[837,-1],[1821,-3],[185,0],[639,-1],[60,0],[547,-1],[2848,-2],[386,0],[3969,-3]],[[54275,99980],[1,-66],[2,-166],[1,-135],[0,-21],[0,-77],[0,-67],[-1,-69],[-1,-75],[0,-11],[0,-33],[0,-22],[0,-29],[0,-82],[0,-66],[0,-27],[5,-177],[-2,-64],[3,-169],[0,-11],[1,-43],[1,-120],[0,-24],[0,-26],[0,-119],[0,-220],[1,-46],[1,-173],[0,-81],[0,-20],[0,-10],[0,-25],[0,-53],[1,-66],[0,-24],[0,-10],[0,-12],[4,-48],[-1,-73],[-2,-213],[-1,-21],[0,-28],[-1,-313],[0,-30],[-2,-232],[1,-75],[1,-62],[0,-71],[1,-34],[0,-7],[0,-26],[-1,-58],[0,-64],[2,-23],[0,-26],[-1,-21],[1,-21],[3,-36],[7,-21],[-7,-24],[3,-24],[-4,-23],[1,-29],[2,-36],[0,-28],[-1,-23],[-1,-28],[0,-35],[1,-50],[-1,-73],[1,-27],[1,-35],[1,-23],[0,-23],[1,-26],[1,-25],[1,-25],[2,-25],[0,-28],[1,-23],[1,-24],[-8,-21]],[[72150,91753],[-187,-2],[-174,0],[-49,0],[-153,-2],[-185,-1],[-33,0],[-247,-1],[-29,-1],[-2,0],[-82,0],[-72,1],[-30,-1],[-61,-1],[-49,-1],[-37,-1],[-2,0],[-54,3],[-343,-1],[-66,-1],[-366,0],[-499,-2],[-7,0],[-47,0],[-419,-1],[-191,-1],[-72,0],[-141,0],[-820,-1],[-1,-298]],[[67732,91441],[-125,0],[-125,0],[-663,-3],[-497,-3],[-71,0],[0,38],[0,197],[1,105],[0,52],[0,35],[1,64],[1,80],[0,73],[1,80],[1,151],[0,32],[-1,101],[0,47],[-1,96],[0,1],[-1,50],[-2,101],[-1,50],[0,24],[-1,56],[-2,109],[-2,177],[0,2],[-1,98],[-2,146],[0,117],[0,32],[-1,43],[0,62],[0,198],[0,30],[0,41],[-1,80],[1,104],[0,163],[-2,35],[-3,162],[-1,41],[0,75],[0,37],[-2,164],[-1,119],[0,40],[0,243],[-1,309],[0,108],[0,69],[0,165],[-1,39],[-1,136],[-2,129],[0,66],[0,160],[0,1],[0,43],[-1,152],[0,118],[0,179],[-442,0],[-420,0],[-145,0],[-249,0],[-102,0],[-4,0],[-142,0],[-1,61],[0,7],[-4,238],[-1,43],[-2,179],[-1,27],[0,3],[0,79],[3,280],[0,28],[2,78],[0,135],[0,295],[0,58],[1,200],[-1,75],[0,327],[-2,122],[-1,76],[0,83],[1,98],[2,149],[1,82],[0,37],[0,46],[4,295]],[[64723,99961],[2799,8],[548,2],[126,0],[698,2],[169,1],[2781,5],[1525,3],[787,2]],[[67732,91441],[-1,-366],[-3,-316],[0,-68],[-4,-30],[0,-30],[0,-30],[0,-56],[0,-35],[0,-78],[0,-39],[0,-28],[0,-61],[0,-2],[0,-78],[0,-32],[-2,-24],[0,-26],[1,-41],[-3,-200],[0,-35],[2,-149],[0,-57],[-4,-36]],[[67718,89624],[-45,70],[-37,19],[-35,-5],[-59,-13],[-105,-24],[-48,-18],[-13,64],[-7,6],[-14,7],[-38,12],[-27,4],[-19,-2],[-31,-13],[-40,91],[-1,3],[-29,0],[-82,0],[-205,-3],[-21,2],[-287,58],[-43,25],[-50,43],[-26,39],[-50,52],[-7,2],[-118,29],[-3,-3],[-61,-68],[-8,-5],[-8,-2],[-14,-1],[-7,2],[-11,7],[-5,5],[-3,14],[-31,58],[-156,2],[-84,14],[-64,12],[-58,60],[-7,7],[-98,-42],[-11,0],[-15,3],[-170,52],[-9,2],[-4,4],[-3,10],[1,22],[1,6],[4,6],[22,6],[3,2],[-1,7],[-3,3],[-7,1],[-74,-11],[-20,-4],[-15,5],[-39,35],[-45,-54],[-5,-6],[-37,-35],[-8,-5],[-26,-5],[-24,-2],[-8,1],[-7,3],[-5,3],[-117,40],[-11,4],[-87,28],[-14,0],[-10,-3],[-9,-5],[-5,-10],[0,-2],[-2,-7],[-2,-29],[-2,-10],[-10,-12],[-6,-4],[-16,-1],[-21,5],[-21,9],[-15,-5],[0,-4],[-9,-5],[-19,-5],[-18,-2],[-28,0],[-22,3],[-21,8],[-12,8],[-7,12],[-11,34],[0,9],[6,4],[3,2],[18,7],[29,4],[4,4],[0,10],[-4,9],[-7,3],[-14,-1],[-21,-7],[-28,-13],[-39,-21],[-49,-27],[-14,-8],[-5,2],[-90,20],[4,11],[-3,4],[-7,3],[-78,17],[-15,0],[-18,-4],[-12,-7],[-4,-4],[0,-8],[10,-29],[8,-10],[13,-10],[35,-15],[13,-8],[5,-4],[5,-8],[0,-14],[-3,-6],[-5,-6],[-10,-6],[-17,-2],[-172,-16],[-196,12],[-29,2],[-212,43],[-5,4],[-62,49],[-10,5],[-57,20],[-4,0],[-138,8],[-77,16],[-59,13],[-1,9],[-5,7],[-8,6],[-13,4],[-17,-3],[-58,-22],[-24,-9],[-11,-6],[-3,-4],[1,-10],[3,-8],[6,-7],[2,-6],[-2,-16],[-26,-40],[-5,-2],[-6,-2],[-9,0],[-95,25],[-5,5],[0,6],[13,15],[-1,11],[-5,6],[-14,15],[-11,5],[-5,1],[-8,0],[-9,-4],[-23,-36],[-14,-21],[-17,-9],[-11,-5],[-29,-8],[-41,-8],[-156,-31],[-88,-8],[-120,5],[-90,4],[-24,4],[-27,7],[-2,0],[-35,11],[-43,15],[-32,16],[-1,1],[-15,13],[-6,8],[-34,75],[-2,4],[-19,66],[-3,7],[-11,9],[-4,1],[-25,-1],[-69,-7],[-1,0],[-7,-2],[-16,-8],[-19,6],[-2,0],[-17,1],[-34,4],[-6,0],[-173,26],[-32,9],[0,1],[-7,5],[-3,5],[-6,17],[-5,14],[-23,33],[-16,17],[-3,2],[-43,24],[-81,57],[4,6],[0,2],[-18,12],[-32,21],[-77,36],[-171,36],[-26,7],[-27,48],[-16,96],[-13,0],[-59,1],[-85,0],[-24,0],[-69,0],[-14,0],[-17,0],[-179,1],[-199,1],[-439,6],[-27,0],[-38,1],[-29,0],[-241,3],[-201,3],[-121,1],[-126,1],[-166,2],[-118,1],[-316,4],[-75,0],[-432,-1],[-199,-2],[-92,0],[-65,-1],[-14,0],[-39,0],[-48,0],[-130,0],[-21,0],[-554,-3],[-66,1],[-401,-5],[-37,-2],[-32,0],[-73,-1],[-205,-2],[-269,-3],[-159,-2]],[[55846,90842],[-3,77],[-4,267],[-2,70],[-3,176],[-2,86],[0,186],[-1,60],[-1,291],[-4,255],[-2,31],[0,75],[0,206],[0,50],[0,426],[-1,265],[0,48],[2,129],[1,27],[0,2],[-261,-1],[-296,-2],[-93,0],[-179,-1],[-556,-1],[-115,11],[0,94],[-2,36],[0,52],[-6,99],[-3,77],[-1,27],[-7,181],[-2,204],[-2,113],[-1,27],[1,28],[-2,41],[-2,53],[0,25],[1,131],[4,140],[-2,100],[-1,66],[-1,77],[-1,86],[-5,128]],[[54275,99980],[176,1],[2074,9],[346,-1],[148,-1],[247,-1],[3491,-16],[3966,-10]],[[40891,94368],[-19,-23],[-3,-31],[0,-28],[-35,-9],[-33,14],[-28,23],[3,9],[-9,9],[-15,-6],[-19,-2],[-7,12],[7,9],[-3,30],[-20,4],[-19,-1],[-2,0],[-7,-3],[-30,-8],[-12,-3],[-20,-6],[-25,-4],[-6,-1],[-23,-7],[-39,-14],[-217,-119],[-13,-7],[-2,-2],[-5,-3],[-12,-8],[30,-18],[32,-14],[9,-21],[-24,-29],[-31,-10],[-28,-4],[-33,6],[-38,0],[-13,-65],[-4,-10],[-5,-10],[-10,-9],[-18,-8],[-40,-11],[-5,-2],[-8,-4],[-6,-5],[-3,-3],[17,-16],[63,-6],[38,-19],[-4,-20],[-25,-11],[-47,6],[-22,16],[-39,13],[-29,-16],[-16,-15],[-2,-2],[-5,-12],[-4,-15],[2,-22],[8,-24],[3,-4],[13,-8],[16,-7],[36,-2],[3,-1],[13,-3],[11,-6],[3,-1],[6,-5],[8,-5],[12,-10],[10,-8],[45,-42],[5,-6],[14,-14],[8,-6],[30,-17],[57,-26],[1,0],[3,-1],[12,-7],[7,-9],[1,-103],[-4,-8],[-1,-1],[-27,-55],[-10,-12],[-30,-31],[-79,-66],[-7,-6],[2,-3],[36,-60],[3,-6],[21,-10],[68,-32],[3,-1],[0,-1],[10,-7],[60,-95],[1,0],[-23,-57],[-17,-20],[-39,20],[-28,20],[-39,4],[-40,-21],[-5,-22],[34,-21],[45,3],[28,6],[38,-6],[36,-7],[74,2],[32,-6],[16,-25],[0,-1],[0,-3],[0,-17],[-2,-11],[0,-2],[-1,-2],[-3,-11],[-8,-8],[0,-1],[-12,-13],[-4,-15],[-11,-52],[-11,-50],[0,-10],[2,-22],[3,-5],[0,-18],[-3,-11],[-4,-4],[-22,-14],[0,-1],[-6,-2],[-132,-52],[-1,0],[-10,-2],[-29,-18],[-4,-2],[-5,-5],[-7,-6],[-6,-7],[-5,-6],[-13,-19],[-16,-41],[-10,-31],[-6,-7],[-4,-3],[-4,-4],[-20,-12],[-21,-13],[-7,-4],[-42,-26],[-8,-8],[-1,-2],[-13,-49],[-1,-2],[0,-3],[-8,-8],[-4,-3],[-18,-6],[-22,-7],[-23,-3],[-74,-11],[-7,-1],[-26,-5],[-55,-22],[-23,-13],[-6,-7],[-5,-9],[3,-10],[8,-15],[10,-14],[1,-1],[3,-3],[6,-9],[7,-13],[2,-4],[9,-21],[1,-15],[0,-3],[-2,-5],[-5,-14],[-6,-7],[-1,-3],[-2,-2],[-54,-57],[-6,-6],[3,-2],[117,-96],[0,-1],[12,-57],[0,-1],[-18,-27],[-36,-11],[-58,-10],[-30,-15],[-17,-19],[-27,-26],[-28,-27],[-10,-26],[12,-27],[32,-13],[38,2],[49,20],[46,18],[5,30],[-15,27],[29,22],[31,7],[31,-31],[13,-19],[15,-24],[6,-9],[-2,-7],[-10,-38],[-26,-10],[-49,-1],[-31,-15],[-19,-31],[-18,-32],[-14,-29],[22,-17],[46,3],[42,13],[22,28],[27,13],[1,0],[1,-4],[7,-9],[35,-29],[2,-2],[22,-13],[7,-5],[10,-6],[1,-2],[5,-5],[0,-12],[0,-3],[0,-1],[-3,-5],[-16,-16],[-3,-3],[-4,-9],[-2,-8],[4,-8],[6,-5],[25,-14],[134,-68],[43,-22],[19,-5],[54,-8],[13,-2],[11,-13],[1,-1],[4,-5],[6,-11],[5,-10],[2,-5],[0,-2],[0,-10],[-2,-5],[-3,-4],[-1,-1],[-1,-1],[-9,-9],[-10,-5],[-27,-7],[-31,-11],[-14,-11],[-11,-12],[-1,-4],[67,-21],[35,-9],[142,-23],[22,-8],[40,-58],[46,-63],[25,-36],[3,-4],[1,-22],[1,-21],[0,-1],[-1,-4],[-12,-8],[-12,-4],[-21,-1],[-84,10],[-1,0],[-27,0],[-22,-11],[-1,0],[-2,-1],[-43,-24],[-1,-1],[-5,-4],[-1,-1],[-2,-6],[18,-19],[47,-10],[33,11],[56,7],[33,7],[29,2],[44,-6],[21,-17],[24,-27],[51,-5],[28,12],[5,2],[29,11],[11,-24],[-2,-31],[-7,-14],[-16,-31],[33,0],[42,0],[40,0],[12,0],[44,0]],[[40941,90844],[1,-118],[0,-2],[0,-30],[1,-123],[0,-15],[1,-48],[1,-24],[0,-36],[0,-30],[1,-59],[-3,-44],[1,-39],[1,-23],[-1,-27],[-1,-45],[-1,-34],[0,-34],[-1,-23],[1,-48],[0,-26],[0,-47],[1,-24]],[[40943,89945],[-131,-2],[-73,-2],[-64,-1],[-103,-2],[-34,0],[-69,0],[-61,-1],[-58,0],[-44,-1],[-94,0],[-69,-1],[-38,-1],[-160,-1],[-65,-1],[-67,-1],[-36,0],[-33,0],[-28,0],[-11,0],[-108,-1],[-33,0],[-1,0],[-40,0],[-29,0],[-18,-6],[-23,0],[-64,-2],[-35,0],[-99,0],[-37,-1],[-117,-1],[-146,0],[-114,-1],[-376,-2],[-148,-1],[-51,0],[-87,-1],[-89,0],[-121,-1],[1,-8],[1,-82],[1,-55],[-1,-36],[1,-237],[1,-132],[0,-47],[45,-218],[9,-44],[3,-27],[-1,-139],[0,-29],[0,-58],[3,-137],[0,-1],[1,-34],[1,-39],[4,-146],[-3,-25],[3,-89],[0,-38],[-5,-25],[5,-34],[1,-85],[-375,0],[-128,-1],[-614,0],[-1,0],[-39,-2],[-78,-1],[-126,-1],[-31,0],[-38,-1],[-30,0],[-116,-1],[-43,0],[-50,-1],[-47,-1],[-125,0],[-215,-2],[-196,-1],[-29,0],[-256,-2],[-50,0],[-158,-1]],[[35294,88134],[-69,30],[-27,12],[-44,20],[-57,25],[-27,12],[-492,216],[-260,115],[-478,213],[-2,1],[-334,147],[-90,39],[-58,26],[-68,29],[-55,25],[-66,29],[-81,36],[-118,52],[-152,67],[-159,70],[-192,93],[-149,62],[-59,25],[-85,36],[-214,91],[-259,112],[-75,35],[-70,28],[-51,22],[-42,19],[-113,48],[-80,35],[-596,260],[-32,13],[-6,3],[-40,17],[-30,13],[-45,20]],[[30519,90230],[142,51],[218,68],[40,11],[9,3],[33,18],[118,63],[53,28],[33,18],[37,25],[15,15],[5,5],[9,10],[18,25],[2,3],[39,64],[2,5],[1,2],[13,91],[1,24],[10,145],[-3,7],[-169,178],[-81,54],[-70,47],[-83,35],[-55,14],[-151,102],[-202,150],[-166,234],[-2,3],[-16,13],[-16,14],[-123,80],[-83,123],[-53,115],[-23,48],[-9,22],[-23,52],[-3,60],[5,32],[12,93],[27,61],[3,19],[15,82],[59,66],[22,46],[-11,59],[-27,36],[-39,85],[-11,28],[-7,38],[-9,47],[-6,115],[-6,84],[-34,67],[3,48],[31,38],[48,39],[52,55],[20,25],[30,36],[57,46],[34,29],[59,17],[20,6],[80,30],[154,137],[8,7],[111,53],[59,16],[15,4],[101,20],[43,2],[93,-18],[69,-33],[42,-40],[41,-31],[52,-27],[63,-39],[71,-71],[50,-78],[12,-53],[8,-86],[-7,-36],[-18,-24],[-20,-25],[-33,-19],[-175,-83],[-94,-53],[-30,-34],[-51,-70],[-37,-125],[-15,-85],[0,-76],[21,-78],[27,-48],[40,-43],[116,-100],[111,-44],[76,-21],[107,-16],[141,-5],[121,8],[119,17],[116,25],[65,21],[35,15],[113,53],[148,75],[101,61],[58,63],[62,45],[121,82],[81,48],[74,39],[83,39],[67,27],[43,18],[78,44],[130,89],[138,101],[94,89],[40,61],[25,55],[24,60],[13,38],[4,87],[-19,43],[-38,49],[-109,95],[-142,63],[-143,22],[-185,4],[-71,-4],[-125,-7],[-45,-6],[-33,-1],[-154,-14],[-215,-33],[-158,-21],[-202,-15],[-149,0],[-188,14],[-168,30],[-67,21],[-133,47],[-221,161],[-116,86],[-118,78],[-43,34],[-104,81],[-12,24],[-1,13],[2,26],[76,115],[54,58],[132,73],[18,2],[91,49],[120,26],[112,25],[128,26],[53,10],[30,16],[4,1],[66,56],[29,36],[-2,28],[-34,74],[-62,84],[-79,51],[-16,35],[-22,54],[-62,113],[-55,113],[-27,108],[17,59],[68,98],[114,112],[73,49],[153,58],[126,27],[113,14],[137,7],[81,-7],[67,-21],[128,-205],[142,-190],[53,-75],[50,-110],[-5,-64],[-67,-73],[-85,-50],[-25,-12],[-173,-74],[-199,-90],[-76,-61],[-30,-33],[-4,-99],[13,-136],[1,-3],[10,-23],[110,-138],[148,-55],[322,-84],[103,-17],[245,-10],[57,-3],[77,8],[242,25],[120,12],[70,13],[147,39],[116,60],[85,45],[76,62],[40,51],[30,48],[12,114],[-36,165],[-51,94],[-23,42],[-168,195],[-33,61],[-76,68],[-81,54],[-4,4],[-43,53],[-13,32],[-8,18],[-66,177],[7,103],[0,14],[38,71],[101,106],[29,22],[36,20],[5,2],[124,66],[35,7],[33,33],[41,48],[41,76],[-9,58],[-1,10],[-64,83],[-83,103],[-41,47],[-52,52],[-3,3],[-148,151],[-140,138],[-149,112],[-52,61],[-33,71],[-20,124],[13,122],[17,43],[63,73],[52,53],[88,47],[137,55],[16,6],[145,52],[122,20],[114,-6],[149,-20],[139,-35],[134,-41],[124,-51],[50,-38],[57,-66],[37,-72],[66,-71],[32,-53],[21,-67],[-10,-49],[-41,-61],[-27,-55],[0,-48],[8,-69],[28,-121],[32,-95],[16,-30],[82,-91],[55,-50],[5,-3],[38,-17],[104,-20],[67,-11],[40,-7],[70,3],[50,2],[73,19],[55,16],[160,68],[117,40],[88,12],[40,12],[189,66],[163,62],[405,97],[75,9],[136,15],[148,5],[136,36],[3,4],[115,61],[16,35],[26,14],[174,-99],[147,-84],[486,-140],[206,91],[64,203],[-35,36]],[[55846,90842],[-263,-2],[-58,-1],[-69,0],[-139,-2],[-63,1],[-54,0],[-47,-1],[-181,0],[-161,1],[-452,2]],[[54359,90840],[-242,0],[-197,-2],[-370,-3],[-209,0],[-485,0],[-210,0],[-32,0],[-164,-2],[-155,2],[-174,1],[-247,1],[-302,-5],[-203,1],[-341,0],[-63,0],[-81,0],[-54,0],[-155,-1],[-63,0],[-253,-1],[-45,0],[-278,-2],[-149,-1],[-206,0],[-1,0],[-299,0],[-135,0],[-13,0],[-223,-1],[-109,1],[-452,-1],[-47,0],[-60,0],[-60,1],[-43,1],[-95,2],[-41,1],[-78,1],[-89,3],[-2,0],[-30,0],[-300,-1],[-1,0],[-128,0],[-62,0],[-104,-1],[-632,0],[-152,-1],[-3,0],[-43,1],[-62,0],[-141,0],[-82,0],[-1,0],[-160,0],[-392,2],[-63,2],[-147,0],[-89,0],[-300,0],[-106,0],[-501,-1],[-344,0],[-35,0],[-110,0],[-47,0],[-79,0],[-73,1],[-292,1],[-308,-2],[-59,0],[-80,0],[-48,0],[-255,1],[-387,1],[-339,1],[-376,1],[-55,0],[-244,2],[-182,0],[-91,1],[-90,0]],[[93496,88959],[-66,0],[-35,1],[-100,2],[-64,1],[-82,1],[-111,1],[-96,1],[-91,2],[-15,-1],[-23,0],[-83,2],[-94,2],[-91,0],[-38,1],[-11,0],[-48,0],[-60,1],[-64,1],[-51,1],[-24,0],[-18,1],[-302,4],[-94,2],[-149,2],[-578,4],[-136,1],[-69,0],[-74,1],[-151,1],[-189,1],[-6,0],[-192,2],[-29,3],[-35,0],[-664,0],[-17,0],[-240,1],[-84,0],[-28,0],[-203,0],[-1,0],[-145,-2],[-152,-1],[-68,-1],[-40,4],[-85,0],[-130,-1],[-272,-2],[-95,1],[-165,-1],[-325,-1]],[[87513,88994],[-1,23],[-4,133],[-5,159],[0,90],[2,225],[12,93],[4,188],[-436,-1],[-146,0],[-96,-1],[-41,0],[-87,-1],[-104,0],[-255,-4],[-34,1],[-50,1],[-87,2],[-43,-1],[-38,0],[-59,-1],[-28,-1],[-49,3],[-77,1],[-99,1],[-48,0],[-87,1],[-23,0],[-121,1],[-70,0],[-178,0],[-86,-1],[-39,0],[-122,1],[-13,0],[-27,0],[-43,-1],[-32,0],[-31,0],[-37,0],[-32,0],[-150,-1],[-81,0],[-43,-1],[-115,0],[-94,-1],[-50,0],[-42,0],[-43,0],[-26,0],[-4,0],[-41,0],[-79,0],[-34,0],[-179,-1],[-76,-1],[-92,0],[-73,-1],[-171,-1],[-95,0],[-109,-1],[-42,0],[-120,0],[-251,0],[-111,3],[-35,-2],[-104,0],[-217,0],[-116,1],[-107,0],[-8,0],[-48,0]],[[82047,89899],[0,56],[3,90],[0,13],[0,2],[1,78],[0,4],[1,45],[2,290],[0,31],[1,26],[2,148],[0,1],[3,204],[0,9],[2,125],[1,49],[6,225],[2,81],[1,104],[3,236]],[[82047,89899],[-4,-122],[-2,-60],[0,-19],[1,-26],[-1,-68],[-33,0],[-53,0],[-23,0],[-10,0],[-69,1],[-29,0],[-111,1],[-31,0],[-113,-1],[-155,0],[-222,1],[-175,0],[-117,0],[-92,0],[-133,1],[-56,0],[-62,1],[-1,-88],[-1,-161],[-2,-212],[-1,-141],[-3,-303],[-1,-73],[0,-159],[0,-30],[-1,-124],[1,-133],[2,-88],[-1,-141],[0,-134],[-1,-161],[0,-151],[-121,0],[-169,1],[-103,0],[-31,0],[-1,0],[-411,2],[-158,1],[1,-51],[1,-26],[2,-98],[2,-78],[1,-31],[1,-77],[1,-29],[0,-72],[0,-69],[0,-73]],[[79563,86909],[-161,1],[-46,0],[-44,0],[-107,1],[-53,-1],[-106,0],[-56,0],[-71,0],[-13,0],[-41,0],[-30,0],[-41,0],[-58,0],[-32,-1],[-1,0],[-105,1],[-32,0],[-1,0],[-110,0],[-305,7],[-105,-1],[-401,-1],[-72,0],[-103,-1],[-272,-2],[-1,0],[-64,0],[-195,-1],[-126,-1],[-170,0],[0,47],[0,30],[-3,94],[0,42],[-1,86],[-34,1],[-51,-1],[-29,1],[-136,0],[-203,2],[-96,1],[-38,1],[-58,-2],[-74,1],[-87,0],[-80,0],[-47,1],[-73,1],[-142,1],[-112,1],[-106,1],[-81,3],[-138,1],[-137,1],[-90,0],[-124,0],[-45,0],[-460,0],[-48,0],[-117,0],[-31,1],[-48,2],[-49,-1],[-117,4],[-2,0],[-43,1],[-44,-6],[-106,3],[-166,3],[-85,-1],[-130,-2],[-30,0],[-115,4],[-43,0],[-89,0],[-80,0],[-492,-2],[-177,-2],[-8,0],[-24,2],[-20,0],[-6,0],[-70,0],[-1,0],[-84,0],[-77,-1],[-169,-1],[-61,0],[-214,0],[-68,0],[-260,-3],[-67,1],[-134,0],[-159,-1],[-332,-6],[-544,-2],[-81,5],[-187,-4],[-138,0],[-518,1],[-163,0],[-357,0],[-95,1],[-50,-3],[-33,0],[-35,0],[-40,0],[-477,-1]],[[67712,87215],[1,198],[0,67],[1,175],[0,91],[0,49],[-2,280],[-1,221],[-1,126],[0,43],[4,262],[2,180],[2,83],[-2,15],[-1,12],[1,75],[2,396],[0,100],[0,36]],[[67712,87215],[1,-92],[4,-239],[-2,-43],[0,-48],[0,-46],[-3,-84],[0,-40],[-1,-28],[3,-94],[-3,-198],[-1,-33],[0,-47],[8,-254],[-1,-31],[0,-120],[-1,-137],[-1,-117],[1,-34],[0,-22],[1,-85],[1,-77],[1,-203],[1,-64],[3,-143],[1,-68],[1,-70],[1,-58],[1,-89],[0,-9],[-3,-75],[-2,-37],[1,-46],[0,-24],[1,-200],[0,-62],[0,-60],[0,-81],[1,-103],[0,-67],[0,-195],[-1,-175],[0,-52],[-1,-55],[1,-96],[1,-65],[0,-22],[0,-115],[2,-85],[2,-73],[4,-134],[3,-135]],[[67736,82685],[-129,-3],[-195,0],[-84,1],[-259,-1],[-113,0],[-145,2],[-112,1],[-188,3],[-47,1],[-278,1],[-92,0],[-471,0],[-509,5],[-93,0],[-30,1],[-39,0],[-150,1],[-340,2],[-79,0],[-290,-6],[-63,0],[-265,2],[-311,3],[-66,0],[-654,1],[-394,0],[-7,0],[-155,1],[-72,1],[-4,0],[-216,1],[-85,1],[-106,1],[-73,0],[-656,-1],[-112,1],[-128,0],[-147,-3],[-139,2],[-38,0],[-65,0],[-30,1]],[[60307,82704],[1,37],[1,75],[1,54],[0,1],[0,40],[6,392],[-67,0],[-279,1],[-144,0],[-116,0],[-53,0],[-116,1],[-52,0],[-31,0],[-49,-2],[-47,1],[-186,1],[-80,2],[-125,0],[-43,0],[-435,1],[-74,0],[-125,0],[-405,0],[-28,0],[-70,0],[-427,1],[-39,0],[-46,1],[-101,0],[-1,0],[-49,1],[-63,2],[-58,1],[-34,0],[-86,1],[-148,2],[-66,1],[-65,1],[-125,0],[-43,1],[-234,1],[-48,1],[-67,0],[-6,0],[-31,1],[-115,0],[-112,1],[-281,3],[-1,0],[-178,1],[-97,1],[-3,0],[-42,-2],[-57,0],[-242,3],[-45,0],[-66,1],[-448,5]],[[54367,83336],[1,178],[1,154],[0,56],[1,134],[0,8],[1,169],[1,60],[5,156],[3,98],[1,32],[5,149],[2,187],[2,95],[6,411],[0,34],[1,41],[2,140],[2,158],[2,105],[6,421],[0,26],[0,24],[2,140],[3,42],[-51,2],[2,47],[3,35],[0,27],[2,71],[-3,47],[0,1],[-5,227],[-1,102],[-2,90],[0,27],[0,93],[0,84],[-1,25],[-2,44],[0,24],[5,215],[-14,190],[-5,202],[-9,67],[6,87],[-2,21],[0,7],[-2,20],[15,211],[9,127],[5,118],[2,38],[4,93],[12,287],[0,42],[0,20],[1,223],[0,31],[0,21],[0,40],[0,22],[1,36],[1,56],[0,10],[1,62],[0,3],[2,168],[-2,106],[-2,70],[-3,32],[3,67],[-4,126],[-1,46],[-3,105],[-6,204],[0,7],[-2,78],[-1,42],[-4,124],[-4,116]],[[54367,83336],[-6,-325],[0,-9],[-2,-100],[-3,-169],[-345,3],[-86,0],[-375,2],[-380,1],[-364,-2],[-343,2],[-42,1],[-66,0],[-11,0],[-97,1],[-106,0],[-245,0],[-225,1],[-38,-1],[-73,2],[-54,0],[-22,1],[-25,0],[-46,1],[-29,-1],[-87,0],[-72,0],[-44,0],[-35,0],[-55,0],[-37,0],[-41,-1],[-59,-1],[-51,1],[-53,0],[-20,0],[-84,1],[-76,0],[-47,-1],[-34,-1],[-29,0],[-126,5],[-129,-2],[-269,3],[-96,0],[-40,0],[-11,0],[-181,1],[-31,0],[-2,0],[-50,0],[-105,0],[-103,0],[-138,0],[-34,1],[-263,0],[-210,-1],[-28,1],[-1,0],[-36,1],[-35,-1],[-73,0],[-103,0],[-45,0]],[[48451,82750],[-149,2],[-95,0],[-75,0],[-3,0],[-120,0],[-141,0],[-8,0],[-125,0],[-214,-1],[-45,0],[35,-17],[62,-30],[115,-55],[-163,0],[-87,2],[-282,1],[-89,0],[-289,1],[-37,0],[-36,0],[-116,0],[-64,2],[-3,0],[-104,-3],[-62,0],[-308,2],[-44,0],[-139,0],[-33,1],[-67,0],[-197,0],[-45,0],[-152,1],[-149,0],[-843,2],[-159,1],[-141,0],[-204,1],[-413,1],[-309,1],[-145,-4],[-33,-1],[-44,1],[-31,0],[-155,2],[-28,2]],[[42717,82662],[1,96],[2,115],[-3,50],[0,20],[5,29],[0,43],[1,38],[0,74],[0,68],[1,22],[3,51],[1,76],[2,166],[0,84],[1,54],[1,70],[-1,82],[1,49],[2,23],[1,67],[1,111],[2,134],[-1,87],[1,32],[1,29],[4,35],[-1,23],[0,1],[-1,21],[0,5],[-2,113],[-1,60],[0,32],[2,22],[1,27],[3,57],[1,30],[0,26],[0,50],[-11,24],[-27,13],[-38,18],[-31,14],[-34,16],[-24,11],[-36,17],[-238,105],[-154,67],[-191,84],[-121,53],[-2,1],[-45,20],[-53,23],[-86,38],[-8,3],[-55,24],[-41,18],[-110,48],[-135,59],[-237,104],[5,225],[7,278],[1,51],[3,117],[3,137],[-118,-1],[3,473],[-1,22],[1,30],[0,42],[0,24],[2,65],[2,86],[0,80],[-1,301],[4,39],[0,7],[2,79],[0,110],[0,27],[4,37],[2,37],[2,40],[3,22],[2,49],[0,71],[0,87],[1,46],[-4,56],[-2,124],[1,62],[-2,24],[-2,19],[-3,130],[-2,76],[-2,79],[0,30],[-1,18],[-2,97],[0,5],[-1,61],[-2,47],[-7,65],[-3,22],[0,39],[-1,28],[-1,26],[-1,25],[-1,23],[0,33],[-1,35],[-1,39],[-1,28],[-3,91],[0,33],[0,40],[-4,127],[-2,23],[2,27],[-2,25],[-1,27],[-1,27],[-1,54],[0,26],[-1,28],[0,28],[0,23]],[[33846,80854],[0,-35],[0,-41],[-1,-27],[-1,-24],[-1,-49],[0,-33],[0,-53],[1,-37],[0,-27],[0,-56],[2,-269],[0,-42],[0,-46],[1,-50],[0,-54],[0,-5],[0,-18],[0,-23],[1,-35],[0,-31],[0,-24],[-1,-38],[0,-32],[0,-84],[0,-82],[0,-3],[0,-23],[12,-270],[-8,-159],[-2,-15],[-1,-8],[-1,-51],[-2,-66]],[[33845,79044],[-32,0],[-125,1],[-7,0],[-18,0],[-3,0],[-32,0],[-63,0],[-371,3],[-35,-3],[-71,2],[-62,-1],[-30,1],[-90,0],[-35,0],[-63,1],[-32,0],[-80,1],[-83,0],[-103,1],[-54,1],[-88,4],[-330,0],[-185,0],[-399,0],[-202,2],[-213,1],[-98,2],[-273,3],[-23,0],[-44,0],[-320,3],[-256,2],[-45,0],[-60,1],[-127,1],[-59,1],[-65,0],[-29,0],[-55,1],[-303,3],[-55,-1],[-140,0],[-136,4],[-96,4],[-199,1],[-100,1],[-116,-1],[-97,0],[-289,0]],[[28054,79083],[-67,0],[-27,0],[5,260],[-3,46],[0,16],[0,46],[1,58],[0,181],[4,197],[1,29],[1,76],[2,93],[2,133],[2,77],[-1,45],[0,30],[0,86],[0,28],[2,66],[1,43],[0,61],[0,28],[0,48],[2,147],[0,22],[1,21],[1,87],[0,29],[2,143],[2,66],[1,35],[0,82],[0,2],[0,50],[0,89],[-1,99],[0,49],[0,41],[0,1],[0,111],[-145,4],[-348,4],[-57,1],[-50,-1],[-36,0],[-8,0],[-36,0],[-38,0],[-37,0],[-39,0],[-62,0],[-43,1],[-36,2],[-36,3],[-34,1],[-54,-1],[-49,1],[-55,0],[-56,0],[-51,0],[-51,0],[-51,1],[-45,0],[-48,0],[-35,-1],[-44,0],[-47,-1],[-84,0],[-41,1],[-47,-1],[-39,0],[-54,0],[-48,1],[-61,0],[-87,0],[-32,0],[-32,0],[-58,1],[-49,-1],[-59,1],[-47,-1],[-82,1],[-56,0],[-46,-1],[-35,-1],[-14,0],[-124,0],[-172,2],[-102,0],[-63,4],[-79,4],[-38,2],[-292,15],[-206,-1],[-44,-1],[-133,-1],[-39,0],[-67,1],[-64,0],[-58,-1],[-134,2],[-316,-3],[-64,2],[-29,0],[-100,0],[-5,1],[-45,3],[-153,-1],[-78,0],[-324,-1],[-167,0],[-180,0],[-73,0],[-60,-1],[-111,0],[-65,-2],[-69,0],[-52,-1],[-53,-1],[-48,0],[-46,0],[-44,-1],[-109,0],[-62,-1],[-168,-1],[-48,-1],[-131,-2],[-116,-1],[-45,-1],[-46,0],[-115,-1],[-36,0],[-96,-1],[-157,1],[-51,0],[-59,0],[-94,0],[-44,0],[-122,0],[-155,1],[-5,0],[-71,0],[-74,0],[-46,0],[-66,1],[-45,0],[-45,0],[-35,0],[-36,0]],[[19649,81833],[9,26],[2,27],[20,20],[11,81],[40,116],[33,71],[157,144],[72,65],[99,54],[61,1],[44,6],[17,2],[57,17],[111,38],[195,105],[87,10],[56,1],[73,42],[29,43],[131,71],[202,-22],[4,-1],[39,-12],[183,-58],[162,-101],[156,-95],[89,-38],[163,-55],[175,-101],[209,-61],[309,-43],[320,11],[174,34],[171,55],[172,92],[183,134],[14,16],[112,122],[41,88],[-3,117],[-38,135],[-72,78],[-93,53],[-135,30],[-88,11],[-86,8],[-80,5],[-176,-15],[-174,4],[-287,50],[-226,-8],[-171,-52],[-73,-6],[-120,-12],[-147,51],[-13,4],[-66,-17],[-56,-14],[-164,-44],[-193,71],[-396,146],[-203,93],[-302,238],[-209,183],[-35,62],[-29,94],[-18,135],[3,86],[61,66],[137,106],[111,39],[146,21],[329,-28],[59,-15],[79,-73],[87,-186],[81,-99],[108,-60],[224,-99],[208,-86],[112,-27],[167,-30],[19,-2],[106,-13],[207,-4],[198,-80],[36,40],[81,86],[35,58],[15,73],[18,56],[30,36],[50,126],[22,61],[2,5],[65,256],[37,74],[45,69],[47,87],[19,72],[12,81],[17,48],[50,77],[21,41],[24,25],[104,56],[67,24],[88,21],[74,5],[57,4],[135,19],[115,35],[122,14],[35,-2],[212,-15],[327,-22],[99,-6],[224,-9],[108,12],[189,86],[162,95],[73,70],[141,137],[118,152],[5,78],[-25,16],[8,85],[1,6],[-7,13],[-19,37],[-66,122],[-115,119],[-155,104],[-16,11],[-135,77],[-17,6],[-29,9],[-58,38],[-8,6],[-56,38],[-3,6],[-18,46],[20,223],[41,72],[39,40],[172,97],[51,29],[70,10],[187,12],[129,-4],[82,-56],[3,-2],[50,-17],[86,-10],[65,-6],[138,-12],[41,-4],[185,-6],[9,1],[105,16],[94,31],[155,-3],[13,5],[105,-4],[76,-2],[122,14],[123,19],[53,11],[111,31],[201,37],[4,0],[-18,-81],[-8,-17],[-70,-167],[-55,-112],[-140,-149],[-143,-162],[-27,-81],[-29,-90],[16,-148],[200,-141],[222,-57],[246,0],[224,49],[72,94],[18,23],[20,134],[-77,158],[-187,279],[1,101],[58,109],[239,247],[26,27],[-85,81],[93,70],[133,42],[85,31],[106,25],[62,0],[38,0],[48,6],[101,22],[84,24],[50,16],[33,6],[134,25],[128,32],[492,173],[159,83],[136,30],[193,87],[237,131],[116,99],[47,51],[16,17],[67,99],[38,102],[-10,95],[-27,75],[-55,75],[-94,121],[-91,78],[-39,19],[-143,68],[-88,71],[-69,158],[-4,17],[-14,70],[-9,44],[-13,94],[3,122],[10,97],[3,41],[39,86],[3,7],[32,71],[3,5],[34,43],[24,17],[31,51],[22,52],[6,40],[4,24],[16,34],[26,38],[83,59],[43,25],[49,29],[56,43],[4,4],[5,6],[67,43]],[[35294,88134],[55,-27],[-26,-152],[-14,-87],[-13,-76],[-1,-89],[0,-14],[-1,-155],[0,-27],[-2,-246],[-1,-63],[0,-75],[1,-49],[-1,-18],[0,-18],[0,-27],[-1,-58],[0,-44],[-1,-101],[0,-33],[0,-6],[-1,-123],[-1,-25],[0,-77],[-1,-45],[-2,-210],[5,-64],[15,-222],[2,-21],[0,-76],[0,-91],[0,-72],[0,-227],[0,-109],[0,-26],[1,-261],[0,-139],[0,-94],[0,-120],[-60,-1],[-61,0],[-60,-1],[-34,2],[-44,1],[-28,0],[-92,0],[-34,0],[-510,0],[-64,0],[-128,5],[-334,12],[0,-255],[0,-57],[0,-62],[1,-81],[2,-211],[-5,-46],[-5,-61],[2,-40],[0,-14],[9,-91],[-1,-118],[-2,-171],[0,-95],[-1,-57],[0,-35],[-1,-112],[0,-45],[-1,-119],[-2,-131],[0,-11],[-2,-22],[-2,-26],[0,-31],[1,-65],[1,-65],[1,-99],[0,-41],[-1,-53],[2,-48],[0,-33],[0,-43],[0,-61],[0,-21],[0,-31],[0,-91],[0,-211],[0,-38],[0,-28],[0,-30],[-1,-27],[-1,-102],[0,-10],[-1,-44],[0,-33],[0,-29],[-1,-21],[0,-26],[-1,-109],[0,-65],[-1,-87],[0,-195],[0,-54],[-2,-76],[1,-36],[0,-48],[0,-21],[0,-47],[-1,-52]],[[42717,82662],[-2,-60],[-1,-43],[0,-41],[0,-33],[0,-68],[-1,-56],[0,-25],[0,-22],[0,-45],[0,-30],[-1,-30],[-1,-64],[0,-23],[0,-45],[-2,-48],[-1,-66],[0,-28],[0,-25],[-1,-22],[1,-71],[0,-38],[-1,-38],[0,-29],[0,-42],[-2,-72],[-1,-23],[-1,-26],[0,-27],[0,-85],[1,-32],[1,-68],[1,-44],[1,-49],[1,-95],[1,-29],[0,-134],[1,-93],[0,-40],[-472,3],[-35,0],[-146,1],[-94,0],[-42,1],[-1,0],[-212,1],[-28,0],[-216,-1],[-39,0],[-65,-1],[-89,-2],[-85,-1],[-1,0],[-257,-5],[-310,-6],[-126,-2],[-243,-2],[-64,2],[-45,1],[-136,4],[-46,2],[-130,4],[-79,7],[-48,-1],[-76,-1],[-42,0],[-103,0],[-105,0],[-45,0],[-64,0],[-35,0],[-95,0],[-64,-1],[-119,0],[-101,0],[-105,0],[-67,1],[-74,-1],[-3,0],[-208,-4],[-640,-1],[-159,0],[-632,-1],[-59,-1],[-83,0],[-55,1],[-5,0],[-34,3],[-41,-1],[-31,-1],[-2,0],[-43,2],[-34,0],[-7,0],[-34,0],[-114,0],[-72,0],[-51,0],[-42,0],[-92,0],[-92,0],[-37,0],[-54,0],[-88,0],[-47,0],[-46,0],[-61,1],[-58,0],[-47,-1],[-72,-1],[-64,0],[-63,-1],[-63,0],[-395,1],[-193,1],[-263,1],[-185,1],[-235,0],[-43,0],[-75,-1],[-31,-1],[-107,1]],[[87513,88994],[3,-122],[1,-27],[1,-55],[2,-98],[-7,-279],[-1,-34],[-1,-43],[0,-14],[0,-9],[-1,-122],[-1,-200],[-1,-31],[-1,-302],[-1,-166],[0,-6],[-1,-128],[2,-47],[-1,-73],[0,-42],[1,-73],[-3,-70],[-1,-147],[1,-40],[1,-55],[0,-55],[1,-51],[0,-59],[0,-21],[1,-36],[3,-99],[1,-23],[-2,-44],[0,-67],[-69,-3],[0,-27],[-1,-31],[0,-170],[0,-57],[1,-138],[0,-234],[0,-72],[0,-304],[-1,-46],[0,-50],[0,-141],[0,-1],[0,-140],[0,-71],[2,-37],[0,-1],[0,-26],[3,-21],[-1,-82],[0,-49],[-1,-43],[-6,-63],[1,-48],[6,-51],[-1,-69],[1,-89],[1,-65],[1,-33],[-2,-55],[0,-62],[1,-174],[0,-27],[0,-1],[0,-30],[2,-136],[0,-23],[2,-136],[-1,-22],[1,-63],[9,-131],[13,-188],[-1,-55],[0,-7],[2,-26],[-2,-79],[-2,-119],[2,-21],[-6,-127],[0,-15],[-2,-162],[-2,-336],[2,-27],[1,-76],[1,-45],[6,-76],[4,-38],[-7,-139],[1,-70],[2,-157],[1,-85],[0,-24],[2,-118],[1,-43],[3,-113]],[[87476,81188],[-57,0],[-247,0],[-139,0],[-81,0],[-144,0],[-89,1],[-144,0],[-52,-1],[-175,0],[-40,-1],[-49,0],[-155,-2],[-36,3],[-68,-1],[-14,0],[-38,-1],[-77,0],[-103,1],[-41,0],[-106,0],[-46,0],[-34,0],[-37,0],[-85,0],[-57,1],[-33,-1],[-34,0],[-32,1],[-36,0],[-36,1],[-36,1],[-42,1],[-62,2],[-30,-1],[-46,1],[-120,0],[-39,0],[-7,0],[-47,0],[-125,0],[-243,-1],[-54,0],[-81,-1],[-237,0],[-189,-1],[-1,0],[-100,0],[-207,2],[-239,1],[-219,2],[-40,0],[-29,0],[-2,0],[-74,0],[-70,0],[-29,1],[-39,-2],[-60,0],[-84,0],[-26,0],[-2,0],[-68,1],[-4,-226],[-1,-33],[0,-21],[0,-28]],[[82539,80887],[-10,0],[-126,1],[-44,1],[-92,1],[-66,1],[-56,3],[-9,0],[-139,0],[-51,0],[-96,-1],[-92,0],[-93,0],[-52,-1],[-70,0],[-93,0],[-68,0],[-82,0],[-80,0],[-166,0],[-134,0],[-94,0],[-226,0],[-29,1],[-77,0],[-31,0],[-108,0],[-56,0],[-78,0],[-68,0],[-68,0],[-89,1],[-75,0],[-48,0],[-29,-1],[-39,2],[-96,0],[-81,0],[-57,1]],[[79571,80896],[0,50],[1,74],[0,49],[0,54],[-1,82],[0,89],[0,54],[0,74],[0,84],[1,35],[0,38],[-1,52],[1,50],[2,43],[0,46],[-1,26],[0,45],[-1,23],[-1,28],[3,45],[0,112],[0,79],[-2,26],[1,22],[2,43],[-1,45],[-1,31],[-1,29],[3,30],[-1,23],[0,36],[-2,187],[-1,115],[-1,72],[-1,143],[0,2],[-3,234],[-3,298],[-1,112],[0,42],[-2,132],[0,21],[-4,348],[-1,42],[-1,64],[0,1],[-1,62],[0,46],[-1,62],[0,22],[-1,68],[-1,44],[-1,27],[-1,42],[0,37],[0,28],[-2,59],[0,218],[-1,35],[1,42],[1,160],[1,38],[0,70],[0,71],[2,72],[-2,47],[-1,44],[0,47],[0,28],[0,26],[0,27],[-2,35],[1,47],[1,76],[0,192],[1,63],[0,62],[-3,58],[-1,138],[0,2],[20,18],[0,123],[0,1],[0,25],[0,29],[0,22],[0,25],[-1,41],[-1,64],[0,40],[0,44],[1,156]],[[98357,88951],[-7,-46],[-5,-35],[-5,-32],[-2,-13],[-1,-4],[-7,-45],[0,-1],[-7,-46],[-10,-66],[-21,-136],[-4,-24],[-9,-46],[-3,-21],[-6,-43],[-1,-5],[-5,-30],[-13,-80],[-10,-54],[-10,-64],[-5,-31],[-13,-82],[-5,-27],[-7,-37],[-3,-23],[-3,-22],[-4,-28],[-11,-70],[-15,-97],[-6,-37],[-6,-41],[-6,-29],[-19,-113],[-14,-82],[-4,-28],[-8,-51],[-6,-43],[-2,-30],[-3,-22],[-4,-23],[-10,-48],[-14,-73],[-9,-59],[-27,-157],[-32,-184],[-48,-276],[-10,-54],[-12,-71],[-29,-169],[-20,-112],[-3,-18],[-3,-21],[-7,-38],[-7,-42],[-7,-39],[-4,-21],[-37,-229],[-1,-1],[-4,-34],[-3,-21],[-4,-27],[-1,-7],[-7,-37],[-3,-18],[-2,-19],[-4,-16],[-2,-20],[-10,-28],[-11,-61],[-30,-173],[-15,-86],[-10,-57],[-18,-105],[-18,-99],[0,-3],[-22,-125],[-7,-39],[-19,-108],[-3,-19],[-10,-36],[-70,-395],[-31,-174],[-7,-54],[-2,-26],[-9,-131],[0,-3],[-6,-98],[-3,-24],[-5,-20],[-15,-54],[-66,-230],[-5,-40],[-35,-266],[-68,-366],[-9,-50],[-38,-206],[-64,-349],[-13,-72],[-14,-74],[-15,-80],[-6,-36],[-48,-286],[-7,-31],[-10,-59],[-21,-131],[-12,-71],[-5,-31]],[[97020,81137],[-123,1],[-560,2],[-52,-1],[-62,-2],[-21,6],[-321,1],[-159,2],[-159,1],[-2,0],[-352,2],[-137,0],[-239,1],[-196,1],[-151,0],[-64,1],[-196,1],[-66,0],[-166,1],[-343,2],[-154,0],[-79,-1],[-501,2],[-5,0],[-29,2],[-80,1],[-411,1],[-98,0],[-40,0],[-47,-1],[-45,-1],[-31,0],[-21,0],[-60,0],[-63,-1],[-25,0],[-12,0],[-36,0],[-56,0],[-24,0],[-74,-1],[-11,0],[-18,0],[-50,0],[-38,0],[-78,-1],[-13,0],[-60,0],[-3,0],[-3,0],[-28,0],[-26,0],[-140,3],[-43,0],[-422,7],[-63,1],[-133,2],[-215,3],[-379,6],[-18,0],[-189,2],[-80,0],[-31,1],[-46,0],[-4,0],[-183,2],[-36,0],[-105,2],[-89,1],[-4,0],[-373,4],[-186,-1],[-36,0],[-63,-1],[-68,0],[-135,0],[-1,0],[-207,0],[-70,0],[-93,0],[-167,0],[-55,0],[-97,0],[-31,0],[-46,0],[-148,0]],[[79571,80896],[-75,0],[-70,1],[-185,-1],[-40,0],[-44,0],[-103,0],[-136,0],[-209,-1],[-36,0],[-61,0],[-42,1],[-256,0],[-40,1],[-56,-1],[-68,1],[-146,1],[-55,-1],[-83,0],[-115,1],[-121,0],[-146,-1],[-129,-1],[-110,-3],[-66,3],[-123,0],[-195,-1],[-122,0],[-65,0],[-232,0],[-183,-1],[-138,0],[-243,0],[-61,0],[-83,0],[-40,-1],[-256,0],[-204,-1],[-467,0],[-58,0],[-48,0],[-2,0],[-113,-5],[-1,0],[-44,0],[-29,-1],[-83,0],[-164,0],[-220,0],[-34,0],[-2,0],[-82,-1],[-179,1],[-146,-1],[-21,0],[-238,0],[-453,-1],[-311,-1],[-17,0],[-83,0],[-135,0],[-592,-1],[-68,0],[-249,-1],[-83,0],[-190,-2],[-197,0],[-14,0],[-105,0],[-80,0]],[[70726,80879],[-278,-1],[-481,0],[-112,-1],[-123,0],[-253,0],[-356,0],[-37,0],[-48,0],[-393,-1],[-81,0],[-67,0],[-375,-1],[-356,0],[-1,72],[-2,72],[-1,105],[-1,25],[-6,329],[-5,290],[-3,157],[-8,495],[-1,62],[0,25],[0,1],[-2,177]],[[60307,82704],[0,-32],[-2,-103],[-1,-56],[-3,-198],[0,-61],[-3,-180],[-2,-137],[14,-72],[1,-173],[1,-127],[-5,-290],[3,-30],[0,-13],[10,-420],[41,0],[1,-52],[0,-25],[0,-1],[1,-92],[0,-1],[3,-256],[2,-182],[3,-272],[1,-104],[2,-60],[2,-159],[-5,-265],[1,-372],[0,-188],[1,-317],[0,-292],[0,-59],[0,-79],[1,-299],[1,-167],[0,-135],[-1,-41],[-1,-195],[0,-78],[0,-95],[0,-63],[0,-213],[3,-25],[-1,-134]],[[60375,76591],[-318,0],[-225,0],[-132,0],[-147,0],[-448,-1],[-198,0],[-351,0],[-398,0],[-181,0],[-162,0],[-333,-1],[-417,-5],[-73,0],[-725,4],[-381,-3],[-102,0],[-42,0],[-76,-3],[-288,-2],[-259,3],[-41,1],[-43,0],[-57,0],[-211,0],[-296,0],[-76,1],[-140,1],[-69,0],[-67,-1],[-40,0],[-69,0],[-49,0],[-50,0],[-137,0],[-166,3],[-57,2],[-72,0],[-465,-2],[-4,147],[-1,84],[1,232],[0,38],[0,118],[-210,1],[-72,1],[-1,0],[-55,-4],[-48,1],[-428,4],[-326,3],[-217,2],[-123,1],[-156,1],[-112,1],[-333,3],[-78,1],[-16,0],[-225,2],[-1,0],[-203,2],[-49,0],[-1,0],[-49,0],[-52,1],[-219,0],[-316,-1],[-278,-1],[-414,-1],[-372,0],[-54,0]],[[48602,77224],[1,50],[0,48],[1,51],[2,172],[2,79],[0,33],[1,87],[1,42],[2,183],[2,90],[0,21],[0,30],[2,136],[2,97],[4,134],[0,33],[0,37],[0,62],[2,114],[-6,35],[-4,39],[-3,34],[-11,53],[-3,57],[-11,90],[1,115],[1,118],[1,79],[1,132],[1,54],[0,25],[5,381],[2,190],[0,59],[1,97],[1,48],[1,92],[-3,49],[1,21],[0,20],[0,25],[-3,34],[0,29],[2,57],[0,27],[0,25],[3,92],[1,48],[6,164],[0,1],[0,62],[2,145],[0,32],[3,343],[2,176],[1,68],[-7,98],[1,117],[0,21],[6,30],[3,152],[-86,38],[-89,40],[3,204],[0,18],[1,23],[2,131],[1,39]],[[48602,77224],[-1,-104],[1,-74],[3,-189],[1,-50],[1,-57],[-6,-69],[0,-129],[-1,-262],[-1,-238],[-1,-225],[-1,-141],[-34,0],[-318,2],[-149,1],[-53,1],[-201,1],[-62,0],[-289,0],[-184,-1],[-119,0],[-51,0],[-2,-149],[-2,-149],[-31,0],[-206,0],[-67,0],[-190,1],[-114,0],[-3,0],[-60,0],[-122,0],[-37,1],[-514,3],[-68,1],[-352,2],[-20,1],[-81,0],[-349,2],[-498,1],[-63,1],[-75,1],[-105,1],[-39,0],[-291,-1],[-34,0],[-160,2],[-50,1],[-86,0],[-32,0],[-288,-2],[-190,-8],[-88,-3],[-233,-11],[0,-65],[-1,-137],[0,-39],[0,-47],[0,-45],[-1,-47],[0,-30],[0,-74],[-1,-118],[1,-104],[-1,-56],[0,-68],[-1,-56],[0,-6],[-1,-53],[2,-115],[0,-169],[-1,-135],[-1,-97],[-2,-284],[-1,-74]],[[42679,73566],[-63,0],[-200,0],[-187,0],[-46,0],[-48,-1],[-73,0],[-32,2],[-28,-1],[-121,0],[-264,1],[-516,2],[-51,1],[-55,0],[-97,1],[-293,2],[-184,2],[-45,0],[-2,0],[-34,1],[-36,48],[-25,34],[-41,41],[-2,1],[-3,4],[-83,61],[-54,40],[-22,16],[-16,8],[-13,4],[-46,12],[-152,21],[-30,5],[-13,3],[-23,4],[-36,0],[-35,-3],[-54,-13],[-2,-1],[-81,-20],[-6,-2],[-49,-18],[-8,-3],[-16,-7],[-23,-18],[-9,-7],[-4,-4],[-8,-8],[-17,-26],[-2,-3],[-1,-23],[-11,-62],[-13,-56],[-22,-60],[-1,-1],[-3,-7],[-5,-14],[-44,-91],[-9,-16],[-25,-35],[-20,-25],[-10,-9],[-41,-39],[-24,-26],[-11,-16],[-12,-18],[-2,-9],[-1,-4],[-4,-19],[-1,-11],[-3,-10],[-8,-11],[-10,-10],[-29,-26],[-13,-11],[-51,-31],[-50,-28],[-27,-13],[-20,-7],[-53,-15],[-1,0],[-19,-3],[-1,-2],[-68,-18],[-59,-10],[-11,-2],[-53,-9],[-57,-6],[-40,0],[-32,2],[-115,12],[-25,3],[-34,9],[-18,8],[-22,11],[-37,19],[-2,0],[-13,3],[-27,3],[-4,1],[-8,0],[-4,0],[-40,-1],[-56,-2],[-44,7],[-27,9],[-18,12],[-13,12],[-1,0],[-13,18],[-26,49],[-6,13],[-1,2],[-28,52],[-7,10],[-27,33],[-89,84],[-42,38],[-34,26],[-7,8],[-10,10],[-4,8],[-22,37],[-3,26],[-3,28],[-2,20],[-5,52],[-3,72],[44,106],[2,4],[14,22],[0,1],[14,21],[25,33],[1,0],[86,99],[16,19],[3,3],[7,7],[35,30],[9,7],[15,13],[28,17],[8,5],[160,92],[16,7],[37,2],[127,1],[6,0],[36,4],[57,13],[26,10],[56,20],[49,15],[24,8],[61,17],[3,1],[32,15],[40,6],[30,-1],[44,9],[28,-2],[24,6],[53,9],[48,7],[65,13],[96,29],[52,10],[58,11],[76,10],[32,10],[57,20],[29,7],[39,5],[66,1],[58,-5],[33,1],[26,9],[32,2],[33,-20],[19,-16],[42,-12],[47,14],[10,27],[0,7],[1,11],[91,-5],[74,-7],[1,0],[63,-40],[83,-15],[98,-9],[354,9],[102,-2],[151,-4],[4,1],[180,39],[4,1],[58,14],[1,0],[143,38],[6,4],[46,32],[86,57],[40,23],[20,12],[85,78],[12,11],[36,44],[13,16],[4,7],[21,45],[1,2],[53,101],[3,4],[11,12],[5,13],[1,1],[0,2],[1,16],[-3,15],[-1,2],[-3,14],[-10,16],[-13,16],[-1,2],[-20,15],[-30,15],[-26,10],[-42,12],[-26,10],[-18,12],[-99,88],[-6,6],[-1,19],[5,8],[7,8],[12,8],[28,25],[1,1],[6,8],[6,16],[1,2],[-1,4],[0,12],[-3,6],[-3,4],[-19,23],[-43,35],[-10,10],[-2,3],[-7,14],[-342,1],[-1,0],[-71,1],[-85,0],[-1,0],[-113,0],[-150,5],[-129,4],[-100,-2],[-30,0],[-31,1],[-107,1],[-37,0],[-29,0],[-39,0],[-69,0],[-69,1],[-142,1],[-30,1],[-161,3],[-71,2],[-91,-3],[-84,-5],[-43,0],[-50,0],[-45,0],[-64,0],[-64,0],[-69,0],[-67,0],[-31,-1],[-66,0],[-59,0],[-44,5],[-20,-1],[-18,0],[-60,-2],[-34,1],[-29,-1],[-43,0],[-51,1],[-31,0],[-32,-1],[-42,1],[-31,-1],[-181,-5],[-217,3],[-110,1],[-620,7],[-50,0],[-42,-1],[-47,0],[-76,0],[-54,0],[-120,2],[-57,1],[-35,0],[-51,1],[-55,0],[-68,0],[-29,0],[-68,1],[-330,4],[-65,0],[-78,2],[-45,0],[-36,-1],[-64,1],[-71,1],[-50,-1],[-74,1],[-305,0],[-97,0],[-39,1],[-31,1],[-34,-1],[-165,1],[-188,3],[-48,1],[-68,0],[-61,0],[-29,1],[-30,0],[-101,0],[-1,0],[-164,2],[-534,5]],[[33828,75428],[1,9],[3,17],[1,42],[2,78],[1,60],[0,24],[0,1],[0,23],[1,28],[9,92],[0,52],[-1,1],[-3,97],[-2,60],[2,119],[-1,27],[0,1],[2,36],[-3,39],[1,21],[-1,72],[1,41],[1,66],[1,42],[2,75],[2,85],[1,69],[2,42],[0,36],[0,149],[0,31],[0,47],[-1,31],[1,23],[0,22],[0,21],[4,48],[0,76],[1,71],[0,84],[2,24],[-1,21],[-2,18],[0,7],[4,67],[1,310],[3,191],[0,23],[-1,88],[1,121],[0,31],[0,28],[2,35],[0,22],[0,30],[0,33],[-1,21],[0,48],[1,13],[1,17],[0,34],[0,22],[0,27],[0,36],[0,32],[1,53],[-5,52],[-6,100],[0,4],[-5,52],[-1,32],[-3,39],[-1,27]],[[70726,80879],[1,-86],[1,-34],[2,-109],[1,-78],[0,-58],[5,-423],[-1,-23],[0,-1],[2,-92],[3,-156],[1,-156],[3,-212],[1,-23],[-4,-85],[3,-282],[2,-175],[0,-1],[4,-50],[1,-78],[2,-130],[0,-35],[1,-41],[1,-114],[2,-85],[0,-93],[1,-66],[3,-150],[1,-197],[0,-61],[0,-130],[3,-84],[3,-28],[0,-67],[2,-324],[-2,-63],[-5,-176],[-1,-18],[-2,-25],[-1,-15],[-1,-16],[-4,-33],[-1,-5],[0,-2],[3,-49],[-2,-30],[3,-131],[2,-111],[6,-261],[0,-59],[0,-66],[1,-53],[0,-41],[-1,-302],[-3,-187],[0,-66],[-198,-1],[-283,-2],[-31,0],[-210,-1],[-106,-1],[-90,0],[-271,-2],[-66,0],[-212,-2],[-3,-81],[-1,-49],[-3,-95],[-5,-166],[-3,-97],[-2,-90],[-3,-113],[-8,-275],[-2,-28],[-3,-98],[-1,-38],[-7,-153],[-6,-152],[-2,-81]],[[69246,73918],[-1,-63],[-1,-140],[-1,-113],[-1,-26],[-67,0],[-626,-3],[-245,-2],[-105,0],[-83,-1],[-231,-1],[-279,-4],[-141,0],[-199,0],[-55,0],[-374,1],[-3,0],[-73,0],[-196,0],[-228,0],[-497,-1],[-265,0],[-46,0],[-34,0],[-124,0],[-50,0],[-252,1],[-476,0],[-122,0],[-80,0],[-126,0],[-76,0],[-14,0],[-42,0],[-40,0],[-110,0],[-142,0],[-80,1],[-112,0],[-314,0],[-635,1],[-109,0],[-51,0],[-75,0],[-54,0],[-106,0],[-90,0],[-106,0],[-150,0],[-159,0],[-56,0],[-142,0],[-404,1],[-210,-1],[-60,2],[-72,0],[-55,-1],[-70,0],[-78,1],[-70,-1],[-62,0],[-50,0],[-44,1],[-46,-1]],[[60381,73569],[0,122],[-1,140],[0,39],[0,117],[0,31],[0,76],[1,62],[-1,36],[-2,144],[-1,77],[0,1],[0,21],[-3,211],[2,35],[0,24],[2,307],[-1,366],[0,48],[-1,142],[0,1],[0,415],[-1,380],[0,115],[0,112]],[[28054,79083],[0,-48],[-2,-253],[-1,-59],[-1,-153],[3,-98],[1,-46],[2,-85],[1,-32],[0,-22],[-2,-232],[-3,-117],[-1,-26],[-2,-74],[-3,-104],[-1,-228],[-5,-27],[5,-22],[0,-22],[0,-45],[-1,-44],[-1,-29],[-3,-29],[0,-22],[1,-46],[0,-35],[-4,-50],[0,-24],[-1,-34],[0,-30],[-1,-25],[-1,-44],[-2,-58],[0,-28],[-1,-37],[-1,-22],[-2,-71],[-1,-28],[-1,-60],[-2,-75],[0,-49],[0,-28],[0,-74],[-4,-149],[0,-9],[-1,-46],[1,-92],[0,-25],[2,-53],[-6,-101],[-2,-110],[1,-27],[2,-33],[0,-38],[-3,-145],[-1,-80],[-1,-184],[0,-25],[-1,-170],[-2,-180],[0,-43],[0,-78],[0,-4],[-1,-85],[-2,-46],[0,-38],[0,-21],[0,-25],[1,-30],[-1,-43],[0,-27],[0,-44],[-1,-36],[-1,-28],[-1,-22],[1,-35],[-1,-33],[0,-23],[-1,-37],[0,-29],[-1,-41],[0,-38],[0,-21],[-1,-34],[-1,-37],[0,-24],[0,-23],[-1,-23],[-1,-25],[0,-40],[0,-12],[-1,-19],[0,-34],[-1,-34],[-1,-28],[1,-33],[0,-115],[0,-38],[0,-27],[7,-71],[1,-21],[7,-21],[3,-25],[-10,-215],[1,-54],[4,-217],[1,-30],[2,-137],[-1,-23],[-2,-74],[0,-21],[0,-1],[4,-20],[0,-50],[0,-42],[-1,-81],[0,-71],[0,-34],[-1,-53],[0,-44],[0,-33],[0,-38],[0,-43],[0,-54],[0,-52],[0,-30],[-1,-83],[0,-37],[-1,-52],[1,-26],[0,-11],[0,-25],[0,-21],[0,-24],[-1,-34],[0,-41],[0,-24],[0,-83],[0,-52],[0,-59],[1,-75],[0,-26],[-53,1],[-90,1],[-66,0],[-55,0],[-47,-1],[-62,0],[-59,-1],[-47,0],[-35,0],[-83,1],[-113,1],[-36,-2],[-70,0],[-123,0],[-43,-1],[-47,0],[-42,1],[-32,1],[-47,0],[-203,-1],[-52,-1],[-32,0],[-47,0],[-79,0],[-127,1],[-35,0],[-28,1],[-77,-1],[-133,0],[-80,0],[-36,-1],[-31,0],[-68,0],[-35,0],[-40,0],[-76,0],[-203,-1],[-37,-1],[-64,0],[-58,-1],[-56,0],[-49,0],[-42,1],[-49,1],[-61,-1],[0,-71],[0,-49],[0,-27],[0,-25],[4,-25],[1,-29],[-5,-27],[1,-27],[0,-26],[0,-8],[1,-36],[0,-22],[0,-24],[0,-31],[1,-38],[0,-42],[0,-34],[0,-64],[0,-101],[0,-26],[0,-34],[0,-66],[0,-21],[0,-41],[0,-48],[0,-32],[-1,-26],[0,-61],[-2,-33],[-1,-46],[0,-29],[0,-45],[0,-32],[0,-64],[-3,-54],[-1,-50],[3,-100],[0,-6],[3,-29],[1,-25],[1,-21],[-4,-205]],[[25060,69577],[-36,0],[-54,0],[-42,-2],[-31,0],[-30,2],[-33,1],[-42,0],[-30,0],[-37,1],[-36,0],[-64,1],[-43,0],[-52,0],[-39,0],[-48,1],[-46,1],[-33,0],[-29,0],[-34,1],[-38,0],[-38,0],[-63,0],[-37,2],[-65,0],[-63,0],[-67,0],[-67,0],[-88,0],[-31,0],[-71,0],[-37,1],[-36,0],[-54,0],[-33,0],[-48,0],[-36,0],[-34,1],[-3,0],[-25,0],[-33,0],[-43,0],[-46,-1],[-31,0],[-51,0],[-48,0],[-30,-1],[-88,-1],[-53,-1],[-35,-1],[-110,-2],[-179,-2],[-92,0],[-96,1],[-28,-1],[-33,0],[-42,0],[-35,0],[-26,0],[-10,-1],[-49,0],[-34,0],[-41,0],[-52,-1],[-90,1],[-69,-1],[-72,7],[-47,4],[-70,6],[-37,3],[-36,3],[-96,0],[-70,1],[-229,1],[-288,-1],[-177,-3],[-29,0],[-82,-1],[-48,0],[-16,0],[-23,-1],[-86,-1],[-31,0],[-39,0],[-48,0],[-72,0],[-43,0],[-29,0],[-48,0],[-42,0],[-126,0],[-42,0],[-56,0],[-31,1],[-96,0],[-59,-1],[-130,0],[-48,0],[-60,1],[-32,0],[-38,1],[-32,0],[-115,-1],[-48,0],[-40,0],[-29,0],[-39,0],[-116,0],[-38,1],[-55,0],[-43,1],[-121,1],[-54,0],[-44,0],[-73,1],[-37,-1],[-40,1],[-40,-1],[-8,0],[-66,0],[-32,-1],[-34,0],[-42,0],[-34,-1],[-35,0],[-29,0],[-28,0],[-53,1],[-37,-2],[-34,-1],[-31,0],[-32,-1],[-58,-1],[-33,-1],[-29,0],[-32,0],[-33,0],[-101,0],[-44,-1],[-33,0],[-38,1],[-79,0],[-41,0],[-64,0],[-32,0],[-30,0],[-62,0],[-38,0],[-34,0],[-28,0],[-40,0],[-62,0],[-65,0],[-122,0],[-87,0],[-43,-1],[-28,-1],[-60,0],[-36,0],[-35,0],[-31,-1],[-28,0],[-90,-2],[-45,0],[-46,0],[-48,0],[-33,0],[-34,-1],[-31,1],[-1,0],[-32,0],[-29,0],[-50,1],[-44,0],[-45,1],[-32,-1],[-52,-1],[-52,-2],[-41,0],[-45,0],[-42,-1],[-80,0],[-31,0],[-31,0],[-30,0],[-33,0],[-32,-1],[-33,0],[-35,0],[-68,0],[-36,0],[-35,0],[-66,0],[-61,-1],[-45,0],[-99,0],[-102,1],[-39,1],[-267,-2],[-103,0],[-36,0],[-111,-1],[-36,0],[-7,0],[-24,0],[-29,0],[-87,-1],[-35,0],[-34,0],[-18,0],[-51,0],[-41,0],[-36,0],[-40,-1],[-32,0],[-103,0],[-34,0],[-31,0],[-92,-1],[-31,0],[-33,0],[-101,-1],[-42,0],[-33,0],[-37,0],[-37,0],[-40,0],[-40,0],[-58,1],[-40,0],[-49,0],[-88,0],[-66,0],[-29,0],[-45,0],[-31,0],[-36,0],[-67,0],[-66,0],[-30,0],[-52,0],[-2,0],[-40,0],[-42,0],[-32,0],[-105,-6]],[[12375,69571],[-186,89],[-51,48],[-49,58],[-21,25],[-66,83],[-54,72],[-53,80],[-25,63],[5,63],[1,11],[3,38],[41,40],[48,48],[89,49],[90,34],[21,7],[47,9],[26,1],[112,3],[266,23],[143,22],[79,30],[14,6],[143,43],[165,63],[83,42],[75,38],[11,2],[132,28],[309,-25],[36,-3],[159,-5],[18,0],[148,27],[87,36],[69,29],[162,61],[180,101],[55,47],[60,103],[11,36],[1,13],[7,83],[-30,95],[-37,74],[-26,45],[-61,88],[-39,45],[-93,63],[-76,22],[-24,7],[-105,27],[-129,87],[-165,81],[-109,71],[-8,5],[-164,83],[-86,41],[-17,8],[-33,15],[-30,9],[-23,4],[-30,5],[-39,15],[-280,76],[-110,19],[-147,26],[-170,18],[-9,0],[-132,4],[-37,12],[-23,15],[-127,21],[-154,45],[-153,104],[-105,100],[-22,129],[64,160],[103,103],[194,115],[17,7],[58,32],[11,3],[100,29],[89,25],[9,3],[37,5],[73,11],[54,7],[95,3],[100,0],[320,2],[107,10],[169,16],[205,48],[51,24],[15,5],[52,1],[37,-29],[248,-199],[317,-252],[198,-166],[614,-215],[263,-101],[260,-57],[143,-11],[228,21],[67,19],[254,73],[223,77],[243,34],[165,12],[128,29],[124,42],[99,94],[52,104],[-11,131],[-28,9],[-124,16],[-16,52],[-66,103],[-92,89],[-21,20],[-151,120],[-249,122],[-182,49],[-127,13],[-129,-37],[-106,-19],[-116,-46],[-256,-88],[-195,-35],[-305,-20],[-29,1],[-254,13],[-219,71],[-145,85],[-260,182],[-75,59],[-60,48],[-46,79],[-5,49],[31,55],[5,55],[-8,10],[5,35],[6,43],[30,54],[21,31],[-32,60],[-10,21],[62,79],[47,82],[-10,53],[-59,21],[-40,44],[10,106],[175,206],[98,68],[72,23],[144,-6],[267,-88],[149,-78],[22,-11],[117,-82],[69,-9],[233,63],[236,52],[281,-14],[52,4],[79,16],[39,19],[18,9],[83,-2],[7,-1],[26,-7],[116,-4],[199,28],[106,-3],[12,-5],[269,-110],[333,-137],[205,-57],[173,18],[219,38],[275,80],[46,24],[115,60],[55,49],[68,95],[21,102],[-17,53],[-84,104],[-223,131],[-212,67],[-193,21],[-262,41],[-28,8],[-393,114],[-115,42],[-108,39],[-9,8],[-13,17],[-113,136],[-55,51],[-39,43],[0,6],[-60,28],[-26,13],[-65,44],[-116,97],[-92,84],[-19,29],[-3,36],[-1,11],[-54,129],[-36,30],[-9,18],[-13,25],[1,8],[4,46],[45,25],[43,3],[50,28],[83,117],[9,15],[14,161],[15,25],[59,38],[53,50],[41,40],[63,37],[119,88],[294,172],[158,92],[42,32],[115,88],[54,32],[152,125],[76,84],[16,28],[-11,81],[-34,95],[-58,75],[-31,45],[-17,47],[2,29],[-142,93],[-93,31],[-45,15],[-84,21],[-46,14],[-138,38],[-147,36],[-64,10],[-68,5],[-13,0],[-86,0],[-106,17],[-81,27],[-3,1],[-84,16],[-62,7],[-104,11],[-141,15],[-43,-1],[-37,9],[-50,22],[-80,26],[-36,25],[-63,67],[0,5],[-23,32],[5,85],[2,40],[37,82],[39,56],[65,55],[112,61],[45,15],[48,26],[51,28],[48,11],[233,6],[24,-1],[233,-7],[224,3],[69,3],[30,7],[45,17],[63,34],[24,29],[14,17],[47,26],[43,23],[58,24],[66,11],[229,69],[111,43],[35,17],[32,15],[70,-84],[8,-9],[3,-3],[138,-211],[166,-230],[22,-84],[56,-66],[73,-56],[99,-39],[203,-49],[120,-12],[241,12],[172,43],[139,100],[61,138],[0,117],[-60,61],[-134,122],[-72,66],[-182,95],[-47,17],[-19,6],[-3,51],[-60,105],[-148,258],[59,18],[145,32],[100,20],[61,9],[61,8],[137,-4],[128,-15],[136,-17],[189,-6],[323,13],[109,12],[57,14],[92,15],[152,22],[66,13],[57,-22],[139,-20],[106,-1],[221,20],[205,35],[132,49],[91,58],[53,75],[1,87],[-57,182],[13,125],[50,100],[5,10],[128,129],[197,158],[79,87],[49,99],[-14,94],[-76,74],[-103,102],[-187,73],[-231,18],[-93,-21],[-156,-46],[-276,-28],[-11,0],[-198,-6],[-106,32],[-35,17],[-306,175],[-83,39],[-66,26],[-77,2],[-50,17],[-26,9],[-42,30],[-47,33],[-17,44],[-74,48],[-105,63],[-23,27]],[[97020,81137],[0,-1],[-53,-328],[-8,-49],[-16,-100],[-18,-107],[-22,-139],[-26,-163],[-51,-303],[-28,-154],[-5,-24],[-39,-211],[-10,-54],[-1,-7],[-18,-95],[-11,-59],[-29,-164],[-15,-79],[-17,-96],[-9,-49],[-7,-53],[-75,-390],[-12,-66],[-2,-10],[-1,-4],[-31,-158],[-15,-79],[-51,-337],[-4,-30],[-61,-295],[-2,-26],[-19,-89],[-12,-57],[-4,-21],[-8,-38],[-9,-51],[-20,-149],[0,-1],[-1,-2],[-5,-31],[-8,-43],[-6,-30],[-4,-24],[0,-1],[-24,-129],[-6,-32],[-12,-59],[-8,-46],[-3,-30],[-6,-30],[-80,-394],[-17,-79],[-74,-461],[-18,-97],[-37,-196],[-31,-124],[-11,-40],[-14,-54],[-27,-97],[-32,-291],[-4,-28],[-44,-271],[-1,-5],[-1,-5],[-17,-101],[-36,-207],[-7,-38],[-24,-106]],[[95753,74050],[-31,-4],[-802,1],[-294,0],[-169,0],[-484,1],[-29,1],[-137,2],[-24,-15],[-60,-14],[-21,18],[-63,25],[-2,0],[-8,0],[-17,-3],[-20,-12],[-1,-1],[-8,-6],[-4,-10],[4,-26],[2,-21],[-21,-73],[44,-63],[25,-78],[-58,-112],[2,-14],[-5,-7],[-1,0],[-113,-111],[-45,-29],[-60,-16],[-7,-2],[-29,-2],[-11,1],[-28,4],[-2,-2],[-60,-42],[-42,-30],[-24,-50],[44,-38],[38,-20],[-146,-60],[-12,-8],[-44,-33],[-8,-5],[-13,-5],[-17,-7],[0,-3],[-14,-11],[-31,-18],[-3,-1],[-20,-9],[-34,-11],[-6,-1],[-60,-11],[-29,-8],[-23,-11],[-25,-13],[-73,-50],[-12,-8],[-87,-42],[-7,-4],[-68,-80],[-13,-8],[-23,-7],[-35,-4],[-47,-1],[-9,0],[-36,2],[-2,-53],[-1,-9],[-101,-13],[-16,-1],[-10,0],[-5,0],[-14,1],[-81,12],[-20,3],[-1,1],[-3,1],[-34,9],[-113,60],[-6,3],[8,33],[9,36],[2,10],[-8,0],[-62,0],[-3,0],[-67,12],[-14,5],[-96,28],[-43,-2],[-1,0],[-1,0],[-14,-3],[-9,-5],[-2,-1],[-1,0],[-102,-109],[-1,-1],[-3,-4],[-2,-10],[39,-73],[4,-6],[3,-2],[16,-7],[26,-4],[2,0],[0,-1],[-54,-14],[-119,-1],[-8,-2],[-11,-11],[-1,-1],[-70,-89],[-21,-55],[-3,-7],[-1,-3],[-2,-14],[0,-3],[0,-4],[0,-20],[0,-4],[-133,7],[-59,56],[0,1],[1,7],[-13,8],[-10,0],[-48,-12],[-12,-4],[1,-2],[20,-34],[44,-73],[-62,-18],[-9,-2],[-64,-19],[-7,-1],[-63,3],[-2,0],[-44,3],[-1,0],[-15,3],[-5,4],[4,6],[4,3],[20,5],[23,14],[8,11],[6,11],[2,9],[-12,7],[-90,42],[-23,1],[-19,-5],[-12,-3],[-78,-12],[-78,-12],[-13,-29],[-18,-31],[-29,-19],[-34,-13],[-42,-11],[-54,3],[-16,3],[-25,1],[-59,3],[-1,0],[-52,-44],[-9,-3],[-81,-17],[-19,-2],[-12,3],[-15,9],[-2,11],[2,5],[9,7],[1,7],[7,39],[0,8],[-2,1],[-11,3],[-8,0],[-14,-2],[-101,-38],[-15,-8],[-1,0],[-1,-1],[-18,-16],[-25,-29],[-4,-4],[-11,-40],[-1,-3],[-51,-11],[-3,-1],[-5,-1],[-23,-3],[-35,-3],[-15,1],[-22,1],[-3,1],[-20,3],[-15,8],[-2,3],[0,11],[7,12],[1,1],[4,5],[4,6],[-3,14],[-1,3],[-8,7],[-14,9],[-100,15],[-15,-3],[-8,-6],[-1,-9],[-1,0],[2,-4],[4,-14],[24,-53],[1,-3],[-83,0],[-25,1],[-36,7],[-1,0],[-2,1],[-22,7],[-8,5],[-1,5],[-1,6],[2,5],[0,1],[2,16],[-2,5],[-11,10],[-8,2],[-1,0],[-1,0],[-118,-1],[-23,-3],[-79,-11],[-13,-2],[-9,-1],[-22,-4],[0,-1],[-29,-8],[-21,-9],[-54,-36],[-6,-3],[8,45],[-2,4],[0,1],[-7,4],[-8,3],[-14,-1],[-4,0],[-13,-1],[-14,-3],[0,-6],[9,-4],[5,-2],[6,-3],[7,-4],[0,-5],[-2,-11],[-3,-14],[-6,-8],[-46,-29],[-4,-2],[-3,-2],[-7,-3],[-15,0],[-2,0],[-6,4],[-6,3],[-4,5],[-3,4],[-1,2],[-16,23],[-7,9],[-88,24],[-10,0],[-7,-5],[-4,-11],[-2,-19],[-6,-14],[-7,-11],[-10,-7],[-12,-5],[-53,-15],[-16,-3],[-8,-12],[-16,-6],[-40,-13],[-37,-9],[-43,-19],[-32,-16],[-31,-17],[-20,-16],[-22,-17],[-6,-23],[21,-23],[-19,-28],[-28,0],[-24,15],[-28,1],[-41,-23]],[[88303,72082],[-8,11],[-13,58],[0,13],[37,127],[8,14],[11,12],[73,11],[25,5],[15,4],[31,18],[23,14],[37,18],[85,27],[3,0],[10,0],[7,53],[6,46],[14,38],[27,46],[2,2],[30,5],[31,0],[33,-11],[23,-13],[23,-15],[21,-22],[19,-17],[30,0],[30,25],[12,21],[-12,33],[-8,27],[-9,24],[-44,12],[-38,-7],[-34,10],[-13,22],[-14,5],[-23,7],[-60,-4],[-471,0],[-264,1],[-215,-2],[-277,2],[-28,0],[-415,3],[-6,0],[-62,1],[-30,0],[-69,2],[-58,-2],[-160,-3],[-723,0],[-24,0],[-383,6],[-3,0],[-85,1],[-212,-1],[-11,0],[-225,-2],[-40,-1],[-208,1],[-240,0],[-1,0],[-136,0],[-66,0],[-205,0],[-87,0],[-42,0],[-449,0],[-98,0],[-121,-1],[-116,-1],[-108,0],[-273,2],[-218,1],[-44,-1],[0,95],[-2,27],[1,23],[2,44],[5,93],[-2,179],[0,31],[0,75],[-1,65],[0,39],[-1,234],[-2,213],[-2,290],[-2,41],[3,32],[0,122],[0,275],[0,58],[0,62],[0,84],[0,261],[0,70],[-6,107],[-3,148],[-1,45]],[[82509,75420],[-1,46],[0,255],[0,25],[-1,280],[-1,31],[0,53],[-1,78],[-1,138],[0,30],[-1,36],[1,130],[0,62],[0,43],[0,2],[-8,121],[1,224],[0,99],[1,60],[1,102],[1,123],[3,702],[2,145],[0,64],[1,48],[0,32],[4,85],[0,82],[0,27],[1,35],[4,189],[1,53],[-1,245],[1,43],[0,66],[1,112],[3,57],[0,23],[-1,142],[-2,93],[0,60],[3,171],[1,38],[1,24],[2,32],[-1,46],[-1,64],[-3,29],[-3,45],[7,202],[1,32],[4,103],[0,1],[3,64],[3,72],[2,35],[1,37],[1,40],[1,71],[1,46],[-1,74]],[[82509,75420],[-147,1],[-154,-2],[-100,-1],[-92,-1],[-240,0],[-13,0],[-98,-1],[-197,3],[-155,2],[-454,0],[-46,1],[-132,1],[-79,1],[-46,0],[-29,0],[-30,0],[-63,1],[-58,0],[-97,1],[-154,2],[-108,1],[-98,1],[-63,1],[-85,1],[-48,0],[-133,1],[-76,0],[-240,0],[-32,-1],[-218,1],[-87,0],[-70,0],[-120,-1],[-87,1],[-1,0],[-99,0],[-59,1],[-212,4],[-40,-1],[-39,0],[-60,4],[-164,-1],[-76,0],[-52,0],[-76,0],[-391,2],[-33,1],[-44,0],[-37,0],[-88,0],[-7,1],[-57,0],[-451,3],[-101,1],[-1,-77],[-1,-78],[-3,-353],[-1,-79],[-2,-158],[-1,-160],[-1,-82],[-2,-217],[-216,-2],[-189,0],[-46,0],[-506,1],[-119,0],[-121,0],[-257,0],[-377,0],[-94,1],[-60,0],[-122,-1],[-131,1],[-281,-3],[-1,0],[-132,0],[-249,-1],[-1,-43],[-1,-41],[10,-221]],[[73668,73935],[-153,-2],[-28,0],[-157,-1],[-1,0],[-32,1],[-113,0],[-2,0],[-91,-1],[-146,0],[-248,-1],[-70,-1],[-72,0],[-125,0],[-344,-2],[-510,-3],[-221,-1],[-188,0],[-45,0],[-292,-1],[-95,-1],[-281,0],[-215,-1],[-29,0],[-215,-1],[-146,0],[-170,-1],[-39,0],[-46,0],[-38,0],[-39,-1],[-38,0],[-233,0]],[[33828,75428],[-1,-81],[-1,-80],[-1,-50],[4,-107],[-2,-77],[-1,-73],[-1,-75],[-2,-53],[-1,-23],[-6,-276],[-1,-28],[-4,-151],[-2,-169],[0,-31],[-1,-21],[1,-29],[-1,-36],[0,-28],[1,-108],[4,-29],[-3,-128],[0,-63],[0,-58],[-1,-50],[4,-57],[3,-26],[3,-34],[2,-30],[3,-31],[4,-43],[1,-24],[3,-41],[3,-22],[0,-37],[-3,-94],[-3,-57],[-1,-49],[0,-26],[-1,-40],[0,-195],[0,-65],[0,-24],[-1,-9],[-2,-16],[-2,-40],[-1,-44],[0,-25],[-1,-37],[-1,-34],[-1,-29],[1,-22],[-1,-30],[0,-25],[-4,-136],[-5,-80],[0,-33],[-1,-24],[1,-44],[2,-45],[0,-28],[2,-32],[2,-28],[-1,-22],[0,-23],[-1,-30],[0,-26],[1,-25],[0,-3],[-1,-25],[-1,-41],[-1,-35],[0,-22],[0,-22],[1,-25],[0,-28],[0,-32],[0,-28],[0,-57],[0,-43],[-1,-36],[0,-73],[1,-82],[-2,-32],[0,-22],[-8,-224],[7,-92],[-1,-124],[9,-91],[1,-40],[-1,-44],[-10,-91],[-9,-217],[-1,-177],[-1,-51],[0,-52],[0,-23],[-1,-24],[1,-60],[0,-135],[-3,-89],[0,-87],[0,-67],[0,-21],[-1,-40],[0,-22],[0,-98],[0,-35],[0,-34],[0,-43],[1,-30],[1,-24],[4,-103],[5,-108],[0,-255],[0,-1],[-1,-120],[-1,-55],[-1,-185],[-1,-186],[0,-5],[-1,-56],[-1,-129],[0,-3],[0,-109],[-1,-125],[0,-31],[-1,-61],[-6,-222],[2,-39],[-1,-25],[1,-33],[0,-30],[5,-52],[0,-1],[0,-145],[0,-30],[0,-98],[1,-282],[0,-21],[-1,-286],[-6,-359],[-7,-145],[1,-37],[2,-184],[0,-15],[0,-11],[-2,-148],[-1,-56]],[[33783,65430],[-34,-1],[-60,0],[-124,-1],[-45,-1],[-172,-1],[-271,-2],[-55,-1],[-29,0],[-124,0],[-39,1],[-58,0],[-50,1],[-81,0],[-42,0],[-54,1],[-74,0],[-34,1],[-60,0],[-41,1],[-49,0],[-29,-1],[-20,1],[-12,0],[-143,-5],[-234,1],[-82,0],[-193,1],[-33,-2],[-52,1],[-59,0],[-32,0],[-34,0],[-261,-2],[-197,1],[1,-121],[0,-34],[0,-22],[1,-138],[1,-233],[1,-52],[0,-124],[1,-194],[1,-21],[0,-119],[4,-141],[0,-18],[-179,0],[-49,1],[-43,0],[-50,0],[-46,-1],[-125,0],[-86,0],[-31,1],[-77,0],[-32,0],[-30,0],[-90,1],[-37,-6],[-42,6],[-29,0],[-7,0],[-25,0],[-51,-1],[-31,1],[-56,0],[-35,1],[-31,0],[-42,0],[-42,-3],[-15,1],[-16,0],[-67,-1],[-59,-1],[-15,0],[-42,-1],[-30,2],[-78,1],[-100,0],[-168,0],[-106,2],[-76,0],[-124,0],[-29,0],[-32,0],[-157,0],[-74,-1],[-28,0],[-50,0],[-43,1],[-73,-1],[-36,0],[-37,0],[-134,-1],[-54,0],[-43,0],[-152,0],[-45,0],[-52,0],[-94,0],[-40,0],[-105,0],[-104,0],[-79,0],[-97,0],[-48,0],[-29,0],[-32,0],[-40,0],[-38,0],[-29,-1],[-114,0],[-172,0],[-136,-1],[-58,0],[-54,0],[-58,-9]],[[26388,64196],[-38,0],[-52,0],[-154,0],[-62,0],[-46,0],[-36,0],[-31,1],[-51,0],[-30,1],[-32,0],[-67,1],[-106,0],[-110,1],[-34,0],[-42,1],[-47,0],[-40,0],[-33,0],[-38,0],[-29,1],[-66,0],[-34,0],[-36,0],[-32,0],[-60,1],[-29,0],[-1,23],[-1,64],[0,21],[-1,32],[0,28],[0,23],[0,34],[0,80],[1,41],[-1,124],[-2,32],[0,22],[-2,31],[-5,56],[1,25],[0,25],[0,26],[1,23],[3,70],[2,43],[4,79],[-1,63],[-1,190],[0,63],[-1,23],[0,66],[0,30],[0,30],[-1,30],[0,91],[-1,30],[0,31],[-1,92],[0,41],[0,31],[0,29],[0,28],[-1,46],[0,21],[0,67],[-1,26],[0,5],[0,21],[0,27],[0,21],[0,36],[0,1],[-1,19],[0,17],[0,55],[0,22],[-1,28],[0,22],[-1,31],[-1,22],[1,34],[1,21],[0,25],[-1,35],[2,22],[2,26],[-1,21],[-1,22],[-2,30],[-1,57],[0,42],[0,55],[0,27],[0,43],[0,22],[0,33],[-1,28],[0,24],[0,26],[0,34],[1,24],[-1,36],[0,30],[0,60],[0,21],[0,26],[-2,40],[0,27],[0,40],[-1,24],[-3,36],[-2,38],[0,33],[5,32],[1,4],[-1,21],[0,32],[1,28],[-1,21],[-1,24],[-1,21],[0,31],[0,28],[0,28],[0,19],[0,11],[13,19],[99,1],[0,34],[-1,104],[0,35],[-1,36],[0,21],[0,24],[0,64],[-1,48],[1,29],[0,76],[-1,112],[0,42],[0,22],[0,50],[-1,76],[0,22],[0,27],[0,21],[0,24],[0,43],[0,25],[0,31],[0,22],[-1,36],[0,32],[0,72],[-2,26],[-4,56],[0,46],[-1,161],[-1,29],[0,28],[-1,54],[0,32],[2,41],[-1,27],[-1,46],[-1,34],[-1,26],[-7,0],[-16,0],[-16,0],[-31,1]],[[60381,73569],[0,-38],[1,-42],[1,-29],[1,-28],[3,-29],[-2,-25],[-2,-23],[1,-70],[-2,-25],[1,-31],[1,-103],[0,-82],[1,-70],[2,-174],[1,-97],[0,-24],[0,-27]],[[60388,72652],[-65,0],[-297,1],[-38,0],[-263,1],[-397,1],[-130,0],[-37,0],[-378,2],[-63,0],[-37,0],[-252,1],[-153,0],[-43,-1],[-104,1],[-120,0],[-292,0],[-69,0],[-113,0],[-54,1],[-41,0],[-217,0],[-160,-5],[-54,0],[-162,-1],[-131,-1],[-100,0],[-42,-1],[-74,0],[-52,0],[-91,-1],[-91,-4],[-67,-1],[-213,-4],[-498,4],[-132,-1],[-9,0],[-320,-1],[-212,-1],[-56,0],[-43,-1],[-156,-2],[-205,0],[-81,-1],[-48,0],[-76,0],[-32,0],[-49,-1],[-86,0],[-105,0],[-76,0],[-35,0],[-14,0],[-32,0],[-33,0],[-38,0],[-3,0],[-51,-1],[-47,0],[-30,0],[-230,0],[-150,-1],[-76,0],[-403,-1],[-146,0]],[[52516,72634],[-137,0],[-108,-1],[-265,0],[-106,0],[-39,0],[-45,0],[-12,0],[-86,0],[-245,-1],[-209,0],[-359,-1],[-181,0],[-287,0],[-170,-2],[-34,0],[-36,0],[-113,0],[-48,1],[-98,0],[-116,0],[-133,0],[-57,0],[-534,1],[-35,0],[-140,-2],[-227,0],[-132,0],[-124,-1],[-115,0],[-270,-2],[-57,-1],[-57,0],[-1,0],[-162,-1],[-634,0],[-33,0],[-289,-1],[-86,0],[-103,1],[-108,-1],[-3,0],[-32,0],[-35,1],[-37,-1],[-177,3],[-215,2],[-191,2],[-140,0],[-28,0],[-70,0],[-50,0],[-163,0],[-55,0],[-147,0],[-158,0],[-219,1],[-171,-1],[-29,0],[-2,0],[-198,2],[-198,3],[-43,1],[-212,2],[-42,0],[-233,3],[-232,1],[-52,0],[-50,0],[-61,-1],[-120,-1],[-55,0],[-99,-1],[-96,-1]],[[42912,72638],[-33,0],[-84,0],[-122,0],[1,140],[1,302],[1,58],[0,91],[1,86],[1,153],[0,2],[1,66],[0,30]],[[42912,72638],[55,-9],[31,-16],[20,-19],[39,-17],[15,-3],[14,-3],[23,-18],[34,-64],[5,-11],[10,-19],[-49,-7],[-3,-5],[-7,-13],[-3,-7],[6,-1],[30,-9],[39,-12],[9,-21],[6,-14],[7,-14],[5,-9],[9,-12],[4,-5],[7,-2],[63,-14],[30,0],[152,11],[105,8],[38,-5],[23,-17],[-48,-45],[7,-33],[-11,-20],[-31,-7],[-27,-16],[-28,-5],[19,-20],[33,-8],[33,-5],[28,-7],[39,-12],[7,-7],[5,-6],[-2,-28],[0,-2],[-9,-74],[-40,-103],[-16,-38],[-11,-20],[-33,-42],[-47,-53],[-23,-19],[0,-1],[-7,-4],[-10,-41],[0,-1],[0,-24],[6,-16],[12,-17],[33,-65],[7,-13],[14,-31],[9,-37],[1,-8],[2,-41],[0,-85],[-12,-72],[-14,-64],[-44,-54],[-5,0],[-17,0],[-12,2],[-3,0],[-1,0],[-14,6],[-7,7],[-2,3],[-5,5],[-3,5],[-3,6],[-3,6],[-2,1],[-11,13],[-16,10],[-1,1],[-19,8],[-19,6],[-22,1],[-24,-1],[-22,-4],[13,-26],[18,-31],[1,-23],[-26,-18],[-70,-8],[-33,12],[-40,26],[-35,12],[-36,1],[-33,16],[-3,0],[-8,-1],[-45,-3],[-20,-1],[-11,-4],[-66,-69],[50,-3],[47,0],[45,-1],[33,1],[49,-1],[43,0],[62,1],[62,1],[82,1],[67,1],[78,1],[38,1],[14,-1],[11,-2],[7,-2],[5,-3],[18,0],[80,2],[2,-33],[6,-206],[-2,-180],[-2,-46],[-5,-213],[-2,-64],[-6,-171],[-1,-21],[4,-45],[3,-34],[2,-22],[5,-66],[2,-31],[2,-31],[2,-49],[2,-54],[4,-84],[0,-28],[0,-7],[1,-23],[2,-65],[-3,-125],[0,-21],[-1,-38],[-2,-107],[0,-7],[0,-14],[-1,-56],[-1,-31],[-1,-69],[0,-3],[2,-23],[-3,-79],[-4,-51],[-1,-21],[0,-23],[1,-38],[3,-184],[1,-30],[1,-31],[0,-1],[1,-51],[1,-74],[1,-157],[1,-59],[0,-13],[1,-97],[1,-31],[1,-99],[-45,0],[-62,0],[-179,0],[-31,0],[-38,0],[-61,0],[-38,0],[-215,1],[-47,0],[-85,1],[-151,1],[-63,1],[-3,-39],[-1,-140],[-1,-97],[0,-24],[0,-9],[-1,-113],[-1,-121],[0,-112],[-1,-81],[-1,-145],[0,-2],[-554,12],[-165,-1],[-172,-2],[-48,0],[-99,0],[-1,-157],[0,-144],[-1,-266],[0,-16],[0,-150],[0,-28],[0,-74],[0,-34],[-2,-24],[1,-69],[2,-236],[3,-369],[0,-2],[1,-94],[1,-72]],[[41616,65510],[-191,40],[-39,8],[-175,37],[-364,76],[-8,2],[-88,19],[-156,32],[-78,16],[-119,25],[-100,21],[-69,14],[-126,27],[-30,6],[-1,0],[-50,12],[-77,16],[-32,6],[-4,1],[-73,16],[-12,2],[-40,9],[-27,7],[-35,6],[-28,6],[-35,3],[-33,2],[-37,9],[-49,15],[-46,12],[-62,13],[-31,6],[-366,76],[-239,49],[-85,17],[-139,30],[-10,2],[-242,50],[-38,8],[-94,21],[-89,19],[-54,11],[-57,12],[-114,23],[-28,6],[-94,20],[-35,7],[-55,11],[-61,13],[-46,10],[-57,14],[-21,-14],[-5,-20],[-4,-15],[-2,-4],[-11,-45],[-2,-25],[3,-23],[1,-1],[15,-24],[3,-6],[2,-1],[61,-43],[39,-23],[6,-3],[10,-3],[46,-14],[18,-2],[25,-3],[14,1],[22,3],[35,19],[10,4],[27,10],[5,2],[14,2],[17,2],[94,-8],[35,-8],[27,-6],[56,-11],[6,-1],[41,0],[4,0],[3,0],[64,-3],[74,-10],[8,-2],[24,-7],[29,-12],[21,-9],[48,-25],[52,-30],[52,-36],[28,-39],[49,-56],[19,-23],[35,-48],[20,-32],[16,-24],[22,-46],[5,-16],[5,-19],[2,-8],[-2,-30],[-2,-6],[-16,-47],[-17,-32],[-28,-31],[-23,-19],[-8,-7],[-30,-16],[-34,-15],[-18,-7],[-18,-7],[-45,-24],[-1,-1],[-7,-4],[-30,-22],[-35,-33],[-2,-4],[-9,-13],[-8,-13],[-13,-27],[-3,-22],[1,-4],[4,-31],[0,-4],[1,-24],[0,-2],[16,-23],[31,-24],[56,-35],[38,-17],[15,-24],[-19,-27],[-25,-12],[-49,-1],[-25,4],[-17,5],[-26,11],[-20,13],[-40,26],[-20,10],[-100,-22],[-4,-2],[-36,-20],[-14,-7],[-23,-23],[-6,-10],[-5,-11],[-27,-17],[-18,-4],[-46,1],[-4,3],[-25,17],[-7,5],[1,11],[1,9],[1,14],[19,23],[27,21],[24,18],[2,19],[-11,18],[-56,36],[-45,20],[-42,12],[-17,1],[-5,0],[-24,1],[-27,-7],[-140,-39],[-5,-3],[-30,-14],[-5,-3],[-2,-18],[19,-29],[16,-15],[46,-42],[11,-19],[-6,-20],[-23,-13],[-48,-11],[-68,3],[-16,5],[-60,39],[-21,9],[-12,1],[-42,3],[-9,1],[-17,-2],[-23,-13],[-9,-7],[-18,-52],[-4,-14],[-9,-29],[-17,-44],[-14,-12],[-26,-9],[-35,-12]],[[37203,64876],[-36,-1],[-12,-1],[0,2],[-40,81],[-2,1],[-131,47],[-27,10],[-54,2],[-26,-5],[-10,-5],[-13,-7],[-13,-7],[-24,-23],[0,-1],[-1,-4],[-10,-43],[-3,-11],[-14,-13],[-17,-10],[-2,-1],[-139,-82],[-16,-9],[-17,-9],[-12,-6],[-22,-8],[-7,-1],[-54,-9],[-23,-13],[-3,-5],[-11,-15],[-4,-38],[-2,-16],[-65,-58],[-9,-7],[-11,-17],[-25,-36],[-4,-6],[-1,-7],[-1,-18],[-2,-16],[7,-16],[9,-8],[54,-47],[-3,-31],[-24,-21],[-4,-4],[-11,-11],[-36,-34],[-16,-10],[-25,-15],[-28,12],[-16,20],[-9,25],[-1,24],[-58,30],[-28,7],[-35,5],[-68,2],[-42,4],[-42,-3],[-28,-9],[-2,-22],[31,-28],[25,-11],[24,-26],[3,-33],[7,-26],[47,-44],[37,-25],[14,-14],[-14,-54],[-11,-41],[-1,-5],[11,-18],[36,-25],[35,-17],[18,-8],[11,-16],[-1,-4],[-10,-21],[0,-1],[-88,-41],[-6,-3],[-14,-15],[-3,-6],[-6,-14],[0,-73],[-4,-42],[-12,-15],[-12,-15],[-64,-44],[-11,-15],[39,-11],[43,7],[50,5],[34,-2],[41,-19],[12,-21],[-8,-28],[-39,-25],[-27,-17],[20,-17],[28,-1],[29,1],[30,5],[-6,-24],[-35,-6],[-31,-1],[-31,-1],[-29,-5],[-28,-6],[-28,-4],[-43,7],[-15,27],[24,23],[18,23],[-32,15],[-31,-5],[-32,-10],[-28,-7],[-30,3],[-32,17],[-23,20],[-69,21],[-8,2],[-29,6],[-67,2],[-7,0],[-189,5],[-147,-4],[-88,-3],[-19,0],[-185,5],[-35,-7],[-11,-6],[-25,-13],[-3,-7],[-2,-4],[1,-1],[32,-52],[0,-6],[-3,-24],[0,-4],[-29,-33],[-9,-10],[-11,-29],[-32,-3],[-36,24],[-24,14],[-56,34],[-116,69],[-1,0],[-264,155],[-42,24],[-9,5],[-14,8],[-129,75],[-62,36],[-79,45],[-25,15],[-156,90],[-57,33],[-44,25],[0,32],[0,14],[1,113],[0,22],[0,5],[2,342],[0,19],[0,7],[1,95],[1,147],[1,32],[13,436],[0,2],[-1,0],[-2,3],[0,22]],[[88303,72082],[6,-74],[21,-35],[11,-8],[9,-6],[10,-4],[26,-11],[19,-3],[57,-8],[28,-2],[15,0],[38,4],[36,5],[70,15],[30,-1],[16,-6],[1,-1],[31,-22],[-16,-54],[-42,-36],[-30,-40],[0,-31],[13,-47],[67,-116],[0,-2],[-103,-62],[-108,-104],[-12,-31],[-1,-42],[39,-31],[22,-6],[11,-3],[98,-7],[21,-1],[4,0],[7,2],[33,6],[58,21],[44,8],[55,-3],[27,-5],[51,-11],[15,4],[32,-24],[36,-26],[22,-5],[30,-6],[113,-52],[54,-21],[131,-102],[5,-4],[-3,-53],[-1,-6],[-4,-37],[-24,-14],[-38,-18],[-50,-22],[-16,-7],[-4,0],[-13,0],[-25,-24],[-96,-111],[-80,-76],[-61,-59],[-8,-7],[-19,-2],[-41,-4],[-10,-1],[-6,-1],[-50,-13],[-12,-9],[-4,-3],[1,-3],[5,-17],[1,-3],[2,-2],[44,-38],[14,-12],[9,-8],[14,-15],[30,-32],[14,-16],[57,-44],[9,-9],[43,-45],[-6,-42],[-7,-10],[-17,-16],[-2,-2],[-4,-2],[-42,-22],[-54,-15],[-23,1],[-7,0],[-48,23],[-8,1],[0,25],[1,4],[-13,5],[-9,3],[-5,0],[-32,0],[-25,-19],[-8,-7],[-17,-28],[11,-23],[3,-6],[36,-79],[14,-12],[13,-12],[6,-72],[10,-69],[1,-10],[43,-153],[16,-3],[31,-17],[7,-4],[15,-14],[25,-26],[36,-28],[28,-23],[75,-50],[3,-2],[121,-59],[78,-28],[47,-18],[6,-2],[2,0],[60,-16],[6,-4],[22,-16],[-2,-44],[-42,-27],[-40,-11],[-65,-10],[-26,-1],[-56,5],[-12,1],[-9,-5],[-123,6],[-27,-6],[-19,-12],[-46,-27],[-38,38],[-20,103],[-13,5],[-47,1],[-39,22],[-18,30],[-5,31],[-17,27],[-24,17],[-50,13],[-106,8],[-57,18],[-4,4],[-19,20],[-4,3],[0,11],[1,57],[-22,33],[-2,2],[-1,3],[-8,5],[-41,25],[-7,4],[-36,11],[-9,3],[-4,1],[-22,4],[-25,4],[-4,0],[-42,0],[-13,0],[-8,-3],[-20,-9],[-4,-7],[-6,-10],[-15,-8],[-8,-4],[-3,0],[-1,0],[-13,1],[-8,5],[0,6],[2,46],[-18,25],[-1,0],[-19,14],[-88,43],[-64,15],[-1,1],[-2,-1],[-54,-11],[-3,-1],[-6,-4],[-20,-12],[-16,-10],[-1,-8],[-5,-20],[-5,-24],[9,-34],[2,-7],[7,-17],[-5,-39],[-10,-10],[-81,-64],[-41,-22],[-5,-1],[-6,-2],[-29,-8],[-65,-7],[-13,1],[-25,1],[-35,-4],[-51,-23],[-53,-24],[-10,-5],[-2,-15],[14,-19],[5,-6],[12,-37],[-1,-2],[-2,-6],[-4,-15],[-5,-4],[-10,-8],[-64,-33],[0,-1],[-31,-9],[-10,1],[-3,0],[-30,1],[-52,30],[-23,13],[-34,2],[-10,-5],[-1,-1],[-8,-4],[-7,-29],[-6,-43],[-1,-5],[-13,-31],[-32,-22],[-9,-2],[-31,-6],[-43,2],[-12,0],[-38,10],[-7,8],[-8,8],[-11,11],[-8,28],[-1,4],[-31,20],[-42,9],[-16,0],[-2,0],[-33,2],[-27,3],[-27,-3],[-161,-50],[-8,-7],[0,-8],[14,-42],[5,-9],[-78,-17],[-10,-2],[-18,13],[-11,8],[-16,6],[-3,1],[-41,13],[-3,1],[-12,3],[-9,1],[-14,-2],[-31,-12],[-57,-28],[-1,-1],[-5,-7],[-2,-7],[-10,-39],[-11,-6],[-49,-30],[-5,-2],[-81,-17],[-21,-1],[-4,0],[-21,2],[-11,0],[-15,-3],[-1,0],[-1,-1],[-16,-10],[-13,-14],[-1,-1],[-11,-19],[-6,1],[-21,2],[-23,0],[-2,0],[-17,-2],[-21,-6],[-2,-1],[-11,-12],[-7,-8],[-1,-1],[-16,-12],[-41,-19],[-50,-20],[-24,-12],[-22,-6],[-63,-4],[-10,1],[-72,21],[-25,8],[-1,-42],[-37,12],[-20,-19],[-442,-2],[-208,-2],[-2,0],[-598,-3],[-59,0],[-87,-1],[-2,0],[-343,-4]],[[83880,69095],[-2,193],[-3,282],[-2,586],[-1,163],[-312,1],[-121,1],[-139,0],[-3,0],[-80,-2],[-49,-49],[-3,-3],[-51,-21],[-31,-10],[-202,-38],[-12,-1],[-86,-4],[-3,-1],[-19,4],[-18,4],[-100,-3],[-4,0],[-102,22],[-23,3],[-3,1],[-30,3],[-121,26],[-2,2],[-2,3],[-27,16],[-46,26],[-29,17],[-99,9],[-95,0],[-173,-3],[-96,-1],[-148,2],[-253,-2],[-292,-1],[-19,0],[-122,-1],[-142,-1],[-388,-3],[-77,-1],[-199,-1],[-68,0],[-36,0],[-145,0],[-324,-1],[-228,0],[-32,0],[-821,-1],[-48,0],[-86,1],[-114,-1],[-99,17],[-90,18],[-119,25],[-98,-7],[-237,-23],[-32,-3],[-87,-8],[-249,-24],[-159,-16],[-228,-21],[-27,-1],[-127,10],[-148,17],[-66,9],[-205,0],[-226,-3],[-178,1],[-48,1],[-406,-6],[-33,-1],[-316,2],[-435,-39],[-37,-4],[-185,0],[-299,1]],[[74115,70256],[0,51],[0,197],[1,49],[0,76],[1,8],[0,48],[0,20],[0,115],[0,54],[0,23],[0,1],[0,59],[0,116],[0,108],[0,58],[0,33],[0,42],[0,44],[0,107],[-3,63],[8,35],[-3,133],[-2,80],[-157,0],[-56,0],[-233,-31],[-46,-7],[-1,38],[50,1],[-4,77],[-1,18],[-9,158],[-6,91],[2,56],[3,95],[3,66],[2,66],[1,17],[0,128],[0,80],[0,67],[-1,27],[0,52],[1,65],[1,188],[-1,36],[-1,73],[-1,39],[-1,61],[-2,90],[2,102],[0,1],[0,118],[0,1],[0,30],[2,77],[0,54],[2,102],[0,5],[2,118]],[[95753,74050],[-16,-88],[-6,-35],[-9,-49],[-35,-211],[-28,-144],[-9,-61],[-12,-85],[-36,-260],[-1,-28],[-1,-9],[0,-5],[0,-4],[-2,-11],[0,-2],[-5,-29],[-13,-82],[-22,-139],[-10,-62],[-28,-131],[-6,-35],[-4,-27],[-7,-41],[-10,-69],[-4,-37],[0,-1],[-18,-114],[-7,-43],[-19,-113],[-10,-56],[-46,-279],[-4,-23],[-10,-58],[-2,-13],[-24,-142],[-17,-108],[-12,-76],[-47,-287],[0,-4],[-23,-133],[-3,-35],[-3,-18],[-1,-2],[-3,-24],[-28,-142],[-6,-33],[-5,-31],[-5,-31],[-6,-32],[-4,-28],[-5,-30],[-9,-69],[-5,-38],[-1,-3],[0,-3],[-24,-101],[0,-2],[-4,-24],[-17,-99],[-4,-27],[-1,-2],[-4,-26],[-68,-403],[0,-3],[-9,-49],[-4,-28],[-30,-176],[-32,-186],[-5,-29],[-7,-30],[-4,-21],[-25,-165],[-16,-94],[-1,-2],[-7,-46],[-12,-73],[-1,-6],[-14,-82],[-20,-125],[-24,-145],[-6,-37],[-7,-44],[-18,-111],[-12,-74],[-1,-3],[-4,-25],[-15,-91],[-27,-168],[-21,-126],[-9,-58],[-16,-93],[-34,-212],[-56,-341],[-10,-64],[-21,-127],[-8,-46],[-31,-194],[-11,-66],[-12,-74],[-7,-39],[-20,-124],[-26,-166],[-27,-163],[-1,-6],[-11,-72],[-22,-133],[-2,-9],[-45,-273],[-20,-120],[-30,-184],[0,-1],[-8,-49],[-51,-311],[-5,-25],[0,-3],[-17,-103],[-9,-55],[-15,-92],[-6,-36]],[[94192,64575],[-22,0],[-40,0],[-120,0],[-474,0],[-298,0],[-247,0],[-784,-6],[-45,0],[-86,1],[-189,1],[-5,0],[-200,1],[-20,0],[-185,0],[-41,1],[-32,0],[-212,1],[-95,0],[-90,1],[-83,0],[-35,0],[-36,0],[-188,1],[-56,0],[-251,2],[-77,-1],[-1,0],[-120,-1],[-43,0],[-39,-1],[-4,0],[-382,-3],[-62,-1],[-3,0],[-42,0],[-19,0],[-55,-1],[-214,-2],[-1,0],[-23,0],[-135,-1],[-38,0],[-30,-1],[-146,-1],[-152,-1],[-31,0],[-48,-1],[-406,-4],[-80,0],[-17,0],[-68,-1],[-48,-1],[-713,-6],[-68,-1],[-137,-1],[-53,-1],[-1,0],[-72,0],[-125,-1],[-59,0],[-29,0],[-469,0],[-204,0],[-204,0],[-108,0],[-39,0],[-13,0],[-1,0],[-64,0],[-242,0],[-9,0],[-53,0],[-106,0],[-55,0],[-87,0],[-160,0],[-308,-1],[-92,0],[-7,0],[-291,0],[-364,0]],[[83941,64546],[-1,45],[0,21],[0,50],[-6,415],[-3,212],[-9,621],[-5,386],[-7,80],[-1,184],[-3,276],[-2,142],[0,34],[-1,164],[-1,103],[-1,4],[-1,150],[-1,131],[-2,185],[-1,35],[-2,158],[-3,262],[-1,46],[-3,260],[-3,151],[0,1],[-3,324],[-1,109]],[[74115,70256],[-118,0],[-211,1],[-86,0],[-65,0],[-188,0],[-223,0],[-435,1],[-30,0],[-123,0],[-15,0],[-42,0],[-44,-3],[-47,1],[-49,2],[-7,-1],[-71,-3],[-31,1],[-53,-1],[-60,0],[-61,0],[1,-24],[1,-31],[-2,-21],[-1,-21],[-1,-34],[0,-27],[-3,-31],[0,-5],[-1,-31],[0,-41],[0,-14],[-1,-34],[0,-28],[0,-92],[0,-58],[2,-22],[0,-57],[-1,-27]],[[72150,69656],[-62,-1],[-3,0],[-368,-4],[-52,0],[-146,-2],[-47,3],[-32,0],[-37,-1],[-35,-2],[-33,0],[-39,0],[-130,2],[-39,1],[-53,-3],[-27,0],[-4,0],[-28,0],[-87,3],[-48,-1],[-31,2],[-43,-2],[-61,0],[-91,-1],[-58,0],[-233,0],[-30,0],[-2,0],[-31,0],[-52,-1],[-28,1],[-13,0],[-37,0],[-305,-1],[-169,0],[-56,0],[-71,-8],[-41,-4],[-321,-34],[-221,-77],[-103,10],[-38,3],[-136,13],[-203,-24],[-62,-43],[-121,-87],[-111,0],[-385,0],[-366,22],[-25,-10],[-161,-69],[-13,-5],[-174,-74],[-83,-36],[-218,-18],[-163,-14],[-305,-87],[-11,-44],[-6,-22],[-49,-17],[-9,5],[-23,5],[-97,18],[-18,-3],[-69,-23],[-105,-56],[-1,-5],[-1,-7],[-2,-3],[-96,-46],[-12,-1],[-6,1],[-90,5],[-15,4],[-135,-104],[4,-20],[1,-4],[-26,-9],[-92,-30],[-10,6],[-24,-12],[-43,-62],[-22,-33],[-115,-105],[-12,-11],[-21,-23],[-23,-24],[-30,-39],[-26,-63],[-8,-21],[-7,-7],[-12,-8],[-24,-8],[-16,-3],[-132,-10],[-18,0],[-255,7],[-97,27],[-49,18],[-85,-12],[-75,-31],[-20,-12],[-37,-21],[3,-21],[2,-21],[-17,-40],[-11,-4],[-28,-2],[-22,-1],[-9,3],[-10,10],[-8,3],[-12,2],[-5,-1],[-8,-1],[-8,-4],[-1,-1],[-10,-10],[-5,-10],[-72,-39],[-155,-23]],[[63924,68144],[-225,-1],[-18,0],[-14,-1],[-165,0],[-73,-1],[-12,0],[-183,0],[-7,0],[-131,-1],[-141,0],[-60,0],[-290,-1],[-123,-1],[-50,0],[-90,0],[-63,0],[-205,0],[-121,0],[-103,0],[-145,1],[-321,0],[-154,0],[-313,0],[-278,0],[-60,-5],[-73,0],[-93,-1],[-14,28],[0,59],[0,216],[0,32],[0,96],[0,66],[-19,213],[-8,38],[0,29],[1,10],[2,8],[21,42],[2,38],[2,74],[-3,15],[-4,15],[0,22],[6,41],[5,33],[20,66],[20,55],[0,4],[-43,60],[0,43],[0,1],[-1,33],[1,198],[0,63],[-2,24],[1,27],[1,26],[-1,27],[0,28],[3,22],[3,23],[2,27],[-5,28],[-1,41],[-1,95],[-1,64],[-1,59],[-2,123],[0,28],[-2,93],[0,84],[-1,45],[-5,71],[0,81],[0,62],[2,126],[5,58],[-3,226],[-1,36],[0,47],[-1,140],[-6,54],[-1,14],[-1,75],[15,21],[-1,97],[-2,138],[-2,209],[0,31],[-1,92],[0,31],[-1,86],[-1,62],[0,28],[0,23],[0,30],[-1,153],[-1,66]],[[63924,68144],[-15,-42],[-5,-15],[-40,-37],[-31,2],[-74,4],[3,-32],[-7,-6],[-2,0],[-180,-33],[-23,-1],[-37,3],[-13,7],[-1,2],[1,8],[14,12],[1,1],[1,8],[-6,3],[-24,2],[-15,0],[-16,-4],[7,-23],[2,-9],[-5,-4],[-52,-1],[-2,0],[-81,-5],[-106,-24],[-6,-2],[-109,-63],[-4,-7],[-25,-63],[0,-13],[3,-8],[9,-4],[7,-4],[20,-29],[0,-12],[-6,-5],[-20,-10],[36,-15],[5,-2],[-4,-4],[-14,-12],[-36,-35],[13,-19],[4,-7],[1,-2],[-8,-7],[-70,-41],[-132,-23],[-6,3],[-6,3],[-24,7],[-19,5],[-38,6],[-117,-5],[-22,-9],[-32,12],[-53,20],[-32,11],[-36,14],[-48,9],[-47,8],[-250,9],[-159,-33],[-117,-51],[1,-199],[-3,-65],[0,-223],[1,-233],[0,-54],[1,-126],[0,-270],[0,-36],[0,-46],[1,-341],[0,-29],[0,-238],[0,-109],[1,-268],[0,-27],[0,-110],[0,-6],[0,-46],[1,-92],[0,-78],[0,-1],[1,-459]],[[61880,64526],[-818,1],[-375,0],[-108,0],[-175,-1],[-220,0],[-49,0],[-62,-1],[-31,0],[-122,0],[-312,-1],[-177,0],[-139,0],[-80,0],[-73,0],[-256,-1],[-338,0],[-557,-1],[-71,0],[-92,0],[-259,0],[-387,-1],[-114,-4],[-146,0],[-189,0],[-79,0],[-154,0]],[[56497,64517],[0,28],[-4,275],[-1,29],[-1,70],[-2,171],[-1,26],[-2,153],[-1,92],[0,43],[0,48],[-5,275],[0,52],[-3,138],[-2,141],[-1,137],[0,6],[-3,125],[-2,50],[0,36],[0,289],[-1,96],[0,5],[0,126],[-19,17],[-363,-2],[-4,0],[-443,-2],[-311,-1],[-345,-2],[-142,-1],[-239,-1],[-81,-1],[-3,45],[-4,202],[-1,58],[-90,0],[-132,0],[-101,0],[-71,-1],[-109,0],[-277,0],[-7,-1],[-102,0],[-2,0],[-71,-5],[-171,0],[-31,0],[-272,-1],[-10,0],[-35,0],[-405,-2],[-64,0],[-5,267],[-3,146],[-1,48],[0,40],[2,63],[0,27],[0,92],[-2,62],[-9,141],[3,68],[2,32],[3,65],[4,58],[6,86],[-1,97],[0,77],[0,80],[0,12],[-1,66],[0,21],[3,192],[-9,100],[0,36],[1,133],[-1,18],[-1,26],[0,56],[0,3],[-1,90],[0,23],[-1,52],[-1,94],[0,35],[-2,158],[-1,70],[-1,57],[3,150],[1,23],[4,143],[-3,105],[-1,40],[-2,201],[-1,68],[-2,85],[-1,44],[0,26],[1,114],[1,70],[1,41],[0,37],[-1,52],[-1,43],[0,101],[2,52],[0,33],[1,23],[-1,33],[0,7],[-3,48],[-4,34],[-7,43],[1,26],[-1,137],[-1,70],[-2,116],[-1,37],[-4,166],[-2,108],[-2,102],[-6,335]],[[56497,64517],[-138,0],[-354,0],[-147,0],[-142,0],[-314,0],[-455,0],[-29,-41],[-58,-97],[-5,-30],[-6,-38],[-20,-17],[-85,-70],[-151,-76],[0,-6],[6,-3],[31,0],[27,-1],[25,-2],[7,-4],[3,-35],[-1,-4],[-33,-42],[-17,-23],[-47,-60],[-13,-8],[-16,-6],[-23,-2],[-26,3],[-36,14],[-5,3],[0,1],[0,4],[5,14],[-45,-11],[-25,-2],[-1,0],[-1,0],[-12,3],[-23,9],[-8,0],[-56,-15],[-3,-9],[-2,-46],[6,-4],[4,-7],[2,-2],[0,-11],[-2,-4],[-52,-39],[-3,-2],[-37,-3],[-16,-5],[-29,-10],[-4,-7],[-1,-4],[0,-13],[0,-23],[-43,-70],[-4,-6],[-2,-8],[-10,-41],[9,-7],[1,-3],[-2,-2],[-101,-64],[-81,-52],[-17,-11],[-13,10],[-3,2],[-4,2],[-9,2],[-27,-4],[-14,-5],[-39,-46],[-25,-38],[-6,-14],[-95,-86],[-5,-17],[-2,-14],[14,-113],[-13,-76],[-83,-27],[-31,-54]],[[53567,63044],[-38,8],[-306,61],[-73,15],[-1,0],[-240,49],[-101,20],[-76,16],[-110,22],[-585,118],[-114,23],[-89,18],[-142,29],[-176,35],[-249,50],[-63,13],[-630,127],[-423,86],[-115,23],[-143,30],[-1,1],[-265,55],[-562,116],[-149,32],[-184,38],[-156,32],[-49,10],[-87,18],[-283,59],[-507,105],[-234,47],[-641,133],[-206,42],[-44,9],[-3,1],[-87,22],[-59,12],[0,1],[-197,41],[-123,25],[-1,1],[-125,25],[-220,46],[-31,7],[-359,75],[-398,83],[-129,27],[-147,30],[-67,14],[-290,61],[-296,61],[-187,39],[-104,23],[-601,125],[-93,16],[-49,10],[-326,69],[-77,16],[-222,47],[-190,39],[-122,25],[-276,58],[-130,27]],[[83941,64546],[-86,0],[-117,0],[-60,-1],[-265,-1],[-269,-1],[-39,0],[-40,-1],[-558,-3],[-40,0],[-68,0],[-94,-1],[-56,0],[-76,-1],[-60,0],[-65,0],[-214,-1],[-169,-1],[-140,0],[-33,0],[-5,0],[-41,0],[-525,1],[-46,0],[-45,0],[-537,0],[-36,0],[-141,0],[-223,0]],[[79893,64536],[-44,0],[-28,0],[-57,0],[-35,0],[-554,0],[-14,0],[-903,-1],[-108,0],[-121,0],[-130,0],[-98,-1],[-85,0],[-276,0],[-29,-1],[-77,0],[-88,0],[-465,-1],[-95,-1],[-279,0],[-108,-1],[-74,0],[-94,0],[-71,0],[-207,0],[-204,0],[-80,0],[-248,-1],[-229,0],[-83,0],[-43,0],[-330,3],[-436,0],[-10,0],[-323,0],[-124,-1],[-333,0],[-399,-1],[-184,-1],[-90,0],[-175,-1],[-91,0],[-229,0],[-85,-1]],[[72157,64527],[0,150],[-2,212],[-1,170],[0,118],[0,23],[0,65],[-1,192],[1,37],[2,43],[0,6],[-1,69],[0,1],[0,39],[1,26],[0,82],[0,48],[-1,51],[0,25],[0,53],[0,221],[-4,218],[0,26],[0,125],[1,82],[1,194],[0,130],[0,41],[1,83],[0,123],[-1,163],[-1,103],[-3,172],[-4,107],[0,35],[0,61],[1,22],[0,203],[0,34],[0,164],[-1,161],[3,123],[1,30],[1,56],[0,39],[0,122],[0,8],[0,187],[2,61],[0,25],[2,74],[1,80],[-1,51],[2,21],[0,37],[1,129],[-1,57],[-5,138],[-1,13]],[[72157,64527],[-400,-1],[-118,0],[-62,0],[-1,-45],[-4,-249],[-1,-51],[-4,-231],[-2,-97],[0,-8],[-1,-62],[18,-101],[-1,-167],[-3,-443],[-2,-369],[-130,0],[-4,0],[-320,-5],[-63,-1],[-38,-1],[-1,0],[-56,-1],[-89,0],[-228,0],[-102,0],[-133,-1],[-171,0],[-622,-1],[-265,0],[-359,0],[-149,-1],[-208,0],[-1,-121],[0,-32],[-3,-315],[-1,-111],[-1,-115],[0,-1],[-4,-554],[-1,-132],[-5,-133],[2,-315],[-239,1],[-616,1],[-1,0],[-160,-1],[-50,1],[-359,-3],[-148,-1],[-436,-3],[-106,-1],[-110,-1],[-531,-3],[-126,0],[-40,-1]],[[65702,60852],[1,86],[0,32],[-5,220],[2,145],[1,130],[2,119],[1,51],[-1,57],[2,195],[3,245],[2,253],[1,68],[3,259],[3,285],[2,170],[8,616],[1,39],[3,125],[0,6],[4,199],[0,1],[1,49],[1,50],[3,135],[0,21],[3,111],[-115,0],[-29,0],[-1,0],[-37,1],[-28,1],[-214,1],[-246,0],[-96,0],[-124,1],[-72,1],[-262,0],[-64,1],[-161,0],[-201,0],[-144,0],[-232,0],[-59,0],[-156,0],[-82,0],[-60,1],[-121,-1],[-19,0],[-47,0],[-55,0],[-444,1],[-48,0],[-207,0],[-420,0],[-119,0]],[[26388,64196],[-25,-12],[-28,-28],[-27,-30],[-11,-6],[-26,-14],[-15,-6],[-14,-5],[-42,-7],[-31,1],[-9,7],[-13,10],[-17,19],[-4,5],[-6,2],[-30,9],[-7,2],[-23,-3],[-5,0],[-21,-10],[-17,-8],[-32,-19],[-1,0],[-3,-3],[-19,-17],[-17,-24],[-11,-29],[-5,-18],[-1,-6],[0,-4],[-1,-12],[8,-17],[13,-28],[1,-2],[15,-22],[6,-5],[16,-12],[6,-12],[12,-23],[16,-11],[2,-1],[0,-2],[2,-7],[8,-23],[-5,-49],[-18,-65],[-19,-61],[-30,-96],[-11,-26],[-9,-7],[-12,-31],[-4,-10],[-10,-55],[13,-47],[16,-19],[25,-17],[3,-2],[33,-11],[34,-2],[30,7],[35,14],[14,5],[25,5],[76,-11],[56,-35],[121,-124],[3,-11],[40,-35],[44,-26],[4,-2],[114,-59],[37,-16],[77,-29],[9,-3],[104,-31],[25,-7],[3,-1],[121,-15],[11,-2],[42,-3],[42,-2],[104,-25],[34,-16],[35,-17],[25,-12],[12,-8],[86,-61],[26,-18],[2,-2],[23,-23],[10,-10],[14,-30],[0,-26],[-1,-15],[0,-21],[-10,-15],[-34,-49],[-14,-12],[-49,-27],[-25,-8],[-41,-13],[-14,-8],[-10,-6],[-7,-4],[-4,-4],[-11,-19],[-2,-65],[11,-23],[1,-1],[9,-21],[14,-16],[17,-19],[26,-42],[11,-66],[-4,-47],[-24,-124],[-17,-44],[-10,-15],[-24,-28],[-52,-37],[-7,-5],[-3,-4],[-3,-4],[-23,-33],[0,-6],[-2,-61],[0,-6],[2,-15],[11,-16],[23,-35],[8,-47],[-4,-52],[-31,-56],[-31,-30],[-24,-23],[-10,-10],[-30,-14],[-38,-17],[-8,-3],[-35,-9],[-30,-7],[-27,-15],[-28,-28],[-1,-5],[-3,-14],[-4,-19],[14,-37],[4,-6],[15,-21],[0,-47],[-6,-23],[-21,-33],[-57,-67],[-14,-17],[19,-27],[20,-13],[13,-5],[22,-7],[2,0],[38,-1],[48,6],[22,7],[54,23],[30,13],[2,0],[17,2],[28,2],[19,-15],[7,-6],[5,-4],[-1,-17],[-2,-25],[-5,-49],[-1,-10],[7,-21],[11,-14],[5,-3],[8,-5],[11,-8],[29,-9],[47,-2],[56,14],[27,1],[24,0],[17,-6],[5,-4],[4,-3],[19,-15],[3,-11],[5,-21],[17,-65],[-2,-42],[-2,-34],[-1,-28],[-3,-4],[-21,-39],[-2,-3],[-23,-23],[-68,-58],[-1,-2],[-77,-25],[-73,12],[-152,44],[-10,3],[-50,5],[-2,-1],[-20,-4],[-7,-3],[-91,-40],[-19,-10],[-14,-7],[-7,-3],[-8,-13]],[[26794,60591],[-34,2],[-35,0],[-43,0],[-102,0],[-72,0],[-76,0],[-116,-1],[-78,0],[-99,-2],[-61,1],[-120,-1],[-52,0],[-79,-1],[-43,0],[-69,0],[-48,0],[-69,-2],[-44,0],[-32,0],[-42,0],[-35,0],[-31,0],[-62,-1],[-55,-1],[-40,1],[-42,-1],[-65,0],[-39,0],[-30,-1],[-68,1],[-67,0],[-35,-1],[-29,0],[-30,0],[-30,-3],[-93,-1],[-280,-2],[-94,0],[-91,-1],[-30,0],[-28,0],[-29,2],[-31,1],[-76,-1],[-71,0],[-53,0],[-47,-1],[-89,-1],[-40,0],[-59,0],[-41,-1],[-34,0],[-31,0],[-141,0],[-54,-1],[-57,-1],[-50,0],[-38,-1],[-33,0],[-69,0],[-30,0],[-33,-1],[-54,0],[-31,1],[-37,-1],[-35,0],[-33,0],[-33,0],[-39,0],[-46,0],[-43,-1],[-35,-1],[-36,0],[-48,1],[-28,0],[-44,0],[-50,-1],[-62,0],[-51,0],[-35,0],[-33,1],[-31,-4],[-29,0],[4,34],[1,16],[-30,0],[-89,-1],[-29,0],[-40,0],[-118,-1],[-39,0],[-75,-5],[-34,1],[-12,0],[-17,1],[-56,3],[-23,1],[-17,0],[-49,0],[-38,0],[-30,-1],[-36,0],[-34,0],[-43,0],[-51,-1],[-72,-1],[-45,0],[-34,0],[-35,1],[-85,0],[-45,0],[-199,1],[-81,0],[0,-72],[0,-215],[0,-72],[0,-21],[1,-39],[4,-27],[2,-57],[1,-34],[2,-46],[1,-26],[1,-29],[1,-135],[1,-108],[2,-27],[0,-222],[0,-65],[1,-54],[-1,-63],[-1,-29],[-1,-49],[0,-22],[0,-24],[-1,-52],[-1,-44],[-1,-49],[0,-26],[-2,-36],[0,-83],[-3,-63],[-2,-73]],[[20820,58753],[-30,1],[-28,0],[-90,0],[-45,0],[-37,0],[-118,0],[-38,0],[-29,0],[-32,0],[-31,0],[-21,0],[-45,0],[-53,0],[-38,0],[-43,0],[-44,0],[-72,0],[-41,0],[-48,1],[-98,0],[-62,1],[-122,0],[-271,2],[-1,54],[-42,1],[-39,0],[-118,0],[-39,0],[-11,0],[-38,0],[-59,0],[-45,0],[-37,0],[-50,0],[-30,1],[-13,0],[-51,0],[-30,0],[-93,0],[-252,1],[-77,0],[-60,1],[-157,1],[-53,0],[-69,1],[-104,0],[-104,1],[-69,0],[-65,0],[-181,-1],[-60,0],[-38,-1],[-78,0],[-29,0],[-69,0],[-120,-1],[-56,-4],[-59,-4],[-43,0],[-59,0],[-18,0],[-15,0],[-57,0],[-163,0],[-55,0],[-90,0],[-326,16],[-110,0],[-41,3],[-28,-1],[-56,-1],[-31,0],[-41,1],[-70,-1],[-42,0],[-38,0],[-47,0],[-48,0],[-41,-1],[-47,-1],[-52,1],[-34,0],[-82,1],[-28,-6],[-38,7],[-36,0],[-51,0],[-60,0],[-52,0],[-80,0],[-108,-1],[-47,0],[-42,0],[-36,0],[-43,0],[-43,0],[-72,0],[-46,-1],[-139,-1],[-40,-1],[-79,1],[-33,1],[-44,0],[-31,0],[-27,0],[-18,1],[-74,0],[-60,1],[-132,1],[-158,2]],[[13737,58829],[32,56],[78,117],[21,8],[259,103],[72,14],[107,22],[82,10],[69,8],[170,55],[155,68],[62,56],[44,61],[-24,41],[69,91],[6,81],[28,50],[62,71],[-25,80],[-110,108],[-94,45],[-150,93],[-120,47],[-168,85],[-190,98],[-277,73],[-169,17],[-26,6],[-69,16],[-48,10],[-54,42],[-7,6],[-194,167],[-57,21],[-300,88],[-148,49],[-66,46],[-13,130],[-5,222],[182,199],[113,76],[128,46],[190,29],[297,13],[158,-9],[88,-18],[120,-75],[111,-72],[13,-39],[3,-12],[42,-23],[203,-19],[28,-1],[378,-13],[329,13],[202,16],[77,14],[118,23],[242,82],[192,84],[50,82],[53,176],[5,65],[-6,18],[-15,126],[27,69],[30,103],[16,141],[-11,75],[-23,124],[-85,156],[-16,19],[-11,54],[-83,243],[-29,127],[-3,26],[-5,68],[56,6],[62,7],[117,3],[87,31],[22,68],[60,21],[161,-6],[1,62],[67,58],[86,1],[42,79],[1,1],[140,95],[155,111],[90,92],[49,120],[60,111],[72,156],[5,120],[-38,70],[-84,79],[-119,54],[-179,31],[-210,6],[-179,-27],[-203,-72],[-134,-107],[-16,-31],[-41,-82],[-81,-230],[-20,-55],[-63,-93],[-57,-60],[-11,-12],[-32,-117],[-68,-112],[-26,-11],[-22,-9],[-165,75],[-4,1],[-125,86],[-89,121],[-91,170],[-92,76],[-62,27],[-75,34],[-81,55],[58,99],[9,14],[4,99],[-61,57],[-99,72],[-80,95],[-115,87],[-86,83],[-11,71],[0,12],[2,247],[-28,134],[-31,139],[5,54],[37,56],[28,58],[-7,112],[-4,58],[-8,54],[37,20],[29,41],[12,36],[176,98],[123,67],[48,17],[45,25],[32,30],[91,67],[85,47],[33,30],[35,23],[100,86],[62,50],[49,53],[71,76],[27,20],[102,76],[129,84],[79,42],[36,20],[236,115],[192,94],[12,20],[97,91],[182,127],[82,70],[28,23],[56,53],[29,40],[36,72],[0,1],[0,1],[12,138],[6,224],[-7,19],[-31,37],[-49,34],[-2,1],[-70,47],[-70,28],[-52,11],[-6,2],[-13,3],[-44,6],[-45,7],[-183,8],[-88,-37],[-44,-8],[-41,-14],[-121,-48],[-22,-17],[-100,-79],[-20,-19],[-1,-5],[19,-13],[-18,-26],[-81,-123],[-35,-120],[59,-119],[13,-153],[-94,-192],[-77,-67],[-29,-24],[-108,-93],[-224,-154],[-87,-43],[-29,-14],[-76,-37],[-79,-22],[-115,-33],[-33,-12],[-3,-1],[-133,-35],[-89,-23],[-72,-25],[-60,-20],[-12,-2],[-11,-2],[-133,-23],[-102,-4],[-183,5],[-323,15],[-193,43],[-95,29],[-186,76],[-6,2],[-73,26],[-8,3],[-50,15],[-53,22],[-65,41],[-24,14],[-14,8],[-70,39],[-179,77],[-94,66],[-31,89],[55,101],[152,126],[50,19],[142,-2],[157,5],[103,24],[56,0],[16,-4],[175,-46],[73,10],[309,96],[297,72],[224,43],[177,-13],[188,62],[37,44],[57,87],[82,58],[106,77],[28,34],[81,77],[15,23],[12,143],[-19,76],[-12,18],[-15,19],[-76,52],[-45,30],[-16,19],[-84,112],[-34,55],[-26,18],[-99,67],[-29,14],[-131,61],[-92,35],[-53,25],[-197,89],[-144,67],[-297,115],[-102,-6],[-43,-13],[-33,-10],[-89,-133],[-52,-79],[-8,-97],[37,-176],[136,-288],[0,-31],[1,-38],[18,-34],[32,-42],[-21,-22],[-35,-17],[-10,-5],[-76,-67],[-5,-4],[-77,-76],[-39,-21],[-55,-21],[-82,-28],[-47,-13],[-70,-19],[-78,-16],[-119,-25],[-172,-35],[-113,-18],[-96,-8],[-130,4],[-173,21],[-361,58],[-109,35],[-3,19],[4,6],[17,23],[31,21],[23,22],[26,155],[-6,28],[-6,27],[18,59],[51,30],[190,95],[6,3],[5,2],[97,9],[108,30],[72,26],[37,13],[77,32],[6,3],[42,29],[27,24],[2,1],[43,70],[7,15],[12,25],[61,69],[47,49],[21,21],[13,13],[73,74],[31,27],[1,0],[41,23],[2,1],[146,83],[27,16],[98,58],[37,23],[4,14],[2,7],[5,18],[2,12],[0,15],[-7,9],[-12,17],[-3,3],[-15,35],[-30,66],[-11,22],[-215,117],[-64,24],[-193,75],[-259,125],[-95,81]],[[53567,63044],[-35,-119],[-61,-37],[51,-5],[1,0],[4,-3],[1,-11],[-6,-11],[-7,-11],[-5,-5],[-78,-76],[-28,-27],[-37,-40],[-31,-20],[-9,-7],[-58,-23],[-100,15],[-12,4],[-13,7],[-13,11],[0,3],[-129,-11],[-32,-44],[-4,-6],[-35,-49],[-8,2],[-53,-117],[3,-5],[63,-50],[42,-23],[-128,-110],[1,-1],[8,-4],[7,-5],[2,-12],[1,-1],[-2,-7],[-5,-6],[-27,-23],[-1,-1],[-2,-1],[-17,-12],[-3,-1],[-32,-12],[-32,-17],[-18,-11],[-15,-11],[-13,-14],[-64,-91],[-5,-9],[-81,-77],[-151,-56],[-35,2],[-41,3],[-38,-92],[4,-11],[7,-19],[18,-71],[-1,-9],[-17,-31],[1,-3],[13,-34],[26,-28],[19,-21],[-17,-74],[-108,-56],[-7,-23],[-8,-27],[65,-19],[3,-24],[-11,-1],[16,-28],[13,-22],[-8,-12],[-55,-84],[-7,-12],[3,-6],[14,-9],[3,-2],[2,-1],[-1,-8],[-9,-11],[-1,-1],[-27,-24],[-50,-41],[-111,-59],[26,-8],[97,-29],[-30,-8],[-147,11],[-3,1],[-57,9],[-2,0],[24,-21],[10,-12],[3,-26],[0,-16],[-3,-5],[-6,-3],[-9,0],[-139,6],[-6,2],[-8,8],[-17,28],[2,8],[5,2],[71,20],[1,0],[-51,-2],[-28,-2],[-15,-4],[-9,-4],[-12,-11],[0,-1],[-20,-24],[-3,-4],[-18,-31],[-1,0],[-32,6],[-5,29],[-39,12],[-44,-11],[-90,-21],[-10,-9],[-51,-51],[-27,-64],[88,-91],[23,-24],[23,-25],[42,-13],[-45,-50],[-76,-68],[-61,-91],[-34,-44],[23,-40],[-20,-50],[-14,-35],[17,-17],[87,-12],[2,-62],[-33,-21],[8,-12],[50,-1],[27,-54],[7,-14],[-14,-93],[0,-6],[-5,-9],[-24,-48],[-1,-1],[-16,-14],[-13,-3],[-127,-19],[-101,-20],[-15,-3],[-55,-15],[-94,-26],[-39,-24],[-20,-33],[0,-2],[11,-194],[4,-44],[11,-23],[12,-5],[13,1],[28,-15],[3,-3],[34,-33],[4,-9],[0,-11],[-4,-15],[-127,-105],[-143,-103],[-13,-9],[-16,-5],[-19,-5],[-49,-19],[-1,0],[-70,-42],[-19,-13],[-117,-96],[-5,-6],[-28,-40],[-2,-4],[-3,-5],[32,-33],[-2,-1],[-35,-42],[-8,-6],[-11,-6],[-75,-31],[-25,-25],[-72,-24],[-98,-76],[-96,-74],[-10,-8],[-10,-10],[-8,-12],[-3,-7],[-49,-16],[-68,-11],[-13,-2],[-18,-3],[-27,-7],[-53,-24],[4,-44],[16,-11],[6,-1],[23,-3],[20,-11],[34,-36],[-1,-13],[-38,-42],[-49,-32],[-1,0],[-10,-8],[-97,-77],[-74,-60],[-2,-1],[-16,-11],[-7,-23],[39,-30],[26,-15],[12,-6],[53,-65],[6,-5],[6,-3],[-44,-34],[-20,-2],[-44,-6],[-30,2],[-14,-8],[-28,-30],[18,-24],[-1,-11],[-13,-7],[-21,-1],[-13,0],[-31,-15],[-60,-78],[-1,-10],[21,-48],[15,-14],[17,-1],[5,1],[57,4],[50,-15],[2,-6],[-22,-17],[-48,-37],[-7,-5],[-37,-48],[-39,-49],[-2,-1],[-48,-34],[-12,-62],[11,-2],[76,-15],[3,-2],[0,-10],[-11,-8],[-53,-11],[-20,-4],[-98,-25],[-3,-4],[0,-6],[20,-30],[19,-28],[19,-64],[34,-3],[8,-31],[-32,-17],[-24,-13],[-19,-62],[-5,-15],[-2,-7],[-10,-6],[-33,-17],[-54,-20],[-2,-1],[-26,-6],[-20,-2],[-28,1],[-23,-23],[-28,-28],[-22,6],[-17,11],[-4,0],[-36,6],[-31,-2],[-96,1],[-9,-22],[-25,-60],[-63,10],[-13,1],[-4,0],[-22,-12],[-2,-16],[12,-50],[12,-8],[72,-45],[7,-5],[-66,-44],[-11,-8],[6,-29],[2,-6],[-31,-19],[-14,-7],[-26,-13],[-36,-18],[-130,-29],[-29,4],[-32,16],[-13,6],[-26,7],[-45,-35],[-13,-10],[-24,1],[-19,0],[-40,-19],[-94,-46],[-1,-13],[33,-51],[16,-11],[33,-6],[21,-4],[24,-14],[-4,-26],[-6,-35],[-2,-9],[-44,-16],[-47,-1],[-11,8],[2,22],[1,7],[-8,6],[-26,-2],[-93,-38],[-22,-12],[-2,-11],[8,-5],[13,-5],[28,-10],[-44,-9],[-203,-41],[-63,-28],[-3,-1],[-2,0],[-24,1],[-8,0],[-19,10],[-34,16],[-37,7],[-51,2],[-17,-7],[-70,-63],[31,-40],[2,-3],[-2,-23],[-69,-52],[-23,-13],[-52,-25],[-28,-13],[12,-11]],[[47484,56095],[-60,15],[-72,19],[-35,8],[-37,10],[-4,1],[-61,16],[-3,1],[-136,36],[-31,8],[-520,135],[-3,1],[-99,24],[-48,13],[-308,79],[-1,0],[-126,33],[-228,58],[-429,112],[-1,1],[-57,14],[-79,21],[-439,113],[-71,19],[-50,13],[-164,42],[-60,16],[-170,44],[-457,118],[-247,64],[-74,19],[-104,27],[-139,36],[-163,42],[-58,15],[-296,78],[-71,19],[-79,20],[-466,122],[-90,23],[-5,2],[-108,28],[-97,25],[-115,30],[-28,8],[-145,38],[-355,93],[-180,46],[-79,21],[-36,9],[-113,29],[-256,67],[-169,45],[-124,31],[-55,14],[-280,73],[-227,60],[-82,22],[-185,50],[-67,18],[-98,24],[-138,39],[-177,41],[-541,153],[-50,12],[-362,88],[-241,48],[-19,5],[-27,33],[-79,29],[-43,11],[-40,11],[-44,8],[-72,14],[-89,11],[-54,16],[-19,11],[-26,24],[-89,87],[-30,30],[-104,100],[-12,7],[-14,4],[-69,10],[-13,-1],[-3,-2],[-110,-74],[-1,0],[-98,-126],[-2,-3],[-5,-11],[-164,-26],[-76,1],[-42,0]],[[36291,58813],[-31,2],[-12,2],[-59,11],[-74,15],[-9,1],[-4,2],[-105,43],[-9,4],[-6,4],[-119,82],[-43,30],[-35,32],[-3,5],[-13,18],[-6,9],[0,2],[2,61],[27,70],[24,63],[6,15],[16,34],[14,13],[3,59],[0,9],[3,38],[-11,29],[-6,14],[-4,10],[-15,22],[-35,32],[-51,36],[-1,0],[-48,23],[-43,16],[-2,1],[-2,0],[-44,9],[-42,2],[-26,1],[-34,-4],[-82,-14],[-44,-8],[-60,-13],[-62,-5],[-34,-3],[-11,-1],[-3,0],[-93,3],[-2,0],[-203,18],[-41,4],[-46,10],[-41,14],[-2,1],[-136,61],[-65,30],[-3,2],[-6,2],[-9,7],[-43,27],[-12,8],[-6,7],[-10,13],[-14,17],[-22,47],[-2,5],[-4,9],[1,12],[10,150],[-6,21],[-29,105],[-14,68],[-8,55],[4,22],[6,35],[16,41],[8,76],[-23,115],[-22,15],[-2,2],[4,9],[2,10],[11,7],[30,9],[2,1],[21,3],[20,0],[2,0],[55,-7],[51,-1],[25,3],[20,7],[13,6],[1,1],[18,14],[10,13],[0,1],[1,9],[0,2],[0,2],[0,12],[0,2],[-3,7],[-2,2],[-9,10],[-2,2],[-30,17],[-107,46],[-16,12],[-13,13],[-10,25],[-3,10],[1,22],[6,27],[19,33],[5,8],[16,20],[4,2],[99,54],[1,1],[5,3],[9,0],[2,0],[45,5],[18,-2],[1,0],[1,-1],[26,-5],[11,-6],[1,0],[13,-12],[7,-9],[1,0],[6,-15],[0,-6],[0,-2],[0,-5],[1,-8],[-1,-13],[-1,-6],[-1,-25],[2,-9],[8,-24],[46,-108],[13,-17],[15,-17],[28,-20],[7,1],[181,24],[11,8],[43,28],[16,8],[19,7],[16,4],[57,3],[39,-1],[23,-1],[38,-6],[7,-1],[25,-5],[124,-112],[0,-6],[6,-20],[4,-11],[20,-33],[48,-70],[17,-20],[33,-31],[14,-12],[51,-31],[27,-16],[46,-17],[6,-1],[1,0],[109,-11],[1,0],[26,-1],[3,0],[19,-3],[19,-6],[6,-2],[41,-22],[31,-9],[31,0],[25,7],[81,24],[17,7],[32,14],[3,1],[23,11],[14,10],[2,2],[20,22],[8,17],[0,1],[1,1],[7,18],[5,25],[0,24],[-15,38],[-15,21],[-23,16],[-37,16],[-68,21],[-37,10],[-28,8],[-60,31],[-32,27],[-48,38],[-26,13],[-29,11],[-35,13],[-48,25],[-19,19],[-44,56],[-36,31],[-14,22],[2,27],[13,31],[23,38],[9,24],[23,38],[20,18],[64,29],[27,10],[57,32],[42,18],[34,7],[37,3],[38,2],[31,-6],[54,-5],[26,-9],[35,-23],[27,-26],[11,-23],[10,-22],[0,-27],[-4,-27],[-9,-34],[-21,-46],[-10,-24],[-1,-32],[16,-97],[2,-36],[8,-29],[19,-17],[49,-31],[29,-19],[17,-25],[7,-42],[19,-23],[30,-24],[38,-20],[3,-1],[34,-5],[16,-1],[1,-1],[47,2],[33,7],[37,15],[25,13],[28,19],[28,23],[15,13],[72,61],[4,5],[2,4],[-1,10],[-8,12],[-25,18],[-34,24],[-31,17],[-21,11],[-1,0],[-14,9],[-14,11],[-1,1],[-5,5],[-26,24],[-30,33],[-29,52],[-3,6],[-2,10],[-6,41],[1,37],[3,18],[10,38],[6,12],[39,55],[78,86],[63,61],[45,41],[20,15],[15,9],[26,11],[28,10],[14,3],[38,9],[47,8],[69,7],[72,0],[133,-3],[0,55],[-1,155],[-2,447],[-1,31],[-1,325],[0,56],[-1,64],[-2,120],[0,48],[-1,224],[-1,168],[-1,75],[-1,199],[0,51],[-1,48],[-1,152],[0,99],[-1,68],[-1,76],[-2,121],[-1,30],[-6,367],[-3,137],[-1,72],[-1,69],[-2,68],[0,32],[-1,54],[-2,43],[-1,24]],[[36291,58813],[-1,-15],[-188,-2],[-115,-1],[-64,0],[-86,0],[-267,-1],[-130,-1],[-266,-4],[-39,0],[-437,-2],[-46,-1],[-192,-1],[-160,-1],[-374,-3],[-33,0],[0,-38],[0,-28],[0,-58],[0,-30],[0,-31],[0,-94],[-1,-91],[0,-96],[-1,-294],[0,-1],[-1,-85],[0,-101],[1,-68],[0,-39],[-3,-158],[-4,-182],[-5,-244],[-2,-136],[-55,-5],[-105,0],[-122,0],[-113,0],[-122,0],[-47,0],[-515,0],[-94,0],[-66,-3],[-69,-3],[-61,0],[-35,1],[-93,1],[-37,0],[-37,0],[-32,0],[-57,-1],[-30,0],[-47,-1],[-123,-1],[-64,0],[-29,-6],[-30,6],[-74,0],[-57,-1],[-76,0],[-34,0],[-318,5],[-38,0],[-102,-1],[-186,-1],[-38,0],[-3,0],[-28,1],[-33,-1],[-31,0],[-66,-1],[-187,-1],[-27,-1],[-2,0],[-112,-3],[-60,-1],[-35,-1],[-31,0],[-139,0],[-59,0],[-83,-1],[-40,0],[-35,0],[-31,0],[-41,-1],[-36,1],[-55,-1],[-162,-1],[-85,0],[-42,1],[-33,4],[-77,1],[-12,0],[-54,1],[-163,-4],[-65,0],[-47,0],[-32,0],[-29,0],[-55,1],[-30,1],[-34,0],[-55,1],[-61,1],[-58,0],[-33,0],[-31,-2],[-168,-2],[-148,-1],[-262,-2]],[[28101,56986],[-36,0],[1,19],[5,120],[2,57],[-3,26],[0,26],[1,73],[0,38],[0,28],[0,35],[-1,23],[0,42],[1,104],[0,25],[1,39],[0,26],[-2,36],[0,24],[2,25],[0,24],[-3,53],[-1,22],[-1,39],[-1,32],[0,75],[0,73],[0,24],[-1,34],[0,43],[-1,25],[0,100],[0,37],[0,81],[-1,79],[-6,77],[2,26],[-1,96],[2,39],[0,49],[-2,55],[-1,21],[-2,41],[-3,40],[-2,22],[7,30],[-10,344],[-2,77],[-3,103],[-7,268],[0,39],[0,25],[-1,49],[-2,75],[0,26],[1,28],[-1,49],[-1,26],[-1,46],[0,35],[-1,28],[0,21],[1,35],[-2,30],[-2,251],[-1,23],[0,29],[-38,0],[-552,-3],[-183,-1],[-410,-4],[-48,3]],[[94192,64575],[-4,-25],[-4,-27],[-18,-103],[-10,-61],[-10,-56],[-6,-38],[-41,-241],[0,-3],[-6,-33],[-4,-26],[-5,-28],[-12,-74],[-6,-37],[-3,-16],[-5,-24],[-10,-65],[-7,-39],[-2,-15],[-4,-26],[-2,-11],[-10,-61],[-3,-17],[-4,-25],[-1,-3],[-24,-160],[-8,-61],[-5,-32],[-13,-91],[-31,-148],[-10,-48],[-28,-132],[-7,-37],[-12,-87],[-20,-148],[-15,-116],[-4,-24],[-3,-23],[-2,-12],[0,-1],[-15,-93],[-9,-50],[0,-2],[-24,-138],[-6,-38],[-13,-72],[-4,-23],[-2,-11],[-10,-56],[-47,-264],[-5,-32],[-11,-69],[-57,-363],[-53,-314],[-20,-118],[-27,-161],[-2,-8],[-22,-130],[-60,-358],[-70,-430],[-10,-65],[-10,-62],[-1,-3],[-49,-306],[-4,-25],[-11,-69],[-79,-485],[-9,-60],[-5,-43],[-18,-142],[-26,-165],[0,-1],[-40,-241],[-11,-69],[-26,-165],[-7,-43],[-11,-65],[-68,-414],[-8,-52],[-12,-74]],[[92971,57122],[-74,-1],[-182,-5],[-50,1],[-78,1],[-30,-2],[-89,1],[-105,1],[-89,1],[-66,0],[-34,0],[-143,1],[-50,-1],[-120,1],[-35,0],[-32,-2],[-74,3],[-40,-1],[-113,0],[-216,-2],[-348,-2],[-464,-3],[-50,-2],[-360,-1],[-168,-1],[-58,-1],[-551,-4],[-98,0],[-159,-1],[-359,-2],[-43,0],[-365,-2],[-181,-1],[-232,-1],[-1,0],[-237,-1],[-291,-2],[-16,0],[-52,0],[-286,-3],[-80,-1],[-38,0],[-144,-1],[-71,0],[-258,-1],[-491,-3],[-150,0],[-231,-1],[-208,-1],[-182,-3],[-663,-3],[-70,-1],[-234,0],[-350,0],[-430,0],[-38,0],[-297,-1],[-87,0],[-92,0],[-32,0],[-77,-1],[-246,-3],[-58,0],[-26,-1],[-448,-1],[-42,-1],[-67,-1],[-1,0],[-256,3],[-73,0],[-429,-4],[-2,0],[-41,-1],[-276,-3],[-155,1],[-48,-1],[-70,-1],[-98,-2],[-66,0],[-31,1],[-56,0],[-48,0],[-35,1],[-29,0],[-109,-3],[-123,-1],[-75,1]],[[79901,57058],[-4,294],[-2,158],[-2,142],[-1,21],[-2,177],[0,27],[0,106],[0,25],[0,85],[0,146],[0,193],[2,164],[-4,214],[-1,89],[-3,165],[-5,252],[0,4],[0,14],[0,42],[0,40],[0,5],[0,22],[0,44],[0,24],[0,4],[-1,41],[0,108],[0,25],[-1,81],[0,202],[-1,134],[0,72],[0,31],[-1,236],[0,1],[0,32],[-1,77],[0,104],[0,40],[2,117],[0,27],[1,70],[3,235],[1,42],[0,100],[1,45],[0,31],[0,71],[1,22],[4,256],[1,39],[1,154],[1,161],[0,28],[0,101],[1,97],[-1,76],[-1,52],[0,59],[-1,9],[-1,108],[-1,108],[-1,97],[1,67],[2,337],[1,73],[1,112],[0,85],[3,249],[0,56],[1,139],[0,23],[0,101],[0,131],[0,228],[0,14],[-1,39],[0,23],[0,55]],[[79901,57058],[-462,-1],[-38,0],[-90,0],[-109,-1],[-356,0],[-102,0],[-2,0],[-106,2],[-108,0],[-40,0],[-338,4],[-33,0],[-9,0],[-292,1],[-219,2],[-114,1],[-125,5],[-54,1],[-41,1],[-58,0],[-37,-3],[-124,0]],[[77044,57070],[-119,1],[-29,0],[-27,0],[-7,0],[-272,1],[1,-76],[0,-45],[0,-1],[1,-32],[-109,0],[-261,-1],[-148,0],[-46,-1],[-12,0],[-18,0],[-340,-1],[-43,0],[-2,155],[-89,0],[-41,0],[-37,0],[-1,-1],[-91,0],[-503,-2],[-117,-1],[-98,6],[-142,-2],[-82,0],[-272,-4],[-1,102],[-187,-3],[-222,4],[-48,0],[-159,3],[-67,-3],[-189,1],[-54,0],[-268,1],[-77,0],[-352,2],[-301,1],[-215,1],[-54,1],[-1,0],[-59,0],[-7,0],[-304,1],[-73,1],[-380,2],[-86,-1],[-63,0],[-89,-1],[-395,1],[-75,1],[-146,1],[-114,1],[-249,1],[-197,0],[-297,0],[-187,0],[-707,-1],[-256,0],[-194,-1],[-96,-1],[-363,0],[-96,4],[-407,8],[-286,-3],[-126,-1],[-284,-3],[-2,0],[-39,-1],[-343,-4],[-1,0],[-50,-1],[-231,-3],[-78,0]],[[65665,57176],[0,36],[1,332],[0,86],[0,1],[1,211],[0,67],[0,78],[1,301],[7,308],[0,6],[3,273],[1,104],[1,42],[1,96],[3,177],[1,103],[2,134],[4,410],[1,12],[2,241],[4,340],[2,164],[1,113],[1,41]],[[65665,57176],[-39,-1],[-525,-5],[-296,-3],[-48,-1],[-478,-4],[-154,-2],[-32,-1],[-102,4],[-478,12],[-29,1],[-568,-3],[-37,-1],[-169,-1],[-60,0],[-75,0],[-116,-1],[-281,-2],[-159,0],[-119,-1],[-80,0],[-119,5],[-39,-6],[-39,5],[-48,-7],[-243,0],[-418,1],[-89,-1],[-55,0],[-85,2],[-114,-5],[-407,-1],[-142,0],[-168,0],[-34,-2],[-299,0],[-85,0],[-32,-1],[-58,0],[-125,0],[-40,0],[-124,0],[-101,0],[-49,0],[-165,-1],[-69,1],[-44,1],[-40,-3],[-140,-1],[-49,-1],[-144,0],[-189,-1],[-157,0],[-196,0],[-340,0],[-246,-8],[-63,-1],[-151,3],[-189,-1],[-178,1],[-33,-2],[-320,-2],[-50,1],[-126,1],[-145,0],[-255,0],[-89,-1],[-98,0],[-279,-1],[-230,-1],[-40,-1],[-642,0],[-59,-18],[-13,-1],[-17,1],[-39,-33],[0,-26],[1,-89],[0,-114],[1,-243],[0,-181],[1,-155],[0,-78]],[[54115,56203],[-237,0],[-327,8],[-97,-1],[-228,-1],[-205,1],[-109,-1],[-53,1],[-58,0],[-239,1],[-405,2],[-110,0],[-350,6],[-73,0],[-82,0],[-91,-1],[-440,-2],[25,-118],[-156,-1],[-200,-1],[-202,-1],[-179,-1],[-136,0],[-127,2],[-237,0],[-562,0],[-133,0],[-239,0],[-355,0],[-46,0],[-69,0],[-100,0],[-30,0],[-45,-1],[-141,0],[-183,0],[-253,0],[-110,0],[-49,0]],[[28101,56986],[-939,-574],[-51,-33],[-51,-34],[-51,-34],[-115,-77],[-35,-21],[-55,-34],[-50,-31],[-90,-56],[-18,-19],[-143,-84],[-618,-368],[-50,-31],[-283,-171],[-115,-67],[-234,-143],[-37,-23],[3,-25],[2,-37],[0,-24],[2,-93],[1,-40],[0,-62],[-1,-97],[1,-48],[27,5],[34,7],[15,10],[42,22],[35,13],[10,1],[73,6],[27,0],[20,-1],[22,-1],[18,-4],[24,-13],[15,-11],[62,-52],[9,-12],[2,-5],[7,-3],[14,-7],[35,-23],[40,-28],[19,-11],[25,3],[87,10],[73,18],[33,12],[53,50],[56,55],[-8,18],[1,6],[5,8],[0,1],[11,7],[11,7],[23,7],[32,2],[9,-1],[6,-2],[42,-11],[12,-3],[10,-37],[1,-2],[6,-12],[4,-5],[11,-8],[6,-2],[4,-2],[42,-13],[1,0],[56,-8],[25,-3],[6,-1],[29,-3],[19,1],[12,5],[1,0],[1,1],[54,25],[3,1],[29,15],[25,13],[1,0],[42,13],[20,1],[8,-3],[9,-6],[9,-11],[1,0],[10,-8],[13,-6],[3,-1],[3,-1],[8,-3],[14,-2],[8,-1],[4,0],[8,0],[27,6],[3,1],[26,11],[2,3],[63,22],[21,1],[75,-12],[20,-4],[29,-12],[15,-15],[16,-14],[8,-8],[-5,-12],[-1,0],[-1,-1],[-7,-5],[-21,-7],[-1,0],[-36,-4],[-44,-1],[-16,-2],[-35,-4],[-21,-9],[-241,-122],[-16,-10],[-7,-6],[-3,-2],[-2,-4],[-12,-9],[-17,-11],[-16,-19],[-10,-12],[-17,-19],[-3,-6],[-50,-90],[-12,-22],[-4,-24],[-7,-46],[1,-15],[3,-35],[6,-18],[3,-10],[1,-3],[30,-43],[74,-99],[14,-18],[6,-9],[32,-30],[30,-20],[29,-21],[25,-11],[152,-52],[91,-24],[37,-12],[83,-54],[39,-25],[14,-9],[58,-59],[0,-2],[20,-44],[1,-2],[-4,-39],[-2,-10],[-7,-24],[-10,-41],[-24,-30],[-33,-26],[-40,-32],[-17,-9],[-41,-23],[-67,-29],[-56,-24],[-11,-3],[-29,-9],[-13,-4],[-77,-16],[-55,-8],[-91,-13],[-168,6],[-18,0],[-9,2],[-55,12],[-23,5],[-23,10],[-46,21],[-211,143],[-1,0],[-26,8],[-15,4],[-50,1],[-14,-2],[-13,-3],[-16,-3],[-1,-1],[-54,-34],[-4,-3],[-10,-20],[0,-3],[-1,-13],[-2,-23],[10,-29],[2,-4],[16,-23],[15,-76],[-3,-28],[-3,-32],[0,-8],[-19,-31],[-8,-15],[-13,-23],[-12,-10],[-6,-6],[-72,-67],[-44,-42],[-17,-27],[-8,-17],[-3,-26],[-1,-13],[1,-2],[13,-35],[30,-39],[11,-14],[17,-13],[101,-76],[47,-36],[95,-43],[62,-23],[64,-12],[6,-1],[2,-1],[47,-16],[9,-3],[7,-4],[62,-34],[23,-13],[50,-34],[22,-15],[19,-7],[33,-13],[13,-6],[19,-4],[77,-20],[12,-3],[101,-3],[4,0],[86,4],[60,3],[63,4],[26,-2],[169,-14],[31,-3],[121,-22],[6,-2],[107,-34],[25,-8],[2,-1],[128,-63],[26,1],[1,0],[151,-57],[25,-13],[62,-31],[30,-15],[20,-14],[44,-34],[31,-23],[30,-38],[8,-10],[1,-3],[21,-40],[3,-57],[-26,-148],[-27,-59],[-15,-23],[-37,-35],[-8,-6],[-9,-6],[-32,-21],[-25,-3],[-18,-3],[-24,-14],[-78,-47],[-50,-30],[-76,-20],[-11,-3],[-89,-7],[-43,1],[-23,1],[-23,1],[-29,3],[-25,7],[-7,2],[-63,18],[-20,14],[-71,47],[-39,43],[-15,24],[-7,10],[-6,27],[2,16],[1,17],[2,16],[6,22],[5,17],[-5,59],[-1,15],[-4,43],[-8,21],[-12,31],[-4,9],[-24,27],[-3,3],[-33,20],[-7,5],[-6,1],[-104,30],[-14,4],[-11,1],[-75,5],[-6,0],[-6,-1],[-6,0],[-35,-5],[-7,-2],[-1,-1],[-44,-14],[-23,-12],[-7,-4],[-19,-11],[-8,-8],[-19,-18],[-1,-1],[-16,-39],[-3,-29],[2,-6],[25,-65],[-2,-21],[-2,-28],[-28,-33],[-15,-12],[-63,-51],[-25,-27],[-55,-59],[-61,-68],[-61,-78]],[[26194,51584],[-50,0],[-39,-1],[-151,0],[-37,0],[-1,0],[-479,2],[-246,0],[-290,0],[-189,0],[-278,0],[-83,1],[-274,0],[-105,0],[-240,0],[-80,0],[-48,0],[-62,0],[-276,0],[-144,0],[-155,0],[-92,0],[-46,0],[-52,0],[-114,0],[-188,0],[-150,0],[-342,1],[-6,0],[-48,0],[-351,-1],[-40,0],[-411,-1],[-361,0],[-62,0],[-44,0],[-337,3],[-204,4],[-90,1],[-153,1],[-103,-1],[-121,2],[-34,0],[-54,1],[-165,2],[-4,147],[-1,99],[-1,48],[0,26],[-1,60],[0,1],[-2,74],[-5,23],[-18,23],[-14,27],[0,21],[25,25],[10,62],[1,21],[11,224],[5,103],[0,23],[1,23],[0,23],[0,29],[1,119],[0,60],[1,15],[5,415],[2,125],[2,140],[1,70],[1,69],[1,104],[10,169],[6,23],[-11,45],[0,242],[0,42],[0,21],[0,101],[0,40],[0,26],[1,88],[4,301],[1,73],[1,80],[-1,73],[0,91],[0,23],[26,14],[24,28],[14,21],[45,0],[25,16],[31,22],[54,30],[31,23],[-32,17],[-33,17],[-23,17],[-12,22],[-1,2],[7,13],[4,9],[17,31],[25,22],[32,1],[38,-5],[36,1],[6,1],[22,7],[28,9],[32,16],[4,2],[-1,0],[-18,20],[2,2],[34,23],[94,5],[27,7],[124,104],[16,24],[0,26],[-12,20],[-20,29],[-4,23],[-16,18],[-8,10],[-6,9],[20,34],[4,7],[26,12],[35,-2],[1,2],[6,13],[2,6],[18,18],[4,4],[13,9],[15,9],[2,2],[22,22],[-5,32],[2,22],[0,1],[-11,17],[0,1],[-4,3],[-24,18],[-61,49],[-8,6],[-11,27],[5,22],[63,51],[3,25],[19,24],[23,18],[13,33],[-1,4],[-3,26],[22,16],[22,15],[13,10],[5,17],[3,7],[15,18],[1,1],[26,16],[19,21],[-2,23],[4,7],[8,14],[-13,19],[7,21],[18,20],[16,17],[31,24],[6,6],[4,9],[4,11],[2,6],[12,20],[48,13],[29,9],[13,22],[-13,48],[2,21],[1,14],[-6,29],[0,3],[11,21],[18,23],[8,25],[1,4],[16,24],[55,69],[12,22],[3,45],[0,1],[0,1],[-3,38],[10,26],[11,12],[13,14],[20,21],[-2,21],[-13,20],[0,1],[-2,26],[22,27],[23,14],[2,1],[34,23],[0,21],[-4,6],[-12,19],[3,21],[27,13],[29,2],[38,-8],[-4,124],[-1,32],[0,2],[-2,57],[0,9],[-3,65],[-4,135],[-1,31],[-9,254],[5,29],[1,118],[1,34],[0,91],[0,38],[6,141],[1,24],[0,23],[2,25],[-1,30],[1,55]],[[47484,56095],[-6,-18],[-16,-23],[-41,-35],[-91,-54],[-18,-12],[-2,-60],[5,-31],[0,-8],[-18,-10],[-46,-13],[-64,-19],[-120,-3],[-3,0],[-35,-12],[-36,-19],[-1,-8],[12,-8],[23,-1],[19,-1],[12,-8],[-1,-16],[-34,-40],[-14,-8],[-29,-13],[-25,-11],[-18,-40],[0,-10],[7,0],[29,11],[11,2],[7,1],[9,-2],[7,-6],[1,-9],[-27,-32],[-15,-2],[-17,3],[-88,-100],[15,-11],[-8,-39],[-13,-7],[-21,1],[-19,4],[-19,5],[-38,2],[-24,-16],[8,-23],[0,-81],[-20,-30],[-51,-79],[0,-5],[-1,-28],[-38,-27],[-61,-41],[-3,-2],[-43,-15],[-3,0],[0,-1],[-47,-12],[-74,-19],[-46,-9],[-12,0],[-4,3],[-5,4],[-33,47],[-2,-7],[-3,-10],[-19,-39],[-5,-8],[-1,-2],[-10,-10],[-5,-3],[-13,-1],[-11,8],[-9,8],[-15,20],[-1,1],[-1,7],[-7,12],[-6,6],[-10,5],[-12,5],[-16,0],[-10,-1],[-12,-4],[-1,-1],[-1,0],[-5,-3],[-16,-11],[-3,-1],[0,-1],[-33,-38],[-1,-2],[-2,-1],[-38,-23],[-28,-37],[-19,-47],[2,-22],[4,1],[2,-2],[14,-14],[7,-10],[0,-7],[0,-1],[0,-1],[-17,-107],[-1,-2],[-2,-2],[-8,-8],[-7,-6],[-2,-1],[-17,-12],[-4,-8],[2,-7],[15,-2],[13,-1],[19,3],[25,4],[-2,-5],[-7,-16],[-12,-16],[-67,-91],[-1,-2],[-1,-2],[-4,-6],[0,-10],[1,-4],[1,-1],[10,-5],[30,-13],[8,-3],[37,-16],[9,-6],[4,-5],[-3,-8],[-28,-37],[-17,-18],[-3,-4],[-52,-44],[-1,-1],[-55,-45],[-4,-6],[-16,-22],[-2,-2],[62,-73],[-22,-45],[-1,-2],[-1,-2],[-61,-78],[-1,-1],[-64,-113],[-1,-10],[5,-2],[21,-1],[16,-1],[-110,-62],[-1,-1],[-58,-3],[0,-1],[37,-36],[13,-59],[-2,-3],[-41,-42],[-32,-3],[-10,-3],[-9,-4],[-1,-7],[-7,-134],[-110,-31],[-53,-14],[-6,-1],[-7,-6],[0,-7],[6,-61],[3,-7],[9,-7],[19,-8],[5,-4],[-1,-4],[-5,-4],[-20,-11],[-19,-9],[-8,-5],[-2,-17],[0,-1],[0,-1],[-7,-67],[-20,-49],[-13,-14],[-26,-31],[-7,0],[-47,1],[-22,-3],[-2,0],[-24,-9],[-14,-5],[-12,-10],[-65,-88],[1,-6],[3,-6],[14,-15],[0,-1],[2,-1],[1,-13],[-14,-15],[-10,-8],[-34,-14],[-3,-2],[-19,-7],[-25,-3],[-11,1],[-2,1],[-22,19],[-13,5],[-42,6],[-23,0],[-19,-2],[-11,-4],[-2,-3],[2,-9],[1,-3],[5,-15],[11,-37],[-1,-5],[-6,-7],[-11,-4],[-14,-4],[-166,-27],[-19,-1],[-4,0],[-32,-2],[-1,0],[-33,3],[-69,8],[-3,0],[-1,1],[-8,5],[1,12],[0,4],[-2,0],[-25,-6],[-7,-2],[-81,-19],[-38,-9],[-8,0],[-10,-2],[-10,-5],[-4,-6],[-1,0],[-1,-8],[0,-1],[-2,-13],[1,-1],[2,-3],[5,-4],[6,-3],[11,1],[27,5],[9,0],[3,-2],[2,-7],[-2,-17],[-3,-11],[-13,-12],[-15,-1],[-5,0],[-15,0],[-59,-12],[-24,-32],[-17,-55],[1,-8],[-10,-17],[-11,-13],[-8,-5],[-9,-2],[-21,12],[-27,18],[-3,0],[-34,-3],[-56,-54],[-2,0],[-18,0],[-23,-6],[-22,-9],[-6,-2],[-1,-1],[-28,-12],[-5,-16],[-1,-1],[7,-2],[27,-7],[17,-11],[9,-7],[0,-6],[-1,-4],[-11,-4],[-4,-1],[-5,-2],[-9,-4],[-2,-2],[-4,-2],[-41,-23],[-4,-5],[5,-42],[0,-2],[-23,-6],[-69,-16],[-42,-10],[-1,-5],[-6,-25],[-51,-73],[-1,-1],[-3,-2],[-54,-36],[-141,63],[-10,5],[-17,8],[-2,-12],[-1,-3],[-5,-18],[-3,-6],[-28,-23],[-8,-5],[-14,-5],[-38,-2],[-1,0],[-20,3],[-14,4],[-3,3],[0,1],[-3,6],[8,17],[1,3],[-1,13],[-2,6],[-6,7],[-10,5],[-10,1],[-97,3],[-25,-32],[-9,-2],[-59,-14],[-94,-21],[-10,-4],[-26,-10],[-108,-5],[-48,-8],[-13,0],[-22,4],[-16,5],[-13,9],[-20,24],[-6,13],[-4,9],[-1,-1],[-60,-34],[-65,-38],[-5,-4],[-7,-4],[-13,-23],[-23,-43],[-1,-1],[7,-11],[7,-14],[23,-30],[8,-11],[9,-11],[-12,-1],[-13,-1],[-20,-2],[-3,-1],[-7,-4],[-10,-12],[-2,-3],[-1,-1],[-6,-11],[-1,-6],[4,-4],[10,-3],[4,0],[39,-2],[5,-3],[4,-6],[0,-9],[-6,-7],[-11,-8],[-54,-5],[-72,-38],[-17,-3],[-1,0],[-12,4],[-7,6],[-12,17],[-1,2],[-6,10],[-13,33],[-10,16],[-40,37],[-13,6],[-6,2],[-12,0],[-100,-12],[-72,9],[-49,2],[-14,-4],[-9,-5],[-33,-56],[-1,-1],[-106,-27],[-24,-6],[-14,-3],[-14,-8],[-4,-5],[-1,-1],[-2,-6],[74,-56],[-93,33],[-13,0],[-21,1],[-11,1],[-5,0],[-11,-1],[-21,-6],[-63,-18],[-123,-52],[-2,-1],[-11,-5],[-48,-13],[-81,-23],[-99,-14],[-22,-3],[-38,-1],[33,-34],[0,-5],[-88,-57],[-78,-30],[-14,-5],[-1,-1],[-4,0],[-27,-5],[-23,0],[-1,0],[-46,17],[-12,1],[-14,-4],[-1,0],[-1,-1],[-4,-3],[-6,-8],[-7,-30],[25,-28],[3,-3],[1,-51],[-13,-7],[-16,-7],[-119,-32],[-8,-2],[-4,1],[-117,21],[-3,1],[-21,11],[-20,9],[-52,9],[-17,0],[-1,0],[-6,-3],[-53,-19],[-1,0],[-16,-6],[-6,-9],[-1,-1],[-2,-1],[-51,-27],[-8,-3],[-49,-16],[-17,-4],[-29,0],[-62,18],[-3,1],[-11,0],[-6,0],[-4,0],[-11,-1],[-12,-6],[-2,-1],[-4,-1],[-28,-15],[-8,-6],[-5,-7],[-12,-16],[-16,-9],[-15,-5],[-17,0],[-27,6],[0,1],[-15,62],[0,3],[-1,2],[-4,10],[-46,75],[-12,8],[-11,3],[-2,0],[-2,0],[-14,1],[-82,-21],[-1,0],[-9,0],[-45,-1],[-1,0],[-3,1],[-10,1],[-21,-1],[-154,-26],[-4,-2],[-3,-2],[0,-1],[0,-7],[-42,-24],[-1,0],[-94,-39],[-22,-9],[-23,0],[15,-8],[43,-24],[-2,-5],[-10,-10],[0,-1],[-1,0],[-13,-10],[-9,-3],[-8,1],[-1,0],[-10,3],[-97,38],[-6,4],[-3,24],[-2,0],[-62,-15],[-29,-6],[-35,-4],[-24,-1],[-10,4],[-1,5],[0,23],[-2,2],[-1,0],[-3,1],[-7,2],[-21,2],[-23,-5],[-151,-47],[-2,-1],[-1,0],[-10,-5],[-34,-27],[-5,-7],[-2,-8],[0,-1],[4,-12],[-11,0],[-90,1],[-57,1],[-28,1],[-4,0],[-4,3],[-8,8],[-50,43],[-35,6],[-29,2],[-3,0],[-65,-2],[-5,-3],[-4,-2],[-34,-65],[-5,-10],[1,-24],[-5,-6],[-12,-2],[-51,9],[-2,0],[-4,2],[-16,0],[-9,-1],[-1,0],[-1,0],[-15,-8],[-6,-7],[-25,-145],[2,-10],[2,-3],[11,-7],[3,-2],[27,-15],[-86,-58],[-29,-18],[-14,-4],[-23,-3],[-176,47],[-9,4],[3,8],[3,12],[0,2],[-3,12],[-8,6],[-2,2],[-3,2],[-7,5],[-22,4],[-5,1],[-3,0],[-14,-1],[-61,-11],[-42,-9],[-45,-8],[-47,-18],[-22,-17],[-46,-14],[-35,-25],[-34,-16],[-47,-13],[-22,-17],[11,-25],[38,-6],[11,-20],[-43,-46],[17,-17],[-9,-24],[-32,5],[-26,8],[-35,-17],[-1,0],[-34,-12],[-2,-1],[-7,-4],[-10,-72],[1,-18],[1,-2],[13,-25],[-55,-44],[-2,-2],[-3,-1],[-6,-2],[-74,-17],[-36,-9],[-29,-6],[-27,0],[-4,1],[-19,-2],[-13,-8],[0,-13],[3,-7],[14,-11],[11,-4],[1,0],[35,-7],[7,-5],[2,-6],[0,-1],[7,-56],[-3,-8],[-4,-3],[-6,-4],[-12,-5],[-3,-1],[-2,-1],[-69,-16],[-3,-1],[-21,-4],[-31,-6],[-58,-6],[-5,-2],[-44,-8],[-18,-6],[-19,-10],[-3,-5],[-1,-9],[10,-6],[18,-4],[3,-1],[45,-5],[-10,-3],[-46,-17],[-7,-5],[-15,-20],[-36,-28],[-12,-9],[-25,-14],[-7,-4],[-29,-14],[-13,-4],[-5,-2],[-5,-1],[-2,-1],[-7,-1],[-111,-4],[-3,0],[-28,6],[-36,36],[0,1],[0,2],[-1,10],[-4,7],[-1,2],[0,1],[-43,54],[-1,2],[-41,33],[0,1],[-19,3],[-20,4],[-42,-13],[-70,-23],[-2,-1],[-8,-2],[-1,-1],[1,0],[33,-43],[0,-1],[4,-5],[0,-14],[0,-3],[-13,-40],[-1,-2],[-10,-15],[-7,-7],[-49,-37],[-7,-5],[-2,-2],[-3,-1],[-19,-9],[-22,-5],[-33,-3],[-20,4],[-5,3],[0,6],[-33,32],[-6,0],[-64,-2],[-5,-1],[-29,-11],[-4,-4],[-4,-3],[-24,-19],[22,-17],[7,-32],[-1,-47],[-28,-20],[-72,-27],[-28,-2],[-14,23],[-2,22],[16,22],[1,32],[-8,29],[-33,18],[-29,5],[-8,-2],[-12,-7],[-40,-43],[-1,-1],[-4,-9],[0,-17],[-8,-15],[-7,-8],[-1,-1],[-7,-8],[-18,-4],[-2,-1],[-14,-2],[-51,-10],[-65,-7],[-68,-3],[0,-8],[14,-10],[1,-1],[3,-2],[12,-5],[20,-5],[6,-2],[29,-4],[16,-4],[14,-7],[2,-2],[0,-11],[-10,-9],[-1,-1],[-11,-4],[-106,-42],[-1,0],[-105,-48],[-1,-2],[0,-2],[-48,-8],[17,-40],[19,1],[10,-3],[9,-5],[0,-7],[-6,-8],[-12,-9],[-41,-14],[-128,-26],[-22,-2],[-1,0],[-6,2],[-9,4],[-29,27],[-9,11],[-1,1],[0,4],[0,22],[-3,2],[-12,1],[-4,-1],[-10,-5],[-37,-31],[-23,-18],[3,-14],[-1,-27],[-19,-23],[-30,-4],[-60,-24],[-23,-12],[-27,-28],[-10,-32],[-29,-4],[-28,20],[-13,1],[-10,1],[-13,2],[-37,-11],[-30,-21],[-39,-1],[-8,29],[43,13],[0,24],[-43,24],[-28,10],[-16,5],[-39,-14],[-20,20],[-59,-47],[-13,-7],[-4,0],[-8,0],[-1,0],[-16,14],[-14,26],[1,6],[0,7],[-9,12],[-6,7],[-42,41],[-16,11],[-13,3],[-7,0],[-4,-1],[-44,-5],[-34,1],[-3,3],[-46,30],[-24,16],[-6,4],[-10,1],[-11,2],[-12,-6],[-1,-1],[-1,-1],[-8,-7],[-23,-24],[-6,-6],[-23,12],[-40,22],[-22,12],[-3,2],[-34,-2],[-41,-13],[-15,3],[-46,9],[-14,-2],[-8,-1],[-5,0],[-19,-12],[-10,-7],[-18,-4],[-29,0],[-15,0],[-48,1],[-5,0],[-15,-9],[-12,-6],[53,-28],[12,-8],[-1,-8],[-14,-7],[-119,-59],[-15,1],[-6,0],[-28,19],[-9,-1],[-4,-1],[-12,-6],[-10,-6],[-6,-13],[-5,-10],[23,-31],[7,-9],[8,-34]],[[33873,49760],[-49,-51],[-2,-3],[-32,-78],[-5,-12],[28,-61],[2,-1],[4,-3],[22,-15],[-1,-7],[0,-1],[-1,-1],[-69,-87],[-6,-8],[-11,-10],[-3,-3],[-27,-12],[-2,0],[-35,-6],[-10,-2],[-11,0],[-13,0],[-5,1],[-28,16],[0,7],[1,4],[0,5],[17,11],[10,6],[0,2],[1,10],[0,1],[-8,6],[-12,0],[-3,0],[-10,-3],[-78,-17],[-4,-2],[-12,-7],[-2,-1],[-39,-58],[-16,-36],[-1,-10],[-2,-23],[-2,-25],[0,-6],[4,-60],[-15,-10],[-4,-3],[-1,-1],[-13,0],[-57,1],[-14,1],[-16,2],[-60,23],[-41,-18],[-3,-26],[26,-31],[12,-26],[-31,-16],[-20,1],[-104,2],[-80,2],[-20,8],[-21,7],[-17,1],[-4,0],[-12,0],[-10,-5],[-64,-31],[-2,0],[0,-1],[-44,-51],[-14,-17],[2,-13],[1,-10],[-10,-16],[-2,-1],[-30,-12],[-4,-2],[-3,-1],[-23,-16],[-13,-9],[-1,0],[-10,-3],[-33,-9],[-22,-14],[1,-8],[2,-8],[16,-11],[11,-9],[-2,-20],[-8,-5],[-153,-51],[-4,-1],[-7,-3],[-17,-7],[-11,-4],[-6,-18],[5,-3],[10,-6],[20,-11],[5,-3],[4,-5],[-6,-13],[-40,-22],[-7,0],[-7,1],[-15,0],[-20,12],[-16,10],[-9,1],[-15,2],[-5,1],[-18,-10],[0,-3],[3,-32],[-16,-7],[-8,-4],[-23,-1],[-18,-2],[-40,-2],[-8,5],[1,10],[1,11],[-8,6],[-9,2],[-11,3],[-2,0],[-56,-29],[-9,-4],[-20,0],[-9,1],[-3,1],[-22,16],[-3,2],[-106,-4],[-6,-3],[-12,-7],[-92,-36],[-83,-24],[-25,-28],[49,-13],[28,-1],[16,-20],[-16,-19],[-54,-10],[-28,13],[-41,14],[-12,-36],[5,-14],[43,0],[27,-17],[12,-30],[23,-37],[21,-20],[-51,-37],[23,-39],[21,-16],[-9,-23],[-26,-13],[-31,9],[-22,17],[-101,69],[-44,23],[-12,25],[-11,16],[-45,-1],[-6,0],[-26,-9],[-7,-4],[-42,-23],[-19,-20],[-7,-4],[-11,-6],[-21,-10],[-106,-29],[-11,-3],[-6,-1],[-16,-4],[-4,0],[-17,1],[-25,1],[-8,5],[-29,48],[-18,15],[-5,4],[-32,28],[-61,-1],[-2,0],[-2,0],[-6,-4],[-46,-28],[-32,-9],[-55,-16]],[[30955,48377],[-1,204],[-1,301],[-67,0],[-158,0],[-109,-1],[-138,0],[-233,-1],[-186,-1],[-66,0],[-1,118],[-1,179],[-68,0],[-111,-1],[-130,0],[-254,0],[-5,0],[-346,-1],[-142,2],[-128,0],[-688,-1],[0,28],[0,189],[0,142],[0,203],[0,34],[-19,0],[-3,112],[0,1],[-4,199],[-35,-1],[-411,-3],[-530,-4],[2,138],[2,179],[4,290],[-49,1],[-348,1],[-75,1],[-376,1]],[[26280,50686],[-10,16],[-6,14],[-12,23],[-3,8],[3,28],[3,3],[30,20],[3,2],[5,0],[19,-1],[39,-1],[12,-6],[38,-4],[70,-2],[5,0],[2,1],[7,4],[130,34],[9,3],[38,6],[21,0],[5,-1],[16,-5],[40,-25],[49,-15],[47,-2],[44,14],[3,0],[9,6],[22,15],[14,9],[6,7],[13,18],[6,8],[19,18],[59,58],[12,18],[20,32],[3,3],[11,36],[1,3],[2,25],[1,14],[-22,37],[-11,8],[-29,20],[-44,15],[-21,8],[-31,2],[-91,5],[-8,0],[-24,-1],[-74,-3],[-7,0],[-166,6],[-25,0],[-16,3],[-34,7],[-51,17],[-19,6],[-11,5],[-25,12],[-23,16],[-17,12],[-1,1],[-31,37],[-104,122],[-16,19],[-4,6],[-14,30],[-4,10],[4,44],[28,70]],[[26280,50686],[17,-19],[30,-31],[47,-47],[11,-16],[0,-10],[-3,-27],[-21,-44],[-52,-110],[-20,-36],[-20,-22],[-13,-16],[-35,-61],[-6,-18],[-1,-30],[-3,-59],[-14,-16],[-5,-7],[-33,-20],[-2,-2],[-57,-16],[-15,0],[-19,1],[-47,-9],[-8,-4],[-40,-20],[-13,-12],[-1,-1],[-4,-37],[0,-2],[24,-61],[2,-2],[1,0],[28,-30],[85,-52],[15,-9],[5,-6],[6,-7],[5,-6],[5,-34],[-6,-12],[-5,-11],[-13,-98],[-20,-36],[-18,-18],[-36,-19],[-39,-10],[-58,5],[-4,0],[-11,4],[-18,8],[-103,71],[-14,7],[-63,29],[-70,5],[-2,1],[-75,-15],[-20,-7],[-8,-4],[-47,-6],[-2,0],[-63,2],[-32,1],[-25,7],[-17,5],[-49,18],[-24,8],[-32,22],[-12,16],[-7,8],[-13,11],[-22,17],[-24,14],[-32,10],[-13,4],[-39,0],[-20,0],[-26,0],[-22,-6],[-38,-10],[-60,-38],[-29,0],[-86,0],[-73,0],[-189,0],[-171,1],[-92,1],[-9,0],[-35,0],[-41,0],[-64,1],[-265,2],[-260,1],[-236,3],[-31,3],[-6,0],[-23,1],[-48,0],[-37,1],[-36,-4],[-48,1],[-82,1],[-54,0],[-69,-1],[-69,0],[-1,0],[-192,-1],[-37,0],[-313,-1],[-1,-194],[0,-74],[-3,-326],[-1,-276],[0,-331],[0,-182],[0,-52],[0,-61],[-1,-61],[-2,-156],[0,-28],[-4,-211],[0,-16],[0,-11],[0,-23],[-1,-22],[-2,-156],[-3,-274],[-1,-34],[0,-9],[-3,-264],[-48,14],[-25,7],[-74,49],[-34,54],[-5,31],[-2,13],[-51,30],[-43,-3],[-6,-1],[-12,0],[-11,-12],[-31,-31],[-8,-17],[-6,-12],[-16,-34],[-73,-81],[-6,-4],[-12,-9],[-58,-15],[-10,0],[-76,-2],[-3,0],[-18,6],[-24,8],[-34,11],[-98,56],[-45,35],[-12,10],[-35,10],[-41,12],[-84,14],[-70,2],[-36,1],[-37,-5],[-17,-3],[-65,-10],[-76,-23],[-69,-22],[-5,-1],[-4,-1],[-116,-27],[-87,-17],[-12,7],[-37,4],[-47,24],[-51,54],[-61,36],[-40,18],[-58,10],[-103,19],[-91,9],[-36,-1],[-89,-7],[-73,-20],[-63,-21],[-75,-37],[-67,-46],[-44,-36],[-33,-52],[-17,-34],[-42,-54],[-30,-58],[-35,-85],[-28,-55],[-4,-34],[-11,-55],[-13,-58],[-82,-131],[-43,-72],[0,46],[-3,148],[-6,413],[-1,30],[-1,102],[-2,136],[0,3],[-3,171],[-5,346],[-8,451],[-7,50],[-4,23],[3,220],[1,28],[0,40],[1,66],[1,42],[8,560],[3,193],[0,1],[3,237],[1,76],[0,30],[-13,0],[-123,0],[-121,1],[-94,0],[-395,2],[-267,2],[-203,1],[-574,5],[-78,0],[-2,0],[-127,1],[-104,0],[-13,0],[-121,1]],[[17187,49802],[293,112],[182,146],[89,49],[205,114],[70,39],[154,121],[147,216],[-10,201],[-282,313],[-268,129],[-80,19],[-22,-34],[-9,-2],[-12,-1],[-40,-6],[-72,-58],[-133,-64],[-113,-105],[-25,-155],[-201,-238],[-48,-154],[-353,-43],[-232,-55],[-251,-37],[-73,-39],[-503,-119],[-236,-64],[-190,20],[-61,-96],[-4,-6],[-67,-26],[-227,36],[-256,140],[-60,41],[-32,33],[-120,123],[-30,40],[-49,77],[-18,37],[3,77],[-139,298],[55,263],[18,83],[165,122],[133,76],[58,58],[115,64],[91,28],[30,17],[134,74],[42,4],[194,46],[48,12],[87,28],[74,27],[163,31],[55,6],[176,31],[82,21],[291,84],[170,65],[120,67],[27,20],[46,51],[64,110],[39,56],[96,135],[33,46],[37,79],[5,17],[17,53],[18,156],[-140,96],[-33,14],[-170,63],[-117,43],[-107,29],[-75,18],[-192,24],[-24,1],[-154,5],[-118,-1],[-106,-2],[-89,-3],[-145,-11],[-90,-12],[-185,-41],[-77,-8],[-202,11],[-117,17],[-54,9],[-95,32],[-48,28],[-16,13],[-90,66],[-70,29],[-13,21],[-137,209],[-119,389],[11,156],[2,27],[10,132],[40,171],[5,55],[35,174],[59,92],[57,84],[7,83],[13,47],[36,82],[36,74],[53,82],[69,63],[58,40],[134,74],[119,59],[161,102],[162,114],[80,45],[5,2],[88,42],[34,9],[82,18],[73,11],[59,3],[39,2],[160,88],[202,132],[45,38],[41,35],[14,18],[24,23],[99,69],[187,117],[56,53],[94,106],[19,26],[34,53],[62,139],[17,44],[10,70],[11,81],[-9,146],[-5,17],[-2,4],[-87,167],[-101,113],[-175,130],[-97,66],[-31,20],[-33,65],[43,30],[74,51],[-41,228],[-181,279],[-77,53],[-38,49],[-170,109],[-323,47],[-500,-94],[-261,-93],[-9,-88],[-29,-24],[-31,-24],[-11,-52],[103,-61],[105,-80],[-31,-79],[-129,-55],[-2,-7],[-22,-61],[-10,-28],[50,-135],[138,-371],[-81,-221],[-310,-253],[-419,-117],[-288,-10],[-17,2],[-13,1],[-163,17],[-554,134],[-308,168],[-156,193],[-7,167],[80,158],[236,204],[89,4],[9,40],[-92,131],[32,85],[142,89],[251,201],[80,26],[261,145],[150,146],[11,30],[61,165],[25,67],[-21,59],[15,91]],[[77044,57070],[-5,-254],[-1,-51],[-3,-155],[0,-24],[1,-142],[6,-323],[2,-100],[0,-103],[0,-32],[0,-29],[2,-119],[0,-16],[0,-15],[3,-161],[-5,-152],[-4,-144],[-6,-192],[-1,-64],[-1,-43],[-4,-161],[3,-54],[0,-30],[-1,-62],[0,-23],[-1,-51],[0,-28],[0,-57],[-1,-144],[-2,-231],[-1,-75],[-1,-150],[-1,-142],[-2,-199],[3,-29],[0,-34],[-1,-35],[0,-36],[-1,-36],[0,-312],[-1,-150],[-1,-183],[0,-183],[-1,-89],[3,-103],[4,-171],[1,-34],[2,-76],[0,-32],[-1,-109],[1,-156],[1,-135],[0,-159],[1,-166],[0,-36],[1,-113],[0,-83],[1,-56],[0,-71],[0,-108],[1,-33],[-4,-184],[0,-41],[1,-67],[2,-89],[3,-158],[2,-180],[1,-40],[2,-101],[-1,-25],[1,-114]],[[77041,49817],[-299,0],[-63,-1],[-60,1],[-158,0],[-47,-1],[-1,0],[-155,0],[-15,-1],[-174,0],[-228,-1],[-249,-3],[-220,4],[-28,2],[-33,0],[-32,0],[-182,1],[-165,0],[-139,0],[-35,-1],[-130,-1],[-74,0],[-172,-1],[-121,0],[-208,0],[-379,0],[-90,0],[-87,0],[-229,0],[-305,0],[-235,0],[-163,0],[-209,0],[-275,0],[-258,1],[-62,0],[-98,0],[-18,0],[-122,0],[-29,0],[-83,0],[-32,0],[-41,0],[-38,0],[-47,0],[-43,-1],[-62,1],[-44,1],[-6,0],[-54,0],[-84,0],[-16,0],[-55,0],[-46,0],[-38,0],[-268,0],[-955,0],[-285,0],[-42,0],[-87,0],[-124,0],[-17,0],[-94,0],[-77,0],[-155,0],[-228,0],[-204,-1],[-278,0],[-383,-10],[-175,0],[-215,0],[-176,0],[-106,0],[-4,0],[-487,0],[-168,1],[-70,0],[-12,0],[-83,0],[-236,0],[-126,0],[-41,-1]],[[65709,49806],[-1,157],[-1,103],[-1,92],[0,41],[-2,212],[-1,71],[-2,210],[0,21],[-1,88],[4,102],[-4,414],[-2,113],[0,32],[0,28],[-1,57],[-1,40],[-1,65],[-1,137],[-4,344],[3,81],[-2,66],[0,39],[0,92],[-2,260],[-1,227],[-1,66],[0,45],[-3,368],[-5,22],[-1,60],[1,36],[1,54],[1,73],[4,21],[-4,36],[0,53],[0,33],[0,28],[0,58],[-2,23],[0,53],[0,38],[0,85],[1,186],[0,41],[0,116],[0,80],[1,66],[0,5],[0,156],[1,306],[1,169],[0,192],[1,106],[0,153],[0,54],[1,175],[-24,148],[0,44],[1,58],[1,236],[0,190],[0,63],[0,37],[1,302],[1,65],[0,132],[0,46]],[[65709,49806],[-34,0],[-106,0]],[[65569,49806],[-86,0],[-134,0],[-80,-1],[-43,-1],[-94,-1],[-28,0],[-118,0],[-126,1],[-132,-1],[-190,1],[-41,0],[-124,0],[-93,0],[-186,-4],[-168,1],[-67,0],[-380,0],[-182,1],[-124,0],[-110,0],[-739,2],[-174,0],[-155,0],[-1,0],[-101,1],[-42,0],[-5,0],[-354,0],[-1,0],[-144,0],[-227,1],[-55,0],[-3,0],[-47,0],[-363,0],[-73,-2],[-464,0],[-160,0],[-163,0],[-245,0],[-348,0],[-251,0],[-83,0],[-159,0],[-170,0],[-48,0],[-130,0],[-301,0],[-303,0],[-6,0],[-458,0],[-36,0],[-36,1],[-153,-1],[-199,0],[-135,1],[-55,0],[-41,1],[-615,4],[-211,2],[-244,1],[-96,1],[-330,2],[-136,1],[-226,1],[-179,2],[-128,0],[-359,3],[-1,141],[0,1],[-1,145],[-1,75],[0,66],[1,30],[0,55],[-1,107],[0,91],[-1,74],[0,79],[-1,129],[0,48],[1,141]],[[54107,51005],[0,37],[2,266],[1,65],[0,64],[1,149],[1,142],[0,71],[0,74],[1,185],[0,1],[0,27],[-1,75],[0,154],[1,120],[1,224],[1,53],[0,91],[1,165],[1,254],[0,42],[1,24],[-1,122],[0,68],[-1,59],[3,124],[-1,248],[-6,559],[-2,219],[-2,167],[-1,114],[-4,325],[-4,361],[0,22],[-1,75],[-2,229],[19,23],[0,27],[0,173]],[[92971,57122],[-60,-371],[-24,-160],[-6,-32],[-36,-224],[-8,-46],[-44,-270],[-20,-184],[-54,-348],[-11,-70],[-46,-300],[-7,-41],[-35,-224],[-16,-104],[-42,-276],[-5,-32],[-28,-181],[-2,-17],[-42,-267],[-7,-45],[-39,-244],[0,-2],[-34,-221],[-8,-53],[5,-24],[-7,-28],[-6,-36],[-14,-73],[-5,-24],[-14,-80],[-35,-188],[-66,-342],[-5,-39],[-34,-237],[-8,-81],[-39,-243],[-17,-106],[-6,-41],[-11,-71],[-24,-148],[-25,-158],[-6,-39],[-11,-77],[-34,-202],[-9,-57],[-9,-52],[-29,-190],[-5,-23],[-7,-35],[-24,-180],[-7,-44],[-2,-10],[-13,-83],[-10,-58],[-9,-59],[0,-1],[-3,-19],[-9,-56],[-29,-176],[0,-1],[-32,-195],[-17,-93]],[[91821,49841],[-208,0],[-553,1],[-2,0],[-37,0],[-52,1],[-232,1],[-53,-1],[-335,1],[-255,0],[-50,0],[-200,-2],[-143,-2],[-251,-3],[-69,-1],[-61,-1],[-2,0],[-35,0],[-162,0],[-242,0],[-186,0],[-93,1],[-76,0],[-171,0],[-411,1],[-155,0],[-93,0],[-160,0],[-40,-1],[-29,0],[-88,2],[-69,-1],[-34,0],[-112,0],[-78,-1],[-314,-1],[-99,0],[-149,-1],[-534,-2],[-179,0],[-65,-1],[-31,0],[-103,0],[-168,0],[-153,0],[-110,-6],[-169,0],[-246,1],[-132,0],[-146,0],[-134,0],[-63,0],[-262,1],[-60,0],[-294,0],[-313,1],[-159,0],[-108,1],[-227,0],[-29,0],[-69,0],[-137,1],[-644,1],[-97,0],[-225,-12],[-95,-5],[-189,1],[-211,1],[-138,0],[-57,1],[-389,1],[-12,0],[-111,1],[-35,0],[-103,0],[-89,1],[-80,-1],[-172,0],[-34,-1],[-87,0],[-3,0],[-385,0],[-85,1],[-31,-4],[-40,0],[-198,0],[-42,0],[-229,-1],[-273,-1],[-105,0],[-79,0],[-186,2],[-57,3],[-183,2],[-84,-1],[-126,0],[-121,-1],[-292,-1],[-135,-1],[-168,1]],[[54107,51005],[-12,-2],[-43,-9],[-43,-4],[-17,7],[-43,-12],[-13,-7],[-84,-62],[-3,-3],[-5,-6],[-23,-30],[-1,-10],[-4,-23],[-9,-5],[-18,-13],[-14,-9],[-93,-35],[-52,-18],[-9,-3],[-111,-45],[-31,-17],[-95,-59],[-91,-59],[-37,-113],[0,-4],[1,-8],[-17,-16],[-1,-1],[-24,-13],[-2,-1],[-1,0],[-41,-1],[-59,39],[-30,1],[-101,-35],[-22,-12],[-9,-7],[-1,-8],[-1,-6],[0,-4],[11,-9],[4,0],[67,-10],[43,-31],[-2,-21],[-4,-2],[-66,-35],[-2,-2],[-14,-1],[-294,-36],[-34,-6],[-13,-6],[-3,-1],[-11,-5],[-6,-21],[24,-15],[27,-18],[7,-53],[-3,-31],[-24,-25],[-5,-3],[-56,-38]],[[52594,50023],[-46,-62],[-1,-2],[-9,0],[-25,0],[-21,-1],[-10,6],[-15,8],[-15,9],[5,31],[2,14],[5,33],[24,20],[-52,28],[-6,2],[-104,36],[-26,1],[-9,-5],[1,-6],[0,-5],[1,-12],[52,-39],[30,-22],[-1,-18],[-10,-13],[-42,-35],[-20,-11],[-3,-1],[-4,-2],[-11,0],[-17,1],[-1,0],[-24,14],[0,15],[3,53],[-11,8],[-8,5],[-13,9],[-42,2],[-137,-12],[-8,-1],[-89,-9],[1,-1],[8,-6],[14,-10],[-1,-7],[-3,-32],[-7,-16],[-4,-12],[-23,-15],[-157,-43],[-59,0],[-59,36],[2,21],[15,8],[16,9],[2,15],[-6,4],[-2,2],[-33,4],[-90,-7],[-26,-4],[-10,-5],[-8,-5],[-49,-27],[-35,-9],[-33,2],[-82,35],[-11,5],[-46,49],[2,13],[-4,2],[-8,6],[-10,0],[-16,1],[-8,0],[-26,-12],[-4,-1],[-1,-1],[-9,-7],[-1,-9],[-5,-46],[-18,-10],[-34,2],[-19,19],[3,5],[8,15],[2,19],[2,17],[0,1],[-10,23],[-28,20],[-38,1],[-15,-6],[-32,-44],[-53,-58],[-38,-40],[-58,-32],[-55,0],[-171,20],[-17,6],[-39,27],[-19,2],[-11,1],[-1,-1],[-15,-11],[-2,-2],[-29,-18],[-16,-11],[-4,-2],[-1,-1],[-38,-20],[-2,-1],[-1,-3],[-25,-68],[-2,-5],[-1,-6],[0,-2],[-20,-111],[-5,-43],[-5,-19],[-51,-29],[-26,-15],[-10,-5],[-58,-72],[0,-1],[-9,-3],[-26,-9],[-5,-3],[-6,-3],[-8,-7],[-7,-6],[-3,-15],[-9,-13],[-2,-1],[-21,-15],[-63,-16],[-13,-1],[-1,0],[-10,0],[-34,4],[-6,2],[-26,7],[-25,7],[-82,22],[-13,4],[-24,11],[-87,28],[-12,-3],[-15,-10],[-39,-53],[-1,-2],[-2,-1],[-45,-29],[-165,-88],[-24,-13],[-9,-9],[0,-7],[0,-1],[6,-9],[17,-12],[21,-9],[10,-4],[4,0],[14,-3],[39,-22],[6,-6],[2,-2],[2,-3],[5,-15],[0,-14],[-5,-5],[-4,-5],[-3,-3],[-13,-10],[-19,-11],[-11,-11],[-7,-10],[-7,-12],[12,-20],[1,-1],[19,-14],[-1,-1],[-75,-36],[-1,-1],[-142,-58],[-38,-15],[-2,-1],[-4,-1],[-41,-11],[-34,1],[-36,4],[-47,7],[-30,0],[-22,-3],[-25,-14],[-5,-4],[-24,-20],[-5,-17],[-1,-3],[2,-1],[22,-18],[26,-15],[11,-13],[5,-6],[2,-3],[2,-10],[4,-16],[1,-4],[0,-4],[-1,-8],[0,-1],[-8,-17],[-17,-10],[0,-1],[-15,-3],[-12,-3],[-40,-3],[-126,0],[-41,9],[-15,14],[-3,2],[-7,2],[-15,3],[-13,1],[-5,1],[-11,-3],[-8,-1],[-3,-2],[-16,-10],[-13,-20],[-3,-25],[3,-15],[3,-19],[-3,-19],[-29,-36],[-11,-15],[-22,-25],[-29,-26],[-22,-12],[-12,-6],[-1,-1],[-15,-15],[-5,-12],[3,-12],[1,-4],[2,-4],[4,-23],[-4,-15],[-10,-10],[-4,-5],[-11,-5],[-10,-6],[-5,-2],[-14,-4],[-18,-6],[-21,-3],[-80,23],[-126,3],[-28,0],[-2,0],[-3,0],[-45,-9],[-2,-1],[-9,-6],[-76,-47],[-9,-13],[0,-3],[-1,-16],[5,-15],[2,-4],[5,-1],[11,-3],[19,-2],[14,1],[20,6],[16,6],[9,1],[3,1],[7,-2],[3,-5],[-6,-13],[-4,-3],[-14,-10],[-25,-13],[-5,-3],[-16,-6],[-124,-21],[-49,-16],[-53,-13],[-67,-12],[-23,-14],[3,-25],[1,-21],[-28,-37],[-35,-3],[-42,-16],[-17,-28],[-27,-23],[-9,-23],[6,-33],[-24,-22],[-30,1],[-31,21],[-20,23],[-23,17],[-30,13],[-38,11],[-50,8],[-34,12],[-41,-4],[-27,-18],[-19,-24],[-29,-19],[-27,19],[-15,22],[-27,21],[-28,-3],[-32,1],[-23,22],[-23,19],[-36,-3],[-7,-23],[-9,-26],[-13,-20],[-21,-24],[-12,-21],[-22,-25],[-2,-28],[11,-32],[-20,-20],[-39,1],[-40,2],[-32,-13],[-24,-17],[-37,-27],[-17,-20],[-33,-23],[-31,5],[-25,19],[-19,29],[-31,22],[-25,-2],[-8,-1],[-28,-3],[-29,-2],[-3,0],[-28,0],[-41,0],[-40,-7],[-39,-8],[-27,-9],[-29,-32],[7,-35],[2,-24],[-36,-13],[-28,-7],[-47,-6],[-32,18],[-21,17],[-27,-14],[-4,-29],[-40,-25],[-33,-1],[-55,5],[-34,-26],[8,-34],[24,-23],[-12,-22],[-26,-8],[-35,-3],[-40,-2],[-35,-1],[-34,-13],[-3,-23],[22,-28],[-4,-32],[-22,-38],[-15,-27],[-14,-29],[-48,-13],[-58,1],[-23,-25],[-4,-29],[-27,-27],[-37,-33],[-53,-31],[-53,-38],[-34,-28],[-24,-24],[-21,-14],[-26,-16],[-21,-31],[13,-23],[41,4],[18,17],[27,10],[33,-11],[12,-26],[-28,-31],[-24,-13],[-18,-17],[-25,-24],[-22,-17],[-31,-14],[-35,-11],[-31,-5],[-42,-21],[-25,-14],[-53,-13],[-39,-3],[-35,-1],[-32,5],[-36,17],[-30,18],[-35,-7],[2,-32],[-13,-33],[-28,-19],[-37,-1],[-44,8],[-53,12],[-43,13],[-31,6],[-67,15],[-28,15],[-26,-10],[-13,-25],[-16,-34],[-8,-29],[15,-27],[13,-29],[11,-26],[15,-32],[32,-30],[36,-25],[1,-23],[6,-31],[20,-26],[28,-18],[26,-23],[-12,-27],[-25,-27],[-44,-20],[-29,3],[-31,4],[-61,11],[-8,22],[7,29],[-34,10],[-56,-1],[-43,-7],[-16,-23],[12,-23],[90,-66],[29,-29],[13,-28],[22,-13],[49,-27],[16,-27],[8,-24],[21,-21],[50,-33],[27,-25],[-2,-22],[-25,-53],[-36,-4]],[[44678,46136],[-29,0],[-21,0],[-369,-2],[-146,0],[-67,0],[-30,0],[-207,2],[-163,0],[-171,0],[-55,-1],[-62,-1],[-56,-1],[-71,-1],[-37,0],[-70,2],[-68,2],[-69,-1],[-32,1],[-30,-1],[-60,1],[-34,-2],[-79,2],[-68,0],[-71,0],[-41,0],[-55,2],[-32,2],[-42,-2],[-3,0],[-64,5],[-45,1],[-31,2],[-20,1],[-104,1],[-110,2],[-36,0],[-45,-2],[-37,2],[-45,-1],[-67,-1],[-96,4],[-40,1],[-47,2],[-86,0],[-1,0],[-48,-3],[-70,0],[-77,0],[-128,-1],[-124,1],[-90,-1],[-43,-1],[-61,0],[-99,0],[-73,-2],[-121,0],[-92,0],[-63,0],[-83,0],[-122,-1],[-77,0],[-73,-1],[-121,0],[-201,-2],[-3,0],[-67,0],[-51,0],[-2,11],[-1,56],[1,83],[1,104],[2,103],[1,54],[-2,371],[-8,69],[1,196],[0,97],[0,84],[-1,323],[0,60],[4,206],[-125,1],[-58,1],[-243,2],[-89,1],[-73,0],[-36,0],[-341,-1],[-58,-1],[-70,1],[-120,0],[-14,0],[-26,0],[-118,0],[-5,0],[-354,0],[-103,0],[-98,-1],[-730,-3],[-29,6],[-50,0],[-43,0],[-315,-1],[-8,0],[-64,0],[-241,-1],[-95,0],[-189,0],[-116,-1],[-28,0],[-55,0],[-1,0],[-171,1],[-168,0],[-130,1],[-122,0],[-165,0],[-54,0],[-106,1],[-222,0],[-654,2],[-110,0],[-3,21],[2,59],[-2,71],[0,103],[6,43],[-4,120],[0,31],[0,56],[1,104],[0,143],[1,294],[0,48],[0,40],[2,56],[0,131],[-1,85],[-1,23],[-3,156],[0,35],[-3,172]],[[65569,49806],[0,-35],[0,-1],[0,-31],[0,-27],[0,-3],[-1,-178],[1,-75],[0,-46],[0,-110],[0,-8],[10,-194],[-3,-75],[-1,-23],[-5,-119],[0,-52],[1,-91],[0,-135],[0,-28],[0,-141],[1,-122],[-2,-89],[3,-174],[0,-37],[1,-38],[-3,-91],[0,-99],[-1,-277],[0,-35],[0,-151],[0,-87],[0,-79],[1,-204],[0,-6],[-1,-127],[0,-190],[-1,-137],[0,-79],[0,-34],[-1,-171],[0,-93],[-1,-139],[0,-30],[0,-23],[0,-166],[0,-126],[2,-132],[0,-52],[0,-62],[0,-218],[0,-51],[0,-36],[0,-45],[0,-48],[0,-38],[0,-27],[0,-10],[-1,-56],[0,-37],[0,-44],[0,-23],[0,-184],[0,-39],[1,-150],[-1,-142],[-1,-535],[0,-266],[0,-8],[0,-125],[0,-148],[-1,-118],[0,-553]],[[65566,42483],[-162,0],[-216,0],[-48,1],[-401,0],[-224,0],[-196,1],[-1,0],[-224,-9],[-29,1],[-262,1],[-76,0],[-437,1],[-133,0],[-57,0],[-400,1],[-3,0],[-396,1],[-62,1],[-108,-2],[-119,0],[-169,1],[-45,0],[-93,0],[-115,1],[-141,0],[-63,0],[-95,-1],[-562,1],[-91,0],[-59,0],[-39,0],[-197,0],[-81,0],[-1,0],[-88,0],[-22,0],[-308,1],[-98,0],[-105,0],[-44,0],[-183,1],[-195,0],[-336,1],[-29,0],[-225,0],[-222,1],[-97,1],[-199,0],[-9,0],[-263,0],[-13,0],[-101,0],[-134,1],[-341,0],[-150,-1],[-46,0],[-211,1],[-31,0],[-52,0],[-264,0],[-103,0],[-122,0],[-267,0],[-64,0],[-135,0],[-147,0],[-150,1],[-147,0],[-277,0],[-170,0],[10,-37],[-60,-1],[-246,-1],[-81,-2],[-276,-2],[-73,2],[-46,0],[-37,0]],[[54104,42448],[2,111],[1,94],[2,123],[1,130],[1,76],[0,30],[-1,24],[0,119],[1,58],[2,305],[1,127],[0,57],[2,289],[0,3],[1,96],[1,286],[1,135],[0,1],[0,32],[0,4],[0,7],[0,30],[0,26],[0,1],[0,60],[0,7],[0,38],[1,65],[0,27],[-1,31],[0,32],[-1,63],[-5,230],[-94,310],[-6,20],[-41,135],[-102,334],[-29,94],[-12,39],[-11,33],[-13,42],[-49,162],[-30,95],[-11,37],[-150,485],[-14,46],[-21,68],[-30,101],[-26,86],[-55,179],[-11,32],[-6,21],[-7,29],[-12,31],[-13,35],[-18,60],[-7,39],[-9,29],[-5,15],[-123,386],[-36,115],[-21,64],[-17,55],[-43,140],[-68,222],[-25,81],[-25,83],[-25,81],[-18,58],[-34,109],[-52,157],[0,1],[-41,121],[-101,303],[-34,102],[-74,223]],[[30955,48377],[-23,-20],[-15,-23],[-4,-5],[-14,-6],[-18,-8],[-3,-1],[-244,-33],[-10,0],[-12,19],[17,18],[-4,23],[-42,-11],[-54,7],[-32,13],[-38,-9],[-8,-30],[23,-21],[25,-15],[16,-19],[-10,-26],[-3,-7],[-7,-13],[-29,-4],[-42,-4],[-9,0],[-14,0],[-12,0],[-13,6],[-2,1],[-3,2],[-5,12],[-15,14],[-38,37],[-3,0],[-96,-11],[-3,-1],[0,-3],[1,-36],[28,-32],[-1,-8],[-1,-1],[-1,-8],[-72,-74],[-16,-7],[-32,-2],[-33,8],[-4,3],[-2,1],[-15,13],[-34,38],[-1,1],[-15,-3],[-30,-20],[-14,-8],[-12,-20],[-14,-27],[-4,-13],[-2,-6],[-15,-65],[11,-3],[29,-6],[40,9],[31,-4],[1,-21],[-19,-20],[-40,13],[-44,4],[-123,-62],[-44,-21],[-43,-18],[-30,3],[-1,0],[-20,15],[-17,14],[-14,-2],[-1,0],[-2,-1],[-85,-50],[-10,-12],[3,-40],[0,-3],[12,-29],[0,-1],[20,-28],[38,-43],[3,-4],[25,-41],[8,-12],[3,-3],[6,-5],[9,-21],[-1,-10],[-1,-14],[-6,-101],[54,-135],[3,-7],[2,-4],[2,-6],[14,-45],[0,-2],[1,-4],[-1,-20],[-14,-14],[-2,-2],[-6,-3],[-10,-12],[-3,-15],[11,-13],[22,-13],[28,-15],[20,-5],[10,-2],[15,-4],[112,-23],[71,-23],[52,-16],[-1,-1],[-40,-32],[-60,-48],[-46,-36],[-1,-1],[-1,-1],[-4,-1],[-16,-5],[-16,2],[-14,11],[-3,3],[-16,15],[-5,0],[-2,1],[-15,2],[-7,-2],[-9,-2],[-7,-1],[-7,-11],[0,-2],[-2,-14],[-3,-15],[-7,-25],[-25,-15],[-2,-1],[-14,-3],[-11,-3],[-22,-4],[-10,-2],[-10,-16],[-1,-7],[-3,-16],[0,-2],[1,-30],[0,-15],[4,-36],[0,-19],[-3,-36],[2,-11],[3,-27],[0,-1],[-3,-16],[-1,-8],[-78,-60],[-8,-7],[-98,-74],[-5,-16],[-4,-29],[-1,-6],[-174,-40],[-2,-1],[0,-2],[-3,-27],[0,-5],[-49,-42],[-19,-5],[1,-13],[24,-67],[5,-13],[5,-17],[-4,-11],[-2,-7],[-1,-1],[-2,-1],[-26,-12],[-32,-14],[-11,-15],[1,-7],[0,-8],[0,-1],[0,-11],[-23,-53],[-12,-12],[0,-7],[1,-13],[5,-37],[0,-1],[2,-6],[2,-6],[5,-12],[-3,-2],[-7,-3],[-6,-3],[-47,-19],[-62,-19],[-27,-8],[-79,-49],[-6,-9],[5,-18],[4,-3],[31,-20],[18,-7],[17,-6],[20,-6],[11,-3],[-11,-11],[-38,-39],[-3,-2],[-57,-24],[-1,-3],[-10,-33],[-13,-23],[-7,-2],[-20,-5],[-74,-13],[-15,-2],[-42,-1],[-9,0],[-4,0],[-14,-3],[-29,-6],[-34,-22],[-13,-31],[19,-125],[3,-5],[8,-10],[65,-86],[27,-36],[35,-135],[5,-19],[2,-17],[1,-20],[2,-16],[-1,-21],[-1,-21],[14,-27],[9,-8],[14,-15],[27,-40],[0,-1],[13,-41],[0,-2],[1,-8],[2,-20],[-3,-9],[-8,-26],[-2,-8],[-28,-10],[-9,-3],[-5,-1],[-61,-3],[-61,12],[-16,6],[-29,10],[-34,12],[-67,30],[-21,9],[-15,5],[-44,13],[-11,3],[-85,6],[-45,1],[-44,2],[-93,6],[-30,7],[-59,12],[-30,8],[-46,12],[-7,1],[-11,2],[-94,19],[-23,3],[-67,10],[-75,16],[-112,24],[-145,31],[-26,5],[-32,7],[-38,12],[-3,0],[-2,1],[-43,7],[-1,0],[-2,0],[-25,0],[-15,0],[-6,-1],[-28,-8],[-46,-12],[-21,-6],[-39,-3],[-12,2],[-11,1],[-20,3],[-13,10],[-17,13],[-22,26],[0,1],[-24,7],[-8,-2],[-4,-2],[-24,-7],[-26,-22],[-11,-19],[-1,-2],[-6,-12],[-5,-27],[0,-5],[-2,-15],[-2,-2],[-4,-4],[-2,-3],[-16,-9],[-32,-9],[-18,-6],[-30,-5],[-31,-3],[-57,5],[-33,7],[-27,-5],[-4,-1],[-19,-23],[-10,-19],[-3,-9],[-10,-32],[-17,-30],[-20,-37],[0,-5],[-1,-11],[5,-5],[2,-2],[9,-10],[97,-73],[7,-1],[34,-4],[29,23],[5,4],[18,29],[31,7],[-4,-33],[-4,-15],[-3,-10],[-3,-25],[11,-19],[4,-31],[-15,-15],[-1,-1],[-76,-74],[-28,-104],[-1,-5],[-16,-109],[-17,4],[-31,11],[-15,23],[-29,3],[-9,-29],[37,-19],[15,-29],[37,-27],[2,-5],[-3,-27],[-3,-3],[2,-4],[0,-2],[4,-10],[16,1],[19,0],[19,6],[5,1],[10,4],[24,7],[15,1],[16,2],[12,1],[16,-8],[4,-14],[-4,-6],[-13,-16],[-24,-17],[-10,-21],[10,-21],[19,-14],[34,-3],[10,0],[39,0],[18,-13],[0,-11],[0,-4],[-1,-1],[-17,-9],[-21,-6],[-14,-4],[-4,-4],[-5,-5],[-9,-8],[-5,-18],[15,-21],[14,-19],[8,-11],[-37,-51],[-43,-21],[-72,-38],[-119,-52],[-5,-17],[13,-17],[37,-18],[11,-5],[24,-17],[9,-6],[14,-25],[-71,-4],[-33,-8],[-11,-20],[10,-23],[1,-2],[8,-18],[-4,-6],[-5,-6],[-5,-6],[-179,-76],[-3,-1],[-85,-30],[-38,5],[-1,0],[-14,-1],[-17,-1],[-5,-4],[-3,-3],[-10,-9],[-1,-9],[19,-44],[34,-79],[1,-1],[-38,-56],[3,-3],[22,-15],[29,-13],[45,8],[49,10],[24,-14],[5,-39],[-31,-27],[-36,-11],[-42,-5],[-4,1],[-35,5],[-29,-1],[-48,-16],[-104,-22],[-34,-8],[-47,-11],[8,-23],[54,-5],[27,5],[31,5],[36,-10],[-5,-25],[20,-18],[26,18],[20,19],[31,0],[16,-5],[7,-2],[7,-8],[1,-3],[-2,-8],[-6,-5],[-15,-9],[-17,-11],[-6,-7],[-7,-9],[-7,-12],[0,-16],[3,-6],[6,-6],[14,-3],[13,-1],[12,3],[16,7],[1,0],[15,10],[6,6],[1,1],[28,37],[2,3],[14,0],[32,-39],[5,-2],[12,-19],[-2,-4],[-2,-7],[-3,-8],[-9,-4],[-18,-7],[-38,-16],[-5,-12],[-4,-8],[0,-1],[6,-23],[1,-6],[1,-19],[-9,-4],[-62,-19],[-7,-3],[-81,-49],[-14,-8],[-28,-28],[-21,-5],[-2,0],[-4,-1],[-45,2],[-14,-3],[-14,-3],[-3,-6],[-1,-2],[-4,-8],[1,-16],[0,-3],[8,-75],[1,-17],[-18,-74],[0,-10],[24,-16],[18,-10],[8,-4],[0,-11],[-57,-67],[-22,-26],[-7,-2]],[[26041,42517],[-16,-7],[-17,4],[-4,0],[-48,10],[-5,1],[0,-1],[-25,-51],[-5,-11],[-21,-20],[-12,-14],[-2,-2],[-2,-4],[-20,-47],[-1,0],[-56,-62],[-1,-1],[18,-1],[88,-4],[26,-1],[14,0],[-16,-10],[-36,-22],[-18,-10],[-72,-65],[-1,-8],[-2,-22],[-14,-31],[-3,-6],[0,-1],[-24,-17],[-15,1],[-12,0],[-72,13],[-5,2],[-77,21],[-2,1],[-6,1],[-17,-5],[-2,-8],[-1,-6],[0,-39],[-4,-7],[-4,-8],[-5,-9],[-11,-2],[-5,-1],[-5,-1],[-19,16],[-25,27],[-17,21],[-7,16],[-6,13],[-10,4],[-2,0],[-35,-1],[-44,-11],[-1,0],[-3,-2],[-23,-15],[-2,-2],[-12,-13],[1,-2],[2,-7],[1,-5],[20,-17],[1,-1],[14,-14],[-4,-15],[-26,-20],[-3,-2],[3,-4],[82,-89],[23,-11],[-1,-22],[-19,-11],[-97,-11],[-30,-12],[-8,-4],[-29,-3],[-4,0],[-107,15],[-78,-30],[-60,-24],[-6,-2],[-87,6],[-8,-3],[-13,-4],[-127,-37],[0,-1],[-47,-10],[-11,-2],[-7,-1],[-52,-7],[-39,-17],[-40,-31],[-26,-32],[-32,-20],[-47,-11],[-47,-16],[-5,-9],[5,-68],[-102,-22],[-18,-16],[-4,-32],[27,-25],[18,-10],[91,-56],[22,-14],[34,-4],[28,6],[27,14],[42,5],[9,-4],[118,-84],[17,-17],[4,-32],[-4,-32],[2,-23],[26,0],[63,20],[39,18],[33,18],[21,1],[38,-25],[23,-18],[5,-16],[-7,-11],[-25,-10],[-22,-21],[-23,-26],[-16,-19],[-16,-17],[-6,-12],[33,-20],[-1,-15],[-32,-15],[-45,-13],[-53,-6],[-13,8],[-4,3],[-140,-5],[-13,-1],[-188,-12],[-5,0],[-21,-2],[-30,-6],[-3,-1],[-8,-2],[-82,-19],[-8,-4],[-6,-2],[-13,-6],[-1,-15],[3,-4],[5,-7],[6,-6],[22,-15],[7,-5],[4,-14],[-15,-7],[-9,-4],[-3,-1],[-44,-8],[-57,-6],[-10,1],[-1,0],[-56,10],[-17,27],[-4,4],[-22,19],[-78,52],[-8,4],[-8,5],[-18,-6],[-2,-3],[-11,-10],[-3,-2],[-13,-10],[-3,-3],[-21,-5],[-1,0],[-10,1],[-16,2],[-18,6],[-52,19],[7,10],[-26,-5],[16,-53],[1,-5],[3,-10],[1,-18],[0,-4],[0,-10],[-5,-7],[-4,-6],[-117,-167],[-12,-4],[-5,-2],[-6,-2],[-144,-30],[-31,2],[-105,30],[-28,18],[-43,28],[-22,20],[-23,24],[-25,37],[-6,21],[-1,18],[0,96],[61,75],[12,0],[5,0],[1,0],[8,-13],[8,-12],[18,3],[11,11],[2,21],[-5,5],[-5,4],[-9,9],[-15,8],[-3,1],[-2,1],[-22,4],[-150,5],[-12,0],[-196,13],[-21,5],[-22,9],[-10,4],[-12,4],[-12,5],[-15,-1],[-9,0],[-1,0],[-19,-6],[-52,-19],[-21,-8],[-59,-12],[-19,-2],[-34,-15],[7,-27],[57,0],[36,-3],[37,-8],[44,3],[31,-8],[-3,-29],[-39,-31],[-32,-5],[-38,10],[-24,18],[-26,12],[-35,1],[7,-37],[24,-25],[13,-20],[-77,0],[-18,-6],[-24,-40],[-18,-8],[-1,0],[-17,-6],[-3,-2],[-88,-49],[-11,-6],[-1,-24],[13,-4],[33,-11],[138,-44],[10,2],[13,2],[14,3],[22,8],[33,26],[3,2],[23,2],[13,-5],[7,-3],[5,-2],[26,-14],[61,-40],[9,-6],[8,-19],[-38,-100],[-32,-20],[-1,-1],[-32,-12],[-8,-16],[13,-13],[8,-4],[12,-6],[-3,-1],[-112,-31],[-11,-3],[-25,-5],[-87,-19],[-10,-2],[-154,-38],[-3,-1],[-53,-41],[-14,-9],[-107,-22],[-11,-2],[-20,-4],[-5,-1],[-5,0],[-56,-3],[-12,0],[-14,2],[-14,3],[-55,18],[-46,12],[8,22],[36,25],[30,25],[11,22],[-16,19],[-76,10],[-30,-16],[-15,-24],[-14,-26],[7,-29],[20,-23],[-10,-27],[-29,-20],[-33,20],[-12,28],[-25,16],[-43,-12],[-24,-28],[6,-22],[25,-17],[39,-11],[35,-10],[8,-5],[2,-1],[17,-17],[6,-23],[0,-2],[-2,-2],[-19,-15],[-1,-1],[-3,0],[-39,-7],[-14,-2],[-16,2],[-55,6],[-58,22],[-16,6],[-57,29],[-26,16],[-24,16],[-39,33],[-40,30],[-105,69],[-33,11],[-1,0],[-59,12],[-59,13],[-46,19],[-19,24],[-1,26],[-10,21],[-28,11],[-33,7],[-3,1],[-14,-1],[-5,0],[-10,-1],[-31,-18],[-44,-50],[-32,-44],[-8,-40],[-64,-79],[2,-3],[18,-29],[3,-4],[0,-2],[5,-16],[-28,-18],[-8,-1],[-21,-5],[-6,-1],[-44,3],[-58,13],[-50,5],[-16,-1],[-1,0],[-15,-1],[-10,-22],[15,-25],[14,-12],[5,-4],[14,-11],[30,-25],[9,-7],[16,-33],[3,-10],[9,-36],[3,-23],[1,-8],[-1,-4],[-4,-9],[-4,-8],[-27,-20],[-7,0],[-79,-2],[-6,-3],[-5,-3],[-11,-5],[5,-25],[53,-12],[48,-3],[23,-1],[17,-1],[11,-2],[10,-2],[-5,-17],[-1,-2],[-23,-21],[-35,-1],[-33,-1],[-62,13],[-32,5],[-36,4],[-18,-17],[0,-22],[8,-21],[14,-22],[23,-20],[32,2],[34,4],[47,2],[35,7],[40,11],[42,-2],[15,-6],[26,-16],[7,-4],[1,-4],[1,-10],[1,-16],[-6,-8],[-11,-15],[-5,-6],[-3,-2],[-15,-10],[-45,-26],[-24,-14],[-18,-10],[-56,-64],[0,-1],[-4,-7],[-10,-18],[9,-7],[1,0],[3,-2],[26,1],[4,2],[26,14],[39,11],[3,0],[4,0],[21,0],[10,-1],[74,-8],[1,0],[15,-9],[-2,-5],[-4,-11],[-1,-3],[-14,-22],[-24,-31],[-27,-20],[-4,-3],[-17,-13],[-6,-2],[-16,-7],[-22,-10],[-15,-2],[-9,1],[-35,2],[-125,11],[-35,3],[-40,0],[-210,2],[-38,32],[-6,5],[-25,18],[-11,8],[-33,11],[-8,2],[-1,0],[-21,-22],[12,-29],[12,-23],[-12,-26],[-21,-17],[-38,-17],[-50,-10],[-37,-1],[-31,10],[-4,22],[17,31],[13,28],[36,57],[12,21],[-8,35],[-1,4],[-17,19],[-21,6],[-22,1],[-22,-12],[-17,-14],[-20,-18],[-37,-24],[-33,-7],[-25,8],[-1,29],[4,38],[-2,18],[0,3],[-22,5],[-40,-13],[-5,-27],[6,-32],[23,-29],[12,-19],[12,-27],[6,-21],[-16,-24],[-34,-8],[-37,8],[-34,15],[-33,15],[-33,20],[-15,21],[-5,22],[0,22],[5,26],[0,24],[-17,24],[-57,-3],[-18,-1],[-7,-2],[-72,-29],[-14,-8],[-12,-8],[-14,-8],[-27,2],[-3,21],[1,4],[10,24],[5,10],[15,9],[15,9],[6,3],[6,2],[55,20],[5,3],[21,12],[14,8],[6,13],[1,3],[2,4],[0,16],[-4,4],[-11,13],[-20,27],[4,22],[1,0],[12,7],[18,11],[41,11],[14,3],[7,3],[8,3],[15,5],[2,12],[1,4],[0,1],[-16,12],[-4,3],[-17,11],[-59,37],[-5,3],[-16,7],[-14,6],[-25,-2],[-8,-6],[-8,-5],[-3,-3],[-2,-18],[-1,-11],[-2,-6],[-4,-13],[-3,-9],[-9,-8],[-19,-18],[-26,-12],[-5,-2],[-45,-18],[-4,-2],[-9,-6],[-5,-4],[-11,-7],[-1,-12],[-2,-19],[-5,-12],[-7,-18],[-2,-6],[-10,-4],[-13,-4],[-9,-2],[-13,2],[-10,2],[-59,12],[-6,1],[-21,-1],[-39,41],[-28,18],[-34,10],[-33,3],[-44,-8],[-63,-12],[-37,-5],[-54,-6],[-37,-6],[-28,-1],[-29,0],[-50,3],[-44,12],[-39,16],[-33,17],[-37,8],[-40,6],[-39,7],[-34,6],[-42,9],[-35,12],[-33,9],[-28,17],[-29,20],[-29,18],[-27,17],[-46,19],[-56,23],[-43,17],[-63,22],[-34,12],[-30,10],[-52,9],[-32,4],[-51,-3],[-38,1],[-46,18],[-27,6],[-37,19],[-49,26]],[[17562,40219],[-10,67],[-9,62],[236,73],[103,28],[17,4],[131,76],[33,18],[22,23],[19,34],[1,2],[9,8],[37,35],[45,35],[42,46],[124,76],[38,59],[9,76],[-79,268],[-94,-7],[-291,-18],[-265,52],[-100,40],[-28,18],[-92,56],[-19,7],[-41,21],[-43,23],[-12,7],[-29,19],[-19,9],[-1,0],[-90,36],[-7,1],[-2,0],[-169,53],[-2,3],[-49,20],[-13,4],[-137,31],[-24,5],[-31,12],[-15,-179],[88,-178],[169,-133],[28,-170],[-74,-134],[-32,-237],[-19,-146],[-122,26],[-86,29],[-28,14],[-83,11],[-63,2],[-135,38],[-102,34],[-113,4],[-101,3],[-126,-11],[-137,-22],[-72,-16],[-35,-14],[-150,-84],[-49,-41],[-12,-96],[-116,77],[-96,54],[-54,9],[-61,10],[-30,5],[-45,2],[-24,-4],[-7,-1],[-121,5],[-242,9],[-30,2],[-115,29],[-44,15],[-42,14],[-116,22],[-58,10],[-25,-2],[-137,23],[-83,10],[-44,2],[-177,5],[-54,17],[-31,22],[-66,70],[-84,100],[-41,63],[-39,90],[-27,129],[6,76],[29,103],[53,178],[16,50],[3,6],[8,22],[58,147],[89,208],[18,25],[5,6],[9,8],[46,40],[31,19],[52,32],[14,8],[117,49],[243,91],[268,91],[67,17],[47,11],[6,2],[16,0],[72,-3],[47,-17],[110,-31],[127,-81],[57,-23],[87,-5],[42,24],[64,13],[60,11],[228,201],[236,112],[54,25],[413,54],[120,-21],[44,-24],[69,-58],[160,-71],[19,13],[158,113],[93,202],[149,139],[343,8],[359,-112],[434,-251],[90,-21],[-28,-83],[-25,-168],[76,-302],[5,-17],[62,-93],[218,140],[11,12],[46,78],[6,11],[179,261],[42,62],[230,654],[1,8],[15,172],[0,1],[-50,51],[-150,127],[-78,66],[-31,201],[130,285],[137,71],[260,1],[20,-16],[43,-2],[19,-47],[205,-161],[60,-46],[145,-12],[420,169],[295,149],[237,119],[206,207],[21,21],[21,22],[72,72],[10,10],[31,101],[12,35],[33,106],[56,57],[15,14],[64,67],[88,90],[46,52],[43,49],[50,71],[48,66],[34,46],[61,71],[10,12],[78,95],[44,58],[12,25],[-2,1],[11,15],[-6,31],[-9,49],[-223,0],[-35,-9],[-64,-14],[-75,-18],[-26,-38],[-27,-37],[-60,-176],[-173,-211],[-79,-53],[-126,-85],[-116,-78],[-721,99],[-666,46],[-566,72],[-172,54],[-341,108],[-1,0],[-17,9],[-104,71],[-7,13],[-11,66],[11,130],[6,18],[98,172],[9,15],[3,4],[13,21],[157,263],[12,175],[200,49],[175,42],[29,15],[275,143],[110,134],[0,1],[-2,44],[-11,195],[-150,149],[-230,141],[-390,62],[-175,-31],[-248,-116],[-253,-87],[-135,-59],[-132,-57],[-67,7],[-106,7],[-57,11],[-30,5],[-254,40],[-137,17],[-71,8],[-67,7],[-145,33],[-114,39],[-66,19],[-33,12],[-41,19],[-139,49],[-53,17],[-42,7],[-143,46],[-187,82],[-69,39],[-37,26],[-82,58],[-23,30],[-71,65],[-99,68],[-37,14],[-104,71],[-116,127],[-51,95],[-20,61],[-3,34],[-10,13],[-10,27],[-13,44],[8,102],[16,38],[26,36],[81,169],[29,60],[-4,5],[16,39],[44,71],[47,61],[25,49],[46,98],[30,101],[17,101],[134,94],[1,78],[93,72],[23,18],[531,-324],[123,-110],[143,-178],[16,-17],[199,-211],[237,-209],[315,-168],[484,-123],[545,-49],[144,37],[160,79],[68,71],[3,117],[-101,122],[-234,162],[-314,126],[-1031,273],[-91,24],[-372,155],[-309,174],[-114,163],[-27,39],[271,119],[27,12],[738,279]],[[54104,42448],[-19,1],[0,-96],[-1,-164],[0,-39],[-1,-247],[-1,-131],[-1,-160],[1,-144],[-2,-337],[-1,-121],[1,-86],[-1,-159],[1,-128],[43,-1],[0,-51],[0,-142],[0,-289],[0,-20],[-2,-128],[-1,-192],[-1,-31],[0,-39],[0,-28],[2,-29],[-2,-175],[-1,-100],[0,-4],[-3,-313],[0,-1],[0,-98],[-1,-112],[-1,-61]],[[54113,38823],[-163,0],[-77,0],[-225,-1],[-41,1],[-56,0],[-736,1],[-58,1],[-12,0],[-85,0],[-205,1],[-224,0],[-1,0],[-280,2],[-60,0],[-96,0],[-126,0],[-100,1],[-177,0],[-190,1],[-287,1],[-88,0],[-369,1],[-53,0],[-223,1],[-144,-2],[-196,1],[-277,2],[-67,0],[-563,3],[-107,1],[-267,1],[-150,1],[-87,1],[-29,0],[-4,25],[-360,2],[-153,0],[-129,0],[-223,1],[-76,0],[-93,1],[-80,1],[-41,0],[-112,-1],[-72,1],[-1,0],[-193,0],[-32,0],[-4,0],[-150,1],[-46,-1],[-3,0],[-90,-1],[-38,0],[-147,1],[-275,0],[-51,1],[-110,-1],[-375,0],[-41,0],[-238,0],[-3,0],[-103,0],[-112,0],[-404,0],[-77,0],[-123,1],[-155,0],[-63,0],[-150,0],[-84,1],[-345,3],[-49,0],[-120,0],[-80,0],[-97,1],[-112,0],[-72,0],[-72,-1],[-223,0],[-2,0],[-43,-1],[-143,0],[-61,0],[-89,-1],[-98,0],[-55,1],[-78,-1],[-52,1],[-53,-1],[-639,2],[-141,0],[-122,0],[-36,0],[-390,-1],[-51,1],[-48,0],[-134,0],[-425,2]],[[40053,38878],[-6,24],[-1,2],[-3,6],[-10,18],[-4,7],[-12,15],[-7,8],[-10,10],[-1,0],[-4,8],[3,10],[7,6],[34,11],[21,11],[8,13],[-1,3],[-2,15],[-4,7],[-1,2],[-1,1],[-6,8],[-9,6],[-7,4],[-2,1],[-4,1],[-9,4],[-36,9],[-20,8],[-18,11],[-10,9],[-30,28],[-16,18],[-7,12],[-3,26],[2,11],[25,55],[13,8],[13,4],[15,0],[17,-3],[18,-6],[20,-9],[7,-4],[28,-6],[19,1],[13,5],[1,1],[11,10],[4,9],[0,1],[2,58],[10,66],[11,38],[-39,82],[-1,2],[-65,111],[-7,9],[-9,9],[-49,30],[-33,19],[-10,11],[1,10],[4,7],[9,6],[5,4],[30,8],[34,7],[20,1],[57,-3],[8,0],[20,2],[28,8],[19,9],[14,13],[0,1],[0,14],[-2,3],[-8,8],[-1,0],[-4,2],[-18,7],[-17,5],[-5,1],[-1,0],[-9,1],[-33,-3],[-8,0],[-2,0],[-224,-23],[-14,-5],[-5,-5],[-28,-39],[-3,-5],[-10,1],[-21,3],[-123,14],[-20,15],[-5,6],[-2,3],[-2,8],[-18,108],[0,8],[6,7],[10,6],[9,3],[39,3],[25,2],[32,-1],[20,-3],[12,-5],[1,-1],[4,-4],[4,-4],[0,-19],[0,-1],[-16,-17],[-2,-5],[1,-9],[4,-4],[7,-4],[18,1],[90,19],[3,1],[18,7],[10,7],[2,1],[0,1],[3,3],[5,11],[-1,17],[0,2],[-1,1],[-8,9],[-17,13],[-2,1],[-12,7],[-61,25],[-4,0],[-147,8],[-1,0],[-1,0],[-18,5],[-8,3],[-7,12],[-64,125],[-3,6],[99,54],[51,1],[13,0],[12,4],[7,10],[1,1],[2,3],[-1,8],[-3,4],[-12,13],[-1,1],[-21,17],[-11,3],[-14,2],[-1,0],[-1,0],[-5,0],[-12,1],[-44,6],[-3,0],[-1,1],[-13,9],[-6,4],[-1,5],[-1,8],[0,3],[13,7],[14,2],[5,0],[43,5],[10,1],[18,6],[47,15],[37,20],[7,4],[8,10],[-1,2],[-3,7],[-1,5],[-2,10],[-1,4],[-3,12],[1,5],[2,15],[4,18],[2,14],[-6,18],[-53,60],[-102,79],[-22,45],[-2,6],[2,5],[9,26],[11,12],[44,52],[16,19],[1,5],[33,74],[7,15],[13,30],[4,41],[-14,27],[-16,11],[-8,0],[-9,1],[-8,0],[-43,-14],[-26,-12],[-62,-29],[-34,1],[-20,6],[-82,24],[-19,14],[1,18],[23,12],[47,14],[47,9],[64,11],[58,0],[1,0],[90,12],[23,10],[8,3],[4,1],[5,16],[-2,4],[-2,3],[-49,97],[-1,68],[-6,23],[-8,11],[-35,101],[-1,2],[0,1],[2,24],[2,17],[20,31],[8,7],[6,5],[25,46],[16,11],[2,1],[18,8],[55,5],[88,-3],[6,-4],[4,-3],[6,-4],[-9,-51],[-2,-11],[4,-6],[13,-9],[14,-10],[41,-7],[1,0],[21,5],[2,0],[20,12],[38,38],[25,12],[61,30],[37,18],[3,0],[11,1],[20,1],[36,-23],[4,-2],[16,-1],[63,17],[9,3],[36,10],[82,12],[40,3],[41,3],[35,3],[2,0],[18,10],[4,9],[6,11],[17,44],[45,69],[3,6],[12,17],[12,11],[5,5],[20,19],[37,19],[23,12],[6,3],[4,0],[10,2],[16,2],[16,-8],[-1,-11],[-14,-15],[-2,-13],[0,-8],[5,-7],[32,-39],[33,-1],[1,0],[62,25],[3,1],[19,0],[15,-1],[19,-9],[5,-2],[3,-4],[10,-15],[2,-3],[0,-2],[2,-16],[16,-6],[14,7],[0,7],[1,17],[11,18],[1,11],[1,4],[-12,9],[-7,1],[-34,11],[-20,13],[5,13],[3,7],[1,2],[38,29],[2,19],[1,12],[-9,10],[-17,20],[1,8],[69,60],[17,9],[13,0],[12,-9],[4,-2],[5,-7],[26,-32],[17,-20],[5,-3],[35,-15],[20,-3],[1,0],[1,0],[20,8],[10,4],[4,6],[39,59],[8,12],[3,4],[32,20],[28,9],[24,7],[18,10],[0,8],[-24,9],[-82,3],[-27,1],[-95,14],[-12,8],[-7,16],[3,29],[9,10],[48,24],[5,2],[-3,8],[-22,10],[-18,8],[-24,16],[1,12],[1,12],[1,0],[50,86],[4,3],[41,24],[6,5],[29,24],[6,4],[14,20],[1,4],[0,1],[1,11],[-10,7],[-3,1],[-7,6],[-54,19],[-9,3],[-10,4],[-47,30],[-11,16],[2,26],[16,34],[-27,-8],[-38,-11],[-34,-6],[-79,5],[-7,5],[-33,23],[-107,64],[-82,26],[-4,1],[-15,11],[-4,2],[-12,9],[-53,51],[-32,31],[2,15],[9,5],[57,-15],[44,-23],[25,-1],[27,15],[116,108],[9,52],[-26,29],[-32,17],[-89,1],[-36,23],[-7,5],[7,21],[25,69],[4,21],[27,14],[0,4],[-1,35],[37,16],[71,7],[30,6],[18,7],[19,7],[20,8],[31,17],[18,15],[0,2],[1,47],[31,17],[62,-5],[12,-2],[71,-16],[44,-15],[5,7],[61,105],[-59,0],[-35,25],[3,33],[10,18],[2,63],[11,2],[68,15],[73,16],[33,-3],[16,41],[3,8],[2,4],[12,31],[14,75],[1,7],[3,17],[3,31],[1,5],[-6,14],[-4,10],[3,2],[20,20],[28,30],[30,30],[16,17],[47,2],[48,-8],[17,-21],[-48,-31],[-5,-24],[-4,-15],[65,-33],[15,13],[5,3],[-9,31],[0,23],[42,0],[30,0],[13,0],[31,-12],[-20,-42],[22,-16],[37,-7],[59,46],[67,-4],[62,19],[48,25],[6,29],[-79,24],[8,48],[59,21],[57,-21],[14,-43],[59,-15],[23,16],[13,19],[-24,34],[-43,37],[-6,29],[-50,12],[-13,20],[4,51],[-13,24],[-35,-16],[-31,0],[-11,0],[-53,36],[-20,20],[-22,44],[33,48],[31,8],[31,6],[73,35],[6,2],[28,-4],[79,4],[53,25],[7,22],[-42,12],[-66,14],[-12,66],[64,134],[13,7],[116,24],[21,-2],[33,-2],[12,-9],[4,-2],[1,-1],[14,-23],[47,-34],[14,-5],[2,0],[14,-1],[20,-1],[24,12],[16,8],[28,32],[7,29],[15,23],[53,21],[91,25],[51,14],[8,6],[24,16],[14,23],[11,18],[24,23],[44,24],[64,22],[28,9],[89,51],[31,17],[26,18],[6,4],[23,26],[12,45],[2,6],[15,10],[12,8],[14,9],[7,0],[14,0],[4,0],[8,-9],[19,-19],[31,-19],[26,4],[33,22],[3,3],[25,38],[3,34],[-45,57],[-18,22],[-41,32],[-3,31],[28,32],[14,47],[-59,17],[-14,23],[51,37],[39,10],[51,-22],[59,-7],[-11,-49],[-62,-88],[30,-24],[46,26],[6,7],[9,10],[8,22],[3,9],[0,5],[0,37],[12,9],[15,13],[1,0],[11,7],[29,18],[4,18],[3,13],[-51,36],[-1,13],[0,3],[-1,5],[8,6],[1,1],[10,6],[4,2],[21,-1],[39,-17],[1,0],[1,0],[6,-1],[18,0],[18,9],[1,7],[1,12],[-47,35],[-9,11],[-9,11],[-8,11],[-7,16],[2,7],[1,7],[43,20],[61,21],[19,0],[18,-1],[27,16],[5,4],[2,23],[-1,2],[-10,13],[-4,4],[-49,34],[-10,7],[-7,11],[-21,43],[2,17],[0,6],[3,1],[4,3],[26,-5],[34,-7],[42,-1],[2,1],[24,11],[23,61],[0,10],[0,30],[-4,9],[-3,7],[1,9],[2,16],[0,6],[27,17],[26,-1],[65,-46],[2,-1],[7,-8],[58,-54],[2,-1],[31,-6],[41,21],[8,4],[4,2],[28,25],[0,2],[13,57],[2,8],[0,3],[10,7],[13,7],[34,-1],[9,-3],[10,-3],[23,17],[-40,42],[9,33],[152,-31],[-28,-50],[-48,-4],[-42,-25],[1,-17],[40,-25],[89,4],[51,10],[30,6],[106,43],[22,12],[55,50],[-13,23],[-17,29],[-38,39],[45,10],[22,7],[17,6]],[[91821,49841],[-28,-195],[-20,-124],[-8,-56],[-20,-119],[-19,-123],[-5,-28],[-33,-193],[-16,-95],[-11,-63],[-8,-47],[-7,-44],[-36,-211],[-25,-145],[-26,-175],[-29,-170],[-10,-61],[-1,-11],[-9,-44],[-15,-91],[-22,-141],[-9,-55],[-4,-26],[-31,-198],[-16,-154],[-14,-103],[-1,-10],[-42,-250],[-28,-169],[-10,-61],[-23,-142],[-9,-50],[0,-3],[-18,-109],[-19,-111],[-9,-56],[-14,-78],[-10,-53],[-22,-122],[-23,-131],[-9,-50],[-8,-43],[-28,-101],[-9,-26],[-22,-142],[-4,-20],[-5,-32],[-47,-299],[-34,-217],[-6,-35],[-21,-131],[-58,-368],[0,-1],[-17,-108],[-8,-46],[-22,-138],[-5,-37],[-2,-9],[-7,-47],[-23,-141],[-7,-47],[-6,-35],[-16,-105],[-6,-37],[-1,-7],[-4,-21],[-9,-61],[-6,-35],[-7,-43],[-2,-15],[-10,-60],[-28,-179],[-10,-60],[0,-1],[-4,-24],[-1,-8],[-5,-32],[-3,-27],[-1,-2],[-4,-22],[-25,-127],[-8,-42],[-5,-27],[-15,-78],[-7,-33],[-5,-30],[-6,-35],[-6,-39],[-5,-31]],[[90624,42570],[-77,-1],[-379,-1],[-117,-1],[-54,0],[-254,-1],[-199,-1],[-1,0],[-289,-1],[-93,-1],[-187,0],[-281,0],[-96,0],[-325,-3],[-151,-1],[-651,-3],[-94,-1],[-304,-2],[-411,-2],[-131,-8],[-32,3],[-72,0],[-242,2],[-411,-2],[-581,-3],[-238,-4],[-9,0],[-186,-1],[-358,-2],[-124,-1],[-120,-1],[-30,0],[-109,-1],[-398,-7],[-85,0],[-37,0],[-219,0],[-37,0],[-15,0],[-65,2],[-96,-2],[-1,0],[-83,-1],[-148,-3],[-196,-2],[-119,-2],[-55,1],[-207,5],[-87,-6],[-164,3],[-280,-1],[-35,-2],[-87,-2],[-125,-3],[-119,-3],[-142,0],[-76,0],[-27,0],[-44,0],[-53,0],[-84,1],[-368,2],[-142,0],[-109,-1],[-248,-1],[-239,-1],[-158,-1],[-93,0],[-25,0],[-218,-2],[-242,-1],[-395,-2],[-188,-1],[-50,0],[-93,0],[-215,-3],[-248,2],[-82,-1],[-250,-3],[-449,0],[-62,0]],[[77060,42498],[0,42],[-6,181],[-1,29],[-2,77],[2,88],[-5,121],[-1,36],[-2,163],[0,42],[-2,111],[-2,82],[0,189],[2,62],[-3,28],[-4,32],[0,64],[0,233],[0,107],[-1,257],[0,2],[0,29],[0,81],[0,3],[0,2],[0,23],[0,7],[0,56],[0,1],[1,219],[0,33],[0,61],[0,9],[0,23],[-1,262],[-1,138],[0,39],[1,55],[0,72],[-5,73],[-3,135],[0,128],[0,4],[-1,125],[-1,110],[-5,963],[0,59],[0,39],[0,45],[-1,151],[8,82],[-3,102],[-2,29],[-5,83],[-1,253],[0,26],[-1,141],[1,124],[-4,227],[0,27],[-1,80],[-3,23],[-2,32],[2,160],[7,45],[-1,69],[0,57],[-3,315],[0,168],[1,23],[2,29],[3,38],[6,77],[18,218]],[[77060,42498],[-150,-1],[-188,0],[-77,3],[-33,0],[-120,2],[-165,-5],[-284,0],[-38,0],[-31,-1],[-238,0],[-108,-1],[-381,0],[-62,0],[-297,0],[-35,0],[-97,0],[-39,0],[-81,-1],[-448,0],[-37,0],[-49,0],[-165,0],[-306,0],[-304,0],[-91,0],[-279,0],[-53,0],[-186,-1],[-223,0],[-197,0],[-432,0],[-48,0],[-262,1],[-157,-1],[-45,0],[-115,0],[-69,0],[-48,-1],[-99,-1],[-547,0],[-263,-1],[-477,0],[-446,-1],[-80,0],[-122,0],[-28,0],[-416,-1],[-77,0],[-171,-1],[-175,0],[-51,0],[-82,0],[-4,0],[-436,0],[-40,-6],[-326,0],[-107,0],[-105,0],[-205,0],[-178,1],[-140,0],[-366,0],[-4,0],[-137,0],[-390,1],[-84,0]],[[40053,38878],[-38,1],[-134,-2],[-351,1],[-36,0],[-129,-1],[-88,0],[-472,-1],[-37,0],[-35,1],[-241,-1],[-80,0],[-67,0],[-174,0],[-104,0],[-232,1],[-244,0],[-457,0],[-1,0],[-51,0],[-66,0],[-32,0],[-150,0],[-73,0],[-349,0],[-6,0],[-70,0],[-356,3],[-42,0],[-164,0],[-126,0],[-94,0],[-44,0],[-75,0],[-75,0],[-277,-1],[-162,0],[-133,-1],[-81,0],[-110,0],[-266,-1],[-291,-1],[-114,0],[-1,0],[-70,0],[-5,0],[-258,1],[-50,0],[-61,0],[-106,0],[-57,1],[-300,2],[-133,0],[-41,1],[-172,1],[-207,2],[-64,1],[-122,1],[-91,0],[-44,0],[-64,-1],[-36,-1],[-327,0],[-146,0],[-130,0],[-273,0],[-32,0],[-41,0],[-113,-1],[-122,0],[-75,0],[-282,0],[-53,2],[-68,-1],[-77,0],[-69,-1],[-80,-1],[-91,0],[-44,1],[-37,0],[-29,-2],[-48,1],[-61,1],[-59,-1],[-43,0],[-32,1],[-102,1],[-139,0],[-122,0],[-55,1],[-57,1],[-69,-1],[-89,0],[-29,0],[-99,0],[-15,0],[-203,1],[-161,0],[-177,-1],[-1,0],[-103,-2],[-3,0],[-182,0],[0,-31],[-104,0],[-1,0],[-76,0],[-259,0],[-152,-1],[-128,0],[-107,0],[-40,0],[-249,0],[-268,-1],[-205,0],[-186,0]],[[26331,38850],[-17,215],[-6,86],[-24,258],[-4,47],[-17,286],[-6,65],[-18,182],[0,8],[-6,62],[-19,152],[-6,47],[-13,99],[-3,29],[-7,57],[-23,176],[-3,40],[-7,97],[-10,145],[-4,41],[-8,95],[-15,176],[-3,31],[-4,60],[-2,61],[-3,159],[-3,40],[-2,41],[-3,45],[-4,70],[-2,37],[-3,51],[-5,89],[-3,45],[-10,154],[-2,28],[-5,73],[-11,136],[-5,124],[-1,13],[-3,47]],[[90624,42570],[-12,-69],[-35,-206],[-14,-80],[-7,-43],[-5,-26],[-13,-78],[-4,-26],[-6,-34],[-18,-102],[-6,-34],[-8,-43],[-22,-130],[-7,-40],[0,-4],[-3,-13],[-10,-39],[-6,-28],[-6,-46],[-6,-32],[-14,-59],[-2,-8],[-4,-31],[-5,-52],[-2,-17],[-5,-29],[-15,-87],[-5,-29],[-10,-60],[-30,-179],[-10,-60],[-6,-33],[-16,-98],[-6,-33],[-5,-33],[-6,-31],[-11,-69],[-4,-23],[0,-1],[-8,-51],[-12,-71],[-13,-83],[-8,-52],[-14,-78],[-10,-61],[-21,-123],[-7,-41],[-6,-36],[-18,-108],[-6,-36],[-5,-32],[-18,-98],[-5,-33],[-1,-2],[-14,-81],[-43,-251],[-15,-84],[-10,-59],[-31,-179],[-10,-59],[-7,-35],[-5,-31],[-7,-44],[-16,-95],[-6,-31],[0,-3],[-4,-29],[-6,-27],[-13,-55],[-10,-51],[-16,-99],[-6,-33],[-9,-57],[-22,-131],[-7,-44],[-6,-36],[-18,-108],[-6,-37],[-2,-12],[0,-2],[-7,-41],[-5,-24],[-4,-29],[-5,-36],[-1,-7],[-1,-4],[-12,-68],[-4,-26],[-7,-41],[-21,-120],[-4,-22],[-2,-14],[-1,-5],[-12,-66],[-26,-146],[-9,-54],[-12,-66],[-12,-67],[-8,-46],[-16,-88],[-5,-30],[-12,-72],[-21,-120],[-15,-96],[-11,-72],[-2,-10],[-7,-41],[-5,-38],[-4,-21],[-8,-36],[-2,-26],[-9,-52],[-6,-42],[-21,-118],[-7,-40],[-7,-40],[-5,-28],[-28,-158],[-7,-45],[-10,-67],[-6,-44],[-12,-90],[-9,-43],[0,-1],[-4,-43]],[[89447,35644],[-129,-23],[-139,-25],[-199,-37],[-29,-5],[-257,-42],[-229,-45],[-19,-3],[-37,-7],[-152,-28],[-373,-68],[-159,-25],[-33,-5],[-80,-13],[-29,-6],[-272,-56],[-166,-30],[-190,-35],[-176,-32],[-158,-29],[-143,-26],[-54,-10],[-104,-18],[-40,-8],[-361,-65],[-40,-8],[-263,-47],[-104,-19],[-259,-45],[-74,-11],[-177,-23],[-264,-34],[-203,-23],[-289,-31],[-126,-14],[-55,-6],[-343,-37],[-105,-9],[-87,-10],[-34,-1],[-91,-11],[-71,-9],[-5,-1],[-44,-5],[-29,-3],[-82,-9],[-37,-5],[-36,-4],[-172,-19],[-129,-14],[-138,-16],[-89,-8],[-134,-15],[-229,-25],[-91,-10],[-8,0],[-144,-15],[-66,-7],[-254,-28],[-6,0],[-83,-9],[-232,-25],[-37,-4],[-57,-4],[-161,-8],[-35,-1],[-77,-4],[-274,-15],[-169,-9],[-60,-4],[-179,-7],[-343,-14],[-56,-3],[-192,-8],[-205,-9],[-576,-25],[-169,-7],[-39,-2],[-373,-16],[-173,-9],[-35,-2],[-236,-11],[-131,-7],[-260,-12],[-112,-5],[-116,-6],[-106,-5]],[[77155,34250],[1,265],[0,49],[-3,78],[-6,193],[-1,28],[0,108],[0,215],[-7,70],[-1,89],[-1,200],[-2,22],[1,27],[-1,45],[-1,67],[-1,69],[-1,123],[-1,56],[0,231],[0,28],[-2,64],[-4,151],[-4,139],[-1,39],[-1,31],[-5,103],[-1,8],[1,24],[1,9],[0,27],[2,43],[2,73],[1,10],[1,20],[1,13],[1,23],[-4,24],[0,30],[0,49],[-4,101],[-1,4],[-1,28],[-2,148],[-1,74],[1,185],[-1,34],[-3,27],[0,32],[-2,120],[0,4],[-1,29],[-2,109],[-5,241],[-7,325],[0,51],[-2,122],[-1,81],[-2,63],[-1,60],[-3,167],[-2,106],[-1,121],[0,2],[-2,84],[-1,58],[0,26],[-1,63],[-1,103],[-3,172],[-2,244],[0,25],[-2,144],[-1,71],[0,62],[3,64],[0,97],[-3,189],[-8,29],[4,28],[4,35],[0,133],[-2,321],[0,197],[-9,364],[-6,75],[2,44],[1,22],[7,142],[1,57],[2,107],[-1,187],[0,28]],[[26331,38850],[32,-420],[3,-48],[0,-11],[2,-41],[3,-76],[5,-53],[22,-251],[8,-100],[1,-4],[4,-61],[0,-1],[6,-79],[23,-323],[-21,-101],[-4,-49],[-5,-44],[-9,-89],[-1,-36],[-2,-62],[-13,-313],[-3,-94],[2,-146],[2,-131],[1,-91],[-3,-363],[0,-58],[0,-31],[-1,-23],[-1,-165],[1,-47],[-1,-84],[-1,-70],[-2,-129],[-4,-78],[0,-233],[-1,-51],[0,-250],[0,-22],[-368,-245],[-88,-58],[-17,-69],[-22,-88],[-36,-144],[-7,-173],[-5,-107],[-1,-14],[-3,-82],[0,-93],[-2,-140]],[[25825,33409],[-40,0],[-256,1],[-92,-1],[-105,0],[-156,-1],[-4,0],[-86,0],[-617,-1],[-108,0],[-58,0],[-1,0],[-65,-1],[-87,0],[-184,0],[-314,-1],[-174,0],[-298,-1],[-112,0],[-322,-6],[-199,-4],[4,3],[-14,22],[9,10],[21,27],[47,59],[-7,22],[-2,8],[3,1],[24,10],[54,22],[57,53],[9,9],[44,42],[28,43],[1,0],[60,43],[10,8],[3,9],[1,1],[-1,0],[0,13],[-12,7],[-1,1],[-32,12],[-16,14],[-18,26],[-3,10],[0,95],[5,7],[6,5],[10,4],[41,4],[13,4],[0,1],[4,4],[2,10],[-27,44],[-44,52],[-1,2],[4,9],[2,6],[25,72],[-22,63],[-51,7],[-106,17],[-214,28],[-504,71],[-36,13],[-277,41],[-109,16],[-152,24],[-342,52],[-65,9],[-261,40],[-93,14],[-34,5],[-1,0],[-345,53],[-87,12],[-533,81],[-127,20],[-29,5],[-132,18],[-75,12],[-521,79],[-52,8],[-81,11],[-198,32],[-107,17],[-93,15],[-142,23],[-40,6],[-62,2],[-106,3],[-606,17],[-1,0],[-330,9],[-130,3],[-289,8],[-63,2],[-399,15],[-352,17],[-161,4],[-114,0],[-35,0],[-44,2],[-122,4],[-127,4],[-16,0],[-176,2],[-55,3],[-89,4],[-66,3],[-279,9],[-245,8],[-60,2],[-121,-1],[-1087,23],[-57,4],[-42,-3],[-32,3],[-335,1],[-553,9],[-32,1],[-205,4],[-201,4]],[[11435,35146],[157,64],[197,77],[4,2],[172,122],[177,116],[166,109],[69,45],[62,41],[54,42],[127,98],[73,56],[40,26],[27,18],[99,-11],[104,19],[31,26],[53,45],[23,14],[191,52],[10,6],[31,18],[38,22],[-31,41],[-90,62],[7,44],[1,10],[17,158],[-53,31],[-124,-17],[-14,-2],[-70,42],[16,50],[93,197],[1,30],[2,127],[28,119],[219,180],[43,26],[253,156],[78,48],[132,38],[586,36],[345,22],[453,48],[92,16],[141,25],[54,21],[134,52],[109,66],[111,67],[5,4],[43,37],[248,215],[108,94],[-86,23],[-17,4],[-20,58],[-101,204],[-74,38],[-137,71],[-416,71],[-1024,139],[-194,46],[-219,116],[-53,85],[-43,10],[-25,46],[13,31],[-24,39],[53,133],[211,150],[262,81],[185,-15],[144,-50],[65,-43],[145,-96],[301,-301],[273,-147],[132,-37],[183,-4],[141,-7],[123,-6],[82,15],[20,31],[11,16],[-21,153],[-53,387],[31,43],[103,36],[164,56],[725,250],[285,109],[132,159],[8,129]],[[77155,34250],[-138,-7],[-8,0],[-298,-14],[-124,-3],[-38,-1],[-30,-1],[-54,-4],[-77,-4],[-77,-5],[-81,-4]],[[76230,34207],[-66,-4],[-153,-6],[-341,-16],[-205,-9],[-78,-4],[-52,-2],[-151,-8],[-85,-4],[-270,-13],[-41,-2],[-104,-2],[-48,-2],[-117,-5],[-41,0],[-41,-2],[-43,-2],[-82,-3],[-43,-2],[-121,-5],[-146,-6],[-50,-2],[-132,-6],[-84,-4],[-44,-3],[-101,-5],[-163,-7],[-39,-2],[-56,-2],[-100,-5],[-61,-3],[-75,-4],[-83,-4],[-113,-5],[-498,-23],[-100,-5],[-134,-6],[-233,-10],[-93,-4],[-167,-8],[-164,-8],[-66,-3],[-90,-4],[-87,-4],[-89,-4],[-58,-1],[-54,-4],[-69,-1],[-35,1],[-71,-4],[-66,-3],[-92,-3],[-106,-5],[-124,-6],[-33,-1],[-203,-8],[-234,-12],[-36,-1],[-105,-8],[-4,0],[-44,1],[-176,-8],[-64,-3],[-37,-1],[-86,-4],[-50,-2],[-68,-2],[-100,-5],[-3,0],[-36,-2],[-160,-8],[-69,-3],[-336,-14],[-52,-6],[-198,-9],[-184,-9],[-38,2],[-161,-13],[-67,-4],[-353,-10],[-90,-4],[-238,-10],[-83,-3],[-98,-5],[-144,-6],[-188,-8],[-184,-8],[-168,-7],[-5,-1],[-24,-1],[-239,-10],[-125,-7],[-76,-4],[-36,0],[-172,-9]],[[65738,33740],[1,28],[-3,258],[-1,30],[-4,149],[0,60],[-2,72],[-1,40],[2,64],[1,66],[1,208],[-3,37],[-3,209],[-1,98],[-3,76],[3,58],[-1,46],[-103,0],[-2,17],[-8,133],[-1,75],[-2,141],[-1,233],[-1,75],[1,66],[-1,44],[-3,118],[-4,131],[-3,123],[-2,69],[-3,206],[0,46],[-1,125],[-1,29],[1,180],[0,42],[0,34],[-1,81],[-1,28],[-1,65],[0,22],[0,21],[-2,143],[0,44],[-5,260],[0,22],[2,34],[0,4],[-1,92],[-1,171],[-1,140],[0,13],[0,15],[0,69],[-1,152],[0,61],[-1,59],[-1,140],[0,26],[0,22],[0,42],[-1,68],[-1,50],[-1,121],[-1,95],[2,40],[-1,129],[-1,102],[-1,109],[-1,191],[-1,162],[-1,120],[1,155],[-1,145],[2,104],[1,112],[-1,74],[0,103],[1,50],[-2,122],[-1,74],[1,99],[0,174],[0,57],[0,113],[0,83],[-1,115],[-1,125],[1,243],[0,65],[-1,277],[-1,154]],[[65738,33740],[-227,-11],[-43,-2],[-97,-4],[-50,-3],[-93,-4],[-103,-5],[-85,-3],[-72,-4],[-52,-3],[-63,-3],[-32,-2],[-58,-1],[-106,-5],[-88,-4],[-50,-2],[-42,-1],[-61,-2],[-92,-4],[-151,-6],[-79,-2],[-153,-8],[-89,-4],[-115,-6],[-39,-3],[-111,-5],[-95,-5],[-134,-6]],[[63358,33632],[-125,-6],[-92,-4],[-79,-4],[-192,-9],[-169,-9],[-87,-4],[-75,-4],[-71,-3],[-42,-2],[-42,2],[-139,-14],[-171,-2],[-28,0],[-120,-6],[-32,-1],[-134,-6],[-47,-2],[-164,-8],[-53,-3],[-75,-3],[-115,-5],[-141,-7],[-131,-5],[-83,-4],[-132,-8],[-121,-5],[-29,-3],[-46,-1],[-29,-3],[-46,-3],[-37,-2],[-32,-4],[-171,-7],[-48,-2],[-71,-4],[-298,-13],[-75,-4],[-128,-6],[-75,-3],[-85,-4],[-49,-2],[-71,-4],[-106,-5],[-142,-8],[-111,-4],[-145,-7],[-59,-2],[-186,-10],[-102,-4],[-78,-3],[-154,-8],[-109,-5],[-67,-4],[-120,-6],[-38,-1],[-109,-6],[-110,-6],[-181,-8],[-96,-4],[-185,-9],[-57,-2],[-87,-4],[-2,0],[-31,-1],[-68,-5],[-46,-1],[-97,-2],[-117,-7],[-135,-5],[-142,-9],[-168,-10],[-83,-3]],[[56277,33296],[0,23],[1,40],[-40,1],[-3,111],[0,36],[1,125],[-1,34],[-4,161],[1,26],[1,35],[0,32],[-1,61],[4,28],[-2,25],[0,73],[-1,64],[0,26],[0,51],[0,83],[-3,36],[0,38],[0,104],[0,84],[0,4],[-1,99],[0,25],[0,34],[1,27],[0,113],[1,105],[0,198],[-1,58],[1,34],[-1,166],[0,36],[0,98],[0,296],[0,100],[0,91],[0,65],[0,137],[1,142],[0,46],[0,126],[0,120],[0,1],[0,42],[0,33],[0,214],[2,52],[0,79],[1,169],[3,366],[-2,70],[-1,27],[-1,48],[5,32],[1,4],[1,124],[0,39],[0,71],[0,46],[-57,182],[-98,317],[-23,75],[-38,123],[-163,-1],[-96,0],[-195,0],[-148,-1],[-47,0],[-364,0],[-58,-1],[-108,0],[-289,0],[-180,0],[-141,-1],[-86,0],[-36,0]],[[40053,38878],[2,-6],[2,-11],[1,-4],[0,-1],[0,-32],[-4,-12],[-12,-15],[-150,-151],[-2,-2],[-2,-2],[-21,-18],[-4,-3],[-4,-2],[-2,-1],[-16,-3],[-23,-2],[-3,0],[-28,7],[-34,3],[-21,1],[-22,-3],[-25,-7],[-9,-7],[-22,-20],[-29,-27],[-50,-34],[-7,-6],[0,-6],[0,-21],[0,-18],[7,0],[55,-33],[2,-1],[15,-11],[12,-14],[6,-9],[4,-11],[1,-2],[0,-3],[1,-10],[-3,-9],[0,-3],[-1,-21],[4,-18],[3,-4],[7,-10],[7,-6],[9,-3],[1,0],[10,-1],[17,6],[1,0],[40,22],[22,10],[61,15],[42,6],[31,2],[13,-2],[18,-6],[12,-7],[5,-6],[0,-1],[0,-13],[-5,-6],[-13,-6],[-1,0],[-46,-8],[-34,-1],[-17,6],[-16,3],[-17,-3],[-13,-10],[-19,-34],[0,-10],[2,-3],[14,-9],[132,-49],[11,-1],[7,2],[1,0],[9,6],[1,1],[2,1],[9,7],[20,21],[25,15],[5,3],[5,2],[19,9],[11,5],[2,1],[31,9],[34,2],[41,-5],[29,-7],[79,-27],[30,-9],[23,1],[13,4],[9,5],[9,10],[1,1],[1,1],[6,13],[19,39],[0,1],[47,32],[36,21],[15,5],[1,0],[19,2],[11,-4],[8,-6],[1,-1],[0,-2],[0,-9],[-5,-12],[-1,-3],[0,-1],[-3,-5],[-14,-11],[-1,-1],[-1,-1],[-48,-30],[-21,-20],[-30,-28],[-117,-104],[-53,-59],[-7,-7],[-18,-13],[-14,-4],[-33,-2],[-32,6],[-14,1],[-15,2],[-10,0],[-9,0],[-74,-11],[-1,-1],[-14,-3],[-11,-8],[1,-13],[6,-7],[1,-1],[25,-19],[20,-11],[19,-16],[2,-3],[17,-18],[13,-16],[0,-1],[0,-3],[70,-76],[1,-1],[1,-2],[0,-2],[17,-30],[21,-25],[43,-29],[22,-26],[7,-26],[-1,-39],[-9,-20],[-3,-28],[27,-15],[31,3],[77,25],[40,-6],[37,-22],[29,-32],[39,-12],[22,16],[15,19],[21,16],[28,9],[59,-4],[43,-19],[19,-24],[7,-41],[3,-22],[0,-12],[-1,-24],[-41,-86],[-7,-23],[8,-38],[29,-19],[107,-65],[6,-24],[12,-40],[34,-19],[49,-13],[31,-13],[3,-24],[-8,-34],[-5,-27],[-6,-32],[-6,-32],[-5,-24],[22,-25],[43,2],[39,4],[80,-6],[45,-22],[55,-38],[15,-20],[6,-28],[-13,-28],[-28,-16],[-31,8],[-5,46],[-10,26],[-23,14],[-31,-2],[-29,-19],[-27,-48],[12,-32],[8,-23],[9,-33],[8,-20],[-8,-28],[-32,-11],[-35,1],[-48,-4],[-21,-23],[30,-17],[74,-29],[83,-4],[25,11],[29,17],[63,17],[34,-19],[37,-44],[19,-18],[33,-7],[39,12],[32,17],[8,22],[-17,26],[25,29],[43,-8],[74,-62],[47,-39],[69,-48],[52,-51],[41,-39],[53,-101],[-5,-44],[-53,-54],[-36,-69],[-8,-62],[-1,-60],[0,-30],[-7,-39],[1,-60],[17,-35],[39,-16],[67,-6],[58,-4],[63,-16],[41,-14],[29,-13],[37,-31],[66,-39],[41,-15],[57,-20],[110,-31],[67,-23],[46,-37],[54,-63],[49,-120],[16,-47],[23,-53],[18,-41],[1,-3],[8,-19],[18,-39],[15,-37],[0,-22],[0,-25],[-2,-30],[-9,-32],[4,-25],[26,-35],[29,-23],[61,-33],[28,-33],[-15,-29],[-53,-23],[-56,-31],[2,-24],[-8,-29],[5,-38],[-7,-4],[-15,-11],[-47,-23],[-59,-11],[-69,-17],[-108,-15],[-53,-12],[-32,-12],[-50,-3],[-33,2],[-50,7],[-48,5],[-42,3],[-25,-17],[7,-32],[9,-10],[11,-13],[55,-24],[61,-38],[67,-38],[83,-47],[50,-32],[30,-51],[35,-22],[55,2],[47,28],[54,19],[34,11],[42,-1],[37,-12],[114,-51],[40,-24],[38,-23],[25,-52],[-12,-23],[-12,-19],[-42,-3],[-26,29],[-28,32],[-29,22],[-59,12],[-34,-6],[-27,-22],[-19,-47],[40,-46],[10,-28],[-5,-25],[-32,-26],[-38,-17],[-48,-40],[-58,-45],[-55,-32],[-62,-33],[-64,-38],[-30,-35],[-8,-39],[-17,-24],[-8,-47],[7,-21],[55,-30],[35,-34],[60,-28],[40,-24],[21,-24],[33,-42],[36,-36],[48,-9],[48,-2],[137,6],[116,-4],[91,4],[45,1],[50,6],[63,9],[42,9],[35,11],[37,8],[48,4],[34,-3],[27,-14],[16,-28],[4,-27],[1,-34],[3,-32],[4,-26],[9,-21],[20,-21],[39,-29],[19,-27],[-1,-23],[-20,-30],[-24,-23],[-32,-20],[-32,-27],[-20,-34],[-33,-46],[-25,-16],[-51,-9],[-45,-2],[-35,0],[-28,7],[-19,35],[0,31],[3,22],[-11,27],[-27,24],[-44,5],[-34,-27],[-18,-26],[-17,-21],[-25,-16],[-43,-20],[-24,-30],[-7,-22],[29,-38],[35,-28],[30,-24],[22,-23],[11,-32],[17,-27],[23,-13],[32,-30],[13,-40],[-7,-27],[-11,-11],[-7,-8]],[[43079,32715],[-3,-1],[-33,-11],[-35,4],[-36,4],[-57,41],[-82,33],[-68,-30],[-63,-28],[-45,-13],[-96,-51],[-51,-34],[-23,-28],[-117,-17],[-3,0],[-185,16],[-68,-30],[-79,-4],[-45,-11],[-68,-17],[-77,-55],[-35,-19],[-102,-17],[-58,-9],[-103,-44],[-33,-14],[-85,-75],[-81,-30],[-78,-16],[-54,-11],[-82,-5],[-31,-9],[-29,-8],[-43,-24],[-82,-16],[-147,-28],[-84,-8],[-119,6],[-94,0],[-38,-11],[-62,-17],[-93,-4],[-87,-22],[-56,12],[-52,0],[-66,-8],[-86,-19],[-49,-18],[-43,-15],[-61,-7],[-55,-22],[-40,-16],[-49,-9],[-36,-14]],[[39632,31986],[-60,-23],[-26,-21],[-1,-1],[-21,-4],[-77,-30],[-26,-28],[-64,-47],[-59,-67],[-55,-61],[-64,7],[-66,-8],[-45,9],[-107,4],[-94,-6],[-160,-75],[-62,-15],[-84,-1],[-306,1],[-57,1],[-261,1],[-144,0],[-46,1],[-470,3],[-415,0],[-302,0],[-84,0],[-47,0],[-355,-1],[-122,0],[-112,-1],[1,-28],[12,-198],[5,-83],[-80,-1],[-129,0],[-275,2],[-57,0],[-98,0],[-35,1],[-28,0],[-115,0],[-42,1],[-101,0],[-18,314],[-147,0],[-517,3],[-263,2],[-2,-30],[-83,0],[-1,0],[-36,0],[-62,-1],[-271,-1],[-56,0],[-209,-1],[-217,-1],[-51,0],[-73,0],[-27,0],[-142,0],[-184,0],[-74,0],[-41,-1],[-352,-4],[-129,0],[-204,0],[-302,0],[-95,0],[-246,0],[-368,-11],[-221,1],[-280,-1],[-104,1],[-298,1],[-29,0],[-210,-2],[-278,-1],[-83,1],[-105,-2],[-59,-3],[-110,1],[-180,-1],[-60,1],[-116,1],[-41,0],[-198,0],[-218,0],[-144,2],[-68,0],[-322,0],[-160,0],[-265,0],[-60,0],[-204,1],[-189,1],[-45,0],[-128,-1],[-71,1],[-175,2],[-53,-1],[-33,-1],[-209,3],[-202,0]],[[25810,31591],[4,544],[0,1],[0,67],[2,315],[4,145],[0,30],[-1,109],[1,124],[1,79],[2,142],[2,156],[0,106]],[[56277,33296],[-34,-2],[-104,-4],[-98,-5],[-43,0],[-3,0],[-73,-3],[-113,-4],[-16,-1],[-221,-7],[-58,-2],[-16,-1],[-15,0],[-62,-2],[-117,-5],[-40,-2],[-61,-3],[-40,-3],[-180,-9],[-135,-9],[-56,-4],[-130,-8],[-111,-6],[-106,-4],[-51,-2],[-78,-3],[-186,-8],[-176,-6],[-135,-4],[-51,-2],[-76,-3],[-104,-4],[-37,-4],[-85,-2],[-57,-3]],[[53409,33171],[-36,-1],[-69,-4],[-59,-3],[-94,-3],[-67,-3],[-163,-9],[-49,-2],[-60,-3],[-91,-3],[-29,-2],[-187,-8],[-138,-6],[-30,-2],[-90,-4],[-40,-3],[-200,-9],[-83,-3],[-86,-4],[-92,-4],[-115,-5],[-192,-9],[-62,-3],[-86,-5],[-246,-12],[-30,-1],[-130,-5],[-77,-3],[-36,-2],[-30,-2],[-44,-1],[-15,-1],[-20,-1],[-39,-1],[-40,-2],[-53,-2],[-48,-3],[-65,-3],[-63,0],[-217,-11],[-94,-2],[-31,-2],[-12,-1],[-94,-7],[-136,-4],[-75,-4],[-285,-12],[-188,-8],[-156,-5],[-161,-8],[-95,-3],[-77,-4],[-87,-4],[-187,-8],[-31,0],[-96,-3],[-30,-1],[-55,-3],[-61,-3],[-47,-2],[-99,-4],[-191,-7],[-127,-5],[-75,-3],[-45,-2],[-219,-11],[-33,-1],[-81,-3],[-31,-2]],[[47239,32901],[-33,-1],[-43,-2],[-44,-2],[-6,0],[-140,-6],[-308,-11],[-140,-7],[-3,0],[-86,-4],[-98,-4],[-471,-21],[-250,-12],[-313,-14],[-249,-11],[-180,-9],[-199,-9],[-106,-5],[-399,-19],[-111,-5],[-397,-18],[-207,-7],[-377,-19]],[[90116,26142],[-52,-1],[-128,1],[-34,1],[-34,0],[-33,0],[-90,-1],[-29,0],[-87,0],[-33,0],[-58,-1],[-78,0],[-30,0],[-52,0],[-42,0],[-77,1],[-110,0],[-58,0],[-168,1],[-141,0],[-68,0],[-32,0],[-78,1],[-44,-2],[-61,1],[-52,0],[-112,2],[-120,-3],[-260,1],[-112,-1],[-269,-2],[-33,0],[-20,-1],[-2,0],[6,-5],[21,-18],[-7,0],[-25,1],[-91,-2],[-90,0],[-97,0],[-49,-1],[-44,0],[-81,0],[-40,0],[-292,-1],[-44,0],[-438,-4],[-81,1],[-283,0],[-119,-1],[-65,2],[-193,-4],[-132,2],[-167,-4],[-29,2],[-308,0],[-45,0],[-127,1],[-55,-1],[-457,-2],[-229,-3],[-167,1],[-209,-1],[-195,4],[-76,1],[-178,-1],[-269,0],[-196,0],[-89,0],[-302,-5],[-5,0],[-146,0],[-170,-1],[-36,0],[-184,-1],[-71,-5],[-127,1],[-172,0],[-32,0],[-110,0],[-58,0],[-123,-2],[-106,0],[-187,5],[-114,1],[-43,0],[-272,-4],[-52,-1],[-250,3],[-408,7],[-32,0],[-259,-2],[-232,-5]],[[79088,26097],[-118,-1],[-363,-1],[-100,0],[-124,1],[-232,3],[-134,0],[-418,-1],[-241,-1],[-10,0],[-446,-2],[-56,-1],[-76,0],[-61,0],[-115,-2],[-47,-1],[-245,1],[-75,0]],[[76227,26092],[0,52],[0,149],[1,310],[-1,148],[1,66],[0,107],[2,156],[3,188],[1,55],[6,153],[2,61],[1,307],[-2,243],[-1,106],[0,38],[0,3],[2,452],[-1,151],[0,262],[0,38],[0,102],[0,43],[0,55],[7,366],[0,26],[3,136],[-1,45],[-2,71],[-7,89],[1,63],[0,49],[-1,162],[0,40],[3,57],[0,48],[0,27],[1,29],[-5,52],[0,45],[0,213],[-1,78],[0,138],[0,114],[0,24],[0,80],[0,39],[0,32],[-2,169],[-1,149],[-1,69],[0,22],[-2,185],[0,57],[-2,132],[1,21],[1,49],[-2,96],[3,83],[1,89],[2,182],[-2,91],[-2,69],[1,60],[1,171],[1,31],[2,59],[-3,37],[-1,142],[1,46],[2,57],[0,32],[0,29],[0,39],[0,125],[-2,104],[-1,36],[-1,62],[-2,304],[-1,50]],[[89447,35644],[1,-19],[2,-48],[1,-19],[0,-2],[1,-24],[2,-74],[1,-25],[1,-31],[5,-95],[2,-32],[0,-1],[1,-22],[5,-73],[4,-43],[5,-61],[3,-30],[3,-31],[2,-26],[6,-65],[2,-32],[7,-96],[5,-40],[2,-22],[0,-3],[3,-70],[11,-202],[1,-28],[3,-39],[2,-37],[7,-109],[3,-37],[2,-34],[3,-54],[2,-22],[1,-25],[5,-58],[1,-23],[0,-32],[1,-34],[2,-26],[2,-50],[2,-43],[5,-79],[1,-26],[2,-47],[8,-141],[1,-28],[2,-30],[3,-39],[1,-21],[1,-34],[3,-36],[1,-8],[1,-17],[3,-45],[4,-58],[10,-130],[3,-43],[3,-45],[9,-135],[3,-45],[2,-28],[8,-84],[2,-25],[5,-88],[18,-257],[7,-86],[2,-34],[8,-102],[0,-11],[1,-23],[0,-22],[1,-65],[0,-21],[0,-24],[1,-32],[1,-89],[0,-29],[2,-41],[10,-120],[4,-41],[9,-110],[6,-74],[11,-123],[19,-226],[5,-58],[15,-176],[12,-149],[5,-58],[5,-58],[15,-206],[3,-43],[8,-102],[17,-143],[0,-3],[2,-3],[6,-46],[0,-2],[11,-125],[39,-539],[12,-176],[21,-284],[7,-101],[24,-329],[6,-87],[20,-242],[2,-24],[12,-157],[5,-61],[6,-71],[7,-93],[1,-15],[5,-112],[4,-106],[14,-140],[27,-246],[4,-105],[3,-75],[10,-249],[-2,-29],[13,-145],[7,-81],[8,-82],[17,-182]],[[25810,31591],[-3,-162],[-2,-233],[-2,-180],[0,-24],[0,-93],[-2,-78],[-2,-183],[0,-45],[-1,-105],[-1,-91],[-1,-40],[-1,-198],[-2,-89],[2,-252],[1,-27],[0,-13]],[[25796,29778],[-55,0],[-275,-5],[-29,15],[-297,-3],[-193,-1],[-40,-1],[-281,-3],[-84,-1],[-168,-2],[-28,-1],[-151,-2],[-255,-2],[-58,0],[-308,-2],[-5,0],[-679,-2],[-93,0],[-540,7],[-51,-2],[-283,-10],[-47,1],[-63,0],[-110,1],[-218,1],[-175,0],[-188,1],[-85,0],[-144,0],[-25,0],[-545,1],[-230,-1],[-138,-2],[-296,-2],[-8,0],[-488,-3],[-72,1],[-113,1],[-234,3],[-39,0],[-53,0],[-243,0],[-169,4],[-224,-1],[-226,0],[-118,0],[-474,-1],[-160,0],[-5,0],[-234,0],[-51,0],[-1,0],[-115,0],[-31,0],[-1205,-5],[-67,0],[-54,-1],[-172,0],[-209,-1],[-67,-1],[-173,0],[-68,0],[-201,-1],[-138,-1],[-130,0],[-31,-1]],[[14086,29756],[2,112],[-2,202],[1,110],[-308,-1],[-31,0],[-100,-1],[-377,-8],[-468,-7],[-86,-1],[-71,-1],[-305,-4],[-61,-1],[-1,0],[-105,0],[-315,-3],[-5,4],[-51,36],[-9,6],[-48,38],[-27,11],[-9,2],[-13,4],[-12,3],[-1,1],[-9,9],[-14,13],[-4,3],[-18,30],[-10,7],[-105,62],[-12,3],[-8,1],[-30,7],[-2,0],[-2,1],[-28,13],[-1,0],[0,1],[-4,6],[-5,27],[-1,1],[-27,2],[-129,9],[-53,3],[-36,12],[-2,1],[-30,5],[-3,0],[-22,1],[-17,1],[-14,-2],[-15,-5],[-10,-2],[-42,5],[-8,3],[-24,18],[-3,3],[0,4],[-1,0],[-4,1],[-1,6],[-74,21],[-35,9],[-10,-1],[-15,-10],[-8,0],[-4,3],[-6,5],[-29,36],[-1,0],[0,1],[-5,22],[12,20],[4,8],[35,23],[25,12],[8,0],[56,47],[5,35],[-2,10],[1,0],[-1,1],[-14,40],[0,1],[-1,0],[-32,72],[-1,1],[-14,16],[-1,1],[-43,20],[-12,6],[-37,-5],[-53,-7],[-2,-1],[-17,-2],[-265,41],[-7,2],[-27,22],[-4,5],[0,3],[-1,1],[-5,5],[-68,39],[-16,5],[-105,-2],[-24,0],[-3,-1],[-19,-2],[-5,-1],[-17,5],[-62,18],[-6,6],[-26,15],[-1,0],[-14,8],[-35,4],[-9,-2],[-5,-3],[-18,-11],[11,28],[32,13],[-8,9],[37,34],[6,5],[6,37],[0,4],[-3,1],[-44,-3],[-8,5],[-33,36],[-1,0],[-3,5],[0,9],[24,14],[25,15],[54,32],[16,9],[64,40],[13,8],[16,9],[-7,49],[0,2],[35,30],[1,1],[-38,21],[-12,7],[-9,5],[-6,15],[-11,31],[-1,4],[-103,78],[-3,4],[-10,10],[-7,8],[-5,20],[1,11],[19,52],[6,9],[19,25],[3,4],[15,31],[0,6],[-81,90],[-23,23],[0,1],[-1,0],[-1,1],[-14,14],[-13,8],[-16,4],[-16,0],[-12,-3],[-13,-6],[-3,-3],[-94,-10],[-20,15],[-42,99],[-113,300],[-93,243],[-22,58],[0,1],[-16,39]],[[9475,32655],[128,-10],[138,-11],[148,-30],[142,-28],[219,-7],[31,-1],[126,-8],[83,-4],[36,-1],[81,6],[49,10],[305,148],[147,144],[8,7],[-10,47],[-32,30],[-27,37],[-15,19],[-1,0],[-253,89],[-396,25],[-374,-93],[-596,-87],[-399,-62],[-605,-48],[-151,29],[-104,21],[25,344],[8,114],[26,64],[279,681],[73,179],[69,168],[73,180],[220,166],[331,68],[351,16],[113,5],[58,12],[31,6],[170,34],[166,37],[28,-14],[16,-60],[18,-65],[13,-27],[57,-116],[0,-64],[-1,-51],[-2,-262],[175,-268],[27,-13],[183,-84],[183,-40],[301,35],[185,110],[149,151],[28,202],[-162,93],[-422,283],[-34,22],[-25,108],[-9,35],[91,108],[11,13],[294,61],[185,38]],[[76227,26092],[-454,2],[-67,1],[-68,0],[-32,0],[-35,0],[-63,-1],[-61,0],[-29,0],[-29,0],[-87,0],[-37,-1],[-85,4],[-75,-4],[-84,0],[-32,1],[-108,2],[-245,0],[-69,-2],[-306,1],[-216,1],[-123,0],[-66,0],[-335,1],[-155,1],[-108,0],[-73,-1],[-56,0],[-110,0],[-75,1],[-83,0],[-154,0],[-47,0],[-98,0],[-213,1],[-103,0],[-393,1],[-57,1],[-303,0],[-232,1],[-139,0],[-162,1],[-76,0],[-258,1],[-95,1]],[[70531,26105],[-144,0],[-257,1],[-237,0],[-119,-1],[-599,-3],[-169,0],[-249,0],[-157,0],[-440,0],[-34,0],[-343,-2],[-175,1],[-398,-1],[-150,0],[-44,0],[-262,-1],[-25,0],[-50,0],[-28,0],[-367,7],[-56,1],[-54,1],[-26,0],[-199,-1],[-90,-2],[-179,0],[-33,-1],[-122,-2],[-102,1],[-286,3],[-67,1],[-223,6],[-190,-1],[-173,-1],[-59,0],[-52,-1],[-102,0],[-62,0],[-115,-6],[-154,0],[-294,0],[-21,0],[-116,0],[-93,0]],[[63416,26104],[-2,121],[0,72],[-1,27],[0,31],[0,46],[-1,41],[0,83],[-1,48],[0,24],[-1,122],[0,69],[1,52],[0,70],[0,43],[0,37],[1,102],[1,93],[0,26],[-1,173],[-4,96],[-1,88],[0,53],[-1,153],[-1,154],[-6,183],[-4,107],[0,23],[-1,52],[0,37],[0,118],[-1,86],[0,39],[0,23],[-1,39],[0,28],[-1,107],[-1,26],[0,38],[-1,45],[0,32],[0,98],[0,42],[0,69],[-1,84],[0,92],[0,150],[-1,137],[0,38],[0,63],[0,22],[0,30],[-1,80],[0,140],[0,84],[-1,30],[0,125],[-1,75],[0,65],[1,76],[0,65],[-2,165],[-1,249],[-1,116],[0,33],[-2,195],[-1,90],[-1,13],[-1,154],[0,14],[-1,74],[0,1],[0,31],[-1,134],[0,54],[0,5],[0,31],[0,68],[1,38],[0,90],[0,83],[1,127],[-1,59],[0,82],[-5,281],[-2,57],[-1,35],[0,104],[-3,113],[-2,85],[-1,64],[1,75],[-4,124],[0,70],[-3,42],[3,67],[0,133]],[[63416,26104],[-125,0],[-9,0],[-475,0],[-240,0],[-33,0],[-50,0],[-64,0],[-280,0],[-199,0]],[[61941,26104],[-88,0],[-327,0],[-57,0],[-268,0],[-153,0],[-154,0],[-244,1],[-71,-2],[-31,0],[-57,0],[-175,-2],[-39,0],[-92,0],[-114,0],[-40,0],[-292,0],[-188,2],[-102,-2],[-61,1],[-63,0],[-146,-2],[-64,3],[-143,-1],[-164,0],[-464,-3],[-30,0],[-46,0],[-128,-2]],[[58140,26097],[2,44],[2,42],[2,75],[0,55],[0,42],[-1,145],[-1,63],[0,62],[0,22],[-1,29],[-1,75],[0,27],[0,35],[-3,163],[1,32],[2,104],[0,22],[0,30],[0,26],[0,46],[1,59],[0,62],[-1,119],[-5,34],[10,29],[-8,172],[-1,25],[0,16],[-39,9],[-9,24],[-23,21],[-38,14],[-13,-24],[-39,-9],[-31,-12],[-17,-26],[-24,-17],[-27,18],[24,12],[-17,31],[-31,8],[-5,8],[-7,12],[13,17],[5,7],[10,28],[-2,26],[4,29],[-4,29],[7,28],[-9,24],[-25,9],[-5,3],[-18,13],[-32,0],[-6,31],[-39,16],[20,32],[-39,5],[-17,24],[44,10],[19,23],[8,28],[-39,3],[-20,28],[-20,27],[-16,19],[-36,4],[-10,1],[-8,6],[-14,11],[-30,1],[-33,-20],[-37,-4],[-47,10],[-26,10],[-31,18],[-50,1],[-21,25],[-24,13],[-12,22],[-19,17],[-12,32],[-43,3],[-5,22],[-19,14],[-4,2],[-12,20],[-2,4],[7,23],[-38,1],[-48,-1],[-13,25],[-29,2],[-49,5],[-80,27],[-35,21],[-23,15],[-3,28],[-27,13],[-31,8],[-33,12],[-30,4],[-23,20],[-32,6],[-43,7],[-47,-2],[-36,-7],[-36,2],[-31,9],[-49,1],[-50,-11],[-34,3],[-13,6],[-19,8],[-4,24],[-54,9],[-41,0],[-38,0],[-39,-1],[-46,14],[-28,2],[-36,4],[-32,15],[-39,5],[-34,16],[-30,8],[-17,4],[-44,16],[-26,1],[-7,1],[-29,-18],[-60,-6],[-33,8],[-32,25],[-8,10],[-12,15],[-52,24],[-28,-4],[-15,3],[-33,5],[-2,0],[-1,3],[-12,32],[-37,7],[-12,2],[-31,11],[-16,18],[-43,7],[-28,19],[-23,37],[-33,7],[-32,9],[-34,2],[-55,-12],[-13,4],[-24,7],[-39,4],[-31,4],[-4,1],[-39,16],[-38,6],[-7,28],[-41,-2],[-15,21],[0,26],[-32,17],[-26,22],[-49,15],[-6,1],[-16,15],[-5,5],[-1,1],[-12,3],[-18,4],[-25,11],[-27,6],[-24,-12],[-32,4],[-32,9],[5,22],[2,7],[-25,10],[-28,-2],[-48,6],[-35,20],[-17,26],[-15,21],[-11,37],[-44,10],[-19,8],[-10,4],[-23,25],[-27,13],[-36,14],[-17,25],[-11,40],[-40,31],[-36,12],[-16,22],[-19,8],[-9,5],[-11,20],[5,11],[4,10],[-12,21],[-8,5],[-15,8],[-36,13],[-25,16],[-26,16],[-12,7],[-22,16],[-9,0],[-23,-1],[-264,-13],[-60,-1],[-52,3],[-41,0],[-35,0],[-29,0],[-1,0],[-34,0],[-29,0],[-1,21],[-1,28],[-3,29],[2,156],[-1,86],[1,46],[4,167],[0,64],[0,58],[0,20],[0,2],[0,42],[1,15],[0,15],[0,196],[1,206],[0,102],[1,258],[1,37],[0,55],[1,56],[1,88],[2,99],[0,83],[0,32],[1,45],[1,114],[2,56],[-1,24],[-1,124],[0,33],[0,61],[0,42],[2,126],[0,46],[2,113],[0,123],[-5,45],[0,39],[2,240],[1,62],[1,124],[0,43]],[[58140,26097],[-65,2],[-41,1],[-216,1],[-98,-1],[-63,0],[-181,1],[-247,2],[-95,5],[-68,-8],[-96,0],[-198,0],[-5,0],[-69,1],[-41,-1],[-30,0],[-46,1],[-32,-2],[-44,1],[-32,0],[-176,0],[-51,-1]],[[56246,26099],[-37,0],[-70,0],[-59,0],[-38,0],[-39,0],[-197,1],[-31,0],[-406,0],[-155,0],[-120,-1],[-76,0],[-56,-1],[-64,0],[-245,0],[-64,0],[-180,0],[-560,1],[-95,0],[-69,0],[-54,0],[-31,0],[-45,0],[-29,-2],[-33,1],[-29,3],[-212,1],[-122,1],[-122,0],[-164,-1],[-47,-1],[-13,0],[-138,-1],[-32,2],[-70,1],[-58,0],[-41,1],[-32,0],[-303,1],[-238,0],[-180,0],[-226,-7],[0,-29],[1,-31],[-3,-90],[10,-105],[4,-31],[5,-38],[-2,-33],[0,-22],[3,-74],[0,-22],[1,-44],[2,-44],[0,-29],[1,-25],[-2,-50],[4,-175],[1,-65],[-283,0],[-137,0],[-195,0],[-107,2],[-206,2],[-72,1],[-114,1],[-73,0],[-50,1],[-217,-1],[-131,2],[-321,3],[-128,-3],[-166,-1],[-34,2],[-145,-1],[-97,-1],[-100,-1],[-61,1],[-66,0],[-32,1],[-54,-4],[-31,1],[-33,0],[-30,1],[-30,0],[-45,0],[-45,0],[-49,2],[-165,0],[-345,1],[-178,0],[-72,1]],[[47679,25201],[0,30],[1,46],[0,165],[-1,25],[-1,90],[1,522],[0,166],[-1,204],[0,38],[0,170],[0,41],[-2,126],[-2,20],[3,27],[0,145],[0,88],[0,47],[1,185],[-4,140],[0,42],[0,56],[1,151],[0,94],[0,119],[-72,1],[-405,0],[-2,164],[-4,137],[2,101],[3,83],[2,111],[5,217],[3,145],[5,218],[1,65],[4,183],[0,9],[1,26],[1,51],[1,50],[0,225],[1,80],[2,160],[1,23],[1,22],[-2,37],[4,30],[0,48],[-1,30],[1,31],[0,32],[0,68],[1,145],[0,58],[-1,38],[0,26],[1,136],[1,208],[-1,30],[1,39],[1,32],[-1,98],[-2,31],[1,42],[1,35],[0,12],[1,25],[3,139],[-1,136],[-2,89],[4,99],[3,164],[-1,29],[-2,81],[-3,98],[-1,84],[-1,45],[-1,50],[2,23],[0,2],[3,58],[-1,63],[0,24],[2,33],[1,28],[0,29],[1,49],[0,44],[-1,18],[-1,13],[3,21],[1,22],[0,24],[-6,29],[-5,21],[-1,4],[2,23],[7,84],[4,35]],[[47679,25201],[-207,0],[19,14],[31,21],[12,13],[7,6],[1,33],[-41,21],[-3,2],[-4,-1],[-49,-11],[-31,-19],[-26,-18],[-24,-10],[-7,-3],[-40,-10],[-41,3],[-22,12],[-17,10],[-2,1],[-33,21],[-624,-1],[-21,0],[-32,4],[-3,1],[-188,-1],[-336,-1],[-66,0],[-52,0],[-124,0],[-33,0],[-57,0],[-42,0],[-196,0],[-34,-1],[-8,0],[0,-2],[2,-280],[1,-85],[-4,-53],[2,-77],[1,-97],[0,-50],[-1,-68],[0,-39],[2,-223],[7,-65],[-4,-22],[-7,-22],[5,-22],[-2,-23],[-2,-24],[1,-25],[1,-21],[15,-18]],[[45403,24071],[-31,-1],[-70,1],[-37,0],[-36,-1],[-38,-1],[-35,-2],[-3,-72],[-121,0],[3,-73],[-32,0],[-183,-1],[-240,-3],[-48,1],[-205,1],[-120,2],[0,6],[1,30],[1,30],[1,28],[-4,54],[-241,-1],[0,105],[-2,21],[-7,26],[-26,1],[-8,-2],[-8,0],[-29,0],[-53,2],[-32,1],[-45,2],[-64,1],[-39,1],[-29,-2],[-74,1],[-79,-1],[0,154],[-252,-2],[-47,0],[-37,0],[-29,0],[-34,0],[-45,-1],[-18,0],[-12,0],[-238,-1],[-405,0],[-136,-1],[-175,0],[-234,-1],[-470,0],[-108,-1],[-102,-1],[-29,1],[-213,-1],[-144,-1],[-111,0],[-128,0],[-71,-1],[-181,0],[-91,3],[-90,0],[-36,-1],[-52,-1],[-65,0],[-65,-1],[-105,0],[-48,-1],[-14,-1],[-17,-1]],[[39668,24366],[0,51],[0,6],[-1,175],[1,44],[-1,96],[0,104],[0,47],[-2,148],[-2,127],[-1,45],[-4,329],[0,40],[-4,263],[-1,205],[6,233],[1,65],[-6,24],[-2,343],[-1,78],[0,23],[0,125],[-1,285],[0,121],[0,49],[0,83],[2,188],[-1,126],[0,76],[-2,273],[0,87],[-2,205],[1,44],[1,24],[1,28],[0,25],[0,31],[0,22],[-1,196],[-1,48],[0,65],[0,5],[-1,83],[0,90],[0,124],[-4,268],[-1,235],[1,45],[0,96],[1,211],[-2,196],[-1,181],[0,48],[0,5],[-1,76],[-1,103],[-3,380],[-1,279],[-1,73],[0,73],[-1,198],[0,3],[0,115],[-1,155],[0,31]],[[14086,29756],[-2,-115],[-9,-516],[-1,-14],[-15,-138],[-3,-216],[-5,-269],[-1,-45],[0,-10],[-1,-47],[-1,-38],[0,-25],[0,-73],[0,-149],[0,-40],[0,-111],[0,-173],[0,-31],[0,-270],[-2,-135],[-2,-145],[-3,-185],[0,-81],[0,-67],[-2,-85],[-4,-98],[-6,-214],[-1,-49],[-4,-67],[-1,-168],[-1,-33],[-1,-42],[-4,-192],[-6,-80],[-1,-203],[-1,-60],[-3,-175],[1,-26],[-2,-103],[0,-26],[-2,-87],[0,-26],[-1,-70],[-1,-25],[-1,-71],[-1,-80],[4,-135],[-1,-25],[-2,-22],[0,-6],[-9,-94],[-3,-37],[-5,-59],[-15,-185],[-2,-18],[-1,-10]],[[13965,24292],[-88,7],[-85,-13],[-92,49],[-35,18],[-192,-12],[-24,-8],[-92,-33],[-29,-4],[-33,1],[-54,9],[-30,14],[-34,15],[-18,12],[-33,23],[-66,59],[-4,3],[-44,25],[-62,2],[-19,-1],[-11,-1],[-3,0],[-45,-8],[-33,-17],[-14,-2],[-22,-3],[-1,0],[-59,0],[-78,11],[-19,3],[-71,12],[-33,8],[-20,14],[-36,23],[-27,22],[1,29],[26,35],[24,23],[-14,22],[-38,28],[-15,15],[-14,27],[-45,7],[-19,-5],[-2,-1],[-118,40],[-115,12],[-91,13],[-32,9],[-99,11],[-128,9],[-45,0],[-26,0],[-42,-1],[-72,-19],[-30,-17],[-27,-30],[-2,-19],[-18,-20],[-70,-43],[-77,-21],[-169,-27],[-3,-3],[-1,-2],[-15,-21],[-25,11],[-10,8],[-4,0],[-69,-30],[-46,2],[-27,27],[-2,18],[-11,16],[-8,5],[6,20],[36,7],[35,0],[6,37],[-17,31],[-14,39],[-29,4],[-56,-22],[-29,-7],[-69,14],[-30,-1],[-53,-18],[-35,8],[-9,22],[-23,13],[-29,-3],[-14,-27],[4,-24],[15,-24],[7,-20],[-8,-5],[-3,0],[-46,-3],[-80,-19],[-65,-32],[-22,-17],[-37,-49],[-15,-26],[-4,-24],[-3,-15],[-9,-10],[-30,-14],[-38,-5],[-75,5],[-39,28],[-69,78],[-9,7],[-26,20],[-88,32],[-21,8],[-15,0],[-51,2],[-72,-16],[-210,-124],[-13,-10],[-4,-20],[-2,-9],[-27,-17],[-42,-9],[-236,-40],[-54,6],[-32,4],[-34,-9],[-13,-5],[-106,-44],[-23,-9],[-61,-38],[-71,-60],[-2,-5],[-3,-8],[-1,-5],[-28,-44],[-52,-30],[-133,-48],[-119,-28],[-59,-16],[-100,0],[-48,-12],[-3,12],[113,87],[3,4],[1,1],[-1,45],[-7,14],[-9,12],[-17,7],[-36,7],[-4,0],[-23,0],[-12,-2],[-36,-15],[-48,-20],[-45,-14],[-25,15],[-36,16],[-33,-1],[-24,-27],[-3,-40],[8,-69],[-38,-4],[-19,-3],[-16,-2],[-38,-10],[-37,-11],[-62,3],[-27,7],[-45,18],[-31,12],[-38,7],[-41,-15],[-18,-25],[-22,-17],[-42,-1],[-20,26],[-40,-3],[-20,-26],[13,-44],[-26,-14],[-37,3],[-37,-7],[-23,-17],[32,-17],[-11,-28],[8,-32],[-42,-1],[-27,-7],[-32,-21],[-30,4],[-2,42],[-10,29],[-48,-11],[-19,-33],[-24,-16],[-26,-11],[-28,-29],[-25,-13],[-29,8],[-39,20],[-70,-11],[-40,2],[-24,-19],[-36,-9],[-23,28],[-44,2],[-35,-4],[-48,-6],[-29,-27],[-15,-30],[-21,-15],[-90,-24],[-81,-17],[-46,-38],[-30,-7],[-10,-14],[-1,-1],[-2,-3],[-5,-1],[-29,-3],[-46,-7],[-32,-2],[-72,-6],[-39,-1],[-63,-2],[-1,2],[-12,23],[-46,36],[-75,13],[-70,12],[-49,18],[-44,1],[-426,3],[-35,0],[-172,1],[-29,0],[-6,-241],[0,-16],[0,-15],[0,-13],[-2,-89],[3,-36],[1,-11],[1,-2],[-14,-32],[-6,-16],[-6,-15],[-25,-20],[-27,-22],[-14,-26],[0,-23],[20,-35],[-5,-25],[-15,-22],[11,-21],[-1,-3],[-10,-19],[-28,3],[-9,2],[-37,8],[-7,1],[-34,-3],[-24,-12],[0,-1],[-29,-30],[-24,-32],[-2,0],[-48,-15],[-56,10],[-36,16],[-21,4],[-22,4],[-65,1],[-50,12],[-99,17],[-37,-4],[-50,-22],[-5,-28],[13,-55],[-13,-24],[-31,-48],[16,-23],[35,-29],[36,-3],[23,-17],[26,-11],[42,-34],[16,-22],[10,-51],[14,-21],[34,-11],[37,-8],[42,6],[30,2],[49,-9],[25,-20],[21,-24],[38,-44],[58,-14],[-1,-25],[-13,-23],[11,-26],[-29,-60],[-27,-34],[-10,-24],[24,-16],[31,-24],[-5,-29],[-37,-14],[24,-18],[28,-3],[-1,-21],[-43,-3],[-32,-6],[0,-25],[36,-32],[22,-32],[-8,-27],[-37,-7],[-81,-2],[-24,-15],[9,-21],[22,-24],[-10,-27],[-28,-10],[-40,4],[-59,31],[-33,-8],[-1,-27],[15,-22],[2,-33],[-10,-23],[19,-16],[38,-7],[-13,-20],[-50,-29],[-33,-7],[-37,29],[-53,-15],[-49,-32],[-39,-8],[-59,8],[-52,15],[-40,-3],[-52,-2],[-46,5],[-37,6],[-31,-9],[-43,-36],[-6,-22],[5,-28],[-23,-30],[-111,-44],[-44,-22],[-66,-18],[-35,-14],[-37,-8],[-59,9],[-42,-6],[-34,-9],[-34,5],[-38,-9],[-19,-3],[-20,-2],[-32,7],[10,81],[7,50],[9,64],[-5,53],[-28,73],[-40,43],[-62,45],[-103,49],[-91,29],[-85,15],[-95,4],[-148,-13],[-126,-33],[-98,-30],[-40,-22],[-53,-32],[-53,-25],[-46,-25],[-75,-42],[-70,-31],[-46,-26],[-42,-27],[-28,-21],[0,-1],[-9,-28],[-9,-30],[-24,-20],[-7,-20],[-9,-44],[-52,-19],[-23,-16],[-53,-43],[-77,-110],[-23,-53],[5,-29],[32,-25],[49,-31],[3,-29],[-20,-55],[-27,-33],[-21,-44],[-5,-11],[-90,-30]],[[1840,21065],[-72,119],[-141,148],[-298,195],[-492,262],[-47,15],[-460,148],[-249,182],[-81,156],[25,115],[117,113],[188,90],[155,45],[458,3],[70,-8],[651,-76],[224,-25],[373,-27],[289,7],[154,18],[313,41],[432,102],[384,123],[83,60],[190,279],[25,442],[1,2],[-7,17],[-6,17],[-20,20],[-39,27],[-4,3],[-55,27],[-4,3],[-3,2],[-4,2],[-4,1],[-9,3],[-55,38],[-54,31],[-20,11],[-71,41],[-80,36],[-7,4],[-39,20],[-32,16],[-48,24],[-49,20],[-65,27],[-52,46],[-4,28],[-5,40],[-3,3],[-2,-1],[-413,204],[-47,360],[17,219],[112,146],[-232,81],[-232,-60],[-122,-79],[-52,-34],[-89,152],[-84,142],[-58,83],[-22,31],[-3,12],[-13,42],[-10,34],[7,73],[64,114],[80,104],[93,88],[100,46],[47,22],[37,17],[157,60],[106,45],[15,16],[33,33],[125,31],[90,-2],[93,-26],[93,-109],[15,-33],[9,-21],[5,-10],[-16,-52],[-35,-45],[-22,-52],[83,-209],[94,-265],[83,-139],[94,-111],[313,-226],[315,-110],[526,-1],[195,0],[21,-6],[33,33],[89,64],[65,46],[5,5],[45,46],[4,4],[27,26],[28,46],[2,79],[-33,113],[-58,106],[-63,52],[-42,51],[-17,39],[-6,40],[-67,46],[-100,48],[-97,44],[-63,44],[-23,29],[-36,67],[-2,39],[-122,85],[-40,17],[-293,207],[-104,100],[-79,112],[-70,130],[-11,29],[-5,7],[-2,13],[-9,25],[-19,81],[-34,158],[-4,58],[-4,167],[4,61],[4,43],[-15,51],[-1,13],[7,97],[7,95],[25,109],[20,41],[3,45],[2,23],[15,46],[7,22],[-28,140],[-118,31],[-17,21],[-61,77],[9,95],[165,157],[152,60],[668,25],[23,-6],[210,-61],[6,-1],[437,116],[40,4],[62,22],[130,30],[157,39],[112,39],[153,53],[65,26],[287,162],[147,73],[88,37],[33,15],[104,59],[62,35],[24,24],[16,16],[42,51],[33,46],[54,116],[37,104],[19,151],[-109,72],[-5,2],[-338,83],[-450,-37],[-63,-16],[-533,-137],[-537,-42],[-135,0],[-107,13],[-185,60],[-132,52],[-176,86],[-217,188],[-130,111],[-33,27],[-37,93],[41,267],[107,123],[344,193],[158,20],[303,-254],[343,-182],[207,-50],[79,-19],[658,-157],[397,-38],[176,32],[201,77],[58,22],[149,43],[45,13],[76,102],[76,323],[-66,604],[-49,446],[73,396],[485,473],[24,22],[235,216],[35,32],[2,0],[79,11],[45,27],[1,1],[85,11],[44,-15],[5,-1],[75,9],[261,34],[104,-1],[319,-1],[99,-1],[341,-1]],[[39668,24366],[-174,0],[-290,0]],[[39204,24366],[-224,0],[-236,0],[-436,0],[-3,0],[-37,0],[-296,0],[-37,0],[-390,0],[-157,0],[-496,-3],[-72,0],[-45,0],[-179,-1],[-97,0],[-81,-1],[-80,0],[-58,0],[-197,-1],[-103,1],[-318,-3],[-334,-1],[-293,0],[-180,-1],[-101,-1],[-170,0],[-87,-1],[-250,-1],[-164,-1],[-101,-1],[-37,0],[-172,-1],[-31,0],[-25,0],[-98,0],[-64,0],[-229,-3],[-1,0],[-46,0],[-31,0],[-74,-1],[-63,4],[-48,0],[-44,0],[-29,0],[-449,1],[-76,0],[-174,-1],[-126,0],[-96,0],[-174,0],[-184,0],[-168,0],[-189,1],[-241,1]],[[31113,24352],[-9,0],[-75,-2],[-158,0],[-292,0],[-75,0],[-198,0],[-368,0],[-250,-3],[-1,0],[-84,-1],[-105,0],[-261,1],[-38,0],[-248,-1],[-191,1],[-41,-3]],[[28719,24344],[-1,253],[2,44],[1,50],[4,83],[15,101],[-1,38],[0,80],[0,120],[-3,119],[-3,155],[-1,60],[-1,41],[-1,45],[1,26],[-1,103],[0,55],[-1,95],[0,45],[-2,108],[0,31],[-1,56],[-1,41],[-1,67],[0,57],[1,105],[2,259],[0,64],[0,1],[-1,173],[-2,254],[-1,241],[-1,148],[1,27],[-1,249],[0,21],[-1,221],[0,9],[0,20],[0,57],[0,6],[-1,156],[0,109],[4,218],[1,93],[1,115],[-2,106],[-1,29],[-1,190],[0,30],[0,134],[0,137],[0,9],[1,386],[-245,0],[-537,0],[-366,0],[-97,0],[-56,0],[-796,-3],[-85,-1],[-270,-1],[-164,0],[-12,0],[-59,0],[-173,0],[-67,-1]],[[28719,24344],[-108,0],[-352,4],[-161,-1],[-84,0],[-145,0],[-352,-1],[-63,-1],[-83,2],[-56,1],[-254,1],[-55,1],[-396,3],[-189,1],[-104,0],[-46,0],[-34,0],[-140,0],[-301,0],[-204,0],[-155,0],[-151,0],[-48,-1],[-137,0],[-149,-1],[-390,-1],[-149,0],[-69,0],[-46,-1],[-729,-2],[-297,-1],[-338,-1],[-407,-1],[-4,0],[-302,-1],[-56,-1],[-242,0],[-122,-1],[-243,0],[-43,0],[-649,-3],[-145,0],[-229,-1],[-49,0],[-217,0],[-62,-1],[-235,0],[-98,-1],[-87,0],[-651,-2],[-192,-1],[-37,-7],[-8,-2],[-1,0],[-13,-6],[-16,-8],[-5,-2],[-3,-3],[-17,-17],[-11,-16],[-11,-14],[-13,-26],[3,-31],[0,-6],[3,-25],[2,-32],[0,-3],[-3,-26],[-3,-3],[-16,-16],[-5,-4],[-8,-8],[-42,-2],[-10,2],[-86,20],[-63,-3],[-104,-10],[-14,1],[-11,1],[-35,3],[-19,2],[-40,18],[-4,5],[-30,12],[-118,82],[-38,41],[-25,45],[-11,8],[-44,33],[-56,20],[-88,3],[-39,-20],[-17,-9],[-33,-46],[-13,-40],[-11,-8],[-20,-42],[-16,-40],[-22,-31],[-33,-24],[-49,-23],[-58,-14],[-54,-8],[-30,-2],[-33,-3],[-43,9],[-68,13],[-64,6],[-63,-6],[-46,-9],[-1,0],[-49,-19],[-5,-2],[-7,-3],[-23,-18],[-1,-1],[-28,-22],[-43,-22],[-98,-30],[-3,-1],[-16,1],[-62,4],[-21,2],[-33,2],[-60,25],[-33,18],[-41,25],[-10,14],[-6,9],[-119,67],[-7,3],[-54,20],[-37,-1],[-74,-40],[-14,-17],[1,-37],[16,-11],[41,-12],[31,-22],[53,-52],[-3,-6],[-5,-12],[-36,-17],[-30,4],[-47,2],[-45,-2],[-33,-5],[-68,-13],[-39,-3],[-32,-4],[-60,-7],[-33,0],[-37,0],[-41,-2],[-22,-14],[-38,-18],[-39,-17],[-8,-5],[-17,-13],[-45,-28],[-39,-20],[-40,-3]],[[15729,23759],[-56,15],[-29,15],[-2,6],[-14,-2],[-38,-3],[-169,44],[-1,1],[-11,3],[-58,-5],[-52,-4],[-106,-87],[-1,0],[-40,-1],[-57,4],[-48,15],[1,36],[-1,45],[-61,33],[-38,6],[-54,0],[-54,2],[-7,30],[-22,41],[-30,20],[-48,10],[-17,-2],[-21,31],[-67,17],[-63,2],[-18,8],[-17,18],[14,34],[-34,15],[-31,-20],[-29,8],[-38,30],[-40,17],[11,23],[47,15],[24,15],[-6,23],[-28,20],[-35,-1],[-41,-19],[-32,-3],[-17,6],[-10,3],[8,17],[6,13],[29,8],[25,20],[-23,29],[-39,-4],[-40,-16],[-8,-2],[-20,27],[-86,26],[-94,-4],[-78,-45]],[[90116,26142],[3,-55],[19,-247],[0,-22],[12,-174],[13,-192],[6,-110],[4,-60],[2,-38],[1,-5],[0,-10],[6,-92],[2,-33],[13,-179],[6,-42],[5,-104],[5,-57],[8,-87],[3,-28],[11,-124],[6,-72],[11,-131],[11,-135],[9,-113],[0,-9],[8,-92],[23,-289],[2,-27],[11,-145],[11,-136],[13,-161],[4,-49],[13,-160],[7,-82],[19,-225],[10,-132],[6,-56],[16,-128],[2,-51],[-7,-68],[2,-24],[15,-216],[1,-39],[3,-46],[3,-24],[3,-30],[14,-192],[16,-235],[2,-42],[11,-123],[13,-158],[9,-110],[4,-48],[11,-140],[9,-110],[0,-31],[-1,-25],[3,-28],[2,-22],[4,-60],[0,-32],[5,-60],[0,-7],[-1,-36],[0,-31],[2,-41],[6,-58],[1,-16],[17,-159],[2,-27],[8,-109],[10,-123],[2,-43],[6,-81],[1,-29],[3,-48],[10,-148],[10,-162],[1,-3],[8,-126],[18,-234],[0,-7],[0,-2],[2,-30],[3,-38],[0,-8],[7,-144],[4,-25],[2,-47],[2,-32],[2,-31],[8,-67],[8,-140],[2,-22],[6,-59],[14,-131],[4,-57],[14,-182],[7,-82],[5,-65],[18,-227],[7,-94],[1,-21],[0,-47],[22,-262],[1,-23],[9,-39]],[[90791,17064],[-96,-1],[-448,-2],[-36,0],[-242,-1],[-6,0],[-638,-3],[-375,-2],[-253,-1],[-52,2],[-100,-1],[-98,1],[-262,1],[-288,2],[-286,1],[-249,2],[-114,1],[-193,1],[-72,0],[-87,1],[-608,3],[-416,2],[-98,1],[-69,1],[-105,0],[-278,1],[-137,1],[-80,-10],[-79,1],[-349,2],[-32,0],[-85,0],[-131,1],[-121,1],[-87,0],[-189,0],[-415,0],[-170,0],[-99,0],[-40,0],[-418,-3],[-290,-2],[-31,1],[-13,-1],[-45,-1],[-385,-6],[-256,-4],[-205,-6],[-61,0],[-11,0],[-19,0],[-140,-1],[-3,0],[-327,0],[-57,0],[-38,0],[-238,0],[-95,0],[-2,0],[-133,0],[-134,0],[-154,0],[-230,-1],[-155,2],[-68,1],[-33,0],[-212,5],[-260,4]],[[79295,17057],[-141,7],[-44,2],[2,37],[-1,88],[-2,358],[0,170],[0,53],[0,59],[0,128],[0,100],[0,49],[1,125],[0,250],[0,81],[-1,133],[-2,180],[-5,49],[4,70],[2,30],[1,57],[-1,65],[0,159],[-1,220],[0,29],[-1,46],[0,2],[0,26],[-2,66],[-2,118],[-3,119],[0,46],[9,121],[0,5],[0,20],[0,37],[0,3],[0,72],[0,22],[0,30],[-1,253],[-1,55],[1,32],[2,75],[-3,113],[-6,187],[0,79],[8,43],[-3,227],[-1,44],[-1,253],[-1,157],[-1,87],[0,24],[-2,228],[0,27],[-1,84],[-1,33],[4,54],[2,114],[0,43],[-1,36],[0,50],[-1,37],[0,31],[0,32],[-2,170],[-2,106],[2,176],[0,51],[-1,74],[-3,39],[3,41],[-1,64],[-1,83],[-1,108],[0,42],[1,40],[0,149],[0,37],[0,25],[0,87],[1,108],[0,50],[0,172],[0,16],[0,143],[-3,229],[-1,24],[-1,108],[0,24],[-4,30],[-4,63],[0,24],[0,1],[5,74],[-3,213],[6,183],[-10,362],[-2,92],[0,24],[2,58],[1,41],[5,79]],[[70531,26105],[1,-109],[1,-73],[1,-259],[0,-76],[1,-83],[1,-219],[0,-40],[0,-71],[1,-187],[-5,-105],[-3,-94],[0,-100],[0,-53],[2,-118],[-2,-95],[0,-120],[1,-48],[3,-217],[0,-198],[1,-202],[5,-212],[0,-17],[0,-49],[-1,-108],[0,-2],[-3,-155],[2,-166],[3,-156],[0,-38],[-1,-33],[0,-54],[0,-92],[0,-78],[-4,-132],[1,-56],[0,-39],[-1,-36],[-1,-24],[7,-222],[3,-111],[0,-25],[1,-71],[0,-11],[0,-13],[1,-199],[0,-9],[0,-53],[1,-24],[0,-9],[0,-99],[1,-126],[0,-25],[1,-118],[1,-113],[0,-50],[0,-27],[1,-35],[-3,-290],[0,-29],[-1,-53],[0,-301],[0,-108],[0,-328],[0,-46],[3,-51],[-5,-275],[-3,-325],[-1,-118],[-1,-91],[-2,-301],[-1,-73],[-3,-200],[-1,-48],[-1,-99],[1,-454],[0,-274],[1,-42],[-3,-146],[-3,-90],[108,-1],[54,0],[64,-5],[0,-60],[0,-236],[0,-30],[0,-76],[0,-145],[0,-53],[1,-68],[0,-174],[1,-182],[-1,-91],[3,-229],[1,-119],[1,-212],[0,-80],[0,-6],[-1,-113]],[[70759,15229],[-435,0],[-224,0],[-143,0],[-48,0],[-4,0],[-73,0],[-26,0],[-129,1],[-44,0],[-107,0],[-202,0],[-223,0],[-49,0],[-46,0],[-96,0],[-142,1],[-81,-1],[-109,0],[-152,1],[-251,1],[-82,0],[-286,1],[-199,-1],[-131,0],[-149,0],[-173,0],[-164,0],[-245,-1],[-321,0],[-284,0],[-5,0],[-83,1],[-344,-1],[-517,-1],[-32,0],[-104,0]],[[65056,15230],[-1,31],[1,154],[0,229],[0,201],[-1,43],[0,2],[0,246],[0,143],[1,75],[1,163],[0,45],[1,77],[0,90],[0,62],[1,113],[0,74],[1,131],[0,12],[-201,0],[-32,0],[0,8],[1,95],[0,90]],[[64828,17314],[0,141],[0,30],[0,46],[0,76],[0,44],[1,61],[0,30],[-1,85],[0,90],[0,123],[0,32],[-1,37],[-2,127],[0,32],[-1,159],[1,276],[-2,31],[1,28],[1,37],[0,23],[-1,26],[4,280],[0,19],[-1,5],[-1,96],[3,257],[0,137],[-4,54],[0,148],[0,83],[1,266],[4,361],[0,22],[1,76],[1,63],[0,14],[0,7],[1,49],[3,192],[1,180],[1,53],[1,95],[3,184],[6,253],[1,52],[6,277],[0,21],[0,3],[2,110],[0,96],[1,175],[0,224],[1,44],[0,7],[-1,34],[1,19],[0,5],[1,96],[0,32],[1,61],[0,62],[0,32],[0,41],[-1,22],[-2,28],[-1,23],[0,25],[0,22],[0,22],[-1,29],[-1,27],[0,27],[1,22],[-1,22],[-1,22],[0,25],[0,33],[0,24],[0,21],[-1,32],[0,26],[0,22],[0,29],[0,22],[0,23],[2,29],[1,32],[0,25],[0,22],[1,27],[0,25],[1,1],[-1,25],[1,24],[0,25],[3,38],[0,44],[0,31],[0,49],[0,184],[-3,30],[-43,0],[-35,0],[-43,-2],[-3,0],[-31,-1],[-36,2],[-54,0],[-117,1],[-373,-1],[-33,0],[-41,0],[-41,1],[-52,0],[-40,0],[-93,0],[-45,0],[-46,-1],[-46,0],[-47,-2],[-45,1],[-46,0],[-47,-1],[-45,0],[-35,0],[-485,-2],[-120,-1],[-50,0],[-168,0],[-397,-2],[-177,1],[-67,1],[2,129],[1,111],[-1,66],[-8,291],[-2,104],[2,84],[3,151],[-2,97],[0,24],[-1,42],[0,28],[-1,65],[1,91],[0,56],[-3,26],[-1,27],[-2,52],[-1,70],[0,13],[-2,113],[0,56],[-1,122]],[[64828,17314],[-54,0],[-160,0],[-65,0],[-195,0],[-53,0],[-66,0],[-51,-1],[-66,0],[-111,0],[-63,0],[-118,-1],[-191,-1],[-62,0],[-172,0],[-150,-2],[-88,0],[-167,-1],[-6,0],[-115,1],[-180,0],[-2,-99],[-1,-73],[0,-35],[-2,-56],[-3,-114],[-3,-43],[-1,-36],[0,-8],[-1,-21],[-2,-89],[-72,1],[-6,0],[-25,1],[-123,2],[-127,3],[-38,0],[-65,2],[-47,0],[-73,1],[-185,0],[-110,0],[-78,0],[-88,0],[-40,0],[-66,-1],[-30,0],[-47,0],[-70,0],[-3,0],[-132,0],[2,93],[1,102],[0,32],[1,99],[0,33],[-1,25],[-551,4],[-67,0],[-61,-2],[-37,0],[-1,143],[0,70],[1,45],[-55,0],[-148,0],[-308,0],[-103,0],[-278,1],[-136,0],[-52,0],[-83,0],[-197,0],[-62,1],[2,-131],[2,-120],[-35,0],[-476,6],[-171,0],[-251,1],[-387,1],[-47,0],[-269,1],[-166,0],[-29,0],[-98,1],[-36,0],[-94,2],[-80,0],[-147,0],[-383,0],[-204,0]],[[56251,17151],[0,134],[1,185],[1,48],[0,37],[0,94],[1,70],[0,104],[1,56],[0,99],[1,234],[1,46],[0,35],[0,107],[1,66],[-1,95],[0,176],[-1,66],[0,22],[-1,236],[-1,91],[0,32],[1,58],[0,111],[3,143],[1,14],[0,26],[0,24],[0,22],[0,23],[-1,26],[-3,21],[4,63],[0,34],[0,51],[0,47],[0,25],[0,23],[0,26],[0,37],[0,86],[0,51],[0,69],[-7,494],[1,223],[3,261],[1,360],[-2,153],[-1,63],[-1,55],[0,32],[-1,63],[4,96],[0,22],[-1,29],[0,24],[-1,25],[0,29],[0,44],[1,31],[-1,44],[1,35],[-2,35],[-1,67],[1,60],[0,43],[1,62],[0,60],[-2,52],[0,66],[0,141],[5,131],[-1,9],[-2,14],[-1,21],[-1,40],[1,23],[-1,141],[-1,82],[0,16],[0,67],[-1,108],[0,40],[0,22],[0,52],[0,37],[-2,189],[-1,99],[0,10],[0,25],[0,121],[-1,128],[2,22],[2,27],[1,35],[-1,43],[0,63],[1,26],[1,27],[1,26],[-2,23],[-1,26],[0,27],[1,10],[1,16],[2,21],[-5,23],[0,60],[1,155],[-2,56],[-1,27],[6,74],[-2,23],[2,23],[-3,89],[0,23],[-2,24],[-1,21],[1,36],[-1,33],[0,70],[0,33],[-6,125],[0,79],[2,125],[1,45],[0,137],[1,149],[1,69]],[[79295,17057],[-1,-240],[0,-405],[1,-143],[-1,-171],[0,-17],[0,-44],[-1,-57],[0,-72],[-1,-64],[1,-54],[0,-70],[1,-137],[-1,-175],[-2,-73],[-1,-53],[1,-43],[-223,-2],[-531,-3],[-102,-1],[-257,-1],[-27,15],[-105,1],[-90,0],[-86,0]],[[77870,15248],[-130,0],[-130,-1],[-148,0],[-29,0],[-158,-1],[-82,0],[-53,-1],[-147,0],[-41,0],[-162,-1],[-569,-3],[-47,0],[-76,0],[-244,-1],[-137,-1],[-181,0],[-8,0],[-343,-2],[-445,-2],[-103,0],[-369,0],[-74,0],[-214,-1],[-133,1],[-70,-1],[-68,0],[-289,0],[-109,-1],[-225,0],[-239,0],[-3,0],[-212,-1],[-65,0],[-29,1],[-39,0],[-266,0],[-40,0],[-3,0],[-77,0],[-367,-1],[-92,0],[-71,-1],[-89,-1],[-2,0],[-215,1],[-42,0],[-113,-1],[-164,0],[-13,0],[-132,-1],[-54,0]],[[56251,17151],[-128,0],[-183,0],[-269,0],[-129,0],[-93,0],[-108,0],[-162,-1],[-162,-1],[-328,0],[-95,-1],[-131,0],[-11,0],[-42,-1],[-124,0],[-118,0]],[[54168,17147],[-74,45],[-49,7],[-93,-30],[-43,-15],[-10,0],[-1,1],[-44,17],[-71,-2],[-47,-11],[-3,0],[-18,-4],[-3,-2],[-58,-32],[-32,-18],[-130,0],[-1,2],[-14,26],[-1253,6],[-79,0],[-1007,5]],[[51138,17142],[0,109],[0,37],[0,83],[1,28],[1,44],[0,30],[0,41],[0,26],[0,22],[-2,41],[0,31],[0,40],[0,6],[0,25],[-1,29],[0,156],[0,73],[1,79],[0,53],[0,119],[0,440],[-218,1],[-213,-1],[-46,2],[-34,0],[-35,0],[-34,-2],[-61,0],[-271,1],[-189,-4],[-241,-1],[-36,1],[-59,-1],[-29,0],[-255,1],[-173,-2],[-75,0],[-209,0],[-69,0],[-144,0],[0,136],[1,62],[0,105],[-55,-1],[-74,0],[-67,0],[-45,0],[0,99],[-1,129],[0,35],[0,29],[0,163],[-148,0],[-97,-1],[0,74],[4,84],[0,22],[0,22],[-1,45],[-1,44],[-1,22],[-1,22],[1,28],[1,23],[0,67],[-192,-1],[-278,-1],[-131,-1],[-90,0],[-127,-1],[-490,-1],[-194,-1],[-48,-1],[-124,0],[-64,-7],[-3,0],[-79,0],[-85,0],[0,36],[0,43],[1,23],[-1,52],[-5,25],[0,22],[0,22],[0,44],[-1,22],[-2,25],[0,75],[0,152],[1,105],[0,37],[0,22],[1,98],[0,96],[-207,-1],[-47,0],[-215,2],[-129,0],[-90,2],[-36,-1],[0,119],[0,2],[0,118],[0,65],[0,103],[1,56],[0,49],[2,102],[1,151],[0,42],[0,41],[-1,28],[-1,36],[-1,93],[0,56],[0,88],[0,59],[-92,0],[-53,-1],[-94,0],[1,47],[1,122],[-1,70],[-5,14],[-3,9],[6,19],[1,3],[-1,54],[0,48],[-1,22],[0,13],[0,2],[2,21],[-1,10],[0,22],[0,187],[0,30],[0,72],[0,22],[0,86],[0,55],[-2,216],[1,24],[-1,32],[0,26],[0,66],[0,37],[-1,50],[0,26],[0,27],[0,63],[0,34],[1,51],[0,28],[-1,22],[0,36],[-1,28],[0,46],[1,24],[1,26],[0,37],[-1,22],[-1,31],[-1,26],[2,26],[4,25],[13,162]],[[15729,23759],[25,-13],[43,4],[17,-20],[-22,-15],[28,-20],[34,-11],[35,-7],[26,13],[32,-17],[25,-37],[1,-30],[19,-23],[9,-20],[-32,7],[20,-22],[24,-21],[14,-24],[50,-10],[-36,-6],[-16,-25],[32,-16],[0,-26],[-28,-11],[2,-27],[16,-30],[-8,-26],[25,-16],[26,15],[-5,-25],[34,-20],[22,-17],[26,-11],[-16,-24],[2,-26],[-13,-53],[14,-39],[12,-20],[49,-11],[48,0],[29,-10],[37,-10],[34,-5],[35,-17],[1,-31],[39,-13],[28,-8],[51,-4],[60,-31],[29,-7],[37,-6],[29,13],[32,11],[37,-20],[0,-3],[0,-19],[0,-41],[-1,-210],[-1,-29],[0,-145],[0,-32],[-1,-122],[0,-50],[5,-73],[-2,-392],[0,-183],[0,-3],[-1,-178],[-1,-197],[-2,-196],[-1,-167],[-1,-31],[-2,-64],[-1,-29],[0,-53],[2,-1028],[9,-46],[9,-385],[1,-45],[0,-8],[2,-121],[1,-76],[0,-50],[-1,-46],[-1,-93],[0,-30],[0,-14],[-2,-114],[-1,-108],[0,-30],[-1,-72],[-2,-117],[-2,-135],[0,-74],[-2,-131],[-7,-583],[-2,-158],[-1,-21],[-2,-44],[-5,-92],[-8,-26]],[[16719,17077],[-717,1],[-390,0],[-271,0],[-1882,2],[-2,0],[-25,0],[-3944,2],[-869,1],[-1343,0],[-2556,2],[-111,0],[-1945,1],[-133,0],[-28,0],[-1322,1],[-300,0],[-365,0],[51,20],[270,104],[159,36],[470,114],[581,189],[292,167],[206,191],[54,88],[59,130],[-1,54],[-1,115],[-105,191],[-98,69],[-551,314],[-205,118],[-152,86],[-416,191],[-191,123],[-125,138],[8,246],[42,103],[71,56],[117,92],[104,78],[169,124],[262,224],[176,223],[58,72],[41,112],[-18,179],[-3,31]],[[31113,24352],[0,-32],[0,-47],[0,-224],[0,-170],[0,-10],[0,-30],[1,-48],[0,-135],[1,-141],[1,-109],[-1,-115],[0,-12],[-1,-139],[-4,-264],[0,-40],[1,-60],[1,-56],[0,-46],[-1,-22],[0,-64],[-3,-21],[2,-135],[2,-142],[-3,-64],[-1,-66],[0,-106],[0,-4],[0,-23],[0,-95],[0,-71],[-1,-97],[1,-53],[4,-93],[2,-55],[1,-29],[0,-67],[0,-31],[0,-115],[0,-2],[-3,-43],[0,-25],[3,-74],[0,-85],[-1,-140],[-1,-129],[0,-109],[5,-72],[-2,-47],[0,-30],[1,-170],[2,-243],[0,-31],[0,-155],[0,-26],[0,-63],[-1,-66],[-2,-30],[2,-38],[0,-23],[0,-24],[1,-143],[0,-30],[0,-150],[1,-79],[-1,-55],[0,-19],[0,-146],[0,-15],[2,-285],[0,-30],[1,-40],[0,-106],[1,-71],[0,-124],[1,-58],[0,-32],[1,-191],[2,-235],[0,-94],[0,-113],[0,-1],[0,-145],[0,-176],[0,-24],[0,-47],[3,-59],[0,-66],[-3,-69]],[[31127,17093],[-548,1],[-2791,-3],[-766,-1],[-502,-1],[-3214,-3],[-92,0],[-175,0],[-2121,-3],[-335,-1],[-3313,-4],[-551,-1]],[[39204,24366],[-1,-35],[-4,-145],[-2,-92],[-7,-195],[2,-120],[4,-100],[0,-71],[0,-206],[0,-187],[0,-1],[0,-180],[0,-118],[0,-108],[0,-81],[0,-75],[0,-109],[2,-70],[3,-95],[-2,-55],[-3,-33],[1,-61],[0,-61],[-2,-148],[0,-23],[6,-58],[1,-24],[1,-29],[-1,-78],[0,-72],[-2,-367],[0,-33],[1,-55],[-1,-472],[0,-64],[0,-16],[2,-144],[0,-31],[6,-358],[1,-43],[0,-25],[1,-78],[2,-105],[2,-143],[0,-106],[1,-148],[0,-36],[0,-60],[1,-54],[1,-184],[0,-135],[1,-77],[1,-271],[1,-121],[0,-66],[2,-293],[1,-203],[0,-93],[0,-33],[1,-133],[1,-225],[1,-192],[2,-259]],[[39228,17113],[-2425,-5],[-44,0],[-3016,-8],[-50,0],[-436,-1],[-109,0],[-844,-2],[-751,-2],[-426,-2]],[[51138,17142],[-4362,-11],[-251,0],[-1868,-5],[-3395,-8],[-207,0],[-1827,-5]],[[65056,15230],[-1,-42],[0,-70],[0,-193],[-1,-149],[0,-108],[0,-58],[0,-64],[0,-233],[0,-167],[0,-3],[0,-70],[1,-203],[-1,-148],[-2,-150],[0,-27],[-2,-130],[0,-24],[-1,-33],[0,-24],[-1,-24],[-1,-71],[0,-27],[0,-41],[-1,-130],[0,-125],[-1,-123],[-1,-135],[-2,-235],[-1,-66],[0,-46],[0,-91],[-1,-62],[0,-121],[-3,-121],[2,-150],[2,-92],[0,-71],[0,-122],[0,-169],[0,-77],[0,-147],[-1,-184],[0,-128],[0,-43],[0,-45],[0,-59],[0,-100],[0,-141],[-1,-293],[0,-49],[0,-70],[0,-110],[0,-76]],[[65039,9790],[-179,1],[-31,0],[-202,-1],[-88,0],[-118,0],[-73,0],[-254,-2],[-116,1],[-237,0],[-367,1],[-48,0],[-9,0],[-223,1],[-475,1],[-13,0],[-333,1],[-305,1],[-147,0],[-96,1],[-62,0],[-81,0],[-7,0],[-268,1],[-39,0],[-32,0],[-96,0],[-89,1],[-267,1],[-63,0],[-141,6],[-71,0],[-161,0],[-93,0],[-133,0],[-22,0],[-236,0],[-131,0],[-395,0],[1,-114],[2,-205],[1,-68],[1,-30],[0,-33],[0,-31],[4,-22],[3,-120],[4,-211],[-1,-212],[0,-89],[0,-124],[-2,-40],[0,-21],[0,-43],[-1,-100],[0,-50],[-1,-47],[0,-23],[-1,-85],[-1,-104],[0,-54],[-5,-479],[0,-22],[-1,-83],[-1,-39],[-1,-103],[0,-36],[0,-141],[-47,1],[-57,0],[-51,0],[-37,0],[-54,0],[-35,0],[-29,0],[-58,0],[-33,0],[-114,0],[-33,0],[-47,0],[-29,0],[-35,0],[-45,0],[-107,0],[-33,0],[-45,0],[-58,0],[-33,0],[-43,0],[-35,0],[-55,0],[-15,0],[-21,0],[-42,2],[-63,0],[-11,0],[-188,2],[4,-303],[-96,0],[-32,0],[-357,-1],[-248,-1],[-3,0],[-89,-1],[-113,1],[-397,6],[-108,1],[0,-52],[-1,-92],[-1,-129],[0,-67],[-1,-105],[0,-24],[3,-232],[0,-36],[3,-172],[-197,1],[-309,1],[-140,1],[-185,1],[-20,0],[-23,0],[-172,1],[-39,0],[-37,1],[-92,2]],[[55236,5881],[-24,16],[-31,6],[-28,9],[-14,12],[-4,3],[-41,18],[-84,37],[-9,4],[-57,25],[-38,-8],[-71,29],[2,23],[-14,64],[-10,21],[-11,9],[-97,99],[-5,6],[-101,3],[-82,6],[-11,8],[-26,47],[-5,9],[-5,4],[-7,5],[-53,39],[-7,0],[-18,1],[-20,-14],[-29,-18],[-20,3],[-20,15],[19,22],[54,62],[8,9],[-9,23],[0,1],[-4,10],[-21,13],[-37,21],[-22,18],[-23,19],[-8,7],[-4,-2],[-51,-30],[-3,-2],[-7,-4],[-14,-8],[-29,-1],[-25,1],[-11,8],[4,15],[2,11],[-6,4],[-3,3],[-2,1],[-48,10],[-13,4],[-28,2],[-4,23],[19,29],[-24,2],[-22,-18],[-27,5],[-33,13],[-62,7],[-33,-9],[-64,-24],[-19,-20],[-21,-8],[-39,-11],[-60,9],[-7,5],[15,19],[36,11],[39,5],[29,5],[18,20],[-1,32],[-13,31],[-24,0],[-19,-17],[-22,2],[-26,30],[4,55],[-31,-11],[-19,-3],[-11,3],[-25,11],[-58,-18],[-52,-27],[-37,-1],[-20,-15],[-34,-4],[-34,15],[1,9],[3,18],[35,16],[40,-10],[31,-1],[35,19],[-33,46],[19,23],[11,30],[-34,-13],[-60,-22],[-60,-5],[-12,33],[35,6],[68,16],[18,22],[-19,16],[-36,-10],[-86,38],[1,25],[10,46],[12,23],[37,49],[-20,18],[-46,-22],[-32,-49],[-65,8],[-35,-8],[-46,-32],[-45,-18],[-17,48],[-14,18],[-14,51],[-17,5],[-62,19],[-28,13],[7,20],[60,-4],[-5,22],[-5,20],[38,28],[-15,21],[-21,1],[-13,1],[-9,25],[24,18],[44,34],[-30,11],[-70,10],[-42,37],[-24,16],[-30,-4],[-34,4],[13,27],[19,28],[51,24],[9,21],[-17,17],[-60,12],[-3,1],[-5,10],[-14,35],[-39,47],[-24,17],[-2,0],[-96,-7],[-2,0],[-92,2],[-19,3],[-9,1],[-81,8],[-219,43],[-31,6],[-8,6],[1,8],[14,8],[34,19],[17,4],[7,0],[18,-1],[4,0],[57,-21],[7,-3],[40,1],[17,13],[6,5],[1,13],[3,28],[1,11],[-6,16],[-15,21],[-17,18],[-35,37],[-21,15],[-6,4],[-12,4],[-45,3],[-129,9],[-10,0],[-28,7],[-16,12],[-3,2],[-3,10],[3,34],[1,3],[14,27],[3,1],[73,23],[14,5],[76,-37],[7,-3],[34,-2],[3,0],[93,16],[7,1],[21,6],[9,3],[31,17],[63,53],[14,15],[8,41],[-7,11],[-11,8],[-4,3],[-12,4],[-8,2],[-9,0],[-41,-3],[-4,-2],[-14,-8],[-1,-49],[-7,-30],[-6,-22],[-26,-12],[-7,0],[-16,1],[-31,1],[-13,7],[-18,10],[-1,23],[1,1],[28,14],[11,6],[3,1],[1,4],[5,24],[1,4],[-5,4],[-9,8],[-8,7],[-6,0],[-56,2],[-29,-4],[-105,-16],[-9,-1],[-12,-1],[-7,-2],[-6,-2],[-69,-19],[-15,-4],[-12,1],[-41,4],[-12,21],[-6,11],[19,20],[9,10],[7,36],[1,5],[1,3],[-10,24],[-45,57],[-25,30],[-64,57],[-5,3],[-3,1],[-8,2],[-34,25],[-48,57],[1,11],[9,5],[33,-2],[17,-3],[15,-3],[43,-20],[34,1],[4,0],[10,2],[28,8],[4,1],[31,20],[1,10],[1,7],[0,4],[-11,8],[-11,-1],[-21,-1],[-14,-1],[-39,-15],[-17,1],[-3,0],[-3,2],[-5,4],[-8,5],[6,52],[-17,41],[-20,-1],[-70,-4],[-13,1],[-29,4],[-39,17],[-26,28],[-1,1],[-13,25],[0,9],[-1,15],[0,5],[12,6],[6,3],[12,0],[33,-1],[26,-7],[10,-2],[15,-1],[26,-1],[24,11],[2,1],[2,21],[-1,2],[-8,12],[-2,2],[-2,1],[-15,11],[-17,13],[-72,26],[-32,7],[-63,43],[-11,8],[-7,5],[-29,74],[-4,8],[0,2],[2,19],[2,13],[23,109],[11,15],[27,34],[2,14],[1,14],[0,3],[-10,9],[-8,6],[-2,3],[-95,-31],[-1,-1],[-128,-31],[-15,1],[-5,0],[-11,8],[-1,4],[-1,12],[-1,14],[12,61],[22,13],[18,-1],[19,-1],[21,-9],[14,-6],[37,-1],[3,1],[23,6],[39,22],[8,9],[6,6],[10,18],[63,91],[-1,4],[-2,7],[-1,29],[8,39],[46,24],[37,20],[37,13],[14,5],[5,4],[31,21],[2,22],[1,7],[-23,14],[-3,2],[-43,4],[-99,-20],[-30,6],[-8,0],[-26,8],[-14,4],[-14,10],[-5,4],[-5,11],[-6,13],[-2,5],[2,24],[9,12],[4,2],[62,30],[1,1],[12,11],[1,6],[1,12],[-2,2],[-6,4],[-7,6],[-125,73],[-57,12],[-73,6],[-5,4],[-6,5],[-7,49],[0,3],[-10,13],[-14,18],[-24,31],[-13,9],[-11,7],[-3,1],[-30,2],[-4,0],[-11,0],[-21,-4],[-22,-12],[-9,-13],[-7,-33],[-1,-3],[-28,-31],[-3,-1],[-10,-5],[-26,-13],[-6,0],[-14,1],[-13,0],[-6,5],[-2,1],[-4,3],[6,19],[2,9],[9,29],[3,10],[-3,77],[0,13],[0,4],[-4,3],[-8,6],[-28,3],[-32,-8],[-36,-10],[-30,-2],[-3,0],[-13,-1],[-126,13],[-24,6],[-15,13],[-8,6],[-3,8],[3,11],[2,8],[1,5],[18,17],[22,13],[10,3],[20,6],[29,-1],[11,-17],[7,-5],[5,-4],[11,-7],[28,-9],[21,-1],[15,-1],[13,0],[9,5],[38,20],[2,1],[8,27],[16,18],[69,35],[4,3],[19,18],[13,23],[7,11],[6,12],[2,20],[-8,12],[-22,15],[-4,4],[-2,0],[-12,-1],[-27,0],[-22,-17],[-4,-2],[-10,-9],[-8,-38],[-1,-6],[-14,-17],[-5,-2],[-11,-4],[-31,-11],[-18,3],[-22,2],[-17,3],[-27,19],[-2,19],[4,4],[2,2],[7,6],[95,75],[44,32],[5,1],[2,0],[31,5],[28,0],[34,0],[6,4],[23,12],[6,4],[-2,21],[-2,1],[-10,7],[-20,1],[-39,-9],[-8,-2],[-24,1],[-17,3],[-23,20],[-3,2],[2,21],[19,26],[25,14],[41,25],[9,8],[7,5],[11,9],[24,36],[1,11],[1,3],[0,4],[-11,8],[-7,1],[-4,0],[-10,0],[-45,-21],[-33,-15],[-6,1],[-68,4],[-16,2],[-15,5],[-9,3],[-5,4],[-6,5],[-1,8],[-1,7],[0,6],[20,41],[11,7],[6,4],[10,6],[11,1],[4,0],[18,0],[12,-1],[12,-2],[61,-16],[33,-1],[32,-2],[17,0],[17,6],[17,5],[3,2],[6,3],[0,5],[1,8],[0,3],[-27,16],[-31,18],[-27,22],[7,28],[2,1],[51,31],[12,14],[0,14],[1,4],[0,15],[-50,73],[-3,2],[-10,7],[-6,5],[-13,0],[-9,0],[-11,1],[-33,-19],[-11,-6],[-30,-9],[-31,2],[-10,0],[-4,0],[-4,0],[-30,17],[-23,13],[-21,13],[0,17],[-1,17],[0,2],[3,4],[2,6],[23,12],[25,13],[28,7],[40,11],[15,8],[2,1],[23,13],[14,18],[5,19],[1,4],[-19,92],[-37,44],[-18,21],[6,24],[18,10],[41,0],[28,-11],[19,-19],[13,-30],[7,-16],[26,-22],[16,-6],[89,-16],[54,-3],[12,3],[27,17],[0,3],[1,3],[2,20],[-21,37],[-21,38],[1,14],[1,3],[1,14],[5,8],[52,21],[40,25],[48,29],[6,5],[7,5],[1,11],[1,6],[0,4],[-15,11],[-41,5],[-73,-23],[-46,-14],[-55,-9],[-53,5],[-7,4],[-9,5],[-15,8],[0,6],[1,10],[1,8],[12,7],[8,5],[11,7],[34,7],[22,0],[97,0],[34,7],[26,14],[5,8],[1,2],[0,9],[2,12],[-3,2],[-3,2],[-10,7],[-15,0],[-9,0],[-17,-1],[-33,-7],[-47,-10],[-53,2],[-6,0],[-7,1],[-47,22],[-1,32],[9,10],[48,24],[32,4],[18,2],[16,0],[91,-7],[57,-5],[1,10],[-17,18],[-26,28],[-9,9],[45,15],[23,8],[22,12],[5,3],[4,2],[5,8],[2,16],[1,10],[-23,63],[1,7],[5,21],[2,12],[36,46],[17,22],[34,51],[2,17],[-32,17],[-69,-30],[-20,-27],[-73,-28],[-31,2],[-76,39],[-9,22],[7,24],[39,14],[111,-9],[29,6],[35,34],[-14,27],[-90,33],[-26,20],[-2,0],[-27,31],[-8,10],[-34,39],[0,6],[0,15],[0,3],[-9,21],[-60,36],[-3,24],[15,23],[31,7],[26,-14],[9,-43],[15,-25],[33,1],[44,12],[14,8],[3,1],[5,8],[27,59],[5,47],[-7,16],[-17,14],[-12,9],[-18,17],[-18,15],[-7,11],[-6,9],[-5,7],[2,11],[0,5],[2,18],[15,28],[4,3],[17,10],[19,12],[8,-1],[3,0],[22,-1],[11,-8],[5,-20],[4,-17],[5,-4],[13,-13],[8,-8],[16,-6],[29,-1],[17,9],[72,39],[42,23],[2,19],[2,15],[-6,20],[0,1],[-5,6],[-46,69],[-9,13],[-7,0],[12,19],[22,37],[26,42],[8,13],[1,23],[9,10],[72,-17],[106,-56],[6,-27],[-18,-59],[11,-22],[58,-10],[51,15],[122,34],[28,23],[19,34],[-5,30],[-36,5],[-31,-44],[-23,-13],[-64,2],[-12,22],[25,54],[-14,29],[-25,13],[-44,12],[-127,99],[-2,13],[-1,6],[-1,1],[4,1],[24,5],[20,-16],[19,-19],[17,-22],[15,-10],[9,-5],[3,-2],[9,-1],[44,-4],[30,4],[86,30],[8,3],[3,2],[19,12],[5,3],[7,31],[-7,14],[-3,7],[3,29],[9,13],[14,15],[114,63],[26,7],[19,-1],[21,11],[-18,25],[-53,41],[-13,66],[42,51],[33,13],[50,-8],[-12,-44],[7,-28],[38,-4],[50,60],[28,2],[73,-43],[75,-40],[19,3],[57,10],[49,31],[14,11],[6,26],[1,5],[-23,16],[-51,-7],[-20,-3],[-41,5],[-31,22],[-15,19],[2,18],[14,15],[16,10],[59,37],[5,4],[14,13],[9,8],[25,41],[8,43],[1,3],[-16,12],[-41,1],[-66,-43],[-14,-8],[-21,-5],[-45,2],[-16,6],[-9,7],[-1,1],[-9,8],[4,34],[15,78],[9,42],[1,2],[24,33],[3,3],[28,25],[10,15],[2,21],[-9,29],[-4,6],[-3,3],[-15,18],[-23,17],[-51,21],[-5,2],[-2,2],[-19,14],[-5,4],[-1,4],[0,18],[0,14],[31,15],[24,-1],[4,-2],[63,-35],[16,-6],[16,-1],[5,-3],[24,-19],[14,-32],[27,-22],[74,-11],[29,5],[7,31],[-41,55],[-56,51],[-16,31],[1,12],[2,17],[4,3],[30,21],[6,3],[22,3],[7,2],[25,-1],[12,-1],[15,-3],[2,-1],[12,-2],[35,-15],[17,-10],[34,-21],[44,-15],[29,-1],[21,4],[7,5],[25,17],[4,3],[1,10],[2,24],[-23,53],[7,29],[14,18],[22,12],[17,9],[12,3],[10,2],[9,6],[22,13],[8,5],[2,4],[6,22],[5,13],[-2,3],[-5,7],[-4,6],[-7,5],[-17,12],[-3,3],[-144,84],[-60,26],[-43,18],[-35,27],[-3,14],[-5,23],[27,67],[10,13],[25,17],[4,3],[11,7],[13,2],[5,0],[2,0],[17,-1],[62,-42],[62,0],[13,8],[15,17],[2,27],[1,2],[-20,14],[-27,12],[-37,26],[-2,1],[-22,30],[9,39],[28,39],[10,14],[3,32],[-12,42],[-33,62],[-1,2],[11,26],[47,22],[13,-1],[3,-1],[38,-3],[111,-44],[29,-6],[19,-4],[32,-1],[47,-2],[29,4],[58,29],[3,2],[3,2],[23,20],[1,1],[6,13],[0,1],[-1,16],[0,11],[-33,34],[-5,5],[-1,4],[-9,17],[-18,27],[-27,19],[-64,14],[-43,25],[-9,14],[-5,10],[0,8],[0,16],[1,28],[36,33],[61,29],[46,6],[26,-1],[3,0],[25,-1],[16,-6],[13,-9],[26,-17],[35,-14],[24,-1],[18,-1],[20,-1],[42,6],[17,5],[51,30],[4,2],[11,7],[56,53],[25,43],[0,11],[0,8],[0,23],[-27,19],[-36,10],[-107,7],[-17,1],[-31,19],[-18,22],[0,42],[19,20],[68,42],[16,9],[10,16],[4,41],[-7,16],[-49,39],[-63,25],[-53,22],[-4,3],[-7,5],[-23,17],[-17,35],[8,41],[60,58],[77,101],[33,15],[53,24],[48,21],[98,36],[6,2],[-12,47],[3,11],[5,26],[31,17],[8,1],[60,19],[55,46],[49,45],[14,8],[9,6],[17,5],[33,-2],[61,-15],[14,-1],[31,-1],[38,6],[2,1],[7,4],[22,12],[9,13],[3,26],[-9,12],[-6,7],[-24,17],[-8,6],[-10,7],[-52,21],[-135,38],[-5,2],[-5,3],[-31,22],[-3,2],[3,29],[31,20],[86,-1],[9,-1],[2,1],[33,16],[12,10],[11,10],[4,16],[7,22],[2,9],[-3,10],[-9,32],[0,13],[-1,51],[-1,2],[16,31],[19,26],[39,55],[2,14],[1,7],[-16,13],[-8,1],[-32,0],[-51,1],[-52,15],[-34,27],[-6,27],[-12,25],[19,16],[64,1],[86,9],[29,16],[0,28]],[[90791,17064],[3,-60],[1,-25],[6,-125],[2,-28],[5,-102],[6,-115],[4,-83],[7,-111],[2,-30],[5,-72],[9,-136],[4,-53],[2,-34],[6,-80],[11,-165],[2,-25],[8,-127],[11,-148],[13,-197],[25,-359],[1,-19],[7,-103],[7,-94],[9,-138],[9,-125],[26,-180],[4,-66],[0,-8],[5,-63],[2,-28],[0,-4],[3,-52],[6,-93],[11,-177],[4,-62],[9,-141],[8,-128],[6,-87],[34,-527],[4,-72],[5,-78],[6,-93],[8,-130],[16,-212],[8,-142],[7,-106],[2,-41],[7,-104],[3,-104],[6,-102],[5,-97]],[[91151,11613],[-346,-1],[-158,-1],[-177,-1],[-40,-1],[-166,0],[-157,-1],[-48,-1],[-155,0],[-24,0],[-70,-1],[-296,-5],[-29,1],[-42,0],[-58,0],[-79,0],[-36,0],[-45,1],[-312,-1],[-34,0],[-33,1],[-53,-1],[-29,3],[-70,-3],[-84,0],[-54,0],[-50,-1],[-4,0],[-32,0],[-43,0],[-31,0],[-37,0],[-32,0],[-85,1],[-39,0],[-32,0],[-30,0],[-50,0],[-33,-1],[-37,0],[-28,3],[-93,0],[-85,0],[-71,0],[-183,-1],[-195,0],[-29,0],[-49,0],[-62,0],[-151,1],[-68,0],[-62,-1],[-73,-1],[-34,0],[-75,-1],[-56,-1],[-61,0],[-3,0],[-73,0],[-242,0],[-31,0],[-83,1],[-37,0],[-50,0],[-32,0],[-37,0],[-73,0],[-51,0],[-4,-1],[-31,-2],[-104,3],[-43,0],[-127,-1],[-81,-1],[-29,0],[-53,3],[-69,-1],[-28,-2],[-30,2],[-40,0],[-35,0],[-37,1],[-43,0],[-315,-3],[-53,0],[-88,0],[-104,0],[-151,-1],[-106,0],[-104,-3],[-62,0],[-7,0],[-23,0],[-70,1],[-28,0],[-230,1],[-80,0],[-63,0],[-391,-1],[-164,0],[-47,0],[-85,0],[-302,-3],[-582,4],[-186,-3],[-274,-3],[-94,0],[-426,0],[-10,0],[-36,0],[-16,0],[-70,-1],[-4,0],[-55,0],[-33,0],[-35,0],[-50,0],[-2,0],[-6,0],[-72,0],[-170,-1],[-100,-1],[-61,0],[-94,-1],[-109,0],[-120,0],[-80,0],[-118,0],[-288,-1],[-48,0],[-88,0],[-90,0],[-50,-1],[-38,0],[1,38],[-182,-1],[-41,0],[-384,-1],[-116,-1],[-170,0],[-62,-2],[-197,-6],[-267,1]],[[77884,11613],[-2,182],[0,49],[-1,72],[0,35],[0,338],[0,59],[0,173],[0,13],[0,41],[0,17],[0,10],[0,129],[0,117],[0,25],[0,98],[0,32],[0,228],[0,39],[0,127],[2,65],[-2,24],[2,27],[-2,156],[-1,92],[0,23],[0,5],[-1,88],[-1,113],[0,66],[-1,171],[-1,155],[-1,128],[-2,300],[-1,155],[0,26],[-1,28],[0,64],[0,50],[-1,44],[0,71]],[[77884,11613],[0,-77],[0,-111],[0,-247],[1,-30],[-1,-136],[0,-154],[0,-96],[0,-170],[0,-70],[0,-63],[0,-55]],[[77884,10404],[-126,0],[-221,0],[-106,0],[-242,-1],[-121,0],[-281,0],[-104,0],[-24,0],[-236,0],[-340,-1],[-115,0],[-38,0],[-334,0],[-422,-1],[-141,0],[-178,0],[-75,0],[-143,0],[-163,-1],[-110,0],[-2,0],[-159,0],[-68,-2],[-203,2],[-320,0],[-549,-1],[-110,0],[-302,-1],[-92,0],[-218,0],[-124,0],[-34,0],[-65,0],[-144,0],[-103,0],[-106,-1],[-203,0],[-170,0],[-31,0],[-62,0],[-48,0],[-69,0],[-60,-1],[-183,1],[-78,0],[-109,0],[-4,0],[-32,0],[-63,1],[-187,0],[-194,1],[-147,0],[-72,0],[-133,1],[-20,0],[-185,-2],[-94,0],[-78,1],[-149,0],[-246,0],[-321,1],[-258,0],[-95,0],[-154,1],[-242,0],[-184,0],[-5,-43],[-1,-92],[0,-54],[0,-137],[0,-153],[-1,-133],[-57,-1],[-222,-6],[-61,0],[-142,0],[-148,1],[-34,0],[-252,1],[-162,0],[-23,0],[-84,0],[-120,1],[-155,0],[-362,1],[-149,1],[-214,1],[-89,0],[-184,1],[-335,1],[-55,0]],[[88917,708],[74,-8],[80,7],[84,-24],[75,-23],[102,-16],[91,-13],[88,-27],[81,-29],[99,-25],[127,-12],[122,-9],[90,-2],[94,-1],[88,6],[109,4],[49,44],[52,29],[62,-3],[73,42],[79,26],[107,15],[144,-12],[99,-11],[67,-13],[65,-26],[70,11],[100,13],[69,31],[61,-2],[-38,-41],[-39,-18],[-104,-30],[-68,-21],[-129,-31],[-119,-23],[-194,-39],[-91,-13],[-78,-10],[-67,1],[-68,-7],[-132,-11],[-76,0],[-78,-5],[-53,1],[-117,1],[-95,17],[-133,28],[-66,11],[-91,20],[-117,23],[-96,16],[-82,5],[-129,19],[-96,17],[-100,18],[-106,25],[-90,33],[-72,25],[-96,37],[-53,33],[-47,56],[46,20],[123,-37],[88,-26],[78,-36],[84,-30]],[[82654,1571],[61,-25],[75,1],[71,-43],[148,0],[60,-6],[62,-15],[127,-39],[121,-50],[102,20],[124,-18],[84,-45],[104,-5],[55,-57],[72,-11],[65,13],[100,-32],[72,-22],[123,-29],[80,6],[54,11],[55,-1],[124,-23],[46,-11],[51,-13],[101,-18],[85,-40],[99,-1],[82,3],[106,16],[79,-9],[74,-12],[77,-13],[62,-8],[62,-7],[97,-1],[100,-11],[140,-12],[112,-22],[112,-20],[72,-16],[66,-8],[92,-9],[95,0],[122,-22],[116,4],[95,-11],[-120,-28],[-80,-25],[-155,-10],[-110,3],[-155,10],[-132,11],[-129,12],[-212,27],[-126,17],[-129,21],[-109,15],[-123,11],[-94,8],[-155,18],[-82,3],[-81,9],[-99,5],[-62,28],[-67,-20],[-90,4],[-72,2],[-150,6],[-62,3],[-100,11],[-88,17],[-128,19],[-115,21],[-109,18],[-110,22],[-97,15],[-87,24],[-51,20],[-46,26],[-65,16],[-57,18],[-107,45],[-57,17],[-108,-2],[-106,11],[-124,-4],[-116,-10],[-99,-14],[-98,-13],[-99,-11],[-103,-18],[-121,-11],[-144,-6],[-137,-1],[-82,7],[-156,25],[-123,16],[-62,21],[-41,41],[64,5],[63,-7],[121,11],[103,16],[128,23],[104,10],[127,-7],[150,4],[75,-3],[71,9],[99,23],[67,23],[56,31],[94,40],[74,10],[52,-27]],[[86356,2457],[-39,-40],[-61,1],[-25,45],[-38,43],[-16,44],[101,-36],[78,-57]],[[86748,3416],[28,-82],[6,-66],[42,-75],[-79,-42],[-177,29],[-36,-5],[-82,4],[-77,40],[-44,39],[-40,42],[20,45],[43,7],[62,17],[57,-19],[76,4],[158,65],[43,-3]],[[85941,3857],[56,-41],[-88,4],[-41,-74],[-34,20],[-8,65],[18,65],[97,-39]],[[85648,3960],[24,-82],[63,-79],[-5,-73],[-79,-17],[-84,5],[-59,-28],[7,56],[36,59],[4,55],[-37,57],[-96,-35],[-151,-32],[4,45],[100,37],[126,58],[93,90],[36,75],[18,-114],[0,-77]],[[86112,4648],[167,-21],[85,5],[88,-30],[71,-60],[59,-27],[84,-39],[92,-8],[58,-28],[-52,-43],[1,-52],[-23,-69],[-21,-61],[4,-3],[55,-60],[85,-1],[24,-56],[-3,-16],[-12,-45],[-23,-26],[-52,-54],[9,-52],[17,-105],[-12,-76],[-52,-42],[-25,-158],[-122,-8],[-148,9],[-39,68],[-7,57],[-18,53],[-5,17],[-8,32],[-81,45],[-1,76],[15,53],[1,23],[-121,17],[-88,-71],[-44,-42],[-18,68],[79,74],[101,29],[-54,20],[11,64],[-99,15],[-78,-42],[-50,-7],[11,-42],[1,-47],[-58,-52],[-49,35],[-39,117],[-92,82],[-5,5],[-20,58],[-12,38],[7,17],[21,46],[32,16],[31,22],[3,2],[54,39],[37,55],[13,64],[32,29],[12,18],[3,0],[68,73],[100,2]],[[91151,11613],[10,-79],[1,-28],[3,-25],[2,-21],[3,-40],[3,-38],[2,-27],[1,-21],[2,-48],[1,-22],[1,-25],[1,-6],[4,-58],[1,-22],[0,-48],[10,-107],[2,-22],[2,-47],[2,-24],[2,-33],[0,-4],[1,-17],[1,-25],[1,-20],[2,-21],[2,-31],[2,-23],[1,-23],[1,-23],[1,-24],[3,-51],[4,-71],[2,-33],[0,-2],[1,-5],[1,-19],[1,-22],[3,-50],[2,-28],[0,-2],[1,-27],[3,-43],[1,-25],[2,-31],[2,-24],[21,-402],[8,-138],[5,-71],[6,-55],[4,-68],[1,-5],[2,-15],[7,-17],[-1,-41],[0,-41],[-1,-43],[1,-60],[2,-65],[1,-38],[1,-55],[1,-33],[2,-44],[3,-50],[2,-29],[7,-114],[7,-101],[4,-57],[2,-39],[4,-60],[2,-23],[1,-17],[1,-18],[16,-239],[21,-313],[4,-52],[2,-42],[9,-138],[6,-87],[2,-33],[5,-75],[4,-56],[2,-27],[6,-20],[0,-12],[-1,-31],[0,-43],[12,-80],[2,-38],[1,-26],[1,-21],[1,-58],[4,-65],[6,-72],[3,-50],[11,-130],[10,-91],[6,-104],[20,-393],[0,-4],[1,-4],[3,-32],[0,-3],[4,-32],[2,-26],[3,-49],[11,-160],[5,-65],[0,-3],[21,-311],[7,-106],[1,-51],[73,-1004],[-79,2],[-17,0],[39,-31],[54,-30],[-13,-49],[-62,14],[-83,53],[-76,39],[-86,-5],[-56,-3],[-18,-55],[-84,-75],[53,-17],[-8,-57],[18,-46],[95,-9],[37,26],[38,-13],[23,-29],[50,-59],[99,27],[33,-15],[16,-105],[-16,-58],[-24,-64],[40,-94],[50,-48],[27,0],[55,0],[27,-17],[0,-1],[0,-14],[0,-15],[-58,-20],[-28,-10],[-31,-14],[-43,-18],[-68,-51],[-137,-12],[-37,-10],[-104,-8],[-52,25],[49,16],[117,52],[-101,24],[-32,89],[-16,35],[-25,61],[-69,-11],[-48,-4],[-55,11],[-43,-28],[32,-43],[-26,-38],[-68,7],[-61,36],[-63,-25],[-73,6],[-156,0],[-6,38],[-29,40],[-76,4],[-51,-19],[-104,-34],[-81,44],[-5,46],[55,11],[25,21],[-64,16],[-26,16],[-42,-21],[-75,7],[-69,-1],[-45,0],[-54,33],[-40,7],[1,33],[-47,-32],[-36,-10],[-41,-32],[-45,-52],[-30,-32],[-36,22],[-18,37],[21,19],[-51,45],[26,55],[-67,-30],[-54,-46],[-5,-33],[-30,-66],[38,-63],[49,-69],[-19,-45],[66,-55],[44,15],[93,-64],[21,57],[68,28],[-53,75],[-40,9],[-14,44],[36,32],[30,51],[29,51],[35,16],[63,-22],[35,-15],[81,-3],[55,7],[37,0],[40,-17],[2,-44],[-14,-19],[-9,-35],[-1,-35],[13,-22],[16,-31],[44,-79],[9,-84],[-9,-58],[-5,-53],[-88,-80],[-54,-50],[-53,-36],[-46,-27],[-66,-21],[-56,-10],[-59,-14],[-80,-32],[-68,-37],[-129,-60],[-94,-18],[-143,-19],[-162,8],[-106,-2],[-129,15],[-15,-1],[-64,-6],[-95,29],[-133,-32],[-52,106],[-51,93],[-61,27],[29,24],[39,177],[105,249],[-92,0],[-48,-120],[-31,-84],[-79,-142],[-79,-39],[-123,55],[-57,93],[-380,66],[-184,5],[-106,-4],[-120,-7],[-82,0],[-66,4],[-163,5],[-55,26],[-32,21],[47,46],[1,58],[-40,38],[33,55],[2,37],[19,41],[-31,41],[-4,53],[16,62],[17,42],[2,6],[57,55],[9,9],[-6,57],[-3,43],[1,58],[97,24],[60,-5],[68,-16],[82,-4],[71,18],[51,-27],[38,92],[17,66],[-22,38],[-72,49],[-4,-5],[-28,-42],[16,-60],[-53,-4],[-45,2],[12,36],[-67,1],[-76,26],[-38,-57],[-47,49],[-91,-12],[-47,-55],[-51,-43],[-11,65],[43,54],[57,37],[3,46],[-92,-8],[-56,41],[28,69],[-50,35],[-68,35],[-98,-35],[-14,-23],[-28,-16],[-80,52],[-86,20],[-28,0],[-55,0],[-47,-10],[-32,-7],[-65,18],[-58,29],[18,21],[-50,51],[-96,33],[-78,-5],[51,-47],[24,-42],[-52,-24],[-47,-41],[-122,25],[51,45],[-25,117],[-61,9],[-41,9],[-46,-7],[-29,18],[40,50],[0,8],[0,22],[-36,0],[-36,0],[-79,-30],[-32,-45],[5,-39],[2,-11],[32,-50],[0,-35],[72,-140],[97,-104],[-32,-82],[-19,-28],[-6,-10],[-25,-39],[-2,-29],[-6,-101],[-7,-14],[-39,-81],[-61,-21],[-77,7],[-47,-17],[-74,-29],[-77,-30],[-103,-39],[-295,-166],[-208,31],[-315,-9],[-236,29],[-5,0],[-55,-30],[-73,-15],[-88,-19],[-86,-28],[-78,-25],[-74,-32],[-44,-22],[-18,-9],[-65,-33],[-69,-36],[-69,-35],[-47,-21],[-81,-30],[-99,-30],[-85,-17],[-110,-15],[-117,11],[-24,1],[-71,2],[-124,-1],[-67,-26],[-78,2],[-61,30],[-71,-3],[-79,13],[-66,16],[-77,-18],[-71,39],[-79,24],[-83,6],[-54,23],[-60,7],[-56,4],[-38,25],[-50,24],[-45,22],[-75,41],[-38,22],[-37,27],[-68,37],[-70,42],[-4,2],[-66,36],[-80,39],[-73,39],[-71,27],[-48,16],[-51,18],[-77,27],[-35,12],[-2,1],[-10,3],[-56,15],[-58,17],[-58,18],[-113,44],[-154,58],[-111,40],[-118,46],[-68,52],[118,13],[73,-5],[105,-32],[47,-3],[76,-5],[93,11],[82,-18],[101,-12],[70,-36],[42,-49],[89,12],[72,21],[87,43],[-75,31],[26,44],[33,50],[0,62],[51,-38],[50,17],[-53,61],[-55,41],[-101,-67],[-37,-31],[24,-36],[19,-47],[-115,-71],[-80,52],[-76,21],[-89,5],[-37,49],[-93,70],[-4,52],[-64,-63],[-108,3],[-164,13],[-131,41],[-172,75],[-218,88],[-103,31],[-379,131],[-15,5],[-11,23],[-68,141],[-237,97],[8,50],[109,-13],[66,-28],[58,-29],[28,23],[72,-12],[60,35],[-54,27],[-59,18],[-62,24],[-65,30],[-46,78],[-68,-36],[-165,-20],[-94,-12],[-174,-65],[-88,-43],[-100,27],[-83,-60],[-60,0],[-87,32],[-45,52]],[[77921,5210],[-1,103],[1,38],[0,22],[0,24],[0,25],[0,23],[0,27],[-4,83],[0,73],[0,24],[1,29],[1,23],[-2,24],[-1,27],[0,10],[-1,80],[3,67],[-3,65],[0,7],[-2,31],[2,111],[2,21],[0,98],[0,51],[0,43],[0,32],[0,50],[-2,175],[-1,74],[-2,60],[-1,129],[0,30],[-1,121],[-1,62],[-1,110],[-3,272],[0,8],[-3,355],[-1,98],[0,2],[-1,74],[-1,192],[-1,52],[0,80],[-1,37],[-1,138],[-1,69],[-1,280],[-1,25],[0,43],[-1,135],[-1,209],[0,57],[-1,35],[0,46],[-1,134],[0,53],[0,41],[-1,92],[-1,161],[-1,168],[-1,151],[-1,183],[0,32]],[[76220,733],[-179,-43],[-113,-14],[-126,-12],[-91,-5],[-211,0],[-136,-4],[-59,1],[-68,5],[-71,16],[-67,44],[84,21],[123,-16],[107,11],[86,9],[85,19],[147,7],[93,2],[83,3],[138,14],[87,19],[84,15],[96,13],[135,14],[96,-11],[-60,-40],[-152,-35],[-111,-33]],[[77726,1141],[-43,-48],[-179,-44],[21,44],[43,41],[96,3],[62,4]],[[77726,1141],[68,57],[-106,20],[22,77],[81,36],[20,36],[63,-12],[64,-9],[88,-1],[57,1],[70,67],[81,-16],[-45,-46],[-52,-35],[-72,-44],[-155,-77],[-184,-54]],[[72627,1057],[-57,-72],[-40,-46],[-51,-52],[-91,-86],[-91,-66],[-67,-59],[-62,-52],[-98,-68],[-66,21],[40,35],[43,29],[36,38],[61,55],[2,38],[1,12],[-47,24],[-62,4],[-69,-4],[-59,-13],[-82,-18],[-70,-12],[-110,-1],[-83,-6],[-112,20],[50,36],[-24,45],[126,18],[90,-26],[81,23],[82,12],[74,-1],[74,-17],[102,23],[98,-3],[79,36],[-101,11],[-57,5],[-66,-8],[-90,-1],[-55,5],[-62,15],[-97,-7],[-110,0],[-68,1],[-92,9],[-78,27],[-58,12],[-90,-5],[-5,1],[-95,13],[-107,15],[-77,6],[-71,12],[-97,13],[-139,19],[-148,12],[-68,8],[-81,9],[-96,26],[147,21],[206,10],[154,2],[109,6],[96,-1],[89,-1],[73,-2],[60,10],[63,-16],[60,-15],[274,5],[54,-1],[158,12],[102,0],[114,-12],[70,2],[82,-26],[-3,-47],[52,-16],[52,16],[38,51],[58,15],[5,2],[64,19],[40,85],[88,56],[-6,50],[55,78],[49,62],[49,45],[61,-60],[8,-48],[-28,-85],[-45,-78],[-82,-128],[-56,-76]],[[78309,4306],[203,-57],[-17,21],[96,-13],[53,-17],[31,-10],[87,-15],[69,-7],[66,-14],[80,-22],[75,-23],[81,-24],[99,-17],[95,-23],[108,-34],[111,-59],[80,-55],[65,-46],[24,-47],[-70,11],[31,-49],[-63,-23],[-437,183],[-639,227],[-43,7],[-512,89],[-40,81],[367,-64]],[[77921,5210],[-26,-39],[-67,-27],[-119,-13],[-107,30],[-5,1],[-84,21],[-82,17],[-109,61],[-59,-6],[-71,6],[-90,-8],[-129,0],[-73,1],[-53,-70],[-101,52],[5,69],[-98,26],[-112,-39],[-42,-55],[-10,-92],[-30,-13],[-27,24],[-103,11],[-67,-2],[-70,-26],[-31,-3],[-130,-23],[-121,-5],[-158,56],[-86,3],[-90,-18],[-121,3],[-93,-7],[-87,-4],[-79,43],[-12,-1],[-120,-4],[-6,23],[-21,4],[-163,33],[-33,-12],[9,-106],[-8,-50],[-93,74],[-55,25],[-61,-23],[-78,-15],[-17,16],[-86,0],[0,-21],[0,-12],[86,-77],[3,-49],[91,-12],[36,-4],[119,-39],[82,-87],[81,16],[101,27],[61,52],[266,-12],[31,37],[97,0],[70,-13],[100,-5],[75,16],[112,-1],[160,-21],[97,27],[102,42],[96,-21],[192,-28],[98,-39],[82,15],[10,31],[89,11],[97,43],[104,40],[115,23],[73,-56],[28,-83],[79,-46],[96,-8],[80,17],[61,8],[84,18],[11,2],[65,-2],[42,-35],[107,-9],[106,21],[121,-36],[48,16],[12,-66],[103,-13],[83,38],[55,-20],[160,-35],[74,-43],[1,-7],[9,-121],[-71,-4],[45,-36],[64,-66],[1,-6],[11,-70],[-78,0],[-55,25],[-67,-12],[-88,12],[-177,21],[-141,13],[-132,-11],[-52,-15],[-61,8],[-66,9],[-86,13],[-223,9],[-170,7],[-135,-4],[-147,5],[-113,-5],[-375,-27],[-116,4],[-223,-14],[-249,-4],[-346,-17],[-106,-2],[-248,-33],[-330,-25],[-269,-23],[-421,-62],[-491,-88],[-111,-8],[-162,-36],[-63,-5],[-84,-10],[-166,-46],[-214,-13],[-441,-91],[-149,-31],[-75,-45],[-111,-23],[-16,-95],[-48,32],[-76,-32],[85,-148],[-94,33],[-64,59],[-34,109],[-79,-21],[-211,-62],[-168,-56],[-274,-40],[-120,-41],[-84,-23],[-114,-40],[-106,-41],[-62,-27],[-168,-35],[-186,-37],[-154,-44],[-211,-50],[-90,-29],[-155,-39],[-73,-25],[-124,-33],[-101,-13],[-194,-31],[-152,-31],[-599,-118],[-137,-39],[-107,-32],[-104,-29],[-90,-25],[-107,-18],[-132,-46],[-40,-17],[-95,-33],[-121,6],[-149,-29],[-227,-60],[-135,-31],[-82,-10],[-136,-24],[-176,-12],[-65,7],[-55,-10],[-86,50],[-5,54],[12,16],[42,53],[29,61],[0,39],[0,33],[-25,94],[-19,75],[0,54],[17,45],[76,12],[31,19],[87,-1],[97,-4],[69,16],[138,16],[81,87],[60,72],[30,-21],[128,0],[147,-3],[150,-3],[29,24],[4,4],[-29,61],[-76,2],[-189,7],[-191,7],[-23,9],[-10,5],[-84,-23],[-54,22],[-68,50],[-74,34],[-64,27],[-78,36],[-51,53],[38,31],[18,15],[63,20],[61,34],[91,-7],[74,52],[-98,-2],[-75,19],[-82,7],[-19,0],[-77,-2],[-32,-35],[-47,-27],[-58,25],[-6,67],[-72,29],[-110,12],[-144,-10],[-88,-21],[-26,-43],[-64,-48],[-69,-1],[10,41],[8,57],[44,77],[81,17],[-15,34],[-8,17],[-58,27],[-14,4],[-57,15],[-56,7],[-54,7],[-95,-8],[-120,-4],[-82,-10],[-79,-7],[-62,-7],[-90,6],[-83,-10],[-73,-12],[-5,-1]],[[65053,4088],[0,8],[0,216],[0,3],[-9,485],[-3,64],[3,177],[-5,37],[3,55],[-1,79],[-2,215],[0,6],[0,110],[-3,245],[0,36],[-1,51],[0,24],[-1,113],[-2,261],[-2,179],[4,278],[-3,23],[2,160],[0,28],[1,118],[0,114],[1,168],[0,62],[0,190],[1,104],[0,71],[1,140],[0,57],[1,301],[0,10],[0,131],[1,191],[0,86],[0,157],[0,40],[0,26],[1,158],[2,247],[-4,45],[0,103],[0,112],[0,126],[1,66],[0,26]],[[65053,4088],[-132,-37],[-116,-4],[-98,-44],[-53,-41],[-47,-28],[-167,-156],[-78,-75],[-54,-47],[-97,0],[-93,-76],[-78,-3],[5,-101],[-6,-71],[171,72],[186,25],[86,8],[-20,-88],[-149,-49],[-180,-41],[-147,-9],[-188,19],[-153,21],[-35,-22],[-4,-2],[-10,-7],[20,-14],[98,-29],[165,0],[175,-29],[94,11],[223,45],[96,25],[77,40],[122,-2],[223,87],[210,-12],[107,-46],[88,-72],[43,-112],[59,-101],[98,-79],[82,-47],[0,-21],[0,-61],[-88,-146],[-14,-23],[-74,-108],[-215,-103],[-225,-94],[-312,-79],[-90,-16],[-203,-83],[-185,-141],[-202,-160],[-119,-54],[-340,-112],[-222,-41],[-138,-34],[-106,-21],[-90,-30],[-70,12],[-31,-56],[-32,-31],[-46,-43],[-40,-49],[-34,-68],[-4,-78],[-3,-54],[0,-4],[4,-1],[2,-1],[2,-1],[106,-38],[15,-45],[22,-41],[-17,-49],[-90,-52],[-49,-16],[-53,-24],[-70,-32],[-43,-41],[-34,-45],[-57,-23],[-28,-40],[-21,-44],[-40,-37],[-63,-14],[-58,-35],[-52,-31],[-58,-52],[-48,-36],[-31,-54],[24,-74],[6,-73],[28,-29],[44,-48],[27,-46],[22,-43],[-79,-26],[-61,-11],[-54,-36],[-74,-32],[-87,-42],[-51,-46],[-73,-41],[-65,8],[39,55],[4,48],[18,49],[13,57],[-35,65],[-55,37],[-89,37],[-112,4],[-71,-15],[-85,-17],[-132,40],[-79,-29],[-126,-45],[-83,-61],[-49,-76],[-94,-28],[-92,-11],[-89,36],[-94,-5],[-97,3],[-66,8],[-112,12],[-66,-31],[-167,-84],[-14,22],[-56,93],[-40,67],[-8,14],[-15,24],[-1,3],[-22,20],[-19,18],[-45,42],[-18,15],[-10,8],[-43,14],[-27,9],[-73,6],[-34,4],[-79,-8],[-31,-8],[-39,-11],[-29,-9],[-49,-17],[-36,-19],[-29,-15],[-6,-5],[-41,-38],[-15,-12],[-2,-2],[-26,-21],[-63,-35],[-87,-36],[-59,-17],[-53,-18],[-63,-16],[-44,-10],[-67,-16],[-26,-2],[-33,-4],[-30,0],[-7,2],[-83,23],[-48,20],[-6,2],[-14,6],[-30,16],[-29,18],[-64,39],[-19,17],[-28,27],[-39,31],[-18,16],[-12,9],[-5,5],[-31,33],[-22,34],[-18,43],[-1,3],[-24,59],[-5,6],[-54,61],[-9,11],[-10,8],[-34,31],[-70,85],[-24,30],[-3,4],[-39,31],[-80,54],[-50,24],[-39,6],[-108,8],[-79,18],[-32,13],[-11,7],[-84,61],[-6,4],[-23,17],[-9,20],[-14,28],[-10,25],[-6,15],[0,45],[31,138],[7,15],[20,44],[19,40],[9,20],[1,23],[1,7],[-3,11],[-13,29],[-19,14],[-35,25],[-51,21],[-38,7],[-67,13],[-87,27],[-43,23],[-149,109],[-12,37],[4,37],[15,23],[30,17],[13,2],[44,-3],[49,-4],[13,5],[6,4],[20,13],[1,4],[1,11],[2,22],[-3,2],[-35,23],[-65,10],[-32,7],[-35,12],[-35,25],[-5,24],[3,31],[36,50],[12,16],[11,26],[2,16],[0,7],[1,6],[-9,29],[-10,12],[-20,24],[-7,8],[-36,19],[-102,56],[-21,15],[-7,11],[0,31],[0,6],[-3,3],[-12,12],[-4,4],[-4,0],[-10,0],[-31,-1],[-27,-4],[-27,-4],[-24,0],[-16,0],[-30,0],[-32,7],[-20,9],[-33,30],[0,5],[2,21],[17,11],[3,2],[7,4],[18,4],[70,16],[43,14],[25,16],[1,1],[3,4],[4,6],[8,11],[6,65],[1,8],[-4,7],[-15,26],[-9,46],[-2,10],[-4,23],[-6,32],[54,31],[63,10],[18,-3],[2,0],[66,2],[47,14],[29,17],[85,51],[53,37],[17,12],[1,1],[-2,7],[-4,14],[-3,2],[-8,6],[-4,3],[-12,5],[-59,24],[-30,25],[7,37],[15,20],[1,11],[1,11],[1,4],[-24,46],[-37,41],[-6,5],[-15,14],[-4,4],[-1,1],[11,31],[25,36],[17,18],[10,10],[2,10],[7,43],[3,22],[-12,23],[-1,4],[-87,74],[-14,25],[-5,10],[-9,16],[-15,1],[-5,0],[-31,17],[0,9],[1,32],[0,14],[-14,14],[-2,1],[-5,1],[-28,1],[-65,3],[-43,1],[-84,4],[-4,2],[-8,6],[-4,3],[-2,2],[1,9],[3,24],[1,7],[0,7],[-7,13],[-6,4],[-24,18],[-4,3],[-4,1],[-32,11],[-40,4],[-20,9],[-19,14],[-14,27],[-27,-28],[-13,-7],[-21,1],[-90,43],[-5,4],[-2,1],[-1,2],[-27,76],[-20,58],[9,88],[1,6],[-9,34],[-19,8],[-20,7],[-47,21],[-12,8],[1,5],[4,3],[9,5],[33,11],[4,2],[12,4],[-11,3],[-67,17],[-17,8],[-18,7],[-12,6],[-2,2],[-3,3],[-128,127],[-24,24],[-9,29],[0,2],[-22,59],[-10,24],[-52,94],[-19,14],[-57,5],[-16,29],[-2,2],[-15,28],[-2,3],[-46,67],[-11,17],[-2,1],[-57,53],[-16,14],[-23,24],[-25,26],[-4,18],[2,43],[1,51],[1,28],[7,3],[8,3],[9,-1],[4,0],[16,-1],[25,-25],[8,-7],[5,-1],[9,0],[7,0],[13,7],[33,38],[1,12],[0,2],[1,9],[-21,50],[-14,33],[-1,3],[-29,89],[-2,7],[1,35],[3,48],[3,26],[17,47],[3,26],[-6,21],[-9,8],[-10,8],[-4,3],[-19,1],[-5,0],[-26,-9],[-17,1],[-9,5],[-6,3],[-1,5],[-17,69],[-8,35],[2,15],[5,8],[48,27],[9,13],[3,62],[-27,133],[-12,8],[-57,30],[-20,11],[-71,39],[-29,66]]],"transform":{"scale":[0.00003557053785537941,0.000048199248452485206],"translate":[-91.65490100099993,30.17582385300011]}} diff --git a/src/js/config/mapconfig/mapfiles/county/mt-counties.json b/src/js/config/mapconfig/mapfiles/county/mt-counties.json new file mode 100644 index 00000000..a11e62e9 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/mt-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-116.0498459669999,44.358202625000104,-104.0395524669998,49.001102767000134],"geometries":[{"type":"Polygon","properties":{"name":"MT"},"id":"30105","arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30029","arcs":[[6,7,8,9,10,11,12,13,14,15]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30071","arcs":[[-5,16,17,18,19,20]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30053","arcs":[[-15,21,22]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30035","arcs":[[23,24,-7,25]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30041","arcs":[[26,27,28,29]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30005","arcs":[[-20,30,31,-30,32]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30019","arcs":[[33,34,-1,35]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30051","arcs":[[36,37,38,-28,39]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30101","arcs":[[40,-38,41,-24]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30091","arcs":[[42,-34,43]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30085","arcs":[[-43,44,45,46,-2,-35]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30073","arcs":[[-42,-37,47,48,-8,-25]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30015","arcs":[[-32,49,50,51,52,-48,-40,-27]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30089","arcs":[[-14,53,54,55,56,-22]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30083","arcs":[[57,58,59,60,-46]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30099","arcs":[[-53,61,62,-9,-49]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30055","arcs":[[-61,63,64,65,-3,-47]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30047","arcs":[[66,-54,-13]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30033","arcs":[[-66,67,68,69,70,-17,-4]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30049","arcs":[[71,72,73,74,75,-10,-63]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30027","arcs":[[-19,76,77,78,79,80,-50,-31]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30021","arcs":[[-60,81,82,-64]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30013","arcs":[[83,84,-72,-62,-52]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30063","arcs":[[-12,85,86,87,88,89,-55,-67]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30077","arcs":[[-76,90,91,92,-86,-11]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30069","arcs":[[-71,93,94,-77,-18]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30061","arcs":[[-90,95,-56]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30045","arcs":[[-81,96,97,-84,-51]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30109","arcs":[[98,99,100,-82,-59]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30079","arcs":[[-101,101,102,-68,-65,-83]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30059","arcs":[[-98,103,104,105,106,107,-73,-85]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30017","arcs":[[108,109,110,111,-69,-103]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30087","arcs":[[-112,112,113,114,115,116,-94,-70]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30039","arcs":[[117,118,-87,-93]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30007","arcs":[[-108,119,120,-74]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30065","arcs":[[-117,121,122,-78,-95]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30037","arcs":[[-123,123,124,125,126,-79]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30107","arcs":[[-80,-127,127,-104,-97]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30025","arcs":[[128,129,-109,-102,-100]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30081","arcs":[[-119,130,131,132,-88]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30043","arcs":[[-121,133,134,135,136,-91,-75]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30111","arcs":[[137,138,139,140,-124,-122,-116]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30103","arcs":[[141,-138,-115]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30023","arcs":[[-137,142,143,-131,-118,-92]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30097","arcs":[[-126,144,145,-105,-128]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30031","arcs":[[-107,146,147,148,-134,-120]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30067","arcs":[[-146,149,150,151,-147,-106]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30093","arcs":[[152,153,-143,-136]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30011","arcs":[[154,155,-110,-130]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30095","arcs":[[-141,156,-150,-145,-125]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30003","arcs":[[-114,157,158,159,-139,-142]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30001","arcs":[[-154,160,161,-132,-144]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30057","arcs":[[-149,162,-161,-153,-135]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30075","arcs":[[-156,163,-158,-113,-111]]},{"type":"Polygon","properties":{"name":"MT"},"id":"30009","arcs":[[-160,164,-151,-157,-140]]}]},"states":{"type":"GeometryCollection","bbox":[-116.0498459669999,44.358202625000104,-104.03955246699985,49.001102767000134],"geometries":[{"type":"Polygon","properties":{"name":"Montana"},"id":"30","arcs":[[25,40,38,28,32,20,5,35,43,44,57,98,128,154,163,158,164,151,147,162,161,132,88,95,56,22,15]]}]}},"arcs":[[[82743,99964],[0,-9],[0,-133],[0,-7],[0,-43],[1,-269],[-1,-207],[0,-262],[0,-129],[0,-275],[1,-373],[0,-204],[-16,0],[-97,-2],[-45,0],[-173,-1],[0,-324],[0,-72],[0,-42],[-1,-329],[-2,-167],[1,-222],[0,-144],[0,-2],[0,-457],[0,-27],[0,-82],[10,0],[210,0],[76,0],[202,0],[41,0],[95,1],[126,-1],[54,0],[6,0],[85,0],[9,0],[3,-1],[16,0],[18,0],[57,1],[3,0],[76,0],[0,-135],[0,-1],[0,-184],[0,-1],[0,-28],[0,-44],[0,-68],[-1,-157],[2,-628],[0,-167],[1,-178],[-1,-93],[0,-186],[0,-163],[0,-147],[3,-313],[0,-127],[-1,-32],[1,-153],[0,-35],[-2,-267],[0,-87],[1,-236],[1,-154],[0,-142],[0,-80],[0,-43],[0,-206],[1,-60],[0,-96],[-1,-72],[0,-83],[-1,-312],[0,-313],[0,-311],[-1,-248],[-1,-47],[172,-17],[12,0],[125,2],[41,4],[86,1],[112,-2],[51,-2],[40,3],[79,-1],[12,-3],[12,-2],[156,1],[12,2],[17,0],[286,-2],[63,2],[23,0],[163,0],[133,-1],[48,0],[91,0],[72,0]],[[85305,90570],[-1,-246],[-1,-315],[0,-166],[0,-204],[0,-17],[-1,-326],[1,-72],[-4,-364],[0,-364],[0,-219],[0,-140],[0,-132],[0,-22],[-1,-261],[0,-1],[1,-119],[-1,-87],[2,-313],[0,-315],[1,-258],[0,-51],[0,-64],[0,-115],[0,-135],[0,-307],[0,-334],[0,-198],[-2,-242],[-1,-170],[1,-53],[3,-425],[0,-26],[-2,-20],[-1,-8],[2,-26],[0,-23],[0,-29],[0,-47],[0,-37],[0,-46],[1,-38],[-1,-148],[1,-72],[1,-193],[1,-109],[0,-170],[0,-22],[0,-110],[1,-253],[-325,-3],[-2,-783],[0,-150],[0,-206],[-1,-269],[-1,-28],[0,-116],[-2,-321],[0,-152],[2,-143],[0,-278],[-1,-65],[0,-487],[0,-5],[-1,-42],[0,-111],[0,-73],[0,-12],[0,-160],[0,-37],[0,-76],[0,-191],[0,-2],[0,-40],[1,-186],[2,-126],[0,-75],[0,-85],[0,-76],[0,-107],[0,-66],[0,-28]],[[84977,78659],[-19,-13],[-34,-17],[-15,-8],[-15,-5],[-14,2],[-9,11],[-7,37],[-4,26],[-9,25],[-8,19],[-14,24],[-23,42],[-19,18],[-22,18],[-34,25],[-9,10],[-10,9],[-14,17],[-16,26],[-15,29],[-6,24],[-8,62],[-7,56],[-5,53],[-3,25],[-12,35],[-11,18],[-26,19],[-27,10],[-25,-7],[-17,-38],[-5,-37],[4,-60],[7,-91],[3,-83],[-1,-75],[4,-33],[5,-73],[-1,-46],[-7,-37],[-16,-44],[-28,-43],[-35,-31],[-41,-25],[-38,-13],[-25,1],[-23,17],[-15,22],[-25,57],[-15,29],[-16,24],[-22,32],[-14,22],[-27,20],[-30,11],[-32,-4],[-20,-4],[-16,-12],[-14,-8],[-13,2],[-17,7],[-18,-1],[-33,-1],[-32,9],[-31,16],[-22,10],[-23,10],[-20,17],[-26,29],[-17,22],[-20,36],[-11,33],[-8,35],[-9,29],[-13,28],[-13,14],[-14,16],[-18,25],[-19,29],[-17,22],[-12,11],[-27,29],[-19,9],[-39,1],[-24,-1],[-17,2],[-13,-4],[-16,-15],[-19,-43],[-21,-61],[-9,-43],[16,-83],[25,-45],[34,-57],[14,-22],[9,-5],[11,-2],[6,-30],[1,-76],[-27,-102],[-19,-27],[-29,-16],[-51,-10],[-25,0],[-23,16],[-25,31],[-17,23],[-18,8],[-21,1],[-19,16],[-14,45],[-6,50],[-9,84],[-9,63],[-12,29],[-16,55],[-18,33],[-15,37],[-19,45],[-22,30],[-26,32],[-18,22],[-24,21],[-13,10],[-9,6],[-34,12],[-3,1],[-2,1],[-10,3],[-13,5],[-28,-2],[-27,-16],[-21,-34],[-2,-42],[-2,-26],[8,-30],[15,-36],[10,-26],[3,-65],[-10,-49],[-14,-43],[-15,-30],[-17,-41],[-16,-49],[-20,-49],[-25,-26],[-33,-36],[-39,-26],[-10,-6],[-37,-22],[-35,-15],[-24,-9],[-21,4],[-26,10],[-26,14],[-25,12],[-46,4],[-40,6],[-23,15],[-7,26],[-1,27],[6,26],[17,43],[19,31],[21,18],[16,14],[11,19],[15,11],[23,17],[19,20],[21,36],[9,21],[6,26],[7,32],[3,29],[3,35],[-4,24],[-9,20],[-15,31],[-28,31],[-25,10],[-23,-4],[-16,-7],[-31,-22],[-24,-13],[-22,-11],[-18,6],[-23,19],[-11,0],[-21,-10],[-17,1],[-17,-4],[-33,-14],[-26,-9],[-14,2],[-27,-20],[-11,-10],[-27,-5],[-18,8],[-13,15],[-15,12],[-18,0],[-28,-2],[-26,-5],[-23,-10],[-12,-6],[-16,-8],[-35,-18],[-11,-4],[-25,-9],[-54,1],[-18,-7],[-27,1],[-48,6],[-26,0],[-37,-4],[-46,17],[-48,33],[-35,26],[-14,29],[-8,21],[-26,35],[-26,37],[-12,13],[-24,23],[-30,24],[-22,37],[-45,100],[-24,29],[-26,10],[-23,-6],[-30,0],[-29,-21],[-17,-42],[-19,-44],[-29,-19],[-28,2],[-36,18],[-10,19],[-8,28],[-1,43],[-17,98],[-20,46],[-21,29],[-27,28],[-31,15],[-12,-1],[-23,-2],[-30,-43],[-30,-33],[-51,-77],[-18,-27],[-7,-11],[-7,-11],[-43,-38],[-32,-12],[-32,1],[-36,13],[-47,32],[-10,4],[-9,10],[-20,40],[-2,27],[1,42],[3,49],[-1,48],[-10,48],[-13,35],[-19,29],[-22,23],[-16,9],[-40,5],[-17,12],[-11,4],[-17,0],[-21,3],[-13,4],[-21,13],[-15,1],[-10,-8],[-18,-27],[-12,-13],[-13,-12],[-4,-20],[-4,-20],[-8,-17],[-16,-23],[-12,-25],[-8,-21],[-7,-19],[-1,-27],[-7,-26],[-16,-43],[-13,-38],[-8,-31],[-1,-22],[-9,-22],[-14,-21],[-15,-35],[-22,-119],[-11,-62],[-1,-41],[-10,-66],[-10,-70],[-11,-27],[-19,-11],[-8,-30],[-11,-39],[-3,-34],[5,-31],[18,-23],[14,-29],[5,-21],[10,-48],[3,-32],[1,-32],[-2,-34],[1,-24],[1,-46],[3,-49],[4,-30],[3,-8],[5,-12],[1,-6],[5,-17],[4,-14],[5,-16],[6,-34],[1,-44],[-2,-21],[-6,-24],[-7,-34],[0,-24],[2,-37],[5,-32],[5,-32],[5,-28],[5,-39],[4,-26],[5,-30],[5,-25],[3,-18],[3,-12],[3,-16],[6,-30],[6,-32],[2,-26],[2,-30],[0,-52],[-3,-30],[-5,-33],[-6,-45],[-4,-21],[-4,-22],[-7,-37],[-11,-36]],[[80191,77520],[-7,-20],[-7,-19],[-8,-15],[-8,-11],[-9,-9],[-13,1],[-15,6],[-8,6],[-3,3],[-12,6],[-8,15],[-9,17],[-5,22],[-6,22],[-5,25],[-4,24],[-1,37],[1,26],[3,23],[6,20],[8,23],[12,35],[6,17],[1,6],[4,16],[6,30],[1,23],[-1,43],[-2,24],[-4,22],[-9,28],[-6,17],[-8,15],[-7,11],[-12,13],[-9,10],[-12,9],[-9,7],[-8,4],[-10,6],[-9,7],[-17,0],[-24,6],[-12,0],[-11,-4],[-11,-11],[-8,-15],[-5,-30],[3,-43],[3,-22],[2,-28],[3,-26],[1,-21],[-3,-26],[-5,-21],[-10,-20],[-7,-11],[-8,-10],[-13,-18],[-13,-17],[-8,-11],[-7,-10],[-10,-13],[-9,-10],[-15,-16],[-11,-11],[-11,-9],[-10,-6],[-9,-4],[-11,-2],[-21,-3],[-11,0],[-11,0],[-13,-2],[-14,-2],[-1,0],[-26,-2],[-15,-2],[-17,-5],[-17,-4],[-17,-6],[-13,-6],[-35,-18],[-12,-9],[-14,-10],[-10,-11],[-15,-16],[-7,-19],[-11,-25],[-9,-24],[-12,-28],[-8,-24],[-9,-24],[-13,-34],[-6,-22],[-3,-21],[0,-22],[8,-23],[10,-13],[4,-3],[4,-2],[9,-6],[13,-6],[11,-5],[12,-6],[8,-1],[16,-8],[12,-13],[16,-17],[16,-37],[5,-17],[4,-19],[6,-33],[8,-49],[9,-32],[7,-37],[3,-22],[-1,-43],[-3,-21],[-5,-20],[-8,-32],[-7,-21],[-6,-24],[-7,-28],[-10,-47],[-7,-26],[-5,-30],[-7,-31],[-8,-23],[-14,-26],[-10,-13],[-10,0],[-13,-2],[-13,0],[-10,2],[-34,2],[-17,-4],[-12,-5],[-11,-6],[-11,-4],[-2,-2],[-22,-16],[-10,-8],[-9,-7],[-8,-8],[-9,-11],[-18,-26],[-7,-13],[-9,-17],[-12,-22],[-12,-30],[-5,-47],[8,-17],[2,-24],[10,-32],[9,-24],[11,-17],[7,-11],[12,-19],[17,-18],[9,-10],[6,-5],[11,-10],[10,-11],[25,-22],[9,-11],[10,-12],[10,-13],[8,-9],[10,-19],[5,-26],[5,-24],[5,-30],[0,-28],[0,-32],[-3,-24],[-2,-22],[-4,-21],[-6,-26],[-12,-9],[-19,-2],[-18,9],[-26,17],[-9,4],[-13,9],[-10,4],[-12,5],[-35,2],[-18,-5],[-12,-4],[-5,-3],[-10,-8],[-10,-6],[-11,-9],[-17,-15],[-8,-11],[-11,-12],[-10,-16],[-9,-14],[-9,-21],[-7,-21],[2,-38],[2,-33],[10,-30],[10,-17],[2,-3],[10,-14],[15,-24],[10,-17],[18,-15],[10,-9],[18,-24],[8,-8],[8,-13],[9,-17],[7,-33],[-2,-23],[2,-37],[2,-24],[-1,-23],[-2,-26],[-7,-32],[-4,-33],[-10,-34],[-15,-26],[-15,-17],[-29,-5],[-11,0],[-20,3],[-26,0],[-23,-3],[-23,-1],[-12,-1],[-29,-8],[-20,-11],[-21,-20],[-15,-25],[-10,-20],[-8,-28],[-2,-28],[5,-51],[7,-33],[5,-15],[2,-6],[8,-43],[10,-43],[3,-26],[3,-48],[1,-23],[1,-33],[-3,-36],[-12,-63],[-34,-93],[-6,-14],[-6,-18],[-9,-26],[-15,-15],[-17,-13],[-12,-10],[-11,-9],[-29,-13],[-21,2],[-33,2],[-31,9],[-19,-9],[-25,-12],[-9,-7],[-10,-6],[-32,-24],[-30,-19],[-19,-13],[-20,-14],[-28,-34],[-12,-19],[0,-22],[10,-28],[7,-23],[4,-11],[9,-30],[15,-37],[9,-17],[7,-22],[10,-56],[2,-36],[-3,-67],[0,-41],[-4,-41],[-9,-43],[-12,-28],[-15,-39],[-12,-34],[-9,-24],[-11,-19],[-14,-2],[-6,17],[-12,32],[-6,43],[-5,35],[-9,47],[-7,37],[-7,30],[-7,28],[-11,21],[-14,18],[-12,10],[-12,12],[-10,6],[-15,2],[-17,2],[-9,2],[-9,2],[-12,4],[-12,3],[-9,2],[-8,2],[-10,0],[-21,0],[-11,0],[-16,-2],[-8,-7],[-18,-15],[-12,-11],[-10,-4],[-10,-8],[-11,-18],[-6,-19],[0,-3],[-2,-32],[-1,-25],[1,-22],[2,-32],[-2,-35],[-3,-30],[-5,-34],[-6,-20],[-6,-17],[-9,-37],[-6,-25],[-9,-24],[-10,-22],[-8,-17],[-8,-13],[-9,-13],[-9,-8],[-11,-13],[-9,-5],[-10,-6],[-10,4],[-7,17],[-6,20],[-7,21],[-10,26],[-10,22],[-7,14],[-4,9],[-12,16],[-12,13],[-23,6],[-11,2],[-10,2],[-13,0],[-13,-2],[-13,0],[-21,-2],[-10,0],[-8,-2],[-11,-2],[-12,-2],[-9,-3],[-20,-8],[-15,-9],[-14,-9],[-9,-4],[-11,-8],[-9,-5],[-13,-8],[-8,-5],[-15,-13],[-8,-15],[-2,-30],[4,-34],[2,-26],[0,-37],[0,-36],[1,-11],[1,-28],[2,-45],[0,-39],[-6,-80],[-8,-30],[-6,-17],[-5,-20],[-7,-23],[-7,-20],[-11,-28],[-10,-26],[-11,-25],[-23,-35],[-11,-17],[-10,-17],[-8,-18],[-7,-19],[-7,-19],[-12,-39],[-5,-19],[-9,-37],[-6,-19],[-18,-24],[-14,-7],[-9,-4],[-9,-4],[-34,-18],[-2,-2],[-18,-10],[-13,-11],[-12,-11],[-10,-9],[-10,-10],[-16,-14],[-10,-4],[-15,0],[-13,0],[-11,7],[-10,15],[-13,17],[-14,13],[-20,15],[-23,20],[-20,15],[-21,10],[-23,5],[-20,12],[-24,18],[-6,4],[-28,22],[-28,28],[-32,19],[-31,15],[-34,11],[-33,8],[-50,5],[-48,0],[-31,-3],[-16,-1],[-52,-7],[-55,-2],[-49,-4],[-47,-7],[-45,-17],[-44,-24],[-42,-28],[-34,-19],[-29,-28],[-10,-20],[-10,-21],[-15,-50],[-14,-47],[-10,-47],[-8,-52],[-8,-52],[-5,-47],[-2,-54],[5,-43],[8,-47],[5,-48],[7,-51],[8,-52],[10,-50],[7,-51],[8,-46],[1,-43],[-1,-54],[-6,-51],[-9,-50],[-10,-56],[-13,-51],[-7,-19],[-13,-31],[-9,-16],[-6,-10],[-15,-26],[-41,-38],[-47,-39],[-53,-30],[-52,-26],[-51,-24],[-47,-21],[-48,-13],[-41,0],[-33,10],[-27,20],[-29,26],[-28,10],[-7,0],[-1,0],[-23,0],[-31,-2],[-31,0],[-32,0],[-29,0],[-29,2],[-25,9],[-24,6],[-24,3],[-19,2],[-19,2],[-16,0],[-15,2],[-15,-2],[-12,0],[-13,-2],[-9,-2],[-17,-5],[-11,0],[-13,-4],[-11,-2],[-9,-2],[-10,-5],[-8,-4],[-10,-6],[-10,-7],[-14,-13],[-13,-9],[-6,-21],[-8,-32],[-6,-23],[-6,-13],[-1,-3],[-8,-18],[-11,-25],[-8,-17],[-12,-19],[-11,-18],[-9,-14],[-9,-9],[-9,-9],[-11,-9],[-31,-13],[-9,-5],[-11,-1],[-13,-2],[-10,-2],[-11,-2],[-15,-2],[-12,-1],[-10,-3],[-12,1],[-14,5],[-12,8],[-13,11],[-12,8],[-12,7],[-14,2],[-11,-2],[-24,1],[-18,-2],[-15,0],[-21,2],[-16,2],[-21,6],[-22,1],[-36,-1],[-11,-1],[-18,-2],[-13,-3],[-12,1],[-9,-2],[-9,-1],[-11,1],[-11,4],[-14,4],[-11,4],[-12,3],[-14,3],[-22,11],[-12,7],[-14,10],[-9,5],[-14,7],[-17,12],[-12,9],[-13,9],[-15,9],[-13,7],[-12,5],[-14,5],[-14,3],[-15,5],[-14,4],[-17,5],[-12,3],[-10,2],[-14,2],[-18,3],[-10,-1],[-12,1],[-9,0],[-8,0],[-13,1],[-14,0],[-12,-1],[-10,-1],[-19,-1],[-9,1],[-9,0],[-9,-2],[-16,-3],[-18,-2],[-11,0],[-11,0],[-10,-1],[-18,-2],[-21,-2],[-10,1],[-7,1],[-21,0],[-17,-1],[-23,-3],[-23,-4],[-21,-3],[-14,-1],[-20,-8],[-19,-11],[-17,-10],[-13,-10],[-15,-16],[-13,-17],[-15,-21],[-12,-15],[-5,-7],[-3,-4],[-9,-9],[-22,-5],[-18,-3],[-16,-3],[-20,-4],[-17,0],[-15,-1],[-15,-1],[-15,-1],[-12,0],[-13,4],[-3,3],[-11,12],[-15,16],[-10,8],[-9,8],[-12,2],[-10,-1],[-14,1],[-10,-3],[-12,-4],[-18,-7],[-12,-8],[-10,-5],[-4,-2],[-12,-5],[-21,-4],[-10,-1],[-11,-2],[-19,-1],[-16,0],[-12,-1],[-13,-1],[-16,1],[-11,2],[-12,-1],[-12,-1],[-15,-1],[-9,0],[-15,-2],[-12,-1],[-12,-1],[-10,0],[-13,0],[-12,1],[-11,2],[-11,-1],[-19,2],[-10,7],[-10,8],[-9,8],[-15,15],[-8,10],[-11,11],[-9,13],[-10,18],[-12,23],[-13,22],[-11,19],[-9,16],[-1,1],[-9,18],[-9,20],[-11,26],[-11,25],[-14,29],[-13,25],[-11,18],[-18,24],[-13,17],[-10,9],[-11,8],[-26,13],[-18,6],[-11,3],[-6,0],[-5,0],[-17,2],[-15,-1],[-15,1],[-14,1],[-18,1],[-16,0],[-21,3],[-13,0],[-21,2],[-12,0],[-12,0],[-16,0],[-18,-1],[-10,-1],[-10,-1],[-19,0],[-9,0],[-16,-1],[-11,-1],[-22,0],[-16,-2],[-13,0],[-19,-1],[-7,-1],[-7,-1],[-20,2],[-12,5],[-23,16],[-13,10],[-17,17],[-11,11],[-12,9],[-13,11],[-13,11],[-9,9],[-10,12],[-8,11],[-9,15],[-9,16],[-11,17],[-10,14],[-9,13],[-20,24],[-13,11],[-11,4],[-18,10],[-17,7],[-21,3],[-16,1],[-19,2],[-21,0],[-13,1],[-10,2],[-13,-2],[-19,-2],[-10,0],[-9,0],[-13,1],[-11,-1],[-15,1],[-17,1],[-13,-1],[-12,-1],[-14,-2],[-9,-1],[-11,0],[-13,1],[-14,1],[-20,0],[-17,-1],[-15,-1],[-16,-5],[-21,-5],[-17,-7],[-3,-2]],[[71896,71796],[0,232],[0,52],[4,164],[0,464],[0,109],[-5,236],[0,267],[1,156],[0,154],[0,85],[1,263],[0,238],[0,307],[3,1126],[82,3],[0,223],[1,398],[-1,141],[-1,193],[0,282],[0,220],[0,82],[0,68],[0,112],[0,46],[0,48],[1,93],[-1,37],[0,51],[0,173],[0,170],[0,94],[0,65],[0,289],[-1,294],[0,432],[1,312],[0,67],[0,153],[0,400],[1,230],[0,26],[-2,578],[0,200],[2,613],[0,312],[0,599],[0,486],[288,0],[1,179],[1,181],[0,323],[1,169],[0,15],[1,379],[1,282],[0,342],[248,-4],[259,-4],[156,-2],[66,0],[176,2],[1,282],[2,386],[-1,32],[1,89],[-1,309],[0,415],[0,102],[0,134],[0,170],[-94,0],[-6,0],[-145,1],[-92,0],[-3,235],[0,63],[-1,76],[0,44],[0,155],[0,51],[-1,307],[0,33],[0,30],[0,2],[0,236],[0,13],[1,148],[-1,80],[1,83],[-1,318],[161,1],[20,-1],[127,0],[54,-1],[-4,412],[3,39],[0,115],[0,103],[-1,63],[10,-2],[10,1],[11,8],[10,15],[12,24],[10,5],[12,-2],[13,-19],[8,-19],[8,-17],[7,-14],[16,-11],[12,1],[14,13],[18,13],[13,10],[8,7],[16,2],[8,-6],[9,-17],[17,-36],[7,-16],[7,-21],[5,-23],[8,-8],[15,2],[21,11],[12,4],[11,-8],[-3,-29],[12,-20],[16,-1],[13,1],[12,10],[7,15],[12,18],[16,5],[12,-6],[13,-20],[14,-5],[18,17],[10,21],[13,7],[9,-4],[13,-16],[27,-9],[1,0],[1,29],[0,107],[0,116],[0,75],[0,65],[0,350],[0,521],[-113,0],[0,34],[0,111],[0,175],[1,139],[2,198],[-1,65],[0,77],[0,174],[0,32],[0,223],[0,262],[0,226],[0,507],[-1,249],[0,263],[0,148],[0,154],[0,85],[0,1],[0,173],[0,2],[0,70],[0,6],[0,101],[0,145],[0,138],[0,100],[0,5],[-1,58],[0,73],[1,471],[0,818],[1,105],[0,646],[0,135],[1,315],[0,129],[0,185],[0,45],[0,118],[0,461],[15,0],[202,0],[0,60],[0,23],[0,232],[1,580],[0,9],[1,981]],[[73853,99977],[36,0],[130,0],[122,-1],[260,0],[207,0],[1,0],[189,0],[325,0],[346,0],[273,-1],[121,0],[191,0],[259,0],[236,0],[303,0],[211,0],[297,-1],[238,-1],[219,-1],[264,0],[213,0],[310,0],[293,-2],[261,-1],[204,-2],[285,0],[326,-1],[301,0],[252,-1],[4,0],[2,0],[121,0],[5,0],[322,-1],[206,-1],[216,-1],[364,-1],[224,1],[223,0],[172,1],[118,0],[240,1]],[[16501,99951],[8,-26],[9,-29],[5,-27],[4,-21],[-3,-30],[5,-19],[7,-21],[11,-14],[15,-14],[11,-16],[12,-21],[7,-22],[7,-20],[3,-41],[2,-24],[-4,-21],[-10,-22],[-6,-24],[5,-26],[-1,-23],[1,-32],[5,-21],[7,-23],[7,-27],[11,-15],[8,-12],[6,-17],[2,-22],[0,-32],[3,-27],[4,-30],[3,-26],[9,-18],[12,-5],[11,-13],[13,1],[18,3],[12,2],[9,0],[15,10],[14,10],[18,12],[12,5],[14,4],[15,2],[11,1],[13,-13],[10,-15],[19,-22],[14,-12],[6,-18],[-11,-22],[-14,-35],[-10,-19],[-15,-34],[-9,-10],[-11,-18],[-11,-19],[-19,-28],[-11,-22],[-9,-15],[-15,-25],[-12,-20],[-10,-18],[-9,-23],[-13,-24],[2,-29],[4,-44],[1,-38],[-4,-20],[-8,-14],[-7,-15],[-8,-9],[-10,-14],[-9,-16],[7,-21],[5,-20],[7,-26],[14,-19],[8,-7],[10,-4],[9,-2],[8,-4],[15,-5],[11,-1],[13,7],[11,10],[13,6],[16,4],[14,0],[10,3],[8,6],[14,-1],[11,-59],[7,-22],[7,-17],[12,-33],[9,-13],[12,-11],[10,-3],[12,-18],[-1,-27],[-5,-24],[-5,-25],[4,-25],[0,-25],[-1,-27],[-8,-25],[0,-24],[11,-17],[5,-27],[5,-32],[3,-29],[1,-24],[-3,-26],[-7,-20],[-9,-18],[-10,-16],[-4,-25],[-4,-21],[-10,-20],[-13,-14],[-12,-12],[-13,-14],[-13,-13],[-18,-17],[-15,-4],[-9,-10],[-9,-19],[-13,-15],[-10,-1],[-16,-18],[-13,-19],[-14,-8],[-9,1],[-14,0],[-8,-2],[-15,-13],[-13,-10],[-15,8],[-9,-2],[-13,3],[-8,5],[-13,7],[-13,-1],[-2,-24],[-4,-40],[-8,-35],[-5,-33],[24,-23],[24,-20],[18,-8],[9,-1],[9,-8],[11,-20],[6,-20],[10,-6],[13,-7],[11,-4],[14,-9],[13,-13],[10,-9],[13,-8],[12,0],[10,-13],[8,-15],[11,-31],[7,-28],[5,-31],[6,-15],[7,-18],[2,-25],[16,-34],[3,-23],[9,-18],[9,-20],[11,-20],[8,-14],[9,-18],[7,-16],[16,-15],[11,4],[12,3],[17,-6],[8,-11],[10,-7],[12,7],[17,-8],[5,-25],[9,-13],[3,-19],[3,-8],[4,-9],[14,-26],[8,-9],[3,-7],[18,-42],[14,-14],[8,-25],[12,-17],[9,-23],[2,-25],[5,-34],[11,-37],[5,-20],[6,-54],[-3,-27],[1,-64],[-8,-34],[-17,-11],[-29,-5],[-9,0],[-17,6],[0,-27],[-7,-19],[-1,-1],[-7,-15],[-11,-15],[-7,-35],[1,-25],[5,-19],[11,-14],[8,-5],[12,-8],[10,-15],[27,-26],[20,-16],[18,-12],[12,-13],[31,-12],[9,-9],[18,0],[7,-20],[8,-22],[18,-16],[8,-39],[4,-25],[11,-21],[11,-12],[14,-1],[-6,28],[6,42],[9,31],[17,-1],[15,11],[11,-2],[8,-14],[12,-38],[13,-25],[19,-30],[23,-23],[22,5],[24,34],[13,15],[24,29],[16,23],[10,35],[-1,37],[19,2],[14,-13],[20,10],[10,2],[10,20],[11,15],[14,8],[22,21],[9,6],[15,26],[10,16],[9,26],[9,38],[14,7],[14,12],[21,31],[14,42],[3,52],[1,28],[4,47],[14,39],[5,51],[6,31],[6,-30],[11,-13],[20,-25],[19,-5],[26,7],[16,2],[19,-11],[26,-21],[9,-18],[9,-19],[14,-45],[18,-9],[8,-13],[21,-13],[11,-2],[9,-6],[17,-21],[22,-12],[11,-12],[8,-6],[2,31],[5,38],[3,21],[7,14],[8,11],[13,9],[8,8],[9,16],[9,19],[6,20],[9,28],[14,14],[10,13],[14,16],[13,12],[18,20],[14,3],[11,0],[17,16],[10,11],[17,1],[12,15],[8,18],[10,18],[12,20],[13,3],[7,-12],[9,-22],[4,-18],[5,-19],[6,-20],[8,-11],[12,-7],[17,-6],[11,-3],[11,-9],[10,-10],[9,-1],[19,-10],[12,-10],[15,-2],[21,-4],[10,1],[13,-6],[2,-24],[1,-34],[-1,-38],[3,-42],[15,-24],[7,-11],[8,-11],[13,-5],[16,-10],[18,-2],[24,9],[11,6],[9,6],[12,21],[7,23],[10,23],[11,12],[15,19],[11,14],[9,9],[17,3],[10,5],[9,-15],[3,-26],[6,-18],[10,-22],[8,-29],[3,-34],[3,-22],[3,-32],[-5,-23],[1,-35],[6,-17],[8,-11],[9,-14],[9,-18],[10,-25],[14,-16],[7,-13],[8,-15],[8,-20],[14,-22],[9,-9],[12,-18],[13,-26],[13,-1],[15,1],[4,-25],[11,-16],[9,-6],[15,-11],[11,-9],[14,-13],[11,-12],[12,-20],[-7,-25],[-10,-7],[-9,-19],[2,-23],[-5,-27],[-2,-25],[3,-21],[1,-23],[-8,-20],[-5,-21],[-8,-34],[-4,-19],[-2,-28],[-9,-22],[-12,-13],[-9,-7],[-17,-18],[-12,-12],[-16,-4],[-7,-23],[-3,-28],[1,-28],[5,-27],[2,-24],[3,-20],[4,-21],[2,-35],[6,-22],[1,-30],[-5,-27],[13,-30],[11,-6],[9,-8],[9,-14],[3,-29],[4,-21],[4,-25],[1,-27],[2,-32],[9,-30],[7,-23],[1,-29],[3,-23],[8,-18],[15,-13],[11,-16],[15,-21],[15,-26],[7,-13],[11,-13],[16,-14],[14,-12],[14,-7],[18,-15],[17,-19],[-3,-22],[-2,-22],[-1,-25],[7,-25],[4,-26],[5,-31],[5,-27],[5,-17],[1,-23],[6,-32],[3,-20],[6,-15],[8,-17],[12,-26],[33,-35],[8,-17],[11,-20],[20,-29],[20,-16],[13,-6],[47,-22],[8,-7],[19,-19],[8,-23],[19,-79],[6,-18],[15,-40],[8,-57],[9,-23],[-7,-34],[-3,-40],[-10,-45],[-3,-23],[10,-26],[13,-21],[8,-4],[28,-47],[1,-74],[-12,-1],[-11,-19],[-9,-13],[-4,-30],[3,-22],[-12,-34],[3,-23],[-7,-13],[2,-29],[-6,-29],[-12,-57],[-15,-46],[-11,-24],[6,-25],[-15,-27],[-19,-6],[-11,-29],[-13,-33],[-53,-32],[-23,0],[-13,5],[-13,6],[-10,0],[-10,-1],[-24,-7],[-13,-7],[-12,-4],[-8,-15],[8,-42],[0,-25],[8,-18],[19,-37],[-3,-30],[-1,-23],[6,-28],[10,-34],[14,-34],[10,-23],[6,-32],[2,-28],[3,-21],[17,-39],[13,-18],[14,-23],[-41,-63],[-8,-15],[-21,-27],[-5,-21],[-15,-22],[-17,-29],[0,-32],[-8,-64],[-7,-38],[-8,-32],[-12,-31],[-18,-30],[-1,-33],[-4,-87],[-3,-52],[4,-32],[-1,-24],[-7,-48],[7,-15],[5,-16],[12,-26],[8,-12],[6,-17],[-8,-20],[-21,-51],[-5,-20],[-3,-23],[-5,-46],[-3,-48],[5,-42],[-20,-27],[-13,-25],[-17,-38],[-6,-16],[2,-23],[6,-22],[15,-49],[5,-19],[22,-35],[9,-4],[18,-10],[15,-13],[10,0],[13,-26],[14,-12],[11,-12],[9,3],[12,-2],[6,-17],[19,-30],[-1,-26],[15,-17],[10,-45],[12,-10],[5,-29],[11,-2],[12,-9],[12,10],[11,2],[11,-2],[14,-17],[19,-19],[10,-28],[3,-6],[5,-10],[12,-25],[9,-10],[8,-9],[2,-4],[10,-7],[38,-7],[23,-6],[17,-6],[24,-9],[22,-11],[11,3],[16,1],[8,16],[11,4],[11,5],[17,6],[17,-8],[12,-8],[30,-24],[16,-23],[11,-16],[13,-16],[15,-28],[3,0],[11,2],[9,1],[8,-15],[20,-47],[9,-2],[14,-2],[16,18],[47,76],[24,37],[11,30],[9,15],[11,18],[2,3],[10,16],[13,47],[27,67],[19,-12],[30,-17],[24,-4],[11,-13],[23,-30],[25,-55],[17,-38],[4,-22],[19,-25],[8,-15],[16,-29],[12,-20],[3,-32],[-1,-24],[9,-44],[11,-60],[12,-19],[7,-19],[21,-31],[33,-19],[17,-19],[22,-9],[12,5],[30,31],[17,5],[14,16],[11,33],[0,25],[7,28],[17,27],[19,20],[25,-3],[26,9],[13,5],[12,-38],[7,-12],[10,-19],[9,-30],[5,-19],[23,26],[22,15],[14,23],[16,6],[26,23],[24,20],[32,-19],[32,30],[21,4],[15,18],[20,25],[9,-42],[16,-49],[4,-21],[8,-25],[17,-39],[10,-21],[13,-17],[23,12],[12,-13],[33,-39],[13,-9],[39,-26],[24,-10],[7,-48],[18,-66],[12,-84],[11,-76],[15,-15],[59,-27],[9,-26],[36,-71],[35,-27],[58,40],[101,-36],[49,-108],[-17,-139],[9,-13],[1,-31],[-11,-17],[-1,-51],[8,-23],[4,-78],[-37,-137],[6,-64],[2,-42],[4,-96],[-13,-29],[3,-51],[-4,-73],[-2,-77],[5,-58],[44,-47],[7,-25],[1,-24],[-9,-30],[-5,-22],[-4,-25],[-5,-21],[-18,-90],[-5,-22],[2,-24],[5,-36],[3,-25],[6,-33],[7,-18],[9,-29],[5,-26],[3,-37],[3,-38],[-1,-24],[-16,-28],[-9,-12],[-9,-21],[-17,-24],[-8,-23],[-5,-19],[-12,-50],[-7,-26],[-3,-37],[-4,-20],[-9,-15],[-9,-14],[-10,-29],[0,-31],[6,-42],[4,-36],[5,-32],[10,-1],[12,-6],[11,-9],[10,-6],[9,-2],[7,-21],[7,-14],[9,-16],[7,-16],[8,-21],[11,-10],[12,-7],[5,-22],[6,-15],[11,-5],[8,-2],[9,5],[18,-5],[12,3],[10,4],[10,1],[10,1],[9,5],[9,-8],[1,-26],[10,-23],[7,-12],[31,-17],[13,-11],[4,-24],[10,-37],[12,-32],[15,-42],[15,-25],[9,-13],[12,-1],[7,-14],[9,-3],[11,-5],[9,-2],[29,-21],[12,-4],[10,-11],[7,-34],[10,-14],[11,-13],[8,-13],[11,-14],[11,-37],[13,-13],[6,-17],[7,-22],[6,-25],[7,-14],[13,-15],[14,-5],[11,1],[17,0],[10,-3],[11,-8],[17,-10],[10,-4],[11,-4],[8,-6],[16,-7],[15,-7],[23,-5],[13,-6],[8,-3],[10,-1],[22,3],[9,5],[14,6],[10,7],[13,30],[14,22],[8,10],[15,8],[13,15],[7,10],[12,6],[9,3],[9,4],[9,8],[15,9],[9,-3],[9,-2],[8,0],[12,5],[13,7],[9,5],[9,6],[13,1],[5,-18],[0,-37],[7,-23],[11,-19],[9,-32],[5,-19],[7,-30],[10,-24],[5,-18],[8,-9],[-3,-25],[-8,-28],[-1,-26],[-8,-30],[0,-28],[-2,-27],[4,-26],[4,-26],[4,-26],[10,-19],[-1,-25],[-1,-24],[6,-23],[5,-29],[2,-33],[4,-22],[8,-14],[9,-8],[11,-9],[10,-8],[10,-9],[9,-9],[14,-20],[14,-25],[9,-14],[13,-11],[6,-20],[-4,-33],[0,-44],[-1,-23],[-6,-18],[-4,-19],[-6,-22],[-5,-43],[-6,-39],[-6,-26],[-4,-26],[-3,-19],[-6,-31],[-15,-38],[-8,-11],[-10,-9],[-7,-20],[-11,-29],[-8,-13],[-15,-15],[-8,-15],[-8,-31],[-10,-16],[-16,-19],[-8,-11],[-11,-7],[-11,-14],[-15,-22],[-8,-10],[-13,-20],[-9,-21],[-11,-20],[-9,-5],[-21,-17],[-11,-8],[-9,-3],[-8,-11],[-7,-16],[-9,-16],[-8,-12],[-6,-16],[-10,-35],[-6,-21],[-22,-41],[-15,-26],[-11,-16],[-14,-14],[-12,-4],[-11,-3],[-7,-10],[-1,-25],[8,-20],[19,-18],[8,-12],[6,-19],[6,-19],[11,-16],[16,-22],[6,-16],[9,-20],[10,-25],[8,-25],[4,-33],[-6,-28],[6,-27],[-3,-22],[-5,-25],[1,-28],[10,-12],[13,-3],[14,-4],[21,-14],[10,-17],[7,-26],[0,-22],[15,-15],[22,-5],[9,-10],[9,-12],[2,-3],[11,-13],[9,-10],[12,-2],[11,-2],[2,-22],[10,-14],[7,-18],[13,-29],[8,-16],[4,-24],[-10,-12]],[[22483,85117],[-3,-42],[10,-11],[-1,-22],[-6,-21],[9,-1],[8,-17],[-5,-35],[12,-10],[12,-9],[17,-2],[4,-21],[1,-23],[5,-24],[14,8],[9,2],[13,-5],[9,-5],[12,-8],[14,-17],[4,-26],[6,-19],[12,-7],[9,-10],[-3,-28],[4,-26],[5,-28],[8,-9],[4,-21],[8,-17],[19,-13],[12,-17],[11,9],[9,0],[13,3],[12,-9],[12,-3],[11,1],[12,-5],[14,-4],[10,-5],[17,-16],[17,-10],[20,-6],[14,-4],[16,-2],[19,-14],[6,-14],[5,-39],[7,-31],[9,-30],[6,-23],[6,-41],[2,-32],[7,-15],[11,-22],[8,-13],[3,-26],[9,-25],[2,-22],[0,-26],[-2,-32],[-6,-30],[11,-11],[10,-10],[17,-10],[14,-5],[19,-5],[7,-14],[10,-23],[15,-29],[10,-10],[18,-7],[10,1],[13,-5],[15,14],[11,3],[12,-22],[7,-15],[13,-13],[12,-10],[17,-33],[16,-18],[8,-2],[9,0],[16,3],[9,3],[20,5],[12,-11],[5,-29],[7,-20],[9,-13],[7,-14],[6,-21],[10,-16],[10,-19],[10,-9],[14,-8],[16,-5],[13,-16],[0,-29],[2,-32],[6,-26],[5,-28],[-1,-23],[3,-23],[10,-19],[9,-2],[8,-3],[9,-16],[7,-12],[12,-15],[8,-20],[8,-26],[4,-30],[-4,-27],[-10,-17],[-9,-14],[-3,-25],[1,-22],[8,-21],[10,-20],[5,-24],[-11,-7],[-8,-14],[-5,-25],[-8,-19],[-9,-19],[-12,-18],[-8,-7],[-9,-5],[-15,-19],[-4,-28],[3,-33],[4,-28],[-2,-34],[0,-23],[-9,-16],[-3,-27],[7,-23],[4,-29],[3,-25],[4,-22],[6,-20],[-3,-21],[-3,-20],[-1,-28],[4,-27],[6,-30],[-3,-24],[6,-21],[4,-21],[5,-21],[-6,-19],[1,-30],[-5,-20],[-5,-20],[7,-17],[4,-19],[4,-20],[7,-21],[9,-22],[-5,-25],[2,-26],[4,-32],[-9,-15],[-11,-6],[-10,-11],[-4,-27],[-4,-19],[-1,-26],[4,-45],[11,-24],[8,-25],[6,-30],[8,-18],[10,4],[14,17],[10,6],[10,-21],[9,-11],[11,-6],[11,2],[11,0],[8,-6],[8,-24],[15,-19],[8,-11],[11,-11],[8,-11],[7,-11],[10,-10],[10,-12],[10,-8],[8,-1],[13,14],[9,19],[10,21],[7,20],[6,21],[8,8],[9,-3],[17,-2],[15,-3],[9,0],[6,26],[7,14],[12,14],[3,20],[0,22],[1,26],[5,22],[11,7],[4,-29],[4,-22],[10,-19],[10,-11],[16,-8],[8,18],[2,22],[3,28],[8,9],[8,-6],[7,-18],[12,-29],[9,-25],[12,-18],[12,-26],[10,-12],[10,-10],[14,-14],[7,-13],[8,-10],[12,-12],[9,-8],[9,-8],[9,-19],[4,-35],[-4,-27],[6,-21],[10,-27],[9,-18],[12,-29],[9,-9],[9,-14],[9,-23],[13,-18],[12,-17],[10,-22],[8,-29],[9,7],[12,1],[9,14],[11,5],[9,-6],[8,8],[9,-1],[7,13],[12,8],[6,-20],[10,-26],[10,-17],[13,-3],[9,-8],[7,-13],[9,-26],[10,-28],[9,-14],[7,-19],[-6,-34],[1,-22],[2,-30],[1,-33],[-8,-19],[-8,-13],[-12,-6],[8,-13],[11,-20],[10,-13],[11,-10],[11,0],[9,6],[9,15],[7,20],[10,17],[11,-2],[11,-8],[11,2],[11,3],[10,-4],[12,-9],[9,4],[10,9],[8,11],[10,10],[12,-13],[12,0],[12,-6],[9,-5],[10,-7],[9,10],[12,8],[14,6],[11,6],[10,0],[10,8],[13,-6],[8,-19],[13,-18],[16,-15],[9,3],[8,13],[10,21],[8,16],[8,15],[13,14],[11,4],[12,4],[13,10],[6,25],[7,16],[16,23],[10,10],[10,3],[10,11],[10,18],[10,17],[10,10],[12,17],[-2,25],[-8,22],[-6,22],[-3,25],[9,-1],[8,-13],[9,-14],[8,-10],[8,-6],[8,-5],[11,-10],[7,-19],[10,-20],[9,-18],[8,-12],[7,-25],[7,-23],[10,-19],[8,-13],[13,-23],[7,-17],[-4,-24],[-7,-22],[-5,-24],[-5,-26],[-4,-26],[-3,-20],[4,-27],[9,-19],[2,-29],[3,-23],[4,-23],[-5,-28],[-6,-16],[-6,-28],[-1,-22],[6,-21],[9,-18],[12,-22],[12,-7],[13,-1],[9,17],[12,21],[9,11],[17,12],[11,1],[12,14],[8,14],[3,21],[0,26],[0,30],[5,24],[10,12],[16,6],[14,16],[8,22],[15,10],[12,4],[8,-14],[10,-19],[9,-22],[7,-22],[7,10],[13,3],[12,-10],[11,-6],[9,16],[7,20],[8,15],[9,11]],[[25252,81290],[10,-20],[8,-11],[12,-7],[8,-10],[7,-19],[7,-14],[9,-6],[10,14],[9,13],[11,7],[13,10],[12,9],[11,-1],[14,-4],[5,-19],[7,-28],[7,-19],[8,-18],[7,-15],[10,-15],[11,-11],[10,-6],[9,-2],[7,-13],[10,-20],[10,-19],[10,-13],[11,-19],[7,-20],[4,-21],[2,-28],[-10,-13],[-8,-11],[-8,-4],[-10,-2],[-9,-5],[-9,-4],[-8,-7],[-11,-12],[6,-24],[4,-24],[3,-28],[5,-24],[3,-25],[-2,-31],[-11,3],[-9,0],[-14,-11],[-9,-24],[4,-19],[1,-24],[2,-28],[2,-28],[3,-32],[5,-28],[7,-18],[11,-19],[12,-13],[12,-13],[13,-17],[12,-22],[8,-17],[9,-17],[7,-22],[6,-23],[8,-13],[10,-9],[4,-21],[-14,-20],[-13,-13],[7,-15],[10,-19],[6,-17],[0,-24],[5,-24],[6,-26],[-26,-92],[-3,-27],[0,-26],[9,-10],[11,-6],[11,-2],[10,-5],[9,10],[11,-3],[11,-4],[12,-11],[10,6],[11,18],[10,17],[9,2],[13,9],[15,-9],[10,-17],[6,-26],[4,-24],[9,-24],[7,-15],[9,-15],[9,-6],[8,-7],[10,-13],[7,-17],[8,-15],[10,-19],[11,-17],[8,-7],[9,-9],[9,-4],[8,-6],[8,-2],[9,-3],[16,3],[14,-11],[9,-13],[10,-20],[12,-17],[2,-23],[4,-26],[0,-30],[-7,-26],[-8,-9],[-12,-6],[-13,-9],[-11,-9],[-9,-10],[-16,-11],[-15,-20],[-7,-12],[-13,-26],[-8,-33],[-4,-91],[-2,-30],[-1,-32],[-1,-25],[7,-20],[4,-19],[5,-17],[-3,-31],[1,-28],[1,-28],[5,-21],[9,-17],[7,-13],[12,-7],[16,13],[7,11],[9,13],[9,11],[11,15],[14,6],[9,9],[14,-7],[14,-17],[13,-11],[14,-8],[13,-11],[13,-6],[10,6],[14,6],[8,-2],[17,-10],[11,-16],[6,-15],[10,-15],[11,-15],[13,-6],[8,2],[11,4],[11,2],[15,9],[15,-4],[8,-18],[5,-21],[7,-22],[7,-21],[6,-24],[8,-21],[8,-22],[5,-17],[8,-15],[8,-15],[10,-15],[10,-15],[9,-24],[3,-28],[3,-28],[0,-41],[-1,-22],[0,-25],[3,-28],[4,-22],[5,-22],[5,-19],[2,-24],[4,-23],[5,-28],[5,-22],[3,-26],[2,-30],[0,-1],[4,-33],[4,-34],[4,-23],[5,-28],[4,-35],[5,-19],[7,-32],[8,-37],[5,-19],[2,-32],[4,-33],[7,-17],[10,-27],[8,-35],[8,-22],[6,-17],[4,-20],[4,-21],[4,-26],[-3,-4],[-4,-8],[-11,-1],[-11,-3],[-15,-6],[-14,-2],[-13,-1],[-12,5],[-8,16],[-3,3],[-7,5],[-13,1],[-4,-5],[-6,-8],[-8,-24],[-10,-26],[-7,-14],[-8,-8],[-4,-19],[-3,-25],[-10,-20],[-3,-30],[-4,-35],[-2,-22],[0,-25],[-8,-16],[-5,-17],[-11,-10],[-9,1],[-9,-2],[-6,-15],[-3,-34],[4,-29],[-3,-48],[-8,-17],[-6,-26],[-5,-23],[-1,-33],[4,-27],[-10,-13],[-6,-20],[-6,-23],[-4,-26],[-8,-10],[-15,-4],[-14,0],[-13,4],[-14,-2],[-13,-10],[-15,-4],[-16,-1],[-16,-1],[-14,-7],[-14,2],[-16,-3],[-9,-12],[-11,-6],[-11,0],[-17,3],[-13,8],[-10,13],[-9,18],[-9,12],[-13,3],[-14,0],[-12,-3],[-9,-6],[-10,-12],[-10,-19],[-8,-9],[-5,20],[-7,14],[-11,25],[-8,24],[-5,25],[-7,14],[-8,17],[-8,11],[-17,7],[-10,0],[-15,-7],[-10,2],[-10,5],[-15,16],[-10,20],[-8,14],[-14,4],[-12,4],[-10,-1],[-10,0],[-12,1],[-8,2],[-10,2],[-16,9],[-10,-5],[-10,-13],[-10,-11]],[[25521,77446],[-12,-29],[-10,-11],[1,-22],[-5,-23],[-9,-5],[-13,-2],[-7,-21],[-10,-6],[-10,-9],[-9,-11],[-7,-13],[-9,-9],[-6,-23],[-3,-21],[-10,-13],[-9,-4],[-8,3],[-15,11],[-10,-3],[-12,-8],[-11,-7],[-10,-1],[-11,-6],[-11,-13],[-10,-9],[-10,-3],[-7,-14],[-4,-22],[-3,-22],[-3,-24],[-4,-29],[-8,-8],[-8,-9],[-6,-19],[-4,-25],[-5,-22],[-5,-22],[-9,-15],[-5,-23],[2,-21],[3,-24],[-5,-19],[-12,-6],[-12,-3],[-12,1],[-14,-4],[-13,-5],[-13,-8],[-15,-6],[-13,-2],[-16,3],[-11,-5],[-11,-1],[-12,0],[-12,1],[-10,-1],[-9,11],[-7,15],[-12,6],[-10,1],[-9,-5],[-8,-11],[-11,-3],[-11,-5],[-13,-7],[-12,-6],[-14,-3],[-11,-2],[-13,-4],[-10,1],[-11,0],[-10,2],[-10,9],[-8,18],[-10,-3],[-10,-16],[-8,-28],[-3,-21],[-11,-7],[-15,-7],[-12,-6],[-12,-7],[-9,-6],[-11,-9],[-8,-4],[-9,-1],[-8,-10],[-12,-13],[-12,-15],[-9,-10],[-8,-7],[-10,-6],[-1,-32],[-3,-24],[3,-26],[1,-21],[-5,-24],[1,-22],[0,-22],[-9,-1],[-9,-10],[-9,-6],[-8,-7],[-7,-16],[-10,-12],[0,-26],[4,-21],[7,-24],[-1,-26],[6,-19],[4,-28],[-5,-21],[-5,-25],[-4,-25],[0,-26],[5,-26],[5,-28],[6,-21],[8,-10],[9,-14],[12,9],[7,8],[9,1],[11,4],[10,2],[7,-13],[11,-11],[9,-8],[11,-2],[8,3],[15,-12],[9,-8],[8,-13],[8,-19],[6,-19],[9,-12],[10,-13],[9,-11],[9,-8],[8,-4],[10,-7],[8,-3],[11,-7],[-5,-24],[-4,-21],[0,-33],[-1,-22],[-4,-22],[-5,-23],[-1,-26],[3,-22],[7,-17],[7,-21],[8,-18],[10,-20],[7,-12],[8,-20],[8,-22],[-5,-20],[-3,-26],[0,-22],[-3,-27],[0,-30],[-2,-23],[-4,-29],[1,-27],[5,-30],[-5,-20],[-3,-29],[4,-20],[8,-18],[7,-18],[3,-29],[-4,-27],[-3,-24],[0,-26],[1,-35],[-2,-23],[-1,-25],[0,-26],[4,-20],[0,-28],[-9,-4],[-8,-8],[-9,-10],[-10,-14],[-13,-31],[-7,-15],[-11,-18],[1,-25],[3,-30],[2,-22],[-6,-22],[-7,-16],[-8,-25],[-8,-46],[9,-15],[9,-16],[3,-28],[2,-25],[7,-15],[8,-23],[9,0],[6,-20],[3,-29],[-1,-26],[4,-22],[0,-24],[-3,-27],[-5,-24],[-6,-19],[-1,-26],[8,-27],[6,-28],[3,-21],[8,-11],[7,-17],[-4,-26],[-9,-11],[-7,-25],[-11,-17],[-7,-19],[-6,-19],[-6,-24],[-1,-27],[-4,-31],[3,-21],[4,-19],[6,-22],[-1,-21],[-2,-23],[6,-20],[5,-20],[5,-22],[7,-32],[6,-23],[5,-25],[-6,-20],[-9,-16],[-7,-24],[-7,-15],[-9,-26],[-4,-21],[-6,-25],[-2,-25],[2,-23],[4,-23],[3,-27],[-9,-19],[-8,-11],[-10,-15],[-11,-13],[-10,-5],[-15,2],[-10,3],[-12,-1],[-10,-2],[-11,-17],[-10,-6],[-9,5],[-10,5],[-4,-21],[3,-24],[-6,-21],[-7,-16],[1,-27],[2,-23],[3,-20],[5,-17],[10,-17],[3,-22],[-9,-19],[-7,-21],[2,-27],[6,-23],[7,-15],[8,-8],[3,-21],[-7,-25],[0,-24],[0,-26],[0,-30],[-4,-27],[-1,-27],[-13,-16],[-18,-29],[-17,-23],[-19,-10],[-6,-18],[-13,-10],[-16,-28],[-15,17],[-17,3],[-18,-15],[-27,2],[-14,-16],[-12,8],[-14,7],[-12,-4],[-22,-18],[-15,-8],[-12,-4],[-13,-2],[-25,-6],[-12,-8],[-8,12],[-30,22],[-14,16],[-35,-6],[-31,29],[-23,22],[-13,-21],[-21,-19],[-4,-20],[-11,-37],[-21,-36],[-13,-43],[-6,-39],[-11,-8],[-18,-23],[-10,-17],[-8,-32],[-13,-8],[-22,-14],[-30,-24],[-11,0],[-11,-30],[-3,-21],[1,-57],[0,-23],[2,-29],[-7,-42],[7,-71],[7,-37],[3,-38],[3,-21],[21,-56],[7,-36],[6,-55],[4,-51],[4,-64],[2,-51],[9,-65],[14,-58],[28,-85],[26,-38],[4,-29],[4,-81],[5,-55],[3,-27],[5,-28],[12,-25],[10,-36],[7,-29],[12,-14],[6,-14],[7,-33],[-5,-23],[7,-14],[19,-54],[5,-19],[8,-9],[5,-20],[10,-6],[11,-23],[9,3],[16,-17],[11,-6],[1,-27],[-2,-42],[-4,-19],[2,-25],[3,-175],[3,-23],[-5,-25],[-13,-22],[2,-24],[-2,-37],[-10,-14],[-7,-38],[-11,-6],[-9,-11],[-22,-6],[-19,13],[-25,-16],[-8,-15],[-7,-18],[-1,-39],[0,-45],[-4,-47],[9,-48],[-4,-36],[11,-33],[22,-18],[13,0],[5,-24],[7,-28],[9,0],[4,-29],[-8,-12],[-21,-55],[-10,-26],[-3,-21],[-21,-66],[-6,-14],[-15,-61],[-3,-21],[-4,-33],[0,-31],[-5,-46],[5,-20],[4,-51],[12,-59]],[[24187,69744],[-407,0],[-8,-1],[-345,0],[-123,5],[-51,0],[-267,-1],[-123,0],[-74,0],[-107,0],[0,81],[-235,-1],[-183,-4],[-35,0],[-2,0],[-67,0],[-66,0],[-5,0],[-32,0],[-150,0],[-235,-1],[-163,0]],[[21509,69822],[-286,-1],[-134,-2],[-377,-1],[-352,-1],[-1,0],[-177,2],[-67,0]],[[20115,69819],[0,31],[11,22],[5,23],[3,22],[4,22],[2,29],[7,30],[1,29],[7,17],[1,35],[2,22],[0,44],[4,37],[4,27],[9,31],[7,16],[2,21],[6,24],[-1,23],[-7,26],[-14,17],[-8,42],[4,29],[12,26],[5,27],[6,30],[7,30],[6,48],[-3,24],[0,90],[-3,44],[-6,38],[-6,35],[-10,24],[4,33],[6,16],[9,24],[5,37],[4,55],[6,41],[4,25],[11,21],[10,-3],[14,4],[1,22],[6,17],[7,16],[18,-7],[8,11],[30,9],[32,8],[5,27],[2,28],[3,32],[6,23],[3,41],[-1,36],[9,32],[9,16],[3,36],[5,31],[6,17],[0,36],[11,33],[4,32],[1,23],[-6,25],[-2,82],[-3,21],[8,11],[0,43],[-3,34],[3,85],[-15,13],[-5,35],[-6,27],[-10,17],[9,71],[-2,28],[-3,73],[-7,79],[-12,42],[8,32],[-1,27],[-2,68],[-13,17],[-14,0],[-14,0],[-13,10],[-16,3],[-23,8],[-14,7],[-37,-20],[-20,-28],[-18,-20],[-9,-3],[-18,-9],[-11,-2],[-12,-1],[-11,-9],[-12,7],[-15,4],[-33,4],[2,23],[-14,36],[-12,27],[-4,34],[-12,36],[-23,38],[-14,25],[-16,35],[-6,15],[-14,2],[-14,10],[-29,46],[-10,64],[-10,62],[-12,46],[-8,53],[4,36],[5,17],[10,19],[12,11],[13,9],[9,9],[11,9],[9,12],[22,44],[10,3],[3,31],[14,36],[5,21],[3,32],[12,20],[-1,34],[2,28],[3,32],[-2,23],[-10,21],[-2,22],[-8,34],[-10,33],[-6,44],[-11,35],[-2,38],[-9,17],[-21,12],[-23,5],[-17,24],[-13,14],[-7,12],[-11,18],[-10,13],[-13,19],[-10,16],[-12,4],[-9,19],[-4,34],[-5,46],[-5,25],[0,38],[-13,44],[-8,20],[-15,14],[-10,5],[-14,1],[-14,11],[4,28],[-2,25],[1,28],[6,33],[-7,26],[1,28],[6,21],[-9,38],[4,19],[6,34],[-2,26],[10,10],[12,29],[17,18],[10,-3],[15,3],[9,2],[9,5],[16,10],[9,19],[9,31],[-2,31],[-5,58],[-9,11],[-12,16],[-10,18],[-4,57],[-6,27],[-6,32],[1,34],[5,23],[-5,38],[6,39],[10,15],[7,18],[7,21],[5,31],[7,31],[5,21],[13,34],[-10,8],[-10,23],[-7,14],[0,28],[7,56],[8,10],[-17,13],[-7,13],[-7,33],[-3,39],[1,40],[0,24],[-9,12],[-6,15],[-4,26],[-6,36],[-8,24],[-1,34],[4,34],[4,29],[-2,30],[10,8],[16,22],[16,32],[16,17],[11,17],[4,20],[4,37],[2,40],[-3,24],[4,20],[-8,12],[-5,27],[0,29],[-4,24],[5,21],[9,4],[2,25],[-3,30],[-5,23],[-1,25],[-4,27],[-3,31],[-4,20],[-10,18],[-3,27],[-6,23],[-6,23],[-9,12],[-4,22],[-10,4],[-9,4],[-10,19],[-11,9],[-11,8],[-9,20],[-6,15],[-9,16],[-11,4],[-11,8],[-12,14],[-6,17],[-6,16],[-9,17],[-6,19],[-9,17],[-11,7],[-9,6],[-8,21],[-10,10],[-7,18],[-3,28],[-2,21],[-3,27],[-9,12],[-5,18],[-5,31],[-4,29],[-11,-13],[-12,-13],[-10,-3],[-9,2],[-10,5],[-10,10],[-9,12],[-12,11],[-10,-4],[-11,0],[-12,-1],[-17,-2],[-12,-2],[-9,-1],[-12,0],[-8,15],[-7,15],[-7,14],[-9,17],[-9,15],[-10,19],[-11,29],[-6,16],[-6,22],[-3,23],[-2,21],[5,25],[0,25],[-4,25],[3,21],[-3,25],[-1,34],[-9,16],[-9,10],[-2,21],[-5,22],[-1,22],[-6,26],[-7,19],[-8,24],[-6,14],[-8,19],[-7,22],[-8,22],[-11,16],[-10,3],[-9,7],[-7,16],[-9,26],[-9,33],[-4,29],[-4,18],[-13,20],[-13,14],[-9,-8],[-12,-11],[-9,-8],[-11,-13],[-9,1],[-20,9],[-9,-6],[-8,7],[-10,-3],[-11,-1],[-9,5],[-11,-6],[-13,-9],[-12,-27],[-6,-18],[-9,0],[-9,-16],[-8,-13],[-8,10],[-9,15],[-10,18],[-4,30],[9,25],[3,43],[-4,47],[3,21],[-5,18],[-15,-1],[-11,7],[-17,13],[-8,25],[-8,23],[-7,30],[-6,32],[-9,20],[-10,12],[-10,16],[-13,12],[-15,31],[-11,10],[-18,1],[-24,0],[-5,21],[-2,36],[-15,12],[-11,15],[-16,48],[-8,4],[-8,7],[3,28],[-7,32],[4,24],[-10,14],[-9,-5],[-14,-9],[-10,2],[-14,17],[-9,21],[-3,20],[-9,3],[-9,17],[-10,-13],[-8,-14],[-21,-43],[-7,9],[-16,9],[1,-22],[-12,-23],[-13,5],[-10,15],[-12,8],[-9,9],[-10,3],[-12,9],[-7,-18],[-7,-30],[-3,-37],[-9,-6],[-16,11],[-11,1],[-12,-1],[-10,9],[-8,14],[-17,1],[-5,25],[-5,19],[-15,27],[2,34],[0,25],[1,43],[-8,7],[-12,35],[-8,7],[-12,25],[-7,19],[-4,30],[-8,13],[-10,26],[-8,18],[-8,24],[-6,21],[-1,17],[-2,22],[-3,30],[0,1],[-6,31],[-9,9],[-10,19],[-12,46],[-8,25],[-7,31],[-2,33],[-5,27],[-6,23],[-6,23],[-6,36],[5,18],[0,34],[7,22],[2,25],[17,8],[12,-5],[7,21],[0,22],[2,29],[8,18],[-3,31],[-5,27],[-16,45],[-7,20],[-18,31],[-8,13],[-3,23],[-5,21],[-8,16],[-13,14],[-8,9],[-5,50],[9,12],[5,19],[5,17],[9,25],[-1,34],[-8,6],[-2,28],[-22,-10],[-14,-1],[-14,-2],[-15,-23],[-9,-5],[-8,19],[-8,10],[-10,6],[-35,63],[-11,108],[-386,4],[-51,1],[-256,3],[-37,0],[-7,0],[-63,0],[-14,0],[-12,0],[-32,0],[-56,1],[-38,0],[-4,0],[-4,0],[-53,1],[-21,0],[-42,1],[-111,6],[1,-308],[-183,-2],[1,-313],[-161,7],[-75,3],[24,-143],[27,-110],[8,-24],[4,-21],[1,-2],[5,-17],[13,-45],[5,-37],[2,-25],[6,-19],[4,-20],[7,-25],[5,-17],[1,-2],[4,-40],[0,-2],[2,-27],[1,-5],[15,-54],[-14,-23],[10,-27],[5,-34],[9,14],[6,27],[9,49],[4,26],[9,29],[0,1],[3,29],[-4,26],[2,13],[2,8],[0,1],[1,0],[17,-3],[17,4],[7,9],[1,1],[13,-20],[6,-9],[8,-14],[22,-22],[11,-22],[8,-24],[6,-36],[5,-28],[11,-40],[7,-22],[7,-38],[0,-44],[0,-49],[1,-34],[-1,-38],[-4,-48],[-6,-57],[-9,-103],[-1,-17],[9,-48],[21,-114],[-2,0],[-201,0],[-393,0],[-48,0],[-84,0],[-377,-3],[-110,0],[-10,0],[-14,-1],[-12,0],[-14,0],[-2,0],[-104,-2],[-92,-1],[-30,2],[-20,1],[-20,1],[-183,-3],[-53,1],[-48,1],[-71,1],[-14,0],[-57,2],[-17,0],[-133,0],[-25,0],[-53,2],[-10,0],[-28,0],[-47,0],[-10,0],[-27,-2],[-15,-1],[-55,-1],[-199,-5],[-155,1],[-13,0],[-64,-2],[-108,-3],[-77,1],[-22,-3],[-19,1],[-13,-1],[-103,5],[-25,1],[-42,-1],[-28,-1],[-22,-1],[-22,1],[-14,-1],[-41,0],[-11,0],[-149,-2],[-270,0],[-1,-160],[-2,-285],[0,-215],[0,-58],[0,-51],[0,-60],[1,-205],[2,-301],[-1,-298],[0,-227],[123,-5],[1,-146],[0,-131],[0,-60],[0,-168],[0,-47],[0,-97],[0,-152],[1,-65],[0,-52],[0,-29],[0,-158],[0,-163],[0,-27],[0,-28],[0,-66],[0,-28],[0,-44],[0,-243],[-1,-137],[-70,0],[-128,-1],[-51,0],[-108,-1],[-115,0],[-36,0],[-143,-1],[-150,0],[-106,0],[-79,0],[-15,0],[-26,0],[-31,-2]],[[12036,73906],[0,191],[0,3],[0,47],[0,25],[1,253],[0,33],[-1,76],[-1,105],[-1,58],[0,151],[0,145],[1,220],[0,545],[-179,0],[-92,1],[-64,-1],[-59,-1],[-65,0],[-59,2],[-57,1],[-32,-2],[-8,0],[-29,-1],[-17,1],[-11,0],[-26,2],[-92,0],[-10,0],[-49,2],[-48,-5],[-15,0],[-65,0],[-35,0],[-22,1],[-18,0],[-12,1],[-101,3],[-10,-2],[-13,-2],[-16,1],[-16,-1],[-26,1],[-60,1],[-77,2],[-67,-1],[-26,0],[-29,0],[-61,-1],[-41,1],[-21,2],[-15,-2],[-141,0],[-50,1],[-39,0],[-56,1],[-48,-1],[-161,-1],[0,-64],[-60,0],[-63,-2],[-133,-1],[-219,-2],[-43,0],[-10,0],[-180,-1],[-144,3],[-52,2],[-48,2],[-89,-1],[-2,0],[-9,0],[-17,1],[-1,123],[0,202],[1,55],[-1,115],[0,53],[0,120],[0,212],[0,84],[0,42],[0,39],[0,68],[0,90],[0,1],[-1,35],[-1,55],[1,141],[1,314],[-1,191],[0,41],[3,590],[1,168],[1,40],[0,26],[-35,1],[-144,0],[0,90],[0,175]],[[8652,78769],[-2,137],[1,81],[0,1],[-1,81],[0,303],[-1,99],[0,51],[0,150],[0,24],[0,220],[-2,531],[0,681],[0,307],[-80,0],[3,471],[1,116],[0,6],[0,27],[-1,77],[3,531],[0,61],[0,25],[1,202],[0,157],[0,196],[159,3],[75,1],[18,0],[21,0],[80,0],[2,0],[18,0],[126,-1],[18,1],[10,0],[259,0],[163,0],[24,0],[30,0],[81,0],[116,0],[233,0],[-2,329],[0,7],[-1,119],[0,58],[0,142],[0,371],[0,4],[0,265],[0,350],[-1,209],[0,463],[0,192],[0,110],[0,91],[0,99],[0,39],[0,13],[0,168],[-1,176],[0,126],[0,404],[-8,-1],[0,62],[2,496],[0,263],[-4,169],[0,66],[0,8],[0,96],[0,55],[0,220],[0,97],[-1,520],[1,111],[0,146],[0,108],[0,87],[0,32],[0,79],[1,202],[0,52],[0,93],[-1,33],[1,153],[-1,50],[0,48],[0,23],[0,106],[0,67],[0,44],[1,262],[-169,0],[-50,1],[-26,0],[-29,1],[-3,0],[-41,0],[-3,192],[-1,47],[-3,190],[-1,93],[-1,67],[2,347],[0,56],[0,114],[0,384],[0,32],[0,118],[0,108],[0,22],[0,32],[0,24],[23,2],[7,0],[19,0],[9,0],[48,-2],[19,11],[75,0],[107,0],[23,0],[136,0],[252,1],[169,0],[97,1],[39,0],[18,0],[8,0],[89,0],[7,0],[6,0],[9,0],[23,0],[1,0],[34,0],[139,0],[112,0],[186,-1],[160,0],[152,0],[110,10],[-11,48],[-11,57],[-12,5],[-50,59],[-18,21],[-15,21],[-18,25],[-10,6],[-16,10],[-16,2],[-21,2],[-12,6],[-9,27],[-8,10],[-19,22],[-19,21],[-18,16],[-26,12],[-11,-5],[-21,-14],[-13,-9],[-9,7],[-15,6],[-9,3],[-10,-2],[-13,16],[-19,28],[-9,20],[-5,31],[8,35],[1,26],[-5,32],[12,-5],[7,14],[18,40],[9,28],[3,27],[-1,41],[4,33],[10,25],[10,10],[9,-7],[12,15],[1,23],[0,24],[0,25],[-8,28],[-9,24],[-8,6],[-16,15],[-11,7],[-10,9],[-12,21],[-5,23],[2,34],[-4,21],[-10,22],[5,22],[10,22],[5,23],[10,36],[15,7],[8,13],[11,24],[9,19],[-2,24],[-2,23],[4,27],[15,27],[6,19],[6,21],[5,42],[13,16],[15,10],[16,21],[21,31],[8,-4],[12,-3],[11,8],[12,6],[20,4],[20,11],[20,18],[9,8],[21,8],[9,-4],[13,0],[11,7],[20,12],[10,13],[17,9],[17,10],[9,2],[15,-11],[14,-6],[8,13],[14,11],[11,8],[15,22],[4,22],[8,43],[12,18],[10,8],[17,-7],[9,-1],[9,8],[9,22],[9,26],[7,13],[13,9],[12,28],[2,44],[-5,35],[2,35],[13,17],[14,8],[12,14],[10,14],[10,19],[-6,16],[0,30],[-3,22],[-9,19],[-11,27],[-6,18],[-11,22],[-10,12],[-8,-4],[-18,-6],[-12,-8],[-13,8],[-10,-7],[-16,-9],[-9,1],[-14,1],[-17,-1],[-12,5],[-10,12],[-3,21],[-3,45],[-7,23],[-7,32],[-12,9],[-8,23],[-1,24],[0,24],[-1,34],[-7,20],[-11,33],[-4,34],[-15,12],[-9,19],[-7,35],[-5,19],[-7,26],[-12,8],[-17,18],[-12,13],[-13,7],[-14,10],[-13,-16],[-9,0],[-11,-1],[-12,-1],[-7,24],[-8,43],[-11,32],[-11,11],[-13,23],[-12,8],[-9,6],[-8,11],[-18,20],[1,28],[4,41],[-2,33],[6,47],[7,37],[-1,30],[-9,-7],[-16,-11],[-17,-8],[-9,2],[-12,-10],[-9,-2],[-13,-11],[-8,12],[-8,7],[-14,8],[-9,13],[-12,20],[-16,22],[-14,-1],[-18,-3],[-21,-4],[-16,6],[-9,6],[-12,16],[-15,13],[-12,6],[-11,-2],[-9,-1],[-11,3],[-19,0],[-13,-10],[-11,-2],[-16,-16],[-11,11],[-15,19],[-7,20],[-13,29],[-13,25],[-17,17],[-14,5],[-15,1],[-15,0],[-13,14],[-14,25],[-1,23],[5,20],[6,24],[-1,24],[-1,44],[12,35],[13,16],[10,21],[-2,50],[3,31],[3,37],[5,21],[1,34],[-7,30],[11,18],[8,24],[6,20],[10,11],[11,4],[11,-2],[11,0],[18,4],[9,2],[8,0],[9,8],[10,2],[9,7],[11,-1],[18,3],[8,19],[8,27],[4,31],[-1,38],[7,14],[9,2],[10,7],[10,11],[22,18],[18,3],[26,11],[12,19],[-2,24],[0,42],[-1,43],[-5,18],[-5,19],[1,30],[12,15],[10,23],[4,28],[6,42],[-3,23],[-2,22],[3,40],[1,24],[-1,23],[1,22],[0,26],[-9,19],[-9,26],[-5,19],[1,25],[1,48],[-5,21],[-2,35],[-5,29],[-12,35],[-8,14],[-8,11],[-10,19],[-7,22],[-9,9],[-11,17],[-11,18],[-8,29],[-4,28],[-10,6],[-11,24],[-8,31],[-10,21],[-7,24],[-7,31],[-1,29],[8,19],[6,39],[9,28],[9,26],[10,23],[0,30],[1,34],[9,31],[6,27],[0,29],[-3,30],[-2,32],[2,31],[0,26],[-3,21],[-6,19],[-4,20],[-2,22],[0,24],[-2,22],[-6,31],[-4,30],[-1,34],[2,29],[0,28],[-2,39],[-3,32],[-2,27],[-6,27],[-4,27],[-9,9],[-11,3],[-16,-2],[-17,6],[-9,6],[-7,12],[-5,21],[3,24],[5,27],[-1,21],[-6,26],[-5,24],[1,33],[9,16],[7,22],[7,20],[8,7],[9,15],[13,14],[6,20],[9,12],[10,17],[4,31],[4,28],[9,22],[6,22],[10,14],[12,10],[15,3],[16,6],[9,10],[12,13],[-2,22],[0,26],[8,13],[8,11],[14,21],[8,21],[-1,31],[3,24],[4,20],[5,30],[9,22],[12,8],[12,5],[11,18],[4,29],[0,25],[4,29],[4,28],[2,22],[-4,20],[-14,3],[-8,15],[-6,15],[-6,18],[-9,17],[-12,3],[-9,4],[-14,24],[-7,16],[-7,20],[-13,10],[-21,-1],[-13,-1],[-11,1],[-10,0],[-9,-1],[-17,-3],[-10,0],[-9,3],[-9,-4],[-9,-1],[-12,4],[-16,-4],[-8,-4],[-15,8],[-9,1],[-11,-1],[-12,-2],[-8,-1],[-13,-1],[-11,13],[-8,12],[-7,13],[-8,10],[-13,-4],[-13,4],[-10,10],[-12,-3],[-6,20],[0,31],[-4,39],[-8,26],[-6,15],[-9,21],[-8,27],[2,23],[9,9],[8,21],[5,28],[5,24],[8,22],[10,22],[13,19],[10,9],[10,21],[0,1],[1,11]],[[10994,99986],[20,0],[463,4],[418,3],[391,2],[339,2],[455,2],[27,0],[6,0],[90,0],[409,0],[206,0],[180,0],[37,0],[7,0],[12,0],[338,-6],[507,-9],[496,-10],[171,-3],[423,-9],[511,-11],[1,0]],[[71896,71796],[-8,-6],[-9,-12],[-8,-12],[-11,-33],[-11,-38],[-7,-35],[-6,-23],[-9,-35],[-6,-20],[-6,-21],[-7,-15],[-13,-33],[-8,-24],[-5,-19],[-2,-21],[-2,-25],[-1,-25],[1,-25],[5,-24],[11,-31],[5,-10],[8,-18],[9,-13],[8,-12],[11,-23],[11,-25],[5,-25],[3,-22],[1,-24],[-3,-26],[-3,-27],[-5,-28],[-5,-25],[-5,-26],[-5,-27],[-8,-23],[-11,-18],[-14,-16],[-11,-9],[-9,-5],[-19,-6],[-2,-1],[-10,-3],[-13,-5],[-18,-7],[-8,-8],[-8,-17],[-3,-26],[1,-32],[4,-24],[7,-33],[13,-30],[7,-13],[8,-23],[4,-26],[1,-24],[2,-42],[-3,-35],[-3,-25],[-3,-29],[-9,-36],[-7,-22],[-13,-40],[-10,-24],[-6,-15],[-15,-27],[-12,-13],[-10,-12],[-12,-9],[-12,-5],[-25,-8],[-23,5],[-13,4],[-19,2],[-19,4],[-36,9],[-24,3],[-17,1],[-19,4],[-32,4],[-12,2],[-17,2],[-23,4],[-18,0],[-11,0],[-9,-1],[-15,-2],[-21,-2],[-22,6],[-31,-1],[-14,-1],[-12,-3],[-10,3],[-9,3],[-8,9],[-9,11],[-11,13],[-9,12],[-7,11],[-11,17],[-11,20],[-7,14],[-2,7],[-4,12],[-8,26],[-9,22],[-7,26],[-7,23],[-5,21],[-6,19],[-6,28],[-6,28],[-10,37],[-5,18],[-7,15],[-12,15],[-13,4],[-12,2],[-11,2],[-11,0],[-10,1],[-12,-1],[-10,1],[-12,0],[-12,4],[-8,4],[-2,1],[-7,3],[-12,7],[-12,7],[-17,8],[-20,12],[-16,7],[-18,5],[-15,5],[-15,2],[-12,0],[-14,-1],[-16,-6],[-10,-6],[-10,-8],[-10,-5],[-8,-8],[-9,-10],[-10,-12],[-10,-6],[-8,-4],[-10,-4],[-16,-5],[-15,1],[-13,6],[-13,7],[-13,11],[-14,11],[-11,10],[-14,12],[-12,13],[-10,9],[-9,7],[-20,15],[-19,17],[-20,12],[-2,1],[-21,11],[-9,3],[-15,3],[-2,0],[-19,2],[-13,0],[-11,2],[-12,-1],[-14,-1],[-11,-4],[-8,-6],[-3,-2],[-11,-10],[-11,-12],[-9,-16],[-10,-30],[-6,-38],[-2,-21],[-2,-27],[-3,-25],[-3,-22],[-3,-25],[-2,-21],[-3,-24],[-2,-22],[-4,-31],[-4,-21],[-4,-22],[-7,-14],[-15,-11],[-8,9],[-8,29],[-7,23],[-9,48],[-6,21],[-13,32],[-15,29],[-11,12],[-8,12],[-12,17],[-8,15],[-12,31],[0,1],[-10,24],[-10,35],[-13,36],[-10,17],[-9,11],[-11,10],[-13,13],[-12,8],[-12,10],[-11,8],[-12,6],[-12,5],[-14,3],[-14,-1],[-14,-3],[-7,-10],[2,-28],[8,-34],[7,-14],[8,-19],[7,-15],[8,-16],[8,-14],[13,-23],[9,-31],[5,-40],[3,-36],[-1,-30],[-2,-45],[0,-25],[1,-16],[0,-8],[-1,-25],[-3,-32],[-2,-29],[-3,-25],[-2,-21],[-5,-23],[-7,-21],[-18,-48],[-14,-25],[-12,-18],[-13,-17],[-19,-13],[-16,-2],[-11,5],[-9,15],[-5,24],[-17,65],[-6,17],[-12,33],[-6,14],[0,1],[-7,12],[-8,12],[-14,17],[-9,4],[-11,6],[-13,8],[-12,5],[-17,5],[-11,2],[-13,1],[-14,1],[-13,-1],[-12,-2],[-17,-4],[-11,-3],[-14,-5],[-17,-12],[-10,-7],[-11,-23],[-4,-27],[2,-25],[4,-23],[5,-34],[1,-24],[0,-5],[-3,-39],[-10,-38],[-13,-38],[-20,-39],[-14,-33],[-16,-32],[-19,-54],[-14,-62],[-8,-54],[-2,-44],[-4,-39],[-16,-28],[-13,-21],[-15,-30],[-3,-6],[-19,-46],[-14,-65],[-10,-32],[-7,-10],[-11,-13],[-23,-15],[-24,-20],[-18,-22],[-9,-17],[-1,-54],[6,-57],[0,-27],[0,-25],[-6,-49],[-2,-59],[-13,-44],[-25,-31],[-27,-9],[-38,-4],[-13,-5],[-41,-15],[-17,-8],[-14,-11],[-20,-12],[-19,-17],[-14,-17],[-8,-10],[-9,-11],[8,-76],[9,-49],[2,-6],[3,-43],[4,-41],[3,-38],[-5,-24],[-9,-38],[-6,-24],[-20,-34],[-24,-34],[-27,-26],[-26,-14],[-21,0],[-16,13],[-10,34],[-13,41],[-7,25],[-19,50],[-19,44],[-19,27],[-16,13],[-16,-14],[-9,-43],[-7,-58],[-1,-9],[-5,-31],[-14,-30],[-17,-30],[-37,-28],[-24,-9],[-12,-3],[-9,15],[-36,46],[-7,9],[-22,3],[-16,3],[-25,-17],[-17,-12],[-14,-25],[-15,-35],[-13,-44],[-15,-26],[-21,-25],[-25,-27],[-15,-17],[-12,-15],[-8,-29],[-1,-24],[-3,-21],[-9,-25],[-6,-18],[-2,-8],[-3,-13],[4,-65],[-3,-23],[-13,-23],[-12,-27],[-15,-34],[-12,-25],[-12,-17],[-13,-15],[-20,-16],[-25,-6],[-25,-9],[-15,-11],[-11,-22],[-20,-51],[0,-35],[0,-10],[0,-27],[8,-31],[10,-18],[29,-53],[14,-21],[16,-49],[5,-25],[19,-75],[27,-102],[4,-33],[-1,-37],[-8,-17],[-18,-12],[-33,-20],[-30,-18],[-13,-14],[-19,-22],[-14,-25],[-6,-20],[-6,-23],[-5,-28],[-4,-24],[-4,-52],[2,-36],[3,-36],[4,-20],[16,-29],[12,-18],[9,-16],[3,-5],[11,-23],[7,-24],[4,-20],[2,-29],[1,-22],[2,-40],[-1,-38],[-2,-31],[-7,-20],[-13,-14],[-28,-8],[-20,-7],[-29,-10],[-31,-13],[-22,-7],[-29,-10],[-26,-6],[-29,-11],[-18,-11],[-14,-11],[-11,-9],[-11,-1],[-2,0],[-14,-10],[-24,-16],[-23,-11],[-13,-4],[-11,0],[-11,7],[-10,9],[-2,1],[-7,8]],[[67782,66605],[-12,18],[-11,19],[-4,31],[2,42],[2,23],[4,33],[3,26],[-3,24],[-6,28],[-3,21],[-3,35],[5,25],[12,20],[12,22],[2,5],[15,47],[9,44],[4,30],[6,28],[-8,32],[-7,34],[-8,29],[-1,9],[-6,39],[-6,37],[-2,48],[1,24],[2,32],[6,33],[8,22],[7,19],[8,16],[8,13],[10,14],[2,8],[4,12],[7,37],[5,23],[8,27],[7,23],[19,99],[2,62],[-3,35],[-7,32],[-12,26],[-19,19],[-38,21],[-33,18],[-14,11],[-10,17],[-31,60],[-14,35],[-4,19],[2,30],[7,67],[1,6],[3,103],[-6,61],[-6,31],[-16,39],[-16,17],[-3,5],[-15,30],[-10,28],[-14,32],[-9,29],[-10,34],[-3,27],[1,29],[1,24],[3,26],[6,19],[13,31],[12,25],[10,28],[2,7],[8,31],[2,31],[-1,40],[-2,30],[-4,30],[-5,33],[-10,38],[-8,21],[-11,31],[-21,32],[-21,6],[-21,-3],[-13,-11],[-13,-17],[-6,-7],[-10,-14],[-8,-10],[-19,-3],[-125,65],[-18,11],[-7,13],[-9,54],[-5,47],[-4,22],[-2,13],[-9,36],[-15,33],[-16,29],[-18,34],[-17,32],[-20,33],[-13,12],[-62,48],[-16,4],[-15,-1],[-12,-9],[-10,-14],[-13,-22],[-10,-20],[-12,-20],[-7,-11],[-16,-16],[-12,-7],[0,-1],[-20,-7],[-15,-11],[-12,-6],[-28,-9],[-13,-4],[-22,-5],[-29,5],[-22,6],[-24,5],[-15,6],[-14,7],[-3,2],[-10,8],[-12,8],[-23,14],[-20,13],[-15,9],[-8,10],[-2,2],[-12,11],[-15,11],[-11,6],[-8,5],[-19,11],[-16,15],[-9,17],[-13,26],[-13,40],[-10,27],[-9,19],[-11,14],[-10,9],[-18,11],[-10,16],[-19,26],[-14,9],[-10,0],[-11,-3],[-15,-10],[-19,-15],[-17,-18],[-9,-10],[-17,-20],[-15,-25],[-17,-24],[-9,-13],[-21,-13],[-14,-6],[-10,3],[-21,18],[-25,31],[-14,13],[-13,4],[-16,0],[-15,-7],[-26,-20],[-23,-19],[-13,-7],[-18,-10],[-21,-5],[-27,3],[-12,11],[-19,23],[-22,25],[-19,12],[-20,1],[-14,-3],[-38,-10],[-14,-2],[-19,-9],[-26,-24],[-13,-26],[-14,-40],[-10,-34],[-22,-45],[-26,-44],[-23,-15],[-35,-24],[-18,-8],[-36,-16],[-56,-11],[-32,-6],[-26,0],[-33,2],[-16,10],[-16,10],[-15,16],[-13,23],[-7,16],[-7,15],[-13,30],[-11,28],[-14,21],[-26,26],[-22,11],[-15,3],[-27,-7],[-18,-9],[-15,-15],[-25,-36],[-18,-12],[-28,-24],[-35,-7],[-31,-1],[-38,-13],[-39,-16],[-23,-13],[-22,-6],[-39,-4],[-11,5],[-9,14],[-9,25],[-14,34],[-14,27],[-10,3],[-21,18],[-28,5],[-26,-6],[-23,-28],[-15,-31],[-19,-47],[-28,-22],[-36,-27],[-68,-25],[-33,7],[-42,6],[-63,9],[-31,-4],[-20,6],[-27,22],[-36,36]],[[64421,69465],[-10,12],[-24,26],[-41,-4],[-6,-1],[-21,-4],[-24,-15],[-15,-9],[-15,-20],[-15,-21],[-2,-19],[0,-4],[11,-32],[27,-35],[26,-31],[8,-20],[1,-4],[6,-31],[2,-31],[0,-16],[1,-11],[-14,-15],[-25,-21],[-21,-20],[-25,-21],[-43,-22],[-39,2],[-38,1],[-12,0],[-4,25],[-1,21],[-2,35],[0,26],[0,15],[-1,19],[-9,73],[-7,15],[-3,5],[-6,13],[-17,35],[-9,1],[-10,2],[-12,-21],[-13,-22],[-28,-33],[-1,-2],[-18,-3],[-9,-2],[-24,0],[-26,8],[-7,4],[-10,6],[-3,2],[-7,4],[-11,18],[-3,6],[-12,30],[-6,46],[2,20],[2,15],[8,37],[-3,35],[-5,23],[-21,40],[-12,28],[-10,16],[-6,8],[-2,3],[-9,10],[-9,8],[-2,2],[-3,2],[-10,8],[-5,3],[-4,3],[-20,4],[-5,1],[-21,4],[-17,13],[-9,7],[-6,2],[-14,5],[-17,-7],[-8,-12],[-1,-21],[1,-33],[0,-33],[-4,-48],[-2,-4],[-9,-21],[-20,-25],[-1,-1],[-22,-20],[-18,-8],[-27,-7],[-21,2],[-21,6],[-14,3],[-31,32],[0,16],[-1,30],[3,8],[5,15],[30,71],[2,3],[14,40],[4,48],[-2,43],[-6,43],[-5,18],[-5,16],[-13,35],[-9,12],[-3,4],[-14,0],[-12,-10],[-8,-19],[-12,-27],[-13,-18],[-14,-6],[-5,-3],[-16,10],[-10,15],[-4,10],[-9,23],[-5,22],[6,42],[6,16],[5,14],[5,24],[4,18],[-1,9],[-2,13],[-5,30],[-4,13],[-4,11],[-13,17],[-7,9],[-21,12],[-21,13],[-1,1],[-15,5],[-13,4],[-28,-6],[-21,-8],[-7,-9],[-7,-7],[-12,-26],[-2,-8],[-8,-35],[1,-40],[-2,-24],[-3,-35],[-12,-38],[-14,-27],[-14,-27],[-11,-14],[-5,-6],[-15,-18],[-10,-18],[-7,-12],[-5,-8],[-14,-24],[-10,-14],[-9,-3],[-4,-2],[-21,23],[-9,3],[-14,6],[-23,18],[-6,3],[-4,2],[-12,9],[-4,3],[-16,5],[-28,-1],[-15,-6],[-31,-14],[-12,-8],[-35,6],[-4,4],[-5,6],[-27,23],[-8,41],[8,32],[6,16],[3,8],[2,9],[3,11],[6,20],[1,26],[-10,48],[-16,46],[-17,31],[-2,2],[-10,7],[-10,12],[-12,15],[-20,26],[-22,27],[-37,33],[-8,6],[-3,2],[-9,-1],[-6,-18],[-5,-14],[-1,-20],[0,-14],[-2,-7],[-6,-18],[-5,-5],[-12,-11],[-52,-36],[-12,-1],[-10,1],[-28,2],[-29,2],[-24,-6],[-33,-16],[-21,-15],[-5,-4],[-22,-15],[-18,-13],[-37,-15],[-43,-16],[-11,4],[-13,8],[-9,13],[-12,36],[-4,13],[-3,15],[-8,14],[-3,7],[-8,13],[-3,2],[-10,6],[-16,5],[-19,0],[-20,-28],[-16,-8],[-17,11],[-8,9],[-14,19],[-3,6],[-10,27],[-8,22],[-2,6],[-3,9],[-12,32],[-19,28],[-21,30],[-25,16],[-15,3],[-9,2],[-15,-12],[-21,-20],[-14,-11],[-5,-4],[-10,-5],[-15,-9],[-37,-17],[-23,-18],[-5,-5],[-25,-3],[-85,22],[-59,8],[-3,1],[-25,7],[-13,3],[-2,1],[-1,1],[-10,6],[-14,4],[-14,-4],[-6,-5],[-13,-8],[-29,-30],[-25,-9],[-13,-5],[-21,9],[-15,22],[-3,5],[-8,15],[-6,14],[-14,40],[-7,21],[-7,31],[-2,4],[-6,13],[-12,22],[-6,10],[-7,12],[-19,29],[-3,3],[-7,8],[-2,1],[-10,5],[-16,-1],[-9,-3],[-12,-10],[-8,-8],[-4,-2],[-14,-8],[-16,-8],[-9,-1],[-17,1],[-11,4],[-16,10],[-12,9],[-4,3],[-1,1],[-9,8],[-19,21],[-9,13],[0,1],[-1,5],[-4,30],[-2,26],[-3,34],[-2,19],[0,8],[-4,22],[-7,32],[-16,48],[-8,18],[-8,6],[-3,3],[-16,23],[-34,53],[-16,21],[-7,6],[-6,4],[-16,1],[-4,-2],[-12,-5],[-10,-8],[-2,-1],[-15,-17],[-21,-14],[-7,0],[-4,0],[-9,-3],[-17,5],[-5,1],[-14,3],[-13,1],[-12,-4],[-3,-1],[-9,-3],[-7,-2],[-5,-2],[-8,-10],[-11,-12],[-6,-6],[-2,-2],[-13,-19],[-3,-5],[-12,-12],[-3,-3],[-29,-5],[-28,-2],[-31,8],[-3,1],[-23,19],[-21,15],[-5,9],[-12,21],[-14,27],[-14,27],[-17,32],[-7,12],[-8,13],[-16,25],[-17,32],[-11,26],[-8,42],[-7,28],[-6,28],[-5,26],[-4,27],[2,32],[4,12],[6,18],[8,17],[12,24],[18,45],[12,50],[5,50],[2,24],[0,1],[-7,62],[-10,57],[-3,12],[-1,9],[-13,23],[-6,8],[-8,13],[-6,4],[-3,3],[-5,7],[-10,12],[-19,39],[-10,20],[-22,45],[-15,16],[-9,5],[-8,4],[-8,9],[-22,23],[-36,66],[-21,45],[-31,112],[-12,44],[-15,32],[-7,15],[-2,3],[-23,33],[-22,25],[-21,19],[-10,9],[-8,8],[-17,21],[-17,20],[-21,22],[-16,27],[-21,36],[-26,30],[-3,3],[-13,12],[-31,20],[-24,9],[-26,10],[-24,9],[-30,29],[-11,26],[-55,49],[-20,18],[-36,32],[-36,32],[-18,17],[-4,5],[-9,11],[-16,10],[-31,20],[-10,11],[-4,5]],[[59605,72716],[0,37],[0,24],[0,255],[1,494],[0,123],[0,309],[0,12],[0,172],[1,997],[1,247],[0,178],[0,86],[22,0],[-1,95],[0,221],[0,193],[0,118],[0,201],[0,3],[0,108],[0,184],[25,0],[79,0],[89,1],[31,1],[303,5],[359,1],[258,2],[211,3],[448,5],[12,-15],[9,2],[14,5],[9,-2],[8,-15],[4,21],[7,19],[8,18],[11,8],[9,-11],[8,-16],[13,-2],[1,-21],[7,-30],[6,-25],[16,-5],[8,1],[13,5],[16,3],[12,5],[13,-1],[14,1],[11,6],[8,9],[13,-12],[17,-5],[7,17],[2,35],[10,-2],[13,-9],[9,-2],[10,5],[10,3],[12,-27],[14,-16],[17,-3],[11,-3],[2,91],[2,80],[4,111],[1,26],[10,482],[24,135],[21,115],[55,314],[2,13],[4,23],[23,123],[15,4],[14,2],[14,2],[10,6],[9,4],[14,4],[11,4],[12,-20],[16,-19],[11,-13],[9,-19],[11,-11],[10,-14],[14,-26],[13,-11],[14,-6],[8,-7],[7,-10],[1,0],[12,-4],[14,0],[9,-7],[14,-10],[16,-12],[8,-11],[9,-12],[12,-10],[12,-7],[15,-4],[17,-2],[71,-8],[3,0],[89,-7],[156,-14],[80,-8],[60,-5],[83,-7],[405,-40],[151,-15],[-1,270],[-1,60],[0,2],[0,173],[0,32],[0,695],[0,17],[0,265],[0,392],[0,608],[0,546],[0,9],[0,107],[1,504],[0,181],[1,281],[0,115],[0,159],[0,60],[1,576],[0,179],[187,0],[1,208],[0,127],[-1,323],[0,164],[0,2],[0,28],[0,28],[0,4],[0,24],[0,185],[-1,163],[0,274],[0,109],[0,49],[2,204],[0,183],[0,8],[0,161],[0,79],[0,181],[0,401],[-1,446],[0,135],[1,225],[0,146],[0,112],[0,80],[1,356],[0,72],[-1,38],[0,139],[0,60],[0,58],[0,83],[0,1],[13,8],[5,27],[-7,13],[-6,21],[11,7],[9,-11],[8,-14],[5,-37],[6,-19],[15,-26],[9,-5],[1,0],[9,13],[12,21],[13,8],[8,-8],[-2,-33],[-10,-17],[-14,-4],[-17,-2],[-9,-2],[-8,-10],[5,-29],[10,-9],[16,-7],[8,-8],[13,-12],[27,-9],[13,-10],[8,13],[-2,19],[-1,5],[0,31],[0,6],[0,8],[11,16],[12,-12],[18,-15],[12,-17],[0,-2],[7,-26],[1,-1],[4,-19],[13,-7],[0,1],[14,17],[5,28],[2,15],[0,26],[8,9],[18,2],[13,-5],[6,-31],[-2,-13],[-1,-19],[0,-9],[2,-23],[0,-2],[9,-17],[9,-3],[1,-1],[1,3],[7,9],[2,3],[0,2],[5,20],[1,12],[2,13],[3,19],[12,27],[11,4],[22,-41],[7,-20],[9,-7],[13,3],[17,10],[8,-10],[1,-28],[-1,-6],[-3,-16],[-15,-14],[-20,-2],[-1,-1],[-11,-12],[-2,-2],[-17,-39],[0,-2],[-2,-26],[0,-1],[6,-14],[15,-4],[16,9],[9,0],[9,-7],[7,-19],[0,-1],[5,-19],[14,4],[13,20],[5,33],[10,16],[9,-3],[10,-22],[0,-1],[0,-7],[2,-22],[-1,-2],[-3,-25],[0,-1],[1,-23],[10,-2],[9,13],[21,18],[10,-6],[0,-9],[0,-14],[-8,-22],[0,-2],[-3,-12],[-1,-4],[4,-23],[8,-24],[0,-1],[1,-2],[7,-27],[0,4],[-1,123],[0,186],[0,1],[0,96],[0,27],[0,1104],[0,64],[0,69],[2,59],[-2,421],[-1,414],[-1,73],[0,16],[1,491],[78,-2],[17,1],[34,3],[17,-2],[35,-3],[13,1],[9,-2],[24,4],[-1,311],[4,907],[-1,95],[0,870],[-1,310],[-1,861],[2,37],[0,36],[-3,243],[-1,75],[498,-3],[4,169],[0,27],[0,3],[0,59],[-1,451],[0,184],[0,123],[-1,155],[-2,76],[1,64],[0,23],[0,224],[1,311],[-1,277],[1,35],[-1,29],[-1,283],[-3,273],[-1,23],[4,72],[0,547],[0,22],[0,28],[0,128],[-1,73],[0,1],[0,32],[73,0],[95,-1],[26,0],[0,120],[0,69],[0,451],[-1,596],[0,118],[-1,56],[0,52],[0,37],[0,58],[-1,297]],[[65055,99967],[266,1],[232,0],[286,0],[266,0],[278,0],[268,1],[280,0],[93,0],[16,0],[161,0],[247,1],[303,0],[221,0],[28,0],[301,0],[119,0],[4,0],[98,1],[329,0],[172,-1],[230,0],[34,-1],[90,0],[238,-1],[257,-1],[257,0],[256,-1],[322,-1],[257,-1],[265,-1],[228,0],[217,-1],[216,-1],[223,8],[227,8],[327,0],[165,0],[143,0],[263,0],[278,0],[108,0],[229,0]],[[8652,78769],[-102,47],[-15,1],[-36,0],[-43,0],[-7,0],[-29,0],[-20,0],[-23,1],[-89,1],[-67,0],[-83,1],[-158,2],[-36,-2],[-116,-6],[-68,0],[-28,2],[-5,0],[-35,3],[-237,-1],[13,-112],[20,-114],[3,-21],[0,-31],[2,-24],[2,-33],[-3,-38],[-2,-8],[-3,-13],[0,-37],[-5,-36],[13,-19],[12,-20],[5,-34],[3,-28],[9,-6],[15,-11],[17,-22],[5,-32],[8,-19],[8,-12],[10,-21],[15,-36],[-5,-30],[-4,-27],[-4,-22],[-4,-23],[-7,-13],[-10,-6],[-11,-3],[-21,-14],[-3,-22],[-7,-30],[6,-16],[6,-30],[-8,-14],[-5,-30],[-4,-36],[-4,-25],[-6,-24],[-2,-29],[0,-29],[-5,-18],[-12,-1],[-16,-4],[-9,-24],[-7,-9],[-13,-7],[-14,0],[-11,9],[-15,37],[-16,93],[-15,71],[-6,29],[-11,16],[-10,3],[-14,21],[-7,11],[-8,4],[-12,-3],[-14,-5],[-10,-4],[-9,-5],[6,-16],[6,-20],[6,-16],[1,-36],[4,-26],[0,-42],[-2,-45],[-2,-27],[-6,-39],[-2,-22],[-6,-22],[-10,-5],[-11,-9],[-11,0],[-30,-7],[-14,-10],[-6,-26],[3,-23],[7,-25],[8,-13],[1,-31],[14,-10],[1,-29],[12,-28],[11,-24],[-6,-22],[-15,-34],[9,-21],[-1,-30],[5,-19],[1,-30],[-4,-26],[-8,-6],[-4,-23],[-2,-24],[7,-20],[11,-18],[-6,-32],[-1,-44],[-7,-29],[-9,-12],[-9,-24],[7,-23],[-6,-39],[-6,-15],[-9,-20],[-7,-21],[-8,-29],[-2,-24],[9,-26],[6,-26],[-11,-10],[-47,-23],[-7,18],[-8,29],[-12,12],[-9,-10],[-6,-30],[5,-24],[-2,-27],[-19,1],[-10,0],[-14,18],[-5,21],[-10,23],[-12,1],[-9,5],[-7,-16],[-5,-16],[-13,-21],[-13,-23],[-9,-14],[-11,-10],[-12,-16],[-11,-4],[-14,-3],[-10,-20],[-8,-40],[-6,-17],[-15,-16],[-10,-6],[-14,-13],[-9,11],[-9,-6],[-12,4],[-14,5],[-9,7],[-9,4],[-9,10],[-5,18],[-7,20],[-18,12],[-21,20],[-17,21],[-16,14],[-18,6],[-22,-6],[-5,-36],[-3,-21],[-12,-23],[-4,-19],[2,-27],[4,-28],[-5,-28],[-9,-31],[-9,-12],[-10,-1],[-13,2],[-9,-2],[-18,-5],[-14,-3],[-11,-7],[-8,-13],[-6,-21],[-8,-23],[-14,-14],[-13,-14],[-3,-36],[-7,-46],[-8,-15],[-12,-19],[-12,-3],[-8,-18],[-7,-18],[-13,-3],[-7,-22],[-8,-24],[-15,-1],[-8,5],[-16,10],[-8,4],[-15,24],[-11,38],[-10,34],[-8,4],[-6,25],[-8,22],[-10,3],[-15,26],[0,24],[-5,22],[-7,33],[-4,21],[-9,61],[-8,18],[-5,32],[-4,21],[-5,19],[-7,17],[-8,13],[-15,3],[-16,-1],[-12,10],[-22,21],[-16,20],[-12,19],[-11,36],[-13,23],[-7,23],[-13,32],[-11,12],[-17,5],[-10,-9],[-6,-21],[-7,-24],[-7,-23],[-18,-17],[-15,-4],[-17,-1],[-12,3],[-13,7],[-12,-4],[-14,-10],[-14,-5],[-15,-4],[-17,-6],[-14,-9],[-17,-31],[-9,-33],[-8,-20],[-17,-21],[-10,-3],[-19,18],[-9,2],[-12,-2],[-12,3],[-14,5],[-16,-2],[-12,-7],[-7,-26],[-7,-33],[-7,-23],[-9,-5],[-18,-13],[-14,-12],[-17,-10],[-18,-3],[-10,-5],[-10,-2],[-8,-5],[-9,-6],[-9,-13],[-12,-3],[-15,19],[-16,26],[-17,22],[-17,22],[-13,20],[-17,14],[-14,5],[-15,13],[-13,17],[-8,17],[-6,31],[3,26],[-2,49],[-11,24],[-3,21],[-5,27],[-2,44],[2,28],[8,62],[3,28],[4,23],[5,35],[5,22],[1,38],[-7,28],[-1,29],[-8,-4],[-14,-6],[-17,-8],[-18,-8],[-13,-5],[-10,-1],[-11,-12],[-15,3],[-13,8],[-13,2],[-9,-7],[-11,-9],[-14,-4],[-16,-13],[1,-32],[-5,-17],[-7,-24],[-9,-21],[-6,-17],[-14,-8],[1,-30],[14,-31],[-6,-50],[0,-28],[7,-46],[2,-97],[-6,-35],[-4,-23],[-10,-22],[-14,1],[-14,14],[-14,18],[-11,-1],[-19,1],[-17,13],[-8,15],[-13,3],[-12,4],[-16,13],[-18,18],[-17,13],[-15,7],[-15,12],[-12,10],[-15,20],[-11,14],[-13,12],[-14,4],[-11,8],[-15,1],[-8,-14],[-6,-17],[-15,-26],[-12,-6],[-10,-22],[-3,-25],[-9,-39],[-10,5],[-11,14],[-14,13],[-19,20],[-10,6],[-10,0],[-11,34],[-12,11],[-10,-16],[-9,-12],[-10,-4],[-8,-20],[-8,-5],[-7,-15],[-7,-12],[-13,-13],[-9,-21],[-8,-17],[-9,-15],[-11,-5],[-14,-1],[-13,-1],[-12,-11],[-6,-23],[-10,-7],[-21,0],[-9,1],[-10,-1],[-12,1],[-11,10],[-14,9],[-15,-2],[-19,-4],[-16,-7],[-15,-14],[-13,-16],[-13,-2],[-13,8],[-12,7],[-11,11],[-7,18],[-5,16],[-1,33],[-1,22],[-12,26],[-13,2],[-12,5],[-9,11],[-9,10],[-9,6],[-9,12],[-9,13],[-16,15],[-7,22],[-9,17],[-14,12],[-14,2],[-9,23],[-10,19],[0,33],[2,30],[3,43],[3,38],[-6,20],[-6,19],[-6,23],[-8,6],[-21,15],[-9,10],[-12,11],[-11,9],[-8,19],[-3,22],[0,27],[-4,34],[-9,32],[-3,52],[6,21],[11,32],[10,26],[-3,34],[4,23],[6,21],[4,43],[6,25],[12,28],[22,25],[11,17],[-1,29],[-10,26],[1,29],[6,29],[6,30],[5,19],[7,22],[10,29],[1,33],[9,18],[9,20],[-1,31],[0,29],[-1,29],[3,28],[9,34],[5,23],[5,41],[11,22],[4,29],[-13,16],[-8,30],[3,29],[-1,27],[-9,29],[2,37],[2,24],[-5,36],[-8,25],[-7,26],[-6,35],[-3,29],[-1,23],[-5,16],[-4,7],[-4,6],[-6,30],[-9,5],[-13,26],[-1,37],[-1,30],[-9,8],[-10,28],[-6,24],[-11,22],[-14,14],[-13,29],[-7,12],[-10,14],[-22,25],[-16,12],[-9,14],[-12,47],[-6,26],[-14,24],[-9,-11],[-9,-13],[-9,-7],[-15,-4],[-15,6],[-8,6],[-11,25],[-19,2],[-11,7],[-26,29],[-5,21],[-11,24],[-7,25],[-7,28],[-8,18],[-11,20],[-4,37],[-8,20],[-19,-5],[-13,2],[-8,12],[-8,27],[-12,27],[-10,17],[-12,36],[1,28],[9,30],[-1,28],[-6,20],[-10,2],[-10,15],[-5,19],[-18,28],[-8,18],[-6,14],[-3,21],[-15,19],[-7,21],[0,35],[6,21],[4,36],[16,79],[-3,40],[-2,28],[-10,9],[-23,27],[-19,13],[-27,33],[-4,25],[-9,2],[-26,48],[-16,35],[-9,24],[-7,20],[-18,18],[-7,17],[-13,2],[-10,10],[-12,26],[-11,12],[-12,2],[-7,18],[-9,46],[-12,14],[-8,32],[9,18],[12,4],[10,0],[9,11],[9,8],[3,33],[1,33],[2,21],[8,40],[11,28],[-13,32],[-5,34],[-9,26],[-16,32],[-7,18],[7,28],[3,24],[-5,31],[0,30],[-8,51],[5,57],[4,31],[-20,64],[-4,23],[0,43],[6,23],[-4,32],[-14,31],[-6,18],[-15,38],[-28,60],[-10,52],[5,28],[6,24],[11,46],[2,41],[3,31],[2,33],[-10,9],[-9,22],[-7,22],[-7,13],[-9,18],[-15,13],[-11,8],[-9,12],[-9,7],[-10,21],[-1,21],[3,25],[8,22],[9,26],[5,15],[-15,17],[-14,10],[-7,25],[-9,11],[-8,22],[-10,22],[-11,21],[-6,22],[-14,9],[-24,22],[-11,15],[-8,40],[-3,21],[-3,23],[-3,24],[-1,27],[-12,5],[-10,21],[-7,22],[-9,19],[-14,20],[-10,1],[-17,-8],[-9,-4],[-16,-7],[-10,0],[-9,0],[-11,3],[-10,1],[-12,3],[-11,9],[-11,17],[-1,27],[-1,25],[-1,47],[2,31],[-1,31],[-5,25],[-6,23],[-5,34],[8,12],[9,17],[12,27],[10,26],[2,30],[7,29],[9,9],[7,20],[5,32],[6,21],[7,14],[8,14],[5,18],[4,24],[3,28],[1,26],[21,6],[16,2],[9,8],[14,2],[10,-2],[9,15],[-8,19],[3,44],[-3,26],[-3,21],[1,22],[3,25],[1,24],[7,15],[12,57],[-8,9],[-5,18],[-8,14],[-14,24],[-10,20],[-7,16],[-7,22],[-18,41],[-12,32],[-3,23],[-4,29],[-8,14],[-10,19],[-4,23],[-9,14],[-6,22],[-9,8],[-15,5],[-17,25],[-4,26],[-8,23],[-4,26],[-4,18],[-8,18],[-7,18],[-3,20],[-3,20],[-7,21],[3,32],[4,24],[3,22],[-2,22],[-8,15],[-9,11],[-10,17],[-11,6],[-11,15],[-15,24],[-3,27],[-8,23],[-6,31],[-3,26],[-7,24],[-14,18],[-11,4],[-18,3],[-18,16],[-12,12],[-8,24],[-6,19],[-9,-3],[-11,5],[-12,1],[-10,16],[-15,-9],[-9,13],[-9,3],[-19,21],[-18,20],[-14,22],[-12,21],[-12,16],[0,41],[-3,28],[-2,32],[-14,-7],[-19,-7],[-11,-7],[-15,5],[-13,6],[-8,8],[-11,5],[-10,9],[-10,-8],[-9,2],[-16,2],[-17,1],[-10,0],[-15,6],[-12,-15],[-11,-4],[-20,-24],[-5,-19],[-8,-22],[-14,-13],[-20,-5],[-14,-9],[-8,-25],[-12,-21],[-13,-8],[-9,-34],[-14,-57],[8,-29],[16,-12],[-11,0],[-7,-21],[-4,-22],[-9,-30],[-7,-14],[5,-32],[-5,-23],[-6,-24],[-3,-22],[-5,-19],[-12,-25],[-8,-16],[-9,-20],[-10,-12],[-11,-3],[-7,-20],[-2,-32],[-6,-22],[-6,-19],[-8,-17],[-8,-12],[-10,-14],[-8,-17],[-6,-24],[-6,-33],[-5,-20],[-11,-8],[-5,-19],[-9,-22],[-5,-19],[-10,1],[-15,-2],[-25,-9],[-15,-1],[-12,-4],[-14,-6],[-12,0],[-10,-19],[-7,-30],[-8,-14],[-10,-7],[-22,-11],[-21,-8],[-9,2],[-13,-1],[-9,-5],[-12,-4],[-13,2],[-10,-17],[-4,-35],[-6,-27],[-4,-27],[-1,-32],[-10,-8],[-8,2],[-11,4],[-10,4],[-7,-7],[-15,-3],[-10,2],[-9,4],[-9,24],[-1,26],[-2,28],[-3,24],[-9,5],[-9,-9],[-6,-26],[1,-32],[-8,-10],[-11,-3],[-15,4],[-16,1],[-19,-12],[-9,-16],[-12,-35],[-10,-32],[-8,-4],[-5,-2],[-9,3],[-11,5],[-11,3],[-15,-1],[-16,-11],[-17,-17],[-2,-29],[-10,-19],[-19,2],[-11,-6],[-8,-6],[-11,-9],[-15,-10],[-15,-6],[-16,-10],[-18,-12],[-8,-21],[-14,-29],[-8,-26],[-6,-27],[-6,-14],[-13,-9],[-11,-5],[-10,-10],[-11,-13],[-11,-3],[-13,-3],[-10,-9],[-9,-7],[-11,-1],[-8,-6],[-20,-42],[-1,-26],[-4,-31],[-1,-22],[-7,-22],[-22,-54],[0,-34],[-9,-9],[-19,0],[-11,-3],[-13,-4],[-15,-1],[-12,1],[-10,-3],[-14,-7],[-9,3],[-10,8],[-10,-4],[-8,-2],[-12,14],[-20,15],[-14,-4],[-8,-1],[-15,1],[-13,4],[-10,12],[-9,2],[-6,-22],[-8,-14],[-13,-31],[-11,-35],[-6,-32],[0,-34],[3,-35],[-1,-31],[-15,-39],[-6,-17],[-8,-52],[-6,-29],[-8,-26],[-10,-27],[-6,-20],[-6,-21],[-5,-31],[-7,-23],[-13,-32],[-5,-27],[2,-31],[-6,-24],[-7,-23],[-3,-34],[-6,-15],[-5,-26],[-4,-19],[-10,3],[-13,12],[-18,27],[-9,19],[-6,13],[-22,11],[-7,14],[-11,17],[-11,5],[-9,-6],[-12,-5],[-11,1],[-11,7],[-14,11],[-9,11],[-9,22],[-7,26],[-9,7],[-32,-21],[-11,-2],[-19,5],[-26,10],[-11,11],[-13,-4],[-16,-12],[-20,-16],[-9,-3],[-13,21],[-15,18],[-16,-7],[-23,15],[-17,32],[2,39],[1,34],[-19,68],[-30,4],[-11,8],[-12,35],[-5,40],[-1,39],[5,25],[-11,12],[5,52],[14,48],[2,34],[-19,29],[-19,12],[0,35],[-4,33],[0,37],[16,29],[-4,54],[17,43],[15,20],[22,12],[1,73],[-17,44],[-27,49],[3,45],[7,30],[9,20],[-94,66],[-23,32],[-29,8],[-127,70]],[[1,83070],[3,4273],[1,540],[1,1322],[0,44],[0,2465],[0,109],[0,243],[0,784],[0,439],[0,6686],[0,18],[139,1],[502,1],[294,1],[365,0],[263,0],[373,0],[6,0],[140,0],[270,-1],[64,0],[4,0],[249,-1],[299,-1],[311,-1],[51,0],[22,0],[12,0],[4,0],[91,0],[467,-3],[490,-2],[447,-3],[445,-4],[433,-4],[516,-5],[292,-4],[288,0],[240,0],[46,0],[64,0],[22,0],[26,0],[66,0],[15,0],[1,0],[29,0],[483,0],[439,0],[1,0],[6,0],[480,5],[209,1],[411,4],[363,2],[237,1],[422,3],[15,0],[19,0],[230,1],[76,0],[251,2]],[[32108,99947],[0,-278],[0,-63],[0,-41],[0,-88],[1,-101],[1,-143],[-1,-33],[1,-35],[-1,-261],[0,-147],[0,-160],[0,-402],[0,-72],[35,1],[0,-191],[0,-112],[0,-326],[0,-212],[-1,-128],[0,-212],[0,-31],[1,-37],[0,-25],[0,-7],[1,-276],[-1,-173],[0,-138],[0,-58],[0,-6],[0,-18],[0,-73],[0,-104],[0,-209],[0,-160],[0,-309],[0,-100],[0,-53],[-1,-515],[0,-61],[0,-211],[0,-154],[1,-153],[0,-40],[0,-63],[0,-131],[0,-83],[1,-145],[-1,-194],[-1,-437],[0,-168],[0,-302],[0,-133],[0,-178],[0,-300],[2,-323],[1,-494],[0,-1],[0,-64],[0,-6],[0,-117],[0,-105],[0,-151],[37,1],[-1,-266],[0,-107],[-1,-202],[0,-314],[0,-312],[-1,-231],[0,-25],[4,-430],[0,-25],[0,-3]],[[32184,88723],[-13,-1],[-18,-4],[-26,-3],[-9,-3],[-17,-1],[-6,2],[-10,2],[-23,0],[-14,-2],[-10,-3],[-20,2],[-7,1],[-7,2],[-2,1],[-3,2],[-8,4],[-9,13],[-2,2],[-5,23],[-10,23],[-4,6],[-3,6],[-2,2],[-8,15],[-1,0],[-10,-1],[-9,0],[-59,-1],[-20,0],[-32,1],[-7,18],[-4,13],[-120,6],[-55,10],[-188,-10],[-71,-2],[-79,0],[-37,-2],[-38,0],[-29,0],[-62,0],[-27,2],[-12,1],[-84,1],[-60,0],[-59,-1],[-28,-1],[-54,0],[-73,1],[-140,5],[-56,1],[-26,0],[-83,0],[-45,0],[-3,0],[-139,0],[-26,0],[-72,1],[-10,0],[-2,0],[-129,0],[-32,0],[-160,0],[-91,1],[-48,0],[-119,0],[-43,-1],[-41,0],[-32,0],[-74,-1],[-165,-1],[-246,-2],[-1,0],[-11,0],[-20,-2],[0,-5],[0,-18],[0,-88],[0,-198],[0,-108],[0,-127],[0,-189],[0,-101],[0,-3],[0,-259],[0,-265],[0,-44],[0,-180],[0,-40],[0,-57],[0,-29],[0,-394],[0,-74],[0,-156],[-1,-50],[1,-358],[-1,-27],[0,-71],[0,-75],[-1,-75],[0,-182],[0,-181],[0,-59],[-1,-108],[0,-151],[13,-9],[-1,-54],[0,-13],[-2,1],[-38,10],[-57,0],[-62,0],[-65,0],[-14,0],[-99,0],[-39,0],[-41,0],[-137,0],[-16,0],[-2,0],[-113,0],[-163,1],[-42,0],[-56,0],[-65,0],[-71,0],[-192,0],[-123,0],[-1,0],[-33,0],[-26,0],[-176,0],[-215,0],[-56,0],[-4,0],[-19,0],[-12,0],[-8,0],[-14,0],[-189,0],[-91,0],[-26,0],[-156,0],[-75,0],[-146,0],[-44,0],[-49,0],[-73,0],[-14,0],[-59,0],[-126,0],[-114,0],[-13,0],[-94,-1],[-30,0],[-153,0],[-61,0],[-65,0],[-111,2],[-31,0],[-29,1],[-227,0],[-13,1],[-223,1],[-271,1],[-38,1],[-98,1],[-72,-1],[-57,-1],[-46,1],[-79,0],[-222,-1],[-75,0],[-198,-1],[-204,-1],[-88,1],[-29,0],[-255,0],[-16,0],[-4,0],[-71,1],[-206,0],[-81,0],[-51,0],[-108,0]],[[16501,99951],[211,-1],[325,-1],[30,0],[209,-1],[301,-1],[268,0],[5,0],[55,-1],[51,-1],[2,0],[182,-3],[385,-5],[458,-6],[118,-2],[372,-6],[136,-2],[99,2],[183,2],[2,0],[1,0],[80,2],[343,4],[74,1],[153,3],[122,-2],[340,-4],[274,1],[277,2],[234,1],[371,1],[75,0],[1,0],[2,0],[272,1],[155,1],[97,0],[237,1],[225,1],[299,1],[134,0],[292,1],[64,1],[201,0],[304,1],[338,1],[222,1],[310,1],[1,0],[83,0],[311,-1],[242,-2],[287,1],[282,0],[270,1],[264,0],[25,0],[2,0],[233,1],[291,0],[258,1],[303,1],[277,0],[255,0],[246,1],[72,0],[3,0],[202,0],[306,0],[183,-2],[276,-2],[383,3],[329,0],[162,0],[297,0],[251,0],[247,0],[343,0],[34,0]],[[54249,81347],[-177,1],[-4,0],[-20,0],[-67,1],[-251,0],[-10,-50],[-106,0],[-126,-1],[-38,0],[-117,-1],[-21,0],[-5,0],[-227,-1],[-123,-1],[-6,0],[-3,0],[-7,0],[-218,-1],[-79,-1],[0,316],[0,41],[0,419],[0,82],[1,744],[0,124],[0,64],[0,123],[-73,-2],[-94,-1],[-81,3],[-55,2],[-73,0],[-91,1],[-67,0],[-39,0],[-124,0],[-247,1],[6,-56],[-39,2],[-12,0],[0,158],[-1,255],[0,73],[0,44],[0,69],[0,66],[0,207],[0,43],[0,27],[-1,230],[0,107],[0,10],[-1,32],[0,22],[0,88],[0,48],[0,146],[0,68],[2,81],[1,97],[-169,-1],[-55,0],[-20,0],[-44,1],[-9,0],[-154,0],[-33,0],[-48,-1],[-49,1],[-143,1],[-25,0],[-235,1],[-60,0],[-70,-1],[-6,0],[-51,0],[-4,0],[-4,0],[-1,0],[-35,0],[-37,1],[-12,-1],[-13,0],[-14,0],[-41,0],[-21,0],[-48,1],[-43,0],[-11,0],[-7,0],[-7,1],[-10,0],[-16,0],[-41,2],[-202,4],[-29,-1],[-26,-1],[-10,0],[-6,0],[-83,0],[-52,0],[-50,0],[-149,-1],[-16,0],[-9,0],[-54,-1],[-37,0],[-30,0],[-42,1],[-146,-1],[-98,-2],[-322,-3],[-339,-2],[-5,0],[-16,1],[-115,2],[-66,0],[-43,0],[-139,0],[-158,1],[-7,0],[-15,0],[-181,-2],[-166,10],[-14,-3],[-182,-4],[-31,4],[-39,5],[-109,-3],[-81,1],[-282,4],[-258,2],[-103,0],[-90,2],[-70,1],[-7,0],[-41,-1],[-96,-1],[-43,-1],[-57,0],[-123,0],[-180,-1],[-7,0],[-10,0],[-8,0],[-27,0],[-97,-1],[-33,0],[-181,-1],[-56,-1],[-119,-1],[0,-330],[-1,-912],[0,-573],[0,-56],[-58,-2],[-1,0],[-213,2],[-134,0],[-92,0],[-111,0],[-90,1],[-5,0],[-19,-1],[-127,-1],[-119,3],[-9,0],[-21,-1],[-19,-1],[-25,3],[-10,2],[-5,0],[-26,-4]],[[44080,83168],[-1,351],[0,8],[0,195],[0,32],[4,67],[-1,282],[1,155],[0,155],[-2,73],[0,242],[0,161],[0,150],[0,312],[-1,209],[1,38],[0,67],[-1,314],[1,44],[-2,268],[2,222],[-1,249],[0,152],[1,315],[0,125],[0,7],[-2,178],[-2,938],[0,140],[-1,174],[-1,320],[0,95],[2,206],[1,109],[0,204],[-1,312],[0,32],[0,12],[-1,216],[0,51],[-1,109],[0,40],[1,141],[53,1],[0,314],[-1,310],[0,314],[-1,321],[-2,614],[-1,314],[0,148],[0,63],[0,99],[0,52],[0,1],[0,260],[0,313],[0,312],[0,67],[0,5],[0,238],[-3,206],[0,104],[0,202],[-4,109],[0,175],[0,26],[0,19],[0,6],[0,165],[1,60],[0,149],[0,27],[-1,310],[1,239],[0,76],[0,309],[0,239],[-1,74],[0,246],[4,28],[0,35],[0,95],[0,102],[0,11],[0,46],[0,321],[0,25],[0,336],[67,1],[-2,313],[1,241],[0,70],[2,245],[-2,65],[-3,312],[1,133],[0,178],[-1,263]],[[44184,99945],[218,1],[33,0],[14,0],[228,1],[296,1],[244,1],[227,1],[86,0],[193,1],[368,1],[183,1],[368,1],[211,1],[337,1],[240,1],[227,1],[329,1],[132,1],[107,0],[253,1],[92,0],[11,0],[195,1],[358,1],[326,1],[247,1],[302,1],[356,1],[192,0],[288,1],[229,1],[32,1],[233,0],[316,1],[312,1],[236,1],[199,1],[204,0],[3,0],[143,1],[333,1],[212,1],[215,1],[253,1],[94,0],[278,1],[262,1],[190,1],[32,0]],[[54621,99982],[0,-7],[0,-74],[0,-208],[0,-326],[1,-309],[-1,-89],[0,-34],[0,-191],[0,-84],[-1,-228],[1,-310],[-92,-2],[-42,-1],[0,-27],[0,-388],[0,-1],[0,-99],[0,-5],[0,-39],[0,-17],[0,-260],[-2,-80],[1,-22],[0,-44],[0,-49],[1,-343],[0,-304],[-1,-153],[0,-24],[0,-1],[0,-35],[0,-261],[1,-133],[-1,-24],[0,-32],[1,-263],[-1,-303],[-1,-26],[0,-157],[0,-308],[0,-130],[0,-13],[0,-9],[0,-23],[1,-40],[0,-37],[0,-12],[2,-70],[-1,-29],[1,-52],[1,-49],[-1,-53],[-2,-40],[0,-220],[0,-86],[-2,-51],[1,-22],[0,-314],[1,-69],[1,-36],[-1,-200],[1,-271],[1,-44],[0,-157],[-1,-228],[0,-19],[0,-138],[0,-82],[1,-110],[0,-46],[0,-173],[1,-299],[0,-59],[0,-254],[0,-537],[2,-87],[38,0],[6,0],[27,1],[0,-94],[0,-1],[0,-70],[0,-24],[0,-160],[-3,-445],[1,-124],[9,0],[170,2],[14,0],[49,2],[29,1],[0,-132],[0,-182],[1,-230],[0,-123],[0,-254],[0,-646],[-64,-2],[-13,0],[-197,-1],[0,-264],[1,-53],[0,-231],[1,-275],[0,-420],[-31,0],[-113,1],[-39,-1],[-1,-423],[1,-697],[0,-198],[-1,-863],[-269,2],[-2,-768],[0,-169],[0,-91],[-1,-527],[151,-1],[0,-101],[-2,-486],[-1,-288],[-1,-375],[-1,-292],[-1,-313]],[[59605,72716],[-4,7],[-7,9],[-10,2],[-17,4],[-41,10],[-11,0],[-28,1],[-36,-12],[-50,-1],[-5,0],[-27,2],[-60,-31],[-25,-17],[-39,-60],[-11,-19],[-6,-11],[-3,-4],[-15,-7],[-7,-3],[-36,17],[-5,7],[-11,20],[-17,35],[-9,25],[-2,7],[-9,73],[7,51],[15,41],[11,30],[39,55],[9,10],[9,9],[20,14],[13,8],[12,8],[14,11],[10,8],[27,37],[18,25],[25,38],[12,35],[5,42],[-1,14],[-1,16],[-11,28],[-18,30],[-36,45],[-5,6],[-7,9],[-10,14],[-38,59],[-29,59],[-19,25],[-35,49],[-2,11],[-3,10],[-7,50],[0,14],[0,16],[5,37],[6,19],[3,9],[4,9],[5,11],[5,6],[15,23],[24,48],[2,14],[9,44],[-3,30],[-7,22],[-13,17],[-18,17],[-17,8],[-16,7],[-36,3],[-41,-11],[-6,2],[-28,9],[-17,11],[-6,4],[-22,21],[-10,18],[-7,12],[-4,7],[-12,32],[-17,44],[-8,14],[-14,27],[-36,26],[-19,5],[-23,-1],[-22,-13],[-14,-6],[-18,1],[-6,4],[-6,3],[-33,23],[-26,-3],[-19,-3],[-10,-12],[-9,-6],[-13,-10],[-19,-21],[-9,-3],[-19,-2],[-14,-2],[-17,-4],[-4,-1],[-9,-3],[-16,-15],[-9,-9],[-9,-15],[-5,-7],[-5,-9],[-5,-6],[-11,-20],[-9,-19],[-16,-29],[-6,-8],[-5,-8],[-14,-13],[-13,-8],[-16,-5],[-7,-1],[-12,-1],[-22,0],[-25,5],[-10,4],[-9,4],[-20,12],[-23,18],[-14,14],[-6,6],[-5,4],[-6,5],[-8,8],[-16,14],[-16,14],[-3,4],[-20,17],[-17,20],[-4,5],[-7,8],[-18,19],[-13,11],[-12,5],[-13,3],[-3,0],[-9,-1],[-10,-3],[-10,-2],[-16,-8],[-12,-8],[-8,-9],[-7,-7],[-3,-5],[-10,-11],[-14,-21],[-10,-13],[-3,-6],[-8,-10],[-5,-9],[-1,0],[-10,-11],[-9,-5],[-10,-4],[-10,0],[-5,-1],[-7,-1],[-4,-2],[-6,-3],[-18,-13],[-4,-3],[-21,-15],[-14,-11],[-20,-23],[-14,-21],[-15,-17],[-8,-7],[-6,-5],[-8,-3],[-10,-4],[-15,-5],[-19,-6],[-9,-5],[-8,-5],[-1,-2],[-9,-10],[-7,-9],[-5,-7],[-1,-2],[-12,-14],[-6,-5],[-7,-6],[-6,-4],[-8,-4],[-2,-1],[-2,-1],[-16,-11],[-12,-5],[-5,-4],[-6,-5],[-7,-10],[-4,-6],[-5,-9],[-6,-11],[-13,-18],[-2,-3],[-4,-2],[-7,-5],[-16,-6],[-13,-3],[-12,-3],[-7,-1],[-11,-2],[-9,0],[-9,0],[-17,1],[-16,-1],[-5,0],[-16,2],[-18,0],[-27,-4],[-9,-1],[-3,-1],[-13,-2],[-16,-4],[-12,-3],[-15,3],[-3,0],[-10,2],[-12,10],[-8,7],[-2,6],[-6,12],[-6,15],[-5,22],[-2,5],[-6,15],[-11,16],[-2,3],[-2,3],[-4,5],[-18,13],[-3,2],[-6,6],[-8,7],[-3,3],[-9,6],[-16,15],[-1,1],[-23,14],[-9,6],[-13,10],[-5,4],[-10,7],[-15,7],[-5,3],[-11,11],[-8,2],[-6,2],[-13,5],[-4,1],[-15,0],[-13,-3],[-15,1],[-16,-7],[-13,-5],[-12,-5],[-13,-7],[-7,-4],[-9,0],[-4,0],[-6,2],[-4,1],[-2,2],[-6,5],[-3,3],[-4,4],[-5,4],[-6,9],[-5,6],[-3,4],[-8,15],[-8,8],[-11,12],[-5,1],[-4,1],[-14,3],[-3,0],[-16,4],[-14,5],[-11,4],[-10,5],[-7,3],[-8,2],[-8,2],[-11,1],[-13,0],[-7,-1],[-4,0],[-9,-2],[-6,0],[-10,-2],[-5,-1],[-13,-6],[-11,-5],[-11,-6],[-18,-11],[-18,-4],[-22,1],[-14,5],[-3,1],[-10,9],[-19,2],[-16,1],[-3,0],[-3,-1],[-17,-4],[-25,-10],[-18,-9],[-20,-11],[-21,-3],[-16,2],[-11,7],[-4,3],[-10,6],[-2,0],[-10,3],[-15,-7],[-12,-10],[-4,-7],[-7,-10],[-1,-3],[-10,-27],[-8,-14],[-4,-8],[-2,-6],[-7,-16],[-6,-22],[-5,-17],[-1,-9],[-1,-17],[-1,-10],[0,-8],[-1,-23],[0,-3],[2,-12],[1,-10],[2,-8],[4,-14],[8,-37],[4,-19],[-1,-34],[-4,-12],[-3,-8],[-9,-17],[-6,-10],[-6,-10],[-11,-15],[-1,-1],[-1,-2],[-10,-14],[-8,-5],[-13,-8],[-25,-9],[-6,-2],[-13,-3],[-16,-7],[-14,-8],[-2,-2],[-11,-11],[-11,-20],[-11,-19],[-10,-22],[-9,-24],[-1,-1],[-7,-23],[-6,-22],[-4,-21],[-1,-6],[-6,-27],[-5,-15],[-2,-6],[-7,-16],[-6,-12],[-4,-7],[-8,-15],[-12,-16],[-8,-8],[-7,-8],[-6,-4],[-17,-12],[-10,-4],[-5,-2],[-22,-5],[-12,-1],[-2,0],[-14,-1],[-12,-2],[-13,-1],[-25,-6],[-18,-10],[-17,-15],[-4,-3],[-13,-16],[-1,-1],[-15,-17],[-6,-5],[-4,-4],[-8,-6],[-9,-4],[-10,0],[-3,-1],[-7,0],[-9,-1],[-8,-5],[-8,-5],[-2,-1],[-9,-9],[-8,-8],[-5,-4],[-3,-3],[-5,-3],[-4,-3],[-11,-9],[-18,-10],[-15,-12],[-13,-14],[-11,-14],[-7,-9],[-5,-8],[-2,-3],[-5,-9],[-4,-8],[-11,-15],[-9,-11],[-10,-8],[-13,-8],[-17,-3],[-12,2],[-2,0],[-7,1],[-11,2],[-9,2],[-12,2],[-7,0],[-9,1],[-11,0],[-19,-4],[-3,0],[-12,-4],[-16,-12],[-3,-3],[-12,-21],[-3,-4],[0,-1],[-2,-31],[-1,-11],[-1,-15],[-1,-5],[-2,-18],[-3,-13],[-2,-9],[-9,-19],[-10,-16],[-10,-11],[-8,-11],[-4,-5],[-2,-2],[-9,-9],[-6,-9],[-4,-6],[-14,-16],[-9,-8],[-4,-3],[-18,-10],[-10,-19],[-8,-18],[-8,-17],[-8,-15],[-2,-4],[-2,-4],[-7,-14],[-4,-10],[-4,-7],[-7,-14],[-2,-4],[-4,-4],[-11,-12],[-15,-15],[-6,-6],[-12,-14],[-4,-2],[-14,-9],[-10,-8],[-1,-1],[-18,-13],[-20,-12],[-22,-6],[-8,2],[-7,2],[-9,12],[0,1],[-9,26],[-6,24],[-2,6],[-12,26],[-8,14],[-3,3],[-3,3],[-6,7],[-13,5],[-3,2],[-15,3],[-16,4],[-14,1],[-17,-2],[-8,-2],[-7,-2],[-13,-5],[-2,-1],[-2,-2],[-7,-6],[-7,-12],[-3,-4],[-8,-10],[-16,-12],[-16,-5],[-17,1],[-20,10],[-5,5],[-11,10],[-8,13],[-3,4],[-1,6],[-2,14],[-1,3],[-4,23],[-2,9],[-4,10],[-5,14],[-7,12],[-4,6],[-6,7],[-6,8],[-9,7],[-12,8],[-6,2],[-8,1],[-8,-1],[-10,-5],[-3,-2],[-5,-3],[-7,-4],[-8,-7],[-7,-7],[-15,-10],[-10,1],[-12,5],[-5,3],[-11,7],[-12,10],[-6,11],[-2,3],[-15,31],[-5,19],[-9,19],[-4,6],[-5,8],[-7,6],[-11,9],[-11,2],[-4,1],[-8,4],[-11,6],[-14,16],[-4,2],[-7,3],[-4,4],[-6,6],[-9,7],[-4,3],[-3,3],[-1,2],[-7,15],[-2,5],[-4,9],[-8,33],[-4,10],[-3,9],[-7,17],[0,1],[-12,22],[-7,9],[-7,9],[-8,7],[-8,7],[-4,3],[-12,5],[-5,1],[-2,1],[-9,2],[-6,-1],[-8,-1],[-8,-1],[-5,-3],[-10,-6],[-14,-11],[-1,0],[-13,-13],[-13,-15],[-3,-4],[-11,-13],[-15,-23],[-7,-10],[-7,-10],[-11,-17],[-8,-12],[-5,-6],[-10,-10],[-12,-9]],[[54215,72813],[0,3],[-1,236],[-1,161],[-1,188],[0,87],[0,22],[0,14],[0,312],[0,84],[1,238],[1,312],[0,163],[0,21],[0,35],[0,2],[0,90],[-2,278],[0,34],[0,69],[1,243],[-1,254],[31,0],[18,0],[0,85],[0,179],[0,50],[0,31],[0,77],[-1,38],[0,5],[0,15],[0,143],[-4,311],[2,158],[0,85],[0,10],[0,21],[-1,23],[0,18],[0,98],[0,122],[0,93],[-2,251],[0,60],[0,8],[0,20],[0,35],[0,25],[0,31],[0,82],[0,23],[0,33],[1,121],[0,252],[0,15],[0,18],[0,29],[0,10],[0,37],[0,166],[0,143],[0,25],[0,26],[0,1],[0,130],[0,5],[0,12],[0,11],[0,27],[0,127],[0,163],[-1,498],[-1,119],[0,18],[0,55],[0,58],[-1,186],[0,544],[0,303],[0,114],[-1,127],[-3,218]],[[54621,99982],[240,1],[128,1],[207,0],[238,0],[65,-1],[157,0],[273,-2],[254,-2],[197,-1],[305,-2],[78,0],[177,-1],[159,-1],[198,-1],[310,-2],[324,-1],[303,-2],[197,-1],[289,-1],[297,-2],[258,-1],[226,-1],[280,-2],[287,-1],[212,0],[219,0],[220,1],[115,0],[16,0],[119,0],[304,1],[242,0],[303,1],[233,0],[344,1],[268,0],[173,1],[237,0],[268,0],[153,0],[300,1],[2,0],[298,0],[307,1],[280,1],[367,0],[7,0]],[[91523,99958],[0,-529],[-1,-127],[0,-314],[-1,-398],[0,-539],[144,-11],[18,-1],[1,-44],[1,-121],[0,-201],[-1,-241],[1,-149],[-1,-234],[-1,-89],[1,-35],[-1,-329],[0,-248],[0,-38],[0,-78],[0,-199],[0,-1],[0,-219],[0,-14],[0,-300],[0,-249],[0,-12],[0,-53],[-1,-439],[0,-54],[0,-36],[0,-27],[0,-38],[0,-139],[0,-178],[0,-43],[0,-129],[0,-81],[1,-30],[1,-136],[0,-171],[-1,-130],[0,-16],[1,-162],[-1,-91],[0,-69],[1,-155],[0,-70],[-1,-136],[-2,-118],[0,-61],[0,-234],[249,-2],[25,1],[43,0],[83,3],[144,-5],[-1,-133],[2,-22],[-2,-76],[0,-108],[0,-34],[0,-31],[0,-147],[0,-194],[0,-207],[0,-144],[1,-152],[0,-77],[-1,-237],[1,-217],[-1,-92]],[[92224,90568],[-13,0],[-31,0],[-138,0],[-13,-1],[-31,-2],[-63,0],[-83,0],[-182,0],[-261,-1],[-6,-1],[-20,0],[-70,0],[-4,0],[-12,1],[-121,-1],[-42,2],[-9,-2],[-81,1],[-65,0],[-1,0],[-21,0],[-187,0],[-15,0],[-167,0],[-65,1],[-41,0],[-122,0],[-59,0],[-85,2],[-80,-1],[-77,0],[-1,0],[-12,0],[-130,-1],[-94,0],[-147,2],[-128,-1],[-218,-3],[-14,1],[-172,5],[-11,0],[-223,-2],[-34,2],[-100,0],[-93,0],[-87,1],[-80,0],[-37,-3],[-58,-1],[-13,2],[-1,0],[-171,-2],[-10,1],[-70,0],[-173,-2],[-82,0],[-30,0],[-10,1],[-25,1],[-77,0],[-4,0],[-115,0],[-34,0],[-4,0],[-69,0],[-17,0],[-98,0],[-115,0],[-3,0],[-61,2],[-14,0],[-16,0],[-47,-2],[-13,-1],[-20,0],[-31,1],[-99,-2],[-1,0],[-19,0],[-30,-1],[-64,1],[-90,15],[-71,1],[-136,0],[-178,6],[-360,-7],[-77,-7],[-34,-4],[-75,0],[-66,-1],[-44,0],[-68,0],[-61,0],[-57,0],[-38,0],[-131,1],[-56,0],[-21,1],[-16,0]],[[82743,99964],[55,0],[267,0],[249,1],[268,1],[282,0],[260,1],[8,0],[282,1],[282,0],[271,1],[253,0],[295,1],[182,0],[91,1],[277,0],[253,0],[291,-1],[321,-1],[202,-1],[201,0],[69,0],[284,-1],[253,-1],[209,0],[243,-1],[189,0],[16,0],[9,0],[1,0],[2,0],[43,0],[290,-1],[293,-1],[289,-1],[274,0],[281,-1],[57,0],[334,-1],[181,0],[1,0],[2,0],[122,-1],[232,0],[331,0],[185,-1]],[[38640,81285],[0,311],[0,313],[0,225],[0,90],[-1,30],[1,279],[0,45],[0,111],[2,446],[-1,29]],[[38641,83164],[21,0],[10,0],[147,-2],[8,0],[90,-2],[265,2],[96,0],[82,-1],[33,2],[91,-3],[15,-1],[35,1],[27,0],[37,1],[100,3],[60,-1],[-1,193],[-1,214],[0,251],[-1,278],[0,62],[0,216],[-1,348],[0,308],[-2,257],[1,59],[-1,80],[2,223],[0,138],[0,3],[-1,64],[0,9],[0,54],[0,6],[0,73],[0,491],[-1,23],[0,81],[0,390],[-1,226],[0,30],[-1,77],[1,56],[0,30],[1,87],[0,115],[0,85],[-1,104],[-1,249],[0,55],[0,53],[0,342],[1,20],[0,23],[0,48],[0,125],[0,70],[1,308],[0,15],[0,17],[0,87],[0,203],[-1,313],[1,309],[0,313],[0,96],[0,200],[19,1],[0,26],[-1,286],[0,51],[1,54],[1,205],[-2,311],[0,324],[0,224],[1,79],[-1,32],[-2,72],[0,52],[1,154],[1,73],[1,78],[-1,22],[2,142],[-2,99],[-1,70],[-1,66],[0,75],[0,133],[-2,336],[-1,156],[-1,315],[1,59],[2,248],[4,207],[0,305],[0,93],[0,126],[0,85],[0,122],[0,101],[-1,317],[0,218],[0,120],[0,95],[0,397],[0,57],[0,55],[0,27],[0,144],[0,31],[0,400],[0,22],[-1,261],[0,31],[-2,322],[0,22],[0,25],[0,157],[30,4],[0,31],[-1,178],[0,14],[-1,376],[-1,230],[0,47],[-1,425],[-1,488]],[[39792,99916],[95,0],[11,0],[165,1],[34,0],[1,0],[263,1],[180,1],[256,2],[350,2],[153,2],[389,2],[276,2],[282,2],[243,2],[180,1],[374,1],[214,3],[235,2],[352,3],[300,2],[39,0]],[[44080,83168],[-245,0],[-50,0],[-14,0],[-17,0],[-39,0],[-5,-1],[-167,-6],[-57,-3],[0,-1026],[0,-146],[-1,-681],[-266,1],[-8,0],[-88,0],[-22,0],[-21,-1],[-74,1],[-55,0],[-27,0],[-154,-1],[-145,-1],[-236,-1],[-24,-1],[-14,0],[-18,0],[-28,0],[-166,-1],[-21,1],[-17,0],[-15,0],[-6,0],[-18,0],[-13,0],[-5,0],[-5,-1],[-15,0],[-42,0],[-398,-1],[-128,-1],[-126,0],[-180,0],[-64,-1],[-88,0],[-83,2],[-66,-1],[-396,-6],[-18,0],[-23,0],[-52,0],[-346,4],[-8,-1],[-49,-5],[-17,-1],[-160,-3],[-11,-1],[-47,1],[-267,1],[-85,-2],[-9,0],[-179,-1],[-179,0],[-11,0],[-8,0],[-6,0],[-61,1],[-68,-2],[-27,-1],[-112,1],[-70,1]],[[32108,99947],[282,0],[8,0],[198,0],[46,0],[85,0],[152,0],[307,-1],[337,0],[235,-2],[216,-3],[80,-1],[1,0],[1,0],[5,0],[2,0],[116,-1],[251,-2],[166,-2],[213,-3],[305,-4],[210,-2],[316,-4],[53,0],[1,0],[194,-2],[310,-4],[272,-3],[31,0],[246,-3],[273,-4],[232,-2],[246,1],[209,1],[339,1],[294,2],[221,1],[86,0],[79,0],[126,1],[223,1],[312,2],[249,1],[91,0],[65,1]],[[38641,83164],[-150,-1],[-47,0],[-9,0],[-19,0],[-137,-1],[-98,1],[-53,1],[-31,-2],[-150,-2],[-31,0],[-40,0],[-60,0],[-50,0],[-31,-1],[-150,1],[-9,-1],[-27,0],[-145,2],[-9,-2],[-103,2],[-26,0],[-214,-1],[-16,0],[-115,1],[-79,1],[-53,0],[-122,0],[-172,0],[2,478],[0,142],[0,39],[0,135],[1,144],[1,309],[1,312],[1,127],[1,183],[0,142],[-1,170],[1,233],[0,78],[-1,113],[1,198],[-67,1],[-14,0],[-19,0],[-135,3],[-94,2],[-164,3],[-128,2],[-87,-2],[-23,0],[-7,0],[-15,0],[-4,0],[-89,-1],[-121,-1],[-41,0],[-41,-1],[-36,0],[1,23],[-1,138],[0,21],[0,99],[2,261],[0,68],[0,131],[0,183],[-13,7],[-12,0],[-173,-1],[-66,0],[-202,-2],[-187,-1],[-13,1],[-34,0],[-116,4],[-177,0],[-12,-1],[-24,-2],[-10,-1],[-39,-2],[-5,32],[-9,-1],[-139,-4],[-36,-2],[-177,3],[-72,2],[-24,1],[-15,0],[-68,1],[0,10],[0,56],[0,44],[-1,556],[0,48],[0,237],[-4,6],[-7,9],[-14,9],[-11,4],[-12,10],[-9,18],[-10,12],[-16,13],[-21,-3],[-21,-5],[-12,-1],[-9,9],[-4,24],[2,21],[9,24],[12,17],[11,11],[9,17],[-2,25],[-11,11],[-9,5],[-17,4],[-24,4],[-9,1],[-1,-1],[-12,0],[-5,-31],[-3,-21],[-2,-31],[-9,-39],[-15,-31],[-10,-11],[-10,-4],[-16,18],[-7,16],[-4,29],[0,27],[4,20],[8,19],[10,10],[9,11],[10,14],[3,31],[-9,20],[0,2],[-2,0],[-11,2],[-16,1],[-11,4],[-13,0],[-15,-8],[-8,-6],[-15,-41],[-19,-35],[-13,-19],[-19,-18],[-12,-9],[-10,14],[1,28],[12,23],[15,21],[-3,29],[-10,9],[-9,4],[-18,10],[-15,10],[-16,-12],[-2,-30],[-7,-28],[-8,-20],[-10,-3],[-14,1],[-12,-5],[-11,-7],[-15,-13],[-10,-5],[-9,-3],[-10,3],[-11,14],[-16,0],[-8,-9],[0,-29],[4,-19],[4,-25],[-3,-20],[-7,-22],[-5,-21],[-7,-16],[-9,-16],[-9,8],[-7,20],[1,31],[10,26],[2,28],[-11,7],[-9,-1],[-10,-7],[-28,-10],[-11,-8],[-6,-26],[15,-47],[8,-38],[-8,-48],[-22,-24],[-13,-7],[-12,3],[-12,16],[-10,19],[-9,19],[-5,32],[0,26],[1,35],[-8,15],[-9,-2],[-25,-15],[-7,-10],[-17,-5],[-39,-16],[-23,7],[-9,13],[-9,19],[0,25],[8,26],[15,39],[1,26],[-7,18],[-26,28],[-17,14],[-19,-2],[-19,-2],[-13,-5],[-7,-11],[-15,-20],[-12,4],[-12,22],[-5,17],[-1,48],[-7,24],[-1,32],[-6,25],[-9,7],[-12,-4],[-9,-22],[-10,-6],[-13,8],[-4,22],[-1,30],[-4,33],[-5,25],[-11,20],[-10,-2],[-26,-38],[-17,-4],[-9,21],[12,69],[3,23],[-10,26],[-9,9],[-11,6],[-18,-1],[-14,2],[-20,10],[-8,8],[-9,9],[-67,61],[-11,-3],[-6,-25],[-4,-23],[4,-39],[3,-21],[-4,-33],[-12,-16],[-38,-4],[-9,2],[-15,20],[-18,16],[-12,4],[-10,-4],[-26,12],[-18,16],[-12,8],[-12,30],[-7,25],[-3,23],[-7,23],[1,74],[-7,26],[-10,18],[-5,5],[-3,3],[-12,3],[-4,-1],[-18,-3]],[[99939,86825],[-146,0],[-92,1],[-78,1],[-285,-2],[-17,1],[-37,-1],[-32,0],[-184,0],[-96,1],[-82,0],[-50,0],[-41,0],[-91,0],[-105,0],[-32,0],[-12,0],[-33,0],[-11,0],[-79,-1],[-87,0],[-44,1],[-62,-2],[-76,0],[-181,-3],[-181,1],[-88,0],[-93,-2],[-31,1],[-22,0],[-127,-2],[-36,1],[-142,2],[-64,-2],[-32,0],[-38,-1],[-45,0],[-50,0],[-126,1],[-182,0],[-181,1],[-179,-2],[-181,-1],[-5,0],[-13,1],[-9,0],[-26,0],[-8,1],[-125,2],[-16,0],[-33,0],[-129,1],[-55,-1],[-38,0],[-43,0],[-4,0],[-11,0],[-16,0],[-14,0],[-65,0],[-57,-1],[-1,0],[-8,0],[-5,0],[-130,-1],[-16,-1],[-47,0],[-194,2],[-21,-1],[0,318],[1,313],[0,310],[0,240],[0,75],[0,106],[0,30],[1,182],[0,94],[0,57],[0,88],[3,27],[-2,37],[-32,0],[-149,1],[-15,1],[-9,-1],[-18,-1],[-23,1],[-11,-1],[-13,2],[-94,3],[-182,-2],[-180,0],[-67,0],[-113,1],[-116,0],[-61,0],[1,268],[1,47],[0,191],[-1,87],[-1,25],[1,157],[1,151],[0,46],[-1,318],[1,267],[0,84],[-1,108],[0,82],[1,34],[-61,0],[-99,1],[-50,-1],[-137,0],[-56,-1],[-65,1],[-217,2],[-20,1],[-77,-2],[-1,0],[-199,0],[-102,0],[-32,1],[-45,1],[-90,0],[-14,-1],[-168,1],[-14,0],[-167,-1],[-15,0],[-31,0],[-22,0],[-81,0],[-34,0]],[[91523,99958],[52,0],[146,0],[119,0],[200,0],[311,-1],[358,0],[332,-1],[90,0],[48,0],[170,0],[276,-1],[342,0],[128,0],[219,-1],[311,0],[268,1],[193,1],[266,1],[191,1],[2,0],[1,0],[62,0],[190,1],[351,1],[187,1],[209,1],[233,1],[264,1],[239,1],[284,2],[102,0],[198,1],[28,0],[175,1],[209,1],[193,1],[234,1],[203,0],[278,2],[215,1],[337,-1],[186,-1],[0,-26],[1,-52],[1,-79],[1,-76],[-3,-63],[0,-27],[0,-34],[0,-24],[0,-22],[0,-29],[-1,-53],[0,-28],[0,-41],[0,-50],[0,-53],[0,-26],[0,-22],[1,-30],[-1,-27],[0,-26],[-1,-28],[1,-30],[0,-22],[0,-21],[1,-26],[-1,-35],[0,-23],[0,-54],[0,-28],[-4,-21],[4,-20],[-2,-35],[0,-24],[0,-40],[1,-29],[2,-37],[0,-33],[-1,-36],[-2,-118],[1,-22],[0,-28],[0,-31],[0,-28],[0,-35],[0,-24],[0,-25],[0,-33],[0,-27],[0,-52],[0,-33],[0,-40],[0,-39],[1,-24],[1,-60],[-1,-54],[-1,-24],[0,-22],[0,-23],[2,-26],[0,-24],[1,-42],[0,-54],[0,-46],[-1,-177],[0,-93],[-2,-39],[1,-35],[-1,-42],[0,-42],[0,-8],[0,-18],[0,-24],[0,-7],[1,-18],[-1,-32],[0,-24],[1,-30],[0,-35],[1,-44],[0,-77],[-1,-73],[0,-54],[0,-45],[0,-111],[0,-29],[0,-85],[-1,-43],[0,-64],[1,-22],[0,-85],[0,-43],[0,-119],[0,-44],[0,-51],[1,-86],[0,-60],[0,-23],[0,-94],[0,-162],[1,-71],[0,-27],[-1,-61],[0,-32],[1,-32],[0,-40],[0,-27],[0,-136],[0,-34],[1,-68],[0,-173],[0,-40],[0,-121],[0,-97],[0,-91],[1,-40],[-2,-27],[1,-22],[0,-51],[-2,-37],[-4,-24],[-4,-27],[-3,-28],[5,-27],[8,-36],[1,-77],[0,-41],[0,-42],[0,-42],[0,-42],[0,-60],[0,-34],[0,-35],[0,-41],[1,-52],[-1,-41],[0,-45],[0,-35],[1,-34],[2,-32],[0,-275],[0,-33],[2,-266],[0,-53],[0,-87],[-2,-36],[0,-29],[0,-27],[0,-34],[0,-22],[0,-27],[0,-30],[1,-26],[0,-76],[0,-31],[-1,-34],[0,-53],[0,-34],[1,-42],[-1,-29],[0,-28],[0,-42],[0,-42],[0,-40],[0,-42],[0,-26],[0,-48],[3,-23],[-3,-20],[0,-74],[0,-76],[0,-46],[1,-47],[0,-51],[0,-3],[0,-91],[0,-84],[0,-53],[0,-91],[0,-74],[0,-32],[0,-36],[0,-39],[0,-91],[0,-26],[0,-26],[1,-83],[0,-75],[0,-69],[0,-54],[0,-31],[0,-64],[0,-163],[0,-54],[0,-27],[0,-54],[0,-34],[0,-58],[0,-77],[0,-59],[0,-32],[0,-88],[1,-73],[0,-31],[0,-73],[-2,-74],[0,-10],[0,-28],[2,-45],[-2,-40],[0,-22],[0,-45],[1,-34],[1,-27],[0,-33],[-2,-166],[-1,-105],[-1,-119],[1,-28],[3,-99],[0,-80],[1,-27],[0,-48],[0,-126],[0,-112],[1,-36],[0,-44],[0,-22],[0,-82],[0,-34],[0,-57],[0,-66],[1,-94],[0,-68],[0,-30],[0,-91],[0,-27],[1,-118],[1,-136],[0,-79],[0,-45],[0,-84],[0,-13],[0,-9],[0,-46],[-1,-216],[2,-159],[0,-25],[1,-254],[0,-27]],[[99939,86825],[0,-40],[1,-122],[0,-32],[0,-44],[0,-66],[1,-24],[1,-23],[0,-339],[1,-102],[0,-224],[-1,-59],[0,-66],[2,-176],[0,-37],[0,-69],[0,-64],[0,-75],[-1,-68],[0,-45],[0,-34],[2,-170],[0,-75],[1,-44],[0,-27],[0,-25],[0,-25],[0,-33],[0,-24],[0,-23],[0,-22],[0,-25],[0,-24],[0,-37],[0,-75],[0,-63],[0,-58],[0,-105],[0,-27],[0,-102],[0,-30],[-3,-87],[4,-19],[0,-29],[-1,-35],[0,-31],[0,-36],[0,-32],[0,-27],[0,-40],[2,-26],[0,-35],[0,-68],[0,-88],[1,-71],[0,-33],[-1,-194],[0,-90],[2,-456],[-1,-91],[1,-31],[-1,-47],[-1,-91],[1,-46],[1,-26],[-1,-33],[1,-33],[0,-25],[0,-37],[1,-25],[-1,-29],[0,-26],[0,-27],[0,-28],[0,-41],[0,-29],[0,-26],[0,-30],[1,-33],[-3,-24],[1,-29],[0,-41],[2,-26],[1,-272],[0,-58],[0,-42],[0,-28],[0,-31],[0,-6],[0,-92],[0,-42],[0,-130],[1,-298],[0,-49],[0,-3],[1,-285],[1,-284],[0,-86],[0,-86],[2,-680],[1,-133],[0,-29],[0,-97],[1,-112],[0,-29],[0,-129],[0,-129],[0,-29],[0,-38],[1,-39],[0,-39],[0,-64],[0,-1],[1,-54],[0,-11],[0,-35],[0,-37]],[[99961,78354],[-19,17],[-11,13],[-5,5],[-16,18],[-13,8],[-7,-1],[-9,4],[-18,19],[-1,1],[-16,32],[-2,2],[-1,2],[-27,15],[-19,12],[-20,9],[-22,-11],[-5,-2],[-32,-8],[-29,-20],[-23,-21],[-3,-3],[-8,-2],[-28,-6],[-2,0],[-2,-1],[-14,-6],[-16,-1],[-16,0],[-24,0],[-11,0],[-8,1],[-3,1],[-2,1],[-8,2],[-14,3],[-2,0],[-15,13],[-2,1],[-7,20],[0,28],[1,40],[4,24],[-1,12],[0,17],[-12,31],[-14,22],[-10,14],[-7,30],[2,44],[17,58],[27,83],[26,45],[29,63],[14,48],[6,43],[0,40],[-7,29],[-8,23],[-13,15],[-10,2],[-9,-11],[-11,-36],[-12,-48],[-24,-19],[-24,0],[-36,19],[-15,14],[-15,14],[-10,14],[-13,18],[-12,18],[-23,40],[-21,42],[-8,30],[-8,37],[-4,23],[-11,58],[-9,84],[-12,59],[-20,51],[-22,38],[-17,18],[-18,-3],[-29,-20],[-22,-37],[-35,-51],[-22,-64],[-23,-60],[-7,-19],[-15,-30],[-22,-41],[-22,-29],[-23,-53],[-15,-36],[-15,-7],[-14,4],[-10,16],[-13,22],[-21,18],[-18,20],[-14,19],[-16,28],[-7,21],[-11,26],[-13,34],[-13,59],[-10,30],[-2,40],[3,40],[2,32],[10,70],[16,57],[15,64],[0,43],[-2,22],[-7,19],[-12,17],[-12,8],[-12,6],[-24,8],[-24,-10],[-10,-4],[-8,-6],[-23,-15],[-17,-11],[-20,-12],[-7,-18],[-20,-52],[-6,-38],[-2,-40],[3,-49],[12,-49],[13,-27],[19,-38],[11,-30],[8,-38],[4,-19],[5,-40],[2,-61],[-4,-48],[-3,-20],[-9,-38],[-15,-33],[-9,-7],[-15,-14],[-15,-19],[-13,-18],[-10,-3],[-17,-6],[-10,-6],[-19,-11],[-2,-1],[-6,-3],[-8,-5],[-29,-18],[-14,-9],[-15,-9],[-14,-4],[-2,-1],[-26,-4],[-57,-3],[-22,-4],[-21,8],[-24,10],[-16,10],[-15,34],[-8,12],[-7,7],[-26,11],[-19,13],[-19,17],[-16,21],[-2,1],[-14,14],[-17,15],[-25,22],[-20,18],[-22,26],[-26,30],[-17,26],[-9,14],[-10,15],[-20,30],[-14,28],[-21,30],[-21,24],[-30,16],[-34,4],[-36,10],[-16,-11],[-17,-12],[-9,-6],[-44,-31],[-34,-30],[-14,-14],[-16,-14],[-25,-16],[-27,3],[-26,10],[-52,7],[-28,7],[-32,-11],[-29,-4],[-21,5],[-24,11],[-32,49],[-8,44],[-8,54],[-1,51],[-7,74],[-4,43],[-9,56],[-7,54],[-11,38],[-4,17],[-26,47],[-33,54],[-27,34],[-40,30],[-9,7],[-45,-1],[-36,-3],[-25,0],[-48,9],[-25,6],[-28,10],[-27,23],[-25,13],[-13,21],[-17,23],[-9,13],[-14,15],[-15,19],[-13,17],[-18,19],[-16,21],[-14,22],[-13,13],[-60,72],[-71,50],[-23,32],[-50,122],[-17,60],[-4,30],[-5,31],[-7,41],[-12,72],[-6,59],[-25,67],[-13,48],[-22,30],[-51,42],[-40,11],[-13,5],[-12,4],[-15,-7],[-26,-14],[-13,-6],[-34,-16],[-36,-46],[-30,-64],[-46,-91],[-13,-21],[-18,-20],[-25,-17],[-19,-6],[-18,6],[-20,44],[-19,61],[-15,29],[-10,31],[-14,40],[-10,21],[-17,20],[-21,24],[-12,9],[-8,7],[-20,8],[-41,7],[-16,4],[-14,7],[-10,2],[-14,-1],[-10,0],[-18,2],[-22,-8],[-14,-4],[-20,-8],[-13,-7],[-12,-5],[-16,-12],[-62,-97],[-24,-41],[-12,-21],[-9,-12],[-10,-13],[-20,-28],[-7,-12],[-15,-20],[-30,-39],[-30,-35],[-21,-13],[-24,4],[-20,19],[-10,23],[-2,39],[6,40],[20,89],[6,28],[21,145],[-6,47],[-11,50],[-12,31],[-12,29],[-24,53],[-15,23],[-32,45],[-28,38],[-9,25],[-8,23],[-12,10],[-14,0],[-13,-15],[-2,-44],[2,-48],[-1,-23],[-5,-25],[-9,-31],[-11,-23],[-16,-16],[-12,-20],[-27,-23],[-22,-8],[-12,-6],[-8,-14],[-24,-22],[-10,-9],[-5,-29],[10,-51],[6,-26],[11,-23],[12,-19],[12,-18],[6,-23],[3,-37],[-4,-41],[-11,-31],[-16,-29],[-29,-22],[-9,-5],[-25,2],[-20,5],[-20,12],[-13,5],[-15,-2],[-15,-11],[-11,-14],[-14,-28],[-11,-22],[-17,-12],[-18,-7],[-31,-6],[-29,-1],[-26,-8],[-20,-15],[-18,-19],[-17,-20],[-18,-12],[-45,-15],[-18,0],[-18,7],[-11,16],[-3,25],[2,60],[1,25],[-2,42],[-5,19],[-3,28],[-11,28],[-11,21],[-21,16],[-9,9],[-15,3],[-16,3],[-24,11],[-15,12],[-47,22],[-25,8],[-23,-1],[-16,-5],[-18,-5],[-11,-10],[-9,-15],[-9,-24],[-16,-38],[-10,-11],[-12,-10],[-26,-11],[-29,-4],[-18,-1],[-20,-1],[-13,-6],[-11,-9],[-17,-19],[-21,-21],[-15,-9],[-12,-1],[-10,4],[-10,11],[-8,13],[-12,30],[-5,20],[-1,25],[-13,27],[-17,47],[-7,22],[-13,30],[-10,30],[-8,24],[-7,38],[-17,29],[-32,41],[-45,28],[-9,6],[-17,-6],[-15,-6],[-44,-16],[-23,-5],[-31,-7],[-40,-23],[-60,-32],[-35,-9],[-15,-20],[-15,-10],[-16,-6],[-14,-10],[-13,-10],[-19,-21],[-17,-18],[-13,-17],[-17,-12],[-15,-4],[-9,-3],[-15,4],[-22,7],[-26,4],[-23,4],[-27,8],[-25,10],[-14,10],[-14,9],[-20,21],[-13,13],[-11,15],[-17,9],[-14,8],[-13,9],[-28,48],[-26,42],[-23,31],[-17,56],[-14,56],[-15,47],[-19,58],[-26,56],[-19,50],[-15,26],[-33,34],[-27,24],[-16,12],[-24,9],[-17,4],[-42,-17],[-17,-13],[-26,-34],[-11,-14],[-18,-15],[-13,-6],[-16,-4],[-15,-5],[-21,-18],[-19,-17],[-11,-25],[-11,-27],[-37,-82],[-8,-41],[-1,-72],[-2,-40],[-4,-32],[-8,-47],[-7,-44],[-4,-30],[-1,-39],[8,-39],[7,-32],[2,-30],[-2,-37],[-3,-30],[-1,-33],[-5,-27],[-11,-30],[-13,-24],[-13,-19],[-8,-20],[-8,-36],[-6,-22],[-8,-49],[-11,-35],[-11,-35],[-6,-31],[-10,-30],[-13,-26],[-19,-23],[-12,-6],[-8,1],[-12,9],[-11,9],[-17,23],[-13,21],[-9,15],[-10,18],[-7,11],[-19,15],[-9,3],[-15,-1],[-14,0],[-15,4],[-9,6],[-9,9],[-16,11],[-13,11],[-18,15],[-15,20],[-15,15],[-16,1],[-14,-4],[-15,-5],[-12,-8],[-14,-12],[-8,-9],[-4,-30],[3,-21],[7,-14],[16,-52],[20,-51],[13,-39],[11,-43],[4,-31],[4,-47],[-1,-41],[-10,-55],[-6,-25],[-6,-31],[-5,-27],[-8,-29],[-8,-17],[-12,-28],[-5,-22],[-4,-30],[-8,-15],[-13,-21],[-7,-20],[-9,-21],[-11,-17],[-14,-13],[-11,-10],[-9,-9],[-10,-10],[-9,-3],[-16,7],[-11,11],[-9,30],[-3,21],[-2,26],[2,22],[5,19],[8,20],[11,19],[12,31],[10,33],[6,32],[4,30],[-3,46],[-6,26],[-8,18],[-9,17],[-10,13],[-12,7],[-18,9],[-13,-2],[-14,-3],[-15,-6],[-11,-12],[-17,-33],[-18,-43],[-7,-31],[-16,-57],[-6,-33],[3,-22],[6,-17],[1,-24],[0,-41],[-4,-36],[-8,-15],[-15,-17],[-23,-23],[-22,-14],[-28,-14],[-25,-10],[-30,-11],[-15,-6],[-28,-17],[-16,-28],[-13,-30],[-5,-22],[-1,-32],[1,-54],[-14,-44],[-22,-10],[-16,5],[-12,19],[-17,30],[-9,24],[-5,28],[-1,24],[0,32],[2,40],[6,41],[7,30],[8,39],[8,45],[4,22],[-5,46],[-6,19],[-15,37],[-13,17],[-17,15],[-16,14],[-9,4],[-23,4],[-29,-6],[-27,-26],[-30,-43],[-55,-111],[-65,-113],[-24,-26],[-78,-47],[-22,-6],[-58,-14],[-63,-18],[-13,2],[-19,11],[-5,18],[4,23],[11,24],[15,20],[23,17],[18,16],[17,33],[10,42],[1,49],[-1,46],[-5,36],[-6,25],[-3,29],[-9,21],[-35,9],[-24,2],[-24,-7],[-13,-15],[-10,-10],[-18,-19],[-13,-19],[-20,-17],[-18,-12],[-30,-6],[-34,-3],[-16,9],[-14,10],[-17,2],[-19,-9],[-11,-8],[-13,-2],[-8,2],[-11,2],[-18,1],[-16,8],[-16,11],[-13,13],[-13,20],[-6,17],[-6,17],[-8,15],[-21,15],[-22,14],[-19,32],[-38,77],[-7,32],[-2,24],[6,43],[11,36],[8,20],[22,51],[18,8],[10,14],[7,18],[-4,29],[-37,81],[-8,11],[-10,13],[-28,9],[-18,-24],[-11,-15],[-8,-34],[-6,-44],[2,-49],[0,-102],[3,-29],[4,-42],[3,-82],[-4,-84],[-33,-147],[-22,-28],[-12,-21],[-10,-33],[-9,-39],[-8,-19],[-13,-15]],[[90381,79851],[-19,-21],[-20,-17],[-29,-21],[-19,-7],[-29,1],[-8,1],[-23,2],[-24,8],[-24,15],[-21,12],[-15,24],[-10,20],[-6,25],[-3,26],[-1,22],[3,41],[5,30],[6,29],[5,22],[26,83],[7,71],[2,59],[-3,42],[-22,35],[-30,43],[-27,31],[-29,15],[-21,5],[-37,2],[-19,-7],[-9,-26],[-10,-32],[-8,-15],[-13,-7],[-40,-7],[-21,7],[-16,4],[-22,1],[-24,-4],[-17,-8],[-16,-16],[-25,-29],[-12,-9],[-28,-20],[-10,-5],[-17,-15],[-16,-9],[-11,-4],[-18,0],[-25,1],[-29,-1],[-31,-22],[-36,-21],[-35,-22],[-29,-18],[-32,-12],[-24,-6],[-25,-7],[-19,-1],[-20,0],[-14,4],[-16,9],[-11,9],[-12,11],[-7,18],[-6,18],[2,41],[3,35],[2,26],[1,27],[-15,33],[-6,16],[-11,17],[-8,9],[-16,20],[-14,7],[-20,12],[-18,10],[-15,9],[-14,11],[-18,-2],[-11,-3],[-10,-4],[-28,-22],[-21,-28],[-32,-24],[-12,-11],[-10,-8],[-16,-15],[-25,-12],[-13,-3],[-20,5],[-26,14],[-24,10],[-22,10],[-16,15],[-20,19],[-30,16],[-22,3],[-33,0],[-22,-5],[-20,-9],[-15,-12],[-18,0],[-28,6],[-25,3],[-42,-1],[-36,2],[-15,2],[-19,6],[-24,-2],[-23,-3],[-20,-4],[-9,-10],[-12,-28],[-13,-17],[-21,-9],[-24,6],[-17,4],[-14,-4],[-16,-4],[-12,3],[-13,-2],[-19,4],[-10,-1],[-20,-2],[-19,-2],[-14,4],[-15,10],[-24,26],[-26,36],[-22,16],[-23,7],[-20,0],[-22,-10],[-22,-13],[-13,-8],[-18,-13],[-22,-18],[-19,-4],[-19,5],[-20,12],[-25,27],[-9,36],[-5,29],[-13,20],[-21,22],[-13,-2],[-30,-1],[-18,-5],[-17,-11],[-13,-17],[-8,-17],[-14,-26],[-15,-32],[-15,-23],[-16,-39],[-12,-35],[-8,-35],[-4,-32],[-1,-38],[-1,-31],[-10,-45],[-8,-25],[-1,-35],[-2,-28],[-8,-31],[-8,-20],[-11,-19],[-9,-26],[-9,-24],[-12,-24],[-13,-23],[-19,-23],[-16,-11],[-1,0],[-14,-8],[-13,-1],[-15,9],[-15,27],[-11,21],[-17,21],[-22,17],[-21,22],[-27,32],[-18,46],[-6,19],[-8,12],[-10,17],[-16,26],[-10,27],[-5,21],[-22,35],[-25,26],[-13,-2],[-17,-11],[-14,-15],[-17,-20],[-52,-30],[-23,-3],[-36,22],[-27,15],[-15,4],[-33,-8],[-24,-18],[-14,-12],[-16,-16],[-8,-4],[-13,-16],[-12,-21],[-4,-8],[-18,-29],[-26,-30],[-26,-20],[-20,-2],[-27,17],[-14,17],[-14,15],[-18,12],[-11,4],[-9,-1],[-26,-1],[-18,1],[-21,5],[-23,8],[-20,6],[-17,3],[-21,4],[-10,-6],[-13,-27],[-10,-31],[-5,-23],[3,-29],[10,-25],[8,-18],[10,-12],[18,-11],[17,-12],[22,-14],[15,-15],[9,-21],[3,-23],[1,-36],[2,-34],[3,-38],[-4,-33],[-11,-37],[-9,-33],[-7,-48],[-9,-39],[-21,-44],[-14,-17],[-20,-22],[-12,-16],[-16,-5],[-14,-1],[-28,-6],[-24,-5],[-10,12],[-11,44],[-1,39],[-4,72],[-7,49],[-8,28],[-11,14],[-14,24],[-17,13],[-21,2],[-31,-6],[-21,-3],[-16,-12],[-11,-14],[-14,-16],[-29,-32],[-30,-27],[-11,-9],[-10,-10],[-10,-18],[-12,-32],[-17,-21],[-16,-25],[-14,-23],[-6,-15],[-6,-15],[-10,-28],[-9,-51],[-5,-34],[-6,-23],[-4,-11],[-4,-13],[-9,-24],[-18,-29],[-16,-28],[-11,-21],[-15,-23],[-18,-21],[-12,-10],[-27,-5],[-11,0],[-7,0],[-20,-1],[-49,-13],[-34,-9],[-17,-15],[-15,-19],[-11,-20],[-20,-29],[-13,-15],[-11,-9],[-13,-6],[-26,4],[-20,6],[-37,25],[-27,41],[-14,37],[-10,79],[-7,72],[0,37],[5,47],[-4,35],[-11,39],[-16,49],[-12,19],[-8,2],[-12,2],[-16,-9],[-12,-16],[-7,-25],[-13,-31],[-14,-44],[-2,-79],[7,-69],[1,-62],[-1,-39],[-9,-82],[-8,-28],[-10,-25],[-6,-30],[-8,-16],[-18,-3],[-14,6],[-15,16],[-16,21],[-17,15],[-36,9],[-15,-1],[-21,-4],[-37,-12],[-44,-27],[-26,-20],[-27,-26],[-20,-22],[-26,-42],[-16,-36],[-18,-19],[-23,-30],[-15,-23],[-14,-11],[-36,-36],[-25,-19]],[[38640,81285],[0,-156],[1,-158],[1,-79],[0,-19],[0,-43],[1,-203],[0,-123],[0,-11],[0,-149],[-1,-467],[-1,-81],[0,-74],[0,-192],[0,-27],[-1,-210],[0,-53],[1,-28],[0,-44],[0,-56],[0,-16],[1,-146],[0,-2],[-1,-32],[1,-133],[0,-45],[-1,-39],[1,-60],[0,-77],[0,-91],[0,-11],[0,-23],[0,-1],[3,-33],[0,-47],[-1,-198]],[[38644,78158],[-58,-2],[-66,1],[-1,0],[-235,2],[-89,-2],[-91,-2],[-228,-2],[-129,1],[-173,2],[-183,2],[-360,-2],[-179,-2],[-17,2],[-336,1],[-55,-2],[-127,-6],[-16,-2],[-93,-7],[-72,-8],[-13,-4],[-16,-3],[-16,-4],[-23,0],[-52,-1],[-38,-2],[-9,0],[-12,8],[-163,-9],[-151,-6],[-21,-1],[-10,0],[-13,0],[-11,-1],[-14,0],[-31,-1],[-67,-2],[-180,4],[-179,-1],[-90,-1],[-124,-1],[-20,0],[-130,-1],[-83,-4],[-22,-2],[-64,6],[-192,-2],[-174,2],[-34,1],[-33,-1],[-28,-1],[-74,0],[-25,0],[-1,0],[-73,3],[-95,1],[0,160],[0,168],[1,266],[1,666],[-534,-2],[-3,941],[-186,2],[-183,3],[-44,0],[-89,1],[-40,0],[-9,1],[-32,0],[-65,1],[-226,2],[-204,7],[-2,932],[-133,2],[-48,0],[-171,0],[-191,1],[-57,0],[-9,0],[-109,1],[-81,2],[-22,0],[-123,2],[-125,1],[-206,3],[-83,1],[-38,1],[-254,3],[-79,2],[-52,0],[-1,0],[-44,1],[-63,1],[-227,3],[-133,2],[-8,0],[-52,1],[-382,5],[-9,0],[-614,3],[-17,0],[-185,1],[-169,1],[-47,0],[-187,1],[-68,0],[-35,1],[-89,0],[-11,0],[-46,0],[-27,0],[-202,1],[-96,0],[-16,1],[-58,0],[-205,1],[-30,0],[-38,1],[-15,0],[-274,3],[-63,1],[-3,0],[-117,2],[-86,1],[-6,-17],[-269,0],[-13,0],[-127,0],[-180,0],[-1,0],[-23,0],[-11,0],[-70,0],[-93,0],[-43,0],[-18,0],[-455,1],[-147,0],[-61,-2],[-11,-1],[-17,-1],[-10,1],[-17,0],[-18,2]],[[54215,72813],[-10,-1],[-12,-2],[-16,5],[-13,10],[-14,14],[-12,8],[-15,18],[-8,17],[-11,18],[-8,16],[-7,13],[-10,9],[-10,5],[-11,-2],[-19,-3],[-18,-3],[-12,1],[-13,5],[-12,6],[-13,4],[-15,2],[-20,2],[-11,11],[-10,7],[-18,18],[-12,6],[-14,8],[-13,-1],[-14,-3],[-14,-9],[-14,-14],[-13,-15],[-10,-20],[-12,-22],[-11,-17],[-11,-6],[-13,-18],[-11,-15],[-13,-23],[-10,-24],[-12,-34],[-9,-32],[-9,-23],[-13,-26],[-19,-23],[-16,-11],[-14,-3],[-15,6],[-16,11],[-9,11],[-9,27],[-10,30],[-12,14],[-20,14],[-15,10],[-12,7],[-14,8],[-10,3],[-13,2],[-14,6],[-15,8],[-12,-1],[-12,-3],[-15,-6],[-10,-6],[-17,-12],[-16,-11],[-14,-11],[-9,-7],[-11,-9],[-13,-10],[-14,-7],[-17,-5],[-13,-1],[-25,1],[-19,2],[-13,-2],[-15,-2],[-14,7],[-18,4],[-22,2],[-24,-1],[-19,-6],[-23,-9],[-21,-9],[-17,-10],[-10,-6],[-15,-13],[-14,-15],[-15,-19],[-17,-29],[-8,-14],[-10,-24],[-8,-41],[-1,-27],[-3,-24],[-5,-20],[-5,-21],[-6,-20],[-6,-18],[-10,-25],[-9,-24],[-9,-15],[-15,-26],[-16,-25],[-17,-23],[-10,-11],[-10,-14],[-10,-11],[-12,-14],[-12,-10],[-13,-18],[-8,-22],[-17,-46],[-11,-23],[-11,-26],[-8,-16],[-10,-15],[-10,-11],[-11,-13],[-9,-5],[-14,-1],[-12,4],[-17,9],[-21,2],[-19,-2],[-9,6],[-9,2],[-18,1],[-21,-1],[-15,1],[-29,7],[-19,-5],[-22,-12],[-11,-2],[-11,2],[-14,8],[-11,12],[-10,16],[-10,24],[-6,20],[-12,21],[-10,7],[-11,7],[-16,10],[-18,9],[-18,13],[-22,1],[-16,-5],[-12,-5],[-12,-8],[-17,-6],[-22,-8],[-16,-6],[-8,2],[-9,4],[-11,7],[-21,20],[-16,14],[-11,12],[-16,16],[-9,1],[-14,9],[-17,17],[-10,2],[-13,-2],[-13,-5],[-16,-5],[-18,-3],[-15,2],[-19,-3],[-11,0],[-24,9],[-16,12],[-16,19],[-15,18],[-12,17],[-12,11],[-13,3],[-15,-2],[-12,-18],[-4,-25],[0,-31],[0,-1],[-1,-10],[-11,-9],[-29,24],[-11,-6],[1,-22],[5,-20],[5,-23],[13,-35],[-5,-25],[-10,-3],[-22,12],[-1,-9],[-3,-18],[4,-25],[11,-40],[8,-14],[6,-1],[-2,-23],[-8,-96],[14,-150],[5,-50],[12,-131],[-6,-30],[-6,-22],[-17,-77],[-1,-25],[15,-89],[11,-65],[0,-107],[-13,-44],[-18,-63],[13,-47],[25,-87],[19,-67],[-29,-181],[34,-221],[-39,-56],[-29,0],[-2,-24],[-3,-50],[-3,-43],[-7,-88],[0,-12],[-3,-39],[-1,-15],[-13,-257],[-1,-15],[-12,-50],[-1,-2],[-17,-70],[0,-2],[-2,-6],[-11,-46],[0,-6],[-1,-43],[0,-2],[-5,-119],[32,-146],[19,-111],[-4,-20],[-27,-151],[4,-58],[2,-35],[0,-10],[3,-35],[1,-16],[7,-120],[2,-37],[-2,-26],[-13,-130],[-14,-26],[-50,-99],[-61,-88],[-93,-135],[-2,-4],[-56,-45],[-6,-5],[-14,5],[-97,35],[-41,-12],[-25,-8],[-11,-4],[-17,-8],[-35,-15],[-34,-62],[-16,-31],[-48,-88],[-12,-16],[-15,-20],[-10,-12],[-2,-3],[-14,-18],[-9,-11],[-40,-106],[-17,-40],[-28,-69],[0,-1],[-24,-15],[-4,-2],[-40,-23],[-17,-10],[-1,0],[-13,-20],[-41,-56],[-41,-115],[-40,-18],[-16,-8],[-6,1],[-12,1],[-43,4],[-28,2],[-26,3],[-20,-62],[-7,-19],[-10,-31],[-3,-9],[-21,-62],[-3,-8],[-13,-12],[-39,-37],[-19,31],[-16,-7],[-5,-8],[-28,-60],[-21,-45],[-34,33],[-11,-2],[-29,-60],[-29,-12],[-46,48],[-75,79],[-2,-4],[-56,-70],[-67,-89],[-12,-17],[-20,-26],[-60,-87],[-100,-68],[-22,-28],[-51,-66],[-43,-117],[-11,-29],[-6,-19],[-22,-57],[-6,-9],[-51,-71],[-9,-13],[-44,-60],[-18,-24],[-45,-13],[-2,0],[-11,-3],[-8,-2],[-16,-5],[0,-27],[-1,-27],[-9,-1],[-15,13],[-11,-10],[-12,4],[-10,-11],[-5,-20],[0,-22],[4,-30],[-9,-17],[-21,8],[-15,23],[-9,-14],[-6,20],[2,21],[-14,13],[-15,6],[-93,-135],[-25,-46],[-24,-43],[-10,-19],[-18,-34],[-19,-34],[-3,-6],[-4,-6],[-23,-39],[-6,0],[-13,0],[-33,1],[-3,0],[-1,0],[-18,2],[-40,5],[-34,-34],[-12,-12],[-41,0],[-32,-1],[-55,0],[-189,-2]],[[48596,65873],[-6,0],[-117,-2],[-56,-1],[-10,0],[-5,0],[-10,-2],[-2,0],[-5,-1],[-15,2],[-21,1],[-6,0],[-9,0],[-50,-4],[-25,0],[-31,4],[-68,1],[-102,1],[-148,2],[-46,1],[-24,0],[-33,0],[-280,4],[-124,0],[-5,0],[-31,0],[-25,1],[-44,0],[-10,0],[-5,0],[-6,1],[-9,0],[-17,0],[-8,0],[-27,0],[-45,-1],[-23,0],[-90,-1],[-18,0],[-71,-1],[-473,-4],[-298,-5],[-35,0],[-52,0],[-41,1],[-13,0],[-28,0],[-168,-1],[-287,0],[-6,0],[-64,0],[-26,0],[-316,-7],[-31,1],[-84,1]],[[45047,65864],[-2,438],[-1,62],[0,127],[-9,18],[-1068,-4],[4,1698],[-42,0],[-86,1],[-666,4],[16,27],[0,14],[0,8],[-29,64],[-28,65],[-9,-6],[-17,15],[-7,24],[3,16],[1,4],[8,10],[13,-7],[9,-3],[6,4],[3,3],[3,7],[5,16],[-2,26],[-12,16],[-12,1],[-5,-6],[-3,-4],[-9,-3],[-5,-1],[-26,17],[-20,12],[-13,5],[-11,5],[-10,16],[2,48],[5,14],[3,9],[4,4],[4,5],[9,7],[3,30],[-6,11],[-5,9],[-5,3],[-6,4],[-15,-4],[-7,-8],[-3,-3],[3,-21],[3,-22],[-2,-22],[-4,-19],[-18,-30],[-12,-36],[-8,-8],[-4,-3],[-7,24],[3,38],[2,16],[-9,27],[-4,31],[3,9],[4,10],[7,15],[10,21],[4,25],[-1,10],[-1,11],[-10,25],[-6,9],[-5,7],[-11,-1],[-3,-29],[-8,-34],[-4,-27],[-2,-14],[-3,-21],[-15,-29],[-10,-9],[-19,-2],[-9,0],[-22,-16],[-22,-29],[-11,-13],[-11,17],[-5,8],[-3,24],[0,6],[-21,27],[-3,-1],[-8,-2],[-16,-17],[-4,10],[-4,12],[-13,5],[-3,-4],[-6,-9],[-6,-11],[-16,-31],[-15,-18],[-12,-1],[-13,12],[-4,25],[7,31],[8,16],[0,7],[0,21],[-6,7],[-5,4],[-6,-16],[-6,-18],[-4,-8],[-4,-7],[-10,2],[-3,1],[-4,6],[-6,10],[-10,22],[-9,4],[-7,-12],[-7,-12],[-10,-7],[-8,4],[-1,32],[-1,29],[9,16],[13,22],[-3,10],[-4,13],[-10,1],[-4,0],[-8,-24],[-6,-19],[-7,-15],[-9,-3],[-4,30],[0,5],[3,40],[-3,21],[-8,15],[-16,-11],[-1,-23],[5,-21],[-10,-24],[-1,1],[-10,4],[-13,19],[-9,10],[-8,19],[-2,19],[0,5],[-2,22],[-2,15],[-2,10],[-2,10],[-1,5],[-8,19],[-14,14],[-7,17],[-5,7],[-2,4],[-16,11],[-16,14],[-7,13],[6,45],[3,35],[-7,14],[-7,-5],[-6,-4],[-1,-2],[-10,-18],[-13,-29],[-3,-7],[-12,11],[-8,43],[-13,31],[-4,46],[0,13],[0,15],[-7,18],[-21,15],[-10,18],[-6,13],[-3,6],[-8,-1],[-2,0],[-12,-6],[-12,-6],[-12,-2],[-8,3],[-8,4],[-13,2],[-8,5],[-3,2],[-9,8],[-9,3],[-4,-3],[-5,-3],[-11,-11],[-3,-4],[-8,0],[-11,28],[-10,5],[-3,-8],[-6,-19],[-3,-10],[-4,-14],[-16,20],[-10,5],[-9,-8],[-5,-5],[-7,-16],[-8,-8],[-14,2],[-11,12],[-12,5],[-10,5],[-9,10],[-10,12],[-17,38],[-24,15],[-13,12],[-7,11],[-6,10],[-2,4],[-2,1],[-7,3],[-7,-21],[-3,-19],[-1,-5],[-5,4],[-6,5],[-2,14],[-8,49],[-9,24],[-6,5],[-10,10],[-10,2],[-9,-3],[-7,-1],[-2,0],[-7,22],[4,44],[1,30],[-14,19],[-6,8],[-5,33],[-5,11],[-1,4],[-12,-4],[-3,-5],[-8,-17],[-7,-5],[-4,-2],[-25,27],[-13,18],[-5,6],[-7,27],[5,46],[0,8],[2,51],[-6,18],[-19,8],[-9,-3],[-6,1],[-14,4],[1,5],[7,42],[6,29],[3,14],[3,10],[5,37],[1,7],[-1,43],[-1,12],[-1,10],[-2,16],[-1,8],[4,24],[2,18],[17,35],[9,10],[2,2],[1,2],[10,11],[10,16],[2,4],[5,21],[1,17],[0,17],[-4,42],[-1,18],[-1,11],[2,20],[2,10],[3,11],[7,30],[2,9],[3,13],[8,18],[14,31],[7,13],[15,30],[5,7],[3,5],[4,6],[9,18],[5,10],[5,11],[14,29],[10,25],[5,24],[10,35],[7,31],[3,25],[6,33],[2,31],[1,28],[2,25],[2,15],[1,10],[3,43],[3,25],[1,7],[10,41],[8,25],[5,14],[3,11],[4,8],[6,13],[29,33],[32,22],[31,23],[4,4],[7,7],[12,25],[3,11],[1,6],[4,16],[-1,10],[-3,32],[-3,20],[-2,19],[-3,42],[-1,20],[4,25],[4,19],[1,3],[7,14],[5,19],[13,39],[5,15],[2,8],[10,35],[14,38],[6,16],[1,1],[15,10],[12,2],[18,3],[25,4],[13,14],[9,24],[0,17],[1,6],[-1,8],[-2,50],[2,82],[8,44],[12,62],[5,16],[13,40],[11,17],[11,18],[-1,0],[-8,-1],[-5,0],[-7,0],[-83,-1],[-99,-2],[-10,4],[-105,2],[-28,0],[-28,0],[-45,0],[-97,-2],[-14,0],[-13,0],[-10,0],[-115,-1],[-154,-2],[-6,0],[-26,0],[-148,-2],[-5,0],[-13,-1],[-6,0],[-5,0],[-88,-3],[-12,0],[-90,-3],[-23,-1],[-14,-1],[-8,0],[-5,0],[-7,-1],[-9,-1],[-16,1],[-39,1],[-32,0],[-15,0],[-11,0],[-19,1],[-11,0],[-10,0],[-30,0],[-6,-2],[-5,-1],[-12,0],[-62,-1],[-46,-1],[-13,4],[-10,0],[-20,0],[-4,-2],[-9,-2],[-7,1],[-6,2],[-49,-1],[-13,1],[-10,0],[-11,-1],[-3,-1],[-7,-2],[-83,7],[-2,-1],[-14,-3],[-10,-2],[-17,0],[-10,-1],[-30,0],[-22,1],[-68,-2],[-15,0],[-16,0],[-63,3],[-12,0],[-5,0],[-17,1],[-16,1],[-18,1],[-9,0],[-54,-4],[-36,-3],[-94,7],[-131,5],[-39,1],[-128,-2],[-53,-1],[-175,-2],[-6,1],[-7,0],[-26,1],[-132,5],[-82,1],[-163,-5],[-7,0],[-2,0],[-123,5],[-153,-3]],[[38641,71938],[0,59],[0,148],[0,1],[0,23],[0,268],[0,125],[0,106],[0,52],[0,41],[4,191],[1,100],[-2,191],[-1,115],[-1,134],[0,38],[-1,38],[0,106],[0,94],[0,4],[0,36],[0,65],[0,22],[-2,158],[0,13],[0,4],[0,5],[1,44],[-1,298],[0,138],[0,59],[0,129],[0,312],[0,175],[0,138],[0,42],[-1,54],[3,138],[1,46],[-1,62],[4,51],[-1,92],[1,106],[2,26],[-2,185],[-1,119],[1,46],[0,24],[-1,137],[0,41],[0,132],[0,82],[0,67],[0,1],[0,93],[0,18],[0,6],[1,286],[-1,312],[0,82],[0,35],[-1,134],[0,52],[0,33],[0,145],[1,143]],[[12036,73906],[0,-50],[0,-56],[0,-96],[-1,-161],[-1,-298],[-1,-269],[170,-1],[1,-162],[1,-295],[0,-227],[-1,-441],[0,-39],[1,-163],[1,-233],[0,-56],[0,-51],[0,-42],[0,-5],[-1,-80],[0,-74],[1,-315],[0,-114],[0,-119],[0,-77],[2,-163],[3,-461],[390,-1],[44,0],[1,0],[22,0],[16,0],[32,0],[76,0],[58,0],[27,0],[19,0],[365,2],[27,0],[38,0],[8,0],[42,1],[37,0],[76,2],[92,0],[40,1],[9,0],[113,0],[194,1],[111,-1],[76,0],[19,0],[5,0],[3,0],[3,-21],[1,-19],[0,-7],[2,-27],[5,-26],[2,-8],[6,-42],[7,-25],[7,-28],[8,-22],[2,-4],[5,-12],[2,-3],[5,-10],[2,-3],[12,-14],[4,0],[5,0],[1,0],[0,1],[7,16],[2,6],[1,28],[4,25],[5,27],[6,19],[9,13],[15,15],[13,13],[11,14],[2,3],[12,14],[12,4],[15,-4],[3,-4],[14,-18],[12,-19],[12,-10],[12,-32],[6,-19],[0,-26],[-23,-39],[-16,-28],[-10,-14],[-1,-2],[-14,-14],[-1,-2],[-10,-3],[-11,-4],[-17,0],[-1,-1],[-9,-6],[-1,-1],[-10,-11],[-12,-14],[-9,-3],[-15,-14],[-3,-3],[-7,-15],[-3,-21],[-2,-22],[3,-32],[2,-41],[2,-30],[1,-10],[1,-13],[0,-72],[2,-52],[3,-19],[1,-10],[9,-22],[3,-1],[15,-3],[10,0],[20,-4],[14,-10],[9,-13],[4,-10],[6,-17],[3,-18],[3,-15],[1,-35],[0,-1],[0,-3],[-1,-20],[-6,-46],[-1,-8],[-5,-30],[-9,-31],[-3,-12],[-4,-15],[-9,-24],[-12,-28],[-10,-17],[-5,-8],[-12,-19],[-8,-11],[-14,-19],[-18,-21],[-26,-27],[-7,-4],[-16,-10],[-23,-14],[-14,-10],[-12,-7],[-5,-3],[-1,0],[-30,-18],[-10,-9],[-6,-4],[-14,-18],[-11,-23],[0,-1],[-10,-30],[-8,-28],[-6,-25],[-5,-17],[-2,-8],[-2,-7],[-8,-42],[-1,-5],[0,-24],[1,-36],[1,-5],[2,-20],[2,-16],[2,-11],[7,-31],[1,-6],[3,-13],[5,-31],[4,-39],[1,-10],[0,-33],[-3,-22],[-1,-10],[-3,-27],[-8,-35],[0,-1],[-9,-30],[-8,-38],[-4,-29],[-4,-22],[-4,-20],[-5,-28],[-3,-57],[-4,-42],[-4,-41],[-2,-26],[-1,-6],[-6,-26],[-5,-23],[-2,-7],[-6,-21],[-7,-18],[-9,-20],[-1,-3],[-10,-19],[-9,-21],[-9,-17],[-15,-34],[-6,-26],[-3,-28],[-4,-36],[-2,-22],[-2,-23],[0,-2],[-1,-22],[0,-7],[2,-18],[1,-6],[0,-3],[2,-3],[8,-12],[13,-13],[9,-7],[8,-2],[9,-1],[10,2],[13,-7],[16,11],[16,11],[7,14],[4,14],[7,21],[9,24],[10,50],[4,19],[3,20],[11,31],[8,20],[1,3],[9,14],[12,22],[7,10],[9,12],[10,10],[10,7],[3,3],[4,6],[6,9],[5,5],[4,3],[7,7],[6,6],[12,8],[11,3],[13,3],[10,0],[16,-3],[9,-3],[18,-8],[14,-6],[3,-1],[14,-6],[19,-7],[25,-9],[4,4],[5,5],[1,0],[10,13],[15,0],[13,-7],[12,-5],[1,-1],[13,-3],[17,0],[15,0],[12,2],[2,0],[7,0],[20,10],[4,2],[11,5],[7,2],[6,2],[13,5],[15,8],[10,5],[7,2],[2,1],[12,2],[11,-3],[10,-4],[12,-10],[12,-11],[11,-13],[10,-16],[7,-17],[11,-32],[8,-22],[6,-35],[4,-22],[2,-21],[2,-14],[4,-24],[2,-10],[8,-33],[9,-29],[10,-20],[14,-35],[7,-36],[5,-39],[4,-31],[4,-25],[4,-30],[0,-26],[-2,-16],[-1,-4],[-1,-9],[-6,-28],[-6,-17],[-1,-2],[-7,-12],[-7,-11],[-10,-14],[-10,-16],[-1,-3],[-6,-10],[-7,-12],[-9,-12],[-1,-2],[-9,-15],[-8,-12],[-3,-4],[-8,-8],[-14,-8],[-12,-2],[-9,2],[-11,6],[-9,3],[-9,0],[-16,4],[-2,2],[-13,8],[-2,3],[-5,8],[-8,11],[-29,58],[-13,23],[-53,33],[-11,3],[-4,-1],[-6,-1],[-3,-1],[-8,-4],[-9,-13],[-1,0],[-6,-10],[-3,-4],[0,-2],[-3,-29],[1,-31],[1,-28],[1,-19],[0,-8],[0,-1],[-7,-73],[-1,-65],[1,-74],[-4,-21],[-1,-6],[-8,-49],[-2,-13],[-13,-30],[-2,-5],[-2,-4],[-4,-8],[-25,-37],[-11,-16],[-17,-22],[-16,-21],[-1,-2],[-11,-15],[-6,-17],[-3,-12],[-2,-12],[-1,-3],[-3,-46],[0,-2],[0,-64],[0,-59],[1,-36],[3,-32],[0,-5],[5,-33],[1,-4],[5,-25],[0,-6],[1,-25],[-1,-68],[-1,-31],[0,-6],[-1,-20],[-1,-16],[0,-5],[-4,-20],[-2,-21],[-3,-46],[-1,-33],[-2,-34],[-4,-25],[-6,-22],[-13,-38],[-9,-33],[-9,-44],[-4,-17],[-4,-15],[-10,-39],[-9,-27],[-4,-17],[-1,-6],[-1,-4],[-7,-42],[-3,-28],[-1,-3],[-2,-32],[3,-31],[0,-5],[1,-3],[6,-16],[12,-25],[28,-35],[15,-17],[7,-13],[3,-5],[4,-10],[10,-28],[11,-36],[11,-36],[9,-19],[8,-17],[43,-45],[14,-13],[13,-16],[2,-31],[1,-10],[2,-13],[1,-3],[7,-19],[12,-17],[10,-14],[3,-5],[1,-1],[2,-14],[2,-7],[0,-21],[1,-14],[-7,-31],[-7,-13],[-8,-20],[-6,-20],[-7,-36],[0,-2],[0,-39],[0,-9],[6,-7],[17,-23],[10,6],[48,34],[2,1],[2,2],[33,32],[32,27],[25,17],[16,12],[8,3],[6,2],[4,-2],[16,-8],[36,-35],[30,-31],[2,-2],[2,-4],[24,-46],[11,-20],[8,0],[32,0],[8,0],[37,0],[10,0],[14,1],[19,0],[51,-1],[9,0],[125,0],[245,2],[42,-1],[62,0],[48,-1],[0,-102],[0,-319],[1,-293],[0,-82],[1,-369],[1,-390],[0,-22],[0,-8],[0,-45],[0,-14],[0,-58],[0,-175],[1,-228],[0,-42],[0,-51],[0,-84],[0,-75],[0,-173],[0,-210],[0,-65],[0,-21],[1,-32],[0,-26],[0,-33],[-1,-308],[-1,-524],[134,-2],[-2,-463],[-1,-135],[0,-69],[-1,-84],[0,-70],[0,-59],[-1,-58]],[[15507,59875],[-12,-14],[-15,15],[-7,13],[-27,-3],[-48,-35],[-26,-69],[-24,-70],[-17,-2],[-22,-37],[-8,-25],[-11,18],[-12,6],[-67,63],[-8,13],[-34,19],[-11,-4],[-46,30],[-10,1],[-27,-56],[-3,-20],[-20,-36],[-11,-36],[-23,-35],[-8,-8],[-11,-13],[-8,-16],[-13,-21],[-15,-32],[-7,-16],[-24,-4],[-11,4],[-14,-2],[-11,7],[-15,-2],[-15,-2],[-12,17],[-13,2],[-10,3],[-8,6],[-9,10],[-15,-9],[-9,3],[-24,11],[-16,11],[-13,9],[-10,7],[-18,5],[-33,36],[-10,1],[-19,-19],[-14,2],[0,51],[-5,18],[-16,28],[-11,22],[-8,30],[-22,24],[-21,59],[-50,24],[-10,1],[-13,1],[-14,-9],[-32,42],[-24,49],[-34,95],[-41,20],[-24,-9],[-13,-19],[-4,31],[-17,56],[-42,64],[-10,14],[-14,22],[-21,41],[-23,17],[-25,-10],[-12,0],[-22,35],[16,61],[3,47],[-3,22],[1,32],[8,20],[1,27],[6,30],[55,20],[9,98],[-15,40],[-1,58],[-9,43],[-2,49],[-15,34],[-7,12],[-14,19],[-8,90],[-8,-25],[-52,-45],[-19,-3],[-50,25],[-11,3],[-14,-7],[-28,0],[-11,5],[-8,35],[-21,-28],[-14,-11],[-78,143],[-21,8],[-13,20],[-35,3],[-18,17],[-23,-2],[-22,58],[-18,22],[-14,4],[-14,29],[-13,25],[-11,20],[-20,13],[-11,24],[-2,23],[-42,69],[-79,-16],[-27,41],[-88,-17],[-13,-28],[-15,-7],[-14,-15],[-19,-4],[-11,28],[4,28],[0,22],[-14,45],[-16,30],[-21,13],[-15,20],[-11,12],[-14,34],[-12,8],[-15,5],[-11,-9],[-28,-15],[-33,18],[-12,6],[-14,15],[-11,-2],[-16,-2],[-31,6],[-14,-4],[-12,4],[-16,-17],[-19,65],[-20,26],[-21,51],[-9,29],[-26,-3],[-34,3],[-15,13],[-11,15],[-26,18],[-27,27],[-8,18],[-10,40],[-19,18],[-4,25],[-24,13],[-21,13],[-23,42],[-3,35],[-28,2],[-48,-9],[-16,1],[-12,15],[-30,111],[-5,38],[-12,25],[-5,27],[4,25],[-14,13],[-13,4],[-9,8],[-14,-2],[-14,9],[-13,-8],[-14,5],[-14,23],[-13,28],[-23,16],[-14,0],[-9,-8],[-20,3],[-26,15],[-23,2],[-16,6],[-8,13],[-10,-6],[-17,-4],[-12,-6],[-22,4],[-28,7],[-22,13],[-11,12],[-13,5],[-19,22],[-17,23],[-18,6],[-18,-3],[-18,13],[-12,18],[-15,8],[-19,1],[-22,1],[-18,16],[-20,21],[-22,17],[-18,9],[-18,12],[-17,18],[-11,25],[-8,13],[-23,-21],[-11,-18],[-9,-13],[-10,17],[-9,9],[-10,3],[-16,6],[-12,6],[-13,3],[-12,16],[-18,19],[-17,15],[-16,6],[-22,-6],[-23,-13],[-17,-20],[-14,4],[-8,9],[-17,5],[-14,8],[-18,21],[-12,18],[-14,12],[-18,3],[-18,-1],[-26,4],[-13,-3],[-10,8],[-22,29],[-14,6],[-23,-44],[-21,-34],[-25,-41],[-17,-40],[-6,-31],[-8,-37],[-5,-22],[-14,-20],[-33,-47],[-20,-44],[-6,-33],[-3,-23],[-14,-13],[-16,-1],[-13,1],[-16,-9],[-12,27],[-9,20],[-21,14],[-11,11],[-7,18],[-8,13],[-10,18],[-9,2],[-11,13],[-13,13],[-11,1],[-8,9],[-12,4],[-13,-2],[-12,10],[-10,14],[-13,5],[-14,-7],[-18,3],[-10,8],[-14,1],[-19,2],[-17,7],[-14,2],[-10,-2],[-15,-6],[-14,-11],[-17,-12],[-11,-13],[-12,-22],[-8,-13],[-11,-1],[-14,6],[-13,-3],[-11,2],[-8,12],[-14,8],[-17,6],[-12,11],[-10,10],[-12,4],[-11,5],[-13,9],[-13,5],[-11,1],[-12,4],[-7,11],[-9,32],[-7,14],[-11,34],[-15,4],[-16,-2],[-51,-7]],[[10430,62665],[-375,22],[-1,623],[-527,0],[-2,313],[-525,9],[0,617],[0,58],[0,69],[0,579],[-51,75],[-32,119],[-2,26],[2,28],[-9,8],[-3,29],[5,58],[-2,41],[5,26],[3,34],[-20,30],[-8,18],[-17,-2],[-13,6],[-16,3],[-20,-5],[-18,13],[-11,-9],[-11,4],[-26,11],[-14,0],[-9,-2],[-18,-6],[-14,13],[-10,10],[-27,-1],[-29,19],[-24,56],[-12,72],[-4,59],[-32,66],[-37,57],[-26,26],[-18,-12],[-28,-24],[-21,-36],[-28,-25],[-25,-14],[-15,-25],[-12,-5],[-11,19],[1,30],[1,41],[-5,46],[-15,26],[-18,12],[-29,-8],[-41,-3],[-41,21],[-29,15],[-33,38],[-31,39],[-37,38],[-27,22],[-17,37],[-20,31],[-12,3],[-20,2],[-9,1],[-16,10],[-12,6],[-14,-17],[-23,-21],[-28,-21],[-19,-8],[-26,-30],[-28,-35],[-37,-21],[-16,-29],[-36,18],[-13,18],[-17,43],[-8,20],[-22,18],[-15,20],[-15,31],[-11,30],[-15,15],[-21,11],[-8,16],[-11,14],[-25,5],[-21,21],[-16,37],[-7,32],[-17,26],[-7,33],[-5,47],[-15,16],[-12,44],[2,56],[9,38],[-20,1],[-13,9],[-17,24],[-21,20],[-25,25],[-18,21],[-20,22],[-11,10],[-46,18],[-25,28],[-23,36],[-31,36],[-29,25],[-32,20],[-16,11],[-15,5],[-11,6],[-24,9],[-28,-6],[-19,-2],[-17,-5],[-20,21],[-23,19],[-26,12],[-26,13],[-10,17],[-28,46],[-21,37],[-18,-5],[-9,11],[-7,57],[-3,63],[-25,24],[-27,21],[-12,3],[-10,2],[-17,14],[-13,21],[-13,16],[-14,3],[-14,-4],[-14,4],[-9,-4],[-11,-6],[-9,-6],[-15,-2],[-10,13],[-16,24],[-22,23],[-12,-8],[-24,-6],[-17,11],[-40,33],[-37,46],[-12,11],[-17,-11],[-14,-21],[-40,-42],[-37,-40],[-14,-22],[-9,-24],[-16,-33],[-17,-22],[-8,-15],[-8,-47],[-6,-31],[-12,-17],[-34,6],[-18,13],[-17,10],[-13,-5],[-32,-29],[-34,-9],[-13,1],[-30,13],[-31,12],[-22,4],[-20,-10],[-14,-7],[-13,-7],[-13,-2],[-18,2],[-8,22],[-6,49],[-8,29],[-12,22],[-14,10],[-29,50],[-25,40],[-31,28],[-40,18],[-37,-2],[-35,-8],[-14,-15],[-24,-10],[-22,-8],[-25,18],[-33,31],[-24,9],[-23,10],[-26,-5],[-23,-5],[-17,4],[-8,-7],[-21,-30],[-20,-31],[-19,-29],[-17,-22],[-14,-1],[-13,-13],[-26,-35],[-24,-20],[-35,-8],[-18,-1],[-12,16],[-13,-19],[-21,-28],[-25,-29],[-19,-18],[-17,-21],[-11,-31],[-7,-30],[-7,-43],[-18,-3],[-19,8],[-22,20],[-15,23],[-14,36],[-13,27],[-14,-8],[-18,-17],[-13,-14],[-17,-13],[-22,5],[-23,16],[-13,-19],[-12,-35],[-19,20],[-22,58],[-29,0],[-31,8],[-37,44],[-29,78],[-10,73],[-41,58],[-26,95],[-17,85],[-5,23],[-12,29],[-26,1],[-39,14],[-23,21],[-26,29],[-23,-9],[-15,-9],[-9,-7],[-7,-17],[2,-32],[10,-47],[9,-20],[11,-26],[1,-23],[-7,-22],[-18,-23],[-12,-21],[-4,-44],[-6,-53],[-8,-53],[-8,-33],[-22,-12],[-14,-3],[-11,-12],[-17,-5],[-22,-11],[-25,2],[-30,3],[-16,-9],[-10,-5],[-12,-10],[-10,-8],[-16,-4],[-14,-8],[-22,-8],[-17,-6],[-16,10],[-13,-8],[-21,-21],[-22,-6],[-21,6],[-19,16],[-16,9],[-9,-4],[-8,-7],[-29,0],[-22,3],[-19,-6],[-17,5],[-11,9],[-10,8],[-12,-1],[-20,-15],[-13,5],[-20,11],[-16,9],[-23,10],[-22,11],[-9,0],[-15,-5],[-20,7],[-11,9],[-18,48],[-17,44],[-6,50],[-2,53],[-9,22],[-26,-25],[-21,-28],[-18,-23],[-22,-33]],[[3507,67230],[-26,22],[-24,23],[-6,-6],[-38,-33],[-29,-7],[-26,-3],[-14,-33],[-11,-4],[-32,10],[-23,0],[-37,-1],[-3,41],[1,29],[-8,50],[-38,73],[-16,37],[-7,-13],[-18,-21],[-7,-15],[-9,-3],[-44,-4],[-14,-6],[-11,-25],[-20,-17],[-23,34],[-3,66],[-2,44],[-9,46],[-2,35],[-3,52],[0,35],[-6,31],[-15,33],[-68,37],[-28,107],[-37,98],[-7,48],[-15,24],[-7,30],[3,123],[114,109],[-4,59],[-33,44],[-2,21],[-15,4],[-19,18],[-53,-42],[-17,21],[-9,11],[-25,-24],[-9,-2],[-46,19],[-57,46],[-6,21],[-12,31],[-13,18],[-12,-4],[-31,-19],[-20,13],[-68,53],[-10,24],[0,26],[-14,35],[-6,32],[-6,16],[-3,26],[4,53],[6,21],[8,13],[10,5],[30,50],[35,63],[7,51],[7,20],[9,7],[16,16],[13,24],[15,46],[15,28],[28,40],[22,-2],[18,1],[24,30],[3,78],[9,43],[17,7],[29,12],[32,-4],[45,2],[13,51],[5,38],[-11,54],[6,20],[21,48],[33,55],[40,50],[41,57],[-21,45],[-4,92],[-7,19],[-20,19],[-17,70],[1,16],[6,41],[-3,23],[-6,44],[3,33],[6,17],[18,34],[10,35],[-10,54],[-3,74],[-13,35],[-18,79],[-15,14],[-10,10],[-13,6],[-5,21],[-17,47],[-9,19],[-18,35],[-43,10],[-10,8],[-47,56],[-18,10],[-13,11],[-48,57],[-12,35],[0,29],[-4,23],[-8,14],[-5,20],[-2,28],[-21,117],[3,19],[20,49],[21,98],[1,85],[-3,25],[6,57],[34,38],[0,24],[1,29],[-3,34],[-11,133],[7,36],[10,38],[7,39],[0,26],[5,34],[2,22],[10,69],[1,23],[-17,69],[-20,55],[-32,88],[-31,25],[-34,65],[-16,33],[-34,28],[-18,21],[-21,31],[-22,42],[-10,11],[-24,28],[-10,12],[-1,-1],[-39,-36],[-33,1],[-3,-4],[-20,11],[-22,-8],[-17,19],[-8,12],[-12,21],[-6,22],[-5,15],[-13,22],[-5,23],[-32,122],[-2,35],[8,44],[6,73],[3,37],[10,20],[6,33],[5,42],[-2,22],[-28,64],[-16,42],[-34,35],[-22,25],[-10,17],[-4,31],[-26,90],[-9,-1],[-17,4],[-15,8],[-8,7],[-10,-4],[-14,-13],[-16,-11],[-18,-12],[-11,-6],[-36,0],[-16,-18],[-24,-21],[-4,-6],[-17,-22],[-21,-23],[-12,13],[-16,25],[-12,14],[-19,27],[-8,25],[-3,25],[-5,27],[-8,15],[-7,35],[0,27],[0,35],[3,58],[-4,33],[4,27],[-12,44],[-1,25],[-7,34],[-8,20],[-12,28],[-6,49],[-4,28],[-13,18],[-36,60],[-5,40],[6,79],[4,36],[5,56],[-3,14],[-9,55],[-10,44],[-1,10],[-1,25],[9,33],[2,21],[-10,127],[-3,20],[-3,22],[19,38],[6,20],[5,28],[-11,56],[-6,14],[-12,21],[-10,25],[-5,22],[3,24],[1,33],[-2,22],[-9,34],[-4,23],[-9,3],[-14,-3],[-9,11],[-16,27],[-13,29],[-9,10],[-11,18],[-17,21],[-17,-2],[-6,6],[-22,20],[-14,16],[-4,23],[-7,25],[-11,28],[-3,31],[-3,33],[-4,22],[-8,24],[-13,30],[-7,9],[-7,17],[-11,37],[-12,28],[-7,-13],[-27,-13],[-21,-23],[-19,-22],[-13,-4],[-7,-12],[-11,-3],[-17,-1],[-9,-6],[-8,-24],[-11,-10],[-12,-7],[-23,34],[-8,20],[-11,14],[-6,24],[6,36],[-1,31],[-6,17],[-13,23],[-19,19],[-19,7],[-8,-2],[-25,3],[-13,9],[0,33],[-3,40],[-10,42],[-16,45],[-17,52],[-5,22],[-1,36],[-6,17],[-9,8],[-8,8],[-8,10],[-8,34],[-13,42],[-10,20],[-14,14],[-12,28],[4,26],[-13,69],[-12,46],[-9,13],[-6,23],[-9,12],[-16,40],[-23,11],[-12,34],[-6,22],[-18,17],[-5,23],[-15,35],[-4,36],[-9,13],[-18,21],[-36,62],[-34,0],[-26,12],[-6,31],[3,32],[12,64],[3,24],[1,29],[4,31],[5,32],[-3,22],[-11,31],[-21,38],[-35,-4],[-13,13],[-9,-1],[-26,-2],[-26,23],[-2,87],[-7,36],[-17,40],[-16,5],[-9,5],[-12,13],[-16,22],[-15,18],[-1,26],[5,32],[-14,58],[0,27],[-2,13],[-3,22],[-10,23],[-13,32],[0,38],[-39,36],[-9,24],[-16,25],[-8,26],[-4,48],[1,84],[-8,29],[-7,16],[-11,23],[-11,22],[-11,33],[-12,43],[-11,9],[-9,32],[-9,26],[-1,11],[-2,15],[-6,16],[-3,9],[-12,10],[-18,20],[-10,15],[-8,43],[-13,19],[-5,12],[-9,22],[-2,9],[-5,25],[-10,19],[-2,23],[-57,-39],[-6,-4],[-12,8],[-11,28],[-12,26],[-14,8],[-24,23],[-15,33],[0,35],[0,458],[0,216],[0,1656],[0,63],[0,75],[1,815],[0,749],[0,187],[0,241],[0,631]],[[99961,78354],[0,-28],[2,-39],[0,-23],[0,-57],[0,-47],[0,-31],[0,-78],[1,-24],[0,-22],[0,-32],[0,-81],[1,-56],[-1,-17],[0,-14],[-1,-37],[2,-203],[2,-89],[0,-22],[1,-30],[0,-71],[1,-148],[0,-51],[0,-29],[1,-64],[2,-25],[-1,-200],[1,-28],[2,-367],[1,-122],[0,-19],[1,-148],[1,-71],[1,-25],[0,-32],[1,-45],[0,-30],[0,-49],[1,-61],[0,-45],[1,-33],[0,-25],[1,-113],[1,-33],[0,-112],[0,-2],[0,-22],[0,-30],[0,-38],[0,-23],[-1,-41],[0,-23],[0,-22],[0,-39],[0,-20],[-1,-34],[0,-36],[0,-29],[0,-29],[0,-32],[-1,-28],[0,-27],[0,-22],[0,-28],[0,-89],[-1,-68],[-1,-77],[0,-32],[-1,-60],[0,-77],[0,-1],[0,-36],[0,-52],[0,-35],[0,-23],[-1,-49],[0,-24],[-1,-25],[0,-28],[0,-32],[1,-36],[0,-23],[0,-26],[-1,-67],[-1,-65],[0,-23],[-1,-126],[0,-74],[0,-26],[0,-2],[0,-38],[-1,-155],[-1,-190],[0,-77],[-1,-22],[0,-17],[0,-14],[0,-30],[-1,-45],[0,-5],[0,-36],[-1,-95],[0,-66],[0,-2],[0,-27],[0,-422],[0,-59],[-1,-138],[-1,-610],[0,-153],[0,-84],[0,-10],[0,-108],[0,-103],[-1,-122],[0,-24],[0,-133],[0,-9],[0,-54],[0,-184],[-1,-341],[0,-44],[-1,-97],[-3,-176],[3,-195],[0,-59],[0,-138],[-1,-80],[0,-42],[0,-48],[0,-188],[0,-80],[0,-114],[0,-88],[0,-203],[0,-117],[0,-39],[-1,-278],[0,-84],[0,-66],[0,-23],[0,-22],[0,-46],[0,-39],[0,-70],[0,-23],[0,-3],[0,-90],[0,-27],[0,-89],[0,-45],[-1,-121],[-3,-328],[-1,-61],[1,-158],[0,-230],[1,-111],[0,-3],[0,-78],[0,-37],[0,-38],[0,-62],[0,-37],[0,-36],[-1,-93],[0,-32],[0,-36],[-2,-71],[-2,-358],[-1,-146],[0,-91],[1,-28],[0,-176]],[[99953,65460],[-36,-1],[-234,2],[-55,0],[-138,0],[-253,4],[-3,-670],[0,-29],[-1,-239],[-490,-4],[-208,-2],[-292,-9],[-337,1],[-36,0],[-51,0],[-193,0],[-105,2],[-229,1],[-90,1],[-80,16],[-45,1],[-64,0],[-35,1],[-137,1],[-12,0]],[[96829,64536],[-13,0],[-24,0],[-62,0],[-4,0],[-50,0],[-71,1],[-61,0],[-18,0],[-165,2],[-26,-2],[-61,1],[-113,0],[-106,1],[0,437],[2,340],[0,52],[0,22],[0,399],[-2,317],[1,312],[0,313],[1,235],[1,78],[-1,305],[4,276],[-1,43],[-2,338],[0,292],[-193,-2],[-115,2],[-23,-1],[-24,0],[-28,0],[-31,0],[-10,0],[-18,-1],[-23,0],[-65,-1],[-144,-3],[1,300],[1,1573],[-266,3],[-92,0],[-89,2],[-32,0],[-38,-2],[-121,1],[-52,0],[-16,0],[-11,0],[-102,-2],[-26,1],[-21,-1],[-27,3],[-53,9],[-215,-7],[-36,2],[-52,-4],[-10,0],[-47,1],[-485,2],[-158,0],[-192,1],[-179,-4],[-27,-1],[-114,2],[-34,0],[-48,2],[-128,2],[-12,0],[-64,1],[-16,-4],[-12,1],[-17,0],[-58,1],[-168,0],[-187,-1],[1,252],[3,1271],[0,162],[0,191],[-13,1],[-46,1],[-128,1],[-11,0],[-113,-2],[-48,-1],[-131,2],[-22,1],[-12,-1],[-12,-1],[-72,1],[-18,-2],[-89,2],[-52,-1],[-12,-1],[-113,3],[-45,1],[-43,0],[-57,1],[-135,2],[-35,-1],[-10,0],[-11,-1],[-12,1],[-114,2],[-72,2],[-10,-3],[-178,-1],[-85,0],[-270,3],[-169,-4],[-2,940],[1,132],[1,167],[1,52],[0,170],[0,45],[0,29],[0,43],[0,4],[1,165],[0,62],[0,67]],[[90049,73930],[0,62],[0,24],[0,37],[-1,99],[0,242],[0,37],[-1,50],[1,23],[0,32],[0,55],[1,807],[0,199],[19,0],[39,0],[272,1],[-1,147],[1,161],[0,110],[0,313],[0,47],[0,151],[0,243],[0,70],[2,25],[1,85],[0,55],[0,76],[-2,212],[0,178],[1,197],[0,114],[4,313],[3,180],[2,162],[-7,214],[0,61],[0,49],[1,65],[0,543],[-1,237],[-2,29],[0,78],[-1,108],[1,30]],[[38641,71938],[-88,-1],[-92,0],[-87,0],[-369,-3],[-35,0],[-94,2],[-208,-5],[-106,-3],[-12,3],[-12,0],[-88,2],[-54,0],[-107,2],[-19,0],[-47,0],[-125,0],[-61,0],[-191,-3],[-11,-1],[-61,-2],[-16,0],[-33,0],[-42,-1],[-17,0],[-10,0],[-60,0],[-79,-2],[-23,4],[-1,-55],[0,-120],[0,-45],[0,-35],[0,-28],[0,-31],[1,-42],[0,-43],[0,-40],[1,-34],[0,-58],[0,-46],[0,-45],[0,-41],[-1,-63],[1,-32],[0,-81],[0,-33],[0,-31],[1,-30],[-1,-61],[0,-84],[1,-98],[0,-67],[0,-25],[0,-20],[-1,-72],[0,-23],[0,-118],[0,-29],[-1,-41],[0,-114],[0,-181],[-171,-2],[-187,1],[-86,2],[-28,2],[-9,0],[-13,0],[-21,-1],[-22,0],[-58,1],[-13,-3],[-13,1],[-18,1],[-61,3],[-11,0],[-88,-13],[-39,1],[-53,1],[-49,0],[-27,0],[-12,1],[-66,5],[-23,-1],[-52,-2],[-124,-4],[-46,-1],[-44,0],[-15,0],[-16,0],[-58,-1],[-90,2],[-86,1],[-18,0],[-27,0],[-88,1],[-47,0],[-177,3],[-174,6],[2,-298],[-1,-18],[-1,-108],[0,-59],[0,-156],[0,-64],[0,-184],[0,-240],[1,-109],[0,-326],[1,-137],[1,-57],[1,-96],[-4,-22],[0,-1],[0,-48],[0,-37],[0,-19],[1,-245],[0,-57],[-5,-19],[-13,-40],[-13,-26],[-10,-11],[-14,-2],[-19,9],[-7,11],[-6,11],[-4,7],[-13,21],[-20,25],[-9,3],[-12,-1],[-9,3],[-11,18],[-25,-5],[-7,-4],[-6,-3],[-9,3],[-10,21],[-9,9],[-13,-1],[-18,0],[-16,-7],[-11,-13],[-16,0],[-14,-12],[-16,-8],[-9,9],[-16,38],[-8,42],[-10,20],[-12,9],[-19,22],[-10,-1],[-11,-21],[-13,-26],[-12,-8],[-9,8],[-22,5],[-9,0],[-8,-20],[-16,-6],[-5,2],[-4,1],[-12,10],[-17,3],[-12,10],[-10,-10],[-3,-24],[-9,-8],[-11,31],[-9,12],[-15,0],[-11,-13],[-4,-6],[-11,-19],[-6,2],[-7,4],[-14,12],[-11,10],[-11,35],[-9,20],[-10,15],[-11,13],[-14,7],[-11,4],[-12,2],[-18,4],[-11,8],[-11,13],[-18,28],[-10,7],[-15,9],[-11,8],[-11,6],[-9,4],[-13,-4],[-11,-2],[-14,-1],[-16,-6],[-14,-1],[-12,2],[-12,1],[-14,-4],[-13,-10],[-9,-2],[-17,-1],[-12,-9]],[[33326,68010],[-9,-5],[-14,-13],[-8,-1],[-16,-10],[-10,-6],[-9,2],[-13,19],[-10,24],[-2,4],[-15,16],[-9,0],[-16,-8],[-1,0],[-11,-15],[-4,-6],[-2,-3],[-7,-8],[-3,-4],[-5,-8],[-14,-28],[-5,-8],[-2,-4],[-15,-12],[-12,-11],[-10,-2],[-11,10],[-12,15],[-10,18],[-12,23],[-5,21],[-9,12],[-12,-4],[-8,-9],[-9,-8],[-15,-13],[-11,-1],[-11,-6],[-5,-24],[-5,-29],[-5,-24],[-3,-20],[-4,-20],[-8,-16],[-11,0],[-13,12],[-7,23],[-7,26],[-12,19],[-10,7],[-13,7],[-9,-8],[1,-32],[-9,-21],[-13,-12],[-11,-13],[-10,-28],[-7,-10],[-10,-2],[-12,10],[-9,5],[-14,6],[-19,5],[-11,3],[-16,1],[-13,10],[-10,15],[-10,31],[-14,15],[-8,4],[-17,-8],[-13,-5],[-15,7],[-15,23],[-4,7],[-9,17],[-10,16],[-10,0],[-13,4],[-13,7],[-17,-14],[-2,-42],[-9,-20],[-18,6],[-10,16],[-6,23],[-3,33],[-13,3],[-10,-11],[-8,-13],[-5,-19],[-7,-17],[-23,-24],[-25,-17],[-10,-8],[-15,-4],[-10,-3],[-11,4],[-12,9],[-14,5],[-16,2],[-13,-13],[-12,0],[-10,16],[-9,17],[-8,14],[-14,20],[-11,2],[-10,-3],[-9,-17],[-9,-19],[-11,-8],[-13,-10],[-12,-22],[-7,-13],[-14,-20],[-13,-14],[-12,-14],[-19,-13],[-22,-2],[-13,7],[-13,0],[-12,-12],[-7,-11],[-5,-17],[-8,-20],[-11,-20],[-15,-9],[-12,1],[-10,6],[-12,9],[-11,9],[-13,22],[-4,33],[-6,24],[-12,24],[-17,12],[-9,-2],[-15,-15],[-13,-8],[-9,-1],[-26,12],[-12,9],[-14,8],[-10,-2],[-4,-20],[-8,-23],[-11,-10],[-17,-4],[-10,-2],[-23,3],[-21,14],[-11,16],[-17,20],[-19,15],[-20,15],[-17,-2],[-14,-5],[-13,-4],[-18,-2],[-2,-1],[-7,-5],[-14,-10],[-18,-4],[-10,-2],[-4,0],[-8,-2],[-20,-4],[-13,-8],[-10,-5],[-6,-3],[-4,-2],[-16,-10],[-20,-10],[-15,-7],[-8,5],[-23,17],[-4,11],[-2,6],[-1,31],[3,37],[1,24],[-5,27],[-8,11],[-12,18],[-16,22],[-11,12],[-12,18],[-10,24],[-5,17],[-1,4],[-1,5],[-3,26],[-1,9],[-2,23],[0,1],[-2,6],[-4,12],[-12,11],[-11,4],[-12,5],[-14,18],[-3,3],[-14,17],[-20,12],[-12,9],[-11,10],[-12,13],[-8,25],[-5,46],[-4,33],[-4,24],[-4,23],[-8,32],[-15,17],[-9,2],[-8,6],[-8,45],[0,35],[-6,20],[-11,15],[-19,8],[-16,-7],[-15,-9],[-10,2],[-7,15],[-9,17],[-10,5],[-12,-4],[-12,-18],[-7,-21],[-7,-17],[-7,-11],[-10,-13],[-15,-14],[-16,-10],[-13,-3],[-12,2],[-8,12],[-4,35],[4,20],[4,46],[3,24],[3,36],[-2,22],[-4,33],[-7,15],[-13,12],[-14,1],[-10,-2],[-10,-2],[-19,-10],[-13,-5],[-18,-7],[-13,-8],[-15,-13],[-9,-7],[-8,-4],[-10,-7],[-13,-4],[-9,-3],[-1,0],[-26,-10],[-16,-9],[-10,-3],[-18,-2],[-21,3],[-10,8],[-10,31],[-7,19],[-10,24],[-11,14],[-13,11],[-23,6],[-17,4],[-15,0],[-25,7],[-32,6],[-8,6],[-1,0],[-6,4],[-11,7],[-15,9],[-12,1],[-11,-3],[-11,-1],[-10,14],[-4,25],[1,32],[5,21],[8,22],[9,17],[12,25],[0,26],[-7,25],[1,32],[4,19],[0,34],[-18,25],[-6,17],[-7,46],[8,29],[8,14],[-1,34],[-7,17],[-11,15],[-18,15],[-8,17],[-10,-1],[6,24],[14,46],[9,48],[-19,23],[-52,-50],[-11,41],[6,28],[6,19],[2,26],[-13,17],[-11,8],[-11,17],[-6,28],[-5,27],[5,20],[16,39],[9,31],[2,21],[-12,33],[-13,27],[0,21],[-2,28],[-11,26],[-11,3],[-11,-5],[-16,-5],[-11,3],[-11,13],[-4,30],[-4,21],[-20,-11],[-13,-12],[-11,-5],[-12,0],[-10,8],[-14,15],[-15,27],[-41,22],[-33,18],[-20,17],[-30,10],[-28,14],[-24,1],[-20,19],[-26,35],[-14,14],[-10,6],[-22,-1],[-23,-6],[-25,3],[-14,0],[-17,10],[-12,12],[-13,1],[-9,-12],[-5,-17],[-14,-14],[-18,3],[-25,24],[-12,23],[-10,26],[-6,21],[0,40],[-17,32],[-9,-6],[-14,0],[-12,-7],[-10,-18],[-9,-9],[-9,-3],[-8,9],[-6,19],[-10,16],[-15,6],[-8,8],[-11,26],[-1,32],[2,33],[5,36],[2,29],[-1,36],[-7,25],[-10,13],[-15,11],[-14,5],[-8,4],[-5,35],[6,27],[9,34],[9,33],[2,37],[-13,36],[-12,9],[-13,-9],[-16,-13],[-15,-6],[-13,6],[-17,9],[-12,12],[-12,9],[-13,9],[-14,7],[-13,21],[-4,24],[-9,27],[-8,10],[-8,-11],[-3,-24],[-12,19],[-4,24],[-4,24],[-9,28],[-10,12],[-11,10],[-10,3],[-10,-2],[-16,6],[-11,-7],[-5,-39],[-1,-22],[-14,-35],[-6,-17],[-16,-17],[-12,-5],[-17,-21],[-6,-28],[9,-26],[7,-30],[-8,-25],[-9,-1],[-11,1],[-15,-1],[-11,-11],[1,-23],[2,-23],[-9,-17],[-25,-3],[-8,-3],[-13,-12],[-12,-15],[-12,-16],[-12,-12],[-15,-2],[-9,3],[-16,17],[-8,5],[-6,5],[-8,5],[-4,0],[-8,2],[-9,-12],[-16,-7],[-8,5],[-10,12],[-9,6],[-2,1],[-22,-6],[-17,-19],[-13,-18],[-16,-12],[-10,-4],[-18,17],[-18,29],[-20,14],[-12,5],[-10,5],[-11,1],[-14,-4],[-9,-3],[-12,-11],[-10,-10],[-11,-8],[-11,-10],[-11,-6],[-13,-2],[-12,-1],[-4,-9],[-3,-11],[-1,-30],[-2,-24],[-2,-6],[-10,-29],[-14,-12],[-12,-6],[-15,-14],[-11,-3],[-9,-3],[-13,9],[-11,7],[-11,-10],[-7,-27],[-6,-31],[-5,-21],[-7,-16],[-12,-18],[-8,-10],[-14,-7],[-12,3],[-18,11],[-21,16],[-5,4],[-5,3],[-17,5],[-12,2],[-12,3],[-10,-1],[-8,-2],[-8,-14],[-3,-27],[1,-27],[-1,-26],[-9,-19],[-12,6],[-13,17],[-13,23],[-12,18],[-12,7],[-14,35],[-11,2],[-9,-12],[-5,-28],[-6,-20],[-10,-9],[-12,-4],[-8,-7],[-8,-14],[-5,-21],[11,-15],[2,-22],[-7,-20],[-10,-3],[-9,1],[-13,3],[-9,6],[-8,8],[-10,13],[-11,17],[-10,20],[-11,24],[-4,27],[-5,27],[-9,19],[-16,5],[-15,-1],[-13,-4],[-13,-8],[-10,-14],[-2,-2],[-12,3],[-11,3],[-11,-2],[-9,-4],[-12,-16],[-12,-15],[-9,-9],[-3,-24],[-10,-22],[-13,0],[-14,-2],[-12,-5],[-11,-5],[-9,-1],[-9,8],[-9,2],[-14,5],[-8,2],[-10,3],[-14,7],[-17,-5],[-13,-4],[-14,-11],[-8,-23],[-2,-26],[-7,-22],[-9,-22],[-9,-19],[-11,-13],[-9,-28],[-8,-12],[-3,-1],[-9,-2],[-10,-10],[-8,-7],[-10,-4],[-10,-1],[-18,-1],[-15,-12],[-7,-2],[-10,-4],[-3,1],[-7,3],[-12,4],[-12,-3],[-11,-35],[-3,-22],[2,-23],[-2,-6],[-8,-27],[-7,2],[-9,2],[-19,-28],[-9,-15],[-18,-17],[-39,-19],[-35,-8],[-31,9],[-10,9],[-26,23],[-20,17],[-16,14],[-25,25],[-23,30],[-16,40],[-12,28],[-11,29],[-22,37],[-16,21],[-20,9],[-16,-4],[-16,-33],[-17,-41],[-15,-20],[-26,2],[-17,16],[-23,45],[-30,46],[-17,28],[-27,38],[-23,52],[-13,45],[-13,35],[-15,26],[-15,13],[-21,10],[-9,6],[-6,26],[-4,30],[-5,29],[-17,19],[-22,4],[-17,3],[-2,1],[-12,4],[-17,-1],[-11,9],[0,1],[9,17],[-11,37],[-3,8],[-2,7],[-5,14],[-13,18],[-3,25],[2,29],[6,28],[0,34],[-4,19],[-10,15],[-16,4],[-12,10],[-9,12],[-11,15],[-6,44],[-6,28],[-4,30],[-10,13],[-14,-2],[-7,10],[-8,8],[-17,-8],[-12,6],[-4,23],[12,27],[9,19],[3,46],[-12,5],[-9,-3],[-10,15],[1,31],[3,40],[-5,19],[-7,25],[-10,0],[-12,8],[-17,30],[-3,24],[0,25],[-9,14],[-18,1],[-9,7],[-5,31],[-6,17],[-16,27],[-5,23],[0,30],[0,35],[3,25],[8,49],[-6,25],[-15,-2],[-9,-33],[-12,-9],[-7,12],[-7,22],[10,37],[0,25],[-17,17],[-11,2],[-12,21],[-8,14],[-7,17],[-8,27],[-13,5],[-8,11],[-3,25],[-8,19],[12,25],[2,22],[-14,24],[-11,20],[-6,20],[-4,19],[-13,7],[-12,8],[-6,15],[0,25],[2,23],[8,20],[30,74],[7,27],[11,47],[8,31],[13,13],[18,18],[-4,27],[-14,17],[-10,26],[9,28],[6,17],[10,43],[-1,23],[-4,28],[-4,40],[-15,22],[-5,22],[9,26],[6,15],[-1,28],[12,27],[6,19],[7,25],[-6,16],[-9,4],[-7,33],[12,15],[8,13],[-6,22],[-10,11],[-14,29],[-8,17],[-7,15],[0,24],[3,41],[-14,29],[-8,13],[-7,-20],[-13,0],[-8,19],[-3,32],[-6,25],[-4,28],[8,27],[0,41],[-6,17],[-9,12],[-12,43],[-3,22],[-9,17],[-12,17],[-13,-2],[-13,4],[-6,22],[-14,23],[-2,31],[5,34],[-1,26],[-11,17],[8,51],[5,36],[7,21],[10,8],[10,17],[8,27],[-4,44],[5,26],[5,20],[9,-1],[-10,29],[-6,25],[4,37],[9,24],[-14,15],[-3,23],[11,16],[-9,31],[-6,22],[8,26],[-11,9],[-6,34],[2,28],[1,23],[6,22],[6,19],[15,9],[8,15],[2,27],[-12,0],[4,24],[10,3],[-5,27],[-2,35],[1,22],[24,37],[6,20],[-6,22],[-8,9],[-2,27],[7,26],[-2,42],[-9,14],[-11,-9],[-8,19],[6,21],[18,21],[13,24],[1,34],[13,26],[-18,7],[-6,16],[15,32],[-11,29],[-8,18],[-1,28],[5,22],[6,23],[7,27],[13,46],[10,29],[-6,21],[-18,4],[-8,11],[-6,19],[-1,36],[2,37],[14,1],[-1,29],[-3,22],[-17,8],[-5,25],[0,26],[5,19],[-20,17],[5,39],[-4,27],[-8,20],[-27,-7],[-11,21],[1,24],[11,22],[-10,21],[2,23],[-10,4],[-8,6],[-6,25],[8,16],[3,22],[-11,28],[-11,20],[12,26],[9,22],[-8,24],[-6,28],[5,20],[-7,26],[-8,6],[-11,18],[-11,8],[-14,8],[-9,15],[-2,23],[-11,4],[-13,34],[-7,28],[-8,25],[-8,8],[-9,17],[-9,14],[-9,15],[1,44],[-4,26],[-6,29],[-12,1],[-4,29],[-1,28],[-11,19],[-5,35],[-3,31],[-2,27],[-8,42],[-8,29],[8,6],[-1,25],[4,23],[10,8],[-3,26],[3,25],[-5,19],[-7,30],[-6,24],[1,23],[-6,17],[3,37],[-9,19],[-3,22],[-2,42],[-1,48],[-7,22],[-15,21],[-9,20],[-12,5],[-7,17],[-16,10],[-21,15],[-8,8],[-10,-6],[-18,18],[-11,9],[-12,4],[-12,3],[-10,-1],[-4,23],[-7,20],[-2,42],[-4,29],[-4,20],[-5,21],[-1,42],[-3,35],[4,33],[-1,21],[1,33],[-4,22],[-3,30],[-4,41],[0,54],[-1,65],[-3,21],[-2,29],[-12,46],[-6,36],[-4,36],[-4,44],[0,39],[-2,23],[-4,26],[-5,26],[-6,16],[-7,19],[-4,21]],[[90049,73930],[-133,-4],[-48,1],[-195,1],[-30,0],[-90,0],[-438,-8],[-135,3],[0,-326],[-1,-301],[1,-37],[-1,-206],[0,-69],[-1,-159],[1,-152],[0,-173],[0,-1],[-1,-365],[0,-89],[-2,-642],[1,-182],[1,-339],[0,-1],[0,-36],[0,-43],[0,-12],[0,-105],[-4,-324],[1,-156],[0,-33],[0,-23],[1,-44],[0,-4],[1,-392],[0,-244],[0,-25],[0,-204],[0,-33],[0,-194],[0,-99],[0,-1],[-1,-277],[0,-331],[-190,-2],[-62,-1],[-61,0],[-45,-1],[0,-314],[0,-315],[1,-116],[0,-97],[0,-60],[1,-871],[0,-42],[0,-235],[1,-140],[1,-31],[0,-279],[-1,-316],[-1,-306],[-1,-90],[0,-95],[0,-24],[0,-12],[0,-46],[0,-67],[0,-193],[-1,-96],[0,-120],[1,-104],[0,-86],[0,-181],[1,-133],[-1,-114],[0,-199],[0,-84],[0,-12],[0,-434],[0,-95],[0,-22],[0,-33],[0,-112],[0,-319],[0,-19],[-1,-128],[1,-73],[1,-51],[1,-114],[0,-68],[0,-153],[0,-59],[0,-97],[0,-24],[0,-529],[-1,-72],[0,-307]],[[88620,60810],[-259,-1],[-44,0],[-432,-2],[-50,0],[-14,0],[-10,0],[-66,-2],[-14,1],[-26,0],[-17,0],[-272,0],[-32,0],[-28,0],[-94,-1],[-13,0],[-69,0],[-51,-1],[-102,0],[-75,0],[-158,-3],[-60,-2],[-7,0],[-186,0],[-14,1],[-18,1],[-14,0],[-21,0],[-73,3],[-77,-2],[-30,-2],[-39,0],[-2,0],[-395,-2],[-105,-2],[-158,0],[-61,0],[-55,0],[-1,0],[-59,1],[-181,0],[-11,0],[-159,1],[1,-643],[-1,-202],[-3,-362],[1,-208],[0,-9],[2,-469],[-176,0],[-180,-10],[-117,1],[-8,0],[-145,1],[-19,3],[-61,0],[-110,0],[-188,1],[-56,0],[-1,199],[1,244],[-1,140],[1,43],[0,64],[0,209],[0,75],[2,271],[1,326],[-3,327],[-193,1],[-134,-6],[-10,-1],[-91,7],[-63,-1],[-108,0],[-44,-1],[-2,0],[-14,0],[-242,-1],[-92,0],[-63,-1]],[[82952,60796],[-22,1],[-53,0],[-224,-1],[-22,0],[-30,-2],[-344,2],[-2,605],[1,381],[0,133],[0,86],[0,169],[0,113],[0,31],[1,126],[2,226],[-2,103],[0,69],[-1,53],[1,43],[1,24],[-1,22],[-1,172],[0,142],[0,108],[0,198],[-1,120],[0,25],[0,134],[0,32],[-1,120],[1,205],[0,303],[-174,-1],[-82,0],[-98,-1],[-148,0],[-163,-6],[-397,1],[0,444],[0,589],[0,497],[0,450],[0,274],[0,64],[0,118],[0,199],[1,232],[0,38],[0,203],[0,29],[1,33],[0,34],[0,72],[0,46],[0,65],[0,125],[-1,246],[70,1],[30,0],[22,0],[191,2],[-1,244],[0,104],[0,103],[0,42],[0,7],[0,70],[0,36],[-1,58],[0,40],[0,34],[0,353],[0,126],[-1,42],[0,83],[0,23],[0,89],[0,52],[0,26],[0,34],[-1,330],[0,30],[0,78],[0,15],[0,48],[0,494],[0,24],[0,119],[0,11],[0,34],[0,2],[0,34],[0,144],[0,466],[0,225],[0,3],[0,85],[0,53],[0,178],[0,47],[0,52],[0,325],[0,18],[0,20],[0,97],[0,49],[0,71],[0,39],[0,69],[0,34],[0,200],[0,153],[0,249],[0,169],[0,38],[0,26],[0,436],[0,15],[0,48],[0,80],[0,11],[0,775],[-1,115],[0,233],[-104,0],[-90,0],[-61,0],[-15,0],[-76,1],[-221,0],[-38,0],[-28,0],[-86,1],[-90,0],[0,145],[0,277],[0,39],[0,81],[0,111],[0,24],[0,49],[0,320],[0,280],[0,114],[0,245],[0,144],[0,16],[0,68],[-144,3],[-6,0],[-82,0],[-1,0],[-14,0],[-255,1]],[[20115,69819],[-74,0],[-410,4],[-47,0],[-117,1],[-99,0],[-118,-1],[-109,5],[-43,0],[-36,3],[-4,0],[-19,0],[-15,-3],[-1,0],[-95,2],[-22,-2],[-75,1],[-84,0],[-85,0],[-130,1],[-64,0],[-368,3],[-606,0],[0,-25],[10,-11],[8,-31],[8,-8],[10,-11],[27,14],[13,15],[9,-2],[12,-2],[6,15],[8,11],[8,18],[10,-22],[13,-3],[14,-2],[9,-54],[9,-45],[-5,-22],[-12,-50],[-4,-34],[6,-19],[11,-38],[0,-40],[-10,-44],[-5,-23],[-7,-23],[-8,-46],[-2,-26],[3,-31],[19,-56],[35,-138],[12,-22],[-6,-21],[-2,-38],[4,-43],[17,-35],[13,-25],[-4,-31],[10,-60],[-4,-32],[3,-23],[7,-38],[-9,-12],[-12,4],[-6,-34],[-1,-32],[5,-23],[-15,-17],[-25,-24],[-9,1],[2,-22],[-4,-28],[-12,-17],[16,-25],[38,-52],[6,-39],[-6,-40],[-3,-21],[0,-22],[7,-26],[7,-25],[-5,-23],[-14,-26],[-11,-31],[-7,-25],[-3,-36],[-9,-24],[22,-27],[34,-28],[15,-18],[20,-19],[8,-8],[10,-11],[10,8],[38,-45],[-5,-19],[-9,-10],[-20,-94],[0,-30],[4,-19],[-17,-31],[3,-63],[-6,-25],[-10,-7],[-21,-14],[-9,-9],[-18,-7],[-9,-2],[-13,-3],[-14,-7],[-9,8],[-11,14],[-10,20],[-12,7],[-10,-18],[-12,-16],[-15,-30],[0,-22],[-9,-7],[-11,-9],[-9,-19],[-4,-24],[-11,-5],[-12,-12],[3,-30],[3,-24],[8,-20],[4,-21],[9,-16],[2,-29],[4,-25],[-6,-23],[-14,-1],[-5,-27],[-1,-38],[-6,-18],[-7,-14],[-11,-8],[-10,-3],[-13,-8],[-9,-1],[-7,-21],[-17,-34],[4,-21],[8,-14],[14,-23],[8,-6],[11,-14],[16,-13],[14,-3],[13,-4],[18,-11],[11,-17],[9,-13],[9,-20],[8,-14],[12,-24],[13,-6],[19,-16],[-6,-17],[-14,-36],[0,-23],[2,-27],[-1,-25],[-8,-28],[-4,-21],[14,-13],[7,-9],[18,-14],[13,-15],[9,-15],[17,-2],[18,-10],[8,-6],[9,-16],[12,-20],[9,-16],[8,-9],[9,-13],[8,-18],[8,-6],[11,-4],[13,-8],[16,-6],[13,-6],[14,-5],[8,-10],[7,-16],[4,-37],[1,-26],[8,-20],[3,-24],[8,-19],[12,-16],[11,-12],[8,-19],[0,-31],[1,-31],[5,-36],[5,-20],[14,-20],[20,-20],[1,-32],[5,-41],[-1,-26],[-2,-26],[4,-24],[3,-21],[-3,-33],[-10,-41],[2,-36],[-4,-22],[2,-35],[6,-19],[7,-31],[11,-31],[10,-22],[3,-30],[3,-35],[2,-23],[9,-24],[3,-27],[8,-21],[8,-15],[12,-14],[16,-22],[6,-25],[6,-21],[9,-45],[10,-35],[5,-20],[5,-16],[10,-9],[12,-17],[5,-18],[-1,-31],[0,-27],[4,-37],[0,-27],[-1,-28],[-9,-23],[-6,-31],[-3,-28],[-7,-22],[0,-41],[-4,-19],[-8,-14],[-2,-28],[3,-26],[-7,-24],[-1,-36],[-6,-16],[-13,-6],[-10,-3],[-10,-8],[-16,-11],[-9,11],[-13,1],[-9,-3],[-2,-35],[-6,-26],[-3,-35],[0,-24],[4,-30],[-1,-24],[0,-22],[-5,-19],[-11,3],[-10,7],[-12,-2],[-12,-8],[8,-35],[10,-18],[11,-20],[7,-22],[1,-31],[6,-37],[5,-21],[4,-23],[1,-23],[5,-36],[5,-27],[-2,-27],[1,-23],[5,-28],[4,-21],[8,-15],[8,-19],[7,-19],[-3,-24],[-6,-36],[-3,-24],[-8,-10],[-10,-9],[-3,-28],[-3,-22],[-2,-21],[-2,-21],[-3,-23],[4,-31],[4,-28],[1,-22],[-5,-28],[-5,-33],[-3,-28],[6,-31],[0,-28],[-10,-10],[-8,-9],[-12,-13],[-14,-1],[-13,-11],[-6,-19],[-9,-11],[-7,-16],[-14,-12],[-8,-2],[-13,1],[-5,-24],[6,-23],[12,-15],[7,-22],[11,-4],[10,-10],[12,5],[10,-4],[11,-4],[13,-11],[13,-1],[9,-11],[10,5],[12,13],[13,1],[10,-21],[3,-20],[8,-7],[11,-9],[7,-9],[9,-23],[5,-25],[4,-20],[4,-20],[12,-26],[12,-25],[-6,-21],[-4,-24],[0,-35],[6,-45],[4,-48],[8,-43],[11,-18],[14,13],[25,0],[16,0],[29,-59],[16,-10],[12,-5],[20,-12],[17,-39],[9,-40],[-7,-25],[7,-19],[9,-10],[10,10],[19,-16],[10,-21],[9,-47],[26,-65],[9,7],[11,0],[15,-9],[8,-8],[18,18],[8,11],[13,8],[11,14],[11,11],[13,2],[25,-3],[-1,-119],[32,-2],[0,-46],[0,-55],[-1,-75],[-1,-108],[-1,-118],[0,-177],[0,-354],[0,-32],[0,-28],[1,-42],[0,-54],[0,-32],[-3,-276],[-3,-476],[-932,2],[2,-936],[-190,-2],[-118,0],[-38,0],[-100,0],[-36,0],[-65,-4],[-5,1],[-7,2],[-52,-1],[-17,0],[-72,0],[-42,1],[-161,4],[-15,0],[-28,0],[-61,-1],[-45,-2],[-28,1],[-26,0],[-14,0],[-65,1],[-19,1],[-29,0],[-37,0],[-37,0],[-12,0],[-33,0],[-17,0],[-167,-1],[-64,-4],[-109,0],[-120,1],[-38,0],[-71,0],[-70,1],[-53,0],[-51,0]],[[82952,60796],[2,-52],[0,-73],[0,-199],[-1,-24],[0,-26],[1,-310],[0,-70],[0,-93],[-1,-38],[1,-320],[1,-96],[0,-171],[0,-2],[0,-42],[1,-100],[0,-39],[-2,-87],[1,-149],[1,-34],[1,-51],[0,-23],[-1,-29],[0,-28],[0,-397],[1,-101],[-1,-84],[-1,-313],[0,-4],[0,-42],[-1,-355],[-1,-174],[-1,-228],[2,-143],[0,-437],[0,-70],[0,-56],[-1,-268],[0,-880],[1,-110],[0,-43],[0,-48],[0,-140],[0,-63],[-1,-126],[0,-54],[0,-397],[2,-318]],[[82955,53889],[1,-308]],[[82956,53581],[-42,1],[-131,-1],[-152,7],[-27,-5],[-1,0],[-175,-2],[-305,-3],[-45,0],[-135,-1],[-192,-2],[-16,2],[-13,1],[-132,-3],[-75,0],[-111,0],[-21,2],[-187,2],[-1,0],[-107,-1],[-263,0],[-136,-1],[-140,-2],[-21,0],[-24,-1],[-187,-1],[-90,0],[-159,-2],[-22,0],[-258,-1],[-196,-1],[-14,0],[-24,2],[-1,0],[-44,2],[-75,-1],[-279,-2],[-186,-1],[-40,0],[-99,-1],[-31,0],[-187,-1],[-5,0],[-140,4],[-85,-1],[-182,-1],[-157,-1],[-175,-1],[-15,0],[-48,0],[-126,-1],[-6,309],[-247,0],[-18,0],[-126,0],[-17,0],[-503,0],[-11,0],[-49,0],[-140,0],[-99,-1],[-35,0],[-24,0],[-18,1],[-13,1],[-277,-1],[-84,0],[-27,0],[-10,0],[-415,-3],[-12,0],[-124,-1],[-31,0],[-16,0],[-5,0],[-27,-2],[-83,-1],[-193,0],[-33,0],[-10,-1],[-104,3],[-34,0],[-111,1],[-24,0],[-66,1],[-47,0],[-23,0],[-16,0],[-34,0],[-12,-1],[-40,-4],[-2,0],[-39,-4],[-14,-1],[-10,-1],[-23,3],[-24,3],[-25,2],[-45,3],[-29,5],[-196,-3],[-107,-1],[-54,0],[-117,-2],[-4,0],[-23,0],[-27,0],[-22,-1],[-41,-3],[-28,-7],[-40,1],[-190,1],[-57,1],[-122,0],[-13,15],[-154,-1],[-83,0],[-2,0],[-187,1],[-33,1],[-83,-1],[-29,1],[-29,0],[-141,1],[-203,2],[-10,0],[-13,-1],[-74,-1],[0,-24],[-24,5],[-25,4],[-35,3],[-53,4],[-91,1],[-55,1],[-99,1],[-43,0],[-60,0],[-81,10],[-116,5],[-77,-5],[1,-39],[0,-145],[-19,0],[-43,-2],[-92,-2],[-28,-2],[-100,1],[-102,2],[-181,0],[-116,1],[-198,2],[-69,0],[-18,0],[-75,1],[-282,-9],[-46,1],[-40,0],[-37,0],[-21,0],[-1,0],[-191,1],[-51,0],[-29,0],[-79,1],[-144,0],[-157,1],[-25,0],[-66,1],[-54,1],[-23,0],[-77,4],[-37,-1],[-135,0],[-93,-2],[-196,-1],[-2,0],[-11,0],[-59,1],[-32,-1],[-181,1],[-61,0],[-29,0],[-82,0],[-9,0],[-12,0],[-17,0],[-43,0],[-42,0],[-107,2],[-30,-1]],[[67922,53701],[-36,24],[-49,-18],[-31,69],[6,93],[1,16],[3,38],[-17,66],[-11,41],[-22,5],[-57,-9],[-12,21],[-11,18],[14,66],[-19,95],[-41,14],[-52,4],[-36,-36],[-12,-12],[-13,20],[-30,49],[2,206],[10,69],[5,34],[6,42],[8,21],[33,19],[15,8],[20,104],[-1,37],[-2,74],[-1,51],[-2,91],[-1,19],[-1,19],[7,54],[3,26],[7,52],[6,49],[11,45],[16,63],[7,26],[7,18],[7,19],[7,18],[27,71],[3,41],[5,59],[2,153],[20,46],[29,38],[40,52],[4,82],[1,13],[3,55],[-8,37],[-5,20],[-4,17],[-5,22],[-6,26],[-14,51],[7,23],[3,8],[16,53],[30,22],[5,4],[13,9],[76,156],[2,4],[12,18],[33,50],[18,27],[9,24],[25,73],[8,70],[0,5],[-14,89],[-6,40],[-1,9],[-3,15],[-12,33],[-23,77],[-5,3],[-78,54],[-13,54],[-17,65],[-11,157],[-17,29],[-33,-3],[-46,-149],[-6,3],[-28,45],[-13,66],[3,95],[4,7],[32,54],[42,25],[21,-13],[27,-15],[13,83],[-35,94],[-1,1],[-11,29],[-30,56],[-18,33],[-13,15],[-19,22],[-15,71],[-9,48],[-4,18],[-5,71],[-2,37],[-4,51],[-1,20],[1,14],[1,21],[2,26],[0,5],[3,46],[4,19],[25,25],[9,39],[3,12],[2,8],[-19,26],[-55,50],[2,45],[3,48],[-17,79],[-11,13],[-2,3],[-35,42],[-20,43],[-9,19],[-8,19],[-11,24],[-20,49],[-1,32],[4,168],[0,28],[1,19],[-41,77],[-40,56],[19,58],[10,2],[10,2],[1,1],[39,8],[48,10],[11,4],[19,8],[-10,72],[-24,33],[-46,64],[-43,60],[-76,41],[-13,38],[-8,22],[-5,15],[22,79],[37,47],[1,1],[9,12],[35,74],[-7,42],[-46,0],[-14,20],[-6,8],[24,66],[49,30],[7,33],[7,25],[-25,56],[-9,18],[-32,64],[4,28],[0,2],[8,59],[14,7],[15,9],[46,-64],[22,43],[-6,26],[-14,69],[-4,29],[-3,16],[-9,69],[35,38],[3,0],[47,4],[2,26],[2,35],[2,37],[33,68],[17,87],[-18,21],[-26,-16],[-56,-37],[-6,9],[-22,40],[11,95],[21,48],[-3,37],[-5,63],[-20,13],[-16,0],[-27,0],[-9,23],[-12,34],[1,27],[0,8],[1,19],[1,25],[53,231],[-22,148],[-4,28],[-11,45],[-7,26],[-22,85],[-8,6],[-27,21],[-11,9],[-31,28],[-20,18],[2,42],[11,68],[1,5],[14,90],[13,10],[21,14],[32,24],[-12,79],[-12,13],[-1,1],[-7,8],[-33,35],[-34,39],[-32,36],[-21,25],[9,69],[39,1],[8,0],[49,0],[18,1],[36,31],[-11,46],[-14,66],[-59,14],[-23,48],[-17,36],[24,68],[19,53],[3,39],[2,31],[-31,56],[-8,14],[6,75],[24,31],[29,21],[17,12],[24,17],[-11,44],[-23,11],[-36,17],[-14,44],[-14,48],[34,34],[42,99],[-4,90],[-8,22],[-6,20],[-16,50],[-19,59],[-20,112],[10,124],[10,91],[3,28],[-29,126],[30,179],[13,121],[-2,16],[-16,111],[2,20],[7,89],[26,39],[44,67],[18,29],[28,68],[1,13],[1,2],[13,174],[2,29],[61,72],[5,17],[3,11],[37,114],[5,17],[38,132],[9,20],[11,11],[13,5],[56,24],[41,83],[14,205],[0,51],[-14,87],[11,82],[-13,71],[8,99],[-17,94],[-8,15],[-11,-11],[-12,-16],[-9,6],[-7,22],[-3,37],[-3,21],[1,30],[1,37],[1,46],[29,107],[20,26],[16,26],[9,13]],[[33326,68010],[-1,-89],[-1,-107],[0,-37],[0,-8],[-1,-194],[0,-58],[0,-38],[1,-56],[0,-87],[0,-74],[2,-369],[0,-3],[1,-268],[0,-310],[1,-54],[1,-27],[-1,-119],[0,-107],[0,-57],[0,-91],[1,-39],[2,-238],[-1,-63],[0,-36],[1,-34],[0,-30],[1,-121],[0,-55],[1,-24],[0,-78],[2,-164],[-1,-152],[0,-26],[0,-21],[0,-22],[0,-31],[1,-82],[1,-141],[0,-28],[0,-35],[1,-150],[0,-72],[0,-114],[1,-43],[0,-61],[1,-157],[0,-69],[0,-43],[0,-176],[1,-73],[0,-25],[0,-175],[1,-95],[2,-188],[0,-79],[1,-128],[1,-51],[1,-199],[1,-82],[1,-175],[0,-46],[1,-46],[0,-25],[0,-61],[0,-22],[-1,-170],[0,-180],[0,-35],[0,-77],[-2,-357],[0,-71],[0,-105],[0,-31],[8,4],[1,0],[1,0],[26,3],[6,-1],[9,-1],[10,3],[2,1],[10,4],[5,4],[3,5],[11,20],[2,4],[4,7],[2,11],[2,6],[8,7],[12,7],[1,1],[3,1],[2,-1],[11,-6],[9,1],[33,3],[4,0],[27,-19],[7,-12],[12,-22],[4,-7],[4,-7],[1,-1],[0,-1],[3,-2],[3,-3],[13,14],[1,1],[3,3],[6,8],[3,9],[0,2],[0,2],[1,-1],[23,-37],[2,-4],[2,-9],[1,-3],[0,-1],[1,-27],[0,-11],[-2,-6],[-4,-10],[-1,-2],[-4,-8],[-22,-15],[-7,-4],[-1,-3],[-4,-6],[-2,-7],[0,-2],[-1,-12],[-1,-11],[-1,-15],[4,-14],[1,-3],[1,-1],[6,-12],[1,-1],[5,-2],[6,-1],[9,-2],[2,-2],[1,0],[4,-11],[1,-3],[1,-10],[1,-13],[-2,-8],[-4,-10],[-10,-29],[0,-1],[0,-4],[0,-5],[0,-3],[6,-11],[2,-2],[6,-4],[1,-2],[4,0],[39,-3],[6,0],[10,3],[11,8],[3,2],[6,1],[9,-6],[15,-20],[12,33],[1,2],[-5,44],[0,1],[-7,60],[0,8],[3,3],[7,-2],[32,-9],[61,-32],[4,1],[1,0],[1,0],[7,8],[45,5],[1,0],[-8,-29],[0,-7],[1,-11],[2,-6],[1,0],[4,-8],[15,-24],[2,-9],[0,-24],[0,-6],[0,-3],[-2,-4],[-4,-13],[-23,-72],[7,-45],[8,-58],[5,-12],[3,-7],[1,0],[23,-10],[3,0],[13,1],[1,0],[3,5],[7,15],[1,3],[-1,14],[0,3],[0,5],[-1,3],[-6,9],[-3,5],[-1,10],[1,3],[1,6],[1,4],[9,22],[5,10],[5,4],[8,5],[2,-2],[9,-5],[1,-1],[2,-6],[3,-6],[11,-25],[9,-21],[19,-68],[2,-7],[1,-64],[-1,-3],[-11,-1],[-2,0],[-1,-1],[-2,-2],[-4,-6],[-2,-7],[0,-3],[-1,-1],[-7,-75],[-1,-13],[5,-9],[6,-1],[7,5],[24,-53],[3,-5],[6,-4],[6,-1],[3,2],[9,12],[17,12],[1,1],[3,-2],[3,-4],[2,-2],[41,-53],[1,-1],[17,-14],[0,-1],[-1,-6],[-4,-24],[-1,-9],[-2,-2],[-1,-1],[-3,-6],[-5,-9],[-1,-3],[-2,-7],[0,-10],[2,-7],[33,-83],[17,-43],[1,-2],[2,-5],[1,-1],[23,-36],[1,-1],[39,-10],[5,0],[6,6],[5,10],[4,13],[10,20],[4,2],[9,-4],[10,-13],[1,0],[1,-3],[4,-10],[2,-11],[0,-9],[0,-10],[-1,-19],[3,-5],[8,-2],[6,1],[6,1],[9,-10],[20,-64],[3,-9],[1,-3],[4,-7],[6,0],[6,1],[6,0],[177,7],[0,-73],[-1,-152],[0,-88],[92,0],[88,-1],[0,162],[11,0],[30,0],[672,5],[0,-87],[1,-557],[0,-126],[-9,-1],[0,-144],[0,-241],[0,-327],[0,-205],[0,-171],[0,-4],[0,-657],[1,-259],[1,-175],[-1,-173],[0,-10],[0,-261],[-1,-174],[-1,-337],[0,-2],[0,-24],[0,-178],[1,-75],[0,-94],[0,-49],[1,-301],[53,0],[18,-4],[106,-1],[137,-2],[74,0],[99,-1],[158,0],[2,0],[13,0],[64,-1],[35,0],[21,0],[9,0],[140,-1],[170,-2]],[[36566,55033],[2,-24],[10,-7],[9,-12],[13,-19],[11,-20],[9,-6],[7,-17],[10,-12],[23,-8],[25,-19],[16,-9],[11,-11],[14,-9],[9,-10],[25,-15],[13,-3],[22,-5],[12,-4],[33,-12],[11,-5],[9,2],[12,5],[7,-31],[4,-20],[11,-22],[11,-26],[10,-11],[9,-10],[10,-15],[5,-25],[5,-25],[11,-18],[7,-14],[11,-19],[11,-1],[11,3],[12,-4],[11,-2],[9,-21],[-2,-26],[-1,-24],[-8,-23],[-6,-20],[-17,-14],[-16,-5],[-16,-4],[-12,-1],[-4,-22],[12,-4],[4,-19],[8,-11],[11,-12],[4,-24],[-7,-18],[0,-30],[-1,-27],[-4,-20],[-11,-11],[-8,-8],[-13,-9],[-16,2],[-9,1],[-5,-17],[-7,-27],[-7,-18],[-6,-16],[-14,-13],[-12,3],[-13,1],[-8,-5],[-8,-13],[-23,-36],[-6,-33],[-10,-5],[-8,-2],[-9,-4],[-16,-20],[-9,-9],[-18,-4],[-12,-11],[-8,2],[-16,8],[0,-23],[9,-19],[6,-32],[-1,-36],[-6,-21],[-1,-23],[8,-17],[10,-22],[12,-28],[17,-22],[5,-25],[1,-25],[-7,-29],[-8,3],[-10,-3],[-12,-15],[-9,-10],[-12,-12],[-2,-27],[-5,-26],[7,-25],[-6,-20],[-13,-13],[-13,0],[2,-39],[12,-32],[11,-34],[6,-15],[3,-39],[5,-23],[7,-29],[2,-22],[6,-21],[14,4],[11,5],[15,2],[19,2],[13,-2],[10,-3],[19,1],[10,-6],[11,-19],[10,-35],[9,-15],[13,-20],[14,-23],[7,-22],[7,-24],[6,-27],[-5,-22],[-6,-21],[5,-16],[12,-22],[8,-20],[12,-31],[11,-19],[7,-22],[12,0],[13,-34],[10,-24],[18,-33],[13,-26],[14,-17],[8,-13],[10,-21],[10,-2],[11,-2],[16,10],[8,12],[10,6],[9,3],[9,2],[11,-10],[-8,-22],[-4,-25],[14,-19],[9,-1],[11,0],[9,-6],[12,9],[10,20],[15,18],[10,16],[14,-5],[19,8],[6,21],[9,11],[11,6],[11,-1],[10,-3],[8,-11],[15,-13],[15,1],[10,-2],[11,-5],[12,-20],[9,-24],[13,-13],[11,-6],[11,-1],[9,-2],[9,-12],[20,-21],[16,2],[16,6],[12,-7],[11,-7],[13,11],[9,7],[11,10],[11,4],[10,2],[11,-4],[10,0],[8,-5],[10,-8],[9,-1],[14,6],[13,9],[10,7],[12,10],[9,37],[14,15],[8,27],[-8,19],[-1,36],[3,35],[-1,30],[5,26],[6,18],[11,-2],[16,-6],[10,4],[17,2],[20,-9],[28,-4],[10,0],[12,-17],[9,-22],[16,-19],[-10,-12],[-9,-13],[-13,-21],[-14,-28],[-4,-31],[3,-25],[7,-16],[10,-32],[8,-18],[6,-27],[9,-15],[7,-23],[13,-27],[9,-33],[9,-32],[4,-29],[4,-19],[15,-55],[10,-19],[12,-24],[2,-26],[-5,-18],[2,-23],[3,-36],[4,-20],[-2,-23],[3,-30],[1,-33],[2,-29],[-4,-21],[-2,-27],[2,-34],[7,-27],[-6,-25],[0,-26],[3,-19],[-1,-28],[-2,-25],[-5,-31],[-3,-27],[-2,-24],[-8,-32],[-4,-20]],[[37900,51783],[-11,4],[-13,-5],[-9,-8],[-12,-21],[-9,-3],[-12,-1],[-6,-16],[-13,-13],[-9,-3],[-10,11],[-11,4],[-16,12],[-13,4],[-12,10],[-10,18],[-7,21],[-8,7],[-14,25],[-13,11],[-16,-2],[-8,-4],[-16,-6],[-14,6],[-10,6],[-15,6],[-14,-3],[-10,0],[-16,15],[-13,11],[-8,10],[-15,26],[-10,7],[-9,9],[-8,8],[-9,-3],[-15,0],[-8,5],[-15,-1],[-10,-11],[-12,-30],[-9,-13],[-15,-9],[-11,3],[-14,-5],[-11,-3],[-9,4],[-9,16],[-8,16],[-8,20],[-5,19],[-14,-12],[6,32],[5,20],[8,30],[-2,29],[-11,22],[-7,28],[-8,11],[-9,-4],[-14,4],[-11,11],[-11,10],[-16,-11],[-11,-5],[-8,13],[-18,17],[-14,19],[-9,6],[-10,10],[-9,18],[-9,9],[-9,7],[-14,-7],[-13,-17],[-7,-19],[-6,-27],[-15,-13],[-8,-5],[-8,-7],[-9,-5],[-9,-3],[-15,3],[-10,5],[-13,12],[-14,-3],[-9,-21],[-12,-8],[-9,-15],[-9,-18],[-6,-29],[-8,-16],[0,-24],[-3,-24],[-7,-25],[-4,-31],[1,-29],[-4,-33],[4,-30],[-4,-21],[-5,-23],[-9,-20],[-8,-15],[-7,-28],[-8,-23],[-11,-12],[-13,-25],[-11,-11],[-11,1],[-6,-31],[-5,-24],[-7,-35],[-3,-32],[-2,-25],[1,-29],[-4,-30],[-9,-9],[-12,-5],[-8,-6],[-11,-5],[-8,-7],[-9,-12],[-10,-12],[-12,-15],[-6,-30],[-3,-29],[-16,-28],[-9,-8],[-5,-198],[0,-65],[0,-68],[0,-67],[0,-26],[0,-31],[0,-54],[0,-161],[1,-267],[0,-154],[0,-26],[0,-74],[0,-198],[0,-144],[0,-129],[-10,0],[0,-56],[0,-149],[-1,-82],[2,-142],[0,-32],[1,-50],[0,-41],[2,-228],[-1,-29],[0,-99],[0,-28],[0,-167],[1,-157],[0,-93],[0,-1],[0,-52],[0,-50],[0,-2],[0,-103],[0,-103],[0,-32],[13,-13],[8,-20],[7,-28],[5,-33],[4,-36],[2,-32],[1,-29],[5,-17],[9,-20],[9,-23],[5,-25],[-18,-10],[-15,0],[-1,0],[-46,0],[-47,0],[-14,0],[-51,1],[-52,0],[-1,0],[-95,1],[-146,0],[-40,0],[-33,-1],[-77,0],[-70,0],[-56,1],[-110,-3],[-111,-2],[-55,0],[-12,0],[-15,0],[-24,0],[-61,0],[-34,0],[-30,0],[-11,0],[-24,1],[-51,-1]],[[35486,47616],[-45,0],[-87,0],[-40,0],[-61,0],[-17,0],[-29,1],[-28,0],[-1,0],[-2,0],[-41,0],[-78,0],[-114,-4],[-87,4],[-42,0],[-33,0],[-15,0],[-14,0],[-55,0],[-31,1],[-26,0],[-16,1],[-8,0],[-10,0],[-28,1],[-49,1],[-65,1],[-10,0],[-11,0],[-19,0],[-5,0],[-7,0],[-38,0],[-98,-2],[-16,0],[-62,0],[-96,-1],[-33,0],[-10,-1],[-58,0],[-2,0],[-9,0],[-13,-1],[-10,0],[-17,0],[-49,0],[-32,-1],[-9,0],[-66,-1],[-8,0],[-36,-1],[-34,0],[-40,5],[-15,0],[-65,-1],[-19,-1],[-10,-2],[-9,3],[-82,0],[-8,-25],[-15,-32],[-10,-2],[-3,-44],[8,-12],[8,-22],[7,-45],[7,-37],[6,-25],[-6,-27],[0,-76],[1,-52],[-10,-24],[-8,-13],[-3,-48],[-4,-23],[-9,-30],[0,-30],[-8,-7],[-9,-27],[-13,-34],[-17,-13],[-9,-55],[-16,-17],[-8,-26],[-12,-11],[-12,6],[-11,-34],[-16,-7],[-28,-35],[-24,-18],[-12,-7],[-5,-33],[-14,-16],[-24,-66],[-15,-5],[-12,-6],[-10,2],[-17,15],[-14,-11],[-9,2],[-6,-29],[-5,-26],[-18,-29],[-18,-10],[-12,-4],[-13,-17],[-15,-29],[-11,-19],[-9,-2],[-5,22],[-20,13],[-14,-25],[-8,1],[-18,-22],[-9,3],[-13,-3],[-13,6],[-12,-10],[-13,4],[-31,6],[-12,-5],[-8,-6],[-21,12],[-24,-12],[-12,18],[-22,24],[-15,-12],[-12,-18],[-8,-27],[-13,-7],[-7,20],[-4,32],[-7,16],[-10,-2],[-12,7],[-10,13],[-10,10],[-10,10],[-11,7],[-10,8],[-7,14],[-8,25],[-12,-1],[-7,-14],[-6,-22],[-11,-13],[-13,-9],[-16,-11],[-16,-15],[-12,-19],[-10,-20],[-8,-19],[-12,-11],[-12,-11],[-9,-13],[-4,-25],[-7,-25],[-16,-7],[-20,-5],[-11,-9],[-9,-14],[-9,-7],[-12,3],[-8,-3],[-10,-11],[-12,-11],[-13,-9],[-9,-3],[-9,-1],[-10,-5],[-9,-16],[-9,-12],[-14,-6],[-11,-6],[-13,-4],[-11,-10],[-4,-20],[-2,-27],[-11,-14],[-13,-5],[-9,-11],[-16,-8],[-10,-1],[-9,-1],[-6,-25],[-23,-20],[-9,-1],[-15,-6],[-60,-16],[-12,10],[-15,3],[-10,-8],[6,-37],[-2,-27],[4,-22],[7,-28],[1,-23],[-2,-29],[5,-20],[2,-38],[8,-22],[1,-27],[3,-40],[-3,-30],[-3,-24],[3,-48],[41,-54],[14,3],[12,-6],[8,9],[17,-1],[13,-3],[15,3],[15,-45],[19,-9],[8,-23],[11,-33],[0,-31],[-1,-31],[13,-24],[10,-6],[5,-21],[-1,-41],[5,-34],[-5,-28],[3,-31],[7,-15],[8,-21],[-3,-39],[-10,-17],[-19,-16],[-12,-14],[-9,-20],[-40,-51],[-12,-15],[-10,-5],[-9,10],[-12,8],[-10,-5],[-11,24],[-21,2],[-15,-8],[-13,-26],[-9,-12],[-17,-14],[-20,-3],[-11,-1],[-15,6],[-43,16],[-8,3],[-15,-18],[-6,-28],[-1,-28],[5,-49],[1,-26],[-5,-25],[-8,-20],[-6,-23],[-2,-40],[-13,-63],[-9,-8],[-10,11],[-10,-10],[-8,-57],[-11,-25],[-13,-2],[-21,-8],[-6,-26],[-15,-5],[-4,-25],[-3,-22],[-15,-29],[-17,-16],[-12,-12],[-11,3],[-11,-8],[-9,-13],[-20,-16],[-15,-6],[-14,-1],[-15,9],[-10,13],[-11,-22],[-14,-38],[-12,-7],[-10,-1],[-22,-18],[-28,-24],[-23,-45],[-9,-17],[-13,-20],[-11,5],[-10,27],[-11,9],[-15,2],[-8,9],[-10,29],[-6,16],[-20,1],[-14,-3],[-14,1],[-12,-17],[-11,12],[-7,14],[-2,39],[-9,2],[-10,1],[-14,-1],[-8,0],[-19,-3],[-8,11],[-14,-8],[-27,-8],[-16,-13],[-12,-2],[-16,16],[-16,20],[-12,-2],[-14,-20]],[[31133,44429],[-35,0],[-10,3],[-9,10],[-6,37],[0,26],[-5,36],[1,29],[-8,36],[-8,10],[-12,12],[-8,42],[-22,33],[10,34],[7,12],[8,-9],[12,35],[2,41],[-4,37],[-3,30],[3,35],[10,16],[23,9],[16,22],[10,6],[37,29],[17,35],[11,11],[11,20],[-8,21],[-12,14],[-17,42],[-1,27],[1,25],[7,54],[11,18],[13,29],[5,20],[-5,55],[-1,32],[-4,87],[-7,41],[2,26],[9,20],[9,26],[1,26],[-9,25],[-12,33],[-5,24],[1,27],[6,33],[16,34],[-9,48],[18,38],[13,28],[-29,91],[7,29],[0,26],[-5,31],[9,33],[12,32],[-3,50],[-17,14],[10,38],[-14,93],[1,54],[18,69],[5,20],[54,24],[14,-6],[11,12],[-21,52],[-7,123],[26,86],[-1,26],[-18,34],[0,50],[-11,14],[-1,33],[-11,8],[-15,0],[-18,55],[2,55],[-14,32],[-10,53],[-24,57],[3,68],[-4,185],[0,3],[-5,62],[-19,74],[-34,80],[-13,71],[46,96],[32,147],[27,78],[13,6],[10,6],[22,36],[1,73],[-10,32],[-6,21],[3,35],[50,88],[2,41],[-39,170],[0,59],[-3,36],[-3,40],[-6,67],[10,40],[3,21],[-15,37],[-21,26],[-20,42],[-25,56],[-20,7],[24,55],[2,12],[3,16],[-8,46],[-10,57],[-13,10],[-24,19],[-9,14],[-11,108],[-9,88],[-12,18],[-11,15],[-6,30],[-46,-1],[-37,-2],[-12,0],[-3,0],[-27,-1],[-282,-6],[-51,-1],[-34,7],[-70,3],[-6,1],[-115,4],[-47,2],[-19,1],[0,323],[0,356],[0,167],[0,80],[-217,-2],[-24,0],[-205,-3],[-264,-2],[-40,-1],[-39,-2],[-68,-4],[-31,-2],[-149,-9],[0,555],[0,572],[0,55],[0,97],[0,226],[0,23],[0,49],[0,120],[0,175],[-1,352],[0,217],[-1,342],[0,11],[0,132],[-73,0],[-69,0],[-111,-2],[-62,-1],[-13,0],[-126,0],[-158,-1],[-140,-2],[-64,-2],[-289,-2],[-1,-56],[-86,0],[-17,0],[-120,1],[-34,0],[-81,0],[-38,0],[-11,0],[-75,0],[-64,0],[-149,0],[-13,0],[-41,0],[-28,4],[-75,3],[-77,2],[-9,-3],[-51,1],[-87,2],[0,638],[0,79],[1,215],[-1,140],[0,56],[0,50],[0,107],[-1,231],[0,157],[-1,276],[0,157],[-1,138],[0,7],[0,67],[0,14],[-1,180],[0,62],[-1,372],[-1,482],[0,66],[0,30],[0,97],[-1,143],[0,235],[0,47],[0,137],[1,168],[0,93],[1,294],[-3,164],[0,5],[1,120],[2,92],[0,78],[1,96],[0,29],[0,22],[0,81],[1,187],[0,70],[0,286],[0,74],[-1,32],[0,40],[-2,86],[-3,126],[0,80],[0,81],[1,70],[0,5],[0,28],[1,111],[1,205],[-1,241],[-4,293],[-78,0],[-116,-1],[-60,1],[-11,0],[-12,0],[-6,0],[-73,0],[-91,0],[-18,0],[-76,0],[-83,0],[-36,-9],[-44,1],[-27,0],[-232,5],[-117,3],[-4,0],[-192,-2],[-50,0],[-252,-3],[-123,2],[-72,-1],[-160,-1],[-12,0],[-18,0],[-19,-1],[-12,0],[-109,-1],[-1,54],[-80,-1],[0,644],[0,592],[0,160],[-1,126],[0,103],[0,625],[0,2],[1,285],[0,101],[0,158],[0,268],[0,72],[0,175],[0,258],[0,114],[0,304],[0,89],[0,73],[0,2],[-2,61],[-1,565],[0,544],[0,2],[0,157],[-1,300],[0,374],[0,473],[-10,-41],[-16,-48],[-76,7],[-9,8],[-14,0],[-9,11],[-11,7],[-10,6],[-11,7],[-8,14],[-10,-10],[-7,-22],[-8,5],[-10,-11],[-13,15],[-8,-3],[-8,-19],[1,-27],[-8,-16],[-11,-11],[-8,-10],[-11,9],[-10,15],[-9,16],[-10,15],[-20,21],[-8,3],[-11,0],[-8,13],[-10,-9],[-13,12],[-12,21],[-8,21],[-6,31],[-10,12],[-14,9],[-12,5],[-12,8],[-14,12],[-6,26],[3,31],[-3,26],[-1,24],[-6,19],[-8,18],[-8,16],[3,23],[9,12],[8,13],[9,16],[-2,23],[-3,21],[-5,21],[-6,27],[0,30],[1,25],[-1,28],[-6,16],[-6,18],[-6,18],[-7,22],[-12,18],[-8,13],[-4,21],[-4,24],[6,15],[5,22],[4,21],[7,17],[8,9],[8,19],[-8,15],[-6,16],[-5,20],[-8,21],[-1,28],[-5,26],[-1,26],[-3,26],[-4,23],[-2,22],[1,27],[-3,23],[-2,24],[-2,25],[-1,27],[0,25],[-4,23],[-4,22],[-3,21],[12,49],[10,17],[7,27],[-6,21],[-7,16],[3,22],[-3,24],[2,22],[-5,18],[-2,23],[3,25],[-1,21],[1,22],[0,28],[-2,26],[10,11],[11,10],[10,12],[10,10],[10,9],[-5,34],[3,28],[1,28],[-1,24],[0,28],[3,47],[3,32],[-6,26],[-8,17],[-7,13],[-8,6],[-10,12],[-8,7],[-12,3],[-8,16],[-9,12],[-6,56],[3,26],[-16,64],[-7,18],[-4,24],[-3,65],[-9,6],[-14,19],[-9,22],[-11,0],[-35,44],[-13,22],[-21,53],[-4,22]],[[64421,69465],[0,-44],[0,-17],[0,-55],[0,-58],[-1,-146],[-1,-236],[0,-172],[-1,-186],[0,-149],[0,-71],[-20,-1],[0,-221],[-1,-316],[-1,-125],[9,-293],[0,-158],[0,-44],[-1,-33],[0,-119],[-1,-329],[-1,-109],[-1,-329],[-1,-222],[-1,-380],[-3,-448],[-1,-228],[1,-51],[3,-215],[0,-17],[0,-7],[0,-6],[0,-65],[0,-28],[0,-55],[1,-186],[0,-229],[2,-435],[-180,-1],[0,-154],[-148,-1],[-178,3],[-110,-3],[-17,-3],[-3,0],[-9,0],[-20,4],[-16,-4],[-36,1],[-10,0],[-11,0],[-38,1],[-16,0],[-11,0],[-9,0],[-4,0],[-7,0],[-20,0],[-17,0],[-29,1],[-65,2],[-51,0],[-105,2],[-132,3],[0,-22],[-231,0],[-27,0],[-30,0],[-50,-1],[-28,-1],[-22,0],[-18,-1],[-304,-9],[-229,-3],[-79,0],[-17,-1],[-21,0],[2,-390],[1,-381],[-37,0],[-65,-1],[-66,0],[-40,-1],[-85,-2],[-194,1],[-8,0],[-45,0],[-21,0],[-43,-1],[-9,0],[-8,1],[-5,0],[-16,-1],[-10,0],[-20,0],[-89,-1],[-237,1],[-73,0],[-1,-437],[7,-259],[0,-42],[1,-130],[0,-93],[0,-11],[0,-99],[1,-204],[0,-36],[0,-17],[0,-238],[1,-159],[0,-127],[-152,1],[-2,-279],[2,-318],[0,-147],[0,-174],[0,-101],[-1,-15],[0,-12],[0,-12],[0,-35],[0,-71],[-1,-86],[-1,-605],[45,0],[191,-2],[263,-1],[35,0],[35,-1],[10,0],[101,0],[34,-1],[79,0],[131,-1],[143,-2],[-5,-741],[-5,-551],[0,-9],[0,-63],[0,-15],[-5,-700],[0,-5],[-1,-22],[12,-332],[0,-158],[-1,-3],[0,-26],[-2,-524],[-1,-246],[-1,-131],[-1,-153],[0,-66],[0,-78],[-1,-118],[0,-47],[0,-5],[-1,-59],[0,-66],[0,-30],[0,-86],[-1,-71],[0,-12],[0,-12],[0,-1],[-1,-263],[0,-22],[0,-35],[0,-37],[-1,-113],[-1,-200],[-1,-243],[0,-32],[-1,-26],[0,-15],[0,-145],[-1,-164],[-13,0],[-5,0],[-106,-2],[-39,1],[-1,-215],[0,-43],[0,-50],[-1,-238],[0,-50],[0,-70],[-1,-204],[0,-24],[0,-15],[0,-11],[0,-10],[0,-24],[0,-49],[-2,-574],[0,-40],[0,-36],[1,-225]],[[61771,51502],[-32,0],[-1,0],[-324,1],[-161,0],[-14,-4],[-4,-1],[-38,1],[-133,4],[-97,1],[-41,1],[-16,0],[-18,-1],[-118,-2],[-59,0],[-55,1],[-32,4],[-13,0],[-20,1],[-31,0],[-14,0],[-81,-2],[-25,2],[-27,-1],[-41,7],[-162,1],[-110,2],[-8,0],[-93,1],[-45,0],[-34,0],[-115,1],[-62,1],[-2,0],[-5,0],[-10,1],[-89,5],[-18,1],[-241,1],[-31,0],[-44,0],[-7,0],[-30,0],[-11,0],[-16,-1],[-7,-1],[-27,-2],[-47,2],[-14,0],[-20,0],[-34,0],[-153,8],[-15,-1],[-5,0],[-1,0],[-32,-1],[-79,1],[-23,-1],[-4,0],[-20,-1],[-12,-1],[-11,0],[-38,3],[-9,-7],[-18,0],[-9,0],[-48,1]],[[58617,51527],[-71,1],[-39,0],[-101,2],[-31,0],[-31,1],[-100,1],[-2,0],[-17,1],[-316,4],[-45,1],[-45,1],[-113,1],[-21,0],[-25,1],[-3,-1],[-6,-2],[-16,0],[-149,-2],[-10,0],[-376,6],[-5,1],[-5,2],[-22,0],[-5,0],[-252,0],[-107,0],[-94,0],[-253,3],[-40,1],[-156,-1],[-93,-1],[-25,0],[-179,-2],[-49,0],[-40,0],[-205,-10],[-86,1],[-25,0],[0,-22],[-1,-768],[0,-231],[0,-157],[0,-57]],[[55458,50301],[-30,0],[-40,0],[-15,0],[-43,0],[-18,0],[-7,0],[-18,0],[-2,0],[-91,0],[-13,0],[-24,0],[-92,1],[-75,0],[-24,0],[-295,0],[-34,0],[-9,0],[-11,0],[-52,0],[-26,1],[-2,0],[-8,1],[-20,0],[-1,0],[-94,0],[-2,0],[-38,0],[-13,0],[-18,0],[-73,-1],[-17,0],[-2,0],[-271,-1],[-15,0],[-24,0],[-2,0],[-61,0],[-30,0],[-22,0],[-25,0],[-39,0],[-11,0],[-49,0],[-29,0],[-185,0],[-7,0],[-3,0],[-67,0],[-23,0],[-90,-1],[-8,0],[-12,1],[-11,0],[-11,0],[-10,0],[-8,0],[-18,0],[-48,-1],[-110,3],[-51,0],[-24,-1],[-49,0],[-195,-2],[-171,-2],[-41,2],[-42,3]],[[52489,50304],[-1,127],[0,8],[0,103],[-1,63],[0,42],[0,15],[-2,273],[0,13],[0,13],[0,23],[0,67],[1,23],[0,33],[0,1],[0,13],[0,10],[0,30],[0,7],[0,9],[0,48],[1,166],[-26,1],[-1,0],[-7,-1],[-6,-1],[-25,1],[-6,1],[-15,0],[0,24],[0,61],[1,37],[0,18],[0,36],[0,42],[0,27],[0,29],[0,19],[0,50],[0,33],[0,14],[0,79],[-1,229],[0,40],[-1,39],[-26,0],[-20,0],[-14,0],[-7,-1],[-13,0],[-98,-1],[-83,-2],[-1,317],[-26,0],[-64,-1],[0,153],[-86,1],[-76,0],[-1,0],[-5,0],[-6,0],[-39,0],[-48,1],[-1,152],[-44,0],[-1,314],[0,16],[0,42],[0,23],[0,77],[48,0],[39,-1],[19,-1],[7,0],[152,0],[17,-1],[10,-1],[1,0],[14,-1],[0,37],[0,13],[0,109],[12,0],[0,183],[-1,148],[0,40],[0,40],[0,48],[1,54],[0,108],[47,2],[0,41],[-1,77],[0,22],[0,2],[-3,18],[0,23],[0,116],[0,16],[5,0],[38,-3],[4,0],[5,0],[33,1],[22,1],[26,0],[-1,76],[-1,73],[0,10],[0,62],[0,36],[-1,39],[0,15],[46,0],[44,0],[42,2],[28,0],[15,0],[0,212],[0,98],[0,14],[0,38],[0,4],[0,34],[0,14],[0,209],[0,36],[0,44],[0,51],[0,121],[0,38],[0,21],[0,40],[-1,63],[0,6],[0,52],[0,123],[0,86],[-1,253],[0,36],[0,19],[-1,204],[0,89],[0,1],[0,78],[0,11],[0,186],[0,11],[-1,42],[0,78],[0,105],[0,23],[0,242],[0,101],[0,12],[-1,28],[0,30],[-1,444],[0,70],[0,1],[0,5],[1,30],[-1,34],[0,16],[0,85],[0,201],[0,77],[-1,26],[0,136],[0,91],[0,83],[-1,365],[0,187],[0,31],[0,5],[-1,187],[0,73],[0,8],[-2,505],[0,37],[0,31],[0,23],[-1,4],[1,234],[1,86],[-2,304],[-12,0],[-150,0],[-157,-1],[-153,0],[-111,1],[-124,-1],[-255,-2],[-2,51],[1,342],[1,545],[-314,0],[-22,0],[-14,-1],[-32,1],[-19,0],[-37,-1],[-1,0],[-69,0],[-27,0],[-17,0],[-155,-1],[-58,0],[-10,0],[-16,0],[-71,0],[-52,0],[-150,-1],[-1,559],[0,297],[0,79],[-107,-1],[-247,0],[-10,0],[-101,-1],[-38,-1],[-36,-1],[-170,0],[-30,0],[-19,0],[-26,0],[-89,-2],[-173,1],[-16,0],[0,85],[0,252],[1,96],[0,192],[0,71],[0,285],[0,113],[-1,161],[0,106],[0,36],[0,187],[0,34],[0,83],[-1,173],[-76,1],[-76,0],[-206,-1],[-275,1],[-43,0],[-25,0],[-10,0],[0,69],[-1,273],[1,325],[0,6],[0,138],[0,20],[0,13],[0,79],[1,66],[-2,86],[-1,7],[1,3],[0,8],[0,15],[2,43],[0,89]],[[96829,64536],[-2,-5],[0,-5],[-1,-31],[-1,-25],[-1,-36],[-4,-80],[-14,-37],[-12,-34],[-15,-29],[-10,-19],[-13,-35],[-7,-32],[-4,-13],[-5,-11],[-3,-7],[-2,-24],[-2,-13],[-7,-24],[0,-1],[-8,-27],[-28,-61],[-45,-34],[-19,-14],[-8,-10],[-21,-44],[-27,-104],[-2,-24],[179,-6],[-1,-155],[92,-157],[88,-2],[0,-156],[90,-3],[0,-154],[89,-3],[2,-313],[40,0],[59,0],[0,-97],[-1,-207],[49,-3],[49,-3],[2,-156],[88,0],[3,-155],[88,2],[-1,-624],[88,0],[0,-466],[88,0],[1,-310],[38,-3],[-2,-939],[84,-1],[3,-158],[-1,-297],[0,-177],[0,-101],[0,-119],[0,-6],[0,-24],[0,-56],[1,-318],[0,-281],[1,-189],[0,-151],[0,-159],[-37,-1],[-144,-5],[0,-156],[0,-55],[-1,-146],[0,-91],[0,-19],[-1,-313],[-88,-2],[0,-123],[-2,-69],[-2,-121],[-30,-1],[-48,0],[-9,-6],[-4,-307],[-78,3],[0,-59],[0,-34],[-1,-32],[0,-189],[-60,1],[-26,1],[1,-319],[-52,0],[-40,1],[0,-52],[0,-103],[-39,0],[-31,-1],[-19,-17],[0,-59],[1,-79],[-23,0],[-65,0],[0,-67],[0,-77],[0,-52],[-1,-24],[0,-11],[0,-80],[-72,1],[-17,1],[0,-313],[-175,1],[0,-85],[0,-227],[-86,2],[-90,-2],[0,-154],[-47,3],[-41,-1],[0,-119],[-1,-38],[-173,-8],[0,-149],[-88,1],[-1,-50],[0,-69],[0,-37],[-33,-5],[-17,0],[-226,2],[-122,0],[-84,-1],[-152,2],[-46,1],[-80,1],[-133,0]],[[95301,53903],[-110,1],[-71,-1],[-20,0],[-371,1],[-24,0],[-1,0],[-109,2],[-26,0],[-54,0],[-239,1],[-29,0],[-174,-2],[-22,-2],[-56,-1],[-80,2],[-14,0],[-12,-1],[-227,2],[-14,0],[-139,-1],[-194,1],[-223,2],[-14,0],[-39,7],[-31,-1],[-39,0],[-132,-1],[-71,0],[-9,-1],[-10,1],[-39,0],[-51,0],[-49,1],[-92,-2],[-49,-1],[-27,0],[-41,1],[-193,1],[-35,1],[-173,2],[-9,0],[-32,-1],[-10,1],[-16,0],[-11,0],[-11,0],[-136,1],[0,291],[0,22],[0,183],[1,30],[1,68],[-5,34],[-18,1],[-51,3],[-20,-2],[-10,-2],[-33,0],[-41,-1],[1,31],[1,174],[0,112],[-175,-4],[0,301],[-210,1],[-146,0],[-111,0],[-44,0],[-3,0],[-20,0],[-111,0],[-79,0],[-160,0],[-45,0],[-77,1],[-55,-1],[1,402],[0,131],[0,94],[1,172],[1,43],[-1,27],[-1,49],[1,28],[1,82],[-2,74],[0,27],[0,120],[-21,0],[-122,0],[-29,0],[-9,-1],[-205,0],[-62,3],[-78,-1],[-132,0],[-75,0],[-275,-1],[-59,2],[1,62],[1,113],[-1,57],[1,32],[-1,24],[0,202],[0,54],[0,50],[0,795],[0,331],[0,23],[0,23],[0,108],[1,640],[0,49],[0,66],[0,21],[-1,68],[1,93],[0,108],[-1,151],[0,85],[0,27],[0,257],[0,83],[0,67],[0,15],[1,43],[-1,99],[1,311],[-1,341],[-177,0],[-146,0],[-29,-2],[-71,4],[-48,1],[-207,0]],[[45047,65864],[0,-99],[1,-80],[2,-409],[-1,-645],[-107,0],[-127,0],[-96,0],[-110,0],[-51,0],[-94,0],[-65,1],[-146,1],[-14,0],[-118,2],[-136,-1],[0,-190],[0,-644],[0,-217],[0,-275],[-44,1],[0,234],[-133,-18],[1,-414],[0,-75],[0,-92],[0,-17],[0,-155],[1,-489],[91,-15],[0,-128],[0,-186],[89,-7],[-4,-1091],[-43,1],[0,-76],[1,-257],[1,-344],[0,-73],[0,-31],[1,-486],[10,-613],[-14,-13],[29,-1],[38,0],[21,0],[91,-1],[258,-2],[252,1],[367,0],[1,-737],[0,-196],[0,-22],[0,-4],[0,-35],[0,-350],[0,-51],[0,-195],[1,-237],[36,-1],[1,-235],[-1,-100],[0,-433],[0,-192],[0,-75],[0,-98],[0,-169],[0,-85],[0,-39],[0,-231],[0,-55],[-1,-159],[13,0],[26,0],[0,-26],[0,-44],[0,-170],[-1,-248],[0,-118],[0,-150],[0,-61],[0,-22],[0,-50],[0,-111],[0,-56],[1,-468],[0,-140],[0,-192],[0,-14],[-24,1],[-23,0],[-91,-1],[0,-42],[0,-2],[-1,-33],[1,-215]],[[44936,53100],[-5,-57],[-11,-34],[-11,-15],[-9,4],[-10,8],[-10,-6],[-17,-18],[-10,13],[-8,17],[-10,13],[-12,10],[-20,5],[-8,4],[-12,12],[-13,17],[-10,18],[-9,5],[-12,11],[-12,12],[-8,13],[-10,49],[-6,30],[-5,19],[-10,24],[-14,30],[-7,22],[-6,32],[-6,25],[-8,13],[-10,8],[-12,16],[-18,19],[-15,18],[-5,7],[-3,3],[3,24],[-6,16],[-3,30],[-4,25],[-12,17],[-13,-17],[-10,-15],[-11,-14],[-12,-11],[-12,-3],[-12,-1],[-9,-6],[-16,-5],[-18,14],[-12,1],[-18,-26],[-1,-22],[-4,-23],[-10,-15],[-18,-2],[-16,-4],[-20,13],[-9,22],[-1,30],[1,33],[-4,33],[-9,40],[-9,4],[-13,3],[-24,16],[-17,13],[-10,12],[-11,6],[-13,0],[-12,-4],[-13,-28],[-8,-10],[-14,-5],[-14,2],[-13,-3],[-10,-11],[-13,-12],[-13,-6],[-11,4],[-13,22],[-12,19],[-10,22],[-5,17],[-6,21],[1,33],[8,19],[10,21],[8,21],[4,21],[6,35],[7,31],[1,34],[-4,22],[-4,25],[-3,26],[-5,28],[1,30],[-4,36],[4,29],[-6,24],[3,31],[3,27],[-10,7],[-12,-10],[-11,-10],[-11,-4],[-13,13],[0,23],[-3,31],[-5,25],[5,23],[10,11],[10,4],[10,11],[-2,26],[-9,11],[-10,21],[-9,17],[-10,18],[6,22],[9,20],[11,13],[11,14],[14,10],[16,12],[10,12],[9,27],[-5,31],[-8,17],[-6,20],[-7,26],[-9,21],[-9,9],[-12,5],[-8,10],[-7,21],[-1,36],[7,29],[0,22],[-10,1],[-9,-16],[-14,-23],[-14,-23],[-18,-12],[-12,0],[-17,16],[-34,28],[-11,11],[-13,15],[-12,17],[-11,10],[-14,1],[-8,19],[0,29],[1,42],[0,23],[1,22],[8,24],[-5,24],[-14,10],[-14,5],[-12,-2],[-13,-9],[-15,-15],[-18,-26],[-6,-21],[-8,-22],[-1,-28],[-11,-3],[-12,2],[-11,9],[-12,-1],[-8,-29],[-12,-19],[-13,-26],[-17,1],[-8,11],[-19,40],[-8,55],[-10,23],[-20,30],[-18,22],[-4,22],[-2,27],[-3,29],[-9,5],[-9,-5],[-13,-5],[-11,1],[-10,20],[-9,6],[-11,-3],[-19,-7],[-19,-18],[-10,-10],[-15,5],[-7,34],[-15,20],[-8,22],[-13,29],[-19,16],[-17,10],[-9,13],[-12,9],[-11,2],[-16,-3],[-21,0],[-25,7],[-12,14],[-7,17],[-3,29],[5,32],[-2,36],[5,34],[8,31],[1,24],[0,29],[6,20],[2,23],[3,29],[3,21],[-2,43],[-4,24],[-3,39],[-11,47],[-17,41],[-9,13],[-13,6],[-8,-9],[-15,-12],[-17,-7],[-23,-4],[-12,-6],[-12,4],[-2,30],[1,30],[-5,19],[-13,40],[-20,36],[-62,107],[-11,1],[-9,10],[-11,17],[6,18],[-10,32],[-8,14],[-16,21],[-4,27],[-5,29],[-8,35],[-12,10],[-11,1],[-9,4],[-15,11],[-16,18],[-11,8],[-10,9],[-11,27],[-12,20],[-9,7],[-12,14],[-4,20],[-3,40],[-11,16],[-10,29],[-11,34],[-4,37],[-9,9],[-12,6],[-18,15],[-16,20],[-9,8],[-10,5],[-10,18],[-9,14],[-14,1],[-11,-3],[-11,-3],[-15,7],[-10,8],[-13,16],[-17,1],[-10,7],[-15,10],[-14,15],[-8,13],[-8,17],[-8,15],[-8,10],[-9,5],[-40,21],[-21,3],[-12,14],[-14,5],[-8,5],[-8,29],[-6,21],[-9,9],[-13,10],[-9,6],[-10,12],[-14,24],[-7,12],[-9,12],[-11,10],[-10,4],[-25,9],[-18,3],[-20,2],[-13,10],[-10,13],[-15,-19],[-9,-11],[-24,-21],[-17,-12],[-11,-10],[-10,-5],[-12,-4],[-22,-5],[-13,-5],[-18,13],[0,32],[9,27],[6,26],[5,43],[-13,29],[-17,0],[-28,3],[-11,-8],[-18,19],[-9,-19],[-20,-40],[-9,5],[-20,-11],[-22,17],[-38,16],[-27,-3],[-50,56],[-15,-1],[-9,-8],[-9,-8],[-21,2],[-23,7],[-13,5],[-19,-10],[-16,-18],[-8,-17],[-10,4],[-16,30],[-35,30],[-25,33],[-8,-17],[-31,-15],[-10,0],[-32,-14],[-14,-9],[-20,-19],[-21,-1],[-25,20],[-24,19],[-6,31],[-11,18],[-14,30],[-30,-7],[-6,35],[-28,65],[-40,33],[-9,25],[-13,8],[-4,21],[-20,42],[-4,43],[-2,61],[-21,38],[-21,29],[14,1],[53,101],[14,33],[11,1],[18,18],[35,27],[12,30],[14,38],[16,24],[13,15],[34,59],[-10,54],[-3,21],[0,84],[-22,57],[-4,25],[4,105],[-13,7],[-14,41],[18,110],[-13,57],[-3,25],[64,146],[-40,192],[-100,0],[-4,0],[-270,-4],[-36,2],[-139,2],[-98,1],[-1,-268],[1,-486],[0,-222],[0,-4],[1,-671],[-477,2],[-227,-4],[-64,4],[-287,1],[-1,-233],[-7,-3],[-2,-1],[-146,1],[-34,3],[-40,0],[-192,1],[-205,2],[-127,1],[-104,1],[-36,3],[-112,-8],[-69,-4],[-245,2],[-149,1],[-24,4],[-28,-2],[-10,0],[-20,-2],[-16,-1],[-34,-4],[-21,0],[-99,3],[-56,-1],[-18,-1],[-126,-2],[-59,-1],[-94,-1],[-46,-10],[0,-102],[1,-99],[0,-136],[0,-170],[0,-22],[1,-220],[1,-386],[0,-1],[0,-32],[0,-290],[1,-322],[0,-29],[0,-55],[-10,0],[-147,0],[-2,0],[-348,-2],[-15,0],[-198,-1],[-184,1],[-85,1]],[[21509,69822],[0,-60],[0,-71],[0,-343],[1,-56],[0,-13],[-2,-794],[1,-818],[-1,-355],[0,-12],[1,-287],[0,-85],[0,-57],[0,-679],[-1,-172],[0,-593],[0,-173],[1,-280],[1,-489],[0,-127],[0,-109],[0,-78],[0,-821],[0,-20],[0,-340],[0,-53],[0,-104],[0,-134],[0,-140],[0,-97],[0,-180],[2,-456],[0,-498],[0,-239],[0,-231],[0,-105],[159,1],[90,3],[34,-1],[20,0],[22,0],[84,0],[27,0],[28,0],[225,1],[63,0],[42,7],[9,0],[64,0],[80,0],[102,0],[191,0],[95,0],[25,0],[1,-357],[1,-234],[1,-255],[1,-131],[-5,-195],[0,-119],[0,-4],[1,-277],[0,-196],[0,-111],[0,-279],[1,-92],[0,-300],[0,-31],[1,-600],[0,-73],[0,-59],[0,-2],[0,-28],[0,-38],[0,-5],[0,-56],[-7,-320],[4,-104],[1,-433],[0,-270],[-2,-779],[0,-125],[-1,-459],[0,-227],[0,-118],[-1,-241],[0,-41],[1,-445],[1,-284],[0,-58],[1,-135]],[[22871,53283],[-49,0],[-9,0],[-2,0],[-106,-1],[-66,0],[-86,-1],[-68,0],[-56,-1],[-129,-1],[-36,0],[-17,0],[-19,0],[-28,0],[-33,0],[-104,0],[-135,0],[-1,-296],[0,-10],[-1,-325],[-175,1],[-82,0],[-44,0],[-36,0],[-25,1],[-60,0],[-73,0],[-33,0],[0,-63],[0,-110],[0,-139],[0,-117],[0,-14],[0,-54],[0,-29],[0,-173],[0,-333],[0,-105],[0,-77],[0,-31],[-15,0],[-38,0],[-51,-1],[-14,0],[-57,-1],[-111,1],[-207,3],[-40,0],[-9,-9],[1,-59],[4,-235],[-58,6],[1,-71],[1,-113],[0,-27],[0,-11],[0,-20],[0,-37],[0,-3],[1,-32],[-153,-2],[-17,-1],[-10,0],[-22,0],[-46,0],[-10,-1],[-23,0],[-5,0],[-27,0],[-12,-1],[-24,0],[-275,-4],[-93,-1],[-255,-3],[1,-294],[0,-61],[0,-59],[1,-41],[0,-86],[-1,-193],[0,-9],[0,-16],[2,-61],[0,-36],[1,-236],[0,-46],[0,-26],[0,-77],[-160,0],[-356,0],[-63,0],[-118,0],[-10,0],[-343,-2],[0,43],[-111,15],[-40,0],[-36,0],[-28,0],[-62,0],[-10,0]],[[18501,49598],[-58,0],[-25,0],[-126,-1],[-9,0],[-9,0],[-94,0],[-65,0],[-15,0],[-40,-1],[-203,0],[-75,-1],[-115,0],[-149,-1],[-139,0],[-64,0],[-15,0],[-233,-2],[-7,0],[-76,0],[-12,-1],[-104,0],[-47,0],[-51,0],[-85,1],[-51,0],[-35,0],[-33,0],[-35,-1],[-20,1],[-19,1],[-12,0],[-15,1],[-18,0],[-9,0],[-2,0],[-15,0],[-31,0],[-53,0],[-70,0],[-16,1],[-19,0],[-20,-2],[-33,0],[-31,0],[-129,-2],[-239,0],[-27,0],[-105,-13],[-60,0],[-21,0],[-231,1],[-73,1],[-1,0],[-82,0],[-202,1],[-293,3],[-147,3],[-242,5]],[[14296,49592],[-10,10],[-20,20],[-13,5],[-42,-8],[-42,11],[-30,14],[-13,13],[-37,101],[-3,54],[-30,-49],[-12,-5],[-15,5],[-36,-5],[-28,-17],[-22,-6],[-17,-2],[-21,-33],[-18,-49],[-12,-19],[-13,-5],[-21,31],[-25,24],[-27,0],[-32,-29],[-19,-29],[-29,-56],[-16,-2],[-24,20],[-13,34],[-7,-77],[-9,-33],[-8,-3],[-20,-2],[-22,19],[-7,16],[-57,43],[-15,-16],[-25,-37],[-18,-19],[-31,-22],[-22,-23],[-8,-29],[-33,-38],[-30,-32],[-16,-18],[-17,-4],[-22,-1],[-7,-14],[0,-16],[-2,-49],[-4,-35],[8,-18],[2,-15],[4,-25],[-13,-7],[-24,-54],[-23,-52],[-29,-35],[-17,-34],[-12,-25],[-30,14],[-12,-3],[-14,-10],[-19,-3],[-22,15],[-11,-7],[-19,8],[-19,10],[-19,10],[-11,12],[-21,42],[-10,11],[-40,27],[-9,19],[-16,57],[-9,6],[-19,-15],[-23,-16],[-27,-14],[-13,0],[-16,3],[-30,6],[-38,13],[-16,7],[-15,13],[-37,46],[-30,65],[-9,5],[-23,13],[-19,24],[-16,30],[-9,-5],[-37,-103],[-25,-5],[-29,8],[-28,-12],[-40,-47],[-18,-26],[-51,54],[-10,-9],[-48,-110],[-13,-20],[-16,-45],[-5,-6],[-17,-24],[-15,2],[-28,30],[-10,3],[-21,-44],[-12,-3],[-18,24],[-38,51],[-27,-15],[-48,32],[-45,45],[-7,33],[-6,44],[3,32],[30,60],[-14,89],[-11,14],[-9,24],[4,21],[-5,40],[-20,3],[-22,35],[-21,16],[-61,24],[-42,-6],[-15,37],[-2,62],[-14,32],[6,36],[16,29],[30,19],[3,26],[0,30],[-8,26],[-11,0],[-24,-13],[-26,-1],[-7,10],[5,28],[7,15],[6,21],[-10,55],[-3,20],[26,34],[20,30],[34,39],[41,74],[26,65],[8,34],[2,43],[-3,23],[-12,18],[9,44],[2,35],[4,66],[9,38],[9,46],[-8,32],[-19,34],[-2,14],[-9,48],[-14,11],[-24,23],[-4,14],[-12,21],[-12,1],[-13,30],[-23,49],[-11,43],[-5,8],[-17,16],[-25,5],[-6,17],[-3,29],[-7,30],[6,48],[-8,50],[-22,43],[-23,21],[-19,8],[-28,7],[-15,7],[-14,23],[-17,51],[-11,18],[-13,6],[-13,-6],[-14,-14],[-16,-26],[-11,-13],[-20,6]],[[11447,51232],[-1,228],[214,-1],[18,0],[178,-1],[126,0],[252,0],[23,0],[21,0],[44,0],[135,0],[40,0],[0,55],[-1,320],[0,199],[0,54],[0,30],[0,150],[0,255],[0,164],[0,73],[-1,243],[0,121],[0,196],[-143,-1],[0,423],[0,6],[0,459],[1,177],[0,101],[0,156],[0,180],[1,233],[0,81],[0,178],[1,174],[0,7],[1,228],[0,35],[0,41],[0,24],[-1,298],[164,-4],[0,314],[-4,131],[-1,23],[0,84],[-1,73],[135,0],[25,-4],[19,0],[-1,66],[0,96],[2,203],[167,1],[7,0],[11,0],[11,-19],[17,-28],[12,-10],[9,-24],[13,-15],[14,-20],[33,-48],[20,-40],[8,-14],[13,-1],[22,9],[18,6],[9,7],[11,0],[3,0],[9,-2],[1,-1],[21,-13],[22,-9],[10,-2],[13,-10],[41,-40],[14,-11],[27,-22],[32,-25],[16,-8],[13,-7],[0,10],[0,20],[1,27],[0,23],[0,25],[0,32],[-2,202],[50,1],[92,0],[24,1],[55,2],[44,0],[-1,303],[-143,-2],[-33,2],[-86,3],[-135,1],[-64,0],[-69,0],[-1,53],[-1,239],[-1,178],[0,28],[-1,109],[0,27],[0,68],[0,99],[1,66],[0,23],[1,55],[-145,-1],[-470,1],[-71,0],[3,593],[-178,-4],[2,625],[-353,27],[0,283],[-176,2],[2,622],[-146,0],[-196,1],[0,304],[-174,20],[-1,548],[0,388],[-530,-1],[0,310],[-178,9],[0,589]],[[31133,44429],[-11,-21],[-8,-16],[-10,-25],[-2,-21],[-8,-21],[-10,-6],[-21,-40],[-18,-28],[-18,-12],[-8,-2],[-7,-28],[-7,-17],[-14,-22],[-11,-11],[-9,-28],[-14,-14],[-12,5],[-11,-10],[-7,-22],[-8,-22],[-13,-13],[-11,-20],[2,-36],[1,-29],[-2,-21],[-7,-30],[-18,-37],[-11,-5],[-10,-12],[3,-34],[4,-21],[-37,-88],[-16,-36],[-11,-27],[-12,-13],[-23,-6],[-25,-2],[-13,5],[-22,7],[-18,2],[-9,0],[-11,23],[-12,-1],[-30,19],[-12,4],[-13,-7],[-63,-33],[-12,-5],[-10,-15],[-23,-19],[-9,-2],[-27,38],[-17,2],[-10,27],[-6,24],[-21,1],[-17,-13],[-17,-13],[-12,-20],[-6,-17],[-6,-19],[-5,-33],[-7,-18],[-14,-8],[-16,-28],[-12,-27],[-8,-15],[-10,1],[-19,-1],[-9,-10],[-3,-21],[13,-30],[11,-29],[10,-35],[-5,-22],[-24,-11],[-50,-17],[-11,-13],[-6,-22],[-6,-20],[-10,-25],[2,-41],[6,-54],[11,-38],[5,-30],[-10,-15],[-21,-23],[-17,-23],[-23,-33],[-7,-16],[-11,-45],[-18,10],[-28,2],[-22,-2],[-44,-14],[-20,-13],[-11,-20],[0,-26],[10,-17],[11,-14],[-10,-12],[-9,-11],[6,-32],[5,-20],[5,-29],[-3,-40],[4,-21],[4,-33],[7,-76],[-11,-31],[-5,-22],[-8,-18],[-7,-14],[-3,-24],[-10,-6],[-18,6],[-20,3],[-53,-9],[-10,86],[-7,96],[-4,20],[-49,57],[-13,1],[-29,-28],[-13,-6],[-14,-1],[-14,1],[-12,3],[-8,16],[-8,35],[-11,12],[-12,0],[-11,-4],[-11,-1],[-13,1],[-13,-10],[-15,6],[-13,-12],[-9,-44],[0,-24],[2,-25],[0,-26],[8,-22],[-7,-21],[-20,-32],[-7,-30],[-5,-18],[-8,-5],[-9,0],[-34,18],[-23,33],[-8,6],[-17,-13],[-7,-20],[-13,-26],[-9,-8],[-16,-3],[-14,6],[-16,14],[-65,101],[-6,-78],[-27,-49],[-12,-44],[-31,-68],[-9,-29],[-2,-38],[-5,-18],[-8,-25],[-22,-39],[-9,-15],[4,-31],[-22,-12],[-8,-10],[-34,-121],[-9,-16],[-24,-5],[-12,-1],[-9,-9],[-17,-16],[-12,-10],[-11,-1],[-13,2],[-11,-10],[3,-26],[-1,-30],[-9,-39],[-5,-25],[-7,-15],[-5,-36],[43,-100],[13,-23],[10,-17],[17,-60],[10,-32],[4,-30],[5,-25],[15,-42],[7,-68],[0,-22],[-2,-23],[-3,-22],[1,-30],[3,-37],[-1,-25],[-2,-23],[0,-67],[-3,-26]],[[29070,41088],[-10,0],[-153,-1],[-116,-1],[-44,-1],[-80,0],[-66,-1],[-92,-2],[-272,0],[-60,0],[-3,0],[-25,0],[-90,2],[-27,0],[-164,3],[-13,0],[-5,0],[-76,1],[-77,3],[-46,1],[-29,-1],[-10,0],[-84,-2],[-5,-1],[-6,0],[-13,-1],[-36,12],[-14,0],[-14,0],[-27,1],[-118,1],[-350,2],[-121,1],[-148,2],[-19,0],[-9,0],[-48,0],[-64,0],[-19,1],[-41,0],[-49,-3],[-44,-7],[-24,-3],[-35,-5],[-25,-4],[-50,1],[-51,1],[-69,2],[-391,14],[-179,-3],[-173,4],[-156,2],[-143,2]],[[25087,41108],[0,174],[0,55],[0,187],[1,289],[0,1],[0,459],[0,836],[0,58],[0,22],[0,247],[0,93],[-1,199],[-1,174],[7,111],[0,3],[0,163],[0,35],[-1,611],[-1,878],[0,16],[0,59],[-10,0],[-6,19],[0,109],[1,222],[1,92],[0,200],[0,266],[-1,262],[0,193],[0,102],[0,102],[-1,393],[0,213],[0,61],[0,207],[0,65],[0,38],[0,105],[-1,108],[0,16],[0,17],[0,23],[0,22],[0,208],[-1,682],[0,305],[0,255],[-1,298],[0,37],[0,251],[-1,436],[-1,131],[-8,8],[-9,9],[-18,-6],[-19,13],[-10,0],[-18,-9],[-12,-37],[-4,-21],[-6,-20],[-20,-33],[-18,-21],[-8,-18],[-13,-14],[-9,8],[-9,14],[-7,12],[-11,-12],[-15,-21],[-16,-26],[-17,-25],[-20,-23],[-17,-17],[-13,-13],[-9,-23],[-6,-42],[-10,-22],[-10,-13],[-9,10],[-21,-4],[-17,-3],[-8,7],[-18,20],[-14,7],[-11,6],[-11,-11],[-12,-4],[-11,-1],[-8,-10],[-12,-25],[-25,-26],[-12,-7],[-18,-10],[-16,-22],[-17,-21],[-11,-6],[-23,-10],[-15,-10],[-11,-12],[-9,-2],[-10,23],[-8,17],[-9,26],[-9,22],[-48,39],[-6,16],[-2,30],[-5,28],[-15,18],[-9,17],[-14,39],[-14,0],[-11,-2],[-10,4],[-15,28],[-14,15],[-13,6],[-9,3],[-10,-16],[-23,24],[-9,15],[-8,15],[-12,7],[-11,-5],[-19,-19],[-11,-6],[-16,-14],[-14,-9],[-18,-7],[-12,-2],[-5,42],[-6,28],[-10,17],[-8,12],[-9,12],[-8,11],[-9,3],[-27,-28],[-21,-4],[-13,-7],[-11,-26],[-11,4],[-13,30],[-15,25],[1,38],[0,22],[-9,17],[-4,20],[-3,22],[0,27],[5,38],[4,41],[2,30],[4,24],[8,24],[11,24],[11,19],[10,19],[8,9],[11,15],[10,19],[5,19],[-7,22],[-10,4],[-7,13],[-13,37],[-6,19],[-4,32],[-3,35],[-13,17],[-10,7],[-9,6],[-11,2],[-13,11],[-11,41],[-10,34],[-10,22],[-8,19],[-10,17],[-9,16],[-12,6],[-10,7],[-10,0],[-10,-3],[-8,-6],[-7,13],[-6,19],[-11,7],[-23,38],[-2,38],[-10,1],[-13,5],[-10,17],[-6,23],[-10,31],[-14,21],[-10,2],[-12,5],[-10,4],[-10,6],[-13,20],[-11,15],[-9,-9],[-7,-15],[-3,28],[-9,20],[-15,-13],[-10,-7],[-10,11],[-5,28],[-7,28],[-3,20],[-6,23],[-11,13],[-8,-2],[-10,13],[-7,19],[-1,22],[-2,28],[-7,33],[-6,20],[-3,22],[-12,30],[-13,20],[-8,19],[-8,15],[-7,28],[0,24],[11,45],[4,24],[-4,36],[-1,35],[-1,38],[-1,48],[-4,26],[-4,23],[-8,11],[-15,15],[-11,26],[-11,43],[-6,26],[-7,13],[-12,-5],[-13,-6],[-12,0],[-12,2],[-13,9],[-9,16],[-8,26],[-3,33],[-9,11],[-15,-2],[-15,7],[-6,18],[-9,1],[-5,-26],[-2,-22],[-13,-39],[-6,-19],[-9,-31],[-8,-22],[-5,-24],[-1,-30],[-7,-23],[-14,-20],[-8,-15],[-10,-14],[-12,-5],[-14,-18],[-9,-14],[-11,-15],[-9,-13],[-11,-11],[-13,-8],[-14,-14],[-15,-12],[-17,-12],[0,37],[0,40],[-1,191],[0,63],[0,7],[0,20],[0,132],[0,52],[-95,0]],[[67922,53701],[-5,-17],[-13,-32],[-5,-14],[65,-81],[21,-13],[8,-5],[13,-8],[37,-208],[67,-27],[25,-83],[16,-69],[11,-44],[5,-20],[55,-86],[6,-49],[10,-70],[-3,-80],[42,-82],[11,-80],[-27,-69],[29,-87],[22,-116],[-7,-80],[-23,-50],[-6,-13],[-6,-91],[6,-16],[32,-90],[31,-91],[5,-18],[6,-16],[17,-51],[26,-48],[44,-78],[8,-26],[4,-17],[11,-35]],[[68460,51641],[-62,-1],[-31,-1],[-40,-1],[-65,-2],[-171,-4],[-32,9],[-197,-3],[-84,-2],[-65,-1],[-174,-2],[-128,-1],[-24,-1],[-29,-1],[-112,-2],[-1,0],[-110,-2],[-111,-2],[-6,0],[-61,0],[-30,0],[-369,-17],[-408,2],[-69,0],[-13,1],[-90,0],[-203,-1],[-79,0],[-84,0],[-10,0],[-64,0],[-255,-1],[-162,0],[-97,0],[-13,0],[-74,-2],[-91,0],[-59,-6],[-187,-17],[-103,-9],[-78,-7],[-22,-2],[-67,-6],[-123,-12],[-86,-7],[-77,-7],[-14,-2],[-58,-5],[-59,-12],[-17,-3],[-30,-5],[-71,0],[-44,-1],[-164,-2],[-73,-1],[-175,-1],[-50,0],[-2,0],[-34,0],[-73,-1],[-184,0],[-22,0],[-21,0],[-21,0],[-5,0],[-72,-4],[-24,0],[-12,0],[-19,-1],[-17,0],[-26,-1],[-124,-5],[-423,4],[-193,2],[-23,1],[-1,0],[-179,5],[-43,1]],[[11447,51232],[-9,4],[-19,21],[-23,16],[-10,-2],[-15,-26],[-19,-20],[-23,-5],[-18,12],[-43,65],[-15,12],[-9,-16],[-11,-55],[-4,-49],[9,-13],[-5,-36],[-15,-43],[-13,-23],[-29,-39],[-9,-11],[-1,-29],[5,-19],[4,-20],[-2,-22],[-15,-40],[-1,-13],[-5,-62],[-18,-39],[-18,-23],[-16,-14],[-7,-2],[-20,1],[-25,-6],[-20,13],[-17,3],[-31,-29],[-16,-4],[-22,-9],[-9,-6],[-36,-15],[-15,-25],[-1,-54],[-19,-31],[-24,-69],[-10,-62],[3,-38],[-29,-33],[-10,4],[-19,-8],[-35,-6],[-26,16],[-33,-5],[-7,-4],[-9,25],[-9,30],[0,56],[7,43],[-6,18],[-12,7],[-34,11],[-24,13],[-27,5],[-10,7],[-2,25],[-40,64],[-11,33],[2,31],[21,60],[19,28],[17,24],[1,27],[-17,41],[3,23],[1,52],[26,40],[-2,41],[14,25],[20,9],[22,35],[29,30],[4,64],[16,39],[-5,42],[23,45],[-1,60],[-17,9],[-8,37],[21,44],[-6,80],[6,36],[10,43],[-12,33],[-21,32],[-32,27],[-3,74],[-13,17],[-27,12],[-13,44],[-9,2],[-28,-6],[-7,32],[-15,135],[16,73],[-30,45],[-11,-63],[-37,-34],[-21,-6],[-19,-20],[-31,39],[-46,99],[-25,-11],[-55,-15],[-36,27],[-23,-7],[-24,7],[-29,25],[-12,71],[-19,44],[-20,86],[-27,6],[-30,12],[-14,18],[-25,53],[-9,34],[-4,3],[-12,-3],[-49,71],[-2,28],[-9,18],[-15,28],[-4,47],[-5,94],[-9,11],[-8,9],[-7,21],[-15,11],[-22,-21],[-47,-35],[-44,2],[-29,-44],[-33,-25],[-25,-120],[-18,-12],[-11,-2],[-21,5],[-3,46],[-3,51],[-6,20],[-16,15],[12,31],[2,64],[18,55],[6,33],[-4,19],[-16,41],[-14,70],[-46,-10],[-35,31],[-56,48],[-17,33],[-24,-8],[-29,112],[-6,37],[-22,0],[-5,30],[-1,27],[7,27],[5,14],[8,18],[-15,27],[-9,43],[24,45],[5,14],[12,35],[-22,61],[-20,94],[-63,39],[-35,-12],[-37,37],[-22,33],[-1,38],[22,98],[13,51],[14,4],[25,18],[13,34],[11,39],[15,54],[8,9],[12,32],[-1,12],[1,31],[3,39],[-1,39],[-4,22],[-6,93],[-8,8],[-7,21],[-11,60],[-1,26],[4,39],[-13,53],[10,73],[10,36],[12,24],[12,3],[7,16],[2,26],[5,18],[0,20],[3,53],[15,3],[26,19],[25,35],[-14,46],[-9,69],[-9,18],[-15,20],[-23,5],[-24,-8],[-17,5],[-9,6],[-12,31],[-11,13],[-26,44],[-15,8],[-15,9],[-14,25],[-9,2],[-13,5],[-24,6],[-42,57],[-16,5],[-1,36],[12,39],[-9,35],[-17,21],[-13,27],[-5,27],[-15,2],[-5,4],[-11,8],[-16,1],[-9,11],[-14,28],[-12,17],[-11,33],[-8,10],[-14,28],[-11,44],[-12,24],[-8,9],[-7,26],[-16,-5],[-10,12],[-4,33],[2,33],[7,26],[-6,6],[-16,19],[-8,13],[-8,14],[-9,37],[-19,32],[-3,47],[-47,91],[-5,23],[-7,13],[-3,91],[-27,8],[-25,14],[-25,18],[-45,0],[-13,4],[-16,11],[-75,26],[-9,-11],[4,-43],[-11,-24],[-16,-11],[-23,1],[-18,-24],[-29,1],[-31,-9],[-40,-8],[-11,21],[-8,56],[-11,32],[11,13],[3,126],[-5,5],[-8,12],[-11,26],[-9,10],[-21,22],[-4,42],[-32,112],[-56,71],[8,17],[7,39],[5,45],[-5,17],[-23,75],[-4,63],[-13,39],[-8,38],[-11,66],[31,20],[-11,109],[-6,50],[-10,31],[8,57],[-13,-18],[-24,2],[-29,53],[-15,32],[1,32],[5,72],[-7,14],[2,25],[-9,28],[-8,34],[-45,34],[-1,78],[7,31],[-66,50],[-10,12],[-10,10],[-10,-24],[-22,-8],[-11,1],[-32,35],[-12,27],[2,9],[7,33],[-12,-2],[-3,5],[-30,38],[-14,40],[-7,20],[-29,56],[-17,36],[-10,41],[-14,57],[-20,24],[-7,17],[-13,54],[-16,62],[-17,55],[-16,22],[-18,35],[-10,104],[-15,49],[4,27],[-9,36],[-1,45],[0,57],[7,33],[1,22],[13,5],[-3,27],[-37,103],[-20,19],[-19,-23],[-20,1],[-40,24],[-30,-17],[-47,48],[-26,32],[-6,3],[-15,10],[-7,20],[-7,32],[-3,28],[0,33],[6,23],[-10,6],[-40,92],[-6,24],[-1,50],[-35,27],[-13,24],[-14,35],[-7,33],[11,81],[-10,3],[-6,5],[-36,39],[-12,21],[-1,30],[-11,0],[-13,19],[-17,33],[-5,61],[-14,-11],[-20,5],[-12,4],[-27,22],[-42,20],[-18,21],[-3,24],[-8,37],[-59,79],[-7,-14],[-8,-2],[-26,6],[-14,12],[-24,23],[-22,0],[-15,5],[-15,7],[-17,0],[-26,-8],[-22,33],[-5,23],[-12,52],[-1,24],[-4,22],[-9,31],[-12,12],[-14,22],[-11,22],[-10,40],[-2,19],[1,28],[-5,23],[-3,30],[-1,40],[2,44],[3,32],[0,27],[-17,41],[-1,22],[-17,50],[-5,31],[-9,2],[-38,-6],[-13,0],[-14,9],[-23,23],[-12,-3],[-20,-8],[-15,-2],[-38,22],[-13,6],[-27,2],[-3,10],[-15,43],[-11,22],[-22,-8],[-21,8],[-38,25],[-1,30],[0,29],[-2,21],[1,44],[10,23],[3,15],[4,17],[3,47],[8,72],[12,79],[14,34],[14,36],[3,33],[-10,54],[-6,32],[-2,22],[-5,47],[2,42],[0,28],[-10,13],[-13,22],[-6,29],[-4,32],[-27,4],[-15,38],[-18,29],[-11,28],[-35,7],[-14,32],[-6,29],[-19,6],[-2,44],[-14,42],[-5,66],[-5,43],[-33,31],[-5,22],[4,19],[11,27],[18,42],[21,58],[-1,28],[-13,27],[-1,17],[1,38],[-11,-4],[-19,0],[-39,31],[-26,30],[-15,6],[-10,5],[-40,38],[-13,24],[-25,-37],[-34,-21],[-31,14],[-5,6],[-17,21],[-42,-54],[-19,9],[-20,18],[-19,17],[-7,19],[-9,16],[-24,32],[-7,13],[-18,-11],[-16,3],[-19,-1],[-25,34],[-10,3],[-17,16],[-29,-34],[-34,-8],[-42,-3],[-29,-6],[-49,-11],[-24,-8],[-23,17],[-12,32],[-7,23],[-19,44],[-17,8],[-24,43],[-1,34],[11,68],[-5,23],[-26,21],[-12,25],[-9,10],[-11,-5],[-28,-6],[-18,4],[-20,9],[-64,-63],[-21,7],[-22,18],[-38,-19],[-31,4],[-4,31],[0,15],[0,46],[-15,38],[-30,36],[-19,23],[-12,27],[-10,-12],[-10,-20],[-24,-40],[-29,0],[-14,-14],[-25,-43],[-19,-5],[-19,41],[-31,87],[-25,39],[-16,10],[-20,-2],[-20,9],[-28,2],[-32,17],[-61,98],[-46,39],[-23,22],[-35,15],[-35,4],[9,29],[-4,31],[8,41],[-6,74],[8,33],[-20,22],[-8,34],[-9,56],[-24,48],[-35,117],[-15,73],[-3,29],[8,55],[-32,35],[-14,36],[-46,32],[19,108],[0,16],[-7,147],[-10,73],[-6,15],[-21,14],[-17,41],[-13,-11],[-24,-12],[-33,-8],[-25,26],[-6,22],[-7,12],[-15,26],[-36,-1],[-22,112],[17,66],[0,31],[-7,33],[-41,21],[-22,18],[-13,28],[-44,6],[-27,11],[-29,22],[-1,44],[-9,24],[-14,51],[-14,9],[-17,3],[-25,27],[-15,37],[-36,5],[-9,12],[-20,20],[-26,-11],[-31,-18],[-41,-38],[-22,-6],[-14,10],[-26,-2],[-69,-44],[-15,69],[-18,36],[-4,31],[6,34],[1,59],[-9,46],[-18,48],[-37,27],[-10,23],[-6,19],[-4,50],[-2,56],[-15,19],[-26,20],[-21,-20],[-21,-6],[-19,7],[-37,13],[-18,-7],[8,124],[-19,49],[-36,23],[-22,3],[-12,16],[-12,26],[-16,45],[-47,2],[-9,9],[-20,28],[-28,-26],[-54,-13],[-20,7],[-6,17],[-17,29],[-11,26],[-7,31],[-21,5],[-7,8],[-5,19],[2,83],[-28,-8],[-65,-3],[-38,14],[-17,22],[-29,-51],[-27,-19],[-31,-17],[-62,-18],[-12,5],[-24,18],[17,74],[9,29],[15,45],[14,24],[9,67],[12,85],[7,29],[0,22],[12,29],[14,8],[45,11],[18,8],[13,15],[10,10],[26,5],[19,31],[30,34],[30,29],[15,32],[30,64],[87,7],[18,-9],[23,12],[61,46],[13,14],[17,19],[17,-1],[24,3],[24,7],[19,-8],[24,-51],[20,-29],[17,-4],[31,21],[67,-9],[15,-1],[17,18],[29,-1],[27,11],[13,13],[16,7],[27,12],[16,41],[18,9],[16,23],[14,31],[4,27],[4,29],[11,18],[1,14],[7,49],[5,27],[14,43],[11,49],[0,33],[6,32],[21,70]],[[52489,50304],[-42,1],[-41,1],[-18,2],[-42,-3],[-7,-1],[-10,0],[-72,-3],[-39,0],[-36,1],[-21,0],[-10,-1],[-10,-2],[-11,1],[-15,-2],[-16,-1],[-16,1],[-16,-3],[-11,0],[-15,0],[-12,-1],[-10,-1],[-14,2],[-15,-3],[-9,1],[-11,0],[-9,-1],[-8,1],[-11,-1],[-8,1],[-9,1],[-10,-2],[-12,2],[-9,-1],[-10,0],[-14,5],[-11,9],[-11,11],[-10,13],[-9,11],[-15,10],[-12,6],[-15,2],[-3,24],[7,15],[4,21],[1,28],[-6,28],[-6,26],[-5,18],[-8,24],[-6,14],[-9,15],[-10,11],[-11,9],[-8,7],[-22,20],[-14,17],[-11,14],[-11,11],[-8,9],[-11,4],[-10,-9],[-7,-9],[-12,-11],[-11,-13],[-11,-7],[-14,-7],[-14,-6],[-9,0],[-10,4],[-9,9],[-10,8],[-8,8],[-8,8],[-13,3],[-13,3],[-10,1],[-8,13],[-9,14],[-9,9],[-9,13],[-10,19],[-10,11],[-10,1],[-10,4],[-9,9],[-8,10],[-10,15],[-8,12],[-6,16],[-11,18],[-8,17],[-9,14],[-8,18],[-11,12],[-8,12],[-9,10],[-9,18],[-10,7],[-10,11],[-14,10],[-9,23],[-10,22],[-12,11],[-8,15],[-10,1],[-10,15],[-7,13],[-7,8],[-8,15],[-8,9],[-10,5],[-10,5],[-11,14],[-9,-4],[-9,-15],[-13,-8],[-15,1],[-11,7],[-10,4],[-9,7],[-11,14],[-9,20],[-8,9],[-8,6],[-9,2],[-9,8],[-15,12],[-10,9],[-8,12],[-10,18],[-7,16],[-11,10],[-9,6],[-9,-2],[-9,3],[-17,9],[-10,14],[-7,19],[-5,17],[-8,14],[-11,15],[-10,12],[-15,1],[-6,13],[-7,18],[-6,20],[-12,8],[-15,8],[-13,3],[-6,18],[-9,14],[-11,2],[-9,5],[-11,8],[-11,12],[-10,5],[-11,15],[-11,10],[-12,6],[-8,7],[-12,12],[-20,7],[-13,39],[-11,-24],[-14,-5],[-26,-37],[-11,-2],[-9,3],[-9,3],[-9,11],[-11,14],[-16,3],[-31,-15],[-16,-16],[-12,-3],[-11,-6],[-4,-25],[0,-26],[-7,-18],[-9,-15],[-10,-6],[-9,-16],[-8,-5],[-9,-5],[-8,-15],[-8,-10],[-9,-4],[-9,-6],[-9,-3],[-13,2],[-13,-1],[-10,-3],[-14,-15],[-9,4],[-9,11],[-13,9],[-10,-9],[-7,-17],[-20,-25],[-22,-28],[-19,-7],[-12,-11],[-16,-12],[-9,-11],[-9,-9],[-13,2],[-9,11],[-2,26],[-1,28],[-17,39],[-25,37],[-9,13],[-15,-1],[-14,-9],[-10,1],[-9,13],[-8,20],[-10,19],[-9,23],[-7,16],[-15,18],[-13,19],[-11,9],[-10,0],[-13,-12],[-11,-13],[-9,0],[-14,4],[-9,-6],[-13,-10],[-16,-14],[-13,-9],[-21,-14],[-18,-16],[-18,-4],[-24,2],[-25,4],[-22,4],[-22,11],[-19,11],[-12,-3],[-8,-11],[-9,-17],[-9,-13],[-14,-17],[-13,-16],[-10,-3],[-22,9],[-20,11],[-18,6],[-11,-4],[-12,-13],[-11,-19],[-12,-23],[-9,-15],[-11,-15],[-11,-11],[-10,-4],[-13,-1],[-15,-4],[-11,-18],[-10,-22],[-6,-26],[4,-40],[-1,-23],[-5,-26],[-8,-35],[-11,-13],[-9,-21],[3,-28],[3,-29],[6,-18],[1,-24],[-2,-31],[-9,-16],[-19,-15],[-11,-13],[-13,-36],[-22,-21],[-10,2],[-13,10],[-26,20],[-12,-2],[-11,-5],[-15,-5],[-31,-6],[-13,-2],[-17,-3],[-11,-3],[-22,-6],[-20,-17],[-15,-11],[-14,-9],[-14,1],[-18,9],[-23,19],[-10,13],[-7,16],[-8,12],[-13,7],[-12,3],[-10,0],[-10,7],[-10,13],[-11,11],[-10,1],[-18,3],[-21,15],[-28,25],[-11,13],[-12,17],[-23,13],[-16,6],[-27,0],[-8,-7],[11,-18],[-3,-31],[-15,-32],[-11,-15],[-31,-42],[-13,-25],[-3,-27],[10,-19],[-7,-30],[-8,-18],[-14,-14],[-11,-21],[-12,-25],[-11,-41],[-9,-6],[-23,5],[-13,5],[-28,16],[-17,24],[-18,7],[-19,1],[-22,-10],[-7,-18],[-9,-22],[-11,-1],[-20,9],[-18,5],[-20,-8],[-25,-12],[-16,-3],[-10,0],[-20,11],[-15,15],[-7,14],[-9,4],[-9,-12],[-10,-5],[-10,3],[-11,11],[-9,10],[-14,7],[-18,3],[-15,9],[-10,-3],[-13,3],[-15,4],[-12,3],[-11,0],[-8,-5],[-12,-15],[-13,-10]],[[48096,50667],[-11,-5],[-12,-2],[-17,-4],[-14,-9],[-9,-14],[-11,-23],[-13,-32],[-18,-21],[-11,-17],[-8,-21],[-9,-20],[-9,-11],[-15,-14],[-15,-21],[-10,-20],[-8,-22],[-4,-21],[-3,-25],[-1,-28],[4,-27],[-6,-14],[-12,-7],[-13,-17],[-11,-25],[-8,-32],[-4,-26],[-9,-7],[-12,-6],[-10,5],[-15,10],[-17,5],[-11,2],[-9,1],[-16,-17],[-6,-32],[-7,-13],[-10,-13],[-10,-8],[-10,0],[-20,1],[-12,5],[-12,7],[-10,-17],[-2,-26],[-6,-23],[-10,-23],[-6,-21],[1,-35],[7,-17],[11,-32],[7,-38],[-7,-28],[-10,-8],[-18,-2],[-11,-14],[-9,-5],[-11,-2],[-11,6],[-12,10],[-12,7],[-19,-9],[-13,-8],[-11,-2],[-7,20],[-2,35],[-2,22],[-5,36],[-12,28],[-2,21],[-3,21],[-11,32],[-18,19],[-23,28],[-22,22],[-14,31],[-10,38],[-16,24],[-22,17],[-30,22],[-22,13],[-16,6],[-19,4],[-13,-1],[-8,-10],[-9,-8],[-9,-7],[-10,-2],[-15,-2],[-9,-4],[-19,-3],[-14,-3],[-9,-8],[-10,-10],[-10,-9],[-13,-11],[-20,-8],[-11,-2],[-13,-4],[-9,-3],[-17,-20],[-11,-19],[-11,-25],[-16,-11],[-38,0],[-9,-11],[-10,-21],[-10,-16],[-13,-15],[-12,-15],[-23,-38],[-8,-20],[-10,-17],[-15,17],[-10,25],[-17,40],[-9,13],[-14,13],[-12,11],[-16,16],[-14,13],[-8,9],[-10,26],[-9,-1],[-13,-28],[-9,-11],[-13,-14],[-15,-7],[-12,-5],[-22,-8],[-8,-7],[-11,-12],[-9,-15],[-12,-18],[-12,-13],[-11,-7],[-13,-10],[-12,-9],[-15,8],[-11,4],[-20,-9],[-12,-5],[-11,-2],[-7,14],[1,118],[-9,10],[-16,8],[-14,-5],[-13,-6],[-13,4],[-10,21],[-9,16],[-12,9],[-7,13],[-7,28],[-5,41],[-1,50],[-2,33],[-4,18],[-8,8],[-10,17],[-3,23],[-3,33],[12,25],[-5,24],[-16,15],[-14,16],[-18,21],[-14,4],[-9,-1],[-9,-10],[-16,-18],[-9,-6],[-15,1],[-1,22],[-5,39],[-17,26],[-9,14],[-8,16],[-7,27],[-7,38],[-11,32],[-11,16],[-9,4],[-9,-1],[-9,-6],[-14,-19],[-18,-10],[-25,-2],[-17,5],[-18,9],[-15,4],[-13,15],[-10,30],[-18,35],[-14,41],[-11,34],[-15,30],[-20,24],[-20,18],[-21,15],[-22,10],[-10,13],[-11,31],[-13,33],[-8,31],[-6,34],[-3,22],[-8,19],[-12,-6],[-18,-12],[-15,-9],[-20,-1],[-22,7],[-13,15],[-11,28],[-4,23],[2,31],[-4,28],[0,32],[5,49],[8,64],[7,53],[3,40],[-1,27],[7,29],[9,26],[2,21],[3,32],[3,38],[4,44],[1,30],[1,39],[2,24],[-8,25],[-8,14],[-8,24],[-8,33],[-8,26],[-2,24],[-9,33],[-10,10],[-19,-1],[-11,-8],[-10,-5],[-8,-5],[-18,-12],[-16,-6],[-8,-11],[-11,-5],[-17,8],[-10,3],[-21,7],[-10,4],[-16,6],[-19,1],[-18,-3],[-16,-3],[-13,-1],[-13,-3],[-14,4],[-11,-1],[-17,-9],[-14,-2],[-9,-2],[-14,1],[-24,2],[-9,-1],[-13,3],[-18,14],[-11,13],[-11,-3],[-11,-3],[-16,-2],[-13,13],[-6,27],[-1,29],[-4,27],[-9,32],[-15,0],[-12,13],[-10,8],[-15,7],[-17,20],[-9,17],[-6,24],[-5,34],[-1,45],[-9,19],[-18,19],[-15,15],[-14,26],[-10,26],[-12,26],[-8,39],[-6,39],[-5,51],[-7,26],[-10,20],[-13,29],[-7,25],[1,22],[4,26],[5,40],[6,40],[3,39],[6,50],[7,16],[4,22],[1,32],[5,20],[-3,21],[-8,23],[-8,38],[-8,15],[-9,18],[-12,37],[-4,37],[-19,-18]],[[99953,65460],[1,-114],[0,-82],[1,-309],[-1,-70],[0,-13],[-1,-142],[0,-9],[0,-98],[-2,-322],[1,-24],[0,-22],[1,-23],[0,-26],[0,-24],[0,-24],[0,-24],[0,-32],[0,-27],[0,-27],[-2,-38],[0,-277],[1,-153],[0,-161],[0,-32],[0,-47],[0,-96],[0,-133],[0,-118],[1,-131],[-1,-63],[1,-48],[0,-8],[1,-23],[2,-28],[0,-41],[-1,-35],[-1,-33],[-2,-132],[0,-30],[0,-37],[-1,-95],[0,-59],[0,-101],[0,-106],[0,-31],[0,-251],[-1,-196],[0,-14],[0,-114],[-1,-34],[1,-34],[0,-106],[1,-54],[0,-66],[0,-83],[0,-82],[0,-32],[1,-190],[0,-22],[0,-35],[1,-207],[0,-99],[0,-121],[1,-49],[1,-21],[-1,-33],[0,-3],[1,-41],[0,-2],[-1,-27],[0,-71],[0,-52],[0,-53],[1,-253],[0,-5],[1,-50],[-2,-38],[-1,-57],[0,-38],[0,-117],[1,-8],[-1,-61],[1,-71],[1,-272],[0,-30],[0,-28],[-1,-58],[0,-48],[0,-64],[0,-30],[0,-29],[0,-29],[0,-23],[-2,-190],[-1,-67],[3,-58],[0,-22],[0,-103],[0,-77],[0,-28],[0,-28],[1,-30],[-1,-22],[-1,-26],[-1,-37],[0,-35],[0,-29],[1,-50],[0,-21],[1,-36],[0,-46],[-1,-42],[1,-26],[-1,-26],[0,-49],[0,-55],[0,-34],[0,-23],[0,-33],[-1,-24],[2,-38],[-2,-24],[0,-51],[1,-38],[-1,-49],[-1,-38],[0,-49],[0,-50],[0,-36],[0,-61],[-1,-41],[0,-22],[0,-24],[0,-24],[0,-27],[0,-32],[0,-61],[-1,-26],[0,-28],[1,-22],[-1,-30],[0,-32],[0,-35],[0,-30],[0,-41],[-1,-26],[0,-31],[1,-22],[-1,-28],[0,-97],[0,-46],[0,-22],[0,-72],[0,-37],[0,-30],[-1,-34],[1,-46],[0,-87],[0,-23],[0,-23],[0,-44],[0,-29],[0,-43],[0,-32],[-1,-59],[0,-81],[1,-46],[-1,-14],[0,-13],[0,-29],[0,-19],[0,-254],[0,-48],[0,-28],[0,-23],[-1,-44],[1,-44],[-1,-52],[0,-51],[1,-54],[0,-25],[0,-119],[0,-64],[0,-71],[-1,-22],[1,-32],[1,-57],[-1,-177],[0,-40],[-1,-30],[0,-288],[0,-25],[0,-130],[-1,-33],[0,-45],[0,-62],[0,-37],[0,-25],[0,-129],[1,-30],[0,-22],[0,-9],[-3,-30],[3,-21],[1,-28],[-1,-27],[1,-202],[0,-28],[-1,-26],[0,-34],[0,-23],[0,-23],[0,-36],[0,-33],[0,-22],[0,-22],[1,-45],[-1,-43],[1,-48],[0,-25],[0,-28],[1,-21],[-1,-23],[1,-70],[0,-149],[0,-54],[0,-50],[0,-36],[0,-35],[0,-43],[0,-40],[0,-38],[0,-34],[1,-38],[0,-57],[0,-51],[0,-49],[0,-48],[0,-59],[0,-49],[0,-31],[0,-32],[0,-42],[0,-26],[0,-28],[0,-70],[0,-37],[0,-56],[0,-41],[0,-100],[0,-65],[0,-41],[0,-25],[0,-29],[0,-44],[-1,-32],[-4,-22],[4,-26],[3,-35],[-3,-154],[0,-26],[0,-26],[0,-64],[2,-109],[0,-53],[0,-42],[0,-152],[0,-94],[0,-40],[0,-133],[0,-43],[1,-202],[0,-238],[1,-340]],[[99952,49176],[-129,2],[-52,-1],[-108,1],[-9,1],[-175,1],[-79,0],[-116,0],[-17,0],[-3,-1],[-35,-1],[-10,-3],[-27,2],[-10,0],[-54,0],[-20,1],[-4,0],[-26,0],[-26,-1],[-102,0],[-9,0],[-22,0],[-109,-1],[-31,2],[-11,1],[-79,-1],[-2,0],[-85,-2],[-46,0],[-130,1],[-88,-1],[-60,-2],[-10,-1],[-17,0],[-8,2],[-122,2],[-45,1],[-34,0],[-34,1],[-9,0],[-30,0],[-34,0],[-33,0],[-102,-3],[-10,0],[-12,-2],[-20,3],[-30,0],[-39,-1],[-68,-2],[-4,0],[-52,1],[-65,1],[-9,0],[-109,0],[0,27],[-2,315],[-1,169],[-1,115],[-160,-2],[-16,1],[-64,0],[-220,-1],[-31,1],[-36,0],[0,116],[0,33],[0,23],[-1,117],[0,22],[-171,0],[-60,0],[-270,0],[-188,3],[-10,0],[-15,0],[-90,-1],[-50,0],[-219,-1],[-156,0],[-57,0],[-72,0],[-9,-3],[-58,1],[-4,0],[-29,0],[-9,1],[-16,-1],[-4,0],[-18,0],[-5,0],[-10,1],[-20,0],[-25,1],[-8,-1],[-3,0]],[[95274,50112],[0,4],[0,30],[0,906],[0,423],[-3,40],[1,290],[1,420],[2,929],[1,125],[29,0],[-1,55],[0,77],[0,31],[0,59],[-1,89],[-1,125],[-1,188]],[[95274,50112],[0,-310],[0,-256],[0,-59],[-154,4],[-172,-2],[-34,0],[-14,1],[-80,1],[-27,-1],[-21,-1],[-18,0],[-42,1],[-33,1],[-138,1],[-76,1],[-151,2],[-87,1],[-1,-190],[0,-85],[-1,-399],[2,-37],[0,-69],[0,-159]],[[94227,48557],[-147,-1],[-30,0],[-88,0],[-279,-1],[-338,-1],[-19,-1],[-147,0],[0,-22],[0,-293],[-1,-174],[0,-153],[-1,-292],[-20,-1],[-3,0],[-10,0],[-64,0],[-41,3],[-30,1],[-302,0],[-335,2],[-212,2],[-31,0],[0,-146],[0,-66],[0,-10],[0,-169],[1,-230],[-132,-1],[-42,-4],[-175,1],[-217,2],[-40,0],[-95,1],[-18,0],[-112,1],[-43,-1],[-21,-3],[-44,2],[-20,2],[-26,-1],[-20,-1],[-41,1],[-21,-1],[-106,11],[-79,0],[-258,0],[-117,-1],[-122,0],[-207,0],[-9,0],[-57,0],[-25,0],[-74,0],[0,52],[0,60],[0,4],[1,286],[1,134],[0,91],[-58,0],[-37,2],[-72,1],[-10,-1],[-170,2],[-160,2],[-44,1],[-14,0],[-177,1],[-135,1],[-10,0],[-17,2],[-1,0],[-197,2],[-34,2],[-195,-2],[-139,2],[-26,1],[-30,2],[-152,-2],[-69,1],[1,354],[1,31],[0,1],[-1,80],[-1,162],[-324,3],[-18,0],[-1,0],[-14,-1],[0,35],[0,2],[0,355],[0,53],[-1,36],[0,42],[0,152],[1,108],[0,69],[0,219],[0,55],[0,71],[-1,30],[-25,19],[-46,2],[-9,0],[-11,0],[-4,0],[-4,0],[-15,0],[-32,-1],[-10,0],[-14,0],[-50,-1],[-29,1],[-28,0],[-21,0],[-143,-1],[-11,0],[-5,0],[-10,0],[-17,-1],[-11,0],[-9,0],[-165,-1],[-28,0],[-1,496],[0,116],[-1,263],[0,142],[-1,106],[0,181],[0,37],[-1,46],[0,13],[-1,474],[-133,3],[-149,-1],[-66,0],[2,108],[0,55],[0,333],[0,125],[0,41],[0,109],[0,29],[0,159],[1,374],[1,259],[0,97],[0,187],[-13,-1],[-41,-2],[-12,0],[-146,1],[-90,-3],[-79,1],[-44,1],[-36,0],[-131,-1],[-107,-1],[-3,0],[-171,1],[-80,1],[-154,4],[-28,0],[-121,0],[-205,-1],[-144,-1],[-25,0],[-53,0],[-20,-1],[-88,0],[0,265],[0,148],[0,122],[0,25],[0,54],[-16,0],[-100,-1],[-46,0],[-74,0],[-11,0],[-75,0],[-35,10],[-44,0],[-46,0],[-49,0],[-20,0],[-92,0],[-124,1],[-32,-2],[-117,-1],[-147,-1],[-6,0],[-89,-2],[-42,-1],[-37,-2],[-62,-1],[-134,2],[-11,1],[-136,-3],[-161,-4],[-22,0],[-4,0],[-34,-2],[-231,0],[-44,0],[-73,0]],[[48096,50667],[0,-237],[0,-1],[-1,-257],[0,-421],[0,-930],[1,-293],[0,-159],[1,-128],[0,-72],[-1,-89],[-1,-346],[0,-438],[0,-213],[0,-38],[0,-429],[0,-86],[1,-241],[0,-110],[2,-66],[-2,-107],[0,-94],[-26,0],[-33,0],[-11,0],[0,-106],[1,-29],[0,-34],[0,-12],[0,-137],[0,-52],[0,-17],[0,-17],[0,-100],[0,-76],[0,-52],[1,-190],[0,-25],[0,-2],[0,-96],[2,-221],[0,-2],[0,-40],[0,-27],[0,-28],[0,-139],[0,-109],[0,-62],[-1,-170],[0,-141],[-1,-172],[0,-71],[-1,-120],[0,-95],[0,-97],[0,-36],[1,-225],[0,-90],[0,-251],[0,-3],[0,-46],[0,-87],[1,-314],[0,-47],[1,-431],[-2,-735],[-2,-310],[-1,-154],[0,-422],[0,-13],[0,-163],[0,-35]],[[48025,40111],[0,-783]],[[48025,39328],[-45,1],[-145,1],[-39,0],[-171,2],[-168,1],[-11,0],[-20,0],[-163,-4],[-20,0],[-32,0],[-20,0],[-20,0],[-82,0],[-44,0],[-31,0],[-24,0],[-9,0],[-17,7],[1,157],[-181,1],[-118,0],[-330,1],[-134,0],[-170,0],[-49,0],[-46,0],[-360,7],[-45,0],[-44,1],[-134,2],[-22,1],[-73,-1],[-17,0],[-84,3],[-87,0],[-344,0],[-416,1],[-22,0],[-24,0],[-12,0],[-42,0],[-90,0],[-97,-1],[-89,-2],[-91,-1]],[[43844,39505],[-35,1],[-15,2],[-212,2],[-3,0],[-21,-1],[-38,-2],[-9,0],[-52,0],[-26,0],[-55,0],[-63,0],[-40,0],[-59,0],[-39,0],[-28,3],[-34,2],[-43,1],[-52,1],[-41,0],[-71,0],[-77,0],[-3,0],[-39,0],[-58,0],[-51,0],[-38,0],[-69,-1],[-10,0],[-75,0],[-51,0],[-66,0],[-58,-1],[-8,0],[-57,0],[-13,0],[-36,0],[-33,0],[-18,0],[-91,0],[-18,0],[-477,3],[-8,1],[-8,0],[-1,0],[-20,0]],[[41525,39516],[9,76],[8,91],[-13,43],[2,53],[14,111],[-8,59],[-8,41],[-12,46],[11,48],[3,34],[-8,23],[-22,29],[-6,22],[0,70],[-51,123],[-29,9],[-24,-6],[-20,8],[-14,31],[-6,27],[5,60],[14,29],[1,44],[6,31],[18,41],[2,24],[-7,14],[29,49],[-13,12],[-14,-5],[-16,-2],[-16,-1],[-11,4],[-11,9],[-13,15],[-11,17],[-17,46],[-12,30],[-10,17],[-11,7],[-10,12],[-10,-1],[-10,-7],[-14,-3],[-12,9],[-11,20],[-10,1],[-9,0],[-8,-1],[-11,0],[-9,5],[-8,10],[7,27],[-10,19],[9,22],[6,35],[-9,12],[-9,8],[-18,19],[-12,2],[-11,-9],[-8,9],[-11,13],[-8,10],[-11,22],[-5,23],[-10,14],[-11,21],[-7,13],[-14,18],[-12,3],[-6,22],[-4,26],[7,29],[24,36],[-4,23],[-8,18],[10,47],[4,38],[1,33],[2,23],[5,24],[6,16],[6,34],[8,89],[8,22],[-3,42],[0,34],[-10,53],[0,125],[13,37],[5,21],[0,29],[-1,77],[1,52],[15,39],[14,7],[13,23],[6,19],[12,26],[9,19],[5,19],[5,44],[9,31],[15,31],[6,18],[9,43],[15,32],[30,75],[4,20],[22,5],[9,9],[7,32],[-8,59],[-2,41],[8,17],[22,9],[25,38],[12,40],[9,4],[25,-27],[25,-18],[21,0],[13,4],[8,15],[9,20],[9,13],[8,11],[16,29],[6,23],[1,7],[4,27],[-7,19],[-11,15],[-10,8],[4,30],[13,41],[9,22],[-1,24],[-1,42],[-12,20],[-4,28],[-5,35],[-6,41],[-8,14],[4,30],[4,19],[-2,34],[7,32],[4,24],[10,10],[4,24],[9,25],[14,34],[18,29],[3,33],[-10,45],[3,38],[0,28],[-9,26],[-4,21],[4,19],[14,31],[-2,22],[11,17],[8,4],[24,24],[11,32],[8,22],[-2,33],[0,25],[2,38],[-18,44],[-11,19],[-6,18],[-1,27],[-10,27],[-8,21],[-21,0],[-18,6],[-21,23],[-12,15],[-20,13],[-21,19],[-11,18],[-6,22],[-3,31],[-12,28],[-11,20],[-11,2],[-13,-2],[-4,19],[-16,38],[-12,23],[-11,15],[-23,-5],[-9,6],[-6,19],[-8,54],[-2,26],[-8,20],[-4,32],[0,25],[-7,33],[-14,15],[-16,15],[-17,-1],[-42,9],[-14,7],[-12,11],[-12,27],[-11,16],[-9,10],[-17,8],[-34,6],[-19,11],[-7,10],[-10,33],[4,18],[11,28],[11,24],[11,34],[14,46],[1,25],[-20,68],[-28,0],[-20,-5],[-9,-9],[-10,-5],[-8,-20],[-6,-18],[-12,5],[-28,-4],[-17,-2],[-14,-2],[-23,7],[-19,7],[-15,8],[-9,3],[-20,-26],[-13,-11],[-8,-13],[-21,14],[-10,6],[-16,0],[-16,-5],[-11,-3],[-29,-27],[-31,-15],[-21,-9],[-12,-6],[-8,-10],[-10,-25],[-5,-37],[2,-52],[2,-29],[-4,-39],[-16,-42],[-25,-32],[-15,-15],[-15,-20],[-15,-24],[-11,-23],[-13,-12],[-32,-19],[-16,-4],[-22,-4],[-12,-1],[-52,-19],[-24,-13],[-8,8],[-16,20],[-17,2],[-16,6],[-11,6],[-7,12],[-15,7],[-16,-6],[-23,-13],[-15,-5],[-10,-1],[-21,22],[-17,36],[-5,28],[-6,17],[-6,25],[-8,13],[-13,11],[-11,4],[-18,12],[-10,7],[-27,7],[-10,9],[-8,9],[-10,26],[1,29],[-2,22],[-10,19],[-12,29],[1,28],[-2,97],[4,61],[9,18],[6,42],[5,40],[-9,50],[-7,48],[-8,40],[-1,52],[-14,37],[-6,35],[10,59],[-5,38],[3,51],[-22,21],[-11,31],[-7,57],[10,34],[9,37],[2,37],[10,33],[-9,53],[-9,65],[-11,66],[-2,38],[-15,33],[-16,0],[-13,-17],[-21,-15],[-7,-21],[-11,-15],[-14,0],[-8,17],[-2,24],[0,35],[-10,34],[-16,22],[4,31],[1,23],[-22,52],[-10,26],[-8,13],[0,63],[0,29],[2,33],[-1,37],[-7,36],[-5,20],[-17,41],[-12,24],[-12,13],[-34,29],[-16,29],[-12,22],[-10,16],[-15,10],[-31,9],[-26,4],[-25,-1],[-21,9],[-22,23],[-16,13],[-14,-3],[-13,-7],[-13,1],[-13,12],[-11,20],[-13,32],[-7,8],[-30,17],[-20,23],[-25,11],[-19,20],[-25,19],[-23,17],[-10,11],[-6,19],[-3,21],[-7,24],[-5,22],[-13,14],[-16,50],[4,20],[9,25],[12,9],[26,27],[21,29],[14,12],[13,20],[11,20],[11,27],[16,26],[12,6],[19,-2],[11,4],[12,18],[8,27],[9,88],[-5,25],[4,21],[-1,28],[5,35],[-3,37],[-8,15],[-9,14],[-8,13],[-13,18],[-13,16],[-11,9],[-8,3],[-25,61],[-14,29],[-9,14],[2,27],[-4,35],[-3,26],[7,27],[10,10],[17,23],[8,18],[5,20],[-3,29],[0,30],[-3,38],[3,25],[4,20],[-6,28],[-10,24],[-9,23],[-8,16],[-4,31],[-6,39],[0,26],[-1,30],[0,31],[-3,24],[7,36],[13,15],[5,29],[11,25],[9,13],[12,12],[7,25],[11,38],[1,32],[-14,11],[-10,-2],[-5,25],[-3,28],[5,23],[16,24],[7,22],[-10,51],[-2,36],[-4,34],[-7,14],[-10,8],[-9,11],[4,21],[2,52],[-13,28],[-8,11],[-15,-6],[-10,-5],[-9,0],[-15,19],[-16,11],[-18,-5],[-12,-12],[-9,-1],[-12,14],[-10,7],[-26,-2],[-15,1],[-23,-29],[-12,3],[-15,1],[-9,5],[-20,3],[-12,0],[-12,4],[-11,4],[-10,8],[-2,25],[2,26],[-5,32],[-19,43],[-10,17],[-10,15],[-9,2],[-9,10],[-9,22],[-12,21],[-12,12],[-13,-18],[-8,-8],[-10,-2],[-20,-3],[-25,1],[-10,-6],[-16,-5],[-15,-8],[-14,-4],[-13,-4],[-11,3],[-10,4],[-16,-11],[-8,-6],[-13,-14],[-12,-18],[-10,-21],[-7,-24],[-9,-22],[-9,4],[-10,11],[-10,27],[0,24],[5,46],[-17,67],[16,104],[8,11],[6,14],[6,37],[-2,40],[-2,29],[-10,27],[-8,22],[-2,40],[-6,19],[-9,26],[-5,24],[-3,28],[4,43],[3,25],[-6,28],[-4,30],[-3,41],[-19,16],[-20,6],[-12,7],[-6,23],[-8,28],[-4,25],[-17,47],[-19,3],[-31,17],[-9,-1],[-24,-18],[-11,-8],[-13,-3],[-16,0],[-9,11],[-9,8],[-11,-1],[-13,2],[-15,-3],[-12,-5],[-9,10],[-6,15],[-16,32],[12,21],[14,7],[17,24],[9,20],[4,27],[3,29],[11,14],[2,23],[-2,22],[0,47],[-3,24],[-11,2],[-9,4],[-9,21],[3,35],[6,25],[-11,37],[-10,5],[-21,3],[-18,-2],[-8,7],[-11,14],[-18,17],[-14,-1],[-19,19],[12,50],[9,21],[21,30],[10,20],[20,59],[13,20],[7,17],[12,11],[8,9],[1,32],[-14,24],[-10,10],[-6,27],[-12,-5],[-14,-11],[-10,-2],[-7,24],[-11,19],[-15,19],[-14,9],[-12,1],[3,22],[-1,24],[8,21],[16,13],[9,23],[13,11],[10,6],[-1,24],[-8,13],[5,30],[8,13],[-2,29],[-4,20],[9,19],[5,23],[-7,22],[-1,37],[2,47],[4,22],[-5,28],[-7,30],[-9,27],[-9,10],[-9,7],[-12,12],[-11,26],[-10,27],[-6,26],[-3,22],[-12,6],[-13,4],[-10,13],[-9,-5],[-12,0],[-10,-4],[-10,-1],[-12,15],[-11,3],[-6,19],[-10,30],[-9,16],[-12,-4],[-15,-8],[-10,-14],[-10,11],[-17,25],[-11,13],[-8,23],[-7,27],[-14,17],[-12,8],[-10,12],[-12,14],[-12,8]],[[94227,48557],[0,-336],[-1,-39],[0,-31],[1,-374],[0,-218],[0,-17],[0,-242],[-1,-107],[0,-34],[-1,-163],[-2,-866],[0,-55],[1,-172],[0,-16],[0,-47],[0,-11],[1,-29],[0,-53],[-56,1],[-9,0],[-66,0],[-14,4],[-18,0],[-25,0],[-8,-1],[-17,0],[-33,-1],[-25,0],[-38,-1],[-24,0],[-32,-1],[-53,-1],[-15,0],[0,-1],[-118,-3],[-29,0],[-83,-1],[-48,-1],[-266,-2],[-121,-2],[-88,9],[-76,1],[-12,-3],[-109,2],[-15,0],[-19,0],[-22,0],[0,-27],[1,-196],[0,-177],[1,-109],[0,-79],[-1,-132],[0,-5],[-2,-80],[-1,-536],[0,-31],[3,-382],[0,-285],[0,-269],[1,-104],[0,-191],[0,-39],[1,-49],[0,-14],[2,-572],[0,-54],[0,-167],[0,-80],[0,-55],[164,-5],[0,-82],[0,-7],[1,-1119],[0,-46],[0,-38],[0,-71],[-1,-450],[0,-215],[0,-2],[1,-534],[-2,-68],[0,-113],[0,-31],[0,-45],[2,-48],[-3,-95],[0,-36],[1,-47],[0,-56],[-1,-296],[0,-320],[0,-83]],[[92953,38306],[-31,-1],[-9,0],[-90,-1],[-247,-1],[-60,0],[-9,0],[0,-36],[-1,-214],[-1,-50],[0,-26],[1,-445],[0,-75],[0,-70],[0,-2],[0,-97],[1,-382],[0,-487],[1,-483],[0,-70],[0,-18],[0,-102],[0,-89],[-1,-201],[-1,-95],[0,-27],[0,-173],[0,-58],[0,-74],[0,-823],[0,-537],[0,-106],[1,-136],[0,-312],[0,-27],[0,-106],[0,-5],[0,-51],[0,-129],[0,-128],[-1,-455],[0,-128],[2,-1314],[-41,1],[-73,0],[-134,0],[-6,0],[-102,1]],[[92152,30774],[-27,0],[-127,0],[-78,3],[-316,2],[-58,1],[-57,1],[-2,0],[-57,0],[-41,-2],[-96,1],[-114,1],[-1756,-29],[-15,69],[-764,-8],[-1002,-10],[-185,1],[-37,0],[-80,-1],[-29,-1],[-27,1],[-123,-1],[-3,0],[-29,0],[-11,-1],[-182,2],[-92,0],[-50,-3],[-52,-1],[-191,-1],[-33,-1],[-63,1],[-33,1],[-40,0],[-102,1],[-37,1],[-173,1],[-47,-1],[-12,0],[-67,0],[-191,0],[-288,3],[-18,0],[-22,0],[-49,-1],[-173,1],[-33,0],[-131,0],[-9,1],[-1,0],[-92,0],[-171,-1],[-60,0],[-95,0],[-229,1],[-201,0],[-77,1],[-136,0],[-62,1],[-234,3],[-106,0],[-27,0],[-29,0],[-79,-1],[-15,0],[-7,0],[-55,0],[-54,0],[-16,0],[-166,0],[-246,-1],[-241,0],[-37,0],[-168,0],[-29,0],[-20,0],[-298,0]],[[82079,30808],[0,232],[0,38],[0,229],[0,130],[1,158],[0,26],[0,127],[0,24],[0,213],[0,102],[0,74],[0,230],[1,78],[0,84],[0,5],[0,49],[0,62],[0,30],[0,298],[0,85],[0,44],[0,194],[1,73],[0,418],[0,29],[1,431],[0,244],[0,442],[0,27],[1,211],[-2,46],[-1,65],[0,30],[0,25],[2,369],[0,283],[0,176],[-1,468],[0,97],[1,56],[0,10],[-2,402],[0,3],[0,168],[0,318],[0,342],[1,62],[0,45],[0,152],[121,1],[89,2],[108,1],[1,173],[2,185],[5,702],[2,212],[0,22],[3,314],[2,263],[-29,1],[-1,58],[2,244],[0,61],[0,194],[0,275],[0,99],[0,160],[0,338],[0,146],[0,11],[0,24],[-1,45],[0,59],[1,14],[0,11],[-1,199],[0,132],[0,127],[0,29],[0,100],[0,477],[0,80],[-1,228],[0,58],[0,81],[0,42],[-1,597],[0,149],[0,180],[0,225],[-1,397],[0,410],[0,2],[0,151],[0,77],[0,106],[29,1],[139,0],[80,-2],[43,4],[0,87],[0,124],[0,6],[-1,136],[7,579],[-2,149],[-3,163],[3,328],[0,239],[0,90],[-1,309],[-1,152],[0,100],[0,58],[-2,305],[1,76],[0,20],[0,32],[0,75],[0,16],[2,22],[-1,556],[0,96],[-1,386],[-2,493],[-1,413],[-1,425],[1,303],[-2,212],[0,294],[-1,203],[1,125],[-1,492],[0,346],[0,2],[0,77],[157,-1],[131,0],[-1,235],[0,81]],[[82079,30808],[-218,-3],[-4,0],[-14,0],[-9,0],[-17,0],[-39,-1],[-10,-2],[-31,2],[-11,-1],[0,-304],[7,-131],[5,-103],[2,-27],[4,-91],[1,-91],[-1,-80],[0,-47],[-1,-308],[0,-22],[0,-34],[0,-64],[0,-2],[-3,-623],[-1,-101],[-1,-322],[-1,-131],[0,-114],[-2,-320],[-1,-218],[-1,-304],[0,-82],[-1,-296],[0,-106],[0,-204],[-1,-322],[0,-35],[0,-45],[0,-61],[0,-4],[0,-26],[0,-3],[0,-37],[0,-37],[0,-68],[0,-337],[-1,-120],[0,-28],[0,-295],[0,-104],[-1,-273],[0,-29],[0,-262],[0,-139],[0,-102],[0,-159],[-1,-605],[0,-283],[0,-52],[0,-68],[-2,-365],[-1,-296],[-1,-105],[-2,-431],[0,-87],[-2,-145],[-3,-194],[-1,-40],[-1,-121],[-53,0],[-72,0],[-41,0],[-58,0],[-126,0],[-11,0],[-1,0],[-1,-6],[-3,-27],[0,-82],[0,-504],[0,-24],[0,-55],[0,-114],[0,-100],[0,-200],[0,-221],[0,-238],[0,-524],[0,-76],[0,-22],[0,-212],[0,-101],[-1,-441],[0,-429],[0,-79],[0,-248]],[[81348,17697],[-124,0],[-74,0],[-122,0],[-135,0],[-53,0],[-9,0],[-145,0],[-14,0],[-39,0],[-84,0],[-26,0],[-34,0],[-62,-1],[-34,-1],[-36,0],[0,-22],[0,-34],[-68,1],[-10,0],[-37,0],[-91,0],[-93,1],[-61,0],[-10,0],[-31,0],[-12,0],[-10,0],[-36,1],[-8,0],[-38,0],[-10,0],[-11,0],[-12,0],[-12,0],[-23,0],[-218,1],[-9,0],[-49,0],[-181,1],[-1,-42],[-474,30],[-239,15],[-98,1],[-25,0],[-23,0],[-111,1],[-51,1],[-175,0],[-81,6],[-89,7],[-45,-1],[-206,-1],[-40,0],[-42,0],[-20,1],[-45,4],[-8,0],[-2,1],[-15,1],[-110,10],[-145,15],[-1,138],[0,331],[-1,254],[0,10],[-1,781],[0,193],[-1,408],[0,179],[0,19],[0,398],[-1,200],[0,414],[0,2],[0,22],[0,271],[0,110],[150,-2],[61,-8],[22,-3],[82,-10],[9,-2],[0,90],[0,51],[0,276],[0,75],[0,235],[0,116],[0,348],[0,8],[1,116],[0,484],[0,104],[0,534],[0,121],[0,10],[0,30],[0,71],[0,119],[1,25],[0,37],[0,344],[0,564],[0,36],[0,8],[0,39],[0,259],[0,85],[0,505],[-1,115],[0,198],[0,528],[0,35],[0,41],[0,22],[0,244],[0,105],[0,22],[0,140],[0,105],[0,10],[0,105],[-1,100],[0,94],[0,37],[0,329],[18,-2],[0,77],[-192,0],[-391,2],[-100,1],[-309,1],[0,158],[-241,1],[-117,0],[-88,0],[-61,1],[-46,0],[1,74],[0,116],[0,66],[0,272],[1,262],[0,629],[1,26],[0,185],[0,94],[1,151],[0,70],[1,297],[26,0],[76,1],[44,0],[150,1],[0,51],[0,150],[-3,734],[-58,0],[-14,0],[-10,0],[-1,0],[-32,0],[-110,0],[-289,0],[-1,154],[0,127],[0,546]],[[75857,32563],[0,105],[0,73],[0,27],[0,222],[0,429],[0,77],[0,52],[0,51],[0,131],[0,75],[0,178],[0,50],[0,6],[0,424],[0,27],[0,143],[0,111],[0,29],[0,331],[0,224],[0,33],[0,104],[0,568],[-1,135],[1,481],[0,269],[0,100],[1,51],[-1,74],[0,28],[1,323],[0,139],[0,18],[0,402],[0,252],[-57,2],[-19,1],[-13,0],[-11,0],[-73,0],[-321,-5],[-19,1],[-42,-1],[1,-53],[-16,-1],[0,115],[-1,108],[1,261],[0,67],[0,421],[0,252],[-1,71],[1,26],[0,114],[-1,199],[0,272],[0,97],[0,279],[0,40],[1,174],[0,94],[0,59],[0,79],[0,93],[0,35],[0,320],[0,44],[1,134],[0,6],[0,112],[0,43],[0,177],[1,46],[-49,24],[-5,2],[-12,0],[-15,1],[-38,-12],[-18,-12],[-1,-1],[-16,-10],[-23,9],[-1,143],[0,204],[0,317],[0,204],[-1,225],[0,132],[-1,119],[3,105],[0,190],[0,106],[1,144],[-135,1],[-240,1],[-81,1],[-81,0],[-150,1],[-45,0],[-45,0],[-33,-12],[-230,11],[0,260],[-1,341],[0,40],[0,42],[-1,64],[0,42],[0,54],[0,124],[0,122],[-1,357],[0,110],[-12,1],[-134,3],[-27,1],[-1,107],[-1,202],[-38,0],[-9,0],[-178,-2],[-203,-1],[-35,0],[-174,0],[-209,3],[-94,1],[-170,2],[-154,-2],[-9,0],[-10,-1],[-224,-2],[-3,0],[-117,0],[-46,1],[-18,1],[-70,1],[-47,0],[-127,-2],[-53,0],[-181,-1],[-28,0],[-39,-2],[-64,0],[-120,0],[-167,0],[-48,0],[-79,0],[-125,-1],[-39,0],[-196,-2],[-16,-1],[-9,0],[-72,0],[-17,-1],[-34,1],[-43,-1],[-131,-1],[-242,-2],[-117,0],[-29,0],[-35,-1],[-255,1],[-34,0],[-26,0],[-41,-1],[-33,-3],[-15,1],[-52,0],[-18,0],[-4,1],[-49,1],[-134,4],[-82,-4],[-11,0],[-34,0],[-36,0],[-12,-1],[-40,0]],[[69201,45736],[-42,0],[-59,5],[-39,1],[1,307],[-11,-1],[-113,2],[-33,1],[-44,-7],[-16,-1]],[[68845,46043],[-47,-2],[-29,1],[-10,-2],[-23,0],[-19,0],[1,38],[-2,52],[0,110],[0,96],[0,137],[-1,195],[0,76],[1,228],[-1,22],[0,259],[0,53],[1,109],[0,175],[7,442],[2,170],[-50,2],[-33,1],[-180,7],[-36,1],[-51,-1],[91,280],[0,1],[5,13],[21,66],[10,134],[1,16],[6,82],[13,46],[22,81],[19,70],[-20,140],[-15,97],[-3,21],[-5,33],[21,60],[32,93],[16,45],[10,32],[16,44],[22,60],[9,25],[20,56],[21,57],[12,60],[5,29],[17,89],[1,5],[20,101],[-16,55],[-17,54],[-21,72],[-23,79],[-10,33],[-27,7],[-45,12],[-40,10],[-21,105],[-13,66],[-11,58],[-3,83],[-4,130],[-3,68],[-1,35],[-1,32],[49,76],[51,79],[-4,39],[-3,32],[-2,28],[-4,37],[-11,27],[-62,152],[-31,76],[-9,148]],[[25087,41108],[0,-131],[0,-34],[-1,-199],[-2,-578],[-16,0],[-6,0],[-635,-2],[-17,0],[-3,0],[-62,4],[-286,3],[-186,-15],[-194,1],[-58,0],[-57,0],[-93,0],[-33,0],[-61,-2],[-9,0],[-20,-1],[-13,1],[-9,1],[-1,0],[-21,-1],[-26,0],[-247,4],[-8,-61],[0,-27],[0,-9],[0,-49],[0,-5],[0,-87],[0,-33],[0,-17],[0,-83],[0,-3],[0,-149],[1,-25],[0,-20],[-1,-490],[0,-8],[0,-29],[0,-123],[0,-342],[-2,-314],[38,0],[50,0],[0,-47],[1,-180],[0,-51],[0,-75],[0,-166],[0,-22],[-1,-1102],[-14,-25],[-15,-5],[-17,-15],[-7,-27],[6,-29],[-2,-25],[0,-25],[7,-25],[-2,-34],[2,-21],[8,-26],[4,-41],[-13,-20],[-11,-17],[-17,-21],[-9,-23],[-9,-53],[-4,-26],[-11,-14],[-11,-16],[-11,-2],[-8,-12],[-10,-32],[-12,-29],[-20,-32],[-18,-23],[-28,-23],[-19,-15],[-6,-18],[-2,-21],[-10,-17],[-16,1],[-12,-6],[-11,-15],[-16,-35],[-8,-40],[-14,-38],[-18,-30],[-35,-38],[-33,-19],[-24,-14],[-7,-19],[-14,-39],[-14,-76],[-19,-62],[-12,-23],[-9,4],[-13,13],[-11,16],[-15,20],[-17,15],[-14,-1],[-14,4],[-14,11],[-12,5],[-11,9],[-11,8],[-22,-20],[-17,-16],[-22,-20],[-20,-12],[-16,13],[-16,21],[-12,19],[-8,26],[-7,12],[-13,20],[-13,23],[-13,40],[-7,21],[-11,17],[-9,14],[-6,19],[-8,-3],[-41,-23],[-32,-31],[-20,-11],[-19,-3],[-11,-12],[-15,-8],[-11,-10],[0,-34],[5,-26],[8,-22],[7,-35],[2,-24],[-20,-44],[-13,-32],[-5,-29],[-1,-29],[-15,-23],[-17,-14],[-14,-4],[-17,0],[-17,4],[-9,3],[-10,4],[-12,-35],[-7,-41],[-5,-66],[-8,-67],[-19,-14],[-30,-16],[-19,2],[-19,-23],[-21,-30],[-21,-17],[-19,-1],[-20,17],[-9,-21],[-3,-26],[-12,-17],[-17,-24],[-16,-21],[-13,9],[-22,11],[-22,-6],[-10,7],[-11,10],[-14,-3],[-8,14],[-12,9],[-9,-2],[-14,23],[-7,-26],[-6,-54],[-21,-52],[-3,-49],[1,-35],[-11,-14],[-21,-21],[-11,-21],[-4,-64],[17,-45],[24,-28],[22,-37],[10,-27],[-11,-39],[-6,-40],[-16,-58],[-16,-15],[-20,-23],[-16,-11],[-16,-12],[-5,-16],[0,-23],[-9,-38],[1,-27],[-15,-40],[-13,-49],[-11,-46],[-15,-33],[-6,-19],[-17,21],[-24,31],[-13,14],[-11,30],[-22,24],[-11,-2],[-39,40],[-23,24],[-12,4],[-11,-9],[-15,7],[-8,-20],[-7,-17],[-9,-20],[-13,-22],[-9,-1],[-12,4],[-15,9],[-10,1],[-12,-37],[-14,-38],[-3,-39]],[[21085,34066],[-19,24],[-9,-3],[-11,9],[-7,11],[-8,9],[-8,16],[-11,45],[-20,2],[-28,0],[-33,-9],[-22,3],[-17,3],[-27,25],[-12,1],[-15,10],[-12,-3],[-15,-4],[-35,18],[-7,-16],[-18,-29],[-24,-30],[-24,-37],[-11,-4],[-26,-4],[-21,-8],[-18,-26],[-19,-24],[-25,-6],[-13,0],[-8,30],[5,32],[2,29],[-5,37],[-11,16],[-14,24],[-10,15],[-11,4],[-16,-9],[-19,-4],[-10,19],[-13,29],[-12,10],[-17,9],[-12,-1],[-19,5],[-9,-10],[-19,-16],[-21,-16],[-11,12],[-15,22],[-6,25],[-1,39],[-8,40],[-11,24],[-9,26],[-2,44],[-2,28],[2,25],[4,33],[-7,43],[1,47],[-7,17],[-7,46],[-8,8],[-9,1],[-13,-10],[-14,-5],[-16,1],[-30,4],[-9,-12],[-8,-12],[-8,-24],[-3,-24],[-8,-12],[-8,-3],[-12,-2],[-13,6],[-17,0],[-10,-4],[-15,-4],[-12,-13],[-8,-1],[-9,-11],[-9,-26],[-10,14],[-12,11],[-15,13],[-8,13],[-6,17],[-11,48],[-3,20],[-13,27],[-12,36],[-8,32],[-9,37],[-6,21],[-8,10],[-12,9],[-10,8],[-16,43],[-8,19],[-1,23],[-2,75],[1,33],[-7,21],[-6,27],[-4,20],[-10,34],[-22,45],[-1,42],[13,23],[7,33],[0,53],[-5,31],[-10,20],[-12,26],[-9,25],[-7,23],[-4,31],[5,22],[8,20],[1,44],[-10,25],[-14,30],[-15,20],[10,51],[13,37],[12,35],[7,30],[-5,19],[-20,-2],[-25,-15],[-12,1],[-14,10],[-23,1],[-26,8],[-14,23],[-14,12],[-10,27],[2,46],[9,30],[12,32],[3,46],[2,39],[-20,7],[-18,17],[-25,15],[-30,5],[-27,14],[-27,12],[-43,10],[-31,-8],[-32,7],[-28,-8],[-30,-6],[-12,2],[-13,3],[-26,-1],[-17,4],[-13,30],[-12,39],[-16,40],[-13,38],[-14,26],[-19,23],[-9,19],[-13,-8],[-9,-1],[-17,-4],[-14,-9],[-21,-22],[-11,-29],[-9,-50],[-2,-25],[4,-20],[-14,-57],[-11,-27],[-8,-53],[-7,-49],[1,-41],[-9,-14],[-15,-6],[-17,-6],[-16,-13],[-8,-10],[-12,-2],[-14,16],[-12,22],[-20,25],[-20,15],[-9,3],[-22,4],[-17,6],[-15,14],[-10,24],[-11,11],[-19,9],[-16,6],[-17,-4],[-13,-4],[-10,6],[-14,5],[-16,1],[-7,12],[-8,13],[-9,14],[-6,17],[2,24],[3,22],[5,21],[6,31],[2,26],[-1,26],[-6,35],[-5,23],[-4,19],[6,18],[11,12],[15,18],[14,20],[7,23],[13,26],[13,38],[11,40],[3,32],[0,45],[-6,45],[10,19],[10,20],[14,37],[9,14],[12,18],[3,32],[-6,37],[-10,46],[8,22],[16,31],[33,46],[13,28],[7,27],[21,26],[18,20],[12,37],[13,32],[-5,25],[0,34],[6,32],[8,30],[5,37],[4,31],[6,36],[0,26],[3,46],[6,32],[13,13],[8,9],[23,15],[21,5],[19,9],[12,18],[8,25],[5,25],[0,28],[2,38],[5,24],[0,35],[-8,17],[-13,15],[-13,50],[-5,25],[-13,31],[-20,36],[-9,12],[-11,22],[-4,21],[-7,45],[-5,27],[-6,23],[-4,23],[-5,26],[-7,17],[-8,22],[-8,18],[-11,13],[-10,6],[-17,0],[-9,5],[-8,12],[-3,26],[-5,24],[3,20],[3,22],[-5,21],[-10,11],[-9,20],[2,29],[1,27],[-5,17],[-14,-3],[-14,3],[-10,8],[-10,21],[-6,22],[-8,10],[-7,10],[-12,12],[-8,14],[-10,15],[-12,21],[-5,20],[-4,25],[2,21],[6,18],[4,23],[5,18],[4,22],[3,29],[5,26],[7,17],[6,25],[0,22],[-4,23],[-2,25],[1,26],[-4,27],[-8,20],[7,17],[9,33],[0,34],[-6,24],[-4,36],[10,5],[7,20],[5,25],[11,14],[6,20],[10,13],[6,21],[-6,15],[-12,-3],[-14,-6],[-7,15],[-6,22],[-10,4],[-13,7],[-10,16],[-7,17],[-11,1],[-9,7],[-11,16],[-8,11],[-5,26],[-3,24],[-3,25],[-4,22],[-9,9],[-9,-5],[-10,-2],[-8,11],[-5,20],[-10,-6],[-8,-20],[-6,-14],[-9,-13],[-16,-7],[-12,3],[-9,4],[-12,9],[-11,11],[-4,22],[-8,22],[-7,25],[2,27],[-4,28],[-3,20],[-6,29],[-2,34],[-8,14],[-8,11],[-4,20],[-1,25],[4,23],[4,31],[0,30],[-1,27],[5,20],[6,26],[6,31],[10,26],[7,20],[18,26],[12,10],[14,5],[12,13],[9,2],[8,6],[13,11],[16,10],[9,3],[14,7],[17,6],[13,-4],[8,10],[8,12],[7,20],[7,19],[11,6],[17,9],[13,8],[12,6],[13,6],[11,11],[8,9],[9,8],[13,12],[14,16],[15,16],[10,5],[15,8],[12,5],[8,14],[2,31],[-2,29],[-6,21],[-5,21],[-4,28],[-7,19],[-4,22],[1,28],[5,24],[8,20],[10,27],[0,27],[5,26],[5,24],[8,18],[12,2],[1,1],[9,1],[13,2],[10,2],[15,-1],[9,2],[9,9],[2,26],[2,23],[9,32],[4,43],[-1,47],[-2,48],[8,38],[14,20],[19,26],[20,66],[7,35],[12,48],[13,20],[9,36],[2,30],[-4,31],[-10,0],[-5,25],[-8,9],[-21,24],[-13,7],[-12,-2],[-14,2],[-27,26],[-32,22],[-21,29],[-14,12],[-15,6],[-25,41],[-17,11],[-7,15],[-12,19],[-14,9],[-19,16],[-7,43],[-3,42],[5,33],[5,23],[3,36],[-5,41],[-4,26],[6,25],[8,29],[12,37],[5,31],[-10,27],[2,28],[8,24],[11,23],[14,31],[19,34],[5,53],[10,24],[0,35],[5,41],[11,71],[7,23],[-18,17],[-23,27],[-11,23],[-1,42],[-5,36],[-22,26],[-16,68],[-2,42],[-9,55],[-7,32],[4,63],[0,51],[-10,53],[2,51],[-2,63],[7,48],[10,35],[10,33],[6,56],[-7,59],[-1,44],[-9,15],[-21,33],[2,30],[7,40],[-15,26],[-22,27],[-38,11],[-20,24],[-5,23],[0,38],[-2,53],[-6,38],[-10,25],[0,34],[-3,25],[-12,33],[-34,23],[-18,10],[-4,20],[-6,30],[-4,47],[-6,45],[-6,27],[-16,18],[-22,11],[-9,26],[0,29],[-8,25],[-14,20],[-15,22],[-2,36],[6,33],[4,30],[-11,10],[-23,28],[-15,17],[-24,-6],[-25,-12],[-17,14],[-10,30],[-5,47],[-4,28],[-8,-4],[-23,11],[-23,24],[-26,16],[-34,12],[-24,12],[-10,15],[-27,14],[-11,49],[-1,32],[5,50],[8,54],[15,85],[-6,41],[-2,28],[39,86],[19,36],[-2,29],[-5,56],[6,24],[2,51],[-9,37],[-7,35],[0,23],[-7,45],[-9,31],[-15,36],[-8,41],[-1,42],[-1,54],[-8,45],[-1,39],[0,45],[-14,45],[-8,17],[-22,18],[-13,13],[-3,20],[3,34],[4,45],[4,32],[-13,3],[-12,10],[-8,28],[-6,51],[1,38],[7,58],[2,70],[-8,19],[-14,7],[-17,18],[-26,30],[-20,14],[-15,20],[-3,63],[-1,26],[0,24],[6,22],[12,36],[3,43],[3,27],[8,12],[8,8],[17,2],[10,13],[22,21],[8,18],[9,15],[12,10],[14,5],[15,0],[8,-6],[19,6],[21,7],[21,3],[11,0],[22,27],[-5,24],[-1,40],[4,20],[11,15],[8,9],[2,22],[0,37],[2,36],[3,30],[-7,36],[-12,26],[-1,28],[15,78],[7,23],[5,38],[-6,29],[-5,26],[2,57],[5,24],[4,27],[0,45],[4,25],[9,23],[10,28],[9,7],[8,13],[-2,22],[0,27],[0,25],[5,34],[7,19],[9,19],[11,14],[1,24],[-2,34],[4,36],[7,36],[7,26],[8,18],[11,14],[21,37],[11,46],[2,35],[-5,30],[-11,40],[-8,30],[-11,23],[-10,20],[-9,17],[-8,28],[-4,22],[2,36],[10,8],[20,4],[15,6],[19,11],[13,21],[7,25],[12,29],[19,18],[11,4],[15,-7],[20,-10],[16,-5],[14,-10],[11,4],[6,17],[-3,32],[0,25],[6,24],[12,42],[-3,30],[-2,24],[2,22],[6,33],[5,18],[1,27],[-7,23],[-6,20],[-3,32],[-3,26],[-2,31],[-2,23],[-7,28],[-9,26],[-7,16],[-16,39],[-4,24],[10,19],[9,18],[9,20],[8,9],[12,7],[13,-4],[13,-2],[14,7],[9,40],[8,36],[-2,23],[1,34],[-1,36],[1,22],[0,32],[-8,30],[-10,11],[-9,11],[-12,23],[-9,11],[-14,11],[-13,17],[-12,15],[-13,22],[-9,25],[-6,24],[-3,43],[6,33],[-3,32],[-6,17],[-9,13],[-11,13],[-9,13],[-5,17],[2,35],[-2,30],[-5,28],[1,37],[-1,34],[-10,30],[-7,24],[-5,26],[-3,26],[-9,23],[-7,13]],[[41525,39516],[-93,1],[-15,0],[-34,0],[-19,1],[-228,3],[-138,2],[-48,0],[-49,0],[-105,0],[-82,1],[-1,-114],[-22,0],[-26,0],[-81,0],[-26,0],[-26,0],[-99,0],[-55,0],[-18,0],[-33,0],[-11,-1],[-8,-1],[-35,0],[-99,0],[-8,0],[-26,-1],[-110,0],[-15,0],[-57,1],[-45,0],[-70,0],[-81,-2],[-65,-1],[-14,0],[-111,2],[-70,0],[-222,3],[-119,2],[0,-142],[-1,-99],[0,-55],[0,-47],[-1,-442],[-3,-307],[-21,-1],[1,-126],[1,-143],[-25,-27],[-12,-12],[-17,-18],[-15,-15],[-25,-25],[-16,-17],[-37,-37],[-20,-21],[-17,-16],[4,-51],[0,-22],[-10,2],[-12,20],[-13,-6],[-12,-16],[-10,-24],[-6,-32],[-2,-40],[-3,-42],[-3,-22],[-6,-19],[-6,-18],[-23,-25],[-10,1],[-12,15],[-12,21],[-12,18],[-8,14],[-9,8],[-7,10],[-12,7],[-10,-10],[-2,-2],[-2,-2],[-15,-19],[-11,2],[6,-27],[10,-35],[3,-32],[3,-24],[5,-21],[11,-38],[4,-22],[7,-32],[7,-39],[-2,-29],[-13,-33],[-20,-26],[-9,-9],[-10,-9],[-8,-8],[-37,-25],[-10,-13],[-12,-16],[-7,-23],[-6,-22],[-15,-54],[-6,-23],[-5,-20],[-5,-20],[-9,-16],[-14,-39],[-7,-31],[-4,-23],[-14,-47],[-8,-30],[-1,-4],[-9,-32],[-17,-52],[-7,-19],[-4,-11],[-11,-33],[-3,-24],[1,-29],[2,-26],[5,-23],[1,-24],[2,-27],[-1,-33],[-2,-25],[0,-23],[0,-30],[0,-26],[0,-30],[-3,-43],[-3,-30],[-5,-46],[5,-46],[8,-37],[-2,-41],[0,-27],[4,-33],[5,-22],[2,-21],[-5,-47],[-7,-40],[-8,-33],[-12,-30],[-9,-24],[-12,-35],[-5,-16],[-3,-26],[18,-35],[18,-16],[7,-22],[13,-6],[5,-18],[11,-28],[1,-32],[14,-43],[4,-16],[1,-7],[13,-49],[5,-22],[4,-40],[0,-28],[-4,-26],[-4,-14],[-5,-15],[-2,-13],[-7,-31],[-8,-18],[-6,-13],[-11,-19],[-12,-14],[-17,-20],[-8,-5],[-15,-15],[-15,-8],[-10,0],[-10,3],[-9,-4],[-12,-2],[-16,-4],[-26,-24],[-10,-11],[-9,-1],[-14,6],[-10,17],[-8,16],[-6,12],[-16,45],[-8,17],[-8,14],[-16,17],[-16,14],[-21,11],[-8,-2],[-11,-9],[-9,-17],[-6,-19],[-5,-19],[-9,-53],[-5,-26],[-4,-21],[-6,-33],[-1,-23],[-2,-20],[-2,-11],[-6,-30],[-5,-38],[3,-48],[2,-32],[3,-32],[4,-56],[2,-29],[3,-23],[1,-25],[-2,-24],[0,-29],[0,-28],[1,-32],[0,-24],[-6,-54],[-7,-62],[-2,-16],[-4,-30],[-11,-53],[-8,-27],[-5,-17],[-7,-20],[-14,-34],[-8,-11],[-15,-18],[-18,-12],[-9,-9],[-8,-9],[-7,-13],[-8,-15],[-9,-15],[-16,-43],[-22,-42],[-24,-37],[-8,-10],[-14,-16],[-15,-20],[-8,-30],[-6,-21],[-6,-19],[-3,-28],[-11,-15],[-8,-8],[-9,-9],[-13,-2],[-14,7],[-11,-7],[-10,-5],[-10,-16],[-10,-20],[1,-37],[10,-24],[3,-34],[-8,-10],[-9,-1],[-10,13],[-10,11],[-8,14],[-3,22],[-10,1],[-7,-20],[-9,-14],[-14,12],[-7,17],[1,23],[6,17],[-1,33],[-13,2],[-10,-11],[-7,-22],[-1,-29],[7,-20],[2,-27],[-8,-7],[-12,2],[-15,-12],[-8,-12],[-5,-19],[-12,-1],[-12,3],[-12,0],[-9,-2],[-10,5],[-9,1],[-10,-4],[-6,-24],[4,-27],[6,-18],[7,-25],[-2,-26],[-2,-25],[-10,-22],[-14,-17],[-14,2],[-7,25],[-3,35],[-8,13],[-9,1],[-10,3],[-8,-14],[-5,-24],[0,-25],[5,-20],[3,-21],[1,-37],[-5,-18],[-10,-13],[0,-23],[-11,-12],[-9,-5],[-2,-1],[-5,-5],[-4,-3],[-3,-3],[-10,-8],[-10,-25],[13,-17],[7,-21],[-12,0],[-6,-16],[-8,-11],[-10,-7],[-16,-6],[-9,2],[-12,8],[-10,3],[-7,10],[-9,5],[-10,-11],[-13,-22],[-5,-18],[-1,-27],[9,-8],[11,-4],[6,-21],[-5,-19],[-10,-8],[-8,-13],[-10,-16],[-8,-2],[-9,1],[-8,-7],[-12,-1],[-9,5],[-10,17],[-5,23],[-4,23],[6,25],[-6,16],[-9,5],[-8,0],[-10,-10],[-7,-19],[-5,-32],[-5,-23],[-6,-29],[-8,-10],[-9,-16],[-5,-19],[-3,-23],[-9,-21],[-9,-10],[-7,-17],[-14,-12],[-9,7],[-8,15],[-5,31],[1,30],[-5,23],[-2,21],[-9,11],[-12,6],[-8,6],[-5,-2],[-6,-3],[-10,-15],[-6,-15],[-5,-8],[-4,-7],[-9,-6],[-7,-15],[-7,-26],[-9,-18],[-3,-8],[-5,-9],[-10,-17],[-8,-15],[-10,-8],[-10,-18],[-6,-11],[-4,-5],[-7,-13],[-4,-40],[-1,-3],[-4,-31],[1,-23],[-5,-26],[-7,-54],[-2,-21],[-1,-33],[-1,-22],[-7,-35],[-6,-18],[-8,-11],[-9,-10],[-9,-11],[-2,-3],[-7,-7],[-13,-16],[-8,-10],[-8,-12],[-9,-22],[-9,-19],[4,-21],[-2,-25],[-7,-16],[-9,-11],[-4,-21],[0,-17],[0,-14],[-4,-21],[-10,-19],[-10,8],[-5,27],[-12,11],[-9,1],[-6,-2],[-7,-3],[-10,-3],[-17,-7],[-7,-19],[0,-5],[1,-25],[-1,-25],[-4,-37],[-6,-21],[-14,-36],[-4,-22],[1,-22],[7,-15],[7,-13],[6,-20],[2,-28],[-4,-21],[-8,-10],[-11,1],[-10,8],[-9,12],[-14,21],[-11,27],[-10,11],[-15,5],[-4,-2],[-4,-2],[-11,-13],[-5,-26],[2,-26],[8,-11],[14,-17],[5,-18],[3,-26],[-5,-19],[-8,-9],[-11,3],[-10,3],[-15,2],[-11,3],[-7,-16],[0,-23],[3,-27],[4,-31],[0,-25],[-4,-45],[-4,-26],[-9,-19],[-11,-5],[-8,-5],[-8,-7]],[[36550,31775],[0,87],[0,83],[1,148],[0,37],[0,42],[0,36],[1,90],[-1,98],[0,11],[0,32],[-2,208],[-3,20],[0,62],[1,506],[1,289],[0,64],[0,51],[0,88],[1,177],[0,22],[0,76],[0,36],[0,191],[0,271],[1,285],[0,124],[0,131],[0,155],[0,118],[-1,46],[-1,122],[-1,154],[-1,158],[0,77],[0,115],[0,124],[2,139],[-1,34],[0,30],[0,114],[-216,2],[-3,0],[-193,2],[-48,1],[-191,1],[-14,0],[-33,0],[-55,3],[-119,5],[-160,-2],[-1,76],[0,1],[2,552],[-1,77],[0,82],[1,158],[-2,629],[5,39],[1,241],[-16,1],[0,326],[5,305],[-4,213],[-2,395],[1,214],[1,698],[0,28],[-1,33],[0,22],[-3,216],[1,98],[1,186],[-1,40],[0,54],[-1,41],[0,136],[-1,176],[0,172],[0,27],[2,212],[-2,227],[0,24],[0,86],[0,81],[0,137],[0,162],[0,103],[-1,207],[1,37],[-1,486],[0,139],[1,502],[0,412],[0,1],[0,40],[0,67],[1,1010],[0,163],[0,55],[-14,-1],[-1,305],[0,215],[-1,208],[0,180],[0,28],[1,74],[0,30],[0,238],[0,314],[0,51],[0,39],[0,110]],[[68845,46043],[0,-125],[-3,-669],[0,-55],[0,-125],[0,-28],[-2,-460],[-1,-83],[-1,-316],[0,-269],[0,-38],[-152,-6],[-8,2],[-15,-1],[-115,2],[-60,-1],[-71,1],[-2,0],[-51,0],[-208,3],[-97,-2],[-75,2],[-17,0],[-21,4],[-37,3],[-35,1],[-82,-1],[-173,-7],[1,-312],[-154,-5],[-19,-2],[0,-48],[1,-30],[0,-41],[-1,-135],[-1,-47],[-105,-14],[-65,0],[0,-312],[-101,0],[-73,0],[-2,-238],[0,-76],[-76,1],[-6,0],[-90,-4],[1,-263],[1,-218],[0,-33],[1,-108],[-150,-1],[-1,-438],[0,-60],[0,-1],[-1,-163],[0,-204],[-1,-80],[-144,2],[-65,0],[-81,-1],[-26,-1],[-231,-1],[-253,-7],[-13,0],[-63,2],[-45,2],[-93,-8],[-63,4],[-62,-6],[-42,-5],[-1,0],[-12,-2],[-148,1],[-51,3],[-56,2],[-9,0],[-83,4],[-11,0],[-61,1],[-99,0],[-26,1],[-68,9],[-35,0],[-14,0],[-40,2],[-57,2],[-129,3],[-146,0],[-46,1],[-151,-3],[-1,-53],[-1,-13],[0,-16],[2,-221],[-302,0],[-47,0],[-1,-298],[-105,0],[-17,0],[-3,0],[-97,0],[-127,0],[0,-182],[0,-132],[0,-219],[-1,-177],[0,-501],[-2,-1017],[-31,0],[-231,1],[-94,-1],[-88,5],[-162,-3],[-73,-1],[-62,0],[-56,-1],[-60,4],[-59,0],[-53,-1],[-160,-1],[-86,0],[-21,0],[-158,1],[-154,-1],[-16,0],[-124,-1],[-52,0],[-98,4],[-210,-2],[-115,-2],[-91,0],[-336,-4],[-11,1],[-171,-1],[-106,1],[-70,0],[-68,0],[-105,-1]],[[60531,38216],[3,313],[0,314],[2,96],[3,185],[-3,289],[1,212],[0,140],[1,127],[1,191],[0,316],[2,346],[-6,267],[2,33],[-2,79],[2,197],[-56,1],[-63,0],[-16,0],[-9,0],[-29,1],[1,67],[1,39],[1,77],[0,67],[4,312],[0,47],[-52,2],[-12,3],[-9,1],[-30,4],[-56,3],[-3,0],[-15,-1],[1,115],[4,195],[-18,19],[-72,4],[0,56],[1,249],[0,161],[0,102],[1,31],[0,35],[-86,-3],[0,32],[-2,279],[-83,2],[-26,0],[-12,0],[-49,-2],[1,75],[0,103],[-4,40],[-1,87],[-1,32],[1,40],[0,34],[1,108],[0,31],[0,2],[4,156],[0,62],[0,59],[1,60],[-1,43],[1,45],[0,83],[0,65],[2,49],[0,47],[0,7],[0,85],[-1,100],[1,107],[1,123],[0,228],[-88,2],[-37,-3],[-51,-2],[3,318],[3,112],[8,335],[1,55],[-14,0],[-13,-1],[-82,-1],[-57,-1],[-45,0],[5,225],[-2,112],[1,25],[3,40],[-1,37],[-2,26],[1,32],[0,113],[-1,241],[1,98],[2,169],[1,142],[1,90],[0,185],[1,44],[-3,130],[-2,182],[-9,2],[-44,2],[-77,9],[-47,5],[-20,1],[-129,1],[-24,1],[-64,-1],[-77,-2],[-28,2],[-109,6],[-59,3],[-11,-2],[3,74],[7,163],[6,129],[1,36],[-1,54],[4,181],[1,59],[5,255],[0,26],[-30,-19],[-20,-6],[-77,-18],[-32,0],[-10,0],[-19,-2],[-9,2],[-3,65],[0,313],[0,103],[1,56],[0,55],[0,132],[0,353],[0,145],[0,368],[0,89],[-1,255],[0,27],[-1,304],[0,110],[0,41],[0,26],[0,37],[0,141],[-1,151]],[[60531,38216],[-76,0],[-94,-2],[-224,2],[-149,-3],[-27,0],[-1,0],[-109,0],[-14,-4],[-104,-4],[-33,1],[-74,0],[-22,0],[-40,0],[-234,3]],[[59330,38209],[-185,1],[-195,1],[-153,-4],[-84,-2],[-21,0],[-42,-1],[-51,-1],[-20,0],[-35,1],[-52,0],[-68,0],[-22,-1],[-18,0],[-20,0],[-75,2],[-17,-1],[-78,0],[-73,1],[-45,0],[-16,0],[-34,0],[-12,0],[-4,0],[-9,0],[-37,0],[-30,-1],[-57,0],[-72,0],[-90,-1],[-64,0],[-73,-2],[-213,3],[-82,1],[-31,0],[-11,-1],[-85,0],[-24,1],[-21,0],[-27,-2],[-9,0],[-32,-1],[-52,0],[-21,0],[-68,0],[-32,1],[-260,2],[-56,1],[-14,-1],[-105,-4],[-51,2],[-73,-1],[-42,-1],[-29,1],[-201,6],[-74,-1],[-21,-1],[-212,-1],[-14,0],[-26,0],[-42,2],[-80,2],[-88,-1],[-68,1],[-55,0],[-120,1],[1,-158],[-3,-247],[-1,-27],[-1,-102],[0,-10],[0,-12],[-1,-104],[-4,-482],[-1,-130],[-3,-293],[-3,-326]],[[55223,36319],[-167,3],[-73,1],[-314,4],[-2,0],[-36,0],[-103,-1],[-138,0],[-416,4],[-199,6],[-101,3],[-13,-1],[0,260],[0,1],[2,355],[0,193],[2,905],[-1,157],[-63,-2],[-35,-2],[-78,-3],[-160,5],[-7,0],[-69,2],[-1,183],[0,55],[0,97],[1,150],[1,135],[-1,370],[0,35],[-1,336],[0,111],[0,7],[0,24],[0,69],[-1,305]],[[53250,40086],[82,1],[99,2],[8,0],[15,0],[18,0],[16,3],[140,2],[12,0],[134,1],[14,1],[65,-1],[46,-1],[48,0],[258,1],[56,0],[60,1],[65,0],[33,0],[110,1],[9,0],[23,-2],[8,0],[5,0],[68,-3],[87,0],[91,1],[62,-1],[20,0],[18,0],[71,-1],[25,0],[26,0],[39,0],[87,0],[92,0],[84,-2],[0,174],[0,109],[0,26],[-1,284],[0,63],[0,144],[0,3],[1,220],[0,47],[0,183],[0,24],[0,29],[0,118],[0,27],[0,54],[0,479],[0,22],[0,42],[0,5],[0,17],[0,26],[0,33],[0,122],[1,45],[0,51],[0,172],[0,55],[0,34],[1,90],[0,63],[0,48],[1,150],[0,46],[1,319],[0,24],[0,508],[0,81],[0,396],[0,47],[0,9],[0,33],[0,24],[0,15],[0,54],[-1,682],[0,157],[0,355],[0,7],[0,69],[0,53],[19,0],[37,0],[3,1],[61,13],[2,190],[0,1],[-1,34],[-1,39],[-3,357],[-2,513],[0,1],[0,62],[-2,289],[0,376],[-1,621],[0,161],[0,236],[0,115],[-1,119],[1,32],[0,147],[0,197],[0,154],[-1,610],[0,106]],[[53250,40086],[-367,-3],[-67,1],[-25,0],[-14,0],[-62,1],[-107,-3],[-35,-1],[-1,0],[-125,-2],[-168,-3],[-22,-1],[-25,-2],[-22,0],[-24,0],[-8,1],[-220,4],[-29,0],[-68,1],[-30,1],[-194,3],[-9,0],[-12,0],[-14,1],[-13,0],[-1,0],[-12,0],[-9,0],[-11,0],[-72,1],[-22,0],[-13,-1],[-26,1],[-17,0],[-13,-1],[-27,0],[-12,1],[-10,0],[-8,1],[-22,1],[-18,0],[-11,0],[-56,2],[-114,2],[-37,1],[-33,0],[-6,0],[-673,7],[-66,1],[-35,1],[-13,0],[-260,3],[-61,0],[-230,2],[-42,-1],[-93,0],[-40,4],[-11,-2],[-60,0],[-43,0],[-20,1],[-67,-1],[-48,1],[-57,0],[-24,0],[-93,0],[-67,-2],[-1,0],[-141,4],[-36,0],[-40,-1],[-283,-2],[-251,3],[-259,1]],[[99952,49176],[-1,-68],[1,-190],[0,-70],[0,-1],[0,-30],[0,-194],[0,-67],[0,-55],[0,-436],[0,-133],[1,-31],[0,-76],[-1,-156],[0,-105],[1,-161],[0,-391],[0,-48],[0,-149],[0,-130],[0,-343],[0,-81],[-1,-130],[0,-315],[0,-7],[-1,-163],[0,-131],[0,-129],[0,-54],[0,-46],[0,-163],[-1,-260],[0,-41],[0,-6],[0,-248],[0,-132],[-1,-160],[0,-22],[-4,-592],[0,-32],[1,-88],[2,-104],[0,-26],[1,-95],[1,-54],[-1,-78],[0,-248],[0,-99],[0,-11],[1,-102],[-1,-176],[0,-62],[0,-29],[0,-27],[0,-61],[1,-26],[0,-22],[0,-54],[-1,-235],[0,-10],[0,-113],[0,-89],[0,-81],[0,-135],[0,-209],[0,-64],[-1,-93],[0,-43],[-1,-23],[1,-22],[1,-41],[1,-305],[0,-17],[0,-42],[0,-45],[1,-117],[0,-337],[0,-10],[0,-21],[0,-42],[0,-97],[0,-68],[0,-94],[0,-119],[0,-356],[0,-389],[1,-370],[0,-462],[0,-26],[0,-2],[0,-138],[-5,-22],[0,-70],[0,-51],[0,-65],[0,-71],[-1,-106],[0,-90],[0,-51],[0,-61],[-1,-214],[-1,-235],[0,-2],[0,-25],[0,-109],[-1,-239],[0,-112],[-1,-196],[-1,-232],[0,-130],[0,-66],[0,-22],[-1,-91],[0,-49],[-1,-381],[1,-30],[2,-175],[0,-57],[3,-238],[-1,-55],[3,-288],[2,-218],[1,-119],[2,-245],[0,-25],[2,-164],[0,-56],[1,-96],[0,-31],[1,-95],[0,-2],[1,-114],[0,-2],[2,-179],[3,-356]],[[99962,32818],[-67,1],[-91,1],[-41,-1],[-125,0],[-354,0],[-68,1],[-9,0],[-1,131],[0,376],[0,40],[0,184],[1,717],[0,331],[0,29],[0,64],[-92,-1],[-33,-2],[-49,0],[-78,1],[-199,0],[-15,0],[-110,1],[-213,-21],[-95,0],[-38,0],[-27,0],[-15,0],[-443,-2],[-209,8],[0,65],[-131,1],[-258,-12],[-39,-2],[-89,-7],[1,270],[1,370],[3,228],[0,24],[-2,376],[0,160],[0,111],[1,241],[1,42],[-84,-1],[-31,0],[-163,-1],[-234,2],[-15,0],[-114,-3],[-21,-6],[-9,1],[-15,7],[-9,-1],[-11,-1],[-72,2],[-140,-2],[-131,-3],[0,52],[-1,437],[0,278],[-1,177],[-1,364],[1,20],[6,188],[0,49],[0,55],[-1,141],[-10,-1],[-311,-3],[-29,0],[-46,3],[-79,-2],[-22,0],[-10,-1],[-13,0],[-2,0],[-55,-1],[-34,0],[-38,1],[-30,-1],[-33,0],[-201,-3],[-14,0],[-334,1],[-12,0],[-9,0],[-18,0],[-2,0],[-11,0],[-38,-1],[-177,0],[-17,1],[-10,1],[-82,1],[-99,1],[-134,-1],[-83,5],[-205,2],[-137,-3],[-10,1],[-84,4],[-42,0],[-70,0],[-113,0],[-43,3],[-32,-4],[-28,-3],[-10,0],[-18,0],[-20,-1],[-20,0],[-18,2],[-43,8],[-148,-6],[-20,1],[-66,4]],[[21085,34066],[9,-27]],[[21094,34039],[8,-51],[-11,-35],[-18,-32],[-7,-24],[-16,-16],[-11,-19],[-8,-25],[-6,-29],[-5,-22],[-12,-19],[-9,-26],[-5,-21],[-1,-46],[-2,-34],[-8,-18],[-11,-21],[-8,-36],[-5,-28],[-7,-18],[-11,-17],[-2,-46],[0,-61],[-1,-57],[-7,-41],[-10,-61],[0,-55],[0,-22],[3,-21],[3,-29],[-1,-31],[10,-12],[21,-15],[6,-56],[-3,-65],[-5,-46],[7,-37],[19,-26],[11,-20],[-7,-12],[-12,-15],[-9,-20],[-9,-19],[-19,-4],[-24,-12],[-15,-11],[-10,5],[-17,-8],[-19,-6],[-15,-9],[-12,-10],[-10,-6],[-21,2],[-21,9],[-24,8],[-13,1],[-9,-10],[-11,-17],[-8,-17],[-13,-19],[-8,-13],[-12,-13],[-11,-3],[-10,14],[-10,11],[-10,-2],[-11,-27],[-9,4],[-14,7],[-17,14],[-9,4],[-7,-13],[-17,-31],[-13,-30],[-10,-24],[-10,-23],[-8,-12],[-5,-26],[-10,-26],[-9,-5],[-12,-23],[-3,-27],[-4,-24],[2,-27],[-7,-30],[-9,-12],[-7,-27],[-2,-28],[2,-31],[6,-14],[12,-34],[2,-25],[-15,8],[-10,3],[-19,-3],[-11,-12],[-9,0],[-9,8],[-12,13],[-10,9],[-15,1],[-15,-7],[-13,-3],[-10,-7],[-15,-12],[-12,-31],[-17,-26],[-6,-16],[-10,-22],[-16,-30],[-9,-24],[-7,-16],[-11,-24],[-8,-8],[-10,-4],[-13,-8],[-11,-9],[-14,14],[-13,9],[-10,4],[-12,-4],[-10,-8],[-11,-6],[-11,0],[-11,6],[-9,-2],[-10,-4],[-12,-6],[-13,-12],[-15,-20],[-10,-5],[-8,3],[-9,6],[-20,20],[-12,8],[-13,6],[-9,-1],[-9,-17],[-6,-21],[-7,-17],[-11,-13],[-18,-20],[-21,-5],[-13,-5],[-10,-11],[-12,5],[-6,15],[-9,11],[-4,26],[-9,31],[-10,16],[-9,7],[-11,7],[-14,-12],[-11,-12],[-17,-7],[-11,-2],[-13,-12],[-14,-2],[-12,1],[-11,7],[-18,23],[-11,5],[-16,18],[-7,12],[-8,20],[-26,20],[-26,-3],[-10,-13],[-6,-28],[-5,-21],[-6,-19],[-11,-24],[-16,-8],[-15,7],[-17,0],[-10,-2],[-4,-25],[-1,-30],[-4,-35],[-6,-24],[-5,-32],[-7,-22],[-15,-13],[-9,-6],[-13,-12],[-16,4],[-13,-2],[-22,-48],[-14,-12],[-10,-14],[1,-34],[-1,-36],[-3,-30],[-1,-23],[-4,-25],[-15,-11],[-9,5],[-6,-29],[-8,-17],[-11,-7],[-22,3],[-9,-16],[-13,-6],[-13,0],[-12,-6],[-1,-22],[-5,-26],[-10,-33],[-9,-13],[-11,-31],[-7,-30],[-8,-14],[-22,-19],[-11,-11],[-8,-16],[-11,-32],[-5,-21],[-4,-23],[-5,-17],[-15,0],[-13,4],[-12,11],[-9,13],[-8,8],[-9,-3],[-10,-10],[-8,-8],[-7,-13],[-11,-22],[-7,-17],[-10,-38],[-13,-8],[-8,-6],[-9,-13],[-9,-24],[-4,-23],[-4,-21],[-8,-28],[-14,0],[-14,3],[-6,-35],[3,-22],[7,-41],[5,-26],[4,-25],[-19,4],[-14,10],[-9,-3],[-13,-24],[-8,-27],[0,-25],[4,-25],[5,-30],[-7,-29],[-12,-11],[-18,-23],[-9,-18],[-4,-22],[-18,-19],[-11,-3],[-17,-9],[-13,-9],[-6,-21],[-5,-28],[1,-36],[-3,-23],[-11,-27],[-5,-17],[-3,-26],[1,-23],[-8,-16],[-16,-14],[-12,-16],[-11,-13],[-6,-13],[-3,-39],[-6,-17],[-12,-18],[-14,-18],[-14,-16],[-10,-1],[-18,9],[-11,-10],[-15,-16],[-9,1],[-10,0],[-9,-8],[-8,-14],[-11,-29],[-7,-17],[-11,-5],[-14,0],[-11,0],[-11,3],[-10,5],[-15,19],[-10,1],[-9,-6],[-10,-4],[-9,-2],[-11,1],[-16,8],[-13,3],[-8,5],[-9,12],[4,35],[5,33],[1,28],[-13,35],[-4,34],[-4,28],[-5,26],[-4,20],[-9,26],[-4,24],[-2,29],[-5,31],[-2,21],[-2,23],[-2,46],[-9,32],[-7,18],[-10,7],[-14,14],[-6,20],[-9,19],[-7,18],[-10,6],[-11,1],[-15,16],[-17,25],[-10,5],[-8,-27],[-9,-31],[-7,-19],[-11,-19],[-15,-28],[-9,-11],[-8,-7],[-10,-6],[-11,-3],[-8,1],[-9,-6],[-13,-10],[-12,-19],[-14,-23],[-9,-20],[-11,-11],[-14,-3],[-12,2],[-20,-4],[-11,-1],[5,-32],[-3,-23],[-13,-54],[-6,-31],[-11,-20],[-8,-21],[-17,-44],[-7,-20],[-3,-32],[-9,-18],[-8,-24],[-8,-20],[-11,-16],[-11,-18],[-13,-19],[-5,-26],[-5,-29],[-4,-22],[-7,-23],[-12,-5],[-7,-26],[6,-19],[10,-17],[15,-20],[11,-10],[13,-35],[3,-35],[6,-34],[5,-29],[9,-27],[-5,-22],[4,-25],[12,-19],[8,-26],[-17,-19],[-8,-12],[-7,-21],[-4,-21],[-4,-29],[9,-14],[10,-8],[8,-7],[13,-39],[8,-25],[-10,-30],[-6,-31],[-10,-29],[-6,-16],[-12,-23],[-7,-17],[-10,-39],[-3,-49],[5,-20],[15,2],[10,-2],[8,-25],[4,-26],[0,-44],[-1,-26],[-11,-35],[-7,-34],[-17,-45],[-12,-9],[-11,7],[-15,29],[-13,18],[-11,7],[-11,8],[-8,12],[-7,18],[-8,11],[-18,-18],[-11,-23],[-9,-21],[-8,-12],[-9,-10],[-13,-9],[-20,-9],[-15,-17],[-16,-15],[-14,-45]],[[17584,28808],[-18,-6],[-57,-38],[-10,-6],[-20,-14],[-23,-39],[-25,-16],[-26,2],[-28,-11],[-23,3],[-9,11],[-19,16],[-9,32],[2,53],[-22,117],[2,18],[-12,30],[-58,-7],[-19,13],[-27,20],[-27,32],[-35,-45],[0,-63],[-4,-10],[-13,-13],[-14,-47],[-16,-14],[-7,-2],[-19,-6],[-34,-41],[-20,-3],[-34,13],[-23,29],[-30,-69],[25,-92],[12,-91],[-6,-9],[-44,-52],[-17,-32],[-31,-57],[-14,-45],[19,-28],[10,-35],[9,-40],[24,0],[16,-39],[15,-59],[7,-34],[2,-92],[19,-42],[-9,-33],[-1,-58],[-9,-23],[-19,-76],[-13,-17],[-24,-10],[-40,-1],[-45,14],[-16,-17],[-22,-65],[-10,-11],[-33,-64],[-16,-52],[-8,-50],[-45,-57],[-17,-30],[-41,-17],[-40,-35],[-41,-56],[-16,-60],[-27,-78],[4,-59],[-16,-76],[-6,-10],[-41,-53],[-16,-16],[-4,-33],[-1,-36],[-3,-66],[-3,-60],[1,-81],[8,-34],[-34,-111],[-11,-11],[-14,-5],[-32,-19],[-21,-44],[-25,-29],[-30,-14],[-39,-17],[-16,11],[-8,-2],[-36,-12],[-50,-16],[-19,-4],[-26,-70],[-7,-40],[-24,-37],[-19,-65],[-8,-41],[21,-44],[11,-32],[-3,-18],[-2,-58],[-13,-30],[-34,-117],[-72,-24],[-28,7],[-24,4],[-19,-62],[-30,-47],[-43,3],[-40,-19],[-26,-17],[-40,-21],[-37,9],[-18,12],[-30,-71],[-25,-67],[-15,-73],[-12,-16],[-9,-42],[-15,-51],[-67,-3],[-7,-17],[-20,2],[-24,17],[-15,66],[-10,2],[-21,-6],[-53,53],[-14,5],[-11,8],[-18,30],[-13,13],[-27,43],[-100,0],[-33,-16],[-25,-5],[-17,-55],[-15,-98],[1,-33],[17,-30],[11,-48],[-1,-32],[-8,-32],[1,-33],[6,-24],[7,-42],[-2,-30],[-10,-26],[0,-53],[-6,-28],[-10,-11],[-12,-45],[-19,-53],[-28,-55],[-4,-28],[-8,-107],[-5,-24],[-2,-64],[-7,-92],[-17,-27],[-60,-97],[-55,-201],[-28,-33],[-31,1],[-23,-17],[-21,4],[-42,-2],[-47,-69],[-6,-32],[-4,-31],[-17,-44],[-25,-19],[-27,-29],[-8,3],[-25,4],[-20,-26],[-13,-43],[-47,-8],[-38,-48],[-27,-78],[-14,-17],[-31,13],[-7,17],[-16,-14],[-15,-12],[-22,2],[-26,16],[-41,125],[-1,33],[7,29],[-11,26],[-10,19],[-41,10],[-16,49],[-15,131],[-30,79],[-4,25],[-1,60],[-3,56],[-8,26],[-16,23],[-38,13],[-18,15],[-5,20],[-14,12],[-7,19],[-10,27],[-33,44],[-34,71],[-26,-6],[-23,15],[-43,34],[-32,30],[-26,4],[-23,32],[-58,40],[-25,-9],[-18,2],[-28,0],[-22,46],[3,58],[-24,48],[-3,30],[6,45],[-17,110],[4,87],[-53,37],[-9,28],[-4,45],[-50,101],[-34,14],[-9,54],[-54,40],[-47,-1],[-15,13],[-8,37],[5,12],[23,35],[1,50],[-7,42],[19,83],[7,44],[10,10],[-61,37],[-52,94],[-16,-40],[-30,-23],[-49,-28],[-22,14],[-43,-91],[-41,-34],[-26,-8],[-9,21],[-12,7],[-12,43],[-28,11],[-65,119],[-10,37],[-20,36],[-31,8],[-34,45],[-26,-11],[-30,-80],[-50,-47],[-30,-11],[-32,-34],[-35,-42],[-21,-63],[-18,-6],[-30,20],[-19,31],[-36,-34],[-5,101],[19,47],[24,15],[17,32],[11,65],[-4,34],[3,21],[31,82],[-1,27],[-8,84],[-29,52],[-3,30],[17,44],[21,38],[-2,51],[7,31],[12,19],[23,55],[13,76],[20,30],[19,16],[27,66],[8,22],[-3,38],[-15,44],[-36,150],[-33,28],[-42,28],[-7,26],[-7,51],[-17,35],[-5,20],[1,29],[-5,24],[-16,38],[-22,43],[-4,57],[1,68],[12,34],[17,25],[70,47],[52,12],[22,-15],[19,88],[-2,24],[-9,9],[-2,22],[6,24],[22,14],[25,0],[51,37],[13,-4],[17,-33],[28,-25],[51,61],[28,77],[19,7],[20,21],[7,25],[5,34],[13,59],[39,88],[10,50],[-3,20],[-18,96],[6,63],[11,15],[9,27],[-11,59],[-10,8],[-23,0],[-24,22],[-35,1],[-28,17],[-4,23],[15,18],[17,43],[33,48],[43,68],[1,34],[5,20],[15,29],[20,48],[4,33],[5,44],[-5,21],[-4,59],[-7,26],[-2,53],[-5,22],[-28,76],[-3,37],[-7,60],[-10,54],[-19,31],[-29,26],[-40,53],[-24,-11],[-26,-7],[-17,17],[-29,3],[-5,14],[-17,76],[-21,50],[-16,41],[-10,30],[-11,40],[-78,68],[-24,29],[3,17],[13,39],[0,23],[-3,22],[-7,90],[11,45],[-2,22],[11,40],[6,12],[-10,40],[-48,93],[-20,-6],[-31,5],[-9,13],[-19,69],[-13,34],[-14,20],[-19,47],[-1,27],[25,59],[-2,26],[11,55],[45,61],[8,74],[56,36],[34,38],[9,1],[-10,58],[-1,107],[9,20],[33,40],[21,63],[-1,27],[51,75],[15,80],[-7,46],[-13,13],[-2,32],[13,61],[30,15],[23,46],[25,51],[54,42],[19,48],[12,19],[-5,8],[-40,62],[-4,75],[15,75],[18,34],[18,52],[22,46],[36,4],[11,35],[29,57],[20,10],[42,-14],[42,34],[33,-6],[39,-71],[25,-26],[30,29],[10,71],[49,16],[26,54],[37,3],[22,12],[42,72],[16,52],[18,13],[59,15],[16,-11],[23,-19],[27,-30],[24,-31],[25,-19],[18,-38],[21,-5],[23,-39],[37,-19],[19,-13],[21,131],[12,63],[-6,55],[15,57],[-8,45],[1,36],[17,33],[21,11],[24,-20],[13,1],[13,70],[10,21],[10,52],[2,27],[28,42],[5,19],[5,39],[7,120],[-3,27],[-10,41],[-16,-4],[-17,2],[-9,39],[2,38],[-10,40],[-4,77],[-6,4],[-8,-2],[-14,15],[-19,2],[-29,30],[-4,20],[-26,46],[-46,114],[-23,145],[8,45],[1,38],[-21,50],[-40,65],[-26,80],[-38,72],[-9,34],[3,37],[45,49],[7,51],[7,20],[28,20],[-2,32],[11,16],[21,17],[21,12],[10,51],[16,47],[15,11],[24,23],[19,40],[16,34],[1,37],[-1,43],[5,45],[-14,40],[-12,66],[-9,22],[-17,21],[-23,53],[-5,32],[-6,78],[-34,41],[-49,39],[-18,65],[-42,41],[-25,0],[-20,23],[-34,0],[-25,-8],[-42,1],[-16,11],[-9,35],[-17,15],[-15,43],[-22,110],[-57,0],[-32,-45],[-28,-44],[-34,-28],[-45,17],[-9,27],[-8,10],[-22,32],[-19,85],[-9,58],[1,39],[23,82],[22,-1],[25,37],[29,26],[20,47],[-5,66],[-1,27],[-16,76],[0,25],[-25,100],[-2,69],[-40,2],[-25,-35],[-19,-16],[-55,-1],[-74,40],[-20,40],[1,19],[12,45],[-5,19],[-3,51],[9,34],[19,43],[8,15],[35,-1],[5,38],[8,25],[13,20],[5,31],[13,61],[-5,25],[9,21],[19,20],[52,38],[38,12],[39,62],[3,35],[10,13],[21,13],[20,41],[6,40],[-1,27],[-17,34],[-12,16],[-8,10],[-1,54],[5,20],[6,36],[-8,48],[2,16],[11,5],[16,-4],[36,15],[15,28],[-2,29],[5,70],[12,53],[-3,85],[10,82],[-7,71],[-14,47],[-28,70],[-13,42],[-28,20],[-23,94],[-13,71],[-20,-1],[-33,7],[-23,5],[-32,-9],[-22,26],[-66,97],[-35,-4],[-19,-6],[-27,34],[-24,19],[-7,29],[-31,16],[-19,16],[-19,26],[0,44],[11,91],[6,96],[-19,0],[-10,15],[-2,28],[-17,50],[-27,101],[0,38],[15,40],[27,50],[32,31],[26,26],[2,30],[-6,19],[0,60],[5,24],[-6,56],[2,30],[-2,26],[-1,42],[4,10],[10,14],[58,-63],[13,-4],[37,15],[25,39],[34,18],[32,-6],[39,-50],[23,-51],[26,-37],[17,-15],[27,5],[34,52],[20,43],[31,11],[20,52],[40,44],[24,-23],[17,-11],[27,1],[23,-14],[10,-3],[3,47],[-11,63],[-3,19],[5,73],[0,29],[4,50],[-6,70],[3,26],[4,57],[-4,46],[11,50],[-3,47],[-1,45],[-1,54],[7,26],[2,59],[-13,31],[-27,68],[-9,50],[-13,33],[-7,46],[1,32],[21,26],[30,56],[-2,39],[-9,45],[-4,62],[-4,97],[-12,86],[-6,58],[-4,12],[-12,43],[2,31],[-20,7],[-15,24],[-34,44],[-43,40],[-21,32],[-6,23],[22,55],[2,33],[-14,46],[-12,54],[-4,65],[-15,81],[2,61],[26,50],[3,45],[13,24],[22,8],[74,-44],[54,17],[59,41],[6,26],[27,17],[17,36],[47,105],[12,26],[0,49],[11,20],[0,41],[-17,45],[-5,32],[-15,125],[2,32],[-10,22],[-11,49],[-1,71],[12,40],[-3,42],[3,27],[27,83],[22,94],[10,58],[16,67],[7,112],[9,8],[41,48],[10,55],[4,51],[-5,18],[2,90],[7,67],[0,53],[4,46],[8,14],[3,74],[-2,38],[-1,47],[15,46],[-8,27],[4,82],[-18,51],[-29,124],[-19,81],[-9,72],[-10,58],[-9,30],[-5,40],[38,85],[57,96],[7,29],[2,46],[8,31],[17,12],[48,13],[14,46],[36,89],[23,28],[41,15],[22,20],[4,78],[-1,54],[6,58],[-8,159],[2,41],[19,93],[26,33],[29,20],[60,17],[0,30],[-22,49],[-8,42],[-10,26],[-19,-5],[-19,30],[-36,23],[-15,26],[-3,26],[6,34],[16,77],[4,74],[15,81],[-20,50],[-11,82],[-69,52],[-26,15],[-5,25],[-2,38],[-14,48],[-19,36],[-12,45],[-5,66],[0,93],[6,56],[-15,61],[-7,88],[8,109],[19,39],[38,-3],[15,33],[37,1],[29,13],[23,21],[64,-68],[40,26],[23,43],[54,8],[17,-11],[55,53],[15,34],[22,35],[2,29],[7,58],[18,41],[14,30],[9,33],[-5,52],[-9,31],[-24,42],[-10,27],[-11,60],[5,54],[-1,38],[3,7],[15,36],[8,30],[2,35],[6,34],[5,32],[-9,34],[-1,46],[-1,62],[-13,46],[-9,23],[5,13],[10,11],[30,53],[10,63],[16,72],[0,55],[10,41],[12,20],[13,25],[8,34],[16,40],[8,21],[14,86],[-6,29],[-30,30],[-15,64],[-18,56],[-18,57],[-20,30],[-13,29],[7,16],[19,34],[42,28],[25,55],[20,57],[9,120],[15,21],[43,97],[6,38],[-12,23],[-20,35],[-2,14],[-9,39],[-6,44],[1,27],[19,21],[8,27],[4,28],[13,34],[1,28],[-3,22],[1,27],[7,21],[0,24],[-7,25],[2,53],[8,54],[7,30],[-14,36],[-6,39],[0,37],[12,55],[2,27],[-4,29],[-15,41],[-13,69],[-7,10],[-27,87],[-24,50]],[[36550,31775],[-9,-2],[-5,1],[-10,0],[-8,0],[-3,0],[-11,-6],[-7,-29],[-10,8],[-6,18],[-6,14],[-11,1],[-21,-7],[-11,-20],[-4,-24],[4,-27],[-4,-53],[-9,-24],[-17,-24],[-10,-14],[-12,-14],[-3,-6],[-7,-14],[-1,-28],[2,-26],[-3,-28],[0,-3],[-4,-33],[-13,-29],[-6,-14],[-10,-1],[-20,-5],[-9,-11],[-7,-15],[-4,-24],[-3,-23],[-2,-37],[-1,-13],[0,-11],[-1,-17],[-8,-27],[-11,-16],[-5,-7],[-5,-6],[-6,-23],[-8,-21],[-1,-7],[0,-19],[-2,-8],[-4,-23],[-28,-55],[-18,-43],[-13,-13],[-29,-12],[-12,-1],[-10,-2],[-17,-1],[-9,0],[-16,-6],[-19,-7],[-10,-6],[-15,-5],[-12,-2],[-17,-6],[-10,-6],[-10,0],[-10,28],[-6,16],[-7,25],[-1,3],[-10,14],[-4,3],[-5,5],[-4,0],[-8,0],[-10,-3],[-1,-1],[-20,1],[-20,9],[-15,15],[-10,12],[-7,20],[-7,14],[-8,12],[-9,11],[-15,15],[-14,9],[-8,9],[-8,1],[-3,1],[-17,5],[-15,8],[-1,-2],[-7,-6],[-16,-7],[-15,-20],[-6,-18],[-7,-17],[-13,-23],[-11,-8],[-11,-4],[-8,-3],[-17,-5],[-11,-2],[-8,-2],[-16,-4],[-8,-6],[-13,-18],[-10,-10],[-3,-3],[-5,-5],[-12,-22],[-18,-21],[-11,-13],[-16,-20],[-11,-6],[-9,-7],[-11,4],[-12,20],[-10,15],[-17,15],[-10,0],[-13,3],[-11,-2],[-30,3],[-11,5],[-9,17],[-12,31]],[[35342,31004],[-12,16],[-7,16],[-5,34],[-1,69],[-10,99],[-3,21],[-7,18],[-14,22],[-16,8],[-10,2],[-13,-4],[-19,6],[-18,0],[-15,6],[-21,25],[-18,30],[-17,26],[-31,53],[-18,2],[-20,10],[-12,6],[-14,-4],[-22,0],[-32,2],[-16,-6],[-21,-4],[-14,2],[-14,-12],[-18,-6],[-19,-12],[-14,2],[-13,6],[-16,0],[-21,0],[-13,-14],[-9,-2],[-12,-2],[-7,6],[-10,2],[-17,42],[-9,20],[-10,39],[-4,18],[-6,27],[-4,28],[-4,20],[-7,20],[-9,15],[-14,8],[-17,14],[-15,2],[-23,-2],[-14,-6],[-21,-8],[-21,-12],[-23,-13],[-18,-12],[-16,5],[-15,-3],[-19,4],[-31,16],[-15,39],[0,49],[-2,25],[0,45],[9,45],[4,22],[-1,23],[-5,12],[-9,8],[-9,8],[-8,8],[-9,16],[-7,10],[-11,23],[-3,34],[-1,23],[-3,38],[-4,12],[-6,11],[-9,11],[-5,11],[-7,15],[-18,36],[-14,31],[-7,26],[-8,25],[-4,13],[-2,10],[-2,8],[-10,-6],[-2,-1],[-2,-8],[-2,-8],[0,-7],[0,-8],[-6,-15],[-5,-9],[-12,-5],[-9,-2],[-17,-3],[-15,0],[-22,-4],[-9,18],[-8,26],[-8,3],[-18,-3],[-10,-8],[-15,-12],[-9,-21],[-10,-17],[-1,-3],[-12,-9],[-9,-19],[-13,-13],[-26,6],[-11,14],[-11,16],[-13,2],[-13,-18],[-2,-9],[-3,-9],[-1,-12],[0,-15],[8,-23],[8,-21],[-4,-22],[-9,-8],[-10,2],[-6,9],[-6,8],[-7,17],[-3,8],[-7,22],[-8,17],[-9,20],[-14,2],[-4,-8],[-3,-6],[-2,-4],[-4,-7],[-1,-22],[-2,-28],[-10,-8],[-13,-1],[-9,-2],[-17,-14],[-9,0],[-6,-1],[-12,12],[-13,27],[-13,13],[-11,12],[-11,-13],[-9,-6],[-10,3],[-11,-2],[-13,-6],[-12,3],[-4,22],[8,17],[7,35],[-8,16],[-12,5],[-9,-8],[-13,-18],[-11,-19],[-9,-5],[-10,0],[-9,11],[-8,26],[3,36],[-3,28],[-13,16],[-14,-3],[-11,6],[-13,0],[-16,4],[-10,26],[-9,18],[-13,3],[-11,9],[-10,-2],[-11,-9],[-11,-7],[-8,-7],[-15,-8],[-17,-11],[-15,-11],[-9,-7],[-14,-6],[-8,13],[-6,23],[-4,20],[-9,2],[-8,-4],[-6,-19],[2,-29],[-4,-20],[-8,-22],[-13,-6],[-13,13],[-6,21],[-9,3],[-11,-8],[-23,-27],[-1,-22],[8,-10],[9,-8],[7,-15],[5,-26],[-8,-11],[-17,3],[-10,11],[-9,14],[-10,14],[-9,-4],[-8,-8],[-10,-21],[-9,-3],[-12,13],[-2,24],[-7,21],[-11,-13],[-10,-13],[-14,-8],[-16,12],[-17,-5],[-8,22],[-11,-1],[-10,-12],[-12,-10],[-12,-23],[-8,-11],[-4,-3],[-7,-7],[-16,-4],[-19,-19],[-12,-2],[-9,2],[-15,11],[-4,21],[4,29],[-10,1],[-8,-10],[-9,-27],[-9,-26],[-1,-42],[-8,-29],[-4,-22],[-6,-19],[-12,-16],[-11,-10],[-2,-9],[-3,-20],[3,-23],[-8,-18],[-13,-8],[-14,5],[-8,9],[-9,3],[-9,14],[-2,4],[-6,12],[-16,15],[-3,2],[-8,5],[-8,-9],[1,-26],[9,-6],[5,-33],[-7,-19],[-9,0],[-12,6],[-12,3],[-10,-5],[-1,-27],[7,-22],[-1,-25],[-13,-6],[-17,12],[-13,6],[-14,4],[-5,-11],[-4,-9],[5,-29],[7,-10],[7,-16],[15,-19],[-7,-23],[-13,-19],[-1,-22],[4,-20],[4,-19],[4,-21],[-4,-30],[-1,-14],[-1,-14],[-9,-29],[-4,-26],[-2,-22],[2,-25],[6,-24],[-6,-24],[-3,-23],[-5,-21],[7,-19],[4,-5],[4,-5],[7,-20],[4,-11],[1,-2],[3,-9],[5,-19],[8,-13],[3,-24],[4,-26],[-13,-16],[-8,-21],[-7,-18],[0,-24],[-11,-37],[-11,-11],[-11,-3],[-11,-2],[-10,-12],[-6,-44],[1,-26],[-6,-16],[-8,-15],[-13,-21],[-10,-1],[-3,0],[-8,-13],[1,-24],[2,-23],[0,-26],[-2,-21],[-9,-4],[-9,-8],[-10,-12],[-6,-17],[-6,-24],[-4,-24],[-4,-23],[-4,-19],[-6,-13],[-12,-22],[0,-24],[3,-39],[1,-21],[0,-24],[-3,-26],[-2,-10],[4,-28],[0,-28],[-5,-17],[-7,-16],[-13,-17],[-10,-11],[-8,-12],[-11,-20],[-8,-13],[-4,-21],[-9,-24],[-8,-15],[-4,-6],[-5,-7],[-11,-19],[-13,-28],[-4,-22],[-4,-17],[-8,-28],[-7,-13],[-16,-13],[-10,-6],[-14,-3],[-14,-3],[-10,-7],[-14,-9],[-11,-33],[0,-28],[0,-22],[-7,-15],[-15,-8],[-13,-16],[-37,0],[-3,8],[-5,10],[-8,8],[-9,1],[-10,3],[-9,-4],[-11,-18],[-7,-21],[-11,-13],[-9,-8],[-10,-6],[-23,-2],[-12,3],[-15,16]],[[32138,29944],[-2,12],[-4,19],[-19,20],[-8,8],[-8,15],[-7,19],[-10,19],[-8,18],[-17,28],[-15,17],[-8,9],[-11,8],[-9,22],[-18,21],[-10,20],[-7,13],[-9,17],[-14,37],[-6,17],[-8,31],[-13,4],[-10,5],[-12,-11],[-12,-3],[-11,-2],[-13,0],[-16,3],[-16,8],[-14,19],[-17,14],[-11,17],[-9,15],[-8,3],[-8,12],[-3,11],[-2,10],[-26,17],[-15,13],[-9,4],[-10,3],[-16,0],[-11,4],[-17,-7],[-16,-11],[-11,-19],[-9,1],[-13,-4],[-10,5],[-11,17],[-8,14],[-8,13],[-13,24],[-14,25],[-15,27],[-5,17],[1,49],[-4,22],[-7,14],[-9,7],[-2,26],[-3,40],[-6,31],[-5,17],[-10,13],[-7,29],[-11,23],[-9,10],[-8,14],[-21,9],[-8,-4],[-11,-8],[-13,-5],[-11,6],[-16,2],[-12,6],[-14,30],[-9,9],[-7,17],[-11,13],[-7,14],[-157,134],[-17,14],[-5,4],[-19,16],[-78,67],[-42,36],[-11,9],[-29,24],[-34,30],[-46,39],[-162,138],[-10,9],[-19,16],[-89,76],[-37,32],[-33,28],[-12,9],[-95,81],[-24,20],[-9,6],[-14,14],[-15,16],[-13,23],[-19,27],[-28,12],[-20,20],[-19,24],[-8,17],[-11,17],[-11,25],[-1,5],[-4,12],[-14,17],[-12,4],[-2,1],[-13,8],[-13,35],[-4,29],[-4,29],[1,44],[-1,36],[-5,19],[-7,14],[-7,30],[-1,1],[6,29],[9,22],[3,23],[10,14],[11,12],[6,25],[1,29],[-1,25],[0,25],[5,32],[9,16],[10,14],[11,6],[12,4],[9,23],[10,20],[3,26],[-5,31],[8,16],[6,21],[10,10],[13,4],[10,14],[7,15],[3,35],[1,23],[7,20],[2,24],[-4,25],[-2,22],[-5,26],[3,21],[7,11],[11,11],[9,5],[8,13],[8,10],[9,26],[-5,19],[-5,17],[-7,22],[-2,21],[3,21],[-4,23],[-6,40],[-5,26],[-7,28],[-5,22],[0,31],[4,31],[-8,13],[-14,12],[-9,6],[-8,8],[-10,2],[-5,24],[4,26],[0,32],[-3,26],[-9,8],[-10,3],[-11,6],[-9,11],[-9,15],[-2,34],[4,20],[6,16],[10,22],[3,26],[-5,19],[-3,20],[9,9],[8,23],[-2,22],[7,16],[3,8],[0,23],[-7,15],[-7,24],[-8,15],[-11,11],[-13,9],[-11,8],[-7,17],[-7,18],[-11,13],[-9,4],[-20,6],[-13,12],[-3,21],[-5,23],[-2,28],[-3,26],[-2,24],[-3,26],[-2,21],[-10,26],[-10,17],[3,28],[12,15],[5,24],[12,17],[5,18],[10,8],[2,26],[-5,18],[-8,21],[-3,23],[-10,52],[2,28],[2,26],[7,26],[1,26],[-2,21],[5,26],[14,13],[-2,26],[-10,11],[-12,8],[-11,11],[0,25],[-7,22],[-8,21],[2,28],[-20,41],[-1,31],[1,28],[-3,26],[-4,26],[1,26],[-2,30],[-4,30],[-7,30],[-2,22],[-2,29],[-3,29],[0,32],[2,28],[-2,32],[-5,26],[-8,35],[1,30],[-1,28],[-2,32],[-8,24],[-1,28],[-3,32],[-8,30],[3,22],[6,18],[1,26],[-6,13],[0,27],[3,36],[6,25],[14,64],[7,24],[10,17],[4,20],[15,7],[14,34],[-2,24],[-27,65],[4,29],[-6,22],[1,27],[-8,11],[-14,21],[-7,19],[-3,29],[5,32],[4,26],[1,29],[-6,22],[-10,18],[-5,23],[-7,17],[-11,13],[-12,-2],[-12,-4],[-13,3],[-11,3],[-19,15],[-7,15],[-7,10],[-12,1],[-11,19],[-1,1],[-7,13],[-7,17],[-5,32],[-8,10],[-11,-3],[-12,26],[-9,2],[-9,0],[-14,-2],[-18,-9],[-12,-2],[-9,33],[4,19],[12,46],[-2,42],[-2,22],[-8,14],[-7,15],[-8,13],[-7,12],[-6,32],[10,16],[1,25],[20,25],[13,16],[8,36],[1,26],[2,29],[-2,24],[9,6],[8,21],[0,26],[4,30],[7,21],[17,59],[0,37],[9,25],[11,9],[8,29],[-2,23],[0,28],[-27,53],[-1,27],[-13,31],[-12,-8],[-8,12],[-14,31],[17,25],[1,23],[8,26],[-4,35],[-2,27],[12,23],[10,58],[-18,38],[-18,41],[-4,28],[-11,18],[-7,18],[-12,-5],[-10,4],[-11,11],[-10,13],[-15,12],[-10,3],[-12,15],[-6,20],[-11,-4],[-8,7],[-5,24],[-4,41],[-11,33],[-11,2],[-11,3],[-11,3],[-14,9],[-9,18],[-2,27],[-4,25],[-8,8],[-15,6],[-29,18],[-8,14],[-7,18],[-3,41],[5,44],[2,24],[6,22],[0,29],[-11,9],[-14,1],[-14,13],[-9,16],[-13,11],[-13,2],[-10,12],[-18,6],[12,29],[1,42],[-13,36],[-9,38],[-10,35],[-23,27],[-6,21],[0,23],[8,36],[15,70],[14,41],[1,38],[1,22],[8,24],[9,31],[-3,28],[0,30],[6,24],[6,29],[2,26],[0,61],[-2,26],[-15,13],[-5,41],[-8,19],[-7,37],[0,33],[11,36],[3,27],[9,30],[9,23],[5,39],[4,22],[11,28],[25,94],[12,46],[7,53],[-13,-8],[-15,-9],[-17,4],[-22,20],[-14,4],[-10,-2],[-29,5],[-28,10],[-12,-2],[-20,-16],[-16,-29],[-16,-41],[-1,-28],[-9,-15],[-45,-42],[-16,-27],[-5,-29],[-15,3],[-12,0],[-17,10],[-24,24],[-10,6],[-25,59],[-11,-2],[-10,-48],[-10,-29],[-8,-10],[-15,1],[-18,12],[-11,1],[-40,8],[-11,8],[-11,2],[-16,6],[-10,12],[-12,7],[-22,17]],[[28917,39214],[0,28],[7,33],[1,26],[-5,35],[-15,20],[-8,19],[11,36],[6,25],[-11,32],[-2,67],[-11,60],[-12,29],[4,56],[19,27],[9,25],[2,25],[6,29],[7,40],[3,25],[9,27],[8,35],[3,36],[-1,22],[-9,24],[-10,12],[-8,11],[-2,28],[-8,35],[-2,34],[-14,23],[-20,10],[-22,19],[-8,9],[-10,10],[-13,21],[-12,11],[-12,-7],[-27,64],[5,18],[5,25],[5,27],[-15,38],[-19,29],[-9,17],[3,38],[7,21],[15,13],[30,11],[17,3],[9,-1],[9,-2],[8,6],[14,25],[21,7],[15,0],[22,71],[5,18],[21,40],[17,36],[6,19],[1,29],[5,16],[7,19],[10,37],[13,38],[13,36],[6,24],[12,17],[11,9],[8,17],[6,22],[11,47],[6,43]],[[69201,45736],[1,-141],[1,-167],[36,-1],[61,0],[77,-1],[0,-42],[1,-266],[0,-107],[0,-210],[93,0],[20,0],[61,-1],[0,-173],[0,-110],[1,-260],[0,-80],[68,0],[1,0],[105,-1],[0,-150],[0,-34],[0,-128],[41,1],[41,0],[10,0],[81,-1],[1,-196],[0,-23],[1,-208],[1,-192],[43,1],[131,-1],[0,-108],[1,-202],[63,0],[82,-4],[20,0],[7,-20],[1,-92],[0,-50],[-1,-34],[0,-119],[-1,-290],[-1,-182],[0,-23],[0,-127],[81,3],[58,1],[40,0],[0,-23],[1,-214],[0,-75],[45,0],[91,0],[37,0],[0,-95],[-1,-184],[0,-35],[0,-58],[0,-89],[-1,-41],[0,-23],[1,-36],[-1,-55],[28,-5],[26,0],[17,-1],[62,0],[25,1],[17,2],[-1,-172],[0,-78],[0,-59],[76,0],[12,-1],[88,-12],[-3,-131],[1,-490],[174,3],[0,-456],[0,-10],[0,-163],[52,0],[9,0],[113,5],[1,-216],[0,-55],[0,-44],[40,1],[77,1],[54,-5],[0,-44],[2,-225],[0,-33],[0,-5],[1,-21],[0,-33],[-11,-20],[-8,-13],[-14,-18],[-11,-12],[-9,-14],[-13,-25],[-4,-23],[1,-6],[5,-19],[3,-20],[4,-49],[0,-21],[3,-6],[1,-4],[18,-29],[32,-21],[6,-5],[10,-10],[5,-19],[1,-19],[1,-7],[1,-23],[1,-7],[0,-55],[-2,-11],[-5,-13],[-8,-4],[-9,-2],[-10,-2],[-5,1],[-6,2],[-16,-4],[-12,-8],[-12,-16],[-8,-18],[-6,-23],[-2,-20],[1,-13],[3,-8],[2,-8],[9,-11],[11,-9],[12,-3],[27,-32],[5,-16],[1,-8],[1,-7],[2,-11],[-3,-16],[-2,-16],[-1,-5],[-11,-30],[-2,-3],[-28,-36],[-2,-3],[-12,-3],[-11,7],[-24,16],[-25,16],[-16,-6],[-4,-1],[-5,-13],[-1,-2],[2,-27],[0,-2],[25,-76],[3,-12],[15,-35],[4,-13],[12,-50],[17,-72],[3,-31],[2,-12],[5,-10],[2,-54],[-2,-33],[-3,-23],[-3,-7],[-6,-17],[-4,-11],[-24,-37],[-19,-3],[-3,2],[-20,9],[-12,-2],[-1,-1],[-4,-4],[-3,-2],[0,-3],[-4,-7],[-2,-5],[0,-13],[2,-32],[0,-4],[3,-25],[5,-33],[5,-34],[1,-9],[1,-7],[0,-9],[2,-27],[-2,-23],[-5,-12],[-3,0],[-8,-2],[-8,-2],[-12,7],[-20,11],[-6,1],[-17,5],[-5,1],[-8,-1],[-2,-1],[-6,-1],[-7,-16],[-3,-7],[-2,-4],[2,-26],[0,-4],[16,-49],[-1,-14],[0,-1],[-3,-6],[-7,-17],[-7,-10],[-6,-1],[-19,-18],[-11,-24],[-5,-9],[-3,-25],[2,-20],[5,-61],[1,-12],[2,-14],[13,-30],[0,-40],[-34,1],[-11,-20],[-2,-4],[-5,-23],[-3,-30],[1,-8],[1,-9],[-2,-19],[-4,-14],[-19,-68],[-7,-14],[-3,-6],[-19,1],[-5,0],[-24,7],[-13,-17],[-3,-4],[0,-14],[0,-10],[-1,-6],[3,-7],[7,-18],[5,-13],[10,-28],[2,-29],[0,-6],[0,-5],[-3,-12],[-4,-15],[-9,-26],[1,-23],[0,-9],[0,-4],[3,-6],[12,-34],[2,-5],[4,-6],[5,-7],[8,-18],[10,-20],[6,-13],[2,-30]],[[71093,36293],[-2,0],[-109,0],[-10,0],[-17,0],[-148,1],[-24,0],[-214,1],[-211,1],[-21,0],[-142,1],[-54,2],[-134,0],[-148,1],[-27,0],[-96,1],[0,-31],[0,-36],[0,-465],[0,-98],[0,-22],[-1,-291],[0,-305],[-16,0],[-289,0],[-19,0],[-21,0],[-271,0],[-19,0],[-102,0],[-260,0],[-33,0],[0,-263],[0,-143],[0,-22],[0,-2],[0,-195],[-205,1],[-143,1],[-1,-141],[0,-48],[0,-46],[0,-352],[0,-29],[-18,0],[-284,-4],[-35,1],[-9,0],[0,-30],[0,-537],[0,-55],[0,-4],[-512,4],[-40,1],[-66,0],[-117,1],[-6,0],[-15,0],[-18,1],[-37,0],[-5,0],[-103,0],[-5,0],[-62,0],[-6,0],[-45,0],[-42,1],[-35,0],[-97,0],[-120,-1],[-50,0],[0,-43],[0,-102],[0,-118],[-1,-47],[0,-5],[1,-63],[0,-111],[0,-43],[0,-89],[0,-172],[0,-230],[0,-5],[0,-19],[0,-487],[0,-189],[0,-291],[0,-29],[0,-140],[0,-31],[1,-25],[0,-258],[-21,1],[-160,4],[0,-30],[0,-34],[-1,-130],[0,-31],[-1,-189],[-2,-310],[2,-29],[-1,-293],[0,-3],[2,-344],[-2,-152],[0,-16],[0,-245],[0,-158],[1,-155],[0,-85],[0,-99],[0,-44],[-1,-160],[0,-211],[-1,-275],[1,-424],[0,-6],[0,-31],[-1,-128],[0,-161],[0,-144],[0,-34],[0,-182],[0,-85],[-1,-145],[0,-188],[0,-278],[0,-178],[0,-372],[0,-23],[0,-3],[0,-318],[-8,-22],[-53,0],[-74,0],[-190,0],[-9,0],[-10,0],[-23,0],[-13,0],[-49,0],[-37,3],[-122,1],[-33,2],[-297,-3],[-9,1],[-23,0],[-78,0],[0,-168],[0,-133],[0,-68],[-1,-29],[0,-160],[0,-67],[-105,-1],[-248,-1],[-5,0],[-120,0],[-120,0],[-131,1],[-274,2],[-21,0],[-1,-285],[0,-140],[0,-68],[-2,-100],[-1,-31],[-21,0],[-69,0],[-34,0],[-11,0],[-241,-1],[-4,0],[-111,-2],[-100,-2],[-36,1],[-56,-2],[-19,2],[-31,1],[-250,2],[-84,1],[-1,83],[-106,-1],[-1,0],[-122,-2],[-168,0],[-6,0],[-14,0],[-15,-1],[-35,-1],[-187,3],[-6,0],[-332,-2],[-193,-1],[-7,0],[-13,0],[-58,2],[-18,0],[-28,2],[-49,-3],[-147,-3],[-71,0],[-2,0],[-60,1],[-27,1]],[[61654,23819],[-32,0],[-70,2],[-42,1],[-70,2],[-30,1],[-45,1],[-57,-1],[-69,-3],[-28,-1],[0,47],[-2,48],[-1,30],[0,67],[-1,154],[-1,88],[-2,280],[-1,56],[0,197],[0,209],[-1,79],[-210,3],[-166,6],[-60,2],[-73,-1],[0,144],[1,341],[0,135],[-246,6],[-99,1],[-1,161],[-3,364],[-1,129],[0,43],[4,64],[3,0],[8,0],[18,9],[12,18],[9,36],[-2,24],[-6,24],[-6,17],[-8,31],[2,25],[8,11],[20,6],[20,1],[11,7],[10,34],[0,29],[-5,43],[-10,16],[-10,11],[-6,26],[3,27],[8,15],[14,8],[16,-2],[10,10],[2,26],[-8,18],[-11,15],[-1,24],[12,22],[9,8],[14,0],[10,0],[8,3],[2,24],[2,25],[8,25],[-2,64],[-1,50],[1,26],[0,1],[-1,24],[0,28],[1,182],[0,53],[0,60],[-12,-15],[-4,-6],[-17,-18],[-14,-10],[-8,-6],[-17,-1],[-30,-2],[-25,-14],[-10,-9],[-22,-47],[-10,-30],[-9,-30],[-11,-28],[-17,-57],[-10,-12],[-12,-10],[9,0],[-13,-6],[-12,0],[-21,-7],[-17,-5],[-9,-4],[-18,-13],[-8,-13],[-18,-27],[-8,-9],[-21,-23],[-19,-23],[-21,-51],[-26,-43],[-15,-26],[-28,-35],[-10,-8],[-9,-8],[-12,1]],[[60008,26983],[0,4],[-1,20],[-1,86],[0,23],[-1,67],[0,100],[0,24],[0,30],[0,98],[0,71],[0,26],[0,61],[-77,0],[-31,0],[-56,0],[-9,0],[0,22],[0,60],[0,16],[0,47],[1,15],[0,18],[0,33],[0,52],[-1,46],[-99,2],[-74,0],[0,105],[0,68],[-1,165],[0,87],[0,122],[0,81],[-159,-10],[-12,-1],[0,24],[1,307],[-2,103],[0,85],[1,81],[1,170],[0,83],[0,136],[0,37],[0,115],[1,263],[1,50],[0,39],[-1,77],[0,149],[0,27],[1,55],[-1,76],[1,81],[2,74],[0,159],[26,0],[-1,109],[0,3],[-1,179],[0,65],[0,47],[0,41],[-1,189],[1,135],[1,50],[2,126],[-2,305],[0,91],[0,6],[0,56],[-1,165],[-1,107],[0,204],[1,78],[0,209],[0,26],[1,301],[0,44],[0,288],[1,485],[0,151],[-2,319],[-91,-2],[-42,0],[-37,-1],[-8,1072],[-14,1749],[1,77],[1,75],[0,26],[1,132],[0,156],[0,159],[0,61],[3,57],[0,157]],[[75857,32563],[-131,1],[-153,1],[-19,0],[-94,1],[-115,1],[-218,-2],[-125,-1],[-65,-1],[-21,0],[0,105],[0,33],[1,155],[0,28],[0,125],[1,151],[0,45],[1,299],[-19,0],[-56,0],[-100,0],[-34,0],[-36,0],[-101,0],[-68,-1],[-156,0],[-17,0],[-9,0],[-19,0],[-62,-1],[-60,-1],[-129,-5],[-71,1],[-26,-2],[-74,-1],[0,164],[0,464],[0,175],[0,133],[-347,3],[-179,2],[-93,1],[-55,-1],[-132,-1],[-19,0],[-299,-2],[-42,0],[-23,0],[-2,0],[-10,0],[-24,0],[-237,-2],[-197,-1],[-13,0],[-123,1],[-76,0],[-28,0],[-171,3],[0,112],[0,127],[0,222],[0,106],[0,47],[0,69],[-2,245],[0,222],[1,160],[1,236],[0,81],[0,71],[0,165],[-91,-1],[-141,-1],[-62,0],[-49,0],[-287,-2],[-55,0],[-18,1],[-16,0]],[[28917,39214],[-15,-20],[-13,-10],[-20,-38],[-12,-8],[-21,-11],[-12,-25],[-23,-34],[-17,-6],[-10,-18],[-8,-76],[0,-41],[-14,1],[-30,5],[-3,27],[-13,45],[-10,19],[-16,14],[-9,-13],[-8,-14],[-16,7],[-10,-15],[-8,-19],[-11,-5],[-10,-14],[-11,-32],[-8,25],[-9,21],[-4,26],[-6,17],[-9,6],[-9,1],[-6,19],[-3,26],[-4,25],[-23,-1],[-7,-10],[-9,-5],[-10,11],[-10,6],[-9,10],[-15,8],[-20,-2],[-12,-2],[-11,-4],[-13,11],[-13,12],[-8,-12],[3,-40],[-12,-36],[-12,-22],[-2,-31],[-6,-20],[-28,-48],[-6,-32],[-2,-34],[-6,-24],[-14,-42],[-6,-33],[-10,-17],[-12,-35],[-6,-29],[-7,-21],[-17,-42],[-19,-10],[-10,-11],[-14,-29],[-26,-56],[-7,-22],[-10,-17],[-41,-26],[-16,-30],[-10,-2],[-14,-16],[-7,-16],[-3,-30],[-3,-38],[-6,-31],[-42,1],[-113,1],[-88,1],[-73,0],[-251,2],[-15,-4],[-197,4],[-27,0],[1,-65],[0,-169],[-1,-66],[0,-39],[1,-28],[0,-43],[2,-181],[0,-133],[0,-65],[0,-126],[0,-40],[0,-171],[1,-102],[0,-1],[0,-81],[0,-169],[1,-184],[0,-145],[0,-75],[-40,0],[-10,0],[-82,0],[-13,0],[-11,1],[-4,0],[-15,0],[-28,0],[-11,0],[-27,0],[-25,0],[-9,0],[-113,1],[-55,-1],[-121,0],[-59,0],[-17,-79],[-8,-14],[-11,-47],[3,-22],[-7,-27],[-2,-25],[-8,-17],[-32,-22],[-10,-17],[-10,-5],[-3,-22],[-14,-23],[1,-22],[-6,-14],[-4,-24],[-11,-28],[2,-21],[-7,-25],[10,-95],[-1,-24],[-1,-32],[4,-22],[-4,-26],[-16,-54],[7,-30],[5,-20],[13,-54],[-21,-33],[-4,-28],[-22,-40],[-10,-20],[-15,-15],[-8,-22],[-16,-49],[4,-40],[-12,3],[-11,0],[-11,-9],[-9,-14],[-9,5],[-9,18],[-10,10],[-30,33],[-10,2],[-14,-17],[-12,-8],[-8,2],[-16,-2],[-9,-4],[-10,-13],[-9,-3],[-11,5],[-9,5],[-15,4],[-12,4],[-28,8],[-38,39],[-8,7],[-16,22],[-8,12],[-14,-6],[-14,5],[-10,10],[-2,-30],[-12,-41],[-12,-36],[-5,-21],[-6,-24],[-10,-11],[-11,-6],[-10,-11],[-7,-19],[-8,-16],[-10,-12],[-10,-7],[-11,-4],[-14,-11],[-5,-26],[-4,-26],[-6,-28],[-8,-28],[-5,-28],[3,-23],[6,-20],[9,-15],[7,-16],[6,-18],[7,-13],[3,-26],[-3,-28],[-5,-30],[-4,-38],[4,-31],[9,-28],[6,-26],[0,-28],[-8,-26],[-8,-20],[4,-25],[9,-19],[10,-20],[10,-19],[8,-20],[5,-19],[5,-21],[2,-24],[2,-32],[0,-37],[-3,-28],[-6,-28],[-1,-26],[1,-26],[5,-26],[7,-21],[7,-24],[7,-24],[2,-30],[2,-32],[8,-17],[20,-43],[1,-24],[0,-30],[-1,-32],[6,-22],[5,-24],[4,-28],[-3,-21],[-9,-15],[-14,-18],[-10,-25],[-4,-26],[-1,-28],[3,-24],[-5,-26],[-8,-11],[-9,-6],[-10,-9],[-18,-4],[-15,-4],[-11,-9],[-12,-2],[-13,-13],[-12,-9],[-8,9],[-11,15],[-16,0],[-8,7],[-9,0],[-15,-15],[-12,-11],[-15,0],[-8,-5],[-14,-10],[-10,-2],[-12,-5],[-10,-6],[-8,-11],[-5,-22],[-13,-23],[-8,-9],[-8,-11],[-11,-25],[-5,-22],[1,-26],[-4,-19],[-12,-11],[-7,-15],[5,-19],[8,-9],[-1,-26],[-6,-26],[4,-19],[7,-28],[9,-24],[6,-19],[-5,-17],[-11,-18],[-7,-23],[-8,-5],[-14,2],[-15,-8],[-29,-50],[-16,-19],[-14,-13],[-11,-17],[-7,-20],[-2,-30],[-3,-23],[-6,-20],[-12,-19],[-9,-13],[-15,-17],[-12,-9],[-8,-4],[-14,2],[-12,8],[-13,9],[-9,2],[-10,-4],[-9,-11],[-7,-12],[-11,-17],[-8,-14],[-9,-6],[-9,-8],[-10,-7],[-14,-11],[-15,-13],[-12,-17],[-10,-13],[-8,-13],[-15,-17],[-7,-22],[-2,-32],[-7,-16],[-12,-19],[-15,-21],[-9,-6],[-2,-25],[-7,-32],[0,-23],[-8,-20],[-12,-27],[-21,-16],[-13,-9],[-21,-2],[-24,-3],[-36,-18],[-27,-12],[-18,0],[-9,6],[-10,3],[-11,-9],[-24,-15],[-34,-22],[-46,-17],[-36,-4],[-15,-6],[-10,-13],[-26,-11],[-16,0],[-26,-8],[-18,-21],[-8,-10],[-11,-16],[-19,-20],[-11,-13],[-4,-6],[-7,-10],[-10,-8],[-10,-7]],[[24682,32360],[-7,25],[0,2],[0,2],[2,65],[0,5],[0,5],[0,9],[0,9],[0,17],[-1,22],[-5,29],[-2,33],[-1,11],[-9,12],[-14,2],[-3,3],[-1,2],[-5,8],[-8,31],[-4,36],[-9,20],[-21,10],[-12,14],[-5,20],[-3,23],[-9,26],[-16,10],[-21,6],[-12,4],[-10,6],[-10,2],[-14,-3],[-11,0],[-16,1],[-10,3],[-18,6],[-9,3],[-9,3],[-13,2],[-8,0],[-11,1],[-15,-8],[-17,2],[-8,6],[-15,4],[-10,-3],[-12,-9],[-10,-6],[-8,0],[-9,1],[-18,-6],[-17,-4],[-11,-1],[-10,4],[-18,2],[-13,4],[-12,9],[-9,8],[-11,5],[-18,6],[-8,3],[-10,2],[-11,1],[-18,16],[-12,9],[-15,0],[-13,-2],[-10,-3],[-10,-3],[-10,-8],[-13,-6],[-14,5],[-11,9],[-13,3],[-9,-1],[-10,-1],[-8,-1],[-15,4],[-9,2],[-15,-1],[-10,-13],[-6,-28],[-18,-38],[-4,-8],[-13,-21],[-14,-24],[-18,-27],[-19,-22],[-12,-11],[-14,-14],[-14,-15],[-8,-7],[-8,-7],[-13,-5],[-11,4],[-8,1],[-9,7],[-14,18],[-11,15],[-9,5],[-12,1],[-12,-4],[-11,-6],[-9,-7],[-10,-7],[-15,-17],[-10,-9],[-4,-8],[-10,-18],[-10,-15],[-15,-14],[-10,-9],[-9,-21],[-13,-15],[-6,-15],[-2,-4],[-11,-18],[-8,-19],[-7,-20],[-5,-19],[-10,-30],[-6,-28],[-2,-25],[-2,-19],[-10,-34],[-11,-27],[-17,-45],[-11,-26],[-6,-16],[-9,-9],[-11,-14],[-15,-6],[-10,-1],[-13,6],[-20,-9],[-12,-8],[-10,-12],[-11,-18],[-10,-28],[-7,-24],[-7,-38],[3,-26],[9,-16],[10,-14],[7,-21],[9,-25],[5,-26],[-5,-22],[-6,-15],[-8,-18],[-16,-11],[-13,-16],[-9,-30],[-15,-20],[-7,-16],[-8,-30],[-9,-30],[-9,-24],[-1,-21],[-5,-28],[-10,-14],[-7,-14],[-8,-18],[-6,-16],[-18,-37],[-9,-25],[-11,-21],[-14,-19],[-10,-15],[-9,-14],[-12,0],[-12,0],[-14,0],[-11,-2],[-9,-5],[-10,-7],[-13,-4],[-14,-4],[-16,19],[-4,38],[-9,26],[-9,7],[-14,1],[-10,-9],[-11,-22],[-11,-15],[-10,-9],[-8,-25],[-7,-23],[-7,-19],[-8,-25],[-6,-24],[-6,-17],[-8,-22],[-4,-22],[-4,-22],[-7,-23],[-6,-20],[-13,-21],[-10,-3],[-11,6],[-14,17],[-6,8],[-5,7],[-13,5],[-3,-3],[-9,-8],[-9,-5],[-9,-2],[-12,6],[-12,14],[-3,11],[-3,9],[-3,13],[-1,1],[-5,23],[-15,7],[-10,8],[-9,8],[-14,14],[-14,7],[-11,6],[-14,1],[-16,-9],[-11,-13],[-18,-28],[5,-29],[-1,-28],[-10,-22],[-2,-4],[-7,-11],[-9,-12],[-9,-13],[-14,-7],[-9,-1],[-9,-12],[-4,-20],[1,-21],[-1,-30],[-5,-9],[-3,-8],[-1,-5],[-3,-13],[0,-24],[-5,-23],[-11,-24],[-7,-17],[-7,-28],[-2,-36],[-2,-41],[-1,-43],[0,-30],[0,-2],[1,-20],[-1,-43],[-8,-32],[-9,-21],[-10,-19],[-2,-30],[-1,-25],[-7,-28],[-6,-18],[-16,-46],[-7,-18],[-14,-20],[-12,-28],[0,-31],[3,-26],[8,-32],[5,-23],[6,-30],[3,-43],[-13,-96],[-13,6],[-13,7],[-10,4],[-9,-9],[-13,15],[-9,10],[-10,-11],[-16,14],[-14,-3],[-15,10],[-9,21],[-10,8],[-8,20],[-11,6],[-9,-5],[-9,0],[-16,14],[-14,25],[-15,4],[-14,33],[-9,6],[-10,6],[-12,12],[-11,14],[-2,25],[-10,25],[2,30],[-9,20],[-54,141],[-4,20],[-7,20],[-13,6],[-9,12],[5,19],[-6,16],[-6,19],[-11,-2],[-8,9],[-9,15],[-6,17],[-4,22],[-13,14],[-15,12],[-12,3],[-10,13],[-8,22],[-3,21],[-12,32],[-11,14],[-2,25],[-10,16],[-2,23],[-8,16],[-5,22],[-9,24],[-7,21],[-16,20],[5,19],[1,37],[-8,17],[-4,20],[-8,20],[-7,11],[-3,24],[13,27],[13,8],[2,30],[-3,51],[6,21],[10,-4],[14,-5],[7,35],[-3,26],[-1,34],[-3,29],[0,55],[-9,24],[-15,18],[-1,25],[-7,26],[10,13],[3,24],[10,33],[-1,32],[-9,2],[-9,2],[-8,18],[-7,20],[7,15],[-4,19],[-2,31],[8,15],[-12,3],[-12,5],[-8,21],[-9,7],[-9,10],[-7,30],[-7,17],[-1,26],[4,24],[11,14],[1,21],[2,27],[-7,15],[0,28],[-10,12],[4,34],[-12,17],[-3,35],[-3,28],[0,24],[-6,22],[-6,22],[-9,26],[-11,34],[-9,8],[-9,13],[-9,22],[-9,16],[-12,10],[2,27],[-6,21],[-7,18],[-11,17],[-9,16],[-1,27],[-10,17],[-12,8],[-7,9],[-9,20],[11,9],[3,27],[1,23],[8,10],[1,25],[-8,19],[-9,16],[-5,21],[-10,14],[-12,12],[-7,15],[-14,18],[-10,7],[5,18],[-9,38],[-12,31],[-3,29],[-4,28],[9,42],[0,26],[-9,26],[-6,24],[-8,50],[-3,37],[-14,15],[-7,12],[-3,22],[-14,32],[-7,26],[-11,13],[-4,29],[-6,17],[-19,34],[-5,20],[-10,33],[-16,29],[-10,39],[-7,33],[-8,42],[-1,32],[-6,23],[-3,27],[-1,52],[-7,18],[-4,31],[-5,28],[-7,13],[1,24],[-33,179],[-8,15],[-9,30],[-12,17],[-8,24],[-9,16],[-19,11],[-7,0],[-33,-26],[-9,3],[-12,0],[-19,-9],[-16,-10],[-14,-11]],[[55223,36319],[-35,-178],[-14,-67],[0,-161],[0,-154],[0,-12],[0,-97],[0,-32],[-1,-181],[-2,-77],[0,-229],[0,-151],[4,-165],[0,-30],[0,-33],[0,-22],[-2,-148],[1,-78],[-429,-18],[-88,-4],[-78,2],[-32,1],[-18,-3],[-50,-1],[1,-231],[0,-3],[0,-76],[1,-296],[5,-326],[0,-54],[1,-257],[-1,-60],[0,-28],[-1,-64],[0,-296],[1,-123],[-1,-100],[-55,2],[-29,1],[-99,4],[-14,0],[-73,4],[-87,3],[0,-108],[1,-135],[0,-75],[2,-321],[1,-193],[1,-120],[5,-299],[5,-292],[0,-30],[5,-311],[-44,0],[-99,-2],[-4,-33],[-1,-1],[0,-68],[2,-343],[0,-103],[1,-172],[3,-458],[0,-121],[0,-100],[2,-25],[4,-50],[2,-28],[4,-38],[0,-20],[0,-12],[0,-57],[0,-33],[0,-32],[0,-65],[0,-243],[0,-97],[0,-233],[0,-95],[-1,-160],[0,-228],[0,-38],[0,-43],[0,-54],[0,-209],[0,-53],[0,-200],[1,-9],[1,-258],[0,-74],[-449,-1],[-65,-1],[-17,-4],[-87,0],[-61,0],[-88,1],[-98,0],[-51,-1],[-3,0],[-70,1],[-38,1],[0,-190],[0,-1],[-1,-117],[0,-327],[-1,-90],[0,-26],[0,-182],[-44,0],[-269,0],[-21,0],[-69,0],[-8,0],[-132,5],[-128,0],[-67,0],[-65,0],[-62,0],[-115,1],[-46,1],[0,-22],[0,-271],[0,-5],[-1,-410],[0,-229],[-165,0],[-206,0],[-186,-2],[-461,6],[-7,-26],[1,-178],[0,-284],[-2,-206],[0,-750],[0,-36],[0,-409],[0,-277],[0,-1],[0,-52],[0,-452],[0,-205],[0,-109],[0,-196],[-1,-568],[-75,3],[-56,-1],[-232,-3],[-207,1],[-98,1],[-199,0],[-31,0],[-16,0],[-178,3],[1,-742],[0,-170],[0,-310],[0,-268],[0,-62],[-1,-510],[0,-66],[-2,-195],[0,-233],[-1,-694],[0,-2],[0,-248],[0,-131],[-1,-173]],[[49840,17530],[-16,0],[-23,0],[-33,0],[-103,-1],[-113,0],[-189,0],[-38,0],[-240,19],[-9,0],[-320,-2],[-158,0],[-128,0],[-1,287],[0,2],[1,707],[-2,664],[0,39],[0,1],[0,238],[0,362],[0,172],[0,158],[-1,211],[-1,327],[0,148],[-1,375],[0,42],[-1,56],[41,0],[45,0],[0,94],[0,94],[0,208],[0,167],[0,337],[0,1],[1,919],[1,709],[0,493],[0,40],[1,194],[5,530],[0,1],[0,79],[0,459],[0,984],[0,159],[3,75],[-5,237],[-2,84],[0,47],[-1,37],[0,25],[0,20],[0,34],[1,358],[1,133],[1,392],[-2,61],[-7,160],[0,23],[0,29],[-7,322],[-4,151],[-1,47],[-3,103],[5,525],[0,2],[1,39],[0,78],[1,40],[0,9],[-1,53],[-1,28],[0,2],[0,27],[1,31],[-1,117],[-2,299],[-1,170],[-1,167],[-138,5],[-111,-4],[-227,-1],[-58,1],[-64,2],[0,86],[0,348],[0,24],[0,62],[0,26],[0,39],[0,157],[0,78],[-1,75],[0,58],[0,57],[0,24],[0,49],[0,3],[0,29],[0,558],[0,263],[1,239],[1,198],[-1,274],[-1,117],[0,38],[0,22],[0,143],[0,99],[0,44],[0,161],[0,150],[0,125],[0,572],[0,409],[0,102],[0,176],[0,57],[0,469],[0,32],[0,40],[1,187],[0,3],[0,1117],[0,132],[0,6],[0,226],[0,247],[0,185],[90,1],[0,407],[0,51],[0,194],[0,89],[0,349]],[[43844,39505],[0,-138],[0,-32],[0,-201],[0,-160],[0,-139],[0,-66],[0,-92],[0,-99],[0,-81],[0,-77],[-37,0],[-17,0],[0,-80],[0,-30],[0,-258],[0,-111],[0,-39],[-1,-117],[0,-38],[-1,-77],[0,-95],[-1,-38],[0,-29],[1,-78],[0,-102],[0,-81],[0,-100],[0,-64],[0,-76],[0,-95],[0,-94],[0,-108],[-1,-34],[-1,-151],[0,-30],[-1,-98],[-1,-126],[-1,-65],[0,-89],[-1,-53],[0,-31],[-1,-34],[0,-2],[-2,-76],[-3,-95],[-2,-66],[-2,-402],[2,-91],[0,-36],[0,-32],[0,-28],[2,-31],[0,-21],[2,-27],[0,-10],[1,-20],[1,-48],[5,-108],[2,-35],[4,-62],[3,-99],[5,-84],[1,-36],[4,-64],[1,-63],[1,-30],[0,-54],[0,-36],[-1,-99],[-1,-83],[1,-78],[2,-129],[0,-236],[0,-165],[0,-111],[1,-128],[0,-31],[0,-40],[-1,-150],[-1,-198],[0,-144],[0,-67],[0,-18],[-2,-309],[0,-42],[-1,-35],[0,-74],[-1,-55],[-1,-158],[0,-62],[0,-87],[0,-173],[0,-34],[-1,-57],[0,-63],[0,-39],[0,-30],[-1,-24],[0,-40],[0,-38],[0,-82],[0,-158],[0,-30],[-1,-227],[0,-92],[-48,0],[0,-53],[0,-41],[1,-73],[0,-112],[0,-92],[1,-100],[0,-34],[-1,-67],[0,-27],[0,-72],[-2,-111],[1,-32],[0,-117],[0,-148],[0,-70],[-1,-241],[-1,-161],[0,-42],[-1,-70],[-1,-130],[0,-24],[0,-29],[0,-9],[0,-16],[0,-58],[-1,-62],[0,-62],[0,-138],[0,-98],[0,-84],[0,-77],[1,-42],[0,-26],[0,-39],[0,-39],[0,-4],[0,-32],[0,-23],[0,-8],[1,-41],[0,-52],[0,-136],[1,-98],[0,-33],[0,-42],[0,-67],[0,-70],[1,-26],[0,-57],[0,-48],[0,-70],[0,-71],[1,-117],[3,-206],[0,-28],[0,-69],[0,-80],[0,-114],[0,-36],[0,-96],[-30,4],[-13,1],[-10,2],[-52,6],[-17,2],[-48,-1],[-112,-10],[-64,6],[-9,0],[-70,1],[-92,1],[-2,-186],[-2,-202],[-4,-491],[-1,-60],[0,-85],[0,-98],[0,-42],[0,-62],[-1,-162],[0,-29],[-56,0],[-90,0],[-108,2],[-70,1],[-50,0],[-70,2],[-64,1],[-2,-238],[1,-26],[0,-49],[1,-57],[2,-171],[0,-33],[5,-209],[-1,-497],[-1,-210],[0,-76],[-1,-145],[0,-110],[0,-42],[13,0],[-1,-119],[0,-122],[0,-57],[-1,-270],[0,-169],[0,-124],[0,-172],[0,-38],[-1,-111],[0,-130],[0,-40],[0,-61],[-1,-54],[-1,-177],[1,-245],[-15,6],[-84,-3],[-44,-1],[-41,-1],[-38,0],[-26,0],[-21,-1],[-98,-1],[-52,-1],[-59,0],[-62,-1],[-53,-1],[-31,0],[-43,-1],[-24,0],[-78,1],[-234,5],[0,-367],[0,-311],[0,-455],[0,-286],[0,-205],[0,-212],[0,-14],[0,-95],[0,-102],[0,-134],[-1,-82],[-1,-155],[-2,-186],[-1,-119],[0,-242],[-1,-53],[0,-34],[-2,-703],[-9,-1],[-54,-3],[0,-167],[0,-196],[0,-31],[0,-154],[0,-28],[0,-334],[0,-33],[0,-24],[0,-102],[0,-26],[0,-132],[0,-97],[-1,-124],[0,-8],[0,-179],[11,-155],[1,-93],[0,-27],[0,-307],[1,-145],[0,-103],[0,-94],[1,-79],[1,-208],[1,-348],[0,-12],[0,-10],[1,-171],[4,-389]],[[41677,13852],[-9,0],[-82,-1],[-1,-30],[-1,-119],[-4,-842],[0,-64],[0,-2],[-1,-27],[0,-147],[0,-22],[2,-123],[0,-32],[4,-41],[-3,-26],[0,-20],[0,-32],[-1,-98],[-1,-135],[-1,-91],[0,-52],[-1,-54],[0,-39],[-1,-162],[-1,-85],[-1,-148],[-1,-72],[-1,-259],[-1,-114],[0,-61],[0,-207],[0,-15],[0,-14],[0,-80],[1,-97],[0,-142],[0,-101],[0,-83],[0,-202],[1,-168],[0,-44],[0,-270],[0,-12],[1,-369],[0,-13],[0,-290],[0,-29],[1,-141],[0,-162],[0,-40],[0,-10],[0,-17],[0,-11],[0,-11],[7,-519],[2,-985],[0,-287],[0,-258],[0,-31],[0,-31],[0,-1],[1,-443],[0,-126],[2,-187],[1,-31],[2,-129],[1,-78],[2,-71],[3,-195],[4,-241],[2,-128],[2,-102],[1,-90],[1,-60],[8,-498],[0,-7],[9,-521],[6,-355],[5,-272],[0,-33],[1,-23],[2,-197],[0,-32],[-12,12],[-10,18],[-22,10],[-10,-12],[-15,-3],[-46,19],[-25,24],[-39,53],[-28,31],[-41,2],[-52,40],[-51,26],[-70,69],[-44,-26],[-15,1],[-74,162],[-58,3],[-38,97],[-43,30],[-67,370],[71,335],[-81,65],[-82,-15],[-65,238],[-43,13],[-69,49],[-32,38],[-36,77],[0,43],[4,27],[-3,93],[0,59],[6,49],[-7,49],[-115,81],[-58,63],[-56,-16],[-35,4],[-22,8],[-15,-9],[-28,4],[-7,27],[-14,9],[-26,-14],[-17,21],[-1,26],[-13,15],[-8,31],[5,44],[-16,76],[3,51],[-19,45],[7,29],[8,16],[2,75],[-10,70],[-22,28],[1,33],[8,28],[-11,45],[-14,36],[2,54],[-43,53],[1,23],[14,20],[12,14],[12,8],[11,16],[41,24],[18,4],[13,16],[18,4],[53,80],[-53,60],[-12,52],[3,27],[-14,33],[-28,48],[-12,46],[-38,78],[-8,25],[-16,24],[-18,61],[-17,17],[-28,-6],[-11,10],[-16,73],[1,23],[-16,23],[4,24],[-12,6],[-32,-21],[-40,-9],[-22,-20],[-20,-23],[-35,-27],[-9,39],[-10,10],[-25,18],[-17,44],[-17,77],[38,11],[12,43],[4,26],[9,15],[10,44],[10,25],[27,20],[12,39],[-10,47],[-26,19],[-34,95],[-13,35],[-3,9],[0,73],[-10,39],[-26,67],[-31,16],[-26,43],[-17,1],[-18,2],[-13,46],[-15,28],[-16,38],[0,36],[-2,21],[6,22],[4,37],[10,44],[-4,49],[-12,27],[-29,31],[-4,21],[-8,27],[-18,10],[-34,35],[-11,26],[-73,113],[0,28],[-38,60],[-8,108],[4,51],[-1,54],[-37,57],[-25,1],[-47,43],[-23,-60],[-42,-61],[-21,-35],[-16,-9],[-26,6],[-25,34],[-28,65],[-26,94],[-35,62],[-3,29],[-1,78],[-18,19],[-8,14],[-13,35],[-17,28],[-14,29],[4,30],[-26,41]],[[38901,8476],[1,426],[0,83],[0,172],[0,22],[0,220],[-1,613],[0,102],[0,74],[-1,143],[1,29],[-1,166],[-1,34],[0,31],[0,4],[0,23],[0,11],[0,12],[0,38],[0,29],[0,116],[0,202],[1,103],[0,103],[1,243],[0,63],[0,88],[1,64],[0,54],[0,175],[15,-1],[28,4],[0,109],[0,64],[0,80],[0,58],[0,59],[0,36],[0,36],[0,14],[-1,280],[0,100],[0,126],[0,68],[0,59],[0,47],[0,54],[0,28],[0,29],[0,73],[0,99],[0,55],[0,47],[0,27],[-1,32],[0,44],[0,23],[0,127],[0,87],[0,29],[0,56],[0,35],[0,42],[0,24],[0,40],[0,123],[0,55],[0,90],[0,48],[0,34],[0,35],[0,39],[0,86],[0,41],[0,37],[0,29],[0,27],[0,114],[0,39],[0,39],[0,3],[0,33],[0,51],[0,36],[0,29],[0,46],[0,42],[0,26],[0,28],[0,31],[0,29],[0,27],[0,42],[0,28],[0,26],[0,28],[0,27],[0,31],[0,53],[0,70],[0,28],[0,35],[0,37],[0,133],[-2,502],[-1,108],[2,64],[2,45],[0,31],[0,161],[0,252],[0,130],[-1,40],[0,109],[0,1],[-1,586],[0,49],[0,38],[0,333],[-1,155],[0,154],[0,175],[0,74],[0,74],[0,31],[0,31],[-1,40],[0,13],[0,96],[-1,65],[0,37],[-1,37],[0,23],[0,63],[0,35],[0,48],[1,39],[0,42],[0,26],[0,63],[0,24],[0,29],[0,298],[0,6],[0,81],[0,43],[0,43],[0,124],[0,91],[1,51],[1,493],[-1,459],[-1,76],[0,22],[49,0],[35,0],[46,-1],[35,0],[25,0],[-1,86],[-1,137],[0,58],[0,28],[-1,25],[-1,70],[-3,121],[-1,84],[0,68],[-1,182],[-1,126],[0,115],[-1,91],[0,68],[0,57],[0,43],[-1,31],[1,137],[2,337],[0,44],[0,213],[0,101],[0,26],[0,35],[0,112],[-1,52],[0,264],[0,61],[0,10],[0,27],[0,35],[0,290],[0,2],[0,39],[1,45],[1,37],[0,119],[0,305],[0,42],[1,24],[0,297],[1,293],[0,105],[0,245],[1,82],[0,161],[0,92],[0,29],[0,7],[0,141],[0,116],[0,28],[0,127],[0,28],[0,48],[0,47],[-2,115],[-1,91],[-1,57],[0,64],[0,43],[0,23],[-1,107],[1,43],[0,33],[0,66],[0,40],[-49,2],[-52,2],[-27,1],[-17,0],[-25,1],[-9,0],[-24,0],[-244,-3],[-48,0],[-96,1],[-85,1],[-15,0],[-74,-1],[-13,0],[-78,0],[-20,2],[-23,2],[-5,0],[-10,-1],[-10,0],[-10,0],[-16,0],[-38,0],[-10,0],[-10,0],[-21,1],[-14,0],[-15,0],[-9,0],[-21,0],[-68,1],[-43,0],[-13,0],[-10,1],[-12,2],[-10,2],[-156,-5],[-46,-1],[-14,-1],[-11,0],[-3,0],[-11,0],[-57,-2],[0,27],[-1,37],[0,58],[-1,193],[-42,0],[-78,-1],[-26,0],[-17,16],[0,212],[-4,84],[-18,0],[-22,-1],[-70,-2],[-29,0],[-10,0],[-24,-1],[0,46],[1,23],[-3,119],[-1,64],[-3,54],[-165,0],[-2,317],[-98,-2],[-32,-1],[-24,-3],[-18,0],[-1,286],[0,37],[-21,-3],[-34,-4],[-14,-1],[-20,0],[-30,-1],[-25,-1],[-14,0],[-10,1],[0,61],[0,55],[-1,66],[-1,137],[-38,-1],[-9,0],[-23,-1],[-22,0],[-12,0],[-11,-1],[-39,0],[-11,-1],[-1,214],[0,23],[0,2],[0,24],[-1,2],[0,44],[-25,0],[-52,0],[-12,-1],[-38,0],[-12,0],[-33,0],[-49,0],[-26,0],[-10,0],[-45,0],[-24,-1],[-11,0],[-15,-2],[-12,0],[-17,1],[-30,1],[-19,1],[-27,1],[-13,0],[-9,0],[-13,1],[-12,0],[-10,1],[-2,74],[0,70],[0,368],[0,27],[0,29],[0,60],[-11,0],[-139,3],[-35,0],[-35,1],[-14,0],[-66,0],[-12,0],[-7,-1],[-2,0],[-25,0],[0,75],[0,90],[-1,140],[-59,1],[-29,0],[-28,0],[-15,0],[-30,0],[-13,0],[-39,1],[-134,0],[0,19],[0,83],[-1,26],[0,22],[0,23],[0,35],[0,26]],[[49840,17530],[69,0],[293,0],[164,0],[49,2],[1,0],[804,-1],[9,0],[10,0],[167,-1],[117,-4],[255,0],[29,0],[128,0],[117,0],[0,-98]],[[52052,17428],[0,-32],[-1,-341],[0,-77],[0,-266],[0,-86],[0,-41],[0,-71],[0,-120],[0,-35],[0,-189],[0,-16],[0,-19],[-1,-167],[1,-189],[0,-227],[0,-9],[0,-192],[0,-547],[0,-4],[0,-156],[0,-57],[-1,-178],[-1,-57],[0,-31],[0,-33],[-1,-158],[0,-260]],[[52048,13870],[-321,9],[-112,3],[-9,1],[-1,0],[-24,0],[-35,2],[-1,0],[-96,2],[-43,6],[-145,0],[-91,-1],[-11,0],[-207,-1],[-19,0],[-39,0],[-284,1],[-22,0],[-112,0],[-26,0],[-37,-1],[-15,0],[-17,0],[-15,0],[-13,6],[-34,1],[-25,0],[-42,1],[-22,0],[-71,1],[-72,2],[-24,0],[-33,0],[-20,0],[-30,0],[-2,0],[-305,-1],[-191,6],[-27,0],[-130,-35],[-242,-49],[-13,-3],[-216,-50],[-75,-14],[-16,-3],[-3,-1],[-26,-5],[-10,-2],[-5,-2],[-190,-2],[-245,7],[-108,1],[-101,1],[-91,5],[-17,2],[-77,11],[-220,37],[-147,-2],[-105,19],[-66,14],[-28,-14],[-81,-34],[-226,-98],[-212,-10],[-497,-22],[-106,-1],[-69,1],[-62,0],[-13,0],[-242,3],[-12,-4],[-32,-1],[-17,1],[-60,0],[-24,1],[-7,0],[-9,0],[-90,0],[-403,-5],[-293,5],[-90,0],[-150,0],[-11,0],[-12,0],[-5,0],[-76,0],[-25,0],[-379,121],[-90,42],[-134,45],[-61,20],[-103,-2],[-70,-1],[-503,-10],[-80,-5],[-111,-1],[-102,-1],[-367,-5],[-124,-1],[-74,-1],[-217,-2],[-46,-1],[-15,-2],[-347,-2]],[[32138,29944],[-9,3],[-2,1],[-14,5],[-14,-9],[-29,-5],[-42,-2],[-257,-11],[-126,-5],[-13,-3],[-218,-13],[-151,-7],[-321,-17],[-162,-8],[-99,-6],[-91,-5],[-20,-1],[-49,-3],[-1,0],[-41,-3],[-48,-2],[-13,-1],[-14,-1],[-526,-29],[-91,153],[-77,141],[-11,19],[-12,24],[-8,11],[-9,3],[-11,4],[-12,2],[-13,8],[-13,5],[-13,2],[-12,-1],[-11,-1],[-13,-2],[-10,-14],[-9,-21],[-11,-21],[-9,-6],[-13,-9],[-2,-6],[-9,-20],[-8,-14],[-6,-21],[-10,-20],[-19,-32],[-10,-16],[-9,-27],[-9,-22],[-4,-14],[-9,-31],[-2,-36],[-2,-43],[-13,-50],[-3,-5],[-12,-28],[-5,-19],[-2,-23],[-4,-23],[-4,-21],[-2,-31],[-6,-18],[-12,-27],[-4,-24],[-8,-25],[2,-31],[-3,-23],[-1,-28],[0,-28],[-1,-22],[0,-27],[-2,-34],[5,-26],[2,-26],[-3,-22],[0,-25],[-2,-22],[0,-7],[0,-19],[5,-18],[4,-27],[0,-10],[1,-17],[5,-19],[-1,-14],[-1,-13],[-11,-35],[-8,-13],[-6,-17],[-10,-20],[-8,-10],[-11,-29],[-9,-23],[-5,-22],[-11,-29],[-3,-3],[-9,-8],[-20,-17],[-7,-2],[-11,-4],[-8,-16],[-7,-27],[-11,-20],[-4,-9],[-4,-7],[-7,-18],[-2,-37],[-7,-20],[-8,-16],[-6,-20],[-1,-23],[-9,-20],[-7,-21],[-6,-18],[-10,-12],[-13,-9],[-12,-13],[-5,2],[-6,3],[-20,-6],[-10,-10],[-10,-11],[-9,1],[-14,-8],[-9,0],[-8,-8],[-10,-14],[-13,1],[-10,-4],[-14,-16],[-4,-4],[-10,-7],[-8,-7],[-16,-4],[-10,0],[-11,-3],[-10,-28],[-11,-12],[-8,-5],[-12,-14],[-6,-16],[-10,-11],[-8,-10],[-8,-13],[-12,-11],[-6,-17],[-6,-21],[-5,-21],[-6,-24],[-15,-27],[-9,-13],[-13,-27],[-5,-27],[-8,-13],[-8,-19],[-13,-20],[-7,-13],[-11,-10],[-9,-7],[-12,-7],[-9,-13],[-17,-15],[-11,-10],[-8,-9],[-15,-11],[-10,-13],[-11,-10],[-13,-12],[-9,-19],[-11,-15],[-9,-8],[-15,-23],[-7,-10],[-13,-15],[-10,-13],[-13,-10],[-10,-10],[-11,-10],[-14,-14],[-5,-7],[-5,-9],[-9,-5],[-10,-7],[-10,0],[-8,-15],[-7,-13],[-4,-7],[-6,-12],[-9,-2],[-9,-11],[-12,-16],[-12,-19],[-9,-4],[-10,-19],[-9,-14],[-12,-11],[-11,-11],[-8,-9],[-8,-11],[-9,-16],[-3,-2],[-7,-6],[-12,-15],[-8,-17],[-4,-20],[-12,-11],[-8,-21],[-13,-17],[-12,-10],[-7,-17],[-9,-7],[-10,2],[-12,-3],[-10,-7],[-7,-1],[-13,-3],[-9,-10],[-12,-5],[-16,2],[-8,4],[-3,2],[-9,4],[-8,-5],[-23,-13],[-9,-13],[-9,-7],[-7,-25],[-2,-9],[-5,-21],[-3,-6],[-6,-14],[-4,-21],[-10,-7]],[[28002,27289],[0,30],[-2,23],[-8,27],[-16,9],[-13,14],[-4,2],[-9,7],[-10,-1],[-18,24],[-6,26],[-5,23],[-9,6],[-8,22],[-11,18],[5,21],[6,21],[-4,27],[-12,8],[-5,17],[-5,22],[-1,25],[8,33],[14,27],[1,24],[-13,18],[-12,18],[-8,25],[0,33],[6,24],[9,16],[14,7],[10,9],[11,23],[16,-2],[12,-5],[10,6],[9,13],[4,26],[-2,18],[-1,9],[-5,19],[-16,15],[-8,14],[-2,29],[-3,12],[-2,8],[-2,6],[-4,12],[-2,13],[-1,13],[-4,25],[-1,18],[0,16],[5,31],[0,22],[-2,25],[-2,12],[-3,14],[-4,38],[-3,21],[-8,32],[-10,22],[-2,5],[-8,7],[-13,0],[-8,-4],[-11,-16],[-7,-15],[-15,-3],[-13,4],[-13,-1],[-15,22],[-19,20],[-18,-1],[-11,-10],[-14,-18],[-9,-8],[-8,3],[-11,23],[1,32],[0,11],[1,32],[-7,30],[-13,18],[-10,8],[-9,4],[-8,7],[-14,13],[-13,15],[-11,13],[-9,22],[-4,32],[-5,32],[-13,36],[-10,23],[-11,25],[-17,15],[-13,11],[-9,6],[-13,26],[-5,25],[0,27],[11,24],[14,-1],[10,-10],[7,-13],[9,-16],[15,1],[12,16],[8,11],[12,34],[3,22],[4,28],[-4,30],[-12,19],[-14,-2],[-12,-7],[-14,-7],[-22,5],[-13,16],[-10,11],[-8,16],[-9,23],[-5,17],[-1,3],[-11,29],[-11,13],[-6,33],[7,23],[7,31],[-1,23],[-2,23],[7,17],[18,15],[7,15],[6,23],[0,33],[2,23],[-3,35],[-2,23],[-2,23],[10,26],[1,30],[-4,26],[-5,22],[-9,24],[-9,19],[-10,7],[-13,6],[-11,2],[-5,-2],[-5,0],[-13,-2],[-9,20],[-3,32],[9,37],[7,24],[4,27],[-1,22],[-2,22],[-2,24],[-5,18],[-4,27],[-6,33],[-7,19],[-14,19],[-9,10],[-8,13],[-13,12],[-8,3],[-9,4],[-12,7],[-10,17],[-8,17],[-10,15],[-11,13],[-9,9],[-10,2],[-11,2],[-11,-2],[-12,7],[-9,15],[-9,38],[-3,24],[-1,4],[-3,18],[-2,21],[-4,20],[-7,15],[-8,18],[-13,16],[-12,-3],[-24,-11],[-15,-12],[-17,-34],[-6,-15],[-12,-13],[-1,0],[-6,-6],[-9,-7],[-14,8],[-10,15],[0,1],[-6,11],[-4,6],[-5,6],[-4,5],[-15,6],[-8,2],[-13,7],[-9,19],[-5,18],[-9,27],[-6,14],[-10,9],[-10,9],[-11,22],[-10,12],[-4,26],[-8,25],[-9,19],[-12,21],[-9,20],[-11,17],[-11,15],[-15,11],[-15,9],[-10,11],[-12,14],[-5,7],[-8,8],[-16,11],[-10,2],[-10,5],[-11,2],[-3,-1],[-8,-1],[-6,-2],[-5,0],[-13,-9],[-12,-4],[-11,0],[-14,8],[-14,17],[-15,9],[-10,2],[-10,2],[-10,3],[-11,-1],[-11,-4],[-9,-6],[-13,-5],[-15,-10],[-11,-7],[-11,-8],[-14,-7],[-11,-2],[-12,5],[-8,8],[-10,10],[-9,16],[-11,23],[-10,28],[-7,20],[-7,17],[-7,22],[-8,23],[-8,22],[-13,11],[-12,16],[-13,10],[-8,13],[-11,18],[-14,10],[-23,1],[-16,-9],[-14,-26],[-7,-19],[-16,-13],[-9,-13],[-5,-21],[0,-26],[3,-22],[-4,-30],[0,-2],[-12,-17],[-3,-2],[-15,-11],[-16,3],[-9,2],[-15,15],[-20,23],[-9,9],[-10,9],[-9,6],[-12,20],[-12,21],[-9,17],[-11,24],[-7,24],[-5,34],[0,26],[1,30],[4,41],[-3,22],[-10,18],[-10,14],[-11,15],[-12,11],[-13,28],[-8,21],[-9,18],[-9,11],[-5,8],[-11,2],[-12,7],[-21,4],[-9,-2],[-10,-7],[-6,-4],[-5,-4],[-9,-9],[-15,-11],[-9,-17],[-10,-15],[-6,-2],[-9,-3],[-12,1],[-5,0],[-6,19],[-7,15],[-23,13],[-17,6],[-19,5],[-16,0],[-11,11],[-14,15],[-3,1],[-9,3],[-9,-9],[-11,-8],[-11,0],[-5,1],[-4,1],[-2,1],[-7,3],[-16,13],[-8,11],[-11,17],[-15,18],[-8,8],[-15,9],[-13,2],[-16,-5],[-16,5],[-10,6],[-27,13],[-10,13],[-8,11],[-8,3],[-1,0],[-8,-20],[-8,-13],[-1,-1],[-11,0],[-13,-13],[-9,-1],[-13,0],[-11,10],[-3,3],[-6,4],[-13,12],[-3,23],[-5,24],[5,22],[0,3],[0,32],[-1,22],[-2,16],[-2,14],[-5,21],[-10,-6],[-8,-8],[-12,3],[-11,3],[-10,4],[-14,13],[-19,19],[-16,18],[-11,7],[-11,16],[-10,19],[-9,18],[-8,18],[-6,15],[-8,27],[0,8],[-1,16],[7,29],[2,28],[-8,27],[-8,11],[-9,8],[-8,5],[-20,5],[-11,3],[-11,6],[-11,1],[-10,0],[-8,8],[-12,10],[-11,8],[-15,10],[-6,14],[-5,21],[-3,24],[-5,31],[-5,18],[-15,18],[-11,4],[-9,7],[-12,18],[-8,11],[-8,14],[-12,27],[-17,34],[-9,13],[-11,5],[-9,3],[-13,14],[-14,25],[-13,27],[-18,33],[-8,16],[-10,20],[-16,6],[-11,2],[-12,-2],[-1,0],[-23,1],[-14,3],[-10,8],[-17,11],[-9,6],[-27,22],[-13,14],[-14,27],[-3,22],[2,29],[2,24],[-10,45]],[[99962,32818],[1,-150],[-1,-65],[1,-29],[-1,-25],[2,-23],[0,-191],[7,-1639],[0,-79],[2,-404],[0,-126],[1,-50],[0,-62],[0,-309],[0,-2],[0,-631],[0,-254],[1,-360],[0,-178],[0,-82],[0,-81],[1,-553],[0,-32],[0,-13],[0,-191],[0,-379],[1,-223],[0,-89],[1,-107],[0,-147],[0,-50],[1,-247],[3,-219],[0,-45],[0,-23],[0,-32],[0,-43],[0,-30],[-1,-15],[0,-21],[1,-46],[0,-28],[0,-32],[0,-37],[0,-34],[0,-7],[1,-22],[0,-26],[0,-23],[0,-48],[0,-37],[0,-24],[0,-28],[0,-30],[0,-37],[1,-41],[0,-31],[0,-25],[0,-36],[0,-47],[0,-30],[0,-32],[0,-35],[0,-34],[1,-32],[0,-47],[0,-42],[0,-26],[0,-35],[0,-75],[0,-28],[0,-24],[0,-34],[1,-36],[0,-51],[-3,-21],[1,-84],[0,-112],[0,-52],[1,-7],[0,-22],[2,-180],[0,-50],[0,-3],[2,-101],[0,-28],[0,-2],[0,-40],[0,-124],[0,-2],[1,-96],[0,-252],[0,-88],[1,-478],[0,-7],[0,-28],[1,-344],[2,-304],[0,-112],[-1,-252],[-1,-334],[0,-34],[1,-78],[1,-94],[0,-30],[-1,-148],[0,-146],[0,-298],[1,-281],[1,-351],[0,-314],[1,-329],[0,-532],[0,-195],[0,-8],[0,-50],[0,-290],[0,-961],[0,-168],[0,-216],[3,-280],[0,-85],[0,-101],[0,-75],[0,-108],[-4,-358],[0,-64],[0,-5],[0,-157],[0,-527],[0,-2],[0,-65],[0,-263],[0,-42],[-1,-311],[0,-93],[0,-42],[0,-156],[0,-216],[4,-42],[-73,-9],[-9,-1],[-24,-2],[-44,-3],[-15,1],[-6,0],[-109,4],[-272,1],[-134,5],[-28,0],[-33,1],[-104,1],[-11,0],[-91,0],[-149,0],[-10,0],[-17,0],[-125,1],[-25,0],[-290,2],[-53,1],[-2,0],[-128,2],[-108,-5],[-273,2],[-4,0],[-53,0],[-420,1],[-113,0],[-3,0],[-70,2],[-128,0],[-48,0],[-124,0],[-72,2],[-7,0],[-15,0],[-14,0],[-1,0],[-23,0],[-37,1],[-95,0],[-225,2],[-190,-1],[-62,1],[-51,-1],[-116,4],[-207,2],[-89,0],[-140,-1],[-84,3],[-36,1],[-26,-1],[-15,0],[-145,2],[-132,2],[-56,-2],[-28,0],[-194,2],[-41,-2],[-11,-6],[-34,2],[-1,0],[-87,3],[-63,3],[-117,4],[-119,5],[-88,3],[-20,-2],[-12,0],[-147,-1],[-23,-5],[-35,-3],[-26,1],[-16,0],[-13,2],[-10,2],[-21,-2],[-10,0],[-29,1],[-19,0],[-52,1],[-20,1],[-14,0],[-77,4],[-16,2],[-56,1],[-29,0],[-2,0],[-14,0],[-13,1],[-8,0],[-87,1],[-116,1],[-52,1],[-9,0],[-47,1],[-120,0],[-92,0],[-23,0],[-14,3],[-14,0],[-96,0],[-8,0],[-37,0],[-65,0],[-70,0],[-212,0],[-14,0],[-62,0],[-82,0],[-73,0],[-13,0],[-53,0],[-12,0],[-63,0],[-136,6],[-31,1],[-149,1],[-57,-2],[-109,1]],[[91683,13830],[1,351],[0,67],[0,109],[0,488],[0,81],[-1,253],[0,96],[0,75],[0,74],[0,68],[0,283],[0,38],[1,170],[0,210],[0,107],[0,32],[0,68],[0,88],[0,27],[0,50],[0,27],[-1,54],[0,220],[-1,105],[0,120],[-1,108],[1,29],[1,54],[-2,142],[0,50],[1,161],[1,216],[0,223],[0,194],[0,242],[-1,135],[-1,194],[0,114],[1,23],[0,86],[0,16],[0,70],[1,59],[0,108],[0,206],[0,45],[0,73],[0,50],[0,236],[1,196],[0,125],[0,173],[0,273],[0,3],[0,134],[0,233],[0,153],[0,37],[0,27],[0,63],[0,17],[0,46],[100,2],[40,-1],[35,-3],[14,0],[28,-2],[97,5],[102,-1],[9,0],[1,99],[0,189],[-3,206],[0,53],[0,287],[2,111],[0,72],[0,73],[0,44],[0,98],[-1,82],[0,54],[1,192],[1,391],[47,0],[0,165],[1,72],[0,2],[-1,50],[0,60],[0,28],[0,134],[0,93],[0,93],[-1,239],[1,25],[0,30],[-3,28],[2,23],[2,194],[-1,34],[0,46],[1,24],[0,133],[0,52],[0,354],[0,209],[0,219],[0,522],[-2,51],[0,64],[0,27],[0,35],[0,41],[0,225],[0,270],[-2,386],[1,337],[0,4],[1,180],[2,1039],[-2,359],[0,186],[-1,245],[-1,183],[-3,159],[0,116],[1,592],[0,90]],[[60008,26983],[-15,2],[-19,1],[-11,1],[-13,8],[-12,7],[-8,4],[-5,2],[-7,3],[-9,3],[-9,3],[-13,8],[-9,6],[-23,6],[-16,-3],[-14,-15],[-8,-9],[-11,-34],[-4,-31],[-6,-31],[-26,-29],[-17,-4],[-14,-4],[-37,-14],[-38,-16],[-24,-16],[-28,-24],[-9,-6],[-26,-1],[-14,-1],[-31,-2],[-25,6],[-18,3],[-19,-6],[-31,-4],[-24,25],[-20,27],[-21,15],[-1,1],[-18,5],[-17,-8],[-11,-5],[-10,-5],[-35,-18],[-19,-10],[-17,-3],[-35,32],[-12,13],[-27,24],[-33,43],[-26,26],[-18,16],[-3,1],[-27,12],[-16,2],[-9,3],[-13,3],[-9,10],[-8,11],[-7,23],[-11,13],[-15,21],[-17,10],[-21,11],[-12,7],[-10,2],[-9,-3],[-23,-1],[-12,-11],[-7,-14],[-15,-23],[-28,-36],[-31,-38],[-56,-27],[-19,-3],[-25,8],[-23,-13],[-16,-12],[-8,-8],[-12,-9],[-18,2],[-25,-11],[-20,-30],[-11,-17],[-13,-28],[-8,-31],[-8,-14],[-7,-14],[-13,0],[-11,11],[-10,3],[-19,-2],[-12,-7],[-9,-20],[-17,-39],[-7,-12],[-14,-26],[-10,-17],[-8,-18],[-7,-25],[-9,-27],[-3,-22],[-7,-18],[-14,-20],[-14,-12],[-11,-5],[-11,0],[-24,-9],[-17,-4],[-48,-32],[-23,-21],[-24,-21],[-21,-15],[-15,-11],[-8,-11],[-9,-5],[-15,10],[-14,14],[-14,5],[-17,4],[-25,8],[-21,18],[-15,1],[-14,14],[-16,-10],[-16,-8],[-15,-7],[-10,-3],[-10,-10],[-55,-31],[-15,-3],[-14,-2],[-13,2],[-11,9],[-15,12],[-20,1],[-13,-3],[-20,18],[-30,26],[-10,5],[-10,5],[-15,8],[-14,5],[-14,6],[-12,4],[-11,-7],[-2,-13],[-1,-15],[-1,-647],[-1,-213],[0,-150],[-1,-350],[-27,1],[-127,0],[-54,0],[-73,0],[-82,1],[-68,0],[-93,0],[0,-57],[0,-146],[0,-82],[1,-139],[0,-75],[-1,-103],[0,-145],[0,-337],[0,-35],[-1,-148],[-77,0],[-167,2],[-249,0],[-118,0],[-12,0],[-95,0],[-44,0],[-176,-3],[-83,1],[-20,0],[-46,3],[-14,4],[-151,-1],[-83,-2],[-36,-1],[1,-92],[0,-52],[-1,-170],[-19,0],[-135,-1],[-43,0],[-65,0],[-81,-1],[-1,0],[-46,-1],[-14,0],[-54,-1],[-59,0],[0,-104],[1,-191],[-17,-16],[-31,-1],[-122,-1],[0,-116],[0,-27],[1,-28],[0,-140],[-93,0],[-63,1],[-42,0],[-23,0],[-35,0],[-23,1],[-30,0],[-21,0],[-13,0],[0,-48],[1,-88],[0,-53],[0,-15],[0,-37],[0,-33],[0,-22],[-19,-19],[-1,0],[-18,0],[-11,0],[-40,-1],[-11,0],[-15,0],[-8,0],[-49,0],[0,-154],[0,-158],[-31,4],[-140,1],[-1,-182],[-1,-42],[1,-88],[-172,1],[0,-54],[1,-57],[-1,-132],[0,-41],[0,-27],[-170,-1],[-1,-78],[1,-52],[0,-24],[0,-65],[0,-71],[0,-26],[-15,0],[-34,0],[1,-202],[0,-111],[-13,0],[-37,0],[-101,2],[-23,0],[2,-597],[0,-33],[-170,2],[-2,-273],[0,-42],[3,-384],[0,-237],[-45,0],[-85,0],[-12,2],[-68,-1],[-8,0],[-116,-1],[-61,-1],[-98,-1],[-48,0],[-3,0],[-35,0],[-46,0],[-18,1],[-16,1],[-22,1],[0,-28],[0,-41],[0,-20],[0,-46],[0,-109],[-5,-967],[0,-247],[0,-567],[-95,-1],[-99,0],[-98,0],[-205,4],[-62,-1],[-24,0],[-101,1],[-11,0],[-31,0],[-10,0],[-156,0]],[[81348,17697],[75,-1],[58,-1],[0,-90],[0,-238],[0,-168],[0,-144],[1,-496],[0,-44],[0,-36],[0,-328],[0,-256],[0,-306],[0,-288],[0,-212],[-1,-100],[1,-241],[0,-35],[0,-189],[0,-388],[0,-8],[0,-56],[0,-249],[0,-134]],[[81482,13689],[-39,1],[-268,4],[-72,1],[-80,1],[-17,0],[-13,0],[-17,0],[-88,2],[-223,0],[-23,0],[-93,1],[-97,0],[-156,0],[-98,1],[-8,0],[-7,0],[-75,1],[-28,0],[-36,1],[-179,2],[-17,0],[-293,2],[-47,0],[-158,1],[-368,3],[-23,1],[-36,0],[-194,1],[-9,0],[-90,1],[-120,0],[-19,0],[-24,1],[-129,2],[-79,1],[-111,1],[-199,3],[-176,3],[-347,5],[-57,0],[-34,0],[-231,1],[-12,0],[-9,0],[-1,0],[-21,0],[-129,1],[-35,0],[-11,0],[-21,0],[-48,0],[-35,0],[-27,1],[-30,0],[-29,0],[-71,0],[-8,0],[-141,1],[-42,0],[-48,1],[-38,-1],[-72,1],[-10,2],[-19,-3],[-53,2],[-25,1],[-13,0],[-408,5],[-100,1],[-19,0],[-70,1],[-17,0],[-5,0],[-101,2],[-8,0],[-39,0],[-44,0],[-38,0],[-258,2],[-72,0],[-11,0],[-39,-1],[-39,-2],[-30,5],[-29,3],[-26,3],[-27,2],[-19,1],[-16,0],[-15,0],[-11,0],[-16,-1],[-20,-3],[-22,-3],[-14,-1],[-16,2],[-17,4],[-10,3],[-12,2],[-23,4],[-12,2],[-17,6],[-22,8],[-15,4],[-19,7],[-10,4],[-15,1],[-151,13],[-59,12],[-12,3],[-230,4],[-176,2],[-152,2],[-1,0],[-101,2],[-197,3],[-7,0],[-106,5],[-246,3],[-21,2],[-125,1],[-2,0],[-140,1],[-35,0],[-23,0],[-192,2],[-40,0],[-9,0],[-17,0],[-191,-3],[-218,2],[-52,1],[-5,0],[-345,1],[-77,1],[-83,-1],[-15,1],[-6,0],[-34,0],[-134,1],[-43,-1],[-11,1],[-12,0],[-13,-6],[-96,-1],[-382,-3],[-16,-2],[-21,-3],[-41,2],[-49,2],[-274,-1],[-14,-2],[-140,-4],[-10,1],[-7,0],[-386,1],[-93,0],[-37,0],[-37,0],[-67,0],[-64,0],[-76,0],[-152,1],[-112,0],[-311,2],[-1,0],[-150,1],[-164,1],[-162,1],[-179,1],[-74,0],[-48,3],[-113,2],[-139,0],[-229,-1],[-20,1],[-464,6],[-9,0],[-13,-5],[-6,-3],[-157,-1],[-92,0],[-19,-1],[-173,0],[-58,0],[-281,-1],[-149,-1],[-108,-2],[-3,0],[-85,0],[-113,3],[-101,-3],[-32,-1],[-36,-1],[-23,-1],[-51,-1],[-16,0],[-46,-1],[-97,-2],[-64,-1],[-39,-1],[-62,1],[-52,-1],[-44,-1],[-32,-3],[-44,-3],[-36,-5],[-45,-9],[-11,-2],[-1,0]],[[64948,13811],[3,10],[4,16],[8,10],[6,13],[6,19],[2,26],[-1,28],[-7,26],[-8,8],[-11,3],[-13,-1],[-15,-3],[-14,-4],[-16,-2],[-13,7],[-8,19],[1,25],[5,18],[10,20],[7,13],[12,24],[9,25],[3,24],[-1,32],[-4,23],[-5,22],[3,23],[9,13],[10,3],[13,-1],[10,8],[8,17],[2,24],[-6,30],[-8,33],[-7,29],[-3,21],[-1,30],[4,25],[2,24],[3,30],[4,21],[6,24],[7,21],[7,17],[8,28],[5,31],[1,31],[2,28],[5,23],[9,29],[9,21],[8,12],[15,14],[11,11],[8,9],[8,8],[11,9],[11,3],[9,-9],[8,-9],[12,-1],[11,2],[9,-1],[12,-8],[12,-12],[14,-5],[12,7],[4,19],[-1,32],[-1,36],[-3,21],[-5,23],[-11,18],[-15,5],[-12,0],[-14,-4],[-12,0],[-14,4],[-9,1],[-17,3],[-14,9],[-14,21],[-7,14],[-9,26],[-1,28],[1,33],[1,36],[4,32],[12,17],[15,8],[13,-4],[8,-6],[27,-11],[15,9],[8,22],[2,33],[-7,15],[-16,41],[-1,25],[6,28],[9,29],[10,30],[11,23],[12,19],[12,18],[7,10],[12,12],[4,27],[-2,54],[-1,49],[0,43],[2,25],[4,38],[4,31],[8,52],[5,21],[6,19],[14,8],[18,-7],[15,-16],[19,-14],[14,7],[7,19],[0,22],[1,22],[4,28],[3,29],[2,16],[2,15],[2,22],[3,26],[5,18],[12,23],[13,0],[13,-22],[0,-36],[0,-30],[14,-29],[16,-14],[12,-6],[11,-3],[16,6],[11,14],[9,26],[5,22],[4,27],[4,36],[2,22],[-3,39],[-5,18],[-9,18],[-14,14],[-10,8],[-14,14],[-17,19],[-14,23],[-7,23],[3,20],[12,17],[18,-11],[9,-8],[13,-17],[20,-22],[12,-10],[11,-5],[9,4],[12,14],[6,16],[-2,28],[-6,21],[-4,29],[1,23],[3,24],[5,24],[5,26],[7,36],[3,29],[-6,31],[-8,19],[-12,11],[-10,9],[-16,16],[-9,11],[-4,25],[6,25],[8,9],[8,7],[9,4],[12,3],[10,0],[12,-4],[8,-4],[20,-3],[11,0],[11,2],[14,-4],[9,2],[16,9],[14,22],[10,25],[11,25],[12,24],[8,18],[5,21],[4,28],[-3,25],[-7,17],[-8,17],[-11,12],[-15,3],[-15,1],[-9,7],[-4,23],[4,26],[8,27],[6,14],[5,34],[-4,31],[-13,51],[-11,41],[-9,31],[-5,21],[3,24],[9,20],[7,12],[10,11],[9,9],[10,9],[11,7],[12,3],[19,-1],[14,-2],[14,5],[12,20],[-3,27],[-9,15],[-14,11],[-11,8],[-12,11],[-12,11],[-13,19],[-7,14],[-8,22],[4,24],[7,13],[14,9],[14,11],[13,14],[9,3],[9,-3],[13,-22],[10,-27],[8,-27],[7,-19],[10,-12],[9,-2],[10,12],[9,28],[2,28],[2,36],[3,27],[4,30],[4,29],[4,19],[4,26],[-1,41],[-1,26],[-1,22],[4,30],[6,18],[10,11],[17,3],[9,-4],[9,-8],[13,-23],[12,-29],[10,-11],[14,-5],[15,-4],[14,3],[9,2],[10,12],[9,19],[1,22],[-6,20],[-10,9],[-13,4],[-13,3],[-11,7],[-11,27],[-6,27],[-10,30],[-15,21],[-15,11],[-10,7],[-8,5],[-3,25],[9,9],[12,5],[14,1],[11,0],[19,4],[16,3],[13,-7],[14,-8],[9,4],[8,21],[-3,24],[-11,16],[-9,13],[-14,30],[-8,32],[-6,38],[-2,30],[3,26],[7,26],[8,14],[8,9],[9,4],[12,8],[12,19],[10,15],[12,14],[9,18],[7,18],[-1,25],[-8,20],[-10,9],[-12,13],[-7,24],[1,28],[6,15],[8,7],[12,-3],[8,-6],[12,-14],[8,-5],[9,-6],[6,-1],[16,-3],[21,5],[22,-4],[9,-2],[10,3],[19,6],[23,19],[22,28],[13,14],[20,9],[15,15],[-51,-1],[-1,0],[-173,-1],[-17,-1],[-99,1],[-92,0],[-48,0],[-32,0],[-4,0],[-110,0],[-13,0],[-376,-2],[-33,0],[-70,0],[-116,-1],[-31,0],[-66,0],[-268,-3],[-91,0],[-72,-1],[-159,-1],[-46,-1],[-77,-1],[-181,-1],[-70,-1],[-11,-1],[-347,-11],[-33,-1],[-12,-1],[-62,-2],[-110,-3],[-29,-1],[-110,-3],[-32,-1],[-40,-1],[-140,-4],[-116,-4],[-10,2],[-21,-2],[-29,-3],[-126,-1],[-149,-3],[-154,-3],[-35,0],[-76,-1],[-1,0],[-13,0],[-131,-1],[-21,0],[-170,0],[-115,-2],[-95,0],[-85,0],[-62,0],[-12,1],[-13,0],[-21,1],[-19,0],[-39,-1],[-14,5],[-26,-2],[-14,-1],[-23,0],[-42,0],[-19,0],[-42,3],[-70,0],[-19,1],[1,34],[0,265],[0,41],[1,349],[-1,281],[0,384],[0,168],[0,336],[0,200],[12,73],[6,40],[5,31],[-7,49],[-15,114],[-1,44],[-1,128],[0,8],[-1,183],[-1,83],[2,33],[4,29],[13,106],[14,111],[9,68],[12,98],[5,38],[3,21],[9,67],[17,141],[16,136],[9,70],[3,23],[3,67],[4,146],[1,74],[4,89],[3,107],[5,140],[0,24],[3,44],[2,69],[7,121],[76,164],[63,137],[58,126],[54,117],[24,52],[34,73]],[[28002,27289],[7,-31],[10,-4],[7,-16],[-4,-27],[-1,-21],[13,-34],[7,-22],[3,-23],[-5,-33],[-2,-27],[8,-18],[14,-20],[-3,-25],[-8,-10],[-4,-7],[-5,-6],[-5,-37],[13,-25],[-5,-26],[-10,-12],[-2,-25],[3,-25],[-9,-14],[-12,-9],[-5,-2],[-3,-1],[-9,-15],[3,-25],[-4,-39],[1,-27],[-1,-38],[-1,-13],[-1,-22],[-8,-20],[1,-23],[3,-26],[6,-82],[1,-74],[-3,-25],[4,-20],[3,-28],[-3,-22],[-5,-28],[-2,-37],[2,-24],[3,-54],[2,-21],[5,-30],[0,-24],[-2,-26],[-1,-12],[-2,-20],[-3,-26],[0,-28],[5,-21],[-4,-23],[-13,-16],[-1,-26],[-1,-21],[0,-19],[-3,-28],[-5,-19],[-2,-3],[-7,-7],[-11,-18],[-2,-9],[-1,-4],[-2,-8],[-5,-21],[-5,-29],[-3,-16],[-1,-15],[-1,-16],[7,-15],[7,-19],[3,-20],[0,-23],[-3,-25],[-14,-31],[-10,-16],[-7,-16],[-8,-31],[-8,-24],[-7,-23],[-8,-25],[-5,-24],[-8,-12],[-7,-14],[-8,-6],[-1,-28],[4,-25],[1,-7],[3,-10],[1,-7],[5,-19],[5,-32],[1,-9],[2,-7],[1,-11],[6,-25],[3,-28],[0,-27],[-3,-25],[-1,-26],[-1,-24],[0,-24],[5,-33],[3,-23],[6,-24],[7,-22],[9,-11],[12,0],[14,11],[13,0],[10,-12],[7,-29],[1,-34],[6,-25],[7,-24],[0,-23],[-4,-28],[1,-26],[7,-34],[-3,-26],[-8,-30],[-3,-29],[-7,-46],[4,-27],[9,-8],[6,-25],[-25,-58],[-6,-26],[2,-29],[2,-27],[8,-49],[-4,-27],[10,-25],[13,-15],[8,-35],[3,-24],[-3,-24],[9,-13],[8,-1],[15,10],[19,-19],[3,-28],[9,2],[14,-3],[10,-24],[11,-14],[15,-7],[7,-13],[25,-18],[4,-20],[-9,-29],[13,-19],[21,-11],[10,-11],[13,-26],[8,-9],[11,-8],[7,-13],[17,-46],[3,-22],[-2,-23],[-1,-31],[3,-37],[15,-6],[10,7],[15,-13],[12,-8],[7,5],[2,1],[11,12],[12,1],[12,-3],[12,-23],[10,-33],[11,5],[12,25],[11,4],[6,-16],[1,-27],[8,-13],[22,-10],[16,-33],[-2,-23],[3,-30],[12,-39],[-9,-10],[-1,-22],[11,-16],[18,-10],[11,-14],[5,-28],[-5,-30],[5,-18],[11,-10],[11,5],[9,1],[10,-33],[10,0],[13,18],[11,-4],[7,-14],[7,-21],[19,-28],[16,3],[13,1],[8,7],[13,-1],[9,-24],[19,-42],[7,-13],[15,-30],[17,-16],[7,-27],[18,-14],[26,-2],[20,5],[19,12],[8,20],[13,27],[14,-5],[9,-15],[20,-26],[13,-5],[30,-5],[11,6],[7,17],[16,18],[17,34],[17,23],[10,14],[14,9],[22,35],[16,18],[32,27],[9,8],[23,25],[20,5],[21,13],[15,12],[14,18],[19,42],[12,20],[28,12],[8,-11],[11,-13],[18,-14],[13,-4],[58,-11],[24,-3],[13,-6],[27,-2],[30,-12],[15,-8],[10,7],[24,2],[22,-1],[6,-5],[5,-4],[9,-23],[24,-86],[81,-243],[197,-618],[6,-18],[22,-65],[1,-234],[-1,-29],[0,-4],[-1,-55],[0,-27],[-1,-53],[2,-51],[0,-1],[-1,-202],[0,-132],[-1,-61],[1,-89],[16,-1],[28,-1],[11,0],[0,-116],[1,-217],[1,-283],[1,-267],[0,-74],[1,-424],[1,-60],[0,-16],[0,-96],[0,-148],[0,-193],[-2,-103],[1,-157],[1,-22],[0,-414],[-1,-538],[0,-2],[0,-244],[0,-218],[-1,-113],[0,-86],[0,-417],[-1,-557],[0,-82],[3,-86],[3,-124],[-1,-572],[92,-1],[135,-2],[24,0],[173,-2],[134,3],[116,0],[109,-2],[148,-1],[94,4],[-1,-464],[-1,-227],[-1,-622],[-1,-188],[-1,-393],[199,-4],[320,6],[142,-2],[34,1],[189,2],[110,-2],[135,-3],[56,-11],[7,-2],[-6,-275],[-1,-46],[3,-211],[0,-33],[1,-43],[2,-154],[2,-116],[3,-154],[0,-60],[1,-82],[2,-237],[1,-162],[-3,-304],[196,-4],[-1,-811],[1,-227],[0,-12],[0,-270],[-1,-529],[131,-4],[39,-12],[2,0],[128,1],[44,1],[134,2],[352,-1],[15,-18],[0,-108],[-1,-191],[0,-257],[-1,-180],[0,-159],[24,0],[123,-3],[65,-1],[127,-21],[37,0],[78,0],[88,-1],[157,-2],[319,-1],[169,0],[3,0],[20,0],[73,-1],[73,0],[2,-29],[76,0],[149,1],[51,-6],[138,2],[425,4],[168,2],[1,-483],[0,-134],[0,-55],[-1,-394],[0,-37],[1,-454],[36,0],[224,-8],[79,-1],[68,0],[55,-1],[8,0],[288,-2],[90,-1],[188,-1],[4,0],[95,-1],[149,-1],[14,0],[61,0],[69,1],[395,5],[350,5],[19,0],[1,0],[17,1],[96,1],[33,0],[34,9],[199,2]],[[38109,7560],[-24,-14],[-16,-16],[-21,-24],[-15,10],[-34,10],[-20,-37],[-8,-35],[1,-25],[-8,-49],[2,-28],[21,-51],[11,-40],[18,-24],[5,-60],[-11,-71],[5,-25],[24,-41],[20,-26],[11,-50],[30,-1],[16,-32],[20,-6],[0,-37],[-12,-18],[-13,-52],[-23,-19],[-12,-1],[-7,-15],[2,-71],[5,-22],[17,-2],[11,-42],[-7,-43],[-43,-59],[2,-28],[-7,-50],[-10,-26],[-27,-47],[-22,-13],[-8,-25],[-9,-66],[-20,-11],[-11,-113],[13,-24],[-9,-17],[-36,40],[-35,83],[-61,-67],[-70,-31],[-3,-54],[9,-13],[16,-32],[14,-13],[15,-58],[13,-32],[21,-51],[10,-13],[19,-103],[-38,-21],[-19,-44],[-28,-30],[-20,-15],[-51,-174],[13,-20],[-2,-24],[-52,-141],[57,-48],[-40,-101],[6,-65],[33,-109],[6,-148],[136,-191],[15,-62],[-25,-54],[-27,1],[-23,-57],[4,-47],[9,-21],[42,-24],[34,-19],[48,1],[21,-16],[37,-43],[11,-16],[33,-60],[22,-28],[18,20],[12,51],[35,15],[24,-50],[-8,-36],[8,-44],[3,-78],[3,-25],[10,-66],[19,-37],[-25,-29],[-9,-32],[-9,4],[-18,30],[-38,8],[-18,18],[-22,-2],[-25,-13],[-41,-2],[-40,-8],[-36,32],[-17,-1],[-18,-51],[-52,-78],[-29,-1],[-32,22],[-15,65],[-8,89],[-40,74],[-51,52],[-67,15],[-9,20],[-37,47],[-21,25],[0,29],[-13,17],[-33,-7],[-49,-49],[-52,15],[-18,68],[-55,4],[-29,19],[-41,9],[-24,26],[-39,40],[-35,-30],[-83,-165],[-28,-13],[-51,-78],[-43,2],[-14,21],[-34,3],[-23,24],[-24,-2],[-56,16],[-64,19],[-34,37],[-50,1],[-31,-35],[-32,-7],[-27,37],[-57,21],[-91,62],[-19,62],[-66,-115],[-110,82],[-39,-202],[-40,-78],[-14,-79],[-8,-3],[-87,12],[-44,-31],[-42,11],[-39,-33],[-20,-11],[-44,-36],[-28,-53],[-51,-67],[-23,-108],[-7,-41],[-55,49],[-33,5],[-33,-67],[-35,-40],[-46,-10],[-84,50],[-66,-38],[-34,-107],[19,-58],[1,-29],[-24,-28],[8,-45],[-108,-60],[-22,52],[-31,9],[-2,41],[-23,60],[1,73],[-11,2],[-72,103],[-18,39],[-8,52],[-42,208],[-28,86],[-34,63],[0,40],[-8,28],[-53,50],[-6,26],[-7,116],[-18,34],[4,41],[-8,60],[-22,-4],[-23,-21],[-56,-42],[-21,11],[-54,56],[-17,14],[-27,-37],[-7,-63],[-16,-24],[-27,-17],[-28,-23],[-71,-13],[-27,-13],[-43,38],[-43,-8],[-24,8],[-32,-4],[-21,9],[-48,-29],[-60,2],[-17,-97],[-34,-70],[-63,18],[-13,-112],[-34,11],[-21,-106],[-18,-44],[-49,-46],[-51,22],[-61,3],[-27,-34],[-52,50],[-16,-4],[-32,28],[-13,59],[-28,35],[-34,-32],[-25,9],[-19,35],[-89,56],[-16,-22],[-13,-63],[7,-107],[11,-79],[4,-98],[-26,-6],[-20,75],[-50,-8],[-18,36],[-40,8],[-21,16],[-22,33],[-48,-10],[-42,1],[-18,19],[-58,-80],[-34,10],[-39,-31],[-71,-52],[-25,-146],[-44,-51],[-50,-2],[-21,79],[-39,15],[-94,80],[-6,38],[-20,82],[-8,48],[-7,25],[-13,3],[-29,-4],[-10,45],[-13,-8],[-36,7],[-42,-63],[-25,27],[-42,22],[-62,50],[-28,-28],[-39,-53],[-51,-57],[-20,-48],[-31,5],[-33,36],[-55,52],[-131,72],[-42,37],[-53,28],[-58,108],[-4,72],[14,56],[-6,72],[-19,12],[-5,36],[8,59],[-3,36],[-44,16],[-51,54],[-16,10],[-42,6],[-22,-16],[-23,23],[-21,62],[-10,-22],[-19,-53],[-46,-30],[-5,-20],[-21,-8],[-43,13],[-29,9],[-56,33],[-29,0],[-27,-53],[-16,-84],[-37,-22],[-16,-36],[-36,6],[-15,-16],[-24,-26],[-16,-36],[-44,-93],[3,-27],[-11,-75],[12,-101],[-18,-33],[-27,-32],[-28,8],[-20,-13],[-28,-9],[-40,10],[-39,-20],[-24,-5],[-12,17],[-46,8],[-25,-17],[-20,-49],[-13,-52],[-9,-62],[-17,-33],[5,-59],[14,-27],[-4,-53],[-8,-34],[0,-162],[-2,-88],[0,-35],[13,-43],[-2,-26],[1,-25],[0,-62],[-8,-76],[10,-89],[-15,-112],[-11,-44],[-24,-39],[-11,-49],[-6,-65],[-2,-68],[0,-49],[-6,-22],[-6,-83],[-16,-14],[-27,-63],[-36,-106],[-15,-60],[-29,-62],[-24,-60],[-34,-50],[-56,80],[-36,23],[-28,61],[-39,25],[-32,-24],[-41,-67],[-42,15],[-18,20],[-14,-4],[-46,-17],[-28,17],[-7,29],[5,91],[-10,15],[-1,27],[-15,11],[-10,21],[-27,33],[-5,24],[-12,17],[-30,23],[-38,-24],[-21,-10],[-10,29],[1,67],[-33,68],[-8,32],[-40,-1],[-31,48],[-36,46],[-19,-36],[-21,-48],[-46,-39],[-17,-64],[-59,-31],[-11,-42],[-20,-1],[-3,-28],[-30,-77],[-42,39],[-60,32],[4,71],[-2,64],[-1,29],[-36,49],[-22,-8],[-41,25],[-21,2],[-28,5],[-51,22],[-3,30],[-32,74],[-22,17],[-46,-6],[-15,26],[-26,-13],[-56,-36],[-37,4],[-41,-2],[-32,-38],[-27,-5],[-15,3],[-27,24],[-20,-13],[-47,63],[-66,107],[-43,36],[-130,-79],[-17,-36],[-43,-49],[-23,-6],[-1,43],[-8,69],[-14,51],[-18,6],[-41,-9],[-42,-9],[-88,-57],[-32,-8],[-23,-28],[-35,21],[-44,86],[-39,28],[-46,-5],[-47,29],[-10,58],[-2,55],[-43,33],[-24,-10],[-24,10],[-89,72],[-45,2],[-39,21],[-31,-29],[-57,-39],[-29,-27],[-20,-40],[-14,-57],[-26,-72],[-11,-77],[-31,-12],[-25,64],[-9,5],[-48,-51],[-61,-2],[-21,-17],[-43,-78],[-92,13],[-106,-333],[-24,-30],[-10,-32],[8,-51],[-8,-51],[-18,-29],[-11,-40],[-23,-30],[-25,-40],[-6,-32],[-10,-6],[-21,41],[-10,-16],[-17,-29],[-28,-124],[-26,-33],[-30,-31],[-25,-47],[0,-94],[4,-110],[-1,-21],[-24,-31],[-33,-45],[-14,-42],[-16,-3],[-12,-21],[11,-62],[19,4],[41,-141],[32,-69],[36,-116],[3,-22],[2,-74],[0,-27],[6,-37],[29,-13],[14,10],[22,-49],[-10,-19],[-6,-25],[2,-25],[12,-42],[6,-17],[0,-32],[3,-24],[-1,-38],[-12,-46],[-5,-53],[13,-29],[-8,-38],[2,-66],[-12,-9],[-13,-47],[-26,-68],[-16,-19],[-7,-14],[-14,-23],[-21,-20],[-5,-8],[-11,-26],[-14,-16],[-39,-35],[-14,-30],[-34,-19],[-34,-64],[-82,38],[-17,57],[-19,33],[-6,18],[-2,29],[-11,40],[-19,38],[-41,16],[-22,22],[-14,6],[-2,33],[6,30],[-7,22],[-27,33],[-23,26],[-15,35],[-1,78],[-19,141],[-1,22],[2,27],[-2,21],[-6,17],[-9,29],[5,49],[10,51],[-3,34],[-16,16],[-25,41],[-20,6],[-18,-12],[-29,-80],[-16,-13],[-20,-27],[-74,65],[-15,5],[-25,12],[-17,48],[-6,24],[-1,31],[-9,45],[-38,25],[-28,13],[-8,28],[-17,15],[-23,-9],[-32,-6],[-35,12],[-47,56],[-42,18],[-15,58],[-6,60],[0,40],[-51,5],[-12,-11],[-24,1],[-42,56],[-38,60],[-41,85],[-25,25],[-10,28],[-34,116],[-17,53],[-26,41],[-23,34],[-56,56],[-16,28],[-8,38],[-10,37],[-5,22],[-2,45],[1,24],[-10,45],[-10,70],[-1,59],[6,41],[10,32],[1,37],[-8,15],[-6,21],[-16,31],[-14,38],[-18,71],[-17,18],[-24,49],[-16,63],[-20,71],[-13,32],[-2,52],[-12,45],[-2,22],[20,28],[6,49],[16,3],[29,66],[33,91],[-9,181],[86,75],[-14,145],[-26,41],[-21,-6],[-39,43],[-26,60],[-20,79],[-82,26],[-106,146],[-14,52],[13,195],[82,113],[-9,73],[-25,61],[-98,106],[-132,159],[34,154],[-46,87],[-71,105],[-87,87],[80,178],[37,138],[68,75],[72,25],[29,56],[10,81],[24,96],[-17,163],[-95,205],[-23,62],[5,25],[5,50],[-32,76],[0,30],[-16,230],[24,92],[-4,150],[-85,31],[-39,46],[22,111],[-16,64],[-19,13],[-78,72],[-33,38],[-11,118],[-15,102],[-4,39],[3,108],[-2,101],[-18,152],[9,68],[-84,82],[-37,-19],[-9,29],[7,104],[-34,183],[-32,60],[-37,12],[-22,12],[-19,35],[-7,31],[1,24],[-4,40],[-14,40],[-5,30],[23,60],[32,41],[-2,32],[-1,76],[7,53],[-10,34],[-34,30],[-15,26],[-22,13],[-42,-2],[-22,29],[-36,33],[-27,18],[-20,11],[-13,-2],[-10,-23],[-17,-16],[-17,24],[-53,88],[-17,14],[-43,53],[-35,137],[-11,13],[-22,56],[-9,39],[-11,20],[-38,57],[-17,1],[-20,9],[-40,32],[-26,64],[-18,37],[-30,12],[-40,22],[-26,2],[-23,10],[-34,42],[-20,14],[-21,17],[-19,-7],[-31,0],[-10,20],[-11,58],[-46,106],[-23,-8],[-34,-23],[-15,-22],[-23,0],[-10,-15],[-5,-18],[-19,-16],[-9,-21],[-12,-12],[-48,-44],[-16,3],[-19,-3],[-25,-30],[-22,-17],[-36,-70],[-30,-27],[-27,-17],[-9,-27],[-22,-18],[-12,-11],[-12,-21],[-20,-10],[-6,-30],[-1,-28],[-14,-26],[-20,-3],[-20,-28],[-36,-20],[-38,-18],[-34,-28],[-13,-39],[-18,-15],[-32,-42],[-13,-26],[-9,-9],[-82,-77],[-15,15],[-27,54],[-23,29],[-32,30],[-16,25],[-7,77],[10,12],[49,55],[6,27],[-2,36],[-17,61],[-8,46],[-42,206],[-11,55],[-2,27],[-6,11],[-33,37],[-36,34],[-33,54],[-44,75],[-22,26],[0,73],[-12,39],[-41,30],[-36,7],[-37,-18],[-19,1],[-25,25],[-80,36],[-19,22],[-13,-7],[-23,-7],[-45,-43],[-25,-11],[-4,67],[0,40],[-26,96],[-2,15],[-2,43],[-21,70],[0,36],[-7,15],[-45,-2],[-40,9],[-14,40],[-14,68],[-12,32],[-66,31],[-23,39],[-5,49],[1,27],[-2,54],[-9,46],[-4,48],[-24,52],[-16,69],[-1,30],[5,63],[6,25],[-9,6],[-13,25],[-22,44],[-45,37],[-17,24],[-18,37],[-13,2],[-7,19],[9,22],[9,2],[4,43],[0,48],[3,13],[6,45],[-3,27],[7,18],[15,54],[-1,37],[-14,3],[-9,19],[-19,14],[-7,19],[-11,49],[-27,67],[-12,41],[-29,4],[-17,33],[-15,69],[4,37],[-9,82],[-13,10],[-11,12],[-4,120],[-9,25],[-5,51],[-10,44],[6,53],[10,7],[3,49],[17,15],[57,-27],[22,-1],[35,65],[19,-9],[30,-12],[22,-22],[51,-6],[15,6],[13,38],[11,46],[8,1],[62,2],[16,13],[22,16],[7,22],[11,19],[10,51],[10,20],[5,25],[-30,171],[-15,47],[3,24],[9,13],[20,13],[5,32],[-1,50],[-6,33],[-3,84],[-8,66],[5,81],[11,74],[-5,99],[-6,29],[-2,26],[9,20],[19,27],[11,39],[8,12],[14,29],[13,45],[-4,37],[-28,76],[-4,43],[-20,42],[-9,41],[-25,39],[1,22],[0,56],[7,33],[-1,49],[12,60],[0,38],[0,43],[-25,22],[-47,77],[-7,27],[3,24],[50,106],[-3,29],[-13,52],[6,87],[-10,111],[-20,42],[-12,37],[-41,54],[-38,-45],[-93,-22],[-72,35],[-11,38],[1,81],[-18,41],[-4,21],[16,49],[-6,16],[-23,49],[-18,42],[-33,44],[-37,3],[-93,123],[-67,132],[77,148],[4,76],[31,83],[-56,171],[-20,2],[-51,-31],[-49,-7],[-85,31],[-38,-15],[-33,-44],[-68,14],[-13,50],[-105,193],[-23,-7],[-3,48],[-9,30],[-13,20],[-9,22],[-11,44],[6,49],[39,90],[45,111],[6,58],[-4,76],[-13,-11],[-31,-18],[-38,-3],[-33,16],[-22,31],[-8,39],[-18,35],[-22,20],[-12,21],[-9,62],[2,71],[-22,45],[-13,52],[8,60],[15,54],[11,60],[6,62],[-15,49],[-5,39],[-1,60],[-11,28],[-12,8],[-18,25],[-18,95],[-20,15],[-32,6],[-22,64],[-24,50],[-20,-2],[-16,32],[-15,51],[-12,26],[-22,30],[-20,52],[-17,16],[-39,48],[-15,51],[-15,10],[-22,22],[-1,87],[-28,65],[-15,4],[-11,33],[-27,76],[-6,65],[-10,64],[-12,74],[-23,37],[-10,52],[-14,30],[-37,59],[-31,26],[-15,45],[-37,32],[-36,36],[-36,-3],[-15,49],[-20,20],[-16,26],[-1,18],[-8,39],[-50,142],[-1,49],[10,48],[-4,72],[-4,45],[39,6],[28,-2],[30,35],[-8,70],[-7,59],[-35,84],[-24,56],[-40,43],[-36,49],[-39,81],[-7,88],[-54,47],[-24,64],[0,50],[-14,38],[-8,64],[-19,28],[-4,89],[-9,-1],[-26,16],[-9,39],[-36,8],[-28,83],[-31,29],[-29,102],[2,20],[-3,33],[-8,78],[9,67],[-12,36],[4,25],[-3,41],[2,48],[45,56],[-3,54],[8,58],[24,28],[17,25],[-16,21],[-9,53],[-13,102],[-33,34],[-12,57],[25,40],[24,62],[-12,68],[4,133],[12,52],[-5,110],[-22,60],[-60,66],[-39,71],[-25,74],[-29,16],[-50,58],[-53,3],[-56,3],[-23,35],[5,58],[-11,87],[5,49],[28,58],[37,32],[54,51],[10,89],[-30,67],[-54,13],[-29,18],[-22,79],[5,20],[14,109],[-1,111],[-14,28],[-60,83],[-6,58],[39,83],[26,42],[18,58],[1,30],[-19,120],[65,64],[13,25],[30,77],[28,43],[-3,56],[3,73],[-25,99],[-6,88],[-8,93],[-5,30],[-18,30],[-9,18],[-8,53],[-9,24],[1,56],[9,26],[-17,42],[-11,26],[0,24],[56,136],[-40,28],[-38,20],[-24,10],[-41,-27],[-32,6],[-47,-9],[-32,31],[-41,-5],[-22,-13],[-28,-44],[-25,-13],[-22,14],[-24,7],[-28,46],[-13,-3],[-34,-36],[-35,-4],[-39,-11],[-9,15],[7,39],[16,36],[10,41],[5,58],[3,24],[18,42],[4,20],[-1,31],[-10,32],[-4,30],[11,42],[13,35],[0,23],[4,28],[17,52],[20,27],[5,35],[12,70],[4,62],[7,27],[0,76],[-6,43],[-23,56],[1,35],[24,21],[14,45],[32,93],[19,59],[17,16],[33,47],[31,34],[28,21],[1,24],[-7,36],[1,48],[-39,107],[-20,94],[-1,20],[-10,113],[-16,41],[-28,45],[-49,37],[-43,100],[-23,15],[-27,-13],[-49,-53],[-32,13],[-33,35],[-35,86],[-14,80],[-30,17],[-25,20],[-27,-5],[-25,45],[-29,-25],[-41,-5],[-16,-24],[-31,-23],[-25,-34],[-25,0],[-19,-5],[-26,-25],[-40,40],[-25,40],[-44,25],[-37,-10],[-14,23],[7,49],[28,49],[16,27],[-11,16],[-9,33],[4,37],[-8,54],[-5,43],[33,65],[23,35],[5,34],[-7,42],[-24,43],[-19,29],[-10,42],[-21,26],[-24,32],[-18,2],[-24,14],[-10,49],[-25,40],[-20,-3],[-3,25],[-8,58],[-1,56],[-19,28],[-2,26],[-10,25],[-16,11],[-16,28],[-10,46],[-12,2],[-1,26],[8,42],[-7,35],[3,27],[-17,32],[-12,58],[3,59],[3,15],[7,32],[-3,24],[-9,14],[-10,12],[11,17],[1,60],[-26,60]],[[38901,8476],[-47,58],[-22,15],[-54,-43],[-14,-19],[-6,-50],[-15,-24],[-16,-46],[27,-15],[-2,-97],[2,-37],[-17,-15],[-22,-87],[6,-73],[12,-63],[-11,-51],[5,-36],[-11,-47],[-35,-19],[-6,-26],[-18,-44],[-11,-51],[-28,-41],[-12,-40],[-15,-36],[-28,32],[-40,38],[-16,3],[-8,19],[-8,60],[-40,66],[-37,0],[-55,-10],[-34,-64],[-19,0],[-51,-23],[-28,-9],[-57,-42],[-32,-52],[-29,-47]],[[91683,13830],[-180,1],[-151,0],[-6,0],[-88,1],[-115,2],[-142,1],[-21,0],[-23,-6],[-146,0],[-90,0],[-155,1],[-203,1],[-15,0],[-13,0],[-65,0],[-133,0],[-36,0],[-185,-4],[-269,0],[-197,0],[-279,0],[-4,0],[-9,0],[-34,1],[-3,0],[-30,0],[-28,0],[-149,0],[-3,0],[-36,0],[-37,0],[-140,0],[-206,0],[-27,0],[-60,0],[-117,0],[-86,1],[-155,0],[-51,0],[-46,0],[-37,1],[-78,-1],[-37,1],[-117,0],[-59,0],[-97,1],[-373,0],[-105,1],[-137,0],[-10,0],[-1,0],[-105,-1],[-73,-1],[-95,0],[-12,0],[-10,0],[-239,0],[-187,0],[-84,0],[-44,0],[-28,0],[-269,1],[-13,0],[-164,0],[-62,1],[-52,0],[-156,0],[-26,0],[-5,0],[-334,-1],[-15,3],[-20,-2],[-2,0],[-10,1],[-182,9],[-177,0],[-27,0],[-73,1],[-3,0],[-35,0],[-7,-20],[-39,-48],[-77,-89],[-568,-4],[-35,0],[-88,3],[-15,0],[-27,0],[-71,0],[-165,-1],[-3,0],[-21,0],[-375,0],[-44,0],[-137,0],[-94,0],[-10,0],[-127,0],[-126,1],[-221,0],[-111,1],[-62,0],[-240,1],[-10,0],[-134,0],[-108,2]],[[64948,13811],[-11,4],[-54,7],[-61,4],[-18,1],[-38,1],[-51,0],[-13,0],[-12,0],[-70,-1],[-57,0],[-47,0],[-14,0],[-25,0],[-37,-1],[-16,0],[-48,0],[-92,-1],[-43,0],[-149,-1],[-55,0],[-58,0],[-11,0],[-13,0],[-3,0],[-56,-1],[-168,-1],[-99,0],[-175,0],[-85,0],[-20,-2],[-32,0],[-153,0],[-38,0],[-16,0],[-13,0],[-77,0],[-134,-1],[-18,0],[-13,-3],[-17,1],[-73,2],[-74,3],[-10,0],[-53,0],[-1,0],[-13,1],[-146,6],[-67,3],[-89,3],[-105,-2],[-29,0],[-25,0],[-47,-1],[-183,-2],[-72,-1],[-9,-1],[-1,0],[-3,0],[-24,3],[-19,0],[-28,0],[-89,0],[-78,0],[-56,0],[-118,0],[-82,-1],[-14,0],[-19,0],[-107,0],[-131,-2],[-114,-1],[-1,0],[-75,-1],[-49,-1],[-60,1],[-177,1],[-37,0],[-54,0],[-84,1],[-83,-1],[-19,0],[-49,0],[-66,-1],[-14,0],[-20,0],[-10,0],[-20,0],[-40,-1],[-75,-3],[-9,0],[-11,0],[-23,0],[-10,0],[-9,0],[-32,0],[-9,0],[-34,0],[-22,0],[-33,0],[-9,0],[-38,0],[-31,0],[-23,0],[-15,0],[-59,0],[-94,0],[-26,0],[-13,0],[-20,0],[-79,0],[-74,-1],[-106,-1],[-39,-1],[-78,0],[-1,0],[-15,0],[-108,-1],[-108,-1],[-64,-1],[-171,-1],[-17,0],[-198,0],[-9,0],[-192,-1],[-4,0],[-14,0],[-10,0],[-40,1],[-9,-1],[-33,-1],[-9,1],[-39,0],[-64,0],[-7,0],[-8,0],[-11,8],[-44,34],[-118,94],[-186,-5],[-75,0],[-117,1],[-154,0],[-97,0],[-118,-1],[-13,0],[-142,-2],[-132,-1],[-193,0],[-98,-3],[-56,-2],[-263,-5],[-1,0],[-247,-4],[-16,0],[-27,1],[-332,-7],[-86,6],[-56,-2],[-129,-3],[-15,0],[-6,0],[-12,0],[-91,-2],[-74,-2],[-85,-2],[-232,-10],[-23,-1],[-90,-3],[-142,-2],[-113,-3],[-9,-1],[-62,-1],[-5,-1],[-90,-2],[-45,-1],[-50,-2],[-233,-10],[-207,-2],[-10,0],[-74,0],[-16,0],[-15,0],[-112,-1],[-62,-4],[-254,5],[-30,-2],[-23,-2],[-118,-1],[-159,-6],[-87,2],[-308,-12],[-89,4],[-15,0],[-15,1],[-192,7],[-88,1]]],"transform":{"scale":[0.00012010413604136144,0.00004642946571465745],"translate":[-116.0498459669999,44.358202625000104]}} diff --git a/src/js/config/mapconfig/mapfiles/county/nc-counties.json b/src/js/config/mapconfig/mapfiles/county/nc-counties.json new file mode 100644 index 00000000..e1102bf1 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/nc-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-84.32186486599994,33.8417490720002,-75.46003300399991,36.588148875000115],"geometries":[{"type":"Polygon","properties":{"name":"NC"},"id":"37031","arcs":[[0]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37009","arcs":[[1,2,3,4]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37005","arcs":[[5,6,-2,7]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37171","arcs":[[8,9,10,11,-6,12]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37073","arcs":[[13,14,15,16,17,18,19]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37053","arcs":[[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30,31,32]],[[33,34]],[[35]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37169","arcs":[[36,37,-9,38]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37029","arcs":[[39,-32,40,41,-14]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37185","arcs":[[42,43,44,45,46]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37131","arcs":[[47,48,-43,49,50]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37091","arcs":[[-19,51,52,-51,53]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37145","arcs":[[54,55,56,57,58]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37181","arcs":[[-46,59,60,61]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37077","arcs":[[62,63,64,-55,65,-61]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37157","arcs":[[66,67,68,-37,69]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37033","arcs":[[-58,70,71,-67,72]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37083","arcs":[[73,74,75,76,-44,-49]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37139","arcs":[[77,78,-15,-42]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37193","arcs":[[-12,79,80,81,82,83,-3,-7]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37189","arcs":[[-84,84,85,86,-4]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37143","arcs":[[87,88,-16,-79]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37041","arcs":[[[89]],[[90,-17,-89]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37197","arcs":[[91,92,93,-80,-11]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37011","arcs":[[94,95,96,97,98,-86]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37069","arcs":[[99,100,-63,-60,-45]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37067","arcs":[[101,102,103,-92,-10,-38]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37081","arcs":[[104,105,106,-102,-69]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37001","arcs":[[107,108,109,-105,-68,-72]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37015","arcs":[[110,111,112,-113,113,-74,-48,-53]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37135","arcs":[[-57,114,115,-108,-71]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37063","arcs":[[-65,116,117,-115,-56]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37055","arcs":[[[118]],[[119]],[[120,121,122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128,129]],[[130]],[[131]],[[132]],[[133]],[[-34,134]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37127","arcs":[[-77,135,136,137,-100]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37121","arcs":[[-98,138,139,140]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37065","arcs":[[141,142,143,-136,-76]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37027","arcs":[[-83,144,145,146,-95,-85]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37199","arcs":[[147,148,149,150,-140]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37183","arcs":[[-101,151,152,153,-117,-64]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37117","arcs":[[112,154,155,156,-142,-75,-114]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37115","arcs":[[-150,157,158,159]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37059","arcs":[[160,161,162,-93,-104]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37097","arcs":[[-94,-163,163,164,165,166,167,168,-81]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37003","arcs":[[169,-145,-82,-169]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37057","arcs":[[-107,170,171,172,-161,-103]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37023","arcs":[[-147,173,174,175,176,177,-96]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37177","arcs":[[178,179,180]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37187","arcs":[[-180,181,182,-155,-113,-112,183]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37111","arcs":[[184,185,-148,-139,-97,-178]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37151","arcs":[[-110,186,187,188,-171,-106]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37037","arcs":[[-118,-154,189,190,191,-187,-109,-116]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37195","arcs":[[192,193,194,195,-137,-144]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37159","arcs":[[-173,196,197,-164,-162]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37147","arcs":[[-157,198,199,200,201,202,203,-193,-143]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37035","arcs":[[-168,204,-174,-146,-170]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37021","arcs":[[-186,205,206,207,-158,-149]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37101","arcs":[[-196,208,209,210,-152,-138]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37087","arcs":[[-208,211,212,213,214,-159]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37013","arcs":[[[215,216,217,-201]],[[-183,218,219,-199,-156]]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37095","arcs":[[[220]],[[-122,221]],[[222]],[[223]],[[224]],[[-179,225,-129,226,-219,-182]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37173","arcs":[[227,228,229,230,-214]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37079","arcs":[[231,232,-194,-204]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37105","arcs":[[233,234,-191]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37161","arcs":[[235,236,237,238,-206,-185,-177]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37191","arcs":[[-233,239,240,241,-209,-195]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37085","arcs":[[-211,242,243,244,-234,-190,-153]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37045","arcs":[[245,246,247,-236,-176]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37109","arcs":[[-167,248,249,-246,-175,-205]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37099","arcs":[[-213,250,251,252,-228]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37119","arcs":[[253,254,255,256,-249,-166]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37125","arcs":[[-235,-245,257,258,259,260,-188,-192]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37123","arcs":[[-261,261,262,-172,-189]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37025","arcs":[[263,264,-254,-165,-198]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37167","arcs":[[-263,265,266,-264,-197]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37089","arcs":[[-239,267,268,269,-207]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37075","arcs":[[270,271,272,-230]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37107","arcs":[[273,274,275,-240,-232,-203]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37175","arcs":[[276,-251,-212,-270]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37071","arcs":[[-257,277,-247,-250]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37049","arcs":[[[278]],[[279,280,281]],[[-218,282,283,284,-274,-202]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37149","arcs":[[285,-268,-238]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37113","arcs":[[286,287,288,-271,-229,-253]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37137","arcs":[[[289]],[[-283,-217,290]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37163","arcs":[[-242,291,292,293,294,-243,-210]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37039","arcs":[[-289,295,296,-272]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37051","arcs":[[-295,297,298,299,-258,-244]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37103","arcs":[[300,-281,301,302,303,-275,-285]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37007","arcs":[[304,305,306,-266]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37093","arcs":[[-300,307,308,-259]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37179","arcs":[[-307,309,-255,-265,-267]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37061","arcs":[[-276,-304,310,311,-292,-241]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37153","arcs":[[-260,312,313,-305,-262]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37043","arcs":[[-288,314,-296]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37031","arcs":[[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335,-302,-280,336]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37165","arcs":[[337,338,-313,-309]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37133","arcs":[[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[-336,349,350,-311,-303]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37155","arcs":[[351,352,353,-338,-308,-299]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37017","arcs":[[354,355,-352,-298,-294]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37141","arcs":[[[356,357]],[[-351,358,359,360,361,-355,-293,-312]]]},{"type":"Polygon","properties":{"name":"NC"},"id":"37047","arcs":[[-362,362,363,-353,-356]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37129","arcs":[[[364]],[[365,366]],[[367]],[[368]],[[369]],[[370,-357,371,372,-360]]]},{"type":"MultiPolygon","properties":{"name":"NC"},"id":"37019","arcs":[[[373]],[[374]],[[375]],[[376]],[[-366,377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[-373,383,-363,-361]]]}]},"states":{"type":"GeometryCollection","bbox":[-84.32186486599994,33.8417490720002,-75.46003300399991,36.588148875000115],"geometries":[{"type":"MultiPolygon","properties":{"name":"North Carolina"},"id":"37","arcs":[[[373]],[[374]],[[375]],[[376]],[[378]],[[379]],[[364]],[[380]],[[377,366]],[[381]],[[367]],[[382]],[[368]],[[369]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[315]],[[348]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[0]],[[278]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[220]],[[289]],[[222]],[[223]],[[224]],[[118]],[[119]],[[120,221,122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[130]],[[131]],[[132]],[[133]],[[20]],[[21]],[[22]],[[23]],[[89]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[134,34]],[[35]],[[30,40,77,87,90,17,51,110,183,180,225,129,226,219,199,215,290,283,300,281,336,349,358,370,357,371,383,363,353,338,313,305,309,255,277,247,236,285,268,276,251,286,314,296,272,230,214,159,150,140,98,86,4,7,12,38,69,72,58,65,61,46,49,53,19,39,32]]]}]}},"arcs":[[[90683,37902],[22,-94],[0,1],[1,-10],[22,-62],[-13,-28],[-124,-258],[-247,-654],[-23,-14],[-16,-10],[-22,58],[15,120],[36,81],[13,31],[16,17],[27,29],[12,16],[127,359],[29,207],[34,195],[42,256],[47,-17],[2,-223]],[[33499,99507],[2,-211],[6,-54],[9,-66],[13,-7],[-1,-40],[-1,-55],[-15,-22],[3,-40],[-3,-43],[-9,-40],[-1,-27],[-1,-24],[0,-91],[-11,-55],[-9,-63],[-1,-6],[-2,-51],[0,-44],[2,-36],[10,-40],[9,-24],[3,-9],[5,15],[15,48],[2,6],[0,6],[1,1],[5,40],[1,15],[3,29],[5,36],[15,37],[23,-7],[4,-37],[-7,-69],[5,-40],[1,-16],[6,-82],[-9,-48],[-15,-29],[-5,-62],[6,-47],[8,-55],[12,-51],[13,-40],[11,-36],[6,-33],[19,-33],[4,-47],[11,-66],[20,-91],[8,-32],[1,-6],[6,-23],[1,-4],[7,-22],[2,-7],[18,-29],[1,-2],[10,-17],[15,-47],[5,-23],[10,-45],[4,-19],[11,-51],[14,-59],[3,-43],[4,-58],[4,-44],[2,-58],[-2,-77],[2,-97],[1,-63],[8,-40],[7,-40],[2,-25],[3,-23],[9,-58],[8,-30],[2,-6],[2,-17],[5,-34],[7,-44],[14,-51],[18,-58],[47,-171],[12,-40],[16,-55],[33,-106],[13,-40],[13,-41],[4,-13],[21,-33],[15,-47],[-6,-44],[2,-47],[12,-15],[10,-44],[13,11],[21,-3],[4,-40],[-3,-62],[8,-40],[7,-29],[12,-44],[1,-55],[0,-69],[12,-33],[12,15],[12,0],[18,-11],[15,-51],[17,-44],[16,-7],[18,-25],[15,-48],[6,-44],[5,-40],[10,-47],[7,-36],[12,-40],[21,-80],[14,-41],[19,-25],[16,-21],[3,-4],[12,-30],[1,-2],[3,-9],[15,-36],[1,-7],[4,-39],[0,-9],[0,-10],[0,-44],[9,-51],[4,-13],[4,-20],[7,-51],[4,-47],[0,-10],[3,-41],[7,-33],[4,-12],[14,-39],[2,-15],[8,-40],[7,-34],[1,-6],[5,-65],[7,-51],[4,-51],[-2,-55],[3,-69],[-7,-40],[-2,-55],[3,-65],[0,-66],[-4,-65],[-12,-33],[4,-55],[9,-36],[8,-36],[-5,-48],[9,-54],[10,-44],[12,-47],[10,-51],[3,-44],[14,-29],[4,-7],[27,-51],[10,-22],[12,-15],[18,-3],[-2,-47],[-1,-8],[8,-66],[13,-21],[9,-48],[14,-33],[15,-11],[17,-51],[10,-76],[-1,-8],[-4,-43],[-6,-27],[-3,-17],[0,-15],[2,-39],[1,-15],[11,-54],[11,-55],[3,-48],[1,-7],[-6,-51],[-2,-7],[-8,-25],[-9,-55],[-1,-11],[-5,-70],[-1,-3],[1,-20],[1,-17],[1,-6],[-12,-41],[-11,-25],[-10,-18],[-14,-40],[-12,-55],[-6,-69],[-8,-40],[-8,-62]],[[34620,91883],[-12,-40],[-17,-36],[-16,0],[-18,18],[-16,22],[-12,7],[-11,-11],[-6,-55],[-30,-54],[-15,43],[-7,33],[-19,11],[-12,7],[-21,11],[-13,0],[-17,-18],[-23,-11],[-19,-3],[-19,25],[-17,55],[-17,32],[-7,44],[-17,44],[-14,7],[-13,-7],[-13,-15],[-14,-25],[-13,-22],[-20,22],[-10,18],[-26,-15],[-13,37],[-18,-7],[-25,3],[-3,0],[-11,-22],[-12,-25],[-19,-4],[-22,15],[-19,33],[-15,36],[-16,36],[-21,4],[-14,7],[-22,4],[-15,4],[-4,80],[2,65],[-9,66],[-20,18],[-31,-15],[-19,-62],[-33,-65],[-13,-26],[-26,-40],[-7,-32],[-12,-30],[-16,-32],[-16,-37],[-19,-47],[-29,-62],[-1,-62],[4,-36],[15,-55],[-3,-40],[-15,-29],[-12,-11],[2,-58],[-14,-22],[-17,-15],[-13,-11],[-12,26],[14,84],[-15,36],[-25,-14],[-12,-26],[-16,-33],[-10,-18],[-11,-22],[-13,-33],[-8,-123],[-13,-237],[-14,-240],[-4,-70],[-8,-131],[-2,-24],[-24,-427],[-4,-47],[-2,-44],[-3,-84],[1,-108],[0,-1],[10,-18],[16,18],[18,7],[10,-69],[-8,-36],[4,-66],[-6,-40],[8,-33],[0,-43],[21,-70],[-21,-21],[-5,-37],[-32,18],[1,-65],[-19,0],[-20,18],[-5,-47],[-6,-84],[-7,-109],[-8,-29],[-32,-102],[-9,-66],[26,-98],[12,-26],[-26,-14],[-25,18],[-31,-43],[-8,-12],[-16,-51],[-14,-29],[13,-40],[-33,-116],[-21,29],[-18,47],[-20,18],[-21,44],[-6,36],[-6,30],[-14,76],[-25,22],[-12,11],[-14,14],[-13,19],[-15,18],[-26,47],[-13,18],[-9,33],[-22,0],[-15,11],[-20,22],[-27,40],[1,44],[-33,51],[-29,14],[-16,7],[-25,-21],[-15,-19],[-8,-62],[9,-36],[3,-51],[2,-47],[4,-51],[5,-40],[12,-66],[-1,-47],[6,33],[3,-37],[2,-54],[-1,-48],[-10,-51],[-12,-22],[-9,-21],[-13,-15],[-17,0],[-14,0],[-17,4],[-14,3],[-12,-3],[-20,-8],[-16,4],[-13,-7],[-10,-19],[-8,-32],[-7,-51],[6,-44],[9,-51],[-6,-36],[-5,-91],[2,-95],[-13,11],[-18,-33],[-21,-47],[-13,-22],[-20,-4],[-23,-14],[-20,-18],[-2,-66],[-37,-4],[-18,-3],[-30,-66],[-27,-54],[-9,25],[-9,-33],[-12,-40],[-13,-36],[-13,-73],[-18,-113],[0,-62],[-13,18],[-27,30],[-16,14],[-11,29],[-17,26],[-11,0],[-26,-4],[-14,11],[-17,15],[-10,18],[-18,18],[-11,-36],[0,-37],[-7,-40],[-8,-44],[-2,-61],[6,-81],[-2,-36],[-8,-135]],[[32100,87335],[-55,15],[-13,3],[-35,15],[-26,44],[-37,65],[-18,37],[-31,51],[-25,47],[-25,44],[-21,38],[-10,20],[-13,22],[-11,18],[-11,36],[-14,15],[-20,25],[-26,44],[-34,62],[-56,-44],[-30,8],[-7,29],[-18,58],[-34,102],[-17,51],[-38,120],[-20,29],[-38,55],[-13,22],[-14,22],[-21,29],[-23,32],[-12,8],[-19,32],[-18,15],[-19,33],[-16,25],[-39,62],[-23,-9],[-4,-2],[-2,-2],[-29,-45],[-3,-4],[-10,-11],[-15,-29],[-17,-11],[-27,-11],[-16,59],[-9,54],[-9,29],[-5,23],[-2,10],[-6,41],[0,3],[-9,58],[-8,17],[-9,23],[-13,37],[2,35],[0,8],[-6,24],[-3,9],[-27,84],[-15,43],[-5,15],[-8,29],[-12,30],[-1,3],[-15,53],[-2,9],[-17,91],[-6,40],[-8,33],[-2,23],[-2,25],[0,10],[-1,2],[-2,11],[-7,45],[-13,58],[-12,55],[-12,44],[-24,65],[-12,26],[-22,44],[-16,36],[-11,22],[-15,47],[-9,29],[-16,37],[0,2],[-7,34],[-4,44],[-13,47],[-13,36],[-10,44],[-14,44],[-54,164],[-36,116],[-58,175],[-11,33],[-19,62],[-19,58],[-17,51],[-40,124],[-64,218],[-15,51],[-9,37],[-18,40],[-27,62],[-46,50],[-49,56],[-2,3],[-96,142],[-11,18],[-24,33],[-3,-40],[-24,22],[-28,-4],[-1,22],[18,7],[-6,22],[0,29],[-18,36],[-11,15],[-60,87],[-76,117],[-47,69],[-19,29],[-33,48],[-27,40],[-72,109],[-19,29],[-12,17],[-30,45],[-3,4],[-38,54],[-37,55],[-20,32],[-12,19],[-39,58],[-28,36],[-95,135],[-27,55]],[[29265,92830],[-4,6],[-1,4],[-5,31],[-4,19],[-12,34],[-12,29],[-2,6],[-2,2],[-7,0],[-4,-3],[-6,-7],[-20,-8],[-18,14],[-18,7],[-3,5],[-1,47],[3,16],[-2,25],[-3,44],[0,3],[3,27],[4,55],[0,1],[-16,18],[-9,29],[-1,8],[0,77],[7,107],[0,1],[-4,43],[-12,53],[-1,9],[-1,35],[0,1],[2,18],[1,12],[1,13],[1,4],[5,9],[6,5],[2,1],[12,-2],[19,16],[6,-10],[16,-30],[14,25],[4,38],[12,22],[23,7],[7,11],[11,45],[4,40],[6,7],[4,8],[8,42],[9,23],[17,19],[4,2],[7,14],[6,50],[1,1],[3,0],[11,1],[15,7],[0,4],[3,19],[6,30],[10,51],[1,7],[1,2],[6,36],[4,40],[4,36],[2,40],[-1,7],[1,11],[-3,14],[-2,12],[-17,55],[-20,54],[4,6],[15,25],[18,14],[12,21],[14,25],[11,32],[-6,34],[3,36],[9,73],[-4,21],[-10,30],[-14,33],[-8,60],[1,3],[14,13],[7,12],[6,9],[9,19],[1,1],[3,18],[-5,67],[-1,57],[-1,5],[-6,9],[-1,3],[-7,25],[0,6],[5,45],[1,25],[0,24],[-3,34],[-1,3],[-1,3],[-10,43],[4,14],[8,15],[12,19],[11,13],[14,16],[3,0],[19,8],[10,27],[9,48],[8,41],[5,7],[4,3],[18,4],[2,3],[1,1],[11,14],[5,7],[8,7],[6,6],[9,5],[3,1],[-1,-18],[28,-1],[1,22],[7,17],[6,22],[10,34],[13,34],[0,42],[-3,74],[5,46],[8,26],[1,55],[-1,22],[-6,14],[-12,40],[-3,46],[0,10],[4,48],[4,20],[1,33],[0,2],[0,2],[-2,16],[-8,61],[-2,19],[-5,73],[0,14],[-2,46],[0,38],[-1,27],[0,51],[6,30],[8,26],[4,31],[-8,56],[-4,56],[0,10],[0,18],[-5,20],[-10,31],[-1,1],[-17,55],[-1,21],[1,33],[2,5],[2,10],[10,27],[0,1],[2,3],[1,2],[10,45],[-1,45],[9,27],[1,39],[-4,12],[-9,38],[-1,53],[-3,35],[-1,8],[-8,56],[-1,7],[-2,29],[-5,22],[-6,29],[1,36],[-1,14],[-4,12],[-8,21],[-1,5],[-2,66],[0,6],[-1,8],[-1,17],[-1,4],[-1,4],[-4,29],[0,4],[-4,40],[-2,6],[-1,2],[-9,22],[-1,2],[-1,1],[-16,27],[-6,11],[-11,20],[-11,54],[3,18],[2,16],[0,13],[2,65],[2,15],[-9,60],[-6,66],[4,54],[0,44],[8,43],[18,15],[8,2],[15,-2],[1,0],[12,0],[1,0],[16,4],[4,1],[11,13],[0,1],[-1,26],[0,64],[5,43],[3,16],[3,10],[7,45],[5,50],[16,64],[2,5],[8,24],[5,21],[4,10],[7,18],[4,24],[4,94],[0,3],[8,11],[15,2],[11,21],[-7,59],[0,1],[-3,58],[0,40],[6,39],[3,15],[3,66],[6,55],[0,19],[-12,46],[-4,60],[0,7],[-2,10],[-7,54],[0,3],[10,48],[10,21],[0,1],[3,5],[31,-16],[22,7],[18,8],[14,3],[18,1],[10,2],[5,5],[0,1],[8,28],[2,7],[4,9],[2,9],[4,15],[6,28],[2,37],[-8,19],[5,47],[-9,37],[-10,54],[-3,84],[3,12],[1,8],[1,33],[3,53],[3,54],[-1,4],[-4,24],[-1,5],[-8,27],[-6,12],[2,26],[13,32],[13,34],[2,0],[90,-5],[20,-1],[15,-1],[2,0],[33,0],[50,-5],[24,-2],[15,-1],[48,0],[13,1],[58,-11],[13,0],[15,0],[21,0],[12,0],[14,0],[17,0],[12,0],[90,0],[20,0],[35,0],[13,0],[42,-11],[31,0],[57,-4],[19,-2],[1,0],[18,-1],[2,-1],[33,-1],[37,-2],[37,-11],[96,-29],[22,-4],[37,-7],[22,-4],[31,-9],[20,-4],[149,-38],[49,-14],[32,-7],[33,-10],[25,-5],[24,-4],[67,-18],[23,-7],[19,-8],[18,-6],[13,-5],[13,-3],[30,-11],[105,-22],[1,0],[29,-4],[12,-3],[18,1],[5,-1],[115,-11],[34,-5],[17,-2],[15,-1],[17,0],[31,0],[18,-1],[14,-6],[29,-16],[31,-8],[21,4],[16,3],[99,33],[6,2],[18,-3],[41,-14],[12,-4],[52,-15],[28,-7],[33,-11],[24,-8],[1,0],[28,-10],[22,-8],[21,-7],[68,-26],[11,-3],[20,-10],[25,-2],[38,-4],[35,-4],[37,-4],[43,-3],[35,-4],[64,-6],[12,0],[20,-3],[16,-3],[25,-2],[14,-1],[91,-9],[29,1],[4,-1],[16,-2],[3,-2],[7,-2],[13,-1],[16,-3],[6,-1],[11,0],[3,0],[20,-5],[12,-2],[19,0],[22,-4],[20,0],[22,-2],[23,-1],[17,0],[26,-3],[15,-1],[12,0],[4,-51],[23,29],[40,7],[28,9],[20,2],[4,1],[2,50],[30,-25],[29,-26],[37,0],[26,0]],[[38595,99041],[-18,-40],[-10,-29],[-15,-33],[-10,-25],[-23,-57],[-1,-1],[0,-40],[-2,-51],[-4,-37],[-8,-29],[-1,-7],[-99,-430],[-11,-189],[-15,-226],[-6,-116],[21,-4],[16,-18],[5,-37],[20,-14],[-1,-51],[21,-62],[-8,-66],[-24,-204],[-15,-123],[-11,-99],[-4,-43],[-11,-26],[-19,-25],[-18,-29],[-34,-73],[-9,-44],[-11,-44],[-9,-32],[-11,-40],[-17,-66],[-14,-51],[-17,-62],[-18,-73],[-26,-94],[-29,-117],[-24,-91],[-37,-138],[-55,-204],[-13,-48],[-46,-174],[-35,-128],[-12,-47],[-9,-36],[-18,-66],[-42,-76],[-11,-19],[-43,-76],[-33,-58],[16,-62],[17,-62],[6,-29],[11,-40],[22,-91],[18,-73],[23,-88],[27,-109],[8,-29],[0,-1],[11,-43],[25,-102],[30,-120],[23,-87],[48,-190],[15,-65],[9,-33],[-18,-58],[-19,-58],[-97,-273],[-33,-95],[-34,-95],[-21,-69]],[[37858,93201],[-14,-40],[-18,-73],[-11,-87],[-14,-29],[-18,-37],[-19,-22],[-9,-25],[-2,-69],[-37,7],[-26,-116],[4,-117],[6,-47],[6,-33],[4,-55],[3,-43],[0,-62],[-9,-26],[-10,-43],[-12,7],[-13,11],[-3,2],[-27,20],[-20,18],[-25,18],[-40,33],[-11,3],[-21,-29],[-34,-47],[-13,-18],[-36,-51],[-26,-37],[-30,-40],[-13,-18],[-23,-33],[-18,-18],[-17,7],[-53,26],[-14,4],[-33,18],[-14,7],[-19,25],[-8,33],[-49,182],[-16,59],[-115,440],[-1,182],[-4,452],[-11,18],[-11,7],[-20,15],[-53,36],[-28,15],[-47,29],[-18,14],[-44,26],[-22,14],[-36,26],[-40,25],[-12,8],[-25,18],[-14,40],[-1,4],[-1,12],[-3,53],[-8,32],[-2,12],[0,21],[0,12],[0,36],[1,23],[3,43],[1,10],[-9,30],[-13,43],[-13,37],[-17,43],[-1,51],[-3,70],[-18,21],[-18,15],[-12,11],[-21,22],[-18,14],[-14,59],[-13,61],[-10,55],[-39,-36],[-12,-16],[-1,-3],[-17,-58],[-13,-40],[-1,-5],[-12,-49],[-5,-6],[-12,-16],[-13,-11],[-24,-37],[-10,-21],[-14,-37],[-12,-36],[-10,-22],[-2,-4],[-2,-1],[-14,-6],[-18,4],[-12,-8],[-17,-18],[-12,0],[-5,0],[-6,10],[-4,8],[-1,0],[-13,-3],[-14,-22],[-14,-22],[-25,-36],[-24,-41],[3,-58],[0,-51],[-8,-43],[-6,-37],[-10,-51],[-11,-33],[-11,-32],[-4,-62],[-11,-29],[-37,-62],[-19,3],[-3,37],[-4,36],[-8,29],[-14,37],[-9,22],[-10,51],[-31,3],[-1,3],[-10,23],[-2,3],[-1,22],[-2,44],[-6,51],[-10,44],[-10,29],[-5,10],[-17,36],[-1,1],[-17,29],[-20,18],[-10,9],[-6,6],[-5,7],[-9,15],[-7,0],[-5,0],[-21,3],[-2,5],[-12,32],[-5,54],[-13,37],[-9,-29],[-8,-29],[-8,-33],[-9,-33],[-26,-106],[-9,-32],[-14,-62],[-52,-211],[-15,-62],[-39,-164],[-39,-157],[-13,-58],[-21,-80],[-20,-84],[-10,-44],[-14,-36],[-33,-65],[-13,-22],[-17,-33],[-37,-73],[-17,-33],[-1,-1],[-37,-72],[-33,-65],[0,-1],[-15,-28],[-12,-22],[-19,-36],[-21,-37],[-12,-44],[-18,-61],[-54,-186],[-49,-29],[-15,-8],[-15,0],[-11,-25],[-14,-29],[-18,-4],[-18,-36],[-23,-48],[-36,-76],[-1,-14],[-1,-26],[-11,-55],[-14,-3],[-12,-4],[-9,-33],[-14,-47],[-16,7],[-13,4],[-11,7],[-17,11],[-17,15],[-21,-26],[-11,-14],[-15,-15]],[[33499,99507],[55,4],[36,4],[28,0],[21,0],[29,0],[31,0],[19,2],[32,4],[41,5],[30,7],[9,0],[5,0],[25,-1],[25,-2],[18,-1],[23,-4],[17,0],[19,-1],[25,-1],[16,-1],[12,0],[23,0],[41,0],[15,-2],[36,-1],[18,0],[12,-1],[11,0],[14,0],[17,4],[18,0],[26,4],[16,-8],[15,-8],[11,-3],[16,-2],[19,2],[28,7],[19,-18],[4,-3],[19,-5],[14,-2],[26,0],[50,0],[40,-8],[23,-6],[57,-10],[30,-5],[31,-1],[68,-7],[22,-3],[74,-8],[58,-6],[48,-5],[113,-10],[33,-3],[12,-1],[22,0],[20,-2],[21,-1],[13,-1],[17,0],[1,0],[25,-3],[18,-1],[23,0],[48,-3],[25,-3],[10,-1],[46,-4],[26,-3],[55,-6],[11,-1],[17,0],[65,-8],[16,0],[11,-3],[7,-1],[41,-12],[13,-4],[22,-5],[12,0],[34,-6],[31,-4],[9,0],[14,-1],[12,-4],[12,0],[4,0],[30,-5],[14,-2],[11,0],[48,-4],[11,-3],[2,0],[12,-2],[7,0],[15,-2],[13,0],[54,-7],[32,-3],[16,-2],[45,-2],[32,-4],[54,-11],[31,-5],[10,-2],[42,-8],[36,-10],[1,-1],[13,-3],[2,0],[25,-5],[25,-6],[14,0],[23,-4],[33,0],[37,-3],[40,0],[19,-3],[16,-1],[15,0],[17,0],[12,0],[16,-3],[7,-1],[17,0],[15,0],[47,-3],[82,-8],[22,0],[18,1],[86,3],[21,-3],[22,-3],[6,-1],[15,-3],[9,-2],[21,-4],[31,-1],[28,-5],[17,-3],[15,-3],[65,-13],[5,0],[11,-3],[9,-1],[25,-5],[16,-4],[22,-3],[12,-5],[7,-2],[26,-9],[38,-15],[15,-5],[4,-2],[7,-3],[6,-2],[28,-9],[16,-1],[35,-1],[57,-4],[34,-2],[18,-1],[17,0],[14,-1],[16,-1],[13,0],[13,-1],[33,-3],[72,-7],[32,-7],[3,0],[21,-3],[18,-2],[51,-4],[30,11],[34,12],[50,-2],[19,-1],[31,-2],[24,-4],[14,-2],[17,-2],[14,1],[28,-6],[24,0],[18,0],[12,-3],[28,-1],[13,0],[30,0],[12,-14],[34,-5],[40,-2],[116,-8],[3,0],[23,0],[7,0],[42,-3],[25,0],[53,-8]],[[43802,98633],[-1,-69],[0,-43],[-2,-186],[-2,-47],[-3,-120],[-2,-77],[-1,-116],[-3,-183],[-5,-185],[-1,-73],[-1,-69],[-1,-73],[-2,-135],[-6,-306],[-2,-77],[-1,-76],[1,-65],[-3,-178],[-2,-102],[-1,-95],[-7,-302],[-1,-88],[-1,-65],[0,-3],[-1,-34],[-1,-102],[-1,-76],[-3,-120],[-1,-62],[-2,-142],[-2,-106],[-3,-120],[-3,-226],[0,-58],[-3,-160],[-1,-47],[-2,-99],[-3,-171],[-2,-131],[-1,-62],[-3,-135],[0,-69],[-1,-51],[-1,-145],[0,-70],[-3,-233],[-1,-54],[0,-66],[-3,-124],[0,-47],[-2,-145],[-1,-179],[-1,-184],[0,-2],[-1,-51],[-1,-160],[-2,-36],[-1,-113],[-1,-168],[0,-105],[-1,-117],[0,-16],[-1,-64],[-3,-349],[-4,-295],[-1,-80],[0,-139],[-2,-174],[0,-81],[-1,-43],[0,-124],[-1,-100],[0,-2],[-3,-251],[-1,-106],[-1,-167],[-1,-142],[0,-51],[-1,-102],[-1,-131],[0,-80],[-1,-81],[-3,-229],[-1,-157],[-1,-65],[0,-62],[0,-76],[-1,-139],[-2,-62],[-3,-367],[-1,-40],[1,-44]],[[43670,88111],[1,-77],[-3,-251],[-1,-116],[0,-3],[-1,-183],[0,-10],[-2,-99]],[[43664,87372],[-13,30],[-32,26],[-53,90],[-19,87],[-4,43],[-1,70],[1,59],[6,56],[-1,21],[-8,45],[-18,71],[-16,34],[-10,14],[-18,17],[-26,6],[-35,5],[-27,-18],[-8,-17],[-8,-30],[-15,-53],[-14,-41],[-22,-21],[-27,-7],[-22,-3],[-25,2],[-38,11],[-31,18],[-49,34],[-32,21],[-22,32],[-11,8],[-12,-14],[-20,-19],[-23,-14],[-95,0],[-45,6],[-40,4],[-43,-19],[-32,-8],[-18,14],[-24,36],[-24,81],[-6,50],[2,106],[8,110],[11,98],[2,53],[-2,105],[-5,74],[-8,99],[-13,81],[-14,39],[-65,26],[-44,10],[-21,-2],[-11,-1],[-3,0],[-17,-5],[-25,-11],[-11,-4],[-15,-10],[-19,-12],[-8,-7],[-19,-15],[-93,-81],[-43,-43],[-61,-72],[-8,-13],[-12,-26],[-30,-66],[0,-2],[-35,-70],[-1,-2],[-1,-2],[-15,-25],[0,-1],[-2,-3],[-1,0],[-5,-8],[-3,-3],[-1,-2],[-2,-2],[-2,-1],[-2,-1],[-27,-14],[-1,-1],[-1,0],[-20,-6],[-1,0],[-2,0],[-1,0],[-5,0],[-1,1],[-2,0],[-15,6],[-2,1],[-2,2],[-2,2],[-2,2],[-1,2],[-15,22],[-1,1],[-2,3],[0,1],[-7,14],[-1,2],[-2,4],[-1,4],[-2,4],[-1,5],[-1,3],[-3,12],[-1,2],[-1,6],[-1,5],[-1,6],[0,2],[-3,18],[-5,23],[-1,2],[-99,160],[-1,0],[-78,132],[-1,2],[-2,3],[-1,2],[-13,31],[-43,76],[-24,29],[-11,8],[-6,-1],[-12,-21],[-13,-41],[0,-4],[15,-47],[0,-2],[29,-99],[1,-2],[1,-5],[1,-5],[1,-6],[1,-6],[1,-5],[0,-2],[4,-33],[1,-5],[0,-6],[1,-6],[0,-7],[0,-6],[0,-4],[1,-36],[-1,-9],[0,-6],[0,-7],[0,-6],[-1,-6],[-1,-6],[0,-3],[-5,-37],[-1,-3],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-2,-5],[-1,-4],[-2,-4],[-1,-4],[-16,-34],[-2,-4],[-1,-3],[-2,-2],[-11,-13],[-10,-11],[0,-1],[-2,-1],[-2,-2],[-2,-1],[-13,-6],[-2,-1],[-2,0],[-2,0],[-2,1],[-25,8],[0,1],[-27,10],[-18,-1],[-18,-7],[-21,-16],[-8,-11],[-5,-14],[-3,-15],[-3,-27],[-1,-5],[-1,-6],[0,-1],[-3,-16],[-8,-55],[-2,-19],[-1,-4],[-4,-29],[-1,-16],[-2,-32],[-1,-21],[-6,-143],[-4,-89],[-1,-5],[0,-6],[-1,-6],[0,-6],[-1,-6],[-1,-6],[0,-2],[-9,-44],[-1,-3],[0,-3],[-8,-34],[0,-2],[-1,-5],[-2,-4],[-1,-5],[-1,-2],[-9,-24],[-1,-1],[-1,-4],[-2,-3],[-2,-3],[-2,-3],[-1,-2],[-29,-33],[0,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-1,0],[-26,-4],[-2,0],[-27,1],[-21,-3],[-1,0],[-11,0],[-19,-12],[-26,-15],[-1,0],[-22,-9],[-1,-1],[-18,-4],[-2,0],[-2,0],[-2,1],[-2,1],[-2,1],[-2,2],[-1,1],[-16,20],[-1,1],[-2,3],[-2,3],[-2,3],[-1,4],[-8,18],[0,1],[-1,4],[-2,4],[-1,5],[-2,5],[-1,5],[-1,6],[0,4],[-7,41],[0,1],[-1,6],[-1,6],[0,6],[-1,7],[0,6],[0,6],[0,5],[-1,39],[0,13],[-1,28],[-2,19],[-4,18],[-3,12],[-9,33],[-1,3],[-1,6],[0,2],[-7,35],[-1,3],[-1,6],[-1,6],[0,6],[-1,6],[0,1],[-2,31],[-1,3],[-4,58],[0,7],[-7,13],[-25,48],[-2,3],[-1,2],[-7,17],[0,1],[-13,32],[-19,16],[-17,-1],[-24,-27],[-28,-41],[-1,-1],[-2,-2],[-1,-1],[-20,-20],[-1,0],[-2,-2],[-2,-1],[-1,-1],[-2,0],[-1,0],[-24,2],[-54,-5],[-1,0],[-1,0],[-30,2],[-1,1],[-42,10],[-2,1],[-2,1],[-1,0],[-33,25],[-2,1],[-1,2],[-2,2],[-13,18],[-2,2],[-2,3],[-2,4],[-1,3],[-8,20],[-11,27],[-18,18],[-23,5],[-29,-17],[-3,-4],[-23,-28],[-16,-18],[0,-1],[-21,-23],[-8,-9],[-2,-2],[-10,-9],[0,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,0],[-12,2],[-2,1],[-2,1],[-2,1],[-2,2],[-1,1],[-10,12],[0,1],[-2,3],[-2,3],[-2,3],[-1,4],[-2,4],[0,1],[-4,10],[-1,3],[-1,5],[-1,5],[-2,5],[-1,6],[0,3],[-4,22],[0,2],[-1,6],[-1,6],[0,6],[-1,6],[0,5],[-1,21],[0,1],[0,7],[0,6],[0,7],[0,6],[0,6],[1,7],[0,1],[6,72],[1,1],[7,83],[1,3],[0,2],[5,44],[0,15],[-5,9],[-38,51],[-3,-1],[-2,-3],[-7,-16],[-15,-37],[-1,-2],[-11,-42],[-4,-18],[-12,-74],[-19,-131],[-8,-56],[0,-1],[-1,-6],[-1,-5],[-2,-6],[0,-1],[-9,-35],[-1,-3],[-1,-5],[-1,-5],[-1,-2],[-20,-54],[-1,-2],[-2,-4],[-2,-3],[-1,-2],[-15,-26],[-1,-1],[-1,-2],[-2,-2],[-14,-17],[-2,-2],[-2,-2],[-2,-1],[-2,0],[-1,-1],[-9,0],[-3,0],[-1,0],[-9,4],[-2,1],[-2,1],[-2,2],[-2,2],[-14,19],[-2,2],[-1,3],[-2,4],[-2,3],[-1,4],[-11,31],[-1,2],[-10,31],[-1,3],[-2,5],[-1,5],[-1,4],[-8,37],[-10,39],[-3,5],[-12,17],[-1,2],[-2,3],[-2,4],[-2,3],[0,2],[-8,20],[-1,2],[-1,5],[-1,4],[-2,5],[-5,20],[0,1],[-1,5],[-1,6],[0,1],[-2,8],[0,4],[-1,6],[-1,6],[0,3],[0,4],[-3,16],[-2,8],[-1,2],[-12,7],[-22,12],[-10,-5],[0,-1],[-1,0],[-61,-19],[-5,-5],[-12,-40],[-1,-4],[-15,-61],[-1,-1],[0,-2],[-3,-28],[0,-12],[0,-6],[0,-4],[-1,-92],[0,-2],[0,-3],[-5,-142],[-1,-19],[0,-3],[0,-3],[-2,-37],[-1,-21],[-3,-63],[0,-3],[-1,-7],[0,-6],[0,-1],[-1,-4],[0,-5],[-1,-3],[0,-6],[-1,-6],[-6,-34],[-20,-114],[-29,-64],[-55,-58],[-79,-57],[-25,14],[-24,37],[-30,85],[-18,29],[-31,14],[-31,3],[-25,-13],[-31,-41],[-54,-75],[-12,-17],[-14,-7],[-1,0],[-2,-1],[-23,-5],[-32,-17],[-1,0],[-2,-1],[-3,-1],[-23,-5],[-12,-6],[-9,-9],[-36,-35],[-6,-7],[-7,-20],[-1,-1],[-1,-3],[0,-1],[-2,-4],[-2,-3],[-2,-2],[-2,-2],[0,-1],[-65,-70],[-17,-10],[-22,-27],[-4,-5],[-15,-24],[-25,-21],[-14,-14],[-11,-12],[-1,-1],[-4,-3],[-10,-10],[-1,-1],[-2,-1],[-1,-1],[-30,57],[-43,-25],[-32,-15],[-24,-9],[-14,-5],[-14,-15],[-28,-44],[-10,-18],[-15,-33]],[[38915,87182],[1,57],[0,27],[4,237],[1,109],[2,66],[1,36],[1,47],[0,18],[0,51],[1,54],[0,19],[2,80],[2,124],[2,193],[1,62],[4,200],[1,124],[2,142],[5,251],[1,139],[3,218],[6,342],[4,368],[2,106],[2,107],[1,93],[-3,26],[-16,36],[-8,55],[-17,14],[-17,0],[-12,7],[-4,37],[0,44],[-8,36],[-18,51],[-11,22],[-24,18],[-11,-11],[-16,33],[-12,51],[-15,25],[-16,29],[-35,37],[-25,18],[-14,51],[-14,33],[-8,47],[-7,69],[-15,29],[-11,40],[7,48],[1,51],[-2,54],[-7,55],[-9,58],[-30,37],[-13,40],[-1,58],[-6,51],[-11,40],[-11,11],[-18,18],[-15,4],[-19,0],[-16,25],[-9,48],[-17,54],[-12,55],[-11,25],[-23,-7],[-15,-15],[-12,-32],[-7,-40],[-13,-29],[-13,3],[-28,47],[-17,26],[-12,0],[-11,0],[-16,29],[-10,58],[-5,40],[-7,73],[-11,51],[-10,58],[-9,62],[-30,175],[-10,66],[-10,29],[-15,29],[-19,18],[-13,18],[-39,84],[-82,178],[-91,201],[-30,69],[-12,29]],[[38595,99041],[29,-5],[4,0],[32,-5],[33,-4],[40,-7],[44,-6],[38,-5],[19,-3],[32,-4],[1,0],[22,-3],[259,-34],[138,-18],[12,-3],[15,-1],[4,-3],[2,1],[3,2],[7,1],[20,3],[19,1],[35,6],[39,5],[37,5],[12,2],[19,4],[79,14],[108,20],[26,5],[18,3],[17,-3],[14,-4],[36,-7],[16,-4],[29,0],[16,-3],[35,-1],[71,0],[15,-2],[16,-1],[27,0],[20,0],[3,0],[47,7],[5,0],[59,9],[17,2],[22,4],[27,4],[6,1],[14,2],[16,2],[27,4],[15,5],[5,2],[24,1],[1,1],[16,3],[6,1],[11,3],[32,3],[123,19],[66,0],[46,-2],[37,-1],[32,0],[30,-1],[20,1],[55,3],[44,-6],[53,-8],[1,0],[32,-4],[42,-8],[15,-6],[3,-1],[27,-7],[6,-1],[28,-6],[9,-2],[29,-6],[33,-8],[55,-11],[45,-7],[38,-9],[6,-1],[40,-9],[14,-2],[62,-11],[1,0],[69,-8],[65,-7],[39,-6],[18,-1],[11,-1],[27,-2],[12,-1],[34,0],[54,-6],[45,-7],[60,-9],[31,-3],[129,-18],[31,-4],[60,-7],[5,-1],[105,-14],[13,-3],[10,-1],[40,-3],[69,-11],[30,-4],[19,-3],[33,-4],[12,-1],[35,-5],[126,-15],[42,-6],[47,-6],[12,0],[55,-7],[75,-11],[18,-3],[32,-4],[42,-4],[91,-11],[17,-4],[13,0],[45,-7],[61,-7],[135,-15],[85,-11],[3,0],[15,-3],[91,-15],[43,-7],[66,-11],[61,-10],[48,-8],[18,-2],[14,-3],[58,-9],[35,-5]],[[87791,98634],[23,-59],[33,-83],[135,-346],[293,-747],[25,-62],[60,-167]],[[88360,97170],[0,-142],[0,-233],[0,-1147],[44,-339],[125,-957],[2,-17],[103,-799],[54,-419],[87,-670],[12,-98]],[[88787,92349],[-59,-44],[-75,-62],[-121,-91],[-69,-54],[-18,-15],[-111,-87],[-66,-51],[-122,-98],[-71,-55],[-206,-163],[-47,-37],[-98,-40],[-102,-37],[-31,-116]],[[87591,91399],[-113,-586],[-12,-59],[-38,29],[-18,4],[-14,4],[-20,-8],[-15,-3],[-18,-22],[-23,-18],[-24,-11],[-13,-26],[-15,-18],[-21,-47],[-17,-15],[-22,-62],[-4,-124],[-15,-69],[-22,-32],[-21,-11],[-19,0],[-25,32],[-17,19],[-12,0],[-11,-8],[-24,-18],[-18,11],[-35,25],[-14,11],[-14,33],[-32,51],[-17,18],[-21,40],[-15,11],[-15,-18],[-37,11],[-11,11],[-23,33],[-18,14],[-13,0],[-24,-3],[-35,-26],[-11,-11],[-7,-47],[-2,-36],[-3,-88],[-11,-33],[0,-83],[-8,-51],[-18,-8],[-18,22],[-11,0],[-20,-54],[-12,-30],[-6,-65],[0,-160],[-14,-29],[-15,18],[-14,-26],[5,69],[-5,55],[-16,-7],[-13,11],[-19,11],[-13,-48],[-16,33],[-14,10],[-1,1],[-14,0],[-14,44],[-12,-15],[-13,-40],[-19,26],[-12,18],[-15,-40],[-7,-29],[-5,-44],[0,-55],[-17,11],[-11,-80],[23,-25],[0,-51],[-14,0],[-18,0],[-5,-48],[13,-22],[24,-29],[-12,-32],[-23,11],[7,-59],[-19,0],[-15,-36],[-10,22],[-14,-33]],[[86232,89520],[-3,8],[-19,50],[-25,26],[-29,-15],[-16,11],[-22,15],[-21,69],[-15,26],[-25,47],[-9,23],[-13,31],[-39,58],[-3,91],[0,92],[-8,35],[-16,70],[-27,38],[-7,9],[-18,106],[-21,40],[0,-10],[1,-9],[1,-43],[13,-54],[18,-77],[36,-105],[5,-102],[3,-40],[11,-77],[6,-40],[5,-24],[12,-49],[-33,-25],[-31,32],[-20,66],[-19,52],[-2,6],[-76,135],[-26,80],[-19,73],[-52,146],[-34,58],[-29,40],[-25,44],[-6,94],[-14,113],[-16,80],[-40,69],[-10,31],[-21,60],[-19,85],[-3,14],[-2,-4],[-12,-25],[-14,46],[-16,52],[-15,50],[-10,30],[-11,44],[-10,36],[-7,33],[-8,36],[-5,30],[-6,39],[-15,49],[-12,39],[-49,102],[-30,3],[-28,0],[-16,6],[-7,2],[-40,134],[-2,38],[-2,46],[-42,69],[-42,8],[-32,43],[-30,-2],[-10,-1],[-12,-13],[-9,-9],[-15,-40],[-38,-18],[-42,-8],[-43,26],[-19,22],[-5,7],[-43,14],[-3,1],[-21,3],[-19,7],[-28,4],[-15,0],[-64,4],[-20,29],[0,17],[-2,78],[-40,91],[-33,54],[-55,91],[-57,62],[-7,7],[-40,8],[-79,14],[-166,160],[-107,124],[-65,-29],[-47,22],[-80,229],[-88,-14],[-107,69],[-67,91],[-133,122],[-2,2],[-71,124],[-25,39],[-49,77]],[[83323,93343],[-45,113],[-34,113],[-18,84],[-9,98],[5,138],[6,193],[-3,197],[-1,51],[13,207],[4,106],[-14,295],[-7,73],[-16,98],[-5,69],[-2,62],[4,66],[17,163],[4,37],[0,44],[-13,61],[-19,48],[-9,33],[-1,36],[17,44],[16,7],[13,0],[92,-47],[19,-11],[26,25],[6,33],[5,65],[-9,62],[-8,44],[-8,51],[-4,44],[-3,54],[6,62],[7,44],[9,29],[12,11],[16,4],[18,7],[12,11],[14,18],[12,33],[9,29],[15,58],[16,120],[13,128],[6,62],[2,40],[0,40],[3,58],[3,51],[7,47],[16,33],[18,0],[14,-18],[27,-22],[18,11],[23,44],[30,113],[7,65],[2,73],[-1,98],[13,55],[20,40],[5,48],[1,10],[-7,55],[-11,44],[-65,174],[-13,15],[-21,14],[-13,33],[-8,29],[-13,48],[-17,-4],[-15,-33],[-22,-29],[-16,-4],[-13,15],[-12,51],[6,51],[17,7],[24,-7],[9,51],[-2,40],[-15,91],[4,51],[11,7],[20,-7],[21,7],[11,33],[17,109],[-13,44],[-12,4]],[[83567,98390],[0,1],[-12,66],[0,20],[4,55],[2,43],[0,1],[-3,39],[0,11],[1,15],[3,16],[1,4],[8,25],[2,0],[27,-1],[17,0],[89,-4],[20,0],[31,-2],[4,-1],[12,0],[18,-1],[51,0],[60,-3],[108,-4],[26,0],[48,-7],[87,-4],[77,-4],[126,-3],[27,-3],[8,-1],[26,0],[95,-5],[58,-2],[29,0],[14,0],[20,-3],[17,-1],[27,0],[104,-3],[53,-4],[46,0],[28,0],[13,0],[42,4],[112,3],[81,-3],[43,-2],[39,-2],[84,-3],[29,-1],[17,0],[2,0],[22,-1],[37,-2],[127,21],[22,0],[47,0],[41,0],[31,0],[86,0],[39,0],[139,-2],[41,-1],[23,0],[26,0],[87,0],[37,0],[146,0],[99,-3],[27,-1],[15,0],[29,0],[12,0],[36,0],[15,0],[194,0],[69,-3],[22,0],[83,3],[68,0],[121,0],[284,0],[159,-11],[37,-3],[137,8],[16,1],[29,2]],[[95849,85517],[-9,-43],[-28,2],[-29,201],[-31,161],[0,18],[-2,29],[-30,55],[-45,191],[-42,150],[0,4],[-20,35],[-3,17],[12,77],[9,57],[3,22],[18,20],[11,78],[17,0],[16,-80],[21,-87],[3,-109],[2,-99],[22,-123],[18,-95],[23,-121],[24,-79],[23,-73],[16,-104],[1,-104]],[[94476,88304],[-1,-139],[7,-127],[-27,-55],[-26,4],[-5,1],[-22,3],[-27,40],[-5,7],[-10,160],[24,62],[25,7],[27,37],[40,0]],[[95752,88752],[21,-95],[-23,-47],[7,-80],[-27,-19],[-12,88],[-24,0],[-25,29],[24,105],[39,-18],[20,37]],[[95765,89090],[-43,-40],[-34,15],[-19,116],[31,44],[30,-29],[27,-44],[8,-62]],[[95615,89480],[3,-84],[-33,44],[-23,135],[1,91],[57,-62],[27,-70],[-32,-54]],[[95666,90452],[20,-73],[25,51],[27,4],[25,-80],[25,-55],[38,-11],[27,-86],[21,-6],[26,-67],[21,-274],[-31,-96],[-12,-3],[-29,-29],[-40,-26],[-4,-26],[15,-22],[59,-8],[3,-71],[-29,-286],[-53,-63],[-58,101],[-51,210],[-41,172],[14,72],[42,-46],[19,-32],[4,0],[2,175],[-30,91],[1,81],[-25,46],[-2,72],[36,55],[3,7],[-1,22],[-1,38],[-35,8],[-14,-27],[-10,-18],[-4,-88],[-25,-14],[-15,65],[-21,77],[-10,54],[7,77],[29,29],[18,120],[6,66],[10,58],[38,-22],[30,-80],[-37,-25],[-19,-30],[6,-87]],[[95293,94948],[4,-234],[10,-50],[23,-57],[-9,-144],[-31,-5],[-63,26],[-3,78],[-1,22],[-2,60],[9,104],[-35,-65],[-17,73],[-2,94],[8,132],[33,91],[23,43],[24,66],[31,-40],[18,-33],[-2,-42],[-18,-119]],[[95099,95564],[-44,-25],[0,127],[14,120],[43,-65],[-13,-157]],[[95141,98073],[78,-315],[10,-34],[3,-69],[4,-81],[-27,-127],[-17,83],[-16,-105],[-25,-44],[-27,51],[-11,-3],[-15,-4],[-28,-51],[1,50],[2,106],[-11,124],[-11,-35],[-9,-27],[-5,-23],[-13,-68],[-25,26],[-17,51],[-4,14],[10,113],[20,106],[15,62],[9,36],[-22,55],[6,102],[7,-2],[24,-6],[34,-65],[12,21],[11,19],[13,15],[12,14],[11,15],[1,-4]],[[95017,98386],[-17,-64],[-44,109],[6,75],[16,84],[21,4],[3,-102],[38,-19],[-23,-87]],[[94476,88304],[16,94],[23,59],[6,124],[-16,142],[0,98],[6,16],[12,28],[23,10],[24,22],[19,44],[22,51],[11,65],[32,8],[-20,59],[-2,6],[-6,43],[-8,63],[-21,53],[-11,27],[3,-131],[0,-45],[-2,-79],[-17,-44],[-21,-47],[-4,1],[-29,6],[-33,73],[-15,40],[-12,29],[-52,70],[-32,-19],[-24,-43],[-33,87],[-5,23],[-20,86],[2,72],[1,59],[1,78],[1,57],[19,95],[-33,160],[-13,85],[-4,21],[-4,31],[-9,56],[6,101],[1,12],[31,145],[-7,-3],[-14,-8],[-11,-5],[-10,-5],[-5,120],[-21,124],[-22,18],[-11,84],[-2,10],[16,19],[40,-11],[20,25],[-10,41],[-2,10],[-45,-11],[-1,0],[-40,-40],[6,-73],[13,-80],[-4,-65],[19,-66],[-10,-51],[-5,-25],[10,-63],[4,-21],[1,-146],[-8,-21],[-23,-62],[-18,-14],[-39,-30],[-25,-17],[-7,-5],[-8,6],[-17,12],[-24,26],[-24,58],[-28,-62],[-25,33],[-16,44],[-6,83],[0,42],[-1,75],[-5,98],[-6,39],[-8,49],[-22,40],[-2,3],[-23,48],[-16,61],[-30,22],[-36,-40],[-38,4],[-5,16],[-24,82],[-2,55],[-2,36],[25,117],[-1,73],[-8,64],[-9,67]],[[93717,91075],[0,43],[-8,29],[-11,19],[-14,14],[-22,-11],[-12,-11],[-15,-32],[-6,-66],[-3,-55],[-9,-25],[-20,-29],[-12,-15],[-11,-11],[-13,-11],[-17,8],[-13,54],[-1,44],[8,29],[21,22],[18,26],[9,36],[2,55],[-1,51],[-4,50],[-15,37],[-22,14],[-15,48],[-10,54],[-14,48],[-12,25],[-16,18],[-18,0],[-11,-7],[-13,-3],[-13,18],[-13,29],[-20,62],[-14,-8],[-10,-47],[-14,-14],[-12,18],[0,65],[-8,40],[-13,15],[-16,0],[-19,-29],[-9,-37],[5,-83],[-16,-40],[-12,-8],[-9,-58],[-11,-55],[-11,-7],[-14,7],[-21,15],[-12,-44],[14,-36],[8,-37],[-8,-47],[-12,-7],[-23,22],[-17,-8],[-13,15],[12,36],[-18,8],[-24,18],[-12,-22],[-2,-40],[0,-66],[-20,-3],[-10,36],[13,44],[-18,0],[-14,-29],[-15,-26],[-5,55],[-14,0],[-11,14],[-9,26],[-13,0],[-6,47],[-11,44],[-13,-18],[7,-40],[-13,-33],[-10,22],[-18,40],[-17,25],[-11,-18],[-15,-22],[-11,15],[-16,4],[-16,21],[-9,29],[-17,4],[-13,37],[-17,3],[-19,18],[-12,-11],[-12,4],[-18,15],[-15,18],[-12,18],[-15,18],[-11,22],[-11,15],[-18,14],[-9,48],[-8,36],[-16,102],[-5,25],[-1,8],[-10,62],[-8,40],[-5,40],[-6,33],[-17,101],[-29,88],[-17,51],[-32,91],[-4,12],[-11,32],[-15,43],[-31,91],[-23,69],[-1,0],[-20,59],[-42,120],[-63,189],[-13,17],[0,1],[-44,51],[-49,59],[-1,18],[-7,113],[-2,124],[0,50],[-1,121],[-1,87],[-1,26],[-3,149],[-2,185],[-1,119],[0,2],[-1,43],[-13,33],[-13,37],[-13,32],[-18,44],[-19,51],[-9,22],[-9,25],[-9,26],[-11,25],[-9,26],[-17,43],[-20,51],[-13,33],[-12,33],[-9,25],[-10,30],[-15,32],[-17,48],[-16,40],[-39,102],[-14,35],[-21,56],[-69,178],[-43,113],[-78,200],[-24,66],[-21,54],[-79,204],[-70,179],[-113,295],[-188,488],[-26,61],[-629,1628],[-76,200]],[[90374,98626],[16,4],[23,0],[124,0],[63,0],[49,0],[18,0],[73,0],[40,0],[51,0],[92,0],[61,0],[104,0],[39,0],[21,0],[126,0],[22,0],[17,0],[165,0],[166,0],[86,0],[3,0],[23,-4],[13,0],[317,3],[103,1],[1,0],[16,0],[16,0],[122,4],[25,-2],[57,-2],[99,0],[7,0],[58,0],[12,2],[16,2],[27,0],[69,0],[33,-3],[12,0],[66,-1],[18,0],[21,0],[24,0],[93,0],[70,0],[47,0],[91,0],[46,0],[89,0],[12,0],[46,0],[51,2],[44,1],[16,0],[13,0],[1,-69],[6,-69],[12,-96],[1,-13],[26,-113],[3,-136],[0,-2],[0,-120],[-1,-5],[-12,-94],[-20,-91],[30,-73],[25,10],[11,5],[21,-124],[2,-87],[1,-29],[-4,-69],[-3,-44],[-26,0],[-31,-15],[-10,-33],[-13,-40],[-30,-29],[-16,34],[-19,43],[-19,69],[-7,62],[0,105],[-32,-14],[-1,-72],[-1,-26],[17,-102],[-14,-15],[-13,-15],[-4,-7],[-19,-40],[-20,-16],[-7,-6],[-27,29],[-28,-83],[-15,-8],[-28,95],[-25,113],[-31,34],[-29,31],[-1,-22],[-1,-10],[13,-16],[16,-19],[11,-13],[10,-35],[18,-56],[19,-98],[41,-84],[26,-11],[50,73],[33,7],[29,0],[12,-116],[14,-69],[-11,-55],[-28,51],[-23,40],[-23,-7],[-22,-18],[-5,-4],[-40,0],[-4,-5],[-32,-39],[-31,26],[-30,54],[-9,99],[-20,47],[-9,29],[-8,29],[-8,26],[-11,36],[-14,67],[-5,21],[-4,21],[-14,-36],[-15,-38],[-8,-20],[-5,-10],[-28,-52],[-8,-3],[-18,-8],[-47,-18],[-29,7],[-2,0],[-37,98],[-41,73],[13,59],[4,21],[16,139],[-47,113],[-29,-10],[-37,-12],[10,-31],[3,-9],[49,0],[21,-33],[-5,-80],[-6,-35],[-16,-89],[0,-73],[37,-40],[20,-66],[8,-25],[25,-48],[12,-25],[35,0],[35,11],[18,-38],[7,-14],[3,-6],[-5,-84],[-27,-65],[-1,-7],[-14,-92],[-23,-160],[3,3],[22,23],[27,-15],[70,-51],[40,-22],[63,4],[27,25],[46,33],[40,73],[51,47],[41,48],[33,-15],[20,-40],[21,-58],[1,-135],[31,-87],[14,-88],[20,-91],[15,-105],[-3,-124],[7,-88],[26,-145],[14,-84],[15,-95],[17,-65],[29,-109],[11,-117],[10,-149],[12,-69],[18,-70],[27,-145],[21,-88],[14,-76],[35,-91],[49,-98],[64,-77],[25,-25],[39,-40],[27,-33],[16,-102],[83,40],[33,-7],[20,54],[10,77],[25,14],[24,-80],[21,-131],[15,-73],[26,-91],[20,-69],[-3,-116],[20,-128],[1,-69],[-39,15],[-37,43],[-27,66],[-16,54],[-25,66],[-27,95],[0,120],[-29,22],[-38,-91],[-25,-30],[-12,106],[-24,-7],[-59,-37],[-28,-29],[-24,-22],[-14,-80],[8,-120],[25,-73],[43,-62],[22,-112],[8,-95],[-21,-47],[-18,-59],[17,-120],[44,-33],[24,-43],[38,-73],[32,-91],[35,-91],[41,-139],[18,-76],[24,-44],[10,-80],[18,-109],[50,-7],[26,-44],[14,-58],[16,-70],[6,-91],[-6,-69],[1,-73],[0,-83],[26,-62],[29,-120],[20,-95],[39,-18],[27,-18],[9,-84],[4,-3],[24,-19],[19,98],[1,91],[0,80],[-9,57],[-9,64],[-18,109],[-31,47],[-16,66],[-4,43],[-3,22],[6,109],[-6,67],[-6,68],[-7,83],[-3,48],[-5,26],[-12,78],[-1,9],[-19,29],[-21,33],[-7,28],[-11,48],[-21,77],[29,65],[24,-58],[17,-95],[3,-18],[7,-3],[29,-15],[34,4],[19,-33],[12,-113],[34,-44],[27,-76],[21,-45],[5,-13],[15,6],[11,5],[31,51],[26,51],[-6,54],[-2,18],[-5,91],[-5,35],[-8,46],[-5,65],[-8,91],[-43,102],[19,91],[15,58],[8,27],[10,35],[-33,4],[-1,0],[-34,-22],[-43,22],[-30,25],[5,84],[20,66],[17,83],[7,38],[8,43],[19,31],[10,16],[15,-1],[29,-3],[-4,69],[0,16],[2,68],[-13,66],[-1,3],[-21,80],[39,11],[44,-83],[48,-51],[0,-9],[2,-79],[9,-83],[1,-113],[15,-142],[13,-99],[-4,-123],[-15,-183],[1,-101],[6,-39],[10,-78],[13,-51],[13,-95],[14,-94],[6,-47],[14,-103],[-19,-80],[-18,-87],[-5,-124],[-12,-127],[-8,-124],[-48,-44],[-35,-80],[-23,-102],[14,-65],[35,-22],[29,-88],[31,-80],[19,-120],[17,-105],[31,-19],[13,-58],[14,-58],[18,-102],[15,-102],[21,-153],[19,-157],[19,-87],[25,-84],[28,-91],[26,-131],[15,-80],[10,-73],[5,-113],[7,-113],[15,-105],[15,-146],[2,-131],[7,-84],[15,-61],[3,-88],[15,-98],[29,-95],[18,-127],[37,-99],[49,-32],[35,-15],[36,-14],[21,76],[24,40],[28,4],[27,-62],[21,-69],[26,-15],[-8,-135],[-16,-73],[-34,-7],[-6,91],[-20,33],[-4,-124],[26,-76],[6,-120],[-20,-153],[26,-99],[-11,-102],[35,-3],[21,-113],[-31,-4],[-34,22],[-33,-44],[-27,-36],[-23,-11],[-21,-44],[18,-105],[-2,-153],[43,-58],[24,-4],[9,-91],[-7,-91],[-6,-131],[16,-80],[23,-29],[-4,-81],[-14,-83],[22,-91],[18,-95],[14,-72],[37,-36],[32,-62],[29,-141],[8,-55],[-14,-29],[0,-68],[35,-34],[13,-80],[-5,-22],[-7,-38],[15,-73],[13,-25],[12,-79],[35,-79],[3,-83],[-31,-105],[-14,-77],[27,-54],[14,-91],[2,-110],[-8,-102],[3,-98],[15,-120],[20,-88],[34,-98],[1,-113],[25,8],[27,-51],[-1,-102],[42,25],[33,-36],[20,-131],[-22,-40],[-28,-48],[30,-91],[5,-124],[-11,-91],[-12,-98],[26,-105],[39,-70],[30,-36],[22,-102],[35,-127],[2,-121],[27,-51],[6,-91],[24,-123],[-32,-22],[25,-131],[31,-22],[50,-66],[12,-116],[-25,-62],[-11,-98],[-10,-91],[-1,-124],[1,-113],[11,-142],[32,-77],[32,-105],[30,-244],[20,-146],[15,-43],[2,-4],[-1,-88],[-32,-10],[-27,-73],[3,-120],[-34,-4],[-23,47],[-38,69],[-39,62],[-43,70],[-44,109],[-19,25],[-17,33],[-26,62],[-32,36],[-21,29],[-20,62],[-45,88],[-23,47],[-33,69],[-41,91],[-31,44],[-27,84],[-24,87],[-41,88],[-27,101],[-30,139],[-32,142],[-21,69],[-15,73],[-6,27],[-15,70],[-2,8],[-28,121],[-4,51],[-4,51],[14,54],[0,18],[2,44],[-12,138],[1,23],[2,90],[5,74],[5,72],[3,64],[3,52],[5,35],[9,60],[2,67],[0,17],[9,95],[0,16],[0,75],[-7,120],[-8,76],[-25,102],[-19,80],[-18,84],[-24,91],[-9,73],[-8,135],[-19,120],[-15,120],[-22,87],[-28,69],[-25,59],[-21,69],[-25,47],[-23,33],[-19,25],[-19,81],[-18,54],[-20,13],[-2,2],[-12,30],[-23,61],[-33,80],[18,42],[2,5],[3,102],[-11,-3],[-29,-8],[-42,26],[-25,102],[-14,87],[6,98],[11,75],[2,16],[-12,45],[-6,25],[-7,25],[-20,66],[-11,87],[-12,87],[3,21],[6,56],[-10,94],[-22,102],[25,62],[-32,29],[-9,48],[-3,18],[-21,76],[5,70],[36,3],[8,82],[0,2],[7,55],[8,22],[4,10],[36,-40],[-28,139],[-20,50],[-15,37],[-31,33],[16,-88],[25,-58],[-10,-65],[-23,-106],[-19,-25],[-21,32],[-32,-7],[-33,40],[-10,51],[-7,29],[-9,2],[-32,6],[-33,29],[-7,42],[-2,16],[-23,58],[-24,55],[-38,58],[-27,26],[10,105],[-10,113],[4,26],[11,65],[37,36],[24,51],[21,84],[-2,119],[0,16],[-20,-80],[-41,-58],[-34,-51],[-33,-33]],[[96465,87015],[-12,-8],[-16,-10]],[[96437,86997],[-31,58],[-17,-87],[-33,-22],[-11,-8],[-35,-7],[-1,182],[-16,-84],[-30,-29],[-21,66],[12,142],[-30,-66],[-22,8],[-4,61],[5,81],[-43,98],[-8,69],[30,47],[29,-105],[-13,185],[-40,4],[-37,33],[3,87],[-35,-14],[5,120],[15,73],[23,36],[-16,80],[29,11],[44,11],[-26,117],[-24,-19],[-9,95],[-6,77],[10,112],[11,117],[-9,116],[-9,113],[-12,84],[-11,120],[-10,120],[-19,106],[-29,69],[-24,-40],[-11,52],[-15,-20],[-27,-84],[-38,0],[-2,138],[-1,73],[0,19],[2,77],[-8,120],[-12,128],[24,45],[26,18],[-22,94],[-19,145],[-6,148],[-12,60],[0,28],[4,102],[5,99],[-6,138],[4,160],[-9,157],[5,113],[4,98],[-15,95],[-15,105],[-20,102],[-41,131],[-15,113],[25,58],[14,110],[-4,131],[-14,105],[-17,70],[-31,58],[-32,65],[-47,33],[-43,66],[28,36],[9,80],[-9,77],[30,7],[17,84],[16,102],[-22,61],[-11,84],[18,128],[1,116],[-17,66],[-18,40],[-34,33],[25,43],[11,91],[-6,109],[-13,117],[14,102],[-21,33],[5,102],[-3,123],[-27,51],[-33,-43],[-31,40],[-41,25],[4,120],[4,59],[-12,21],[-29,-61],[-40,65],[-18,102],[-11,142],[14,84],[-12,95],[-21,-13],[-11,-72],[-5,-32],[0,-1],[-40,16],[-4,16],[-2,8],[-14,56],[-9,32],[-20,70],[-3,12],[1,140],[4,53],[8,46],[14,33],[30,7],[26,40],[36,47],[23,33],[-8,91],[-6,-1],[-67,-43],[-29,37],[-28,6],[-24,43],[-23,20],[-17,62],[36,40],[33,22],[30,80],[14,146],[-21,-8],[-35,-73],[-43,-3],[-1,102],[4,76],[-21,69],[-37,11],[-48,-120],[-38,98],[33,77],[-16,120],[26,-36],[-5,109],[26,15],[2,-92],[28,41],[-15,120],[27,47],[23,-160],[4,94],[28,-36],[-11,80],[-9,84],[3,65],[4,70],[-12,94],[-10,106],[-7,98],[27,15],[-7,116],[-1,131],[11,110],[9,142],[18,105],[5,124],[-7,40],[-7,44],[-14,76],[-1,44],[-2,47],[-30,-2],[-5,-1],[0,75],[-53,197],[-34,96],[22,69],[23,91],[4,18],[-42,-40],[-40,-95],[-18,11],[-1,13],[-3,60],[-8,87],[-10,55],[6,62],[4,98],[13,87],[12,8],[11,14],[67,0],[51,0],[19,0],[21,0],[27,0],[18,0],[12,0],[15,0],[13,0],[13,0],[24,0],[7,-251],[15,-215],[9,-160],[7,-131],[11,-160],[9,-110],[13,-163],[11,-161],[7,-116],[7,-106],[9,-94],[9,-135],[4,-106],[4,-116],[9,-95],[19,-222],[33,-375],[13,-124],[13,-105],[7,-121],[21,-233],[13,-123],[12,-88],[10,-164],[13,-98],[6,-120],[15,-149],[14,-153],[10,-168],[9,-127],[18,-139],[13,-116],[8,-77],[6,-72],[8,-91],[7,-117],[8,-116],[30,-423],[7,-69],[8,-102],[9,-116],[3,-81],[9,-109],[10,-76],[6,-99],[10,-98],[3,-76],[9,-113],[12,-120],[13,-135],[6,-88],[3,-105],[12,-98],[11,-139],[9,-105],[8,-99],[11,-116],[14,-146],[10,-102],[18,-145],[13,-135],[15,-168],[32,-269],[13,-120],[14,-99],[18,-149],[14,-153],[7,-76],[7,-102],[17,-146],[13,-113],[13,-102],[27,-240],[14,-98],[11,-131],[24,-161],[18,-138],[12,-120],[4,-66],[10,-98],[21,-146],[14,-120],[12,-120],[9,-65],[15,-91],[15,-110],[12,-83],[9,-84],[18,-142]],[[94824,98368],[11,-142],[23,40],[10,98],[29,109],[18,-91],[16,-51],[7,5],[10,-126],[-3,-46],[-25,-73],[-9,-120],[4,-106],[5,-123],[-14,-88],[-1,-105],[4,-139],[1,-127],[8,-117],[1,-69],[-23,-102],[26,-65],[-5,-110],[-15,-123],[-9,-113],[27,-40],[29,-51],[53,-51],[22,-33],[-18,-106],[-30,-3],[-49,36],[-26,-40],[-22,-18],[-39,-22],[-41,-69],[-48,-22],[-43,51],[-15,87],[-4,34],[-8,76],[-42,76],[-41,-36],[-37,21],[-42,48],[-43,14],[-42,-43],[-35,14],[-4,44],[-10,105],[19,62],[-20,30],[-10,14],[-37,-7],[-7,-120],[-30,-44],[-31,-4],[-20,15],[-35,-22],[-17,-91],[-11,-68],[-3,-19],[0,-128],[-20,84],[-21,58],[-19,51],[-27,51],[-7,6],[-47,41],[-12,73],[18,102],[27,88],[22,80],[17,87],[9,87],[-2,77],[-2,73],[23,33],[18,29],[26,43],[10,110],[23,51],[26,-33],[14,8],[26,17],[-18,91],[-15,91],[-23,48],[-27,-8],[-36,8],[-33,22],[-21,5],[-7,2],[-6,-9],[-15,-20],[-26,18],[-2,2],[-1,0],[-36,27],[-34,36],[-22,19],[-21,40],[-9,102],[-23,105],[-23,51],[-21,55],[-2,84],[-25,87],[-19,98],[-3,5],[-16,35],[-25,48],[-21,98],[34,0],[31,-2],[10,-1],[18,0],[16,-1],[76,0],[50,1],[98,3],[32,0],[0,-1],[18,-84],[16,-72],[10,-98],[27,-65],[11,-18],[16,-26],[8,-8],[19,-18],[42,-36],[37,36],[10,117],[-4,116],[-2,113],[-9,40],[75,2],[3,2],[39,0],[258,7],[25,0],[67,-3],[12,0],[-6,-44],[25,-95],[7,-127]],[[48462,98336],[-4,-209],[-4,-440],[-9,-641],[-3,-207],[-1,-77],[-3,-448],[0,-3],[0,-48],[0,-105],[-1,-66],[-1,-197],[-3,-389],[-1,-97],[0,-12],[-1,-135],[0,-153],[-1,-66],[0,-47],[0,-102],[-6,-702],[0,-1],[-2,-313],[-2,-327],[-1,-306],[-1,-88],[0,-94],[-3,-288],[-1,-91],[-1,-127],[0,-55],[-1,-193],[-1,-73],[-4,-295],[-6,-400],[-2,-161],[-1,-10],[-3,-205],[0,-7],[-1,-58],[-1,-47],[-1,-55],[0,-164],[0,-69],[0,-62],[0,-54],[1,-55],[1,-87],[4,-241],[0,-126],[-1,-45],[0,-118],[0,-6],[-1,-145],[5,-470],[-6,-197],[-4,-163],[-1,-14],[-2,-34],[-2,-80],[-1,-44],[-2,-63],[0,-2],[-1,-55],[-2,-36],[0,-1],[0,-15],[-2,-39],[0,-40],[0,-43],[-1,-66],[-1,-44],[-1,-51],[0,-76],[-2,-91],[-2,-62],[-1,-64],[0,-5],[-1,-117]],[[48369,87954],[-26,-3],[-20,0],[-16,0],[-14,0],[-13,0],[-22,2],[-7,1],[-9,0],[-9,0],[-25,0],[-4,0],[-24,0],[-5,1],[-12,3],[-12,0],[-43,0],[-85,4],[-57,3],[-40,0],[-14,0],[-95,4],[-17,3],[-14,0],[-8,0],[-17,0],[-19,0],[-79,4],[-50,4],[-18,0],[-2,0],[-65,0],[-110,7],[-22,0],[-44,0],[-22,4],[-17,0],[-11,0],[-67,3],[-79,0],[-21,3],[-5,1],[-19,0],[-8,0],[-175,7],[-95,4],[-93,4],[-44,0],[-47,3],[-58,0],[-39,4],[-67,0],[-101,3],[-12,0],[-84,4],[-140,7],[-23,0],[-15,0],[-55,0],[-17,4],[-16,0],[-12,0],[-24,0],[-19,0],[-19,0],[-1,0],[-29,4],[-7,0],[-2,0],[-3,0],[-80,3],[-9,0],[-3,0],[-31,0],[-16,0],[-30,0],[-19,4],[-47,0],[-53,4],[-19,0],[-37,0],[-23,0],[-14,0],[-47,3],[-37,0],[-23,0],[-32,4],[-28,0],[-12,0],[-41,0],[-39,3],[-27,0],[-17,0],[-27,4],[-66,0],[-21,0],[-4,1],[-17,3],[-65,0],[-11,0],[-25,0],[-20,3],[-31,0],[-14,0],[-12,0],[-52,4],[-13,0],[-19,0],[-47,0],[-16,0],[-29,4],[-32,0],[-15,0],[-21,0],[-19,0],[-2,0],[-30,3],[-23,0],[-37,0],[-18,0],[-13,0],[-32,4],[-19,0],[-16,0],[-16,0],[-18,0],[-22,4],[-38,0],[-17,0],[-15,0],[-46,3],[-23,0],[-13,0],[-55,0],[-71,4],[-25,0],[-22,0],[-13,0],[-56,4],[-24,0],[-122,3],[-3,0],[-33,0],[-39,4],[-60,0],[-25,0],[-30,0]],[[43802,98633],[0,1],[41,-8],[24,-3],[14,-4],[14,-5],[13,2],[19,-2],[18,-3],[40,-6],[27,-4],[24,-4],[131,-18],[130,-22],[21,-4],[21,-3],[28,-5],[32,-2],[38,-8],[14,-3],[25,-3],[15,-1],[12,0],[36,0],[23,-5],[30,-5],[12,-2],[14,-2],[54,-9],[32,-3],[41,-7],[57,-7],[58,-10],[24,-4],[15,-3],[67,-9],[24,-5],[20,-3],[12,-1],[41,-7],[197,-27],[176,-29],[10,0],[41,0],[35,1],[87,1],[20,0],[28,0],[42,1],[48,0],[57,0],[22,0],[23,0],[30,-2],[16,0],[16,0],[32,2],[76,-3],[23,0],[25,0],[48,0],[33,-3],[14,0],[16,0],[19,2],[29,-7],[3,0],[13,0],[56,-2],[45,-1],[179,-4],[31,-2],[37,-1],[23,-1],[82,-4],[25,0],[22,-1],[59,-1],[23,-1],[12,0],[16,-4],[34,0],[36,-1],[57,-2],[17,0],[22,0],[14,-2],[42,-2],[92,-3],[46,-3],[16,-1],[32,-1],[48,-1],[43,-1],[33,-1],[64,0],[42,0],[133,-2],[54,-1],[64,0],[24,0],[67,0],[93,0],[120,0],[76,-3],[45,0],[12,-1],[112,1],[36,-1],[23,0],[13,0],[31,1],[69,0]],[[87791,98634],[129,0],[137,0],[60,-1],[243,0],[268,0],[28,0],[211,-1],[229,0],[203,0],[312,0],[17,0],[20,-1],[5,0],[7,0],[98,0],[85,0],[104,-1],[141,-1],[286,-3]],[[93717,91075],[-11,-51],[-10,-131],[-34,-110],[-5,-62],[-4,-58],[36,-91],[29,-175],[35,30],[34,40],[20,14],[9,7],[21,-51],[13,-43],[-13,-54],[-6,-23],[33,-18],[-1,-44],[-3,-80],[-22,12],[-5,3],[-6,-98],[24,-84],[5,-91],[3,-13],[19,-78],[-18,-66],[36,-47],[25,7],[14,4],[25,-13],[18,-9],[47,-11],[38,18],[38,18],[18,20],[9,10],[25,0],[11,-62],[21,47],[22,-74],[4,-13],[-5,-84],[-4,-1],[-18,-6],[-23,-19],[-31,-29],[-16,0],[-20,-7],[-50,-20],[-5,-2],[-11,-21],[-27,-52],[-38,-120],[-2,-31],[-6,-82],[33,80],[43,48],[25,91],[42,36],[3,-2],[27,-20],[25,5],[10,3],[20,80],[20,-69],[3,-132],[5,-37],[13,-86],[10,-110],[5,-24],[12,-52],[36,11],[1,0],[59,-37],[35,33],[26,55],[27,-18],[6,-14],[28,-63],[-16,-84],[-5,-69],[1,-33],[2,-43],[2,-26],[4,-54],[-3,-9],[-18,-50],[-36,-7],[-34,-7],[-28,47],[-32,-7],[-1,-120],[-1,-29],[-2,-62],[-7,-39],[-10,-63],[-32,-48],[10,-112],[4,-41],[8,-76],[2,-23],[5,-57],[24,-124],[23,-62],[27,-36],[-11,-73],[-6,-40],[-33,-58],[11,-19],[26,-47],[48,51],[26,-65],[-1,-88],[16,-84],[3,-9],[27,-89],[10,-109],[4,-78],[3,-53],[28,-189],[-11,-77],[-16,-106],[6,-131],[-2,-23],[-6,-86],[-17,-122],[-6,-49],[-24,-122],[-9,-45],[-34,-44],[-19,-33],[-22,69],[-14,69],[-4,56],[-3,35],[-8,37],[-21,87],[-30,77],[-13,-6],[-35,-16],[-7,-27],[-16,-61],[-32,88],[0,127],[-38,79],[-7,16],[-9,-69],[0,-186],[-54,-251],[-30,-109],[-26,-51],[67,43],[9,44],[3,18],[26,131],[50,70],[28,-41],[28,-43],[18,21],[7,8],[4,23],[10,53],[23,15],[36,-138],[-2,-106],[14,-62],[33,-65],[19,-37],[10,-29],[4,-11],[26,-80],[3,-14],[15,-70],[-10,-153],[25,4],[1,43],[0,33],[40,26],[29,-84],[3,-4],[18,-25],[20,-95],[1,-30],[2,-64],[10,-106],[46,-73],[29,-73],[28,-43],[36,-26],[29,-33],[63,-32],[23,-4],[24,-47],[21,-59],[26,-80],[11,-123],[-29,-15],[-59,4],[-42,-26],[-49,18],[-49,26],[-31,4],[-31,25],[-31,38],[-5,6],[-22,3],[-15,17],[-11,12],[-48,30],[-28,29],[-43,32],[-39,22],[-46,19],[-41,29],[-41,25],[-45,29],[-33,15],[-35,29],[-30,33],[-46,25],[-52,40],[-55,44],[-10,14],[-42,62],[-19,18],[-8,7],[-5,5],[-32,36],[-36,58],[-58,69],[-31,37],[-33,73],[-15,69],[-14,98],[-16,135],[-18,120],[-26,91],[-30,80],[-31,33],[-29,69],[-67,106],[-9,87],[-12,58],[-10,62],[-15,131],[-8,95],[-12,87],[-9,62],[-15,99],[-21,94],[-26,66],[-26,-7],[-54,36],[-32,55],[-30,-8],[-23,8],[-30,-8],[-29,26],[-39,14],[-34,37],[-9,105],[-18,102],[-2,88],[-17,69],[-33,73],[-29,62],[-30,21],[-44,66],[-18,58],[-31,95],[-23,120],[-7,113],[-13,109],[-13,109],[-32,99],[-35,18],[-18,58],[-11,69],[-33,59],[-35,58],[-29,65],[-37,80],[-17,106],[-32,98],[-32,30],[-34,-113],[-101,7],[-42,22],[-44,-4],[-8,6],[-38,32],[-3,2],[-35,26],[-26,-7],[-4,-1],[-21,37],[-5,116],[-6,35],[-13,85],[-31,77],[-39,65],[-41,-3],[-29,-22],[-40,-15],[-34,-32],[-53,-62],[-23,-51],[-34,-26],[-31,84],[-11,4],[-5,5],[-10,9],[-120,48],[-20,-4],[-21,11],[4,12],[20,57],[37,7],[36,-47],[43,0],[34,25],[20,15],[5,45],[10,101],[-11,126],[-8,96],[1,70],[1,68],[13,-27],[30,-64],[36,-33],[69,26],[14,29],[14,29],[19,102],[5,78],[4,53],[0,77],[-5,8],[-7,12],[-29,49],[-45,83],[-52,51],[-47,0],[-52,19],[-44,-6],[-18,-2],[-21,-26],[-41,-50],[-43,51],[-4,114],[-3,79],[14,51],[25,95],[4,64],[2,41],[-25,109],[-46,44],[-59,47],[-24,70],[15,131],[3,34],[6,64],[-12,116],[-40,124],[-10,175],[0,160],[-16,37]],[[91298,92120],[-21,28],[-3,4],[-5,0],[-15,0],[-11,-4],[-5,-3],[-12,-18],[-1,-1],[-16,-43],[-9,-27],[0,-2],[-1,-5],[-10,-46],[-18,-62],[-9,-21],[-5,-11],[0,-1],[-14,-10],[-24,-4],[-13,-15],[-17,-36],[-10,-14],[-2,-4],[-3,-2],[-11,-6],[-26,-18],[-11,-6],[-1,-1],[-3,3],[-21,26],[-12,55],[-8,29],[-11,22],[5,54],[14,35],[2,5],[8,20],[2,6],[0,6],[0,52],[8,77],[-7,50],[-1,8],[-19,80],[11,22],[2,30],[1,13],[6,117],[-1,6],[-1,7],[-4,20],[-6,16],[-7,19],[-6,16],[-12,11],[-19,14],[-21,18],[-15,11],[-13,22],[-20,22],[-16,7],[-12,15],[-16,7],[-11,4],[-8,0],[-4,0],[-14,-20],[-4,-6],[-13,-16],[-4,-6],[-12,-14],[-23,25],[-10,30],[-4,7],[-5,8],[-8,14],[-11,5],[-6,2],[-14,-29],[-2,-4],[-2,-36],[-4,-44],[-13,-28],[-1,-1],[0,1],[-18,24],[-13,37],[-17,3],[-6,17],[-3,13],[-2,9],[-6,31],[-14,40],[-13,43],[-7,30],[-9,29],[-13,32],[-15,40],[-2,12],[-10,54],[0,27],[-1,13],[-5,84],[-1,2],[-14,37],[0,1],[-1,-1],[-14,-19],[-1,-1],[0,-1],[-2,2],[-17,13],[-17,10],[-20,19],[-18,21],[0,1],[3,69],[0,10],[2,40],[0,4],[-1,5],[-7,24],[-10,40],[0,1],[-20,14],[-14,62],[1,16],[0,24],[-20,33],[-17,40],[-16,36],[-5,11],[-1,3],[-13,48],[-12,26],[-9,58],[-4,40],[9,69],[8,33],[18,36],[-1,51],[-3,55],[-15,47],[-10,26],[-9,-26],[-15,-33],[-13,-7],[-20,-25],[-15,-37],[-14,-3],[-12,22],[-15,32],[-1,0],[-11,-3],[-17,-11],[-16,-22],[-13,14],[-5,-4],[-8,-6],[-15,-48],[-8,-33],[-3,-14],[-16,-11],[-11,-3],[-3,-1],[-12,-3],[-9,5],[-3,2],[-4,6],[-7,13],[-5,6],[-5,88],[5,43],[3,41],[-1,30],[-1,6],[-1,0],[-13,4],[-11,9],[-2,2],[-3,-5],[-11,-17],[-24,-22],[-16,0],[-18,0],[-17,-26],[-12,33],[-2,3],[-8,19],[-10,4],[-8,3],[-7,17],[-6,12],[-11,12],[-10,10],[-17,33],[-10,18],[-3,7],[-9,22],[-1,37],[1,43],[-15,48],[4,45],[1,9],[1,4],[8,40],[0,2],[3,50],[1,3],[-1,2],[-11,25],[-1,2],[-1,0],[-15,0],[-15,-15],[-9,29],[0,27],[1,24],[-11,-18],[-28,22],[-14,61],[0,1],[1,29],[1,11],[0,1],[-7,34],[0,1],[-2,1],[-17,3],[-16,18],[-13,15],[-3,2],[0,1],[-9,8],[-16,3],[-11,-7],[-2,-1],[-14,-10],[-2,4],[-9,11],[-7,42],[-2,9],[-10,30],[-7,21],[-11,32],[-17,66],[-16,36],[-20,29],[-6,2],[-8,2],[-9,14],[-11,15],[-10,-15],[-2,-3],[-21,-11],[-16,15],[-17,-4],[-2,0],[-1,-3],[-11,-21],[-1,-1],[-14,-8],[-14,26],[-2,36],[-17,7],[-13,19],[-10,36],[-1,10],[-1,27],[0,3],[-3,6],[-3,7],[-15,34],[-6,9],[-9,14],[-2,3],[-28,0],[-21,20],[-1,2],[-3,4],[-14,25],[-7,49],[0,1],[-1,8],[-1,3],[-12,31],[-1,3],[-20,18],[-11,18],[-14,4],[-10,16],[-1,2],[-19,18],[-31,22],[-18,-4],[-11,6],[-4,2],[-2,2],[-16,19],[-62,159],[-87,216],[-204,521],[-108,277],[-153,375]],[[72469,98415],[-1,-167],[-3,-259],[10,-368],[1,-54],[1,-59],[1,-58],[0,-1],[10,-356],[1,-54]],[[72489,97039],[-11,-58],[-8,-41],[-9,-51],[-8,-43],[-10,-51],[-9,-58],[-10,-66],[-9,-47],[-25,-142],[-20,-208],[-30,-313],[-5,-58],[-2,-164],[0,-270],[0,-247],[2,-113],[-2,-401],[-11,-3],[-15,-11],[-13,-19],[-2,-3],[-17,-29],[-14,-36],[-8,-30],[-6,-40],[-7,-72],[1,-44],[4,-58],[5,-62],[1,-8],[10,-76],[14,-62],[16,-47],[19,-40],[0,-1],[11,-14],[10,-131],[0,-4],[0,-178],[0,-87],[0,-44],[0,-120],[0,-113],[0,-186],[-1,-193],[0,-171],[0,-211],[0,-120],[-6,-44],[-6,-58],[-20,-153],[-15,-128],[-38,-313],[-19,-171],[-20,-171],[-22,-182],[0,-8],[-34,-294],[-14,-117],[-38,-327],[-2,-16],[-22,-192],[-20,-178],[-22,-175],[-13,-120],[-25,-215],[-8,-66],[-18,-153],[-25,-120],[-23,-109],[-16,-84],[-19,-91],[-27,-127],[-23,-117],[-59,-280],[-10,-51],[-25,-120],[0,-1],[-20,-101],[-17,-80],[-48,-230],[-12,-58],[-24,-116],[-8,-37],[-29,-149],[-20,-99],[-25,-123],[-23,-106],[-147,-721],[-28,-131],[-3,-16],[-6,-31],[-44,-233],[-21,-100],[-3,-17]],[[71263,85966],[-15,58],[-1,1],[-10,22],[-5,4],[-4,0],[-16,3],[-6,2],[-25,1],[-8,5],[1,57],[0,14],[-21,20],[-6,-3],[-3,-7],[-13,-43],[0,-35],[0,-6],[-3,-6],[-13,-10],[-11,-7],[-7,20],[-8,29],[-12,39],[-12,43],[-9,36],[0,2],[-2,7],[-54,165],[-4,12],[-1,-1],[-3,-3],[-4,-12],[-6,-21],[1,-24],[3,-20],[6,-26],[1,-11],[0,-12],[-4,-34],[-3,-29],[-20,-71],[-2,-4],[-22,-5],[-7,8],[-35,53],[-3,15],[-3,51],[-28,28],[-1,9],[-17,90],[0,14],[-3,16],[-2,6],[-2,5],[-7,17],[-14,-9],[-28,-21],[-37,-46],[-38,-48],[-1,1],[-53,46],[-33,27],[-1,2],[-8,20],[-12,36],[-11,14],[-19,-3],[-16,-26],[-18,15],[-10,33],[-4,-40],[-17,3],[-9,-29],[-13,-11],[-7,-33],[-12,-32],[-13,-29],[-14,-8],[-17,26],[-12,-4],[-17,18],[-10,-40],[-6,-43],[-5,-37],[-16,4],[-10,-26],[-16,-11],[-17,8],[-15,-22],[-4,44],[-15,18],[-14,14],[-11,-14],[-20,-4],[-17,44],[-13,-44],[-14,-4],[-11,-10],[-9,4],[-7,3],[-9,36],[-11,4],[-10,-18],[-17,-4],[-18,11],[-11,33],[-4,40],[14,22],[-8,36],[-4,69],[-12,7],[-6,44],[-19,-14],[-11,0],[-7,40],[-12,32],[-5,37],[-3,51],[-5,50],[-35,57],[-18,29],[-3,4],[-17,37],[-20,41],[-1,7],[-6,39],[1,39],[8,160],[0,8],[1,19],[-9,34],[-24,90],[0,3],[-6,20],[-10,40],[-10,18],[-5,66],[-6,58],[-10,18],[-2,37],[-9,36],[-16,-14],[-16,7],[-15,18],[-15,25],[-13,8],[-16,-22],[-17,-15],[-11,0],[-12,0],[-18,11],[-27,4],[-12,-11],[-16,-33],[-16,-14],[-12,-4],[-13,-11],[-17,-7],[-14,14],[-13,30],[-15,36],[-16,40],[-13,29],[-17,26],[-10,43],[-15,40],[-12,29],[-12,26],[-14,22],[-16,11],[-10,40],[-16,0],[-16,-37],[-16,-40],[-18,-18],[-13,7],[-13,-29],[-12,-22],[-16,-18],[-14,-25],[-15,-29],[-21,-26],[-11,-29],[-18,-18],[-16,-11],[-12,-7],[-16,3],[-15,18],[-15,37],[-11,47],[-6,55],[-18,0],[-15,-18],[-14,3],[-19,8],[-14,10],[-15,4],[-20,18],[-21,18],[-12,4],[-14,-4],[-11,-3],[-16,-15],[-14,4],[-13,47],[-11,15],[-20,18],[-17,29],[-23,26],[-16,25],[-17,-11],[-18,0],[-13,-3],[-17,7],[-13,40],[-15,11],[-15,11],[-14,7],[-11,7],[-16,-3],[-19,-15],[-13,7],[-19,11],[-50,19],[-1,0],[-30,10],[-18,8],[-106,40],[-28,11],[-14,3],[-6,3],[-143,56],[-86,32],[-77,29],[-44,19],[-42,14],[-45,18],[-11,4],[-26,11]],[[67872,88271],[17,44],[12,54],[8,77],[4,43],[7,59],[9,40],[30,94],[15,73],[17,51],[16,51],[16,48],[11,36],[10,40],[7,80],[2,66],[4,16],[39,162],[37,138],[16,59],[58,236],[-14,252],[-7,134],[-15,255],[-17,266],[-25,390],[-1,40],[-1,7],[-7,102],[-11,178],[-13,204],[-2,37],[-7,91],[-18,309],[-10,244],[-9,135],[-12,207],[-25,396],[0,9],[-6,98],[-19,302],[-8,130],[-2,45],[-4,47],[0,7],[-24,412],[-7,98],[-9,149],[-10,172],[-11,167],[-3,58],[-6,80],[-2,44],[-9,139],[-19,302],[-2,40],[-15,244],[-14,215],[-4,69],[-17,291],[-6,87],[-9,150],[-8,131],[-19,324],[-5,91],[-8,135],[-6,87],[-2,40],[-4,58],[-4,73],[-9,135],[-7,127],[-8,120],[-5,81],[-3,47],[-3,54],[0,4],[-34,537]],[[67682,98384],[54,2],[14,0],[23,1],[32,1],[31,1],[58,2],[60,2],[37,1],[49,1],[49,1],[19,1],[11,0],[14,0],[75,2],[2,0],[32,1],[5,0],[29,1],[11,0],[13,0],[55,2],[1,0],[54,1],[12,0],[16,0],[38,2],[28,1],[12,1],[6,0],[31,-4],[15,4],[32,-2],[24,-2],[66,0],[24,0],[20,0],[63,0],[20,0],[31,0],[242,-3],[15,0],[7,0],[35,0],[25,-3],[40,-1],[14,1],[12,0],[14,3],[12,-1],[49,-3],[16,0],[16,0],[26,0],[34,0],[24,-2],[20,-1],[27,-1],[37,-2],[18,-1],[12,0],[17,0],[75,-5],[96,-5],[47,1],[46,3],[14,0],[14,2],[8,1],[16,3],[54,-4],[20,0],[48,0],[2,0],[91,0],[42,0],[16,0],[29,1],[68,1],[76,1],[20,0],[22,1],[7,0],[34,0],[12,0],[32,1],[8,0],[21,0],[18,0],[24,1],[16,0],[76,1],[57,0],[23,2],[23,0],[22,1],[29,0],[49,1],[1,0],[9,0],[26,0],[20,1],[27,0],[49,0],[33,1],[12,0],[18,0],[19,0],[13,0],[22,0],[6,0],[23,1],[41,1],[33,0],[4,0],[17,0],[14,0],[32,0],[15,0],[34,2],[54,2],[5,1],[50,0],[1,0],[121,1],[18,0],[8,1],[3,0],[72,0],[13,1],[37,2],[17,-3],[38,0],[29,0],[87,1],[147,2],[79,0],[47,0],[16,1],[70,3],[12,0],[44,-2],[16,0],[16,0],[25,0],[81,1],[12,1],[47,0],[21,0]],[[80266,87572],[-47,-219],[-64,-309],[-84,-390],[-25,-120],[-8,-33],[4,-109],[-35,4],[-16,0],[-15,-11],[-11,-7],[-18,14],[-18,15],[-25,11],[-14,-4],[-16,-4],[-13,4],[-12,26],[-15,65],[-10,22],[-22,36],[-29,4],[-28,-18],[-2,-2],[-9,-9],[-11,-18],[-15,-19],[-15,8],[-15,0],[-33,-18],[-19,-33],[-15,-18],[-13,-40],[-21,-51],[-11,-4],[-12,7],[-12,15],[-13,18],[-14,11],[-15,-18],[-15,-29],[-22,-11],[-32,0],[-22,-15],[-12,-15],[-17,-29],[-19,29],[-19,19],[-17,-59],[-30,-40],[-15,-21],[-10,-22],[-15,-51],[-1,-62],[5,-62],[10,-69],[10,-48],[17,-47],[10,-44],[6,-58],[-18,-105],[-11,-44],[11,-66],[0,-65],[-12,-59],[-23,-21],[-13,-124],[-3,-37],[2,-54],[11,-18],[5,-44],[3,-40],[10,-37],[6,-28],[1,-4],[2,-48],[-11,-32],[-13,-30],[10,-25],[17,-11],[11,-44],[15,-22],[5,-40],[9,-25]],[[79326,84721],[-8,-44],[-18,-40],[-10,-15],[-5,-7],[-13,-14],[-20,-11],[-21,0],[-20,11],[-11,11],[-24,36],[-34,44],[-17,29],[-11,25],[-10,33],[-12,62],[-6,73],[7,55],[10,54],[9,33],[27,84],[-14,40],[-42,0],[-24,0],[-19,3],[-15,11],[-12,15],[-14,25],[-24,66],[-18,51],[-9,25],[-8,33],[-10,66],[-4,36],[-12,55],[-10,22],[-13,14],[-18,-4],[-14,-14],[-41,-58],[-22,-22],[-14,-7],[-18,-4],[-54,25],[-20,15],[-28,14],[-11,19],[-20,58],[-16,62],[-20,58],[-16,37],[-13,18],[-21,25],[-15,18],[-21,22],[-9,15],[-6,11],[-7,5],[-6,6],[-15,14],[-50,69],[-22,44],[-28,47],[-12,19],[-30,47],[-30,40],[-6,13],[-6,13],[-12,40],[-9,51],[-3,65],[6,80],[6,33],[3,36],[8,59],[6,91],[3,54],[6,59],[6,40],[14,98],[8,29],[7,40],[16,66],[11,72],[7,48],[8,109],[1,109],[-5,66],[-4,36],[-5,37],[-11,54],[-12,37],[-30,80],[-39,54],[-51,84],[-41,62],[-13,18],[-19,26],[-19,36],[-23,33],[-69,98],[-17,29],[-12,37],[-13,54],[-3,37],[-11,87],[-3,40],[-3,55],[-8,102],[-4,47],[-3,102],[2,36],[2,59],[3,62],[1,47],[0,47],[-4,66],[-2,109],[-3,36],[-8,91],[-6,37],[-60,142],[-21,62],[-19,84],[-22,87],[-13,65],[-6,37],[-30,98],[-40,120],[-11,33],[-17,80],[-5,44],[-4,40],[-5,40],[-7,44],[-16,54],[-28,69],[-28,19],[-24,-4],[-24,-7],[-19,-15],[-16,-14],[-26,-22],[-27,-15],[-24,-7],[-40,0],[-32,-7],[-23,-19],[-15,-14],[-17,-18],[-12,-22],[-11,-26],[-12,-21],[-26,-44],[-14,-18],[-52,-8],[-17,-3],[-14,-8],[-16,-18],[-19,-33],[-11,-29],[-18,-62],[-26,-91],[-14,-36],[-14,-26],[-15,-14],[-19,-7],[-31,-4],[-20,-7],[-75,-22],[-55,7],[-123,-14],[-39,-26],[-31,-25],[-24,-19],[-25,-21],[-61,-37],[-40,-11],[-34,8],[-66,36],[-20,14],[-24,30],[-11,11],[-15,21],[-32,66],[-78,146],[-36,83],[-18,84],[-6,106],[-6,80],[-7,69],[-7,44],[-8,51],[-12,65],[-25,95],[-14,36],[-26,48],[-20,54],[-9,29],[-5,62],[20,124],[23,153],[22,189],[8,44],[24,98],[17,55],[18,51],[14,29],[11,25],[14,26],[51,62],[35,51],[17,33],[11,32],[10,33],[12,51],[12,40],[25,55],[62,62],[17,32],[11,55],[5,51],[1,36],[1,44],[0,117],[8,91],[2,40],[10,204],[7,196],[-4,62],[-8,47],[-12,106],[-5,55],[-4,65],[-3,44],[-3,87],[-5,48],[-9,102],[-5,43],[-13,77],[-20,69],[-13,29],[-25,44],[-12,14],[-64,55],[-42,25],[-20,15],[-17,18],[-25,37],[-15,14],[-24,11],[-15,4],[-35,22],[-18,0],[-32,-51],[-17,-26],[-11,7],[-14,19],[-12,29],[-9,33],[-7,50],[-3,84],[-3,62],[-4,21],[-7,37],[-17,27],[-4,6],[-21,37],[-11,18],[-35,36],[-19,18],[-11,8],[-31,25],[-37,11],[-11,11],[-12,18],[-19,44],[-11,33],[-6,69],[-11,58],[-16,33],[-18,4],[-10,-19],[-14,-7],[-18,4],[-38,54],[-7,16],[-16,35],[-13,44],[-5,36],[-11,30],[-17,50],[-1,44],[-8,62],[-3,51],[-7,40],[-5,37],[-7,105],[-7,47],[-6,55],[-8,40],[-3,73],[-3,47],[-15,69],[-9,51],[-9,55],[-1,47],[-4,62],[-13,66],[-14,51],[-12,25],[-13,40],[-19,40],[-1,1],[-28,18],[-39,-8],[-22,-18],[-23,-11],[-14,-11],[-36,-22],[-23,-3],[-24,11],[-14,11],[-20,7],[-21,0],[-11,-7],[-12,-8],[-13,-11],[-3,-1],[-57,-20],[-29,7],[-66,40],[-22,18],[-28,7],[-33,30],[-32,25],[-20,18],[-38,37],[-26,21],[-14,19],[-29,32],[-25,44],[-34,4],[-21,0],[-26,-22],[-29,-4],[-28,0],[-34,33],[-41,-15],[-23,-21],[-24,-40],[-27,-59],[-37,-69],[-47,-76],[-18,-22],[-20,-7],[-43,0],[-16,-4],[-24,-4],[-17,11],[-19,26],[-12,22],[-21,25],[-25,26],[-16,10],[-23,8],[-13,-33],[-13,-26],[-12,-7],[-13,11],[-23,29],[-11,8],[-18,7],[-14,14],[-14,29],[-20,37],[-28,58],[-11,29],[-39,99],[-23,51],[-21,25],[-12,15],[-23,7],[-5,0],[-11,0],[-15,14],[-2,3],[-41,56],[-14,22],[-17,25],[-10,22],[-13,25],[-11,19],[-15,7],[-14,14],[-22,30],[-13,10],[-16,8],[-2,0],[-13,3],[-11,8],[-17,14],[-13,22],[-24,18],[-18,8],[-53,-4],[-12,-7],[-13,-8],[-13,22],[-22,-11],[-32,8],[-52,40],[-34,40],[-19,11],[-29,21],[-19,15],[-27,-4],[-20,4],[-65,66],[-18,10],[-17,-7],[-43,-58],[-13,-33],[-22,-22],[-46,22],[-43,48],[-18,40],[-16,-8],[-24,18],[-18,4],[-20,-18],[-24,18],[-2,55],[-63,134],[-15,4],[-18,-22],[-25,-69],[-9,-55],[-10,-43]],[[72469,98415],[38,1],[37,0],[18,1],[53,0],[52,1],[69,1],[9,0],[2,1],[21,2],[15,0],[13,0],[24,0],[9,1],[21,1],[39,1],[5,0],[13,0],[26,0],[47,1],[33,0],[45,0],[138,3],[35,1],[37,0],[12,0],[44,1],[50,1],[14,0],[29,1],[51,1],[16,0],[83,2],[1,0],[67,1],[22,0],[111,2],[18,1],[29,0],[21,1],[34,0],[37,1],[58,1],[1,1],[77,0],[12,0],[23,0],[41,2],[45,2],[45,0],[60,-3],[17,-1],[11,0],[23,0],[39,0],[111,0],[30,0],[67,-3],[17,0],[29,0],[46,3],[69,-2],[29,-1],[15,0],[15,0],[22,0],[37,0],[33,0],[18,0],[46,0],[41,0],[17,0],[33,0],[94,0],[2,0],[136,-3],[31,-1],[27,0],[13,0],[19,0],[25,0],[15,0],[176,0],[62,-4],[12,0],[43,-3],[23,0],[3,0],[32,2],[11,1],[56,5],[19,3],[36,0],[11,-1],[43,-2],[31,0],[43,-1],[124,-2],[9,-1],[5,0],[14,0],[40,-1],[24,0],[99,0],[30,0],[32,0],[25,0],[28,0],[56,0],[24,1],[60,3],[40,0],[26,0],[7,0],[22,0],[2,0],[113,0],[14,0],[33,0],[36,0],[72,0],[52,0],[22,-7],[86,0],[86,0],[31,-4],[14,0],[45,0],[95,0],[30,0],[44,0],[24,0],[91,-4],[14,0],[17,0],[165,0],[77,-1],[143,-1],[124,-1],[9,0],[19,0],[77,0],[107,-2],[90,-2],[12,0],[12,0],[18,0],[42,0],[78,3],[53,2],[6,0],[150,5],[41,1],[28,0],[48,0],[21,0],[27,0],[15,0],[42,0],[23,0],[14,0],[119,-3],[33,-1],[51,0],[1,0],[44,0],[22,0],[57,0],[69,0],[50,0],[87,-2],[61,0],[131,-1],[19,0],[13,0],[23,0],[14,0],[30,-2],[13,-1],[3,0],[92,0],[75,-1],[39,0],[52,0],[19,0],[55,0],[25,0],[28,0],[60,0],[19,5],[49,16],[3,1],[70,25],[5,2],[12,3],[79,17],[17,2],[147,19],[6,1],[51,-33]],[[80767,98473],[4,-43],[24,-59],[12,-43],[13,-8],[5,15],[7,18],[11,-22],[-4,-45],[-2,-13],[10,-29],[10,18],[4,7],[17,26],[18,-55],[15,26],[5,-62],[-16,-7],[-4,-40],[12,-4],[13,-7],[11,-19],[6,-43],[6,-51],[-16,-18],[-7,-66],[2,-51],[-16,0],[-7,-36],[14,-48],[15,-14],[1,-3],[10,-19],[6,-44],[27,-25],[13,-8],[9,-25],[26,0],[28,0],[26,-11],[20,-15],[16,-18],[26,-25],[3,-6],[18,-42],[9,-34],[4,-17],[14,-54],[2,3],[11,19],[6,32],[11,8],[12,3],[15,15],[5,-36],[11,29],[-8,32],[5,59],[12,7],[16,11],[15,-44],[22,4],[14,-22],[-9,-73],[8,-40],[14,-7],[44,-47],[12,-8],[31,0],[25,8],[6,36],[-9,33],[-3,51],[11,22],[7,-33],[11,-22],[14,-47],[12,-33],[18,0],[15,-15],[17,44],[18,15],[12,-26],[17,-25],[19,-51],[10,-51],[17,-4],[11,4],[20,-33],[9,-62],[0,-58],[-4,-48],[-5,-40],[15,18],[13,-14],[-11,-47],[-11,-19],[-20,-7],[-8,-51],[6,-33],[6,-65],[-18,-44],[10,-25],[13,-26],[20,-29],[13,-40],[16,-22],[12,33],[11,-22],[9,-22],[16,-3],[12,21],[-10,48],[11,54],[13,-32],[18,-37],[10,47],[10,-18],[13,-32],[21,-11],[-9,-55],[-25,-18],[5,-40],[22,-48],[-10,-65],[-12,-47],[3,-48],[9,-40],[18,7],[-12,-80],[6,-28],[5,-23],[-6,-40],[-11,8],[-9,12],[-11,17],[-15,-33],[7,-43],[3,-19],[-5,-51],[-11,-6],[-2,-1],[-25,54],[-12,-29],[9,-69],[-12,11],[-9,36],[-4,37],[-20,-62],[-18,0],[-9,-53],[-4,-24],[-20,0],[13,-30],[4,-10],[-14,-94],[-16,-15],[-6,47],[-5,41],[-1,10],[-10,-6],[-2,-1],[-14,-51],[-11,4],[-12,-7],[-7,-30],[-11,-25],[-16,7],[-15,29],[-13,11],[-8,48],[-7,40],[-18,58],[-10,36],[-2,4],[-8,22],[-16,-51],[-13,-18],[-13,7],[-19,-15],[-21,-32],[-12,-4],[-20,22],[-15,29],[-14,7],[-6,-33],[-9,-51],[-11,-43],[-33,-18],[-15,10],[-16,-10],[-8,-33],[-22,-58],[-7,-41],[-2,-43],[-14,-58],[-5,-55],[-13,-62],[-17,-11],[-11,-14],[-15,-44],[-10,-26],[-16,-32],[-3,-62],[-7,-37],[-18,-29],[-15,-25],[-9,-29],[1,-41],[1,-69],[5,-58],[2,-120],[15,-62],[25,-84],[16,-76],[2,-117],[-4,-25],[-7,-55],[-12,-91],[0,-1],[-17,-137],[-43,-339],[-21,-178],[-33,-281],[-20,-174],[-64,-554],[-11,-91],[-20,-160],[-56,-481],[-10,-79],[0,-1],[-9,-65],[-44,-357],[-8,-58],[-33,-281],[-36,-295],[-4,-47],[-37,-295],[-12,-98],[-35,-281],[-1,-8],[-5,-43],[-18,-174],[-52,-401],[-19,-142],[-37,-324],[-1,-2],[0,-4],[-9,-70],[-16,-117],[-51,-357],[0,-1],[-20,-144],[-87,-612],[-23,-153]],[[83323,93343],[11,-95],[17,-30],[35,-68],[60,-116],[55,-55],[42,-36],[65,-139],[66,-94],[93,0],[53,-8],[73,-167],[67,-99],[105,22],[116,-174],[149,-164],[47,25],[77,-54],[43,-91],[75,-153],[74,-77],[74,-4],[25,-10],[45,-33],[57,-51],[58,-55],[36,-33],[35,11],[7,4],[25,15],[21,65],[18,20],[9,9],[11,-2],[39,-9],[31,-32],[35,-92],[21,-116],[9,-21],[15,-34],[18,-17],[10,-9],[19,-17],[8,-16],[23,-43],[20,-26],[13,-17],[5,-81],[3,-47],[15,-83],[12,-21],[14,-23],[32,-70],[2,-3],[20,-80],[4,-15],[12,-47],[3,-11],[14,-47],[44,-179],[14,-65],[8,-63],[1,-10],[30,-69],[30,-33],[29,-58],[27,-37],[24,-51],[42,-123],[10,-91],[20,-110],[23,-87],[33,-98],[15,-37],[2,-3],[22,-40],[19,-49],[8,-21],[26,-51],[10,-13],[33,-45],[31,-45],[9,-13],[11,-34],[11,-32],[3,-80],[2,-73],[6,-51],[5,-47],[-13,-84],[5,-83],[12,-99],[2,-28],[4,-41],[0,-40],[-1,-33],[-1,-127],[-63,-171],[-34,-139],[-10,-91],[-7,-102],[0,-40],[-1,-65],[-34,-62],[-10,-37],[-3,-14],[-4,-8],[-23,-58],[-29,-69],[-30,-80],[-27,-87]],[[85745,87463],[-71,0],[-21,0],[-56,-4],[-46,1],[-104,3],[-98,-4],[-99,-4],[-1,0],[-116,-3],[-165,0],[-35,-4],[-180,0],[-207,-7],[-92,0],[-49,-4],[-166,0],[-82,0],[-94,-3],[-27,-8],[-28,0],[-68,4],[-105,4],[-84,0],[-40,-4],[-20,-7],[-114,-40],[-144,-59],[-75,22],[-104,26],[-47,-19],[-160,-58],[-2,0],[-100,-36],[-64,51],[-41,36],[-57,55],[-157,-69],[-103,-30],[-64,0],[-191,11],[-88,8],[-34,0],[-74,3],[-173,15],[-34,0],[-17,3],[-2,1],[-155,10],[-95,8],[-2,0],[-18,0],[-43,3],[-94,8],[-32,0],[-89,7],[-25,0],[-78,7],[-157,8],[-106,7],[-78,3],[-46,11],[-128,8],[-74,-4],[-72,4],[-109,54],[-179,95]],[[80767,98473],[50,-30],[64,-38],[18,-12],[74,0],[82,0],[143,0],[17,0],[1,1],[12,3],[154,11],[77,3],[46,4],[44,0],[117,-2],[86,-1],[88,0],[66,-2],[154,-2],[253,-4],[61,0],[100,-3],[20,0],[40,0],[41,0],[35,-6],[15,-1],[86,-1],[13,0],[244,0],[19,0],[3,-1],[10,-2],[36,4],[248,-4],[26,0],[19,-1],[81,-1],[84,-1],[12,0],[2,0],[22,-1],[32,-2],[5,6]],[[62352,98308],[5,-144],[2,-77],[4,-131],[4,-156],[1,-40],[0,-55],[-1,-138],[0,-3],[-3,-376],[0,-40],[-2,-58],[0,-69],[0,-62],[-3,-164],[-1,-88],[-9,-1110],[-2,-306],[-1,-84],[-2,-222],[-2,-142],[-1,-145],[-3,-354],[-1,-131],[-1,-251],[-4,-353],[0,-2],[-1,-187],[-1,-48],[-3,-448],[-4,-466],[-1,-124],[-1,-83],[-2,-197],[-1,-138],[-4,-482],[0,-13],[-2,-383],[0,-58],[-2,-248],[-4,-575],[-2,-288],[-1,-149],[-1,-135],[0,-87],[-2,-339],[-3,-313],[0,-36],[-2,-259],[0,-62],[-1,-112],[0,-77],[-2,-349],[-3,-255],[1,-77],[-1,-255],[-2,-189]],[[62287,87175],[-51,4],[-40,3],[-66,4],[-31,4],[-52,3],[-30,0],[-23,4],[-13,0],[-32,4],[-12,0],[-109,7],[-93,11],[-64,3],[-78,4],[-42,4],[-12,3],[-42,0],[-31,8],[-51,3],[-19,4],[-22,0],[-63,4],[-1,0],[-36,3],[-159,11],[-17,1],[-128,6],[-30,4],[-16,0],[-51,4],[-19,0],[-11,3],[-31,-3],[-13,7],[-33,0],[-19,4],[-21,0],[-11,0],[-30,0],[-14,3],[-13,0],[-23,7],[-27,-10]],[[60608,87292],[-1,0],[-13,0],[-123,10],[-30,0],[-50,4],[-43,4],[-47,0],[-47,3],[-12,0],[-30,4],[-18,0],[-15,0],[-49,4],[-74,14],[-80,11],[-17,4],[-18,0],[-37,0],[-14,0],[-12,3],[-84,0],[-48,0],[-23,4],[-34,0],[-1,0],[-39,0],[-79,4],[-16,0],[-12,0],[-18,0],[-27,0],[-21,0],[-72,3],[-67,0],[-26,0],[-62,4],[-59,0],[-122,4],[-103,3],[-186,8],[-19,0],[-17,0],[-12,0],[-77,3],[-62,4],[-47,0],[-76,4],[-21,3],[-35,4],[-26,0],[-21,0],[-48,0]],[[58318,87401],[4,291],[2,189],[0,1],[5,247],[4,310],[5,313],[2,142],[1,69],[3,178],[2,55],[0,62],[2,144],[0,1],[1,49],[0,13],[1,102],[1,43],[0,30],[6,291],[1,55],[0,11],[1,69],[1,55],[0,73],[1,58],[1,91],[4,236],[3,168],[2,193],[3,106],[1,72],[2,153],[0,9],[1,82],[1,62],[3,142],[6,423],[5,254],[1,164],[6,313],[2,95],[0,55],[1,43],[1,39],[0,1],[2,117],[2,40],[2,127],[1,95],[6,295],[2,91],[2,168],[9,535],[5,266],[1,72],[1,48],[1,54],[2,142],[5,241],[3,174],[2,157],[1,25],[2,68],[0,2],[1,54],[0,44],[1,55],[6,269],[0,47],[4,197],[1,55],[1,43],[1,81],[1,7],[2,120],[3,153],[2,105],[3,164],[3,255],[3,215],[5,306],[4,317],[0,152]],[[58494,98309],[28,-2],[109,-6],[15,2],[27,1],[57,1],[63,0],[63,0],[19,0],[65,3],[41,1],[44,2],[18,0],[29,2],[18,0],[5,0],[60,3],[100,3],[16,1],[34,0],[47,0],[70,0],[88,0],[43,0],[26,0],[85,0],[52,0],[24,0],[57,0],[23,0],[37,0],[30,0],[24,1],[71,3],[74,0],[54,0],[20,0],[31,0],[51,0],[27,0],[50,0],[58,0],[24,0],[14,0],[64,0],[7,0],[18,-2],[8,0],[6,-1],[33,1],[41,2],[61,0],[3,0],[35,0],[33,-3],[16,1],[27,2],[23,0],[30,-3],[12,0],[20,-1],[14,1],[31,-1],[37,0],[49,0],[36,0],[20,-3],[1,0],[4,0],[21,0],[31,1],[87,0],[14,0],[1,0],[89,1],[59,0],[83,1],[67,-1],[22,1],[12,0],[1,0],[63,0],[111,0],[93,0],[29,0],[68,0],[47,0],[43,0],[26,-3],[30,0],[44,0],[12,0],[33,-3],[13,0],[59,3],[38,0],[14,0],[54,-3],[23,-1],[50,-3],[1,-2]],[[67872,88271],[-14,-33],[-13,-58],[-29,-131],[-18,-80],[-13,-58],[-10,-30],[-18,-43],[-32,-84],[-18,-47],[-17,-40],[-14,-40],[-10,-22],[-9,-26],[-21,-58],[-2,-5],[-9,-24],[-13,-33],[-26,-73],[-9,-25],[-8,-37],[-14,-62],[-11,-43],[-12,-51],[-9,-40],[-12,0],[-56,3],[-142,4],[-125,4],[-40,3],[-38,0],[-40,0],[-59,-378],[-52,-321],[-28,-171],[-28,-171],[-41,-255],[-132,-826],[-43,-252],[-28,-22],[-24,0],[-3,-17],[-6,-30],[-1,-1],[-16,-17],[-23,22],[-11,-73],[7,-44],[-11,-25],[-26,-14],[-3,-1],[-1,0],[-10,-3],[-5,3],[-19,15],[-24,14],[-10,2],[-15,2],[1,6],[9,38],[-14,36],[-13,-11],[-28,-4],[-22,11],[-14,22],[-17,18],[-14,0],[-21,0],[-6,6],[-10,12],[-1,1],[-18,-7],[-3,-1],[-1,2],[-23,31],[-2,0],[-23,-3],[-10,-16],[-12,-17],[-7,-23],[-4,-14],[-4,-32],[-5,-37],[-4,-13],[-10,-27],[-18,-4],[-10,41],[-11,29],[-5,72],[0,21],[-1,50],[0,6],[-4,3],[-22,15],[-14,26],[-18,33],[-4,7],[-2,-1],[-35,-3],[-11,2],[-7,2],[-26,7],[-14,7],[-10,18],[-25,19],[-38,3],[-24,22],[-17,7],[-9,32],[-2,5],[8,58],[3,64],[0,2],[-11,18],[-19,14],[-24,59],[-16,40],[-9,21],[-3,8],[-2,1],[-9,2],[-1,-1],[-21,-69],[-2,-6],[0,-1],[-6,-43],[-1,-62],[2,-16],[2,-20],[1,-46],[1,-23],[-16,-15]],[[65732,84961],[-34,29],[-10,19],[-24,51],[-10,36],[-14,29],[-16,51],[-9,27],[-4,10],[-13,29],[0,13],[1,245],[-2,200],[-5,430],[-3,386],[-4,310],[-1,76],[-1,73],[-2,251],[-1,76],[-1,100],[-4,290],[-4,375],[-1,124],[-1,84],[-2,51],[3,364],[1,153],[1,185],[1,161],[0,153],[0,171],[1,58],[1,291],[0,73],[0,130],[0,1],[0,102],[0,55],[0,51],[0,47],[0,124],[-1,200],[0,302],[-1,339],[0,47],[0,40],[-1,437],[0,62],[-1,208],[0,163],[0,226],[-1,226],[0,226],[0,105],[0,190],[-1,553],[0,291],[0,208],[0,280],[0,160],[0,361],[0,9],[0,46],[27,375],[6,102],[31,418],[3,44],[4,36],[0,11],[2,29],[10,195],[0,6],[-7,36],[18,77],[-19,29],[0,120],[9,72],[0,1],[2,5],[15,38],[11,-3],[2,80],[-1,4],[-5,36],[15,87],[25,59],[2,3],[2,10],[8,37],[9,25],[1,1],[13,29],[-13,3],[-3,1],[3,53],[0,5],[0,3],[-7,59],[-1,4],[-8,87],[30,49],[2,2],[10,36],[0,3],[3,52],[22,7],[11,-11],[17,4],[13,6],[2,1],[3,-1],[16,-6],[1,0],[0,-1],[4,-43],[13,0],[4,15],[4,17],[2,8],[24,4],[1,0],[10,0],[10,25],[11,30],[9,21],[21,59],[6,5],[14,12],[1,1],[1,-1],[12,-36],[3,37],[2,2],[9,12],[13,-7],[4,58],[-8,37],[8,29],[8,-40],[17,-40],[18,17],[1,1],[1,4],[11,46],[1,1],[-1,0],[-17,10],[-2,1],[-18,0],[-8,47],[16,110],[4,43],[13,41],[1,3],[1,2],[7,16],[5,11],[16,15],[6,-11],[7,-11],[20,-11],[11,-10],[1,-1],[6,-7],[6,-8],[1,15],[2,36],[12,15],[16,-15],[10,55],[-8,73],[-1,29],[-1,29],[15,22],[12,36],[-14,20],[-3,6],[-7,3],[-7,4],[0,3],[-9,44]],[[66180,98331],[25,5],[25,1],[37,2],[62,3],[12,0],[16,0],[12,4],[17,-4],[25,0],[3,1],[10,2],[45,1],[35,1],[18,1],[117,4],[44,1],[34,1],[18,2],[19,0],[26,0],[96,3],[68,1],[18,1],[53,1],[18,1],[16,1],[34,0],[19,1],[70,6],[12,-2],[28,0],[30,1],[20,1],[14,0],[15,0],[56,3],[22,0],[254,10],[59,2],[0,-2]],[[65732,84961],[0,-1],[-33,-221],[-10,-62],[-29,-178],[-52,-328],[-37,-237],[-7,-43],[-12,-84],[-15,-87],[-9,-55],[-6,-33],[-17,-113],[-35,-218],[-10,-66],[-11,-69],[-7,-53],[0,-1],[-30,-193],[-17,-110],[-12,-69],[-9,-58],[-23,-149],[-31,-190],[0,-3],[-16,-99],[-39,-247],[0,-1],[-50,-312],[0,-3],[-26,-158],[-1,-149],[0,-44],[0,-51],[-1,-138],[-2,-146],[-1,-145],[0,-58],[-1,-73],[-1,-66],[-4,-459],[0,-40],[-1,-94],[-1,-59],[-2,-305],[-2,-99],[0,-58],[-1,-69],[0,-77]],[[65171,79390],[-11,0],[-12,15],[-17,18],[-31,37],[-12,11],[-42,50],[-130,146],[-143,160],[-17,44],[-78,84],[-13,13],[-8,9],[-32,36],[-28,29],[-71,91],[-15,7],[-27,37],[-39,54],[-27,37],[-34,44],[-35,43],[-60,77],[-29,36],[-16,26],[-14,18],[-118,145],[-39,51],[-20,26],[-25,33],[-13,18],[-128,160],[-73,106],[-29,40],[-14,18],[-4,5],[-11,13],[-87,113],[-40,55],[-40,11],[-76,32],[-1,0],[-54,8],[-71,14],[-18,0],[-5,0],[-3,0],[-13,0],[-11,0],[-11,0],[-30,0],[-33,-7],[-36,-4],[-17,-7],[-18,-4],[-16,-7],[-150,-80],[-42,-22],[-36,-18],[-35,-18],[-28,-15]],[[62885,81178],[-43,0],[-67,7],[-14,0],[-9,0],[-2,0],[-18,0],[-18,0],[-13,0],[-44,6],[-17,2],[-25,3],[-32,4],[-10,1],[-15,3],[-32,0],[-1,-4],[-9,-18],[-13,-62],[-22,14],[-11,30],[-3,11],[-19,21],[-1,20],[-3,35],[12,55],[19,40],[3,7],[-13,40],[-21,33],[-6,7],[-5,7],[-21,-14],[-9,-26],[-6,3],[-4,2],[-7,3],[2,6],[10,41],[12,47],[0,58],[-8,41],[-2,19],[-1,17],[-5,69],[-12,37],[-13,-30],[-10,-14],[-5,-7],[-10,-19],[-15,-18],[-28,33],[-15,18],[-32,29],[-21,11],[-8,29],[17,29],[14,4],[14,11],[4,51],[-16,40],[-5,55],[-3,40],[8,36],[4,626],[1,426],[0,48],[0,320],[0,55],[0,62],[2,83],[0,84],[0,135],[3,448],[2,367],[4,339],[0,69],[1,117],[2,164],[0,62],[0,243],[1,343],[0,138],[0,142],[1,62],[2,237],[4,174],[0,48],[1,135],[1,142],[0,65]],[[62352,98308],[77,2],[32,0],[16,0],[6,-1],[64,-2],[16,0],[17,-1],[2,0],[9,0],[6,0],[11,1],[12,0],[36,3],[27,0],[20,0],[15,0],[18,0],[17,0],[27,3],[42,-3],[6,0],[58,3],[18,2],[20,1],[21,1],[16,0],[14,0],[18,0],[60,0],[9,0],[14,0],[88,3],[165,0],[66,0],[99,0],[24,0],[59,1],[25,0],[18,2],[12,-3],[16,2],[35,1],[42,-1],[24,-1],[15,0],[25,2],[16,0],[11,1],[19,-1],[12,-2],[33,-3],[68,-4],[59,-5],[142,-10],[53,0],[71,-3],[14,-1],[44,0],[17,-2],[91,-1],[25,0],[23,-1],[20,-3],[102,3],[13,0],[33,0],[72,0],[52,-2],[3,0],[28,-1],[17,0],[19,0],[4,0],[23,0],[14,0],[77,3],[32,-1],[107,-2],[143,-3],[7,0],[28,-1],[1,0],[19,-1],[27,-1],[12,0],[28,-1],[36,2],[14,2],[89,-4],[11,-1],[7,1],[26,3],[19,-2],[3,0],[25,4],[16,1],[27,4],[16,2],[22,3],[16,3],[71,3],[68,8],[19,2],[9,1],[29,6],[20,3],[13,2],[1,0],[10,0],[18,1],[18,1],[20,0],[31,4],[13,0],[11,1],[2,0],[14,0],[35,1],[15,3],[13,0],[45,-3],[10,-1]],[[54294,98274],[-5,-45],[0,-3],[-4,-84],[0,-16],[-4,-187],[0,-5],[-12,-189],[-12,-328],[-2,-83],[-1,-6],[-4,-38],[-1,-44],[-14,-364],[-1,-87],[-6,-317],[-10,-109],[-1,-113],[-9,-120],[-2,-73],[-5,-193],[3,-66],[0,-23],[0,-60],[-4,-55],[-1,-5],[-8,-111],[5,-132],[6,-94],[-5,-160],[-2,-110],[6,-142],[-7,-80],[-25,-156],[4,-160],[1,-81],[0,-40],[0,-9],[1,-60],[-8,-87],[-2,-62],[-3,-142],[-2,-58],[-1,-51],[0,-55],[-1,-66],[-2,-142],[-9,-280],[-9,-266],[0,-1],[1,-203],[0,-91],[-5,-367],[-4,-241],[-3,-98],[-3,-146],[1,-320],[0,-95],[1,-80],[-2,-116],[-11,-201],[-6,-105],[-1,-77],[0,-94],[-4,-139],[-2,-54],[-10,-306],[1,-5],[5,-50],[-1,-47],[-3,-168],[-3,-203],[-2,-121],[-2,-76],[0,-11],[-4,-51],[1,-182],[-2,-87],[-1,-70],[-3,-127],[-2,-62],[-2,-208],[-1,-149],[-1,-47],[-3,-102],[-1,-4],[-2,-171],[-3,-178],[-3,-255],[-3,-88],[1,-47],[-3,-102],[-3,-138]],[[54050,87634],[-3,-131],[-1,-128]],[[54046,87375],[-26,-3],[-78,7],[-64,7],[-16,4],[-98,4],[-24,3],[-5,1],[-84,6],[-19,0],[-26,4],[-38,0],[-32,0],[-54,7],[-29,4],[-16,4],[-23,0],[-78,11],[-129,14],[-12,0],[-82,11],[-20,-4],[-79,11],[-15,0],[-17,4],[-106,7],[-81,8],[-32,3],[-114,11],[-74,11],[-45,0],[-2,0],[-54,7],[-57,4],[-46,4],[-20,3],[-12,0],[-16,4],[-14,0],[-12,0],[-45,4],[-45,3],[-59,4],[-11,3],[-25,0],[-34,4],[-42,4],[-71,3],[-24,8],[-12,0],[-29,0],[-33,3],[-20,0],[-14,4],[-22,0],[-74,7],[-18,0],[-89,11],[-36,11],[-65,0],[-18,4],[-36,3],[-22,0],[-12,0],[-45,4],[-20,4],[-39,3],[-13,0],[-37,4],[-27,0],[-19,4],[-13,3],[-3,0],[-18,0],[-14,0],[-2,0],[-33,4],[-1,0],[-47,3],[-56,8],[-29,6],[-3,1],[-97,22],[-44,0],[-58,4],[-18,3],[-24,0],[-16,0],[-24,0],[-15,0],[-23,4],[-24,7],[-87,15],[-1,0],[-20,0],[-14,-4],[-19,4],[-14,0],[-12,3],[-27,4],[-17,4],[-58,3],[-31,4],[-67,18],[-23,4],[-32,7],[-28,4],[-16,3],[-30,4],[-63,7],[-40,7],[-36,8],[-94,10],[-3,1],[-14,0],[-60,7],[-11,0],[-124,15],[-60,7],[-41,3],[-3,1],[-38,6],[-3,1],[-60,3],[-107,11],[-23,0],[-22,0],[-13,4],[-26,4],[-14,0],[-43,3],[-32,3],[-45,5],[-13,0],[-12,0],[-14,1],[-40,6],[-191,18],[-72,18],[-94,15],[-56,7],[-16,0],[-76,11],[-39,4],[-30,0],[-23,3],[-47,4],[-15,0],[-50,4],[-51,-8]],[[48462,98336],[0,3],[12,0],[142,0],[58,0],[19,0],[20,0],[22,0],[1,0],[9,-3],[21,-5],[67,-2],[23,0],[25,1],[13,0],[9,1],[17,0],[12,1],[31,1],[37,1],[46,0],[94,2],[46,6],[34,-3],[86,3],[31,0],[184,0],[27,-3],[27,3],[13,0],[27,-3],[54,7],[28,-7],[42,0],[20,0],[14,3],[13,-4],[6,-2],[50,2],[150,7],[1,0],[21,2],[24,3],[22,-1],[124,-3],[56,0],[47,-4],[53,0],[44,0],[38,-2],[15,-1],[51,0],[24,-1],[30,3],[18,0],[50,0],[38,1],[37,0],[12,0],[134,-7],[1,0],[107,-7],[2,0],[33,11],[220,-8],[99,-6],[20,0],[34,4],[69,3],[30,-4],[20,-2],[19,-2],[13,0],[12,0],[56,0],[17,-2],[30,-2],[32,0],[32,0],[20,0],[52,-2],[45,0],[111,-1],[82,-1],[0,1],[138,-2],[121,-1],[14,3],[156,-4],[15,0],[35,0],[46,-3],[24,1],[16,2],[9,0],[19,0],[26,11],[146,-7],[3,0],[114,-11],[41,0],[46,-4],[6,1],[38,5],[15,-2],[4,-1],[34,0],[33,-1],[36,-2],[77,0],[21,-3],[2,0],[6,1],[58,-1],[168,-8],[79,-3],[24,0],[16,0],[22,0],[21,-3],[21,-1],[58,0],[123,-3],[14,0],[14,-1],[41,0],[23,0],[14,0],[193,-3],[49,-2],[38,-2],[8,0],[23,0],[10,0],[6,0],[43,1]],[[58318,87401],[-31,0],[-48,3],[-50,0],[-27,0],[-8,0],[-25,4],[-64,4],[-42,3],[-24,0],[-89,8],[-2,0],[-39,0],[-19,0],[-20,0],[-17,0],[-17,0],[-16,0],[-17,0],[-28,0],[-29,0],[-26,0],[-16,0],[-35,0],[-20,0],[-45,3],[-20,0],[-15,4],[-61,7],[-30,4],[-20,3],[-16,4],[-18,4],[-42,0],[-21,3],[-58,4],[-36,0],[-58,4],[-15,0]],[[57154,87463],[-46,3],[-23,4],[-21,0],[-13,4],[-29,0],[-22,3],[-22,0],[-15,4],[-14,0],[-15,0],[-28,4],[-86,7],[-34,0],[-27,3],[-35,4],[-33,0],[-35,4],[-22,3],[-23,0],[-65,8],[-27,0],[-27,3],[-21,0],[-16,0],[-28,4],[-40,0],[-2,0],[-84,7],[-27,4],[-28,4],[-4,0],[-55,3],[-14,7],[-49,-3],[-18,3],[-23,0],[-78,-3],[-30,7],[-13,4],[-11,-4],[-16,0],[-11,0],[-18,4],[-78,-8],[-19,22],[-14,0],[-26,0],[-91,8],[-55,3],[-52,4],[-65,7],[-20,4],[-64,3],[-22,0],[-27,4],[-133,7],[-57,4],[-64,4],[-11,3],[-3,0],[-34,0],[-35,4],[-121,7],[-13,0],[-20,4],[-19,0],[-21,3],[-22,0],[-23,4],[-110,7],[-17,0],[-25,0],[-17,4],[-38,4],[-37,0],[-27,3],[-19,0],[-93,11],[-35,0],[-31,0],[-19,4],[-21,0],[-96,4],[-25,3],[-26,0],[-14,0],[-26,-11],[-29,-14],[-24,-11],[-18,-11]],[[54294,98274],[0,3],[32,0],[1,0],[87,3],[16,-4],[16,-2],[7,0],[4,0],[26,0],[36,1],[8,0],[82,1],[50,0],[13,0],[6,0],[58,0],[12,0],[16,0],[36,0],[1,0],[12,0],[16,0],[34,0],[4,0],[23,1],[12,0],[51,7],[17,2],[60,4],[25,1],[1,0],[26,0],[121,3],[13,0],[36,0],[137,1],[15,0],[29,1],[44,3],[54,0],[1,0],[38,0],[26,-2],[54,-1],[23,-1],[17,0],[22,0],[113,0],[19,4],[73,0],[24,0],[17,0],[71,-3],[39,-1],[66,0],[1,0],[47,0],[4,0],[54,0],[43,0],[84,0],[53,0],[69,-2],[54,-2],[48,0],[95,0],[36,0],[11,0],[77,0],[81,0],[26,0],[60,-2],[38,-1],[26,0],[28,0],[13,0],[2,0],[64,0],[86,-1],[55,3],[66,3],[13,1],[19,1],[20,0],[112,7],[67,3],[0,1],[29,0],[1,0],[23,0],[1,0],[19,0],[38,-3],[17,2],[1,0],[85,1],[15,0],[22,0],[64,0],[19,0],[17,0],[27,0],[16,0],[34,0],[12,0],[42,0],[15,1],[33,0],[80,0],[18,0],[15,0],[79,1],[68,0],[21,0],[6,0],[52,0],[39,1]],[[79326,84721],[17,18],[15,15],[19,3],[12,-7],[2,-2],[10,-12],[28,-59],[16,-49],[8,-24],[1,-4],[2,-10],[3,-18],[3,-20],[12,-85],[10,-70],[10,-51],[14,-20],[6,-9],[9,0],[7,0],[2,0],[91,78],[2,2],[1,0],[20,-7],[13,-49],[0,-2],[-3,-37],[-1,-1],[-32,-152],[-8,-38],[-2,-9],[0,-4],[-4,-56],[1,-19],[8,-268],[0,-6],[0,-2],[3,-34],[2,-7],[5,-19],[1,-6],[1,-1],[8,-12],[4,-7],[79,-69],[26,-10],[23,-10],[14,-35],[8,-32],[5,-35],[0,-47],[-2,-45],[-4,-28],[-3,-19],[-6,-27],[-29,-137],[-1,-25],[0,-7],[-3,-53],[8,-37],[8,-16],[80,-30],[39,13],[3,-2],[13,-6],[11,-15],[3,-9],[5,-16],[4,-14],[-2,-11],[-2,-16],[-1,-7],[-13,-26],[-12,-8],[-9,-5],[-45,-8],[-35,-6],[-11,-19],[-2,-3],[-6,-10],[-2,-46],[7,-27],[11,-19],[76,-76],[47,-24],[8,1],[14,2],[9,-4],[19,-6],[2,-2],[20,-14],[12,-25],[10,-33],[2,-11],[5,-38],[6,-46],[-2,-44],[-2,-27],[0,-1],[-1,-9],[-11,-36],[-53,-94],[-31,-76],[-4,-7],[-28,-47],[-6,-11],[-13,-11],[-13,-3],[-33,17],[-23,33],[-8,11],[-26,13],[-2,-2],[-4,-4],[-53,13],[-31,13],[-20,9],[-36,4],[-24,4],[-64,-24],[-3,2],[-27,-19],[-6,-4],[-21,-14],[-33,-34],[-2,-2],[-8,-7],[-2,-4],[-35,-56],[-12,-27],[-56,-117],[-1,-2],[-2,-2],[-25,-21],[-16,-3],[-1,0],[-1,-1],[-14,-12],[-26,-9],[-22,-7],[-24,-7],[-15,3],[-1,0],[-1,0],[-47,-9],[-12,-3],[-1,0],[-36,-22],[-16,-30],[-7,-14],[-13,-53],[-2,-24],[-1,-17],[-20,-166],[-1,-5],[-10,-48],[-1,-1],[-1,-2],[-15,-31],[-5,-12],[-7,-4],[-31,-20],[-1,-1],[-10,-7],[-9,-5],[-12,-25],[-2,-22]],[[78929,81320],[-48,-127],[-81,-233],[-7,-23],[-7,-21],[-114,-346],[-213,-648],[-65,-186],[-88,-272],[0,-1],[-29,-87],[-70,-215],[-25,-76],[-43,-132],[-62,-189]],[[78077,78764],[-20,26],[-13,7],[-15,-4],[-13,40],[-26,-29],[-11,-36],[-26,-11],[-14,-4],[-21,-11],[-24,-14],[-18,-15],[-18,-3],[-16,7],[-11,10],[-1,1],[-14,14],[-23,29],[-24,99],[-15,25],[-12,37],[-15,43],[-5,33],[-8,36],[-14,30],[-28,21],[-11,11],[-15,4],[0,55],[7,29],[16,22],[11,40],[0,40],[-15,54],[-12,15],[-25,47],[-12,18],[-31,37],[0,1],[-29,61],[-26,58],[-18,51],[-16,25],[-11,15],[-22,11],[-20,4],[-19,-4],[-15,11],[-22,22],[-37,11],[-24,47],[-11,58],[-6,33],[-18,33],[-20,40],[-250,0],[-2,0],[-35,-4],[-13,0],[-40,-3],[-150,-8],[-8,33],[-12,7],[-10,19],[-14,7],[-16,-7],[-25,-37],[-11,-7],[-4,44],[-19,10],[-6,59],[18,22],[23,-44],[12,22],[3,58],[0,80],[11,4],[0,40],[-10,33],[-11,7],[-13,40],[-10,-33],[-11,-4],[-16,19],[-9,80],[2,47],[-15,-14],[-12,7],[-9,29],[-7,36],[12,26],[-2,44],[0,65],[-18,-40],[-17,7],[-4,37],[-15,51],[-11,18],[-12,65],[-8,30],[4,54],[5,51],[10,48],[8,-33],[17,-18],[12,21],[17,66],[26,62],[15,14],[19,51],[14,-32],[16,25],[-11,22],[0,51],[-11,22],[-4,51],[-29,-15],[-6,44],[-14,18],[15,22],[-1,40],[-18,-26],[-6,62],[-16,-7],[-6,36],[7,48],[-11,36],[18,-11],[-7,33],[3,36],[15,-18],[7,33],[8,51],[-16,33],[1,51],[-11,43],[-4,51],[9,81],[-18,21],[-13,19],[-12,-11],[-15,-8],[-5,51],[8,40],[-11,40],[-12,15],[-7,29],[-15,-25],[-18,25],[-24,37],[-15,3],[-10,22],[-20,11],[-15,15],[-16,47],[-6,-58],[-18,0],[-10,-51],[-22,18],[-1,-73],[-14,-4],[-10,-29],[-14,11],[-15,37],[-5,51],[-14,0],[-21,-4],[-12,22],[-18,11],[-11,18],[1,-55],[-14,29],[-14,4],[-17,26],[-15,0],[9,29],[-23,14],[-9,-69],[-18,4],[-13,14],[3,37],[2,40],[-18,-11],[-11,-26],[-9,26],[-3,47],[-15,-3],[-18,-41],[-3,59],[15,14],[-23,37],[-4,-51],[-25,43],[-13,-36],[-21,-4],[4,37],[-11,22],[-9,25],[-3,-47],[-2,-62],[-11,-22],[-15,15],[8,47],[-12,7],[-16,40],[-18,22],[-2,40],[-9,40],[-20,-3],[-24,40],[-4,62],[-3,36],[-13,-18],[-10,-48],[-23,-18],[3,55],[8,33],[-10,18],[-16,11],[-9,-26],[-18,-18],[-18,-18],[-10,25],[-20,18],[-19,-7],[-12,26],[-10,32],[-8,-32],[-14,14],[-16,4],[-7,40],[-4,65],[-7,-32],[3,-59],[-13,33],[-12,33],[9,47],[-14,-3],[-17,3],[1,59],[12,61],[8,33],[-12,-3],[-13,-8],[-13,26],[12,29],[9,65],[-22,15],[12,44],[-13,14],[-7,37],[4,58],[-15,36],[-18,-11],[-20,15],[11,66],[-9,25],[-5,55],[-11,14],[-20,15],[-17,33],[-1,40],[-18,14],[-9,26],[-3,69],[-14,22],[-14,-22],[-21,-18],[-15,18],[-16,7],[7,-54],[-7,-30],[-11,0],[-8,30],[2,43],[-19,-18],[-18,15],[2,51],[-13,0],[-15,-22],[-17,-44],[-4,40],[-16,11],[-15,-66],[-18,-7],[-9,58],[-16,22],[-9,-62],[-11,30],[-19,-22],[-9,51],[13,18],[-2,36],[-14,8],[-15,32],[4,59],[-13,0],[-18,10],[-24,30],[7,51],[16,25],[13,15],[13,51],[-3,47],[-19,11],[-10,36],[-35,4],[-8,44],[10,91],[-18,11],[-14,-44],[-18,7],[0,-65],[-16,0],[-14,7],[-9,40],[-19,-18],[-11,-26],[-27,-25],[-18,0],[-1,0],[-17,7],[-19,18],[-23,47],[0,1]],[[74744,84157],[-21,-8],[-12,-25],[-7,-33],[-11,-22],[-15,22],[-20,-29],[-8,-33],[-7,-47],[-3,-69],[-32,-15],[-21,-22],[-18,15],[-10,25],[-19,-7],[-21,-66],[-18,-69],[-20,-43],[18,-30],[1,-51],[24,-40],[13,-43],[-4,-40],[-10,-26],[-18,-25],[-12,-11],[-18,0],[-14,18],[-7,36],[-16,62],[-18,40],[-26,8],[-24,25],[-2,47],[14,88],[-2,47],[-5,51],[1,55],[6,62],[-28,-51],[-12,29],[-19,62],[-11,47],[-13,95],[-19,18],[-24,29],[-16,-22],[-13,-40],[-21,-14],[-17,36],[-11,51],[-9,44],[-9,22],[-43,-30],[3,-102],[1,-43],[-9,-51],[-16,-37],[-23,-43],[-46,-11],[-23,-18],[-21,-11],[-17,-22],[-22,-29],[-23,-4],[-24,18],[-11,-40],[1,-105],[-31,7],[-14,33],[-15,0],[-19,-37],[-10,-29],[-15,-25],[-13,14],[-22,37],[-6,15],[-8,17],[-18,19],[-15,7],[-16,25],[-12,8],[-35,7],[-15,-7],[-16,-30],[-11,8],[-16,25],[-12,55],[2,54],[-12,37],[-12,0],[-9,0],[-12,-62],[3,-117],[5,-54],[-1,-62],[-14,-80],[-13,-26],[-14,0],[-28,26],[-23,11],[-19,22],[-18,36],[-18,47],[-7,40],[-10,30],[-11,14],[-17,7],[-16,-21],[-22,14],[-29,18],[-15,26],[-16,-15],[-15,-33],[-36,8],[-11,3],[-33,22],[-21,11],[-34,-3],[-28,-19],[-14,4],[-12,11],[-22,25],[-13,19],[-13,-4],[-22,-18],[-18,14],[-13,22],[-17,51],[-19,22],[-15,0],[-28,-15],[-16,-11],[-10,-43],[-11,-26],[-22,-18],[-19,-25],[-13,-4],[-16,18],[-17,-11],[-14,-22],[-22,0],[1,-47],[-13,29],[-8,40],[-11,40],[-13,33],[-28,-29],[-13,-91],[-18,4],[-3,40],[-13,43],[-11,51],[-8,33],[-7,33],[-3,47],[-25,66],[-12,36],[-55,73],[-14,55],[2,116],[6,84],[-16,18],[-25,33],[-37,36],[-15,7],[-20,0],[-12,-10],[-18,-30],[-23,-21],[-21,18],[-15,7],[-19,26],[-19,32],[-13,55],[5,73],[14,73],[5,80],[11,58],[28,167],[-1,51],[-8,30],[-9,29],[-12,65],[-20,84],[-14,58],[-14,11],[-7,-36],[-7,-59],[0,-102],[-10,-25],[-14,-18],[-28,0],[-20,29],[-11,58],[-4,48],[-8,32],[-33,62],[-21,51],[-10,44],[-15,47],[-15,7],[-12,0],[-3,-36],[-7,-51],[5,-40],[-3,-36],[14,-77],[-8,-105],[-8,-40],[-11,-11],[-34,-4],[-13,-15],[-10,-18],[-13,11],[-15,44],[-14,22],[-17,51],[-11,43],[-10,44],[-9,25],[-40,88],[-15,25],[-11,50],[-1,1],[-36,91],[-21,8],[-18,-19],[-16,11],[-14,-43],[4,-48],[3,-58],[9,-55],[16,-36],[12,-40],[6,-44],[2,-76],[-9,-58],[-13,-91],[-2,-40],[-19,-44],[-13,0],[-22,0],[-11,-51],[-18,3],[-2,62],[-8,51],[-14,29],[-37,48],[-4,47],[0,51],[8,44],[7,73],[-20,32],[-17,44],[-18,15],[-10,-29],[-12,-48],[-5,-47],[-13,-26],[-13,22],[-8,33],[-2,40],[2,66],[-1,36],[-9,29],[-12,18],[-12,19],[-6,51],[-3,58],[-6,73],[5,51],[-23,-4],[-2,0],[-3,0],[-13,0],[-2,0],[-2,8],[-18,54],[-10,25],[-2,8],[-13,40],[-10,-26],[-4,40]],[[91298,92120],[-15,-182],[-11,-139],[5,-61],[4,-37],[6,-22],[41,-146],[2,-123],[0,-139],[37,-174],[1,-2],[29,-53],[60,-15],[17,-47],[-32,-131],[-9,-168],[7,-160],[36,-62],[80,-25],[67,25],[38,8],[84,14],[56,-62],[50,-131],[-9,-45],[-26,-144],[-48,-15],[-47,37],[-41,62],[-17,-8],[-17,0],[-28,-76],[-2,-139],[-17,-192],[-21,-30],[-48,8],[-33,-70],[-36,-54],[-1,-44],[-3,-29],[-1,-18],[-3,-58],[-5,-55],[37,-51],[49,-29],[29,-40],[21,-29],[14,-77],[12,-87],[12,-62],[31,-15],[34,19],[23,3],[40,-14],[18,-66],[1,-80],[13,-117],[34,-120],[30,-51],[22,-105],[28,-62],[26,-77],[12,-91],[19,-62],[36,-18],[41,-18],[35,0],[46,22],[42,11],[54,-69],[33,-59],[39,-83],[25,-73],[21,-62],[45,-168],[4,-163],[6,-88],[17,-102],[27,-83],[29,-117],[22,-51],[17,-58],[6,-62],[17,-138],[18,-153],[-32,-128],[-24,29],[-23,73],[-35,26],[-36,-4],[-45,22],[-16,80],[-18,-69],[-28,-22],[-34,-51],[-35,-58],[-20,-15],[-7,-76],[20,-30],[16,-43],[10,84],[16,47],[24,33],[24,-15],[24,-11],[34,-33],[27,-7],[36,-11],[33,-109],[31,-102],[23,-44],[32,0],[29,48],[16,98],[25,-51],[33,-29],[47,-22],[24,-22],[21,-76],[31,-4],[27,-44],[38,-62],[47,-18],[63,-109],[20,-36],[29,-66],[37,-120],[16,-138],[-7,-95],[-12,-98],[-33,-102],[-5,-117],[-39,18],[17,-94],[27,-51],[27,14],[20,139],[29,43],[24,-113],[11,-98],[1,-146],[10,-138],[30,-80],[27,-109],[14,-99],[16,-87],[15,-73],[17,-51],[8,-69],[6,-84],[-10,-87],[-10,-95],[-20,-36],[-24,-51],[-32,-66],[-39,-47],[-55,-36],[-33,-15],[-24,-29],[-36,0],[-44,-11],[-19,-26],[-20,-14],[-30,-80],[-45,-18],[-39,40],[-29,69],[-28,29],[-46,15],[-31,76],[-2,80],[0,69],[-44,-51],[-46,-51],[-37,-32],[-28,-22],[-34,0],[-7,98],[-1,77],[-12,120],[-9,102],[-25,94],[-33,84],[-19,-76],[-31,-22],[-26,-15],[-30,-84],[-30,66],[-20,109],[-27,-76],[23,-84],[13,-109],[37,-18],[30,40],[32,29],[34,3],[14,-40],[-1,-105],[-26,-69],[-8,-128],[27,-84],[41,-83],[45,-73],[31,-22],[28,-29],[25,80],[30,-29],[21,-66],[-44,-43],[-29,-15],[-27,11],[-59,0],[-53,0],[-38,-4],[-38,-43],[-43,-22],[-50,-18],[-30,-41],[-48,-40],[-30,-36],[-28,-47],[-36,-4],[-50,11],[-57,51],[-42,7],[-59,-3],[-33,72],[-39,113],[-29,55],[-31,54],[-33,51],[-40,62],[-26,62],[-27,106],[-27,95],[-21,83],[-20,117],[-17,73],[-44,94],[-37,106],[-40,76],[-17,110],[-23,83],[-7,99],[-5,105],[22,51],[13,44],[0,102],[-13,76],[2,62],[3,106],[21,91],[-7,62],[-17,-113],[-19,-117],[-21,-54],[12,-99],[9,-62],[-11,-54],[-32,-47],[-24,29],[-38,65],[-35,18],[-46,44],[-2,124],[2,113],[-7,98],[-27,84],[-57,33],[-30,7],[-23,-7],[-49,-4],[-20,51],[-20,65],[3,70],[-2,116],[-29,66],[-39,32],[-1,124],[-22,124],[-32,29],[-21,95],[-31,44],[-12,91],[34,43],[-17,106],[-22,-11]],[[90675,86476],[-14,40],[-19,0],[-8,40],[1,36],[3,66],[-3,51],[-15,7],[-24,-29],[-11,7],[-16,-10],[-12,-4],[-25,-18],[-17,32],[-12,-25],[-17,-11],[-10,26],[-5,47],[1,47],[-4,37],[-12,40],[-15,29],[-4,76],[-14,22],[-11,26],[-17,10],[-10,26],[-15,-4],[-15,22],[-9,37],[2,61],[-7,59],[-2,40],[-12,58],[-17,22],[-18,-18],[-15,18],[-17,0],[-18,-4],[-13,26],[-12,14],[-16,8],[-15,43],[-11,35],[-2,5],[-15,8],[-17,-26],[-10,-33],[-22,-54],[-19,-11],[-12,14],[-22,19],[-13,25],[-11,22],[-5,47],[8,37],[-7,58],[-23,51],[-25,51],[-27,25],[-21,33],[-19,4],[-24,3],[-15,26],[-18,11],[-24,3],[-19,33],[-14,18],[-12,11],[-18,11],[-13,15],[-15,33],[-11,17],[-3,4],[-17,15],[-34,69],[-7,44],[-3,80],[-3,58],[-7,51],[-8,88],[-3,36],[1,51],[22,84],[-2,65],[-8,44],[-16,15],[-23,-11],[-13,18],[-16,76],[-23,84],[-10,44],[-8,65],[-20,44],[-18,25],[-12,33],[-16,51],[0,37],[-2,62],[-6,43],[-20,26],[-2,42],[0,5],[2,36],[0,70],[-11,29],[-16,65],[-10,48],[-10,18],[-14,7],[-18,18],[-20,80],[-35,157],[-39,167],[-33,146],[-67,295],[-25,109],[-10,42],[-38,166],[-52,226],[-13,54],[-28,124],[-91,397],[-36,164],[-33,142],[-13,88],[-1,6],[-35,266],[-6,58],[-14,106]],[[38915,87182],[-3,-189],[0,-47],[-1,-59],[-3,-131],[0,-58],[-3,-156],[0,-41],[-1,-36],[-2,-153],[0,-44],[-1,-72],[-3,-117],[0,-65],[-1,-51],[-2,-142],[-2,-157],[-5,-288],[-2,-163],[-1,-48],[-3,-127],[-5,-412],[-1,-73],[0,-40],[-1,-80],[-2,-51],[-6,-455],[-3,-156],[-1,-70],[-1,-98],[-1,-58],[-2,-120],[0,-9],[-2,-144],[-2,-77],[-1,-54],[-3,-186],[-2,-189],[-5,-317],[-7,-412],[-2,-167],[-2,-109],[-1,-113],[-3,-120],[-2,-160],[-2,-175],[-1,-128],[-4,-142],[-3,-178],[-2,-131]],[[38815,80614],[-42,3],[-2,0],[-22,0],[-1,1],[-52,7],[-52,3],[-39,4],[-113,7],[-226,19],[-85,3],[-97,7],[-72,4],[-25,4],[-51,3],[-106,8],[-1,0],[-38,3],[-41,0],[-42,-32],[-84,-62],[-22,-15],[-36,-29],[-23,-15],[-56,-40],[-127,-94],[-105,-80],[-39,-30],[-60,-43]],[[37156,80250],[-58,-44],[-72,-55],[-11,-11],[-16,-10],[-47,-37],[-12,-7],[-97,-334],[-1,-1],[-464,-135],[-5,33],[-6,58],[-25,37],[-17,43],[-10,44],[-14,55],[-17,36],[-28,18],[-24,15],[-15,3],[-10,-25],[-15,-44],[-11,-43],[-18,0],[-29,29],[-15,0],[-11,29],[-16,51],[-13,-4],[-13,-4],[-20,4],[-21,-4],[-15,0],[-23,-14],[-18,-15],[-15,-3],[-18,-4],[-17,26],[-22,3],[-14,-29],[-16,-18],[-12,-40],[-9,-22],[-23,-36],[-57,-70],[-80,-105],[-29,-33],[-15,-18],[-25,-33],[-13,-18],[-14,-4],[-19,0],[-25,18],[-13,15],[-12,51],[3,51],[-12,36],[-11,37],[-16,7],[-15,22],[-15,33],[-11,14],[-17,-18],[-10,22],[-18,44],[-4,5],[-8,13],[-13,-18],[-21,10],[-14,26],[-9,40],[-19,0],[-14,-15],[-10,-21],[-10,-19],[-15,-7],[-11,4],[-11,7],[-24,26],[-12,21],[-14,-7],[-13,-76],[-12,-40],[-15,-22],[-15,-11],[-14,18],[-19,36],[-16,-11],[-18,-29],[-10,-29],[-16,-36],[-15,-22],[-16,-18],[-15,0],[-18,11],[-17,29],[-11,3],[-11,-3],[-14,-7],[-11,3],[-16,11],[-24,-18],[-11,-18],[-16,11],[-22,-4],[-20,7],[-12,-33],[-19,-40],[-8,-32],[2,-37],[-11,-25],[-11,-4],[-21,-25],[-14,7],[-18,25],[-12,19],[-11,18],[-36,-58],[-15,3],[-22,33],[-22,-36],[-14,0],[-18,7],[-21,7],[-14,4],[-18,-15],[-28,-18],[-21,-36],[-17,-62],[-9,-26],[-18,-18],[-19,-11],[-32,-55],[-16,-25],[-12,-4],[-11,-22],[-13,-7],[1,-51],[-18,-29],[-1,-36],[5,-55],[-22,-25],[-13,-15],[-16,-7],[-7,-48],[-33,-36],[-20,-33],[-10,-18],[-12,-36],[-22,-15],[-16,-15],[-17,-7],[0,-51],[-15,-18],[-12,22],[-14,3],[-15,0],[-19,15],[-15,4],[-24,-4],[-23,-15],[-16,-18],[-1,-43],[1,-55],[-17,-26],[-7,-32],[0,-2],[-9,-38],[-4,-37],[-5,-36],[-22,-4],[-13,-7],[-19,4],[-11,-22],[-14,-29],[-13,-15],[-14,15],[-12,36]],[[33780,78451],[-25,133],[-1,5],[-65,343],[-25,138],[-57,313],[-6,33],[-20,25],[-145,215],[-32,51],[-47,80],[-13,48],[-7,29],[-1,47],[-8,55],[-6,29],[-9,54],[-15,-47],[-10,-22],[-12,-18],[-20,-22],[-11,62],[-9,62],[-23,-11],[-19,22],[-3,51],[1,47],[-11,37],[-15,-37],[-16,-11],[-21,-7],[-23,7],[-11,-3],[-17,-26],[-13,-7],[-18,-18],[-15,-26],[-23,62],[11,33],[8,47],[19,26],[17,36],[-3,58],[15,29],[6,55],[-5,37],[-22,10],[-13,73],[-18,40],[-24,59],[-5,54],[-9,58],[-7,59],[-6,43],[-9,33],[-8,22],[-1,4],[-19,47],[-24,33],[-15,25],[-6,40],[-2,9],[-4,24],[-2,58],[-21,-3],[-10,25],[-17,44],[-19,0],[-11,7],[-13,-36],[-13,-15],[-10,22],[-15,40],[-11,26],[-16,43],[-15,59],[-17,54],[-27,-33],[-20,-18],[-11,-25],[-36,-26],[-21,33],[-13,-26],[-19,-7],[-23,-11],[-9,-51],[-23,-29],[-19,-7],[-5,40],[0,65],[-22,55],[-9,47],[3,81],[-7,50],[3,55],[-27,40],[-15,58],[-19,40],[-14,59],[12,54],[-14,8],[-25,40],[-20,3],[-17,-25],[-22,-15],[-32,-36],[-19,-73],[-35,-95],[0,84],[-34,47],[-5,37],[-19,18],[-10,29],[-17,29],[-11,40],[2,51],[1,95],[-31,-15],[-13,-18],[-22,4],[-12,0],[-11,11],[-11,29],[-17,36],[-22,15],[-19,0],[-17,-33],[-13,4],[-4,40],[-5,44],[-21,10],[-18,11],[-19,-21],[-12,0],[-11,-11],[-15,-22],[-16,-26],[-19,-22],[-26,-18],[-16,22],[-24,-7],[-15,-4],[-12,7],[-15,-3],[-13,65],[-20,19],[-13,29],[3,40],[-12,36],[-11,0],[-14,29],[-43,84],[-22,42],[-35,71],[-19,36],[-132,273]],[[31330,82860],[38,70],[100,178],[17,33],[13,18],[11,22],[13,22],[18,32],[13,26],[51,91],[10,18],[27,47],[33,62],[47,84],[22,37],[94,173],[10,19],[128,710],[12,66],[0,1],[85,469],[24,134],[27,62],[16,37],[74,175],[19,47],[10,120],[3,36],[10,117],[26,280],[-11,77],[-7,51],[-1,7],[-9,62],[-46,320],[-13,88],[-94,684]],[[31330,82860],[-51,0],[-33,0],[-92,4],[-122,4],[-257,7],[-13,0],[-37,0],[-47,0],[-42,0],[-69,4],[-133,3],[-63,4],[-4,0],[-9,0],[-181,3],[-32,0],[-13,0],[-13,0],[-21,4],[-44,0],[-27,7],[-4,8],[-2,5],[-14,31],[-5,6],[-4,3],[-5,6],[-4,1],[-9,2],[-19,8],[-20,0],[-4,2],[-10,5],[-8,10],[-3,4],[-20,15],[-25,36],[-14,-3],[-22,-4],[-43,-11],[-13,-3],[-18,-4],[-56,-15],[-41,-7],[-46,-14],[-31,-8],[-62,-17],[-3,-1],[-80,-18],[-16,-7],[-13,0],[-12,-4],[-13,-7],[-20,-4],[-16,-4],[-13,-3],[-23,-8],[-51,-11],[-21,-6],[-4,-1],[-25,-7],[-1,0],[-191,-47],[-13,-4],[-80,-22],[-130,-29],[-51,-15],[-22,-6],[-27,-8],[-14,-4],[-38,-11],[-27,-7],[-135,-33],[-144,-43]],[[28342,82646],[-14,7],[-15,145],[-22,248],[-4,58],[-6,37],[-15,160],[-7,76],[-5,58],[0,1],[-8,83],[-32,335],[-11,124],[-7,69],[-5,55],[-8,80],[-2,44],[2,58],[-8,87],[-13,117],[-4,40],[-14,44],[-11,40],[-4,80],[-6,58],[-17,-11],[-20,-22],[-16,-3],[-11,22],[0,51],[-13,54],[-8,33],[-1,5],[-16,50],[-27,91],[-6,29],[-11,32],[-8,30],[-29,102],[-57,196],[-67,230],[-99,-48],[-79,-40],[-13,-7],[-2,-1],[-20,-6],[-49,-22],[-22,-11],[-30,-15],[-11,4],[-14,87],[-6,66],[-7,80],[-19,55],[-12,18],[-14,29],[-18,44],[-7,32],[-20,59],[-26,47],[-13,29],[-23,44],[-20,54],[-9,44],[-4,62],[-28,113],[-12,44],[-8,43],[2,55],[14,14],[-4,70],[-1,58],[-1,44],[1,50],[-26,88],[-8,40],[-6,69],[16,77],[18,87],[3,102],[-4,58],[7,44],[19,-18],[24,3],[13,8],[12,10],[19,48],[19,58],[11,26],[-6,43],[-11,55],[-8,55],[-7,47],[-41,33],[-1,51],[4,43],[8,29],[8,51],[11,-69],[11,58],[12,4],[14,4],[16,43],[-4,59],[-13,11],[18,21],[4,48],[3,54],[-13,26],[2,17],[3,23],[22,22],[10,40],[-8,47],[0,69],[-11,59],[1,51],[0,49],[0,9],[-4,15],[-4,21],[-8,33],[-3,40],[-2,36],[-1,8],[-5,36],[-6,33],[-1,5],[-1,5],[-5,23],[-12,54],[-1,2],[-15,23],[0,1],[-11,-7],[-19,-30],[-12,-21],[-3,-10],[-6,-15],[-5,-15],[-14,3],[-19,58],[-28,22],[-13,26],[-18,65],[-17,40],[-11,19],[-8,29],[-4,43]],[[27127,89028],[102,515],[18,40],[9,24],[13,28],[12,8],[9,20],[11,38],[1,2],[3,4],[19,17],[0,1],[4,13],[5,14],[1,3],[6,6],[14,17],[14,4],[14,-11],[14,4],[9,15],[13,19],[11,7],[44,26],[14,27],[7,29],[1,1],[6,26],[14,32],[9,14],[23,26],[1,0],[15,14],[0,1],[6,18],[7,21],[0,1],[2,4],[13,19],[28,132],[9,24],[5,18],[12,38],[15,48],[0,1],[14,35],[19,62],[5,13],[9,50],[3,30],[4,20],[13,42],[26,34],[14,42],[4,14],[13,20],[22,50],[15,57],[16,58],[1,0],[4,-7],[20,-10],[7,11],[9,25],[11,21],[10,22],[4,0],[14,7],[17,35],[19,36],[9,21],[14,25],[22,45],[12,19],[17,20],[10,19],[15,19],[13,18],[6,10],[3,6],[9,26],[21,0],[9,9],[16,12],[3,4],[12,17],[15,14],[10,-3],[35,1],[20,15],[12,17],[7,18],[4,9],[11,9],[7,5],[29,20],[9,1],[18,5],[3,1],[11,5],[9,15],[1,1],[1,2],[1,3],[16,62],[5,8],[12,10],[18,23],[16,19],[27,59],[4,24],[1,2],[13,14],[20,4],[8,3],[1,1],[8,33],[4,17],[3,20],[5,35],[15,23],[7,-21],[-1,-39],[1,-55],[2,-16],[8,-46],[7,-28],[14,-15],[0,-19],[2,-3],[0,-48],[0,-9],[-1,-7],[0,-3],[-3,-53],[5,-46],[2,-14],[2,-38],[21,-44],[1,0],[1,-1],[12,-11],[14,-17],[13,0],[20,7],[19,1],[9,8],[17,27],[5,-13],[10,-30],[17,-37],[9,-35],[3,-13],[16,-51],[17,-6],[9,-6],[10,-23],[12,-7],[5,-31],[16,-53],[11,-19],[15,-27],[1,-2],[17,17],[14,24],[15,6],[19,-7],[15,-7],[13,-31],[2,-3],[17,-28],[19,-40],[16,2],[15,17],[8,10],[8,-3],[8,-4],[9,-11],[16,7],[17,8],[14,16],[13,8],[18,29],[5,8],[1,2],[2,2],[11,15],[9,38],[0,1],[3,10],[12,28],[9,20],[16,-4],[14,-17],[22,-11],[17,-17],[31,-3],[14,-20],[1,-1],[14,-18],[0,-1],[2,-4],[2,-5],[13,-33],[12,-6],[3,-1],[17,-15],[1,-7],[9,-38],[8,-22],[6,-13],[13,0],[22,-2],[23,-1],[1,-1],[41,-28],[7,-5],[17,2],[1,46],[8,46],[8,34],[4,57],[2,13],[2,34],[0,1],[-1,4],[-1,13],[-3,39],[-19,91],[-14,29],[-13,5],[-25,6],[-15,0],[-14,4],[-37,47],[-14,36],[-9,29],[-1,4],[-6,18],[-6,15],[-11,42],[-4,22],[-5,50],[0,2],[-2,11],[-5,21],[-8,75],[-1,15],[3,24],[15,14],[0,7],[2,3],[-2,37],[-1,35],[-1,12],[0,2],[-4,23],[-6,35],[-4,11],[-11,19],[-1,4],[-21,88],[1,5],[3,28],[7,59],[-1,8],[-2,12],[-9,33],[-9,20],[-12,33],[0,44],[-3,35],[-1,1],[-9,-3],[-16,50],[-2,24],[-5,59],[-5,31],[-23,50],[0,1],[13,98],[2,4],[2,3],[13,13],[13,8],[0,1],[2,16],[6,46],[6,38],[-11,56],[4,58],[6,39],[7,16],[6,33]],[[90675,86476],[-26,-66],[-13,-109],[20,-102],[31,-109],[-11,-62],[18,-33],[12,-58],[-10,-84],[4,-109],[31,-36],[26,-29],[21,-95],[-14,-117],[2,-109],[10,-167],[-27,-44],[-26,-47],[-32,-19],[32,-102],[27,73],[34,8],[29,18],[45,7],[9,-98],[1,-77],[17,-65],[23,-80],[32,-37],[24,-80],[26,-51],[27,-44],[37,-43],[33,-91],[36,-69],[19,-113],[16,-59],[26,-102],[28,-94],[19,-58],[-1,-142],[2,-117],[15,-76],[11,-88],[15,-47],[19,-44],[19,-51],[14,-94],[12,-84],[10,-66],[49,-105],[18,-33],[24,-77],[27,-40],[27,-25],[58,-62],[26,-73],[22,-58],[19,-44],[44,-69],[41,-36],[26,-44],[-52,-98],[-34,-30],[-36,-25],[-42,-25],[-64,-102],[-26,-66],[-43,11],[-42,18],[-33,69],[-31,37],[-26,-37],[-26,15],[-23,-18],[-24,18],[-23,11],[-27,91],[-45,69],[-32,11],[-43,-62],[-28,69],[-21,33],[-44,33],[-33,-11],[-24,58],[-24,33],[-54,58],[-30,29],[-66,95],[-30,29],[-15,77],[-18,69],[-22,40],[-35,83],[-61,55],[-36,7],[-44,15],[-42,-4],[-24,102],[-43,77],[-28,102],[-26,69],[-34,69],[-31,-4],[-43,8],[-31,11],[-47,47],[-36,73],[-50,47],[-36,-7],[-16,-84],[-31,47],[-43,11],[-54,11],[-42,-43],[-36,-33],[-30,14],[-20,-3],[-39,32],[-35,128],[-22,44],[-9,72],[-22,91],[-6,88],[-7,80],[-13,47],[-31,48],[-22,112],[-13,128],[-13,62],[-15,62],[8,91],[-16,127],[-16,-105],[-25,-55],[-39,29],[-34,84],[-37,91],[-36,54],[-37,62],[-44,55],[-39,102],[-72,33],[-25,62],[-30,113],[-22,76],[-14,62],[-31,65],[-32,19],[-22,-11],[-38,14],[0,113],[-31,-58],[-38,-22],[-24,-7],[-3,9],[-31,100],[22,127],[-28,88],[-27,-84],[-38,-18],[-43,-84],[-4,-49],[-5,-56],[11,-4],[-13,-37],[-15,8],[7,131],[32,167],[0,131],[-6,77],[-19,21],[-5,4],[-32,-47],[-26,0],[-20,160],[0,84],[-13,-20],[-1,-2],[0,-138],[10,-113],[18,-40],[32,7],[20,14],[6,4],[6,4],[-11,-244],[-34,-153],[8,-69],[30,-69],[31,29],[8,66],[2,21],[13,-3],[5,-113],[-5,-120],[-41,-153],[41,40],[29,-26],[12,80],[26,-12],[11,-6],[32,-142],[23,-69],[23,-40],[25,-58],[44,-55],[24,-44],[15,-116],[29,-58],[19,-168],[15,-73],[34,-47],[57,-15],[29,0],[11,-98],[38,-80],[41,-69],[29,-66],[28,-73],[35,-87],[36,-66],[30,-58],[17,-58],[19,-77],[30,-91],[4,-76],[27,-73],[21,-25],[37,-40],[21,-59],[14,-40],[16,-69],[8,-98],[28,-91],[33,-66],[38,-65],[27,-44],[31,29],[45,47],[34,4],[28,33],[37,0],[27,-18],[31,3],[28,11],[33,-33],[10,-163],[38,-84],[21,-55],[19,-105],[34,-8],[66,-123],[80,-70],[24,-25],[38,-36],[47,-33],[21,14],[28,-3],[24,0],[30,-29],[3,-110],[-15,-105],[-82,-110],[-36,0],[-34,-25],[-43,-76],[-22,-84],[-29,-11],[-56,-4],[-18,-18],[-18,91],[-26,40],[-39,-7],[-37,-11],[-41,0],[-40,-47],[-45,-8],[-70,-11],[-30,-7],[-34,-11],[-25,-33],[-32,15],[-22,11],[-35,-47],[-29,-37],[-15,-36],[-27,-33],[-31,-15],[-33,33],[-32,-14],[-28,-15],[-43,-18],[-56,-48],[-25,51],[-3,113],[-23,73],[-35,84],[-35,25],[-23,0],[-13,142],[-17,113],[-9,95],[-12,84],[-15,160],[-8,124],[-29,-142],[8,-84],[17,-128],[19,-134],[-1,-95],[12,-87],[-25,-106],[30,-25],[27,-37],[43,-51],[26,-113],[-33,-80],[-29,-11],[-32,-25],[-29,33],[-31,0],[-38,-26],[-27,15],[-39,43],[-37,44],[-25,-58],[-28,-4],[-34,0],[-28,106],[-42,22],[-23,-33],[-14,65],[-7,102],[-28,120],[-27,88],[-29,-26],[-28,48],[-40,-22],[-37,-18],[-31,43],[-28,77],[-18,105],[-17,-94],[-26,-69],[-10,-55],[-37,-91],[-24,-62],[-16,-73]],[[88375,81695],[-17,-22],[-13,26],[-15,-22],[-18,0],[-31,15],[-15,7],[-12,14],[-13,37],[-17,3],[-25,26],[-15,25],[-40,190],[-70,116],[-55,11],[-24,-33],[-57,-21],[-45,25],[-7,0],[-13,0],[-19,-22],[-34,-40],[-53,60],[-2,2],[-41,102],[-45,29],[-37,7],[-53,30],[-35,61],[-15,26],[-20,25],[-7,16],[-37,90],[-14,47],[-11,48],[-9,43],[-5,55],[-2,40],[-10,270],[-7,160],[-8,213],[-1,12],[-8,193],[-5,132],[-4,91],[-4,112],[-6,132],[-5,105],[-3,128],[-3,80],[-3,47],[-4,98],[-2,57],[-13,296],[-11,314],[-3,72],[-11,244],[-3,80],[-6,117],[-2,62],[-21,546],[-4,87],[-1,44],[-20,517],[-13,281],[-2,87],[10,36],[7,55],[1,73],[-1,58],[5,62],[4,44],[7,40],[16,25],[11,11],[19,26],[10,21],[14,37],[21,54],[16,41],[13,18],[36,65],[5,48],[3,72],[6,95],[4,40],[-1,84],[4,47],[7,44],[6,36],[13,91],[5,37],[3,36],[3,55],[4,47],[1,55],[1,47],[0,84],[-3,80],[-4,69],[1,47],[8,59],[10,73],[3,19],[5,46],[-3,55],[-7,47],[-8,40],[-4,55],[-3,91],[2,73],[1,43],[-4,55],[-4,44],[-4,40],[-2,36],[8,167],[5,48],[6,29],[16,62],[17,54],[17,62],[8,29],[3,48],[-12,51],[-8,54],[4,62],[6,62],[5,37],[10,72],[9,73],[7,62],[-3,55],[-4,47],[-8,222],[18,131],[-1,128]],[[86209,88713],[-9,-38],[-34,138],[0,1],[-2,21],[-6,59],[-25,83],[-31,106],[-1,102],[20,98],[25,-58],[7,-87],[3,-26],[23,-55],[10,-53],[8,-48],[9,-75],[5,-38],[4,-106],[-6,-24]],[[88375,81695],[40,40],[24,66],[25,40],[26,58],[36,-73],[27,-51],[48,-36],[47,-26],[40,-43],[20,-84],[20,-84],[25,-91],[36,-11],[36,8],[8,-81],[19,-69],[26,15],[44,3],[23,8],[26,7],[34,-25],[42,-113],[27,18],[32,4],[22,29],[26,0],[40,-37],[8,-83],[32,36],[24,51],[28,-117],[-37,-54],[-19,-62],[-30,-11],[-53,-69],[-29,-66],[-41,-109],[-20,-40],[-22,-58],[-51,-164],[-31,-95],[-23,-47],[-26,-11],[-19,-66],[-22,-69],[-21,-44],[-28,-50],[-30,-95],[-24,-109],[-28,-182],[-18,-142],[-31,-59],[-26,-36],[-35,-7],[-35,-40],[-39,-26],[-144,-91],[-54,-47],[-49,-66],[-39,-33],[-46,-36],[-23,-55],[-42,-32],[-18,-44],[-22,-106],[-5,2],[-29,13],[-42,22],[-88,7],[-56,25],[-39,30],[-58,32],[-38,-14],[-42,36],[-46,-3],[-32,7],[-37,-7],[-57,-15],[-49,-7],[-25,-18],[-25,-15],[-24,4],[-36,21],[-25,33],[-32,88],[-22,69],[-28,94],[-26,99],[-33,127],[-23,113],[-21,73],[-24,73],[-21,69],[-18,106],[-5,109],[-4,124],[-1,109],[-18,116],[-6,124],[-3,124],[-43,25],[-34,48],[-43,58],[-40,-47],[-26,-95],[-10,36],[-9,55],[-11,23],[-13,32],[-10,21],[-22,0],[-21,15],[-17,-29],[-5,-47],[41,7],[21,-27],[13,-17],[11,-49],[5,-20],[8,-45],[4,-24],[49,33],[-4,-61],[-4,-67],[-14,-62],[-4,-22],[-4,-12],[-16,-57],[-12,-48],[-7,-28],[-39,-88],[-21,-40],[-24,-43],[-40,-88],[-31,-33],[-29,-7],[-43,0],[-27,-6],[-5,-1],[-44,14],[-36,4],[-8,10],[-18,26],[-34,41],[-16,48],[-2,6],[-10,29],[-12,37],[-22,22],[-24,7],[-32,11],[-26,23],[-7,6],[-13,26],[-17,36],[-12,39],[-10,34],[-33,131],[-17,72],[-6,22],[-1,7],[-23,84],[-16,110],[-10,32],[-8,26],[-1,91],[-5,18],[-4,20],[-5,20],[-21,84],[1,52],[1,50],[-4,87],[-7,52],[-2,14],[14,87],[23,69],[0,99],[-21,149],[-4,52],[-5,72],[-8,87],[19,87],[29,81],[0,11],[5,87],[1,91],[0,84],[-4,94],[-5,91],[16,84],[-35,0],[-22,0],[-17,-22],[-24,-32],[-32,21],[-14,2],[-15,2],[-20,24],[-8,9],[-14,58],[-12,84],[-19,113],[-8,110],[-1,24],[-10,106],[-8,60],[-9,75],[4,131],[0,12],[0,64],[-12,120],[-16,124],[-19,109],[-7,32],[-14,65],[-1,2],[-32,36],[-21,84],[-3,58],[-3,58],[-1,14],[-2,52],[4,98],[-6,77],[7,94],[-6,84],[6,73],[5,69],[13,138],[1,106],[7,98],[2,142],[2,73],[5,88],[2,116],[3,77],[2,94],[-3,99],[3,152],[19,121],[11,127],[2,153],[14,142],[28,146],[9,105],[26,84],[26,87],[12,88],[30,80],[28,76],[25,40],[26,19],[16,58],[10,84],[2,72],[1,77],[10,91],[15,54],[21,81],[13,109],[37,109],[33,106],[19,69],[24,84],[17,65],[16,73],[13,95],[16,98],[-1,3],[-4,81],[-12,123],[6,144],[2,49],[-9,37],[-11,44],[-20,65],[-2,49],[-2,57],[-15,80],[-17,85],[-7,31],[-9,139],[9,58]],[[43664,87372],[33,-82],[21,-49],[36,-110],[40,-121],[6,-22],[14,-56],[0,-1],[16,-60],[0,-2],[2,-5],[1,-4],[2,-5],[1,-2],[16,-37],[6,-12],[10,-31],[6,-53],[0,-4],[1,-5],[5,-33],[0,-1],[1,-6],[1,-5],[1,-6],[1,-2],[1,-37],[3,-72],[7,-42],[2,-12],[0,-24],[0,-23],[0,-39],[-7,-62],[-15,0],[-30,22],[-32,11],[-3,1],[-14,-9],[-2,-4],[-21,-34],[-6,-10],[-5,-20],[-8,-31],[-10,-36],[-10,-74],[-2,-55],[2,-43],[10,-63],[14,-95],[9,-65],[18,-139],[16,-89],[4,-21],[6,-72],[0,-47],[-1,-19],[-7,-85],[0,-3],[-1,-2],[-3,-16],[-6,-28],[-6,-10],[-13,-24],[-9,-33],[-2,-36],[-1,-17],[0,-1],[19,-63],[16,-30],[17,-63],[2,-24],[-2,-20],[9,-91],[11,-51],[0,-26],[1,-141],[1,-50],[-3,-6],[-7,-48],[-11,-143],[-10,-51],[-27,-84],[0,-1],[-1,-6],[-5,-36],[-1,-2],[0,-3],[0,-89],[0,-78],[2,-56],[12,-105],[1,-3],[15,-130],[12,-96],[7,-83],[-3,-40],[-5,-26],[-24,-68],[-37,-63],[-14,-29],[-10,-21],[-13,-37],[-4,-11],[-10,-28],[-16,-62],[-4,-27],[-5,-32],[-13,-84],[-2,-7],[-12,-47],[-34,-59],[-51,-90],[-6,-7],[-2,-2],[-12,-15],[-26,-12],[-25,20],[-51,23],[-23,10],[-91,-90],[-4,-5],[-2,4],[-29,-3],[-11,-4],[-12,-3],[-13,-11],[-21,-22],[-11,-13],[-5,-7],[-2,-2],[-2,-3],[-31,-51],[-15,-19],[-11,-14],[-4,-5],[-9,-9],[-4,-4],[-2,-2],[-20,-20],[-7,-9],[-8,-10],[-32,-43],[-6,-11],[-5,-7],[-16,-37],[-8,-54],[-1,-56],[-2,-38],[0,-12],[-1,-26],[-1,-21],[0,-8],[-4,-28],[-4,-26],[-5,-45],[-2,-17],[-1,-3],[-8,-44],[-11,-37],[-15,-29],[-16,-29],[-2,-6],[-5,-11],[-3,-9],[-1,-7],[-7,-29],[-2,-20],[-1,-16],[0,-7],[1,-73],[0,-4],[4,-68],[0,-9],[-4,-65],[-5,-80],[2,-37],[11,-87],[7,-38],[3,-17],[9,-29],[16,-51],[11,-44],[11,-43],[3,-24],[3,-24],[2,-18],[1,-21],[2,-22],[0,-13],[0,-57],[1,-40],[3,-54],[1,-31],[2,-46],[0,-23],[-1,-42],[0,-10],[-1,-56],[0,-51],[4,-47],[4,-40],[5,-40],[5,-40],[7,-38],[3,-17],[8,-29],[17,-36],[18,-33],[2,-3],[8,-15],[16,-37],[18,-36],[22,-55]],[[43164,80286],[-34,-4],[-89,8],[-147,7],[-86,7],[-31,0],[-42,4],[-122,-4],[-33,0],[-34,4],[-94,11],[-83,7],[-11,4],[-29,0],[-44,3],[-60,8],[-22,0],[-107,0],[-25,3],[-53,4],[-62,4],[-34,0],[-33,3],[-16,0],[-26,4],[-22,0],[-18,0],[-23,4],[-62,0],[-17,0],[-48,3],[-3,1],[-26,3],[-52,3],[-15,4],[-28,0],[-21,4],[-13,3],[-65,4],[-64,11],[-17,4],[-52,3],[-21,0],[-26,4],[-108,14],[-46,4],[-75,7],[-39,8],[-34,-4]],[[40952,80439],[-37,11],[-31,4],[-1,0],[-24,0],[-20,3],[-52,8],[-64,7],[-37,3],[-39,4],[-71,7],[-21,0],[-30,4],[-15,-4],[-50,8],[-125,14],[-26,-11],[-48,4],[-2,0],[-101,7],[-20,0],[-36,4],[-1,0],[-80,7],[-41,7],[-67,-3],[-47,11],[-23,0],[-17,3],[-52,4],[-71,7],[-16,0],[-65,4],[-37,4],[-37,3],[-60,4],[-1,0],[-98,7],[-22,0],[-26,4],[-47,3],[-11,0],[-59,8],[-39,0],[-53,3],[-33,4],[-30,4],[-32,0],[-37,3],[-60,4],[-21,4],[-20,0],[-19,3],[-65,4]],[[28342,82646],[20,-8],[20,-14],[24,-26],[10,-22],[10,-18],[12,-3],[19,-15],[20,-36],[17,-15],[14,-33],[10,-36],[13,-33],[12,-36],[19,-26],[12,-14],[16,-19],[11,-21],[22,-26],[15,4],[11,11],[22,11],[15,-26],[5,-6],[11,-16],[15,-11],[23,-14],[16,-37],[10,-40],[1,-3],[12,-51],[20,-37],[15,-25],[12,-18],[20,-48],[14,-7],[9,-37],[15,-21],[15,-33],[-2,-37],[7,-61],[5,-55],[6,-40],[14,-62],[-1,-47],[-2,-59],[9,-36],[9,-44],[13,-14],[10,-48],[8,-87],[10,-33],[23,11],[15,7],[20,-18],[12,-7],[23,18],[23,-25],[18,-4],[17,-40],[12,-4],[6,-43],[20,-40],[9,-30],[-11,-58],[-59,-280],[-42,-193],[-15,-73],[-16,-73],[-17,-76],[-16,-84],[-19,-80],[-50,-237],[-7,-33],[-67,-324],[-31,-145],[-47,-230],[-44,-211],[-45,-212],[-3,-14],[-17,-76],[-9,-47],[-2,-13],[-10,-53],[-33,-156],[-52,-244],[-107,-507],[-87,-422]],[[28377,77202],[-39,40],[-18,18],[-11,26],[-19,87],[-12,18],[-17,48],[-13,3],[-31,-3],[-26,-11],[-26,-22],[-14,-18],[-18,14],[-13,-11],[-12,-3],[-22,3],[-9,30],[-8,36],[-1,62],[-9,33],[-17,14],[-48,0],[-18,40],[-21,66],[-57,-48],[-17,11],[-7,33],[-39,7],[-25,19],[-45,-8],[-23,8],[-19,3],[-21,22],[-21,7],[-12,0],[-14,11],[-9,29],[-18,15],[-2,51],[-22,29],[-11,37],[-9,54],[2,51],[-2,51],[-5,44],[2,47],[-1,69],[-35,59],[-2,54],[-51,62],[-21,26],[-30,36],[0,1],[-12,13],[-1,1],[-92,118],[-2,2],[-1,-2],[-16,-42],[-16,-51],[-221,-659],[0,-2],[-106,-315],[-14,-43],[-18,-54],[-7,-23],[-57,-167],[-10,-26],[-25,-77],[-4,-14]],[[26839,77111],[-32,-91],[-11,-33],[-4,-11],[-87,-258],[-29,-88],[-57,-171],[-5,-43],[3,-59],[10,-32],[15,-22],[8,-51],[3,-3],[12,-12],[11,-25],[12,-44],[17,-36],[10,-48],[-3,-36],[0,-40],[2,-95],[-17,-25],[-33,-113],[-16,-58],[-19,0],[-16,-8],[-18,-11],[-11,-58],[-13,4],[-14,-37],[-19,-69],[-11,-18],[-15,-36],[-13,14],[-15,4],[-12,0],[-15,-18],[-13,-41],[-9,-40],[-14,-14],[-14,-26]],[[26407,75363],[-198,389],[-4,8],[-77,139],[-24,43],[-30,55],[-13,22],[-32,62],[-12,20],[-9,16],[-146,272],[0,1],[-48,91],[0,1],[0,1],[-39,191],[-18,91],[-101,499],[-113,812],[-6,44],[-4,43],[0,73],[6,58],[8,55],[0,73],[14,36],[7,44],[8,51],[10,22],[5,9],[12,24],[11,-4],[26,29],[15,36],[-2,41],[-11,58],[3,43],[6,81],[12,-15],[11,-22],[17,-29],[16,-18],[11,-7],[12,7],[14,25],[14,26],[1,40],[-9,47],[-6,40],[-8,44],[-14,98],[-8,48],[-12,65],[-9,62],[-12,102],[-6,47],[-11,69],[-19,121],[-16,102],[-16,94],[-14,80],[-15,80],[-19,113],[-25,135],[-8,40],[-7,44],[-5,40],[-10,76],[-6,44],[-5,36],[-9,73],[-27,175],[-9,51],[-9,55],[-7,47],[-12,55],[-15,51],[-6,47],[-6,33],[1,69],[6,36],[10,55],[4,36],[2,62],[-7,44],[-9,44],[-7,40],[-9,40],[-9,32],[-9,26],[-13,22],[-14,36],[-5,69],[0,40],[1,40],[-2,59],[-3,47],[-1,40],[8,77],[3,58],[-14,36],[-13,33],[-10,33],[-13,43],[-4,51],[0,55],[0,5],[0,2]],[[25292,82343],[2,66],[3,30],[14,38],[15,23],[21,21],[1,2],[19,16],[15,14],[17,11],[9,32],[0,1],[13,30],[15,25],[14,18],[20,18],[23,4],[15,11],[7,32],[7,40],[4,37],[11,53],[16,59],[2,4],[14,59],[0,9],[0,13],[-2,44],[1,43],[10,43],[5,29],[0,3],[9,29],[4,-2],[14,-19],[16,-9],[1,0],[16,11],[23,-15],[20,-3],[11,-4],[9,-13],[2,-3],[5,-9],[5,-8],[16,-33],[16,-25],[10,-44],[9,-22],[10,-13],[3,-1],[14,-4],[22,-11],[6,2],[5,2],[2,6],[12,36],[8,17],[5,10],[1,4],[5,10],[2,7],[4,12],[9,40],[1,2],[4,19],[19,134],[1,10],[1,19],[-3,23],[3,16],[80,374],[29,131],[32,157],[7,32],[4,19],[18,86],[34,160],[39,180],[21,102],[25,112],[17,74],[2,11],[19,95],[10,39],[36,182],[7,34],[20,98],[16,75],[37,180],[78,372],[27,126],[10,45],[0,2],[6,33],[55,261],[22,103],[19,92],[11,53],[67,320],[20,90],[20,86],[8,33],[34,149],[16,72],[11,48],[45,186],[37,156],[23,94],[11,47],[15,56],[60,291],[11,54],[41,201],[89,425],[4,19],[9,44],[21,84],[1,3]],[[71263,85966],[-46,-236],[0,-4],[-33,-160],[-154,-743],[-79,-382],[-46,-223],[-51,-251],[-26,-124],[-25,-123],[-11,-55],[-17,-80],[-21,-109],[-3,-12],[-72,-345],[-16,-69],[-101,-481],[-23,-106],[-26,-130],[-1,-4],[-12,-58],[-22,-95],[-20,-98],[0,-1],[-67,-320],[-14,-69],[-15,-73],[-15,-65],[-44,-208],[-23,-116],[-27,-124],[-26,-128],[-12,-51],[-11,-54],[-9,-48],[-30,-145],[-12,-55],[-9,-44],[-4,-19],[-6,-24],[-21,-106],[-26,-124],[-27,-123],[-50,-241],[-43,-207],[-15,-70],[-22,-116],[-72,-350],[-25,-112],[-33,-158],[-2,-10],[-54,-258],[-15,-70],[-1,-5],[-34,-166],[-26,-120],[-11,-51],[-32,-149],[-8,-40],[-57,-277],[-41,-189],[-20,-95],[-9,-44],[-11,-58],[-22,-102],[-35,-164],[-19,-94],[-12,-62],[-33,-190],[-15,-80],[-7,-43],[-6,-40],[-8,-41],[-16,-91],[-8,-43],[-16,-102],[-21,-115],[0,-2],[-14,-69],[-51,-266],[-10,-51],[0,-2],[-58,-307],[-11,-47],[-5,-33],[-33,-164],[-18,-102],[-8,-36],[-59,-306],[-12,-66],[-19,-98],[-27,-142],[-21,-102],[-13,-73],[-10,-55],[-3,-13],[-6,-34],[-7,-36],[-20,-99],[-17,-80],[-7,-36],[-10,-55],[-41,-207],[-30,-164],[-35,-186],[-17,-84],[-17,-87],[-22,-113],[-11,-62],[-10,-54],[-17,-88],[-24,-142],[-23,-142],[-1,-2],[-55,-325],[-29,-172],[-30,-167]],[[68460,71959],[-10,102],[0,55],[0,1],[4,81],[3,70],[2,55],[-5,30],[-1,6],[-2,5],[-18,71],[-6,12],[0,1],[-4,4],[-5,1],[-5,25],[-17,87],[-16,82],[-6,16],[-19,25],[-22,71],[-1,5],[-2,5],[-24,90],[-3,30],[-5,46],[-6,83],[-8,126],[-2,24],[-2,12],[-13,84],[-12,78],[-23,96],[-2,14],[-2,23],[2,10],[-1,55],[-1,42],[-22,95],[-18,76],[-8,29],[-11,48],[-25,98],[-11,44],[-13,42],[-28,32],[-2,4],[-26,37],[-58,172],[-13,90],[-47,136],[-31,104],[-6,21],[-6,19],[-2,24],[-5,41],[-19,33],[-51,89],[-15,24],[-6,6],[-7,-2],[-8,-9],[-5,-8],[-7,-25],[-1,-5],[-2,-5],[-1,-1],[-2,-6],[-18,-38],[-5,-2],[-6,5],[-40,35],[-2,1],[-4,3],[-6,3],[-24,12],[-8,5],[-26,25],[-24,23],[-11,10],[-14,85],[-12,71],[-52,141],[-2,5],[-18,35],[-1,1],[-3,1],[-77,37],[-3,2],[-29,42],[-2,9],[-14,92],[0,77],[-5,124],[-9,266],[-2,55],[-6,163],[-20,15],[-193,84],[-27,11],[-75,32],[-75,37],[-25,7],[-20,11],[-1,1],[-26,17],[-49,204],[-8,29],[-15,51],[-7,29],[-13,48],[-36,127],[-37,142],[-36,130],[-7,27],[-33,123],[-17,66],[-14,60],[-7,27],[-34,121],[-18,69],[-29,120],[-50,73],[-78,105],[-19,37],[-38,40],[-22,33],[-27,36],[-12,14],[0,1],[-17,25],[-69,87],[-17,26],[-57,76],[-80,110],[-71,94],[-60,84],[-46,62],[-14,20],[-8,10],[-1,3],[-68,89],[-1,2],[-18,18],[-15,22],[-12,14],[-29,29],[-28,33],[-25,33],[-28,29],[-69,87],[-21,15],[-32,53],[-3,5],[-85,91],[-20,22],[-11,11],[-26,29],[-14,18],[-47,62],[-30,19],[-88,112]],[[48369,87954],[2,-94],[-1,-128],[-2,-196],[0,-90],[0,-2],[-5,-404],[0,-58],[-1,-69],[0,-9],[-1,-57],[-1,-80],[0,-54],[-2,-226],[-2,-200],[0,-59],[-3,-196],[-1,-95],[-1,-131],[-1,-120],[-1,-69],[-1,-99],[-4,-302],[0,-95],[3,-145],[4,-73],[-2,-189],[0,-40],[-1,-80],[-1,-121],[-4,-51],[-7,-36],[-3,-351],[0,-2],[-1,-120],[-1,-99],[-1,-105],[-1,-48],[-3,-193],[0,-91],[-1,-72],[0,-51],[-2,-124],[0,-48],[-1,-69],[0,-80],[-1,-76],[-3,-211],[0,-55],[-1,-36],[0,-40],[-1,-94],[0,-1],[0,-40],[-1,-40],[0,-59],[-1,-69],[0,-54],[-1,-102],[-1,-110],[-1,-58],[-1,-40],[-2,-222],[-4,-473],[-3,-146],[-2,-240],[0,-48],[-1,-112],[-4,-437],[-3,-161],[-2,-196],[0,-37],[-1,-109],[-1,-116],[-1,-95],[-2,-109],[-1,-168],[-1,-76],[-1,-84],[0,-47]],[[48281,78972],[-19,11],[-34,14],[-51,26],[-7,3],[-56,26],[-26,14],[-21,8],[-44,21],[-38,19],[-33,18],[-67,33],[-1,0],[-51,25],[-62,29],[-42,22],[-99,47],[-95,48],[-84,40],[-37,18],[-31,15],[-24,11],[-34,18],[-44,22],[-64,29],[-20,11],[-24,11],[-24,10],[-52,26],[-20,11],[-11,0],[-21,0],[-75,0],[-29,0],[-1,0],[-11,0],[-12,0],[-14,0],[-14,0],[-14,0],[-48,0],[-18,0],[-21,0],[-74,0],[-70,0],[-35,0],[-34,0],[-17,0],[-36,0],[-18,0],[-113,0],[-12,0],[-23,0],[0,-98],[0,-40],[0,-255],[0,-59],[0,-51],[0,-91],[0,-36],[0,-80],[0,-73],[-1,-191],[0,-9],[0,-106],[-41,0],[-5,0],[-23,-3],[-44,0],[-43,-8],[-25,4],[-29,-4],[-25,0],[-33,0],[-5,0],[-18,0],[-35,0],[-16,4],[-16,0],[-31,0],[-27,0],[-50,0],[-14,0],[-84,-4],[-32,0],[-26,0],[-18,0],[-92,4],[-19,0],[-16,-4],[-12,0],[-18,0],[-19,0],[-43,0],[-13,0],[-12,0],[-14,0],[-38,0],[-20,0],[-15,0],[-26,4],[-19,0],[-13,0],[-57,0],[-73,0],[-62,4],[-7,0],[-1,-208],[-81,-11],[-2,0],[-8,0],[-11,0],[-111,7],[-19,0],[-12,0],[-28,-29],[-13,-18],[-17,-18],[-26,-29],[-117,-139],[-15,-14],[-27,-33],[-31,-36],[-39,-44],[-27,-33],[-32,-36],[-12,-15],[-23,-25],[-34,-37],[-17,-18],[-24,-25],[-24,-26],[-35,-40],[-30,-33]],[[44311,77606],[-6,9],[-1,1],[-43,36],[-10,17],[-2,3],[-61,104],[-25,34],[-19,26],[-23,42],[-10,30],[-11,30],[-40,88],[-3,0],[-1,0],[-19,40],[-7,22],[-18,59],[-4,10],[-6,44],[-3,52],[1,11],[33,191],[5,12],[35,77],[19,38],[1,2],[8,27],[4,58],[-5,82],[-1,20],[-1,5],[-8,52],[-4,28],[-27,174],[-2,68],[-2,27],[0,8],[-2,8],[-7,33],[-8,31],[-40,96],[-28,48],[-2,-1],[-1,-2],[-40,50],[-24,42],[-13,30],[-1,4],[-13,33],[-4,11],[-25,65],[-8,18],[-23,33],[-14,20],[-22,51],[-3,12],[-16,67],[-7,28],[-7,38],[-4,22],[-1,5],[-1,15],[-9,68],[-2,5],[-14,53],[-36,77],[-13,47],[-17,56],[-13,70],[-25,128],[-9,48],[-6,67],[0,116],[-5,62],[-39,146],[-14,26],[-2,3],[-6,0],[-41,0],[-5,-1],[-35,-40],[-19,-38],[-11,-37],[-8,-43],[-7,-75],[14,-149],[-3,-45],[-5,-21],[-20,-37],[0,-1],[-15,-17],[-16,-20],[-26,-36],[-30,-56],[-19,-61],[-12,-23],[-2,-4],[-15,-10],[-16,3],[-21,15],[-24,51],[-13,33],[-18,36]],[[54046,87375],[-1,-80],[-1,-54],[-2,-124],[-1,-62],[-2,-69],[-2,-146],[-3,-237],[-4,-138],[-3,-47],[-1,-164],[-6,-430],[-3,-193],[-4,-189],[-2,-106],[0,-65],[-1,-51],[-1,-102],[-3,-160],[-3,-204],[-2,-142],[0,-66],[-2,-54],[0,-55],[-1,-51],[-1,-233],[-2,-44],[0,-87],[-2,-168],[0,-76],[-2,-168],[-1,-80],[-1,-171],[-1,-51],[-2,-76],[-23,-15],[-13,-29],[0,-84],[3,-36],[27,-69],[4,-51],[0,-77],[-1,-47],[-1,-109],[-1,-73],[-1,-51],[0,-40],[0,-58],[-1,-51],[0,-1],[0,-39],[-2,-66],[0,-2],[0,-67],[-1,-84],[-1,-135],[-1,-142],[-1,-102],[-1,-102],[-1,-105],[1,-55],[0,-6],[0,-77],[-1,-51],[0,-128],[-2,-120],[0,-40],[0,-102],[-1,-139],[0,-7],[0,-94],[0,-88],[-1,-211],[0,-156],[0,-73],[0,-36],[0,-26],[0,-55],[-1,-87],[-1,-423],[0,-123],[0,-117],[0,-113],[-5,-87],[-3,-55],[3,-65],[3,-44],[1,-324],[-1,-106],[0,-5],[-3,-220],[0,-2],[0,-104],[-1,-339],[-1,-43],[0,-131],[-1,-106],[0,-106],[-1,-58],[-1,-105],[0,-99],[-1,-127],[-3,-262],[0,-48],[0,-225],[0,-40],[-1,-84],[-4,-412],[0,-116],[-1,-128],[0,-61],[-1,-48],[1,-51],[0,-69],[0,-58],[-1,-40],[0,-69],[-3,-146],[1,-37],[0,-193],[-2,-69],[-2,-58]],[[53938,74930],[-64,7],[-130,19],[-86,10],[-53,8],[-26,3],[-42,8],[-53,7],[-35,4],[-74,11],[-31,3],[-22,4],[-18,3],[-47,8],[-27,3],[-27,4],[-36,7],[-19,0],[-39,4],[-93,14],[-17,0],[-54,11],[-88,11],[-87,11],[-40,8],[-25,3],[-14,0],[-30,4],[-15,3],[-24,4],[-13,0],[-16,4],[-48,7],[-14,0],[-15,4],[-28,3],[-1,0],[-14,4],[-22,0],[-15,4],[-11,0],[-12,0],[-18,3],[-89,15],[-79,11],[-64,7],[-56,9],[-10,2],[-27,4],[-12,0],[-53,7],[-43,7],[-79,11],[-30,4],[-130,18],[-46,4],[-13,3],[-17,4],[-65,7],[-39,7],[-57,8],[-43,7],[-15,0],[-75,11],[-61,7],[-16,0],[-18,4],[-29,3],[-104,15],[-25,4],[-2,0],[-23,3],[-165,22],[-19,4],[-15,0],[-14,3],[-18,0],[-36,8],[-20,3],[-12,0],[-11,0],[-6,0],[-25,4],[-27,4],[-23,3],[-101,15],[-20,0],[-30,7],[-66,7],[-34,4],[-23,4],[-1,0],[-15,3],[-133,19],[-31,3],[-62,7],[-15,4],[-19,0],[-58,7],[-49,8],[-46,7],[-46,7],[-19,0],[-46,8],[-27,3],[-27,4],[-18,3],[-18,4],[-18,0],[-33,4],[-66,11],[-32,3],[-18,0],[-39,8],[-14,0],[-24,3],[-25,4],[-16,3],[-48,4],[-27,4],[-21,3],[-14,3],[-10,1],[-28,4],[-24,3],[-12,0],[-14,4],[-34,4],[-20,3],[-23,0],[-26,4],[-24,4],[-20,3],[-46,7],[-18,0],[-18,4],[-18,4],[-20,0],[-20,3],[-33,4],[-47,7],[-21,4],[-16,0],[-36,7],[-18,0],[-25,4],[-39,7],[-2,0],[-25,0],[-21,4],[-14,0],[-14,3],[-25,4],[-26,4],[-13,0],[-29,3],[-26,4],[-17,4],[-19,3],[-13,0],[-8,0],[-13,4],[-11,0],[-26,4],[-8,2],[-6,1],[-14,0],[-25,4],[-11,0],[-17,3],[-17,4],[-17,0],[-13,4],[-14,0],[-18,3],[-18,0],[-36,8],[-17,0]],[[48242,75695],[-3,185],[4,62],[0,84],[0,35],[0,165],[2,44],[0,120],[3,215],[0,36],[2,48],[3,156],[0,110],[2,36],[1,55],[1,101],[2,44],[0,77],[1,109],[1,73],[0,54],[1,80],[0,55],[4,262],[2,51],[1,69],[-1,48],[2,134],[2,37],[0,98],[1,88],[1,98],[0,60],[0,49],[1,55],[4,87],[1,58],[0,55],[1,84]],[[57154,87463],[1,-99],[-1,-47],[-1,-58],[-2,-95],[-2,-36],[-1,-77],[-2,-207],[-1,-44],[0,-178],[1,-150],[0,-23],[0,-20],[-2,-288],[-1,-9],[0,-31],[0,-66],[-2,-127],[-1,-109],[-1,-135],[0,-3],[-1,-143],[0,-113],[-1,-83],[0,-48],[-1,-69],[0,-73],[-1,-91],[0,-76],[0,-47],[0,-37],[-1,-124],[-3,-258],[-1,-186],[0,-124],[-1,-123],[-1,-126],[0,-31],[-1,-62],[0,-62],[0,-69],[-1,-76],[-1,-88],[0,-54],[0,-51],[-2,-48],[0,-47],[-1,-77],[0,-43],[0,-91],[0,-182],[-2,-99],[-1,-265],[-1,-84],[-1,-142],[1,-73],[-1,-66],[0,-69],[0,-51],[-1,-62],[0,-17],[1,-19],[-3,-62],[1,-23],[1,-17],[-2,-36],[-1,-48],[0,-58],[0,-95],[-1,-102],[-1,-142],[-1,-111],[0,-1],[-1,-37],[-6,-288],[-3,-171],[-1,-58],[0,-3],[0,-77],[1,-186],[0,-131],[-1,-84],[0,-105],[-2,-84],[0,-54],[-2,-186],[0,-73],[-1,-62],[-1,-105],[-1,-92],[-1,-98],[0,-69],[-1,-120],[-2,-139],[-1,-131],[-1,-62],[0,-61],[-1,-40],[-1,-88],[0,-124],[0,-5],[1,-93],[0,-69],[-1,-80],[0,-69],[0,-59],[-1,-138],[-1,-175],[0,-167],[-1,-262],[0,-66],[-2,-36],[0,-62],[-1,-208],[0,-9],[0,-56],[-1,-215],[-1,-66],[0,-149],[-1,-51],[0,-87],[-1,-223],[0,-80],[-1,-40],[0,-102],[0,-54],[0,-62],[-3,-87],[0,-1],[0,-50],[0,-37],[0,-8],[-1,-134],[0,-47],[-1,-84],[0,-113],[5,-137],[11,-17],[21,-32],[1,-2],[4,-9],[10,-24],[4,-12],[20,-65],[3,-9],[6,-36],[1,-14],[2,-28],[-4,-44],[-13,-161],[-5,-69],[7,-67],[18,-179],[19,-92],[8,-18],[5,-13],[9,-34],[23,-89],[17,-98]],[[57240,74096],[-6,-87],[-1,-14],[-8,-49],[-2,-16],[-3,-63],[3,-43],[16,-105],[1,-88],[-4,-22],[-4,-52],[-10,-108],[-2,-22],[4,-29],[5,-44],[5,-17],[8,-25],[5,-17],[10,-14],[71,-61],[11,-5],[5,-2],[2,-6],[35,-97],[3,-8],[-11,-185],[-22,-4],[-26,0],[-17,0],[-116,0],[-85,0],[-59,0],[-39,0],[-1,0],[-18,-4],[-49,0],[-86,0],[-227,-3],[-55,0],[-15,3],[-19,-3],[-28,0],[-12,0],[-44,0],[-82,0],[-30,0],[-13,0],[-84,0],[-17,0],[-83,0],[-38,0],[-24,-4],[-11,0],[-25,0],[-25,0],[-11,0],[-16,0],[-16,0],[-17,0],[-17,4],[-81,0],[-29,0],[-15,0],[-28,0],[-71,-4],[-14,0],[-11,0],[-38,0],[-34,0],[-16,0],[-20,0],[-18,0],[-14,0],[-73,0],[-32,0],[-106,-4],[-39,0],[-65,-3],[-22,0],[-17,0],[-29,0],[-30,0],[-55,0],[-14,0],[-12,0],[-19,0],[-25,0],[-158,0],[-21,0],[-17,0],[-44,0],[-56,0],[-74,-4],[-18,0],[-69,0],[-16,0],[-36,0],[-42,0],[-22,0],[-88,-4],[-25,0],[-61,0],[-28,0],[-21,0],[-20,0],[-61,-3],[-60,0],[-12,0],[-16,0],[-29,0],[-35,0],[-28,-4],[-29,4]],[[53933,72884],[-1,105],[0,164],[0,100],[0,2],[1,157],[2,243],[0,1],[0,62],[0,83],[0,77],[0,80],[0,65],[1,226],[0,44],[0,40],[0,62],[-3,98],[3,91],[1,153],[0,55],[1,138]],[[85745,87463],[-2,-25],[-6,-121],[7,-71],[2,-24],[-14,-109],[-21,-120],[-43,124],[-3,145],[-41,-65],[-39,-128],[-43,-174],[-9,-49],[-8,-42],[-5,-44],[-4,-36],[-1,-52],[0,-50],[-8,-80],[-7,-106],[-10,-45],[-8,-35],[-39,-62],[-7,-61],[-9,-85],[0,-7],[0,-124],[19,-156],[18,-91],[-17,-51],[-22,-80],[-21,-135],[-1,-193],[-6,-135],[10,-178],[-5,-88],[20,-120],[-16,-109],[-7,-109],[-10,-120],[1,-197],[-7,-157],[16,-156],[6,-175],[17,-113],[9,-80],[1,-102],[10,-73],[13,-87],[26,-69],[22,-51],[15,-69],[12,-81],[8,-76],[14,-98],[21,-135],[30,-160],[6,-113],[14,-88],[18,-51],[24,-65],[14,-87],[25,-88],[-6,-222],[-6,-98],[-9,-91],[-4,-91],[-6,-59],[3,-76],[-10,-84],[4,-182],[12,-135],[9,-91],[7,-91],[13,-98],[18,-120],[14,-58],[27,-91],[26,-139],[18,-62],[30,-51],[27,-18],[26,-25],[32,-66],[-1,-10],[-2,-106],[-9,-91],[6,-121],[18,-87],[9,-113],[2,-113],[0,-83],[6,-88],[2,-135],[1,-167],[-3,-102],[-17,-33],[-20,-11],[-1,-1],[-26,-82],[-12,-35],[-13,-37],[0,-1],[53,14],[22,0],[32,26],[38,58],[15,102],[26,4],[29,-29],[35,-30],[38,-36],[18,-73],[14,-91],[4,-76],[0,-2],[5,-97],[7,-142],[-13,-145],[-40,-146],[-27,-84],[-39,-105],[-33,-95],[-41,-91],[-22,-44],[-22,-14],[-28,-22],[-27,-44],[-31,-43],[-26,-66],[-24,-58],[-22,-58],[-23,-55],[-23,-98],[-19,-80],[-19,-116],[-6,-34],[-1,-41],[0,-46],[-5,-102],[-3,-142],[-7,-128],[-27,-51],[-4,-3],[-39,-40],[-35,-58],[-10,-121],[10,-174],[22,-113],[0,-91],[0,-8],[-50,30],[-26,3],[-25,-37],[-4,-7],[-12,-53],[-7,-38],[-29,-7],[-2,1],[-24,6],[-28,-43],[-33,-4],[-17,-11],[-11,-7],[8,-29],[8,-29],[12,-15],[17,-22],[39,77],[25,-3],[11,-1],[24,-36],[4,16],[19,64],[25,14],[10,53],[4,20],[38,-47],[27,7],[29,19],[5,3],[5,-30],[12,-79],[3,36],[6,68],[3,34],[-1,117],[-20,105],[-36,48],[1,31],[3,49],[2,106],[0,14],[38,-66],[22,11],[22,11],[26,26],[29,43],[34,53],[5,9],[7,14],[22,48],[28,7],[19,-123],[11,98],[8,73],[10,80],[3,25],[32,33],[50,-62],[32,-58],[-1,-113],[-4,-73],[-3,-62],[-9,-83],[-17,-91],[-10,-59],[-2,-48],[-1,-39],[-6,-49],[-7,-60]],[[85974,75797],[-6,-2],[-5,-2],[-17,4],[-20,-4],[-6,17],[-17,9],[-21,-12],[-18,-23],[-74,-142],[-20,-74],[-21,-79],[-6,-21],[-2,-8],[-18,-50],[-53,-495],[-31,-374],[-37,-185],[-54,-173],[-45,-151],[-30,-83],[-23,-52],[-31,-30],[-28,-91],[-24,-77],[-31,-23],[-15,-12]],[[85321,73664],[-1,-1]],[[85321,73664],[0,14],[1,10],[-1,24],[0,28],[-31,-19],[-55,-19],[-25,5],[-29,19],[-25,14],[-17,17],[-22,24],[-24,50],[-47,85],[-39,-36],[-13,-6],[-60,120],[-44,158],[-5,40],[-25,101],[-17,52],[-19,37],[-31,40],[-68,54],[-9,-4],[-36,24],[-44,18],[-54,-23],[-49,-34],[-19,-23],[-29,-59],[-20,-68],[-12,-82],[-5,-58],[0,-65],[-5,-67],[10,-80],[7,-27],[24,-152],[16,-119],[10,-145],[2,-85],[-11,-157],[-19,-106],[-49,-192],[-39,-105],[-36,-84],[-43,-34],[-28,-99],[-28,-41],[-25,-73],[-46,-215],[-26,-45],[-18,-61],[-21,-52],[-41,-141],[-33,-111],[-95,-61],[-32,-20],[-78,17],[-4,29],[22,101],[-11,17],[-9,28],[-104,128],[-27,26],[-1,10],[4,30],[15,11],[31,26],[35,55],[22,77],[5,62],[-1,25],[-11,43],[-11,24],[-12,15],[-56,34],[-15,45],[-2,34],[17,246],[45,130],[9,51],[3,31],[-4,49],[-6,35],[-24,102],[-5,53],[3,40],[5,25],[40,68],[20,45],[10,32],[6,53],[-9,51],[-8,18],[-16,18],[-23,12],[-20,19],[-27,43],[-11,43],[-7,50],[-6,124],[1,60],[-7,54],[-10,33],[-23,23],[-1,1],[-34,38],[-16,60],[-11,68],[-42,339],[-37,122],[-44,71],[-164,103],[-23,-11],[-30,-53],[-36,-116],[-1,-82],[-32,-98],[-26,-44],[-57,-98],[-16,-45],[-6,-15],[1,-37],[-9,-19],[-33,-38],[-59,-2],[-17,0],[-34,-57],[-79,-167],[-12,-36],[-7,-85],[-12,7],[-8,32],[-6,40],[-19,61],[-23,7],[-15,-19],[-8,-71],[4,-44],[0,-65],[-8,-102],[-11,-55],[-25,-84],[-30,-59],[-18,-10],[-26,-14],[-12,-7],[-17,-33],[-26,-79],[-18,-38],[-17,14],[-15,54],[-11,43],[-12,16],[-39,20],[-33,-1],[-56,-73],[-34,-38],[-59,-67],[-15,-11],[-22,-2],[-28,14],[-18,24],[-33,50],[-41,63],[-7,22],[0,19],[25,51],[14,40],[9,88],[0,28],[-3,48],[-17,64],[-24,55],[-13,39],[2,27],[11,19],[2,3],[13,-1],[11,-1],[14,2],[10,11],[5,0],[5,0],[17,51],[62,111],[8,25],[2,26],[-9,47],[-33,63],[-24,87],[-8,60],[-1,29],[2,31],[6,10],[60,76],[15,6],[24,-17],[39,-105],[1,4],[7,30],[0,1],[1,5],[2,5],[0,1],[8,26],[4,10],[-25,83],[-7,50],[-1,28],[4,45],[7,24],[5,67],[-12,104],[-15,59],[-6,12],[-13,12],[-22,2],[-4,16],[8,37],[-1,18],[-3,58],[-51,200],[-19,104],[16,216],[-5,78],[-24,9],[-30,78],[-27,61],[-35,52],[-40,34],[-35,44],[-43,130],[-12,149],[0,6],[-16,-27],[-10,-18],[-12,-8],[-24,8],[-16,23],[-21,43],[-32,91],[-13,20],[-10,6],[-9,-14],[-4,-35],[2,-24],[9,-38],[34,-73],[6,-22],[2,-19],[-7,-43],[-23,-44],[-32,-35],[-11,-3],[-23,12],[-52,92],[-12,6],[-6,-11],[-3,-35],[4,-86],[-7,-66],[-11,-22],[-11,-8],[-10,5],[-7,-9],[-23,-32],[-53,-74],[-2,-96],[-9,-19],[-9,5],[-45,130],[-32,132],[-10,25],[-31,-10],[-11,-11],[-25,-28],[-65,-96],[-9,-13],[-43,-62],[-8,-11],[-24,-34],[-5,-2],[-31,21],[-12,25],[-10,38],[-5,35],[-8,14],[-44,78],[-6,11],[-34,33],[-55,-47],[-19,6],[-24,14],[-112,24],[-87,122],[-50,24],[-1,-1],[-21,-26],[-21,-105],[-9,-88],[-7,-24],[-12,-22],[-19,-13],[-31,-3],[-73,42],[-33,32],[-23,30],[-90,181],[-17,46],[-14,54],[-6,35],[-32,254],[2,82],[13,21],[14,-7],[25,-50],[15,-12],[14,16],[4,35],[-2,33],[-13,49],[-33,86],[-11,43],[4,31],[15,20],[27,0],[60,-31],[14,16],[1,41],[-7,33],[-14,66],[-11,43],[-33,63],[-20,90],[0,42],[4,34],[33,72],[19,60],[6,24],[3,45],[-8,32],[-14,26],[-21,62],[-11,70],[-11,108],[6,53],[17,29],[19,17],[0,51],[-39,230],[-7,27],[-8,13],[-13,6],[-65,15],[-13,-2],[-24,-34],[-12,-36],[-25,-38],[-10,5],[-8,18],[-8,51],[7,66],[8,42],[31,136],[3,13],[1,2],[17,116],[10,91],[-8,51],[-4,39],[-18,23],[-27,51],[-42,139],[-2,9],[-28,42],[-27,5],[-55,-18],[-27,5],[-31,16],[-31,43],[-45,93],[-68,96],[-62,69],[-19,9],[-32,31],[-52,73],[-30,57],[-28,36],[-27,43],[-25,27],[-38,24],[-44,60],[-15,31],[-27,54],[-25,51],[-64,130],[-56,113],[-4,16],[-4,-2],[-15,17],[-48,75],[-37,52],[-85,113],[-47,56],[-5,-1],[-94,129],[-18,62],[-6,36],[-39,289],[-6,64],[-4,155],[1,64]],[[60608,87292],[-1,-37],[-15,-284],[-4,-76],[-1,-40],[-3,-37],[-3,-65],[-11,-219],[-18,-346],[-8,-160],[-9,-167],[-3,-44],[-3,-66],[-10,-171],[-10,-164],[-1,-54],[-6,-106],[-6,-91],[-5,-91],[0,-1],[-12,-246],[-11,-255],[-9,-168],[-7,-149],[-10,-193],[-2,-44],[0,-1],[-4,-53],[-3,-59],[-2,-43],[-4,-48],[0,-22],[0,-29],[-5,-43],[0,-48],[1,-43],[-8,-59],[-2,-43],[-4,-66],[-10,-171],[-2,-55],[-3,-54],[-3,-48],[-8,-163],[-3,-48],[-4,-73],[-5,-91],[-3,-72],[-6,-88],[-5,-73],[-4,-80],[-5,-87],[-6,-109],[-6,-106],[-2,-51],[-7,-120],[-3,-51],[-4,-44],[-4,-87],[-5,-69],[4,-59],[-7,-94],[-2,-55],[-5,-73],[-4,-72],[-4,-55],[-8,-164],[-4,-62],[-4,-62],[-2,-54],[-2,-40],[-6,-88],[-2,-36],[-12,-157],[-1,-8],[-5,-170],[-8,-120],[-11,-153],[-6,-84],[-2,-51],[-4,-51],[-1,-47],[-1,-44],[-7,-109],[-3,-52],[0,-3],[-6,-105],[0,-11],[-9,-179],[-4,-51],[-1,-8],[-6,-126],[-6,-92],[-12,-233],[-1,-61],[-3,-59],[-5,-73],[-8,-134],[-2,-42],[-2,-49],[-3,-48],[-3,-65],[-2,-51],[-4,-66],[-3,-43],[-3,-59],[-19,-225],[-2,-37],[-7,-73],[-5,-87],[-4,-66],[-7,-131],[-2,-34],[0,-2],[-9,-131],[-8,-113],[-4,-109],[-3,-44],[-3,-65],[-5,-117],[-1,-40],[-3,-55],[-1,-36],[-1,-23],[-3,-64],[0,-4],[-1,-58],[-4,-69],[-3,-51],[-14,-219],[-4,-76],[-5,-88],[-5,-84],[-4,-69],[-2,-40],[-4,-87],[-4,-80],[-2,-48],[-3,-58],[-3,-44],[-4,-109],[-6,-113],[-5,-83],[-2,-62],[-3,-55],[-2,-69],[-3,-47],[-3,-70],[-2,-40],[0,-1],[-4,-71],[-2,-48],[-3,-69],[-3,-44],[-2,-40],[-4,-87],[-2,-69],[-1,-8],[-3,-65],[-2,-40],[-6,-109],[-4,-91],[-8,-164],[-4,-77],[2,-40],[-4,-40],[-5,-54],[-3,-37],[-21,-269]],[[59867,73605],[-13,-4],[-30,-4],[-18,0],[-23,-3],[-16,0],[-13,0],[-35,-8],[-17,0],[-17,-3],[-12,-4],[-29,-3],[-32,-4],[-23,0],[-34,-4],[-13,-3],[-58,-8],[-32,-3],[-21,-4],[-57,-7],[-15,0],[-37,-4],[-30,-7],[-16,0],[-22,-4],[-76,-11],[-12,0],[-35,-3],[-7,0],[-18,3],[-50,15],[-30,11],[-16,3],[-24,8],[-63,18],[-14,7],[-14,0],[-30,11],[-30,11],[-19,4],[-32,11],[-36,11],[-14,3],[-14,4],[-17,3],[-16,8],[-36,-4],[-21,4],[-32,11],[-32,7],[-23,29],[-11,4],[-13,3],[-22,4],[-31,11],[-18,4],[-22,7],[-23,7],[-26,7],[-55,19],[-60,18],[-20,3],[-19,8],[-42,11],[-33,11],[-72,21],[-26,8],[-61,22],[-20,3],[-59,18],[-31,11],[-18,8],[-26,7],[-16,4],[-30,10],[-21,8],[-12,3],[-24,8],[-30,11],[-26,7],[-32,11],[-34,11],[-16,3],[-9,22],[-19,40],[-12,4],[-5,-51],[-24,7],[-29,11],[-17,4],[-24,7],[-20,7],[-11,4],[-25,7],[-12,4],[-32,11],[-87,29],[-28,7]],[[62885,81178],[-8,-91],[-2,-36],[-6,-62],[-4,-55],[-10,-120],[-13,-138],[-4,-50],[0,-9],[-2,-40],[3,-40],[0,-47],[-1,-109],[1,-66],[1,-94],[1,-99],[0,-167],[1,-102],[1,-106],[2,-2],[10,-16],[12,-22],[10,-18],[12,-15],[111,-160],[51,51],[21,15],[18,9],[4,2],[62,32],[62,30],[41,-179],[38,-171],[10,-47],[10,-44],[13,-55],[18,-80],[8,-33],[2,4],[17,18],[11,15],[23,7],[19,-11],[17,-22],[2,-2],[15,-19],[-11,-11],[-2,-106],[-5,-35],[-1,-12],[-35,-233],[-6,-53],[-2,-27],[-22,-208],[-18,-186],[-15,-143],[-1,-6],[-3,-36],[-8,-80],[-16,-157],[-9,-87],[-8,-73],[-11,-95],[0,-51],[-20,-91],[-42,-193],[-9,-54],[9,-41],[-18,-58],[-34,-98],[-11,-37],[-29,-87],[-8,-33],[-16,-58],[-18,-73],[-25,-80],[-9,-29],[-23,-73],[-15,-51],[-16,-54],[-41,-135],[-18,-15],[-25,-22],[-29,-18],[-15,-18],[-41,-160],[-8,-34],[-17,-67],[-1,-5],[-32,-126],[-4,-46],[0,-20],[2,-11],[-3,-22],[-60,25],[-64,36],[-28,15],[-34,22],[-28,22],[-16,7],[-61,44],[-22,-22],[-43,62],[-57,40],[-63,43],[-12,7],[0,1],[-43,29],[-19,-160],[-6,-48],[-6,-47],[-7,-62],[-4,-36],[-8,-55],[-20,-164],[-7,-62],[-11,-94],[-6,-44],[-10,-84],[-7,-51],[-14,-116],[-10,-84],[-7,-58],[-12,-84],[-9,-80],[-4,-51],[-10,-88],[-5,-50],[-8,-66],[-14,-117],[-8,-54],[-10,-49],[0,-2],[-10,-80],[-12,-80],[-5,-40],[-6,-48],[-1,-7],[-6,-44],[-13,-43],[-15,-55],[-35,7],[-19,-3],[-30,0],[-37,-4],[-29,0],[-51,3],[-8,1],[-21,0],[-11,0],[-51,0],[-14,0],[-44,3],[-47,0],[-37,0],[-52,33],[-21,-7],[-114,-26],[-15,4],[-12,4],[-13,3],[-21,4],[-2,0],[-26,0],[-71,7],[-21,4],[-38,-11]],[[61112,73776],[-27,-4],[-19,-3],[-15,0],[-11,-4],[-14,0],[-26,-4],[-15,0],[-32,-3],[-14,-4],[-5,0],[-11,0],[-20,-4],[-17,-3],[-13,0],[-17,-4],[-13,0],[-15,-4],[-13,0],[-20,-3],[-15,0],[-32,-4],[-14,-4],[-27,-3],[-15,0],[-4,-1],[-41,-6],[-67,-11],[-26,-4],[-25,0],[-15,-4],[-24,-3],[-30,-4],[-107,-14],[-21,0],[-5,0],[-23,-6],[-7,-2],[-13,0],[-12,0],[-10,-1],[-189,-28],[-18,0],[-29,-7],[-18,-4],[-14,-3],[-16,0],[-30,-8],[-16,-3],[-2,-1],[-25,-7],[-38,-3]],[[99317,59133],[-23,-62],[-20,44],[-17,116],[0,6],[-5,47],[0,1],[1,3],[0,1],[-1,1],[2,48],[-1,5],[-3,117],[-8,47],[1,6],[-1,41],[8,21],[10,26],[26,-3],[25,-165],[7,-35],[8,-39],[-5,-163],[-2,-9],[-1,-36],[-1,-18]],[[99739,66625],[-22,-15],[-26,29],[-35,4],[4,84],[25,36],[33,-55],[21,-83]],[[99739,66625],[20,40],[-9,87],[-22,66],[-20,109],[-20,73],[-15,113],[-33,58],[-35,55],[-22,21],[-25,40],[11,110],[-1,63],[-1,50],[4,83],[-27,73],[-39,77],[-21,116],[-36,26],[4,56],[4,71],[-5,35],[-14,89],[10,98],[17,73],[-53,55],[-4,56],[-3,27],[3,46],[4,74],[38,8],[-16,149],[-41,4],[8,60],[3,23],[26,30],[2,31],[3,41],[-10,106],[-14,-80],[-26,3],[-36,67],[-11,21],[-2,29],[-6,106],[7,25],[8,32],[4,15],[-23,26],[14,62],[13,84],[5,142],[-36,43],[-27,66],[-17,91],[18,124],[-10,98],[-31,104],[-7,23],[-31,128],[-24,87],[17,80],[46,8],[24,-19],[31,-105],[20,-102],[46,-219],[43,-240],[38,-211],[43,-171],[21,-110],[12,-83],[16,-102],[8,-73],[11,-91],[9,-113],[19,-84],[8,-83],[8,-62],[7,-88],[14,-91],[12,-98],[10,-87],[15,-84],[3,-80],[11,-113],[13,-109],[13,-153],[11,-95],[11,-98],[10,-110],[13,-123],[15,-186],[15,-160],[7,-146],[10,-98],[12,-120],[4,-121],[5,-240],[11,-167],[14,-171],[10,-135],[12,-142],[6,-98],[3,-99],[6,-131],[20,-160],[5,-113],[7,-95],[8,-109],[7,-138],[15,-139],[7,-174],[7,-70],[5,-127],[7,-69],[2,-102],[19,-164],[0,-120],[4,-124],[1,-146],[-9,-123],[3,-201],[0,-72],[-3,-172],[-9,-145],[-5,-149],[-4,-135],[-20,-204],[-8,-120],[-6,-88],[-10,-123],[-5,-132],[-14,-138],[-17,-156],[-9,-135],[-14,-131],[-13,-262],[-6,-113],[-13,-193],[-11,-135],[-8,-135],[-5,-80],[-10,-164],[-8,-102],[-6,-112],[-6,-135],[-6,-193],[-8,-84],[-2,-120],[-5,-160],[-7,-186],[-3,-135],[-6,-116],[-4,-69],[-4,-182],[-3,-161],[-3,-193],[1,-113],[-6,-142],[-4,-171],[-3,-145],[-2,-157],[1,-153],[-5,-120],[0,-146],[-5,-138],[-9,-138],[-9,-157],[-27,-295],[-32,-306],[-8,-72],[-9,-73],[-13,-117],[-9,-124],[-7,-76],[-2,-84],[-10,-135],[-11,-160],[-12,-109],[-6,-135],[-8,-116],[-9,-113],[-2,-77],[-10,-131],[-15,-156],[-15,-135],[-14,-135],[-11,-167],[-9,-146],[-8,-142],[-10,-204],[-9,-120],[-8,-102],[-5,-87],[-5,-102],[-8,-91],[-3,-88],[-7,-105],[-10,-113],[-3,-131],[-9,-178],[-9,-146],[-9,-179],[-9,-236],[-15,-179],[-29,-160],[-18,-164],[-9,-109],[-7,-113],[4,-105],[-8,-84],[-9,-91],[-20,-120],[-1,-150],[-32,-98],[-18,113],[-34,106],[-71,91],[-116,98],[-39,25],[-51,30],[-37,10],[-40,8],[-32,7],[-74,4],[-52,-11],[-50,-8],[-34,-18],[-35,-7],[-32,-15],[-52,-25],[-30,-22],[-46,-22],[-43,-18],[-57,-44],[-73,-51],[-41,-18],[-36,-22],[-56,-47],[-48,-33],[-49,-51],[-89,-80],[-49,-51],[-36,-33],[-18,-19],[-36,-44],[-692,-781],[-8,-17],[-14,-29],[-74,-89],[-144,-181],[-21,-6],[-44,2]],[[96725,48999],[-18,193]],[[96707,49192],[26,16],[109,87],[7,21],[101,210],[7,-4],[94,7],[57,14],[37,116],[87,117],[10,25],[30,72],[37,288],[68,97],[59,337],[67,110],[19,-49],[0,-137],[8,-186],[73,-151],[89,7],[43,32],[0,1],[40,40],[27,32],[15,70],[29,21],[39,84],[38,15],[32,7],[21,-18],[23,14],[2,77],[16,65],[23,70],[26,69],[30,91],[19,43],[28,44],[32,84],[37,127],[40,84],[30,40],[25,29],[35,48],[25,47],[27,0],[25,76],[49,146],[-1,200],[36,-73],[-6,92],[33,-19],[28,15],[33,-51],[37,-26],[25,-29],[28,-3],[34,18],[38,25],[36,55],[44,15],[43,21],[35,19],[58,51],[47,40],[40,18],[49,91],[47,22],[51,-51],[42,-33],[27,-47],[38,18],[11,94],[-25,51],[-7,102],[32,-76],[12,84],[10,98],[7,113],[7,98],[4,128],[7,156],[11,113],[3,87],[3,124],[-1,124],[-15,120],[-1,113],[30,135],[4,98],[-7,117],[16,109],[-28,-26],[-20,153],[-2,153],[-5,73],[1,124],[15,127],[13,113],[2,106],[16,120],[-12,84],[9,153],[16,134],[30,95],[25,11],[24,29],[-15,62],[26,55],[12,69],[19,25],[6,120],[8,80],[14,102],[13,131],[14,99],[8,145],[5,113],[-8,84],[-15,137],[-1,8],[-2,15],[13,117],[14,91],[5,116],[4,102],[17,102],[1,41],[0,68],[0,60],[-1,31],[1,65],[0,110],[3,106],[2,80],[19,120],[-16,44],[7,60],[2,16],[12,66],[1,91],[15,130],[1,8],[11,128],[2,72],[5,77],[5,65],[4,59],[-2,102],[-1,83],[8,110],[3,91],[3,109],[-1,116],[3,128],[-5,109],[7,109],[23,120],[-3,113],[-5,110],[7,142],[-1,120],[-3,142],[-1,14],[-23,73],[-16,80],[7,106],[6,84],[0,10],[40,33],[-10,106],[-23,-26],[1,22],[3,58],[-21,132],[-2,49],[-1,42],[13,105],[23,55],[-1,47],[0,26],[6,20],[15,52],[33,-54],[16,62],[9,20],[7,12],[0,77],[3,19],[3,13],[8,41],[-17,98],[-2,73],[11,105],[23,110],[4,131],[-6,84],[4,112],[-2,99],[-1,109],[26,146],[5,138],[16,142],[-11,142],[28,120],[-16,135],[-5,189],[-10,117],[-13,109],[-2,98],[24,88],[-2,65],[-10,98],[-2,161],[-14,94],[-2,121],[10,131],[6,69],[-19,142],[-15,134],[-19,81],[-11,87],[-23,51],[-13,87],[-25,84],[35,102],[-40,29],[-26,117],[25,69],[-15,84],[21,69],[-3,73],[-30,-66],[-7,102],[-10,91],[-4,113],[37,102],[-15,91],[-29,-40],[-28,-18],[-22,40],[14,58],[26,44],[30,54],[33,-43],[-4,120]],[[98820,70397],[-59,-44],[-39,15],[-20,62],[31,32],[44,-18],[43,-47]],[[98898,71361],[17,-39],[26,22],[-11,-58],[-8,-44],[-19,-73],[-23,36],[-23,25],[-3,4],[-22,48],[8,24],[9,30],[1,18],[1,70],[29,-59],[18,-3],[0,-1]],[[98529,71154],[-26,-7],[-23,55],[-7,27],[-9,34],[-23,55],[-5,120],[24,-7],[27,-26],[30,-94],[12,-157]],[[98240,74759],[-4,-120],[-9,-66],[-5,-33],[-28,55],[0,19],[2,76],[-34,-44],[8,117],[3,68],[0,12],[-4,76],[21,40],[39,-58],[1,-17],[10,-125]],[[97330,76288],[28,-18],[37,18],[28,-18],[19,-55],[-38,-25],[48,-58],[36,-44],[36,-40],[30,-40],[28,-22],[38,-58],[30,-44],[23,-80],[27,-73],[30,-33],[13,-47],[-26,-15],[-9,-102],[-3,-131],[-28,-109],[-34,51],[-7,-113],[5,-149],[18,-138],[4,-2],[45,-13],[33,18],[-8,88],[38,3],[17,7],[12,4],[31,18],[25,37],[20,113],[2,98],[27,-15],[0,-32],[2,-59],[17,-131],[36,-109],[15,-109],[15,-91],[4,-29],[7,-44],[18,-66],[3,-15],[20,-90],[29,-44],[-5,-28],[-5,-23],[29,-84],[20,-80],[-1,-76],[16,-73],[22,-91],[4,-27],[13,-108],[4,-26],[13,-90],[-4,-98],[16,-93],[6,-35],[10,-41],[9,-43],[15,-105],[23,-84],[7,-58],[-5,-69],[-45,87],[-31,76],[-14,66],[-28,73],[-22,69],[-27,80],[-6,18],[-17,55],[-24,102],[-10,40],[-33,-55],[-25,91],[-9,160],[-23,-40],[0,-98],[7,-84],[21,-94],[20,-110],[12,-120],[8,-19],[15,-35],[21,-51],[30,-88],[26,-54],[47,-95],[24,-73],[22,-65],[21,-139],[1,-102],[-5,-69],[2,-116],[-1,-88],[1,-6],[14,-96],[5,-73],[6,-72],[-6,-182],[-34,0],[-7,-110],[-3,6],[-19,31],[-33,-40],[27,-69],[26,-40],[9,-113],[-19,-51],[0,-17],[-2,-107],[-27,80],[-14,44],[-14,43],[-21,55],[-14,91],[16,102],[-21,73],[-38,80],[-35,0],[-13,3],[-26,8],[-36,40],[7,-95],[4,-102],[-26,8],[-31,7],[-30,62],[-19,54],[-14,44],[-34,-7],[-28,54],[-6,106],[11,69],[11,88],[-27,9],[-5,1],[-10,81],[4,50],[3,30],[24,83],[-6,57],[0,5],[-21,91],[-10,49],[-9,42],[12,84],[-17,11],[-6,4],[-5,123],[26,108],[6,27],[2,139],[-6,76],[5,87],[-10,62],[-16,88],[-5,63],[-3,35],[-18,47],[-9,80],[-9,29],[-14,48],[-15,87],[-28,80],[-18,95],[-30,15],[-4,5],[-21,24],[-38,22],[-8,62],[-7,58],[18,-8],[22,-43],[-2,58],[0,15],[-8,19],[-30,75],[-59,110],[-40,101],[-25,102],[-26,48],[-20,73],[2,75],[0,12],[7,98],[-10,99],[-29,69],[-20,84],[-21,54],[-22,44],[-25,47],[-30,44],[-26,44],[-28,51],[-43,43],[-44,51],[-14,79],[-1,1],[-6,135],[-21,69],[1,91],[28,62],[23,40],[42,44],[42,7],[47,4],[43,-18],[35,-37],[43,-22],[38,-29]],[[95172,65438],[-13,43],[0,40],[-7,48],[-30,47],[11,62],[1,5],[5,20],[4,22],[-1,48],[1,47],[-1,36],[-5,51],[-12,66],[-27,80],[-22,69],[-13,59],[-5,32],[-6,44],[-15,40],[-19,146],[-1,40],[5,51],[-91,-4],[-12,0],[-45,0],[-69,1],[-361,3],[-92,0],[-181,3],[-261,-3],[-47,0],[-104,3]],[[93759,66537],[42,91],[4,80],[3,55],[25,18],[10,52],[5,25],[4,70],[3,57],[0,149],[0,21],[2,60],[-3,94],[2,10],[20,67],[27,91],[1,120],[0,76],[-5,156],[-3,59],[22,113],[0,95],[-15,167],[-19,94],[-3,15],[4,39],[8,82],[16,87],[7,10],[18,26],[13,91],[12,132],[10,138],[14,116],[35,135],[2,41],[2,68],[8,113],[-6,131],[1,128],[26,113],[2,72],[0,73],[8,73],[4,95],[24,102],[4,127],[-5,50],[-6,59],[-7,117],[-1,49],[0,56],[14,128],[-12,91],[-7,113],[-18,94],[-3,19],[-18,43],[-21,51],[-4,135],[-7,106],[3,33],[4,54],[-16,127],[-2,110],[12,83],[11,62],[12,80],[26,62],[9,91],[14,110],[19,70],[5,21],[5,15],[29,94],[8,30],[4,14],[34,43],[2,153],[-2,90],[0,12],[-17,69],[-32,168],[-13,69],[-26,167],[-5,117],[-42,167],[-1,13],[-1,49],[29,44],[27,26],[18,32],[3,38],[5,82],[-7,132],[-7,156],[-10,86],[-2,12],[-3,29],[-5,59],[-6,80],[-24,116],[0,1],[53,182],[10,30],[18,53],[42,18],[36,33],[30,11],[0,1],[32,83],[25,25],[30,66],[14,65],[19,41],[6,33],[4,25],[21,43],[42,102],[19,95],[8,37],[8,40],[17,116],[32,47],[30,55],[32,91],[44,77],[48,0],[0,-1],[26,-29],[30,-21],[6,-4],[26,-26],[44,-47],[6,-29],[10,-51],[-5,-41],[-6,-50],[-33,-29],[-41,-66],[-10,-138],[25,-95],[24,-14],[-5,42],[-2,23],[3,73],[35,51],[61,-11],[47,-14],[2,-7],[19,-44],[28,-33],[19,-69],[15,-166],[0,-6],[-1,-93],[0,-78],[6,-105],[-13,-73],[24,-11],[5,-35],[4,-27],[-13,-102],[-24,-76],[-8,-66],[-6,-47],[27,11],[14,43],[11,37],[19,20],[23,24],[0,-1],[33,-50],[24,-102],[21,8],[6,3],[-5,149],[1,10],[7,63],[29,36],[35,-51],[51,-138],[22,-27],[7,-10],[-18,-54],[-11,-33],[12,-69],[15,62],[18,14],[28,-40],[22,-73],[46,-22],[29,-94],[5,-116],[4,-103],[14,-54],[-3,204],[11,51],[-8,109],[-18,80],[-21,45],[-11,24],[6,52],[5,50],[16,31],[22,42],[17,54],[19,59],[12,25],[16,33],[34,33],[-3,22],[-4,36],[-28,47],[-14,-54],[-29,-29],[-25,-51],[-24,25],[9,-138],[-12,-22],[-29,-7],[-30,-77],[-46,15],[-27,102],[-25,73],[-17,83],[-9,11],[-21,26],[-28,14],[-35,0],[-33,-11],[-28,-11],[-16,84],[-4,64],[-2,27],[17,84],[5,146],[15,54],[-21,55],[-6,91],[-8,23],[-22,64],[-35,66],[-19,66],[-12,39],[-41,0],[-24,19],[-6,49],[-2,12],[-11,81],[0,80],[0,69],[12,98],[16,32],[28,56],[42,54],[24,34],[8,10],[9,5],[28,17],[42,7],[6,-12],[17,-32],[19,-54],[28,-51],[21,-55],[29,-80],[33,-51],[46,-18],[38,-28],[22,-16],[31,-58],[45,-40],[29,-51],[27,108],[13,52],[5,14],[13,33],[24,-21],[47,14],[23,-58],[20,-48],[0,1],[36,29],[38,-22],[37,47],[14,-142],[53,-29],[18,109],[44,26],[53,-40],[42,-8],[44,-47],[1,91],[-41,91],[-22,73],[-41,18],[-45,80],[-30,52],[-12,21],[-36,98],[-20,37],[-41,14],[-29,44],[-18,36],[-14,26],[-14,23],[-15,24],[-25,37],[-7,-3],[-31,-12],[-52,-29],[-40,-6],[-7,-1],[-56,-26],[-65,29],[-24,92],[-6,21],[43,-18],[5,-3],[39,-23],[40,8],[15,22],[16,25],[22,87],[9,121],[-10,120],[5,71],[2,38],[22,51],[30,66],[19,127],[1,4],[-15,127],[-34,102],[9,95],[-16,-3],[-27,-5],[-42,15],[-11,109],[13,7],[33,15],[35,-47],[35,-37],[45,-47],[40,-33],[37,-18],[27,-47],[5,-4],[42,-29],[46,-102],[29,-44],[33,-33],[39,-40],[21,-54],[55,-80],[24,-37],[23,-25],[23,-43],[4,-8],[16,-94],[4,-23],[-31,-65],[-37,-88],[-16,-90],[-7,-41],[-11,-102],[31,-7],[-2,-62],[16,-19],[5,-6],[21,29],[-6,18],[-8,26],[-3,109],[36,-44],[3,77],[0,-1],[32,-21],[85,-164],[8,-14],[18,-30],[8,-30],[19,-72],[55,-69],[39,-40],[10,-87],[2,-157],[10,-120],[-7,-175],[12,-65],[30,-95],[42,-66],[41,11],[24,-37],[6,-10],[-10,-138],[-12,-139],[14,-131],[32,-69],[9,-149],[11,-110],[29,-91],[31,-24],[25,-19],[12,-15],[25,-29],[17,-51],[34,-73],[-27,-105],[-20,-88],[-7,-102],[2,-37],[5,-105],[20,-111],[12,-71],[19,-182],[-23,-11],[-3,-36],[-4,-69],[9,-99],[-3,-56],[-5,-78],[25,-84],[5,-77],[30,-80],[1,-1],[47,-61],[12,-80],[5,-94],[23,-38],[5,-10],[5,-7],[21,-33],[10,-138],[1,-51],[2,-84],[28,-87],[23,-106],[-17,-59],[-8,-32],[-7,-87],[-2,-26],[11,-62],[6,-29],[20,-65],[-6,-40],[-9,-131],[8,-81],[1,-18],[-40,-124],[-33,-167],[9,-269],[29,-223],[-10,-58],[-13,-105],[-29,-77],[-21,-47],[-25,-117],[10,-134],[27,-66],[18,-55],[18,-54],[12,-66],[4,-102],[-5,-120],[-12,-73],[-25,-62],[-11,-83],[11,-77],[34,-167],[95,-215],[-2,-95],[-26,-182],[-5,-109],[21,-160],[12,-175],[7,-186],[23,-49],[51,-111],[3,-43],[9,-172],[-2,-116],[-1,-91],[22,-164],[-62,-84],[-16,-65],[-17,-70],[-54,-156],[-13,-37],[-10,-18],[-36,-3],[-37,10],[-30,48],[10,55],[18,94],[4,69],[1,26],[6,87],[-17,109],[-37,128],[-32,65],[-20,40],[-28,55],[-22,33],[-20,22],[-25,21],[-47,19],[-45,7],[-33,7],[-27,-76],[-15,-146],[-16,-102],[-18,-33],[-41,-83],[-28,-153],[-9,-80],[8,-121],[21,-69],[21,-40],[38,-65],[26,-18],[48,-73],[-25,-131],[-14,-99],[3,-142],[9,-73],[14,-54],[17,-106],[21,-105],[17,-55],[22,-62],[19,-54],[21,-44],[22,-40],[40,-43],[4,-5],[50,-7],[39,55],[23,-124],[30,-167],[-1,-52],[-2,-58],[7,-80],[9,-35],[8,-30],[20,-117],[2,-10],[6,-41],[-9,-131],[1,-45],[0,-35],[-15,-11],[-35,-51],[-26,-51],[-31,-47],[-27,-106],[-27,-80],[-9,-98],[-6,-164],[-25,-66],[-34,-7],[-25,-18],[-28,-15],[-55,-87],[-23,-98],[-26,-11],[-26,-29],[-40,29],[-62,-48],[-8,-26],[-15,-46],[-11,-26],[-7,-15],[-9,-120],[2,-21],[6,-81],[5,-45],[6,-57],[34,-105],[18,-39],[14,-30],[6,-40],[7,-40],[-25,-45],[-7,-14],[-8,-7],[-52,-47],[-41,-33],[-45,-22],[-40,-26],[-16,-10],[-24,-10],[-47,-19],[-57,-15],[-36,-22],[-37,-11],[-51,-14],[-46,-40],[-41,-11],[-108,20],[-9,1],[28,74],[11,28],[5,1],[27,3],[43,22],[16,56],[11,35],[-2,84],[0,40],[45,3],[40,51],[38,59],[18,94],[-6,102],[-12,99],[-17,69],[-26,69],[-25,-164],[-33,4],[-27,59],[-5,10],[-15,3],[-21,4],[-71,-156],[-56,-84],[-36,-18],[-48,-4],[-52,-44],[-16,2],[-17,2],[-20,51],[-10,64],[-3,20],[5,70],[2,24],[0,26],[2,167],[-28,77],[-27,87],[-30,73],[-23,36],[6,24],[8,31],[9,55],[13,80],[-21,18],[-24,-36],[-15,-22],[-38,98],[-1,76],[-1,55],[14,66],[12,72],[-1,60],[-2,57],[-6,146],[-2,51],[42,-22],[31,94],[-46,22],[-12,38],[-12,35],[-9,51],[-4,22],[-28,44],[-20,7],[-10,4],[-18,-4],[-16,-4],[-15,-6],[-14,-5],[-21,103],[-1,7],[-2,8],[-9,35],[-24,26]],[[95407,77672],[14,-69],[-21,-77],[-19,-65],[-1,-131],[0,-27],[-2,-54],[0,-91],[-6,-31],[-7,-34],[-35,-22],[-27,4],[-23,-12],[-18,-10],[-48,-91],[-45,18],[-40,-33],[-30,-21],[-5,-4],[-9,-10],[-25,-30],[-35,51],[-28,-22],[-12,-153],[-21,-92],[-9,-36],[-5,-102],[-29,-18],[-37,-65],[-27,-84],[-23,-29],[-25,-66],[-29,26],[-26,120],[-32,112],[-9,30],[-30,102],[-20,62],[-17,40],[-11,23],[-8,17],[-35,73],[-19,54],[-3,8],[-18,22],[-15,18],[-14,44],[-22,65],[45,120],[42,58],[25,51],[6,11],[8,7],[40,37],[32,51],[24,41],[9,14],[47,36],[11,8],[37,28],[35,39],[4,5],[28,26],[68,55],[3,3],[27,11],[26,18],[39,14],[14,-14],[11,-11],[-15,-73],[-3,-46],[-2,-27],[7,-98],[32,-18],[39,36],[27,18],[45,-3],[24,-3],[8,-1],[9,42],[4,24],[-13,24],[-17,30],[2,73],[0,22],[7,2],[25,9],[36,-98],[17,43],[2,76],[1,37],[12,7],[27,15],[46,-80],[5,-29]],[[97449,78928],[5,-36],[-9,-73],[-43,-15],[5,-124],[4,-96],[1,-6],[-11,6],[-26,13],[-17,-13],[-16,-13],[-8,-47],[-5,-29],[-9,-106],[-21,-7],[-36,69],[-28,80],[-21,53],[-2,5],[-19,55],[-24,44],[-32,3],[-35,22],[-35,15],[-45,3],[-45,-11],[-13,121],[16,83],[9,120],[5,183],[-17,149],[29,44],[28,36],[36,-11],[38,-44],[34,-14],[25,-59],[12,-112],[10,-139],[43,-127],[29,-37],[9,14],[24,37],[-5,27],[-14,83],[12,24],[5,8],[3,25],[6,45],[28,69],[10,34],[1,4],[19,48],[21,140],[20,-70],[-1,-53],[-1,-49],[6,-109],[15,-49],[2,-36],[4,-60],[10,-48],[14,-69]],[[97239,79781],[37,-67],[16,55],[19,-17],[9,-8],[9,-55],[5,-29],[1,-102],[13,-105],[-16,-141],[-6,-1],[-8,-1],[-36,-51],[-19,88],[-39,51],[-33,44],[-14,18],[-2,80],[11,11],[11,11],[-6,32],[-9,40],[-17,70],[-1,3],[11,91],[22,15],[27,-14],[7,-4],[8,-14]],[[97296,79788],[-1,0],[-8,0],[-15,61],[-25,66],[-21,113],[31,11],[24,-37],[13,-76],[13,-88],[-11,-50]],[[96465,87015],[8,-77],[20,-145],[20,-120],[15,-110],[15,-87],[14,-62],[9,-95],[14,-72],[34,-186],[11,-128],[20,-112],[15,-113],[12,-164],[13,-77],[18,-120],[17,-98],[12,-102],[13,-113],[14,-127],[18,-135],[16,-98],[14,-88],[19,-127],[9,-69],[10,-84],[12,-106],[13,-83],[17,-110],[14,-87],[44,-313],[14,-77],[16,-91],[16,-102],[33,-196],[19,-128],[22,-153],[24,-156],[21,-91],[10,-73],[18,-98],[12,-66],[16,-91],[12,-65],[16,-124],[134,-688],[50,-226],[18,-106],[21,-87],[25,-106],[21,-102],[22,-109],[16,-106],[26,-105],[13,-84],[24,-109],[16,-69],[21,-113],[49,-215],[24,-120],[23,-95],[12,-69],[14,-66],[19,-112],[17,-81],[11,-94],[21,-98],[19,-121],[18,-87],[13,-66],[12,-87],[17,-76],[18,-91],[3,-24],[17,-115],[17,-98],[27,-157],[27,-153],[20,-102],[22,-109],[34,-164],[17,-83],[14,-91],[8,-70],[13,-127],[18,-76],[14,-70],[16,-94],[31,-164],[28,-171],[28,-161],[21,-131],[26,-127],[21,-138],[72,-397],[21,-113],[18,-84],[15,-116],[20,-99],[13,-98],[22,-120],[16,-88],[10,-80],[16,-98],[27,-146],[25,-163],[16,-66],[15,-84],[19,-113],[25,-134],[20,-135],[11,-73],[13,-65],[15,-70],[15,-83],[15,-91],[16,-88],[16,-116],[11,-84],[15,-120],[11,-95],[16,-98],[32,-248],[12,-76],[12,-109],[14,-117],[22,-157],[15,-105],[13,-124],[12,-87],[162,-889],[22,-69],[9,-84],[-5,-43],[25,-263],[2,-138],[-19,-124],[-26,0],[-39,-29],[-26,4],[-3,85],[-2,42],[-8,109],[28,11],[8,62],[3,84],[12,51],[-22,102],[-22,-33],[-9,142],[-13,109],[-17,-102],[-2,9],[-24,79],[-32,-4],[9,117],[0,109],[-15,106],[-29,69],[-36,54],[-28,37],[-11,65],[-34,0],[-1,-109],[-29,7],[-26,-14],[-11,76],[23,91],[26,15],[-11,76],[-38,106],[-29,29],[-22,62],[-13,87],[21,99],[28,32],[21,70],[17,54],[-26,-3],[-23,65],[-31,73],[-29,109],[-20,99],[-4,18],[-5,105],[-30,55],[-17,43],[-17,41],[-27,13],[-18,8],[-2,43],[-5,92],[-37,48],[-14,134],[-3,44],[-2,51],[-9,116],[-10,99],[-21,109],[-12,116],[-10,124],[-11,91],[-3,19],[-6,112],[22,51],[9,84],[-17,69],[-35,-58],[-29,-113],[-23,-94],[-8,76],[-5,66],[34,47],[-27,36],[-11,66],[-1,62],[-14,76],[17,33],[32,-33],[25,15],[0,83],[33,62],[30,55],[-10,87],[-18,59],[-1,105],[-24,-7],[-36,-51],[-39,-33],[0,10],[5,74],[-22,84],[30,3],[26,62],[17,-84],[45,41],[9,72],[-12,77],[-10,69],[-10,66],[-21,65],[-27,58],[-16,73],[-12,66],[-15,87],[-19,73],[-26,80],[-15,102],[-18,76],[-27,91],[-11,124],[-7,95],[-26,62],[-26,54],[-24,106],[-22,120],[-20,106],[-32,69],[-14,91],[-17,55],[-22,91],[-24,69],[-24,87],[-26,62],[-30,18],[-4,10],[-16,34],[-32,18],[-14,8],[-24,14],[-38,4],[-39,51],[-12,3],[-11,4],[-11,65],[2,95],[35,109],[-35,66],[-21,124],[-21,83],[-18,77],[4,102],[-36,-29],[9,196],[-20,19],[-2,91],[-2,27],[-2,30],[-3,41],[-29,-18],[-13,-53],[-3,-16],[-4,-106],[-16,39],[-4,8],[-8,39],[-8,36],[-3,13],[-10,104],[-1,16],[32,58],[9,98],[-2,24],[-6,56],[-14,11],[-7,91],[-9,111],[7,35],[26,-18],[29,-11],[-9,164],[-25,98],[-2,120],[-6,109],[-12,113],[-8,102],[-12,106],[-15,142],[-15,80],[-4,95],[-10,109],[-21,113],[-14,76],[-18,69],[-16,73],[-34,18],[-27,-51],[-28,15],[1,-95],[-6,-69],[-15,-51],[-33,-18],[-38,-76],[-25,-66],[-19,4],[-17,-70],[-28,-7],[-27,15],[-27,-15],[-35,-22],[-9,-98],[-18,-62],[-24,-22],[-43,37],[1,69],[-1,69],[11,66],[-12,87],[-2,91],[-17,80],[-16,69],[17,168],[-11,91],[6,105],[10,215],[-9,117],[-12,185],[-1,124],[0,80],[4,120],[-15,37],[-10,65],[-1,16],[-1,43],[-14,91],[-16,138],[-4,164],[-8,84],[-6,98],[-11,120],[-15,171],[-11,110],[-15,69],[1,76],[22,102],[20,-95],[7,-65],[13,-175],[13,-160],[13,-106],[12,-109],[25,-91],[7,135],[-12,109],[-12,87],[-4,110],[-9,94],[-11,113],[9,124],[-17,98],[2,135],[3,153],[-8,131],[-14,131],[-9,98],[-14,121],[-18,98],[-15,102],[-12,124],[-21,149],[-25,98],[-9,109],[3,84],[5,98],[-7,157],[-7,135],[-18,105],[-27,190],[-9,91],[-9,131],[-19,105],[-9,110],[-12,80],[-6,98],[-11,149],[-13,124],[-12,131],[-9,102],[-11,80],[-9,99],[-11,76],[-15,106]],[[74744,84157],[-1,-2],[-36,-133],[-10,-33],[-6,-40],[-7,-44],[-5,-40],[-4,-69],[-6,-375],[-2,-175],[-2,-105],[-1,-110],[-9,-127],[0,-1],[-7,-101],[-2,-36],[-8,-48],[-10,-54],[-24,-124],[-14,-69],[-8,-45],[-2,-10],[-12,-62],[-23,-109],[-10,-51],[-14,-66],[-9,-43],[-16,-84],[-22,-106],[-10,-51],[-15,-73],[-11,-54],[-24,-116],[-1,-7],[-64,-307],[-3,-13],[-50,-238],[-18,-95],[-38,-192],[-11,-73],[-27,-153],[-19,-109],[-11,-62],[-11,-66],[-30,-156],[-20,-117],[-17,-102],[-27,-156],[-9,-62],[-8,-48],[-26,-164],[-10,-51],[-15,-80],[-25,-142],[-14,-91],[-10,-62],[-16,-86],[-11,-59],[-11,-88],[-4,-62],[-6,-40],[-8,-98],[-4,-38],[-4,-38],[-15,-179],[-5,-66],[-2,-25],[-3,-40],[-10,-131],[-7,-80],[-9,-73],[-5,-47],[-12,-80],[-5,-38],[-8,-64],[-10,-80],[-7,-55],[-11,-84],[-16,-120],[-7,-54],[-22,-179],[-8,-62],[-14,-104],[0,-1],[-4,-37],[-5,-40],[-9,-65],[-7,-59],[-8,-51],[-5,-43],[-7,-55],[-6,-44],[-5,-36],[-8,-62],[-7,-47],[-6,-48],[-13,-107],[-4,-24],[0,-5],[-6,-53],[-15,-120],[-7,-55],[-9,-58],[-4,-40],[-7,-51],[-16,-120],[-7,-51],[-12,-102],[-5,-36],[-12,-99],[-8,-58],[-9,-69],[-9,-62],[-22,-175],[-33,-244],[-17,-131],[-14,-106],[0,-5],[-22,-173],[-14,-98],[-11,-88],[-17,-109],[-19,-120],[-14,-87],[-9,-55],[-18,-109],[-5,-40]],[[73275,73747],[-56,-317],[-21,-128],[-20,-120],[-62,-362],[-2,-13],[-26,-142],[-1,4],[-92,237],[-2,2],[-10,12],[-55,37],[-24,18],[-30,31],[-123,96],[-94,-116],[-17,-8],[-20,-10],[-126,-62],[-157,-212],[-46,-58],[-179,-237],[-1,-1],[-33,-39],[-63,-87],[-99,-131],[-214,-280],[-117,-155],[-4,-6],[-100,-127],[0,-1],[-27,-35],[-11,-15],[-18,-25],[-11,-15],[-74,-95],[-3,-4],[-27,-36],[-11,-14],[-38,-51],[-146,-182],[-33,-40],[-24,-30],[-90,-112],[-25,-30],[-22,-29],[-12,-11],[-44,-54],[-71,-91],[-31,-37],[-135,-167],[-43,-55],[-6,-7],[-74,-91],[-89,-109],[-14,-19],[-29,-32],[-15,-22],[-6,-6],[-8,-9],[-53,-65],[-64,-80],[-105,-131],[-106,-131],[-1,-1],[-22,-25],[-15,-18],[-48,-58],[-80,-99],[-21,-25],[-22,-29],[-129,-161],[-13,-11],[-14,4],[-16,4],[-13,-11],[-23,-37],[-19,-14],[-13,-11],[-79,-58],[-1,-1],[-23,-18],[-152,-101],[-16,-11],[-21,-30],[-23,-61],[-27,-51],[-25,-30],[-30,-123]],[[69170,68766],[-2,-7],[-14,-22],[-14,-23],[-6,-6],[-14,-15],[-5,-4],[-27,-5],[-4,-1],[-2,-1],[-42,-29],[-6,25],[-16,63],[-13,52],[-1,4],[-3,12],[-46,56],[-15,19],[-2,17],[-3,32],[-2,6],[-1,2],[-2,7],[-7,11],[-8,5],[-7,5],[-1,6],[0,19],[3,33],[0,13],[0,6],[-2,68],[1,12],[13,99],[5,80],[-25,22],[2,88],[0,3],[-1,20],[-10,110],[-2,18],[-10,71],[-1,2],[-3,7],[0,1],[-12,13],[-1,1],[-1,1],[-25,-13],[-5,-5],[-6,-34],[-4,-19],[-24,-72],[-2,-3],[0,-2],[-5,-10],[-5,-7],[-5,3],[-38,28],[-4,3],[-5,-8],[-5,2],[-17,19],[-10,19],[-9,32],[-25,148],[6,53],[13,1],[3,6],[1,4],[1,6],[-1,1],[-1,24],[-6,20],[-1,2],[-13,33],[-6,7],[-12,28],[-5,29],[-5,56],[3,121],[0,19],[0,2],[-1,2],[0,1],[-8,4],[-30,-1],[-11,8],[-6,5],[-10,18],[-6,18],[-1,6],[-1,40],[-9,24],[-1,4],[-1,1],[-2,3],[-3,3],[-32,26],[-4,3],[-9,2],[1,5],[3,34],[20,208],[1,4],[22,110],[0,1],[-3,8],[0,78],[4,1],[9,-17],[2,-3],[-2,138],[-4,35],[-1,2],[20,97],[-30,8],[-3,1],[-7,11],[-1,2],[-12,42],[-5,37],[-2,31],[-1,61],[-1,61],[1,8],[0,35],[1,37],[-2,80],[-2,64],[-15,144],[-2,21],[-15,135],[-24,140],[-3,18]],[[26407,75363],[-5,-40],[7,-51],[-4,-51],[14,-43],[0,-51],[6,-40],[11,-73],[-3,-66],[-8,-51],[3,-28],[3,-37],[-2,-66],[-2,-36],[-2,-40],[-1,-91],[-7,-49],[-1,-10],[-1,-36],[1,-13],[4,-31],[2,-69],[-17,-18],[-18,-40],[-8,-9],[-8,-9],[-11,-44],[-10,-25],[-12,3],[-15,-18],[-19,-69],[0,-8],[-1,-58],[-16,-33],[-15,-7],[-15,-18],[-23,-36],[-18,7],[-14,-4],[-17,26],[-19,14],[-2,40],[1,57],[0,9],[-6,33],[-14,47],[-10,18],[-9,40],[-14,33],[-13,11],[-13,22],[-29,36],[-11,15],[-22,3],[-11,0],[-18,-3],[-7,0],[-6,0],[-12,-4],[-20,-7],[-16,-37],[-7,-32],[-12,-55],[-9,-47],[-14,-19],[-10,-21],[8,-44],[-1,-36],[-7,-37],[-6,-44],[3,-54],[-6,-37],[-6,-40],[0,-91],[-8,-58],[-19,-44],[-13,-32],[-6,-66],[-15,-76],[-12,-33],[-3,-12],[-7,-36],[-16,-6],[-1,-1],[-27,-51],[-17,-25],[-10,-26],[-17,-18],[-19,-36],[-17,-40],[-16,-15],[-11,0],[-10,-13],[-2,-2],[-14,-18],[-26,11],[-16,-3],[-17,-26],[-16,0],[-11,4],[-14,7],[-17,7],[-14,-7],[-14,-18],[-16,-29],[-8,-3],[-3,-1],[-20,7],[-12,0],[-11,-11],[-3,-12],[-7,-28],[-10,-22],[-1,0],[-16,-10],[-34,36],[-16,-4],[-18,0],[-13,15],[-13,-7],[-11,0],[-15,18],[-19,33],[-21,3],[-13,-3],[-9,-48],[-14,0],[-14,26],[-16,51],[-16,25],[-19,-3],[-14,-15],[-7,-51],[4,-36],[-6,-48],[-4,-43],[-4,-48],[-1,-36],[2,-69],[-6,-37],[-12,-47],[-14,-4],[-1,-2],[-11,-27],[-18,-40],[-8,-29],[-9,-44],[-16,-25],[-19,-26],[-13,-7],[-12,0],[-17,-33],[-1,-1],[-10,-17],[-13,-18],[-11,-40],[-7,-33],[-8,-66],[-6,-32],[-9,-55],[0,-10],[0,-41],[-16,-22],[-11,-11],[-16,-14],[-18,14],[-16,8],[-16,11],[-16,18],[-36,-33]],[[24698,72192],[-13,-4],[-3,1],[-14,3],[-30,0],[-19,-4],[-29,4],[-15,0],[5,36],[0,55],[-5,47],[4,40],[-14,40],[-2,44],[-4,44],[-12,91],[-3,65],[-15,66],[-15,29],[-7,69],[30,4],[16,44],[22,32],[10,-29],[4,-36],[23,14],[3,66],[18,58],[-13,26],[-15,7],[-9,47],[0,62],[2,51],[-5,51],[-5,66],[1,43],[17,48],[-3,40],[-15,29],[-2,47],[-11,26],[-7,51],[-12,32],[-5,55],[4,66],[-4,61],[7,33],[-5,80],[4,95],[9,36],[-5,73],[0,66],[4,40],[-3,36],[-12,44],[-9,36],[3,44],[-6,51],[6,40],[5,33],[-11,33],[1,51],[-19,36],[-11,15],[-4,54],[23,48],[22,21],[12,62],[-7,33],[-10,18],[2,73],[-3,69],[-3,23],[-5,36],[5,131],[7,-44],[9,-40],[17,11],[12,62],[-3,160],[-12,91],[-12,14],[-3,-51],[-17,-18],[-11,18],[-10,33],[-12,29],[-2,62],[-12,18],[-12,-47],[-27,7],[6,44],[8,55],[-13,65],[-1,69],[13,11],[10,33],[4,37],[18,29],[-7,62],[-13,51],[-1,40],[23,25],[36,37],[18,14],[3,47],[-6,5],[-1,-7],[-3,-15],[-11,-18],[-6,-6],[-8,-10],[-1,0],[-2,-1],[-2,0],[-10,0],[-2,0],[-2,1],[-2,1],[-2,2],[-1,1],[-7,6],[-20,16],[-16,1],[-45,-86],[0,-1],[-2,-2],[-1,-3],[-2,-2],[-2,-3],[-2,-1],[-2,-2],[-5,-3],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,1],[-10,4],[-2,1],[-2,1],[-1,2],[-2,2],[-2,3],[-6,9],[-2,3],[-1,4],[-2,3],[-1,3],[-25,66],[-1,0],[-4,-6],[-3,-7],[-2,-16],[-2,-17],[-1,-31],[-2,-16],[-8,-16],[-13,-17],[-6,2],[-1,-1],[-2,-2],[-10,-6],[0,-1],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,1],[-2,2],[-5,4],[-2,2],[-2,2],[-1,3],[-2,3],[-2,3],[-1,3],[-11,27],[-25,58],[-1,1],[-1,5],[-2,4],[-1,5],[-1,5],[-1,5],[-1,1],[-2,10],[-1,4],[0,6],[-1,6],[-6,45],[-2,5],[-1,0],[-2,0],[-2,1],[-1,0],[-8,5],[-8,4],[-2,1],[-2,1],[-1,2],[-4,4],[-2,2],[-1,2],[-9,12],[-1,2],[-17,28],[-2,3],[-1,2],[-9,18],[-1,1],[-1,4],[-2,4],[-1,5],[-2,4],[-1,5],[-1,6],[-1,5],[-5,30],[-5,35],[-2,59],[-1,47],[-15,20],[-6,18],[-49,141],[-2,4],[-1,6],[-1,5],[-1,6],[0,1],[-5,37],[-1,4],[-13,29],[-13,10],[0,1],[-2,2],[-2,2],[-1,1],[-10,14],[-1,2],[-2,3],[-2,4],[-1,3],[-2,4],[-1,5],[-2,4],[-1,5],[-1,6],[-1,5],[-1,6],[-1,6],[-1,6],[0,6],[-1,6],[0,4],[-1,28],[0,2],[-1,6],[0,7],[0,6],[1,7],[0,6],[0,6],[1,6],[1,6],[0,6],[1,3],[3,19],[1,3],[1,5],[0,3],[4,16],[0,2],[2,5],[1,5],[1,5],[2,4],[2,3],[1,4],[2,2],[5,10],[1,0],[2,3],[2,2],[0,1],[4,4],[4,12],[1,12],[1,15],[0,1],[0,6],[0,7],[1,6],[0,6],[1,6],[0,1],[0,8],[3,29],[3,17],[4,20],[4,15],[7,0],[6,1],[7,2],[4,6],[3,11],[3,8],[2,12],[-5,18],[-4,18],[-2,8],[-14,16],[-17,36],[-8,37],[0,6],[-1,6],[0,3],[-2,19],[0,3],[0,7],[0,6],[0,6],[0,7],[0,6],[0,7],[1,6],[0,1],[2,21],[0,4],[1,6],[0,6],[1,6],[1,5],[2,5],[1,5],[1,5],[2,5],[1,4],[2,3],[10,23],[-1,19],[0,1],[0,7],[-1,6],[0,6],[0,7],[1,6],[0,1],[1,38],[1,40],[0,25],[-4,48],[0,3],[0,7],[0,6],[0,7],[0,6],[1,64],[0,6],[0,4],[3,47],[-2,4],[-1,4],[-1,5],[-2,5],[-1,5],[-1,6],[-5,38],[0,6],[-1,2],[0,7],[-1,6],[0,6],[0,7],[0,6],[0,6],[0,7],[0,1],[1,24],[0,5],[1,6],[0,6],[1,7],[1,5],[1,6],[1,5],[8,31],[1,2],[0,5],[-1,80],[0,4],[0,2],[-8,2],[-9,1],[-1,0],[-2,1],[-9,3],[-1,0],[-1,1],[-2,2],[-1,0],[-4,4],[-1,1],[-2,3],[-2,2],[-2,3],[-1,4],[-2,3],[0,1],[-4,10],[-1,3],[-2,5],[-1,4],[0,1],[-4,13],[-1,5],[-1,5],[-1,5],[-1,6],[-1,6],[-1,6],[0,6],[0,2],[-2,23],[0,3],[-1,7],[0,6],[0,7],[0,6],[0,6],[1,7],[0,1],[0,7],[-2,7],[-13,39],[-1,3],[-1,4],[-11,40],[-1,1],[-1,5],[-1,5],[-1,4],[-3,19],[-7,31],[-1,3],[-1,5],[0,1],[-4,24],[-4,19],[-4,18],[-4,19],[-1,3],[-1,4],[15,89],[0,54],[-10,71],[0,2],[2,5],[1,4],[2,3],[2,4],[1,1],[7,14],[1,1],[2,3],[2,2],[2,2],[2,1],[2,1],[2,1],[1,0],[11,1],[3,0],[2,-1],[2,-1],[2,-1],[2,-2],[2,-2],[1,-2],[7,-11],[0,-1],[2,-3],[2,-3],[1,-4],[2,-4],[1,-4],[2,-5],[1,-5],[1,-3],[6,-27],[0,-2],[1,-5],[1,-6],[1,-6],[0,-6],[4,-38],[8,-34],[12,-38],[1,-2],[1,1],[1,4],[0,5],[0,127],[0,15],[0,2],[-1,6],[0,6],[0,6],[0,3],[-1,12],[-13,96],[-18,74],[-10,46],[-7,11],[-7,-1],[0,-1],[-17,-24],[-1,-1],[-1,-1],[-12,-15],[-1,0],[-1,-2],[-2,-2],[-1,0],[-11,-6],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,1],[-2,1],[-2,1],[-1,2],[-19,21],[-2,2],[-2,3],[-2,3],[-2,3],[-13,28],[-20,22],[-28,11],[-11,0],[-10,-5],[-13,-16],[-16,-28],[-2,-3],[-2,-2],[-2,-2],[-1,-1],[-19,-15],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-1,0],[-14,1],[-6,-2],[-4,-3],[-22,-38],[-1,-2],[-1,-2],[-2,-2],[-6,-7],[-41,41],[-28,27],[-5,5],[-1,-2],[-6,-10],[-16,-24],[-8,-32],[-24,-85],[-1,-3],[0,-35],[2,-12],[9,-61],[0,-7],[0,-14],[-1,-23],[-8,-17],[-8,3],[-3,1],[-6,3],[-13,14],[-12,28],[-3,8],[-18,18],[-46,46],[-15,16],[-6,6],[-4,1],[-1,1],[-16,6],[-13,-10],[-16,-33],[-7,-62],[9,-73],[4,-51],[-1,-51],[-2,-34],[-1,-20],[6,-58],[8,-40],[8,-44],[6,-33],[2,-11],[5,-38],[2,-16],[4,-48],[0,-7],[-4,-51],[-8,-16],[-3,-6],[-1,0],[-10,-4],[-3,1],[-8,3],[-1,1],[-10,17],[-14,19],[-10,21],[-9,23],[-5,14],[-10,33],[-1,5],[-10,46],[-6,40],[-9,47],[-12,51],[-17,36],[-20,33],[-2,2],[-22,31],[-24,22],[-22,14],[-16,18],[-14,30],[-9,43],[-26,28],[12,198],[12,67],[18,50],[27,65],[-8,25],[-15,16],[-12,34],[-24,52],[-23,64],[-3,9],[-4,11],[-4,9],[-6,14],[-24,62],[-26,30],[-41,36],[-30,28],[-20,32],[-15,48],[-9,53],[-18,67],[-29,103],[-35,154],[-4,46],[-3,36],[-6,-30],[-5,-24],[-8,-17],[-9,-21],[-14,-8],[-7,-7],[-17,-40],[-1,-5],[-1,-5],[-1,-5],[-1,-5],[-2,-4],[-1,-4],[-2,-4],[-2,-3],[-1,-3],[-2,-3],[-2,-2],[-33,-57],[-1,-60],[9,-62],[10,-57],[4,-58],[-5,-61],[-8,-34],[-19,-39],[-29,-14],[-63,5],[-8,11],[-10,23],[-13,52],[-9,22],[-17,1],[-12,-1],[-32,14],[-15,12],[-20,-20],[-21,-6],[-23,13],[-27,57],[-11,63],[-12,91],[-4,111],[4,55],[11,48],[13,43],[6,29],[-1,42],[1,71],[8,63],[-6,103],[-8,175],[-15,148],[-18,125],[-6,110],[-8,56],[-19,67],[-11,74],[-9,85],[-6,94],[-4,52],[-12,36],[-13,42],[-4,29],[-2,109],[0,12],[0,13],[-2,134],[-1,4],[-2,3],[-7,11],[-2,3],[-2,2],[-2,2],[-2,1],[-2,1],[-2,1],[-1,0],[-9,1],[-2,0],[-2,-1],[-2,-1],[-10,-6],[-2,-2],[-2,-1],[-2,-3],[-2,-2],[-7,-11],[-2,-3],[-8,-15],[-2,-4],[-1,-3],[-2,-4],[-7,-19],[0,-1],[-1,-3],[-5,-16],[0,-1],[-2,-5],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[0,-3],[-3,-25],[-1,-3],[0,-2],[-2,-21],[-3,-28],[-1,-10],[-8,-6],[-36,-19],[-10,-3],[-13,-2],[-1,0],[-11,-3],[-2,-1],[-11,-5],[-1,-1],[-2,-1],[-21,-18],[-1,-2],[-9,-9],[-2,-3],[-2,-2],[-2,-3],[-1,-4],[-2,-3],[-1,-2],[-7,-19],[-1,-2],[-1,-4],[-1,-3],[-4,-16],[-1,-1],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-4],[-3,-21],[-2,-13],[-2,-12],[-15,-53],[-7,-15],[-10,-15],[-4,-4],[-12,-4],[-6,2],[-2,4],[-1,7],[-3,20],[0,1],[-1,6],[-1,5],[-1,5],[-11,46],[-1,5],[-1,2],[-10,37],[-1,3],[-2,4],[-1,4],[-2,4],[-17,37],[-1,2],[-74,139],[0,1],[-2,3],[-2,3],[-1,1],[-9,11],[-44,47],[-28,14],[-18,2],[-11,-10],[-19,-31],[-11,-44],[-7,-50],[-3,-58],[0,-53],[5,-54],[5,-41],[-1,-31],[-14,1],[-19,5],[-27,0],[-54,-77],[-16,8],[-17,25]],[[21498,81229],[75,369],[2,8],[6,15],[36,79],[81,175],[18,40],[30,66],[45,98],[68,88],[11,13],[13,18],[34,43],[69,208],[33,20],[50,31],[23,14],[23,58],[7,18],[7,19],[80,202],[56,6],[59,-20],[15,-6],[48,-16],[63,63],[11,12],[60,60],[42,42],[89,139],[33,52],[34,53],[198,314],[15,13],[43,-89],[81,-169],[53,29],[79,-86],[43,114],[12,32],[46,127],[40,55],[41,-140],[53,-15],[19,-6],[4,27],[8,51],[6,39],[9,63],[12,28],[94,233],[75,185],[5,24],[14,37],[7,69],[2,46],[19,80],[-2,40],[1,2],[12,-2],[13,-6],[18,11],[0,1],[10,17],[18,37],[21,22],[14,0],[15,-4],[11,-11],[5,-12],[3,-4],[12,-38],[9,-2],[41,7],[6,2],[29,-37],[11,-80],[3,-23],[3,-22],[10,-24],[14,-7],[12,-33],[10,-39],[10,-13],[3,-5],[9,-8],[22,-6],[1,3],[15,30],[8,7],[3,2],[2,3],[4,3],[12,17],[3,-5],[4,-34],[3,-44],[6,-34],[7,-24],[1,-12],[4,-16],[2,-24],[4,-21],[10,-28],[20,-25],[17,7],[18,-25],[11,-18],[3,-6],[12,0],[3,0],[12,33],[9,29],[7,43],[1,5],[4,9],[12,20],[22,7],[8,2],[67,-11],[5,0],[21,14],[11,0],[12,-29],[2,-5],[11,25],[11,33],[16,27],[15,7],[12,-3],[2,2],[2,0],[4,-16],[11,27],[12,11],[17,21],[8,2],[9,-36],[9,-55],[6,-33],[15,-47],[2,-9],[6,-14],[-1,-17],[1,-4],[-1,-34],[3,-47],[-1,-37],[11,-20],[13,-15],[3,-7],[4,-5],[1,-8],[4,-12],[0,-20],[1,-7],[-1,-47],[7,-39],[9,-60],[10,-70],[8,-45],[9,-34],[4,-20],[2,-59],[-2,-67],[0,-20],[1,-50],[-2,-48],[-1,-8],[-6,-35],[-6,-63],[9,-38],[5,-37],[7,-31],[5,-51],[16,-62],[2,-12],[6,-39],[1,-6],[8,-44],[9,-41],[2,-11],[1,-5],[2,-11],[4,-20],[4,-41],[1,-29],[3,-57],[15,-26],[20,3],[7,7],[20,4],[5,-2],[15,-4],[7,-2],[21,7],[11,5],[12,0],[5,0],[25,-3],[17,14],[17,22],[25,39],[1,1],[17,22],[11,11],[14,14],[17,8],[16,-22],[10,-22],[17,-25],[18,-11],[17,-8],[12,4],[16,4],[11,3],[13,0],[13,0],[11,0],[18,0],[14,4],[12,0],[21,-5],[4,-5],[12,-28],[16,-28],[18,-29],[12,-11]],[[78077,78764],[-44,-138],[-12,-37],[-2,-5],[-14,-46],[98,-447],[64,-292],[8,-36],[68,-310],[35,-145],[42,-197],[30,-142],[30,-135],[14,-62],[63,-280],[13,-55],[108,-485],[0,-2],[33,-161],[52,-229],[49,-222],[43,-186],[1,-7],[-4,-251],[-5,-204],[-3,-150],[0,-4],[-13,-470],[-2,-50],[-12,-25],[-18,-104],[-1,-7],[-1,-10],[-3,-45],[-2,-16],[0,-4],[-16,-55],[-2,-407],[0,-53],[0,-6],[-2,-342],[-2,-368],[-2,-93],[0,-1],[-2,-368],[-1,-109]],[[78665,72003],[-48,54],[-37,40],[-166,186],[-20,22],[-12,14],[-167,160],[0,-1],[0,-2],[-9,-109],[-5,-17],[-4,-11],[-19,-57],[-8,-15],[0,-1],[-16,-30],[-7,-8],[-3,-4],[-1,-1],[-2,-2],[-3,-2],[-11,0],[-8,0],[-14,14],[-17,16],[-7,3],[-11,3],[-54,5],[-10,1],[-1,0],[-12,-9],[-17,-24],[-10,-22],[-3,-8],[-6,-29],[-3,-13],[0,-1],[-1,-11],[-1,-7],[0,-81],[2,-33],[0,-58],[-1,-6],[0,-6],[-9,-50],[-14,-79],[-16,-98],[0,-6],[-17,-33],[-37,-72],[-8,-23],[-5,-32],[-2,-9],[-1,-6],[-3,-15],[-2,-4],[-8,-25],[-10,-6],[-25,-6],[-14,0],[-9,10],[-9,11],[-29,36],[-10,5],[-11,2],[-59,8],[-1,1],[-32,64],[-20,106],[-18,-90],[-10,-49],[-9,-44],[-16,-80],[-24,-148],[-1,-8],[-1,-6],[-114,18],[-29,4],[-88,11],[-59,-168],[-118,-349],[-131,-382],[-20,-62],[-72,-215],[-27,-77],[-26,-76],[-33,-102],[-2,-4],[-14,-32],[-10,-16],[-194,-312],[-39,-58],[-44,-84],[-8,-15],[-16,-29],[-134,-247],[-58,-110],[-15,-32],[-87,-164],[-23,-40],[-5,-11],[-3,-4],[-65,-124],[-25,-47],[-9,-18],[-43,-80],[-7,-12],[-5,-10],[-79,-149],[-35,-66],[-54,-106],[-96,-193],[-34,-65],[-78,-149],[-50,-99],[-71,-138],[-33,-62],[-98,-189],[0,-1],[-36,-68],[-27,-51],[-35,-66],[-48,-93],[-5,-9],[-64,-116]],[[75157,66840],[-146,426],[-18,56],[-1,2],[-161,466],[-25,73],[-71,207],[-36,106],[-14,36],[-32,95],[-10,29],[-28,84],[-23,68],[-20,56],[-16,47],[-14,40],[-21,61],[-6,19],[-16,44],[-1,5],[-37,355],[-11,95],[-23,229],[-8,77],[-65,600],[0,1],[-18,167],[-6,62],[-38,369],[-1,2],[-25,230],[-50,484],[-22,193],[-23,226],[-14,105],[2,51],[10,29],[4,66],[-12,36],[-5,33],[-6,37],[-2,36],[-6,69],[-39,73],[-148,255],[-267,462],[-99,168],[-71,127],[-29,29],[-40,37],[-13,11],[-12,11],[-15,10],[-28,26],[-18,18],[-13,15],[-16,32],[-14,41],[-14,40],[-16,47],[-6,14],[-9,19]],[[33780,78451],[-15,-222],[-19,-324],[-52,-841],[-79,-1271],[2,-30],[0,-14],[7,-94],[0,-2],[21,-320],[5,-68],[5,-84],[1,-3],[35,-524],[2,-23],[7,-98],[8,-131],[0,-2],[13,-187],[0,-55],[-4,-73],[-4,-43],[-5,-84],[-17,-302],[-8,-146],[-8,-124],[-5,-69],[-21,-364],[-15,-259],[-2,-36],[-19,-322],[-14,-109],[-1,-33],[14,-60],[2,-1],[11,-4],[9,17],[6,11],[11,-4],[8,-28],[0,-2],[3,-24],[7,-64],[5,-44],[0,-17],[4,-108],[-1,-4],[-6,-107],[3,-21],[11,-61],[9,-51],[13,-59],[1,-53],[0,-75],[0,-11],[25,-1],[7,-32],[1,-47],[-6,-44],[-13,-33],[-1,-4],[-7,-43],[-1,-38],[0,-10]],[[33713,71172],[-18,0],[-27,-3],[-32,-13],[-22,-20],[-8,-7],[-6,-12],[-28,-53],[-25,-128],[-1,-13],[-15,-119],[-30,-138],[-4,-16],[-14,-28],[-5,-9],[-1,-10],[-4,-67],[18,-79],[2,-8],[15,-95],[2,-40],[-4,-97],[-9,-41],[-43,-79],[-2,1],[-75,33]],[[33377,70131],[-19,7],[-12,4],[-36,-39],[-15,-29],[-7,-23],[-1,-3],[-34,-137],[-4,-16],[0,-9],[-7,-77],[-5,-32],[-4,-8],[-4,-7],[-2,-5],[-10,-22],[-25,-4],[-47,18],[-29,27],[-3,7],[-14,29],[-20,8],[-6,-2],[-31,-10],[-4,-1],[-62,-9],[-10,-2],[-27,55],[-3,13],[-20,76],[-28,80],[-12,20],[-18,21],[-13,4],[-15,3],[-2,1],[-32,50],[-14,22],[-12,15],[-39,45],[-7,17],[-4,10],[-17,19],[-20,23],[-31,22],[-9,5],[-52,29],[-13,5],[-15,6],[-13,-3],[-7,-2],[-57,88],[-2,3],[-3,70],[1,26],[4,71],[-4,81],[-6,36],[-11,39],[-9,14],[-6,2],[-6,3],[-10,4],[-9,-4],[-21,-9],[-46,-11],[-89,-19],[-8,7],[-1,1],[-21,-1],[-55,-15],[-42,-11],[-22,-6],[-16,-8],[0,-1],[-24,-24],[-39,-13],[-35,-12],[-15,-21],[-21,-29],[-59,-6],[-43,9],[-10,2],[-8,-1],[-36,-6],[-5,-6],[-45,16],[-1,0],[-87,1],[-14,1],[-41,0],[-13,-12],[-13,-12],[-42,-33],[-38,18],[-23,12],[-27,0],[-10,-10],[-4,-4],[-15,-14],[-23,-15],[-29,8],[-13,3],[-38,-39],[-13,-23],[-9,-17],[-7,-10],[-16,-16],[-9,-1],[-42,24],[-26,15],[-21,73],[-20,62],[-14,54],[-1,4],[-15,44],[-15,54],[-21,66],[-22,80],[-23,73],[-20,65],[-21,66],[-29,105],[-16,62],[-18,66],[-18,58],[-20,73],[-25,84],[-20,73],[-17,61],[-19,62],[-29,102],[-101,350],[-25,-48],[-83,-149],[-12,18],[-28,51],[-47,88],[-21,33],[-14,25],[-42,73],[-55,101],[0,1],[0,1],[17,24],[17,40],[7,51],[-67,84],[-30,164],[-28,167],[-22,128],[-85,105],[-14,19],[-82,102],[-126,160],[-33,40],[-35,44],[-79,101],[-30,37],[-68,76],[-89,102],[-156,180],[-2,2],[-9,26],[-9,29],[-18,40],[-7,40],[-8,51],[-14,55],[-6,32],[-9,26],[-14,0],[-11,33],[-16,43],[-11,22],[-17,58],[-7,30],[-7,29],[-8,29],[-14,4],[-17,7],[-10,25],[-6,59],[1,61],[-7,59],[-8,40],[-3,36],[-15,40],[-14,22],[-9,51],[-11,62],[-11,33],[-13,43],[-14,37],[-12,40],[-14,25],[-15,15],[-20,14],[-10,22],[-5,62],[-5,66],[-2,65],[-2,37],[0,51],[-9,40],[-13,51],[-2,62],[-12,21],[-14,11],[-10,48],[3,40],[-10,22],[-16,21],[-20,-7],[-20,11],[-4,47],[-10,37],[-19,-11],[-12,-44],[-15,-18],[-14,-7],[-18,25],[-12,69],[-16,26],[-12,-4],[-12,11],[-18,-7],[-15,-22],[-21,-36],[-16,-19],[-16,11],[-3,59],[0,62],[1,61],[18,30],[-7,76],[-13,22],[-12,44],[-11,65],[1,47],[19,26],[15,87],[-11,22],[3,69],[-7,66],[-10,-26],[-15,8],[-41,18],[-16,4],[-12,14],[-13,-14],[-13,10],[-9,48],[-27,18],[-14,22],[-16,36],[-16,-11],[5,-43],[-17,-19],[-11,37],[-25,25],[-8,44],[-16,58],[-14,18],[-15,0],[1,51],[-18,44],[-32,62],[16,84],[6,47]],[[24698,72192],[-13,-138],[-16,-40],[-14,-62],[-9,-37],[-16,-47],[-2,-6],[-10,-27],[-10,-33],[-8,-35],[-2,-12],[-17,-11],[-10,-7],[-21,-15],[-20,-22],[-13,-25],[-8,-36],[9,-22],[17,-33],[0,-20],[1,-27],[2,-44],[-5,-40],[-19,-15],[-12,17],[-4,5],[-22,-14],[-7,-28],[-7,-23],[-17,-33],[-8,1],[-12,2],[-11,-18],[-10,-43],[-15,-33],[-2,-6],[-8,-31],[-6,-51],[1,-62],[-17,-40],[-7,-54],[-20,-37],[-1,-3],[-12,-51],[-10,-40],[1,-45],[0,-6],[5,-40],[5,-55],[29,-58],[19,-18],[14,-30],[20,-29],[8,-36],[4,-51],[-7,-55],[-10,-65],[-5,-44],[-15,-14],[-13,-26],[-11,-22],[-7,-65],[-1,-3],[-14,-45],[-4,-54],[-9,-37],[-12,-62],[-1,-1],[-11,-20],[-7,-30],[-8,-51],[5,-27],[4,-23],[-11,-22],[-12,-26],[-14,-29],[-13,-8],[-5,-3],[-18,-14],[-2,-35],[-1,-27],[-9,-26],[-19,-14],[-11,-26],[-17,-29],[-16,-22],[-7,-3],[-9,-4],[-7,-51],[2,-55],[-10,-36],[-14,-47],[-6,-30],[-7,-62],[-11,-58],[-4,-36],[-11,-26],[-4,-58],[-4,-36],[-9,-29],[-6,-33],[-3,-37],[-1,-8],[-6,-39],[-15,-18],[-12,25],[-16,26],[-16,-29],[-13,-59],[-11,-21],[-12,-8],[-11,-6],[-9,-5],[-14,-36],[-10,-47],[-13,-19],[-15,-29],[-10,-54],[-8,-33],[-16,-40],[-18,-33],[-16,-29],[-30,-4],[-18,-32],[-17,-19],[-14,-47],[-19,-25],[-13,-22],[-8,-48],[-18,-7],[-12,0],[-19,-18],[-12,-15],[-11,-3],[-18,-48],[-9,-29],[-12,-29],[-13,-7],[-12,-15],[-20,-29],[-13,4],[-14,3],[-11,-7],[-12,-18],[-6,-62],[-6,-39],[-3,-23],[-13,-25],[-18,-22],[-16,-33],[-15,-11],[-15,-7],[-16,-15],[-8,-33],[-12,-54],[-17,-58],[-8,-44],[-7,-51],[-10,-26],[-16,8],[-17,22],[-15,10],[-16,15],[-17,-4],[-21,8],[-7,29],[-9,36],[-13,37],[-22,32],[-20,4],[-24,4]],[[23094,67823],[-4,40],[-4,62],[4,58],[5,44],[0,61],[-4,55],[-3,36],[-12,44],[-17,40],[-5,22],[-3,15],[-12,51],[-5,62],[-12,36],[-11,36],[-7,37],[-9,40],[-8,29],[-12,25],[-13,26],[-21,36],[-18,26],[-10,47],[-26,-4],[-18,0],[-15,11],[-24,19],[-37,51],[-11,11],[-11,7],[-24,22],[-19,-4],[-20,0],[-25,11],[-11,7],[-12,15],[-37,91],[-10,25],[-9,37],[-18,36],[-22,44],[-6,33],[-9,40],[-8,40],[-9,36],[-7,47],[-18,62],[-14,0],[-20,19],[-16,18],[-27,-4],[-11,55],[1,76],[0,58],[-7,48],[-4,40],[-2,44],[6,54],[-1,37],[-3,36],[-7,58],[-11,66],[-7,43],[-1,51],[6,44],[-11,51],[-11,47],[-8,33],[-8,40],[-6,33],[-9,44],[-13,36],[-1,40],[1,47],[0,41],[1,61],[-7,70],[-8,40],[-6,43],[-9,70],[15,54],[7,51],[9,62],[14,33],[13,47],[15,40],[13,44],[-7,87],[1,48],[1,47],[-27,58],[-12,18],[-18,26],[-10,18],[-14,44],[-8,29],[0,44],[-8,47],[-4,56],[-1,6],[-13,44],[-13,14],[-31,26],[-13,47],[-13,55],[-13,29],[-11,7],[-16,18],[-12,47],[-14,44],[-8,62],[-15,0],[-12,4],[-19,11],[-18,-48],[-21,-11],[-14,-25],[-11,-22],[-19,-29],[-14,25],[-25,33],[-12,15],[-8,43],[-8,59],[-16,29],[-12,14],[-24,-43],[-13,-26],[-12,-18],[-13,0],[-15,-4],[-17,-7],[-21,-33],[-12,-18],[-11,-18],[-12,-4],[-12,-7],[-13,-15],[-13,-14],[-11,-11],[-13,-4],[-12,-3],[-15,25],[-8,33],[-13,-22],[-12,-4],[-18,-3],[-14,-22]],[[21588,71959],[-12,29],[-17,-4],[-15,19],[-11,14],[-5,48],[-1,65],[4,47],[14,40],[5,59],[-11,18],[-22,36],[-10,26],[-7,58],[-3,40],[1,66],[-8,65],[-1,62],[-10,62],[-1,40],[-7,47],[-6,40],[1,40],[9,66],[11,47],[5,55],[-3,47],[-9,59],[3,36],[1,36],[-3,48],[0,43],[3,84],[4,37],[-9,51],[-12,3],[-12,-3],[-17,14],[-18,11],[-19,33],[1,94],[0,59],[9,40],[9,58],[-2,51],[-24,26],[-12,40],[-9,36],[-8,40],[-24,18],[-7,29],[-2,37],[-11,36],[-12,11],[-11,26],[-26,25],[-11,0],[-15,22],[-10,18],[-10,62],[-7,47],[-8,29],[-10,41],[2,43],[8,73],[-14,18],[1,40],[-12,48],[-6,43],[-13,19],[-9,25],[0,55],[-5,36],[-21,62],[-18,25],[-13,26],[-13,29],[-18,-11],[-25,-11],[-21,7],[-17,11],[-19,-14],[-23,47],[-9,44],[-19,44],[-15,7],[-10,22],[-11,65],[-12,37],[-12,18],[-1,40],[-7,11],[-10,14],[-17,26],[-17,-11],[-29,11],[-15,-29],[-12,0],[-16,11],[-17,-11],[-10,-37],[-10,-21],[-16,36],[-19,14],[-22,22],[-24,-25],[-16,62],[12,36],[12,58],[4,51],[10,66],[14,40],[4,40],[0,62],[-3,44],[-18,18],[-18,-4],[-1,44],[-2,54],[-16,19],[-16,22],[-16,29],[-3,65],[5,33],[-10,47],[9,29],[22,15],[12,40],[6,40],[4,37],[19,47],[16,29],[10,47],[10,55],[4,44],[2,54],[16,77],[16,47],[22,26],[26,40],[16,32],[0,48],[-7,36],[-16,44],[-24,51],[-12,25],[-20,29],[-24,19],[-27,21],[-18,4],[-11,15],[-20,29],[-10,25],[2,40],[1,37],[3,73],[-2,36],[-8,55],[-15,43],[-18,8],[-12,21],[3,62],[-5,66],[-17,47],[-3,40],[-3,44],[-6,58],[-12,48],[-7,54]],[[20498,77770],[10,40],[5,69],[3,44],[1,5],[18,3],[13,3],[10,22],[16,33],[11,28],[3,5],[17,34],[26,55],[9,31],[9,25],[13,21],[8,27],[7,17],[23,47],[18,26],[11,15],[14,40],[-1,44],[3,43],[14,58],[9,12],[12,14],[23,4],[17,-11],[11,-1],[17,55],[1,6],[1,4],[15,25],[1,2],[3,7],[4,14],[3,6],[9,32],[4,10],[24,24],[15,43],[15,33],[15,37],[9,14],[4,6],[13,11],[6,1],[6,7],[3,2],[1,3],[2,3],[17,80],[49,229],[69,326],[59,279],[3,14],[7,35],[19,83],[0,1],[15,73],[17,83],[19,89],[19,91],[8,35],[8,43],[7,33],[41,197],[65,310],[14,73],[27,105],[0,1],[5,18],[11,65],[6,37],[8,44],[3,17]],[[68460,71959],[-8,-11],[-5,-7],[-38,-91],[-27,-44],[-21,-36],[-3,-7],[-47,-85],[-2,-3],[-40,-73],[-78,-142],[-46,-84],[-21,-36],[-19,-36],[-19,-33],[-37,-69],[-76,-139],[-1,-2],[-62,-111],[-26,-47],[-12,-18],[-23,-40],[-39,-51],[-37,-62],[-57,-102],[-17,-33],[-19,-39],[-8,-15],[-85,-168],[-47,-87],[-25,-48],[-27,-47],[-34,-62],[-73,-135],[-11,-17],[-16,-26],[-49,-84],[-76,-146],[-6,-11],[-89,-145],[-22,-40],[-142,-277],[-143,-240],[-141,-219],[-14,-22],[-91,-160],[-118,-200],[-316,-541],[-1,4],[-4,8],[-24,53],[-14,16],[-8,5],[-4,2],[-26,-26],[-13,-18],[-28,-55],[-11,-25],[-11,-61],[-2,-3],[0,-4],[-8,-43],[-57,-150],[-15,-40],[-31,-76],[-45,-113],[-97,-237],[-36,-94],[-13,-33],[-13,-36],[-20,-51],[-38,-95],[-26,-68],[-1,-1],[-14,-48],[-16,-40],[-3,-7],[-59,-167],[-21,-62],[-132,-324],[-114,-230],[-11,-40],[-8,-29],[-2,-44],[-208,-488],[-22,-58],[-17,-47],[-16,-33],[-6,-14],[-6,-15],[-70,-204],[-148,-437],[-36,-40],[-33,-40],[-38,-124],[-17,-11],[-13,-54],[-2,-5],[-44,-105],[-78,-178],[-21,-51],[-13,-33],[-6,-19],[-14,-39],[-25,-55],[-18,-43],[-21,-59],[-16,-40],[-24,-69],[-10,-25],[-34,-84],[-44,-120],[-20,-58],[-17,-41],[-61,-153],[-2,-7],[-14,-32],[-14,-37],[-75,-186],[-36,-87],[-46,-113],[-22,-33],[-67,-167],[-1,0],[-59,-149],[-9,-22],[-10,-26],[-25,-62],[-37,-94],[-16,-40],[-12,-29],[-44,-124],[-20,-33],[-112,-284],[-47,-117],[-20,-51],[-94,-229]],[[63341,61072],[-41,40],[-32,55],[-14,18],[-19,0],[-20,14],[-50,48],[-47,44],[-12,14],[-52,47],[-22,22],[-28,26],[-29,29],[-21,22],[-16,14],[-45,44],[-16,22],[-61,69],[-53,40],[-25,29],[-16,15],[-29,33],[-63,65],[-44,-22],[-19,18],[-24,26],[-12,22],[-13,22],[-35,43],[-91,113],[-58,50],[-11,8],[-20,33],[-97,88],[-44,32],[-1,0],[-15,0],[-104,164],[-3,3],[-157,139],[-74,95],[-47,54],[-22,30],[-42,40],[-2,4],[-16,39],[-27,19],[-5,3],[-58,44],[-42,44],[-32,21],[-36,30],[-24,18],[-26,22],[-170,171],[-74,76],[-64,77],[-11,11],[-61,105],[-20,-33]],[[61029,63391],[-38,88],[-91,98],[-2,3],[-52,55],[-34,37],[-6,6],[-11,12],[-9,9],[-19,20],[-12,11],[-12,11],[-14,18],[-2,2],[-20,16],[-12,15],[-60,62],[-28,29],[-29,29],[-12,12],[-56,57],[-44,46],[-2,2],[-23,21],[-52,55],[-11,11],[-31,33],[-57,62],[-24,22],[-156,171],[12,98],[11,109],[9,73],[6,51],[17,157],[19,189],[9,80],[12,120],[7,69],[6,51],[4,48],[20,189],[6,51],[14,116],[11,102],[9,73],[6,51],[6,53],[0,2],[5,44],[7,54],[5,47],[6,44],[8,58],[3,37],[7,51],[6,47],[6,58],[6,55],[8,66],[6,40],[4,36],[6,51],[6,55],[7,54],[8,69],[6,44],[14,120],[9,84],[6,47],[10,84],[7,55],[25,204],[5,47],[7,51],[12,95],[16,156],[15,128],[20,178],[5,40],[12,109],[8,62],[15,131],[12,113],[11,91],[4,40],[18,179],[9,87],[8,69],[0,4],[5,36],[23,208],[22,205],[1,10],[7,62],[5,61],[11,106],[8,62],[8,80],[5,44],[4,36],[9,80],[13,120],[31,419],[4,51],[7,91],[3,58],[3,40],[5,59],[4,62],[4,43],[9,48],[6,36],[8,44],[16,76],[8,40],[5,37],[5,36],[5,36],[4,37],[5,36],[5,33],[8,66],[9,65],[6,44],[5,36],[11,73],[7,55],[10,69],[11,80],[7,51],[4,44],[7,54],[10,80],[5,48],[6,51],[8,58],[8,69],[5,37],[10,87],[9,76],[9,70],[6,51],[4,40],[4,91],[3,76],[4,91],[2,47],[2,66],[3,62],[2,62],[3,54],[2,66],[1,36],[2,40],[2,40],[2,40],[2,55],[1,44],[2,40]],[[85320,73663],[-1,-51],[-11,-6],[-11,23],[-2,6],[-9,-33],[-11,-45],[-6,-15],[-20,-11],[-11,-1],[-4,2],[-1,0],[-34,-2],[-51,-86],[-17,-35],[-10,-31],[-1,-6],[-1,-16],[1,-24],[1,-6],[0,-44],[-1,-9],[-23,-116],[-3,-5],[-5,-5],[-3,1],[-7,2],[-3,-5],[-46,-103],[6,-103],[4,-64],[2,-30],[-6,-25],[-36,-133],[0,-3],[13,-50],[21,-86],[8,-34],[8,-32],[7,-25],[11,-90],[8,-64],[3,-24],[-15,-105],[-1,-5],[-11,-34],[-2,-5],[-16,-47],[-4,-11],[-4,-9],[-6,-6],[-6,-3],[-14,13],[-9,-1],[-11,-14],[-11,-24],[-18,-45],[-17,-52],[-22,-68],[-1,-4],[-31,-115],[-1,-4],[0,-1],[-7,-27],[-31,-172],[1,-33],[11,-59],[36,-144],[4,-14],[0,-2],[16,-50],[3,-10],[7,-18],[7,-19],[1,-2],[13,-10],[7,-20],[4,-23],[9,-178],[1,-4],[0,-1],[1,-31],[1,-16],[-2,-10],[-53,-111],[-14,-25],[-8,-10],[-39,-11],[-1,0],[-6,-14],[-4,-15],[-2,-19],[-2,-133],[6,-22],[0,-1],[4,-26],[4,-29],[1,-24],[-2,-59],[-3,-40],[0,-8],[-4,-31],[-1,-8],[-2,-12],[-1,-4],[-8,-25],[-16,-44],[-1,-3],[-8,-16],[-2,-5],[0,-1],[-2,-7],[-3,-22],[0,-1],[-8,-100],[-2,-30],[-1,-31],[-2,-25],[-3,-11],[-4,-16],[-2,-7],[-1,-3],[-10,-25],[-8,-14],[-13,-18],[-7,-1],[-7,2],[-2,0],[-8,2],[-7,-5],[-4,-3],[-7,-5],[-5,-9],[-1,-2],[-2,-8],[-6,-19],[-38,-201],[-2,-18],[1,-18],[10,-57],[1,-8],[1,-5],[4,-24],[3,-12],[10,-40],[3,-8],[4,-12],[3,-9],[0,-12],[0,-1],[-2,-18],[-4,-15],[-8,-7],[-42,-38],[-6,-5],[-12,-8],[-5,-4],[-10,-15],[-6,-10],[-4,-14],[0,-16],[-1,-63],[-1,-36],[-2,-35],[-1,-5],[-1,-7],[-4,-24],[-4,-12],[-7,-10],[-22,-17],[-4,-5],[-6,-10],[-8,-15],[-10,-37],[-11,-61],[4,-51],[15,-40],[7,-59],[-146,-327],[-15,-37],[-20,-44],[2,-36],[17,-419],[1,-58]],[[84368,67859],[-95,-116],[-114,-135],[-129,-153],[-117,-138],[-24,-30],[-38,-43],[-113,-135],[-55,-66],[-89,-105],[-14,-11],[-177,-175],[-123,-120],[-32,-29],[-40,-40],[-37,-37],[-68,-65],[-29,-29],[-192,-186],[-46,-44],[-53,-54],[-157,240],[-67,91],[-31,40],[-3,3],[-230,299],[-62,84],[-239,382],[-69,81],[-53,61],[-29,48],[-73,112],[-1,1],[-239,371],[-33,55],[-85,131],[-27,43],[-85,128],[-14,22],[-56,87],[-15,26],[-31,43],[-15,22],[-80,128],[-155,233],[-11,18],[-21,33],[-47,76],[-43,46],[-39,41],[-2,-3],[-6,-8],[-2,-9],[-11,-22],[-2,-2],[-6,-7],[-18,-4],[-7,-1],[-13,-18],[-12,-18],[-4,-7],[-3,-6],[-2,-7],[-3,-9],[-6,-29],[-15,-74],[0,-1]],[[80661,68868],[-2,21],[1,18],[-4,15],[0,1],[-2,8],[0,3],[-45,154],[-2,5],[0,1],[-1,4],[-5,11],[-15,37],[-3,5],[-11,-5],[-17,-1],[-11,0],[-4,2],[-6,8],[-1,2],[-39,55],[-1,3],[-41,121],[-1,3],[-22,21],[-23,1],[-9,1],[-2,0],[-12,-4],[-32,-10],[-1,23],[-3,125],[5,9],[2,14],[-2,35],[0,1],[-14,41],[-1,2],[-4,7],[-26,30],[-1,1],[-23,29],[-7,10],[-19,31],[-5,16],[-5,18],[-3,3],[-28,30],[-4,9],[-9,36],[-2,7],[-6,15],[-6,2],[-1,1],[-7,0],[-32,1],[-8,-4],[-1,-1],[-29,-38],[-6,0],[-2,0],[-18,22],[-38,45],[-7,7],[-2,0],[-28,-3],[-32,-3],[-66,45],[-31,-29],[-12,-10],[-10,-10],[-1,0],[-21,3],[-51,42],[-23,40],[-8,25],[-11,36],[0,3],[-1,7],[-7,20],[-2,2],[-2,1],[0,1],[-12,6],[-6,-2],[-9,-12],[-3,1],[-12,2],[-4,7],[-14,42],[-36,169],[-4,29],[-1,12],[0,5],[1,23],[0,49],[1,6],[1,6],[0,3],[54,165],[7,19],[1,2],[14,15],[30,100],[0,7],[2,102],[-129,146],[-217,240],[-230,255],[-90,102],[-31,36],[-3,4],[-192,211],[-28,32],[-14,15],[-67,77],[-1,0],[-32,36],[-43,48]],[[21588,71959],[-16,-69],[-18,-33],[-20,-26],[-16,-18],[-17,-11],[-15,-14],[-18,7],[-16,15],[-17,-4],[-16,0],[-11,4],[-18,-4],[-32,-44],[-12,-11],[-14,-7],[-12,-36],[-12,-33],[-12,-40],[-10,-18],[-18,3],[-36,0],[-16,4],[-28,4],[-17,32],[-16,22],[-17,-29],[-25,-40],[-11,-15],[-11,-10],[-12,-15],[-14,11],[-13,0],[-18,14],[-11,22],[-18,40],[-11,0],[-14,-3],[-15,-8],[-4,-54],[-5,-73],[3,-58],[-3,-66],[-20,-51],[-12,-25],[-21,-18],[-14,-15],[-18,-18],[-12,0],[-16,-15],[-18,-11],[-11,11],[-11,4],[-11,0],[-13,-4],[-17,29],[-12,0],[-15,0],[-15,11],[-16,37],[-13,22],[-19,-15],[-16,-18],[-18,-26],[-12,-7],[-14,-7],[-19,18],[-12,29],[-13,29],[-17,-11],[-17,-7],[-19,0],[-16,18],[-12,44],[-16,3],[-21,11],[-20,4],[-15,4],[-15,0],[-17,-15],[-11,-18],[-14,-44],[-11,-29],[-12,-44],[-18,-21],[-12,-8],[-21,0],[-11,11],[-11,-18],[-15,-18],[-26,-33],[-16,-29],[-9,-44],[-18,-14],[-9,-62],[-6,-33],[-18,-26],[-17,15],[-14,6],[-4,1],[-1,-1],[-11,-17],[-21,-29],[-88,-120],[-57,-77],[-7,-8],[-14,-17],[-5,-8],[-22,-31],[-9,-12],[-25,-33],[-25,-36],[-23,-33],[-27,-36],[-19,-26],[-14,-18],[-11,-15],[-25,-36],[-52,-69],[-19,-26],[-63,-87],[-13,-15],[-21,-33],[-25,-29],[-43,-62],[-13,-18],[-26,-36],[-85,-113],[-26,-36],[-59,-80],[-1,-1],[-17,-21],[-36,-51],[-32,-48],[-25,-32],[-18,-26],[-12,-15],[-18,-25],[-35,-47],[-26,-37],[-44,-54],[-37,-55],[-38,-51],[-58,-80],[-34,-47],[-75,-106],[-69,-94],[-2,-4],[-16,-22],[-6,-47],[1,-33],[0,-5],[-1,-7],[-3,-9],[-11,-3],[-14,16],[-1,0],[-2,-21],[-4,-39],[-10,-17],[-25,-24],[2,-2],[29,-30],[21,-39],[2,-4],[0,-3],[2,-15],[1,-5],[0,-12],[0,-109],[0,-2],[-3,-14],[-5,-6],[-15,2],[-32,24],[-1,0],[-9,1],[-3,-1],[-6,-3],[-28,12],[-44,15],[-11,-1],[-6,-1],[-1,0],[-10,-6],[-6,2],[-5,5],[-40,57],[-15,43],[-9,31],[-6,38],[-2,29],[3,20],[0,2],[0,6],[0,2],[0,2],[-11,26],[-30,32],[-20,-17],[-5,-1],[-8,-1],[-7,2],[-13,3],[-8,-1],[-5,-1],[-9,-7],[-23,-17],[-7,-12],[-32,-50],[-2,-3],[-15,0],[-21,-52],[-31,-110],[-1,-6],[0,-15],[1,-9],[35,-11],[-4,-50],[-1,-27],[-1,-3],[-3,-42],[-1,-5],[-14,-97],[-1,-6],[-14,-100],[-4,-4],[-53,-31],[-3,-1],[-30,5],[-51,20],[-1,0],[-1,3],[-5,11],[-10,34],[-10,41],[0,1],[-6,66],[-1,9],[-4,11],[-6,7],[-8,4],[-1,-2],[-3,-26],[-6,-56],[0,-2],[0,-5],[-5,-46],[-2,-11],[-4,-11],[-13,-12],[-5,-7],[-12,-16],[-9,-21],[0,-1],[0,-1],[-1,-8],[-1,-10],[1,-7],[4,-8],[25,-10],[4,-7],[2,-3],[4,-15],[0,-6],[-1,-7],[-8,-8],[-30,-27],[-1,-1],[-23,-17],[-13,8],[-61,38],[-5,3],[-46,-66],[-2,-3],[-1,-3],[-19,-42],[-1,-5],[0,-1],[-1,-7],[-1,-36],[2,-55],[-73,-126],[-12,-56],[-5,-42],[-3,-17],[-11,-10],[-11,-10],[-14,-15],[-12,-25],[-15,3],[-17,-14],[-15,-30],[-13,-14],[-13,7],[-19,26],[-17,25],[-19,-3],[-16,-30],[-14,-11],[-13,0],[-13,4],[-15,7],[-11,-25],[-14,-11],[-13,0],[-14,-33],[-12,-29],[-13,-18],[-15,33],[-18,7],[-14,-11],[-21,-33],[-8,-58],[-15,-47],[-10,-62],[0,-37],[-7,-36],[-21,-29],[-16,-11],[-18,-15],[-14,-36],[-17,-22],[-17,11],[-9,25],[-12,26],[-20,4],[-23,3],[-17,37],[-17,14],[-19,-43],[-16,-8],[-14,18],[-12,11],[-16,-11],[-19,8],[-12,29],[-9,47],[-18,4],[-14,22],[-19,7],[-12,22],[-26,40],[-15,11],[-15,0],[-15,-8],[-12,30],[-3,36],[-11,18],[-9,26],[-7,65],[-7,55],[-10,22],[-17,18],[-17,22],[-12,11],[-18,-8],[-17,-43],[-15,-11],[-19,-18],[-5,-37],[4,-54],[-17,-44],[-14,-37],[-2,-36],[-20,-25],[-14,-8],[-17,-14],[-16,-37],[-13,-18],[-13,-29],[-14,-26],[-15,-21],[-17,-4],[-12,11],[-16,-22],[-5,-47],[-14,-44],[-8,-65],[-33,-48],[-15,-29],[-9,-29],[-29,-22],[-12,-29],[-22,-69]],[[16219,66858],[-17,51],[-13,18],[-15,25],[-16,4],[-16,-11],[-21,22],[-24,51],[-10,25],[-13,30],[-17,11],[-12,7],[-13,22],[22,32],[6,33],[0,44],[0,22],[0,29],[6,58],[-4,40],[-6,40],[-6,33],[-7,29],[-2,58],[6,37],[6,65],[7,168],[-15,51],[-6,29],[-5,36],[-9,51],[-9,29],[-12,15],[-15,36],[-8,48],[-9,29],[-10,44],[-5,36],[-19,36],[0,40],[15,33],[12,37],[5,43],[-10,59],[-6,72],[-4,55],[10,84],[-15,40],[-18,73],[-8,80],[-8,29],[-16,51],[-13,65],[-10,22],[-4,62],[-3,58],[-7,48],[-9,76],[-13,33],[-19,14],[-14,8],[-15,40],[-11,0],[-15,-29],[-14,-26],[-15,0],[-17,7],[-11,-3],[-18,-26],[-15,11],[-14,8],[-22,-11],[-14,-40],[-9,-22],[-11,-18],[-20,-33],[-18,-33],[-12,4],[-25,-11],[-13,-37],[-19,-14],[-12,7],[-13,33],[-5,40],[-14,36],[-5,48],[0,40],[-8,47],[-12,11],[-11,0],[-13,7],[-4,48],[16,32],[3,40],[1,59],[-11,65],[0,51],[-1,51],[-2,44],[11,51],[14,11],[16,-22],[7,51],[0,51],[-2,47],[10,37],[8,36],[9,55],[-7,40],[-7,43],[-1,51],[-6,48],[4,51],[11,29],[11,36],[-5,44],[-14,18],[-12,36],[0,66],[10,18],[-18,40],[-14,37],[-8,36],[-12,7],[-15,33],[9,58],[-10,33],[-12,18],[-6,70],[2,43],[-10,48],[-18,7]],[[15349,70976],[0,6],[-1,27],[0,4],[-10,52],[2,90],[1,9],[3,13],[4,17],[-2,31],[0,11],[0,47],[0,6],[1,20],[11,45],[6,16],[7,18],[1,5],[8,33],[10,68],[7,43],[6,21],[9,35],[0,5],[1,27],[5,42],[6,25],[4,32],[8,39],[7,55],[6,17],[3,20],[5,34],[6,23],[3,2],[4,-4],[11,-16],[1,0],[5,11],[8,25],[7,36],[-3,67],[14,56],[4,12],[0,15],[-1,21],[0,1],[13,55],[2,5],[1,3],[18,34],[15,4],[17,4],[24,0],[2,0],[21,-18],[12,26],[7,59],[4,32],[2,20],[16,53],[-7,40],[0,8],[3,32],[8,26],[0,40],[-2,17],[-1,7],[-5,22],[3,39],[2,2],[6,10],[16,14],[3,2],[21,17],[31,22],[11,5],[19,7],[19,5],[20,8],[1,1],[5,28],[3,16],[22,17],[10,40],[-6,36],[-2,44],[-10,33],[-9,46],[-2,22],[0,2],[-3,12],[-5,17],[0,9],[-1,56],[0,1],[-9,28],[3,37],[4,29],[1,52],[0,35],[-1,56],[8,63],[9,28],[0,5],[0,39],[-10,27],[-15,46],[-2,9],[-3,51],[4,37],[-2,36],[3,60],[0,13],[1,17],[1,5],[4,6],[8,4],[7,2],[34,2],[5,0],[15,-4],[17,-5],[8,5],[4,2],[15,6],[26,29],[1,2],[5,10],[15,24],[6,16],[23,31],[9,12],[16,12],[10,27],[8,41],[2,22],[3,31],[12,41],[11,29],[11,43],[0,6],[-1,40],[0,2],[-18,33],[-3,0],[-12,-7],[-8,5],[-8,-10],[-21,-9],[-11,-11],[-9,39],[-9,41],[-6,13],[-9,38],[2,46],[0,1],[4,12],[8,30],[13,36],[0,2],[1,2],[13,42],[9,61],[-1,40],[10,57],[-22,84],[-4,18],[-5,24],[-8,37],[-2,41],[-10,129],[-9,45],[-14,17],[-4,26],[7,66],[6,38],[-5,26],[-4,17],[-5,67],[-2,25],[-2,0],[-5,-1],[-18,60],[-1,2],[-24,27],[-1,1],[-16,64],[1,2],[4,6],[21,31],[0,38],[0,13],[1,44],[1,30],[-15,47],[-1,4],[-2,62],[1,42],[0,1],[-3,7],[-6,5],[-18,-3],[-10,-7],[-2,-1],[-13,36],[-18,41],[-3,10],[-3,42],[2,35],[15,8],[31,11],[16,18],[27,-14],[2,-14],[0,-1],[8,-36],[9,-13],[2,-3],[16,-5],[15,-13],[10,-16],[11,-11],[19,2],[20,21],[6,23],[14,50],[14,48],[-5,50],[-1,8],[1,22],[-1,7],[-7,41],[0,8],[-3,19],[-10,34],[-1,14],[-3,67],[11,87],[16,112],[1,7],[4,32],[4,34],[1,2],[2,-3],[22,-9],[2,-1],[27,4],[19,28],[5,10],[10,20],[11,38],[0,1],[2,9],[11,26],[12,9],[21,3],[7,4],[13,10],[17,23],[17,7],[27,13],[6,4],[24,46],[15,28],[17,-2],[14,-9],[4,-3],[21,-50],[5,-7],[12,3],[3,-6],[6,-1],[8,-29],[22,-22],[12,-8],[7,-11],[4,-5],[8,-16],[5,-8],[14,-5],[12,10],[18,9],[19,8],[12,9],[13,10],[13,13],[12,8],[10,-22],[8,-39],[0,-2],[10,-24],[16,-33],[3,0],[16,6],[13,-69],[-1,-62],[3,-24],[6,0],[7,0],[19,-7],[13,-37],[5,-23],[1,-2],[2,-10],[6,-27],[4,-55],[1,-7],[11,-3],[17,0],[11,-22],[17,-33],[7,-29],[3,-55],[13,-21],[18,-2],[7,2],[16,-30],[11,-36],[6,-25],[7,-27],[-4,-47],[1,-27],[15,-48],[4,-12],[13,-29],[6,-44],[5,-54],[14,-23],[10,6],[27,53],[24,23],[8,54],[20,-11],[27,53],[22,16],[13,-7],[11,-2],[20,5],[13,48],[13,21],[1,41],[-9,43],[-8,51],[-12,58],[0,3],[-6,50],[-1,14],[1,64],[3,4],[14,22],[5,35],[25,93],[13,64],[3,11],[21,43],[7,10],[19,30],[12,5],[3,12],[9,36],[14,44],[10,39],[14,33],[12,21],[13,-9],[13,53],[2,74],[5,58],[9,48],[8,50],[-2,62],[1,67],[15,58],[33,49],[19,23],[17,22],[6,43],[5,73],[12,44],[9,22],[-5,24],[-9,37],[-9,16],[-19,28],[-18,-17],[-18,6],[-17,40],[-9,34],[-15,64],[4,52],[3,36],[8,40],[-8,36],[-1,16],[-1,96],[-1,37],[0,7],[-5,55],[7,15],[20,29],[11,19],[15,35],[17,44],[3,37],[3,50],[6,39],[-3,38],[15,64],[16,8],[0,36],[0,24],[11,3],[26,-5],[14,20],[5,7],[18,16],[15,19],[14,7],[15,18],[11,22],[15,29],[4,7],[7,6],[3,2],[19,3],[3,-6],[31,-16],[25,-12],[57,71],[-1,20],[-1,22],[-2,38],[0,33],[1,2],[1,1],[2,3],[0,1],[11,27],[16,0],[13,-16],[5,2],[6,1],[2,4],[21,48],[23,51],[21,25],[1,4],[0,15],[0,12],[5,37],[15,16],[13,-4],[17,-7],[13,11],[7,19],[1,1],[0,1],[2,4],[6,32],[9,23],[4,11],[25,4],[41,6],[2,4],[51,99],[5,14],[11,18],[13,4],[5,5],[3,0],[2,5],[5,4],[12,22],[3,39],[0,15],[0,9],[-1,52],[-1,36],[10,63],[12,8],[18,6],[2,1],[15,18],[1,1],[3,-1],[44,47],[13,11],[4,9],[5,10],[13,19],[11,0],[9,38],[2,29],[1,4],[3,4],[11,3],[9,-8],[14,17],[2,26],[23,32],[8,12],[12,3],[12,15],[8,14],[13,5],[2,3],[5,3],[16,25],[10,22],[11,33],[6,26],[1,1],[0,1],[4,16],[9,56],[6,79],[13,41],[14,-3],[8,8],[2,2],[3,9],[2,2],[1,5],[6,15],[9,30],[5,16],[4,5],[2,0],[5,3],[3,1],[18,0],[5,-2],[16,21],[6,9],[11,34],[2,19],[12,34],[10,28],[2,6],[8,23],[54,9],[6,1],[81,111],[3,-3],[39,8],[2,3],[24,15],[14,15],[11,23],[2,5],[15,31],[12,34],[2,10],[64,116],[7,7],[15,25],[4,8],[14,31],[5,3],[9,0],[47,-53],[2,-10],[9,-17],[2,-3],[4,-6],[6,-13],[6,-10],[16,-26],[13,-36],[20,-29],[1,-2],[10,-36],[0,-3],[43,-75],[4,-7],[4,-10],[2,-2],[10,-30],[4,-19],[7,-34],[-2,-30],[-1,-17],[-2,-26],[0,-3],[-1,-24],[0,-79],[-3,-37],[2,-42],[2,-5],[16,-4],[1,-2],[0,1],[2,-2],[12,-15],[17,0],[17,-18],[9,-25],[11,-10],[2,-4],[8,-1],[12,-36],[12,-51],[8,-30],[13,-35],[2,-3],[19,-16],[8,-12],[-1,-1],[13,-57],[1,-11],[-1,-61],[0,-9],[11,3],[14,11],[15,8],[15,0],[12,0],[4,-2],[18,-16],[18,-12],[4,-7],[7,-42],[0,-8],[4,-23],[3,-56],[-9,-20],[-75,-155],[0,-2],[-10,-21],[-1,-1],[-1,-3],[-13,-42],[-12,-36],[-9,-15],[-8,-21],[-8,-48],[2,-77],[1,-8],[5,-60],[-9,-25],[-2,-1],[-29,-31],[-1,-1],[-19,-42],[-3,-43],[-2,-54],[-5,-29],[9,-49],[4,-44],[-2,-15],[-11,-40],[-11,-17],[-1,-3],[-2,-4],[-5,-12],[-5,-11],[-7,-12],[-2,-6],[-3,-13],[-15,-32],[-8,-63],[-1,-12],[-4,-46],[-2,-37],[2,-16],[6,-60],[6,-37],[6,-36],[2,-56],[0,-28],[2,-9],[10,-16],[21,-11],[14,-7],[21,-24],[11,-57],[13,-80],[7,-40],[-4,-19],[-7,-39],[-15,-43],[-2,-5],[-5,-36],[-2,-40],[-3,-40],[-2,-58],[-11,-45],[-2,-7],[-4,-39],[-7,-44],[-10,-54],[-6,-79],[0,-9],[0,-53],[5,-67],[1,-47],[17,-11],[6,-17],[12,-23],[14,18],[14,0],[4,-1],[51,-68],[18,18],[17,-4],[25,10],[2,1],[19,29],[19,7],[19,-13],[10,-10],[8,-2],[14,0],[19,-3],[29,-8],[17,7],[2,0],[14,-16],[12,-13],[11,-18],[6,-51],[1,-39],[1,-32],[5,-60],[13,-25],[21,-22],[13,-4],[7,-4],[3,-1],[12,-8],[12,-15],[19,-50],[20,-16],[14,6],[14,4],[19,-18],[12,-6],[1,-1],[19,-28],[6,-5],[7,0],[13,69],[7,32],[10,42],[13,43],[10,58],[18,32],[16,53],[4,39],[17,15],[21,15],[15,23],[9,25],[6,13],[11,45],[25,34],[14,14],[19,5],[22,13],[22,31],[16,34],[4,7],[29,27],[24,-10],[3,-7],[24,-21],[19,25],[13,75],[1,1],[14,21],[26,28],[22,20],[36,-25],[10,27],[11,27],[34,27],[15,-1],[19,7]],[[44311,77606],[15,-23],[5,-15],[12,-36],[1,-3],[1,-5],[3,-34],[2,-25],[1,-22],[5,-17],[2,-7],[7,-23],[6,-12],[4,-1],[19,-4],[10,-13],[2,-2],[20,-12],[5,-3],[27,-30],[24,-43],[8,-23],[12,-38],[1,-3],[1,-5],[16,-99],[14,-89],[2,-17],[9,-88],[2,-21],[0,-6],[-2,-82],[-3,-155],[-1,-6],[0,-11],[0,-1],[-3,-16],[-7,-136],[1,-51],[1,-11],[3,-34],[4,-46],[3,-13],[11,-52],[13,-67],[15,-55],[21,-80],[4,-25],[6,-72],[-1,-73],[-6,-71],[-6,-39],[-10,-32],[-13,-41],[-21,-111],[-6,-49],[-8,-79],[-1,-3],[-4,-18],[0,-28],[0,-5],[0,-23],[2,-32],[38,-271],[21,-115],[23,-107],[10,-36],[6,-21],[10,-46],[2,-28],[-3,-50],[-14,-67],[-2,-14],[0,-2],[1,-12],[-4,-7],[-1,0],[-2,-19],[-13,-90],[-10,-33],[-17,-43],[-8,-13],[-7,-12],[-3,-5],[-18,-1],[-5,3],[-28,15],[-8,4],[-12,19],[-9,27],[-1,5],[-3,11],[-6,10],[-5,10],[-23,40],[-66,107],[-10,16],[-2,3],[-2,2],[-33,21],[-6,4],[-33,9],[-23,-2],[-39,-20],[-17,-9],[-7,-1],[-29,-6],[-11,-11],[-7,-6],[-9,-9],[-1,-1],[-12,-25],[-8,-16],[0,-3],[-16,-78],[-14,-49],[-3,-6],[-3,-5],[-1,-10],[-25,-174],[-3,-16],[9,-32],[10,-19],[16,-28],[17,-48],[2,-7],[40,-52],[12,-16],[11,-14],[12,-8],[22,-16],[29,-22],[58,-52],[41,-63],[9,-23],[20,-78],[3,-34],[18,-199],[1,-11],[0,-5],[-1,-37],[5,-53],[4,-19],[4,-22],[2,-9],[4,-43],[1,-20],[2,-18],[-5,-86],[-23,-216],[-4,-17],[-2,-13],[-13,-59],[-18,-34],[-7,-13],[-9,-17],[-9,-7],[-10,-9],[-6,-6],[-6,-2],[-15,-5],[-2,-1],[-8,5],[-23,12],[-6,3],[-29,41],[-12,19],[-5,9],[-35,58],[-9,23],[-5,10],[0,1],[-39,123],[-5,17],[-13,43],[-18,23],[-5,7],[-1,1],[-2,1],[-42,18],[-3,2],[-7,-4],[-21,-11],[-2,-1],[-16,-39],[-15,-90],[-1,-11],[-9,-116],[0,-3],[-1,-19],[-4,-75],[-1,-23],[0,-58],[0,-21],[-2,-119],[-1,-13],[-6,-94],[0,-1],[-11,-92],[-17,-62],[-7,-14],[-4,-7],[-11,-20],[-16,-7],[-7,4],[-19,11],[-4,2],[-8,32],[-3,33],[-3,24],[-7,26],[-67,149],[-13,24],[-5,3],[-8,6],[-3,2],[-11,-18],[-5,-16],[-8,-53],[-8,-60],[-29,-88],[-6,-17],[-16,-49],[-10,-18],[-12,-22],[-7,-13],[-15,-12],[-20,-5],[-24,10],[-2,1],[-14,6],[-9,18],[-1,4],[-4,13],[-5,20],[-39,201],[-5,27],[-18,98],[-16,90],[-24,93],[-19,40],[-17,8],[-12,-9],[-22,-42],[-34,-82],[-9,-33],[-14,-77],[-27,-118],[-4,-7],[3,-62],[15,-43],[14,-6],[11,10],[21,18],[13,4],[1,-1],[30,-17],[38,-104],[31,-110],[6,-40],[5,-85],[35,-190],[2,-15],[3,-22],[7,-64],[9,-74],[13,-153],[6,-100],[-1,-20],[-2,-25],[-4,-48],[-8,-30],[-14,-26],[-31,-20],[-8,-5],[-2,4],[-26,-43],[-17,-48],[-16,-85],[-12,-97],[-2,-87],[5,-38],[16,-56],[6,-23],[10,-54],[1,-1],[10,-56],[137,-298],[21,-36],[33,-46],[11,-15],[26,-94],[8,-40],[10,-50],[4,-53],[-5,-76],[-13,-169],[-2,-32],[-1,-14],[-2,-9],[0,-1],[-3,-15],[-12,-22],[-12,-23],[-13,-36],[-10,-42],[-14,-105],[-7,-91],[-4,-60],[-4,-55],[1,-10],[-1,-17]],[[43581,69305],[-10,63],[0,2],[-8,99],[-7,30],[-3,14],[-3,16],[-4,17],[-18,52],[-17,47],[-21,63],[-3,9],[-7,33],[-3,34],[-1,9],[1,77],[0,1],[0,2],[0,24],[0,9],[-26,215],[-4,22],[-36,139],[-6,17],[-37,92],[-48,46],[-4,1],[-9,-4],[-8,-14],[-9,-32],[-10,-48],[-3,-28],[-2,-20],[-1,-15],[-3,-40],[0,-31],[1,-3],[4,-70],[1,-30],[1,-8],[-1,-14],[-4,-7],[-3,0],[-6,-1],[-14,77],[-11,85],[-23,186],[-2,25],[2,26],[0,43],[-1,23],[-2,7],[-1,6],[-3,9],[-6,21],[-15,42],[-5,13],[-9,23],[-18,23],[-1,1],[-1,1],[-15,6],[-10,5],[-8,0],[-13,-9],[-13,-29],[-16,-49],[-24,-94],[-1,-4],[-1,-7],[0,-3],[-1,-4],[0,-62],[-6,-29],[-7,-17],[-7,0],[-12,17],[-10,16],[-28,48],[-8,13],[-2,6],[0,6],[-15,26],[-1,1],[-5,18],[-2,13],[-5,25],[-4,12],[-14,31],[-3,3],[-52,118],[-4,8],[-26,-9],[-13,-11],[-11,-16],[-3,-5],[-2,0],[-6,2],[-24,32],[-2,2],[-21,27],[-10,20],[-2,4],[-3,11],[-1,5],[0,3],[-2,13],[-1,52],[3,37],[4,43],[0,22],[-5,6],[-4,7],[-14,4],[-5,-14],[-2,-7],[-5,-15],[-5,-8],[-1,-2],[-2,2],[-13,11],[-49,66],[-6,13],[-10,38],[-24,142],[-2,9],[-1,6],[0,1],[-5,12],[-5,7],[-11,7],[-18,8],[-38,37],[-4,4],[-5,6],[-6,15],[-9,29],[-5,23],[-1,11],[-2,12],[-5,29],[0,2],[-6,21],[-15,38],[-6,26],[-8,45],[-22,112],[-6,-5],[-24,25],[-50,88],[-6,80],[-2,13],[-7,16],[-26,40],[-17,18],[-13,8],[-17,1],[-8,7],[-22,40],[-29,58],[-12,30],[-9,16],[-6,7],[-2,2],[-22,15],[-7,-1],[-23,-33],[-6,-16],[-1,-2],[0,-4],[-1,-5],[2,-12],[5,-11],[2,-2],[12,-11],[0,-2],[-5,-66],[-16,-31],[-7,-6],[-6,1],[-6,7],[-2,5],[-5,13],[-2,12],[-4,23],[-3,19],[-3,25],[0,14],[-1,8],[-9,162],[0,9],[0,2],[5,32],[0,21],[-3,8],[-5,2],[-30,1],[-22,-6],[-3,-5],[-3,-9],[-1,-29],[-1,-44],[-1,-8],[-1,-1],[-11,-31],[-7,-10],[-7,-1],[-26,-3],[-10,-1],[-44,-5],[-2,0],[-5,9],[-1,1],[-12,25],[-3,8],[-3,5],[-5,17],[-2,9],[-2,12],[0,1],[0,18],[2,13],[15,34],[3,8],[1,4],[1,6],[3,17],[1,21],[0,17],[0,1],[-1,11],[-5,28],[-4,13],[-3,14],[-4,11],[-19,15],[-7,11],[-4,7],[-29,63],[-13,29],[-31,71],[-8,27],[-1,4],[-5,23],[-6,16],[-8,10],[-7,4],[-11,-2],[-10,-9],[0,-1],[-2,-2],[-12,-16],[-7,-4],[-27,0],[-11,7],[-5,10],[-3,18],[-1,44],[5,92],[2,25],[0,40],[-1,12],[-3,7],[-2,7],[-5,4],[-4,-1],[-9,-2],[-5,-1],[-33,-15],[-10,-7],[-7,-5],[-29,-6],[-7,-2],[-11,-15],[-2,-2],[-8,1],[-18,8],[-2,1],[-7,3],[-5,6],[-4,7],[-17,32],[-3,3],[-10,11],[-6,6],[-7,3],[-15,-5],[-4,-3],[-7,-6],[-19,-16],[-3,-2],[-7,0],[-45,-23],[-8,-4],[-11,-3],[-2,0],[-42,13],[-1,1],[-10,8],[-11,12],[-9,10],[-5,5],[-20,13],[-6,2],[-18,6],[-4,17],[-5,34],[-5,41],[0,22],[1,3],[4,21],[10,22],[15,22],[5,14],[7,39],[6,53],[0,35],[-3,27],[0,2],[-3,6],[-11,-4],[-11,-13],[-9,-1],[-3,-1],[-43,2],[-9,0],[-6,7],[-61,60],[-6,20],[-1,3],[-1,1],[-35,38],[-12,15],[-47,121],[-2,5],[-4,-11],[-3,-29],[-2,-82],[-2,-115],[0,-20],[-1,-65],[-3,-24],[0,-1],[-3,-4],[-8,16],[-8,8],[-12,6],[-6,0],[-16,-34],[-7,-16],[-5,-19],[-2,-13],[0,-25],[0,-3],[1,-5],[0,-19],[-1,-6],[0,-1],[-6,-6],[-9,-3],[-8,6],[-3,2],[-1,2],[-47,53],[-20,23],[-1,10]],[[40784,73236],[2,20],[0,6],[0,57],[0,5],[2,273],[2,91],[1,44],[1,120],[0,3],[1,41],[1,102],[-1,36],[0,4],[1,69],[6,251],[5,223],[4,207],[1,36],[10,407],[0,1],[3,102],[5,168],[3,160],[5,156],[0,70],[7,276],[3,106],[6,226],[3,119],[1,30],[1,73],[9,379],[1,61],[1,55],[3,127],[2,95],[6,171],[2,55],[3,189],[7,302],[8,299],[3,133],[0,5],[5,146],[7,218],[9,339],[2,66],[8,280],[2,87],[2,84],[7,266],[4,174],[1,15],[3,175]],[[40784,73236],[-1,-8],[-32,-271],[-9,-84],[-17,-157],[-17,-149],[-45,-433],[-28,-226],[-11,-102],[-15,-131],[-16,-138],[-33,-295],[-16,-153],[-7,-62],[-17,-149],[-17,-161],[-8,-69],[-26,-244],[-8,-65],[-30,-273],[-1,-10],[-17,-147],[-15,-127],[-28,-258],[-5,-45],[-5,-54],[-31,-266],[-7,-58],[-13,-120],[-30,-274],[0,-6],[-29,-252],[-24,-211],[-23,-215],[-32,-288],[-9,-83],[-34,-310],[-11,-98],[-7,-66],[-7,-58],[-21,-200],[-18,-175],[12,-181],[0,-1],[17,-211],[7,-84],[11,-153],[9,-117],[15,-197],[8,-101],[0,-5],[17,-221],[7,-87],[4,-69],[29,-363],[0,-9],[3,-51],[19,-255],[13,-164],[10,-124],[1,-14],[2,-40],[8,-98],[7,-99],[12,-163],[3,-44],[21,-262],[0,-3],[10,-125],[19,-269],[27,-361],[7,-80],[11,-134],[6,-99],[13,-215],[5,-47],[21,-328],[-9,-54],[-1,-44],[2,-62],[-3,-73],[6,-69],[2,-47],[7,-84],[9,-47],[6,-51],[8,-62],[6,-84],[2,-175],[2,-123],[5,-55],[-1,-47],[-4,-55],[-5,-55],[-4,-76],[6,-58]],[[40452,60650],[-1,-19],[-1,-36],[-62,-11],[-50,0],[-56,0],[-28,4],[-66,0],[-33,0],[-37,0],[-17,0],[-2,0],[-75,3],[-74,0],[-33,8],[-12,3]],[[39905,60602],[-26,37],[-75,-4],[-22,0],[-53,4],[-104,22],[-15,5],[-6,2],[-34,7],[-57,11],[-40,11],[-120,29],[-55,13],[-6,2],[-17,3],[-31,8],[-16,3],[-84,18],[-28,7],[-3,1],[-20,3],[-19,8],[-12,3],[-19,4],[-43,11],[-1,0],[-101,25],[-179,44],[-174,40],[-46,4],[-92,-219],[-134,-320],[-35,-84],[-35,-84],[-24,-54],[-22,-55],[-75,-167]],[[38082,59940],[-7,156],[-23,10],[-97,40],[-33,118],[-3,19],[-2,22],[-2,11],[-9,36],[-6,32],[-3,17],[-12,70],[-1,41],[12,202],[43,81],[28,77],[7,111],[-19,67],[-13,104],[7,106],[21,249],[16,72],[7,27],[39,102],[5,82],[-25,89],[-31,53],[-32,43],[-4,49],[-2,33],[-7,65]],[[37936,62124],[16,29],[33,100],[16,73],[5,77],[-16,115],[-14,80],[-27,120],[4,58],[8,134],[19,185],[24,212],[58,130],[19,36],[18,34],[2,3],[53,52],[38,29],[27,126],[6,46],[4,27],[1,65],[-33,94],[-18,12],[-4,2],[-11,33],[-20,59],[-7,26],[-5,126],[-1,28],[-3,79],[26,152],[27,50],[23,43],[2,4],[53,18],[15,-2],[21,41],[6,23],[1,6],[14,56],[2,23],[3,41],[4,56],[-8,28],[-31,107],[-43,63],[-9,13],[-9,13],[-48,134],[-7,26],[-22,80],[-24,84],[-18,23],[-15,20],[-22,24],[-21,72],[-41,141],[-17,56],[1,95],[0,39],[14,162],[-9,48],[-17,61],[-7,8],[-40,36],[-4,2],[-24,10],[-19,-2],[-7,8],[-11,39],[-10,63],[5,82],[-6,77],[-5,187],[-1,35],[-27,78],[-26,50],[-24,10],[-32,74],[-20,46],[-25,65],[-16,58],[2,36],[6,72],[-3,21],[-40,165],[-12,44],[-10,7],[-12,7],[-9,14],[-7,13],[-14,50],[-9,73],[-1,18],[-8,139],[-25,31],[-43,56],[-8,10],[-17,15],[-30,71],[-32,68],[-43,64],[-1,1],[-49,50],[0,1],[-1,0],[-17,20],[-5,-1],[-1,0],[-2,0],[-1,0],[-25,3],[-18,0],[-41,-29],[-25,-25],[0,-1],[-31,-30],[-1,-1],[-1,-1],[-40,-30],[-5,-3],[-55,-41],[-2,-2],[-1,0],[-21,-13],[-1,0],[-2,-1],[-10,-2],[-1,0],[-1,-1],[-2,1],[-1,0],[-15,4],[-2,0],[-1,1],[-8,4],[-24,13],[-1,0],[0,1],[-153,103],[-2,0],[-3,13],[-18,71],[-20,80],[-9,133],[-4,77],[-1,7],[1,13],[15,148],[1,23],[3,80],[1,9],[-4,61],[-12,64],[-2,9],[-7,24],[-3,83],[-1,42],[-13,90],[-14,17],[-4,5],[-27,75],[-4,11],[-27,73],[-6,15],[-4,2],[-35,83],[-35,138],[-8,28],[-27,41],[-8,13],[-45,117],[-15,63],[-6,24],[5,82],[6,29],[2,8],[11,25],[5,72],[-7,42],[-31,101],[-8,19],[-45,13],[-8,-8],[-23,-24],[-20,5],[-6,1],[-4,3],[-11,8],[-15,56],[-1,3],[-4,53],[-30,106],[-56,196],[-6,15]],[[36211,70572],[18,56],[17,53],[12,25],[17,33],[11,11],[21,15],[17,25],[16,33],[40,113],[18,47],[25,80],[27,62],[14,18],[25,15],[23,33],[9,29],[17,43],[21,48],[16,29],[15,40],[10,47],[-1,73],[-6,102],[1,55],[7,54],[9,40],[12,55],[8,29],[11,33],[26,33],[15,25],[12,29],[9,29],[11,37],[30,120],[9,36],[16,70],[11,58],[6,69],[7,95],[11,94],[94,379],[45,182],[30,119],[7,27],[32,127],[7,73],[4,24],[2,16],[9,76],[14,121],[39,331],[17,149],[43,383],[5,45],[27,242],[10,88],[28,255],[20,182],[10,98],[17,153],[5,40],[8,69],[23,215],[26,229],[38,332],[22,200],[11,102],[6,51],[22,193],[4,40],[1,105],[5,292],[0,72],[1,37],[0,11],[1,91],[4,368],[4,204],[-31,211],[-13,89],[-1,5],[-86,579],[-5,37],[-34,236],[-16,110],[-10,65],[-51,342],[-26,179],[-16,113]],[[36211,70572],[-39,107],[-27,50],[-7,2],[-38,12],[-7,24],[0,1],[-1,1],[-16,28],[-34,98],[-11,39],[0,50],[0,73],[-1,75],[-6,32],[1,69],[4,74],[-11,53],[-22,104],[-2,9],[-1,5],[-2,3],[-11,17],[-9,21],[-8,20],[-13,15],[-4,5],[-3,3],[-13,30],[-1,4],[-15,48],[-10,33],[-2,12],[-5,29],[-5,33],[-3,49],[-5,132],[-3,85],[5,210],[5,73],[-7,22],[-19,32],[-49,10],[-64,-18],[-16,-13],[-3,-5],[-5,-11],[-14,-25],[-5,-30],[-1,-2],[0,-1],[-8,-15],[-7,-12],[-18,-22],[-16,-4],[-67,32],[-2,1],[-19,-12],[-7,-8],[-68,-85],[-43,-12],[-87,-14],[-31,8],[-6,2],[-13,-6],[-7,-4],[-41,-31],[-3,-2],[-19,12],[-11,30],[-8,23],[-16,4],[-8,3],[-23,7],[-23,-43],[-16,-30],[-23,-31],[-75,-129],[-6,-11],[-20,-75],[-1,-5],[-8,-41],[-16,-38],[-22,-51],[-13,-25],[-10,-19],[-22,8],[-20,8],[-14,41],[-13,39],[-38,16],[-15,-11],[-3,-2],[-17,6],[-45,15],[-11,4],[-17,42],[-4,11],[-20,23],[-3,1],[-35,14],[-1,0],[-2,-2],[-11,-17],[-7,-16],[-8,-17],[-7,-116],[-14,-64],[-21,-40],[-33,-41],[-2,-2],[-54,-60],[-35,-24],[-8,-5],[-10,-6],[-11,4],[-23,8],[-8,2],[-14,16],[-5,9],[-12,22],[-32,13],[-31,-7],[-26,-24],[-22,-41],[-14,-39],[-2,-28],[-7,-22],[-44,-78],[-9,-14],[-34,-31],[-32,-17],[-10,5],[-17,8],[-2,1],[-2,8],[-24,85],[-1,3],[-3,13],[-19,30],[-9,16],[-28,11],[-14,-25],[-11,-19],[-12,-20],[-3,-18],[-5,-33],[-13,-45],[-12,-21],[-28,-46],[-2,-4],[-59,-16],[-95,-1],[-10,3],[-7,0],[-32,3]],[[48242,75695],[-2,-77],[-1,-91],[-1,-80],[0,-9],[-1,-46],[0,-4],[-1,-43],[-2,-124],[-3,-167],[-2,-128],[-1,-83],[-2,-113],[-1,-37],[-4,-219],[0,-10],[-2,-87],[0,-48],[-1,-69],[-2,-146],[-1,-80],[-3,-134],[-2,-142],[-4,-182],[0,-61],[0,-16],[-6,-295],[-1,-36],[-1,-38],[0,-39],[-2,-54],[-1,-44],[0,-44],[-2,-113],[-1,-58],[-1,-58],[-1,-77],[-1,-65],[-2,-51],[-1,-106],[-1,-69],[-1,-69],[-2,-127],[-1,-91],[-1,-59],[-2,-87],[-3,-179],[-2,-116],[-1,-27],[0,-9],[-1,-102],[-2,-59],[-1,-57],[0,-1],[-2,-124],[-2,-173],[0,-1],[-1,-70],[-4,-182],[-2,-134],[-1,-62],[-7,-419],[-2,-157],[-5,-243],[0,-8],[-1,-73],[-1,-83],[-1,-88],[-1,-65],[-1,-62],[-1,-51],[-2,-55],[-1,-76],[-1,-62],[-3,-153],[-4,-175],[-5,-317],[0,-51],[-1,-47],[-4,-193],[-2,-102],[0,-40],[-2,-102],[-4,-186],[-1,-69],[-2,-109],[-2,-113],[-9,-510],[-3,-134],[-1,-88],[-2,-160],[-1,-47],[0,-44],[-2,-127],[-4,-281],[-2,-127],[-3,-211],[-3,-135],[-1,-106],[-3,-338],[-1,-135],[-1,-153],[-2,-66],[-5,-411],[0,-39],[0,-1],[-1,-44],[-1,-222],[-4,-215],[-1,-167],[-2,-157],[-2,-138],[-3,-138],[-1,-50],[0,-1],[-1,-59],[0,-76],[-1,-58],[0,-59],[-4,-295],[-2,-120],[0,-47],[-2,-189],[-1,-201],[-1,-62],[-1,-72],[-3,-233],[-1,-44],[-1,-58],[0,-70],[-1,-131],[-1,-69],[-1,-65],[-3,-197],[-2,-244],[-1,-106],[0,-22],[0,-25],[-2,-193]],[[48015,60584],[-18,0],[-94,4],[-47,0],[-85,-4],[-17,0],[-61,-7],[-18,0],[-33,-4],[-1,0],[-18,0],[-26,0],[-27,0],[-5,0],[-14,0],[-11,0],[-24,0],[-26,-3],[-59,-4],[-33,0],[-37,0],[-35,0],[-20,0],[-51,-4],[-44,0],[-44,0],[-88,-3],[-45,-4],[-109,-4],[-123,-11],[-35,-3],[-7,0],[-38,0],[-3,0],[-11,0]],[[46708,60537],[-15,68],[-13,57],[-1,60],[9,172],[-1,65],[-6,76],[-10,60],[-52,189],[-53,97],[-13,10],[-16,58],[5,100],[10,46],[6,131],[-29,239],[-10,64],[-14,53],[-13,19],[-58,44],[-6,12],[-28,99],[-5,26],[-7,63],[3,53],[2,48],[8,152],[21,186],[3,25],[0,17],[0,204],[-1,223],[-35,125],[-7,27],[-7,26],[-2,2],[-25,47],[-26,43],[-54,102],[-38,104],[-31,51],[-40,91],[-41,92],[-9,81],[-3,24],[-6,161],[-2,30],[-1,8],[-6,27],[-4,14],[-33,70],[-26,30],[-93,338],[-58,207],[1,9],[-5,2],[-31,110],[-58,26],[-54,23],[-24,43],[-16,11],[-101,39],[-43,23],[-38,72],[-14,34],[-33,121],[-1,18],[-9,74],[-1,37],[-62,222],[-8,30],[-30,91],[-21,82],[-13,48],[-4,48],[-8,100],[0,79],[3,82],[-29,104],[-34,100],[-14,41],[-3,2],[-14,38],[-42,18],[-34,24],[-43,45],[-8,9],[-25,62],[-26,94],[-16,85],[-2,20],[-18,200],[0,1],[-4,76],[0,46],[9,148],[27,113],[39,90],[3,8],[0,2],[16,74],[6,122],[-41,147],[-28,58],[-36,136],[-4,47],[5,81],[-17,62],[-3,12],[-35,15],[-49,-16],[-11,-5],[-102,-76],[-59,-30],[-21,-38],[-19,-33],[-94,-47],[-29,-6],[-37,-17],[-28,-15],[-30,8],[-56,121],[-25,61],[-5,18],[-7,19],[-6,17],[-3,14],[-5,18],[-2,15],[-4,29],[-2,9],[-2,6],[-13,35],[-8,20],[-4,11],[-27,7],[-13,-8],[-29,-43],[-8,-15],[-15,-27],[-2,-5],[-5,-1],[-24,-8],[-39,-6],[-56,20],[-7,12],[-88,85],[-17,29],[-36,71],[-36,61],[-86,102],[-37,57],[-6,21],[-6,0],[-24,17],[-37,2],[-34,-31],[-30,12],[-14,29],[-21,83],[-16,118],[-21,148]],[[33377,70131],[-14,-58],[-11,-55],[-19,-76],[-23,-102],[-10,-40],[-16,-66],[-13,-62],[-4,-21],[0,-1],[-5,-25],[-13,-66],[-22,-87],[-13,-47],[-12,-55],[-8,-29],[-12,-62],[-9,-36],[-24,-102],[-19,-80],[-13,-55],[-19,-84],[-10,-47],[-41,-171],[-1,-9],[-13,-60],[-14,-59],[-9,-36],[-8,-36],[-17,-77],[-6,-29],[-16,-68],[-2,-9],[-8,-36],[-13,-47],[-16,-66],[-18,-80],[-9,-40],[-15,-69],[-16,-69],[-11,-45],[-1,-3],[-13,-58],[-13,-51],[-7,-40],[-29,-124],[-24,-109],[-10,-40],[-10,-40],[-33,-109],[-11,-33],[-15,-51],[-29,-95],[-62,-207],[-12,-37],[-11,-40],[-27,-91],[-24,-76],[-32,-109],[-43,-142],[-10,-33],[-104,-342],[-18,-62],[-19,-62],[-27,-91],[-29,-95],[-15,-47],[-44,-150],[-18,-58],[-12,-40],[-30,-98],[-21,-73],[-16,-51],[-33,-109],[-48,-160],[-26,-84],[-16,-51],[-14,-40],[-14,-48],[-13,-43],[-15,-51],[-9,-29],[-24,-77],[-14,-44],[-13,-43],[-39,-66],[-32,-47],[-1,-3],[-43,-190],[-22,-98],[-8,-33],[-39,-179],[-6,-28],[-5,-26],[-23,-95],[-10,-50],[-5,-23],[-8,-32],[-26,-117],[-49,-222],[-62,-280],[-14,-59]],[[31455,62885],[-18,-76],[-10,-37],[-14,-47]],[[31413,62725],[-93,18],[-27,-32],[-26,-4],[-18,-15],[-25,-32],[-17,-11],[-11,0],[-14,7],[-11,11],[-11,7],[-51,-102],[-14,-7],[-4,-37],[-14,-29],[-18,4],[-18,15],[-23,-11],[-10,43],[-13,11],[-17,-7],[-9,58],[-17,33],[10,33],[5,73],[-3,58],[-26,29],[-17,-22],[-15,-22],[-24,-18],[-16,-7],[-37,-22],[-15,-4],[-13,55],[-26,15],[-10,54],[6,69],[-23,22],[-13,-3],[-16,-19],[-12,-25],[-16,-26],[-12,-14],[-11,-18],[-21,-19],[-13,-21],[-16,3],[-17,-3],[-11,7],[-16,3],[-16,-18],[-12,-14],[-12,-11],[-19,-4],[-4,40],[-19,-14],[-16,-11],[-17,0],[-17,0],[-18,3],[-30,-14],[-20,0],[-15,-11],[-22,3],[2,48],[-12,-15],[-4,-54],[-15,-19],[-22,-18],[-13,-14],[-20,-15],[-27,-22],[-15,-14],[-21,-11],[-16,-4],[-11,-11],[-12,18],[-14,15],[-14,11],[-20,22],[-15,32],[-13,37],[-25,0],[-13,0],[-10,44],[-12,29],[-23,-8],[-22,-25],[-16,-11],[-13,11],[-16,0],[-12,11],[-8,29],[-13,25],[-13,11],[-5,55],[-7,29],[-13,40],[-15,18],[-12,73],[-9,37],[-15,36],[-12,4],[-13,14],[-21,22],[-2,40],[-12,11],[-27,87],[1,48],[-15,11],[-3,36],[-18,7],[-11,-40],[-1,-40],[3,-87]],[[29672,63275],[-26,-15],[-12,22],[-22,-36],[-14,25],[-19,66],[-16,25],[-11,48],[-4,-55],[-10,22],[-2,-51],[-12,0],[-9,36],[-10,55],[-6,106],[-8,32],[-7,40],[-7,48],[-16,-22],[-16,25],[3,40],[0,44],[-15,18],[-12,33],[-18,47],[4,62],[-17,-14],[14,76],[-15,33],[15,87],[-14,-22],[11,99],[-30,98],[-17,29],[-16,-3],[-20,-19],[-8,-54],[-15,-22],[-20,-29],[-17,-11],[-40,-51],[-12,-4],[-12,15],[-17,-11],[-22,18],[-9,33],[-20,22],[-13,25],[-12,7],[-14,-3],[-18,-29],[-12,51],[-13,62],[-14,47],[-7,58],[-14,37],[-12,18],[-12,14],[-21,-3],[-11,-40],[-14,-44],[-13,-4],[-13,-22],[-13,-10],[-18,-33],[-15,11],[-11,-33],[-11,0],[-12,-33],[-14,-51],[-11,-58],[-16,-4],[-18,-32],[8,-33],[9,-55],[9,-47],[15,-11],[-1,-62],[-34,-47],[-4,-44],[-4,-44],[-11,0],[-16,0],[-19,-11],[-20,4],[-14,-7],[-23,-11],[-20,0],[-14,18],[-29,58],[-16,8],[-28,-19],[-34,-14],[-13,-26],[-12,-40],[-3,-51],[-7,-47],[6,-51],[3,-44],[-11,-84],[-9,-61],[-6,-51],[-15,-44],[-25,-33],[-20,-7],[-19,44],[-20,25],[-26,26],[-11,7],[-11,-22],[-23,-7],[-18,-33],[-10,-36],[-16,-15],[-12,-4],[-13,40],[-17,19],[-18,29],[-1,-51],[-10,-40],[-6,-51],[0,-59]],[[28185,63107],[-54,543],[-8,78],[0,2],[-99,1005],[-17,200],[-13,139],[-8,87],[-10,106],[-10,105],[-3,37],[-13,131],[-12,131],[-31,306],[-4,51],[-5,47],[-12,124],[-9,87],[-45,477],[-14,144],[-2,24],[-21,214],[-1,8],[-5,58],[-15,144],[-2,23],[-3,44],[0,1],[-21,199],[-5,59],[-8,76],[0,3],[-8,81],[-7,73],[-18,180],[0,2],[-23,236],[-4,40],[-16,40],[-35,85],[-11,28],[-90,226],[-37,87],[-2,4],[-28,65],[-7,15],[-19,46],[-2,5],[-19,51],[-24,55],[-5,11],[-13,32],[-3,8],[-8,29],[-31,65],[-4,11],[-67,161],[-12,27],[-12,27],[-12,29],[-15,46],[-13,42],[-2,5],[-22,71],[-13,33],[-17,40],[-13,29],[-78,182],[-100,237],[-90,207],[-96,226],[-17,40],[-390,940],[14,40],[15,40],[11,32],[8,51],[13,33],[11,29],[4,59],[8,51],[9,43],[17,37],[25,25],[4,44],[16,14],[11,-10],[20,-26],[13,-29],[16,-22],[22,-15],[17,26],[24,0],[16,11],[15,18],[13,0],[26,51],[19,36],[13,19],[20,18],[15,47],[10,40],[14,22],[-4,40],[12,58],[7,33],[38,117],[6,73],[8,29],[16,43],[12,30],[11,3],[19,-11],[22,-3],[17,32],[15,19],[16,58],[19,18],[18,29],[14,26],[9,25],[55,138],[8,37],[19,120],[0,73],[-3,54],[-1,41],[6,36],[10,73],[-13,43],[9,84],[5,33],[23,98],[2,48],[5,43],[15,88],[3,43],[5,48],[0,58],[13,33],[14,65],[3,48],[26,120],[4,54],[-12,70],[-3,58],[4,109],[-8,40],[-7,40],[-3,37],[-5,69],[1,94],[-21,22],[-9,40],[-18,29],[-6,33],[31,73],[10,66],[-6,69],[-10,29],[-2,44],[-10,54],[-6,55],[-8,98],[-3,51],[-9,26],[-12,25],[-24,26],[-14,0],[-10,51],[-7,40],[-7,29],[-3,47],[-9,26],[-9,43],[-10,55],[-6,33],[-13,32],[-21,77],[-5,47],[9,73],[20,98],[6,33],[-16,44],[-21,33],[-19,32],[-13,22],[-12,44],[3,76],[19,62],[-14,59],[-21,47],[2,54],[-12,41],[-18,25],[-5,55],[0,20],[0,23],[-9,37],[-13,3],[-1,3],[-11,34],[-5,3],[-13,8],[-12,32],[-5,30],[-4,25]],[[92076,67510],[-5,-2],[-10,-3],[-19,15],[-12,33],[-2,5],[-10,28],[-11,32],[-5,-4],[-12,-9],[0,-1],[-18,-30],[-10,-15],[-5,-21],[-2,-27],[9,-46],[10,-25],[36,-43],[5,-7],[7,-27],[0,-4],[-1,-5],[-1,-22],[-9,-14],[-11,-3],[-22,12],[-31,17],[-17,-5],[-11,-27],[-5,-57],[1,-122],[14,-49],[24,-32],[5,-8],[5,-19],[2,-8],[0,-2],[-3,-38],[-30,-50],[-6,-9],[0,-47],[20,-81],[30,-57],[5,-8],[4,-19],[5,-19],[1,-5],[-2,-36],[-8,-14],[-1,0],[-2,-4],[-10,6],[-11,28],[-3,7],[-15,13],[-16,-23],[-3,-36],[-5,-146],[-34,-28],[-7,4],[-1,0],[-6,4],[-7,-15],[-4,-31],[4,-62],[8,-93],[7,-27],[2,-128],[0,-28],[1,-13],[-17,-117],[-13,-67],[-13,-72],[-3,-4],[-13,-20],[-31,-6],[-49,-62],[-4,-7],[-11,-22],[-2,-31],[-7,-124],[-1,-12],[0,-4],[-4,-156],[1,-23],[0,-21],[-8,7],[-14,12],[-4,4],[-6,5],[-12,-71],[12,-65],[10,-53],[1,-4],[12,-22],[0,-1],[6,-59],[-1,-9],[-19,-120],[0,-2],[-8,-83],[-4,-42],[0,-4],[1,-83],[0,-4],[-9,-73],[-4,-21],[-6,-32],[-22,-122],[-3,-7],[-27,-60],[-2,-2],[-1,-1],[-2,-3],[-8,-1],[-11,7],[-2,1],[-2,-5],[-3,-6],[14,-75],[0,-7],[2,-12],[2,-14],[-26,-51],[-8,-15],[0,-5],[1,-17],[1,-9],[0,-33],[0,-2],[0,-1],[-1,-5],[-2,-15],[-55,-151],[-4,-9],[-6,-17],[-5,-9],[-17,0],[-10,3],[-21,24],[-1,2],[-4,3],[-2,4],[-3,-5],[-6,-12],[-5,13],[-6,9],[-27,41],[-4,6],[-50,-7],[-10,-13],[-1,0],[-7,-9],[-9,9],[-29,31],[-11,11],[-1,1],[-1,1],[-47,38],[-9,8],[-7,2],[-17,3],[-9,4],[-16,6],[0,1],[-69,61],[-15,29],[-57,-51],[-9,-7],[-12,0],[-37,3],[-23,6],[-31,7],[0,1],[-10,37],[-29,91],[-1,1],[-6,6],[-4,3],[-13,-5],[-6,-6],[-14,-15],[-7,-14],[-20,-39],[-7,-8],[-9,-6],[-96,-11],[-12,2],[-10,6],[-63,67],[-24,34],[-14,18],[-15,19],[38,353],[16,146],[9,84],[18,173],[0,1],[33,299],[29,273],[13,109],[28,262],[7,55],[71,666],[57,525],[-5,3],[-70,40],[-26,4],[-78,15],[-46,7],[-311,54],[-228,41],[-394,69],[-28,0],[-14,3],[-133,22],[-51,11],[-34,4]],[[89446,67568],[-3,153],[-5,94],[-6,153],[-4,120],[-3,139],[-3,113],[-2,123],[-3,164],[-4,91],[-1,84],[-3,211],[-1,69],[0,2],[-9,268],[-2,105],[-2,88],[-1,65],[-4,113],[-2,57],[-3,78],[-9,177],[-1,23],[-5,95],[-2,116],[-3,230],[-6,196],[-6,128],[0,87],[22,99],[27,127],[16,73],[16,73],[24,116],[22,102],[60,270],[78,375],[3,17],[8,34],[42,193],[10,47],[14,73],[14,62],[19,87],[22,102],[2,14],[14,70],[12,39],[2,8],[7,31],[14,67],[1,3],[14,67],[15,65],[18,84],[7,33],[6,36],[13,58],[12,59],[23,101],[7,48],[-41,280],[-9,66],[-7,40],[-6,43],[-10,73],[-2,5],[-85,232],[-10,29],[-10,26],[-31,473],[-7,98],[-15,99],[-6,36],[-16,135],[-30,189],[-13,109],[23,95],[36,142],[14,55],[26,112],[4,66],[15,25],[8,44],[11,18],[3,59]],[[89759,76092],[24,43],[1,3],[19,99],[14,22],[43,11],[24,22],[37,105],[37,81],[63,-41],[35,-25],[60,-29],[35,-11],[66,-7],[10,-19],[1,0],[16,-29],[27,-40],[52,-29],[25,-18],[12,-31],[3,-9],[-17,-95],[-6,-94],[-3,-41],[22,-55],[11,-28],[39,-3],[13,-1],[13,9],[25,17],[29,25],[29,4],[33,-15],[13,30],[6,14],[9,11],[12,14],[9,2],[13,2],[35,-7],[25,-131],[3,-79],[4,-82],[25,-83],[41,0],[5,5],[28,27],[38,8],[17,6],[26,8],[30,40],[43,66],[15,-37],[17,-40],[10,-23],[15,-35],[18,-51],[5,-14],[-18,-5],[-12,-3],[-24,-83],[-17,-146],[9,-138],[13,-71],[6,-39],[26,-120],[-2,-42],[-2,-45],[-14,-23],[-24,-43],[-29,-62],[-1,-11],[-5,-43],[-7,-146],[8,11],[13,18],[12,146],[57,69],[18,95],[13,98],[-15,29],[-24,71],[-9,24],[-15,138],[0,153],[20,98],[34,0],[15,0],[0,91],[0,3],[-9,78],[-15,41],[-6,17],[-16,40],[-8,62],[-22,33],[-9,14],[-53,-4],[-26,-18],[-26,-14],[-13,-18],[-13,-19],[-35,-58],[-2,28],[-6,78],[-3,53],[-2,49],[-16,63],[-2,6],[-33,97],[-4,12],[-33,109],[-35,66],[-14,12],[-14,13],[-30,-14],[-29,29],[-24,58],[-21,-6],[-17,-5],[-11,9],[-20,17],[-33,47],[-1,1],[-28,57],[-25,48],[-31,40],[13,102],[28,65],[28,47],[3,8],[10,29],[14,44],[12,19],[21,35],[18,33],[3,6],[17,38],[35,54],[46,71],[4,6],[24,43],[13,70],[21,40],[31,43],[31,29],[61,44],[8,12],[23,32],[31,98],[23,7],[16,4],[22,11],[26,4],[1,0],[7,2],[14,5],[35,25],[43,26],[53,36],[30,26],[29,80],[26,33],[26,0],[46,3],[31,15],[43,33],[36,21],[24,19],[19,32],[24,55],[51,36],[38,37],[37,11],[41,22],[29,-15],[22,4],[25,-8],[38,15],[52,44],[54,-4],[29,0],[34,22],[1,3],[29,71],[1,2],[31,77],[33,25],[28,26],[52,-11],[27,0],[34,-18],[29,-8],[29,8],[35,43],[38,-2],[12,-1],[34,-44],[19,-25],[37,-44],[1,0],[56,-51],[30,-11],[1,0],[20,14],[11,8],[13,4],[31,10],[40,33],[56,11],[67,-18],[29,14],[28,0],[24,0],[55,-14],[17,-4],[26,-3],[23,-15],[37,-25],[51,-22],[53,-11],[37,18],[19,43],[7,15],[11,-7],[40,-26],[28,-7],[35,11],[29,-19],[5,-3],[43,-62],[36,-47],[37,-55],[38,-62],[28,-54],[25,-62],[22,-29],[11,-26],[15,-36],[13,-27],[25,-53],[17,-44],[32,-58],[23,-40],[4,-7],[32,-51],[9,-29],[17,-59],[22,-59],[19,-54],[14,-54],[19,-95],[23,-164],[-17,-247],[0,-2],[-19,-119],[-20,37],[-22,26],[-8,10],[-25,-40],[-15,-25],[-1,0],[-32,3],[-2,-2],[-24,-30],[-5,-99],[-30,40],[-23,77],[-34,84],[-49,65],[-20,56],[-15,42],[-37,84],[-17,10],[-45,27],[-32,58],[-13,-4],[-28,-7],[-7,-87],[-8,-27],[-15,-46],[25,-84],[-7,-73],[-3,-29],[-4,-35],[-4,-31],[-8,-72],[-7,-28],[-11,-38],[-11,-46],[-6,-23],[1,-95],[7,-21],[14,-41],[18,-43],[3,-6],[26,-38],[46,-55],[22,-54],[22,-44],[-20,-62],[-21,-4],[-13,-3],[-34,-4],[-25,-76],[-25,-69],[-22,-33],[-25,-7],[-20,0],[-20,36],[3,95],[-4,94],[-24,51],[-20,58],[-30,51],[-20,59],[-17,8],[-7,3],[-21,45],[-9,20],[-18,55],[-24,47],[-23,33],[-7,-2],[-16,-5],[-47,-22],[-17,84],[-5,25],[-20,66],[-4,17],[-11,59],[-28,98],[-31,51],[-48,22],[-39,-58],[-21,-84],[43,15],[49,-8],[31,-98],[22,-87],[5,-34],[4,-35],[0,-35],[-2,-71],[8,-33],[12,-58],[1,0],[37,-29],[37,-26],[30,-57],[6,-12],[23,-40],[26,-80],[3,-66],[3,-76],[21,-22],[3,-4],[20,-29],[8,-14],[16,-29],[16,-69],[3,-15],[3,-11],[28,-91],[32,-55],[35,-29],[21,-80],[-2,-64],[-3,-67],[23,-51],[33,-7],[39,156],[6,21],[14,56],[1,4],[11,76],[27,33],[11,13],[19,23],[25,47],[30,37],[8,12],[14,24],[14,44],[11,36],[10,53],[8,42],[12,72],[4,23],[14,80],[27,-58],[22,-44],[10,-18],[17,-29],[26,-3],[7,-1],[5,-12],[15,-32],[26,18],[27,102],[26,99],[8,36],[4,18],[57,-193],[28,-144],[6,-27],[-11,-65],[-35,-73],[-30,-146],[-44,-51],[-21,-29],[-19,-44],[-3,-52],[-2,-39],[-2,-43],[-2,-66],[0,-32],[0,-10],[-1,-45],[-30,-26],[-27,-68],[-9,-23],[-4,-16],[-46,-184],[-14,-70],[-7,-39],[-5,-25],[-12,-74],[-7,-50],[-2,-19],[-5,-40],[-8,-76],[-5,-146],[2,-63],[1,-21],[0,-19],[-2,-79],[-3,-49],[-2,-42],[-5,-102],[-38,-55],[-41,-112],[-35,-62],[-41,-44],[-35,11],[-29,14],[-29,66],[-21,69],[-1,-1],[-37,-39],[-27,-33],[-31,55],[-33,-4],[-21,-11],[-27,62],[-29,11],[-33,-22],[-10,52],[-8,47],[-16,76],[-35,51],[-9,-35],[-2,-8],[0,-1],[15,102],[9,46],[13,67],[-11,88],[-6,58],[-18,39],[-10,23],[-22,94],[7,-109],[12,-79],[7,-52],[19,-69],[-23,-69],[-26,-77],[-15,-43],[9,-59],[4,-25],[31,-33],[15,-62],[14,-82],[5,-31],[34,-62],[20,-29],[2,1],[22,3],[16,-66],[15,-58],[21,-18],[23,40],[1,0],[8,-14],[22,-33],[26,-48],[19,21],[5,5],[7,-14],[17,-34],[9,-45],[7,-42],[35,-18],[41,-22],[16,-70],[9,-36],[4,-152],[-4,-128],[-9,-109],[-29,-88],[2,-207],[15,-98],[1,-9],[2,-82],[9,-128],[6,-47],[12,-80],[38,-117],[8,-33],[13,-58],[-1,-95],[24,-54],[24,-80],[-6,-88],[1,-69],[10,-76],[-22,-77],[-16,-91],[3,-98],[7,-120],[1,-84],[1,-109],[2,-146],[0,-72],[1,-44],[-1,-33],[0,-51],[-3,-47],[-2,-37],[-5,-59],[-3,-32],[-3,-31],[-5,-49],[-35,40],[-10,-6],[-35,-23],[-22,-61],[-12,-30],[-4,106],[-2,47],[6,56],[3,28],[9,12],[12,17],[19,124],[17,178],[-26,29],[-9,-49],[-3,-20],[-14,-5],[-5,-2],[-33,-33],[-10,-51],[-2,-52],[-1,-32],[-26,-76],[-1,-56],[-1,-54],[22,-123],[-26,-34],[-3,-3],[1,3],[2,61],[0,5],[-19,8],[-7,54],[-24,58],[0,1],[-15,-66],[-14,0],[-31,-33],[-9,55],[-21,84],[-19,69],[-12,56],[-8,35],[-10,138],[-16,98],[-21,55],[-5,62],[-21,29],[-24,0],[-33,33],[-17,84],[0,76],[-14,91],[0,87],[-15,66],[-47,47],[-26,-54],[-24,0],[-47,-51],[-38,-62],[-13,-24],[-9,-16],[-4,-69],[-20,0],[3,-31],[4,-39],[24,-43],[0,-55],[0,-76],[-24,-117],[-1,-83],[-1,-44],[7,-109],[27,-70],[33,-69],[31,26],[31,-95],[38,0],[14,66],[2,10],[36,0],[28,-17],[7,-4],[8,-54],[9,-63],[31,-36],[29,-40],[49,18],[41,-88],[28,-51],[21,-76],[5,-52],[5,-65],[24,-61],[26,14],[15,44],[1,3],[19,92],[8,47],[31,47],[11,29],[19,-69],[32,0],[7,28],[6,27],[11,44],[13,54],[27,4],[9,-29],[0,-25],[-2,-92],[10,-84],[23,-58],[8,-50],[7,-41],[4,-17],[16,-63],[1,-62],[8,-66],[12,-51],[19,-87],[-10,-91],[-3,-40],[-4,-55],[4,-80],[10,-102],[-25,-62],[-22,-91],[5,-91],[-4,-44],[-6,-61],[-6,-49],[-5,-49],[-1,-2],[-12,-64],[-16,-84],[-20,-58],[-27,-58],[1,-17],[8,-100],[6,-109],[-7,-66],[20,-72],[-10,-124],[6,-109],[12,-22],[7,-11],[19,62],[29,43],[23,54],[3,8],[19,-69],[32,-73],[27,-11],[9,-72],[-3,-43],[-4,-45],[-4,-41],[-5,-39],[2,-76],[6,-73],[0,-2],[4,-78],[-16,-77],[-11,-35],[-18,-59],[-48,-164],[-34,-73],[-32,33],[-24,98],[-17,-4],[-19,26],[-26,18],[-42,-11],[-27,-36],[-17,-38],[-10,-21],[-18,10],[-9,5],[-10,10],[-27,26],[-12,8],[-21,14],[-26,15],[-43,-11],[-37,-40],[-27,-37],[-16,6],[-15,5],[-13,83],[-6,41],[-28,62],[-33,0],[-19,7],[-34,0],[-43,8],[-21,-26],[-26,-29],[3,57],[4,56],[18,145],[1,121],[-23,65],[-20,48],[-31,21],[-41,-25],[-68,-58],[-35,153],[-37,105],[-31,51],[-26,29],[-31,0],[-44,-65],[-23,-22],[-34,-28],[-23,-19],[-41,-52],[-17,-21],[-14,-41],[-10,-28]],[[89446,67568],[-106,18],[-12,4],[-298,51],[-202,36],[-202,33],[-201,36],[-157,26],[-46,11],[-91,14],[-111,15],[-15,3],[-90,7],[-6,1],[-86,11],[-46,7],[-33,3],[-140,0],[-1,0],[-29,0],[-120,4],[-38,0],[-66,-2],[-75,-2],[-54,0],[-163,4],[-51,0],[-41,0],[-14,0],[-53,0],[-22,4],[-22,0],[-13,0],[-62,0],[-46,0],[-11,0],[-18,0]],[[86705,67852],[-73,0],[-59,0],[-65,0],[-165,0],[-168,0],[-78,3],[-92,0],[-160,0],[-74,-3],[-255,0],[-69,0],[-59,3],[-97,0],[-3,0],[-139,0],[-49,0],[-129,4],[-153,0],[-261,4],[-2,0],[-10,0],[-127,-4],[-50,0]],[[85974,75797],[31,47],[8,65],[0,4],[1,28],[0,9],[7,32],[6,20],[6,20],[4,16],[6,24],[9,48],[13,72],[0,1],[7,54],[6,48],[2,26],[1,10],[1,30],[0,35],[0,51],[-1,55],[35,-4],[30,-32],[38,-29],[45,-113],[40,-51],[41,-29],[38,-55],[35,-33],[35,-22],[30,11],[56,48],[51,25],[30,18],[8,6],[33,23],[41,15],[72,0],[33,-11],[36,-7],[26,18],[35,18],[37,18],[32,-47],[39,0],[42,-7],[43,84],[35,69],[33,14],[37,18],[28,11],[52,0],[27,8],[28,7],[30,0],[51,0],[31,11],[32,-15],[39,-3],[57,3],[34,-14],[33,-18],[29,-8],[43,22],[26,4],[41,18],[36,18],[57,22],[33,15],[32,25],[31,33],[28,0],[41,29],[22,36],[53,40],[54,51],[28,40],[32,41],[31,54],[46,73],[46,65],[49,106],[12,22],[4,7],[30,-51],[38,-3],[32,14],[41,22],[46,47],[41,66],[58,65],[27,55],[37,80],[17,6],[22,9],[44,53],[0,1],[53,55],[35,0],[10,5],[26,13],[30,40],[29,20],[4,2],[31,51],[19,29],[38,33],[36,33],[50,11],[44,25],[34,29],[23,29],[27,39],[1,1],[28,22],[16,2],[55,6],[26,-55],[42,-55],[43,-102],[38,-105],[25,-88],[4,-91],[-8,-91],[2,-11],[9,-58],[27,-87],[25,-88],[30,-94],[18,-95],[-32,-36],[-26,-59],[-16,-20],[-18,-23],[-15,-37],[9,-30],[20,-64],[32,-51],[38,-70],[13,-44],[7,-25],[-16,-47],[-11,-33],[-16,-23],[-9,-13],[-25,-73],[-33,-44],[-2,-1],[-23,-13],[6,-66],[16,-10],[29,-19],[16,-44],[28,-25],[27,51],[34,98],[38,-29],[2,-87]],[[28185,63107],[-24,-29],[-19,0],[-8,-40],[-10,-47],[6,-62],[-6,-76],[-17,-55],[-10,-36],[-12,-44],[-9,-47],[1,-51],[-4,-44],[10,-18],[-3,-20],[-4,-31],[-11,-33],[-15,-7],[-11,-19],[-10,-32],[-21,-48],[-13,-29],[-4,-44],[2,-36],[1,-44],[-6,-29],[-9,-47],[-4,-37],[-7,-32],[-4,-48],[-1,-36],[5,-33],[8,-40],[-123,-47],[-30,-11],[-45,-18],[-53,-22],[-112,-40],[-27,-4],[-33,-22],[-17,-7],[-35,-22],[-79,-36],[-64,-26],[-123,-58],[-62,-29],[-74,-33],[-172,-76],[-116,-48],[-66,-25],[-114,-55],[-14,-7],[-45,-19],[-35,-14],[-7,-3],[-16,-8],[-11,-6],[-2,-1],[-14,22],[-7,58],[-5,51],[-10,44],[-14,40],[-13,43],[-5,41],[-40,98],[-8,33],[-21,29],[-8,29],[0,40],[9,25],[-11,26],[-15,36],[-19,-7],[-57,95],[-10,29],[-22,69],[-21,62],[-4,44],[-12,7],[-24,76],[-41,-80],[-47,-43],[-16,-15],[-15,-33],[-13,-47],[-23,-113],[-16,-25],[-22,-37],[-4,-36],[-8,-51],[-10,-37],[-17,-14],[-11,0],[-52,-48],[-45,77],[-47,-15],[-58,8],[-38,3],[-19,0],[-54,-22],[-83,-21],[-37,7],[-25,7],[-37,0],[-21,-11],[-23,-11],[-30,-14],[-6,-7],[-12,-12],[-20,-21],[-27,-40],[-17,-22],[-12,0],[-30,-11],[-11,-4],[-105,-47],[-14,-11],[-312,-255],[-34,-22],[-18,-14],[-53,-44],[-73,-62],[-112,-87],[-40,65],[-13,22],[-66,113],[-17,29],[-39,69],[-40,62]],[[24287,61396],[-22,44],[-38,65],[-16,29],[-80,135],[-16,26],[-15,25],[-28,48],[-26,47],[-32,51],[-15,29],[-31,51],[-15,29],[-33,51],[-53,95],[-40,51],[-108,142],[-70,47],[-31,18],[-71,48],[-166,112],[-11,11],[-18,40],[-15,33],[-11,33],[-39,95],[-12,25],[-13,33],[-48,124],[-14,36],[-15,40],[-44,113],[-107,277],[-15,36],[-43,117],[-56,156],[-2,37],[-4,43],[-7,51],[14,22],[15,51],[4,47],[5,51],[10,48],[13,25],[17,29],[19,11],[12,40],[3,70],[10,51],[8,32],[7,37],[16,14],[11,29],[17,8],[16,14],[13,18],[23,22],[11,-14],[19,29],[13,14],[13,15],[13,15],[4,36],[-1,44],[5,62],[-16,25],[-21,47],[-11,29],[-3,14],[-8,30],[-11,46],[0,2],[-13,58],[-11,69],[-8,44],[-6,40],[9,40],[20,7],[9,51],[-14,84],[-10,22],[-24,76],[-12,40],[-14,4],[-32,22],[-17,32],[-11,99],[-7,47],[1,36],[1,44],[2,37],[-15,40],[-11,7],[-13,120],[-4,66],[5,61],[3,91],[-8,37],[15,65],[-1,48],[6,43],[14,59],[11,36],[9,40],[17,55],[-8,69],[-6,44],[-9,65],[-14,69],[-4,51],[-4,40],[-10,26],[-17,29],[-20,44],[-15,43],[-12,48],[-27,29],[-17,44],[4,54],[10,77],[8,51],[9,40],[15,47],[7,62],[11,44],[0,58],[19,44],[19,29],[18,25],[12,40],[8,29],[12,62],[11,18],[19,22],[17,26],[20,22]],[[53933,72884],[-2,-77],[0,-47],[0,-36],[0,-70],[-1,-72],[0,-40],[-1,-44],[0,-44],[-1,-51],[-1,-69],[-2,-80],[0,-102],[-2,-204],[-1,-55],[0,-11],[-1,-58],[0,-76],[-1,-77],[-1,-124],[0,-13],[0,-41],[-1,-62],[0,-51],[-2,-58],[0,-55],[-1,-87],[0,-66],[-1,-113],[-1,-105],[-1,-102],[0,-91],[0,-31],[0,-68],[-1,-36],[-1,-171],[-4,-113],[-1,-66],[-2,-109],[-1,-102],[-1,-69],[-1,-69],[-2,-69],[-1,-55],[-2,-160],[0,-40],[-1,-37],[-5,-287],[0,-1],[-1,-101],[-1,-81],[-2,-130],[-1,-99],[-1,-36],[-2,-69],[-1,-44],[0,-36],[-1,-73],[-2,-211],[-3,-197],[-3,-175],[-1,-40],[-1,-65],[-2,-154],[0,-3],[-1,-109],[-1,-42],[0,-2],[0,-24],[0,-12],[-6,-332],[-3,-247],[-2,-95],[-1,-65],[-1,-121],[-1,-43],[-2,-153],[-3,-113],[-1,-124],[-1,-62],[-8,-571],[-2,-106],[-6,-324],[-1,-124],[-1,-91],[0,-44],[-2,-145],[-1,-120],[-5,-284],[-2,-142],[-1,-62],[-3,-160],[-2,-88],[-1,-113],[-1,-73],[-2,-87],[0,-44],[0,-40],[-1,-62],[0,-54],[-1,-139],[-2,-50],[0,-55],[-2,-153],[-1,-189],[0,-40],[0,-7],[-1,-55],[0,-70],[-1,-138],[-1,-73],[-1,-174],[-2,-142],[0,-84],[-1,-102],[0,-106],[-1,-65],[0,-77],[-1,-69],[0,-40],[-1,-62],[-3,-328],[-2,-69],[-1,-91],[-1,-124]],[[53782,60926],[-83,-3],[-30,0],[-13,0],[-21,-4],[-14,0],[-14,0],[-11,0],[-35,0],[-15,-4],[-15,0],[-28,0],[-64,-3],[-39,-4],[-8,0],[-44,0],[-17,-3],[-21,0],[-39,-4],[-29,0],[-144,-7],[-36,-4],[-72,-4],[-51,-3],[-22,0],[-26,0],[-32,-4],[-57,-4],[-41,0],[-18,-3],[-23,0],[-116,-7],[-112,-4],[-41,-4],[-42,0],[-54,-3],[-32,0],[-25,-4],[-40,0],[-26,0],[-32,-4],[-11,0],[-33,0],[-41,-3],[-32,0],[-31,-4],[-13,0],[-30,-4],[-124,-7],[-8,-1],[-135,-9],[-7,-1],[-142,-7],[-79,-4],[-24,-3],[-40,0],[-27,-4],[-15,0],[-23,-4],[-12,0]],[[51373,60795],[-41,-3],[-50,0],[-2,0],[-21,0],[-20,0],[-1,-1],[-16,-3],[-15,0],[-27,0],[-15,0],[-26,0],[-27,-4],[-15,0],[-93,0],[-16,-3],[-7,0],[-6,0],[-20,0],[-32,0],[-41,0],[-26,-4],[-27,0],[-36,0],[-32,0],[-33,-4],[-19,0],[-38,0],[-17,-3],[-34,0],[-27,0],[-51,-4],[-33,0],[-47,-3],[-32,0],[-2,0],[-13,0],[-25,-4],[-56,0],[-19,0],[-1,0],[-34,-4],[-14,0],[-27,0],[-15,0],[-35,-3],[-16,0],[-15,0],[-23,-4],[-17,0],[-12,0],[-72,-4],[-53,-3],[-26,0],[-22,0],[-50,-4],[-39,0],[-23,0],[-89,-11],[-16,-3],[-15,0],[-13,0],[-12,-4],[-121,-11],[-45,-7],[-31,0],[-11,-4],[-20,0],[-13,-4],[-107,-11],[-126,-14],[-104,-11],[-16,-4],[-22,0],[-34,0],[-23,-3],[-17,0],[-13,0],[-19,-4],[-39,0],[-97,-7],[-6,-1],[-81,-7],[-40,-3],[-21,0],[-27,-4],[-23,0],[-40,-3],[-73,-4],[-195,-15],[-24,0],[-86,-7],[-151,-7],[-23,0],[-1,0],[-12,-4]],[[61029,63391],[-16,-54],[-9,-29],[-11,-40],[-10,-33],[-7,-29],[-25,-84],[-13,-47],[-21,-70],[-9,-32],[-20,-69],[-61,-215],[-12,-44],[-3,-10],[-14,-48],[-22,-77],[-11,-43],[-24,-84],[-12,-40],[-17,-62],[-40,-142],[-2,-7],[-38,-131],[-65,-226],[-9,-33],[-12,-47],[-25,-84],[-13,-51],[-38,-131],[-20,-73],[-17,-62],[-28,-98],[-11,-33]],[[60394,61163],[-9,21],[-26,104],[-41,162],[-4,17],[-8,12],[-34,54],[-3,8],[-36,126],[-19,41],[-14,6],[-20,19],[-11,15],[-14,36],[-1,26],[-15,44],[-39,56],[-43,20],[-1,-1],[-22,0],[-37,-1],[-60,-2],[-57,36],[-15,16],[-76,133],[-16,44],[-2,6],[-48,156],[-20,56],[-15,58],[-10,42],[-7,54],[-10,37],[-22,19],[-47,68],[-15,31],[-9,32],[-33,158],[-1,5],[-2,11],[-13,177],[9,98],[-2,47],[-19,83],[-29,90],[-3,26],[-2,25],[-1,19],[-4,52],[0,20],[0,150],[0,94],[-1,42],[-1,24],[-5,35],[-7,16],[-7,18],[-9,15],[-6,10],[-23,39],[-33,71],[-42,112],[-60,190],[-42,84],[-9,28],[-79,105],[-29,21],[-16,12],[-46,47],[-8,11],[-21,26],[-2,0],[-2,1],[-17,17],[-9,19],[-5,18],[-1,1],[-16,56],[-7,17],[-4,7],[-6,11],[-5,15],[-10,25],[-8,4],[-42,24],[-1,-1],[-44,-40],[-20,-17],[-3,6],[-27,3],[-17,19],[-8,40],[-7,56],[-1,4],[-1,3],[-1,2],[-33,79],[-25,-2],[0,-1],[-10,-10],[-5,-5],[-2,-5],[-6,-12],[-3,-6],[-5,-29],[-3,-18],[-6,-19],[-4,-15],[-2,-7],[-12,-22],[-14,-12],[-72,-13],[-30,10],[-5,2],[-21,9],[-23,-3],[-23,-21],[-1,-1],[-6,-12],[-1,-2],[-7,-16],[-3,-9],[-1,-2],[-12,-48],[-3,-15],[-15,-26],[-17,-15],[-25,-63],[-9,-23],[-14,-107],[-3,-26],[-5,-12],[-1,-1],[-9,-42],[-18,-82],[-7,-27],[-4,-46],[-7,-65],[-14,-72],[-13,-35],[-37,-67],[-10,-24],[-3,-7],[-6,-20],[-5,-27],[-1,-7],[-3,-10],[-20,-58],[-44,-77],[-17,-41],[-31,-75],[-43,-110],[-7,-17],[-19,-54],[-27,-59],[-7,-16],[-2,-5],[-7,-25],[-6,-47],[-2,-14],[-2,-7],[-9,-44],[-5,-12],[-8,-19],[-22,-20],[-46,-17],[-12,-12],[-21,-20],[-15,-16],[-21,-4],[-7,-1],[-5,-9],[-1,-2],[-10,-14],[-1,-18],[-2,-4],[-4,-51],[3,-100],[3,-35],[11,-74],[3,-55],[5,-31],[7,-61],[1,-35],[0,-114],[-2,-30],[0,-1],[-2,-18],[-3,-8],[-7,-11],[-17,-13],[-3,-1],[-45,-12],[-33,23],[-36,-15],[-33,-41],[-12,-72],[-2,-7],[-28,-34],[-9,-11],[-13,-28],[-3,-7],[-14,-32],[-3,-4],[-2,0],[-15,32],[-4,14],[-2,10],[-15,78],[0,2],[4,10],[17,44],[23,58],[1,2],[2,4],[14,84],[0,1],[8,64],[6,58],[3,27],[1,8],[1,14],[0,13],[-3,11],[-3,8],[-8,27],[-17,40],[-12,9],[-12,2],[-26,-3],[-48,-19],[-14,0],[-28,13],[-14,10],[-7,6],[-43,49],[-12,9],[-11,0],[-2,-7],[-30,-94],[-1,-3],[2,-13],[7,-63],[7,-85],[1,-24],[1,-21],[1,-40],[-1,-41],[-1,-23],[-2,-28],[0,-2],[-3,-38],[-18,-128],[-6,-34],[-21,-68],[-24,-51],[-9,-20],[-13,-43],[-20,-79],[-18,-75],[-9,-29],[-2,-3],[-61,-205],[-2,-7],[-15,-43],[-18,-41],[-25,-47],[-14,-19],[-13,-11],[-22,-2],[-7,-3],[-34,-15],[-10,-1],[-12,5],[-14,20],[-27,52],[-44,133],[-5,17],[-5,8],[-9,17],[-1,2],[-2,3],[-8,12],[-7,10],[-17,14],[-12,-2],[-4,-1],[-7,8],[-3,9],[-7,54],[-3,45],[2,38],[8,52],[8,32],[9,28],[11,26],[21,43],[24,37],[22,122],[-36,17],[-2,1],[-37,25],[-74,-54],[-4,-4],[-63,-99],[-1,0],[-15,-25],[-5,-7],[-2,-2],[-1,-2],[-78,-85],[0,-1],[-2,-1],[-10,-9],[-8,-9],[-3,-7],[-6,-17],[0,-2],[-2,-4],[-9,-23],[-2,-4],[-2,-3],[-1,-2],[-18,-32],[-1,-1],[-2,-3],[-1,-1],[-4,-5],[-6,-7],[-14,-16],[-1,0],[-1,-1],[-2,-2],[-2,-1],[-1,0],[-26,-11],[-2,0],[-2,-1],[-2,1],[-1,0],[-1,0],[-7,2],[0,-2],[0,-3],[2,-6],[1,-4],[3,-5],[3,-5],[3,-4],[7,-3],[4,-5],[26,-63],[23,-65],[33,-91],[28,-95],[2,-21],[-6,-47],[-3,-11],[-37,-87],[-77,-138],[-17,-21],[0,-1],[-11,-6],[-15,-1],[-10,4],[-18,8],[-6,3],[-55,30],[-7,4],[-12,-19],[-18,-42],[-15,-63],[-5,-15],[-14,-21],[-7,-7],[-18,-19],[-4,-3],[-3,-4],[-2,0],[-35,1],[-1,-8],[-5,-30],[-1,-1],[-1,-6],[0,-2],[-1,-3],[-32,-24]],[[56103,61028],[-12,-1],[-14,-2],[-31,0],[-15,0],[-71,0],[-34,-4],[-44,0],[-35,0],[-77,-4],[-37,-3],[-37,-4],[-20,0],[-33,-3],[-38,-8],[-60,4],[-23,-4],[-19,0],[-77,0],[-29,0],[-26,-3],[-16,0],[-39,-4],[-25,0],[-26,-4],[-35,4],[-28,-4],[-16,0],[-12,0],[-60,-3],[-17,0],[-96,-4],[-46,-4],[-14,0],[-78,-3],[-14,0],[-33,-4],[-46,0],[-26,-4],[-52,0],[-23,-3],[-43,0],[-30,-4],[-16,0],[-43,-3],[-15,0],[-46,0],[-38,0],[-19,0],[-53,-4],[-46,-4],[-23,-3],[-19,0],[-12,0],[-36,-4],[-30,0],[-30,0],[-37,0],[-35,-4],[-2,0],[-58,0],[-25,0],[-33,0],[-20,-3],[-39,0],[-41,-4],[-24,0],[-23,0],[-18,0],[-33,-4]],[[75157,66840],[-97,-197],[-14,-26],[-60,-112],[-21,-44],[-76,-164],[-21,-47],[-1,-2],[-18,-38],[-132,-288]],[[74717,65922],[-2,-5],[-27,-57],[-101,-222],[-91,-200],[-42,-89],[-1,-2],[-103,-226],[-68,-149],[-16,-37],[-103,-244],[-44,-91],[-210,-422],[-168,-331],[-6,-12],[-11,-25],[-148,-295],[-1,-1],[-49,-97],[-8,-14],[-16,-30],[-13,-25],[-16,-34],[-1,-3],[-39,-80],[-105,-204]],[[73328,63027],[1,281],[1,184],[0,1],[-1,0],[-132,-3],[-54,0],[-12,0],[-1,0],[-37,0],[-180,0],[-12,0],[-138,0],[-12,0],[-40,3],[-168,0],[-136,0],[-104,0],[-94,0],[-32,0],[-74,4],[-245,0],[-4,0],[-34,0],[-61,0],[-122,0],[-28,0],[-28,0],[-56,0],[-13,0],[-52,0],[-42,0],[-38,0],[-25,0],[-15,15],[-3,2],[-152,100],[-21,10],[-73,48],[-50,33],[-118,80],[-134,83],[-20,15],[-85,55],[-27,-161],[-1,0],[-24,-153],[-24,-134]],[[70608,63490],[-27,25],[-27,26],[-91,87],[-19,15],[-84,80],[-286,269],[-3,3],[-41,39],[-2,2],[-17,18],[-16,15],[-12,11],[-19,18],[-16,11],[-16,14],[-11,15],[-7,47],[-11,84],[-4,28],[-6,56],[-8,73],[-15,116],[-15,146],[-22,182],[-9,65],[-14,102],[-10,95],[-7,51],[-68,579],[-7,51],[-49,404],[-34,244],[-4,36],[-10,110],[-1,3],[-13,128],[-17,131],[-43,360],[-39,299],[0,76],[0,451],[0,1],[0,83],[-10,27],[-12,6],[-8,-10],[-12,1],[-16,8],[-5,2],[-6,25],[-4,13],[-17,8],[-14,19],[-44,60],[0,4],[-1,23],[-12,123],[-3,14],[-3,11],[-37,162],[-14,32],[-2,4],[-3,0],[-3,-6],[-12,5],[-50,69],[-26,22],[-24,5]],[[46708,60537],[-39,0],[-7,-1],[-4,0],[-45,-3],[-28,0],[-150,-7],[-56,-4],[-17,0],[-13,0],[-45,-3],[-71,-11],[-56,-4],[-12,-4],[-20,4],[-30,0],[-16,4],[-49,0],[-30,-4],[-69,-11],[-35,-4],[-18,0],[-123,0],[-99,0],[-239,-3]],[[45437,60486],[-65,0],[-41,0],[-19,0],[-31,-4],[-27,0],[-19,0],[-11,0],[-1,0],[-30,0],[-10,0],[-20,0],[-12,0],[-95,0],[-13,0],[-23,0],[-36,0],[-24,-3],[-2,0],[-41,0],[-27,0],[-12,0],[-32,0],[-21,0],[-17,0],[-15,0],[-12,0],[-71,-4],[-35,0],[-67,-4],[-1,0],[-34,0],[-16,-3],[-14,0],[-33,0],[-32,0],[-47,-4],[-38,0],[-30,0],[-36,-4],[-59,0],[-70,-3],[-14,0],[-74,-4],[-23,0],[-32,0],[-22,-4],[-20,0],[-26,0],[-31,4],[-78,4],[-42,0],[-40,0],[-17,3],[-25,0],[-23,0],[-34,0],[-22,4],[-28,0],[-23,0],[-13,0],[-15,0],[-19,0],[-17,0],[-17,0],[-60,4],[-41,0],[-39,0],[-14,0],[-15,0],[-39,3],[-28,0],[-124,0],[-22,0],[-32,0],[-41,4],[-71,0],[-1,0],[-42,0],[-83,4],[-41,0],[-26,0],[-19,3],[-20,0],[-70,4],[-22,0],[-17,0],[-17,0],[-17,-4],[-18,4],[-26,0],[-67,3],[-66,0],[-23,4],[-17,0],[-25,0],[-24,4],[-16,0],[-18,0],[-9,0],[-3,0],[-13,3],[-38,0],[-39,4],[-20,4],[-18,3],[-16,0],[-13,4],[-11,0],[-18,4],[-14,0],[-15,3],[-11,0],[-13,4],[-14,0],[-24,7],[-15,0],[-14,4],[-14,0],[-19,3],[-17,0],[-15,4],[-13,4],[-25,3],[-11,0],[-14,0],[-14,0],[-68,7],[-4,1],[-17,3],[-14,4],[-1,0],[-38,11],[-16,4],[-31,0],[-21,3],[-11,0],[-22,0],[-12,0],[-16,4],[-15,0],[-23,3],[-36,0],[-14,0],[-15,0],[-12,4],[-16,0],[-13,0],[-21,0],[-17,0],[-47,0],[-32,4],[-46,3],[-17,4],[-28,0],[-18,0],[-20,4],[-22,0],[-22,3],[-21,0],[-58,0],[-14,0],[-27,0],[-34,4],[-21,0],[-32,4],[-47,3],[-12,0],[-63,4],[-36,0],[-63,7],[-20,0],[-23,0],[-71,0],[-17,4],[-166,11]],[[80661,68868],[1,-3],[0,-3],[1,-9],[3,-23],[2,-13],[0,-2],[0,-24],[-3,-15],[-11,-15],[-1,-6],[-2,-5],[-1,-18],[-1,-106],[1,-16],[4,-14],[3,-8],[23,-21],[1,-1],[11,-81],[9,-79],[2,-17],[0,-29],[-1,-32],[-1,-33],[-1,-4],[-1,-26],[-4,-10],[-8,-7],[-1,-1],[-8,-2],[-5,-1],[-11,10],[-28,33],[-28,38],[-14,19],[-5,6],[-32,38],[-1,1],[-16,12],[-3,2],[-5,-19],[-3,-19],[-18,-150],[-1,-12],[0,-1],[-1,-23],[6,-34],[2,-10],[-1,-5],[0,-3],[0,-8],[-11,-33],[-2,-8],[-3,-7],[-6,-15],[0,-1],[-9,-12],[-11,-1],[-2,0],[-10,8],[-4,-1],[-3,-6],[-14,-41],[-12,-109],[-1,-16],[-3,-32],[-1,-41],[-2,-130],[-1,-22],[7,-95],[7,-68],[14,-42],[19,-10],[25,38],[2,3],[1,3],[2,3],[6,5],[8,-5],[1,-1],[2,-3],[63,-71],[4,-5],[1,-1],[1,-6],[1,-40],[-1,-32],[0,-24],[-1,-13],[1,-5],[12,-162],[22,-38],[6,-1],[5,11],[12,54],[3,20],[0,22],[9,5],[6,-2],[8,-3],[10,-8],[1,-1],[6,-10],[9,-25],[10,-27],[4,-17],[-2,-18],[-2,-8],[-3,-85],[0,-29],[2,-98],[1,-76],[0,-3],[9,-24],[7,-21],[0,-4],[1,-5],[1,-6],[0,-16],[5,-94],[1,-10],[-1,-16],[-3,-8],[-40,-46],[-9,-2],[-17,26],[-4,2],[-4,3],[-4,-1],[-6,-2],[-11,-9],[-4,-3],[-1,-2],[-2,-6],[-1,-2],[-21,-75],[-6,-11],[-4,-13],[-1,-6],[0,-7],[-3,-27],[1,-31],[4,-17],[7,-29],[5,-12],[17,-47],[3,-9],[27,-84],[3,-12],[3,-25],[11,-175],[3,-50],[0,-1],[0,-1],[0,-56],[0,-1],[-3,-34],[3,-268],[4,-44],[2,-12],[2,-49],[-1,-2],[-1,-23],[-9,-38],[-2,-7],[-2,-35],[0,-18],[0,-1],[0,-2],[63,-153],[2,-3],[1,-3],[2,-2],[22,-8],[6,2],[7,7],[5,11],[2,10],[25,-17],[5,-2],[24,-65],[15,-41],[0,-4],[0,-19],[2,0],[28,-4],[3,-1],[16,-11],[8,-14],[27,-64],[1,-5],[1,-3],[1,-3],[2,-10],[0,-20],[35,-126],[5,2],[24,4],[2,-1],[7,-4],[2,-5],[10,-63],[0,-3],[2,-24],[-13,-97],[-8,-85],[-2,-26],[-5,-114],[2,-2],[56,-50],[-8,-72],[-2,-17],[-2,-15],[-10,-91],[-57,63],[-7,9],[-4,-5],[-14,-19],[-15,-18],[-7,-31],[0,-7],[1,-8],[6,-18],[5,-5],[16,-32],[44,-46],[32,-45],[51,12],[22,-78],[9,-21],[63,-72],[5,-4],[9,-1],[3,3],[37,-17],[16,-41],[1,-4],[0,-1],[-9,-25],[-1,-5],[-23,-185],[-1,-29],[1,-11],[3,-7],[6,-8],[5,-4],[58,-19],[0,1],[11,49],[-2,17],[1,32],[1,11],[11,38],[12,24],[0,1],[1,0],[9,3],[8,-2],[1,-1],[1,-2],[2,-2],[3,-12],[1,-14],[0,-14],[-2,-28],[-20,-103],[-6,-32],[-11,-31],[0,-18],[4,-13],[10,-21],[11,-11],[7,0],[7,5],[18,25],[4,11],[0,3],[2,19],[9,27],[2,2],[1,2],[1,1],[8,2],[2,0],[8,-7],[9,-15],[3,-5],[8,-19],[4,-10],[0,-1],[0,-7],[2,-19],[-2,-22],[0,-1],[-5,-33],[-8,-34],[-14,-48],[-2,-5],[-18,-44],[-6,-9],[-2,-8],[-2,-15],[6,-90],[11,-88],[1,-10],[7,-14],[7,-4],[64,29],[19,-7],[1,0],[0,-13],[2,-115],[1,-7],[6,-13],[11,-15],[7,-8],[19,-10],[14,0],[1,1],[1,1],[7,7],[1,3],[13,33],[7,15],[39,54],[1,-23],[9,-51],[21,-67],[3,-14],[5,-23],[-1,-18],[-6,-8],[-1,-2],[-16,-23],[-5,-8],[-5,-30],[2,-32],[0,-15]],[[81612,62528],[-6,-87],[-32,29],[9,-41],[18,-86],[-14,-35],[-10,-23],[-22,-19],[-14,-11],[-32,-18]],[[81509,62237],[-23,4],[-21,-4],[-18,-11],[-14,-25],[-15,3],[-11,4],[-11,4],[-13,-8],[-11,-10],[-16,-4],[-14,0],[-22,11],[-13,11],[-15,7],[-17,25],[-17,26],[-26,40],[-17,15],[-14,11],[-12,3],[-57,-129],[-39,-89],[-23,-55],[-21,-44],[-10,-25],[-87,-196],[-22,-52],[-6,-12],[-31,-71],[-175,-401],[-71,-160],[-12,-33],[-1,-51],[-16,-113],[-3,-54],[-1,-40],[2,-41],[-2,-105],[-1,-40],[6,-47],[7,-59],[2,-54],[11,-62],[14,-15],[38,-33],[22,-21],[5,-12],[11,-25],[9,-25],[-19,-80],[-61,-255],[-20,-84],[-5,-87],[5,-146],[4,-189],[2,-70],[14,-560],[-17,11],[-26,-30],[-26,-18],[-10,-33],[-6,-40],[-2,-91],[-1,-65],[0,-55],[11,-54],[6,-33],[3,-18],[-1,-51],[-10,-51],[-4,-48],[-13,-32],[-23,-34],[-9,-14],[-21,-40],[-6,-11],[-4,-7],[-14,-15],[-17,-40],[-1,-72],[0,-3],[0,-37],[13,-84],[4,-36],[1,-12],[2,-47],[2,-58],[-4,-62],[-1,-36],[-4,-48],[-2,-80],[-5,-33]],[[80473,57427],[-1,-40],[-14,8],[-26,-8],[-9,-83],[-7,-37],[1,-40],[-5,-33],[-6,-40],[-5,-36],[2,-44],[-10,-80],[-3,-66],[-5,-58],[-5,-36],[-12,-33],[-14,-22],[-16,11],[-49,-7],[-27,-4],[-33,-7],[-12,7],[-26,11],[-22,15],[-10,-48],[-1,-43],[-24,-66],[-12,-14],[-26,3],[-14,22],[-17,47],[-12,11],[-11,-22],[5,-51],[-11,-50],[-11,-48],[-17,-47],[-6,-10],[-19,-30],[-19,-15],[-13,-3],[-14,-40],[7,-66],[10,-22],[5,-51],[8,-62],[-4,-47],[-15,0],[-21,-26],[-14,-18],[5,-30],[3,-17],[1,-1],[13,-6],[3,-39],[3,-15],[6,-72],[-9,-271],[-7,-60],[10,-234],[1,-27],[-49,-112],[-16,-40],[-7,-20],[-24,-63],[-8,-18],[-5,-9],[-13,-6],[-15,0],[-32,-1],[-7,-7],[-28,-36],[-28,-35],[-12,-11],[-2,-2],[-11,-2],[-5,2],[-7,7],[-1,1],[-70,104],[-4,5],[-3,14],[-4,26],[-8,48],[-5,30],[-2,13],[-7,48],[-1,31],[0,27],[1,12],[4,20],[14,59],[1,2],[2,10],[1,8],[3,22],[1,15],[0,58],[-4,34],[-2,11],[-4,20],[-15,37],[0,1],[-31,64],[-1,1],[-5,7],[-39,81],[-8,18],[-9,22],[-10,14],[-11,8],[-28,7],[-9,5],[-32,16],[-10,11],[-9,10],[-46,50],[-8,11],[-17,20],[-10,-19],[-23,-46],[-28,-87],[-12,-33],[-106,-302],[-70,-193],[-18,-55],[-89,-248],[-25,-69],[-3,-6],[-34,-99],[-97,-277],[-35,-95],[-12,-36],[-68,-191],[-21,-60],[-9,-26],[-21,-16],[-3,-2],[-6,6],[-3,2],[-3,-1],[-23,30],[-37,105],[-4,9],[-26,37],[-17,13],[-12,-2],[-51,-7],[-77,17],[-19,7],[-18,7],[-24,31],[-35,72],[-26,55],[-22,56]],[[78210,54562],[0,1],[2,36],[0,1],[0,1],[-2,20],[-9,121],[-1,15],[-1,6],[-5,13],[0,2],[-11,28],[-1,3],[-3,3],[-19,1],[-6,-1],[-4,-5],[-2,-4],[-4,2],[-14,9],[-35,33],[-6,6],[-7,14],[-12,30],[-5,11],[-13,33],[-4,8],[-3,11],[-20,73],[-5,3],[-17,5],[-3,0],[-38,-24],[-28,-19],[-17,-10],[-2,-2],[-44,-71],[-1,-1],[-4,-6],[-9,-12],[-1,-2],[-22,-9],[-11,1],[-10,14],[-6,11],[-4,20],[-1,23],[0,1],[0,3],[-5,133],[-4,252],[0,4],[-3,8],[-3,15],[-10,41],[-6,29],[-18,93],[-7,25],[-3,7],[-1,1],[-6,5],[-3,3],[-2,0],[-6,1],[-8,-1],[-13,-2],[-32,-25],[-6,-7],[-1,-1],[-4,-5],[-24,25],[-4,8],[-12,22],[-19,29],[-13,25],[-19,40],[-9,44],[-1,24],[-3,34],[8,82],[10,183],[-10,8],[-19,16],[-6,5],[-21,18],[-9,34],[-15,57],[-6,21],[-1,13],[7,18],[4,12],[6,12],[4,8],[17,29],[1,1],[0,1],[4,9],[17,33],[4,17],[8,106],[-1,12],[-3,8],[-4,6],[-1,1],[-27,38],[-5,3],[-16,-4],[0,-1],[-1,-1],[-20,-26],[-8,-11],[-1,15],[0,3],[-1,15],[-1,35],[-5,7],[-50,81],[-11,33],[-3,9],[-9,30],[-1,5],[0,15],[2,7],[3,0],[2,1],[1,-1],[7,-12],[7,0],[4,8],[2,10],[1,15],[-1,2],[0,2],[-1,1],[-5,12],[-25,46],[-1,2],[-12,13],[7,52],[1,15],[-29,61],[-18,37],[-2,4],[-8,17],[-2,5],[-10,31],[-4,13],[-4,30],[-3,187],[0,21],[1,48],[0,2],[9,53],[0,2],[-15,165],[0,8],[-1,1],[-32,120],[-15,-4],[-1,0]],[[77250,57715],[-1,40],[-8,205],[0,8],[22,227],[2,15],[-7,-22],[-3,-10],[-5,-9],[-35,0],[-3,5],[0,14],[12,62],[1,9],[16,116],[0,17],[-1,4],[-2,5],[-1,2],[-22,36],[0,1],[-4,3],[-1,1],[-9,-3],[-1,-5],[0,-14],[4,-28],[0,-3],[1,-21],[-1,-10],[-5,-15],[-8,-12],[-6,1],[-28,58],[-1,3],[-1,12],[0,34],[5,22],[4,16],[25,108],[2,10],[6,9],[0,15],[-3,12],[-8,5],[-13,-5],[-4,-2],[-1,2],[-18,40],[-10,20],[-1,45],[-1,40],[-1,18],[-2,64],[-1,27],[-12,6],[-15,7],[-46,102],[-5,20],[1,18],[2,16],[5,15],[5,15],[7,15],[2,4],[1,1],[1,3],[1,8],[2,17],[0,3],[2,58],[0,12],[0,42],[-1,2],[-1,7],[-13,36],[-1,0],[-1,0],[-25,117],[1,24],[1,50],[1,8],[1,33],[0,24],[-1,7],[-17,43],[-3,7],[-1,3],[-2,5],[-2,2],[-26,29],[-27,142],[2,35],[0,9],[1,16],[1,30],[-6,137],[-12,69],[-23,65],[-13,17],[-2,3],[-24,35],[-1,1],[-20,28],[-4,9],[-20,49],[-1,4],[1,8],[15,81],[34,65],[3,11],[12,92],[0,5],[0,3],[0,2],[-8,17],[-8,21],[-5,10],[-3,5],[-4,70],[6,8],[27,60],[4,69],[0,103],[5,30],[3,16],[2,5],[11,36],[2,10],[-1,10],[-2,4],[-6,6],[-6,5],[-1,0],[-4,0],[-3,-1],[-1,-2],[-19,-33],[-3,-6],[-7,18],[-14,37],[-1,3],[-38,-7],[-48,-9],[-18,-17],[-2,0],[-42,21],[-14,7],[-1,1],[-8,11],[-5,13],[-2,11],[0,27],[13,67],[6,24],[9,16],[1,3],[0,1],[1,9],[-2,32],[0,7],[-3,19],[-2,12],[-2,5],[-21,86],[0,2],[-1,2],[-16,3],[-12,-2],[-13,-3],[-10,-3],[-1,8],[-10,71],[-25,7],[-25,7],[-12,3],[-29,9],[-1,0],[-49,74],[-16,3],[-33,-11],[-3,-1],[-11,-4],[-16,4],[-5,1],[-29,-23],[-9,-8],[-19,1],[-24,7],[-12,22],[-25,65],[-8,33],[-11,55],[-21,40],[-13,47],[-9,44],[-10,51],[-12,36],[-5,40],[-12,70],[-4,80],[-9,29],[-18,29],[-16,33],[-11,0],[-13,11],[-17,32],[-18,29],[-22,41],[-19,61],[-16,59],[-10,51],[-14,40],[-20,29],[-12,40],[-10,36],[-13,33],[-15,26],[-28,40],[-20,18],[-14,18],[-1,1],[-16,14],[-40,25],[-12,11],[-47,-7],[-17,3],[-32,113],[-15,58],[-5,55],[-10,51],[-8,29],[-11,44],[-8,33],[-12,25],[-21,91],[-8,40],[-15,8],[-20,36],[-15,11],[-14,29],[-14,36],[-19,80],[-24,48],[-26,87],[-4,16],[-12,39],[-44,142],[-68,217],[0,1],[-25,83],[0,1],[-24,73],[-57,182],[-4,14],[-7,25],[-12,38],[-2,26],[-7,92],[-41,46],[-5,7],[-43,51],[-89,105],[-33,81],[-12,45],[-15,73],[-2,16],[0,1],[-1,21],[-2,12],[-6,15],[-2,4],[-17,24],[1,12],[14,262],[-1,5],[-2,9],[-25,157],[0,3],[-3,19],[-16,20],[-3,5],[-12,36],[-3,17],[0,2],[-1,12],[-3,13],[-6,21],[-15,50],[-2,5],[-15,31],[-12,15],[-13,6],[-15,5],[-12,12],[-2,0],[-33,3],[-27,38],[-4,6]],[[37936,62124],[-21,11],[-20,0],[-30,8],[-31,10],[-53,11],[-1,0],[-42,-25],[-13,0],[-14,0],[-20,4],[-19,0],[-16,0],[-11,0],[-18,3],[-20,0],[-13,0],[-62,7],[-23,0],[-18,19],[-73,7],[-34,4],[-17,3],[-36,7],[-3,1],[-87,7],[-14,3],[-24,4],[-32,4],[-13,0],[-16,3],[-16,0],[-17,4],[-26,4],[-21,3],[-52,4],[-61,7],[-16,4],[-15,3],[-32,4],[-37,4],[-11,0],[-1,0],[-20,3],[-16,4],[-42,4],[-53,7],[-68,7],[-2,1],[-62,10],[-42,4],[-32,3],[-38,4],[-36,7],[-19,0],[-21,4],[-141,15],[-14,3],[-15,0],[-58,8],[-16,3],[-22,4],[-44,0],[-17,0],[-37,3],[-22,0],[-16,4],[-49,6],[-7,1],[-39,4],[-28,4],[-41,3],[-15,4],[-44,4],[-55,7],[-28,3],[-23,0],[-17,4],[-17,0],[-76,11],[-48,4],[-58,11],[-50,7],[-40,4],[-39,3],[-29,4],[-12,3],[-33,4],[-2,0],[-13,0],[-42,4],[-69,11],[-19,3],[-41,4],[-27,4],[-13,0],[-17,3],[-27,4],[-26,-11],[-47,-15],[-37,40],[-11,0],[-34,4],[-81,11],[-16,0],[-12,3],[-4,1],[-29,7],[-70,11],[-40,7],[-24,4],[-18,0],[-13,0],[-22,3],[-36,4],[-13,0],[-106,11],[-44,4],[-43,3],[-24,4],[-24,0],[-3,0],[-22,4],[-127,10],[-23,4],[-122,11],[-2,0],[-100,11],[-43,7],[-24,4],[-106,7],[-110,11],[-50,7],[-37,4],[-39,4],[-45,3],[-34,4],[-18,0],[-32,18],[-18,4],[-68,18],[-27,4],[-20,3],[-18,4],[-34,4],[-35,7],[-38,3],[-22,4],[-69,7],[-62,11],[-20,4],[-33,4],[-39,3],[-14,3],[-4,1],[-12,0],[-26,4],[-33,7],[-20,0],[-14,3],[-23,4],[-61,7],[-20,4],[-66,7],[-46,8],[-62,11],[-36,3],[-20,4],[-38,3],[-16,4],[-82,11],[-17,4],[-67,10],[-1,1],[-23,0],[-46,7],[-57,7],[-12,4],[-40,7],[-37,4],[-15,0],[-13,3],[-15,-3],[-41,3],[-35,0],[-2,0],[-145,0],[-19,0],[-21,0],[-64,0],[-34,0]],[[24287,61396],[-19,-14],[-62,-22],[-14,-8],[-20,-7],[-18,-7],[-32,-15],[-130,-51],[-115,-47],[-23,-7],[-24,-11],[-12,-4],[-44,-18],[-64,-26],[-15,-7],[-68,-25],[-26,-15],[-14,-11],[-17,-11],[-2,-58],[4,-47],[-7,-59],[7,-61],[-4,-37],[-2,-69],[7,-51],[10,-29],[4,-37],[13,-32],[13,-8],[13,-21],[10,-30],[9,-32],[8,-44],[9,-55],[10,-36],[-3,-58],[-12,-62],[-42,-226],[-47,-259],[-29,-149],[-22,-124],[-26,-142],[-27,-149],[-35,-91],[-48,-135],[-15,-43],[-30,40],[-88,142],[-48,73]],[[23200,59201],[-14,25],[-13,22],[-35,54],[-49,73],[-30,51],[-29,44],[0,1],[-77,123],[-2,3],[-76,121],[-49,76],[-51,80],[-17,26],[-22,36],[-13,18],[-14,26],[-69,105],[-31,48],[-28,43],[-22,37],[-17,25],[-13,22],[-31,47],[-25,40],[-26,37],[-25,-22],[-18,-7],[-12,-26],[-13,-80],[-10,-62],[4,-69],[7,-36],[-5,-44],[-19,-44],[-39,-14],[-14,-33],[-16,7],[-12,15],[-15,11],[-18,18],[-18,11],[-21,7],[-26,22],[-19,-47],[0,-1],[-10,-21],[1,-80],[-10,-40],[-14,-15],[-18,22],[-32,-11],[-27,4],[-17,-22],[-6,-33],[7,-51],[-12,-15],[-15,-87],[19,-80],[1,-47],[0,-55],[-7,-29],[0,-51],[11,-80],[17,-51],[0,-62],[7,-33],[8,-94],[12,-33],[10,-29],[16,-37],[-14,-3],[-28,-8],[-20,0],[-13,15],[-19,-7],[-17,14],[-17,33],[-11,18],[-13,15],[-26,3],[-15,8],[-21,29],[-8,80],[-15,36],[-16,44],[-26,51],[-22,11],[-36,-7],[-21,-8],[-46,22],[-10,26],[-10,-37],[-13,-7],[-14,29],[-11,15],[-10,25],[-20,66],[-18,-8],[-11,-18],[-11,-29],[-22,11],[-15,29],[-15,29],[-26,15],[-15,-29],[-20,-37],[-9,-29],[-19,-47],[-13,3],[-17,-21],[-15,10],[-9,-50],[-12,-33],[-9,-40],[-5,-48],[-23,-51],[-33,-47],[-22,-7],[-26,-22],[-18,-29],[-21,-4],[-19,4],[-16,-33],[-2,-36],[-4,-37],[-21,-22],[-18,-36],[-23,-44],[-17,-3],[-6,-62],[-4,-37],[-7,-58],[-8,-62],[-13,-7],[-18,4],[-13,29],[-25,14],[-15,-29],[-10,-33],[-20,-11],[-18,-51],[-31,-72],[-13,0],[-59,0],[-46,-4],[-1,0],[-72,-4],[-13,0],[-39,0],[-40,-3],[-4,0],[-20,0],[-22,0],[-22,-4],[-30,0],[-35,-3],[-2,-1],[-58,0],[-19,-3],[-20,0],[-17,0],[-42,0],[-42,-4],[-20,0],[-32,0],[-19,-4],[-18,0],[-13,0],[-1,0],[-12,0],[-31,-18],[30,-7],[0,-59],[0,-14],[-3,-56],[-3,-35],[-7,-55],[7,-47],[35,-3],[2,0],[37,-4],[-1,-73],[-1,-69],[-3,-124],[0,-4],[-3,-131],[-2,-87],[-47,4],[-18,-19],[-4,-4],[-25,-28],[-19,58],[-36,7],[-27,55],[-12,22],[27,98],[-4,22],[22,91],[-20,164],[-10,65],[-15,102],[-27,0],[2,142],[-91,-7],[-12,0],[-4,0],[-16,-29],[-13,0],[-7,-48],[-9,-47],[5,-40],[-3,-76],[-15,3],[-16,18],[-21,15],[-13,-26],[7,-65],[-3,-36],[-15,-66],[-9,-66],[-14,-7],[-21,15],[-15,20],[-1,2],[-13,14],[-21,11],[-20,15],[-17,11],[-24,3],[-2,99],[-27,58],[-21,40],[-29,-58],[-19,3],[-11,-40],[-16,-22],[-19,-3],[-11,25],[-11,11],[-13,7],[-15,44],[-15,36],[-17,22],[-18,26],[-17,43],[-11,26],[-10,22],[-18,7],[-16,-33],[-18,-47],[-16,-29],[-17,-11],[-20,25],[-18,-18],[-6,-40],[-10,-51],[-10,-47],[-14,-29],[-14,36],[-10,55],[-20,22],[-19,18],[-21,36],[-14,29],[-22,15],[-18,25],[-10,19],[-41,43],[-23,8],[-12,18],[-7,33],[-11,47],[-1,36],[-5,37],[-4,11],[-6,14],[-29,44],[-19,25],[-21,37],[-17,58],[-13,22],[-15,-11],[-16,-11],[-11,-27],[-2,-6],[-18,-22],[-9,11],[-9,11],[-12,22],[-8,29],[-11,44],[-19,55],[-24,21],[-18,26],[-17,11],[-22,33],[-12,-15],[-30,-120],[-18,-22],[-12,-25],[-11,-22],[-15,-4],[-18,22],[-25,-18],[-18,-29],[-14,0],[-15,11],[-20,3],[-26,7],[-2,5],[-11,21],[-18,-11],[-12,-18],[-16,-18],[-19,18],[-20,7],[-17,-7],[-13,-7],[-3,-4],[-18,-26],[-11,-36],[-1,-4],[-5,-8],[-11,-21],[-27,-62],[-14,-22],[-17,4],[-11,4],[-13,-51],[-17,-58],[-9,-41],[-9,-36],[-8,-33],[-13,-33],[-17,-32],[-14,-33],[-19,-84],[-16,-18],[-16,-18],[-11,-22],[-8,-51],[-2,-12],[-2,-18],[-6,-57],[-29,-37],[-22,0],[-27,-29],[-13,-22],[-13,-47],[-8,-66],[-3,-47],[-6,-33],[-14,-25],[-11,-11],[-17,-15]],[[17791,57580],[-22,73],[-19,7],[-18,-3],[-15,-8],[-12,4],[-26,-4],[-11,11],[-9,37],[-8,36],[-12,33],[-18,29],[-19,26],[-14,29],[-15,29],[-20,51],[-14,-7],[-11,-4],[-9,25],[-9,26],[-13,18],[-22,33],[-10,18],[-25,22],[-14,36],[-15,18],[-10,26],[-18,29],[-30,171],[-1,66],[1,58],[-4,58],[-13,117],[4,40],[-3,36],[-4,59],[-7,58],[-16,25],[-19,33],[-8,55],[-12,62],[-11,29],[-11,25],[-13,48],[-5,47],[2,54],[3,51],[-14,4],[-30,26],[-22,14],[12,18],[14,40],[24,139],[6,33],[4,65],[12,87],[4,73],[10,80],[17,73],[10,58],[16,66],[13,76],[11,55],[12,26],[-4,40],[2,102],[15,43],[4,40],[8,55],[7,47],[-2,51],[-12,22],[-12,51],[6,47],[9,62],[7,51],[13,55],[17,44],[9,40],[3,76],[7,33],[8,47],[-9,40],[-7,66],[1,40],[-11,33],[8,54],[10,62],[16,40],[26,33],[11,47],[10,48],[11,18],[17,14],[21,33],[15,55],[2,12],[5,42],[1,11],[5,24],[3,20],[1,76],[-11,26],[-2,65],[-1,6],[-5,27],[-10,44],[-12,55],[-7,65],[-15,69],[-11,62],[-14,33],[-27,36],[-15,48],[18,58],[9,29],[10,51],[5,44],[9,51],[16,51],[36,83],[30,37],[-6,54],[-20,81],[-15,51],[-8,83],[-12,73],[-25,4],[-13,-4],[-13,7],[-20,30],[-11,61],[7,44],[3,98],[-14,40],[-10,59],[-2,65],[-16,73],[-23,47],[-20,44],[-11,22],[-24,33],[-16,18],[-12,15],[-34,50],[-17,19],[-25,0],[-20,80],[-9,65],[-8,40],[-8,33],[-3,40],[-3,44],[-8,55],[3,47],[-7,33],[-4,58],[-2,36],[-12,22],[-14,51],[-13,62],[-15,40],[-4,36],[-9,73],[3,99],[-2,109],[-3,36],[-6,29],[-13,40],[-11,11],[-11,22],[-23,-18],[-17,-29],[-13,-29],[-8,-29],[-12,-48],[-12,-22],[-12,-14],[-26,0],[-14,4],[-16,-15],[-6,-47],[-16,-30],[-14,-7],[-22,-22],[-23,22],[-9,33],[-18,0],[-15,-44],[-15,-18],[-20,-36],[-14,-29],[-12,-19],[-17,-11],[-7,-36],[-9,-47],[-15,22],[-13,36],[-10,25],[-12,8],[-10,40],[0,62],[-3,58],[2,47],[7,29],[-1,73],[7,62],[-6,44],[-10,43],[-2,37],[7,36],[4,73],[-5,47],[-8,41],[-18,36],[-12,-4],[-13,-7],[-12,-22],[-21,-25],[-17,0],[-13,-8],[-14,-7],[-13,-7],[-13,0],[-4,54],[-12,40],[-9,26],[-9,69],[-3,37],[-9,58],[6,58],[1,40],[-26,58],[-9,30],[-15,50],[-8,51],[-10,48],[7,29],[2,36],[5,51],[7,48],[6,47],[-13,51],[-15,44],[-11,36],[-12,22],[-17,29],[15,58],[2,59],[-6,32],[-14,44],[-18,22],[-17,25],[-16,33],[-21,29],[-11,22],[-14,15],[-9,25],[2,44],[10,18],[12,55],[5,51],[8,29]],[[70608,63490],[-47,-284],[-43,-262],[-14,-84],[-64,-382],[-21,-128],[-31,-182],[-26,-160],[-44,-262],[-7,-37],[-11,-69],[-18,-109],[-28,-171],[-36,-211],[-12,-70],[-15,-94],[-38,-226],[-3,-22],[-3,-18],[-24,-146],[-19,-113],[-13,-76],[-71,-422],[-26,-153],[-20,-121],[-44,-268],[0,-1],[-26,-157],[-17,-98],[-15,-91],[-11,-62],[-21,-131],[-16,-91],[-10,-62],[-12,-65],[-2,-18],[-26,-153],[-28,-164],[-14,-88],[-35,-211],[-7,-44],[-29,-174],[-64,-386],[-7,-44],[0,-73],[3,-200],[3,-251],[1,-142],[1,-59],[8,-212],[29,-3],[8,-10],[25,-60],[12,-22],[10,-14],[7,-10],[2,-6],[1,-3],[2,-5],[6,-36],[0,-1],[0,-16],[-2,-37],[-1,-33],[-3,-19],[0,-1],[-8,-39],[-10,-33],[-48,-140],[-9,-16],[-14,-15],[-4,-4],[-29,-53],[-13,-34],[-11,-43],[-1,-2],[-9,-33],[-32,-143],[-1,-2],[-2,-9],[-5,-38],[-1,-49],[3,-39],[11,-39],[24,-88],[2,-7],[5,-20],[48,-168],[2,-7],[0,-1],[5,-20],[2,-194],[-40,-76],[-20,-25],[-76,-43],[-8,-4],[-58,0],[-18,17],[-4,6],[-1,2],[-13,3],[-6,-5],[-2,-2],[-5,-5],[-12,-12],[-14,-25],[-6,-24],[-1,-20],[-5,-17],[-5,-7],[-5,-2],[-73,-9],[-31,-5],[-2,0],[-48,-8],[-13,-14],[-27,-28],[-34,-33],[-8,-3],[-38,-15],[-43,-17],[-2,-1],[-21,-5],[-1,13],[-1,35],[-4,15],[-1,2],[-11,11],[-4,3],[-3,-2],[-2,-1],[-8,-15],[2,-9],[-36,-15],[-10,-26],[-9,-25],[-2,-36],[7,-62],[4,-40],[12,-40],[-5,-44],[-27,-18],[-17,-55],[-10,-18],[-11,-11],[-17,-26],[-20,-25],[-21,-40],[-23,-58],[-18,-22],[-19,-29],[-31,-70],[-27,-51],[-11,-14],[-41,-40],[-13,-7],[-16,0],[-19,10],[-28,8],[-8,33],[-29,36],[-21,22],[-11,25],[-9,40],[-28,19],[-12,-19],[-13,0],[-36,26],[-14,-18],[-20,-4],[-15,-29],[-16,-73],[-10,-33],[-14,-18],[-13,-62],[-13,0],[-16,4],[-21,-26],[-24,-32],[-11,-26],[-15,-25],[-27,-8],[-11,-11],[-14,-14],[-13,-15],[-193,-1052]],[[67900,52592],[-256,-197],[-25,-18],[-16,-14],[-20,-15],[-150,-131],[-43,-36],[-20,-19],[-68,-58],[-17,-15],[-17,-14],[-19,-15],[-16,-14],[-17,-18],[-63,-62],[-44,-40],[-99,-102],[-45,-46],[-27,-27],[-14,-15],[-25,-11],[-41,-62],[-153,-152],[-22,7],[-68,18],[-78,22],[-278,76],[-2,0],[-46,15],[-2,0],[-12,4],[-45,10],[-75,22],[-18,4],[-180,51],[-31,7],[-24,15],[-37,20],[-2,2],[-87,284],[-17,43],[-63,215],[-30,106],[-31,102],[-106,360],[-45,161],[-1,3],[-32,102],[-19,66],[-28,94],[-14,48],[-40,134],[-21,73],[-23,77]],[[65228,53652],[17,15],[11,11],[5,15],[29,108],[-1,14],[-15,43],[-2,7],[-1,12],[0,11],[16,162],[4,19],[2,3],[1,3],[1,2],[4,2],[8,6],[9,14],[5,19],[5,23],[1,27],[1,6],[-1,25],[1,22],[2,19],[1,20],[2,4],[17,67],[1,10],[3,22],[0,37],[0,2],[-4,37],[-17,75],[-4,14],[-11,43],[-16,63],[-18,123],[-7,14],[-7,24],[-11,31],[-2,9],[-6,43],[-22,85],[-7,9],[-96,149],[-21,31],[-55,79],[-56,88],[-1,2],[-1,3],[-3,46],[-2,42],[-2,33],[0,4],[-2,74],[0,5],[-4,-6],[-5,-8],[-9,3],[-25,28],[-8,23],[-16,97],[-17,242],[-3,94],[-4,42],[-8,98],[-2,15],[-44,188],[-7,27],[-16,43],[-65,122],[-3,14],[-2,13],[-2,9],[-3,8],[-9,22],[-15,11],[-11,2],[-6,1],[0,1],[-16,12],[-17,16],[-16,36],[-39,169],[-12,118],[-2,33],[0,1],[-3,160],[-1,49],[0,70],[-7,53],[-7,50],[-4,22],[-3,20],[-4,20],[-2,8],[-6,20],[-24,65],[-5,7],[-1,1],[-1,1],[-23,18],[-5,11],[-24,75],[-11,47],[-6,25],[-1,1],[0,1],[-1,19],[1,15],[18,93],[8,40],[-5,48],[-29,87],[-33,113],[-12,36],[-5,55],[0,40],[-15,36],[-20,30],[-16,36],[-9,66],[-7,72],[-4,44],[-14,66],[-7,29],[-10,43],[-8,30],[-17,47],[-7,47],[-5,37],[-15,25],[-18,26],[-41,40],[-13,7],[-11,7],[-17,11],[-17,15],[-15,32],[-17,48],[-11,33],[-12,29],[-12,29],[-13,47],[-9,33],[-8,29],[-16,47],[-12,33],[-7,48],[0,54],[0,51],[5,117],[0,62],[-2,36],[-7,51],[-27,29],[-8,44],[-6,58],[-7,47],[-5,44],[-3,44],[-12,43],[-29,88],[-6,29],[-9,51],[-16,4],[-16,0],[-15,0],[-18,3],[-13,0],[-45,-25],[-14,0],[-23,18],[-13,14],[-15,26],[-21,44],[-18,32],[-16,30],[-14,25],[-20,22],[-15,7],[-12,62],[-2,51],[0,98],[-1,40],[0,51],[0,55],[0,51],[-4,55],[-13,59],[0,2],[-80,26],[-37,18],[-11,4],[-48,25],[-14,11],[-12,11],[-15,11]],[[17791,57580],[-15,-80],[-2,-47],[-10,-62],[-1,-17],[-1,-30],[-15,-110],[5,-54],[15,-33],[9,-26],[3,-36],[-6,-76],[-17,-15],[-17,-11],[-12,-25],[-15,-55],[-12,-25],[-7,-12],[-5,-7],[-14,-22],[-14,-10],[-34,-22],[-18,-62],[-8,-48],[-9,-29],[-13,-36],[-11,-18],[-12,-8],[-12,-7],[-28,-36],[-13,-15],[-12,-11],[-15,-18],[-19,-40],[-6,-33],[-5,-36],[-8,-29],[-13,-62],[-13,-18],[-20,-22],[-15,-22],[1,-51],[-1,-36],[-8,-48],[-10,-25],[-21,-11],[-21,-18],[-11,-55],[-2,-62],[1,-36],[-7,-51],[-13,-59],[0,-3],[-2,-29],[-3,-33],[-7,-98],[-2,-66],[-12,-62],[-14,-22],[-13,-19],[-6,-10],[-11,-47],[-7,-51],[-7,-33],[2,-87],[-16,-33],[-14,-22],[-12,-44],[-10,-54],[-2,-48],[-8,-69],[-11,-62],[-17,-72],[-25,-24],[-1,-2],[-18,-36],[-17,-8],[-22,-22],[-14,-25],[-8,-36],[18,-153],[-6,-40],[-13,-59],[-4,-22],[-2,-10],[-9,-55],[-11,-11],[-10,-11],[-15,-14],[-27,-44],[-17,-47],[-14,-59],[-7,-65],[0,-7],[1,-44],[3,-40],[-4,-40],[-15,-15],[-10,9],[-1,2],[-12,-7],[-8,-29],[-9,-73],[-11,-48],[-12,-36],[-16,4],[-15,7],[-14,4],[-13,-11],[-12,7],[-13,15],[-14,7],[-20,-11],[-23,-4],[-23,-3],[-33,-37],[-11,4],[-19,-4],[-14,-18],[-15,-18],[-20,11],[-6,3],[-21,-14],[-1,-5],[-10,-28],[-15,-51],[-20,18],[-15,26],[-19,7],[-18,0],[-16,-33],[-9,-33],[-10,-36],[-13,-11],[-8,16],[-9,21],[-15,18],[-20,11],[-10,-22],[-13,-44],[-18,-14],[-15,-33],[-12,-58],[-6,-37],[-27,-36],[-66,-44],[-39,-22],[-92,-29],[-85,-222],[-1,-2],[-10,-24],[-16,-3],[-13,-22],[-12,-22],[-1,-8],[-9,-54],[-3,-40],[-6,-58],[-8,-29],[-17,-18],[-25,10]],[[15808,52799],[-14,55],[-11,44],[-6,54],[-11,33],[-5,40],[-6,51],[0,4],[-21,127],[-14,-11],[-11,0],[-12,15],[-14,44],[-11,40],[-14,-44],[-14,-11],[-18,26],[-17,21],[-19,15],[-25,4],[-23,21],[-22,8],[-17,-8],[-21,4],[-9,58],[0,2],[-4,68],[1,47],[-6,65],[-13,11],[-19,20],[-3,2],[-1,58],[-12,30],[-69,-22],[-14,0],[-17,-18],[-4,58],[-8,51],[1,62],[5,24],[4,19],[8,40],[4,51],[-3,88],[-7,83],[-6,73],[0,51],[0,73],[-8,33],[-8,51],[-2,40],[-13,29],[-11,18],[-10,22],[-7,44],[-10,65],[-3,9],[-10,24],[-12,0],[-15,-4],[-15,4],[-17,18],[-6,40],[1,62],[9,66],[2,36],[-1,62],[-16,22],[-11,18],[-17,40],[-12,26],[-10,21],[0,1],[-31,40],[-8,40],[-4,51],[-2,54],[-5,84],[-15,25],[-13,55],[-2,51],[1,66],[-13,29],[-17,7],[-18,47],[-10,55],[-12,44],[-14,40],[-11,14],[-14,15],[-18,25],[-21,19],[-25,51],[-13,17],[-8,12],[-13,7],[-19,0],[-15,7],[-24,26],[-23,21],[0,1],[-11,10],[-12,15],[-14,-18],[-15,-18],[-11,-4],[-13,7],[-4,12],[-8,21],[-19,18],[-24,77],[-8,32],[4,41],[-3,36],[-15,33],[-13,36],[-13,15],[-13,14],[-9,26],[-16,51],[-28,54],[-3,4],[-18,18],[-14,55],[-39,22],[3,54],[5,40],[0,22],[2,40],[-2,44],[-4,36],[-4,59],[5,80],[-3,43],[-1,48],[-12,32],[-3,44],[1,29],[1,26],[1,87],[0,51],[-3,37],[-12,7],[-14,33],[-5,36],[-14,51],[-18,33],[-13,22],[-13,25],[-2,66],[-3,36],[-15,22],[-13,36],[-19,-3],[-19,-19],[-19,0],[-26,22],[-23,29],[-8,37],[-13,47],[-12,15],[-13,3],[-27,11],[-23,15],[-22,29],[-6,33],[-7,18],[-13,33],[-13,29],[-1,3],[-11,41],[6,25],[5,26],[2,65],[-1,40],[-11,51],[0,51],[1,55],[0,65],[2,44],[2,40],[-24,11],[-11,11],[-15,-26],[-16,8],[-21,3],[-16,11],[-17,29],[1,48],[1,76],[-12,33],[-9,62],[-3,40],[-3,54],[-9,22],[-16,15],[-18,33],[-17,21],[-12,19],[-15,18],[-12,11],[-21,-4],[-27,18],[-44,77],[-22,-4],[-19,22],[-57,-7],[-11,7],[-15,11],[-18,25],[-34,-36],[-12,-11],[-19,4],[-12,-18],[-12,-4],[-23,-18],[-14,7],[-22,11],[-13,11],[-15,47],[1,44],[1,40],[3,36],[2,51],[2,37],[6,73],[-9,32],[-9,40],[3,59],[7,43],[8,55],[-15,47],[-10,66],[-12,40],[-8,44],[8,61],[11,55],[9,36],[1,51],[-12,44],[-21,47],[-15,30],[-17,11],[-15,7],[-15,7],[-19,7],[-15,-3],[-12,0],[-15,0],[-12,3],[-28,19],[-4,7],[-9,22],[-3,2],[-16,9],[1,36],[-34,113],[4,55],[-23,105],[-8,91],[-6,77],[-22,18],[-12,-4],[-35,-7],[-12,2],[-7,2],[-21,-8],[-20,0],[-38,44],[-21,25],[-18,0],[-16,-11],[-17,-3],[-9,29],[-3,109]],[[12817,60908],[17,-7],[16,18],[12,51],[6,62],[13,29],[36,44],[16,29],[21,33],[-2,58],[11,69],[4,58],[-3,37],[-3,40],[21,44],[13,54],[-6,44],[-12,36],[-1,73],[6,77],[46,11],[25,21],[10,88],[-3,47],[-3,51],[-1,44],[16,51],[6,62],[19,7],[21,29],[10,44],[23,58],[2,40],[-3,44],[-6,47],[-9,47],[-8,37],[-13,33],[3,65],[-1,37],[-10,54],[-33,58],[10,48],[5,51],[-8,65],[-11,37],[-6,32],[-3,81],[1,51],[-6,40],[-25,109],[-11,11],[-21,-11],[-22,33],[-12,14],[-24,26],[-15,32],[-15,26],[-14,33],[-14,29],[-15,14],[-21,70],[0,72],[-4,62],[-8,33],[16,189],[-18,40],[-13,62],[22,95],[8,44],[4,91],[7,40],[10,25],[40,80],[9,33],[12,87],[-42,84],[-20,91],[-5,44],[5,80],[3,87],[19,33],[12,40],[25,62],[-7,44],[-6,58],[-2,62],[-14,84],[-11,43],[-11,30],[-14,40],[-11,11],[-14,29],[-23,-4],[-12,36],[4,51],[-15,40],[-21,8],[-22,-15],[-11,-22],[-12,-3],[-16,29],[-17,0],[-28,-26],[-13,11],[-3,48],[-13,32],[0,48],[-2,76],[-2,62],[-3,36],[7,44],[61,157],[12,98],[1,66],[7,69],[9,22],[138,349],[-61,37],[-28,51],[-35,152],[-78,110],[-44,-22],[-26,14],[-31,91],[-19,139],[-21,73],[-32,113],[-229,80],[-9,51],[-111,-33],[-43,44],[-36,3],[-12,0]],[[12049,67513],[-2,26],[-1,2],[-13,119],[4,56],[-6,41],[-14,61],[-1,4],[-6,36],[21,37],[15,22],[27,44],[15,40],[-10,29],[-14,43],[-7,22],[-2,15],[-5,55],[-16,40],[1,47],[4,9],[12,28],[8,34],[5,13],[13,37],[7,18],[10,15],[59,48],[16,27],[17,55],[9,66],[9,32],[94,-23],[106,1],[30,17],[34,-31],[28,-48],[38,19],[14,7],[69,51],[41,-44],[21,6],[27,45],[4,6],[56,75],[21,25],[34,11],[44,219],[3,13],[2,48],[6,44],[9,44],[9,40],[11,45],[8,55],[33,45],[38,32],[12,5],[17,145],[10,48],[19,40],[9,46],[6,30],[-6,70],[-1,61],[5,63],[33,106],[12,29],[19,47],[17,3],[31,-21],[42,-2],[36,-5],[13,31],[27,15],[22,4],[1,0],[16,11],[26,-26],[16,8],[4,-4],[7,-4],[25,54],[31,23],[19,7],[23,22],[18,-15],[15,-18],[17,-7],[17,-7],[3,-2],[15,-20],[15,87],[14,42],[5,5],[1,1],[4,0],[16,0],[1,1],[6,0],[17,15],[8,13],[10,0],[2,0],[8,5],[9,9],[3,5],[4,15],[9,12],[13,12],[1,3],[5,10],[12,19],[11,22],[6,18],[10,8],[1,1],[5,9],[3,6],[4,2],[20,-9],[2,-1],[13,16],[12,17],[5,7],[10,21],[12,51],[20,62],[11,4],[32,51],[2,3],[8,15],[8,30],[4,9],[19,35],[5,6],[6,53],[0,7],[14,31],[12,20],[16,4],[1,1],[1,1],[10,17],[25,77],[3,-1],[23,-4],[8,11],[12,11],[5,-2],[18,-55],[17,-17],[4,-1],[9,-2],[9,-4],[27,-23],[5,0],[2,-2],[10,-1],[16,-15],[5,2],[16,2],[1,0],[11,18],[2,5],[22,26],[7,8],[4,4],[24,19],[7,3],[2,2],[16,13],[9,0],[1,-2],[3,-6],[17,-30],[17,-19],[3,-3],[19,-50],[2,-6],[13,-23],[16,-8],[6,-2],[18,12],[6,9],[11,15],[15,16],[3,2],[9,0],[10,0],[9,19],[2,2],[4,-2],[26,-19],[4,-7],[12,-22],[12,-33],[10,9],[3,3],[8,-7],[4,-6],[14,-9],[4,-3],[8,-18],[1,-3],[18,-24],[12,-6],[1,-3],[7,-13],[1,-6],[9,-28],[4,-13],[21,-51],[1,0],[13,19],[5,9],[18,26],[9,7],[1,0],[6,-15],[19,-17],[19,-48],[20,-36],[3,0],[13,1],[4,2],[22,-12],[7,-5],[19,-46],[9,-15],[7,-40],[13,-31],[1,-7],[19,-25],[7,-3],[18,-19],[1,-1],[9,0],[17,1],[1,0],[21,13],[10,8],[2,1],[4,3],[8,29],[2,7],[3,8],[4,8],[19,26],[12,2],[9,23],[24,39],[1,1],[2,2],[9,7],[8,23],[19,46],[7,39],[7,26],[23,37],[20,77],[10,18],[4,8],[6,23],[8,31],[14,23],[14,29],[5,13],[12,22],[15,9],[13,3],[19,16],[6,0],[7,0],[16,-9],[8,14],[8,21],[1,2]],[[81509,62237],[19,-58],[57,0],[14,5],[26,10],[33,-11],[26,-102],[41,-91],[44,-33],[12,1],[30,2],[15,-41],[11,-31],[9,-21],[24,-52],[17,5],[8,2],[10,9],[18,17],[26,-102],[-1,-10],[-7,-85],[7,-15],[15,-32],[2,-4],[19,-37],[14,-29],[13,-30],[29,-71],[20,-110],[2,-43],[2,-30],[43,26],[29,-15],[22,-87],[25,-55],[41,-98],[35,-102],[45,-138],[16,-58],[32,-92],[10,-105],[5,-160],[-31,25],[-30,44],[-33,54],[-40,48],[0,1],[-37,86],[-21,54],[-1,1],[-41,-29],[-11,23],[-16,39],[-38,51],[-36,72],[-25,44],[-27,6],[-8,1],[-35,0],[-32,19],[-30,0],[-13,-12],[-41,-36],[30,-76],[42,0],[32,-8],[18,-61],[46,0],[17,-44],[26,-73],[21,-84],[24,-36],[25,-26],[43,-54],[11,-109],[42,-37],[27,-124],[59,-72],[51,-84],[28,-22],[21,-44],[16,-51],[38,-65],[40,-73],[41,-91],[36,-84],[19,-44],[61,-21],[19,-15],[35,-22],[33,-25],[36,-37],[29,-51],[20,-94],[15,-91],[24,-99],[22,-69],[24,-80],[20,-178],[12,-142],[4,-66],[9,-51],[18,-109],[15,-157],[2,-134],[-44,-77],[22,-135],[-32,-120],[42,0],[10,-65],[-20,-84],[0,-117],[36,-18],[20,-149],[32,0],[20,-69],[-10,-219],[5,-182],[21,201],[21,83],[15,135],[-62,149],[-36,168],[20,69],[16,149],[-46,117],[10,91],[37,25],[21,33],[20,44],[23,40],[25,25],[62,62],[32,40],[35,44],[70,91],[29,40],[37,44],[39,29],[26,0],[11,-77],[18,-80],[21,-54],[30,-70],[44,-76],[52,-62],[11,-62],[41,-47],[41,-26],[42,-29],[58,-47],[48,-95],[38,-69],[26,-29],[83,-40],[70,25],[74,-21],[40,7],[38,18],[69,-22],[45,-29],[38,-87],[24,-70],[35,-72],[25,-66],[21,-80],[37,-58],[37,-73],[31,-117],[8,-109],[4,-116],[3,-131],[-17,-95],[10,-128],[4,-138],[-13,-55],[-39,-21],[-15,-84],[-25,-58],[-16,-29],[-29,-33],[-36,-22],[-34,73],[-38,3],[-47,-18],[29,-80],[-18,-40],[-17,-22],[-76,-22],[-26,-131],[88,77],[23,-22],[34,44],[45,25],[37,-40],[44,4],[20,43],[23,8],[30,14],[40,47],[21,132],[49,7],[35,44],[8,152],[-16,132],[18,83],[-10,77],[-12,87],[22,11],[44,-76],[46,-110],[28,-62],[37,-21],[19,-8],[44,-11],[49,-11],[40,15],[40,7],[22,-32],[33,54],[23,11],[31,-47],[1,-142],[36,-69],[28,-55],[43,-40],[26,-4],[59,-36],[26,-29],[44,-33],[16,-45],[1,-2],[36,-33],[46,-55],[28,-14],[23,-4],[24,11],[23,-4],[32,-3],[45,11],[51,-8],[31,-29],[16,-73],[17,-36],[24,-77],[29,-54],[37,-69],[52,-51],[46,-15],[28,-69],[-23,-55],[-27,-7],[-37,18],[-33,-14],[-46,-26],[-38,-3],[-40,3],[-50,0],[-10,-76],[-27,-4],[-49,-22],[-32,-29],[-38,-33],[-13,-123],[-28,-88],[-19,-65],[-26,-62],[-35,-8],[-34,59],[11,-117],[-28,-69],[-25,-44],[-27,-36],[-25,-73],[-30,-69],[-30,40],[-22,-84],[-5,-109],[-9,-69],[-4,-91],[-24,-77],[-31,11],[-36,59],[-27,18],[-19,14],[-26,-25],[-28,-44],[-18,-102],[-51,-58],[-24,-47],[15,-91],[-2,-113],[20,-26],[20,-33],[-2,-91],[37,-76],[33,-84],[28,-62],[-2,91],[-24,80],[-23,128],[-22,127],[25,88],[27,22],[14,69],[13,51],[21,-33],[29,-40],[22,-77],[38,-54],[41,-44],[20,98],[20,62],[20,66],[5,160],[16,113],[41,36],[38,77],[36,65],[27,-7],[26,-33],[-8,66],[18,43],[18,62],[26,11],[24,-11],[27,-51],[11,139],[20,62],[30,40],[5,83],[26,59],[40,-18],[41,54],[67,47],[36,-10],[26,-40],[56,-19],[39,-7],[16,-58],[-23,-84],[-28,-117],[-61,-87],[-41,-65],[10,-113],[28,-48],[12,-62],[1,-94],[0,-95],[19,-124],[10,128],[0,98],[13,102],[8,109],[19,99],[32,58],[49,18],[42,-47],[33,-80],[23,94],[-21,51],[-27,48],[-31,87],[13,58],[21,69],[23,73],[35,66],[31,-8],[23,-25],[16,-36],[21,-59],[32,-43],[27,-22],[34,58],[25,-29],[24,-58],[27,-66],[21,-36],[21,-19],[45,-47],[42,58],[10,77],[35,29],[50,7],[43,-7],[45,-15],[30,-14],[24,0],[27,-33],[25,-11],[-1,-171],[-24,-124],[-38,-22],[26,-83],[-28,-40],[-19,-30],[-19,-14],[-21,33],[-23,-102],[-20,25],[-21,18],[-67,-51],[-47,0],[14,-58],[85,15],[33,-18],[28,-62],[-35,-164],[65,186],[14,10],[38,40],[58,-10],[-6,-110],[1,-131],[9,-102],[-23,-14],[-20,-37],[35,-83],[0,-95],[-23,-124],[-29,-58],[-21,11],[-12,40],[-24,-40],[-29,-55],[-21,-3],[-5,-59],[-63,-36],[23,-84],[29,15],[38,69],[28,29],[27,40],[42,-15],[29,-43],[11,-95],[17,-80],[24,-76],[8,-110],[-26,-62],[-20,-47],[-28,4],[-13,-73],[-28,29],[-31,11],[-38,-55],[-25,-54],[-16,-44],[-21,-25],[-24,29],[-21,43],[-32,113],[-21,-87],[-24,-47],[-37,-8],[-38,-3],[-29,61],[-5,135],[-21,128],[-29,76],[-67,-109],[77,-15],[12,-73],[5,-87],[2,-80],[27,-58],[23,-102],[43,29],[36,0],[46,40],[34,-69],[26,-29],[34,0],[43,62],[32,14],[40,22],[45,18],[39,-11],[37,66],[1,-113],[45,-33],[8,-87]],[[86984,52239],[-7,-99],[-2,-40],[2,-69],[-26,-141],[0,-1],[-14,-86],[-85,-522],[-69,-448],[-15,-94],[-139,-40],[-200,-59],[-31,-7],[-575,-167],[-72,-20],[-110,-31],[-119,-35],[-55,-16],[-20,-4],[-13,-4],[-66,-22],[-10,-2],[-191,-56],[-94,-27],[-30,-9],[-38,-11],[-164,-47],[-120,-37],[-159,-46],[-123,-36],[-5,-2],[-17,-7],[-49,-14],[-1,0],[-124,298],[-121,299],[-7,17],[-47,112],[-32,75],[-97,229],[-84,200],[-57,135]],[[83798,51405],[-92,229],[-89,212],[-19,47],[-78,189],[-134,317],[-40,95],[-42,102],[-37,87],[-123,295],[-2,5],[-60,148],[-13,22],[-225,367],[-77,126],[-4,6],[-93,149],[-44,76],[-83,150],[-107,171],[-154,258],[-48,80],[-34,59],[-53,87],[-18,25],[-72,121],[-59,94],[-41,69],[-82,139],[-52,87],[-121,200],[-93,150],[-96,149],[-11,18],[-20,37],[-40,62],[-55,91],[-105,171],[-67,105],[-14,29],[-43,70],[-57,94],[-99,164],[-21,33],[-8,13],[-129,213],[-41,69],[-57,94],[-181,299],[-92,149]],[[86705,67852],[9,-26],[14,-37],[1,-3],[13,-33],[34,-87],[24,-76],[17,-55],[35,-120],[4,-44],[7,-47],[7,-33],[16,-33],[28,-22],[31,-102],[27,-87],[16,-51],[18,-62],[25,-80],[4,-12],[6,-21],[9,-29],[4,-13],[17,-56],[19,-62],[11,-36],[18,-66],[8,-47],[6,-51],[2,-46],[0,-45],[-5,-54],[-1,-4],[-6,-60],[-2,-23],[-2,-15],[-53,-477],[0,-13],[4,-22],[14,-193],[71,-376],[5,-9],[5,-3],[7,0],[10,9],[37,-173],[-3,-98],[-1,-121],[1,-24],[3,-14],[7,-15],[7,-14],[5,-7],[11,0],[4,-3],[5,-9],[0,-13],[-10,-35],[-1,-20],[2,-10],[9,-26],[6,-13],[18,-26],[4,0],[2,7],[1,7],[44,75],[9,13],[7,-15],[8,-17],[6,-12],[2,-16],[7,-77],[3,-13],[10,-36],[76,-187],[38,-72],[15,-21],[4,-6],[0,-1],[20,-66],[2,-12],[2,-8],[4,-7],[8,-7],[1,-1],[17,-13],[9,-7],[4,1],[8,1],[10,4],[10,5],[12,7],[1,3],[1,2],[1,-1],[3,-3],[16,-17],[125,-31],[2,-2],[25,-34],[17,-22],[61,-79],[2,-3],[6,-11],[7,-13],[-1,-28],[-6,-87],[-1,-13],[-5,-43],[0,-3],[-1,-2],[-5,-18],[-20,-32],[-1,-2],[-33,-86],[-2,-9],[4,-101],[4,-9],[6,-6],[2,-1],[9,-5],[6,0],[41,-40],[9,0],[12,1],[38,2],[3,7],[1,0],[12,29],[10,24],[1,48],[0,8],[2,4],[12,21],[8,-4],[40,-18],[9,-4],[1,-1],[2,-10],[0,-20],[-1,-40],[-7,-66],[4,-58],[3,-11],[2,-5],[28,-63],[30,-11],[11,18],[17,-9],[10,17],[13,68],[6,11],[12,21],[15,24],[12,-2],[7,-27],[5,-7],[19,-10],[11,3],[12,-36],[0,-1],[4,-36],[-16,-2],[-14,-4],[-2,0],[0,-1],[-3,-3],[-8,-7],[1,-3],[13,-102],[1,-12],[10,-46],[8,-38],[9,-40],[16,-12],[18,16],[26,35]],[[88321,62987],[35,-3],[14,-53],[10,-38],[18,-54],[5,-16],[7,-23],[8,-28],[-26,-72],[25,-95],[44,-26],[29,-72],[10,72],[30,-61],[21,-30],[23,-25],[-23,-47],[-38,-48],[-27,-116],[-2,-21],[-6,-74],[-4,-31],[-9,-64],[-12,-91],[-6,-80],[-8,-65],[-16,-66],[-21,-54],[-33,-33],[-39,-40],[-34,-7],[-27,10],[-34,55],[-60,36],[-33,-40],[-24,-54],[-21,-22],[-7,-7],[-11,-30],[-7,-21],[-10,-25],[-11,-30],[-28,0],[-25,38],[-35,53],[-14,-3],[-17,-4],[-40,-18],[-3,98],[9,76],[21,128],[22,102],[4,134],[-30,-69],[-5,-52],[-7,-79],[-9,-80],[-15,-44],[-13,-72],[-4,-117],[-12,-153],[-33,40],[-42,62],[-43,40],[-34,29],[-19,-7],[-41,-76],[-17,-77],[-21,55],[-26,102],[-24,72],[-35,81],[-47,29],[-41,7],[-28,25],[-43,37],[-52,7],[-13,4],[0,102],[0,65],[41,69],[52,51],[-21,0],[-57,-51],[-63,66],[16,-218],[-15,-88],[-39,-18],[-66,-15],[-44,15],[-47,-4],[29,-98],[-24,-80],[-6,-84],[-18,48],[-26,-48],[-29,-3],[-36,21],[-24,37],[-23,43],[-19,44],[-19,69],[-29,55],[-14,69],[-18,62],[-29,-18],[-19,41],[-8,17],[-49,40],[-45,40],[-28,55],[-26,69],[-31,87],[-43,59],[-40,72],[-13,66],[31,84],[8,83],[21,142],[0,62],[26,117],[0,62],[-36,-146],[-11,-84],[-5,-94],[-21,-48],[-11,-25],[-24,-58],[-23,47],[5,-124],[6,-113],[41,-69],[-1,-120],[-40,-62],[-1,-54],[-2,-99],[-28,43],[-6,8],[-8,38],[-10,46],[-22,11],[-6,3],[-3,-2],[-25,-23],[-34,-26],[-49,-10],[-38,112],[-18,-14],[-22,43],[-15,30],[-26,47],[-7,-47],[26,-48],[15,-47],[72,-120],[20,-37],[24,0],[37,-3],[56,-29],[37,-120],[40,-33],[35,-55],[15,124],[4,87],[-3,45],[-3,46],[12,3],[26,5],[46,-62],[0,-80],[32,-80],[42,-41],[27,22],[36,-29],[2,-5],[15,-33],[8,-16],[2,-12],[21,-83],[43,-77],[20,-50],[20,-52],[10,-37],[22,-86],[-1,-13],[-11,-118],[-33,-110],[-6,-21],[-33,25],[-41,58],[-42,-11],[-41,-51],[-48,-65],[-34,-47],[-33,-99],[-14,-109],[-25,-40],[-44,-47],[-31,-11],[-38,-26],[-37,77],[6,-73],[-7,-77],[-26,-87],[2,-131],[-12,-7],[-35,-19],[-28,-51],[-50,4],[-41,-14],[-26,50],[-28,26],[-27,76],[-46,40],[-33,-3],[-27,-40],[-41,-37],[-30,11],[-30,73],[-8,98],[-30,73],[-18,62],[-25,77],[-14,58],[-20,127],[-16,111],[-8,53],[0,-62],[0,-58],[22,-124],[0,-73],[7,-69],[24,-73],[17,-87],[14,-98],[-29,-110],[36,-18],[31,-54],[31,-51],[26,-22],[32,7],[29,18],[25,29],[43,11],[19,-80],[12,-47],[16,-47],[32,-66],[23,29],[35,26],[47,-40],[-1,-6],[-36,-157],[-8,-59],[23,-32],[37,-64],[64,-3],[1,1],[7,9],[2,46],[-1,4],[-1,4],[-27,20],[-41,-3],[-22,56],[7,69],[44,73],[1,19],[13,95],[11,124],[21,4],[23,4],[26,-8],[15,88],[38,3],[34,66],[25,-7],[44,43],[37,84],[37,29],[25,62],[31,25],[27,91],[27,62],[19,-120],[16,-62],[-1,-167],[5,-62],[9,91],[7,58],[3,80],[14,0],[34,-80],[36,-116],[34,-110],[19,-101],[9,-153],[21,-95],[34,-66],[35,-47],[24,-29],[98,-84],[27,-73],[-21,-127],[-18,-128],[-8,-112],[2,-106],[2,-127],[-26,-88],[-9,-138],[-17,33],[-26,-59],[-33,11],[-35,-40],[-24,58],[-26,48],[-16,7],[-59,58],[-36,33],[31,-84],[43,-36],[22,-33],[35,-76],[21,-120],[58,69],[35,14],[0,-76],[6,-88],[13,-69],[5,-83],[0,-81],[35,-91],[86,-145],[15,-37],[-11,-80],[0,-120],[20,-80],[24,-47],[28,-91],[-4,-77],[-14,-62],[-28,37],[-19,76],[-26,-11],[-11,4],[-3,131],[-15,-131],[-62,4],[-37,-66],[109,0],[18,-47],[30,-44],[27,-84],[13,-102],[-8,-36],[-90,-91],[5,-48],[73,84],[-12,-62],[-29,-174],[0,-168],[36,117],[5,69],[15,65],[8,99],[13,21],[18,55],[21,7],[22,-94],[12,-84],[6,-51],[0,-109],[0,-73],[6,-91],[12,-77],[18,-54],[20,-58],[10,-91],[10,-106],[-20,-36],[-24,0],[-76,36],[-57,4],[-51,-8],[-28,37],[-27,43],[-53,80],[-63,81],[-52,36],[-23,11],[-37,-4],[-33,22],[-31,37],[-40,47],[-37,22],[-46,32],[-44,26],[-37,33],[-29,14],[-37,40],[-36,59],[-32,58],[-29,80],[-16,116],[44,-43],[39,-58],[-1,61],[-9,73],[-34,37],[-23,47],[-27,33],[-9,102],[7,80],[34,44],[28,-4],[8,84],[29,87],[36,11],[32,-47],[47,-33],[27,47],[30,0],[26,-14],[27,-84],[13,14],[-24,99],[-25,47],[-28,-14],[-56,10],[-17,4],[-25,15],[-12,51],[2,91],[2,102],[-4,87],[-10,18],[-3,95],[0,54],[13,55],[-5,77],[-17,-124],[-26,-8],[14,-47],[7,-76],[9,-91],[-4,-73],[-6,-69],[-5,-73],[-38,-4],[-26,-80],[-33,-18],[-27,-95],[-29,18],[-26,102],[16,121],[-22,29],[-36,91],[-16,134],[-42,0],[-40,99],[34,-126],[2,-5],[36,-84],[37,-153],[4,-62],[-6,-113],[16,-102],[0,-116],[-4,-73],[-22,-22],[-33,22],[-21,36],[5,-98],[-15,-47],[-28,-4],[-29,11],[-27,25],[-63,55],[-66,44],[-37,36],[-46,66],[-39,73],[-31,83],[20,120],[6,69],[4,48],[0,84],[-26,32],[-24,31],[-2,2],[26,-98],[0,-69],[-29,-135],[-30,-29],[-20,-22],[-22,-25],[-61,-33],[-28,-15],[-40,4],[-23,11],[-54,25],[-49,11],[-14,-2],[-16,-1],[-45,-15],[-3,-17],[-15,-89],[-13,-18],[-5,-7],[-7,-6],[-28,-23],[-23,-44],[-2,-3],[-37,-62],[-38,18],[-28,78],[0,2],[-21,58],[-14,59],[-22,87],[35,7],[28,26],[4,3],[-15,40],[-8,3],[-29,8],[-35,62],[-48,4],[-31,0],[-37,76],[6,-109],[-28,36],[-38,69],[-26,33],[-24,18],[-26,11],[-38,59],[-60,36],[-77,95],[-26,58],[-29,62],[-25,116],[-13,106],[-15,98],[23,91],[21,80],[5,70],[10,80],[15,142],[37,54],[9,84],[9,18],[36,0],[12,0],[36,33],[26,51],[47,87],[47,-21],[-16,120],[-36,-18],[-84,-117],[-46,-35],[-22,-16],[-33,-29],[-9,-87],[-19,-11],[-18,40],[-20,69],[5,120],[-3,82],[0,13],[1,72],[12,91],[8,99],[19,84],[4,127],[12,98],[33,59],[3,105],[-12,124],[31,116],[16,110],[-11,98],[-18,-98],[-25,-62],[-23,-80],[-19,-40],[-17,-44],[1,-84],[14,-105],[-21,-128],[-3,-113],[-32,-113],[-24,-160],[-18,-105],[19,-71],[4,-17],[-4,-124],[-8,-80],[7,-94],[-2,-110],[-21,-91],[-5,-112],[-21,-124],[-2,-113],[-19,-88],[-35,-61],[-28,-33],[-30,7],[-40,22],[-61,22],[-37,14],[-43,29],[-38,37],[-30,33],[-41,25],[-36,51],[-38,80],[16,73],[12,98],[-36,-62],[-18,-69],[-32,-18],[-1,0],[-34,26],[-50,39],[0,1],[-52,7],[-40,18],[-56,37],[-32,-37],[-24,0],[-28,-4],[-35,-3],[-40,-11],[-46,73],[-44,47],[-24,36],[-12,19],[-35,36],[-58,102],[-39,127],[-3,7],[-18,37],[8,113],[10,18],[62,8],[62,-33],[12,6],[46,27],[17,87],[3,14],[-52,-36],[-1,0],[-57,0],[-82,36],[-25,-36],[-3,-4],[-18,-29],[-13,-32],[-50,-117],[-11,-17],[-13,-23],[-41,44],[-39,54],[-36,62],[-4,53],[-3,42],[4,69],[2,28],[1,12],[-16,95],[18,94],[-14,70],[-29,54],[-30,29],[0,95],[-14,124],[-24,-106],[7,-105],[5,-110],[27,-142],[-19,-69],[-29,-22],[-32,-25],[-33,-15],[-31,22],[-31,40],[-66,29],[-33,84],[-20,77],[-22,76],[-26,73],[-34,84],[-20,54],[-56,106],[-24,47],[-26,66],[-27,94],[-21,55],[-11,51],[-24,87],[-9,131],[-21,51],[-25,44],[-35,80],[-46,109],[-30,59],[-15,62],[-25,32],[-21,62],[-19,44],[-25,36],[-46,77],[-27,120],[-34,44],[-20,51],[-37,-37],[-20,16],[-13,10],[-36,54],[-28,62],[-32,73],[-24,44],[-8,14],[-32,22],[-25,51],[-37,98],[-34,11],[-35,-54],[-39,54],[-20,59],[-16,72],[-23,30],[-27,87],[7,113],[-28,33],[-7,-41]],[[94918,46854],[-40,-66],[-45,-51],[-56,-87],[-33,-62],[-28,-51],[-44,-62],[-65,-117],[-79,-138],[-59,-109],[-43,-99],[-25,-47],[-32,-62],[-37,-80],[-21,-36],[-31,-59],[-42,-98],[-65,-149],[-25,-66],[-72,-185],[-17,-66],[-59,-153],[-30,-105],[-28,-110],[-17,-69],[-16,-54],[-18,-48],[-41,-29],[-49,-11],[-35,48],[-22,43],[-3,102],[47,102],[18,109],[35,40],[77,55],[11,51],[16,124],[32,87],[28,146],[19,65],[19,91],[11,31],[-12,250],[-17,40],[7,105],[4,175],[6,80],[2,29],[21,121],[49,59],[8,31],[184,-61],[74,-115],[41,67],[33,44],[41,80],[33,47],[40,88],[38,80],[32,44],[4,-1],[156,163],[35,37],[324,456],[222,298],[411,483],[331,416],[1,1],[192,240],[54,149],[14,105],[29,-21],[55,-40],[44,-193],[-34,-66],[-23,-87],[-63,-65],[-29,-48],[-240,-229],[-211,-233],[-193,-251],[-189,-259],[-99,-109],[-29,-58],[-41,-51],[-28,-44],[-54,-80],[-30,-36],[-43,-55],[-49,-58],[-66,-99],[-35,-51],[-37,-58],[-32,-43],[-67,-102]],[[96725,48999],[-49,-19],[-13,-4],[-15,15],[-13,29],[11,62],[16,51],[45,59]],[[90946,53586],[-75,-120],[-30,14],[-57,70],[-45,32],[-19,59],[8,69],[0,91],[22,65],[9,49],[6,39],[5,131],[-29,135],[44,3],[31,-33],[5,-55],[2,-21],[9,-20],[15,-31],[37,-73],[8,-46],[6,-34],[9,-120],[26,-106],[13,-98]],[[90044,54743],[2,-89],[-16,-58],[-69,-52],[-7,8],[-41,6],[-47,34],[-30,21],[-7,-6],[-26,-20],[-31,-65],[-48,-44],[-43,-44],[-12,-102],[-27,124],[-19,58],[-10,88],[37,47],[39,-25],[30,-15],[34,91],[50,40],[51,-51],[73,4],[28,-38],[37,15],[16,38],[10,25],[26,10]],[[93136,56641],[-54,0],[-19,19],[-19,2],[-5,43],[11,52],[6,28],[8,48],[5,32],[18,-11],[20,-57],[39,-32],[-10,-124]],[[92076,67510],[2,-2],[21,-24],[45,36],[47,37],[9,7],[34,40],[33,69],[28,29],[30,-14],[20,-77],[46,-284],[9,-22],[31,-83],[65,62],[11,14],[20,0],[-15,-164],[-13,-118],[-6,-56],[1,-45],[1,-24],[0,-1],[64,-152],[26,-48],[37,-3],[41,18],[8,0],[37,0],[14,-98],[2,-77],[1,-3],[11,-62],[6,-15],[17,-47],[35,-48],[18,-24],[20,-27],[33,0],[20,11],[22,42],[9,16],[14,61],[7,31],[15,98],[17,-65],[2,-8],[6,-52],[8,-68],[40,-29],[41,29],[24,-47],[26,-19],[24,26],[21,36],[4,35],[6,42],[12,30],[22,53],[26,73],[27,-22],[17,-76],[23,-87],[12,-48],[2,-7],[15,-98],[31,-84],[6,1],[24,6],[-3,-51],[-1,-22],[-8,-72],[0,-37],[-1,-33],[9,-53],[6,-34],[31,-117],[44,-36],[28,-22],[32,7],[43,88],[29,51],[35,18],[30,51],[19,73],[15,65],[40,121],[25,171],[-2,185]],[[95172,65438],[6,-91],[5,-35],[6,-49],[2,-45],[3,-42],[13,-59],[0,-1],[11,-28],[11,-7],[1,-69],[0,-124],[-32,-69],[-32,-255],[11,-91],[3,-22],[-48,-175],[-3,-175],[-26,-80],[-4,4],[-31,36],[-35,64],[-9,16],[7,-58],[13,-52],[18,-72],[12,-77],[7,-46],[24,-17],[17,-12],[7,-15],[31,-58],[15,-136],[5,-46],[53,-135],[13,-188],[6,-89],[-25,-29],[-61,-11],[-60,0],[-23,-59],[-21,-54],[-45,22],[-18,-91],[0,-156],[-26,-30],[-76,-40],[-35,19],[-41,0],[-44,-212],[13,-57],[25,-106],[-56,-183],[22,-18],[40,77],[34,69],[38,33],[20,0],[22,-37],[-20,-44],[-13,-29],[-11,-27],[-11,-24],[5,-98],[-21,-91],[-37,-73],[-42,-43],[-20,-27],[-23,-32],[-49,0],[-33,-36],[-42,-33],[-6,-1],[-43,-6],[-34,25],[-21,-65],[-7,-20],[-10,-27],[-26,-44],[-35,-40],[-16,-120],[-35,-73],[11,-77],[8,-54],[-10,-102],[-34,-88],[-29,-54],[-38,69],[-31,4],[-28,18],[-37,76],[-5,23],[-10,57],[-42,32],[-1,1],[-9,-113],[24,-76],[5,-88],[35,-65],[-20,-26],[-25,-14],[-23,-26],[-32,22],[-26,7],[-43,106],[14,-102],[3,-73],[-20,-105],[28,18],[6,4],[32,11],[7,3],[22,-44],[23,-32],[26,3],[42,-40],[30,-29],[14,-58],[30,0],[-21,-76],[-35,-121],[47,-11],[44,95],[20,-95],[-9,-131],[-4,-62],[-117,-51],[-8,-10],[-154,-205],[-66,-233],[-17,-91],[0,-1],[-18,-75],[-26,80],[0,-149],[-37,-22],[-48,33],[-21,67],[-4,9],[-25,44],[20,-124],[42,-124],[14,2],[13,2],[14,0],[48,-62],[14,-120],[5,-44],[-24,-62],[-49,-127],[32,-47],[-18,-121],[-14,-55],[-16,-65],[-47,-51],[-7,-2],[-20,-5],[-20,-149],[-33,11],[-2,-51],[-29,-69],[-9,-22],[-4,-102],[51,-62],[2,-21],[2,-19],[15,-379],[-26,-164],[-66,-164],[2,-146],[1,-47],[-17,4],[-14,4],[-15,-18],[-36,-41],[-35,51],[-12,129],[-6,64],[0,113],[25,124],[26,182],[0,91],[-2,-6],[-31,-96],[-37,-62],[-51,51],[8,34],[8,28],[-20,88],[-3,14],[-72,0],[-48,84],[-57,69],[-13,3],[-38,8],[19,-102],[-40,-11],[-22,-11],[-13,-51],[-17,-47],[52,-44],[38,-55],[26,-105],[24,-59],[5,-14],[2,-8],[10,-54],[-51,15],[-51,-40],[-42,-15],[-1,-2],[-27,-53],[1,-36],[62,-124],[-10,-102],[-39,-8],[-14,-3],[-4,-5],[-25,-35],[-32,-94],[-45,-97],[4,-122],[-20,-58],[-11,-96],[-12,-28],[0,-7],[-1,-3],[-2,-15],[-21,-73],[-27,-91],[29,-91],[6,-6],[25,-23],[26,-44],[-5,-42],[-7,-71],[11,-34],[7,-24],[12,25],[9,19],[6,12],[21,39],[30,25],[4,4],[49,-4],[25,-7],[14,-102],[-43,-106],[-14,-54],[-11,-44],[-8,-39],[-9,-49],[-10,-120],[-40,33],[-27,18],[-24,18],[-29,19],[-7,-80],[-26,-15],[-9,-7],[-24,-18],[-39,-33],[-16,-51],[-23,-33],[-5,-102],[-21,-65],[-17,-48],[-23,4],[-23,3],[-20,-15],[-30,-25],[-35,-87],[-27,-73],[-27,-33],[-40,8],[-25,-29],[-26,-11],[6,28],[14,70],[-9,-4],[-16,-7],[-35,4],[-40,25],[-1,30],[-2,50],[-27,26],[-41,-15],[-10,-12],[-26,-31],[-35,-55],[-17,-87],[-4,-106],[16,-77],[23,-50],[35,-128],[-20,-91],[-14,-14],[-9,-8],[-14,-4],[-12,-3],[-35,-40],[-19,-58],[-36,-77],[-4,-113],[21,-73],[20,-80],[-33,-18],[-6,-4],[-26,-87],[-10,-4],[-17,-7],[-36,33],[-49,69],[54,58],[11,121],[18,120],[-9,61],[-9,70],[-22,62],[-32,62],[-27,29],[-14,14],[-11,10],[-33,30],[-33,0],[-42,51],[-37,0],[-30,-14],[-20,-51],[-4,-11],[-19,-80],[-12,-48],[-23,-29],[-31,7],[-20,4],[-9,-3],[-32,-11],[-23,-99],[-43,4],[-27,33],[14,80],[5,29],[1,23],[1,43],[-13,76],[-35,18],[-23,37],[-8,-28],[-13,-45],[-49,-62],[-24,-69],[-34,-70],[-19,84],[21,66],[-14,19],[-4,6],[-13,48],[-21,58],[-22,84],[-5,52],[-7,86],[0,23],[2,86],[8,70],[0,3],[7,43],[-6,12],[-22,-8],[-19,-30],[-6,-10],[-40,84],[-37,33],[-4,24],[-12,67],[-27,73],[-32,11],[-24,35],[-5,8],[-6,-6],[-21,-23],[-25,66],[-17,127],[2,59],[2,61],[26,139],[21,127],[9,102],[13,-10],[20,-15],[33,18],[23,29],[18,33],[-4,23],[-87,-9],[-47,172],[-4,14],[-5,3],[-2,-4],[-6,-10],[-2,-41],[25,-79],[-21,-83],[-4,-15],[-9,-121],[-26,-65],[-14,-106],[-25,-62],[-11,-105],[-1,-43],[0,-92],[1,-48],[-3,-8],[-4,-16],[-12,-65],[-3,-19],[0,-20],[0,-8],[0,-14],[11,-36],[2,-5],[-5,-79],[2,-53],[-2,-19],[20,-87],[25,-80],[36,-58],[13,-95],[-4,-120],[-30,-61],[-6,-12],[-9,-25],[-18,-51],[-23,-18],[-5,-4],[-24,-22],[0,-1],[-23,-32],[-25,-44],[-35,51],[-20,26],[-21,33],[-35,-22],[-18,80],[-25,22],[-54,22],[-27,43],[-22,97],[-2,5],[-22,99],[-37,3],[-18,4],[-15,3],[-36,-43],[-28,113],[4,39],[9,88],[28,4],[9,-9],[18,-20],[33,-4],[24,11],[25,25],[24,15],[14,65],[7,26],[14,55],[8,37],[-7,37],[-3,2],[-18,13],[-20,2],[-19,-62],[-55,91],[-40,40],[-2,23],[-1,9],[-16,84],[-17,56],[-11,33],[-37,-21],[-11,-68],[-20,0],[-28,11],[-32,-22],[-29,-19],[-34,70],[-6,153],[0,182],[6,24],[5,21],[87,0],[5,178],[0,95],[-3,2],[-13,8],[-25,-115],[-18,-31],[-16,22],[-57,0],[-41,11],[-42,124],[-9,102],[-3,113],[-3,62],[-16,18],[-17,22],[-29,53],[-3,5],[-23,73],[5,18],[10,33],[-50,164],[-11,32],[-7,17],[-46,104],[-22,54],[-54,51],[6,-36],[11,-55],[9,-31],[18,-60],[13,-87],[3,-19],[9,-54],[-22,-26],[-21,-32],[-35,32],[-33,30],[-2,-117],[43,-25],[23,-32],[8,-12],[9,-3],[15,-4],[12,-34],[10,-28],[23,-77],[-16,-36],[-3,-7],[-4,-7],[-38,-63],[4,-29],[7,-54],[22,18],[8,7],[19,12],[28,17],[-15,-76],[-22,-37],[-19,-32],[-15,-88],[-5,-25],[-32,14],[-23,-43],[-20,-95],[-6,-73],[37,-157],[55,-112],[-11,-102],[-47,-70],[-9,-61],[6,-113],[29,-153],[21,0],[26,131],[15,23],[8,-4],[9,-128],[37,-186],[0,-44],[-1,-88],[-10,-16],[-42,119],[-57,69],[-8,-8],[-21,-21],[0,-62],[44,-51],[29,-51],[-69,-84],[-48,62],[-26,204],[-32,61],[-6,12],[-47,0],[-44,62],[-28,-26],[-12,-29],[-18,44],[-7,18],[-16,21],[-22,26],[-28,-1],[-11,-1],[-32,-53],[-25,-41],[-22,-250],[-42,-72],[-79,22],[3,39],[2,24],[4,57],[27,67],[-13,130],[-48,160],[-31,-83],[-19,3],[-23,3],[0,66],[-16,106],[-11,-12],[-37,-41],[-41,-101],[-25,89],[18,77],[33,66],[8,84],[-14,128],[37,41],[27,6],[22,4],[37,-160],[12,39],[15,52],[59,-153],[20,77],[205,-139],[1,-2],[22,-52],[18,-105],[5,3],[19,0],[16,-11],[36,-40],[59,0],[25,51],[23,11],[0,135],[-15,36],[-10,25],[-3,36],[-4,34],[41,72],[-20,168],[-22,4],[-23,23],[-16,17],[7,60],[4,38],[-25,63],[-10,24],[-4,8],[-21,43],[-45,22],[-26,84],[-30,-73],[-5,-7],[-16,-29],[-3,-1],[-17,-7],[-4,94],[-3,63],[-7,46],[-5,34],[27,58],[-20,73],[-26,44],[-39,109],[-30,58],[-16,44],[-1,41],[-1,97],[30,-54],[6,-10],[24,-45],[30,29],[21,-25],[17,-40],[28,-18],[6,-4],[-14,120],[-17,33],[-23,36],[-18,62],[10,102],[29,-3],[4,-1],[-9,102],[6,4],[25,15],[-27,51],[-11,50],[-13,55],[3,153],[0,11],[-26,138],[-17,84],[-19,47],[-37,59],[-24,69],[-17,65],[-26,62],[-16,48],[-77,134],[-16,42],[-5,13],[-30,0],[-6,33],[-17,105],[14,48],[46,-26],[12,47],[6,81],[17,-33],[14,-102],[21,-58],[-5,60],[-3,31],[-20,102],[15,7],[1,-1],[12,-21],[7,19],[3,7],[-2,47],[-1,33],[5,36],[10,58],[24,15],[38,-40],[4,-5],[43,-50],[30,0],[32,-47],[13,-28],[18,-38],[-24,88],[-21,58],[-30,22],[-34,40],[-32,40],[-36,25],[-26,26],[-11,-51],[-23,-84],[-14,-91],[-33,11],[-32,-91],[-44,18],[-32,84],[-2,54],[-2,55],[-9,26],[-18,54],[-36,0],[-29,29],[-33,-29],[-34,-7],[-28,-25],[1,-1],[55,-10],[20,0],[29,0],[6,-40],[20,7],[27,-7],[0,-4],[7,-69],[1,-32],[1,-37],[-1,-10],[-6,-71],[-18,-83],[-39,-62],[-9,-65],[-4,-30],[-21,15],[-14,-66],[-17,24],[-15,21],[-2,3],[25,-84],[-4,-102],[0,2],[22,73],[14,49],[30,21],[13,53],[4,20],[30,-62],[18,-98],[4,-74],[3,-61],[32,-94],[-17,-73],[-1,-27],[-1,-20],[39,14],[15,-25],[42,18],[2,-5],[20,-50],[-12,-40],[-62,-51],[-37,-54],[-30,0],[-30,32],[-6,-10],[-23,-41],[-25,0],[-15,15],[0,1],[-8,130],[-12,-84],[-30,-83],[11,-8],[46,-33],[5,-98],[0,-54],[38,-15],[25,-47],[5,2],[11,5],[17,14],[-24,-105],[-28,-102],[-24,-55],[-22,-123],[-18,-46],[-10,-24],[-46,15],[-6,-62],[-19,-25],[-13,32],[-25,40],[-10,-27],[-12,-31],[-6,-55],[33,-14],[-4,-66],[31,-65],[27,-153],[15,-80],[-19,-117],[-33,-3],[0,123],[0,77],[-35,84],[-9,-44],[-6,-12],[-9,-17],[-12,87],[-23,-7],[-2,-5],[-20,-35],[0,-98],[5,-34],[3,-14],[-1,-94],[-20,25],[-16,22],[-26,62],[-9,120],[-11,73],[30,-48],[12,8],[10,65],[-20,26],[-21,36],[10,58],[0,102],[-14,59],[18,14],[17,0],[2,32],[2,19],[15,23],[9,14],[2,34],[2,20],[13,-12],[15,-13],[12,-11],[-21,94],[11,26],[-2,41],[-2,54],[-13,7],[-19,105],[46,161],[-50,-84],[-24,-7],[-28,76],[1,109],[7,84],[-28,117],[5,-197],[-17,-11],[3,-156],[19,-143],[-29,-83],[-25,33],[-28,72],[-27,44],[-26,-11],[-32,91],[10,-124],[63,-51],[27,-83],[55,-37],[-10,-120],[-35,-29],[11,-77],[-19,-76],[-29,-33],[-26,62],[9,-149],[-23,11],[-21,58],[-20,47],[-36,22],[-2,84],[-24,7],[-22,-29],[-25,-44],[-20,115],[-1,6],[-6,-99],[-17,-54],[-16,-88],[35,-14],[28,-80],[25,-55],[21,-95],[-16,-8],[-6,-3],[-15,-16],[-18,-20],[2,-10],[18,-66],[9,-117],[38,-40],[-12,-138],[51,-37],[-17,-76],[26,-33],[6,-44],[3,-14],[0,-120],[14,-88],[-93,-22],[6,102],[-27,18],[-34,-54],[-10,17],[-17,27],[-13,25],[-25,47],[-47,73],[-16,33],[-8,115],[0,1],[6,142],[-43,-29],[-47,44],[-14,117],[5,80],[4,62],[54,-59],[15,26],[-36,58],[39,106],[37,-4],[-11,76],[-21,37],[-36,115],[-2,5],[19,-131],[-14,-40],[-37,4],[-14,80],[-32,62],[-13,80],[-31,0],[-45,-8],[-16,-43],[75,-11],[16,-95],[-19,-113],[-65,-51],[-10,-116],[-78,120],[-52,58],[-43,62],[-21,76],[-8,73],[-4,102],[21,73],[-35,11],[-25,-84],[-20,102],[37,160],[13,164],[10,88],[7,109],[15,54],[39,-94],[29,11],[-20,120],[22,44],[24,40],[-1,94],[31,-18],[28,-62],[28,-62],[12,-80],[34,-33],[-16,-116],[27,44],[32,0],[25,-44],[53,-135],[-23,146],[-34,91],[-30,29],[2,98],[-33,4],[-13,84],[-33,120],[-4,135],[-37,-84],[-45,47],[-8,109],[5,84],[-16,-18],[-27,135],[14,-150],[-4,-91],[9,-91],[-23,-76],[-39,33],[-8,-77],[-21,51],[-24,44],[-25,29],[-3,113],[-16,87],[-11,-84],[4,-109],[-33,-14],[-44,22],[-48,25],[-24,25],[-19,55],[-18,69],[-20,80],[-18,40],[-18,51],[-18,40],[-21,51],[21,121],[38,83],[26,55],[33,33],[25,-59],[-13,-109],[39,4],[62,-95],[-16,128],[-27,3],[-23,55],[15,51],[25,84],[23,0],[34,-11],[-40,83],[13,77],[27,98],[40,0],[-5,69],[7,91],[28,132],[26,7],[40,3],[19,-36],[-1,-80],[37,-33],[47,-22],[40,-7],[22,-80],[-11,-248],[29,222],[25,-29],[35,-80],[18,-47],[25,18],[29,-51],[30,0],[9,-84],[26,-105],[29,-8],[-22,124],[-11,84],[-19,51],[-77,76],[-35,81],[-14,61],[-46,33],[6,62],[44,29],[-43,4],[-27,-11],[-36,18],[-20,11],[-33,22],[-1,120],[-32,40],[14,55],[17,-11],[17,58],[-22,-11],[-20,0],[-34,-73],[-9,66],[14,73],[-16,0],[-9,65],[19,69],[-42,-54],[-14,113],[-35,87],[31,-153],[13,-95],[16,-7],[9,-87],[-12,-58],[-27,-8],[-23,-32],[-25,32],[-16,18],[-34,128],[-27,29],[51,-175],[0,-80],[-22,-149],[-28,33],[11,-99],[-30,-87],[-14,-76],[-24,-26],[-25,-15],[-28,59],[-21,83],[-26,142],[-21,73],[-23,62],[5,84],[2,76],[5,73],[0,73],[5,87],[-1,88],[-8,80],[-27,109],[-39,80],[-35,44],[-38,52],[-8,0],[-35,35],[4,37],[1,8],[7,35],[25,-18],[30,-52],[24,-12],[21,4],[5,21],[-10,21],[-24,5],[-6,20],[-36,63],[-14,7],[-19,10],[-7,-9],[-22,-28],[-27,21],[-4,3],[-5,11],[-10,26],[-24,57],[0,63],[5,52],[106,-27],[17,6],[28,19],[39,18],[39,11],[32,0],[26,-48],[40,-25],[39,-15],[42,-3],[29,3],[26,19],[18,29],[35,-4],[36,26],[45,-30],[51,-11],[38,-7],[34,-54],[20,-40],[31,-33],[27,-26],[24,-18],[31,-11],[39,-4],[40,19],[46,-26],[45,33],[17,-131],[18,-77],[14,-131],[2,-120],[21,-33],[0,-72],[15,25],[27,-7],[-46,102],[-3,98],[-6,87],[3,99],[-4,26],[-2,18],[-5,36],[4,62],[15,40],[7,-8],[16,-18],[1,52],[1,14],[33,65],[24,48],[32,0],[6,54],[9,51],[22,-32],[0,-66],[25,-33],[37,18],[25,-40],[2,-105],[15,63],[16,64],[29,-14],[31,-55],[33,-58],[50,-48],[17,-51],[16,-50],[1,-1],[35,-21],[-18,85],[0,2],[-36,80],[-26,40],[-27,48],[-39,51],[-24,32],[-32,37],[-30,-8],[-26,44],[-28,18],[-6,113],[17,88],[1,5],[4,3],[57,27],[23,-4],[4,10],[4,25],[1,6],[-2,10],[-6,28],[-1,0],[-57,14],[-2,41],[-4,86],[1,113],[15,94],[6,117],[-12,98],[11,90],[3,27],[32,-22],[-1,29],[-2,36],[6,84],[30,117],[32,-66],[4,138],[5,13],[19,57],[11,58],[16,51],[13,26],[17,36],[-33,33],[-13,91],[-21,-135],[-32,0],[-31,62],[-32,58],[5,120],[-51,55],[-33,145],[-37,-25],[-29,-15],[9,95],[-8,51],[-10,109],[-7,9],[-29,35],[-11,80],[-28,11],[5,-67],[2,-31],[-29,-80],[-13,49],[-18,71],[-25,7],[-6,-26],[-7,-29],[-16,-29]],[[12817,60908],[-12,22],[-31,36],[-24,26],[-23,29],[-15,26],[-22,3],[-1,0],[-32,-29],[-25,-4],[-7,-1],[-7,-2],[-4,-6],[-9,-13],[-2,-3],[-12,-40],[0,-2],[-8,-42],[-1,-4],[-11,-25],[-11,11],[-8,44],[-8,51],[-15,36],[-1,0],[-25,7],[-15,48],[-7,69],[-8,33],[-10,41],[-3,10],[-9,25],[-1,1],[-34,14],[-11,4],[-9,3],[-33,7],[-36,-3],[0,-2],[-9,-31],[-22,-22],[-15,4],[-21,32],[-21,-7],[-10,-18],[-12,-44],[-13,-43],[-18,-77],[-17,-11],[-22,-22],[-13,-25],[-11,-29],[-19,-8],[-17,-36],[-11,-18],[-14,-11],[-19,-33],[-19,-18],[-13,-11],[-13,11],[-9,22],[-21,25],[-13,-40],[-10,-47],[-7,-29],[-6,-48],[-2,-40],[5,-47],[-24,-44],[-22,-3],[-11,-22],[-14,-15],[-24,-33],[-8,-76],[-13,-33],[-6,-29],[-21,-18],[-11,-11],[-18,-18],[-20,-11],[-15,-37],[-10,-21],[-9,-37],[-8,-44],[-10,-69],[-1,-80],[14,-33],[-59,-193],[-15,-32],[-6,-33],[-23,0],[-16,25],[-16,4],[-15,-36],[-18,-11],[-7,-33],[-12,-26],[-21,-36],[-25,-55],[-37,26],[-14,-51],[0,-55],[-24,-174],[0,-3],[-10,-27],[-8,-32],[-10,-55],[-17,-36],[-9,-33],[-14,-40],[-14,33],[-16,14],[-24,15],[-26,67],[-65,34],[-2,1],[-6,7],[-9,18],[-4,9],[-3,12],[-2,6],[-6,25],[-9,43],[-4,40],[-20,22],[-18,-26],[-15,-18],[-23,-18],[-17,-7],[-7,8],[-13,13],[-13,-25],[-3,-17],[-4,-38],[-13,-33],[-40,-83],[-8,-48],[-4,-36],[-3,-36],[-10,-95],[-2,-44],[-6,-86],[0,-1],[-6,-73],[-3,-51],[-12,-164],[-5,-40],[-2,-40],[-6,-73],[-9,-98],[-5,-85],[-4,-57],[6,-33],[11,-25],[-1,-27],[-1,-24],[0,-8],[-2,-7],[-2,-11],[-1,-4],[-7,-29],[-9,-25],[-9,-29],[-9,-66],[-2,-24],[0,-4],[-2,-15],[-1,-3],[-13,-41],[-1,-4],[-7,-47],[0,-7],[-4,-48],[10,-40],[5,-51],[2,-36],[-4,-51],[3,-44],[4,-47],[-5,-58],[4,-51],[15,-77],[0,-80],[9,-36],[34,-15],[15,-25],[16,29],[17,22],[30,-62],[6,-66],[13,-54],[-9,-172],[19,-51],[12,-3],[15,-26],[7,-54],[14,-22],[21,7],[11,-65],[-25,-44],[-9,-62],[-27,-91],[5,-47],[26,-44],[9,-33],[11,-36],[4,-44],[21,-44],[15,-47],[3,-87],[-9,-33],[0,-77],[2,-61],[9,-117],[14,-66],[13,-40],[-2,-36],[2,-69],[-1,-62],[-9,-40],[7,-73],[5,-36],[-8,-29],[26,-110],[15,-58],[0,-76],[-12,-81],[-26,-101],[-18,-73],[1,-55],[8,-40],[-7,-33],[-11,-65],[-33,-110],[3,-50],[-7,-95],[3,-47],[9,-44]],[[11084,54227],[-26,-22],[-36,-29],[-15,-37],[-14,-7],[-42,-7],[-27,36],[-38,11],[-78,-127],[-38,11],[-13,25],[-44,77],[-22,-59],[-12,-14],[-40,-55],[-18,7],[-18,26],[-42,11],[-13,-22],[-17,0],[-14,-11],[-13,-11],[-72,77],[-24,7],[-15,-62],[-37,-36],[-23,-128],[-28,-94],[-16,-77],[-11,-4],[-33,48],[-19,43],[-20,-14],[-37,-51],[-48,131],[-35,73],[-7,51],[-20,-18],[-25,40],[-20,-48],[-29,-65],[-33,-160],[-27,-41],[-59,11],[-20,-65],[-35,-84],[2,-54],[-9,-41],[-7,-105],[-11,-22],[-4,-55],[-7,-83],[-21,-44],[-38,0],[-27,-98],[-21,-15],[-22,-36],[-21,11],[-27,-19],[-16,11],[-19,4],[-34,116],[-52,84],[-24,4],[-25,73],[-50,-8],[-16,-58],[0,-1],[-24,-90],[-4,-44],[-32,-14],[-9,-2],[-6,-2],[-41,-11],[-95,-32],[-8,-4],[-5,-2],[-3,-2],[-19,-3],[-14,-4],[-192,-66],[-311,-109],[-188,-65],[-23,-4],[-32,-11],[-70,-18],[-421,-120],[-38,-11],[-33,-11],[-75,-22],[-59,-18],[-47,-15],[-159,-51],[-70,-18],[-1,0],[-55,-18],[-9,-26],[-13,-32],[-24,-30],[-22,-32],[-1,0],[-15,11]],[[7244,52352],[-18,29],[-1,12],[-5,93],[-3,73],[-20,58],[-24,124],[-42,66],[-8,91],[-52,113],[1,120],[6,131],[6,98],[21,8],[10,101],[-6,88],[19,84],[4,116],[23,29],[19,109],[16,77],[46,62],[25,102],[92,7],[30,95],[48,69],[40,87],[62,33],[61,47],[64,62],[40,-32],[50,69],[117,156],[47,15],[17,80],[25,69],[12,77],[10,123],[16,91],[26,44],[13,62],[31,124],[7,36],[19,40],[21,77],[14,14],[11,84],[26,29],[14,4],[18,69],[12,33],[8,40],[10,51],[1,40],[-10,58],[-11,58],[11,15],[11,51],[1,51],[12,65],[9,48],[4,58],[1,51],[4,58],[4,48],[5,40],[2,18],[8,58],[5,36],[6,55],[12,33],[7,47],[-2,48],[6,43],[5,77],[11,43],[14,22],[6,59],[-1,47],[-10,29],[-10,33],[-10,43],[6,66],[1,44],[-11,32],[-8,33],[-12,15],[-18,18],[9,36],[5,33],[-8,33],[12,40],[2,47],[18,22],[1,55],[0,54],[0,48],[-2,47],[1,62],[0,36],[0,5],[0,57],[-29,78],[-28,-55],[-3,-48],[-2,-24],[-21,-42],[-5,0],[-33,-1],[-30,10],[-10,-7],[-34,-42],[-21,-42],[-7,-23],[-1,-14],[-2,-4],[-8,-16],[-17,-35],[-16,-14],[-17,2],[-8,1],[-3,12],[-33,107],[-6,19],[-1,31],[-1,48],[-20,81],[-3,3],[-13,17],[-47,16],[-2,2],[-9,12],[-23,57],[-30,93],[-31,17],[-52,26],[-17,9],[-30,37],[-2,1],[-20,6],[-4,2],[-3,-5],[-11,-23],[-3,-6],[0,-3],[-8,-38],[-4,-35],[-2,-17],[-4,-68],[1,-99],[2,-13],[2,-23],[-2,-48],[-4,-73],[-12,-94],[-38,-70],[-2,-5],[-2,1],[-32,11],[-18,60],[-4,33],[-1,8],[-14,39],[-3,6],[-52,25],[-22,10],[-45,94],[-4,5],[-6,8],[-80,27],[-5,8],[-2,5],[-17,15],[-36,37],[-12,28],[-12,5],[-105,40],[-5,16],[-11,9],[-57,19],[-16,30],[-67,33],[-50,-23],[-77,16],[-96,52],[-20,22],[-9,30],[-15,52],[-14,29],[-37,13],[-45,-29],[-65,-72],[-34,-47],[-18,-24],[-19,-14],[-1,0],[-4,-3],[-19,2],[-32,8],[-45,13],[-25,-16],[-1,0],[-32,5],[-80,13],[-44,14],[-5,2],[-5,2],[-2,5],[-16,50],[-38,72],[-28,33],[-6,8],[-17,15],[-61,73],[-19,23],[-13,9],[-24,43],[-19,46],[-22,56],[-7,2],[-23,8],[-5,2],[-11,-22],[-1,-2],[-14,-27],[-2,-59],[0,-1],[0,-14],[1,-4],[1,-8],[4,-28],[1,-59],[-26,-174],[-15,-34],[-17,-4],[-29,34],[-8,18],[-2,1],[-29,24],[-5,17],[-5,17],[-2,4],[-5,10],[-29,46],[-12,9],[-16,8],[-96,15],[-12,0],[-3,-2],[-21,-51],[-1,-4],[-2,-3],[-2,-3],[-1,-3],[-2,-2],[-2,-2],[-18,-16],[-2,-2],[-1,0],[-1,-2],[-2,-1],[-2,0],[-2,0],[-2,0],[-8,1],[-2,1],[-2,1],[-2,1],[-1,1],[-7,7],[-2,1],[-2,3],[-1,2],[-2,3],[-6,12],[-2,3],[-2,4],[-1,4],[-2,5],[-1,3],[-8,27],[0,2],[-1,5],[-1,5],[-1,6],[-1,4],[-6,35],[0,2],[-1,6],[-1,6],[0,6],[0,5],[-4,3],[-10,7],[-2,0],[-97,-55],[-10,-7],[-1,-2],[-3,-8],[-1,-3],[-2,-4],[-1,-3],[-2,-3],[-2,-3],[-2,-2],[-23,-25],[-2,-1],[-1,-1],[-59,-47],[-2,0],[-2,-1],[0,-1],[-16,-5],[-1,-1],[-2,0],[-2,0],[-2,1],[-2,1],[-2,1],[-2,2],[-9,9],[-2,3],[-2,2],[-2,4],[-1,1],[-1,3],[-2,3],[-2,4],[-1,4],[-2,4],[-1,5],[-1,5],[-1,5],[-1,6],[-1,4],[-4,22],[0,2],[-1,6],[-1,6],[0,6],[0,3],[-2,27],[-1,3],[0,6],[0,7],[0,5],[-1,100],[-22,85],[-4,14],[-40,87],[-35,53],[-33,45],[-25,8],[-48,3],[-70,-63],[-2,-2],[-2,-1],[-2,0],[-2,0],[-10,0],[-2,0],[-2,0],[-2,1],[-2,2],[-1,1],[-3,3],[-1,1],[-1,1],[-83,103],[0,1],[-1,1],[-39,57],[-13,11],[-20,0],[-42,-6],[-21,-69],[-18,-59],[-27,-86],[0,-5],[-1,-6],[0,-6],[0,-1],[-2,-16],[0,-6],[-1,-6],[-1,-6],[-1,-6],[0,-2],[-18,-96],[-1,-3],[-1,-5],[-1,-5],[-2,-5],[-30,-100],[-1,0],[-1,-5],[-2,-4],[-39,-97],[-2,-3],[-1,-4],[-2,-3],[-2,-2],[-2,-3],[-2,-1],[0,-1],[-63,-51],[-1,-1],[-2,-1],[-2,-1],[-62,101],[-2,-10],[-7,-26],[-31,81],[-5,16],[-24,82],[-2,6],[0,6],[-3,49],[-5,18],[-17,57],[-1,1],[-12,25],[-14,28],[-9,68]],[[4164,58945],[0,1],[18,0],[24,31],[10,19],[4,6],[5,17],[13,40],[15,21],[13,0],[10,17],[7,53],[6,47],[23,51],[21,50],[10,43],[11,11],[24,23],[13,10],[12,8],[14,9],[26,-5],[28,23],[13,23],[12,2],[5,0],[13,3],[11,-14],[1,-1],[14,-24],[1,0],[14,21],[4,-3],[19,-1],[21,40],[9,23],[20,17],[7,36],[11,61],[10,37],[3,25],[1,8],[0,41],[-1,37],[2,21],[7,34],[4,16],[5,25],[3,17],[4,22],[6,42],[4,33],[21,44],[2,2],[11,21],[11,18],[12,50],[4,24],[2,7],[0,2],[-1,47],[-1,2],[-11,62],[4,23],[18,46],[7,27],[11,26],[10,13],[16,71],[24,12],[6,5],[10,26],[22,88],[23,89],[31,128],[12,49],[11,109],[9,51],[28,58],[20,11],[37,26],[26,51],[13,-3],[4,-1],[9,-8],[20,-16],[24,19],[12,9],[21,3],[17,0],[17,5],[13,15],[1,2],[11,-2],[13,-1],[17,-12],[20,-14],[34,-37],[26,-28],[56,81],[38,2],[49,67],[17,25],[28,25],[39,-3],[11,-1],[22,-29],[11,27],[16,38],[150,316],[7,38],[6,38],[65,177],[34,-2],[12,-6],[32,115],[20,41],[36,21],[14,12],[11,11],[23,24],[6,34],[26,63],[24,22],[14,1],[85,253],[13,148],[82,1],[19,48],[4,-3],[16,-15],[17,7],[31,40],[80,-91],[14,-4],[6,-43],[1,0],[13,13],[21,75],[33,12],[11,16],[10,27],[32,45],[16,13],[3,2],[15,-29],[18,-53],[17,20],[16,15],[34,-53],[12,-5],[12,0],[12,-21],[40,60],[12,16],[21,-8],[30,15],[15,56],[5,18],[35,17],[24,56],[23,7],[18,0],[15,-23],[21,-9],[32,27],[9,54],[4,15],[16,4],[25,-66],[20,4],[12,4],[16,-33],[13,18],[23,14],[17,1],[36,21],[1,5],[15,25],[28,-3],[15,-4],[10,-19],[18,-17],[12,4],[19,8],[20,-3],[15,5],[12,0],[13,4],[24,-11],[0,-1],[28,-23],[5,7],[24,18],[13,25],[10,0],[23,-12],[8,-44],[15,-14],[12,-4],[15,-15],[18,-29],[1,1],[13,7],[13,-37],[21,6],[9,0],[22,-7],[13,29],[28,17],[10,26],[19,90],[26,-41],[27,-43],[22,24],[22,34],[13,18],[35,78],[12,5],[26,17],[35,45],[34,83],[34,95],[5,19],[45,-3],[34,-40],[33,-113],[28,-15],[25,-65],[28,-95],[24,-66],[20,-58],[3,-41],[5,-64],[18,-40],[15,-5],[24,-6],[23,25],[14,8],[28,18],[23,29],[21,25],[32,-39],[3,0],[22,6],[14,49],[26,-23],[52,-18],[29,5],[15,3],[24,-18],[12,-9],[53,11],[9,5],[46,25],[19,10],[67,-35],[22,0],[52,17],[51,0],[39,15],[32,-102],[58,7],[76,2],[75,-2],[9,-2],[11,38],[17,48],[12,26],[15,25],[16,7],[12,0],[13,5],[5,8],[12,9],[33,33],[1,8],[2,3],[11,72],[14,44],[0,5],[7,59],[6,40],[7,41],[3,23],[11,45],[13,71],[-4,132],[20,25],[12,14],[26,40],[13,35],[2,11],[-1,85],[14,42],[8,7],[33,24],[58,55],[3,23],[15,80],[2,4],[24,13],[10,19],[24,57],[6,55],[2,87],[18,18],[11,18],[13,36],[1,11],[4,52],[1,29],[26,53],[12,22],[3,7],[5,19],[1,9],[8,87],[62,-18],[29,-11],[33,-15],[28,-25],[36,13],[8,15],[11,1],[8,0],[5,8],[6,10],[5,-3],[15,-8],[20,5],[10,8],[10,60],[25,35],[46,48],[12,26],[2,1],[11,10],[18,49],[24,36],[9,26],[16,31],[18,27],[10,15],[38,17],[41,35],[45,86],[18,91],[11,78],[8,53],[7,59],[9,34],[87,37],[25,-7],[14,77],[16,28],[4,10],[14,44],[13,1],[10,0],[1,0],[14,-26],[25,0],[16,31],[16,71],[6,32],[26,53],[21,72],[20,47],[7,45],[0,23],[11,29],[1,3],[11,23],[6,54],[1,113],[4,20],[17,83],[24,88],[26,36],[21,-11],[25,33],[15,15],[26,83],[12,11],[22,-50],[40,87],[29,-13],[24,-17],[34,-32],[16,-11],[18,-5],[1,0],[12,-3],[13,-7],[10,-8],[0,-3],[9,-36],[18,-58],[9,-40],[26,-66],[10,-18],[16,-34],[1,-6],[31,-44],[14,40],[18,17],[8,-6],[16,-11],[24,12],[17,14],[13,19],[23,8],[15,24],[10,43],[22,73],[10,40],[-2,55],[8,88],[15,18],[8,29],[1,87],[4,113],[14,56],[22,28],[44,-4],[11,55],[1,2],[14,50],[31,19],[17,21],[17,20],[46,73],[10,88],[4,40],[6,44],[1,2],[9,24],[47,81],[18,-22],[32,41],[11,19],[5,40],[8,48],[17,72],[9,26],[14,14],[2,7],[2,4]],[[77250,57715],[-11,-20],[-26,-30],[-2,-2],[-39,-119],[1,-20],[1,-6],[2,-29],[5,-47],[0,-80],[6,-40],[-8,-51],[-14,-22],[-14,-11],[-44,-15],[-24,-18],[-11,-18],[-18,-15],[-29,19],[-20,32],[-10,22],[-6,55],[7,55],[-10,25],[-17,36],[-25,19],[-20,14],[-23,-14],[-6,40],[13,58],[-11,4],[-15,-5],[-8,-3],[-16,-7],[-12,-29],[-22,-35],[-7,-12],[-15,-23],[-10,-13],[-6,-4],[-4,-3],[-7,-4],[-2,-5],[-3,-4],[-19,-96],[-3,-8],[-13,-8],[-1,0],[-1,0],[-27,-2],[-36,-2],[-9,-29],[8,-36],[-11,-40],[-4,-69],[-14,-44],[-11,-22],[-10,-36],[-3,-51],[-7,-29],[6,-40],[-77,-157],[-23,-40],[-36,-69],[-53,-99],[-14,-25],[-65,-124],[-58,-105],[-30,-55],[-22,-62],[-17,-15],[-30,-25],[-23,-7],[-13,-26],[-18,-18],[-13,-36],[-24,-4],[-15,7],[-14,-25],[-6,-37],[-17,-11],[-8,44],[-18,4],[-15,-37],[-6,-54],[-12,-29],[-4,-51],[-11,-40],[-16,-8],[-15,8],[-26,29],[-14,43],[-16,8],[-39,-15],[-10,-18],[-12,-7],[-11,18],[-15,47],[-9,40],[-17,66],[-15,-4],[-17,-7],[-14,-17],[-2,-1],[-42,-62],[-5,-51],[-7,-40],[-14,-44],[-11,-40],[-11,-15],[-16,-29],[-14,-43],[-25,-44],[-12,-26],[-20,-29],[-13,-36],[-21,-102],[-12,-40],[-13,-26],[-11,-25],[-3,-40],[-14,-62],[-6,-55],[-13,-22],[-5,-32],[-15,-29],[-21,-4],[-20,7],[-11,-3],[-20,7],[-17,11],[-23,18],[-19,-36],[-18,-41],[-23,-21],[-13,3],[-11,18],[-35,22],[-13,-14],[-11,-18],[-5,-7],[-13,-19],[-16,7],[-15,-3],[-13,-44],[-7,-36],[-16,-30],[-11,-7],[-29,-36],[-18,-4],[-12,-7],[-20,0],[-24,0],[-17,-4],[-19,29],[-10,51],[-16,99],[-14,65],[-9,37],[-6,54],[-10,51],[-13,44],[-15,18],[-15,40],[11,69],[-2,44],[-17,29],[-14,7],[-11,37],[-10,47],[-2,58],[-13,33],[-9,29],[-2,80],[6,51],[-1,70],[-13,47],[-12,44],[-12,7],[-11,14],[-7,44],[-18,-3],[-133,-66],[-118,-58],[-53,-26],[-83,-43],[-13,-11],[-65,-30],[-61,-29],[-133,-87],[-181,-117],[-1,1],[-243,47],[-73,33]],[[73530,55640],[14,51],[10,32],[7,33],[0,40],[2,73],[6,55],[12,43],[5,37],[6,105],[-8,69],[-5,84],[-2,55],[-7,29],[-8,47],[-1,37],[-3,51],[-5,36],[-3,44],[-3,178],[0,44],[-3,47],[-1,48],[-3,65],[-4,36],[-9,41],[-15,36],[-11,36],[-11,29],[-17,22],[-11,51],[-14,40],[-18,29],[-16,8],[-18,25],[-19,69],[-8,48],[-12,51],[-7,40],[-16,40],[-15,33],[-3,47],[-6,47],[-11,48],[-4,36],[1,62],[-7,55],[1,76],[0,69],[-4,40],[4,51],[0,119],[0,1],[0,164],[0,37],[1,353],[0,426],[2,87],[1,73],[3,87],[1,81],[0,3],[3,80],[9,313],[2,106],[2,58],[7,241],[0,47],[0,306],[1,367],[1,379],[0,200],[1,339],[1,146],[1,531],[2,284],[0,91]],[[60394,61163],[-8,-33],[-63,-189],[-61,-182],[-42,-146],[-16,-54],[-20,-73],[-28,-102],[-76,-255],[-24,-66],[-53,-171],[-65,-211],[-12,-36],[-45,-146],[-34,-109],[-41,-131],[-24,-80],[-46,-150],[-21,-65],[-15,-51],[-49,-157],[-21,-69],[-69,-218],[-19,-62],[-16,-51],[-40,-128],[-26,-86],[-1,-1],[-20,-69],[-37,-117],[-12,-40],[-9,-25],[-52,-168],[-42,-138],[-17,-58],[-77,-246],[-3,-9],[-102,-328],[-10,-33],[-28,-91],[-41,-131],[-15,-47],[-29,-95],[-15,-47],[-54,-171],[-46,-153],[-9,-29],[-15,-48],[-1,-2],[-9,-30],[-11,-33],[-22,-69],[-22,-73],[-19,-58],[-24,-92],[-72,-254],[-8,-30],[-10,-40],[-58,-207],[-19,-73],[-18,-62],[-37,-113],[-50,-160],[-17,-51],[-49,-153],[-21,-65],[-65,-200],[-4,-12],[-46,-144],[-88,-278],[-46,-146],[-127,-396]],[[57983,53357],[-21,43],[-13,18],[-27,26],[-13,18],[-34,51],[-12,18],[-51,73],[-28,37],[-21,32],[-11,19],[-12,18],[-26,36],[-15,26],[-76,116],[-14,18],[-24,37],[-21,29],[-15,11],[-27,51],[-19,36],[-20,37],[-26,47],[-27,55],[-13,21],[-46,84],[-2,3],[-49,95],[-20,41],[-2,3],[-63,120],[-52,95],[-12,11],[-50,33],[-17,0],[-30,22],[-18,14],[-35,102],[-21,77],[-12,32],[-11,15],[-10,54],[2,59],[3,51],[4,51],[3,51],[3,51],[4,62],[-8,43],[-19,55],[-9,36],[-7,62],[-4,37],[-4,54],[-2,58],[-1,37],[-2,36],[-1,40],[-2,40],[-3,51],[-15,66],[-19,91],[-2,7],[-11,44],[-30,138],[-7,51],[-5,48],[-5,43],[-17,135],[-12,102],[-6,44],[-4,40],[-16,40],[-22,-15],[-11,-18],[-14,18],[-18,47],[-11,11],[-17,19],[-20,43],[-14,22],[-10,18],[-12,19],[-11,87],[-20,29],[-27,18],[-18,37],[-9,25],[4,55],[-8,58],[-13,36],[-10,44],[-19,48],[-7,47],[-4,36],[-11,37],[-12,11],[-8,29],[-12,-8],[-16,0],[-16,8],[-21,-8],[-15,15],[-3,44],[-6,32],[-17,-7],[-17,40],[2,48],[2,58],[5,54],[0,51],[-2,37],[18,40],[12,44],[2,54],[-13,37],[-17,43],[6,40],[-7,62],[-34,37],[-7,36],[-4,36],[-11,55],[-14,11],[-21,51],[-12,11],[-13,40],[-8,44],[-16,29],[8,54],[-9,51],[-16,26],[-8,44],[-19,36],[-3,66],[-26,0],[-18,21],[-4,51],[-13,19],[19,54],[6,51],[8,37],[-13,0],[-13,21],[-18,8],[-2,43],[-29,-21],[5,58],[-4,69],[-10,44],[-15,-44],[-26,65],[13,55],[12,11],[8,36],[-4,62],[-32,99],[25,14],[19,-14],[23,-12],[13,2],[8,9],[7,20],[0,7],[1,4],[1,35],[4,20],[22,102],[0,1],[2,11],[29,173],[5,24],[6,15],[2,3],[16,27],[36,71],[2,4],[4,5],[8,20],[5,21],[0,2],[5,27],[18,105],[6,33],[1,13],[-2,30],[-8,47],[-10,55],[-16,83],[-22,88],[-12,35],[-9,25],[-8,20],[-5,4],[-8,15],[-10,26],[-3,10],[-2,6],[-6,20],[-3,14],[-1,4],[-8,21],[-5,13],[-27,35],[-4,16],[-4,18],[11,25],[1,3],[2,4],[1,4],[2,5],[1,5],[-5,90]],[[29672,63275],[-2,-397],[-4,-288],[-4,-276],[-4,-208],[-6,-506],[-3,-240],[-3,-306],[-1,-131],[-3,-328],[-1,-98],[-3,-139],[0,-1],[-2,-79],[-4,-313],[-1,-91],[-1,-5],[-1,-71],[-2,-153],[-4,-251],[-2,-51],[-4,-180],[0,-3],[-1,-145],[-6,-306],[-5,-433],[-2,-84],[0,-47],[-1,-70],[-3,-214],[-1,-60],[-2,-130],[-9,-611],[-4,-212],[0,-54],[-1,-62],[-1,-138],[-6,-328],[0,-58],[-4,-321],[-4,-73],[-5,-244],[-7,-298],[-1,-91],[-48,-372],[0,-5],[-21,-151],[-8,-58],[-8,-62],[-24,-190],[-20,-156],[-52,-404],[-9,-70],[-18,-142],[-35,-269],[-1,-11],[-8,-58],[0,-4],[-4,-34],[-17,-137],[-15,-114],[-1,-6],[-9,-66],[-24,-182],[-22,-178],[-18,-142],[-31,-233],[-31,-251],[-6,-40],[-25,-193],[-9,-73],[-21,-164],[-18,-135],[-24,-153],[-4,-51],[-26,-189],[-6,-55],[-51,-366],[0,-1],[-11,-84],[-16,-117],[-2,-43],[-3,-44],[-4,-73],[-4,-55],[-3,-40],[-3,-65],[-4,-55],[-10,-160],[-3,-55],[-4,-51],[-6,-101],[-6,-95],[-14,-204],[-9,-153],[-20,-326]],[[28818,48745],[-327,36],[-531,58],[-63,7],[-280,30],[-1070,116]],[[26547,48992],[2,90],[-4,138],[-7,128],[-4,91],[-4,127],[0,91],[6,84],[7,55],[-13,65],[14,160],[17,139],[13,58],[20,76],[-1,55],[-1,66],[-4,116],[-1,51],[-1,117],[-6,320],[14,69],[23,55],[19,73],[-12,21],[0,1],[-15,21],[-3,0],[-18,0],[-10,0],[-4,2],[-7,2],[-1,4],[-9,38],[0,2],[-1,12],[-3,39],[-2,72],[0,8],[1,18],[1,18],[-1,73],[0,1],[-7,21],[-3,7],[-19,16],[-2,2],[-1,2],[-20,35],[-20,54],[-11,33],[-21,65],[0,1],[-63,18],[-18,29],[-17,22],[-18,25],[-13,22],[-16,37],[-14,18],[-11,25],[-17,15],[-9,40],[-9,44],[-6,36],[-11,25],[-9,62],[-7,44],[-3,87],[-1,62],[-4,48],[-17,36],[-13,7],[-24,15],[-18,29],[-13,40],[-12,51],[-11,44],[-6,43],[-11,26],[-19,29],[-14,26],[-3,10],[-6,19],[-9,62],[-3,51],[-8,47],[2,76],[-39,0],[-18,-29],[-15,4],[-18,40],[-12,15],[-39,58],[-1,40],[0,44],[-2,47],[-9,65],[-6,55],[-10,36],[-26,40],[-15,66],[-28,58],[-13,33],[-9,44],[-7,51],[-7,32],[-11,41],[-16,40],[-20,7],[-17,33],[-7,51],[-7,69],[8,69],[-7,44],[-17,14],[-19,18],[-8,30],[-9,54],[0,1],[-1,68],[-7,44],[-6,29],[-15,37],[-20,36],[-22,11],[-17,-22],[-14,-55],[-30,-18],[-11,8],[-8,80],[-17,51],[-10,32],[-24,-25],[-18,7],[-22,55],[-12,14],[-20,33],[-17,44],[-8,47],[-11,98],[-2,102],[0,121],[-14,14],[-31,-7],[-13,14],[-11,30],[-20,29],[-4,65],[-1,51],[-12,44],[-14,36],[-9,40],[-16,73],[-15,73],[-8,44],[-17,72],[-7,30],[-24,43],[-18,26],[-10,-40],[-9,-66],[-15,-14],[-11,3],[-15,48],[-9,32],[3,51],[-3,44],[3,55],[1,36],[-15,73],[5,65],[-2,48],[-10,47],[-12,44],[-13,14],[-13,15],[-15,29],[-9,40],[-8,29],[-10,22],[-26,7],[-13,4],[-10,18],[-7,33],[-4,36],[-5,44],[-7,40],[-14,37],[-12,10],[-18,33],[-11,26],[-20,43],[-22,-14],[-17,-11],[-21,25],[-24,48],[-18,33],[-22,21],[-19,4],[-14,29],[-8,29],[-12,18],[-17,44],[-20,51],[-18,44],[-25,69],[-14,22],[-17,11],[-20,-4],[-14,4],[-14,22],[-18,22],[-22,-11],[-24,-15],[-23,-22],[-15,-3],[-15,10],[-15,26],[-16,18],[-9,-54],[-6,-51],[-13,-44],[-19,-11],[-12,-29],[-12,-29],[-12,0],[-13,0],[-15,-22],[-8,-51],[-15,-40],[-9,-66],[-10,-62],[-20,26],[-13,33],[-12,29],[-19,7],[-17,-69],[-12,-7],[-22,21],[5,59],[8,51],[-17,3],[-8,22],[-6,15],[-16,22],[-19,18],[-28,18],[-15,7],[-22,0],[-1,-76],[-8,-33],[-12,-44],[-9,-36],[-12,-29],[-12,0],[-18,7],[-13,4],[-16,7],[-13,-26],[-16,-25],[-18,-33],[-22,-40],[-21,18],[-22,0],[-12,8],[-18,0],[-13,11],[-31,72],[-16,44],[-11,15],[-14,32],[-11,8],[-17,25],[-20,48],[-15,-11],[-25,-26],[-15,-18],[-13,-7],[-23,-8],[-12,-3],[-13,-15],[-10,-29],[-13,-29],[-16,-22],[-24,-15],[-25,-43],[-13,-44],[-14,-65],[-24,-19]],[[23252,56473],[-8,62],[-15,40],[-24,73],[-13,29],[-24,40],[-11,15],[1,87],[4,37],[6,62],[1,54],[-13,11],[-16,37],[-16,65],[-4,58],[1,66],[-4,69],[5,84],[-2,62],[-14,83],[-6,44],[-10,26],[2,51],[4,65],[9,73],[8,55],[0,47],[-7,36],[-10,91],[-7,62],[-15,40],[-14,15],[-8,51],[-5,69],[-12,44],[2,51],[8,83],[5,19],[7,25],[14,29],[7,25],[16,59],[74,437],[20,124],[12,73]],[[73530,55640],[-7,-37],[-22,-44],[-10,-51],[-11,-32],[-14,-44],[-11,-25],[-18,-37],[-10,-25],[-8,-37],[-8,-36],[-12,-40],[-9,-44],[-11,-47],[-3,-44],[0,-98],[-26,-153],[0,-1],[-31,-148],[-6,-394],[-2,-87],[-1,-13],[-7,-388],[-1,-47],[-1,-66],[-2,-87],[-1,-55],[-2,-58],[-2,-156],[-1,-11],[-6,-292],[-3,-174],[-8,-306],[-3,-95],[-1,-62],[-10,-539],[-3,-240],[-4,-229],[-1,-117],[0,-40],[-4,-251],[-1,-44],[-4,-222],[-1,-56],[0,-2],[-1,-51],[0,-12],[-1,-39],[0,-9],[-1,-42],[-4,-200],[-5,-317],[-8,-419],[-12,-630],[-1,-54],[-1,-117],[-2,-127]],[[73208,48649],[-51,-48],[-25,-22],[-61,-72],[-290,-237],[-36,-26],[-99,-133],[-3,-5],[-13,-51],[-48,-84],[-4,-47],[-6,-33],[-13,-18],[-12,0],[-4,-51],[-11,-25],[-8,-113],[8,-84],[8,-51],[-10,-18],[-9,27],[-32,27],[-1,1],[-3,5],[-3,5],[-12,35],[-8,25],[-3,9],[-13,36],[-14,50],[-13,44],[-5,13],[-35,57],[-15,20],[-10,33],[-1,12],[0,23],[0,17],[2,55],[1,40],[-7,37],[-12,39],[-25,81],[-3,6],[-6,15],[-1,1],[-49,96],[-4,7],[-10,8],[-4,2],[-25,27],[-12,16],[-4,8],[-7,10],[-6,19],[-3,16],[-5,12],[-1,2],[-6,6],[-17,6],[-12,1],[-8,8],[-5,1],[-8,-8],[-1,-2],[-12,-18],[-6,-8],[-30,-40],[-8,-8],[-12,-3],[-12,10],[-10,17],[-25,11],[-8,4],[-14,6],[-4,1],[-11,2],[-5,-3],[-9,-16],[-13,-20],[-2,-4],[-55,-142],[-5,-22],[-1,-13],[-4,-22],[-5,-7],[-7,-5],[-75,0],[-102,13],[-7,2],[-11,13],[-36,64],[-3,7],[-36,64],[-3,9],[-5,13],[-1,3],[-7,47],[-11,72],[-4,33],[4,12],[20,48],[-22,77],[-15,49],[-6,21],[-22,108],[-21,9],[-18,9],[-39,-16],[-40,-13],[-8,8],[-6,17],[-5,14],[-1,8],[-1,9],[-4,26],[-7,27],[0,1],[-14,50],[-7,19],[-1,1],[-2,3],[-4,4],[0,1],[-7,5],[-28,39],[-24,31],[-13,17],[-10,0],[-8,0],[-20,0],[-8,-2],[-4,-1],[-6,-11],[0,-1],[-44,10],[-4,2],[-20,10],[-7,13],[-5,13],[-1,16],[-12,38],[-9,18],[-4,3],[-4,0],[-51,-6],[-16,-8],[-5,-6],[-2,-2],[-41,-32],[-18,-14],[-5,-2],[-4,-1],[-16,1],[-25,1],[-62,30],[-8,0],[-1,-1],[-6,-4],[-3,0],[-6,-13],[-82,-132],[-82,-102],[-20,-44],[-9,-22],[-51,-131],[-21,-36],[-36,-69],[-55,-117],[-98,55],[-3,1],[-9,2],[-131,59],[-4,4],[-35,32],[-78,40],[-56,48],[-93,29],[-65,43],[-31,19],[-44,29],[-47,18],[-62,44],[-85,43],[-75,48],[-66,32]],[[69492,49067],[8,204],[2,66],[10,277],[-134,109],[-36,29],[-164,138],[-320,266],[-180,149],[-9,-4],[-5,-1],[-4,-2],[-4,6],[-35,45],[-31,39],[-6,8],[-9,9],[-3,2],[-17,0],[-1,4],[-9,25],[-26,139],[-72,218],[-9,29],[-9,26],[-7,22],[-19,62],[-11,32],[-29,91],[-24,70],[-19,58],[-15,98],[-27,88],[-15,47],[-22,73],[-25,80],[-35,113],[-64,207],[-55,175],[-3,10],[-27,90],[0,2],[-132,426]],[[65228,53652],[-39,-94],[-5,-13],[-23,-35],[-11,-16],[-10,-12],[-16,-7],[-10,-2],[-18,-3],[-9,-8],[-1,0],[-10,-9],[-7,-7],[-4,-15],[-3,-13],[-14,-50],[-3,-13],[-5,-66],[-7,-4],[-28,-17],[-7,0],[-2,0],[-33,-19],[-5,-6],[-18,-22],[-4,-5],[-11,-15],[-24,-35],[-2,-5],[-1,-4],[-2,-6],[-12,-71],[0,-5],[-3,-43],[-3,-14],[-17,-111],[-53,40],[-25,24],[-10,12],[-4,3],[-11,-4],[-4,-2],[-19,-118],[0,-1],[-1,-2],[14,-210],[-10,-71],[-7,-34],[1,-25],[10,-113],[9,-44],[3,-13],[0,-16],[0,-9],[0,-1],[-5,-109],[0,-2],[0,-1],[0,-1],[-10,-63],[0,-25],[-2,-5],[-6,-23],[-6,-14],[-1,-3],[-2,-3],[-84,-174],[-20,-37],[-9,-18],[-13,-11],[-14,-23],[-1,-3],[-5,-14],[-3,-14],[-1,-17],[1,-26],[3,-68],[0,-1],[0,-1],[-48,-108],[0,-3],[0,-1],[-10,-34],[-21,-42],[-3,-3],[-14,-20],[-5,-6],[-1,-4],[-13,-32],[-13,-51],[0,-3],[-4,-40],[-30,-101],[-5,-11],[-1,-3],[-27,-56],[-5,-19],[-4,-9]],[[64372,51121],[-47,22],[-36,14],[-15,4],[-42,18],[-8,4],[-99,40],[-2,1],[-47,17],[-1,0],[-93,40],[-40,18],[-7,4],[-16,7],[-25,11],[-138,55],[-92,40],[-49,18],[-204,87],[-13,4],[-35,66],[-6,10],[-5,10],[-6,-3],[-16,-17],[-2,-2],[-18,-31],[-4,-4],[-3,2],[-3,4],[-2,22],[-4,29],[-2,10],[-11,13],[-14,17],[-29,-14],[-6,0],[-6,7],[-5,15],[-3,12],[-1,15],[0,67],[0,4],[-2,28],[-4,24],[-6,18],[-4,11],[-8,7],[-9,-2],[-8,-2],[-6,7],[-21,44],[-7,-1],[-1,-1],[-3,-5],[-2,-2],[-25,-64],[-1,-3],[-8,-46],[-2,-5],[-3,-4],[-63,-52],[-9,-1],[-9,13],[-22,37],[-9,15],[0,1],[-3,2],[-1,1],[-4,4],[-6,1],[-45,-7],[-3,-2],[-2,-2],[-1,0],[-1,-2],[-9,-13],[-7,-9],[-9,-3],[-4,2],[-15,18],[-4,4],[1,-29],[0,-6],[0,-16],[-2,-17],[-6,-13],[-33,-58],[-6,-1],[-2,5],[0,16],[2,33],[1,1],[1,5],[1,20],[1,30],[-3,14],[-4,13],[-1,2],[-3,7],[-1,0],[-6,6],[-53,5],[-29,-30],[-1,-5],[-13,-74],[-2,-16],[-1,-23],[1,-4],[1,-33],[0,-5],[0,-1],[-1,-7],[-3,-6],[-5,-5],[-12,-3],[-7,4],[-31,34],[-5,12],[-2,14],[-2,29],[-1,4],[-3,33],[-2,3],[0,1],[-1,2],[-5,6],[-60,39],[-8,5],[-13,6],[0,-1],[-14,-14],[-1,-2],[-6,-14],[-3,-17],[0,-5],[-1,0],[-31,13],[-3,1],[-53,70],[-45,47],[-2,3],[-14,12],[-3,1],[-5,1],[-8,-6],[-3,-3],[-12,-14],[-9,-14],[-3,-4],[-3,-10],[-2,-13],[0,-40],[-3,-25],[-3,-10],[-4,-5],[-1,-1],[-1,0],[-1,0],[-6,5],[-14,17],[-7,9],[-3,-16],[-12,-70],[-1,-7],[-1,-12],[0,-2],[-1,-6],[-4,-27],[-7,-32],[-8,-36],[-13,-17],[-7,-2],[-50,29],[-8,6],[-1,1],[-8,11],[-9,17],[-8,33],[-3,7],[-3,7],[-5,7],[-2,5],[-14,10],[-15,6],[-19,1],[-21,-11],[-37,-17],[-1,-1],[-10,-9],[-2,-2],[-3,-4],[-4,-11],[-4,-20],[-9,-77],[-1,-6],[-8,-35],[-5,-7],[-66,-93],[-8,-1],[-10,10],[-17,27],[-8,13],[-10,1],[-79,-28],[-11,-5],[-1,-1],[-1,0],[-5,-11],[-1,-15],[0,-56],[0,-1],[-1,-14],[-2,-8],[-6,-8],[-57,-46],[-4,-6],[-3,-5],[-5,-20],[-23,-80],[-23,-90],[-5,-16],[-5,-7],[-7,-1],[-5,8],[-13,29],[-14,16],[-20,20],[-2,3],[-23,16],[-8,0],[-23,-21],[-12,-15],[-34,-56],[-18,-30],[-3,-7],[-1,-3],[-3,-15],[2,-46],[1,-13],[1,-10],[4,-14],[13,-27],[4,-19],[1,-20],[1,-30],[-3,-19],[-6,-31],[-11,-40],[-7,-22],[-3,-7],[-2,-5],[-34,-69],[-9,-17],[-10,-7],[-15,-3],[-26,10],[-1,2],[-33,13],[-7,-5],[-10,-15],[-6,-14],[-27,-40],[-4,-1],[-4,0],[-35,33],[-3,3],[-4,4],[-3,9],[-48,-35],[-10,-7],[-1,-4],[-17,-36],[-18,-28],[-14,-15],[-14,-7],[-31,-6],[-7,-8],[-13,-47],[-8,-20],[-16,-13],[-15,0],[-6,-7],[-4,-10],[-7,-43],[-12,-36],[-11,-21],[-6,-6],[-4,1],[-5,1],[-69,48],[-20,14],[-5,4],[-1,-13],[-5,-15],[-17,-8],[-30,-70],[-51,-11],[-28,7],[-7,-4],[-106,-68],[-268,-175],[-19,-15],[-11,-3],[-155,51],[-31,14],[-23,7],[-16,4],[-11,5],[-5,2],[-11,-7],[-39,-44],[-87,-91],[-53,-29],[-22,-7],[-59,-11],[-17,-7],[-25,-22],[-221,-164],[-22,-18],[-38,-37],[-70,-61],[-71,-59],[-63,-51],[-22,-14],[-71,-55],[-35,-18],[-45,-29],[-70,-48],[-59,-25]],[[58967,49173],[-38,120],[-18,44],[-48,69],[-19,22],[-69,91],[-16,22],[-48,62],[-17,29],[-14,7],[-14,15],[-15,21],[-18,15],[-12,4],[-22,7],[-24,11],[-35,-7],[-15,29],[-36,138],[-18,4],[-24,14],[-29,37],[-15,11],[-27,-4],[-20,4],[-15,36],[-9,73],[-5,51],[-10,62],[-5,40],[0,80],[4,149],[2,51],[-6,66],[-12,32],[-12,30],[-31,51],[-10,43],[-8,69],[-10,37],[-10,40],[-21,54],[-7,44],[-11,15],[-15,18],[-17,22],[-12,11],[-13,14],[-17,29],[-12,30],[-17,36],[-11,22],[-15,33],[-17,25],[-16,7],[-19,-7],[-20,-11],[-14,-4],[-13,-7],[-16,11],[-11,15],[-15,22],[-16,21],[-24,33],[-16,40],[-13,33],[-13,40],[-16,51],[-22,69],[-9,29],[-15,37],[-14,22],[-24,29],[-13,18],[-13,14],[-18,26],[-17,22],[-12,18],[-12,26],[-11,18],[-10,25],[-13,29],[-17,29],[-17,26],[-15,22],[-11,14],[-10,19],[6,29],[186,582],[45,139],[23,80],[15,43],[30,95],[1,0],[138,452]],[[31413,62725],[137,-156],[74,-81],[97,-338],[19,-61],[1,-1],[16,-43],[-3,-31],[1,-2],[-20,-310],[0,-2],[-3,-45],[0,-8],[-9,-145],[-2,-62],[-6,-55],[-8,-120],[-5,-73],[21,-109],[8,-46],[12,-87],[4,-13],[3,-5],[22,-35],[8,-6],[11,3],[22,-3],[2,-11],[51,-453],[4,-44],[18,-56],[1,-10],[1,-19],[-1,-17],[-6,-29],[-3,-11],[16,-79],[9,-51],[33,-208],[15,-80],[29,-142],[16,-76],[9,-40],[6,-33],[6,-33],[30,-164],[13,-73],[33,-182],[29,-182],[8,-51],[34,-214],[17,-124],[7,-40],[18,-131],[9,-66],[22,-164],[70,-513],[2,-7],[22,-135]],[[32333,57453],[41,-149],[79,-295],[32,-121],[51,-196],[16,-58],[30,-106],[19,-69],[32,-117],[91,-338],[22,-84],[28,-109],[21,-70],[2,-7],[28,-105],[3,-11],[19,-69],[4,-19],[5,-18],[67,-251],[44,-164],[16,-58],[14,-22],[28,-29],[56,-106],[22,-36],[18,-29],[10,-22],[11,-15],[24,-36],[11,-18],[35,-66],[22,-40],[32,-55],[16,-29],[34,-58],[39,-65],[28,-55],[9,-26],[59,-144],[0,-1],[-19,-62],[-11,-33],[-25,-76],[-12,-47],[0,-1],[-1,-3],[-7,-35],[-1,-5],[-4,-30],[-3,-32],[-4,-40],[-6,-59],[-8,-72],[-1,-55],[4,-51],[15,-84],[28,-167],[12,-69],[21,-121],[7,-31],[2,-9],[9,-29],[4,-9],[6,-13],[11,-47],[6,-33],[3,-54],[0,-62],[-2,-51],[-2,-58],[-7,-69],[0,-1],[-1,-58],[0,-13],[1,-31],[0,-54],[0,-65],[0,-1],[5,-51],[6,-54],[13,-51],[13,-51],[42,-69],[17,-22],[15,-29],[10,-19],[13,-25],[36,-55],[13,-18],[20,-33],[22,-29],[26,-36],[22,-33],[17,-26],[11,-21],[24,-39],[1,-1],[13,-15],[13,-15],[8,-13],[3,-5],[24,-40],[11,-22],[17,-36],[-1,-47],[-4,-77],[-1,-47],[-3,-51],[-5,-113],[-4,-47],[-9,-81],[2,-58],[-3,-62],[-3,-43],[0,-8],[0,-23],[0,-13],[-1,-117],[-3,-193],[0,-43],[0,-3],[-12,-37],[10,-18],[0,-128],[-1,-152],[0,-1],[-1,-120],[-1,-91],[0,-62],[-1,-73],[-2,-102],[-1,-127],[1,-186],[-2,-229],[-2,-230],[-18,-305],[-13,-215],[-1,-24],[-2,-42],[-2,-36],[-2,-37],[-3,-47],[-2,-51],[0,-7],[-4,-69],[-5,-110]],[[33782,48124],[-6,1],[-104,13],[-324,39],[-258,32],[-195,24],[-417,52],[-76,9],[-44,6],[-650,81],[-53,6],[-43,6],[-201,25],[-391,49],[-415,53],[-744,93],[-1043,132]],[[38082,59940],[30,-155],[-34,-105],[-8,-32],[-14,-53],[-7,-106],[-18,-81],[-31,-76],[-9,-149],[56,-201],[7,-8],[36,-129],[0,-89],[-11,-183],[-57,-110],[-12,-178],[-24,-113],[-18,-37],[-8,-112],[-1,-7],[-2,-25],[-4,-38],[-9,-26],[-3,-82],[31,-102],[2,-6],[6,-44],[2,-14],[0,-4],[0,-21],[0,-9],[-4,-97],[6,-48],[2,-60],[0,-8],[-1,-11],[-2,-10],[-26,-137],[-2,-25],[-4,-50],[-2,-20],[4,-91],[15,-194],[9,-68],[7,-30],[1,-5],[3,-19]],[[37988,56772],[-21,0],[-23,4],[-88,14],[-77,11],[-26,4],[-25,3],[-37,8],[-4,0],[-57,7],[-142,22],[-84,18],[-31,0],[-16,0],[-11,4],[-31,0],[-26,0],[-37,3],[-63,4],[-49,7],[-2,1],[-24,3],[-34,7],[-50,7],[-70,15],[-56,7],[-28,7],[-7,1],[-58,7],[-51,3],[-23,4],[-45,4],[-63,7],[-29,4],[-59,7],[-15,0],[-76,11],[-139,14],[-83,11],[-123,14],[-4,1],[-25,0],[-7,0],[-48,4],[-40,7],[-89,11],[-54,3],[-17,4],[-15,0],[-66,7],[-87,11],[-71,7],[-23,4],[-74,7],[-8,0],[-76,11],[-119,15],[-30,4],[-14,3],[-43,7],[-48,4],[-19,4],[-18,0],[-2,0],[-13,3],[-27,4],[-29,4],[-15,0],[-20,3],[-19,0],[-45,4],[-16,4],[-33,3],[-16,0],[-24,4],[-27,4],[-57,3],[-1,0],[-15,4],[-40,3],[-13,11],[-32,22],[-32,4],[-12,0],[-23,4],[-15,0],[-15,0],[-66,7],[-47,7],[-20,4],[-21,3],[-29,4],[-30,4],[-11,0],[-18,3],[-18,0],[-41,4],[-54,7],[-37,4],[-27,3],[-53,8],[-33,3],[-24,4],[-37,4],[-73,7],[-32,4],[-11,3],[-2,0],[-29,0],[-163,18],[-39,8],[-40,3],[-2,0],[-32,4],[-61,7],[-69,8],[-44,3],[-3,1],[-22,3],[-49,4],[-14,3],[-11,0],[-51,7],[-61,8],[-64,3],[-23,4],[-48,4],[-40,3],[-93,8],[-66,3],[-1,0],[-10,4],[-165,14],[-91,8],[-139,14],[-68,8],[-43,7],[-11,0]],[[15808,52799],[-5,-80],[1,-43],[-2,-37],[0,-73],[-8,-91],[19,-149],[7,-109],[-10,-55],[-3,-54],[9,-29],[11,-37],[-3,-40],[-1,-22],[-1,-51],[-1,-36],[-4,-47],[-6,-33],[-13,-79],[-2,-12],[0,-40],[-8,-66],[-4,-47],[-8,-66],[-9,-29],[-6,-33],[-1,-62],[-2,-51],[1,-43],[-2,-40],[5,-69],[6,-48],[-6,-43],[-16,-48],[-7,-36],[-12,-44],[10,-55],[2,-43],[-4,-44],[-3,-36],[-8,-44],[-11,-44],[-14,-29],[-11,-51],[1,-36],[-10,-84],[-12,-18],[-11,-37],[-6,-32],[-14,-44],[-20,-7],[-19,-15],[-13,-14],[-18,-11],[-20,-8],[-15,-11],[-11,-14],[-21,-37],[-26,-65],[-15,-15],[-15,-51],[-15,-21],[-26,-26],[-14,-18],[-15,-37],[2,-36],[-4,-66],[-9,-47],[1,-54],[4,-44],[0,-55],[-1,-54],[-9,-33],[-9,-44],[-8,-40],[-4,-36],[-25,-29],[-26,-26],[-6,-51],[-4,-36],[-3,-73],[-7,-47],[-13,-30],[-11,-21],[-10,-7],[-1,-1],[-13,-3],[-20,-11],[-14,-15],[-11,7],[-17,-36],[-17,-18],[-21,-11],[-13,0],[-13,-51],[-13,-26],[-15,-21],[-8,-51],[-9,-30],[2,-61],[11,-37],[15,-14],[9,-73],[-7,-66],[-4,-40],[-16,-33],[-10,-58],[10,-44],[14,-29],[11,-40],[18,-40],[17,-11],[12,-47],[1,-44],[-26,-33],[-11,-7],[-14,-11],[-11,0],[-15,-3],[-16,-22],[-19,-26],[-28,-14],[-17,-18],[-14,-8],[2,-51],[-2,-65],[-11,-29],[-4,-40],[10,-44],[6,-66],[13,-40],[5,-36],[21,-18],[7,-29],[10,-44],[9,-22],[5,-40],[12,-40],[15,0],[18,25],[10,33],[17,-7],[20,-26],[13,-25],[4,-37],[4,-36],[-11,-51],[-1,-65],[16,-48],[5,-65],[-3,-51],[17,-37],[9,-54],[8,-48],[-1,-65],[-17,-51],[-10,-44],[-15,7],[-20,33],[-21,-3],[-75,-230],[-39,-127],[-23,-69],[-23,-70],[-17,-48],[-2,-6],[-20,-66],[-3,-7],[-6,-18],[-1,-2],[-10,-31],[-1,-1],[-6,-19],[-11,-35],[-31,-91],[-30,-87],[-21,-62],[-251,-746],[-19,-51],[-4,-55],[-8,-36],[-10,-37],[-12,0],[-12,4],[-17,0],[-9,-29],[-15,-19],[-11,-25],[-3,-62],[0,-58],[8,-44],[11,-25],[-8,-55],[-13,-62],[-9,-36],[-6,-33],[-17,-44],[-4,-40],[-5,-40],[6,-36],[-2,-62],[-17,-51],[-8,-44],[-6,-47],[-7,-33],[-17,-25],[-15,-15],[-21,-51],[75,-97],[26,-16],[5,-1],[6,8],[47,-36],[13,-20],[19,-49],[1,-2],[1,-31],[0,-1],[12,-164],[3,-13],[54,-74],[36,-50],[1,-2],[59,-9],[31,-22],[43,-31],[1,-3],[6,-39],[4,-19],[48,-106],[19,-86],[30,-84]],[[14818,43183],[-116,-101],[-424,-372],[-580,-507],[-6,-6]],[[13692,42197],[0,133],[1,175],[-1,12],[-3,8],[-15,14],[-1,1],[-9,13],[-6,16],[-6,26],[-3,36],[-1,14],[0,4],[-15,13],[-8,-6],[0,-1],[-25,-55],[-6,-3],[-5,6],[-10,23],[-1,7],[-2,6],[-9,24],[-28,26],[-2,2],[-17,18],[-13,13],[-15,17],[2,33],[3,52],[0,50],[-1,5],[0,3],[-9,147],[-4,20],[-1,2],[-3,7],[-16,8],[-4,5],[-14,69],[-4,32],[-5,65],[-1,31],[3,46],[-20,95],[22,113],[13,33],[11,43],[-3,48],[-12,40],[-45,-109],[-15,-15],[-21,66],[-12,36],[-17,44],[2,69],[-12,29],[-18,22],[-63,266],[-2,40],[-30,25],[-55,69],[-11,8],[-34,18],[-21,-7],[-25,-4],[-26,33],[-28,51],[-31,54],[22,44],[-13,106],[-12,14],[-4,55],[-2,54],[4,48],[13,11],[26,18],[26,25],[11,11],[15,55],[22,47],[11,18],[8,73],[14,69],[13,19],[14,0],[19,-4],[14,-15],[18,0],[22,33],[18,-3],[22,-26],[15,4],[17,3],[-3,40],[-5,80],[-4,48],[-13,87],[-15,22],[2,40],[-7,37],[-3,80],[2,36],[1,7],[-3,55],[-18,51],[-29,44],[1,43],[-11,40],[-16,8],[-15,11],[-37,-22],[-25,11],[-32,120],[-23,69],[-23,62],[-13,11],[-23,-18],[-22,69],[-24,40],[-32,62],[-2,149],[-8,95],[-32,40],[-16,62],[4,47],[-1,80],[-4,120],[-8,44],[-16,7],[-7,44],[-1,54],[-1,48],[-5,54],[-9,33],[-17,44],[-14,4],[-14,29],[-8,47],[-6,47],[-12,44],[-14,33],[-20,22],[-20,51],[-11,32],[-15,51],[-12,26],[-16,4],[-14,32],[-12,37],[-10,43],[-8,37],[-11,7],[-15,7],[-7,55],[1,58],[-2,51],[-11,33],[-8,40],[-15,47],[-22,4],[-17,-7],[-14,25],[-19,4],[-19,-4],[-14,-18],[-10,22],[2,36],[-4,59],[2,61],[-2,37],[2,65],[6,59],[0,40],[0,54],[-7,44],[-5,58],[-3,80],[-6,48],[-6,32],[9,48],[4,47],[2,40],[-2,55],[4,54],[-4,40],[-2,48],[-2,58],[5,55],[1,51],[14,65],[17,22],[15,-4],[13,8],[2,54],[-6,48],[5,62],[10,32],[-2,55],[-17,47],[3,37],[-2,58],[-1,36],[4,62],[14,26],[14,29],[4,40],[-2,51],[1,62],[-7,43],[-9,26],[-4,55],[-3,51],[2,40],[-2,69],[1,47],[18,40],[-3,37],[-7,43],[-14,40],[-6,40],[-15,37],[-11,58],[-2,62],[-5,58],[-12,51],[-1,58],[-2,62],[-14,40],[-17,-7],[-15,7],[-18,15],[-15,22],[-11,0],[-16,11],[-15,-15],[-18,15],[-18,-19],[-11,-18],[-50,-3],[3,-29],[-2,-48],[-8,-40],[-14,-47],[-6,-58],[1,-51],[-17,10],[-18,8],[-18,-15],[-18,-11],[-12,-3],[-20,0],[-14,7],[-16,0],[-12,-7],[-13,-8],[-11,4],[-16,-4],[-11,-18],[-17,-25],[-31,-8],[-17,4],[-15,-40],[-16,0],[-19,-7],[-12,-4],[-19,-4],[-13,-7],[-36,15],[-31,29],[-22,94],[-21,4],[-40,47],[-13,15],[-19,44],[-15,54],[-2,153],[-1,40],[-27,40],[4,55],[7,84],[4,58],[-4,66],[-7,83],[-17,80],[-6,40],[-18,8],[-16,22],[-18,0],[-66,54],[-12,22],[-9,26],[2,22],[2,28],[4,117],[-67,44],[-2,51],[15,58],[10,36],[-22,135],[3,47],[23,84],[13,164],[5,33],[-39,153],[-32,116],[16,84],[7,149],[-13,109],[-41,62],[-17,40],[3,37],[3,62],[0,83],[-10,51],[17,95],[4,58],[-16,44],[-53,62],[-16,0],[-20,0],[-19,91],[-7,33],[-17,76],[-2,62],[6,62],[-10,62],[-16,40],[-9,69],[-4,37],[-27,58]],[[39905,60602],[-6,-47],[-16,-124],[-3,-54],[-8,-128],[2,-62],[5,-62],[11,-54],[28,-139],[18,-102],[4,-116],[10,-84],[4,-44],[7,-58],[4,-47],[9,-98],[4,-37],[8,-36],[9,-38],[1,-6],[12,-47],[7,-44],[0,-4],[7,-47],[8,-40],[11,-47],[-3,-80],[3,-84],[5,-47],[0,-1],[16,-101],[10,-66],[37,-244],[15,-91],[13,-90],[0,-5],[19,-123],[8,-59],[8,-43],[9,-70],[14,-91],[8,-47],[9,-62],[11,-91],[7,-44],[22,-160],[20,-124],[5,-54],[-18,-11],[-13,-7],[-39,-26],[-55,-40],[-5,-44],[-3,-40],[-4,-65],[-5,-48],[-4,-58],[-4,-54],[-6,-77],[11,-22],[15,-25],[13,-22],[88,-171],[53,-226],[8,-33],[12,-54],[11,-40],[19,-80],[14,-62],[40,-106],[40,-98],[15,-33],[18,-47],[11,-30],[14,-29],[12,-25],[34,-80],[13,-29],[21,-48],[39,-83],[25,-60],[3,-6],[20,-44],[38,-87],[12,-26],[12,-29],[10,-22],[10,-21],[19,-40],[19,-33],[11,-22],[16,-29],[55,-102],[18,-33],[15,-25],[35,-64],[3,-6],[10,-87],[9,-87],[18,-164],[7,-62],[0,-2],[3,-34],[6,-51],[5,-48],[13,-109],[6,-55],[3,-36],[10,-106],[19,-189],[11,-91],[0,-7],[9,-88],[0,-2],[12,-118],[14,-135],[5,-58],[6,-51],[9,-87],[7,-62],[9,-91],[5,-47],[5,-44],[11,-113],[10,-98],[7,-69],[8,-73],[10,-95],[5,-44],[11,-94],[6,-62],[6,-69],[7,-62],[8,-73],[4,-47],[11,-33],[3,-40],[11,-15],[66,-98],[0,-1],[17,-28],[12,-22],[14,-22],[29,-44],[17,-32],[29,-48],[25,-36],[47,-77],[38,-62],[35,-54],[11,-15],[34,-58],[12,-22],[19,-29],[17,-29],[33,-55],[35,-58],[18,-29],[42,-69],[26,-48],[31,-54],[25,-40],[22,-37],[20,-25],[49,-85],[19,-32],[22,-36],[13,-22],[29,-51],[29,-51],[21,-33],[23,-43],[11,-19],[16,-25],[11,-22],[12,-18],[14,-26],[19,-29],[14,-22],[31,-47],[31,-47],[11,-22],[19,-37],[18,-32],[12,-18],[16,-26],[18,-25],[23,-41],[47,-76],[25,-40],[24,-44],[48,-80]],[[42561,49759],[-10,-22],[-24,-58],[-25,-65],[-59,-157],[-75,-189],[-30,-80],[-14,-33],[-51,-135],[-27,-69],[-13,-33],[-30,-80],[-50,-127],[-152,-396],[-1,-1],[-20,-51],[-17,-44],[-13,-36],[-30,-77],[-20,-51],[-19,-51],[-10,-25],[-34,-88],[-23,-58],[-18,-47],[-26,-69],[-19,-48],[-31,-87],[-32,-117],[-13,-22],[-32,-54],[-20,-51],[-17,-40],[-14,-40],[-2,-4],[-15,-40],[-23,-58],[-19,-51],[-17,-44],[-19,-51],[-10,-25],[-9,-26],[-18,-47],[-10,-26],[-9,-25],[-13,-33],[-13,-33],[-29,-69],[-20,-51],[-12,-33],[-24,-61],[-54,-142],[-29,-73],[-11,-26],[-12,-33],[-16,-40],[-12,-29],[-27,-69],[-13,-33],[-26,-65],[-39,-106],[-10,-25],[-1,-2],[-35,-93],[-15,-36],[-60,-157],[-28,-73],[-11,-29],[-22,-55],[-24,-58],[-18,-51],[-18,-43],[-15,-41],[-10,-25],[-13,-36],[-18,-48],[-14,-29],[-10,-29],[-22,-55],[-2,-3],[-16,-44],[-21,-51],[-19,-44],[-9,-21],[-9,-26],[-14,-33],[-30,-76],[-11,-29],[-52,-131],[-15,-37],[-13,-33],[-13,-32],[-25,-62],[-19,-48],[-19,-47],[-37,-91],[-9,-25],[-19,-48],[-32,-76],[-23,-58],[-31,-77],[-23,-55],[-19,-43],[-26,-62],[-52,-126],[-3,-24],[-7,-20],[-22,-59],[-55,-121],[-13,-30],[-7,-14],[-2,-4],[-7,-10],[-11,-19],[-14,-18],[-1,-1],[-17,-8],[-1,-1],[-45,-17],[-3,3],[-5,8],[-4,11],[-2,8],[-15,4],[-5,-3],[-17,-10],[-53,-34],[-101,-81],[-5,-7],[-26,-45],[-13,-18],[-9,-2],[-29,1],[-9,3],[-2,-15],[-6,-43],[-4,-34],[-38,-94],[-19,-45],[-8,-17],[-3,-5],[-14,-17],[-27,-35],[-48,-67],[-12,-16],[-16,-35],[-19,-118],[-3,-22],[-5,-7],[-19,-28],[-35,-60],[-1,-2],[-54,-91],[-8,-15],[-20,-33],[-19,-53],[-10,-35],[-7,-31],[8,-81]],[[39299,42195],[-141,515],[-379,1386],[-147,540],[-81,298],[-8,26],[-137,476],[-145,503],[-42,145],[-178,-374],[-82,-156],[-231,-436],[-129,-239],[-530,-981],[-48,-90],[-49,6],[-21,164],[-39,176],[-23,126],[-29,66],[-19,33],[-60,50],[-8,67],[-1,20],[6,181],[10,168],[8,46],[14,188],[-5,41],[40,171],[11,51],[16,94],[8,33],[14,49],[20,99],[20,115],[20,47],[6,14],[32,60],[29,57],[12,5],[2,5],[17,32],[30,81],[11,50],[7,116],[-40,338],[-8,58],[-17,91],[-33,112],[1,18],[0,4],[1,21],[2,29],[-11,40],[-9,8],[-33,83],[-35,119],[-2,0],[-9,4],[-5,2],[-16,51],[4,63],[19,66],[4,67],[-2,16],[38,91],[34,34],[14,6],[50,15],[64,10]],[[37111,47565],[17,2],[37,24],[5,-22],[0,-1],[5,-26],[27,-16],[23,25],[12,25],[38,93],[13,58],[13,25],[10,8],[0,1],[13,22],[33,10],[20,40],[9,18],[6,12],[8,164],[-3,21],[4,58],[3,9],[8,30],[1,5],[9,21],[21,95],[20,111],[7,56],[10,164],[0,217],[-4,32],[-14,50],[-13,99],[-16,204],[-7,102],[8,348],[4,67],[7,81],[-48,178],[-15,6],[-4,-4],[-16,3],[-17,47],[-9,137],[-9,118],[5,128],[3,75],[16,198],[1,60],[2,104],[5,143],[3,6],[5,10],[10,70],[5,43],[3,28],[5,77],[-5,43],[-2,24],[-15,51],[-10,33],[-4,27],[-6,39],[-8,51],[-9,48],[-1,12],[-3,28],[-6,145],[-7,178],[1,32],[4,85],[1,23],[5,32],[10,81],[9,16],[5,32],[3,50],[1,25],[5,15],[15,49],[5,13],[6,46],[10,90],[2,46],[5,100],[0,12],[10,127],[8,65],[14,77],[2,10],[12,94],[4,38],[2,17],[1,9],[5,18],[3,11],[2,25],[2,32],[6,100],[0,2],[10,45],[5,9],[32,60],[9,26],[31,153],[0,4],[3,32],[4,67],[31,155],[14,49],[44,86],[23,79],[5,67],[-6,67],[-35,147],[-6,22],[-6,18],[-3,21],[4,58],[9,65],[19,126],[28,52],[13,15],[22,20],[28,-2],[20,37],[9,65],[5,72],[3,7],[22,48],[4,10],[10,23],[23,-10],[16,-64],[22,-85],[8,-18],[15,-6],[12,24],[11,24],[12,26],[2,10],[9,45],[37,69],[19,6],[47,-19],[33,-18],[12,-25],[14,-6],[25,32],[4,5],[11,20],[12,45],[1,5],[5,12],[24,59],[28,55],[19,39],[55,17],[34,55],[3,53],[-10,31],[-9,27],[-50,30],[-26,6],[-26,-14],[-37,16],[-11,-1],[-9,10],[-43,47],[-36,39],[-35,44],[-45,73],[-10,38],[-4,13],[-9,68],[-11,39],[-28,11],[-21,-1],[-14,-14],[-17,-31],[-13,-26],[-8,-36],[-5,-72],[0,-5],[-6,-32],[-7,-27],[-24,-44],[-36,-64],[-20,-21],[-28,11],[-5,7],[-40,59],[-2,3],[-11,34],[-4,11],[-10,41],[-5,20],[-14,85],[-8,78],[-8,151],[0,13],[1,14],[1,46],[11,40],[12,25],[30,17],[29,-17],[21,16],[22,30],[12,23],[10,18],[4,10],[14,37],[57,100],[104,105],[24,49],[13,71],[1,3],[0,8],[4,84],[0,5],[0,3],[-1,42],[-12,98]],[[58967,49173],[-9,-44],[-2,-43],[-9,-55],[1,-36],[-1,-81],[-7,-40],[1,-36],[0,-7],[5,-37],[1,-47],[15,-44],[1,-39],[1,-19],[-16,-135]],[[58948,48510],[-16,-22],[-10,-30],[-4,-8],[-4,-6],[-11,0],[-9,11],[-2,4],[-5,11],[-4,15],[-2,46],[-2,7],[-3,14],[-10,20],[-7,8],[-8,5],[-11,-4],[-8,-13],[-5,-14],[-12,-84],[1,-12],[3,-17],[2,-12],[0,-17],[-3,-12],[-4,-10],[-6,-9],[-8,-5],[-12,-1],[-9,8],[-36,42],[-5,1],[-3,-4],[-51,-47],[-7,-7],[-3,-29],[-4,-46],[-1,-10],[-1,-2],[-6,-19],[-9,-15],[-7,-8],[-4,-1],[-2,-1],[-7,5],[-4,3],[-2,3],[-7,12],[-7,20],[-1,7],[-43,222],[1,9],[10,24],[10,24],[0,4],[-1,4],[0,1],[-24,59],[-1,0],[0,2],[-5,8],[-6,0],[-1,0],[-13,-4],[-17,-55],[-1,-16],[-2,-27],[-10,-99],[0,-2],[-1,-7],[-2,-8],[-15,-34],[-1,-2],[-1,-3],[-23,-45],[-6,-8],[-5,-5],[-13,2],[-5,6],[-11,30],[-2,6],[-17,54],[-1,3],[-18,27],[-50,64],[-34,95],[1,8],[4,10],[6,13],[1,10],[-3,97],[-2,4],[-44,36],[-1,0],[-22,4],[-3,1],[-11,-68],[-1,1],[-29,22],[-1,1],[-43,80],[0,1],[-3,90],[0,4],[-46,25],[-5,2],[1,12],[6,85],[1,17],[0,1],[-4,78],[-30,55],[-2,2],[-3,-2],[-3,-2],[-15,-21],[-2,-2],[-9,-15],[-6,-19],[-1,-3],[-12,-38],[0,-1],[-2,-3],[-10,-15],[-2,-4],[-3,0],[-27,31],[-1,8],[3,13],[2,11],[0,8],[0,2],[0,4],[-12,28],[-1,3],[0,1],[-2,32],[-38,18],[-53,8],[-1,-2],[-22,-25],[-16,-18],[-9,-13],[-11,-17],[-6,-1],[-19,2],[-27,5],[-18,13],[-1,9],[-16,63],[-4,17],[-30,-19],[-30,-19],[-5,5],[-8,12],[-16,24],[-25,81],[-1,9],[-36,129],[-11,41],[-22,-11],[-1,0],[-2,0],[-2,1],[-5,9],[-8,17],[-16,97],[0,2],[-37,151],[-11,33],[-3,1],[-1,-1],[-22,-6],[-29,-8],[-44,-21],[-7,-4],[-28,10],[-3,1],[5,83],[-1,3],[-12,50],[-4,-1],[-16,-2],[-22,-2],[-4,-1],[-3,0],[-36,-215],[-2,-8],[-9,-19],[-28,-57],[-12,-23],[-56,2],[-1,0],[-4,-3],[0,-1],[-6,-12],[-3,-8],[-2,-9],[-1,-3],[-19,-96],[-1,-4],[0,-5],[-5,-22],[-11,-24],[-8,-9],[-36,-7],[-23,-3],[-16,8],[-3,2],[-15,-33],[-45,-101],[-83,-89],[-1,-2],[-7,-5],[0,-31],[-11,-50],[-7,-23],[-19,-58],[-4,-3],[-28,-15],[-54,-166],[-59,-181],[-2,-6],[-2,-6],[-2,5],[-3,5],[-4,1],[-3,-5],[-10,-25],[-7,-18],[-1,-5],[-1,-2],[-6,-55],[-2,-10],[-32,-51],[-11,-14],[-11,-8],[-2,-6],[-42,-177],[-1,-3],[-14,8],[-61,-13],[-19,-12],[-12,-8],[-2,-1],[-6,-8],[-39,-79],[-3,-7],[-14,-67],[-1,0],[-5,-44],[-1,-5],[-46,-14],[-6,2],[-10,15],[-75,-242],[-27,-91],[-35,-109],[-9,-33],[-30,-94],[-53,-168],[-1,-3],[-20,-66],[-32,-95],[-40,-120],[-45,-134],[-24,-73],[-34,-95],[-11,-40],[-12,-36],[-28,-88],[-23,-69],[-12,-36],[-45,-142],[-10,-33],[0,-1],[-23,-65],[-3,-9],[-15,-45],[-13,-40],[-36,-106],[-17,-55],[-10,-32],[-18,-59],[-14,-32],[-33,-102],[-20,-66],[-23,-62],[-57,-171],[-69,-186],[-17,-43],[-12,-37],[-14,-36],[-80,-259],[-27,-79],[0,-1],[-44,-124],[-10,-40],[-13,-32],[-10,-37],[-28,-91],[-38,-116],[-64,-208],[-39,-131],[-11,-36],[-18,-59],[-38,-127],[-18,-66]],[[54873,43740],[-75,122],[-19,31],[-11,18],[-9,15],[-13,5],[-1,0],[-6,-1],[-4,11],[-35,97],[2,11],[1,5],[4,21],[-5,23],[-16,7],[-3,8],[-1,3],[1,3],[3,16],[-7,12],[-3,7],[1,18],[0,3],[-9,67],[-2,3],[-3,7],[-7,7],[-35,33],[-30,28],[-34,33],[-40,29],[-4,3],[-16,-16],[-3,-3],[-11,19],[-28,50],[-9,16],[-4,15],[-21,16],[-7,5],[-26,1],[-2,-2],[-10,-7],[-24,-9],[-19,13],[-1,1],[-61,-9],[-5,-1],[-15,2],[-12,2],[-40,5],[-71,-4],[-4,-9],[-48,53],[-27,37],[-9,8],[-11,12],[-1,-9],[-1,-6],[-7,-20],[-6,-11],[-4,-5],[-33,-1],[-42,5],[-17,13],[0,3],[-2,10],[-42,16],[-52,8],[-49,7],[-2,-2],[-2,-4],[-1,-1],[-1,-1],[-17,-27],[-6,-10],[-1,3],[-12,7],[-18,11],[-5,0],[-2,0],[-7,-3],[-14,-6],[-30,-2],[-18,0],[-31,18],[0,10],[2,5],[0,2],[0,8],[-3,17],[-30,74],[-1,0],[-4,3],[-10,23],[0,14],[-5,136],[-5,56],[0,2],[0,1],[-1,3],[-22,64],[-1,2],[-34,150],[0,9],[-7,212],[2,76],[14,123],[18,43],[1,1],[12,52],[20,80],[3,14],[-4,32],[-6,37],[0,11],[8,94],[1,7],[4,43],[6,9],[1,3],[1,4],[0,1],[0,12],[1,40],[-1,12],[-3,35],[-2,9],[-16,53],[-2,6],[12,131],[5,41],[2,6],[0,2],[1,0],[2,4],[9,16],[4,43],[2,32],[0,15],[0,2],[-1,9],[-12,126],[0,3],[0,1],[-1,4],[-14,50],[-3,9],[-15,53],[-3,6],[-24,52],[-2,5],[-7,14],[-41,115],[0,43],[-1,30],[-2,16],[-14,84],[-1,7],[-21,60],[-3,26],[-6,40],[-24,96],[-5,14],[-1,3],[-12,21],[-25,43],[-7,7],[-20,17],[-40,12],[-1,0],[-32,71],[-1,2],[-14,35],[-5,16],[-29,90],[-1,2],[-4,19],[-15,82],[-1,48],[-1,14],[-2,24],[-7,18],[-1,0],[0,1],[-2,1],[-15,13],[-4,23],[-12,76],[-2,16],[-1,9],[-4,153]],[[53121,48132],[-6,53],[-1,3],[-1,4],[-34,137],[-19,51],[-6,16],[-3,7],[-8,1],[-9,-2],[-5,-20],[-4,-7],[-15,-10],[-7,-1],[-17,14],[-6,12],[-4,16],[-7,65],[0,6],[-2,44],[0,1],[-2,14],[-2,8],[-4,7],[-7,4],[-2,1],[-21,-3],[-31,-12],[-11,5],[-14,18],[-12,20],[-6,44],[-29,80],[-46,137],[-15,63],[-5,12],[-6,16],[-5,11],[-17,57],[-14,47],[-15,25],[-7,12],[-15,24],[0,1],[-41,129],[-18,114],[-2,4],[-14,45],[-3,13],[-2,24],[-15,195],[0,13],[2,31],[17,86],[3,37],[-1,7],[0,5],[-7,96],[-6,47],[-4,13],[-3,1],[-3,1],[-10,9],[-4,11],[-10,77],[-3,32],[-6,105],[0,4],[0,2],[1,101],[2,94],[0,2],[-6,55],[-36,195],[-2,75],[-6,9],[-1,13],[-17,164],[-13,122],[-1,4],[-12,55],[-7,2],[-16,11],[-1,1],[-1,1],[-35,28],[-2,1],[-13,11],[-42,35],[0,1],[-42,55],[-1,2],[-13,30],[-2,3],[-25,5],[-20,2],[-64,37],[-38,108],[-2,11],[-1,39],[1,9],[1,17],[0,11],[-5,29],[-6,32],[-10,52],[-14,58],[-5,25],[2,141],[-2,52],[-1,26],[-12,41],[-29,113],[-4,22],[-1,4],[-30,96],[-2,4],[-1,11],[-2,171],[-5,102],[4,101],[1,21],[1,18],[1,5],[5,21],[12,137],[1,10],[0,2],[0,18],[-6,181],[0,14],[0,4],[2,57],[1,22],[11,29],[-3,51],[-2,18],[-9,84],[-3,62],[-34,353],[-4,40],[-27,317],[-25,269],[-6,58],[-9,113],[-21,237],[-45,524],[0,4],[-10,120],[-27,277],[-2,9],[-5,38],[-9,117],[-6,69],[-15,153],[-19,207],[-4,51],[-9,98],[-5,48],[-44,484],[-1,11],[-10,113],[-8,80],[-8,95],[-13,149],[-4,36],[-5,51],[-14,161],[-18,189],[-26,291],[-7,73],[-13,146],[-28,284],[-6,51],[-39,287],[-31,237],[-16,120],[-25,189],[-10,226],[-19,415],[-15,386],[-7,168],[-4,94]],[[53121,48132],[-12,0],[-26,0],[-12,-11],[-23,-22],[-17,0],[-27,-7],[-26,-19],[-37,-32],[-19,-26],[-32,-47],[-34,-18],[-51,-30],[-25,44],[-33,55],[-11,18],[-15,25],[-15,26],[-16,25],[-14,11],[-14,15],[-22,22],[-17,36],[-10,47],[-20,77],[-10,36],[-14,37],[-18,25],[-21,11],[-40,22],[-12,18],[-16,37],[-7,47],[-15,0],[-31,25],[-32,51],[-21,-25],[-22,-4],[-11,22],[-20,26],[-16,-8],[-17,29],[-19,11],[-24,-14],[-13,44],[-17,-19],[-18,-22],[-4,-5],[-18,-31],[-11,-18],[-25,-44],[-19,-22],[-32,-25],[-24,-22],[-21,-15],[-17,-10],[-8,-3],[-6,-1],[-12,7],[-11,4],[-19,14],[-15,4],[-29,22],[-14,11],[-54,43],[-1,0],[-28,37],[-16,25],[-17,19],[-17,7],[-19,-11],[-17,-15],[-13,-43],[-6,-37],[-17,-14],[-17,-29],[-25,-15],[-16,-15],[-23,-10],[-15,-8],[-73,22],[-25,11],[-83,113],[-14,22],[-25,-8],[-21,-7],[-31,0],[-16,0],[-21,-14],[-14,-4],[-15,0],[-13,-11],[-36,-29],[-26,11],[-16,3],[-18,0],[-34,4],[-18,15],[-14,11],[-18,11],[-12,3],[-26,18],[-11,8],[-19,18],[-18,33],[-18,0],[-15,-11],[-18,11],[-24,21],[-18,4],[-17,-18],[-14,-18],[-17,-22],[-16,-11],[-17,7],[-23,33],[-16,-4],[-24,-11],[-16,-21],[-20,-22],[-17,-18],[-22,3],[-19,0],[-12,0],[-16,4],[-15,18],[-12,22],[-19,40],[-12,25],[-11,26],[-19,22],[-15,14],[-14,11],[-21,22],[-18,15],[-19,11],[-33,-51],[-43,-70],[-24,-40],[-15,-22],[-67,-109],[-49,-76],[-29,-44],[-269,-379],[-37,7],[-5,1],[-80,11],[-7,1],[-45,10],[-194,36],[-148,25],[-9,-40],[-36,-149],[0,-1],[-10,-39],[-11,-25],[-19,-22],[-15,-4],[-14,-7],[-45,11],[-17,-8],[-13,11],[-19,-7],[-15,29],[-14,4],[-56,-7],[-15,-15],[-16,-4],[-14,4],[-21,4],[-20,18],[-24,22],[-18,29],[-18,-26],[-11,-14],[-15,-33],[-20,-87],[-16,-15],[-17,-25],[-31,-33],[-29,-44],[-36,-40],[-11,-14],[-12,-15],[-13,-11],[-18,-29],[-11,-15],[-11,-36],[-21,-33],[-14,-40],[-16,-18],[-13,-15],[-39,-62],[-33,-43],[-11,-11],[-11,-37],[-9,-32],[-19,-48],[-22,-14],[-17,7],[-14,22],[-12,-4],[-16,11],[-14,26],[-23,47],[-15,7],[-20,0],[-14,11],[-21,-11],[-16,-18],[-12,-4],[-22,8],[-11,0],[-69,22],[-39,14],[-56,18],[-32,11],[-33,11],[-76,22],[-11,4],[-19,7],[-18,4]],[[47919,47382],[8,59],[10,44],[15,66],[8,38],[29,210],[4,25],[22,64],[17,25],[24,35],[30,61],[27,62],[18,75],[10,81],[14,108],[11,87],[3,41],[2,36],[1,4],[-3,181],[-15,99],[-9,33],[-2,10],[-49,184],[-7,24],[-3,30],[-3,23],[-4,35],[-1,46],[2,35],[3,65],[5,48],[-4,39],[-6,104],[-5,21],[-1,1],[-39,154],[-3,12],[-12,46],[-6,26],[-22,84],[-19,138],[-13,135],[-12,84],[-44,218],[-18,54],[-59,72],[-60,96],[-21,64],[-60,221],[5,104],[2,161],[-12,153],[-5,30],[-15,94],[3,88],[1,26],[8,126],[4,30],[27,122],[9,52],[7,121],[11,180],[-3,103],[-8,64],[-15,62],[-11,143],[7,136],[15,53],[29,126],[15,95],[9,61],[9,51],[25,54],[1,2],[9,17],[34,110],[17,66],[10,92],[2,9],[7,108],[-3,43],[-8,37],[-4,19],[-27,192],[8,116],[69,275],[1,2],[21,58],[28,52],[25,77],[0,9],[9,33],[4,56],[11,164],[-2,28],[3,13],[1,110],[-4,237],[13,189],[5,35],[4,25],[27,53],[17,16],[14,7],[25,26],[35,68],[12,51],[14,58],[1,1],[8,50],[6,71],[0,19],[-14,53],[-16,30],[-2,2],[-16,20],[-21,45],[-17,63],[-2,71],[-3,15],[-9,35],[-5,53],[0,2],[-5,52],[-2,24],[-30,119],[-25,53],[-23,47],[-7,19],[-26,74],[-25,53],[-28,35],[-30,9],[-31,-19],[-22,-4],[-15,6],[-8,4],[-15,57],[-4,38],[-2,16],[-10,36],[-24,34],[-26,15],[-5,3],[-7,24],[-6,24],[-2,28],[5,104],[2,16],[11,99],[15,122],[6,33],[8,40],[-7,86],[-5,30],[-20,78],[-2,5],[0,2],[-3,8],[-8,28],[-9,31],[-11,83],[-6,53],[-3,25],[-22,82],[-11,43],[8,114],[1,17],[10,46],[5,84],[4,51],[-6,44],[-25,80],[-61,23],[-16,6],[-16,30],[-11,23],[-28,82],[-42,152],[19,311],[-45,163],[-19,31],[-85,37],[-22,28],[-61,152],[-38,132],[-1,3],[-17,42],[-45,15],[-28,-35],[-22,-26],[-8,-11],[-10,-5],[-61,17],[-1,2],[-1,1],[-26,28],[-15,21],[-33,14],[-9,-5],[-3,2],[-9,7],[-10,37],[-4,44],[-12,42],[-25,57],[-9,18],[-55,93],[-41,39],[-2,2],[-11,107],[-3,58],[-3,51],[-7,135],[-1,11],[-17,123],[-10,73],[-14,153]],[[45437,60486],[-9,-40],[-29,-146],[-7,-33],[-19,-94],[-12,-59],[-4,-17],[-4,-19],[-8,-40],[-6,-29],[-25,-113],[-9,-47],[0,-2],[-13,-64],[-17,-84],[-8,-36],[-18,-91],[-15,-69],[-13,-66],[-54,-262],[-22,-106],[-9,-43],[-13,-66],[-17,-80],[0,-1],[-58,-279],[-13,-62],[-9,-40],[-20,-95],[-1,-8],[-32,-156],[-40,-193],[-34,-174],[-62,-299],[-8,-36],[-16,-81],[-7,-36],[-14,-65],[-16,-73],[-13,-73],[-26,-120],[-43,-208],[-6,-33],[-8,-36],[-9,-44],[-29,-145],[-27,-135],[-8,-36],[-9,-41],[-33,-156],[-14,-73],[-1,-1],[-6,-32],[-12,-62],[-18,-91],[-12,-62],[-10,-47],[-6,-33],[-46,-225],[-8,-40],[-18,-88],[-20,-98],[-16,-69],[-25,-124],[-32,-153],[-31,-149],[-23,-110],[-11,-58],[-62,-298],[-10,-48],[-19,-98],[-61,-306],[-83,-404],[-28,-142],[-11,-51],[-31,-149],[-9,-44],[-30,-153],[-15,-69],[-20,-101],[-4,-19],[-7,-40],[-9,-44],[-25,-124],[-26,-124],[-9,-43],[-14,-62],[-7,-40],[-21,-124],[-9,-44],[-10,-51],[-19,-94],[-18,-91],[-12,-51],[-5,-33],[-8,-37],[-16,-80],[-12,-58],[-7,-36],[-9,-44],[-36,-171],[-8,-37],[-2,-9],[-8,-45],[-9,-48],[-11,-40],[-13,-61],[-7,-37],[-17,-84],[-17,-80],[-17,-83],[-21,-106],[-13,-58],[-23,-120],[-37,-190],[-1,0],[-6,-36],[-7,-40],[-12,-55],[-21,-102],[-32,-218],[0,-1],[0,-4],[4,-31],[2,-38],[0,-1],[-6,-28],[-5,-13],[-2,-4],[-19,-27],[-38,-51],[-5,-7],[-31,-80],[-15,-43],[-11,-36],[-16,-58],[-15,-70],[-1,-15],[-6,-49],[-11,-62],[-13,-27],[-6,-10],[-20,-35],[-6,-12],[-19,-40],[-7,-18],[0,-2],[-1,-2],[-5,-28],[-4,-28],[0,-19],[3,-28],[0,-3],[9,-39],[1,-2],[9,-46],[1,-7],[0,-2],[1,-6],[0,-34],[-3,-25],[-1,-9],[-8,-53],[-1,-51]],[[43067,48874],[-12,44],[-50,84],[-29,47],[-10,18],[-32,55],[-46,76],[-12,22],[-14,22],[-10,18],[-21,37],[-20,36],[-1,1],[-13,21],[-19,29],[-37,66],[-20,32],[-14,22],[-13,19],[-16,29],[-10,18],[-24,44],[-83,145]],[[47919,47382],[-10,29],[-7,44],[-37,201],[-16,50],[-20,67],[-12,50],[-25,79],[-1,1],[-24,89],[-4,16],[-2,2],[-1,3],[-54,154],[-23,52],[-34,61],[-2,4],[-4,4],[-28,43],[-22,41],[-23,61],[-3,8],[-12,43],[-4,27],[-5,41],[-3,17],[-4,57],[0,67],[-1,21],[4,132],[3,68],[0,15],[3,28],[1,16],[0,1],[-1,57],[0,10],[-1,14],[-9,91],[-1,4],[-5,23],[-11,25],[-8,17],[-3,7],[-5,5],[-14,14],[-13,14],[0,2],[-1,4],[-15,4],[-26,-5],[-14,-9],[-13,-11],[-14,-25],[-9,-39],[-10,-17],[-4,-9],[-11,-25],[-21,-57],[-19,-51],[-3,-10],[-1,-2],[0,-1],[-3,-21],[-4,-46],[0,-49],[3,-31],[7,-45],[19,-71],[0,-3],[14,-56],[1,-6],[9,-50],[1,-9],[2,-15],[0,-23],[0,-19],[0,-2],[-2,-23],[-11,-24],[-2,-2],[-3,-3],[-2,-2],[-8,-3],[-4,-1],[-5,1],[-31,5],[-1,-1],[-5,-2],[-8,-11],[-8,-26],[-7,-49],[-4,-22],[-18,-93],[-4,-11],[-8,-8],[-14,-7],[-25,-5],[-6,2],[-28,33],[-34,73],[-24,61],[-28,58],[-11,18],[-22,20],[-9,2],[-10,2],[-7,-7],[-16,-30],[-9,-24],[0,-1],[-4,-13],[-3,-41],[-2,-19],[-1,-64],[-6,-60],[-1,-4],[-3,-14],[-12,-28],[-52,-56],[-10,-19],[-2,-5],[-6,-16],[-8,-33],[-6,-52],[-1,-14],[5,-47],[13,-66],[1,-6],[1,-4],[14,-50],[22,-60],[16,-37],[8,-31],[5,-18],[6,-39],[0,-9],[0,-26],[-4,-36],[-12,-28],[-2,-3],[-7,-10],[-23,-19],[-12,-3],[-8,-2],[-3,1],[-89,10],[-5,0],[-6,6],[-5,4],[-40,61],[-39,67],[-1,4],[0,1],[-14,34],[-17,38],[-11,26],[-6,13],[-3,6],[-15,14],[-22,9],[-3,0],[-10,19],[-9,26],[-2,6],[-11,44],[-4,20],[-2,18],[-3,20],[0,6],[-4,44],[0,7],[0,1],[0,7],[-1,74],[-2,42],[-2,12],[0,2],[-4,14],[-8,17],[0,1],[-18,25],[-5,2],[-17,7],[-18,-4],[-17,-12],[-2,-1],[-11,-14],[-4,-7],[-7,-13],[-8,-29],[-6,-39],[-1,-116],[-5,-97],[-2,-21],[-2,-20],[-4,-18],[-10,-13],[-12,-10],[-7,-3],[-19,-7],[-7,-1],[-13,-1],[-110,22],[-10,5],[-17,18],[-20,137],[-45,226],[-12,50],[-1,2],[0,1],[-3,7],[-37,94],[-8,25],[-4,13],[-1,3],[-41,211],[0,1],[-4,22],[-2,16],[-9,81],[0,56],[3,33],[18,104],[1,5],[0,1],[1,19],[0,2],[0,24],[-1,4],[0,5],[0,4],[-11,54],[-1,1],[-2,4],[-36,130],[-13,55],[-4,19],[-10,51],[-42,203],[-6,37],[-6,59],[0,35],[8,113],[-23,66],[-3,9],[-14,3],[-10,2],[-3,-2],[-5,-4],[-72,-66],[-10,-13],[-3,-5],[-2,-4],[-4,-21],[-1,-7],[0,-2],[-1,-9],[-1,-51],[0,-6],[-2,-40],[-1,-9],[-2,-11],[-9,-23],[-48,-46],[0,-1],[-2,-3],[-12,-18],[-1,-3],[-6,-16],[-9,-49],[-15,-62],[-10,-41],[-7,-27],[-20,-6]],[[45641,49315],[-34,0],[-12,-6],[-1,-2],[-5,-8],[-7,-21],[-2,-5],[-3,-10],[-10,-54],[-7,-39],[-30,-19],[-1,0],[-11,0],[-7,11],[-19,45],[-12,26],[-11,17],[-6,6],[-2,0],[-17,5],[-5,-3],[-6,-10],[-6,-19],[-4,-11],[-13,-55],[-2,-10],[-10,-35],[-19,-37],[-22,-18],[-10,-17],[-5,-15],[-3,-15],[-4,-47],[-1,-87],[-2,-39],[-1,-7],[-1,-1],[-6,-19],[-5,-12],[-10,-12],[-4,-5],[-13,-9],[-17,-12],[-21,-12],[-31,-4],[-1,0],[-33,-10],[-2,-1],[-9,-5],[-5,-7],[-6,-8],[-10,-20],[-9,-29],[-2,-11],[1,-49],[-4,-140],[0,-1],[-8,-2],[-6,7],[-1,0],[-4,10],[-7,21],[-6,26],[-2,8],[-1,3],[-14,45],[-5,10],[-7,9],[-2,2],[-9,3],[-6,2],[-9,0],[-6,-4],[-4,-2],[-15,-22],[-13,-26],[-2,-4],[-1,-3],[-5,-17],[-8,-15],[-2,-3],[-18,-17],[-6,-2],[-20,14],[-12,8],[-4,0],[-2,0],[-2,0],[-5,-5],[-5,-7],[-4,-11],[-1,-2],[-19,-81],[-20,-49],[-8,-15],[-1,-2],[-11,-13],[-3,1],[-38,12],[-3,1],[-2,0],[-7,0],[-7,-9],[-5,-11],[-5,-29],[-2,-7],[-21,-81],[-9,-10],[-1,0],[-7,-3],[-3,-1],[-12,-3],[-7,-1],[-6,6],[-7,9],[-12,34],[-45,133],[-4,18],[-24,208],[-12,53],[-8,32],[-4,15],[-6,10],[-5,4],[-6,6],[-5,1],[-3,0],[-3,-3],[-13,-8],[-13,-16],[-14,-20],[-15,-24],[-5,-8],[-3,-11],[-11,-35],[-8,-41],[-3,-16],[-1,-8],[-6,-44],[-6,-20],[-8,-29],[-56,-161],[-2,-6],[-1,-2],[-9,-21],[-12,-22],[-18,-19],[-51,9],[-12,-3],[-15,-12],[-1,0],[-12,2],[-4,2],[-4,3],[-4,5],[-7,10],[-9,20],[-10,25],[-2,2],[-27,-10],[-13,-11],[-1,-1],[-10,-17],[-8,-27],[-5,-19],[-7,-17],[-2,-6],[-13,-21],[-12,-11],[-15,-3],[-9,-1],[-4,3],[-10,14],[-7,24],[-2,7],[-2,6],[-14,52],[-6,24],[-1,24],[0,70],[-2,15],[-11,55],[-10,31],[-4,4],[-7,7],[-8,-1],[-1,0],[-6,-2],[-8,-8],[-45,-77],[-6,-11],[-4,-9],[-29,-90],[-14,-30],[-8,-5],[-29,-7],[-10,-8],[-4,-4],[-8,-10],[-13,-17],[-12,-29],[-7,-32],[-4,-19],[0,-5],[-1,-5],[-3,-12],[-4,-20],[-2,-3],[-7,-9],[-5,-4],[-11,4],[-9,11],[-1,1],[-11,25],[-5,15],[-7,20],[-9,17],[-5,10],[-26,30],[-28,14],[-9,0],[-30,2],[-5,-2],[-2,-1],[-8,-16],[-8,-17],[-11,0],[-11,4],[-12,15],[-15,24],[-10,51],[-2,18],[0,1],[-1,4],[-8,44],[-2,4],[-17,44],[-5,8],[-1,1],[-4,-1],[-7,-1],[-6,-9],[-7,-29],[-6,-31],[-9,-36],[-1,-4],[-4,-11],[-7,-9],[-6,1],[-8,7],[0,1],[-8,10],[-6,14],[-5,35],[0,5],[-1,5],[-2,13],[0,1],[-4,9],[0,1],[-1,1],[-12,19],[-14,17],[-14,28],[-6,16],[-7,25],[-3,21],[0,96],[-1,42],[-2,21],[0,5],[-8,42],[-6,16],[-2,5],[-4,6],[-5,9],[-1,1],[-28,20],[-8,-2],[-3,-8],[-8,-27],[0,-3],[-7,-39],[0,-1],[-8,-36],[-7,-18],[-2,-4],[-29,-36],[-1,0],[-1,0],[-2,1],[-8,7],[-5,10],[-1,2],[-7,23],[-10,34],[-2,3],[-9,22],[-7,14],[-3,7],[-5,9],[-3,4],[-23,21],[-18,4],[-19,14],[-6,3],[-42,49],[-2,9],[-18,73]],[[23252,56473],[1,-54],[-4,-106],[-8,-33],[-13,-58],[-18,-36],[-17,-44],[-9,-36],[-11,-19],[-14,-51],[-30,-94],[-12,-44],[-17,-11],[-18,-54],[-20,-99],[-9,-62],[-10,-47],[-13,-51],[-1,-58],[16,-37],[-20,-113],[-5,-43],[-13,-40],[-13,-44],[-14,-47],[-15,-22],[-16,-84],[-18,-22],[2,-43],[-5,-48],[-14,-29],[-7,-33],[-9,-36],[-9,-40],[-6,-29],[-12,-84],[-1,-40],[-4,-51],[-12,-33],[-14,-51],[0,-47],[1,-55],[-8,-47],[-13,4],[-20,-11],[-17,-33],[-11,-47],[-15,-33],[-4,-58],[-1,-55],[1,-40],[1,-40],[-12,-15],[-16,-22],[0,-58],[2,-76],[-8,-37],[-7,-29],[-22,-18],[0,-55],[-3,-69],[11,-73],[-14,-43],[-15,-11],[-14,-8],[0,-43],[-9,-33],[-8,-40],[-5,-47],[-13,-19],[-15,-7],[-15,15],[-19,0],[-12,3],[-26,22],[-17,11],[-15,-11],[-10,-18],[-10,-26],[-7,-51],[0,-65],[-3,-69],[-11,-37],[-19,-22],[-11,-36],[-8,-44],[-13,-43],[-6,-37],[-15,-3],[4,-37],[-2,-43],[-12,-41],[-10,-21],[-20,-59],[-2,-72],[-29,-30],[-15,-43],[-8,-59],[-6,-51],[0,-40],[-2,-109],[0,-6],[-13,-493],[-4,-171],[-2,-124],[-3,-102],[0,-22],[-1,-25],[-2,-58],[-1,-84],[-1,-80],[-3,-131],[-11,0],[-13,4],[-20,0],[-12,0],[-19,3],[-32,4],[-2,-204],[0,-1],[-1,-97],[0,-1],[-1,-115],[-1,-176],[19,0],[34,0],[44,0],[-7,-331],[-4,-106],[-4,-205],[0,-6],[-3,-131],[-2,-91],[-4,-200],[-2,-66],[-6,-230]],[[22210,49121],[-23,43],[-9,-6],[-16,-12],[-17,24],[-16,-41],[-18,-2],[-21,-117],[19,-15],[5,-35],[-22,-50],[-21,-15],[-11,-54],[-14,-27],[-21,-57],[-11,-17],[-12,0],[-12,58],[-19,54],[-22,71],[-43,60],[-39,163],[13,103],[37,30],[13,23],[-2,51],[-14,95],[-12,35],[2,61],[-13,17],[-9,55],[-19,49],[-9,18],[7,29],[9,33],[0,66],[-8,42],[-10,23],[-11,-5],[-12,15],[-12,77],[-21,54],[-19,-4],[-21,-11],[-21,-71],[0,-40],[-34,-86],[-4,-36],[7,-47],[2,-28],[-12,-19],[-10,-35],[-21,-14],[-26,-17],[-17,-38],[-14,-23],[-6,-6],[-23,17],[-32,-22],[-31,-100],[-22,28],[-18,-41],[-22,-67],[-15,-53],[-10,-61],[-11,-24],[-7,-30],[15,-70],[-8,-26],[-15,-4],[-9,-29],[0,-62],[-19,-108],[-2,-44],[38,-66],[-15,-15],[-1,-43],[-9,-35],[-17,-6],[-22,-30],[-12,-28],[-3,-47],[2,-49],[0,-48],[-24,-48],[-11,-30],[-7,-36],[6,-65],[-26,-15],[-16,-26],[-14,-47],[-13,-8],[-24,11],[-8,6],[-51,-33],[-27,33],[-25,-45],[-38,-46],[-14,53],[-3,39],[2,45],[64,195],[-1,15],[-3,13],[-29,148],[-25,-7],[-19,12],[-17,16],[-19,-20],[-29,-44],[-23,-42],[-18,-22],[-22,5],[-27,-5],[-27,-14],[-9,1],[-11,49],[-15,17],[-19,-31],[-23,-43],[-24,-8],[-34,23],[-8,-105],[1,-67],[-13,4],[-5,0],[-10,1],[-14,-20],[-44,-146],[-6,-40],[10,-38],[-16,-38],[-14,2],[-18,20],[-24,58],[-33,59],[-10,-12],[-10,-42],[-14,-38],[-8,-25],[-11,-6],[-16,9],[-29,15],[-33,6],[-16,-13],[-9,-24],[-15,-8],[-2,-40],[-10,-72],[-14,-8],[-9,-24],[-30,-41],[-21,-33],[-28,-15],[-32,10],[-39,-49],[-12,4],[-9,32],[1,48],[14,64],[-3,19],[-8,32],[-33,33],[-22,40],[-28,3],[-20,51],[-18,-48],[-13,15],[-10,-36],[-38,0],[-21,-56],[-11,-70],[2,-79],[9,-54],[15,-28],[-4,-37],[-43,-76],[-17,20],[-7,7],[-24,31],[-27,-3],[-19,-57],[-4,-50],[-16,-13],[-6,-52],[2,-66],[-15,-15],[-26,-14],[-13,-18],[-22,38],[-10,-17]],[[19703,47453],[-21,52],[6,59],[-21,65],[-13,22],[-11,0],[-18,7],[-25,33],[-12,66],[-3,47],[-3,44],[1,43],[9,37],[-4,43],[-13,0],[-11,0],[-19,40],[-9,55],[-34,484],[-8,113],[-47,674],[-19,284],[-6,94],[-5,62],[-24,361],[-7,116],[0,142],[0,55],[0,368],[-2,94],[0,70],[-1,200],[-1,58],[0,80],[0,66],[0,124],[0,51],[-1,43],[-19,18],[-22,26],[-10,18],[-21,26],[-15,-4],[-20,-36],[-14,-22],[-12,18],[12,182],[22,335],[23,364],[9,138],[-50,8],[-17,0],[-18,20],[-10,12],[-2,8],[-10,62],[-9,29],[-11,54],[-10,40],[-9,41],[-6,54],[1,10],[1,32],[2,20],[5,40],[8,58],[3,51],[26,33],[-12,39],[-5,16],[-20,68],[0,1],[-9,33],[-11,40],[-13,29],[-22,62],[-60,167],[-28,80],[-35,99],[-13,32],[-39,121],[-32,87],[-12,37],[-3,10],[-12,29],[-55,172],[-20,61],[-60,186],[-23,73],[-12,40],[-15,44],[-23,76],[-16,50],[-180,555],[-48,149],[-77,237],[-116,356],[-220,681],[-121,379],[0,1],[-79,248],[-1,2],[-25,80]],[[7244,52352],[-18,-44],[-14,-33],[-12,-40],[-1,-76],[-14,-70],[-18,-43],[-19,-106],[-7,-29],[-7,-44],[-4,-43],[-17,-40],[-18,-121],[-16,-65],[-1,-55],[-10,-32],[-13,-26],[-9,-22],[-14,-69],[-20,-36],[-11,-77],[-13,-57],[0,-1]],[[6988,51223],[-1,1],[-12,17],[2,47],[6,44],[-11,11],[-10,51],[-33,80],[-2,37],[-5,40],[-35,3],[-18,-3],[-19,-59],[-17,-47],[-25,-51],[-30,-18],[-16,7],[-17,-40],[-11,-36],[-12,-33],[-15,-40],[-17,-15],[-13,-25],[-17,-55],[-12,-14],[-17,-30],[-18,0],[-15,4],[-19,-4],[-15,-7],[-12,-3],[-12,-4],[-17,7],[-17,11],[-10,-18],[-15,-22],[-20,-15],[-18,-10],[-18,3],[-20,0],[-13,-11],[-16,-22],[-10,40],[-13,41],[-5,58],[-18,43],[-13,19],[-14,7],[-18,-7],[-15,0],[-15,0],[-12,-29],[-20,-19],[-15,-18],[-15,-14],[-12,25],[-13,36],[-18,30],[-18,40],[-10,22],[-17,54],[-10,18],[-15,19],[-15,14],[-29,-4],[-18,26],[-12,66],[-35,43],[-20,26],[-18,-22],[-13,-18],[-13,-15],[-16,-25],[-15,-15],[-18,-4],[-23,-43],[-23,-26],[-25,-7],[-14,4],[-11,25],[-12,26],[-18,14],[-25,-36],[-19,-22],[-20,-22],[-12,-29],[-10,-26],[-32,-7],[-10,22],[-16,76],[-20,37],[-14,29],[-11,36],[-25,-14],[-24,-7],[-24,3],[-18,-11],[-15,-14],[-19,-11],[-23,25],[-11,11],[-16,-22],[-20,-51],[-12,-43],[-13,-51],[-12,-62],[-13,-8],[-15,-7],[-17,-14],[-17,0],[-17,0],[-12,7],[-12,4],[-10,-19],[-11,-29],[-20,7],[-18,-40],[-11,-7],[-12,-18],[-5,-36],[-12,-48],[-15,11],[-11,7],[-14,8],[-16,-8],[-23,-43],[-8,-33],[-11,-29],[-8,-29],[-15,-69],[-12,-15],[-13,-15],[-11,4],[-50,-73],[-8,-29],[-29,11],[-26,-22],[-3,-40],[-21,29],[-14,62],[-16,26],[-14,40],[-11,0],[-10,29],[-14,-22],[-1,-40],[-13,-55],[-12,-14],[-13,-4],[-13,-36],[-22,-8],[-19,-36],[-16,-11],[-88,-127],[-19,7],[-16,-7],[-15,-15],[-13,-7],[-18,-26],[-14,-25],[-11,-37],[-15,-18],[-20,-36],[-24,-48],[-19,4],[-11,-18],[-12,-18],[-27,0],[-14,18],[-18,-11],[4,-36],[-15,-51],[-21,-8],[-49,40],[-11,4],[-17,-18],[-17,-22],[-13,14],[-21,0],[4,-54],[-13,-55],[-21,-3],[-29,25],[-30,18],[-15,-14],[-17,3],[-12,22],[-26,22],[-20,22],[-32,51],[-5,58],[-13,40],[0,55],[-14,18],[-19,58],[-14,26],[-12,33],[-15,21],[-11,11],[-10,26],[-20,-18],[-14,-11],[-14,43],[-10,19],[-14,0],[-11,-11],[-20,7],[-15,7],[-18,11],[-11,15],[-9,22],[-1,0],[-16,7],[-14,44],[-9,36],[-5,62],[0,76],[-9,48],[-15,32],[8,51],[12,51],[6,59],[13,40],[12,40],[8,69],[-14,29],[5,58],[-30,26],[-16,-4],[-11,37],[-14,32],[-20,26],[-14,54],[-1,37],[3,44],[6,54],[-9,44],[-4,40],[4,65],[6,51],[-5,48],[5,62],[5,62],[7,65],[-20,40],[-11,22],[-19,11],[-11,14],[-12,22],[-5,40],[3,48],[-13,40],[-32,94],[-7,55],[-12,47],[-6,62],[-12,40],[-13,11],[-22,33],[-14,33],[-12,33],[-5,58]],[[3303,52807],[5,15],[64,251],[-24,215],[-14,125],[-102,139],[17,286],[9,122],[7,92],[8,103],[9,251],[-58,61],[6,68],[2,29],[4,47],[-17,170],[3,82],[3,81],[33,35],[62,63],[115,304],[13,40],[94,295],[-2,36],[-7,148],[-7,155],[-3,64],[-8,167],[4,18],[8,41],[9,36],[-1,56],[-6,16],[-18,24],[-3,2],[-12,1],[-9,36],[-3,42],[-2,21],[-2,43],[-5,54],[-18,41],[-6,4],[-4,1],[-7,7],[-9,8],[-8,15],[-11,55],[-11,66],[-4,24],[-4,12],[-3,13],[-1,22],[3,26],[1,22],[-7,53],[-9,39],[-7,62],[-1,40],[7,12],[3,2],[19,7],[3,1],[19,-18],[8,-7],[23,7],[3,5],[8,10],[8,13],[1,4],[14,45],[8,38],[4,19],[10,19],[5,17],[9,26],[13,29],[3,9],[4,13],[14,25],[6,22],[1,3],[5,23],[19,46],[4,5],[8,17],[20,32],[8,10],[2,2],[4,84],[13,251],[15,46],[55,175],[21,66],[85,63],[39,215],[9,-2],[47,-11],[6,-1],[24,-6],[9,212],[4,74],[24,-2],[49,-5],[11,70],[7,46],[1,4],[21,134],[3,61],[16,0],[19,-6],[18,-25],[36,-85]],[[78210,54562],[-17,6],[-3,1],[-3,12],[-1,7],[-1,13],[-2,25],[-4,19],[-3,15],[-1,3],[-1,1],[-17,13],[-50,-63],[-95,-66],[-19,-20],[-2,-3],[-4,-20],[-7,-31],[6,-43],[6,-59],[2,-35],[1,-5],[3,-40],[-9,-29],[-6,40],[-15,8],[-17,14],[5,-47],[2,-44],[-14,-18],[-21,11],[-17,7],[-16,-7],[-19,7],[-12,-47],[-11,-33],[-15,29],[-27,4],[-18,3],[-10,19],[-20,-22],[-13,-66],[6,-62],[-7,-69],[5,-51],[1,-80],[2,-149],[1,-51],[0,-88],[-64,-32],[-11,-4],[-12,-40],[-4,-77],[-1,-36],[-6,-127],[-21,-37],[-14,-3],[-17,-11],[-16,-4],[-23,-22],[-10,-22],[-3,-51],[-2,-36],[12,-36],[11,-41],[13,-32],[-3,-51],[1,-4],[21,-76],[45,-84],[9,-40],[-2,-48],[-3,-98],[4,-62],[7,-54],[6,-55],[12,-102],[11,-51],[21,-58],[19,-55],[9,-25],[16,-18],[12,-15],[16,-66],[2,-69],[-1,-51],[2,-51],[7,-36],[14,-29],[4,-62],[5,-58],[-14,-139],[-55,-182],[-11,-33],[-12,-25],[-19,-22],[-30,-29],[-18,-15],[-58,-40],[-11,-11],[-49,-58],[-21,-33],[-22,-28],[-56,-77],[-33,-37],[-26,-40],[-9,-76],[-7,-73],[-40,-69],[-27,-44],[-14,-22],[-2,-13],[-10,-70]],[[77275,50506],[-57,43],[-303,273],[-14,11],[-198,179],[-13,14],[-18,11],[6,-69],[7,-69],[10,-135],[0,-7],[12,-124],[16,-189],[5,-55],[19,-197],[0,-3],[8,-128],[79,-848],[42,-462],[5,-44],[14,-142],[4,-44],[7,-73],[-10,-36],[-41,-138],[-28,-99],[-37,-120],[-23,-69],[-47,-171],[-24,-84],[-46,-164],[-2,-5],[-51,-184],[-2,-7],[-81,-273],[-99,-339],[-40,-135],[-54,-189],[-169,-590],[-54,-186],[-17,-58],[-182,-593],[-28,-102],[-38,-139],[-183,-291],[-66,-106],[-12,-18],[-81,-131],[-14,-22],[-57,-91],[-3,-4],[-158,-251],[-18,-29],[-47,-73],[-89,-142],[-142,-225],[-96,-149],[0,-1],[-50,-80],[-200,-317],[-46,-72],[-19,-37],[-66,-102],[-106,-167]],[[74380,42459],[-13,43],[-93,281],[-68,211],[-6,280],[-2,219],[0,4],[-6,433],[2,65],[2,55],[-15,0],[-13,-4],[7,124],[1,45],[0,6],[-4,84],[27,7],[-1,77],[-7,80],[8,156],[-13,32],[-6,14],[0,2],[0,94],[15,51],[-4,226],[-16,626],[-2,95],[-5,339],[-11,43],[-38,215],[-16,87],[-22,146],[-41,317],[-34,240],[-41,262],[-21,55],[-118,193],[-38,62],[-45,69],[-46,76],[-30,48],[-152,240],[-61,98],[-6,13],[-39,78],[-90,124],[-46,73],[-65,106]],[[19703,47453],[-13,-21],[-8,-53],[-15,-54],[-41,40],[-35,18],[-23,-5],[-14,-35],[-21,-23],[-10,-5],[-3,-64],[-9,-24],[-43,-17],[-15,-21],[-53,47],[-45,14],[-36,11],[-31,-1],[-13,-26],[-1,-53],[-7,-31],[-32,-33],[-37,-36],[-20,-1],[-21,-53],[-11,-65],[4,-40],[-14,-40],[-4,-52],[-17,-50],[-12,-21],[-18,1],[-22,-16],[-21,-1],[-18,5],[4,47],[-2,24],[-6,33],[-2,69],[-23,-21],[-5,4],[-8,6],[-10,65],[-14,-3],[-5,-15],[-13,-54],[-6,-37],[-8,-38],[-8,-30],[-12,-10],[-26,1],[-29,-17],[-7,-3],[2,-82],[-7,-50],[-25,-44],[-7,-54],[-16,-41],[-38,17],[-19,-33],[-8,-8],[-32,19],[-19,-9],[-12,14],[-3,21],[-6,34],[-5,13],[-16,-42],[-24,-67],[-9,-1],[-10,31],[9,39],[3,47],[1,92],[-10,78],[-6,38],[-42,40],[-16,8],[-21,-4],[-13,-49],[-30,-44],[-18,-4],[11,-82],[-7,-112],[-10,-18],[-48,-13],[-9,-36],[-13,-54],[-8,-41],[-1,-21],[16,-62],[48,-77],[15,-4],[7,-40],[3,-76],[-16,-33],[-13,-66],[-6,-39],[-14,-52],[-26,-70],[-11,-47],[-14,-33],[-26,-107],[-17,22],[3,38],[-4,41],[-7,47],[-4,48],[-19,-60],[-50,-54],[-6,-39],[-11,-18],[-13,15],[-11,-69],[-36,-16],[-10,-28],[-11,-15],[-17,24],[-18,16],[-23,-28],[-34,39],[-14,-17],[-11,16],[-15,-6],[-18,-65],[-15,-58],[10,-55],[-6,-60],[-16,-12],[-12,5],[-15,-7],[-10,-36],[1,-58],[-11,-24],[-6,-32],[-5,-62],[-14,7],[-13,-4],[-8,-41],[5,-45],[-5,-34],[-11,-3],[-11,4],[-18,27],[-12,39],[-14,-13],[-21,14],[-6,14],[-28,33],[-12,4],[-11,-57],[2,-80],[-1,-56],[7,-74],[-3,-27],[-5,-30],[-11,-48],[-3,-43],[-11,-44],[-33,-58],[-17,11],[-10,-3],[-24,11],[-24,17],[-10,-7],[-19,-7],[-28,-36],[-15,21],[-40,-84],[-64,-7],[-18,10],[-13,-6],[-1,34],[6,53],[24,91],[-1,40],[-8,55],[38,189],[-3,80],[7,26],[4,18],[-15,58],[-28,47],[-54,62],[-281,-239],[-983,-835],[-372,-306],[-596,-490],[-294,-242]],[[37111,47565],[-2,40],[-146,27],[-77,14],[-24,4],[-21,4],[-36,6],[-362,62],[-880,151],[-109,19],[-203,35],[-20,3],[-1449,194]],[[85536,39571],[-23,-29],[-4,13],[-24,67],[23,37],[39,22],[31,-59],[-42,-51]],[[86177,38439],[-10,-47],[0,-3],[-5,-53],[-1,-13],[0,-44],[-2,-58],[-2,-66],[0,-7],[-6,-37],[-7,-32],[-11,-51],[-2,-11],[-10,-40],[-8,-44],[-6,-33],[-6,-73],[-2,-73],[-2,-72],[1,-48],[0,-1],[1,-35],[2,-40],[-1,-58],[-5,-2],[-9,-2],[0,-62],[-33,-58],[-97,-109],[-33,-37],[-69,-80],[-13,-15],[-98,-111],[-98,-111],[-70,-76],[-18,-22],[-57,-65],[-18,-22],[-15,-15],[-20,-22],[-22,-25],[-15,-18],[-20,-22],[-19,-22],[-16,-18],[-6,32],[-17,-10],[-3,-2],[-11,-9],[-13,54],[-18,-22],[-30,26],[-16,-26],[-20,-29],[-26,-3],[-79,-4],[-26,0],[-16,0],[-45,-4],[-15,0],[-33,-3],[-98,-4],[-33,-4],[-86,-3],[-256,-15],[-85,-3],[-58,-4],[-177,-11],[-60,-4],[-38,-3],[-54,-8],[-58,-3],[-36,-7],[4,-48],[3,-47],[-1,-62],[0,-55],[1,-50],[0,-12],[-2,-43],[-19,-4],[-20,-11],[-49,-18],[-17,-7],[-4,-2],[-30,-13],[-29,-12],[-74,-32],[-285,-120],[-82,-33],[-15,-7],[-13,-7],[-42,-18],[-115,-48],[-39,-14],[0,-128],[4,-375],[0,-65],[-18,-4],[-63,-14],[-191,-44],[-63,-15],[-127,-25],[-37,-4],[-243,-43],[-246,-48],[-162,-29],[-29,-4],[-51,-8],[-36,-6],[-29,-7],[-2,-1],[-30,-3],[-32,-7],[-70,-15],[-21,-4],[-15,-3],[-38,-7],[-13,-8]],[[81602,34987],[0,2],[3,25],[2,89],[1,47],[2,48],[1,11],[3,7],[4,5],[2,4],[34,47],[14,16],[2,0],[3,0],[21,-14],[20,-13],[6,-4],[8,11],[18,51],[3,13],[2,17],[1,10],[1,12],[3,17],[20,78],[6,18],[1,1],[21,56],[53,125],[5,9],[3,2],[2,1],[1,0],[14,-7],[7,-12],[1,-3],[19,-30],[13,-14],[16,-14],[33,-20],[24,-12],[18,0],[1,0],[1,1],[10,7],[1,1],[3,4],[2,2],[2,9],[2,9],[-1,20],[0,5],[-1,8],[-3,14],[-1,5],[-1,2],[-7,25],[-7,19],[-4,12],[-1,3],[-3,14],[-2,18],[0,18],[20,112],[6,31],[0,3],[10,45],[9,40],[7,52],[1,1],[2,21],[1,1],[0,3],[3,49],[0,47],[-1,0],[-30,-6],[-204,-41],[-122,-22],[-311,-63],[-32,-6],[3,229],[0,11],[8,583],[2,54],[5,368],[1,131],[5,222],[7,401],[6,464],[1,147],[3,113],[0,8],[6,484],[3,160],[0,1],[3,199],[2,160],[4,311],[1,35],[21,1559],[7,509],[1,71],[4,250],[4,298],[1,81],[3,69],[6,51],[12,58],[5,40],[16,47],[-17,84],[-13,33],[-16,36],[-9,44],[-16,55],[-18,91],[-2,43],[-3,62],[0,51],[1,88],[-22,76],[-5,47],[4,48],[3,105],[8,69],[0,106],[-3,66],[-1,131],[-2,58],[-5,33],[-2,40],[-3,62],[7,62],[-7,36],[-13,40],[-26,84]],[[81343,44793],[40,0],[32,-4],[37,11],[31,40],[56,-47],[31,-29],[26,-26],[31,-33],[36,-29],[27,-7],[42,-22],[24,4],[17,36],[20,51],[35,18],[25,33],[31,-22],[16,77],[39,-73],[0,105],[44,-21],[-6,105],[7,77],[10,73],[12,80],[17,32],[30,51],[23,84],[7,62],[20,95],[34,125],[1,6],[14,65],[4,15],[15,51],[24,-34],[7,-10],[4,-91],[4,-27],[12,-75],[27,-47],[29,-40],[31,-120],[26,-106],[32,-55],[32,-29],[32,-58],[7,-84],[8,-83],[6,-99],[7,-113],[10,-83],[16,-77],[30,-105],[46,-102],[28,-66],[32,-80],[33,-138],[19,-91],[21,-88],[25,-69],[31,-102],[12,-106],[6,-54],[1,-106],[9,-189],[8,-84],[8,-105],[12,-121],[20,-138],[10,-138],[6,-124],[9,-95],[26,-116],[20,-95],[20,-55],[29,-72],[30,-73],[21,-33],[47,-84],[30,-58],[36,-51],[21,-22],[25,-44],[29,-83],[30,-88],[40,-80],[23,-58],[23,-76],[33,-135],[35,-66],[32,-36],[29,-22],[40,-36],[40,-37],[30,-36],[49,-80],[22,-59],[33,-58],[55,-54],[53,-48],[37,-43],[21,-59],[-6,-91],[-16,37],[-36,-19],[-37,22],[-28,77],[-22,-102],[1,-113],[-29,-146],[-31,-18],[-38,-18],[-27,-44],[-25,-73],[-44,-51],[-37,0],[2,-40],[28,-29],[26,7],[52,110],[19,11],[32,14],[38,-14],[-3,-146],[-14,-91],[-9,-84],[25,-54],[-10,-110],[25,-72],[-13,-88],[-11,-120],[-22,-138],[-6,-219],[-8,-171],[-9,-124],[9,-167],[5,-9],[7,-17],[0,48],[0,91],[10,127],[12,106],[20,167],[12,189],[27,-10],[-21,120],[27,102],[27,51],[-12,72],[0,95],[-21,22],[1,95],[-7,138],[23,62],[-6,102],[20,113],[30,11],[27,58],[-5,109],[22,37],[31,-33],[35,-66],[52,-36],[40,-4],[82,7],[39,8],[43,-15],[50,-58],[29,-58],[39,-62],[23,-26],[20,-73],[-29,-80],[-54,-123],[64,-22],[14,-128],[0,-189],[5,-117],[-17,-116],[-22,-98],[-21,-124],[-22,-51],[-10,-124],[-11,-62],[28,-116],[-28,-95],[-15,-102],[-4,-109],[14,-124],[12,-19],[12,-17],[-17,116],[0,84],[18,95],[58,203],[-26,84],[0,106],[20,83],[23,74],[34,182],[6,1],[4,1],[9,3],[9,-22],[40,-108],[38,-108],[9,-79],[10,-46],[13,0],[2,67],[-25,125],[-51,187],[-37,77],[14,94],[-7,40],[-13,73],[33,109],[-33,233],[26,0],[51,30],[38,29],[50,33],[26,18],[31,22],[34,29],[23,3],[35,-18],[37,-22],[37,-11],[38,26],[8,-40],[13,-66],[35,-29],[39,-58],[36,-58],[39,-19],[30,-40],[28,-29],[44,-65],[24,-48],[32,-65],[34,-51],[22,-11],[43,-84],[21,-36],[33,-51],[50,-66],[31,-29],[20,-58],[4,-98],[-16,-99],[-21,-54],[-27,-55],[-22,-29],[-28,-22],[-17,-51],[-8,-33],[-48,-196],[-17,-37],[-26,-98],[43,29],[19,44],[21,76],[16,109],[24,59],[36,58],[33,-4],[-7,-98],[-10,-98],[-9,-91],[7,-91],[-15,-120],[7,-143],[-10,-167],[0,-138],[4,-106],[17,-62],[18,-80],[3,-78],[2,-60],[-10,-153],[2,-5],[21,-79],[15,157],[3,127],[32,33],[-25,84],[-20,47],[-13,62],[-8,62],[-1,80],[10,127],[5,131],[-14,106],[18,124],[-1,142],[10,87],[29,66],[33,-51],[-5,98],[-17,62],[7,105],[0,73],[20,91],[20,128],[-1,98],[6,106],[8,83],[26,4],[30,4],[41,40],[23,36],[25,77],[48,14],[56,-40],[12,7],[-2,-54],[-17,-18],[0,-84],[6,-113],[24,-26],[-11,77],[0,102],[17,62],[5,69],[26,106],[20,58],[22,58],[20,62],[17,69],[20,88],[18,87],[25,36],[12,-43],[15,-33],[22,40],[31,37],[8,10],[-10,-4],[-35,-14],[-16,18],[-21,80],[2,84],[11,80],[19,124],[21,95],[29,11],[45,47],[46,-11],[22,0],[28,-26],[20,26],[23,15],[26,-37],[-24,-84],[-2,-76],[-15,-29],[13,-84],[6,77],[12,21],[0,62],[23,59],[14,7],[32,-40],[18,-84],[-8,-51],[7,-76],[2,61],[9,33],[17,-51],[39,-54],[28,-62],[17,-33],[35,-62],[42,-95],[26,-127],[20,-76],[-22,-66],[-8,-102],[-2,-98],[-31,-77],[-31,4],[26,-84],[-22,-113],[-20,-76],[13,-109],[5,-117],[-27,-98],[-30,-109],[-33,-55],[-25,-62],[-33,-44],[-34,-32],[-25,-48],[-3,-69]],[[83798,51405],[-8,-33],[-11,-54],[-4,-44],[-15,-55],[-15,-18],[-16,-29],[-6,-36],[0,-70],[6,-40],[3,-58],[-9,-62],[-9,-36],[-9,-40],[-12,-37],[-10,-12],[-6,-9],[-21,-31],[-14,-21],[-16,-15],[-18,-3],[-13,-2],[-5,4],[-4,2],[-3,4],[-2,2],[-2,2],[-4,3],[-1,1],[-6,3],[-2,1],[-3,1],[-15,3],[-6,2],[-3,0],[-11,-6],[-5,-4],[-12,-18],[-2,-3],[-14,-23],[-20,-31],[-87,-84],[-4,-5],[-2,-2],[-13,-19],[-13,-21],[-9,-18],[-8,-16],[-3,-6],[-9,-20],[-66,-179],[-5,-23],[-4,-20],[-2,-13],[0,-27],[3,-19],[6,-30],[2,-6],[2,-8],[2,-8],[2,-7],[3,-28],[2,-24],[0,-12],[1,-50],[-1,-17],[-1,-26],[-1,-19],[-3,-20],[-4,-24],[-1,-3],[-4,-20],[-6,-27],[-5,-24],[-4,-16],[-3,-10],[-12,-12],[-18,-11],[-14,-1],[-1,0],[-6,-3],[-5,-4],[-7,-6],[-8,-10],[-3,-4],[-36,-76],[-13,-28],[-12,-27],[-42,-101],[-7,-19],[-6,-21],[-6,-82],[-3,-27],[-17,-230],[0,-7],[-2,-39],[0,-5],[-3,-55],[-14,-227],[-1,-9],[-4,-5],[-43,-71],[-4,-9],[-3,-13],[-1,-8],[0,-2],[-2,-10],[-1,-42],[4,-54],[2,-8],[1,-3],[2,-4],[1,-6],[7,-41],[6,-57],[2,-10],[1,-12],[0,-29],[0,-11],[-10,-282],[-2,-25],[0,-1],[0,-2],[-4,-25],[-68,-212],[-9,-14],[-44,-34],[-9,-3],[-4,4],[-16,32],[-7,8],[-11,5],[-1,1],[-1,0],[-8,1],[-1,0],[-8,-11],[-1,-2],[0,-1],[1,-15],[2,-159],[0,-5],[2,-8],[0,-2],[5,-27],[10,-60],[0,-6],[1,-9],[0,-40],[1,-12],[11,-78],[23,-84],[6,-23],[0,-4],[8,-98],[8,-98],[33,0],[3,-9],[37,-107],[1,-4],[57,-103],[9,-7],[83,-56],[1,0],[2,1],[3,-5],[23,-49],[14,-26],[12,-10],[7,-6],[25,-8],[7,-6],[13,-9],[12,-17],[14,-21],[0,-1],[9,-31],[0,-1],[4,-23],[3,-12],[4,-14],[52,-157],[1,-3],[34,-83],[0,-2],[2,-3],[9,-14],[0,-13],[1,-25],[2,-28],[0,-6],[8,-90],[4,-5],[0,-12],[13,-36],[19,-28],[-2,-51],[-10,0],[-4,2],[-8,4],[-12,0],[-9,-17],[10,-28],[0,-12],[0,-27],[0,-33],[-13,19],[-6,9],[-12,16],[-10,0],[0,-44],[7,-23],[8,0],[2,0],[16,0],[7,-17],[0,-56],[-8,-35],[-1,-4],[0,-4],[0,-63],[-2,-78],[-5,-56],[1,-45],[1,-18],[0,-4],[2,-28],[0,-67],[0,-49],[1,-4],[2,-9],[1,-3]],[[83323,45350],[-39,-164],[40,-51],[4,-117],[-38,-25],[-14,-87],[-1,-84],[0,-77],[-8,-58],[-22,-40],[-23,-98],[-37,-58],[-3,-70],[-26,-83],[-11,-99],[-46,11],[-32,18],[-27,4],[-34,26],[-29,76],[-7,87],[14,88],[-22,105],[-16,88],[-31,62],[-33,83],[-36,88],[-19,58],[-18,26],[28,-146],[28,-84],[71,-215],[9,-153],[0,-116],[6,-91],[-25,-15],[-35,77],[-36,76],[-22,73],[-36,58],[-26,69],[3,88],[-5,15],[-20,65],[-41,75],[-7,12],[-7,17],[-28,63],[-19,40],[-8,15],[-3,37],[-6,54],[-9,80],[-14,99],[-6,27],[-17,85],[-29,102],[-12,55],[9,106],[-4,29],[0,1],[-11,71],[-23,62],[-12,102],[-3,4],[-32,55],[-29,-4],[-27,-11],[15,153],[2,153],[-18,137],[-1,9],[-20,94],[-19,91],[-29,84],[-27,102],[-10,88],[-3,32],[-24,160],[-34,77],[-32,47],[-26,142],[-40,47],[-38,55],[-27,40],[-29,51],[-35,36],[-35,48],[-20,43],[-33,33],[-31,22],[-43,26],[-23,-19],[-22,11],[-19,55],[-21,113],[15,113],[-24,116],[-19,37],[-17,14],[-30,0],[-31,0],[-29,55],[-2,-18],[-3,-18],[0,-1],[1,0],[5,-11],[6,-12],[12,-24],[39,-37],[11,-10],[36,0],[7,-34],[11,-54],[-1,-19],[-1,-35],[-26,-44],[6,-49],[7,-57],[17,-120],[-52,33],[-12,87],[-15,48],[-20,33],[-16,112],[-45,106],[-12,47],[-16,39],[-4,9],[0,-9],[-1,-14],[0,-8],[-1,-9],[5,-52],[3,-25],[5,-11],[14,-36],[24,-44],[3,-25],[4,-22],[37,-146],[19,-91],[18,-55],[10,-18],[41,-73],[47,-120],[47,26],[20,-58],[30,-22],[43,-66],[33,-80],[28,-69],[43,-84],[3,-98],[-11,-106],[4,-91],[41,-62],[31,-51],[26,-47],[13,-87],[1,-11],[17,-66],[31,-102],[27,-84],[9,-58],[0,-76],[0,-4],[2,-91],[-7,-80],[-17,-16],[-6,-6],[-31,4],[-29,17],[-1,1],[-42,29],[-19,-40],[10,-95],[-24,-109],[-16,-149],[-13,-117],[-17,-83],[-31,-81],[-16,-94],[-17,-84],[-14,-58],[-20,-44],[-37,-40],[-37,-80],[-33,-26],[-26,-21],[-34,-15],[-30,-25],[-46,-11],[-35,32],[-28,11],[-33,11],[-25,4],[-26,11],[-23,25],[-45,51],[-23,29],[-38,-18],[-41,-7],[-19,-7],[-33,36],[-37,26],[-31,47],[-28,11],[-18,62],[21,51],[22,62],[-11,3],[-16,4],[-8,-19],[-15,-32],[-11,-24],[0,-1],[-5,-12],[-25,-65],[34,-58],[-23,-73],[-38,-55],[11,-142]],[[81133,44767],[-3,-36],[-5,-42],[-25,-127],[-4,-21],[-15,-36],[-18,-42],[-8,-21],[-18,2],[-5,1],[-17,-10],[-23,-39],[-11,-31],[-9,-51],[-5,-45],[-2,-12],[-7,-10],[-1,0],[-13,11],[-3,2],[-29,85],[-29,98],[-5,18],[-5,4],[-4,3],[-6,5],[-16,-21],[-4,-6],[-6,1],[-4,1],[-4,1],[-2,2],[-20,19],[-17,27],[-1,3],[-21,64],[-10,6],[-5,-9],[-2,-23],[-1,-24],[-7,-18],[-7,-14],[-13,-30],[-31,-72],[-35,-82],[-1,-2],[-18,-34],[-12,-23],[-11,4],[-12,51],[-7,62],[-15,40],[-10,22],[-15,32],[-19,11],[-20,26],[-15,33],[-11,58],[-7,40],[-1,36],[2,80],[-8,41],[-6,47],[-2,44],[6,131],[9,36],[7,44],[9,58],[-36,58],[-13,18],[-188,292],[-20,33],[-96,149],[-31,47],[-103,160],[-190,295],[-65,99],[-46,72],[-69,110],[-80,123],[-14,26],[-72,113],[-33,51],[-21,33],[-19,29],[-27,40],[-23,36],[-101,160],[-110,168],[-133,211],[-71,113],[-30,47],[-3,5],[-45,75],[-45,88],[-11,19],[-10,17],[-48,84],[-12,25],[-60,110],[-281,513],[-37,69],[-33,58],[-76,150],[-79,149],[-75,135],[-81,153],[-26,43],[-71,124],[-62,113],[-77,138],[-28,51],[-36,59],[-24,43],[-19,37],[-37,69],[-21,36],[-35,66],[-19,33],[-36,61],[-15,22],[-20,33],[-108,149],[-8,11],[-61,88],[-35,62]],[[26547,48992],[-106,10],[-784,74],[-215,21],[-971,123],[-171,22],[-539,69],[-67,11],[-67,11],[-147,24],[-86,20],[-117,33],[-110,29],[-68,-6],[-33,1],[-53,16],[-61,-42],[-36,-48],[-20,-50],[-28,-38],[-19,-11],[-15,-11],[-34,-24],[-60,-23],[-92,-74],[-12,-13],[-22,-103],[-19,-43],[-18,-12],[-25,-57],[-12,0],[-16,-1],[-12,11],[-10,27],[-35,58],[1,60],[-5,11],[-19,48],[-12,0],[-15,-23],[-21,-12],[-10,-23],[-24,3],[-8,74],[-27,39],[-15,31],[-37,-2],[-11,-21],[-17,-3],[-2,-77],[-18,-7],[-17,27]],[[13692,42197],[-747,-52],[-260,-18],[-452,-31],[-1,0],[-3,0],[-19,-1],[-316,-22],[-774,-46],[-133,-7],[-41,-3],[-16,-1],[-17,-1],[-275,-16],[-35,-2],[-1134,-66]],[[9469,41931],[-15,54],[-10,48],[-8,40],[-14,44],[-14,14],[-18,4],[-15,-18],[-15,10],[-15,8],[-19,18],[-15,25],[-21,15],[-9,25],[-13,0],[-18,-14],[-11,7],[-16,-11],[-15,26],[-13,11],[-10,47],[-6,44],[-12,29],[-20,0],[-15,-18],[-17,-19],[-13,-54],[-11,-15],[-7,-47],[1,-58],[-8,-55],[-14,-36],[-12,-8],[-13,8],[-10,51],[-5,51],[3,58],[1,62],[-6,51],[-9,51],[-10,62],[-18,40],[-12,32],[17,40],[9,26],[16,25],[9,40],[6,48],[0,40],[7,73],[-9,54],[-16,37],[-15,40],[-10,29],[-15,40],[-17,51],[-16,36],[-16,44],[-6,33],[-7,36],[-13,33],[-13,36],[-13,48],[-11,54],[-8,66],[-13,51],[-20,11],[-15,29],[-14,40],[-21,15],[-14,3],[-17,22],[-17,-7],[-13,-8],[-18,15],[-26,-11],[-21,-14],[-14,-8],[-13,33],[-9,40],[-12,51],[-6,62],[0,40],[-13,36],[-9,51],[-11,59],[-12,36],[-15,29],[-2,51],[3,66],[14,69],[6,40],[4,51],[18,44],[-6,47],[-3,40],[-15,44],[-12,47],[-15,36],[-9,22],[-7,59],[5,43],[10,40],[-1,44],[-14,4],[-17,11],[-11,3],[-21,0],[-12,-3],[-12,3],[-15,40],[-10,48],[-10,51],[-6,36],[-5,40],[-18,4],[-14,30],[-1,2],[-9,30],[-10,40],[-17,51],[3,54],[4,48],[3,47],[2,47],[-13,48],[-4,36],[-7,29],[-11,51],[-18,18],[-11,4],[-13,-4],[-13,22],[-13,40],[-16,22],[-13,-4],[-16,11],[-10,51],[-9,48],[-10,29],[-10,43],[-19,30],[-17,25],[-18,29],[-15,4],[-16,-8],[-11,4],[-11,11],[-12,4],[-14,18],[-12,18],[-19,26],[-13,36],[-18,33],[-9,58],[-2,58],[15,22],[9,51],[13,44],[9,40],[-14,47],[-10,48],[1,47],[-2,51],[-16,33],[-9,36],[-3,80],[-2,32],[-2,2],[1,15],[8,146],[-1,14],[-5,8],[-42,2],[-2,0],[-3,5],[-5,10],[-10,43],[-9,27],[-1,1],[-7,12],[-4,-1],[-1,-4],[-3,-51],[2,-9],[9,-26],[1,-4],[17,-64],[1,-65],[-1,-8],[-4,-4],[-13,-11],[-4,0],[-3,1],[-5,1],[-2,1],[-12,20],[-14,19],[-15,-3],[-4,-4],[-12,-12],[-4,-8],[-6,-17],[-2,-14],[-3,-46],[-2,-40],[-3,-13],[-3,-4],[-7,0],[-3,2],[-13,36],[-2,5],[-6,42],[-1,5],[-3,95],[-3,22],[-18,82],[-1,8],[-10,40],[0,1],[-8,19],[20,49],[0,1],[2,1],[10,8],[3,6],[0,4],[3,13],[4,16],[1,22],[0,3],[-3,16],[-20,95],[-9,29],[-3,8],[-4,13],[-2,0],[-10,4],[-1,0],[-8,-17],[-1,-5],[-5,-23],[-3,-6],[-2,-4],[-7,-15],[-19,-19],[-34,-56],[-11,3],[-43,20],[-2,1],[-1,0],[-4,11],[-6,17],[-4,15],[-18,68],[-7,25],[1,23],[0,1],[5,9],[52,22],[29,-11],[10,24],[1,2],[28,96],[6,21],[2,34],[0,4],[-6,23],[-16,12],[-5,7],[-5,7],[-9,13],[-1,20],[-1,8],[5,31],[4,19],[2,11],[5,90],[-14,39],[-19,17],[-17,15],[-2,7],[-4,15],[-3,23],[-1,10],[-3,23],[-5,18],[-5,15],[-7,22],[-39,112],[-15,-20],[-6,-44],[2,-36],[1,-7],[7,-52],[1,-40],[-2,-36],[-11,-33],[-16,-36],[-16,-15],[-9,-25],[-22,-48],[-13,8],[-12,32],[-6,59],[-9,54],[-11,33],[-17,22],[-8,29],[-11,18],[-18,-14],[-13,-8],[-16,-32],[-18,29],[-17,25],[-20,-7],[-15,33],[-19,-15],[-4,-51],[-8,-54],[-16,-11],[-12,7],[-22,15],[-17,21],[-19,22],[-15,-40],[-13,-14],[-16,-22],[-15,-48],[-11,19],[-13,0],[-16,3],[-16,8],[-15,0],[-14,-4],[-13,7],[-9,26],[-10,25],[-13,0],[-14,-3],[-14,10],[-21,-10],[-18,-22],[-16,-51],[-13,-29],[-11,-19],[-10,-36],[-4,-36],[-9,-26],[-14,-36],[-14,-33],[-9,-33],[-8,-29],[-20,47],[-18,44],[-10,26],[-8,47],[-8,36],[-16,15],[-6,47],[-13,48],[-11,40],[-19,43]],[[6587,47851],[8,66],[2,36],[1,44],[13,51],[6,62],[11,29],[9,25],[6,30],[5,43],[0,44],[2,62],[14,47],[6,33],[-10,36],[-5,69],[5,55],[3,44],[1,58],[12,11],[19,29],[16,47],[13,41],[10,43],[12,15],[13,14],[20,29],[14,8],[12,14],[11,26],[19,7],[14,51],[20,29],[11,48],[-2,47],[2,51],[2,36],[7,66],[-19,43],[-13,51],[-14,40],[-17,11],[-13,-43],[-8,-51],[-15,0],[-20,18],[-25,7],[-24,37],[-16,32],[-14,37],[14,40],[11,58],[9,44],[5,58],[19,44],[11,22],[1,54],[19,26],[12,11],[15,21],[20,22],[15,29],[14,19],[16,14],[5,55],[11,47],[0,55],[9,25],[12,26],[22,7],[16,29],[19,37],[10,21],[18,33],[11,18],[16,19],[12,11],[11,25],[15,55],[9,51],[12,32],[9,33],[2,48],[4,58],[16,36],[9,29],[5,33],[3,73],[0,51],[-12,36],[-7,62],[4,37],[-4,36],[-14,11],[-14,11],[-13,29],[-12,51],[-7,33],[-15,18],[-18,18],[-17,11],[-6,12],[-5,10]],[[88460,53458],[-14,-105],[-22,76],[-42,-18],[-17,-1],[-19,-2],[-2,56],[-2,38],[10,65],[3,15],[-26,44],[6,11],[16,29],[32,-11],[30,-33],[24,-21],[27,-113],[-4,-30]],[[86984,52239],[10,25],[32,26],[24,-117],[29,-65],[20,-91],[25,-28],[2,-1],[24,32],[30,-22],[4,3],[40,30],[-37,76],[-7,15],[-30,-14],[-14,15],[-19,21],[-10,46],[-19,96],[-5,18],[-24,102],[-2,3],[-35,37],[-24,69],[13,72],[3,20],[5,91],[1,10],[18,81],[46,80],[22,-19],[38,-80],[34,22],[30,4],[25,11],[29,54],[2,1],[26,14],[26,-58],[38,-4],[-28,62],[-1,4],[-11,34],[-3,9],[-23,44],[-51,-40],[-31,-36],[-28,14],[-36,18],[-22,91],[-25,11],[-28,29],[-19,-76],[-46,-33],[-5,98],[-19,-10],[-8,98],[4,113],[32,51],[-20,105],[32,37],[35,109],[46,4],[-26,98],[-18,76],[-14,-65],[-21,-22],[-6,102],[-9,91],[13,106],[13,145],[37,58],[42,44],[40,40],[49,-18],[48,-7],[41,3],[40,8],[33,-15],[41,7],[24,-29],[22,-3],[28,-4],[26,-22],[27,-15],[34,-25],[38,-15],[47,-7],[25,-7],[23,-51],[-46,-95],[-42,-51],[-25,37],[-21,65],[-41,-11],[-17,80],[-52,-69],[-52,-36],[0,-33],[0,-40],[48,0],[37,36],[53,-7],[24,-48],[11,-21],[3,-30],[4,-25],[50,-22],[36,-72],[-1,98],[20,76],[32,19],[21,-40],[9,-35],[5,-20],[6,-18],[18,-55],[46,-22],[43,-80],[-15,-34],[-12,-28],[-16,-87],[-35,-18],[-29,-62],[-40,-44],[24,-47],[-15,-77],[30,-7],[25,98],[37,11],[31,-62],[17,44],[10,65],[4,22],[12,-105],[5,-204],[-33,-95],[-7,-94],[16,-81],[-2,-10],[-17,-91],[21,-51],[34,-40],[-8,109],[9,77],[5,43],[-6,67],[-2,20],[35,8],[7,61],[11,91],[-2,86],[0,13],[11,60],[12,67],[19,-64],[4,-16],[4,-10],[25,-70],[18,-84],[21,55],[13,16],[5,6],[25,11],[-22,62],[-27,7],[-27,84],[8,64],[3,30],[-25,73],[-44,84],[-6,80],[-5,51],[-34,95],[38,18],[38,7],[24,-22],[39,-25],[46,-44],[55,15],[37,-59],[26,26],[28,-15],[21,-42],[8,-16],[-45,-22],[5,-52],[3,-28],[36,-51],[-1,-105],[-42,-44],[6,-99],[1,-94],[-2,-41],[-1,-39],[-18,-69],[33,3],[-1,-55],[-1,-39],[4,-19],[10,-54],[25,-26],[2,-85],[1,-57],[-35,-18],[0,-84],[21,-47],[-21,-84],[-6,-25],[-18,-77],[-16,-94],[42,-4],[16,76],[11,-1],[10,-2],[10,-41],[22,-101],[21,116],[25,4],[13,17],[5,8],[27,-43],[37,-26],[13,73],[16,66],[3,28],[5,55],[-17,55],[-16,87],[13,13],[8,9],[35,-54],[39,-121],[39,-58],[-10,-10],[-39,-37],[-23,-109],[1,-37],[3,-65],[0,-84],[7,-32],[14,-59],[29,-37],[21,-14],[3,-33],[9,-76],[2,-58],[1,-33],[-12,4],[-18,7],[-16,12],[-11,9],[-3,14],[-11,48],[-10,62],[-25,37],[-28,83],[-14,-35],[-5,-12],[-43,-36],[-38,-62],[-7,-20],[-23,-64],[-10,-9],[-22,-20],[24,-66],[32,-3],[2,0],[6,-5],[24,-21],[-1,-2],[-8,-125],[11,-99],[19,-80],[20,-56],[13,-38],[-59,-59],[-12,73],[-15,62],[-7,1],[-32,6],[-15,-131],[-33,-134],[-27,6],[-3,1],[-6,36],[-15,84],[-24,36],[-25,-65],[17,-73],[-7,-120],[-38,44],[-15,51],[-44,14],[-10,58],[-4,19],[-5,34],[-6,42],[6,109],[-11,14],[-21,26],[-45,7],[-5,1],[-44,-44],[18,-58],[6,-19],[41,-14],[0,-63],[1,-32],[-7,-164],[0,-41],[-1,-50],[27,0],[27,-36],[4,-10],[19,-48],[14,-95],[42,-22],[33,-58],[27,7],[48,51],[6,-98],[-24,-95],[9,-94],[4,-4],[31,-26],[40,8],[3,-32],[4,-48],[19,-73],[-27,-66],[-26,-65],[-35,51],[-26,87],[-13,21],[-16,26],[-35,19],[-28,40],[-25,18],[-34,22],[-23,11],[-26,-4],[-25,84],[-23,63],[-5,13],[-51,69],[-22,15],[-5,5],[-20,17],[-43,29],[-33,-4],[-40,11],[-32,-18],[-38,58],[-24,55],[-1,127],[-13,-4],[-9,-3],[-20,-98],[0,-1],[-13,-65],[-39,95],[-7,-2],[-20,-5],[-35,14],[-30,51],[-17,15],[-15,14],[-24,-14],[-42,54],[-30,15],[-27,-37],[-33,4],[-35,47],[-29,11],[-1,0],[-7,-69],[7,-9],[32,-38],[24,-62],[27,-26],[39,0],[28,-7],[34,-51],[10,-124],[10,-14],[17,-26],[20,-36],[31,-33],[3,-12],[18,-72],[27,-91],[-9,-17],[-9,-15],[-6,-4],[-20,-11],[-15,-91],[-12,-95],[-37,-11],[-12,-62],[39,-14],[11,-21],[11,-23],[5,2],[16,6],[0,109],[10,73],[24,29],[37,-59],[34,-14],[5,14],[20,59],[8,56],[3,17],[35,-4],[42,-95],[44,-29],[29,-51],[19,-109],[27,-80],[22,-55],[9,-22],[25,-80],[-21,-102],[32,-54],[6,76],[34,40],[13,-105],[33,72],[28,-72],[-26,-128],[-38,-7],[-30,-26],[5,-33],[8,-54],[19,-65],[4,-15],[-11,-120],[-16,-102],[1,-8],[2,-91],[-29,-29],[-39,-7],[-35,44],[-14,62],[17,69],[4,36],[3,26],[-35,69],[-3,33],[-5,54],[6,42],[5,35],[-33,36],[-27,-14],[-3,-48],[-1,-22],[-9,-47],[-15,-20],[-10,-13],[-8,-14],[-18,-29],[-1,-77],[-1,-18],[-26,75],[-4,12],[-12,63],[-9,47],[-18,51],[-12,66],[-1,6],[21,95],[-32,-6],[-7,-1],[-29,-33],[15,-84],[7,-102],[-42,-18],[-30,40],[-10,2],[-15,2],[-33,62],[-46,80],[-34,54],[-44,95],[29,36],[-20,37],[0,91],[-46,-22],[-31,29],[-7,54],[-8,63],[-7,33],[-11,59],[-1,2],[-27,62],[-5,109],[-4,-15],[-17,-72],[-22,-36],[-27,36],[-24,44],[-29,-4],[-43,4],[30,-66],[39,-3],[23,-70],[39,-29],[18,-54],[-10,-135],[38,-26],[27,-40],[20,-131],[-17,-54],[-21,25],[-35,26],[-25,-40],[-47,87],[-26,33],[50,-139],[-29,0],[22,-76],[-30,-36],[-32,-48],[-25,59],[-42,50],[-44,59],[-33,36],[-4,98],[-18,-76],[-37,-40],[22,-51],[25,-40],[-21,-47],[-16,-84],[40,29],[30,36],[31,-25],[29,-55],[29,-54],[21,-29],[29,-26],[19,-18],[21,-102],[-33,-7],[-29,54],[-36,4],[19,-113],[7,-87],[-44,-37],[-33,-11],[-49,15],[12,-58],[33,-62],[-59,3],[-34,-76],[-30,7],[13,-54],[-40,-8],[-32,-94],[-38,61],[-40,-58],[-30,58],[-25,15],[-32,44],[-25,43],[-22,37],[-20,69],[-32,55],[-32,72],[6,106],[27,22],[28,18],[19,15],[29,25],[-21,62],[0,102],[-15,98],[-21,91],[-55,168],[-52,-149],[-58,83],[26,-134],[47,-19],[48,91],[9,-43],[19,-95],[20,-98],[-8,-99],[-45,0],[-29,-69],[-23,-69],[-21,-69],[-20,-26],[20,-54],[-17,-113],[-24,-55],[-22,-94],[-25,-70],[-28,19],[-45,94],[-7,-120],[47,-65],[5,-110],[-21,-58],[-30,-69],[-20,-40],[-27,-4],[-5,-109],[-6,-98],[-44,7],[-39,-29],[-45,-33],[-22,-7],[-15,-99],[-34,-7],[-18,7],[-26,-61],[43,-62],[-37,-73],[-7,-62],[-35,-55],[-1,73],[-27,-18],[-26,33],[-13,3],[-8,62],[-20,186],[0,-204],[8,-51],[-11,-167],[-31,21],[-24,8],[-22,47],[-18,51],[-6,62],[-12,51],[-25,14],[-29,8],[-24,-84],[-37,-11],[-40,-44],[-12,-76],[-3,-102],[-47,11],[-22,-66],[-24,44],[-63,0],[57,-98],[62,0],[42,33],[21,101],[14,81],[35,21],[25,0],[21,22],[21,29],[16,-54],[20,-40],[-14,-80],[-13,-95],[-32,-80],[-29,-95],[0,-160],[2,-40],[-55,-98],[60,29],[27,-55],[63,-226],[31,-32],[-76,287],[-16,150],[-1,87],[14,73],[39,69],[27,25],[29,51],[26,-120],[33,-25],[23,18],[28,51],[13,95],[16,-22],[19,-44],[23,-29],[25,-40],[22,-26],[28,4],[25,-7],[26,25],[32,-65],[43,-48],[-30,84],[-15,18],[-20,66],[5,65],[13,70],[3,76],[-14,58],[33,66],[47,44],[48,-51],[32,-11],[22,21],[30,19],[26,-44],[12,91],[-24,29],[9,139],[18,149],[4,84],[17,65],[32,69],[26,40],[45,37],[37,43],[8,-120],[26,-25],[16,-73],[41,44],[25,-11],[48,0],[33,-4],[18,-58],[-13,-88],[-34,-83],[-13,-120],[12,-66],[18,102],[15,65],[30,33],[33,55],[31,-4],[21,-105],[17,87],[-23,84],[17,29],[26,22],[55,47],[31,0],[20,11],[24,-25],[26,7],[25,-37],[29,-54],[-36,-40],[35,-40],[-26,-66],[-29,-7],[-18,-4],[-8,55],[-41,0],[28,-33],[-26,-146],[26,62],[34,19],[17,-37],[-8,-69],[30,18],[28,37],[22,-73],[13,43],[-8,62],[29,11],[31,22],[4,-84],[10,-102],[-18,-87],[-6,-109],[-39,-69],[-52,-37],[-12,-109],[-17,-66],[-24,-32],[-5,-84],[13,-117],[-14,-120],[-4,-120],[20,58],[30,102],[-4,80],[-10,106],[19,73],[20,51],[14,76],[45,40],[21,-113],[12,80],[2,66],[18,87],[16,81],[8,22],[17,47],[33,22],[19,29],[30,51],[52,-48],[-6,-127],[5,-120],[-30,-29],[19,-28],[10,-16],[18,11],[0,-12],[2,-108],[25,-53],[9,-20],[9,1],[32,6],[28,58],[32,19],[45,25],[-46,55],[-37,-15],[-31,-36],[-31,-4],[2,153],[-24,106],[7,14],[21,40],[1,179],[9,3],[23,8],[40,0],[-32,58],[-17,102],[-41,-73],[-39,55],[-30,-33],[-23,58],[-32,0],[18,131],[15,77],[-9,51],[-6,32],[27,70],[-33,47],[-22,-15],[-14,69],[-1,4],[35,109],[33,70],[25,-3],[10,-1],[16,-14],[33,-30],[26,-54],[17,98],[11,-10],[13,-12],[20,-36],[5,-28],[7,-34],[11,-48],[-11,-19],[-25,-46],[27,-55],[2,-29],[2,-40],[16,-6],[15,-5],[9,-9],[15,-16],[10,-43],[13,-56],[29,-40],[10,-87],[20,-73],[32,-58],[-2,-102],[14,-23],[13,-22],[40,39],[33,127],[30,39],[34,-136],[-36,-106],[-63,-192],[-8,-13],[-1,-17],[-1,-13],[-15,-65],[-3,-19],[-38,-43],[-6,-35],[-12,-71],[-7,-53],[-4,-34],[-18,-171],[-15,-70],[-18,-69],[-4,-25],[-13,-69],[-1,-75],[-1,-53],[-20,-149],[-9,6],[-44,30],[-16,48],[-24,40],[-20,-62],[-22,7],[-28,25],[-4,26],[-6,40],[-7,-34],[-9,-46],[-11,22],[-12,25],[-31,95],[-10,-69],[20,-99],[9,-112],[24,18],[21,4],[15,3],[14,-43],[15,-52],[41,55],[17,-55],[3,-25],[9,-69],[-16,2],[-11,1],[-17,-58],[25,-46],[9,-16],[-2,-116],[-24,-80],[-37,-33],[-27,80],[-14,-35],[-14,-34],[-41,-59],[-27,-10],[-16,-37],[-22,4],[-26,3],[-9,113],[15,113],[3,22],[-12,120],[0,47],[58,0],[-58,84],[-8,12],[-28,39],[-4,-51],[20,-98],[0,-84],[-9,-95],[-37,8],[-2,-84],[-43,-40],[-32,98],[11,99],[-6,91],[-41,7],[25,-66],[-14,-58],[-8,-124],[15,-94],[-19,-80],[-23,32],[-14,255],[-26,-116],[-68,47],[63,-146],[2,-91],[16,-62],[-4,-87],[-34,26],[-27,29],[-28,0],[-46,36],[-51,-18],[-20,33],[-40,76],[-10,18],[-14,99],[-28,62],[-17,98],[0,124],[9,120],[-18,-58],[-6,-132],[0,-91],[6,-131],[17,-51],[26,-65],[14,-66],[28,-43],[-25,-37],[-21,4],[-23,-22],[-80,-76],[-110,-150],[36,0],[74,15],[26,69],[48,18],[24,11],[31,18],[-8,-76],[-4,-80],[24,51],[12,51],[3,62],[25,7],[18,-7],[17,-124],[33,-131],[4,98],[-13,80],[-11,66],[44,32],[36,-69],[37,-14],[25,7],[27,11],[19,-55],[31,135],[22,29],[24,15],[17,-69],[16,91],[31,18],[22,-106],[19,-62],[-17,-134],[-15,-135],[-9,-88],[-19,-112],[-40,-66],[-13,-55],[-23,-47],[-29,-55],[-21,-32],[-32,-19],[-44,-25],[-71,-51],[-31,-25],[-24,-19],[-26,-43],[-36,-8],[-30,-40],[-39,-58],[-43,11],[-30,-7],[-21,25],[-14,-51],[28,-54],[35,-66],[20,-95],[-70,-131],[-32,-51],[-47,-73],[-32,-14],[-26,-84],[-24,-51],[-24,-54],[-19,40],[-26,149],[-42,18],[-3,76],[-11,25],[-28,-86],[37,-99],[31,-51],[48,-145],[-5,-37],[-26,-51],[-23,-43],[-25,-48],[-24,-40],[-30,-73],[-45,-43],[-18,84],[0,98],[-7,36],[6,113],[-19,37],[1,-150],[-14,-84],[-5,-101],[-23,-77],[-28,-65],[-31,-51],[-25,-33],[-23,22],[-19,0],[-22,42],[-8,16],[12,138],[-29,-33],[-12,135],[5,102],[-13,69],[-3,91],[35,95],[16,15],[6,27],[-9,26],[-23,-6],[-12,-77],[-28,-72],[-38,164],[-12,77],[-11,-7],[-1,-70],[22,-139],[27,-58],[11,-142],[0,-113],[9,-102],[11,-109],[-46,7],[-33,44],[-21,-37],[-24,44],[-21,36],[-18,102],[-20,99],[-26,91],[-12,33],[-8,-19],[16,-76],[21,-120],[34,-190],[-28,-3],[-17,-15],[-18,-36],[-33,-11],[-35,-40],[-27,47],[-11,47],[-21,22],[-9,32],[-14,-41],[0,-1],[-3,-30],[-2,-21],[4,-27],[13,5],[20,-8],[30,-80],[10,-40],[37,7],[25,19],[35,11],[24,-19],[37,106],[33,-66],[55,-3],[41,-11],[12,-2],[7,-2],[-16,-69],[-8,-47],[25,-8],[-11,-102],[-19,-58],[-15,-109],[-35,-55],[-14,-51],[-10,-109],[-23,-33],[-51,-18],[-48,-36],[-33,-18],[-30,-8],[-28,-22],[-30,-36],[-24,-62],[-31,-62],[-35,-47],[-92,-88],[-23,8],[-1,18],[-15,146],[-25,200],[-16,102],[-6,167],[-20,0],[0,-233],[-68,0],[-52,33],[-68,117],[-36,200],[-36,69],[-11,66],[11,-183],[26,-87],[5,-149],[52,-51],[41,-84],[58,-84],[32,84],[51,0],[31,-65],[-7,-259],[-2,-6],[-22,-67],[-12,-51],[-20,-25],[-14,-62],[-40,-153],[-24,-80],[-24,-113],[-16,-58],[-71,-55],[-66,-22],[-91,-69],[-41,-55],[-41,-47],[-35,-109],[-12,-73],[-26,57],[-4,9],[-25,43],[-30,4],[-38,44],[-64,69],[-32,69],[-32,66],[-37,61],[-28,59],[-22,40],[-26,58],[-26,55],[-35,98],[-54,153],[-24,58],[-23,135],[-28,-29],[-42,109],[-41,47],[-36,66],[-32,62],[12,83],[-16,110],[3,94],[-14,59],[14,80],[16,105],[2,128],[3,80],[5,87],[-46,102],[5,-131],[-6,-160],[-8,-106],[-16,-73],[-17,-54],[4,-80],[11,-77],[-5,-102],[13,-76],[-25,-51],[-33,18],[-36,62],[-33,80],[-25,87],[-21,70],[-26,69],[-32,80],[-26,55],[-56,116],[-23,87],[-20,77],[-7,76],[-61,48],[-1,0],[-22,29],[-26,14],[-28,-32],[-1,-11],[-6,-59],[-38,55],[-53,55],[-1,-1],[-41,-10],[-22,62],[-32,72],[-20,69],[-6,23],[34,32],[44,15],[-20,62],[-20,33],[-1,62],[-1,29],[10,87],[32,58],[20,30],[7,10],[10,20],[12,24],[29,62],[10,58],[6,40],[11,99],[1,10],[11,99],[-11,-18],[-41,-62],[-15,-81],[-20,-41],[-3,-6],[-18,-28],[-19,-30],[-42,-44],[-48,-47],[-33,-26],[-6,-29],[-7,-43],[-27,-48],[-44,22],[-6,93],[-1,16],[39,29],[0,60],[1,35],[4,21],[15,77],[-2,56],[0,10],[6,80],[13,26],[18,36],[16,106],[4,83],[0,11],[5,117],[2,120],[-18,124],[30,87],[11,91],[-6,77],[-22,61],[-13,91],[-7,48]],[[69492,49067],[-14,-360],[-1,-11],[6,-371],[16,-765],[-2,-124],[1,-54],[-13,-186],[-1,-7],[-9,-193],[-5,-48],[-19,-211],[-9,-33],[0,-2],[-13,-180],[-9,-170],[0,-5],[-8,-105],[-16,-426],[1,-240],[87,-288],[54,-204],[5,-124],[-10,-550],[-1,-80],[-1,-33],[-2,-229],[18,-255],[12,-174],[21,-325],[15,-426],[8,-43],[10,-51],[1,-55],[3,-98],[8,-237],[1,-36],[0,-146],[-1,-58],[1,-88],[0,-14],[-1,-128],[0,-2],[-8,-311],[4,-91],[-10,-302],[-12,-18],[6,-98],[1,-40],[12,-416],[30,-389],[-6,-95],[-2,-153],[0,-40],[8,-295],[2,-73],[-3,-51],[6,-80],[14,-488],[11,-371],[0,-1],[-12,-90],[-44,-342],[-5,-37],[-4,-36],[-42,-328],[-16,-164],[-40,-389],[-13,-179],[-23,-207],[-16,-251],[-14,-110],[-2,-207],[-7,-58],[5,-73],[-70,-550],[-5,-36],[-27,-255],[-15,-142],[-15,-157],[-5,-73],[-64,-568],[-13,-280],[-29,-288],[-9,-76],[0,-3],[-43,-445],[-24,-200],[-31,-277],[-4,-36],[-4,-44],[-4,-31],[-2,-9],[-6,-40],[1,-37],[25,-17],[1,-1],[137,-138],[14,-15],[134,-131],[43,-51],[53,-65],[122,-130],[4,-5],[96,-157],[12,-25],[109,-401],[61,193],[9,22],[16,29],[17,37],[14,32],[17,22],[17,22],[12,40],[14,44],[16,40],[9,33],[6,43],[6,16],[1,3],[4,11],[13,-4],[2,0]],[[70060,32049],[2,-51],[-6,-40],[1,-73],[6,-127],[-7,-88],[-3,-47],[1,-51],[-4,-62],[-38,-73],[-82,-193],[-28,-62],[-138,-291],[-125,-284],[-63,-135],[-4,-15],[-76,-311],[-23,-92],[-29,-120],[-39,-161],[-11,-47],[-72,-295],[-39,-160],[-151,-619],[-30,-128],[-41,-164],[-34,-138],[-68,-277],[-29,-120],[-71,-291],[-12,-55],[-12,-47],[-29,-117],[-9,-36],[-10,-44],[-79,-320],[-49,-200],[-41,-171],[-49,-212],[-12,-54],[-38,-131],[-55,-226]],[[68464,25921],[-23,80],[-1,3],[-4,3],[-6,0],[-4,-1],[-13,-7],[-10,1],[-4,10],[0,11],[5,18],[3,4],[3,3],[52,106],[30,72],[1,6],[0,16],[-25,122],[-16,82],[-10,17],[-29,54],[-3,5],[-1,0],[-3,-1],[-3,0],[-22,41],[-4,17],[1,16],[2,5],[10,19],[1,1],[3,10],[2,11],[0,34],[-1,3],[-3,19],[-12,34],[0,1],[-5,7],[-13,9],[-5,7],[-18,177],[-3,34],[-2,14],[-24,9],[-16,-16],[-2,-6],[-14,-35],[-4,-7],[-4,-4],[-3,0],[-2,5],[-16,34],[-14,30],[-10,22],[-5,39],[-9,72],[-9,33],[-7,24],[-10,18],[0,1],[-13,19],[-9,59],[0,2],[-2,0],[-13,-8],[-15,26],[-14,29],[-8,44],[-16,-4],[-8,43],[-1,4],[-6,37],[-2,39],[-1,-2],[0,5],[-1,37],[-27,71],[-7,18],[-14,36],[-3,10],[-1,0],[-9,7],[-21,-24],[-5,-7],[-1,-5],[0,-4],[-11,-31],[-5,0],[-26,14],[-27,14],[-20,62],[-7,21],[0,2],[1,13],[3,6],[12,11],[5,4],[-4,7],[-5,12],[-3,10],[-1,11],[-6,96],[0,3],[-2,45],[-2,67],[-5,30],[-2,4],[-8,59],[-15,-4],[-21,-36],[-14,0],[-13,40],[8,51],[2,48],[-5,15],[-13,36],[-11,42],[0,4],[0,12],[-1,83],[1,18],[16,66],[2,11],[-4,14],[-12,46],[-3,11],[-1,0],[-13,1],[-14,13],[-38,53],[0,1],[-22,31],[-3,9],[-3,23],[0,9],[0,1],[16,50],[35,40],[12,10],[16,64],[-11,28],[7,43],[6,48],[43,92],[1,5],[0,1],[0,31],[-17,89],[0,1],[-1,4],[-4,13],[-9,25],[-1,2],[-38,34],[-2,2],[-12,6],[2,40],[-7,30],[-16,25],[-4,44],[-12,-33],[-15,18],[-13,26],[18,33],[-9,36],[16,18],[0,27],[0,29],[-2,11],[-6,14],[-15,36],[-19,29],[7,58],[-2,51],[1,73],[3,40],[-18,62],[7,44],[30,0],[0,51],[-19,65],[-1,1],[-1,3],[-23,72],[-5,10],[-7,9],[-2,2],[-1,3],[-16,24],[-14,20],[-1,1],[-4,4],[-69,70],[-5,7],[0,9],[0,13],[-26,126],[-4,17],[-10,14],[-4,3],[-8,-17],[-1,-1],[-10,-9],[-21,36],[-11,12],[-1,22],[0,18],[-1,25],[21,20],[1,2],[6,7],[5,15],[2,10],[0,9],[-29,225],[-3,15],[-28,69],[-8,4],[-7,-8],[-18,-18],[-15,-16],[-20,-7],[-1,0],[-62,4],[-6,4],[-5,8],[-37,74],[-26,52],[-12,56],[0,2],[-1,3],[-4,9],[-6,15],[-9,18],[-1,1],[-2,2],[-6,8],[-18,28],[-3,14],[-10,46],[0,11],[0,13],[2,5],[5,1],[4,-1],[8,-18],[10,-21],[12,-12],[9,2],[3,4],[2,11],[7,113],[-1,22],[0,3],[-1,5],[-1,5],[-8,18],[-15,39],[-9,21],[-23,55],[-31,103],[-1,2],[1,8],[5,41],[0,10],[-13,38],[-1,5],[-31,94],[-1,3],[-1,3],[-8,22],[-6,1],[-7,1],[3,43],[11,33],[14,44],[3,97],[-1,8],[-3,10],[-2,4],[-3,9],[-40,92],[-44,76],[-14,19],[-1,1],[-4,2],[-4,2],[-3,-2],[-5,-2],[-5,3],[-13,9],[-4,13],[-6,82],[-1,18],[27,142],[-24,187],[-3,15],[0,66],[2,4],[8,9],[0,1],[19,11],[3,43],[0,21],[-10,115],[-5,13],[-5,8],[-6,7],[-9,9],[-6,7],[-18,12],[-30,2],[-3,1],[-15,6],[-16,9],[1,8],[2,29],[0,14],[-31,86],[-18,48],[-5,11],[-26,49],[-2,3],[-3,23],[-9,69],[-2,20],[-7,51],[-23,83],[-5,-1],[-23,35],[-44,-18],[-26,19],[-4,9],[-43,131],[1,9],[2,95],[-8,16],[-10,25],[-32,41],[0,5],[0,12],[3,182],[-14,54],[-4,11],[-2,1],[-5,6],[-23,27],[-6,6],[-13,0],[-6,4],[-29,33],[-4,9],[-10,37],[-1,10],[0,12],[6,72],[0,1],[1,17],[3,59],[3,62],[-1,6],[-1,3],[-17,56],[-3,10],[4,28],[7,42],[16,58],[5,9],[7,9],[4,10],[5,29],[-1,9],[-1,2],[-2,3],[-38,30],[-4,2],[-1,0],[-12,-39],[-4,18],[1,28],[-18,55],[-33,32],[-40,69],[11,63],[-6,0],[-5,26],[-2,15],[-2,12],[-2,39],[0,130],[-6,19],[-1,6],[-22,11],[-5,2],[-2,-27],[-1,-6],[-4,-6],[-37,-14],[-6,3],[-10,9],[-12,15],[-3,1],[-3,9],[-6,18],[-1,12],[7,41],[1,2],[7,18],[2,8],[0,29],[0,1],[-3,54],[-1,7],[-3,63],[0,5],[-2,37],[1,11],[1,33],[-20,9],[-18,-18],[-2,-2],[-21,-51],[-6,0],[-4,7],[-8,18],[-9,39],[-2,13],[0,17],[6,23],[13,41],[1,4],[4,25],[0,23],[-1,6],[-2,7],[-7,25],[-6,10],[-10,16],[-9,14],[0,2],[1,25],[-17,24],[-3,4],[-8,13],[-9,2],[-4,19],[-1,14],[-21,50],[-8,-7],[-10,-11],[-3,-4],[-9,21],[-16,26],[-1,6],[-11,80],[-11,14],[-5,8],[-18,-21],[-1,-1],[-29,2],[-44,85],[0,21],[-16,128],[-16,21],[-24,10],[-5,3],[1,39],[0,7],[8,-3],[1,3],[9,51],[-2,118],[-11,60],[0,1],[-1,2],[-1,5],[-13,27],[-5,6],[-5,5],[1,8],[4,51],[0,2],[1,2],[1,68],[0,8]],[[65755,36939],[0,3],[0,69],[1,26],[-2,6],[-4,8],[-9,14],[-1,0],[-5,0],[-3,-2],[-39,42],[-1,2],[-11,20],[-6,15],[-2,11],[-6,47],[-1,18],[1,1],[3,20],[-4,6],[-15,17],[-3,4],[-18,22],[-12,15],[-51,61],[-4,14],[-11,37],[-2,14],[0,2],[-1,26],[1,81],[1,27],[-17,18],[-1,2],[1,6],[10,85],[1,18],[4,41],[1,9],[5,71],[0,7],[0,2],[-1,3],[-13,53],[-6,5],[-34,51],[-20,5],[-5,-5],[1,-12],[0,-17],[-2,-7],[-3,-7],[-13,10],[-22,23],[-12,11],[-5,5],[-12,45],[3,80],[1,5],[1,7],[-1,41],[-13,78],[-2,6],[-14,20],[-29,37],[-2,2],[-17,11],[-26,21],[-10,11],[-8,-46],[-3,-8],[-4,1],[-4,6],[-3,8],[-3,21],[-3,73],[-1,10],[-1,2],[-27,69],[-14,35],[-19,48],[-1,3],[-10,19],[-13,18],[0,1],[0,9],[-3,57],[0,20],[2,70],[1,6],[13,9],[10,7],[3,8],[12,68],[0,8],[0,2],[0,5],[-2,11],[-1,5],[-7,20],[-2,131],[-6,23],[-10,38],[-33,80],[-2,4],[-51,-44],[-15,43],[-13,49],[-26,21],[-6,-3],[-16,31],[-39,64],[-5,5],[-3,5],[-10,31],[-4,12],[-15,147],[-38,158],[-18,59],[-18,36],[8,90],[0,7],[-12,36],[-3,3],[-12,-4],[0,-1],[-20,-10],[-40,43],[-37,6],[-2,8],[-15,76],[-9,44],[-3,17],[-63,133],[-3,5],[-24,48],[-1,10],[-2,11],[-21,149],[-37,53],[-39,14],[-10,4],[-19,9],[-8,3],[0,-2],[-7,-19],[-3,-12],[-1,-3],[-6,1],[-4,5],[-5,16],[-6,15],[-23,99],[-5,33],[-1,1],[0,1],[-2,20],[-29,94],[-17,55],[-8,17],[-5,12],[-41,94],[-2,5],[-4,11],[-4,12],[-3,14],[-36,162],[-4,9],[-43,92],[-33,91],[-2,3],[-3,8],[-13,33],[1,8],[1,7],[-1,21],[-57,311],[-2,5],[-1,5],[-21,30],[-17,3],[-8,-2],[-7,-3],[-5,2],[-7,7],[-3,10],[-4,20],[-8,43],[-2,11],[-2,11],[-3,28],[-5,59],[-2,26],[-11,171],[-1,20],[-10,168],[6,30],[15,68],[11,45],[-2,47],[0,7],[-1,5],[0,1],[-21,74],[-10,35],[-3,11],[-6,14],[-13,37],[-2,8],[-10,149],[0,4],[-1,114],[2,9],[7,32],[1,25],[3,62],[0,16],[0,1],[-19,96],[-24,93],[-11,56],[-5,22],[-3,15],[0,1],[-29,203],[-2,29],[0,7],[0,10],[1,25],[1,12],[5,26],[13,42],[2,5],[5,23],[14,104],[2,93],[-2,20],[-1,5],[-4,14],[-6,9],[-2,3],[-5,14],[-4,20],[-1,5],[-11,73],[-1,1],[-20,133],[-16,103],[-1,5],[-23,184],[-1,1],[-2,71],[-1,16],[4,5],[1,3],[4,17],[1,62],[0,8],[-4,143],[-3,116],[-1,9],[-7,18],[-1,3],[-1,2],[-20,40],[-9,-4],[-2,-1],[-19,3],[-7,9],[-21,55],[-7,38],[-4,38],[-5,50],[5,38],[1,5],[1,7],[1,4],[8,9],[3,3],[3,33],[1,41],[0,6],[-3,69],[0,30],[2,8],[12,25],[1,2],[13,12],[1,0],[9,2],[18,-15],[1,-1],[21,-33],[31,11],[7,10],[5,6],[1,2],[13,36],[0,2],[1,6],[0,125],[0,3],[-1,3],[-6,23],[-2,19],[4,40],[1,2],[9,35],[3,2],[12,-5],[5,-1],[1,-2],[8,-11],[4,7],[21,51],[5,14],[5,20],[-18,138],[1,17],[0,8],[1,56],[0,40],[1,8],[1,18],[3,1],[36,13],[30,56],[7,6],[28,23],[0,-1],[16,-21],[10,28],[6,16],[7,18],[12,19],[9,35],[-6,69],[-1,17],[-44,26],[-8,-6],[-3,1],[-1,0],[-6,-8],[-5,-8],[-12,-21],[-6,-9],[-4,-4],[-9,-10],[-14,-3],[-12,4],[-6,13],[-6,16],[-4,24],[-3,34],[0,2],[0,22],[3,18],[5,15],[0,1],[2,4],[24,65],[1,1],[35,81],[0,1],[11,33],[9,29],[18,27],[0,2],[8,22],[30,117],[16,59],[0,1],[30,74],[18,138],[-9,41],[-6,17],[-6,47],[0,55],[0,22],[-2,12],[-4,18],[-2,0],[-2,34],[-16,25],[1,49],[0,11],[5,0],[8,7],[1,1],[6,67],[1,132],[4,34],[4,34],[10,41],[0,1],[2,19],[3,14],[8,31],[6,24],[1,4],[11,63],[1,52],[-12,34],[-55,147],[8,44],[1,6],[1,0],[43,8],[10,2],[1,-4],[12,-11],[12,4],[20,20],[6,31],[2,14],[-3,30],[-8,22],[0,34],[-37,106],[-18,35],[-9,20],[-3,14],[-55,264],[-6,25],[0,1],[9,38],[23,92],[7,35],[4,16],[0,4],[0,18],[-8,18],[-1,0],[-39,19],[-4,2],[-4,8],[-63,126],[-3,14],[-1,21],[4,35],[2,14],[34,62],[6,7],[8,-6],[25,-57],[18,-39],[7,-8],[12,3],[12,10],[47,54],[50,58],[17,44],[6,28],[3,17],[0,19],[-9,41],[-4,11],[-38,78],[-5,4],[-9,2],[-5,1],[-11,63],[-2,24],[-1,28],[3,33],[7,69],[1,5],[2,12],[5,18],[27,78],[9,25],[34,108],[5,36],[0,7],[0,4],[3,3],[37,38],[7,18],[25,156],[0,13],[-13,80],[-2,31],[-1,13],[-1,4],[-1,62],[5,52],[14,68],[8,142],[-6,94],[-3,55],[-1,17],[2,13],[-1,4]],[[6587,47851],[-19,4],[-6,40],[-4,36],[-12,19],[-18,36],[-15,22],[-13,14],[-12,0],[-13,-11],[-17,26],[-19,-7],[-16,0],[-10,-29],[-14,-41],[-7,-43],[-15,-11],[-17,-15],[-11,-11],[-22,-3],[-14,-15],[-21,-22],[-14,-3],[-11,11],[-15,47],[-18,-15],[-13,-7],[-11,-14],[-18,-19],[-7,-43],[-18,-33],[-16,-40],[-9,-40],[-5,-44],[-18,-4],[-17,-18],[-10,-22],[-15,-21],[-18,-19],[-17,15],[-17,-11],[-17,-11],[-17,-11],[-17,7],[-22,19],[-10,-19],[-9,-61],[-10,-26],[-23,-25],[-14,3],[-11,4],[-17,-11],[-11,-4],[-17,4],[-16,-11],[-9,-33],[-7,-54],[-11,-11],[-14,-4],[-15,-4],[-18,-3],[-23,-26],[-20,-33],[-21,-14],[-14,-15],[-16,19],[-10,18],[-16,22],[-17,-11],[-20,14],[-12,11],[-17,-3],[-21,7],[-12,-4],[-9,51],[-15,33],[-16,-11],[-12,4],[-15,18],[-11,11],[-18,11],[-18,-33],[-10,-26],[-22,-40],[-13,-3],[-21,-11],[-21,-11],[-13,-18],[-20,-29],[-10,-30],[-15,-14],[-16,-26],[-7,-58],[-19,-33],[-11,-32],[-11,-11],[-10,-19],[-8,-40],[-11,-65],[-5,-37],[-12,-58],[6,-54],[7,-59],[6,-54],[2,-44],[-2,-55],[-10,-21],[-18,-41],[-11,-18],[-18,-7],[-12,-36],[-21,-37],[-11,-29],[-15,-25],[-9,-26],[-7,-36],[-5,-55],[-9,-40],[-10,-25],[-17,-44],[-12,-29],[-15,-29],[-19,-11],[-8,-55],[-11,-47],[-13,-44],[-13,-47],[-5,-55],[-12,-29],[-19,-47],[-14,-37],[-12,-33],[-21,-54],[-10,-33],[-5,-40],[-16,-22],[-11,-14],[-21,-30],[-27,-51],[-18,-36],[-17,-44],[1,-36],[-1,-44],[2,-43],[-13,-88],[-22,-102],[-18,-14],[-18,-8],[-14,-18],[-21,-44],[-13,-21],[-18,-22],[-18,7],[-15,0],[-18,-15],[-11,-25],[-15,-29],[-10,-47],[-8,-44],[0,-66],[-9,-47],[-20,29],[-12,22],[-16,27],[-1,2],[-14,-3],[-5,-1],[-2,-3],[-16,-35],[-1,-2],[-4,-94],[-25,-78],[-12,-39],[-6,-26],[-13,-50],[-17,-69],[0,-1],[-11,-47],[0,-1],[-9,-21],[-2,-7],[-7,-12],[-11,-21],[-23,-36],[-13,-11],[-32,-15],[-10,-2],[-7,-1],[-14,11],[-21,18],[-2,-2],[-15,-12],[0,-1],[-2,-6],[-23,-70],[-12,-63],[-6,-28],[-12,-29],[-1,-1],[-23,-24],[-1,-1],[2,-10],[13,-55],[-25,-22],[-11,-47],[17,-30],[12,-18],[8,-26],[4,-14],[16,-25],[18,-37],[9,-50],[0,-1],[1,-52],[0,-17],[-4,-62],[-9,-36],[-8,-51],[-3,-40],[5,-44],[17,-25],[9,-30],[7,-47],[3,-58],[-16,-26],[-9,-22],[-12,-43],[-10,-37],[-7,-47],[-10,-29],[-21,-66],[-15,-18],[-20,0],[-16,-29],[-10,-44],[-17,-25],[-12,-37],[3,-91],[-11,-21],[-11,-30],[-13,-32],[-8,-29],[-15,-44],[-15,-29],[-12,-29],[-25,-19],[-10,-18],[-15,-3],[-21,-48],[-15,-25],[-27,-48],[-19,-32],[-11,-29],[-16,-33],[-17,-11],[-11,-18],[-14,-26],[-10,-40],[-20,-16],[-7,-6],[-15,8],[-18,-19],[-10,-36],[7,-44],[2,-36],[-8,-55],[-9,-25],[-7,-33],[4,-69]],[[3571,41709],[-767,6],[-263,2],[-368,3],[-15,0],[-428,7],[-157,2],[-1573,22],[2,51],[2,51],[4,96],[9,219],[6,123],[25,627],[2,54],[0,4],[2,55],[14,343],[2,42],[1,22],[1,32],[8,194],[12,284],[7,193],[8,182],[14,346],[6,146],[10,236],[17,506],[3,88],[3,82],[3,74],[2,51],[1,69],[1,40],[4,77],[3,82],[6,138],[6,139],[8,200],[1,7],[8,122],[3,57],[14,311],[11,269],[4,85],[31,693],[6,144],[1,16],[1,38],[9,153],[0,1],[9,145],[3,40],[3,58],[6,87],[0,6],[3,83],[6,164],[5,159],[6,145],[11,318],[15,425],[10,255],[5,-22],[81,113],[42,114],[10,28],[59,157],[23,35],[28,42],[34,52],[51,78],[4,5],[5,22],[8,53],[83,222],[39,44],[38,43],[24,27],[46,147],[3,12],[32,102],[0,1],[24,78],[30,96],[26,81],[65,48],[34,-30],[65,-58],[60,-142],[10,-24],[58,-262],[3,-46],[7,-111],[3,-48],[6,-89],[6,-40],[1,-6],[7,-32],[4,-11],[11,-3],[6,6],[7,7],[59,-50],[101,-99],[103,143],[87,38],[3,-3],[42,-45],[5,-5],[21,26],[58,74],[37,-9],[162,-44],[14,-20],[67,-94],[10,-6],[27,-17],[5,12],[1,0],[4,53],[-1,6],[1,40],[-9,61],[0,1],[5,64],[1,11],[3,27],[0,4],[24,31],[6,6],[10,11],[13,16],[5,35],[25,19],[7,-5],[9,-12],[18,-37],[97,29],[8,-11],[72,-110],[14,-24],[116,199],[60,104],[35,189],[2,14],[67,66],[81,79],[59,59],[16,18],[78,84],[6,46],[11,78],[63,79],[16,48],[12,33],[13,37],[25,72],[19,172],[79,210],[25,37]],[[65755,36939],[-33,-33],[-2,-1],[-22,-17],[-58,-73],[-70,-153],[-2,-3],[-45,-99],[-11,11],[-64,47],[-15,11],[-17,15],[-71,58],[-26,18],[-1,37],[-267,0],[-149,-4],[-9,0],[-438,-3],[-77,0],[-90,0],[-43,0],[-75,0],[-46,0],[-1,0],[-63,0],[-27,0],[-56,-2],[-64,-1],[-43,-1],[-105,0],[-72,-1],[-233,-1],[-121,-1],[-201,-1],[-3,0],[-59,0],[-5,0],[-52,-1],[-22,-1],[-55,-1],[-65,0],[-43,-4],[-42,-5],[-43,-6],[-80,-7],[-55,-7],[-73,-11],[-45,-4],[-17,0],[-125,15],[-14,0],[-34,3],[-141,-33],[-71,-14],[-69,-15],[-3,0],[-196,-36],[-129,-84],[-9,-6],[-13,-8],[-163,-110],[-45,-36],[-217,-160],[-80,-55]],[[61170,36156],[-3,-2],[-26,-16],[-4,25],[-10,55],[-8,40],[-11,40],[-16,47],[-11,44],[-16,66],[-9,47],[-19,66],[-13,43],[-9,40],[-11,34],[-6,17],[-7,48],[-9,29],[-12,58],[-12,44],[-7,32],[-10,33],[-1,44],[-13,65],[-14,37],[-12,22],[-4,47],[-10,44],[-10,51],[12,47],[20,29],[14,33],[12,44],[3,47],[-4,106],[-3,54],[-8,62],[-7,58],[-17,80],[-3,59],[-4,47],[-3,51],[-9,58],[-11,58],[-31,124],[-13,29],[-18,33],[-9,40],[-8,29],[-7,29],[-14,33],[-18,22],[-19,73],[4,40],[-4,40],[-24,102],[-13,18],[-14,4],[-15,18],[-17,11],[-11,18],[-24,58],[-9,30],[-9,29],[-12,25],[-10,18],[-8,62],[-4,37],[-14,25],[-10,18],[-8,13],[-180,301],[-27,40],[-54,80],[-102,158],[-6,9],[-80,124],[-25,47],[-42,77],[-15,25],[-49,84],[-12,18],[-163,270],[-32,51],[-43,72],[-39,59]],[[59661,40482],[-8,54],[-12,26],[-3,40],[-2,65],[6,33],[3,55],[15,76],[-11,62],[-5,37],[-12,43],[-15,0],[-14,-3],[-13,36],[0,55],[-1,47],[-14,29],[-5,55],[-6,65],[-7,33],[-18,40],[-17,58],[-5,51],[-7,88],[5,51],[3,51],[-3,43],[-5,62],[-10,48],[-6,83],[-9,44],[-10,33],[-10,40],[-11,7],[-25,69],[-7,29],[-8,55],[-1,21],[-3,41],[-7,33],[-19,47],[-10,36],[-5,62],[-2,62],[-22,62],[-37,106],[-17,32],[-21,8],[-23,87],[-7,47],[-3,51],[-29,128],[-75,324],[0,1],[-9,19],[-8,35],[-51,221],[-28,139],[-1,11],[-6,68],[2,21],[3,10],[2,2],[5,10],[0,5],[0,2],[0,1],[-10,40],[-1,2],[-13,33],[2,3],[40,64],[0,4],[0,2],[0,1],[-2,69],[0,2],[-20,81],[-9,25],[-5,15],[-11,106],[0,3],[15,86],[0,3],[3,218],[0,12],[-2,16],[-3,28],[1,6],[13,55],[5,25],[2,36],[-6,172],[-5,52],[-3,19],[-1,4],[0,2],[-7,20],[-4,5],[-6,8],[-14,18],[0,1],[0,1],[1,2],[15,99],[2,24],[-1,18],[-15,255],[-6,19],[-4,13],[-4,12],[-6,13],[-3,7],[-3,5],[-19,23],[-1,2],[-4,8],[-4,11],[-1,2],[-4,26],[0,7],[1,5],[-1,11],[-13,130],[-5,146],[1,27],[1,133],[0,10],[-4,117],[-2,37],[-3,52],[-1,4],[-3,12],[-23,130],[-4,21],[-21,123],[-2,13],[-4,11],[0,2],[-38,122],[-37,-8],[-8,55],[35,335],[18,153],[7,73],[5,65],[11,146],[44,513],[12,102],[11,102],[10,91],[17,159],[0,1]],[[81133,44767],[19,29],[26,70],[37,65],[31,-7],[26,0],[15,-62],[25,4],[31,-73]],[[81602,34987],[0,-1],[0,-3],[2,-30],[0,-15],[1,-12],[1,-2],[1,-4],[1,-5],[1,-11],[0,-8],[-2,-10],[-4,-14],[-9,-14],[-7,-8],[-8,-1],[-24,0],[-12,6],[-67,59],[-7,9],[-9,21],[-13,33],[0,1],[-5,6],[-3,1],[-19,8],[-2,0],[-8,0],[-6,-9],[-1,-2],[-19,-45],[-4,-9],[-2,-19],[-11,-85],[-4,-28],[-5,-20],[-46,-92],[-5,-10],[-71,-49],[-1,-1],[-9,-6],[-17,21],[-3,11],[1,43],[-2,22],[-1,9],[0,1],[-2,7],[-36,106],[-30,-14],[-30,-13],[-15,-4],[-7,-2],[-18,-5],[-3,-1],[-43,-25],[-4,-6],[0,-1],[-5,-13],[-24,-91],[0,-2],[-59,-43],[-17,2],[-25,7],[-15,6],[-38,24],[-21,21],[-5,10],[0,1],[-3,15],[-1,8],[-4,0],[-14,-71],[-17,-91],[0,-1],[-1,1],[-26,32],[-1,1],[-5,-4],[-2,-4],[-3,-11],[0,-17],[1,-11],[1,-5],[6,-30],[4,-12],[10,-28],[1,-2],[0,-1],[6,-13],[7,-11],[15,-6],[5,-3],[3,-5],[3,-4],[1,-6],[0,-3],[0,-16],[-4,-22],[-7,-15],[-8,-6],[-11,2],[-13,-7]],[[80750,34343],[-2,-1],[-8,-3],[-4,1],[-2,-4],[-2,-3],[-6,-32],[-2,-10],[-3,-25],[-3,-28],[0,-14],[-3,-22],[-2,-7],[-2,-7],[-4,-12],[-7,-9],[-11,-3],[-10,7],[-8,15],[-2,4],[0,1],[-1,6],[0,29],[6,32],[7,12],[14,24],[5,15],[2,8],[0,24],[0,1],[-3,6],[-4,8],[-3,3],[-4,3],[-16,0],[-12,7],[-4,5],[-2,3],[-1,4],[-7,16],[-1,7],[0,22],[5,22],[2,2],[31,32],[5,9],[4,12],[1,13],[-1,13],[-2,6],[0,1],[-47,198],[-1,5],[-1,3],[-6,18],[-2,2],[-3,5],[-62,91],[-14,21],[-5,7],[-6,8],[-27,33],[-11,13],[-37,29],[-2,16],[13,105],[2,15],[-5,1],[-24,4],[-6,5],[-8,16],[-27,86],[-3,9],[-2,19],[1,25],[2,11],[5,12],[11,7],[5,13],[1,4],[6,53],[2,10],[0,14],[-1,11],[-3,13],[-1,3],[-1,2],[-17,30],[-3,6],[-2,1],[-1,28],[1,14],[4,21],[3,10],[5,4],[9,-7],[7,-13],[6,-3],[46,30],[2,1],[4,6],[2,4],[4,5],[5,10],[2,3],[1,4],[6,20],[6,28],[11,47],[0,15],[-2,14],[35,176],[20,53],[2,5],[6,16],[0,23],[0,1],[0,38],[0,11],[-3,40],[-10,99],[-3,26],[-1,8],[-6,24],[-1,3],[0,1],[-5,8],[-3,1],[-5,-1],[-1,-1],[-14,-6],[-1,-1],[-4,-3],[-3,-8],[-1,-5],[-1,-24],[-1,-9],[-9,-23],[-4,-7],[-23,-35],[-5,-5],[-9,2],[-7,4],[-2,3],[-2,4],[0,-6],[-5,-45],[-1,-8],[-18,-4],[-54,18],[-38,32],[-3,7],[-8,23],[-20,95],[4,6],[15,25],[1,5],[7,72],[1,9],[3,26],[0,21],[-2,9],[-1,4],[-22,122],[0,4],[-2,4],[-18,29],[0,15],[-4,31],[0,5],[-9,28],[-1,2],[-26,75],[-22,38],[-15,35],[-3,8],[-1,11],[0,6],[20,184],[3,21],[-7,17],[-1,2],[-25,65],[-5,12],[-3,55],[0,5],[-1,1],[-2,2],[-10,18],[-3,6],[-19,63],[-4,15],[-13,62],[-6,30],[-2,11],[-8,63],[0,19],[3,12],[5,12],[2,3],[2,5],[2,4],[31,65],[0,2],[1,97],[3,33],[14,71],[-39,75],[-31,0],[-12,12],[-5,4],[-3,17],[2,5],[11,46],[0,1],[3,39],[-12,76],[-1,7],[-1,4],[-31,21],[-41,-51],[-3,-7],[-3,-1],[-34,-9],[8,140],[-18,32],[-5,8],[-5,10],[-26,44],[-1,2],[-26,47],[2,24],[11,122],[0,3],[1,17],[1,27],[-1,6],[-1,6],[-2,8],[-4,5],[-5,-4],[-5,-7],[-8,-9],[-5,-3],[-1,0],[-16,8],[-47,23],[-28,17],[-3,2],[-16,20],[-2,3],[-5,12],[-21,65],[0,1],[-1,3],[1,8],[7,70],[3,25],[0,6],[1,7],[0,3],[-1,107],[-1,16],[-2,2],[-2,4],[-18,19],[-1,1],[-2,1],[-2,1],[-21,-4],[-1,-1],[-13,-12],[-10,-25],[-4,-14],[-4,-8],[-3,-3],[-8,2],[-6,15],[-1,5],[-1,1],[-2,8],[-4,36],[-1,6],[1,44],[3,23],[9,21],[0,10],[0,12],[0,9],[0,1],[0,4],[-3,25],[-3,15],[-13,56],[-1,1],[-2,3],[-7,16],[-23,67],[-8,24],[1,7],[5,21],[0,6],[0,5],[-16,72],[-2,8],[-21,91],[-3,6],[-66,46],[-3,-1],[-44,20],[-31,14],[-9,-10],[-8,2],[-3,1],[-15,17],[-3,6],[-7,18],[-2,11],[0,27],[-15,35],[-5,3],[-29,19],[-8,-5],[-24,-25],[-6,-12],[-3,-4],[-6,1],[-5,3],[-3,2],[-2,3],[-6,10],[-9,27],[-5,26],[-3,13],[-3,9],[-2,8],[-1,3],[-4,14],[-4,7],[-8,11],[-20,13],[-9,1],[-5,0],[-24,2],[-13,7],[-6,10],[-4,9],[-2,5],[-1,3],[-7,26],[-54,-4],[-2,-17],[-5,-38],[-3,-20],[-4,-10],[-13,-17],[-31,-32],[-5,-3],[-9,2],[-4,16],[-1,13],[0,21],[1,10],[0,4],[0,3],[0,7],[-1,3],[-1,10],[-2,5],[-6,7],[-4,4],[-70,77],[-32,32],[-13,7],[-20,-13],[-43,-38],[-29,-21],[-15,-20],[-40,-75],[-1,-4],[-1,-2],[0,-3],[-1,-12],[-4,-43],[-3,-16],[-3,-4],[-23,-32],[-1,-1],[-2,-1],[-1,0],[-4,0],[-14,-2],[-7,4],[-9,6],[-18,2],[-17,-6],[-4,-2],[-1,-1],[-52,-48],[-1,0],[-3,-6],[-20,-49],[-5,-18],[-2,-7],[-1,-9],[-8,-23],[-38,-57],[-1,-9],[-1,-2],[-8,-25],[-6,-21],[4,-36],[-3,-62],[-1,-47],[-2,-37],[-10,-72],[1,-44],[4,-51],[-2,-47],[-36,32],[-36,48],[-24,32],[-17,26],[-62,84],[-88,124],[-101,138],[-68,91],[-127,176],[-2,2],[-19,26],[-46,65],[-29,40],[-105,142],[-202,281],[-168,229],[-59,80],[-95,131],[-89,121],[-5,7],[-128,175],[-35,46],[0,1],[-183,69],[-61,22],[-51,22],[-48,18],[-49,22],[-37,14],[-57,19],[-248,91],[-22,7],[-55,22],[-42,14],[-30,11],[-53,18],[-36,11],[-95,29],[-107,33],[-142,48],[-60,18],[-28,11],[-29,11],[-12,3],[-39,15],[-52,11],[-1,-1],[-15,-14],[-59,-54],[-62,-59],[-22,-25],[-113,-109],[-34,-33],[-69,-69],[-37,-37]],[[75001,41206],[-2,4],[-60,108],[-35,63],[-94,171],[0,1],[-52,97],[-26,44],[-13,33],[-108,248],[-58,120],[-44,94],[-61,124],[-27,55],[-41,91]],[[47919,47382],[-6,-78],[3,-83],[3,-53],[2,-61],[3,-25],[21,-180],[30,-170],[9,-50],[1,-9],[6,-74],[1,-13],[-5,-160],[-1,-7],[-4,-41],[2,-29],[-1,-9],[5,-34],[16,-58],[17,-35],[20,-23],[4,-2],[20,-9],[69,-80],[8,-9],[3,-11],[8,3],[3,2],[15,-12],[100,-108],[22,-34],[4,-5],[2,-6],[10,-18],[17,-40],[12,-39],[8,-30],[36,-85],[25,-61],[5,-13],[14,-28],[37,-73],[22,-42],[16,-21],[14,-5],[46,-17],[30,-16],[8,-5],[14,-5],[28,-9],[28,-22],[55,-52],[46,-45],[1,-1],[5,-3],[12,-7],[23,-5],[21,4],[4,3],[4,3],[13,12],[39,52],[32,60],[15,35],[4,17],[7,27],[8,31],[6,34],[6,89],[3,46],[9,61],[2,6],[4,15],[10,36],[7,19],[6,19],[7,18],[0,1],[98,168],[51,127],[29,69],[1,2],[11,20],[12,22],[12,23],[10,12],[65,81],[40,53],[9,11],[27,30],[35,21],[23,4],[28,-3],[4,-2],[20,-9],[18,2],[16,1],[21,-9],[24,-21],[16,-15],[2,-1],[5,-10],[8,-13],[4,-8],[9,-22],[2,-8],[10,-34],[8,-32],[4,-25],[1,-16],[3,-83],[0,-23],[-2,-13],[4,-26],[25,-151],[2,-17],[18,-35],[9,-18],[1,-5],[30,-107],[12,-42],[10,-53],[4,-26],[0,-1],[7,-86],[2,-139],[-3,-179],[-3,-75],[-3,-62],[0,-32],[0,-65],[-1,-82],[5,-114],[5,-30],[7,-54],[10,-44],[-2,-10],[20,-124],[5,-19],[16,-60],[48,-105],[8,-5],[1,-1],[8,-6],[33,-33],[89,-173],[18,-37],[41,-70],[13,-23],[3,-12],[13,-46],[39,-102],[14,-37],[35,-57],[10,-104],[-7,-92],[-23,-137],[-11,-33],[-29,-61],[-39,-74],[-40,-75],[-66,-170],[-18,-258],[-1,-15],[-9,-35],[-34,-131],[-28,-126],[-7,-112],[21,-88],[4,-16],[27,-21],[4,-11],[16,-63],[28,-109],[2,-52],[21,-77],[6,-23],[84,-176],[32,-19],[2,-3],[48,-79],[17,-44],[9,-14],[12,-5],[37,-43],[16,-18],[11,-23],[6,-21],[5,-21],[6,-34],[7,-41],[0,-21],[2,-82],[-2,-42],[-2,-53],[-5,-10],[-6,-13],[-10,-74],[-11,-178],[-1,-2],[0,-2],[-2,-16],[-6,-57],[-4,-11],[-2,-4],[-42,-259],[-6,-90],[0,-55],[3,-45],[1,-3],[2,-29],[6,-63],[10,-61],[7,-46],[6,-22],[6,-22],[3,-25],[14,-99],[17,-63],[4,-8],[21,-44],[8,-31],[6,-19],[8,-26],[23,-80],[1,-4],[0,-7],[10,-104],[5,-34],[8,-32],[8,-28],[5,-19],[3,-33],[0,-1],[10,-89],[9,-81],[7,-39],[15,-85],[12,-73],[4,-30],[13,-82],[3,-34],[8,-96],[5,-104],[0,-49],[0,-7],[-7,-131],[-6,-39],[-18,-84],[-38,-129],[-23,-75],[-9,-53],[-6,-37],[-19,-84],[-22,-92],[-22,-99],[-9,-40],[-16,-57],[-38,-107],[-15,-43],[-3,-8],[-13,-33],[-26,-48],[-10,-19],[-26,-67],[-10,-45],[-19,-76],[-12,-34],[-31,-81],[-12,-23],[-40,-42],[-27,-6],[-7,-2],[-14,-13],[-19,-18],[-16,-20],[-19,-24],[-12,-24],[-6,-11],[-11,-22],[-7,-27],[-13,-44],[-14,-52],[-10,-65],[-10,-97],[-6,-75],[-2,-28],[-9,-61],[-7,-31],[-14,-61],[-6,-48],[-1,-21],[-1,-35],[-4,-80],[1,-2],[6,-29],[-2,-36],[-12,-57],[-1,-2],[-18,-61],[-10,-206],[0,-3],[-5,-16],[-6,-39],[-5,-76],[5,-30],[2,-28],[1,-19],[0,-24],[-7,-107],[-7,-25],[-19,-43],[-34,-114],[-28,-107],[-15,-44],[-6,-11],[-29,-50],[-3,-6],[-7,-6],[-5,-6]],[[49589,35133],[-25,0],[-18,0],[-423,29],[-369,24],[-470,32],[-624,42],[-501,34],[-364,19],[-103,6],[-128,7],[-148,7],[-1263,68]],[[45153,35401],[5,111],[13,400],[5,131],[2,84],[4,131],[31,885],[0,4],[9,243],[9,237],[4,124],[7,226],[3,43],[1,40],[1,44],[3,80],[10,306],[9,277],[9,251],[4,84],[9,284],[12,367],[4,102],[2,70],[2,58],[26,710],[19,521],[-1,69],[6,140],[0,2],[4,116],[5,109],[4,121],[0,3],[4,88],[0,13],[4,136],[8,167],[2,88],[1,73],[2,62],[5,258],[8,98],[5,99],[12,309],[9,226],[15,415],[3,84],[4,83],[1,44],[4,120],[2,84],[6,124],[5,135],[2,72],[2,55],[7,211],[9,313],[1,24],[12,344],[15,401],[20,571],[7,259],[19,535],[0,1],[9,268],[12,286],[0,2],[9,262],[2,62],[12,350],[24,681],[5,138]],[[59661,40482],[-134,-324],[-14,-33],[-89,-219],[-20,-51],[-26,-61],[-46,-117],[-19,-44],[-40,-98],[-86,-215],[-71,-175],[-55,-134],[-34,-82],[-2,-6],[-23,-54],[-1,-3],[-22,-56],[-87,-214],[-58,-142],[-31,-81],[-88,-218],[-33,-76],[-36,-95],[-35,-84],[-30,-73],[-55,-134],[-27,-66],[-37,-95],[-14,-36],[-38,-95],[-115,-283],[-26,-63],[-2,-7],[-8,-19],[-53,-134],[-33,-80],[-53,-131],[-30,-73],[-68,-171],[-38,-95],[-14,-36],[-9,-26],[-1,0],[-50,-134],[-17,-44],[-76,15],[-48,7],[-23,4],[-129,18],[-52,7],[-42,4],[-69,7],[-15,0],[-18,0],[-8,2],[-10,2],[-46,0],[-32,3],[-42,4],[-16,2],[-32,5],[-152,13],[-16,2],[-59,7],[-37,4],[-28,3],[-32,4],[-99,7],[-33,4],[-17,4],[-14,0],[-13,0],[-28,3],[-42,4],[-17,3],[-18,2],[-20,2],[-36,4],[-107,7],[-31,3],[-55,4],[-11,4],[-41,4],[-106,10],[-18,0],[-78,11]],[[56127,36294],[-9,37],[6,17],[8,24],[15,85],[10,13],[2,45],[3,57],[35,125],[1,2],[7,-7],[23,20],[2,9],[11,103],[0,17],[0,55],[0,144],[-8,28],[-2,8],[-2,6],[-3,8],[-19,53],[-3,41],[0,11],[-6,80],[-2,30],[-8,116],[7,5],[1,10],[-2,68],[-7,73],[-2,3],[-11,27],[-3,2],[-1,-3],[-4,-16],[-3,-12],[0,33],[1,64],[-1,12],[-2,30],[0,8],[-2,14],[-12,92],[0,4],[-6,59],[-7,81],[-2,14],[-4,47],[-7,71],[-3,35],[-4,72],[-1,93],[0,59],[0,73],[-1,47],[0,39],[0,9],[0,19],[0,105],[-4,22],[-1,2],[0,5],[-13,111],[-10,86],[-5,48],[0,12],[3,88],[1,17],[2,0],[4,-3],[2,1],[2,1],[1,5],[11,256],[-1,9],[-10,87],[-12,34],[-3,9],[-11,24],[-1,4],[-3,4],[0,1],[-9,10],[-3,8],[-6,101],[-1,25],[0,3],[-3,44],[1,65],[5,86],[2,29],[2,35],[11,97],[3,67],[3,83],[-1,13],[-11,43],[0,1],[0,1],[-25,57],[-17,40],[-7,16],[-10,25],[-23,21],[-5,8],[-3,7],[0,3],[-10,102],[0,23],[1,43],[1,21],[4,23],[2,3],[-6,83],[-3,35],[-32,72],[-3,6],[-27,30],[-7,8],[-5,13],[-5,14],[-1,7],[-2,32],[0,1],[0,3],[1,50],[-1,4],[-2,24],[-9,32],[-13,44],[-11,38],[-11,32],[-18,58],[-24,75],[-2,4],[-15,41],[-4,1],[-20,21],[-30,80],[-3,6],[-16,50],[-15,44],[-29,90],[-7,25],[-5,18],[8,33],[0,1],[-26,75],[-26,77],[-15,46],[-3,11],[-4,28],[3,24],[1,9],[0,20],[-2,4],[-29,58],[-9,13],[-45,69],[-34,49],[-2,3],[-11,28],[-2,6],[0,2],[2,14],[-4,12],[-13,27],[-5,0],[-6,1],[-23,12],[-28,22],[-6,7],[-45,129],[3,4],[-1,45],[-30,75],[-8,13],[-4,5],[-11,0],[-1,2],[-4,7],[-2,6],[-8,20],[-1,3],[0,14],[0,8],[3,20],[-26,101],[0,2],[-7,27],[-2,10],[-27,120],[-1,4],[-3,9],[-1,1],[-18,27],[-70,60],[-3,0],[-16,-6],[-10,-5],[-3,-2],[-7,20],[-20,58],[-12,15],[-40,73],[-3,8],[-19,108],[-5,12],[-5,13],[-2,3],[0,1],[2,9],[0,6],[-1,61],[-8,30],[-6,-3],[-6,-3],[-12,28],[-9,52],[-10,61],[-2,29],[0,3],[5,37],[0,7],[-8,75],[-2,10],[0,2],[-4,20],[-5,12],[-1,6],[-12,12]],[[45153,35401],[-480,22],[-611,28],[-1240,58],[-418,19],[-701,22],[-1005,32],[-134,4],[-795,25],[24,573],[128,3085],[4,99],[18,412],[-18,67],[-606,2271],[-20,77]],[[75001,41206],[-1,0],[-46,-22],[33,-171],[46,-233],[28,-134],[31,-146],[28,-120],[22,-102],[6,-33],[18,-87],[18,-95],[12,-62],[72,-513],[8,-87],[0,-8],[-3,-58],[-6,-113],[-4,-58],[-11,-182],[-16,-255],[-13,-219],[-5,-94],[-10,-164],[-14,-241],[-6,-147],[-1,-27],[-12,-215],[-6,-146],[-4,-80],[-15,-368],[-9,-240],[-1,-69],[-4,-120],[-3,-117],[-8,-162],[0,-2],[-9,-145],[-7,-142],[-10,-91],[-4,-70],[-38,-411],[-9,-113],[-1,-6],[-2,-23],[-1,-69],[-6,-66],[-1,-47],[4,-73],[-12,-156],[-7,-117],[-32,-360],[-3,-66],[-3,-117],[-10,-294],[-10,-350],[-4,-30],[-3,-28],[-1,-77],[-1,-36],[-13,-135],[-12,-153],[-26,-346],[-3,-62],[-3,-43],[0,-193],[-6,-48],[7,-51],[10,-87],[6,-76],[5,-40],[7,-55],[15,-138]],[[74942,32002],[-31,0],[-15,0],[-142,-4],[-14,0],[-100,4],[-23,3],[-55,0],[-79,-3],[-77,-4],[-91,-4],[-25,-3],[-34,-4],[-64,0],[-21,0],[-32,0],[-37,0],[-66,0],[-11,-2],[-8,-2],[-54,0],[-151,8],[-100,-15],[-31,2],[-18,2],[-61,7],[-16,1],[-68,3],[-22,0],[-17,1],[-53,2],[-142,0],[-137,8],[-97,3],[-276,4],[-118,0],[-169,3],[-49,-10],[-37,-8],[-63,-3],[-116,-29],[-1,0],[-13,14],[-17,22],[-23,34],[-11,12],[-35,37],[-10,0],[-28,-21],[-2,-2],[-18,-20],[-27,-28],[-21,-23],[-29,-32],[-3,-2],[-7,-4],[-14,-8],[-10,-5],[-31,-16],[-8,-5],[-28,-17],[-5,-5],[-3,-9],[-3,-11],[0,-16],[-1,-59],[0,-22],[-66,45],[-6,23],[-4,16],[-26,104],[-1,2],[-44,-21],[-10,-6],[-24,-13],[-20,-11],[-1,-1],[-28,35],[-8,-2],[-6,-2],[-10,-12],[-4,-12],[0,-12],[4,-6],[10,-6],[5,-7],[2,-7],[1,-13],[-13,-73],[-2,-13],[-4,-23],[-7,-4],[-5,6],[-19,75],[-7,-21],[-8,-23],[-3,-11],[-17,-20],[-3,-6],[-20,56],[-32,-21],[-5,22],[-13,57],[-2,6],[0,1],[-5,2],[-8,-7],[-19,-19],[-17,-18],[-5,-5],[-22,39],[-1,1],[-6,8],[-19,44],[-1,9],[0,2],[1,6],[1,16],[0,22],[-1,6],[-2,6],[-5,13],[-11,25],[-2,5],[-9,10],[-3,5],[1,19],[-3,5],[-5,7],[-10,17],[-11,15],[-7,40],[0,51],[-16,7],[-14,7],[-10,-17],[-1,-1],[-13,7],[-6,37],[0,5],[0,35],[-14,18],[-3,9],[-9,28],[5,17],[4,19],[-4,9],[-8,16],[-15,19],[-11,2],[-5,1],[-1,-1],[-15,-24],[-6,22],[-3,11],[-6,-12],[-6,-10],[-12,7],[-6,4],[-10,-13],[-10,-13],[-17,-22],[-17,-11],[-15,3],[-4,1],[-11,-25],[1,-6],[1,-42],[-10,-27],[-1,-2],[0,-8],[-2,-50],[-6,8],[-7,10],[-18,4],[-1,-26],[-1,-18],[-12,-29],[-9,29],[0,18],[1,29],[-9,22],[-16,-7],[-17,-18],[-14,-4],[2,44],[-16,-4],[-5,-36],[-19,-8],[-16,37],[-15,-33],[-3,-2],[-13,-8],[-1,-1],[-15,-4],[-3,-15],[-7,-36],[-9,22],[-3,8],[-14,-11],[-20,0],[-20,0],[-20,14],[-12,-3],[-11,36],[-17,15],[-11,-12],[-6,-7],[-8,26],[-3,11],[-7,3],[-9,4],[-19,-4],[-13,0],[-17,8],[-19,0],[-18,-29],[-18,-29],[-2,-4],[-11,-49],[-1,-2],[-6,3],[-6,4],[-11,-2],[-8,-2],[-21,-3],[-11,-7],[-14,-6],[-3,-2],[-1,-2],[-10,-30],[-5,-15],[-15,-17],[-1,-1],[-3,3],[-9,11],[-10,19],[-17,32],[-10,33],[-14,29],[-13,0],[-15,-22],[-6,-24],[-6,-27],[-2,1],[-12,7],[-19,-15],[-17,22],[-14,18],[-15,26],[-18,7],[-19,-10],[-2,-1],[-14,-11],[-15,-25],[-10,-15],[-8,-11],[-12,0],[-12,7],[-14,-11],[-16,-21],[-10,-19],[-14,-3],[-12,-20],[-1,-2]],[[54873,43740],[-6,-32],[-12,-48],[-23,-43],[-29,-48],[-46,-76],[-16,-18],[-18,-15],[-25,-14],[-70,-51],[-13,3],[-14,0],[-19,-22],[-31,-32],[-17,-15],[-65,-55],[-62,-47],[-20,-22],[-33,-29],[-19,-11],[-17,-14],[-17,-19],[-22,-21],[-24,-44],[-25,-51],[-13,-33],[-21,-44],[-34,-65],[-12,-11],[-32,-47],[-27,-48],[-9,-22],[-19,-32],[-50,-66],[-15,-22],[-71,-113],[-37,-47],[-58,-87],[-18,-29],[-22,-40],[-41,-92],[-21,-40],[-23,-58],[-23,-65],[-18,-44],[-14,-26],[-11,-24],[-6,-12],[-16,-18],[-13,-4],[-12,-36],[-16,-73],[-7,-39],[-7,-41],[-5,-66],[-5,-43],[-3,-51],[-8,-80],[-6,-51],[-2,-40],[7,-37],[5,-91],[12,-55],[-1,-1],[-1,-1],[-22,-41],[-2,-5],[-1,-1],[-4,-11],[-2,-16],[0,-21],[0,-3],[4,-58],[-1,-20],[-12,-82],[-1,-6],[0,-4],[-7,-31],[-2,-7],[-13,-34],[-2,-12],[-1,-21],[2,-38],[0,-14],[-7,-111],[1,-60],[0,-16],[-3,-14],[-12,-38],[-20,-92],[0,-2],[-1,-43],[0,-19],[5,-52],[1,-8],[-3,-174],[-1,-32],[5,-56],[22,-184],[11,-81],[30,-141],[6,-25],[2,-6],[6,-21],[8,3],[19,7],[2,1],[13,-6],[2,-1],[8,-10],[7,-14],[3,-8],[0,-2],[24,-70],[11,-49],[23,-103],[3,-15],[26,-126],[0,-7],[1,-39],[1,-34],[-1,-33],[-9,-92],[2,-5],[27,-82],[6,-21],[5,-11],[-97,-262],[-24,-62],[-10,-29],[-147,-393],[-18,-48],[-56,-149],[-32,-87],[-10,-26],[-12,-29],[-10,-29],[-21,-58],[-40,-106],[-20,-47],[-16,-40],[-46,-113],[-21,-51],[-33,-84],[-15,-58],[-16,-66],[-56,-240],[-5,-19],[-7,-32],[-9,-33],[-4,-14],[-10,-40],[-6,-18],[0,-17],[7,-25],[53,-124],[14,-40],[0,-11],[0,-3],[-17,-30],[-1,-1],[-7,-7],[-1,-7],[-8,-57],[1,-7],[2,-8],[17,-34],[9,-10],[20,-6],[8,-17],[4,-10],[1,-5],[2,-5],[4,-16],[2,-12],[0,-20],[0,-2],[-1,-3],[-1,-32],[-15,-55],[-11,-37],[0,-1],[-2,-4],[-4,-175],[0,-7],[-19,-30],[-1,-3],[-6,-69],[-3,-222],[3,-33],[8,-46],[5,-27],[9,-9],[1,0],[9,0],[16,24],[3,6],[11,-5],[3,-8],[29,-91],[-7,-14],[-14,11],[-27,11],[-31,7],[-17,18],[-12,15],[-22,33],[-14,32],[-20,51],[-10,26],[-22,65],[-30,91],[-20,-58],[-13,-33],[-20,-25],[-27,-33],[-15,-18],[-11,-15],[-15,-21],[-13,-26],[-16,-25],[-37,-65],[0,-1],[-16,-29],[-20,-30],[-5,-7],[-16,4],[-12,7],[-17,4],[-15,-4],[-29,-7],[-15,-4],[-17,-7],[-17,-7],[-23,-15],[-25,-18],[-16,-7],[-16,0],[-11,4],[-5,3],[-11,7],[-25,8],[-30,-40],[-15,-15],[-17,-11],[-17,-11],[-19,-11],[-10,-40],[1,-47],[2,-55],[5,-101]],[[52295,35068],[-282,5],[-572,10],[-127,2],[-770,13],[-180,3],[-347,6],[-141,3],[-135,11],[-51,4],[-8,0],[-93,8]],[[9469,41931],[-299,-12],[-453,-17],[-92,-2],[-706,-15],[1,-198],[-789,20],[-732,4],[-91,0],[-335,1],[-168,1],[-54,0],[-83,1],[-66,0],[-781,4],[-476,2],[-713,-10],[-61,-1]],[[87156,30228],[24,-43],[24,7],[10,4],[10,123],[25,-72],[27,-26],[-4,117],[23,-37],[10,-37],[14,-50],[-18,-69],[40,-139],[51,-54],[4,-4],[29,0],[30,36],[26,-83],[24,-80],[3,-6],[19,-38],[15,-66],[33,-54],[24,-59],[22,-32],[30,-33],[32,-18],[51,-26],[37,-14],[35,-19],[15,-123],[38,-44],[37,-26],[30,-54],[37,-80],[30,-113],[-7,-120],[-49,3],[14,-116],[-22,-120],[-31,69],[-26,-18],[-24,76],[-16,84],[-20,87],[-34,124],[-25,69],[-22,55],[-23,58],[-21,40],[-40,84],[-22,40],[-68,109],[-32,48],[-37,54],[-33,47],[-23,33],[-58,69],[-35,44],[-20,22],[-28,29],[-44,58],[-39,44],[-37,36],[-63,59],[-73,58],[-47,47],[-64,62],[-31,26],[-36,29],[-66,51],[-45,33],[-95,47],[-23,14],[-29,8],[-41,36],[-20,37],[-29,51],[-21,36],[-54,98],[-34,117],[32,116],[39,-7],[91,-66],[64,-112],[45,-30],[55,-32],[35,-19],[50,-25],[35,-51],[46,-95],[69,-72],[43,-77],[32,-40],[24,-51],[52,-7],[25,-15],[19,-22]],[[87093,30975],[-20,-65],[-25,-77],[-6,-8],[-40,-50],[-23,32],[-7,66],[-4,40],[-35,-24],[-29,-20],[-42,31],[-18,13],[5,113],[95,80],[54,87],[77,44],[59,51],[30,0],[3,-31],[9,-100],[-47,-120],[-36,-62]],[[88032,31357],[-27,-33],[-26,0],[-28,4],[-25,-15],[0,-31],[-1,-45],[-41,58],[-49,18],[-44,-25],[-38,11],[-14,109],[-1,15],[20,76],[-26,66],[4,80],[38,14],[28,4],[30,0],[38,-33],[30,-22],[32,-14],[28,-22],[26,-3],[4,-1],[18,-2],[17,-1],[15,-106],[-3,-39],[-5,-63]],[[87379,31772],[8,-65],[31,7],[31,-7],[25,-4],[22,-22],[28,-22],[22,-58],[11,-87],[-34,-70],[17,-98],[17,-29],[17,-29],[29,-7],[23,-44],[51,29],[21,-116],[36,0],[24,-33],[31,-4],[46,-40],[42,-25],[47,-37],[26,-40],[23,-40],[3,-131],[-15,-113],[-35,22],[-25,36],[-22,37],[-24,29],[-33,25],[-47,30],[-46,32],[-49,44],[-43,40],[-38,29],[-39,29],[-27,19],[-27,25],[-39,25],[-39,33],[-33,29],[-29,30],[-36,51],[-10,94],[-2,73],[-14,80],[10,87],[-29,106],[27,22],[23,36],[22,-7],[22,29]],[[85685,31394],[117,-44],[84,44],[40,10],[31,19],[13,58],[20,116],[21,95],[17,-4],[17,-47],[13,-36],[25,-80],[16,-59],[24,-94],[31,-84],[48,-113],[21,55],[34,-22],[17,-88],[-2,-94],[-26,-15],[-28,0],[-33,4],[-33,-4],[-33,-3],[-21,0],[-26,7],[-29,14],[-32,15],[-24,11],[-27,14],[-25,8],[-40,-11],[-40,-4],[-45,22],[-38,18],[-32,22],[-36,22],[-31,4],[-41,7],[-53,3],[-37,4],[-43,4],[-40,0],[-31,0],[-41,-4],[-26,0],[-39,-4],[-30,-3],[-82,-7],[-38,-8],[-43,-7],[-30,-7],[-23,-4],[-27,-7],[-26,-4],[-28,-4],[-42,-7],[-32,-7],[-34,-7],[-36,-11],[-38,-11],[-50,-15],[-29,-3],[-36,-15],[-53,-15],[-41,-14],[-29,-11],[-30,-11],[-36,-11],[-26,-7],[-39,-15],[-44,-14],[-47,-15],[-26,-11],[-25,-11],[-43,-18],[-32,-11],[-28,-11],[-36,-18],[-39,-15],[-43,-14],[-32,-15],[-36,-11],[-39,-18],[-40,-14],[-35,-15],[-30,-14],[-35,-15],[-41,-22],[-32,-14],[-24,-11],[-35,-22],[-37,-22],[-28,-11],[-34,-15],[-30,-14],[-30,-15],[-22,-11],[-24,-11],[-38,-14],[-49,-26],[-41,-21],[-29,-15],[-30,-15],[-34,-18],[-36,-18],[-33,-18],[-38,-18],[-34,-22],[-35,-18],[-43,-19],[-41,-21],[-48,-26],[-35,-15],[-33,-18],[-28,-18],[-26,-14],[-28,-19],[-29,-14],[-23,-15],[-24,-14],[-29,-19],[-36,-18],[-35,-22],[-27,-14],[-28,-15],[-38,-25],[-44,-29],[-43,-33],[-56,-37],[-43,-32],[-48,-33],[-51,-40],[-41,-29],[-43,-33],[-34,-26],[-34,-25],[-40,-33],[-24,-18],[-29,-22],[-38,-33],[-30,-25],[-30,-26],[-38,-29],[-45,-40],[-46,-36],[-32,-28],[-184,-290],[-37,63],[-50,87],[-21,37],[0,4],[-29,50],[-29,77],[0,78],[34,37],[16,0],[160,90],[5,10],[22,54],[32,11],[28,44],[28,33],[31,40],[32,-15],[31,51],[45,58],[31,29],[-12,70],[10,19],[3,6],[16,-14],[6,-84],[32,18],[34,33],[43,33],[37,29],[34,36],[22,22],[30,18],[43,26],[22,7],[33,22],[39,22],[35,25],[31,22],[29,25],[35,44],[34,18],[10,-109],[31,-18],[26,29],[24,-4],[47,-29],[22,33],[28,11],[19,-29],[27,18],[38,22],[52,44],[35,40],[37,-8],[41,33],[38,4],[36,0],[39,22],[29,21],[33,8],[34,0],[39,3],[28,11],[46,33],[40,7],[38,15],[36,18],[19,15],[22,18],[29,29],[27,4],[34,3],[51,15],[40,14],[36,22],[38,15],[25,25],[37,48],[40,65],[29,48],[36,36],[38,-11],[31,22],[30,-18],[24,-22],[40,7],[24,18],[32,37],[27,32],[32,0],[26,30],[29,3],[32,15],[30,-4],[31,-18],[30,33],[34,-4],[34,29],[46,15],[54,51],[38,54],[29,48],[30,65],[30,44],[36,47],[30,-11],[23,48],[32,-29],[31,-15],[36,-11],[42,7],[37,15],[43,-18],[43,14],[37,11],[38,22],[44,-22],[45,0],[37,4],[40,-29],[43,-44],[17,-4],[27,55],[3,106],[-13,112],[35,142],[79,113],[106,-25],[68,-142],[31,-37],[36,-14],[51,-44],[28,-69],[32,-116]],[[87094,31549],[-30,-6],[-22,54],[20,121],[27,98],[56,76],[25,-51],[0,-142],[-17,-69],[-19,-43],[-8,-19],[-2,-2],[-12,-12],[-13,-4],[-1,0],[-4,-1]],[[87012,31805],[-33,0],[-4,131],[10,149],[9,6],[51,31],[-27,124],[-20,43],[50,33],[29,-26],[28,-105],[24,-69],[49,-11],[0,-58],[-8,-14],[-44,-85],[-56,-87],[-58,-62]],[[86320,32042],[8,-95],[4,-87],[-17,-44],[-8,69],[-14,95],[-21,0],[-27,51],[-14,-11],[-12,-58],[25,-51],[3,-77],[-18,-120],[-6,-120],[6,-91],[-33,25],[-35,69],[-16,91],[-23,81],[5,134],[39,77],[-15,69],[8,47],[17,48],[6,16],[25,71],[15,40],[12,25],[15,8],[39,18],[44,-18],[16,-115],[7,-49],[-18,-52],[-17,-46]],[[88282,32431],[-19,-120],[-31,4],[-7,49],[9,39],[-1,57],[-1,79],[-9,18],[-12,3],[0,22],[34,19],[3,-35],[18,-47],[1,-18],[15,-70]],[[88253,32723],[-5,-64],[-16,-49],[-17,-2],[0,4],[-19,47],[-9,45],[-3,15],[-11,0],[0,7],[0,9],[7,31],[18,19],[8,32],[10,77],[17,2],[-2,-68],[7,-77],[1,-3],[14,-25]],[[86139,32479],[-68,-51],[-41,20],[-11,5],[-22,18],[-32,26],[0,105],[30,142],[57,88],[99,80],[25,84],[42,3],[3,-51],[4,-54],[-6,-110],[-15,-41],[-4,-13],[-32,-106],[-5,-47],[-24,-98]],[[90008,35748],[-80,-240],[-31,-77],[-61,-185],[-31,-91],[-41,-128],[-61,-174],[-28,-81],[-36,-112],[-33,-106],[-33,-109],[-36,-113],[-15,-55],[-15,-58],[-15,-47],[-22,-84],[-29,-106],[-39,-142],[-63,-229],[-24,-95],[-20,-65],[-40,-135],[-13,-55],[-30,-102],[-21,-72],[-27,-95],[-31,-106],[-15,-54],[-24,-91],[-55,-204],[-36,-131],[-20,-62],[-35,-128],[-37,-138],[-26,-98],[-18,-59],[-34,-109],[-36,-145],[-24,-84],[-21,-80],[-25,-95],[-28,-116],[-27,-106],[-31,-109],[-40,-157],[-23,-84],[-38,-83],[-8,-110],[-24,-98],[-49,-167],[-21,-66],[-18,-95],[-18,-69],[-31,-127],[-44,-175],[-23,-106],[-36,-174],[-22,-91],[-22,-99],[-35,-200],[-11,-76],[-17,-80],[-23,-142],[-28,-139],[-22,-120],[-25,-120],[-20,-98],[-23,-88],[-18,-95],[-14,-72],[-12,-99],[-39,-65],[-4,-99],[3,-72],[-21,-88],[1,-156],[-20,-157],[-32,-342],[-24,44],[2,185],[-13,69],[-11,99],[-15,47],[-15,87],[-23,81],[-18,87],[-26,25],[-23,102],[-26,124],[-17,80],[-13,80],[-4,121],[14,131],[0,91],[-24,123],[27,132],[41,43],[19,-25],[-12,-77],[3,-76],[-7,-109],[-8,-139],[5,-131],[19,-135],[46,-18],[39,15],[32,-22],[0,-102],[22,-29],[26,11],[18,51],[27,84],[17,40],[11,149],[-2,95],[38,91],[26,138],[13,116],[16,88],[28,98],[24,98],[20,84],[14,80],[14,80],[19,80],[2,92],[16,105],[37,189],[37,117],[8,73],[23,54],[38,84],[-5,73],[-33,36],[-43,80],[34,0],[6,55],[26,26],[28,-51],[34,40],[-38,32],[14,84],[4,26],[39,32],[22,0],[19,7],[12,4],[-5,46],[-2,20],[-4,20],[-8,45],[-30,99],[22,91],[20,41],[28,61],[22,-62],[15,91],[-25,33],[-9,47],[-11,55],[22,69],[34,47],[12,51],[24,7],[-1,21],[-1,45],[29,-29],[23,64],[16,45],[-22,58],[22,68],[0,1],[32,-65],[14,-4],[24,-7],[-5,120],[-22,15],[-34,3],[-18,73],[29,40],[28,-11],[-1,28],[-3,60],[8,46],[9,56],[14,40],[12,32],[-4,59],[26,40],[16,20],[7,9],[32,40],[44,25],[47,99],[30,109],[24,-3],[4,-1],[9,62],[-1,16],[-2,50],[-2,58],[16,26],[1,72],[-19,12],[-4,3],[5,15],[15,40],[23,47],[30,47],[-53,131],[20,131],[27,0],[19,-67],[5,-16],[18,21],[37,19],[0,-26],[-2,-58],[-3,-84],[0,-22],[19,44],[7,40],[9,55],[10,76],[-18,43],[-15,34],[-7,6],[-18,15],[-23,-32],[-9,100],[-2,20],[-39,0],[-6,23],[-14,50],[-11,65],[13,57],[4,20],[24,40],[10,-4],[36,-15],[-5,110],[17,32],[18,-40],[29,-43],[16,-77],[9,120],[16,-74],[4,-17],[-2,-82],[-1,-30],[4,-84],[17,-48],[31,51],[11,62],[10,113],[27,-47],[1,69],[17,4],[24,76],[23,102],[-41,66],[-12,138],[19,91],[35,55],[27,69],[21,40],[26,-164],[24,55],[-13,107],[-3,20],[-15,146],[0,131],[11,124],[27,80],[14,-66],[-5,-84],[19,-94],[17,-142],[29,113],[5,31],[10,67],[9,87],[29,77],[49,84],[23,101],[20,95],[17,55],[3,11],[21,87],[4,15],[20,51],[21,7],[2,55],[1,43],[14,42],[23,67],[17,34],[17,32],[10,113],[5,86],[2,23],[1,106],[36,43],[18,22],[4,-6],[12,-19],[13,-88],[26,131],[6,36],[7,48],[14,4],[14,3],[22,21],[10,9],[33,94],[30,106],[26,69],[32,95],[22,57],[10,26],[29,60],[9,233],[37,66],[34,-37],[4,-36],[21,-34],[-23,-77],[-11,-58],[-22,-87],[-42,-95],[-12,-55],[-30,-83],[-25,-59],[-18,-87],[-28,-73],[-16,-84],[-16,-62],[-23,-69]],[[90971,41435],[7,-1],[11,7],[7,-18],[23,-67],[-14,-8],[-33,-28],[-6,-5],[-26,-50],[-16,52],[-9,28],[-20,83],[-3,15],[-20,31],[0,76],[19,0],[33,-60],[8,-11],[22,-40],[17,-4]],[[91085,41544],[-12,-89],[-31,19],[-1,47],[0,52],[14,39],[2,6],[3,4],[9,51],[30,19],[18,-85],[-21,-52],[-9,-9],[-2,-2]],[[91148,41834],[-30,-90],[-26,30],[-7,8],[-2,-25],[-3,-27],[-5,-11],[-15,-32],[-24,-19],[0,-1],[-13,-42],[-25,0],[0,48],[47,113],[9,130],[-1,22],[-24,106],[23,47],[39,26],[33,-8],[25,-40],[-19,-89],[18,-146]],[[90678,42433],[48,-11],[0,4],[32,-22],[42,-33],[49,-54],[18,-12],[8,-2],[4,-1],[14,-18],[20,-25],[3,-32],[4,-48],[-19,-19],[-32,4],[-7,1],[-7,19],[-12,35],[-23,40],[-30,-19],[11,-51],[17,-83],[7,-85],[6,-68],[3,-124],[-1,-117],[-27,62],[-18,44],[-16,76],[-7,110],[-35,109],[-8,37],[-3,1],[-26,4],[-26,-80],[-34,-14],[23,257],[8,88],[10,26],[4,2],[0,-1]],[[90617,42132],[-12,-10],[-20,90],[0,123],[7,98],[0,53],[25,19],[23,-49],[12,-26],[-9,-119],[-22,-176],[-4,-3]],[[89939,43387],[-19,-69],[-18,-15],[-5,-3],[-21,47],[-5,-8],[-20,-35],[-16,36],[-24,-6],[-6,-1],[3,80],[9,20],[17,38],[28,-11],[19,-14],[16,-11],[9,-11],[33,-37]],[[89065,44541],[-37,-50],[-35,80],[-11,102],[-5,80],[5,58],[32,-36],[13,-58],[8,-34],[4,-4],[20,-25],[22,-40],[7,-14],[-23,-59]],[[92620,42492],[-369,-918],[-4,9],[-146,-358],[-262,-644],[-315,-851],[-242,-642],[-4,-9],[-191,-535],[-156,-348],[-38,-84],[-104,-238],[-18,56],[78,321],[130,279],[151,447],[142,342],[18,44],[13,32],[190,446],[19,80],[64,269],[25,68],[44,114],[47,251],[57,153],[73,126],[52,167],[73,265],[87,177],[9,18],[95,168],[21,62],[9,137],[152,561],[142,325],[176,605],[182,350],[133,605],[112,177],[-7,190],[126,149],[84,-87],[77,0],[66,-204],[33,-18],[70,-142],[17,-128],[-87,-160],[-93,-120],[-117,-117],[-156,-302],[-193,-440],[-265,-648]],[[80864,33629],[-14,7],[-1,1],[-16,60],[-3,13],[5,7],[3,4],[74,73],[-1,6],[-7,84],[-1,4],[-8,94],[-2,-1],[-48,-48],[-2,-1],[-19,-19],[-4,34],[-8,67],[-1,3],[5,39],[1,3],[25,58],[5,25],[2,23],[-2,19],[-7,27],[-9,14],[-14,3],[-6,-9],[0,-1],[-13,-22],[-8,-30],[-7,-23],[-12,-26],[-14,12],[-3,1],[-2,2],[-6,27],[-2,24],[5,43],[4,11],[3,9],[3,40],[-4,40],[-4,9],[-1,8]],[[86177,38439],[17,18],[25,48],[22,14],[18,-22],[14,-83],[30,18],[6,3],[3,34],[6,83],[27,87],[32,37],[13,80],[7,38],[7,35],[7,4],[27,17],[27,-36],[25,-25],[39,-19],[24,-47],[2,-4],[27,-112],[27,18],[22,-40],[22,-6],[7,-2],[30,-18],[33,-54],[22,-66],[16,-106],[6,135],[-26,106],[-43,76],[-14,64],[-14,64],[-30,-37],[-37,26],[-21,47],[-15,44],[-26,22],[-35,43],[-36,51],[-5,120],[18,66],[9,33],[14,54],[8,21],[22,63],[18,98],[4,117],[20,65],[24,33],[38,-33],[17,-105],[29,-11],[20,-62],[6,91],[-33,62],[-9,87],[8,84],[10,91],[38,22],[31,22],[-26,22],[0,145],[-24,-127],[-21,-7],[-26,-102],[-24,-4],[-31,11],[-39,58],[-19,102],[-29,58],[-31,121],[-5,109],[39,-4],[45,0],[-37,40],[-26,7],[-23,-7],[-33,-7],[-8,142],[-10,138],[-18,-87],[-25,7],[-27,7],[-29,40],[-21,73],[-17,44],[-3,38],[-3,42],[-2,22],[-3,55],[-4,65],[0,25],[-2,73],[18,99],[26,31],[4,5],[41,55],[23,48],[18,39],[22,91],[28,109],[31,51],[38,0],[11,-3],[20,-8],[37,0],[22,59],[16,12],[2,7],[24,-14],[23,-13],[8,11],[21,29],[14,59],[23,43],[23,19],[27,32],[36,8],[39,-33],[49,-15],[50,-3],[40,-55],[53,-62],[26,-29],[-1,-7],[8,-1],[5,-11],[1,5],[24,-30],[49,-58],[42,-44],[24,-40],[0,-72],[-6,-106],[15,-73],[7,-80],[-42,-269],[38,83],[22,-51],[23,-109],[32,-102],[-9,-73],[-17,-76],[-20,-66],[-14,-21],[-37,43],[-30,0],[-22,-91],[35,29],[17,-22],[19,-10],[7,-48],[2,-185],[25,171],[21,36],[56,29],[28,-91],[51,-3],[42,-66],[29,-36],[27,-30],[39,-58],[31,-73],[-14,-98],[35,-44],[31,-72],[33,-113],[3,-142],[2,-102],[-5,-106],[-23,-84],[-23,-62],[-21,-58],[-46,-29],[-30,-55],[-29,-65],[67,51],[32,11],[31,11],[13,14],[20,69],[19,41],[18,36],[29,-55],[26,-80],[16,-113],[1,-145],[-1,-95],[28,-40],[2,-95],[21,11],[31,-14],[36,-29],[40,-91],[22,-70],[29,-65],[14,-88],[-8,-87],[31,36],[27,-32],[0,83],[-42,132],[-26,72],[-18,51],[-15,80],[-16,73],[-31,8],[-27,18],[-28,43],[-22,128],[25,98],[-12,77],[-19,69],[-21,73],[-2,91],[-34,94],[-10,99],[3,109],[5,113],[37,76],[19,37],[48,0],[46,-55],[28,-15],[63,-10],[4,40],[-53,10],[-47,110],[-58,0],[-53,0],[-18,14],[-12,66],[-37,58],[-31,102],[-22,109],[-2,95],[-29,14],[-20,37],[-33,55],[-44,25],[-38,47],[-22,124],[-9,113],[4,106],[-36,116],[-43,117],[-14,98],[-14,95],[-19,58],[8,80],[20,80],[20,80],[10,98],[-2,117],[-3,131],[22,84],[37,44],[33,47],[35,95],[41,-19],[24,-127],[4,-131],[1,-4],[2,-5],[24,-75],[-1,40],[-1,51],[10,73],[16,44],[-12,42],[-1,3],[-10,31],[-15,102],[39,66],[32,18],[23,0],[20,4],[17,3],[22,0],[8,-8],[14,-14],[29,29],[37,19],[40,25],[28,-3],[2,-1],[4,-1],[33,-10],[32,0],[31,26],[4,4],[6,-3],[25,-12],[28,-69],[-1,-37],[-1,-29],[-19,-94],[24,-7],[3,-1],[35,-14],[35,-73],[21,-84],[7,-55],[5,-39],[-27,-77],[-26,-19],[-9,-6],[-10,-6],[-25,-16],[-24,-88],[-6,-27],[-16,-67],[25,-19],[10,47],[3,15],[41,59],[7,-6],[37,-27],[0,-120],[19,-15],[24,88],[21,87],[27,55],[35,-11],[38,-33],[0,-42],[-1,-56],[-1,-106],[-10,-142],[-16,-131],[-10,-98],[-25,-77],[19,-98],[-3,-31],[-4,-46],[0,-83],[27,47],[37,51],[-6,109],[37,51],[2,21],[3,53],[3,64],[44,48],[3,25],[4,51],[7,73],[1,95],[26,116],[24,44],[22,76],[-18,37],[-30,-18],[-39,7],[-1,127],[12,110],[9,102],[-33,-15],[-31,-51],[-23,51],[2,20],[6,53],[-26,54],[-9,99],[22,54],[-44,48],[-7,44],[-5,32],[-1,106],[-29,25],[17,84],[24,55],[43,-19],[1,34],[1,54],[25,14],[29,25],[10,8],[6,-4],[37,-29],[26,-65],[18,145],[-26,62],[-21,21],[-15,16],[-29,22],[-17,24],[-7,8],[-28,21],[-10,8],[-34,-47],[6,138],[30,77],[-1,70],[-1,57],[20,128],[2,31],[6,93],[17,85],[7,38],[26,113],[35,-18],[10,-109],[25,-117],[4,-127],[25,-37],[12,59],[7,36],[39,-73],[19,-65],[31,-55],[10,-62],[13,-83],[20,-102],[27,29],[-12,132],[0,2],[16,113],[1,106],[24,22],[9,58],[-21,36],[-39,4],[-22,95],[-32,47],[-34,44],[-21,51],[31,62],[18,43],[34,-25],[40,-37],[37,70],[-7,131],[-42,36],[-33,62],[-31,15],[-26,32],[-10,157],[17,40],[6,15],[-27,43],[-26,37],[-18,-21],[-25,-128],[-1,0],[-21,-8],[-6,29],[7,40],[5,32],[0,1],[1,4],[20,142],[16,120],[7,85],[2,24],[3,19],[14,90],[9,69],[31,15],[22,8],[10,3],[31,-55],[5,-25],[14,-66],[23,-65],[28,-26],[26,-54],[23,-121],[11,-101],[24,-66],[27,-76],[33,-30],[28,33],[7,4],[28,14],[20,-47],[0,-40],[-1,-51],[3,-46],[3,-56],[22,-106],[-15,-101],[-2,-51],[-2,-73],[-20,-99],[10,-138],[5,-24],[11,-49],[8,-34],[32,-59],[69,-83],[45,-112],[-17,-49],[-37,20],[-39,62],[-26,40],[-15,-25],[-27,-44],[-34,-87],[10,-78],[7,-61],[-6,-22],[-11,-43],[-20,-73],[-18,-105],[9,-106],[16,-73],[16,-79],[6,-30],[5,-146],[-29,-62],[16,-69],[26,-40],[33,-7],[20,54],[34,11],[31,48],[3,-40],[4,-59],[0,-35],[-3,-96],[-10,-123],[8,-35],[9,-35],[0,-83],[2,-61],[2,-45],[6,-26],[12,-61],[-1,-84],[-14,-37],[-20,26],[-32,29],[-38,22],[-8,-3],[-22,-8],[18,-66],[12,-101],[-7,-88],[17,-91],[1,-52],[1,-43],[-6,-23],[-18,-75],[-19,-54],[-24,7],[-31,18],[-6,2],[-15,5],[-11,16],[-7,10],[-21,33],[-26,-19],[-2,1],[-47,7],[-45,-19],[-21,110],[-35,43],[-6,-109],[-10,-113],[-9,5],[-27,13],[-27,-24],[-1,-1],[10,-95],[7,-34],[7,-39],[2,-2],[24,-49],[41,-40],[21,-43],[30,-62],[1,-91],[-20,-55],[-3,-91],[-9,-14],[-9,-15],[-20,-51],[-7,-22],[-10,-29],[-27,-22],[30,-76],[26,-91],[22,62],[20,-84],[5,-18],[7,-17],[33,-78],[30,-120],[23,-66],[-5,-120],[8,-7],[24,-22],[3,-19],[11,-76],[0,-11],[-2,-127],[12,-87],[22,80],[-3,113],[21,80],[-11,105],[-10,157],[-25,65],[-21,73],[-25,142],[21,95],[20,80],[28,7],[2,0],[1,73],[30,44],[35,14],[31,-29],[5,1],[24,7],[22,26],[14,17],[9,23],[13,35],[26,44],[24,-55],[13,-32],[6,-5],[27,-24],[18,91],[-4,42],[-7,67],[25,22],[17,49],[10,27],[8,31],[19,68],[-6,87],[24,58],[33,15],[6,-66],[5,-19],[12,-50],[2,-88],[1,-39],[-9,-146],[-22,-48],[-9,-21],[-4,-77],[30,-43],[34,-22],[10,-49],[6,-28],[-10,-43],[-13,-59],[-7,-20],[-18,-49],[-23,-29],[-27,-40],[38,-36],[20,-3],[6,-1],[13,3],[19,4],[25,-65],[5,37],[8,72],[27,55],[39,7],[31,-95],[28,-85],[5,-13],[26,102],[21,91],[-34,51],[-21,102],[-23,105],[-3,27],[-15,123],[14,71],[6,34],[11,80],[4,124],[37,-55],[32,-36],[39,-7],[38,-80],[1,18],[7,84],[1,83],[-21,102],[-13,93],[-2,20],[-29,109],[-40,84],[-5,43],[-8,77],[-4,99],[-7,91],[26,18],[18,-69],[16,-117],[28,-40],[41,-22],[30,-98],[20,-36],[30,36],[12,127],[1,66],[0,69],[29,-18],[7,-57],[10,-67],[33,-47],[27,-18],[6,-4],[19,-15],[36,44],[26,-14],[14,-55],[18,-73],[21,-36],[1,-3],[15,-52],[19,0],[24,58],[11,113],[1,18],[33,26],[-4,-113],[15,-102],[25,-113],[36,-62],[6,-13],[23,-49],[29,-33],[6,-7],[29,11],[-5,150],[-23,58],[-5,94],[2,12],[17,87],[-4,18],[-15,62],[-10,109],[-4,26],[-8,61],[-9,35],[-11,38],[-33,88],[-2,3],[-20,128],[-8,59],[-5,39],[-16,66],[-8,23],[-23,71],[-21,77],[-35,76],[-23,66],[-4,11],[9,87],[-6,16],[-21,57],[-18,113],[-6,26],[-15,72],[-7,47],[-6,44],[-25,109],[-21,124],[-14,80],[-26,99],[35,32],[32,19],[20,-69],[6,-19],[8,-28],[12,-45],[24,-40],[34,-76],[23,-55],[33,-47],[29,-55],[28,-65],[20,-73],[34,-51],[35,-66],[42,-18],[-12,66],[-6,29],[-31,76],[-33,128],[-5,91],[-2,43],[-11,117],[-36,116],[11,1],[38,3],[48,-55],[36,-40],[17,-3],[24,-49],[83,-165],[118,-155],[0,-67],[0,-185],[6,-189],[-13,-47],[-37,23],[-6,199],[-2,80],[-3,23],[-2,10],[-4,-5],[-24,-32],[-15,16],[-20,21],[-17,124],[-25,-10],[-4,-120],[3,-41],[3,-43],[10,-91],[3,-22],[2,-17],[11,-88],[12,-102],[7,-83],[5,-52],[47,-98],[28,-106],[15,-113],[7,-102],[24,-113],[2,-11],[21,-105],[23,-84],[8,-29],[24,-58],[22,-59],[25,-47],[40,-73],[28,-47],[22,-73],[1,-47],[0,-58],[-4,-132],[-7,-57],[-2,-19],[-13,-15],[-76,55],[-37,55],[-1,-106],[-7,-44],[-5,-25],[90,-22],[3,-70],[1,-28],[16,-131],[-17,-48],[-25,-40],[-26,-69],[-32,22],[-24,17],[-13,8],[-5,-19],[-9,-39],[-28,34],[-2,3],[-21,32],[-7,-91],[3,-33],[5,-58],[8,-113],[9,-20],[15,-34],[-15,-26],[-5,-98],[-4,-26],[-6,-47],[-13,4],[-27,7],[-40,15],[-36,36],[-27,26],[-27,21],[-8,8],[-24,66],[-6,17],[-29,48],[-46,76],[-31,35],[-4,5],[-13,36],[-17,48],[-7,-7],[-28,-29],[-27,11],[-28,32],[1,-76],[-22,-29],[-24,-29],[-20,-31],[-4,-6],[-14,-18],[-17,-22],[-39,-47],[-40,-26],[-26,48],[-15,2],[-28,5],[-11,-106],[4,-14],[20,-58],[-15,-102],[31,-33],[1,-20],[1,-60],[17,59],[12,39],[36,40],[38,18],[29,15],[31,3],[25,-10],[27,-48],[9,-16],[19,-35],[-27,-43],[-27,-51],[-15,-54],[-5,-19],[-11,-30],[-18,-50],[-2,-51],[-2,-59],[-8,-34],[-10,-49],[-11,-102],[18,14],[21,-11],[28,22],[40,69],[31,-18],[4,1],[28,3],[34,11],[3,-3],[43,-41],[43,-22],[1,0],[32,4],[28,-31],[4,-6],[-9,-138],[-20,-73],[-24,-62],[-11,-21],[-11,-22],[-5,-2],[-21,-9],[-1,-5],[-16,-137],[-19,-91],[-19,-51],[-19,-95],[-18,-84],[-29,-18],[-21,-69],[-33,-51],[-31,-66],[-30,-43],[-28,-139],[-31,-14],[-43,-22],[-59,11],[-46,40],[-55,4],[-21,-91],[-35,-22],[-35,-99],[-18,-7],[-21,-156],[-20,-99],[-22,-109],[-15,-62],[-27,-18],[-22,-4],[-27,18],[-31,30],[-8,54],[-10,48],[-11,94],[-15,109],[15,117],[28,47],[29,62],[-5,55],[15,54],[-7,88],[-12,51],[-15,65],[-18,88],[3,83],[-4,-1],[-35,-13],[-29,54],[6,77],[-1,91],[-22,-87],[-24,-62],[-3,-43],[-6,-70],[-36,-105],[0,-1],[-26,-84],[2,-7],[17,-54],[33,-19],[-15,-105],[-5,-120],[-22,-139],[-24,-11],[-26,-47],[34,-124],[4,-131],[23,-91],[-4,-84],[-14,62],[-26,29],[-4,-80],[-22,-94],[23,-40],[20,-51],[-1,-102],[4,-73],[-18,-29],[-41,-15],[-33,18],[27,-91],[23,-116],[10,-69],[1,-106],[-29,-186],[-28,37],[-23,36],[-2,58],[-13,51],[-25,48],[-24,87],[-26,-65],[-5,-124],[-34,-58],[-27,3],[14,-116],[-9,-110],[-25,-131],[-42,-72],[-37,-37],[-7,30],[-13,61],[-40,84],[-4,2],[-22,9],[-26,109],[-22,33],[-5,7],[-7,9],[-26,35],[-33,11],[0,-61],[1,-41],[9,4],[16,7],[3,-8],[17,-32],[1,-54],[1,-30],[27,-47],[9,-28],[7,-23],[23,-10],[4,-1],[10,-70],[4,-87],[1,-80],[-10,-80],[-15,-80],[-8,-77],[-12,-102],[-20,-134],[-22,-110],[-17,-87],[-19,-120],[-22,-106],[-7,-73],[-1,-3],[-12,-51],[-16,-80],[-34,-84],[-20,-66],[-9,-32],[-12,-44],[0,-124],[-41,-207],[-46,-19],[-1,19],[-2,76],[-44,0],[-24,-33],[-16,150],[-33,200],[-4,60],[-4,45],[25,95],[-3,88],[27,25],[19,-25],[29,-62],[2,12],[11,75],[13,76],[-24,66],[31,36],[33,59],[32,-4],[22,-7],[16,58],[-2,32],[-6,125],[-11,64],[-7,41],[-16,98],[-5,7],[-20,30],[-17,62],[-24,116],[-31,-36],[6,-42],[12,-82],[-1,-7],[-10,-120],[-33,-33],[-19,-7],[-18,-8],[1,-7],[8,-51],[0,-76],[-30,-30],[-24,-101],[-40,-37],[-25,106],[-11,-88],[15,-98],[0,-98],[-34,14],[-38,15],[-16,-5],[-20,-6],[3,-26],[9,-98],[14,-105],[30,-77],[17,-106],[17,-120],[-25,0],[-32,-7],[-26,25],[-22,-40],[-21,37],[-25,44],[-33,-33],[22,-95],[31,-76],[46,21],[45,-25],[34,-76],[15,-132],[-13,-98],[-26,11],[-26,-51],[-4,84],[3,73],[-22,69],[-13,-58],[17,-139],[0,-120],[-30,15],[-18,62],[-12,43],[-27,0],[-31,-36],[-37,22],[-31,-8],[12,-76],[33,-29],[36,-11],[23,-84],[15,-40],[16,-73],[15,-98],[-16,-58],[-30,-44],[5,-73],[25,-36],[4,-37],[18,-18],[3,-21],[14,-15],[20,-80],[4,-40],[-3,-18],[-11,7],[-8,5],[-2,-49],[1,-10],[2,-46],[-1,-4],[-8,-19],[0,-59],[25,-59],[-14,-72],[-26,-121],[-37,-113],[-41,-65],[-37,7],[-10,62],[-15,80],[3,99],[14,98],[-25,91],[-37,18],[-26,-124],[20,-131],[23,-113],[-36,0],[-24,22],[-13,40],[-26,-3],[-30,-22],[-21,-51],[-25,-37],[-27,-3],[-26,32],[-20,44],[-8,51],[-22,22],[-16,36],[-26,44],[6,98],[9,88],[7,105],[-25,-14],[-4,-91],[-22,-73],[-17,-40],[8,-109],[-26,-29],[-22,-15],[-24,-44],[-22,55],[-33,-36],[-28,-22],[-35,-22],[-21,-18],[-17,51],[-15,69],[-12,65],[-17,84],[-6,149],[38,15],[9,109],[12,62],[11,55],[-8,69],[-13,80],[-48,58],[-21,-65],[-20,18],[-26,25],[-21,-80],[-7,102],[0,99],[-5,101],[14,102],[23,59],[5,83],[26,59],[35,-11],[16,-73],[28,-44],[35,37],[-31,91],[-12,102],[1,102],[17,83],[25,-73],[9,-91],[23,19],[19,43],[24,-47],[15,62],[18,36],[-28,40],[-26,11],[-26,-3],[-3,120],[29,113],[25,124],[-26,80],[-21,48],[-7,17],[29,98],[25,110],[11,94],[2,16],[10,83],[-34,-62],[-4,-12],[-20,-57],[-27,-99],[-11,-41],[-8,-32],[-31,-10],[14,-92],[1,-10],[-3,-102],[0,-150],[-39,-22],[-39,-7],[-28,-22],[9,-65],[-21,-29],[-28,11],[-33,43],[-33,69],[-24,99],[-8,94],[-7,84],[-14,73],[-10,87],[-29,99],[-4,76],[-1,22],[-12,95],[4,127],[-21,77],[-9,51],[-13,69],[-26,65],[9,47],[10,48],[-45,47],[-35,11],[-22,18],[-9,8],[-14,80],[-6,36],[-3,18],[14,66],[-12,23],[-16,28],[-19,33],[-8,14],[4,-51],[3,-36],[1,-16],[7,-68],[0,-127],[-1,-36],[0,-59],[3,-91],[-24,-44],[30,-83],[6,-102],[-7,-45],[-4,-25],[25,-51],[-6,-44],[-5,-36],[18,-27],[9,-13],[23,-62],[-2,-28],[-8,-88],[0,-164],[16,-156],[-41,-8],[5,-49],[7,-60],[4,-33],[9,-76],[0,-22],[-2,-73],[-26,-51],[-29,15],[-21,-70],[15,-36],[10,-91],[19,-120],[34,-102],[-5,-91],[-31,-4],[-4,-45],[-3,-31],[-12,-102],[-20,-26],[-23,-29],[19,-69],[4,-87],[10,-84],[-1,-113],[-31,-98],[26,-135],[24,-73],[-22,-33],[-23,-58],[-22,-36],[-26,7],[-22,-40],[-23,-66],[28,-21],[38,40],[12,-110],[38,-94],[40,25],[-2,-98],[17,-106],[21,-123],[-23,-73],[-23,-88],[-31,0],[-14,-3],[-48,-59],[-44,-54],[-84,-98],[-92,105],[-69,124],[-50,62],[-50,0],[-22,33],[-27,14],[-29,7],[-43,19],[-28,-8],[-21,59],[15,98],[23,29],[20,-40],[26,40],[37,29],[38,-69],[24,-11],[23,18],[-27,80],[-18,30],[-26,43],[-19,37],[-18,51],[20,109],[6,4],[17,10],[29,-3],[14,44],[11,36],[-32,47],[-27,48],[-21,61],[-16,70],[-19,76],[21,80],[27,66],[37,40],[29,0],[4,113],[6,134],[22,102],[20,40],[-28,62],[-23,80],[-10,91],[-16,77],[4,95],[-32,18],[-48,113],[-21,138],[-41,4],[-3,-73],[-26,43],[-17,84],[-6,84],[37,-55],[30,99],[37,58],[-48,62],[-40,51],[-19,54],[-26,59],[-20,116],[22,7],[17,30],[26,29],[-14,40],[-13,58],[-26,76],[-9,113],[-5,99],[9,98],[-18,55],[-12,112],[-20,-116],[10,-109],[-9,-73],[10,-66],[-10,-87],[10,-47],[1,-84],[-4,-142],[-12,-113],[-32,-84],[10,-113],[28,19],[7,-91],[-22,-11],[-27,11],[-23,40],[-32,36],[-33,33],[-28,33],[-23,32],[-2,150],[-34,-59],[-8,-102],[-31,-40],[-31,22],[-39,69],[-34,51],[-30,44],[20,106],[-7,94],[20,102],[-16,12],[-18,13],[-6,4],[-12,-98],[-4,-29],[-25,-138],[9,-51],[11,-171],[-26,-4],[-29,33],[-21,36],[-40,29],[-31,-14],[-12,-77],[-29,-69],[-24,-66],[-31,-32],[-32,-40],[-16,-88],[-5,-109],[-15,-102],[-43,7],[-16,-62],[-9,-72],[-34,-8],[-42,-14],[-28,-77],[-39,-32],[-3,-7],[-23,-66],[89,32],[13,15],[36,40],[54,-18],[38,-117],[29,-35],[51,-62],[9,-12],[12,18],[24,59],[37,76],[35,109],[11,135],[25,15],[26,10],[36,30],[36,-33],[33,-62],[32,-62],[33,-73],[24,-73],[26,-47],[40,-80],[34,80],[39,62],[62,-36],[3,-88],[-30,-87],[-35,-26],[-41,-58],[-20,-95],[-13,-153],[-2,-101],[-14,-84],[-36,91],[-22,-73],[-25,-22],[-7,102],[-36,153],[6,-113],[-3,-127],[5,-120],[-17,-66],[-33,7],[-30,-58],[-35,0],[-33,18],[2,-54],[36,-8],[41,-54],[54,25],[30,15],[45,-48],[11,-7],[112,29],[29,120],[35,-29],[9,-109],[-11,-34],[-15,-46],[42,-44],[0,-5],[-1,-100],[0,-48],[0,-36],[-24,-29],[-61,-29],[-12,123],[-18,36],[-9,-82],[-88,-69],[-19,29],[-25,101],[-29,-18],[-26,3],[-42,37],[-46,33],[-36,32],[-29,15],[-28,7],[-32,11],[-39,-7],[-40,14],[-34,-3],[-29,11],[-47,-15],[-55,40],[-31,26],[-31,14],[-31,4],[-26,0],[-31,7],[-11,5],[-271,21],[-1,0],[-37,3],[-5,-7],[-23,4],[-26,7],[-33,18],[-44,7],[-42,8],[-27,11],[-25,3],[-40,22],[-12,1],[-79,34],[-35,15],[-87,-14],[-196,-31],[-41,-23],[-38,-4],[-26,-11],[-29,-3],[-26,11],[-47,7],[-41,-4],[-25,-22],[-19,-18],[-25,-14],[-33,11],[-28,25],[-20,58],[21,131],[-26,-10],[-32,18],[11,-77],[-8,-94],[-23,-91],[-29,-66],[-37,-40],[-49,-29],[-38,-4],[-25,-11],[-37,-36],[-28,-47],[-36,-15],[-24,-36],[-29,32],[-31,37],[-33,29],[-17,40],[-38,120],[-8,51],[4,47],[18,44],[-5,47],[-15,-40],[-15,-58],[-22,0],[-26,44],[-2,-37],[30,-69],[20,-14],[31,-131],[10,-66],[31,-102],[-13,-102],[-33,-51],[-44,-22],[-43,8],[-20,-66],[-25,-11],[-28,-4],[-28,11],[-14,-80],[-28,-14],[-28,3],[-19,95],[-34,0],[-25,-116],[-22,-106],[-19,-29],[-22,-29],[-38,-22],[-40,-22],[-40,-62],[-35,-44],[-39,-43],[-30,-51],[-26,-33],[-27,-55],[-32,8],[-16,69],[-3,127],[-21,128],[-49,-29],[-30,61],[-4,-76],[34,-58],[27,-69],[-17,-55],[-22,-22],[-24,-14],[8,-88],[13,-76],[-22,-80],[-43,47],[-38,-37],[-31,-105],[-19,-113],[-45,-22],[-36,48],[-17,83],[2,124],[-19,29],[-29,4],[-9,-84],[-24,-58],[-29,7],[-33,29],[-23,37],[-22,-4],[-29,33],[11,-102],[17,-91],[-12,-84],[-21,-18],[-25,3],[-29,-21],[-25,25],[-24,-40],[-29,-29],[-23,-7],[-14,32],[-19,-51],[-23,-32],[-30,-15],[-35,-7],[-11,-95],[-46,15],[-50,-44],[-36,11],[-26,11],[-21,14],[-18,44],[-26,-3],[-33,32],[-29,59],[-4,43],[-2,18],[32,15],[17,-51],[9,84],[26,-95],[37,33],[35,73],[2,98],[36,58],[29,26],[-15,58],[6,66],[20,72],[17,91],[0,95],[-11,77],[-14,-48],[-33,-47],[-45,-40],[18,124],[1,123],[31,110],[12,131],[28,65],[16,-69],[38,-58],[38,-55],[24,51],[34,15],[22,80],[-12,116],[-32,-47],[-26,11],[-36,-22],[-21,98],[-19,73],[-15,26],[12,58],[-17,47],[0,62],[12,44],[-8,47],[-21,-40],[-18,7],[21,-29],[0,-91],[5,-98],[-28,-58],[-31,0],[-34,11],[-34,51],[-21,51],[17,65],[-15,113],[-36,47],[-36,37],[-21,62],[-5,116],[-36,44],[6,105],[18,106],[-9,95],[-26,29],[-27,69],[15,120],[16,84],[4,84],[-28,58],[-27,-4],[-5,110],[-17,116],[-26,66],[-31,29],[-33,47],[-2,77],[-14,54],[-23,88],[-35,-22],[-49,-37],[-29,66],[-5,0],[-70,3],[-17,8],[-3,-6],[-37,-63],[-12,-26],[-14,-11]],[[56127,36294],[-14,-39],[-13,-40],[-1,-20],[-4,-57],[-3,-55],[-3,-14],[-16,-94],[-7,-34],[-1,-12],[3,-35],[2,-6],[11,15],[2,1],[2,-3],[0,-11],[-14,-99],[-3,-17],[-9,-43],[-4,-17],[-8,-5],[-5,-3],[-21,-60],[-2,-6],[-1,-12],[5,-55],[24,-90],[8,-33],[15,-57],[0,-1],[15,-40],[0,-1],[6,-32],[12,-59],[3,-20],[7,-36],[27,-224],[0,-11],[-2,-9],[-4,-14],[-11,-31],[16,-45],[3,-59],[14,-71],[13,-33],[8,-20],[1,-3],[0,-11],[0,-39],[0,-20],[2,-15],[8,-58],[7,-48],[6,-4],[6,11],[7,6],[4,-1],[2,-1],[4,-13],[2,-37],[0,-7],[-3,-9],[-4,-11],[5,-10],[18,-79],[6,-25],[4,-18],[6,-31],[0,-3],[12,-77],[2,-14],[12,-83],[9,-57],[7,-141],[1,-22],[-23,-78],[-16,-54],[-12,-40],[-1,-4],[-9,-36],[-15,-51],[-10,-33],[-8,-29],[-13,-44],[-13,-44],[-56,-196],[-43,-146],[-1,-4],[-9,-32],[-12,-37],[-11,-40],[-51,-182],[-13,-47],[-3,-12],[-13,-46],[-26,-91],[-8,-30],[-16,-58],[-20,-73],[-16,-54],[-10,-37],[-18,-64],[-17,-60],[-1,-3],[-12,-40],[-11,-38],[-65,-228],[-39,-142],[-20,-69],[-11,-40],[-64,-230],[-60,-211],[-37,-131],[-164,-582],[-32,-110],[0,-1],[-107,-381],[-13,-47],[-22,-77],[-56,-204],[-130,-455],[-4,-14],[-56,-197],[-91,-329]],[[54843,28716],[-496,1307],[-306,805],[-735,1937],[-156,410],[-60,157],[-604,1592],[-53,139],[-121,5],[-17,0]],[[79914,27401],[32,-3],[22,30],[21,11],[1,-105],[-24,-77],[-63,-102],[-64,-124],[-31,-50],[-22,-41],[-83,-156],[-89,-197],[-27,-62],[-139,-324],[-38,-83],[-106,-222],[-189,-344],[-159,-247],[-81,-148],[-43,-57],[-14,-42],[-14,29],[-22,59],[-3,38],[8,53],[24,18],[14,20],[10,0],[1,15],[-11,39],[-7,22],[-3,9],[-11,153],[-28,66],[-74,229],[-11,62],[28,-4],[16,-5],[0,-19],[303,-276],[62,138],[46,138],[253,376],[46,63],[7,22],[9,3],[354,977],[71,194],[28,-76]],[[79957,27463],[-30,-37],[-24,96],[134,363],[4,-7],[9,-11],[4,-31],[10,-73],[-3,-24],[-8,-64],[-27,-49],[-19,-33],[-8,-9],[0,-1],[-2,-2],[0,-1],[-28,-46],[-12,-71]],[[80567,28348],[21,-9],[26,6],[-14,-107],[-13,-20],[-57,-65],[-36,-47],[-35,-48],[-37,-47],[-65,-77],[-87,-131],[-111,-182],[-43,-91],[-49,-51],[-25,4],[-25,25],[5,32],[20,22],[30,69],[1,24],[130,222],[140,198],[31,-7],[26,14],[31,57],[49,50],[30,68],[33,85],[24,6]],[[80248,28323],[-179,-439],[-8,66],[64,173],[15,47],[21,44],[45,114],[34,96],[15,18],[8,54],[17,109],[53,165],[7,11],[46,86],[11,-65],[-40,-151],[-16,-42],[-18,-78],[-75,-208]],[[80422,28837],[-13,-1],[-6,26],[0,2],[-3,6],[10,32],[20,17],[0,1],[62,96],[38,50],[27,50],[28,14],[0,-11],[0,-26],[-3,-24],[-71,-108],[-30,-20],[-42,-57],[-17,-47]],[[81254,29142],[8,-88],[-17,-68],[-60,-91],[-23,-14],[-43,-40],[-41,-33],[-116,-109],[-39,-33],[-52,-69],[-34,-44],[-22,-29],[-30,-36],[-23,-36],[-27,-33],[-16,-4],[-54,-22],[-14,44],[34,65],[13,51],[26,54],[45,41],[22,81],[34,53],[34,31],[81,110],[75,82],[55,89],[31,0],[59,107],[34,32],[25,-9],[35,-82]],[[80855,29464],[-29,-66],[-29,9],[-2,2],[2,3],[-6,0],[-5,25],[13,21],[35,34],[5,10],[19,2],[-3,-40]],[[80744,29415],[-10,-23],[4,0],[-44,-95],[-4,1],[-22,-43],[-4,-25],[-21,-46],[-6,-25],[-11,7],[-11,-7],[-3,25],[47,96],[16,23],[0,7],[13,27],[32,50],[8,28],[37,82],[44,89],[55,93],[29,36],[2,-75],[-41,-18],[-35,-68],[-23,-50],[-7,-28],[-23,-11],[-22,-50]],[[81336,29991],[-19,-24],[-20,55],[1,85],[32,37],[-32,58],[-8,36],[0,2],[-7,49],[0,55],[25,-14],[3,-2],[18,-43],[15,-36],[1,-2],[11,-19],[14,-14],[17,-7],[0,-1],[31,-114],[-75,-78],[-7,-23]],[[81457,31120],[-11,-63],[-15,17],[-22,79],[-2,48],[8,9],[18,-35],[13,-19],[11,-36]],[[80864,33629],[9,-25],[6,10],[25,44],[28,23],[8,6],[39,-69],[5,-109],[10,-124],[5,-4],[40,-36],[44,91],[12,-64],[3,-16],[2,-16],[6,-64],[26,-77],[-32,-40],[-28,-43],[10,-142],[16,-52],[10,-32],[10,-131],[28,-80],[14,-62],[-11,-58],[-4,-121],[-21,-61],[-31,-33],[11,-55],[27,-62],[29,-73],[37,-61],[43,-11],[31,-48],[3,-54],[8,-69],[28,-77],[7,-106],[16,-65],[8,-77],[6,-91],[-5,-160],[-27,-109],[-12,-98],[-20,-62],[4,-58],[-5,-99],[13,-108],[2,-16],[-35,-51],[-32,-32],[-26,18],[-21,51],[-12,-117],[-21,-25],[-18,-95],[-36,22],[-16,84],[-14,-88],[6,-127],[18,-87],[14,-77],[-31,-80],[-38,-73],[-43,37],[-41,54],[-18,113],[-19,26],[-25,18],[-25,36],[-23,18],[-6,99],[-25,105],[24,51],[-34,80],[-32,-36],[-19,47],[-19,33],[-8,66],[-24,18],[-21,22],[-19,72],[-15,99],[-26,91],[-37,80],[-23,-36],[-20,36],[-20,15],[-8,-15],[-10,-18],[22,-48],[18,-54],[31,-22],[22,-40],[9,-109],[25,-73],[23,-102],[25,-58],[24,-44],[8,-87],[30,-37],[22,-47],[21,-66],[-17,-80],[-12,-69],[-31,11],[-44,36],[34,-116],[18,-51],[24,-29],[26,-26],[21,66],[13,73],[19,-44],[20,-40],[20,-58],[-6,-110],[25,-36],[22,-36],[-16,-66],[-19,-55],[-30,-69],[-2,-13],[-29,-58],[-38,-97],[-41,-75],[-43,-75],[-40,-71],[-45,-86],[-10,25],[-3,-25],[2,-35],[-53,-64],[-75,-63],[-41,-65],[-32,-93],[-43,-61],[-18,-6],[2,20],[22,32],[3,114],[17,79],[-2,110],[-2,68],[-19,-3],[-33,24],[-32,4],[-8,-32],[-23,0],[-32,-29],[-23,-7],[-4,50],[6,82],[-9,50],[-10,43],[-21,36],[-20,0],[-13,24],[-12,29],[-12,107],[-11,-39],[13,-111],[4,-75],[17,-25],[19,0],[16,-3],[3,-68],[-13,-96],[9,-64],[-11,-47],[-20,-57],[-10,-46],[-25,-14],[-10,-61],[-12,11],[14,-39],[17,60],[14,-18],[17,61],[10,36],[28,57],[32,0],[46,-65],[14,15],[9,0],[13,14],[5,-32],[-9,-96],[-11,-47],[-17,-53],[20,-75],[5,-51],[-7,-20],[-28,-139],[-46,-164],[-55,-154],[-93,-238],[-74,-207],[-90,-239],[-34,-74],[-91,-263],[-333,-918],[-254,-361],[-70,-113],[-77,-225],[-101,112],[19,41],[38,-30],[14,0],[0,77],[-29,51],[-6,41],[-25,5],[-18,-61],[-37,-5],[-23,0],[-13,5],[-11,51],[-16,5],[-5,-55],[-13,14],[-26,28],[7,20],[0,120],[2,182],[5,77],[19,22],[5,94],[0,73],[-26,99],[-29,40],[-65,-8],[-35,-153],[-45,0],[-52,8],[-20,113],[13,76],[-30,84],[-70,105],[-43,84],[42,55],[19,142],[-2,83],[-52,-14],[-51,-120],[-29,-124],[14,-120],[-35,-58],[-7,112],[-1,121],[0,76],[-74,51],[-26,98],[-28,19],[-5,-92],[7,-47],[-40,-120],[-30,-99],[-2,-7],[-43,51],[-2,153],[15,266],[20,91],[101,211],[178,-83],[94,273],[43,120],[21,145],[18,146],[87,204],[41,160],[49,149],[10,-58],[18,66],[23,153],[55,0],[54,-48],[30,0],[28,77],[24,-7],[31,0],[-7,76],[-59,22],[-52,-29],[-45,47],[-30,-25],[-33,91],[-14,244],[-64,105],[-37,168],[-70,127],[-13,251],[-28,91],[-54,153],[-65,0],[-59,22],[-17,15],[19,98],[33,40],[33,7],[35,-18],[36,0],[20,-29],[30,62],[20,84],[28,72],[33,95],[5,44],[-28,-37],[-34,-83],[-26,-40],[-35,-44],[-21,-15],[-61,171],[-24,201],[0,113],[-42,211],[-35,138],[-58,98],[-85,59],[-40,47],[-16,98],[-15,161],[5,105],[28,29],[14,84],[50,22],[20,0],[13,-84],[49,-22],[51,8],[36,61],[16,77],[28,-29],[83,22],[49,43],[47,77],[0,120],[12,91],[-2,4],[-10,18],[-5,11],[-24,-8],[-2,-9],[-24,-89],[-20,-40],[-38,-29],[-57,-22],[-30,-7],[-28,-4],[-38,-43],[-32,-48],[-33,62],[-38,7],[-38,33],[-47,0],[-53,37],[-34,0],[-44,-139],[-37,-120],[-19,-44],[-13,-91],[-18,-54],[-26,0],[-4,113],[-22,152],[-61,128],[-30,109],[-10,113],[34,29],[6,131],[-30,142],[-31,0],[-28,-76],[-38,33],[-24,7],[8,142],[-24,69],[44,91],[17,91],[-11,17],[-8,12],[-4,-21],[-18,-84],[-43,-70],[-9,-51],[20,-40],[6,-112],[-5,-128],[-12,-98],[30,-62],[31,44],[4,102],[24,-70],[8,-160],[11,-182],[31,-211],[-29,-91],[-13,-160],[35,-153],[9,-73],[-9,-91],[-7,-62],[16,-98],[0,-84],[9,-84],[-37,0],[-14,-76],[2,-77],[-2,-25],[-8,-80],[-18,-22],[20,-160],[23,-56],[6,-14],[30,19],[0,21],[0,51],[28,124],[41,77],[21,65],[35,8],[14,91],[-9,91],[-9,54],[44,8],[19,-106],[9,-55],[-7,-174],[9,-172],[5,-116],[8,-37],[54,-36],[52,-62],[-4,-98],[-2,-91],[19,-120],[22,-102],[56,-51],[54,-62],[40,0],[22,-40],[-18,-51],[-19,-58],[19,-102],[13,-204],[13,-128],[38,-83],[56,-41],[8,-36],[-5,-120],[18,-69],[-70,-113],[5,-62],[39,-324],[-32,-7],[-26,-110],[-35,-21],[-68,-37],[-26,-105],[2,-102],[-32,-37],[-17,-69],[-33,7],[-37,-36],[-93,120],[-42,131],[-97,51],[-82,7],[-37,-7],[-57,-91],[-63,-127],[-40,7],[-23,0],[-2,-77],[-3,-76],[-16,0],[-20,-51],[-22,-47],[9,-70],[11,33],[26,66],[37,51],[24,-18],[35,-106],[26,-124],[-2,-149],[0,-189],[8,-99],[100,-335],[19,-113],[46,-76],[55,-120],[21,-40],[0,-69],[-13,-84],[-24,0],[-31,0],[0,-51],[42,-22],[13,-33],[24,98],[20,55],[12,0],[11,69],[31,29],[26,30],[41,61],[34,105],[0,1],[18,40],[29,-76],[4,-139],[-2,-149],[23,22],[29,-7],[-3,-70],[22,40],[54,59],[24,-219],[44,-62],[58,0],[7,-120],[22,-120],[23,-62],[24,-33],[33,0],[11,-80],[-2,-145],[12,-77],[-10,-98],[-56,29],[-42,-36],[-33,43],[-10,-43],[-35,-84],[-42,-37],[-12,40],[-7,30],[-7,83],[-26,55],[-17,0],[9,-77],[-9,-61],[24,-22],[13,0],[15,-62],[-15,-11],[-37,-66],[-19,-14],[-35,14],[24,-62],[-34,-47],[43,15],[60,83],[58,-58],[12,55],[30,65],[31,8],[12,-59],[-35,-76],[-28,-84],[-8,-105],[3,-30],[5,-40],[9,-76],[21,-5],[14,-2],[24,29],[0,54],[29,-3],[-53,-277],[-380,-350],[39,77],[9,127],[-42,19],[-84,-70],[-106,-62],[12,-127],[18,-76],[13,-70],[-18,-5],[-6,-2],[-37,-91],[72,55],[4,-40],[-31,-62],[-39,-18],[-29,-33],[-9,-22],[5,-21],[4,-19],[88,69],[63,91],[66,0],[10,84],[42,113],[40,91],[300,280],[43,91],[31,237],[39,153],[35,182],[19,196],[7,164],[-2,109],[26,121],[41,47],[107,-528],[-26,-95],[-7,-116],[21,-91],[-2,-113],[-21,-73],[-30,-29],[-19,-18],[-38,-33],[-49,-69],[-207,-313],[-22,-29],[-71,-102],[-68,-95],[-141,-197],[-135,-204],[-87,-138],[-62,-102],[-21,-33],[-41,-54],[-53,-77],[-51,-69],[-157,-240],[-93,-146],[-209,-353],[-42,-69],[-26,-44],[-19,-36],[-19,-33],[-28,-55],[-52,-94],[-69,-131],[-50,-102],[-46,-88],[-32,-58],[-21,-33]],[[76775,21810],[-14,44],[0,4],[-8,36],[-18,69],[-5,16],[-7,20],[-51,190],[-1,3],[-38,146],[-8,29],[-29,91],[-4,7],[-16,30],[-13,29],[-27,69],[-9,25],[-13,41],[-16,3],[-19,26],[-9,40],[-16,-15],[-4,47],[-12,0],[-14,19],[-14,32],[-6,51],[-16,48],[-14,18],[-28,-15],[-22,-58],[-12,22],[-1,1],[-19,24],[-17,-10],[-6,-37],[-13,7],[-13,-7],[-23,11],[-16,22],[-15,33],[-11,25],[-8,33],[-4,62],[0,51],[-12,33],[-21,-30],[-6,12],[-8,18],[-2,65],[-10,109],[-3,30],[-10,93],[-9,74],[-9,80],[-7,73],[-6,47],[-9,80],[-24,197],[-6,43],[-47,334],[-11,82],[-27,200],[-77,575],[-19,139],[-27,204],[-10,75],[-78,576],[-32,233],[-1,12],[-32,232],[-10,69],[0,2],[-46,348],[-33,244],[-22,160],[-15,113],[-30,222],[-68,506],[-24,182],[-9,77],[-21,156],[-16,117],[-19,137],[-4,30],[-17,128],[-20,156],[-19,139],[-34,247],[-36,272],[0,1],[-6,44],[-15,113],[-14,95],[-17,131],[-15,109],[-13,95],[-14,102],[-17,123],[-23,179],[-10,73],[-2,9],[-13,100],[-13,95],[-5,36],[-25,193],[-6,36],[-8,59],[-19,142],[-43,284]],[[61170,36156],[-2,-14],[-1,-8],[9,-33],[1,0],[5,-3],[7,-15],[3,-10],[3,-11],[5,-19],[0,-3],[-7,-30],[-11,-18],[-1,-9],[-3,-27],[0,-1],[0,-7],[0,-32],[5,-14],[5,-12],[7,-47],[9,0],[0,-29],[-2,-29],[3,-28],[8,-52],[12,-40],[4,-22],[5,-26],[10,-44],[9,-43],[6,-51],[1,-55],[10,-40],[12,-7],[10,-40],[16,-29],[13,-8],[19,22],[15,26],[6,-40],[-12,-29],[-12,-22],[2,-37],[1,-6],[0,-1],[9,-58],[7,-16],[9,-24],[-1,-24],[-1,-13],[0,-4],[-2,-32],[0,-66],[11,-32],[4,-55],[4,-36],[8,-33],[5,-22],[25,-47],[-1,-55],[8,-73],[4,-43],[1,-8],[1,-3],[5,-33],[8,-40],[8,-29],[0,-1],[8,-29],[2,-16],[4,-35],[9,-40],[12,-36],[10,-40],[14,-51],[9,-62],[5,-33],[8,-54],[16,-33],[12,-25],[4,-8],[8,-54],[-1,-13],[-1,-31],[-4,-37],[-4,-43],[4,-44],[13,-36],[13,-40],[-9,-84],[-6,-51],[18,-17],[2,-1],[0,-48],[-2,-32],[-2,-22],[2,-6],[13,-45],[4,-31],[2,-9],[6,-33],[5,-9],[7,-13],[10,-18],[9,-26],[13,-3],[1,-48],[-3,-73],[0,-7],[5,-54],[7,-80],[6,-37],[2,-47],[3,-40],[1,-40],[-1,-40],[1,-37],[2,-12],[7,-28],[1,-40],[0,-47],[4,-37],[15,-83],[27,-40],[14,-19],[5,-26],[12,-54],[23,-54],[7,-44],[3,-12],[13,-46],[-2,-16],[-3,-24],[-13,-51],[24,-22],[9,2],[4,2],[23,-48],[-9,-47],[-3,-16],[-5,-28],[0,-1],[5,-32],[0,-3],[2,2],[12,27],[8,47],[15,-58],[1,-39],[1,-16],[3,-47],[7,51],[3,3],[13,15],[19,11],[2,-12],[7,-43],[15,-87],[12,-25],[3,-4],[14,-18],[4,-6],[7,-9],[18,-43],[16,-51],[8,-11],[14,-19],[11,-11],[10,-61],[14,-48],[6,-22],[12,-58],[22,-87],[11,-51],[4,-18],[7,-30],[7,-58],[6,-36],[10,-44],[9,-22],[12,-25],[3,-6],[11,-23],[14,-33],[8,-29],[9,-29],[5,-48],[3,-47],[1,-62],[-1,-22],[-3,-47],[-9,-44],[-3,-12],[-7,-24],[1,-21],[0,-45],[9,-80],[1,-3],[7,-48],[1,-27],[1,-27],[6,-33],[-13,-48],[-17,-43],[-6,-17],[-3,-9],[-13,-36],[6,-24],[5,-27],[13,-37],[-24,-40],[-31,-36],[-12,-7],[-6,-4],[-7,-10],[-2,-3],[-8,-12],[-2,-8],[-10,-40],[-8,-10],[-6,-8],[-2,-14],[-5,-59],[-8,-33],[-5,-54],[-5,-31],[0,-2],[1,-9],[2,-21],[1,-14],[2,1],[16,3],[20,11],[14,-7],[14,-91],[11,-33],[6,-33],[-1,-8],[-4,-28],[-17,7],[-15,14],[-29,-65],[0,-33],[0,-36],[-8,-44],[0,-1],[-9,-39],[-1,-36],[1,-27],[0,-53],[-9,-26],[-14,4],[1,-44],[2,-62],[-14,-44],[-1,-3],[-1,4],[-9,32],[-30,7],[-2,-39],[0,-12],[-7,-11],[-9,-18],[1,-39],[0,-1],[-1,-1],[-21,-101],[4,-36],[3,-33],[9,-51],[-4,-34],[-1,-10],[-14,-29],[7,-32],[6,-36],[2,-12],[-4,-36],[-2,-4],[-13,-22],[-2,-3],[-17,-8],[-13,-40],[0,-69],[3,-47],[3,-55],[-11,-36],[-10,-55],[7,-47],[16,-33],[2,-12],[6,-32],[0,-80],[0,-2],[-1,-34],[-3,-44],[-3,-43],[-5,-44],[-2,-55],[-4,-57],[0,-1],[-5,-15],[-4,-18],[-14,-51],[-16,-43],[-19,7],[-17,-15],[-7,-43],[17,-30],[17,37],[17,14],[10,-12],[5,-6],[-2,-47],[0,-51],[-3,-47],[-6,-7],[-11,-12],[-9,-36],[0,-25],[-1,-19],[-13,-40],[-14,-13],[-1,-1],[-15,11],[-13,-4],[-6,-51],[7,-66],[-2,-36],[3,-55],[-6,-51],[0,-38],[0,-13],[-2,-25],[-5,-51],[-12,-29],[-4,-24],[-3,-16],[-7,-40],[-15,-29],[-11,6],[-1,1],[-15,0],[-10,-13],[-1,-2],[-14,-14],[-7,0],[-7,0],[-11,-25],[-10,-19],[-19,-15],[5,-81],[0,-6],[-2,-11],[-4,-15],[-4,-14],[-10,-18],[-8,-29],[12,-40],[7,-55],[-3,-58],[2,-7],[8,-44],[14,-22],[3,-55],[7,-32],[2,-11],[5,-29],[2,-15],[-9,-32],[-6,-19],[-11,-36],[1,-15],[4,-44],[-5,-62],[-15,-54],[1,-46],[0,-12],[3,-2],[16,-13],[9,-40],[-14,-47],[-8,-81],[-8,-47],[-13,-36],[-7,-59],[-2,-40],[2,-43],[11,-44],[14,-40],[18,-18],[10,-29],[-4,-26],[-4,-33],[-9,-62],[9,-32],[11,-33],[10,-58],[-1,-48],[1,-38],[0,-2],[0,-16],[-2,-46],[-12,-47],[14,-51],[2,-6],[7,-23],[12,-36],[7,-30],[-21,0],[-11,-18],[-2,-3],[-5,-13],[-2,-5],[-3,-8],[-7,-29],[5,-47],[21,-22],[7,0],[11,0],[16,-11],[13,-40],[15,-31],[1,-2],[21,-51],[14,-36],[7,-25],[5,-15],[-6,-51],[-9,-30],[-4,-14],[-15,-44],[-2,-51],[2,-18],[4,-29],[-15,-29],[-11,-4],[-17,11],[0,1],[-9,43],[-15,-15],[-11,0],[-15,-3],[-11,-19],[-7,-29],[-21,-54],[-13,-33],[-20,-4],[-15,-22],[-16,-36],[-26,-66],[-13,-18],[-8,-76],[-3,-106],[-5,-65],[-2,-88],[-15,-36],[-18,-33]],[[61507,23343],[-10,-18],[-11,-77],[-14,-51],[-22,-25],[-17,-44],[-2,-6],[-7,-19],[-6,-3],[-12,-5],[-23,-54],[-2,-37],[-2,-29],[-10,-5],[-5,-2],[-11,-22],[-8,-38],[0,-2],[-1,0],[-21,-11],[0,-32],[-1,-8],[-2,-58],[-7,-44],[-19,-33],[-19,-25],[-17,-55],[-14,-40],[-1,-36],[-10,-18],[-21,-4],[-13,-33],[-16,-40],[-15,-18],[-12,-47],[-15,7],[-17,-7],[-17,-40],[-5,-37],[-13,11],[-12,22],[-18,33],[-12,-8],[-23,-51],[-26,-3],[-15,-22],[0,-55],[-14,-25],[-11,11],[-6,43],[-11,4],[-10,-2],[-9,-2],[-16,-32],[-17,-11],[-22,45],[-1,2],[-1,0],[-11,0],[-33,4],[-5,-1],[-27,-7],[-11,-31],[-11,-30],[-13,-22],[-13,13],[-9,9],[-17,11],[-14,-19],[-11,-14],[-5,-6],[-12,-27],[-4,-10],[-8,-31],[-4,-18],[-8,15],[-1,2],[-8,17],[-3,2],[-31,-34],[-6,-9],[-5,-13],[-1,-5],[-2,-4],[-5,-22],[-14,-78],[-3,-63],[-1,-11],[-7,18],[-1,1],[-6,9],[-6,-2],[-27,-38],[-4,-5],[-8,-11],[-1,-2],[-4,-15],[-2,-18],[-1,-8],[-2,-38],[-3,-25],[-2,-21],[-5,-15],[-17,-59],[-2,-2],[-13,-20],[-11,-22],[-9,-29],[-51,-239],[-4,-27],[0,-6],[0,-2],[-1,-10],[12,-145],[0,-2],[4,-25],[0,-110],[0,-76],[0,-62],[0,-86],[0,-10],[-18,-93],[1,-14],[3,-10],[6,-8],[1,-2],[6,1],[17,36],[8,16],[-4,-53],[-9,-71],[-4,-29],[-3,-27],[-1,-9],[8,-47],[1,-4],[9,-63],[0,-5],[0,-2],[1,-7],[-10,-169],[-2,-9],[-20,-67],[-3,-12],[-1,1],[-15,16],[-15,-26],[-17,26],[-11,-15],[6,-51],[18,-58],[-15,-26],[-35,-47],[-14,22],[6,51],[-15,0],[-12,22],[-10,-18],[-10,47],[-20,-15],[-22,0],[-13,26],[-24,-29],[-22,-4],[-13,-18],[-16,0],[-2,-40],[-9,-33],[-12,0],[-15,25],[-14,-47],[-11,-36],[-8,-44],[-5,-69],[-11,-48],[-12,-14],[-24,-4],[-11,-7],[-11,-36],[2,-40],[-20,21],[-18,-25],[-13,-26],[5,-32],[16,0],[1,-59],[-6,-47],[15,18],[15,-25],[5,-62],[4,-47],[-7,-37],[12,-18],[12,-11],[8,-40],[-2,-47],[20,-33],[-2,-44],[0,-47],[9,-69],[10,40],[7,-51],[-10,-33],[-16,-4],[-9,-36],[-12,-11],[-11,-18],[-20,0],[19,-44],[-2,-13],[-6,-42],[-4,-24],[-6,-30],[-18,-29],[-4,-44],[-11,-4],[10,-29],[8,-36],[-17,-11],[-11,-33],[-21,4],[-16,-15],[-15,-3],[-6,-55],[-19,0],[3,51],[-14,22],[-3,0],[-11,0],[-19,-7],[1,36],[-19,-29],[-17,22],[-15,21],[-6,-43],[20,-7],[-3,-59],[0,-3],[-3,-22],[-29,-16],[11,-38],[1,-3],[-3,-4],[-29,-33],[-4,-25],[14,-25],[-21,-103],[-6,-1],[-4,-28],[0,-1],[18,-69],[-19,-27],[-4,-7],[-3,-6],[-7,-16],[-9,-2],[-2,0],[-14,-66],[4,-37],[2,-44],[0,-17],[0,-2],[-1,-2],[-4,-14],[2,-42],[-9,-46],[-1,-3],[2,-17],[-5,-57],[-1,-18],[12,-29],[5,-14],[22,-19],[-11,-53],[0,-1],[0,-1],[3,-18],[0,-9],[-6,-76],[1,-1],[0,-1],[-9,-80],[-4,-36],[-16,18],[7,47],[-17,-14],[-10,-18],[-3,-44],[-3,-13],[0,-28],[7,-21],[0,-1],[4,-4],[5,-8],[2,-4],[1,-3],[1,-3],[1,-9],[-1,-1],[0,-1],[2,-28],[-5,-40],[-7,-40],[-2,-3],[-35,-48],[-14,-18],[-15,-22],[-13,5],[-16,6],[-18,0],[-14,29],[-2,32],[0,10],[-1,13],[-1,19],[-3,12],[-7,15],[-1,1],[-6,5],[-7,-2],[-4,-1],[-4,-6],[-20,-30],[-8,-11],[-7,-22],[-2,-5],[-15,-66],[-3,-16],[0,-15],[6,-16],[-7,-26],[-1,-3],[-32,-75],[-7,-4],[-5,4],[2,16],[3,20],[0,10],[-2,7],[-45,17],[-3,-1],[-26,-61],[-4,-15],[-1,-23],[0,-7],[1,-23],[6,-39],[0,-3],[4,-22],[-13,-10],[-7,-61],[-1,-4],[-20,-81]],[[59250,16657],[-18,49],[-14,40],[-50,134],[-31,84],[-29,80],[-28,76],[-57,155],[-78,213],[-118,326],[-19,51],[-362,998],[-566,1564],[-7,20],[-17,5],[-10,69],[-15,41],[-17,-4],[-3,59],[-31,24],[-157,430],[-31,83],[-5,15],[-192,532],[-153,422],[-98,277],[-180,555],[-9,27],[0,1],[-373,1030],[-16,43],[-43,119],[-1,2],[-347,942],[-13,85],[-17,47],[-9,25],[-10,30],[-10,29],[-10,29],[-11,25],[-11,33],[-4,10],[-2,6],[-8,24],[-10,26],[-12,40],[-18,47],[-18,51],[-41,101],[-1,2],[-31,87],[-6,17],[-6,15],[-28,75],[-68,185],[-7,18],[-23,61],[-91,244],[-40,79],[-30,59],[-551,1495],[-114,310],[-90,233],[-42,109]],[[68464,25921],[1,-3],[-33,-156],[-1,-5],[-20,-92],[-1,-2],[-11,-38],[-30,-66],[-22,-40],[-33,-60],[-2,-5],[-3,-5],[-34,-62],[-9,-32],[0,-1],[0,-3],[0,-7],[19,-175],[0,-3],[4,-23],[3,-15],[11,-34],[11,-19],[16,-21],[10,-7],[25,-19],[4,-10],[0,-17],[-2,-6],[-20,-74],[-1,-2],[6,-191],[5,-25],[4,-7],[13,-7],[15,-4],[29,-1],[10,0],[2,0],[7,2],[7,-72],[0,-1],[2,-68],[1,-34],[7,-230],[0,-1],[1,-8],[1,-4],[33,-125],[29,-58],[2,-2],[16,-24],[13,-16],[6,-8],[2,-3],[6,-11],[3,-12],[2,-7],[0,-29],[2,0],[8,0],[5,0],[16,1],[13,-22],[5,-8],[4,-7],[20,-53],[17,-55],[1,-5],[2,-5],[6,-87],[2,-19],[7,-13],[2,-3],[2,-3],[11,-12],[81,-48],[4,-2],[2,-1],[5,-3],[29,-9],[4,0],[4,7],[1,12],[-2,10],[-4,12],[0,3],[-3,17],[0,9],[0,9],[2,8],[3,6],[7,4],[5,-3],[1,-3],[2,-3],[3,-8],[9,-29],[27,-85],[1,-6],[3,-28],[1,0],[33,2],[32,2],[0,-1],[0,-13],[-1,-79],[8,6],[3,3],[49,39],[0,1],[11,-153],[6,-22],[11,-192],[0,-5],[3,-4],[32,-64],[6,-11],[10,-3],[64,-20],[13,-13],[9,-8],[22,-34],[7,-17],[0,-1],[6,-27],[0,-32],[0,-1],[-2,-20],[-1,-21],[2,-11],[3,-5],[36,-43],[7,-7],[7,-1],[7,7],[6,21],[11,31],[6,8],[4,-5],[2,-9],[11,-43],[3,-12],[2,-10],[1,-50],[9,-6],[7,-5],[21,-15],[2,-2],[-9,-26],[-10,-29],[-67,-178],[-27,-73],[-58,-157],[-12,-32],[-98,-264],[-3,-9],[-33,-84],[-1,-2],[-21,-60],[-34,-87],[-24,-70],[-15,-36],[-9,-26],[-9,-25],[-17,-44],[-9,-22],[-15,-43],[-22,-59],[-47,-127],[-52,-138],[-30,-80],[-20,-51],[-35,-95],[-45,-120],[-10,-29],[-61,-161],[-14,-36],[-18,-25],[-45,-121],[-31,-83]],[[68443,20314],[-20,-26],[-118,-162],[-1,-2],[-29,-36],[-86,-106],[-59,-76],[-30,-40],[-13,-18],[-40,-51],[-12,-15],[-108,-138],[-79,-106],[-21,-25],[-13,-19],[-55,-72],[-22,-30],[-61,-87],[-45,-51],[-20,-22],[-2,-3],[-62,-80],[-15,-22],[-55,40],[-16,7],[-22,15],[-221,149],[-34,-15],[-51,-18],[-33,-14],[-40,-4],[-69,-4],[-22,0],[-62,0],[-60,-3],[-41,47],[-13,14],[-51,44],[-41,7],[-38,11],[-42,11],[-26,8],[-15,11],[-30,14],[-14,0],[-49,7],[-16,4],[-74,0],[-79,15],[-14,7],[-124,160],[-82,101],[-77,96],[-14,18],[-59,73],[-23,29],[-69,84],[-56,69],[-102,153],[-14,18],[-25,25],[-75,106],[-89,120],[-115,149],[-38,48],[-158,211],[-68,90],[-7,8],[-122,163],[-138,183],[-59,69],[-12,11],[-118,22],[-71,40],[-15,66],[-11,40],[-20,43],[-8,110],[-12,32],[-12,22],[-33,22],[-60,33],[-28,65],[-29,102],[-11,40],[-20,95],[-9,37],[-20,36],[-13,-11],[-11,-15],[-21,-36],[-12,11],[-10,33],[-11,22],[-12,14],[-39,18],[-17,44],[-20,18],[-16,40],[-2,1],[-11,7],[-22,7],[-17,33],[-14,14],[-15,0],[-25,-40],[-2,-4],[0,-40],[3,-16],[7,-38],[-12,-40],[-1,-2],[-27,-53],[-18,-11],[-11,-40],[-22,-19],[-3,-2],[0,-1],[0,2],[-4,38],[19,70],[23,51],[14,54],[2,58],[-16,44],[-24,20],[-3,2],[-37,18],[-19,11],[-29,15],[-26,65],[-12,33],[-1,84],[7,40],[-3,69],[-14,22],[-25,-4],[-18,0],[-77,-3],[-26,-4],[-125,-29],[-14,-4],[-27,-4],[-17,-3],[-47,-11],[-75,-15],[-106,-18],[-251,-40],[-54,-11],[-65,-4],[-11,-3],[-25,-4],[-84,-14],[-60,-15],[-34,-7],[-54,-15],[-54,-11],[-1,0],[-148,-32],[-138,-30],[-68,-11],[-115,4],[-59,7],[0,1],[-22,10],[-48,11],[-23,29],[-19,44],[-15,40],[-17,77],[-12,7],[-14,11],[-52,18],[-24,55],[-30,87],[-6,44],[-51,21],[-1,1],[-22,3],[-11,7],[-8,48],[-9,142],[-1,47],[-11,47],[-9,22],[-11,11],[-18,8],[-20,-4],[-15,-7],[-15,-11],[-7,0],[-13,0],[-15,-4]],[[74562,16359],[-18,59],[-21,69]],[[74523,16487],[12,29],[0,55],[7,76],[27,7],[29,-91],[-27,-87],[-9,-117]],[[76775,21810],[-26,-62],[-28,-54],[-43,-91],[-29,-66],[-33,-65],[-49,-73],[-30,-62],[-31,-66],[-66,-131],[-46,-80],[-57,-106],[-38,-83],[-71,-142],[-83,-179],[-46,-102],[-49,-102],[-28,-69],[-53,-124],[-48,-123],[-29,-70],[-31,-72],[-59,-146],[-48,-113],[-84,-204],[-29,-69],[-31,-84],[-37,-116],[-36,-91],[-26,-66],[-27,-73],[-34,-91],[-19,-58],[-28,-80],[-31,-109],[-21,-58],[-36,-84],[-45,-118],[-34,-36],[-25,-57],[-22,0],[-19,0],[-18,29],[-5,36],[7,24],[13,37],[12,44],[32,57],[54,74],[22,52],[42,84],[38,72],[13,66],[19,55],[18,29],[15,40],[16,40],[25,51],[22,91],[34,124],[28,123],[36,106],[38,22],[35,91],[58,113],[36,76],[49,113],[56,124],[55,127],[26,77],[-1,1],[13,15],[26,75],[1,73],[-13,99],[-44,100],[-5,81],[-3,40],[-10,28],[-7,22],[-9,-43],[-5,-21],[1,-5],[11,-131],[35,-101],[-1,-70],[0,-69],[-42,-131],[-19,-56],[-15,-20],[-50,-102],[-42,-128],[-14,-20],[-40,-56],[-63,-127],[-24,-41],[-15,-68],[-9,-37],[-16,-9],[-25,-13],[-31,-76],[-26,-84],[-10,-113],[-18,-44],[-19,-82],[-5,-20],[-39,-72],[-20,-16],[-4,-3],[-2,-65],[-28,-79],[-5,-12],[-53,-128],[-4,-3],[-35,-29],[-21,-62],[-17,-27],[-6,2],[-25,10],[-33,-4],[-27,-52],[-47,-105],[-6,-35],[-7,-38],[0,-65],[1,-53],[20,-109],[5,-68],[0,-10],[-43,-131],[-12,-41],[-5,-17],[-8,-20],[-37,-93],[-65,-171],[-9,-21],[-5,-12],[-13,-34],[-24,-61],[-50,-142],[-39,-112],[-43,-139],[-46,-145],[-14,-52],[-39,-149],[-7,-22],[-21,-65],[-5,10],[-29,66],[-14,55],[24,47],[7,27],[9,35],[-14,77],[-17,51],[-15,-113],[-25,-77],[-5,-102],[-28,-51],[-24,-83],[-32,-48],[-6,-29],[-48,0],[-21,0],[-31,29],[-22,-25],[-14,-15],[-11,-14],[-14,36],[-7,18],[-2,-83]],[[74275,16440],[-12,54],[-8,58],[2,51],[5,40],[11,48],[-2,15],[-2,22],[-3,17],[-18,-7],[-14,-14],[-16,-4],[-12,7],[-11,18],[-10,44],[-25,-4],[-20,22],[-18,44],[-20,62],[-41,124],[-23,69],[-13,40],[-18,40],[-26,62],[-42,113],[-22,57],[-79,209],[-39,98],[-34,124],[-10,36],[-41,153],[-13,47],[-18,80],[-35,95],[-98,295],[-34,98],[-39,124],[-12,29],[-8,29],[-3,66],[2,47],[-7,48],[6,61],[-15,15],[-14,40],[3,26],[2,14],[13,29],[13,8],[17,-8],[10,18],[4,41],[5,65],[11,29],[9,29],[20,15],[4,47],[3,58],[-18,19],[-13,40],[-8,43],[-13,30],[-9,40],[-18,18],[-16,-7],[-14,3],[-14,4],[-15,25],[-8,66],[-13,44],[-20,-37],[2,37],[-8,47],[-12,25],[-8,55],[0,-2],[-5,-16],[0,-1],[-6,-17],[-2,-4],[-9,-25],[-21,-6],[-13,-4],[-33,-25],[-1,-1],[-64,-114],[-11,-9],[-81,-67],[-4,0],[-36,-6],[-25,-4],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-5,-5],[-1,0],[-2,-3],[-2,-2],[-1,-3],[-2,-4],[0,-1],[-2,-3],[-1,-4],[-1,-4],[-1,-3],[-17,14],[-23,19],[-30,-27],[-71,-136],[-43,-54],[-34,-57],[-41,-106],[-70,-176],[-69,-9],[-70,-10],[-30,29],[-3,14],[-11,49],[-11,96],[-3,74],[-6,160],[-19,-42],[-33,-38],[-34,-16],[-53,-5],[-39,31],[-39,-49],[-1,0],[-21,-147],[-1,-7],[-1,-5],[-15,-59],[-1,-7],[-19,-57],[-41,-131],[-2,-4],[-2,-3],[-16,-23],[-1,-2],[-2,1],[-16,11],[-4,2],[-1,13],[0,4],[4,34],[8,60],[2,33],[1,13],[1,15],[-4,48],[-13,18],[-12,-11],[-4,-12],[-13,-40],[-1,-3],[0,-2],[-6,-66],[0,-2],[10,-71],[3,-12],[10,-31],[-2,-32],[-3,-61],[-5,-9],[-7,-12],[-2,0],[-4,1],[-8,1],[-10,17],[-6,10],[-23,63],[-8,28],[-3,14],[-5,25],[-1,10],[-3,16],[-2,20],[3,49],[3,8],[14,53],[5,58],[-1,23],[-6,27],[-4,3],[-11,8],[-52,42],[-4,1],[-32,12],[-5,-9],[-5,-9],[-1,-12],[-2,-30],[-1,-3],[1,-10],[2,-44],[2,-31],[-6,-88],[-1,-14],[-6,-8],[-12,6],[-8,31],[-10,43],[-12,25],[-21,22],[-4,4],[-5,10],[-11,21],[-1,1],[0,2],[-19,56],[-5,15],[-13,48],[-3,25],[5,67],[14,81],[5,12],[2,3],[0,8],[5,50],[5,62],[-6,36],[-4,13],[-3,11],[-3,9],[-3,6],[-3,1],[-12,3],[-6,2],[-16,-29],[-15,-45],[-10,-31],[-7,-12],[-28,-46],[-10,-15],[-7,-12],[-2,-10],[-8,-29],[-2,-6],[-9,-50],[-9,-52],[-27,-52],[-13,-12],[-18,11],[-7,4],[-41,23],[-30,-7],[-19,-33],[-4,-16],[-13,-101],[-1,-40],[-2,-46],[1,-24],[2,-33],[3,-30],[9,-32],[9,-15],[10,-13],[46,-28],[3,-2],[7,-13],[11,-19],[14,-54],[6,-40],[-3,-44],[-5,-17],[-1,-1],[-13,-24],[-49,-45],[-17,-34],[-16,-33],[-10,-32],[-15,-109],[-36,-111],[-14,-77],[-5,-58],[-3,-123],[9,-43],[-6,-15],[-40,-18],[-16,-7],[-6,-3],[-5,-2],[-29,-13],[-1,0],[-30,-22],[-47,-22],[-50,-22],[-32,-14],[-125,-55],[-18,-11]],[[71005,17841],[-14,0],[-16,-11],[-10,-25],[-20,-15],[-16,51],[-16,26],[-14,-4],[-19,-40],[-18,-29],[-14,-4],[-11,4],[-19,0],[-9,15],[-5,7],[1,2],[2,52],[-1,48],[0,51],[-9,33],[-13,7],[-41,-30],[-9,4],[-1,1],[-5,14],[19,98],[-2,40],[-14,18],[-11,19],[-11,36],[-15,44],[-14,36],[-6,37],[-13,-77],[1,-84],[10,-43],[-1,-48],[-9,-16],[-16,12],[-27,22],[-22,16],[-21,-11],[-24,-13],[-41,-21],[-11,1],[-26,13],[-8,4],[-9,14],[-1,1],[-3,12],[-1,40],[1,5],[37,125],[6,38],[5,68],[-4,48],[-17,59],[-16,41],[-20,23],[-5,33],[7,33],[-4,40],[-19,-11],[-15,-29],[-18,-44],[-15,-22],[-20,10],[-62,35],[-9,27],[-1,6],[0,4],[1,60],[-6,21],[-9,3],[-3,1],[-14,5],[-32,-12],[-16,-6],[-16,-15],[-4,2],[-12,6],[-2,1],[-5,12],[-16,48],[-7,19],[-17,32],[-2,2],[-70,110],[9,40],[2,51],[-12,22],[-21,-3],[-11,-4],[-11,7],[-23,82],[-2,7],[-10,35],[-17,9],[-3,2],[-49,-36],[-26,-3],[-43,-5],[-8,29],[-13,99],[-18,43],[-24,-43],[-17,-29],[-7,-33],[14,-91],[1,-34],[-33,-27],[-22,11],[-9,18],[-15,36],[-10,9],[-17,9],[-7,-4],[-6,-4],[-17,-10],[-15,-20],[-25,-48],[-11,-58],[-1,-6],[0,-1],[-7,-32],[-10,-116],[-8,-28],[-14,-26],[-15,-11],[-1,0],[-17,-4]],[[69504,18759],[-59,6],[-21,-13],[-6,-15],[-12,-29],[-18,-66],[-9,-36],[-8,-40],[-15,0],[-8,51],[-7,33],[-10,25],[-13,19],[-19,-14],[-60,-58],[-42,-2],[-11,-6],[-24,-13],[-19,-10],[-5,-2],[-27,-1],[-25,10],[-7,2],[-7,3],[-1,1],[-26,36],[-7,11],[-32,59],[-31,67],[-11,38],[-7,31],[-6,77],[3,70],[1,22],[1,31],[6,53],[3,30],[-1,34],[-8,32],[-6,11],[-2,2],[-3,6],[-2,1],[-34,17],[-32,35],[-58,71],[-6,7],[-12,15],[-5,13],[-10,24],[-3,9],[-2,4],[-16,48],[0,69],[-17,18],[-13,-65],[-5,-33],[-1,0],[-10,-44],[-3,-15],[-16,-24],[-3,1],[-4,3],[-5,2],[-2,7],[-7,26],[-2,5],[-2,25],[-1,10],[-1,8],[1,26],[2,61],[-3,39],[-1,5],[-4,16],[-11,43],[-5,10],[-2,6],[-1,1],[-2,3],[-25,34],[-3,5],[-4,7],[-23,40],[-16,13],[-7,12],[-5,26],[2,17],[9,103],[-1,8],[-1,22],[-2,42],[-7,49],[-15,59],[-7,3],[-1,1],[-1,0],[-2,-3],[-8,-15],[-6,-18],[-9,-27],[-1,-3],[-3,-6],[-9,-15],[-4,-8],[-9,5],[-1,0],[-1,7],[-8,40],[-1,13],[-1,53],[-2,16],[-9,77],[-12,65],[-1,6],[-10,25]],[[69504,18759],[-34,-175],[-39,-193],[-7,-33],[-29,-149],[-28,-135],[-72,-356],[-7,-35],[-31,-151],[-14,-73],[-2,-10],[-13,-66],[-25,-121],[-28,-142],[-11,-54],[-21,-99],[-6,-36],[-2,-7],[-24,-124],[-18,-87],[-84,-408],[-12,-62],[-38,-178],[-51,-259],[-41,-200],[-29,-142],[-23,-110],[-15,-72],[-10,-51],[-25,-124],[-1,-4],[-30,-105],[-27,-91],[-14,-37],[-12,-58],[-24,-124],[-10,-51],[-37,-207],[-45,-248],[-17,-95],[-11,-54],[-18,-99],[-15,-83],[-9,-51],[-29,-160],[-6,-2],[-25,-6],[-97,-29],[-147,-47],[-16,-4],[-29,-11],[-181,-58],[-164,-51],[-87,-29],[-102,-33],[-35,-11],[-126,-40],[-125,-29],[-59,-17],[-43,-12],[-110,-33],[-1,-29],[-4,-25],[0,-22],[13,-70],[15,-40],[1,-18],[2,-58],[7,-47],[15,-33],[13,-55],[12,-62],[5,-52],[0,-2],[5,-55],[-5,-36],[-20,-11],[-10,22],[-11,3],[-18,-11],[-24,-54],[-8,-44],[-9,-36],[-9,-30],[-18,-25],[-17,-26],[-14,-29],[-15,-36],[-12,-15],[-23,-72],[-20,-40],[-7,-37],[-40,-84],[-9,-25],[-16,-69],[-11,-44],[-13,-76],[-10,-55],[-13,-44],[-23,-69],[-11,-44],[-15,-40],[-12,-40],[-11,-33],[-14,-32],[-7,-59],[-10,-51],[-7,-36],[-14,-40],[-20,-58],[-11,-15],[-11,-7],[-12,-29],[-15,-77],[-11,-40],[-11,-18],[-14,-40],[-12,-69],[-5,-62],[-11,-47],[-19,-48],[-22,14],[-13,-1],[-24,22],[-5,-1],[-44,36],[-1,1],[-54,69],[-10,14],[0,5],[-22,47],[-21,45],[-2,3],[-1,2],[-9,-6],[-6,-4],[-11,3],[-5,2],[-85,66],[-2,1],[-44,38],[-2,1],[-34,33],[-2,2],[-6,5],[-19,37],[-3,8],[-2,13],[-1,11],[-4,11],[-1,5],[-4,6],[-27,44],[-2,3],[-13,19],[0,1],[-3,2],[-8,7],[-1,1],[-37,43],[-3,4],[-28,36],[-1,0],[-31,50],[-4,7],[-11,17],[-2,1],[-2,-2],[-26,-19],[-6,-4],[-12,1],[-36,4],[-5,30],[-2,14],[-26,110],[-1,3],[-4,9],[-1,2],[-10,11],[-10,3],[-8,-4],[-6,-3],[-6,2],[-6,9],[-5,17],[-12,81],[-3,15],[-24,11],[-45,21],[-3,1],[-21,10],[-53,-7],[-85,-60],[-26,-137],[-1,-5],[-5,-47],[-1,-3],[0,-4],[0,-44],[-3,-17],[-6,-18],[-43,-91],[-3,-6],[-6,-12],[-5,-10],[-21,-38],[-7,-7],[-10,-5],[-27,-6],[-14,11],[-1,0],[-7,-2],[-7,-8],[-2,-5],[-9,-24],[-4,-22],[-3,-54],[-7,-65],[0,-1],[-23,-90],[-8,-27],[-5,-5],[-3,13],[-50,19],[-12,-3],[-8,-10],[-4,-10],[-2,-15],[0,-6],[0,-7],[0,-5],[1,-23],[3,-21],[3,-18],[0,-11],[0,-14],[-5,-52],[-4,-26],[2,-16],[6,-53],[-7,-69],[-9,-76],[5,-19],[19,-53],[13,-47],[3,-12],[24,-91],[4,-15],[4,-18],[2,-55],[2,-82],[0,-6],[-6,-22],[-3,-3],[-5,3],[-16,44],[0,2],[-5,35],[-3,15],[0,2],[0,14],[-5,7],[-59,-27],[-6,-10],[-4,-9],[-13,-64],[-3,-10],[-1,-7],[-4,-22],[0,-96],[-37,-73],[-11,-32],[-1,-4],[-1,-13],[20,-119],[1,-3],[4,-6],[6,1],[11,6],[2,-125],[0,-1],[-17,-115],[-5,-35],[9,-40],[6,-28],[2,-9],[57,-70],[2,-3],[18,-41],[1,-2],[7,-16],[-22,-89],[-23,-67],[-24,-70],[-17,59],[-8,28],[-2,4],[-53,-68],[-2,-5],[-8,-12],[-16,-65],[-1,-2],[0,-1],[0,-14],[5,-134],[18,-68],[1,-1],[6,-38],[0,-1],[2,-14],[-1,-40],[-3,-13],[-3,-11],[-5,-11],[-10,-3],[-3,1],[-10,6],[-7,-2],[-3,-8],[-4,-27],[-17,-120],[0,-18],[2,-13],[4,-15],[6,-19],[21,-34],[11,-7],[15,0],[8,13],[0,11],[-1,7],[-5,13],[-2,6],[-9,23],[-2,6],[0,6],[7,2],[2,0],[4,-3],[28,-22],[2,-3],[1,-4],[3,-14],[0,-1],[0,-3],[8,-146],[-1,-37],[-4,-31],[-2,-23],[-3,-40],[-3,-21],[-1,-12],[-22,-203],[-3,-14],[-8,-42],[-4,-13],[0,-1],[-12,-24],[-6,-12],[-7,-5],[-5,3],[-3,-51],[-13,-123],[-21,-19],[-12,-7],[-32,-5],[-34,-5],[-5,5],[-6,18],[-5,19],[-4,15],[-17,-20],[-2,-2],[-1,-3],[-26,-51],[-26,-51],[-6,-19],[-5,-15],[-18,-66],[-8,-42],[-5,-80],[1,-39],[3,-24],[6,-25],[2,-7],[6,-8],[25,-2],[2,3],[0,14],[0,4],[-1,3],[-2,17],[3,6],[5,4],[4,-5],[2,-7],[1,-5],[2,-16],[1,-25],[0,-23],[-2,-17],[0,-1],[-13,-108],[-7,-58],[-3,-11],[-11,0],[-10,10],[-35,-81],[-2,-7],[-24,-96],[-5,-22],[-8,-33],[-22,-89],[0,-1],[-1,-4],[-2,-5],[-6,-8],[-2,0],[-8,-1],[-7,9],[-7,10],[-23,35],[-3,2],[-55,53],[-10,-16],[-23,-82],[-1,-6],[0,-2],[0,-5],[3,-30],[1,-9],[0,-4],[1,-24],[-6,-19],[-6,-10],[-23,-18],[-13,0],[-6,5],[-4,10],[0,9],[4,6],[15,24],[0,7],[-6,4],[-24,5],[-6,-3],[0,-1],[-1,-1],[-51,-88],[-6,0],[-2,0],[-21,-1],[-1,0],[-1,-1],[-2,-3],[-4,-27],[0,-2],[2,-62],[-6,-41],[-8,-24],[-14,-23],[-1,-4],[-6,-1],[-7,-1],[-5,-1],[-1,0],[-3,2],[-8,7],[-3,3],[-2,4],[-12,25],[-9,8],[-3,3],[-1,1],[-45,-67],[-6,-11],[-12,-37],[-12,-28],[-6,-16],[-26,-67],[0,-1],[-39,-83],[-19,-106],[0,-148],[0,-6],[34,-131],[13,-54],[1,-3],[13,-31],[5,-20],[12,-48],[6,-22],[22,-136],[9,-107],[0,-9],[2,-99],[5,-52],[0,-1],[1,-3],[6,-40],[1,-3],[9,-34],[11,-45],[4,-25],[-3,-49],[-8,-29],[-4,-61],[-1,-11],[9,-28],[2,-2],[4,-5],[18,-4],[0,-3],[9,-34],[-2,-36],[-8,-23],[-2,1],[-1,1],[-35,52],[-4,-4],[-18,-20],[0,-17],[-1,-5],[-2,-5],[-1,-6],[-35,-64],[-10,0],[-2,0],[-12,-27],[-2,-3],[-72,-78],[-6,-4],[-20,-13],[-11,-3],[-5,-3],[-1,-1],[-10,-15],[-12,-34],[-1,-10],[-1,-7],[14,-90],[4,-23],[14,-18],[3,-3],[12,-36],[2,-14],[6,-35],[8,-48],[0,-60],[-3,-26],[0,-3],[-2,-17],[-4,-9],[-6,-41],[1,-17],[3,-17],[5,-8],[19,-3],[3,7],[1,27],[2,6],[4,5],[6,0],[19,-77],[9,-38],[1,-10],[-4,5],[-8,8],[-43,-3],[-21,2],[-4,-18],[-23,-57],[-21,-50],[-29,-71]],[[63991,3754],[-136,371],[-28,76],[-98,269],[-38,103],[-604,1648],[-99,270],[-32,87],[-422,1153],[-1078,2930],[-38,104],[-41,112],[-667,1815],[-100,271],[-308,837],[-53,145],[-661,1797],[-5,13],[-11,29],[-20,55],[-174,474],[-36,96],[-50,135],[-42,113]],[[72076,5545],[-26,-80],[-27,4],[2,50],[2,26],[16,91],[0,102],[4,32],[2,27],[2,24],[3,30],[3,66],[32,33],[24,-41],[-9,-83],[2,-46],[2,-31],[-1,-6],[-15,-103],[-16,-95]],[[72047,3153],[-6,55],[-3,51],[-4,54]],[[72034,3313],[12,22],[5,55],[13,62],[14,62],[-1,65],[-23,69],[-46,-25],[-3,44],[-4,40],[-2,40],[-4,58],[1,44],[32,-4],[9,80],[20,4],[23,-44],[2,95],[21,43],[17,62],[30,26],[0,113],[-40,-62],[-37,-33],[-25,40],[-44,77],[-29,40],[12,28],[18,41],[20,65],[11,59],[29,80],[31,98],[21,51],[35,-36],[39,14],[27,73],[3,98],[-3,157],[20,94],[-6,146],[-26,124],[-8,109],[19,106],[24,69],[8,95],[1,87],[-1,113],[31,142],[4,94],[-8,95],[-16,98],[-3,95],[9,120],[10,62],[31,-3],[20,54],[11,135],[-42,-7],[-30,-40],[-7,65],[-11,113],[8,131],[-13,95],[-12,51],[-10,102],[10,153],[24,110],[58,20],[52,12],[99,114],[3,2],[85,60],[12,-104],[-16,-537],[3,-92],[16,83],[68,500],[-24,48],[-8,17],[-10,91],[-1,9],[19,122],[2,18],[0,37],[-1,47],[-1,69],[9,62],[11,98],[10,81],[4,39],[10,106],[35,14],[21,51],[12,6],[18,9],[14,-102],[0,-95],[-6,-41],[-10,-75],[-14,-80],[-7,-44],[-14,-109],[-5,-40],[-7,-62],[-7,-62],[-3,-29],[-16,-124],[-11,-95],[-12,-91],[-17,-120],[-12,-84],[-10,-83],[-17,-135],[-15,-120],[-13,-84],[-11,-84],[-10,-83],[-10,-88],[-12,-105],[-11,-91],[-17,-135],[-16,-135],[-17,-146],[-10,-87],[-17,-138],[-14,-124],[-11,-80],[-11,-84],[-12,-135],[-12,-127],[-7,-77],[-12,-91],[-8,-80],[-12,-120],[-28,-156],[-32,-117],[-29,-91],[-15,-113],[-10,-98],[-12,-106],[-17,-145],[-16,-142],[-15,-117],[-10,-73],[-14,-80],[-20,-127],[-25,-150],[-14,-91],[-15,-105],[-10,-55]],[[72124,9331],[-7,-75],[-14,102],[-9,102],[1,38],[0,64],[12,87],[14,124],[3,-66],[2,-44],[1,-40],[1,-29],[4,-50],[4,-41],[-6,-113],[-6,-59]],[[72718,8706],[-35,-15],[2,71],[2,57],[1,15],[7,68],[15,59],[164,1605],[17,99],[6,98],[13,84],[7,58],[20,173],[2,20],[43,273],[42,149],[24,105],[36,154],[26,100],[7,27],[72,110],[40,25],[49,26],[19,32],[43,80],[37,124],[31,91],[32,0],[29,-69],[-30,-55],[-19,-36],[-8,-23],[-12,-32],[-19,-53],[-5,-16],[-15,-54],[-16,-62],[-31,-102],[-13,-50],[-11,-38],[-6,-29],[-12,-58],[-20,-91],[-25,-131],[-18,-96],[-11,-61],[-25,-134],[-19,-113],[-17,-106],[-5,-30],[-5,-28],[-10,-63],[-16,-97],[-15,-99],[-7,-53],[-4,-38],[-20,-138],[-16,-120],[-17,-124],[-23,-146],[-14,-86],[-5,-30],[-2,-14],[-9,-52],[-17,-109],[-4,-25],[-14,-95],[-12,-65],[-7,-41],[-35,-87],[-12,-95],[-10,-160],[-31,-102],[-11,-167],[-12,-84],[-15,-80],[-15,-10],[-16,-12],[-40,-29]],[[73178,12107],[-33,-48],[65,281],[12,36],[30,102],[9,46],[19,100],[39,11],[34,8],[10,3],[10,-71],[10,-68],[-3,-42],[-2,-27],[-26,-58],[-54,-173],[-18,-57],[-44,-17],[-11,-5],[-23,-10],[-24,-11]],[[74275,16440],[19,-37],[20,4],[10,33],[16,18],[26,-6],[8,-2],[4,-6],[9,-15],[11,-15],[15,-7],[14,3],[24,-3],[23,4],[18,3],[31,73]],[[74562,16359],[-36,-109],[-29,-54],[-25,-51],[-42,-84],[-33,-66],[-23,-43],[-34,-88],[-19,-54],[-21,-59],[-28,-83],[-26,-84],[-24,-77],[-22,-76],[-20,-69],[-17,-69],[-22,-70],[-27,-91],[-106,-404],[-15,30],[-26,50],[7,24],[6,24],[3,98],[-29,-84],[-18,-160],[-23,-113],[-25,-73],[-10,-108],[-2,-23],[15,-69],[2,-69],[-26,-58],[-20,-73],[-24,-117],[-16,-80],[-26,-120],[-23,-113],[-20,-91],[-23,-98],[-35,-139],[-30,-134],[-30,-124],[-23,-91],[-29,-131],[-28,-120],[-30,-139],[-20,-69],[-46,40],[18,77],[18,65],[29,102],[33,106],[21,87],[22,95],[24,102],[22,116],[17,80],[17,88],[-2,41],[-3,75],[-16,-36],[-6,-15],[-15,-116],[-10,-58],[-4,-26],[-4,-7],[-18,-40],[-20,-40],[-23,36],[12,106],[1,11],[-6,15],[-21,57],[-29,33],[-5,-62],[5,-39],[4,-30],[-8,-33],[-10,-43],[27,-44],[23,-84],[-35,11],[-2,0],[22,-131],[-18,-80],[-21,-128],[-28,-80],[-24,-69],[-30,-58],[-15,75],[-5,23],[-11,-8],[-28,-21],[-22,37],[4,87],[-1,-1],[-22,-25],[-20,-43],[-2,-20],[-9,-75],[-6,-33],[-33,-149],[-8,-33],[-20,-91],[-7,-36],[-77,-295],[-43,-120],[-18,-113],[-34,-193],[-48,-157],[-34,-138],[-18,-128],[-15,-196],[-21,-124],[-22,-95],[-19,-94],[-2,-91],[-14,-99],[-8,-76],[-4,-80],[-8,-88],[-10,-98],[-132,-1201],[-16,-146],[-17,-128],[-1,-83],[-19,-26],[1,-116],[-18,-124],[-4,-87],[-4,-95],[-9,-124],[-12,-109],[-3,-14],[-100,-107],[-69,-73],[-143,-85],[-1,75],[5,91],[-11,87],[-17,91],[-17,77],[-16,91],[-10,69],[-5,91],[8,120],[-3,91],[3,88],[3,105],[6,84],[10,69],[-7,66],[1,113],[-15,57],[-8,34],[-4,37],[-5,43],[7,63],[4,46],[0,2],[4,129],[-4,138],[11,110],[-14,91],[0,1],[0,2],[-10,120],[-13,76],[-5,26],[10,104],[2,17],[15,109],[1,43],[2,51],[-4,39],[-5,49],[-23,95],[-10,61],[-2,8],[-22,54],[-25,44],[-17,40],[-23,51],[-37,-4],[-24,66],[-32,65],[-4,73],[30,-25],[17,-4],[-6,113],[-10,73],[-7,105],[-5,117],[12,102],[-2,87],[-23,66],[-26,58],[-17,88],[-13,105],[-7,80],[-18,102],[-5,77],[-20,72],[-4,113],[-2,91],[0,113],[-3,80],[-18,139],[-4,4],[-9,8]],[[71814,12778],[1,50],[-15,103],[-8,56],[-4,24],[-3,95],[-1,64],[1,58],[3,47],[4,51],[1,44],[2,77],[2,36],[8,87],[7,44],[6,36],[7,44],[2,37],[7,54],[5,48],[7,72],[6,44],[5,62],[0,53],[0,2],[7,32],[8,29],[3,28],[7,56],[2,61],[1,25],[-2,41],[-2,17],[-5,9],[-39,0],[-1,0],[0,19],[3,0],[33,0],[-11,37],[-17,47],[-13,36],[-11,32],[-1,2],[-13,38],[-13,22],[-17,0],[-11,-11],[-12,-18],[-12,-4],[-47,22],[-12,62],[17,62],[32,69],[2,58],[-31,106],[-25,-18],[-21,-120],[-15,-40],[-23,76],[-12,146],[-18,120],[-12,124],[-18,29],[-58,-66],[-3,5],[-21,32],[0,1],[-11,84],[12,87],[6,85],[-5,54],[-8,32],[-11,24],[-13,16],[-42,25],[-29,-4],[-19,6],[-19,6],[-7,2],[-2,0],[-1,7],[-10,40],[-3,8],[2,13],[9,56],[12,28],[8,16],[2,1],[34,27],[28,22],[3,1],[2,2],[29,42],[3,11],[1,9],[7,77],[-14,53],[-15,36],[-35,27],[-12,-10],[-13,-11],[-20,-21],[-1,-1],[-7,-6],[0,-1],[-18,-33],[-16,-50],[-8,-14],[-8,4],[-6,3],[-5,21],[-1,42],[8,57],[5,71],[-1,38],[-5,44],[-13,48],[-9,19],[-12,6],[-16,-6],[-9,-7],[-25,-22],[-15,8],[-9,4],[-15,50],[-5,58],[8,107],[13,86],[8,112],[3,87],[-7,194],[7,89],[1,14],[2,13],[4,26],[9,28],[22,39],[17,15],[17,38],[0,5],[9,97],[-4,58],[-19,60],[-16,27],[-29,19],[-6,3],[-12,-2],[-15,-12],[-27,-47],[-4,-12],[-20,-54],[-37,-70],[-16,-10],[-16,8],[-5,14],[-4,11],[-5,15],[-1,13],[-2,15],[-1,15],[2,24],[6,65],[9,51],[2,40],[2,27],[1,32],[-1,16],[-3,44],[-2,23],[-2,9],[-7,28],[-7,31],[-23,34]],[[66187,1449],[-45,-44],[-33,-36],[-20,-15],[-23,-14],[-83,-84],[-21,-22],[-19,-18],[-12,-14],[-12,58],[-6,23],[-4,17],[-3,11],[-6,14],[-11,11],[-17,-32],[-12,-39],[-5,-16],[-7,-9],[-13,-17],[-16,11],[-24,40],[-23,62],[-14,59],[-15,51],[-15,0],[2,-12],[8,-32],[2,-14],[5,-26],[14,-55],[14,-40],[3,-38],[2,-27],[-4,-40],[35,-4],[25,0],[28,22],[19,43],[10,33],[17,-3],[2,-73],[-19,-18],[-131,-117],[-20,-18],[-203,-197],[-148,-222],[-12,-18],[-23,-29],[-22,-33],[-26,-44],[-40,-54],[-34,-88],[-13,37],[-22,58],[13,22],[18,58],[3,44],[3,167],[1,4],[-9,29],[-16,-69],[-5,-102],[-11,-69],[-6,-20],[-6,-20],[-19,54],[-21,58],[-17,49],[-11,31],[-73,199],[7,31],[18,29],[26,40],[21,37],[21,35],[11,19],[3,6],[10,16],[27,44],[12,20],[22,34],[20,24],[29,35],[39,5],[17,2],[65,33],[17,10],[50,30],[91,87],[72,44],[114,98],[80,68],[15,12],[11,8],[48,32],[46,18],[62,23],[28,10],[33,15],[94,54],[76,62],[91,44],[89,69],[112,51],[73,51],[70,47],[71,73],[74,48],[58,11],[50,0],[37,40],[15,3],[41,-7],[3,-44],[-21,-58],[-31,-55],[-47,-76],[-102,-95],[-18,-7],[-25,-15],[-28,-21],[-33,-26],[-13,-11],[-261,-222],[-15,-11],[-29,-25],[-33,-26],[-31,-22],[-48,-43],[-25,-19],[-31,-25],[-32,-33]],[[71233,2403],[-26,-87],[-20,33],[-10,91],[24,58],[10,58],[46,55],[9,-110],[-33,-98]],[[71805,2658],[-13,-84],[-11,-105],[0,-84],[-5,5],[-18,17],[4,-99],[-9,-98],[-32,47],[-11,20],[-13,24],[-13,31],[-7,17],[6,-117],[-21,-18],[-27,-15],[-25,-47],[-34,4],[-43,-37],[12,45],[13,53],[8,45],[5,28],[19,45],[5,14],[9,76],[6,58],[7,25],[18,63],[8,91],[-33,11],[-28,3],[-2,-35],[-1,-49],[-21,-109],[-24,-73],[-7,-21],[-34,65],[18,47],[24,62],[-14,128],[41,84],[11,99],[1,13],[27,-18],[35,37],[26,-66],[28,9],[6,2],[34,-18],[25,-33],[26,-55],[24,-87]],[[71805,2658],[2,120],[1,33],[15,87],[31,37],[33,-51],[5,-44],[8,-58],[-1,-106],[26,-73],[-20,-109],[5,-80],[-4,-60],[-4,-64],[-9,-116],[-6,-77],[-2,-14],[-6,-99],[-9,-94],[-8,-84],[-5,-53],[-4,-53],[-4,-63],[-3,-39],[-4,-58],[-4,-58],[-10,-124],[-10,-146],[-7,-134],[-5,-128],[-4,-105],[-5,-95],[0,-13],[-6,-93],[-4,-101],[-1,-132],[5,-72],[3,-48],[0,-9],[-3,-82],[4,-94],[-7,-106],[-29,18],[-26,48],[-29,54],[-30,40],[-42,44],[-44,55],[-40,47],[-45,51],[-42,40],[-33,33],[-40,40],[-36,40],[-15,17],[-10,12],[-27,40],[-18,36],[-21,55],[-20,55],[-8,94],[5,131],[27,77],[29,105],[24,142],[19,49],[1,3],[5,10],[18,68],[2,9],[9,-7],[12,-8],[16,95],[16,95],[13,99],[5,35],[27,-18],[16,-40],[6,-51],[29,-66],[6,9],[33,46],[-12,31],[-14,35],[-13,27],[-16,31],[-28,84],[-1,18],[-2,54],[9,21],[14,34],[25,0],[14,-16],[4,-6],[14,40],[10,29],[9,9],[15,13],[24,0],[25,77],[7,0],[44,3],[13,-60],[10,-45],[-7,-91],[1,-26],[4,-87],[-19,-106],[15,-91],[5,-9],[21,-34],[15,40],[10,112],[30,55],[32,80],[11,51],[10,62],[-14,127],[9,103],[3,25],[9,32],[7,23],[1,9],[7,49],[-7,80],[0,7],[-41,51],[6,60],[2,20],[-3,66],[-4,69]],[[72047,3153],[-17,-109],[-31,-87],[-38,29],[-1,-88],[-31,8],[-10,112],[8,117],[8,113],[22,36],[12,106],[23,120],[27,-4],[1,-36],[-3,-109],[-12,-102],[15,-113],[14,69],[0,1],[-2,37],[-3,38],[2,8],[1,6],[2,5],[0,3]],[[71969,3682],[-7,-63],[-25,99],[-15,102],[-6,101],[26,-36],[17,-62],[16,-80],[-6,-61]],[[71802,4663],[2,-36],[11,23],[9,20],[17,-32],[3,-76],[1,-36],[-22,-112],[-5,-24],[-12,-77],[-11,-84],[-4,-35],[-19,-63],[-25,-35],[-9,0],[-4,-6],[-16,-55],[-27,-2],[-11,0],[-9,13],[0,9],[-1,14],[33,11],[71,202],[5,38],[7,87],[1,31],[-21,-47],[-15,-31],[-11,-23],[-25,-55],[-25,-69],[-28,-69],[-22,-60],[-15,-39],[-5,-23],[-19,-99],[-7,-36],[-9,9],[-4,4],[4,229],[13,121],[49,128],[25,195],[22,86],[9,51],[38,32],[18,7],[14,6],[27,-54],[2,-38]],[[72093,7213],[-15,-55],[-23,62],[-5,135],[9,153],[17,149],[14,-65],[-1,-102],[10,-124],[-6,-153]],[[72040,8902],[-2,-120],[-21,51],[-1,91],[-5,113],[-5,99],[-3,112],[8,121],[29,-110],[5,-120],[-2,-105],[-3,-132]],[[72020,10370],[5,-131],[5,-106],[8,-87],[-16,-117],[-21,-138],[-18,146],[-28,65],[-26,33],[-6,102],[-1,91],[13,84],[26,-30],[20,22],[-5,110],[-10,101],[23,-21],[21,-44],[10,-80]],[[71814,12778],[-6,-92],[-12,-150],[-15,-124],[-31,8],[-24,-24],[-1,-2],[3,-10],[19,-73],[4,-22],[15,-84],[-1,-39],[-1,-78],[-11,-120],[-10,-94],[-11,-48],[-8,23],[-15,39],[-24,-3],[-13,-66],[17,-127],[8,-16],[30,-65],[-1,-97],[-1,-19],[1,-4],[11,-98],[3,-18],[11,-62],[7,-51],[4,-33],[5,-30],[14,-86],[2,-19],[16,-105],[6,-88],[9,-87],[15,-149],[5,-88],[0,-2],[4,-121],[22,-95],[18,-95],[3,-51],[3,-58],[9,-92],[6,-61],[16,-76],[19,-73],[-6,-128],[-6,-142],[5,-113],[10,-94],[1,-91],[0,-99],[7,-66],[7,-68],[11,-120],[14,-139],[17,-153],[18,-73],[34,4],[-5,-120],[-21,-87],[-8,67],[-6,56],[-13,-76],[-10,-91],[1,-18],[5,-77],[0,-94],[8,-78],[9,-86],[-1,-58],[-2,-73],[-15,-95],[-8,-61],[-5,-45],[-24,-95],[-11,-47],[13,-120],[17,-91],[7,-94],[-1,-92],[-1,-80],[-4,-94],[-7,-117],[-18,-69],[-26,-127],[-26,-84],[-14,-77],[-10,-62],[-7,-76],[-16,-66],[-4,-69],[-6,-69],[3,-80],[0,-131],[8,-98],[-3,-70],[-11,-69],[-22,-54],[0,-77],[-4,-87],[18,-157],[4,-135],[0,-7],[16,-134],[2,-66],[1,-26],[-1,-24],[-3,-59],[-35,14],[-36,-51],[-27,-6],[-52,-32],[-32,-136],[-15,-19],[0,1],[-3,-14],[-14,-68],[1,-2],[-11,-95],[-29,-66],[-22,-149],[-3,-42],[-7,-89],[-29,-178],[-11,-50],[-8,-34],[-8,-62],[-3,-22],[-13,-69],[-11,-102],[-16,-135],[-30,40],[-27,-83],[17,-99],[-25,-80],[-25,-69],[-32,-84],[-2,-3],[-26,-40],[-32,-44],[-30,-33],[-33,-44],[-39,-91],[-43,-58],[-28,-22],[-23,-22],[-25,15],[-30,36],[-97,11],[3,-17],[1,-7],[0,-1],[67,-33],[24,-22],[28,-18],[1,-69],[-18,-98],[-29,-70],[-16,-24],[-7,-12],[-6,1],[-15,3],[6,-81],[-38,41],[-36,112],[-41,11],[-27,19],[-29,20],[-7,5],[14,-64],[12,-53],[16,-24],[19,-26],[10,-21],[33,-71],[31,-87],[12,-80],[26,-18],[28,23],[2,2],[25,-40],[21,-3],[23,9],[11,5],[28,-58],[-9,-88],[23,-3],[26,62],[32,-95],[-6,-113],[-19,-80],[-33,-22],[-25,11],[-20,22],[-38,44],[-52,54],[-23,22],[-28,18],[-42,15],[-30,29],[-30,29],[-47,40],[-17,15],[-79,73],[-80,72],[-17,15],[-29,22],[-29,29],[-44,29],[-34,7],[-37,26],[-30,22],[-27,22],[-48,43],[-40,22],[-43,26],[-57,32],[-32,8],[-39,18],[-25,11],[-25,14],[-37,19],[-42,18],[-49,22],[-26,11],[-38,14],[-45,15],[-39,14],[-38,11],[-30,7],[-27,8],[-20,3],[-44,11],[-53,11],[-37,8],[-26,3],[-31,0],[-50,4],[-44,3],[-26,0],[-38,0],[-29,-3],[-29,0],[-44,0],[-33,-4],[-21,0],[-25,-3],[-26,0],[-39,-4],[-157,-45],[-143,-29],[-12,-10],[-49,40],[-26,62],[3,66],[35,47],[-4,33],[-16,-11],[0,76],[35,22],[31,7],[31,59],[39,54],[36,0],[36,-69],[8,-55],[-10,-112],[-42,-37],[25,-40],[47,29],[24,-29],[26,47],[-26,8],[-14,43],[-3,66],[20,15],[144,-55],[85,211],[24,51],[98,29],[77,18],[43,19],[127,-30],[171,-65],[149,-44],[102,-54],[125,-59],[93,11],[2,0],[4,0],[106,0],[99,-3],[86,0],[27,-13],[40,-18],[27,-13],[20,-6],[67,-20],[33,-20],[20,-12],[61,-10],[7,-1],[0,5],[0,5],[0,23],[-77,61],[-55,8],[-68,33],[-23,40],[-20,-37],[-30,9],[-128,38],[-174,0],[-104,-10],[-86,10],[-150,88],[-157,54],[-167,33],[-135,62],[-117,-47],[-109,-44],[-54,-127],[-37,-131],[-146,62],[-19,29],[-27,54],[3,73],[-14,87],[2,106],[-20,77],[-8,-30],[9,-131],[10,-76],[-1,-66],[-34,22],[-29,-3],[-19,0],[-40,-73],[-37,-48],[-37,-3],[-34,-18],[-95,-70],[-72,-22],[-70,-29],[-1,-5],[-3,-13],[31,5],[79,17],[57,29],[55,26],[20,0],[-20,-88],[-31,-58],[-24,-62],[-45,-33],[-39,4],[-33,4],[-72,3],[-58,-14],[-40,-11],[-14,-4],[-52,-11],[-80,-22],[-309,-91],[-40,-11],[-30,-11],[-99,-29],[-26,-7],[-68,-11],[-46,-14],[-50,-30],[-35,-10],[-38,-15],[-145,-124],[-64,-62],[-76,55],[-27,11],[-17,7],[-36,36],[-25,88],[0,54],[23,48],[52,109],[30,15],[22,-66],[11,15],[43,-48],[33,-18],[12,-25],[58,29],[182,109],[79,40],[138,47],[155,22],[146,4],[154,11],[84,-4],[40,7],[30,26],[5,4],[1,13],[0,8],[-4,-3],[-22,-18],[-24,0],[-26,10],[-59,0],[-134,15],[-158,-4],[-187,-29],[-166,-62],[-142,-65],[-125,-91],[-35,11],[-14,22],[26,36],[23,7],[0,55],[1,76],[-7,95],[-13,98],[2,40],[16,77],[8,54],[29,26],[32,0],[32,0],[30,18],[15,91],[24,11],[0,80],[24,33],[22,25],[9,26],[4,40],[-32,-36],[-37,-40],[-16,0],[-26,-102],[-27,-62],[-31,18],[-12,14],[-32,4],[-19,-33],[-15,66],[15,73],[-16,91],[-30,124],[18,83],[13,37],[-13,91],[16,51],[-25,72],[-28,25],[-10,8],[0,-91],[-16,-33],[5,-87],[9,-36],[-18,-48],[-20,-40],[-3,-94],[26,-73],[4,-106],[0,-87],[-15,0],[-15,3],[-15,-3],[-21,18],[16,-66],[37,-36],[0,-55],[-22,-18],[0,-54],[-6,-106],[-12,-124],[-3,-113],[-34,-18],[-18,-40],[-28,-65],[-19,40],[-16,18],[-36,0],[-36,51],[-18,65],[-9,55],[1,51],[-17,-29],[-23,-26],[-21,4],[1,-36],[26,-30],[22,-36],[17,-98],[38,-59],[-4,-47],[17,0],[26,66],[23,-4],[-5,-55],[-26,-47],[-28,-73],[-10,-29],[-38,-14],[-32,3],[-71,-14],[-36,-26],[-68,-47],[-93,-77],[-74,-62],[-42,-14],[-48,22],[-34,-18],[-40,-8],[-29,-36],[-25,-58],[-70,-44],[-58,-40],[-57,-26],[-60,-40],[-59,-43],[-74,-22],[-58,-15],[-102,-76],[-60,-51],[-29,29],[-14,-18],[-13,-55],[-9,36],[-70,-58],[-1,-44],[-74,-65],[-31,29],[-21,51],[-14,36],[-31,4],[-14,-36],[14,-8],[26,0],[19,-72],[-19,-4],[-27,-44],[-11,-43],[-32,0],[-13,32],[-1,70],[11,50],[-11,33],[-21,0],[-8,-76],[-2,-73],[-30,-29],[-20,-40],[-26,18],[-40,-95],[-84,-113],[-28,-43],[-12,-51],[-17,-22],[-18,-22],[-24,-58],[-130,344],[31,111],[26,-29],[26,-37],[-16,110],[19,98],[30,62],[46,51],[28,0],[36,62],[16,20],[4,5],[25,-25],[20,7],[25,-7],[16,-44],[12,-55],[42,15],[20,-7],[15,-40],[5,36],[14,77],[27,29],[-13,29],[-28,-11],[-29,-29],[-15,18],[-21,-11],[-13,22],[-14,14],[-13,0],[-18,33],[-21,-3],[-15,32],[-25,-25],[-2,1],[-28,17],[-23,-58],[-35,-4],[-49,-33],[-18,-91],[-43,-29],[-25,-36],[-40,-58],[-20,-48],[-7,-36],[-131,364],[-68,187],[-103,287],[-423,1148],[-126,344],[-8,22]]],"transform":{"scale":[0.00008861920481204842,0.000027464272672725904],"translate":[-84.32186486599994,33.8417490720002]}} diff --git a/src/js/config/mapconfig/mapfiles/county/nd-counties.json b/src/js/config/mapconfig/mapfiles/county/nd-counties.json new file mode 100644 index 00000000..e70a5176 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/nd-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-104.05002278699993,45.9350831540001,-96.55550277999993,49.00055311],"geometries":[{"type":"Polygon","properties":{"name":"ND"},"id":"38079","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38009","arcs":[[-2,4,5,6,7]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38067","arcs":[[8,9,10]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38095","arcs":[[11,12,13,-4,14,15]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38019","arcs":[[-10,16,17,-16,18]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38023","arcs":[[19,20,21]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38013","arcs":[[22,23,24,25,-20,26]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38075","arcs":[[27,28,-23,29,-7]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38101","arcs":[[-29,30,31,32,-24]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38105","arcs":[[-26,33,34,35,-21]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38049","arcs":[[36,37,38,-31,-28,-6]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38061","arcs":[[39,40,41,-34,-25,-33]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38069","arcs":[[-14,42,43,44,-37,-5,-1]]},{"type":"MultiPolygon","properties":{"name":"ND"},"id":"38071","arcs":[[[45]],[[46,47,48,-12,-18]]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38099","arcs":[[-9,49,50,51,-47,-17]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38005","arcs":[[-13,-49,52,53,54,-43],[-46]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38063","arcs":[[55,56,57,58,-53,-48,-52]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38035","arcs":[[59,60,61,-56,-51]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38053","arcs":[[-42,62,63,64,65,-35]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38055","arcs":[[66,67,68,69,70,-40,-32,-39]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38027","arcs":[[-59,71,72,73,-54]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38103","arcs":[[-55,-74,74,75,76,77,-44]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38083","arcs":[[-45,-78,78,79,-67,-38]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38025","arcs":[[-71,80,81,82,-63,-41]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38091","arcs":[[-62,83,84,85,86,-57]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38039","arcs":[[-87,87,88,89,-72,-58]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38097","arcs":[[90,-84,-61,91]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38031","arcs":[[-90,92,-75,-73]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38057","arcs":[[93,94,95,-81,-70]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38007","arcs":[[-83,96,97,98,-64]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38033","arcs":[[-99,99,100,-65]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38043","arcs":[[101,102,103,104,-79,-77]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38093","arcs":[[-89,105,106,107,-102,-76,-93]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38015","arcs":[[-105,108,109,110,-68,-80]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38065","arcs":[[-111,111,-94,-69]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38003","arcs":[[-86,112,113,114,-106,-88]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38017","arcs":[[-91,115,116,117,-113,-85]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38089","arcs":[[-96,118,119,120,121,-97,-82]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38059","arcs":[[-110,122,123,124,-119,-95,-112]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38037","arcs":[[125,126,127,-120,-125]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38029","arcs":[[-104,128,129,130,131,-123,-109]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38047","arcs":[[-108,132,133,-129,-103]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38087","arcs":[[134,135,136,137,-100,-98,-122]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38045","arcs":[[138,139,140,-133,-107,-115]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38041","arcs":[[-128,141,-135,-121]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38073","arcs":[[-118,142,143,144,-139,-114]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38077","arcs":[[145,-143,-117,146]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38085","arcs":[[-132,147,148,-126,-124]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38001","arcs":[[-127,-149,149,150,-136,-142]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38081","arcs":[[-146,151,152,-144]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38051","arcs":[[-141,153,154,-130,-134]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38021","arcs":[[-145,-153,155,-154,-140]]},{"type":"Polygon","properties":{"name":"ND"},"id":"38011","arcs":[[-151,156,-137]]}]},"states":{"type":"GeometryCollection","bbox":[-104.05002278699993,45.9350831540001,-96.55550277999993,49.00055311],"geometries":[{"type":"Polygon","properties":{"name":"North Dakota"},"id":"38","arcs":[[49,59,91,115,146,151,155,154,130,147,149,156,137,100,65,35,21,26,29,7,2,14,18,10]]}]}},"arcs":[[[60802,85133],[-170,1],[-15,0],[-26,0],[-80,0],[-76,0],[-104,0],[-15,1],[-24,0],[-72,0],[-96,0],[-46,0],[-58,0],[-52,0],[-37,0],[-29,1],[-25,0],[-24,0],[-27,0],[-1,0],[-24,0],[-52,0],[-15,0],[-49,3],[-28,0],[-21,-1],[-17,-2],[-43,1],[-52,-1],[-51,1],[-53,0],[-52,0],[-21,0],[-83,0],[-52,0],[-34,0],[-17,0],[-53,0],[-44,0],[-4,0],[-14,0],[-140,0],[-59,0],[-77,0],[-72,0],[-73,0],[-27,0],[-15,0],[-81,0],[-23,0],[-92,0],[-33,0],[-61,-1],[-1,0],[-105,1],[-33,0],[-53,0],[-25,0],[-12,0],[-2,-1],[-65,0],[-51,0],[-50,0],[-54,0],[-52,0],[-76,0],[-29,0],[-51,0],[-29,0],[-16,0],[-46,-1],[-13,0],[-20,1],[-15,-1],[-17,0],[-47,0],[-23,0],[-40,1],[-46,-4],[-11,0],[-22,0],[-221,0],[-7,0],[-35,-1],[-230,4],[-29,-1],[-32,0],[-291,0],[-71,0],[-27,0],[-54,1],[-29,0],[-110,0],[-291,2],[-18,0],[-50,0],[-25,-1],[-39,1],[-23,0],[-20,-1],[-17,-1],[-21,1],[-28,1],[-14,0],[-22,-1],[-313,1],[-58,0],[-217,2],[-247,-3],[-47,2],[-15,0],[-49,0],[-23,1],[-27,0],[-32,0],[-18,1],[-15,0],[-25,0],[-54,-1],[-30,0],[-24,1],[-31,1],[-56,-1],[-50,0],[-49,0],[-50,1],[-37,0],[-62,0],[-27,0],[-52,0],[-50,0],[-50,1],[-43,0],[-18,0],[-38,0],[-22,0],[-78,0],[-20,0],[-29,0],[-85,0],[-1,0],[-180,1],[-23,0],[-35,0],[-53,0],[-21,0],[-26,0],[-30,0],[-49,0],[-50,0],[-50,1],[-50,0],[-15,0],[-24,0],[-60,0],[-33,0],[-17,0],[-99,0],[-59,0],[-90,0],[-58,1],[-42,0],[-101,0],[-285,2]],[[52093,85147],[0,41],[0,65],[0,63],[0,38],[1,65],[0,34],[0,55],[0,108],[0,80],[0,66],[0,71],[0,42],[0,48],[0,41],[0,48],[0,71],[0,2],[1,147],[0,59],[-1,78],[0,49],[0,123],[0,98],[0,64],[1,65],[0,36],[0,48],[0,34],[0,12],[0,58],[0,54],[0,75],[0,34],[0,94],[0,105],[0,62],[0,38],[0,92],[0,103],[0,101],[0,38],[0,41],[0,44],[0,67],[0,78],[0,61],[0,41],[0,79],[1,37],[0,117],[0,54],[0,85],[0,32],[0,44],[0,33],[0,39],[0,65],[0,55],[0,54],[0,35],[0,33],[0,42],[0,43],[0,45],[0,8],[0,67],[0,46],[0,69],[0,41],[1,49],[0,62],[0,84],[0,43],[0,82],[0,3],[0,44],[0,33],[0,82],[0,47],[0,67],[0,41],[0,63],[0,117],[0,89],[0,67],[1,54],[-1,49],[1,66],[0,78],[0,52],[0,34],[0,44],[0,50],[0,64],[0,106],[-20,33],[-24,0],[-19,0],[-32,0],[-25,1],[-25,0],[-46,0],[-16,0],[-23,0],[-32,0],[-31,0],[-35,0],[-29,1],[-28,0],[-15,0],[-17,-1],[-22,0],[-16,0],[-23,0],[-18,0],[-5,34],[0,102],[0,49],[0,105],[0,92],[0,69],[0,20],[0,16],[0,43],[1,37],[0,33],[0,49],[0,42],[0,114],[0,68],[0,74],[0,76],[0,71],[0,38],[0,50],[0,81],[0,50],[0,34],[0,42],[0,76],[0,45],[0,53],[0,44],[0,87],[0,54],[0,39],[0,37],[0,54],[0,9],[0,28],[0,50],[0,34],[0,123],[0,6],[0,56],[0,48],[0,36],[0,33],[0,40],[0,50],[0,71],[0,41],[0,38],[0,52],[0,64],[0,38],[0,37],[0,112],[0,3],[0,106],[0,55],[0,62],[0,134],[0,60],[0,47],[1,105],[0,46],[0,47],[0,35],[-1,42],[0,65],[1,44],[-1,46],[1,49],[0,48],[0,58],[0,35],[0,43],[0,46],[-1,77],[0,101],[0,129],[2,34],[0,75],[0,43],[2,37],[1,76],[1,49],[-1,38],[3,54],[6,42],[-11,31],[0,43],[0,46],[0,39],[0,33],[0,47],[0,44],[1,50],[0,34],[0,55],[0,41],[0,33],[0,89],[0,40],[-1,40],[0,56],[1,40],[-1,138],[-1,57],[1,43],[-1,35],[0,36],[0,81],[0,43],[0,35],[0,51],[0,45],[0,38],[0,281],[-1,265],[0,44],[0,230],[0,147],[0,215],[1,63],[0,57],[0,51],[1,59],[0,6],[-1,453],[0,60],[3,33],[0,56],[0,34],[0,43],[-2,801],[1,111]],[[51602,99958],[105,0],[497,-1],[371,0],[562,0],[201,0],[2,0],[4,0],[325,0],[412,-1],[259,0],[610,0],[355,-1],[424,0],[376,0],[358,-1],[524,0],[295,0],[285,1],[268,1],[226,0],[527,1],[3,0],[4,0],[535,2],[440,1],[331,0],[267,1],[200,0]],[[60368,99961],[0,-3],[0,-198],[0,-49],[-1,-68],[0,-241],[0,-114],[-1,-368],[0,-105],[0,-125],[-2,-347],[1,-387],[0,-88],[0,-231],[3,-241],[-1,-85],[0,-65],[0,-65],[1,-65],[0,-65],[0,-82],[0,-42],[0,-462],[0,-11],[0,-81],[-1,-231],[0,-65],[0,-66],[0,-109],[0,-51],[0,-60],[0,-69],[0,-210],[-1,-72],[-1,-71],[0,-33],[0,-43],[3,-255],[-1,-476],[0,-49],[0,-65],[0,-65],[0,-70],[0,-61],[0,-158],[0,-44],[0,-185],[0,-179],[0,-63],[1,-65],[-1,-130],[0,-65],[0,-65],[0,-58],[0,-4],[0,-85],[-1,-113],[0,-131],[1,-91],[0,-40],[0,-15],[0,-112],[-1,-66],[0,-88],[1,-42],[0,-130],[-1,-126],[0,-1],[0,-68],[1,-65],[-1,-36],[0,-94],[0,-65],[0,-129],[0,-141],[0,-115],[0,-131],[0,-86],[0,-112],[0,-132],[0,-68],[0,-53],[-1,-65],[12,-42],[114,0],[21,0],[154,0],[20,0],[24,-1],[94,0],[0,-34],[-1,-155],[0,-50],[0,-67],[0,-71],[2,-32],[-2,-38],[0,-42],[0,-65],[0,-78],[0,-50],[0,-76],[0,-122],[0,-53],[0,-131],[0,-82],[0,-132],[0,-46],[0,-83],[0,-57],[0,-119],[0,-60],[0,-81],[0,-82],[0,-37],[0,-65],[0,-41],[0,-1],[0,-88],[0,-65],[0,-130],[0,-66],[0,-53],[0,-77],[0,-130],[0,-129],[-1,-65],[1,-66],[0,-6],[0,-59],[0,-129],[0,-47],[0,-62],[-1,-20],[0,-18],[1,-137],[-1,-57],[0,-65],[0,-65],[0,-195],[0,-91],[0,-39],[0,-65],[0,-131],[0,-194],[0,-43],[0,-152],[0,-260],[0,-61],[0,-69],[0,-74],[0,-56],[0,-65],[0,-35],[0,-76],[0,-96],[0,-474]],[[52093,85147],[-105,-3],[-49,0],[-50,0],[-50,0],[-36,-1],[-117,-1],[-45,0],[-104,0],[-25,0],[-48,0],[-16,-1],[-92,0],[-137,-1],[-51,-1],[-103,-1],[-18,0],[-39,0],[-3,0],[-46,-1],[-29,0],[-39,0],[-31,0],[-34,-1],[-16,0],[-32,0],[-139,-1],[-25,0],[-50,-1],[-48,-1],[-100,-1],[-68,-4]],[[50348,85128],[-31,4],[-26,0],[-61,0],[-34,0],[-52,1],[-17,0],[-34,0],[-38,0],[-30,-1],[-31,-1],[-89,-1],[-27,0],[-16,0],[-34,-1],[-21,1],[-27,0],[-15,-1],[-116,3],[-173,-4],[-60,2],[-86,-1],[-147,-1],[-100,1],[-46,0],[-99,-1],[-45,0],[-20,0],[-38,0],[-24,0],[-97,0],[-30,-1],[-19,0],[-24,0],[-23,0],[-1,110],[-1,123],[-1,133],[1,111],[-1,397],[0,36],[0,41],[1,93],[-1,66],[0,62],[0,69],[-1,86],[0,52],[0,42],[0,106],[0,66],[0,106],[0,197],[-1,309],[0,48],[0,58],[0,65],[0,89],[0,32],[0,76],[0,48],[-1,53],[0,65],[0,66],[0,40],[-37,1],[-24,0],[-16,0],[-9,0],[-14,0],[-36,1],[-97,1],[-63,1],[-36,1],[-13,0],[-64,1],[-30,0],[-25,1],[-121,1],[-51,1],[-48,-1],[-14,1],[-36,-1],[-28,0],[-22,1],[-48,0],[-47,1],[-218,3],[-74,1],[-79,3],[-88,2],[-125,-2],[-281,3],[-19,0],[-143,0],[-51,0],[-49,0],[-29,0],[-293,1],[-64,0],[-48,0],[-49,1],[-49,-1],[-82,1],[-62,0],[-32,0],[-38,0],[-28,0],[-23,0],[-26,0],[-49,1],[-23,0],[-23,-2],[-28,0],[-15,0],[-34,0],[-19,0],[-33,0],[-20,2],[-30,0],[-22,0],[-24,1],[-26,0],[-27,0],[-14,-1],[-46,-1],[-17,0],[-40,1],[-35,0],[-43,0],[-42,-1],[-17,0],[-33,1],[-29,1],[-18,0],[-14,0],[-19,0],[-28,0],[-22,0],[-17,0],[-29,1],[-16,0],[-65,0],[-25,1],[-33,-1],[-2,0],[-31,0],[-17,0],[-119,0],[-19,0],[-72,0],[-25,0],[-25,0],[-11,0],[-6,0],[-17,0],[-76,0],[-12,0],[-42,0],[-81,-1],[-202,0],[-24,7],[-71,-2],[-25,1],[-10,0],[-112,1],[-125,-2],[-18,0],[-70,1],[-15,0],[-35,-1],[-96,1],[-41,0],[-14,2],[-39,-7],[-25,0],[-11,0],[-220,4],[-28,0],[-31,0],[-17,1],[-18,0],[-14,0],[-17,-1],[-21,1],[-28,0],[-35,-1],[-54,0],[-15,1],[-15,0],[-141,0],[-20,0],[-60,0],[-38,0],[-35,0],[-21,-2],[-16,0],[-26,1],[-26,2],[-19,0],[-40,0],[-51,-1],[-66,1],[-30,-1],[-52,0],[-25,0],[-50,0],[-21,-1],[-24,0],[-26,0],[-26,0],[-28,0],[-36,0],[-15,2],[-33,0],[-42,0],[-30,0],[-27,-1],[-56,-1],[-83,-4],[-292,-2],[-291,4],[-152,-3],[-32,1],[-47,0],[-61,1],[-27,4],[-51,-2],[-25,-9],[-124,12],[-14,3],[-33,-14],[-18,0],[-55,2],[-17,0],[-3,0],[-218,-3],[-113,-1],[-1,0],[-30,0],[-139,0],[0,-56],[0,-67],[-1,-65],[0,-54],[0,-1],[1,-119],[0,-111],[-1,-129],[0,-65],[1,-113],[0,-66],[0,-63],[0,-36],[0,-35],[0,-66],[-1,-88],[0,-44],[0,-45],[0,-133],[0,-63],[-2,-87],[1,-166],[2,-134],[0,-85],[0,-59],[-1,-64],[0,-66],[0,-66],[0,-87],[0,-44],[0,-89],[0,-147],[0,-45],[0,-94],[0,-114],[0,-71]],[[39900,85153],[-292,0],[-14,1],[-179,0],[-62,1],[-16,0],[-21,0],[-112,-1],[-140,1],[-35,0],[-17,0],[-17,0],[-16,0],[-60,0],[-86,1],[-99,0],[-81,0],[-64,0],[-58,1],[-73,0],[-15,0],[-53,0],[-58,0],[-58,0],[-19,0],[-98,0],[-125,1],[-19,0],[-17,0],[-13,0],[-57,0],[-23,0],[-14,1],[-22,0],[-19,0],[-23,-1],[-17,0],[-19,0],[-34,1],[-37,1],[-39,0],[-50,0],[-2,0],[-17,0],[-35,0],[-17,-1],[-66,-1],[-37,1],[-21,-14],[-28,0],[-29,0],[-22,14],[-87,3],[-25,0],[-36,0],[-40,0],[-19,0],[-36,0],[-77,1],[-21,0],[-22,0],[-13,0],[-66,0],[-4,0],[-70,0],[-35,0],[-91,1],[-13,0],[-11,0],[-35,0],[-37,0],[-36,1],[-36,-1],[-36,0],[-36,0],[-40,1],[-25,-2],[-36,0],[-18,0],[-22,-3],[-15,3],[-51,-3],[-22,2],[-23,2],[-38,0],[-43,0],[-15,3],[-50,0],[-73,0],[-73,1],[-96,0],[-29,2],[-74,1],[-35,-1],[-33,-1],[-17,-2],[-10,1],[-10,1],[-45,0],[-39,2],[-58,-1],[-104,-1],[-35,1],[-34,0],[-35,0],[-25,0],[-48,1],[-60,0],[-51,0],[-22,0],[-41,1],[-46,0],[-23,0],[-31,0],[-28,-1],[-18,-12],[-16,12],[-18,1],[-59,1],[-69,0],[-45,0],[0,98],[0,374],[0,67],[0,75],[0,49],[0,39],[0,77],[0,41],[0,36],[0,33],[0,57],[0,89],[0,35],[0,36],[0,61],[0,118],[0,146],[0,34],[0,39],[0,37],[0,38],[0,93],[0,86],[0,38],[0,109],[0,38],[0,37],[0,37],[0,73],[0,37],[0,114],[0,41],[0,6],[0,103],[0,42],[0,45],[0,37],[0,81],[0,1],[0,36],[0,64],[0,59],[0,64],[0,41],[-1,55],[0,44],[0,33],[-1,35],[1,34],[0,41],[-1,63],[1,73],[1,65],[0,37],[0,65],[0,65],[0,91],[0,36],[0,57],[0,55],[1,74],[0,40],[0,6],[0,36],[-1,41],[1,47],[0,79],[0,52],[0,33],[0,40],[-1,67],[0,43],[1,68],[0,249],[0,62],[-1,94],[1,51],[-1,100],[1,72],[0,29],[0,19],[0,45],[0,57],[0,81],[2,47],[0,36],[-1,58],[1,66],[-2,48],[0,35],[0,61],[0,90],[-1,38],[-16,-2],[-17,0],[-31,1],[-50,0],[-55,-1],[-49,1],[-49,0],[-5,0],[-23,0],[-18,1],[-57,0],[-37,1],[-15,0],[-19,0],[-33,0],[-24,0],[-26,1],[-59,0],[-23,17],[0,34],[0,131],[0,66],[0,63],[0,69],[0,92],[0,171],[0,65],[0,64],[0,61],[0,10],[0,67],[1,36],[-1,42],[0,40],[0,55],[0,39],[0,68],[0,64],[1,137],[0,23],[-1,29],[1,38],[0,38],[0,38],[0,36],[0,89],[0,35],[0,115],[0,57],[0,113],[0,85],[0,38],[0,51],[0,42],[0,72],[0,53],[0,40],[1,41],[-1,94],[0,27],[0,14],[0,43],[0,41],[1,39],[0,55],[0,65],[0,42],[0,42],[0,48],[-1,72],[1,73],[0,103],[0,46],[0,77],[0,108],[0,62],[-1,81],[1,57],[0,59],[-1,52],[0,46],[1,55],[0,50],[-1,62],[0,42],[0,36],[0,44],[1,43],[-1,33],[1,50],[-1,33],[0,64],[0,100],[0,34],[1,48],[5,33],[-5,47],[-1,51],[0,62],[0,47],[-1,37],[0,68],[0,40],[0,89],[0,53],[0,78],[1,49],[-1,41],[0,33],[2,468],[0,200],[0,8],[0,268],[0,48],[0,46],[0,110],[0,49],[-1,37],[1,56],[-1,105],[0,47],[1,119],[0,45],[0,46],[0,66],[0,47],[0,63],[0,34],[1,43],[-1,99],[0,58],[1,40],[-2,41],[0,51],[0,41],[1,54],[0,39],[-1,59],[1,54],[0,43],[1,33],[-1,42],[-1,35],[0,61],[1,43],[-1,55],[0,77],[0,96],[0,128],[0,98],[0,53],[0,97],[0,33],[0,58],[-1,380],[0,149]],[[34069,99963],[195,0],[339,0],[294,0],[484,0],[399,1],[86,0],[357,0],[318,0],[121,0],[40,0],[35,0],[9,0],[362,0],[188,0],[248,0],[401,0],[483,1],[401,0],[481,0],[463,1],[419,0],[262,2],[12,0],[2,0],[159,-2],[444,1],[71,0],[111,0],[34,0],[265,0],[316,0],[384,-1],[390,-1],[492,0],[495,-1],[356,0],[357,0],[425,-1],[136,0],[560,-1],[395,0],[393,0],[354,-1],[12,0],[6,0],[388,0],[184,0],[562,-1],[545,0],[322,0],[520,-1],[17,0],[170,0],[16,0],[282,0],[333,0],[583,-1],[251,0],[320,0],[186,0],[107,0],[193,0]],[[91901,85075],[-86,-24],[-17,0],[-16,0],[-25,0],[-50,0],[-15,1],[-18,-4],[-16,0],[-5,0],[-49,1],[-12,0],[-5,1],[-63,1],[-31,0],[-89,0],[-83,2],[-42,0],[-47,1],[-37,0],[-42,1],[-42,0],[-83,0],[-42,1],[-45,0],[-17,0],[-19,0],[-36,1],[-39,0],[-15,1],[-42,0],[-39,1],[-17,-1],[-41,1],[-33,1],[-171,2],[-84,2],[-30,-1],[-41,0],[-17,0],[-85,1],[-30,0],[-16,0],[-18,0],[-19,0],[-16,0],[-18,0],[-16,0],[-15,0],[-21,0],[-86,1],[-49,0],[-22,0],[-41,0],[-55,1],[-16,0],[-16,-1],[-42,1],[-43,0],[-42,0],[-41,0],[-40,1],[-25,0],[-4,0],[-20,2],[-26,1],[-32,-1],[-12,0],[-9,0],[-22,0],[-20,-1],[-52,1],[-31,0],[-84,1],[-22,0],[-20,0],[-42,0],[-23,0],[-19,0],[-27,1],[-44,0],[-51,0],[-65,0],[-53,0],[-15,0],[-28,1],[-44,0],[-51,0],[-32,0],[-40,0],[-42,0],[-66,0],[-19,0],[-85,0],[-39,0],[-44,0],[-43,0],[-43,0],[-38,0],[-35,0],[-52,1],[-11,0],[-5,0],[-21,0],[-6,0],[-9,-1],[-22,1],[-49,0],[-65,0],[-17,0],[-35,0],[-43,0],[-20,0],[-25,0],[-99,0],[-26,0],[-42,1],[-27,0],[-14,0],[-44,0],[-39,0],[-85,0],[-33,0],[-28,0],[-23,0],[-36,0],[-16,0],[-70,1],[-19,0],[-36,0],[-14,0],[-72,0],[-83,0],[-64,1],[-20,0],[-86,-1],[-49,0],[-33,1],[-85,0],[-41,0],[-26,0],[-16,1],[-17,0],[-17,0],[-127,0],[-42,-1],[-36,1],[-20,0],[-32,0],[-40,0],[-17,0],[-1,0],[-23,0],[-39,0],[-88,0],[-41,0],[-42,1],[-22,0],[-20,-1],[-42,0],[-42,0],[-112,0],[-11,1],[-20,-1],[-61,0],[-33,1],[-24,0],[-73,0],[-40,0],[-19,0],[-13,0],[-41,0],[-42,0],[-41,0],[-40,0],[-32,0],[-20,0],[-20,1],[-16,0],[-27,0],[-16,0],[-25,0],[-25,-1],[-32,0],[-201,0],[-134,0],[-43,0],[-45,-1],[-34,0],[-36,1],[-19,0],[-25,0],[-40,0],[-44,0],[-56,-1],[-27,0],[-42,0],[-38,0],[-58,0],[-31,0],[-43,0],[-42,0],[-46,0],[-24,0],[-47,0],[-53,-1],[-31,0],[-43,0],[-33,0],[-26,0],[-26,0],[-42,0],[-38,0],[-44,0],[-14,0],[-67,-1],[-83,0],[-42,1],[-34,-1],[-50,0],[-53,0],[-32,0],[-13,0],[-29,0],[-41,0],[-27,0],[-25,1],[-29,0],[-21,0],[-42,0],[-49,0],[-33,0],[-21,0],[-19,0],[-31,0],[-28,0],[-16,0],[-29,0],[-29,0],[-25,0],[-35,1],[-41,0],[-2,0],[-14,0],[-69,0],[-41,0],[-28,0],[-1,0],[-14,0],[-43,0],[-42,-1],[-15,0],[-28,1],[-29,0],[-14,0],[-22,0],[-20,0],[-18,0],[-43,0],[-42,0],[-43,0],[-43,0],[-21,0],[-38,0],[-72,0],[-36,0],[-14,0],[-40,0],[-26,0],[-18,0],[-72,0],[-46,0],[-30,0],[-39,0]],[[81697,85077],[1,128],[0,111],[0,232],[1,118],[-2,346],[1,343],[0,160],[0,215],[0,189],[1,103],[0,98],[-1,179],[0,55],[1,43],[-3,262],[2,89],[0,69],[0,90],[0,4],[-1,73],[0,75],[0,43],[0,50],[0,58],[0,71],[1,59],[0,40],[-3,46],[2,151],[0,142],[1,252],[0,46],[-1,133],[-1,183],[0,254],[0,137],[0,63],[1,86],[0,34],[0,149],[0,56],[0,69],[0,46],[0,43],[-1,96],[0,100],[0,37],[0,35],[0,10],[0,47],[1,92],[-1,47],[-3,36],[-27,2],[-26,1],[-121,-1],[-121,0],[-1,74],[2,83],[-1,94],[-1,95],[-1,101],[1,88],[0,5],[-1,165],[-1,210],[-1,87],[2,34],[0,64],[-1,76],[0,47],[0,42],[0,39],[-1,37],[-1,53],[0,30],[1,52],[-1,57],[0,40],[0,72],[0,82],[0,5],[-1,32],[1,41],[-1,79],[0,60],[0,86],[0,88],[-1,128],[0,44],[0,41],[0,82],[0,45],[0,46],[0,47],[-1,188],[0,69],[0,43],[0,36],[0,34],[0,59],[1,48],[-1,34],[1,62],[1,52],[-1,44],[0,44],[1,40],[0,52],[1,82],[0,64],[0,35],[1,36],[0,144],[1,59],[0,44],[0,85],[1,96],[0,87],[0,67],[0,36],[1,43],[0,59],[0,44],[1,71],[0,9],[0,42],[0,85],[0,50],[1,56],[0,40],[-1,39],[1,51],[0,43],[1,59],[0,38],[0,174],[3,36],[0,56],[0,373],[1,109],[2,244],[-2,45],[0,52],[1,35],[1,40],[-1,38],[0,54],[0,63],[0,64],[0,59],[0,129],[0,71],[-2,42],[-2,103],[-1,55],[-1,51],[-2,60],[-2,68],[-2,51],[0,43],[-2,51],[-1,38],[-1,54],[-2,70],[0,38],[-2,41],[-1,82],[0,37],[0,39],[-1,37],[1,43],[0,51],[1,35],[0,33],[0,51],[0,35],[1,34],[0,45],[0,45],[1,66],[0,47],[0,44],[0,82],[1,65],[0,60],[1,103],[1,65],[0,164],[1,102],[-1,241],[1,54],[-1,65],[0,59],[1,98],[0,15]],[[81391,99996],[2,0],[80,0],[286,0],[183,0],[2,0],[3,0],[107,0],[295,1],[292,0],[296,0],[266,0],[322,1],[294,0],[310,0],[278,1],[294,0],[291,0],[295,0],[294,0],[295,-1],[294,0],[294,0],[168,0],[5,0],[121,0],[294,0],[294,-1],[293,0],[294,0],[294,0],[294,0],[294,0],[294,-1],[294,0],[294,0],[293,1],[294,-1],[293,0],[294,0],[27,0],[6,0],[25,0],[6,0],[59,0],[19,-1],[-40,-43],[-27,-45],[-2,-54],[18,-29],[23,-12],[28,5],[17,-8],[13,-20],[0,-34],[-29,-50],[-58,-60],[-25,-46],[-22,-59],[-15,-54],[-7,-54],[-2,-71],[6,-66],[1,-173],[0,-43],[-14,-84],[1,-100],[23,-45],[58,-28],[23,1],[30,-25],[15,-28],[3,-29],[-7,-34],[-27,-63],[-13,-46],[-43,-288],[1,-45],[12,-21],[16,-12],[58,10],[17,-33],[1,-75],[-7,-42],[-2,-83],[11,-120],[16,-58],[17,-29],[26,-24],[78,10],[20,-41],[-2,-42],[-37,-92],[-29,-109],[-2,-75],[13,-45],[20,-33],[53,-36],[26,-41],[10,-38],[-2,-25],[0,-50],[-24,-116],[0,-79],[8,-46],[16,-49],[36,-62],[40,-33],[76,-39],[56,-45],[20,-20],[25,-41],[23,-50],[3,-66],[-9,-38],[-15,-25],[-20,-17],[-36,7],[-30,29],[-13,4],[-27,-1],[-8,-17],[0,-20],[46,-83],[11,-28],[0,-50],[-32,-97],[1,-58],[12,-41],[26,-41],[56,-53],[43,-32],[48,1],[40,17],[37,1],[11,-8],[20,-37],[-2,-46],[-10,-25],[-45,-76],[-37,-63],[-40,-51],[-20,-33],[-15,-50],[1,-38],[15,-29],[30,1],[20,17],[25,9],[38,-4],[23,-45],[1,-66],[-5,-46],[0,-50],[5,-8],[0,-8],[6,-29],[7,-17],[56,-90],[6,-17],[5,-24],[0,-42],[-10,-25],[-27,-34],[-40,-13],[-36,-1],[-17,-21],[0,-25],[10,-16],[61,-16],[28,-37],[13,-49],[8,-108],[-2,-71],[-35,-59],[-32,-21],[-28,-1],[-25,-9],[-22,-37],[-5,-25],[5,-67],[23,-58],[51,-82],[18,-53],[1,-29],[-10,-63],[-17,-58],[-27,-51],[-45,-34],[-38,-13],[-32,-42],[0,-34],[13,-20],[27,-4],[43,30],[35,1],[35,-20],[61,-82],[23,-16],[45,-8],[20,13],[63,10],[28,-12],[23,-20],[15,-25],[2,-12],[1,-67],[-2,-12],[-13,-21],[-22,-30],[-91,-35],[-114,-98],[-38,-17],[-22,-21],[-15,-34],[3,-54],[15,-25],[10,-4],[35,5],[60,101],[37,34],[40,5],[18,-8],[15,-12],[21,-33],[5,-16],[3,-67],[-20,-33],[-10,-9],[-25,0],[-25,8],[-6,8],[-30,3],[-25,-13],[-22,-38],[3,-58],[29,-43],[18,-4],[61,0],[36,-7],[20,-12],[70,-38],[-18,-85],[-20,-91],[50,-80],[77,5],[32,-36],[0,-25],[-20,-42],[-23,-21],[-100,-56],[-10,-17],[-7,-50],[2,-11],[26,-43],[56,-15],[15,-25],[23,-91],[21,-45],[17,-29],[18,-45],[3,-21],[-2,-58],[-10,-29],[-17,-30],[-65,-51],[-15,-25],[-12,-38],[0,-74],[18,-79],[11,-29],[30,-49],[13,-8],[55,-3],[30,17],[33,1],[25,-16],[15,-29],[13,-54],[3,-91],[-2,-46],[-14,-79],[-23,-51],[-34,-50],[-8,-21],[0,-33],[8,-29],[23,-33],[13,-8],[103,6],[17,-12],[21,-41],[-2,-67],[-20,-37],[-30,-22],[-15,0],[-40,-17],[-15,-26],[0,-29],[5,-16],[23,-37],[99,-102],[20,-29],[10,-24],[41,-137],[52,-162],[1,-2],[14,-14],[13,-10],[37,-20],[29,-24],[11,-12],[12,-19],[2,-9],[0,-19],[-9,-32],[-9,-14],[-9,-8],[-22,-9],[-18,-4],[-34,-11],[-20,-11],[-10,-12],[-5,-9],[-5,-12],[-4,-13],[0,-25],[2,-14],[10,-35],[14,-23],[36,-58],[12,-23],[19,-43],[27,-88],[16,-52],[6,-13],[13,-23],[16,-19],[29,-25],[14,-9],[70,-41],[55,-29],[18,-13],[23,-19],[19,-29],[5,-10],[3,-13],[2,-25],[-3,-14],[-4,-16],[-7,-11],[-7,-8],[-13,-6],[-21,0],[-37,31],[-14,6],[-14,1],[-10,-3],[-10,-9],[-5,-11],[-4,-13],[-3,-16],[-3,-20],[1,-29],[1,-20],[6,-51],[5,-47],[9,-233],[-2,-26],[-3,-17],[-5,-15],[-8,-14],[-19,-24],[-26,-22],[-19,-11],[-25,-16],[-6,-8],[-6,-13],[-2,-13],[1,-16],[4,-12],[6,-10],[9,-9],[13,-6],[14,3],[33,13],[17,4],[7,-1],[14,-13],[8,-8],[7,-18],[3,-10],[2,-10],[0,-31],[-3,-22],[-6,-16],[-10,-26],[-14,-35],[-11,-21],[-13,-19],[-18,-36],[-10,-18],[-14,-38],[-4,-17],[-3,-24],[-1,-17],[-1,-9],[1,-20],[-1,-29],[-4,-22],[-4,-17],[-4,-11],[-12,-27],[-10,-19],[-10,-12],[-48,-18],[-12,-9],[-5,-9],[-7,-26],[0,-20],[7,-24],[42,-64],[14,-30],[5,-13],[6,-22],[5,-22],[7,-39],[5,-37],[5,-48],[1,-25],[-3,-19],[-5,-23],[-3,-12],[-10,-27],[-14,-22],[-15,-14],[-29,-7],[-14,3],[-19,13],[-26,31],[-20,32],[-26,29],[-19,15],[-22,7],[-71,-58],[-3,-12],[-2,-30],[0,-33],[3,-22],[6,-22],[26,-41],[53,-61],[66,-119],[13,-37],[-2,-71],[-18,-29],[-7,-4],[-38,3],[-18,25],[-35,82],[-26,41],[-20,16],[-37,-1],[-8,-4],[-12,-21],[-2,-37],[76,-119],[12,-46],[1,-41],[-20,-38],[-30,-5],[-15,4],[-53,41],[-14,1],[-4,7],[-20,3],[-37,0],[-38,-14],[-20,-12],[-17,-22],[-18,-29],[-7,-25],[0,-46],[6,-24],[7,-21],[3,-4],[15,-21],[23,-12],[42,1],[58,26],[40,1],[12,-12],[11,-21],[0,-33],[-5,-17],[-55,-75],[-19,-51],[-22,-83],[-30,-55],[-12,-8],[-83,6],[-12,-21],[-23,-62],[6,-33],[20,-25],[37,1],[25,9],[41,-4],[25,-37],[8,-24],[-2,-154],[-12,-108],[-9,-46],[-17,-33],[-15,-13],[-41,-1],[-62,49],[-43,7],[-33,-26],[-14,-25],[-3,-12],[1,-46],[17,-33],[31,-16],[80,-6],[44,-76],[-7,-88],[-7,-82],[-48,-95],[-20,-17],[-97,-27],[-90,-10],[-30,-9],[-28,-17],[-38,-35],[7,-121],[68,-68],[45,-28],[103,-2],[30,9],[115,2],[65,-15],[21,-16],[27,-41],[11,-33],[0,-42],[-15,-33],[-22,-17],[-193,-8],[-20,8],[-15,16],[-31,49],[-22,25],[-25,-1],[-10,-8],[-18,-30],[-5,-25],[1,-116],[26,-124],[23,-58]],[[67777,85113],[0,-81],[0,-120],[0,-59],[0,-36],[0,-28],[0,-59],[0,-59],[-1,-122],[0,-60],[0,-58],[0,-59],[0,-58],[0,-60],[0,-56],[-1,-219],[0,-146],[0,-56],[0,-51],[0,-56],[0,-92],[0,-69],[0,-64],[0,-65],[0,-65],[0,-91],[0,-1],[0,-472],[0,-148],[0,-261],[0,-64],[-2,-401],[0,-76],[0,-470],[0,-45],[-1,-142],[0,-94],[0,-98],[-1,-91],[0,-90],[1,-73],[0,-35],[0,-73],[-2,-87],[1,-115],[0,-90],[0,-103],[0,-97],[0,-104],[0,-79],[0,-109],[0,-121],[0,-148],[-1,-67],[-88,-24],[-68,0],[-38,-1],[-79,-1],[-17,0],[-53,1],[-40,1],[-48,-1],[-29,0],[-84,0],[-32,1],[-17,0],[-23,0],[-23,0],[-45,0],[-68,0],[-18,-6],[-16,6],[-17,0],[-69,0],[-64,1],[-38,0],[-62,0],[-13,0],[-39,0],[-75,0],[-40,0],[-109,1],[-15,0],[-125,0],[-143,0],[-44,0],[-38,0],[-66,0],[-20,0],[-80,1],[-1,0],[-48,0],[-14,0],[-121,0],[-33,0],[-56,0],[-83,0],[-104,0],[-21,0],[-91,1],[-74,0],[-53,0],[-72,0],[-81,0],[-76,0],[-14,0],[-44,1],[-62,0],[-87,0],[-45,0],[-20,0],[-16,0]],[[64711,79451],[-1,0],[-16,0],[-56,0],[-40,0],[-95,1],[-34,0],[-47,0],[-32,0],[-41,0],[-17,0],[-34,0],[-14,0],[-157,1],[-34,0],[-47,0],[-47,0],[-32,0],[-36,1],[-17,0],[-67,0],[-51,0],[-34,-1],[-59,1],[-44,0],[-34,0],[-48,0],[-24,0],[-30,0],[-33,0],[-77,0],[-25,0],[-33,1],[-34,0],[-27,0],[-32,0],[-43,-1],[-29,1],[-43,-1],[-103,0],[-34,1],[-26,0],[-151,1],[-17,0],[-45,0],[-77,0],[-26,1],[-34,0],[-92,0],[-44,-1],[-18,1],[-16,0],[-68,0],[-34,0],[-34,0],[-33,0],[-43,0],[-25,0],[-37,0],[-13,1],[-64,0],[-23,0],[-35,0],[-33,0],[-34,0],[-26,0],[-111,0],[-28,0],[-26,0],[-46,1],[-24,0],[-57,0],[-22,0],[-68,0],[-33,0],[-14,0],[-107,0],[-15,0],[-14,0],[-16,0],[-127,0],[-118,1],[-25,0],[-21,0],[-63,0],[-49,0],[-15,0],[-33,0],[-16,0],[-79,0],[-29,0]],[[60806,79460],[-6,89],[0,94],[0,66],[1,53],[-1,76],[0,64],[2,79],[0,72],[0,211],[0,73],[0,1],[0,26],[0,44],[0,8],[-1,181],[0,278],[0,284],[0,195],[-7,469],[6,238],[0,68],[0,91],[0,77],[1,32],[0,75],[0,69],[0,62],[0,67],[0,63],[0,85],[0,104],[0,65],[0,51],[0,144],[0,66],[0,64],[0,2],[0,63],[0,64],[0,80],[0,50],[0,65],[0,103],[0,43],[0,102],[0,66],[0,56],[0,141],[0,65],[0,42],[0,218],[0,65],[0,44],[0,86],[1,61],[-1,69],[1,130],[0,65],[0,65],[0,65],[0,79]],[[60368,99961],[215,1],[376,1],[377,1],[384,1],[399,0],[425,1],[55,1],[154,0],[6,0],[244,0],[90,1],[335,1],[328,1],[189,0],[144,1],[287,1],[293,0],[334,1],[214,1],[485,1],[410,1],[319,1],[281,1],[42,0],[294,1],[198,0],[107,0],[32,0]],[[67385,99979],[-3,-117],[0,-67],[0,-37],[0,-38],[-1,-431],[0,-46],[-1,-231],[0,-181],[0,-52],[0,-76],[0,-123],[0,-66],[0,-73],[-1,-54],[0,-45],[0,-55],[0,-45],[0,-33],[0,-47],[0,-34],[0,-36],[0,-35],[0,-41],[0,-78],[-1,-67],[0,-112],[0,-89],[0,-89],[0,-126],[0,-56],[0,-85],[0,-89],[0,-89],[-1,-89],[0,-49],[0,-38],[0,-35],[0,-145],[0,-89],[0,-86],[-1,-151],[0,-36],[0,-75],[0,-89],[0,-89],[0,-90],[0,-57],[0,-51],[0,-46],[0,-49],[0,-39],[0,-51],[0,-33],[-1,-83],[0,-78],[-1,-49],[0,-55],[0,-81],[0,-56],[0,-93],[0,-55],[0,-40],[-1,-95],[0,-32],[1,-155],[1,-75],[-4,-711],[0,-121],[1,-133],[0,-74],[0,-4],[0,-139],[0,-53],[0,-75],[0,-49],[0,-60],[0,-88],[1,-56],[0,-58],[0,-28],[-1,-47],[2,-431],[0,-473],[0,-63],[0,-5],[1,-403],[2,-257],[0,-215],[0,-47],[7,-426],[41,0],[61,0],[50,0],[29,-1],[16,0],[69,-1],[33,0],[95,0],[0,-107],[0,-65],[0,-38],[0,-58],[0,-209],[0,-109],[0,-103],[0,-90],[0,-170],[0,-35],[0,-37],[0,-52],[1,-52],[-1,-67],[0,-37],[0,-51],[0,-52],[0,-52],[0,-38],[0,-65],[0,-106],[0,-96],[0,-95],[0,-110],[0,-58],[0,-103],[1,-52],[0,-104],[0,-59],[0,-96],[0,-68],[0,-85],[0,-53],[-1,-52],[0,-213],[0,-90],[0,-7],[0,-52],[0,-52],[0,-54],[0,-92],[0,-97],[0,-119],[-1,-131],[0,-34],[0,-56],[0,-55],[0,-55],[0,-52],[0,-61],[0,-54],[0,-56],[1,-61],[0,-95],[0,-65],[0,-46],[-1,-45],[0,-111],[0,-55],[0,-60],[0,-65],[0,-39],[1,-89],[1,-39],[0,-78],[-1,-105],[-1,-60],[0,-48],[1,-58],[0,-95],[0,-48],[0,-60],[0,-60],[0,-120],[0,-58],[0,-39],[-1,-35],[0,-45],[0,-38]],[[81697,85077],[-51,0],[-42,0],[-21,0],[-4,0],[-20,0],[-18,0],[-41,0],[-55,0],[-39,1],[-80,0],[-25,0],[-16,0],[-26,0],[-16,0],[-35,0],[-72,0],[-19,0],[-22,1],[-14,0],[-39,0],[-75,0],[-97,0],[-47,1],[-46,0],[-59,0],[-15,0],[-55,0],[-29,0],[-41,0],[-46,0],[-23,1],[-16,0],[-47,0],[-12,0],[-24,0],[-22,0],[-31,0],[-43,0],[-39,0],[-42,1],[-42,0],[-42,0],[-30,0],[-54,-1],[-13,0],[-14,0],[-16,1],[-69,-1],[-16,1],[-43,0],[-30,0],[-46,0],[-40,0],[-63,0],[-44,0],[-69,0],[-92,0],[-58,0],[-33,0],[-39,0],[-37,0],[-19,0],[-71,0],[-14,0],[-23,0],[-26,0],[-53,0],[-48,0],[-18,0],[-33,0],[-19,0],[-89,0],[-19,0],[-18,0],[-21,0],[-74,0],[-30,0],[-42,0],[-42,0],[-57,0],[-74,0],[-46,0],[-73,0],[-42,0],[-70,0],[-66,-1],[-37,0],[-32,1],[-52,0],[-41,1],[-42,0],[-42,0],[-42,1],[-33,0],[-92,2],[-42,0],[-42,1],[-42,0],[-41,1],[-35,0],[-75,1],[-16,0],[-41,0],[-85,1],[-15,0],[-31,0],[-34,0],[-41,0],[-57,1],[-27,1],[-42,0],[-42,0],[-49,1],[-34,0],[-24,0],[-18,0],[-46,1],[-50,1],[-30,0],[-42,0],[-42,1],[-31,0],[-52,0],[-19,1],[-22,0],[-43,0],[-16,0],[-32,1],[-29,0],[-27,0],[-49,0]],[[76480,85098],[-37,0],[-6,0],[-154,-1],[-95,0],[-34,0],[-75,0],[-28,0],[-26,0],[-80,-1],[-32,0],[-16,0],[-88,0],[-84,-1],[-72,0],[-36,0],[-10,0],[-9,0],[-16,0],[-11,0],[-140,0],[-61,-1],[-42,0],[-14,0],[-57,0],[-58,0],[-31,-1],[-25,0],[-96,0],[-24,0],[-50,0],[-57,-1],[-27,1],[-150,0],[-71,0],[-200,0],[-22,0],[-61,0],[-108,0],[-28,1],[-99,0],[-1,0],[-16,0],[-25,0],[-52,0],[-36,0],[-81,0],[-17,0],[-38,0],[-20,0],[-162,0],[-131,0],[-79,0],[-66,0],[-40,0],[-104,0],[-109,0],[-30,0],[-21,0],[-100,-1],[-26,1],[-192,0],[-99,1],[-233,1],[-58,1],[-27,0],[-65,0],[-76,0],[-36,1],[-86,0],[-150,-7],[-5,-1],[-16,-2],[-20,11],[-22,0],[-37,0],[-41,0],[-16,0],[-21,0],[-116,1],[-138,0],[-59,1],[-101,0],[-100,1],[-25,0],[-33,0],[-46,0],[-33,0],[-179,0],[-187,0],[-70,0],[-27,0],[-104,0],[-49,0],[-22,0],[-122,-1],[-39,1],[-56,0],[-53,0],[-24,0],[-119,0],[-78,0],[-48,0],[-9,0],[-74,0],[-27,0],[-54,0],[-254,0],[-35,0],[-71,5],[-6,0],[-19,-4],[-7,-1],[-46,0],[-31,0],[-94,0],[-23,0],[-31,0],[-2,0],[-59,0],[-89,1],[-44,0],[-60,0],[-63,0],[-143,1],[-85,0],[-15,0],[-42,1],[-19,0],[-90,1],[-33,0],[-92,1],[-24,0],[-25,0],[-26,1],[-59,1],[-79,0],[-16,1],[-61,0],[-150,2],[-6,0],[-15,0],[-30,0],[-18,0],[-18,1],[-47,0]],[[67385,99979],[262,1],[294,1],[264,1],[8,0],[22,0],[16,0],[174,0],[104,1],[294,0],[295,0],[294,0],[295,1],[294,0],[294,0],[283,0],[307,1],[293,0],[276,0],[14,0],[266,0],[42,0],[286,0],[294,1],[294,0],[294,0],[294,0],[295,1],[294,0],[298,0],[290,0],[250,1],[41,0],[294,0],[295,0],[293,0],[264,1],[3,0],[3,0],[7,0],[17,0],[294,0],[295,0],[294,1],[295,-1],[257,0],[120,1],[478,-1],[58,0],[260,0],[294,1],[293,1],[275,0],[20,1],[293,0],[294,1],[294,1],[299,0],[289,1],[292,0],[295,0],[220,1]],[[14827,99958],[-2,-113],[0,-33],[0,-65],[0,-65],[0,-66],[0,-95],[-1,-55],[0,-35],[-1,-62],[0,-70],[1,-66],[-1,-64],[0,-116],[-1,-150],[1,-61],[-1,-132],[0,-66],[-1,-129],[1,-65],[-1,-132],[0,-64],[-1,-65],[1,-131],[-1,-72],[0,-102],[0,-69],[0,-42],[-1,-165],[0,-63],[0,-64],[0,-65],[0,-37],[-1,-100],[0,-138],[0,-67],[0,-64],[-1,-69],[0,-144],[0,-202],[0,-39],[0,-9],[0,-54],[0,-31],[0,-164],[0,-64],[0,-73],[0,-3],[0,-96],[0,-34],[-1,-92],[0,-54],[0,-37],[-2,-77],[0,-45],[2,-35],[0,-37],[0,-39],[0,-80],[0,-38],[0,-54],[0,-58],[0,-492],[0,-246],[0,-142],[0,-329],[-3,-259],[2,-46],[-2,-57],[1,-54],[0,-55],[0,-33],[0,-42],[-1,-71],[0,-99],[0,-53],[1,-61],[0,-120],[3,-473],[-4,-748],[0,-72],[0,-56],[1,-45],[-1,-56],[0,-37],[-1,-39],[1,-149],[0,-38],[-1,-73],[0,-65],[1,-37],[-1,-48],[0,-67],[0,-66],[0,-102],[0,-96],[0,-65],[30,-29],[37,-1],[45,1],[28,0],[20,0],[69,1],[35,0],[19,-1],[28,1],[48,0],[67,-2],[119,2],[179,0],[-5,-571],[2,-34],[0,-37],[2,-47],[0,-45],[1,-35],[0,-39],[0,-60],[-1,-68],[-1,-492],[1,-141],[0,-48],[0,-33],[0,-128],[0,-36],[0,-58],[0,-58],[0,-36],[-1,-67],[1,-164],[0,-97],[-1,-65],[1,-66],[0,-65],[0,-65],[0,-53],[0,-50],[0,-48],[0,-44],[-2,-95]],[[15533,88018],[-33,0],[-34,1],[-27,-1],[-21,-1],[-24,5],[-60,-4],[-29,-1],[-39,1],[-14,0],[-20,1],[-55,-1],[-76,1],[-38,2],[-43,-5],[-68,2],[-20,-1],[-21,1],[-16,-1],[-15,2],[-13,2],[-14,-5],[-33,1],[-14,0],[-57,1],[-45,2],[-23,0],[-42,-2],[-64,0],[-70,0],[-58,1],[-20,0],[-22,0],[-18,1],[-18,-1],[-145,0],[-144,0],[-55,-1],[-33,1],[-123,0],[-66,-1],[-82,1],[-33,0],[-145,1],[-74,-1],[-92,0],[-42,0],[-16,0],[-91,0],[-47,0],[-108,0],[-72,0],[-73,0],[-98,1],[-49,-1],[-55,0],[-48,0],[-42,-1],[-287,0],[-5,0],[-285,1],[-115,2],[-168,2],[-116,-4],[-32,-1],[-13,2],[-21,3],[-40,5],[-14,2],[-29,2],[-33,0],[-43,-2],[-20,-2],[-46,-4],[-27,-3],[-19,-2],[-15,-1],[-88,1],[-33,0],[-20,0],[-37,0],[-38,0],[-103,0],[-60,0],[-34,0],[-24,0],[-50,0],[-71,0],[-37,0],[-36,0],[-44,0],[-55,0],[-65,-1],[-170,1],[-21,0],[-37,0],[-254,0],[-105,0],[-34,0],[-102,0],[-40,0],[-12,0],[-61,0],[-46,0],[-69,0],[-40,0],[-30,0],[-44,0],[-89,0],[-59,0],[-18,0],[-15,0],[-23,0],[-13,0],[-29,0],[-31,0],[-14,0],[-17,0],[-21,0],[-28,0],[-40,0],[-40,0],[-40,0],[-66,0],[-40,0],[-24,1],[-101,0],[-155,1],[-209,1],[-206,1],[-22,-2],[-79,3],[-14,0],[-53,1],[-147,2],[-144,2],[-29,0],[-82,0],[-14,0],[-123,1],[-43,1],[-15,-1],[-107,1],[-45,0],[-17,0],[-34,1],[-46,1],[-28,-1],[-70,1],[-13,1],[-69,1],[-22,-1],[-23,0],[-18,0],[-18,0],[-45,1],[-20,1],[-55,0],[-26,-1],[-39,1],[-31,1],[-106,-6],[-15,0],[-293,-2],[-290,7],[-90,-3],[-58,0],[-20,1],[-32,0],[-46,0],[-47,0],[-42,0],[-28,0],[-76,0],[-42,0],[-64,-1],[-34,0],[-36,0],[-56,-1],[-61,0],[-53,-1],[-23,0],[-27,0],[-17,-1],[-17,0],[-18,1],[-16,0],[-16,1],[-13,-3],[-15,-2],[-68,2],[-120,-1],[-23,-2],[-134,0],[-18,3],[-20,1],[-22,-1],[-18,0],[-18,1],[-15,-2],[-18,1],[-32,2],[-28,-3],[-172,0],[-89,0],[-226,0],[-70,-1],[-55,-1],[-41,2],[-55,1],[-19,1],[-34,0],[-18,0],[-20,-2],[-32,0],[-17,-1],[-59,0],[-29,0],[-23,0],[-20,0],[-16,0],[-23,-1],[-38,0],[-28,0],[-42,0],[-16,-1],[-30,1],[-78,0],[-65,0],[-27,0],[-40,0],[-36,0],[-92,1],[-58,0],[-26,0],[-20,1],[-39,-1],[-16,6],[-14,-6],[-16,1],[-19,-3],[-38,0],[-32,0],[-41,0],[-30,1],[-51,1],[-52,1],[-20,1],[-20,0],[-162,-5],[-129,2],[-294,6],[-21,0],[-33,0],[-48,0],[-38,-1],[-45,0],[-38,0],[-28,1],[-29,-1],[-22,2],[-25,0],[-29,-1],[-15,1],[-14,-6],[-21,5],[-92,1],[-33,1],[-28,-1],[-17,0],[-18,0],[-27,-1],[-69,1],[-42,1],[-14,0],[-21,0],[-26,-1],[-30,1],[-20,-1],[-18,-1],[-385,3],[-112,-1],[-12,0],[-65,0],[-24,0],[-30,0],[-13,-1],[-17,5],[-20,1],[-19,-3],[-13,-1],[-17,-1],[-31,10],[-69,-3],[-32,6],[-21,-6],[-65,1],[-14,-1],[-15,-1],[-29,-3],[-16,7]],[[27,88044],[5,31],[-4,34],[0,73],[0,39],[0,64],[0,60],[-1,65],[0,63],[0,43],[2,43],[-2,64],[0,51],[1,81],[1,51],[0,46],[0,117],[-2,39],[1,45],[0,41],[0,33],[0,52],[-1,40],[1,45],[3,54],[0,131],[0,81],[-3,403],[-1,50],[0,416],[-3,49],[-1,51],[0,53],[0,68],[1,63],[-1,78],[0,63],[0,52],[-1,52],[0,91],[0,64],[0,63],[0,63],[0,63],[-1,117],[-13,54],[-8,40],[5,43],[6,41],[7,36],[3,56],[0,78],[-1,33],[3,41],[-2,61],[-1,137],[1,147],[0,184],[0,60],[-1,262],[0,104],[0,51],[0,206],[0,41],[-1,59],[-1,50],[0,48],[1,92],[0,41],[0,107],[-1,246],[0,143],[0,34],[-1,92],[0,129],[0,78],[0,67],[-1,179],[0,65],[0,130],[-1,33],[0,96],[1,65],[0,130],[0,44],[0,168],[0,69],[1,81],[1,111],[0,116],[-2,66],[0,54],[-1,45],[0,37],[1,48],[-1,27],[0,10],[0,38],[0,26],[0,13],[0,63],[2,64],[-2,53],[3,59],[0,140],[1,268],[0,70],[0,82],[0,64],[-2,35],[-2,40],[0,35],[0,33],[2,37],[0,82],[-1,91],[-1,36],[0,59],[-1,61],[1,49],[0,79],[-1,41],[1,50],[0,38],[0,37],[0,53],[0,42],[0,46],[-1,42],[0,34],[3,179],[1,55],[-1,49],[-3,57],[-1,44],[1,60],[0,36],[2,53],[-5,31],[6,31],[-1,42],[1,83],[-1,35],[2,53],[-1,39],[-1,32],[1,34],[-2,45],[1,41],[1,40],[0,41],[-1,45],[1,34],[0,40],[0,80],[0,75],[0,63],[0,42],[0,81],[1,44],[0,33],[0,35],[0,52],[0,41],[4,96],[-1,114],[-2,120],[0,79],[-1,39],[417,-1],[229,-1],[358,-1],[538,-2],[531,-2],[563,-2],[501,-2],[52,0],[3,0],[3,0],[487,-1],[504,-2],[301,-1],[374,-1],[384,-2],[367,-1],[384,-2],[428,1],[351,0],[334,1],[314,0],[71,0],[6,0],[446,0],[501,1],[463,0],[405,1],[480,0],[409,0],[318,1],[408,0],[351,1],[518,-1],[448,-1],[485,0],[417,0],[142,0],[484,-1],[148,0],[1,0],[10,0],[310,0],[457,-1],[108,0]],[[27071,99944],[0,-42],[-1,-44],[-1,-36],[0,-55],[1,-56],[-1,-45],[1,-48],[0,-38],[0,-43],[-1,-66],[0,-39],[1,-49],[-1,-65],[0,-37],[0,-42],[0,-58],[0,-58],[0,-35],[0,-46],[0,-72],[0,-51],[0,-61],[-1,-56],[1,-49],[-1,-43],[0,-40],[-1,-34],[1,-88],[0,-63],[0,-38],[1,-46],[0,-114],[1,-53],[-1,-36],[-1,-44],[1,-35],[-1,-46],[0,-44],[1,-36],[0,-40],[-1,-52],[0,-38],[0,-35],[0,-60],[0,-40],[0,-40],[-1,-35],[0,-41],[0,-61],[1,-38],[0,-49],[0,-63],[0,-60],[0,-45],[1,-35],[-1,-42],[0,-37],[0,-59],[-1,-97],[0,-37],[-1,-50],[0,-37],[-1,-40],[0,-41],[1,-56],[0,-57],[-1,-41],[1,-40],[-1,-53],[0,-55],[2,-251],[0,-234],[-1,-152],[0,-38],[0,-44],[0,-60],[0,-38],[0,-138],[0,-216],[0,-259],[0,-140],[-1,-83],[0,-67],[0,-184],[2,-89],[-3,-366],[1,-51],[-1,-34],[1,-55],[0,-43],[0,-56],[-1,-48],[0,-41],[1,-41],[-1,-64],[-1,-39]],[[27063,93688],[-16,0],[-23,0],[-15,0],[-24,0],[-38,0],[-16,1],[-22,0],[-17,0],[-79,0],[-19,0],[-22,0],[-54,0],[-39,0],[-18,0],[-34,0],[-24,1],[-58,0],[-18,0],[-14,0],[-33,0],[-45,0],[-17,0],[-16,0],[-21,0],[-42,0],[-27,0],[-17,0],[-43,0],[-37,0],[-14,0],[-14,0],[-31,0],[-20,0],[-14,-2],[-22,1],[-18,2],[-24,-1],[-34,1],[-31,-1],[-69,0],[-29,0],[-33,0],[-35,-2],[-20,1],[-20,2],[-2,0],[-23,0],[-4,0],[-17,0],[-17,0],[-32,0],[-14,0],[-22,0],[-17,0],[-22,0],[-18,0],[-46,0],[-26,0],[-34,0],[-45,0],[-62,0],[-33,0],[-30,-4],[0,-1],[0,-39],[0,-44],[0,-45],[0,-109],[-1,-50],[1,-44],[-1,-44],[0,-17],[0,-74],[0,-110],[-1,-91],[0,-89],[0,-45],[0,-44],[0,-48],[0,-46],[0,-40],[-1,-44],[0,-47],[0,-137],[0,-86],[0,-53],[0,-65],[0,-84],[0,-42],[-1,-113],[0,-45],[0,-96],[0,-72],[0,-40],[0,-129],[0,-188],[0,-9],[0,-72],[0,-56],[0,-67],[-1,-132],[0,-198],[0,-76],[-19,-1],[-34,0],[-29,3],[-19,-1],[-1,0],[-20,0],[-24,1],[-29,-1],[-26,1],[-16,-1],[-15,0],[-40,0],[-20,0],[-21,-1],[-15,1],[-38,0],[-14,0],[-5,0],[-18,0],[-16,0],[-14,-2],[-32,2],[-19,0],[-26,0],[-17,0],[-20,0],[-23,1],[-14,0],[-29,0],[-17,0],[-26,-1],[-14,1],[-31,-1],[-17,0],[-25,0],[-43,0],[-21,0],[-22,0],[-17,0],[-37,0],[-49,-1],[-26,1],[-43,0],[-11,0],[-11,0],[-21,-1],[-17,0],[-20,0],[-1,-165],[0,-33],[0,-51],[0,-89],[0,-45],[0,-34],[0,-57],[0,-35],[0,-87],[0,-26],[0,-19],[0,-71],[0,-37],[0,-60],[-1,-57],[0,-28],[0,-5],[0,-38],[0,-34],[0,-55],[0,-69],[0,-86],[-1,-63],[0,-82],[0,-58],[0,-36],[0,-110],[-1,-111],[1,-64],[0,-40],[-1,-71],[0,-81],[0,-39],[0,-56],[0,-57],[0,-114],[0,-54],[0,-148],[0,-85],[0,-52],[-1,-64],[1,-55],[-1,-112],[0,-129],[1,-45],[-1,-72],[0,-43],[0,-74],[0,-98],[1,-50],[0,-49],[-1,-34],[0,-229],[0,-88],[0,-48],[0,-50],[0,-42],[0,-37],[0,-56],[0,-77],[1,-98],[-3,-63],[-2,-142],[0,-40],[1,-354],[1,-80],[2,-175],[0,-91],[0,-157],[0,-66],[0,-43],[0,-65],[0,-93],[0,-38],[0,-39],[1,-33],[-1,-75],[0,-34],[1,-34]],[[24233,85182],[-65,0],[-24,0],[-34,0],[-50,-1],[-13,0],[-1,0],[-16,0],[-17,0],[-67,0],[-4,0],[-14,0],[-133,0],[-37,0],[-9,0],[-33,1],[-34,-1],[-40,0],[-19,0],[-26,0],[-2,0],[-91,0],[-20,0],[-7,0],[-25,0],[-95,0],[-145,0],[-39,0],[-21,0],[-28,0],[-47,0],[-147,0],[-66,0],[-18,0],[-16,0],[-6,0],[-16,1],[-34,2],[-40,5],[-4,0],[-17,3],[-59,11],[-3,1],[-13,2],[-14,1],[-16,0],[-3,0],[-8,0],[-6,0],[-20,-2],[-11,-2],[-6,-1],[-66,-24],[-13,3],[-8,2],[-22,-2],[-1,0],[-30,0],[-17,0],[-60,0],[-34,0],[-66,0],[-23,1],[-24,0],[-65,0],[-56,0],[-48,1],[-112,0],[-2,0],[-147,0],[-39,1],[-15,-1],[-24,1],[-76,0],[-20,0],[-47,0],[-26,1],[-207,1],[-114,1],[-57,-3],[-18,0],[-20,0],[-28,0],[-36,3],[-196,2],[-83,0],[-78,1],[-212,-1],[-56,0],[-23,0],[-99,0],[-139,-1],[-14,-3],[-21,2],[-18,0],[-64,0],[-132,-1],[-18,-2],[-23,2],[-40,1],[-15,-1],[-14,0],[-22,0],[-26,0],[-35,0],[-15,0],[-17,1],[-62,-1],[-20,1],[-54,-1],[-17,-1],[-24,0],[-19,0],[-20,2],[-15,-1],[-16,1],[-21,-2],[-17,0],[-31,1],[-14,-1],[-17,-1],[-15,1],[-20,1],[-28,0],[-32,-1],[-20,-1],[-27,0],[-17,1],[-12,1],[-5,1],[-45,0],[-44,-1],[-37,1],[-16,0],[-226,-2],[-25,0],[-10,0],[-60,-1],[-22,1],[-18,0],[-33,-1],[-15,0],[-26,0],[-17,0],[-39,0],[-31,0],[-38,0],[-16,0],[-67,0],[-15,0],[-24,0],[-57,0],[-21,0],[-69,0],[-38,0],[-19,0],[-27,0],[-80,0],[-20,0],[-72,0],[-14,0],[-46,0],[-14,0],[-14,0],[-60,0],[-21,0],[-18,-4],[-27,0],[-78,0],[-71,0],[-103,0],[-182,0],[-54,0],[-3,0],[-187,0],[-5,0],[-74,1],[-53,0],[-220,0],[-96,-1],[-18,-2],[-19,5],[-17,0],[-19,-1],[-32,1],[-37,1],[-16,0],[-25,1],[-28,1],[-35,-1],[-15,-1],[-17,0],[-22,0],[-14,-2],[-16,2],[-16,-1],[-18,-1],[-20,2],[-17,0],[-21,0],[-15,0],[-15,-1],[-30,1],[-18,-1],[-20,0],[-19,1],[-52,0],[-30,0],[-21,0],[-16,0],[-35,0],[-29,0],[-43,0],[-13,0],[-25,0],[-41,0],[-30,0],[-34,0],[-51,0],[-37,0],[-17,0],[-35,-1]],[[15535,85183],[0,147],[0,82],[0,40],[0,71],[0,56],[0,73],[-3,80],[0,38],[0,65],[0,176],[1,44],[2,72],[0,2],[0,460],[0,36],[0,116],[0,46],[-1,286],[0,195],[1,40],[0,34],[0,63],[0,34],[-1,95],[1,92],[0,88],[0,53],[0,52],[0,36],[0,68],[-2,95]],[[14827,99958],[385,0],[355,0],[437,-1],[186,0],[110,0],[391,-1],[121,-1],[136,0],[423,-1],[457,-1],[364,-1],[375,-1],[362,-2],[490,-1],[555,-2],[14,0],[1,0],[20,0],[20,0],[338,-1],[480,-2],[415,-1],[559,0],[495,0],[397,0],[440,0],[454,0],[70,1],[6,0],[4,0],[140,0],[253,0],[249,0],[101,0],[143,0],[369,0],[451,0],[451,0],[494,0],[389,1],[344,0]],[[39900,85153],[1,-33],[-2,-67],[1,-78],[-1,-39],[0,-99],[0,-98],[0,-60],[1,-76],[-1,-61],[0,-132],[0,-65],[0,-99],[0,-40],[0,-53],[0,-99],[0,-108],[0,-87],[0,-126],[0,-62],[-1,-36],[0,-92],[1,-35],[0,-48],[0,-71],[-1,-35],[0,-65],[-2,-41],[1,-145],[0,-18],[-1,-25],[2,-37],[1,-123],[-1,-115],[0,-72],[-1,-65],[0,-96],[1,-239]],[[39898,82313],[-18,2],[-47,-1],[-47,1],[-22,0],[-19,2],[-16,-3],[-26,1],[-18,0],[-18,0],[-19,0],[-41,0],[-65,0],[-66,1],[-110,0],[-28,0],[-23,0],[-41,0],[-43,0],[-65,1],[-110,0],[-32,0],[-33,0],[-44,0],[-158,1],[-59,0],[-22,-1],[-36,2],[-32,0],[-18,0],[-26,0],[-16,-1],[-24,-1],[-32,1],[-29,1],[-25,-1],[-14,1],[-17,0],[-18,1],[-15,-1],[-55,1],[-24,0],[-13,0],[-15,2],[-19,0],[-13,-3],[-19,2],[-32,-1],[-26,0],[-15,1],[-19,0],[-172,0],[-16,0],[-25,0],[-45,0],[-32,0],[-76,1],[-33,1],[-10,-1],[-6,-1],[-62,0],[-52,1],[-57,0],[-37,0],[-14,0],[-54,0],[-54,0],[-62,1],[-66,0],[-96,0],[-54,0],[-140,1],[-79,0],[-41,1],[-18,0],[-49,-1],[-54,1],[-47,0],[-3,0],[-60,1],[-226,0],[-28,0],[-36,0],[-4,0],[-16,0],[-17,1],[-29,0],[-50,0],[-17,0],[-48,0],[-46,0],[-62,1],[-54,0],[-175,1],[-42,0],[-104,0],[-26,0],[-118,0],[-146,1],[-146,0],[-145,0],[-146,1],[-60,0],[-43,0],[-42,1],[-20,0],[-28,0],[-48,0],[-47,0],[-61,0],[-109,0],[-121,1],[-22,0],[-19,0],[-54,0],[-54,0],[-142,1],[-21,0],[-46,0],[-37,0],[-43,0],[-23,0],[-27,0],[-59,1],[-46,0],[-63,0],[-16,0],[-38,0],[-19,0],[-88,0],[-56,0],[-76,0],[-87,0],[-127,1],[-29,0],[-54,0],[-26,0],[-18,0],[-17,-3],[-43,7],[-14,0],[-18,0],[-15,0],[-53,0],[-38,0],[-6,0],[-15,0],[-49,1],[-4,-1],[-15,0],[-98,1],[-24,0],[-96,2],[-66,-10],[-16,4],[-18,1],[-23,0],[-14,1],[-16,-1],[-19,0],[-19,1],[-31,0],[-14,0],[-21,0],[-83,0],[-42,0],[-122,0],[-23,1],[-56,0],[-26,0],[-28,0],[-109,1],[-54,-1],[-19,1],[-35,0],[-54,0],[-63,0],[-47,1],[-75,0],[-17,0],[-44,0],[-54,0],[-54,0],[-59,0],[-27,0],[-54,5],[-19,4],[-68,2],[-108,3],[-16,0],[-17,0],[-17,1],[-76,1],[-45,0],[-4,0],[-17,0],[-38,0],[-29,-3],[-48,-6],[-328,0],[-53,0],[-108,0],[-57,1],[-21,0],[-30,0],[-40,0],[-147,0],[-109,0],[-28,0],[-185,0],[-115,0],[0,463],[0,384],[0,21],[-1,78],[0,10],[0,34],[0,34],[0,25],[0,14],[0,93],[0,160],[-5,136],[-7,158],[0,43],[0,54],[0,45],[0,97],[0,38],[1,109],[-1,43],[1,85],[-1,48],[1,41],[-1,48],[1,48],[0,67],[0,116],[0,49],[0,157],[0,70],[0,70],[0,52],[0,47],[0,35],[0,112],[0,125],[0,68],[0,33],[0,87],[0,147],[0,93],[0,44],[0,98],[0,39],[0,85],[0,48],[0,56],[0,46],[0,45],[0,87],[0,46],[0,54],[0,43],[1,55],[0,51],[0,69],[0,41],[0,44],[0,45],[0,44],[0,50],[0,111],[0,60],[0,61],[0,48],[1,131],[0,35],[0,53],[0,41],[0,51],[1,181],[0,89],[0,43],[0,59],[0,37],[0,65],[0,63],[0,52],[1,92],[0,52],[0,34],[0,58],[0,90],[0,82],[0,36],[0,43],[0,36],[0,52],[0,53],[1,80],[-1,39],[0,50],[1,65],[0,82],[0,68],[0,40],[0,41],[0,105],[0,44],[0,40],[0,70],[0,184],[1,33],[0,50],[0,33],[0,65],[0,49],[0,103],[0,93],[0,48],[0,87],[0,33],[1,89],[0,16],[0,52],[0,72],[0,34],[0,34],[0,52],[0,37],[0,42],[0,36],[-20,1],[-20,0],[-20,0],[-29,0],[-23,-1],[-14,1],[-15,-1],[-49,1],[-24,0],[-33,0],[-23,0],[-5,0],[-18,0],[-26,0],[-34,0],[-21,0],[-18,0],[-31,0],[-30,0],[-21,0],[-29,0],[-31,0],[-21,0],[-34,1],[-17,-1],[-18,0],[-16,0],[-29,1],[-34,0],[-19,0],[-27,0],[-14,0],[-19,0],[-17,0],[-32,0],[-29,0],[-15,0],[-21,0],[-35,0],[-25,0],[-23,0],[-18,0],[-16,0],[-16,0],[-35,0],[-19,0],[-31,0],[-22,0],[-31,0],[-62,0],[-39,0],[-30,0],[-15,0],[-40,0],[-79,1],[-16,0],[-14,0],[-18,0],[-22,0],[-17,0],[-14,0],[-15,0],[-13,0],[-42,1],[-49,0],[-14,0],[-19,0],[-17,0],[-20,0],[-17,0],[-14,0],[-25,0],[-14,0],[-14,0],[-40,0],[-25,0],[-25,0],[-35,1],[-26,0],[-23,0],[-57,0],[-37,0],[-29,0],[-1,0],[-23,0],[-17,0],[-65,0],[-14,0],[-16,0],[-14,0],[-42,0],[-35,0],[-17,0],[-21,0],[-22,7],[0,58],[0,132],[0,3],[0,240],[0,58],[-1,61],[0,39],[0,43],[0,35],[1,41],[0,63],[0,41],[0,44],[0,32],[-1,60],[0,50],[0,43],[0,44],[0,37],[0,59],[0,60],[1,66],[0,60],[-1,35],[0,5],[0,85],[0,41],[0,38],[0,80],[0,39],[0,38],[0,37],[0,43],[0,83],[0,42],[0,45],[0,74],[-1,77],[1,47],[-1,42],[0,64],[0,35],[1,61],[0,56],[0,40],[-1,43],[0,79],[0,50],[0,35],[0,57],[0,36],[-2,49]],[[27071,99944],[117,0],[165,0],[257,0],[207,1],[115,1],[336,1],[438,2],[560,1],[275,1],[341,0],[350,1],[400,1],[381,1],[364,1],[339,1],[342,1],[256,1],[7,0],[2,0],[140,0],[386,1],[395,1],[388,1],[311,1],[126,1]],[[39898,82313],[0,-170],[0,-98],[0,-98],[0,-104],[0,-46],[0,-96],[0,-69],[-1,-38],[0,-55],[0,-61],[1,-90],[-1,-89],[0,-69],[0,-51],[0,-75],[0,-56],[1,-65],[-1,-75],[0,-124],[0,-57],[0,-58],[0,-15],[0,-56],[0,-38],[0,-37],[0,-49],[0,-56],[0,-133],[3,-43],[-3,-35],[0,-49],[0,-93],[0,-64],[0,-50],[0,-69],[0,-401],[19,-5],[29,0],[186,0],[30,0],[30,0],[27,0],[44,1],[46,0],[59,-1],[48,0],[63,0],[30,0],[1,-505],[0,-93],[-1,-319],[0,-3],[0,-57],[-1,-252],[0,-34],[0,-75],[0,-115],[1,-260],[1,-184],[-2,-38],[0,-55],[0,-34],[0,-46],[0,-42],[0,-52],[1,-35],[0,-42],[0,-45],[-1,-65],[0,-38],[0,-80],[0,-38],[-1,-41],[0,-33],[0,-44],[0,-58],[0,-26],[0,-21],[1,-36],[-1,-44],[-1,-47],[1,-167],[-1,-54],[0,-93],[0,-63],[0,-65],[0,-43],[0,-88],[0,-132],[0,-47],[0,-84],[0,-42],[0,-49],[0,-41],[0,-67],[0,-78],[0,-49],[0,-40],[0,-3],[-1,-57],[1,-103],[-1,-58],[0,-11],[0,-71],[0,-72],[0,-110],[0,-34],[0,-1],[0,-35],[0,-61],[0,-42],[0,-42],[0,-118],[0,-66],[0,-66],[0,-69],[0,-50],[-1,-105],[0,-59],[0,-39],[0,-35],[0,-58],[0,-42],[0,-59],[0,-70],[0,-54],[0,-56],[-1,-192],[1,-35],[0,-43],[0,-26],[-1,-26],[0,-120],[0,-45],[0,-85],[1,-45],[-1,-86],[0,-71],[0,-87],[0,-87],[0,-39],[0,-60],[0,-47],[0,-69],[-1,-40],[-1,-49],[0,-44],[1,-68],[1,-51],[0,-37],[-1,-43],[-2,-397],[0,-77],[0,-44],[5,-41],[-5,-112],[1,-66],[1,-67],[-1,-66],[0,-87],[0,-65],[-1,-66],[0,-257],[0,-45],[0,-37],[0,-42],[-1,-45],[0,-40],[0,-34],[1,-42],[0,-40],[0,-34],[0,-39],[4,-32],[14,-12],[8,-38],[-5,-38],[-9,-26],[-10,-32],[-2,-61],[0,-13],[-1,-185],[0,-66],[1,-11],[0,-26],[0,-102],[0,-63],[0,-65],[-2,-141],[1,-51],[0,-51],[-1,-95],[0,-64],[0,-79],[0,-151],[0,-85],[0,-78],[-1,-162],[1,-52],[0,-6],[-1,-69],[0,-106],[0,-159],[0,-42],[0,-129],[0,-33],[0,-36],[1,-73],[24,-1],[37,1],[63,-1],[29,-1],[23,-2],[18,0],[93,0],[17,1],[45,2],[79,-1],[45,0],[33,-2],[31,2],[56,-2],[0,-86],[0,-84],[0,-46],[0,-67],[-1,-93],[0,-81],[0,-38],[0,-41],[0,-199],[0,-2],[0,-49],[-1,-144],[0,-38],[0,-8],[0,-48],[0,-54],[0,-45],[0,-100],[-1,-195],[0,-362],[0,-104],[0,-33],[0,-84],[-1,-41],[0,-58],[0,-59],[0,-33],[1,-75],[0,-68],[1,-45],[-2,-372],[-1,-70],[0,-6],[2,-51],[-1,-51],[-1,-57],[0,-192],[3,-121],[0,-186],[-1,-59],[-7,-759],[0,-37],[-4,-405],[-1,-69],[5,-539],[-1,-299],[0,-20]],[[41079,62424],[-157,-2],[-43,-3],[-155,-3],[-33,0],[-37,-9],[-149,2],[-6,1],[-280,3],[-14,0],[-92,-3],[-18,-2],[-28,-1],[-17,2],[-15,0],[-15,0],[-14,1],[-14,0],[-15,0],[-16,0],[-24,1],[-44,1],[-24,-1],[-42,1],[-30,-1],[-48,1],[-34,0],[-13,0],[-43,0],[-18,0],[-18,1],[-151,4],[-15,-2],[-22,-1],[-15,1],[-28,0],[-17,0],[-250,3],[-60,0],[-20,-1],[-22,-1],[-162,-1],[-28,0],[-37,-1],[-63,0],[-25,0],[-31,1],[-16,-1],[-16,0],[-18,3],[-126,-3],[-25,-1],[-22,0],[-21,0],[-35,0],[-35,0],[-20,1],[-19,0],[-29,0],[-19,0],[-27,0],[-36,-1],[-17,0],[-30,0],[-36,0],[-19,0],[-42,1],[-14,0],[-47,-1],[-81,1],[-15,1],[-22,-1],[-20,-1],[-86,0],[-38,-1],[-20,1],[-24,-2],[-15,-1],[-42,2],[-47,0],[-28,0],[-20,-4],[-18,3],[-81,1],[-36,0],[-43,0],[-19,0],[-39,1],[-50,0],[-55,-1],[-33,0],[-15,0],[-51,0],[-17,-1],[-25,0],[-262,2],[-17,-1],[-5,0],[-45,0],[-27,0],[-17,0],[-29,0],[-55,0],[-55,0],[-36,0],[-21,0],[-76,0],[-213,-2],[-118,1],[-39,0],[-40,-2],[-34,0],[-16,0],[-36,0],[-79,0],[-20,0],[-15,-1],[-126,2],[-25,0],[-22,-2],[-21,0],[-31,0],[-113,-1],[-17,0],[-14,2],[-16,0],[-68,2],[-270,-4],[-25,0],[-13,-5],[-25,2],[-33,0],[-22,0],[-23,0],[-27,-2],[-145,4],[-286,1],[-20,-2],[-38,1],[-44,1],[-68,-2],[-6,0],[-48,0],[-14,0],[-1,0],[-11,0],[-29,1],[-80,1],[-41,0],[-22,0],[-22,0],[-28,-4],[-1,0],[-82,-1],[-49,0],[-68,0],[-16,0],[-22,-1],[-19,0],[-27,0],[-18,0],[-37,0],[-27,0],[-15,-1],[-40,0],[-55,0],[-28,-1],[-22,1],[-56,-1],[-41,1],[-47,-1],[-38,1],[-119,-1],[-41,0],[-56,0],[-18,0],[-14,0],[-126,2],[-18,0],[-424,-3],[-15,-1],[-16,1],[-58,-2],[-48,0],[-18,-1],[-37,0],[-37,1],[-46,0],[-106,-1],[-37,1],[-38,-1],[-38,0],[-38,0],[-40,0],[-34,0],[-38,0],[-38,0],[-76,0],[-37,0],[-26,0],[-35,0],[-4,0],[-32,3],[-16,-4],[-64,0],[-175,4],[-29,-1],[-37,4],[-36,-4],[-50,3],[-34,-3],[-62,3],[-39,-6],[-43,1],[-36,-2],[-44,-1],[-17,0],[-69,1],[-44,0],[-24,1],[-54,0],[-52,-1],[-105,-1],[-33,-1],[-46,0],[-84,0],[-58,1],[-80,-2],[-49,0],[-17,0],[-72,-1],[-57,0],[-15,3],[-68,0],[-17,-4],[-27,-1],[-30,0],[-21,0],[-15,0],[-109,0],[-17,0],[-16,0],[-14,0],[-91,0],[-90,0],[-135,0],[-62,0],[-74,1],[-213,0]],[[29063,62388],[0,90],[0,72],[0,125],[0,185],[0,102],[0,100],[0,103],[1,101],[-1,57],[0,33],[0,46],[0,50],[0,69],[0,144],[0,65],[0,60],[4,62],[0,215],[1,46],[0,162],[0,474],[-4,72],[0,74],[0,44],[0,33],[0,35],[0,91],[0,39],[0,64],[0,42],[0,52],[-1,38],[0,37],[0,39],[-1,38],[0,44],[1,33],[2,78],[0,39],[0,53],[0,283],[1,67],[0,119],[0,65],[0,76],[0,40],[1,294],[0,1],[0,45],[0,73],[0,37],[-1,74],[0,152],[0,49],[2,39],[-1,49],[0,36],[0,44],[0,78],[0,45],[0,25],[1,64],[0,57],[0,40],[0,45],[0,41],[-1,41],[1,53],[0,43],[0,61],[0,65],[0,39],[0,62],[-1,86],[1,34],[-35,-1],[-64,1],[-28,0],[-162,-1],[-98,0],[-61,0],[-16,0],[-69,0],[-44,0],[-13,0],[-45,0],[-40,1],[-1,179],[1,66],[0,66],[0,101],[0,62],[0,112],[0,60],[0,129],[0,169],[0,88],[0,64],[0,105],[0,67],[0,7],[-1,89],[1,52],[0,145],[-1,64],[1,65],[0,68],[0,63],[-1,67],[1,110],[0,45],[0,55],[0,72],[-1,52],[0,68],[0,73],[0,56],[0,55],[6,30],[-5,32],[-1,62],[2,35],[-1,48],[0,33],[-2,56],[-1,37],[1,41],[0,58],[-14,22],[12,20],[2,42],[0,33],[1,36],[-1,35],[0,46],[1,79],[0,51],[1,39],[1,35],[0,42],[0,61],[0,52],[0,44],[0,57],[0,95],[0,54],[0,333],[0,72],[0,61],[0,37],[0,57],[0,103],[0,64],[-2,247],[0,33],[-2,32],[2,48],[0,36],[0,38],[1,40],[-1,47],[1,43],[-1,39],[0,60],[0,39],[0,51],[4,101],[-4,96],[1,47],[0,42],[-1,41],[0,39],[0,49],[1,38],[0,51],[-1,37],[0,71],[0,80],[1,37],[-1,73],[1,59],[0,41],[0,63],[1,222],[-1,45],[0,88],[-1,40],[4,36],[0,35],[-2,138],[-1,4],[1,48],[0,82],[-1,159],[0,59],[0,64],[0,77],[0,40],[1,42],[-1,39],[0,123],[0,44],[0,40],[0,39],[0,47],[0,41],[1,34],[-2,136],[0,38],[1,71],[0,37],[1,90],[-1,59],[0,60],[0,43],[0,87],[0,60],[0,38],[1,35],[0,34],[0,47],[-1,54],[0,52],[0,37],[0,57],[1,76],[-1,67],[0,37],[0,50],[0,36],[0,88],[0,35],[1,57],[0,61],[0,67],[0,52],[0,79],[0,66],[0,71],[0,67],[0,60],[0,59],[0,44],[0,24],[0,28],[2,64],[-1,134],[-1,155],[-1,40],[0,35],[1,149],[0,3],[0,89],[0,46],[0,34],[-1,60],[0,108],[0,60],[0,311],[0,34],[0,51],[-1,52],[-14,25],[-35,0],[-27,0],[-19,0],[-15,0],[-15,0],[-44,0],[-17,0],[-16,0],[-21,0],[-16,0],[-15,0],[-16,0],[-18,0],[-29,0],[-15,0],[-29,0],[-20,0],[-20,-1],[-14,1],[-15,0],[-24,0],[-18,-1],[-15,0],[-22,1],[-15,0],[-13,0],[-28,0],[-13,0],[-20,-1],[-86,-6],[0,54],[1,41],[1,137],[0,109],[-3,128],[1,51],[0,38],[0,83],[2,33],[0,302],[0,66],[0,60],[0,101],[0,226],[0,148],[0,49],[0,107],[0,56],[0,79],[0,55],[-1,87],[0,94],[0,54],[0,40],[0,55],[0,41],[0,83],[0,73],[1,33],[0,49],[0,81],[1,40],[0,52],[-1,45],[-1,50],[-1,43],[0,51],[1,44],[0,40],[-1,36],[2,39],[0,34],[0,33],[0,40],[1,34],[-1,64],[0,52],[0,46],[0,48],[-1,46],[0,55],[0,46],[1,36],[-1,46],[0,43],[1,47],[-1,54],[1,139],[0,65],[0,130],[-1,62],[0,40],[0,41],[0,138],[1,84],[0,71],[0,92],[-1,77],[0,88],[0,11],[0,28],[1,70],[0,60],[0,93],[0,47],[0,41],[0,41],[1,35],[0,36],[-1,84],[-1,360],[-55,0],[-38,2],[-37,0],[-15,-3],[-30,0],[-43,2],[-47,2],[-43,2],[-6,0],[-24,1],[-18,1],[-47,2],[-31,1],[-15,0],[-31,-2],[-15,-4],[-12,-3],[-4,-1],[-26,-6],[-33,-8],[-20,-5],[-16,-3],[-18,-1],[-19,-1],[-46,1],[-93,-1],[-90,0],[-48,0],[-47,0],[-15,0],[-32,-1],[-46,0],[-10,0],[-40,0],[-53,0],[-21,0],[-23,0],[-30,0],[-47,-1],[-46,0],[-92,0],[-26,0],[-16,-1],[-28,0],[-30,0],[-44,0],[-46,-1],[-47,1],[-48,-1],[-29,0],[-64,0],[-46,0],[-48,0],[-47,0],[-45,1],[-16,-1],[-17,1],[-18,0],[-32,0],[-85,0],[-53,0],[-3,0],[-7,0],[-22,0],[-62,0],[-17,0],[-2,0],[-32,0],[-16,0],[-39,1],[-55,-1],[-33,1],[-54,0],[-60,0],[-27,0],[-55,0],[-47,0],[-36,0],[-28,0],[-28,0],[-31,-1],[-14,1],[-26,0],[-33,0],[-93,0],[-26,0],[-22,0],[-47,0],[-46,0],[-24,0],[-23,0],[-47,0],[-48,0],[-46,0],[-42,0],[-48,0],[-30,0]],[[15535,85183],[0,-45],[0,-143],[0,-50],[0,-59],[0,-98],[0,-77],[0,-63],[0,-104],[0,-68],[0,-62],[0,-176],[0,-202],[0,-152],[0,-119],[0,-105],[0,-93],[0,-111],[0,-115],[0,-48],[0,-60],[0,-79],[0,-320],[0,-38],[0,-53],[0,-64],[0,-42],[0,-110],[0,-53],[0,-127],[0,-76],[0,-36],[0,-140],[0,-79],[0,-141],[0,-50],[-1,-58],[1,-56],[0,-76],[0,-37],[0,-34],[0,-161],[0,-62],[0,-53],[0,-67],[0,-111],[0,-75],[0,-37],[-1,-39],[0,-57],[1,-32],[0,-51],[0,-141],[0,-110],[0,-61],[0,-49],[0,-93],[1,-39],[0,-90],[0,-1],[-3,-117],[1,-36],[0,-55],[1,-54],[0,-50],[0,-106],[0,-60],[-1,-50],[0,-56],[0,-59],[1,-78],[119,3],[18,1],[92,1],[46,-6],[20,1],[80,0],[27,0],[37,1],[49,-1],[14,-2],[50,5],[71,6],[147,2],[0,-81],[0,-72],[0,-67],[0,-53],[-4,-270],[0,-37],[-1,-38],[0,-38],[1,-36],[-1,-46],[4,-97],[1,-151],[-2,-19],[-1,-16],[0,-59],[0,-39],[0,-39],[0,-32],[0,-62],[0,-76],[-1,-40],[0,-55],[1,-55],[1,-469],[0,-110],[0,-61],[0,-84],[0,-40],[0,-72],[1,-45],[-1,-63],[1,-136],[-1,-63],[-1,-107],[0,-79],[0,-39],[1,-48],[0,-36],[0,-40],[0,-66],[0,-44],[-1,-34],[0,-35],[0,-56],[0,-70],[0,-68],[0,-39],[0,-85],[0,-59],[1,-43],[-1,-38],[0,-44],[1,-44],[0,-53],[0,-36],[-1,-35],[1,-47],[1,-43],[0,-540],[0,-73],[0,-64],[-1,-224],[-1,-53],[1,-68],[0,-101],[-1,-39],[0,-45],[0,-41],[1,-36],[-1,-39],[1,-44],[0,-42],[0,-47],[0,-129],[0,-15],[0,-35],[0,-39],[0,-129],[0,-37],[0,-94],[0,-71],[0,-82],[0,-106],[0,-72],[0,-83],[0,-41],[0,-99],[0,-36],[0,-59],[0,-89],[1,-92],[0,-245],[-1,-338],[0,-831],[-4,-44]],[[16299,71394],[-45,44],[-24,46],[-24,32],[-27,36],[-34,42],[-32,30],[-36,29],[-35,33],[-31,23],[-35,26],[-30,19],[-28,13],[-32,13],[-39,23],[-33,23],[-26,3],[-20,-5],[-17,-4],[-31,-7],[-21,-10],[-15,-6],[-12,-21],[-24,-13],[-26,-31],[-28,-39],[-35,-45],[-38,-54],[-40,-56],[-36,-59],[-33,-41],[-27,-28],[-36,-29],[-51,-27],[-45,-21],[-20,-3],[-25,-3],[-44,0],[-40,4],[-45,1],[-23,11],[-31,11],[-30,19],[-33,20],[-21,31],[-16,14],[-6,33],[-17,35],[-16,41],[-15,47],[-12,32],[-27,56],[-25,23],[-15,15],[-20,17],[-23,25],[-37,33],[-40,23],[-47,19],[-31,7],[-24,5],[-28,2],[-60,9],[-39,5],[-35,0],[-36,-3],[-51,-17],[-33,-8],[-26,-6],[-39,-7],[-54,-7],[-47,-14],[-29,-11],[-29,-18],[-35,-25],[-24,-27],[-45,-47],[-18,-9],[-22,-5],[-28,3],[-50,19],[-35,20],[-63,30],[-100,46],[-96,4],[-67,-14],[-60,-1],[-220,-68],[-112,-21],[-32,-15],[-43,-51],[-51,-68],[-32,-51],[-55,-56],[-14,-11],[-21,-2],[-27,13],[-17,25],[-16,20],[-13,44],[-1,55],[3,79],[13,87],[4,53],[6,60],[-1,95],[-10,73],[-17,43],[-46,43],[-64,23],[-35,0],[-38,0],[-37,-8],[-46,-18],[-43,-14],[-16,-14],[-25,-17],[-24,-23],[-15,-7],[-40,-16],[-85,0],[-90,-50],[-90,-96],[-110,-51],[-47,-22],[-204,-42],[-62,-8],[-104,-15],[-70,4],[-14,2],[-8,1],[-41,12],[-38,17],[-56,-3],[-72,-65],[-87,-151],[-46,-116],[-33,-68],[-101,-206],[-73,-137],[-60,-114],[-55,-127],[-45,-123],[-52,-140],[-24,-67],[-12,-27],[-10,-23],[-10,-27],[-10,-40],[-5,-40],[7,-42],[9,-24],[15,-24],[16,-17],[49,-36],[53,-29],[50,-20],[44,-23],[16,-17],[18,-20],[34,-48],[21,-42],[25,-54],[12,-50],[5,-43],[0,-44],[-3,-41],[-7,-58],[-4,-33],[-9,-52],[-19,-46],[-16,-36],[-19,-32],[-17,-43],[-13,-23],[-12,-22],[-27,-36],[-29,-20],[-30,-3],[-18,-3],[-18,0],[-24,3],[-7,2],[-21,4],[-18,7],[-30,16],[-8,4],[-5,3],[-17,6],[-16,7],[-16,6],[-14,7],[-20,10],[-14,6],[-16,3],[-17,0],[-13,0],[-16,-3],[-19,-6],[-20,-7],[-18,-6],[-15,-9],[-13,-8],[-18,-6],[-14,-10],[-15,-20],[-15,-19],[-13,-30],[-12,-26],[-7,-42],[-2,-36],[-2,-36],[-5,-32],[-1,-40],[-3,-35],[-7,-43],[-6,-36],[-6,-36],[-6,-29],[-8,-33],[-10,-26],[-12,-32],[-14,-36],[-12,-26],[-12,-20],[-31,-39],[-16,-13],[-17,-10],[-18,-6],[-13,-4],[-17,0],[-17,4],[-17,6],[-16,10],[-19,10],[-16,6],[-13,10],[-17,7],[-15,9],[-16,10],[-15,3],[-20,10],[-20,7],[-14,0],[-15,0],[-21,-4],[-22,-6],[-16,-7],[-14,-9],[-24,-13],[-22,-13],[-21,-14],[-23,-16],[-13,-13],[-20,-19],[-17,-10],[-21,-13],[-24,-20],[-17,-10],[-21,-16],[-22,-16],[-17,-17],[-15,-13],[-18,-16],[-20,-13],[-19,-16],[-19,-20],[-16,-13],[-13,-16],[-16,-17],[-19,-9],[-14,-10],[-16,-13],[-18,-13],[-17,-16],[-17,-14],[-16,-13],[-15,-9],[-21,-10],[-19,-7],[-23,-13],[-39,-16],[-17,-7],[-15,-6],[-16,-7],[-17,-9],[-13,-7],[-23,-13],[-21,-10],[-19,-6],[-17,-4],[-24,-6],[-26,3],[-17,7],[-25,13],[-32,19],[-27,10],[-29,7],[-27,9],[-24,7],[-20,6],[-20,10],[-22,17],[-30,26],[-28,23],[-28,22],[-23,26],[-31,30],[-31,27],[-30,25],[-28,23],[-33,19],[-31,17],[-25,6],[-28,3],[-28,0],[-31,0],[-22,-6],[-16,-7],[-16,-13],[-21,-19],[-23,-30],[-18,-26],[-19,-29],[-15,-26],[-14,-26],[-20,-30],[-21,-23],[-21,-19],[-26,-26],[-28,-23],[-24,-16],[-23,-13],[-16,-3],[-27,-4],[-25,-13],[-20,-13],[-26,-23],[-22,-26],[-3,-5],[-21,-34],[77,-717],[-1,-1],[-70,-86],[-17,-15],[-61,-115],[-23,-29],[-13,-6],[-191,-17],[-6,13],[-52,11],[-37,4],[-49,20],[-31,40],[-133,90],[-44,43],[-18,24],[-15,23],[-1,1],[91,362],[-7,16],[-6,16],[-14,39],[-12,33],[-12,33],[-11,35],[-14,40],[-12,39],[-13,42],[-10,36],[-8,39],[-8,43],[-7,37],[-7,28],[-10,36],[-14,36],[-16,48],[-10,40],[-8,39],[-12,36],[-12,29],[-17,29],[-19,20],[-15,10],[-13,3],[-13,3],[-15,-6],[-20,-10],[-4,-2],[-13,-8],[-19,-3],[-19,-3],[-18,-4],[-14,-3],[-14,-3],[-14,-3],[-17,-4],[-15,-3],[-22,-3],[-18,0],[-21,0],[-15,0],[-13,3],[-20,0],[-35,0],[-22,3],[-22,7],[-18,3],[-19,3],[-22,7],[-18,0],[-20,10],[-22,9],[-12,10],[-9,7],[-17,19],[-15,20],[-21,19],[-24,23],[-19,20],[-21,26],[-18,20],[-13,16],[-12,16],[-15,30],[-10,26],[-10,32],[-4,36],[-4,43],[-2,35],[-2,36],[0,43],[2,39],[2,39],[7,52],[12,52],[13,46],[14,42],[18,36],[11,20],[21,33],[16,32],[19,33],[20,32],[13,20],[12,16],[23,26],[15,20],[12,20],[21,22],[13,17],[14,16],[13,20],[15,19],[20,26],[27,33],[16,26],[18,33],[18,29],[16,29],[17,39],[17,36],[8,26],[8,27],[10,29],[14,52],[8,36],[4,39],[6,52],[-6,33],[-12,27],[-1,2],[-17,4],[-16,-3],[-50,-7],[-16,-6],[-20,-1],[-21,0],[-23,0],[-24,3],[-23,7],[-17,7],[-15,-4],[-20,7],[-20,10],[-18,13],[-22,13],[-21,16],[-23,16],[-22,13],[-23,13],[-13,10],[-14,10],[-22,20],[-22,16],[-17,19],[-15,17],[-14,16],[-15,21],[-11,21],[-14,28],[-14,25],[-13,22],[-12,27],[-12,29],[-15,26],[-15,26],[-14,33],[-18,29],[-17,29],[-16,33],[-13,26],[-16,26],[-15,30],[-11,26],[-13,29],[-11,29],[-9,46],[-1,36],[4,36],[9,33],[17,29],[12,16],[12,16],[19,20],[24,20],[16,13],[13,9],[14,10],[17,13],[13,7],[14,10],[17,16],[18,16],[22,30],[20,26],[20,26],[12,23],[14,27],[1,32],[-2,66],[-4,37],[-6,38],[-6,39],[-8,32],[-17,41],[-2,2],[-16,24],[-10,0],[-5,0],[-25,1],[-13,0],[-17,0],[-17,5],[-11,4],[-21,-10],[-24,-21],[-15,-18],[-24,-28],[-33,-57],[-57,-174],[-15,-37],[-14,-33],[-13,-26],[-16,-29],[-13,-23],[-15,-26],[-17,-29],[-26,-46],[-18,-26],[-15,-20],[-19,-26],[-17,-27],[-13,-13],[-17,-16],[-1,-2],[-20,-23],[-17,-20],[-16,-13],[-14,-10],[-13,-6],[-13,-4],[-16,0],[-16,-3],[-20,0],[-18,3],[-16,7],[-14,6],[-19,4],[-19,6],[-18,10],[-20,19],[-18,17],[-13,16],[-17,23],[-12,16],[-16,20],[-14,19],[-13,17],[-23,32],[-12,19],[-2,4],[-12,16],[-16,17],[-19,13],[-18,16],[-20,13],[-18,10],[-20,13],[-22,13],[-20,10],[-18,6],[-15,4],[-25,6],[-16,0],[-16,0],[-15,-3],[-20,-7],[-21,-9],[-16,-4],[-18,-9],[-18,-10],[-22,-13],[-21,-17],[-20,-16],[-23,-13],[-22,-16],[-23,-13],[-19,-17],[-19,-16],[-21,-23],[-17,-16],[-18,-16],[-16,-20],[-18,-20],[-18,-19],[-16,-16],[-12,-17],[-14,-16],[-16,-20],[-16,-16],[-19,-16],[-19,-17],[-29,-39],[-1,-1],[-70,-142],[-94,-147],[-99,-147],[-44,-59],[-29,-16],[-19,-40],[-9,-61],[6,-90],[47,-136],[46,-73],[97,-128],[114,-170],[41,-43],[36,-23],[30,-17],[30,-52],[18,-79],[0,-101],[-21,-141],[-49,-109],[-53,-65],[-100,-122],[-60,-35],[-78,-81],[-38,-55],[-19,-58],[-10,-24],[-25,-22],[-31,-1],[-23,8],[-40,35],[-58,46],[-15,26],[-48,115],[-49,98],[-46,93],[-32,60],[-19,39],[-19,16],[-52,43],[-66,34],[-33,4],[-16,2],[-43,-47],[-40,-80],[-17,-74],[-14,-38],[-17,-53],[-19,-101],[-15,-124],[-13,-152],[-1,-53],[1,-59],[13,-57],[33,-124],[18,-79],[8,-101],[6,-79],[8,-117],[0,-71],[-2,-61],[-2,-34],[-7,-57],[-3,-19],[-4,-24],[-12,-69],[-25,-219],[-17,-47],[0,-1],[-23,-143],[-9,-52],[-23,8],[-21,-59],[-44,-121],[-23,-13],[-100,-187],[-65,-85],[-36,-36],[-34,-9],[-17,11],[-19,18],[-15,15],[2,46],[36,179],[4,40],[3,53],[1,99],[-4,36],[-10,103],[-16,44],[-25,53],[-50,68],[-31,43],[-59,80],[-32,42],[-61,86],[-69,98],[-55,74],[-28,23],[-18,-23],[-23,-55],[-16,-33],[-17,-71],[-2,-70],[13,-22],[9,-49],[19,-50],[26,-48],[22,-37],[10,-25],[7,-31],[12,-72],[-2,-44],[-7,-43],[-13,-36],[-14,-33],[-21,-50],[-21,-32],[-18,-25],[-16,-31],[-8,-26],[-10,-62],[-3,-45],[-12,-104],[-7,-52],[-24,-148],[-12,-85],[-22,-63],[-36,-81],[-20,-37],[0,-23],[-22,-30],[-46,-51],[-33,-35],[-41,-28],[-95,-22],[-52,-27],[-94,-47],[-3,-7],[-33,-16],[-28,-26],[-78,-37],[-29,-14],[-40,-5],[-43,78],[-73,119],[-37,102],[-44,103],[-20,48],[-20,47],[-50,114],[-5,11],[-9,13],[-16,23],[-6,7],[-1,2],[0,1],[-2,1],[-33,38],[-14,17],[-15,16],[-12,14],[-1,1],[-43,29],[-60,67],[-47,67],[-2,2],[-6,3],[-1,1],[-39,21],[-94,17],[-1,0],[-13,-1],[-44,-7],[-58,-8],[-30,-4],[-17,-11],[-22,-15],[-15,-51],[0,-47],[6,-38],[3,-26],[2,-13],[-2,-42],[-5,-46],[-5,-18],[-1,-1],[-86,-168],[-16,-33],[-58,-42],[-12,-9],[-11,-8],[-23,-3],[-3,-1],[-44,-6],[-35,45],[-11,32],[-30,58],[-6,12],[-3,12],[-1,31],[0,6],[-7,78],[-10,90],[-11,73],[-8,31],[-1,6],[-3,11],[-14,61],[-5,9],[-9,14],[-29,83],[-6,20],[-14,40],[-24,34],[-5,2],[-39,25],[-25,4],[-47,31],[-48,64],[-10,9],[-34,9],[-25,13],[-25,21],[-9,8],[-19,15]],[[78,67234],[1,56],[0,53],[0,17],[-2,81],[0,2],[0,96],[0,60],[-1,58],[0,58],[0,45],[-1,195],[0,195],[0,44],[-1,170],[0,146],[0,44],[-1,202],[-3,1031],[-1,129],[0,130],[-1,431],[-2,431],[0,5],[0,74],[-2,451],[0,198],[0,64],[1,138],[0,9],[-1,47],[0,42],[0,64],[0,89],[-2,412],[-2,38],[-1,62],[-1,45],[4,36],[0,50],[0,45],[-1,40],[1,44],[-1,62],[1,41],[-1,41],[1,40],[0,44],[-2,37],[1,56],[0,40],[-1,49],[0,49],[0,41],[-1,69],[0,138],[3,70],[-2,47],[1,139],[-2,690],[-1,136],[1,295],[0,50],[-1,107],[0,133],[-1,103],[1,54],[-3,39],[0,60],[0,42],[0,48],[0,55],[0,46],[1,53],[0,44],[-7,29],[6,132],[0,45],[-1,154],[0,42],[0,159],[0,87],[0,96],[0,113],[0,56],[0,37],[0,37],[0,34],[1,35],[-1,35],[1,51],[0,39],[0,37],[-1,40],[0,67],[-1,114],[-3,257],[0,52],[1,69],[1,103],[0,112],[0,98],[0,104],[-1,56],[-3,266],[1,100],[0,90],[0,339],[0,155],[0,513],[-2,35],[-1,36],[-1,100],[0,67],[0,49],[-1,184],[0,60],[-1,41],[-1,385],[0,38],[-3,242],[2,326],[0,70],[0,13],[0,21],[-1,126],[0,68],[0,121],[-1,205],[-1,180],[-1,40],[0,137],[0,46],[0,103],[-1,142],[0,101],[-1,86],[0,51],[0,124],[1,34],[0,67],[-1,54],[0,169],[-1,191],[-1,73],[-1,41],[1,121],[-5,150],[-2,42],[2,181],[1,158],[3,252],[0,50],[-2,41],[0,51],[0,68],[0,34],[2,61],[-2,68],[-1,43],[1,15],[2,112],[0,111],[0,46],[-1,110],[0,134],[0,49],[0,89],[0,117],[0,88],[1,50],[-2,82],[1,41],[0,82],[0,248],[0,95],[0,49],[0,81],[0,104],[-1,114],[0,126],[0,39],[-1,40],[0,137],[0,59],[1,54],[0,50],[0,112],[-1,137],[0,80],[0,128],[0,137],[0,5],[-1,78],[0,70],[-1,70],[1,115],[-1,112]],[[50348,85128],[-1,-80],[1,-68],[-1,-43],[1,-41],[0,-236],[0,-71],[1,-66],[0,-117],[0,-79],[0,-140],[-1,-265],[0,-45],[1,-67],[0,-96],[1,-44],[0,-47],[0,-65],[0,-75],[0,-82],[0,-46],[0,-16],[0,-47],[0,-46],[0,-45],[0,-46],[0,-45],[0,-47],[0,-45],[0,-51],[0,-76],[0,-77],[1,-37],[-2,-134],[0,-340],[-3,-44],[1,-37],[0,-157],[2,-233],[-1,-124],[0,-49],[1,-292],[0,-56],[0,-113],[0,-1],[0,-49],[0,-56],[1,-105],[-1,-112],[1,-109],[0,-355],[0,-207],[0,-61],[0,-33],[0,-259],[0,-76],[1,-90],[0,-72],[0,-5],[0,-50],[0,-31],[0,-54],[31,-2],[19,1],[130,9],[43,-4],[15,1],[52,-7],[5,-1],[53,0],[43,1],[15,0],[28,0],[60,0],[28,-3],[-1,-260],[0,-10],[0,-170],[1,-62],[1,-13],[0,-89],[-1,-129],[0,-68],[0,-178],[-1,-144],[1,-140],[0,-57],[0,-66],[0,-66],[0,-107],[0,-221],[0,-168],[-1,-41],[1,-65],[0,-72],[1,-69],[-1,-52],[-1,-65],[1,-86],[0,-48],[0,-59],[0,-55],[2,-307],[-1,-104],[0,-79],[0,-63],[0,-64],[0,-66],[1,-100],[1,-476],[-3,-134],[2,-60],[-1,-276],[0,-117],[0,-106],[1,-44],[0,-46],[0,-162],[0,-34],[0,-65],[-1,-65],[0,-55],[0,-68],[0,-73],[0,-66],[1,-42],[0,-477],[3,-274],[0,-437],[0,-122],[0,-128],[0,-7],[0,-452],[-3,-474],[2,-36],[-1,-49],[0,-34],[0,-117],[-1,-65],[1,-38],[0,-127],[1,-37],[0,-61],[0,-83],[0,-38],[1,-73],[-1,-196],[-1,-471],[0,-65],[0,-55],[-1,-91],[1,-93],[1,-91],[0,-76],[0,-47],[0,-62],[0,-34],[0,-45],[-1,-46],[-1,-38],[0,-88],[-1,-65],[1,-47],[2,-253],[0,-108],[0,-82],[0,-40],[-1,-121],[2,-43],[-3,-37],[2,-160],[2,-112],[0,-67],[-1,-104],[-2,-228],[0,-66],[0,-3],[30,0],[139,0],[15,0],[55,0],[7,0],[43,0],[75,0],[23,0],[52,0],[52,0],[36,0],[0,-1],[2,-497],[0,-144],[-1,-71],[-1,-252],[-1,-241],[-1,-237],[-1,-143],[1,-99],[-1,-33],[0,-69],[1,-127],[0,-58],[-1,-269],[3,-46],[0,-112],[0,-182],[0,-42],[-1,-62],[-2,-114],[0,-9],[1,-53],[-1,-225],[0,-153],[0,-94],[0,-197],[0,-98],[0,-96],[0,-80],[-1,-115],[0,-98],[0,-258],[0,-34],[0,-193],[-1,-97],[0,-98],[0,-50],[0,-41],[0,-162],[0,-46],[0,-52],[0,-66],[0,-4],[0,-58],[0,-45],[0,-33],[-1,-293],[0,-51],[1,-85]],[[51398,62390],[-149,-5],[-61,2],[-81,-3],[-37,-1],[-14,-1],[-36,0],[-30,1],[-26,0],[-50,0],[-24,-1],[-27,0],[-26,0],[-13,0],[-2,0],[-124,2],[-163,1],[-142,-2],[-23,2],[-77,0],[-45,-3],[-48,0],[-48,0],[-33,0],[-14,0],[-34,-1],[-14,0],[-45,0],[-45,0],[-19,0],[-48,0],[-23,0],[-36,0],[-25,0],[-40,-1],[-13,0],[-24,0],[-17,0],[-52,0],[-56,0],[-232,0],[-93,0],[-221,2],[-2,0],[-16,-2],[-15,0],[-31,0],[-21,0],[-22,1],[-53,0],[-19,0],[-14,0],[-15,0],[-14,0],[-17,1],[-21,0],[-20,1],[-23,1],[-22,0],[-78,1],[-16,0],[-29,0],[-31,0],[-17,-1],[-40,1],[-19,0],[-18,-1],[-17,0],[-23,0],[-18,0],[-23,1],[-35,0],[-47,0],[-76,0],[-13,-1],[-24,-3],[-27,2],[-17,0],[-21,1],[-201,3],[-14,0],[-25,-1],[-39,-1],[-24,1],[-34,0],[-17,1],[-22,2],[-23,0],[-40,-1],[-14,0],[-26,0],[-16,1],[-25,0],[-36,0],[-51,0],[-25,0],[-153,-3],[-195,4],[-17,1],[-20,-1],[-46,0],[-1,0],[-33,0],[-110,2],[-26,0],[-6,0],[-111,0],[-37,-2],[-111,2],[-141,1],[-21,0],[-37,1],[-54,-7],[-24,0],[-32,-3],[-41,-1],[-44,1],[-17,0],[-13,0]],[[46232,62384],[-34,1],[-213,4],[-179,5],[-118,3],[-185,-2],[-13,4],[-16,0],[-18,-2],[-34,0],[-56,-1],[-22,0],[-54,-1],[-48,1],[-19,0],[-21,0],[-23,-1],[-58,1],[-11,0],[-12,0],[-16,0],[-35,0],[-27,0],[-25,0],[-55,0],[-37,0],[-63,1],[-43,0],[-22,0],[-24,1],[-17,0],[-11,-1],[-11,-1],[-17,1],[-29,0],[-20,0],[-38,1],[-18,0],[-47,-1],[-35,0],[-77,2],[-63,-1],[-40,1],[-71,1],[-20,0],[-15,0],[-68,1],[-37,0],[-38,0],[-45,1],[-49,1],[-36,0],[-18,-1],[-139,1],[-14,1],[-15,0],[-15,1],[-14,2],[-13,2],[-8,0],[-87,1],[-64,0],[-29,0],[-73,1],[-104,0],[-21,0],[-121,-1],[-17,2],[-79,2],[-29,-1],[-15,-2],[-17,1],[-21,0],[-33,0],[-19,1],[-14,9],[-12,15],[-13,-19],[-14,-8],[-113,3],[-26,0],[-134,2],[-5,0],[-92,1],[-40,0],[-26,-4],[-45,-1],[-21,1],[-33,0],[-31,0],[-55,0],[-16,0],[-44,0],[-32,1],[-89,3],[-57,1],[-46,2],[-95,0],[-38,0],[-26,0],[-222,1],[-1,0],[-272,2],[-16,1],[-227,-1],[-24,0],[-6,0],[-20,2]],[[29063,62388],[-13,0],[-31,-1],[-13,1],[-25,0],[-43,0],[-27,0],[-15,1],[-30,0],[-18,1],[-72,-1],[-15,0],[-49,0],[-31,0],[-89,1],[-15,0],[-45,-1],[-37,1],[-23,-1],[-27,0],[-25,1],[-47,0],[-20,0],[-26,-1],[-22,3],[-19,-2],[-19,2],[-35,-2],[-18,-1],[-18,0],[-41,0],[-18,-1],[-71,0],[-151,1],[-25,0],[-69,0],[-27,0],[-45,0],[-34,0],[-16,0],[-47,1],[-18,-2],[-22,2],[-20,-3],[-19,-1],[-31,-1],[-4,-1],[-16,2],[-26,0],[-14,3],[-26,-3],[-31,4],[-18,0],[-24,0],[-30,-2],[-2,0],[-145,-1],[-145,1],[-30,1],[-25,1],[-35,-1],[-101,1],[-23,-1],[-13,0],[-1,0],[-28,1],[-15,0],[-17,0],[-26,0],[-51,0],[-19,0],[-24,0],[-18,0],[-19,0],[-81,0],[-15,0],[-25,0],[-49,0],[-15,0],[-46,0],[-14,0],[-44,0],[-27,0],[-49,0],[-20,0],[-14,0],[-18,0],[-50,-2],[-209,-2],[-28,0],[-69,4],[-75,0],[-21,0],[-41,0],[-20,0],[-23,0],[-21,0],[-10,0],[-48,-1],[-20,1],[-195,5],[-26,-1],[-285,-2],[-114,0],[-172,-2],[-118,0],[-137,-1],[-30,0],[-60,0],[-74,0],[-305,-4],[-130,0],[-157,1],[-179,0],[-2,0],[-518,2],[-114,0],[-5,0],[-517,2],[-82,0],[-24,0],[-13,1],[-40,2],[-27,0],[-17,0],[-14,0],[1,-39],[-2,-200],[0,-130],[-1,-120],[0,-71],[0,-150],[0,-380],[0,-82],[0,-184],[0,-12],[0,-403],[0,-541],[-1,-432],[-1,-187]],[[22205,59462],[-13,-23],[-35,-35],[-21,-13],[-15,-13],[-15,-17],[-16,-13],[-18,-19],[-18,-20],[-18,-13],[-20,-13],[-18,-7],[-23,-9],[-21,-10],[-23,-7],[-22,0],[-24,0],[-26,7],[-25,6],[-23,7],[-17,13],[-20,19],[-21,30],[-7,9],[-15,20],[-17,23],[-23,26],[-20,20],[-22,23],[-24,22],[-26,20],[-24,13],[-28,7],[-32,6],[-31,7],[-30,6],[-35,7],[-36,3],[-27,6],[-21,0],[-23,0],[-29,4],[-32,3],[-28,3],[-24,10],[-23,10],[-52,42],[-29,23],[-27,20],[-25,26],[-24,36],[-22,29],[-25,36],[-25,39],[-20,26],[-19,29],[-19,33],[-22,46],[-18,36],[-5,9],[-27,40],[-30,39],[-23,29],[-21,26],[-24,20],[-24,19],[-20,2],[-15,8],[-22,20],[-21,9],[-16,7],[-13,6],[-18,7],[-14,3],[-15,7],[-23,13],[-13,3],[-13,3],[-14,7],[-17,3],[-20,7],[-16,3],[-17,0],[-18,3],[-17,-3],[-20,-3],[-23,-4],[-18,-3],[-20,-3],[-31,-3],[-16,0],[-16,-4],[-20,-3],[-16,-6],[-18,-7],[-18,-16],[-19,-7],[-20,-6],[-12,-4],[-9,-3],[-16,-10],[-16,-6],[-20,-7],[-19,-3],[-19,-6],[-17,-4],[-19,-3],[-36,-3],[-20,0],[-16,0],[-14,0],[-16,3],[-14,7],[-16,13],[-16,13],[-14,16],[-16,13],[-19,20],[-20,22],[-18,20],[-16,20],[-25,26],[-17,13],[-19,19],[-27,30],[-21,19],[-24,23],[-20,20],[-21,26],[-16,19],[-18,20],[-21,23],[-20,16],[-20,23],[-20,29],[-20,26],[-17,20],[-19,16],[-24,23],[-27,23],[-24,19],[-39,23],[-24,23],[-25,26],[-27,23],[-34,36],[-34,36],[-32,36],[-25,29],[-21,26],[-18,30],[-5,13],[-8,24],[-8,34],[-15,43],[-10,39],[-15,49],[-12,32],[-9,27],[-16,39],[-38,75],[-24,42],[-15,26],[-12,26],[-14,26],[-11,20],[-13,29],[-13,21]],[[18783,61610],[-15,19],[-19,29],[-105,636],[-26,855],[60,352],[8,171],[4,81],[4,87],[6,111],[9,199],[108,304],[43,104],[89,215],[109,263],[38,93],[399,574],[245,490],[141,488],[94,327],[10,42],[8,34],[2,43],[0,62],[-1,42],[-5,36],[-14,48],[-21,36],[-6,9],[-23,24],[-32,19],[-34,8],[-71,41],[-75,45],[-41,30],[-39,29],[-39,29],[-41,31],[-62,62],[-61,61],[-51,97],[-20,165],[3,126],[3,101],[-2,203],[-7,144],[-13,59],[-27,73],[-50,111],[-30,54],[-27,16],[-30,8],[-33,-13],[-17,-13],[-61,-91],[-60,-89],[-35,-30],[-58,-50],[-98,-39],[-141,39],[-58,30],[-47,47],[-46,71],[-37,78],[-25,58],[-17,69],[-6,56],[3,55],[8,55],[22,67],[25,83],[7,105],[4,118],[7,94],[0,106],[-5,101],[-10,57],[-21,47],[-36,59],[-45,41],[-82,49],[-51,10],[-44,3],[-61,21],[-49,40],[-65,41],[-17,12],[-56,38],[-53,10],[-46,0],[-31,6],[-18,-6],[-54,-7],[-30,0],[-50,0],[-40,7],[-40,3],[-41,7],[-13,6],[-27,23],[-13,7],[-31,16],[-13,13],[-19,10],[-31,13],[-49,10],[-18,0],[-17,6],[-22,5],[-16,11],[-19,4],[-15,10],[-25,30],[-11,45],[16,32],[22,24],[22,13],[26,17],[22,20],[43,19],[36,25],[39,47],[24,89],[14,80],[13,127],[5,124],[-2,96],[-29,107],[-34,79],[-34,51],[-48,38],[-12,19],[-15,20],[-13,10],[-33,32],[-52,44],[-60,36],[-39,10],[-14,3],[-43,-27],[-20,-24],[-29,-43],[-38,-50],[-18,-30],[-37,-36],[-36,-33],[-32,-37],[-31,-22],[-40,-32],[-29,-17],[-27,-15],[-28,-6],[-31,-4],[-54,-3],[-43,6],[-26,13],[-18,8],[-23,15],[-25,9],[-46,25],[-35,13],[-28,15],[-34,16],[-27,23],[-32,18]],[[60806,79460],[-19,0],[-49,0],[-65,1],[-24,0],[-48,0],[-72,0],[-18,0],[-104,1],[-24,-1],[-24,0],[-85,1],[-56,0],[-52,-1],[-57,0],[-18,1],[-22,0],[-48,0],[-49,0],[-43,0],[-18,0],[-69,0],[-41,0],[-56,0],[-95,1],[-48,0],[-61,0],[-84,0],[-48,1],[-49,-1],[-48,1],[-49,0],[-54,0],[-88,0],[-25,0],[-4,0],[-34,0],[-20,7],[-273,-5],[-83,-1],[-14,0],[-18,0],[-51,0],[-109,0],[-116,0],[-116,-1],[-7,0],[-17,2],[-39,-1],[-20,0],[-50,0],[-40,0],[-29,1],[-21,-1],[-22,0],[-24,0],[-27,0],[-67,0],[-57,0],[-36,0],[-55,0],[-97,-1],[-46,0],[-21,0],[-28,0],[-39,0],[-58,1],[-49,0],[-35,0],[-39,1],[-16,0],[-14,0],[-14,0],[-22,1],[-19,1],[-19,0],[-22,0],[-16,0],[-22,0],[-16,0],[-29,1],[-20,0],[-24,0],[-19,-1],[-15,-1],[-19,0],[-28,-1],[-49,0],[-23,0],[-26,0],[-48,0],[-31,-1],[-19,0],[-17,0],[-31,0],[-14,1],[-34,2],[-38,1],[-29,0],[-17,-2],[-14,0],[-20,0],[-46,-1],[-56,0],[-26,0],[-14,0],[-96,3],[-220,2],[-47,1],[0,-44],[-1,-251],[0,-1],[-7,-252],[0,-5],[0,-129],[0,-130],[0,-48],[0,-160],[0,-52],[0,-201],[-1,-66],[0,-44],[4,-109],[-1,-310],[-1,-159],[0,-61],[0,-72],[-1,-55],[0,-169],[-2,-591],[0,-39],[0,-1],[-1,-304],[-1,-68],[0,-20],[-1,-40],[1,-475],[0,-41],[0,-59],[0,-48],[-1,-51],[0,-46],[-1,-93],[1,-46],[0,-141],[0,-45],[-1,-45],[0,-46],[0,-36],[0,-54],[0,-52],[-1,-40],[0,-47],[0,-51],[0,-38],[0,-33],[0,-60],[0,-45],[1,-47],[-1,-51],[0,-46],[0,-92],[0,-46],[-1,-42],[0,-46],[0,-47],[1,-47],[0,-73],[-1,-60],[1,-47],[0,-41],[-1,-79],[-1,-239],[0,-101],[0,-95],[0,-44],[-1,-289],[0,-120],[1,-65],[-1,-468],[0,-86],[-1,-19],[-3,-250],[0,-10],[0,-94],[3,-176],[0,-65],[0,-47],[-1,-57],[-1,-53],[1,-47],[1,-155],[2,-253],[0,-42],[0,-63],[0,-71],[0,-59],[-3,-707],[0,-77],[1,-110],[0,-48],[0,-35],[1,-33],[-1,-21],[0,-151],[0,-2],[0,-32],[0,-82],[0,-50],[0,-39],[0,-195],[-1,-180],[0,-114],[0,-97],[0,-98],[0,-164],[0,-1],[0,-226],[0,-97],[0,-66],[0,-71],[16,-13],[16,1],[17,1],[21,0],[15,0],[20,1],[14,-1],[14,0],[23,0],[14,1],[26,-1],[16,0],[20,-1],[18,1],[18,1],[20,-1],[43,0],[38,0],[15,0],[21,-1],[61,-1],[14,-15],[-1,-35],[1,-99],[0,-74],[0,-122],[-1,-98],[1,-39],[-1,-52],[0,-77],[0,-76],[0,-11],[-1,-85],[5,-366],[0,-4],[-3,-272],[0,-210],[0,-37],[0,-58],[0,-49],[0,-100],[0,-98],[0,-108],[-1,-35],[1,-51],[0,-43],[-1,-54],[1,-51],[-1,-53],[1,-93],[-1,-99],[0,-51],[0,-100],[0,-58],[0,-71],[0,-183],[0,-69],[0,-57],[0,-42],[0,-44],[0,-79],[0,-127],[0,-59],[0,-66],[0,-90],[0,-68],[0,-62],[0,-52],[0,-35],[0,-108],[0,-39],[0,-44],[0,-50],[0,-66],[0,-79],[0,-147],[0,-70],[0,-53],[1,-154],[-1,-54],[0,-41],[1,-50],[-1,-66],[1,-68],[-1,-60],[0,-65],[0,-117],[1,-72],[-1,-71],[1,-65],[-1,-87],[0,-44],[1,-65],[0,-69]],[[56546,62377],[-35,1],[-40,0],[-43,1],[-39,0],[-87,0],[-44,-1],[-42,0],[-30,0],[-48,0],[-20,0],[-17,0],[-63,0],[-67,1],[-15,0],[-16,0],[-70,0],[-44,0],[-41,0],[-36,1],[-43,0],[-23,0],[-20,0],[-46,0],[-53,1],[-26,-1],[-64,1],[-30,0],[-33,0],[-15,0],[-15,1],[-17,0],[-45,0],[-41,0],[-26,0],[-144,0],[-91,1],[-54,-1],[-16,0],[-15,0],[-20,1],[-40,0],[-24,0],[-20,-2],[-9,-1],[-18,-2],[-5,-39],[-13,18],[-9,24],[-29,0],[-16,1],[-15,0],[-27,0],[-21,2],[-124,10],[-64,0],[-62,0],[-19,-1],[-143,-10],[-17,-1],[-57,0],[-67,0],[-30,0],[-57,-1],[-32,0],[-33,0],[-51,0],[-38,0],[-26,0],[-88,0],[-52,0],[-26,0],[-60,-1],[-14,0],[-35,0],[-30,2],[-22,0],[-32,-1],[-31,-1],[-29,0],[-28,0],[-19,0],[-16,0],[-29,0],[-219,-2]],[[53116,62378],[-70,1],[-221,2],[-138,1],[-149,2],[-35,-2],[-15,0],[-36,1],[-28,0],[-39,0],[-18,0],[-32,0],[-47,0],[-36,0],[-60,0],[-101,0],[-44,0],[-48,1],[-47,-1],[-48,1],[-2,0],[-66,1],[-15,2],[-143,-2],[-47,0],[-24,1],[-209,4]],[[70565,66460],[-5,-36],[-16,12],[-10,-33],[-11,-22],[-16,-14],[-19,-11],[-18,-22],[-21,-21],[-13,-24],[-6,-29],[-10,-33],[-9,-31],[-16,-24],[-25,-29],[-14,-14],[-16,-20],[-12,-17],[-14,-25],[-9,-35],[-14,-34],[-14,-38],[-12,-19],[-10,-34],[-8,-30],[-14,-23],[-17,-25],[-16,-38],[-14,-30],[-23,-12],[-21,7],[-15,15],[-10,25],[-10,27],[-4,35],[-13,24],[-1,35],[10,37],[19,17],[15,18],[23,33],[18,37],[18,42],[12,17],[7,43],[9,41],[18,22],[17,16],[1,48],[-1,51],[14,40],[19,44],[19,38],[21,26],[21,16],[15,6],[15,2],[19,14],[33,9],[20,9],[18,6],[23,2],[24,-3],[28,-26],[14,-25],[7,-37]],[[76480,85098],[1,-61],[0,-10],[0,-371],[1,-58],[0,-194],[-1,-66],[0,-185],[-1,-472],[0,-491],[0,-50],[-1,-35],[1,-98],[-1,-97],[0,-93],[-1,-87],[0,-101],[1,-97],[0,-36],[0,-62],[-1,-49],[1,-79],[0,-48],[0,-37],[0,-101],[0,-95],[0,-35],[0,-15],[-1,-30],[0,-51],[0,-47],[0,-61],[1,-58],[-1,-58],[0,-37],[1,-52],[0,-71],[-1,-202],[0,-34],[0,-72],[0,-78],[0,-66],[0,-102],[-1,-37],[1,-79],[0,-1],[0,-67],[0,-83],[0,-66],[0,-210],[0,-47],[-1,-476],[-2,-251],[0,-46],[-2,-109],[0,-61],[65,-3],[79,0],[2,0],[47,0],[101,0],[61,-1],[0,-316],[-1,-84],[0,-44],[0,-44],[0,-474],[0,-230],[0,-244],[0,-265],[-1,-207],[0,-473],[1,-476],[-1,-58],[0,-64],[0,-55],[0,-81],[-1,-230],[0,-38],[-2,-178],[1,-68],[-1,-97],[0,-74],[0,-42],[0,-60],[0,-63],[1,-73],[0,-55],[0,-34],[0,-36],[0,-59],[-1,-52],[0,-79],[0,-58],[0,-81],[0,-55],[0,-56],[0,-97],[0,-46],[0,-95],[0,-91],[0,-56],[0,-55],[0,-111],[0,-68],[-1,-81],[0,-36],[1,-87],[0,-49],[4,-215]],[[76827,73729],[-24,-2],[-220,-1],[-49,0],[-17,0],[-128,-2],[-24,0],[-46,0],[-74,-1],[-260,-3],[-20,2],[-4,0],[-10,-1],[-15,0],[-33,-1],[-27,0],[-60,0],[-59,0],[-35,0],[-57,-1],[-35,1],[-40,1],[-61,-1],[-69,-1],[-65,-2],[-17,0],[-43,-1],[-197,-1],[-44,0],[-1,-45],[0,-180],[0,-80],[-1,-102],[2,-65],[-1,-473],[-1,-78],[0,-46],[0,-44],[0,-44],[0,-26],[0,-9],[1,-62],[-1,-68],[0,-95],[0,-43],[0,-156],[0,-274],[0,-119],[0,-79],[0,-115],[0,-32],[0,-41],[0,-54],[-1,-62],[0,-95],[0,-78],[0,-78],[0,-85],[0,-42],[0,-63],[0,-122],[0,-103],[-1,-209],[0,-39],[0,-117],[0,-78],[0,-74],[0,-75],[0,-71],[0,-62],[0,-105],[0,-82],[0,-78],[0,-78],[-1,-92],[0,-38],[1,-42],[0,-37],[-1,-133],[0,-36],[-1,-111],[0,-79],[0,-170],[0,-65],[1,-121],[0,-36],[0,-72],[0,-40],[0,-9],[0,-39],[-1,-358],[-2,-63],[-18,3],[-23,0],[-105,-1],[-41,-1],[-46,1],[-53,0],[-66,1],[-44,0],[-35,-1],[-67,-1],[-22,0],[-56,-1],[-119,0],[-56,0],[-58,0],[-39,3],[-16,0],[-18,0],[-60,-1],[-16,0],[-77,1],[-42,-1],[-19,-1],[-20,0],[-18,-1],[-36,0],[-20,1],[-20,-1],[-68,0],[-25,0],[-71,2],[0,-38],[0,-77],[0,-78],[0,-78],[0,-87],[0,-69],[0,-79],[0,-66],[0,-89],[0,-29],[0,-38],[0,-250],[0,-63],[0,-76],[0,-37],[0,-43],[0,-136],[0,-118],[0,-137],[0,-78],[0,-78],[0,-62],[0,-95],[0,-78],[0,-181],[0,-55],[1,-77],[-1,-53],[0,-52],[1,-51],[0,-79],[0,-78],[0,-83],[0,-72],[0,-112],[0,-54],[0,-55],[0,-56],[0,-54],[0,-54],[0,-47],[0,-64],[0,-37],[0,-43],[0,-90],[0,-35]],[[73713,64589],[-290,-3],[-143,1],[-143,0],[-182,3],[-5,48],[-96,1],[-107,-2],[-239,-3],[-57,-1],[-19,13],[-82,57],[-22,15],[-31,22],[-3,18],[-45,338],[6,29],[20,26],[15,7],[41,66],[46,74],[-4,55],[-13,23],[-171,252],[-51,74],[-48,71],[-36,53],[-15,27],[-52,93],[-72,128],[-17,39],[-36,249],[-12,82],[-9,60],[-10,69],[-12,30],[-16,32],[-11,30],[-12,32],[1,50],[16,49],[25,44],[30,49],[8,94],[9,97],[-19,52],[-28,76],[-30,82],[-7,19],[-18,51],[-1,0],[-41,16],[-224,86],[-53,20],[-27,7],[-28,7],[-71,-35],[-56,-66],[-29,-35],[-23,-28],[-15,-18],[-16,-2],[-103,-16],[-21,-62],[-185,-563],[-13,-13],[-16,-16],[-11,-20],[-21,-26],[-23,-29],[-25,-26],[-15,-23],[-16,-20],[-17,-13],[-17,-20],[-15,-30],[-22,-19],[-18,-7],[-24,-5],[-13,-1],[-16,1],[-16,9],[16,93],[46,100],[19,17],[14,12],[8,26],[10,36],[9,30],[7,34],[5,47],[-6,52],[-9,26],[-3,33],[-5,49],[-4,40],[5,38],[-2,42],[-6,31],[-10,23],[-23,37],[-19,19],[-22,25],[-24,31],[-16,22],[-13,24],[-10,30],[-2,30],[-1,15],[1,40],[12,33],[13,13],[13,16],[12,33],[-8,40],[-16,15],[-13,16],[-13,17],[-15,39],[-15,350],[-4,84],[-8,168],[-2,1],[-18,-29],[-12,-497],[-1,-21],[-4,-174],[8,-39],[11,-29],[1,-39],[0,-36],[-1,-16],[-3,-28],[-16,-15],[-20,6],[-68,37],[-99,53],[-47,170],[-11,41],[40,147],[-29,401],[-2,32],[1,11],[3,31],[4,40],[5,44],[-4,15],[-19,23],[-18,29],[-14,10],[-29,91],[-33,100],[-51,157],[-24,73],[-12,127],[-8,84],[-5,63],[13,35],[53,17],[16,41],[-11,24],[-54,121],[-323,55],[-24,-95],[-21,-123],[-55,-105],[-97,-186],[-72,-69],[-56,-54],[-399,-490],[-23,-44],[-26,-48],[-5,-35],[2,-33],[-3,-39],[-6,-39],[-6,-30],[0,-35],[-7,-30],[-5,-31],[-28,-207],[-8,-54],[-47,-37],[-24,26],[3,117],[-54,121],[-9,26],[-8,36],[-7,36],[-2,36],[5,49],[4,32],[3,33],[14,29],[14,17],[17,9],[3,3],[-1,37],[-11,2],[-6,4],[-9,7],[-16,13],[-16,0],[-16,-4],[-13,-3],[-6,-78],[-18,-16],[-52,-45],[-47,-19],[-57,-23],[-38,-15],[-16,-29],[-10,-26],[-5,-36],[0,-39],[2,-36],[6,-33],[39,-199],[6,-75],[-22,-75],[-76,-133],[-9,-17],[-5,-8],[-45,-54],[-16,-20],[-17,4],[-48,51],[-42,44],[-61,63],[-93,31],[-16,0],[-14,1],[-14,2],[-14,0],[-48,-19],[-17,-17],[-19,-19],[-41,-42],[-56,-58],[-16,-16],[-108,-21],[-28,-5],[-27,-6],[-17,-18],[-15,-10],[-12,-15],[-13,-18],[-14,-30],[-11,-22],[-5,-7],[-53,-76],[-16,9],[-2,16],[-1,42],[-12,49],[-9,28],[-4,44],[4,37],[11,40],[20,37],[16,32],[11,21],[2,49],[-10,31],[1,56],[10,26],[16,18],[6,31],[-5,37],[-11,33],[-5,77],[11,106],[12,29],[12,19],[-10,52],[-7,0],[-9,-35],[-12,-18],[-18,-8],[-18,5],[-14,5],[-14,14],[-11,25],[-38,222],[-94,540],[40,138],[-1,85],[-1,28],[0,32],[-28,68],[-107,-3],[-10,-25],[-13,-29],[-27,-62],[-35,24],[-75,50],[-20,1],[-26,-66],[-44,-67],[-22,-15],[-24,4],[-20,11],[-21,5],[-11,-19],[-50,-106],[-49,-69],[-39,-55],[-15,-27],[-7,-21],[-2,-4],[-5,-102],[0,-12],[4,-62],[-4,-49],[-92,-220],[-42,-83],[-135,-1],[-1,70],[0,216],[0,58],[-1,66],[-1,34],[0,44],[0,101],[0,60],[0,50],[0,56],[0,48],[0,73],[0,120],[-5,36],[5,70],[0,29],[0,29],[0,202],[0,241],[-3,253],[0,40],[0,46],[0,78],[0,77],[0,83],[1,73],[1,34],[0,41],[0,40],[0,2],[0,158],[0,96],[0,38],[0,38],[2,40],[0,62],[-272,1],[-17,0],[-94,-4],[-51,-1],[-51,-1],[-32,-1],[-4,7],[-14,26],[-16,16],[-20,17],[-24,17],[-29,29],[-1,2],[-11,20],[-1,1],[0,2],[-4,36],[0,3],[1,35],[7,33],[0,1],[10,33],[14,27],[5,40],[-6,21],[-2,12],[-3,42],[-9,36],[-34,109],[-31,115],[-16,29],[-19,19],[-23,19],[-18,21],[0,42],[7,38],[-16,33],[-24,37],[-18,26],[9,56],[12,33],[13,9],[-6,36],[-12,17],[-1,1],[0,1],[-51,81],[-21,15],[-22,-5],[-2,0],[-22,-14],[-13,-14],[-13,-21],[-3,-6],[-17,-35],[-2,-4],[-10,-14],[-1,-2],[-20,-34],[-16,-27],[-1,-3],[-10,-10],[-5,-4],[-10,2],[-13,1],[-6,4],[-9,7],[-18,15],[-21,18],[-3,3],[-1,1],[-37,42],[-7,7],[-18,20],[-68,58],[-19,16],[-17,13],[-62,49],[-52,37],[-36,17],[-51,31],[-44,13],[-21,13],[-22,-7],[-18,-16],[-14,-1],[-1,-1],[-17,-6],[-15,3],[-1,2],[-14,19],[-12,39],[-8,62],[-20,38],[-12,22],[-12,16],[-14,13],[0,1],[-4,99],[0,4],[0,57],[0,52],[0,12],[-1,75],[-1,47],[0,43],[0,61],[1,94],[-1,97],[1,97],[0,81],[0,113],[0,42],[0,84],[0,67],[-1,169],[0,141],[0,97],[0,232],[0,156],[0,118],[0,75],[0,124],[0,70],[0,167],[0,111],[0,125],[0,277],[0,98],[0,97],[0,40],[0,34],[0,64],[0,42],[0,30],[0,42],[0,34],[0,43],[0,30],[0,3],[-1,79],[0,64],[0,37],[0,16],[0,21],[0,91],[0,43],[0,36],[0,10],[0,1],[-2,62],[0,88],[0,36],[0,40],[0,61],[0,46],[0,91],[0,46],[0,92],[0,45],[0,10],[0,42],[0,40],[0,46],[0,45],[0,46],[0,46],[0,131],[0,98],[0,138],[0,42],[0,45],[0,146],[0,37],[0,46],[0,38],[0,54],[0,137],[0,46],[0,94],[0,37],[0,52],[0,46],[0,46],[0,182],[0,45],[0,183],[0,96],[-1,45],[1,88],[0,46],[0,46],[0,54],[0,38],[0,46],[0,45],[1,57]],[[91901,85075],[28,-49],[43,-36],[95,-36],[66,-48],[38,-53],[15,-50],[-4,-54],[-20,-38],[-15,-12],[-63,-2],[-22,-8],[-23,-18],[-22,-37],[-10,-38],[-7,-58],[1,-87],[13,-75],[28,-53],[25,-24],[28,-17],[40,1],[30,22],[74,84],[38,22],[32,4],[18,-3],[27,-21],[13,-20],[8,-25],[0,-50],[-15,-41],[-25,-45],[-69,-119],[-24,-30],[-40,-17],[-33,-1],[-37,12],[-33,16],[-28,-1],[-8,-10],[12,-122],[-7,-92],[1,-108],[13,-53],[6,-15],[9,-18],[40,-62],[53,-28],[40,-32],[33,-37],[33,-53],[10,-25],[11,-37],[2,-37],[-7,-29],[-15,-26],[-15,-12],[-22,-1],[-23,29],[-23,82],[-25,41],[-23,4],[-10,-17],[0,-29],[46,-90],[8,-42],[-2,-45],[-10,-29],[-12,-21],[-28,-26],[-45,-22],[-37,-4],[-63,-18],[-39,-14],[-33,-21],[-37,-55],[-5,-16],[1,-42],[5,-29],[20,-33],[43,-19],[7,-2],[53,-1],[42,13],[57,30],[33,26],[52,17],[60,1],[53,-28],[25,-41],[11,-45],[-5,-54],[-20,-38],[-27,-4],[-20,7],[-81,94],[-23,16],[-32,0],[-28,-17],[-17,-30],[-17,-75],[1,-58],[20,-78],[23,-58],[33,-53],[18,-16],[47,1],[5,8],[35,17],[27,1],[20,-8],[23,-41],[8,-42],[-5,-122],[-3,-106],[-15,-54],[-72,-126],[-19,-25],[-40,-38],[-30,-18],[-74,-63],[-28,-55],[-4,-21],[0,-58],[5,-20],[15,-25],[18,-16],[47,-3],[28,8],[20,13],[76,147],[33,26],[55,-3],[35,-50],[18,-53],[10,-75],[1,-54],[-7,-49],[-10,-55],[-7,-20],[-32,-55],[-15,-9],[-25,0],[-28,12],[-83,77],[-52,-5],[-23,-17],[-12,-21],[-5,-21],[0,-50],[18,-49],[34,-51],[29,-14],[90,-32],[78,-73],[31,-45],[22,-45],[11,-37],[-26,-105],[-32,3],[-77,128],[-31,28],[-40,12],[-42,-1],[-77,-34],[-55,-35],[-42,-46],[-10,-17],[-4,-111],[93,-28],[36,75],[3,25],[9,33],[15,26],[23,17],[17,0],[22,-90],[15,-86],[14,-81],[27,26],[44,-90],[1,-54],[-5,-21],[-30,-50],[-52,-47],[-25,-29],[-22,-38],[-27,-80],[-32,-54],[-25,-21],[-50,-1],[-32,7],[-70,-22],[-30,-29],[-20,-30],[-9,-37],[0,-42],[20,-24],[50,-4],[20,-20],[1,-37],[-17,-63],[2,-49],[36,-58],[45,-53],[38,-32],[15,-8],[27,0],[82,72],[30,9],[13,1],[15,-13],[17,-28],[3,-38],[-12,-25],[-17,-12],[-55,-14],[-15,-21],[-5,-17],[3,-49],[15,-46],[33,-74],[3,-20],[0,-29],[-5,-17],[-15,-25],[-17,-17],[-63,3],[-5,8],[-55,15],[-42,-1],[-10,-4],[-22,-29],[-17,-80],[0,-87],[6,-24],[30,-50],[55,-52],[23,-33],[22,-56],[14,-39],[5,-70],[20,-33],[10,-8],[45,-12],[23,-20],[13,-20],[3,-58],[-30,-59],[-30,-46],[-4,-17],[2,-54],[16,-24],[17,-12],[73,1],[30,-8],[20,-16],[30,-45],[5,-16],[5,-21],[1,-54],[-34,-171],[-20,-41],[-25,-26],[-69,-18],[-20,-13],[-23,-21],[-17,-29],[-12,-46],[3,-54],[10,-16],[18,-12],[24,4],[35,59],[15,17],[32,17],[30,1],[115,-35],[35,-29],[25,-37],[8,-20],[3,-12],[-2,-54],[-18,-34],[-12,-13],[-104,-56],[-73,3],[-17,-13],[-20,-42],[-46,-175],[-5,-25],[1,-41],[5,-21],[15,-24],[12,-8],[20,0],[23,21],[24,42],[22,26],[20,12],[28,-3],[20,-25],[20,-37],[3,-37],[-59,-96],[-2,-59],[7,-24],[26,-37],[27,-12],[43,-32],[60,-65],[18,-33],[10,-37],[0,-42],[-5,-17],[-27,-29],[-50,3],[-20,16],[-23,37],[-25,70],[-20,33],[-38,3],[-32,-46],[-98,-201],[-5,-17],[-5,-37],[1,-29],[5,-21],[25,-32],[20,0],[15,13],[27,46],[7,21],[40,63],[10,8],[24,1],[11,-8],[30,-45],[28,-87],[25,-95],[18,-78],[6,-91],[-7,-29],[-30,-51],[-10,-8],[-62,7],[-12,-21],[0,-29],[25,-87],[-2,-45],[-15,-26],[-22,-21],[-37,-9],[-13,8],[-75,36],[-60,3],[-34,-21],[-20,-34],[-7,-25],[0,-41],[10,-42],[8,-12],[17,-12],[38,1],[44,13],[30,-3],[93,-36],[27,-20],[16,-21],[12,-41],[0,-25],[-17,-37],[-64,-6],[-10,-8],[-10,-21],[0,-42],[5,-16],[41,-66],[30,-69],[5,-29],[1,-54],[-15,-25],[-18,-13],[-30,-1],[-30,16],[-32,0],[-17,-9],[-104,-93],[-23,-22],[-19,-33],[-15,-42],[0,-45],[21,-37],[12,-8],[35,0],[5,9],[47,1],[15,-8],[18,-12],[22,-37],[3,-13],[-2,-41],[-25,-38],[-79,-10],[-15,-13],[-18,-29],[-4,-29],[0,-50],[8,-25],[22,-36],[33,-25],[50,-15],[47,1],[40,-8],[63,-32],[22,-20],[23,-37],[10,-37],[0,-37],[-22,-42],[-27,-5],[-23,16],[-62,82],[-28,24],[-20,8],[-47,-5],[-55,-34],[-47,-38],[-52,-47],[-34,-63],[-5,-58],[20,-41],[10,-8],[18,0],[69,118],[32,13],[37,-8],[146,-109],[50,-49],[40,-69],[15,-37],[11,-42],[13,-61],[0,-38],[-7,-33],[-23,-34],[-37,0],[-13,12],[-25,45],[-7,33],[-24,149],[-43,78],[-10,12],[-22,12],[-40,-1],[-23,-13],[-9,-17],[-8,-25],[1,-58],[17,-45],[31,-45],[62,-15],[10,-8],[18,-33],[0,-46],[-17,-33],[-10,-9],[-30,-13],[-67,-22],[-10,-8],[-19,-34],[-8,-25],[3,-45],[8,-21],[43,-193],[-38,29],[-13,-84],[-4,-30]],[[92183,73671],[-59,10],[-69,0],[-4,0],[-15,0],[-16,1],[-14,0],[-103,0],[-2,0],[-39,0],[-29,-1],[-127,1],[-142,-1],[-16,-3],[-4,0],[-13,-1],[-25,0],[-42,1],[-27,0],[-14,0],[-30,0],[-20,0],[-60,1],[-39,0],[-22,0],[-102,1],[-23,1],[-31,0],[-17,0],[-44,1],[-20,1],[-57,0],[-127,1],[-18,1],[-15,0],[-26,0],[-16,0],[-20,0],[-15,0],[-26,0],[-23,0],[-34,1],[-42,1],[-59,0],[-24,1],[-37,1],[-53,0],[-38,1],[-32,1],[-81,2],[-42,1],[-26,0],[-42,1],[-22,0],[-43,1],[-160,9],[-127,2],[-88,1],[-9,0],[-15,-1],[-8,-1],[-9,-1],[-44,1],[-14,0],[-37,0],[-19,1],[-46,1],[-58,1],[-28,1],[-35,0],[-20,1],[-24,0],[-27,0],[-22,0],[-34,1],[-18,1],[-22,0],[-31,1],[-24,0],[-18,1],[-17,0],[-22,0],[-23,1],[-15,0],[-14,1],[-50,1],[-35,1],[-31,0],[-38,0],[-69,0],[-20,0],[-24,0],[-23,0],[-31,0],[-20,0],[-56,0],[-14,0],[-70,1],[-41,1],[-25,0],[-27,0],[-126,-2],[-33,-1],[-42,1],[-36,-1],[-27,0],[-15,0],[-40,0],[-90,-1],[-22,0],[-44,-1],[-55,0],[-24,-1],[-37,0],[-63,0],[-15,0],[-14,1],[-12,-1],[-3,0],[-41,-1],[-24,-1],[-63,0],[-30,0],[-92,0],[-34,0],[-34,0],[-37,-1],[-47,0],[-37,0],[-75,-1],[-74,0],[-22,0],[-19,0],[-9,1],[-14,0],[-19,-1],[-15,0],[-21,0],[-26,0],[-43,0],[-39,0],[-26,0],[-37,1],[-39,0],[-66,0],[-39,1],[-28,-1],[-30,0],[-38,0],[-49,0],[-96,0],[-44,0],[-45,1],[-41,-1],[-63,1],[-22,0],[-36,0],[-26,0],[-35,0],[-24,0],[-62,0],[-80,0],[-19,0],[-95,1],[-84,0],[-97,0],[-2,0],[-33,0],[-80,0],[-48,0],[-121,0],[-40,0],[-39,0],[-40,0],[-45,1],[-72,0],[-53,0],[-290,0],[-98,-2],[-45,0],[-79,-1],[-33,1],[-285,3],[-39,-3],[-42,0],[-2,0],[-29,0],[-158,2],[-1,0],[-31,-5],[-26,1],[-286,3],[-150,2],[-23,3],[-110,-5],[-20,2],[-59,0],[-38,0],[-39,0],[-25,0],[-49,0],[-66,0],[-23,0],[-31,0],[-40,0],[-29,0],[-52,0],[-16,0],[-16,3],[-15,-1],[-30,-1],[-32,1],[-146,4],[-36,-5],[-18,0],[-47,0],[-47,0],[-4,0],[-10,0],[-53,0],[-26,0],[-14,0],[-1,0],[-21,1],[-18,1],[-28,-1],[-17,1],[-17,-1],[-21,0],[-15,5],[-15,-3],[-27,-1],[-46,-2],[-37,1],[-17,0],[-20,-1],[-14,1],[-18,-1],[-19,1],[-30,0],[-21,0],[-21,-1],[-16,0],[-26,0]],[[82015,73717],[-17,0],[-17,0],[-36,-1],[-22,0],[-41,-1],[-15,1],[-35,0],[-24,0],[-48,0],[-17,0],[-17,0],[-43,1],[-16,1],[-52,-2],[-1,0],[-38,0],[-139,0],[-22,2],[-19,-3],[-14,1],[-81,-1],[-152,-1],[-35,-3],[-214,0],[-34,1],[-25,0],[-26,1],[-34,0],[-61,-11],[-148,2],[-205,4],[-15,2],[-68,-1],[-151,2],[-138,1],[-101,0],[-47,0],[-65,-1],[-44,1],[-32,1],[-15,0],[-34,0],[-59,0],[-22,0],[-14,1],[-27,-1],[-23,0],[-48,1],[-40,0],[-172,1],[-27,0],[-32,0],[-35,0],[-24,1],[-4,0],[-23,-1],[-28,1],[-22,0],[-24,0],[-69,1],[-39,0],[-42,0],[-21,0],[-19,0],[-17,0],[-35,0],[-236,1],[-108,1],[-18,0],[-103,0],[-17,0],[-45,-1],[-83,-2],[-205,3],[-90,1],[-104,2],[-53,1],[-25,1],[-17,-1],[-284,0],[-17,1],[-35,1],[-51,0],[-23,0],[-23,0],[-33,0],[-71,0],[-26,1],[-13,0],[-18,0],[-16,0],[-23,1],[-22,0],[-26,2],[-36,1],[-15,0],[-32,0],[-25,-2],[-71,1]],[[73713,64589],[0,-53],[0,-69],[0,-61],[0,-48],[0,-61],[0,-62],[0,-72],[0,-46],[0,-58],[0,-60],[0,-237],[0,-38],[-3,-107],[2,-251],[0,-92],[1,-79],[0,-37],[0,-134],[0,-57],[0,-167],[0,-55],[0,-56],[0,-102],[-1,-243]],[[73712,62344],[-53,1],[-127,-1],[-66,-3],[-10,41],[-157,2],[-81,-1],[-47,0],[-19,0],[-68,0],[-24,0],[-19,0],[-28,0],[-23,1],[-76,-1],[-21,0],[-35,1],[-24,0],[-65,0],[-14,0],[-45,0],[-20,0],[-41,0],[-25,0],[-19,1],[-112,1],[-2,0],[-53,0],[-56,0],[-21,0],[-44,2],[-89,-3],[-202,2],[-17,1],[-41,-1],[-21,0],[-204,0],[-30,0],[-27,-1],[-22,0],[-49,1],[-32,-1],[-16,0],[-49,1],[-38,0],[-37,-1],[-42,0],[-42,0],[-40,0],[-21,0],[-22,0],[-16,1],[-19,-1],[-42,0],[-33,0],[-3,0],[-26,1],[-14,-1],[-21,1],[-43,0],[-25,0],[-17,1],[-37,0],[-26,0],[-18,1],[-16,-1],[-26,-1],[-15,-3],[-84,3],[-69,-1],[-52,1],[-84,0],[-283,1],[-152,-4],[-14,0],[-123,-2],[-10,0],[-210,-2],[-72,5],[-18,0],[-16,0],[-46,0],[-32,0],[-26,0],[-19,-1],[-16,1],[-15,-1],[-27,-4],[-14,0],[-25,1],[-30,2],[-274,-9],[-63,4],[-24,6],[-38,-2],[-40,1],[-42,-1],[-47,-2],[-30,0],[-26,2],[-40,-2],[-27,1],[-48,1],[-30,-1],[-36,1],[-13,-2],[-16,-1],[-14,0],[-16,-1],[-16,1],[-14,0],[-15,-1],[-42,0],[-45,0],[-41,-4],[-56,-4],[-62,0],[-24,0],[-326,-12],[-271,-5],[-33,1],[-78,0],[-23,-1],[-15,1],[-19,1],[-17,0],[-25,0],[-21,1],[-18,-1],[-14,0],[-42,-1],[-22,1],[-39,0],[-26,0],[-28,-5],[-18,4],[-15,0],[-40,0],[-16,1],[-17,0],[-21,0],[-16,0],[-24,1],[-39,0],[-41,0],[-65,0],[-15,0],[-50,0],[-23,0],[-24,0],[-15,0],[-97,1],[-62,1],[-62,1],[-19,1],[-54,0],[-56,0],[-31,1],[-60,0],[-39,1],[-91,0],[-151,5],[-3,1],[-30,9],[-27,8],[-149,-4],[-46,0],[-59,-1],[-30,0],[-18,-1],[-20,0],[-32,0],[-20,0],[-64,0],[-21,0],[-21,0],[-38,-1],[-35,0],[-91,-1],[-19,0],[-23,0],[-16,0],[-80,4],[-24,-1],[-126,-3],[-14,-1],[-46,-1],[-3,0],[-22,-1],[-6,0],[-23,-1],[-36,-1],[-130,-4],[-6,0],[-34,-2],[-41,0],[-26,-1],[-76,-1],[-36,2],[-76,4],[-28,-1],[-42,0],[-41,0],[-41,1],[-43,0],[-42,-1],[-14,0],[-30,-1],[-19,-1],[-17,0],[-99,3],[-32,-4],[-26,0],[-19,0],[-24,0],[-17,0],[-38,0],[-71,-2],[-137,2],[-78,-1],[-26,0],[-131,-2],[-115,-1],[-15,0]],[[63413,62362],[-72,-3],[-37,-1],[-46,1],[-31,1],[-14,0],[-16,4],[-238,-2],[-1,0],[-17,0],[-105,-2],[-15,0],[-69,1],[-53,0],[-50,-1],[-68,0],[-25,0],[-20,0],[-80,-1],[-16,0],[-37,1],[-29,0],[-65,1],[-39,0],[-24,0],[-64,0],[-60,0],[-23,0],[-41,0],[-39,2],[-36,-1],[-55,-1],[-64,0],[-64,0],[-27,0],[-37,0],[-38,0],[-27,0],[-64,0],[-61,0],[-64,0],[-70,0],[-58,0],[-80,0],[-50,0],[-28,0],[-37,0],[-34,0],[-30,1],[-38,-1],[-91,0],[-23,0],[-107,1],[-121,0],[-46,0],[-44,1],[-71,-1],[-3,0],[-13,1],[-195,0],[-20,0],[-30,-2],[-16,-1],[-14,1],[-80,0],[-128,1],[-55,0],[-23,-2],[-64,-1],[-20,1],[-90,1],[-18,0],[-72,2],[-27,5],[-30,0],[-46,0],[-16,0],[-26,0],[-14,-3],[-37,0],[-18,0],[-15,0],[-40,1],[-34,1],[-118,1],[-38,0],[-20,0],[-18,-1],[-23,0],[-36,1],[-32,0],[-39,0],[-118,0],[-63,0],[-69,1],[-118,0],[-28,0],[-17,0],[-24,-1],[-43,-2],[-16,1],[-22,2],[-20,0],[-44,0],[-19,0],[-20,1],[-65,0],[-34,1],[-28,0],[-37,0],[-36,1],[-148,2],[-139,0],[-140,1],[-96,3],[-52,-5],[-18,0],[-57,-1],[-34,0],[-20,0],[-22,1],[-40,0],[-40,1],[-27,0],[-30,-1],[-46,0],[-48,0],[-48,1],[-95,0],[-20,0],[-28,1],[-15,0],[-47,0],[-48,0],[-178,1],[-42,0],[-117,1],[-48,0],[-50,0],[-26,0]],[[82015,73717],[0,-236],[0,-112],[0,-55],[0,-48],[0,-40],[-2,-102],[0,-3],[0,-72],[0,-41],[1,-155],[0,-8],[0,-73],[2,-86],[-1,-34],[1,-60],[0,-36],[0,-41],[-1,-52],[0,-33],[0,-37],[0,-48],[0,-38],[0,-35],[0,-41],[0,-47],[-1,-70],[0,-71],[0,-35],[0,-61],[0,-61],[1,-59],[0,-36],[-1,-33],[2,-45],[-1,-37],[0,-55],[0,-96],[0,-85],[0,-62],[-1,-78],[0,-35],[0,-54],[0,-18],[0,-115],[0,-63],[0,-44],[0,-89],[0,-57],[0,-116],[0,-61],[0,-37],[0,-97],[-1,-105],[0,-50],[1,-175],[0,-123],[0,-13],[0,-115],[-1,-57],[0,-99],[0,-80],[-2,-169],[0,-65],[-1,-67],[1,-200],[0,-107],[2,-100],[0,-52],[-1,-47],[0,-1],[-1,-42],[0,-73],[1,-220],[0,-43],[1,-41],[0,-35],[-1,-43],[-1,-79],[4,-38],[-1,-43],[-2,-76],[-1,-79],[1,-36],[241,-2],[13,0],[31,-1],[1,-45],[1,-7],[0,-239],[0,-139],[-1,-61],[0,-11],[1,-76],[-1,-97],[0,-3],[1,-117],[0,-6],[0,-32],[0,-56],[0,-82],[0,-74],[0,-79],[0,-66],[0,-66],[0,-66],[0,-55],[0,-66],[0,-99],[0,-166],[0,-108],[0,-100],[0,-117],[0,-55],[0,-51],[0,-61],[0,-54],[0,-55],[0,-54],[0,-92],[0,-71],[0,-102],[0,-42],[0,-42],[0,-96],[0,-51],[0,-59],[0,-55],[0,-112],[0,-73],[0,-37],[0,-109],[0,-51],[0,-60],[0,-219],[0,-53],[0,-53],[0,-55],[0,-66],[0,-66],[0,-114],[0,-134],[0,-106],[0,-179],[0,-57],[-1,-109],[1,-56],[0,-71],[0,-56],[0,-47],[0,-49],[0,-47],[-1,-46],[0,-185],[0,-47],[0,-40],[0,-58],[0,-167],[0,-51],[0,-46],[0,-46],[0,-62],[0,-121],[0,-138],[0,-4],[0,-41],[0,-46],[0,-46],[0,-46],[0,-92],[0,-92],[-1,-92],[0,-72],[0,-66],[0,-81],[0,-476],[-5,-476],[4,-239],[-1,-233],[-1,-472],[-5,-168],[2,-133],[2,-88],[0,-32],[1,-53],[0,-3],[0,-38],[0,-106],[0,-60],[0,-244],[0,-101],[1,-40],[-1,-47],[1,-60],[-1,-122],[1,-91],[0,-37],[-1,-37],[0,-62],[0,-61],[0,-121],[0,-121],[0,-68],[0,-46],[0,-59],[0,-100],[0,-41],[0,-61],[0,-60],[0,-81],[0,-93],[0,-64],[-1,-67],[0,-45],[1,-229]],[[82294,56666],[-91,0],[-26,0],[-23,0],[-12,0],[-13,0],[-23,1],[-23,-1],[-17,1],[-40,0],[-22,1],[-19,0],[-28,-1],[-27,1],[-18,0],[-26,0],[-23,0],[-62,0],[-24,1],[-25,0],[-32,0],[-17,-1],[-35,0],[-42,0],[-16,0],[-26,0],[-19,0],[-16,0],[-23,0],[-14,0],[-20,1],[-15,0],[-47,0],[-20,-1],[-30,1],[-21,-1],[-26,1],[-95,0],[-25,-1],[-64,0],[-19,1],[-63,0],[-29,0],[-1,0],[-38,0],[-29,1],[-42,0]],[[80928,56670],[-41,0],[-8,-1],[-8,0],[-56,1],[-83,0],[-15,0],[-34,0],[-19,0],[-17,0],[-22,0],[-23,0],[-26,0],[-106,1],[-28,0],[-33,0],[-48,0],[-29,1],[-44,0],[-87,0],[-50,0],[-66,0],[-25,0],[-33,1],[-25,0],[-23,0],[-32,-1],[-17,0],[-24,0],[-85,0],[-20,0],[-25,0],[-14,0],[-15,0],[-29,2],[-17,-1],[-15,-1],[-20,0],[-26,1],[-18,-1],[-49,0],[-112,2],[-29,1],[-122,1],[-40,-2],[-17,1],[-23,1],[-97,-4],[-30,1],[-28,1],[-17,2],[-16,-1],[-19,-1],[-73,0],[-86,-1],[-78,0],[-26,0],[-29,0],[-14,0],[-43,-1],[-17,0],[-67,0],[-27,0],[-13,0],[-41,0],[-44,0],[-43,0],[-25,0],[-29,0],[-29,0],[-21,2],[-16,0],[-14,-1],[-63,-1],[-23,0],[-88,0],[-30,0],[-72,0],[-24,0],[-87,0],[-44,0],[-37,0],[-22,0],[-31,0],[-43,0],[-83,0],[-24,0],[-63,0],[-44,0],[-29,0],[-96,-4],[-25,0],[-145,6],[-15,1],[-22,0],[-19,0],[-15,2],[-196,-3],[-338,-6],[-14,3],[-22,0],[-121,-1],[-21,0],[-1,0],[-98,-1],[-15,3],[-37,1],[-15,0],[-43,0],[-19,0],[-46,0],[-19,2],[-34,-1],[-15,0],[-30,0],[-16,-1],[-16,1],[-13,-5],[-28,0],[-19,2],[-25,1],[-14,2],[-163,-1],[-221,0],[-15,1],[-23,-1],[-78,-5],[-23,0],[-54,4],[-219,-1],[-290,2],[-14,0],[-23,0],[-92,0],[-16,0],[-79,0],[-25,0],[-23,0],[-34,0],[-17,1],[-65,-1],[-61,-1],[-112,0],[-26,0],[-68,1],[-50,0],[-41,0],[-46,-4]],[[74051,56669],[-230,5],[-103,2],[-1,371],[-3,2916],[-1,999],[-1,1268],[0,114]],[[92183,73671],[-8,-51],[-13,-84],[-21,14],[-55,-88],[-12,-29],[-7,-34],[0,-49],[5,-17],[25,-33],[25,1],[50,26],[25,0],[22,-16],[20,-33],[11,-41],[3,-116],[-7,-29],[-27,-34],[-55,-5],[-42,-26],[-22,-46],[0,-49],[5,-33],[42,-252],[25,-58],[15,-16],[18,-8],[37,1],[32,21],[17,25],[57,47],[35,13],[35,-8],[33,-44],[5,-46],[-5,-37],[-37,-63],[-33,-36],[-98,-87],[-54,-30],[-27,-30],[-15,-25],[-61,-154],[-12,-46],[-3,-25],[3,-50],[20,-28],[30,0],[17,17],[23,34],[19,17],[33,0],[122,-55],[38,-33],[17,-32],[3,-46],[-5,-25],[-19,-33],[-13,-9],[-32,3],[-55,45],[-15,0],[-7,-13],[5,-33],[40,-70],[10,-33],[4,-149],[18,-99],[36,-136],[43,-136],[13,-62],[-2,-78],[-15,-59],[-22,-62],[-2,-58],[3,-13],[18,-28],[25,-16],[39,0],[5,9],[30,13],[32,0],[15,-12],[20,-32],[11,-38],[0,-99],[5,-25],[16,-24],[47,-45],[18,-29],[7,-20],[1,-29],[-10,-29],[-10,-17],[-20,-13],[-20,0],[-20,-9],[-12,-13],[-12,-25],[0,-29],[13,-20],[37,-8],[27,-16],[13,-12],[30,-57],[11,-54],[5,-58],[0,-70],[-4,-67],[-14,-87],[-52,-113],[0,-45],[16,-25],[12,-8],[57,-7],[15,-25],[3,-21],[-2,-10],[22,-84],[53,-103],[34,-119],[22,-62],[51,-78],[35,-28],[62,-65],[25,-50],[18,-61],[21,-112],[8,-58],[5,-49],[4,-178],[3,-129],[16,-120],[0,-95],[-5,-33],[-29,-100],[-14,-66],[0,-63],[11,-45],[30,-49],[27,-12],[37,-3],[20,-33],[1,-42],[-52,-104],[1,-50],[7,-49],[22,-232],[0,-41],[13,-50],[35,-61],[72,-65],[21,-33],[10,-37],[0,-70],[-9,-83],[-44,-245],[-16,-59],[-12,-62],[0,-46],[28,-82],[3,-37],[-15,-50],[-39,-71],[-10,-30],[0,-41],[8,-29],[16,-23],[20,-32],[5,-1],[34,-34],[1,-1],[14,-23],[10,-21],[15,-57],[-1,-104],[-10,-46],[-19,-54],[-10,-41],[-2,-29],[2,-54],[18,-58],[45,-82],[40,-40],[68,-37],[62,-11],[27,-41],[13,-103],[-25,-8],[-2,0],[3,-88],[3,-88],[2,0],[2,1],[1,0],[4,1],[94,-111],[5,-9],[42,-65],[35,-57],[23,-18],[2,-3],[-2,-11],[41,-44],[0,-53],[-65,-78],[-7,-12],[-3,-25],[15,-20],[48,-29],[22,-32],[15,-41],[13,-71],[3,-82],[-19,-42],[-33,-5],[-12,8],[-48,82],[-14,0],[-8,-13],[0,-49],[26,-70],[45,-78],[0,-50],[-22,-46],[-27,-29],[-17,-29],[-5,-13],[0,-62],[23,-41],[15,-12],[32,-45],[13,-33],[-1,-31],[-16,-31],[-44,-43],[-27,-50],[-2,-62],[5,-25],[6,-22],[27,-43],[42,-45],[12,-21],[6,-20],[0,-54],[-17,-33],[-25,-17],[-22,-30],[-2,-8],[2,-33],[28,-41],[42,-28],[20,-8],[59,-3],[58,-12],[44,-32],[33,-53],[3,-42],[-22,-37],[-28,-17],[-7,-13],[0,-25],[35,-53],[35,-52],[7,-7],[13,-27],[10,-32],[5,-21],[4,-27],[6,-64],[3,-34],[1,-60],[-3,-37],[-5,-36],[-3,-24],[2,-28],[3,-13],[4,-11],[17,-20],[8,-14],[9,-18],[2,-6],[1,-15],[-1,-9],[-2,-10],[-6,-8],[-14,-10],[-7,-7],[-15,-25],[-6,-16],[-5,-24],[-1,-23],[61,-111],[11,-13],[7,-4],[12,-1],[10,6],[15,2],[20,0],[11,-4],[9,-8],[4,-12],[12,-45],[5,-17],[45,-161],[1,-12],[1,-19],[-2,-17],[-3,-9],[-11,-20],[-17,-19],[-24,-21],[-12,-14],[-6,-10],[0,-17],[3,-6],[6,-7],[10,-3],[17,0],[32,12],[36,5],[14,-2],[19,-8],[15,-13],[12,-17],[7,-18],[3,-16],[0,-19],[-4,-9],[-2,-3],[-11,-9],[-14,-2],[-10,2],[-24,14],[-9,0],[-8,-7],[-2,-11],[1,-207],[5,-34],[2,-12],[4,-16],[10,-22],[4,-12],[5,-19],[2,-16],[-1,-17],[-3,-18],[-9,-21],[-10,-17],[-12,-9],[-17,-1],[-62,20],[-23,6],[-12,0],[-16,-7],[-12,-9],[-5,-13],[-1,-19],[8,-20],[6,-9],[16,-13],[23,0],[18,-3],[6,-6],[11,-12],[24,-40],[1,-6],[57,-35],[37,-80],[-4,-11],[-8,-40],[0,-46],[2,-9],[4,-7],[6,-6],[9,-3],[19,-2],[31,18],[20,13],[14,21],[3,4],[11,9],[9,3],[6,-2],[10,-15],[1,-7],[2,-59],[4,-18],[10,-31],[11,-23],[9,-16],[10,-13],[40,-36],[18,-20],[8,-15],[7,-24],[1,-10],[1,-20],[-2,-7],[-4,-8],[-14,-10],[-17,-11],[-22,-18],[-7,-12],[-10,-17],[-9,-18],[-14,-36],[-7,-22],[-4,-18],[-1,-35],[2,-13],[5,-7],[7,-9],[17,-1],[16,11],[35,-71],[12,-29],[22,-137],[0,-11],[3,-13],[6,-9],[14,-9],[17,-4],[14,-2],[12,4],[30,18],[17,6],[12,-4],[11,-10],[6,-14],[22,-95],[3,0],[17,-16],[9,-13],[25,-53],[17,-23],[12,-11],[24,-10],[10,-8],[9,-15],[3,-10],[-39,-95],[-5,-21],[-4,-26],[-1,-33],[4,-23],[5,-16],[14,-39],[16,-23],[27,-24],[34,-23],[14,-13],[10,-14],[4,-10],[0,-16],[-4,-8],[-7,-6],[-20,-4],[-21,4],[-13,9],[-35,34],[-13,6],[-11,0],[-9,-6],[-9,-10],[-4,-13],[0,-20],[5,-14],[9,-15],[48,-26],[25,-19],[34,-33],[12,-18],[11,-24],[6,-39],[2,-33],[0,-102],[-4,-25],[-3,-22],[-4,-15],[-12,-29],[-9,-14],[-13,-19],[-12,-27],[-4,-10],[-4,-18],[0,-23],[2,-15],[5,-36],[3,-14],[15,-48],[11,-29],[43,-92],[25,-45],[3,-9],[3,-27],[1,-50],[4,-29],[6,-14],[9,-13],[15,-9],[28,-9],[9,-7],[8,-10],[3,-10],[2,-5],[2,-14],[-2,-16],[-3,-11],[-7,-17],[-15,-26],[-15,-21],[-27,-29],[-19,-17],[-27,-21],[-21,-12],[-18,-12],[-6,-15],[-4,-12],[-5,-31],[-1,-18],[4,-23],[6,-15],[7,-11],[13,-6],[8,-1],[10,5],[15,16],[7,13],[10,22],[6,15],[1,8],[4,12],[8,19],[9,9],[10,2],[10,-4],[9,-8],[12,-17],[6,-15],[7,-32],[0,-24],[-1,-11],[-3,-22],[-3,-8],[-8,-40],[-2,-15],[0,-28],[3,-15],[1,-8],[4,-12],[11,-19],[20,-17],[15,-11],[23,-2],[15,-4],[8,-6],[9,-13],[2,-10],[1,-29],[-4,-28],[-12,-36],[-7,-14],[-10,-16],[-14,-10],[-12,-2],[-10,3],[-7,-2],[-14,-14],[-9,-14],[-19,-40],[-3,-16],[-1,-18],[2,-8],[4,-13],[6,-11],[12,-6],[13,0],[8,7],[12,16],[18,33],[13,26],[7,6],[11,3],[5,-5],[4,-3],[8,-15],[6,-21],[10,-43],[2,-12],[5,-21],[6,-29],[7,-20],[22,-51],[5,-14],[0,-23],[-3,-10],[-4,-11],[-18,-27],[-9,-19],[-4,-23],[-1,-42],[4,-14],[4,-13],[9,-13],[10,-8],[13,0],[14,12],[11,13],[7,16],[11,36],[6,12],[7,12],[9,6],[8,-4],[8,-8],[11,-20],[7,-18],[6,-24],[1,-27],[-1,-51],[-1,-38],[6,-44],[18,-109],[10,-201],[1,-10]],[[95446,56750],[-81,-87],[-40,0],[-83,1],[-60,-1],[-47,1],[-7,0],[-10,0],[-15,0],[-15,0],[-69,0],[-94,0],[-30,0],[-34,0],[-47,0],[-22,0],[-24,0],[-27,-1],[-15,0],[-26,1],[-99,0],[-28,-1],[-92,0],[-76,0],[-57,-1],[-26,1],[-26,-1],[-14,0],[-73,0],[-31,0],[-19,0],[-51,-1],[-17,0],[-55,0],[-37,0],[-21,-1],[-14,0],[-59,0],[-51,1],[-14,0],[-31,0],[-51,1],[-14,0],[-32,0],[-129,0],[-67,0],[-53,0],[-19,0],[-18,0],[-111,1],[-82,1],[-20,0],[-20,0],[-22,0],[-16,0],[-37,-1],[-20,0],[-25,1],[-35,0],[-17,0],[-10,0],[-22,0],[-22,0],[-24,-1],[-34,0],[-19,0],[-26,0],[-20,0],[-35,0],[-22,0],[-18,0],[-36,0],[-14,0],[-16,0],[-13,0],[-21,0],[-20,0],[-21,0],[-20,0],[-5,0],[-9,0],[-21,0],[-50,0],[-23,0],[-45,1],[-23,-1],[-22,1],[-22,0],[-24,0],[-20,-1],[-30,0],[-24,0],[-14,-1],[-49,1],[-44,0],[-44,-1],[-75,0],[-37,1],[-23,-1],[-48,0],[-48,0],[-24,0],[-14,0],[-15,0],[-28,0],[-34,0],[-61,0],[-27,0],[-24,0],[-29,0],[-162,1],[-18,0],[-17,1],[-18,-1],[-52,1],[-75,0],[-59,0],[-91,1],[-17,0],[-104,0],[-15,0],[-75,1],[-81,0],[-26,0],[-95,0],[-65,0],[-49,0],[-47,0],[-65,0],[-79,0],[-141,0],[-132,0],[-15,-1],[-41,0],[-61,1],[-39,-1],[-29,0],[-31,0],[-91,0],[-130,0],[-225,0],[-59,-1],[-91,0],[-173,-2],[-21,0],[-45,-1],[-41,1],[-32,0],[-79,0],[-89,0],[-218,0],[-68,0],[-232,0],[-54,0],[-62,0],[-53,0],[-6,0],[-44,-1],[-83,1],[-37,0],[-1,0],[-94,0],[-49,0],[-63,0],[-23,0],[-30,0]],[[87760,56662],[-28,0],[-114,0],[-84,0],[-29,0],[-30,0],[-30,0],[-59,0],[-3,0],[-48,0],[-31,0],[-115,0],[-29,0],[-28,1],[-74,0],[-99,0],[-24,0],[-33,0],[-13,0],[-16,0],[-63,0],[-45,0],[-63,0],[-83,0],[-15,3],[-233,-5],[-45,0],[-25,0],[-27,0],[-15,0],[-31,-1],[-42,1],[-15,0],[-22,-2],[-17,1],[-38,1],[-48,3],[-17,1],[-17,1],[-18,0],[-236,-3],[-32,0],[-15,0],[-36,0],[-43,1],[-87,1],[-34,0],[-19,0],[-16,0],[-14,1],[-21,0],[-253,-1],[-18,0],[-18,1],[-51,0],[-70,-1],[-36,0],[-50,0],[-38,0],[-26,0],[-16,0],[-28,0],[-18,0],[-37,0],[-144,0],[-18,0],[-28,0],[-17,1],[-14,0],[-17,-1],[-46,0],[-54,1],[-93,0],[-31,0],[-23,0],[-41,0],[-38,0],[-18,0],[-63,0],[-54,0],[-18,0],[-29,0],[-25,0],[-23,0],[-23,0],[-39,0],[-90,0],[-57,0],[-57,0],[-37,1],[-18,0],[-140,0],[-186,0],[-16,0],[-53,-1],[-22,0],[-25,0],[-22,0],[-37,1],[-18,0],[-15,0],[-23,0],[-27,0],[-19,0],[-1,0],[-20,0],[-44,0],[-27,0],[-59,0],[-18,0],[-181,-5],[-25,-1],[-26,-1],[-23,-1],[-75,3],[-234,4],[-37,0]],[[18783,61610],[1,-125],[0,-6],[0,-295],[0,-2],[0,-62],[0,-10],[0,-139],[1,-70],[0,-43],[0,-491],[0,-263],[0,-105],[0,-130],[0,-187],[0,-68],[0,-399],[0,-210],[-1,-386],[-1,-131],[0,-49],[-2,-506],[0,-149],[-1,-276],[-1,-308],[-1,-263],[0,-65],[-1,-150],[-276,2],[-294,2],[-555,4],[-3,0],[-29,0],[-22,-1],[-22,0],[-21,0],[-17,1],[-27,-1],[-22,0],[-22,1],[-25,-2],[-16,1],[-16,1],[-19,0],[-33,-1],[-29,1],[-16,1],[-16,-1],[-16,0],[-20,-1],[-16,0],[-16,0],[-19,2],[-17,5],[-226,-1],[-78,0],[-17,0],[-191,-1],[-44,0],[-55,0],[-26,0],[-26,0],[-19,0],[-62,0],[-45,0],[-14,0],[-114,1],[-153,0],[-96,1],[-205,0],[-150,1],[-363,-1],[-34,0],[-20,0],[-13,0],[-95,-1],[-274,0],[-262,-1],[-205,-1],[-108,0],[-241,-1],[-57,0],[-3,0],[-13,0],[-131,1],[-37,0],[-29,0],[-12,0],[-17,0],[-13,0],[-86,1],[-42,0],[-87,1],[-5,0],[-30,0],[-79,0],[-144,1],[-91,0],[-64,1],[-100,0],[-258,1],[-81,1],[1,-261],[1,-396],[1,-38],[1,-245],[0,-74],[1,-391],[1,-102],[0,-103],[0,-206],[0,-159],[0,-86],[0,-218],[-1,-628],[0,-52],[0,-3],[0,-102],[0,-438],[0,-279],[0,-268],[0,-44],[0,-541],[0,-47],[0,-34],[-1,-216],[-1,-240],[0,-53],[0,-35],[-1,-47],[2,-48],[1,-36],[-1,-66],[1,-86],[0,-102],[0,-44],[0,-57],[1,-295],[0,-242],[0,-189],[1,-202],[0,-129],[0,-243],[0,-21],[0,-18],[1,-240],[0,-189],[0,-126],[0,-196],[0,-5],[0,-36],[0,-61],[0,-44],[0,-240],[0,-34],[1,-202],[0,-322],[0,-53],[0,-409],[0,-66],[0,-72],[0,-95],[0,-62],[0,-73],[0,-79],[0,-36],[0,-50],[1,-92],[0,-87],[0,-46],[0,-263],[0,-71],[0,-62],[0,-45],[0,-110],[0,-18],[0,-16],[0,-102],[0,-116],[-1,-155],[0,-99],[0,-85],[0,-52],[0,-84]],[[12687,45462],[-20,0],[-13,0],[-25,0],[-14,-1],[-17,0],[-16,0],[-14,0],[-16,0],[-15,0],[-16,0],[-16,2],[-87,-2],[-82,2],[-84,-2],[-15,0],[-83,-2],[-37,2],[-24,0],[-23,-1],[-24,0],[-16,0],[-45,-1],[-81,-1],[-18,0],[-50,-1],[-141,1],[-41,1],[-30,0],[-24,0],[-47,1],[-1,0],[-68,0],[-161,-2],[-56,-1],[-232,-1],[-47,-1],[-71,0],[-44,-1],[-56,0],[-68,-1],[-22,0],[-24,0],[-34,6],[-91,-4],[-113,-5],[-48,3],[-180,10],[-50,2],[-53,-1],[-87,-3],[-139,-5],[-56,2],[-233,-2],[-51,0],[-203,-5],[-30,0],[-53,-1],[-233,1],[-42,1],[-227,1],[-50,0],[-183,1],[-150,1],[-157,1],[-26,0],[-62,0],[-237,2],[-326,2],[-87,0],[-163,0],[-28,-4],[-84,-1],[-127,-1],[-101,-2],[-20,3],[-20,-2],[-149,-1],[-18,0],[-67,0],[-4,0],[-42,1],[-112,0],[-24,0],[-97,-1],[-39,1],[-109,0],[-18,-1],[-106,2],[-60,0],[-61,-1],[-175,4],[-16,5],[-43,1],[-15,0],[-15,0],[-124,2],[-114,7],[-143,4],[-149,3],[-4,0],[-15,0],[-125,3]],[[5115,45482],[-39,0],[-30,0],[-26,0],[-15,0],[-9,0],[-19,-2],[-26,0],[-29,-1],[-28,-1],[-33,-2],[-33,-1],[-85,2],[-1,0],[-14,1],[-49,0],[-41,-1],[-25,1],[-6,0],[-24,0],[-38,0],[-36,1],[-28,1],[-19,0],[-17,0],[-48,1],[-67,2],[-115,1],[-47,0],[-15,0],[-37,0],[-65,0],[-43,1],[-98,2],[-66,1],[-114,2],[-30,1],[-52,1],[-89,1],[-106,2],[-158,-5],[-159,1],[-44,0],[-48,0],[-74,1],[-71,0],[-23,1],[-36,0],[-62,0],[-146,1],[-104,1],[-166,2],[-4,0],[-29,2],[-36,0],[-30,0],[-66,1],[-44,0],[-53,0],[-18,0],[-39,0],[-44,1],[-19,0],[-221,-2],[-15,0],[-26,1],[-53,1],[-25,0],[-30,0],[-109,1],[-71,0],[-58,0],[-21,0],[-42,0],[-40,0],[-18,0],[-49,1],[-19,0],[-28,0],[-31,0],[-3,0],[-20,0],[-43,0],[-65,1],[-17,0],[-16,8],[-111,-2],[-67,-1],[-37,0],[-54,-1],[-18,0],[-14,-1],[-91,0],[-169,-1],[-30,1],[-15,0],[-16,0],[-17,-1],[-45,0],[-71,0],[-30,0],[-13,1],[-16,0],[-28,-1],[-21,1],[-16,0],[-19,2]],[[62,45509],[4,57],[1,42],[-1,40],[0,48],[0,36],[0,37],[1,37],[-2,39],[0,34],[0,34],[-1,37],[2,487],[0,149],[0,13],[1,215],[0,20],[2,106],[-2,469],[0,122],[-1,173],[-1,268],[0,41],[0,139],[1,220],[3,543],[3,107],[1,55],[0,49],[0,141],[1,55],[0,55],[0,94],[0,57],[0,57],[0,117],[0,5],[-1,168],[-1,348],[-1,240],[1,93],[6,495],[0,185],[0,67],[0,136],[1,41],[0,136],[0,3],[0,36],[0,106],[0,59],[0,69],[0,35],[0,34],[0,99],[0,127],[1,422],[0,59],[0,178],[0,306],[0,134],[0,173],[1,121],[0,285],[0,73],[0,63],[0,121],[1,210],[0,89],[-5,294],[5,267],[2,148],[0,66],[1,517],[0,278],[1,82],[0,13],[0,203],[0,35],[0,185],[1,156],[0,163],[0,16],[0,127],[0,231],[2,925],[0,209],[0,89],[2,640],[0,41],[0,2],[-1,100],[2,144],[0,55],[0,7],[1,68],[0,45],[1,21],[0,27],[0,33],[1,116],[1,289],[2,234],[0,57],[0,4],[0,38],[1,113],[1,191],[0,35],[1,98],[2,102],[0,40],[0,34],[-2,54],[0,49],[0,42],[2,39],[0,36],[1,74],[0,35],[0,52],[1,79],[0,55],[0,2],[0,116],[1,91],[1,48],[1,117],[0,103],[1,135],[0,43],[0,33],[1,40],[1,43],[0,49],[0,44],[0,43],[1,55],[0,52],[0,29],[1,60],[0,32],[0,36],[1,62],[0,34],[0,58],[0,46],[1,33],[0,3],[-2,169],[0,51],[-2,170],[0,38],[-1,50],[-1,69],[-1,93],[-1,73],[0,45],[-1,69],[0,49],[-1,37],[-2,107],[-1,225],[-1,28],[-1,185],[-4,556],[-1,43],[1,303],[-4,38],[0,96],[-1,45],[0,77],[-1,223],[0,109],[-1,45],[-1,33],[-2,135],[-4,307],[1,57],[1,21],[1,25],[-1,85],[0,122],[-1,50],[0,33],[0,36],[-1,117],[0,48],[0,71],[0,86],[-1,35],[-2,59],[-1,43]],[[46232,62384],[0,-56],[-2,-42],[0,-55],[0,-40],[1,-33],[0,-72],[0,-51],[0,-42],[-1,-67],[1,-79],[0,-88],[0,-55],[1,-99],[0,-2],[1,-109],[0,-42],[-2,-150],[0,-58],[1,-79],[-1,-37],[0,-113],[0,-40],[0,-67],[0,-123],[0,-41],[-1,-40],[1,-52],[-3,-147],[2,-374],[0,-96],[1,-296],[1,-111],[-2,-70],[0,-60],[0,-35],[1,-245],[1,-372],[-1,-61],[0,-172],[0,-39],[0,-92],[0,-47],[0,-46],[0,-46],[0,-46],[0,-92],[0,-46],[3,-39],[-2,-34],[2,-125],[-1,-269],[0,-126],[0,-369],[-1,-475],[-236,-1],[-100,6],[-16,-1],[-14,-1],[-18,2],[-83,0],[-38,0],[-25,1],[-45,0],[-24,0],[-18,0],[-16,0],[-18,0],[-23,0],[-23,0],[-51,0],[-22,0],[-43,0],[-16,1],[-14,0],[-17,-1],[-17,0],[-37,0],[-15,1],[-18,2],[-26,4],[-20,0],[-18,0],[-19,-3],[-18,-2],[-28,-1],[-21,0],[-16,0],[-16,0],[-27,1],[-9,-34],[-2,-96],[0,-61],[0,-47],[0,-100],[-1,-65],[0,-40],[0,-44],[0,-52],[0,-75],[-1,-63],[0,-107],[1,-51],[-1,-63],[0,-94],[2,-39],[-1,-35],[0,-43],[-4,-45],[-3,-205],[-2,-270],[-3,-41],[0,-103],[0,-208],[0,-36],[0,-306],[0,-61],[1,-126],[0,-271],[6,-483],[1,-233],[-1,-153],[-1,-53],[1,-40],[0,-90],[0,-56],[2,-65],[-1,-215],[0,-33],[0,-37],[0,-202],[-1,-53],[0,-149],[0,-52],[0,-41],[0,-38],[1,-56],[-1,-48],[-1,-35],[1,-35],[1,-40],[-2,-37],[0,-48],[0,-46],[0,-39],[0,-40],[0,-45],[0,-79],[0,-35],[0,-49],[0,-61],[0,-44],[0,-81],[0,-44],[0,-39],[0,-57],[0,-51],[0,-45],[0,-68],[0,-44],[0,-83],[0,-43],[0,-36],[0,-47],[0,-36],[0,-34],[-1,-45],[0,-4],[1,-499],[0,-36],[0,-235],[0,-472],[1,-295],[0,-495],[0,-154],[-1,-183],[0,-49],[0,-256],[0,-85],[-1,-344],[2,-58],[0,-48],[-1,-41],[0,-36],[1,-53],[0,-35],[0,-68],[1,-60],[0,-38],[0,-34],[0,-39],[-2,-488],[-1,-60],[0,-260],[0,-118],[-2,-148],[-1,-56],[2,-38],[0,-59],[-1,-44],[1,-37],[0,-79],[-3,-33]],[[45053,45429],[-104,-11],[-51,0],[-124,-1],[-81,2],[-150,7],[-54,1],[-20,0],[-18,0],[-26,0],[-15,0],[-15,1],[-36,-1],[-31,0],[-21,1],[-21,-1],[-29,0],[-151,1],[-65,0],[0,-111],[1,-43],[0,-132],[1,-415],[0,-65],[0,-59],[0,-70],[0,-62],[0,-53],[0,-76],[0,-35],[0,-95],[1,-82],[0,-48],[0,-64],[0,-64],[0,-65],[0,-64],[0,-64],[1,-65],[-1,-41],[0,-84],[0,-39],[0,-94],[0,-61],[0,-66],[0,-64],[1,-66],[0,-62],[0,-65],[0,-62],[0,-45],[0,-53],[0,-34],[0,-132],[1,-66],[-1,-65],[0,-65],[0,-67],[0,-60],[0,-20],[0,-51],[0,-65],[0,-65],[0,-65],[0,-66],[-1,-66],[1,-65],[-1,-95],[0,-38],[0,-46],[0,-84],[0,-38],[0,-33],[0,-61],[0,-65],[0,-82],[0,-86],[-1,-95],[0,-66],[0,-65],[0,-34],[0,-70],[0,-46],[0,-122],[-1,-83],[0,-154],[0,-54],[-1,-38],[-1,-36],[2,-84],[-1,-371],[0,-128],[-168,-1],[-122,-1],[-19,1],[-52,-1],[-17,0],[-23,-1],[-15,0],[-28,0],[-21,0],[-28,0],[-20,0],[-19,-1],[-19,0],[-17,0],[-14,0],[-4,0],[-11,0],[-16,0],[-22,0],[-40,0],[-36,0],[-83,0],[-48,-1],[-21,0],[-52,0],[-61,-1],[-20,0],[-41,1],[-55,-1],[-30,0],[-37,0],[-49,0],[-196,-1],[-17,0],[-20,0],[-26,0],[-87,0],[-121,1],[-32,0],[-61,0],[-62,-1],[-61,-1],[-60,0],[-21,0],[-55,0],[-27,0],[-84,0],[-51,-1],[-65,1],[-59,-1],[-29,0],[-211,-8],[-73,-3],[-183,0],[-4,0],[-67,2]],[[41161,39850],[-12,49],[-11,29],[-12,24],[-3,6],[-13,22],[-13,21],[-14,31],[-2,4],[-40,104],[-19,61],[-69,163],[-85,263],[-26,79],[-11,106],[-17,94],[-2,68],[-1,6],[-6,31],[-2,14],[-1,6],[-11,145],[2,57],[0,16],[3,135],[4,38],[56,174],[16,39],[41,243],[-5,16],[1,46],[0,8],[22,81],[9,29],[7,13],[25,48],[53,125],[21,126],[-4,49],[-25,39],[-17,28],[-42,99],[-20,69],[-12,94],[-2,62],[6,153],[-72,104],[-27,49],[-10,3],[-36,55],[-14,32],[-21,139],[-67,97],[-132,190],[-79,101],[-56,72],[-194,248],[-81,94],[-7,7],[-1,2],[-34,34],[-37,3],[-46,54],[-31,39],[-30,14],[-59,2],[-67,3],[-146,-42],[-17,-10],[-17,7],[-43,37],[-30,-2],[-7,-9],[-19,-2],[-4,-1],[-58,-5],[-41,5],[-50,-5],[-11,-13],[-20,-6],[-80,-5],[-55,67],[-7,12],[-45,-4],[-40,-33],[-3,19],[0,2],[-6,8],[-27,-3],[-73,-19],[-29,-11],[-77,-57],[-50,-54],[-10,-18],[-8,-16],[-41,-41],[-23,-3],[-38,-3],[-60,-39],[-29,-35],[-4,-4],[-19,-17],[-15,-13],[-19,-17],[-32,-3],[-37,17],[-15,-1],[-20,-2],[-19,-12],[-36,-22],[-70,-32],[-33,-12],[-40,-8],[-15,-12],[-30,-21],[-4,-3],[-9,-15],[-7,-12],[-16,-35],[-3,-17],[0,-40],[-11,-46],[-10,-29],[-8,-23],[-29,-93],[7,-144],[-2,-63],[-6,-54],[9,-86],[2,-20],[-11,-85],[-6,-59],[-14,-59],[-10,-48],[-37,-84],[-15,-75],[-18,-35],[-17,-14],[-40,38],[-28,13],[-19,4],[-46,15],[-46,22],[-16,13],[-22,18],[-42,19],[-5,3],[-99,49],[-10,13],[-84,86],[-43,49],[-18,11],[-26,39],[-16,48],[-4,47],[0,3],[-23,35],[-28,22],[-13,2],[-2,1],[-20,14],[-20,23],[-8,12],[-8,12],[-30,26],[-60,33],[-4,3]],[[37266,43401],[-13,7],[-31,17],[-22,6],[-32,-3],[-15,15],[-119,171],[-1,9],[-20,35],[-7,49],[-6,15],[-5,13],[-13,19],[-25,39],[-23,-3],[-41,-7],[-38,26],[-20,23],[-53,32],[-30,18],[-65,35],[-49,41],[-4,4],[-99,94],[-20,29],[-11,5],[-32,10],[-90,28],[-106,27],[-88,79],[-89,69],[-30,53],[-11,18],[-17,20],[-7,132],[34,154],[9,44],[5,13],[-2,124],[-14,48],[-25,81],[-22,61],[-8,23],[-44,157],[-17,60],[0,3],[-1,6],[-15,68],[-2,9],[1,11],[6,72],[-5,227],[-5,47],[-9,72],[-14,52],[-52,82],[-6,103],[9,105],[11,46],[18,160],[5,41],[7,133],[-2,74],[-5,22],[-10,51],[-19,48],[-28,43],[-69,68],[-10,14],[-6,9],[-66,85],[-12,-1],[-13,-1],[-28,22],[-23,35],[-11,28],[-81,125],[-45,115],[-17,61],[-6,94],[-8,29],[-68,188],[-37,58],[-6,45],[-5,136],[-5,8],[-6,74],[-6,62],[-14,263],[-13,173],[-35,220],[-9,55],[-8,47],[-1,8],[0,1],[-37,149],[-89,285],[-34,75],[-50,83],[4,24],[-131,240],[-15,27],[-18,41],[-11,38],[-35,91],[-8,48],[-3,34],[-10,132],[3,42],[4,40],[4,39],[5,45],[7,36],[12,53],[44,110],[17,40],[12,19],[23,46],[10,23],[12,26],[18,35],[31,64],[7,14],[46,89],[53,101],[33,51],[22,29],[14,15],[22,22],[7,6],[11,10],[13,14],[17,24],[4,4],[14,14],[39,38],[42,29],[7,5],[32,23],[27,22],[130,110],[58,72],[55,71],[43,69],[33,77],[28,78],[20,121],[-3,68],[-13,53],[-24,41],[-41,45],[-113,126],[-77,92],[-50,42],[-42,35],[-278,552],[-54,107],[-88,130],[-36,23],[-77,48],[-134,7],[-102,-40],[-36,-29],[-218,-172],[-86,-51],[-107,18],[-43,23],[-64,-7],[-40,-4],[-23,-17],[-115,-116],[-46,-42],[-77,-38],[-62,-40],[-42,-22],[-39,-20],[-71,-27],[-37,-19],[-74,-47],[-15,-8],[-83,-47],[-48,-45],[-28,-51],[-71,-61],[-46,-14],[-43,-32],[-44,-32],[-26,-14],[-67,-35],[-102,-40],[-141,-59],[-108,-35],[-96,-38],[-91,-5],[-96,7],[-7,4],[-8,5],[-56,-19],[-56,-30],[-39,-1],[-51,26],[-108,72],[-199,132],[-133,61],[-143,49],[-118,20],[-45,13],[-132,-24],[-80,-46],[-201,-115],[-69,-38],[-108,-96],[-68,-76],[-47,-59],[-178,-212],[-192,-228],[-154,-179],[-104,-77],[-49,-59],[-44,-64],[-15,-10],[-23,-22],[-15,-14],[-22,-29],[-26,-23],[-24,-16],[-44,-20],[-55,-34],[-34,-15],[-31,0],[-29,4],[-31,3],[-29,6],[-27,14],[-24,16],[-28,23],[-25,19],[-26,17],[-25,19],[-25,20],[-23,19],[-19,13],[-14,10],[-42,36],[-182,98],[-36,8],[-73,-6],[-50,-18],[-72,-1],[-49,15],[-50,36],[-13,18],[-226,315],[-65,91],[-7,11],[-111,158],[-143,182],[-161,159],[-219,134],[-126,32],[-105,10],[-138,3],[-82,-11],[-45,-8],[-6,-1],[-20,-8],[-42,-20],[-18,-10],[-16,-9],[-25,-13],[-20,-10],[-29,-7],[-32,-6],[-18,0],[-18,-7],[-27,10],[-41,26],[-38,30],[-29,32],[-24,43],[-19,55],[-4,62],[7,49],[12,62],[28,91],[27,69],[18,42],[19,52],[15,53],[9,48],[3,49],[-7,49],[-20,72],[-41,91],[-18,59],[-16,52],[-26,43],[-32,32],[-41,30],[-33,6],[-45,-9],[-40,-23],[-52,-36],[-22,-17],[-14,-3],[-42,-10],[-32,-6],[-28,-10],[-33,0],[-33,13],[-36,20],[-26,26],[-28,23],[-28,26],[-36,36],[-35,16],[-45,10],[-45,-4],[-43,-9],[-45,-33],[-46,-29],[-57,-39],[-59,-23],[-49,-10],[-60,-16],[-59,9],[-48,-3],[-35,-6],[-24,-13],[-14,13],[-16,-10],[-14,-7],[-14,-6],[-27,-16],[-27,-14],[-13,-6],[-16,-7],[-24,-3],[-20,-6],[-30,-7],[-14,0],[-14,-3],[-14,0],[-15,3],[-19,0],[-18,0],[-16,-3],[-20,-10],[-22,-10],[-26,-16],[-20,-10],[-18,-3],[-18,-7],[-16,0],[-19,4],[-21,9],[-18,7],[-16,6],[-18,10],[-22,4],[-17,6],[-19,3],[-24,7],[-27,3],[-16,3],[-20,4],[-14,3],[-18,0],[-20,6],[-16,7],[-17,10],[-20,13],[-24,16],[-21,16],[-20,13],[-20,10],[-22,13],[-20,17],[-16,16],[-21,13],[-21,6],[-19,7],[-16,13],[-17,16],[-28,40]],[[24614,53480],[-23,39],[-15,26],[-15,26],[-13,23],[-16,29],[-15,33],[-14,32],[-15,33],[-16,36],[-17,36],[-19,29],[-15,23],[-14,26],[-14,26],[-12,33],[-14,42],[-11,39],[-7,33],[-4,23],[-1,9],[-12,36],[-17,40],[-19,39],[-15,36],[-16,29],[-17,26],[-19,26],[-17,26],[-13,23],[-16,23],[-14,16],[-13,16],[-19,30],[-17,26],[-19,23],[-12,16],[-13,23],[-15,19],[-15,23],[-18,20],[-16,18],[-22,24],[-13,26],[-23,40],[-12,22],[-14,20],[-14,26],[-14,36],[-16,26],[-12,23],[-11,23],[-15,45],[-8,30],[-14,52],[-8,49],[-4,52],[6,46],[4,45],[7,53],[4,62],[1,68],[3,33],[1,45],[0,62],[-1,79],[-1,65],[-4,59],[-3,55],[0,69],[-3,62],[-5,62],[-5,48],[-6,53],[-5,62],[-3,65],[0,62],[3,78],[3,62],[2,59],[6,68],[6,59],[6,56],[5,62],[7,65],[3,44],[1,57],[0,55],[-2,53],[-2,48],[-2,49],[-1,56],[-1,49],[-3,52],[-3,52],[-1,56],[0,42],[0,42],[3,46],[1,39],[7,66],[4,42],[6,59],[3,42],[3,39],[1,39],[3,49],[2,62],[2,52],[2,49],[0,40],[2,42],[0,36],[1,39],[0,62],[0,68],[-1,36],[-4,36],[-6,33],[-8,32],[-8,27],[-12,16],[-13,13],[-16,13],[-17,13],[-18,16],[-13,10],[-17,13],[-19,13],[-18,20],[-16,16],[-14,16],[-15,20],[-15,20],[-17,26],[-15,22],[-17,30],[-13,36],[-15,32],[-12,36],[-11,39],[-9,43],[-8,42],[-8,43],[-5,49],[-7,48],[-7,43],[-6,59],[-12,32],[-6,33],[-4,59],[7,42],[17,36],[19,16],[20,10],[27,-3],[14,-4],[20,-3],[24,-6],[18,0],[28,-4],[25,-9],[8,-2],[16,-2],[14,4],[18,6],[18,13],[25,30],[20,29],[17,26],[16,23],[11,19],[19,49],[13,59],[12,52],[8,46],[8,59],[3,35],[1,76],[0,58],[-3,46],[-8,75],[-8,39],[-17,65],[-20,40],[-20,19],[-20,16],[-21,20],[-23,20],[-24,19],[-20,16],[-23,10],[-24,10],[-28,10],[-6,2],[-17,4],[-22,7],[-26,10],[-29,6],[-24,10],[-33,10],[-27,13],[-24,16],[-27,13],[-26,20],[-24,16],[-23,20],[-24,16],[-27,19],[-25,20],[-20,13],[-15,20],[-29,29],[-30,26],[-30,23],[-28,26],[-26,23],[-28,16],[-25,16],[-29,23],[-31,13],[-27,17],[-28,13],[-25,16],[-23,7],[-14,-2],[-20,-2],[-31,-3],[-28,-6],[-31,-23],[-29,-26],[-34,-43],[-33,-49],[-25,-49],[-14,-32],[-17,-39],[-27,-69],[-26,-85],[-22,-78],[-25,-98],[-19,-85],[-21,-75],[-23,-85],[-17,-88],[-15,-104],[-11,-62],[-29,-69],[-21,-55],[-22,-29],[-14,-20],[-14,-16],[-26,-36],[-20,-29],[-14,-20],[-29,-33]],[[74051,56669],[0,-37],[1,-49],[-1,-101],[0,-107],[0,-45],[0,-73],[0,-55],[0,-76],[0,-48],[1,-50],[0,-244],[0,-193],[0,-39],[0,-61],[0,-35],[0,-66],[0,-37],[0,-41],[0,-52],[0,-72],[0,-68],[0,-65],[0,-39],[0,-52],[0,-37],[0,-44],[0,-77],[0,-34],[0,-99],[0,-45],[0,-35],[0,-60],[0,-46],[0,-150],[0,-124],[0,-41],[0,-63],[1,-141],[0,-77]],[[74053,53891],[-24,3],[-109,-2],[-19,-1],[-31,4],[-34,1],[-14,-5],[-198,0],[-149,1],[-15,0],[-27,-1],[-29,0],[-45,4],[-28,1],[-38,-1],[-99,1],[-25,0],[-22,0],[-54,0],[-101,0],[-34,0],[-49,0],[-18,0],[-34,0],[-30,0],[-37,0],[-33,0],[-46,0],[-93,0],[-18,0],[-35,0],[-19,0],[-34,-1],[-35,0],[-35,0],[-40,0],[-57,1],[-21,0],[-64,0],[-27,0],[-31,1],[-21,0],[-56,0],[-39,1],[-26,0],[-109,0],[-47,1],[-15,-2],[-23,0],[-30,2],[-17,0],[-14,2],[-15,-2],[-20,1],[-15,-2],[-15,1],[-19,1],[-19,1],[-14,0],[-22,1],[-22,-1],[-17,-1],[-17,0],[-24,-1],[-20,0],[-24,1],[-55,1],[-20,0],[-37,0],[-35,0],[-35,0],[-29,0],[-20,1],[-17,1],[-15,0],[-14,0],[-44,0],[-22,-2],[-24,0],[-19,1],[-24,0],[-15,0],[-16,1],[-15,0],[-29,-1],[-15,1],[-15,0],[-23,1],[-16,0],[-18,-1],[-21,-1],[-15,0],[-17,2],[-15,0],[-87,0],[-31,1],[-58,0],[-42,-1],[-27,1],[-28,1],[-169,-1],[-21,0],[-65,0],[-20,-1],[-46,1],[-40,0],[-56,-1],[-65,2],[-24,-1],[-42,1],[-14,-2],[-21,0],[-62,0],[-34,0],[-33,0],[-75,-1],[-60,0],[-39,0],[-16,0],[-231,0],[-286,-2],[-96,-2],[-72,0],[-54,-1],[-50,1],[-181,1],[-16,-1],[-2,0],[-19,0],[-48,-1],[-21,1],[-49,0],[-63,0],[-102,0],[-30,0],[-39,0],[-13,0],[-16,0],[-33,0],[-24,0],[-22,0],[-27,0],[-23,0],[-39,0],[-19,0],[-37,0],[-32,0],[-78,1],[-4,0],[-69,1],[-25,-1],[-19,0],[-36,0],[-17,-1],[-17,-1],[-24,1],[-41,1],[-20,0],[-219,1],[-48,0],[-89,1],[-133,-2],[-23,0],[-38,1],[-26,0],[-55,0],[-23,0],[-33,0],[-39,1],[-23,0],[-27,0],[-50,1],[-46,0],[-14,0],[-54,0],[-49,0],[-27,1],[-42,0],[-71,1],[-39,0],[-34,0],[-16,0],[-20,0],[-109,1],[-22,0],[-28,1],[-19,0],[-16,0],[-18,0],[-22,1],[-23,0],[-18,0],[-34,0],[-32,1],[-27,0],[-26,0],[-52,1],[-19,0],[-45,0],[-121,2],[-18,0],[-27,0],[-4,0],[-23,0],[-22,0],[-17,0],[-32,0],[-55,1],[-29,0],[-72,1],[-15,0],[-11,0],[-130,-1],[-61,0],[-93,0],[-28,-1],[-59,1],[-69,-1],[-31,0],[-112,0],[-32,0],[-18,0],[-26,0],[-57,-1],[-24,0],[-87,0],[-37,0],[-117,0],[-36,-1],[-26,1],[-15,-1],[-59,0],[-27,0],[-27,0],[-32,0],[-17,-1],[-38,0],[-17,0],[-9,0],[-146,1],[-67,2],[-139,-3],[-68,-2]],[[63835,53907],[0,62],[0,48],[0,50],[1,60],[0,41],[-1,38],[0,91],[1,44],[0,40],[0,65],[0,46],[0,74],[0,35],[0,48],[0,53],[0,48],[0,51],[0,52],[0,46],[0,36],[0,57],[0,56],[0,7],[0,59],[0,57],[0,74],[0,81],[0,93],[0,100],[0,101],[0,99],[0,76],[0,2],[0,154],[0,6],[1,324],[0,121],[0,50],[0,101],[0,101],[0,37],[-59,0],[-77,1],[-150,0],[-24,0],[-21,0],[-91,15],[1,34],[0,152],[0,49],[0,100],[0,139],[0,54],[0,46],[0,46],[0,46],[0,46],[0,47],[0,92],[0,46],[0,46],[0,47],[0,152],[1,35],[0,46],[0,46],[0,47],[0,46],[0,60],[0,38],[0,40],[0,100],[1,43],[0,37],[-1,39],[0,27],[0,25],[0,48],[1,73],[0,35],[-1,370],[0,51],[0,42],[0,74],[0,77],[1,66],[0,39],[0,33],[0,108],[0,37],[-1,35],[0,38],[1,86],[-4,87],[1,83],[1,48],[1,68],[1,37],[0,117],[0,152],[0,58],[0,70],[0,90],[0,88],[0,133],[0,44],[1,45],[0,46],[0,47],[-1,42],[0,59],[0,124],[0,94],[0,71],[0,76],[0,33],[1,82],[0,230],[0,4],[1,154],[-2,36],[-1,63],[0,176],[1,88],[-1,51],[-4,76]],[[63835,53907],[0,-33],[0,-60],[0,-76],[0,-41],[0,-38],[0,-47],[-1,-44],[0,-35],[0,-79],[0,-61],[0,-4],[0,-39],[0,-54],[0,-93],[0,-86],[0,-54],[0,-87],[0,-33],[-1,-52],[0,-52],[0,-52],[0,-55],[0,-69],[0,-106],[-1,-54],[0,-58],[0,-70],[0,-34],[0,-35],[0,-60],[0,-47],[0,-48],[0,-35],[0,-68],[0,-87],[0,-38],[0,-56],[0,-49],[0,-34],[-1,-100],[1,-71],[-1,-67],[0,-88],[0,-37],[0,-25],[0,-16],[0,-65],[0,-38],[0,-36],[0,-34],[0,-35],[0,-35],[0,-34],[0,-96],[0,-41],[0,-43],[0,-100],[0,-37],[-1,-155],[1,-74],[-1,-34],[0,-34],[0,-40],[0,-39],[0,-38],[0,-36],[0,-40],[0,-39],[0,-72],[0,-30],[0,-6],[-1,-42],[0,-44],[0,-42],[0,-35],[0,-76],[0,-42],[0,-82],[0,-42],[0,-33],[0,-42],[0,-6],[0,-57],[0,-110],[0,-38],[0,-1],[0,-47],[0,-155],[0,-49],[0,-72],[0,-79],[0,-71],[0,-77],[0,-51],[0,-79],[0,-32],[0,-40],[0,-76],[0,-76],[0,-100],[0,-127],[0,-52],[0,-77],[0,-40],[0,-81],[0,-40],[0,-102],[0,-60],[0,-40],[0,-40],[0,-51],[0,-160],[0,-12],[0,-41],[0,-40],[0,-75],[0,-73],[0,-37],[0,-34],[-1,-72],[1,-36],[-1,-33],[0,-43],[1,-36],[0,-129],[0,-78],[-1,-35],[1,-57],[0,-48],[0,-89],[0,-146],[0,-43],[0,-48],[0,-45],[0,-35],[0,-45],[0,-35],[0,-34],[0,-57],[0,-261],[0,-39],[0,-83],[0,-119],[0,-125],[1,-88]],[[63830,45412],[-38,0],[-36,0],[-266,-1],[-226,-1],[-139,0],[-34,-3],[-17,-2],[-20,0],[-26,1],[-49,-1],[-18,-1],[-25,1],[-14,-1],[-23,1],[-41,-1],[-56,1],[-25,-1],[-36,1],[-20,1],[-16,-1],[-36,0],[-22,0],[-9,0],[-11,0],[-35,0],[-40,-1],[-66,0],[-55,0],[-45,0],[-26,0],[-33,1],[-28,-1],[-21,1],[-15,-1],[-30,1],[-55,0],[-18,0],[-30,0],[-17,0],[-10,0],[-21,0],[-45,0],[-119,0],[-79,0],[-41,0],[-112,0],[-28,0],[-20,0],[-82,0],[-49,0],[-37,0],[-148,0],[-49,0],[-45,0],[-18,0],[-14,0],[-118,1],[-32,0],[-28,0],[-28,0],[-22,0]],[[60968,45406],[-20,4],[-23,1],[-159,-3],[-60,-1],[-14,2],[-15,1],[-29,-4],[-45,0],[-47,0],[-92,1],[-36,-1],[-17,1],[-18,-1],[-141,4],[-53,3],[-25,-1],[-60,3],[-56,0],[-73,0],[-86,-2],[-28,-2],[-25,0],[-16,-2],[-259,7],[-14,0],[-82,-1],[-136,-2],[-31,1],[-31,-2],[-25,-2],[-54,0],[-103,0],[-26,1],[-25,0],[-41,0],[-24,-1],[-17,2],[-24,-2],[-30,1],[-36,-1],[-26,1],[-23,0],[-28,0],[-17,0],[-25,1],[-17,-3],[-16,-3],[-17,3],[-13,0],[-15,2],[-41,1],[-68,-2],[-34,3],[-20,1],[-27,-1],[-29,0],[-42,-1],[-70,0],[-71,0],[-64,2],[-65,1],[-114,2],[-179,0],[-275,4],[-160,-4],[-26,-1],[-20,-6],[-81,1],[-179,1],[-35,1],[-23,0],[-45,-1],[-62,1],[-225,-2],[-72,1],[-38,0],[-162,1],[-19,0],[-36,-1],[-55,1],[-19,-1],[-24,1],[-36,0],[-62,0],[-42,0],[-22,2],[-256,-8],[-14,0],[-46,3],[-115,9],[-334,-4],[-18,0],[-22,2],[-22,0],[-17,-1],[-16,-1],[-23,0],[-29,0],[-181,1],[-48,0],[-542,-7],[-1,0],[-21,0],[-36,-2],[-196,7],[-162,1],[-119,-1],[-320,-2]],[[53595,45412],[0,425],[0,61],[-6,142],[5,42],[1,35],[2,39],[0,41],[-1,176],[-1,464],[0,138],[1,321],[0,430],[0,49],[1,475],[2,295],[1,135],[1,42],[-1,60],[-1,131],[2,48],[0,194],[0,41],[0,2],[-1,70],[0,94],[2,50],[-1,57],[0,59],[-1,72],[0,35],[0,125],[0,185],[-5,46],[1,40],[5,42],[0,72],[-3,146],[0,52],[0,38],[3,236],[0,242],[0,130],[0,60],[0,42],[-1,83],[1,38],[0,82],[0,44],[0,92],[0,46],[0,84],[0,36],[-2,328],[1,114],[0,47],[0,167],[0,221],[0,147],[0,34],[0,35],[0,60],[0,60],[0,54],[0,64],[0,54],[0,62],[0,65],[0,89],[1,730],[1,112],[0,45],[1,48],[0,33],[0,112],[0,46],[0,77],[-2,395],[2,190],[0,93],[0,49],[0,40],[-1,87],[-1,94],[-1,35],[1,48],[0,36],[-1,245],[1,96],[0,7],[0,41],[0,43],[0,104],[0,261],[0,65],[0,66],[0,65],[0,65],[0,91],[0,40],[0,57],[-85,0],[-96,0],[-23,0],[-22,0],[-50,1],[-48,-1],[-17,1],[-30,-1],[-94,1],[-24,0],[0,198],[0,39],[0,38],[-1,197],[1,45],[1,192],[1,33],[1,172],[-3,34],[0,36],[0,66],[0,56],[0,57],[0,56],[0,56],[0,37],[0,33],[0,72],[0,181],[0,76],[1,36],[0,56],[0,57],[0,64],[0,70],[0,55],[0,55],[0,168],[0,50],[0,47],[-1,73],[-3,85],[2,157],[1,57],[1,130],[0,62],[0,47],[0,56],[0,55],[0,55],[0,49],[0,56],[0,53],[0,36],[1,76],[-1,53],[0,57],[0,113],[0,56],[0,55],[0,59],[0,172],[0,56],[0,101],[0,67],[1,80],[0,141],[-1,142],[0,39],[0,34],[0,10],[0,71],[0,17],[1,22],[0,66],[0,121],[0,55],[0,166],[0,60],[0,68],[0,54],[0,97],[1,42],[0,47],[1,164]],[[53595,45412],[-37,4],[-95,-2],[-118,-2],[-160,2],[-120,-4],[-56,-1],[-86,0],[-47,0],[-49,0],[-14,0],[-21,-1],[-15,7],[-14,0],[-13,0],[-27,0],[-34,0],[-33,0],[-25,0],[-35,0],[-14,-1],[-20,1],[-16,0],[-15,-2]],[[52531,45413],[-14,1],[-29,0],[-19,0],[-57,-2],[-36,2],[-32,0],[-98,0],[-70,0],[-95,-1],[-18,1],[-19,1],[-14,0],[-45,-1],[-53,-3],[-19,0],[-22,1],[-155,2],[-60,1],[-131,1],[-89,0],[-64,0],[-31,0],[-34,1],[-17,0],[-66,0],[-48,0],[-46,0],[-48,1],[-65,-1],[-15,0],[-16,0],[-17,1],[-76,-1],[-47,0],[-40,1],[-89,-7],[-14,1],[-18,0],[-26,1],[-14,0],[-100,0],[-7,0],[-45,0],[-50,0],[-106,0],[-41,0],[-138,1],[-515,2],[-51,-1],[-202,7],[-19,0],[-49,-1],[-131,0],[-49,0],[-38,0],[-49,0],[-89,1],[-105,1],[-38,-2],[-387,-2],[-73,-1],[-54,3],[-33,1],[-307,0],[-15,1],[-21,0],[-19,-1],[-13,-1],[-13,14],[-130,-6],[-70,-6],[-76,-1],[-196,-5],[-73,-1],[-26,2],[-106,-3],[-47,-1],[-93,0],[-17,0],[-305,0],[-135,-2],[-55,1],[-28,4],[-21,0],[-34,0],[-16,0],[-32,-1],[-142,0],[-109,1],[-45,-1],[-134,-1],[-99,2],[-157,2],[-16,0],[-41,0],[-27,5],[-47,-1],[-147,-4],[-20,0],[-22,1],[-86,0],[-17,2],[-13,0],[-17,0],[-15,0],[-6,0],[-80,-1],[-30,0],[-38,-1],[-35,0],[-15,11],[-37,-2]],[[24614,53480],[-1,-84],[0,-47],[0,-133],[0,-90],[-1,-327],[0,-35],[0,-120],[-1,-110],[0,-173],[-2,-215],[-1,-101],[-1,-41],[0,-67],[1,-62],[2,-125],[0,-64],[0,-8],[-1,-94],[0,-48],[0,-82],[0,-43],[-1,-309],[0,-50],[0,-310],[0,-74],[0,-117],[0,-160],[1,-235],[1,-39],[0,-64],[0,-39],[0,-53],[0,-56],[0,-55],[-1,-56],[0,-56],[0,-52],[0,-61],[0,-56],[0,-68],[1,-35],[0,-175],[0,-56],[0,-18],[0,-16],[0,-62],[0,-55],[0,-75],[0,-42],[0,-109],[1,-125],[2,-442],[-1,-83],[2,-53],[-2,-42],[-1,-95],[0,-50],[-1,-96],[0,-82],[0,-35],[0,-71],[0,-46],[-1,-67],[1,-64],[0,-134],[0,-43],[0,-52],[0,-40],[0,-65],[0,-73],[0,-47],[0,-93],[0,-65],[-1,-64],[3,-37],[-2,-407],[0,-441],[0,-505],[107,-1],[134,1],[14,0],[17,-1],[15,1],[16,-1],[14,1],[27,0],[29,0],[20,1],[34,-1],[27,1],[23,-1],[23,0],[21,1],[22,-1],[25,0],[20,0],[123,0],[108,0],[-3,-225],[1,-296],[1,-87],[0,-96],[0,-108],[0,-55],[-1,-59],[0,-6],[0,-80],[0,-288],[0,-41],[0,-60],[0,-61],[0,-48],[0,-46],[-1,-65],[0,-56],[-1,-90],[0,-10],[0,-294],[-1,-273],[0,-57],[0,-146],[0,-140],[1,-161],[1,-77],[-4,-50],[-2,-36],[4,-76],[2,-32],[-1,-108],[-2,-37],[1,-43],[0,-148],[1,-326],[1,-249],[-1,-130],[-1,-75],[0,-258],[0,-154],[0,-87],[0,-63],[0,-46],[0,-58],[1,-51],[0,-225],[0,-337],[0,-149],[0,-437],[0,-351],[0,-106],[0,-32],[0,-52],[0,-150],[0,-273],[0,-127],[0,-58],[-1,-258],[0,-51],[-1,-63],[0,-45],[1,-54],[2,-52],[-3,-38],[0,-56],[-1,-36],[0,-35],[0,-42],[0,-56],[-10,-39],[3,-42],[3,-53],[-2,-62],[7,-30],[0,-56],[0,-37],[0,-52],[0,-76],[-1,-65],[0,-62],[0,-39],[0,-40],[0,-63],[0,-41],[1,-173],[0,-93],[-1,-92],[0,-158],[0,-41],[1,-75],[-1,-57],[0,-149],[0,-183],[0,-81],[0,-63],[0,-66],[0,-71],[0,-112],[0,-159]],[[25422,35076],[-42,-6],[-56,5],[-187,-2],[-63,-1],[-17,0],[-29,-1],[-59,-1],[-121,-1],[-3,0],[-14,0],[-23,-2],[-237,6],[-140,1],[-42,-1],[-41,2],[-29,0],[-25,-1],[-159,2],[-18,-1],[-17,-1],[-14,0],[-82,2],[-13,0],[-49,-1],[-31,-1],[-22,0],[-16,0],[-17,1],[-18,-1],[-16,0],[-30,-1],[-20,0],[-44,0],[-17,0],[-23,0],[-37,1],[-36,0],[-20,0],[-18,0],[-32,-1],[-30,1],[-27,0],[-45,-1],[-29,0],[-15,0],[-15,0],[-135,1],[-16,0],[-28,0],[-23,1],[-16,0],[-18,-1],[-18,0],[-26,0],[-19,0],[-23,1],[-15,-1],[-112,1],[-26,0],[-27,0],[-2,0],[-28,1],[-168,1],[-16,0],[-33,0],[-35,1],[-108,-2],[-148,-2],[-29,1],[-140,1],[-41,0],[-31,1],[-27,0],[-15,1],[-18,5],[-20,-7],[-15,0],[-50,1],[-30,0],[-157,2],[-15,0],[-16,0],[-24,-1],[-65,-2],[-23,0],[-26,-1],[-50,0],[-30,-1],[-19,0],[-20,0],[-16,-1],[-19,0],[-31,0],[-29,0],[-43,1],[-157,0],[-221,-1],[-35,0],[-26,-1],[-97,0],[-49,0],[-65,-1],[-22,0],[-79,-1],[-9,0],[-47,1],[-18,0],[-150,1],[-28,1],[2,-293],[0,-41],[0,-53],[0,-5],[0,-78],[0,-42],[0,-50],[-1,-147],[-1,-235],[-172,-1],[-21,1],[-88,0],[-32,0],[-58,0],[-52,0],[-22,0],[-15,-1],[-43,1],[-23,0],[-17,-2],[-22,0],[-17,0],[-150,-1],[-50,0],[-20,0],[-149,-1],[-192,0],[-19,-1],[-72,0],[-15,1],[-31,1],[-19,2],[-16,-1],[-17,0],[-51,0],[-14,0],[-128,-3],[-185,1],[-21,3],[-26,0],[-16,-1],[-32,1],[-14,-1],[-30,0],[-181,0],[-26,0],[-14,0],[-28,0],[-13,0],[-23,0],[-39,0],[-24,0],[-27,1],[-25,-1],[-19,0],[-24,1],[-16,0],[-7,-1],[-16,0],[-73,1],[-15,0],[-29,0],[-47,0],[-46,-1],[-44,0],[-43,-1],[-194,-3],[-31,-1],[-64,-1],[-45,0],[-30,-1],[-14,-1],[-47,0],[-29,-1],[-23,0],[-18,0],[-34,-1],[-20,0],[-28,-1],[-37,0],[-28,0],[-17,0],[-14,0],[-15,-1],[-29,0],[-23,0],[-19,0],[-35,-1],[-26,0],[-13,0],[-14,0],[-54,1],[-14,0],[-24,0],[-22,0],[-14,0],[-15,0],[-19,0],[-26,0],[-33,0],[-29,0],[-39,-1],[-14,0],[-20,1],[-16,0],[-17,0],[-31,-1],[-45,0],[-28,0],[-14,0],[-18,0],[-28,0],[-21,-1],[-22,0],[-16,0],[-23,0],[-15,0],[-59,0],[-18,0],[-40,-1],[-21,0],[-18,0],[-15,-3],[-89,-1],[-98,1],[-37,1],[-50,2],[-57,3],[-23,1],[-21,0],[-43,0],[-14,0],[-24,-1],[-3,0],[-67,0],[-147,-2],[-137,-1],[-134,-2],[-46,0],[-27,0],[-223,-1],[-55,0],[-82,-3],[-14,0],[-19,0],[-21,0],[-66,1],[-17,0],[-43,0],[-47,1],[-25,-1],[-25,0],[-124,0],[-22,0],[-17,0],[-21,0],[-58,-1],[-17,0],[-21,0],[-24,0],[-16,0],[-24,0],[-13,0],[-15,0],[-14,0],[-18,0],[-18,0],[-24,0],[-30,0],[-94,0],[-22,0],[-97,-1],[-15,0],[-21,0],[-14,0],[-15,0],[-19,0],[-19,0],[-18,-1],[-18,1],[-21,1]],[[13576,34106],[-2,45],[0,44],[1,51],[-2,43],[0,39],[0,169],[0,9],[0,70],[0,113],[1,50],[-1,74],[0,63],[0,68],[0,71],[1,34],[-1,240],[0,142],[-1,35],[1,258],[0,41],[0,44],[0,42],[0,52],[0,38],[0,50],[0,86],[0,48],[-4,41],[2,43],[1,42],[0,41],[-1,94],[1,256],[0,265],[0,37],[1,58],[0,52],[-1,40],[1,45],[-1,91],[0,60],[1,63],[0,55],[-1,50],[-2,422],[1,119],[0,351],[0,68],[1,77],[0,59],[1,73],[-1,52],[0,56],[0,51],[0,39],[-3,234],[1,336],[0,218],[0,287],[1,195],[0,148],[1,342],[-1,89],[1,98],[0,85],[0,43],[0,41],[0,40],[0,191],[0,174],[1,547],[0,302],[0,284],[0,121],[0,94],[0,182],[1,4],[3,62],[0,6],[-1,57],[0,61],[0,83],[0,58],[-1,93],[0,44],[-1,141],[0,44],[2,88],[1,96],[1,301],[-1,337],[0,135],[-1,74],[0,42],[0,126],[1,64],[-1,310],[0,271],[0,88],[-99,1],[-135,1],[-42,-2],[-25,2],[-20,0],[-16,0],[-21,0],[-36,0],[-16,0],[-16,0],[-15,0],[-37,0],[-19,-1],[-13,0],[-16,0],[-19,-1],[-16,0],[-19,0],[-25,1],[-15,0],[-19,1],[-17,0],[-24,0],[-30,0],[-17,-1],[-20,-1],[-15,0],[-21,1],[-16,0],[-20,0],[-22,0],[-16,-1],[-32,1]],[[87760,56662],[0,-178],[0,-59],[0,-74],[-1,-53],[0,-65],[0,-53],[0,-112],[0,-113],[0,-64],[0,-2],[0,-67],[0,-58],[-1,-49],[0,-53],[0,-51],[0,-73],[0,-48],[0,-76],[0,-55],[0,-113],[0,-36],[0,-83],[0,-79],[0,-47],[0,-35],[-1,-109],[0,-83],[-1,-400],[0,-73],[0,-235],[0,-41],[0,-54],[0,-59],[0,-51],[0,-34],[0,-82],[0,-34],[0,-132],[-1,-60],[1,-52],[-1,-110],[0,-64],[0,-59],[0,-58],[0,-56],[0,-138],[0,-50],[0,-46],[-3,-270],[0,-25],[3,-185],[-1,-40],[0,-69],[0,-75],[0,-62],[0,-62],[0,-33],[0,-40],[0,-36],[-1,-51],[0,-5],[0,-44],[0,-103],[0,-60],[0,-34],[0,-38],[0,-36],[-1,-45],[-2,-46],[3,-50],[-2,-75],[1,-34],[0,-85],[0,-51],[-1,-58],[0,-64],[1,-64],[-1,-50],[0,-20],[0,-15],[0,-438],[0,-216],[-1,-73],[0,-47],[-1,-54],[0,-39],[0,-109],[0,-97],[0,-36],[0,-96],[0,-49],[0,-60],[0,-68],[0,-57],[0,-62],[-1,-138],[0,-215],[-2,-45],[-2,-428],[0,-487],[-1,-223],[-2,-233],[-1,-474],[-1,-247],[2,-252],[0,-442],[0,-51],[0,-104],[0,-323],[5,-473],[293,-2],[-2,-106],[0,-66],[6,-397],[2,-327],[1,-256],[0,-187],[1,-42],[0,-163],[1,-62],[-1,-237],[0,-173],[-2,-299],[-1,-409],[0,-62]],[[88044,42537],[-46,2],[-18,0],[-18,1],[-23,0],[-41,-1],[-114,2],[-23,0],[-67,2],[-13,0],[-24,1],[-30,0],[-30,-1],[-69,0],[-52,0],[-140,-3],[-74,-1],[-50,-1],[-19,0],[-36,0],[-13,-1],[-27,0],[-209,-2],[-282,-1],[-275,2],[-77,2],[-24,0],[-33,0],[-106,2],[-51,1],[-41,1],[-16,0],[-191,4],[-36,1],[-104,1],[-15,1],[-169,3],[-69,1],[-10,0],[-13,1],[-24,0],[-23,0],[-19,0],[-121,2],[-285,6],[-86,2],[-133,2],[-57,1]],[[84648,42567],[-39,0],[-38,0],[-38,1],[-37,0],[-50,1],[-3,0],[-12,0],[-54,0],[-15,0],[-57,1],[-32,0],[-82,1],[-37,0],[-38,1],[-38,0],[-18,0],[-64,1],[-37,0],[-39,0],[-38,1],[-53,0],[-15,0],[-21,1],[-96,1],[-112,1],[-64,1],[-12,0],[-11,0],[-28,0],[-35,-1],[-75,0],[-75,-1],[-36,0],[-24,0],[-29,0],[-105,0],[-54,-1],[-31,0],[-21,0],[-38,0],[-69,1],[-53,0],[-55,0],[-55,1],[-43,0],[-36,1],[-18,0],[-17,3],[-28,1],[-27,-1],[-27,2],[-21,0],[-19,0],[-18,-1],[-14,1],[-24,0],[-18,3],[-17,4],[-16,0],[-40,-1],[-15,-1],[-17,-1],[-125,0],[-26,0],[-57,0],[-140,0],[-11,0],[-19,0],[-21,0],[-28,-1],[-26,-2],[-23,1],[-21,-1],[-18,1],[-25,0],[-51,0],[-22,1],[-22,2],[-31,0],[-21,0],[-16,0],[-14,1],[-14,1],[-46,-6],[-17,1],[-21,-1],[-33,0],[-60,-1],[-39,0],[-81,1],[-29,1]],[[81243,42585],[1,126],[0,63],[0,53],[1,42],[0,190],[0,37],[0,44],[0,5],[0,49],[1,74],[0,60],[0,43],[0,48],[0,53],[1,40],[0,49],[0,37],[0,44],[1,94],[0,64],[0,50],[0,97],[1,64],[-1,45],[1,41],[0,45],[0,62],[0,51],[0,51],[0,33],[0,55],[0,43],[1,38],[-1,37],[0,218],[2,359],[1,98],[-2,188],[-77,4],[-15,0],[-202,0],[-52,-3],[0,130],[0,347],[3,260],[2,213],[0,58],[0,45],[1,190],[3,175],[-2,66],[0,111],[0,45],[0,106],[-2,149],[1,102],[4,93],[0,98],[0,42],[0,88],[0,41],[1,104],[1,180],[0,68],[1,127],[0,134],[0,63],[0,47],[0,91],[0,65],[0,69],[0,56],[1,122],[-4,40],[4,110],[0,37],[0,52],[0,1],[1,76],[0,88],[0,40],[-1,58],[0,168],[0,49],[0,48],[0,33],[0,75],[0,54],[0,60],[1,47],[0,123],[0,80],[0,485],[0,129],[1,232],[1,93],[1,64],[0,50],[0,63],[1,40],[-1,69],[-2,182],[1,33],[0,9],[-1,32],[1,27],[0,8],[2,80],[2,55],[-2,60],[0,104],[1,67],[0,124],[-1,41],[0,46],[1,37],[0,33],[-1,139],[1,134],[1,127],[0,68],[0,93],[-1,104],[4,176],[0,35],[0,35],[0,39],[-2,258],[0,78],[0,38],[0,37],[1,88],[0,69],[0,74],[0,38],[0,78],[1,65],[-1,66],[1,54],[1,50],[-1,81],[0,42],[1,15],[1,24],[0,65],[1,131],[0,74],[0,57],[0,53],[0,71],[1,136],[0,91],[0,40],[0,47],[0,95],[0,61],[0,134],[1,98],[0,98],[0,146],[0,50],[0,34],[1,64],[0,80],[0,115],[0,98],[0,97],[1,79],[0,46],[-1,36],[-3,34],[-1,12],[-1,61],[-1,99]],[[81243,42585],[-237,3],[-21,1],[-8,0],[-63,1],[-9,0],[-81,0],[-2,0],[-59,0],[-29,0],[-62,-1],[-26,1],[-14,-1],[-21,1],[-22,0],[-15,-3],[-16,2],[-28,3],[-23,0],[-155,2],[-15,1],[-21,1],[-16,0],[-24,0],[-30,1],[-19,-4],[-15,-1],[-107,3],[-112,3],[-173,5],[-23,0],[-23,0],[-58,1],[-22,1],[-19,1],[-50,1],[-50,1],[-13,1],[-21,0],[-58,-2],[-34,0],[-29,1],[-14,0],[-30,0],[-16,0],[-36,-2],[-17,1],[-21,0],[-33,-1],[-27,0],[-61,-1],[-31,0],[-30,-1],[-28,0],[-18,0],[-21,-1],[-32,0],[-28,-1],[-25,1],[-99,4],[-171,-3],[-141,-6],[-18,-1],[-17,-1],[-22,-1],[-32,1],[-28,-1],[-25,-1],[-31,1],[-31,1],[-26,0],[-34,1],[-35,0],[-15,1],[-1,0],[-20,-2],[-13,0],[-22,-1],[-14,1],[-13,2],[-26,0],[-32,0],[-4,0],[-59,1],[-50,1],[-84,1],[-6,1],[-12,0],[-16,0],[-36,-1],[-30,0],[-21,0],[-193,-3],[-144,1],[-15,-1],[-26,0],[-54,1],[-2,-1],[-11,0],[-2,0],[-227,-1],[-24,-1],[-32,0],[-24,0],[-23,-1],[-31,0],[-60,0],[-61,-1],[-26,0],[-88,-1],[-68,0],[-58,-1],[-17,0],[-142,-4],[-188,1],[-61,-2],[-38,0],[-105,1],[-39,0],[-16,0],[-14,0],[-31,0],[-29,0],[-21,0],[-143,1],[-18,-2],[-21,0],[-30,0],[-74,-1],[-81,1],[-31,0],[-31,-1],[-30,0],[-31,0],[-30,0],[-32,0],[-18,0],[-16,-1],[-27,0],[-33,0],[-31,0],[-76,0],[-29,0],[-41,0],[-29,-1],[-47,1],[-68,0],[-97,1],[-30,0],[-26,0],[-16,0],[-34,0],[-22,-1],[-40,0],[-178,-3]],[[74488,42582],[2,312],[2,161],[1,504],[0,63],[0,54],[0,64],[-1,94],[1,33],[0,50],[-1,61],[-1,35],[0,83],[0,137],[2,241],[0,135],[0,61],[-1,520],[-1,200],[-100,1],[-129,0],[-18,0],[-35,0],[-18,0],[-20,0],[-20,0],[-40,0],[-23,0],[-24,0]],[[74064,45391],[0,234],[0,33],[0,72],[-1,117],[-1,34],[0,41],[0,40],[0,40],[0,45],[0,60],[0,45],[0,66],[-1,46],[0,46],[0,53],[0,50],[0,70],[0,49],[0,64],[0,49],[0,58],[0,74],[0,35],[0,15],[0,51],[0,57],[-1,41],[0,41],[0,50],[0,41],[0,43],[0,42],[-1,38],[0,40],[0,112],[0,153],[0,87],[-1,86],[0,45],[1,94],[2,376],[-2,228],[-2,162],[0,5],[0,47],[0,177],[0,96],[0,43],[-1,190],[0,54],[0,40],[0,38],[0,39],[0,37],[0,38],[0,48],[0,67],[0,51],[-1,33],[0,10],[0,35],[0,40],[0,54],[0,68],[0,41],[0,41],[0,81],[0,40],[0,51],[0,45],[0,41],[0,34],[0,46],[0,35],[-1,61],[0,72],[0,60],[0,82],[0,35],[0,46],[-1,46],[0,39],[1,49],[-1,44],[1,55],[-1,44],[1,73],[0,47],[0,137],[0,75],[0,53],[0,55],[0,33],[0,77],[0,34],[0,37],[-1,56],[1,77],[-1,33],[0,7],[0,35],[1,47],[-1,43],[0,130],[-1,38],[1,47],[0,67],[0,50],[0,45],[0,33],[0,56],[1,48],[0,57],[0,53],[-1,245],[0,233],[0,48],[1,199],[0,34],[0,203],[0,10],[0,201],[0,27],[0,51],[1,124],[-2,61]],[[96311,42489],[-202,5],[-25,0],[-98,4],[-19,0],[-43,2],[-75,3],[-29,0],[-42,2],[-96,4],[-105,1],[-43,1],[-64,0],[-47,0],[-25,1],[-118,3],[-93,3],[-64,2],[-18,2],[-75,1],[-17,1],[-30,1],[-26,1],[-55,0],[-62,2],[-22,0],[-49,0],[-48,0],[-62,0],[-32,1],[-49,0],[-17,0],[-17,0],[-58,0],[-72,0],[-33,1],[-42,-1],[-82,1],[-27,0],[-68,-1],[-26,0],[-46,0],[-22,0],[-14,-1],[-7,0],[-14,0],[-22,0],[-31,0],[-24,1],[-17,-1],[-9,0],[-22,-1],[-26,1],[-82,1],[-100,0],[-30,0],[-78,0],[-32,1],[-46,-1],[-97,-1],[-102,0],[-67,0],[-18,0],[-43,-1],[-55,1],[-46,-1],[-40,1],[-63,0],[-21,-1],[-113,0],[-22,0],[-65,0],[-1,0],[-34,1],[-16,0],[-35,-1],[-86,0],[-25,1],[-16,-1],[-21,0],[-35,1],[-83,0],[-41,0],[-89,0],[-158,0],[-39,0],[-57,1],[-31,0],[-50,-1],[-234,0],[-58,1],[-52,0],[-90,0],[-71,-1],[-41,0],[-231,-1],[-4,0],[-15,0],[-48,0],[-230,-2],[-55,0],[-47,-1],[-35,0],[-45,-1],[-102,0],[-74,-1],[-66,-1],[-23,0],[-37,0],[-53,0],[-3,0],[-29,0],[-41,1],[-17,-1],[-21,-1],[-94,2],[-49,0],[-36,0],[-29,1],[-77,1],[-69,1],[-130,2],[-91,1],[-67,0],[-29,0],[-97,1],[-31,1],[-69,0],[-153,1],[-31,0],[-28,0],[-33,0],[-118,1],[-89,0],[-16,0],[-24,0],[-253,1],[-1,0],[-83,0],[-64,0],[-25,0],[-115,2],[-33,0],[-56,0],[-63,0],[-126,2]],[[95446,56750],[4,-11],[16,-28],[9,-7],[14,-6],[21,0],[15,5],[46,29],[8,3],[7,-1],[7,-4],[5,-9],[2,-14],[-2,-10],[-3,-12],[0,-2],[-54,-134],[33,-73],[9,-27],[10,-41],[3,-27],[0,-36],[-2,-26],[-22,-66],[-4,-22],[0,-39],[9,-151],[5,-16],[4,-11],[21,-31],[3,-2],[10,-11],[11,-22],[3,-13],[4,-24],[-4,-223],[-2,-16],[-6,-12],[-3,-6],[-13,-14],[-22,-10],[-18,-11],[-10,-12],[-4,-11],[0,-6],[-1,-24],[13,-31],[32,-64],[32,-54],[5,-14],[2,-5],[0,-3],[4,-28],[0,-44],[2,-17],[2,-15],[2,-6],[7,-18],[6,-8],[5,-5],[8,-2],[12,-1],[29,4],[15,-9],[9,-13],[2,-9],[1,-18],[-1,-9],[-4,-13],[-6,-4],[-18,-3],[-26,5],[-8,0],[-9,-6],[-7,-14],[-3,-9],[0,-15],[16,-156],[42,-46],[13,-3],[1,-1],[46,-22],[7,-4],[6,-6],[3,-16],[15,-86],[20,-18],[10,-27],[10,-23],[12,-11],[13,-5],[74,-17],[29,-67],[1,-2],[1,-2],[20,-40],[-2,-110],[-16,-52],[-3,-15],[-2,-23],[3,-11],[3,-12],[11,-24],[15,-16],[48,-68],[0,-20],[-3,-14],[-5,-16],[-8,-14],[-11,-10],[-17,-3],[-44,11],[-12,-5],[-5,-12],[-1,-14],[4,-14],[6,-9],[9,-10],[34,-31],[15,-12],[28,-9],[7,-9],[11,-20],[3,-8],[2,-19],[-1,-24],[-21,-144],[-6,-30],[-5,-13],[-3,-2],[-3,-118],[-2,-23],[-3,-21],[-3,-13],[-11,-36],[-14,-23],[-41,-54],[-1,-2],[18,-76],[30,-27],[15,-17],[11,-15],[11,-20],[6,-19],[2,-15],[1,-27],[-6,-20],[-13,-18],[-14,-12],[-21,-10],[-31,-2],[-12,2],[-15,13],[-77,66],[-6,-4],[-19,-22],[-12,-19],[-5,-17],[0,-24],[1,-14],[14,-47],[14,-34],[7,-13],[11,-16],[16,-14],[16,-3],[8,0],[14,6],[17,13],[32,34],[20,20],[83,55],[15,5],[10,-3],[7,-9],[2,-8],[0,-17],[-2,-18],[-3,-13],[-10,-19],[-71,-111],[-10,-11],[-12,-4],[-19,-2],[-7,3],[-11,9],[-18,8],[-9,-2],[-9,-7],[-6,-10],[-3,-7],[0,-23],[9,-33],[4,-12],[10,-25],[12,-29],[14,-20],[11,-9],[16,-6],[59,-18],[10,-9],[6,-12],[3,-6],[3,-16],[-2,-22],[-3,-14],[-6,-15],[-49,-93],[-46,-36],[-26,-25],[-5,-6],[-3,-4],[-2,-7],[0,-10],[1,-6],[7,-10],[16,-14],[18,-13],[63,-33],[31,-18],[24,-24],[23,-34],[9,-16],[7,-23],[3,-20],[1,-9],[-1,-25],[-7,-22],[-10,-17],[-8,-6],[-8,-4],[-10,1],[-14,8],[-8,10],[-8,17],[-4,12],[-6,23],[-2,13],[-4,14],[-6,18],[-12,22],[-13,14],[-17,10],[-13,4],[-19,-6],[-47,-20],[-19,-16],[-7,-22],[-1,-25],[2,-12],[6,-14],[13,-24],[13,-18],[13,-8],[8,-3],[6,3],[13,12],[13,11],[14,12],[17,3],[8,-5],[6,-10],[2,-20],[-1,-32],[-7,-19],[-71,-172],[-15,-26],[-8,-8],[-18,-8],[-35,-3],[-20,2],[-20,0],[-15,-3],[-12,-10],[-7,-14],[-4,-10],[-1,-22],[2,-11],[3,-12],[60,-114],[3,-4],[29,-75],[2,-9],[2,-20],[1,-68],[1,-12],[3,-12],[8,-17],[13,-16],[21,-19],[19,-12],[28,-14],[22,-4],[7,0],[12,6],[17,12],[24,18],[27,26],[8,10],[13,13],[15,4],[16,-6],[12,-10],[8,-10],[7,-13],[2,-9],[1,-5],[0,-30],[-3,-18],[-4,-12],[-7,-17],[-6,-12],[-9,-9],[-8,-4],[-16,-3],[-7,2],[-35,32],[-15,6],[-10,2],[-10,-3],[-11,-11],[-6,-11],[-3,-8],[-5,-22],[1,-18],[6,-21],[2,-4],[5,-12],[8,-12],[10,-7],[10,0],[20,6],[34,21],[22,0],[12,-5],[11,-11],[9,-18],[3,-10],[0,-17],[-3,-11],[-16,-28],[-10,-11],[-23,-11],[-15,-5],[-17,-1],[-13,8],[-27,27],[-5,0],[-8,-4],[-8,-20],[-3,-96],[36,-128],[23,-30],[2,-9],[1,-18],[-3,-8],[-7,-14],[-100,-132],[-41,-34],[-17,-10],[-14,0],[-6,7],[-11,6],[-6,1],[-5,-7],[-4,-10],[-2,-17],[-1,-27],[3,-12],[5,-10],[16,-13],[64,-37],[51,-25],[18,-9],[10,-14],[3,-13],[0,-41],[-2,-14],[-7,-21],[-7,-13],[-13,-15],[-16,-9],[-15,-3],[-25,12],[-28,21],[-10,5],[-8,0],[-8,-3],[-8,-11],[-66,-148],[-3,-10],[-2,-9],[0,-19],[2,-13],[7,-18],[6,-9],[5,-4],[16,-1],[11,7],[9,10],[11,18],[13,43],[16,31],[15,21],[11,9],[40,7],[7,-2],[18,-9],[14,-10],[7,-13],[8,-16],[4,-12],[2,-12],[0,-12],[-6,-36],[-9,-26],[-4,-11],[-20,-38],[-21,-31],[-14,-12],[-3,-2],[-30,-1],[-7,-6],[-4,-21],[-3,-29],[2,-19],[3,-40],[3,-37],[4,-41],[3,-15],[3,-17],[16,-56],[3,-12],[4,-10],[16,-28],[18,-22],[15,-24],[3,-12],[3,-14],[-2,-22],[-3,-17],[-4,-12],[-4,-6],[-8,-4],[-35,-28],[-22,-11],[-15,-3],[-10,5],[-8,0],[-14,-15],[-2,-8],[-2,-16],[-1,-24],[2,-7],[10,-19],[7,-5],[12,-4],[16,-1],[39,9],[12,-3],[11,-7],[7,-10],[4,-10],[3,-14],[-1,-15],[-2,-13],[-9,-15],[-8,-7],[-29,-8],[-10,-7],[-5,-8],[-2,-7],[-4,-175],[0,-26],[13,-76],[6,-21],[25,-66],[4,-23],[1,-15],[-3,-13],[-2,-10],[-5,-10],[-7,-10],[-12,-8],[-34,0],[-7,-3],[-15,-12],[-7,-23],[-1,-14],[2,-15],[4,-9],[19,-30],[10,-8],[19,-12],[47,-16],[16,-11],[8,-10],[6,-12],[1,-10],[-1,-14],[-5,-10],[-3,-2],[-8,-2],[-5,4],[-19,22],[-8,6],[-8,2],[-9,-7],[-38,-66],[-21,-23],[-26,-22],[-5,-27],[-1,-13],[3,-10],[7,-13],[7,-8],[9,-3],[11,-1],[5,1],[24,17],[16,6],[13,-3],[16,-5],[9,-8],[10,-16],[4,-7],[3,-10],[0,-13],[-5,-20],[-3,-10],[-5,-8],[-15,-12],[-78,-49],[-114,-73],[-9,-17],[-3,-9],[-1,-16],[8,-11],[7,-7],[9,-3],[10,0],[14,7],[6,7],[12,11],[8,2],[6,-2],[62,-37],[3,-5],[1,-4],[-2,-16],[-11,-42],[-2,-19],[1,-16],[2,-12],[11,-28],[26,-73],[5,-13],[8,-16],[7,-9],[22,-18],[14,0],[56,21],[30,20],[17,14],[21,20],[15,8],[20,1],[7,-3],[7,-15],[1,-22],[-9,-22],[-35,-40],[-26,-29],[-15,-12],[-21,-5],[-20,-7],[-10,-6],[-10,-23],[1,-17],[0,-5],[8,-18],[15,-18],[18,-14],[46,-20],[12,-10],[69,-107],[7,-13],[2,-8],[-1,-16],[-3,-13],[-5,-9],[-12,-16],[-25,-26],[-13,-12],[-34,-12],[-20,-15],[-6,-8],[-3,-10],[-3,-17],[0,-19],[3,-15],[13,-17],[18,-19],[20,-8],[14,0],[8,3],[9,10],[11,16],[9,6],[7,-4],[5,-12],[6,-14],[18,-58],[6,-23],[1,-12],[2,-21],[-8,-202],[-1,-14],[-1,-9],[-4,-10],[-7,-15],[-10,-10],[-16,-8],[-19,-2],[-15,6],[-11,12],[-21,36],[-12,9],[-8,3],[-5,0],[-9,-3],[-8,-6],[-10,-16],[-3,-13],[-1,-14],[3,-12],[5,-15],[7,-11],[13,-15],[15,-12],[29,-30],[9,-17],[7,-16],[2,-8],[-1,-17],[-2,-15],[-3,-8],[-10,-17],[-8,-10],[-21,-6],[-19,-1],[-48,10],[-11,0],[-11,-6],[-13,-12],[-4,-13],[-1,-18],[2,-9],[2,-8],[6,-11],[63,-63],[6,-3],[30,-9],[12,4],[13,13],[8,11],[13,27],[17,29],[18,20],[21,7],[4,-2],[12,-9],[9,-15],[2,-9],[1,-15],[-4,-26],[-7,-18],[-5,-9],[-63,-72],[-16,-12],[-13,-2],[-37,17],[-11,9],[-17,20],[-11,5],[-25,7],[-14,-1],[-38,-18],[-11,-7],[-8,-13],[-7,-19],[0,-7],[1,-21],[2,-7],[8,-15],[5,-5],[12,-8],[20,1],[21,9],[27,4],[8,-5],[8,-9],[11,-21],[11,-24],[1,-10],[3,-13],[1,-22],[-2,-10],[-5,-14],[-13,-25],[-21,-29],[-6,-10],[-7,-16],[-3,-11],[-1,-38],[2,-11],[3,-8],[5,-12],[12,-18],[17,-13],[17,-9],[54,4],[80,-8],[16,-47],[-34,8],[-42,10],[-21,-84],[-21,-83],[-5,1],[-16,-58],[1,-15],[2,-25],[5,-20],[5,-9],[8,-12],[10,-12],[11,-9],[12,-14],[8,-16],[6,-29],[2,-17],[6,-38],[5,-13],[9,-16],[21,-16],[14,-2],[8,4],[31,10],[8,-2],[12,-5],[18,-16],[10,-15],[7,-16],[3,-10],[0,-27],[-2,-8],[-13,-50],[-25,-90],[-5,-11],[-9,-20],[-9,-13],[-8,-6],[-29,-3],[-26,6],[-23,1],[-20,-8],[-12,-10],[-10,-19],[-6,-14],[-5,-15],[-3,-15],[-3,-22],[1,-27],[10,-26],[10,-15],[11,-8],[14,-3],[20,-1],[10,6],[11,11],[14,24],[10,28],[6,16],[3,18],[11,20],[7,11],[14,10],[10,0],[18,-9],[18,-15],[12,-15],[11,-22],[6,-13],[2,-15],[2,-19],[-1,-19],[-3,-12],[-8,-14],[-5,-6],[-18,-11],[-38,-2],[-6,-1],[-13,-7],[-11,-13],[-3,-6],[-5,-15],[-1,-21],[2,-14],[21,-51],[6,-16],[2,-9],[1,-10],[1,-19],[-4,-19],[-4,-14],[-5,-9],[-14,-12],[-66,-2],[-17,-8],[-11,-9],[-28,-27],[-7,-12],[-5,-15],[0,-22],[2,-7],[7,-16],[13,-10],[17,-9],[13,-11],[7,-15],[2,-9],[1,-15],[-23,-81],[-1,-10],[3,-23],[8,-13],[9,-4],[10,-1],[15,10],[6,12],[2,6],[9,32],[5,13],[9,12],[9,6],[10,0],[8,-6],[9,-13],[59,-134],[7,-30],[-1,-13],[-3,-9],[-154,-337],[-9,-29],[-10,-38],[-2,-9],[0,-60],[1,-21],[42,-351],[8,-53],[2,-21],[0,-27],[-2,-21],[-2,-18],[-3,-12],[-6,-14],[-15,-14],[-52,-26],[-6,-5],[-7,-15],[-6,-25],[1,-24],[6,-26],[4,-12],[6,-13],[12,-15],[10,-7],[9,-2],[14,-1],[10,3],[38,17],[17,5],[9,-1],[12,-7],[6,-5],[11,-20],[5,-19],[3,-11],[-1,-21],[-5,-25],[-6,-16],[-8,-12],[-9,-11],[-14,-8],[-20,-1],[-14,2],[-26,22],[-18,7],[-6,-1],[-11,-5],[-9,-12],[-7,-11],[-7,-18],[-7,-27],[-4,-24],[0,-35],[12,-21],[61,58],[17,8],[47,13],[10,-6],[6,-9],[4,-11],[3,-31],[0,-29],[-2,-22],[-4,-15],[-4,-12],[-8,-17],[-5,-4],[-18,-1],[-38,22],[-33,6],[-10,-5],[-6,-12],[-2,-8],[-1,-14],[1,-11],[7,-8],[4,-3],[9,0],[24,5],[17,2],[16,-9],[7,-13],[3,-14],[1,-20],[-4,-18],[-6,-15],[-20,-26],[-17,-15],[-9,-9],[-15,-35],[-3,-12],[0,-29],[0,-11],[2,-13],[2,-5],[8,-16],[6,-3],[13,-1],[13,11],[5,9],[4,10],[4,15],[1,36],[2,9],[5,12],[3,6],[8,9],[12,4],[2,-2],[5,-6],[61,-166],[3,-15],[1,-16],[-2,-13],[-4,-9],[-10,-17],[-12,-12],[-11,-8],[-22,-9],[-22,-12],[-23,-19],[-24,-26],[-17,-31],[-6,-23],[-4,-14],[-1,-32],[2,-10],[5,-10],[7,-7],[12,-7],[13,-2],[7,7],[4,9],[2,10],[4,33],[3,18],[5,13],[5,12],[10,12],[11,4],[9,-3],[5,-7],[59,-147]],[[74064,45391],[-24,0],[-84,0],[-15,0],[-18,0],[-24,0],[-53,0],[-57,0],[-26,0],[-55,0],[-69,1],[-65,-1],[-49,0],[-37,0],[-25,0],[-26,0],[-21,0],[-27,1],[-34,0],[-67,-5],[-4,1],[-11,4],[-22,-1],[-41,0],[-31,0],[-71,0],[-41,0],[-22,0],[-36,0],[-24,0],[-29,0],[-19,0],[-21,0],[-16,0],[-30,0],[-30,-1],[-57,1],[-19,0],[-27,0],[-54,1],[-16,-1],[-30,0],[-29,0],[-39,0],[-20,-1],[-37,1],[-37,0],[-21,0],[-32,0],[-19,1],[-30,0],[-21,0],[-30,0],[-39,0],[-22,0],[-22,0],[-24,0],[-18,0],[-53,0],[-36,1],[-16,0],[-16,-1],[-16,0],[-18,0],[-18,-1],[-18,1],[-60,0],[-19,2],[-18,0],[-18,-1],[-16,-1],[-18,0],[-33,0],[-16,1],[-20,0],[-23,0],[-33,1],[-46,0],[-33,-1],[-77,0],[-38,1],[-38,0],[-121,0],[-72,0],[-38,0],[-49,1],[-14,-1],[-24,0],[-43,0],[-39,0],[-25,0],[-51,0],[-25,0],[-25,0],[-27,0],[-15,0],[-15,0],[-15,0],[-15,0],[-22,0],[-44,1],[-15,-1],[-15,0],[-22,1],[-52,0],[-16,0],[-15,0],[-45,0],[-30,0],[-30,0],[-22,0],[-25,0],[-16,0],[-16,0],[-16,0],[-47,0],[-16,0],[-15,0],[-41,0],[-17,0],[-21,0],[-48,0],[-15,0],[-15,0],[-14,0],[-16,0],[-16,0],[-16,0],[-32,0],[-27,0],[-5,0],[-28,0],[-14,0],[-31,0],[-16,0],[-15,0],[-13,-3],[-2,-1],[-2,1],[-21,7],[-27,3],[-55,0],[-27,-1],[-28,1],[-27,0],[-28,0],[-27,-1],[-57,1],[-26,0],[-17,0],[-16,0],[-22,0],[-113,1],[-23,-2],[-31,-2],[-7,0],[-20,-2],[-22,0],[-58,-1],[-35,0],[-19,1],[-27,-1],[-54,1],[-27,0],[-62,0],[-20,1],[-11,0],[-61,-1],[-24,1],[-31,-1],[-41,1],[-41,-1],[-19,1],[-37,0],[-22,0],[-46,0],[-55,0],[-14,0],[-19,0],[-25,0],[-92,1],[-23,-1],[-20,0],[-120,1],[-40,-1],[-68,1],[-24,-1],[-25,0],[-118,1],[-44,0],[-24,0],[-24,-1],[-50,1],[-18,0],[-23,0],[-68,0],[-31,0],[-42,0],[-17,1],[-30,0],[-1,0],[-35,-1],[-22,-1],[-44,1],[-43,1],[-44,-1],[-48,0],[-18,1],[-21,0],[-20,-1],[-26,0],[-16,0],[-20,0],[-9,0],[-12,1],[-26,0],[-34,-1],[-16,0],[-40,1],[-27,0],[-46,-1],[-11,0],[-19,0],[-19,0],[-19,0],[-19,1],[-18,-1],[-37,0],[-18,0],[-35,0],[-28,1],[-4,0],[-16,0],[-26,-1],[-53,1],[-157,0],[-59,0],[-31,0],[-38,0],[-22,0],[-46,0],[-68,0],[-63,0],[-35,0],[-48,0],[-21,0],[-41,0],[-21,0],[-21,0],[-20,0],[-20,0],[-40,1],[-20,-1],[-61,1],[-20,0],[-33,0],[-21,0],[-21,0],[-29,0],[-27,0],[-14,0],[-19,0],[-37,0],[-22,0],[-21,0],[-39,0],[-20,0],[-20,0],[-20,0],[-20,0],[-18,0],[-13,0],[-2,0],[-18,0],[-32,0],[-20,0],[-18,0],[-18,0],[-17,0],[-20,0],[-13,0],[-47,0],[-24,1],[-24,-1],[-25,0],[-64,1],[-20,0],[-18,0],[-28,0],[-46,0],[-15,0],[-15,0],[-84,0],[-22,0],[-14,0],[-58,0],[-18,0],[-50,-1],[-28,1],[-15,-1],[-16,0],[-27,1],[-37,0],[-16,-1],[-29,1],[-29,-1],[-40,0],[-17,0],[-22,0],[-16,1],[-15,0],[-19,1],[-24,-2],[-17,0],[-32,4],[-22,2],[-132,-8],[-94,3],[-123,1],[-24,0],[-27,0],[-18,-1],[-15,0],[-38,5],[-24,3],[-50,0],[-68,1],[-31,1]],[[37266,43401],[0,-1],[0,-60],[0,-35],[-1,-25],[0,-37],[-1,-33],[-4,-283],[-2,-124],[0,-2],[-1,-37],[-1,-89],[-1,-63],[-87,-1],[-128,1],[-33,0],[-6,0],[-25,0],[-31,0],[-21,0],[-52,0],[-12,1],[-1,0],[-15,0],[-14,3],[-14,0],[-101,-2],[-9,0],[-51,0],[-51,1],[-139,1],[-66,0],[-62,1],[-98,0],[-96,1],[-24,0],[-17,1],[-66,0],[-34,0],[-15,0],[-32,0],[-40,1],[-21,0],[-207,-1],[-41,-2],[-29,2],[-14,0],[-47,0],[-56,0],[-73,-1],[-14,0],[-15,0],[-28,0],[-21,0],[-22,0],[-22,0],[-21,0],[-19,0],[-16,0],[-43,0],[-37,-1],[-34,0],[-16,1],[-18,0],[-16,0],[-29,0],[-19,0],[-22,0],[-12,-1],[-2,0],[-19,0],[-26,0],[-21,0],[-22,0],[-34,0],[-6,0],[-19,-1],[-30,-1],[-30,1],[-16,1],[-39,-1],[-20,-1],[-19,0],[-14,-1],[-31,1],[-15,1],[-20,-1],[-34,1],[-32,0],[-22,0],[-19,2],[-14,0],[-16,0],[-16,0],[-19,-1],[-26,-2],[-20,0],[-21,0],[-20,0],[-30,0],[-25,0],[-21,0],[-22,-1],[-24,1],[-15,-1],[-16,0],[-25,0],[-21,1],[-21,0],[-45,-1],[-41,0],[-44,-1],[-23,0],[-33,1],[-81,0],[-17,-1],[-21,0],[-17,0],[-35,-1],[-31,0],[-43,1],[-45,0],[-45,0],[-30,0],[-24,0],[-39,-1],[-24,0],[-19,1],[-18,0],[-25,0],[-14,-1],[-26,0],[-14,1],[-23,0],[-26,0],[-29,0],[-18,0],[-21,0],[-22,0],[-29,0],[-27,-1],[-22,0],[-53,0],[-36,0],[-55,1],[-46,0],[-27,-1],[-20,0],[-35,0],[-49,-1],[-33,0],[-35,1],[-14,0],[-35,-5],[-2,1],[-16,2],[-28,1],[-18,0],[-41,1],[-32,0],[-59,-1],[-50,0],[-24,0],[-56,0],[-47,0],[-39,0],[-65,-1],[-23,0],[-45,0],[-45,0],[-96,0],[-66,1],[-75,0],[-45,0],[-38,1],[-31,-1],[-22,0],[-43,2],[-15,0],[-20,-1],[-35,1],[-23,-1],[-21,0],[-16,1],[-19,0],[-81,6],[-14,-1],[-4,-1],[-18,-4],[-40,-1],[-80,0],[-140,0],[-14,12],[-20,0],[-36,0],[-21,0],[-26,0],[-25,3],[-184,-15],[-191,0],[-186,-5],[-4,-259],[0,-149],[0,-332],[0,-35],[0,-70],[0,-47],[0,-51],[-1,-63],[3,-165],[1,-211],[1,-199],[-1,-81],[1,-57],[-1,-60],[0,-50],[0,-49],[0,-47],[0,-50],[0,-51],[0,-34],[0,-98],[0,-45],[0,-48],[0,-54],[0,-47],[0,-44],[0,-52],[-1,-43],[1,-39],[-1,-51],[1,-84],[0,-111],[0,-9],[0,-50],[1,-65],[0,-23],[0,-26],[-1,-39],[0,-84],[0,-41],[0,-12],[0,-26],[0,-88],[-1,-64],[-2,-247],[0,-68],[0,-173],[-1,-181],[0,-124],[0,-138],[1,-78],[0,-181],[3,-238],[-1,-55],[0,-38],[1,-84],[1,-35],[0,-43],[0,-55],[0,-43],[0,-33],[0,-16],[-1,-29],[1,-42],[2,-35],[0,-46],[0,-1],[-1,-85],[-1,-90],[0,-17],[1,-36],[-1,-70],[-1,-92],[-1,-38],[1,-56],[0,-57],[0,-96],[0,-39],[1,-54],[-1,-47],[1,-56],[0,-36],[0,-45],[0,-59],[-1,-48],[1,-35],[0,-47],[0,-51],[0,-41],[0,-72],[0,-51],[-1,-37],[0,-66],[1,-91],[0,-41],[0,-65],[-1,-132],[0,-41],[0,-33],[1,-38],[-2,-33],[1,-45],[0,-41],[1,-44],[0,-46],[0,-43],[0,-38],[0,-66],[0,-49],[0,-46],[0,-47],[0,-109],[0,-58],[0,-54],[0,-46],[0,-56],[0,-41],[0,-58],[0,-53],[0,-36],[0,-30],[0,-79],[0,-37],[0,-41],[0,-52],[0,-36],[0,-46]],[[30497,34129],[-48,0],[-20,0],[-24,0],[-49,0],[-49,0],[-51,0],[-53,0],[-46,0],[-30,0],[-10,0],[-26,0],[-33,0],[-27,1],[-23,-1],[-31,1],[-44,0],[-23,0],[-30,-1],[-24,1],[-50,0],[-54,1],[-44,0],[-57,-1],[-28,0],[-50,0],[-62,1],[-50,1],[-89,-1],[-154,1],[-135,1],[-67,1],[-124,0],[-30,-5],[-53,1],[-73,0],[-37,1],[-32,-1],[-15,0],[-25,0],[-27,0],[-19,2],[-114,3],[-16,0],[-40,0],[-17,0],[-18,0],[-97,1],[-79,0],[-146,0],[-133,1],[-17,0],[-53,0],[-81,0],[-72,0],[-43,1],[-50,0],[-137,0],[-115,-9],[-11,-1],[-15,0],[-98,1],[-6,0],[-153,1],[-87,0],[-29,1],[-14,0],[-77,1],[-162,1],[-121,-1],[-170,-1],[-91,-3],[-17,0],[-73,1],[-101,0],[-20,0],[-20,0],[-13,0],[-14,-9]],[[26061,34120],[-23,4],[-159,-2],[-199,-2],[-29,0],[-157,-3],[-28,6],[-18,9],[-15,1],[-13,15],[0,80],[1,175],[0,60],[0,50],[0,48],[0,70],[0,62],[1,195],[0,93],[0,39],[0,56]],[[13576,34106],[-42,-1],[-81,0],[-98,-1],[-49,0],[-25,0],[-24,0],[-26,0],[-25,0],[-34,0],[-26,0],[-72,0],[-26,0],[-38,1],[-19,0],[-16,0],[-27,0],[-22,0],[-43,-1],[-23,0],[-66,1],[-50,-1],[-17,1],[-53,-1],[-25,0],[-47,0],[-59,0],[-42,-1],[-18,0],[-13,0],[-26,1],[-27,0],[-87,-1],[-51,0],[-25,0],[-41,0],[-31,0],[-34,-1],[-20,1],[-24,0],[-17,-1],[-40,0],[-52,0],[-50,0],[-31,0],[-40,0],[-115,0],[-125,-2],[-38,0],[-38,0],[-49,0],[-21,0],[-16,1],[-3,0],[-13,0],[-32,-1],[-41,0],[-39,0],[-23,0],[-21,-1],[-20,1],[-17,-1],[-14,0],[-49,-2],[-42,0],[-35,0],[-64,0],[-18,-1],[-24,0],[-36,0],[-16,0],[-37,-13],[1,-104],[0,-234],[0,-107],[0,-115],[0,-88],[-1,-200],[0,-171],[-3,-472],[0,-37],[0,-157],[0,-15],[-1,-133],[-1,-178],[-1,-291],[2,-137],[0,-100],[-5,-145],[0,-12],[-1,-168],[1,-51],[0,-35],[0,-40],[1,-96],[3,-301],[0,-63],[-1,-38],[1,-42],[0,-38],[1,-41],[0,-40],[0,-67],[0,-64],[0,-45],[0,-35],[0,-52],[0,-42],[0,-35],[0,-38],[0,-136],[0,-42],[0,-50],[0,-34],[0,-35],[1,-44],[0,-67],[0,-46],[0,-52],[0,-39],[1,-39],[1,-44],[0,-28],[1,-70],[0,-44],[-1,-180],[-2,-269],[0,-49],[0,-51],[0,-45],[0,-46],[0,-38],[0,-35],[0,-129],[0,-104],[-1,-97],[1,-144],[1,-189],[0,-49],[0,-162],[0,-44],[-1,-45],[0,-55],[0,-72],[0,-39],[0,-56],[1,-98],[0,-59],[0,-43],[-1,-74],[0,-52],[-1,-58],[0,-70],[-2,-34],[1,-49],[0,-36],[1,-35],[0,-42],[0,-40],[0,-47],[0,-34],[0,-42],[0,-49],[0,-41],[1,-47],[0,-196],[0,-99],[0,-171],[-3,-129],[0,-555],[1,-51],[0,-35],[0,-41],[0,-41],[0,-35],[0,-42],[0,-34],[0,-124],[0,-125],[0,-238],[0,-40],[0,-72],[0,-44],[-1,-45],[-1,-130],[0,-121],[0,-137],[0,-321],[0,-251],[-1,-228],[1,-244],[-1,-95],[0,-39],[0,-47],[1,-44]],[[10921,22664],[-16,2],[-75,-3],[-31,-1],[-130,0],[-35,0],[-72,3],[-82,0],[-21,4],[-21,-1],[-314,-4],[-123,-1],[-97,-1],[-203,0],[-315,-6],[-10,0],[-15,-3],[-22,5],[-130,1],[-158,1],[-50,-4],[-92,1],[-110,0],[-5,1],[-42,0],[-63,0],[-14,-1],[-19,0],[-65,1],[-3,0],[-130,0],[-28,0],[-173,1],[-26,0],[-234,1],[-40,0],[-59,-2],[-40,0],[-20,2],[-82,0],[-66,1],[-2,0],[-12,0],[-46,0],[-69,0],[-228,3],[-23,0],[-40,-1],[-81,-1],[-89,2],[-121,0],[-54,0],[-256,-1],[-1,0],[-121,-2],[-1,0],[-94,0],[-47,-1],[-243,-1],[-32,0],[-83,0],[-120,1],[-45,2]],[[5882,22662],[0,88],[0,419],[-1,41],[2,35],[-2,42],[-1,73],[0,40],[0,135],[0,111],[1,150],[0,124],[1,764],[-1,379],[0,12],[0,53],[-1,106],[2,36],[-1,39],[-1,74],[-1,43],[0,36],[-1,43],[-2,45],[0,207],[1,300],[0,56],[-1,222],[0,108],[0,131],[0,41],[0,76],[0,80],[1,140],[0,137],[0,49],[0,62],[0,221],[0,34],[0,95],[0,224],[0,222],[0,239],[0,117],[0,42],[0,5],[0,37],[0,9],[0,79],[0,4],[-1,61],[-1,85],[-1,35],[0,79],[1,284],[0,129],[0,132],[1,318],[0,137],[0,329],[1,147],[0,119],[0,74],[0,209],[-3,36],[1,130],[0,189],[0,304],[0,86],[0,382],[0,87],[1,135],[0,37],[0,183],[0,88],[0,72],[0,281],[0,179],[0,3],[0,114],[1,614],[0,49],[0,176],[0,3],[0,60],[0,250],[-30,0],[-145,2],[-41,0],[-237,-2],[-124,-1],[-189,-3],[0,234],[0,39],[-1,140],[0,243],[-4,35],[0,43],[-2,42],[7,598],[0,188],[0,41],[0,398],[0,235],[0,47],[0,96],[0,103],[0,87],[0,63],[0,63],[0,33],[0,496],[0,36],[0,343],[0,181],[0,328],[0,70],[0,59],[0,168],[0,68],[1,261],[0,218],[0,16],[0,175],[-1,197],[0,126],[0,322],[0,97],[0,111],[0,174],[0,178],[-1,190],[0,68],[0,299],[0,65],[0,218],[1,362],[0,131],[-1,230],[0,168],[0,44],[0,181],[0,224],[0,87],[2,196],[0,41],[-1,60],[-1,120],[-1,72],[-2,158],[-1,141],[-2,163],[0,148],[-1,77],[0,104],[0,114],[1,81],[2,183],[2,238],[1,133],[0,37],[1,113],[0,44],[1,85],[0,66],[0,44],[2,213],[2,153]],[[5882,22662],[-62,-2],[-155,0],[-79,2],[-23,3],[-130,-4],[-169,-1],[-14,0],[-321,-1],[-137,0],[-54,0],[-2,0],[-12,0],[-17,0],[-28,0],[-359,1],[-3,0],[-107,-2],[-19,1],[-68,-1],[-72,0],[-54,0],[-55,0],[-76,-1],[-95,-1],[-93,-1],[-200,-7],[-15,-4],[-17,5],[-46,2],[-75,3],[0,-38],[0,-33],[0,-49],[0,-57],[0,-35],[-1,-183],[0,-99],[0,-44],[1,-330],[0,-129],[-1,-253],[0,-159],[0,-443],[0,-110],[0,-230],[0,-80],[0,-9],[0,-40],[1,-49],[-1,-52],[1,-324],[0,-4],[-1,-146],[-160,-1],[-7,0],[-55,0],[-339,2],[-118,1],[-160,0],[-70,1],[-97,0],[-223,0],[-375,0],[-306,0],[-135,-1],[-127,1],[-212,0],[-66,0],[-66,0],[-18,0],[-3,0],[-137,1],[-37,-1],[-15,0],[-26,0],[-15,1],[-15,-1],[-17,1],[-32,-1],[-30,1],[-18,0],[-22,0],[-18,1],[-13,-1],[-14,0],[-27,0],[-17,0],[-14,0],[-15,0],[-144,1],[-95,0]],[[66,19763],[-1,593],[0,244],[0,159],[0,236],[0,115],[0,47],[0,202],[-1,660],[0,83],[0,101],[0,295],[0,45],[0,2],[0,105],[-1,288],[1,104],[-1,514],[-1,360],[0,306],[0,65],[-1,202],[0,60],[0,143],[0,231],[0,63],[0,80],[-3,166],[0,97],[0,39],[-1,39],[5,234],[-4,52],[-6,40],[7,33],[1,49],[0,66],[0,44],[0,38],[0,62],[-1,98],[0,152],[0,62],[1,84],[0,57],[0,106],[0,42],[0,40],[-1,63],[0,49],[0,47],[1,74],[0,89],[0,73],[0,75],[-1,77],[0,85],[0,58],[-1,52],[0,57],[0,61],[0,65],[0,53],[1,54],[-1,77],[0,81],[0,226],[-1,105],[1,35],[-2,33],[0,42],[0,38],[-1,72],[1,65],[-1,69],[0,33],[0,34],[0,49],[0,55],[0,35],[0,34],[-1,53],[2,39],[0,43],[-2,304],[2,42],[-2,42],[-4,33],[4,45],[1,13],[0,33],[-2,47],[0,194],[1,38],[0,57],[0,93],[0,69],[0,49],[1,196],[0,39],[0,436],[2,45],[-1,61],[2,269],[-1,85],[-2,49],[2,33],[-1,108],[0,96],[0,182],[0,37],[-1,82],[0,77],[1,78],[-1,68],[1,67],[0,33],[0,43],[1,73],[-1,384],[0,30],[1,43],[0,21],[0,20],[0,70],[0,123],[0,89],[1,49],[-1,64],[0,45],[0,67],[0,33],[0,36],[0,132],[0,69],[0,51],[0,46],[1,56],[0,109],[0,34],[1,70],[0,146],[0,42],[0,33],[0,47],[0,40],[0,62],[1,46],[0,52],[0,50],[0,44],[-1,35],[1,41],[1,39],[0,93],[0,49],[0,41],[1,35],[0,38],[-1,33],[1,61],[0,93],[1,55],[0,75],[0,74],[1,58],[1,74],[0,58],[0,77],[2,36],[-2,58],[0,37],[1,49],[0,35],[0,51],[1,84],[0,73],[0,40],[0,41],[1,63],[-1,69],[0,55],[-1,31],[-1,76],[0,45],[0,52],[1,57],[1,39],[3,33],[-3,46],[1,42],[0,42],[-1,117],[0,156],[0,33],[-4,88],[1,102],[4,287],[-1,36],[0,44],[0,43],[0,45],[0,97],[1,74],[0,87],[1,42],[0,45],[-2,412],[0,108],[0,92],[0,12],[-1,178],[0,57],[2,86],[2,58],[0,75],[0,8],[-2,384],[0,80],[0,79],[0,107],[0,41],[0,3],[0,62],[0,5],[1,51],[-1,31],[-2,75],[0,182],[-1,150],[-1,313],[0,54],[0,34],[-1,286],[0,50],[0,123],[-1,127],[0,99],[0,81],[-1,162],[-1,51],[1,52],[-1,173],[1,20],[1,298],[0,379],[0,48],[1,160],[0,153],[0,89],[1,144],[0,56],[0,45],[4,201],[0,50],[3,52],[0,63],[-3,42],[-2,35],[0,12],[-1,72],[1,97],[-1,197],[0,179],[-1,201],[0,146],[0,70],[0,49],[0,244],[-1,232],[-1,420]],[[60968,45406],[-2,-443],[0,-214],[0,-87],[1,-189],[-1,-239],[-3,-245],[1,-36],[2,-45],[-2,-62],[-2,-87],[0,-47],[1,-172],[0,-50],[1,-72],[0,-63],[0,-72],[-1,-135],[1,-81],[-4,-173],[8,-238],[0,-51],[-1,-309],[-1,-170],[0,-81],[-1,-92],[0,-153],[0,-89],[0,-45],[-1,-66],[1,-48],[-1,-119],[0,-50],[0,-44],[13,-27],[-11,-34],[-2,-58],[0,-36],[0,-35],[1,-68],[5,-81],[-1,-281],[-4,-485],[-1,-142],[0,-85],[-1,-242],[-1,-54],[0,-19],[0,-28],[0,-41],[1,-43],[1,-115],[1,-72],[-3,-44],[0,-53],[-1,-29],[0,-76],[0,-74],[0,-50],[0,-51],[0,-76],[0,-72],[1,-68],[-1,-37],[0,-61],[0,-46],[0,-58],[0,-57],[0,-56],[0,-78],[0,-67],[-1,-65],[0,-163],[0,-67],[0,-80],[0,-49],[0,-42],[0,-56],[0,-48],[0,-33],[0,-63],[-1,-37],[0,-48],[0,-82],[0,-72],[0,-41],[1,-121],[0,-90],[0,-100],[0,-60],[0,-43],[0,-48],[1,-54],[0,-56],[-1,-86],[4,-347],[0,-52],[0,-48],[1,-305],[-3,-501],[1,-68],[1,-80],[0,-102],[-2,-410],[5,-257],[-4,-457],[463,6],[1,-387],[1,-308],[-1,-52],[-1,-59],[-1,-284],[0,-56],[-2,-334],[0,-100],[-4,-546],[-1,-57],[-1,-216],[-3,-412],[0,-64],[-1,-51],[0,-57],[-1,-133],[0,-53],[-2,-233],[0,-12],[0,-41],[1,-33],[0,-37],[0,-4],[1,-221],[0,-88],[4,-38],[-1,-34],[0,-63],[-1,-67],[0,-65],[-1,-163],[0,-50],[0,-48],[0,-65],[0,-45],[-1,-37],[2,-59],[0,-38],[0,-62],[-3,-217],[2,-129],[0,-126],[-6,-334],[1,-228],[2,-237],[0,-69],[0,-92],[0,-97],[-3,-925],[-1,-406],[-6,-81],[-3,-467],[2,-407],[-1,-39],[0,-41],[-1,-60],[0,-83],[0,-52],[0,-66],[-1,-65],[0,-64],[0,-71],[-1,-125],[-1,-65],[-1,-65],[0,-132],[-1,-85],[0,-68],[-1,-85],[0,-45],[0,-35],[2,-63],[-1,-69],[-1,-63],[-1,-45],[-1,-242],[-1,-114],[-2,-38],[1,-80],[0,-53],[0,-65],[-1,-66],[0,-106],[-1,-92],[0,-90],[-1,-102],[0,-66],[0,-64],[-1,-152],[0,-42],[-1,-45]],[[61382,22725],[-32,-3],[-28,0],[-16,0],[-31,0],[-18,0],[-16,0],[-21,1],[-18,0],[-38,0],[-22,0],[-41,0],[-75,1],[-40,0],[-38,0],[-34,1],[-46,0],[-19,0],[-19,0],[-16,1],[-36,0],[-29,0],[-78,0],[-24,0],[-36,0],[-14,0],[-54,0],[-13,-2],[-81,-6],[-37,4],[-66,6],[-23,-1],[-16,1],[-46,0],[-27,0],[-33,0],[-15,1],[-26,0],[-34,0],[-40,1],[-36,0],[-12,0],[-49,1],[-16,0],[-36,0],[-31,1],[-33,1],[-164,0],[-62,0],[-6,0],[-6,0],[-178,0],[-19,0],[-16,1],[-14,0],[-31,-1],[-18,0],[-38,0],[-15,8],[-117,-2],[-151,0],[-41,1],[-59,1],[-92,5],[-251,14],[-22,-2],[-37,-1],[-523,-8],[-423,5],[-223,-9],[-43,3],[-19,0],[-19,0],[-62,0],[-60,2],[-6,0],[-30,0],[-19,0],[-26,0],[-32,0],[-58,0],[-23,-3],[-20,-5],[-14,8],[-13,1],[-33,-1],[-20,0],[-33,0],[-142,3],[-15,0],[-103,2],[-40,-2],[-175,-4],[-33,0],[-23,1],[-101,6],[-42,-1],[-157,-2],[-29,4],[-41,0],[-32,1],[-22,0],[-27,1],[-39,0],[-53,1],[-36,0],[-99,1],[-22,0],[-66,1],[-16,0],[-20,0],[-36,0],[-19,-1],[-269,2],[-15,1]],[[55165,22764],[-16,0],[-35,1],[-16,0],[-15,-1],[-24,1],[-24,1],[-15,1],[-25,0],[-14,1],[-30,-1],[-19,1],[-246,-1],[-31,0],[-327,-4],[-141,5],[-110,5],[-39,-1],[-217,2],[-56,0],[-252,1],[-38,1],[-56,0],[-19,0],[-18,1],[-47,0],[-75,1],[-23,0],[-22,0],[-21,0],[-60,-1],[-74,1],[-59,1],[-26,-1],[-19,1]],[[52956,22779],[1,88],[0,44],[0,95],[1,43],[1,127],[0,65],[1,47],[0,40],[1,65],[0,66],[1,65],[1,128],[0,65],[1,158],[4,340],[2,265],[0,63],[3,131],[-4,35],[1,47],[1,87],[3,478],[0,50],[1,181],[1,67],[0,48],[1,141],[1,218],[4,278],[0,49],[2,56],[1,37],[-1,47],[0,43],[0,94],[0,64],[1,33],[1,36],[0,35],[0,47],[0,66],[1,55],[1,45],[0,51],[0,45],[1,82],[1,78],[1,38],[-1,37],[2,49],[-1,54],[1,54],[1,41],[1,201],[1,139],[1,64],[0,88],[4,418],[0,50],[0,64],[0,46],[1,79],[0,40],[2,44],[0,147],[2,220],[0,114],[0,65],[1,65],[1,204],[1,110],[0,45],[1,82],[0,42],[0,113],[1,125],[0,74],[1,139],[0,1],[1,41],[1,47],[0,107],[0,54],[1,95],[1,8],[1,38],[0,111],[0,39],[-1,17],[1,78],[1,136],[0,68],[0,44],[1,50],[0,51],[0,56],[1,87],[-1,39],[0,37],[1,36],[0,43],[1,48],[1,103],[0,50],[1,51],[0,41],[0,94],[2,97],[-1,48],[1,80],[0,69],[0,46],[1,68],[1,99],[0,112],[1,97],[0,65],[1,113],[1,115],[1,179],[0,111],[1,115],[1,81],[2,366],[0,284],[-92,6],[-125,1],[-63,0],[-129,0],[-115,0],[0,248],[1,350],[-8,204],[1,46],[1,81],[-3,162],[1,279],[0,50],[0,82],[1,91],[7,68],[1,172],[0,59],[0,35],[0,49],[0,64],[0,184],[0,66],[0,76],[0,121],[0,113],[0,39],[0,38],[0,130],[0,34],[1,216],[0,77],[1,180],[0,81],[0,65],[0,37],[0,91],[1,133],[0,64],[0,198],[0,42],[0,88],[1,144],[0,36],[0,47],[0,127],[1,194],[0,70],[1,78],[0,149],[0,98],[0,98],[0,44],[0,4],[0,50],[1,97],[1,195],[0,138],[0,58],[0,65],[0,229],[0,98],[0,46],[0,51],[0,196],[1,97],[-1,96],[0,42],[-5,167],[-1,48],[1,47],[0,126],[3,590],[2,400],[1,123],[0,128],[2,222],[0,242],[3,465],[1,37],[-1,111],[1,55],[0,42],[0,34],[0,45],[1,373],[0,57],[0,44],[-1,152],[-1,231],[0,102],[4,118],[0,98],[0,45],[0,114],[0,142],[1,64],[0,63],[0,61],[0,67]],[[74488,42582],[0,-456],[4,-99],[-1,-56],[0,-41],[1,-161],[-1,-68],[0,-66],[1,-130],[0,-130],[-1,-130],[0,-59],[0,-71],[0,-41],[0,-115],[0,-36],[-1,-209],[1,-43],[0,-63],[0,-53],[0,-34],[0,-66],[0,-49],[0,-46],[0,-70],[0,-71],[0,-59],[-1,-321],[0,-93],[0,-36],[0,-64],[0,-66],[0,-69],[0,-79],[0,-161],[0,-81],[0,-66],[0,-130],[0,-65],[0,-65],[0,-45],[0,-50],[0,-67],[0,-60],[0,-130],[0,-130],[0,-54],[0,-77],[0,-65],[0,-130],[0,-40],[0,-161],[0,-58],[0,-66],[0,-58],[0,-52],[-1,-102],[1,-91],[0,-51],[-1,-101],[0,-65],[0,-43],[0,-33],[1,-43],[0,-53],[0,-88],[0,-42],[-1,-64],[1,-63],[0,-67],[-1,-67],[0,-71],[0,-113],[0,-73],[0,-64],[0,-72],[0,-188],[0,-65],[0,-38],[0,-182],[0,-74],[0,-110],[0,-106],[2,-478],[-1,-368],[-3,-573],[374,2],[1,-480],[1,-950],[0,-31],[0,-13],[0,-87],[0,-344],[1,-377],[0,-96],[1,-378],[0,-49],[0,-37],[0,-5],[0,-477],[0,-92],[-3,-366],[5,-409],[0,-35],[-2,-50],[1,-68],[0,-25],[1,-126],[2,-135],[1,-116],[0,-268],[-1,-134],[-1,-61],[-1,-58],[1,-35],[0,-59],[0,-49],[0,-36],[0,-43],[0,-65],[0,-43],[0,-39],[0,-59],[1,-51],[0,-59],[-1,-60],[0,-40],[0,-102],[0,-49],[0,-64],[0,-47],[-1,-90],[0,-59],[0,-43],[0,-47],[0,-41],[0,-71],[0,-64],[-1,-58],[0,-47],[0,-49],[0,-39],[-1,-43],[0,-43],[0,-61],[0,-4],[0,-39],[0,-47],[0,-64],[-1,-34],[1,-38],[-1,-54],[0,-59],[0,-52],[0,-44],[0,-62],[0,-58],[0,-64],[0,-43],[0,-40],[0,-39],[1,-82],[0,-74],[0,-66],[0,-62],[0,-67],[0,-39],[1,-57],[0,-33],[-1,-38],[0,-36],[1,-54],[-1,-40],[0,-46],[1,-62],[0,-52],[0,-40],[-1,-51],[-2,-39],[1,-42],[0,-84],[0,-44],[1,-81],[0,-58],[1,-34],[0,-46],[3,-173],[-1,-55],[-2,-76],[1,-34],[-1,-54],[1,-67],[-1,-37],[-1,-49],[0,-37],[6,-42],[-5,-35],[-1,-64],[1,-55],[0,-66],[1,-357],[-1,-415],[-21,-25],[21,-13],[0,-106],[1,-326],[0,-69],[-1,-88],[1,-89],[0,-46],[0,-2]],[[74867,22705],[-28,0],[-22,0],[-9,0],[-34,0],[-47,0],[-26,0],[-16,0],[-20,0],[-18,-1],[-25,0],[-37,0],[-120,0],[-17,0],[-39,0],[-71,-1],[-34,0],[-70,0],[-71,-1],[-34,0],[-53,0],[-30,0],[-19,0],[-36,0],[-14,0],[-61,0],[-65,0],[-25,0],[-23,0],[-21,-1],[-16,0],[-24,0],[-34,0],[-40,0],[-63,0],[-27,0],[-45,-1],[-72,0],[-19,1],[-25,-4],[-27,-3],[-8,0],[-92,1],[-108,0],[-93,0],[-2,0],[-46,0],[-33,0],[-12,1],[-2,0],[-38,0],[-9,1],[-9,1],[-34,0],[-33,0],[-13,1],[-27,0],[-39,0],[-34,0],[-32,0],[-90,-1],[-18,0],[-31,0],[-29,0],[-39,0],[-42,0],[-31,0],[-43,0],[-25,0],[-20,0],[-21,-1],[-28,1],[-82,0],[-30,0],[-30,0],[-28,0],[-61,0],[-22,0],[-40,0],[-25,0],[-65,0],[-37,0],[-31,1],[-48,-1],[-26,0],[-16,0],[-72,0],[-81,0],[-17,0],[-60,0],[-44,0],[-40,-1],[-40,0],[-18,0],[-41,1],[-30,0],[-2,0],[-9,0],[-11,0],[-52,0],[-37,-1],[-29,0],[-16,0],[-22,0],[-75,0],[-26,0],[-28,0],[-32,0],[-17,0],[-39,0],[-37,0],[-127,0],[-86,-1],[-21,0],[-31,0],[-92,0],[-24,0],[-28,0],[-36,0],[-21,-1],[-16,0],[-4,0],[-40,0],[-21,0],[-27,1],[-50,-1],[-45,0],[-20,0],[-30,0],[-89,0],[-40,-1],[-23,0],[-12,0],[-15,0],[-58,0],[-93,0],[-28,0],[-20,0],[-20,0],[-43,-1],[-76,0],[-19,0],[-66,0],[-22,0],[-26,0],[-23,0],[-37,-1],[-87,0],[-21,0],[-42,0],[-2,0],[-67,0],[-31,0],[-94,0],[-23,0],[-37,-1],[-42,0],[-55,0],[-35,0],[-60,0],[-31,0],[-21,0],[-20,0],[-46,0],[-16,0],[-53,0],[-42,0],[-79,0],[-34,0],[-31,0],[-64,0],[-31,0],[-110,-1],[-23,0],[-47,0],[-55,0],[-45,0],[-15,0],[-80,0],[-37,0],[-67,0],[-64,0],[-19,0],[-19,0],[-54,0],[-58,-1],[-54,0],[-17,0],[-79,0],[-103,0],[-27,0],[-38,0],[-75,-1],[-28,0],[-41,1],[-73,-1],[-27,0],[-57,0],[-52,0],[-17,0],[-25,0],[-24,-1],[-20,0],[-58,0]],[[66892,22687],[-26,0],[-23,0],[-28,0],[-40,0],[-37,0],[-24,0],[-13,-1],[-43,0],[-32,0],[-13,1],[-54,-1],[-38,0],[-37,0],[-35,1],[-15,-1],[-22,0],[-82,0],[-24,1],[-44,0],[-38,0],[-37,0],[-32,0],[-21,0],[-59,1],[-15,0],[-45,1],[-22,-1],[-31,1],[-23,-1],[-17,0],[-18,1],[-20,1],[-21,-1],[-65,1],[-26,0],[-59,0],[-26,1],[-15,0],[-15,0],[-16,0],[-47,0],[-15,1],[-42,0],[-15,0],[-32,1],[-12,0],[-1,0],[-9,0],[-11,0],[-8,0],[-63,-2],[-24,-2],[-2,-1],[-14,-14],[-15,-8],[-20,4],[-14,8],[-17,10],[-2,1],[-18,4],[-24,1],[-16,0],[-37,0],[-17,1],[-18,-1],[-19,-1],[-23,1],[-24,1],[-14,-1],[-34,1],[-17,1],[-22,-1],[-42,1],[-60,1],[-17,0],[-28,0],[-42,0],[-44,0],[-37,1],[-19,0],[-16,0],[-31,1],[-50,0],[-15,0],[-37,1],[-44,0],[-18,1],[-25,0],[-27,0],[-16,0],[-18,0],[-15,0],[-15,1],[-42,0],[-50,0],[-23,1],[-55,0],[-20,0],[-16,0],[-14,1],[-22,0],[-26,0],[-17,0],[-29,0],[-31,1],[-20,0],[-37,0],[-45,1],[-15,0],[-20,0],[-22,0],[-28,0],[-21,1],[-21,0],[-16,0],[-8,0],[-6,0],[-21,0],[-43,0],[-17,1],[-23,0],[-43,0],[-47,1],[-23,-1],[-22,1],[-48,0],[-19,0],[-45,1],[-22,0],[-23,0],[-25,1],[-19,0],[-17,1],[-21,-1],[-19,0],[-15,1],[-33,0],[-20,-1],[-14,1],[-18,0],[-20,0],[-23,0],[-18,0],[-16,0],[-35,0],[-33,1],[-41,0],[-14,0],[-43,1],[-49,0],[-43,0],[-21,0],[-36,1],[-1,0],[-58,1],[-29,0],[-16,0],[-1,0],[-9,-1],[-6,0],[-18,0],[-23,-1],[-16,2],[-15,1],[-20,-1],[-22,0],[-49,1],[-15,0],[-24,1],[-16,0],[-16,0],[-55,1],[-16,0],[-18,0],[-43,-1],[-23,-1],[-32,0],[-26,1],[-16,0],[-49,-2],[-70,-2],[-42,2],[-36,3],[-29,-1],[-30,-1],[-19,0],[-29,2],[-25,-1],[-17,-3],[-20,-4],[-63,-1],[-17,8],[-27,1],[-15,1],[-21,-1],[-17,0],[-19,0],[-27,1],[-27,0],[-23,1],[-17,0],[-15,0],[-28,-1],[-14,1],[-18,0],[-15,0],[-24,0],[-25,0],[-14,0],[-29,4]],[[52956,22779],[-41,-1],[-142,1],[-98,1],[-42,0],[-238,1],[-29,1],[-13,3],[-16,-1],[-57,1],[-20,0],[-16,-1],[-43,3],[-41,-1],[-14,1],[-32,1],[-15,-2],[-18,0],[-17,1],[-22,-1],[-20,1],[-31,-1],[-35,1],[-34,-1],[-15,-1],[-24,0],[-47,3],[-15,0],[-18,-3],[-55,0],[-109,5],[-89,1],[-15,-1],[-17,0],[-68,-1],[-179,-4],[-34,0],[-5,1],[-53,0],[-187,2],[-15,-1],[-29,0],[-33,-1],[-99,-2],[-11,0],[-1,0],[-18,0],[-88,9],[-559,5],[-24,0],[-15,0],[-18,-1],[-23,1],[-16,1],[-18,0],[-37,1],[-18,1],[-18,-1],[-32,-1],[-17,-1],[-38,3],[-21,5],[-17,14],[-17,5],[-32,-17],[-19,-8],[-48,4],[-26,-1],[-17,-2],[-18,0],[-22,1],[-23,0],[-14,-3],[-23,-1],[-91,0],[-17,2],[-37,1],[-39,2],[-83,0],[-37,0],[-38,0],[-68,0],[-67,1],[-14,3],[-15,0],[-30,1],[-50,-2],[-144,4],[-95,-3],[-16,-1],[-19,-1],[-40,1],[-23,1],[-54,0],[-50,1],[-25,0],[-33,0],[-14,5],[-17,-2],[-80,2],[-34,-1],[-40,0],[-104,-1],[-249,1],[-36,-2],[-20,-2],[-166,-1],[-104,0],[-30,0],[-90,1],[-39,0],[-16,0],[-42,0],[-28,0],[-23,6],[-22,2],[-33,1],[-13,1],[-27,-1],[-74,2],[-35,1],[-51,0],[-28,-1],[-76,1],[-28,2],[-39,2],[-32,-1],[-51,1],[-41,0],[-20,0],[-15,0],[-2,0],[-22,0],[-14,1],[-12,-1],[-4,0],[-61,1],[-45,1],[-15,0],[-26,0],[-29,0],[-29,1],[-74,1],[-36,0],[-15,0],[-26,0],[-54,1],[-36,0],[-39,0],[-58,1],[-50,1],[-26,0],[-20,-1],[-19,0],[-19,0],[-21,0],[-23,0],[-44,-2],[-14,1],[-133,-1],[-36,0],[-71,0],[-4,0],[-24,0],[-27,-1],[-2,0],[-46,0],[-62,-1],[-25,-1],[-14,-3],[-13,-2],[-15,-1],[-18,1],[-42,0],[-62,-1],[-17,1],[-26,-3],[-87,-7]],[[45209,22810],[3,128],[6,100],[10,179],[4,54],[164,353],[117,202],[43,175],[-46,175],[-8,5],[-84,53],[-90,-4],[-72,-52],[-73,-53],[-35,-21],[-157,-95],[-80,-46],[-28,-16],[-101,-51],[-132,-132],[-73,-136],[-87,-80],[-35,-31],[-3,4],[-48,-4],[-59,-5],[-62,14],[-20,5],[-4,6],[-153,235],[2,64],[43,134],[45,66],[24,105],[-5,108],[-13,156],[-43,128],[-24,32],[-11,16],[-23,50],[-31,47],[-50,45],[-9,0],[-30,1],[-119,-101],[-57,-50],[-52,-42],[-5,-3],[-43,-30],[-44,-4],[-27,10],[-22,11],[-23,19],[-20,26],[-1,14],[-8,80],[-19,59],[-37,108],[-14,48],[-28,97],[-1,3],[-12,139],[-31,144],[-30,62],[-3,24],[-8,46],[18,67],[8,30],[36,50],[68,28],[107,23],[4,2],[28,16],[23,13],[64,113],[-8,151],[-22,97],[-1,0],[-31,70],[-19,13],[-19,53],[-31,47],[-51,-4],[-26,-27],[-56,-5],[-30,14],[-29,2],[-28,-3],[-16,-1],[-28,-15],[-17,-10],[-44,-3],[-33,7],[-11,3],[-49,11],[-10,7],[-37,-3],[-12,-14],[-26,-2],[-20,19],[-69,106],[-1,79],[0,20],[-58,156],[-24,68],[-7,46],[-24,52],[-4,6],[-22,31],[-12,32],[-15,119],[-2,49],[16,31],[3,4],[20,24],[-22,178],[-1,58],[4,17],[27,72],[38,72],[5,10],[23,44],[31,60],[41,111],[38,172],[2,31],[3,57],[8,54],[13,67],[13,43],[-4,136],[6,14],[14,37],[30,155],[-1,41],[-37,104],[-9,25],[-7,16],[-29,67],[-43,128],[-19,81],[-4,15],[-16,71],[-30,77],[-26,72],[-29,-16],[-30,34],[-5,-4],[-18,4],[-7,2],[-172,125],[-61,61],[-66,141],[-2,4],[-2,3],[-2,2],[-15,22],[-12,159],[-25,216],[-6,52],[-6,61],[-6,61],[-48,245],[-52,172],[-14,44],[-50,65],[-16,42],[7,83],[-45,143],[-58,48],[-22,173],[-28,73],[-78,208],[-25,59],[-30,-15],[-24,70],[-16,66],[-5,6],[-40,47],[7,114],[3,47],[-8,10],[-61,72],[-5,57],[2,52],[21,99],[-6,57],[-4,123],[11,51],[18,47],[30,56],[12,6],[21,22],[15,28],[27,50],[4,38],[-2,70],[-18,93],[-23,80],[-2,5],[-6,160],[-2,41],[-6,48],[-3,21],[-4,34],[-1,1],[-46,106],[-62,94],[-3,12],[-6,53],[-39,59],[-66,72],[-24,11],[-98,156],[-21,62],[-49,147],[-9,28],[-9,70],[5,90],[5,74],[33,166]],[[41551,34179],[10,34],[24,79],[10,33],[10,18],[15,26],[32,56],[26,33],[46,56],[77,74],[26,16],[64,41],[19,15],[54,43],[25,20],[20,15],[79,89],[14,33],[33,72],[20,45],[63,141],[51,114],[0,1],[0,2],[13,29],[11,50],[-1,25],[2,10],[21,116],[3,136],[8,71],[-3,87],[-13,31],[-5,13],[-30,109],[-23,35],[-6,16],[-15,90],[-2,61],[14,31],[-2,66],[-93,157],[-21,64],[-104,198],[-18,27],[-39,41],[-77,206],[-18,48],[-22,45],[-251,521],[-14,48],[-13,43],[-24,83],[-16,98],[-3,91],[-3,126],[0,17],[13,80],[-1,62],[-16,46],[-3,10],[-13,24],[2,9],[-15,81],[-1,49],[13,43],[-2,31],[3,9],[7,19],[15,67],[-3,95],[-6,41],[-11,75],[0,56],[-17,127],[-14,34],[-12,30],[-28,96],[-3,112],[4,37],[-1,15],[-1,51],[-6,33],[-34,73],[-29,66],[-1,3],[-11,37],[-16,44],[-33,51],[-33,30],[-67,110],[-44,80]],[[41551,34179],[-9,0],[-29,0],[-11,0],[-345,3],[-179,-3],[-287,-9],[-15,0],[-73,2],[-81,0],[-61,-1],[-166,-2],[-9,-1],[-8,-1],[-25,0],[-32,-1],[-37,0],[-24,0],[-173,0],[-329,-4],[-91,-1],[-123,-2],[-263,-3],[-160,-2],[-73,-1],[-161,-4],[-39,-1],[-40,0],[-24,-1],[-14,1],[-37,-2],[-25,-1],[-23,0],[-31,-1],[-13,0],[-41,-1],[-63,-2],[-14,0],[-25,-1],[-21,-1],[-57,-1],[-27,0],[-33,1],[-56,-2],[-16,10],[-16,3],[-17,-5],[-34,-7],[-36,-3],[-35,-1],[-13,0],[-16,0],[-17,0],[-22,0],[-49,-1],[-18,0],[-26,0],[-26,-1],[-18,0],[-25,-2],[-25,0],[-18,1],[-27,-1],[-20,0],[-23,-1],[-21,0],[-25,0],[-31,-1],[-26,0],[-22,-1],[-22,0],[-15,0],[-44,-1],[-44,-1],[-44,-1],[-28,2],[-15,-1],[-18,2],[-34,-1],[-21,-2],[-27,-2],[-18,-1],[-35,1],[-18,-2],[-26,1],[-19,0],[-50,0],[-31,-1],[-45,1],[-45,-1],[-36,-1],[-17,1],[-82,1],[-206,-1],[-204,3],[-20,-2],[-40,0],[-17,-1],[-38,1],[-37,-1],[-18,1],[-16,-1],[-52,0],[-32,0],[-29,1],[-43,-1],[-23,0],[-40,0],[-35,0],[-45,0],[-38,0],[-33,0],[-25,0],[-47,1],[-25,0],[-23,0],[-50,0],[-20,0],[-20,0],[-15,0],[-35,0],[-21,0],[-13,0],[-32,1],[-29,-1],[-21,0],[-14,1],[-33,0],[-19,0],[-21,0],[-33,0],[-30,0],[-18,5],[-28,0],[-3,-1],[-16,-3],[-22,-1],[-21,1],[-16,-1],[-30,0],[-30,0],[-47,0],[-19,0],[-24,0],[-15,0],[-20,0],[-19,0],[-39,-1],[-7,0],[-156,3],[-32,0],[-16,0],[-21,0],[-31,-1],[-14,0],[-16,0],[-17,-1],[-41,0],[-25,0],[-21,2],[-16,-2],[-23,0],[-18,1],[-36,1],[-18,0],[-18,0],[-34,0],[-20,0],[-17,-1],[-20,1],[-24,0],[-22,1],[-15,0],[-16,0],[-60,-3],[-37,4],[-19,0],[-15,-1],[-25,1],[-44,0],[-16,0],[-27,0],[-28,0],[-30,0],[-15,0],[-18,1],[-15,-1],[-24,-1],[-22,0],[-15,1],[-285,2],[-139,-3],[-142,2],[-18,-1],[-17,0],[-18,1],[-13,0],[-16,0],[-18,0],[-19,0],[-26,0],[-19,1],[-23,0],[-20,0],[-15,0],[-27,-1],[-20,1],[-14,-1],[-19,5],[-14,-14],[-17,8],[-17,0],[-19,0],[-46,0],[-69,0],[-42,0],[-33,0],[-21,1],[-16,-1],[-24,0],[-15,-1],[-20,0],[-23,0],[-15,1],[-30,-1],[-17,-1],[-50,1],[-25,0],[-22,1],[-14,0],[-23,-1],[-34,1],[-51,1],[-28,-1],[-32,1],[-47,1],[-52,-1],[-27,0],[-40,0],[-14,0],[-15,0],[-31,0],[-22,0],[-15,-2],[-21,0],[-22,0],[-14,0],[-15,0],[-14,-1],[-20,1],[-19,0],[-17,1],[-41,0],[-14,0],[-20,0],[-19,0],[-14,1],[-18,-1],[-16,1],[-28,0],[-20,0],[-20,-1],[-31,1],[-31,-1],[-18,1],[-17,0],[-16,0],[-17,0],[-25,0],[-25,-1],[-21,1],[-19,0],[-25,0],[-53,-1],[-44,1],[-18,0],[-34,0],[-21,0],[-6,0],[-11,0],[-26,0],[-24,0],[-32,0],[-23,1],[-5,0],[-13,-1],[-13,1],[-33,-1],[-18,0],[-15,0],[-25,0],[-17,1],[-28,0],[-13,0],[-39,0],[-21,0],[-24,0],[-15,0],[-21,0],[-16,0],[-54,0],[-29,1],[-32,1],[-28,0],[-18,0],[-1,0],[-16,0],[-27,-1],[-22,0],[-16,-1],[-14,1],[-20,-1],[-17,0],[-41,1]],[[84648,42567],[0,-259],[-1,-222],[2,-66],[1,-13],[0,-95],[0,-99],[0,-102],[0,-100],[-2,-468],[2,-232],[2,-245],[2,-73],[0,-3],[-1,-417],[-1,-451],[-1,-478],[1,-427],[0,-44],[0,-493],[0,-456],[0,-250],[1,-129],[1,-122],[0,-449],[0,-1],[0,-305],[0,-37],[0,-55],[0,-72],[-1,-63],[0,-127],[0,-294],[-2,-198],[-3,-264],[0,-472],[-2,-539],[2,-408],[327,-2],[0,-138],[0,-348],[0,-45],[0,-55],[0,-112],[0,-119],[0,-53],[0,-60],[0,-35],[0,-75],[0,-55],[0,-169],[0,-56],[0,-36],[0,-77],[0,-48],[0,-43],[0,-55],[0,-87],[0,-27],[0,-9],[-1,-45],[0,-121],[-1,-64],[-1,-40],[0,-16],[-1,-48],[2,-102],[1,-32],[0,-53],[0,-56],[0,-100],[0,-52],[0,-70],[0,-115],[0,-114],[0,-51],[0,-72],[0,-41],[0,-57],[0,-56],[0,-56],[-1,-56],[0,-56],[0,-56],[0,-66],[0,-22],[0,-55],[-1,-45],[1,-56],[0,-56],[-1,-169],[0,-100],[0,-67],[0,-56],[0,-56],[0,-56],[0,-111],[0,-57],[0,-71],[1,-39],[0,-60],[0,-56],[-1,-56],[0,-56],[0,-58],[0,-68],[0,-42],[0,-70],[0,-98],[0,-168],[0,-56],[0,-56],[0,-65],[0,-52],[0,-53],[0,-52],[0,-60],[0,-114],[0,-155],[0,-58],[0,-40],[0,-128],[0,-56],[0,-56],[0,-121],[0,-156],[0,-75],[0,-51],[0,-55],[0,-55],[0,-82],[0,-139],[0,-66],[0,-54],[0,-57],[0,-56],[0,-100],[0,-182],[0,-56],[0,-55],[0,-57],[0,-47],[0,-76],[0,-92],[0,-55],[0,-47],[0,-46],[0,-74],[0,-51],[0,-59],[0,-36],[0,-46],[-1,-86],[1,-55],[-1,-55],[1,-59],[-1,-50],[0,-75],[0,-61],[0,-83],[0,-55],[0,-55],[0,-55],[0,-55],[0,-55],[0,-56],[0,-59],[0,-43],[0,-110],[0,-55],[0,-72],[0,-39],[0,-55],[0,-114],[0,-57],[0,-61],[0,-64],[0,-35],[-1,-36],[0,-18],[0,-62],[0,-55],[0,-69],[0,-41],[0,-56],[0,-55],[0,-112],[-1,-110],[1,-55],[-1,-44],[0,-66],[0,-56],[0,-55],[0,-59],[0,-66],[0,-40],[0,-55],[0,-99],[0,-68],[0,-56],[0,-37],[0,-75],[-1,-166],[0,-46]],[[84968,22669],[-9,-1],[-10,-1],[-28,0],[-50,0],[-40,0],[-49,0],[-66,1],[-28,0],[-18,0],[-26,0],[-14,0],[-73,0],[-19,0],[-90,1],[-40,0],[-23,0],[-29,0],[-41,0],[-40,1],[-41,0],[-66,0],[-18,0],[-23,0],[-88,1],[-37,0],[-36,0],[-79,1],[-41,0],[-54,0],[-17,0],[-44,0],[-33,0],[-17,0],[-21,1],[-44,0],[-15,0],[-42,0],[-40,0],[-112,1],[-28,0],[-47,0],[-46,1],[-19,0],[-40,0],[-59,0],[-74,0],[-36,1],[-53,0],[-61,0],[-37,0],[-37,1],[-60,0],[-35,0],[-20,0],[-31,0],[-15,0],[-18,0],[-36,0],[-114,1],[-46,0],[-51,0],[-51,1],[-28,0],[-69,0],[-24,0],[-58,0],[-51,1],[-74,1],[-45,0],[-32,0],[-71,0],[-57,1],[-35,-1],[-42,1],[-42,0],[-17,-1],[-6,1],[-11,2],[-106,3],[-29,1],[-25,-1],[-14,0],[-15,0],[-33,1],[-37,-1],[-19,1],[-14,1],[-20,0],[-17,1],[-14,-1],[-21,0],[-39,2],[-15,-4],[-17,-1],[-14,3],[-60,-2],[-17,-1],[-20,0],[-59,3],[-23,-2],[-62,0],[-88,0],[-17,1],[-36,0],[-25,0],[-29,0],[-21,0],[-39,1],[-26,0],[-83,0],[-56,1],[-36,0],[-40,0],[-29,0],[-36,0],[-16,1],[-66,0],[-109,1],[-16,0]],[[80273,22692],[-35,0],[-39,1],[-67,0],[-39,1],[-7,0],[-92,0],[-18,0],[-58,1],[-15,0],[-15,0],[-84,1],[-26,0],[-20,0],[-44,0],[-38,1],[-39,0],[-35,0],[-16,1],[-154,1],[-75,1],[-69,0],[-40,1],[-18,0],[-18,0],[-60,0],[-19,0],[-57,1],[-26,0],[-26,1],[-36,0],[-39,0],[-42,0],[-42,0],[-69,1],[-41,0],[-20,0],[-26,0],[-40,0],[-49,0],[-20,1],[-36,0],[-15,0],[-17,0],[-23,0],[-32,0],[-17,0],[-94,0],[-16,0],[-30,0],[-18,0],[-25,0],[-41,1],[-57,0],[-25,0],[-33,0],[-24,0],[-65,0],[-77,1],[-118,0],[-41,0],[-38,1],[-42,-1],[-42,0],[-80,1],[-41,-1],[-40,1],[-30,-1],[-15,0],[-30,1],[-49,-1],[-17,1],[-127,0],[-46,0],[-49,0],[-37,0],[-71,0],[-23,0],[-13,0],[-15,0],[-17,0],[-34,0],[-19,0],[-31,0],[-36,0],[-22,0],[-33,0],[-21,0],[-95,0],[-38,0],[-61,0],[-33,0],[-30,0],[-56,0],[-45,0],[-3,0],[-52,0],[-20,0],[-32,1],[-42,0],[-60,-1],[-52,1],[-53,-1],[-20,0],[-23,0],[-14,0],[-59,0],[-15,0],[-41,1],[-96,-1],[-89,0],[-40,0],[-43,-1],[-22,1],[-14,-1],[-61,0],[-46,0],[-51,0],[-28,0],[-28,0],[-62,0],[-101,-1],[-75,0],[-24,0],[-8,0],[-19,0],[-84,0],[-48,0],[-22,0],[-90,-1],[-16,0]],[[96311,42489],[24,-60],[7,-22],[7,-36],[1,-8],[1,-28],[-1,-12],[-4,-17],[-5,-13],[-13,-11],[-17,0],[-6,6],[-7,11],[-20,62],[-10,22],[-11,14],[-18,5],[-16,-9],[-17,-13],[-13,-17],[-14,-31],[-6,-17],[-9,-32],[0,-23],[2,-7],[9,-16],[10,-16],[11,-10],[21,-2],[21,8],[16,3],[13,-5],[11,-7],[15,-15],[8,-11],[9,-18],[2,-8],[3,-16],[-1,-13],[-3,-9],[-6,-9],[-16,-17],[-14,-9],[-33,-17],[-42,-24],[-19,-16],[-21,-19],[-16,-23],[-13,-21],[-8,-22],[-2,-22],[2,-25],[4,-11],[5,-16],[5,-8],[11,-13],[16,-5],[12,0],[12,10],[5,7],[4,12],[3,20],[0,64],[3,13],[6,19],[11,18],[4,4],[17,5],[10,-3],[17,-12],[11,-18],[9,-21],[3,-13],[3,-12],[2,-17],[-1,-19],[-5,-18],[-3,-8],[-13,-20],[-20,-20],[-7,-10],[-5,-9],[-2,-7],[-1,-17],[1,-7],[9,-28],[22,-36],[33,-41],[19,-32],[5,-13],[2,-9],[1,-12],[-1,-17],[-4,-12],[-5,-12],[-8,-11],[-18,-14],[-33,-1],[-8,-3],[-9,-16],[-3,-13],[-1,-15],[5,-11],[4,-8],[62,-48],[13,-15],[13,-20],[12,-20],[13,-28],[5,-18],[3,-19],[0,-21],[-4,-12],[-4,-6],[-6,-8],[-9,-1],[-7,4],[-4,6],[-4,11],[-4,27],[-6,26],[-4,10],[-2,6],[-4,10],[-8,12],[-9,8],[-6,0],[-4,-1],[-11,-18],[-35,-91],[-34,-74],[-62,-107],[-5,-20],[-2,-11],[1,-33],[7,-24],[5,-12],[14,-18],[14,-8],[14,-1],[7,6],[4,7],[4,18],[0,26],[-2,12],[-4,20],[-2,8],[-3,16],[-1,18],[2,16],[3,11],[5,10],[7,9],[13,3],[7,-2],[9,-6],[27,-42],[12,-12],[46,-34],[5,-2],[26,-29],[17,-21],[10,-18],[6,-18],[3,-16],[0,-15],[-4,-21],[-4,-10],[-7,-7],[-23,-13],[-32,-9],[-16,-7],[-22,-17],[-13,-15],[-11,-21],[-5,-16],[0,-25],[6,-16],[12,-18],[7,-7],[14,-7],[17,3],[23,12],[29,21],[32,35],[17,7],[12,-4],[7,-8],[8,-9],[3,-12],[2,-16],[1,-27],[-1,-8],[-4,-9],[-4,-11],[-12,-10],[-12,-2],[-24,9],[-5,0],[-7,-2],[-7,-8],[-2,-4],[-2,-14],[2,-9],[6,-9],[33,-36],[4,-20],[0,-10],[0,-6],[-8,-22],[-8,-14],[-6,-6],[-11,-9],[-22,-1],[-43,13],[-11,-1],[-7,-8],[-7,-14],[0,-18],[12,-29],[13,-23],[8,-9],[15,-12],[17,-6],[17,0],[19,5],[18,3],[6,-3],[8,-6],[6,-9],[7,-18],[1,-11],[-2,-14],[-5,-21],[-14,-43],[-2,-6],[-8,-29],[-4,-18],[-1,-28],[4,-31],[1,-6],[6,-12],[5,-6],[10,-6],[22,-3],[13,-4],[11,-7],[9,-13],[3,-10],[-1,-19],[-2,-14],[-6,-20],[-10,-25],[-10,-14],[-14,-15],[-17,-15],[-21,-7],[-65,-1],[-7,-2],[-8,-5],[-6,-9],[-3,-9],[-3,-14],[0,-19],[1,-10],[7,-12],[10,-8],[14,-1],[59,14],[16,-6],[10,-13],[7,-12],[3,-16],[1,-9],[-4,-22],[-9,-19],[-11,-14],[-15,-17],[-9,-3],[-31,0],[-34,6],[-21,10],[-10,10],[-101,-94],[-9,-14],[0,-8],[10,-33],[30,-48],[10,-15],[9,-9],[7,-4],[9,-1],[10,9],[16,24],[7,7],[9,3],[6,-1],[6,-9],[7,-13],[28,-68],[3,-8],[4,-17],[0,-17],[-1,-10],[-5,-5],[-34,-5],[-18,-6],[-14,-12],[-7,-14],[-2,-6],[0,-12],[5,-26],[2,-8],[5,-10],[10,-9],[26,-15],[39,-105],[1,-12],[4,-23],[2,-14],[12,-35],[5,-25],[0,-26],[-1,-9],[-8,-17],[-8,-14],[-20,-21],[-11,-15],[-4,-7],[-4,-13],[-4,-18],[0,-23],[1,-8],[5,-15],[10,-12],[5,-4],[12,-7],[15,0],[12,4],[12,12],[10,12],[18,30],[10,12],[10,7],[9,-7],[6,-9],[1,-10],[-2,-12],[-5,-12],[-19,-23],[-8,-11],[-12,-23],[-5,-13],[-4,-23],[0,-50],[-1,-22],[-3,-15],[-5,-16],[-5,-8],[-12,-9],[-29,-3],[-13,3],[-34,19],[-16,8],[-17,3],[-14,-3],[-9,-6],[-5,-8],[-7,-21],[0,-20],[10,-15],[32,-27],[17,-8],[21,-1],[34,16],[8,-4],[9,-18],[4,-18],[11,-38],[34,-25],[10,-8],[12,-19],[16,-38],[8,-40],[0,-27],[-10,-30],[-6,-18],[-5,-17],[-7,-38],[0,-29],[2,-9],[6,-17],[7,-13],[7,-8],[10,-9],[6,0],[4,1],[43,16],[0,-44],[3,-32],[4,-21],[2,-27],[-4,-17],[-12,-17],[-21,-23],[-14,-17],[-14,-31],[-7,-17],[-1,-31],[1,-6],[3,-8],[4,-7],[34,-25],[6,-11],[3,-8],[0,-6],[1,-22],[-7,-33],[-1,-33],[1,-35],[7,-36],[0,-14],[-3,-15],[-3,-8],[-7,-14],[-18,-10],[-28,-9],[-43,-9],[-17,-6],[-10,-14],[-3,-8],[-1,-24],[1,-9],[8,-14],[6,-5],[6,0],[10,8],[19,20],[16,15],[14,7],[18,1],[8,-4],[35,-31],[6,-12],[3,-17],[0,-8],[-2,-10],[-6,-16],[-13,-22],[-26,-34],[-8,-13],[-4,-13],[-4,-15],[0,-24],[2,-6],[4,-19],[6,-14],[9,-17],[-5,-97],[-26,-10],[-64,-47],[-24,-31],[-15,-22],[-2,-6],[0,-23],[5,-16],[11,-18],[9,-10],[9,0],[5,6],[5,13],[7,41],[9,24],[10,20],[5,5],[12,9],[13,3],[12,-7],[10,-12],[8,-12],[0,-32],[-4,-14],[-4,-15],[-7,-12],[-12,-12],[-26,-8],[-8,-4],[-5,-11],[-1,-17],[14,-182],[4,-18],[2,-8],[16,-36],[1,0],[21,-42],[4,-13],[2,-9],[0,-11],[-1,-7],[-6,-11],[-9,-8],[-17,-2],[-9,4],[-20,12],[-20,17],[-17,8],[-17,-4],[-13,-11],[-6,-10],[-5,-11],[-2,-4],[2,-19],[1,-7],[68,-118],[68,-88],[16,-23],[14,-25],[2,-23],[-3,-16],[-13,-34],[-11,-19],[-5,-7],[-34,-40],[-16,-17],[-19,-12],[-19,-8],[-3,-2],[-6,-7],[-4,-10],[0,-22],[1,-3],[8,-11],[7,0],[42,41],[20,21],[17,14],[15,4],[10,-4],[6,-6],[4,-10],[3,-21],[1,-19],[-3,-19],[-47,-154],[-17,-56],[-2,-21],[-2,-19],[2,-24],[9,-22],[7,-15],[4,-3],[11,-4],[13,8],[8,13],[6,16],[7,40],[10,32],[14,24],[6,4],[17,4],[8,-5],[10,-16],[4,-10],[1,-10],[-1,-12],[-3,-16],[-2,-6],[-34,-105],[-10,-20],[-1,-2],[-9,-13],[-7,-5],[-15,-1],[-21,7],[-28,11],[-11,3],[-10,1],[-12,-4],[-8,-8],[-14,-13],[-4,-10],[-6,-18],[-1,-27],[2,-11],[4,-9],[7,-15],[5,-4],[12,-1],[24,17],[21,2],[7,-1],[5,-4],[5,-6],[18,-31],[56,-137],[2,-5],[0,-9],[-1,-13],[-6,-17],[-2,-4],[-11,-1],[-8,2],[-18,14],[-19,10],[-18,-3],[-14,-8],[-19,-15],[-12,-6],[-16,-3],[-30,-28],[-6,-5],[-17,-27],[-7,-19],[-40,-160],[8,-21],[2,-7],[-15,-155],[-1,-10],[-7,-11],[-31,-14],[-18,-18],[-8,-13],[-7,-12],[-10,-29],[0,-14],[1,-6],[5,-9],[6,-6],[7,0],[13,12],[10,13],[13,11],[8,2],[22,-19],[58,-52],[85,-104],[-8,-62],[16,-19],[5,-56],[-13,7],[-8,3],[-7,-6],[-8,-15],[-4,-20],[-2,-27],[0,-78],[1,-17],[2,-9],[10,-21],[3,-3],[4,-4],[5,-15],[4,-11],[-1,-18],[-1,-12],[-8,-15],[-6,-10],[-24,-11],[-6,-6],[-5,-13],[0,-21],[5,-14],[5,-6],[26,-23],[4,-3],[6,-9],[5,-15],[22,-137],[7,-45],[4,-40],[0,-47],[-2,-15],[-22,-141],[-14,-20],[-5,-15],[0,-26],[6,-22],[8,-19],[22,-47],[7,-10],[8,-9],[111,-109],[10,-4],[17,0],[92,79],[0,31],[1,18],[3,7],[6,7],[11,3],[9,-6],[16,-17],[36,-45],[5,-11],[2,-11],[1,-13],[-3,-15],[-1,-7],[-46,-157],[-4,-9],[-4,-7],[-21,-24],[-7,-5],[-21,-9],[-7,-4],[-4,-14],[0,-17],[1,-6],[10,-29],[42,-60],[9,-17],[7,-31],[0,-81],[-5,-27],[-6,-13],[-7,-7],[-24,-15],[-14,-6],[-6,-8],[-2,-7],[-3,-9],[0,-20],[4,-13],[12,-14],[35,-42],[6,-6],[12,-6],[12,-2],[8,5],[7,9],[5,20],[3,14],[10,24],[8,6],[19,6],[11,-6],[7,-11],[4,-8],[3,-13],[4,-30],[0,-20],[0,-11],[-9,-77],[0,-41],[1,-9],[22,-109],[-9,-139],[-10,-115],[0,-21],[2,-9],[9,-17],[6,-6],[8,0],[7,8],[3,13],[1,7],[3,24],[8,25],[1,3],[7,9],[7,7],[10,4],[4,-3],[7,-9],[4,-10],[3,-17],[-2,-31],[-4,-36],[-3,-33],[1,-35],[1,-9],[6,-7],[15,3],[4,5],[15,34],[46,79],[75,100],[126,103],[21,15],[11,-21],[50,-108],[10,-22],[2,-9],[2,-16],[0,-27],[-4,-12],[-3,-6],[-10,-11],[-13,-3],[-5,3],[-15,22],[-11,17],[-4,4],[-28,8],[-11,-6],[-10,-15],[-2,-8],[-2,-17],[0,-13],[1,-9],[6,-16],[7,-9],[9,-7],[28,-8],[17,-3],[21,-5],[31,-11],[24,-13],[12,-10],[11,-13],[2,-6],[1,-16],[-2,-7],[-3,-6],[-10,-10],[-12,-7],[-28,0],[-12,7],[-27,26],[-13,8],[-12,4],[-7,-3],[-7,-6],[-5,-18],[0,-20],[2,-24],[6,-32],[7,-23],[16,-33],[13,-23],[1,-48],[-4,-40],[-46,-165],[-2,-43],[-20,-119],[-4,-16],[-4,-5],[-5,-7],[-13,2],[-8,9],[-9,15],[-10,20],[-7,9],[-11,5],[-9,-4],[-6,-10],[-25,-55],[-4,-17],[-36,-235],[-2,-15],[-1,-34],[2,-9],[10,-21],[6,-6],[9,-5],[32,-3],[15,-3],[10,-5],[8,-16],[4,-9],[1,-27],[-2,-17],[-7,-12],[-7,-9],[-22,-8],[-18,-14],[-7,-10],[-4,-9],[-3,-8],[0,-19],[6,-94],[5,-31],[4,-11],[4,-8],[10,-9],[6,-1],[6,3],[28,23],[8,4],[6,-3],[10,-14],[2,-8],[2,-21],[0,-22],[0,-9],[-8,-60],[-28,21],[-59,11],[-15,-81],[0,-1],[-16,-87],[-17,-93],[-16,-88],[-17,-112],[-3,-16],[-11,-38],[-11,-32],[-6,-18],[-6,-21],[-6,-21],[-3,-23],[0,-18],[2,-18],[3,-10],[7,-16],[11,-18],[61,-74],[12,-21],[3,-8],[6,-21],[2,-17],[1,-40],[-3,-10],[-11,-10],[-8,-2],[-21,13],[-43,41],[-13,8],[-15,-1],[-6,-7],[-5,-13],[-1,-19],[1,-24],[4,-20],[6,-29],[3,-6],[10,-15],[22,-14],[12,0],[8,5],[35,29],[15,10],[14,3],[8,-3],[8,-7],[12,-20],[5,-14],[-1,-15],[0,-7],[-8,-18],[-4,-4],[-10,1],[-44,8],[-14,-51],[-10,-33],[-23,-83],[3,-10],[31,-46],[23,-29],[22,-37],[6,-11],[2,-8],[3,-16],[1,-12],[-1,-19],[-3,-7],[-10,-9],[-14,0],[-12,6],[-18,15],[-11,18],[-14,17],[-12,11],[-18,8],[-27,7],[-16,-2],[-5,-5],[-13,-22],[-1,-4],[0,-17],[2,-8],[3,-10],[9,-13],[24,-17],[9,-9],[9,-12],[9,-23],[1,-4],[2,-8],[1,-18],[-4,-16],[-9,-39],[-11,-32],[-9,-16],[-7,-5],[-11,0],[-17,5],[-14,10],[-27,27],[-13,9],[-9,0],[-5,-2],[-6,-8],[-6,-16],[0,-11],[3,-7],[4,-10],[10,-13],[15,-13],[57,-46],[15,-19],[24,-33],[19,-29],[16,-28],[18,-35],[2,-7],[-1,-23],[-4,-4],[-9,-4],[-6,4],[-7,8],[-8,17],[-8,14],[-27,15],[-54,27],[-20,10],[-5,1],[-7,-2],[-6,-8],[-86,-193],[-17,-56],[0,-53],[4,-34],[7,-52],[-1,-13],[-2,-17],[-2,-7],[-11,-30],[-13,-24],[-2,-75],[3,-6],[7,-11],[19,-10],[28,-22],[13,-12],[7,-16],[2,-14],[0,-14],[-1,-10],[-5,-8],[-8,-9],[-22,-10],[-23,-4],[-21,-6],[0,-55],[8,0],[9,3],[15,7],[17,3],[4,-3],[9,-12],[5,-8],[1,-6],[0,-1],[7,-16],[2,-6],[2,-16],[2,-25],[0,-31],[-2,-16],[-3,-13],[-13,-17],[-13,-10],[-27,-18],[-16,-13],[-6,-10],[-2,-7],[-1,-22],[5,-11],[6,-7],[9,-5],[11,-1],[35,12],[6,-2],[12,-10],[10,-15],[4,-10],[3,-13],[1,-15],[-1,-17],[-4,-9],[-5,-8],[-22,-26],[-4,-10],[0,-29],[11,-56],[5,-15],[9,-20],[10,-8],[20,0],[10,4],[25,-21],[30,-50],[6,-11],[5,-17],[0,-16],[-2,-12],[-12,-36],[-35,-36],[-79,-157],[-5,-13],[0,-16],[3,-11],[8,-13],[12,-11],[9,-4],[31,5],[11,7],[16,22],[20,31],[8,11],[13,11],[19,6],[23,-4],[5,-5],[5,-15],[3,-19],[1,-27],[-1,-14],[-4,-32],[-3,-7],[-8,-15],[-9,-6],[-13,-4],[-8,5],[-20,19],[-11,9],[-8,-3],[-4,-4],[-4,-7],[0,-38],[3,-20],[1,-14],[3,-20],[5,-18],[11,-28],[5,-12],[13,-16],[13,-12],[22,-6],[50,-13],[22,-3],[38,-21],[6,-9],[3,-11],[0,-14],[-3,-24],[-9,-26],[-6,-9],[-21,-11],[-35,25],[-62,28],[-29,9],[-7,0],[-6,-1],[-7,-7],[-2,-8],[0,-22],[5,-16],[17,-23],[18,-17],[15,-12],[20,-8],[12,-4],[44,5],[10,-7],[9,-13],[2,-10],[3,-18],[0,-21],[-1,-11],[-4,-6],[-11,-7],[-17,0],[-10,6],[-15,20],[-17,25],[-7,8],[-10,3],[-13,-2],[-9,-6],[-4,-8],[-8,-18],[0,-23],[4,-10],[7,-9],[9,-9],[14,-4],[12,-6],[4,-4],[4,-12],[5,-28],[-1,-35],[-2,-6],[-5,-4],[-17,-2],[-16,18],[-15,27],[-8,5],[-9,-2],[-7,-5],[-7,-7],[-5,-16],[0,-10],[0,-3],[7,-18],[7,-13],[20,-19],[17,-6],[15,-1],[6,2],[11,-5],[7,-10],[2,-8],[1,-11],[1,-29],[0,-114],[0,-14],[-6,-10],[-4,-4],[-15,0],[-18,12],[-11,5],[-11,-6],[-2,-5],[0,-19],[7,-18],[22,-26],[15,-13],[47,-18],[4,-8],[1,-9],[2,-15],[-3,-13],[-3,-13],[-5,-6],[-14,-3],[-6,2],[-35,19],[-8,1],[-9,-4],[-4,-9],[-6,-15],[-1,-21],[0,-5],[6,-8],[8,-6],[69,-50],[-5,-122],[-36,-138],[-5,-10],[0,-26],[6,-47],[2,-13],[10,-27],[5,-8],[6,-4],[8,0],[36,25],[-9,-218],[-16,-28],[-24,-28],[-25,-24],[-21,-19],[-6,-2],[-2,0],[-34,-3],[-10,-3],[-10,-12],[-3,-13],[0,-28],[2,-7],[3,-6],[9,-6],[8,0],[5,3],[10,15],[8,5],[54,-10],[12,-11],[8,-11],[2,-8],[0,-13],[-6,-6],[-16,-7],[-8,-7],[-28,-37],[-14,-25],[0,-14],[3,-6],[5,-11],[45,-42],[-35,-44],[-32,-66],[-35,-152],[0,-12],[4,-13],[15,-22],[16,-3],[45,-45],[3,-188],[0,-22],[-2,-15],[-13,-79],[-2,-6],[-8,-5],[-37,-15],[-9,-12],[-4,-11],[0,-27],[11,-24],[7,-6],[18,-13],[22,0],[12,-4],[4,-3],[5,-7],[3,-8],[3,-14],[2,-21],[1,-11],[-2,-15],[-3,-8],[-2,-6],[-46,-92],[-3,-5],[-4,-6],[-10,0],[-7,6],[-12,25],[-8,14],[-10,8],[-20,7],[-6,0],[-6,-1],[-5,-8],[-1,-15],[2,-13],[11,-33],[9,-15],[8,-6],[11,-12],[18,-21],[28,-36],[8,-15],[3,-13],[1,-12],[-1,-11],[-1,-4],[-7,-8],[-9,-6],[-45,1],[-5,5],[-7,14],[-4,13],[-4,43],[-4,8],[-5,12],[-6,2],[-5,0],[-51,-36],[-3,-6],[-4,-71],[0,-25],[1,-12],[7,-24],[8,-15],[7,-9],[13,-4],[13,0],[22,16],[12,5],[5,-4],[9,-13],[5,-15],[2,-9],[0,-8],[-1,-10],[-4,-9],[-6,-7],[-22,-4],[-6,-5],[-89,-95],[-8,-15],[-1,-6],[-1,-11],[4,-10],[8,-11],[10,-7],[15,-1],[18,9],[16,3],[4,-3],[8,-9],[3,-14],[0,-10],[-23,-208],[-1,-15],[-23,-49],[0,-18],[1,-96],[4,-10],[7,-9],[20,-4],[7,-7],[14,-21],[12,-21],[49,-90],[1,-8],[0,-17],[-1,-9],[-11,-109],[9,-56],[-8,-180],[0,-21],[-3,-22],[-5,-23],[-4,-22],[-10,-18],[-23,-21],[-8,-5],[-9,-10],[-5,-12],[-10,-31],[-11,-43]],[[96764,22685],[-20,-10],[-18,0],[-29,0],[-17,0],[-14,1],[-17,0],[-54,-1],[-25,0],[-15,0],[-22,0],[-14,0],[-65,0],[-38,0],[-33,0],[-15,-1],[-1,0],[-29,0],[-21,0],[-3,0],[-14,0],[-19,0],[-10,1],[-39,0],[-26,0],[-33,0],[-39,0],[-44,0],[-1,0],[-15,0],[-25,0],[-15,0],[-38,0],[-95,1],[-15,0],[-15,0],[-15,0],[-27,0],[-37,0],[-30,0],[-19,0],[-28,0],[-27,0],[-43,0],[-33,0],[-37,0],[-30,0],[-40,0],[-14,1],[-15,0],[-17,0],[-71,0],[-57,0],[-2,0],[-24,0],[-58,1],[-22,0],[-21,0],[-82,0],[-45,-1],[-27,0],[-26,0],[-32,0],[-76,-1],[-16,0],[-19,-1],[-42,-1],[-49,0],[-38,0],[-16,0],[-24,-1],[-43,0],[-42,-1],[-34,0],[-52,-1],[-33,0],[-20,0],[-27,0],[-32,-1],[-49,0],[-67,-1],[-84,-1],[-22,0],[-34,-1],[-27,1],[-14,1],[-78,-8],[-22,0],[-26,2],[-5,0],[-1,0],[-20,1],[-21,0],[-28,1],[-78,1],[-43,1],[-17,-1],[-67,0],[-21,0],[-53,0],[-16,0],[-16,0],[-53,0],[-37,0],[-43,-1],[-86,0],[-29,0],[-17,0],[-82,0],[-103,0],[-79,0],[-17,0],[-28,-1],[-107,0],[-26,0],[-102,-1],[-23,-1],[-16,0],[-14,0],[-17,0],[-44,-1],[-42,0],[-70,0],[-36,-1],[-19,0],[-47,-2],[-29,0],[-14,0],[-40,-1],[-36,-1],[-20,0],[-63,-1],[-22,-1],[-22,0],[-2,0],[-18,0],[-21,0],[-40,0],[-42,0],[-26,0],[-18,0],[-41,1],[-2,0],[-53,0],[-60,0],[-59,-1],[-43,0],[-86,0],[-20,0],[-15,0],[-51,-1],[-30,0],[-13,0],[-48,0],[-15,0],[-48,0],[-63,0],[-91,0],[-51,0],[-62,-1],[-76,0],[-15,0],[-48,0],[-49,-1],[-153,-2],[-25,0],[-4,0],[-21,-1],[-52,0],[-41,-1],[-72,0],[-79,-1],[-24,0],[-100,1],[-98,-3],[-29,0]],[[90333,22644],[-7,1],[-17,3],[-20,0],[-31,0],[-50,0],[-51,0],[-108,0],[-41,0],[-53,0],[-57,0],[-36,0],[-59,0],[-24,0],[-4,0],[-19,0],[-28,0],[-119,0],[-51,0],[-68,0],[-42,0],[-41,0],[-65,0],[-134,1],[-53,0],[-55,0],[-89,0],[-80,1],[-28,0],[-15,0],[-35,0],[-51,0],[-16,0],[-85,1],[-60,-1],[-32,1],[-59,0],[-51,0],[-21,0],[-30,0],[-50,0],[-36,0],[-34,0],[-31,0],[-51,1],[-16,-1],[-23,0],[-17,0],[-107,3],[-17,1],[-4,0],[-10,0],[-14,0],[-101,1],[-51,0],[-26,0],[-57,-1],[-18,0],[-17,0],[-20,0],[-13,-1],[-31,0],[-31,-1],[-23,-1],[-17,1],[-63,0],[-31,0],[-15,0],[-13,0],[-29,0],[-14,0],[-36,0],[-43,0],[-21,0],[-51,0],[-72,0],[-37,0],[-50,1],[-30,0],[-24,0],[-39,0],[-37,0],[-16,0],[-32,0],[-15,0],[-36,0],[-67,1],[-38,1],[-12,0],[-22,0],[-14,0],[-14,0],[-32,0],[-44,1],[-36,0],[-40,1],[-48,0],[-69,1],[-50,0],[-37,0],[-14,0],[-22,0],[-28,1],[-51,-1],[-50,1],[-96,0],[-18,1],[-39,1],[-18,-1],[-5,0],[-12,0],[-15,0],[-18,0],[-18,0],[-19,0],[-26,-1],[-5,0],[-14,0],[-42,1],[-18,0],[-30,0],[-22,0],[-17,1],[-22,0],[-51,0],[-21,0],[-65,0],[-84,1],[-37,0],[-45,0],[-94,1],[-51,0],[-55,0],[-29,1],[-17,0],[-50,0],[-89,1],[-72,0],[-17,0],[-2,0],[-24,0],[-10,2],[-6,1]],[[26061,34120],[-4,-262],[0,-59],[0,-77],[0,-122],[0,-40],[0,-81],[0,-41],[0,-67],[1,-51],[0,-82],[0,-151],[0,-52],[0,-39],[0,-56],[0,-66],[0,-39],[0,-2],[0,-79],[0,-105],[0,-46],[0,-81],[0,-63],[0,-61],[-1,-42],[2,-42],[0,-64],[0,-41],[0,-62],[0,-189],[0,-47],[1,-79],[0,-62],[0,-63],[0,-37],[0,-48],[0,-65],[0,-53],[1,-39],[1,-13],[-2,-37],[0,-35],[0,-3],[0,-111],[0,-38],[0,-87],[0,-63],[0,-117],[1,-72],[0,-125],[0,-39],[0,-65],[0,-48],[0,-70],[0,-33],[0,-89],[0,-59],[0,-59],[0,-61],[0,-22],[0,-39],[0,-43],[0,-35],[1,-40],[-1,-48],[0,-72],[1,-60],[0,-59],[1,-38],[0,-211],[0,-83],[0,-76],[-1,-71],[0,-35],[1,-124],[0,-47],[0,-228],[0,-77],[1,-425],[0,-43],[1,-57],[-1,-73],[1,-103],[0,-120],[0,-39],[0,-34],[-1,-43],[0,-56],[0,-52],[0,-102],[2,-246],[0,-88],[0,-67],[-1,-69],[0,-39],[1,-164],[0,-64],[0,-72],[0,-38],[0,-101],[0,-79],[2,-76],[-3,-106],[1,-285],[1,-187],[1,-232],[1,-239]],[[26069,25534],[0,-56],[0,-39],[0,-123],[0,-39],[0,-82],[-2,-98],[0,-35],[0,-75],[1,-98],[-1,-98],[0,-128],[0,-73],[4,-146],[0,-55],[0,-10],[0,-228],[0,-80],[0,-84],[0,-40],[-5,-59],[2,-36],[0,-212],[-1,-272],[1,-196],[-1,-79],[-2,-391]],[[26065,22702],[-14,1],[-42,-1],[-73,1],[-16,-1],[-15,0],[-72,1],[-18,-1],[-27,0],[-18,0],[-15,1],[-36,-1],[-34,2],[-37,-1],[-18,-3],[-72,2],[-144,-1],[-155,-1],[-34,1],[-48,-1],[-28,-1],[-17,0],[-30,0],[-15,0],[-65,1],[-23,0],[-46,2],[-16,1],[-206,-3],[-13,-1],[-18,0],[-27,-1],[-19,0],[-15,0],[-15,0],[-96,0],[-30,0],[-14,3],[-24,-3],[-28,0],[-34,3],[-157,-4],[-68,-3],[-12,-1],[-17,0],[-40,0],[-15,2],[-14,0],[-15,1],[-49,-1],[-95,-2],[-29,0],[-33,-1],[-18,-1],[-23,-1],[-111,-1],[-34,1],[-14,0],[-243,-1],[-25,0],[-45,-2],[-82,-2],[-30,1],[-45,-2],[-24,0],[-6,0],[-49,0],[-28,1],[-62,-3],[-36,-1],[-77,-1],[-22,0],[-52,1],[-16,0],[-263,-4],[-127,-2],[-26,0],[-16,0],[-31,-1],[-26,-1],[-31,-1],[-18,2],[-28,1],[-102,-1],[-17,0],[-34,-4],[-7,-1],[-7,0],[-83,-3],[-16,6],[-108,-2],[-15,0],[-17,1],[-44,-1],[-45,0],[-33,0],[-102,-1],[-36,-4],[-33,0],[-92,1],[-25,2],[-17,0],[-28,0],[-79,-1],[-28,0],[-25,0],[-81,0],[-21,0],[-26,1],[-244,-1],[-24,0],[-66,-1],[-54,1],[-55,-1],[-28,3],[-18,-3],[-15,2],[-14,-2],[-14,1],[-14,1],[-22,-1],[-60,0],[-36,0],[-26,0],[-43,0],[-80,0],[-26,0],[-29,0],[-21,-1],[-55,0],[-57,0],[-53,-1],[-63,1],[-47,0],[-21,0],[-17,-11],[-22,12],[-82,0],[-73,0],[-25,0],[-24,0],[-70,1],[-17,1],[-15,-1],[-57,0],[-18,0],[-37,0],[-47,0],[-15,0],[-15,-1],[-29,1],[-35,-1],[-41,1],[-40,1],[-37,0],[-24,-1],[-14,0],[-26,0],[-42,2],[-37,0],[-21,0],[-58,-1],[-15,1],[-16,0],[-23,-1],[-70,-1],[-62,0],[-37,-1],[-29,0],[-27,1],[-27,-1],[-22,1],[-67,-1],[-23,1],[-49,-1],[-34,1],[-18,1],[-17,2],[-15,0],[-22,-4],[-15,0],[-22,1],[-23,0],[-30,1],[-30,-2],[-19,0],[-26,1],[-23,0],[-20,-1],[-24,1],[-17,0],[-40,-2],[-17,-6],[-16,8],[-55,0],[-117,0],[-32,0],[-82,0],[-49,0],[-30,-2],[-46,1],[-39,0],[-49,0],[-19,1],[-38,-1],[-15,-1],[-23,2],[-22,1],[-42,1],[-17,0],[-47,-1],[-33,1],[-19,0],[-18,0],[-16,1],[-16,0],[-14,0],[-14,-1],[-25,-2],[-19,1],[-115,3],[-55,0],[-17,2],[-61,-2],[-34,0],[-50,0],[-65,0],[-41,0],[-92,0],[-26,0],[-10,-1],[-7,0],[-15,1],[-48,0],[-22,0],[-20,0],[-21,0],[-103,1],[-15,2],[-22,-1],[-88,-1],[-74,2],[-206,0],[-72,0],[-259,0],[-48,0],[-79,-3],[-38,0],[-91,-1],[-15,-3],[-16,4],[-17,3],[-61,0],[-56,-2],[-281,-2]],[[14971,22671],[-41,2],[-50,0],[-29,-2],[-23,-2],[-29,1],[-17,-1],[-13,-1],[-19,1],[-14,0],[-52,1],[-32,1],[-84,-2],[-47,1],[-36,-2],[-14,0],[-27,0],[-21,-2],[-63,1],[-16,-2],[-41,0],[-23,0],[-51,-1],[-54,0],[-23,0],[-55,-1],[-32,0],[-54,0],[-112,0],[-65,0],[-18,0],[-45,0],[-17,4],[-17,-3],[-26,-1],[-51,0],[-42,0],[-68,3],[-14,1],[-70,-2],[-136,4],[-21,-5],[-14,-1],[-15,0],[-34,0],[-60,0],[-16,0],[-66,1],[-24,0],[-38,0],[-44,0],[-25,0],[-50,0],[-16,-1],[-18,3],[-25,2],[-17,0],[-16,1],[-26,-1],[-30,0],[-14,0],[-13,-6],[-53,1],[-28,0],[-62,1],[-118,1],[-150,1],[-654,4],[-247,2],[-38,-9],[-174,0],[-16,-1],[-24,1],[-26,-1],[-26,1],[-13,0],[-17,0],[-30,-1],[-18,0],[-18,0],[-41,-1],[-29,1],[-28,-1],[-17,3]],[[45209,22810],[16,-30],[27,-34],[2,-3],[26,-36],[25,-38],[5,-9],[10,-16],[5,-5],[19,-20],[31,-43],[29,-36],[18,-22],[26,-39],[5,-7],[33,-41],[4,-6],[38,-62],[38,-76],[14,-28],[27,-47],[33,-58],[55,-66],[315,-278],[227,-137],[222,-178],[95,-201],[-1,-117],[-57,-190],[-81,-25],[-63,41],[-63,56],[-65,-46],[-14,-162],[7,-54],[10,-66],[55,-129],[14,-83],[5,-113],[51,-251],[8,-177],[3,-33],[19,-56],[17,-90],[31,-141],[11,-49],[5,-20],[8,-16],[33,-121],[6,-218],[-33,-119],[-68,-178],[-52,-153],[-58,-104],[-17,-67],[-17,-185],[1,-31],[-28,-106],[-35,-238],[2,-10],[-10,-100],[0,-5],[-6,-42],[-5,-36],[-4,-42],[-4,-33],[-4,-46],[-3,-78],[-1,-46],[0,-61],[0,-7],[-3,-39],[-2,-56],[-4,-42],[-3,-42],[-4,-43],[-3,-23],[-1,-9],[-11,-59],[-6,-49],[-10,-56],[-8,-42],[-9,-59],[-8,-58],[-5,-36],[-10,-59],[-5,-36],[-3,-36],[-3,-49],[-1,-71],[2,-67],[4,-54],[8,-75],[5,-46],[27,-119],[12,-24],[12,-43],[12,-49],[9,-39],[11,-36],[8,-44],[3,-13]],[[46165,16074],[-32,9],[-10,3],[-32,13],[-5,-1],[-22,11],[-15,7],[-2,-1],[-23,-3],[-27,-4],[-28,-57],[-104,-4],[-17,-30],[2,-50],[8,-20],[-5,-22],[-10,-53],[0,-8],[-4,-9],[-45,-5],[-3,2],[-3,47],[-54,79],[-37,25],[-15,-7],[-13,-24],[-2,-9],[-2,-12],[0,-6],[11,-129],[-4,-29],[-16,-30],[-94,-92],[-56,-54],[-32,-30],[-60,-18],[-68,-1],[-24,-11],[-23,-26],[-48,-99],[-24,-19],[-38,-27],[-34,-3],[-31,59],[-77,134],[-22,31],[-29,-3],[-51,-24],[-18,-23],[-35,-48],[-9,-17],[-4,-6],[-8,-16],[-2,-39],[-1,-27],[-4,-21],[-12,-49],[-10,-39],[-2,-9],[-22,-96],[3,-21],[-12,-59],[-70,-117],[-26,-23],[-27,-2],[-4,0],[-3,-1],[-9,9],[-5,23],[-13,57],[-27,76],[-8,12],[-7,-1],[-10,-10],[-12,-23],[-9,-38],[-5,-52],[-6,-82],[1,-42],[0,-1],[7,-25],[7,-12],[1,-3],[24,-129],[-5,-26],[-17,-24],[-12,-8],[-17,-2],[-3,-1],[-13,-8],[-23,-18],[-9,-12],[-16,-26],[-24,-39],[-14,-31],[-6,-6],[-19,-4],[-17,0],[-12,7],[-4,6],[-3,11],[1,102],[10,69],[7,53],[3,22],[1,57],[-5,43],[-6,21],[-9,13],[-5,3],[-1,1],[-21,-1],[-65,-65],[-22,-13],[-24,-1],[-29,6],[-11,8],[-16,21],[-4,15],[0,9],[4,23],[17,39],[19,31],[0,1],[7,26],[1,18],[-2,13],[-4,19],[-31,131],[-7,13],[-2,1],[-5,1],[-13,-9],[-27,-17],[-15,-10],[-9,-13],[-3,-8],[-7,-34],[-4,-19],[-28,-97],[-18,-45],[-21,-30],[-2,-4],[-1,-1],[-9,-5],[-11,1],[-14,6],[-6,9],[-6,18],[-5,32],[-6,32],[-11,11],[0,1],[-1,0],[-13,5],[-47,1],[-71,34],[-9,5],[-4,9],[-1,1],[-7,8],[-13,0],[-42,-2],[-11,-5],[-4,-8],[-37,-101],[-2,-16],[0,-32],[0,-14],[-6,-25],[-6,-10],[-1,0],[0,-1],[-10,-7],[-64,-26],[-64,-3],[-8,2],[-55,18],[-3,1],[-72,3],[-68,-11],[-16,-5],[-30,-12],[-4,-1],[-8,-11],[-8,-38],[-3,-54],[-6,-4],[-5,-5],[-9,-8],[-2,-3],[-8,-4],[-18,-12],[-8,-5],[-20,14],[-4,-3],[-6,-17],[-9,1],[-14,7],[-19,8],[-9,3],[-39,69],[-18,20],[-18,10],[-11,-1],[-5,-1],[-7,-2],[-58,-27],[-5,2],[-4,1],[-5,1],[-18,3],[-16,3],[-7,-1],[-3,6],[-4,27],[1,9],[1,12],[11,59],[-3,16],[-8,8],[-8,2],[-6,-6],[-13,-20],[-41,-31],[-10,-1],[-1,-1],[-11,6],[-2,2],[-39,36],[-67,43],[-53,12],[-10,6],[-15,8],[-11,20],[-3,14],[-1,112],[-7,74],[-46,58],[-2,3],[-2,-11],[-8,-77],[-44,-189],[-9,-37],[-8,-12],[-9,-4],[-14,-1],[-10,13],[-4,4],[-54,20],[-71,13],[-53,2],[-27,22],[1,28],[1,3],[3,32],[5,22],[0,1],[31,103],[6,25],[2,52],[0,4],[-2,32],[-29,151],[-4,12],[-9,7],[-12,-2],[-70,-58],[-64,-112],[-70,-50],[-9,-7],[-4,-69],[-1,-22],[4,-26],[16,-46],[5,-11],[12,-12],[3,-15],[-2,-15],[-6,-8],[-14,-2],[-37,22],[-16,12],[-28,21],[-29,8],[-13,0],[-25,-5],[-123,-63],[-23,-17],[-4,-9],[-1,-15],[-1,-126],[-10,-17],[-50,-83],[-2,-91],[-1,-27],[-5,-22],[0,-1],[-13,-21],[-12,-9],[-26,-10],[-21,8],[-11,4],[-4,2],[-6,-5],[0,-1],[-3,-9],[3,-19],[1,-7],[31,-102],[-1,-18],[-35,-50],[-35,14],[-4,2],[-50,19],[-7,-8],[-1,-1],[-1,-3],[-8,-32],[0,-1],[0,-14],[9,-29],[8,-13],[12,-37],[2,-8],[-1,-48],[-10,-11],[-12,-32],[-9,-18],[-27,-7],[-9,-11],[-2,-3],[-1,-2],[-23,-157],[-6,-69],[2,-18],[15,-41],[7,-12],[28,-40],[5,-59],[0,-3],[-8,-178],[-4,-18],[-22,-15],[-38,-14],[-14,1],[-23,6],[-24,7],[-28,-4],[-21,-3],[-27,-10],[-40,-29],[-21,-16],[-12,-26],[-4,-19],[4,-21],[9,-17],[9,-9],[7,-21],[18,-58],[10,-59],[3,-19],[0,-1],[0,-26],[-7,-14],[-13,-10],[-26,-3],[-33,0],[-15,-10],[-86,-58],[-6,-7],[0,-1],[-2,-12],[-4,-28],[-3,-23],[3,-16],[3,-4],[32,-53],[9,-14],[5,-21],[0,-22],[-5,-25],[-9,-20],[-50,-91],[-13,-15],[-15,3],[-21,15],[-19,46],[-4,18],[1,19],[0,2],[-1,17],[-6,12],[-8,4],[-1,0],[-16,-7],[-10,-4],[-13,-10],[-9,-18],[-4,-18],[-12,-93],[-1,-17],[4,-19],[18,-82],[0,-2],[-8,-58],[-4,-14],[-10,-9],[-15,-9],[-12,-3],[-21,-18],[-12,-15],[-11,-19],[-8,-19],[-12,-10],[-31,-16],[-23,-1],[-13,12],[-11,17],[-5,21],[-1,6],[-6,25],[-18,30],[-8,8],[-6,5],[-22,-1],[-5,3],[-9,12],[-7,28],[-2,22],[2,8],[0,29],[0,4],[-5,13],[-9,13],[-8,6],[-17,4],[-12,2],[-18,-2],[-15,-8],[-48,-41],[-42,-58],[-7,-17],[-2,-7],[0,-17],[1,-14],[0,-1],[2,-5],[2,-10],[6,-20],[1,-3],[13,-35],[47,-104],[6,-23],[0,-12],[0,-4],[-1,0],[0,-3],[-8,-25],[-6,-15],[-2,-7],[-2,-3],[-4,-16],[-7,-44],[-3,-35],[5,-18],[3,-10],[1,-3],[0,-1],[11,-8],[10,-1],[1,0],[10,6],[10,6],[3,2],[23,24],[10,6],[19,5],[12,-3],[11,-7],[13,-9],[17,-25],[15,-21],[7,-9],[11,-73],[-11,-7],[-3,1],[-6,-9],[-1,-1],[-3,-14],[-4,-28],[0,-17],[0,-10],[1,-20],[-1,-18],[-4,-24],[-2,-5],[-10,-34],[-9,-20],[-5,-7],[-9,-7],[-15,-1],[-55,33],[-17,13],[-9,10],[-12,18],[-9,13],[-15,15],[-11,5],[-8,2],[-9,-4],[-4,-4],[-12,-30],[-5,-25],[-1,-6],[-6,-43],[0,-45],[-36,-79],[-19,-41],[-9,-17],[-2,-2],[-1,-2],[-17,-37],[-11,-35],[-3,-22],[-1,-1],[0,-41],[2,-23],[2,-16],[3,-64],[6,-46],[3,-16],[1,-5],[1,-3],[4,-16],[7,-39],[2,-19],[-2,-9],[-11,-20],[-58,-62],[-9,-7],[-2,-1],[-2,-1],[-31,-12],[-10,-3],[-22,3],[-22,7],[-7,13],[-3,14],[-4,29],[-2,24],[0,30],[-2,13],[-1,7],[-5,11],[-15,24],[-15,23],[-7,9],[-8,3],[-60,91],[-33,1]],[[40048,11404],[0,466],[1,353],[0,118],[-1,244],[-1,234],[0,156],[1,83],[1,141],[0,61],[0,41],[0,44],[0,39],[0,46],[0,32],[1,43],[0,62],[-1,324],[0,342],[-836,3],[-191,4],[-26,-1],[-19,-1],[-24,-1],[-18,-2],[-29,0],[-31,0],[-51,0],[-20,0],[-15,0],[-20,0],[-19,-1],[-34,1],[-23,1],[-19,-2],[-20,1],[-47,3],[-231,-4],[-138,-2],[-158,1],[-185,1],[-75,1],[-263,1],[-125,0],[-27,-1],[-49,0],[-95,1],[-202,0],[-167,0],[-184,-1],[-1,0],[1,469],[-1,56],[0,248],[0,170],[0,351],[0,360],[0,47],[0,57],[0,35],[0,20],[0,72],[0,35],[0,50],[0,43],[1,9],[-1,85],[0,139],[0,83],[0,28],[0,6],[0,6],[0,330],[0,41],[1,42],[0,56],[0,31],[0,23],[0,421],[0,68],[0,88],[0,130],[0,33],[0,35],[1,36],[0,80],[0,40],[-1,147],[0,55],[0,170],[-1,50],[-6,369],[-2,87],[0,56],[0,66],[0,38],[2,336],[0,54],[1,68],[0,106],[1,175],[0,51],[3,518],[0,5],[0,55],[0,26],[1,96],[1,166],[0,15],[2,475],[0,76],[1,146],[1,213],[-1,109],[-2,206],[-2,541],[0,141],[-120,12],[-127,1],[-14,0],[-16,2],[-55,-1],[-147,-2],[-82,-2],[-15,0],[-54,-1],[-16,0],[-28,0],[-14,0],[-28,-1],[-1,0],[-119,-2],[-184,12],[-81,0],[-89,-3],[-70,-1],[-18,0],[-22,2],[-19,0],[-23,0],[-608,-1],[-37,-1],[-36,1],[-27,0],[-55,0],[-39,0],[-15,0],[-31,-2],[-39,2],[-20,2],[-16,-2],[-84,-1],[-162,-1],[-145,-4],[-32,4],[-239,1],[-20,-1],[-24,1],[-20,1],[-30,-1],[-14,0],[-30,1],[-45,0],[-45,1],[-44,0],[-44,0],[-43,1],[-28,-1],[-34,0],[-283,2],[-22,-1],[-89,0],[-68,0],[-174,1],[-342,3],[-30,0],[-37,0],[-26,0],[-53,0],[-97,1],[-72,1],[-11,0],[-4,0],[-17,0],[-16,0],[-41,1],[-22,2],[-22,-1],[-25,0],[-17,2],[-15,0],[-26,1],[-16,-1],[-47,-1],[-16,1],[-14,-1],[-46,0],[-38,0],[-55,0],[-26,1],[-39,-1],[-26,0],[-63,-2],[-59,0],[-61,1],[-63,1],[-61,0],[-63,-1],[-37,2],[-11,43],[0,74],[1,105],[0,110],[0,102],[0,39],[1,58],[0,66],[0,66],[0,66],[0,66],[0,67],[0,67],[0,74],[1,72],[0,99],[0,48],[0,45],[0,95],[0,53],[-1,46],[0,100],[0,102],[0,101],[0,89],[0,40],[1,157],[0,78],[0,49],[0,50],[0,99],[0,35],[1,133],[0,34],[0,59],[1,46],[0,8],[0,29],[0,48],[0,121],[-105,0],[-23,0],[-152,-2],[-150,-5],[-133,0],[-442,0],[-19,0],[-23,0],[-19,1],[-60,2],[-26,-1],[-63,-1],[-30,0],[-34,0],[-41,-1],[-85,1],[-57,-2],[-51,0],[-33,0],[-100,-4],[-57,2],[-32,0],[-58,0],[-15,-1],[-89,2],[-63,0],[-3,0],[-120,7],[-16,1],[-21,0],[-19,0],[-90,-5],[-16,0],[-52,0],[-42,-1],[-41,1],[-45,-1],[-33,0],[-26,0],[-13,0],[-19,-1],[-15,1],[-36,0],[-41,0],[-28,0],[-64,1],[-15,0],[-52,-1],[-40,0],[-22,0],[-40,0],[-21,0],[-35,0],[-21,-1],[-142,1],[-15,0],[-53,0],[-14,0],[-53,-1],[-32,0],[-35,0],[-48,-1],[-19,0],[-58,-1],[-66,0],[-63,0],[-19,0],[-82,0],[-28,0],[-29,1],[-35,0],[-24,0],[-14,0],[-109,0],[-33,0],[-76,1],[-21,0],[-18,0],[-16,0],[-18,0],[-17,0],[-42,2],[-31,-2],[-29,0],[-22,0],[-48,0],[-31,0],[-33,0],[-35,1],[-112,-1],[-23,0],[-30,-1],[-41,0],[-16,1],[-16,1],[-16,1],[-22,-1],[-32,-2],[-68,2],[-38,-1],[-17,1],[-64,1],[-20,1],[-24,-1],[-26,-2],[-65,-2],[-61,4]],[[40048,11404],[-76,-211],[-3,-5],[-3,-10],[-1,-5],[0,-2],[0,-84],[2,-16],[-1,-31],[-2,-32],[-4,-28],[-8,-25],[-2,-3],[-10,-13],[-12,-6],[-11,-2],[-106,18],[-28,14],[-18,13],[-9,11],[-23,42],[-21,31],[-7,5],[-8,2],[-6,-2],[-26,-27],[-12,-9],[-14,-1],[-5,3],[-11,12],[-10,16],[-3,10],[-2,9],[-4,6],[-5,8],[-12,6],[-30,8],[-16,1],[-117,-79],[-12,-10],[-4,-10],[-7,-24],[0,-1],[-4,-16],[-9,-39],[2,-25],[7,-24],[7,-15],[61,0],[34,0],[7,-5],[8,-13],[2,-6],[0,-23],[-9,-61],[-1,-2],[-12,-39],[-4,-23],[-1,-20],[3,-18],[-1,-24],[-9,-78],[-4,-16],[-24,-41],[-11,-10],[-6,-4],[-13,-1],[-31,9],[-21,15],[-11,3],[-41,0],[-11,-3],[-8,-8],[-11,-13],[-7,-14],[-6,-19],[-5,-30],[-4,-29],[-1,-38],[1,-12],[5,-24],[9,-22],[1,-26],[-7,-21],[-12,-12],[-29,-25],[-49,-45],[-15,-17],[-16,-30],[-10,-30],[-7,-43],[-1,-32],[2,-15],[4,-18],[4,-12],[9,-12],[6,-6],[2,-2],[11,0],[6,3],[11,19],[1,4],[0,2],[8,17],[9,13],[52,36],[7,1],[19,-1],[2,-5],[33,-178],[37,-230],[0,-3],[0,-2],[1,-16],[-3,-21],[0,-2],[-1,-2],[-8,-49],[-2,-5],[-6,-15],[-7,-7],[-42,-43],[-15,-16],[-35,-57],[-14,-32],[-22,-47],[-31,-102],[-48,-108],[-91,-97],[-9,-3],[-17,12],[-11,14],[-16,35],[-22,35],[-9,8],[-8,2],[-8,1],[-28,-44],[-46,-59],[-9,-9],[-21,0],[-3,-1],[-4,-2],[-29,-26],[-11,-20],[-5,-20],[-3,-31],[1,-49],[11,-28],[8,-18],[-1,-11],[-1,-9],[-6,-15],[-6,-15],[-1,-2],[-46,-56],[-8,-9],[-115,-68],[-66,31],[-9,7],[-67,47],[-15,5],[-8,-4],[-4,-7],[-4,-14],[-5,-26],[0,-20],[3,-13],[0,-1],[5,-10],[10,-16],[6,-6],[-4,-91],[-40,-125],[-3,-6],[-4,-4],[-4,-3],[-8,0],[-10,11],[-4,13],[-3,33],[-3,24],[-2,8],[-6,11],[-7,12],[-1,0],[-12,8],[-9,0],[-19,-5],[-12,-8],[-113,-66],[-35,-29],[-3,-2],[-1,-1],[-8,-12],[-85,-221],[-10,-26],[-3,-20],[0,-25],[2,-8],[2,-4],[16,-13],[11,10],[17,14],[12,5],[7,0],[9,-8],[6,-7],[3,-10],[0,-20],[-1,-13],[-3,-12],[-10,-32],[-6,-19],[-29,-116],[7,-88],[9,-112],[3,-17],[4,-17],[5,-12],[11,-12],[14,-10],[18,2],[7,-2],[4,-4],[7,-14],[5,-17],[4,-67],[-1,-22],[-1,-8],[-8,-14],[-14,-10],[-11,-4],[-19,3],[-10,0],[-11,-6],[-26,-21],[-6,-21],[-4,-25],[0,-34],[2,-13],[17,-97],[6,-33],[6,-28],[16,-49],[5,-15],[6,-13],[4,-7],[24,-39],[3,-8],[3,-12],[0,-20],[-3,-15],[-6,-12],[-10,-9],[-14,-3],[-20,-1],[-25,14],[-21,46],[-5,11],[-1,12],[-33,96],[-6,9],[-8,6],[-27,14],[-72,37],[-64,12],[4,-26],[0,-12],[0,-29],[-2,-16],[-14,-52],[-26,-44],[-7,-8],[-18,2],[-10,5],[-30,17],[-12,7],[-6,-3],[-11,-12],[-6,-13],[-1,-22],[3,-15],[4,-11],[11,-18],[26,-28],[8,-16],[4,-12],[0,-17],[-1,-8],[-8,-18],[-4,-7],[-9,-9],[-19,-8],[-21,-15],[-11,-13],[-13,-19],[-15,-36],[-2,-4],[0,-2],[-3,-12],[0,-21],[3,-30],[-1,-18],[-3,-9],[-3,-9],[-5,-6],[-9,-4],[-20,34],[-16,35],[-29,60],[-15,19],[-1,1],[-1,1],[-24,21],[-3,2],[-12,-4],[-10,-10],[-4,-9],[0,-14],[2,-29],[0,-2],[-1,-19],[-4,-19],[-11,-31],[-9,-13],[-1,-1],[-5,-6],[-11,-2],[-13,6],[-8,8],[-30,37],[-8,15],[-46,-41],[-3,-62],[-3,-26],[0,-1],[-1,-1],[-9,-29],[-7,-13],[-7,-8],[-9,-2],[-6,2],[-7,10],[-3,9],[-6,38],[-15,63],[-5,20],[-2,8],[-11,13],[-4,4],[-17,7],[-11,1],[-11,-8],[-13,-17],[-11,-22],[-23,-73],[-7,-42],[-1,-13],[-1,-10],[1,-7],[7,-13],[2,-13],[-2,-20],[-7,-29],[-10,-21],[-5,-11],[-10,-6],[-13,-3],[-5,1],[-10,10],[-6,7],[-5,12],[-1,8],[0,13],[-3,17],[-10,30],[-16,46],[-5,14],[-6,10],[-11,13],[-9,5],[-8,-3],[-5,-3],[-11,-20],[-4,-9],[-1,-9],[0,-39],[3,-25],[1,-2],[5,-36],[2,-17],[-1,-20],[-2,-13],[-5,-15],[-6,-10],[-14,-7],[-12,0],[-50,4],[-9,9],[-4,11],[-3,15],[-1,13],[-2,33],[2,16],[14,47],[1,0],[1,13],[0,7],[-2,6],[-5,10],[-10,7],[-11,6],[-18,0],[-9,0],[-28,-21],[-18,-10],[-25,-5],[-13,-7],[-9,-14],[-6,-15],[-6,-19],[-4,-19],[0,-27],[3,-11],[8,-15],[5,-19],[2,-21],[-2,-20],[-3,-11],[-7,-15],[-9,-9],[-9,-5],[-19,-1],[-10,9],[-4,10],[1,38],[1,9],[-2,34],[-3,14],[-6,26],[-4,13],[-6,10],[-12,20],[-10,7],[-10,5],[-6,1],[-7,-3],[-6,-10],[8,-67],[1,-13],[0,-34],[-6,-29],[-5,-18],[-7,-16],[-11,-10],[-7,-4],[-5,4],[-8,9],[-8,5],[-16,2],[-10,-1],[-12,-10],[-10,-11],[-5,-5],[-10,-18],[-5,-16],[-2,-13],[1,-12],[3,-14],[87,-101],[31,-35],[9,-9],[9,-1],[6,6],[9,9],[12,5],[6,-2],[9,-10],[6,-10],[6,-17],[3,-23],[5,-77],[-11,-56],[2,-64],[-14,-41],[-15,-20],[-27,-20],[-7,-7],[-1,-10],[1,-10],[12,-69],[16,-43],[2,-19],[-1,-13],[-5,-6],[-13,0],[-34,21],[-16,-15],[-13,-12],[-12,-6],[-13,-1],[-18,-6],[-24,-17],[-77,-72],[-23,-22],[-9,-9],[-4,-7],[0,-13],[2,-9],[14,-24],[15,-16],[7,-12],[21,-34],[11,-22],[1,-2],[6,-14],[24,-86],[0,-25],[-10,-18],[-36,58],[-11,13],[-27,34],[-61,63],[-4,0],[-7,-14],[-4,-12],[-2,-9],[-1,-6],[-11,-76],[-4,-29],[-3,-32],[-1,-10],[-5,-8],[-5,-5],[-15,-1],[-14,8],[-39,18],[-36,-4],[-6,-1],[-30,-4],[-1,-14],[-85,-51],[-8,-6],[-3,-7],[-2,-10],[-8,-66],[0,-12],[4,-12],[9,-15],[13,-16],[1,-1],[12,-8],[6,1],[29,6],[23,0],[15,-7],[4,-5],[1,-7],[1,-8],[2,-9],[2,-20],[3,-22],[0,-5],[-6,-11],[-9,-10],[-12,-9],[-1,0],[-34,-11],[-87,-56],[-5,-9],[-2,-8],[-1,-6],[-4,-25],[0,-29],[1,-2],[1,-7],[0,-23],[-3,-12],[-6,-9],[-47,-33],[-23,-3],[-6,2],[-9,7],[-23,49],[-2,9],[1,11],[3,16],[-2,8],[-4,8],[-12,3],[-8,0],[-11,-3],[-9,-8],[-8,-9],[-11,-18],[-16,-61],[-4,-12],[-3,-81],[-1,-50],[-24,-16],[-9,2],[-15,9],[-6,6],[-2,9],[-2,14],[0,23],[1,3],[1,2],[0,31],[-2,23],[-6,18],[-9,22],[-8,12],[-19,11],[-43,27],[-15,7],[-10,4],[-7,1],[-86,14],[-6,3],[-22,26],[-4,8],[-4,16],[-5,9],[-9,6],[-9,4],[-17,-3],[-17,-4],[-10,-16],[-119,-192],[-7,-3],[-39,-15],[-19,-32],[-13,-12],[-13,-3],[-11,6],[-6,1],[-7,-7],[-9,-28],[-5,-25],[-6,-42],[-2,-17],[-4,-15],[-7,-13],[-7,-4],[-7,-1],[-14,5],[-11,1],[-9,-5],[-9,-15],[-6,-15],[-3,-11],[-2,-6],[-7,-26],[2,-12],[6,-12],[21,-21],[13,-19],[9,-18],[3,-9],[0,-26],[-3,-21],[-3,-13],[-7,-13],[-25,-22],[-7,-3],[-4,2],[-6,8],[-12,32],[-8,20],[-25,-17],[-23,-17],[-10,2],[-31,18],[-41,35],[-1,-1],[-6,-2],[-13,-9],[-7,-10],[-42,-137],[0,-1],[-3,-13],[0,-18],[2,-8],[18,-29],[1,-12],[-1,-16],[-4,-3],[-11,0],[-16,9],[-25,30],[-13,12],[-23,16],[-8,2],[-2,1],[-1,0],[-59,24],[-25,14],[-5,-43],[-2,-15],[-4,-16],[-5,-5],[-66,-38],[-72,-20],[-5,-2],[-4,-5],[-11,-36],[-3,-12],[-19,-8],[-82,5],[-13,1],[-7,8],[-4,10],[-8,63],[-10,81],[0,2],[0,16],[10,24],[2,14],[-2,15],[-2,12],[-8,20],[-8,16],[-7,8],[-12,12],[-9,3],[-35,2],[-7,-3],[-7,-4],[-4,-11],[0,-12],[15,-91],[1,-3],[2,-12],[3,-4],[4,-5],[-35,-32],[-35,-20],[-57,-28],[-20,-9],[-3,-3],[-12,-22],[-31,-4],[-22,-15],[-6,-13],[-4,-14],[0,-13],[2,-7],[7,-6],[14,-1],[15,8],[12,4],[8,-1],[13,-7],[1,-1],[6,-11],[0,-16],[-1,-9],[-9,-29],[-15,-28],[-30,-13],[-2,-1],[-8,-7],[-9,-13],[-2,-4],[-9,-24],[-6,-34],[-7,-9],[-37,-35],[-8,0],[-8,-1],[-10,-3],[-4,-2],[-9,-7],[-13,-49],[0,-23],[3,-20],[5,-35],[4,-9],[5,-8],[0,-1],[7,-3],[28,-16],[10,-3],[5,3],[40,51],[6,9],[7,22],[2,12],[29,-43],[24,-48],[6,-11],[-19,7],[-17,6],[-39,9],[-4,1],[-4,-4],[-38,-59],[-14,-21],[-7,-18],[-2,-11],[0,-12],[5,-15],[8,-20],[21,-32],[72,-39],[9,-7],[8,-13],[5,-16],[2,-7],[1,-7],[0,-5],[0,-19],[-2,-6],[-3,-2],[-6,-6],[-14,-1],[-11,8],[-4,3],[-10,6],[-8,0],[-10,-4],[-37,-23],[-3,-6],[0,-11],[6,-10],[21,-8],[3,-6],[0,-4],[0,-9],[-3,-7],[-63,-59],[-6,-5],[-18,-11],[-41,-12],[-4,1],[-84,58],[-10,6],[-6,13],[-20,46],[0,8],[4,6],[16,9],[12,15],[1,6],[2,17],[-2,10],[-17,40],[-5,3],[-7,-6],[-6,-10],[-7,-18],[-2,-29],[-2,-47],[-3,-5],[-23,-18],[-41,-22],[-10,-2],[-19,8],[-6,4],[-3,5],[1,16],[7,62],[4,8],[1,1],[8,16],[10,6],[10,-6],[5,1],[3,6],[1,7],[0,18],[-2,11],[-4,9],[-12,6],[-7,-2],[-15,-10],[-13,-8],[-22,-21],[-17,-21],[-13,-10],[-17,0],[-37,6],[-13,0],[-10,2],[-17,8],[-11,11],[-16,29],[-10,10],[-12,5],[-12,-5],[-7,-7],[-7,-12],[-4,-13],[-2,-14],[0,-1],[2,-7],[2,-3],[2,-4],[3,-5],[7,-13],[3,-18],[-1,-11],[-1,-36],[-1,-31],[33,-136],[25,-35],[44,-60],[9,-33],[0,-13],[-1,-12],[-5,-13],[-6,-11],[-8,-11],[-65,-67],[-4,2],[-3,4],[-3,6],[-1,12],[0,41],[-2,20],[-3,10],[-4,8],[-5,0],[-23,-11],[-29,-15],[-19,-4],[-5,1],[-12,12],[-3,5],[-3,12],[0,28],[-4,5],[-30,14],[-18,9],[-11,4],[-9,0],[-10,-7],[-24,-27],[-5,-10],[0,-6],[3,-12],[6,-10],[8,-13],[15,-12],[9,-1],[6,4],[8,14],[7,7],[8,3],[3,-1],[2,-2],[-1,-6],[-10,-81],[-3,-16],[-10,-32],[-8,-18],[-7,-13],[-59,-45],[-22,-17],[-15,24],[-7,10],[0,8],[-1,22],[-3,12],[-5,9],[-11,9],[-7,0],[-2,-2],[-4,-3],[-5,-10],[-10,9],[-30,31],[-6,6],[-31,33],[-5,22],[-23,127],[-15,81],[-1,90],[-2,4],[-84,52],[-8,3],[-7,1],[-7,-3],[-7,-7],[-3,-10],[-1,-13],[0,-2],[7,-15],[-36,-173],[-1,-5],[-56,-86],[-5,-8],[-4,0],[-47,-5],[-12,-1],[19,-106],[-27,-90],[-2,-7],[-4,1],[-35,8],[-1,0],[-1,30],[-1,16],[-16,174],[-6,26],[-3,7],[-6,9],[-11,4],[-1,0],[-16,-5],[-43,-26],[-5,-3],[-3,-9],[-2,-10],[5,-9],[9,-8],[6,-5],[7,-15],[4,-16],[-1,-21],[-2,-8],[-5,-9],[-6,-3],[-4,1],[-7,7],[-32,54],[-3,4],[-5,12],[0,23],[-3,15],[-5,8],[-78,63],[-6,0],[-9,-8],[-1,-1],[-11,30],[-114,350],[-4,41],[-12,120],[-1,5],[-17,49],[-1,5],[-11,-9],[-11,-9],[-2,0],[-13,-4],[-9,-1],[-75,-1],[-7,-10],[-16,-20],[-7,-10],[-8,-10],[-6,-8],[-1,-138],[-1,-7],[-23,-35],[-6,-6],[-7,-2],[-45,20],[-14,6],[-50,0],[-9,-32],[0,-22],[4,-13],[26,-48],[4,-7],[8,-21],[6,-18],[1,-16],[-3,-6],[-3,-3],[-9,-1],[-5,3],[-16,16],[-28,29],[-15,-16],[-9,-14],[-5,-13],[2,-6],[35,-50],[10,-13],[36,-39],[7,-1],[2,-5],[0,-16],[-7,-96],[-2,-13],[-5,-18],[-10,-20],[-8,-12],[-13,-8],[-74,-20],[-5,5],[0,1],[-15,30],[-21,52],[-54,-48],[-12,-13],[-4,-8],[-1,-2],[-4,-9],[0,-11],[0,-5],[4,-5],[6,-6],[8,0],[4,3],[4,9],[4,23],[0,4],[3,6],[3,4],[5,0],[2,-3],[5,-10],[1,-3],[7,-59],[0,-13],[0,-4],[-5,-5],[-54,-12],[-48,-6],[-4,5],[0,8],[3,95],[1,25],[-31,-26],[-60,-53],[-66,-49],[-18,-11],[-5,1],[-3,4],[-2,4],[2,7],[9,29],[3,92],[1,6],[-28,4],[-28,3],[-14,-50],[12,-17],[8,-15],[-1,-21],[-2,-7],[-3,-3],[-11,1],[-23,18],[-21,9],[-4,3],[-4,9],[-37,142],[-6,24],[0,10],[2,8],[5,5],[5,1],[7,-3],[24,-23],[5,2],[2,3],[0,14],[-3,10],[-26,87],[-3,6],[-8,3],[-9,-3],[-3,-8],[2,-16],[0,-16],[-3,-10],[-3,-5],[-27,-35],[-15,-18],[-6,0],[-28,25],[-19,19],[-20,23],[-9,18],[-5,12],[-3,7],[1,88],[14,27],[3,17],[-1,9],[-5,6],[-7,3],[-12,-5],[-4,-3],[-5,-9],[-2,-7],[-2,-18],[-1,-11],[-2,-8],[-12,-29],[-7,-18],[-20,-46],[-3,-5],[-5,2],[-6,7],[-8,14],[-6,15],[-40,69],[-10,12],[-1,1],[-15,7],[-19,6],[-7,-2],[-1,-6],[-6,-41],[-2,-11],[4,-18],[2,-6],[11,-13],[12,2],[2,-1],[2,-1],[2,-4],[2,-11],[-1,-16],[-1,-3],[-16,-21],[-4,-4],[-10,0],[-15,4],[-53,44],[-6,6],[-5,9],[0,11],[3,9],[11,16],[3,5],[10,18],[26,83],[0,10],[-7,12],[-7,6],[-7,2],[-40,4],[-15,-5],[-12,-3],[-59,192],[-1,4],[-9,30],[-5,9],[-2,1],[-12,10],[-17,6],[-98,17],[-54,-65],[-3,-4],[-5,-7],[-3,-7],[-18,-52],[-1,-12],[0,-19],[1,-25],[-1,-11],[-3,-5],[-45,-70],[-40,-2],[-85,16],[-4,7],[-14,55],[-3,10],[-1,18],[1,7],[57,54],[19,-2],[5,-4],[4,-2],[6,9],[15,23],[10,15],[9,184],[0,25],[-1,7],[-7,16],[-3,-1],[-14,-2],[-5,-9],[-4,-18],[-48,-88],[-35,39],[-15,-31],[-32,-78],[-7,-12],[-5,-1],[-5,-1],[-16,7],[-40,9],[-6,-3],[-3,-6],[0,-10],[13,-34],[10,-25],[5,-12],[6,-4],[7,-1],[13,4],[5,-1],[5,-9],[2,-9],[0,-26],[-2,-4],[-7,-2],[-35,-33],[-6,1],[-3,5],[-9,41],[-1,34],[-4,17],[-3,6],[-78,49],[4,68],[-67,51],[-7,5],[-7,-5],[-3,-11],[-4,-16],[-3,-17],[-2,-45],[-4,-13],[-4,-8],[-12,-9],[-14,-2],[-10,9],[-8,14],[0,16],[16,64],[-49,-52],[-5,-5],[0,-5],[-2,-18],[-2,-12],[-3,-8],[-5,-5],[-4,-4],[-29,-21],[-11,-1],[-6,12],[-2,7],[-1,12],[-2,10],[-4,7],[-13,6],[-7,2],[-15,-8],[-10,-11],[-48,-78],[-6,-13],[-5,-12],[0,-9],[2,-5],[5,-8],[16,0],[8,-3],[2,-4],[4,-81],[0,-12],[-2,-23],[-10,-107],[-2,-8],[-5,-6],[-7,-2],[-49,11],[-6,7],[-5,20],[-1,17],[2,11],[4,15],[5,13],[10,17],[0,12],[-25,43],[-13,23],[-47,38],[-6,4],[-47,12],[-21,4],[-6,0],[-3,-6],[-2,-24],[1,-12],[17,-45],[23,-61],[-6,1],[-10,6],[-12,10],[-44,76],[-60,119],[-3,9],[0,26],[-2,22],[-1,5],[-7,10],[-9,11],[-23,27],[-40,28],[-6,0],[0,-1],[-5,-3],[-2,-7],[0,-2],[1,-15],[0,-51],[-2,-19],[-16,-60],[-9,-14],[-18,-25],[-6,-5],[-7,1],[-5,5],[1,12],[2,6],[0,17],[-3,14],[-3,5],[-1,3],[-3,2],[-54,-23],[-6,-9],[-3,-15],[-1,-12],[0,-19],[0,-5],[3,-15],[6,-19],[1,-13],[1,-16],[-1,-7],[-5,-8],[-4,-2],[-15,0],[-18,3],[-4,3],[-4,7],[-10,83],[-1,14],[2,9],[3,9],[2,4],[2,3],[13,18],[2,8],[5,124],[-65,215],[-3,6],[-83,60],[-31,10],[-11,-3],[-6,-2],[-13,0],[-12,8],[-34,40],[-3,5],[1,15],[5,11],[6,4],[13,-1],[27,-5],[2,-1],[26,-15],[28,-24],[17,0],[14,9],[35,67],[52,6],[5,3],[5,7],[2,11],[-1,20],[-4,12],[-6,10],[-10,12],[-13,20],[-9,23],[-3,11],[-2,11],[1,28],[2,17],[6,50],[2,8],[3,3],[6,-1],[7,-14],[5,-12],[7,-10],[9,-6],[5,0],[6,1],[8,7],[11,15],[2,6],[-1,108],[-2,15],[-17,85],[-74,-84],[-3,-4],[-29,61],[-16,62],[2,12],[4,5],[9,-5],[12,-13],[7,-3],[14,0],[6,0],[22,9],[9,8],[3,6],[2,8],[10,56],[0,15],[-3,9],[-5,3],[-9,-3],[-3,-55],[-1,-9],[-3,-9],[-6,-2],[-2,3],[-8,18],[-2,13],[0,1],[-1,11],[-3,33],[0,56],[-2,24],[-3,15],[-13,56],[-3,9],[-4,8],[-10,9],[-9,-5],[-76,-47],[-7,-6],[-3,-10],[0,-15],[2,-10],[1,-1],[10,-14],[8,-14],[3,-9],[0,-10],[-3,-8],[-2,-7],[-37,-49],[-2,-11],[-5,-13],[-30,-40],[-5,-5],[-12,-3],[-37,24],[-5,6],[-3,5],[-6,9],[-7,3],[-9,2],[-44,-23],[-7,-5],[-4,-7],[0,-8],[1,-1],[20,-34],[3,-8],[1,-10],[-3,-7],[-9,-8],[-10,-2],[-46,16],[-6,3],[-10,18],[-28,53],[1,14],[1,4],[18,26],[3,9],[0,12],[-3,11],[-6,10],[-9,6],[-11,0],[-45,40],[-8,6],[-6,4],[-8,1],[-5,-5],[-9,-13],[-3,-8],[-4,-16],[0,-17],[1,-2],[14,-46],[6,-15],[23,-37],[4,-13],[3,-20],[0,-15],[-2,-9],[-1,-4],[-7,-2],[-66,54],[-21,34],[-6,11],[0,18],[11,32],[0,18],[-8,13],[-9,6],[-64,11],[-8,1],[-7,1],[-6,-3],[-4,-7],[-20,-97],[0,-10],[20,-41],[21,-23],[9,7],[18,2],[4,0],[41,-1],[3,-8],[0,-18],[-6,-47],[-2,-8],[-3,-3],[-10,-3],[-5,4],[-16,19],[-6,4],[-8,-1],[-7,-12],[-4,-10],[-18,-69],[7,-51],[3,-14],[0,-12],[-2,-4],[-32,-13],[-26,-1],[-7,4],[-88,112],[-18,39],[-9,10],[-15,15],[-6,5],[-12,8],[-5,0],[-6,-5],[-3,-13],[0,-68],[0,-50],[1,-6],[4,-4],[22,-5],[16,1],[1,-15],[-17,-64],[-10,-16],[-13,-20],[-13,-12],[-7,-1],[-9,15],[-5,12],[-16,48],[1,37],[3,6],[3,9],[0,18],[-2,6],[-4,8],[-37,41],[-5,2],[-3,1],[-64,26],[-5,-1],[-1,-3],[-1,-5],[6,-68],[7,-29],[3,-11],[4,-9],[17,-13],[5,-10],[6,-13],[1,-7],[0,-9],[-2,-4],[-22,-32],[-7,-2],[-6,8],[-4,18],[-3,10],[-2,4],[-47,62],[-25,75],[-13,41],[-23,70],[-4,7],[-5,1],[-10,0],[-36,72],[-26,29],[-9,2],[-61,-34],[-45,-29],[-37,-25],[-8,-8],[-7,-12],[-3,-7],[1,-12],[3,-7],[14,-16],[9,-9],[5,-3],[14,-2],[16,-4],[3,-7],[0,-10],[-17,-68],[-2,-6],[-4,-4],[-34,2],[-72,-73],[-2,-2],[0,-2],[-2,-22],[0,-3],[0,-5],[-16,-154],[-36,16],[-35,16],[-1,-7],[0,-4],[0,-2],[-11,-31],[-11,-32],[-31,-14],[-9,-1],[-4,8],[1,9],[15,19],[2,4],[3,54],[2,29],[-1,25],[-3,13],[-8,15],[-1,2],[-14,16],[-42,51],[-4,17],[0,-7],[3,-8],[4,-14],[0,-2],[2,-7],[1,-3],[1,-16],[-10,-59],[-8,-53],[-19,-65],[-21,-44],[-5,-8],[-7,-10],[-9,-2],[-65,-11],[-16,-2],[-12,-1],[-8,12],[-4,5],[-29,19],[-2,1],[-11,5],[-19,-2],[-9,-5],[-35,-9],[-26,62],[9,43],[3,8],[0,18],[9,44],[-32,61],[-2,5],[-23,43],[-23,-66],[-10,-25],[-4,-12]],[[27373,3860],[1,15],[2,142],[1,74],[-4,54],[0,43],[0,88],[1,288],[0,50],[0,40],[0,73],[0,40],[1,39],[1,51],[0,34],[0,35],[0,39],[0,71],[1,99],[0,83],[1,34],[-1,54],[1,40],[-1,49],[0,82],[0,10],[0,63],[0,43],[0,268],[1,40],[-1,80],[1,219],[-1,243],[0,236],[1,137],[0,112],[2,331],[0,333],[0,282],[1,471],[0,363],[1,110]],[[27382,8818],[0,44],[-1,54],[0,43],[0,80],[0,35],[0,79],[1,139],[0,102],[-1,79],[1,160],[0,80],[0,63],[0,62],[0,90],[0,51],[1,38],[0,63],[-1,36],[0,36],[0,60],[0,57],[0,53],[0,29],[0,77],[-1,48],[1,42],[-1,108],[0,58],[1,35],[1,106],[0,91],[0,46],[0,50],[0,172],[0,38],[0,99],[-2,49],[-15,1],[-13,0],[-6,0],[-27,0],[-46,0],[-16,0],[-50,0],[-49,0],[-31,-4],[-12,0],[-97,2],[-23,0],[-17,2],[-21,0],[-16,0],[-24,0],[-15,0],[-30,0],[-18,-1],[-14,1],[-20,-2],[-18,0],[-43,0],[-31,1],[0,44],[0,61],[-1,34],[1,44],[-1,53],[0,36],[-1,116],[0,45],[0,49],[0,47],[-1,91],[0,69],[0,69],[1,40],[-1,39],[0,50],[0,62],[0,41],[-1,47],[0,55],[0,43],[0,46],[0,49],[0,33],[0,23],[13,35],[4,36],[-13,25],[-6,38],[0,65],[0,41],[1,36],[-4,203],[-1,39],[-2,174],[0,378],[0,50],[4,39],[-1,47],[0,56],[0,35],[-1,92],[0,69],[0,89],[-1,72],[0,35],[0,45],[-1,43],[0,99],[0,100],[-1,97],[0,60],[0,34],[-1,105],[0,100],[0,47],[0,69],[0,69],[-1,52],[0,61],[0,45],[0,47],[-1,101],[0,75],[0,40],[-1,48],[0,129],[-1,87],[0,45],[0,70],[-1,149],[0,59],[0,100],[-1,63],[0,64],[0,101],[-1,51],[-1,73],[0,165],[-1,64],[1,68],[0,101],[0,45],[0,50],[-1,65],[0,138],[0,40],[-1,38],[1,73],[-2,52],[-1,415],[-1,56],[0,43],[1,55],[-1,40],[-1,40],[0,34],[-1,86],[0,148],[-1,73],[-1,86],[0,107],[-1,101],[1,104],[0,34],[6,52],[-1,4],[-7,33],[-2,111],[1,39],[0,42],[0,61],[0,101],[-1,69],[0,69],[-1,54],[-1,68],[-1,151],[0,68],[0,60],[-1,102],[0,52],[-1,43],[-1,102],[0,106],[-1,124],[0,81],[-1,33],[-1,64],[-1,93],[0,48],[0,33],[-2,234],[-2,235],[1,114],[-3,133],[-1,53],[0,82],[3,41],[-1,59],[0,14],[-1,39],[-1,37],[1,37],[-2,42],[-1,112],[-1,73],[-1,90],[0,255],[0,34],[0,138],[-1,54],[-24,0],[-168,1],[-88,-1],[-121,2],[-66,1],[-16,0],[-34,1],[-40,1],[-14,-2],[-36,1]],[[55165,22764],[-1,-78],[0,-408],[0,-218],[0,-43],[0,-40],[-2,-339],[0,-46],[1,-281],[-1,-131],[-1,-293],[0,-35],[0,-34],[-1,-351],[-1,-49],[1,-52],[0,-248],[-3,-182],[-1,-27],[0,-55],[-1,-148],[0,-45],[-1,-176],[2,-74],[-1,-44],[-2,-274],[-1,-110],[0,-41],[1,-68],[2,-40],[-1,-67],[0,-61],[0,-60],[-1,-71],[1,-99],[0,-14],[-1,-86],[-1,-276],[0,-99],[-1,-350],[0,-126],[-1,-134],[0,-39],[-1,-170],[1,-50],[-1,-74],[0,-212],[0,-57],[0,-33],[0,-58],[0,-33],[0,-48],[0,-60],[0,-77],[0,-140],[0,-66],[0,-40],[0,-40],[-1,-48],[0,-44],[0,-59],[0,-107],[0,-34],[0,-71],[0,-65],[0,-40],[0,-112],[0,-327],[0,-91],[0,-43],[-1,-126],[1,-40],[0,-147],[-1,-127],[2,-59],[-3,-34],[0,-62],[0,-69],[0,-47],[-1,-252],[0,-54],[0,-43],[0,-36],[0,-35],[0,-39],[0,-103],[-1,-82],[0,-38],[0,-40],[-4,-216],[2,-129],[-1,-188],[0,-171],[0,-197],[1,-344],[-1,-172],[0,-144],[2,-334],[1,-38],[-1,-44],[0,-60],[0,-93],[0,-66],[1,-61],[1,-66],[9,-42],[29,0],[45,-1],[13,0],[29,2],[30,-1],[81,-1],[103,-2],[32,-3],[3,0],[25,-1],[15,-1],[23,-2],[1,0],[33,0],[43,-2]],[[55659,11343],[2,-46],[1,-34],[-1,-54],[0,-98],[0,-53],[0,-49],[0,-49],[-1,-48],[0,-51],[0,-99],[0,-49],[0,-108],[0,-7],[0,-76],[0,-50],[0,-52],[0,-41],[0,-33],[1,-93],[0,-77],[0,-39],[0,-35],[-1,-60],[0,-51],[0,-79],[0,-51],[0,-65],[0,-65],[0,-48],[-1,-53],[-4,-32],[0,-37],[2,-58],[1,-52],[1,-47],[0,-39],[-1,-72],[1,-60],[0,-39],[-2,-69],[0,-47],[-1,-42],[0,-36],[2,-764],[0,-40],[0,-47],[-1,-47],[0,-47],[1,-44],[0,-46],[-2,-67],[1,-40],[-1,-35],[0,-3],[0,-57],[0,-33],[0,-33],[0,-67],[0,-62],[0,-33],[0,-37],[-1,-33],[0,-35],[0,-66],[0,-58],[0,-41],[0,-63],[0,-37],[-1,-34],[0,-62],[0,-37],[0,-34],[0,-67],[0,-35],[-1,-93],[-1,-33],[0,-62],[0,-346],[1,-76],[0,-47],[1,-45],[-5,-30],[0,-146],[0,-50],[1,-79],[0,-91],[0,-38],[1,-310],[1,-76],[0,-42],[3,-52],[-2,-43],[-1,-41],[-1,-41],[1,-37],[0,-52],[-1,-83],[0,-39],[0,-37],[-1,-317],[0,-120],[0,-99],[0,-36],[0,-73],[0,-40],[0,-34],[-1,-43],[0,-60],[0,-92],[0,-98],[-1,-60],[0,-44],[0,-90],[0,-33],[0,-65],[0,-67],[-1,-64],[0,-63],[0,-157],[-1,-102],[0,-83],[0,-27],[0,-16],[0,-108],[-1,-71],[-1,-38],[1,-63],[1,-48],[0,-38],[0,-38],[-2,-76],[0,-36],[1,-379],[-2,-378],[-1,-35],[0,-46],[0,-71],[0,-51],[0,-43],[0,-164],[0,-43],[-1,-61],[0,-53],[0,-33],[-3,-276],[0,-199],[1,-380],[0,-89]],[[55639,207],[-23,-1],[-62,-1],[-35,1],[-17,1],[-21,-2],[-39,0],[-27,3],[-32,-1],[-21,0],[-26,1],[-72,2],[-22,0],[-51,1],[-51,1],[-56,-1],[-31,-1],[-33,1],[-25,0],[-14,0],[-19,0],[-18,1],[-57,1],[-15,1],[-28,0],[-38,0],[-26,0],[-54,2],[-63,-1],[-33,1],[-70,1],[-30,2],[-23,0],[-219,2],[-21,0],[-14,0],[-14,-1],[-17,0],[-188,0],[-63,3],[-30,0],[-21,0],[-15,0],[-17,1],[-18,0],[-17,0],[-14,0],[-37,1],[-45,-2],[-15,0],[-17,-1],[-27,0],[-28,1],[-27,2],[-16,0],[-29,0],[-22,1],[-29,2],[-27,-1],[-24,-1],[-19,0],[-25,0],[-21,-1],[-13,0],[-27,1],[-31,-1],[-23,1],[-22,1],[-28,-1],[-17,0],[-14,1],[-18,-1],[-18,1],[-17,0],[-18,1],[-16,0],[-26,0],[-14,-1],[-14,0],[-27,1],[-16,0],[-46,0],[-91,1],[-15,0],[-33,1],[-28,0],[-23,0],[-22,0],[-34,1],[-18,-1],[-44,1],[-36,2],[-15,-1],[-17,1],[-14,-1],[-16,2],[-25,0],[-1,0],[-14,0],[-18,-1],[-20,2],[-134,0],[-42,-2],[-196,8],[-22,1],[-122,-4],[-18,0],[-110,0],[-140,3],[-229,5],[-48,0],[-48,2],[-66,1],[-79,0],[-52,1],[-39,1],[-206,3],[-186,3],[-28,1],[-31,1],[-48,0],[-101,-1],[-236,-3],[-96,1],[-20,-1],[-16,1],[-18,1],[-15,0],[-15,0],[-18,0],[-44,3],[-25,0],[-6,0],[-160,6],[-302,0],[-325,-1],[-174,5],[-20,2],[-17,-1],[-18,-1],[-87,-7],[-390,8],[-21,1],[-23,1],[-20,0],[-24,1],[-19,-2],[-19,3],[-24,0],[-69,-1],[-46,1],[-31,0],[-1,0],[-24,0],[-24,1],[-29,0],[-41,1],[-34,0],[-15,0],[-14,0],[-20,0],[-17,0],[-19,0],[-15,0],[-14,0],[-14,0],[-20,0],[-16,0],[-15,1],[-18,0],[-114,0],[-322,2],[-305,1]],[[47208,281],[-1,46],[3,89],[25,84],[15,62],[15,98],[7,96],[1,9],[5,99],[0,97],[-4,65],[-23,116],[-30,124],[-39,130],[-35,144],[-45,147],[-16,51],[-11,36],[-43,120],[-33,100],[-22,45],[-26,78],[-25,17],[-16,3],[-23,3],[-26,3],[-22,4],[-18,6],[-18,10],[-16,10],[-2,1],[-18,12],[-14,10],[-14,6],[-13,10],[-25,16],[-17,17],[-9,9],[-22,23],[-20,20],[-20,23],[-11,19],[-23,33],[-14,19],[-14,26],[-14,30],[-15,36],[-11,29],[-17,42],[-12,36],[-9,26],[-10,30],[-6,29],[-16,56],[-9,26],[-8,29],[-12,42],[-10,43],[-7,29],[-14,47],[-9,28],[-12,24],[-10,22],[-12,26],[-12,23],[-15,29],[-12,30],[-13,35],[-15,46],[-21,52],[-15,36],[-12,26],[-17,46],[-11,23],[-11,23],[-8,26],[-13,36],[-13,32],[-27,46],[-24,46],[-11,22],[-12,26],[-12,33],[-16,33],[-14,29],[-8,29],[-10,27],[-12,29],[-24,62],[-12,36],[-13,36],[-10,29],[-10,36],[-15,49],[-8,29],[-9,36],[-8,33],[-10,39],[-9,42],[-5,33],[-8,39],[-7,39],[-7,39],[-8,49],[-18,177],[-16,185],[-2,46],[0,49],[0,52],[2,33],[4,39],[4,36],[4,32],[9,56],[5,36],[4,32],[7,33],[7,65],[1,56],[-1,68],[-2,52],[0,46],[-1,55],[-1,53],[-2,36],[-4,52],[-2,36],[-7,49],[-8,42],[-11,33],[-13,42],[-11,29],[-14,43],[-16,39],[-15,36],[-17,42],[-18,54],[-14,47],[-13,23],[-7,36],[-14,59],[-6,66],[-5,31],[-4,38],[-3,118],[0,46],[1,51],[-1,42],[-1,40],[1,38],[2,42],[7,40],[5,36],[12,69],[9,56],[7,33],[10,27],[51,224],[25,109],[18,68],[22,65],[18,59],[27,62],[2,6],[17,43],[22,68],[23,72],[15,39],[20,53],[17,52],[20,58],[24,66],[26,65],[26,75],[23,78],[17,56],[19,52],[11,26],[26,46],[24,47],[11,21],[15,36],[14,39],[14,26],[38,49],[23,36],[24,39],[17,36],[19,49],[12,39],[11,39],[13,49],[20,78],[11,36],[17,62],[11,46],[11,43],[16,75],[14,65],[8,36],[17,64],[1,4],[14,59],[12,36],[10,42],[9,46],[8,39],[5,33],[4,32],[3,33],[5,49],[4,45],[0,43],[-1,52],[-3,39],[-4,65],[0,53],[-16,39],[-12,32],[-4,11],[-13,33],[-24,54],[-13,33],[-27,49],[-28,78],[-19,46],[-22,62],[-23,65],[-23,65],[-24,69],[-18,47],[-6,15],[-16,52],[-15,65],[-8,52],[-2,46],[1,42],[8,56],[8,36],[17,55],[18,62],[16,65],[19,59],[13,30],[27,55],[12,26],[18,39],[12,36],[15,43],[13,37],[3,8],[16,59],[13,49],[31,114],[9,26],[14,46],[3,11],[15,48],[18,75],[8,39],[5,28],[3,11],[9,52],[9,42],[0,4],[8,32],[7,36],[11,52],[9,56],[7,39],[6,42],[14,69],[6,42],[6,36],[6,39],[6,56],[1,36],[1,39],[-1,39],[-3,46],[-2,55],[-4,75],[-2,49],[-1,59],[-1,45],[0,59],[0,31],[0,15],[0,42],[-2,33],[-1,65],[-1,46],[-2,42],[-1,38],[0,8],[-1,46],[-1,13],[-3,52],[-6,78],[-2,49],[-6,33],[-7,55],[-1,3],[0,4],[-6,35],[-7,36],[-9,53],[-5,32],[-1,3],[-8,49],[-8,49],[-10,33],[-7,42],[-9,33],[-26,134],[-11,46],[-2,6],[-11,36],[-8,36],[-12,42],[-12,42],[-14,49],[-11,33],[-9,29],[-12,40],[-11,35],[-9,33],[-7,29],[-9,40],[-7,35],[-7,30],[-10,49],[-8,39],[-12,52],[-7,36],[-8,33],[-13,45],[-10,39],[-17,62],[-1,5],[-10,31],[-11,43],[-9,49],[-6,26],[-5,19],[-6,30],[-18,55],[0,2],[-21,57],[-15,42],[-14,46],[-10,26],[-10,23],[-11,29],[-9,36],[-8,33],[-9,37]],[[66892,22687],[0,-6],[1,-37],[1,-37],[-1,-44],[0,-42],[0,-41],[0,-40],[1,-69],[-1,-33],[-1,-49],[1,-42],[0,-43],[0,-46],[0,-38],[0,-46],[0,-41],[-1,-34],[0,-47],[0,-37],[0,-33],[0,-52],[0,-58],[0,-62],[1,-422],[3,-200],[0,-80],[-2,-43],[1,-142],[0,-74],[-1,-402],[1,-197],[0,-103],[0,-161],[-5,-466],[0,-9],[1,-61],[0,-36],[0,-51],[-1,-56],[0,-96],[4,-58],[0,-132],[-3,-311],[0,-99],[1,-59],[-3,-95],[1,-133],[0,-47],[-1,-76],[1,-123],[2,-173],[-1,-41],[-1,-46],[-3,-76],[-1,-281],[1,-69],[0,-56],[1,-56],[-1,-83],[0,-60],[0,-64],[0,-141],[0,-89],[1,-189],[-1,-199],[0,-163],[0,-69],[-1,-84],[0,-2],[-1,-169],[0,-148],[-1,-110],[0,-35],[0,-43],[0,-34],[1,-36],[0,-33],[-1,-72],[1,-50],[-1,-108],[1,-59],[4,-264],[-4,-135],[-2,-95],[0,-36],[1,-173],[-2,-88],[1,-158],[1,-68],[-1,-76],[0,-38],[1,-115],[0,-43],[0,-54],[0,-55],[-1,-83],[0,-158],[-1,-75],[0,-44],[0,-40],[1,-38],[0,-49],[0,-42],[0,-47],[0,-56],[0,-90],[0,-47],[-1,-49],[1,-143],[2,-367],[0,-6],[0,-37],[0,-73],[0,-2],[0,-70],[1,-41],[0,-109],[0,-71],[1,-184],[-3,-49],[-1,-158],[0,-66],[0,-92],[0,-98]],[[66883,11358],[-21,-10],[-77,1],[-88,0],[-82,-1],[-17,0],[-48,1],[-85,0],[-47,-1],[-32,1],[-17,0],[-28,-1],[-23,1],[-37,0],[-28,0],[-25,1],[-25,-1],[-46,1],[-39,1],[-87,1],[-44,1],[-39,0],[-27,0],[-28,2],[-16,0],[-26,-1],[-37,0],[-37,-1],[-40,2],[-28,-1],[-31,0],[-75,-1],[-26,1],[-55,-3],[-21,-1],[-18,1],[-14,1],[-39,-1],[-35,0],[-16,1],[-49,0],[-62,0],[-24,0],[-14,0],[-21,0],[-38,0],[-22,0],[-29,0],[-138,1],[-12,0],[-40,0],[-88,0],[-93,0],[-98,0],[-88,1],[-93,-1],[-89,1],[-91,1],[-149,1],[-50,0],[-23,1],[-27,0],[-43,0],[-109,2],[-23,0],[-55,1],[-101,1],[-18,0],[-40,1],[-72,-1],[-48,1],[-29,0],[-62,-1],[-23,0],[-120,0],[-45,0],[-93,0],[-73,0],[-25,0],[-23,0],[-19,0],[-78,-1],[-16,1],[-34,0],[-18,1],[-4,-1],[-49,0],[-35,-1],[-27,1],[-34,0],[-15,-2],[-16,-2],[-2,0],[-19,0],[-20,0],[-28,1],[-17,1],[-17,6],[-17,1],[-2,0],[-38,-3],[-19,-2],[-121,1],[-40,0],[-201,2],[-19,0],[-38,-1],[-40,-1],[-24,0],[-155,-1],[-18,0],[-14,-1],[-31,0],[-15,0],[-304,-2],[-208,-1],[-18,0],[-16,0],[-22,-1],[-18,1],[-33,0],[-84,0],[-28,-1],[-19,0],[-15,0],[-64,4],[-129,2],[-16,-6],[-90,0],[-31,-1],[-21,0],[-17,0],[-35,0],[-16,0],[-19,0],[-95,0],[-44,0],[-70,0],[-69,-1],[-57,-1],[-84,0],[-14,0],[-28,0],[-21,0],[-16,1],[-60,4],[-125,-5],[-71,-2],[-23,0],[-66,-1],[-46,0],[-43,-1],[-14,0],[-5,0],[-20,0],[-15,0],[-27,0],[-39,5],[-124,0],[-7,0],[-45,-2],[-29,-1],[-155,-4],[-124,1],[-44,-1],[-29,-1],[-56,1],[-42,-1],[-2,0],[-14,1],[-149,-1],[-31,2],[-20,3],[-20,3],[-32,1],[-23,1],[-68,-5],[-35,-3],[-69,-5],[-68,0],[-67,0],[-62,-2],[-17,-1],[-57,0],[-28,0],[-189,-2],[-20,0],[-25,0],[-14,0],[-68,0],[-297,-5],[-19,0],[-55,-1],[-37,0],[-15,1],[-22,-1],[-24,-1],[-78,-1],[-59,-1],[-45,1],[-64,2],[-2,0],[-2,0],[-28,1],[-23,0],[-16,1],[-97,2],[-20,0],[-22,1],[-64,2],[-38,0],[-80,1],[-22,0],[-110,1],[-28,0],[-19,0],[-15,0],[-124,1],[-72,0],[-39,2],[-43,-1],[-114,0],[-22,0],[-48,1],[-21,0],[-26,-1],[-14,2],[-16,0],[-21,1],[-26,-2],[-17,2],[-19,0],[-47,3],[-43,0],[-14,-1],[-45,-1],[-17,0],[-20,-6],[-29,1],[-14,1]],[[14971,22671],[1,-38],[0,-117],[0,-232],[3,-67],[1,-46],[-2,-42],[-2,-465],[2,-253],[0,-47],[1,-123],[0,-65],[8,-382],[1,-93],[1,-21],[0,-38],[5,-236],[0,-8],[0,-28],[1,-83],[1,-66],[4,-35],[-2,-36],[4,-178],[1,-41],[-1,-57],[0,-33],[1,-35],[2,-50],[1,-46],[1,-72],[0,-76],[-2,-92],[0,-92],[1,-61],[0,-8],[0,-51],[-2,-390],[0,-61],[0,-205],[1,-139],[0,-60],[0,-42],[1,-103],[0,-261],[0,-72],[1,-48],[0,-33],[2,-362],[0,-33],[0,-41],[2,-71],[0,-113],[0,-73],[1,-43],[0,-131],[0,-131],[0,-100],[0,-108],[-1,-68],[0,-35],[0,-46],[-1,-78],[-1,-44],[0,-70],[0,-41],[1,-40],[0,-73],[0,-19],[-1,-75],[0,-489],[0,-99],[-1,-74],[0,-148],[0,-71],[-1,-83],[0,-41],[0,-77],[-1,-73],[0,-39],[-1,-183],[1,-59],[1,-36],[-1,-174],[0,-52],[-3,-209],[5,-477],[1,-160],[1,-313],[1,-46],[0,-65],[0,-33],[1,-77],[0,-138],[1,-61],[1,-50],[0,-60],[0,-54],[0,-33],[1,-73],[1,-70],[0,-51],[0,-70],[0,-62],[1,-66],[0,-98],[0,-48],[1,-50],[0,-45],[1,-61],[0,-63],[0,-46],[4,-38],[-3,-42],[0,-92],[1,-48],[0,-45],[1,-142],[-1,-64]],[[15017,11301],[-53,-2],[-18,0],[-32,-1],[-20,0],[-17,-1],[-118,-2],[-32,-1],[-10,0],[-19,1],[-16,0],[-13,0],[-162,-3],[-94,-3],[-1,0],[-16,-2],[-56,-4],[-15,0],[-23,-1],[-14,-1],[-17,0],[-47,-2],[-21,0],[-28,-3],[-42,0],[-16,-1],[-46,0]],[[14071,11275],[-24,-1],[-42,-1],[-79,-6],[-51,-1],[-17,-1],[-20,-1],[-14,0],[-18,-1],[-18,-1],[-19,0],[-25,-1],[-29,0],[-30,-1],[-31,-2],[-15,0],[-18,0],[-15,-2],[-41,-1],[-51,-2],[-62,-2],[-61,-2],[-46,-1],[-15,0],[-84,0],[-37,-1],[-32,0],[-20,0],[-20,0],[-44,0],[-22,1],[-27,0],[-22,-1],[-31,1],[-22,0],[-15,0],[-25,0],[-19,-1],[-17,0],[-23,0],[-35,0],[-28,0],[-19,0],[-68,1],[-19,0],[-23,0],[-99,0],[-54,0],[-16,0],[-76,0],[-4,0],[-18,0],[-103,0],[-55,0],[-23,0],[-35,0],[-63,0],[-18,0],[-100,0],[-17,-1],[-38,1],[-80,0],[-27,0],[-60,0],[-26,0],[-17,0],[-15,0],[-27,0],[-36,0],[-54,0],[-38,-1],[-41,0],[-25,1],[-31,0],[-151,0],[-18,0],[-68,0],[-32,0],[-62,0],[-25,0],[-47,0],[-14,0],[-25,0],[-14,0],[-108,5],[-18,0],[-19,0],[-137,-3],[-35,0],[-16,-1],[-24,-5],[-17,0],[-69,1],[-92,1],[-26,3],[-26,0],[-20,-1],[-122,2],[-4,0],[-15,-1],[-12,-1],[-5,-1],[-24,1],[-98,0],[-48,0],[-13,0],[-14,0],[-24,-1],[-16,0],[-24,1],[-32,1],[-27,1],[-311,-1],[-88,0],[-22,1],[-22,0],[-14,-1],[-28,0],[-24,1],[-15,0],[-19,-1],[-45,1],[-154,-1],[-59,-4],[-18,-1],[-2,0],[-35,1],[-87,4],[-98,2],[-14,-2],[-15,-2],[-71,3],[-20,0],[-30,0],[-27,0],[-14,1],[-42,0],[-19,0],[-22,-2],[-19,4],[-26,-2],[-16,0],[-34,0],[-32,-1],[-18,0],[-19,0],[-28,1],[-28,0],[-26,1],[-56,-1],[-76,-1],[-18,1],[-34,0],[-42,0],[-102,0],[-30,1],[-6,0],[-20,-1],[-15,1],[-16,0],[-35,-1],[-16,0],[-21,0],[-80,1],[-27,0],[-25,0],[-18,0],[-16,0],[-27,0],[-207,0],[-71,0],[-19,0],[-48,0],[-18,0],[-100,0],[-21,1],[-29,-1],[-67,0],[-73,0],[-21,1],[-23,0],[-37,-1],[-160,4],[-27,0],[-125,-1],[-75,-1],[-74,-1],[-38,0],[-35,0],[-35,0],[-19,0],[-26,0],[-14,0],[-27,0],[-23,0],[-26,0],[-47,0],[-17,0],[-29,0],[-204,3],[-47,-1],[-42,0],[-120,-1],[-17,0],[-74,7],[-81,1],[-41,0],[-106,2],[-74,1],[-91,0],[-46,1],[-23,1],[-79,-1],[-25,0],[-31,0],[-80,-6],[-24,-2],[-66,-1],[-24,0],[-29,0],[-111,-2],[-18,-1],[-5,0],[-69,-1],[-281,-2],[-15,3],[-54,0],[-16,-1],[-21,-1],[-17,1],[-16,0],[-17,1],[-18,0],[-19,0],[-14,0],[-14,1],[-14,-1],[-17,-1],[-16,1],[-29,1],[-15,0],[-36,0],[-141,-1],[-16,1],[-21,0],[-18,0],[-17,-1],[-48,1],[-19,0],[-28,0],[-49,0],[-18,2],[-17,-1],[-16,1],[-14,-1],[-29,1],[-40,0],[-133,1],[-17,0],[-56,0],[-321,1],[-75,1],[-52,0],[-22,0],[-7,1],[-18,0],[-29,0],[-81,0],[-87,-1],[-20,0],[-119,2],[-106,2],[-1,-1],[-42,-3],[-15,-2],[-278,0],[-26,0],[-15,1],[-75,0],[-39,1],[-61,-1],[-179,-1],[-110,1],[-95,0],[-117,1],[-148,2],[-75,0],[-49,1],[-122,1],[-18,1],[-26,1],[-19,0],[-6,0],[-54,0],[-65,1],[-83,-13],[-94,1],[-71,1],[-46,0],[-144,1],[-7,0],[-31,1],[-209,-1]],[[59,11257],[0,317],[1,206],[0,122],[0,135],[0,170],[0,16],[1,355],[0,82],[0,33],[-1,40],[0,93],[0,41],[0,43],[0,94],[1,266],[-1,156],[0,15],[0,151],[0,375],[1,118],[-1,82],[-2,144],[-1,40],[-2,158],[-3,132],[1,49],[6,897],[0,33],[2,242],[0,201],[1,375],[0,9],[0,62],[0,394],[1,247],[0,69],[0,82],[0,196],[1,198],[0,246],[0,12],[1,476],[1,198],[1,122],[-1,519],[0,198],[0,224],[0,73]],[[80273,22692],[0,-2],[1,-243],[0,-160],[0,-76],[0,-63],[0,-33],[0,-35],[0,-75],[1,-91],[-1,-74],[1,-35],[0,-8],[0,-58],[0,-70],[0,-79],[0,-93],[0,-136],[0,-83],[1,-46],[0,-50],[0,-103],[0,-142],[0,-67],[0,-63],[0,-480],[0,-227],[0,-251],[0,-348],[1,-126],[-1,-138],[-1,-334],[-1,-389],[0,-84],[0,-37],[-1,-190],[0,-135],[0,-110],[-1,-251],[0,-80],[0,-16],[-1,-141],[0,-7],[-2,-463],[1,-222],[0,-55],[0,-103],[0,-49],[-1,-29],[-1,-28],[0,-45],[0,-70],[-1,-262],[0,-66],[0,-63],[0,-33],[-1,-61],[-1,-44],[-3,-38],[2,-39],[3,-35],[0,-74],[-1,-88],[-1,-144],[1,-154],[-1,-76],[0,-99],[-1,-100],[0,-37],[0,-32],[0,-15],[-1,-23],[1,-140],[1,-132],[-2,-116],[-2,-179],[-2,-153],[0,-43],[0,-3],[2,-276],[0,-27],[1,-144],[0,-89],[0,-384],[0,-69],[0,-61],[0,-117],[0,-124],[1,-58],[0,-57],[-1,-47],[1,-197],[0,-216],[0,-286],[0,-41],[-1,-146],[3,-466]],[[80265,11345],[-87,-8],[-22,2],[-79,1],[-31,1],[-151,-1],[-32,0],[-1,0],[-38,-1],[-25,1],[-25,1],[-46,-1],[-25,0],[-34,1],[-22,0],[-38,0],[-14,0],[-19,0],[-49,1],[-102,0],[-80,0],[-19,0],[-27,0],[-56,-1],[-80,0],[-20,1],[-46,0],[-17,0],[-62,-1],[-38,0],[-98,0],[-16,0],[-34,1],[-131,0],[-120,0],[-60,0],[-78,0],[-74,0],[-29,0],[-1,0],[-18,0],[-106,1],[-69,0],[-82,1],[-35,0],[-35,0],[-50,0],[-25,0],[-29,0],[-24,0],[-88,0],[-72,0],[-21,0],[-37,1],[-17,0],[-32,0],[-37,0],[-56,0],[-36,0],[-96,0],[-76,0],[-52,1],[-26,1],[-24,1],[-7,0],[-7,1],[-36,-1],[-16,-1],[-16,-1],[-27,0],[-31,0],[-18,0],[-84,1],[-38,0],[-46,0],[-64,0],[-104,1],[-37,0],[-27,0],[-19,0],[-93,1],[-105,0],[-34,-1],[-23,2],[-25,-2],[-55,1],[-26,4],[-15,0],[-25,1],[-116,-2],[-55,0],[-43,-1],[-35,-1],[-167,-1],[-34,0],[-20,0],[-48,0],[-92,0],[-85,0],[-14,0],[-85,1],[-39,0],[-54,0],[-79,-1],[-31,1],[-25,0],[-24,-1],[-58,-2],[-37,0],[-55,0],[-46,-1],[-24,3],[-26,0],[-61,0],[-40,0],[-33,0],[-111,-1],[-94,0],[-150,0],[-29,-1],[-39,0],[-62,0],[-37,0],[-44,0],[-97,0],[-51,0],[-25,-1],[-36,1],[-14,0],[-34,-1],[-55,0],[-63,-1],[-90,0],[-17,0],[-32,0],[-14,0],[-46,-1],[-79,1],[-25,0],[-75,0],[-15,0],[-26,0],[-24,0],[-115,0],[-118,0],[-21,0],[-118,-1],[-22,0],[-55,-2],[-1,0],[-58,1],[-20,0],[-93,1],[-52,-1],[-115,0],[-163,-2],[-38,0],[-73,2],[-22,-1],[-59,0],[-75,0],[-13,0],[-136,1],[-99,0],[-14,1],[-12,0],[-7,1],[-22,-2],[-16,0],[-31,3],[-28,0],[-39,-1],[-25,-1],[-16,6],[-18,-6],[-16,0],[-26,0],[-18,-1],[-15,-7],[-18,7],[-47,-3],[-30,-1],[-55,-1],[-17,5],[-40,0],[-73,-1],[-17,1],[-20,2],[-71,-1],[-15,0],[-65,-2],[-109,-1],[-136,1],[-73,2],[-23,0],[-11,-1],[-21,-1],[-16,-1],[-21,0],[-18,0],[-39,1],[-47,0],[-15,0],[-15,0],[-42,0],[-49,0],[-32,1],[-39,1],[-37,-1],[-30,-1],[-20,1],[-51,1],[-86,0],[-17,0],[-23,0],[-90,1],[-53,0],[-20,0],[-7,0],[-23,0],[-67,-1],[-138,1],[-17,3],[-57,-1],[-62,0],[-87,1],[-2,0],[-16,-3],[-174,0],[-13,-2],[-111,1],[-37,1],[-112,0],[-57,0],[-18,-1],[-66,-4],[-222,0],[-57,4],[-49,1],[-87,0],[-24,0],[-29,0],[-87,0],[-49,1],[-91,0],[-40,0],[-25,0],[-73,0],[-111,1],[-17,0],[-3,0],[-83,-1],[-66,1],[-40,0],[-96,0],[-127,0],[-16,1],[-68,1],[-17,1],[-27,-1],[-35,0],[-61,0],[-33,-3]],[[67341,11346],[-53,1],[-124,4],[-38,0],[-18,1],[-15,0],[-170,2],[-40,4]],[[27382,8818],[-25,3],[-4,0],[-9,0],[-225,0],[-18,-3],[-16,-1],[-16,1],[-17,0],[-53,-1],[-16,0],[-20,0],[-31,0],[-23,0],[-62,0],[-14,0],[-24,0],[-18,-1],[-17,2],[-15,4],[-136,-3],[-79,-3],[-14,1],[-20,0],[-24,1],[-151,0],[-15,-1],[-22,-1],[-21,1],[-120,11],[-110,0],[-61,-1],[-278,-14],[-13,0],[-50,1],[-37,1],[-13,-1],[-25,1],[-18,1],[-21,1],[-35,-1],[-16,1],[-28,0],[-17,-2],[-63,6],[-106,-1],[-29,0],[-37,-2],[-39,0],[-116,-4],[-21,1],[-148,3],[-61,0],[-84,2],[-134,2],[-90,0],[-187,-1],[-153,0],[-32,0],[-83,3],[-40,-7],[-243,4],[-261,5],[-91,2],[-17,-3],[-20,1],[-16,0],[-52,0],[-23,1],[-16,0],[-42,0],[-17,-1],[-32,-2],[-28,0],[-16,0],[-29,1],[-41,0],[-17,0],[-71,0],[-17,-1],[-26,0],[-244,6],[-35,-4],[-153,2],[-18,0],[-22,-1],[-18,-1],[-14,0],[-15,-2],[-19,2],[-55,7],[-83,-2],[-143,-2],[-27,-1],[-19,1],[-32,0],[-52,-3],[-66,9],[-26,-1],[-14,-1],[-31,-4],[-14,0],[-15,0],[-79,1],[-39,0],[-20,-1],[-30,-1],[-17,0],[-17,0],[-22,0],[-13,0],[-20,1],[-15,1],[-19,0],[-30,7],[-232,-8],[-15,0],[-37,1],[-33,0],[-31,0],[-22,0],[-46,0],[-24,1],[-43,0],[-17,1],[-11,3],[-14,5],[-221,-1],[-23,1],[-16,0],[2,468],[1,67],[-1,46],[0,46],[0,41],[1,38],[0,74],[-1,73],[0,39],[0,46],[0,75],[0,72],[0,85],[0,45],[0,93],[0,59],[0,44],[0,148],[0,325],[0,69],[-1,467],[-1,96],[-22,-1],[-42,-1],[-27,0],[-49,-1],[-14,0],[-18,-1],[-15,0],[-29,-1],[-24,-1],[-25,0],[-15,0],[-113,-3],[-90,-1],[-72,-1],[-93,-1],[-29,0],[-18,0],[-28,-1],[-97,-1],[-22,0],[-15,0],[-58,-1],[-26,1],[-31,-1],[-20,0],[-17,0],[-45,0],[-27,-1],[-17,0],[-19,0],[-17,0],[-40,0],[-38,0],[-25,0],[-37,0],[-41,0],[-32,0],[-38,0],[-39,0],[-27,-1],[-59,0],[-54,0],[-17,0],[-19,0],[-47,0],[-32,0],[-23,0],[-32,-1],[-39,0],[-31,0],[-90,-1],[-28,0],[-109,-1],[-15,3],[-19,-2],[-24,0],[-61,-1],[-28,1],[-23,0],[-15,-1],[-15,-1],[-27,0],[-14,0],[-17,2],[-18,3],[-17,0],[-18,1],[-20,-12],[-41,0],[-86,-1],[-60,0],[-63,1],[-18,-2],[-26,0],[-115,-2],[-20,0],[-104,-1],[-17,-1],[-34,-1],[-23,-1],[-33,0],[-31,-1],[-23,1],[-18,-1],[-15,0],[-36,-1],[-17,3],[-97,-7],[-17,-1],[-23,0],[-15,0],[-16,-1],[-15,-8],[-22,7],[-23,-1],[-34,1],[-39,-2],[-55,-1],[-31,-1],[-34,0],[-18,-1],[-21,1],[-96,-1],[-17,-1],[-16,-1],[-18,2],[-113,-5],[-14,1],[-29,-1],[-62,1],[-31,-1],[-26,-1],[-62,-1],[-29,1],[-47,1],[-24,0],[-18,0],[-19,0],[-37,0],[-31,1],[-22,-2],[-123,1],[-22,0],[-34,0],[-34,1],[-27,0],[-30,-1],[-70,0],[-20,1],[-48,0],[-111,0],[-22,0],[-16,0],[-1,0],[-32,0],[-25,0],[-55,1],[-19,0],[-22,0],[-14,0],[-41,0],[-32,-1],[-29,0],[-48,1],[-56,0],[-16,0],[-19,0],[-17,0],[-15,0],[-19,-1],[-30,0],[-19,1],[-21,0],[-17,-1],[-13,0],[-51,1],[-30,0],[-5,0],[-11,-1],[-71,-1],[-14,0],[-87,-1]],[[90333,22644],[0,-147],[0,-48],[-1,-37],[0,-68],[0,-57],[1,-51],[0,-51],[0,-484],[0,-264],[0,-43],[0,-97],[2,-72],[-2,-224],[-1,-237],[0,-46],[-1,-429],[0,-270],[1,-114],[0,-102],[0,-131],[1,-36],[0,-87],[0,-285],[-1,-287],[0,-335],[1,-143],[0,-72],[-1,-534],[-1,-264],[-2,-634],[-1,-473],[0,-1],[-2,-724],[-2,-689],[0,-468],[0,-33],[-1,-258],[0,-175],[1,-479],[0,-518],[1,-428],[0,-403],[0,-71],[0,-86],[0,-35],[0,-76],[0,-56],[1,-61],[-1,-53],[0,-68],[0,-51],[0,-459]],[[90325,11330],[-39,-1],[-23,0],[-45,-1],[-46,0],[-20,0],[-78,1],[-29,-1],[-264,0],[-18,-2],[-1,0],[-12,2],[-75,0],[-50,0],[-17,0],[-33,0],[-23,0],[-31,1],[-44,1],[-118,0],[-56,-1],[-48,1],[-46,1],[-112,-1],[-37,0],[-27,0],[-95,0],[-71,0],[-182,4],[-43,-4],[-181,0],[-51,0],[-29,0],[-21,0],[-50,0],[-15,0],[-35,0],[-17,0],[-21,0],[-27,0],[-18,0],[-34,0],[-40,0],[-20,0],[-41,0],[-50,1],[-49,0],[-38,0],[-38,0],[-24,0],[-14,1],[-24,0],[-74,-1],[-52,0],[-37,1],[-50,-1],[-19,0],[-26,0],[-29,0],[-27,0],[-50,0],[-14,0],[-15,0],[-19,0],[-23,0],[-50,0],[-15,0],[-63,0],[-67,0],[-55,0],[-69,0],[-29,1],[-17,-1],[-24,0],[-16,0],[-46,1],[-24,0],[-76,-1],[-18,0],[-50,0],[-66,0],[-84,0],[-32,0],[-18,1],[-50,-1],[-31,0],[-32,0],[-33,0],[-73,0],[-104,0],[-20,0],[-14,0],[-43,0],[-25,-1],[-25,0],[-15,0],[-35,0],[-16,0],[-35,0],[-50,0],[-32,0],[-17,0],[-56,-1],[-59,1],[-36,0],[-39,-1],[-59,-1],[-19,1],[-32,-1],[-36,0],[-41,0],[-57,0],[-43,0],[-50,0],[-20,0],[-34,0],[-3,0],[-29,0],[-15,0],[-27,0],[-44,0],[-28,0],[-51,0],[-46,0],[-50,1],[-21,0],[-33,0],[-62,1],[-20,0],[-29,0],[-68,0],[-31,1],[-23,-1],[-25,0],[-29,0],[-24,0],[-29,0],[-21,1],[-62,0],[-32,-1],[-70,0],[-59,0],[-26,0],[-53,0],[-70,0],[-27,0],[-50,0],[-50,0],[-34,1],[-19,0],[-20,0],[-14,0],[-38,0],[-29,0],[-22,0],[-47,1],[-44,0],[-59,0],[-69,1],[-32,0],[-53,0],[-23,0],[-41,0],[-31,0],[-28,0],[-22,0],[-23,0],[-56,0],[-21,0],[-17,-1],[-43,0],[-21,0],[-80,0],[-44,0],[-19,0],[-34,0],[-19,0],[-28,0],[-30,0],[-21,-1],[-24,1],[-25,0],[-50,-1],[-21,0],[-28,0],[-35,0],[-16,0],[-60,0],[-40,0],[-83,0],[-17,0],[-60,0],[-40,0],[-30,0],[-13,0],[-16,0],[-14,-1],[-25,0],[-27,0],[-15,1],[-40,-1],[-33,2],[-14,-1],[-19,-1],[-15,1],[-15,0],[-41,0],[-108,-2],[-172,1],[-21,0],[-178,1],[-82,2],[-279,1],[-59,-2],[-50,1],[-40,0],[-39,0],[-20,0],[-72,1],[-186,1],[-42,0],[-49,0],[-15,0],[-23,0],[-41,1],[-24,0],[-46,1],[-15,0],[-19,0]],[[80636,11337],[-40,-1],[-22,0],[-19,0],[-16,0],[-23,0],[-22,0],[-14,2],[-22,0],[-57,1],[-41,0],[-16,1],[-17,-3],[-31,1],[-17,0],[-14,7]],[[91022,3],[0,157],[0,88],[0,42],[0,131],[0,63],[-1,72],[1,64],[-1,69],[0,36],[0,94],[0,75],[0,42],[0,37],[0,131],[0,97],[0,61],[0,55],[0,46],[0,75],[0,57],[-1,66],[0,64],[0,131],[0,65],[-2,50],[-85,31],[-55,17],[-43,16],[-13,5],[-39,12],[-28,10],[-37,12],[-19,2],[-2,1],[-20,6],[-30,10],[-25,9],[-18,24],[0,107],[0,65],[0,66],[0,82],[0,49],[0,65],[0,131],[0,65],[0,66],[0,66],[0,44],[0,44],[0,108],[0,132],[0,77],[0,50],[-1,62],[1,456],[0,238],[0,183],[0,55],[1,70],[-1,63],[0,62],[0,66],[0,86],[0,74],[0,35],[0,27],[0,63],[0,2],[0,35],[0,67],[0,66],[0,33],[0,103],[0,117],[0,39],[1,63],[1,170],[1,148],[-1,42],[0,38],[0,58],[0,260],[0,64],[1,39],[0,70],[0,33],[0,136],[0,126],[0,66],[-1,41],[2,193],[0,36],[0,83],[0,6],[0,37],[0,72],[0,40],[0,46],[0,34],[-1,62],[0,63],[0,45],[0,66],[0,54],[-1,122],[1,425],[0,49],[0,86],[0,197],[0,135],[0,44],[1,450],[0,39],[0,130],[0,66],[0,40],[0,24],[0,52],[1,57],[0,84],[0,136],[0,76],[0,121],[0,97],[0,43],[-1,63],[0,46],[0,48],[0,161],[0,62],[0,45],[0,42],[0,29],[-1,54],[1,55],[0,65],[0,67],[0,65],[0,65],[0,63],[0,3],[0,43],[0,42],[0,23],[0,66],[0,65],[0,191],[0,48],[-1,8],[-2,4],[-2,-3],[-5,-1],[-83,0],[-43,-1],[-32,1],[-22,-1],[-78,0],[-15,3]],[[96764,22685],[-3,-23],[-1,-15],[9,-16],[10,-8],[111,23],[7,7],[16,19],[15,27],[35,-17],[-38,-101],[-10,-20],[-8,-6],[-38,-21],[-9,-7],[-6,-11],[-3,-11],[5,-11],[32,-22],[18,0],[5,3],[16,16],[25,23],[13,9],[16,8],[23,3],[11,-3],[5,-5],[8,-13],[2,-9],[-2,-8],[-1,-4],[-6,-4],[-33,1],[-57,-45],[-8,-9],[-3,-6],[-10,-29],[-4,-19],[-3,-18],[-1,-26],[1,-5],[10,-20],[4,-4],[7,1],[86,21],[7,4],[13,15],[18,31],[7,6],[6,-2],[5,-8],[2,-10],[4,-74],[-1,-17],[-3,-14],[-8,-15],[-6,-6],[-15,1],[-33,13],[-13,-1],[-7,-9],[-3,-20],[1,-8],[3,-16],[8,-22],[6,-13],[14,-10],[12,-5],[10,0],[5,2],[13,13],[10,18],[8,28],[5,9],[9,7],[8,1],[13,-8],[13,-15],[5,-15],[1,-12],[-1,-8],[-23,-168],[-3,-14],[-5,-6],[-14,-12],[-29,-11],[-13,-1],[-11,-4],[-4,-4],[-5,-8],[-2,-10],[-1,-13],[2,-11],[10,-17],[14,-16],[9,-6],[10,0],[7,4],[8,7],[22,15],[20,10],[28,5],[8,-4],[3,-8],[1,-18],[-1,-7],[-30,-92],[-20,-59],[2,-62],[2,-70],[5,-29],[4,-8],[8,-7],[4,-2],[4,6],[3,12],[-1,6],[-1,39],[7,21],[10,19],[11,10],[9,3],[12,-5],[6,-11],[6,-16],[7,-34],[6,-58],[1,-5],[2,-6],[5,-11],[8,-6],[10,-6],[7,-1],[7,3],[40,34],[12,6],[10,0],[11,-5],[4,-8],[3,-16],[1,-16],[-6,-39],[-7,-20],[-7,-13],[-15,-12],[-13,-1],[-15,10],[-16,7],[-10,0],[-8,-6],[-4,-11],[-2,-15],[1,-31],[3,-16],[4,-13],[5,-14],[14,-18],[31,-33],[9,-6],[6,-2],[12,3],[4,3],[21,20],[8,12],[12,8],[8,-1],[8,-8],[3,-11],[11,-38],[5,-19],[0,-15],[-3,-13],[-2,-7],[-7,-6],[-34,-19],[-13,-6],[-53,-1],[-16,-6],[-11,-13],[-3,-14],[1,-16],[1,-13],[2,-6],[4,-9],[6,-4],[12,3],[56,19],[9,11],[5,11],[10,17],[18,12],[17,6],[6,1],[13,-3],[11,-8],[14,-27],[4,-15],[1,-30],[-3,-15],[-4,-7],[-11,-2],[-5,4],[-91,-92],[-15,-33],[3,-71],[3,-6],[8,-5],[6,2],[3,6],[9,34],[4,10],[8,8],[12,6],[21,3],[9,-2],[39,-16],[8,-7],[5,-9],[3,-9],[1,-10],[0,-17],[-1,-15],[-3,-8],[-6,-7],[-12,-1],[-20,6],[-14,1],[-11,-3],[-12,-12],[-9,-17],[-2,-16],[0,-28],[4,-13],[6,-5],[5,0],[24,15],[2,3],[12,5],[15,1],[17,-7],[8,-6],[6,-10],[4,-16],[26,-121],[3,-41],[11,-23],[7,-17],[0,-12],[-2,-6],[-64,-27],[-63,6],[-9,-7],[-8,-13],[-1,-12],[3,-6],[5,-7],[16,-15],[7,-2],[18,-7],[14,-10],[8,-11],[4,-13],[3,-11],[0,-15],[-3,-6],[-10,-6],[-34,-3],[-20,-2],[-18,-8],[-8,-10],[-7,-13],[-2,-9],[0,-11],[1,-5],[4,-12],[12,-15],[18,-9],[20,9],[31,18],[15,3],[10,-6],[3,-8],[1,-24],[13,-155],[11,-11],[19,-33],[18,-37],[1,-1],[2,-4],[3,-7],[2,-9],[1,-11],[1,-21],[-2,-17],[-2,-12],[-6,-7],[-8,-1],[-5,11],[-6,20],[-5,31],[-7,22],[-6,8],[-3,1],[-3,2],[-7,0],[-7,-8],[-11,-18],[-11,-19],[-35,-66],[-5,-8],[0,-10],[1,-3],[12,-12],[17,-12],[25,-13],[16,-1],[14,9],[10,10],[5,5],[23,6],[10,-2],[14,-4],[4,-8],[2,-7],[0,-13],[-3,-16],[-2,-7],[-15,-32],[-4,-8],[-6,-7],[-6,-1],[-5,2],[-8,7],[-2,3],[-8,14],[-9,8],[-13,6],[-11,0],[-32,-11],[-15,-11],[-10,-15],[0,-11],[7,-14],[22,-26],[11,-8],[11,-1],[5,3],[7,10],[6,14],[8,14],[5,2],[7,1],[9,-3],[41,-14],[10,-5],[5,-9],[8,-134],[-1,-12],[-2,-4],[-7,-4],[-42,25],[-15,2],[-10,1],[-18,-4],[-8,-7],[-6,-7],[-1,-9],[3,-6],[26,-11],[4,-8],[4,-11],[6,-31],[2,-26],[8,-71],[0,-24],[48,-106],[22,-65],[-4,-49],[-5,-8],[-11,-2],[-7,1],[-9,-1],[-7,-4],[-5,-3],[-58,-35],[-4,-6],[0,-13],[7,-11],[11,-10],[9,-6],[6,-1],[9,6],[6,10],[4,17],[9,4],[4,-1],[4,-6],[2,-3],[28,-71],[3,-9],[17,-136],[-15,-58],[-3,-15],[-9,5],[-12,6],[-11,0],[-4,-6],[-2,-3],[0,-13],[17,-48],[5,-13],[13,-18],[34,-28],[10,-14],[4,-13],[8,-38],[3,-19],[2,-26],[-2,-14],[-2,-7],[-8,-2],[-2,1],[-2,7],[0,10],[-35,5],[-2,-5],[-47,-93],[-24,-41],[19,0],[2,16],[5,11],[13,11],[8,4],[16,5],[6,-3],[6,-7],[2,-7],[0,-11],[-11,-19],[-10,-24],[-5,-24],[1,-13],[3,-5],[8,-4],[16,-1],[6,2],[8,3],[18,-8],[4,-5],[3,-9],[0,-18],[-13,-79],[-5,-23],[-3,-18],[-32,-153],[7,-97],[28,-21],[18,-18],[7,-9],[4,-8],[2,-7],[0,-8],[-1,-6],[0,-7],[-4,-10],[-19,-13],[-20,-7],[-13,-10],[-16,-30],[-11,-39],[0,-28],[1,-6],[7,-9],[16,-20],[5,-4],[8,0],[3,2],[4,6],[1,6],[1,33],[-2,11],[-2,11],[-1,20],[1,5],[7,12],[6,4],[5,-2],[17,-20],[72,-105],[11,-15],[3,-11],[0,-3],[0,-9],[-4,-40],[-3,-15],[-2,-18],[0,-20],[2,-15],[4,-11],[10,-12],[38,-29],[14,-6],[6,3],[4,6],[2,17],[2,30],[1,12],[5,11],[4,6],[4,6],[11,2],[42,-29],[12,-58],[-37,5],[-8,2],[-9,-5],[-6,-5],[-33,-39],[-6,-10],[-6,-18],[0,-13],[3,-48],[5,-25],[4,-12],[7,-8],[4,-1],[7,6],[7,12],[4,12],[4,14],[3,15],[4,13],[5,8],[8,6],[7,-4],[34,-23],[22,-15],[4,-7],[3,-6],[1,-5],[0,-12],[-2,-12],[-5,-10],[-10,-11],[-20,-23],[16,-97],[15,-7],[10,-5],[7,-9],[5,-11],[-1,-26],[-5,-123],[-24,-16],[-3,-74],[7,-13],[4,-13],[4,-22],[1,-25],[-3,-10],[-7,-13],[-6,-7],[-8,-5],[-28,-3],[-18,1],[-30,3],[-5,1],[-10,-4],[-3,-8],[-1,-14],[2,-11],[8,-34],[2,-8],[5,-8],[36,-47],[20,-26],[32,-60],[-1,-43],[-12,8],[-12,5],[-4,1],[-14,2],[-9,1],[-14,-7],[-19,-14],[-13,-15],[-7,-16],[0,-15],[68,-171],[8,-16],[6,-6],[4,-1],[7,0],[67,43],[27,17],[8,9],[15,24],[6,16],[1,9],[7,14],[5,4],[7,-4],[8,-14],[4,-10],[-1,-19],[-15,-87],[-3,-16],[-3,-5],[-16,-19],[-8,-8],[-3,-7],[0,-1],[-7,-26],[-3,-28],[1,-27],[3,-13],[7,-16],[6,-5],[15,0],[8,7],[8,13],[4,4],[5,12],[10,9],[13,4],[6,-2],[5,-8],[10,-90],[-3,-35],[-3,-11],[-21,-97],[-15,-51],[-14,-38],[-4,-14],[-4,-16],[-1,-23],[4,-18],[3,-12],[6,-6],[7,-1],[9,6],[86,97],[7,15],[5,10],[15,23],[8,8],[7,3],[7,-8],[2,-9],[8,-143],[0,-16],[0,-16],[-2,-9],[-6,-14],[-6,-6],[-11,-3],[-7,4],[-22,37],[0,3],[-3,3],[-14,11],[-26,4],[-10,-4],[-17,-15],[-8,-15],[-1,-17],[3,-12],[4,-12],[23,-55],[7,-12],[8,-8],[16,-6],[8,-2],[12,4],[13,11],[14,19],[22,16],[40,5],[39,6],[10,-2],[5,-8],[3,-13],[0,-33],[-3,-19],[-6,-10],[-11,-9],[-1,0],[-23,-20],[-10,-12],[-6,-9],[-6,-17],[0,-28],[8,-60],[4,-19],[7,-18],[7,-7],[11,-3],[60,68],[9,3],[9,-3],[9,-12],[6,-14],[23,-69],[7,-22],[1,-14],[12,-89],[1,-3],[5,-23],[9,-27],[25,-86],[16,-54],[4,-10],[59,-153],[-1,-37],[-3,-77],[-11,-23],[-3,-9],[-3,-15],[-2,-16],[2,-25],[4,-15],[7,-20],[10,-30],[9,-39],[6,-34],[0,-24],[-1,-11],[-9,-38],[1,-38],[2,-11],[4,-15],[15,-26],[8,-7],[18,-3],[13,1],[63,-33],[5,-93],[30,-122],[5,-19],[3,-8],[12,-20],[29,-38],[19,-17],[20,-14],[11,-5],[2,-1],[25,-6],[24,-9],[7,-6],[8,-12],[0,-19],[-6,-26],[-5,-11],[-41,-34],[-12,-14],[-5,-14],[-2,-13],[1,-22],[19,-122],[5,-28],[2,-8],[7,-27],[4,-12],[8,-20],[5,-8],[6,-7],[9,-3],[12,0],[3,1],[21,33],[11,13],[35,25],[51,33],[20,13],[16,10],[26,-45],[-1,-11],[-1,-17],[-1,-26],[0,-16],[6,-20],[6,-11],[7,-9],[35,-25],[5,-3],[50,-26],[6,-1],[13,3],[33,-10],[12,-31],[-23,-70],[-5,-13],[-8,-22],[-5,-17],[-12,-44],[-1,-21],[1,-9],[6,-10],[71,-89],[11,-12],[25,-13],[6,-2],[8,-2],[7,-3],[10,-12],[5,-13],[6,-22],[5,-32],[2,-12],[3,-36],[1,-8],[16,-25],[11,-10],[1,0],[22,-8],[39,5],[19,-44],[-9,-36],[-13,-8],[-19,0],[-14,-9],[-3,-3],[-13,-17],[-6,-10],[-4,-11],[0,-23],[7,-7],[7,-2],[21,16],[31,18],[8,-1],[6,-4],[3,-9],[0,-15],[-1,-10],[-13,-55],[-4,-119],[0,-29],[3,-10],[33,-155],[3,-63],[-11,-81],[-8,-13],[-7,-20],[-2,-7],[-10,-111],[-4,-43],[6,-53],[8,-68],[11,-9],[19,-29],[7,-14],[2,-12],[1,-21],[-2,-17],[-8,-18],[-8,-7],[-25,-13],[-15,-7],[-28,-23],[-14,-15],[-10,-15],[-6,-13],[0,-9],[2,-9],[7,-8],[45,-19],[23,0],[3,0],[17,0],[29,0],[3,-88],[3,-88],[-8,0],[-41,0],[-34,-1],[3,-38],[32,7],[62,14],[4,-35],[-50,-49],[-7,-30],[-5,-12],[-6,-15],[-6,-18],[-1,-32],[5,-10],[11,-11],[4,-4],[24,-40],[20,-65],[6,-26],[1,-26],[0,-33],[-24,-174],[-13,-23],[-29,-49],[7,-88],[6,-97],[7,-89],[52,-4],[20,-2],[7,-41],[0,-14],[0,-9],[-3,-10],[-10,-25],[-5,-13],[-7,-16],[-6,-6],[-5,-7],[-3,-9],[1,-12],[3,-13],[40,-83],[2,-3],[6,-8],[20,-13],[7,-1],[8,3],[27,16],[1,3],[9,10],[8,6],[13,1],[8,-5],[2,-12],[1,-12],[-3,-21],[-10,-36],[-6,-14],[-2,-4],[-16,-18],[-52,-56],[-14,1],[-18,11],[-9,4],[-10,-7],[-12,-16],[-39,-56],[-4,-10],[-3,-12],[0,-26],[13,-430],[1,-24],[1,-20],[24,-237],[2,-11],[8,-8],[45,-100],[65,-183],[11,-30],[20,-180],[10,-101],[-9,-98],[-3,-12],[-6,-16],[-6,-6],[-18,-2],[-13,0],[-13,-3],[-15,-8],[-10,-9],[-3,-5],[-6,-14],[0,-8],[1,-3],[6,-6],[19,-9],[33,3],[8,0],[9,-4],[5,-8],[2,-10],[-1,-13],[-31,-196],[-18,-156],[-4,-37],[-2,-27],[5,-48],[3,-21],[2,-10],[8,-20],[5,-11],[27,-19],[13,-5],[1,0],[38,4],[5,2],[11,2],[5,0],[8,-10],[31,-65],[3,-9],[1,-6],[19,-181],[-2,-21],[-7,-31],[-8,-29],[-6,-17],[-11,-36],[-1,-11],[7,-50],[0,-9],[12,-59],[3,-28],[0,-22],[-22,-74],[-4,-20],[-5,-33],[-23,-135],[0,-6],[13,-119],[25,-78],[7,-20],[5,-1],[22,-17],[29,-120],[20,-88],[33,-140],[3,-16],[0,-48],[0,-33],[-3,-12],[-3,-8],[-7,-15],[-3,-9],[-3,-18],[0,-47],[4,-68],[2,-17],[30,-144],[3,-9],[4,-6],[9,-6],[24,3],[10,0],[7,1],[10,-12],[18,-49],[10,-34],[1,-10],[1,-18],[-4,-53],[-7,-66],[0,-3],[-31,-112],[0,-11],[1,-8],[27,-55],[19,-27],[7,-14],[2,-8],[14,-76],[12,-110],[5,-52],[6,-123],[-3,-58],[-1,-10],[-4,-10],[-2,-4],[0,-2],[-5,-20],[-1,-76],[0,-19],[12,-84],[14,-98],[-4,-84],[-4,-14],[-10,-28],[-4,-22],[-12,-176],[0,-31],[7,-53],[8,-56],[0,-80],[0,-24],[-26,-174],[-9,2],[-11,-85],[-11,-86],[-7,1],[-9,2],[-35,-15],[-13,-59],[-6,-30],[-19,-94],[-14,-80],[-23,-106],[-10,-42],[-42,-158],[-8,-61],[-3,-20],[-14,-89],[-7,-34],[-7,-48],[-6,-56],[2,-57],[5,-43],[3,-17],[9,-50],[1,-3],[23,-116],[2,-14],[4,-37],[1,-25],[-7,-62],[-2,-8],[-4,-53],[-9,-130],[1,-24],[26,-151],[1,-3],[6,-84],[2,-102],[2,-122],[7,-150],[0,-10],[0,-5],[1,-67],[1,-133],[-1,-56],[-1,-26],[0,-61],[0,-16],[5,-68],[9,-96],[5,-48],[1,-21],[1,-20],[2,-49],[1,-24],[0,-59],[4,-54],[14,-91],[33,-129],[9,-85],[4,-30],[3,-17],[3,-15],[17,-57],[5,-13],[17,-76],[7,-44],[3,-24],[3,-29],[0,-12],[1,-14],[4,-86],[-20,-123],[-14,-80],[-38,-1],[-28,1],[-26,0],[-14,0],[-40,0],[-42,1],[-56,0],[-25,1],[-46,-1],[-34,0],[-106,0],[-15,-2],[-41,-1],[-34,3],[-35,1],[-150,-1],[-20,0],[-41,1],[-36,0],[-38,0],[-120,2],[-22,0],[-20,1],[-40,1],[-40,0],[-40,0],[-41,1],[-40,2],[-56,1],[-64,0],[-40,1],[-80,2],[-41,1],[-37,0],[-15,1],[-24,1],[-49,0],[-41,1],[-24,1],[-4,0],[-65,2],[-33,0],[-18,0],[-24,0],[-85,1],[-66,1],[-41,2],[-14,0],[-13,-2],[-15,0],[-17,0],[-22,-1],[-56,0],[-55,0],[-15,0],[-27,1],[-14,0],[-42,0],[-49,-1],[-19,0],[-15,-1],[-42,0],[-30,-1],[-39,0],[-43,0],[-41,-1],[-67,-1],[-14,0],[-55,0],[-112,0],[-95,-1],[-31,0],[-42,0],[-21,0],[-24,0],[-35,1],[-41,0],[-41,1],[-42,1],[-70,0],[-59,-1],[-42,1],[-42,0],[-25,1],[-16,0],[-41,0],[-35,-1],[-15,0],[-16,0],[-31,0],[-34,1],[-27,-1],[-57,0],[-2,0],[-24,0],[-23,1],[-69,0],[-49,0],[-40,0],[-44,0],[-32,0],[-46,0],[-34,0],[-35,0],[-29,0],[-41,0],[-37,-1],[-72,0],[-39,1],[-41,-1],[-26,0],[-163,-10],[-107,7],[-240,-9],[-176,0],[-142,5],[-133,4],[-43,4],[-37,1],[-49,-4],[-17,-8],[-119,-1],[-159,9],[-287,0],[-36,1],[-84,0],[-18,0],[-41,-1],[-21,1],[-39,-1],[-21,1],[-14,-1],[-27,-1],[-15,0],[-27,0],[-17,0],[-19,-1],[-172,1],[-50,1],[-134,1],[-32,0],[-15,0],[-21,-1],[-27,0],[-26,0],[-35,-1],[-14,1],[-24,-1],[-16,0],[-40,0],[-36,0],[-89,-1],[-1,0],[-41,6],[-96,-7],[-43,0],[-18,0],[-27,0],[-44,-1],[-25,0],[-22,-1],[-49,0],[-53,1],[-139,-1],[-14,-1],[-20,1],[-20,0],[-41,0],[-19,0],[-37,0],[-24,0],[-21,1],[-19,-1],[-22,1],[-18,-1],[-24,1],[-17,0],[-21,0],[-27,0],[-49,0],[-43,-1],[-20,0],[-17,0],[-66,-2],[-28,0],[-22,0],[-32,-1],[-39,0],[-16,0],[-37,-1],[-27,-1],[-23,1],[-20,-1],[-29,0],[-22,-1],[-26,0],[-19,0],[-41,0],[-34,-1],[-27,0],[-40,-1],[-17,0],[-23,0],[-18,0],[-33,-6]],[[47208,281],[-203,1],[-12,0],[-5,0],[-26,0],[-94,-2],[-154,0],[-51,3],[-74,0],[-16,0],[-81,0],[-23,0],[-107,0],[-22,1],[-15,0],[-103,-1],[-260,-5],[-33,-1],[-34,0],[-60,0],[-86,0],[-21,0],[-19,2],[-2,1],[-14,0],[-34,1],[-227,-1],[-31,0],[-21,-1],[-77,2],[-24,0],[-104,1],[-105,2],[-328,4],[-153,2],[-159,2],[-21,-1],[-359,-11],[-37,1],[-145,3],[-41,0],[-40,1],[-27,0],[-34,1],[-17,-2],[-16,0],[-139,1],[-61,-1],[-45,0],[-92,-2],[-138,-1],[-1,0],[-45,-1],[-154,-1],[-65,-1],[-43,0],[-23,1],[-19,0],[-14,0],[-105,-1],[-42,2],[-35,1],[-2,0],[-59,-3],[-21,3],[-16,0],[-30,0],[-203,-1],[-21,1],[-7,0],[-55,2],[-92,3],[-36,0],[-33,0],[-9,0],[-251,-1],[-274,-1],[-46,3],[-35,0],[-253,-3],[-59,-1],[-91,1],[-51,1],[-28,0],[-42,0],[-266,-7],[-78,0],[-172,-2],[-41,0],[-258,-3],[-78,0],[-4,0],[-22,0],[-128,0],[-16,0],[-128,1],[-139,2],[-285,12],[-37,0],[-21,1],[-19,3],[-91,1],[-45,0],[-110,-6],[-36,0],[-93,0],[-107,2],[-36,0],[-154,0],[-51,0],[-18,0],[-114,1],[-61,1],[-48,-1],[-93,0],[-24,0],[-171,-1],[-25,0],[-18,-1],[-20,0],[-14,1],[-27,0],[-17,3],[-19,0],[-32,0],[-22,0],[-26,0],[-16,0],[-26,0],[-17,0],[-23,1],[-20,-1],[-218,-2],[-3,0],[-51,3],[-62,4],[-182,-5],[-101,3],[-47,-1],[-163,-3],[-193,1],[-87,2],[-52,0],[-16,-1],[-52,0],[-2,0],[-151,2],[-46,1],[-25,-2],[-128,0],[-31,0],[-47,0],[-72,-1],[-14,0],[-47,1],[-20,0],[-36,0],[-20,2],[-22,2],[-5,-1],[-12,-1],[-17,-1],[-14,0],[-16,1],[-27,1],[-378,-8],[-137,-3],[-112,-2],[-14,0],[-112,1],[-40,0],[-103,0],[-156,1],[-86,1],[-52,1],[-179,3],[-17,0],[-37,1],[-30,1],[-232,7],[-17,-6],[-131,0],[-150,-2],[-112,4],[-65,0],[-56,0],[-17,0],[-149,0],[-24,0],[-30,1],[-30,0],[-18,0],[-25,0],[-193,4],[-180,1],[-406,-2],[-65,3],[-45,-1],[-57,-1],[-91,-2],[-71,0],[-17,0],[-163,0],[-117,2],[-178,-5],[-18,4],[-28,1],[-13,0],[-68,0],[-55,0],[-86,0],[-108,0],[-133,0],[-45,1],[-15,-1],[-53,-1],[-37,1],[-20,0],[-42,1],[-14,1],[-37,0],[-20,0],[-51,0],[-13,0],[-16,0],[-27,1],[-30,0],[-17,0],[-16,1],[-33,-1],[-19,0],[-19,0],[-15,0],[-70,0],[-13,0],[-20,0],[-31,-1],[-17,1],[-15,0],[-15,0],[-15,0],[-16,0],[-17,0],[-16,0],[-15,0],[-17,0],[-20,0],[-21,-1],[-13,0],[-34,-1],[-49,0],[-23,0],[-212,2],[-86,1],[-32,3],[-107,2],[-117,2],[-32,0],[-129,1],[-102,0],[-122,1],[-164,0],[-14,3],[-161,1],[-138,-1],[-207,-4],[-125,-3],[-42,-1],[-136,-2],[-45,-1],[-25,1],[-15,0],[-21,1],[-1,1],[-20,-1],[-16,-1],[-34,0],[-22,0],[-15,0],[-25,1],[-14,-1],[-13,1],[-18,-1],[-45,1],[-41,0],[-15,0],[-120,0],[-28,0],[-24,0],[-156,1],[-26,0],[-12,0],[-50,2],[-37,1]],[[27372,312],[-1,61],[0,51],[0,6],[-1,181],[0,173],[-1,141],[0,92],[0,208],[3,127],[1,129],[0,130],[0,120],[0,86],[0,163],[0,127],[0,73],[-2,422],[0,41],[0,82],[0,55],[1,341],[0,265],[1,474]],[[27372,312],[-19,-2],[-8,-1],[-47,0],[-32,-1],[-60,0],[-99,0],[-15,1],[-143,2],[-18,0],[-98,4],[-25,-4],[-27,-1],[-127,1],[-114,3],[-90,2],[-59,1],[-43,0],[-31,1],[-54,-1],[-44,1],[-38,3],[-81,-1],[-28,0],[-243,2],[-16,0],[-19,0],[-50,1],[-34,1],[-18,0],[-14,-9],[-17,-2],[-52,1],[-14,0],[-37,0],[-24,0],[-21,0],[-16,0],[-15,0],[-21,-2],[-19,0],[-7,0],[-29,1],[-56,1],[-83,-1],[-20,-1],[-19,0],[-21,0],[-5,0],[-22,1],[-31,1],[-18,1],[-31,-1],[-19,0],[-20,1],[-50,0],[-26,0],[-52,0],[-20,0],[-15,2],[-14,-3],[-18,1],[-14,0],[-119,0],[-21,1],[-46,-1],[-33,1],[-134,0],[-35,1],[-16,-1],[-14,1],[-14,0],[-38,0],[-40,0],[-18,0],[-5,0],[-13,1],[-259,3],[-35,0],[-135,-1],[-4,0],[-104,-1],[-20,0],[-15,7],[-18,13],[-13,6],[-19,0],[-15,-7],[-19,-10],[-17,-7],[-16,-3],[-66,-1],[-60,1],[-157,1],[-56,1],[-41,-1],[-24,1],[-139,1],[-17,0],[-39,0],[-50,1],[-23,1],[-20,1],[-218,-4],[-45,0],[-22,1],[-15,0],[-15,0],[-82,-1],[-98,0],[-6,0],[-56,0],[-125,1],[-100,0],[-23,1],[-7,0],[-9,0],[-42,-2],[-16,-1],[-5,0],[-9,-1],[-99,4],[-17,1],[-41,1],[-131,-1],[-69,-2],[-260,0],[-15,1],[-16,2],[-18,1],[-13,0],[-17,0],[-19,0],[-21,-1],[-36,1],[-27,0],[-22,-1],[-101,0],[-14,0],[-15,0],[-25,-1],[-21,0],[-20,0],[-15,0],[-17,0],[-266,2],[-39,0],[-309,-2],[-25,0],[-135,-1],[-13,0],[-20,0],[-14,0],[-154,-4],[-93,4],[-14,0],[-15,0],[-116,1],[-13,0],[-149,1],[-19,0],[-252,-2],[-280,-1],[-40,-1],[-178,0],[-56,10],[-134,2],[-9,0],[-12,0],[-181,-3],[-64,0],[-28,1],[-36,-2],[-222,1],[-37,0],[-14,0],[-28,0],[-50,-3],[-20,0],[-22,0],[-323,4],[-51,1],[-24,0],[-134,-1],[-59,0],[-511,-4],[-64,0],[-47,0],[-61,0],[-213,2],[-131,1],[-433,-1],[-36,-1],[-74,-1],[-28,0],[-86,1],[-51,0],[-20,0],[-16,1],[-15,-1],[-16,0],[-14,0],[-22,0],[-26,0],[-23,0],[-15,0],[-19,0],[-17,0],[-22,1],[-15,-1],[-20,0],[-16,0],[-20,0],[-21,0],[-23,0],[-18,0],[-14,0],[-14,0],[-16,0],[-15,0],[-15,0],[-19,0],[-16,0],[-16,0],[-15,0],[-14,0],[-17,0],[-27,0],[-3,0],[-55,0],[-52,-1],[-55,0],[-21,-1],[-36,-1],[-39,-1],[-18,0],[-2,0],[-102,1],[-16,0],[-18,0],[-21,0],[-59,0],[-1,0],[-40,1],[-2,0],[-24,0],[-70,0],[-36,0],[-21,0],[-50,1],[-71,0],[-42,2],[-21,1],[-23,1],[-78,-2]],[[14068,328],[1,123],[1,96],[1,33],[1,106],[3,116],[-4,31],[0,36],[0,76],[0,53],[0,39],[0,61],[0,47],[0,39],[0,56],[0,73],[0,74],[0,46],[0,44],[0,102],[0,44],[0,32],[0,21],[1,37],[-1,46],[0,37],[0,69],[0,61],[0,63],[0,34],[0,40],[0,40],[0,37],[0,33],[-1,38],[0,136],[0,93],[0,57],[0,34],[0,43],[0,63],[1,43],[3,174],[0,90],[1,61],[0,103],[0,57],[0,149],[0,90],[1,235],[0,241],[1,285],[-2,17],[-3,34],[2,153],[0,34],[0,18],[0,16],[-5,178],[0,46],[-2,49],[4,39],[1,41],[0,88],[-2,52],[3,45],[1,80],[1,42],[-1,76],[1,52],[0,41],[-2,35],[1,45],[0,42],[0,43],[0,35],[0,43],[-2,36],[0,33],[1,60],[-1,67],[0,4],[0,51],[0,66],[0,44],[0,50],[0,83],[0,20],[0,40],[0,33],[0,48],[0,51],[1,68],[-1,52],[0,89],[0,46],[0,41],[0,35],[1,144],[-1,34],[0,44],[0,54],[0,77],[1,63],[0,134],[0,100],[0,76],[0,35],[0,89],[0,54],[0,48],[0,88],[0,107],[0,37],[0,52],[0,149],[-1,42],[1,59],[-2,128],[2,234],[-1,57],[0,40],[1,101],[-3,35],[-2,221],[0,41],[0,3],[0,440],[0,59],[2,323],[0,84],[0,45],[0,46],[1,39],[1,42],[0,59],[0,65],[0,104],[0,61],[0,34],[0,41],[-1,63],[-1,44],[0,37],[0,41],[2,33],[0,9],[0,648],[0,53],[-1,33]],[[91022,3],[-30,7],[-23,0],[-32,1],[-43,1],[-15,0],[-47,1],[-52,2],[-47,0],[-50,2],[-14,0],[-16,1],[-71,1],[-52,1],[-67,0],[-134,1],[-24,0],[-59,1],[-61,-1],[-56,-1],[-142,-2],[-21,0],[-23,0],[-21,0],[-16,1],[-90,2],[-24,0],[-21,0],[-70,2],[-36,0],[-50,1],[-13,0],[-58,1],[-3,0],[-45,1],[-16,0],[-14,0],[-15,0],[-15,-1],[-15,0],[-15,0],[-17,0],[-16,0],[-14,0],[-15,0],[-150,2],[-63,1],[-64,1],[-129,-1],[-152,1],[-62,1],[-91,2],[-56,1],[-71,1],[-19,0],[-137,-4],[-28,0],[-7,-1],[-7,-1],[-241,-25],[-195,-1],[-214,-1],[-28,-1],[-53,0],[-70,2],[-62,-1],[-53,0],[-125,0],[-122,6],[-23,-4],[-63,0],[-36,0],[-40,1],[-21,1],[-21,0],[-60,-1],[-30,0],[-21,0],[-18,0],[-24,0],[-27,0],[-20,1],[-19,0],[-18,0],[-19,0],[-35,0],[-20,0],[-77,0],[-17,0],[-32,0],[-31,0],[-17,0],[-8,0],[-19,0],[-66,1],[-31,0],[-56,0],[-20,0],[-49,0],[-22,0],[-22,1],[-22,0],[-41,0],[-36,0],[-30,0],[-17,0],[-18,0],[-31,0],[-62,0],[-21,1],[-35,0],[-22,0],[-28,1],[-46,0],[-18,0],[-10,0],[-58,-1],[-27,0],[-17,0],[-19,0],[-22,0],[-16,0],[-13,1],[-6,0],[-17,0],[-33,0],[-22,0],[-27,0],[-23,0],[-27,0],[-29,0],[-45,1],[-41,0],[-31,0],[-43,1],[-17,0],[-22,0],[-62,0],[-20,0],[-37,1],[-39,0],[-23,0],[-17,0],[-15,0],[-18,0],[-8,0],[-37,0],[-120,0],[-55,0],[-32,1],[-78,0],[-18,0],[-26,0],[-15,0],[-52,1],[-29,-1],[-63,1],[-46,0],[-26,0],[-49,0],[-22,0],[-27,0],[-16,0],[-22,0],[-14,0],[-28,0],[-83,1],[-16,-1],[-23,0],[-35,0],[-32,0],[-24,0],[-32,0],[-22,0],[-20,0],[-17,0],[-18,0],[-28,0],[-18,0],[-15,0],[-25,0],[-25,0],[-21,-1],[-25,1],[-66,1],[-21,0],[-16,0],[-16,0],[-25,0],[-32,0],[-112,1],[-165,-2],[-299,1],[-191,4],[-72,-1],[-14,0],[-92,1],[-84,0],[-19,0],[-35,0],[-22,0],[-57,0],[-44,0],[-31,0],[-45,1],[-39,0],[-52,0],[-15,0],[-13,0],[-81,5],[-25,-2],[-719,3],[-268,-1],[-110,4],[-120,-1],[-44,-1],[-27,0],[-75,-1],[-15,0]],[[80617,26],[0,113],[0,124],[0,139],[0,66],[0,65],[0,64],[0,197],[0,182],[0,79],[0,65],[0,131],[1,65],[0,129],[0,66],[0,65],[0,131],[0,65],[0,66],[0,64],[-1,131],[0,66],[1,272],[0,33],[-1,400],[0,52],[2,232],[1,76],[2,159],[-1,218],[0,261],[3,462],[1,135],[2,346],[-2,473],[0,112],[0,90],[0,126],[1,43],[0,103],[0,1],[1,475],[1,38],[0,46],[1,131],[-1,102],[0,154],[1,13],[3,88],[-1,91],[-1,45],[0,123],[0,100],[-1,45],[0,39],[1,115],[-1,78],[0,36],[1,115],[0,39],[1,65],[0,384],[1,40],[0,43],[-1,37],[0,21],[0,12],[0,36],[1,49],[0,123],[1,90],[0,62],[1,211],[-2,92],[0,88],[1,80],[0,64],[0,54],[0,58],[0,36],[0,53],[0,145],[1,52],[0,11],[0,31],[0,81],[0,61],[0,79],[0,95],[0,101],[1,497],[0,359],[0,113],[1,171],[0,47],[0,57],[0,40],[0,1],[0,42],[0,46],[0,44]],[[67341,11346],[-1,-82],[0,-50],[2,-109],[0,-73],[1,-41],[-1,-62],[-1,-52],[2,-46],[-1,-85],[1,-41],[-1,-86],[1,-59],[-2,-72],[-1,-43],[1,-66],[0,-75],[0,-55],[-1,-62],[0,-59],[0,-42],[-1,-43],[0,-100],[0,-59],[0,-64],[0,-64],[-1,-119],[0,-44],[0,-46],[0,-50],[0,-33],[0,-35],[1,-57],[1,-108],[0,-47],[0,-51],[3,-77],[-2,-54],[-3,-369],[0,-67],[0,-39],[0,-38],[-1,-38],[0,-38],[0,-38],[1,-38],[-1,-33],[-1,-57],[0,-48],[1,-41],[-1,-154],[0,-84],[0,-111],[0,-65],[-1,-59],[0,-49],[0,-153],[-1,-46],[0,-99],[0,-78],[0,-46],[0,-76],[0,-62],[0,-39],[0,-37],[0,-74],[0,-58],[0,-36],[0,-92],[0,-65],[-1,-63],[0,-45],[-1,-44],[0,-52],[0,-52],[1,-46],[-2,-69],[1,-42],[-1,-80],[0,-39],[1,-41],[-1,-52],[1,-106],[0,-79],[1,-62],[-2,-84],[0,-56],[0,-61],[0,-53],[-1,-57],[0,-57],[0,-55],[0,-42],[-2,-68],[0,-59],[0,-39],[-1,-149],[0,-70],[-1,-107],[0,-57],[0,-37],[-2,-461],[-1,-166],[2,-50],[-1,-88],[0,-42],[0,-46],[-3,-385],[0,-36],[0,-54],[-2,-250],[0,-76],[0,-47],[0,-58],[0,-40],[0,-2],[0,-65],[-1,-223],[0,-52],[3,-461],[-5,-32],[0,-37],[0,-87],[-1,-61],[0,-79],[0,-38],[0,-50],[-2,-188],[0,-44],[0,-153],[-1,-88],[0,-48],[-1,-76],[0,-93],[0,-36],[-1,-68],[0,-141],[-1,-75],[-1,-166],[-1,-194],[0,-93],[-1,-184]],[[67306,152],[-127,2],[-300,2],[-128,1],[-127,1],[-67,1],[-362,1],[-57,0],[-20,1],[-44,0],[-66,-1],[-196,1],[-60,0],[-117,0],[-228,0],[-27,0],[-295,-1],[-114,0],[-214,-1],[-63,-1],[-149,1],[-15,0],[-38,1],[-76,0],[-165,1],[-104,1],[-34,0],[-74,1],[-96,-1],[-66,0],[-177,2],[-102,0],[-108,-1],[-31,-1],[-36,0],[-108,1],[-37,1],[-108,0],[-27,1],[-280,1],[-67,0],[-16,1],[-215,4],[-14,-1],[-46,-2],[-16,1],[-24,0],[-39,0],[-15,0],[-19,0],[-14,0],[-20,0],[-22,0],[-11,1],[-85,1],[-16,0],[-195,0],[-80,-1],[-197,-1],[-204,0],[-74,0],[-79,1],[-183,1],[-16,0],[-80,1],[-26,0],[-83,1],[-90,1],[-79,-1],[-39,1],[-94,2],[-81,0],[-21,0],[-40,1],[-166,2],[-34,1],[-74,1],[-212,3],[-69,1],[-62,0],[-15,0],[-125,2],[-29,1],[-45,1],[-204,3],[-68,1],[-139,0],[-64,1],[-15,0],[-13,0],[-7,1],[-15,-1],[-24,1],[-97,0],[-110,0],[-72,1],[-93,-1],[-162,-2],[-20,0],[-212,0],[-66,0],[-172,1],[-14,0],[-27,1],[-63,-2],[-186,-3],[-28,0],[-60,-1],[-48,-1],[-33,-1],[-27,0],[-17,0],[-153,-1],[-118,0],[-20,0],[-22,0],[-58,1],[-72,0],[-53,0],[-52,1],[-101,1],[-71,1],[-14,0],[-5,0],[-20,0],[-15,0],[-21,0],[-22,0],[-16,1],[-54,0],[-39,1],[-56,1],[-21,0],[-64,0],[-82,1],[-19,0],[-36,0],[-13,1],[-44,0],[-42,0],[-18,0],[-20,1],[-76,1],[-50,0],[-15,0],[-8,1],[-15,0],[-21,0],[-19,-1],[-14,1],[-22,-1],[-37,0],[-15,0],[-14,3],[-27,-2],[-18,2],[-47,1],[-17,1],[-18,0],[-15,-1],[-20,0],[-15,0],[-19,0],[-15,2],[-19,1],[-16,-2],[-16,1],[-15,1],[-16,-1],[-15,1],[-82,3]],[[80617,26],[-140,-1],[-17,0],[-115,-3],[-403,2],[-34,1],[-68,1],[-59,1],[-16,0],[-141,-1],[-116,1],[-40,0],[-25,1],[-33,0],[-35,0],[-20,0],[-26,0],[-15,0],[-25,0],[-26,0],[-32,0],[-157,1],[-69,0],[-204,2],[-22,0],[-23,0],[-8,0],[-11,1],[-47,1],[-18,0],[-151,1],[-95,1],[-28,0],[-6,0],[-145,0],[-126,1],[-17,0],[-137,0],[-99,1],[-24,0],[-21,0],[-37,-1],[-101,-2],[-118,0],[-161,0],[-65,0],[-51,0],[-164,0],[-1,0],[-113,0],[-161,-1],[-117,0],[-163,0],[-114,1],[-162,2],[-139,1],[-130,1],[-276,3],[-71,0],[-59,1],[-74,1],[-71,0],[-126,1],[-153,2],[-35,0],[-246,4],[-124,1],[-82,2],[-24,0],[-11,0],[-6,0],[-50,1],[-104,1],[-144,3],[-132,2],[-114,2],[-31,0],[-132,3],[-101,2],[-43,1],[-49,1],[-30,0],[-14,1],[-14,0],[-27,0],[-1,0],[-49,2],[-3,0],[-95,2],[-130,3],[-75,2],[-1,0],[-75,2],[-126,3],[-145,5],[-131,3],[-67,1],[-69,2],[-40,0],[-28,1],[-74,1],[-106,1],[-39,0],[-134,2],[-31,0],[-105,1],[-140,2],[-137,2],[-136,3],[-33,1],[-3,0],[-157,3],[-124,2],[-1,0],[-101,2],[-55,1],[-15,0],[-1,0],[-68,0],[-128,-1],[-21,3],[-15,0],[-118,2],[-258,0],[-16,0],[-128,1],[-147,1],[-69,1],[-68,2],[-54,0],[-10,0],[-76,1],[-129,0],[-109,2],[-39,0],[-131,1],[-23,0],[-125,2],[-82,0],[-18,0],[-38,1],[-15,0],[-201,2],[-66,1],[-63,1],[-24,1],[-38,1],[-26,-1],[-21,-2],[-21,0],[-17,1],[-24,2],[-20,1],[-17,0],[-19,0],[-57,0],[-32,0],[-60,0],[-19,0],[-14,0],[-128,-2],[-365,4],[-278,2],[-123,2],[-202,3],[-81,1],[-77,1],[-72,1]],[[14068,328],[-65,1],[-179,1],[-50,1],[-90,1],[-1,0],[-41,1],[-92,1],[-25,-3],[-25,0],[-17,-1],[-18,0],[-17,0],[-18,-2],[-14,0],[-14,0],[-18,2],[-17,-3],[-26,0],[-25,0],[-15,0],[-52,1],[-16,-1],[-44,0],[-33,1],[-3,0],[-98,-1],[-16,1],[-18,-1],[-40,1],[-17,-1],[-59,1],[-40,-1],[-45,1],[-37,0],[-22,0],[-61,0],[-20,-1],[-38,-1],[-58,1],[-22,0],[-29,0],[-115,0],[-22,1],[-13,0],[-71,0],[-21,0],[-7,-1],[-22,0],[-35,1],[-42,-1],[-54,0],[-35,0],[-18,0],[-21,0],[-15,0],[-15,0],[-24,0],[-24,-1],[-20,1],[-22,1],[-17,1],[-14,0],[-18,-1],[-25,1],[-22,-2],[-13,1],[-18,-1],[-24,1],[-16,3],[-20,0],[-25,0],[-14,0],[-15,-2],[-15,1],[-22,0],[-28,-1],[-33,0],[-21,1],[-147,2],[-132,-1],[-54,0],[-53,0],[-18,-2],[-27,0],[-50,1],[-356,-2],[-71,1],[-31,0],[-223,-1],[-199,0],[-171,0],[-132,1],[-71,-1],[-3,0],[-110,0],[-8,0],[-2,0],[-66,0],[-66,0],[-4,0],[-50,0],[-5,0],[-56,0],[-145,0],[-38,0],[-172,0],[-30,0],[-270,-6],[-17,1],[-18,0],[-253,9],[-14,-3],[-74,1],[-14,-3],[-23,0],[-21,0],[-16,0],[-15,0],[-28,0],[-16,0],[-35,0],[-31,6],[-34,0],[-35,0],[-102,-1],[-269,-1],[-17,0],[-83,-2],[-99,-3],[-74,-2],[-110,-3],[-87,11],[-77,0],[-281,0],[-113,0],[-72,0],[-219,3],[-18,-1],[-21,0],[-19,1],[-23,-1],[-29,0],[-15,0],[-50,1],[-37,1],[-48,-2],[-103,-1],[-383,0],[-64,0],[-95,0],[-349,-2],[-38,0],[-79,0],[-15,0],[-20,0],[-74,0],[-52,0],[-57,-1],[-16,0],[-137,-1],[-39,0],[-285,-1],[-71,-1],[-42,0],[-166,-1],[-126,-1],[-28,0],[-72,7],[-462,-2],[-37,0],[-102,0],[-274,0],[-352,0],[-40,-3],[-38,3],[-46,4],[-29,-2],[-162,-2],[-92,-1],[-37,-4],[-172,0],[-36,2],[-38,2],[-51,1],[-17,0],[-39,-1],[-76,6],[-216,-1],[-375,-1],[-20,0],[-234,-1],[-4,0],[-145,0],[-6,0],[-95,-1],[-1,0],[-143,0],[-31,0],[-275,1],[-108,1],[-8,0],[-19,-1],[-158,1],[-1,180],[-3,331],[-5,435],[0,84],[-3,361],[-1,86],[-3,265],[-1,46],[2,576],[0,75],[0,138],[0,33],[0,100],[1,197],[1,351],[1,297],[1,169],[1,363],[1,165],[0,38],[0,2],[1,356],[1,325],[1,92],[0,77],[0,137],[1,161],[0,106],[0,99],[1,77],[0,106],[7,34],[0,209],[0,2],[0,41],[0,698],[0,561],[-1,590],[0,538],[0,180],[0,143],[0,103],[0,147],[0,64],[0,32],[0,15],[-1,511],[0,177],[-1,67],[0,65],[0,25],[-1,463],[-2,61],[-1,33],[1,35],[0,65],[1,142],[0,95]]],"transform":{"scale":[0.00007494594952949535,0.000030655006110060114],"translate":[-104.05002278699993,45.9350831540001]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ne-counties.json b/src/js/config/mapconfig/mapfiles/county/ne-counties.json new file mode 100644 index 00000000..e9a69995 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ne-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-104.05336405499992,39.999924896000095,-95.30828243099978,43.004472045000114],"geometries":[{"type":"Polygon","properties":{"name":"NE"},"id":"31165","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31161","arcs":[[4,5,6,7,8,9,10]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31045","arcs":[[11,-4,12,-9]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31015","arcs":[[13,14,15,16]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31103","arcs":[[-16,17,18,19,20]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31031","arcs":[[-20,21,22,23,24,25,-11,26]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31089","arcs":[[27,28,29,30,31,32,-15]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31107","arcs":[[33,34,35,-28,-14,36]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31027","arcs":[[37,38,39,-34,40]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31017","arcs":[[41,42,43,-22,-19]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31149","arcs":[[44,-42,-18,-33]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31051","arcs":[[45,46,47,-38,48]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31043","arcs":[[49,50,-46]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31139","arcs":[[51,52,53,-35,-40]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31013","arcs":[[54,55,-1,-12,-8]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31003","arcs":[[-54,56,57,58,-29,-36]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31179","arcs":[[-48,59,60,61,-52,-39]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31173","arcs":[[62,63,64,-60,-47,-51]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31075","arcs":[[65,66,67,-5,-26]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31091","arcs":[[68,69,70,-66,-25]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31039","arcs":[[-65,71,72,73,74,-61]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31119","arcs":[[75,76,77,-57,-53]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31167","arcs":[[-75,78,79,-76,-62]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31171","arcs":[[80,81,82,-69,-24]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31183","arcs":[[83,84,85,86,-30,-59]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31009","arcs":[[-23,-44,87,88,89,-81]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31115","arcs":[[90,91,-88,-43,-45,-32]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31071","arcs":[[-87,92,93,-91,-31]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31021","arcs":[[94,95,-72,-64,96]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31069","arcs":[[-68,97,98,99,100,101,-6]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31123","arcs":[[-102,102,103,104,-55,-7]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31157","arcs":[[-105,105,106,-2,-56]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31011","arcs":[[-78,107,108,109,-84,-58]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31037","arcs":[[-74,110,111,112,-79]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31141","arcs":[[-113,113,114,115,116,-108,-77,-80]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31053","arcs":[[-96,117,118,119,120,-111,-73]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31117","arcs":[[-83,121,122,123,124,-70]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31005","arcs":[[-125,125,-98,-67,-71]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31077","arcs":[[126,127,128,129,-85,-110]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31041","arcs":[[-94,130,131,132,133,134,135,-89,-92]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31113","arcs":[[-90,-136,136,-122,-82]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31175","arcs":[[-86,-130,137,-131,-93]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31007","arcs":[[-104,138,139,140,-106]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31177","arcs":[[141,142,-118,-95]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31125","arcs":[[143,144,-127,-109,-117]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31023","arcs":[[-121,145,146,147,148,-114,-112]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31155","arcs":[[149,150,151,152,-146,-120]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31033","arcs":[[-101,153,154,155,-139,-103]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31101","arcs":[[156,157,158,-99,-126,-124]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31111","arcs":[[-137,-135,159,160,161,162,-157,-123]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31143","arcs":[[163,164,165,-115,-149]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31105","arcs":[[-156,166,-140]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31121","arcs":[[-166,167,168,169,-144,-116]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31093","arcs":[[-145,-170,170,171,172,-128]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31163","arcs":[[-129,-173,173,-132,-138]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31055","arcs":[[-143,174,175,-150,-119]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31049","arcs":[[-159,176,177,-154,-100]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31153","arcs":[[178,179,-151,-176]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31081","arcs":[[180,181,182,183,-168,-165]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31025","arcs":[[184,185,186,-152,-180]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31185","arcs":[[187,188,189,-181,-164]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31079","arcs":[[-169,-184,190,191,-171]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31047","arcs":[[192,193,194,195,-160,-134]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31019","arcs":[[-172,-192,196,197,198,-193,-133,-174]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31159","arcs":[[199,200,-188,-148]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31109","arcs":[[-187,201,202,203,-200,-147,-153]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31135","arcs":[[-163,204,205,206,-177,-158]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31131","arcs":[[207,208,209,-202,-186]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31063","arcs":[[-196,210,211,212,213,214,-161]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31001","arcs":[[-183,215,216,217,-197,-191]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31073","arcs":[[218,219,-211,-195]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31085","arcs":[[-215,220,221,222,-205,-162]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31029","arcs":[[-223,223,224,-206]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31059","arcs":[[225,226,227,228,-189]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31151","arcs":[[-201,-204,229,230,-226]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31035","arcs":[[-229,231,232,-216,-182,-190]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31099","arcs":[[233,234,235,-198,-218]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31137","arcs":[[-199,-236,236,237,-219,-194]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31127","arcs":[[238,239,240,-209,241]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31067","arcs":[[242,243,244,245,-230,-203]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31097","arcs":[[-241,246,-243,-210]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31181","arcs":[[-233,247,248,249,-234,-217]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31061","arcs":[[-250,250,251,-235]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31129","arcs":[[-228,252,253,-248,-232]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31057","arcs":[[254,255,-224,-222]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31065","arcs":[[-238,256,257,258,-212,-220]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31169","arcs":[[259,260,-253,-227]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31095","arcs":[[-231,-246,261,-260]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31145","arcs":[[-259,262,263,-213]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31087","arcs":[[-214,-264,264,-255,-221]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31083","arcs":[[-252,265,-257,-237]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31133","arcs":[[-240,266,267,-244,-247]]},{"type":"Polygon","properties":{"name":"NE"},"id":"31147","arcs":[[268,-267,-239]]}]},"states":{"type":"GeometryCollection","bbox":[-104.05336405499992,39.999924896000095,-95.30828243099984,43.004472045000114],"geometries":[{"type":"Polygon","properties":{"name":"Nebraska"},"id":"31","arcs":[[20,16,36,40,48,49,62,96,141,174,178,184,207,241,268,267,244,261,260,253,248,250,265,257,262,264,255,224,206,177,154,166,140,106,2,12,9,26]]}]}},"arcs":[[[6962,81124],[2,-331],[0,-105],[1,-22],[0,-113],[1,-42],[-2,-55],[1,-76],[2,-106],[2,-109],[-4,-175],[-2,-95],[-1,-36],[1,-388],[0,-151],[0,-13],[1,-75],[0,-63],[0,-122],[0,-151],[0,-1],[0,-140],[1,-505],[-1,-662],[1,-36],[0,-80],[0,-140],[0,-26],[0,-16],[0,-78],[0,-41],[0,-90],[0,-60],[0,-201],[0,-81],[0,-48],[0,-123],[1,-221],[-1,-223],[2,-754],[1,-484],[2,-968],[-3,-1065],[0,-66],[-1,-296],[-2,-617],[3,-46],[-1,-28],[-1,-55],[2,-372],[1,-186],[-1,-154],[-1,-231],[0,-135],[1,-1081],[448,-4],[37,0],[8,-2176],[0,-155],[-1,-100],[-6,-466]],[[7453,66685],[-20,2],[-39,2],[-41,4],[-14,1],[-23,1],[-43,4],[-27,2],[-26,2],[-15,1],[-13,1],[-23,0],[-15,1],[-17,0],[-15,1],[-17,1],[-11,0],[-251,-2],[-63,-1],[-50,0],[-52,-1],[-121,-1],[-235,-6],[-96,-2],[-57,-2],[-8,0],[-57,-1],[-190,-5],[-379,-10],[-117,-3],[-231,-6],[-160,-4],[-15,2],[-56,-6],[-34,-1],[-24,-2],[-23,-1],[-34,-2],[-22,-1],[-18,-1],[-29,-1],[-24,-1],[-13,-1],[-26,-1],[-12,0],[-20,-1],[-33,0],[-19,-1],[-234,-5],[-108,-2],[-212,-5],[-103,-1],[-16,0],[-113,-2],[-113,-2],[-18,-4],[-15,-2],[-40,-1],[-28,-1],[-76,-5],[-11,-3],[-14,4],[-17,-1],[-69,-1],[-32,-1],[-72,5],[-157,-12],[-41,0],[-32,1],[-65,1],[-13,0],[-27,0],[-20,1],[-16,0],[-13,0],[-31,-3],[-32,-2],[-12,-1],[-23,-2],[-14,0],[-17,-1],[-12,-1],[-18,-1],[-34,-3],[-6,0],[-10,0],[-15,-1],[-32,-1],[-12,0],[-21,-1],[-31,-1],[-21,-1],[-17,-1],[-19,0],[-8,0],[-9,0],[-46,-2],[-32,-1],[-24,0],[-12,0],[-26,-1],[-13,0],[-55,-2],[-12,-1],[-32,-1],[-17,0],[-19,0],[-29,-1],[-18,0],[-44,0],[-24,0],[-12,0],[-23,0],[-54,0],[-29,1],[-15,0],[-12,0],[-16,1],[-30,1],[-65,3],[-24,1],[-22,0],[-36,3],[-83,2],[-17,0],[-14,0],[-18,0],[-56,3],[-13,-1],[-33,2],[-31,1],[-42,1],[-24,1],[-22,1],[-15,1],[-23,2],[-28,2],[-28,0],[-28,0],[-31,-1],[-24,0],[-59,1],[-52,2],[-34,1],[-35,1],[-29,1],[-29,2],[-21,0],[-25,1],[-20,1],[-31,1],[-14,0],[-35,1],[-9,0],[-6,0],[-14,0],[-29,1],[-33,0],[-13,1],[-21,0],[-24,1],[-13,1],[-7,0],[-6,0],[-12,0],[-30,0],[-29,1],[-26,0],[-51,1],[-4,0],[-46,1],[-26,0],[-15,0],[-17,0],[-18,0],[-35,0],[-56,0],[-14,1],[-14,-1],[-13,1],[-31,0],[-13,0],[-14,0],[-25,0],[-13,0],[-18,0],[-26,1],[-12,0],[-13,0],[-21,0],[-11,-5],[-17,0],[-27,2],[-6,0],[-28,2],[-10,-1],[-7,-1],[-20,1]],[[8,66624],[0,39],[0,102],[0,2996],[0,38],[0,522],[0,857],[0,287],[0,207],[0,538],[0,414],[0,1090],[0,1480],[0,107],[0,465],[0,2655],[-2,8503],[-1,1438],[0,256],[-2,10731],[0,520],[0,33],[0,97],[548,-11],[321,-6],[183,-4],[107,-2],[64,-1],[70,-1],[34,-1],[447,-9],[47,-1],[39,-1],[191,-3],[35,-1],[18,0],[85,-2],[56,-1],[17,0],[220,-5],[117,-2],[1575,-31],[290,-6],[58,-1],[40,-1],[1719,-33]],[[6284,99876],[-14,-192],[2,-337],[1,-256],[2,-558],[0,-71],[0,-136],[0,-13],[0,-336],[1,-311],[1,-253],[0,-10],[1,-42],[0,-110],[1,-333],[1,-50],[0,-115],[1,-254],[0,-163],[0,-214],[0,-42],[2,-154],[0,-41],[1,-72],[1,-73],[0,-9],[0,-29],[3,-298],[-2,-157],[-2,-77],[0,-36],[0,-164],[1,-167],[0,-127],[-1,-44],[3,-503],[0,-45],[2,-120],[0,-29],[0,-12],[0,-637],[0,-10],[1,-346],[1,-243],[31,4],[59,10],[111,-7],[60,-1],[0,-64],[-3,-501],[1,-92],[1,-71],[0,-51],[0,-58],[-1,-254],[2,-45],[0,-4],[-1,-39],[1,-285],[0,-42],[1,-261],[0,-64],[1,-101],[0,-95],[-2,-132],[0,-17],[0,-83],[2,-55],[0,-72],[-3,-508],[-1,-333],[0,-96],[0,-52],[0,-110],[0,-159],[-1,-88],[0,-100],[0,-53],[-1,-148],[0,-81],[1,-81],[-1,-62],[0,-156],[0,-8],[0,-30],[0,-164],[1,-160],[0,-140],[3,-367],[0,-42],[-1,-54],[0,-42],[1,-57],[0,-37],[0,-86],[1,-36],[-1,-73],[0,-35],[0,-39],[0,-81],[0,-82],[-1,-36],[0,-66],[-1,-88],[-1,-93],[1,-38],[1,-46],[0,-50],[0,-112],[0,-45],[-1,-165],[1,-86],[0,-156],[0,-170],[1,-112],[1,-432],[-1,-77],[-1,-383],[0,-548],[2,-36],[0,-83],[0,-34],[0,-38],[-1,-34],[0,-224],[0,-64],[1,-324],[0,-70],[0,-8],[0,-310],[1,-237],[0,-133],[0,-360],[1,-429],[0,-13],[0,-32],[1,-494],[237,1],[169,2]],[[23409,69774],[-13,-1103],[-2,-418],[5,-133],[2,-45],[-8,-248],[0,-63],[-5,-420],[-1,-60],[-1,-71],[0,-28],[-1,-63],[0,-37],[-1,-37],[-2,-184],[-230,-2],[-66,-1],[-27,0],[-23,0],[-16,-1],[-15,0],[-11,0],[-24,0],[-149,10],[-49,3],[-16,1],[-38,-1]],[[22718,66873],[-15,1],[-17,-3],[-17,1],[-33,-1],[-106,0],[-25,0],[-16,0],[-19,1],[-29,0],[-88,0],[-28,1],[-14,0],[-87,0],[-65,0],[-114,0],[-74,-3],[-113,-3],[-130,-5],[-31,-1],[-22,0],[-14,0],[-44,-4],[-309,-9],[-243,-3],[-92,-2],[-35,0],[-97,-1],[-43,0],[-56,0],[-119,0],[-111,-8],[-69,0],[-36,0],[-120,-1],[-22,0],[-424,-1],[-24,-1],[-60,-1],[-26,-1],[-123,-1],[-55,-1],[-120,-3],[-44,-1],[-19,0],[-78,-2],[-14,0],[-93,-3],[-158,0],[-160,-1],[-24,0],[-57,0],[-155,-1],[-19,0],[-232,0],[-164,2],[-22,0],[-209,0],[-228,0],[-62,-2],[-152,-4],[-112,-3],[-122,-4],[-116,-3],[-38,-1],[-69,-2],[-19,0],[-62,-4],[-128,-7],[-19,-1],[-73,-3],[-12,2],[-125,-2],[-76,-2],[-29,-1],[-62,-1],[-72,-4],[-81,-5],[-149,-6],[-113,-5],[-161,-6],[-20,-2],[-77,-4],[-76,-5]],[[15732,66743],[-75,-4],[-157,-10]],[[15500,66729],[-11,725],[-7,138],[-27,587],[-3,97],[-2,565],[0,189],[-1,37],[0,246],[0,1],[0,47],[0,34],[0,6],[0,59],[-1,194],[-247,-9],[-62,-3],[-28,-2],[-12,5],[-18,2],[-35,-2],[-54,-3],[1,143],[0,2],[1,786],[0,41],[0,34],[0,80],[4,672],[0,47],[0,37],[1,304],[0,142],[1,232],[0,320],[0,41],[-2,81],[-2,139],[-4,244],[-9,379],[-5,239],[-14,502],[-6,228],[-4,189],[-10,363],[-4,713],[-2,286],[-2,205],[-2,331],[0,61],[-1,33],[0,68],[-2,138],[0,7],[3,102],[0,227],[-1,57],[0,54],[0,119],[0,33],[0,56],[-1,66],[0,34],[0,37],[-1,35],[1,107],[-1,98],[0,110],[0,78],[0,95],[0,138],[-1,66],[0,37],[-7,32],[-13,48],[-11,43],[-8,27],[-4,80],[1,80],[1,79],[1,79],[1,87],[0,101],[1,72],[0,42],[1,58],[1,43],[-4,63],[3,204],[1,58],[1,154],[4,31],[3,75],[0,72],[2,41],[0,15],[-2,59],[0,125],[0,109],[1,219],[3,110],[0,17],[0,75],[2,271],[0,47],[2,316],[-117,-2],[-14,0],[-20,-1],[-28,0],[-12,8],[-42,-3],[-12,-3],[-13,-4],[-15,4]],[[14637,81209],[0,108],[0,97],[0,353],[0,468],[0,113],[1,114],[2,288],[0,1],[0,80],[1,94],[1,39],[0,51],[0,42],[0,43],[-1,35],[-1,54],[2,148],[0,39],[0,57],[0,42],[0,36],[0,44],[0,34],[-1,35],[-1,44],[1,62],[0,39],[0,127],[0,40],[-2,126],[-1,659],[0,6],[2,33],[0,33],[0,39],[0,50],[-1,57],[1,38],[0,66],[-1,53],[0,38],[0,37],[0,43],[0,34],[0,111],[0,44],[0,120],[0,39],[0,43],[-1,43],[0,50],[0,35],[0,33],[0,49],[0,45],[0,38],[0,56],[0,41],[0,57],[0,63],[-1,62],[0,43],[0,102],[1,79],[0,36],[0,50],[0,40],[0,74],[0,34],[0,64],[0,40],[0,43],[0,35],[0,36],[0,34],[0,51],[-4,55],[5,375],[-1,81],[-2,379],[1,104],[-1,193],[0,50],[0,123],[0,116],[-3,305],[0,159],[1,19],[2,32],[-1,67],[0,56],[0,66],[0,74],[0,136],[0,50],[0,60],[0,54],[0,55],[0,70],[-1,33],[0,41],[-1,96],[0,69],[0,277],[1,160],[2,48],[-1,47],[0,57],[0,71],[0,70],[0,40],[0,43],[0,35],[0,33],[0,52],[-2,246],[0,42],[0,47],[0,31],[1,169],[0,153],[4,51],[0,106],[-1,732],[0,114],[0,223],[-47,-1],[-57,-1],[-46,0],[-6,0],[-65,-1],[0,254],[0,9],[-1,404],[-1,313],[-1,870],[-1,126],[-1,375],[-1,280],[0,163],[0,42],[1,64],[0,118],[0,34],[1,41],[0,44],[0,107],[-1,44],[0,34],[2,241],[1,134],[1,329],[0,208],[0,80],[1,344],[0,82],[0,27],[0,95],[1,290],[0,116],[1,390],[0,123],[2,418],[-1,347],[0,240],[1,39],[-1,108],[2,87],[1,109],[0,20]],[[14422,99849],[1199,-4],[1419,-4],[87,0],[363,-2],[998,-2],[950,-2],[607,-1],[984,-3],[1508,-3]],[[22537,99828],[-2,-187],[-2,-640],[-1,-51],[0,-42],[-1,-394],[-3,-685],[-1,-57],[0,-37],[-1,-263],[-1,-340],[-2,-473],[-5,-969],[0,-79],[-2,-480],[0,-68],[-1,-418],[-1,-162],[0,-17],[-1,-361],[-1,-184],[0,-245],[-1,-189],[0,-173],[-1,-122],[0,-99],[0,-51],[-1,-92],[0,-35],[0,-204],[71,1],[51,0],[84,-2],[0,-105],[1,-112],[0,-35],[0,-44],[0,-69],[1,-232],[0,-41],[0,-79],[1,-305],[1,-159],[0,-73],[1,-300],[1,-210],[0,-361],[-4,-126],[3,-85],[-1,-73],[0,-35],[3,-371],[0,-9],[-1,-575],[-2,-705],[0,-210],[0,-342],[0,-39],[0,-35],[1,-34],[0,-43],[0,-37],[-1,-136],[0,-56],[1,-98],[0,-39],[-1,-42],[0,-54],[-1,-40],[0,-110],[0,-34],[0,-60],[2,-116],[0,-44],[1,-38],[-2,-38],[-1,-159],[0,-59],[-2,-520],[1,-1342],[0,-11],[0,-164],[0,-303],[0,-41],[0,-166],[0,-643],[0,-343],[0,-455],[1,-352],[-1,-148],[0,-202],[0,-237],[0,-265],[1,-224],[315,-5],[9,-738],[-1,-305],[0,-42],[0,-54],[-2,-1094],[0,-42],[0,-59],[-1,-93],[0,-208],[0,-78],[-3,-660],[-2,-285],[2,-576],[-1,-49],[-2,-302],[-1,-214],[0,-145],[0,-85],[0,-63],[1,-163],[1,-142],[0,-41],[0,-343],[-1,-34],[0,-35],[0,-48],[0,-274],[0,-58],[0,-63],[0,-107],[0,-35],[-1,-323],[0,-37],[-1,-37],[-4,-765],[1,-215],[0,-54],[1,-182],[0,-53],[-1,-525],[-1,-160],[0,-103],[0,-246],[0,-261],[0,-312],[-1,-887],[-6,-940],[354,-12],[36,-1]],[[14637,81209],[-61,-6],[-80,2],[-25,-1],[-18,-1],[-294,-14],[-428,-10],[-13,0],[-12,1],[-14,0],[-171,-4],[-21,1],[-31,3],[-30,-1],[-45,-2],[-176,-7],[-69,-3],[-82,-3],[-53,-2],[-36,-2],[-12,0],[-120,-3],[-240,-5],[-2,0],[-204,-4],[-58,0],[-14,1],[-66,-2],[-126,-3],[-72,-2],[-15,0],[-56,-4],[-151,-1],[-120,1],[-293,-2],[-35,-1],[-173,6],[-52,-3],[-231,-7],[-194,0],[-134,4],[-13,0],[-15,0],[-223,-1],[-283,-2],[-49,0],[-179,-2],[-20,-1],[-49,-1],[-12,0],[-118,-1],[-100,-1],[-17,1],[-98,-1],[-89,-1],[-31,2],[-26,1],[-24,-1],[-83,8],[-118,1],[-223,0],[-25,0],[-11,0],[-1,0],[-81,0],[-3,0],[-47,1],[-18,0],[-34,0],[-5,0],[-121,-7],[-3,0],[-22,-2],[-26,0],[-34,0],[-44,0],[-73,0],[-74,-1],[-75,-1],[-14,0],[-17,0],[-86,0],[-68,0],[-29,0],[-21,-1],[-37,1],[-27,0],[-37,0],[-38,-1],[-97,-1],[-17,0],[-30,0],[-20,1],[-40,0],[-24,0],[-43,0],[-14,0],[-30,0],[-42,-1],[-3,0],[-25,0],[-59,0],[-32,-1],[-32,0],[-15,0],[-22,1],[-262,0]],[[6284,99876],[2281,-1],[633,0],[297,0],[1735,0],[805,0],[1902,-21],[479,-5],[6,0]],[[65677,95943],[1,-68],[0,-7],[-1,-179],[-6,-170],[1,-272],[0,-619],[-1,-36],[1,-42],[0,-40],[0,-42],[0,-39],[0,-35],[0,-41],[0,-35],[0,-35],[0,-45],[0,-36],[0,-77],[0,-1],[0,-45],[0,-64],[-1,-37],[0,-5],[1,-34],[0,-62],[-1,-36],[1,-40],[0,-41],[-1,-44],[0,-90],[1,-39],[0,-35],[0,-45],[0,-195],[0,-62],[0,-144],[-1,-163],[1,-41],[0,-39],[0,-101],[2,-81],[57,1],[0,-120],[0,-36],[-1,-36],[0,-442],[0,-99],[0,-7],[0,-40]],[[65730,91902],[-21,15],[-12,8],[-38,28],[-23,21],[-21,8],[-39,70],[-9,20],[-70,31],[-26,15],[-48,32],[-31,20],[-23,10],[-31,20],[-13,17],[-41,3],[-14,0],[-44,0],[-51,-32],[-45,-48],[-25,-24],[-14,-4],[-13,-4],[-39,5],[-18,6],[-39,21],[-33,22],[-22,27],[-22,30],[-14,18],[-24,32],[-33,0],[-22,0],[-30,23],[-13,7],[-20,13],[-31,13],[-12,5],[-35,16],[-19,3],[-24,-8],[-19,3],[-13,2],[-27,10],[-18,12],[-35,2],[-12,3],[-42,11],[-37,-8],[-39,-8],[-69,-16],[-10,-47],[-19,-64],[-21,-46],[-10,-18],[-14,-4],[-29,10],[-2,0],[-17,29],[-14,1],[-17,-5],[-37,-10],[-5,-2],[-44,-32],[-6,-4],[-6,-4],[-11,-8],[-15,-11],[-18,-13],[-43,-25],[-53,-30],[-7,0],[-19,0],[-5,0],[-18,10],[-13,9],[-10,7],[-4,3],[-5,6],[-41,51],[-5,7],[-1,2],[-19,35],[-37,7],[-32,5],[-16,11],[-36,33],[-41,28],[-11,15],[-24,5],[-51,11],[-15,-1],[-26,-4],[-13,-5],[-16,3],[-12,-11],[-17,1],[-25,25],[-11,11],[-13,11],[-18,10],[-15,-6],[-22,-17],[-16,-24],[-23,-9],[-35,24],[-16,42],[-20,33],[-28,-27],[-24,-15],[-20,-6],[-36,44],[-21,60],[-26,28],[-23,15],[-14,8],[-49,42],[-29,37],[-31,2],[-27,3],[-27,-1],[-27,-12],[-1,0],[-22,-25],[-19,-19],[-23,-23],[-4,-4],[-35,-14],[-41,-2],[-67,6],[-22,6],[-13,4],[-45,15],[-3,7],[-21,39],[-13,18],[-27,25],[-31,38],[-3,4],[-29,26],[-10,25],[-11,29],[-44,66],[-18,23],[-10,14],[-12,11],[-43,40],[-22,16],[-14,16],[-3,3],[-22,30],[-13,20],[-12,19],[-3,2],[-22,20],[-29,20],[-24,10],[-15,7],[-21,7],[-22,12],[-12,7],[-7,4],[-7,15],[-4,9],[-10,28],[-3,13],[-9,31],[-13,32],[-4,10],[-4,5],[-33,49],[-32,48],[-37,43],[-30,15],[-33,39],[-35,34],[-8,7],[-12,9],[-7,5],[-6,5],[-5,3],[-5,4],[-5,3],[-13,7],[0,1],[-2,0],[-2,2],[-10,-8],[-69,-54],[-12,-12],[-7,-9],[-16,-20],[-25,-30],[-11,-15],[-38,-45],[-16,-18],[-14,1],[-21,2],[-135,50],[-47,-5],[-8,-2],[-5,0],[-7,-1],[-22,-4],[-52,-8],[-8,-1],[-3,0],[-18,-3],[-8,-1],[-47,-5],[-12,6],[-18,17],[-32,33],[-82,82],[-13,12],[-19,32],[-17,32],[-10,29],[-21,36],[-52,91],[-27,46],[-18,17],[-42,38],[-28,27],[-15,22],[-13,19],[-52,90],[-13,17],[-53,65],[-44,54],[-10,18],[-14,18],[-8,8],[-9,9],[-26,9],[-3,0],[-26,1],[-15,0],[-2,0],[-48,-12],[-55,-17],[-2,-1],[-30,-19],[-13,-8],[-24,-26],[-11,-11],[-20,-17],[-23,-14],[-34,-8],[-52,3],[-32,27],[-21,10],[-20,13],[-14,10],[-12,9],[-19,13],[-8,6],[-15,10],[-20,15],[-38,37],[-13,13],[-29,30],[-51,122],[-45,89],[-66,130],[-21,41],[-28,56],[-24,47],[-1,3],[-4,7],[-9,19],[-34,30],[-26,-6],[-30,-32],[-34,-36],[-1,-1],[-42,-40],[-25,-5],[-21,6],[-60,1],[-29,-4],[-73,-29],[-29,-16],[-12,-8],[-22,-6],[-40,8],[-44,39],[-32,29],[-53,86],[-33,112],[-20,66],[-19,64],[-12,40],[-12,19],[-2,2],[-7,11],[-7,11],[-85,130],[-1,2],[-21,33],[-2,3],[-12,19],[-47,132],[-15,44],[-17,47],[-13,38],[-9,26],[-12,32],[-25,72],[-21,60],[-26,56],[-13,23],[-12,20],[-13,25],[-17,13],[-4,0],[-9,0],[-22,6],[-24,16],[-14,32],[-4,40],[-16,79],[-35,19],[-18,30],[-12,34],[-4,20],[-2,12],[-2,12],[-8,38],[-18,57],[-2,7],[-16,50],[-21,46],[-21,21],[-28,18],[-11,9],[-1,0],[-23,18],[-29,13],[-28,9],[-33,-17],[-27,-4],[-14,-1],[-5,5],[-2,1],[-4,4],[-19,2],[-40,3],[-33,-3],[-13,-10],[-23,-8],[-42,-30],[-42,-19],[-14,-2],[-27,-34],[-8,-30],[-4,-35],[-7,-27],[-25,-45],[-9,-13],[-7,-9],[-4,-6],[-8,-10],[-14,-3],[-19,15],[-12,8],[-28,-16],[-13,-15],[-10,-16],[-33,-18],[-17,-9],[-21,-18],[-4,-6],[-12,-19],[-5,-8],[-2,-3],[-6,-7],[-3,-4],[-10,-16],[-12,-20],[-17,-45],[-32,-54],[-12,-29],[-11,-39],[-18,-38],[-14,-17],[-17,-2],[-15,-11],[-4,-3],[-12,-9],[-16,-33],[-16,-26],[-23,-47],[-24,-6],[-36,-72],[-21,-34],[-3,-3],[-19,-30],[-23,-38],[-19,-24],[-8,-10],[-17,-77],[-3,-12],[-15,-34],[-28,5],[-50,-5],[-41,-10],[-50,-46],[-30,-28],[-12,-7],[-21,-14],[-27,-12],[-15,4],[-22,-3],[-18,-10],[-17,-8],[-17,-9],[-13,-8],[-95,-62],[-20,-19],[-17,-14],[-18,-18],[-48,-43],[-4,-3],[-10,-9],[-13,-12],[-12,-10],[-19,-19],[-60,-55],[-23,-26],[-30,-32],[-55,-97],[-15,-18],[-15,-22],[-15,-7],[-20,-7],[-40,-7],[-27,-12],[-41,-24],[-40,-16],[-25,4],[-32,11],[-43,-18],[-12,-4],[-22,-29],[-23,-18],[-19,-13],[-12,-10],[-45,-53],[-20,-28],[-35,-80],[-12,-16],[-11,-14],[-18,-31],[-8,-14],[-11,-20],[-8,-15],[-11,-21],[-12,-22],[-19,-28],[-15,-12],[-17,-10],[-3,-2],[-60,-32],[-41,-9],[-41,-34],[-5,-5],[-45,-40],[-32,-22],[-4,-3],[-34,-20],[-15,-11],[-29,-22],[-10,-18],[-27,-27],[-19,-32],[-27,-32],[-23,-41],[-6,-7],[-6,-8],[-33,-49],[-14,-26],[-19,-28],[-11,-15],[-29,-25],[-32,-28],[-18,-15],[-40,-20],[-20,-2],[-11,-8],[-19,-4],[-13,-7],[-20,-12],[-27,-22],[-19,-12],[-21,-21],[-13,-29],[-21,-11],[-14,-38],[-13,-11],[-10,-29],[-17,-37],[-1,-3]],[[54846,93336],[0,39],[-1,59],[0,438],[0,644],[1,38],[0,75],[1,67],[0,40],[0,35],[-1,51],[0,36],[-1,42],[-1,46],[-1,34],[3,126],[0,47],[1,39],[-1,63],[-1,55],[0,64],[0,53],[-1,100],[-3,112],[3,51],[-3,460],[-1,344],[0,5],[-1,223],[11,-19],[14,-13],[17,-7],[-1,216],[-1,182],[1,36],[0,190],[-1,512],[-2,854],[0,18],[0,181],[0,36],[0,42],[0,46],[2,211],[-1,121],[-1,53],[0,68],[0,85],[0,56],[1,81],[-15,116]],[[54863,99787],[327,0],[359,0],[1678,4],[1014,3],[851,2],[1490,3],[346,1],[2492,6],[25,0],[34,0],[40,0],[20,-239],[3,-30],[12,-98],[14,-70],[20,-117],[16,-98],[7,-38],[12,-47],[30,-108],[50,-187],[111,-433],[7,-28],[43,-166],[11,-43],[79,-116],[28,-36],[38,-88],[29,-65],[3,-6],[56,-103],[5,-46],[15,-127],[38,-40],[53,-10],[16,14],[17,15],[32,59],[8,15],[44,18],[73,-4],[22,-31],[28,-38],[75,-102],[45,-60],[60,-62],[12,-12],[69,-71],[20,-18],[61,-56],[18,-25],[40,-55],[26,-37],[35,-48],[122,-119],[68,-71],[118,-126],[14,-20],[23,-31],[43,-59],[64,-150],[17,-67],[29,-121],[13,-24],[45,-82],[38,-45],[48,-39],[20,-17],[95,-55]],[[54846,93336],[-20,-44],[-3,-6],[-17,-36],[-24,-44],[-19,-32],[-2,-4],[-27,-49],[-18,-13],[-11,-10],[-2,-2],[-12,-8],[-11,-14],[-11,-12],[-17,-19],[-11,-22],[-9,-1],[-5,0],[-4,0],[-19,3],[-13,8],[-13,-3],[-3,-1],[-13,-3],[-7,-1],[-6,-1],[-12,14],[-20,24],[-16,7],[-9,0],[-12,-1],[-3,0],[-12,-1],[-7,-1],[-12,0],[-1,0],[-6,-1],[-7,0],[-27,-3],[-5,0],[-2,0],[-6,0],[-5,0],[-18,7],[-17,-1],[-9,-25],[-14,-32],[-26,-32],[-11,-15],[-31,-23],[-17,-1],[-13,-16],[-18,-21],[-35,-26],[-13,-13],[-8,-6],[-7,-6],[-5,-9],[-2,-4],[-6,-9],[-3,-7],[-2,-2],[-2,-4],[-5,-10],[-4,-9],[-8,-12],[-6,-9],[-15,-15],[-22,-21],[-18,-31],[-23,-43],[-19,-25],[-2,-2],[-12,-18],[-5,-6],[-14,-19],[-12,-13],[-7,-11],[-9,-13],[-11,-17],[-2,-1],[-15,-13],[-30,-13],[-22,-2],[-17,-3],[-3,0],[-6,0],[-21,3],[-21,9],[-13,5],[-3,-1],[-24,-6],[-2,-1],[-6,1],[-17,1],[-15,6],[-20,8],[-20,21],[-13,14],[-14,7],[-11,13],[-10,11],[-1,0],[-13,8],[-15,0],[-6,0],[-24,1],[-8,-2],[-6,-1],[-5,1],[-11,2],[-1,1],[-7,-3],[-4,-2],[-3,-1],[-4,-2],[-11,-2],[-9,1],[-13,1],[-5,-1],[-29,-6],[-18,-26],[-12,-26],[-11,-23],[-1,-3],[-10,-24],[-2,-4],[-4,-10],[-5,-11],[-5,-11],[-1,-3],[-1,-2],[-5,-11],[-5,-11],[-21,-31],[-8,-9],[-25,-31],[-17,-20],[-21,-29],[-1,-2],[-27,-36],[-12,-9],[-2,-1],[-16,-13],[-12,-8],[-25,3],[-12,4],[-12,3],[-16,0],[-3,0],[-25,3],[-8,2],[-4,2],[-5,2],[-5,1],[-6,2],[-8,3],[-7,1],[-6,2],[-2,0],[-13,0],[-22,-4],[-19,-24],[-38,-55],[-7,-34],[-12,-36],[-40,-67],[-10,-17],[-10,-20],[-4,-9],[-13,-34],[-8,-19],[-1,-2],[-8,-21],[-6,-15],[-10,-24],[-2,-33],[-10,-24],[-1,-2],[-13,-43],[-3,-11],[-1,-7],[-1,-4],[-3,-13],[-15,-51],[-2,-7],[-17,-47],[-12,-8],[-2,-2],[-4,-2],[-16,-8],[-21,-2],[-14,1],[-13,-7],[-16,1],[-14,3],[-14,7],[-21,7],[-11,0],[-11,-2],[-10,-1],[-4,-1],[-12,-2],[-10,-2],[-5,-1],[-8,-1],[-13,-20],[-36,-11],[-12,-3],[-13,-30],[-5,-17],[-4,-16],[-2,-11],[-2,-12],[-4,-26],[-3,-14],[-11,-68],[-3,-18],[-9,-75],[-9,-46],[-6,-32],[-10,-37],[-8,-24],[-12,-29],[-12,-17],[-15,-21],[-13,-18],[-12,-19],[-12,-19],[-17,-19],[-15,-17],[-17,-25],[-12,-17],[-16,-21],[-17,-21],[-29,-19],[-18,-1],[-12,-3],[-6,1],[-12,2],[-18,1],[-20,0],[-22,1],[-6,0],[-8,1],[-7,0],[-8,1],[-16,-15],[-26,-13],[-5,-3],[-20,-17],[-25,-21],[-34,-30],[-14,-15],[-23,-28],[-31,-42],[-26,-30],[-11,-19],[-12,-14],[-21,-24],[-17,-11],[-11,-26],[-20,-35],[-23,-17],[-12,-9],[-18,-18],[-35,-33],[-13,-11],[-27,-24],[-31,5],[-15,17],[-20,-3],[-8,-1],[-8,1],[-14,2],[-17,17],[-26,22],[-9,12],[-6,8],[-23,30],[-9,13],[-11,16],[-4,6],[-3,2],[-16,12],[-8,5],[-10,4],[-16,6],[-4,2],[-6,1],[-6,2],[-2,1],[-10,2],[-19,4],[-1,0],[-8,2],[-4,1],[-6,1],[-6,2],[-15,4],[-19,11],[-5,3],[-19,9],[-3,2],[-7,1],[-6,0],[-12,2],[-9,1],[-17,0],[-11,0],[-9,-1],[-8,-1],[-12,-2],[-2,0],[-8,1],[-6,1],[-4,-2],[-8,-4],[-11,-11],[-5,-3],[-7,-9],[-13,-14],[-8,-8],[-5,-5],[-13,-12],[-24,-15],[-3,-2],[-8,-3],[-17,0],[-14,2],[-20,8],[-14,1],[-8,-1],[-12,-2],[-11,-1],[-20,-14],[-16,-7],[-18,5],[-20,3],[-32,6],[-5,1],[-8,2],[-10,4],[-14,4],[-14,3],[-12,12],[-17,11],[-6,2],[-11,2],[-11,1],[-37,1],[-18,8],[-17,12],[-6,4],[-3,3],[-12,10],[-17,27],[-4,7],[-5,9],[-10,15],[-8,13],[0,1],[-9,24],[-4,6],[-19,32],[-16,22],[0,1],[-9,10],[-8,8],[-20,19],[-14,13],[-1,1],[-9,6],[-7,5],[-18,11],[-6,5],[-13,11],[-14,12],[-6,5],[-17,15],[-21,18],[-18,7],[-12,7],[-17,12],[-26,14],[-17,8],[-13,6],[-11,5],[-25,12],[-20,-7],[-19,-7],[-11,-4],[-14,-4],[-18,-6],[-14,-14],[-15,-2],[-28,-20],[-4,-5],[-24,-24],[-16,-15],[-7,-11],[-13,-21]],[[50036,90894],[-11,-14],[-4,-5],[-17,-25],[-16,-22],[-1,0],[-14,-1],[-15,-4],[-12,-14],[-12,9],[-24,36],[-4,3],[-16,15],[-8,2],[-4,2],[-2,0],[-5,1],[-10,3],[-3,-1],[-16,-6],[-1,-1],[-2,0],[-2,-1],[-13,-6],[-15,-11],[-4,-2],[-2,-2],[-11,-8],[-6,-3],[-21,-14],[-3,-3],[-11,-13],[-25,-17],[-5,-3],[-7,-5],[-7,-4],[-4,-2],[-8,-5],[-13,-7],[-10,0],[-3,0],[-2,1],[-13,0],[-1,0],[-1,0],[-4,3],[-5,4],[-5,4],[-9,7],[-7,6],[-8,5],[-7,6],[-6,4],[-13,11],[-3,2],[-5,4],[-9,10],[-8,8],[-10,11],[-2,2],[-7,9],[-4,3],[-22,22],[-2,2],[-6,5],[-11,8],[-9,6],[-19,13],[-1,1],[-4,2],[-11,6],[-16,1],[-17,-3],[-2,0],[-12,3],[-10,3],[-15,4],[0,1],[-14,8],[-7,4],[-15,10],[-11,7],[-2,1],[-13,8],[-1,1],[-17,16],[-10,9],[-17,15],[-1,2],[-4,5],[-6,9],[-5,8],[-14,10],[-19,16],[-10,12],[-4,5],[-2,4],[-12,15],[-6,4],[-7,5],[-6,4],[-12,-4],[-8,-2],[-9,-3],[-20,-5],[-13,-4],[-11,-3],[-14,-2],[-19,-4],[-17,-3],[-10,-2],[-9,-2],[-26,-1],[-9,-1],[-21,-4],[-8,-2],[-8,-2],[-3,-1],[-3,-1],[-18,-32],[-16,-8],[-3,-1],[-8,-1],[-10,-3],[-4,0],[-9,5],[-7,4],[-10,21],[-3,7],[-9,21],[-11,7],[-1,1],[-2,1],[-8,5],[-5,3],[-3,2],[-4,3],[-8,6],[-2,1],[-6,4],[-4,2],[0,1],[-2,1],[-2,1],[-4,2],[-2,2],[-6,4],[-9,6],[-1,1],[-3,3],[-2,2],[-1,2],[-1,1],[-5,5],[-6,7],[-1,2],[-6,7],[-8,-4],[-3,-1],[-12,-5],[-7,-5],[-8,-5],[-4,-3],[-1,-1],[-2,-1],[-25,1],[-2,1],[-6,4],[-13,7],[-1,1],[-5,2],[-14,7],[-5,2],[-15,8],[-11,14],[-13,3],[-17,10],[-35,24],[-11,7],[-22,14],[-3,2],[-12,7],[-13,8],[-18,13],[-2,1],[-1,1],[-25,17],[-13,4],[-14,6],[-5,12],[-6,18],[-7,22],[-19,32],[-14,23],[-29,45],[-27,50],[-1,1],[-8,12],[-5,7],[-1,1],[-11,33],[-27,45],[-10,13],[-2,3],[-6,7],[-5,8],[-17,21],[-33,4],[-19,-5],[-14,-14],[-17,-19],[-4,-5],[-11,-13],[-6,-8],[-13,-16],[-11,-4],[-17,-5],[-5,-1],[-7,-2],[-8,-1],[-4,0],[-1,0],[-6,2],[-6,3],[-15,25],[0,1],[-9,17],[-4,6],[-6,34],[-4,31],[-6,36],[-11,36],[-1,35],[-6,30],[1,41],[-5,47],[-1,36],[-2,48],[-1,13],[-1,10],[-4,31],[-4,16],[-5,24],[-3,13],[-15,46],[-23,20],[-9,-2],[-6,-1],[-23,-1],[-12,-6],[-4,-2],[-10,-5],[-4,-2],[-20,-17],[-5,-4],[0,-1],[-13,-7],[-5,-3],[-5,-2],[-4,-2],[-2,1],[-13,7],[-20,12],[-2,2],[-18,8],[-13,1],[-22,-7],[-15,-4],[-8,-2],[-20,-5],[-4,-1],[-5,-4],[-6,-5],[-8,-6],[-16,-12],[-17,-11],[-12,-7],[-6,-4],[-26,-16],[-23,-11],[-18,-8],[-14,5],[-4,3],[-30,29],[-2,1],[-10,5],[-3,2],[-13,16],[-10,13],[-1,1],[-22,2],[-2,0],[-15,2],[-31,19],[-6,-1],[-6,-1],[-31,-14],[-5,-2],[-19,-7],[-15,-13],[-24,14],[-6,4],[-1,0],[-7,2],[-12,4],[-8,2],[-5,2],[-16,-9],[-6,3],[-9,5],[-25,15],[-13,10],[-11,13],[-2,3],[-19,5],[-13,7],[-16,11],[-3,2],[-30,22],[-4,3],[-2,2],[-4,3],[-10,9],[-15,12],[-5,4],[-4,3],[-4,3],[-10,9],[-2,1],[-18,11],[-8,6],[-12,10],[-11,-4],[-2,0],[-7,-1],[-15,0],[-5,-2],[-20,-5],[-10,-3],[-1,0],[-13,-3],[-11,-3],[-24,-7],[-19,1],[-27,13],[-13,12],[-8,6],[-6,5],[-12,-2],[-1,-1],[-12,-7],[-14,-9],[-9,-4],[-7,-4],[-23,15],[-19,12],[-27,30],[-5,6],[-28,31],[-12,22],[-23,40],[-18,37],[-4,10],[-11,22],[-11,24],[-14,31],[-16,24],[-8,11],[-9,13],[-3,4],[-11,15],[-16,21],[-1,0],[-7,9],[-10,12],[-16,4],[-3,1],[-25,6],[-6,1],[-4,4],[-31,29],[-10,18],[-21,23],[-13,23],[-20,20],[-20,18],[-20,0],[-21,-2],[-32,-24],[-30,-14],[-14,-8],[-23,-34],[-16,-23],[-15,5],[-17,5],[-17,13],[-27,24],[-23,32],[-33,-15],[-19,-13],[-11,-8],[-22,2],[-13,-15],[-6,-9],[-10,-15],[-7,-9],[-4,-4],[-13,-11],[-3,-1],[-16,-6],[-5,-2],[-4,1],[-8,2],[-15,4],[-27,0],[-22,1],[-15,2],[-13,9],[-13,-1],[-17,1],[-16,13],[-19,23],[-5,6],[-6,5],[-6,5],[-7,4],[-18,9],[-3,2],[-14,10],[-11,18],[-11,20],[-5,10],[-3,5],[-11,24],[-16,22],[-20,12],[-25,1],[-43,24],[-20,12],[-25,2],[-28,3],[-14,16],[-14,13],[-22,9],[-21,22],[-14,16],[-16,11],[-21,28],[-12,20],[-16,13],[-17,7],[-15,5],[-21,2],[-15,-3],[-13,6],[-20,25],[-11,18],[-16,18],[-16,11],[-19,5],[-17,7],[-14,4],[-12,29],[0,44],[1,51],[-12,35],[-10,15],[-14,15],[-24,-4],[-18,-3],[-14,5],[-15,7],[-20,2],[-17,11],[-33,35],[-25,15],[-11,6],[-12,8],[-1,2],[-14,21],[0,2],[-6,17],[-5,17],[-1,5],[-6,24],[-12,53],[-10,31],[0,1],[0,1],[-3,46],[11,55],[10,35],[16,20],[12,20],[1,3],[6,24],[2,11],[0,1],[-1,37],[0,1],[-9,24],[-17,21],[-36,34],[-48,33],[-11,25],[-1,34],[2,33],[0,47],[-2,38],[0,3],[-7,26],[-15,10],[-14,24],[-16,29],[-12,15],[-1,0],[-25,-22],[-16,-15],[-1,-1],[-19,-21],[-1,-2],[-11,-26],[-1,-3],[-9,-29],[-1,-3],[-1,-2],[-19,-26],[-1,-1],[-1,-2],[-12,-13],[-1,-2],[-18,16],[-9,26],[4,41],[0,3],[8,51],[-2,33],[-12,28],[-12,14],[-38,3],[-14,0],[-18,15],[-1,0],[-20,13],[-5,-1],[-21,-1],[-5,0],[-10,1],[-5,1],[-3,4],[-9,11],[-17,34],[-12,8],[-37,16],[-20,7],[-1,0],[-7,3],[-24,10],[-1,2],[-6,11],[-17,30],[-11,17],[-1,2],[-1,2],[-8,21],[-19,38],[-1,3],[-21,48],[-9,28],[-12,43],[-16,38]],[[44080,94728],[0,1],[0,213],[1,317],[-1,205],[0,226],[1,213],[0,119],[1,332],[-1,56],[0,34],[0,94],[0,114],[0,192],[0,33],[0,48],[0,4],[0,1159],[0,60],[-1,195],[0,127],[0,93],[0,46],[0,55],[0,100],[0,38],[0,81],[0,100],[0,96],[1,121],[0,110],[0,99],[0,96],[0,36],[0,116],[0,149]],[[44081,99806],[947,-3],[1301,-4],[1010,-3],[1656,-4],[678,-2],[674,-2],[163,-1],[94,0],[572,-2],[385,-1],[116,0],[1,0],[61,0],[881,1],[189,0],[656,0],[926,1],[472,1]],[[44080,94728],[0,-58],[0,-676],[0,-450],[-1,-497],[0,-485],[175,-1],[-1,-808],[0,-3],[0,-221],[0,-23],[2,-159],[-1,-564],[1,-610],[1,-471],[0,-36],[0,-51],[0,-1193],[0,-218],[-1,-246],[0,-30],[0,-223],[0,-336],[0,-229],[0,-57],[0,-18],[0,-179],[0,-471],[0,-30],[0,-147],[1,-358],[0,-171],[0,-109],[0,-14],[0,-538],[0,-21],[-2,-63],[1,-526],[2,-82],[-1,-530],[0,-161],[0,-85],[0,-39],[-1,-142],[0,-460],[0,-924],[0,-34],[0,-516],[0,-470],[179,-7],[0,-442],[0,-680],[0,-487],[0,-128],[-1,-204],[2,-209],[0,-894],[0,-1105],[0,-193],[-1,-1001],[0,-362],[0,-84],[0,-37],[0,-135],[0,-139],[2,-344],[-1,-685],[-1,-425],[-1,-462],[-2,-881],[2,-41],[0,-46],[0,-49],[0,-47],[0,-42],[0,-37],[0,-47],[0,-63],[0,-42],[0,-216],[0,-9],[-3,-499],[-1,-225],[1,-222],[3,-355],[0,-649],[0,-77]],[[44433,69425],[-433,3],[-215,2],[-23,0],[-18,1],[-31,0],[-18,0],[-171,1],[-38,0],[-196,3]],[[43290,69435],[-84,0],[-70,1],[-5,0],[-44,1],[-59,1],[-12,1],[-24,0],[-13,-1],[-31,1],[-24,0],[-13,1],[-33,0],[-13,0],[-12,1],[-17,0],[-14,1],[-33,1],[-14,0],[-22,0],[-397,10],[-43,1],[-22,-2],[-48,0],[-33,0],[-40,3],[-36,-5],[-77,6],[-88,0],[-202,0],[-529,-1],[-610,-8],[-196,4],[-273,10],[-2,0],[-19,1],[-19,-1],[-18,1],[-43,0],[-14,1],[-36,-1],[-13,0],[-25,1],[-15,-1],[-14,-1],[-15,-2],[-40,1],[-57,-1],[-83,-1],[-31,0],[-60,-1],[-275,-1],[-16,-1],[-139,9],[-27,0],[-120,2],[-144,2],[-54,1],[-242,6],[-21,1],[-34,0],[-141,3],[-119,3],[-279,7],[-275,2],[-38,0],[-247,4],[-326,4],[-43,0],[-50,1],[-216,1],[-175,1]],[[36674,69502],[-146,1],[-68,0],[-33,0],[-88,1],[-152,27],[-296,1],[-284,0],[-241,1],[-456,1],[-159,19],[-92,2],[-106,0],[-54,1],[-1,0],[-83,0],[-152,2],[-16,0],[-19,0],[-137,2],[-261,0],[-46,3],[-27,1],[-20,1],[-12,-1],[-1,0],[-47,1],[-105,5],[-15,1],[-77,6],[-215,-1],[-218,11],[-117,5],[-36,1],[-138,8],[-273,0],[-3,0],[-59,1],[-175,2],[-14,0],[-181,-3],[-65,2],[-276,5],[-486,8],[-255,4],[-58,3],[-21,1],[-146,6],[-38,1],[-3,0],[-12,0],[-69,-8],[-294,7],[-26,1],[-74,1],[-27,1],[-43,1],[-12,0],[-109,2]],[[30037,69636],[-30,0],[-13,0],[-87,0],[-95,0],[-47,-1],[-1,0],[-17,0],[-48,1],[-18,1],[-47,2],[-84,2],[-13,1],[-7,0],[-105,5],[-136,6],[-97,5],[-84,3],[-14,1],[-334,12],[-75,2],[-15,1],[-21,0],[-43,2],[-188,6],[-217,-1],[-94,0],[-15,0],[-50,1],[-24,0],[-16,0],[-183,-2],[-56,0],[-99,-1],[-76,0],[-255,1],[-69,0],[-60,0],[-264,-6],[-79,1],[-13,-2],[-73,1],[-179,0],[-260,-4],[-232,-4],[-67,-1],[-5,0],[-7,0],[-87,0],[-44,0],[-18,1],[-71,3],[-93,2],[-120,3],[-13,0],[-217,11],[-84,6],[-45,3],[-96,6],[-233,17],[-49,-1],[-72,0],[-12,0],[-26,0],[-54,0],[-59,4],[-43,4],[-109,2],[-122,5],[-224,4],[-219,17],[-121,3],[-97,0],[-185,18],[-32,-4],[-5,-1],[-66,3]],[[22537,99828],[943,-18],[1733,-34],[580,-11],[970,2],[5110,11],[304,1],[131,0],[1921,29],[108,2],[85,1],[1195,-2],[1875,-4],[967,-1],[1335,-3],[1316,-2],[1669,4],[48,0],[129,0],[312,1],[813,2]],[[65730,91902],[0,-41],[0,-48],[0,-284],[0,-348],[0,-7],[0,-194],[-1,-711],[0,-63],[0,-182],[0,-4],[-1,-465],[1,-37],[0,-48],[1,-37],[-1,-37],[1,-72],[-1,-39],[0,-38],[0,-41],[0,-53],[1,-111],[0,-46],[0,-47],[-1,-46],[0,-75],[2,-108],[0,-14],[0,-31],[0,-148],[-2,-205],[0,-34],[0,-63],[0,-42],[0,-8],[0,-52],[-1,-52],[0,-111],[1,-53],[0,-58],[0,-49],[0,-45],[0,-48],[0,-45],[-1,-48],[0,-48],[0,-46],[0,-49],[0,-44],[0,-59],[1,-38],[0,-59],[0,-35],[-1,-39],[0,-58],[0,-42],[0,-46],[0,-55],[0,-40],[0,-56],[0,-40],[0,-47],[0,-93],[0,-73],[0,-1],[0,-62],[0,-51],[0,-47],[0,-67],[0,-34],[0,-51],[0,-100],[0,-55],[0,-141],[0,-49],[0,-61],[0,-39],[0,-49],[0,-48],[0,-97],[0,-97],[0,-50],[0,-50],[0,-46],[0,-55],[0,-100],[0,-50],[0,-47],[0,-49],[0,-49],[0,-47],[0,-97],[0,-42],[0,-46],[0,-70],[0,-41],[0,-54],[0,-53],[0,-47],[0,-98],[0,-52],[-1,-63],[0,-36],[0,-67],[0,-51],[0,-49],[0,-50],[0,-50],[1,-113],[-1,-59],[0,-57],[0,-88],[0,-38],[0,-35],[0,-35],[0,-59],[0,-58],[0,-55],[0,-55],[0,-53],[1,-85],[1,-45],[-2,-71],[0,-35],[1,-33],[0,-36],[-1,-36],[2,-34],[0,-10],[-2,-40],[1,-43],[0,-62],[-1,-45],[0,-47],[0,-40],[0,-40],[0,-41],[0,-40],[0,-39],[0,-41],[1,-40],[-1,-42],[1,-42],[0,-42],[0,-44],[0,-44],[0,-45],[0,-46],[0,-48],[0,-53],[0,-42],[0,-35],[0,-39],[0,-52],[0,-50],[0,-48],[-1,-51],[0,-51],[0,-50],[0,-65],[0,-78],[0,-46],[0,-64],[-1,-44],[0,-88],[1,-52],[0,-110],[12,0],[16,0],[31,-1]],[[65786,81109],[1,-91],[-1,-64],[1,-34],[0,-34],[0,-40],[-1,-93],[0,-68],[0,-57],[0,-76],[0,-69],[0,-70],[0,-70],[0,-61],[0,-40],[0,-1],[0,-39],[-1,-57],[0,-81],[1,-71],[-1,-72],[0,-70],[0,-137],[0,-50],[0,-87],[0,-71],[0,-34],[0,-38],[0,-72],[0,-45],[-1,-98],[1,-40],[-1,-93],[0,-77],[1,-66],[0,-70],[0,-70],[-1,-68],[0,-38],[0,-173],[0,-57],[0,-82],[0,-69],[0,-38],[0,-39],[0,-66],[0,-39],[0,-5],[0,-60],[0,-35],[0,-63],[0,-132],[0,-69],[0,-35],[0,-5],[0,-106],[0,-71],[0,-141],[0,-62],[0,-79],[0,-42],[0,-99],[0,-71],[0,-69],[0,-75],[0,-69],[0,-72],[0,-71],[0,-72],[0,-71],[0,-71],[0,-71],[0,-37],[0,-98],[-1,-151],[1,-125],[0,-87],[0,-100],[0,-89],[0,-92],[0,-82],[0,-60],[0,-60],[-1,-82],[1,-38],[0,-33],[0,-72],[0,-71],[0,-63],[0,-70],[0,-116],[0,-59],[-1,-437],[0,-14],[0,-363],[0,-26],[0,-11],[1,-42],[0,-88],[0,-34],[0,-55],[0,-201],[0,-132],[0,-66],[0,-66],[0,-67],[0,-67],[0,-66],[-1,-63],[1,-62],[0,-63],[0,-63],[0,-65],[0,-45],[-1,-109],[1,-47],[0,-56],[0,-68],[-1,-33],[0,-34],[1,-67],[0,-66],[0,-66],[0,-65],[0,-61],[0,-62],[0,-55],[-1,-75],[0,-50],[0,-78],[0,-66],[0,-68],[0,-133],[0,-49],[1,-84],[-1,-155],[0,-67],[0,-88],[0,-56],[0,-38],[0,-53],[1,-39],[0,-66],[0,-127],[0,-64],[0,-47],[0,-34],[0,-118],[-1,-34],[0,-57],[0,-39],[0,-41],[0,-29],[0,-8],[0,-130],[-1,-36],[0,-90],[0,-58],[-1,-87],[0,-45],[0,-54],[1,-45],[0,-63],[0,-52]],[[65782,69525],[-57,-1],[-38,0],[-39,0],[-32,-1],[-12,0],[-15,-1],[-29,0],[-48,-1],[-119,0],[-34,0],[-23,0],[-11,0],[-18,0],[-32,0],[-31,0],[-31,0],[-18,-1],[-12,0],[-15,0],[-20,0],[-35,0],[-32,0],[-12,0],[-77,1],[-19,1],[-29,2],[-24,0],[-9,-1],[-10,-2],[-11,-1],[-28,-1],[-22,0],[-19,0],[-27,0],[-90,0],[-36,0],[-36,0],[-37,1],[-36,0],[-47,0],[-27,0],[-40,0],[-15,0],[-18,0],[-36,-1],[-44,1],[-40,-1],[-16,1],[-17,0],[-39,-1],[-39,1],[-39,0],[-38,0],[-39,0],[-38,-1],[-39,1],[-39,-1],[-101,0],[-57,0],[-15,0],[-24,0],[-40,0],[-47,0],[-40,-1],[-32,0],[-40,0],[-79,0],[-38,0],[-20,0],[-16,0],[-164,0],[-41,0],[-24,0],[-18,1],[-40,-1],[-15,0],[-25,0],[-125,0],[-38,-1],[-25,1],[-17,0],[-44,0],[-51,0],[-35,0],[-44,0],[-31,-1],[-56,0],[-30,0],[-13,0],[-84,1],[-26,0],[-17,-1],[-43,1],[-42,-1],[-18,0],[-67,0],[-52,0],[-34,0],[-44,0],[-15,-1],[-28,0],[-29,1],[-22,0],[-35,0],[-13,0],[-28,-1],[-42,0],[-106,0],[-32,0],[-3,0],[-30,1],[-39,-1],[-41,1],[-8,0],[-9,0],[-64,-1],[-43,0],[-33,-1],[-38,0],[-28,0],[-50,0],[-38,-1],[-36,0],[-65,1],[-16,0],[-30,-1],[-38,0],[-37,0],[-37,0],[-28,-1],[-14,0],[-34,0],[-35,0],[-31,1],[-33,0],[-33,0],[-33,-1],[-71,0],[-40,0],[-40,0],[-41,0],[-12,0],[-28,1],[-41,-1],[-42,1],[-32,-1]],[[60516,69513],[-50,0],[-39,1],[-21,0],[-33,1],[-12,0],[-20,1],[-41,0],[-66,0],[-21,0],[-74,-1],[-34,0],[-43,0],[-26,-1],[-25,0],[-18,0],[-43,0],[-12,0],[-14,0],[-12,0],[-35,0],[-45,0],[-41,1],[-40,0],[-61,0],[-55,-7],[-61,-1],[-26,0],[-113,1],[-225,1],[-22,0],[-86,-2],[-13,0],[-208,-4],[-208,4],[-23,0],[-89,-1],[-27,0],[-106,0],[-54,-1],[-23,0],[-21,0],[-35,0],[-89,0],[-219,-2],[-105,0],[-30,0],[-72,6],[-17,-3],[-275,-3],[-21,-1],[-12,0],[-26,0],[-19,-1],[-19,0],[-22,0],[-19,0],[-27,-2],[-87,7],[-36,0],[-209,-2],[-1,0],[-53,-1],[-70,0],[-210,-1],[-49,0],[-20,0],[-12,0],[-12,0],[-123,1],[-90,4],[-97,-3],[-101,-1],[-32,0],[-128,-1],[-105,-2],[-23,0],[-122,0],[-46,0],[-81,0],[-155,-1],[-59,-1],[-77,2],[-87,-7]],[[55238,69493],[-21,4],[-15,0],[-35,-1],[-40,0],[-25,0]],[[55102,69496],[0,441],[-1,811],[0,184],[0,58],[0,151],[0,69],[0,386],[0,598],[1,179],[0,457],[0,157],[0,142],[0,99],[0,84],[0,50],[0,381],[0,100],[1,560],[0,107],[2,378],[0,375],[0,204],[0,444],[-1,322],[0,142],[0,216],[0,33],[0,41],[1,153],[0,217],[0,160],[0,128],[0,513],[0,118],[1,221],[0,36],[0,5],[0,191],[0,641],[0,494],[0,66],[1,518],[1,421],[0,387],[-1,95],[-119,4],[-1,746],[-1,122],[-1,341],[0,245],[-3,481],[0,161],[-1,80],[-1,170],[-1,39],[0,74],[0,145],[1,45],[3,244],[-1,484],[0,249],[-2,711],[0,74],[0,175],[0,8],[-1,225],[0,264],[1,103],[0,56],[-1,61],[0,5],[0,36],[0,51],[0,55],[-1,76],[0,65],[0,68],[-1,88],[0,39],[0,31],[0,3],[-1,333],[-4,183],[0,414],[1,486],[0,478],[1,183],[0,193],[0,130],[0,45],[-1,51],[1,69],[0,50],[-1,73],[0,39],[0,45],[0,65],[-1,41],[0,99],[0,51],[0,43],[0,90],[-2,130],[0,56],[0,159],[0,223],[0,498],[0,56],[1,393],[1,232],[0,10],[2,840],[-52,4],[-74,1],[-1,232],[0,204],[0,96],[-1,40],[0,77],[0,27],[0,44]],[[75109,94870],[1,-84],[0,-85],[0,-56],[0,-51],[0,-42],[0,-10],[0,-137],[0,-111],[-2,-96],[1,-88],[0,-48],[0,-34],[0,-50],[0,-41],[0,-46],[0,-65],[0,-66],[0,-34],[1,-89],[0,-38],[0,-81],[0,-37],[0,-52],[0,-118],[0,-38],[0,-39],[-1,-52],[0,-42],[0,-34],[-1,-97],[0,-90],[-1,-92],[0,-47],[-6,-29],[-4,-35],[-1,-68],[1,-66],[0,-26],[0,-13],[0,-43],[0,-97],[0,-131],[0,-75],[0,-40],[0,-59],[1,-44],[0,-70],[0,-68],[0,-72],[0,-51],[0,-64],[0,-35],[1,-131],[0,-78],[0,-64],[0,-69],[0,-42],[0,-83],[1,-38],[0,-41],[0,-58],[0,-85],[0,-69],[1,-53],[0,-57],[0,-5],[0,-38],[0,-58],[0,-54],[1,-84],[0,-41],[0,-48],[0,-36],[0,-46],[0,-37],[0,-49],[0,-64],[0,-76],[0,-59],[0,-100],[0,-100],[-1,-71],[0,-34],[0,-73],[0,-70],[0,-69],[0,-53],[0,-36],[0,-48],[0,-8],[0,-94],[0,-352],[0,-201],[0,-96],[0,-68],[0,-134],[0,-115],[0,-150],[1,-292],[0,-42],[0,-232],[0,-120],[0,-69],[0,-63],[0,-102],[0,-57],[0,-76],[0,-162],[0,-69],[0,-15],[0,-91],[0,-127],[0,-38],[0,-44],[1,-91],[0,-73],[0,-37],[0,-34],[0,-113],[0,-133],[0,-82],[0,-2],[0,-47],[0,-51],[1,-103],[0,-36],[0,-36],[0,-38],[0,-68],[-1,-90],[0,-44],[0,-72],[0,-65],[1,-71],[0,-117],[0,-44],[0,-116],[0,-70],[1,-147],[0,-76],[0,-131],[0,-69],[0,-51],[0,-66],[-1,-362],[-2,-62],[2,-33],[0,-69],[0,-62],[0,-70],[0,-35],[0,-75],[0,-70],[0,-33],[0,-36],[0,-153],[-1,-222],[1,-108],[1,-43],[0,-130],[0,-66],[0,-65],[1,-38],[0,-35],[0,-59],[0,-47],[0,-485],[0,-1],[0,-212],[0,-268],[0,-40],[0,-50],[0,-41],[0,-64],[0,-64],[0,-101],[0,-8],[-1,-116]],[[75105,81164],[-41,0],[-17,0],[-21,-1],[-36,-1],[-36,1],[-16,0],[-16,1],[-39,0],[-33,0],[-19,0],[-34,0],[-32,0],[-14,0],[-45,-1],[-45,0],[-46,0],[-42,0],[-37,-1],[-17,1],[-81,-1],[-2,0],[-22,0],[-78,-1],[-15,0],[-41,-1],[-70,3],[-46,0],[-6,0],[-95,0],[-76,-8],[-14,0],[-17,-1],[-36,0],[-16,1],[-24,-1],[-32,1],[-18,0],[-18,0],[-34,-1],[-15,0],[-14,0],[-16,0],[-33,0],[-68,-1],[-36,0],[-18,0],[-25,0],[-13,-1],[-12,0],[-22,-1],[-31,0],[-19,1],[-56,0],[-54,0],[-23,-1],[-15,0],[-17,0],[-15,-1],[-68,0],[-82,-1],[-19,0],[-13,0],[-58,0],[-36,0],[-72,0],[-21,1],[-22,-1],[-6,0],[-12,-1],[-57,0],[-26,0],[-72,0],[-49,-1],[-23,0],[-36,-1],[-35,0],[-73,-2],[-40,0],[-13,0],[-24,0],[-32,0],[-20,0],[-35,0],[-16,-1],[-11,0],[-49,0],[-12,0],[-23,0],[-26,0],[-22,0],[-19,0],[-56,-1],[-19,0],[-14,0],[-18,0],[-14,0],[-33,0],[-40,0],[-55,-1],[-53,-1],[-16,0],[-24,0],[-13,0],[-23,0],[-29,-1],[-58,-1],[-40,0],[-14,0],[-31,0],[-19,-1],[-32,0],[-21,0],[-14,0],[-15,0],[-72,-1],[-109,0],[-23,0],[-34,-1],[-22,0],[-11,0],[-77,-1],[-42,1]],[[71113,81135],[-38,-1],[-25,0],[-28,0],[-21,-1],[-52,0],[-19,0],[-19,0],[-25,0],[-36,0],[-29,-1],[-12,1],[-39,-1],[-42,1],[-44,-1],[-15,1],[-20,0],[-23,0],[-13,0],[-15,0],[-22,0],[-29,0],[-6,0],[-75,-1],[-28,0],[-14,-1],[-5,-1],[-8,-1],[-13,2],[-71,0],[-57,0],[-54,-1],[-16,0],[-23,-2],[-84,-1],[-45,0],[-55,-1],[-27,-1],[-13,0],[-19,-1],[-14,0],[-36,0],[-14,0],[-12,-1],[-29,0],[-52,0],[-27,0],[-23,0],[-55,0],[-30,-1],[-16,0],[-17,2],[-12,-1],[-26,-1],[-17,0],[-27,-1],[-14,0],[-11,1],[-12,0],[-14,0],[-31,0],[-19,-1],[-39,0],[-17,-1],[-16,1],[-26,-1],[-38,0],[-14,0],[-44,1],[-52,0],[-61,0],[-16,0],[-14,0],[-32,1],[-11,0],[-38,0],[-27,0],[-17,0],[-28,0],[-20,1],[-14,-1],[-24,1],[-3,0],[-12,0],[-11,1],[-1,0],[-12,-1],[-19,0],[-88,0],[-27,0],[-24,1],[-21,0],[-68,-3],[-149,0],[-58,0],[-75,0],[-4,0],[-84,0],[-105,1],[-24,0],[-41,1],[-39,-1],[-27,-1],[-17,0],[-31,-1],[-22,1],[-24,-1],[-39,0],[-34,0],[-27,-1],[-3,0],[-20,0],[-35,1],[-17,0],[-23,0],[-16,0],[-15,0],[-26,0],[-1,0],[-15,0],[-57,-1],[-21,0],[-18,-1],[-18,1],[-24,-1],[-28,0],[-15,0],[-54,-1],[-15,2],[-23,3],[-21,0],[-53,-1],[-161,-1],[-63,-1],[-226,-3],[-209,-2],[-143,-2],[-96,-2],[-15,1],[-47,0],[-25,0],[-33,0],[-19,0],[-16,0],[-70,0],[-155,0],[-69,-1],[-13,1],[-13,-2],[-68,-1],[-30,1],[-17,0]],[[65677,95943],[52,-31],[33,-20],[113,-82],[109,-92],[34,-29],[52,-13],[56,-10],[13,-3],[110,8],[40,-12],[45,-37],[29,-37],[34,-115],[97,-138],[74,-104],[61,-113],[17,-50],[45,-79],[160,-197],[179,-191],[45,-35],[188,-134],[51,-5],[58,15],[97,54],[5,2],[11,6],[40,18],[12,-7],[70,-149],[14,-31],[34,-110],[45,-171],[42,-157],[18,-37],[31,-8],[12,-44],[73,-113],[5,-6],[22,-33],[31,-20],[20,-46],[32,-45],[34,-72],[11,-39],[4,-9],[49,-111],[36,-109],[53,-96],[8,-15],[10,-12],[15,-20],[55,-50],[28,-49],[54,-91],[23,-50],[21,-61],[15,-8],[2,-1],[44,-67],[12,-46],[39,-75],[17,-86],[8,-108],[11,-83],[29,-53],[65,-80],[43,-14],[21,-6],[46,-29],[38,-31],[50,-75],[50,-14],[25,-3],[28,-3],[110,-37],[34,0],[51,39],[11,8],[18,12],[36,-30],[15,0],[10,0],[39,32],[42,34],[39,34],[4,5],[67,59],[42,36],[20,17],[34,3],[62,-19],[32,-10],[64,-4],[39,-1],[4,0],[48,7],[95,111],[78,90],[19,22],[80,187],[106,246],[131,204],[39,126],[183,586],[102,591],[5,25],[29,167],[29,169],[22,127],[32,181],[27,159],[5,26],[75,152],[307,153],[85,-27],[150,-314],[6,-13],[171,-483],[354,-279],[179,252],[51,158],[17,50],[175,262],[191,-66],[145,-379],[5,-32],[52,-338],[149,-83],[169,243],[102,252],[91,113],[90,113],[90,-5],[125,278],[285,161],[46,-136],[7,-243],[8,-290],[171,-87],[16,-8],[199,121],[32,36],[232,254],[71,-71],[49,-24],[127,84],[110,288],[77,-9],[73,-170],[93,-218],[1,-3]],[[80465,91916],[10,-44],[0,-40],[0,-36],[1,-107],[0,-10],[1,-73],[0,-74],[0,-40],[0,-54],[0,-182],[0,-51],[1,-92],[0,-133],[1,-182],[2,-312],[0,-189],[1,-323],[0,-149],[-1,-107],[0,-83],[2,-73],[1,-86],[0,-10],[1,-29],[0,-34],[0,-114],[-1,-214],[0,-49],[0,-44],[-1,-84],[0,-37],[-1,-71],[0,-63],[-1,-91],[0,-109],[-1,-117],[0,-51],[-1,-35],[0,-180],[-1,-60],[-1,-62],[0,-75],[0,-59],[0,-47],[0,-59],[0,-37],[0,-65],[0,-50],[0,-38],[0,-34],[0,-84],[0,-58],[0,-133],[0,-37],[0,-43],[-1,-40],[0,-38],[0,-37],[0,-37],[0,-73],[0,-50],[2,-388],[0,-84],[1,-216],[1,-353],[1,-168],[-1,-229],[0,-60],[0,-57],[0,-49],[0,-35],[0,-98],[0,-52],[0,-37],[0,-44],[1,-52],[0,-398],[0,-120],[-1,-56],[0,-71],[0,-35],[0,-126],[0,-156],[-1,-38],[-1,-47],[-1,-59],[-1,-61],[0,-41],[-1,-54],[0,-181],[-1,-41],[0,-17],[0,-63],[1,-42],[-1,-82],[1,-41],[-1,-72],[0,-125],[0,-107],[0,-34],[0,-154],[0,-80],[1,-119],[0,-42],[0,-132],[0,-37],[0,-34],[0,-35],[0,-189],[0,-4],[0,-41],[0,-76],[0,-75],[1,-80],[0,-76],[0,-51],[0,-84],[1,-98],[0,-17],[1,-67],[0,-43],[0,-37],[1,-141],[1,-58],[-11,-23],[-17,-20],[0,-41],[1,-95],[-1,-91],[0,-120],[0,-51],[0,-56],[-1,-65],[0,-58],[1,-71],[0,-5],[-2,-283],[0,-106],[-1,-124],[0,-47],[0,-43],[0,-75],[0,-35],[0,-54],[0,-152],[0,-1],[0,-79],[2,-115],[0,-44],[0,-31],[0,-34],[0,-51],[0,-42],[0,-72],[0,-51],[0,-61],[0,-36],[0,-54],[0,-65],[1,-76],[-1,-51],[1,-69],[-1,-185],[0,-93],[0,-83]],[[80451,78261],[-22,0],[-25,-1],[-33,0],[-31,-1],[-44,-1],[-15,0],[-13,0],[-19,0],[-21,0],[-19,-1],[-22,0],[-15,0],[-17,-1],[-21,0],[-21,0],[-17,0],[-17,0],[-23,-1],[-19,0],[-24,-1],[-17,0],[-52,0],[-73,-2],[-25,0],[-19,0],[-16,0],[-30,1],[-21,0],[-35,1],[-47,1],[-15,0],[-16,0],[-17,1],[-16,-1],[-56,0],[-30,1],[-41,1],[-37,0],[-16,0],[-25,0],[-20,1],[-18,0],[-37,1],[-84,1],[-23,0],[-15,0],[-29,1],[-71,1],[-14,0],[-22,0],[-20,0],[-21,1],[-22,1],[-13,0],[-14,0],[-17,0],[-47,1],[-34,0],[-45,-1],[-38,0],[-37,0],[-54,0],[-48,0],[-95,1],[-29,-1],[-28,1],[-16,0],[-55,1],[-1,0],[-20,0],[-56,0],[-18,0],[-12,0],[-44,2],[-49,0],[-24,0],[-19,1],[-16,0],[-13,0],[-31,1],[-12,0],[-16,0],[-13,0],[-14,0],[-23,0],[-26,0],[-19,0],[-22,0],[-32,0],[-33,0],[-25,0],[-71,0],[-14,1],[-24,0],[-23,-1],[-46,-1],[-37,1],[-35,1],[-33,0],[-26,0],[-15,0],[-38,1],[-38,1],[-39,0],[-36,0],[-39,0],[-38,0],[-25,1],[-40,1],[-84,0],[-12,0],[-54,0],[-21,0],[-98,0],[-18,0],[-17,1],[-27,0],[-13,0],[-17,1],[-26,-1],[-20,1],[-82,1],[-140,0],[-48,0],[-15,1],[-39,0],[-41,0],[-32,0],[-34,-1]],[[76450,78278],[0,48],[0,59],[0,44],[0,89],[0,34],[0,140],[0,138],[0,132],[0,55],[0,46],[1,76],[0,17],[0,22],[0,64],[0,9],[0,68],[0,72],[0,79],[-1,42],[1,94],[0,12],[0,67],[0,69],[0,77],[0,47],[0,38],[0,156],[0,60],[0,75],[0,46],[0,122],[0,43],[0,56],[0,68],[0,75],[0,72],[0,55],[0,57],[0,75],[0,105],[0,69],[0,81],[0,40],[-14,0],[-38,0],[-17,0],[-56,0],[-43,0],[-20,0],[-17,0],[-18,0],[-25,0],[-18,0],[-13,0],[-30,-1],[-19,0],[-15,0],[-22,0],[-27,0],[-44,0],[-16,-1],[-28,1],[-23,0],[-19,0],[-23,0],[-22,-1],[-21,1],[-22,-1],[-27,1],[-15,0],[-19,0],[-3,0],[-5,0],[-15,0],[-30,-1],[-17,0],[-19,0],[-41,-1],[-34,-1],[-49,0],[-11,0],[-23,1],[-30,-1],[-23,0],[-12,0],[-24,0],[-16,0],[-38,-1],[-20,0],[-38,0],[-24,-1],[-15,0],[-16,0],[-19,0],[-18,0],[-18,0],[-36,0],[-21,0],[-2,0],[-19,0],[-11,0],[-12,0],[-16,-1]],[[75109,94870],[27,-6],[264,-56],[23,-5],[31,-43],[19,-25],[41,-17],[66,7],[15,19],[76,94],[80,167],[113,338],[32,51],[19,30],[70,44],[2,-1],[11,-5],[35,-18],[23,-11],[16,-39],[16,-40],[34,4],[27,3],[45,4],[55,-29],[37,-19],[23,18],[38,28],[27,-98],[65,-127],[104,-120],[34,7],[9,2],[20,4],[205,53],[31,41],[73,94],[63,65],[45,13],[16,5],[4,6],[26,38],[64,95],[63,-58],[36,-89],[19,-47],[61,-151],[18,-39],[28,-12],[110,-46],[102,-46],[21,-10],[32,13],[38,3],[19,-13],[57,1],[65,16],[38,23],[16,0],[29,1],[2,0],[48,-21],[11,-21],[21,-45],[103,-243],[7,-67],[26,-97],[26,-53],[21,-22],[14,-29],[5,-11],[7,-147],[8,-178],[39,-169],[23,-49],[17,-48],[-1,-157],[22,-142],[0,-9],[21,-42],[20,-37],[65,-43],[59,1],[64,2],[40,-21],[25,-22],[32,1],[38,28],[34,0],[16,-8],[30,-26],[49,-66],[28,-46],[16,-17],[24,-29],[4,-27],[0,-9],[56,-119],[15,-22],[45,-92],[17,-116],[46,-218],[19,-75],[51,-97],[13,-40],[32,-66],[11,-18],[34,-21],[19,-9],[18,-1],[24,-2],[64,-37],[25,-15],[7,0],[33,1],[2,0],[0,1],[10,9],[46,3],[49,3],[55,-16],[95,7],[42,10],[27,35],[4,5],[30,19],[34,10],[63,15],[42,1],[4,-3],[30,-23],[21,-4],[28,1],[107,6],[8,-8],[47,-93],[26,-13],[25,1],[19,-9],[89,-74],[89,-111],[95,-27]],[[50036,90894],[-1,-36],[0,-245],[1,-138],[1,-72],[0,-44],[0,-34],[1,-86],[0,-60],[-1,-315],[1,-249],[0,-73],[0,-23],[0,-50],[0,-177],[1,-80],[0,-117],[0,-99],[-1,-34],[0,-53],[0,-34],[1,-35],[0,-34],[0,-47],[0,-45],[0,-46],[0,-40],[1,-57],[0,-45],[0,-63],[0,-48],[0,-45],[0,-38],[0,-39],[0,-43],[0,-69],[2,-50],[0,-154],[0,-34],[-1,-417],[0,-78],[0,-30],[0,-45],[0,-4],[0,-48],[0,-51],[1,-349],[0,-122],[1,-293],[0,-137],[3,-105],[1,-34],[0,-41],[0,-33],[0,-39],[0,-37],[0,-45],[0,-35],[0,-68],[1,-94],[-1,-35],[1,-48],[0,-36],[0,-68],[0,-54],[1,-60],[0,-33],[-1,-44],[1,-55],[0,-51],[0,-37],[0,-62],[0,-52],[0,-46],[1,-55],[0,-57],[0,-46],[0,-100],[0,-25],[0,-9],[0,-50],[0,-45],[0,-37],[1,-44],[0,-54],[0,-71],[0,-57],[0,-45],[0,-72],[0,-73],[0,-39],[0,-47],[1,-43],[0,-49],[0,-84],[0,-66],[0,-38],[1,-44],[-1,-52],[1,-45],[0,-43],[0,-54],[0,-47],[0,-34],[0,-44],[1,-53],[0,-44],[0,-43],[0,-39],[0,-34],[1,-75],[-1,-36],[0,-43],[0,-55],[0,-62],[0,-81],[0,-35],[0,-37],[0,-73],[0,-52],[0,-34],[0,-42],[0,-60],[0,-40],[0,-65],[0,-50],[0,-36],[0,-37],[1,-40],[0,-61],[-1,-48],[1,-39],[0,-35],[0,-43],[0,-54],[0,-35],[-1,-67],[0,-54],[1,-959],[2,0],[137,2],[-1,-120],[14,-1],[-9,-18],[-1,-32],[0,-201],[0,-34],[0,-77],[0,-33],[-5,-33],[4,-215],[-1,-179],[0,-43],[-2,-284],[-1,-225],[1,-486],[0,-432],[1,-558],[0,-343],[1,-266],[3,-567],[1,-190],[1,-216],[1,-646],[0,-324],[2,-281],[1,-79],[0,-41],[0,-53],[1,-67],[0,-38],[0,-37],[0,-58],[0,-37],[0,-34],[0,-60],[0,-40],[1,-39],[-1,-48],[0,-62],[0,-60],[1,-47],[0,-42],[0,-35],[0,-51],[0,-34],[0,-50],[0,-66],[0,-59],[0,-37],[1,-75],[0,-41],[0,-53],[0,-63],[0,-40],[0,-386],[0,-201],[0,-42],[0,-176],[0,-646],[0,-238],[0,-269],[0,-687],[0,-240],[1,-180],[0,-319],[0,-152],[0,-169],[1,-341],[1,-196],[0,-103],[1,-4]],[[50211,69430],[-29,2],[-253,0]],[[49929,69432],[-58,0],[-100,0],[-240,1],[-23,0],[-168,1],[-136,-22],[-567,1],[-767,1],[-3,0],[-86,-1],[-303,-2],[-19,0],[-734,-4],[-26,0],[-43,-1],[-49,0],[-104,5],[-158,6],[-117,0],[-156,-1],[-309,-1],[-99,0],[-171,-1],[-186,-1],[-118,0],[-5,0],[-98,-2],[-21,0],[-149,10],[-335,2],[-148,2]],[[55102,69496],[-13,0],[-16,0],[-15,-1],[-17,-1],[-21,0],[-13,-1],[-23,-1],[-12,0],[-14,-1],[-26,0],[-12,0],[-24,0],[-17,1],[-15,-1],[-12,-1],[-12,-3],[-29,-1],[-15,-1],[-13,0],[-12,-1],[-34,-1],[-16,-1],[-26,0],[-19,0],[-16,-1],[-489,-14],[-169,-4],[-251,-7],[-13,-1],[-48,-1],[-13,6],[-12,0],[-16,0],[-19,0],[-15,0],[-17,1],[-9,0],[-13,0],[-19,0],[-11,0],[-25,0],[-12,0],[-26,-1],[-90,-4],[-18,0],[-59,-1],[-722,-3],[-66,-1],[-27,0],[-63,0],[-375,-4],[-279,4],[-1,0],[-15,-1],[-16,0],[-20,0],[-16,0],[-30,0],[-13,0],[-12,0],[-17,-1],[-29,0],[-11,0],[-37,-1],[-17,0],[-42,-1],[-14,0],[-33,1],[-65,-2],[-19,0],[-49,0],[-37,-1],[-27,-1],[-14,0],[-12,0],[-43,-3],[-20,5],[-15,-2],[-15,0],[-33,-1],[-15,0],[-15,0],[-23,0],[-16,0],[-20,0],[-15,0],[-17,0],[-47,0],[-12,0],[-24,0],[-48,0],[-16,0],[-19,0],[-18,0],[-12,1],[-15,0],[-16,0],[-3,0],[-13,0],[-25,-1],[-15,-1],[-14,0],[-21,1],[-13,0],[-24,0],[-11,0],[-36,1],[-16,0],[-27,1],[-12,-1],[-16,0],[-14,0],[-14,0],[-14,-1],[-37,0],[-11,-1],[-4,0],[-14,0],[-14,0],[-16,-1],[-17,0],[-23,0],[-31,-9],[-13,0],[-13,0],[-72,-2]],[[84870,84020],[-3,0],[-13,-2],[-6,0],[-65,0],[-1,0],[-182,1],[-167,-2],[-17,4],[-19,1],[-247,3],[-22,0],[-13,0],[-284,4],[1,-288],[2,-194],[0,-341],[4,-145],[-2,-364],[0,-83],[0,-57],[-1,-212],[0,-1],[0,-125],[0,-35],[-1,-89],[-1,-90],[0,-43],[0,-34],[0,-72],[0,-143],[0,-42],[1,-300],[0,-3],[0,-241],[-48,-2],[-1,-110],[-2,-116],[0,-35],[2,-199],[0,-41],[0,-39],[0,-82],[0,-64],[-1,-43],[0,-57],[0,-38],[0,-67],[0,-54],[0,-71],[1,-72],[0,-94],[0,-70],[0,-172],[1,-195],[0,-62],[0,-58],[0,-44],[0,-88],[0,-37],[0,-87],[0,-66],[1,-79],[0,-52],[0,-42],[0,-34],[1,-40],[0,-85],[0,-90],[0,-89],[0,-157],[0,-71],[0,-71],[0,-115],[0,-80],[-1,-62],[-1,-119],[0,-109],[0,-71],[0,-4],[-1,-63],[0,-69],[0,-91],[-1,-185],[0,-47],[-1,-78],[0,-48],[0,-42],[0,-86],[0,-69],[0,-65],[-1,-36],[0,-37],[0,-60],[0,-90],[0,-35],[-1,-66],[0,-58],[0,-36],[0,-73],[0,-41],[0,-1],[0,-98],[0,-47],[0,-61],[0,-35],[0,-35],[0,-42],[-1,-33],[1,-67],[0,-33],[-1,-47]],[[83780,75820],[1,-69],[1,-37],[0,-61],[1,-34],[0,-34],[0,-6],[0,-8],[0,-36],[1,-41],[0,-34],[1,-33],[0,-23],[0,-4],[-4,-42],[-58,-1],[-70,0],[-23,0],[-47,0],[-22,0],[-26,0],[-20,-1],[-27,0],[-23,0],[-23,0],[-16,0],[-25,0],[-24,0],[-16,0],[-22,0],[-26,-1],[-20,1],[-60,1],[-17,-1],[-21,1],[-18,0],[-32,1],[-27,1],[-27,0],[-22,0],[-17,0],[-40,0],[-20,0],[-22,1],[-15,0],[-11,0],[-27,0],[-22,1],[-22,0],[-17,0],[-14,1],[-31,1],[-25,0],[-11,0],[-24,1],[-67,0]],[[82684,75364],[-23,-1],[-32,1],[-44,0],[-22,1],[-23,0],[-17,1],[-3,0],[-24,0],[-43,-1],[-69,0],[-18,1],[-18,0],[-34,-1],[-32,0],[-15,0],[-15,0],[-22,0],[-17,0],[-17,0],[-16,0],[-17,0],[-17,0],[-18,0],[-19,0],[-15,0],[-25,0],[-21,1],[-16,0],[-25,0],[-18,0],[-52,0],[-41,0],[-27,0],[-15,1],[-19,0],[-41,-1],[-17,1],[-15,-1],[-41,0],[-23,1],[-32,-1],[-12,0],[-13,0],[-27,0],[-51,0],[-16,0],[-15,0],[-40,0],[-55,0],[-51,-1],[-46,0],[-15,0],[-19,0],[-36,0],[-18,0],[-50,0],[-87,-1],[-13,-1],[-13,0],[-19,0],[-22,0],[-1,0],[-12,0],[-43,2],[-28,0],[-78,0],[-29,0],[-32,0],[-18,0],[-32,0],[-68,0],[-36,0],[-37,0],[-17,1],[-126,2],[-39,1],[-1,65],[0,6],[0,47],[0,59],[0,77],[0,37],[0,93],[0,99],[0,127],[0,115],[0,240],[0,74],[0,45],[1,38],[0,95],[0,77],[0,44],[0,108],[0,53],[0,41],[1,62],[0,4],[0,39],[0,54],[0,37],[0,111],[-1,81],[0,49],[0,36],[-1,60],[0,196],[0,73],[0,68],[0,58],[0,119],[0,53],[0,45],[0,45],[0,48],[0,45],[0,69]],[[80465,91916],[127,-37],[57,-6],[137,-16],[87,18],[68,-99],[63,-93],[16,-82],[35,-79],[27,-251],[8,-74],[1,-108],[-2,-50],[-2,-93],[-14,-85],[-17,-45],[-6,-76],[-1,-67],[0,-2],[17,-105],[17,-35],[12,-9],[68,-25],[40,-4],[11,-7],[9,-6],[63,-56],[40,12],[30,26],[35,60],[27,59],[52,42],[25,32],[13,45],[14,50],[9,9],[22,50],[7,45],[23,49],[138,83],[2,0],[108,-6],[23,-18],[46,-41],[18,-38],[73,6],[39,-66],[36,-75],[2,-23],[6,-17],[22,-43],[44,-86],[38,-53],[36,1],[15,9],[11,13],[16,19],[46,10],[40,1],[41,-22],[19,-35],[10,-31],[7,-31],[4,-49],[7,-23],[46,-93],[70,-61],[55,-30],[17,-32],[36,-93],[50,-35],[93,-50],[73,9],[14,-47],[26,-50],[15,-40],[2,-76],[-2,-18],[-12,-160],[-4,-149],[6,-70],[18,-162],[-10,-180],[-6,-110],[15,-85],[109,-134],[107,-53],[61,-31],[45,-23],[17,-8],[4,-1],[14,-1],[63,-5],[423,62],[104,-76],[96,-69],[131,-305],[31,-379],[14,-95],[-10,-117],[-31,-58],[-34,-41],[-31,-67],[-2,-139],[-33,-139],[-27,-58],[-16,-77],[2,-125],[7,-44],[23,-94],[21,-44],[7,-22],[10,-63],[1,-71],[-9,-63],[9,-49],[72,-182],[55,-173],[28,-120],[47,-159],[0,-1],[21,-58],[47,-102],[29,-41],[15,-21],[21,-31],[93,-88],[34,-26],[10,-2],[44,-11],[70,-119],[49,-89],[63,-133],[56,-160],[14,-58],[26,-133],[13,-130],[3,-370],[1,-16],[15,-184],[6,-40]],[[84870,84020],[19,-136],[5,-30],[2,-11],[7,-29],[36,-165],[22,-30],[1,-1],[1,-3],[54,-117],[76,-101],[27,-27],[42,-21],[57,-13],[29,0],[86,42],[57,58],[31,50],[50,108],[40,73],[2,3],[4,5],[90,108],[50,50],[9,4],[35,19],[45,3],[23,2],[33,-4],[72,-26],[43,-31],[5,-4],[5,-6],[52,-60],[74,-138],[46,-120],[26,-98],[6,-31],[7,-40],[7,-94],[6,-76],[48,-178],[53,-138],[12,-23],[7,-17],[32,-48],[23,-40],[40,-51],[13,-16],[8,-9],[86,-48],[8,0],[120,-12],[28,1],[40,27],[96,103],[56,73],[22,17],[16,12],[115,85],[52,-5],[14,-1],[0,-1],[50,-26],[92,-19],[9,10],[169,-25],[35,-5],[15,-12],[18,-7],[60,-32],[16,-13],[23,-18],[13,-11],[56,-114],[68,-226],[4,-16],[17,-75],[43,-407],[14,-163],[0,-153],[-2,-67],[-1,-41],[-3,-59],[-13,-116],[-12,-71],[-23,-109],[-47,-167],[-37,-117],[-152,-314],[-58,-163],[-29,-117],[-14,-79],[-19,-171],[-2,-150],[4,-109],[22,-170],[20,-84],[24,-99],[13,-142],[1,-4],[0,-117],[-6,-62],[-3,-21],[-18,-117],[-29,-125],[-13,-39],[-5,-16],[-9,-42],[-7,-43],[-6,-38],[-3,-19],[-5,-91],[0,-39],[2,-121],[0,-28],[9,-83],[1,-9],[6,-58],[23,-114],[1,-2],[31,-100],[75,-187],[36,-62],[29,-50],[58,-78],[40,-40],[23,-22],[23,-32],[12,-18],[71,-142],[6,-12],[23,-62],[20,-58],[30,-92],[7,-36],[18,-95],[2,-10],[0,-1],[4,-32],[8,-63],[4,-46],[2,-91],[0,-10],[0,-67],[-1,-217],[0,-44],[2,-27],[3,-50],[1,-18],[1,-8],[5,-34],[2,-17],[19,-118],[31,-120],[29,-87],[47,-103]],[[88014,75770],[-26,-1],[-7,0],[-183,-4],[-57,0],[-144,1],[-58,2],[-166,1],[-118,3],[-58,1],[-28,0],[-34,0],[-48,1],[-203,2],[-155,2],[-15,1],[-28,3],[-86,0],[-18,1],[-34,1],[-8,0],[-15,0],[-9,1],[-57,4],[-92,11],[-28,0],[-16,0],[-35,-1],[-146,0],[-19,2],[-155,4],[-65,1],[-120,1],[-18,0],[-31,0],[-22,1],[-14,0],[-22,-1],[-17,1],[-91,-2],[-32,0],[-27,1],[-17,0],[-45,0],[-39,0],[-31,-1],[-32,0],[-128,0],[-15,0],[-19,0],[-24,-1],[-36,0],[-17,0],[-41,0],[-48,1],[-54,1],[-21,0],[-25,0],[-18,1],[-29,0],[-62,1],[-11,0],[-23,1],[-11,0],[-12,0],[-25,0],[-13,1],[-15,0],[-26,1],[-12,0],[-75,1],[-21,0],[-19,0],[-13,0],[-49,1],[-28,1],[-24,0],[-30,0],[-15,0],[-43,0],[-35,0],[-15,0],[-12,0],[-17,0],[-33,1],[-31,0],[-22,0],[-18,0],[-24,0],[-13,0],[-32,2],[-31,-2],[-32,0],[-17,1],[-94,1],[-26,-2],[-18,1],[-17,2],[-17,1],[-28,-1],[-15,1],[-16,0]],[[76450,78278],[-1,-41],[0,-33],[0,-122],[1,-39],[-1,-39],[0,-77],[0,-67],[0,-65],[1,-62],[-1,-146],[0,-79],[0,-77],[0,-78],[0,-41],[0,-34],[0,-60],[0,-172],[0,-37],[0,-41],[0,-62],[0,-76],[-1,-64],[0,-153],[0,-106],[0,-48],[0,-76],[0,-36],[0,-50],[0,-68],[0,-76],[-1,-152],[1,-77],[0,-77],[0,-34],[-1,-42],[1,-78],[-1,-153],[0,-72],[0,-86],[0,-69],[0,-69],[0,-95],[0,-141],[0,-76],[0,-60],[0,-55],[0,-50],[0,-41],[0,-1],[0,-39],[0,-82],[0,-43],[-1,-76],[1,-69],[0,-4],[0,-72],[-1,-83],[0,-41],[0,-108],[0,-59],[0,-62],[0,-68],[0,-66],[0,-52],[0,-60],[0,-64],[0,-65],[0,-54],[0,-105],[0,-53],[0,-65],[0,-46],[0,-96],[0,-75],[0,-60],[-1,-61],[1,-52],[0,-60],[0,-77],[0,-73],[0,-56],[-1,-74],[0,-74],[-1,-42],[2,-263],[0,-220],[-2,-369],[0,-41],[0,-71],[0,-61],[0,-187],[0,-75],[0,-116],[0,-5],[0,-39],[0,-111],[0,-83],[0,-78],[0,-42],[0,-67],[0,-56],[0,-39],[0,-36],[0,-52],[0,-166],[0,-36],[0,-91],[0,-78],[-1,-36],[0,-104],[-1,-68],[0,-52],[1,-47],[-1,-52],[0,-87],[0,-68]],[[76442,69593],[-27,0],[-14,1],[-55,-1],[-103,0],[-21,0],[-12,0],[-21,0],[-79,-1],[-60,1],[-36,-1],[-16,0],[-15,0],[-44,0],[-31,0],[-26,-1],[-57,-1],[-18,0],[-15,-1],[-16,1],[-12,0],[-15,0],[-14,0],[-18,0],[-9,-1],[-26,0],[-36,0],[-56,0],[-13,-1],[-15,0],[-12,0],[-28,0],[-60,0],[-14,0],[-16,-1],[-43,0],[-27,-1],[-14,0],[-12,0],[-25,0],[-29,0],[-57,1],[-21,-1],[-93,-1],[-16,0],[-32,-1],[-57,-1],[-20,0],[-15,0],[-17,0],[-15,0],[-27,1],[-21,-1],[-18,0],[-43,-1],[-27,0],[-15,0],[-35,0],[-35,0],[-16,0],[-36,-1],[-109,-1],[-16,0],[-13,0],[-27,-1],[-22,0],[-25,0],[-16,0],[-28,0],[-18,0],[-26,0],[-32,0],[-28,-1],[-52,1],[-27,-1],[-29,-6],[-137,3],[-16,0],[-23,1],[-23,0],[-110,-2],[-112,-3],[-223,2],[-44,1],[-16,-2],[-13,0],[-13,2],[-12,2],[-14,-1],[-16,-2],[-24,1],[-22,0],[-23,-2],[-21,3],[-15,-1],[-13,-1],[-13,1],[-12,-1],[-19,-1],[-13,0],[-31,1],[-26,-1],[-25,0],[-16,0],[-38,0],[-17,1],[-47,-1],[-12,0],[-41,0],[-87,-1],[-14,1],[-13,-1],[-14,1],[-16,0],[-87,-1],[-12,0],[-34,0],[-18,0],[-15,0],[-22,0],[-221,-1],[-29,0],[-23,0],[-30,0],[-27,0],[-40,-1],[-43,1],[-23,-1],[-12,0],[-60,0],[-26,0],[-24,-1],[-58,-1],[-16,0],[-36,0],[-12,0],[-39,0],[-13,-2],[-13,1],[-24,-1],[-16,1],[-30,0],[-27,1],[-46,-1],[-222,-1],[-108,-3],[-23,-1],[-92,2],[-16,0],[-147,-4],[-18,-1],[-20,0],[-20,-4]],[[71112,69554],[-2,46],[0,25],[0,20],[0,40],[0,8],[0,29],[0,73],[1,43],[0,59],[0,64],[0,80],[0,42],[0,37],[0,33],[0,58],[0,107],[0,55],[0,55],[0,93],[0,96],[0,39],[0,51],[0,57],[-2,714],[0,39],[0,34],[0,55],[0,51],[0,42],[-1,200],[0,54],[0,94],[0,402],[0,131],[0,41],[0,66],[-1,80],[0,120],[0,45],[0,241],[0,217],[0,41],[0,114],[0,66],[0,284],[0,186],[0,31],[0,270],[0,243],[0,89],[-1,73],[1,61],[-1,40],[1,218],[0,46],[1,193],[-1,229],[0,158],[1,94],[0,72],[1,150],[-1,40],[1,51],[0,60],[0,73],[0,36],[0,187],[1,148],[0,64],[0,6],[0,70],[0,119],[0,66],[0,51],[0,183],[1,58],[0,198],[0,60],[0,104],[1,122],[0,39],[0,80],[0,37],[0,4],[0,62],[1,86],[0,35],[0,100],[0,46],[0,34],[0,141],[0,38],[0,14],[0,229],[-1,65],[1,40],[-1,194],[0,61],[0,59],[0,56],[0,46],[0,116],[0,87],[0,38],[0,40],[0,48],[0,50],[0,61],[1,50],[-1,55],[0,60],[1,40],[0,56],[-1,43],[0,62],[0,56],[0,86],[0,260],[0,42],[0,54],[1,131],[-1,50],[0,159],[1,51],[0,62],[0,43],[0,38],[0,87]],[[15500,66729],[-91,-6],[-209,-5],[-40,-4],[-19,-1],[-69,-5],[-32,-3],[-42,-3],[-100,-8],[-25,-5],[-21,-3],[-217,-24],[-35,-4],[-16,-2],[-21,-2],[-38,-3],[-27,-3],[-490,-46],[-13,-1],[-17,0],[-31,-1],[-42,0],[-43,-1],[-43,-1],[-38,0],[-17,-1],[-18,0],[-31,0],[-13,0],[-16,0],[-12,1],[-56,-8],[-149,5],[-135,9],[-146,9],[-149,3],[-97,1],[-33,1],[-140,3],[-13,1],[-134,4],[-19,0],[-19,1],[-3,0],[-29,1],[-125,6],[-104,6],[-107,5],[-176,8],[-50,1],[-135,2],[-239,3],[-1006,17],[-70,-1],[-648,-6],[-601,-7],[-110,-22],[-173,-6],[-15,-1],[-16,1],[-76,1],[-60,2],[-67,2],[-13,0],[-50,-1],[-68,0],[-22,-1],[-64,0],[-20,2],[-65,3],[-44,2],[-29,1],[-35,2],[-28,1],[-26,1],[-49,2],[-31,1],[-36,1],[-72,3],[-59,2],[-155,6],[-14,1]],[[7894,66665],[-31,2],[-39,1],[-37,2],[-30,1],[-43,2],[-20,1],[-21,1],[-16,1],[-76,3],[-20,1],[-21,1],[-33,1],[-39,2],[-15,1]],[[71112,69554],[2,-36],[0,-135],[1,-48],[0,-66],[0,-34],[0,-63],[0,-78],[1,-96],[0,-20],[0,-43],[0,-39],[-2,-79],[0,-3],[2,-31],[0,-94],[0,-75],[0,-38],[0,-34],[0,-134],[0,-78],[0,-61],[0,-50],[0,-18],[1,-28],[-1,-42],[0,-35],[1,-35],[0,-52],[0,-38],[0,-37],[0,-44],[0,-35],[0,-38],[0,-35],[0,-37],[0,-42],[0,-55],[0,-48],[0,-44],[0,-101],[1,-102],[0,-72],[0,-145],[0,-60],[0,-43],[1,-52],[0,-142],[0,-42],[0,-51],[0,-64],[0,-51],[0,-9],[1,-55],[-1,-46],[0,-52],[0,-57],[1,-47],[0,-41],[0,-146],[0,-43],[1,-194],[-1,-46],[0,-41],[1,-45],[0,-94],[0,-35],[0,-38],[0,-67],[0,-56],[-1,-50],[1,-88],[1,-102],[0,-47],[1,-505],[0,-43],[0,-113],[0,-63],[1,-86],[0,-64],[0,-93],[0,-101],[0,-34],[1,-99],[0,-42],[0,-49],[0,-62],[1,-97]],[[71126,63781],[-45,1],[-3,0],[-30,-1],[-35,0],[-47,-1],[-43,-1],[-20,2],[-13,-1],[-45,0],[-49,-1],[-59,-3],[-20,1],[-36,1],[-17,-1],[-15,0],[-12,0],[-29,0],[-16,-1],[-19,0],[-76,0],[-15,0],[-23,0],[-29,-1],[-21,2],[-14,-1],[-13,0],[-13,0],[-29,-1],[-14,-1],[-6,0],[-83,1],[-11,0],[-45,-2],[-49,-1],[-18,-1],[-19,0],[-24,-1],[-29,1],[-26,0],[-34,0],[-55,-1],[-22,0],[-53,0],[-57,-3],[-23,0],[-14,0],[-24,1],[-45,-1],[-34,-2],[-16,0],[-13,0],[-23,-1],[-28,-1],[-22,0],[-32,0],[-19,0],[-37,0],[-36,0],[-34,-1],[-12,0],[-15,-1],[-14,1],[-35,-1],[-50,0],[-21,0],[-13,0],[-20,-1],[-37,0],[-45,-1],[-70,-1],[-37,-1],[-12,0],[-25,0],[-26,-1],[-56,-1],[-41,0],[-32,-1],[-30,0],[-20,0],[-62,-1],[-15,-1],[-13,-6],[-11,5],[-3,0],[-10,0],[-69,-2],[-43,-1],[-52,-1],[-29,-1],[-48,0],[-54,0],[-22,-1],[-94,1],[-4,0],[-47,3],[-145,0],[-29,0],[-113,-3],[-60,1],[-56,2],[-19,-2],[-85,0],[-71,0],[-40,0],[-27,-1],[-71,0],[-50,0],[-75,1],[-23,2],[-39,0],[-29,1],[-20,0],[-20,-1],[-56,-2],[-25,1],[-13,-3],[-91,1],[-128,0],[-40,0],[-27,-1],[-17,0],[-46,-1],[-20,0],[-32,2],[-30,2],[-105,-3],[-249,-6],[-92,-1],[-215,0],[-190,-1],[-21,0]],[[65839,63737],[0,47],[1,944],[0,459],[0,391],[-1,103],[-2,57],[0,167],[0,69],[1,108],[0,45],[0,25],[0,17],[0,114],[0,68],[1,37],[0,34],[-1,43],[1,35],[-1,38],[-1,54],[2,39],[1,483],[0,222],[0,262],[1,475],[0,120],[0,272],[0,96],[1,353],[0,129],[-1,234],[-1,248],[-24,0],[-13,0],[-21,0]],[[82684,75364],[0,-115],[0,-125],[1,-146],[-1,-82],[0,-20],[-1,-56],[0,-5],[-1,-60],[0,-57],[0,-1],[-3,-143],[-2,-139],[0,-171],[0,-30],[0,-84],[2,-84],[0,-35],[0,-61],[-1,-49],[0,-45],[0,-36],[1,-155],[0,-36],[0,-68],[1,-56],[-3,-50],[1,-152],[0,-49],[0,-44],[0,-102],[0,-40],[0,-50],[0,-55],[0,-56],[-1,-46],[0,-36],[0,-50],[-1,-64],[0,-39],[0,-41],[1,-34],[-2,-38],[0,-40],[0,-46],[2,-158],[0,-78],[1,-108],[0,-101],[-1,-38],[0,-45],[0,-45],[0,-39],[0,-57],[0,-65],[0,-50],[0,-37],[0,-54],[0,-40],[0,-40],[0,-44],[0,-96],[0,-104],[0,-61],[0,-57],[-1,-49],[0,-68],[0,-52],[0,-54],[0,-54],[0,-51],[0,-38],[0,-60],[-1,-66],[0,-1],[0,-114],[0,-1],[0,-47],[0,-96],[-1,-65],[-1,-134],[-1,-139],[0,-44],[0,-68],[0,-55],[0,-67],[-1,-131],[0,-34],[0,-47],[0,-45]],[[82671,69576],[-17,0],[-31,0],[-43,1],[-51,0],[-37,0],[-31,0],[-9,0],[-11,0],[-24,0],[-20,0],[-63,0],[-24,0],[-58,1],[-23,0],[-12,0],[-99,0],[-19,0],[-15,0],[-10,0],[-41,0],[-26,0],[-23,0],[-32,0],[-65,1],[-31,0],[-47,0],[-25,0],[-24,0],[-38,0],[-21,0],[-17,0],[-21,0],[-28,0],[-23,0],[-25,0],[-26,0],[-12,0],[-13,0],[-25,0],[-28,0],[-26,1],[-24,-1],[-26,0],[-38,1],[-18,-1],[-13,1],[-14,0],[-42,0],[-15,0],[-17,0],[-16,0],[-15,0],[-14,1],[-17,-1],[-21,1],[-26,0],[-17,0],[-31,0],[-33,0],[-18,0],[-16,-1],[-17,1],[-19,-1],[-12,0],[-38,1],[-18,0],[-29,0],[-20,0],[-28,0],[-16,0],[-38,0],[-55,0],[-39,0],[-16,0],[-13,0],[-12,1],[-59,0],[-53,0],[-94,0],[-7,0],[-10,0]],[[80433,69582],[-62,0],[-43,1],[-15,0],[-31,0],[-19,0],[-20,0],[-17,0],[-13,-1],[-24,0],[-12,0],[-22,1],[-39,0],[-15,0],[-16,0],[-15,0],[-18,0],[-42,0],[-14,-1],[-18,0],[-17,1],[-23,-1],[-16,0],[-55,0],[-32,0],[-12,0],[-20,0],[-15,-1],[-17,1],[-37,0],[-67,0],[-20,0],[-25,0],[-23,0],[-40,0],[-12,0],[-40,0],[-21,1],[-30,0],[-21,0],[-22,0],[-18,1],[-14,-1],[-27,0],[-17,0],[-14,0],[-92,1],[-45,0],[-20,1],[-34,-1],[-18,1],[-14,-1],[-65,1],[-16,0],[-12,0],[-3,0],[-20,0],[-13,0],[-38,0],[-16,-1],[-13,1],[-16,0],[-19,0],[-20,0],[-36,0],[-18,1],[-33,0],[-49,-1],[-24,0],[-11,1],[-35,-1],[-33,0],[-23,1],[-16,0],[-51,0],[-12,0],[-19,0],[-16,0],[-28,0],[-23,0],[-20,1],[-11,-1],[-24,0],[-21,1],[-40,-1],[-57,1],[-38,0],[-44,-1],[-48,2],[-16,0],[-11,0],[-40,0],[-13,0],[-38,0],[-13,-1],[-24,1],[-19,0],[-22,1],[-19,-1],[-19,0],[-20,0],[-17,-1],[-14,1],[-13,1],[-25,0],[-20,0],[-34,1],[-13,-1],[-16,1],[-16,-1],[-16,1],[-19,0],[-28,0],[-17,0],[-12,0],[-29,0],[-20,0],[-21,1],[-18,0],[-46,-1],[-18,0],[-36,0],[-19,0],[-23,0],[-37,1],[-201,-6],[-26,8],[-36,-1],[-25,0],[-53,0],[-10,0],[-2,0],[-67,0],[-29,0],[-17,0],[-20,0],[-16,0],[-27,0],[-19,0],[-16,0],[-70,0],[-21,0],[-16,1],[-80,1],[-42,0],[-31,1],[-43,0],[-29,-2]],[[88014,75770],[40,-62],[44,-68],[70,-93],[18,-24],[18,-42],[17,-40],[12,-27],[0,-1],[15,-33],[22,-77],[12,-38],[11,-38],[7,-23],[1,-3],[11,-63],[5,-43],[17,-143],[8,-64],[-3,-65],[-1,-25],[-8,-143],[-3,-65],[-1,-28],[-1,-31],[20,-52],[24,-62],[15,-37],[2,-38],[-6,-101],[-18,-63],[-40,-147],[-58,-116],[-11,-22],[-126,-99],[-66,-41],[-49,-30],[-8,-13],[-10,-17],[-2,-10],[-10,-54],[-5,-32],[-1,-24],[0,-22],[2,-24],[1,-16],[1,-3],[42,-130],[19,-58],[32,-74],[15,-67],[12,-54],[14,-100],[12,-154],[0,-58],[-15,-155],[-6,-21],[-19,-142],[-2,-16],[0,-15],[1,-86],[1,-91],[14,-80],[16,-94],[3,-15],[6,-31],[17,-55],[15,-49],[29,-79],[41,-87],[14,-20],[123,-183],[12,-13],[15,-28],[6,-13],[4,-8],[15,-35],[25,-57],[15,-58],[16,-71],[-2,-16],[42,-224],[1,-9],[0,-9],[18,-46],[8,-15],[33,-68],[41,-61],[0,-1],[42,-37],[9,-8],[26,-12],[1,-1],[43,-12],[60,-20],[18,-8],[53,-46],[21,-30],[18,-26],[8,-10],[16,-36],[31,-66],[1,-2],[9,-22],[7,-19],[0,-1],[20,-70],[21,-100],[14,-83],[1,-10],[2,-30],[5,-73],[4,-146],[-8,-137],[-3,-32],[-8,-83],[0,-6],[-8,-44],[-4,-19],[-9,-54],[-14,-58],[0,-2],[-12,-40],[-17,-38],[-14,-58],[-5,-53],[-2,-30],[-12,-75],[-8,-34],[-4,-17],[-7,-66],[-6,-67],[-3,-71],[-2,-35],[-1,-19],[0,-13],[0,-69],[-1,-105],[4,-80],[3,-39],[8,-120],[1,-3],[0,-4],[35,-267],[0,-4],[4,-19],[4,-24],[7,-32],[8,-37]],[[88969,68140],[-12,-1],[-10,0],[-14,0],[-45,-2],[-32,-1],[-102,-2],[-1,0],[-12,-1],[-23,-4],[-12,0],[-74,-4],[-36,-1],[-38,-2],[-6,-53],[0,-45],[-1,-159],[-1,-36],[1,-160],[-1,-35],[-1,-37],[0,-133],[0,-101],[-1,-172],[1,-35],[0,-69],[-18,-13],[-111,5],[-17,1],[-18,1],[-57,3],[-57,1],[-40,2],[-26,0],[-48,2],[-14,1],[-20,0],[-12,0],[-40,2],[-171,11],[-52,3],[-50,3],[-25,0],[-23,0],[-41,0],[-4,1],[-27,0],[-29,1],[-29,0],[-82,3],[-83,3],[-39,1],[-28,1],[-12,0],[-71,2],[-71,3],[-34,-1],[-34,0],[-13,0],[-2,0],[-43,4],[-94,3],[-13,0],[-11,-1],[-34,1],[-33,1],[-55,1],[-43,3],[-29,-3],[-2,0],[-19,-2],[-42,-5],[-13,-3],[-34,-8],[-29,-2],[-19,-1],[-66,-7],[-53,0],[-36,-1],[-46,-1],[-1,0],[-28,0],[-15,0],[-21,0],[-16,-1],[-18,-7],[-7,1],[-2,0],[-3,1],[-30,6],[-12,0],[-47,2],[-32,-4],[-31,2],[-59,1],[-14,-2],[-23,2],[-14,-3],[-25,-1],[-2,0],[-8,0],[-17,1],[-20,0],[-35,0],[-12,-2],[-16,1],[-27,-1],[-88,1],[-13,-2],[-14,-7],[-12,1],[-30,5]],[[85745,67096],[-1,14],[-1,273],[-1,85],[0,35],[-3,364],[-1,203],[0,39],[0,46],[1,102],[0,180],[0,34],[0,68],[0,53],[0,60],[0,36],[0,67],[0,35],[0,36],[0,71],[0,56],[0,44],[0,77],[-1,82],[0,54],[0,33],[0,40],[0,24],[0,36],[0,51],[-1,48],[0,36],[0,46],[0,37],[-33,1],[-21,0],[-3,0],[-9,1],[-13,0],[-91,0],[-14,0],[-13,1],[-25,0],[-41,0],[-30,0],[-18,0],[-21,0],[-22,0],[-21,0],[-17,0],[-17,0],[-13,0],[-18,0],[-22,0],[-13,0],[-41,0],[-15,0],[-23,1],[-16,0],[-14,0],[-26,0],[-18,0],[-11,0],[-26,0],[-16,1],[-13,0],[-23,0],[-21,-1],[-13,1],[-14,0],[-16,0],[-14,0],[-19,0],[-23,-1],[-24,1],[-25,0],[-30,0],[-27,0],[-24,0],[-21,0],[-57,0],[-14,0],[-38,1],[-23,-1],[-25,1],[-23,-1],[-15,1],[-17,0],[-25,0],[-27,0],[-48,0],[-12,0],[-10,2],[-3,1],[-24,-3],[-15,-1],[-25,-3],[-14,4],[-30,1],[-18,-1],[-19,1],[-40,0],[-33,0],[-3,0],[-9,0],[-39,1],[-5,-1],[-17,0],[-12,0],[-20,1],[-54,0],[-4,0],[-13,0],[-10,0],[-24,0],[-14,0],[-49,0],[-26,0],[-32,0],[-25,0],[-13,1],[-27,0],[-28,-1],[-15,0],[-32,1],[-76,0],[-23,0],[-40,0],[-19,1],[-16,-1],[-25,1],[-23,0],[-13,0],[-35,0],[-22,1],[-68,-1],[-21,1],[-22,0],[-17,0],[-15,0],[-20,1],[-29,0],[-20,0],[-17,0],[-13,0],[-19,1],[-16,0],[-34,0],[-15,0],[-28,0],[-42,0],[-21,0],[-21,0],[-19,0],[-25,1],[-21,-1],[-22,1],[-12,0],[-20,0],[-18,0],[-13,0],[-12,0],[-50,1],[-20,0],[-26,1],[-28,-1],[-22,0],[-14,0]],[[30037,69636],[3,-407],[0,-65],[1,-189],[0,-42],[-1,-368],[-2,-835],[0,-73],[0,-20],[0,-22],[-2,-840],[7,-208],[0,-327],[0,-36],[-1,-487],[0,-130],[0,-40],[1,-86],[0,-77],[0,-147],[0,-113],[-1,-247],[-1,-553],[0,-56],[0,-163],[1,-97],[1,-381],[1,-333],[-1,-495],[-1,-333],[0,-59],[-2,-336],[0,-135],[0,-172],[0,-39],[0,-54],[0,-101],[0,-250],[1,-426],[0,-285],[0,-234],[1,-509],[0,-43],[0,-110],[0,-378],[1,-1029],[0,-60],[0,-59],[2,-171]],[[30045,58016],[-117,-3],[-162,-3],[-59,-1],[-137,-2],[-57,-1],[-321,0],[-119,-1],[-259,-3],[-339,-2],[-99,-1],[-333,-3],[-195,-2],[-85,-1],[-11,0],[-64,1],[-94,1],[-215,3],[-426,7],[-13,-2],[-33,-5],[-24,5],[-45,-1],[-125,-2],[-21,0],[-346,-6],[-12,3],[-285,-2],[-20,-3],[-12,1],[-37,-1],[-18,0],[-21,0],[-15,0],[-35,0],[-18,1],[-13,0],[-13,1],[-13,1],[-32,0],[-14,-1],[-16,0],[-19,0],[-14,-1],[-13,-4],[-13,-5],[-31,0],[-87,4],[-367,-1],[-83,0],[-39,0],[-74,0],[-128,3],[-193,0],[-311,0],[-269,0],[-37,0],[-29,0],[-419,0]],[[23646,57990],[-60,0],[-106,0],[-5,0],[-248,-15],[-17,0],[-268,5],[-139,2],[-100,2],[1,150],[0,57],[1,55],[0,169],[1,206],[0,260],[0,1036],[0,93],[1,139],[0,69],[1,104],[0,59],[3,548],[0,386],[0,64],[1,49],[1,170],[2,133],[0,52],[0,516],[1,51],[-8,56],[0,249],[1,75],[0,107],[0,55],[1,271],[2,498],[0,91],[0,62],[0,8],[1,294],[9,2451],[-4,306]],[[36674,69502],[1,-352],[0,-982],[0,-47],[0,-43],[0,-9],[0,-288],[0,-90],[0,-3],[0,-1086],[0,-35],[5,-784],[3,-59],[3,-69],[7,-282],[1,-39],[1,-85],[9,-1595],[-3,-824],[1,-423],[-1,-812],[0,-1],[1,-395],[0,-1105],[1,-740],[9,-857],[4,-250],[0,-320]],[[36716,57927],[-162,1],[-21,-2],[-194,-15],[-21,0],[-354,1],[-208,1],[-196,1],[-338,1],[-1,0],[-311,21],[-419,14],[-126,5],[-335,11],[-365,12],[-196,17],[-264,-1],[-112,0],[-170,1],[-59,0],[-418,5],[-395,-2],[-21,1],[-772,15],[-140,3],[-64,1],[-26,0],[-32,1],[-235,7],[-16,1],[-59,3],[-14,3],[-31,-1],[-19,-4],[-297,-6],[-58,-2]],[[30267,58020],[-222,-4]],[[85745,67096],[-3,-419],[-1,-21],[-1,-32],[0,-57],[0,-73],[0,-45],[0,-74],[1,-62],[0,-40],[0,-36],[0,-57],[0,-37],[0,-219],[0,-8],[0,-28],[0,-34],[0,-38],[0,-94],[0,-38],[0,-126],[0,-106],[0,-48],[0,-176],[0,-111],[0,-39],[0,-60],[0,-46],[0,-54],[0,-48],[0,-34],[0,-37],[0,-69],[0,-241],[0,-45],[0,-123],[0,-73],[0,-123],[0,-38],[0,-42],[0,-39],[0,-47],[0,-34],[0,-34],[0,-56],[0,-68],[0,-57],[0,-118],[0,-83],[0,-139],[0,-42],[0,-43],[0,-71],[0,-47],[0,-43],[-1,-36],[0,-238],[0,-42],[0,-46],[0,-40],[0,-40],[0,-54],[0,-68],[0,-36],[0,-54],[0,-149],[0,-199],[0,-283],[0,-65],[0,-71],[0,-106],[0,-51],[0,-72],[0,-118],[0,-480],[0,-3],[0,-44],[0,-109],[0,-71],[0,-60],[0,-2],[0,-101],[0,-95],[0,-64],[1,-38],[-1,-132],[1,-51],[0,-196],[0,-148],[0,-71],[0,-61],[0,-54],[0,-45],[0,-43],[0,-48],[0,-82],[0,-44],[0,-35],[0,-44],[0,-68],[0,-220],[0,-70],[0,-82],[0,-42],[0,-60],[0,-230],[0,-84],[0,-41],[0,-38],[0,-77],[0,-74],[0,-48],[0,-38],[0,-82]],[[85741,57981],[-28,0],[-23,1],[-17,-1],[-16,0],[-13,0],[-23,1],[-59,-1],[-15,1],[-35,0],[-35,1],[-12,0],[-16,0],[-26,0],[-12,0],[-20,0],[-19,0],[-13,0],[-24,0],[-14,0],[-22,1],[-15,0],[-16,0],[-17,0],[-21,1],[-15,-1],[-28,1],[-18,0],[-36,0],[-24,1],[-35,0],[-34,1],[-17,0],[-17,0],[-22,0],[-13,0],[-22,0],[-16,0],[-24,1],[-25,0],[-30,0],[-28,0],[-16,0],[-2,0],[-37,0],[-26,1],[-69,0],[-37,1],[-16,-1],[-19,0],[-24,1],[-23,0],[-15,1],[-20,-1],[-54,0],[-15,1],[-17,0],[-23,0],[-14,0],[-33,0],[-104,1],[-70,0],[-17,0],[-18,0],[-16,0],[-21,0],[-16,0],[-26,1],[-47,0],[-25,1],[-13,-1],[-14,0],[-14,0],[-35,0],[-12,0],[-14,0],[-24,0],[-13,-6],[-20,-1],[-12,0],[-70,3],[-14,0],[-12,3],[-12,3],[-16,0],[-20,0],[-34,1],[-18,0],[-12,0],[-12,0],[-34,0],[-26,0],[-29,0],[-13,0],[-26,1],[-12,0],[-30,-1],[-12,0],[-31,1],[-24,0],[-19,0],[-23,0],[-30,0],[-25,0],[-29,0],[-21,1],[-43,0],[-30,0],[-12,0],[-39,0],[-23,1],[-24,0],[-12,0],[-73,0],[-8,0],[-55,1],[-12,0],[-22,1],[-14,0],[-32,0],[-33,-1],[-13,0],[-27,1],[-12,0],[-20,0],[-19,0],[-66,0],[-21,1],[-13,0],[-22,0],[-26,0],[-24,0],[-22,1],[-21,0],[-20,0],[-27,0],[-26,0],[-13,-1],[-20,1],[-33,0],[-18,0],[-20,0],[-14,0],[-30,0],[-23,0],[-24,1],[-26,0],[-15,0],[-24,0],[-17,0],[-59,0],[-24,0],[-20,0],[-16,0],[-20,0],[-32,1],[-23,0],[-24,0],[-17,0],[-16,0],[-15,0],[-90,1],[-12,0],[-19,0],[-14,0],[-12,0]],[[81730,58006],[-74,0],[-14,0],[-22,0],[-13,0],[-31,0],[-38,1],[-29,0],[-27,0],[-14,1],[-33,0],[-14,0],[-12,0],[-12,0],[-14,0],[-14,0],[-19,0],[-37,0],[-20,0],[-19,1],[-16,-1],[-16,1],[-35,-1],[-33,1],[-33,0],[-47,0],[-28,1],[-49,0],[-23,0],[-22,1],[-17,-1],[-15,1],[-32,0],[-12,0],[-26,0],[-12,0],[-13,0],[-12,1],[-27,0],[-20,0],[-12,0],[-24,0],[-19,0],[-19,1],[-13,-1],[-16,0],[-21,0],[-13,1],[-13,-1],[-12,0],[-15,0],[-15,-1],[-89,1],[-12,1],[-28,0],[-10,0],[-28,0]],[[80427,58013],[0,77],[0,24],[1,11],[0,40],[0,36],[0,65],[0,51],[0,63],[0,41],[0,75],[0,34],[0,66],[0,63],[1,217],[-1,47],[1,56],[0,74],[0,61],[0,85],[0,38],[1,225],[0,92],[0,39],[0,82],[0,36],[0,129],[1,38],[0,67],[0,65],[0,47],[0,299],[0,71],[0,55],[0,53],[0,105],[0,106],[0,51],[0,34],[-1,78],[0,10],[0,140],[0,94],[0,42],[0,39],[0,35],[0,79],[0,7],[0,37],[0,194],[0,36],[0,69],[0,104],[0,37],[0,42],[0,185],[0,53],[0,278],[0,36],[0,67],[-1,347],[0,55],[0,66],[0,114],[0,91],[0,182],[0,45],[0,115],[0,51],[0,168],[0,1],[0,77],[-1,154],[0,154],[0,88],[0,121],[0,120],[0,48],[0,45],[0,109],[0,127],[1,40],[0,80],[0,34],[0,43],[-1,45],[1,84],[0,88],[0,76],[0,85],[0,116],[0,275],[0,35],[0,42],[0,42],[0,63],[0,55],[1,101],[0,90],[0,47],[-1,170],[1,71],[1,115],[0,22],[0,142],[0,85],[0,89],[0,148],[0,51],[-1,80],[0,2],[0,31],[0,46],[0,52],[0,53],[0,57],[0,47],[0,55],[0,54],[0,128],[1,62],[0,50],[-1,91],[0,52],[1,118],[-1,67],[0,99],[1,159],[0,156],[0,67],[0,36],[0,47],[0,35],[0,73],[0,48],[0,50],[0,64],[0,89],[0,39],[0,164],[0,137],[1,43],[1,40],[0,35],[0,51]],[[76442,69593],[1,-99],[0,-39],[0,-172],[0,-94],[0,-43],[1,-49],[0,-37],[0,-38],[1,-328],[0,-65],[0,-113],[0,-65],[1,-104],[0,-184],[0,-39],[0,-5],[0,-87],[0,-65],[-1,-35],[-1,-39],[0,-81],[1,-46],[-1,-67],[2,-62],[-1,-95],[0,-81],[0,-187],[0,-34],[0,-56],[0,-2],[0,-77],[-1,-41],[1,-59],[0,-18],[0,-200],[0,-58],[-1,-42],[0,-179],[0,-19],[0,-67],[0,-10],[0,-38],[0,-47],[0,-48],[1,-61],[-1,-71],[0,-51],[0,-87],[0,-59],[0,-58],[0,-60],[0,-97],[0,-40],[0,-82],[1,-55],[-1,-67],[0,-137],[0,-101],[0,-187],[0,-67],[0,-69],[0,-163],[1,-42],[-1,-68],[1,-170],[-1,-60],[1,-69],[-1,-71],[0,-71],[0,-76],[0,-56],[0,-39],[0,-58],[0,-35],[0,-115],[1,-38],[0,-39],[0,-39],[0,-44],[0,-47],[0,-37],[0,-43],[0,-62],[-1,-102],[1,-35],[0,-40],[-1,-44],[1,-51],[-1,-45],[1,-113],[0,-57],[0,-93],[-1,-70],[1,-65],[0,-48],[0,-40],[0,-80],[0,-56],[0,-36],[0,-52],[0,-41],[0,-64],[0,-36],[0,-76],[0,-40],[0,-69],[0,-69],[0,-85],[0,-107],[0,-85],[0,-42],[0,-55],[0,-43],[0,-67],[0,-71],[0,-70],[0,-50],[0,-42],[0,-117],[0,-62],[0,-93],[0,-52],[0,-71],[0,-50],[0,-85],[-1,-64],[0,-43],[-1,-31],[0,-38],[1,-74],[0,-24],[1,-32],[0,-73],[1,-39],[0,-74],[0,-42],[0,-93],[0,-38],[0,-35],[0,-38],[-1,-73],[0,-2],[1,-73],[0,-76],[0,-61],[0,-38],[0,-48],[0,-74],[0,-75],[0,-93],[0,-55],[0,-39],[0,-35],[0,-105],[0,-43],[0,-105],[0,-43],[0,-74],[0,-75],[0,-74],[0,-148],[0,-33],[0,-63],[0,-73],[0,-47],[0,-92],[0,-63],[0,-39],[-1,-34],[1,-75],[0,-74],[0,-58]],[[76446,58021],[-24,-1],[-19,0],[-36,0],[-33,0],[-24,0],[-15,0],[-23,0],[-26,0],[-22,-1],[-55,0],[-54,0],[-55,0],[-36,-1],[-20,1],[-56,-1],[-13,0],[-26,1],[-16,-1],[-60,0],[-52,0],[-31,0],[-12,0],[-27,0],[-18,0],[-15,-1],[-26,1],[-36,-1],[-25,0],[-30,0],[-21,0],[-15,0],[-57,0],[-17,0],[-105,0],[-2,0],[-12,-1],[-56,0],[-22,-1],[-138,0],[-29,0],[-1,0],[-88,-2],[-55,0],[-15,0],[-23,0],[-19,1],[-23,-1],[-24,0],[-19,0],[-22,-1],[-26,1],[-29,-1],[-26,0],[-35,0],[-17,0],[-25,0],[-19,0],[-13,0],[-44,-1],[-93,0],[-14,0],[-136,-1],[-65,0],[-10,0],[-11,0],[-12,-1],[-17,1],[-27,-1],[-34,0],[-28,0],[-31,0],[-48,-1],[-12,0],[-16,1],[-30,-1],[-22,0],[-28,0],[-49,0],[-27,0],[-21,-1],[-44,0],[-13,0],[-15,0],[-19,0],[-23,0],[-16,0],[-18,-1],[-18,0],[-13,0],[-21,0],[-31,0],[-36,0],[-58,0],[-18,0],[-22,-1],[-12,0],[-15,0],[-13,0],[-51,0],[-28,-1],[-131,-1],[-19,0],[-13,0],[-62,-1],[-57,0],[-27,0],[-29,0],[-51,0],[-21,-1],[-31,0],[-17,0],[-35,0],[-24,-1],[-37,0],[-25,0],[-39,0],[-20,0],[-12,0],[-12,0],[-38,0],[-36,-1],[-18,-1],[-19,0],[-14,1],[-19,-1],[-26,0],[-40,0],[-18,0],[-25,-1],[-32,0],[-27,0],[-22,0],[-52,-1],[-24,0],[-22,0],[-16,0],[-12,0],[-16,0],[-13,0],[-28,0],[-29,0],[-24,0],[-29,0],[-20,0],[-7,0],[-27,0],[-14,-1],[-19,1],[-28,-1],[-32,0],[-32,0],[-12,0],[-18,-1],[-14,1],[-12,-2],[-15,0],[-24,1],[-17,0],[-8,0],[-14,0],[-22,0],[-20,0],[-20,-1],[-22,0],[-17,0],[-16,0],[-22,-1],[-59,0],[-21,0],[-24,0],[-15,0],[-65,-2],[-53,-2],[-25,1],[-14,2],[-13,-1],[-32,-1],[-119,0],[-13,0],[-25,-1]],[[71158,57988],[-20,0],[-2,60],[-1,104],[0,59],[0,36],[0,47],[0,67],[-1,92],[-1,501],[-1,61],[0,55],[0,261],[0,27],[0,27],[0,52],[-1,47],[0,36],[0,43],[1,94],[-1,148],[0,40],[0,74],[0,24],[0,61],[0,46],[0,46],[0,75],[0,75],[0,75],[-1,81],[0,60],[0,43],[0,75],[0,66],[0,43],[0,92],[0,74],[0,63],[-1,140],[0,34],[0,40],[0,97],[0,68],[0,36],[-1,89],[0,140],[0,39],[0,41],[0,57],[0,49],[1,45],[-1,53],[0,3],[1,9],[0,42],[0,37],[-1,49],[0,101],[0,36],[0,38],[0,79],[0,11],[0,38],[0,43],[0,109],[-1,42],[0,72],[0,68],[0,175],[-1,70],[0,35],[-2,56],[0,79],[1,46],[1,50],[0,107],[0,57],[0,39],[-1,46],[0,62],[1,34],[-1,55],[1,111],[0,49],[0,48],[0,39]],[[80427,58013],[-104,1],[-72,0],[-46,0],[-73,0],[-13,0],[-13,0],[-30,-1],[-38,0],[-50,1],[-3,0],[-25,0],[-20,0],[-16,0],[-34,0],[-40,1],[-27,0],[-12,0],[-12,0],[-34,0],[-20,0],[-12,0],[-16,0],[-47,1],[-16,-1],[-75,0],[-17,1],[-15,0],[-12,0],[-47,0],[-36,0],[-19,1],[-36,0],[-20,0],[-30,0],[-30,-1],[-15,1],[-20,-1],[-57,1],[-12,-1],[-69,0],[-23,0],[-14,0],[-13,0],[-24,0],[-41,0],[-109,0],[-18,0],[-19,0],[-6,0],[-32,-1],[-90,0],[-37,0],[-16,-1],[-43,1],[-25,0],[-60,0],[-59,0],[-13,0],[-19,0],[-47,0],[-23,0],[-13,0],[-11,0],[-16,0],[-14,0],[-41,1],[-33,0],[-80,0],[-2,0],[-38,0],[-46,-1],[-93,1],[-31,1],[-14,-1],[-17,1],[-94,0],[-12,-1],[-34,0],[-28,1],[-28,0]],[[77768,58017],[-37,-1],[-42,0],[-12,1],[-41,0],[-29,0],[-22,0],[-2,0],[-32,0],[-99,0],[-137,1],[-30,0],[-130,0],[-17,1],[-16,1],[-13,1],[-28,0],[-26,-1],[-31,0],[-69,0],[-42,1],[-14,0],[-19,0],[-83,-1],[-47,0],[-39,0],[-14,0],[-31,0],[-12,0],[-33,0],[-78,0],[-48,1],[-2,0],[-21,-1],[-26,1]],[[43290,69435],[-3,-282],[-3,-183],[2,-233],[1,-325],[2,-371],[-1,-35],[0,-61],[0,-39],[1,-38],[0,-39],[0,-35],[0,-59],[0,-35],[0,-68],[0,-35],[1,-57],[-1,-50],[1,-49],[0,-47],[0,-47],[1,-49],[0,-44],[0,-41],[0,-94],[-1,-281],[0,-133],[-1,-91],[0,-40],[5,-954],[0,-42],[0,-118],[4,-707],[1,-433],[0,-153],[1,-288],[1,-356],[4,-138],[0,-14],[0,-35],[0,-34],[0,-16],[0,-29],[-3,-43],[0,-18],[6,-796],[-2,-71],[-3,-231],[-1,-294],[0,-395],[0,-124],[3,-1013],[0,-317],[-1,-168],[-2,-110],[0,-31],[0,-40],[1,-148],[2,-325],[2,-261],[4,-625],[3,-109],[0,-229]],[[43314,57909],[-22,0],[-15,0],[-13,0],[-63,1],[-14,-1],[-19,0],[-17,0],[-27,2],[-11,-1],[-20,-2],[-25,0],[-46,1],[-179,1],[-51,0],[-11,-5],[-12,-1],[-171,-1],[-167,-2],[-226,1],[-148,1],[-18,0],[-926,-5],[-375,-3],[-112,16],[-147,-1],[-5,0],[-821,-3],[-74,1],[-64,-1],[-13,10],[-16,-1],[-14,1],[-83,-3],[-79,-4],[-19,-1],[-92,-5],[-39,0],[-464,1],[-438,0],[-46,1]],[[38212,57906],[-381,-4],[-61,16],[-296,-5],[-758,14]],[[65839,63737],[0,-190],[0,-6],[0,-207],[0,-81],[0,-487],[0,-359],[-3,-1561],[0,-475],[0,-91],[0,-398],[1,-65],[0,-52],[-2,-44],[0,-47],[2,-34],[-1,-52],[0,-50],[0,-91],[0,-37],[1,-488],[0,-474],[0,-100],[0,-101],[1,-294]],[[65838,57953],[-26,0],[-17,0],[-49,-1],[-18,0],[-14,-1],[-11,0],[-30,0],[-35,0],[-1,0],[-21,0],[-18,0],[-30,0],[-12,0],[-19,0],[-24,0],[-30,0],[-28,0],[-30,0],[-87,-2],[-69,-1],[-27,0],[-13,1],[-15,0],[-17,-1],[-19,-1],[-15,0],[-43,1],[-15,0],[-15,0],[-16,0],[-26,0],[-16,-1],[-45,3],[-18,1],[-41,1],[-127,-4],[-114,-1],[-44,-1],[-33,0],[-34,0],[-58,-3],[-17,0],[-72,0],[-136,-1],[-24,-2],[-12,0],[-12,-1],[-104,-1],[-23,0],[-48,0],[-164,-2],[-46,0],[-33,0],[-19,-1],[-26,0],[-15,0],[-15,-1],[-28,1],[-15,0],[-19,-1],[-35,0],[-15,-2],[-20,-5],[-21,0],[-15,1],[-36,4],[-39,0],[-35,0],[-14,-1],[-14,-1],[-23,1],[-13,0],[-11,-1],[-29,0],[-25,5],[-19,0],[-1,0],[-16,-1],[-51,0],[-69,-1],[-37,0],[-101,-1],[-13,-2],[-13,1],[-25,1],[-31,-1],[-2,-1],[-14,0],[-26,-1],[-28,1],[-26,0],[-44,-1],[-11,0],[-42,-2],[-27,0],[-27,0],[-52,-1],[-13,0],[-37,0],[-19,0],[-35,1],[-27,0],[-13,0],[-11,0],[-17,0],[-20,0],[-19,0],[-17,0],[-12,1],[-54,-1],[-9,0],[-14,0],[-284,5],[-132,-1],[-202,0],[-88,-1],[-369,-2],[-443,-2],[-65,0],[-41,0],[-46,1],[-24,3],[-19,-4],[-22,0]],[[60618,57926],[-79,1]],[[60539,57927],[1,294],[-9,26],[0,50],[1,101],[-1,152],[-1,807],[0,6],[-3,291],[0,40],[-2,1120],[0,45],[-1,407],[-1,549],[0,39],[1,35],[0,33],[-1,187],[3,298],[-4,1291],[-1,479],[-1,317],[-1,132],[0,63],[-1,199],[0,245],[0,702],[0,54],[0,97],[0,57],[2,57],[0,95],[0,94],[0,35],[0,50],[0,94],[0,97],[0,54],[0,55],[0,63],[0,99],[0,78],[0,40],[0,49],[-1,444],[0,41],[-1,208],[0,322],[0,35],[-1,34],[0,67],[0,42],[0,42],[0,42],[-1,41],[0,41],[0,51],[1,74],[0,59],[0,83],[-1,37],[0,41],[0,35],[0,64],[0,43],[0,61],[0,69],[0,36],[0,67],[0,42],[0,42],[0,124],[0,45],[0,38],[0,42],[0,98]],[[49929,69432],[0,-148],[0,-44],[0,-52],[1,-48],[0,-200],[0,-117],[0,-34],[0,-80],[0,-36],[1,-108],[0,-34],[3,-1929],[1,-35],[0,-383],[0,-126],[0,-71],[0,-340],[0,-99],[1,-313],[0,-68],[0,-360],[0,-389],[1,-47],[0,-69],[0,-64],[0,-38],[-1,-53],[0,-38],[0,-61],[0,-40],[0,-38],[0,-39],[0,-35],[0,-92],[0,-55],[0,-52],[-1,-46],[0,-44],[0,-66],[0,-61],[0,-1],[1,-89],[1,-455],[0,-410],[1,-118],[-2,-126],[-1,-478],[-1,-993],[0,-952],[-1,-112],[0,-83],[0,-276],[0,-236],[0,-254],[-1,-139],[0,-353],[0,-158],[-1,-158],[0,-164]],[[49931,57925],[-14,0],[-58,2],[-83,2],[-75,1],[-83,0],[-52,0],[-28,0],[-83,1],[-23,-3],[-16,-2],[-16,-1],[-23,-1],[-67,-3],[-106,10],[-14,-2],[-115,-1],[-16,1],[-17,-1],[-8,0],[-7,1],[-53,-2],[-32,-1],[-35,0],[-283,-3],[-46,-1],[-42,-4],[-14,-2],[-72,1],[-94,2],[-40,-1],[-37,-1],[-102,1],[-30,-1],[-90,-2],[-91,-2],[-107,-2],[-55,-2],[-29,2],[-39,-1],[-41,0],[-258,-5],[-128,-3],[-15,1],[-132,2],[-153,-3],[-38,-1],[-17,-1],[-76,0],[-1,0],[-90,1],[-12,-1],[-339,-12],[-85,-3],[-6,0],[-23,-22],[-21,10],[-2,1],[-566,6],[-228,2],[-61,1],[-290,1],[-16,-3],[-13,0],[-19,0],[-32,0],[-27,1],[-28,1],[-25,0],[-13,0],[-46,1],[-19,0],[-12,1],[-19,0],[-17,0],[-21,0],[-40,0],[-30,1],[-14,0],[-34,1],[-24,0],[-42,1],[-17,0],[-11,0],[-20,0],[-331,4],[-156,0],[-589,24],[-15,-3],[-13,-2],[-15,-3],[-19,0]],[[43477,57908],[-37,0],[-12,0],[-14,0],[-16,0],[-13,1],[-27,-1],[-19,0],[-4,0],[-9,0],[-12,1]],[[55238,69493],[0,-126],[0,-634],[0,-111],[0,-106],[0,-45],[0,-34],[0,-91],[0,-54],[0,-349],[0,-123],[0,-257],[1,-402],[0,-545],[0,-49],[0,-39],[0,-281],[0,-40],[0,-72],[0,-69],[0,-159],[0,-54],[0,-67],[0,-94],[0,-34],[0,-86],[1,-91],[0,-33],[0,-39],[-1,-40],[1,-186],[0,-48],[0,-36],[1,-271],[-1,-68],[0,-46],[0,-37],[0,-34],[1,-40],[0,-61],[0,-57],[0,-60],[0,-42],[0,-41],[0,-49],[0,-61],[0,-39],[0,-282],[0,-187],[0,-81],[2,-858],[0,-34],[0,-87],[1,-257],[1,-137],[1,-273],[0,-131],[0,-39],[0,-54],[0,-51],[-1,-124],[0,-62],[0,-101],[0,-64],[-1,-113],[0,-17],[0,-16],[1,-94],[0,-70],[0,-249],[0,-35],[0,-37],[-1,-624],[2,-41],[0,-38],[1,-48],[0,-48],[-1,-49],[1,-90],[1,-479],[1,-207],[0,-50],[0,-56],[0,-37],[0,-9],[0,-35],[0,-43],[0,-2],[0,-32],[0,-43],[-1,-36],[0,-40],[0,-33],[-1,-34],[1,-117],[-1,-32],[-1,-270],[2,-307]],[[55248,57940],[-67,6],[-43,1],[-111,8],[-45,3],[-18,1],[-13,1],[-29,3],[-112,4],[-86,-1],[-18,0],[-15,0],[-50,-1],[-48,0],[-41,-3],[-13,3],[-4,0],[-17,0],[-15,-1],[-24,0],[-12,0],[-15,0],[-25,0],[-27,0],[-20,0],[-119,-4],[-19,0],[-71,-4],[-14,5],[-113,-1],[-63,2],[-49,1],[-72,-3],[-7,0],[-30,-1],[-33,0],[-80,0],[-194,-1],[-24,6],[-16,1],[-18,-1],[-3,0],[-12,0],[-16,0],[-17,-1],[-28,0],[-85,-2],[-36,-1],[-47,-3],[-57,-2],[-118,3],[-62,-1],[-51,0],[-108,-1],[-27,0],[-70,1],[-19,-1],[-55,-2],[-36,-1],[-13,1],[-12,-2],[-28,1],[-12,-1],[-13,0],[-14,-1],[-42,0],[-101,1],[-19,-1],[-52,-1],[-39,0],[-36,0],[-33,0],[-113,-1],[-18,-2],[-12,1],[-12,-3],[-21,2],[-21,-1],[-40,0],[-53,-1],[-11,0],[-34,0],[-18,-1],[-26,0],[-26,0],[-20,0],[-20,0],[-19,-1],[-33,0],[-14,-1],[-11,0],[-17,0],[-13,-1],[-13,0],[-27,-1],[-35,0],[-14,0],[-17,0],[-17,0],[-15,-1],[-19,2],[-84,-2],[-163,-3],[-129,-5],[-149,0],[-19,-1],[-11,0],[-30,-1],[-15,0],[-13,0],[-27,0],[-14,-1],[-13,1],[-57,-5],[-27,-2],[-104,-1],[-212,7],[-121,-1],[-71,0],[-298,-2]],[[60539,57927],[-471,2],[-58,0],[-37,0],[-7,0],[-30,-1],[-23,0],[-20,0],[-16,1],[-42,0],[-13,0],[-30,0],[-41,0],[-21,0],[-13,0],[-22,0],[-20,1],[-17,0],[-16,0],[-18,1],[-28,-1],[-45,1],[-23,0],[-39,-1],[-40,0],[-133,-2],[-46,3],[-60,-5],[-141,1],[-128,0],[-21,0],[-39,0],[-226,1],[-18,1],[-2,0],[-79,-1],[-115,-1],[-41,1],[-50,0],[-142,0],[-41,0],[-23,0],[-56,0],[-88,0],[-111,1],[-48,0],[-65,1],[-40,0],[-19,0],[-18,0],[-30,-1],[-90,1],[-8,0],[-18,0],[-106,2],[-39,-1],[-76,-2],[-17,0],[-44,1],[-39,0],[-69,-4],[-37,-2],[-3,1],[-24,6],[-15,0],[-16,0],[-61,0],[-48,0],[-9,0],[-8,1],[-53,0],[-99,2],[-13,-1],[-2,0],[-109,-2],[-29,0],[-15,1],[-16,-1],[-18,0],[-19,3],[-12,-2],[-23,1],[-22,-6],[-16,3],[-1,1],[-37,4],[-111,-3],[-84,-1],[-29,0],[-45,3],[-5,0],[-57,-1],[-112,1],[-45,-1],[-62,0],[-98,2],[-13,0],[-27,-2],[-79,0],[-59,0],[-57,0],[-106,0],[-109,1]],[[55360,57934],[-112,6]],[[90687,56018],[-17,-2],[-13,-1],[-37,1],[-45,-6],[-12,-1],[-16,0],[-14,2],[-28,0],[-16,1],[-33,1],[-13,0],[-25,2],[-21,-2],[-12,1],[-14,1],[-13,0],[-14,0],[-14,0],[-15,1],[-12,0],[-13,1],[-12,1],[-13,-1],[-12,0],[-13,0],[-13,1],[-12,0],[-15,0],[-22,0],[-15,1],[-17,-1],[-26,1],[-14,0],[-13,1],[-18,0],[-27,0],[-18,0],[-12,-1],[-12,-1],[-12,3],[-4,-1],[-8,0],[-12,-1],[-17,1],[-20,1],[-15,-1],[-15,0],[-18,0],[-44,0],[-17,-1],[-12,-1],[-12,2],[-11,0],[-3,1],[-15,-1],[-17,0],[-17,0],[-12,2],[-13,-2],[-12,2],[-12,1],[-12,0],[-13,0],[-11,1],[-12,-3],[-13,8],[-76,-9],[-2,0],[-103,4],[-15,1],[-87,4],[-117,-3],[-72,0],[-55,1],[-64,0],[-68,0],[-16,0],[-23,3],[-377,-1],[-166,-1],[-54,-1],[-103,1],[-25,1],[-94,2],[-35,-2],[-31,0],[-16,0],[-26,-1],[-13,0],[-23,-1],[-14,0],[-20,0],[-25,0],[-15,0],[-19,1],[-15,0],[-13,0],[-3,0],[-15,0],[-34,0],[-19,1],[-18,0],[-32,0],[-33,0],[-21,1],[-58,1],[-23,0],[-22,1],[-117,2],[-73,2],[-13,0],[-23,1],[-27,0],[-14,1],[-23,0],[-48,0],[-14,1],[-22,0],[-15,-1],[-14,1],[-26,0],[-12,-1],[-39,0],[-15,0],[-55,0],[-14,0]],[[87003,56038],[1,85],[0,44],[0,41],[0,46],[1,182],[0,84],[0,108],[0,41],[0,35],[1,39],[0,50],[0,111],[0,50],[0,49],[1,229],[0,70],[1,67],[0,36],[0,35],[0,47],[0,107],[1,79],[0,66],[0,156],[0,36],[1,42],[-26,0],[-36,0],[-13,0],[-20,0],[-20,0],[-12,0],[-2,0],[-48,0],[-18,0],[-25,0],[-60,0],[-43,1],[-18,0],[-31,0],[-19,0],[-14,1],[-20,0],[-16,0],[-58,0],[-20,0],[-18,0],[-15,1],[-15,0],[-12,0],[-21,0],[-36,1],[-12,0],[-12,0],[-3,-1],[-20,1],[-17,0],[-6,0],[-34,0],[-81,0],[-19,0],[-15,0],[-29,0],[-78,0],[-20,1],[-41,0],[-37,1],[-12,0],[-12,0],[-11,0],[-12,1],[-17,0],[-27,0],[-15,0],[-23,1],[-30,0],[-14,0],[-36,0]],[[88969,68140],[24,-91],[2,-17],[18,-40],[10,-23],[7,-16],[16,-25],[31,-41],[37,-38],[21,0],[32,7],[15,16],[45,51],[65,26],[91,-30],[19,-16],[14,-12],[10,-11],[2,-1],[15,-23],[15,-23],[17,-33],[5,-8],[7,-10],[22,-43],[21,-62],[16,-80],[6,-46],[2,-111],[-13,-80],[-9,-39],[-5,-14],[-3,-10],[-9,-31],[-31,-78],[-21,-34],[-30,-49],[-32,-53],[-13,-23],[-13,-22],[-14,-25],[-3,-5],[-10,-47],[-4,-15],[-9,-38],[-12,-81],[0,-4],[-3,-38],[0,-7],[-2,-43],[0,-70],[5,-30],[5,-32],[9,-26],[11,-25],[18,-35],[19,-37],[18,-24],[19,-18],[25,-17],[15,-9],[16,-5],[14,3],[7,5],[12,8],[19,26],[10,23],[4,8],[16,57],[8,32],[7,29],[26,129],[12,46],[15,48],[22,21],[37,37],[46,28],[12,1],[16,0],[32,-4],[19,-13],[54,-8],[4,-1],[13,-11],[29,-27],[15,-20],[12,-15],[39,-123],[5,-34],[7,-86],[-2,-42],[-6,-38],[-6,-39],[-6,-28],[-3,-13],[-9,-38],[-14,-43],[-17,-64],[0,-1],[-7,-27],[0,-2],[-7,-33],[-4,-33],[-3,-32],[-5,-65],[0,-66],[7,-44],[17,-44],[24,-50],[34,-38],[30,-25],[42,-11],[32,10],[38,59],[3,4],[110,57],[44,22],[32,-11],[17,-6],[19,-6],[86,-29],[21,-8],[122,-139],[10,-23],[15,-47],[7,-42],[4,-68],[0,-40],[-3,-85],[-3,-25],[-18,-106],[-10,-59],[-38,-228],[-73,-197],[-10,-21],[-1,-4],[-12,-46],[-4,-33],[-7,-66],[1,-51],[5,-45],[7,-43],[8,-38],[10,-44],[8,-28],[11,-46],[8,-39],[21,-80],[9,-48],[3,-17],[3,-35],[2,-47],[0,-2],[1,-37],[-7,-90],[-7,-39],[-11,-46],[-18,-51],[-27,-45],[-27,-26],[-13,-10],[-9,-8],[-9,-7],[-23,-10],[-37,-22],[-13,-10],[-7,-5],[-17,-19],[-6,-7],[-18,-25],[-14,-28],[-10,-32],[-9,-35],[0,-2],[-8,-38],[-3,-19],[-3,-24],[-1,-83],[4,-41],[7,-43],[12,-41],[5,-18],[8,-26],[8,-27],[17,-45],[18,-40],[18,-46],[17,-37],[7,-23],[2,-4],[4,-13],[13,-42],[12,-48],[7,-39],[5,-31],[5,-41],[4,-54],[2,-42],[0,-57],[0,-38],[0,-17],[1,-33],[8,-85],[11,-55],[8,-49],[13,-51],[1,-3],[18,-54],[13,-29],[16,-52],[2,-4],[26,-67],[14,-23],[4,-7],[27,-40],[16,-21],[57,-68],[14,-16],[8,-8],[22,-22],[25,-27],[24,-40],[5,-9],[12,-20],[13,-25],[11,-26],[23,-67],[14,-44],[5,-21],[3,-14],[14,-69],[7,-48],[5,-38],[5,-51],[2,-51],[0,-2],[1,-34],[-1,-10],[-2,-26],[-1,-22],[-4,-31],[-9,-56],[-3,-14],[-4,-25],[-5,-42],[-8,-48],[-2,-38],[0,-50],[2,-53],[3,-46],[14,-113],[7,-35],[6,-18],[15,-52],[4,-12],[14,-39],[20,-46],[14,-28],[17,-28],[25,-32],[4,-4],[13,-16],[2,-1],[20,-20],[14,-11],[12,-9],[12,-9],[3,-2],[10,-3],[19,-13],[23,-10],[14,-8],[30,-14],[12,-9],[12,-10],[13,-9],[16,-17],[16,-22],[11,-18],[11,-18],[10,-20],[10,-19],[10,-21],[10,-22],[9,-22],[9,-23],[11,-33],[9,-26],[11,-38],[10,-39],[9,-40],[5,-39],[4,-37],[2,-36],[2,-38],[0,-23],[0,-14],[-1,-37],[-3,-35],[-6,-29],[-9,-34],[-7,-27],[-9,-29],[-11,-31],[-12,-31],[-12,-29],[-15,-33],[-13,-29],[-8,-25],[-9,-26],[-8,-35],[-6,-28],[-9,-22],[-8,-25],[5,-31],[-11,-11],[-5,-39],[-4,-51],[-1,-30],[-1,-10],[0,-34],[-1,-6],[1,-42],[0,-11],[1,-31],[2,-39],[2,-40],[2,-74],[-1,-43],[-3,-44],[-7,-37],[-4,-33],[-5,-31],[-7,-31],[-7,-30],[-8,-28],[-12,-34],[-10,-25],[-14,-29],[-15,-26],[-13,-18],[-13,-17],[-12,-12],[-18,-18],[-15,-11],[-11,-7],[-16,-8],[-13,-8],[-5,-6],[-9,-9],[-10,-9],[-2,-3],[-13,-16],[-4,-7],[-8,-12],[-10,-24],[-10,-27],[-9,-31],[-9,-33],[-9,-43],[-6,-35],[-5,-37],[-3,-37],[-3,-37],[-1,-38],[0,-38],[1,-38],[2,-37],[3,-37],[5,-38],[4,-31],[6,-30],[8,-28],[9,-26],[10,-24],[11,-22],[12,-19],[13,-16],[15,-16],[18,-17],[15,-11],[11,-8],[6,-5],[6,-4],[15,-13],[1,-1],[14,-13],[18,-18],[11,-13],[14,-17],[13,-18],[12,-17],[17,-26],[10,-18],[13,-21],[12,-23],[12,-23],[13,-33],[10,-27],[9,-29],[8,-31],[7,-31],[7,-41],[5,-33],[3,-34],[3,-35],[1,-43],[0,-35],[-1,-35],[-3,-39],[-7,-31],[-10,-30],[-10,-27],[-12,-25],[-12,-22],[-12,-16],[-13,-16],[-16,-18],[-15,-12],[-14,-10],[-12,-6],[-14,-5],[-12,-3],[-13,-1],[-11,0],[-15,2],[-12,4],[-12,4],[-12,8],[-13,8],[-13,8],[-12,6],[-13,6],[-14,7],[-13,6],[-12,4],[-13,3],[-13,1],[-12,-1],[-17,-4],[-13,0],[-4,0],[-73,-76],[-21,-46],[-31,-70],[-14,-55],[-17,-112],[-6,-75],[-7,-106]],[[23646,57990],[0,-316],[1,-128],[1,-850],[1,-405],[0,-235],[4,-1570],[0,-400],[-3,-446],[-3,-332],[-2,-768],[0,-39],[0,-98],[1,-365],[1,-209],[1,-129],[4,-636],[4,-750],[2,-388],[0,-597],[-1,-473],[0,-647],[0,-183],[-1,-1604]],[[23656,46422],[-39,1],[-114,2],[-23,5],[-5,1],[-404,4],[-223,2],[3,-302],[1,-35],[0,-59],[1,-47],[0,-38],[-1,-37],[-2,-38],[0,-34],[1,-46],[1,-37],[0,-46],[-1,-261],[0,-38],[0,-49],[0,-39],[0,-43],[-1,-48],[0,-50],[0,-40],[-1,-102],[0,-55],[0,-35],[0,-38],[0,-49],[-1,-44],[1,-43],[-1,-51],[1,-39],[-1,-88],[0,-75],[0,-51],[0,-75],[0,-60],[0,-45],[0,-60],[0,-57],[0,-49],[0,-37],[1,-66],[0,-6],[-1,-137],[-3,-370],[0,-35],[0,-44],[0,-34],[4,-33],[-2,-128],[0,-26],[0,-9],[0,-54],[0,-118],[0,-38],[0,-46],[0,-57],[0,-214],[-1,-687],[0,-79],[0,-76],[0,-78],[0,-157],[0,-185],[-1,-282],[0,-480]],[[22845,40658],[-58,1],[-160,0],[-15,0],[-189,-1],[-12,0],[-113,-1],[-35,0],[-22,0],[-16,0],[-16,0],[-21,-1],[-106,-2],[-85,-2],[-25,0],[-87,0],[-49,2],[-81,0],[-217,2],[-14,0],[-188,2],[-17,0],[-129,1],[-34,-1],[-47,1],[-12,0],[-55,0],[-41,0],[-38,0],[-31,0],[-34,0],[-18,0],[-45,1],[-17,-1],[-157,0],[-74,0],[-34,0],[-41,0],[-31,0],[-29,0],[-12,-1],[-217,0],[-39,0],[-30,-1],[-24,1],[-69,0],[-51,0],[-23,0],[-12,0],[-68,2],[-107,3],[-13,0],[-80,2],[-16,0],[-82,2],[-21,0],[-18,1],[-1,0],[-57,0],[-33,0],[-29,0],[-30,1],[-62,0],[-12,1],[-18,0],[-32,1],[-33,-1],[-32,1],[-65,0],[-29,0],[-228,1],[-156,1],[-14,0],[-21,0],[-27,0],[-16,-1],[-26,1],[-30,-3],[-18,0],[-14,0],[-27,0],[-71,-1],[-16,1],[-65,1],[-124,3],[-21,-1],[-15,0],[-54,0],[-12,0],[-12,0],[-22,0],[-22,0],[-33,0],[-33,-1],[-28,0],[-22,1],[-194,1],[-12,0],[-24,0],[-17,0],[-157,1],[-12,0],[-108,0],[-16,0],[-93,0],[-23,0],[-23,0],[-13,0],[-13,0],[-19,0],[-32,0],[-26,0],[-26,0],[-30,1],[-14,0],[-29,0],[-25,0],[-43,0],[-13,0],[-21,0],[-12,-1],[-57,1],[-12,0],[-18,0],[-81,-3],[-13,-1],[-13,0],[-12,-1],[-51,-1],[-12,-1],[-20,0],[-18,-1],[-35,-1],[-21,0],[-82,-3],[-12,-1],[-40,-2],[-18,0]],[[16500,40661],[0,67],[0,91],[0,41],[1,41],[1,185],[-1,62],[1,37],[0,419],[0,43],[0,52],[1,55],[0,76],[0,280],[1,493],[0,167],[0,73],[-1,47],[0,42],[2,41],[0,36],[-1,35],[1,268],[0,220],[0,85],[1,27],[3,200],[3,213],[0,211],[0,349],[-1,42],[-1,365],[-2,283],[0,300],[3,158],[-1,370],[2,300],[-130,2],[-54,2],[-30,0],[-44,1],[-54,0],[0,866],[0,86],[0,506]],[[16200,47898],[0,275],[-1,618],[0,91],[1,80],[-1,198],[1,96],[0,253],[-1,80],[0,85],[0,50],[0,24],[0,40],[0,65],[-1,84],[1,76],[0,7],[-2,100],[0,2],[0,37],[0,63],[0,2],[-1,543],[0,10],[2,109],[0,368],[0,3],[1,46],[-1,260],[-1,403],[-2,139],[-1,51],[0,873],[-3,140],[6,497],[-1,213],[0,67],[0,37],[-1,71],[-1,88],[1,903],[-4,501],[0,56],[0,202],[0,340],[0,327],[-2,185],[-10,410],[20,467],[2,293],[0,192],[-306,10],[-18,1],[-24,217],[-31,286],[-19,159],[-6,57],[-11,97],[-15,134],[-22,347],[-4,89],[-9,155],[-8,205],[-5,190],[-2,309],[-5,396],[3,124],[-4,478],[0,72],[1,172],[1,44],[1,137],[1,105],[0,56],[2,129],[1,76],[1,142],[1,68],[-3,133],[3,619],[2,599],[1,113],[0,176],[1,218],[1,466],[1,233],[2,432],[2,224],[1,211],[1,69],[0,133],[1,139],[0,34],[0,144],[0,69],[-3,159],[-3,122],[1,177]],[[16200,47898],[-127,0],[-94,0],[-100,0],[-27,0],[-91,0],[-194,0],[-131,0],[-74,0],[-15,0],[-55,0],[-48,0],[-346,9],[-20,-1],[-121,0],[-100,-1],[-47,0],[-31,0],[-33,0],[-56,0],[-26,0],[-25,1],[-154,-11],[-24,-1],[-14,-1],[-26,-1],[-29,-1],[-81,1],[-110,0],[-221,1],[-16,0],[-204,5],[-91,2],[-19,0],[-165,0],[-169,-5],[-53,-2],[-13,1],[-147,-2],[-135,-2],[-92,-1],[-57,-1],[-75,-1],[-98,-1],[-209,-3],[-1,0],[-95,-1],[-6,-1],[-96,-10],[-21,1],[-12,0],[-53,0],[-52,1],[-65,0],[-111,1],[-53,1],[-71,2],[-34,5],[-20,0],[-105,-4],[-58,1],[-37,0],[-103,0],[-136,1],[-32,0],[-129,2],[-2,0],[-209,1],[-42,1],[-14,-6],[-26,0],[-15,1],[-23,0],[-21,1],[-45,0],[-20,-1],[-13,0],[-51,0],[-12,0],[-21,-2],[-12,1],[-40,-1],[-11,0],[-25,0],[-35,0],[-10,-1],[-55,1],[-23,-1],[-25,0],[-16,0],[-23,1],[-14,0],[-33,-1],[-17,0],[-12,0],[-16,0],[-18,0],[-14,0],[-13,0],[-12,0],[-33,-1],[-14,0],[-57,-2],[-30,0],[-13,0],[-26,0],[-13,-1],[-27,0],[-35,-1],[-47,0],[-33,0],[-29,0],[-76,-1],[-50,0],[-14,-1],[-26,1],[-76,-1],[-28,0],[-25,0],[-44,-1],[-37,0],[-4,0],[-29,-1],[-69,0],[-31,-1],[-14,-1],[-29,1],[-24,0],[-12,0],[-35,0],[-24,0],[-85,0],[-28,3],[-16,-1],[-15,-2],[-16,-1],[-14,-5],[-35,4],[-20,-1],[-69,0],[-72,-1],[-153,-2],[-83,-1],[-123,-2],[-19,1],[-163,-2],[-84,-2],[-115,-2],[-70,-1]],[[7825,47851],[4,275],[0,100],[1,79],[0,11],[7,814],[4,443],[1,40],[5,312],[0,173],[0,357],[-1,120],[0,68],[0,128],[1,172],[0,49],[-1,229],[-1,80],[2,136],[-4,72],[0,63],[0,83],[-1,55],[-1,34],[-1,49],[-1,214],[0,52],[0,84],[0,52],[-3,281],[-1,235],[0,7],[0,37],[-1,118],[-1,59],[-2,175],[-1,84],[0,8],[0,52],[-10,819],[-1,117],[-1,445],[-2,486],[0,394],[-1,85],[-1,278],[0,146],[-1,61],[-2,321],[-1,153]],[[7810,56556],[-5,478],[-4,388],[1,49],[1,71],[0,22],[0,11],[2,163],[1,69],[3,163],[0,1],[1,59],[16,0],[60,2],[12,20],[-4,194],[-1,186],[-1,100],[0,62],[0,37],[0,39],[-1,40],[0,6],[0,86],[-1,39],[0,56],[0,49],[0,36],[0,62],[0,42],[1,166],[1,105],[0,131],[1,66],[0,50],[0,55],[1,70],[1,243],[0,60],[1,39],[1,162],[0,45],[1,101],[0,80],[0,1],[5,176],[2,75],[1,42],[2,66],[2,50],[1,53],[0,38],[-1,325],[0,41],[-1,58],[1,50],[-1,159],[-2,32],[2,159],[0,57],[0,50],[0,54],[0,50],[0,113],[0,53],[0,34],[-1,55],[0,56],[0,65],[0,36],[0,94],[0,34],[0,41],[0,49],[0,37],[0,72],[0,36],[-1,37],[0,57],[1,155],[-1,41],[0,45],[0,34],[-1,142],[0,99],[-2,557],[-2,581],[0,67],[0,38],[-1,46],[-1,59],[0,54],[0,47],[-1,294],[-2,226],[-3,566],[-1,651],[1,99]],[[7810,56556],[-58,5],[-126,11],[-28,3],[-212,3],[-58,-1],[-30,0],[-11,0],[-25,-3],[-33,0],[-33,0],[-30,-1],[-34,1],[-33,1],[-31,0],[-20,0],[-46,1],[-34,0],[-30,0],[-17,0],[-43,-1],[-89,-1],[-45,-1],[-30,0],[-13,-1],[-88,-2],[-40,-1],[-20,-1],[-12,-1],[-44,2],[-102,-3],[-73,-3],[-25,-1],[-163,-6],[-57,-2],[-205,-5],[-16,0],[-221,-6],[-78,-1],[-97,-1],[-49,-1],[-85,-1],[-114,-3],[-19,1],[-23,-1],[-197,-2],[-80,-1],[-138,-4],[-220,-4],[-17,-1],[-148,-8],[-3,0],[-54,-3],[-117,2],[-105,2],[-19,-1],[-57,-1],[-79,-1],[-79,-2],[-217,0],[-177,3],[-49,2],[-222,11],[-22,-1],[-87,-3],[-96,-5],[-17,-2],[-35,-2],[-140,-5],[-45,-1],[-41,0],[-71,2],[-72,2],[-38,0],[-165,3],[-52,1],[-37,0],[-13,0],[-19,1],[-107,1],[-34,1],[-15,0],[-52,1],[-169,3],[-146,-4],[-75,-4],[-16,1],[-24,1],[-13,-1],[-12,-1],[-41,2],[-20,-1],[-13,0],[-24,-1],[-21,0],[-46,0],[-23,1],[-18,0],[-48,0],[-15,1],[-14,-1],[-26,-1],[-16,-1],[-14,-2],[-14,0],[-13,1],[-14,0],[-211,4],[-37,0],[-19,0],[-18,0],[-23,0],[-17,-1],[-36,0],[-18,0],[-40,0],[-15,-1],[-41,1],[-119,-1],[-60,0],[-307,-1],[-79,0],[-151,0]],[[8,56515],[0,7219],[0,93],[0,86],[0,2316],[0,395]],[[71158,57988],[0,-106],[0,-86],[0,-40],[-1,-114],[0,-59],[0,-63],[-1,-184],[1,-40],[-1,-258],[0,-171],[-1,-49],[1,-34],[-1,-43],[0,-79],[0,-106],[0,-2],[0,-57],[0,-36],[0,-79],[0,-35],[0,-39],[0,-45],[0,-44],[0,-93],[-1,-52],[0,-77],[0,-40],[-2,-280],[0,-43],[0,-43],[-1,-96],[0,-39],[-1,-121],[0,-37],[0,-56],[0,-94],[0,-40],[0,-128],[0,-38],[1,-94],[0,-106],[0,-118],[0,-147],[0,-88],[1,-103],[0,-102],[0,-43],[0,-72],[0,-125],[0,-54],[0,-36],[0,-62],[0,-117],[0,-36],[0,-61],[0,-46],[-1,-113],[1,-41],[0,-12],[0,-311],[-1,-40],[1,-87],[0,-80],[-1,-46],[1,-110],[-1,-83],[0,-40],[0,-68],[1,-60],[2,-231],[0,-173],[3,-307],[1,-42],[0,-1],[3,-443],[3,-242],[0,-16],[1,-119],[0,-29],[0,-41]],[[71165,50797],[-28,0],[-13,4],[-43,1],[-11,-1],[-13,1],[-113,-3],[-18,0],[-87,-2],[-158,-3],[-36,-5],[-92,-2],[-24,0],[0,-76],[1,-188],[1,-217],[-22,-2],[-67,0],[-89,-1],[-41,0],[-14,0],[-19,0],[-6,0],[-71,-1],[-24,-1],[-52,0],[-15,0],[-34,0],[-44,-6],[-65,0],[-75,0],[-45,4],[-16,0],[-20,-1],[-13,-1],[-19,0],[-18,-1],[-18,-2],[-16,0],[-15,-1],[-19,0],[-17,0],[-19,-1],[-11,0],[-18,-1],[-22,0],[-23,0],[-18,0],[-50,0],[-57,-5],[-16,-1],[-39,-1],[-1,0],[-116,-3],[-51,-1],[-20,-1],[-32,0],[-109,-1],[-43,0],[-69,0],[-98,-1],[-52,0],[-53,0],[-13,0],[0,-34],[0,-33],[1,-215],[0,-68],[-6,-135],[-112,-7],[-15,-1],[-13,0],[-27,-1],[-47,-1],[-23,-1],[-103,-3],[-21,0],[-2,0],[-69,-1],[-15,-1],[-85,-1],[-27,-1],[-31,0],[-19,0],[-41,-1],[-13,-8],[-2,-479],[-67,-1],[-151,-1],[-73,0],[-84,-1],[-1,0],[-65,0],[-98,-1],[-29,0],[-94,-1],[-104,0],[-101,-1],[-18,-1],[-30,0],[-27,-1],[-46,1],[-50,3],[-57,2],[-24,1],[-2,0],[-21,0],[-175,1],[-113,0],[-47,0],[-58,1],[-122,0],[-68,3],[-109,2],[-22,0],[-81,2],[-36,1],[-22,-15],[-74,2],[-120,3]],[[65888,49285],[0,215],[-1,266],[0,127],[1,34],[0,373],[0,422],[0,486],[0,5],[0,348],[0,128],[0,62],[0,27],[0,84],[0,64],[0,121],[0,122],[0,44],[1,108],[0,44],[0,48],[0,196],[1,44],[-1,272],[0,211],[2,980],[-1,36],[0,368],[0,14],[0,36],[0,11],[0,72],[0,10],[1,156],[0,69],[0,39],[0,10],[0,123],[0,100],[0,45],[0,34],[2,85],[-2,45],[0,34],[1,95],[0,21],[-1,29],[1,74],[-1,38],[0,102],[0,75],[1,191],[0,12],[0,34],[0,50],[-1,36],[0,70],[0,41],[0,52],[0,47],[0,45],[0,95],[0,198],[1,48],[0,154],[0,43],[0,41],[0,42],[0,80],[0,125],[1,206],[-1,41],[0,73],[1,150],[-1,111],[1,132],[-35,-1],[-20,0]],[[81730,58006],[1,-48],[0,-45],[0,-36],[0,-45],[0,-39],[0,-40],[-1,-38],[0,-45],[1,-86],[0,-39],[0,-34],[0,-155],[0,-57],[0,-66],[0,-43],[0,-52],[0,-39],[-1,-71],[0,-1],[1,-38],[0,-83],[-1,-75],[0,-36],[0,-80],[1,-191],[0,-79],[0,-70],[0,-41],[0,-36],[0,-47],[-1,-84],[0,-55],[0,-49],[0,-230],[-1,-192],[1,-85],[0,-73],[0,-49],[0,-132],[0,-39],[0,-77],[-1,-35],[1,-55],[0,-57],[-1,-49],[0,-71],[1,-60],[0,-116],[-1,-38],[0,-40],[0,-51],[0,-168],[0,-182],[0,-133],[0,-45],[0,-34],[0,-39],[0,-64],[0,-101],[0,-78],[0,-36],[1,-109],[-1,-88],[1,-42],[0,-60],[-1,-46],[1,-94],[0,-128],[-1,-36],[1,-50],[0,-36],[0,-132],[0,-122],[0,-39],[0,-67],[0,-128],[0,-136],[0,-123],[0,-44],[0,-58],[0,-109],[0,-81],[0,-68],[0,-219],[0,-92],[0,-41],[0,-104],[0,-10],[0,-174],[0,-38],[0,-39],[0,-224],[0,-245],[0,-38],[0,-53],[-1,-392],[0,-37],[0,-77],[0,-37],[0,-108],[0,-110],[0,-38],[0,-42],[0,-34],[0,-344],[1,-42],[0,-99],[0,-122],[0,-330],[0,-31],[0,-9],[0,-91],[0,-15],[0,-60],[0,-15],[0,-24],[0,-40],[0,-39],[0,-37],[0,-12]],[[81730,48476],[-25,-8],[-49,3],[-16,1],[-76,-6],[-14,-5],[-22,-8],[-33,-23],[-19,-29],[-11,-15],[-77,-71],[-27,-32],[-17,-20],[-12,-15],[-27,-35],[-15,-20],[-20,-26],[-10,-12],[-20,-24],[-68,-83],[-74,-55],[-28,-3],[-12,-1],[-36,-61],[-17,-29],[-31,-50],[-10,-17],[-39,-68],[-17,-32],[-19,-23],[-17,-23],[-8,-14],[-10,-17],[-7,-30],[-27,-39],[-27,-38],[-19,-35],[-23,-42],[-10,-30],[-15,-48],[-12,-35],[-10,-21],[-22,-49],[-13,-28],[-64,-67],[-14,-34],[-53,-44],[-29,-12],[-23,-27],[-11,-17],[-16,-5],[-17,-6],[-27,-8],[-25,-8],[-30,0],[-24,0],[-24,0],[-10,0],[-14,0],[-33,0],[-13,-2],[-20,-4],[-75,-11],[-83,0],[-59,0],[-12,-19],[-12,-18],[-8,-13],[-13,-20],[-21,-27],[-27,-37],[-27,-35],[-14,-14],[-37,-62],[-24,-34],[-33,-57],[-35,-45],[-21,-33],[-2,-3],[-28,-92],[-11,-9],[-25,-34],[-17,-36],[-4,-10],[-11,-33],[-11,-23],[-24,-14],[-17,-21],[-12,-2],[-18,-9],[-17,-21],[-3,-4],[-14,-17],[-13,-17],[-19,-23],[-24,-24],[-10,-10],[-4,-4],[-4,-1],[-39,-6],[-14,9],[-2,2],[-22,5],[-21,1],[-31,-5],[-26,-5],[-36,-15],[-3,-1],[-28,-16],[-37,-22],[-37,-22],[-1,-2],[-23,-42],[-9,-17],[-16,-17],[-3,-2],[-22,4],[-13,4],[-10,-11],[-4,-4],[-4,-8],[-6,-15],[-9,1],[-25,3],[-17,2],[-4,0],[-31,1],[-6,0],[-4,0],[-40,1],[-1,0],[-64,-33],[-9,-7],[-4,-3],[-12,-11],[-41,-33],[-113,-95],[-29,-8],[-1,0],[-1,1],[-30,24],[-26,24],[-13,12],[-15,14],[-85,131],[-70,94],[-47,4],[-16,-5],[-16,-5],[-77,-24],[-18,-5],[-91,-13],[-35,-22],[-4,-2],[-41,-5],[-3,0],[-9,-1],[-57,-3],[-57,23],[-50,1],[-59,1],[-20,1],[-20,0]],[[77756,46072],[0,35],[1,61],[0,12],[0,163],[0,60],[9,42],[1,36],[-1,53],[1,148],[0,179],[0,166],[0,57],[0,12],[0,70],[0,37],[0,45],[0,47],[0,44],[0,57],[0,64],[0,47],[0,47],[0,47],[0,38],[1,54],[0,76],[0,11],[0,33],[0,40],[0,29],[0,18],[-2,36],[0,97],[0,93],[0,48],[0,46],[1,36],[0,35],[0,45],[0,44],[0,78],[0,151],[0,136],[0,103],[0,128],[0,80],[0,41],[0,159],[0,103],[0,51],[0,48],[0,82],[0,51],[0,49],[0,48],[0,47],[0,43],[0,35],[0,113],[0,43],[0,286],[0,41],[-1,46],[0,39],[0,92],[1,129],[0,47],[-1,62],[0,68],[0,66],[0,65],[0,59],[0,42],[0,42],[0,37],[0,61],[0,37],[0,42],[0,155],[0,53],[0,47],[0,260],[1,159],[-1,103],[0,47],[0,44],[1,75],[0,56],[0,107],[0,36],[0,64],[-1,61],[0,34],[0,39],[1,43],[0,44],[0,54],[0,35],[0,41],[0,67],[0,57],[0,48],[-1,81],[1,50],[0,103],[-1,35],[1,35],[-1,44],[1,63],[-1,65],[0,38],[0,49],[0,44],[0,65],[0,45],[0,41],[0,54],[0,91],[0,64],[0,34],[0,79],[0,51],[0,35],[0,34],[0,243],[0,44],[0,2],[0,106],[0,70],[0,35],[0,34],[0,35],[0,59],[0,42],[-1,69],[0,39],[0,53],[0,35],[1,45],[-1,33],[0,43],[1,54],[0,48],[0,191],[0,41],[0,49],[0,45],[0,33],[0,301],[0,40],[0,43],[0,100],[-1,341],[1,141],[1,270],[0,8],[0,26],[0,55],[0,62],[0,61],[0,2],[0,37],[0,84],[0,80],[0,52],[0,99],[0,42],[0,46],[0,42],[0,98],[1,236],[0,85],[0,59]],[[77756,46072],[-16,9],[-31,20],[-20,15],[-16,17],[0,1],[-9,13],[-13,18],[-13,26],[-12,25],[-8,18],[-7,14],[-3,5],[-24,52],[-1,2],[-23,54],[-15,34],[-10,21],[-23,42],[-22,36],[-10,16],[-27,33],[-2,3],[-14,16],[-5,4],[-14,13],[-12,10],[-17,13],[-4,3],[-4,3],[-17,11],[-20,5],[-18,4],[-16,1],[-58,1],[-2,0],[-44,1],[-8,0],[-23,1],[-36,-18],[-24,-11],[-3,-1],[-23,-14],[-14,-10],[-28,-30],[-38,-31],[-21,-17],[-40,-33],[-9,-8],[-25,-22],[-14,-15],[-18,-22],[-17,-23],[-13,-11],[-23,-12],[-14,-16],[-5,-7],[-14,-15],[-16,-7],[-15,-6],[-17,-1],[-15,5],[-21,13],[-14,10],[-12,14],[-17,19],[-19,13],[-15,11],[-3,3],[-17,14],[-15,22],[-15,16],[-17,11],[-13,7],[-13,8],[-13,8],[-24,21],[-7,4],[-9,6],[-12,6],[-17,5],[-15,1],[-1,0],[0,-40]],[[76444,46479],[-14,-19],[-21,-17],[-11,-6],[-13,-5],[-22,-2],[-15,-15],[-43,-19],[-26,-10],[-19,-10],[-18,-28],[-7,-29],[-15,-44],[-14,-26],[-13,-35],[-30,-59],[-20,-27],[-33,-37],[-15,-6],[-18,-14],[-37,-11],[-14,-17],[-15,-15],[-22,-15],[-23,-16],[-37,-22],[-45,-22],[-13,-8],[-10,-18],[-21,-16],[-35,-31],[-21,-30],[-20,-34],[-24,-3],[-19,-5],[-25,-14],[-16,-10],[-14,-18],[-11,-14],[-31,-42],[-17,-19],[-19,-24],[-9,-11],[-10,-14],[-18,-22],[-14,-23],[-3,-5],[-27,-33],[-20,-4],[-25,-18],[-15,-7],[-42,-3],[-18,-7],[-22,-23],[-16,-2],[-18,-9],[-12,-6],[-11,-3],[-20,-7],[-9,-4],[-26,-5],[-30,-16],[-1,-1],[-14,-8],[-28,11],[-26,-11],[-16,-3],[-23,-2],[-18,9],[-27,-3],[-32,13],[-40,3],[-11,0],[-35,-12],[-2,-1],[-37,-10],[-17,-1],[-3,0],[-52,-22],[-17,-3],[-12,-13],[-37,-9],[-22,-15],[-17,-30],[-13,-10],[-4,0],[-15,-1],[-16,8],[-14,-11],[-11,-19],[-13,-8],[-15,-24],[-12,-38],[-14,-30],[-21,-12],[-29,-53],[-17,-38],[-12,-11],[-32,-40],[-4,-7],[-6,-9],[-36,-49],[-12,-20],[-28,-40],[-14,-33],[-12,-21],[-25,-28],[-18,-21],[-14,-34],[-29,-41],[-10,-24],[-37,-43],[-15,-13],[-18,-26],[-11,-24],[-32,-47],[-21,-28],[-26,-32],[-27,-19],[-14,-13],[-18,-12],[-2,-2],[-12,-9],[-32,-22],[-14,-3],[-12,3],[-12,-18],[-12,-5],[-8,-4],[-11,-8],[-12,1],[-8,-2],[-13,-4],[-20,2],[-16,-9],[-32,2],[-13,4],[-16,-9],[-15,-16]],[[73811,44367],[0,57],[-1,41],[-1,72],[4,94],[0,83],[0,6],[1,51],[0,39],[0,9],[0,157],[0,40],[0,54],[0,150],[0,36],[-1,125],[0,98],[0,60],[-1,424],[0,428],[-1,36],[-307,-1],[-139,3],[-336,8],[-20,-9],[-34,0],[-40,0],[-14,0],[-187,0],[-16,0],[-1,0],[-23,0],[-87,-1]],[[72607,46427],[0,146],[0,107],[0,7],[-1,107],[0,116],[0,247],[0,66],[0,72],[-1,25],[0,18],[0,45],[0,172],[-1,60],[0,41],[0,56],[0,15],[1,142],[0,405],[0,3],[0,90],[0,48],[0,34],[0,102],[2,221],[0,131],[-1,87],[0,2],[0,319],[0,54],[0,120],[-1,391],[0,50],[1,199],[1,192],[0,122],[0,62],[2,268],[0,49],[-94,-1],[-27,0],[-96,-1],[-12,0],[-13,7],[-47,-2],[-26,-1],[-23,-1],[-70,0],[-56,3],[-69,-5],[-30,-3],[-114,-4],[-31,-2],[-41,-1],[-14,0],[-17,-1],[-40,0],[-185,-3],[-24,-6],[-43,-1],[-9,0],[-14,0],[-29,0],[-7,0],[-11,-1],[-12,1],[-41,1],[-22,0],[-7,0],[-154,0],[-16,0],[-20,0],[-6,0],[-24,0]],[[87003,56038],[0,-52],[0,-39],[1,-51],[0,-35],[0,-132],[0,-55],[0,-123],[0,-115],[1,-35],[0,-88],[0,-49],[1,-148],[0,-44],[0,-359],[1,-130],[1,-52],[0,-114],[0,-123],[0,-40],[2,-168],[1,-87],[0,-88],[0,-105],[0,-188],[-2,-368],[-1,-116],[1,-391],[0,-323],[0,-246],[1,-276],[0,-158],[1,-156],[-2,-53],[1,-36],[1,-227],[1,-22],[0,-44],[0,-69],[-1,-41],[1,-36],[0,-45],[0,-27],[1,-65],[0,-88],[0,-16],[0,-19],[0,-73],[18,0],[5,0],[11,0],[15,0],[29,0],[30,0],[0,-50],[-1,-187],[-1,-163],[0,-25],[0,-144],[0,-22],[-1,-213],[0,-117],[0,-7],[0,-38],[26,0],[47,-1],[36,-1],[1,-75],[-1,-54],[1,-226],[0,-74],[0,-54],[16,2],[19,0],[13,0],[30,1],[15,0],[9,0],[18,0],[35,0],[7,0],[32,0],[12,1],[14,0],[0,-120],[1,-98],[1,-130],[0,-27],[1,-43],[7,-70],[47,0],[19,0],[63,-1],[8,0],[12,0],[51,-1],[13,0],[-1,-146],[0,-5],[0,-58],[0,-34],[0,-80],[0,-65],[0,-94],[13,0],[18,-1],[26,0],[18,0],[24,0],[17,-1],[15,-2],[20,-1],[13,-1],[6,0],[16,-1],[15,-2],[19,-1],[0,-51],[-2,-210],[0,-16],[0,-17],[1,-3],[0,-58],[0,-120],[109,-1],[1,-13],[113,6],[77,3],[4,-1],[9,0],[23,1],[6,0],[72,2],[25,1],[1,-245],[0,-44],[1,-35],[0,-34],[0,-56],[0,-15],[1,-179],[0,-34],[1,-181],[0,-24],[0,-12],[0,-45],[0,-4],[0,-30],[0,-38],[0,-41],[-1,-78],[-1,-37],[-1,-48],[-1,-29],[0,-5],[0,-39],[-1,-154],[0,-8],[0,-33]],[[88327,46369],[-19,0],[-20,0],[-12,0],[-168,2],[-67,0],[-13,0],[-36,-1],[-22,0],[-60,0],[-22,1],[-12,0],[-78,0],[-85,0],[-46,0],[-14,-1],[-63,1],[-21,0],[-27,0],[-98,0],[-32,-1],[-14,1],[-20,0],[-134,0],[-19,0],[-102,1],[-68,-1],[-15,1],[-12,1],[-12,1],[-10,1],[-7,0],[-13,0],[-34,1],[-9,0],[-26,3],[-22,-4],[-14,0],[-26,0],[-73,0],[-18,0],[-18,-1],[-34,-1],[-5,0]],[[86707,46373],[-21,1],[-20,1],[-30,0],[-21,0],[-27,1],[-10,-1],[-15,0],[-13,0],[-11,-1],[-6,0],[-14,1],[-14,8],[-11,21],[-12,28],[-5,24],[-1,5],[-6,28],[-4,15],[-3,10],[-7,-28],[-1,-5],[-7,-32],[-9,-32],[-14,-17],[-14,3],[-21,20],[-11,24],[-12,17],[-22,9],[-14,7],[-4,2],[-13,21],[-17,60],[-7,36],[-5,33],[-11,54],[-1,7],[-6,31],[-10,29],[-13,17],[-35,37],[-17,12],[-16,13],[-19,19],[-13,16],[-12,24],[-12,29],[-11,15],[-16,27],[-13,20],[-22,38],[-13,24],[-11,21],[-14,27],[-17,30],[-12,19],[-19,26],[-19,26],[-31,35],[-13,18],[-11,18],[-9,19],[-16,31],[-1,3],[-13,24],[-13,16],[-13,7],[-12,6],[-8,12],[-7,9],[0,1],[-2,2],[-9,16],[-56,94],[-24,42],[-12,20],[-8,29],[-12,13],[-14,5],[-14,15],[-16,12],[-20,21],[-36,38],[-11,10],[-13,2],[-30,8],[-28,9],[-19,8],[-12,7],[-12,-2],[-14,-7],[-16,-8],[-14,-4],[-30,3],[-17,2],[-15,3],[-22,2],[-13,3],[-23,3],[-12,3],[-14,1],[-27,0],[-15,0],[-13,-3],[-12,1],[-11,14],[-13,-8],[-10,-21],[-1,-1],[-14,-18],[-22,-6],[-12,4],[-17,12],[-12,15],[-11,9],[-29,2],[-25,1],[-85,4],[-71,-4],[-16,-1],[-20,-1],[-21,-1],[-15,-4],[-12,-3],[-15,-4],[-19,-7],[-13,-5],[-2,-1],[-16,-6],[-14,-6],[-12,-7],[-16,-9],[-12,-8],[-22,-11],[-16,-10],[-17,-9],[-15,-5],[-18,-6],[-12,-3],[-13,-4],[-28,-7],[-14,-4],[-22,-8],[-24,-10],[-38,-16],[-34,-16],[-12,-6],[-30,-13],[-20,-7],[-18,-12],[-19,-12],[-23,-18],[-14,-7],[-19,-7],[-2,-1],[-18,-8],[-33,-15],[-16,0],[-15,-4],[-7,-2],[-17,-2],[-21,7],[-16,11],[-29,-2],[-16,2],[-15,-4],[-12,6],[-16,15],[-15,7],[-12,12],[-12,3],[-13,21],[-14,12],[-19,18],[-9,24],[-11,24],[-16,13],[-13,-1],[-14,2],[-13,4],[-10,15],[-14,12],[-12,1],[-13,4],[-8,23],[-11,18],[-9,20],[-12,15],[-12,11],[-14,12],[-11,25],[-11,19],[-11,11],[-13,27],[-11,25],[-12,21],[-23,29],[-18,25],[-11,18],[-7,28],[-6,41],[-8,25],[-10,21],[-14,2],[-13,18],[-12,18],[-11,18],[-14,14],[-13,1],[-13,13],[-13,-2],[-14,14],[-11,9],[-13,8],[-12,6],[-15,11],[-15,10],[-12,17],[-14,3],[-14,2],[-16,2],[-11,5],[-1,0],[-12,3],[-12,3],[-11,-1],[-14,1],[-11,1],[-13,4],[-9,-6],[-4,-2],[-13,-11],[-14,0],[-15,-15],[-13,0],[-13,-6],[-14,-5],[-3,-1],[-9,-3],[-13,-2],[-18,-2],[-30,-7],[-25,-10],[-12,-6],[-12,-7],[-13,-13],[-17,-18],[-11,-17],[-11,-15],[-10,-13],[-5,-11],[-5,-8],[-12,-16],[-20,-24],[-11,-13],[-13,-13],[-26,-26],[-15,-17],[-15,-15],[-18,-14],[-18,-13],[-14,-5],[-16,-3],[-21,-4],[-19,8],[-12,6],[-12,7],[-15,14],[-21,18],[-15,12],[-27,30],[-13,17],[-14,7],[-13,2],[-11,21],[-13,9],[-10,16],[-8,23],[-13,9],[-12,3],[-11,-2],[-19,9],[-12,-9],[-14,-12],[-11,-14],[-16,-1],[-12,5],[-11,15],[-14,4],[-11,-5],[-11,-15],[-17,7],[-41,1],[-19,17],[-13,29],[-21,47],[-15,14],[-1,2],[-8,8],[-8,10],[-14,8],[-14,6],[-13,4],[-27,8],[-12,4],[-16,0],[-16,0],[-24,9],[-19,12],[-20,12],[-14,6],[-11,4],[-14,8],[-18,9],[-11,6],[-15,22],[-15,9],[-12,3],[-12,3],[-12,4],[-12,4],[-12,5],[-11,-6],[-12,-3],[-12,1],[-12,5],[-12,-9],[-13,4],[-13,7],[-11,0],[-91,2]],[[81731,48375],[0,41],[-1,60]],[[38212,57906],[-2,-253],[0,-139],[-1,-218],[-6,-1378],[-2,-415],[-1,-168],[-2,-315],[-2,-243],[-2,-270],[-1,-36],[-1,-146],[-2,-239],[-8,-1943],[-6,-726],[1,-64],[3,-157],[10,-487],[-3,-54],[-2,-289],[1,-49],[0,-61],[1,-47],[0,-37],[1,-63],[0,-36],[0,-39],[0,-40],[1,-66],[0,-59],[0,-51],[-1,-62],[1,-39],[-1,-39],[0,-41],[0,-59],[0,-46],[0,-34],[0,-42],[0,-62],[1,-46],[0,-34],[-1,-16],[0,-40],[0,-44],[0,-25],[0,-36],[-1,-34],[0,-93],[-1,-106],[0,-44],[0,-53],[0,-34],[0,-71],[0,-43],[1,-152],[0,-65],[0,-34],[0,-35],[0,-62],[0,-36],[1,-39],[0,-38],[0,-37],[1,-116],[0,-43],[0,-48],[0,-49],[0,-46],[1,-37],[0,-80],[0,-46],[0,-118],[1,-68],[0,-56],[0,-47],[0,-37],[1,-67],[0,-43],[0,-45],[1,-39],[0,-34],[0,-50],[0,-52],[0,-34],[0,-53],[1,-62],[0,-37],[0,-41],[0,-40],[0,-62],[0,-53],[0,-36],[1,-49],[0,-47],[0,-42],[0,-63],[-1,-55]],[[38194,46382],[-666,6],[-51,1],[-166,1],[-105,0],[-118,1],[-20,0],[-192,1],[-13,0],[-221,6],[-112,3],[-107,1],[-84,1],[-32,1],[-2,0],[-103,3],[-20,0],[-103,3],[-93,1],[-17,0],[-264,1],[-140,3],[-17,0],[-136,2],[-305,5],[-442,5],[-211,2],[-226,1],[-385,3],[-79,1],[-1,0],[-107,1],[-175,-2],[-342,-1],[-21,0],[-198,0],[-15,0],[-380,0],[-305,-1],[-19,0],[-69,0],[-55,0],[-15,0],[-231,-2]],[[31831,46429],[-501,5],[-607,13],[-101,2],[-140,-1],[-14,0],[-1,0],[-209,-3]],[[30258,46445],[0,481],[0,242],[1,275],[0,389],[0,45],[2,1379],[-1,75],[0,74],[1,418],[1,103],[1,326],[1,864],[0,116],[0,126],[0,388],[0,82],[0,391],[1,234],[0,3],[0,126],[0,165],[0,310],[1,153],[2,390],[-3,74],[-1,137],[-2,190],[-1,85],[0,173],[1,184],[0,83],[1,57],[0,165],[0,72],[1,241],[0,35],[1,527],[0,43],[0,326],[0,78],[0,380],[0,140],[0,214],[0,245],[0,387],[0,99],[0,127],[1,251],[1,107]],[[30258,46445],[-137,-2],[-81,0],[-34,0],[-29,-1],[-66,0],[-30,0],[-27,-1],[-34,0],[-132,-1],[-496,3],[-82,0],[-190,0],[-157,0],[-309,0],[-30,0],[-286,0],[-260,2],[-115,1],[-388,-3],[-19,0],[-577,-3],[-169,-1],[-2,0],[-42,-1],[-232,-2],[-115,-1],[-342,-2],[-402,-3],[-526,-4],[-45,0],[-325,-1],[-360,-2],[-487,-3],[-76,2]],[[65888,49285],[1,-94],[-1,-152],[0,-71],[0,-19],[1,-15],[-1,-125],[-1,-431],[0,-300],[0,-219],[-1,-245],[0,-255],[1,-295],[0,-140],[0,-85],[0,-57],[0,-49],[0,-40],[0,-46],[0,-87],[0,-109],[0,-56]],[[65887,46395],[-13,-1],[-26,0],[-20,-1],[-20,1],[-31,0],[-12,-1],[-30,0],[-12,0],[-19,0],[-29,-1],[-20,0],[-14,0],[-19,0],[-22,-1],[-41,1],[-19,0],[-12,-1],[-24,0],[-13,1],[-24,-1],[-18,0],[-36,0],[-25,0],[-15,0],[-19,0],[-18,0],[-48,0],[-25,0],[-17,0],[-54,1],[-15,0],[-14,1],[-14,1],[-18,-1],[-38,2],[-26,-1],[-25,0],[-30,0],[-33,-1],[-19,1],[-27,-1],[-40,0],[-51,-1],[-24,0],[-25,1],[-28,0],[-15,0],[-25,0],[-12,0],[-14,0],[-11,0],[-6,-1],[-6,-2],[-17,-4],[-4,1],[-7,1],[-14,4],[-6,2],[-16,0],[-24,0],[-17,1],[-52,1],[-13,0],[-51,1],[-17,1],[-22,1],[-12,0],[-34,1],[-19,1],[-56,0],[-19,0],[-36,0],[-22,1],[-24,-1],[-19,0],[-33,0],[-27,1],[-25,0],[-2,0],[-28,0],[-71,0],[-14,0],[-37,0],[-17,0],[-38,0],[-31,-1],[-15,1],[-16,0],[-31,0],[-21,0],[-25,0],[-40,0],[-10,0],[-2,0],[-19,0],[-68,0],[-21,-2],[-17,1],[-45,0],[-24,3],[-45,1],[-54,-2],[-27,0],[-17,-1],[-13,0],[-13,0],[-16,0],[-36,0],[-18,0],[-33,0],[-23,-1],[-43,0],[-53,-1],[-24,0],[-21,0],[-18,1],[-14,0],[-36,0],[-29,1],[-13,0],[-41,1],[-15,-1],[-203,-2],[-2,0],[-97,-1],[-51,0],[-61,-1],[-27,-5],[-68,0],[-116,1],[-193,1],[-19,5],[-24,0],[-9,0],[-3,0],[-17,-3],[-13,1],[-17,-1],[-27,1],[-31,0],[-21,1],[-52,-2],[-61,0],[-93,0],[-14,0],[-3,1],[-14,0],[-36,0],[-10,1],[-43,0],[-6,0],[-36,0],[-31,0],[-130,1],[-192,1],[-14,0],[-25,0],[-19,-1],[-34,0],[-15,-6],[-20,8],[-34,0],[-40,0],[-13,0],[-40,1],[-15,0],[-16,1],[-17,0],[-27,4],[-113,-3],[-26,-1]],[[60708,46404],[-69,-3],[-13,0]],[[60626,46401],[1,177],[2,446],[0,55],[0,86],[1,68],[0,10],[2,349],[0,84],[1,111],[1,213],[-4,84],[1,51],[-1,72],[0,57],[0,33],[1,200],[0,157],[0,148],[0,59],[1,75],[0,145],[0,146],[1,88],[0,57],[-1,34],[0,3],[1,36],[-1,82],[0,3],[0,60],[0,71],[1,52],[0,17],[0,57],[1,34],[-3,105],[0,244],[0,47],[1,56],[0,55],[-1,444],[0,453],[0,106],[0,60],[-1,77],[0,86],[1,142],[-1,432],[0,46],[0,75],[-1,67],[0,266],[-4,781],[-4,724],[0,173],[0,103],[0,205],[2,493],[0,173],[0,52],[0,202],[0,55],[0,117],[0,116],[0,82],[-1,157],[0,109],[0,62],[0,120],[0,53],[0,53],[-1,51],[-1,33],[0,481],[-2,949]],[[55360,57934],[0,-46],[-1,-76],[0,-45],[0,-84],[1,-234],[-2,-474],[0,-155],[1,-132],[0,-183],[2,-404],[0,-76],[-1,-223],[0,-73],[-2,-199],[1,-288],[0,-1],[1,-184],[0,-156],[0,-321],[0,-232],[0,-121],[0,-140],[0,-35],[-1,-444],[0,-38],[0,-110],[0,-88],[0,-40],[0,-39],[0,-71],[0,-82],[0,-80],[0,-81],[0,-40],[-1,-141],[0,-95],[0,-53],[0,-52],[0,-45],[0,-34],[0,-41],[0,-81],[0,-52],[0,-76],[0,-48],[0,-43],[0,-62],[0,-64],[0,-39],[0,-6],[0,-50],[-1,-40],[1,-77],[-1,-57],[1,-54],[-2,-470],[0,-519],[2,-785],[0,-36],[0,-94],[0,-49],[-1,-253],[0,-98],[0,-91],[0,-4],[0,-62],[0,-6],[0,-62],[0,-2],[0,-147],[0,-42],[0,-115],[0,-82],[1,-101],[-1,-41],[-1,-5],[2,-206],[0,-128],[-1,-133],[0,-152],[0,-122],[0,-84],[0,-72],[-1,-125],[0,-34],[0,-89],[1,-101],[0,-50],[0,-36],[-1,-128],[0,-163],[0,-155],[0,-247],[0,-118],[-1,-82],[0,-20],[0,-14],[20,-2],[17,1],[17,-4],[51,2]],[[55460,46403],[0,-121],[-1,-150],[-1,-135],[0,-38],[-1,-145],[0,-48],[0,-334],[-1,-42],[0,-75],[0,-313],[-2,-42],[1,-42],[0,-91],[0,-151],[-2,-289],[-2,-389],[2,-265],[0,-45],[-1,-91],[1,-44],[-1,-40],[0,-50],[1,-50],[1,-153],[1,-107],[0,-120],[1,-36],[0,-62],[0,-21],[1,-15],[-1,-37],[0,-129],[-1,-55],[-2,-88],[-1,-38],[0,-1],[0,-35],[-1,-66],[0,-52],[0,-71],[-1,-50],[0,-64],[-1,-106],[0,-38],[-1,-84],[0,-61],[-1,-70],[0,-50],[0,-44],[-1,-40],[0,-73],[0,-41],[1,-133],[-3,-375],[0,-129],[-3,-344],[-2,-492],[0,-57],[-2,-49],[2,-81],[-1,-36],[0,-45],[0,-100],[0,-61],[-1,-52],[0,-63],[0,-69],[0,-43],[0,-56],[0,-44],[0,-4],[0,-75],[-1,-16],[-1,-22],[2,-115],[0,-25],[0,-13],[0,-22],[0,-34],[0,-68],[0,-149],[-1,-137],[-2,-41],[-3,-71],[-1,-173],[-2,-304],[-2,-323],[-1,-337],[0,-37],[-1,-37],[0,-134],[-1,-58],[1,-169],[0,-50],[0,-72],[-1,-54],[-1,-96],[-1,-48],[0,-84],[-1,-83],[-1,-69],[0,-40],[-1,-66],[0,-77],[0,-68],[0,-84],[0,-55],[0,-69],[0,-69],[0,-94],[0,-45],[-1,-60],[0,-72],[0,-73],[-1,-94],[0,-47],[-1,-116],[-1,-61],[0,-17],[0,-107],[-1,-87],[-1,-66],[0,-45],[0,-39],[-1,-57]],[[55411,34849],[-33,0],[-15,0],[-15,0],[-45,-1],[-23,0],[-32,0],[-43,1],[-17,-1],[-14,-1],[-25,0],[-14,0],[-51,0],[-50,0],[-17,0],[-28,-1],[-15,0],[-57,1],[-34,0],[-17,0],[-68,-1],[-33,1],[-24,0],[-16,0],[-28,0],[-14,0],[-29,-1],[-16,0],[-13,0],[-22,1],[-32,0],[-39,-1],[-11,0],[-121,1],[-81,0],[-16,0],[-13,0],[-24,0],[-27,-1],[-15,0],[-16,0],[-22,0],[-21,0],[-30,0],[-19,0],[-14,-1],[-32,0],[-20,-1],[-15,1],[-15,0],[-12,-1],[-13,-2],[-11,0],[-14,3],[-64,-1],[-22,-4],[-174,1],[-79,-1],[-105,0],[-34,-3],[-44,1],[-24,0],[-16,0],[-25,0],[-22,0],[-22,0],[-58,-3],[-25,-1],[-1,0],[-23,0],[-45,-1],[-65,-2],[-3,0],[-9,1],[-53,0],[-54,0],[-89,-1]],[[52914,34831],[-101,0],[-192,-1],[-21,0],[-90,-2],[-31,0],[-218,-2],[-65,-1],[-130,2],[-33,1],[-14,-1],[-49,0],[-21,0],[-24,0],[-36,1],[-14,0],[-11,0],[-16,0],[-22,-4],[-210,1],[-23,0],[-84,0],[-21,1],[-30,0],[-40,0],[-153,1],[-12,0],[-35,0],[-49,1],[-74,0],[-128,1],[-30,0],[-35,0],[-76,1],[-66,0],[-121,1],[-44,0],[-73,1],[-55,1],[-50,0],[-24,-1],[-18,0],[-99,1],[-13,0],[-16,0],[-14,4],[-26,0],[-14,-1],[-12,-2],[-16,-1],[-19,1],[-12,-1],[-51,-3],[-40,-1],[-3,0],[-42,0],[-12,0],[-12,0],[-12,1],[-11,-1],[-37,5],[-14,-1],[-12,0],[-20,0],[-23,0],[-23,0],[-75,3],[-14,0],[-83,-2],[-20,3],[-119,-1],[-68,-1],[-210,2],[-29,-5],[-19,6],[-25,0],[-19,1],[-13,0],[-17,0],[-12,-1],[-15,2],[-80,1],[-33,0],[-110,-1],[-76,0],[-82,-1],[-92,0],[-78,0],[-71,-1],[-46,1],[-23,-1],[-20,0],[-15,0],[-18,0],[-50,-1],[-14,0],[-14,1],[-21,0],[-23,-1],[-22,-2],[-17,1],[-11,0],[-26,1],[-13,1],[-80,2],[-143,4],[-88,2],[-43,8],[-73,0],[-35,0],[-94,1],[-21,0],[-26,0],[-49,-1],[-34,-1],[-8,0],[-82,-1],[-11,0],[-42,-1],[-82,-1],[-147,3],[-21,-1],[-28,0],[-32,0],[-136,-2],[-59,2],[-11,0],[-23,0],[-141,5],[-28,0],[-82,3],[-106,3],[-32,0],[-27,2],[-88,-6],[-23,-2],[-53,-11],[-13,-2],[-101,5],[-24,-3],[-14,0],[-30,1],[-44,0],[-26,-2],[-119,-4],[-32,3],[-41,2],[-14,1],[-29,-2],[-13,0],[-89,2],[-37,0],[-15,0],[-22,0],[-62,0],[-85,1],[-62,1],[-17,0],[-71,1],[-69,1],[-39,0],[-24,0],[-161,-3],[-8,0],[-37,0],[-27,-1],[-17,0],[-22,-1],[-51,-1],[-53,-1],[-49,0],[-20,0],[-35,-1],[-25,0],[-20,0],[-16,0],[-31,0],[-40,-1],[-35,-1],[-1,0],[-47,0],[-14,-1],[-15,0],[-15,0],[-12,0],[-17,0],[-50,-1],[-18,0],[-16,1],[-14,0],[-28,-1],[-21,0],[-31,0],[-4,0],[-11,0],[-21,0],[-20,0],[-27,0],[-21,0],[-12,1],[-30,-1],[-111,-1],[-43,-2],[-57,0]],[[43786,34836],[-56,-1],[-2,0],[-101,-1],[0,244],[0,260],[0,60],[2,648],[0,289],[0,66],[1,230],[0,361],[2,251],[1,194],[1,19],[-1,214],[0,39],[0,197],[0,34],[0,64],[0,66],[0,65],[0,70],[0,63],[0,65],[0,66],[0,65],[0,64],[0,131],[1,50],[1,44],[3,104],[2,56],[3,118],[3,112],[6,700],[1,265],[2,239],[2,256],[0,64],[3,408],[2,294],[1,201],[1,36],[0,53],[4,344],[0,41],[0,303],[2,131],[0,73],[0,54],[0,66],[-1,73],[0,36],[0,38],[-1,40],[0,67],[-1,84],[0,72],[-1,57],[0,105],[0,55],[-1,48],[0,35],[-1,130],[-2,51],[-1,53],[-2,54],[-2,55],[-1,53],[-2,54],[-3,106],[-2,65],[1,92],[1,111],[0,53],[1,54],[0,53],[1,52],[0,60],[0,74],[0,221],[-2,56],[-1,136],[0,37],[-1,178],[-1,84],[-1,395],[-1,139],[0,42],[-1,52],[4,340],[1,145],[-56,-3],[-26,0],[-31,1],[-39,0],[-19,1]],[[43479,46375],[-1,32],[-1,8],[0,42],[-1,17],[0,11],[0,8],[0,40],[0,47],[0,34],[0,52],[-1,60],[0,38],[0,40],[-1,65],[1,62],[0,45],[-2,306],[0,2],[-1,45],[0,41],[0,40],[0,47],[-1,57],[0,42],[0,37],[-1,78],[0,68],[0,51],[0,51],[0,49],[0,76],[0,44],[0,56],[-3,64],[2,34],[0,38],[-1,90],[0,53],[-1,30],[0,7],[0,38],[-5,92],[-2,1414],[0,811],[0,433],[-1,978],[0,476],[-1,313],[0,906],[0,163],[1,80],[4,898],[14,2924]],[[43479,46375],[-12,0],[-19,0],[-3,0],[-24,0],[-13,1],[-16,0],[-19,1],[-35,0],[-16,0],[-16,-1],[-23,1],[-20,1],[-19,1],[-26,1],[-22,-1],[-18,-1],[-23,0],[-19,-1],[-13,0],[-12,0],[-20,0],[-15,0],[-12,0],[-16,2],[-23,1],[-3,0],[-166,-10],[-83,5],[-48,1],[-91,8],[-199,-8],[-12,2],[-28,0],[-14,0],[-23,0],[-16,0],[-31,0],[-15,0],[-13,0],[-17,0],[-12,1],[-24,1],[-14,-1],[-47,0],[-13,1],[-21,0],[-14,0],[-19,0],[-13,0],[-14,1],[-19,0],[-12,-1],[-18,0],[-21,0],[-21,1],[-19,0],[-17,0],[-27,0],[-13,0],[-15,0],[-15,0],[-33,0],[-13,-1],[-12,1],[-45,-1],[-26,0],[-30,0],[-13,0],[-18,0],[-28,0],[-18,0],[-22,0],[-34,1],[-29,0],[-21,-1],[-22,0],[-32,0],[-22,1],[-13,-1],[-28,0],[-12,1],[-15,0],[-16,0],[-39,-1],[-13,1],[-34,0],[-12,0],[-22,0],[-14,0],[-14,0],[-18,0],[-13,0],[-14,0],[-37,0],[-30,0],[-13,0],[-35,1],[-18,-1],[-16,1],[-42,-1],[-54,0],[-33,0],[-13,0],[-23,0],[-13,0],[-73,0],[-43,1],[-44,0],[-30,0],[-47,-1],[-32,0],[-14,0],[-41,0],[-19,0],[-44,0],[-71,0],[-31,0],[-19,0],[-24,0],[-35,0],[-1,0],[-62,0],[-14,0],[-19,0],[-15,0],[-26,0],[-43,-1],[-29,1],[-42,-1],[-33,0],[-29,0],[-45,0],[-49,0],[-116,0],[-17,0],[-16,0],[-18,0],[-39,0],[-31,-1],[-83,0],[-39,-1],[-15,0],[-54,1],[-113,-1],[-40,0],[-13,0],[-16,0],[-33,0],[-35,0],[-17,0],[-23,0],[-60,0],[-16,0],[-35,0],[-37,1],[-39,0],[-31,0],[-31,0],[-20,0],[-25,0],[-29,1],[-15,0],[-20,0],[-12,1],[-48,0],[-41,1],[-45,0],[-12,0],[-14,0],[-13,1],[-45,0],[-16,0],[-28,0],[-28,1],[-13,0],[-31,-1],[-21,0],[-21,-1],[-15,1],[-22,0],[-35,-1],[-14,0],[-22,-1],[-57,1],[-30,-5],[-17,-3],[-12,8]],[[60626,46401],[-78,0],[-64,-1],[-15,11],[-25,2],[-18,1],[-17,-1],[-21,1],[-16,1],[-21,0],[-26,1],[-28,1],[-112,-6],[-4,0],[-42,0],[-12,0],[-31,0],[-8,0],[-8,0],[-1,0],[-25,0],[-26,8],[-15,1],[-37,1],[-52,-5],[-83,-1],[-38,0],[-76,0],[-159,-1],[-38,0],[-29,-1],[-104,0],[-57,0],[-31,1],[-14,1],[-37,0],[-44,-1],[-12,0],[-20,0],[-59,-1],[-22,0],[-13,0],[-18,0],[-19,-1],[-24,0],[-15,0],[-30,-1],[-18,0],[-23,-1],[-30,0],[-37,-1],[-17,0],[-38,-1],[-13,0],[-24,0],[-35,0],[-36,0],[-60,-1],[-26,0],[-27,0],[-15,0],[-17,0],[-14,0],[-12,1],[-14,-2],[-14,1],[-25,1],[-14,-1],[-22,1],[-14,0],[-15,0],[-24,-1],[-22,1],[-26,1],[-23,-1],[-18,0],[-17,1],[-13,0],[-22,0],[-10,0],[-3,0],[-25,1],[-12,-3],[-118,1],[-81,1],[-17,0],[-210,0],[-23,0],[-106,1],[-3,0],[-18,-1],[-84,0],[-103,-1],[-114,0],[-83,0],[-15,0],[-19,0],[-108,0],[-37,0],[-31,1],[-48,0],[-17,0],[-15,0],[-25,0],[-14,-1],[-28,1],[-36,0],[-147,1],[-29,-1],[-18,-1],[-8,0],[-114,0],[-3,0],[-38,0],[-40,-1],[-100,-1],[-97,-1],[-128,-1],[-117,1],[-149,0],[-81,0],[-98,1],[-43,-1],[-22,1],[-24,-1],[-20,1],[-118,-3]],[[7825,47851],[-1,-151],[-7,-622],[-3,-237],[-1,-59],[-1,-40],[0,-63],[0,-34],[-1,-67],[-1,-65],[0,-45],[-1,-53],[-21,1],[-48,3],[-13,0]],[[7727,46419],[-16,-1],[-201,-10],[-119,-7],[-48,-4],[-14,1],[-44,-5],[-31,3],[-307,-5],[-23,-2],[-56,-7],[-104,0],[-243,5],[-89,6],[-13,0],[-97,25],[-44,-1],[-63,-2],[-27,-1],[-122,-3],[-46,-2],[-13,-1],[-9,0],[-13,0],[-206,-7],[-159,-4],[-72,-3],[-15,0],[-31,-1],[-103,-3],[-302,-9],[-5,0],[-199,-12],[-144,0],[-290,1],[-3,0],[-17,-1],[-21,0],[-135,0],[-28,0],[-35,-1],[-12,0],[-12,0],[-12,0],[-14,0],[-21,0],[-15,1],[-22,0],[-28,0],[-13,0],[-15,3],[-118,-9],[-49,0],[-122,0],[-76,0],[-23,0],[-205,5],[-110,2],[-63,1],[-76,0],[-13,2],[-183,0],[-44,0],[-18,0],[-20,0],[-14,-1],[-57,1],[-66,-1],[-47,1],[-47,-1],[-71,0],[-52,0],[-59,3],[-12,2],[-12,2],[-16,-2],[-18,-1],[-23,0],[-33,-3],[-65,-2],[-15,1],[-32,1],[-61,3],[-52,0],[-22,1],[-38,0],[-24,0],[-29,1],[-48,-1],[-39,0],[-15,-2],[-23,0],[-27,2],[-31,1],[-21,-3],[-13,1],[-21,0],[-56,1],[-62,-1],[-15,0],[-15,2],[-13,0],[-12,-2],[-40,1],[-13,0],[-32,0],[-25,0],[-16,-4],[-18,2],[-15,-1],[-15,0],[-14,0],[-64,-1],[-15,3],[-160,1],[-48,-1],[-54,1],[-37,1],[-16,0],[-30,1],[-83,-4],[-22,-1],[-61,-1],[-70,0],[-14,1],[-11,-2],[-22,1],[-12,1],[-83,-2],[-74,2],[-14,0],[-12,-3],[-20,0],[-18,0],[-26,-1],[-65,-1],[-17,1],[-31,-1],[-20,0],[-19,-1],[-82,1],[-26,0],[-26,0],[-31,1],[-53,-3],[-21,-1],[-19,4],[-83,2]],[[13,46372],[0,165],[-3,5528],[-1,2460],[-1,1990]],[[90687,56018],[9,-44],[6,-71],[6,-54],[0,-8],[26,-94],[13,-43],[15,-50],[27,-71],[59,-117],[31,-50],[50,-83],[14,-29],[27,-87],[11,-63],[4,-25],[18,-174],[0,-163],[-8,-100],[-23,-112],[-4,-18],[-17,-86],[0,-9],[-20,-58],[-25,-63],[-71,-154],[-52,-150],[-35,-150],[-8,-87],[0,-133],[6,-77],[0,-7],[1,-7],[34,-217],[0,-2],[14,-64],[2,-5],[1,-6],[37,-127],[18,-50],[33,-71],[54,-79],[50,-46],[28,-27],[5,2],[18,-12],[25,-32],[5,-5],[21,-36],[17,-36],[13,-28],[7,-27],[2,-8],[14,-57],[14,-83],[1,-70],[1,-97],[-19,-121],[-23,-92],[-27,-69],[-5,-9],[-1,-6],[-39,-132],[-41,-233],[-2,-19],[-7,-72],[-1,-18],[-1,-20],[2,-92],[-4,-87],[12,-112],[5,-54],[12,-100],[29,-129],[27,-92],[70,-151],[19,-40],[23,-38],[56,-75],[31,-37],[14,-12],[26,-24],[47,-43],[25,0],[124,-54],[33,-25],[19,-8],[51,-37],[72,-92],[3,11],[3,26],[3,30],[36,320],[6,45],[1,7],[7,60],[7,53],[3,67],[8,71],[7,85],[7,133],[6,57],[62,133],[68,30],[93,-52],[45,-63],[36,-103],[6,-15],[7,-56],[19,-162],[15,-119],[13,-106],[5,-41],[8,-118],[10,-186],[-6,-76],[-33,-178],[-10,-31],[-34,-95],[-7,-21],[-139,-255],[-46,-76],[-10,-53],[-2,-12],[-9,-44],[-8,-80],[17,-111],[14,-56],[19,-62],[16,-53],[24,-67],[10,-24],[18,-40],[16,-30],[12,-19],[29,-30],[28,-15],[18,1],[15,1],[81,3],[22,-8],[62,-22],[23,-24],[57,-60],[16,-17],[22,-35],[49,-79],[15,-20],[19,-15],[19,-7],[27,-5],[15,3],[23,0],[18,7],[20,8],[25,17],[16,13],[20,20],[13,14],[22,14],[15,11],[21,7],[12,-4],[19,-1],[15,-9],[20,-8],[13,-10],[14,-8],[15,-15],[17,-19],[36,-51],[23,-35],[15,-29],[13,-31],[13,-25],[11,-30],[12,-31],[8,-32],[3,-16],[2,-9],[8,-31],[3,-27],[0,-7],[4,-14],[4,-20],[1,-5],[1,-19],[1,-20],[2,-43],[0,-34],[-2,-53],[-6,-74],[0,-6],[-7,-52],[0,-2],[-6,-26],[-4,-15],[-6,-19],[-3,-7],[-8,-28],[-15,-33],[-16,-36],[-16,-33],[-15,-31],[-10,-28],[-10,-31],[-3,-13],[-6,-24],[-8,-35],[-7,-46],[-4,-36],[-3,-39],[0,-57],[2,-35],[3,-42],[2,-23],[2,-21],[1,-17],[4,-33],[2,-18],[6,-32],[8,-56],[6,-55],[0,-4],[1,-12],[5,-48],[-1,-17],[-1,-22],[0,-48],[-3,-80],[-3,-36],[-8,-67],[-8,-53],[-10,-54],[-8,-28],[-12,-44],[-10,-45],[-8,-28],[-13,-77],[-4,-40],[-5,-76],[-1,-53],[0,-50]],[[92801,46290],[-5,34],[-6,47],[-11,0],[-50,-3],[-125,0],[-125,0],[-98,0],[-15,0],[-84,0],[-70,2],[-42,0],[-13,1],[-26,0],[-1,0],[-41,-4],[-3,0],[-18,0],[-33,0],[-19,1],[-15,0],[-15,0],[-25,1],[-31,0],[-21,0],[-23,1],[-15,0],[-16,0],[-18,1],[-15,-1],[-17,0],[-18,0],[-15,0],[-16,0],[-21,0],[-13,0],[-16,0],[-24,-1],[-13,0],[-12,1],[-23,0],[-17,0],[-20,-1],[-36,1],[-25,0],[-18,0],[-24,0],[-19,0],[-15,1],[-1,-1],[-20,0],[-13,0],[-13,1],[-21,-1],[-15,0],[-14,1],[-18,0],[-49,-1],[-16,0],[-20,0],[-16,1],[-18,-1],[-25,1],[-15,0],[-29,0],[-25,-1],[-18,1],[-34,0],[-12,0],[-21,0],[-46,-1],[-19,0],[-2,0],[-16,0],[-26,1],[-53,0],[-18,0],[-12,-1],[-16,0],[-14,0],[-13,0],[-22,0],[-44,0],[-11,0],[-17,0],[-16,0],[-26,0],[-14,-1],[-19,0],[-22,1],[-13,0],[-23,0],[-17,0],[-40,0],[-14,0],[-12,0],[-17,0],[-27,-1],[-19,1],[-38,0],[-38,0],[-27,0],[-12,0],[-17,0],[-29,0],[-43,0],[-31,0],[-14,0],[-23,0],[-16,0],[-20,0],[-17,1],[-16,-1],[-15,0],[-26,0],[-23,0],[-22,0],[-24,0],[-13,0],[-30,0],[-16,0],[-12,0],[-4,0],[-21,0],[-14,0],[-17,-1],[-20,0],[-23,1],[-20,-1],[-19,0],[-21,0],[-46,0],[-32,0],[-12,0],[-12,-1],[-20,-1],[-15,0],[-23,2],[-25,0],[-35,0],[-27,0],[-14,1],[-48,-1],[-21,0],[-2,0],[-42,0],[-21,0],[-11,1],[-14,-1],[-12,1],[-18,-1],[-17,0],[-14,1],[-23,-1],[-23,-1],[-23,1],[-15,0],[-20,1],[-24,0],[-48,-1],[-54,0],[-14,0],[-16,1],[-27,-1],[-25,1],[-21,0],[-12,0],[-17,-1],[-16,-2],[-18,0],[-18,0],[-24,2],[-78,0],[-66,0],[-51,1],[-45,1],[-14,0],[-36,0],[-11,0],[-1,0],[-88,3],[-20,-4],[-12,0],[-31,0],[-28,0],[-9,-1],[-22,0]],[[72607,46427],[0,-485],[-1,-180],[-3,-286],[2,-36],[1,-36],[-2,-405],[0,-60],[-5,-511],[0,-30],[0,-10],[0,-357],[0,-95],[-9,-177],[-3,-184],[-92,-1],[-14,-3],[-78,-3],[-52,-2],[-83,-2],[-109,-4],[-65,-2],[-46,-1],[-28,-1],[-51,-3],[-49,-2],[-21,-1],[-42,-2],[-29,0],[-37,0],[-62,2],[-42,-1],[-57,-4],[-23,-1],[-113,5],[-108,-3],[-87,-2],[-129,-3],[-219,-12],[-22,0],[-30,-1],[-58,0],[-20,0],[-18,0],[-13,0],[-14,0],[-14,0],[-26,0],[-119,16],[-80,-3],[-27,0],[-113,2],[-14,0],[2,-239],[2,-239],[-94,-9],[-13,0],[-42,2],[-15,-1],[-17,0],[-17,1],[-16,0],[-21,1],[-20,1],[-20,-1],[-37,0],[-23,-1],[-21,1],[-20,0],[-17,0],[-14,0],[-29,1],[-19,0],[-41,0],[-12,1],[-25,0],[-15,0],[-16,-2],[-16,-1],[-17,1],[-20,0],[-11,0],[-25,0],[-13,2],[-17,-1],[-23,1],[-45,0],[-25,0],[-84,0],[-13,0],[-22,0],[-23,0],[-47,1],[-12,-1],[-57,-2],[-18,0],[-86,-4],[-19,0],[-39,-2],[-218,-6],[-70,-2],[-137,-2],[-12,0],[-54,-1],[-88,-1],[0,-417],[0,-69],[-21,0],[-15,1],[-34,1],[-35,-1],[-22,0],[-50,1],[-36,1],[-82,1],[-13,0],[-45,0],[-51,1],[-54,0],[-50,-1],[-22,0],[-25,0],[1,-241],[0,-245],[-79,9],[-44,1],[-52,2],[-13,0],[-26,1],[-33,2],[-25,2],[-62,2],[-42,1],[-24,1],[-23,2],[-15,-1],[-66,1],[-15,2],[-42,1],[-13,0],[-46,1],[-13,0],[-43,2],[-17,1],[-63,2],[-41,1],[-21,0],[-21,0],[-53,0],[-23,0],[-39,-2],[-20,-2],[-13,0],[-16,-1],[-56,0],[-42,-5],[-49,-4],[-27,-3],[-6,0],[-18,-2],[-57,-4],[-118,-2],[-78,1],[-48,0],[-85,0],[-41,-3],[-49,2],[-24,-3],[-23,0],[-21,-1],[-65,1],[-80,3],[-98,2],[0,64],[0,103],[0,44],[1,54],[0,97],[0,62],[0,33],[0,41],[1,47],[0,21],[0,50],[0,1],[1,63],[0,17],[0,18],[1,138],[0,103],[2,164],[0,203],[1,144],[0,168],[2,72],[0,89],[0,109],[0,95],[1,160],[1,73],[0,65],[0,208],[0,236],[1,126],[0,49],[0,35],[0,45],[2,42],[2,160],[1,116],[0,35],[0,242],[0,238],[0,47],[0,222],[1,67],[0,144],[-29,0],[-12,1],[-16,0],[-13,1],[-21,0],[-34,-1],[-20,1]],[[65943,46395],[-16,0],[-15,0],[-25,0]],[[81731,48375],[0,-10],[-1,-62],[0,-118],[0,-51],[0,-96],[0,-66],[0,-116],[0,-35],[0,-34],[0,-34],[0,-48],[0,-50],[0,-41],[0,-42],[0,-14],[0,-181],[0,-34],[0,-75],[0,-71],[0,-37],[0,-36],[0,-33],[0,-50],[0,-46],[0,-41],[2,-226],[0,-219],[-2,-108],[-12,1],[-14,-25],[0,-68],[0,-65],[-1,-95],[0,-55],[0,-70],[0,-105],[0,-153],[-2,-212],[0,-39],[0,-78],[2,-239],[-2,-48],[0,-36],[0,-38],[0,-55],[0,-38],[0,-53],[0,-34],[0,-143],[1,-63],[1,-74],[2,-57],[1,-47],[0,-40],[0,-176],[-1,-163],[-5,-138],[0,-39],[0,-84],[-1,-109],[0,-77],[0,-34],[0,-60],[-1,-82],[-1,-210],[0,-37],[0,-62],[-1,-63],[0,-36],[0,-34],[0,-39],[0,-81],[-1,-105],[0,-46],[1,-132],[0,-41],[0,-90],[0,-76],[0,-59],[0,-40],[0,-54],[0,-80],[-1,-63],[-1,-96],[2,-246],[0,-20],[0,-16],[0,-46],[1,-52],[0,-37],[0,-37],[1,-36],[0,-104],[0,-42],[0,-53],[1,-51],[0,-59],[0,-44],[0,-45],[0,-76],[1,-143],[0,-105],[1,-78],[0,-15],[0,-29],[0,-44],[0,-88],[0,-62],[0,-34],[0,-62],[-2,-147],[0,-44],[0,-51],[-1,-61],[0,-3],[0,-123],[0,-52],[0,-57],[-1,-35],[1,-70],[0,-50],[0,-119],[0,-57],[0,-37],[0,-65],[-1,-246],[0,-51],[1,-129],[0,-136],[0,-218],[0,-226],[0,-176],[0,-63],[-1,-41],[0,-113],[-1,-272],[1,-80],[1,-163],[0,-112],[0,-103],[0,-43],[-1,-90],[-1,-98],[1,-47],[0,-271],[0,-40],[3,-172],[-1,-38],[1,-139],[0,-40],[0,-91],[0,-357],[0,-123],[0,-35],[0,-89],[0,-130],[0,-237],[0,-103],[1,-150],[0,-138],[0,-92]],[[81701,34819],[-13,0],[-15,0]],[[81673,34819],[-26,0],[-13,0],[-15,0],[-28,0],[-16,1],[-19,0],[-45,0],[-15,0],[-16,0],[-32,1],[-13,0],[-13,0],[-15,0],[-18,0],[-19,0],[-18,0],[-12,0],[-28,0],[-18,1],[-13,0],[-27,0],[-15,0],[-14,0],[-14,0],[-12,0],[-19,-1],[-20,-1],[-23,2],[-16,3],[-42,-4],[-12,-1],[-12,3],[-15,1],[-12,-1],[-13,0],[-19,0],[-26,0],[-12,0],[-14,1],[-18,4],[-13,1],[-11,1],[-17,-2],[-13,-1],[-21,-3],[-17,0],[-16,0],[-16,1],[-29,0],[-11,-1],[-29,0],[-17,0],[-17,1],[-25,-1],[-22,1],[-13,0],[-47,0],[-12,0],[-12,0],[-32,0],[-12,1],[-26,0],[-23,0],[-19,0],[-23,0],[-21,0],[-12,0],[-12,0],[-17,0],[-53,1],[-32,0],[-14,0],[-19,0],[-25,0],[-20,0],[-23,0],[-16,0],[-20,0],[-19,0],[-48,1],[-30,0],[-12,0],[-30,1],[-57,0],[-11,0],[-14,0],[-16,0],[-13,0],[-21,1],[-11,0],[-26,-1],[-14,-2],[-12,0],[-13,-1],[-1,0],[-8,1],[-4,0],[-1,0],[-13,2],[-12,0],[-13,0],[-12,-1],[-16,0],[-16,1],[-13,0],[-20,0],[-17,0],[-33,0],[-13,0],[-14,0],[-19,0],[-32,0],[-30,1],[-8,0],[-11,0],[-26,0],[-19,0],[-23,0],[-36,0],[-62,0],[-20,1],[-17,0],[-24,-1],[-17,0],[-20,0],[-18,1],[-15,0],[-14,0],[-30,0],[-22,1],[-15,-1],[-12,0],[-15,1],[-18,0],[-12,0],[-19,0],[-38,0],[-22,0],[-13,0],[-16,0],[-21,0],[-28,0],[-25,1],[-14,-1],[-21,0],[-26,0],[-32,1],[-46,0],[-24,0],[-13,0],[-26,0],[-27,0],[-14,0],[-12,0],[-12,0],[-19,0],[-12,0],[-13,0],[-19,0],[-30,1],[-25,0],[-14,0],[-21,0],[-34,0],[-15,0],[-22,1],[-24,0],[-14,0],[-4,0],[-46,0],[-13,0],[-13,0],[-18,0],[-22,0],[-36,0],[-18,0],[-32,1],[-12,0],[-15,0],[-39,0],[-17,0],[-20,0],[-26,1],[-24,-1],[-18,1],[-16,0],[-20,0],[-23,0],[-20,0],[-22,1],[-14,-1],[-37,0],[-48,0],[-23,1],[-12,1],[-12,0],[-18,0],[-17,0],[-16,0],[-22,0],[-14,0],[-18,0],[-30,1],[-18,0],[-29,0],[-15,0],[-23,0],[-21,0],[-20,0],[-41,1],[-18,0],[-14,0],[-11,0],[-13,0],[-43,0],[-18,1],[-26,-1],[-30,1],[-14,0],[-21,0],[-17,1],[-18,0],[-27,0],[-21,0],[-21,0],[-22,1],[-19,0],[-13,0],[-32,0],[-42,0],[-49,0],[-13,1],[-28,0],[-15,1],[-12,-1],[-22,0],[-15,0],[-12,0],[-15,0],[-16,0],[-16,0],[-17,0],[-13,0],[-13,0],[-17,1],[-27,0],[-24,0],[-12,0],[-32,1],[-13,0],[-17,0],[-18,0],[-36,0],[-24,0],[-26,0],[-26,0],[-15,0]],[[76445,34847],[0,46],[0,45],[0,400],[0,140],[0,44],[0,50],[0,38],[0,36],[0,167],[0,60],[0,157],[0,38],[0,102],[0,41],[0,50],[0,34],[0,263],[0,119],[0,186],[0,50],[1,41],[0,35],[0,139],[0,35],[0,31],[0,35],[0,38],[0,50],[0,2],[0,47],[0,26],[-1,37],[0,34],[1,51],[-1,174],[1,34],[-1,37],[1,55],[0,54],[0,45],[0,40],[0,60],[0,214],[0,55],[0,43],[0,45],[0,244],[0,113],[0,209],[0,131],[0,127],[0,129],[0,202],[0,37],[0,33],[-1,80],[0,8],[0,20],[1,32],[0,44],[0,46],[0,92],[0,2],[0,59],[0,181],[0,483],[0,494],[0,382],[0,57],[0,5],[0,28],[0,88],[0,138],[0,49],[0,74],[0,45],[0,90],[0,161],[0,46],[0,43],[0,48],[0,44],[0,37],[0,34],[0,36],[0,34],[0,39],[0,48],[0,158],[0,60],[-1,48],[0,39],[0,91],[0,341],[0,47],[0,44],[0,56],[0,32],[0,2],[0,14],[0,27],[0,14],[0,41],[0,78],[0,43],[0,36],[0,202],[0,88],[0,46],[-1,243],[-1,35],[0,69],[1,43],[0,189],[0,74],[0,44],[0,35],[0,93],[0,34],[0,123],[0,44],[0,38],[0,100],[0,64],[0,75],[0,77],[0,47],[0,57],[0,1],[0,57],[0,33],[0,33],[0,3],[0,114],[0,61],[0,79],[0,62],[0,101],[0,34],[0,98],[0,102],[0,48]],[[86707,46373],[6,-30],[8,-26],[10,-30],[6,-21],[4,-16],[8,-25],[9,-29],[15,-54],[8,-36],[11,-33],[13,-32],[14,-36],[13,-48],[16,-43],[1,-2],[10,-11],[11,-15],[11,-15],[10,-15],[9,-14],[19,-34],[10,-17],[10,-19],[17,-20],[25,-29],[14,-19],[24,-32],[19,-34],[24,-34],[14,-9],[19,-17],[16,-10],[31,-24],[13,-14],[17,-14],[30,-22],[15,-8],[19,-16],[13,-20],[13,-26],[13,-32],[8,-25],[10,-39],[8,-37],[14,-49],[9,-36],[7,-33],[11,-35],[8,-38],[7,-43],[8,-65],[2,-36],[1,-16],[4,-35],[7,-43],[5,-26],[5,-31],[5,-31],[8,-48],[9,-63],[6,-52],[4,-37],[2,-19],[3,-27],[4,-40],[6,-77],[0,-84],[1,-60],[0,-41],[-1,-44],[-1,-40],[-2,-37],[-6,-70],[-3,-42],[-8,-23],[-5,-12],[-7,-33],[2,-31],[0,-13],[3,-34],[8,-43],[6,-28],[27,-72],[9,-28],[19,-34],[15,-28],[6,-10],[11,-21],[21,-12],[19,-44],[12,-26],[12,-27],[28,-57],[22,-41],[14,-23],[13,-18],[15,-8],[18,-6],[12,-10],[12,-14],[14,-10],[11,-21],[14,-23],[9,-13],[12,-17],[27,-56],[5,-33],[15,-36],[10,-26],[19,-45],[10,-27],[12,-33],[12,-33],[13,-36],[7,-26],[12,-42],[12,-41],[1,-1],[10,-34],[33,-126],[19,-84],[4,-16],[22,-95],[7,-32],[62,-280],[5,-59],[6,-42],[-3,-38],[-1,-60],[-5,-67],[-4,-32],[-14,-49],[-16,-51],[-17,-57],[-21,-70],[-4,-15],[-1,-1],[-15,-67],[-5,-31],[-16,-83],[-13,-40],[-12,-48],[-8,-45],[-6,-33],[-6,-40],[-10,-36],[-5,-44],[2,-34],[4,-57],[5,-41],[5,-31],[5,-51],[4,-34],[3,-32],[2,-37],[8,-92],[4,-34],[4,-70],[6,-30],[8,-35],[7,-33],[7,-32],[1,-9],[15,-63],[10,-42],[6,-30],[5,-32],[12,-67],[13,-51],[12,-36],[10,-23],[12,-26],[15,-18],[3,-6],[11,-20],[11,-16],[12,-19],[15,-17],[13,-16],[14,-19],[13,-16],[13,-14],[15,-16],[13,-14],[14,-17],[11,-18],[8,-16],[2,-5],[14,-22],[11,-19],[8,-23],[9,-32],[13,-38],[9,-31],[10,-33],[10,-28]],[[88346,39608],[31,-136],[8,-60],[5,-32],[8,-63],[1,-41],[3,-34],[4,-38],[5,-37],[3,-54],[1,-82],[-2,-38],[-1,-54],[-1,-34],[1,-72],[8,-149],[0,-9],[5,-45],[5,-76],[4,-36],[3,-34],[7,-42],[2,-34],[1,-37],[9,-37],[6,-31],[6,-40],[5,-34],[2,-48],[1,-35],[0,-23],[0,-9],[0,-5],[0,-11],[-1,-43],[-6,-41],[-4,-45],[-5,-35],[-9,-32],[-8,-27],[-5,-47],[-1,-40],[-2,-36],[-3,-37],[-1,-34],[3,-43],[3,-33],[5,-30],[4,-20],[4,-19],[10,-38],[11,-39],[4,-33],[9,-45],[9,-34],[7,-29],[2,-9],[10,-37],[4,-39],[1,-19],[2,-24],[7,-43],[3,-22],[3,-17],[-4,-32],[-9,-32],[-1,-2],[-8,-23],[-10,-29],[-2,-5],[-17,-46],[-9,-30],[-16,-28],[-15,-23],[-12,-16],[-14,-17],[-26,-26],[-12,-16],[-19,-30],[-12,-26],[-13,-23],[-12,-22],[-9,-20],[-14,-28],[-11,-26],[-19,-50],[-9,-27],[-12,-40],[-8,-34],[-10,-49],[-6,-31],[-1,-7],[-5,-28],[-4,-35],[-4,-37],[1,-41],[0,-48],[-3,-38],[-1,-33],[-2,-54],[2,-59],[10,-75],[7,-41],[14,-57],[12,-51],[10,-37],[7,-26],[2,-9],[10,-33],[11,-31],[10,-27],[8,-29],[5,-31],[6,-33],[6,-31],[8,-32],[10,-45],[2,-6],[4,-22],[2,-11],[7,-37],[2,-11],[6,-31],[9,-40],[7,-65],[7,-57],[5,-46],[4,-40],[5,-45],[8,-46],[9,-53],[7,-32],[10,-64],[3,-21]],[[88439,34782],[-17,0],[-16,0],[-12,0],[-26,0],[-54,0],[-19,0],[-13,1],[-4,0],[-42,-1],[-77,0],[-19,0],[-32,0],[-10,-70],[0,-53],[0,-29],[0,-58],[0,-35],[-1,-52],[-2,-211],[-1,-62],[0,-86],[0,-61],[0,-89],[-1,-103],[0,-78],[-58,-4],[-76,-1],[-84,0],[-15,-6],[-13,2],[-15,2],[-34,0],[-18,3],[-114,3],[-1,0],[-13,0],[-11,0],[-35,1],[-65,1],[-103,3],[-141,4],[-58,3],[-4,0],[-65,1],[-14,-2],[-12,1],[-63,4],[-19,1],[-51,3],[-57,1],[-32,1],[-24,0],[-27,1],[-59,1],[-27,1]],[[86785,33819],[0,88],[0,142],[0,204],[0,49],[0,39],[0,41],[0,52],[0,68],[0,34],[0,48],[0,64],[0,44],[0,93],[-41,1],[-50,0],[-15,0],[-12,1],[-16,0],[-37,0],[-48,1],[-34,0],[-31,0],[-24,1],[-28,0],[-41,0],[-15,1],[-16,0],[-22,0],[-13,0],[-214,1],[-67,0],[-72,1],[-57,0],[-23,0],[-15,0],[-29,0],[-25,1],[-14,0],[-13,0],[-23,0],[-24,0],[-24,0],[-21,0],[-18,1],[-24,0],[-22,0],[-16,0],[-19,0],[-55,2],[-22,-1],[-20,0],[-12,1],[-13,0],[-47,0],[-11,0],[-18,0],[-34,0],[-56,0],[-17,0],[-34,1],[-14,0],[-31,0],[-22,0],[-14,0],[-79,1],[-62,1],[-56,0],[-11,0],[-28,0],[-14,0],[-18,1],[-16,0],[-45,0],[-69,1],[-30,0],[-2,0],[-13,0],[-19,0],[-17,0],[-13,0],[-16,0],[-22,0],[-44,0],[-13,3],[-13,2],[-10,-6],[-3,-2],[-17,-2],[-15,7],[-20,0],[-43,0],[-29,1],[-16,-1],[-124,1],[-23,0],[-21,0],[-14,0],[-32,1],[-50,0],[-54,0],[-19,1],[-15,-4],[-14,8],[-12,-4],[-50,0],[-51,0],[-60,1],[-17,0],[-16,1],[-13,-1],[-69,1],[-37,0],[-17,0],[-28,0],[-26,0],[-18,0],[-24,1],[-13,0],[-14,0],[-13,0],[-19,0],[-19,0],[-40,1],[-69,0],[-13,-1],[-11,0],[-16,1],[-24,0],[-18,1],[-19,0],[-14,0],[-14,0],[-18,0],[-30,1],[-15,-1],[-21,0],[-14,0],[-14,0],[-12,0],[-2,0],[-13,0],[-40,0],[-19,0],[-33,1],[-20,0],[-29,0],[-30,0],[-13,0],[-14,0],[-143,1],[-12,0],[-38,0],[-28,0],[-12,0],[-28,1],[-8,0],[-10,0],[-13,0],[-36,0],[-19,0],[-34,1],[-36,0],[-22,0],[-38,0],[-26,0],[-26,0],[-23,0],[-27,0],[-26,1],[-14,0],[-17,0],[-17,1],[-27,-8],[-59,3],[-14,1],[-51,3],[-15,0],[-13,1],[-20,0],[-12,0],[-12,-4],[-14,2],[-19,1],[-15,-5],[-15,-3],[-13,3],[-26,5],[-16,2],[-51,1],[-28,-1],[-23,0],[-22,0],[-62,0],[-19,1],[-22,0],[-12,0],[-24,0],[-15,0],[-19,0]],[[16500,40661],[0,-37],[0,-39],[1,-50],[0,-33],[1,-41],[0,-44],[0,-48],[-1,-64],[0,-85],[1,-39],[0,-102],[-2,-66],[-1,-92],[-1,-86],[-1,-49],[-1,-49],[0,-38],[0,-62],[0,-99],[0,-69],[0,-54],[0,-46],[1,-72],[0,-70],[-3,-251],[0,-52],[0,-89],[0,-93],[1,-216],[2,-189],[2,-263],[0,-7],[1,-94],[0,-5],[0,-93],[1,-13],[-2,-99],[0,-36],[0,-36],[0,-49],[0,-58],[-1,-94],[0,-42],[1,-53],[0,-87],[-1,-41],[0,-63],[1,-56],[0,-40],[-1,-40],[2,-257],[1,-190],[0,-184],[-1,-110],[0,-108],[-1,-63],[0,-63],[0,-40],[1,-34],[0,-75],[0,-53],[1,-45],[0,-52],[0,-40],[1,-59],[0,-87],[0,-34],[0,-72],[0,-63],[0,-72],[-1,-120],[1,-107],[-1,-38],[1,-37],[0,-118],[0,-58],[-122,-7],[0,-202],[0,-103],[0,-36],[0,-250],[-1,-325],[0,-59],[0,-541]],[[16379,33366],[-371,-3],[-72,-1],[-628,0],[-1474,0],[-202,0],[-774,0],[-1328,0],[-514,0],[-37,0],[-421,0],[-75,0],[-2731,-1],[-81,0]],[[7671,33361],[0,54],[1,230],[0,340],[0,177],[0,13],[1,241],[1,436],[0,22],[47,0],[15,0],[9,32],[0,441],[2,499],[0,52],[1,42],[0,50],[0,35],[-2,304],[0,477],[1,211],[0,280],[1,148],[-1,178],[0,154],[-2,337],[0,157],[-1,291],[0,4],[0,54],[0,140],[0,458],[-1,483],[0,505],[0,162],[1,226],[0,33],[1,47],[0,10],[0,86],[0,86],[0,5],[1,102],[1,642],[0,78],[-1,446],[0,5],[-1,519],[-1,35],[0,35],[0,96],[0,42],[0,34],[-1,46],[0,80],[0,62],[0,59],[2,286],[7,57],[-2,48],[-8,84],[-11,127],[-2,50],[-3,190],[1,429],[0,62],[0,216],[0,11],[1,265],[0,47],[0,41],[-1,82],[0,33],[0,61],[0,44],[0,50],[-1,49],[0,40],[0,36],[0,59],[0,80],[-1,138],[0,207],[1,428],[1,57]],[[31831,46429],[1,-388],[0,-10],[1,-265],[-4,-371],[3,-1734],[1,-34],[-1,-43],[-3,-39],[0,-353],[0,-131],[0,-297],[-1,-761],[0,-153],[0,-245],[-1,-428],[0,-3],[0,-107],[0,-145],[0,-20],[1,-568],[-2,-167],[0,-45],[0,-95],[0,-68],[0,-182],[0,-50],[-1,-44],[0,-176],[0,-1],[-1,-169],[0,-62],[-1,-82],[0,-60],[2,-191],[0,-37],[0,-30],[0,-9],[1,-41],[0,-58],[-1,-42],[0,-69],[-2,-791],[-1,-205],[0,-14],[0,-77],[0,-124],[3,-148],[0,-2],[0,-57],[-1,-60],[-1,-33],[1,-145],[-1,-85],[0,-313],[0,-42],[1,-249],[0,-402],[0,-40],[-4,-41],[2,-241],[1,-267],[0,-197],[1,-261],[12,0],[18,0],[12,0],[15,0],[19,0],[11,0],[24,0],[46,0],[27,0],[33,0],[13,0],[1,-43],[0,-56],[0,-62],[0,-35],[0,-34],[0,-46],[0,-60],[0,-33],[0,-112],[0,-55],[0,-45],[0,-97],[0,-47],[0,-51],[0,-33],[0,-70],[0,-63],[0,-40],[0,-48],[0,-34],[0,-37],[0,-35],[1,-43],[0,-46],[0,-43],[0,-104],[0,-34],[1,-40]],[[32057,33416],[-20,0],[-14,0],[-25,0],[-40,-1],[-12,0],[-21,-1],[-24,-1],[-23,-1],[-39,-1],[-26,-1],[-27,-1],[-17,0],[-28,-1],[-13,-1],[-50,0],[-38,-1],[-20,0],[-30,-2],[-20,-2],[-31,-2],[-11,-1],[-19,-1],[-14,-1],[-15,-1],[-17,-1],[-21,-1],[-13,-1],[-16,-1],[-11,0],[-26,0],[-37,0],[-21,0],[-14,0],[-15,0],[-14,0],[-24,0],[-14,0],[-35,0],[-19,0],[-41,2],[-12,1],[-19,1],[-14,1],[-14,1],[-13,1],[-13,0],[-26,2],[-16,1],[-16,1],[-20,1],[-18,1],[-23,1],[-36,3],[-22,1],[-41,3],[-13,1],[-24,1],[-38,2],[-25,1],[-29,-1],[-14,0],[-58,-3],[-26,-2],[-24,-2],[-42,-3],[-15,0],[-13,-2],[-21,-1],[-57,-3],[-15,-1],[-20,-1],[-16,0],[-24,-1],[-22,-1],[-18,-2],[-14,0],[-13,-1],[-23,-2],[-24,-3],[-27,-2],[-24,-2],[-11,-1],[-12,-1],[-16,-2],[-12,-1],[-20,-2],[-20,-2],[-12,-1],[-14,-1],[-24,1],[-11,0],[-12,1],[-12,1],[-29,2],[-23,3],[-13,1],[-24,2],[-15,1],[-20,2],[-18,2],[-17,0],[-19,1],[-200,-8],[-17,0],[-27,1],[-16,1],[-18,0],[-33,2],[-14,1],[-48,3],[-22,1],[-16,0],[-36,0],[-24,0],[-32,0],[-14,0],[-16,0],[-35,0],[-15,0],[-15,0],[-21,-1],[-13,0],[-19,-2],[-11,-1],[-13,-1],[-14,0],[-47,-3],[-13,-1],[-13,-1],[-12,0],[-20,-1],[-19,-1],[-29,-1],[-16,0],[-26,1],[-17,0],[-25,1],[-41,0],[-26,0],[-20,1],[-29,0],[-23,0],[-27,0],[-23,-1],[-13,0],[-20,-1],[-6,0],[-15,-1],[-27,0],[-12,-1],[-20,0],[-14,0],[-16,0],[-12,0],[-12,0],[-13,0],[-24,-1],[-12,0],[-39,0],[-41,1],[-26,1],[-13,0],[-31,2],[-29,0],[-49,1],[-22,1],[-46,0],[-22,1],[-22,0],[-24,1],[-30,0],[-21,0],[-25,0],[-23,0],[-45,0],[-27,1],[-26,1],[-27,-2],[-25,-1],[-24,0],[-42,-2],[-23,0],[-13,0],[-16,2],[-12,0],[-19,1],[-17,0],[-28,1],[-24,1],[-11,0],[-23,2],[-23,0],[-16,1],[-27,3],[-11,1],[-28,2],[-17,2],[-16,0],[-16,1],[-18,1],[-16,0],[-40,1],[-22,1],[-20,0],[-21,0],[-26,2],[-18,1],[-23,0],[-15,0],[-20,1],[-16,-1],[-17,-1],[-65,-6],[-29,-1],[-22,0],[-21,-1],[-16,0],[-23,1],[-29,0],[-18,1],[-18,0],[-18,1],[-20,1],[-22,1],[-23,1],[-23,1],[-42,2],[-17,0],[-15,1],[-20,-1],[-15,-1],[-22,-1],[-18,-1],[-23,-1],[-15,-1],[-15,-1],[-12,-1],[-27,-1],[-20,-1],[-16,-1],[-14,-1],[-7,0],[-36,-1],[-22,-1],[-12,0],[-31,-1],[-53,-1],[-12,-1],[-14,0],[-13,-1],[-26,0],[-17,-1],[-24,0],[-17,0],[-19,0],[-57,-1],[-18,0],[-18,0],[-29,-1],[-11,0],[-21,0],[-21,1],[-52,1],[-18,0],[-14,0],[-18,1],[-27,0],[-32,0],[-22,1],[-35,-2],[-20,-1],[-19,-1],[-38,-1],[-17,-1],[-19,0],[-17,0],[-22,-1],[-21,-1],[-13,0],[-18,0],[-18,1],[-24,-1],[-19,0],[-25,0],[-16,0],[-18,0],[-16,0],[-14,0],[-16,-1],[-16,-1],[-14,1],[-18,-1],[-16,0],[-13,-2],[-15,0],[-12,2],[-20,-1],[-17,1],[-13,0],[-13,1],[-23,0],[-12,0],[-12,0],[-16,-1],[-12,0],[-13,0],[-17,1],[-15,1],[-11,0],[-15,1],[-48,2],[-17,1],[-22,1],[-29,1],[-17,1],[-21,0],[-16,1],[-16,1],[-33,1],[-16,1],[-20,1],[-12,0],[-17,1],[-32,2],[-13,0],[-22,1],[-13,0],[-14,0],[-14,0],[-21,0],[-43,0],[-53,0],[-15,0],[-17,-1],[-15,0],[-28,0],[-16,0],[-20,-1],[-13,0],[-12,0],[-17,-1],[-15,0],[-15,0],[-17,-1],[-12,0],[-14,0],[-28,-1],[-13,0],[-13,0],[-20,0],[-19,1],[-21,0],[-15,0],[-22,1],[-12,0],[-11,0],[-18,0],[-12,1],[-12,0],[-18,0],[-15,1],[-14,0],[-16,0],[-13,1],[-18,-1],[-14,0],[-26,0],[-22,0],[-14,0],[-13,-1],[-13,1],[-14,-1],[-27,0],[-12,0],[-12,0],[-23,-1],[-15,0],[-21,0],[-15,0],[-14,0],[-15,0],[-12,0],[-32,-1],[-15,0],[-16,0],[-15,0],[-15,0],[-17,0],[-27,0],[-17,0],[-22,0],[-18,0],[-13,0],[-23,0],[-12,0],[-16,0],[-17,-1],[-33,0],[-16,0],[-19,0],[-13,1],[-22,0],[-15,1],[-7,0],[-8,0],[-17,0],[-22,0],[-12,0],[-14,0],[-12,0],[-13,0],[-12,0],[-17,0],[-14,0],[-22,1],[-86,4],[-70,1],[-89,4],[-170,9],[-14,1]],[[22888,33414],[0,49],[0,63],[0,40],[0,43],[0,95],[0,182],[0,87],[0,294],[0,99],[0,41],[0,69],[0,42],[0,243],[0,81],[-12,22],[-13,0],[-16,0],[-2,70],[0,54],[0,47],[0,21],[0,13],[0,37],[0,54],[0,35],[0,75],[1,45],[0,8],[-1,93],[-1,107],[1,44],[0,5],[-1,260],[-2,478],[0,3],[0,53],[0,37],[0,181],[0,98],[0,39],[0,72],[0,67],[0,41],[-1,37],[1,53],[0,37],[0,36],[0,63],[-1,36],[1,36],[0,45],[0,127],[0,45],[0,34],[0,126],[0,38],[1,44],[1,420],[0,35],[0,46],[1,39],[0,38],[-1,337],[-1,37],[0,122],[0,131],[-1,356],[2,469],[1,376],[0,110],[0,176],[0,308]],[[43786,34836],[0,-89],[0,-22],[0,-147],[0,-182],[0,-60],[0,-135],[0,-109],[0,-121],[0,-119],[0,-147],[0,-97],[0,-71],[-1,-170],[0,-483],[0,-77],[0,-160],[0,-129],[0,-123],[0,-96],[0,-152],[1,-149],[0,-80],[0,-105],[0,-74],[-1,-8],[-1,-28],[1,-36],[0,-36],[-1,-246],[0,-20],[0,-22],[0,-207],[0,-82],[0,-122],[0,-134],[-1,-36],[0,-97],[0,-159],[0,-163],[0,-324],[0,-42],[0,-199],[0,-202],[0,-41],[0,-217],[1,-45],[0,-48],[1,-166],[0,-51],[0,-78],[1,-285],[0,-73],[0,-180],[2,-573],[0,-123],[1,-335],[3,-499],[0,-35],[-2,-36],[0,-46],[0,-49],[1,-76],[0,-93],[0,-40],[0,-91],[0,-65],[0,-142],[0,-64],[0,-47],[0,-138],[0,-65],[1,-139],[1,-146],[1,-20],[1,-606],[0,-214],[1,-349],[-1,-208],[1,-47],[-1,-37],[0,-36],[-1,-49],[0,-142],[1,-43],[0,-50],[0,-40],[0,-197],[0,-61],[0,-1],[1,-62],[0,-38],[0,-81]],[[43796,23309],[-21,0],[-25,0],[-30,-1],[-20,0],[-13,0],[-31,1],[-36,0],[-21,0],[-22,0],[-53,0],[-13,0],[-18,0],[-27,0],[-12,0],[-25,0],[-12,0],[-12,4],[-17,-4],[-28,0],[-53,0],[-49,0],[-13,0],[-23,0],[-24,0],[-35,0],[-12,-1],[-39,0],[-16,0],[-138,-1],[-10,0],[-45,0],[-153,0],[-70,0],[-23,0],[-120,0],[-40,0],[-60,0],[-65,0],[-46,0],[-22,0],[-25,0],[-22,3],[-14,1],[-17,0],[-12,0],[-15,-1],[-13,1],[-36,-2],[-28,-2],[-37,-3],[-27,3],[-22,0],[-69,0],[-5,0],[-178,3],[-41,0],[-18,-1],[-38,1],[-20,-1],[-24,1],[-17,0],[-17,-1],[-26,1],[-35,0],[-20,1],[-85,0],[-25,0],[-32,1],[-14,-1],[-16,0],[-54,-2],[-15,0],[-54,0],[-16,0],[-12,0],[-12,0],[-13,-1],[-76,-3],[-36,3],[-14,1],[-18,0],[-18,0],[-21,0],[-49,0],[-66,0],[-22,0],[-32,0],[-37,0],[-26,0],[-46,0],[-11,0],[-80,0],[-87,-1],[-152,-1],[-29,0],[-62,1],[-61,0],[-104,1],[-79,1],[-60,0],[-56,0],[-44,-1],[-119,-1],[-100,-2],[-63,-1],[-19,0],[-17,0],[-12,3],[-16,0],[-41,-1],[-14,-1],[-116,-2],[-88,-1],[-91,-1],[-39,0],[-115,1],[-14,1],[-16,2],[-14,-1],[-7,0],[-33,-2],[-36,0],[-102,0],[-57,1],[-34,0],[-20,0],[-16,0],[-100,1],[-93,1],[-29,-1],[-6,0],[-17,-1],[-13,4],[-52,-1],[-44,0],[-26,0],[-41,-1],[-15,0],[-25,0],[-34,0],[-39,-1],[-123,-1],[-35,0],[-15,0],[-51,-1],[-168,-1],[-18,0],[-119,1],[-15,1],[-31,2],[-11,1],[-97,-1],[-23,-1]],[[37455,23305],[-19,0],[-21,-1],[-33,0],[-21,1],[-18,-1],[-42,1],[-75,-1],[-12,0],[-25,0],[-16,0],[-37,0],[-17,0],[-19,1],[-18,0],[-22,0],[-19,0],[-21,-1],[-14,0],[-19,0],[-37,0],[-16,0],[-18,0],[-18,0],[-22,0],[-19,-1],[-17,-1],[-24,1],[-14,0],[-17,2],[-202,2],[-36,1],[-94,0],[-13,0],[-13,0],[-60,1],[-27,0],[-133,-1],[-54,0],[-158,-1],[-448,-1],[-67,0],[-137,-1],[-25,-7],[-19,1],[-351,-11],[-16,-1],[-22,11],[-69,-4],[-91,-5],[-65,-3],[-122,-7],[-14,-1],[-25,0],[-130,-6],[-180,-9],[-12,9],[-41,-2],[-48,-1],[-17,0],[-39,-1],[-168,-5],[-59,2],[-43,-3],[-21,0],[-14,-1],[-35,-1],[-34,-1],[-23,0],[-11,0],[-12,-1],[-14,0],[-20,-1],[-14,-1],[-21,1],[-31,-1],[-46,0],[-15,0],[-18,-1],[-18,0],[-16,-1],[-13,0],[-17,-1],[-16,0],[-16,-1],[-13,1],[-14,-1],[-41,-3],[-29,-2],[-29,0],[-18,-1],[-11,-1],[-23,-1],[-58,-3],[-14,-1],[-99,-1],[-14,0],[-39,1],[-42,1],[-215,2],[-4,0],[-41,-1],[-39,0],[-355,-14],[-18,1],[-42,0],[-28,0],[-40,0],[-17,-1],[-28,-1],[-11,0]],[[32080,23227],[0,40],[0,37],[0,35],[1,80],[0,46],[0,42],[0,56],[0,40],[0,55],[1,34],[0,61],[0,79],[0,55],[0,53],[1,34],[2,54],[-1,60],[0,34],[0,45],[0,55],[0,63],[1,65],[0,38],[0,37],[1,58],[-1,127],[1,33],[-6,40],[2,37],[5,32],[0,39],[-1,58],[1,61],[-2,171],[0,53],[2,481],[0,36],[0,43],[0,34],[1,90],[0,46],[1,88],[0,34],[0,46],[0,36],[1,57],[0,39],[1,45],[0,47],[1,38],[1,62],[0,50],[1,40],[0,45],[1,79],[1,40],[-2,162],[-2,209],[-4,87],[-1,74],[-1,45],[-2,52],[-1,40],[0,34],[-1,7],[0,34],[0,45],[0,14],[0,51],[0,71],[-1,34],[-1,44],[2,44],[1,62],[-2,35],[-1,33],[1,33],[-1,38],[0,37],[0,71],[0,73],[4,338],[0,32],[2,106],[-2,84],[-2,141],[-7,43],[0,63],[0,52],[-1,43],[0,79],[0,40],[1,35],[0,52],[0,45],[1,66],[0,203],[1,64],[0,65],[0,65],[0,58],[0,30],[0,38],[0,66],[0,62],[0,65],[-4,34],[0,56],[0,39],[0,126],[0,35],[-1,96],[0,82],[0,36],[0,41],[0,41],[0,41],[1,37],[0,46],[0,50],[-1,184],[0,53],[0,66],[0,37],[-1,47],[0,34],[0,38],[0,50],[0,43],[0,45],[0,36],[-1,45],[1,35],[0,34],[0,37],[0,44],[0,53],[0,46],[0,42],[0,44],[1,50],[0,49],[0,35],[0,38],[-2,39],[-5,505],[-7,734],[0,88],[-1,131]],[[76445,34847],[-21,0],[-41,0],[-17,0],[-33,0],[-107,0],[-13,-1],[-47,-1],[-59,1],[-30,0],[-49,0],[-18,0],[-3,0],[-16,0],[-45,0],[-46,0],[-45,0],[-14,0],[-32,0],[-21,0],[-59,0],[-78,0],[-19,-1],[-52,0],[-12,0],[-17,0],[-33,0],[-19,0],[-47,0],[-46,0],[-47,0],[-25,-4],[-26,-4],[-13,-3],[-12,1],[-22,1],[-13,0],[-38,11],[-22,2],[-14,0],[-18,-6],[-23,0],[-85,0],[-56,-2],[-26,1],[-55,0],[-79,0],[-15,0],[-23,0],[-45,0],[-12,0],[-21,-1],[-21,0],[-50,0],[-74,0],[-79,0],[-17,0],[-77,-1],[-116,0],[-28,0],[-12,-1],[-50,1],[-155,-1],[-84,-1],[-28,0],[-14,0],[-44,0],[-13,0],[-12,0],[-13,0],[-12,-1],[-3,0],[-40,1],[-92,-1],[-80,1],[-59,0],[-43,0],[-39,-1],[-78,1],[-26,0],[-45,-1],[-70,0],[-19,0],[-58,0],[-34,0],[-38,0],[-26,0],[-98,0],[-23,-1],[-86,1],[-32,0],[-42,0],[-43,-1],[-17,0],[-57,0],[-56,1],[-26,0],[-55,-1],[-20,1],[-107,0],[-42,0],[-48,0],[-22,0],[-82,-5],[-29,0],[-18,0],[-6,1],[-5,0],[-1,0],[-14,-1],[-19,1],[-14,-1],[-12,0],[-17,0],[-12,0],[-183,7],[-25,0],[-36,0],[-2,0],[-100,-3],[-28,2],[-12,0],[-28,0],[-19,-2],[-20,0],[-30,0],[-41,0],[-18,0],[-68,0],[-12,0],[-16,0],[-14,0],[-15,0],[-17,0],[-60,0],[-114,-1]],[[71206,34835],[-16,0],[-3,42],[0,76],[0,103],[0,37],[0,47],[-1,101],[1,77],[0,125],[0,75],[0,56],[0,54],[0,96],[0,60],[0,16],[0,31],[0,49],[0,17],[0,71],[0,24],[0,17],[0,35],[0,56],[0,43],[0,140],[0,143],[0,39],[0,169],[-1,106],[0,67],[0,63],[0,305],[-1,73],[0,97],[0,285],[0,50],[0,44],[-3,136],[0,351],[0,97],[0,111],[2,33],[1,65],[-1,81],[0,39],[0,49],[-1,206],[0,112],[-1,59]],[[71182,39063],[26,55],[10,28],[16,28],[30,53],[18,31],[2,2],[31,54],[35,72],[12,20],[13,20],[11,23],[28,49],[78,164],[11,22],[1,38],[-19,63],[-18,56],[20,69],[7,13],[8,16],[16,30],[22,41],[27,52],[37,69],[6,10],[3,11],[11,32],[10,31],[11,37],[5,18],[9,29],[12,38],[26,84],[9,31],[5,16],[2,5],[5,22],[9,26],[12,41],[25,85],[16,54],[10,36],[13,44],[13,47],[5,17],[9,29],[39,138],[26,91],[22,43],[31,64],[6,12],[20,37],[8,14],[3,6],[9,16],[7,17],[13,33],[28,54],[19,49],[14,49],[17,33],[9,18],[24,35],[12,12],[12,1],[16,2],[16,8],[20,27],[21,45],[14,30],[19,26],[13,18],[20,27],[11,15],[13,19],[10,19],[15,30],[10,17],[20,26],[16,24],[13,20],[49,87],[19,37],[10,22],[10,26],[13,28],[18,29],[2,5],[7,17],[27,66],[13,37],[21,49],[15,35],[3,7],[14,31],[14,31],[9,21],[16,35],[14,37],[15,34],[3,8],[9,21],[17,38],[15,44],[15,33],[4,6],[10,22],[11,23],[19,34],[17,44],[10,18],[17,31],[9,24],[9,21],[15,25],[10,21],[1,2],[13,24],[12,14],[20,27],[15,19],[17,19],[15,25],[15,28],[3,5],[10,24],[13,24],[16,-31],[12,-31],[19,-50],[49,129],[24,66],[15,25],[2,3],[-10,50],[-6,30],[-6,33],[30,27],[21,17],[40,36],[12,10],[49,44],[24,22],[9,-27],[4,-66],[12,-25],[13,-3],[19,1],[11,3],[15,4],[22,4],[34,16],[33,29],[100,92],[21,19],[48,51],[15,26],[12,12],[1,0],[1,-1],[21,-8],[6,-2],[18,3],[15,0],[14,16],[18,24],[13,20],[16,36],[10,15],[11,15],[2,3],[0,183],[0,176],[0,43],[0,57],[-3,64]],[[7671,33361],[-2195,-18],[-453,-1],[-367,-1],[-475,-1],[-466,-1],[-252,0],[-533,-2],[-1022,-2],[-1862,-4],[-46,0],[4,4311],[2,1682],[0,157],[0,94],[0,293],[5,4729],[1,590],[1,1185]],[[71182,39063],[-10,-43],[-13,-53],[-12,-53],[-37,-137],[-22,-104],[-21,-69],[-57,-153],[-20,-53],[-14,-38],[-11,-51],[-22,-58],[-17,-40],[-44,-137],[-30,-99],[-18,-55],[-36,-111],[-10,-32],[-12,-39],[-10,-30],[-18,-47],[-13,-34],[-19,-54],[-14,-40],[-28,-73],[-10,-32],[-14,-36],[-62,-147],[-62,-100],[-11,-21],[-40,-79],[-15,-29],[-11,-20],[-105,-109],[-21,-28],[-17,-6],[-23,-27],[-15,-17],[-21,-21],[-32,-31],[-16,-8],[-16,0],[-17,-1],[-26,-8],[-27,-20],[-27,-26],[-13,-11],[-46,-27],[-22,-14],[9,-60],[-20,-53],[-46,-72],[-26,-30],[-25,-27],[-33,-39],[-20,-8],[-36,-35],[-43,-20],[-2,-1],[-29,-8],[-15,-4],[-35,-31],[-26,-29],[-14,-16],[-10,-19],[-11,-18],[-16,-18],[-12,8],[-15,43],[-8,28],[-8,27],[-9,28],[-14,47],[-8,29],[-40,-61],[-12,-19],[-12,-19],[-45,-65],[-73,-106],[-29,-53],[-86,-156],[-15,-25],[-7,-9],[-11,-16],[-20,-18],[-5,-5],[-11,-11],[-11,-18],[-16,-31],[-36,-58],[-10,-23],[-13,-28],[-9,-30],[-12,-22],[-27,-42],[-10,-14],[-25,-40],[-5,-15],[-8,-20],[-3,-10],[-8,-20],[-29,-88],[-28,-66],[-14,-35],[-31,-56],[-11,-26],[-13,-35],[-4,-9],[-45,-107],[-19,-43],[-30,-65],[14,-28],[9,-16],[-11,-28],[-16,-27],[-25,-39],[-14,-27],[-20,-36],[-10,-20],[-21,-41],[-15,-27],[-5,-11],[-22,-45],[-38,-77],[-4,-7],[-18,-32],[-13,-24],[-14,-24],[-24,-42],[-19,-34],[-4,-9],[-12,-22],[-8,-21],[-7,-21],[-13,-37],[-8,-22],[-9,-27],[-33,-98],[-12,-32],[-8,-29],[-12,-51],[-17,-38],[-11,-15],[-11,-12],[-24,-33],[-20,-43],[-12,-31],[-3,-6],[-9,-19],[-12,-48],[-16,-44],[-15,-18],[-27,-23],[-12,-3],[-12,-5],[-7,0],[-6,-1],[-15,-15],[-10,-27],[-17,-10],[-23,-17],[-48,-76],[-51,-81],[-31,-42],[-6,-7],[-29,-40],[-4,-5],[-1,2],[-38,143],[-16,-22],[-10,-23],[-17,-22],[-33,-41],[-9,-24],[-24,-43],[-32,-52],[-10,-17],[-12,-22],[-25,-94],[-9,-31],[-31,-110],[-40,-84],[-16,-34],[-11,-18],[-17,-30],[-31,-55],[-41,-91],[-27,-74],[-6,-19],[-22,-60],[-35,-122],[-49,-170],[-42,-133],[-4,-12],[-13,-40],[-19,-49],[-14,-36],[-2,-5],[-27,-60],[-6,-11],[-16,-34],[-20,-43],[-17,-34],[-31,-62],[-7,-16],[-10,-20],[-6,-11],[-22,-39],[-13,-21],[-16,-38],[-20,-45],[-30,-52],[-6,-11],[-15,-20],[-6,-8],[-6,-7],[-5,-8],[-10,-13],[-11,-12],[-19,-22],[-9,-9],[-23,-26],[-5,-5],[-5,-8],[-19,-27],[-13,-18],[-6,-8],[-9,-14],[-13,-18],[-23,-32],[-13,-18],[-20,-26],[-16,-27],[-6,-10],[-7,-11],[-21,-36],[-20,-45],[-9,-25],[-23,-65],[-12,-24],[-8,-19],[-9,-22],[-10,-27],[-8,-20],[-17,-46],[-9,-26],[-8,-23],[-17,-50],[-4,-11],[-15,-43],[-13,-36],[-13,-37],[-2,-6],[-13,-43],[-9,-32],[-8,-28],[-5,-20],[-6,-20],[-5,-19],[-7,-24],[-12,-44],[-7,-25],[-8,-31],[-26,-92],[-32,-68],[-8,-15],[-8,-12],[-16,-27],[-3,-5],[-2,-4],[-17,-39],[-10,-20],[-26,-49],[-14,-35],[-5,-15],[-1,-3],[-2,-3],[-10,-29],[-13,-34],[-12,-31],[-15,-42],[-8,-22],[-12,-32],[-5,-14],[-20,-54],[-16,-43],[-19,-52],[-6,-18],[-22,-60],[-9,-25],[-20,-55],[-7,-21],[-5,-18],[-34,-95],[-19,-51],[-3,-8],[-8,-23],[-9,-21],[-5,-8],[-15,-30]],[[65988,29035],[1,39],[0,23],[1,28],[0,44],[0,79],[-1,117],[0,38],[0,115],[-1,97],[0,46],[0,53],[0,46],[0,118],[0,123],[0,39],[1,84],[0,34],[0,15],[0,31],[0,43],[0,65],[0,45],[0,43],[0,83],[0,48],[0,81],[0,55],[-1,45],[1,50],[0,39],[0,94],[0,70],[0,36],[0,66],[0,45],[0,2],[0,81],[0,52],[0,76],[0,85],[0,40],[0,38],[0,79],[0,4],[0,74],[0,23],[0,30],[0,72],[0,2],[0,39],[1,87],[-1,35],[1,87],[0,341],[0,42],[0,63],[0,191],[0,66],[0,54],[0,121],[0,125],[0,101],[0,53],[0,66],[0,138],[0,72],[0,99],[0,38],[0,147],[0,74],[0,53],[1,224],[0,36],[-1,48],[1,62],[0,113],[0,98],[0,70],[0,69],[0,68],[0,45],[0,114],[0,1],[-55,18]],[[65936,34828],[0,101],[0,54],[0,47],[0,106],[1,166],[-1,70],[1,73],[0,78],[0,106],[0,90],[0,73],[0,112],[0,85],[0,42],[0,49],[0,34],[0,1],[0,33],[0,126],[0,76],[1,80],[0,101],[-1,90],[0,78],[1,37],[0,49],[0,64],[0,46],[0,91],[0,89],[0,92],[0,71],[0,483],[0,49],[0,131],[0,70],[0,57],[0,50],[0,33],[1,66],[-1,33],[0,75],[1,153],[0,247],[0,144],[0,133],[0,65],[0,74],[0,66],[0,195],[0,45],[0,91],[0,116],[0,30],[0,59],[0,180],[0,35],[0,1],[0,54],[0,91],[0,69],[0,111],[1,271],[0,49],[0,51],[1,172],[0,64],[-1,187],[0,60],[0,140],[0,60],[1,222],[0,60],[0,74],[-1,114],[1,45],[0,73],[0,77],[0,89],[0,56],[0,52],[0,111],[-1,40],[1,156],[0,41],[0,43],[0,17],[0,31],[0,186],[0,37],[0,52],[0,62],[0,68],[0,44],[0,38],[1,67],[-1,46],[1,130],[0,38],[0,1],[0,99],[0,66],[1,61],[0,70],[0,56],[0,34],[-1,33],[0,65],[0,68],[0,68],[0,64],[0,130],[0,113],[0,81],[0,61],[0,37],[0,145],[0,37],[0,61],[0,92],[0,141],[0,42],[0,67],[0,119],[0,45],[0,75],[0,134],[0,139],[0,85],[0,66],[1,51],[0,74],[-1,66],[0,176],[0,89],[1,62],[0,55],[0,96],[0,4]],[[65936,34828],[-16,0],[-39,0],[-19,0],[-21,0],[-14,0],[-35,-2],[-22,-1],[-47,-3],[-37,-1],[-14,0],[-40,-1],[-31,0],[-24,0],[-27,0],[-54,0],[-54,-1],[-53,0],[-45,0],[-3,0],[-64,1],[-25,0],[-41,0],[-44,0],[-66,0],[-13,0],[-3,0],[-21,0],[-60,0],[-36,-1],[-20,0],[-39,1],[-36,1],[-37,0],[-33,1],[-76,2],[-43,0],[-72,1],[-16,0],[-12,0],[-30,1],[-16,0],[-30,1],[-47,0],[-32,0],[-35,1],[-33,0],[-42,0],[-13,-1],[-26,1],[-27,0],[-14,1],[-18,-2],[-32,2],[-14,-1],[-12,1],[-57,-1],[-16,1],[-26,-1],[-39,2],[-19,0],[-33,0],[-26,-1],[-62,1],[-35,1],[-14,0],[-32,-1],[-13,1],[-18,-1],[-58,0],[-16,-2],[-23,1],[-50,1],[-33,2],[-21,1],[-14,-1],[-21,0],[-17,1],[-30,-1],[-12,1],[-20,0],[-12,2],[-32,-1],[-12,1],[-20,0],[-21,0],[-23,0],[-36,1],[-30,0],[-26,-1],[-35,1],[-66,0],[-36,1],[-33,0],[-20,0],[-19,0],[-47,0],[-37,0],[-26,0],[-26,0],[-23,0],[-21,0],[-41,0],[-70,0],[-20,0],[-19,0],[-13,0],[-46,1],[-43,-1],[-39,1],[-33,-1],[-39,-1],[-23,1],[-31,0],[-19,-1],[-14,0],[-21,1],[-24,0],[-48,1],[-31,0],[-43,0],[-11,0],[-27,0],[-2,0],[-15,0],[-14,0],[-80,0],[-12,0],[-13,0],[-13,0],[-28,1],[-18,1],[-31,-1],[-22,0],[-14,0],[-67,-1],[-35,0],[-58,0],[-19,0],[-54,0],[-13,0],[-77,-1],[-33,0],[-57,0],[-74,0],[-23,0],[-22,0],[-13,-1],[-34,1],[-35,-1],[-31,1],[-40,0],[-18,-1],[-17,1],[-12,-1],[-14,-1],[-5,1],[-16,1],[-76,0],[-30,0],[-14,0],[-33,0],[-56,1]],[[60964,34838],[-23,1],[-20,-1],[-42,0],[-31,0],[-15,0],[-22,1],[-37,0],[-25,0],[-20,-2],[-19,0],[-50,0]],[[60660,34837],[0,81],[0,69],[-1,151],[-2,157],[0,41],[0,197],[1,57],[0,7],[0,46],[-1,36],[0,65],[-1,63],[0,4],[0,34],[0,87],[-1,108],[0,66],[0,66],[0,68],[0,75],[0,62],[0,61],[-1,62],[0,42],[0,40],[0,43],[-1,64],[0,33],[0,49],[2,49],[3,60],[3,39],[2,46],[3,43],[2,48],[1,33],[2,47],[2,37],[2,41],[1,47],[0,102],[0,135],[-6,86],[-3,39],[-3,42],[-5,83],[0,71],[0,38],[0,39],[0,53],[0,48],[0,4],[0,42],[-1,41],[1,59],[0,43],[0,54],[1,50],[0,50],[-1,78],[0,50],[0,102],[0,67],[1,67],[0,134],[0,99],[1,47],[-1,49],[1,47],[0,39],[0,67],[0,47],[0,77],[1,61],[0,50],[2,77],[0,62],[0,85],[0,34],[0,35],[1,67],[0,38],[1,34],[0,58],[1,35],[0,34],[0,39],[0,38],[1,44],[0,84],[0,36],[1,51],[1,190],[0,35],[0,57],[0,45],[1,39],[1,148],[0,4],[0,64],[1,59],[0,55],[0,29],[0,45],[1,81],[1,104],[0,142],[1,60],[1,104],[1,75],[-1,47],[1,83],[0,48],[0,34],[0,35],[0,60],[0,35],[0,45],[0,48],[0,48],[0,51],[0,61],[0,100],[1,58],[0,48],[0,33],[0,53],[1,38],[0,44],[0,51],[0,38],[0,39],[0,18],[1,102],[0,67],[0,42],[1,44],[-1,36],[1,57],[0,43],[1,101],[0,72],[1,117],[1,43],[0,34],[0,59],[0,79],[0,48],[1,75],[0,65],[0,54],[0,36],[-1,40],[0,49],[0,35],[-2,286],[0,242],[1,40],[0,52],[-2,158],[0,61],[0,140],[5,249],[8,429],[2,88],[3,175],[2,106],[6,357]],[[60660,34837],[-21,1],[-27,1],[-65,1],[-93,1],[-106,0],[-55,1],[-11,0],[-70,-1],[-50,-1],[-38,4],[-25,-1],[-13,1],[-26,0],[-21,0],[-16,0],[-19,0],[-31,0],[-16,0],[-26,1],[-20,0],[-15,0],[-15,0],[-13,-6],[-12,2],[-46,0],[-27,1],[-15,0],[-37,1],[-74,-3],[-69,3],[-30,1],[-17,1],[-12,1],[-99,0],[-38,-8],[-18,9],[-14,-1],[-29,0],[-44,0],[-38,0],[-37,-1],[-35,1],[-16,0],[-50,1],[-66,0],[-18,0],[-6,0],[-16,0],[-94,-1],[-16,-2],[-24,1],[-37,-1],[-36,0],[-12,0],[-19,1],[-6,0],[-9,0],[-17,0],[-40,0],[-45,0],[-18,0],[-16,0],[-28,0],[-19,0],[-16,0],[-35,-1],[-19,0],[-24,1],[-32,0],[-29,0],[-28,0],[-11,0],[-21,1],[-38,0],[-21,0],[-15,0],[-24,0],[-44,1],[-14,0],[-24,0],[-22,-1],[-19,1],[-49,0],[-24,0],[-18,0],[-17,0],[-15,0],[-26,0],[-53,1],[-16,0],[-14,0],[-64,1],[-14,0],[-23,-1],[-54,0],[-41,1],[-10,0],[-18,0],[-33,0],[-17,2],[-15,8],[-1,0],[-26,-10],[-38,1],[-21,0],[-17,0],[-33,0],[-43,0],[-13,0],[-14,0],[-12,0],[-28,0],[-29,1],[-42,0],[-15,0],[-24,0],[-67,0],[-29,-1],[-48,1],[-61,0],[-53,0],[-33,0],[-16,0],[-14,0],[-18,0],[-21,0],[-36,0],[-27,0],[-4,0],[-73,1],[-16,0],[-16,0],[-35,1],[-49,0],[-31,0],[-28,0],[-28,-1],[-21,0],[-25,0],[-37,0],[-15,0],[-36,0],[-18,-1],[-11,-1],[-24,-3],[-15,-1],[-66,0],[-28,-1],[-24,1],[-50,-1],[-52,0],[-30,0],[-29,0],[-118,5],[-17,-1],[-25,0],[-38,0],[-38,-1],[-35,1],[-42,-1],[-12,1],[-14,0],[-34,0],[-57,0],[-12,0],[-27,0],[-45,-1],[-34,1],[-14,0],[-2,0],[-61,0],[-36,0]],[[92801,46290],[4,-41],[5,-53],[0,-3],[4,-42],[1,-6],[5,-38],[8,-41],[6,-29],[11,-48],[4,-10],[5,-18],[10,-35],[23,-94],[6,-37],[1,-14],[4,-36],[3,-40],[1,-11],[2,-39],[0,-53],[-11,-101],[-6,-38],[-6,-30],[0,-1],[-7,-31],[-9,-36],[-14,-39],[-3,-8],[-21,-47],[-10,-19],[-5,-9],[-1,-2],[-2,-1],[-23,-28],[-11,-8],[-15,-14],[-23,-21],[-27,-9],[-14,-6],[-19,-17],[-15,-11],[-12,-10],[-15,-20],[-22,-43],[-8,-26],[-9,-27],[-11,-42],[-3,-30],[-3,-25],[-1,-7],[0,-50],[2,-40],[0,-16],[1,-1],[4,-31],[1,-10],[6,-45],[4,-19],[5,-20],[21,-81],[9,-26],[16,-50],[12,-32],[29,-71],[4,-11],[9,-20],[11,-21],[17,-32],[13,-27],[13,-24],[15,-31],[4,-8],[7,-8],[6,-7],[13,-18],[24,-46],[15,-17],[26,-40],[13,-18],[14,-28],[5,-9],[8,-9],[17,-19],[19,-25],[4,-6],[4,-2],[24,-14],[15,-14],[42,-10],[25,-7],[16,5],[14,0],[7,0],[8,3],[12,4],[20,7],[14,5],[28,15],[11,4],[28,8],[21,1],[13,-8],[17,-1],[10,-6],[5,-3],[7,-2],[11,-2],[11,-10],[16,-5],[13,-16],[15,-11],[4,-3],[3,-4],[10,-13],[8,-8],[5,-5],[2,-2],[1,-2],[7,-6],[6,-6],[8,-17],[3,-6],[5,-7],[14,-18],[11,-30],[1,-2],[2,-4],[21,-40],[18,-43],[10,-34],[11,-32],[8,-27],[7,-28],[3,-12],[4,-22],[5,-32],[8,-53],[8,-52],[0,-1],[5,-40],[1,-9],[4,-49],[3,-42],[2,-50],[1,-43],[1,-41],[-2,-30],[0,-3],[-1,-55],[-1,-8],[-3,-26],[-3,-41],[-10,-54],[-9,-42],[-7,-29],[-11,-26],[-6,-21],[-2,-8],[-17,-39],[-10,-18],[-6,-12],[-8,-14],[-10,-17],[-11,-19],[-2,-2],[-19,-27],[-14,-20],[-36,-44],[-6,-8],[-8,-8],[-23,-25],[-11,-13],[-15,-13],[-4,-4],[-22,-21],[-16,-14],[-18,-22],[-16,-11],[-12,-10],[-8,-7],[-5,-4],[-10,-6],[-11,9],[-14,12],[-11,18],[-6,11],[-7,13],[-17,31],[-14,23],[-31,54],[23,68],[17,49],[15,43],[7,25],[6,37],[6,43],[2,36],[8,102],[1,57],[7,26],[2,52],[1,68],[-2,37],[-5,31],[-14,42],[-15,1],[-12,1],[-14,2],[-13,2],[-14,1],[-20,4],[-74,-6],[-24,-26],[-26,-27],[-20,-23],[-14,-15],[-4,-34],[-4,-38],[-6,-48],[-4,-42],[-5,-44],[0,-60],[0,-2],[0,-177],[11,-125],[18,-34],[12,-23],[2,-3],[12,-26],[68,-133],[12,-22],[12,-25],[2,-4],[10,-17],[12,-18],[-12,-11],[-11,-21],[-14,-21],[-9,-25],[-13,-19],[-8,-24],[-2,-7],[-10,-43],[-1,-5],[-9,-74],[2,-54],[2,-54],[2,-21],[2,-13],[1,-24],[1,-13],[3,-38],[7,-47],[1,-13],[5,-34],[8,-53],[5,-34],[8,-39],[10,-57],[1,-4],[11,-56],[7,-33],[8,-31],[13,-53],[2,-9],[8,-31],[7,-33],[7,-42],[7,-53],[4,-56],[2,-51],[0,-64],[1,-36],[0,-36],[-2,-15],[-3,-27],[-1,-17],[-2,-20],[-5,-48],[-7,-33],[-4,-33],[-3,-15],[-7,-30],[-7,-38],[-18,-58],[-17,-49],[-5,-11],[-17,-41],[-9,-21],[-11,-25],[-15,-41],[-9,-21],[-7,-32],[-11,-44],[-9,-28],[-4,-19],[-4,-17],[-5,-33],[-3,-35],[-5,-34],[-2,-55],[-5,-34],[-2,-33],[1,-55],[0,-39],[3,-33],[-3,-33],[4,-35],[4,-65],[6,-31],[5,-31],[5,-36],[7,-36],[9,-32],[11,-41]],[[92964,39637],[-18,5],[-1,0],[-11,-1],[-26,1],[-25,1],[-13,1],[-22,-3],[-25,0],[-18,2],[-12,2],[-13,0],[-1,0],[-10,0],[-12,-1],[-13,-2],[-13,-1],[-24,-1],[-24,0],[-15,-1],[-12,0],[-36,-1],[-19,0],[-28,0],[-14,-1],[-13,0],[-15,0],[-13,0],[-12,0],[-16,0],[-17,0],[-11,0],[-16,0],[-16,-1],[-23,0],[-15,0],[-18,0],[-22,-1],[-12,0],[-16,0],[-15,0],[-19,-1],[-23,0],[-21,0],[-13,0],[-13,-1],[-12,0],[-14,0],[-15,0],[-15,-1],[-16,0],[-22,-1],[-18,0],[-17,0],[-2,0],[-10,0],[-12,0],[-14,0],[-23,0],[-12,0],[-15,0],[-13,1],[-7,0],[-6,0],[-15,0],[-17,0],[-27,0],[-36,1],[-30,0],[-16,-3],[-19,0],[-17,0],[-16,2],[-13,-1],[-12,0],[-25,1],[-16,0],[-16,0],[-15,0],[-18,1],[-17,-1],[-14,0],[-12,0],[-17,-1],[-8,0],[-4,0],[-17,1],[-15,0],[-23,0],[-15,0],[-26,0],[-15,0],[-31,0],[-23,0],[-17,0],[-40,0],[-21,1],[-28,-1],[-31,1],[-20,0],[-13,0],[-33,0],[-15,0],[-40,1],[-15,0],[-12,-1],[-14,0],[-13,0],[-30,0],[-14,0],[-19,0],[-24,0],[-12,0],[-17,-3],[-40,-2],[-17,0],[-9,0],[-4,0],[-1,0],[-13,0],[-12,0],[-14,0],[-9,0],[-4,0],[-24,0],[-14,1],[-12,2],[-38,-2],[-51,-2],[-31,1],[-18,1],[-33,2],[-12,0],[-15,0],[-20,2],[-12,0],[-18,0],[-22,1],[-22,0],[-21,1],[-15,0],[-2,0],[-21,0],[-12,0],[-36,0],[-13,0],[-28,0],[-19,0],[-29,0],[-18,0],[-14,-1],[-11,0],[-21,0],[-15,0],[-18,-1],[-19,0],[-14,-1],[-15,0],[-18,0],[-15,0],[-17,-1],[-19,0],[-13,-1],[-20,0],[-13,0],[-12,-1],[-12,0],[-13,0],[-14,0],[-47,1],[-16,-1],[-14,0],[-19,0],[-12,1],[-25,-1],[-23,0],[-12,1],[-13,0],[-12,0],[-49,-1],[-37,-1],[-21,-1],[-15,0],[-28,-1],[-20,0],[-15,1],[-41,-2],[-26,-1],[-18,0],[-33,-1],[-22,0],[-22,-1],[-15,0],[-31,-1],[-35,-1],[-8,0],[-19,0],[-15,0],[-32,1],[-28,-1],[-118,1],[-56,0],[-13,-1],[-24,0],[-17,0],[-27,0],[-29,-1],[-40,0],[-18,0],[-12,0],[-19,0],[-24,0],[-20,0],[-13,0],[-30,1],[-12,-1],[-13,1],[-19,1],[-14,-1],[-98,-5],[-48,-2],[-39,-1],[-3,0],[-45,0],[-18,1],[-12,0],[-14,0],[-30,3],[-26,-3],[-29,-3],[-13,0],[-12,-1],[-12,0],[-2,0],[-13,0],[-11,0],[-2,0],[-18,-1]],[[22888,33414],[-8,-51]],[[22880,33363],[-793,1],[-787,0],[-77,0],[-131,0],[-206,1],[-65,0],[-515,0],[-1138,1],[-38,0],[-132,0],[-1354,1],[-810,0],[-294,0],[-161,-1]],[[92964,39637],[15,-59],[16,-34],[10,-27],[12,-24],[19,-21],[13,-21],[16,-5],[12,-10],[11,-5],[2,-1],[13,0],[13,-8],[18,2],[12,-3],[23,5],[16,1],[3,0],[7,1],[28,2],[12,1],[19,4],[16,6],[29,12],[1,0],[34,13],[26,14],[12,3],[13,9],[13,9],[2,1],[54,29],[12,4],[17,5],[11,1],[16,3],[25,5],[11,2],[3,0],[12,2],[20,0],[22,3],[4,-1],[17,-3],[6,-1],[17,-1],[8,-3],[4,-2],[12,-4],[11,-8],[3,-2],[5,-2],[9,-4],[14,-5],[9,-8],[4,-4],[18,-9],[13,-10],[21,-19],[8,-9],[10,-11],[7,-11],[3,-5],[12,-15],[7,-11],[11,-21],[11,-27],[13,-31],[8,-26],[3,-14],[5,-12],[5,-12],[13,-75],[1,-9],[3,-39],[2,-37],[0,-57],[-4,-60],[-8,-44],[-8,-31],[-11,-29],[-12,-27],[-18,-27],[-11,-12],[-22,-14],[-9,-4],[-2,-1],[-30,-5],[-10,3],[-20,8],[-2,1],[-3,1],[-8,4],[-5,2],[-18,15],[-19,12],[-27,19],[-13,13],[-18,9],[-4,0],[-11,0],[-3,0],[-19,-4],[-19,-12],[-3,-1],[-18,-21],[-19,-26],[-16,-32],[-12,-29],[-6,-16],[-14,-43],[-7,-21],[-9,-34],[-6,-36],[-11,-51],[-7,-48],[-4,-24],[-3,-37],[-4,-47],[-2,-34],[-2,-53],[3,-57],[0,-38],[4,-43],[0,-12],[2,-27],[3,-33],[3,-40],[10,-62],[7,-35],[5,-27],[1,-5],[0,-3],[1,-3],[7,-30],[1,-2],[11,-52],[9,-32],[1,-2],[12,-43],[9,-28],[10,-33],[9,-36],[12,-38],[9,-28],[2,-5],[14,-53],[7,-31],[1,-3],[6,-31],[6,-29],[6,-43],[10,-60],[5,-49],[5,-44],[3,-62],[0,-101],[-5,-115],[-3,-47],[0,-38],[5,-113],[6,-57],[5,-69],[5,-43],[5,-47],[5,-46],[9,-57],[6,-58],[3,-36],[4,-48],[1,-48],[-6,-117],[-5,-42],[-6,-49],[-10,-61],[-12,-51],[-13,-41],[-39,-101],[-14,-29],[-4,-8],[-7,-21],[-16,-33],[-12,-27],[-28,-64],[-22,-60],[-10,-36],[-9,-38],[-9,-58],[-5,-34],[0,-6],[-1,-19],[-2,-48],[2,-65],[3,-28],[3,-35],[7,-52],[4,-64],[15,-24]],[[93467,35059],[-11,12],[-11,16],[-2,4],[-2,2],[-11,18],[-10,16],[-12,18],[-10,17],[-4,7],[-5,8],[-16,24],[-8,14],[-7,12],[-17,12],[-24,11],[-16,5],[-12,3],[-18,4],[-20,-2],[-8,-3],[-13,-5],[-17,-2],[-14,-7],[-24,-3],[-23,-3],[-15,-3],[-15,1],[-10,6],[-7,5],[-15,14],[-24,14],[-21,6],[-18,-4],[-22,-15],[-18,-13],[-4,-2],[-17,-3],[-22,-2],[-18,3],[-10,-2],[-3,0],[-12,-1],[-13,-6],[-12,-4],[-3,-2],[-10,-5],[-14,-8],[-16,-8],[-6,-3],[-12,3],[-6,1],[-16,3],[-9,2],[-22,6],[-19,1],[-22,-8],[-3,-2],[-9,-6],[-18,-3],[-12,11],[-13,17],[-9,13],[-9,12],[-19,22],[-13,-3],[-12,-2],[-12,6],[-11,16],[-19,13],[-12,2],[-15,-2],[-13,-6],[-15,-11],[-12,-5],[-19,-16],[-13,-6],[-27,-45],[-18,-52],[-46,-62],[-40,-43],[-37,-29],[-24,3],[-15,2],[-22,2],[-3,3],[-49,47],[-43,72],[-12,21],[-38,45],[-2,2],[-1,1],[-1,2],[-31,67],[-24,4],[-17,1],[-12,1],[-30,2],[-29,2],[-13,1],[-13,6],[-33,15],[-24,15],[-7,4],[-57,36],[-27,17],[-25,28],[-4,6],[-39,44],[-16,-1],[-12,-1],[-19,-2],[-24,-2],[-15,-1],[-13,-1],[-1,0],[-49,-4],[-20,-2],[-21,-2],[-18,-1],[-18,-2],[-28,-2],[-77,-68],[-18,-32],[-13,-12],[-14,-23],[-12,-22],[-18,-18],[-28,-11],[-10,-29],[-4,-13],[-10,-18],[-35,-19],[-27,-5],[-18,-4],[-72,-56],[-3,-3],[-30,-31],[-39,-40],[-16,-1],[-14,0],[-10,-1],[-21,10],[-13,-7],[-37,-43],[-2,-4],[-72,-114],[-15,-51],[-17,-61],[-15,-33],[-12,-27],[-9,-22],[-13,-38],[-10,-48],[-2,-8],[-12,-40],[-20,-19],[-7,-10],[-3,-5],[-20,-34],[-17,-39],[-27,-40],[-14,-26],[-24,-51],[-70,-179],[-1,-3],[-16,-36],[-13,-30],[-7,-30],[-17,-80],[-37,-115],[-34,-25],[-15,-8],[-50,-25],[-16,-26],[-22,-36],[-11,-19],[-11,-13],[-36,-35],[-34,-33],[-106,-105],[-73,-55],[-21,-35],[-61,-97],[-16,-15],[-15,-15],[-37,-36],[-16,-4],[-6,-1],[-23,-6],[-63,-71],[-30,-40],[-13,-18],[-11,-14],[-4,-1],[-12,-7],[-13,-6],[-15,-7],[-15,-8],[-19,-9],[-51,-6],[-13,11],[-36,33],[-12,19],[-22,35],[-4,7],[-13,26],[-22,45],[-12,14],[-12,12],[-15,16],[-2,16],[-2,17],[-7,43],[-6,41],[-6,38],[-9,59],[-28,77],[-11,47],[-18,80],[-29,51],[-11,18],[-23,41],[-8,24],[-22,27],[-16,12],[-20,10],[-20,4],[-11,0],[-28,1],[-23,-4],[-16,-3],[-20,-2],[-19,3],[-53,14],[-1,1],[-56,18],[-21,7],[-36,19],[-52,32],[-14,5],[-18,20],[-4,5],[-26,30],[-32,45],[-16,15],[-15,12],[-29,31],[-4,5],[-30,43],[-1,1],[-17,31],[-13,28],[-11,28],[-13,29],[-15,32],[-12,28],[-10,20],[-24,47],[-11,25],[-5,14],[-12,34],[-14,38],[-14,37],[-10,30],[-18,66],[-13,43],[-2,7],[-9,29]],[[71206,34835],[0,-53],[0,-76],[0,-75],[0,-76],[0,-152],[0,-52],[0,-12],[0,-28],[1,-40],[-1,-48],[0,-90],[1,-110],[-1,-75],[1,-84],[0,-218],[0,-76],[0,-189],[0,-39],[0,-58],[0,-102],[0,-34],[0,-81],[0,-53],[0,-115],[0,-113],[0,-38],[0,-37],[0,-76],[0,-76],[0,-142],[0,-163],[1,-75],[0,-76],[0,-61],[0,-107],[0,-60],[0,-75],[0,-49],[0,-103],[0,-76],[0,-76],[0,-44],[0,-108],[0,-75],[0,-300],[0,-152],[0,-187],[0,-53],[0,-44],[0,-46],[0,-159],[0,-76],[0,-7],[0,-68],[0,-75],[0,-99],[0,-51],[0,-76],[0,-151],[0,-77],[0,-75],[0,-48],[0,-5],[0,-73],[0,-102],[0,-16],[0,-59],[1,-75],[0,-96],[0,-61],[0,-135],[0,-46],[0,-82],[0,-165],[0,-44],[0,-11],[0,-27],[1,-83],[0,-82],[0,-51],[0,-238],[0,-58],[1,-67],[0,-82],[0,-34],[0,-48],[0,-163],[0,-36],[0,-146],[0,-44],[0,-44],[0,-19],[0,-20],[0,-85],[0,-81],[0,-4],[0,-33],[1,-70],[-1,-139],[1,-55],[0,-64],[0,-94],[-1,-38],[0,-36],[1,-63],[-1,-193],[0,-82],[0,-75],[0,-47],[0,-118],[0,-90],[0,-83],[0,-54],[0,-34],[0,-113],[0,-52],[0,-84],[0,-82],[0,-41],[0,-124],[0,-99],[0,-65],[0,-51],[0,-113],[0,-149],[0,-51],[0,-52],[0,-57],[0,-83],[0,-100],[0,-65],[1,-44],[0,-10],[0,-25],[1,-58],[-1,-40],[0,-155],[0,-86],[0,-78],[0,-133],[0,-120],[0,-82],[0,-165],[0,-97],[0,-49]],[[71212,23252],[-41,0],[-102,0],[-64,-1],[-20,0],[-108,0],[-34,0],[-22,0],[-22,0],[-12,0],[-45,0],[-22,0],[-28,1],[-22,-1],[-24,0],[-13,0],[-15,0],[-23,0],[-26,0],[-72,1],[-17,-1],[-26,0],[-35,0],[-67,0],[-12,0],[-73,-1],[-31,0],[-39,1],[-40,-1],[-23,1],[-12,-1],[-55,0],[-36,0],[-31,0],[-77,0],[-19,0],[-52,0],[-60,-1],[-42,0],[-45,0],[-18,0],[-40,0],[-23,0],[-19,0],[-21,1],[-59,-1],[-40,-2],[-48,1],[-58,0],[-12,0],[-70,0],[-44,1],[-2,0],[-15,-1],[-27,0],[-12,2],[-14,-1],[-134,-1],[-13,0],[-27,1],[-16,0],[-12,0],[-50,0],[-16,0],[-25,-1],[-33,0],[-22,0],[-12,0],[-91,0],[-16,0],[-41,0],[-51,-2],[-27,1],[-17,0],[-22,-1],[-16,0],[-13,1],[-26,0],[-21,-1],[-21,0],[-13,1],[-13,0],[-20,1],[-12,-3],[-12,1],[-27,1],[-15,0],[-15,1],[-19,-1],[-20,1],[-13,0],[-66,0],[-18,0],[-16,0],[-22,-1],[-37,0],[-15,0],[-25,0],[-16,0],[-19,0],[-18,0],[-27,0],[-20,0],[-22,0],[-17,0],[-27,0],[-33,1],[-13,-1],[-21,1],[-16,0],[-43,0],[-13,-1],[-19,0],[-23,-1],[-11,1],[-65,-1],[-14,1],[-19,-1],[-33,0],[-17,0],[-40,0],[-29,0],[-17,0],[-22,0],[-24,0],[-20,0],[-31,0],[-17,0],[-40,0],[-17,0],[-29,0],[-16,-1],[-16,1],[-37,-1],[-27,1],[-16,-1],[-18,0],[-33,0],[-13,0],[-46,0],[-36,0],[-97,0],[-13,0],[-27,0],[-33,0],[-72,-1],[-48,0],[-48,0],[-17,0],[-41,0],[-39,0],[-49,0],[-49,0],[-39,0],[-20,0],[-22,0],[-15,0],[-32,0],[-4,0],[-30,0],[-28,0],[-14,0],[-43,0],[-42,-1],[-43,0],[-42,0],[-43,0],[-23,0],[-20,0]],[[66040,23243],[-29,0],[-26,0]],[[65985,23243],[0,122],[0,137],[0,3],[0,37],[0,62],[0,39],[1,83],[-1,42],[0,158],[0,60],[1,223],[0,230],[0,40],[0,43],[0,107],[0,62],[0,247],[0,128],[0,61],[0,47],[0,228],[0,68],[0,186],[0,120],[0,68],[0,55],[0,34],[0,96],[0,110],[1,35],[0,163],[0,111],[0,106],[0,67],[0,122],[0,118],[0,125],[0,59],[0,56],[0,134],[0,1],[1,52],[0,36],[0,1],[0,134],[0,65],[0,63],[-1,36],[1,86],[0,2],[0,79],[0,40],[0,48],[0,80],[0,36],[0,41],[0,35],[0,95],[0,112],[0,37],[0,42],[0,179],[0,177],[0,69],[0,212],[0,42]],[[93467,35059],[26,-45],[26,-66],[8,-36],[16,-47],[6,-17],[7,-19],[10,-19],[19,-33],[11,-19],[20,-39],[15,-29],[17,-42],[12,-27],[10,-24],[4,-10],[6,-19],[9,-51],[2,-11],[3,-33],[2,-41],[3,-36],[2,-59],[-1,-43],[0,-46],[-3,-38],[-2,-46],[-8,-57],[-8,-36],[-7,-30],[-8,-30],[-11,-40],[-9,-29],[-7,-27],[-14,-50],[-5,-36],[-6,-33],[-13,-60],[-8,-53],[-3,-34],[-6,-50],[-2,-34],[2,-44],[3,-37],[6,-53],[0,-2],[7,-37],[1,-5],[2,-11],[5,-37],[4,-15],[4,-15],[8,-24],[10,-31],[8,-26],[5,-15],[5,-17],[12,-24],[15,-25],[12,-21],[16,-24],[16,-22],[14,-21],[19,-25],[21,-24],[13,-13],[25,-22],[22,-16],[34,-23],[18,-24],[5,-7],[13,-23],[12,-22],[14,-25],[14,-29],[26,-48],[22,-50],[17,-51],[11,-45],[9,-48],[6,-33],[8,-55],[4,-45],[2,-15],[2,-51],[-3,-52],[-4,-52],[-4,-62],[-2,-57],[-4,-60],[-11,-58],[-14,-62],[-17,-75],[-12,-56],[-6,-28],[-17,-76],[-16,-86],[-5,-74],[-5,-76],[-6,-68],[-7,-92],[-3,-45],[0,-41],[1,-56],[0,-52],[5,-89],[7,-82],[8,-97],[7,-90],[16,-102],[17,-69],[22,-78],[26,-74],[32,-64],[34,-72],[12,-22],[21,-39],[38,-76],[29,-67],[22,-62],[9,-41],[8,-35],[22,-91],[13,-82],[4,-72],[-1,-68],[-6,-70],[-8,-82],[-16,-81],[-22,-81],[-22,-65],[-22,-47],[-20,-33],[-18,-26],[-24,-32],[-19,-24],[-32,-18],[-34,-25],[-10,-6],[-6,-3],[-13,-5],[-3,0],[-17,-10],[-23,-11],[-20,-15],[-23,-32],[-20,-32],[-18,-34],[-9,-35],[-12,-39],[-11,-43],[-10,-47],[-4,-50],[-1,-17],[-2,-24],[-2,-23],[0,-41],[0,-5],[1,-15],[0,-15],[2,-22],[4,-38],[4,-38],[1,-9],[5,-41],[11,-60],[12,-44],[8,-36],[10,-33],[9,-42],[9,-37],[7,-33],[9,-55],[6,-45],[9,-50],[6,-43],[5,-57],[8,-52],[4,-39],[1,-37],[-2,-50],[0,-52],[-4,-65],[-5,-47],[-1,-13],[-5,-42],[-8,-37],[-7,-42],[-6,-29],[-6,-20],[-7,-26],[-5,-27],[-1,-5],[-10,-45],[-11,-51],[-5,-38],[-5,-39],[-1,-2],[-1,-37],[-3,-46],[-1,-50],[1,-49],[3,-45],[7,-74],[4,-29],[1,-7],[0,-6],[2,-41],[6,-32],[6,-29],[4,-23],[8,-38],[1,-10],[17,-78],[9,-42],[8,-41],[1,-3],[19,-86],[12,-56],[7,-44],[8,-50],[3,-38],[2,-33],[0,-2],[-1,-60]],[[93986,26089],[-1,0],[-14,0],[-6,0],[-183,6],[-20,1],[-13,0],[-40,0],[-88,2],[-55,1],[-28,0],[-19,0],[-16,0],[-74,0],[-5,0],[-15,3],[-15,0],[-20,1],[-13,3],[-17,-4],[-18,-1],[-16,-2],[-101,1],[-29,0],[-25,0],[-20,0],[-36,1],[-4,0],[-43,-1],[-5,0],[-12,0],[-19,1],[-17,0],[-14,-1],[-18,0],[-13,-1],[-24,0],[-51,1],[-18,0],[-27,0],[-38,-1],[-21,0],[-15,0],[-14,0],[-16,0],[-21,-1],[-45,0],[-89,2],[-23,0],[-15,0],[-53,0],[-48,-1],[-37,-1],[-23,0],[-27,0],[-24,1],[-24,0],[-20,0],[-24,1],[-12,0],[-22,0],[-19,-1],[-27,-1],[-10,0],[-13,0],[-36,0],[-18,1],[-11,0],[-3,-1],[-55,0],[-20,0],[-1,0],[-18,-1],[-12,0],[-17,1],[-14,1],[-27,1],[-21,0],[-39,-5],[-10,-1],[-14,-1],[-92,6],[-279,-1],[-55,0],[-61,0],[-13,0],[-25,0],[-26,0],[-18,0],[-20,0],[-28,1],[-24,-1],[-13,0],[-40,0],[-15,1],[-12,0],[-22,1],[-11,-1],[-29,0],[-13,0],[-16,1],[-13,-2],[-16,0],[-20,1],[-13,-1],[-27,1],[-14,0],[-35,0],[-14,0],[-14,0],[-19,0],[-17,0],[-14,-1],[-12,0],[-18,0],[-14,0],[-11,0],[-16,0],[-17,0],[-18,1],[-226,-2],[-53,0],[-41,-1],[-40,0],[-36,-1],[-19,0],[-25,-1],[-24,0],[-21,0],[-13,0],[-115,0],[-14,0],[-27,0],[-1,0],[-23,0],[-23,0],[-15,0],[-21,0],[-26,-1],[-43,0],[-29,-1],[-14,0],[-25,0],[-14,0],[-24,0],[-18,0],[-18,-1],[-20,1],[-21,-1],[-21,0],[-22,0],[-14,0],[-22,0],[-12,0],[-12,-1],[-21,0],[-34,0],[-15,0],[-14,0],[-19,-1],[-42,0],[-71,-2],[-16,0],[-17,-1],[-27,1],[-56,0],[-49,-1],[-22,-1],[-40,1],[-78,-1],[-21,0],[-119,-1],[-57,0],[-17,-1],[-31,0],[-38,-1],[-13,-1],[-34,0],[-17,-1],[-13,0],[-82,-1],[-32,1],[-105,-2],[-23,1],[-50,0],[-19,0],[-14,1],[-116,-1],[-12,1],[-22,0],[-12,0],[-22,1],[-61,3],[-18,2],[-16,2],[-18,2],[-22,1],[-51,1],[-24,0],[-13,0],[-13,0],[-19,0],[-33,1],[-17,0],[-15,0],[-32,0],[-32,0],[-20,0],[-21,0],[-17,1],[-31,0],[-12,0],[-21,0],[-19,0],[-20,0],[-25,0],[-15,-1],[-16,0],[-22,0],[-15,1],[-13,0],[-32,2],[-17,1],[-25,0],[-18,-1],[-34,-1],[-16,1],[-38,-1],[-25,0],[-13,0],[-24,0],[-13,0],[-12,0],[-16,0],[-20,0],[-38,-1],[-14,0],[-1,0],[-45,0],[-13,0],[-13,0],[-12,0],[-21,0],[-17,1],[-17,0],[-11,-1],[-16,1],[-15,-1],[-18,0],[-20,0],[-18,0],[-45,0],[-15,0],[-15,0],[-14,0],[-12,0],[-16,0],[-32,0],[-17,0],[-27,0]],[[86786,26094],[0,68],[0,37],[1,53],[-1,85],[0,35],[0,47],[1,34],[-1,50],[1,73],[0,67],[0,402],[0,10],[0,25],[0,132],[0,94],[0,94],[0,50],[0,48],[0,44],[0,245],[0,238],[0,101],[0,48],[0,95],[-1,42],[1,223],[0,354],[0,34],[0,44],[-2,44],[1,45],[1,70],[0,22],[-1,16],[1,52],[0,63],[0,171],[0,54],[0,86],[0,161],[0,68],[0,35],[0,50],[0,53],[0,33],[0,131],[0,78],[0,86],[0,58],[0,54],[0,58],[0,51],[0,43],[-1,38],[1,50],[0,33],[0,17],[0,241],[0,95],[0,40],[-1,143],[0,41],[0,38],[0,64],[0,77],[0,37],[0,29],[0,4],[0,34],[0,62],[0,54],[0,170],[0,8],[1,60],[-1,58],[0,92],[0,56],[0,53],[0,164],[-1,82],[0,49],[0,44],[0,80],[0,115],[0,39],[0,61],[0,78],[0,281],[0,49],[0,40],[0,61],[0,51],[0,385],[0,25],[0,38],[0,35]],[[76445,34847],[0,-172],[0,-341],[0,-45],[0,-39],[0,-49],[0,-48],[0,-117],[0,-108],[0,-55],[0,-53],[0,-44],[0,-45],[0,-53],[0,-59],[0,-59],[0,-41],[0,-40],[0,-81],[0,-46],[0,-45],[0,-55],[0,-61],[0,-57],[0,-35],[0,-47],[0,-56],[0,-38],[0,-43],[0,-46],[0,-63],[0,-59],[3,-345],[0,-105],[0,-22],[0,-82],[-3,-110],[0,-45],[0,-39],[0,-61],[0,-36],[-1,-89],[1,-42],[0,-107],[0,-154],[-1,-43],[1,-78],[0,-65],[1,-64],[-1,-63],[0,-71],[-1,-45],[0,-56],[0,-50],[-1,-76],[2,-185],[-1,-46],[0,-187],[0,-72],[0,-112],[0,-54],[0,-78],[0,-77],[0,-41],[0,-24],[0,-11],[0,-45],[-1,-43],[0,-48],[0,-95],[0,-10],[0,-147],[0,-45],[0,-46],[0,-71],[0,-71],[0,-60],[0,-65],[0,-38],[0,-47],[0,-63],[0,-68],[0,-68],[0,-53],[0,-74],[0,-76],[0,-91],[0,-61],[-1,-71],[0,-44],[0,-61],[0,-160],[0,-64],[0,-47],[0,-36],[0,-60],[0,-77],[0,-69],[0,-67],[0,-45],[0,-109],[0,-73],[0,-51],[0,-56],[0,-41],[0,-53],[0,-70],[0,-33],[0,-1],[-2,-33],[3,-34],[-1,-35],[0,-52],[0,-67],[0,-81],[0,-100],[0,-98],[0,-46],[0,-48],[0,-9],[0,-41],[0,-60],[0,-103],[0,-90],[0,-77],[0,-88],[0,-83],[0,-74],[0,-94],[0,-48],[0,-48],[0,-57],[0,-47],[0,-49],[0,-48],[0,-60],[0,-84],[0,-49],[0,-48],[0,-62],[0,-34],[0,-52],[0,-73],[0,-48],[0,-44],[0,-106],[0,-44],[0,-41],[0,-42],[0,-43],[0,-43],[0,-41],[0,-55],[0,-62],[0,-81],[0,-112],[0,-75],[0,-160],[0,-76],[0,-85],[0,-34],[0,-51],[0,-4],[0,-47],[0,-77],[0,-73],[0,-107],[0,-143],[0,-70],[0,-33],[0,-40],[0,-43],[0,-88],[0,-45]],[[76442,23254],[-30,-2],[-31,-2],[-18,1],[-28,1],[-112,2],[-67,0],[-38,0],[-41,0],[-79,0],[-15,1],[-60,0],[-68,0],[-15,0],[-14,0],[-41,-1],[-36,1],[-67,0],[-31,0],[-41,0],[-43,-1],[-37,0],[-31,0],[-27,0],[-68,1],[-21,0],[-19,0],[-14,0],[-36,0],[-187,0],[-38,1],[-2,0],[-103,-4],[-37,-1],[-46,5],[-108,-1],[-47,0],[-49,1],[-13,-1],[-23,0],[-22,0],[-44,0],[-13,-3],[-20,0],[-30,1],[-35,3],[-22,0],[-19,1],[-26,0],[-21,0],[-15,0],[-29,1],[-22,0],[-16,0],[-20,0],[-17,0],[-31,0],[-11,-1],[-12,1],[-14,0],[-20,0],[-22,0],[-22,0],[-15,0],[-18,0],[-36,0],[-16,0],[-32,0],[-13,0],[-14,-1],[-41,1],[-21,-1],[-20,1],[-26,0],[-20,0],[-15,0],[-31,0],[-1,0],[-12,0],[-23,0],[-79,0],[-17,-1],[-22,0],[-28,1],[-16,0],[-34,0],[-42,2],[-22,1],[-31,0],[-11,0],[-7,0],[-13,0],[-34,0],[-34,-1],[-2,0],[-15,-3],[-15,0],[-12,0],[-29,0],[-63,0],[-15,0],[-13,0],[-20,0],[-15,1],[-26,-1],[-13,1],[-15,-1],[-36,0],[-41,0],[-23,0],[-45,0],[-50,-1],[-12,0],[-13,0],[-18,0],[-18,0],[-12,0],[-22,-1],[-21,0],[-19,0],[-20,-1],[-24,0],[-15,0],[-24,0],[-16,0],[-44,0],[-14,0],[-41,0],[-21,0],[-19,0],[-34,0],[-22,0],[-14,0],[-12,0],[-12,0],[-13,1],[-22,0],[-30,-1],[-26,1],[-22,0],[-31,0],[-19,-1],[-1,0],[-6,0],[-7,-1],[-13,1],[-11,0],[-2,0],[-27,-1],[-15,1],[-26,0],[-19,0],[-46,2],[-13,0],[-38,1],[-12,0],[-17,0],[-58,-2],[-22,-2],[-16,0],[-15,0],[-47,0],[-16,0],[-27,0],[-15,0],[-62,0],[-32,0],[-15,0],[-24,0],[-17,0],[-41,0],[-13,0],[-17,0],[-24,0],[-29,-1],[-15,0],[-22,1],[-14,0],[-23,0],[-17,-1],[-17,0],[-20,0],[-18,0],[-12,0],[-13,0],[-19,0],[-23,0],[-21,0],[-12,0],[-25,-1],[-32,1],[-28,0],[-13,-1],[-26,0]],[[71223,23251],[-11,1]],[[65985,23243],[-32,0],[-19,1],[-35,0],[-15,0],[-27,0],[-12,0],[-12,0],[-24,0],[-42,0],[-55,0],[-71,0],[-38,0],[-31,0],[-11,0],[-26,1],[-14,0],[-21,0],[-20,0],[-18,0],[-24,0],[-51,0],[-55,0],[-14,0],[-23,0],[-31,1],[-13,0],[-30,0],[-16,-1],[-26,0],[-13,0],[-12,0],[-38,1],[-81,0],[-11,0],[-13,0],[-12,0],[-1,0],[-11,0],[-16,1],[-22,-1],[-53,1],[-14,0],[-13,0],[-14,0],[-31,0],[-13,0],[-14,0],[-49,0],[-31,0],[-39,0],[-15,0],[-22,1],[-12,0],[-8,0],[-22,0],[-45,0],[-26,0],[-22,0],[-18,0],[-12,0],[-16,0],[-32,0],[-33,1],[-47,0],[-39,0],[-14,0],[-53,0],[-43,1],[-39,0],[-14,0],[-15,0],[-24,1],[-79,0],[-47,0],[-72,0],[-53,1],[-13,0],[-32,0],[-13,0],[-22,0],[-14,0],[-17,0],[-10,0],[-2,0],[-49,1],[-16,-1],[-25,1],[-13,-1],[-23,1],[-20,1],[-24,-1],[-24,0],[-17,0],[-33,0],[-83,1],[-30,0],[-15,0],[-13,1],[-27,0],[-2,0],[-45,0],[-35,0],[-26,0],[-31,0],[-31,0],[-22,0],[-22,0],[-17,0],[-30,0],[-53,1],[-53,0],[-21,0],[-19,0],[-28,0],[-27,1],[-36,0],[-33,1],[-22,-1],[-12,0],[-24,0],[-16,1],[-25,-1],[-23,0],[-26,1],[-27,-1],[-49,1],[-48,0],[-22,0],[-32,0],[-13,0],[-62,0],[-49,1],[-18,1],[-20,1],[-11,-2],[-12,-2],[-34,1],[-13,0],[-24,1],[-13,1],[-41,-1],[-18,1],[-12,-1],[-12,-1],[-16,1],[-17,0],[-14,0],[-31,0],[-19,0],[-25,0],[-20,1],[-56,-1],[-13,0],[-16,1],[-12,0],[-23,0],[-43,0],[-35,0],[-32,0],[-16,1],[-26,-1],[-13,1],[-12,0],[-17,0],[-28,0],[-33,0],[-148,-3],[-5,0],[-21,0],[-20,5],[-11,-1],[-14,0],[-45,-5],[-37,1],[-61,2],[-79,3],[-74,2],[-14,0],[-4,0],[-12,-1],[-13,0],[-19,0],[-16,0],[-12,0],[-20,0]],[[60970,23264],[0,50],[0,20],[0,215],[-1,40],[0,66],[0,44],[0,49],[0,51],[0,71],[0,39],[0,45],[0,19],[0,34],[0,35],[0,4],[0,101],[0,41],[0,34],[0,48],[0,62],[0,40],[0,41],[0,66],[0,55],[1,68],[-1,89],[0,103],[0,112],[-1,34],[0,59],[0,34],[0,47],[0,50],[0,65],[0,81],[0,45],[0,48],[0,61],[0,63],[-1,53],[0,53],[0,63],[0,151],[0,73],[0,40],[0,36],[0,38],[0,8],[0,66],[-1,64],[0,21],[0,13],[0,56],[1,52],[-1,73],[0,36],[0,16],[0,72],[0,61],[0,7],[0,106],[0,72],[0,90],[0,67],[1,69],[-1,83],[0,44],[0,34],[1,69],[0,198],[-1,157],[0,52],[0,113],[0,70],[0,76],[0,44],[0,37],[0,64],[0,85],[0,67],[0,103],[-1,97],[0,94],[0,36],[0,114],[0,42],[0,40],[0,5],[0,34],[0,47],[0,59],[0,70],[0,46],[0,140],[-1,89],[0,33],[0,38],[0,40],[0,35],[0,86],[0,87],[0,76],[0,61],[0,68],[0,91],[0,68],[0,49],[0,35],[0,59],[0,57],[0,123],[0,45],[1,55],[0,36],[0,145],[0,66],[0,49],[0,60],[0,126],[0,104],[0,47],[0,35],[0,37],[0,38],[0,34],[0,66],[0,56],[0,94],[1,65],[0,107],[0,50],[0,52],[0,100],[0,64],[0,146],[0,53],[-1,61],[1,70],[0,55],[0,60],[0,48],[1,34],[0,110],[0,84],[0,33],[1,149],[0,147],[0,69],[0,61],[0,54],[2,254],[1,102],[-3,117],[0,10],[0,29],[0,71],[0,129],[-1,82],[0,126],[-1,133],[0,136],[0,20],[0,117],[-1,60],[0,55],[1,65],[0,47],[-1,67],[0,51],[0,154],[-1,84]],[[52914,34831],[0,-377],[1,-111],[0,-101],[0,-141],[1,-137],[0,-107],[-1,-38],[-1,-209],[2,-131],[0,-102],[0,-34],[0,-73],[0,-78],[1,-211],[0,-69],[0,-77],[1,-144],[0,-73],[0,-143],[0,-57],[1,-93],[0,-94],[0,-47],[1,-83],[0,-55],[0,-48],[0,-68],[0,-108],[-1,-73],[0,-38],[0,-14],[1,-19],[0,-38],[0,-39],[-1,-34],[-1,-61],[1,-41],[0,-24],[0,-24],[0,-148],[0,-88],[0,-19],[0,-29],[0,-116],[0,-48],[0,-128],[0,-36],[0,-52],[0,-107],[0,-116],[-1,-87],[-1,-1318],[-1,-64],[-1,-160],[0,-79],[-1,-242],[-2,-172],[0,-61],[0,-99],[0,-84],[-3,-297],[1,-245],[-1,-113],[-1,-66],[0,-55],[0,-70],[0,-102],[-1,-62],[0,-110],[0,-84],[0,-53],[-1,-66],[0,-180],[0,-74],[0,-87],[-1,-47],[0,-145],[-1,-72],[0,-54],[1,-164],[0,-71],[0,-74],[0,-173],[0,-116],[-1,-123],[1,-123],[0,-44],[0,-34],[-1,-35],[1,-44],[0,-55],[0,-7],[0,-28],[-1,-87],[1,-74],[0,-69],[0,-121],[0,-98],[0,-39],[0,-105],[1,-241],[0,-152],[0,-2],[0,-91],[0,-21],[0,-69],[1,-147],[0,-171],[0,-72],[0,-48],[0,-58],[0,-54],[0,-25],[0,-55],[70,-1],[18,-1],[16,1],[12,0],[-1,-54],[0,-2],[0,-65],[-1,-104],[-1,-7],[0,-37],[-1,-46],[0,-2],[0,-36],[0,-40],[-2,-96],[0,-65],[-1,-55],[0,-37],[-1,-41],[0,-62],[-2,-113],[0,-36],[0,-64]],[[53013,22329],[-13,24],[-31,25],[-24,25],[-15,14],[-20,-5],[-17,-7],[-18,1],[-17,-2],[-14,12],[-16,-8],[-33,29],[-12,19],[-13,20],[-12,13],[-14,20],[-10,20],[-16,20],[-15,15],[-23,6],[-23,-3],[-14,-10],[-8,-7],[-13,-12],[-12,-8],[-12,-5],[-24,-2],[-37,-3],[-39,-24],[-18,-32],[-13,-6],[-47,-3],[-14,-1],[-19,22],[-16,0],[-3,0],[-22,6],[-17,-16],[-27,0],[-21,21],[-38,-10],[-30,-20],[-13,-1],[-16,7],[-22,16],[-20,-9],[-24,7],[-16,-8],[-15,-4],[-13,6],[-6,3],[-14,14],[-17,0],[-17,5],[-8,7],[-9,8],[-19,20],[-16,6],[-18,2],[-19,-7],[-13,-4],[-11,-5],[-28,-13],[-21,-6],[-19,-6],[-28,-6],[-23,-7],[-27,-7],[-20,-3],[-18,7],[-21,35],[-16,10],[-15,11],[-20,32],[-29,62],[-14,13],[-20,14],[-24,3],[-15,-4],[-14,-2],[-23,-8],[-16,-4],[-20,3],[-15,5],[-13,7],[-20,6],[-19,1],[-19,-4],[-23,-15],[-8,-4],[-9,-5],[-7,-4],[-27,-18],[-26,-17],[-31,-17],[-27,-17],[-17,-10],[-2,-2],[-20,-5],[-8,-3],[-24,-4],[-5,-1],[-1,0],[-2,0],[-23,0],[-3,0],[-14,4],[-13,11],[-23,18],[-10,5],[-16,9],[-36,15],[-2,1],[-24,2],[-10,0],[-17,5],[-17,6],[-16,10],[-9,5],[-3,4],[-20,24],[-28,39],[-28,40],[-26,24],[-15,7],[-29,19],[-18,9],[-40,17],[-24,19],[-20,8],[-19,-12],[-17,-5],[-25,-4],[-17,-2],[-79,-19],[-17,-4],[-27,-6],[-5,2],[-30,8],[-6,2]],[[50427,22798],[-20,6],[-14,3],[-20,6],[-1,0],[-24,21],[-3,2],[-3,3],[-12,10],[-16,14],[-4,3],[-11,10],[-23,3],[-17,1],[-34,1],[-6,0],[-14,4],[-27,15],[-26,75],[-14,7],[-8,6],[-11,8],[-16,10],[0,1],[-3,7],[-7,16],[-14,25],[-15,10],[-16,7],[-13,21],[-12,17],[-18,6],[-13,4],[-11,-9],[-13,6],[-18,10],[-17,13],[-27,33],[-21,23],[-12,35],[-14,27],[-13,18],[-35,11],[-22,12],[-30,1],[-29,0],[-11,0],[-52,0],[-25,0],[-26,0],[-13,0],[-37,0],[-32,0],[-15,0],[-15,0],[-23,0],[-28,0],[-23,0],[-12,0],[-15,0],[-48,0],[-26,0],[-47,1],[-13,0],[-37,0],[-16,-1],[-11,0],[-37,0],[-28,0],[-58,0],[-49,-1],[-34,4],[-27,0],[-159,0],[-35,0],[-26,0],[-7,0],[-150,1],[-111,0],[-137,1],[-91,0],[-17,0],[-22,0],[-58,0],[-41,1],[-14,0],[-256,1],[-13,0],[-9,-6],[-3,-1],[-11,1],[-16,-1],[-46,0],[-14,1],[-39,0],[-48,0],[-16,0],[-21,1],[-16,0],[-22,0],[-22,1],[-23,-1],[-48,0],[-55,0],[-21,0],[-50,0],[-46,0],[-9,0],[-1,0],[-34,-1],[-30,-1],[-15,0],[-24,1],[-24,0],[-33,-1],[-25,0],[-23,0],[-29,0],[-21,0],[-21,-1],[-19,-4],[-180,-3],[-119,-1],[-41,9],[-23,0],[-18,0],[-16,0],[-45,0]],[[46559,23300],[-17,0],[-17,0],[-17,0],[-17,0],[-19,0],[-54,-1],[-16,0],[-48,0],[-4,1],[-11,0],[-17,0],[-12,0],[-24,0],[-21,0],[-37,0],[-25,0],[-16,0],[-23,0],[-19,0],[-22,0],[-18,0],[-37,1],[-25,0],[-31,0],[-14,0],[-11,0],[-19,-1],[-12,0],[-12,1],[-14,0],[-13,0],[-13,-1],[-21,0],[-14,0],[-12,1],[-23,0],[-37,0],[-47,0],[-15,0],[-14,0],[-15,0],[-13,1],[-14,-1],[-30,1],[-13,-1],[-16,0],[-15,1],[-17,1],[-14,0],[-24,-1],[-12,0],[-17,1],[-22,1],[-14,-1],[-19,0],[-27,0],[-25,1],[-18,0],[-21,0],[-17,1],[-51,0],[-18,0],[-16,0],[-19,0],[-38,0],[-18,0],[-12,0],[-14,1],[-15,0],[-29,0],[-18,1],[-12,0],[-14,-1],[-15,1],[-38,-1],[-63,0],[-12,1],[-22,0],[-13,-1],[-48,0],[-14,2],[-12,-1],[-28,0],[-15,-1],[-23,0],[-40,1],[-13,0],[-16,0],[-14,-1],[-35,1],[-15,-1],[-20,0],[-1,0],[-19,1],[-15,0],[-18,0],[-39,0],[-18,0],[-21,0],[-8,0],[-4,0],[-54,0],[-28,3],[-1,0],[-12,0],[-52,-2],[-12,0],[-26,0],[-27,1],[-12,-1],[-16,0],[-12,-1],[-12,0],[-14,1],[-27,0],[-169,1],[-49,0],[-12,0],[-11,-1],[-15,0],[-13,0],[-14,3],[-20,-3],[-16,0],[-17,0],[-15,0],[-21,0],[-12,1]],[[60970,23264],[-18,-1],[-13,0],[-3,-34],[0,-59],[0,-37],[0,-84],[0,-89]],[[60936,22960],[-10,-17],[-48,-7],[-13,-22],[-20,-15],[-15,-19],[-19,1],[-15,22],[-23,22],[-15,2],[-13,-14],[-13,1],[-14,-6],[-35,18],[-13,0],[-14,-1],[-26,-25],[-16,-16],[-13,-9],[-17,-7],[-9,-28],[-12,-22],[-14,-33],[-25,-21],[-23,5],[-15,-6],[-24,6],[-31,-11],[-14,-15],[-29,3],[-23,-20],[-18,-9],[-17,-32],[-12,-13],[-19,-15],[-25,-16],[-18,9],[-21,-10],[-12,-1],[-15,7],[-16,10],[-17,4],[-18,-7],[-14,-25],[-13,-13],[-24,-1],[-17,-20],[-15,-19],[-10,-17],[-10,-28],[-12,-21],[-12,-18],[-22,-4],[-17,-3],[-16,6],[-13,-12],[-17,-6],[-31,11],[-21,10],[-22,2],[-18,-8],[-22,-11],[-23,-2],[-21,-2],[-19,-11],[-13,-31],[-7,-33],[-10,-18],[-26,-35],[-13,-22],[-15,-13],[-14,7],[-15,-1],[-15,-8],[-26,-1],[-23,-14],[-18,-32],[-14,-9],[-14,-24],[-10,-31],[-17,-37],[-17,-23],[-17,-11],[-18,-5],[-19,-19],[-11,-23],[-8,-26],[-10,-17],[-13,-11],[-17,-4],[-22,-12],[-21,-23],[-22,-29],[-14,-10],[-30,-3],[-22,2],[-11,19],[-20,7],[-24,3],[-18,4],[-18,-23],[-37,-64],[-12,-4],[-17,8],[-14,-10],[-24,-2],[-10,-15],[-19,-19],[-7,-28],[-15,-36],[-22,-5],[-14,-12],[-11,13],[-14,3],[-13,-1],[-15,-5],[-14,-20],[-14,-6],[-14,-14],[-21,-11],[-28,-4],[-14,23],[-15,10],[-14,-9],[-20,0],[-24,-1],[-11,13],[-19,6],[-13,-9],[-13,0],[-29,-17],[-17,10],[-15,29],[-14,0],[-24,11],[-14,8],[-12,-4],[-16,-9],[-30,-31],[-17,4],[-17,19],[-24,8],[-16,-12],[-12,1],[-20,-10],[-13,8],[-11,20],[-22,12],[-14,-11],[-9,0],[-6,1],[-27,9],[-31,-3],[-15,7],[-22,20],[-13,8],[-12,11],[-13,7],[-93,18],[-25,0],[-20,-7],[-30,-22],[-17,-13],[-12,-9],[-13,-9],[-28,-12],[-21,-15],[-22,-2],[-17,-10],[-14,-11],[-20,-25],[-16,-16],[-25,-11],[-13,-1],[-17,14],[-26,26],[-22,13],[-22,-16],[-23,-5],[-22,6],[-13,2],[-13,7],[-16,-9],[-12,-13],[-22,-4],[-13,5],[-14,-11],[-15,-6],[-11,13],[-14,3],[-20,-1],[-21,9],[-38,-13],[-14,-7],[-12,-1],[-12,7],[-17,0],[-12,-4],[-14,13],[-17,17],[-17,17],[-12,12],[-18,24],[-14,5],[-14,-15],[-13,-9],[-20,-6],[-16,0],[-34,21],[-24,29],[-14,8],[-78,-2],[-22,20],[-19,32],[-10,7],[-80,-1],[-42,26],[-37,1],[-10,-8],[-70,-39],[-9,-5],[-57,-8],[-20,40],[-31,31],[-34,-14],[-9,-9],[-21,-23],[-13,-1],[-56,7],[-11,1],[-10,8],[-25,21],[-1,3],[-112,47],[-25,9],[-33,14],[-18,15],[-17,36],[-29,23],[-8,0],[-50,-27],[-1,-2],[-13,-1],[-59,75],[-22,48],[-23,15],[-19,-1],[-11,8],[-37,-7],[-54,-42],[-58,-4],[-1,2],[-24,9],[-21,7],[-32,-3],[-31,-10],[-32,-27],[-19,-25],[-22,-25]],[[55733,22059],[-13,-9],[-4,-8],[-25,-20],[-3,-3],[-17,-1],[-33,10],[-10,20],[-11,11],[-4,4],[-8,0],[-4,8],[-10,3],[-95,-3],[-14,8],[-11,-1],[-10,-17],[-39,-32],[-32,-20],[-61,-4],[-35,10],[-1,2],[-45,15],[-38,-7],[-27,3],[-19,-23],[-101,9],[-12,12],[-19,7],[-15,4],[-10,2],[-2,1],[-17,2],[-17,16],[-10,1],[-11,1],[-41,18],[-17,15],[-43,55],[-23,-28],[-4,-2],[-7,1],[-9,-3],[-9,-2],[-11,-13],[-11,-11],[-11,-21],[-17,-11],[-12,6],[-20,-3],[-21,-18],[-14,11],[-5,4],[-8,-7],[-6,-6],[-16,-12],[-15,-8],[-13,6],[-11,1],[-1,0],[-27,-2],[-14,24],[-14,9],[-15,-5],[-24,7],[-12,-10],[-3,-3],[-8,-6],[-27,0],[-1,0],[-1,0],[-22,11],[-10,13],[-1,1],[-12,15],[-19,6],[-20,2],[-22,10],[-15,0],[-23,8],[-11,13],[-19,16],[-16,9],[-12,10],[-2,1],[-12,21],[-20,13],[-1,1],[-9,16],[-23,21],[-3,1],[-11,5],[-13,18],[-1,1],[-5,2],[-11,4],[-16,-7],[-15,6],[-23,22],[-12,1],[-12,16],[-20,11],[-13,8],[-4,2],[-1,1],[-10,7],[-19,13],[-20,3],[-11,-19],[-13,-1],[-13,-8],[-14,-19],[-18,-12],[-19,10],[-13,-11],[-13,-7],[-27,2],[-12,0],[-13,-3],[-12,11],[-13,3],[-35,-11],[-1,-1],[-17,-22],[-3,-4],[-1,0],[-12,-8],[-11,-18],[-17,1],[-22,-6],[-32,-20],[-4,-4],[-17,-14],[-13,-14],[-7,-7],[-10,-22],[-19,-4],[-5,-6],[-6,-8],[-13,-4],[-41,6],[-12,-13],[-13,-2],[-24,25],[-12,-1],[-7,0],[-5,0],[-12,25],[0,1],[-25,4],[-16,20],[-1,0],[-17,2],[-14,-3],[-22,9],[-15,9],[-11,25],[-20,14],[-18,-4],[-16,-8],[-18,20],[-12,-3],[0,-1],[-33,14],[-12,14],[-14,-8],[-26,-13],[-13,-25],[0,-1],[-13,-7],[-30,4],[-7,15],[-11,21],[-24,41],[-18,28]],[[81673,34819],[0,-48],[1,-193],[0,-142],[0,-106],[1,-98],[0,-187],[1,-44],[-1,-155],[0,-47],[0,-70],[0,-56],[0,-45],[0,-10],[0,-47],[0,-40],[0,-47],[1,-50],[-1,-65],[0,-37],[0,-57],[1,-56],[0,-37],[0,-48],[0,-45],[0,-41],[0,-36],[0,-35],[0,-34],[0,-44],[0,-45],[0,-43],[0,-43],[0,-80],[0,-36],[0,-36],[0,-41],[0,-68],[0,-44],[1,-37],[0,-22],[-1,-56],[0,-43],[0,-42],[0,-34],[1,-61],[0,-35],[0,-59],[0,-169],[0,-61],[0,-34],[0,-50],[0,-39],[0,-38],[0,-39],[0,-46],[0,-38],[0,-34],[0,-70],[0,-38],[0,-45],[0,-42],[0,-38],[0,-35],[0,-98],[0,-50],[0,-54],[0,-34],[0,-46],[0,-35],[0,-42],[1,-40],[-1,-38],[0,-19],[0,-23],[1,-72],[0,-75],[0,-41],[0,-40],[0,-40],[0,-37],[0,-43],[0,-38],[0,-83],[0,-44],[0,-68],[0,-61],[0,-34],[0,-35],[0,-79],[0,-49],[0,-49],[0,-41],[0,-80],[0,-39],[0,-59],[0,-68],[0,-74],[0,-27],[0,-6],[0,-34],[0,-40],[0,-100],[0,-41],[0,-7],[0,-31],[0,-41],[0,-48],[0,-41],[0,-84],[0,-56],[0,-55],[0,-58],[0,-35],[0,-52],[0,-103],[0,-40],[0,-45],[-1,-45],[0,-40],[0,-48],[0,-47],[0,-48],[0,-46],[0,-58],[0,-38],[0,-49],[0,-38],[0,-57],[0,-41],[0,-65],[0,-48],[0,-35],[0,-38],[0,-65],[0,-41],[0,-53],[0,-42],[0,-49],[0,-34],[0,-51],[0,-36],[0,-76],[-1,-81],[0,-53],[0,-42],[0,-57],[0,-52],[0,-25],[0,-27],[0,-92],[0,-57],[0,-69],[0,-63],[-1,-57],[0,-44],[0,-15],[0,-22],[0,-35],[0,-73],[0,-62],[0,-68],[0,-87],[0,-7],[0,-127],[0,-36],[0,-41],[0,-53],[0,-45],[0,-38],[0,-61],[0,-36],[0,-94],[-1,-42],[1,-58],[-1,-34],[0,-70],[0,-59],[0,-46],[0,-40],[0,-68],[0,-73],[0,-86],[0,-36],[0,-62],[0,-21],[0,-14],[0,-45],[0,-44],[-1,-78],[0,-78],[1,-47],[-1,-59],[0,-34],[0,-65],[0,-58],[0,-38],[0,-71],[0,-95],[0,-40],[0,-48],[0,-74],[-1,-53],[0,-36],[0,-45],[0,-106],[0,-61],[0,-40],[0,-82],[0,-58],[0,-36],[0,-33],[0,-60],[0,-77],[-1,-40],[1,-46],[-1,-44],[0,-41],[0,-44],[0,-46],[-13,-16],[-15,0]],[[81643,23232],[-14,0],[-27,0],[-15,1],[-13,0],[-18,0],[-21,-1],[-20,0],[-22,1],[-12,0],[-15,0],[-16,0],[-19,0],[-16,0],[-28,0],[-19,1],[-16,0],[-12,-1],[-13,1],[-18,0],[-15,0],[-17,-1],[-15,0],[-16,0],[-13,1],[-14,-1],[-41,-3],[-39,0],[-42,1],[-21,3],[-94,-2],[-31,0],[-179,0],[-4,0],[-8,0],[-55,-1],[-19,6],[-19,0],[-16,0],[-12,0],[-17,0],[-24,0],[-14,0],[-17,0],[-12,1],[-21,0],[-22,0],[-25,1],[-19,0],[-18,-1],[-15,1],[-13,0],[-18,0],[-13,0],[-14,0],[-12,0],[-17,1],[-15,-1],[-23,0],[-17,0],[-24,1],[-30,0],[-21,0],[-22,0],[-23,0],[-24,0],[-19,0],[-20,0],[-13,0],[-12,0],[-29,0],[-52,1],[-13,0],[-12,0],[-12,0],[-12,0],[-24,0],[-16,0],[-21,1],[-45,0],[-15,-1],[-14,1],[-17,0],[-18,0],[-28,0],[-12,0],[-34,0],[-12,0],[-17,-3],[-18,0],[-38,-1],[-22,-1],[-114,2],[-22,1],[-2,0],[-19,1],[-58,2],[-55,2],[-12,0],[-40,1],[-13,1],[-6,0],[-7,0],[-12,0],[-22,1],[-21,-6],[-13,-1],[-14,3],[-4,1],[-15,1],[-23,-1],[-25,0],[-43,0],[-18,0],[-30,0],[-48,0],[-40,0],[-13,0],[-26,0],[-16,0],[-13,0],[-15,-1],[-17,1],[-38,0],[-15,0],[-13,0],[-14,0],[-30,1],[-17,0],[-21,0],[-12,0],[-3,0],[-30,0],[-14,0],[-21,-1],[-28,1],[-23,0],[-11,0],[-19,-1],[-24,1],[-14,0],[-33,1],[-22,-1],[-16,0],[-18,0],[-12,0],[-19,1],[-23,0],[-19,0],[-33,0],[-35,0],[-13,0],[-28,0],[-22,1],[-14,-1],[-31,0],[-30,0],[-14,0],[-13,0],[-17,0],[-40,1],[-16,0],[-17,0],[-15,0],[-13,0],[-12,0],[-19,0],[-21,0],[-17,0],[-22,0],[-20,0],[-18,0],[-14,0],[-15,0],[-60,0],[-15,0],[-39,0],[-16,0],[-13,1],[-18,0],[-3,0],[-35,0],[-48,0],[-12,0],[-15,0],[-20,0],[-15,1],[-17,0],[-14,-1],[-35,1],[-12,0],[-17,0],[-16,0],[-14,0],[-17,0],[-44,0],[-12,0],[-110,0],[-27,0],[-23,1],[-18,0],[-30,0],[-26,-1],[-63,1],[-13,1],[-27,0],[-19,0],[-41,0],[-25,0],[-31,0],[-15,0],[-16,0],[-13,0],[-33,0],[-25,0],[-28,0],[-19,0],[-3,0],[-25,1],[-13,0],[-17,0],[-23,1],[-13,0],[-17,0],[-19,-1],[-12,1],[-33,0],[-24,0],[-18,0],[-42,0]],[[86786,26094],[0,-60],[0,-423],[0,-86],[0,-51],[0,-53],[0,-57],[0,-60],[0,-60],[0,-37],[0,-78],[0,-81],[0,-46],[0,-51],[0,-70],[0,-45],[0,-60],[0,-14],[0,-23],[-1,-146],[1,-59],[0,-96],[0,-33],[0,-136],[0,-82],[-1,-48],[1,-399],[0,-56],[0,-18],[0,-226],[0,-153],[0,-48],[-1,-40],[1,-43],[0,-37],[-1,-50],[1,-106],[0,-38],[0,-26],[-1,-9],[0,-49],[1,-32],[0,-4],[0,-89],[0,-104],[0,-59],[0,-70],[0,-140],[0,-75],[0,-48],[-1,-194],[0,-241],[1,-51],[0,-47],[0,-66],[0,-44],[0,-37],[0,-37],[0,-75],[0,-50],[0,-63],[0,-46],[-1,-123],[1,-79],[0,-51],[1,-38],[-1,-42],[0,-54],[0,-35],[0,-60],[0,-49],[0,-41],[1,-55],[-1,-66],[0,-45],[0,-45],[0,-44],[0,-69],[1,-92],[0,-35],[0,-57],[0,-79],[0,-1],[0,-62],[0,-45],[0,-55],[0,-38],[0,-108],[0,-61],[0,-39],[0,-147],[0,-103],[0,-112],[0,-238],[0,-125],[0,-71],[1,-53],[0,-92],[0,-49],[-1,-122],[1,-67],[0,-73],[0,-44],[0,-57],[0,-36],[0,-49],[0,-60],[0,-33],[0,-44],[0,-54],[0,-104],[0,-47],[0,-60],[-1,-42],[1,-33],[-1,-76],[0,-48],[1,-35],[0,-65],[0,-81],[0,-72]],[[86788,17409],[-16,0],[-34,2],[-14,0],[-19,1],[-12,0],[-12,0],[-21,1],[-23,1],[-13,-1],[-13,1],[-24,1],[-17,0],[-15,0],[-34,2],[-19,0],[-21,1],[-19,1],[-24,1],[-38,0],[-17,1],[-28,1],[-4,0],[-21,0],[-16,0],[-23,1],[-33,1],[-22,-1],[-15,1],[-15,0],[-22,1],[-29,0],[-16,1],[-42,1],[-32,1],[-31,0],[-19,1],[-25,0],[-21,0],[-14,0],[-16,1],[-16,0],[-18,1],[-41,1],[-26,0],[-28,0],[-19,0],[-14,1],[-17,0],[-12,0],[-51,1],[-38,1],[-12,0],[-21,0],[-22,1],[-36,0],[-17,0],[-24,0],[-30,-1],[-33,-1],[-20,0],[-23,0],[-13,0],[-30,0],[-16,0],[-17,1],[-14,0],[-100,-3],[-4,0],[-41,0],[-74,1],[-15,0],[-27,0],[-20,0],[-18,0],[-26,-1],[-23,0],[-26,-2],[-12,0],[-23,-1],[-15,-1],[-16,0],[-20,0],[-13,-1],[-16,1],[-30,0],[-14,0],[-15,0],[-12,0],[-12,0],[-13,-2],[-15,-2],[-19,-1],[-13,0],[-13,-1],[-18,1],[-24,0],[-62,2],[-18,-1],[-21,0],[-20,0],[-42,0],[-11,0],[-14,-1],[-20,-1],[-16,0],[-16,-1],[-24,0],[-12,0],[-19,-1],[-13,0],[-32,-1],[-20,0],[-11,0],[-16,0],[-24,-2],[-14,-1],[-22,-2],[-23,-1],[-14,-1],[-13,-1],[-66,0],[-22,0],[-22,-1],[-29,2],[-7,-1],[-6,0],[-19,1],[-18,0],[-14,0],[-16,0],[-21,0],[-32,0],[-15,0],[-38,0],[-55,0],[-11,0],[-19,0],[-15,0],[-25,0],[-61,0],[-21,0],[-41,0],[-30,0],[-17,-1],[-22,1],[-21,0],[-21,0],[-29,0],[-20,-1],[-26,1],[-18,-1],[-21,0],[-20,0],[-16,0],[-20,0],[-23,0],[-13,0],[-23,0],[-26,0],[-28,0],[-11,0],[-12,0],[-5,0],[-40,-1],[-20,1],[-16,0],[-13,0],[-22,1],[-1,0],[-31,-1],[-17,0],[-16,0],[-16,0],[-15,0],[-13,0],[-21,1],[-21,0],[-15,0],[-19,1],[-18,0],[-29,0],[-26,1],[-24,1],[-16,-1],[-33,0],[-14,0],[-17,1],[-17,0],[-19,0],[-29,1],[-18,0],[-18,0],[-22,0],[-24,1],[-43,1],[-59,0],[-12,1],[-13,-1],[-20,1],[-18,0],[-35,0],[-23,1],[-16,0],[-15,0],[-17,0],[-29,1],[-16,0],[-17,1],[-35,0],[-16,0],[-16,1],[-24,0],[-14,0],[-17,0],[-13,1],[-18,0],[-21,0],[-17,1],[-14,0],[-21,-1],[-26,1],[-12,0],[-32,0],[-25,2],[-48,0],[-11,0],[-13,0],[-27,0],[-14,0],[-14,1],[-32,0],[-16,0],[-14,0],[-35,1]],[[81654,17429],[0,41],[0,81],[0,51],[1,63],[0,36],[0,78],[0,38],[0,44],[0,57],[1,49],[0,93],[0,45],[1,80],[0,38],[0,80],[0,55],[0,38],[1,71],[0,50],[0,50],[0,62],[0,56],[1,44],[0,58],[0,34],[0,59],[-1,70],[-1,53],[0,46],[-1,63],[-1,43],[-1,61],[0,49],[-1,45],[-1,52],[0,37],[-1,52],[0,36],[-2,93],[0,36],[-1,79],[-1,35],[0,34],[-1,52],[0,38],[-1,93],[-2,95],[0,59],[-1,40],[-1,44],[0,52],[-1,51],[-1,41],[0,51],[0,36],[0,38],[0,41],[0,33],[0,62],[1,64],[0,101],[0,57],[0,54],[0,63],[0,49],[0,51],[0,53],[1,48],[-1,39],[0,62],[0,45],[0,36],[1,53],[0,35],[0,38],[0,39],[0,68],[0,39],[0,35],[0,40],[0,37],[0,49],[0,7],[0,37],[1,38],[0,61],[0,31],[-1,21],[1,45],[0,33],[0,46],[0,90],[0,71],[0,41],[0,87],[0,55],[0,35],[0,62],[1,69],[0,55],[0,57],[0,54],[1,51],[-1,42],[1,48],[-1,53],[0,116],[0,119],[0,63]],[[32080,23227],[-30,-1],[-40,-1],[-35,0],[-61,-1],[-23,-1],[-21,-1],[-38,0],[-17,0],[-12,1],[-52,1],[-17,0],[-21,0],[-13,0],[-28,1],[-12,0],[-13,1],[-23,0],[-12,0],[-15,0],[-17,1],[-49,0],[-18,1],[-26,0],[-18,0],[-25,1],[-17,0],[-30,1],[-33,0],[-23,1],[-16,0],[-18,0],[-28,1],[-21,0],[-27,1],[-12,-1],[-35,2],[-12,-1],[-13,1],[-20,0],[-13,0],[-12,0],[-35,1],[-47,0],[-39,1],[-27,1]],[[30966,23237],[-17,0],[-38,1],[-29,0],[-40,0],[-27,1],[-15,0],[-13,0],[-22,0],[-20,0],[-23,0],[-32,0],[-15,0],[-33,0],[-13,0],[-38,-1],[-30,0],[-13,0],[-12,0],[-11,-1],[-31,-1],[-24,-2],[-30,-1],[-17,7],[-14,-1],[-57,-3],[-13,-1],[-15,1],[-202,4],[-20,0],[-202,-2],[-17,-3],[-15,1],[-15,-1],[-16,1],[-14,0],[-19,0],[-14,0],[-13,0],[-1,0],[-18,0],[-15,0],[-21,0],[-16,0],[-28,0],[-12,0],[-13,0],[-17,1],[-18,0],[-12,0],[-16,0],[-13,0],[-25,1],[-34,0],[-13,0],[-12,0],[-12,1],[-14,1],[-12,0],[-15,1],[-20,0],[-15,2],[-25,2],[-16,0],[-14,1],[-13,2],[-17,-1],[-19,1],[-37,3],[-13,1],[-12,1],[-47,-1],[-389,15],[-125,5],[-292,12],[-214,8],[-359,14],[-12,-1],[-19,0],[-14,0],[-15,0],[-16,-1],[-12,2],[-12,1],[-160,0],[-40,0],[-12,-2],[-205,0],[-18,-7],[-17,0],[-17,0],[-21,-1],[-13,0],[-32,0],[-12,0],[-24,-1],[-13,0],[-18,-1],[-19,0],[-13,0],[-417,-6],[-18,6],[-35,-3],[-95,-8],[-15,-1],[-13,0],[-13,0],[-12,0],[-12,0],[-16,0],[-12,-1],[-12,0],[-45,-1],[-14,-1],[-16,0],[-23,0],[-36,-1],[-18,0],[-11,-1],[-7,0],[-22,0],[-12,0],[-20,-1],[-19,0],[-26,-1],[-19,0],[-50,-1],[-19,0],[-16,-1],[-32,0],[-19,-1],[-12,0],[-61,-2],[-17,0],[-16,0],[-19,-1],[-12,0],[-14,0],[-24,-1],[-15,0],[-17,0],[-11,0],[-22,-1],[-12,0],[-12,0],[-33,-1],[-23,0],[-13,-1],[-12,0],[-32,0],[-29,-2],[-13,0],[-13,0],[-27,-1],[-15,0],[-21,0],[-17,-1],[-24,-1],[-18,0],[-18,-1],[-11,0],[-15,-1],[-12,0],[-12,0],[-16,0],[-11,0],[-88,-3],[-21,-1],[-134,-3],[-80,0],[-22,0],[-35,-1],[-18,0],[-23,0],[-14,0],[-12,0],[-25,1],[-13,0],[-17,0],[-12,0],[-12,1],[-18,0],[-11,0],[-15,0],[-19,1],[-18,0],[-23,0],[-15,1],[-15,0],[-42,1],[-12,0],[-30,1],[-14,0],[-15,0],[-13,1],[-12,-1],[-17,1],[-15,0],[-26,0],[-11,1],[-18,0],[-32,-3],[-17,0],[-15,0],[-7,0],[-21,-1],[-15,0],[-30,0],[-15,-1],[-12,0],[-12,0],[-15,0],[-23,-1],[-15,0],[-21,0],[-18,0],[-23,0],[-18,0],[-37,0],[-14,0],[-12,-1],[-17,0],[-23,1],[-15,-1],[-15,0],[-14,0],[-25,1],[-22,-1],[-18,0],[-14,0],[-14,0],[-12,0],[-16,0],[-15,0],[-21,0],[-17,0],[-12,0],[-14,-1],[-14,0],[-19,0],[-12,0],[-13,0],[-30,0],[-12,0],[-15,-1],[-23,0],[-17,0],[-11,0],[-33,0],[-12,-1],[-14,1],[-16,-1],[-15,0],[-17,0],[-11,0],[-14,0],[-12,0],[-5,0],[-15,0],[-34,-1],[-20,1],[-33,-1],[-12,0],[-26,-1],[-20,-1],[-14,-1],[-11,-1],[-12,-1],[-16,-1],[-11,0],[-16,-1],[-17,-1],[-21,-2],[-34,-1],[-21,-2],[-19,-1],[-38,-2],[-13,-1],[-15,0],[-14,-1],[-13,-1],[-19,-1],[-11,0],[-19,-1],[-20,-2],[-18,-1],[-25,-2],[-31,-4]],[[22892,23218],[0,77],[0,611],[0,715],[0,329],[-1,271],[0,108],[-1,642],[-1,972],[-4,2438],[-5,3982]],[[93986,26089],[-1,-24],[-3,-42],[-5,-53],[-4,-36],[-10,-48],[-9,-41],[-11,-32],[-11,-32],[-15,-38],[-13,-34],[-3,-7],[-14,-36],[-11,-21],[-14,-25],[-4,-9],[-15,-27],[0,-1],[-13,-22],[-8,-11],[-6,-9],[-4,-7],[-9,-15],[-14,-14],[-2,-2],[-8,-11],[-6,-8],[-16,-15],[-10,-9],[-19,-19],[-20,-15],[-20,-19],[-15,-13],[-2,-1],[-14,-18],[-16,-15],[-17,-20],[-8,-9],[-8,-8],[-16,-20],[-16,-18],[-13,-25],[-13,-18],[-12,-24],[-13,-30],[-9,-24],[-19,-36],[-10,-27],[-14,-34],[-19,-58],[-14,-45],[-3,-8],[-17,-64],[-35,-191],[-23,-193],[-2,-102],[0,-25],[0,-21],[5,-51],[11,-100],[4,-33],[6,-56],[14,-118],[25,-117],[25,-38],[10,-15],[8,-12],[28,-44],[8,-3],[12,-3],[26,-33],[13,-10],[15,-12],[9,-8],[2,-3],[16,-17],[25,-26],[29,-32],[5,-6],[14,-15],[11,-17],[15,-20],[1,-3],[17,-31],[18,-45],[22,-53],[21,-64],[14,-58],[9,-37],[9,-42],[13,-72],[8,-59],[4,-41],[4,-57],[2,-36],[1,-64],[1,-62],[2,-40],[6,-57],[3,-39],[2,-16],[7,-47],[8,-34],[4,-15],[3,-12],[17,-47],[16,-29],[18,-34],[26,-40],[12,-21],[19,-33],[23,-38],[17,-22],[11,-14],[18,-26],[11,-14],[14,-17],[20,-24],[17,-18],[18,-14],[15,-12],[19,-12],[12,-4],[19,-7],[18,-7],[15,-2],[19,-3],[28,-5],[5,-1],[8,-2],[26,-5],[11,-5],[33,-20],[1,-1],[7,-6],[34,-28],[11,-12],[1,-1],[14,-15],[25,-35],[3,-3],[20,-30],[21,-32],[23,-49],[17,-39],[24,-59],[7,-17],[15,-39],[19,-55],[23,-67],[14,-44],[9,-28],[9,-38],[13,-53],[2,-8],[15,-66],[16,-98],[0,-5],[2,-8],[5,-53],[3,-40],[1,-17],[0,-19],[0,-3],[2,-123],[0,-56],[1,-43],[1,-34],[4,-68],[-2,-17],[-2,-17],[4,-52],[10,-53],[13,-45],[4,-14],[7,-24],[27,-56],[3,-5],[1,-3],[28,-50],[41,-53],[31,-57],[26,-55],[3,-7],[18,-38],[18,-73],[7,-51],[1,-18],[4,-48],[0,-62],[0,-7],[-1,-17],[-2,-26],[-5,-39],[-11,-83],[-5,-17],[-6,-18],[-17,-63],[-5,-18],[-15,-29],[-9,-16],[-42,-83],[-18,-29],[-47,-74],[-12,-23],[-33,-63],[-45,-126],[-4,-15],[-8,-29],[-3,-28],[-6,-71],[-4,-55],[11,-102],[0,-6],[18,-113],[4,-26],[11,-44],[0,-2],[26,-106],[40,-152],[0,-3],[14,-101],[4,-69],[1,-34],[-1,-40],[-2,-43],[-12,-86],[-27,-101],[-15,-78],[-10,-122],[6,-85],[21,-85],[46,-106],[66,-79],[18,-14],[32,-23],[28,-10],[18,-11],[31,-5],[1,0],[20,-3],[10,-2],[17,-2],[19,0],[30,1],[3,0],[28,13],[41,37],[20,24],[8,9],[3,5],[16,22],[7,6],[13,11],[2,1],[31,11],[19,-3],[37,-8],[25,-13],[12,-6],[17,-27],[33,-86]],[[95406,17436],[-2,-1],[-14,0],[-4,-1],[-58,-3],[-108,-5],[-88,-5],[-1,0],[-68,-4],[-65,-1],[-11,-1],[-19,-1],[-19,-5],[-32,1],[-20,1],[-60,6],[-73,-5],[-17,1],[-22,-1],[-28,0],[-21,-1],[-33,0],[-13,-1],[-30,0],[-16,0],[-16,1],[-89,0],[-129,0],[-12,1],[-16,0],[-20,1],[-13,0],[-20,-3],[-13,-2],[-12,1],[-20,3],[-28,0],[-61,-1],[-16,0],[-43,-1],[-25,0],[-15,-1],[-11,1],[-21,0],[-19,0],[-26,0],[-21,1],[-14,-1],[-12,-1],[-57,0],[-14,0],[-78,0],[-63,0],[-70,-1],[-15,0],[-15,0],[-15,0],[-8,0],[-4,0],[-21,0],[-28,0],[-19,0],[-22,0],[-13,0],[-47,-1],[-30,0],[-127,0],[-25,0],[-28,0],[-26,1],[-27,0],[-29,0],[-17,0],[-13,0],[-26,1],[-26,0],[-12,0],[-20,0],[-11,0],[-31,1],[-15,0],[-19,0],[-14,0],[-21,0],[-25,1],[-31,-1],[-18,1],[-28,0],[-13,0],[-124,1],[-26,1],[-13,-1],[-12,1],[-15,0],[-15,0],[-66,-1],[-20,0],[-17,0],[-34,0],[-50,0],[-57,0],[-54,0],[-48,0],[-23,0],[-13,0],[-21,3],[-56,-1],[-1,0],[-37,0],[-3,0],[-43,-1],[-31,-1],[-12,0],[-24,-1],[-1,0],[-143,1],[-21,0],[-36,0],[-17,0],[-30,0],[-107,0],[-35,0],[-22,1],[-23,0],[-37,1],[-47,-1],[-34,0],[-38,1],[-47,0],[-15,0]],[[91323,17414],[-13,0],[-19,1],[-30,-1],[-31,0],[-33,1],[-73,0],[-15,2],[-11,-1],[-71,-1],[-53,0],[-12,0],[-21,0],[-12,0],[-38,1],[-23,-1],[-41,1],[-13,0],[-24,0],[-34,1],[-1,0],[-61,1],[-34,-2],[-19,-1],[-41,0],[-22,0],[-13,0],[-14,-1],[-15,1],[-56,-1],[-24,0],[-59,-1],[-35,0],[-100,-1],[-14,-1],[-78,-1],[-55,-1],[-31,0],[-36,0],[-12,0],[-1,0],[-13,0],[-13,0],[-11,0],[-41,-1],[-12,0],[-19,0],[-22,0],[-12,0],[-49,-1],[-18,0],[-110,0],[-114,-2],[-22,1],[-13,0],[-14,2],[-12,0],[-20,-1],[-16,-1],[-33,-2],[-17,0],[-44,-2],[-15,0],[-35,0],[-31,1],[-30,0],[-15,1],[-11,0],[-34,1],[-19,0],[-13,0],[-29,-1],[-12,2],[-36,-2],[-79,1],[-27,0],[-18,0],[-16,0],[-14,-1],[-21,0],[-26,1],[-41,0],[-83,1],[-22,0],[-18,0],[-21,1],[-46,-1],[-22,0],[-16,-1],[-187,-4],[-12,4],[-12,3],[-12,-1],[-38,-1],[-42,-1],[-21,0],[-35,0],[-111,0],[-48,0],[-27,0],[-13,0],[-12,0],[-33,-1],[-30,1],[-18,0],[-23,1],[-49,0],[-59,0],[-122,0],[-25,0],[-19,0],[-28,1],[-25,0],[-18,0],[-41,0],[-46,0],[-16,1],[-12,-1],[-15,0],[-14,0],[-20,0],[-15,0],[-23,0],[-17,-1],[-16,0],[-26,1],[-15,-1],[-19,0],[-35,1],[-15,0],[-19,0],[-11,0],[-18,1],[-27,1],[-210,-5],[-133,-2],[-42,6],[-48,1]],[[46559,23300],[0,-56],[0,-49],[0,-55],[-1,-47],[1,-88],[0,-42],[-1,-73],[1,-82],[0,-119],[0,-65],[-1,-65],[0,-64],[0,-172],[0,-88],[0,-161],[0,-7],[0,-27],[0,-65],[0,-136],[1,-124],[0,-65],[0,-95],[0,-35],[0,-31],[0,-32],[0,-63],[0,-5],[0,-49],[0,-37],[0,-71],[3,-216],[1,-148],[0,-64],[-5,-413],[0,-191],[1,-783],[0,-71],[1,-362],[-1,-554],[0,-214],[0,-43],[0,-127],[0,-39],[0,-50],[0,-95],[0,-76],[1,-299],[0,-102],[0,-139],[0,-116],[0,-123],[0,-68],[1,-188],[0,-129],[0,-52],[0,-44],[0,-1],[1,-34],[0,-111],[0,-140],[1,-136],[0,-63],[0,-67],[0,-130],[0,-43],[1,-85],[0,-127],[0,-59],[0,-217],[0,-115],[0,-126],[1,-215],[0,-47],[0,-128],[0,-40],[0,-52],[-31,1],[-20,1],[-16,1],[-47,0],[-26,1],[-22,0],[-15,1],[-43,-1],[-74,-2],[-91,2],[-46,0],[-90,2],[-19,0],[-107,2],[-12,0],[-7,1],[-54,3],[-21,-1],[-24,0],[-16,0],[-12,0],[-32,0],[-39,1],[-220,-5],[-31,2],[-91,9],[-20,1],[-11,-6],[-16,0],[-26,-1],[-24,0],[1,-124],[0,-152],[0,-65],[0,-65],[0,-80],[0,-180],[0,-305],[0,-151],[0,-65],[0,-267],[0,-39],[0,-146],[0,-110],[0,-37],[0,-53],[1,-114],[0,-9],[1,-118],[-1,-48],[0,-61],[0,-40],[0,-105],[0,-39],[0,-55],[1,-93],[-1,-150],[1,-165],[0,-39],[1,-34]],[[45266,11693],[-28,-1],[-18,0],[-12,0],[-53,-5],[-119,-4],[-16,0],[-23,-3],[-21,-1],[-44,-2],[-16,2],[-26,-1],[-99,-8],[-12,-1],[-22,1],[-16,1],[-22,2],[-40,-1],[-41,-1],[-41,-1],[-29,-1],[-18,2],[-32,0],[-90,-6],[-21,-1],[-89,-4],[-65,-1],[-165,-7]],[[44088,11652],[-49,-2],[-18,-1],[-47,1],[-16,-1],[-26,-1],[-19,0],[-24,-1],[-31,0],[-55,-1],[-25,0],[-17,0],[-194,-2],[-81,-3],[-27,-6],[-12,2],[-12,-1],[-16,0],[-38,-1],[-15,-1],[-38,-3],[-53,-5],[-14,1],[-37,3],[-117,3],[-18,1],[-19,1],[-13,0],[-13,5],[-20,-8],[-15,1],[-19,2],[-21,4],[-16,0],[-12,0],[-20,-2],[-12,0],[-12,4],[-16,1],[-19,1],[-18,4],[-14,-2],[-14,1],[-12,2],[-130,13],[-46,5],[-15,1],[-22,2],[-12,7],[-15,2],[-38,4],[-18,1],[-19,0],[-18,1],[-93,2],[-155,10],[-43,3],[-12,1],[-21,2],[-12,0],[-14,-1],[-64,0],[-80,0],[-17,0],[-50,-3],[-114,-4],[-13,0],[-16,0],[-19,0],[-16,-1],[-12,0],[-17,-1],[-17,-1],[-18,-1],[-31,-1],[-14,1],[-13,-1],[-29,-1],[-20,-1],[-37,-2],[-12,0],[-12,-1],[-31,-1],[-20,-1],[-12,-1],[-12,0],[-28,0],[-50,-2],[-11,0],[-20,-1],[-13,0],[-13,0],[-12,-1],[-25,1],[-18,-1],[-30,-2],[-24,-2],[-19,-1],[-30,-1],[-19,-1],[-12,-1],[-17,-1],[-12,0],[-21,2],[-17,-3],[-15,-2],[-20,0],[-19,-1],[-16,0],[-15,-1],[-23,-1],[-36,-1],[-12,0],[-42,-2],[-112,0],[-77,1],[-19,-10],[-50,2],[-14,0],[-15,-2],[-23,1],[-22,1],[-12,0],[-14,-1],[-15,4],[-69,-1],[-114,0],[-34,-1],[-90,0],[-128,0],[-182,-9],[-34,-2],[-110,-2],[-27,0],[-18,1],[-17,-1],[-23,0],[-39,1],[-21,0],[-15,2],[-141,-1],[-18,0],[-120,0],[-65,3],[-105,-1],[-55,-1],[-12,0],[-47,0],[-9,0],[-3,0],[-39,-1],[-23,0],[-3,0],[-62,-1],[-97,-1],[-27,0],[-24,0],[-57,-1],[-17,0],[-12,0],[-32,0],[-15,0],[-27,-1],[-27,0],[-35,0],[-13,0],[-58,-1],[-55,0],[-49,-1],[-214,-2],[-45,0],[-202,-2],[-12,0],[-14,0],[-20,1],[-24,0],[-13,0],[-35,1],[-18,0],[-21,1]],[[37677,11635],[-26,0],[-14,0],[-40,-1],[-37,0],[-39,-1],[-19,0],[-41,0]],[[37461,11633],[-1,34],[-1,40],[-1,37],[-2,93],[0,47],[-3,155],[-17,444],[-3,487],[0,113],[-1,187],[0,34],[-3,44],[0,19],[1,38],[0,61],[0,35],[-3,369],[-2,243],[0,83],[-1,185],[-2,181],[-1,128],[0,39],[0,50],[0,323],[-3,667],[-1,249],[-1,228],[-3,46],[0,34],[-1,46],[0,49],[-1,66],[-1,49],[-1,43],[0,48],[-1,59],[-1,34],[0,35],[0,35],[-4,251],[-2,110],[0,49],[-1,54],[0,34],[-1,85],[0,34],[0,50],[-1,40],[0,39],[-2,494],[1,34],[0,60],[1,80],[1,39],[-1,38],[1,48],[1,99],[0,35],[3,89],[1,36],[3,94],[1,35],[1,44],[1,95],[1,34],[0,35],[0,34],[0,60],[0,37],[0,72],[0,80],[0,44],[0,48],[0,34],[0,33],[-1,34],[0,89],[0,97],[0,34],[0,57],[1,95],[0,40],[0,61],[0,57],[0,78],[-2,115],[0,40],[0,38],[0,35],[0,62],[0,46],[-1,78],[2,381],[1,158],[3,441],[0,49],[3,385],[1,51],[2,102],[2,86],[1,37],[2,110],[1,55],[1,37],[2,133],[2,225],[0,38],[2,45],[1,54],[1,50],[1,64],[3,110],[4,58],[12,213]],[[66040,23243],[-1,-139],[0,-61],[0,-60],[0,-60],[0,-67],[0,-65],[0,-38],[0,-52],[0,-81],[0,-40],[0,-52],[0,-36],[0,-59],[0,-3],[0,-57],[0,-60],[0,-46],[0,-37],[0,-36],[0,-39],[0,-111],[-1,-48],[0,-41],[0,-60],[0,-50],[0,-40],[0,-4],[0,-59],[0,-59],[0,-86],[0,-59],[0,-34],[0,-58],[0,-58],[0,-97],[0,-52],[0,-60],[0,-119],[0,-60],[0,-60],[0,-59],[0,-51],[0,-34],[0,-84],[0,-36],[-1,-121],[0,-208],[0,-64],[0,-87],[0,-60],[0,-60],[0,-113],[0,-98],[0,-89],[0,-60],[0,-133],[0,-1],[0,-47],[0,-60],[0,-60],[0,-33],[0,-1],[0,-45],[1,-58],[0,-52],[0,-54],[0,-33],[0,-36],[0,-37],[-1,-34],[0,-48],[0,-86],[0,-69],[0,-35],[0,-50],[0,-83],[0,-85],[0,-71],[0,-89],[0,-46],[0,-128],[0,-1],[0,-40],[0,-93],[0,-80],[1,-95],[0,-99],[0,-37],[0,-57],[0,-94],[0,-34],[0,-59],[0,-50],[0,-10],[0,-50],[0,-71],[1,-84],[0,-84],[-1,-74],[1,-59],[0,-129],[0,-93],[0,-98],[0,-52],[0,-38],[0,-36],[0,-43],[0,-57],[0,-39],[0,-71],[0,-55],[0,-115],[0,-49],[1,-57],[0,-52],[0,-110],[0,-109],[0,-55],[0,-55],[0,-109],[0,-54],[0,-75],[0,-89],[0,-110],[0,-54],[0,-110],[0,-125],[0,-38],[0,-55],[0,-54],[1,-56],[0,-109],[-1,-77],[0,-33],[0,-54],[0,-1],[1,-37],[-1,-78],[0,-77],[0,-65],[0,-57],[0,-43],[0,-76],[0,-50],[0,-101],[0,-66],[0,-40],[1,-33],[0,-103],[0,-53],[1,-78],[0,-78],[0,-55],[1,-40],[-1,-54],[-2,-36],[0,-127],[0,-60],[0,-39],[-1,-98],[-1,-28],[0,-13],[2,-375],[0,-55],[0,-47],[0,-72],[-1,-39],[1,-50],[-1,-33],[0,-21],[0,-40],[0,-37],[0,-4],[0,-44],[0,-41],[0,-52],[0,-106],[0,-58],[0,-54],[0,-54],[0,-54],[1,-71]],[[66040,11663],[-47,-1],[-61,1],[-24,0],[-19,0],[-6,0],[-17,0],[-12,3],[-21,2],[-21,-5],[-20,0],[-12,0],[-23,0],[-26,0],[-13,0],[-20,0],[-37,0],[-11,0],[-22,0],[-22,1],[-28,-1],[-22,0],[-29,0],[-12,0],[-26,-1],[-13,1],[-19,-1],[-13,0],[-13,-9],[-12,14],[-15,-5],[-15,0],[-49,0],[-28,0],[-19,-1],[-13,0],[-28,0],[-31,0],[-40,0],[-18,0],[-91,-1],[-31,0],[-33,0],[-27,0],[-24,0],[-18,0],[-29,0],[-70,0],[-18,1],[-17,0],[-14,0],[-45,0],[-14,0],[-34,0],[-16,0],[-1,0],[-52,0],[-51,0],[-45,0],[-46,0],[-13,0],[-36,0],[-24,0],[-23,0],[-15,1],[-24,0],[-20,0],[-13,0],[-27,0],[-52,1],[-20,-1],[-16,0],[-12,0],[-33,0],[-1,0],[-38,1],[-35,0],[-14,0],[-14,1],[-9,-1],[-12,0],[-22,0],[-38,1],[-70,1],[-13,0],[-29,0],[-20,0],[-37,1],[-53,1],[-16,0],[-17,0],[-17,-1],[-30,0],[-12,0],[-12,0],[-16,-1],[-33,0],[-24,0],[-34,0],[-17,0],[-22,0],[-15,-1],[-58,0],[-18,0],[-31,0],[-30,0],[-26,-1],[-52,0],[-20,0],[-17,0],[-14,0],[-4,0],[-15,0],[-23,0],[-72,0],[-15,0],[-29,0],[-91,1],[-89,0],[-20,0],[-18,0],[-35,-1],[-32,0],[-45,0],[-15,0],[-20,0],[-4,0],[-21,0],[-46,-1],[-63,0],[-105,0],[-12,0],[-11,0],[-27,0],[-37,0],[-14,0],[-58,1],[-16,0],[-24,0],[-21,1],[-16,-1],[-19,0],[-15,-1],[-31,0],[-16,0],[-49,-1],[-18,0],[-14,0],[-38,-1],[-17,-1],[-15,1],[-18,0],[-17,0],[-24,0],[-112,1],[-13,0],[-36,0],[-12,0],[-57,0],[-24,0],[-33,0],[-14,0],[-41,0],[-23,0],[-13,0],[-22,0],[-27,0],[-23,0],[-12,0],[-25,0],[-12,1],[-15,0],[-15,0],[-30,0],[-27,0],[-19,0],[-14,1],[-23,0],[-37,0],[-97,0],[-37,0],[-45,0],[-17,1],[-14,0],[-24,0],[-25,0],[-16,0],[-37,0]],[[60943,11664],[-1,58],[-1,44],[0,52],[0,77],[-1,44],[1,49],[0,45],[-1,43],[0,92],[0,51],[0,45],[0,35],[0,38],[0,114],[0,50],[0,41],[0,117],[0,40],[0,41],[0,50],[0,47],[0,55],[0,46],[0,109],[0,72],[0,44],[0,55],[0,43],[0,35],[0,38],[0,41],[0,44],[0,102],[0,49],[0,49],[0,51],[0,55],[0,45],[0,64],[0,36],[1,158],[0,66],[-1,472],[0,137],[0,140],[0,23],[0,13],[0,166],[0,270],[0,166],[-1,38],[1,202],[0,60],[0,226],[0,19],[0,81],[0,76],[0,73],[0,56],[1,51],[-1,62],[0,5],[0,60],[1,155],[1,45],[-1,35],[-1,36],[1,38],[0,44],[0,78],[0,53],[0,42],[0,51],[0,57],[0,44],[-1,53],[0,48],[0,49],[0,52],[0,80],[0,112],[1,47],[0,49],[-1,49],[0,49],[0,52],[0,47],[0,77],[0,118],[0,45],[0,48],[0,120],[0,53],[0,99],[0,81],[0,50],[0,50],[0,59],[0,38],[0,102],[0,103],[0,6],[0,43],[0,72],[0,71],[0,48],[0,45],[0,49],[0,46],[0,103],[-1,100],[0,45],[0,48],[0,32],[0,19],[0,52],[0,45],[1,99],[0,24],[0,25],[0,63],[-2,413],[0,66],[0,44],[0,37],[0,36],[0,38],[0,81],[1,41],[-1,84],[0,56],[0,47],[0,52],[0,86],[0,54],[0,106],[0,62],[0,78],[0,60],[0,35],[0,56],[0,46],[0,61],[0,57],[0,69],[0,45],[0,52],[-1,94],[1,84],[-1,62],[0,51],[0,53],[0,34],[0,70],[0,34],[0,37],[0,52],[0,64],[0,199],[0,2],[0,64],[-1,65],[1,61],[-1,37],[0,38],[0,64]],[[50427,22798],[0,-20],[-1,-21],[3,-53],[0,-53],[0,-64],[0,-50],[0,-42],[1,-62],[0,-37],[-2,-46],[0,-12],[-1,-52],[2,-355],[-1,-36],[0,-70],[0,-78],[0,-154],[0,-38],[0,-35],[-1,-95],[0,-46],[0,-38],[0,-59],[0,-61],[0,-57],[0,-34],[0,-57],[0,-53],[0,-47],[0,-45],[0,-35],[0,-33],[0,-64],[0,-77],[0,-51],[0,-51],[0,-36],[0,-43],[0,-65],[0,-94],[0,-35],[0,-96],[0,-98],[0,-63],[-1,-97],[0,-35],[0,-56],[0,-36],[0,-51],[0,-52],[0,-63],[0,-63],[0,-80],[0,-51],[0,-65],[0,-39],[-1,-111],[0,-126],[0,-50],[0,-61],[0,-37],[0,-35],[0,-69],[0,-74],[0,-75],[0,-44],[0,-43],[0,-129],[0,-87],[0,-43],[0,-64],[0,-130],[0,-34],[0,-41],[0,-54],[0,-65],[0,-53],[0,-34],[0,-42],[-1,-66],[0,-16],[0,-48],[0,-54],[0,-47],[0,-59],[-1,-34],[0,-69],[-1,-49],[-1,-35],[-1,-66],[-2,-43],[-1,-51],[-1,-41],[0,-34],[0,-66],[0,-65],[0,-42],[0,-39],[0,-48],[1,-65],[0,-63],[1,-134],[0,-60],[0,-75],[0,-55],[1,-138],[0,-56],[1,-129],[0,-133],[1,-127],[0,-64],[0,-62],[0,-68],[1,-128],[0,-40],[0,-157],[0,-128],[0,-198],[0,-63],[0,-118],[0,-87],[1,-35],[-1,-174],[-4,-670],[2,-54],[2,-140],[0,-91],[1,-80],[1,-44],[1,-64],[0,-65],[2,-130],[1,-65],[0,-65],[2,-194],[1,-65],[0,-68],[1,-118],[2,-187],[0,-65],[1,-129],[1,-65],[0,-65],[2,-129],[1,-101],[1,-93],[1,-131]],[[50441,11691],[-12,0],[-16,0],[-43,1],[-28,0],[-56,0],[-54,-1],[-35,0],[-46,-2],[-13,0],[-28,-1],[-41,1],[-35,1],[-24,1],[-20,0],[-21,0],[-16,0],[-61,1],[-24,-1],[-17,0],[-36,-1],[-19,0],[-15,1],[-46,0],[-31,0],[-46,0],[-40,1],[-32,0],[-12,0],[-26,1],[-21,-1],[-14,0],[-30,0],[-17,1],[-41,0],[-23,-1],[-18,0],[-17,0],[-13,0],[-12,0],[-14,0],[-14,0],[-17,-1],[-19,0],[-18,-1],[-22,0],[-43,-1],[-13,-1],[-15,0],[-12,0],[-11,0],[-21,0],[-11,0],[-17,0],[-14,0],[-13,0],[-5,0],[-21,0],[-54,0],[-26,-1],[-24,0],[-32,-1],[-41,-1],[-18,1],[-47,0],[-41,0],[-34,0],[-15,0],[-15,1],[-58,0],[-49,-1],[-81,-1],[-51,1],[-31,0],[-18,-1],[-23,0],[-24,0],[-51,0],[-42,1],[-37,1],[-41,1],[-13,0],[-24,1],[-42,0],[-32,-1],[-62,-1],[-29,0],[-42,0],[-27,0],[-56,1],[-39,1],[-41,0],[-16,0],[-76,-3],[-26,-1],[-13,0],[-15,1],[-36,0],[-31,1],[-32,1],[-20,1],[-18,1],[-17,-1],[-10,-1],[-4,0],[-13,0],[-12,3],[-20,0],[-16,1],[-22,0],[-17,0],[-27,0],[-22,1],[-32,0],[-116,1],[-13,0],[-24,0],[-30,0],[-83,-1],[-35,-1],[-42,0],[-41,1],[-22,-1],[-19,0],[-2,0],[-12,1],[-14,1],[-13,-1],[-40,-1],[-47,0],[-19,0],[-16,0],[-12,0],[-24,0],[-93,0],[-38,0],[-41,0],[-38,0],[-43,0],[-41,-1],[-21,0],[-59,0],[-24,0],[-41,1],[-39,0],[-32,0],[-41,0],[-18,0],[-20,0],[-41,0],[-60,0],[-41,-1],[-17,0],[-13,0],[-34,1],[-17,-1],[-26,0],[-13,0],[-34,0],[-13,0],[-11,0],[-18,0],[-19,2],[-16,0],[-18,0],[-97,-1],[-105,1],[-57,-1],[-41,0],[-23,0],[-20,0],[-41,0],[-14,0],[-19,1]],[[37461,11633],[-16,0],[-12,0],[-61,-1],[-56,1],[-19,0],[-16,0],[-12,0],[-31,-1],[-12,0],[-30,0],[-12,0],[-34,-1],[-26,0],[-22,0],[-28,0],[-16,1],[-15,4],[-14,0],[-26,-6],[-13,-1],[-15,1],[-13,1],[-37,0],[-21,1],[-17,0],[-12,-1],[-37,1],[-20,0],[-12,1],[-21,0],[-13,0],[-25,0],[-14,0],[-24,1],[-12,-1],[-22,1],[-22,0],[-17,0],[-14,0],[-26,0],[-215,-3],[-27,0],[-18,0],[-15,0],[-25,0],[-70,1],[-55,1],[-1,0],[-14,0],[-20,1],[-18,0],[-22,0],[-33,0],[-11,1],[-22,0],[-20,1],[-28,0],[-68,1],[-32,1],[-62,1],[-305,12],[-52,1],[-12,0],[-21,0],[-13,0],[-17,2],[-16,2],[-19,3],[-23,2],[-21,1],[-16,1],[-19,1],[-32,1],[-11,1],[-13,0],[-14,1],[-15,-1],[-18,1],[-13,0],[-17,0],[-17,1],[-31,1],[-21,0],[-34,1],[-20,-1],[-15,1],[-26,0],[-20,-1],[-22,0],[-19,0],[-13,1],[-21,-1],[-29,0],[-14,0],[-1,0],[-118,3],[-290,2],[-163,1],[-126,1],[-62,-3],[-11,1],[-8,0],[-5,1],[-26,-1],[-13,1],[-7,0],[-7,0],[-15,0],[-35,1],[-37,0],[-26,2],[-14,0],[-15,0],[-12,0],[-25,1],[-34,1],[-15,0],[-13,0],[-7,0],[-6,1],[-12,-1],[-19,0],[-12,0],[-3,0],[-15,0],[-16,0],[-17,0],[-14,0],[-18,1],[-1,0],[-11,0],[-15,0],[-17,0],[-15,0],[-20,0],[-13,-3],[-3,0],[-24,1],[-5,0],[-14,2],[-14,0],[-14,1],[-18,-1],[-16,1],[-15,2],[-43,-3],[-26,-1],[-7,0],[-121,0],[-90,-1],[-13,0],[-55,0],[-213,-1],[-14,0],[-140,4],[-16,0],[-20,0],[-26,0],[-15,0],[-14,0],[-13,0],[-24,0],[-23,0],[-17,-1],[-11,1],[-16,-1],[-355,-6],[-96,-1],[-32,0],[-37,1],[-76,0],[-47,3],[-86,1],[-41,-6],[-162,-2],[-37,-1],[-104,2],[-15,0],[-18,0],[-14,0],[-42,-1],[-28,-1],[-14,1],[-22,-1],[-16,0],[-27,0],[-16,0]],[[31217,11670],[-18,-1],[-21,0],[-16,0],[-14,0],[-18,-1],[-14,0],[-22,0],[-19,0],[-16,0],[-17,-1],[-16,0],[-13,-1],[-18,0]],[[30995,11666],[2,817],[-1,314],[-2,765],[0,95],[0,20],[0,51],[0,42],[-1,221],[-1,303],[-1,460],[-3,278],[0,36],[0,43],[0,38],[0,43],[-1,54],[0,35],[0,88],[0,79],[0,48],[0,36],[0,74],[0,50],[-1,59],[0,38],[-1,90],[1,35],[0,52],[0,36],[1,39],[0,216],[-1,132],[0,38],[0,162],[-1,90],[0,105],[0,29],[0,416],[-1,33],[-4,130],[-3,80],[-1,36],[0,944],[-1,923],[0,41],[0,450],[0,69],[0,57],[0,34],[0,38],[0,34],[0,35],[0,57],[0,83],[-1,75],[0,36],[0,74],[0,37],[0,46],[0,55],[0,55],[0,53],[0,66],[-1,38],[1,52],[-1,42],[0,41],[0,48],[-1,57],[0,34],[1,55],[0,43],[-1,69],[0,49],[0,48],[0,92],[-1,60],[0,57],[0,67],[0,137],[-1,38],[0,47],[0,50],[0,35],[0,36],[0,44],[0,57],[-1,54],[0,43],[0,78],[-2,77],[1,123],[0,114],[0,183],[-1,84],[0,53],[0,38],[0,55],[0,34],[-1,54],[0,34],[0,63],[-1,62],[1,58]],[[30995,11666],[-21,0],[-32,0],[-15,0],[-21,0],[-16,0],[-17,0],[-31,0],[-80,-1],[-15,-1],[-30,-1],[-14,1],[-18,0],[-15,1],[-15,-1],[-18,0],[-12,0],[-16,0],[-16,0],[-13,0],[-19,0],[-19,0],[-23,-1],[-12,0],[-13,0],[-21,0],[-21,0],[-21,-1],[-20,0],[-37,0],[-25,-1],[-13,0],[-16,0],[-12,0],[-14,0],[-13,0],[-14,0],[-31,0],[-12,0],[-13,-1],[-17,1],[-24,-1],[-26,0],[-12,0],[-11,0],[-27,0],[-25,1],[-13,-1],[-17,1],[-18,-1],[-20,0],[-21,0],[-19,0],[-16,0],[-17,0],[-12,0],[-17,0],[-14,-1],[-29,1],[-33,-1],[-35,-1],[-12,1],[-14,0],[-22,-1],[-13,0],[-34,0],[-11,0],[-25,0],[-19,0],[-24,-1],[-17,1],[-17,-1],[-56,0],[-26,0],[-14,0],[-11,0],[-19,0],[-23,0],[-15,0],[-16,0],[-25,0],[-23,0],[-21,-1],[-23,0],[-30,0],[-14,0],[-27,-1],[-12,0],[-12,0],[-12,0],[-39,-1],[-12,0],[-42,0],[-15,0],[-15,0],[-27,-1],[-13,0],[-31,0],[-25,0],[-14,0],[-21,0],[-15,0],[-22,0],[-28,0],[-12,-1],[-22,1],[-17,-1],[-8,0],[-39,0],[-12,0],[-12,0],[-15,-1],[-21,1],[-18,0],[-27,-1],[-12,0],[-28,0],[-16,0],[-12,0],[-20,0],[-63,-1],[-19,0],[-22,0],[-49,0],[-34,0],[-19,-1],[-17,1],[-14,-1],[-24,1],[-23,-1],[-22,0],[-29,0],[-27,0],[-13,1],[-12,-1],[-15,0],[-12,0],[-11,-1],[-20,-1],[-21,1],[-19,-1],[-29,-1],[-16,-3],[-14,1],[-19,0],[-12,0],[-30,0],[-16,0],[-12,2],[-27,-2],[-12,0],[-19,-1],[-40,2],[-15,0],[-14,1],[-11,-2],[-17,0],[-17,1],[-34,-2],[-41,1],[-17,1],[-20,1],[-12,-1],[-17,1],[-26,0],[-33,0],[-30,-1],[-14,0],[-15,0],[-12,0],[-29,0],[-21,0],[-21,1],[-13,1],[-14,0],[-18,-1],[-18,0],[-12,0],[-12,0],[-15,-1],[-30,0],[-28,-1],[-25,0],[-13,0],[-38,-2],[-19,1],[-24,-1],[-13,0],[-24,0],[-23,-1],[-19,0],[-21,0],[-13,0],[-21,0],[-19,0],[-18,0],[-12,0],[-17,0],[-18,0],[-17,0],[-52,-1],[-29,0],[-23,-1],[-24,0],[-37,0],[-15,0],[-19,0],[-12,-1],[-12,0],[-12,1],[-14,0],[-19,0],[-328,-4],[-104,4],[-32,0],[-25,0],[-21,0],[-14,1],[-22,0],[-14,0],[-21,1],[-17,0],[-17,0],[-19,0],[-16,-1],[-12,-2],[-13,-1],[-23,1],[-23,-1],[-25,0],[-26,0],[-29,0],[-26,-1],[-45,-2],[-191,-1],[-74,-1],[-13,0],[-78,0],[-15,0],[-166,0],[-325,-1],[-93,0],[-18,0],[-106,-1],[-108,0],[-114,3],[-176,-2],[-85,1],[-12,1],[-23,-1],[-57,0],[-25,-2],[-12,0],[-12,-1],[-22,2],[-16,0],[-22,1],[-19,-1],[-20,0],[-21,0],[-13,0],[-21,0],[-13,-1],[-18,0],[-25,0],[-16,0],[-21,-1],[-84,-2],[-16,0],[-223,-1],[-37,0],[-5,0],[-225,0],[-357,-1]],[[22893,11625],[-1,3022],[0,3385],[0,1341],[0,605],[0,3240]],[[76442,23254],[0,-73],[0,-34],[0,-8],[0,-26],[0,-54],[0,-35],[0,-37],[0,-35],[0,-34],[0,-100],[0,-50],[0,-91],[0,-58],[0,-36],[0,-68],[0,-41],[0,-44],[0,-35],[0,-36],[0,-41],[0,-35],[0,-58],[0,-47],[0,-36],[0,-61],[0,-45],[0,-41],[0,-50],[0,-37],[0,-45],[0,-57],[0,-56],[0,-32],[0,-9],[0,-38],[0,-36],[0,-10],[0,-44],[0,-44],[0,-61],[0,-36],[0,-1],[0,-116],[0,-127],[0,-38],[0,-38],[0,-39],[0,-89],[-1,-68],[0,-39],[0,-46],[0,-38],[0,-101],[0,-60],[0,-39],[0,-51],[0,-51],[0,-107],[0,-40],[0,-36],[0,-47],[0,-58],[0,-34],[0,-46],[0,-38],[0,-58],[0,-44],[0,-44],[0,-41],[0,-44],[0,-38],[0,-37],[0,-46],[0,-55],[0,-37],[0,-61],[0,-45],[0,-34],[0,-35],[-1,-59],[1,-42],[0,-52],[-1,-120],[1,-84],[0,-56],[-1,-101],[0,-53],[0,-36],[0,-34],[0,-141],[0,-33],[3,-43],[0,-47],[0,-5],[-1,-43],[0,-6],[0,-95],[0,-40],[-1,-37],[-1,-173],[0,-40],[0,-94],[0,-55],[0,-74],[0,-57],[0,-35],[0,-63],[0,-40],[0,-36],[0,-93],[0,-46],[-1,-82],[0,-485],[0,-8],[0,-58],[0,-43],[0,-39],[0,-59],[0,-123],[0,-46],[0,-42],[0,-83],[0,-45],[0,-153],[0,-88],[0,-186],[0,-132],[0,-91],[-1,-88],[0,-118],[0,-57],[0,-65],[0,-58],[0,-117],[0,-125],[0,-107],[0,-39],[0,-153],[0,-65],[0,-57],[0,-39],[0,-80],[0,-54],[0,-93],[0,-88],[0,-95],[0,-74],[0,-35],[0,-34],[0,-60],[0,-40],[0,-157],[0,-44],[1,-208],[0,-34],[0,-38],[1,-50],[-1,-92],[-1,-197],[0,-112],[0,-36],[0,-37],[0,-108],[0,-117],[0,-34],[0,-35],[0,-23],[0,-17],[0,-37],[0,-44],[-1,-134],[2,-147],[0,-94],[1,-36],[0,-60],[1,-132],[0,-3],[0,-50],[0,-41],[0,-3],[0,-54],[0,-148],[0,-16],[-2,-35]],[[76439,11664],[-22,-2],[-1,0],[-53,6],[-36,1],[-22,0],[-37,-1],[-46,-1],[-82,1],[-22,0],[-16,0],[-21,0],[-50,1],[-27,0],[-22,0],[-22,-2],[-48,0],[-1,0],[-83,0],[-28,0],[-12,0],[-101,0],[-80,4],[-36,0],[-26,0],[-30,-1],[-30,0],[-26,1],[-26,0],[-16,0],[-42,1],[-26,-1],[-38,1],[-12,-1],[-30,1],[-62,0],[-26,0],[-29,0],[-15,-1],[-17,1],[-88,0],[-12,0],[-29,0],[-34,0],[-32,0],[-14,0],[-26,1],[-22,-1],[-18,0],[-42,0],[-28,0],[-52,0],[-17,0],[-21,0],[-38,0],[-41,0],[-39,-1],[-20,0],[-19,1],[-41,0],[-18,0],[-19,0],[-33,-1],[-2,0],[-11,1],[-12,0],[-19,1],[-18,-1],[-19,0],[-20,0],[-16,0],[-17,-1],[-12,1],[-11,-1],[-42,-1],[-39,0],[-20,1],[-19,0],[-22,-1],[-18,0],[-41,0],[-1,0],[-12,0],[-31,-1],[-19,0],[-14,0],[-22,0],[-32,0],[-29,0],[-19,0],[-16,-1],[-14,1],[-14,0],[-50,-1],[-24,1],[-15,0],[-24,0],[-21,0],[-30,0],[-29,0],[-32,-1],[-26,1],[-33,0],[-15,0],[-19,0],[-21,0],[-44,0],[-25,0],[-12,0],[-15,0],[-11,0],[-12,1],[-12,-1],[-61,0],[-29,0],[-23,1],[-24,-1],[-22,0],[-24,1],[-19,0],[-21,-1],[-18,0],[-18,1],[-12,-1],[-15,0],[-27,0],[-39,0],[-21,0],[-32,0],[-29,0],[-27,0],[-29,0],[-19,0],[-25,-1],[-28,1],[-18,0],[-14,0],[-27,0],[-12,0],[-17,0],[-23,0],[-40,0],[-23,0],[-11,0],[-12,0],[-18,1],[-12,-1],[-16,0],[-14,0],[-15,1],[-108,0],[-60,0],[-20,-1],[-12,0],[-17,0],[-13,0],[-32,0],[-35,0],[-22,0],[-12,0],[-13,0],[-61,0],[-12,0],[-17,0],[-35,-1],[-13,0],[-28,0],[-30,0],[-20,0],[-42,1],[-21,-1],[-11,1],[-18,0],[-31,0],[-50,0],[-16,0],[-17,0],[-16,-1],[-20,0],[-33,1],[-13,-1],[-12,0],[-15,-2],[-27,1],[-21,-4],[-16,-2],[-18,7],[-8,0],[-5,0],[-22,-1],[-55,2],[-22,0],[-14,0],[-15,1],[-11,0],[-34,1],[-19,0],[-14,0],[-22,1],[-65,-3]],[[71269,11669],[-26,1],[-12,-1]],[[71231,11669],[0,104],[-1,113],[0,90],[0,76],[0,41],[0,59],[0,119],[1,71],[-1,101],[0,49],[0,81],[0,61],[0,89],[0,5],[0,52],[0,64],[0,76],[0,39],[0,105],[0,51],[0,107],[0,47],[0,101],[0,139],[0,71],[0,38],[0,36],[0,75],[0,77],[0,78],[0,78],[0,79],[0,41],[0,1],[0,92],[-1,101],[0,37],[0,41],[1,78],[-1,78],[0,56],[0,91],[0,42],[0,34],[0,65],[0,79],[0,159],[0,39],[0,116],[-1,152],[0,34],[0,41],[0,76],[0,38],[0,39],[0,53],[0,120],[0,36],[0,235],[0,88],[-1,74],[0,60],[1,74],[-1,56],[0,54],[0,61],[0,39],[0,121],[0,24],[0,15],[0,70],[0,41],[0,111],[0,62],[0,50],[0,57],[0,79],[1,62],[-1,179],[0,70],[0,1],[0,53],[0,63],[0,36],[0,41],[0,34],[0,48],[0,67],[0,38],[0,43],[0,39],[0,145],[0,62],[0,68],[0,108],[-1,79],[0,41],[0,97],[0,93],[0,51],[0,202],[0,39],[0,68],[0,37],[0,45],[0,59],[0,37],[0,33],[0,33],[0,39],[0,52],[0,57],[0,46],[0,87],[0,77],[0,41],[0,88],[0,93],[0,40],[-1,96],[0,125],[1,53],[0,78],[0,38],[0,48],[0,63],[-1,93],[0,37],[0,33],[0,38],[0,150],[0,8],[0,57],[0,34],[0,36],[0,101],[0,78],[0,90],[0,33],[0,42],[0,56],[0,42],[0,8],[0,27],[-3,32],[2,34],[0,40],[1,35],[0,60],[0,34],[0,102],[0,52],[0,61],[0,48],[0,61],[-1,56],[0,64],[0,113],[0,77],[0,70],[0,41],[0,81],[0,73],[0,37],[0,42],[0,138],[0,88],[0,52],[-1,37],[0,151],[0,41],[0,38],[0,38],[0,82],[0,67]],[[81654,17429],[-1,-58],[0,-53],[0,-77],[0,-47],[0,-37],[-1,-43],[0,-72],[0,-43],[0,-39],[-1,-215],[0,-81],[0,-45],[-1,-157],[0,-52],[-1,-66],[0,-45],[0,-39],[0,-35],[-1,-61],[0,-56],[0,-41],[0,-65],[0,-57],[-1,-57],[0,-83],[0,-43],[0,-54],[-1,-84],[0,-46],[0,-51],[0,-34],[0,-34],[-1,-77],[0,-63],[0,-69],[0,-53],[0,-52],[-1,-41],[0,-92],[0,-36],[0,-59],[-1,-36],[0,-83],[0,-38],[0,-40],[-1,-39],[0,-50],[0,-43],[0,-45],[0,-36],[0,-41],[0,-86],[0,-40],[0,-53],[0,-38],[0,-88],[1,-60],[-1,-50],[0,-48],[1,-75],[0,-156],[0,-93],[1,-177],[0,-12],[0,-161],[0,-59],[-1,-100],[0,-35],[-2,-37],[2,-71],[0,-8],[0,-25],[0,-54],[0,-40],[1,-40],[0,-20],[-1,-44],[0,-42],[0,-39],[0,-19],[1,-46],[0,-47],[0,-73],[-1,-45],[1,-54],[0,-51],[-1,-51],[1,-33],[0,-43],[0,-122],[0,-43],[-1,-74],[1,-77],[0,-51],[0,-9],[0,-7],[0,-39],[0,-15],[0,-52],[1,-73],[1,-49],[-20,0]],[[81626,11642],[-1,0],[-13,0],[-105,-2],[-80,-1],[-25,0],[-19,0],[-34,-1],[-26,0],[-4,0],[-16,0],[-81,0],[-13,0],[-19,0],[-23,0],[-20,0],[-15,0],[-23,0],[-73,1],[-13,-1],[-12,1],[-13,0],[-15,0],[-20,-1],[-15,1],[-30,-1],[-15,0],[-18,0],[-15,0],[-25,0],[-19,0],[-13,0],[-14,1],[-13,-1],[-11,1],[-14,0],[-14,-1],[-17,0],[-12,0],[-13,0],[-21,0],[-12,0],[-12,-1],[-12,1],[-25,0],[-21,0],[-16,0],[-15,1],[-12,0],[-16,1],[-11,0],[-12,0],[-12,1],[-27,1],[-15,0],[-12,0],[-21,1],[-12,0],[-18,0],[-16,-1],[-19,0],[-22,-1],[-11,-1],[-14,0],[-27,0],[-14,0],[-17,0],[-18,0],[-17,0],[-13,0],[-12,0],[-11,0],[-23,0],[-12,0],[-12,0],[-13,0],[-25,0],[-19,0],[-25,0],[-20,1],[-15,0],[-13,0],[-13,0],[-17,1],[-12,0],[-13,0],[-12,0],[-15,0],[-14,0],[-27,0],[-29,0],[-33,0],[-26,0],[-20,0],[-13,0],[-12,0],[-25,0],[-15,0],[-12,0],[-13,0],[-12,0],[-15,-1],[-25,0],[-20,0],[-19,1],[-13,0],[-24,0],[-20,0],[-12,1],[-15,0],[-19,0],[-14,0],[-20,0],[-19,0],[-14,0],[-14,0],[-19,0],[-18,1],[-14,-1],[-44,0],[-35,1],[-23,0],[-22,0],[-24,0],[-11,0],[-22,0],[-22,0],[-17,0],[-18,0],[-16,1],[-17,0],[-16,0],[-37,0],[-13,0],[-18,0],[-13,0],[-20,0],[-15,0],[-13,1],[-12,0],[-1,0],[-13,0],[-32,0],[-22,0],[-28,0],[-18,0],[-31,-1],[-18,1],[-12,0],[-12,0],[-18,0],[-13,0],[-21,0],[-14,0],[-14,0],[-36,2],[-22,0],[-9,1],[-5,0],[-11,0],[-10,1],[-3,0],[-21,-1],[-33,1],[-30,0],[-13,0],[-21,0],[-15,1],[-24,0],[-16,0],[-11,0],[-24,-1],[-26,0],[-13,0],[-12,0],[-14,0],[-24,0],[-17,1],[-30,-1],[-20,0],[-18,1],[-17,0],[-16,0],[-12,0],[-27,0],[-13,1],[-12,0],[-20,0],[-14,0],[-16,0],[-28,1],[-13,-1],[-16,1],[-13,-1],[-17,0],[-12,0],[-19,0],[-11,1],[-22,0],[-14,0],[-12,0],[-19,0],[-25,0],[-40,0],[-13,0],[-35,0],[-22,0],[-16,0],[-16,0],[-19,1],[-59,0],[-26,0],[-11,0],[-30,0],[-13,0],[-12,0],[-17,1],[-15,0],[-13,0],[-13,0],[-10,0],[-10,0],[-12,0],[-17,1],[-13,0],[-12,0],[-31,1],[-19,0],[-19,0],[-12,0],[-23,0],[-13,0],[-19,1],[-22,0],[-13,0],[-11,0],[-16,0],[-15,0],[-22,1],[-17,0],[-14,-1],[-23,0],[-13,0],[-12,1],[-18,0],[-21,0],[-21,0],[-44,1],[-12,0],[-14,0],[-20,0],[-18,1],[-23,0],[-12,0],[-13,0],[-17,0],[-18,0],[-12,0],[-25,0],[-13,0],[-21,1],[-18,0],[-13,0],[-20,0],[-11,0],[-31,0],[-20,1],[-14,0],[-19,0],[-11,0],[-26,0],[-16,0],[-20,1],[-18,0],[-14,0],[-18,-1],[-12,0],[-27,1]],[[71231,11669],[-28,-1],[-14,1],[-15,-1],[-40,0],[-12,-1],[-31,0],[-13,0],[-13,0],[-13,-1],[-15,0],[-12,0],[-12,0],[-17,0],[-19,0],[-35,1],[-15,0],[-17,0],[-15,1],[-11,0],[-26,0],[-13,0],[-17,0],[-17,0],[-16,0],[-19,0],[-11,-1],[-17,0],[-12,0],[-14,-1],[-17,0],[-16,0],[-12,-1],[-36,1],[-13,1],[-6,0],[-15,0],[-13,0],[-22,0],[-28,1],[-26,-1],[-17,0],[-35,0],[-40,0],[-39,0],[-22,0],[-15,0],[-21,0],[-19,0],[-24,0],[-39,0],[-14,0],[-15,0],[-38,0],[-29,0],[-11,0],[-3,0],[-17,0],[-14,0],[-16,0],[-16,-1],[-16,0],[-11,0],[-17,0],[-22,0],[-25,0],[-14,1],[-14,0],[-12,0],[-16,0],[-15,0],[-15,0],[-25,0],[-13,0],[-14,0],[-20,1],[-15,1],[-35,0],[-37,0],[-13,-1],[-22,0],[-16,0],[-17,0],[-16,0],[-17,0],[-13,0],[-47,0],[-16,0],[-23,0],[-16,0],[-14,0],[-13,0],[-20,0],[-36,1],[-19,0],[-15,0],[-24,0],[-18,0],[-4,0],[-30,0],[-17,0],[-23,0],[-14,0],[-40,1],[-21,0],[-22,0],[-30,0],[-40,1],[-26,0],[-12,0],[-26,1],[-41,-1],[-16,1],[-41,0],[-22,0],[-25,1],[-19,-1],[-21,1],[-14,0],[-27,0],[-19,0],[-20,0],[-53,0],[-14,0],[-16,0],[-13,0],[-12,0],[-20,0],[-28,-1],[-14,1],[-21,0],[-23,-1],[-12,1],[-19,0],[-3,0],[-13,0],[-12,-1],[-12,0],[-12,-1],[-30,0],[-14,0],[-19,0],[-26,-1],[-19,0],[-18,0],[-2,0],[-27,-1],[-39,0],[-17,0],[-14,0],[-15,0],[-19,0],[-16,0],[-20,0],[-15,-1],[-12,0],[-43,0],[-33,0],[-26,0],[-14,0],[-13,0],[-15,0],[-15,-2],[-16,2],[-20,0],[-13,0],[-20,1],[-13,4],[-26,1],[-19,-1],[-15,-6],[-13,0],[-15,0],[-30,1],[-17,-1],[-61,1],[-35,0],[-12,-1],[-21,1],[-12,0],[-12,0],[-23,0],[-37,0],[-16,-1],[-17,-1],[-1,0],[-18,1],[-16,1],[-28,0],[-13,0],[-33,0],[-19,0],[-15,-1],[-19,0],[-21,-1],[-22,1],[-16,0],[-11,0],[-12,-1],[-25,1],[-13,-1],[-13,1],[-18,0],[-12,-1],[-17,-1],[-13,1],[-22,0],[-15,0],[-17,0],[-14,0],[-12,5],[-21,-1],[-14,-6],[-28,1],[-16,-1],[-17,1],[-34,0],[-31,-1],[-19,0],[-15,0],[-30,0],[-32,0],[-18,0],[-21,0],[-18,0],[-27,0],[-32,-1],[-23,1],[-18,0],[-14,-1],[-15,0],[-53,1],[-77,-1],[-28,1],[-13,0],[-34,0],[-12,0],[-19,0],[-56,0],[-16,0],[-25,0],[-18,0],[-40,0],[-31,-1],[-15,0],[-15,1],[-25,-2],[-12,2],[-12,-1],[-34,0],[-14,0],[-14,0],[-20,0]],[[66091,11663],[-14,0],[-22,0],[-15,0]],[[60943,11664],[-35,0]],[[60908,11664],[-20,0],[-12,0],[-17,1],[-32,-1],[-57,1],[-22,0],[-23,0],[-20,0],[-13,-1],[-24,0],[-85,1],[-25,-1],[-50,0],[-44,0],[-30,-1],[-12,0],[-27,0],[-30,0],[-60,0],[-14,0],[-28,-1],[-21,0],[-40,0],[-57,0],[-18,0],[-20,0],[-31,0],[-20,-1],[-26,2],[-51,0],[-12,0],[-16,0],[-21,1],[-38,0],[-19,0],[-14,0],[-29,0],[-65,0],[-28,0],[-33,0],[-27,0],[-35,0],[-13,0],[-11,0],[-13,0],[-68,1],[-26,0],[-44,0],[-12,-1],[-30,0],[-14,0],[-28,0],[-20,0],[-29,0],[-36,0],[-31,0],[-33,-1],[-16,0],[-8,0],[-14,1],[-30,0],[-33,0],[-32,1],[-34,1],[-31,0],[-44,-1],[-22,0],[-27,0],[-20,0],[-23,0],[-35,0],[-34,-1],[-33,1],[-23,0],[-12,0],[-11,0],[-23,0],[-32,-1],[-39,0],[-25,0],[-32,2],[-46,0],[-19,1],[-34,0],[-30,0],[-13,0],[-41,-1],[-20,1],[-12,0],[-16,0],[-31,0],[-1,0],[-19,-2],[-102,5],[-74,4],[-22,-3],[-64,-3],[-15,0],[-19,0],[-16,0],[-52,0],[-22,1],[-16,0],[-13,-1],[-18,0],[-22,0],[-13,0],[-39,0],[-17,0],[-2,0],[-41,0],[-18,0],[-14,0],[-27,0],[-21,0],[-20,0],[-28,0],[-33,0],[-66,0],[-32,1],[-23,0],[-18,0],[-51,0],[-24,0],[-29,0],[-26,0],[-22,0],[-42,1],[-14,-1],[-11,-4],[-16,3],[-15,1],[-27,0],[-23,1],[-24,-1],[-35,0],[-13,0],[-14,1],[-15,0],[-14,0],[-13,0],[-12,0],[-27,0],[-17,0],[-16,0],[-13,0],[-15,-1],[-14,0],[-17,0],[-20,1],[-13,0],[-18,0],[-22,0],[-11,0],[-26,1],[-23,0],[-28,-1],[-12,1],[-21,0],[-14,0],[-19,0],[-13,0],[-26,0],[-26,0],[-13,0],[-23,0],[-28,0],[-35,0],[-18,0],[-45,0],[-12,1],[-39,0],[-34,0],[-19,0],[-16,0],[-11,0],[-11,0],[-19,-1],[-24,1],[-29,0],[-24,1],[-21,1],[-13,-1],[-11,0],[-21,0],[-1,0],[-29,0],[-13,0],[-84,0],[-38,0],[-19,0],[-8,0],[-34,0],[-29,0],[-34,0],[-18,0],[-34,1],[-34,0],[-14,0],[-13,0]],[[55733,11674],[0,67],[0,41],[0,53],[0,47],[0,36],[0,40],[0,42],[0,65],[0,109],[0,44],[0,87],[0,42],[0,44],[0,41],[0,143],[0,49],[0,39],[0,48],[0,51],[0,48],[0,64],[0,58],[0,54],[0,63],[0,107],[0,41],[0,56],[0,48],[0,49],[0,50],[0,207],[0,36],[0,50],[0,96],[0,50],[0,47],[0,51],[0,53],[0,104],[0,97],[0,49],[0,100],[0,55],[0,39],[0,106],[0,50],[0,201],[0,51],[0,51],[0,51],[0,113],[0,37],[0,51],[0,51],[0,84],[-1,99],[1,65],[0,98],[0,44],[0,71],[0,20],[0,18],[-1,51],[1,73],[0,69],[0,66],[0,71],[-1,91],[0,45],[0,52],[0,52],[0,52],[0,50],[0,53],[0,68],[0,39],[0,49],[0,49],[0,38],[0,77],[0,33],[0,50],[0,50],[0,51],[0,68],[0,76],[0,50],[0,50],[0,60],[0,41],[0,119],[0,49],[0,51],[0,92],[0,144],[0,85],[0,46],[0,105],[0,46],[1,78],[0,79],[0,43],[0,65],[0,60],[0,62],[0,51],[0,68],[0,130],[0,57],[0,65],[0,121],[0,46],[0,126],[0,48],[0,60],[0,44],[0,96],[0,106],[0,49],[0,54],[0,54],[0,43],[0,41],[0,68],[0,10],[0,40],[0,60],[0,69],[0,37],[0,55],[0,98],[0,75],[0,74],[1,63],[0,42],[-1,45],[0,55],[0,47],[0,85],[0,54],[0,42],[1,89],[0,55],[0,37],[0,42],[0,93],[0,118],[0,47],[0,57],[0,121],[0,43],[0,41],[0,70],[0,46],[0,60],[1,35],[0,44],[0,50],[0,60],[0,46],[0,59],[0,58],[-2,117]],[[55733,11674],[-41,0],[-19,0],[-32,0],[-16,0],[-58,0],[-51,0],[-20,1],[-26,-1],[-66,1],[-56,0],[-19,0],[-30,0],[-27,0],[-15,-1],[-80,-1],[-19,0],[-76,1],[-48,0],[-37,0],[-29,0],[-103,-1],[-31,0],[-54,-1],[-25,0],[-24,0],[-49,0],[-34,0],[-119,0],[-90,0],[-53,0],[-63,0],[-34,0],[-47,0],[-30,0],[-32,0],[-23,0],[-31,0],[-20,0],[-94,0],[-14,0],[-32,0],[-12,0],[-19,0],[-43,-1],[-15,-1],[-49,-1],[-44,1],[-64,1],[-29,0],[-19,0],[-105,1],[-1,0],[-12,0],[-62,0],[-23,0],[-22,-1],[-21,0],[-20,-1],[-16,0],[-31,1],[-18,1],[-46,-1],[-12,0],[-15,0],[-21,0],[-18,-1],[-30,1],[-57,-1],[-13,1],[-15,1],[-16,2],[-17,1],[-1,0],[-17,3],[-23,2],[-15,2],[-18,2],[-28,3],[-39,6],[-20,-1],[-26,-2],[-51,-6],[-15,-3],[-14,-8],[-32,-1],[-40,0],[-16,0],[-27,1],[-110,1],[-85,2],[-13,0],[-102,2],[-16,0],[-39,1],[-52,1],[-18,0],[-52,1],[-14,0],[-32,-3],[-7,0],[-30,0],[-51,6],[-15,1],[-169,-2],[-3,0],[-19,0],[-42,-1],[-35,1],[-19,-1],[-22,0],[-12,-1],[-16,0],[-35,4],[-29,1],[-21,2],[-17,0],[-42,1],[-26,0],[-43,0],[-17,-1],[-67,-3],[-20,0],[-41,1],[-78,1],[-35,1],[-37,1],[-13,0],[-66,0],[-4,0],[-43,-2],[-102,3],[-87,2],[-34,4],[-12,-7],[-13,8],[-17,7],[-18,-5],[-12,-6],[-21,-4],[-19,0],[-71,1],[-29,0],[-20,0],[-23,1],[-38,-3]],[[50576,11688],[-40,3],[-14,0],[-68,0],[-13,0]],[[97207,8719],[-4,0],[-20,0],[-2,0],[-107,0],[-88,-1],[-76,0],[-56,1],[-18,0],[-57,-5],[-16,0],[-21,-1],[-16,1],[-21,1],[-13,1],[-13,0],[-46,-3],[-14,-1],[-17,0],[-17,-1],[-15,-1],[-17,1],[-33,2],[-44,2],[-15,0],[-18,1],[-16,0],[-18,0],[-16,0],[-26,0],[-16,0],[-12,0],[-20,1],[-22,1],[-27,0],[-18,1],[-28,0],[-18,0],[-17,1],[-15,0],[-27,1],[-43,1],[-16,0],[-17,0],[-28,1],[-26,1],[-23,-1],[-14,1],[-22,0],[-56,1],[-16,0],[-19,1],[-16,0],[-7,0],[-10,0],[-24,0],[-14,0],[-23,0],[-24,1],[-14,-1],[-14,0],[-12,0],[-23,-1],[-13,1],[-20,-1],[-26,0],[-22,0],[-45,-1],[-40,-1],[-118,-1],[-22,-1],[-26,0],[-14,1],[-46,0],[-27,-1],[-23,0],[-24,-1],[-27,0],[-29,-1],[-27,0],[-43,0],[-37,0],[-12,0],[-37,-1],[-34,0],[-26,-1],[-56,0],[-27,0],[-13,0],[-92,-1],[-13,-1],[-31,1],[-12,-1],[-53,0],[-19,0],[-13,0],[-27,-1],[-15,1],[-15,0],[-16,-2],[-25,0],[-65,-1],[-37,-1],[-15,0],[-20,1],[-17,-1],[-30,0],[-18,0],[-17,0],[-24,0],[-16,-2],[-16,1],[-3,0],[-43,2],[-13,0],[-66,-2],[-76,-2],[-20,1],[-47,-1],[-22,0],[-17,-1],[-24,1],[-10,-1],[-1,0],[-25,-1],[-37,0],[-14,0],[-47,-1],[-13,-1],[-34,0],[-18,-1],[-16,0],[-19,0],[-17,0],[-32,-1],[-29,-1],[-22,0],[-40,-1],[-22,0],[-48,-1],[-77,-1],[-37,-1],[-34,0],[-34,-1],[-44,1],[-20,-1],[-27,1],[-54,0],[-38,0],[-14,0],[-37,1],[-17,0],[-11,1],[-39,0],[-37,0],[-22,0],[-53,1],[-54,0],[-18,1],[-198,1],[-62,1],[-18,0],[-37,-1],[-27,1],[-72,0],[-13,0],[-21,0],[-21,0],[-37,0],[-24,0],[-15,0],[-16,-1],[-19,0],[-13,0],[-28,0],[-16,-3],[-13,1],[-19,2],[-13,0],[-19,1],[-14,0],[-32,-1],[-14,0],[-16,0],[-11,0],[-3,-1],[-40,4]],[[91973,8705],[-28,-1],[-92,4],[-24,0],[-65,2],[-12,0],[-15,0],[-40,2],[-21,0],[-21,2],[-12,-1],[-13,1],[-68,3],[-20,1],[-12,0],[-23,0],[-38,1],[-35,1],[-38,1],[-14,1],[-16,0],[-25,1],[-15,1]],[[91326,8724],[0,89],[0,46],[0,65],[0,57],[0,79],[0,38],[0,108],[0,89],[0,63],[-1,67],[0,69],[0,49],[0,51],[0,93],[-1,150],[0,39],[0,37],[0,43],[0,40],[-1,41],[0,91],[0,37],[0,1],[0,214],[0,250],[0,37],[0,192],[-1,153],[0,42],[0,51],[0,62],[0,41],[0,64],[0,1],[0,103],[0,115],[0,86],[0,45],[13,1],[0,51],[0,190],[-1,67],[0,135],[0,39],[-1,256],[0,122],[0,74],[0,32],[0,53],[0,208],[0,222],[-1,234],[0,52],[0,91],[0,106],[0,99],[0,72],[0,36],[0,60],[0,132],[-1,84],[0,76],[0,39],[-1,306],[0,60],[0,45],[-1,250],[0,57],[-1,37],[0,72],[0,58],[0,57],[0,37],[-2,341],[0,47],[0,50],[-1,216],[0,67],[0,35],[0,60],[0,100],[0,35],[0,117],[0,249],[0,42],[0,110],[0,35],[0,41],[0,255],[-1,261],[0,68],[0,34],[0,35],[-1,84]],[[95406,17436],[9,-39],[7,-36],[13,24],[9,15],[4,9],[22,39],[16,28],[23,42],[19,33],[24,40],[16,94],[7,70],[-15,79],[-6,37],[-1,38],[-1,34],[-1,36],[1,60],[7,107],[20,186],[5,173],[3,34],[26,40],[55,84],[20,11],[51,35],[26,17],[78,2],[60,-158],[13,-50],[37,-213],[45,-70],[27,-42],[2,-53],[15,-60],[11,-44],[8,-85],[5,-41],[-12,-123],[-9,-118],[-9,-118],[-9,-125],[-39,-119],[-30,-89],[-72,-79],[-23,-19],[-14,-12],[-5,-4],[-50,-44],[-46,-36],[-6,-5],[-23,-19],[-27,-22],[-55,-45],[-25,-19],[-41,-56],[-20,-17],[-19,-16],[-1,-1],[-11,-7],[14,-60],[4,-16],[8,-37],[1,-2],[10,-39],[5,-29],[2,-11],[7,-49],[1,-12],[5,-57],[1,-21],[1,-19],[2,-50],[0,-8],[0,-38],[0,-22],[-1,-56],[-2,-41],[-6,-79],[-4,-66],[-5,-52],[-3,-30],[-1,-35],[-2,-50],[2,-54],[2,-45],[20,-148],[9,-34],[8,-34],[67,-144],[1,-2],[26,-44],[7,-11],[2,-3],[45,-58],[35,-46],[13,-22],[32,-57],[19,-40],[29,-67],[15,-36],[14,-38],[1,-3],[3,-9],[18,-56],[21,-73],[21,-75],[13,-45],[11,-51],[9,-50],[5,-28],[1,-3],[7,-40],[3,-21],[7,-52],[3,-38],[1,-9],[1,-71],[-2,-65],[0,-5],[-3,-53],[-7,-70],[0,-1],[-19,-107],[-9,-52],[-7,-51],[-12,-87],[-7,-79],[-1,-18],[3,-36],[6,-81],[14,-96],[4,-30],[69,-256],[13,-52],[2,-6],[26,-101],[35,-163],[28,-146],[14,-168],[6,-107],[1,-13],[-1,-14],[-2,-24],[-3,-53],[-1,-16],[0,-40],[1,-20],[1,-60],[1,-52],[16,-114],[22,-88],[10,-37],[12,-35],[2,-8],[17,-37],[15,-32],[7,-13],[11,-22],[10,-26],[11,-27],[22,-53],[11,-43],[9,-32],[5,-22],[2,-9],[6,-28],[14,-60],[5,-38],[7,-50],[5,-56],[3,-39],[1,-16],[3,-30],[-1,-31],[0,-3],[-1,-36],[-4,-62],[-9,-71],[-6,-14],[-9,-22],[-25,-84],[-2,-7],[-6,-12],[-16,-28],[-4,-7],[-44,-57],[-45,-38],[-32,-24],[-49,-29],[-36,-33],[-38,-60],[-28,-39],[-33,-104],[-13,-119],[0,-4],[0,-4],[-1,-38],[-2,-48],[0,-12],[8,-62],[14,-46],[20,-52],[32,-41],[31,-14],[32,-15],[8,-3],[35,11],[68,54],[76,77],[50,53],[24,30],[32,22],[28,20],[20,11],[6,3],[25,3],[20,-5],[12,-3],[3,-1],[9,-5],[11,-6],[9,-4],[32,-32],[9,-12],[14,-18],[29,-33],[9,-13],[13,-16],[9,-20],[14,-30],[11,-26],[10,-26],[11,-22],[3,-7],[15,-32],[24,-57],[25,-40],[7,-11],[11,-11],[16,-16],[5,-5],[32,-37],[26,-1],[3,0],[53,-3],[9,0],[35,-1],[30,-10],[15,-11],[21,-17],[8,-7],[24,-24],[39,-53],[37,-83],[25,-70],[20,-83],[7,-91],[0,-72],[-6,-90],[-13,-84],[-25,-141],[-17,-118],[0,-102],[15,-98],[8,-45],[21,-50]],[[86788,17409],[0,-69],[1,-176],[0,-44],[-1,-200],[0,-44],[0,-51],[-1,-47],[0,-108],[1,-53],[-1,-47],[1,-60],[0,-66],[-1,-482],[1,-62],[0,-53],[0,-67],[-1,-62],[0,-44],[0,-117],[1,-79],[0,-56],[0,-80],[-1,-132],[1,-57],[0,-63],[-1,-60],[3,-38],[1,-23],[1,-21],[-1,-74],[0,-2],[-1,-115],[-3,-244],[0,-46],[0,-66],[0,-44],[0,-50],[0,-38],[0,-59],[0,-41],[0,-50],[0,-89],[0,-43],[0,-3],[0,-87],[0,-53],[0,-35],[0,-50],[0,-36],[0,-55],[0,-39],[0,-38],[0,-44],[0,-51],[0,-43],[0,-90],[0,-48],[0,-46],[0,-44],[0,-52],[0,-49],[0,-58],[-2,-96],[2,-75],[0,-85],[0,-41],[0,-150],[0,-44],[0,-48],[0,-58],[0,-44],[0,-100],[0,-61],[0,-37],[0,-50],[0,-78],[0,-120],[0,-117],[-1,-243],[0,-107],[0,-55],[1,-89],[3,-204],[-3,-62],[0,-44],[0,-41],[0,-40],[0,-85],[0,-36],[0,-64],[0,-34],[0,-51],[0,-45],[0,-34],[0,-42],[0,-69],[0,-69],[0,-39],[0,-59],[0,-39],[0,-74],[0,-45],[0,-39],[0,-50],[1,-36],[0,-6],[-1,-33],[0,-45],[0,-102],[0,-44],[0,-68],[0,-46],[0,-38],[0,-44],[0,-76],[0,-52],[0,-60],[0,-45],[0,-44],[0,-35],[0,-43],[0,-42],[0,-43],[0,-43],[0,-40],[0,-67],[0,-57],[0,-61],[0,-64],[0,-66],[0,-34],[0,-41]],[[86787,8728],[0,-147],[0,-87],[0,-2],[0,-35],[0,-41],[0,-50],[0,-35],[1,-43],[1,-41],[0,-24],[1,-38],[0,-43],[-1,-61],[0,-54],[0,-34],[0,-50],[-1,-180],[0,-111],[0,-39],[0,-39],[0,-38],[0,-81],[0,-90],[0,-76],[0,-35],[0,-52],[0,-43],[0,-77],[0,-44],[0,-76],[1,-36],[-1,-150],[0,-48],[0,-49],[0,-33],[0,-107],[0,-65],[0,-40],[0,-49],[0,-69],[0,-70],[1,-66],[-1,-109],[0,-34],[0,-44],[0,-48],[0,-48],[0,-71],[0,-33],[-1,-55],[0,-62],[1,-42],[0,-43],[-1,-62],[0,-42],[0,-139],[0,-86],[0,-58],[0,-86],[0,-44],[0,-55],[1,-43],[-1,-35],[0,-74],[-1,-163],[0,-15],[1,-47],[1,-40],[0,-33],[-1,-69],[0,-62],[0,-42],[0,-35],[0,-34],[0,-63],[0,-107],[-1,-55],[0,-55],[0,-39],[0,-56],[1,-50],[-1,-54],[0,-46],[0,-45],[0,-44],[0,-43],[0,-49],[0,-36],[0,-35],[0,-88],[1,-53],[0,-70],[0,-79],[0,-54],[0,-25],[-2,-40],[2,-39],[1,-40],[-2,-37],[0,-45],[0,-58],[0,-47],[0,-80],[0,-35],[0,-42],[0,-38],[0,-76],[0,-60],[0,-49],[0,-43],[0,-55],[0,-70],[0,-121],[0,-68],[0,-39],[0,-53],[0,-39],[0,-39],[0,-59],[0,-35],[0,-82],[1,-54],[0,-37],[0,-8],[0,-47],[0,-85],[0,-34],[-1,-40],[0,-1],[1,-179],[0,-82],[0,-167],[-1,-77],[1,-106],[0,-147],[0,-208],[0,-89],[0,-79],[0,-37],[0,-37],[0,-41],[0,-43],[0,-35],[0,-38],[0,-35],[0,-50]],[[86787,36],[-30,0],[-13,1],[-19,-2],[-21,1],[-19,1],[-16,-1],[-12,0],[-23,0],[-51,-1],[-12,1],[-13,0],[-21,0],[-18,1],[-15,0],[-15,-1],[-68,1],[-18,0],[-41,0],[-17,0],[-43,-1],[-20,0],[-26,0],[-14,0],[-21,0],[-17,0],[-15,1],[-50,0],[-65,1],[-12,1],[-20,-3],[-20,-1],[-19,-2],[-38,-1],[-49,7],[-35,0],[-11,0],[-21,1],[-32,-1],[-47,1],[-25,0],[-36,-1],[-16,1],[-51,-4],[-77,2],[-77,4],[-12,-1],[-20,0],[-13,-2],[-12,-5],[-44,0],[-36,0],[-57,-1],[-13,0],[-16,0],[-53,-2],[-2,0],[-41,12],[-18,-1],[-24,1],[-14,-4],[-11,-2],[-28,-3],[-18,0],[-27,1],[-11,1],[-14,0],[-12,2],[-16,8],[-15,-1],[-26,0],[-32,0],[-24,0],[-22,0],[-13,0],[-57,1],[-50,0],[-29,0],[-21,0],[-13,0],[-29,0],[-24,0],[-19,0],[-1,0],[-29,1],[-36,0],[-37,-1],[-28,1],[-37,0],[-18,0],[-15,0],[-23,0],[-22,0],[-15,0],[-13,0],[-24,0],[-29,0],[-52,0],[-23,0],[-16,0],[-15,1],[-17,-1],[-17,1],[-31,0],[-40,1],[-49,2],[-17,0],[-22,1],[-13,1],[-18,0],[-12,0],[-16,0],[-41,0],[-15,-1],[-13,0],[-21,0],[-13,-1],[-19,0],[-26,0],[-14,-1],[-20,0],[-16,0],[-24,-1],[-58,1],[-31,0],[-46,-1],[-16,0],[-17,1],[-15,0],[-12,-1],[-44,0],[-13,0],[-22,0],[-21,0],[-62,0],[-13,1],[-27,0],[-177,1],[-37,0],[-12,0],[-13,1],[-15,0],[-23,-1],[-17,0],[-29,-1],[-36,0],[-15,1],[-23,0],[-25,1],[-24,0],[-29,0],[-26,0],[-54,0],[-31,1],[-22,0],[-32,0],[-159,1],[-27,0],[-32,0],[-27,0],[-49,-1],[-63,-1],[-34,1],[-20,-1],[-17,0],[-7,0],[-27,1],[-31,-1],[-29,0],[-26,-1],[-15,0],[-15,0],[-13,1],[-21,1],[-5,0],[-25,-1],[-19,0],[-155,-1],[-16,0],[-15,1],[-12,0],[-28,-1],[-43,1],[-21,0],[-55,0],[-14,0],[-28,1]],[[81610,53],[1,38],[0,35],[0,48],[0,34],[0,54],[0,56],[-1,45],[0,58],[0,72],[0,36],[0,42],[0,92],[0,53],[1,93],[0,50],[1,46],[1,45],[1,75],[0,35],[-1,74],[-1,106],[0,4],[-1,36],[0,70],[0,33],[-1,61],[0,34],[0,37],[0,27],[0,34],[0,39],[0,38],[0,65],[0,40],[-1,54],[0,35],[0,34],[0,84],[0,55],[-1,46],[0,67],[-1,51],[0,51],[0,73],[0,52],[0,64],[0,52],[-1,34],[-1,56],[0,45],[-1,63],[1,59],[3,51],[-1,35],[-1,40],[-1,39],[0,66],[2,56],[0,56],[0,63],[1,47],[1,39],[2,53],[0,40],[0,75],[0,68],[1,64],[0,40],[0,58],[0,48],[0,14],[0,3],[0,22],[0,39],[0,43],[-2,33],[1,36],[1,54],[0,39],[0,52],[0,69],[0,52],[0,38],[0,36],[0,33],[0,85],[0,80],[0,74],[-1,63],[0,49],[0,39],[0,72],[0,44],[0,35],[0,67],[0,40],[0,38],[0,39],[0,50],[0,97],[0,34],[0,37],[0,52],[0,55],[0,36],[0,46],[0,54],[0,66],[0,79],[0,35],[0,39],[0,33],[0,39],[0,54],[0,36],[0,47],[0,40],[0,34],[0,84],[0,44],[0,38],[0,35],[0,37],[0,54],[0,35],[0,38],[0,50],[0,37],[0,54],[0,54],[0,43],[0,44],[0,39],[0,53],[0,110],[0,44],[0,97],[0,36],[0,61],[0,95],[0,50],[0,89],[0,20],[0,46],[0,52],[0,58],[0,56],[0,39],[0,60],[0,35],[0,40],[0,60],[0,34],[0,38],[0,35],[0,54],[0,62],[0,45],[0,44],[0,48],[0,70],[0,59],[0,37],[0,38],[0,45],[0,37],[0,37],[1,40],[-1,45],[0,44],[0,34],[1,62],[0,38],[-1,43],[1,53],[0,43],[0,58],[0,55],[-1,38],[1,40],[0,44],[0,38],[0,2],[0,37],[0,40],[0,48],[0,58],[0,55],[-1,38],[0,44],[1,37],[0,41],[0,42],[0,45],[0,39],[0,45],[1,57],[0,41],[0,91],[0,44],[0,53],[0,42],[0,43],[0,48],[0,82],[0,38],[0,13],[0,21],[1,163],[0,4],[0,8],[-1,26],[0,63],[0,44],[0,35],[0,41],[0,31],[0,2],[0,39],[0,10],[0,1],[0,34],[0,23],[0,29],[0,9],[1,35],[0,41],[0,41],[0,33],[0,37],[0,49],[0,41],[0,60],[0,51],[0,69],[0,34],[0,45],[1,54],[0,35],[0,55],[0,50],[0,35],[0,17],[0,18],[4,38],[6,29],[1,2]],[[91326,8724],[-28,1],[-57,2],[-14,7],[-11,-7],[-16,0],[-13,0],[-29,1],[-13,0],[-15,1],[-21,1],[-50,-2],[-56,0],[-69,0],[-17,-1],[-23,-1],[-12,2],[-18,1],[-3,0],[-20,2],[-27,4],[-14,-4],[-42,5],[-6,-1],[-5,-2],[-12,-3],[-27,2],[-22,6],[-26,-1],[-19,-1],[-28,1],[-17,0],[-17,0],[-14,0],[-18,0],[-19,0],[-13,0],[-5,-1],[-11,-3],[-20,2],[-21,2],[-18,-1],[-15,1],[-13,-1],[-25,0],[-32,0],[-5,-1],[-11,-2],[-12,2],[-16,0],[-15,0],[-29,0],[-14,1],[-12,-1],[-19,0],[-15,0],[-48,0],[-16,0],[-23,-1],[-17,0],[-17,0],[-51,-1],[-3,-1],[-23,0],[-25,0],[-22,-1],[-17,0],[-20,0],[-53,2],[-16,-2],[-22,0],[-20,0],[-22,0],[-16,0],[-45,0],[-23,-1],[-27,0],[-45,-1],[-12,-3],[-21,0],[-59,-1],[-25,-1],[-17,-1],[-26,0],[-31,-1],[-28,-1],[-28,0],[-54,0],[-27,1],[-31,0],[-52,2],[-28,0],[-13,0],[-13,1],[-41,0],[-44,0],[-23,1],[-44,1],[-35,0],[-13,1],[-17,1],[-72,0],[-2,0],[-48,1],[-15,0],[-13,0],[-12,0],[-22,0],[-35,1],[-46,1],[-32,1],[-13,0],[-28,0],[-21,0],[-14,1],[-12,0],[-14,1],[-12,0],[-21,0],[-14,0],[-25,1],[-68,0],[-23,1],[-3,0],[-36,0],[-47,0],[-43,0],[-19,1],[-12,0],[-39,2],[-101,1],[-16,-1],[-97,0],[-20,-1],[-26,0],[-54,0],[-22,0],[-12,0],[-12,0],[-14,0],[-21,0],[-26,0],[-11,0],[-20,0],[-17,0],[-12,-1],[-21,0],[-13,0],[-17,1],[-13,-1],[-91,-6],[-132,4],[-81,0],[-23,-1],[-30,-1],[-16,0],[-17,0],[-13,0],[-12,0],[-18,0],[-45,-1],[-20,0],[-16,0],[-22,-1],[-27,0],[-14,0],[-40,-1],[-34,-1],[-110,-1],[-23,0],[-3,0],[-15,0],[-30,-1],[-11,0],[-18,0]],[[66091,11663],[1,-53],[0,-70],[0,-115],[0,-49],[0,-41],[-1,-50],[0,-34],[1,-67],[0,-34],[0,-73],[-1,-60],[0,-54],[0,-49],[0,-77],[1,-69],[0,-69],[0,-43],[0,-107],[0,-80],[0,-76],[0,-77],[0,-76],[0,-109],[0,-43],[0,-54],[0,-117],[0,-60],[0,-100],[0,-23],[0,-28],[0,-66],[0,-50],[0,-38],[0,-65],[0,-89],[0,-133],[0,-90],[0,-84],[0,-61],[0,-119],[0,-49],[0,-54],[0,-39],[0,-69],[0,-167],[3,-210],[-4,-35],[0,-73],[1,-61],[-1,-39],[0,-183],[0,-47],[0,-62],[1,-82],[0,-77],[0,-34],[0,-45],[0,-52],[0,-92],[0,-82],[-1,-34],[-1,-484],[1,-486],[1,-448],[-1,-66],[0,-62],[0,-56],[0,-36],[0,-80],[-1,-54],[0,-57],[0,-70],[0,-35],[0,-114],[1,-60],[0,-132],[0,-95],[0,-77],[-1,-71],[0,-141],[0,-35],[0,-236],[-1,-267],[0,-62],[1,-158],[0,-24],[1,-459],[0,-234],[0,-180],[0,-33],[-1,-35],[0,-1],[0,-49],[1,-70],[-1,-92],[0,-33],[0,-183],[0,-33],[0,-34],[-1,-34],[1,-47],[-2,-35],[-1,-185],[0,-1],[-1,-45],[0,-73],[0,-1],[1,-45],[1,-191],[0,-58],[2,-49],[0,-72],[0,-52],[0,-33],[0,-144],[0,-17],[-1,-26],[0,-48],[0,-38],[0,-81],[0,-85],[0,-59],[0,-36],[0,-41],[0,-180],[0,-34],[0,-38],[0,-102],[0,-67],[0,-64],[0,-151],[0,-71],[0,-55],[0,-44],[-3,-90]],[[66086,91],[-13,-7],[-19,0],[-30,0],[-29,0],[-28,-1],[-18,1],[-15,0],[-31,0],[-30,0],[-17,0],[-37,-1],[-37,1],[-31,0],[-29,1],[-8,-1],[-5,0],[-39,0],[-12,0],[-15,-1],[-19,1],[-19,0],[-23,0],[-31,0],[-33,1],[-19,-1],[-17,0],[-13,-1],[-16,0],[-1,0],[-85,0],[-81,-1],[-28,0],[-1,0],[-34,1],[-64,0],[-14,0],[-70,0],[-44,0],[-22,-1],[-20,0],[-21,0],[-23,0],[-14,0],[-60,0],[-25,1],[-51,-1],[-33,1],[-23,-1],[-13,1],[-16,-1],[-36,1],[-26,0],[-16,0],[-18,0],[-17,1],[-17,0],[-13,-1],[-20,1],[-16,0],[-16,0],[-43,1],[-44,-1],[-12,-1],[-2,0],[-19,0],[-42,1],[-19,-1],[-14,0],[-21,-1],[-50,0],[-17,0],[-24,0],[-25,-1],[-23,1],[-15,-1],[-20,0],[-12,-1],[-22,1],[-14,0],[-17,0],[-13,0],[-78,1],[-14,0],[-21,0],[-21,1],[-36,0],[-53,0],[-12,0],[-15,-1],[-14,1],[-9,0],[-56,-1],[-25,0],[-19,0],[-14,0],[-35,0],[-14,0],[-28,-1],[-19,1],[-66,-6],[-47,3],[-55,2],[-117,3],[-43,-4],[-20,0],[-61,-1],[-134,-1],[-13,0],[-158,4],[-29,0],[-15,-4],[-82,2],[-88,2],[-26,0],[-21,0],[-50,0],[-1,0],[-105,3],[-32,-1],[-41,-1],[-79,-1],[-72,0],[-13,0],[-13,0],[-15,0],[-17,0],[-20,-1],[-19,0],[-49,-1],[-12,0],[-32,1],[-63,1],[-56,3],[-12,1],[-132,-4],[-14,-4],[-25,0],[-156,4],[-35,-1],[-107,3],[-100,1],[-12,-1],[-6,-1],[-8,-1],[-41,0],[-13,0],[-12,0],[-52,0],[-39,0],[-17,-1],[-11,0],[-13,0],[-108,-5],[-73,6]],[[60914,82],[0,56],[1,62],[-1,109],[1,79],[0,94],[0,87],[3,181],[0,691],[0,97],[0,308],[0,60],[-1,272],[1,40],[1,135],[0,22],[0,120],[-1,73],[0,38],[0,71],[0,50],[0,43],[0,26],[0,20],[0,71],[0,36],[-1,53],[0,70],[-1,62],[-2,76],[0,36],[0,33],[-3,125],[0,53],[0,86],[1,34],[1,104],[1,75],[1,76],[2,57],[1,69],[0,71],[0,75],[0,68],[0,163],[1,59],[-1,47],[0,80],[0,52],[0,101],[0,154],[0,153],[0,76],[0,76],[0,35],[-1,40],[0,72],[0,74],[0,61],[0,231],[0,66],[0,96],[0,42],[0,49],[0,68],[0,46],[0,95],[0,69],[0,113],[0,92],[0,90],[0,69],[0,172],[0,39],[0,110],[0,36],[1,31],[0,23],[0,93],[0,55],[0,37],[0,77],[0,63],[1,52],[-1,45],[0,66],[0,45],[0,15],[-1,57],[0,121],[0,45],[0,40],[0,13],[0,48],[-1,136],[0,70],[0,74],[0,75],[0,73],[-1,38],[0,37],[0,45],[-1,68],[0,50],[0,55],[0,46],[0,69],[0,123],[-1,121],[0,101],[0,77],[-1,75],[0,204],[-1,88],[0,148],[0,52],[0,73],[0,21],[0,13],[0,51],[-1,48],[0,33],[0,54],[0,54],[0,34],[-1,35],[0,72],[0,8],[-1,64],[2,38],[0,245],[0,80],[0,38],[0,57],[-1,42],[0,54],[0,47],[0,251],[0,67],[0,64],[0,42],[0,127],[0,98],[-1,45],[1,68],[-1,118]],[[60914,82],[-31,-2],[-17,0],[-22,-1],[-40,0],[-24,-1],[-21,0],[-17,0],[-16,0],[-18,0],[-17,0],[-16,-1],[-17,1],[-54,1],[-23,-2],[-19,0],[-13,1],[-28,0],[-12,1],[-22,0],[-15,1],[-20,0],[-12,-1],[-26,0],[-13,0],[-25,0],[-17,1],[-32,0],[-16,0],[-30,0],[-29,2],[-36,-1],[-13,0],[-19,0],[-14,0],[-13,0],[-47,-1],[-16,0],[-28,0],[-16,0],[-31,1],[-13,0],[-25,0],[-17,0],[-14,0],[-24,0],[-29,0],[-17,0],[-32,0],[-29,-1],[-75,0],[-36,2],[-36,-1],[-86,-1],[-23,0],[-75,0],[-15,1],[-15,0],[-19,0],[-18,0],[-17,0],[-14,0],[-43,1],[-16,0],[-53,-1],[-52,-1],[-14,0],[-22,0],[-14,-1],[-22,0],[-13,0],[-23,-1],[-41,0],[-26,1],[-37,1],[-17,-1],[-48,0],[-16,0],[-32,0],[-16,-1],[-63,0],[-65,1],[-31,-1],[-16,1],[-32,0],[-15,-1],[-13,0],[-26,0],[-25,-1],[-69,-2],[-64,2],[-127,2],[-13,0],[-14,0],[-81,0],[-21,-1],[-54,0],[-11,0],[-3,0],[-40,-1],[-226,0],[-15,0],[-14,0],[-58,0],[-46,0],[-32,-1],[-12,0],[-82,0],[-25,1],[-15,0],[-11,6],[-14,-5],[-13,-2],[-52,0],[-22,0],[-18,0],[-12,0],[-34,0],[-30,-1],[-19,0],[-107,1],[-14,0],[-63,0],[-65,1],[-67,3],[-18,0],[-34,0],[-20,0],[-30,-1],[-68,0],[-15,0],[-33,-1],[-13,-5],[-38,0],[-93,1],[-84,0],[-31,1],[-4,0],[-72,0],[-19,-1],[-27,1],[-24,-1],[-46,-1],[-13,1],[-89,-1],[-95,-1],[-24,0],[-49,0],[-28,1],[-27,-1],[-21,1],[-27,0],[-29,-1],[-22,0],[-18,0],[-11,0],[-14,1],[-32,-1],[-14,1],[-15,0],[-103,0]],[[55736,73],[0,119],[0,98],[0,56],[-1,166],[1,43],[0,111],[0,103],[0,66],[0,60],[0,47],[0,96],[0,117],[0,58],[0,254],[0,54],[0,67],[0,42],[0,63],[0,43],[0,105],[-1,36],[1,110],[1,19],[1,50],[0,88],[0,98],[0,65],[0,286],[-1,109],[0,67],[0,13],[-1,195],[0,80],[0,89],[0,172],[0,82],[0,51],[0,31],[0,120],[0,51],[0,95],[0,70],[0,83],[0,38],[0,56],[0,116],[0,52],[0,52],[0,61],[0,156],[0,270],[0,13],[0,202],[0,142],[0,51],[0,60],[0,60],[0,60],[0,127],[0,53],[0,185],[0,50],[0,125],[-1,60],[1,41],[0,55],[0,125],[-1,36],[0,96],[1,35],[0,83],[0,101],[-1,79],[0,36],[0,36],[0,69],[1,43],[0,34],[-1,43],[1,59],[-1,39],[0,60],[1,68],[-1,34],[-1,34],[2,45],[-1,80],[0,52],[0,50],[-1,344],[0,39],[1,108],[-3,60],[3,38],[0,79],[0,176],[0,136],[0,108],[0,97],[0,59],[0,233],[-1,144],[0,132],[0,50],[0,43],[0,87],[0,119],[0,105],[0,123],[0,37],[0,100],[0,2],[0,88],[0,124],[0,88],[0,62],[-1,119],[0,81],[0,25],[0,23],[1,52],[-1,47],[0,145],[0,34],[0,77],[1,43],[-1,298],[0,96],[0,46],[0,98],[0,140],[0,39],[0,207]],[[71269,11669],[1,-88],[0,-47],[0,-38],[0,-45],[0,-65],[0,-54],[-1,-127],[1,-57],[0,-21],[0,-16],[0,-41],[0,-53],[0,-77],[0,-77],[0,-73],[0,-78],[0,-95],[0,-79],[0,-33],[0,-7],[0,-45],[0,-94],[0,-64],[0,-68],[0,-7],[0,-64],[0,-79],[0,-64],[0,-46],[0,-67],[0,-137],[0,-25],[0,-55],[0,-50],[0,-170],[0,-38],[0,-49],[0,-120],[0,-102],[0,-37],[0,-41],[0,-44],[0,-50],[0,-42],[0,-34],[0,-163],[0,-61],[0,-54],[0,-78],[0,-68],[0,-35],[0,-69],[0,-90],[0,-102],[0,-42],[0,-60],[0,-76],[0,-37],[0,-43],[0,-61],[0,-124],[0,-64],[0,-85],[0,-47],[0,-50],[0,-40],[0,-57],[0,-47],[0,-67],[0,-60],[0,-58],[0,-16],[0,-22],[0,-58],[0,-51],[0,-50],[-1,-51],[0,-81],[0,-78],[0,-38],[1,-64],[-1,-67],[0,-64],[0,-57],[0,-57],[0,-64],[0,-77],[0,-41],[0,-67],[0,-63],[0,-77],[0,-37],[0,-52],[0,-66],[0,-163],[0,-34],[0,-49],[0,-72],[0,-92],[0,-74],[0,-44],[0,-97],[-1,-84],[0,-144],[0,-113],[0,-3],[0,-54],[0,-53],[0,-38],[0,-35],[0,-51],[0,-54],[0,-61],[1,-74],[0,-94],[0,-113],[0,-77],[0,-91],[-1,-69],[0,-77],[0,-44],[0,-52],[0,-63],[0,-35],[0,-41],[0,-55],[0,-35],[0,-86],[0,-43],[0,-33],[0,-48],[0,-208],[-1,-47],[0,-35],[0,-51],[0,-40],[0,-75],[0,-75],[0,-78],[0,-42],[0,-75],[0,-78],[0,-137],[0,-116],[0,-68],[0,-39],[0,-27],[0,-20],[-1,-38],[1,-61],[0,-61],[0,-50],[0,-38],[0,-84],[0,-57],[0,-42],[0,-38],[0,-35],[0,-37],[-1,-67],[1,-39],[-1,-47],[0,-62],[-1,-44],[0,-35],[0,-48],[-1,-54],[0,-50],[-1,-109],[0,-56],[0,-50],[-1,-75],[0,-50],[0,-83],[0,-88],[0,-41],[0,-47],[0,-43],[0,-31],[0,-12],[0,-37],[0,-50],[-1,-81],[0,-69],[0,-55],[0,-180]],[[71261,70],[-32,0],[-62,0],[-12,0],[-24,0],[-26,0],[-15,1],[-21,-1],[-23,1],[-137,0],[-46,0],[-13,0],[-19,0],[-34,0],[-33,0],[-25,1],[-41,-1],[-63,0],[-21,0],[-22,0],[-22,0],[-15,0],[-24,0],[-21,0],[-18,0],[-13,0],[-30,1],[-14,-1],[-32,0],[-12,0],[-22,1],[-14,-1],[-20,0],[-44,1],[-21,0],[-1,0],[-17,0],[-16,-1],[-14,0],[-46,0],[-137,0],[-40,0],[-13,0],[-27,0],[-19,1],[-47,0],[-35,0],[-33,0],[-19,0],[-25,0],[-12,0],[-18,0],[-18,1],[-15,0],[-18,-1],[-19,1],[-17,0],[-21,0],[-49,0],[-15,0],[-17,0],[-26,0],[-16,-1],[-4,0],[-55,1],[-14,1],[-30,0],[-44,0],[-21,1],[-16,1],[-17,-1],[-20,-1],[-52,1],[-31,0],[-113,2],[-35,-1],[-18,1],[-6,-1],[-6,0],[-165,-1],[-95,0],[-1,0],[-46,0],[-24,0],[-20,0],[-2,0],[-11,0],[-27,3],[-40,0],[-2,0],[-107,2],[-50,0],[-1,0],[-23,-5],[-16,0],[-25,-1],[-21,0],[-12,4],[-129,0],[-3,0],[-109,-1],[-20,-1],[-12,0],[-12,1],[-17,0],[-21,0],[-25,0],[-25,0],[-28,1],[-30,0],[-40,0],[-17,0],[-25,0],[-18,0],[-12,1],[-17,0],[-16,0],[-33,0],[-13,0],[-23,0],[-27,1],[-18,-1],[-21,0],[-24,0],[-14,1],[-12,-2],[-129,-2],[-40,1],[-46,2],[-105,4],[-19,0],[-34,-1],[-47,3],[-17,0],[-72,1],[-78,-4],[-17,0],[-34,1],[-12,-2],[-14,0],[-17,0],[-54,0],[-15,0],[-26,0],[-18,0],[-17,1],[-73,-1],[-17,-1],[-26,1],[-59,1],[-83,0],[-55,1],[-33,-2],[-16,0],[-59,0],[-14,2],[-24,-1],[-12,0],[-16,0],[-33,1],[-107,2],[-44,0],[-21,6]],[[31217,11670],[-3,-110],[-2,-70],[-2,-79],[-2,-77],[-3,-97],[-1,-35],[-1,-48],[-2,-59],[-1,-63],[-2,-65],[0,-96],[0,-53],[-1,-97],[0,-45],[0,-129],[0,-60],[-1,-97],[0,-40],[0,-50],[0,-80],[0,-68],[0,-42],[0,-54],[0,-55],[0,-47],[0,-54],[0,-66],[-1,-77],[2,-483],[-1,-253],[0,-252],[-1,-389],[-1,-57],[0,-135],[0,-367],[1,-165],[0,-88],[-1,-84],[1,-103],[0,-3],[0,-49],[0,-162],[2,-79],[0,-37],[0,-52],[0,-62],[0,-51],[0,-61],[0,-39],[1,-38],[-1,-38],[1,-50],[0,-54],[0,-41],[0,-80],[0,-71],[0,-39],[0,-35],[0,-58],[0,-115],[0,-78],[0,-42],[-2,-176],[0,-56],[0,-484],[0,-14],[0,-691],[0,-338],[0,-36],[0,-63],[0,-2],[1,-45],[0,-46],[1,-198],[0,-58],[0,-3],[1,-157],[0,-3],[2,-234],[2,-429],[0,-42],[3,-467],[0,-50],[0,-1],[1,-81],[0,-79],[2,-583],[2,-443],[0,-10],[-1,-136],[2,-122],[0,-34],[0,-39],[0,-46],[-1,-293],[-1,-496],[-17,0]],[[31193,92],[-45,0],[-34,0],[-40,0],[-16,-1],[-7,0],[-19,0],[-24,0],[-20,-1],[-20,0],[-15,0],[-144,0],[-29,0],[-93,0],[-22,0],[-32,0],[-13,0],[-35,1],[-44,-1],[-42,0],[-46,0],[-29,-1],[-41,1],[-35,-1],[-12,0],[-33,0],[-27,0],[-21,0],[-14,0],[-14,-2],[-12,-1],[-23,-4],[-33,0],[-16,6],[-11,1],[-38,0],[-13,0],[-18,0],[-24,0],[-43,1],[-21,0],[-24,-1],[-20,0],[-44,0],[-82,1],[-24,-1],[-38,3],[-16,8],[-12,9],[-33,23],[-15,7],[-15,5],[-20,7],[-15,2],[-11,-5],[-12,-10],[-16,-14],[-12,-10],[-12,-11],[-17,-12],[-15,-1],[-27,0],[-29,0],[-53,1],[-30,-1],[-12,0],[-32,1],[-49,-1],[-18,0],[-38,1],[-36,0],[-28,-1],[-21,0],[-14,0],[-16,1],[-19,-1],[-44,1],[-46,-2],[-28,2],[-12,0],[-21,-1],[-12,0],[-16,1],[-18,0],[-23,0],[-27,0],[-14,0],[-24,0],[-65,0],[-24,-1],[-12,1],[-57,0],[-19,0],[-14,0],[-78,2],[-5,0],[-57,-1],[-73,0],[-124,1],[-208,-1],[-307,0],[-13,2],[-14,-4],[-137,6],[-160,1],[-102,0],[-13,0],[-144,1],[-123,0],[-60,1],[-88,-1],[-30,0],[-133,0],[-12,0],[-363,-1],[-24,0],[-22,0],[-216,1],[-131,0],[-30,1],[-246,-5],[-32,1],[-58,2],[-115,4],[-109,-1],[-99,-5],[-162,7],[-75,1],[-43,0],[-85,0],[-29,5],[-86,0],[-212,-1],[-16,-2],[-21,-2],[-15,-1],[-19,-1],[-30,1],[-13,0],[-18,1],[-19,-1],[-24,5],[-36,-4],[-135,0],[-16,-1],[-27,0],[-75,0],[-86,0],[-46,0],[-61,0],[-168,0],[-96,0],[-34,0],[-55,0],[-57,0],[-49,0],[-10,0],[-54,1],[-52,1],[-53,1],[-2,0],[-74,0],[-83,0],[-90,0],[-16,0],[-168,0],[1,1963],[0,97],[0,167],[4,8932],[0,361]],[[50576,11688],[-1,-108],[0,-33],[0,-60],[0,-60],[0,-60],[0,-87],[-1,-85],[0,-69],[1,-61],[0,-60],[-1,-60],[0,-60],[0,-121],[0,-77],[0,-103],[1,-47],[0,-73],[0,-149],[1,-85],[0,-3],[0,-240],[0,-66],[0,-66],[0,-64],[0,-55],[-1,-78],[0,-66],[0,-42],[-1,-156],[0,-66],[0,-66],[0,-131],[0,-66],[0,-60],[0,-91],[0,-164],[0,-37],[0,-71],[1,-36],[0,-9],[-1,-27],[0,-37],[0,-37],[-1,-47],[0,-34],[0,-6],[1,-41],[-1,-45],[1,-39],[-1,-17],[0,-17],[0,-46],[3,-266],[1,-3],[0,-35],[3,-220],[1,-126],[0,-560],[1,-583],[0,-74],[0,-180],[1,-302],[-2,-309],[-1,-170],[2,-202],[0,-103],[0,-78],[-1,-55],[0,-49],[2,-183],[0,-73],[0,-139],[0,-13],[1,-85],[0,-1],[0,-232],[-3,-159],[0,-6],[1,-68],[0,-120],[0,-61],[0,-84],[0,-38],[-1,-79],[0,-42],[0,-62],[0,-119],[-1,-123],[1,-36],[1,-85],[0,-115],[1,-94],[0,-61],[1,-86],[0,-36],[1,-53],[0,-34],[0,-36],[1,-44],[0,-39],[1,-64],[0,-63],[0,-63],[1,-52],[0,-40],[1,-55],[0,-62],[0,-62],[0,-51],[0,-42],[1,-53],[0,-37],[0,-60],[0,-40],[0,-49],[1,-46],[-1,-34],[1,-45],[0,-52],[0,-50],[1,-35],[1,-35],[0,-41],[-1,-61],[1,-36],[0,-52],[0,-49],[1,-72],[-1,-49],[1,-35],[0,-38],[1,-39],[0,-47],[0,-37],[1,-48],[0,-35],[0,-43],[0,-39],[1,-35],[0,-60],[0,-60],[1,-62],[0,-99],[1,-67],[0,-37],[1,-101],[0,-35],[1,-52]],[[50601,64],[-13,0],[-23,-1],[-17,1],[-15,-1],[-15,0],[-15,0],[-21,0],[-15,0],[-36,0],[-13,0],[-33,0],[-36,0],[-31,0],[-15,0],[-16,0],[-61,0],[-23,0],[-39,0],[-18,0],[-13,0],[-18,0],[-25,0],[-28,0],[-22,0],[-14,0],[-17,0],[-22,0],[-34,0],[-18,0],[-3,0],[-26,0],[-18,0],[-20,0],[-13,0],[-17,0],[-31,-1],[-35,0],[-25,0],[-16,0],[-15,0],[-16,0],[-16,0],[-32,1],[-13,-1],[-18,1],[-13,0],[-19,0],[-14,-1],[-19,1],[-25,0],[-16,0],[-31,0],[-14,0],[-11,0],[-17,-1],[-21,0],[-16,0],[-14,-1],[-16,-1],[-15,1],[-12,0],[-12,0],[-20,0],[-17,0],[-13,-1],[-24,-2],[-15,5],[-38,-4],[-81,-8],[-90,4],[-82,6],[-26,-1],[-15,-3],[-56,-1],[-210,-4],[-171,0],[-14,-1],[-13,1],[-19,0],[-31,1],[-12,0],[-19,0],[-31,1],[-15,0],[-16,0],[-15,0],[-28,0],[-18,1],[-18,0],[-13,0],[-12,0],[-19,1],[-45,0],[-17,0],[-13,0],[-18,0],[-14,0],[-14,0],[-33,0],[-16,0],[-36,-2],[-91,0],[-43,0],[-70,4],[-109,0],[-66,-1],[-14,-1],[-42,-1],[-20,0],[-43,0],[-19,0],[-14,0],[-34,1],[-44,0],[-14,0],[-31,0],[-17,1],[-14,0],[-28,0],[-20,0],[-34,-1],[-189,-2],[-40,1],[-12,3],[-20,0],[-13,5],[-106,-3],[-56,-1],[-250,-5],[-27,3],[-12,0],[-23,0],[-18,0],[-9,0],[-11,0],[-15,0],[-24,0],[-22,0],[-14,1],[-17,0],[-31,-1],[-13,0],[-49,1],[-31,0],[-24,-1],[-12,0],[-26,0],[-18,0],[-28,0],[-28,0],[-19,0],[-16,0],[-28,0],[-17,0],[-13,0],[-49,0],[-13,1],[-13,0],[-14,0],[-22,0],[-12,0],[-111,-1],[-31,0],[-11,0],[-20,-1],[-42,3],[-35,-1],[-45,-1],[-25,-1],[-20,0],[-16,-1],[-13,1],[-12,0],[-14,0],[-13,0],[-23,-1],[-38,1],[-18,-1],[-19,0],[-20,1],[-36,-1],[-22,1],[-18,-1],[-16,1],[-13,0],[-11,0],[-12,1],[-31,0],[-17,0],[-28,0],[-17,0],[-12,0],[-11,0],[-25,0],[-14,0],[-13,0],[-14,0],[-25,0],[-16,1],[-49,0],[-17,0],[-22,0],[-18,-1],[-22,0],[-12,0],[-38,0],[-25,0],[-14,0],[-23,0],[-17,0],[-37,0],[-12,0],[-18,0],[-28,0],[-11,-1],[-19,1],[-12,-1],[-46,1],[-25,0],[-20,-1],[-23,1],[-26,0],[-14,0],[-20,0],[-64,-1],[-18,0],[-14,0],[-15,0],[-12,0],[-20,1],[-31,-1],[-15,1],[-19,0],[-17,-2],[-14,3],[-38,0]],[[44136,58],[1,175],[0,316],[0,35],[0,47],[0,50],[1,46],[0,40],[1,38],[0,60],[1,53],[0,69],[0,34],[0,33],[0,39],[0,62],[1,75],[0,42],[0,81],[0,133],[0,93],[-4,950],[0,34],[0,54],[0,70],[0,3],[-1,239],[-1,37],[0,39],[-1,58],[0,18],[0,43],[0,38],[0,10],[0,134],[-1,48],[0,37],[0,34],[0,33],[0,51],[0,58],[0,48],[-1,45],[-1,246],[-1,39],[-4,231],[1,458],[2,253],[0,33],[0,86],[0,36],[0,35],[0,34],[0,72],[-1,97],[0,46],[0,33],[-3,223],[-1,265],[0,94],[-1,294],[-4,1554],[-1,278],[0,202],[0,54],[0,454],[0,52],[-1,156],[0,14],[0,23],[0,70],[0,57],[-1,59],[0,7],[0,46],[2,45],[-1,125],[-2,62],[-1,38],[0,52],[-1,48],[-1,67],[0,46],[0,46],[0,56],[-1,44],[0,37],[0,52],[-1,42],[-1,52],[-2,142],[-1,63],[-1,35],[-1,47],[-1,54],[-1,69],[-2,82],[-1,105],[-1,44],[-1,42],[0,201],[0,4],[-1,79],[0,1],[-2,140],[-1,83],[0,15],[-2,154],[-3,219]],[[76439,11664],[-2,-221],[0,-40],[0,-84],[0,-34],[0,-38],[0,-67],[4,-229],[-1,-89],[-3,-165],[0,-1],[-1,-62],[0,-48],[0,-53],[0,-54],[0,-48],[0,-35],[1,-20],[1,-15],[-2,-44],[0,-63],[0,-55],[0,-86],[0,-56],[0,-43],[0,-55],[0,-70],[0,-50],[0,-59],[-1,-49],[1,-66],[-1,-101],[1,-41],[0,-48],[0,-58],[-1,-80],[0,-87],[1,-93],[0,-51],[-1,-157],[0,-54],[0,-58],[0,-44],[0,-45],[0,-52],[0,-63],[0,-82],[0,-65],[0,-52],[0,-44],[0,-44],[0,-47],[3,-282],[0,-1],[0,-44],[0,-88],[-3,-86],[-1,-42],[0,-38],[0,-40],[0,-57],[0,-83],[0,-65],[1,-35],[3,-244],[0,-127],[0,-28],[-1,-176],[-4,-32],[1,-77],[0,-47],[0,-61],[0,-53],[0,-55],[0,-36],[0,-42],[0,-49],[0,-52],[-1,-81],[1,-44],[0,-53],[-1,-51],[0,-35],[0,-58],[0,-40],[0,-48],[0,-37],[0,-46],[0,-41],[1,-40],[-1,-69],[0,-79],[0,-60],[0,-83],[0,-46],[0,-65],[0,-59],[0,-48],[0,-38],[0,-60],[0,-43],[0,-36],[0,-59],[0,-111],[0,-28],[0,-42],[0,-98],[0,-73],[0,-75],[0,-73],[0,-124],[0,-53],[0,-92],[0,-94],[0,-41],[0,-47],[0,-51],[0,-36],[0,-49],[0,-42],[0,-38],[0,-96],[0,-78],[0,-63],[0,-45],[1,-66],[-1,-55],[0,-59],[0,-62],[0,-98],[0,-50],[1,-52],[0,-36],[0,-69],[0,-51],[0,-79],[0,-73],[0,-96],[0,-51],[0,-73],[0,-40],[0,-48],[0,-51],[0,-114],[0,-35],[0,-40],[0,-49],[0,-37],[0,-39],[0,-74],[0,-37],[0,-56],[0,-3],[-1,-52],[0,-43],[1,-13],[0,-63],[-1,-42],[0,-60],[0,-59],[0,-37],[0,-35],[0,-34],[0,-39],[0,-52],[1,-40],[-1,-104],[1,-56],[-1,-59],[0,-70],[0,-45],[0,-37],[0,-34],[0,-51],[0,-40],[-1,-48],[0,-36],[1,-49],[0,-49],[0,-70],[0,-40],[0,-90],[0,-53],[0,-50],[0,-55],[0,-70],[0,-53],[0,-33],[0,-102],[0,-67]],[[76433,68],[-17,0],[-14,0],[-58,0],[-17,0],[-31,-1],[-24,0],[-18,1],[-36,0],[-88,0],[-21,0],[-17,-1],[-14,1],[-24,0],[-14,0],[-38,0],[-40,0],[-26,0],[-28,0],[-12,1],[-13,0],[-14,0],[-53,-1],[-29,2],[-104,-1],[-12,0],[-14,0],[-14,0],[-72,0],[-23,0],[-18,0],[-32,0],[-17,0],[-17,0],[-18,0],[-32,1],[-31,0],[-15,-1],[-12,1],[-99,-4],[-80,-6],[-30,2],[-74,-3],[-31,2],[-66,6],[-21,1],[-14,1],[-2,1],[-11,4],[-45,-2],[-15,-1],[-3,-1],[-13,2],[-14,0],[-13,0],[-16,-3],[-13,-3],[-7,-2],[-16,1],[-18,4],[-19,0],[-14,0],[-110,1],[-14,-1],[-90,1],[-13,0],[-99,0],[-21,-1],[-23,1],[-22,-1],[-26,1],[-25,0],[-23,0],[-33,0],[-40,0],[-15,0],[-49,0],[-42,1],[-24,-1],[-12,0],[-72,1],[-19,0],[-37,-1],[-23,1],[-10,1],[-2,0],[-13,-1],[-17,0],[-13,0],[-82,0],[-29,0],[-21,0],[-31,0],[-14,0],[-2,0],[-22,0],[-42,-1],[-12,0],[-18,1],[-16,0],[-23,0],[-52,0],[-26,1],[-12,0],[-16,0],[-45,0],[-62,0],[-37,0],[-17,1],[-23,0],[-15,0],[-17,-1],[-34,0],[-31,1],[-35,-1],[-37,1],[-62,0],[-16,0],[-35,1],[-56,0],[-49,-1],[-17,0],[-40,0],[-19,0],[-36,1],[-7,0],[-13,0],[-64,-1],[-80,0],[-15,0],[-131,0],[-68,1],[-17,0],[-28,0],[-16,0],[-45,-1],[-34,-1],[-11,0],[-25,1],[-27,0],[-13,1],[-17,0],[-21,0],[-24,0],[-31,0],[-51,-1],[-61,0],[-12,0],[-16,0],[-31,0],[-16,-4],[-21,1],[-14,4],[-9,2],[-3,0],[-18,1],[-15,-3],[-20,-2],[-16,-1],[-36,0],[-16,0],[-88,0],[-109,0],[-19,0],[-21,-1],[-23,1],[-27,-1],[-47,1],[-21,0],[-51,0],[-25,-1]],[[81610,53],[-23,0],[-15,0],[-41,0],[-16,-1],[-17,0],[-33,0],[-21,1],[-26,0],[-19,-1],[-13,0],[-13,0],[-35,0],[-56,0],[-18,0],[-86,0],[-17,0],[-13,0],[-25,0],[-23,0],[-29,1],[-20,0],[-35,0],[-31,0],[-30,0],[-15,0],[-41,1],[-63,0],[-25,0],[-44,-1],[-12,0],[-29,1],[-29,-1],[-26,0],[-22,0],[-32,0],[-19,0],[-3,0],[-16,-3],[-30,1],[-11,-1],[-8,0],[-5,0],[-20,-1],[-28,0],[-53,0],[-110,-2],[-13,1],[-59,6],[-29,-3],[-18,-3],[-96,1],[-15,-3],[-110,3],[-251,5],[-19,0],[-46,1],[-18,1],[-30,0],[-70,2],[-16,0],[-13,1],[-59,1],[-31,-1],[-127,-2],[-51,7],[-19,2],[-13,0],[-84,-2],[-58,-7],[-14,1],[-17,-1],[-12,-5],[-20,3],[-22,3],[-83,-4],[-88,-2],[-48,0],[-79,-1],[-42,-1],[-75,11],[-16,1],[-14,0],[-14,0],[-15,1],[-55,-1],[-26,1],[-40,0],[-14,0],[-23,0],[-17,1],[-12,-16],[-150,-5],[-50,-1],[-51,1],[-91,3],[-50,2],[-84,5],[-59,10],[-67,-1],[-25,3],[-33,2],[-48,0],[-26,0],[-15,0],[-38,0],[-32,1],[-20,0],[-27,0],[-23,0],[-50,0],[-24,1],[-12,0],[-17,0],[-23,0],[-20,0],[-19,0],[-25,0],[-24,-1],[-20,1],[-20,-1],[-12,0],[-22,0],[-26,0],[-18,0],[-20,0],[-14,0],[-28,0],[-21,0],[-25,0],[-12,0],[-27,0],[-15,0],[-30,0],[-56,0],[-27,0],[-27,0],[-18,0],[-12,0],[-26,1],[-30,0],[-12,0],[-17,0],[-25,1],[-20,-3],[-101,2],[-32,1],[-74,-2]],[[44136,58],[-16,0],[-24,-1],[-26,0],[-20,0],[-54,0],[-15,0],[-57,0],[-19,0],[-17,1],[-15,-1],[-25,0],[-13,0],[-18,0],[-69,0],[-19,2],[-31,-3],[-17,0],[-29,0],[-22,0],[-33,1],[-14,0],[-42,0],[-50,0],[-24,0],[-13,0],[-38,0],[-50,2],[-14,0],[-19,0],[-23,-2],[-14,0],[-18,1],[-13,1],[-12,0],[-15,0],[-42,0],[-20,0],[-46,0],[-17,0],[-21,0],[-38,0],[-22,0],[-13,0],[-42,1],[-60,1],[-21,0],[-36,-1],[-18,1],[-11,-1],[-15,0],[-40,0],[-44,0],[-15,0],[-25,0],[-31,0],[-72,1],[-34,0],[-23,0],[-37,0],[-23,1],[-47,0],[-21,0],[-14,-1],[-21,1],[-31,1],[-25,-1],[-73,1],[-47,0],[-23,0],[-23,1],[-25,-1],[-36,0],[-24,0],[-11,0],[-26,-1],[-20,0],[-21,1],[-36,1],[-19,-2],[-15,1],[-24,1],[-13,1],[-23,0],[-21,-3],[-16,1],[-15,2],[-16,0],[-38,-3],[-14,-1],[-101,0],[-97,0],[-108,0],[-82,0],[-17,0],[-12,1],[-13,4],[-15,-2],[-15,0],[-18,0],[-20,-2],[-17,0],[-22,-1],[-210,5],[-12,-1],[-15,0],[-17,0],[-18,-1],[-23,1],[-14,2],[-13,0],[-15,1],[-14,0],[-14,-1],[-11,0],[-19,0],[-14,-1],[-13,-5],[-92,-2],[-55,3],[-31,0],[-26,0],[-54,1],[-12,1],[-20,0],[-17,1],[-16,-1],[-37,0],[-16,-1],[-13,9],[-12,-5],[-13,-2],[-43,1],[-6,0],[-15,-1],[-31,1],[-19,0],[-34,-1],[-7,1],[-5,1],[-12,-1],[-20,0],[-27,0],[-16,-2],[-15,1],[-14,1],[-20,0],[-16,0],[-21,0],[-19,0],[-82,-1],[-13,0],[-12,0],[-15,0],[-33,1],[-18,0],[-30,0],[-21,0],[-15,0],[-16,0],[-12,0],[-13,1],[-20,0],[-33,0],[-21,0],[-16,0],[-20,0],[-16,3],[-12,-4],[-14,-1],[-22,-3],[-26,1],[-19,4],[-32,-1],[-18,1],[-12,-1],[-36,0],[-14,0],[-13,0],[-13,-1],[-19,3],[-15,0],[-16,0],[-17,0],[-25,0],[-21,1],[-21,0],[-19,0],[-13,0],[-18,0],[-18,2],[-12,1],[-17,0],[-13,0],[-21,0],[-21,0],[-16,-2],[-14,0],[-16,0],[-12,0],[-17,-2],[-17,0],[-14,2],[-16,-2],[-12,-3],[-125,5],[-39,4],[-39,-3],[-16,-2],[-13,0],[-28,1],[-54,0],[-18,1],[-30,0],[-18,1],[-24,0],[-26,0],[-93,0],[-86,0],[-41,1],[-42,0],[-168,-1],[-51,-1],[-56,2],[-34,1],[-13,-2],[-49,1],[-26,0],[-12,0],[-85,0],[-24,-1],[-12,2],[-57,4],[-12,1]],[[37673,79],[0,223],[0,195],[0,608],[0,370],[0,373],[0,396],[0,122],[0,518],[0,891],[0,66],[0,49],[1,187],[1,86],[0,63],[0,76],[0,79],[0,256],[1,138],[0,191],[1,238],[-3,55],[-2,35],[-1,37],[-5,97],[-2,38],[-1,35],[-2,42],[-2,47],[-6,126],[-5,108],[1,398],[1,70],[1,251],[1,211],[1,261],[0,10],[0,201],[0,61],[0,10],[-1,44],[0,35],[0,3],[1,218],[1,83],[1,56],[0,103],[1,134],[1,41],[0,78],[1,109],[0,58],[0,61],[1,119],[0,81],[2,228],[0,52],[0,65],[1,55],[0,110],[0,55],[1,53],[0,57],[0,85],[3,148],[0,88],[2,253],[2,473],[2,479],[3,473],[1,163],[1,278]],[[37673,79],[-30,0],[-42,0],[-47,0],[-72,-1],[-70,0],[-86,0],[-85,-1],[-27,0],[-28,0],[-24,0],[-25,0],[-1,0],[-92,0],[-31,-1],[-31,0],[-47,0],[-47,0],[-13,0],[-16,0],[-52,-1],[-110,0],[-58,0],[-14,0],[-102,0],[-107,-1],[-13,0],[-13,0],[-52,0],[-27,0],[-56,0],[-40,0],[-93,0],[-60,0],[-60,0],[-142,1],[-57,-1],[-75,0],[-47,0],[-60,2],[-18,0],[-29,1],[-35,-1],[-18,0],[-12,0],[-15,0],[-13,0],[-2,0],[-17,0],[-45,1],[-15,0],[-12,0],[-30,0],[-18,0],[-23,0],[-16,0],[-38,1],[-14,0],[-29,0],[-76,0],[-16,0],[-12,0],[-19,0],[-20,1],[-99,-1],[-19,0],[-20,0],[-27,1],[-14,-1],[-29,0],[-21,1],[-26,-1],[-74,1],[-49,0],[-37,-1],[-25,0],[-28,0],[-15,0],[-15,0],[-15,0],[-51,0],[-50,0],[-50,0],[-44,0],[-13,0],[-133,3],[-52,1],[-27,-1],[-32,0],[-23,0],[-20,0],[-19,0],[-30,1],[-12,0],[-14,0],[-43,1],[-26,0],[-19,0],[-58,0],[-33,1],[-23,0],[-131,0],[-33,0],[-45,0],[-63,1],[-28,-1],[-13,0],[-31,0],[-33,1],[-55,0],[-96,2],[-91,0],[-94,0],[-47,0],[-48,0],[-47,-1],[-48,-2],[-22,1],[-62,0],[-29,0],[-30,0],[-35,0],[-23,1],[-17,0],[-43,0],[-34,0],[-34,0],[-13,0],[-15,0],[-23,0],[-13,0],[-30,0],[-12,0],[-22,1],[-18,0],[-39,0],[-30,0],[-19,0],[-15,0],[-18,0],[-14,0],[-21,0],[-79,0],[-51,0],[-41,0],[-19,0],[-12,0],[-15,-1],[-33,1],[-11,1],[-15,0],[-20,-1],[-56,1],[-21,0],[-15,-1],[-18,0],[-14,1],[-14,-1],[-22,1],[-35,-1],[-15,1],[-13,-1],[-13,1],[-15,-1],[-35,0],[-47,0],[-30,0],[-17,0],[-15,1],[-18,0],[-60,0],[-62,1],[-47,1],[-46,1],[-34,0],[-33,0],[-55,1],[-21,0]],[[55736,73],[-42,-5],[-47,0],[-23,2],[-101,0],[-14,0],[-43,0],[-27,0],[-47,0],[-12,0],[-13,-1],[-59,1],[-44,1],[-20,-1],[-34,0],[-21,1],[-23,-1],[-16,0],[-34,1],[-22,-1],[-28,0],[-25,0],[-39,1],[-14,1],[-24,-1],[-22,-2],[-20,-2],[-24,3],[-19,1],[-24,0],[-32,0],[-44,0],[-52,-2],[-63,0],[-60,0],[-37,0],[-23,0],[-17,0],[-27,1],[-12,0],[-29,-1],[-11,-2],[-206,-4],[-12,-1],[-28,2],[-36,1],[-251,-2],[-92,3],[-12,0],[-27,0],[-27,0],[-41,-1],[-125,-1],[-66,0],[-33,9],[-110,-2],[-36,-1],[-15,0],[-2,1],[-28,-1],[-140,2],[-12,-1],[-23,3],[-16,0],[-14,-2],[-19,1],[-15,-1],[-12,-6],[-109,12],[-49,-1],[-13,0],[-36,-1],[-1,0],[-49,0],[-1,0],[-36,-1],[-8,-1],[-21,0],[-28,0],[-4,0],[-13,0],[-58,-1],[-116,-2],[-11,0],[-19,0],[-1,0],[-31,-1],[-50,-1],[-63,-2],[-47,1],[-12,0],[-13,0],[-13,-1],[-42,2],[-56,-2],[-18,0],[-19,-1],[-20,3],[-14,0],[-16,1],[-8,0],[-7,-1],[-20,0],[-20,0],[-72,-1],[-44,0],[-17,0],[-12,0],[-1,0],[-31,0],[-33,0],[-17,0],[-49,-1],[-68,0],[-31,1],[-57,-1],[-42,0],[-65,0],[-34,0],[-82,0],[-16,0],[-44,1],[-24,0],[-26,0],[-59,-2],[-15,0],[-33,0],[-43,0],[-43,-1],[-18,-1],[-39,0],[-40,0],[-50,1],[-46,0],[-13,0],[-27,0],[-72,-1],[-50,0],[-20,0],[-41,0],[-12,0],[-21,0]],[[91973,8705],[0,-33],[0,-48],[0,-38],[0,-59],[0,-74],[0,-55],[0,-23],[0,-18],[0,-104],[0,-33],[0,-75],[0,-96],[0,-10],[0,-58],[0,-47],[0,-258],[0,-53],[0,-114],[0,-43],[-1,-116],[1,-92],[0,-64],[0,-76],[-1,-65],[0,-72],[0,-52],[0,-40],[0,-40],[0,-68],[0,-50],[0,-138],[0,-55],[0,-75],[0,-68],[0,-101],[0,-104],[0,-51],[0,-46],[0,-46],[0,-113],[0,-122],[0,-1],[0,-89],[0,-67],[0,-44],[-1,-110],[0,-58],[0,-50],[0,-62],[1,-241],[-1,-241],[0,-15],[-1,-97],[0,-5],[0,-384],[0,-49],[-1,-137],[1,-421],[-1,-78],[0,-36],[0,-62],[0,-84],[1,-48],[1,-104],[0,-1],[-2,-108],[0,-44],[0,-39],[0,-42],[0,-40],[0,-34],[0,-43],[0,-61],[0,-36],[0,-48],[0,-59],[0,-50],[0,-37],[-1,-46],[0,-35],[0,-103],[0,-70],[0,-48],[0,-64],[0,-90],[0,-36],[0,-131],[0,-67],[0,-45],[0,-34],[0,-86],[0,-45],[0,-73],[0,-8],[0,-62],[0,-42],[2,-88],[-1,-28],[0,-24],[-2,-97],[0,-51],[0,-84],[0,-43],[0,-163],[1,-45],[-1,-260],[0,-65],[4,-38],[0,-80],[-1,-57],[0,-54],[0,-76],[-1,-91],[-2,-234]],[[91967,24],[-46,1],[-23,0],[-34,0],[-33,0],[-15,1],[-15,-1],[-142,1],[-2,0],[-21,0],[-15,0],[-35,0],[-65,0],[-9,0],[-14,0],[-75,0],[-15,-1],[-22,0],[-112,-1],[-116,2],[-12,0],[-15,1],[-27,0],[-43,-1],[-74,0],[-33,0],[-36,0],[-31,0],[-47,1],[-12,0],[-15,0],[-85,0],[-30,0],[-25,1],[-13,-1],[-13,-10],[-240,1],[-9,1],[-81,9],[-14,-1],[-12,1],[-12,0],[-26,0],[-16,-1],[-14,1],[-17,0],[-13,0],[-19,1],[-24,0],[-14,0],[-23,1],[-15,-1],[-14,1],[-16,0],[-14,0],[-14,0],[-15,-1],[-24,1],[-19,0],[-18,0],[-19,0],[-24,0],[-22,0],[-17,0],[-27,0],[-45,0],[-27,1],[-116,-1],[-28,0],[-11,-1],[-17,1],[-12,0],[-15,0],[-13,1],[-40,0],[-47,0],[-25,1],[-24,1],[-21,0],[-18,-1],[-12,1],[-13,-1],[-17,0],[-27,-2],[-7,1],[-7,0],[-12,-4],[-13,-4],[-12,1],[-12,8],[-19,0],[-49,0],[-41,0],[-19,-1],[-22,0],[-17,0],[-33,0],[-66,0],[-23,-1],[-24,1],[-13,0],[-16,0],[-13,0],[-30,0],[-75,1],[-30,-1],[-68,0],[-13,0],[-15,0],[-16,-1],[-15,0],[-21,-7],[-18,3],[-13,5],[-12,0],[-23,0],[-22,1],[-23,0],[-14,0],[-13,0],[-24,0],[-41,1],[-13,0],[-20,0],[-45,1],[-21,0],[-14,1],[-19,-2],[-19,0],[-55,0],[-22,0],[-18,0],[-12,0],[-33,1],[-29,0],[-24,0],[-15,0],[-18,0],[-14,0],[-20,0],[-39,0],[-13,0],[-102,1],[-36,0],[-21,-1],[-19,1],[-29,0],[-51,0],[-20,0],[-41,0],[-88,0],[-14,0],[-20,0],[-28,0],[-26,1],[-30,-1],[-17,1],[-26,-1],[-15,0],[-12,1],[-32,0],[-14,0],[-17,-1],[-15,1],[-19,0],[-19,0],[-15,-1],[-23,1],[-23,1],[-50,-1],[-29,0],[-32,0],[-29,0],[-53,0],[-12,0],[-23,-1],[-14,1],[-13,0],[-22,0],[-87,0],[-19,0],[-18,0]],[[97207,8719],[11,-27],[50,-67],[42,-41],[35,-30],[3,-3],[8,-8],[32,-33],[25,-36],[34,-48],[27,-36],[17,-16],[17,-13],[25,-38],[23,-18],[35,-18],[26,-9],[13,-5],[37,3],[8,1],[26,5],[48,14],[22,6],[27,7],[6,2],[14,-2],[46,-6],[18,-5],[35,-10],[25,-19],[25,-18],[37,-52],[28,-49],[32,-69],[15,-52],[13,-48],[29,-121],[9,-66],[16,-109],[5,-55],[2,-42],[-2,-81],[0,-93],[-2,-39],[-7,-78],[-8,-61],[-11,-67],[-6,-30],[-7,-32],[-21,-74],[0,-1],[0,-1],[-30,-85],[-8,-36],[-14,-61],[-17,-88],[-6,-45],[-5,-35],[-2,-41],[-2,-55],[-1,-15],[0,-82],[2,-82],[0,-4],[2,-8],[4,-30],[6,-47],[6,-39],[0,-1],[10,-42],[11,-54],[14,-60],[19,-62],[15,-46],[30,-76],[15,-47],[18,-44],[29,-67],[35,-79],[36,-67],[51,-69],[15,-18],[38,-28],[33,-22],[19,-15],[49,-45],[23,-32],[1,-1],[1,-2],[23,-48],[17,-44],[9,-24],[0,-1],[17,-89],[12,-103],[0,-16],[4,-88],[1,-123],[3,-57],[4,-51],[7,-61],[5,-36],[8,-51],[9,-39],[17,-55],[14,-31],[3,-8],[26,-50],[2,-5],[36,-50],[28,-23],[34,-12],[25,-1],[52,-4],[20,-7],[23,-13],[15,-15],[18,-21],[29,-36],[19,-29],[18,-47],[19,-73],[23,-120],[3,-52],[3,-59],[0,-42],[0,-64],[-1,-33],[-1,-18],[-2,-12],[-9,-69],[-3,-15],[-2,-8],[-26,-79],[-5,-16],[-10,-20],[-9,-16],[-1,-3],[-57,-97],[-30,-67],[-29,-99],[-11,-66],[-4,-42],[-2,-148],[11,-111],[8,-41],[8,-74],[0,-102],[-8,-74],[-18,-95],[-25,-75],[-46,-108],[-15,-45],[-8,-37],[-13,-82],[-7,-38],[-2,-15],[-4,-30],[-1,-111],[2,-26],[7,-78],[4,-44],[24,-189],[17,-123],[8,-37],[49,-159],[52,-114],[53,-85],[86,-32],[58,-30],[88,25],[159,44],[49,12],[79,-3],[58,-43],[39,-41],[20,-35],[59,-137],[14,-43],[4,-21],[60,-138],[72,-81],[83,-58],[36,-30],[2,-4],[35,-55],[9,-20],[18,-47],[12,-53],[21,-111],[10,-76],[2,-73],[-15,0],[-11,0],[-132,0],[-50,0],[-36,0],[-19,0],[-5,0],[-93,0],[-65,0],[-32,0],[-32,0],[-4,0],[-92,0],[-20,-2],[-14,0],[-17,1],[-21,-1],[-33,1],[-19,1],[-17,0],[-39,0],[-193,8],[-12,0],[-62,-1],[-3,0],[-16,0],[-61,-1],[-18,0],[-86,-1],[-12,0],[-66,0],[-59,1],[-21,0],[-67,1],[-18,0],[-15,0],[-14,1],[-155,2],[-37,0],[-14,1],[-32,0],[-49,-11],[-12,0],[-6,0],[-14,0],[-16,1],[-16,0],[-16,0],[-31,1],[-47,0],[-20,0],[-18,1],[-22,0],[-18,0],[-32,1],[-16,0],[-19,0],[-14,0],[-22,0],[-42,0],[-18,0],[-35,1],[-32,0],[-29,0],[-25,0],[-22,0],[-26,0],[-19,0],[-47,1],[-16,-1],[-12,0],[-16,1],[-23,0],[-22,0],[-15,0],[-51,0],[-44,0],[-15,0],[-25,1],[-13,-6],[-15,6],[-28,0],[-17,0],[-45,0],[-20,0],[-22,0],[-33,0],[-26,0],[-20,1],[-21,0],[-19,0],[-9,0],[-7,0],[-16,0],[-11,0],[-9,-1],[-40,1],[-42,0],[-56,1],[-15,0],[-19,-1],[-120,1],[-17,0],[-4,0],[-28,0],[-19,0],[-19,0],[-22,1],[-40,-1],[-86,1],[-31,0],[-36,0],[-34,0],[-14,0],[-17,0],[-7,0],[-8,0],[-36,0],[-18,0],[-12,0],[-19,0],[-14,0],[-15,1],[-22,0],[-22,-1],[-38,1],[-15,2],[-14,2],[-12,-2],[-13,-2],[-77,0],[-14,0],[-12,1],[-23,0],[-20,0],[-22,0],[-62,-1],[-23,0],[-22,1],[-15,0],[-11,-1],[-25,1],[-13,0],[-19,0],[-19,0],[-19,0],[-68,0],[-21,1],[-12,0],[-89,0],[-18,1],[-14,0],[-54,0],[-17,0],[-14,1],[-27,0],[-15,0],[-14,0],[-40,0],[-18,0],[-23,1],[-26,-1],[-11,1],[-19,0],[-12,0],[-17,0],[-20,-1],[-18,0],[-12,0],[-89,1],[-13,-1],[-35,1],[-32,-1],[-73,0],[-59,0],[-29,0],[-36,0],[-14,0],[-48,0],[-13,0],[-18,0],[-31,0],[-67,0],[-19,0],[-32,1],[-33,-1],[-30,0],[-22,1],[-18,0],[-12,0],[-1,0],[-22,0],[-36,0],[-24,1],[-19,-1],[-30,0],[-32,0],[-24,1],[-48,0],[-26,0],[-15,0],[-41,0],[-12,0],[-16,0],[-14,0],[-21,0],[-13,-1],[-13,1],[-14,0],[-18,0],[-14,0],[-14,0],[-23,1],[-15,-1],[-22,0],[-13,1],[-119,3],[-48,1],[-86,1],[-88,-6],[-89,2],[-13,0],[-40,1],[-111,0],[-48,0],[-91,0],[-210,-2],[-18,1],[-14,-1],[-16,0],[-21,1],[-15,0],[-26,0],[-27,-1],[-11,1],[-12,0],[-19,0],[-36,-1],[-28,1],[-42,0],[-15,1],[-48,0],[-12,0],[-12,0],[-36,0],[-20,0],[-23,1],[-1,0],[-24,-1],[-22,0],[-17,0],[-35,0],[-12,0],[-68,0],[-101,1],[-48,1],[-13,0],[-24,-1],[-9,0],[-24,0],[-50,1],[-17,0],[-13,0],[-18,0]]],"transform":{"scale":[0.00008745169075690892,0.00003004577194771966],"translate":[-104.05336405499992,39.999924896000095]}} diff --git a/src/js/config/mapconfig/mapfiles/county/nh-counties.json b/src/js/config/mapconfig/mapfiles/county/nh-counties.json new file mode 100644 index 00000000..9eff283d --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/nh-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-72.55523213499981,42.69697629000012,-70.71129564199993,45.30564955500017],"geometries":[{"type":"Polygon","properties":{"name":"NH"},"id":"33007","arcs":[[0,1,2]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33009","arcs":[[3,4,5,6,7,-2]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33003","arcs":[[8,9,10,-4,-1]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33001","arcs":[[11,12,-5,-11]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33013","arcs":[[-13,13,14,15,16,-6]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33019","arcs":[[-17,17,18,19,-7]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33017","arcs":[[20,21,-14,-12,-10]]},{"type":"MultiPolygon","properties":{"name":"NH"},"id":"33015","arcs":[[[22]],[[23]],[[24,25,-15,-22]]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33011","arcs":[[-26,26,27,-18,-16]]},{"type":"Polygon","properties":{"name":"NH"},"id":"33005","arcs":[[-28,28,-19]]}]},"states":{"type":"GeometryCollection","bbox":[-72.55523213499987,42.69697629000012,-70.71129564199993,45.30564955500017],"geometries":[{"type":"MultiPolygon","properties":{"name":"New Hampshire"},"id":"33","arcs":[[[22]],[[23]],[[8,20,24,26,28,19,7,2]]]}]}},"arcs":[[[83798,60865],[-1867,-42],[19,-139],[27,-199],[81,1],[-6,-603],[-3,-348],[-11,-411],[0,-59],[-117,-1],[-179,-3],[-369,2],[-345,0],[-343,-3],[-209,-8],[-289,-16],[-152,-9],[-220,-12],[-760,-43],[-1465,61],[-788,32],[-1478,61],[-1047,43],[-1517,62],[-1607,66],[-342,13],[-70,0],[-75,1],[-54,-60],[-57,-80],[-87,-122],[-82,-115],[0,-1],[-173,-245],[-318,-449],[-1190,-1678],[-9,-13],[-911,-1285],[-38,-54],[166,-1],[-124,-465],[-135,-479],[-156,-550],[-37,-126],[-35,-123],[-640,-8],[-672,-218],[-406,245],[20,1153],[-56,106],[-332,725],[-329,719],[-7,17],[-50,108],[-882,300],[-40,7],[-568,197],[-439,1082],[-76,187],[-41,102],[-552,-53],[-51,-5],[-30,-3],[-138,-13],[-344,-34]],[[61793,58079],[-771,737],[-224,214],[-497,475],[-98,30],[-237,68],[-457,129],[-86,24],[-128,37],[-135,39],[-149,44],[-139,40],[-1611,-144],[-204,-16],[-144,-4],[-17,55],[-31,103],[-16,54],[-20,66],[-1081,-93],[-163,-15],[-57,-5],[-60,-5],[-206,-17],[-1217,-103],[-60,-6],[-252,-21],[-121,-11],[-494,-42],[-106,332],[-1,3],[-45,139],[-19,60],[-11,36],[-34,110],[-1,1],[-26,77],[-80,250],[-293,912],[-696,157],[-158,36],[-762,170],[-405,97],[-481,107],[-283,64],[-530,118],[-163,37],[-13,2],[-207,47],[-4,1],[-209,46],[-358,80],[-753,169],[-381,85],[-402,-120],[-136,-40],[-351,261],[-1353,1005],[-129,98],[-360,274],[-398,327],[-276,226],[-189,153],[-119,96],[-5,4],[-427,337],[-40,34]],[[42914,65503],[181,21],[22,6],[408,-99],[73,-32],[30,-26],[57,-22],[51,-17],[130,-17],[67,-4],[62,7],[103,26],[28,17],[86,108],[29,56],[31,33],[14,15],[36,22],[65,40],[70,21],[219,19],[61,-10],[3,0],[8,-1],[78,-8],[1,0],[10,-1],[14,0],[401,10],[4,0],[67,3],[1,0],[1,0],[114,-8],[2,0],[52,-6],[83,-4],[50,16],[73,23],[0,1],[1,0],[5,6],[5,5],[6,6],[7,5],[7,4],[7,4],[5,3],[31,15],[2,1],[9,4],[8,3],[9,3],[2,1],[62,17],[5,1],[452,113],[2,1],[9,2],[9,1],[10,1],[18,2],[251,89],[9,4],[30,12],[42,29],[92,32],[147,50],[3,1],[51,21],[150,59],[96,41],[34,15],[22,37],[108,59],[39,21],[105,87],[-2,6],[-7,37],[2,34],[12,24],[0,1],[-26,38],[35,31],[59,17],[77,4],[36,15],[106,43],[83,16],[146,11],[66,9],[134,33],[137,88],[132,107],[21,34],[59,134],[18,214],[1,7],[1,7],[2,6],[1,1],[21,53],[2,6],[3,7],[4,6],[5,6],[1,1],[16,18],[3,5],[6,5],[3,3],[151,130],[3,2],[7,5],[7,5],[7,4],[8,4],[8,3],[8,4],[9,2],[9,3],[9,2],[10,1],[2,1],[98,12],[7,1],[10,1],[9,0],[10,0],[9,-1],[10,-1],[9,-2],[9,-2],[6,-1],[152,-42],[188,92],[101,56],[69,46],[-158,70],[-108,45],[-84,35],[1,2],[4,6],[3,7],[3,6],[2,7],[1,3],[22,94],[6,8],[53,22],[48,19],[3,2],[376,164],[4,2],[1,0],[117,57],[22,-18],[-47,-34],[-23,-62],[13,-31],[62,-53],[32,-14],[35,-7],[4,1],[75,20],[6,2],[4,1],[384,84],[6,1],[9,1],[7,1],[58,25],[19,9],[116,153],[33,9],[1,1],[9,2],[2,1],[37,14],[6,2],[9,4],[7,4],[6,3],[44,26],[268,27],[31,-7],[130,-17],[63,8],[180,22],[182,23],[35,4],[26,3],[5,2],[72,21],[5,1],[0,1],[29,18],[30,18],[96,137],[31,23],[5,3],[6,6],[5,5],[6,6],[4,6],[39,55],[0,1],[33,104],[32,104],[5,7],[2,4],[4,6],[3,7],[0,2],[15,42],[89,-17],[37,-49],[26,1],[213,2],[2,0],[3,6],[17,34],[4,6],[-28,81],[10,19],[35,10],[48,-10],[24,-5],[92,-32],[109,-14],[11,-2],[15,1],[36,3],[87,33],[54,62],[-47,47],[-59,27],[-108,49],[-50,15],[-10,3],[-92,52],[-75,65],[-42,70],[-4,31],[-59,57],[-110,55],[-166,62],[-69,39],[-4,25],[-14,94],[-1,6],[13,13],[11,4],[12,5],[244,-27],[60,2],[18,1],[24,3],[152,45],[171,101],[120,79],[5,6],[4,3],[93,90],[0,7],[0,7],[1,7],[1,6],[3,7],[1,4],[16,36],[1,3],[1,0],[21,44],[3,6],[4,6],[2,2],[82,111],[2,30],[-1,2],[-3,6],[-1,5],[-2,1],[-66,45],[-90,36],[-44,16],[-1,0],[-9,3],[-8,4],[-8,3],[-7,5],[-7,4],[-7,5],[-6,6],[-5,5],[-5,6],[-5,6],[-4,6],[-3,6],[-1,2],[-79,71],[-56,28],[0,6],[-1,3],[-1,10],[-1,6],[0,4],[-2,6],[-2,7],[-3,6],[-3,7],[-4,6],[-5,6],[-5,6],[-5,5],[-6,5],[-7,5],[-7,5],[-7,4],[-8,4],[-8,4],[-9,3],[-8,3],[-4,1],[-114,30],[-5,2],[-2,0],[-139,32],[-237,122],[-5,2],[-5,2],[-288,124],[-12,5],[18,21],[179,208],[115,53],[14,3],[27,3],[456,28],[98,0],[8,1],[244,10],[138,-22],[31,3],[135,14],[2,0],[3,0],[457,37],[156,24],[62,21],[2,0],[9,4],[4,2],[-7,20],[189,88],[13,6],[72,-8],[89,37],[28,21],[51,114],[1,2],[3,6],[4,6],[1,1],[2,3],[-113,57],[-6,10],[-1,7],[-2,6],[-2,7],[-3,6],[-3,7],[-4,6],[-2,2],[-5,7],[-52,110],[2,2],[93,2],[6,0],[159,-90],[65,-8],[63,6],[64,18],[140,79],[2,1],[8,4],[8,3],[8,3],[39,14],[78,27],[97,56],[55,48],[60,131],[9,19],[-107,4],[-67,4],[-40,29],[-10,8],[10,38],[59,37],[29,56],[-38,40],[-21,3],[-35,5],[-59,-17],[-70,-41],[-85,-29],[-65,-11],[-93,12],[-4,4],[-9,8],[14,28],[54,28],[30,56],[-11,36],[-60,38],[-7,1],[-58,7],[-70,-20],[-127,-68],[-9,3],[-7,2],[-9,3],[-9,2],[-9,1],[-10,1],[-9,1],[-10,0],[-4,0],[-1,0],[-76,-2],[-21,0],[-20,9],[-2,0],[-3,2],[-9,3],[53,68],[13,17],[13,17],[9,5],[3,1],[84,46],[15,28],[-16,14],[-11,9],[-38,5],[-210,-42],[-196,10],[-70,61],[4,17],[9,40],[219,-4],[115,30],[59,37],[34,65],[1,60],[-36,94],[-51,137],[-50,82],[-8,15],[3,13],[5,21],[8,73],[0,47],[23,20],[1,1],[6,5],[5,6],[0,1],[26,32],[4,6],[4,6],[3,4],[24,49],[1,2],[3,6],[2,5],[70,-13],[108,-59],[90,-37],[74,-10],[36,11],[11,3],[22,42],[-66,63],[-32,15],[-3,4],[-51,102],[20,8],[-1,2],[-12,15],[-61,77],[-6,7],[-181,5],[-29,10],[-52,26],[-78,57],[-53,50],[-2,2],[-5,6],[0,1],[-9,10],[-4,6],[-6,5],[-6,5],[-7,5],[-7,5],[-1,1],[-37,22],[-5,3],[-8,4],[-8,4],[-127,51],[-23,18],[-18,24],[-7,9],[29,13],[108,0],[36,4],[32,11],[17,12],[24,35],[4,17],[-2,41],[0,6],[-27,52],[-28,25],[-97,63],[-51,56],[-3,33],[-12,15],[-18,24],[-45,30],[-25,12],[-44,13],[-9,3],[-9,3],[-4,2],[-102,45],[-22,10],[-9,-16],[-17,-30],[-17,-16],[-28,-14],[-40,-14],[-82,-4],[-49,2],[-2,0],[-33,14],[-7,2],[-2,1],[-97,32],[-7,2],[-9,3],[-2,0],[-73,29],[-50,19],[69,25],[30,29],[-5,26],[-12,16],[-2,2],[-28,13],[-40,3],[-168,-1],[-115,5],[-40,8],[-62,20],[-46,24],[-43,31],[-98,83],[-4,14],[-14,40],[94,30],[31,21],[8,8],[16,15],[9,25],[3,23],[-7,18],[-13,21],[-101,82],[-33,40],[2,21],[0,1],[10,8],[37,20],[182,43],[50,20],[-33,53],[-35,9],[-51,14],[-57,15],[-103,2],[-96,15],[-48,8],[-51,14],[-8,24],[-8,23],[-1,4],[-3,6],[-3,6],[-4,7],[-4,5],[-6,6],[-5,6],[-6,5],[-4,3],[-15,11],[-2,2],[-7,4],[-8,5],[-7,3],[-8,4],[-9,3],[-9,3],[-9,2],[-8,2],[-29,6],[-69,27],[-18,7],[58,65],[-9,49],[-1,2],[-4,6],[-2,5],[-45,81],[-28,50],[-27,33],[-16,20],[7,21],[1,3],[2,4],[1,7],[1,6],[0,12],[-1,25],[-1,1],[-1,7],[0,2],[-12,58],[-1,5],[-3,6],[-2,7],[-3,5],[-1,27],[0,27],[68,41],[20,14],[-24,33],[-7,6],[-6,5],[-6,5],[-5,6],[-4,6],[-4,6],[-1,2],[-2,4],[-160,31],[-30,16],[-19,17],[-14,20],[0,10],[0,25],[54,76],[-24,21],[-31,21],[-25,14],[-6,3],[-7,5],[-6,5],[-6,5],[-6,6],[-1,1],[-13,14],[-233,152],[-4,3],[-5,4],[-138,108],[-358,283],[-99,71],[-5,5],[-2,1],[-4,4],[-1,1],[-30,28],[-5,4],[-20,19],[-5,5],[-5,6],[-5,6],[-3,6],[-4,6],[-3,7],[-2,6],[-13,46],[-2,7],[-1,7],[0,6],[0,7],[1,7],[7,35],[2,7],[2,6],[2,6],[8,17],[-18,24],[-11,15],[-159,-53],[-36,1],[-75,34],[-38,41],[-14,21],[-2,170],[0,14],[9,13],[25,55],[25,53],[-87,104],[-6,7],[-196,232],[-1,1],[-7,5],[-7,5],[-6,5],[-6,5],[-4,5],[-23,28],[-10,0],[-7,-1],[-3,0],[-6,1],[-10,0],[-1,0],[73,105],[34,48],[3,4],[70,100],[172,46],[5,1],[9,2],[9,2],[10,1],[9,1],[1,0],[1,0],[148,23],[30,7],[3,1],[9,2],[10,2],[9,1],[10,0],[3,1],[40,1],[69,18],[272,179],[102,117],[30,21],[95,20],[13,14],[6,6],[6,5],[6,5],[7,4],[8,5],[8,4],[97,46],[194,137],[7,4],[8,5],[1,0],[27,15],[301,178],[-12,48],[38,57],[47,27],[122,64],[25,5],[133,57],[3,1],[8,3],[9,3],[9,2],[7,2],[56,11],[95,19],[3,1],[9,1],[9,1],[10,1],[7,0],[140,2],[93,15],[61,12],[41,19],[30,28],[8,16],[2,3],[4,6],[5,6],[5,6],[5,6],[7,5],[6,5],[7,4],[4,3],[77,45],[23,18],[3,2],[6,5],[6,5],[7,5],[8,4],[7,4],[4,2],[47,37],[59,64],[2,14],[7,69],[-6,70],[0,12],[1,7],[2,7],[2,6],[2,4],[48,110],[41,94],[2,3],[3,6],[30,52],[0,9],[-3,6],[-3,7],[-2,6],[-2,7],[-1,7],[0,6],[0,7],[0,1],[-3,5],[-34,30],[-98,85],[-3,2],[-18,17],[-5,5],[-34,30],[-18,6],[-27,25],[-6,4],[-6,5],[-2,2],[-31,21],[-4,8],[-6,44],[5,19],[4,14],[75,97],[45,34],[39,29],[36,22],[51,31],[92,42],[34,10],[5,3],[9,4],[75,30],[7,3],[8,3],[9,3],[9,2],[2,1],[60,13],[7,2],[10,2],[4,0],[90,11],[58,12],[39,20],[54,65],[49,86],[0,1],[4,6],[5,6],[5,6],[6,6],[4,4],[44,36],[1,8],[87,102],[18,11],[60,18],[55,45],[1,1],[7,5],[7,5],[3,2],[83,48],[16,12],[3,16],[-3,63],[-36,73],[-1,1],[0,2],[-63,136],[-1,2],[-8,20],[-2,4],[-9,5],[-40,19],[-7,7],[-5,22],[7,56],[3,13],[39,45],[2,7],[3,6],[3,6],[4,7],[4,6],[5,5],[6,6],[6,5],[7,5],[7,5],[59,36],[5,3],[123,68],[67,37],[1,1],[0,2],[0,40],[1,7],[1,7],[1,7],[2,6],[5,13],[-59,50],[10,33],[28,31],[41,45],[22,24],[65,40],[33,21],[90,46],[142,36],[158,-9],[3,0],[9,0],[7,0],[139,4],[3,0],[10,1],[9,1],[10,2],[9,1],[5,2],[119,32],[3,1],[8,3],[43,15],[1,0],[9,3],[8,4],[8,4],[3,1],[50,29],[5,3],[7,4],[6,5],[4,3],[62,54],[3,3],[6,5],[5,6],[0,1],[41,50],[4,5],[3,6],[4,7],[16,33],[2,6],[1,1],[12,33],[53,61],[81,71],[17,16],[149,60],[6,2],[1,1],[8,3],[9,4],[2,1],[7,3],[98,48],[5,3],[7,4],[7,5],[3,2],[70,51],[4,4],[5,4],[25,23],[45,40],[1,1],[5,5],[5,6],[5,6],[2,4],[121,88],[136,93],[-2,12],[-11,80],[3,1],[7,2],[56,16],[2,0],[8,3],[9,3],[8,4],[2,1],[59,29],[4,2],[311,164],[40,21],[2,0],[7,5],[7,4],[40,28],[7,5],[6,6],[5,5],[74,77],[1,1],[5,5],[4,6],[4,6],[4,7],[2,6],[3,7],[1,7],[1,6],[52,-5],[14,-2],[95,-6],[30,25],[36,77],[22,45],[17,68],[16,59],[-12,15],[-3,1],[-172,51],[-152,65],[-65,28],[-98,80],[-7,1],[-9,3],[-2,0],[-125,39],[-7,2],[-8,3],[-7,3],[-40,18],[-1,1],[-8,4],[-8,4],[-3,3],[-78,52],[-4,2],[-6,5],[-2,1],[-206,172],[-2,2],[-36,17],[-43,14],[-9,3],[-7,4],[-21,15],[-9,20],[0,19],[11,14],[-11,38],[-47,62],[-3,3],[-4,7],[-4,6],[-1,4],[-15,35],[0,2],[-3,6],[-1,7],[0,1],[-5,29],[-1,5],[0,7],[-1,60],[-10,6],[-38,13],[-112,39],[-56,20],[-29,34],[-16,26],[-10,22],[0,21],[8,6],[28,-2],[42,-26],[35,-19],[24,-7],[133,17],[0,14],[1,7],[1,7],[1,5],[40,157],[2,9],[0,2],[3,7],[0,1],[2,5],[-34,68],[-10,20],[-101,75],[-17,16],[3,17],[12,11],[90,40],[52,35],[49,162],[-1,27],[-45,74],[-2,2],[-3,6],[-49,102],[-2,6],[-2,7],[-2,6],[-1,7],[0,7],[0,2],[1,42],[0,21],[1,1],[-241,32],[-39,6],[-5,14],[-37,46],[4,12],[2,6],[1,6],[1,7],[0,13],[-1,21],[0,1],[-1,7],[-2,7],[-2,6],[-3,6],[-7,15],[0,1],[-3,6],[-4,6],[-5,6],[-5,6],[-5,6],[-2,1],[-24,21],[-5,5],[-6,5],[-7,4],[-8,5],[-8,3],[-1,1],[-33,15],[-56,26],[-6,2],[-8,3],[-9,3],[-9,2],[-9,2],[-1,1],[-37,6],[-30,6],[-8,1],[-1,0],[-41,6],[-91,55],[-33,15],[-35,33],[-38,48],[-16,29],[-5,34],[-9,10],[-65,22],[-33,3],[-8,1],[-7,1],[-67,9],[-201,115],[1,25],[6,55],[3,14],[104,67],[91,171],[-19,17],[25,23],[95,95],[96,96],[3,4],[4,6],[20,24],[5,5],[5,6],[6,5],[7,5],[1,1],[46,31],[5,4],[8,4],[6,4],[46,22],[10,24],[129,27],[153,21],[134,13],[175,10],[81,15],[95,21],[139,58],[57,18],[131,37],[84,14],[193,23],[149,-20],[62,-14],[77,-25],[136,-60],[137,-44],[341,-72],[93,-19],[84,2],[29,-2],[71,-12],[25,5],[117,39],[4,50],[19,86],[64,85],[120,74],[160,59],[145,26],[149,12],[21,5],[-1731,-15],[-8,1],[-66,4],[17,21],[4,51],[4,45],[27,86],[17,55],[12,73],[19,32],[23,36],[-9,36],[-6,23],[1,12],[2,21],[65,84],[39,51],[2,1],[33,29],[64,39],[35,22],[80,82],[22,47],[16,34],[13,27],[8,32],[7,29],[11,46],[4,17],[2,10],[1,26],[1,17],[-8,22],[-7,23],[-24,24],[-15,15],[-28,15],[-43,11],[-36,9],[-47,3],[-43,2],[-12,1],[-94,5],[-47,2],[-45,7],[-82,12],[-17,3],[-15,2],[-30,5],[-40,15],[-22,17],[-16,12],[-9,7],[-27,12],[-22,9],[-11,13],[-14,16],[6,15],[10,28],[1,1],[27,26],[29,30],[20,9],[31,15],[152,52],[14,9],[21,14],[37,25],[25,25],[8,27],[-4,14],[-9,25],[-29,29],[-25,26],[6,14],[20,16],[36,30],[34,28],[23,46],[27,51],[4,32],[3,30],[-9,44],[-13,60],[-2,13],[3,18],[6,29],[11,8],[15,11],[172,49],[161,26],[45,15],[28,20],[12,15],[70,89],[78,99],[15,19],[203,88],[14,9],[1,0],[78,52],[23,15],[24,16],[53,16],[58,9],[369,17],[69,12],[46,18],[4,2],[29,19],[14,9],[33,33],[29,29],[61,117],[36,40],[28,32],[66,37],[99,55],[5,2],[69,39],[49,50],[26,26],[20,20],[21,16],[17,12],[33,24],[14,7],[105,60],[19,8],[74,35],[2,1],[39,18],[40,27],[3,2],[32,22],[13,16],[7,9],[19,58],[22,68],[6,53],[1,6],[3,21],[33,31],[35,33],[81,34],[178,29],[110,33],[6,3],[1,0],[3,2],[31,18],[6,3],[73,42],[58,33],[356,161],[88,54],[18,16],[35,30],[5,5],[2,3],[11,13],[17,19],[26,31],[26,41],[12,19],[5,28],[1,6],[5,28],[-6,17],[-9,30],[-19,28],[-12,17],[-11,14],[-16,18],[-35,36],[-31,34],[-65,55],[-62,51],[-17,12],[-33,24],[-44,30],[-37,26],[-57,39],[-22,16],[-10,16],[-10,17],[1,14],[2,12],[48,64],[39,52],[55,62],[51,58],[29,20],[32,23],[5,3],[45,26],[44,25],[65,38],[18,10],[17,14],[9,7],[24,19],[16,19],[17,19],[18,31],[41,72],[52,90],[12,21],[7,31],[4,18],[2,7],[2,30],[1,20],[3,40],[2,36],[2,27],[3,8],[8,22],[17,16],[13,14],[14,10],[34,26],[3,3],[29,22],[76,58],[38,29],[9,10],[20,22],[22,24],[14,15],[0,1],[22,30],[12,18],[15,22],[26,37],[11,16],[21,29],[25,36],[22,32],[10,27],[11,27],[6,33],[6,33],[7,39],[21,31],[23,35],[21,16],[30,24],[17,14],[32,18],[21,12],[56,33],[30,17],[6,3],[21,12],[48,38],[32,25],[6,8],[5,6],[79,95],[52,62],[28,61],[38,84],[22,15],[61,43],[7,6],[5,2],[37,20],[40,22],[12,7],[47,25],[13,11],[18,15],[42,35],[13,19],[13,21],[0,37],[1,42],[-19,37],[-29,57],[-56,64],[-97,110],[-49,37],[-30,23],[-29,14],[-17,8],[-56,19],[-40,13],[-80,16],[-93,19],[-6,1],[-74,15],[-48,10],[-31,6],[-23,4],[-46,14],[-54,15],[-34,16],[-30,14],[-51,30],[-18,10],[-78,46],[-62,29],[-87,42],[-89,30],[-146,49],[-32,11],[-38,15],[-28,12],[-23,9],[-54,22],[-136,56],[-127,52],[-100,40],[-159,65],[-49,23],[-6,3],[-75,35],[-42,20],[-24,11],[-31,20],[-9,15],[3,28],[26,26],[41,18],[53,11],[66,6],[77,-2],[105,-13],[163,-41],[273,-102],[159,-29],[103,-9],[87,-1],[86,16],[318,106],[175,88],[246,93],[81,18],[89,12],[132,2],[167,-19],[130,-39],[77,-38],[219,-142],[75,-34],[95,-25],[50,-2],[46,7],[71,29],[49,36],[215,229],[45,35],[70,39],[157,51],[347,68],[220,57],[105,42],[80,40],[87,68],[45,80],[-14,92],[-77,121],[-139,168],[-30,53],[-3,27],[16,34],[63,45],[70,18],[242,1],[91,7],[124,21],[194,42],[317,32],[146,28],[94,25],[104,47],[61,41],[143,119],[47,27],[62,25],[107,29],[320,65],[316,120],[82,23],[205,41],[105,33],[98,59],[273,210],[71,41],[109,46],[126,38],[201,31],[235,50],[157,19],[40,-6],[30,-16],[124,-132],[50,-31],[45,-17],[108,-13],[238,10],[115,-8],[140,-27],[103,-40],[43,-44],[163,-530],[37,-68],[62,-64],[83,-65],[55,-28],[169,-40],[342,-114],[169,-36],[97,-36],[105,-56],[203,-127],[124,-68],[88,-70],[49,-50],[43,-62],[56,-151],[27,-26],[37,-20],[52,-12],[67,1],[211,49],[107,15],[64,-7],[123,-26],[102,-10],[123,-6],[139,3],[131,18],[186,50],[79,16],[126,25],[94,7],[133,-3],[89,-15],[68,-29],[256,-146],[131,-63],[103,-70],[112,-49],[124,-80],[58,-23],[51,-2],[59,15],[206,103],[135,50],[226,55],[211,62],[85,16],[64,6],[130,-17],[146,-42],[359,-162],[160,-100],[28,-7],[34,0],[180,46],[230,45],[216,49],[97,38],[80,53],[48,48],[126,161],[186,130],[93,102],[133,127],[26,39],[64,148],[102,124],[81,124],[29,26],[55,30],[167,61],[76,36],[73,44],[45,42],[31,58],[-7,45],[-94,59],[-34,51],[7,39],[37,68],[54,70],[119,110],[41,79],[45,53],[141,100],[161,98],[80,38],[194,61],[183,41],[234,40],[56,8],[7,-14],[43,-231],[25,-137],[30,-72],[53,-375],[1,-2],[134,-761],[39,-215],[55,-305],[3,-20],[19,-120],[3,-40],[63,-832],[124,-1215],[6,-64],[12,-117],[2,-16],[25,-247],[45,-368],[14,-115],[70,-591],[45,-352],[9,-81],[65,-608],[5,-39],[5,-54],[72,-747],[36,-373],[14,-126],[0,-2],[59,-546],[52,-483],[14,-129],[7,-68],[13,-112],[34,-315],[34,-307],[85,-769],[0,-3],[7,-71],[14,-136],[7,-63],[5,-47],[35,-268],[41,-126],[1,-2],[10,-31],[39,-365],[30,-280],[21,-205],[1,-3],[17,-169],[81,-768],[54,-512],[28,-262],[9,-89],[57,-440],[81,-632],[3,-25],[19,-144],[11,-85],[32,-248],[1,-9],[28,-218],[33,-255],[10,-72],[8,-26],[14,-42],[28,-221],[0,-1],[3,-22],[8,-58],[10,-80],[6,-47],[1,-7],[26,-207],[6,-43],[1,-7],[2,-17],[0,-6],[29,-222],[22,-171],[0,-1],[2,-42],[52,-405],[19,-168],[66,-556],[4,-37],[3,-26],[45,-375],[19,-180],[3,-26],[69,-652],[9,-82],[23,-213],[23,-213],[14,-123],[13,-122],[2,-15],[19,-176],[0,-167],[0,-40],[0,-6],[21,-246],[12,-147],[12,-146],[8,-90],[20,-209],[37,-404],[18,-194],[1,-9],[15,-94],[4,-28],[4,-27],[15,-108],[5,-32],[12,-142],[7,-82],[2,-18],[13,-140],[53,-555],[17,-178],[34,-348],[41,-429],[30,-420],[55,-745],[39,-565],[35,-593],[9,-152],[11,-200],[1,-18],[25,-453],[30,-528],[4,-75],[5,-51],[13,-154],[6,-71],[3,-35],[4,-42],[14,-156],[6,-72],[6,-71],[8,-101],[6,-62],[45,-544],[9,-113],[11,-111],[34,-353],[27,-272],[42,-277],[19,-126],[19,-164],[17,-184],[24,-259],[12,-166],[25,-328],[39,-402],[32,-380],[26,-256],[5,-70],[11,-126],[4,-55],[22,-328],[11,-132],[22,-283],[5,-51],[5,-98],[0,-1],[0,-1],[8,-80],[13,-137],[6,-137],[9,-82],[12,-132],[4,-35],[6,-89],[1,-7],[7,-135],[8,-154],[1,-20],[1,-11],[3,-47],[4,-39],[16,-139],[31,-314],[18,-181],[31,-318],[7,-63],[17,-168],[2,-22],[11,-109],[13,-249],[24,-434],[43,-809],[11,-104],[29,-288],[14,-132],[13,-131]],[[61793,58079],[-525,-48],[234,-582],[453,-1127],[934,-282],[434,-130],[131,-312],[210,-500],[149,-355],[122,-214],[-13,-579],[-285,-253],[395,-540],[170,-215],[22,-31],[5,-6],[225,-312],[1077,1],[-1499,-1383],[-136,-123],[-236,-214],[-68,-62],[-9,-8],[29,-103],[18,-83],[35,-122],[17,-59],[41,-138],[11,-39],[71,-241],[30,-68],[0,-2],[6,-23],[8,-31],[22,-82],[0,-1],[45,-167],[109,-431],[76,-276],[216,-782],[400,-1444],[-233,-22],[-147,-14],[-1,0],[-304,-30],[-874,-73],[-301,-25],[-288,-24],[-332,-27],[-228,-19],[-395,-33],[-1456,-121],[-665,-51],[-249,-20],[-2,0],[-808,-62],[-325,-25],[-610,-47],[-246,0],[-661,-50],[-666,-51],[-1658,-126],[-364,-26],[-54,-5],[-128,-10],[176,-548],[44,-140],[449,-1485],[17,-48],[197,-652],[254,-840],[291,12],[19,0],[15,-59],[23,-95],[38,-154],[129,-514],[10,-40],[3,-12],[84,-334]],[[55471,40942],[39,-154],[14,-62],[19,-79],[19,-79],[36,-130],[17,-67],[112,-583],[31,-168],[55,-247],[13,-76],[17,-77],[47,-214],[1,-2],[0,-39],[13,-46],[23,-94],[6,-39],[8,-40],[11,-57],[47,-242],[24,-106],[-587,-36],[-660,-41],[-827,-51],[-307,-19],[-89,-4],[-752,-49],[-246,-15],[-266,-17],[-329,-19],[-590,-36],[-293,-19],[-199,-13],[-62,-3],[-242,-16],[-5,0],[-101,-8],[-151,-9],[-113,-7],[-28,-2],[-40,-2],[-1,0],[-158,-10],[-68,-4],[-28,9],[-168,73],[-78,18],[-151,-33],[-145,-31],[-8,-70],[-4,-48],[-162,-28],[-26,-15],[-2,-1],[-105,-91],[-17,-32],[18,-39],[24,-53],[13,-30],[60,-84],[13,-18],[0,-1],[-37,-55],[-100,-236],[-29,-93],[-27,-26],[-15,-16],[-68,-42],[-5,-3],[-3,-6],[-31,-62],[-1,-2],[2,-18],[25,-174],[-5,-59],[-2,-23],[7,-15],[53,-111],[12,-24],[10,-22],[1,-9],[3,-41],[18,-19],[71,-73],[15,-66],[-24,-47],[-93,-47],[44,-115],[0,-1],[-96,-122],[-48,-74],[-11,-15],[-81,-95],[-15,-18],[65,-63],[8,-13],[82,-80],[117,-114],[54,-46],[-3,-6],[-5,-10],[-11,-22],[-26,-11],[-46,-15],[-79,-26],[-110,-37],[-132,-27],[-26,-3],[-127,-12],[-116,-34],[-44,-49],[-29,-36],[-11,-30],[-7,-16],[-11,-29],[31,-54],[57,-58],[9,-103],[5,-59],[4,-45],[-37,-2],[-45,-4],[-145,-8],[-73,0],[-79,1],[-283,-86],[-28,-17],[-159,-80],[-87,-50],[-75,-40],[-132,-57],[-183,-55],[-168,-15],[-66,0],[-82,17],[-127,43],[-237,-5],[-23,-7],[-71,12],[-45,7],[-37,7],[-47,21],[-16,15],[-4,4],[-39,38],[-60,117],[-1,3],[-3,0],[-152,27],[-194,-27],[-135,-21],[-135,-113],[-41,-23],[-13,-8],[-2,-1],[-69,-21],[-69,0],[-60,6],[-162,18],[-46,-14],[-69,-20],[-41,-55],[-116,-63],[-2,-1],[-1,-3],[-22,-63],[-2,-9],[47,-48],[162,-52],[74,-28],[19,-4],[41,-7],[20,-4],[118,-59],[91,-45],[79,-39],[144,-98],[54,-47],[11,-37],[-42,-71],[-66,-44],[-8,-2],[-211,-63],[-55,-32],[-7,-6],[-61,-50],[-19,-17],[-19,-37],[50,-57],[-13,-24],[-22,-43],[-16,-30],[-18,-18],[-127,-36],[-30,-13]],[[44875,33217],[-23,7],[-34,11],[-48,22],[-7,17],[8,10],[3,4],[13,9],[28,10],[6,2],[0,1],[-1,7],[-2,10],[-46,38],[-38,22],[-36,9],[-184,33],[-5,0],[-27,5],[-28,2],[-10,1],[-40,-4],[-67,-6],[-80,-7],[-118,-10],[-39,-11],[-44,-14],[-4,-5],[-25,-26],[-43,-47],[-107,63],[-154,17],[-29,0],[-145,-21],[-38,-11],[0,-3],[-46,-26],[-39,-11],[-34,-5],[-39,0],[-24,3],[-92,24],[-165,42],[-337,-207],[-140,-86],[-451,-239],[-151,194],[-109,69],[-4,3],[-7,-1],[-251,-27],[-61,-8],[-305,-42],[-34,-4],[-323,-101],[-45,-51],[-13,-13],[-32,-37],[-29,-15],[-38,-8],[-256,-22],[-36,-12],[-126,-43],[-134,-45],[-155,-82],[-7,-14],[-45,-96],[-4,-1],[-6,9],[-57,86],[-44,66],[-6,9],[-47,72],[-134,202],[-206,313],[-221,332],[-249,375],[-223,334],[-35,53],[-34,50],[-104,157],[-64,97],[-285,407],[-244,-143],[-176,-104],[-203,-120],[-157,-92],[-53,-31],[-45,-26],[-107,-63],[-77,-50],[-65,-42],[-52,-33],[-72,-46],[-108,-69],[-53,-34],[-82,-50],[-61,-39],[-69,-43],[-137,-85],[-94,-59],[-49,-30],[-400,-250],[-723,-548],[-15,-11],[-38,-29],[-56,-42],[-271,-205],[-281,-214],[-251,-190],[-289,-220],[-181,-137],[-231,-175]],[[33624,31873],[-501,45],[-204,19],[-661,61],[-587,54],[-1259,115],[-113,11],[-162,-10],[-26,3],[-399,32],[-1054,86],[-1494,123],[-4,0],[-136,11],[-170,14],[-391,32],[-62,181],[-59,175],[-69,-55],[-444,-356],[-122,-98],[-441,-357],[-85,-67],[-684,156],[-328,74],[-73,17],[-70,16],[-73,17],[-39,9],[-247,56],[-3,1],[-54,12],[67,53],[660,529],[-71,17],[-196,44],[-712,152],[-283,67],[-682,157],[-66,15],[-303,72],[-65,15],[-31,7],[-114,27],[-62,14],[-923,201],[-844,184],[-75,17],[-57,10],[-60,13],[-66,14],[-147,31],[-114,23],[-95,19],[-121,26],[-76,16],[-59,12],[-99,21],[-87,20],[-63,14],[-60,11],[-62,5],[-87,8],[-594,50],[-78,7],[-67,6],[-5,1],[-818,73],[-517,46],[-89,8],[-118,8],[-82,5],[-580,41],[-284,20],[-390,29],[-168,16],[-238,22],[-143,13],[-394,37],[-395,38],[-85,9],[-48,4],[-23,3],[-542,51],[-553,51],[-37,3],[-57,6],[-57,6],[-46,5]],[[12249,34622],[-14,1],[61,21],[3,4],[89,101],[-60,100],[-20,52],[-37,107],[-73,25],[-63,53],[-63,80],[-4,148],[194,256],[104,157],[38,75],[29,92],[64,90],[76,34],[232,56],[7,2],[35,14],[2,1],[8,3],[8,4],[3,2],[30,58],[150,300],[16,30],[29,63],[1,1],[75,168],[51,80],[28,25],[192,150],[247,248],[47,282],[3,144],[-4,30],[-110,143],[32,118],[1,6],[1,7],[1,5],[3,200],[0,1],[1,132],[134,99],[-18,23],[73,176],[1,2],[86,66],[84,29],[39,13],[1,0],[9,3],[5,3],[74,33],[2,1],[8,4],[7,4],[121,75],[1,0],[7,5],[306,218],[4,3],[195,183],[3,4],[5,6],[5,6],[2,3],[37,22],[87,44],[1,0],[230,116],[4,2],[7,4],[7,5],[2,1],[90,66],[5,4],[6,5],[5,5],[6,6],[3,4],[20,27],[1,2],[4,6],[3,7],[3,6],[2,7],[17,57],[0,2],[22,13],[2,2],[319,27],[10,0],[9,1],[1,0],[77,7],[9,1],[9,2],[10,2],[9,2],[103,31],[262,77],[399,117],[8,3],[8,3],[9,4],[7,4],[1,0],[13,7],[3,2],[215,78],[296,91],[372,115],[6,2],[8,3],[84,34],[1,0],[8,4],[8,3],[7,5],[7,4],[6,5],[7,6],[5,5],[5,6],[4,5],[40,57],[4,4],[164,151],[0,1],[71,63],[126,107],[139,125],[194,99],[493,151],[2,1],[8,3],[8,4],[4,3],[50,29],[-5,62],[-2,16],[-6,47],[149,-43],[68,155],[-81,144],[-2,64],[-1,4],[-1,7],[-1,7],[-1,2],[-11,35],[1,16],[7,14],[13,15],[190,82],[204,85],[188,174],[213,348],[110,126],[142,160],[-23,100],[-19,82],[-4,15],[-52,114],[0,2],[-6,28],[-1,5],[-3,6],[-2,7],[-4,6],[-4,6],[-4,6],[-5,6],[-6,6],[-6,5],[-7,6],[-8,14],[-5,42],[0,3],[-4,27],[8,32],[54,77],[6,6],[25,28],[4,4],[4,6],[4,6],[3,5],[71,139],[4,9],[82,179],[5,10],[18,79],[1,3],[1,7],[0,6],[0,29],[0,7],[-1,6],[-40,224],[-26,116],[-3,4],[-215,324],[-2,11],[29,72],[4,11],[63,70],[90,98],[107,97],[184,20],[15,2],[30,0],[147,2],[75,22],[105,30],[90,26],[79,23],[47,14],[6,21],[-100,133],[-202,189],[-7,6],[1,1],[22,45],[1,2],[3,7],[2,6],[2,6],[25,126],[8,10],[129,101],[390,8],[104,31],[55,33],[73,144],[-18,23],[21,42],[73,85],[275,151],[619,228],[5,2],[2,1],[126,54],[6,3],[5,2],[177,91],[3,1],[8,5],[141,94],[270,25],[82,32],[29,14],[354,287],[22,20],[35,48],[-2,14],[0,1],[-3,7],[-2,6],[-22,102],[-22,100],[-1,7],[-1,1],[-8,124],[-3,45],[0,5],[0,1],[0,77],[0,6],[1,7],[2,6],[13,50],[1,1],[2,7],[2,233],[46,80],[96,32],[246,14],[117,58],[35,17],[64,32],[205,153],[67,49],[3,8],[15,40],[2,6],[4,7],[4,6],[4,6],[5,6],[1,0],[51,54],[5,4],[6,6],[7,5],[4,3],[-84,114],[41,24],[105,31],[65,4],[64,19],[187,20],[90,23],[14,28],[-27,24],[-32,14],[-223,44],[-479,62],[-13,12],[-92,12],[-125,-34],[-149,-59],[-62,33],[-46,103],[16,59],[36,80],[3,44],[-31,115],[-6,24],[64,146],[5,69],[-35,84],[-76,64],[-84,46],[-48,41],[-20,38],[0,59],[54,28],[178,61],[86,73],[26,54],[5,3],[82,33],[53,17],[52,13],[65,9],[49,25],[21,43],[-15,45],[-18,39],[-14,46],[-20,45],[-24,39],[-22,55],[-6,53],[34,40],[64,17],[51,33],[63,20],[69,10],[59,10],[109,-2],[91,-18],[16,-16],[68,-48],[46,-67],[55,-48],[120,-10],[40,57],[-37,61],[-94,25],[-112,40],[-81,73],[-15,26],[-11,38],[3,42],[19,58],[30,38],[39,48],[59,20],[33,37],[23,-4],[2,-3],[64,-20],[64,-16],[52,-28],[59,-29],[55,-21],[94,-26],[93,-1],[93,31],[33,56],[4,63],[-15,42],[-2,52],[36,46],[63,35],[69,13],[64,8],[66,16],[64,48],[19,47],[-24,42],[-33,37],[-81,71],[-46,40],[-39,43],[-27,57],[9,48],[44,57],[72,49],[106,34],[89,22],[84,27],[124,35],[100,23],[56,15],[62,11],[87,3],[77,12],[23,9],[23,43],[-39,46],[-81,42],[-61,11],[-70,9],[-60,9],[-71,28],[-17,45],[39,62],[94,25],[60,4],[81,0],[84,-6],[95,-9],[79,-2],[80,15],[57,29],[46,43],[38,49],[26,50],[25,39],[40,35],[67,54],[90,56],[106,77],[21,47],[-45,73],[-41,35],[-71,36],[-60,21],[-40,37],[46,29],[1,8],[18,4],[8,6],[54,9],[127,14],[67,12],[70,19],[104,26],[117,-9],[61,-41],[81,-43],[59,-8],[101,3],[115,22],[64,23],[46,21],[29,38],[-32,64],[-53,32],[-76,29],[-55,11],[-81,15],[-64,15],[-65,18],[-63,25],[-73,24],[-72,26],[-73,35],[17,18],[-8,6],[45,35],[69,4],[107,-4],[145,3],[117,26],[68,23],[57,29],[48,36],[23,37],[15,46],[18,76],[13,47],[18,63],[-2,40],[-48,58],[-50,31],[-59,22],[-73,14],[-70,21],[-79,19],[-67,10],[-58,0],[-77,-33],[-50,-30],[-50,-37],[-16,-50],[-1,-74],[-28,-37],[-54,-15],[-77,-2],[-69,7],[-26,-3],[-71,14],[-58,26],[-106,78],[-35,46],[-16,37],[3,51],[-9,57],[-28,47],[-37,49],[-39,96],[-28,37],[17,37],[55,62],[33,33],[14,76],[3,59],[-2,47],[13,39],[33,31],[2,0],[32,4],[-2,-34],[25,2],[22,3],[98,76],[85,32],[52,21],[56,11],[74,12],[64,29],[111,22],[93,-12],[65,-16],[52,13],[26,36],[23,59],[17,49],[52,35],[44,33],[40,29],[-24,39],[-153,31],[-64,20],[-105,57],[-59,30],[-58,34],[20,109],[-11,48],[-5,40],[-4,56],[-6,40],[2,58],[6,47],[-16,46],[-32,50],[-6,47],[19,40],[22,37],[41,32],[8,6],[38,29],[38,45],[14,11],[18,12],[-1,17],[-23,12],[-25,1],[-22,-9],[-44,-6],[-51,12],[-73,25],[-23,12],[78,83],[15,40],[-46,20],[-157,-12],[-79,10],[-41,48],[-16,43],[-29,36],[-75,32],[-59,19],[-74,55],[-41,75],[-24,86],[-28,38],[-84,101],[-27,64],[-38,77],[-79,91],[-33,32],[-96,88],[-90,66],[-69,47],[-44,29],[-44,25],[-11,42],[19,43],[19,42],[10,58],[33,60],[2,49],[31,42],[107,39],[81,36],[47,40],[37,41],[38,74],[6,39],[6,38],[-40,28],[14,47],[-83,69],[61,68],[41,8],[3,2],[31,5],[33,7],[57,20],[52,38],[93,122],[31,76],[-36,57],[-31,91],[-5,51],[22,77],[17,41],[40,65],[23,40],[79,143],[24,57],[86,79],[40,52],[-2,39],[-29,65],[-29,33],[-33,47],[-76,61],[-162,78],[-62,58],[-21,45],[-74,86],[-62,70],[-54,51],[-41,39],[-17,60],[-4,84],[-75,26],[46,33],[-18,43],[36,96],[45,15],[24,-16],[12,77],[-28,55],[41,35],[-104,27],[-90,-22],[-114,-47],[-77,15],[-19,0],[-91,92],[71,158],[55,82],[170,173],[116,106],[11,10],[1,0],[58,56],[87,36],[65,28],[58,40],[52,39],[42,11],[5,1],[16,11],[59,9],[14,4],[112,11],[68,8],[104,22],[56,47],[19,55],[82,37],[110,4],[68,10],[61,19],[107,53],[38,30],[36,49],[43,23],[76,53],[50,72],[12,112],[-10,152],[16,50],[27,40],[-1,63],[-33,43],[-39,18],[-6,3],[-34,40],[13,31],[23,53],[16,11],[9,23],[38,8],[1,1],[22,8],[150,58],[57,2],[131,-12],[205,-34],[100,-14],[55,-16],[149,15],[75,7],[129,14],[119,21],[174,54],[67,18],[108,22],[66,18],[60,14],[12,2],[54,8],[30,4],[314,77],[66,36],[183,39],[65,20],[75,43],[56,105],[39,74],[44,13],[5,10],[161,39],[98,-3],[60,6],[67,0],[200,-22],[50,-6],[52,-1],[92,-1],[34,-3],[45,1],[244,6],[206,7],[125,5],[166,20],[13,1],[91,23],[53,8],[273,-32],[90,-10],[166,-42],[213,-28],[58,-2],[155,14],[197,39],[128,38],[46,69],[123,68],[54,28],[116,54],[148,70],[61,28],[95,24],[98,25],[251,17],[44,6],[71,15],[90,-2],[323,-44],[221,-72],[18,-6],[198,-58],[83,-19],[134,-17],[219,-87],[209,-66],[137,-77],[128,-79],[94,-9],[56,-6],[72,91],[68,15],[74,20],[81,26],[85,29],[80,21],[58,11],[102,15],[112,5],[108,3],[104,5],[73,3],[30,6],[57,10],[105,32],[24,7],[79,23],[19,6],[71,23],[57,14],[53,12],[56,9],[92,33],[99,49],[55,25],[78,29],[57,24],[121,46],[92,21],[104,15],[84,11],[106,27],[77,20],[72,12],[57,9],[105,2],[94,-1],[83,16],[109,26],[84,24],[79,38],[31,45],[-1,45],[-26,52],[-101,142],[-31,57],[-25,41],[-19,50],[-2,50],[96,53],[51,19],[51,38],[14,38],[-40,39],[-105,49],[-42,30],[-2,66],[44,86],[8,73],[18,39],[68,33],[247,41],[98,0],[226,-18],[62,10],[62,23],[23,37],[-13,48],[-76,66],[-106,84],[0,57],[62,57],[59,32],[58,28],[53,21],[79,42],[144,74],[64,29],[82,26],[63,10],[107,3],[242,-14],[102,0],[144,-22],[25,0],[96,3],[164,52],[200,83],[66,24],[218,71],[118,13]],[[83798,60865],[18,-421],[8,-185],[3,-73],[4,-42],[36,-288],[3,-186],[4,-45],[4,-51],[2,-23],[-2,-192],[7,-100],[0,-1],[8,-107],[0,-1],[10,-138],[1,-10],[20,-276],[4,-61],[3,-44],[3,-35],[21,-278],[4,-71],[11,-193],[12,-204],[5,-83],[3,-67],[0,-18],[1,-34],[64,-962],[30,-437],[6,-92],[92,-1431],[35,-486],[4,-56],[1,-14],[4,-66],[4,-46],[3,-43],[1,-21],[1,-16],[1,-8],[2,-25],[22,-320],[2,-19],[0,-1],[6,-106],[3,-51],[5,-82],[6,-106],[4,-61],[14,-252],[26,-333],[22,-289],[25,-198],[44,-483],[7,-94],[10,-158],[1,-8],[3,-48],[4,-71],[1,-40],[8,-162],[2,-65],[2,-75],[2,-90],[2,-48],[1,-39],[16,-217],[3,-45],[8,-116],[7,-88],[11,-151],[4,-56],[13,-72],[-2,-39],[0,-3],[39,-768],[59,-748],[9,-114],[24,-567],[0,-1],[25,-210],[20,-305],[12,-173],[3,-45],[13,-200],[2,-110],[-4,-47],[6,-248],[12,-442],[26,-380],[17,-233],[2,-127],[0,-1],[13,-70],[1,-114],[9,-153],[9,-176],[6,-63],[10,-102],[5,-79],[9,-113],[5,-54],[12,-149],[7,-91],[5,-57],[11,-223],[5,-205],[3,-236],[-4,-228],[12,-225],[6,-201],[2,-45],[8,-160],[9,-253],[5,-172],[0,-16],[0,-41],[1,-12],[3,-30],[2,-25],[4,-34],[16,-132],[27,-189],[10,-70],[1,-11],[25,-174],[26,-163],[36,-232],[35,-182],[23,-148],[18,-123],[3,-111],[27,-139],[45,-432],[27,-275],[30,-324],[13,-198],[3,-52],[3,-50],[1,-5],[4,-35],[2,-53],[-3,-55],[4,-66],[7,-153],[-2,-65],[16,-152],[23,-194],[6,-52],[8,-67],[19,-160],[0,-3],[1,-10],[13,-107],[9,-75],[16,-132],[11,-97],[52,-438],[6,-51],[34,-289],[41,-373],[5,-44],[0,-3],[8,-70],[11,-91],[21,-179],[22,-190],[10,-89],[-9,-40],[1,-7],[2,-23],[4,-38],[6,-73],[1,-7],[6,-73],[6,-39],[9,-45],[0,-80],[0,-5],[7,-55],[-1,-7],[-4,-34],[2,-9],[-1,-8],[7,-51],[2,-23],[3,-84],[5,-40],[5,-66],[1,-58],[25,-177],[3,-69],[4,-68],[3,-47],[2,-29],[1,-8],[11,-148],[15,-161],[13,-138],[1,-41],[3,-46],[2,-26],[5,-66],[10,-92],[12,-132],[15,-14],[217,-42],[4,-1],[91,-4],[1,-1],[33,-29],[13,-12],[44,-41],[50,-49],[3,-4],[-13,-42],[47,-41],[102,-29],[189,-26],[31,-12],[60,-53],[36,-38],[1,-3],[92,-172],[27,-63],[13,-31],[47,-111],[-3,-7],[-7,-24],[-45,-137],[-32,-96],[-1,-3],[-71,-41],[-2,0],[-141,-2],[-116,-2],[-111,-2]],[[86393,32355],[-54,-9],[-190,-122],[-126,-85],[-125,-79],[-407,-253],[-129,-85],[-213,-139],[-260,-178],[-68,-46],[-134,-90],[-308,-208],[-846,-582],[-51,-34],[-12,-7],[-75,-51],[-17,-12],[-85,-57],[-84,-57],[-192,-131],[-53,124],[-125,297],[-2,5],[-27,65],[-18,42],[-44,105],[-16,42],[-17,45],[-24,70],[-109,290],[-243,650],[-19,55],[-372,-175],[-102,175],[-330,-189],[-193,132],[-378,-152],[-124,62],[-115,56],[-738,-607],[-216,-183],[-245,232],[-206,-211],[-208,175],[-284,-173],[-93,82],[-46,41],[-90,79],[-302,-216],[-75,228],[-153,462],[-155,470],[-40,122],[-23,67],[-68,207],[-28,88],[-52,153],[-94,300],[-22,54],[-27,67],[-2,7],[-63,161],[-15,37],[-29,69],[-17,41],[-44,-29],[-214,-142],[-119,-79],[-54,-36],[-85,-57],[-41,-26],[-544,-361],[-49,-32],[-43,-29],[-57,-37],[-63,-42],[-54,-36],[-91,-60],[-488,-324]],[[75469,32291],[-593,234],[-369,146],[-268,105],[-55,22],[-1,1],[-614,241],[-19,8],[-32,13],[-92,-88],[-156,-151],[-233,-64],[-128,46],[-125,22],[-154,116],[-33,29],[-16,13],[-366,322],[-41,16],[-465,63],[-133,-39],[-1227,157],[-159,41],[-1051,507],[-123,59],[-123,60],[-405,195],[-404,195],[-538,258],[-324,156],[-844,407],[-63,-7],[-58,6],[-91,47],[-87,49],[-45,35],[-42,24],[-28,34],[-122,87],[-165,84],[-249,113],[-159,80],[-746,372],[-203,107],[-288,152],[-633,283],[-99,50],[-400,199],[-265,131],[-76,38],[-228,113],[-227,113],[-132,65],[-132,66],[-248,123],[-56,27],[-75,39],[-77,37],[-93,49],[-425,216],[-4,2],[-157,79],[-83,43],[-27,13],[-94,46],[-51,24],[-47,23],[-428,207],[-439,208],[-89,42],[-54,18],[-17,9],[-75,42],[-76,44],[-99,44],[-220,113],[-64,32],[-75,49],[-57,27],[-71,56],[-78,26],[-346,189],[-207,114],[-141,77],[-118,68],[-50,29],[-106,59],[-72,43],[-35,19],[-174,94],[-12,6],[-142,76],[-68,36],[-66,35],[-72,37],[-48,24],[-203,121],[-42,25],[-23,13],[-487,262],[-96,49],[-144,70],[-193,104],[-122,65],[-123,67]],[[75469,32291],[-305,-201],[-48,-32],[-11,-7],[-33,-22],[-15,-11],[-42,-27],[-407,-270],[-19,-13],[-128,-84],[-53,-35],[-233,-155],[-256,-169],[33,-141],[78,-326],[109,-416],[132,-496],[12,-43],[13,-50],[83,-311],[41,-158],[21,-79],[11,-40],[187,-706],[10,-38],[15,-48],[40,-138],[7,-23],[53,-172],[9,-28],[16,-50],[60,-203],[93,-303],[51,-169],[15,-52],[46,-151],[46,-153],[69,-228],[167,-533],[60,-217],[153,-382],[109,-354],[-383,-253],[-40,-28],[-520,-341],[-506,-333],[-118,-76],[-186,-126],[-63,-41],[-133,-88],[-9,-7],[-115,-76],[-202,-136],[-60,-40],[-198,-132],[-4,-2],[-165,-111],[-8,-5],[-346,-231],[-220,-147],[-455,-304],[-52,-35],[-152,-102],[-170,-113]],[[71553,22530],[-113,46],[-124,51],[-120,51],[-83,35],[-204,86],[-100,33],[-349,139],[-524,208],[-111,44],[-599,240],[-579,227],[-206,81],[-361,147],[-130,50],[-41,15],[-101,39],[-14,5],[-254,97],[-232,88],[-59,24],[-23,9],[-63,24],[-58,22],[-93,37],[-176,69],[-56,21],[-103,41],[-163,57],[-72,23],[-390,154],[-423,166],[-104,42],[-155,63],[-616,226],[-57,21],[-80,30],[-351,133],[-100,41],[-67,27],[-5,1],[-62,7],[-218,87],[-252,98],[-81,30],[-55,21],[-183,65],[-128,45],[-143,54],[-204,77],[-181,67],[-99,41],[-274,99],[-140,49],[-160,56],[-217,78],[-182,68],[-150,57],[-244,90],[-332,123],[-153,56],[-233,85],[-195,71],[-79,29],[-68,24],[-141,51],[-37,13],[-91,33],[-22,8],[-41,15],[-138,52],[-279,108],[-180,62],[-136,47],[-95,42],[-220,77],[-295,115],[-388,135],[-174,68],[-65,26],[-260,94],[-249,83],[-160,61],[-53,20],[-733,276],[-63,24],[-305,114],[-330,130],[-68,27],[-35,14],[-69,28],[-62,24],[-70,28],[-30,12],[-38,15],[-17,7],[-58,23],[-71,28],[-107,42],[-47,19],[-130,52],[-33,16],[-90,46],[-17,9],[-114,8],[-15,0],[-18,1],[-93,11],[-62,26],[-26,11],[-114,24],[-36,9],[-55,13],[-54,4],[-91,3],[-70,-20],[-21,-36],[-27,-40],[-28,-37],[-28,-13],[-25,-13],[-68,18],[-71,5],[-98,28],[-70,-4],[-48,-20],[-43,-17],[-92,-92],[-74,-53],[-70,-43],[-61,-16],[-53,-15],[-106,-45],[-18,-5],[-36,-10],[-61,-4],[-55,5],[-4,1],[-80,7],[-17,2],[-73,-9],[-23,-32],[-5,-7],[-5,-5],[-31,-37],[-48,-24],[-100,9],[-63,17],[-33,13],[-39,16],[-33,6],[-22,3],[-28,-12],[-38,-18],[-57,-37],[-24,-44],[6,-23],[8,-30],[-17,-47],[-80,-3],[-82,-56],[-54,-36],[-18,-8],[-21,-11],[-33,-1],[-10,2],[-192,211],[-5,4],[-109,6],[-67,-4],[-33,-1],[-51,-9],[-55,-21],[-8,-10],[-19,-24],[-4,-8],[-23,9],[-113,47],[-16,-5],[-7,33],[-32,33],[2,41],[-65,30],[-52,14],[-94,6],[-60,8],[-22,39],[-66,82],[-4,6],[-172,223],[-177,222],[154,52],[-66,96],[-45,66],[-53,77],[-44,65],[212,43],[-63,96],[-116,183],[-46,75],[-153,-33],[-94,145],[-70,108],[-181,278],[-25,37],[-216,-41],[-74,-14],[-245,-46],[-258,-49],[-8,26],[-12,52],[-54,47],[-35,13],[-217,85],[-145,59],[-77,20],[-356,48],[-82,31],[-36,24],[-26,7],[-18,5],[-60,16],[-209,84],[-40,35],[-7,6],[-62,107],[-29,24],[-108,89],[-167,112],[-139,53],[-143,112],[-10,8],[10,24],[31,75],[24,32],[19,26],[23,32],[21,54],[11,27],[10,3],[13,4],[35,30],[36,69],[-7,22],[-12,42],[-3,9],[-56,42],[-10,5],[-101,47],[-7,4],[-113,45],[-234,75],[-114,45],[-30,1],[-18,1],[-323,93],[-86,41],[-5,3],[-52,33],[-2,2],[-3,3],[-66,68],[-14,14],[-1,3],[-18,74],[1,10],[-2,65],[-87,76],[-31,54],[-102,96],[-294,46],[-113,45],[-52,52],[-79,15],[-190,159],[-49,92],[43,43]],[[71553,22530],[-193,-129],[-212,-137],[-213,-137]],[[70935,22127],[-124,-131],[-206,-269],[-65,-44],[-58,-61],[-40,-45],[-51,-59],[-49,-58],[-16,-18],[-79,-93],[-98,-102],[-32,-32],[-35,-38],[-174,-201],[-40,-51],[-119,-154],[-71,-91],[-152,-197],[-127,-149],[-47,-55],[-129,-148],[-30,-35],[-32,-37],[-25,-34],[-37,-48],[-7,-40],[-113,-88],[-32,-37],[-38,-38],[-16,-21],[-13,-17],[-37,-48],[-29,-35],[-61,-75],[-38,-46],[-139,-154],[-34,-38],[-87,-96],[-33,-37],[-344,-397],[-27,-36],[-529,-618],[-36,-40],[-53,-61],[-93,-105],[-100,-113],[-130,10],[-39,-57],[-55,-81],[-139,-182],[-154,-204],[-85,-108],[-64,-81],[-59,-74],[-30,-41],[-39,-50],[-78,-76],[-16,-15],[-206,-199],[-279,-269],[-263,-272],[-223,-231],[-284,-309],[-71,-74],[-28,-33],[-42,-52],[-124,-153],[-105,-138],[-174,-241],[-118,-176],[-211,-255],[-86,-104],[-25,-30],[-5,-6],[-46,-52],[-50,-57],[-92,-106],[-76,-84],[-87,-97],[-289,-327],[-95,-100],[-201,-226],[-102,-115],[-77,-84],[-221,46],[-53,11],[-263,54],[29,-49],[48,-98],[38,-78],[35,-70],[271,-557],[139,-276],[56,-111]],[[63072,11960],[-140,25],[-111,17],[-2,1],[-76,10],[-67,8],[-683,108],[-456,61],[-332,43],[-61,8],[-60,8],[-98,15],[-132,18],[-130,15],[-152,22],[-87,11],[-2,1],[-56,7],[-94,9],[-232,32],[-16,2],[-61,8],[-59,23],[-6,39],[-19,44],[-19,63],[-21,61],[-22,65],[-27,85],[-11,46],[-29,102],[-16,48],[-20,61],[-16,48],[-17,47],[-36,132],[-5,19],[-18,37],[-376,-84],[-113,-25],[-347,-89],[-6,-2],[-9,-2],[-8,-4],[-3,-1],[-152,-142],[-70,46],[-44,29],[-38,29],[-57,16],[-138,24],[-22,10],[-29,13],[-58,30],[-70,32],[-24,35],[-28,36],[-15,46],[-27,46],[-49,70],[-32,45],[-51,42],[-34,31],[-39,38],[-320,-20],[-987,-92],[-186,501],[-26,58],[-18,40],[-66,146],[-19,46],[-256,-22],[-61,-6],[-79,-7],[-867,-78],[-109,-13],[-164,-19],[-670,-53],[-525,-44],[-209,-14],[-321,-29],[-131,-12],[-4,-1],[-1088,-89],[-2,0],[-330,-26],[-932,-78],[-338,-28],[-107,-9],[-463,-37],[-570,1545],[-42,109],[-168,431],[-42,108],[-65,166],[-133,330],[-20,52],[-57,147],[-203,523],[-2,3],[-139,359],[-78,-11],[-484,-67],[-61,-8],[-250,-35],[-670,-93],[-236,-32],[-223,-45],[-148,-19],[-374,-60],[-555,-75],[-426,-57],[-82,-11],[-77,-11],[-754,-114],[-406,-57],[-260,-35],[-22,-4],[-61,-10],[-738,-93],[-336,-48],[-70,-9],[-628,-82],[-242,-30],[-355,-49],[-156,-23],[-225,-31],[-188,-26],[-286,-40],[-76,-10],[-199,-27],[-289,-40],[-151,-20],[-71,-10],[-534,-71],[-90,-12],[-197,-32],[-208,-29],[-179,191],[-131,140],[-301,351],[-195,225],[-37,44],[-106,123],[-18,21],[-30,35],[-26,29],[-3,4],[-55,62],[-55,63],[-115,131],[-168,190],[-137,161],[-216,247],[-317,350],[-316,364],[-191,221],[-259,304],[-198,212],[-51,54],[-588,-80],[-148,-21],[-629,-93],[-9,-1],[-303,-42],[-222,-30],[-337,-55],[-396,-51],[-95,-12],[-596,-86],[-180,-23],[-321,-42],[-532,-79],[-106,-14],[-216,-30],[-26,-4],[-224,-36],[-264,-45]],[[29623,18817],[-451,345],[-98,74],[-125,97],[-226,167],[-189,156],[-138,99],[-523,388],[-45,168],[-18,112],[-84,516],[-22,137],[-20,126],[-35,180],[-81,1],[-463,4],[-313,5],[-229,0],[-109,209],[-209,413],[-208,383],[-38,72],[-34,70],[-24,49],[-144,278],[-235,453],[-12,23],[-174,346],[-34,68],[-113,225],[91,92],[43,44],[44,42],[221,218],[197,197],[125,122],[3,3],[86,83],[49,57],[43,40],[2,2],[167,156],[368,359],[35,35],[41,39],[71,70],[143,141],[98,96],[212,216],[32,32],[48,44],[40,69],[21,54],[14,64],[12,67],[10,53],[18,49],[10,45],[11,102],[10,53],[-5,58],[57,413],[7,48],[13,108],[9,91],[-7,39],[-28,48],[-155,104],[-217,146],[-171,116],[-16,17],[-15,15],[4,13],[15,50],[14,41],[48,143],[1,5],[75,229],[50,151],[1,4],[13,41],[6,19],[469,-33],[1012,-68],[119,-8],[160,-11],[127,-9],[72,-5],[192,-13],[152,-10],[34,42],[42,50],[7,9],[29,39],[34,33],[75,102],[103,129],[54,67],[96,116],[80,99],[48,60],[13,13],[26,25],[421,337],[95,76],[742,600],[13,10],[31,23],[64,52],[34,28],[68,54],[134,108],[161,130],[44,35],[202,181],[120,60],[167,126],[362,274],[224,170],[411,311],[146,111],[48,36]],[[29623,18817],[-121,-16],[-87,-12],[-13,-2],[-456,-63],[-361,-50],[-137,-18],[-21,-3],[-311,-40],[30,-38],[39,-46],[3,-4],[202,-236],[75,-87],[186,-218],[191,-229],[-102,-151],[-203,-299],[-78,-119],[-59,-91],[-4,-5],[-151,-233],[-32,-51],[-171,-253]],[[28042,16553],[-1442,11],[-185,2],[-301,3],[-118,0],[-90,1],[-4,0],[-120,1],[-213,2],[-65,1],[-17,0],[-267,1],[-348,3],[-54,1],[-429,3],[-62,0],[-143,1],[-166,2],[-599,10],[-61,-8],[-327,14],[-75,1],[-128,6],[-155,4],[-409,11],[-748,20],[-84,2],[-117,4],[-72,2],[-810,23],[143,316],[64,154],[43,102],[41,88],[32,41],[2,3],[83,107],[58,74],[148,209],[102,144],[283,408],[67,96],[122,175],[-359,-30],[-226,-19],[-275,-24],[-99,-8],[-267,-23],[-97,-9],[-134,-12],[-171,-12],[-258,-19],[-390,-29],[-183,-15],[-600,-48],[-14,-1],[-70,-5],[-286,-21],[-172,-13],[-56,-5],[-90,-6],[-70,-4],[-18,-2],[-413,-29],[-513,-37],[-278,-51],[-333,-26],[-204,-16],[-75,-6],[-84,-6],[-124,-8],[-341,-22],[-394,-27],[-344,-23],[-333,-24],[-380,-25],[-163,-11],[-114,-8],[-283,-19],[-55,-4],[-418,-32],[-839,-52],[60,-190],[7,-54],[28,-52],[-86,3],[-402,11],[-442,15],[-46,1],[-72,3],[-58,1],[-536,15],[-564,24],[-1,0],[-185,23],[-102,2],[66,-284],[35,-158],[17,-50],[13,-55],[4,-19],[26,-113],[4,-21],[38,-150],[32,-132],[-165,7],[-238,8],[-97,3],[-71,3],[-112,5],[-85,4],[-42,2],[-175,7],[-82,3],[-169,8],[-50,2],[-640,28],[-79,3],[-56,3],[-346,15],[-822,36],[-13,501],[-5,172],[-7,251],[-641,37],[-12,0],[-99,6],[-34,2],[-96,5],[-102,6],[-78,5]],[[5618,17802],[6,72],[7,140],[0,128],[64,86],[150,98],[45,13],[110,66],[72,57],[38,67],[5,89],[-109,93],[-127,76],[-68,58],[-22,33],[0,40],[23,66],[185,100],[311,198],[78,59],[94,191],[-169,285],[-18,61],[10,59],[80,163],[159,202],[73,149],[-40,1],[41,109],[-16,47],[-106,167],[-54,86],[-60,171],[0,80],[24,145],[30,61],[57,77],[64,71],[30,21],[158,63],[199,52],[45,11],[292,81],[28,16],[64,91],[60,42],[144,76],[220,229],[145,155],[62,46],[78,178],[54,147],[75,95],[142,304],[0,79],[42,84],[110,124],[83,108],[23,27],[30,21],[32,26],[48,38],[28,56],[-18,42],[-23,33],[-88,76],[-96,62],[-64,28],[-109,54],[-147,93],[-48,41],[-45,26],[-130,111],[-29,38],[-25,68],[46,93],[352,336],[37,55],[66,56],[103,71],[147,80],[143,103],[194,166],[-12,69],[-217,27],[-30,7],[-158,-5],[-344,50],[-129,4],[-300,91],[-20,18],[-128,56],[-25,28],[-9,41],[28,75],[-1,115],[-56,141],[-16,106],[21,22],[44,108],[81,104],[101,66],[146,80],[170,68],[98,61],[56,112],[-6,105],[52,118],[15,49],[5,57],[15,42],[38,105],[34,323],[75,169],[46,73],[30,100],[59,236],[26,43],[-1,241],[75,168],[8,32],[1,3],[2,7],[2,3],[72,169],[17,38],[45,105],[17,51],[0,24],[-7,29],[-17,69],[0,2],[-19,85],[0,2],[-1,7],[-1,7],[0,61],[0,1],[0,4],[4,55],[164,257],[67,105],[35,40],[107,87],[7,9],[48,60],[101,144],[36,52],[29,84],[-2,39],[-4,45],[-8,43],[-6,34],[-20,112],[15,79],[20,29],[16,22],[-115,139],[-37,64],[-64,32],[-53,27],[-7,9],[-6,6],[-6,5],[-6,5],[-7,5],[-1,0],[-1,1],[-23,13],[-116,127],[-1,1],[-6,5],[-6,6],[-6,5],[-7,4],[-8,4],[-5,3],[-28,14],[-4,5],[-6,5],[-6,5],[-7,5],[-7,5],[-7,4],[-80,44],[-8,4],[-4,2],[-62,27],[-19,8],[-5,3],[-7,2],[-102,37],[-10,7],[-3,2],[-93,63],[-35,46],[-1,1],[-7,41],[17,34],[47,59],[93,116],[163,192],[85,73],[101,46],[85,54],[102,86],[228,204],[62,126],[-5,22],[-30,141],[-32,54],[-2,35],[12,18],[67,100],[-20,177],[-36,103],[-34,49],[-8,61],[2,64],[31,61],[4,18],[28,34],[8,10],[9,12],[2,2],[48,5],[-15,245],[58,77],[210,147],[142,71],[138,41],[121,29],[284,75],[166,46],[63,19],[33,-2],[98,30],[251,44],[103,31],[86,54],[52,28],[89,29],[144,34],[129,32],[143,98],[308,198],[54,3],[43,10]],[[86393,32355],[-13,-69],[-9,-187],[0,-1],[116,-81],[122,-85],[34,-24],[9,-28],[16,-51],[8,-25],[-11,-20],[-2,-36],[2,-9],[16,-12],[4,-13],[8,-7],[48,-22],[67,-19],[15,-13],[11,-10],[1,-3],[8,-66],[2,-22],[-7,-17],[-4,-32],[-34,-73],[-24,-28],[-15,-28],[21,-182],[14,-34],[-6,-2],[-168,-65],[0,-1],[0,-2],[-7,-44],[-11,-94],[-1,-1],[-21,-91],[-5,-12],[-53,-56],[-3,-4],[-248,-106],[-2,0],[-1,-3],[-7,-41],[-3,-17],[-9,-52],[13,-25],[-3,-12],[-133,-107],[-77,-95],[-62,-76],[2,-14],[31,-70],[10,-8],[34,-19],[6,-3],[37,-22],[3,-9],[-34,-62],[-22,-12],[-207,-79],[-33,-1],[-70,0],[-59,5],[-43,3],[-3,-16],[17,-38],[19,-10],[123,-59],[55,-27],[47,-23],[15,-7],[63,-18],[10,-1],[194,-19],[35,0],[13,4],[32,9],[12,-10],[76,-65],[75,-64],[1,-1],[9,-14],[64,-104],[-40,-75],[-114,-190],[-11,-19],[-20,-53],[-30,-32],[-45,-49],[-92,-62],[-36,-70],[1,-35],[30,-108],[113,-100],[69,-35],[106,-100],[5,-5],[6,-30],[14,-62],[-54,-73],[-16,-22],[-143,-45],[-87,-28],[-32,-3],[-38,0],[-11,-2],[-7,-2],[-36,-15],[-11,-4],[-5,-10],[-5,-9],[-14,-28],[12,-86],[8,-96],[-27,-52],[-49,-92],[-37,-14],[-97,-32],[-32,-10],[-28,-16],[-17,-33],[-116,-34],[-153,6],[-41,-4],[-104,-31],[-26,-60],[-111,-256],[-108,-342],[-2,-8],[44,-61],[82,-48],[56,-31],[2,-1],[17,-8],[0,-8],[0,-147],[0,-18],[-266,-126],[-4,-6],[-31,-44],[151,-168],[-9,-43],[-16,-78],[-14,-63],[18,-13],[115,-90],[21,-2],[32,-10],[10,-9],[89,-176],[218,-208],[28,-26],[22,-21],[25,-36],[1,-1],[57,-111],[-180,-132],[19,-55],[216,-95],[49,-15],[6,-1],[17,-1],[3,-44],[-10,-5],[-5,-3],[-15,-16],[-38,-114],[68,-82],[213,42],[37,7],[39,-28],[1,-1],[10,-8],[7,-11],[-16,-8],[-103,-57],[-5,-7],[7,-21],[27,-32],[58,-49],[32,-13],[20,1],[72,3],[22,-2],[231,-72],[44,-21],[77,-71],[25,-41],[14,-50],[0,-7],[0,-34],[4,-29],[10,-10],[27,-13],[20,-4],[121,-15],[45,-5],[14,-2],[14,5],[3,8],[0,4],[-3,23],[7,7],[95,36],[240,4],[14,0],[24,0],[117,-13],[18,34],[12,42],[137,-33],[37,-9],[23,-5],[86,-21],[6,26],[50,42],[4,5],[27,-4],[37,-5],[24,1],[29,0],[126,-21],[47,-11],[14,-11],[-5,-11],[-11,-7],[-25,-6],[-44,-3],[-9,3],[-34,10],[-23,-3],[-16,-10],[-1,-15],[5,-7],[27,-11],[64,-14],[39,-80],[7,-15],[-11,-14],[-12,-15],[0,-10],[32,-44],[222,-57],[135,-44],[28,-9],[39,-25],[14,-8],[-1,-2],[-5,-12],[-10,-2],[-58,-12],[-38,-16],[-1,-11],[13,-12],[45,-20],[42,-11],[19,-2],[29,7],[26,12],[2,1],[77,20],[47,6],[14,-2],[19,-10],[45,-38],[50,-41],[1,-5],[4,-28],[-5,-33],[12,-10],[199,-120],[37,-14],[11,-3],[30,-7],[0,-28],[-19,8],[-24,4],[-23,1],[-2,0],[-44,-5],[-51,-10],[-22,-9],[73,-244],[10,-9],[77,-51],[52,-12],[21,-1],[24,0],[16,-9],[77,-48],[30,-10],[56,-20],[17,-6],[23,4],[13,9],[10,8],[27,21],[3,2],[9,10],[24,14],[32,3],[16,-2],[5,-1],[31,-10],[16,-6],[19,-11],[1,-2],[2,-4],[4,-7],[1,-15],[-4,-20],[-1,-3],[19,-21],[29,-64],[-12,-32],[100,-6],[26,-4],[3,-1],[163,-86],[7,-7],[1,-1],[2,-3],[4,-14],[-19,-19],[-1,-1],[-39,-15],[-19,-7],[-33,-1],[-103,12],[-71,0],[-70,-9],[-58,-14],[-3,-1],[-48,-20],[-39,-32],[-35,-51],[-52,-12],[0,-4],[0,-1],[-4,-40],[33,-29],[107,-20],[109,-15],[116,-103],[183,-88],[34,-23],[77,-3],[45,-6],[148,-25],[58,-12],[131,-45],[123,-64],[20,-24],[17,-20],[79,-93],[-3,-40],[8,-102],[9,-26],[57,-27],[38,0],[207,1],[102,-9],[3,0],[76,-13],[34,-14],[41,-29],[15,-16],[7,-10],[0,-56],[7,-8],[112,-72],[47,-26],[84,-4],[3,0],[118,-6],[86,-38],[156,-71],[49,-62],[32,-40],[0,-1],[10,-87],[13,-14],[7,-7],[19,-15],[3,-3],[45,-25],[30,-7],[154,-31],[4,1],[76,40],[11,5],[55,12],[5,-2],[130,-37],[60,-9],[100,-15],[123,-20],[8,0],[54,-11],[39,-9],[71,-14],[77,-64],[17,-45],[36,-121],[0,-4],[2,-112],[0,-6],[1,-27],[7,-24],[0,-2],[1,-1],[8,-7],[15,-9],[12,-6],[18,-3],[7,-1],[22,-2],[43,7],[96,15],[97,15],[25,8],[15,4],[8,1],[144,-5],[91,-12],[146,-36],[368,-150],[19,-17],[8,-7],[4,-28],[1,-11],[45,-38],[28,-23],[2,-8],[2,-9],[17,-63],[7,-24],[93,-117],[63,-9],[52,-32],[35,-32],[90,-80],[-9,-18],[-28,-52],[-43,-44],[-33,-21],[-76,-48],[-7,-4],[-1,-1],[-14,-27],[-3,-5],[50,-56],[5,-6],[-24,-26],[-7,-4],[-44,-21],[-14,-6],[-34,-9],[-79,-20],[-35,-30],[-18,-53],[27,-37],[12,-18],[-7,-12],[-24,-46],[-4,-7],[-52,-75],[-27,-38],[-19,-17],[-12,-53],[-2,-10],[-41,-90],[-21,-46],[-16,-69],[-5,-22],[-1,-6],[2,-7],[16,-53],[10,-33],[58,-93],[-58,-91],[-81,-24],[-160,-27],[-40,-20],[-138,-40],[-32,-61],[19,-23],[29,-33],[5,-31],[2,-10],[77,-87],[70,-78],[-6,-31],[-3,-22],[25,-44],[-20,-57],[41,-50],[10,-36],[-29,-56],[-165,-72],[-54,-102],[37,-103],[6,-17],[-32,-190],[-32,-59],[-5,-11],[-61,-41],[-52,-117],[-92,-161],[-47,-84],[-3,-44],[-1,-13],[-3,-46],[75,-135],[69,-79],[8,-9],[81,-209],[-252,-36],[-1,-3],[16,-117],[12,-87],[15,-113],[196,-32],[123,-83],[1,-80],[-53,-2],[-130,-6],[-223,95],[-421,194],[-109,26],[0,11],[0,194],[34,22],[69,78],[-64,112],[-20,119],[-35,116],[20,105],[-94,109],[-119,116],[-149,64],[-56,68],[30,88],[-138,58],[-2,-5],[-35,-100],[32,-110],[87,-75],[204,-84],[1,-15],[1,-1],[7,-141],[6,-6],[4,-59],[21,-108],[8,-92],[42,-124],[-225,-10],[-136,-45],[-217,-54],[-70,-10],[-23,-63],[30,-14],[141,-30],[192,-36],[-17,-6],[-94,-38],[-155,-22],[-157,44],[-130,-10],[-72,-50],[-100,-31],[-101,-63],[-102,-10],[-113,2],[-108,-16],[-123,78],[-3,93],[-163,14],[-168,41],[-121,75],[-38,38],[-85,85],[-82,-50],[-52,-31],[-49,-84],[-8,-15],[218,-23],[139,-81],[107,-90],[37,-110],[165,-29],[102,-29],[195,0],[146,-16],[36,-36],[50,-14],[78,-110],[0,-156],[-170,-172],[13,-145],[50,-92],[75,-125],[-8,-3],[27,-24],[14,-123],[123,-65],[-16,-104],[-181,-1],[-178,84],[49,39],[-10,67],[-59,30],[-81,-13],[-261,-49],[51,-130],[-87,-117],[4,-88],[-130,-37],[-127,-49],[-78,-47],[-145,-2]],[[90415,14779],[-87,9],[-54,8],[-56,9],[-107,38],[-94,10],[-317,33],[-417,44],[-293,30],[-63,6],[-288,31],[-310,33],[-107,10],[-105,11],[-86,11],[-68,11],[-45,-4],[-44,-5],[-131,-17],[-67,-8],[-139,-17],[-45,-6],[-72,-8],[-78,-10],[-5,0],[-121,-15],[-175,-19],[-253,-32],[-100,-10],[-151,-16],[-164,-20],[-62,-7],[-318,-36],[-141,-17],[-158,-19],[-177,-19],[-98,-8],[-109,-9],[-195,-1],[-195,-4],[-165,0],[-101,-2],[-82,-1],[-9,0],[-86,-1],[-105,1],[-550,-2],[-144,-1],[-80,0],[-164,0],[-3,0],[-643,-2],[-33,-1],[-190,0],[-156,-1],[-6,-1],[-141,-2],[-44,0],[-159,-1],[-207,1],[-506,-1],[-565,-1],[-259,-1],[-88,-1],[94,127],[89,79],[242,214],[233,195],[2,2],[44,37],[2,2],[53,44],[75,65],[317,271],[158,135],[148,127],[114,98],[61,52],[58,49],[182,164],[138,108],[230,206],[46,34],[63,52],[48,37],[64,62],[-120,51],[-54,24],[-157,67],[-764,328],[-298,132],[-21,10],[-50,22],[-252,112],[-492,218],[-91,40],[-306,137],[-233,95],[-219,91],[-149,65],[-828,363],[-185,82],[-658,282],[-185,79],[-90,37],[-88,39],[-51,22],[-126,50],[-32,14],[-45,20],[-300,136],[-230,102],[-52,23],[-138,61],[-25,12],[-462,205],[-91,41],[-1135,507],[-916,390],[-23,10],[-454,193],[-2,1],[-536,232],[-170,82],[-921,378],[-243,112],[-136,62],[-247,114],[-385,177]],[[99000,14123],[32,-66],[-104,-45],[-4,1],[-32,-20],[-33,-1],[-10,4],[-5,-3],[-217,59],[9,31],[2,10],[8,13],[88,-1],[95,26],[91,28],[80,-36]],[[99790,14416],[149,-112],[17,-180],[-25,-130],[68,-144],[-57,-41],[-92,2],[-25,33],[-227,44],[-282,-62],[-146,45],[-65,20],[0,127],[167,69],[70,79],[-103,58],[-184,112],[23,15],[85,54],[104,10],[246,-35],[277,36]],[[90415,14779],[-119,-30],[-99,39],[-138,-27],[-195,-48],[-30,-122],[-115,-82],[-173,-39],[-123,-3],[-91,-38],[48,-65],[46,-68],[-55,-78],[-259,-32],[-210,-13],[-197,48],[-5,1],[125,-137],[252,-14],[41,-90],[-63,-72],[-100,-46],[-44,-110],[99,-112],[72,-8],[1,0],[160,-19],[32,34],[60,64],[91,47],[148,27],[172,-11],[160,-6],[132,-6],[130,-16],[166,22],[138,41],[95,85],[122,-2],[206,11],[327,19],[160,-25],[100,-12],[266,-8],[299,-157],[67,-146],[169,7],[117,-59],[121,-69],[215,-24],[119,-26],[87,22],[-47,35],[-166,125],[38,56],[268,33],[276,-64],[97,58],[-12,81],[8,104],[-61,84],[-77,58],[3,68],[-182,163],[-247,0],[-143,46],[149,198],[-11,23],[-144,41],[-274,-83],[-179,17],[-206,-136],[-128,40],[115,121],[-75,154],[-55,135],[13,144],[98,77],[-19,120],[219,34],[82,133],[-6,69],[-66,51],[100,119],[-57,157],[-7,88],[2,90],[29,100],[11,86],[37,120],[110,34],[156,-74],[9,-95],[105,-64],[95,-50],[141,10],[200,76],[142,56],[167,-32],[146,-10],[218,-50],[69,88],[14,6],[92,38],[113,22],[153,-37],[4,-1],[297,-5],[196,-154],[350,-131],[44,-39],[53,-17],[122,-84],[168,-81],[134,-40],[101,-52],[111,-39],[115,-36],[161,-31],[69,-96],[147,-61],[185,-1],[141,-10],[248,-53],[57,-28],[92,-46],[44,-84],[-68,-88],[165,-58],[19,-16],[132,-111],[136,-76],[154,-7],[97,-31],[57,-19],[190,-77],[-5,-148],[199,-43],[9,-14],[35,-59],[-305,-35],[-43,-92],[227,-75],[10,2],[1,-1],[362,-14],[118,-58],[-51,-91],[-74,-102],[190,21],[128,-13],[40,70],[144,-42],[-21,-31],[-10,-13],[17,-61],[76,-68],[-64,-64],[-141,-2],[-14,-6],[-47,-23],[14,-50],[6,-19],[246,60],[190,21],[46,21],[196,33],[80,29],[99,-30],[4,-54],[13,-79],[45,-74],[178,-49],[87,-97],[-131,-41],[-75,-65],[1,-70],[-69,-72],[-43,-91],[-130,-93],[-127,-67],[-116,-78],[-146,-11],[-175,-109],[-92,-145],[-15,-112],[21,-63],[-92,-60],[-44,-74],[-167,-49],[-166,-37],[-143,-97],[-79,-126],[2,-108],[-137,-6],[-157,50],[-75,-103],[105,-47],[143,-41],[-104,-130],[-48,-119],[-117,-22],[-167,15],[-198,-77],[-142,-114],[-148,-132],[-45,-130],[11,-186],[-199,-141],[-131,-88],[-38,-100],[68,-91],[-85,-118],[-95,-59],[-102,-80],[-142,-21],[-101,-25],[-78,-66],[-148,-103],[-118,-131],[-33,-144],[-182,-65],[-95,-35],[-103,-54],[-46,-94],[-56,-99],[-46,-93],[-47,-95],[-42,-140],[-12,-117],[279,-260],[-91,-55],[-367,78],[-102,-11],[-115,-36],[-97,-94],[-76,-76],[-72,-150],[-24,-167],[-4,-108],[-5,-101],[21,-62],[-106,7],[-217,25],[-23,3],[-32,104],[-1,127],[37,57],[-1,0],[-350,312],[-96,54],[-415,90],[-3,0],[-2,0],[-38,-17],[-84,-38],[-53,-105],[143,-74],[117,-54],[100,-44],[124,-60],[42,-31],[-10,-143],[-163,-46],[-261,-101],[-12,-25],[-1,-2],[-1,-1],[-39,-83],[-12,-24],[44,-22],[6,-53],[8,-61],[80,-42],[105,-55],[0,-1],[-91,-64],[-98,-74],[-130,-52],[-6,-60],[-6,-63],[145,-34],[75,83],[26,29],[41,34],[25,21],[101,58],[165,51],[70,9],[101,13],[39,5],[86,11],[82,134],[-3,55],[99,-13],[302,-38],[-46,-57],[-117,-165],[-47,-115],[-27,-88],[-21,-124],[-55,-203],[-30,-1],[-106,0],[-75,-9],[-45,-9],[-99,-15],[-9,-2],[-56,-17],[-84,-20],[-77,-17],[-79,-18],[-81,-27],[-60,-24],[-24,-10],[-217,-95],[-5,-2],[-136,-32],[-488,-117],[-49,19],[-335,130],[-290,122],[-54,23],[-78,30],[-50,21],[-17,7],[-108,46],[-83,35],[-70,28],[-10,4],[-49,21],[-21,8],[-77,33],[-57,23],[-65,23],[-358,150],[-87,38],[-4,1],[-6,3],[-18,8],[-2,1],[-1,0],[-147,53],[-25,4],[-569,97],[-152,26],[-104,14],[-69,9],[-151,7],[-192,-4],[-69,-1],[-56,0],[-60,0],[-75,-1],[-282,-16],[-290,-24],[-132,-9],[-34,-4],[-101,-16],[-12,-2],[-33,-8],[-11,-2],[-168,-55],[-93,-32],[-54,-18],[-18,-6],[-220,-69],[-411,-134],[-13,-5],[-108,-33],[-242,-70],[-26,-7],[-3,-1],[-46,-14],[-162,-48],[-66,-20],[-33,-10],[-51,-15],[-211,-58],[-55,-9],[-102,-17],[-160,-18],[-131,-15],[-290,-27],[-74,-6],[-274,-26],[-169,-13],[-20,-2],[-55,-6],[-64,-2],[-264,-29],[-172,-21],[-225,-23],[-556,-60],[-98,-10],[-339,-39],[-331,-41],[-128,-14],[-92,-48],[-111,-58],[-142,-76],[-96,-64],[-83,-45],[-192,-103],[-168,-180],[-62,-77],[-54,-67],[-4,-5],[-220,-287],[-69,-110],[-146,-252],[-22,-51],[-135,-234],[-71,-134],[-175,-233],[0,-1],[-86,15],[-166,26],[-131,20],[-320,50],[-196,31],[-228,37],[-275,44],[-154,25],[-450,72],[-39,5],[-52,7],[-79,12],[-130,19],[-10,2],[-117,20],[-84,14],[-103,17],[-47,7],[-33,5],[-61,10],[-71,7],[-79,7],[-309,53],[-244,41],[-190,33],[-596,-142],[-139,-35],[-99,-25],[-80,-20],[-219,-66],[-108,-32],[-554,-167],[-57,-13],[-57,-37],[-364,-223],[-433,-279],[-53,-35],[-51,-34],[-51,-34],[-5,-3],[-41,-32],[56,-483],[23,-208],[22,-193],[8,-73],[4,-39],[39,-392],[14,-53],[22,-107],[46,-487],[-334,51],[-109,16],[-208,32],[-186,26],[-22,3],[-110,17],[-89,11],[-64,8],[-128,24],[-41,7],[-101,16],[-17,3],[-9,2],[-54,8],[-44,6],[-24,3],[-36,6],[-324,49],[-384,61],[-140,-13],[-365,-33],[-666,-112]],[[71028,1748],[-217,141],[-227,147],[-187,121],[-150,97],[-69,11],[-96,14],[-157,16],[-12,2],[-70,10],[-56,7],[-71,7],[-55,5],[-63,7],[-65,10],[-617,77],[-255,31],[-65,8],[-214,31],[-175,23],[-212,25],[-32,4],[-309,42],[-239,28],[-44,6],[-157,20],[-195,26],[-661,83],[-823,104],[-143,18],[-4,8],[-58,185],[-12,42],[-16,53],[-49,171],[-155,-7],[-8,0],[-137,-6],[-10,53],[0,1],[-3,0],[-115,-43],[-8,0],[-8,-1],[-155,10],[-57,37],[-14,9],[-22,62],[14,139],[6,2],[91,45],[-68,93],[-9,12],[-59,80],[184,103],[27,13],[-16,11],[-329,214],[-65,42],[-233,158],[-72,50],[-54,34],[-596,406],[-538,20],[-73,1],[-141,3],[-153,3],[-252,8],[-13,0],[-47,1],[-64,1],[-322,5],[-598,16],[-47,164],[-20,66],[-166,527],[-77,188],[-170,548],[-50,161],[-127,397],[-119,358],[-23,71],[-72,243],[-20,48],[-223,675],[-26,80],[-27,108],[-33,76],[-22,73],[-27,97],[-17,49],[-16,45],[-9,23],[-8,21],[-15,37],[61,4],[56,9],[9,1],[47,8],[40,2],[91,6],[130,9],[228,15],[467,40],[59,2],[168,16],[56,4],[123,7],[92,12],[179,7],[248,23],[6,1],[147,11],[564,41],[687,56],[147,12],[38,3],[202,18],[82,4],[99,7],[90,8],[-21,50],[-59,173],[-28,84],[-11,50],[-81,237],[-38,112],[-44,141],[-32,66],[-11,37],[-43,147],[-30,81],[-98,292],[-253,749],[-15,47],[-33,69],[-10,59],[0,2],[-32,83],[-12,32],[-7,20],[-29,91],[-3,7],[-21,47]],[[71028,1748],[-92,-41],[-81,-36],[-136,-49],[-19,-7],[-225,-108],[-13,-8],[-66,-38],[-63,-36],[-33,-21],[-393,-244],[-49,-27],[-45,-25],[-402,-381],[-62,-59],[-115,-106],[-24,-19],[-464,-294],[-44,-28],[-28,-18],[-287,-203],[-538,0],[-497,0],[-6,0],[-76,0],[-121,0],[-264,3],[-450,5],[-561,13],[-236,6],[-33,2],[-342,16],[-4,0],[-654,1],[-28,0],[-75,2],[-57,1],[-124,1],[-62,2],[-62,1],[-162,4],[-364,10],[-175,3],[-120,-1],[-82,0],[-70,2],[-135,2],[-599,13],[-106,2],[-836,16],[-50,1],[-118,2],[-348,7],[-38,0],[-96,1],[-85,0],[-5,0],[-303,7],[-37,1],[-10,0],[-1,0],[-163,3],[-218,3],[-76,1],[-28,0],[-81,0],[-62,0],[-313,6],[-103,0],[-151,4],[-116,2],[-161,0],[-366,8],[-155,4],[-241,6],[-341,9],[-95,1],[-176,2],[-150,6],[-112,3],[-96,3],[-90,2],[-147,2],[-596,7],[-338,4],[-974,16],[-75,4],[-85,0],[-21,0],[-33,0],[-108,1],[-131,2],[-281,4],[-15,0],[-783,12],[-201,3],[-805,12],[-3,1],[-590,6],[-288,5],[-386,7],[-194,4],[-71,0],[-27,0],[-214,6],[-97,1],[-33,-2],[-30,-1],[-18,1],[-20,-1],[-125,6],[-108,5],[-230,5],[-101,3],[-60,0],[-80,2],[-55,2],[-315,0],[-67,4],[-344,6],[-110,1],[-259,5],[-460,7],[-371,5],[-30,2],[-8,0],[-42,1],[-55,0],[-667,11],[-319,5],[-372,7],[-85,3],[-342,6],[-1100,17],[-362,4],[-70,0],[-579,8],[-186,4],[-14,1],[-73,3],[-78,0],[-674,12],[-161,3],[-11,0],[-151,4],[-28,0],[-24,0],[-696,15],[-7,0],[-367,8],[-251,6],[-60,2],[-81,-1],[-358,8],[-336,4],[-70,4],[-593,11],[-1075,20],[-361,7],[-54,0],[-2,0],[-456,12],[-799,11],[-360,7],[-198,4],[-127,2],[-537,10],[-91,1],[-620,13],[-581,10],[-38,1],[-74,1],[-305,6],[-14,1]],[[33972,585],[-3,11],[-37,138],[-50,198],[-14,43],[-87,332],[-60,233],[-29,114],[-7,26],[-9,35],[-20,71],[-34,124],[-50,126],[-22,70],[-17,57],[-59,183],[-90,286],[-71,225],[-62,196],[-146,458],[-1604,31],[-100,334],[0,2],[-119,399],[-28,93],[-263,879],[-4,15],[-23,75],[-7,26],[-4,13],[-15,47],[-52,176],[-29,97],[-76,254],[-20,69],[-129,431],[-34,113],[-43,144],[-50,119],[-80,284],[0,1],[4,53],[-138,467],[-37,126],[-53,175],[-32,215],[-58,194],[-56,187],[-93,326],[-4,14],[-26,82],[-16,56],[-134,457],[-277,4],[-78,1],[-1,0],[-205,2],[-850,11],[-141,2],[-153,2],[-99,2],[-625,8],[-625,4],[49,648],[12,163],[47,526],[0,2],[36,408],[0,1],[21,239],[5,47],[7,84],[2,32],[9,161],[6,80],[1,5],[4,56],[22,280],[2,21],[2,30],[5,39],[93,273],[52,146],[45,126],[24,63],[53,143],[25,70],[43,125],[112,308],[41,115],[59,164],[86,242],[49,135],[83,233],[3,9],[20,57],[12,37],[16,43],[53,157],[-82,-7],[91,328],[15,57],[123,420],[49,171],[21,70],[37,135],[31,114],[58,202],[18,63],[21,73],[37,155],[-204,3]],[[33972,585],[-97,1],[-297,6],[-553,7],[-122,2],[-69,0],[-335,5],[-884,12],[-37,1],[-100,1],[-76,1],[-112,2],[-132,2],[-105,2],[-269,5],[-185,5],[-58,2],[-74,2],[-114,3],[-162,6],[-45,1],[-35,1],[-33,0],[-388,3],[-57,1],[-100,2],[-28,1],[-93,2],[-120,3],[-38,1],[-73,2],[-172,4],[-469,10],[-203,5],[-438,9],[-182,3],[-167,5],[-170,4],[-117,1],[-55,1],[-93,2],[-186,4],[-116,3],[-160,3],[-771,17],[-87,1],[-86,2],[-12,1],[-136,3],[-105,0],[-3,0],[-4,0],[-9,0],[-9,0],[-150,4],[-175,3],[-1019,22],[-259,6],[-470,12],[-71,1],[-1050,17],[-447,8],[-983,17],[-144,2],[-27,0],[-42,1],[-77,2],[-723,12],[-679,12],[-416,7],[-632,11],[-439,10],[-18,1],[-250,4],[-238,4],[-459,8],[-73,-2],[-11,-1],[-710,16],[-244,4],[-160,2],[-700,14],[-162,3],[-191,3],[-136,3],[-89,3],[-612,13],[-826,16],[-325,7],[-114,2],[-984,21],[-196,4],[-278,6],[-406,9],[-196,4],[-445,11],[-879,19],[-61,2],[-269,5],[-78,1],[-66,3],[-91,1],[-70,1],[-295,7],[-229,5],[-339,7],[-209,5],[-99,3],[-287,6],[-452,11],[-13,0],[-94,1],[-174,4],[-178,4],[-239,5],[-36,1],[-167,2],[-95,1],[-67,4],[-72,4],[19,93],[31,20],[-149,168],[-142,123],[-61,32],[-347,234],[-117,94],[-25,48],[-53,225],[5,9],[-54,166],[-69,93],[-82,70],[-157,130],[-161,65],[-88,16],[-150,116],[-125,69],[-50,16],[-145,19],[-86,1],[-97,-2],[-95,-17],[-57,2],[-79,-24],[-211,-97],[-69,-159],[-285,-72],[-41,0],[-67,197],[51,70],[8,11],[184,61],[5,12],[41,101],[7,93],[-18,62],[-81,70],[-321,190],[-208,106],[-65,23],[-48,41],[-162,81],[-18,2],[-208,126],[-50,36],[-212,137],[-107,55],[-8,4],[-1,1],[-211,195],[-52,111],[-20,57],[7,113],[-23,72],[-15,27],[-71,61],[-110,200],[-51,269],[-17,141],[14,88],[-54,205],[-161,125],[-160,196],[-27,32],[-77,73],[32,57],[36,51],[3,4],[4,6],[2,4],[35,67],[0,1],[2,4],[1,2],[3,6],[2,7],[2,7],[1,6],[0,4],[2,45],[0,4],[0,7],[-1,6],[-2,7],[-1,4],[-5,16],[-13,161],[0,1],[-1,7],[-28,357],[127,285],[34,13],[46,17],[233,74],[4,1],[269,92],[1,0],[41,15],[376,200],[107,80],[41,65],[21,160],[-36,45],[26,249],[18,37],[107,41],[113,35],[78,39],[54,92],[-1,114],[-68,158],[-92,205],[-4,50],[25,51],[5,49],[-3,35],[-13,12],[20,22],[14,48],[1,99],[-11,75],[-50,116],[-52,71],[-47,41],[-82,30],[-39,0],[-68,19],[-38,20],[-54,46],[-11,36],[48,98],[68,61],[154,59],[257,91],[209,111],[160,49],[104,16],[18,-2],[248,12],[163,19],[220,55],[271,40],[315,33],[82,29],[207,87],[62,47],[61,27],[157,44],[41,4],[97,-17],[66,-44],[122,-25],[109,5],[69,21],[196,143],[184,80],[84,54],[91,67],[85,74],[27,56],[-101,87],[-59,57],[-32,54],[-9,60],[10,59],[84,160],[227,139],[170,10],[109,-10],[140,-13],[68,13],[41,13],[180,71],[64,71],[58,116],[-9,100],[-52,52],[-79,35],[-193,79],[-18,3],[-201,116],[-240,93],[-170,224],[-26,144],[53,217],[47,232],[-41,74],[-81,71],[-93,46],[-75,45],[-68,58],[-19,31],[-8,12],[0,3],[3,101],[28,56],[50,43],[130,87],[355,152],[126,78],[23,47],[70,65],[114,54],[170,42],[323,206],[154,99],[195,170],[15,87],[13,44],[18,61],[-71,57],[-62,57],[-79,127],[-62,153],[-171,131],[-12,148],[76,74],[303,125],[73,50],[85,132],[-8,180],[-11,15],[-79,111],[-7,10],[-43,29],[-132,88],[-11,9],[-181,150],[-30,38],[23,54],[2,6],[6,22],[-1,68],[-5,47],[-7,23],[-21,16],[-33,16],[-23,11],[-35,17],[-88,17],[-53,-5],[-59,-6],[-111,10],[-68,19],[-96,42],[-62,58],[-17,16],[-43,58],[-89,93],[-36,45],[-15,38],[6,62],[58,41],[62,28],[53,18],[49,29],[55,58],[13,64],[-12,82],[-12,53],[-5,40],[-1,61]]],"transform":{"scale":[0.000018439549325492697,0.000026086993519935698],"translate":[-72.55523213499987,42.69697629000012]}} diff --git a/src/js/config/mapconfig/mapfiles/county/nj-counties.json b/src/js/config/mapconfig/mapfiles/county/nj-counties.json new file mode 100644 index 00000000..900d07b8 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/nj-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-75.55978826699987,38.92903715,-73.9027272159999,41.35454465800012],"geometries":[{"type":"Polygon","properties":{"name":"NJ"},"id":"34037","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34031","arcs":[[4,5,-1,6,7]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34003","arcs":[[8,9,-8,10]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34041","arcs":[[11,12,13,-3]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34027","arcs":[[14,15,16,17,-12,-2,-6]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34013","arcs":[[-5,-10,18,19,20,-15]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34017","arcs":[[21,-19,-9]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34019","arcs":[[22,23,24,-13,-18]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34035","arcs":[[25,26,27,-23,-17]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34039","arcs":[[28,29,-26,-16,-21]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34023","arcs":[[30,31,32,-27,-30]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34025","arcs":[[33,34,35,-32,36]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34021","arcs":[[-33,-36,37,38,-24,-28]]},{"type":"Polygon","properties":{"name":"NJ"},"id":"34005","arcs":[[-35,39,40,41,42,43,-38]]},{"type":"MultiPolygon","properties":{"name":"NJ"},"id":"34029","arcs":[[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56,-40,-34]]]},{"type":"MultiPolygon","properties":{"name":"NJ"},"id":"34007","arcs":[[[57]],[[58,59,60,-43]]]},{"type":"MultiPolygon","properties":{"name":"NJ"},"id":"34015","arcs":[[[61]],[[62,63,64,65,-60]]]},{"type":"MultiPolygon","properties":{"name":"NJ"},"id":"34033","arcs":[[[66,67]],[[68,69,-65]]]},{"type":"MultiPolygon","properties":{"name":"NJ"},"id":"34001","arcs":[[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86,87,88,-63,-59,-42]]]},{"type":"MultiPolygon","properties":{"name":"NJ"},"id":"34011","arcs":[[[89]],[[90,-68,91,-69,-64,-89,92,93]]]},{"type":"MultiPolygon","properties":{"name":"NJ"},"id":"34009","arcs":[[[94]],[[95]],[[96]],[[97,-93,-88]]]}]},"states":{"type":"GeometryCollection","bbox":[-75.55978826699987,38.92903715,-73.9027272159999,41.35454465800012],"geometries":[{"type":"MultiPolygon","properties":{"name":"New Jersey"},"id":"34","arcs":[[[94]],[[70]],[[95]],[[96]],[[71]],[[89]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[61]],[[57]],[[90,66,91,69,65,60,43,38,24,13,3,6,10,21,19,28,30,36,56,40,86,97,93]]]}]}},"arcs":[[[72090,93650],[-502,-171],[-346,-200],[-50,-29],[-194,-113],[-79,-46],[-137,-80],[-48,-27],[-60,-35],[-50,-31],[-237,-137],[-90,-52],[-60,-35],[-164,-95],[-282,-164],[-821,-474],[-175,-103],[-114,-66],[-85,-49],[-84,-46],[-113,-60],[-527,-304],[-940,-547],[-321,-181],[-115,-66],[-1195,-701],[-103,-62],[-84,-49],[-54,-29],[-55,-37],[-226,-135],[-806,-480],[-120,-74],[-67,-45]],[[63786,88927],[-1,-1],[-58,-35],[-64,-10],[-25,-14],[-215,-126],[-439,-255],[-353,-203],[-223,-128],[-48,-28],[-81,-44],[-81,-47],[-156,-90],[-259,-153],[-495,-284],[-60,-37],[-151,-87],[-537,-322],[-169,-103],[-532,-325],[-69,-45],[-57,-33],[-64,-37],[-71,-40],[-143,-80],[-229,-136],[-139,-83],[-193,-119],[-217,-136],[-324,-204],[-71,-44],[-47,-28],[-604,-369],[-9,-5],[-391,-233],[-115,-69],[-160,-98],[-75,-46],[-541,-333],[-132,-86],[-117,-76],[-44,-29],[-4,-3],[-455,-271],[-43,-32],[-57,-48],[-39,-73],[-16,-56],[13,-56],[18,-61],[33,-44],[53,-46],[48,-40],[98,-62],[67,-60],[47,-50],[28,-55],[12,-66],[-5,-51],[-10,-55],[-21,-63],[-27,-47],[-22,-43],[-202,-172],[-67,-56],[-319,-130],[-252,-103],[-87,-35],[-99,-81],[-51,-42],[-12,-58],[132,-95],[-5,-55],[-36,-35],[-182,-50],[-411,-101],[-42,-10],[-78,-17],[-79,-25],[-275,-109],[-54,-22],[-146,-60],[-88,-34],[-125,-47],[-144,-53],[-67,4],[-84,0],[-36,37],[-73,0],[-18,0],[-235,-54],[-55,-148],[-150,-50],[-82,32],[-130,63],[-66,9],[-260,-95],[-181,-79],[-42,-14],[-18,-6],[-28,-3],[-123,-10],[-163,-57],[-72,-17],[-61,-20],[-132,45],[-31,91],[115,53],[19,72],[-15,50],[-22,56],[-99,48],[-66,35],[-82,20],[-64,53],[-9,6],[-101,43],[-65,23],[-94,42],[-73,5],[-61,9],[-70,21],[-70,10],[-59,15],[-42,38],[-55,70],[-58,48],[-67,37],[-89,-18],[-84,-26],[-85,-22],[-67,-17],[-64,6],[-81,16],[-89,28],[-116,1],[-71,-17],[-78,4],[-71,12],[-77,-15],[-43,-32],[-64,-8],[-69,-13],[-48,-44],[-14,-50],[-31,-37],[-62,-1],[-56,-25],[-94,-27],[-81,-8],[-54,-21],[-67,10],[-67,-12],[-6,-5],[-46,-34],[-77,57],[-68,-20],[-53,-29],[-91,9],[-127,-29]],[[47788,81749],[-284,177],[-24,15],[-117,71],[-372,232],[-320,202],[-169,103],[-519,322],[-187,115],[-1,1],[-77,49],[-175,111],[-121,74],[-117,72],[-76,48],[-146,92],[-95,60],[-194,116],[-144,90],[-109,62],[-507,313],[-398,248],[-368,231],[-163,99],[-338,214],[-199,124],[-354,222],[-41,26],[-695,437],[-213,134],[-165,104],[-63,40],[-123,77],[-149,93],[-54,34],[-50,32],[-44,27],[-198,122],[-144,93],[-785,499],[-149,95],[-228,146],[-311,199],[-57,36],[-435,279],[-133,85],[-69,44],[-182,116],[-461,285],[-70,43],[-66,41],[-526,331],[-193,121],[-15,9],[-469,294],[-64,40],[-91,65],[-135,84],[-58,35]],[[35778,89278],[-68,47],[-52,13],[-72,1],[-117,-18],[-80,-29],[-117,-32],[-90,-35],[-32,-14],[-79,-36],[-97,-45],[-65,-44],[-17,-5],[-86,-27],[-159,-25],[-136,-9],[-34,-1],[-65,2],[-76,11],[-60,24],[-6,24],[-3,42],[14,61],[1,3],[6,15],[136,105],[340,398],[24,18],[112,75],[186,116],[135,81],[237,65],[152,15],[145,0],[92,-4],[90,21],[54,19],[120,46],[61,27],[49,25],[104,51],[407,130],[102,42],[106,51],[-1,5],[0,16],[8,52],[8,47],[1,4],[12,7],[18,9],[73,30],[168,75],[93,14],[167,42],[119,25],[143,28],[91,22],[101,24],[109,39],[76,34],[121,51],[84,33],[87,38],[41,45],[72,60],[33,42],[41,32],[24,8],[94,36],[54,25],[158,101],[46,31],[165,110],[205,136],[61,40],[71,45],[44,35],[23,22],[64,70],[73,94],[25,34],[34,95],[28,36],[50,49],[68,45],[59,29],[85,37],[276,137],[65,32],[109,55],[66,41],[293,202],[28,20],[62,72],[133,186],[56,127],[22,49],[203,266],[34,46],[47,49],[34,35],[56,64],[41,48],[108,98],[37,39],[47,49],[38,39],[75,68],[136,114],[204,177],[47,69],[7,18],[-25,55],[-9,22],[-22,16],[-3,2],[-69,51],[-64,21],[-81,27],[-113,50],[-82,61],[-20,55],[23,107],[22,81],[1,2],[299,309],[12,48],[167,183],[89,97],[87,71],[123,20],[87,5],[126,13],[110,19],[15,8],[112,96],[37,39],[38,81],[14,48],[-27,63],[-35,44],[-28,44],[240,191],[6,6],[6,6],[1,2],[178,220],[4,4],[4,7],[4,7],[2,3],[-9,111],[19,33],[37,51],[55,45],[269,174],[77,49],[54,62],[13,37],[13,38],[87,53],[282,154],[145,71],[84,25],[78,23],[211,47],[171,64],[94,50],[58,41],[50,37],[2,2],[3,2],[73,49],[82,44],[87,34],[57,23],[79,28],[124,43],[43,14],[21,7],[24,7],[68,29],[134,39],[67,17],[21,6],[6,3],[144,73],[8,20],[16,44],[-4,15],[-21,49],[-36,34],[-37,32],[-52,41],[-19,14],[-44,25],[4,6],[78,140],[56,25],[91,33],[157,29],[244,26],[103,6],[107,7],[86,4],[120,6],[147,-7],[120,6],[48,5],[118,39],[143,70],[68,33],[165,88],[55,43],[34,43],[36,47],[33,70],[25,55],[30,70],[240,138],[60,20],[89,11],[329,36],[253,98],[48,15],[153,25],[250,2],[74,1],[366,-21],[210,11],[360,46],[235,70],[10,3],[289,75],[188,64],[27,9],[115,27],[35,9],[11,2],[86,16],[231,21],[868,-162],[204,-38],[491,-92],[7167,-2226],[416,-129],[761,-244],[3824,-1222],[114,-40],[364,-125],[1814,-623],[202,-69],[238,-82],[872,-299],[2905,-998]],[[86282,77959],[-52,21],[-241,96],[-284,103],[-72,25],[-67,24],[-126,50],[-53,21],[-137,50],[-58,20],[-66,24],[-54,25],[-67,21],[-302,116],[-109,40],[-50,18],[-142,52],[-87,32],[-447,163],[-559,209],[-25,10],[-83,32],[-97,37],[-157,57],[-88,36],[-119,47],[-107,43],[-90,39],[-223,79],[-115,45],[30,37],[36,70],[-256,75],[-82,-83],[-18,6],[-108,35],[-73,25],[-76,29],[-129,49],[-163,62],[-66,25],[-85,33],[-66,20],[-85,33],[-57,22],[-63,24],[-10,3],[-250,92],[-92,39],[-119,47],[-97,29],[-66,25],[-70,28],[-31,13],[-56,21],[-66,20],[-97,33],[-85,34],[-105,38],[-92,37],[-80,27],[-103,9],[-14,1],[-112,7],[-133,8],[-151,8],[-72,9],[-69,5],[-71,7],[-96,37],[-138,15],[-126,14],[-142,46],[-108,46],[-131,73],[-28,60],[-19,72],[-18,60],[-8,26],[-33,59],[-37,34],[-2,2],[-128,58],[-77,21],[-101,33]],[[77711,81152],[-36,42],[-3,52],[50,46],[27,41],[18,50],[-25,36],[-15,9],[-92,84],[-6,6],[2,21],[82,116],[33,18],[9,4],[46,-4],[7,-4],[8,-29],[1,-4],[7,-13],[20,-16],[13,-5],[40,-18],[2,-1],[31,-8],[25,-2],[8,7],[63,60],[-12,34],[-91,85],[-88,62],[-52,30],[-2,1],[-67,48],[-140,21],[-302,-6],[49,30],[10,54],[-88,5],[-134,-33],[-102,-4],[-55,44],[34,63],[-3,3],[-51,56],[-80,33],[44,40],[-62,46],[-105,38],[-7,3],[22,54],[-56,78],[0,2],[0,16],[20,17],[157,55],[87,48],[169,194],[16,19],[95,145],[16,24],[22,73],[18,59],[41,138],[53,143],[1,3],[27,130],[-108,61],[-58,39],[-32,49],[9,62],[28,89],[-223,38],[-18,-3],[-99,-16],[-91,-1],[-133,6],[0,49],[37,47],[24,21],[40,18],[44,10],[105,11],[175,19],[69,6],[9,24],[6,18],[-4,19],[-10,17],[-66,50],[-5,10],[3,16],[1,2],[27,60],[-11,15],[-69,115],[-6,13],[4,54],[-122,102],[-60,21],[-109,5],[-79,3],[-61,12],[-155,-8],[-141,-37],[-138,41],[20,53],[-28,45],[7,52],[67,41],[56,34],[139,97],[-36,54],[-49,82],[-67,28],[5,78],[-41,75],[-90,41],[-27,51],[-3,45],[4,9],[22,48],[-3,48],[-48,57],[-65,17],[-59,-20],[-10,-3],[-20,-49],[12,-23],[8,-16],[-15,-21],[-13,-18],[-61,-12],[-199,7],[-109,-17],[-23,-5],[-41,-8],[-68,-3],[-125,48],[-80,31],[-136,62],[-63,8],[-151,-4],[-73,-4],[-68,-4],[-86,-14],[-1,0],[-190,-14],[-71,1],[-69,8],[-70,32],[-58,27],[-61,10],[-71,3],[-87,19],[-59,39],[9,47],[-34,42],[-50,28],[-92,2],[-58,-18],[-61,-23],[-58,-23],[-56,23],[-91,8],[-80,-20],[-70,-26],[-68,-28],[-65,-17],[-71,-11],[-58,-4],[-5,-1],[-66,11],[-55,32],[-3,7],[-15,36],[49,38],[-2,58],[-16,32],[-3,8],[-2,45],[-44,54],[-140,79],[-68,7],[-50,-7],[-16,-2],[-4,-1],[-26,1],[-39,1],[-64,18],[-73,-5],[-74,-4],[-20,-4],[-39,-9],[-28,-47],[-45,-48],[-82,1],[-9,2],[-61,14],[-73,11],[-24,-3],[-85,-10],[-44,-7],[-2,0],[-19,-3],[-72,0],[-69,12],[-61,18],[-64,29],[-70,25],[-93,25],[-142,9],[-73,-1],[-104,-23],[-66,-22],[-242,-52],[-80,17],[-37,55],[-89,93],[-122,20],[-152,19],[-133,12],[-97,11],[-62,39],[-65,20],[-45,36],[-36,77],[-70,35],[-71,39],[-60,30],[-82,18],[-66,14],[-78,9],[-42,44],[-169,38],[-73,25],[-78,13],[-57,13],[-61,15],[-76,4],[-4,0],[-138,-11],[-61,-10],[-72,-31],[-23,-39],[-20,-79],[-59,-35],[-22,-18],[-35,-31],[-72,-53],[-67,-27],[-67,2],[-187,-46],[-79,33],[43,211],[54,94],[114,5],[-29,101],[225,87],[21,46],[20,45],[-22,66],[-3,2],[-42,35],[-16,12],[-35,15],[-23,3],[-65,7],[-60,-1],[-1,0],[-73,11],[-46,6],[-25,4],[-89,76],[-7,7],[-141,83],[-2,1],[-60,30],[-40,21],[-17,-2],[-27,-2],[-24,9],[-29,26],[-13,10],[-20,43],[-11,22],[-25,64],[0,29],[-1,22],[0,54],[-90,38],[-88,37],[-22,10],[-6,2],[-4,2],[-46,26],[-1,1],[-18,37],[-18,11],[-114,6],[-246,-51],[-244,-51],[-17,-4],[-96,-18],[-375,-70],[-364,-69],[-244,1],[-128,-30],[-267,-88],[-255,-135],[-28,-23],[-339,-156],[-19,-8],[-97,-42],[-54,-23],[-141,-61],[-2,0],[-99,28],[-29,8],[-80,126],[-46,72],[-9,15],[-21,27],[23,50],[27,27],[46,44],[4,8],[126,279],[10,115],[-15,81],[6,36],[55,121],[90,84],[70,24],[127,43],[99,4],[6,0],[122,38],[10,7],[33,20],[15,57],[-9,48],[-84,89],[-16,34],[-10,49],[25,39],[59,85],[1,1],[-47,134],[-1,3],[-108,28],[-93,23],[-15,4],[-163,81],[-1,0],[-119,60],[-10,4],[-94,47],[-22,11],[-17,37],[-1,3],[-5,3],[-12,8],[-5,4],[-110,18],[-61,-2]],[[72090,93650],[607,-175],[1433,-416],[151,-44],[131,-37],[280,-81],[1299,-377],[3447,-998],[228,-66],[487,-141],[1120,-383]],[[81273,90932],[-295,-423],[-39,-55],[-491,-658],[-126,-168],[-37,-50],[-412,-550],[-47,-62],[-65,-85],[-148,-199],[-50,-64],[-207,-269],[-105,-142],[-145,-194],[-39,-47],[-61,-83],[-171,-224],[-68,-91],[-52,-63],[-335,-443],[-90,-119],[-48,-63],[-34,-43],[-318,-427],[-51,-69],[-35,-47],[-38,-50],[-81,-108],[165,-83],[8,-4],[160,-80],[19,-10],[50,-25],[81,-42],[25,-13],[74,-63],[79,-68],[566,-483],[217,-199],[488,-152],[396,-123],[132,-41],[76,-24],[99,-30],[232,-72],[177,-12],[616,-43],[222,-15],[162,-6],[73,-6],[240,-15],[112,-7],[162,-5],[78,-4],[179,-9],[252,-15],[62,-4],[101,-5],[189,-12],[267,-17],[366,-16],[32,194],[13,76],[124,-49],[128,-52],[89,-35],[84,-31],[66,-27],[81,-35],[34,-14],[26,-11],[207,-82],[298,-121],[98,-37],[61,-25],[17,-7],[77,-30],[165,-68],[223,-91],[-21,-53],[-46,-108],[-36,-74],[-36,-64],[-20,-44],[-4,-8],[-24,-45],[-36,-62],[-31,-70],[-30,-66],[-29,-95],[-1,-7],[-12,-46],[-54,-112],[-43,-86],[-10,-43],[-2,-7],[56,-22],[23,-9],[78,-6],[98,-35],[5,-2],[1,-1],[204,-193],[48,-57],[0,-66],[-48,-36],[-84,-62],[-12,-2],[-25,-37],[18,-90],[0,-4],[24,-39],[103,-93],[65,-31],[73,-11],[84,-1],[103,-2],[151,-26],[118,-47],[17,-24],[-8,-56],[-3,-22],[-12,-12],[-2,-1],[-99,-97],[-76,-75],[-23,-51],[17,-76],[55,-79],[1,-2],[0,-1],[18,-99],[3,-13],[-15,-35],[-15,-36],[-17,-40],[-28,-67],[-32,-76],[-7,-34],[115,-90],[24,-42],[136,-83],[-3,-14],[-30,-159],[-19,-93],[-5,-52],[65,-45],[152,-70],[120,-42],[182,-65],[66,-24],[72,-95],[89,-53],[120,-71],[44,-29],[73,-161],[97,-66],[37,-67],[41,-73],[48,-28],[171,-82],[29,-105],[6,-40],[-30,-87],[-89,-48],[-179,-6],[-36,49],[-18,62],[-79,41],[-126,13],[-163,-21],[-42,-65],[-27,-61],[-13,-52],[30,-45],[17,-95],[-107,-153],[-34,-94],[-22,-100],[-60,-70],[-66,-68],[5,-48],[63,-91],[63,-96],[44,-66],[6,-66],[-110,-205],[-65,-121],[-4,-5],[-24,-33],[-110,-48],[-57,-11],[-170,-32]],[[94563,77171],[-59,14],[12,66],[18,72],[12,48],[-66,25],[-63,24],[-76,25],[-52,23],[-62,27],[-97,37],[-60,20],[-97,29],[-90,33],[-5,2],[-110,39],[-92,30],[-82,29],[-64,19],[-4,1],[-82,30],[-74,27],[-29,76],[-8,19],[85,13],[48,82],[-112,69],[-5,3],[-76,29],[-66,-6],[-82,34],[-124,-106],[-8,-6],[-36,-31],[-70,-60],[-26,-2],[-112,-9],[-37,-63],[-75,-42],[17,-42],[-156,66],[-71,2],[-38,-35],[4,-50],[5,-68],[-154,1],[-54,1],[-49,-58],[-85,-80],[-141,-66],[-235,-4],[-171,-3],[-101,-2],[-110,-9],[-207,-17],[-90,-7],[-41,-4],[-101,-8],[-5,-1],[-68,-6],[-40,-4],[-126,-12],[-97,-9],[-56,-5],[-50,-26],[-342,-178],[-8,-4],[-5,-2],[-20,-23],[-7,-9],[-33,-37],[-12,-14],[-16,-5],[-126,-42],[-33,-11],[-231,-35],[-58,-9],[-31,-5],[-7,-16],[-53,-116],[-53,-45],[-195,-165],[-18,-13],[-66,-45],[-65,-47],[-23,-17],[-206,-150],[-62,-46],[-54,-57],[-1,-4],[-4,-30],[-9,-81],[65,-166],[1,-2],[13,-40],[20,-51],[31,-72],[5,-10],[-3,-4],[-27,-35],[-176,-165],[-130,-7],[-27,-1],[-121,16],[-72,116],[-109,86],[73,91],[-73,111],[-66,33],[-42,103],[-51,-4],[-82,-8],[-97,45],[-102,13],[-187,16],[-85,-25],[-85,-29],[-35,-12],[-61,-53],[6,-50],[-72,-41],[-67,-8],[19,-42],[-61,-16],[-84,-25],[-115,8],[-54,37],[-218,36],[-187,6],[-129,58],[-9,4],[4,26],[14,77],[-30,40],[-13,17],[-120,42],[-91,33],[-102,33],[-91,37],[-83,25],[-7,3],[-47,17],[-65,23],[-94,34],[-78,25],[-97,29],[-84,33],[-63,24],[-16,5]],[[85222,76575],[133,140],[60,45],[94,70],[45,34],[65,61],[98,95],[55,62],[-37,100],[-22,42],[-22,42],[-12,53],[7,49],[68,73],[6,152],[29,89],[26,80],[5,13],[24,74],[48,37],[79,17],[133,24],[83,15],[95,17]],[[81273,90932],[170,-58],[2842,-836],[291,-86],[493,-145],[19,-6],[222,-65],[3754,-1105],[1667,-491],[1894,-557],[151,-45],[1472,-433],[201,-59],[213,-63],[2397,-705],[497,-147],[206,-60],[639,-219],[459,-156],[320,-110],[776,-265],[43,-178],[-15,-66],[-73,-97],[-41,-117],[-40,-113],[-31,-117],[-69,-106],[-60,-146],[-71,-122],[-21,-85],[-15,-81],[-81,-129],[-113,-128],[-81,-139],[-27,-87],[-96,-108],[-38,-89],[-41,-126],[4,-85],[-7,-79],[-56,-96],[-75,-114],[-104,-91],[-55,-83],[-51,-149],[-52,-145],[-39,-121],[-37,-110],[-62,-135],[-19,-78],[-40,-112],[-265,-470],[-169,-177],[-99,-142],[-233,-332],[-202,-272],[-48,-81],[-67,-91],[-48,-68],[-482,-616],[-161,-43],[-119,-277],[-12,-28],[-118,-136],[-350,-286],[-155,-114],[-34,-117],[-26,-135],[-82,-42],[26,-72],[-25,-106],[-65,-117],[-155,-189],[-117,-166],[-169,-78],[73,-91],[-254,-5],[32,-138],[-140,-44],[-49,-88],[-156,-77],[-120,-24],[-141,-96]],[[47788,81749],[-151,-95],[-114,-43],[-39,-41],[-167,-81],[-76,-5],[-70,41],[-63,-16],[-5,-51],[-75,-63],[-85,-37],[-42,-34],[-32,-44],[-57,-21],[-55,-21],[-54,-47],[-109,-24],[-62,-30],[-78,-34],[-1,-72],[34,-39],[-31,-45],[-42,-35],[-31,-38],[-108,-39],[-72,-24],[-137,-33],[-65,-13],[-67,-6],[-66,-18],[-69,-26],[-64,-3],[-69,-22],[-52,-22],[-92,-48],[-52,-40],[-2,-5],[-22,-45],[-37,-46],[24,-44],[-1,-41],[9,-45],[17,-50],[33,-36],[24,-62],[-33,-57],[-58,-56],[-38,-45],[-18,-47],[42,-59],[72,-32],[56,-30],[73,-33],[55,-20],[66,-31],[-11,-43],[-48,-61],[-62,-28],[-62,-8],[-71,-4],[-77,6],[-64,-26],[-81,-24],[-21,-50],[41,-47],[4,-50],[-34,-39],[-19,-47],[-72,-33],[-68,-45],[-160,-54],[-115,-6],[-65,-35],[-89,-5],[-105,-37],[-12,-25],[-8,-17],[-15,-54],[-45,-74],[-58,-15],[9,-43],[158,-72],[55,-42],[23,-42],[41,-50],[48,-35],[-11,-41],[-51,-26],[-64,2],[-65,-9],[-48,-35],[-63,-17],[-3,-1],[-34,-11],[-35,-12],[-46,-33],[-51,-26],[-64,-7],[-63,-31],[-37,-33],[-53,-26],[-69,-42],[-72,-76],[33,-35],[54,-24],[26,-40],[-80,-37],[-88,-22],[-57,-29],[-57,-29],[-30,-44],[19,-61],[-58,-42],[-67,-28],[-59,-23],[-56,-19],[-56,-31],[-48,-32],[-35,-39],[-56,-61],[-37,-37],[-96,-44],[-65,-2],[-66,-31],[-25,-39],[-22,-42],[-52,-55],[-50,-55],[-68,-36],[-40,-37],[-92,-9],[-86,16],[-84,-2],[-53,-28],[-109,-55],[-92,-33],[-71,16],[-25,43],[-71,42],[-62,-12],[-56,-21],[-46,-52],[-193,-234],[-93,-36],[-100,-19],[-153,-3],[-96,-28],[-67,-26],[-47,-43],[-65,-30],[-72,-23],[-104,-4],[-65,13],[-117,9],[-68,-15],[-154,-56],[-68,-29],[-47,-42]],[[40428,76632],[-95,-28],[-58,-22],[-56,-27],[-53,-21],[-36,-35],[-56,-29],[-66,-5],[-67,-18],[-59,-13],[-68,-4],[-61,-18],[-64,-23],[-65,-18],[-57,-15],[-31,-42],[44,-31],[31,-40],[48,-34],[-28,-37],[-28,-40],[17,-43],[-4,-44],[26,-42],[-8,-47],[-60,-9],[-69,-17],[-51,-22],[-56,-32],[-52,-31],[-61,-12],[-61,-16],[-53,-20],[-63,-15],[-59,-15],[-47,-28],[-33,-42],[-54,-23],[-12,-46],[-9,-47],[-47,-30],[-61,-18],[-37,-34],[-46,-33],[-56,-26],[-60,-21],[-59,-28],[-51,-34],[-58,-19],[-61,-11],[-64,-8],[-56,-27],[-54,-21],[-32,-39],[-17,-42],[-42,-36],[-62,5],[-54,-23],[-46,-30],[14,-45],[-13,-42],[-55,-23],[-64,-3],[-62,-9],[-22,-39],[-23,-41],[-58,-28],[-54,-25],[-26,-40],[-51,-25],[-56,-34],[-44,-31],[-41,-31],[-15,-42],[-27,-42],[-57,-21],[-62,-17],[-39,-39],[-46,-27],[-57,-27],[-56,-26],[-38,-32],[-41,-33],[-33,-43],[-42,-34],[-37,-40],[-39,-38],[-43,-38],[-39,-32],[-65,-25],[-65,-16],[-61,-16],[-61,-6],[-59,-8],[-64,-12],[-53,-25],[-22,-43],[-38,-33],[-54,-32],[-55,-23],[-55,-18],[-42,-32],[-42,-34],[-27,-37],[-33,-35],[-34,-38],[0,-46],[-37,-38],[-37,-37],[-43,-38],[-24,-42],[-23,-40],[-4,-5],[-39,-34],[-54,-23],[-61,-10],[-63,1],[-69,6],[-63,10],[-64,12],[-63,9],[-62,4],[-60,5],[-67,2],[-61,-22],[-11,-45],[-6,-43],[-13,-41],[-24,-38],[-51,-30],[-61,-10],[-70,-5],[-61,-10],[-69,-15],[-63,-13],[-61,-13],[-59,-14],[-57,-15],[-70,-14],[-62,-28],[-55,-24],[-59,-27],[-58,-22],[-56,-20],[-48,-31],[-44,-30],[-45,-31],[-58,-27],[-49,-36],[-41,-36],[-39,-36],[-49,-27],[-58,-24],[-57,-14],[-67,-3],[-83,3],[-57,17],[-52,32],[-42,30],[-69,1],[-47,-30],[-43,-29],[-58,-29],[-71,1],[-52,21],[-50,33],[-63,20],[-61,-13],[-20,-41],[-36,-33],[-60,-16],[-64,6],[-61,3],[-63,-16],[-31,-43],[-57,-23],[-48,-25],[-50,-25],[-53,-27],[-51,-25],[-47,-29],[-53,-24],[-58,-22],[-55,-19],[-54,-25],[-47,-29],[-57,-22],[-68,-8],[-71,9],[-62,-2],[-61,-10],[-54,-22],[-42,-30],[-48,-39],[-56,-31],[-52,-33],[-43,-31],[-63,-13],[-66,8],[-72,17],[-62,14],[-65,8],[-59,-17],[-55,-27],[-53,-28],[-41,-34],[-46,-32],[-61,-1],[-70,-2],[-58,-19],[-60,-24],[-56,-31],[-56,-25],[-65,-24],[-44,-30],[-24,-44],[-34,-43],[-38,-33],[-63,-18],[-69,-11],[-69,-2],[-65,-4],[-69,0],[-54,-19],[-40,-40],[-53,-24],[-69,-14],[-64,-9],[-65,-4],[-56,-19],[-54,-28],[-53,-28],[-50,-27],[-45,-34],[-38,-36],[-19,-18],[-19,-16],[-14,-44],[-37,-37],[-51,-26],[-60,-26],[-59,-19],[-61,-9],[-63,-8],[-59,-13],[-64,-22],[-74,-18],[-68,-16],[-60,-26],[6,-44],[-52,-24],[-27,-17],[-22,-15],[-33,-34],[-45,-30],[-44,-33],[-46,-28],[-55,-28],[-51,-24],[-65,-13],[-68,-9],[-60,-14],[-65,-13],[-57,-17],[-50,-29],[-56,-17],[-67,-6],[-63,-7],[-57,-23],[-48,-32],[-56,-29],[-47,-29],[-43,-34],[46,-31],[-2,-10],[-7,-40],[-61,-16],[-50,-25],[-58,-16],[-70,-17],[-60,-14],[-64,-14],[-67,-8],[-62,-7],[-64,-6],[-65,-7],[-65,-6],[-70,-10],[-72,-13],[-66,-12],[-60,-9],[-65,-9],[-62,-11],[-58,-12],[-67,-14],[-53,-21],[-28,-40],[-56,-20],[-61,-10],[-76,-20],[-59,-16],[-65,-19],[-71,-13],[-61,-8],[-73,-7],[-74,-1],[-63,-2],[-63,-5],[-73,-5],[-67,-7],[-66,-14],[-52,-23],[-39,-37],[-49,-26],[-29,-40],[12,-45],[19,-39],[-1,-48],[-37,-35],[-42,-35],[-56,-27],[-62,4],[-59,11],[-48,31],[-68,10],[-65,-13],[-57,-31],[-36,-35],[-60,-14],[-57,-13],[-62,-17],[-73,-17],[-67,-20],[-29,-38],[45,-29],[6,-42],[-21,-39],[-36,-41],[-26,-39],[0,-46],[-56,-19],[-70,-5],[-58,-22],[-23,-40],[-33,-39],[-48,-35],[-49,-33],[-62,-21],[-61,-9],[-63,-12],[-57,-25],[-49,-35],[-31,-43],[-14,-40],[-15,-48],[-31,-38],[8,-41],[-52,-24],[-70,-6],[-63,-9],[-64,-15],[-65,10],[-53,-25],[-36,-35],[-2,-46],[28,-41],[-55,-19],[-67,-3],[-67,-8],[-36,-36],[-36,-15],[-17,-8],[-64,9],[-67,13],[-59,-17],[-63,-20]],[[22340,68551],[-37,52],[-57,63],[-83,33],[-1,3],[-5,6],[-4,7],[-2,6],[-44,105],[0,2],[-3,7],[-2,7],[-1,6],[-5,50],[0,8],[0,7],[1,7],[2,7],[1,4],[23,65],[-17,15],[-116,64],[-6,3],[-5,3],[-56,37],[-3,2],[-7,5],[-7,6],[-6,6],[-6,6],[-5,6],[-2,4],[48,45],[-10,15],[-20,31],[-142,62],[-93,57],[-7,4],[-7,6],[-7,5],[-6,6],[-6,7],[-1,1],[-41,51],[-4,5],[-4,6],[-4,7],[-3,7],[-3,7],[-1,8],[-1,7],[-6,58],[0,7],[1,7],[1,7],[1,8],[3,7],[3,7],[2,4],[31,55],[1,2],[5,7],[5,6],[5,6],[7,6],[6,6],[8,5],[7,5],[9,5],[8,4],[6,2],[59,25],[4,1],[9,4],[10,3],[10,2],[10,2],[7,2],[119,17],[2,1],[4,0],[131,16],[7,1],[1,0],[268,-40],[56,71],[6,12],[1,4],[19,52],[-1,6],[7,19],[-17,27],[-10,15],[-84,103],[-3,4],[-36,49],[0,1],[-5,6],[-4,7],[-3,7],[-2,7],[-38,128],[-1,0],[-1,8],[-1,5],[-16,121],[-89,127],[-120,105],[-147,92],[-5,3],[-7,6],[-12,9],[-7,5],[-6,6],[-5,6],[-2,2],[-30,37],[-1,2],[-2,2],[-4,7],[-4,7],[-3,7],[-3,7],[0,1],[-15,56],[-2,6],[-1,8],[0,1],[-3,37],[1,13],[1,7],[1,7],[1,2],[2,5],[0,1],[26,64],[3,6],[3,6],[5,7],[5,6],[2,4],[152,166],[2,2],[123,130],[1,1],[6,6],[7,6],[75,58],[7,5],[65,-26],[93,58],[50,22],[94,37],[43,9],[47,6],[44,11],[35,10],[39,13],[51,17],[36,12],[5,4],[37,28],[60,57],[44,33],[15,11],[29,25],[43,35],[72,61],[4,4],[5,6],[9,10],[16,21],[8,18],[6,13],[5,22],[8,31],[8,30],[-21,61],[-45,36],[-8,5],[-22,10],[-87,32],[-98,17],[-92,11],[-18,2],[-53,3],[-31,1],[-66,-2],[-50,-2],[-71,-6],[-92,-10],[-32,-2],[-18,-1],[-70,4],[-52,14],[-2,0],[-44,14],[-19,5],[-14,1],[-29,4],[-75,15],[-105,21],[-236,174],[-21,15],[-57,70],[-5,9],[-8,11],[-28,37],[-32,49],[-35,56],[48,118],[2,5],[3,5],[7,11],[70,117],[2,2],[75,107],[50,107],[49,104],[188,195],[7,14],[44,80],[9,29],[12,43],[47,36],[107,57],[94,35],[102,39],[52,19],[75,55],[33,75],[-6,34],[-5,27],[-10,58],[41,69],[184,138],[28,65],[2,5],[-3,10],[-12,42],[-5,19],[-35,29],[-182,152],[-11,9],[-7,4],[-116,68],[-148,64],[-141,80],[-65,51],[-65,53],[-34,41],[-56,133],[27,83],[3,9],[75,54],[150,84],[44,15],[127,44],[12,4],[84,28],[213,48],[51,12],[16,5],[76,24],[65,21],[65,37],[74,41],[11,6],[55,57],[4,8],[20,45],[33,77],[-1,69],[31,70],[51,116],[66,82],[42,42],[81,79],[8,3],[7,2],[69,21],[3,1],[10,2],[4,1],[80,17],[6,1],[11,2],[10,1],[6,0],[260,13],[68,0],[1,0],[6,0],[75,-2],[5,0],[10,-1],[1,0],[209,-20],[10,-1],[6,-1],[69,-11],[4,-1],[2,0],[233,-45],[154,-25],[483,-60],[491,-4],[41,4],[18,1],[137,111],[4,5],[7,5],[111,88],[54,42],[1,0],[4,4],[93,66],[185,132],[17,13],[3,2],[8,5],[2,1],[80,46],[6,3],[6,4],[106,50],[31,15],[2,1],[9,3],[6,3],[54,19],[4,1],[9,3],[10,3],[7,1],[97,20],[4,0],[10,2],[11,1],[2,0],[102,8],[158,13],[74,11],[49,19],[31,23],[55,60],[3,4],[6,6],[7,5],[1,1],[84,65],[7,5],[1,1],[208,138],[4,3],[80,49],[39,-1],[7,76],[-71,52],[-3,4],[-4,7],[-3,7],[-2,7],[-1,6],[-11,47],[0,2],[-1,7],[-1,7],[1,8],[1,7],[1,3],[10,44],[1,4],[2,7],[3,7],[4,7],[5,7],[5,6],[5,6],[6,6],[4,4],[78,63],[2,2],[8,5],[7,5],[1,0],[120,72],[8,5],[9,4],[9,4],[121,47],[9,4],[3,0],[85,28],[114,47],[131,84],[68,75],[3,3],[1,1],[67,67],[5,5],[7,5],[7,6],[8,5],[8,4],[2,1],[41,21],[7,4],[5,2],[41,17],[50,181],[-33,30],[-25,24],[-41,37],[-19,18],[-53,23],[-95,41],[-22,12],[-295,161],[-86,36],[-37,15],[-39,38],[-22,20],[-34,33],[-19,49],[-8,54],[9,22],[33,89],[23,61],[35,33],[236,76],[127,6],[221,10],[100,4],[505,17],[116,-19],[34,-21],[97,-57],[82,-10],[17,-2],[19,-2],[51,1],[142,3],[47,1],[109,35],[28,18],[221,163],[3,7],[4,6],[22,31],[1,1],[5,7],[6,6],[5,5],[121,109],[7,6],[5,4],[28,20],[8,5],[2,2],[8,5],[8,4],[1,0],[95,50],[129,77],[41,23],[47,37],[31,32],[12,13],[21,28],[26,43],[2,6],[-4,50],[-13,119],[-12,40],[-4,4],[-21,19],[-17,13],[-181,102],[-22,12],[-23,11],[-3,2],[-8,4],[-19,12],[-39,23],[-2,1],[-37,23],[-6,4],[-7,5],[-82,64],[-1,0],[-6,5],[-172,151],[-160,106],[-96,58],[-2,1],[-23,13],[-136,74],[-173,78],[-60,28],[-55,38],[-87,62],[-84,208],[-42,104],[-4,7],[-1,0],[-35,58],[-4,7],[0,1],[-15,30],[-3,7],[-2,7],[-2,5],[-21,94],[-1,3],[-1,7],[0,8],[0,58],[-2,4],[-70,127],[-65,86],[-17,20],[-10,6],[-121,59],[-83,35],[-112,42],[-112,40],[-105,52],[-176,109],[-62,39],[-88,52],[-70,42],[-161,129],[-19,16],[-233,191],[-129,106],[-45,53],[-10,11],[-41,68],[-223,250],[-162,132],[-93,72],[-141,105],[-22,16],[-59,47],[-3,2],[-1,5],[-9,31],[-32,159],[-5,27],[-50,265],[-3,51],[-35,54],[-6,11],[-14,9],[-82,49],[-11,7],[-6,0],[-115,-1],[-153,-14],[-23,-3],[-136,-20],[-133,17],[-18,8],[-1,0],[-42,17],[-71,41],[-56,44],[-3,3],[-27,40],[-12,18],[-14,48],[-1,54],[3,11],[7,25],[2,4],[56,53],[40,33],[46,46],[34,44],[26,55],[34,96],[3,64],[-7,43],[11,89],[8,17],[7,10],[31,28],[61,39],[92,53],[56,30],[80,29],[107,40],[153,58],[65,21],[158,51],[164,48],[119,53],[96,24],[60,15],[96,82],[88,26],[199,38],[215,41],[140,35],[73,17],[83,32],[111,64],[88,47],[66,35],[149,86],[32,30],[76,17],[72,5],[164,28],[99,17],[29,5],[82,3],[163,6],[152,16],[153,29],[50,11],[14,3],[58,19],[271,86],[394,119],[431,132],[334,113],[107,16],[48,7],[183,55],[222,121],[150,85],[197,59],[93,21],[86,16],[163,53],[-18,69],[-27,87],[15,51],[22,45],[100,75],[120,79],[173,113],[92,82],[108,134],[37,126],[104,131],[58,76],[87,51],[113,2],[99,-7],[75,6],[79,40],[124,92],[104,70],[75,42],[104,45],[99,38],[111,45],[70,20],[172,37],[91,15],[61,6],[90,7],[73,7],[122,10],[60,6],[103,32],[122,45],[422,155],[54,20],[53,24],[26,18],[42,28],[58,69],[42,73],[21,61],[13,62],[-10,45]],[[77711,81152],[-123,-17],[-14,0],[-94,0],[-15,2],[-72,12],[-49,8],[-64,11],[-60,4],[-114,-65],[-32,-2],[-56,-3],[-60,0],[-23,0],[-2,2],[-60,63],[-25,27],[-26,27],[233,28],[46,5],[12,10],[7,6],[3,2],[-2,18],[-15,9],[-91,22],[-78,-3],[-53,-6],[-47,-16],[-9,-4],[-27,-11],[-46,-31],[-31,-10],[-36,-5],[-16,1],[-64,5],[-51,11],[-32,14],[-50,21],[17,105],[1,4],[59,76],[-55,27],[-55,5],[-42,-2],[-172,-9],[-88,-11],[-96,-21],[-151,-25],[-73,3],[-27,16],[0,12],[62,36],[31,18],[-7,16],[-1,1],[-21,18],[56,16],[42,25],[0,8],[-11,10],[-162,67],[-36,10],[-39,-1],[-38,-4],[-56,-18],[-20,-24],[2,-15],[174,-89],[-56,-51],[-29,-13],[-2,-1],[-206,-31],[-46,-1],[-23,4],[-193,-10],[-31,-9],[-5,-2],[-62,-18],[-33,-2],[-128,-17],[-45,3],[-6,3],[-9,5],[-7,104],[2,21],[13,42],[-24,16],[-9,6],[-24,6],[-211,27],[-424,-9],[-23,-9],[-15,-9],[-19,-10],[-161,-94],[-2,-1],[-27,-17],[-25,-33],[-174,-236],[-5,-10],[5,-3],[4,-3],[24,-5],[127,-26],[43,-8],[15,-29],[0,-13],[-9,-9],[-51,0],[-46,5],[-43,5],[-31,1],[-24,-4],[-25,-11],[-22,-10],[-2,-2],[-16,-14],[-28,-46],[-5,-17],[-2,-7],[-35,-119],[1,-4],[3,-14],[18,-84],[-1,-8],[-15,-183],[-1,-4],[-34,-136],[-2,-9],[0,-23],[9,-4],[7,-3],[53,9],[62,11],[117,-87],[21,-15],[38,-28],[24,-8],[138,-15],[171,-12],[72,-12],[328,-54],[8,-6],[0,-10],[-200,-328],[60,-37],[139,-28],[67,-14],[120,77],[93,58],[67,-102],[68,-103],[-223,-161],[-5,-4],[-102,-1],[-139,-3],[-127,-49],[4,-15],[26,-101],[-90,-57],[-48,-112],[-139,-41],[58,-167],[18,-11],[31,-8],[138,-18],[19,-14],[1,-13],[-10,-9],[-64,-45],[-155,-160],[-38,-77],[-28,-59],[72,-136],[-87,-31],[-160,-56],[-121,-86],[100,-137],[69,-94],[-127,-140],[-5,-5],[-218,-189],[-193,-46],[-163,42],[-316,-49],[-13,-8],[0,-1],[-27,-66],[-11,-28],[-27,-68],[-27,-20],[-105,-81],[-90,-34],[-100,-64],[-183,-117],[-16,-14],[-27,-23],[-114,12],[-163,-41],[-24,-70],[-106,-116],[-34,-515],[-5,-74],[-105,-46],[-10,-4],[-60,-62],[-1,-34],[-2,-201],[0,-39],[-1,-53],[0,-150],[-36,-75],[-16,-13],[-155,-41],[-18,-4],[-7,-1],[-23,-2],[-122,-15],[-71,-38],[0,-5],[0,-4],[114,-100],[8,-7],[25,-21],[27,-6],[35,4],[181,56],[18,6],[60,23],[58,21],[28,8],[27,7],[23,2],[20,-7],[2,-15],[4,-60],[139,-50],[206,-75],[40,-8],[27,-5],[62,0],[28,5],[55,10],[-17,-34],[-46,-89],[-42,-83],[-124,-6],[-18,0],[-69,-11],[-216,-48],[-14,-4],[-14,-5],[-4,-2],[-11,-11],[4,-15],[10,-17],[48,-25],[62,-18],[38,-11],[9,-9],[-2,-18],[-62,-53],[-65,-50],[-147,-37],[-84,-14],[-111,-17],[-11,-12],[1,-15],[1,-12],[32,-71],[2,-5]],[[71686,74633],[7,-31],[4,-20],[25,-125],[-1,-1],[-12,-16],[-46,-22],[-33,-7],[-41,-1],[-66,0],[-33,1],[-65,1],[-168,-85],[58,-48],[10,-12],[4,-8],[0,-1],[2,-5],[-15,-10],[-411,-223],[-11,4],[-78,26],[-70,23],[-5,2],[-149,50],[-133,-126],[-15,-28],[-1,-19],[0,-124],[13,-31],[37,-33],[1,-1],[-92,-14],[-118,-17],[-47,1],[-91,24],[-36,4],[-149,8],[-87,0],[-31,-7],[-22,-13],[-221,-134],[-374,-177],[-38,-32],[-31,-49],[-5,-13],[-33,-48],[-40,-26],[-7,-5],[-10,-2],[-64,-17],[-50,-14],[-170,-48],[-19,-5],[-140,-41],[-141,-41],[-4,-2],[-104,-30],[-95,-58],[-68,-42],[-27,-20],[-2,-5],[-22,-84],[-2,-32],[-17,-53],[-45,-17],[-44,-16],[-104,10],[-13,6],[-32,0],[-68,-26],[-130,-49],[-6,-10],[-8,-4],[-182,-77],[-304,-128],[-95,-22],[-27,-5],[-10,-1],[-53,-3],[-115,6],[-23,-6],[-22,-14],[-11,-14],[-10,-1],[-7,-1],[-48,-66],[30,-95],[20,-51],[4,-11],[-6,-15],[-42,-117],[-97,-90],[-247,33],[-121,-38]],[[66321,71949],[-78,-78],[-157,-62],[-133,-53],[-103,-42],[-84,-8],[-205,52],[-6,2],[-34,-30],[-41,-25],[-72,-43],[-12,-9],[-35,-7],[-60,-7],[-22,4],[-130,21],[-187,-42],[-1,0],[-25,-1],[-76,-3],[-195,-86],[-23,-9],[-154,-61],[-9,-2],[-127,-41],[-66,8],[-4,0],[-129,3],[-150,3],[-14,-10],[-1,-5],[-1,-12],[46,-39],[1,-13],[-5,-9],[-162,-30],[-25,1],[-1,0],[-99,32],[-15,1],[-129,-34],[-16,-8],[-4,-12],[33,-29],[20,-35],[-4,-25],[0,-1],[-9,-13],[-96,-93],[-24,-24],[-22,-14],[-143,-84],[-20,-12],[-33,-15],[-53,-10],[-39,-1],[-10,0],[-43,12],[-21,10],[-16,7],[-47,22],[-10,1],[-14,0],[-256,-4],[-8,0],[-8,-1],[-145,-11],[-12,33],[-36,18],[-52,-7],[-32,-10],[-6,-2],[-4,1],[-20,1],[-24,7],[-21,14],[-15,16],[-1,9],[-9,82],[-15,139],[-34,82],[-35,83],[-11,26],[-31,-3],[-60,-4],[-72,-40],[-105,88],[-93,80],[-18,15],[111,49],[147,65],[189,83],[43,19],[-189,116],[97,92],[4,3],[98,93],[-42,33],[-121,59],[13,79],[14,77],[227,203],[18,8],[20,-3],[47,-18],[73,-31],[27,-7],[38,5],[81,12],[91,14],[38,11],[17,9],[7,9],[0,16],[-36,35],[-33,20],[-49,15],[-20,6],[-5,4],[-13,10],[4,22],[25,34],[12,8],[6,4],[4,3],[268,115],[28,12],[-3,32],[-2,10],[-9,67],[-2,6],[-25,64],[-38,28],[-62,13],[-30,-3],[-15,-2],[-15,2],[-3,0],[-9,6],[-1,0],[-44,70],[-22,35],[-9,29],[-172,69],[-75,30],[-274,110],[-5,2],[119,67],[32,17],[18,47],[0,42],[-9,32],[-20,8],[-38,-12],[-32,6],[-23,11],[-106,53],[-84,42],[-108,55],[-1,0],[-23,33],[-20,36],[-7,12],[-4,20],[61,146],[38,12],[47,16],[13,8],[-6,16],[-88,114],[-14,9],[-1,1],[-9,6],[-34,6],[-64,-2],[-39,8],[-168,38],[-85,29],[-67,23],[-80,35],[-4,2],[-9,4],[-23,0],[-98,-16],[-19,-2],[-4,1],[-132,39],[-10,1],[-35,-6],[-100,0],[-103,5],[0,19],[42,75],[18,19],[-1,20],[-1,13],[-4,22],[-7,39],[-14,37],[-20,47],[-1,6],[-4,51],[-40,190],[-2,3],[-86,155],[-1,1],[-143,220],[-101,17],[-36,53],[-190,-25],[-248,-34],[-172,-23],[-128,-21],[-234,-33],[-1116,-173],[-333,-55],[-705,-106],[-157,-24],[-103,-17],[-259,-41],[-181,-25],[-622,-103],[-51,-7],[-33,-5],[-326,-54],[-97,-16],[-923,-141],[-229,-33],[-91,-12],[-252,-32],[-104,-13],[-175,-25],[-56,-8],[-28,-4],[-296,-46],[-543,-90],[-429,-66],[-12,-2],[-235,-23],[-145,-21],[-632,-95],[-740,-132],[-361,-91],[-12,-4]],[[50370,73804],[-429,27],[-78,20],[-251,63],[-50,23],[-240,70],[-19,81],[-71,11],[-269,105],[-63,24],[-207,64],[-361,73],[-91,19],[-275,56],[-121,24],[-95,16],[-348,46],[-7,1],[-63,7],[-62,7],[-62,8],[-64,9],[-67,9],[-65,8],[-20,3],[-47,5],[-65,8],[-171,22],[-92,12],[-363,45],[-74,22],[-209,60],[-136,-21],[-105,1],[-102,2],[-281,-31],[-283,6],[-133,52],[-64,12],[-97,4],[-84,-3],[-68,-4],[-70,-5],[-69,-4],[-66,-2],[-18,5],[-92,30],[-96,31],[-9,3],[-130,68],[-9,5],[-129,68],[-170,90],[-468,244],[-61,63],[-25,39],[-158,85],[-120,53],[-76,33],[-302,130],[-139,60],[-187,81],[-173,75],[-368,157],[-64,28],[-153,68],[-142,64],[-768,337],[-128,56]],[[85222,76575],[-15,-122],[-3,-18],[-31,-148],[-16,-22],[-37,-49],[-68,-34],[-14,-9],[-97,-60],[-76,-59],[-46,-41],[-92,-80],[-51,-117],[-67,-81],[-56,-45],[-117,-80],[-115,-89],[-40,-49],[-24,-41],[-57,-97],[-18,-69],[-6,-43],[-44,-143],[-20,-84],[-6,-28],[17,-89],[6,-34],[37,-67],[79,-148],[110,-121],[17,-19],[102,-54],[260,-41],[102,6],[104,7],[65,4],[181,15],[61,5],[114,54],[157,148],[314,87],[851,28],[36,1],[35,-6],[49,-9],[13,-2],[216,-85],[7,-19],[30,-84],[-32,-91],[-4,-11]],[[87033,74442],[-85,-81],[-3,-7],[-135,-257],[-55,-132],[-93,-397],[184,-322],[-107,-172],[-41,-35],[-144,-123],[-20,-17],[-199,-7],[-318,-267],[-380,181],[227,-213],[-105,-133],[-200,-160],[-910,223],[-115,41],[-50,-91]],[[84484,72473],[-46,65],[-12,17],[-61,29],[-46,3],[-32,1],[-127,21],[-102,-8],[-79,-17],[-90,-41],[-580,-12],[-217,-13],[-205,-12],[-133,-8],[-96,-4],[-163,-7],[-31,-2],[-253,-8],[-60,-4],[-91,-4],[-109,-4],[-5,0],[-131,50],[-8,3],[-133,50],[-72,20],[-61,21],[-72,25],[-79,173],[-32,72],[-40,78],[-18,35],[-48,54],[-21,10],[-70,35],[-260,120],[-97,50],[-77,40],[-73,17],[-78,8],[-139,17],[-76,9],[-70,8],[-71,8],[-12,2],[-78,9],[-63,8],[-29,3],[-105,11],[-92,10],[-116,14],[-79,9],[-60,16],[-67,8],[-84,13],[-53,3],[-13,1],[-77,10],[-86,6],[-139,22],[-157,20],[-79,8],[-90,12],[-79,8],[-90,17],[-78,16],[-73,21],[-181,37],[-247,50],[-61,16],[-60,8],[-66,17],[-153,30],[-119,28],[-72,12],[-65,12],[-2,0],[-66,17],[-79,16],[-90,21],[-67,4],[-84,21],[-109,20],[-72,-8],[-109,-8],[-139,-17],[-90,-4],[-91,-58],[-36,-49],[-12,-45],[-36,-38],[-151,-49],[-60,-25],[-127,-37],[-67,-7],[-48,-5],[-60,-13],[-68,11],[-35,6],[-132,21],[-73,12],[-60,41],[-115,4],[-66,62],[-61,37],[-132,50],[-181,0],[-121,-4],[-145,-33],[-84,-25],[-55,-21],[-60,21],[-121,37],[-205,66],[-103,33],[-84,29],[-72,24],[-145,46],[-20,6],[-47,14],[-26,6],[-52,11],[-290,128],[-90,70],[-79,41],[-145,50],[-99,68],[-3,2],[-8,2],[-125,35],[-84,33],[-67,29],[-255,56],[-101,22],[-14,2],[-107,14],[-132,33],[-145,4],[-109,29]],[[94563,77171],[-78,-204],[-144,-66],[-85,-115],[3,-127],[-143,-148],[-202,-125],[-180,-135],[-59,-135],[-131,-94],[-173,-77],[-152,-67],[-153,-146],[-52,-50],[-85,-131],[-3,-5],[-70,-105],[15,-113],[-150,-36],[158,-80],[-161,0],[-13,-133],[6,-91],[82,-95],[-77,-96],[-52,-83],[-111,-35],[-43,-66],[25,-96],[-8,-126],[-185,0],[-33,-99],[-53,-87],[-1,0],[91,-84],[-226,-54],[261,-66],[-107,-84],[78,-93],[-164,-14],[45,-137],[-96,-57],[-69,-112],[-197,-8],[-122,-46],[343,-90],[-44,-91],[-139,-17],[-157,11],[-206,-53],[-123,-105],[-160,-88],[-114,33],[-27,-89],[-82,-121],[-134,-7],[-122,-30],[-148,37],[-113,-94],[-382,181],[-87,-68],[79,-104],[-212,-74],[3,-126],[9,-103],[-68,-72],[-163,63],[-171,96],[-232,0],[499,-289],[-98,-57],[-78,-85],[-49,-53],[125,-100],[504,-160],[-76,-165],[-981,274],[-187,74],[-139,-24],[-320,80],[-138,35],[-187,-14],[-201,-102],[89,-49],[207,41],[116,-4],[117,-22],[136,-30],[1358,-368],[-112,-118],[-461,107],[-438,107],[-238,56],[-715,72],[-130,15],[-119,4],[-125,-15],[-64,-105],[85,-52],[100,13],[143,17],[239,-2],[121,-79],[302,-74],[115,-107],[94,-150],[121,-50],[-42,-77],[-124,-44],[-148,-60],[-149,-40],[-265,-22],[-144,10],[-194,23],[-177,14],[-141,-1],[-145,14],[-162,-1],[-125,-89],[-156,-48],[-344,-89],[-205,-21],[-179,5],[-267,8],[-344,-46],[-13,-1],[-132,-11],[-119,39],[-38,80],[45,112],[127,64],[214,135],[51,105],[95,50],[185,29],[136,106],[-38,67],[114,144],[179,-26],[64,136],[116,123],[151,63],[181,111],[136,73],[-95,103],[113,64],[295,194],[33,149],[70,130],[13,23],[27,23],[197,171],[278,259],[-279,-23],[-45,213],[-9,99],[229,12],[-173,87],[283,155],[270,-24],[103,101],[-123,42],[56,172],[14,55],[47,191],[163,151],[66,29],[235,105],[316,99],[23,8],[-212,12],[-398,-78],[-127,-37],[-165,-118],[-8,-10],[-255,-291],[-27,-31],[14,-82],[-237,-219],[-193,15],[-312,-122],[-159,21],[-155,188],[103,245],[48,156],[0,1],[-38,87],[-10,22]],[[50370,73804],[59,-31],[22,-40],[50,-31],[46,-31],[58,-16],[44,-14],[7,-15],[0,-23],[-16,-15],[-13,-3],[-9,-33],[0,-21],[0,-25],[20,-64],[5,-16],[13,-42],[5,-12],[28,-68],[6,-13],[16,-12],[65,-25],[51,-12],[24,-15],[36,-35],[35,-160],[4,-15],[-3,-9],[-1,-3],[-3,-3],[-20,-19],[-77,-40],[-63,-19],[-73,-17],[-23,-13],[-9,-9],[-13,-15],[-37,-124],[-24,-79],[-9,-6],[-49,-62],[-38,-47],[-16,-28],[-2,-20],[5,-9],[69,-48],[31,-17],[35,-10],[29,-3],[63,2],[24,-3],[80,-40],[3,-15],[0,-4],[-4,-36],[-6,-50],[-7,-35],[-10,-11],[-7,-9],[-204,-241],[-9,-11],[-56,-158],[-13,-30],[-18,-18],[-69,-51],[-38,-18],[-79,-22],[-126,-22],[-81,-31],[-33,-19],[4,-14],[2,-11],[19,-39],[2,-5],[4,-8],[21,-36],[41,-70],[8,-12],[34,-42],[24,-30],[5,-3],[24,-13],[198,-53],[59,-20],[40,-16],[167,-79],[8,-6],[-8,-77],[-8,-7],[-119,-112],[-81,-76],[-8,1],[-67,10],[-23,-108],[-24,-116],[152,-15],[32,-4],[-8,-18],[-47,-106],[-2,-6],[-134,-71],[-24,-7],[-56,-7],[-36,-15],[-11,-9],[3,-15],[1,-5],[12,-52],[11,-50],[6,-17],[13,-11],[23,-20],[64,-24],[131,-11],[94,-8],[52,-5],[94,-4],[46,0],[45,19],[40,2],[38,-2],[158,-25],[16,-6],[36,-30],[66,-86],[6,-22],[1,-3],[-9,-31],[-24,-19],[4,-25],[33,-18],[37,-19],[206,-105],[34,-18],[194,-16],[5,-3],[41,-28],[-29,-21],[-172,-120],[-315,-220],[-110,22],[-101,-96],[-5,-4],[-169,-155],[-37,-36],[-67,-66],[-11,-12],[-34,-33],[-37,-37],[-1,-55],[130,-52],[-102,-118],[-69,-79],[-101,-116],[-32,-37],[-30,-86],[65,-16],[61,-16],[61,-13],[61,-16],[59,-16],[60,-16],[58,-16],[57,-15],[67,-17],[71,-19],[60,-24],[-36,-38],[-34,-35],[-34,-36],[-33,-35],[-35,-37],[-42,-44],[-36,-37],[-34,-35],[-40,-42],[-33,-35],[-38,-40],[-36,-38],[-34,-35],[-34,-36],[-40,-42],[-33,-36],[-145,-145],[-86,-31],[-144,-45],[-118,-22],[-94,-50],[-85,-51],[-63,-52],[-50,-40],[-460,-238],[-222,-226],[-128,-130],[-11,-12],[-53,-53],[-73,-81],[-100,-110],[-39,-41],[-161,-168],[-241,-252],[-82,-86],[-95,-102],[-101,-109],[-107,-115],[-188,-201],[-254,-273],[-4,-3],[-48,-53],[-40,-32],[-62,-9],[-63,16],[-61,10],[-56,15],[-68,10],[-58,19],[-51,38],[-46,29],[-30,18],[-17,10],[-58,29],[-18,44],[1,23],[1,21],[-52,32],[-59,27],[-10,5],[-48,25],[-66,4],[-63,16],[-62,22],[-55,18],[-60,17],[-66,14],[-72,19],[-69,14],[-76,1],[80,-100],[177,-221],[163,-203],[102,-128],[207,-254],[47,-57],[97,-119],[55,-68],[32,-37],[35,-40],[34,-40],[31,-40],[28,-36],[34,-44],[32,-40],[30,-40],[36,-49],[34,-42],[29,-37],[91,-114],[1,-1],[84,-105],[75,-93],[72,-92],[143,-180],[47,-59],[47,-58],[104,-129],[31,-37],[158,-195],[298,-384],[51,-66],[45,-58],[87,-112],[97,-125],[31,-40],[28,-37],[33,-42],[32,-41],[32,-41],[32,-41],[29,-36],[29,-37],[30,-39]],[[48980,61641],[-482,-41],[-86,-8],[-1835,-155],[-99,-9],[-601,-51],[-120,-10],[-420,-38],[24,-55],[14,-47],[12,-43],[16,-56],[21,-73],[13,-43],[86,-276],[21,-62],[12,-40],[25,-82],[13,-46],[13,-42],[14,-48],[31,-112],[14,-49],[12,-44],[11,-41],[18,-64],[12,-42],[11,-41],[-109,-9],[-68,-4],[-124,-5],[-138,-10],[-91,-6],[-65,-5],[-56,-4],[-83,-6],[-96,-7],[-109,-7],[-68,-5],[-27,-2],[-43,-2],[-65,-5],[-435,-31],[-134,-9],[-473,-36],[-479,-34],[-706,-52],[-17,-1],[-708,-52],[137,-210],[34,-53],[29,-48],[24,-39],[28,-42],[29,-43],[32,-40],[60,-97],[128,-203],[62,-99],[67,-107],[190,-303],[-237,-15],[-123,-9],[-194,-12],[-122,-8],[-61,-4],[-62,-4],[-115,-7],[-72,-4],[-64,-4],[-132,-9],[-177,-12],[-398,-26],[-83,-5],[-668,-44],[-283,-18],[-147,-10],[-708,-47],[-225,-15],[-530,-34],[-186,-13],[-314,46],[-3,0],[-68,10],[-73,11],[-109,16],[-58,8],[-17,2]],[[37227,58240],[-3,4],[-29,41],[-5,7],[-50,67],[-43,51],[-25,65],[-39,225],[6,127],[2,57],[-114,209],[-1,21],[-27,56],[-19,21],[-27,30],[-51,55],[-22,45],[-84,172],[-3,5],[0,1],[-82,131],[-4,5],[-5,7],[-3,4],[-11,12],[-120,137],[-2,1],[-56,64],[-190,189],[5,4],[3,3],[-50,47],[-103,97],[-183,275],[-111,83],[-223,85],[-80,31],[-512,134],[-4,1],[-9,3],[-4,2],[-265,94],[-45,12],[-206,57],[-517,61],[-183,-8],[-162,-8],[-21,-5],[-141,-36],[-133,-30],[-285,-41],[-458,-88],[-59,-11],[-16,-1],[-239,-17],[-324,91],[-131,37],[-457,140],[-56,31],[-83,73],[-6,5],[-7,6],[-3,1],[-224,76],[-382,44],[-177,41],[-1,0],[-134,68],[-4,3],[-180,147],[-46,174],[-34,131],[-79,225],[-2,4],[-130,436],[-112,162],[-4,5],[-94,156],[-3,6],[-3,7],[-3,8],[-1,4],[-27,119],[0,3],[-1,7],[-1,7],[1,7],[1,8],[2,7],[26,92],[3,7],[3,7],[4,7],[4,6],[5,7],[3,3],[156,169],[13,18],[112,161],[127,276],[23,135],[91,159],[4,11],[-8,101],[-49,53],[-6,128],[-22,78],[-31,107],[0,69],[-49,146],[-32,96],[-22,65],[-1,6],[-17,70],[-35,464],[-9,126],[12,74],[6,31],[17,40],[13,78],[-1,7],[-2,17],[-10,62],[-14,55],[-33,138],[0,1],[-45,186],[-3,10],[-46,127],[-16,45],[-19,14],[-45,33],[-37,28],[-187,69],[-159,60],[-145,70],[-171,104],[-131,99],[-279,164],[-297,172],[-19,2],[-109,81],[-58,34],[-65,38],[-131,73],[-35,20],[-80,30],[-69,17],[-62,15],[-195,48],[-131,23],[-132,28],[-64,13],[-381,61],[-584,19],[-723,59],[-526,-98],[-86,-15],[-189,-89],[-501,-186],[-243,-43],[-247,-44],[-245,11],[-282,29],[-9,1],[-10,1],[-10,2],[-10,3],[-319,89],[0,1],[-10,3],[-9,3],[-9,4],[-9,4],[-2,1],[-240,132],[-123,109],[-218,194],[-4,5],[-52,131],[31,40],[152,146],[9,9],[30,92],[2,4],[0,1],[40,100],[52,67]],[[66321,71949],[205,-313],[91,-132],[95,-143],[98,-145],[60,-91],[79,16],[67,20],[84,26],[181,49],[48,33],[66,33],[73,0],[17,43],[67,35],[85,42],[84,33],[36,49],[67,0],[88,32],[63,26],[126,0],[91,4],[72,-70],[79,-4],[54,-25],[133,-62],[223,-132],[67,37],[96,50],[24,49],[121,50],[148,14],[166,109],[85,25],[88,45],[49,33],[61,-4],[109,-49],[79,-78],[18,-54],[0,-59],[-61,-141],[113,-91],[113,-92],[-322,-261],[-222,-183],[-47,-21],[-12,-5],[-203,-92],[-110,-43],[-24,-9],[-3,-32],[-9,-81],[-4,-42],[-33,-142],[-4,-17],[-79,-140],[-100,-54],[-16,-4],[-26,-2],[-63,-5],[-61,-29],[-39,-19],[-18,-10],[-36,-53],[-2,-67],[-10,-48],[-93,-75],[-163,-92],[-18,-1],[-219,-8],[-268,-152],[-56,-35],[-185,-101],[-118,-15],[-78,-9],[-65,-8],[-15,-3],[-185,-33],[-43,-7],[-6,-8],[-53,-65],[-54,-63],[-10,-3],[-35,-9],[-54,-14],[-52,-13],[-130,-34],[-34,-6],[-118,-21],[-5,-1],[-36,-9],[-81,-46],[-12,-53],[-130,-18],[-82,-11]],[[66188,68845],[-60,-12],[-121,-8],[-174,-12],[-26,-3],[-48,-6],[-2,-1],[-147,-19],[-126,-64],[-257,-141],[-89,-46],[-25,-13],[-44,-21],[-40,-19],[-70,-25],[-85,-1],[-216,-48],[-31,-15],[-10,-8],[-203,-7],[-38,-6],[-324,-53],[-118,-30],[-52,-13],[-20,-20],[-18,-20],[-110,75],[-32,-10],[-310,-100],[-19,-6],[-150,-62],[-174,-72],[-8,-3],[-422,-274],[-2,-1],[-1,-1],[-219,-182],[-2,-19],[-4,-65],[-8,-114],[-3,-37],[-4,-93],[-1,-11],[-1,-21],[0,-10],[-15,-89],[-9,-50],[354,-63],[139,-216],[10,-85],[100,-71],[65,-32],[368,-182],[88,-44],[279,-115],[229,-94],[76,-62],[133,-127],[192,-184],[116,-123],[129,-126],[194,-133],[48,-22],[176,-83],[238,-66],[187,-35],[78,-38],[372,-61],[26,-54],[6,-87],[1,-5],[5,-52],[18,-41],[36,-37],[261,-103],[62,-34],[100,-115],[-12,-112],[-12,-95],[-91,-33],[-106,-22],[-57,-23],[-54,-19],[-145,-51],[-62,-23],[-101,-18],[-78,-17],[-103,-20],[-96,-21],[-103,-12],[-62,-15],[-65,-10],[-60,-17],[-91,-33],[-60,-24],[-97,-37],[-78,-46],[-97,-66],[-84,-70],[-127,-103],[-48,-37],[-103,-66],[-60,-45],[-66,-41],[-79,-46],[-54,-20],[-109,-54],[-67,-24],[-29,-11],[-79,-31],[-62,-26],[-77,-32],[-78,-33],[-135,-62],[-64,-24],[-69,-46],[-82,-53],[-10,-7],[-120,-67],[-111,-62],[-3,-1],[-184,-80],[-21,-9],[-106,-46],[-85,-37],[-73,-54],[-52,-38],[-63,-46],[-80,-59],[-9,-6],[-52,-38],[-62,-43],[-38,-16],[-41,-18],[-176,-76],[-102,-48],[-45,-21],[-58,-28],[-78,-29],[-18,-6],[-70,-23],[-118,-39],[-200,-62],[-88,-28],[-133,-42],[-202,-58],[-114,-35],[-120,-33],[-72,-19],[-145,-37],[-79,-18],[-102,-25],[-95,-24],[-252,-66],[-81,-21],[-151,-37],[-77,-18],[-80,-19],[-123,-33],[-100,-26],[-87,-23],[-39,-10],[-69,-23],[-280,-90],[-3,-1],[-89,-29],[-19,-41],[11,-47],[25,-109],[19,-85],[-39,-130],[-28,-62],[17,-121],[8,-52],[-85,-99],[-18,-54],[0,-51],[0,-110],[-103,-61],[-153,-39],[-35,-33],[-144,-135],[-40,-64],[-20,-30],[-60,-32],[-115,-59],[-223,-111],[-133,-44],[-93,-31],[-116,-41],[-28,-9],[-91,-32],[-70,-25],[-139,-45],[-77,-17],[-3,0],[-101,0],[-82,0],[-105,-30]],[[56738,59588],[44,51],[45,43],[19,39],[-18,87],[-81,65],[-85,56],[-101,59],[-10,8],[-18,10],[-89,17],[-194,34],[-64,11],[-129,23],[-270,47],[-89,15],[-128,23],[-381,66],[-127,22],[-181,32],[-63,4],[-65,-11],[-61,-8],[-32,-7],[-40,-8],[-96,-20],[-76,-16],[-66,-15],[-59,-14],[-62,-13],[-59,-11],[-64,-12],[-58,-11],[-82,-17],[-79,-16],[-80,-18],[-78,-15],[-75,-15],[-62,-9],[-60,-34],[-75,-22],[-74,-12],[-72,-7],[-164,-14],[-70,-11],[-60,-3],[-79,-3],[-78,-7],[-67,-10],[-151,-10],[-81,-7],[-68,-9],[-123,-19],[-61,-10],[-130,-11],[-96,-11],[-97,-9],[-62,-2],[-75,-3],[-66,-7],[-110,-19],[-69,-11],[-75,-13],[-61,-7],[-65,1],[-117,-24],[-97,-27],[-65,0],[-110,-24],[-70,-9],[-96,-11],[-68,-7],[-59,-14],[-162,-45],[-72,33],[-86,111],[-33,43],[-39,49],[-55,68],[-34,46],[-37,50],[-89,111],[-56,67],[-33,41],[-1,1],[-30,36],[-36,42],[-46,59],[-53,67],[-44,57],[-37,47],[-32,40],[-29,38],[-67,95],[-35,48],[-32,44],[-6,8],[-36,50],[-109,138],[-306,385],[-103,128],[-75,106]],[[84484,72473],[101,-25],[80,-19],[752,-364],[264,-128],[-621,-622],[-675,176],[-116,-53],[-211,-199],[-441,-267],[-281,-48],[-69,-21],[-307,-13],[-288,-137],[-347,-171],[-107,-71],[-126,-83],[-26,-18],[-108,-118],[-160,-157],[-21,-82],[-94,-89],[-33,-105],[110,-279],[-38,-222],[-48,-117],[80,-199],[210,-114],[-18,-123],[-139,-137],[-234,32]],[[81573,68700],[-116,59],[-153,78],[6,28],[-20,155],[-96,3],[-131,5],[-61,-88],[-74,-28],[-370,-44],[-221,-38],[-6,-1],[-162,23],[-6,0],[-63,9],[-371,51],[-109,-35],[-98,-9],[-303,15],[-78,9],[-150,21],[-179,18],[-120,50],[-133,4],[-65,-62],[-46,-100],[-43,-35],[-99,-11],[-61,-8],[-99,-9],[-92,-14],[-79,-4],[-141,-24],[-176,-21],[-33,-5],[-73,-8],[-85,-11],[-111,-12],[-110,-16],[-213,-27],[-28,-3],[-73,-8],[-74,-9],[-131,-17],[-71,-10],[-4,0],[-58,-8],[-11,0],[-63,2],[-48,24],[-24,12],[-55,26],[-72,37],[-126,58],[-55,24],[-78,33],[-79,37],[-103,33],[-114,33],[-79,33],[37,54],[24,49],[48,79],[-27,40],[45,50],[6,70],[-90,-8],[-236,-12],[-127,-13],[-144,-4],[-3,0],[-190,-12],[-254,-21],[-73,-8],[-96,-8],[-253,-13],[-242,-12],[-157,-12],[-253,-17],[-380,-25],[-73,-4],[-627,-41],[-19,-1],[-102,-7],[-212,-13],[-337,-20],[-320,-21],[-109,-6],[-199,-10],[-85,-3],[-156,-6],[-174,-8],[-207,-4],[-114,-4],[-115,-8],[-157,-9],[-151,-4],[-66,-4],[-103,-4],[-69,-6],[-63,-6],[-284,-17],[-115,-8],[-60,-4],[-69,-1],[-148,-7],[-85,-9],[-78,-4],[-145,-8],[-145,-12],[-84,-5],[-91,-4],[-60,-4],[-109,-8],[-109,-4],[-126,-4],[-187,-17],[-224,-12],[-60,-4],[-113,-6],[-86,-7],[-115,-8],[-66,-4],[-85,-4],[-66,-4],[-60,-4],[-79,-8],[-118,-4],[-49,-2],[-74,-3],[-121,-12],[-90,0],[-85,-41],[-7,5],[-35,28],[-61,28],[-54,33],[-48,33],[-85,54]],[[81573,68700],[7,-115],[-119,-104],[-49,-135],[-88,-173],[-50,-168],[8,-156],[-75,-119],[-60,-145],[-111,-162],[-68,-103],[-163,-112],[-183,57],[-252,65],[-150,18],[-178,-3],[-136,-73],[-205,-51],[-296,-101],[-199,-64],[-121,0],[-193,-74],[-162,-109],[4,-110],[55,-115],[-60,-230],[52,-110],[49,-108],[20,-100],[125,-288],[-6,-43],[-19,-130],[-153,-106],[-237,-134],[-119,-108],[-62,-87],[-15,-82],[-76,-109],[-75,-125],[-163,-122],[-154,-29],[-275,25],[-190,22],[-108,4],[-20,0],[-321,0],[69,124],[-301,227],[-114,27],[-7,2],[-151,49],[-175,41],[-320,-10],[-20,-2],[-294,-29],[-206,-48],[-207,-57],[-496,-245],[-73,-36],[-153,-111],[-20,-22],[-91,-94],[-9,-10],[-121,-115],[-94,-102],[223,11],[-73,-61],[-26,-21],[-150,-31],[-144,-65],[-51,-34],[-71,-47],[-172,-54],[-275,-42],[-4,1],[-179,40],[-130,28],[-51,-3],[-102,-6],[-18,-1],[114,-110],[250,-22],[142,-4],[27,-1],[31,1],[126,4],[277,45],[124,36],[215,62],[17,5],[60,21],[60,22],[70,26],[323,112],[2,3],[69,68],[177,148],[54,84],[97,143],[123,88],[112,60],[115,58],[253,66],[160,16],[27,3],[423,-23],[2,-2],[104,-78],[-112,-98],[-25,-121],[139,-81],[250,-141],[253,-11],[59,-2],[181,-60],[202,-53],[100,-53],[-64,-120],[168,-72],[199,-30],[103,-125],[111,-121],[18,-119],[-90,-95],[112,-125],[265,-184],[197,-32],[199,-62],[130,-27],[178,-48],[161,-55],[175,-52],[141,-8],[255,-10],[246,-126],[205,-74],[151,0],[100,4],[65,-20],[82,-50]],[[80684,62752],[-35,-77],[-73,-22],[-52,-39],[-24,-45],[-15,-59],[-34,-36],[-101,22],[-59,13],[-58,13],[-73,-2],[-42,-31],[-3,-2],[-31,-36],[-64,-21],[-54,37],[-124,9],[-75,-43],[-47,-29],[-58,-37],[-51,-33],[-65,-43],[-9,-6],[-63,-41],[-116,-75],[-55,-36],[-45,-29],[-54,-33],[-2,-47],[-1,-49],[0,-10],[0,-42],[-3,-68],[-4,-46],[-3,-76],[-2,-41],[-3,-66],[-8,-197],[-3,-80],[-2,-44],[-1,-16],[-4,-95],[-3,-47],[-53,-20],[-47,-37],[14,-46],[36,-53],[30,-49],[-22,-39],[-53,-29],[-118,-61],[-67,-34],[-70,-37],[-52,-28],[-198,-107],[-78,-41],[-84,-46],[-54,-29],[-62,-33],[-65,-35],[-59,-32],[-59,-32],[-60,-32],[-55,-30],[-85,-45],[-69,-37],[-70,-38],[-83,-45],[-79,-43],[-94,-51],[-144,-78],[-241,-130],[-51,-28],[-91,-48],[-156,-84],[-99,-52],[-80,-42],[-87,-46],[-69,-37],[-48,-25],[-92,-49],[-68,-36],[-187,-100],[-27,-14],[-50,-27],[-91,-49],[-215,-115],[-12,-6],[-79,-43],[-376,-201],[-53,-28],[-52,-28],[-121,-65],[-122,-65],[-48,-25],[-106,-57],[-73,-40],[-300,-160],[-62,-33],[-70,-38],[-147,-80],[-66,-36],[-284,-152],[-49,-27],[-50,-27],[-150,-80],[-190,-103],[-176,-94],[-159,-85],[-55,-30],[-55,-30],[-217,-116],[-106,-57],[-79,-42],[-94,-50],[-28,-15],[-125,-67],[-139,-74],[-52,-28],[-280,-151],[-176,-95],[-65,-37],[-77,-43],[-71,-41],[-67,-37],[-76,-52],[-77,-54],[-28,-19],[-23,-15],[-48,-34],[-72,-49],[-81,-56],[-71,-50],[-68,-46],[-121,-84],[-75,-52],[-87,-59],[-35,-25],[-43,-29],[-43,-31],[-32,-41],[-22,-44],[8,-45],[40,-31],[21,-45],[24,-39],[43,-37],[-8,-42],[-31,-36],[-70,-17],[-59,-16],[-63,-4],[-87,-25],[-73,-22],[-93,-27],[-65,-19],[-73,-20],[-119,-35],[-140,-41],[-68,-20],[-64,-18],[-131,-38],[-107,-31],[-142,-42],[-57,-17],[-60,-18],[-62,-17],[-215,-62],[-156,-46],[-56,-16],[-40,-12],[-186,-54],[-118,-34],[-143,-42],[-112,-33],[-57,-16],[-11,-3],[-113,-34],[-216,-63],[-122,-35],[-152,-44],[-130,-39],[-170,-49],[-122,-36],[-136,-39],[-119,-34],[-88,-26],[-79,-24],[-123,36],[-52,9],[-63,2],[-107,4],[-95,3],[-97,3],[-108,4],[-148,6],[-147,5],[-144,5],[-98,3],[-112,4],[-105,3]],[[64904,54596],[27,142],[8,42],[11,58],[13,73],[38,198],[11,57],[1,6],[6,43],[17,121],[6,43],[-3,19],[-2,24],[-299,75],[-5,1],[-70,18],[-268,91],[-9,3],[-35,12],[-21,8],[-157,59],[-85,32],[-3,1],[-19,2],[-5,0],[-29,-2],[-97,-5],[-32,-3],[-40,-16],[-185,19],[-53,6],[-62,11],[-32,6],[-95,32],[-149,60],[-14,5],[-23,9],[-29,27],[-1,12],[-33,34],[-32,19],[-34,17],[-76,23],[-45,-4],[-40,-22],[-308,10],[-38,6],[-2,0],[-23,16],[-13,20],[9,28],[11,11],[-21,34],[-54,85],[-3,2],[-50,41],[-216,73],[-22,5],[-32,-2],[-31,-6],[-230,-45],[-22,-4],[-7,-4],[2,-36],[1,-8],[-22,-14],[-112,-56],[-2,-1],[-19,-7],[-45,-12],[-152,-40],[-11,8],[-121,93],[-14,11],[-2,1],[-25,11],[-75,19],[-24,6],[-31,-3],[-34,-10],[-31,-20],[-55,-14],[-56,-5],[-126,0],[-195,1],[-69,8],[-72,33],[-34,15],[-4,2],[-205,151],[-80,6],[-113,21],[-110,21],[-67,13],[-317,94],[-51,25],[-37,19],[-19,13],[-34,37],[-52,38],[-61,33],[-31,10],[-56,9],[-48,-1],[-6,-1],[-6,-1],[-72,-19],[-1,0],[-100,4],[-14,4],[-25,15],[-107,74],[-74,51],[-16,11],[-7,19],[-7,56],[-9,28],[-8,26],[-10,33],[-20,24],[-40,46],[-19,13],[-279,51],[-51,9],[-28,4],[-174,27],[-22,0],[-24,-6],[-36,-27],[-1,-1],[-38,-6],[-38,1],[-54,8],[-35,5],[-39,12],[-53,28],[-36,27],[-75,55],[-35,25],[-2,3],[-3,4],[-291,114],[-321,96],[-2,3],[-3,4],[-12,2],[-27,4],[-187,30],[-188,-20],[-44,-5],[-31,0],[-18,5],[-29,21],[-27,30],[4,40],[1,4],[7,18],[6,15],[-4,19],[-2,3],[-5,4],[-14,16],[-69,66],[33,65],[10,19],[1,1],[1,42],[-3,6],[-15,23],[-29,28],[-39,28],[-2,2],[-58,36],[-43,21],[-1,0],[-63,24],[-37,13],[-65,25],[-33,21],[-18,12],[-25,25],[-13,26],[-1,70],[30,22],[13,9],[119,79],[-39,16],[-34,19],[79,223],[174,567],[105,92],[161,142],[29,25],[48,5],[-34,112],[6,18],[2,8]],[[88305,49252],[20,45],[-25,44],[12,14],[8,8],[17,20],[2,5],[3,13],[8,26],[-26,41],[-38,3],[-15,1],[-16,1],[0,-1],[-26,-42],[-40,-4],[-37,-4],[-49,37],[-49,37],[-85,27],[-64,33],[35,44],[-71,11],[52,29],[-25,38],[-51,15],[-21,6],[-2,7],[-13,34],[-42,-6],[-29,-3],[-61,19],[-6,12],[-16,33],[-60,-7],[-7,-5],[-174,-108],[-44,-36],[-366,-219],[-84,-52],[-92,-57],[-47,-29],[-73,-36],[-109,-70],[-55,-33],[-129,-81],[-94,-58],[-64,-40],[-47,-29],[-204,-130],[-65,-42],[-90,-56],[-182,-113],[-65,-41],[-49,-29],[-53,-35],[-56,-37],[-313,-192],[-55,-33],[-94,13],[-73,-5],[-90,23],[-22,38],[-7,42],[-42,15],[-13,4],[-8,12],[-19,26],[-14,-2],[-46,-5],[-19,13],[-22,18],[-21,42],[-30,37],[-30,38],[-52,32],[-14,2],[-37,8],[-8,1],[-66,12],[-42,-19],[-10,-5],[-60,-6],[-58,-13],[-61,1],[-41,11],[-20,5],[-63,5],[-63,5],[-62,1],[-70,22],[-59,9],[-57,18],[-65,6],[-58,22],[-62,17],[-12,4],[-56,17],[-23,9],[-33,12],[-38,10],[-8,1],[-20,5],[-9,-3],[-46,-17],[-65,7],[-67,-16],[-57,14],[-61,-3],[-56,24],[-71,-7],[-55,15],[-3,0],[-61,5],[-11,-3],[-49,-11],[-65,6],[-61,-2],[-61,5],[-1,0],[-56,22],[-61,7],[-44,-20],[-22,-10],[-62,5],[-52,15],[-4,2],[-6,-1],[-35,-2],[-24,-2],[-63,-1],[-63,6],[-68,13],[-63,-4],[-33,16],[-17,8],[-64,-8],[-23,-1],[-41,-3],[-53,-24],[-63,-8],[-56,-17],[-58,-14],[-62,-2],[-59,-13],[-63,-5],[-62,2],[-63,-10],[-72,-4],[-30,2],[-32,3],[-84,4],[-65,-8],[-5,0],[-69,-4],[-66,-12],[-68,-7],[-48,-4],[-16,-2],[-19,-1],[-44,-1],[-60,6],[-15,-3],[-43,-11],[-38,16],[-18,8],[-62,8],[-62,1],[-25,-4],[-34,-6],[-63,7],[-56,19],[-19,11],[-37,22],[-62,15],[-59,16],[-61,14],[-57,-1],[-7,0],[-60,12],[-20,9],[-31,16],[-54,24],[-46,34],[-42,32],[-54,19],[-54,29],[-5,3],[-3,5],[-14,35],[-33,36],[3,37],[0,4],[2,1],[47,30],[16,48],[13,43],[33,35],[55,25],[-10,41],[18,45],[-10,41],[-32,35],[-1,0],[5,41],[12,44],[20,28],[9,12],[-38,40],[-61,3],[-2,2],[-28,34],[-13,42],[-46,21],[-7,3],[-44,31],[-29,37],[-34,39],[-11,41],[-33,36],[-24,39],[-40,50],[-36,58],[-54,84],[-79,48],[-49,28],[-49,25],[-39,38],[-63,1],[-57,16],[-35,15],[-18,7],[-69,2],[-23,1],[-45,1],[-21,10],[-25,12],[-5,3],[23,38],[11,43],[33,36],[-46,29],[-13,13],[-18,19],[-5,5],[-13,43],[-1,41],[3,25],[2,17],[31,37],[24,38],[33,36],[-20,40],[19,41],[-48,26],[-8,10],[-21,26],[-2,42],[-15,40],[-39,33],[-6,37],[0,5],[-5,1],[-56,12],[-56,18],[-53,22],[-59,15],[-95,17],[-104,1],[-246,3],[-105,1],[-176,2],[-188,3],[-191,2],[-191,3],[-277,4],[-113,1],[-112,1],[-154,2],[-154,2],[-114,1],[-69,1],[-185,2],[-254,3],[-152,2],[-83,2],[-151,2],[-309,3],[-121,1],[-120,2],[-134,1],[-91,1],[-326,4],[-325,4],[-298,4],[-298,3],[-284,4],[-235,3],[-73,1],[-336,4],[-209,4],[-202,3],[-156,2],[-136,5],[-278,8],[-221,7],[-127,4],[-64,2],[-63,2],[-795,27],[-153,6],[-94,3],[-14,0],[-135,-65],[-100,-47],[-62,-29],[-85,-41],[-8,-4],[-149,-73],[-62,-30],[-85,-41],[-51,-25],[-117,-55],[-2,-1],[-56,-26],[-57,-28],[-51,-24],[-1,-1],[-55,-24],[-57,-29],[-65,-31],[-91,-43],[-67,-32],[-59,-28],[-120,-57],[-41,-20],[-9,-4],[-118,-57],[-62,-30],[-58,-27],[-123,-59],[-75,-35],[-58,-29],[-68,-33],[-54,-26],[-60,-28],[-97,-45],[-125,-60],[-50,-24],[-97,-46],[-240,-115],[-50,-24],[-87,-41],[-134,-64],[-60,-29],[-77,-37],[-92,-44],[-32,-15],[-78,-37],[-67,-32],[-152,-69],[-67,-30],[-160,-73],[-50,-23],[-88,-39],[-86,-39],[-53,-24],[-50,-23],[-51,-23],[-138,-62],[-132,-60],[-76,-34],[-61,-28],[-205,-93],[-60,-27],[-156,-71],[-55,-25],[-103,-46],[-85,-39],[-55,-25],[-56,-25],[-56,-25],[-104,-47],[-92,-42],[-52,-24],[-78,-35],[-76,-34],[-129,-59],[-11,-5],[-46,-21],[-84,-37],[-103,-47],[-136,-62],[-63,-29],[-88,-40],[-73,-33],[-65,-29],[-51,-23],[-64,-30],[-69,-31],[-106,-48],[-131,-59],[-111,-51],[-63,-27],[-93,-29],[-69,-19],[-149,-43],[-162,-47],[-132,-38],[-138,-40],[-28,-8],[-109,-31],[-122,-35],[-86,-25],[-161,-47],[-83,-24],[-161,-46]],[[60751,47416],[-3,3],[-74,85],[-46,54],[-59,67],[-92,107],[-31,37],[-67,78],[-34,40],[-33,36],[-38,43],[-38,45],[-33,38],[-88,101],[-43,50],[-30,37],[-32,38],[-34,39],[-112,115],[-87,106],[-83,97],[-33,39],[-49,56],[-40,48],[-47,53],[-78,88],[-43,50],[-37,40],[-41,50],[-33,37],[-38,42],[-33,38],[-41,47],[-43,51],[-31,38],[-49,59],[-62,75],[-58,72],[-47,57],[-28,38],[-47,52],[-72,79],[-90,112]],[[58654,49853],[-14,14],[-36,36],[-141,145],[-41,42],[-50,63],[-135,170],[-45,56],[-48,63],[-57,54],[-33,38],[-43,51],[-36,41],[-70,82],[-55,64],[-78,90],[-54,63],[-32,39],[-56,72],[-144,188],[-15,20],[-32,40],[-39,49],[-10,12],[-47,56],[-153,182],[-51,60],[-35,42],[163,31],[61,12],[337,71],[89,18],[162,32],[27,5],[10,-2],[118,-20],[6,-45],[7,-59],[14,-44],[38,-90],[12,-30],[36,-2],[77,0],[118,10],[114,35],[65,25],[45,37],[66,35],[54,20],[61,14],[73,16],[58,17],[71,3],[70,10],[93,26],[99,16],[83,18],[85,13],[48,5],[12,2],[97,-23],[77,-17],[59,-12],[55,20],[62,22],[60,19],[93,26],[120,43],[54,29],[46,28],[39,45],[38,56],[41,61],[40,55],[44,54],[34,42],[37,42],[34,35],[46,35],[57,37],[45,28],[56,36],[83,58],[103,67],[50,25],[59,23],[45,67],[27,52],[42,79],[57,56],[126,93],[42,31],[28,11],[26,9],[58,20],[164,47],[90,25],[141,36],[122,34],[225,66],[70,21],[84,24],[118,30],[353,93],[113,29],[120,36],[327,99],[109,32],[62,20],[145,46],[85,26],[147,43],[68,21],[141,43],[57,17],[68,20],[96,28],[225,65],[75,21],[94,30],[72,25],[58,20],[58,19],[64,22],[56,19],[27,42],[-37,71],[-43,42],[-59,36],[-30,37],[-55,19],[-61,24],[-42,32],[-47,61],[-3,39],[18,16],[173,4]],[[80684,62752],[211,-11],[220,-102],[223,-14],[132,-32],[107,-52],[4,-72],[51,-141],[-24,-74],[-146,-51],[74,-67],[141,-33],[21,65],[153,76],[306,29],[240,60],[230,138],[172,121],[25,70],[37,95],[88,86],[155,131],[187,91],[103,-29],[113,-54],[128,-82],[139,-95],[324,-117],[83,-57],[362,-86],[379,14],[353,69],[254,129],[149,92],[69,72],[148,25],[191,-29],[226,-91],[195,-80],[110,-36],[174,-64],[97,-26],[187,-74],[167,-50],[253,-60],[248,-33],[144,-28],[317,-36],[256,-39],[128,-29],[164,-29],[196,-70],[193,-56],[156,-94],[187,25],[148,-49],[118,-152],[68,-101],[219,58],[78,-81],[257,-36],[122,-73],[245,-64],[117,-36],[173,-34],[209,-32],[294,-43],[266,-25],[175,9],[250,-67],[105,-39],[257,-47],[155,-11],[205,-14],[493,-33],[306,-74],[300,9],[167,-45],[320,-98],[139,7],[136,-40],[103,-68],[150,-29],[103,-62],[66,-78],[24,-102],[26,-98],[11,-39],[-8,-131],[-16,-112],[-4,-105],[-75,-91],[-209,21],[-150,-19],[-164,-15],[-142,-23],[-123,12],[-150,40],[-90,47],[7,75],[-82,59],[-44,65],[-101,-19],[-153,-52],[-201,-29],[-286,19],[-171,37],[11,-143],[-19,-101],[-160,-9],[-228,-38],[-157,-25],[-185,-81],[-263,-92],[-296,-76],[-248,-101],[-220,-9],[-142,-20],[-152,-56],[-69,-78],[-139,33],[-185,-4],[-134,-33],[-107,-52],[-150,-69],[-178,-12],[4,-171],[-141,-62],[22,-83],[-197,-13],[-180,-32],[-133,-22],[-46,-24],[-135,-67],[-65,-42],[-68,-44],[80,-109],[-69,-104],[181,-7],[90,50],[-22,80],[2,3],[58,105],[50,19],[122,45],[225,-110],[222,40],[158,47],[135,-4],[136,55],[163,69],[150,73],[101,52],[-23,135],[116,53],[249,70],[159,3],[80,-7],[92,20],[17,3],[30,7],[33,7],[144,4],[166,11],[128,-12],[152,13],[108,93],[104,115],[179,51],[85,98],[169,-35],[160,-11],[172,30],[171,87],[182,12],[220,-16],[171,-4],[132,-64],[147,-13],[105,90],[62,81],[151,-3],[80,-86],[79,-71],[109,-2],[170,18],[132,45],[165,89],[61,-180],[-12,-102],[88,-113],[27,-120],[29,-93],[-3,-134],[-169,-95],[-163,-27],[2,167],[-253,-61],[194,-121],[-66,-60],[-141,-63],[-120,19],[-92,-22],[-6,-49],[-166,-19],[-109,27],[-178,-40],[-47,-11],[-228,-41],[-157,-114],[-30,-12],[-107,-96],[-8,-100],[-109,-117],[-219,-10],[-207,50],[-97,-84],[-215,7],[-122,-55],[-2,-41],[79,-26],[105,4],[153,-2],[84,-62],[-104,-76],[-9,-120],[-69,-88],[-85,-69],[-63,-109],[-182,-16],[-34,-53],[-3,-5],[-1,-1],[136,-82],[-147,-66],[27,-52],[131,16],[130,17],[97,9],[14,108],[48,88],[124,69],[100,60],[120,55],[92,-28],[-102,-81],[-53,-96],[158,-27],[184,72],[-33,70],[112,68],[136,78],[111,40],[103,-28],[106,-18],[-37,-68],[74,-73],[29,-89],[101,-88],[-64,-169],[-49,-32],[-235,-83],[-93,-108],[16,-28],[3,-4],[19,-35],[245,86],[271,126],[3,7],[16,38],[14,33],[-55,113],[32,23],[105,46],[-157,58],[-49,85],[19,70],[147,3],[119,-46],[40,-20],[65,-58],[98,15],[125,23],[8,0],[95,-41],[16,5],[7,82],[-156,16],[-167,42],[-141,15],[-169,64],[11,120],[-84,48],[-103,86],[183,32],[222,19],[48,-116],[90,30],[73,98],[151,70],[93,-133],[130,-4],[138,31],[34,99],[59,89],[43,94],[-84,83],[26,88],[86,94],[13,81],[44,104],[-33,131],[31,309],[15,167],[-28,90],[-14,121],[-22,146],[-32,120],[24,95],[-14,88],[-22,120],[-53,85],[-15,67],[3,106],[12,54],[22,107],[-66,113],[-59,165],[-124,23],[-154,62],[62,146],[129,5],[-57,141],[-169,140],[-58,205],[-81,161],[-200,108],[-179,51],[-6,104],[78,276],[-19,119],[-74,101],[-120,81],[-174,38],[-147,-33],[-186,-18],[-7,92],[-4,213],[-81,92],[-22,106],[-21,100],[-5,95],[-113,123],[-129,8],[-72,76],[-146,61],[-98,26],[-130,-5],[-90,-4],[-34,70],[-51,58],[51,78],[72,69],[174,15],[114,-18],[181,-98],[162,2],[156,56],[44,69],[85,12],[132,-6],[71,-3],[59,-36],[73,-45],[-5,-58],[-5,-60],[-7,-44],[-19,-121],[199,-199],[210,-200],[199,-251],[230,-211],[163,-206],[181,-136],[-13,-305],[-48,-284],[-12,-186],[97,-136],[-47,-188],[101,-208],[37,-182],[78,-150],[54,-274],[37,-186],[30,-214],[18,-256],[60,-236],[46,-471],[-4,-150],[-36,-371],[-9,-144],[-33,-165],[-12,-111],[6,-132],[54,-91],[-118,-243],[-35,-184],[-70,-261],[-31,-110],[5,-70],[-32,-216],[17,-38],[-125,-338],[-50,-138],[-113,-304],[-947,-2400],[-48,-121],[-59,-204],[-7,-26],[-59,-83],[-181,-298],[-63,-92],[-59,-91],[-39,-82],[-40,-96],[-53,-104],[-55,-157],[-38,-157],[-104,-129],[-543,-7],[-173,-21],[-94,-12],[-122,-17],[-315,-113],[26,112],[98,56],[-128,68],[82,92],[-189,62],[-145,95],[-108,36],[-58,0],[-144,111],[-152,28],[-166,-94],[379,-224],[15,-51],[63,-59],[-41,-74],[-133,-116],[-133,-7],[-145,49],[-144,46],[-148,7],[-102,17],[-137,39],[-185,6],[-14,-15],[227,-158],[51,-101],[189,-62],[121,-75],[102,-67],[117,-13],[148,17],[143,59],[183,11],[151,-3],[190,54],[182,86],[199,94],[32,15],[169,-7],[112,57],[570,-11],[46,-38],[-120,-135],[-60,-130],[-84,-100],[-55,-87],[-38,-88],[-125,-217],[-90,-219],[-157,-358],[-55,-136],[-43,-107],[-166,-348],[-44,-69],[-102,-214],[-163,-353],[-67,-198],[-75,-276],[-145,-336],[-573,222],[-162,-34],[-252,-42],[-182,-85],[-11,-5],[-162,-55],[-128,-56],[-48,-122],[-200,-19],[-220,-96],[-155,-54],[-116,-19],[-121,13],[-162,-17],[-242,21],[-203,80],[-91,23],[-9,17],[-54,104],[-170,86],[84,107],[-80,101],[-158,5],[48,72],[-10,78],[-24,114],[-82,156],[-189,137],[-50,99]],[[58654,49853],[-59,-7],[-5,0],[-15,-4],[-16,1],[-128,2],[-188,2],[-166,-20],[-66,-8],[-58,-8],[-72,-11],[-45,-7],[-43,1],[-502,113],[-185,17],[-293,26],[-3,-3],[-32,-5],[-31,4],[-4,0],[-2,1],[-148,28],[-62,20],[-28,15],[0,10],[25,22],[8,4],[10,5],[18,39],[7,22],[-65,166],[-9,15],[-27,15],[-171,16],[-30,-7],[-4,-7],[0,-1],[-4,-17],[-7,-5],[-21,-5],[-121,-5],[-162,49],[-82,24],[-132,40],[-38,31],[-88,74],[-13,16],[-167,36],[-6,1],[-10,2],[-4,1],[-181,7],[-10,1],[-205,2],[-16,0],[-25,9],[-27,16],[-16,17],[-154,98],[-116,-53],[-131,72],[-132,72],[-84,57],[-133,89],[-26,18],[-11,4],[-66,13],[-83,16],[-7,2],[-37,7],[-103,12],[-54,6],[-54,7],[-92,7],[-26,2],[-83,6],[-20,2],[-31,2],[-25,-4],[-12,-9],[-12,-18],[-3,-5],[-9,0],[-147,-7],[-42,-2],[16,68],[18,18],[15,7],[70,13],[58,33],[9,12],[-2,12],[-85,116],[-112,-52],[-105,84],[-1,1],[-31,37],[-7,8],[-11,14],[-31,37],[-22,26],[-17,-3],[-121,-25],[-1,0],[-67,17],[-12,2],[-83,16],[-153,30],[-5,2],[-186,65],[-20,7],[-27,6],[-60,-6],[-83,-10],[-9,-1],[-62,-7],[-116,-11],[-169,88],[-66,90],[-116,-4],[-46,-1],[-1,0],[-67,-8],[-91,-8],[-38,-4],[-191,-62],[-4,-31],[9,-6],[18,-13],[41,-30],[2,-1],[-5,-13],[-6,-13],[-30,-9],[-42,-51],[-12,-14],[31,-32],[111,-112],[12,-21],[33,-57],[7,-12],[-111,-67],[-17,-61],[45,-37],[6,-1],[43,-5],[9,3],[21,7],[66,21],[111,67],[65,-61],[1,0],[-4,-7],[-139,-246],[-66,-37],[-10,-6],[-13,-7],[-28,-16],[-61,-34],[-22,-37],[-17,-28],[-120,-38],[-59,-20],[1,-25],[2,-47],[0,-9],[1,-25],[-13,-4],[-6,-15],[-50,-25],[-6,-2],[-59,-21],[-56,-41],[-54,-54],[-34,-24],[-3,-2],[-8,-5],[-49,-27],[-27,-9],[-30,-9],[-66,-13],[-75,-8],[-68,8],[-34,4],[-13,1]],[[50427,50227],[4,6],[30,36],[64,79],[77,186],[2,74],[-17,51],[-5,15],[-5,35],[-2,19],[-63,113],[-28,29],[-494,391],[-106,56],[-11,5],[-167,110],[-72,46],[-48,31],[-161,77],[-140,32],[-335,55],[-98,28],[-66,18],[-73,32],[-99,43],[-43,19],[-159,129],[5,11],[-60,87],[-3,2],[-3,2],[-7,6],[-7,5],[-6,6],[-6,6],[-5,7],[-4,6],[-4,7],[-3,7],[-43,107],[-46,95],[-2,5],[-20,47],[-225,227],[-85,94],[-85,96],[-85,93],[-90,86],[-123,102],[-155,86],[-117,65],[-902,355],[-680,255],[-442,94],[-813,212],[-71,19],[-120,31],[-51,14],[-447,125],[-133,44],[-151,50],[-122,61],[-205,231],[-114,131],[-79,56],[9,109],[2,23],[-111,85],[-27,21],[-153,10],[-62,77],[-48,82],[-37,192],[-34,95],[-9,31],[-8,24],[-86,132],[-242,233],[-204,196],[-45,43],[-22,16],[-182,132],[-148,108],[-543,297],[-272,123],[-167,76],[-69,31],[-149,59],[-236,70],[-19,2],[-28,4],[-90,10],[-72,-2],[-105,-4],[-24,-8],[-71,3],[-117,14],[-296,41],[-128,37],[-9,3],[-10,3],[-2,1],[-121,50],[-7,3],[-5,2],[-236,118],[-4,1],[-2,2],[-376,204],[-3,2],[-84,48],[-3,2],[-8,5],[-7,5],[-7,6],[-6,6],[-2,2],[-210,111],[-65,34],[-99,33],[-4,1],[-92,36],[-223,123],[-139,77],[-59,45],[-47,36],[-49,37],[-4,7]],[[60751,47416],[24,-40],[71,-83],[103,-121],[66,-77],[161,-187],[74,-87],[51,-58],[35,-43],[46,-58],[31,-36],[74,-105],[2,-3],[29,-39],[33,-40],[39,-45],[57,-67],[62,-71],[33,-40],[64,-68],[32,-36],[56,-66],[50,-55],[52,-61],[61,-75],[37,-42],[50,-56],[88,-96],[78,-113],[15,-21],[32,-46],[69,-98],[159,-227],[51,-72],[61,-85],[35,-51],[49,-68],[236,-342],[52,-75],[41,-56],[143,-208],[36,-46],[12,-15],[138,-180],[45,-57],[59,-81],[22,-29],[52,-65],[109,-145],[103,-135],[113,-151],[41,-54],[51,-66],[56,-74],[41,-52],[119,-158],[52,-67],[31,-44],[53,-68],[49,-65],[34,-44],[30,-40],[49,-67],[75,-94],[238,-317],[1,-1],[50,-64],[41,-52],[39,-51],[33,-43],[38,-51],[104,-135],[26,-35],[7,-9],[29,-39],[81,-108],[105,-136],[95,-127],[56,-74],[35,-45],[41,-52],[47,-63],[41,-51],[43,-60],[48,-62],[53,-69],[130,-170],[87,-118],[121,-156],[209,-276],[53,-69],[148,-194],[120,-155],[114,-151],[147,-193],[30,-38],[99,-123],[73,-85],[25,-30],[58,-76],[156,-194],[153,-187],[56,-67],[86,-112],[52,-64],[56,-69],[69,-87],[224,-276],[144,-180],[76,-94],[84,-103],[48,-58],[43,-56],[143,-173],[203,-254],[96,-115],[192,-244],[48,-60],[54,-70],[42,-51],[4,-5],[323,-400],[113,-141],[228,-283],[83,-102],[250,-310],[41,-51],[213,-265],[31,-67],[1,-224],[1,-92],[1,-122],[0,-61],[1,-160],[1,-110],[0,-167],[1,-52],[1,-102],[-2,-77],[0,-2],[0,-92],[-2,-108],[0,-29],[-1,-126],[-1,-155],[-3,-343],[0,-267],[-2,-105],[0,-69],[-3,-85],[1,-107],[-1,-103],[-2,-174],[0,-58],[0,-225],[-1,-91],[0,-100],[-1,-172],[0,-156],[0,-50],[0,-97],[-5,-505],[0,-110],[-1,-157],[-1,-122],[-2,-140],[-2,-205],[0,-147],[-1,-229],[-1,-126],[-3,-274],[2,-54],[0,-66],[0,-24],[2,-48],[5,-93],[-3,-247],[-1,-224],[-1,-127],[-2,-355],[0,-49],[-3,-48],[-10,-64],[-52,-29],[-50,-32],[-54,-65],[-31,-46],[-28,-46],[-16,-51],[-27,-27],[-12,-11],[-21,-41],[-37,-43],[-24,-43],[-19,-40],[-14,-44],[-14,-53],[-35,-33],[5,-45],[-5,-48],[0,-53],[-21,-44],[-55,-31],[-16,-44],[-52,-46],[-36,-36],[-58,-29],[-104,-18],[-26,-44],[-71,-34],[-66,-9],[-69,-5],[-68,4],[-58,30],[-48,31],[-63,-6],[-93,-26],[-66,5],[-89,8],[-77,-15],[-75,-39],[-90,-47],[41,-35],[26,-38],[17,-42],[47,-48],[70,-23],[74,-15],[41,-50],[-32,-43]],[[69110,26052],[-72,-48],[-34,-15],[-17,-8],[-15,-25],[-32,-55]],[[68940,25901],[-9,1],[-90,13],[-70,-8],[-69,-24],[-91,-51],[-47,-33],[-63,-32],[-74,-30],[-86,-8],[-72,10],[-74,30],[-125,45],[-60,16],[-63,4],[-80,-6],[-83,-28],[-58,-25],[-67,-42],[-7,-57],[33,-37],[87,-57],[75,-52],[46,-38],[44,-43],[21,-38],[13,-42],[-5,-41],[-31,-47],[-44,-29],[-64,-20],[-70,-9],[-90,6],[-76,18],[-78,40],[-53,29],[-57,33],[-47,27],[-61,37],[-47,33],[-32,40],[-22,42],[1,45],[22,44],[30,43],[44,51],[52,58],[28,41],[-2,48],[-38,39],[-52,31],[-55,28],[-60,20],[-75,8],[-84,-9],[-64,-16],[-62,-22],[-53,-35],[-31,-39],[-18,-45],[4,-50],[13,-73],[-2,-53],[-17,-50],[-30,-44],[-47,-32],[-54,-27],[-81,-5],[-63,10],[-62,31],[-50,34],[-29,50],[-8,57],[-8,47],[-15,47],[-19,42],[-42,32],[-22,10],[-33,15],[-60,13],[-85,0],[-74,-11],[-73,-21],[-64,-20],[-51,-27],[-52,-34],[-49,-31],[-56,-29],[-54,-24],[-69,-16],[-67,-1],[-73,20],[-70,34],[-50,37],[-59,69],[-34,48],[-55,39],[-50,25],[-78,19],[-72,11],[-62,1],[-62,-6],[-57,-14],[-60,-29],[-73,-30],[-62,-15],[-74,-6],[-61,-2],[-60,6],[-65,29],[-37,38],[-11,59],[-3,41],[-7,44],[-27,40],[-56,34],[-60,16],[-92,14],[-69,29],[-44,30],[-44,37],[-43,52],[-35,50],[-49,24],[-67,0],[-77,-10],[-145,-10],[-82,6],[-59,15],[-54,23],[-47,45],[-30,50],[-39,42],[-60,25],[-78,-3],[-66,-13],[-56,-27],[-73,-49],[-47,-27],[-81,-38],[-69,-24],[-79,-7],[-12,50],[-61,91],[37,60],[-6,32],[-67,56],[-400,179],[-19,3],[-500,187],[-66,28],[-71,30],[-57,19],[-85,29],[-59,15],[-82,23],[-54,32],[-26,37],[-18,44],[-36,45],[-39,32],[-68,64],[-27,41],[-17,40],[-68,30],[-79,12],[-74,-1],[-83,-17],[-65,-14],[-62,-5],[-64,-6],[-85,-6],[-88,-4],[-89,3],[-80,13],[-56,16],[-75,29],[-62,18],[-67,10],[-84,3],[-132,-17],[-81,-7],[-59,28],[-41,32],[-43,31],[-37,44],[-41,43],[-60,33],[-74,23],[-62,6],[-77,15],[-58,19],[-47,36],[-37,66],[-13,54],[-14,46],[-47,52],[-49,24],[-10,3],[-70,23],[-68,9],[-75,9],[-86,19],[-73,17],[-70,16],[-67,24],[-58,16],[-57,20],[-87,36],[-111,52],[-84,40],[-64,26],[-74,29],[-70,24],[-60,26],[-89,29],[-54,20],[-68,26],[-69,17],[-74,-1],[-81,0],[-70,13],[-44,14],[-11,3],[-63,30],[-96,41],[-111,33],[-93,-2],[-63,-30],[-29,-41],[-19,-45],[-18,-47],[-47,-49],[-48,-26],[-58,-21],[-121,-7],[-88,35],[-27,42],[19,50],[18,47],[-14,45],[-28,44],[-53,36],[-57,14],[-60,-3],[-50,-42],[-32,-47],[-28,-44],[-37,-38],[-60,-21],[-70,-20],[-58,17],[-28,41],[33,34],[-41,41],[-66,1],[-69,5],[-73,-6],[-52,-22],[-68,-10],[-65,-2],[-8,48],[-38,38],[48,33],[-53,23],[-54,21],[-76,-10],[-49,-33],[-47,-28],[-50,-25],[-62,10],[-59,16],[11,48],[17,41],[-28,41],[-35,35],[-73,4],[-76,-12],[-61,6],[-9,43],[14,49],[26,43],[12,62],[-13,41],[-37,56],[-16,53],[-6,51],[51,27],[33,34],[-1,45],[40,31],[0,49],[-52,27],[-51,33],[25,37],[-5,46],[10,45],[37,32],[-18,44],[-67,-1],[-42,30],[40,35],[61,22],[-8,44],[-32,37],[24,27],[14,15],[3,42],[-19,45],[-21,141],[-12,43],[-10,48],[-39,32],[-2,44],[4,43],[-21,46],[-35,44],[-30,39],[-60,19],[37,33],[-52,30],[-56,24],[-28,37],[-37,44],[-15,48],[42,30],[-33,34],[-6,48],[-23,43],[-51,28],[-14,41],[-51,24],[-25,43],[-66,22],[-27,38],[-53,32],[-63,-13],[-32,42],[-70,7],[-49,34],[23,42],[-64,23],[-17,43],[-41,30],[-27,37],[-92,40],[-212,92],[-202,87],[-169,73],[-199,86],[-406,178],[-92,40],[-95,41],[-93,39],[-61,26],[-89,40],[-67,29],[-115,51],[-92,40],[-76,34],[-161,69],[-54,24],[-72,32],[-72,32],[-94,40],[-60,26],[-94,42],[-228,101],[-165,73],[-128,54],[-70,30],[-155,67],[-11,5],[-67,28],[-67,29],[-89,38]],[[49695,33018],[-66,29],[-55,24],[-58,26],[-90,39],[-112,50],[-88,39],[-274,115],[-59,25],[-122,53],[-62,26],[-86,38],[-108,47],[-72,31],[-61,26],[-36,-35],[-59,-18],[-32,44],[-58,36],[-63,23],[-93,21],[-47,29],[-70,10],[-65,40],[-48,28],[-46,34],[-33,37],[-71,6],[-74,26],[-76,8],[-40,32],[-30,48],[-21,39],[-57,39],[-4,53],[-26,40],[-62,25],[-72,24],[-65,8],[-67,6],[-64,11],[-39,40],[-49,32],[-9,42],[-43,31],[-14,48],[-3,4],[-35,34],[-51,26],[-29,43],[-71,10],[-51,34],[-55,37],[-32,35],[-38,37],[-45,29],[-31,46],[-43,30],[-65,14],[-70,23],[-69,21],[-84,62],[-54,28],[-66,5],[-36,36],[-36,41],[-54,26],[-53,28],[-76,35],[-42,36],[-52,26],[-52,24],[-57,29],[-49,29],[-82,21],[-66,9],[-66,27],[-78,15],[-59,7],[-102,9],[-105,7],[-102,8],[-56,26],[-62,27],[-64,7],[-73,6],[-129,11],[-79,8],[-60,11],[-65,22],[-83,2],[-83,-4],[-394,71],[-116,-17],[-72,-2],[-136,11],[-130,-3],[-63,-4],[-22,-7],[-59,-18],[-60,-22],[-71,-18],[-66,19],[-59,-7],[-87,-26],[-57,-29],[-56,-15],[-62,8],[-65,-17],[-74,-8],[-61,-18],[-66,-18],[-90,-5],[-65,-10],[-70,-1],[-61,6],[-82,-14],[-66,-14],[-84,-6],[-69,-14],[-52,-22],[-53,-24],[-64,-12],[-72,-8],[-67,-14],[-61,-16],[-87,-15],[-68,3],[-74,6],[-66,13],[-75,-5],[-65,-3],[-73,7],[-78,-8],[-93,0],[-74,-5],[-74,-1],[-63,12],[-82,16],[-68,15],[-69,14],[-62,13],[-60,30],[-18,47],[-43,36],[-56,37],[-31,41],[-9,41],[-46,27],[-57,15],[-87,7],[-81,29],[-40,43],[-34,59],[-18,44],[-39,97],[-71,163],[-29,73],[-45,111],[-71,170],[-18,41],[-57,143],[-61,143],[-193,460],[-23,72],[-19,41],[-58,126],[-20,52],[-20,47],[-24,59],[-19,41],[-19,46],[-21,53],[-23,54],[-26,64],[-45,110],[-40,117],[-59,144],[-37,70],[-23,57],[-5,10],[-28,66],[-74,175],[-28,61],[-46,111],[-58,141],[-32,71],[-31,79],[-27,53],[-25,46],[-78,141],[-31,53],[-155,271],[-83,34],[-55,19],[-79,31],[-77,25],[-70,14],[-55,20],[-74,45],[-57,20],[-82,6],[-88,23],[-45,38],[-17,45],[-14,20],[-16,25],[-45,28],[-66,25],[-68,14],[-62,14],[-43,42],[-41,41],[-45,37],[-10,44],[-13,51],[0,51],[-22,50],[-4,52],[-48,33],[-40,40],[-26,49],[-37,68],[-40,49],[-59,21],[-46,44],[-48,49],[-45,30],[-59,18],[-58,31],[-25,45],[-58,27],[-42,33],[-80,16],[-67,-2],[-70,4],[-66,11],[-92,29],[-72,1],[-68,-1],[-77,-9],[-79,-1],[-110,32],[-50,27],[-47,24],[-4,2],[-61,26],[-78,15],[-63,48],[-65,32],[-70,3],[-53,39],[-36,45],[-35,38],[7,49],[57,23],[72,-3],[77,-6],[54,30],[-20,47],[12,51],[61,7],[82,4],[58,31],[86,41],[31,37],[37,42],[-24,41],[-44,31],[-83,17],[-83,9],[-71,0],[-57,2],[-25,0],[-85,-1],[-59,-15],[-60,-4],[-66,2],[-65,0],[-60,30],[-69,14],[-79,-7],[-81,1],[-44,-32],[-57,-17],[-78,0],[-65,15],[-64,12],[-83,-8],[-47,28],[-59,19],[-16,6],[-43,15],[-72,-7],[-76,-6],[-80,20],[-63,21],[-60,28],[-40,41],[-60,18],[-56,23],[-70,2],[-75,-2],[-68,1],[-61,23],[-48,32],[-37,44],[-22,56],[-20,50],[48,61],[39,38],[47,37],[28,44],[7,48],[-3,23],[-4,26],[-65,21],[-55,23],[-59,37],[-62,18],[40,37],[-23,39],[26,41],[-28,46],[-65,10],[-37,35],[4,45],[-2,45],[-22,42],[-42,31],[19,45],[88,-7],[69,18],[52,31],[-17,53],[14,46],[-58,13],[-29,44],[61,3],[58,-11],[33,48],[-33,35],[53,21],[70,19],[29,40],[53,20],[59,25],[27,48],[-63,-6],[-62,-1],[-61,14],[-3,47],[-43,35],[-64,30],[-4,41],[67,23],[-25,26],[-11,11],[-65,0],[-55,-33],[-62,28],[-27,52],[28,43],[-12,55],[-55,39],[-75,-6],[-23,-41],[-50,27],[-52,34],[-71,9],[-71,12],[-41,35],[-27,45],[-78,34],[-39,-35],[-1,-1],[-28,-40],[-145,6],[-33,43],[-25,-37],[-62,-13],[16,40],[28,39],[-46,40],[-52,30],[-30,10],[-42,14],[-70,11],[-72,-10],[-55,-34],[-71,-11],[-60,3],[-75,-9],[-46,-36],[-76,-14],[-57,44],[-62,8],[-114,-20],[-43,-50],[-14,-49],[-61,-30],[-146,14],[-141,-35]],[[30502,43770],[-5,2],[-166,62],[-117,44],[-1,0],[45,88],[18,80],[58,55],[46,48],[4,4],[33,35],[21,23],[110,119],[82,49],[122,62],[18,10],[170,112],[61,24],[72,28],[105,30],[10,3],[140,39],[138,35],[251,59],[60,11],[69,12],[55,10],[82,16],[178,33],[168,25],[86,8],[92,9],[83,8],[101,22],[117,25],[115,20],[60,10],[49,26],[53,28],[54,28],[17,9],[282,133],[8,3],[109,51],[45,17],[49,17],[96,35],[147,74],[96,48],[150,72],[215,111],[115,56],[103,51],[180,89],[46,23],[23,14],[69,41],[53,33],[87,37],[54,23],[124,66],[145,82],[56,23],[63,26],[73,29],[36,14],[85,34],[112,43],[98,30],[185,57],[71,22],[92,28],[86,26],[75,24],[80,28],[21,8],[104,33],[72,26],[83,29],[219,76],[155,51],[47,15],[30,10],[82,27],[192,63],[86,26],[61,19],[86,26],[65,18],[61,17],[56,14],[39,10],[94,22],[86,17],[115,22],[43,7],[85,11],[32,3],[125,8],[90,-4],[88,-11],[51,-7],[102,-13],[83,-8],[25,-1],[27,-1],[96,-1],[24,-1],[8,0],[104,1],[66,7],[108,12],[83,14],[48,9],[36,8],[86,19],[153,32],[6,2],[92,18],[111,21],[69,14],[103,21],[192,34],[85,16],[80,17],[88,19],[84,19],[310,76],[142,33],[65,12],[77,13],[2,0],[68,12],[34,5],[102,14],[104,9],[33,4],[20,1],[29,3],[122,12],[61,6],[149,22],[38,11],[31,10],[2,1],[32,11],[81,43],[23,14],[41,45],[30,31],[43,88],[3,6],[17,30],[56,50],[2,2],[34,25],[8,6],[73,50],[85,46],[64,22],[24,7],[107,30],[11,2],[67,17],[68,16],[29,6],[23,6],[116,30],[76,21],[50,14],[61,17],[76,29],[48,20],[59,25],[69,39],[20,14],[140,108],[41,47],[2,3],[24,45],[1,1],[3,11],[27,85],[14,48],[51,115],[77,106],[50,68],[9,13],[81,99],[22,23],[89,95],[62,60],[72,49],[44,23],[68,29],[2,1],[103,28],[62,10],[142,10],[101,2],[26,-1],[17,-1],[46,-4],[80,-14],[124,-24],[21,-4],[51,-10],[73,-17],[47,-11],[121,-31],[26,-7],[118,-28],[23,-5],[108,-22],[153,-30],[41,-4],[174,-23],[85,-11],[58,-8],[94,-13],[26,-5],[183,-22],[81,-6],[32,0],[116,0],[57,9],[53,12],[29,9],[93,34],[41,17],[74,30],[104,50],[51,23],[14,6],[49,21],[219,88],[146,62],[212,81],[131,48],[58,20],[64,13],[100,28],[79,17],[75,12],[31,5],[61,7],[20,3],[22,1],[110,6],[127,-3],[2,-1],[139,-8],[132,-11],[3,0],[11,-2],[96,-1],[17,0],[11,1],[95,10],[3,0],[36,8],[19,5],[14,3],[31,10],[11,4],[59,25],[7,3],[31,15],[37,18],[2,1],[27,13],[17,8],[20,10],[73,35],[16,9],[50,27],[59,32],[16,7],[99,50],[3,2],[21,10],[72,19],[72,32],[59,23],[60,26],[61,36],[70,31],[56,45],[12,10],[1,4]],[[73237,23972],[153,-18],[167,-55],[-1,-19],[-1,-12],[-112,-25],[-213,-6],[-42,-1],[-39,-10],[-241,105],[51,38],[11,0],[156,-6],[64,15],[47,-6]],[[73821,24257],[-164,-133],[-1,0],[-10,-21],[-27,-6],[-80,-16],[-1,1],[-8,0],[-207,6],[-283,32],[-38,171],[-15,105],[-21,48],[-17,39],[106,60],[217,31],[147,-82],[152,-56],[264,-98],[-2,-12],[-12,-69]],[[77627,25761],[-70,-173],[-219,2],[-63,-24],[-25,-9],[-33,3],[-87,61],[6,81],[4,57],[16,6],[97,-76],[118,58],[63,127],[8,52],[10,66],[8,9],[3,5],[-11,128],[131,0],[42,-44],[-26,-38],[-4,-6],[51,-71],[-19,-214]],[[75780,26158],[24,-164],[-134,21],[12,-47],[18,-78],[132,-126],[153,-86],[150,-74],[232,-64],[90,-80],[-56,-89],[-119,9],[-128,39],[-133,-58],[-254,-7],[-193,55],[-113,41],[-71,36],[-76,38],[11,55],[13,60],[51,48],[76,72],[41,65],[22,35],[-87,140],[82,64],[55,43],[42,11],[160,41]],[[76662,25638],[-80,-46],[-135,50],[-183,68],[-30,35],[-97,86],[-136,145],[6,162],[150,61],[3,1],[136,10],[-6,-45],[-9,-74],[29,-138],[86,-51],[63,-37],[120,-107],[0,-1],[32,-16],[15,-32],[36,-71]],[[76958,25812],[-50,-38],[-87,37],[-79,33],[-141,89],[-72,62],[-47,41],[30,104],[19,30],[26,41],[104,38],[119,-45],[115,-42],[140,-16],[72,-79],[-10,-149],[-139,-106]],[[82304,29036],[-188,-32],[14,33],[29,68],[25,135],[149,19],[22,3],[156,4],[7,-103],[-214,-127]],[[82205,30224],[87,-45],[193,26],[31,-3],[121,-12],[109,-35],[59,-85],[-16,-34],[-35,-75],[-63,-1],[-41,0],[-22,-37],[-45,-72],[41,-97],[-40,-122],[-226,-81],[-197,26],[-155,1],[-37,1],[12,101],[64,93],[89,-49],[114,44],[20,8],[-76,55],[-170,38],[12,47],[14,53],[116,88],[-129,107],[170,60]],[[85244,32100],[-4,-42],[-213,2],[-183,-4],[42,100],[137,35],[227,-9],[-6,-82]],[[85714,34261],[-147,-16],[-113,31],[-17,5],[1,37],[3,85],[98,100],[139,22],[146,14],[150,-34],[28,-9],[93,-31],[-3,-23],[-11,-73],[-113,-19],[-254,-89]],[[86991,34165],[46,-61],[19,-26],[10,-16],[37,-60],[56,-94],[16,-26],[7,3],[165,74],[-1,208],[-7,3],[110,102],[243,135],[123,69],[567,-299],[-1273,-900],[-51,-80],[-88,-86],[-114,-138],[-51,-67],[-87,-104],[-107,-140],[-197,-298],[-78,-112],[-82,-115],[-93,-124],[-102,-135],[-60,-76],[-93,-91],[-76,-93],[-119,-131],[-152,-155],[-106,-105],[-91,-84],[-95,-82],[-113,-119],[-131,-125],[-167,-143],[-161,-150],[-71,-60],[-105,-100],[-219,-191],[-159,-123],[-149,-136],[-108,-82],[-86,-82],[-172,-131],[-107,-90],[-125,-116],[-87,-79],[-112,-109],[-102,-89],[-104,-94],[-64,-71],[-116,-99],[-90,-74],[-92,-80],[-105,-107],[-125,-116],[-130,-139],[-121,-131],[-130,-134],[-172,-168],[-117,-112],[-127,-113],[-141,-140],[-154,-129],[-102,-80],[-93,-97],[-129,-147],[-108,-95],[-168,-160],[-102,-104],[-96,-108],[-105,-94],[-88,-76],[-92,-115],[-131,-135],[-92,-86],[-131,-106],[-125,-108],[-96,-77],[-123,-91],[-118,-57],[-193,-101],[-136,-94],[-86,-71],[-148,-125],[-151,-117],[-87,-90],[-78,-72],[-90,-112],[-152,-92],[-193,-73],[-107,-85],[-87,-85],[-85,-69],[-101,-93],[-139,-128],[-48,-45],[-473,-256],[-143,-110],[-343,-216],[-180,-39],[-432,-6],[-57,141],[576,278],[471,257],[180,32],[106,38],[118,91],[23,96],[115,96],[137,34],[142,67],[96,103],[162,82],[152,63],[137,140],[109,129],[-16,113],[89,99],[150,-55],[45,133],[44,195],[7,17],[31,86],[40,58],[35,51],[124,76],[164,-1],[-29,-24],[-94,-79],[124,-38],[59,26],[63,28],[109,94],[-81,120],[79,120],[181,55],[120,49],[87,75],[128,74],[76,129],[249,105],[118,136],[-9,136],[8,111],[121,58],[163,65],[152,68],[132,84],[100,51],[51,96],[139,114],[-27,88],[219,131],[127,90],[93,87],[-28,91],[109,81],[153,31],[118,2],[71,101],[35,99],[47,115],[102,108],[209,71],[49,99],[136,98],[119,80],[110,142],[-39,54],[-95,41],[38,35],[171,-30],[29,64],[-17,113],[-158,13],[9,64],[110,38],[10,12],[64,108],[19,98],[50,45],[53,48],[194,75],[166,29],[-45,55],[-114,77],[0,43],[29,30],[103,2],[117,-16],[105,78],[166,66],[169,62],[140,47],[133,47],[81,62],[82,63],[96,42],[135,100],[193,163],[124,153],[147,94],[-98,75],[149,9],[121,20],[109,106],[83,116],[184,133],[-232,6],[-4,153],[146,79],[197,-1],[120,89],[110,89],[-135,72],[47,64],[151,66],[128,122],[76,119],[54,88],[-7,82],[-164,-5],[-122,107],[37,88],[-1,4],[-12,142],[128,95],[58,2],[99,3],[118,16],[175,3],[53,28],[36,310],[157,40],[102,69],[82,110],[88,102],[-145,61],[-187,-48],[-125,47],[-126,17],[-19,-21],[-12,-3],[-193,-55],[-104,-13],[-39,-5],[-39,18],[-73,33],[-145,73],[-148,11],[-17,1],[-123,43],[90,70],[34,27],[130,16],[170,79],[97,35],[75,27],[219,-35],[50,7],[187,25],[78,15],[-84,594],[209,20],[139,-203],[-8,-126],[-20,-321]],[[87596,35364],[37,-46],[-89,-18],[-241,18],[-91,7],[-193,-6],[-188,173],[-11,295],[219,7],[189,-120],[244,-156],[124,-154]],[[88305,49252],[-83,-7],[-118,-10],[0,-137],[55,-127],[107,-99],[-102,-72],[120,-76],[-40,-128],[49,-132],[-131,-75],[298,12],[-27,-92],[154,-5],[117,-43],[159,-47],[30,-47],[39,-62],[89,-78],[195,-74],[118,-63],[115,-47],[160,-35],[181,21],[255,-30],[11,4],[237,77],[133,29],[194,65],[136,109],[135,102],[147,113],[15,0],[102,0],[226,66],[317,0],[7,-3],[141,-39],[7,3],[-25,67],[64,7],[217,-47],[81,-27],[-60,-49],[-74,-116],[-87,-148],[-52,-100],[-97,-231],[-70,-170],[-39,-112],[-30,-102],[-67,-205],[-49,-165],[-63,-207],[-27,-93],[-26,-86],[-52,-118],[-23,-104],[-39,-119],[-35,-125],[-32,-92],[-37,-119],[-39,-107],[-38,-89],[-46,-117],[-55,-130],[-62,-156],[-44,-141],[-41,-101],[-28,-81],[-41,-101],[-40,-112],[-73,-123],[-46,-148],[-53,-126],[-15,-71],[-21,-87],[-6,-21],[-21,-71],[-49,-115],[-36,-107],[-59,-161],[-42,-120],[-57,-156],[-43,-103],[-52,-106],[-33,-154],[-37,-140],[-32,-112],[-23,-134],[-18,-128],[-16,-97],[-12,-99],[-19,-90],[-20,-80],[-16,-91],[-10,-103],[-25,-94],[5,-119],[-92,-106],[-34,-139],[-58,-161],[-60,-171],[-50,-124],[-34,-97],[-23,-77],[-38,-111],[-43,-130],[-40,-104],[-31,-84],[-30,-143],[-9,-92],[-217,-1043],[-15,-129],[-7,-105],[-30,-79],[-25,-119],[-12,-110],[-24,-230],[-32,-152],[-36,-132],[-22,-157],[-32,-84],[-37,-118],[-16,-271],[-24,-94],[-28,-144],[-27,-95],[-16,-163],[-21,-175],[-24,-148],[-37,-191],[-14,-125],[-30,-124],[-27,-101],[-38,-207],[2,-102],[-61,-139],[-31,-140],[-19,-116],[-18,-78],[-21,-124],[-62,-178],[-36,-143],[-118,-336],[-95,-88],[-210,41],[-38,145],[-12,44],[-89,118],[-14,18],[-167,-8],[-275,37],[-282,119],[-79,136],[7,53],[12,102],[50,-13],[48,-12],[182,-7],[201,-8],[41,10],[60,15],[82,16],[14,-1],[57,-5],[153,-59],[229,-66],[25,18],[76,53],[24,138],[-51,99],[-174,91],[-38,51],[-45,60],[-49,81],[1,55],[1,33],[43,53],[56,67],[23,13],[66,38],[134,118],[81,137],[-48,142],[79,125],[10,20],[41,81],[2,6],[40,173],[52,148],[45,116],[53,130],[19,141],[-41,157],[15,131],[72,146],[40,193],[69,111],[-48,121],[58,109],[3,119],[-18,119],[86,118],[10,153],[-6,68],[-4,98],[-16,128],[101,127],[72,97],[-1,99],[-8,94],[-74,98],[-114,98],[-86,85],[-5,67],[60,90],[172,82],[63,108],[-127,72],[10,78],[10,94],[52,101],[6,74],[71,78],[114,80],[81,127],[94,179],[-4,106],[-15,78],[-306,14],[34,267],[282,5],[-97,72],[-149,140],[-98,-17],[-109,-29],[-153,48],[-120,71],[-193,44],[220,10],[170,6],[115,-15],[153,-99],[200,49],[64,127],[-8,67],[-144,62],[7,100],[-13,93],[-11,124],[95,-1],[85,3],[14,93],[-140,71],[-126,37],[-81,99],[127,53],[120,49],[125,38],[180,7],[109,99],[75,107],[7,73],[-185,110],[85,298],[11,282],[0,170],[-68,-75],[-132,-18],[30,134],[-176,77],[-42,69],[-10,17],[98,-17],[55,-9],[118,-4],[188,-15],[22,0],[15,28],[27,53],[27,-5],[147,28],[12,43],[17,77],[246,69],[74,27],[144,82],[-5,85],[-210,-3],[-102,85],[193,154],[-125,286],[430,180],[14,23],[157,31],[71,74],[46,109],[1,126],[57,145],[53,91],[50,127],[64,113],[27,114],[-38,100],[-107,133],[151,39],[10,103],[26,97],[91,168],[-78,6],[-102,-42],[-140,-10],[-24,-2],[102,-73],[-317,-85],[-498,-39],[-227,35],[-67,-17],[-15,-19],[94,-7],[283,-38],[4,-109],[-197,-27],[-436,70],[-158,-16],[-68,-57],[-15,0],[-210,-15],[-152,16],[-132,-6],[-135,2],[-184,5],[-164,0],[-158,-11],[-178,-7],[-163,-37],[-176,7],[-116,-44],[-113,73],[-111,13],[-177,58],[-218,114],[-180,81],[-33,-63],[-25,-48],[34,-129],[-37,-63],[-118,-86],[203,10],[152,-31],[161,-58],[215,-74],[192,9],[246,-49],[171,-16],[103,39],[131,80],[199,-58],[168,-56],[124,-31],[159,-17],[198,63],[255,102],[144,3],[96,-23],[11,-3],[146,24],[61,10],[68,0],[55,0],[109,-23],[150,-10],[196,-16],[121,11],[132,-14],[48,-5],[-72,-89],[-113,-48],[16,-44],[15,-38],[0,-5],[0,-3],[97,-95],[0,-9],[-7,-102],[-148,-114],[-274,-55],[-115,-40],[-121,-81],[-1,-1],[-112,-58],[-106,-5],[-40,-3],[-170,-10],[-173,-37],[-84,-97],[-143,-63],[-1,0],[38,-111],[131,59],[165,-67],[-95,-127],[-153,-73],[-210,-109],[-67,-108],[-172,10],[-194,32],[-183,0],[-187,16],[-155,51],[-211,42],[-144,119],[-101,111],[27,128],[-127,8],[-146,-20],[-134,-32],[-175,18],[-175,-26],[-142,9],[-95,45],[-158,154],[-100,-27],[-116,85],[-76,-23],[243,-166],[119,-143],[-31,-133],[149,-28],[152,-18],[189,-25],[154,-7],[70,-103],[-22,-98],[236,-8],[42,30],[158,16],[23,-92],[-63,-107],[-102,-78],[-11,-94],[-137,-63],[-82,-9],[-20,223],[-72,-42],[-55,-199],[-207,37],[-130,-55],[-181,-2],[-120,-44],[-146,30],[-312,9],[-186,57],[16,-103],[2,-3],[53,-72],[-114,3],[-143,44],[-177,-43],[-142,-30],[-96,-69],[-103,-47],[193,-58],[195,12],[158,-90],[133,-82],[31,-19],[143,19],[158,-5],[198,-80],[-79,-76],[-22,-67],[117,11],[29,15],[81,41],[167,61],[151,85],[28,15],[165,71],[156,95],[20,12],[82,-80],[160,-19],[-51,-132],[-95,-58],[-26,-67],[-15,-94],[-114,-36],[-161,-21],[-139,-37],[53,-32],[29,-18],[112,-13],[114,-45],[100,-61],[142,-48],[181,-14],[-21,-121],[-32,-51],[-21,-32],[-67,-105],[-20,-79],[-173,-73],[-202,-113],[135,-88],[89,-71],[111,27],[61,126],[106,-147],[11,-91],[-113,-68],[-36,-85],[-111,-99],[-8,-4],[-136,-84],[-3,-84],[-139,-13],[-172,19],[-166,-51],[-146,-9],[-115,-11],[-146,-15],[-175,-5],[-73,-105],[-56,-64],[-142,-61],[-216,53],[-148,8],[-103,40],[-176,20],[-375,90],[-75,149],[-172,54],[-48,-91],[-110,77],[-177,71],[-156,14],[-181,-83],[-201,51],[-157,-6],[-127,-90],[-106,4],[-206,2],[-179,50],[-188,75],[-154,11],[-192,-7],[-30,-96],[97,-44],[110,51],[120,-43],[94,-112],[159,-75],[155,19],[157,-91],[116,-59],[191,40],[120,68],[152,-16],[234,-14],[161,-53],[167,-46],[145,-16],[227,-11],[176,-94],[311,-57],[159,6],[68,-92],[103,-85],[147,28],[153,-23],[144,-45],[196,-22],[159,37],[233,7],[175,72],[163,-4],[137,-47],[2,0],[12,25],[24,49],[71,0],[53,1],[69,8],[64,1],[48,2],[220,2],[1,0],[8,0],[142,-25],[-18,-184],[-1,-7],[0,-1],[-112,-230],[-461,-243],[-306,-105],[-3,0],[-4,1],[-6,2],[-186,38],[-55,-57],[39,-86],[-104,-129],[-1,-1],[-288,-217],[-47,-92],[-66,-129],[-141,-275],[-103,-203],[19,-150],[20,-159],[229,-78],[80,-109],[-314,0],[-71,5],[-59,-39],[-168,-16],[-205,-13],[-292,11],[-204,18],[-77,-1],[-146,-1],[-89,-108],[168,-10],[207,-35],[167,19],[180,-4],[208,-31],[114,-49],[134,65],[93,31],[175,-35],[151,-62],[42,-109],[-121,-26],[-79,-48],[88,-43],[182,-34],[-31,-108],[-189,-78],[-131,68],[-210,14],[-1,0],[33,-139],[-80,-77],[-45,-44],[-3,-67],[-99,-62],[-190,-28],[-197,-31],[-4,-1],[1,0],[89,-47],[151,-72],[-85,-84],[29,-10],[109,-38],[-125,-120],[-101,-48],[-123,-37],[-211,-65],[-122,-78],[-144,-28],[-133,-86],[-82,-68],[-120,-41],[-100,-11],[-125,-15],[175,-43],[86,-59],[123,-35],[-65,-154],[-144,-102],[-91,-64],[-8,-6],[-27,-10],[-97,-34],[-108,-63],[-60,-35],[5,-13],[33,-83],[6,-15],[-99,-99],[-226,-132],[-152,-81],[-194,-149],[-26,-31],[-88,-102],[6,-169],[-48,-98],[-48,-59],[-44,-79],[-47,-84],[-74,-98],[-8,-118],[58,-109],[-62,-110],[-118,-83],[-140,-113],[-87,-126],[1,-93],[67,-93],[29,-98],[1,-3],[25,-116],[2,-8],[17,-82],[-57,-46],[-51,-40],[-154,-115],[-170,-93],[150,-62],[44,-17],[70,-29],[17,-7],[12,-2],[12,-2],[64,-11],[152,-26],[-26,-81],[117,-8],[59,133],[119,-50],[197,16],[102,-11],[122,-14],[119,-24],[143,-9],[140,-26],[116,-12],[161,-27],[139,-43],[-4,-81],[-187,37],[-86,-36],[-52,-66],[24,-151],[8,-3],[135,-72],[-115,-93],[193,-114],[-39,-124],[-104,60],[-97,39],[-104,-62],[-194,-8],[-173,-7],[-11,-1],[-30,-3],[-130,-17],[-1,0],[1,0],[45,-31],[87,-59],[2,-1],[52,-24],[77,-36],[121,-15],[198,-4],[53,-128],[204,8],[144,7],[170,25],[-8,-102],[-120,-57],[-147,-31],[-121,-60],[-71,-36],[291,-4],[221,-32],[-11,-32],[-20,-63],[-126,8],[-203,3],[-164,-12],[-100,-13],[-24,-3],[-44,-8],[-75,-14],[-154,55],[-143,47],[-23,7],[-45,-16],[-171,-60],[47,-102],[25,-54],[153,65],[214,-116],[-214,-56],[-159,-5],[-154,-28],[-104,-19],[-116,-104],[167,-81],[4,-20],[12,-67],[-96,-64],[-88,-40],[-18,-8],[-123,25],[-83,-105],[-126,-52],[-10,94],[-2,19],[-176,-17],[-175,37],[-89,-60],[-47,-87],[66,-122],[121,-25],[181,-15],[209,43],[151,-51],[-62,-123],[-114,-8],[-27,8],[-107,33],[-181,-20],[-106,-25],[-45,-11],[-51,-14],[-62,-1],[-92,-1],[-88,7],[-44,4],[-141,-61],[-19,-7],[-161,-58],[-156,-60],[-57,-11],[-53,-10],[-4,-1],[-89,-17],[101,-102],[-14,-12],[-108,-91],[-54,-99],[9,-79],[-80,-66],[-164,-34],[138,-47],[101,-101],[122,-35],[74,-95],[-43,-119],[-188,-61],[-16,-6],[-1,-28],[-1,-70],[-105,-35],[-202,50],[-172,67],[-17,-79],[-110,15],[-112,17],[-52,21],[-130,52],[-156,47],[-68,-31],[-45,-20],[-69,-73],[-28,-30],[-143,-16],[-33,-4],[-120,67],[-63,-81],[-225,5],[-218,46],[4,-11],[16,-48],[17,-47],[55,-134],[13,-32],[-29,-172],[-32,-102],[-124,32],[-136,-88],[38,-96],[117,-78],[-74,-146],[-203,1],[-100,88],[-40,17],[-129,54],[50,-165],[-28,-86],[-90,-72],[-154,-38],[-118,-30],[-163,46],[21,-49],[12,-29],[127,-26],[159,-8],[177,-53],[75,-159],[-9,-51],[-25,-138],[-108,-45],[-169,-17],[-38,6],[-148,25],[-95,50],[-30,16],[-40,104],[-99,24],[-66,16],[-144,42],[-153,17],[-52,68],[-161,26],[-55,-116],[-216,-7],[-134,-28],[-107,-49],[151,-122],[-15,-57],[-24,-94],[-29,7],[-155,38],[-162,56],[-179,16],[-38,3],[-129,-55],[-59,-53],[-17,-15],[-116,-31],[-142,-45],[-11,-73],[-6,-38],[-223,-17],[4,-15],[17,-63],[-105,16],[-154,-62],[5,-139],[-17,-154],[-170,-57],[-202,-11],[-123,-28],[-13,-16],[-62,-72],[-64,-126],[20,-151],[-151,-4],[-170,25],[-110,59],[-40,66],[-180,10],[-135,-95],[17,-45],[14,-38],[-59,-86],[0,-1],[33,-108],[25,-93],[-175,-59],[-56,-66],[34,-19],[113,-63],[194,-1],[239,-69],[21,-14],[133,-89],[85,-80],[6,-15],[33,-86],[81,-39],[27,-14],[48,-6],[140,-17],[142,4],[109,-27],[-10,-152],[74,-109],[111,-27],[132,-33],[266,-104],[193,-55],[189,-36],[145,-18],[100,-30],[16,-37],[34,-77],[38,-120],[-1,-105],[0,-25],[-2,-40],[-4,-64],[-4,-55],[-12,-113],[-3,-28],[-3,-10],[-32,-120],[-6,-21],[-60,-116],[-156,-8],[-122,7],[-63,3],[82,-62],[59,-45],[-94,-70],[-43,-32],[-11,-23],[-32,-70],[-31,-15],[-84,-41],[-134,-20],[-93,-13],[-10,-1],[-7,-1],[-205,-10],[-178,-23],[-219,14],[-55,12],[-94,20],[-19,4],[-156,7],[-110,30],[-170,83],[-104,93],[-53,86],[5,33],[11,64],[12,21],[42,71],[29,39],[31,41],[-118,114],[155,64],[173,-25],[115,56],[-49,69],[-14,21],[63,54],[38,88],[-5,1],[-6,2],[-140,-67],[-54,-26],[-47,84],[-16,151],[75,43],[54,31],[-10,27],[-124,44],[-44,16],[-126,60],[125,88],[-19,9],[-224,-17],[-32,-103],[-144,-74],[-205,77],[-182,55],[-131,63],[-148,18],[-156,54],[-232,8],[-136,-19],[-157,11],[-101,-4],[-139,36],[-24,-9],[-73,-25],[-99,-5],[-33,-1],[-35,-8],[-83,-18],[-164,7],[-219,13],[-3,-1],[-99,-53],[-114,-78],[-163,-62],[-163,-21],[-61,54],[-110,-61],[-18,-3],[-110,-14],[-129,1],[-80,0],[-57,109],[-110,135],[-2,5],[-23,83],[-6,22],[93,63],[-32,24],[-89,67],[-157,-36],[-229,15],[-3,16],[-21,104],[76,-6],[114,-9],[75,88],[-103,45],[-37,16],[-262,50],[-135,-67],[-90,-130],[-152,-91],[-25,147],[11,107],[-104,70],[19,98]],[[27444,42530],[-139,-3],[-126,11],[-390,74],[378,139],[138,42],[410,128],[441,66],[234,-26],[-307,-116],[-639,-315]],[[49695,33018],[-74,-46],[-97,-59],[-177,-109],[-227,-135],[-6,-3],[-64,-38],[-112,-65],[-19,-11],[-103,-59],[-200,-116],[-825,-481],[-144,-84],[-59,-34],[-54,-32],[-340,-199],[-118,-70],[-83,-49],[-11,-6],[-489,-288],[-118,-69],[-288,-171],[-275,-163],[-160,-94],[-501,-295],[-59,-34],[-55,-33],[-433,-254],[-118,-69],[-209,-123],[-92,-54],[-22,-13],[-25,-15],[-47,-28],[-357,-211],[-101,-59],[-119,-70],[-119,-70],[-298,-175],[-53,-31],[-86,-50],[-26,-16],[-59,-34],[-72,-43],[-80,-47],[-11,-6],[-95,-56],[-116,-68],[-144,-86],[-36,-20],[-36,-21],[-215,-130],[-127,-75],[-262,-155],[-127,-77],[-127,-77],[-78,-44],[-154,-94]],[[41193,28004],[-71,10],[-28,39],[-63,21],[-61,10],[-55,18],[-37,34],[-15,44],[-42,34],[-57,25],[-58,17],[-21,10],[-29,16],[-58,17],[-56,12],[-5,1],[-69,9],[-50,25],[-43,29],[-47,30],[-3,9],[-10,33],[-16,32],[-3,8],[-38,34],[-24,43],[28,44],[34,36],[-6,14],[-12,28],[-57,27],[-41,5],[-19,3],[-54,19],[-13,12],[-24,22],[-19,0],[-43,0],[12,43],[-56,27],[-64,9],[-56,19],[-52,22],[-34,36],[-64,24],[-30,36],[-16,42],[-54,30],[-55,25],[-20,46],[-10,47],[-41,36],[-1,46],[-10,44],[-65,45],[21,47],[-28,40],[-10,56],[15,46],[-60,25],[-18,40],[-9,43],[24,40],[-28,44],[-20,45],[-53,23],[-38,44],[35,37],[57,22],[-3,45],[19,43],[-49,33],[37,46],[4,42],[-7,43],[-8,48],[-53,33],[3,50],[57,33],[-18,44],[-51,24],[-34,39],[-34,45],[-59,20],[-61,16],[-29,42],[-61,13],[-38,36],[-12,46],[-51,29],[-55,40],[-3,42],[-24,43],[-35,43],[3,46],[-24,41],[-64,6],[-78,1],[-55,34],[-35,37],[-34,37],[-40,34],[-60,22],[-60,21],[-61,13],[-28,41],[10,42],[-8,43],[-54,22],[-68,19],[-55,24],[-17,67],[-55,21],[-66,9],[-59,21],[-41,41],[-47,36],[-98,46],[-98,19],[-55,30],[-59,32],[-57,15],[-76,20],[-60,10],[-57,23],[-63,-12],[-76,16],[-63,8],[-45,-11],[-14,-4],[-57,20],[-4,1],[-3,0],[-60,-3],[-66,2],[-66,10],[-55,23],[-9,9],[-26,26],[-1,0],[-58,13],[-70,20],[-59,17],[-50,31],[-56,26],[-61,-9],[-63,0],[-59,10],[-62,-7],[-65,-7],[-69,6],[-82,6],[-65,5],[-9,-3],[-13,-4],[-42,-14],[-71,-8],[-67,1],[-66,-1],[-60,10],[-60,10],[-70,13],[-9,1],[-58,7],[-65,5],[-83,0],[-58,21],[-50,24],[-42,6],[-29,4],[-63,19],[-74,6],[-64,16],[-64,20],[-76,21],[-72,27],[-37,40],[-74,24],[-67,13],[-56,16],[-59,21],[-36,37],[-45,29],[33,37],[1,2],[-2,44],[-10,42],[-3,60],[-61,7],[-52,27],[-56,16],[-54,28],[-95,33],[-368,122],[-112,38],[-175,57],[-78,25],[-199,65],[-420,136],[-96,31],[21,40],[45,32],[37,38],[33,39],[36,37],[41,32],[-3,46],[-26,43],[-64,29],[-6,41],[-39,32],[6,43],[16,42],[24,44],[32,44],[-18,47],[-45,33],[-64,31],[-57,27],[-52,22],[-71,27],[-53,20],[-66,6],[-42,33],[-67,15],[-40,34],[-41,36],[-52,22],[-55,21],[-76,36],[-38,42],[-7,7],[-8,13],[-21,32],[-51,39],[-71,25],[-61,31],[-40,39],[-65,13],[-77,18],[-8,2],[-72,26],[-10,41],[4,12],[10,33],[9,48],[-56,29],[-34,42],[-35,39],[-44,34],[-47,30],[-59,25],[-34,35],[-38,21],[-17,9],[-20,40],[-25,47],[-6,43],[14,47],[-35,36],[19,44],[49,53],[-34,39],[-36,36],[-138,24],[-74,0],[-64,109],[-64,-24],[-189,-1],[-72,15],[-62,18],[-67,9],[-101,6],[19,26],[34,2],[25,28],[-46,14],[-69,-46],[-125,-83],[47,-22],[-214,-58],[-148,-41],[20,-64],[111,-90],[-182,-29],[21,-47],[-124,-16],[-214,287],[-176,-35],[-377,-19],[6,11],[26,61],[28,61],[38,84],[24,50],[38,47],[47,58],[95,103],[66,-27],[86,-38],[169,72],[11,-5],[220,97],[-12,13],[-44,39],[-19,43],[-155,71],[48,75],[136,114],[31,39],[-69,24],[-38,33],[-63,26],[-69,10],[-44,31],[-57,-12],[-61,9],[-73,11],[1,42],[13,41],[-51,31],[-4,1],[-52,16],[-3,17],[-3,25],[-65,15],[-43,33],[-37,37],[0,46],[-65,-10],[-86,8],[-59,54],[62,16],[73,17],[-21,41],[-40,38],[-12,47],[-5,47],[-36,43],[39,48],[56,24],[69,13],[-18,41],[9,44],[57,30],[36,18],[31,14],[52,32],[-44,30],[-24,48],[-51,41],[3,46],[43,29],[55,22],[-2,43],[-67,16],[-47,40],[19,47],[-50,29],[-40,32],[-49,35],[55,28],[69,21],[68,23],[-1,13],[-3,29],[23,50],[-42,35],[-50,42],[-61,7],[-93,4],[-89,52],[-21,41],[-42,32],[-74,10],[-135,5],[6,52],[-21,94],[-48,29],[-80,28],[-78,16],[-30,8],[-39,10],[-81,34],[-5,2],[-94,36],[-58,29],[-64,1],[23,-47],[15,-47],[-68,16],[-54,26],[20,55],[-46,30],[-19,40],[24,50],[-38,37],[-11,41],[62,17],[19,40],[-66,21],[-77,14],[-76,-15],[-117,-64],[61,-20],[41,-45],[-60,0],[-76,-6],[-73,-8],[-73,-4],[-77,15],[-42,34],[-38,45],[-3,3],[25,49],[87,-25],[15,-4],[18,13],[28,18],[-126,76],[-185,111],[-31,-47],[30,-59],[47,-70],[-97,-19],[-46,64],[-138,80],[-24,79],[-12,41],[-32,44],[-84,64],[60,38],[157,-21],[-19,42],[-67,27],[-67,9],[-43,2],[-24,1],[-63,2],[-54,20],[-27,13],[-298,146],[108,36],[84,19],[69,57],[-51,43],[-66,43],[-173,43]],[[25800,39387],[-123,115],[132,97],[137,45],[-29,123],[90,123],[69,65],[116,173],[35,87],[4,10],[5,96],[43,115],[44,73],[-60,135],[-108,131],[-55,112],[-74,113],[148,35],[-267,115],[-37,121],[-6,135],[-22,122],[9,132],[-29,81],[23,166],[-18,115],[97,126],[17,24],[57,82],[56,86],[129,50],[140,62],[161,-8],[154,5],[61,-74],[107,45],[182,-30],[30,-66],[70,-75],[46,-103],[81,128],[328,67],[160,123],[197,106],[91,84],[165,63],[159,2],[263,97],[229,9],[134,30],[148,-4],[208,-109],[314,115],[-302,177],[-81,97],[298,75],[216,79],[67,55],[62,49],[164,48],[14,11],[341,264],[76,39],[36,19]],[[13247,37381],[-163,-14],[-182,17],[23,28],[66,79],[171,74],[210,21],[232,-23],[0,-29],[-2,-49],[-180,-80],[-175,-24]],[[41193,28004],[-150,-89],[-46,-28],[-100,-59],[-21,-12],[-37,-22],[-52,-31],[-52,-30],[-19,-12],[-46,-26],[-78,-46],[-80,-47],[-283,-166],[-193,-113],[-71,-41],[-35,-21],[-67,-39],[-202,-118],[-66,-39],[-70,-41],[-47,-27],[-58,-34],[-103,-61],[-129,-79],[-63,-38],[-345,-201],[-267,-158],[-78,-47],[-99,-58],[-98,-58],[-53,-31],[-49,-28],[-48,-29],[-356,-206],[-111,-66],[-51,-29],[-291,-169],[-83,-49],[-50,-29],[-367,-216],[-152,-90],[-117,-70],[-74,-45],[-22,-13],[-392,-235],[-94,-56],[-62,-38],[-194,-115],[-95,-57],[-164,-98],[-91,-55],[-144,-87],[-144,-87],[-63,-38],[-97,-57],[-84,-51],[-116,-69]],[[34674,24150],[-280,136],[-61,30],[-86,41],[-202,98],[-51,24],[-64,32],[-75,36],[-50,24],[-50,24],[-52,24],[-66,32],[-94,44],[-110,53],[-95,44],[-115,56],[-60,29],[-219,103],[-190,93],[-102,51],[-84,39],[-92,44],[-80,38],[-35,17],[-98,48],[-55,26],[-87,41],[-114,55],[-54,26],[-69,33],[-178,85],[-193,93],[-71,34],[-196,93],[-105,50],[-144,70],[-65,31],[-91,44],[-76,36],[-57,27],[-144,68],[-87,41],[-73,34],[-84,39],[-65,31],[-72,35],[-3,1],[-58,28],[-80,38]],[[30042,26369],[-52,26],[-76,37],[-8,4],[-56,27],[-246,122],[-87,43],[-76,38],[-182,89],[-121,59],[-4,2],[-62,31],[-174,84],[-321,156],[-83,40],[-15,8],[-62,32],[-78,38],[-116,55],[-108,53],[-155,75],[-147,76],[-55,28],[-61,30],[-116,58],[-198,97],[-519,253],[-602,299],[-272,131],[-57,28],[-65,31],[-176,82],[-377,184],[-63,32],[-58,29],[-123,58],[-65,31],[-77,37],[-78,38],[-155,74],[-263,126],[-139,67],[-131,63],[-173,84],[-170,81],[-143,69],[-235,113],[-143,69],[-74,35],[-67,32],[-79,39],[-132,64],[-177,84],[-75,36],[-103,49],[-96,45],[-87,41],[-51,24],[-144,68],[-65,28],[-70,27],[-54,28],[-66,26],[-51,30],[-42,31],[-58,27],[-49,32],[-55,25],[-60,-21],[-76,-16],[-50,-28],[-73,4],[-62,6],[-61,-14],[-63,-5],[-57,-24],[-65,-17],[-97,-4],[-42,5],[-20,2],[-60,-8],[-62,-24],[-63,-6],[-66,2],[-63,-21],[-52,-30],[-62,-19],[-71,1],[-62,12],[-63,11],[-54,22],[-69,0],[-59,-8],[-67,-15],[-62,0],[-58,-12],[-66,5],[-70,4],[-60,-11],[-60,-20],[-70,-1],[-76,15],[-49,29],[-64,8],[-68,6],[-64,13],[-69,-6],[-65,14],[-60,19],[-75,3],[-60,5],[-60,11],[-63,6],[-62,11],[-28,39],[-43,36],[-43,31],[-34,37],[-24,47],[-5,44],[-15,44],[31,36],[-19,45],[-54,27],[3,46],[15,64],[-52,24],[-39,32],[-52,29],[-66,10],[-62,-5],[-81,17],[-67,23],[-53,31],[-65,15],[-60,16],[-64,11],[-74,0],[-73,8],[-72,10],[-65,-1],[-68,6],[-62,4],[-105,-16],[-63,-7],[-80,-34],[-60,-9],[-61,-6],[-66,5],[-79,16],[-62,-9],[-61,2],[-81,-13],[-60,-17],[-62,-8],[-74,1],[-66,-13],[-64,7],[-42,33],[-38,36],[-63,13],[-93,24],[-57,37],[-43,36],[-62,10],[-3,2],[-43,28],[-64,31],[-64,-2],[-68,-3],[-48,30],[-83,23],[-63,16],[-63,18],[-78,12],[-63,-19],[-64,10],[-50,27],[-48,31],[-67,8],[-77,-9],[-63,-15],[-52,-25],[-59,-28],[-60,20],[-69,-1],[-56,17],[35,40],[-41,36],[-49,26],[-69,8],[-65,-9],[-60,7],[-33,-3],[-34,-3],[-66,-2],[-60,5],[-56,-26],[-38,-43],[-66,7],[-52,29],[-58,26],[-24,48],[41,44],[-18,41],[51,22],[23,41],[-37,34],[-65,2],[-77,2],[-65,-6],[-62,-4],[-30,37],[-13,42],[-57,20],[-63,18],[-63,13],[-55,21],[-17,47],[-3,43],[-28,37],[-39,37],[-72,5],[-59,26],[-57,15],[-59,-17],[-68,8],[-62,3],[-54,29],[-65,12],[-68,1],[-60,-22],[-52,26],[-24,38],[6,45],[-3,45],[-36,41],[-52,27],[-69,18],[-64,5],[-66,6],[-27,6],[-34,8],[-74,-1],[-65,5],[-44,33],[-61,0],[-59,-8],[-36,37],[-55,-22],[-14,41],[22,49],[-60,55],[-58,-16],[-69,9],[-60,13],[-63,3],[-55,36],[-52,28],[-1,44],[43,36],[-45,28],[10,45],[-67,0],[-61,11],[-18,43],[-68,-3],[-57,27],[-41,32],[-40,-33],[-57,-18],[-56,26],[-67,52],[-14,40],[-63,29],[11,46],[45,28],[20,41],[-8,53],[32,41],[28,38],[-17,41],[58,32],[-3,47],[-14,45],[-65,19],[-79,23],[-23,49],[121,36],[-75,7],[-76,6],[14,45],[52,26],[-36,34],[-18,43],[33,43],[-68,11],[-2,43],[-42,42],[-55,28],[-8,4],[-60,6],[-70,-9],[-77,-13],[-66,-18],[-82,-15],[-45,35],[-36,46],[-11,48],[21,24],[15,18],[-26,-6],[-44,-10],[-63,20],[39,23],[30,17],[-54,20],[-58,-17],[-77,-17],[3,-21],[8,-52],[-27,0],[-40,0],[-56,47],[31,38],[-63,18],[-57,38],[-76,59],[101,20],[157,-14],[21,40],[60,35],[-57,23],[-82,11],[7,46],[41,26],[13,9],[29,39],[-58,-8],[-7,-1],[-115,21],[-117,21],[-63,-3],[-9,-48],[-9,-58],[-33,-40],[-106,5],[-2,0],[-1,7],[-8,65],[-3,65],[-66,0],[-80,4],[-123,4],[-70,44],[-42,58],[14,44],[41,57],[0,49],[6,61],[65,32],[67,18],[81,-92],[71,5],[71,25],[63,25],[74,45],[36,42],[46,49],[16,41],[-43,33],[-67,-9],[-66,-45],[-61,-17],[-14,3],[-49,10],[-28,43],[-24,35],[-19,27],[25,57],[34,52],[-53,35],[-52,47],[-17,59],[-33,40],[-75,-19],[-23,-50],[-97,-17],[-75,4],[-51,23],[26,45],[92,63],[-32,43],[0,1],[-34,42],[-5,42],[-41,32],[-80,-3],[-56,-33],[-68,-45],[-88,-27],[-87,0],[-79,11],[-71,9],[-69,-4],[-99,-20],[-69,-14],[-78,-12],[-75,-10],[-84,-9],[-150,29]],[[8001,35272],[122,68],[185,46],[139,76],[100,43],[142,49],[176,49],[124,46],[138,13],[255,75],[201,84],[195,47],[191,4],[141,-9],[120,-53],[7,87],[105,100],[183,89],[175,76],[186,47],[133,39],[34,9],[-215,62],[-58,80],[28,83],[98,62],[116,52],[165,34],[97,45],[107,3],[96,20],[160,49],[211,-10],[42,-6],[99,-13],[115,82],[150,82],[135,34],[133,39],[147,46],[142,22],[176,46],[105,-37],[118,16],[121,40],[182,64],[162,95],[124,5],[127,86],[113,48],[58,26],[127,41],[127,61],[102,44],[133,19],[133,11],[134,29],[122,4],[57,2],[160,9],[128,56],[196,27],[131,5],[142,5],[162,16],[151,-42],[121,-24],[195,-48],[188,-46],[109,-36],[151,15],[179,-3],[134,-29],[128,21],[127,24],[139,23],[-4,163],[164,34],[159,22],[160,25],[124,-10],[157,33],[146,11],[188,36],[150,33],[164,28],[167,23],[243,36],[187,20],[115,-7],[120,15],[170,18],[203,21],[229,70],[144,44],[162,31],[135,-92],[124,28],[-33,84],[-33,102],[119,76],[109,35],[121,4],[140,-98],[117,69],[-110,91],[62,69],[188,35],[175,-31],[160,-71],[134,116],[82,102],[58,111],[107,68],[178,53],[181,29],[141,49],[181,44],[170,-16],[191,6],[224,32],[209,-10],[193,-10],[140,-7],[157,-25],[156,-9],[153,9],[102,-56],[248,104],[168,43],[151,50],[194,38],[193,-39],[60,116],[24,46]],[[9205,18667],[-141,-47],[-58,2],[-100,2],[-23,57],[-33,84]],[[8850,18765],[71,24],[15,73],[53,36],[91,2],[56,-20],[29,-87],[23,-86],[17,-40]],[[30042,26369],[-11,-17],[-16,-29],[-119,-136],[-2,-2],[-121,-138],[-6,-105],[-6,-85],[-78,-29],[-111,-96],[-4,-3],[-55,-87],[-17,-28],[-30,-62],[-138,-142],[-37,-39],[157,-144],[23,-21],[19,-17],[-6,-34],[-10,-54],[-8,-48],[-34,-28],[-15,-13],[0,-36],[0,-442],[-8,-17],[-34,-74],[-90,-62],[-25,-80],[-164,-540],[-17,-56],[-58,-63],[-10,-11],[-34,-37],[22,-26],[3,-4],[17,-20],[96,-118],[55,-67],[12,-16],[67,-80],[2,-1],[46,-56],[-2,-5],[-22,-57],[-15,-40],[-16,-42],[1,-12],[7,-101],[8,-117],[2,-30],[-8,-13],[-79,-117],[-136,-204],[-46,-66],[-26,-37],[-46,-69],[-81,-121],[54,-185],[-91,-105],[-65,-74],[-12,-14],[-1,-1],[-69,32],[-19,9],[-174,80],[-257,118],[-96,41],[-133,62],[-186,84],[-134,61],[-718,325],[-278,128],[-66,29],[-2,1],[-282,131],[-9,4],[-292,132],[-224,103],[-464,214],[-421,194],[-103,46],[-180,77],[-100,44],[-64,28],[-60,26],[-87,39],[-118,52],[-163,70],[-249,110],[-96,41],[-64,30],[-351,150],[-264,119],[-292,126],[-168,73],[-136,59],[-453,197],[-518,228],[-230,100],[-622,273],[-108,46],[-102,43],[-1044,459],[-17,-11],[-45,-29],[-77,-49],[-412,-279],[-59,-26],[-425,-250],[-55,-31],[-141,-82],[-125,-72],[-121,-71],[-80,-46],[-215,-127],[-80,-47],[-39,-23],[-82,-49],[-68,-40],[-148,-90],[-141,-81],[-130,-76],[-328,-191],[-57,-33],[-112,-66],[-110,-64],[-197,-117],[-92,-47],[-99,-50],[-233,-117],[-259,-133],[-32,-39],[-65,-37],[-59,-26],[-63,-37],[-113,-78],[-174,-104],[-157,-100],[-80,-40],[-60,-37],[-144,-19],[-109,-28],[-93,-38],[-6,-3],[-58,-25],[-90,-26],[-84,30],[-122,12],[-135,2],[-101,-22],[-74,-17],[-97,29],[-79,57],[-85,-1],[-148,1],[-66,-29],[-60,-46],[-14,-50],[29,-60],[-59,-47],[-48,-26],[-49,-29],[-53,-44],[-75,-66],[-60,-47],[-35,-50],[-39,-93],[5,-78],[-22,-108],[-26,-40],[-74,-27],[-98,5],[-114,-4],[-69,-37],[-59,-62],[-65,-13],[-63,-56],[-84,-13],[-12,-41],[-60,-23],[1,-45],[-27,-39],[-92,-93],[-62,-71],[-97,-53],[-51,-29],[-75,-18],[-84,-10],[-86,-4],[-78,-32],[-76,38],[-46,30],[-56,21],[-85,22],[-62,5],[-21,44],[-104,-1],[-93,-13],[-108,3],[-66,-4],[-122,7],[-125,35],[-101,18],[-89,5],[-77,13],[-102,24],[-82,27],[-90,22],[-86,7],[-76,0],[-92,-17],[-91,-37],[-116,-40],[-92,-30],[-5,-3],[-45,-23],[-69,-42],[-60,-43],[-58,-37],[-82,-43],[-74,-43],[-22,-66],[38,-34],[92,-1],[89,0],[40,-48],[-27,-40],[-40,-43],[-5,-82],[57,-51],[53,-26],[-25,-79],[-66,-49],[-83,-37],[-99,1],[-80,24],[-70,-44],[45,-49],[46,-27],[65,-12],[84,34],[65,18],[73,15],[59,-25],[-8,-53],[-54,-54],[-42,-46],[-45,-36],[-91,4],[-81,20],[-70,15],[-70,-11],[-76,-40],[-15,-48],[45,-59],[92,-59],[67,-12],[92,36],[68,45],[69,14],[83,-39],[8,-59],[-4,-9],[-18,-36],[65,-68],[12,-7],[47,-30],[-3,-46],[-82,-10],[-11,-1],[-85,0],[-56,-23],[10,-27],[16,-39],[39,-41],[-68,-17],[-98,-14],[-62,-27],[11,-62],[26,-44],[-29,-44],[-100,-9],[-88,10],[-82,-47],[-19,-47],[1,-45],[39,-72],[111,-28],[87,-42],[26,-41],[3,-47],[20,-59],[68,-26],[85,16],[38,46],[-10,53],[32,47],[91,10],[138,-23],[89,-12],[58,-25],[-3,-70],[-25,-38],[-70,-41],[-115,-36],[-95,-40],[-61,-28],[78,-72],[86,-25],[65,-30],[12,-58],[-52,-43],[-80,-27],[-134,-12],[-116,10],[-91,24],[-76,15],[-61,-4],[-43,-58],[12,-45],[54,-35],[78,-31],[49,-34],[-63,-40],[-57,-20],[-13,-69]],[[8617,18908],[-29,-4],[-156,-22],[-15,-2],[-47,-6],[-54,-5],[-133,-11],[-45,11],[-179,44],[-163,71],[-38,44],[-52,61],[-41,25],[-76,47],[-57,68],[-16,19],[-105,85],[-148,85],[-30,21],[-91,61],[-27,35],[-50,68],[-53,50],[-23,22],[-104,78],[-28,20],[-77,104],[-91,43],[-76,62],[-28,39],[-17,25],[-34,91],[-197,131],[-111,63],[-18,10],[-38,71],[-24,45],[-67,153],[-166,50],[-3,74],[-1,24],[-17,47],[-18,49],[-118,80],[-36,76],[-147,18],[-120,-3],[-170,-51],[-123,16],[-156,-14],[-126,66],[-119,29],[-149,65],[-178,57],[-120,123],[-54,44],[-50,41],[-108,20],[-97,17],[-87,-2],[-260,-8],[-42,93],[-20,45],[-98,-9],[-94,-9],[-174,100],[-15,53],[-18,61],[-30,31],[-50,51],[-124,15],[-21,3],[-181,-6],[-2,-1],[-191,28],[-188,29],[-883,2],[-128,11],[-123,107],[-127,111],[-130,189],[-60,247],[-25,146],[100,673],[147,9],[115,6],[66,-282],[237,-37],[12,2],[397,86],[36,83],[-54,76],[-17,38],[-38,84],[-13,48],[25,16],[25,17],[-33,11],[-64,21],[-37,40],[-7,47],[-3,23],[-20,33],[-11,19],[3,48],[-2,104],[0,79],[12,46],[5,21],[47,67],[32,32],[8,8],[47,40],[10,51],[-54,51],[2,33],[1,17],[12,46],[5,50],[51,86],[-3,57],[29,64],[-2,18],[-3,25],[-1,31],[-1,32],[6,41],[-7,51],[-14,13],[-22,22],[3,78],[-21,45],[-93,33],[-73,14],[-11,3],[-17,4],[-41,10],[-63,52],[-40,46],[-42,41],[34,76],[64,51],[64,39],[20,12],[38,21],[69,34],[45,30],[85,44],[62,34],[76,49],[136,89],[68,45],[70,52],[71,50],[57,51],[79,116],[45,50],[60,79],[57,58],[34,36],[39,55],[57,59],[76,22],[193,-15],[52,-84],[265,-62],[90,178],[123,45],[132,59],[68,28],[45,19],[45,19],[41,86],[6,13],[45,101],[-28,47],[-26,46],[18,87],[11,53],[-121,-20],[-45,-96],[12,-128],[-7,-37],[-16,-88],[-97,-32],[-98,-34],[-144,-54],[-172,-3],[-4,35],[-8,69],[-70,150],[-172,26],[-16,49],[-19,60],[-132,-18],[-20,-101],[-118,39],[-34,11],[-15,14],[-24,23],[-35,35],[-8,0],[-57,5],[-35,31],[-16,14],[-71,25],[-37,13],[-26,8],[-35,10],[-99,-10],[-58,16],[-103,43],[-32,13],[-145,117],[-56,114],[-8,47],[-5,31],[54,55],[85,89],[-228,30],[-20,-19],[-99,-93],[-129,-48],[-166,5],[-136,106],[-221,-19],[-65,128],[-206,-5],[-39,29],[-4,3],[-63,31],[-60,25],[-78,31],[-73,24],[-72,14],[-13,54],[-46,41],[-59,30],[-23,45],[-53,36],[-8,17],[-24,55],[-18,70],[4,3],[40,50],[-42,72],[-10,49],[-15,61],[-30,60],[-61,121],[-20,102],[7,29],[14,264],[97,107],[96,104],[338,123],[84,-4],[98,93],[189,138],[74,54],[74,53],[169,4],[68,17],[71,20],[65,6],[89,31],[155,99],[169,108],[137,90],[11,44],[75,58],[180,133],[77,42],[112,59],[52,27],[144,125],[79,69],[176,235],[19,61],[125,392],[-13,26],[-17,32],[48,322],[114,101],[188,55],[435,112],[157,201],[126,124],[37,38],[-37,33],[217,174],[200,40],[127,-12],[0,-50],[193,0],[60,-21],[42,50],[82,137],[-33,92],[3,50],[8,111],[90,146],[21,67],[2,58],[2,73],[71,109],[80,105],[42,58],[79,103],[68,50],[127,163],[112,177],[98,81],[50,81],[55,102],[31,114],[78,81],[136,53],[117,70],[156,66],[134,82],[99,58],[126,94],[191,134],[142,78],[145,80],[264,90],[194,44],[102,15],[82,18],[126,28]],[[57213,15369],[0,-64],[-204,-132],[-162,-18],[-144,19],[-42,6],[-6,0],[-17,25],[-78,28],[-49,20],[0,1],[-3,1],[62,111],[20,0],[72,0],[108,-3],[101,-3],[1,0],[4,-2],[180,-4],[5,-2],[152,17]],[[63071,16911],[-21,-91],[-61,-58],[-26,-25],[-124,-98],[-46,-85],[-18,-33],[-53,-81],[-19,-3],[-117,-17],[-142,-59],[-57,-44],[-90,-68],[-156,38],[-47,9],[-128,113],[-137,119],[5,40],[1,10],[-29,78],[18,43],[34,80],[167,96],[66,35],[287,3],[32,-35],[6,-7],[233,77],[214,35],[135,14],[42,4],[31,-90]],[[62940,17287],[-72,-19],[34,182],[109,142],[85,26],[54,16],[60,-73],[21,-34],[39,-65],[22,-84],[-188,-48],[-164,-43]],[[66736,19355],[-130,-45],[-144,33],[-19,4],[-24,5],[-66,26],[-144,54],[59,32],[10,6],[80,4],[7,-6],[252,-32],[71,-48],[48,-33]],[[69394,19460],[-190,94],[-138,5],[-81,101],[111,24],[180,-24],[60,13],[174,39],[-103,-130],[-13,-122]],[[69681,19967],[-169,-48],[-17,11],[-91,61],[-54,36],[106,80],[53,8],[116,18],[122,-54],[19,-8],[-85,-104]],[[68023,20027],[-203,-73],[-89,156],[-50,86],[105,42],[-16,119],[103,55],[157,-69],[-65,-76],[148,-39],[40,-10],[-4,-116],[-126,-75]],[[67150,20127],[1,-26],[10,0],[189,5],[76,-55],[14,-10],[114,-39],[0,-31],[-1,-74],[-140,-105],[19,1],[154,9],[97,-87],[143,-84],[-22,-95],[15,-99],[-110,10],[-35,3],[-95,14],[-29,4],[-122,4],[-121,-14],[-53,83],[-181,17],[-47,16],[-121,42],[-153,24],[-131,-27],[-161,53],[155,31],[-167,72],[-109,131],[43,-6],[175,-25],[189,119],[256,55],[-45,8],[-12,2],[-123,22],[-130,42],[-137,76],[-79,91],[115,24],[186,38],[159,2],[159,66],[117,30],[38,9],[58,-22],[114,-43],[45,-158],[-76,-7],[-242,-21],[1,-75]],[[69110,20199],[107,-68],[-68,-60],[-67,-59],[-76,-99],[-96,-70],[-27,-2],[-126,-9],[-196,49],[-104,-107],[-133,-52],[-196,-17],[-25,56],[-23,52],[99,93],[97,51],[71,25],[31,11],[-13,44],[-13,44],[139,85],[227,-23],[-4,132],[-111,77],[37,81],[93,53],[120,-51],[35,-15],[112,-125],[110,-96]],[[67168,20544],[-155,-45],[-167,3],[-120,-27],[31,117],[250,75],[161,-123]],[[67749,20661],[-161,-103],[-143,118],[56,127],[140,-25],[55,-4],[129,-8],[-76,-105]],[[69394,19460],[213,-16],[-14,40],[-28,79],[108,59],[112,-27],[59,-15],[25,1],[140,5],[13,44],[15,50],[105,-65],[15,-2],[43,-6],[59,-7],[44,-87],[113,66],[29,17],[3,3],[-2,3],[-6,6],[-51,63],[-29,35],[-39,13],[-13,4],[-60,20],[-75,93],[-115,-3],[-2,21],[-6,49],[-130,83],[4,60],[2,43],[118,-5],[179,-67],[203,-68],[23,-6],[184,-50],[180,21],[155,-36],[122,-30],[105,-30],[-6,-61],[-2,-23],[-16,-67],[-10,-41],[-108,-54],[-8,-4],[-47,5],[-74,9],[48,-119],[3,-7],[240,60],[149,43],[108,20],[27,166],[-77,160],[-218,65],[-181,97],[-31,133],[-27,6],[-83,16],[-19,4],[-34,-128],[-109,11],[-77,8],[-170,47],[-32,138],[128,74],[47,144],[76,93],[-209,62],[-138,47],[159,72],[178,47],[190,-10],[93,-60],[136,-77],[233,-97],[157,-120],[117,-67],[-93,-68],[-152,56],[-52,-9],[-101,-17],[-10,-24],[-37,-90],[-5,-11],[172,-32],[147,29],[161,44],[149,40],[132,36],[169,14],[52,-82],[123,-75],[126,-89],[127,-67],[94,39],[76,115],[-8,2],[-77,24],[-144,80],[17,60],[23,78],[-102,49],[-187,44],[-77,119],[-54,105],[95,26],[50,13],[32,-2],[125,-6],[226,-2],[18,-3],[118,-20],[2,0],[-119,113],[27,19],[90,61],[166,43],[32,3],[99,11],[46,5],[232,17],[117,3],[32,-2],[70,-3],[26,-1],[68,50],[68,-7],[578,-57],[-132,-95],[-184,-129],[-104,-81],[-106,-78],[-161,-110],[-115,-74],[-133,-85],[-168,-125],[-136,-94],[-158,-99],[-155,-104],[-171,-101],[-104,-74],[-118,-81],[-190,-117],[-185,-103],[-97,-60],[-124,-65],[-95,-57],[-189,-83],[-205,-95],[-180,-81],[-156,-77],[-106,-55],[-102,-54],[-145,-80],[-130,-77],[-164,-93],[-165,-82],[-111,-51],[-134,-53],[-115,-59],[-177,48],[-105,88],[-152,-2],[-119,52],[-73,95],[-73,98],[-142,83],[-72,48],[-33,22],[-3,109],[-12,-1],[-193,-17],[-196,98],[-106,80],[-63,79],[93,79],[-70,29],[-107,44],[-116,81],[162,22],[137,-18],[123,-42],[135,-26],[26,-5],[61,-9],[102,-16],[152,-45],[105,-52],[-10,-37],[-15,-54],[-86,-63],[-43,-32],[205,-57],[244,-17],[170,50],[77,106],[-79,129],[-90,144]],[[71651,21116],[-98,-122],[-39,6],[-95,13],[-174,-14],[-163,40],[-35,107],[85,80],[35,85],[134,-37],[156,-73],[194,-85]],[[70790,21842],[-108,-60],[-105,15],[-69,59],[-31,103],[-10,33],[-34,140],[232,-54],[12,-23],[48,-91],[65,-122]],[[71864,22375],[-112,-43],[-118,-68],[-62,105],[-191,-5],[-108,149],[-46,131],[130,32],[132,-47],[170,-51],[133,-37],[55,-15],[69,-49],[21,-14],[93,-69],[-130,-9],[-10,0],[-26,-10]],[[71651,21116],[-28,173],[46,22],[34,16],[6,3],[2,2],[57,49],[15,34],[16,37],[103,87],[-22,56],[-11,29],[-77,103],[36,132],[7,28],[39,135],[-121,97],[53,101],[101,37],[47,17],[111,-147],[137,-38],[74,7],[30,3],[40,4],[56,-1],[63,0],[34,-10],[84,-24],[127,-20],[51,-33],[29,-19],[23,15],[98,67],[-5,43],[-9,70],[81,95],[5,6],[-138,-14],[-140,-38],[-97,-26],[72,125],[-110,-6],[-111,-6],[-24,-1],[-10,-1],[-58,96],[-30,31],[-39,40],[-35,36],[-46,105],[-50,32],[-78,48],[17,151],[96,-3],[54,-2],[8,0],[40,0],[78,-1],[136,4],[56,2],[-22,47],[-22,46],[120,32],[139,3],[57,0],[69,0],[169,-23],[156,-51],[54,3],[114,6],[126,-64],[181,15],[218,18],[142,25],[19,3],[-82,122],[-69,126],[183,-76],[158,-76],[85,-68],[23,94],[-85,63],[-104,64],[68,102],[158,-67],[197,-11],[87,238],[153,-51],[186,-74],[175,-77],[108,-60],[-33,-100],[-59,-110],[-28,-105],[-31,-116],[25,-146],[58,-104],[120,-65],[117,67],[39,106],[143,80],[30,90],[91,-9],[80,-88],[-11,-113],[-82,-142],[-75,-80],[-97,-83],[-176,-126],[-83,-77],[-16,-87],[-4,-23],[-77,-125],[-118,-77],[-148,-81],[-11,-7],[-110,-71],[-90,-56],[-114,-11],[-113,-11],[-85,-54],[-177,24],[-48,41],[-40,33],[-136,103],[-107,151],[7,75],[3,35],[-10,63],[-10,55],[144,86],[121,4],[4,0],[142,-31],[131,-39],[22,85],[10,40],[-183,21],[-151,63],[-60,25],[-25,-19],[-37,-28],[-42,-31],[-150,-77],[-16,-8],[-28,-72],[-11,-28],[1,-36],[2,-104],[-1,-36],[-3,-77],[-145,35],[42,-102],[112,-92],[10,-9],[97,-89],[27,-24],[-96,-72],[-35,-10],[-106,-29],[-49,-64],[-120,-24],[-117,-20],[-39,-7],[-20,-4],[-133,-28],[-136,-5],[-52,-2],[-8,-1],[-284,-31],[-69,-49],[-136,-58],[-18,-10],[-151,-84],[-110,-49],[-125,19],[-39,5],[-72,48],[-118,76],[-85,-103],[-151,32],[-31,60],[-21,40]],[[68940,25901],[-193,-216],[72,-80],[56,-119],[55,-30],[79,-42],[-27,-115],[26,-24],[53,-49],[140,-43],[142,-103],[-15,-47],[-26,-85],[-32,-105],[-19,-73],[-17,-67],[29,-124],[9,-37],[19,-77],[-109,-83],[-5,-3],[-179,-13],[-52,-4],[76,-43],[63,-36],[19,-33],[1,-2],[44,-78],[202,-62],[21,-78],[1,-6],[12,-117],[-33,-86],[136,-122],[-2,-31],[-3,-68],[161,-40],[92,-104],[169,-44],[194,-55],[120,-77],[46,-84],[10,-20],[202,-35],[100,-21],[35,-8],[139,-37],[64,-78],[160,-25],[117,-28],[11,-3],[11,-14],[39,-52],[150,-22],[-43,-19],[-63,-27],[-133,-43],[-89,-76],[3,-27],[6,-58],[-175,-56],[-203,17],[-30,19],[-77,48],[23,102],[-110,21],[-40,15],[-145,56],[-139,50],[-176,38],[-140,66],[-179,9],[-116,-32],[-112,1],[57,-134],[-27,-105],[-12,-46],[-161,-57],[-39,-14],[70,-18],[84,-23],[51,-59],[202,-78],[16,-2],[156,-28],[146,-35],[151,-78],[59,-151],[50,-70],[22,-30],[133,-83],[16,-116],[-104,-20],[-172,48],[-127,73],[-83,-5],[-19,-1],[-119,73],[-136,-45],[-117,30],[-120,-41],[-16,-84],[111,-59],[129,-57],[138,-76],[153,-48],[130,-54],[101,-56],[-2,-38],[-4,-63],[151,-70],[192,-77],[-13,-58],[-13,-51],[-119,-55],[-143,-5],[-110,-28],[-34,-9],[-127,-15],[-9,-14],[-51,-71],[-119,-96],[-17,-14],[27,-133],[-119,-39],[43,-40],[56,-51],[38,-73],[22,-40],[-132,-81],[121,-27],[74,-17],[32,-112],[-43,-7],[-119,-18],[-90,19],[-26,6],[-52,-21],[-48,-19],[-23,36],[-32,53],[-110,76],[-10,6],[-23,157],[32,99],[-14,83],[-2,10],[-22,84],[76,39],[31,16],[-9,2],[-134,29],[-145,19],[-116,83],[-46,58],[-50,63],[-156,133],[-49,52],[-48,51],[-108,101],[-58,58],[-17,17],[-95,90],[-17,15],[-4,4],[-47,46],[-64,63],[-160,42],[-149,14],[-27,-77],[-163,-66],[-74,22],[-23,7],[-46,13],[-56,72],[-9,12],[-6,2],[-65,26],[-27,12],[-96,38],[-148,-54],[1,-87],[-58,-78],[5,-121],[-51,-98],[-72,18],[-52,12],[-34,-12],[-103,-36],[-49,-3],[-82,-4],[-88,23],[-52,-34],[-57,-37],[-35,-34],[-41,-42],[-27,-24],[-75,-68],[16,-22],[60,-78],[-11,-10],[-128,-119],[-105,-110],[-8,-44],[-9,-49],[-6,-91],[12,-94],[-27,-79],[-23,-69],[-61,-85],[-25,-34],[-59,-7],[-57,-8],[-161,-17],[-211,-13],[-87,20],[-62,14],[-52,15],[-121,36],[-19,-5],[-61,-12],[-64,-14],[23,-87],[-100,-70],[-21,-25],[-86,-105],[-51,-97],[13,-113],[-224,-12],[-20,-124],[-37,-229],[6,-123],[170,-80],[122,-41],[24,-9],[214,-3],[112,7],[124,-13],[29,-3],[60,11],[131,24],[205,63],[8,83],[124,-24],[33,114],[107,-31],[116,-36],[305,-41],[182,-147],[2,-1],[129,30],[134,42],[156,2],[167,-46],[168,-19],[250,-9],[49,-85],[35,-59],[-43,-19],[-120,-53],[18,-6],[109,-33],[5,-2],[5,-1],[131,5],[18,0],[17,0],[131,1],[150,-57],[13,-5],[177,-35],[119,-12],[117,-63],[1,-5],[29,-102],[44,-116],[-167,22],[-153,-36],[-1,-112],[178,-29],[190,65],[173,39],[245,-51],[217,-233],[78,-96],[75,-158],[-200,-108],[-171,-69],[-139,-50],[-105,-43],[-168,-38],[-156,-27],[-166,-27],[-170,-3],[-176,-44],[-178,-31],[-175,-27],[-162,-39],[-211,-58],[-160,-46],[-240,-69],[-143,-46],[-155,-50],[-207,-66],[-190,-53],[-178,-53],[-144,-44],[-145,-45],[-130,-41],[-154,-51],[-241,-69],[-185,-53],[-149,-47],[-134,-44],[-115,-38],[-181,-64],[-168,-61],[-162,-57],[-192,-75],[-228,-86],[-174,-69],[-177,-56],[-130,-42],[-119,-46],[-117,-41],[-205,-85],[-170,-79],[-86,-36],[-97,-55],[-144,-72],[-116,-63],[-110,-65],[-91,-61],[-152,-18],[-22,85],[117,54],[136,57],[131,63],[89,55],[110,112],[16,29],[60,113],[69,115],[77,90],[124,44],[240,102],[84,122],[24,93],[152,29],[160,-71],[-40,138],[-25,111],[-29,117],[126,61],[94,20],[176,26],[153,77],[157,95],[-137,39],[135,96],[156,-90],[148,-49],[129,81],[31,149],[74,4],[55,4],[165,68],[176,51],[116,53],[84,38],[174,7],[28,-31],[39,-43],[144,74],[49,13],[124,33],[20,5],[194,66],[170,-10],[16,-1],[49,63],[23,28],[4,6],[-128,57],[-48,22],[-11,-4],[-109,-38],[-75,-33],[-29,-12],[-61,-1],[-93,-1],[-77,-63],[-5,-4],[-138,2],[-234,22],[-117,-20],[-130,-73],[-149,-86],[-88,-58],[-125,-9],[-31,42],[-39,53],[-208,23],[115,118],[117,75],[124,86],[21,33],[22,34],[24,38],[-115,139],[16,53],[17,57],[55,70],[28,36],[-83,-9],[-128,-15],[-155,-36],[-282,63],[-56,216],[-145,68],[-179,51],[-179,39],[-225,14],[-220,18],[-102,-65],[-147,-68],[-115,-68],[-22,-13],[-112,-133],[-44,-92],[-23,-50],[31,-19],[53,-34],[70,-46],[29,-31],[20,-23],[43,-47],[110,-62],[73,-41],[8,-127],[2,-29],[-71,-86],[-68,-128],[-48,-24],[-119,-59],[-29,-8],[-198,-59],[168,-22],[7,-3],[105,-44],[13,-5],[87,-37],[26,-12],[16,-66],[5,-23],[-111,-40],[-36,27],[-46,34],[-166,-68],[-136,-60],[200,-43],[127,-4],[43,-1],[-105,-81],[-130,-39],[-336,-19],[-5,1],[-5,-1],[-1,-1],[-75,-16],[-164,-37],[67,68],[88,90],[101,87],[40,34],[-150,-4],[-202,-15],[-1,-48],[-2,-83],[-66,-70],[-20,-21],[-25,-27],[-39,-27],[-24,-17],[-108,-75],[1,-3],[-86,-50],[-45,-50],[26,-40],[117,-15],[31,-55],[87,-92],[-6,-14],[-81,-46],[4,-25],[0,-4],[3,-16],[4,-1],[81,-29],[117,0],[44,-22],[39,-72],[151,-67],[24,-18],[84,-62],[41,-74],[0,-109],[-19,-13],[-99,-67],[-93,-51],[-251,13],[-178,0],[-167,28],[-133,-40],[-50,-74],[-113,-36],[-135,-6],[-41,-8],[-131,-26],[-176,-40],[-38,-8],[20,88],[21,90],[23,26],[37,39],[67,74],[16,17],[113,82],[-201,-12],[-121,-56],[-49,-23],[-195,-20],[41,-64],[14,-21],[41,-63],[-21,-25],[-60,-75],[-133,-55],[-49,-46],[-54,-51],[-40,-20],[-125,-61],[-147,-13],[-127,54],[-164,92],[-144,73],[-30,14],[-143,52],[-52,19],[-122,44],[-184,55],[-11,4],[-147,-69],[-179,-26],[-175,-76],[-163,-63],[-25,-10],[-226,-15],[-152,-23],[-130,-17],[-133,-10],[-1,1],[-58,-20],[-120,6],[0,-2],[-148,-39],[-178,-45],[-42,1],[-55,2],[-62,20],[-28,20],[-8,5],[-126,46],[-53,106],[-26,126],[-105,64],[-95,99],[9,10],[82,94],[-30,20],[-98,-11],[-43,-4],[-61,-64],[-13,-14],[0,-1],[0,-3],[4,-141],[0,-1],[15,-65],[0,-86],[-3,-1],[3,-10],[-146,-71],[-198,9],[-31,1],[-9,1],[-25,4],[-133,23],[-119,14],[-112,38],[-23,8],[-208,44],[-88,-1],[-31,0],[-67,-20],[-34,-10],[-130,-16],[-22,69],[108,61],[23,13],[-20,31],[-35,57],[-13,21],[7,93],[-17,12],[-133,97],[-188,50],[-149,31],[-115,59],[-11,6],[-106,113],[-163,-2],[-162,-60],[-128,-26],[28,34],[51,63],[4,61],[4,62],[-120,-42],[-135,70],[-41,74],[-182,-21],[-148,-100],[-150,2],[-229,70],[-229,26],[-97,32],[-74,25],[-105,-61],[-25,-15],[-99,-10],[-45,-4],[-35,-3],[127,-53],[144,-7],[41,-1],[175,-1],[11,0],[65,-12],[134,-25],[30,-134],[144,33],[174,-28],[110,2],[142,17],[-41,-84],[-7,-14],[57,-88],[60,-78],[185,13],[180,24],[188,44],[83,-64],[108,-40],[-155,-53],[-21,-7],[149,-76],[9,-3],[109,-34],[123,44],[157,5],[-79,-76],[-59,-58],[-95,-111],[-139,-4],[-109,-39],[4,-15],[5,-19],[162,-14],[98,-48],[119,-41],[15,-32],[117,-46],[46,13],[7,-3],[104,-49],[248,-23],[7,-55],[4,-33],[5,-38],[-150,-3],[-20,0],[-65,-93],[-107,-29],[-35,-10],[181,-85],[8,-60],[9,-68],[-215,-54]],[[54563,14846],[-85,15],[-71,20],[-46,32],[-17,42],[16,45],[31,37],[33,43],[23,38],[-4,45],[-62,22],[-61,3],[-65,1],[-85,-1],[-93,-4],[-73,-1],[-78,6],[-70,5],[-88,-2],[-71,-26],[-32,-42],[-7,-52],[-1,-58],[-13,-54],[-27,-48],[-43,-36],[-53,-21],[-68,-10],[-53,25],[-10,42],[31,42],[38,42],[10,47],[-20,44],[-36,37],[-41,33],[-55,24],[-75,-1],[-53,-21],[-44,-30],[-53,-61],[-57,-30],[-66,-9],[-63,9],[-62,12],[-60,7],[-64,-3],[-66,-14],[-53,-25],[-46,-31],[-48,-31],[-47,-33],[-64,-18],[-73,3],[-62,16],[-65,4],[-59,-11],[-55,-20],[-52,-29],[-58,-17],[-71,17],[-37,37],[-18,42],[-15,46],[-23,40],[-50,34],[-57,15],[-67,0],[-72,-22],[-38,-34],[-33,-44],[-36,-42],[-59,-23],[-61,22],[-19,41],[-3,41],[-4,44],[-36,38],[-62,1],[-50,-33],[-34,-35],[-37,-42],[-47,-29],[-65,-6],[-64,8],[-61,13],[-54,22],[-55,28],[-46,31],[-25,39],[23,40],[35,36],[24,45],[-60,24],[-66,-7],[-68,-15],[-69,-20],[-58,-20],[-72,-25],[-79,-23],[-69,4],[-53,21],[-47,25],[-55,36],[-62,13],[-73,5],[-68,-5],[-75,-4],[-75,4],[-75,-5],[-55,-21],[-52,-38],[-45,-31],[-54,-22],[-63,-10],[-69,5],[-65,-1],[-57,-17],[-57,-15],[-63,3],[-66,5],[-60,5],[-32,2],[-66,-2],[-73,0],[-28,11],[-29,11],[1,46],[-9,44],[-52,35],[-57,19],[-78,14],[-75,2],[-89,-12],[-52,-25],[-56,-32],[-60,-28],[-66,-24],[-6,0],[-68,-5],[-67,19],[-39,38],[-51,48],[-89,7],[-119,8],[-69,20],[-60,31],[-62,19],[-80,-14],[-58,-15],[-92,-29],[-71,-24],[-56,28],[55,58],[45,54],[-24,40],[-60,41],[-59,20],[-83,19],[-60,21],[-59,30],[-56,23],[-81,-7],[-61,-12],[-68,-4],[-74,10],[-68,19],[-63,-8],[-37,-35],[-87,-58],[-46,36],[-35,40],[-62,15],[-66,-19],[-62,-3],[-62,9],[-58,39],[-43,31],[-72,-20],[-60,-25],[-76,1],[-29,-39],[-64,-3],[-49,-24],[-48,-26],[-62,-13],[-49,31],[-53,23],[-60,7],[-68,-2],[-61,1],[-73,3],[-64,-5],[-63,-8],[-58,15],[-64,-2],[-64,1],[-51,24],[-33,-5],[-29,-5],[-64,3],[-60,-9],[-33,-48],[-70,-2],[-67,21],[-56,23],[-43,35],[-57,21],[-51,33],[-55,21],[-20,42],[-55,36],[-81,10],[-60,29],[-71,26],[-50,24],[-42,31],[-50,33],[-63,15],[-71,4],[-59,-14],[-61,8],[-67,18],[-74,22],[-70,-1],[-70,-2],[-67,9],[-61,-4],[-65,5],[-75,2],[-59,19],[-55,24],[-64,13],[-68,25],[-61,7],[-62,3],[-65,16],[-59,10],[-21,2],[-43,4],[-68,8],[-17,49],[8,41],[0,44],[-5,22],[-4,23],[-1,2],[0,1]],[[42161,16273],[-26,47],[-31,41],[-29,45],[-48,30],[-34,40],[-15,51],[-2,45],[1,43],[10,44],[-6,43],[2,42],[-1,42],[-34,47],[-14,41],[30,43],[20,42],[33,36],[1,45],[-28,40],[23,42],[3,42],[20,39],[33,36],[30,39],[4,41],[31,40],[12,41],[21,42],[47,51],[22,45],[22,44],[-6,45],[3,53],[10,48],[-20,41],[-6,42],[17,44],[40,55],[25,46],[43,43],[41,50],[50,49],[39,37],[15,44],[43,35],[29,22],[14,10],[28,39],[12,50],[16,40],[25,41],[18,47],[21,39],[-7,45],[-13,40],[23,52],[-6,50],[-6,48],[-24,41],[-42,55],[-44,42],[-25,43],[-38,43],[-45,33],[-29,47],[-37,42],[-42,62],[-19,45],[-21,57],[32,58],[2,44],[-27,44],[3,42],[14,46],[22,38],[35,40],[50,29],[45,30],[46,37],[38,42],[30,42],[10,40],[12,46],[-8,44],[36,35],[-29,45],[-3,44],[-1,42],[-33,36],[-56,30],[-55,50],[-41,32],[-18,44],[-35,38],[0,46],[-24,52],[39,34],[54,32],[-58,29],[-159,74],[-143,68],[-220,104],[-186,90],[-78,37],[-127,60],[-157,74],[-206,100],[-186,89],[-66,31],[-88,42],[-75,36],[-335,159],[-76,37],[-298,141],[-428,204],[-450,215],[-278,132],[-351,167],[-329,157],[-105,49],[-249,119],[-105,50],[-105,50],[-58,27],[-58,28],[-161,75],[-196,93],[-56,26],[-278,131],[-97,46],[-11,5],[-575,271],[-144,68],[-8,4],[-94,45],[-59,29],[-134,65],[-232,113],[-130,62],[-244,119],[-2,1],[-72,36],[-198,95],[-139,68]],[[11708,17149],[7,-2],[168,-62],[115,-30],[191,-10],[-20,-78],[-105,-48],[-139,30],[-166,67],[-23,62],[-28,71]],[[11708,17149],[-31,27],[-120,102],[-49,73],[-16,23],[-18,11],[-57,37],[-10,6],[-134,42],[-135,34],[-126,17],[-49,6],[-85,0],[-84,-1],[-272,66],[-237,87],[-211,126],[-68,95],[-34,86],[-16,39],[17,78],[7,28],[-51,100],[-23,45],[-159,111],[23,100],[-73,75],[-75,25],[-30,10],[-105,32],[-141,-19],[-141,57]],[[8850,18765],[-84,52],[-149,91]],[[42161,16273],[-188,26],[-1,0],[-54,-21],[0,-1],[-56,-25],[-56,-92],[-22,-53],[-19,-49],[-58,-41],[-98,-64],[-125,-80],[-103,-69],[-455,-157],[-43,-56],[-21,-75],[-115,-388],[-73,-244],[-92,-303],[-22,-76],[-87,-295],[-24,-70],[-18,-61],[-18,-67],[-12,-41],[-38,-129],[-33,-111],[-113,-380],[-21,-73],[-16,-41],[-64,-207],[-124,-424],[-599,-185],[-89,-22],[-46,-11],[-94,-23],[-124,-30],[-54,-21],[-60,-46],[-114,-21],[-63,-25],[-89,-3],[-64,-9],[-84,-12],[-56,-23],[-8,-43],[-35,-44],[26,-46],[-15,-21],[-16,-22],[-94,-35],[-39,-32],[73,-29],[7,-21],[7,-23],[-92,-7],[30,-50],[-15,-44],[64,-26],[-29,-37],[27,-50],[43,-33],[-67,-26],[-62,10],[-23,-45],[66,-14],[31,-36],[63,-3],[-3,-46],[54,-30],[25,-42],[-37,-36],[-3,-43],[-55,-22],[-75,32],[17,-54],[-49,-29],[0,-42],[10,-56],[-13,-49],[4,-45],[37,-55],[91,13],[79,5],[57,26],[72,7],[61,-39],[21,-40],[-49,-41],[-39,-32],[-70,-25],[-89,-30],[20,-42],[0,-58],[60,-28],[40,37],[69,-19],[76,-21],[83,14],[59,-10],[63,-7],[63,4],[-14,-45],[-48,-35],[-36,-53],[38,-54],[55,-58],[44,-41],[66,-11],[-47,-43],[26,-38],[47,-27],[-94,-7],[-93,-42]],[[38921,10241],[-112,-65],[-166,11],[-112,24],[-160,47],[-397,117],[-114,41],[-338,103],[-95,16],[-39,6],[-150,14],[-361,88],[-171,35],[-248,23],[-133,22],[-273,45],[-371,43],[-201,14],[-311,30],[-35,-9],[-103,-26],[-144,2],[-197,8],[-229,14],[-406,-7],[-96,-14],[-134,-20],[-75,-4],[-160,-9],[-161,16],[-154,22],[-71,11],[-48,8],[-160,28],[-201,14],[-420,16],[-172,7],[-53,18],[-107,37],[36,99],[81,118],[180,100],[-9,102],[-101,149],[-140,78],[-137,64],[144,45],[135,50],[34,12],[104,100],[22,47],[34,68],[-54,71],[-7,9],[-44,64],[-236,32],[-164,32],[-53,18],[-135,44],[3,59],[2,37],[2,44],[-15,-7],[-16,-8],[-46,-22],[-90,-43],[4,-86],[50,-34],[118,-78],[259,-75],[206,-96],[-51,-100],[-147,-13],[-204,68],[-165,108],[-186,33],[-195,-19],[-229,-94],[-84,-62],[-37,-50],[-23,-30],[-34,-72],[-16,-33],[-128,20],[-50,7],[-200,0],[-187,0],[-181,8],[-121,-12],[-138,-26],[-343,-43],[-166,-27],[-242,-16],[-135,-21],[-65,11],[-59,9],[-104,-74],[-242,-9],[-48,12],[-153,36],[-152,7],[-191,20],[-200,38],[-200,17],[-116,29],[-30,7],[-164,-11],[0,-88],[-166,-22],[-196,-67],[-55,-96],[-110,-57],[-106,-141],[-116,-113],[-44,-36],[-38,-31],[-61,-92],[-39,-86],[-108,-77],[-86,-39],[-32,-14],[-167,-85],[-132,-108],[-112,-49],[-79,-120],[-167,-10],[-79,77],[-139,103],[-105,81],[-8,0],[-166,11],[-163,61],[-73,10],[-64,8],[-93,57],[-83,50],[-161,151],[-166,72],[-66,23],[-30,10],[-66,55],[-22,109],[-86,12],[-134,18],[-88,49],[36,59],[69,115],[94,96],[147,39],[93,50],[-113,76],[-49,59],[-13,17],[-197,127],[38,159],[-57,85],[-23,35],[-19,78],[-9,39],[-45,99],[-66,133],[-23,47],[-97,94],[-129,98],[-96,66],[-16,41],[-18,46],[-170,-5],[-209,69],[-120,44],[-189,-22],[-114,-65],[-136,40],[-61,44],[-69,50],[-130,137],[-43,98],[-26,59],[-132,93],[-184,129],[-121,68],[-84,58],[-94,15],[-57,9],[-142,-27],[-87,2],[-197,59],[-215,58],[-108,29],[-54,15],[-163,29],[-153,56],[-199,81],[-158,33],[-153,19],[-171,21],[-210,100],[-93,65],[-57,40],[107,123],[169,69],[45,18],[27,22],[58,47],[-17,3],[-49,10],[-19,4],[-21,4],[-110,19],[-181,32],[-63,65],[-5,6],[-138,163],[-165,98],[-132,130],[178,37],[-100,69],[-91,18],[-65,12],[-200,33],[-132,13],[-116,2],[-154,37],[-25,4],[-207,37],[-104,31],[-117,-8],[-9,-1],[-112,-47],[-111,-50],[-125,-57],[-164,65],[-158,21],[100,26],[99,25],[17,13],[40,29],[30,20],[-254,13],[-162,-65],[-25,-161],[131,-43],[-4,-10],[-24,-74],[-78,-156],[-127,-78],[-99,-60],[-116,48],[-45,29],[-70,43],[-187,66],[-194,94],[-13,11],[-105,89],[-190,76],[-8,3],[-128,48],[-104,69],[-37,19],[-49,24],[-82,49],[-112,67],[-46,32],[-43,30],[-57,52],[-28,26],[-69,92],[-56,116],[-156,148],[-43,46],[-44,49],[-53,114],[-20,42],[-106,153],[-130,126],[-46,115],[18,136],[82,94],[-174,2],[-154,35],[-21,5],[-104,44],[-5,80],[-155,44],[-134,61],[-193,35],[-172,14],[-210,7],[-7,-1],[-140,-5],[-137,-11],[-42,-5],[-65,-7],[-195,-27],[53,59],[17,20],[13,77],[5,26],[-139,68],[-133,10],[-198,-44],[72,-20],[87,-25],[116,-33],[-81,-29],[-107,-37],[-67,-38],[-91,-54],[-58,-79]],[[59002,14681],[-6,-4],[-71,22],[-97,29],[-36,2],[-142,10],[-120,78],[155,16],[144,4],[69,10],[176,27],[68,-92],[-140,-102]],[[59329,15105],[-486,-43],[-190,5],[-118,2],[-93,7],[-20,2],[-19,-1],[-182,-8],[-7,21],[-14,36],[105,54],[-19,85],[-12,58],[93,9],[326,33],[94,10],[113,15],[69,-13],[308,-61],[52,-211]],[[58771,15587],[107,-77],[-194,-30],[-133,-62],[-61,-28],[-41,-19],[-78,2],[-89,48],[51,73],[18,13],[49,37],[40,29],[141,-8],[190,22]],[[54563,14846],[29,-33],[42,-49],[265,29],[190,64],[13,-1],[12,11],[9,10],[15,15],[43,45],[22,-1],[-1,1],[202,34],[129,7],[88,5],[173,-4],[126,-66],[178,-94],[95,-14],[56,-8],[172,3],[13,-1],[172,-19],[197,-78],[151,-67],[51,-100],[-146,-38],[-211,-13],[-102,-55],[-41,-125],[-164,-107],[-25,-16],[-16,-95],[-30,-90],[-79,-61],[-64,-49],[34,-49],[60,-86],[-31,-58],[-31,-58],[-6,-12],[-38,-109],[87,-83],[-69,-53],[-72,-56],[78,-27],[80,-29],[1,1],[74,66],[49,44],[111,76],[18,104],[143,84],[177,43],[172,-61],[119,58],[72,69],[181,26],[-87,119],[161,60],[132,72],[140,55],[148,74],[-32,67],[103,86],[165,-35],[187,-47],[150,46],[78,61],[110,23],[140,21],[114,41],[139,103],[125,42],[55,19],[171,90],[117,50],[133,64],[165,75],[110,62],[125,66],[206,58],[230,129],[145,-23],[215,-109],[9,-125],[-12,-94],[-85,-89],[-117,-70],[-87,-68],[-97,-78],[-45,-59],[-101,-46],[-136,-12],[-159,-71],[-161,-35],[-122,-30],[-305,-85],[-159,-45],[-135,-46],[-95,-52],[-139,-57],[-157,-73],[-175,-81],[-122,-63],[-128,-62],[-156,-83],[-158,-88],[-104,-57],[-113,-61],[-105,-63],[-108,-57],[-174,-101],[-162,-107],[-100,-60],[-98,-65],[-86,-60],[-133,-91],[-115,-82],[-109,-81],[-126,-93],[-102,-75],[-111,-78],[-124,-96],[-131,-102],[-123,-103],[-169,-140],[-136,-75],[-114,-53],[-127,-64],[-173,-66],[-148,-14],[-94,-53],[-129,-66],[-191,-124],[-101,-69],[-39,-27],[-119,-5],[-44,-1],[-13,-50],[-13,-46],[-86,-36],[-81,-61],[-57,-20],[-32,-12],[-169,39],[-102,-39],[-87,58],[-48,32],[-44,-11],[-121,-30],[45,-54],[50,-63],[-226,22],[-32,-61],[-28,-51],[86,-92],[48,15],[88,28],[104,-3],[36,0],[113,-49],[149,-28],[7,50],[5,37],[201,26],[307,78],[175,122],[106,98],[5,4],[142,78],[26,92],[61,81],[97,64],[88,-61],[18,-90],[-1,-89],[-11,-103],[-120,-69],[-141,-57],[-174,-78],[-205,-88],[-102,-55],[-21,-23],[-9,-10],[-12,-12],[-15,-17],[-80,-66],[-97,-68],[-406,-298],[-212,-184],[-415,-364],[-116,-130],[-80,-100],[-15,-15],[-151,-152],[-157,-141],[-135,-116],[-111,-95],[-109,-94],[-104,-92],[-82,-88],[-221,-280],[-280,-364],[-99,-104],[-140,-105],[-180,-79],[-108,7],[-34,2],[64,119],[89,111],[-3,152],[31,147],[41,71],[-60,109],[115,88],[117,66],[100,89],[-6,-2],[-140,-30],[-12,-3],[-115,-33],[-115,-86],[-10,-3],[-132,-39],[-2,-1],[-276,26],[49,-41],[88,-74],[-24,-159],[66,-51],[52,-40],[-44,-34],[-36,-27],[0,-1],[-158,-25],[9,-41],[18,-89],[-76,-134],[-173,-147],[-119,-7],[-92,-6],[-242,4],[-46,-36],[-116,-91],[106,-57],[13,-7],[-12,-34],[-31,-86],[-76,-1],[-160,-2],[-116,-20],[-128,-10],[-182,-49],[-144,-47],[-62,-108],[-26,-66],[-91,-79],[-60,26],[-86,37],[-86,65],[-20,15],[-9,-6],[-56,-41],[-45,-32],[15,-33],[14,-31],[2,-5],[17,-36],[72,-10],[145,-19],[117,6],[124,-13],[15,40],[35,88],[84,29],[107,38],[2,122],[195,35],[173,-17],[360,51],[88,13],[-30,118],[127,-17],[109,56],[195,32],[210,48],[106,131],[127,-15],[27,-16],[67,-42],[137,-100],[164,-79],[167,-111],[167,-55],[-122,-229],[-128,-97],[-245,-115],[-141,-66],[-130,-73],[-271,-163],[-156,-94],[-743,-450],[-105,-79],[-150,-143],[-225,-215],[-144,-146],[-151,-120],[-89,-71],[-128,-109],[-153,-118],[-138,-113],[-110,-99],[-60,-69],[-106,-87],[-83,-50],[-112,-73],[-138,-121],[-84,-108],[-144,-132],[-340,-204],[-111,-119],[-61,-91],[-261,-77],[21,85],[-37,65],[48,139],[21,117],[207,49],[120,82],[83,130],[77,67],[5,97],[1,36],[149,97],[69,71],[150,103],[1,144],[175,-26],[-115,108],[272,110],[105,136],[4,5],[-29,1],[-150,3],[-35,1],[-43,-63],[-110,13],[-139,-5],[30,-63],[-14,-9],[-18,-11],[-72,-45],[-93,-68],[-38,-22],[-128,-74],[-169,-44],[-38,-76],[-36,-72],[-124,-102],[-145,1],[-34,0],[-111,30],[-34,6],[-121,21],[16,-63],[19,-71],[68,4],[9,0],[63,4],[114,-17],[124,-18],[9,-71],[3,-19],[-29,-34],[-50,-60],[-83,-47],[-47,-26],[-33,-30],[-85,-77],[-131,-73],[-144,-55],[-150,35],[-199,40],[-84,14],[-38,6],[133,112],[80,85],[127,59],[29,13],[96,53],[60,33],[-4,53],[-2,27],[-160,-67],[-31,-13],[-114,17],[-127,-64],[-35,11],[-59,19],[-65,21],[-70,23],[-2,7],[-31,91],[-83,-80],[-20,-20],[-258,31],[83,-114],[10,-14],[94,11],[134,-45],[113,-61],[-151,-104],[-94,41],[-193,-65],[-51,-2],[-95,-2],[-3,-8],[-39,-101],[-80,-31],[-22,-8],[-43,-17],[-11,-4],[-14,-5],[1,-1],[23,-43],[30,-54],[1,-6],[6,-77],[3,-45],[-39,5],[-144,20],[-213,-36],[-172,-68],[-115,-57],[-75,-57],[-39,-29],[1,-156],[-34,-23],[-81,-57],[-229,114],[-119,41],[-131,9],[-149,6],[-126,51],[-31,12],[-53,20],[-109,41],[-111,-34],[-24,-8],[-75,-34],[-64,-29],[-4,-10],[-43,-106],[-39,-37],[-82,-77],[1,-34],[0,-13],[0,-31],[-74,-93],[143,-47],[147,-67],[118,59],[18,9],[-2,-39],[-2,-40],[127,-69],[116,-137],[123,-4],[67,38],[4,2],[89,39],[19,-124],[22,-130],[1,0],[48,-1],[123,-2],[1,0],[1,0],[-9,136],[100,139],[-123,5],[157,155],[173,47],[106,-26],[144,-41],[189,-76],[99,-27],[175,-16],[158,116],[145,-46],[165,-9],[-54,73],[-25,33],[72,15],[26,5],[79,42],[-126,45],[-137,63],[14,62],[171,51],[124,76],[74,96],[65,45],[21,14],[44,57],[35,46],[-151,95],[-130,-70],[-122,70],[-51,71],[-10,108],[17,38],[0,2],[12,27],[26,27],[47,48],[127,24],[132,-16],[153,-70],[17,-17],[76,-77],[103,-34],[-13,-19],[-7,-9],[-14,-22],[-21,-31],[-34,-49],[34,13],[97,37],[111,39],[100,-115],[21,-130],[121,-270],[121,-138],[139,-184],[115,-175],[-134,-87],[-110,-111],[-72,-88],[-95,-73],[-288,-74],[-241,-66],[-364,-101],[-111,-38],[-172,-63],[-148,-65],[-301,-135],[-134,-73],[-121,-61],[-165,-84],[-118,-62],[-125,-65],[-154,-85],[-117,-70],[-122,-65],[-152,-87],[-133,-64],[-108,-58],[-166,-88],[-230,-129],[-115,-71],[-118,-90],[-151,-103],[-288,-197],[-147,-139],[-47,47],[-2,0],[-302,277],[-87,110],[-14,19],[-10,31],[-81,83],[34,73],[8,19],[61,84],[27,37],[28,98],[47,22],[107,0],[70,-60],[134,44],[48,20],[13,6],[88,0],[211,136],[68,43],[-119,239],[-18,35],[-42,1],[-209,3],[-87,1],[-76,1],[-14,0],[-574,-50],[-200,-180],[54,-137],[87,-14],[207,33],[103,-67],[-56,-197],[-79,-58],[-30,-22],[-77,-56],[-96,-35],[-35,-13],[-40,5],[-16,2],[-4,-7],[-212,19],[-60,-13],[-152,-2],[-11,0],[-166,32],[25,-61],[-143,5],[-26,1],[-113,-8],[-115,-8],[-269,-13],[-117,16],[-45,-2],[-39,-1],[-15,-15],[-32,-30],[-3,0],[-72,-50],[7,-105],[132,-112],[278,4],[180,25],[144,34],[121,63],[177,28],[279,9],[151,21],[192,-1],[150,-46],[147,-121],[84,-72],[-150,-31],[-103,-9],[-261,-2],[-209,-80],[-359,-124],[-326,-77],[-56,-18],[-170,-30],[-123,-28],[-138,-43],[-275,-65],[-153,-27],[-165,-29],[-159,-14],[-178,-25],[-426,-20],[-138,18],[-146,-20],[-239,19],[-235,77],[-269,22],[-362,4],[-99,-8],[-132,-11],[-152,-17],[-153,7],[-194,-11],[-167,9],[-198,73],[-128,101],[-84,77],[-91,107],[67,62],[31,139],[61,109],[74,132],[0,1],[48,85],[235,415],[-8,45],[-13,73],[188,53],[-206,35],[-14,3],[44,91],[42,88],[43,91],[32,82],[31,118],[30,135],[35,106],[37,117],[51,134],[86,206],[97,206],[83,129],[50,71],[39,79],[84,169],[78,130],[140,180],[60,76],[61,80],[94,116],[150,171],[83,91],[78,87],[88,86],[122,105],[190,206],[154,165],[89,99],[23,26],[122,133],[115,126],[190,199],[62,64],[52,52],[87,86],[147,144],[82,79],[49,50],[117,120],[250,258],[102,108],[106,114],[133,124],[98,170],[86,139],[128,254],[104,194],[90,153],[29,129],[34,150],[2,197],[4,31],[2,24],[4,34],[124,18],[-23,95],[-17,72],[1,219],[7,50],[10,71],[135,83],[40,37],[43,41],[4,140],[-34,94],[-8,134],[-12,184],[-55,71],[-9,11],[-100,31],[-140,44],[8,23],[23,62],[17,44],[-50,19],[-63,24],[-77,29],[-144,115],[-140,138],[-38,114],[-108,-28],[-171,56],[-207,27],[-287,53],[-156,-3]]],"transform":{"scale":[0.00001657077621776189,0.000024255317633177566],"translate":[-75.55978826699987,38.92903715]}} diff --git a/src/js/config/mapconfig/mapfiles/county/nm-counties.json b/src/js/config/mapconfig/mapfiles/county/nm-counties.json new file mode 100644 index 00000000..a211ade5 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/nm-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-109.05016229399985,31.331902287000162,-103.00215373099991,37.00028683500017],"geometries":[{"type":"Polygon","properties":{"name":"NM"},"id":"35039","arcs":[[0,1,2,3,4,5,6]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35045","arcs":[[-6,7,8,9]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35059","arcs":[[10,11,12,13]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35055","arcs":[[14,15,-1,16]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35007","arcs":[[-13,17,18,-15,19]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35033","arcs":[[-19,20,21,22,-2,-16]]},{"type":"MultiPolygon","properties":{"name":"NM"},"id":"35043","arcs":[[[23,24]],[[25,26,27,28,29,-8,-5]]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35021","arcs":[[-12,30,31,-21,-18]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35031","arcs":[[-30,32,33,-9]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35049","arcs":[[-23,34,35,36,-27,37,-25,38,-3]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35028","arcs":[[-4,-39,-24,-38,-26]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35047","arcs":[[-32,39,40,41,-35,-22]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35037","arcs":[[42,43,44,45,46,-40,-31,-11]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35006","arcs":[[-29,47,48,49,50,51,-33]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35001","arcs":[[-37,52,53,-48,-28]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35019","arcs":[[-47,54,55,56,-41]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35057","arcs":[[-57,57,58,59,-53,-36,-42]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35061","arcs":[[-54,-60,60,-49]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35009","arcs":[[61,62,-44]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35011","arcs":[[63,64,65,-55,-46]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35041","arcs":[[-63,66,67,68,-64,-45]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35053","arcs":[[-59,69,70,71,-50,-61]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35003","arcs":[[-72,72,73,74,-51]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35027","arcs":[[-66,75,76,77,-70,-58,-56]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35005","arcs":[[-69,78,79,80,-76,-65]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35025","arcs":[[81,82,-79,-68]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35051","arcs":[[-78,83,84,85,86,-73,-71]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35035","arcs":[[-81,87,88,89,-84,-77]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35017","arcs":[[-87,90,91,92,-74]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35013","arcs":[[93,94,-85,-90]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35015","arcs":[[-83,95,-88,-80]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35023","arcs":[[96,97,-92]]},{"type":"Polygon","properties":{"name":"NM"},"id":"35029","arcs":[[-95,98,-97,-91,-86]]}]},"states":{"type":"GeometryCollection","bbox":[-109.05016229399985,31.331902287000162,-103.00215373099991,37.00028683500017],"geometries":[{"type":"Polygon","properties":{"name":"New Mexico"},"id":"35","arcs":[[42,61,66,81,95,88,93,98,97,92,74,51,33,9,6,16,19,13]]}]}},"arcs":[[[50322,99912],[2,-42],[13,-34],[-3,-42],[-16,-30],[0,-21],[13,-58],[-5,-19],[14,-21],[9,-26],[15,-46],[16,-19],[12,-17],[21,-33],[11,-15],[6,-16],[6,-22],[5,-21],[12,-21],[6,-26],[3,-25],[8,-42],[6,-21],[11,-21],[11,-26],[10,-29],[9,-17],[14,-26],[15,-36],[16,-43],[6,-27],[6,-18],[13,-6],[7,-4],[11,-26],[6,-24],[4,-23],[10,-19],[3,-23],[6,-26],[6,-18],[2,-22],[4,-24],[0,-29],[12,-16],[-6,-19],[3,-20],[8,-41],[5,-33],[6,-23],[7,-23],[-7,-20],[0,-1],[-6,-22],[7,-9],[7,-8],[7,-27],[9,-18],[19,-28],[14,-36],[11,-14],[12,-21],[13,-25],[14,-31],[7,-27],[12,-22],[16,-22],[12,-13],[9,-17],[8,-35],[7,-20],[3,-21],[3,-24],[3,-13],[5,-18],[4,-23],[9,-21],[2,-22],[3,-23],[7,-27],[6,-38],[2,-41],[-2,-19],[-9,-44],[-6,-41],[-7,-53],[-5,-42],[1,-52],[-3,-22],[-4,-19],[-2,-28],[5,-56],[10,-116],[-2,-7],[-2,-11],[1,-21],[0,-22],[-4,-22],[6,-21],[2,-26],[1,-25],[-9,-29],[-4,-20],[-3,-22],[-2,-20],[0,-24],[-6,-40],[-2,-18],[-5,-17],[-22,-62],[-29,-64],[-8,-24],[-14,-36],[-6,-17],[-5,-19],[-21,-45],[-5,-17],[-1,-19],[-6,-17],[-20,-57],[-14,-28],[-7,-26],[53,-573],[4,-222],[0,-16],[1,-92],[2,-95],[0,-19],[-2,-17],[-7,-30],[-7,-30],[-2,-29],[-4,-22],[8,-43],[35,-194],[25,-140],[5,-25],[3,-20],[-18,-55],[-5,-13],[-33,-100],[-3,-8],[0,-2],[38,-180],[13,-64],[118,-311],[26,-219],[6,-48],[12,-103],[-2,-19],[-22,0],[-243,0],[0,-118],[-1,-132],[157,-9],[70,-276],[49,-137],[18,-50],[14,-39],[26,-73],[15,-181],[14,-163],[45,-189],[131,-550],[4,-37],[3,-18],[6,-24],[-35,-100],[-17,-49],[42,-365],[133,-280],[12,-26],[5,-25],[11,-63],[6,-36],[22,-127],[3,-235],[17,-151],[-87,-240],[-7,-20],[-34,-94],[-109,-223],[-3,-162],[-4,-223],[-1,-85],[0,-14],[19,-294],[10,-170],[-20,-120],[-8,-45],[0,-1],[-40,-88],[-14,-30],[-29,-63],[-6,-12],[-16,-36],[-1,-3],[-14,-29],[0,-1],[-1,0],[-52,-45],[-6,-5],[-120,-101],[0,-1],[-265,-97],[-135,-50],[-22,-8],[-66,-19],[-55,-16],[-81,-23],[-186,-54],[-57,-16],[-102,-29],[-22,-6],[-27,-8],[-78,-23],[-5,-1],[-167,-210],[-123,-140],[-33,-117],[10,-28],[80,-29],[52,-18],[231,-81],[236,-83],[198,-69],[31,-11],[111,-40],[22,-4],[25,-10],[36,-13],[38,-13],[245,-86],[122,-43],[395,-139],[99,-36],[30,-11],[188,-67],[105,-37],[91,-33],[291,-100],[80,-28],[299,-101],[309,-117],[3,-4],[11,-12],[33,-37],[192,-214],[65,-73],[0,-1],[42,-46],[31,-35],[476,-532],[0,-1],[205,-228],[22,-25],[29,-32],[27,-30],[44,-51],[5,-5],[17,-20],[207,-235],[61,-69],[52,-59],[5,-6],[28,-32],[22,-25],[26,-40],[155,-213],[145,-163],[98,-110],[59,-27],[128,-58],[27,-12],[14,-6],[554,-251],[138,-63],[105,-47],[178,-81],[122,-55],[83,-38],[134,-60],[282,-128],[208,-85],[579,-265],[788,-360]],[[58198,82583],[-17,-12],[-13,-11],[-12,-13],[-7,-16],[-8,-19],[-7,-35],[7,-18],[13,-20],[9,-23],[13,-12],[1,-32],[-11,-19],[0,-1],[-20,-25],[-13,-33],[-18,-16],[-14,-16],[-2,-32],[-7,-28],[-11,-10],[-10,-4],[-18,-2],[-28,-5],[-29,-8],[-29,-9],[-20,-12],[-17,-11],[-24,-9],[-23,-7],[-23,-10],[-39,-18],[-16,-7],[-16,-5],[-28,-7],[-18,-14],[-5,-18],[-10,-15],[-23,-25],[-18,-10],[-17,-13],[-13,-14],[-12,-16],[-12,-15],[-19,-19],[-19,-14],[-15,-11],[-15,-6],[-26,-10],[-22,-8],[-29,-2],[-17,4],[-17,6],[-22,5],[-31,7],[-23,2],[-21,1],[-20,1],[-25,-5],[-19,-2],[-22,-2],[-17,2],[-17,4],[-29,16],[-18,13],[-1,1],[-74,-11],[-14,-10],[-19,-9],[-17,-3],[-29,-4],[-24,-2],[-23,-1],[-27,6],[-22,11],[-22,11],[-22,5],[-23,4],[-18,1],[-25,6],[-22,3],[-22,1],[-14,3],[-84,20],[-67,16],[-96,23],[-15,-6],[-13,-19],[-45,-42],[-26,-23],[-28,-26],[-9,-8],[-41,-37],[-13,-6],[-21,-14],[-8,-26],[-5,-29],[-2,-36],[3,-21],[-36,-25],[-38,-17],[-37,-13],[-36,-7],[-39,-6],[-34,-7],[-29,-2],[-25,18],[-5,10],[-81,46],[-5,1],[-10,2],[-29,4],[-153,82],[-115,22],[-7,1],[-5,0],[-23,-2],[-15,-15],[-33,-32],[-19,-9],[-24,9],[-27,22],[-36,7],[-30,5],[-41,1],[-39,5],[-35,2],[-29,1],[-21,19],[-10,18],[0,28],[-9,23],[-28,31],[-14,18],[-13,14],[-17,3],[-35,12],[-15,11]],[[55105,81978],[8,280],[3,94],[0,1],[-1,41],[-559,-1],[-73,-1],[-60,0],[-41,0],[-23,0],[-197,-1],[-43,0],[-183,-1],[-61,0],[-24,0],[-47,0],[-34,0],[-91,0],[-158,0],[-168,0],[-21,0],[-20,0],[-69,0],[-210,-1],[-238,-1],[-29,0],[-248,2],[-34,1],[-54,0],[-376,0],[-18,0],[-30,0],[-34,0],[-66,0],[-29,0],[-36,0],[-56,0],[-193,-1],[-78,0],[-18,0],[-101,-1],[-37,0],[-62,1],[-22,0],[-31,0],[-74,0],[-42,0],[-7,0],[-28,0],[-29,0],[-17,-1],[-29,0],[-3,0],[-43,0],[-24,0],[-32,0],[-133,0],[-3,0],[-27,0],[-31,0],[-75,0],[-24,0],[-199,-2],[-119,1],[-312,1],[-21,0],[-52,0],[-110,0],[-33,0],[-19,0],[-19,0],[-51,0],[-67,-1],[-17,0],[-24,0],[-24,0],[-26,-1],[-17,0],[-18,0],[-29,0],[-17,0],[-35,0],[-23,0],[-2,0],[-69,1],[-67,0],[6,-11],[0,-15],[-7,-9],[0,-1],[2,-9],[102,-47],[4,-2],[-39,-32],[-4,-8],[-5,-14],[-1,-3],[-3,-13],[0,-4],[1,-4],[1,-7],[4,-6],[14,-24],[6,-9],[5,-6],[10,1],[15,3],[33,2],[27,0],[17,0],[41,-3],[3,0],[23,-4],[-2,-2],[-10,-24],[-9,-20],[16,-4],[5,-1],[1,0],[30,-13],[-1,-131],[0,-104],[0,-24],[0,-33],[0,-90],[0,-137],[0,-27],[0,-154],[0,-231],[0,-37],[-138,0],[-43,0],[-136,0],[-93,0],[-51,0],[-118,0],[-186,-1],[-44,1],[-48,-1],[-54,0],[-10,0],[-14,0],[-31,0],[-29,0],[-47,-1],[-39,1],[-107,0],[-174,0],[-18,0],[-83,0],[-392,1],[-172,0],[-112,0],[-739,2],[-285,1]],[[46374,81134],[0,36],[0,36],[0,35],[0,142],[0,204],[0,48],[-44,1],[1,68],[1,29],[1,25]],[[46333,81758],[13,75],[10,50],[-3,35],[-5,64],[0,69],[-1,137],[0,13],[0,151],[0,1],[-3,26],[-55,0],[-167,-1],[-97,-1],[-48,0],[-10,0],[-13,-1],[-115,0],[-378,-1],[-10,0],[-26,0],[-166,0],[-278,-1],[-48,0],[-401,-3],[-147,-3],[-163,-6],[-108,-3],[-50,6],[-74,8],[-38,3],[-45,-1],[-44,-2],[-42,-1],[-38,0],[-120,-1],[-172,-1],[-22,-1],[-165,0],[-22,0],[-46,-1],[-82,0],[-31,0],[-90,0],[-240,0],[-17,0],[-108,2],[-129,1],[-125,-1],[-18,0],[-86,0],[-29,1],[-18,0],[-80,0],[-28,-1],[-266,-2],[-191,-2],[-65,0],[-46,-1],[-74,-1],[-89,-1],[-82,0],[-207,-2],[-19,0],[-166,-2],[-211,-2],[-256,-2],[-26,0],[-167,-2],[-43,0],[-10,-1],[-36,-1],[-21,-1],[-56,-1],[-35,-1],[-172,1],[-4,0],[-59,0],[-27,0],[-135,0],[-280,1],[-74,0],[-24,0],[-82,-1],[-100,-1],[-61,0],[-75,-1],[-207,-2],[-70,-1],[-35,0],[-26,-1],[-36,0],[-58,0],[-36,0],[-18,0],[-64,-1],[-25,0],[-49,-1],[-59,1],[-18,0],[-19,-1],[-22,0],[-232,-3],[-292,-2],[-180,-1],[-26,0],[-17,0],[-70,-1],[-32,0],[-192,-1],[-130,-2],[-15,0],[-84,0],[-236,-2],[-63,0],[-18,0],[-143,-1],[-2,0],[-5,0],[-70,1],[-37,-1],[-21,0],[-195,0],[-39,0],[-99,0],[-101,0],[-37,1],[-57,3],[-66,2],[0,18],[0,1],[-2,19],[-1,17],[0,61],[0,30],[-2,295],[-1,74],[0,116],[-3,328],[0,35],[0,8],[-1,223],[-1,114],[-1,155],[-2,227],[-2,377],[-5,126],[1,59],[5,346],[3,175],[2,97],[3,189],[1,67],[0,32],[1,36],[5,329],[4,262],[1,23],[-181,0],[-220,-1],[-77,0],[-148,0],[-124,0],[-83,0],[-28,0],[-18,-1],[-25,0],[-94,1],[-36,0],[-347,0],[-108,0],[-33,0],[-1,0],[-204,0],[-44,0],[-55,0],[-86,-2],[-63,0],[-26,0],[-3,0],[-76,0],[-218,0],[-21,0],[-160,0],[-79,0],[-103,0],[-133,0],[-153,0],[-169,0],[-129,0],[-78,0],[-137,0],[-29,0],[-106,-1],[-78,0],[-130,0],[-176,-2],[-90,0],[-104,0],[-279,0],[-83,0],[-254,1],[-79,0],[-138,0],[-1,0],[-19,0],[-144,0],[-214,1],[-52,0],[-31,0],[-219,0],[-64,0],[-68,0],[-17,0],[-210,3],[-59,1],[-1,0],[-83,0],[-50,1],[-95,1],[-22,-1],[-25,0],[-290,2],[-18,0],[-203,2],[-122,1],[-109,1],[-63,0],[-53,1],[-306,2],[-36,1],[-436,4],[-96,2],[-7,0],[-19,0],[-220,1],[-80,0],[-19,0],[-66,0],[-182,1],[-582,1],[-16,1],[-116,0],[-105,0],[-39,0],[-89,1],[-78,0],[-41,0],[-60,0],[-315,1],[-33,0],[-23,0],[-195,4],[-20,0],[-34,0],[-227,4],[-179,3],[-452,8],[-27,0],[-182,3],[-216,4],[-42,1],[-10,0],[-76,1],[-244,4],[-118,2]],[[23576,86230],[2,186],[-6,317],[1,30],[-1,101],[-1,17],[0,61],[0,2],[-1,67],[-1,61],[0,74],[-1,90],[-1,21],[0,19],[0,59],[0,42],[-2,129],[-3,284],[0,5],[-2,126],[-1,58],[-1,45],[-2,51],[-2,20],[0,51],[0,78],[0,47],[-22,251],[22,0],[0,49],[8,83],[7,178],[7,136],[1,52],[1,23],[7,233],[0,22],[-10,157],[-2,32],[-9,139],[-9,135],[-1,29],[0,18],[0,22],[-9,50],[-10,192],[3,168],[0,20],[3,129],[0,23],[2,207],[4,385],[0,49],[1,53],[6,67],[0,191],[0,31],[0,28],[0,141],[0,66],[0,120],[0,80],[0,7],[0,16],[0,25],[0,108],[0,20],[10,262],[2,74],[1,31],[1,55],[4,140],[4,158],[3,136],[6,267],[5,120],[0,104],[0,35],[0,1],[0,33],[1,173],[0,59],[0,24],[3,59],[1,141],[-4,310],[11,76],[41,2],[18,0],[0,27],[4,203],[1,67],[0,24],[1,262],[0,39],[1,146],[2,453],[0,42],[0,1],[-3,54],[6,289],[-1,24],[1,46],[0,64],[3,306],[-1,43],[-2,164],[0,5],[1,24],[57,-62],[14,-15],[27,-12],[45,-20],[69,-9],[24,9],[15,19],[-31,43],[-19,27],[-25,45],[6,47],[2,19],[39,29],[29,-4],[13,-4],[11,-4],[33,-10],[41,-3],[47,3],[33,35],[3,24],[3,18],[-45,22],[-65,-12],[-3,0],[-21,19],[-6,28],[-9,74],[34,47],[3,38],[-9,25],[-18,48],[40,58],[39,5],[23,3],[77,43],[28,-9],[46,-24],[24,-7],[33,-6],[28,9],[21,32],[5,7],[10,21],[22,30],[16,22],[42,12],[11,3],[19,0],[22,2],[20,14],[26,21],[22,28],[8,23],[-1,38],[0,3],[-11,16],[-3,24],[11,15],[23,21],[24,20],[15,12],[38,17],[24,6],[32,1],[16,-22],[1,-13],[1,-9],[14,-28],[27,-25],[33,-14],[34,-17],[16,-9],[19,-4],[31,5],[29,23],[2,9],[2,10],[12,23],[18,22],[7,9],[42,15],[26,-8],[43,-11],[52,-7],[5,12],[-8,39],[1,6],[5,35],[12,82],[13,23],[59,99],[24,38],[29,45],[38,19],[45,22],[16,8],[11,-5],[8,-4],[29,-10],[44,-17],[6,-2],[13,-7],[23,-11],[43,15],[7,12],[0,9],[1,44],[3,6],[6,14],[7,14],[19,7],[32,-9],[3,-9],[18,-49],[44,-30],[67,2],[21,41],[1,2],[4,12],[8,20],[12,31],[64,34],[146,156],[5,5],[56,22],[19,-8],[10,-5],[25,-9],[43,12],[19,5],[16,4],[26,16],[21,16],[15,10],[18,-1],[15,-3],[5,-1],[25,8],[21,18],[1,21],[0,7],[14,22],[16,13],[20,14],[4,2],[13,8],[18,9],[10,13],[4,18],[-1,18],[-6,37],[1,19],[11,17],[19,11],[18,17],[11,10],[26,25],[-8,29],[-23,21],[-23,17],[-1,1],[-8,6],[-13,16],[-4,9],[-23,58],[-43,113],[-3,46],[-3,62],[-4,68],[22,7],[6,2],[24,21],[24,19],[30,32],[2,18],[-17,14],[-22,12],[-13,7],[-10,19],[-6,34],[-17,21],[-27,20],[-20,10],[-8,31],[14,27],[14,18],[26,6],[31,10],[24,9],[29,22],[2,3],[18,15],[0,31],[0,4],[5,27],[13,14],[7,7],[27,16],[39,-3],[46,24],[103,15],[41,23],[11,14],[14,45],[-8,57],[-10,42],[-25,109],[4,19],[23,15],[18,6],[14,21],[-7,20],[-2,32],[15,29],[114,118]],[[26939,99994],[162,0],[169,0],[3,0],[38,0],[377,0],[410,0],[66,0],[215,0],[203,0],[190,0],[19,0],[524,0],[213,0],[2,0],[147,0],[3,0],[75,0],[49,0],[90,0],[40,0],[45,0],[398,0],[260,0],[188,0],[481,0],[97,0],[90,0],[24,0],[119,0],[185,0],[278,0],[25,0],[795,0],[527,0],[136,0],[70,0],[241,2],[257,0],[85,0],[76,0],[26,0],[66,0],[222,0],[53,0],[115,0],[24,0],[77,0],[46,0],[226,0],[27,0],[48,0],[75,0],[120,0],[21,0],[164,0],[72,0],[218,0],[20,-2],[24,-30],[96,-104],[332,0],[96,0],[40,0],[654,1],[72,0],[32,0],[135,1],[88,0],[2,0],[106,0],[414,-1],[217,2],[241,2],[781,8],[81,0],[6,0],[150,2],[539,-2],[51,0],[154,-4],[416,0],[91,1],[388,4],[235,3],[45,0],[80,1],[12,0],[33,0],[49,1],[421,4],[159,0],[18,0],[52,0],[196,0],[121,1],[498,1],[340,1],[220,1],[29,0],[57,0],[520,1],[60,1],[477,3],[55,-2],[201,2],[20,-1],[64,-2],[10,0],[215,2],[79,-2],[101,-3],[16,1],[70,2],[94,1],[86,0],[519,1],[48,2],[193,-1],[20,-2],[237,0],[314,0],[365,5],[10,0],[43,0],[101,1],[24,0],[87,0],[128,1],[29,3],[197,1],[10,1],[225,1],[36,0],[179,-2],[247,1],[9,0],[219,2],[12,0],[60,1],[10,0],[50,-1],[120,1],[33,0],[43,-1],[125,1],[94,1],[2,0],[39,1],[24,0],[151,1],[41,0],[2,0],[160,1],[214,2],[100,0],[32,1]],[[23576,86230],[0,-139],[0,-7],[-1,-66],[-1,-170],[-1,-132],[0,-25],[-1,-142],[0,-62],[-1,-86],[0,-54],[-1,-146],[-1,-56],[2,-75],[1,-101],[-1,-56],[-1,-72],[-1,-66],[-2,-85],[-3,-132],[0,-75],[-10,-235],[0,-27],[-3,-309],[0,-60],[-2,-197],[-1,-159],[0,-36],[0,-65],[-1,-56],[-2,-212],[0,-34],[0,-25],[-1,-70],[-1,-109],[0,-35],[0,-42],[-2,-184],[-1,-168],[0,-42],[0,-60]],[[23540,82358],[-71,0],[-173,2],[-58,0],[-31,0],[-146,1],[-112,0],[-27,1],[-49,0],[-72,0],[-133,1],[-30,0],[-213,1],[-83,1],[-22,-2],[-22,2],[-4,0],[-34,0],[-169,1],[-35,0],[-98,1],[-56,0],[-415,2],[-31,1],[-50,0],[-267,2],[-242,1],[-304,2],[-153,1],[-5,0],[-48,2],[-29,0],[-35,0],[-295,2],[-33,0],[-282,2],[-293,1],[-99,0],[-224,1],[-285,2],[-120,0],[-20,1],[-90,0],[-71,1],[-120,-1],[-81,0],[-86,4],[-9,-2],[-5,-1],[-71,0],[-257,1],[-169,1],[-97,0],[-252,1],[-10,0],[-51,1],[-41,0],[-108,0],[-18,0],[-136,1],[-145,0],[-142,1],[-70,0],[-17,0],[-210,1],[-10,0],[-63,0],[-231,1],[-134,1],[-90,0],[-74,0],[-295,0],[-217,0],[-89,0],[-226,-1],[-38,0],[-75,0],[-19,0],[-59,0],[-17,0],[-144,-1],[-190,0],[-58,-1],[-82,0],[-101,0],[-82,0],[-106,0],[-160,0],[-46,0],[-5,0],[-64,0],[-60,0],[-217,-2],[-18,0],[-226,-2],[-39,0],[-32,0],[-279,1],[-187,0],[-47,1],[-10,0],[-120,-1],[-738,2],[-18,0],[-44,0],[-191,0],[-110,1],[-81,0],[-171,-3],[-30,0],[-728,1],[-446,0],[-28,0],[-71,0],[-207,1],[-68,0],[-33,0],[-21,0],[-61,0],[-28,0],[-73,1],[-168,1],[-57,0],[-48,1],[-108,0],[-103,0],[-7,0],[-48,0],[-72,1],[-212,1],[-327,0],[-31,0],[-144,0],[-106,0],[-121,1],[-44,0],[-314,1],[-421,1],[-62,-4],[-121,0],[-100,1],[-57,0],[-223,0],[-35,0],[-42,0],[-58,-1],[-66,1],[-86,0],[-436,1],[-273,0],[-431,1],[-78,0],[-48,-3],[-262,0],[-80,0],[-59,1],[-41,0],[-97,0],[-281,0],[-31,0],[-44,0],[-111,0],[-56,0],[-36,0],[-101,0],[-25,0],[-43,0],[-116,0],[-171,1],[-46,0],[-183,0],[-36,0],[-119,0],[-88,0],[-144,0],[-397,1],[-292,3],[-64,-7],[-45,2],[-82,2],[-50,0],[-154,0],[-56,0],[-81,0],[-26,0],[-62,0],[-21,0],[-281,0],[-141,0],[-60,0],[-112,-3],[-97,-1],[-37,0],[-42,0],[-118,-1],[-39,0],[-295,-1],[-27,0],[-2,0],[-92,0]],[[69,82394],[1,43],[0,2],[0,96],[0,18],[2,123],[0,174],[1,96],[0,30],[0,58],[0,5],[-1,54],[0,20],[0,104],[0,1],[0,30],[0,23],[0,99],[0,101],[1,52],[0,108],[0,45],[0,93],[0,18],[-1,109],[0,23],[0,71],[1,330],[0,25],[0,72],[-3,141],[-1,249],[0,14],[0,16],[0,10],[-1,130],[-2,459],[0,123],[3,55],[0,42],[2,29],[-2,40],[0,18],[0,125],[0,219],[1,60],[0,203],[0,19],[0,59],[0,36],[0,149],[0,72],[-1,28],[2,50],[2,156],[-1,94],[1,54],[0,31],[0,22],[0,98],[0,60],[0,215],[0,47],[0,49],[0,44],[0,29],[-1,124],[0,54],[1,68],[-1,103],[0,36],[0,109],[0,86],[1,206],[0,20],[0,34],[0,29],[1,229],[1,201],[-5,123],[0,25],[1,136],[0,165],[1,118],[1,290],[0,11],[0,246],[1,293],[0,199],[0,45],[0,31],[0,57],[1,168],[0,22],[3,283],[-2,159],[1,30],[1,129],[0,155],[-1,56],[-1,159],[1,29],[0,37],[1,42],[0,40],[0,56],[-1,63],[1,113],[0,45],[0,34],[-1,22],[0,35],[0,63],[0,44],[0,39],[0,15],[1,52],[-1,103],[0,43],[0,29],[0,160],[0,25],[0,110],[1,24],[-1,100],[0,194],[-1,351],[1,90],[0,319],[0,54],[1,88],[0,100],[1,95],[-1,234],[0,11],[0,34],[0,20],[0,50],[0,22],[0,62],[1,216],[0,65],[0,211],[0,58],[0,125],[0,133],[0,23],[1,182],[0,82],[0,114],[0,102],[0,228],[0,92],[0,128],[0,82],[0,86],[0,38],[0,48],[0,37],[1,228],[0,7],[0,85],[-1,31],[1,24],[-1,85],[0,53],[-1,173],[0,44],[0,27],[0,17],[0,5],[-1,46],[2,78],[1,87],[0,38],[0,127],[0,83],[0,273],[0,222],[0,76],[0,124],[0,375],[0,125],[0,54],[1,225],[0,156],[0,150],[0,2],[27,0],[156,-1],[4,0],[58,-1],[52,0],[354,-1],[9,0],[7,0],[70,0],[230,0],[424,0],[38,0],[72,-1],[47,0],[75,0],[3,0],[123,0],[165,0],[47,0],[77,0],[436,0],[206,-1],[103,0],[21,0],[112,1],[59,0],[116,1],[23,0],[223,0],[27,0],[42,0],[211,1],[98,-1],[147,0],[22,0],[53,0],[90,-1],[53,0],[40,0],[73,-1],[213,1],[42,0],[27,0],[18,0],[60,0],[51,0],[132,0],[134,0],[23,0],[8,0],[161,0],[33,0],[71,0],[186,1],[332,1],[192,0],[30,0],[98,0],[380,1],[53,0],[145,1],[19,0],[79,0],[125,0],[17,0],[115,0],[88,3],[21,-1],[353,0],[114,0],[128,0],[148,0],[282,1],[111,0],[244,0],[94,0],[135,0],[357,-2],[267,2],[48,1],[247,0],[239,1],[86,0],[127,0],[274,1],[4,0],[302,1],[127,0],[95,0],[131,0],[53,0],[59,0],[305,-1],[23,0],[18,0],[5,0],[34,0],[539,1],[75,0],[286,0],[162,1],[191,0],[3,0],[63,0],[77,1],[286,-1],[21,-10],[136,1],[447,2],[57,1],[144,0],[84,1],[115,0],[17,0],[29,0],[303,1],[407,2],[27,0],[209,1],[71,0],[24,2],[189,0],[363,1],[143,0],[188,0],[129,1],[36,0],[218,0],[85,0],[80,0],[69,0],[24,1],[308,2],[210,2],[11,0],[47,0],[83,0],[134,0],[246,0],[417,0],[24,0],[87,0],[314,0],[29,0],[1,0],[360,0],[157,0],[157,0],[38,0],[61,0],[20,0],[29,0],[5,0],[17,0],[120,0],[225,0],[924,0],[140,0],[220,0],[268,0],[285,0],[72,0],[274,0],[352,0],[427,0],[491,0],[166,0],[340,0],[2,0],[52,0],[18,0],[1,0],[55,0],[24,0],[23,0],[93,0],[63,0],[57,0],[120,0],[210,0],[38,0],[298,0],[121,0],[229,0],[162,0],[25,0],[136,0],[28,0],[36,0],[20,0],[228,0],[52,0],[100,0],[40,0],[21,0],[1,0],[127,0],[38,0],[66,0],[8,0],[123,0],[23,0],[56,0],[26,0],[71,0],[43,0],[53,0],[31,0],[54,0],[27,0],[21,0],[3,0],[22,0]],[[99350,77755],[-213,0],[-327,0],[-541,0],[-19,0],[-293,7],[-1,0],[-294,-1],[-74,-1],[-208,0],[-306,1],[-148,-1],[-145,-2],[-297,2],[-293,0],[-90,1],[-208,4],[-134,1],[-119,1],[-37,0],[-189,-1],[-342,-2],[-43,2],[-121,0],[-5,0],[-22,0],[-73,0],[-86,-1],[-73,1],[-72,0],[-134,-1],[-301,2],[-307,-1]],[[93835,77766],[-2,91],[-1,86],[3,302],[1,37],[0,112],[0,127],[0,121],[0,139],[0,255],[1,511],[0,2],[0,193],[1,326],[0,57],[2,23],[0,311],[0,281],[1,87],[0,45],[0,86],[0,116],[-4,126],[-1,47],[-3,48],[0,24],[-1,35],[2,97],[0,151],[0,100],[1,102],[1,61],[-1,40],[0,39],[1,54],[-1,330],[151,1],[15,0],[0,23],[0,1],[-2,111],[-1,191],[-2,133],[2,330],[2,199],[-1,309],[1,78],[0,1],[0,171],[-174,-1],[-87,0],[-41,0],[-10,0],[-163,0],[-133,1],[-285,1],[-375,1],[-647,1],[-151,1],[-175,-2],[-59,0],[-371,1],[-56,0],[-387,2],[-158,0],[-284,1],[-66,1],[-229,1],[-282,-7],[-175,-4],[-130,-1],[-38,0],[-322,-3],[-261,-1],[-316,-2],[-65,-1],[-31,0],[-15,0],[-5,0],[-393,-3],[-62,0],[-258,2],[-170,-3],[-145,1],[-94,0],[-126,1],[-136,1],[-26,0],[-198,2],[1,440],[0,252],[1,193],[0,1],[1,201],[3,469],[-84,1],[-72,0],[-140,1],[-415,3],[-637,-2],[-71,-1],[-68,1],[-631,3],[-19,0],[-554,3],[-384,1],[-201,1],[-139,-3],[-20,0],[-59,1],[-59,0],[-2,118],[2,115],[0,83],[0,56],[0,32],[0,44],[-1,41],[0,100],[0,117],[0,61]],[[83353,86198],[2,209],[1,44],[1,158],[-1,154],[-5,79],[-1,132],[2,71],[0,181],[0,29],[1,47],[1,27],[-1,152],[0,129],[0,80],[0,49],[0,28],[0,59],[0,1],[-1,169],[-1,159],[2,97],[1,264],[8,0],[0,128],[2,118],[1,71],[1,58],[0,48],[-1,29],[0,54],[-1,147],[-2,31],[-1,117],[-1,114],[2,135],[0,33],[0,35],[0,12],[0,82],[1,29],[1,114],[0,67],[0,133],[0,27],[0,88],[0,45],[0,79],[0,86],[0,252],[-1,70],[0,48],[0,155],[1,215],[0,11],[0,27],[-3,255],[0,46],[0,103],[1,403],[0,127],[-1,26],[0,21],[0,75],[-1,130],[1,68],[0,22],[0,29],[0,10],[-1,128],[-1,127],[-1,385],[-2,250],[0,263],[-2,250],[-1,173],[0,86],[-3,299],[17,4],[0,202],[15,1],[-7,590],[-2,185],[0,17],[0,1],[-10,134],[0,28],[-1,227],[5,113],[-1,35],[0,37],[-1,77],[-1,82],[0,45],[0,41],[1,84],[0,138],[0,132],[0,22],[1,100],[0,180],[0,209],[0,57],[1,64],[1,205],[0,76],[0,128],[0,31],[0,17],[4,77],[0,237],[0,247],[0,20],[0,28],[0,160],[-1,59],[0,165],[0,122],[0,48],[0,993],[0,59]],[[83371,99927],[121,0],[50,1],[67,1],[130,1],[121,1],[36,1],[146,1],[167,1],[339,1],[169,0],[3,0],[356,2],[210,2],[245,3],[28,1],[69,1],[44,1],[3,0],[262,1],[198,0],[125,0],[143,1],[109,0],[149,1],[145,2],[86,1],[200,2],[45,0],[87,0],[19,0],[25,1],[41,0],[28,0],[8,0],[281,4],[165,0],[32,1],[19,0],[24,0],[27,0],[18,0],[51,0],[41,1],[113,1],[451,2],[188,1],[196,1],[107,1],[335,1],[4,0],[296,3],[436,0],[436,2],[204,1],[176,0],[152,2],[27,0],[394,3],[70,0],[155,2],[25,-1],[155,1],[15,0],[34,0],[156,0],[21,0],[76,0],[26,0],[136,1],[245,1],[96,0],[278,1],[86,0],[194,1],[32,0],[139,-1],[85,0],[210,1],[74,0],[102,0],[310,1],[24,0],[205,1],[180,0],[232,0],[124,0],[70,0],[29,0],[417,0],[65,0],[233,0],[58,0],[18,0],[458,3],[44,0],[54,0],[271,2],[203,1],[75,0],[101,1],[1,0],[68,1],[288,2],[107,2],[78,0],[284,-1],[35,0],[36,2],[38,0],[75,0],[180,0],[29,0],[36,0],[257,-1],[196,0],[69,0],[515,0],[24,0],[204,0],[192,0],[188,-3],[-1,-1480],[0,-185],[0,-22],[0,-53],[0,-70],[-1,-2587],[-1,-552],[0,-107],[0,-907],[-1,-1721],[0,-737],[0,-394],[-653,1],[2,-392],[0,-131],[3,-1461],[1,-63],[0,-393],[5,-2354],[3,-1495],[4,-1565],[-2,-975],[-1,-627],[-4,-2235],[-2,-938],[-1,-797]],[[63319,99909],[20,-39],[-51,-91],[-17,-20],[-24,-3],[-101,-21],[-84,-60],[-3,-39],[8,-51],[-26,-63],[3,-27],[36,-45],[10,-45],[-4,-49],[-24,-26],[19,-73],[25,-18],[87,-103],[6,-75],[44,-32],[30,-52],[21,-35],[9,-14],[4,-36],[5,-58],[65,0],[10,-6],[49,-54],[8,-24],[10,-83],[11,-89],[17,-43],[95,-10],[49,-5],[32,-15],[9,-71],[-61,-65],[-13,-14],[-28,-30],[-91,-196],[-5,-10],[-32,-68],[-68,-162],[-28,-67],[-43,-131],[-26,-78],[0,-1],[-51,-154],[-47,-151],[15,-118],[54,-103],[35,-29],[-14,-30],[-17,-34],[3,-47],[5,-87],[-72,-79],[-76,-103],[0,-26],[0,-57],[68,-28],[43,-18],[5,-22],[-147,-225],[20,-102],[47,-91],[39,-75],[8,-14],[29,-57],[7,-112],[17,-100],[9,-53],[11,-16],[-12,-75],[-5,-22],[12,-35],[-2,-24],[-26,-42],[-11,-105],[10,-33],[23,-22],[5,-20],[-14,-25],[-63,-55],[-18,-31],[-9,-71],[-120,-27],[-66,0],[-18,-2],[-43,-31],[-41,-45],[-37,-8],[-46,20],[-42,20],[-25,-3],[-55,1],[-40,1],[-30,-52],[-35,1],[-27,1],[-22,26],[-15,19],[-87,27],[-1,1],[-24,-5],[-11,-16],[-14,-15],[-19,-9],[-88,51],[5,38],[-40,31],[-21,48],[-53,2],[-54,-3],[-38,-5],[-17,-36],[-34,15],[-158,-37],[-22,-8],[-16,-27],[3,-6],[15,-35],[-10,-43],[-44,-28],[-36,-27],[-32,-71],[-20,-57],[-10,-19],[-18,-27],[-2,-24],[11,-22],[2,-21],[-7,-23],[-9,-17],[-21,-3],[-58,-6],[-39,21],[-37,20],[-38,21],[-22,14],[-18,-5],[-63,-41],[-14,-9],[-62,-41],[-53,-2],[-29,-1],[-47,10],[-93,-83],[-10,-25],[-19,-48],[-82,-116],[-22,-12],[-28,0],[-32,5],[-13,-20],[2,-30],[3,-42],[0,-6],[7,-98],[22,-9],[24,-3],[111,-126],[2,-89],[-24,-13],[-21,-15],[-15,-18],[6,-18],[19,-5],[13,-14],[0,-18],[6,-28],[26,-34],[3,-5],[82,-108],[-9,-23],[-9,-15],[13,-23],[20,-15],[22,-7],[7,-25],[10,-37],[-11,-21],[-15,-12],[-14,-16],[-33,-13],[-21,0],[-16,4],[-20,2],[-22,-15],[-18,-9],[-17,-1],[-22,1],[-15,-15],[-15,-9],[-7,-18],[-5,-28],[-17,-19],[-26,-7],[-14,-14],[22,-21],[12,-18],[-3,-23],[-16,-7],[-20,-1],[-16,-6],[-25,-11],[-18,-18],[7,-23],[8,-32],[-1,-25],[-5,-21],[-9,-16],[-19,-20],[53,-111],[71,-82],[61,-16],[29,-41],[40,-57],[38,-78],[-1,-23],[-4,-23],[6,-22],[52,-113],[21,-44],[19,-21],[16,-11],[-5,-24],[-8,-16],[-8,-22],[-1,-29],[3,-25],[2,-23],[-4,-52],[-65,-60],[-33,-4],[-24,1],[-18,0],[-16,-3],[-21,-12],[-19,-18],[-28,-9],[-35,-10],[-20,-5],[-20,-7],[-33,3],[-17,5],[-22,13],[-19,7],[-16,-28],[-17,-27],[-7,-16],[26,-45],[38,-25],[23,-11],[35,-11],[25,-19],[9,-20],[0,-26],[24,-19],[16,-8],[16,-7],[17,-6],[17,-3],[23,0],[26,2],[22,0],[18,-9],[6,-20],[7,-18],[5,-20],[18,-19],[14,-10],[17,-10],[15,-11],[20,-19],[24,-4],[23,-5],[15,-24],[17,-94],[2,-13],[4,-20],[36,-208],[5,-30],[15,-9],[24,7],[20,-2],[26,-6],[10,-17],[13,-69],[22,-13],[55,-31],[47,-27],[20,-4],[25,-13],[11,-26],[8,-29],[19,-29],[88,-59],[-3,-18],[-39,-70],[-17,-10],[-41,14],[-34,-8],[-105,-47],[-18,-3],[-18,-4],[-25,-87],[-35,-121],[5,-23],[-62,-32],[-43,-95],[-9,-20],[-37,-81],[-17,-38],[-33,-27],[-27,-15],[-27,-10],[-26,-8],[-15,-14],[6,-36],[18,-19],[13,-14],[21,-22],[12,-16],[4,-1],[85,15],[25,-2],[47,6],[27,-4],[32,-9],[25,-16],[17,-25],[10,-17],[4,-27],[3,-19],[-11,-31],[-20,-16],[-15,-14],[-11,-14],[-4,-21],[17,-11],[26,-7],[6,-18],[-13,-18],[22,-14],[15,-9],[25,-11],[18,-9],[-15,-18],[-24,-12],[-38,-53],[-28,-81],[-9,-39],[-8,-34],[57,-19],[49,-16],[49,-38],[48,-54],[6,-21],[2,-20],[-15,-15],[-24,-4],[-16,-7],[37,-52],[25,-40],[-3,-66],[-2,-48],[30,-101],[-19,-81],[-6,-24],[-31,-45],[-21,-31],[-21,-18],[-32,-14],[-15,-11],[-18,-10],[-15,-7],[-9,-18],[-3,-31],[-4,-21],[5,-18],[18,-3],[21,-3],[21,-4],[19,-16],[12,-65],[11,-59],[8,-46],[11,-58],[-11,-92],[-22,-13],[-15,-18],[1,-20],[7,-16],[14,-25],[17,-27],[18,-29],[6,-19],[-1,-22],[-36,-80],[-19,-24],[-11,-23],[23,-139],[-9,-30],[-15,-45],[-25,-137],[-15,-79],[64,-309],[57,-113],[7,-114],[-72,-131],[-150,-114]],[[61331,86979],[-222,86],[-126,0],[-141,-84],[-85,-128],[-195,-40],[-27,-50],[-23,-20],[-13,-21],[-43,-73],[-36,-15],[-120,-50],[-18,-10],[-17,-9],[-23,-11],[-5,-63],[47,-34],[44,-32],[28,-11],[10,-40],[6,-47],[11,-41],[12,-20],[46,-10],[24,-33],[7,-58],[-6,-37],[-11,-15],[-44,-29],[-16,-14],[-20,-80],[-5,-26],[15,-35],[34,-85],[-3,-35],[-8,-53],[-6,-24],[-13,-18],[-15,-19],[-11,-22],[-16,-15],[-13,-15],[-26,-24],[-18,-11],[-21,-7],[-274,-249],[0,-19],[5,-123],[52,-14],[17,-14],[20,-17],[13,-19],[7,-22],[-5,-26],[-6,-17],[-9,-18],[-11,-21],[-73,-70],[1,-21],[9,-142],[7,-133],[-95,-131],[-14,-20],[-33,-45],[-46,-64],[-50,-31],[-74,-104],[-305,-420],[-13,-16],[-38,-54],[-25,-33],[-16,-22],[0,-1],[-27,-43],[-223,-371],[-55,-90],[-1,-3],[-132,-216],[-128,-65],[-161,-228],[-12,-16],[-19,-14],[-27,-14],[-36,-18],[-42,-10],[-60,-13],[-40,-11],[-34,-9],[-20,-8],[-19,-2],[-18,-1],[-22,-3],[-17,-6],[-22,-11]],[[50322,99912],[22,0],[79,-1],[51,2],[1,0],[21,0],[158,0],[290,3],[380,0],[269,0],[428,-1],[70,0],[349,1],[26,0],[23,0],[11,0],[53,0],[464,2],[268,1],[72,0],[370,0],[344,1],[338,-2],[147,0],[257,1],[275,1],[32,1],[55,0],[93,-1],[163,-1],[26,0],[22,0],[17,1],[161,0],[38,1],[281,0],[18,-1],[49,-1],[251,0],[148,-1],[120,0],[30,0],[31,0],[37,1],[83,1],[31,0],[115,1],[75,0],[147,0],[79,1],[48,0],[163,0],[88,0],[54,0],[124,0],[120,0],[118,-1],[248,0],[6,0],[66,-1],[42,0],[64,0],[3,0],[93,1],[32,-1],[35,-1],[25,4],[33,-1],[31,-1],[107,1],[35,-2],[57,0],[70,1],[40,1],[44,1],[35,0],[210,0],[94,0],[151,0],[145,1],[80,-1],[72,0],[68,-1],[242,-1],[104,-1],[137,0],[25,0],[168,0],[142,-1],[148,0],[678,-2],[727,-1],[163,0],[22,0],[34,0],[271,0],[162,0],[10,0],[457,-7],[38,0]],[[83353,86198],[-43,1],[-78,-1],[-58,0],[-64,0],[-40,0],[-22,0],[-72,-2],[-74,-2],[-34,-1],[-27,-1],[-29,0],[-25,-1],[-24,0],[-92,2],[-30,1],[-90,3],[-89,2],[-187,0],[-100,-1],[-313,3],[-282,2],[-107,1],[-48,0],[-142,-1],[-150,0],[-150,0],[-222,1],[-74,0],[-292,0],[-142,1],[-109,0],[-35,0],[-298,-2],[-237,-4],[-44,-1],[-172,-1],[-70,0],[-60,1],[-16,0],[-129,0],[-60,-1],[-73,0],[-19,0],[-28,1],[-165,1],[-101,0],[-43,0],[-71,1],[-109,1],[-170,1],[-148,1],[-330,3],[-68,1],[-256,2],[-151,1],[-32,0],[-361,0],[-542,1],[-6,0],[-64,1]],[[76286,86212],[-699,0],[-105,0],[-257,-1],[-471,-1],[-57,0],[-67,0],[-151,-1],[-183,0],[-265,-1],[-38,0],[-25,0],[-18,0],[-272,-3],[-173,-1],[-320,-2],[-27,0],[-190,2],[-123,1],[-17,0],[-23,1],[-1,0],[-31,0],[-7,1],[-11,0],[-23,0],[-111,0],[-17,0],[-13,-1],[-157,1],[-70,-2],[-19,-1],[-145,1],[-89,5],[-82,0],[-316,0],[-53,0],[-28,0],[-46,0],[-43,-1],[-57,-2],[-63,2],[-27,1],[-160,2],[-145,-7],[-117,-9],[-193,0],[-63,0],[-148,0],[-293,0],[-112,0],[-80,0],[-129,0],[-458,-3],[-49,0],[-42,1],[-53,0],[-103,3],[-62,1],[4,124],[0,47],[1,37],[0,76],[0,73],[0,155],[0,60],[0,7],[1,48],[-1,63],[1,71],[-81,0],[-71,0],[-19,0],[-193,0],[-29,0],[-364,1],[-675,-1],[-43,0],[-763,-7],[-274,1],[-63,0],[-48,1],[-353,-6],[-27,-1],[-52,-1],[-158,-3],[-1092,3],[-102,4],[-40,1],[-7,0],[-13,1],[-1,0],[-277,10],[-242,9],[-712,1],[-42,0],[-276,0],[-172,1],[-115,0],[-8,0],[-60,3],[-258,4],[-279,0],[-38,0],[-174,0],[-191,0],[-175,0],[-79,0],[-200,-1],[-98,0]],[[63319,99909],[898,2],[86,0],[66,-1],[34,0],[306,-1],[2,0],[179,0],[79,4],[20,0],[578,-17],[309,-11],[201,-2],[365,-16],[5,0],[36,-1],[474,9],[1651,1],[20,0],[63,0],[341,0],[305,0],[274,1],[641,1],[265,0],[337,1],[148,0],[89,1],[278,-1],[27,0],[414,0],[17,0],[1,0],[78,-1],[338,0],[592,-1],[223,4],[99,0],[16,14],[165,-5],[172,0],[87,0],[121,0],[35,0],[245,0],[619,-2],[34,-1],[263,-3],[256,1],[53,0],[45,1],[74,0],[25,0],[40,0],[55,0],[101,0],[33,-1],[17,0],[141,0],[107,0],[189,-2],[231,0],[112,1],[269,-3],[89,-2],[539,1],[110,-2],[16,0],[24,1],[457,1],[279,6],[161,1],[207,2],[58,1],[364,4],[391,5],[302,2],[219,2],[56,-2],[270,3],[299,2],[90,1],[67,1],[147,1],[217,1],[60,0],[66,1],[61,0],[219,2],[85,1],[374,2],[28,1],[2,0],[645,4],[88,1],[24,0],[116,1],[39,0],[539,4]],[[76286,86212],[27,-19],[1,0],[9,-4],[55,-93],[-3,-3],[-23,-41],[-5,-10],[-3,-15],[-16,-92],[-5,-17],[0,-13],[0,-1],[1,-5],[6,-9],[8,-9],[0,-1],[29,-15],[51,-23],[17,-7],[6,-5],[0,-4],[-2,-10],[-3,-6],[-5,-5],[-6,-2],[-20,-2],[-22,-1],[-22,-1],[-27,2],[-10,3],[-52,5],[-14,-2],[-6,-3],[-1,0],[-7,-4],[-4,-6],[-2,-6],[0,-1],[0,-3],[0,-13],[1,-6],[0,-2],[10,-16],[14,-10],[4,-3],[10,-6],[22,-8],[13,-2],[12,-4],[12,-10],[16,-24],[0,-1],[2,-5],[1,-10],[-2,-7],[-2,-3],[-7,-12],[-9,-10],[-1,-2],[-17,-17],[-6,-9],[-2,-11],[-2,-17],[0,-16],[0,-2],[-1,-12],[-3,-16],[0,-1],[-15,-40],[-1,-11],[4,-6],[10,-8],[19,-7],[1,0],[9,-2],[19,0],[1,0],[33,2],[23,6],[2,0],[12,5],[7,6],[1,0],[1,1],[4,8],[2,12],[0,1],[0,32],[-3,34],[-1,2],[-5,14],[0,1],[-1,1],[0,14],[5,7],[9,4],[14,4],[13,-1],[7,-3],[1,0],[1,-1],[10,-6],[38,-36],[4,-4],[1,0],[42,-35],[32,-20],[9,-6],[21,-16],[14,-12],[3,-6],[3,-9],[0,-8],[-2,-6],[-4,-11],[-6,-11],[-3,-5],[-14,-14],[-19,-17],[-23,-16],[-13,-14],[-13,-20],[0,-12],[11,-28],[5,-8],[4,-7],[1,0],[11,-11],[13,-7],[9,-1],[13,0],[7,-2],[37,-26],[3,-2],[4,-4],[2,-4],[9,-7],[38,-28],[3,-5],[15,-27],[0,-1],[10,-11],[28,-19],[2,-1],[31,-26],[8,-8],[8,-9],[0,-1],[3,-5],[2,-7],[0,-8],[0,-1],[0,-2],[-3,-10],[-3,-5],[-1,-1],[-2,-3],[-4,-5],[-4,-5],[-2,-3],[-28,-16],[-8,-9],[-5,-7],[-8,-15],[-6,-15],[-1,-17],[3,-17],[4,-22],[2,-5],[2,-17],[0,-22],[0,-2],[0,-1],[-2,-8],[-9,-15],[-8,-6],[-7,-6],[-14,-5],[-15,-1],[-8,3],[-4,3],[-20,34],[-3,10],[-2,22],[-5,24],[-2,8],[-2,2],[-15,7],[-1,0],[-1,0],[-12,3],[-12,0],[-1,0],[-21,-6],[-1,0],[-13,-6],[-17,-12],[-1,0],[-14,-15],[-7,-12],[-4,-9],[-1,-8],[-1,-23],[0,-12],[4,-8],[14,-26],[11,-19],[9,-10],[33,-28],[14,-10],[14,-6],[43,-10],[16,-5],[18,-15],[7,-8],[2,-6],[1,-7],[-3,-7],[-3,-5],[-20,-27],[-5,-6],[-23,-12],[0,-1],[-6,-6],[-21,-49],[-1,-2],[-3,-10],[0,-11],[-1,-3],[1,-8],[1,-4],[1,-2],[7,-11],[11,-13],[2,-3],[2,-1],[7,-8],[10,-5],[2,-1],[17,-6],[19,-5],[7,0],[53,-4],[0,-1],[61,-92],[2,-2],[0,-2],[0,-68],[0,-33],[19,-65],[3,-5],[25,-35],[21,-23],[7,-11],[3,-12],[0,-13],[-3,-17],[-6,-16],[-6,-11],[-3,-2],[-2,-2],[-24,-87],[-2,-6],[27,-4],[71,-13],[115,-21],[2,-1],[13,-3],[14,-5],[2,-2],[1,-4],[-2,-9],[-7,-17],[-5,-11],[-34,-39],[-24,-21],[-5,-4],[-1,-4],[1,-2],[41,-37],[56,-38],[2,-1],[40,-21],[4,-3],[1,0],[0,-2],[7,-8],[2,-6],[1,-3],[9,-18],[0,-5],[2,-1],[7,-14],[5,-10],[4,-9],[5,-10],[0,-2],[0,-1],[1,-13],[-1,-5],[-1,0],[3,-13],[4,-11],[7,-10],[0,-1],[8,-14],[6,-4],[10,-5],[9,-1],[40,9],[6,1],[14,0],[6,-3],[1,-2],[3,-3],[1,2],[1,1],[2,-2],[22,-29],[0,-1],[0,-2],[-3,-4],[-2,-4],[-6,-8],[-13,-18],[-2,-4],[-14,-14],[-25,-17],[-39,-32],[-10,-11],[-15,-23],[-9,-12],[0,-1],[-2,-5],[-10,-39],[-3,-12],[-3,-67],[0,-21],[0,-1],[0,-1],[0,-6],[3,-4],[9,-8],[1,-1],[16,-11],[20,-11],[22,-9],[32,-10],[28,-8],[3,-1],[58,-6],[8,0],[30,-1],[7,-3],[16,-13],[20,-19],[8,-14],[20,-47],[5,-19],[1,-40],[-1,-6],[-3,-32],[-2,-9],[-11,-45],[1,-15],[6,-51],[2,-9],[4,-5],[7,-13],[6,-17],[0,-17],[-3,-12],[-15,-42],[-6,-14],[-17,-35],[-7,-8],[-6,-6],[-18,-15],[-3,-6],[-2,-11],[-1,-18],[2,-3],[10,-12],[6,-7],[3,-4],[5,-5],[13,-6],[36,-13],[3,-1],[39,-15],[13,-4],[14,1],[28,6],[46,14],[6,2],[3,-1],[7,-3],[12,-3],[2,-1],[2,-2],[6,-8],[2,-2],[5,-10],[8,-15],[4,-11],[0,-8],[1,-6],[-2,-8],[3,-21],[3,-7],[7,-9],[7,-6],[21,-15],[8,-6],[28,-17],[13,-8],[8,-8],[12,-11],[7,-7],[10,-10],[6,-6],[11,-10],[4,-4],[-4,-10],[-22,-68],[-14,-41],[-48,-39],[-35,-29],[-56,-28],[-53,-27],[-2,-16],[-3,-24],[5,-22],[133,-75],[0,-1],[52,-28],[16,-10],[38,-64],[35,-59],[55,-54],[43,-43],[2,-55],[-27,-37],[-7,-3],[-21,-32],[-42,-64],[-19,-9],[-18,0],[-16,0],[-9,1],[-28,-4],[-23,-2],[-24,-26],[0,-16],[0,-17],[42,-27],[43,-33],[4,-4],[-6,-45],[-3,-4],[-66,-20],[-2,-1],[-115,-35],[-40,-12],[-10,-9],[-6,-23],[7,-41],[43,-57],[7,-9],[17,-9],[26,-13],[12,-15],[14,-19],[-8,-18],[-9,-20],[-37,-19],[-5,-6],[-18,-19],[-1,-3],[-3,-11],[1,-12],[2,-3],[22,-34],[11,-8],[10,-7],[34,-28],[10,-4],[7,-4],[5,-35],[-19,-46],[-51,-40],[-8,-6],[-14,-2],[-14,-16],[-2,-28],[-13,-32],[-9,-21],[-29,-34],[-72,-31],[-26,-12],[-13,-6],[-16,-25],[-12,-63],[3,-25],[4,-33],[5,-43],[-24,-50],[-4,-7],[-1,-2],[-47,-95],[-38,-31],[-38,-30],[-32,-12],[-25,-1],[-24,-1],[-40,-6],[-5,-1],[-48,-41],[-6,-14],[-26,-96],[-27,-25],[-42,-39],[-1,-1],[-5,-5],[-2,-40],[21,-29],[10,-14],[90,-58],[9,-112],[9,-15],[11,-17],[4,-7],[8,0],[93,-1],[52,-1],[14,-19],[4,-28],[-6,-18],[-42,-48],[-2,-2],[-14,-67],[-4,-30],[-1,-9],[-8,-59],[-7,-50],[-2,-19],[15,-72],[25,-45],[52,-95],[-3,-74],[-1,-4],[0,-9],[-2,-63],[0,-22],[71,-77],[21,-24],[4,-15],[10,-41],[-32,-72],[14,-27],[56,-31],[0,-36],[-95,-46],[-1,0]],[[77428,78497],[-137,0],[-59,-1],[-85,1],[-27,0],[-98,-2],[-230,-4],[-249,-2],[-84,-1],[-24,0],[-108,1],[-219,0],[-223,0],[-22,-1],[-4,0],[-306,-7],[-86,-1],[-155,0],[-87,-2],[-57,-2],[-95,-1],[-147,-1],[-214,-3],[-71,-1],[-147,-2],[-172,-2],[-66,-1],[-211,-4],[-255,-1],[-72,-3],[-45,-1],[-56,-2],[-289,-1],[-170,-3],[-220,-3],[-185,-3],[-306,-4],[-33,0],[-168,-2],[-463,-6],[-13,-1],[-30,0],[-206,-3],[-443,1],[-108,-2],[-311,-6],[-349,-7],[-279,-6],[-274,-5],[-91,-2],[-93,-2],[-65,-1],[-280,-6],[-114,-2],[-103,-10],[-135,-3],[-284,-5],[-341,-8],[-17,0],[-71,-1],[-142,-3],[-61,-2],[-85,-2],[-444,-11],[-72,-2],[-157,-4],[-65,-4],[-35,-1],[-64,-2],[-43,-1],[-22,0],[-29,-1],[-30,-7],[-14,-1],[-50,-1],[-3,-1],[-63,-23],[-1,0],[-63,-23],[-4,-2],[-84,-30],[-10,-23],[-24,-57],[-40,-94],[2,-5],[-2,-24],[-15,-20],[-24,3],[-7,5],[-21,14],[-12,13],[-10,18],[-79,92],[-19,22],[-14,19],[10,19],[-1,0],[-88,39],[-39,18],[-2,3],[-4,6],[-20,25],[-19,10],[-20,1],[-15,6],[-47,38],[-1,0],[-38,35],[-69,63],[-7,5],[-20,3],[-54,3],[-1,0],[-19,-6],[-47,-3],[-20,9],[-29,19],[-3,-1],[-58,33],[-13,8],[-88,50],[-7,3],[-2,-1],[-1,0],[-24,20],[-9,9],[-23,13],[-582,327],[-25,15],[-46,7],[-41,7],[-218,37],[-203,25],[-94,67],[-37,27],[-26,18],[-10,5],[-54,22],[-40,17],[-123,51],[-35,9],[-41,9],[-32,8],[-671,163],[-161,39],[-105,25],[-2,0],[-43,11],[-138,33],[-42,15],[-745,233],[-127,39],[-214,71],[-484,147],[-33,11],[-5,1],[-116,-3],[-342,2],[-648,1],[-23,0],[-86,0],[-204,0],[-26,0],[-649,-1],[-176,0],[-255,1],[-83,0],[-310,1],[-400,-2],[-257,2],[-42,0],[-177,-1],[-528,-2],[-10,0],[-260,5],[-463,0],[-87,0],[-235,0],[-194,0],[-121,1],[-1,0],[-465,2]],[[55057,80077],[-4,71],[15,534],[6,203],[14,505],[14,489],[3,99]],[[46327,79515],[-38,34],[0,12],[14,12],[-4,11],[-10,4],[-63,23],[-23,9],[-17,23],[-26,3],[-43,2],[-32,21],[-3,6],[-5,8],[-1,10],[4,22],[-23,22],[-16,4],[-2,0],[-1,-1],[-15,2],[-38,6],[-37,6],[-6,2],[-6,3],[-37,18],[-47,21],[0,6],[35,0],[44,0],[150,1],[144,1],[44,0],[20,0],[37,4]],[[46326,79810],[0,-27],[0,-48],[1,-92],[0,-128]],[[46333,81758],[-44,-1],[-226,-13],[1,44],[-1,28],[1,57],[-158,2],[-102,0],[-115,2],[-94,3],[-29,0],[-100,4],[-1,-105],[1,-49],[1,-19],[2,-46],[0,-30],[-45,-13],[-36,1],[-23,0],[-48,1],[-42,-1],[-45,0],[-35,-2],[16,-71],[8,-36],[-21,-1],[-51,-2],[-56,-2],[-76,-3],[-68,-1],[-87,0],[-78,5],[-80,3],[-53,4],[-41,0],[-77,0],[-118,0],[-97,1],[-94,-2],[-178,0],[1,132],[-117,-2],[-47,2],[-57,0],[0,-46],[0,-148],[0,-20],[0,-25],[1,-49],[0,-107],[-2,-236],[1,-29],[0,-25],[1,-53],[0,-111],[-1,-148],[0,-73],[-1,-182],[0,-248],[2,-71],[0,-142],[1,-607],[0,-4],[0,-13],[-224,1],[-1,0],[-84,1],[16,-37],[-21,0],[0,-24],[15,-10],[-5,-22],[-7,-26],[-7,-17],[7,-22],[16,-9],[55,-17],[-7,-36],[2,-21],[13,-16],[20,-4],[13,-11],[2,-20],[16,-9],[37,-10],[17,6],[18,-19],[19,-9],[15,-8],[18,-7],[28,-5],[18,-2],[17,4],[20,4],[22,8],[20,-2],[22,-1],[28,5],[20,-8],[23,-5],[20,1],[14,8],[17,10],[18,-5],[19,-9],[18,-3],[17,0],[26,10],[21,6],[22,6],[20,9],[12,18],[15,10],[2,18],[21,0],[22,7],[28,3],[18,2],[23,-3],[16,-10],[20,-6],[11,-16],[18,-5],[20,1],[20,11],[30,-26],[15,-9],[14,-23],[13,-17],[15,-12],[-1,118],[0,53],[92,-43],[19,-3],[34,-11],[48,-14],[108,-74],[99,-18],[129,2],[58,-23],[161,-67],[230,-83],[36,-13],[3,-5],[205,-75],[232,-182],[22,-18],[26,-21],[102,-171],[35,-2],[37,-191],[18,-29],[4,-30],[7,-18],[5,-2],[43,20],[44,4]],[[46328,78043],[0,-1],[0,-96],[0,-298],[0,-288],[0,-51],[0,-122],[0,-20],[0,-116],[-1,-124],[2,-63],[2,-43],[-1,-52],[-1,-40],[0,-104],[0,-127],[0,-26],[0,-88],[0,-236],[0,-29],[0,-152],[-1,-149],[0,-81],[-2,-138],[-1,-126],[-1,-290],[-1,-126],[0,-28],[-1,-351],[1,-127],[0,-1],[-1,-91],[0,-53],[0,-35],[0,-18],[0,-84],[0,-42],[0,-74],[0,-59],[0,-25],[-1,-307],[0,-80],[0,-42],[0,-4],[0,-66],[0,-19],[9,-24],[0,-2],[-1,-73],[0,-76],[1,-225],[-6,-572],[0,-19],[0,-31],[-6,-523],[1,-200],[1,-174],[-2,-182],[-1,-81],[0,-42],[1,-113],[-1,-142],[-1,-94],[0,-171],[-1,-85],[-1,-259],[0,-11],[-2,-32],[0,-95],[1,-242],[54,-1],[-10,-192],[2,-120],[3,-123],[1,-382],[2,-143],[7,-108],[0,-3],[-2,-87],[0,-5],[2,-48],[4,-81],[0,-19],[2,-21],[0,-246]],[[46378,68504],[-208,0],[-107,6],[-35,0],[-20,1],[-66,2],[-192,6],[-73,1],[-61,4],[-127,3],[-20,0],[-21,0],[-34,2],[-5,0],[-185,7],[-81,0],[-135,2],[-306,5],[-205,3],[-68,1],[-55,0],[-31,0],[-166,-1],[-130,0],[-268,0],[-4,0],[-147,0],[-35,0],[-21,1],[-25,0],[-37,0],[-25,0],[-36,1],[-612,8],[-320,-2],[-111,0],[-29,-1],[-30,1],[-100,0],[-90,0],[-26,-1],[-36,2],[-293,-1],[-23,0],[-69,0],[-33,-11],[-17,8],[-329,4],[-24,0],[-45,0],[-22,0],[-18,0],[-23,0],[-253,0],[-4,0],[-20,-4],[-30,0],[-225,-1],[-61,0],[-138,0],[-43,0],[-674,-2],[-206,-1],[-31,0],[-6,-1],[-22,-1],[-12,0],[-11,0],[-26,0],[-39,0],[-50,1],[-20,0],[-25,1],[-64,0],[-36,-1],[-31,-1],[-27,0],[-31,0],[-17,0],[-43,-1],[-44,0],[-40,0],[-29,0],[-32,0],[-32,0],[-33,-1],[-34,0],[-52,5],[-37,3],[-35,3],[-19,0],[-41,0],[-24,0],[-61,2],[-94,2],[-53,-1],[-20,1],[-20,0],[-1,0],[-77,1],[-26,0],[-58,-2],[-32,1],[-36,1],[-26,-1],[-31,-1],[-24,0],[-26,0],[-33,2],[-32,0],[-34,0],[-104,0],[-161,0],[-63,0],[-36,0],[-200,4],[-94,0],[-30,0],[-75,0],[-38,0],[-54,-2],[-46,0],[-37,-2],[-48,0],[-102,-2],[-18,0],[-19,0],[-59,0],[-35,0],[-29,-1],[-22,0],[-26,1],[-22,-1],[-32,1],[-33,0],[-33,-1],[-33,0],[-33,0],[-33,0],[-31,0],[-35,1],[-31,0],[-33,0],[-36,0],[-224,1],[-28,0],[-147,2],[-453,1],[-245,-7],[-367,4],[-129,4],[-98,2],[-2,0],[-239,-1],[-42,-4],[-211,4],[-154,0],[-363,2],[-288,1],[-50,0],[-347,2],[-175,-2],[-98,2],[-374,-4],[-147,1],[-1,0],[-159,-2],[-165,14],[-21,-1],[-40,0],[-217,4],[-189,1],[-77,1],[-49,0],[-64,1],[-132,1],[-49,1],[-128,-1],[-13,-1],[-98,-3]],[[30654,68580],[-44,86],[-114,273],[-34,64],[-21,44],[-1,2],[-18,34],[-55,39],[-108,249],[-8,17],[-23,53],[-14,33],[-51,117],[-8,18],[-118,274],[-19,43],[-61,142],[-13,30],[-190,2],[-346,-1],[-539,-4],[-25,0],[-72,0]],[[28772,70095],[-1,145],[0,7],[0,43],[0,22],[-1,431],[0,22],[-1,119],[1,443],[3,224],[4,500],[1,52],[51,-9],[-2,185],[-1,76],[-1,38],[0,35],[-2,144],[-3,266],[-1,131],[-1,26],[-2,222],[-4,296],[0,19],[-1,93],[0,1],[-5,273],[-2,127],[-2,120],[0,50],[-3,195],[-6,362],[1,51],[1,55],[0,54],[0,55],[0,54],[1,53],[1,48],[0,52],[0,55],[0,247],[-1,73],[-4,187],[0,24],[0,54],[0,46],[0,50],[1,48],[-1,48],[0,53],[1,18],[-1,30],[0,55],[0,36],[0,29],[-1,19],[1,27],[-1,49],[0,39],[-1,67],[1,56],[-1,56],[0,49],[0,27],[0,35],[0,54],[0,51],[0,58],[0,56],[-1,55],[0,54],[0,29],[0,27],[-1,33],[1,23],[0,53],[-1,25],[1,19],[0,48],[0,27],[0,28],[0,31],[0,52],[0,19],[0,53],[-2,52],[1,19],[1,37],[-1,57],[0,63],[-1,56],[0,19],[0,23],[8,169],[0,267],[0,203],[0,131],[0,118],[0,96],[0,37],[0,53],[0,7],[0,60],[0,99],[0,4],[0,20],[1,108],[0,139],[0,159],[0,207],[0,191],[0,68],[0,31],[0,75],[0,27],[0,33],[0,8],[2,50],[-1,9],[-3,29],[-2,130],[0,29],[1,132],[0,69],[1,86],[0,37],[0,54],[1,80],[0,25],[0,39],[0,129],[0,71],[0,68],[3,59],[5,101],[0,25],[0,94],[1,43],[-1,119],[0,49],[0,41],[0,37],[-1,94],[0,38],[0,200],[-1,41],[0,25],[1,136],[0,69],[0,38],[-138,1],[-105,0],[-287,3],[-26,0],[-52,1],[-475,7],[-31,4],[-29,-1],[-38,0],[-10,0],[-11,1],[-30,-2],[-53,-1],[-54,0],[-63,0],[-19,0],[-33,-1],[-18,-1],[-2,1],[-31,2],[-66,-1],[-59,2],[-79,0],[-32,1],[-27,0],[-52,-2],[-123,2],[-73,-1],[-176,0],[-107,0],[-327,-1],[-132,-1],[-3,0],[-356,4],[-64,1],[-171,2],[-41,1],[-23,0],[-21,0],[-52,0],[-25,0],[-51,0],[-66,2],[-24,0],[-35,1],[-101,1],[-90,0],[-44,1],[-48,0],[-59,-1],[-18,0],[-64,0],[-83,1],[-41,0],[-33,0],[-60,0],[-110,1],[-62,0],[-54,0],[-20,0],[-58,0],[-17,1],[-32,0],[-31,0],[-26,0],[-29,0],[-28,0],[-131,1],[-49,0],[-31,0],[-43,0],[-52,0],[-158,0]],[[93835,77766],[1,-157],[1,-101],[-2,-194],[-1,-68],[2,-44],[-1,-151],[0,-18],[1,-37],[4,-268],[-8,-205],[-2,-51],[1,-176],[-1,-75],[-67,0],[-1,-484],[0,-59],[1,-110],[0,-146],[0,-257],[0,-205],[0,-53],[-3,-233],[-2,-281],[-3,-248],[-3,-255],[4,-256],[1,-46],[1,-56],[7,-57],[-1,-36],[-3,-439],[-2,-263],[-1,-182],[-1,-265],[-4,-195],[-1,-128],[1,-120],[0,-76],[0,-39],[-172,-142],[-44,0],[-73,0],[-292,-1],[-120,-1],[-33,0],[-66,-2],[-74,1],[-309,-3],[-52,1],[-225,1],[-75,1],[-68,-2],[-166,2],[-225,2],[-13,-1],[-17,-2],[-32,0],[-30,3],[-258,-1],[-556,-1],[-247,-1],[-209,-3],[-88,0],[-200,0],[-24,-1],[-44,0],[-41,2],[-308,-1],[-70,1],[-122,2]],[[89500,71586],[0,137],[-1,433],[-315,-2],[-178,2],[-11,1],[-24,1],[-630,1],[-2,0],[-285,0],[-264,423],[-13,16],[-10,17],[-142,236],[-52,84],[-106,171],[-24,38],[-241,388],[-269,430],[-243,389],[-12,18],[-240,385],[-55,88],[-1,2],[-88,140],[-65,104],[-21,28],[-23,44],[-28,47],[-81,130],[-49,79],[-162,261],[-15,25],[-21,35],[-36,58],[-241,388],[-19,28],[-161,260],[-159,254],[-10,17],[-152,244],[-26,41],[-106,170],[-22,36],[-52,85],[-90,146],[-12,19],[-97,153],[-67,107],[-46,72],[-81,128],[-24,38],[-36,59],[-61,96],[-53,85],[-13,21],[-54,86],[-14,24],[-17,31],[-22,32],[-26,39],[-26,42],[-79,127],[-85,137],[-59,94],[-45,-22],[-285,-138],[-61,-28],[-142,-70],[-3,-2],[-88,-43],[-111,-54],[-144,-4],[-94,0],[-37,0],[-281,1],[-182,-1],[-59,0],[-89,2],[-307,-1],[-68,3],[-108,2],[-53,-1],[-1,0],[-58,2],[-7,0],[-235,2],[-161,0],[-124,1],[-241,1],[-37,0],[-245,2],[-95,0],[-111,1],[-122,3],[-4,0],[-37,0],[-27,-1],[-22,-1],[-72,-3],[-593,-16],[-176,7],[-76,3],[-62,0],[-93,0],[-171,0],[-58,0],[-100,0],[-211,1],[-1,0],[-78,1],[-46,0],[-252,-5],[-18,0],[-158,2],[-163,-1],[-15,0],[-29,0],[-64,1],[-105,0],[-230,-1]],[[28772,70095],[-268,-2],[-617,-4],[-72,0],[-74,-1],[-53,6],[-185,-1],[-473,-5],[-477,-4],[-167,-2],[-702,-6],[-63,-3],[-87,-1],[-292,-2],[-18,-1],[-181,-1],[-17,0],[-121,-1],[-175,2],[-57,0],[-139,1],[-257,3],[-29,1],[-133,2],[-63,0],[-37,1],[-92,1],[-41,1],[-89,3],[-1,0],[-206,5],[-32,0],[-45,0],[-1,34],[0,75],[1,157],[0,4],[0,132],[1,173],[1,128],[0,66],[-139,0],[-110,0],[-65,0],[-31,0],[-134,0],[-110,0],[-31,0],[-1,0],[-47,0],[-18,0],[-72,0],[-22,0],[-280,0],[-198,0],[-128,0],[-237,0],[-101,0],[-17,0],[-10,-31],[0,-1],[-1,-244],[0,-83],[0,-154],[0,-129],[0,-39],[-1,-85],[-271,-1],[-89,1],[-19,0],[-46,0],[-29,0],[-48,0],[-56,0],[-75,1],[-187,0],[-146,1],[-191,0],[-260,1],[-1,0],[-254,1],[-541,2],[-125,0],[-105,0],[-139,0],[-52,0],[-67,0],[-201,0],[-122,0],[-35,0],[-659,1],[-55,0],[-246,-1],[-132,0],[-19,0],[-28,0],[-3,0],[-35,-1],[-8,0],[-62,0],[-88,0],[-6,0],[-49,-1],[-133,-1],[-33,1],[-183,2],[-45,0],[-111,1],[-75,1],[-23,0],[-43,0],[-84,1],[-36,1],[-109,1],[-129,1],[-22,0],[-33,0],[-41,1],[-38,1],[-78,1],[-15,0],[-48,1],[-35,0],[-11,0],[-71,0],[-24,0],[-103,1],[-18,0],[-53,1],[-18,0],[-6,0],[-16,0],[-28,0],[-20,2],[-25,2],[-30,2],[-9,0],[-50,0],[-24,-1],[-70,-2],[-98,1],[-28,0],[-6,1],[-61,0],[-35,0],[-5,0],[-60,0],[-22,0],[-35,0],[-2,0],[-29,0],[-19,0],[-12,0],[-23,0],[-13,0],[-8,0],[-30,0],[-10,0],[-106,2],[-84,0],[-24,0],[-142,0],[-59,1],[-19,0],[-41,0],[-98,0],[-305,1],[-79,0],[-117,0],[-74,0],[-65,0],[-17,0],[-73,0],[-90,0],[-41,0],[-103,1],[-104,1],[-31,-3],[-31,1],[-192,-1],[-69,0],[-235,1],[-343,1],[-125,0],[-134,0],[-10,0],[-75,0],[-39,0],[-24,0],[-7,0],[-11,0],[-472,0],[-214,0],[-117,0],[-33,0],[-73,0],[-54,0],[-292,0],[-44,0],[-58,1],[-529,2],[-71,-1],[-96,1],[-29,0],[-2,0],[-175,1],[-81,0],[0,-13],[0,-51],[0,-18],[0,-49],[0,-113],[0,-185],[0,-196],[0,-74],[0,-28],[1,-35],[-1,-238],[-2,-132],[2,-184],[0,-61],[0,-19],[3,-256],[-2,-217],[-1,-259],[0,-22],[1,-122],[0,-65],[1,-20],[0,-52],[0,-45],[-1,-54],[-1,-32],[-2,-139],[-1,-64],[-1,-70],[-2,-101],[-1,-46],[-1,-71],[-1,-30],[-1,-76],[-1,-18],[0,-13],[-1,-37],[-7,-27],[0,-4],[0,-21],[0,-3],[0,-26],[-1,-25],[0,-34],[0,-17],[0,-1],[0,-36],[0,-12],[0,-48],[0,-5],[0,-91],[-1,-27],[0,-235],[0,-72],[-1,-29],[0,-156],[-1,-264],[0,-44],[0,-84],[0,-4],[0,-21],[0,-24],[0,-6],[0,-21],[0,-30],[0,-2],[0,-6],[0,-101],[-1,-75],[0,-73],[0,-14],[0,-27],[0,-11],[2,-211],[0,-29],[-1,-108],[0,-128],[-4,-54],[3,-25],[1,-58],[1,-54],[3,-58],[2,-29],[-1,-64],[7,-436],[-416,0],[-19,0],[-84,0],[-26,0],[-37,0],[-91,0],[-149,0],[-56,0],[-218,0],[-106,1],[-75,2],[-21,0],[-59,0],[-73,-1],[-74,0],[-19,0],[-221,1],[-210,1],[-141,1],[-96,0],[-396,5],[-17,0],[-229,2],[-292,2],[-31,0],[-83,0],[-25,0],[-45,0],[-45,0],[-50,1],[-146,0],[-27,-1],[-189,0],[-368,-2],[-32,0],[-48,0],[-5,0],[-43,0],[-194,-1],[-75,0],[-121,0],[-172,0],[-89,0],[-451,1],[-107,0],[-74,-1],[-163,0],[-157,0],[-436,1],[-18,0],[-61,0],[-50,0],[-28,0],[-152,0],[-109,-1],[-52,1],[-190,0],[-152,-1],[-66,0],[-92,0],[-218,0],[-721,0],[-365,0],[-107,0],[-3,0],[-59,0],[-12,0],[-30,-1],[-41,1],[-1,0],[-6,0],[-5,0],[-25,0],[-40,0],[-101,0],[-74,0],[-455,2]],[[71,64000],[1,112],[-1,113],[0,379],[-2,107],[-1,302],[0,6],[0,31],[0,17],[0,48],[0,1],[-1,509],[0,58],[-1,716],[-1,460],[0,57],[0,449],[0,290],[1,137],[0,62],[0,210],[0,25],[0,264],[0,141],[0,68],[0,24],[0,23],[0,48],[0,61],[0,125],[0,130],[1,128],[1,21],[-1,32],[-1,185],[0,21],[-1,180],[0,65],[-2,263],[0,118],[-1,64],[0,76],[-1,138],[0,41],[-1,175],[-1,61],[0,96],[-2,229],[0,41],[0,34],[0,33],[0,9],[0,21],[-1,16],[0,40],[0,3],[0,21],[0,6],[0,2],[0,32],[0,17],[0,14],[0,10],[0,39],[0,25],[0,9],[0,2],[0,87],[0,79],[1,228],[0,18],[0,85],[0,81],[0,71],[0,24],[1,188],[0,78],[0,94],[0,155],[0,22],[0,173],[0,38],[1,140],[0,126],[0,108],[0,135],[1,119],[0,138],[0,105],[0,148],[0,248],[1,245],[0,88],[0,89],[0,83],[0,27],[1,106],[0,23],[0,136],[0,155],[1,93],[0,193],[0,63],[1,198],[0,45],[0,75],[0,35],[0,123],[-2,32],[0,255],[1,85],[0,118],[0,100],[0,50],[0,3],[0,7],[0,7],[0,3],[0,24],[0,10],[1,6],[0,13],[0,35],[0,2],[0,125],[0,22],[0,79],[0,292],[0,23],[1,227],[0,106],[1,63],[0,31],[0,80],[0,126],[0,34],[0,101],[-1,88],[0,21],[-1,18],[0,51],[0,36],[0,18],[0,48],[0,18],[0,29],[0,15],[0,3],[0,313],[1,452],[0,43],[0,65],[1,52],[0,69],[0,101],[0,58],[0,21],[0,22],[0,26],[1,29],[0,19],[0,6],[0,59],[0,18],[0,22],[0,10],[0,45],[0,147],[0,23],[0,12],[0,4],[0,67],[0,3],[1,72],[0,35],[0,90],[0,128],[0,16],[1,20],[0,50],[0,13],[0,13],[-1,119],[0,20],[0,18],[0,62],[0,13],[0,24],[0,42],[0,23],[-1,153],[0,6],[0,42],[0,85],[0,3],[-1,98],[1,29],[1,25],[0,18],[0,10],[0,23],[-1,175],[0,1],[0,27],[0,27],[0,241],[0,117],[0,54],[0,80],[0,77],[0,27],[0,48],[0,21],[0,247],[2,165],[0,42]],[[55057,80077],[-3,-101],[-2,-46],[-4,-127],[-4,-155],[-3,-95],[-8,-260],[-1,-29],[-1,-41],[-5,-166],[16,-17],[2,-306],[0,-89],[0,-334],[0,-111],[0,-77],[-1,-98],[-1,-83],[6,-101],[0,-18],[-1,-66],[0,-104],[7,-162],[1,-26],[13,-242],[20,-283],[7,-98],[7,-112],[4,-54],[7,-128],[11,-192],[6,-123],[-36,0],[-2,-107],[-5,-48],[1,-77],[-2,-109],[-1,-34],[1,-24],[1,-35],[2,-34],[0,-28],[-1,-343],[0,-234],[8,-63],[0,-266],[0,-35],[0,-40],[0,-1],[0,-49],[0,-1],[0,-18],[0,-28],[0,-26],[-1,-79],[0,-21],[0,-26],[0,-24],[0,-10],[0,-17],[0,-23],[0,-10],[1,-127],[0,-303],[1,-94],[0,-241],[0,-59],[0,-67],[0,-154],[0,-144],[0,-197],[0,-128],[0,-53],[0,-165],[0,-64],[0,-27],[0,-57],[0,-244],[0,-234],[0,-250],[0,-3],[0,-229],[0,-81],[-1,-50],[0,-62],[1,-63],[2,-159],[0,-143],[1,-181],[1,-29],[0,-3],[1,-280],[0,-89],[1,-112],[1,-216],[1,-37],[31,-1],[0,-108],[0,-104],[0,-20],[0,-37],[0,-58],[0,-81],[0,-32],[0,-100],[0,-67],[1,-82],[0,-86],[-1,-20],[0,-22],[0,-138],[0,-178],[1,-240],[1,-186],[0,-44],[1,-459],[2,-403],[0,-128],[2,-321],[0,-23],[1,-216],[0,-3],[1,-229],[1,-228],[0,-143],[1,-93],[1,-41],[-1,-40],[0,-79],[3,-140],[-1,-41],[0,-37],[1,-23],[0,-30],[3,-295],[0,-58]],[[55153,65444],[-293,-1],[-60,0],[-232,0],[-12,-9],[-143,1],[-185,1],[-126,0],[-87,1],[-535,2],[-302,2],[-20,0],[-112,-1],[-522,-2],[-35,9],[-255,-1],[-221,-2],[-47,0],[-30,0],[-285,-2],[-252,-2],[-44,0],[-561,-4],[-9,0],[-17,0],[-353,-3],[-78,-2],[-73,-1],[-61,0],[-122,1],[-42,0],[-89,2],[-1,0],[-30,0],[-82,0],[-147,-1],[-85,-1],[-307,-4],[-113,2],[-24,0],[-35,1],[-17,0],[-31,0],[-57,-1],[-57,0],[-119,-1],[-58,0],[-58,-1],[-373,2],[-59,-3],[-19,-1],[-22,-2],[-21,-1],[-113,1],[-205,-1],[-24,0],[-46,-1],[-67,-2],[-26,3],[-22,-1],[-22,-1],[-21,0],[-19,2],[-31,-1],[-31,0],[-79,0],[-138,-1],[-61,1],[-69,0],[-46,-1],[-18,1],[-20,0],[-34,0],[-23,0],[-18,-1],[-18,0],[-23,0],[-197,-1],[-160,0],[-112,-2],[-28,0],[-1,0],[-68,0],[-37,0],[-23,0],[-35,1]],[[46400,65418],[3,20],[-2,23],[-2,27],[1,22],[0,35],[0,28],[1,29],[0,37],[-1,18],[0,23],[1,38],[-1,21],[0,29],[0,36],[0,19],[0,20],[0,24],[0,27],[0,26],[-1,36],[0,20],[0,21],[1,40],[0,21],[0,20],[0,20],[0,31],[1,30],[0,32],[0,6],[1,13],[-1,38],[0,31],[0,20],[0,19],[0,4],[0,18],[0,20],[0,25],[0,40],[0,17],[0,24],[1,24],[0,18],[-1,25],[1,29],[-1,18],[0,19],[0,23],[2,24],[0,21],[0,25],[-2,31],[0,21],[0,49],[0,39],[1,26],[0,86],[0,26],[1,128],[0,113],[0,47],[0,50],[0,73],[0,87],[-1,25],[0,33],[1,52],[0,52],[0,74],[-1,18],[-2,23],[-4,125],[0,238],[-11,271],[-7,125]],[[46328,78043],[10,0],[3,1],[9,3],[10,2],[6,3],[4,2],[6,3],[4,3],[6,5],[9,10],[3,4],[8,15],[9,23],[10,22],[14,21],[9,18],[4,7],[8,7],[29,5],[15,2],[7,1],[136,30],[10,2],[77,17],[13,13],[13,15],[16,14],[22,-1],[16,6],[14,14],[13,12],[16,13],[8,19],[2,22],[9,18],[11,15],[16,6],[20,3],[17,1],[23,4],[17,6],[14,17],[2,24],[14,19],[17,4],[22,6],[12,20],[25,21],[0,12],[0,7],[1,8],[6,16],[19,12],[3,1],[18,7],[17,-2],[15,11],[12,20],[11,15],[1,11],[2,12],[-3,21],[-3,16],[-1,4],[-7,24],[4,19],[11,16],[7,18],[2,9],[2,14],[13,14],[6,10],[5,8],[2,18],[1,21],[3,18],[17,12],[19,6],[17,6],[21,10],[18,10],[21,-10],[18,-2],[15,10],[15,13],[17,14],[20,5],[18,8],[7,17],[-2,24],[0,24],[12,20],[16,11],[9,24],[-5,29],[-5,26],[0,20],[7,18],[13,24],[12,14],[17,8],[15,14],[13,18],[5,15],[-14,32],[-25,0],[-3,-19],[-115,-12],[-17,25],[2,19],[-128,2],[-32,28],[-89,-4],[-17,0],[-37,-8],[-72,-16],[-1,0],[-19,-3],[-15,13],[-69,-24],[-96,4],[-55,2],[-60,2],[-43,65],[-89,23],[-115,19],[-16,10],[-102,64],[-9,5]],[[46326,79810],[1,24],[-1,23],[0,72],[-1,166],[6,46],[16,105],[7,52],[2,21],[6,49],[8,63],[3,25],[1,51],[1,35],[-1,32],[-1,100],[1,95],[1,68],[-1,131],[0,119],[0,47]],[[89500,71586],[0,-259],[2,-252],[0,-345],[0,-63],[0,-2],[-1,-304],[0,-312],[-1,-927],[2,-162],[-254,1],[-779,3],[-258,1],[-121,1],[-68,0],[-141,1],[-149,2],[-107,4],[-288,-2],[-14,0],[-242,0],[-60,0],[-187,-1],[-177,1],[-314,-1],[-149,0],[-80,-1],[-73,4],[-45,3],[-50,2],[-90,6],[0,138],[-1,35],[0,4],[-2,209],[-90,-42],[-100,-47],[-8,-4],[-96,-47],[-239,-108],[-191,-93],[-57,-28],[-269,-132],[-200,-98],[-388,-190],[-342,-167],[-187,-92],[-194,-95],[-24,-12],[-1,-1],[-19,-9],[-762,-379],[-531,-265],[-65,-29],[-364,-174],[-136,-66],[-154,-73]],[[81436,67219],[0,150],[0,44],[1,654],[0,4],[0,55],[0,206],[0,124],[0,41],[-12,19],[-170,0],[-643,1],[-54,0],[-163,0],[-444,1],[-23,0],[-384,1],[-164,0],[-22,1],[-28,-1],[-27,1],[-79,0],[-163,0],[-127,0],[-46,0],[-2,0],[-243,0],[-262,1],[-178,0],[-255,0],[-254,0],[-51,0],[-352,4],[-900,1],[-220,0],[-61,0],[-187,0],[-375,1],[-323,0],[-264,-1],[-28,0],[-54,0],[-20,0],[-156,0],[-189,-1],[-3,0],[-115,-1],[-61,0],[-1,0],[-75,0],[-6,0],[-97,0],[-1,0],[-38,1],[-39,-1],[-1,0],[-405,-2],[-514,-2],[-83,0],[-772,2],[-93,0],[-376,1],[-300,0],[-29,0],[-121,0],[-182,1],[-111,1],[-197,0],[-460,1],[-3,0],[-188,0],[-272,0],[-341,1],[-146,0],[-161,-1],[-298,2],[-252,1],[-9,0],[-28,1],[-22,0],[-93,-1],[-1,0],[-57,0],[-167,0],[-159,0],[-466,0],[-77,0],[-254,0],[-318,0],[-59,0],[-50,0],[-56,-1],[-325,2],[-44,0],[-8,0],[-43,1],[-191,0],[-418,3],[-330,2],[-5,0],[-166,1],[-127,1],[-78,0],[-155,1],[-177,2],[-30,0],[-9,-1],[-31,0],[-75,0],[-88,-1],[-145,0],[-173,-1],[-109,-1],[-19,0],[-4,0],[-19,0],[-21,0],[-1,0],[-1034,-6],[-41,0],[-69,-1],[-198,-3],[-60,1],[-84,0],[-109,0],[-313,-1],[-107,0],[-1,-73],[0,-104],[1,-31],[0,-165],[1,-94],[1,-75],[0,-46],[1,-362],[1,-189],[1,-156],[1,-242],[0,-61],[0,-6],[2,-183],[-1,-518],[-1,-256],[0,-41],[0,-153],[0,-23],[0,-7],[0,-289]],[[62157,65453],[-427,-1],[-973,3],[-215,-1],[-129,-1],[-641,-2],[-87,-1],[-303,-1],[-289,-1],[-140,-1],[-65,0],[-206,2],[-149,0],[-202,0],[-496,0],[-29,0],[-305,0],[-306,0],[-145,1],[-44,0],[-111,0],[-222,0],[-50,2],[-18,0],[-417,-3],[-87,0],[-352,-4],[-42,-1],[-24,0],[-2,0],[-528,0]],[[99350,77755],[-2,-1504],[0,-56],[0,-55],[0,-450],[0,-2],[-5,-2231],[-3,-1777],[-6,-2712],[0,-61],[0,-341],[-2,-570],[0,-54],[0,-30],[0,-500],[-4,-3467],[0,-44]],[[99328,63901],[-201,0],[-94,0],[-181,1],[-60,-1],[-315,0],[-121,0],[-238,1],[-158,-2],[-205,1],[-396,1],[-56,-2],[-45,0],[-43,2],[-393,-1],[-134,0],[-84,0],[-8,0],[-265,0],[-55,0],[-45,0],[-66,0],[-34,0],[-93,0],[-49,1],[-19,0],[-61,1],[-243,0],[-29,0],[-191,3],[-89,-1],[-2,-294],[-3,-263],[-4,-248],[-1,-151],[-1,-107],[-5,-335],[-2,-180],[-295,3],[-292,0],[-292,4],[-140,-2],[-116,-1],[-47,0],[-19,0],[-312,3],[-91,0],[-138,0],[-7,-161],[7,-93],[2,-73],[-2,-179],[-5,-256],[0,-6],[-1,-249],[-3,-163],[-1,-52],[-1,-88],[-2,-91],[-2,-124],[-577,-1],[-161,1],[-103,1],[-26,0],[-284,3],[-299,1],[-141,1],[-25,0],[-122,2],[-2,-505],[0,-31],[-1,-237],[-3,-329],[0,-9],[-1,-169],[0,-106],[-1,-152],[-77,1],[-212,1],[-296,0],[-283,0],[-298,0],[-68,2],[-42,-3],[-27,0],[-143,4],[-47,-2],[-52,1],[-48,0],[-76,-1],[-69,1],[-406,2],[-160,3],[-540,5],[-41,1],[-81,1],[-65,1],[-185,2],[-130,-2],[-121,-1],[-3,-256],[1,-256],[-1,-100],[0,-160],[-8,-402],[-1,-107],[-2,-269],[-433,1],[-93,1]],[[87829,57737],[-55,4],[-148,-1],[-269,1],[-410,0],[-50,1],[-272,-5],[-27,0],[-245,0],[-40,0],[-253,0],[-37,0],[-464,2],[-61,3],[-55,1],[-63,0],[-172,0],[-53,0],[-534,-2],[-54,1],[-220,2]],[[84347,57744],[-40,0],[-19,0],[-19,0],[-20,0],[-39,0],[-18,-1],[-38,0],[-19,0],[-18,0],[-19,0],[-19,0],[-18,0],[-18,0],[-53,0],[-52,0],[-69,0],[-30,0],[-19,0],[-40,0],[-38,0],[-20,0],[-27,0],[-54,0],[-39,1],[-19,0],[-19,0],[-28,0],[-43,0],[-30,0],[-43,0],[-18,0],[-47,0],[-34,0],[-47,0],[-25,0],[-19,0],[-34,1],[-68,0],[-1,-1],[-10,0],[-13,1],[-4,-1],[-9,-1],[-43,0],[-90,1],[-58,0],[-154,0],[-105,-1],[-46,0],[-45,-1],[-24,0],[-35,0],[-26,0],[-23,0],[-20,0],[-34,0],[-35,0],[-35,0],[-34,0],[-35,-1],[-264,9],[-245,6],[-83,0],[-82,1],[-150,-10],[-55,-1],[-1,39],[0,3],[-2,108],[-2,57],[-7,143],[0,37],[0,91],[6,140],[1,22],[2,33],[-1,90],[0,67],[-1,138],[-1,55],[2,22],[-6,236],[1,257],[2,460],[0,32],[0,64],[0,63],[0,30],[0,132],[0,23],[6,214],[-7,196],[-3,91],[-1,39],[2,35],[1,155]],[[81361,60818],[0,127],[0,38],[0,33],[1,60],[-1,55],[-1,201],[5,132],[-2,169],[-2,87],[-2,93],[0,37],[0,59],[1,184],[1,283],[0,57],[3,74],[-1,208],[0,40],[0,60],[-1,77],[0,64],[0,39],[0,10],[-1,11],[-1,94],[0,94],[-1,171],[-1,130],[-2,396],[69,2],[0,303],[0,81],[0,133],[5,259],[1,33],[3,142],[3,444],[-1,35],[-3,77],[0,28],[-2,96],[1,32],[0,4],[0,196],[0,231],[0,111],[0,12],[0,53],[0,12],[0,7],[1,466],[0,62],[0,122],[0,1],[4,74],[-1,275],[0,27]],[[30654,68580],[12,-29],[76,-190],[19,-39],[16,-35],[24,-54],[50,-104],[12,-30],[10,-18],[29,-61],[8,-18],[36,-77],[67,-145],[2,-4],[58,-117],[26,-62],[167,-356],[11,-23],[0,-1],[17,-36],[20,-42],[78,-170],[27,-52],[19,-40],[40,-86],[39,-83],[39,-83],[55,-120],[28,-58],[18,-39],[89,-190],[41,-89],[32,-71],[33,-70],[22,-46],[21,-45],[8,-17],[12,-25],[9,-20],[37,-80],[40,-87],[66,-148],[11,-22],[35,-73],[39,-84],[8,-17],[37,-80],[26,-55],[42,-88],[138,-297],[104,-220],[33,-74],[77,-169],[21,-45],[14,-29],[96,-205],[47,-106]],[[32795,63956],[-151,0],[-18,0],[-107,0],[-42,-1],[-152,0],[-229,1],[-22,0],[-323,0],[-52,0],[-176,3],[-34,0],[-79,1],[-30,0],[-19,1],[-20,0],[-52,-1],[-37,1],[-37,-1],[-36,1],[-33,0],[-23,-2],[-54,2],[-59,2],[-31,1],[-1,0],[-141,2],[-8,0],[-22,1],[-23,0],[-158,3],[-81,1],[-1,-29],[1,-59],[0,-48],[-1,-34],[1,-36],[-1,-34],[1,-23],[0,-89],[0,-35],[1,-19],[0,-19],[-2,-310],[1,-11],[2,-278],[-1,-61],[0,-13],[-2,-365],[-3,-97],[0,-96],[0,-159],[0,-134],[0,-108],[0,-35],[0,-27],[0,-25],[0,-23],[0,-6],[0,-81],[0,-83],[0,-190],[0,-29],[0,-29],[0,-164],[0,-27],[0,-39],[0,-27],[0,-73],[0,-45],[0,-28],[0,-100],[0,-23],[0,-33],[0,-199],[-3,-181],[-2,-82],[-5,-274],[-2,-106],[0,-72],[1,-522],[0,-34],[-5,-164],[-5,-105],[-1,-252],[-5,-245],[0,-7],[0,-52],[8,-271],[0,-97],[1,-37],[-1,-31],[-1,-28],[-5,-165],[-1,-47],[3,-354],[0,-222]],[[30518,57280],[-210,1],[-21,0],[-1,0],[-531,2],[-31,0],[-25,0],[-152,1],[-256,1],[-157,0],[-113,1],[-134,1],[-37,0],[-164,3],[-126,3],[-101,2],[-38,0],[-130,-9],[-37,-1],[-177,3],[-175,4],[-39,1],[-175,-3],[-253,3],[-16,0],[-30,0],[-15,0],[-262,7],[-42,0],[-124,-2],[-46,0],[-61,-1],[-85,0],[-219,-2],[-31,-1],[-28,0],[-69,0],[-146,0],[-20,0],[-237,-1],[-58,0],[-58,1],[-267,1],[-241,-3],[-306,20],[-46,-4],[-244,-25],[-260,6],[-173,4],[-133,2],[-143,4],[-152,-5],[-2,0],[-367,4],[-24,-1],[-187,-4],[-113,-3],[-469,-10],[-285,12],[-42,-4],[-101,-11],[-123,-14],[-29,-3],[-21,-1],[-91,3],[-70,2],[-86,3]],[[21913,57267],[-36,1],[-61,1],[-235,5],[-94,7],[-150,2],[-246,-8],[-46,-1],[-256,17],[-29,0],[-561,-8],[-368,-6],[-2,0],[-18,-1],[-194,2],[-163,1],[-34,1],[-342,8],[-220,-1],[-204,-3],[-30,0],[-221,-2],[-39,-1],[-51,0],[-24,-1],[-6,0],[-18,0],[-50,-1],[-117,7],[-160,9],[-288,-8],[-213,-7],[-73,-3],[-10,0],[-17,0],[-43,1],[-2,0],[-46,1],[-57,1],[-432,11],[-266,3],[-70,-1],[-20,-1],[-69,12],[-96,8],[-61,5],[-369,2],[-519,-5],[-1082,-9],[-455,-4],[-500,-4],[-30,-1],[-236,-2],[-75,-1],[-881,-7],[-511,-4],[-182,-2],[-182,-4],[-146,1],[-45,0],[-40,0],[-5,1],[-412,2],[-111,1],[-237,10],[-36,2],[-165,-1],[-12,0],[-36,0],[-1,0],[-52,0],[-110,-1],[-17,-1],[-590,0],[-52,1],[-136,0],[-21,0],[-271,0],[-158,1],[-71,-1],[-147,0],[-381,0],[-120,0],[-351,-1],[-333,1],[-63,0],[-41,-2],[-362,-5],[-51,0],[-471,1],[-62,0],[-745,1],[-289,0],[-45,1],[-88,0],[-33,0],[-20,-1],[-67,0],[-118,0],[-21,0],[-12,0],[-45,0],[-44,0],[-12,0],[-109,0],[-44,0],[-185,1],[-45,-1],[-41,-1],[-187,3],[-20,1],[-109,1],[-43,1],[-132,2],[-181,2],[-20,0],[-415,3],[-18,0],[-73,0],[-23,0],[-211,0],[-83,0],[-200,0],[-230,2],[-17,0],[-222,2],[-49,0],[-56,0],[-127,1],[-202,0],[-337,2],[-21,0],[-25,-14],[-31,0],[-233,-1],[-23,0],[-379,-1],[-193,0],[-54,0],[-104,0]],[[66,57289],[0,27],[-1,376],[1,39],[1,58],[0,61],[-1,246],[1,135],[2,863],[0,27],[0,264],[0,68],[-1,187],[0,76],[0,19],[0,220],[-1,346],[0,26],[0,224],[1,82],[0,38],[10,227],[2,27],[-9,183],[-4,74],[8,249],[0,2],[-1,42],[0,4],[-1,27],[0,20],[-5,160],[0,308],[0,177],[0,33],[0,144],[0,19],[0,61],[0,2],[-1,71],[0,5],[0,19],[1,355],[1,140],[0,170],[1,187],[0,213],[1,224],[0,186]],[[46400,65418],[1,-20],[-1,-58],[1,-69],[0,-40],[-1,-19],[1,-27],[0,-25],[1,-22],[0,-114],[-4,-92],[0,-12],[0,-8],[6,-185],[0,-22],[-1,-53],[-3,-32],[0,-32],[0,-74],[0,-133],[0,-55],[0,-43],[0,-90],[0,-62],[1,-80],[0,-24],[-1,-140],[76,0],[39,0],[35,2],[40,-1],[146,0],[267,1],[111,-1],[189,0],[71,0],[41,0],[218,0],[70,0],[33,0],[79,0],[33,0],[102,1],[3,-38],[1,-45],[-1,-41],[0,-41],[0,-20],[1,-20],[-1,-39],[2,-100],[-3,-220],[-1,-44],[4,-136],[2,-92],[0,-27],[0,-23],[0,-28],[0,-63],[-1,-36],[0,-106],[3,-264],[-1,-61],[1,-24],[-50,-1],[-54,1],[-52,0],[-26,0],[-26,0],[-26,0],[-42,0],[-18,0],[-34,0],[-26,0],[-39,0],[-31,1],[-29,-2],[-74,-2],[-75,1],[-33,0],[0,-19],[-19,1],[-131,1],[-63,1],[-103,1],[-236,-2],[-1,0],[-100,-2],[-31,1],[-213,7],[-135,5],[-180,2],[-141,-1],[-1,0],[-60,0],[-5,0],[-120,0],[-20,0],[-29,0],[-127,0],[-47,0],[-121,0],[-258,3],[-186,1],[-60,1],[-22,0],[-126,0],[-332,3],[-120,1],[-86,0],[-29,1],[-179,-1],[-210,-1],[-59,0],[-35,0],[-102,0]],[[43637,62422],[0,70],[0,24],[-2,67],[2,178],[-22,3],[-11,6],[-7,4],[-15,21],[-14,28],[-21,-4],[-15,-13],[-12,3],[-7,1],[-2,11],[-3,17],[-17,13],[-4,2],[-15,14],[1,9],[2,11],[-11,14],[-5,1],[-15,3],[-6,18],[1,17],[1,19],[-1,1],[-17,20],[-26,7],[-31,2],[-22,4],[-55,11],[-26,1],[-20,0],[-6,1],[-30,-1],[-43,2],[-56,0],[-306,2],[-38,0],[-519,9],[-110,-3],[-197,4],[-226,5],[-256,7],[-83,1],[-31,1],[-51,0],[-106,2],[-291,3],[-227,3],[-255,4],[-151,2],[-171,2],[-191,5],[-122,2],[-79,2],[-61,1],[-54,1],[-90,1],[-21,1],[-97,-2],[-132,-2],[-69,-2],[-28,0],[-20,0],[-20,-1],[-1,0],[-16,-6],[-21,-16],[-12,-15],[-14,-15],[-25,-15],[-19,-14],[-13,-11],[-18,-19],[-13,-13],[-20,-21],[-17,-17],[-9,-16],[-20,-36],[-22,-43],[-8,-19],[-4,-18],[-15,-31],[-11,-18],[-2,-3],[-8,-12],[-50,-33],[-25,-14],[-9,-5],[-10,-7],[-20,-12],[-10,-10],[-14,-11],[-5,-1],[-12,0],[-20,-3],[-15,-11],[-17,-16],[-14,-18],[-27,-29],[-12,-16],[-10,-15],[-16,-26],[-7,-21],[-6,-20],[-15,-11],[-19,0],[-4,0],[-19,0],[-19,0],[-158,0],[-5,0],[-94,0],[-91,1],[-73,-2],[-236,0],[-11,0],[-11,0],[-578,-2],[-353,-1],[-348,-1],[-104,0],[-423,-1],[-579,-2],[-365,6],[-287,-2],[-838,-3],[-76,2],[-75,2],[-231,7],[-12,0],[-19,38],[-18,44],[-36,98],[-57,122],[-11,25],[-134,290],[-29,62],[-28,60],[-19,42],[-61,132],[-45,98],[-97,209],[-31,68],[-38,81],[-15,31],[-61,134]],[[81361,60818],[-738,1],[-134,0],[-53,0],[-2,0],[-36,0],[-209,1],[-212,0],[-210,1],[-5,0],[-206,0],[-208,-2],[-151,0],[-558,-3],[-1,0],[-573,-3],[-1,0],[-184,-1],[0,-63],[-1,-36],[1,-21],[1,-30],[0,-3],[4,-347],[-3,-233],[0,-221],[1,-81],[0,-496],[-175,1],[-43,1],[-73,0],[-59,0],[-46,0],[-108,0],[-50,0],[-17,0],[-20,0],[-18,0],[-104,-1],[-18,0],[-136,-2],[-602,-6],[-270,-3],[0,-72],[0,-22],[0,-43],[1,-195],[0,-65],[0,-6],[0,-33],[0,-1],[0,-27],[0,-27],[0,-19],[0,-27],[0,-99],[0,-33],[0,-114],[1,-127],[0,-122],[0,-143],[-2,-344],[-23,-13],[-37,0],[-116,-1],[-74,-1],[-50,0],[-55,0],[-76,0],[-73,-1],[-247,-1],[-23,0],[-158,0],[-32,0],[-33,0],[-21,0],[-20,0],[-25,0],[-24,0],[-47,0],[-46,0],[-135,-1],[-223,0],[-32,0],[-31,0],[-206,-1],[-10,0],[-17,0],[-145,0],[-167,-1],[-48,0],[-73,0],[-61,0],[-80,0],[-62,0],[-5,0],[-19,0],[-25,0],[-6,0],[-40,0],[-119,0],[-33,-1],[-46,0],[-124,0],[-43,0],[-60,1],[-23,1],[-409,2],[-198,0],[-270,1],[-83,1],[-65,0],[-119,1],[-120,0],[-93,0],[-92,1],[-332,1],[-47,1],[-121,0],[-91,0],[-135,-3],[-457,-14],[-185,1],[-576,2],[-21,0],[-382,2],[-17,0],[-32,0],[-142,1],[-18,0],[-103,1],[-271,1],[1,-376],[1,-899],[2,-169],[0,-2],[1,-135],[1,-128],[0,-18],[0,-1],[-4,-113],[0,-35],[0,-57],[2,-329],[1,-28],[0,-89],[0,-21],[-2,-247],[0,-62],[-2,-306],[-1,-181],[-2,-172],[1,-140],[0,-22],[0,-60],[2,-438],[0,-18],[0,-236],[2,-259]],[[68755,53191],[-128,-2],[-85,-1],[-50,2],[-112,1],[-948,0],[-30,0],[-445,0],[-479,1],[-341,1],[-150,0],[-416,1],[-681,1],[-175,0],[-242,0],[-895,0],[-344,0],[-264,1],[-146,-4],[-414,-2],[-202,-1],[-416,-3]],[[61792,53186],[1,500],[0,131],[0,408],[0,81],[0,174],[0,274],[1,33],[1,455],[0,263],[0,182],[-2,61],[0,125],[0,18],[3,124],[0,124],[0,413],[0,179],[1,162],[0,3],[0,188],[0,67],[0,25],[3,336],[-2,26],[0,87],[-1,154],[346,-5],[24,-1],[2,12],[-1,134],[1,177],[-1,187],[0,29],[-2,351],[-1,100],[0,151],[-1,184],[-1,40],[0,83],[0,126],[0,55],[-1,127],[-2,414],[-1,148],[0,210],[0,317],[0,100],[-1,35],[0,259],[0,53],[0,67],[1,503],[0,440],[0,2],[0,62],[0,24],[4,344],[-3,361],[-4,347],[-2,195],[-1,148],[-1,102],[-1,42],[-1,178],[-1,27],[1,2],[6,21],[0,499],[0,70],[-1,58],[0,7],[1,148],[0,77],[0,152],[0,63],[1,119],[0,141],[0,42],[0,147]],[[61792,53186],[-4,-283],[0,-122],[1,-368],[0,-54],[0,-70],[-1,-377],[0,-255],[-45,0],[-499,2],[-46,0],[-185,0],[-146,-2],[-59,-2],[-51,2],[-82,2],[-21,0],[-327,-2],[-157,-2],[-103,-2],[-111,3],[-176,-1],[-24,2],[-76,0],[-40,1],[-33,0],[-119,1],[-76,-2],[-127,-2],[-75,1],[-62,1],[-54,-1],[-23,-2],[-77,3],[-21,1],[-66,0],[-44,-3],[-25,-2],[-54,3],[-94,0],[-94,0],[-23,0],[-98,1],[-53,2],[-119,-2],[-386,1],[-33,0],[-77,0],[-28,-1],[-65,0],[-40,-1],[-48,0],[-43,0],[-85,1],[-65,0],[-60,-1],[-13,0],[-16,0],[-24,0],[-18,0],[-26,0],[-73,0],[-172,0],[-41,0],[-74,0],[-293,0],[-63,0],[-100,0],[-45,0],[-456,0],[-17,0],[-22,-1],[-36,3],[-21,-1],[-185,-1],[-41,-2],[-76,3],[-59,-2],[-20,0],[-29,0],[-208,1],[-133,1],[-234,2],[-69,0],[-21,0],[-190,2],[-42,-1],[-23,0],[-322,-1],[-64,0],[-883,-2],[-114,-1],[-70,0],[-203,0],[-61,-1],[-139,0],[-187,2],[-212,-3],[-19,0],[-41,2],[-162,2],[-100,-1],[-73,1],[-97,-1],[-8,0],[-89,0]],[[51689,51657],[-50,0],[-249,-1],[-242,0],[-85,0],[-24,0],[-272,0],[-35,0],[-200,0],[-18,0],[-6,0],[-26,0],[-59,-2],[-135,0],[-233,0],[-81,1],[-14,0],[-51,0],[-171,1],[-14,0],[-8,0],[-53,0],[-66,0],[-51,-1],[-33,0],[-140,0],[-25,0],[-73,1],[-43,1],[-59,1],[-282,-2],[-144,0],[-107,0],[-284,0],[-181,0],[-156,0],[-118,0],[-19,0],[-31,0],[-41,0],[-156,0],[-76,0],[-120,0],[-141,0],[-437,-1],[-385,0],[-50,0],[-40,0],[-34,0],[-19,0],[-63,1],[-161,0],[-298,0],[-243,0],[-40,0],[-223,0],[-19,0],[-102,0],[-188,0],[-51,0],[-40,-1],[-243,0],[-62,0],[-75,0],[-322,-2],[-98,-1],[-110,0],[-124,-1],[-19,0],[-26,0],[-45,-1],[-45,1],[-4,0],[-20,0],[-134,0],[-41,0],[-1,58],[-2,159],[0,53],[-1,54],[0,1],[-1,154],[1,102],[0,162],[0,50],[0,186],[0,166],[-1,21],[1,82],[-1,27],[-1,115],[-3,24],[1,59],[0,22],[0,32],[-1,25],[-2,55],[1,50],[1,146],[0,53],[1,154],[4,25],[-3,188],[-5,127],[-2,38],[-2,31],[0,30],[2,51],[-2,158],[-2,127],[0,86],[0,24],[0,37],[0,1],[0,30],[0,36],[0,178]],[[43538,54828],[-1,126],[0,93],[-1,36],[0,21],[-1,55],[-1,135],[0,419],[0,118],[0,60],[-1,98],[0,23],[-1,69],[0,29],[-2,92],[0,70],[-176,-2],[-161,-1],[-129,-2],[-48,0],[-280,-3],[-74,-1],[-6,444],[-4,408],[-3,220],[-3,211],[0,34],[0,33],[-1,39],[-1,60],[0,56],[0,21],[0,21],[99,2],[-1,45],[0,55],[0,56],[0,127],[-2,159],[-1,25],[-4,166],[-1,33],[-1,34],[-3,134],[-4,142],[-1,52],[-1,57],[-2,88],[-1,83],[-1,170],[0,47],[0,85],[0,1],[0,72],[0,58],[0,21],[-1,38],[0,28],[5,131],[1,25],[6,155],[4,99],[7,211],[2,34],[2,61],[0,84],[1,164],[0,24],[1,82],[1,195],[1,139],[0,137],[1,47],[0,113],[0,24],[0,32],[1,23],[0,68],[0,70],[1,39],[0,71],[0,89],[1,114],[0,45],[1,62],[0,42],[0,41],[1,229],[1,81],[0,46],[0,55],[65,0],[46,0],[34,1],[38,-1],[58,1],[108,0],[35,0],[371,1],[125,0]],[[43538,54828],[-200,-23],[-57,-6],[-98,-11],[-24,-1],[-20,-1],[-5,0],[-18,-1],[-45,-2],[-10,0],[-31,-1],[-37,-1],[-20,0],[-25,-1],[-15,0],[-16,0],[-18,0],[-25,5],[-30,13],[-49,23],[-260,114],[-20,8],[-98,43],[-209,92],[-29,13],[-32,16],[-23,10],[-14,6],[-3,1],[-24,9],[-31,9],[-4,1],[-14,4],[-19,5],[-17,5],[-88,28],[-72,22],[-20,6],[-24,8],[-16,4],[-44,13],[-89,27],[-500,150],[-50,15],[-22,6],[-152,47],[-257,77],[-332,101],[-18,5],[-104,32],[-41,13],[-54,17],[-42,13],[-31,9],[-28,8],[-26,7],[-78,23],[-266,77],[-90,26],[-49,12],[-169,53],[-362,113],[-135,41],[-105,32],[-79,23],[-249,75],[-61,18],[-109,33],[-22,7],[-18,5],[-16,5],[-19,6],[-19,5],[-26,8],[-35,10],[-33,10],[-28,9],[-30,8],[-16,5],[-31,9],[-25,8],[-19,5],[-16,5],[-25,8],[-18,5],[-16,5],[-5,1],[-46,14],[-44,13],[-25,11],[-23,10],[-25,12],[-4,1],[-16,8],[-31,14],[-72,33],[-87,39],[-28,13],[-48,21],[-36,16],[-18,9],[-45,20],[-16,7],[-16,8],[-3,1],[-75,34],[-200,91],[-50,23],[-148,66],[-41,19],[-73,32],[-74,33],[-36,15],[-54,25],[-76,34],[-203,90],[-102,46],[-61,27],[-59,26],[-29,11],[-113,54],[-2,1],[-49,0],[-23,0],[-96,8],[-81,6],[-41,3],[-62,2],[-56,1],[-24,0],[-32,1],[-136,-3],[-183,-3],[-49,-1],[-292,1],[-113,0],[-205,1],[-207,1],[-42,0],[-19,0],[-21,0],[-168,-5],[-166,-4],[-21,-1],[-1,0],[-27,0],[-158,-4],[-25,0],[-816,-15],[-167,-3],[-105,-1],[-37,-1],[-30,-1],[-52,-3],[-65,3],[-6,0],[-296,0],[-37,0],[-9,0],[-27,0],[-75,-1],[-77,1],[-315,1],[-219,2],[-98,0],[-100,1],[-87,0],[-128,1],[-244,1],[-35,0]],[[99328,63901],[1,-2347],[0,-994],[0,-306],[0,-130],[-4,-1558],[-6,-2710],[-5,-1898],[0,-32],[-3,-1261],[0,-78],[0,-23],[-3,-157]],[[99308,52407],[-200,0],[-143,0],[-72,0],[-30,0],[-42,1],[-38,-1],[-36,0],[-22,1],[-20,0],[-174,1],[-288,1],[-290,1],[-289,1],[-230,1],[-55,1],[-158,0],[-134,0],[-155,1],[-148,0],[-19,0],[-145,0],[-32,1],[-103,1],[-143,-1],[-20,0],[-20,0],[-46,0],[-319,2],[-44,0],[-24,0],[-244,-2],[-108,2],[-79,0],[-252,1],[-301,0],[-39,0],[-96,0],[-139,0],[-276,0],[-20,0],[-428,1],[-61,0],[-524,1],[-284,0],[-144,0],[-146,-4],[-150,1],[-23,0],[-118,2],[-216,2],[-462,-3],[-223,1],[-60,0],[-32,0],[-24,0],[-27,0],[-124,-1],[-47,1],[-239,-3],[-283,-2],[-226,1],[-150,1],[-33,-1],[-26,1],[-27,0],[-19,0],[-108,-1],[-20,-1],[-18,-1],[-257,2],[-41,0],[-83,0],[-24,0],[-124,-3],[-18,0],[-142,0],[-142,1],[-291,1],[-185,0],[-35,0],[-55,0],[-78,0],[-247,0],[-263,-2],[-133,-1],[-20,1],[-60,1],[-76,2],[3,318],[0,107],[1,331],[1,19],[2,239],[1,35],[0,163],[1,39],[1,19],[3,70],[0,28],[4,167],[3,176],[-4,237],[1,100],[1,51],[0,49],[3,154],[0,114],[3,154],[2,250],[2,262],[1,252],[4,141],[-3,120],[0,129],[-1,131],[0,251],[-1,507],[0,7],[-3,251],[5,260],[0,190]],[[84347,57744],[0,-329],[1,-151],[0,-68],[3,-10],[-1,-12],[0,-7],[-1,-29],[-1,-53],[0,-100],[0,-22],[-4,-164],[3,-34],[0,-61],[3,-67],[-3,-48],[3,-22],[0,-25],[-1,-71],[-3,-60],[-2,-143],[-1,-100],[3,-284],[-3,-119],[0,-303],[0,-65],[-1,-174],[0,-27],[-1,-34],[0,-4],[0,-31],[0,-1],[0,-23],[0,-29],[0,-1],[1,-50],[0,-10],[0,-29],[0,-11],[0,-122],[2,-47],[0,-22],[0,-20],[0,-2],[1,-99],[-2,-125],[3,-215],[-2,-110],[-1,-49],[0,-210],[1,-219],[0,-47],[0,-84],[-1,-226],[-1,-140],[-1,-21],[0,-248],[0,-32],[-1,-336],[0,-180],[0,-64],[0,-235],[-3,-215],[-4,-251],[58,0],[-1,-173],[3,-112],[1,-30],[0,-57],[0,-61],[1,-47],[-2,-56],[-3,-136],[1,-128],[1,-98],[-3,-27],[0,-155],[1,-77],[1,-392],[8,-792],[1,-37],[-1,-56],[-1,-81],[0,-34],[-2,-241],[0,-51],[-4,-209],[2,-74]],[[84394,48530],[-196,-2],[-96,0],[-116,-2],[-89,-2],[-170,-2],[-204,-2],[-31,0],[-119,2],[-285,1],[-25,1],[-78,0],[-304,2],[-250,1],[-138,0],[-202,4],[-299,5],[-169,1],[-74,-1],[-121,3],[-169,1],[-94,-1],[-60,0],[-42,0],[-139,0],[1,-83],[-1,-43],[0,-151],[-2,-419],[-1,-45],[0,-43],[0,-44],[0,-77],[-2,-480],[-2,-83],[0,-83],[-237,0],[-24,0],[-118,1],[-115,0],[-35,0],[-36,0],[-26,0],[-31,0],[-259,0],[-131,0],[-456,1],[-91,1],[-74,0],[-146,0],[-147,1],[-74,0],[-155,1],[-119,0],[-169,1],[-218,0],[-1,0],[-229,1],[-23,1],[-39,0],[-34,0],[-23,0],[-40,-1],[-368,1],[-52,0],[-155,-1],[-292,2],[-1066,8],[-90,1],[-291,2],[-27,0],[-243,2],[-59,1],[-182,3],[-137,1],[-80,1],[-69,1],[-300,3],[-258,3],[-77,0],[-3,0],[-159,2],[-142,2],[-64,1],[-379,5],[-216,3],[-228,3],[-110,1],[-484,6],[-127,1],[-286,1],[-6,0],[-273,0],[-257,5],[-296,6],[-197,4],[-32,0],[-357,7],[0,72],[-1,100],[0,110],[0,50],[0,18],[0,166],[0,75],[0,119],[-1,46],[-1,259],[0,278],[-1,36],[0,13],[0,6],[1,58],[0,18],[-1,124],[-139,4],[-34,1],[-85,3],[-554,4],[-44,0],[-29,0],[-27,0],[-30,0],[-40,0],[-249,-1],[-464,-2],[-7,0],[-66,0]],[[68733,48627],[2,107],[0,11],[2,151],[0,115],[1,112],[0,45],[-1,108],[0,20],[2,70],[0,5],[0,444],[0,31],[0,99],[4,947],[1,2],[0,22],[3,256],[-1,308],[0,67],[1,231],[1,145],[4,296],[7,559],[0,40],[0,19],[-3,28],[-1,24],[0,302]],[[99308,52407],[5,-453],[-5,-583],[-9,-1274],[15,-311],[1,-22],[-3,-360],[7,-143],[-3,-174],[0,-28],[0,-91],[-2,-261],[0,-86],[1,-151],[-1,-24],[-2,-264],[-1,-231],[1,-22],[1,-21],[-1,-33],[0,-21],[0,-38],[0,-54],[0,-51],[1,-44],[2,-21],[1,-215],[-1,-45],[0,-49],[0,-33],[-1,-50],[0,-121],[-2,-62],[-4,-449],[-6,-84],[-3,-56],[0,-118],[-4,-153],[-2,-93],[0,-1],[-1,-7],[-11,-699],[-1,-79],[-21,-391],[-7,-957],[-11,-558],[-12,-620],[-45,-2319],[-19,-992],[0,-1]],[[99165,39494],[-1,0],[-1,0],[-33,0],[-133,-2],[-62,0],[-25,0],[-198,0],[-30,0],[-53,0],[-171,-1],[-33,3],[-157,-2],[-52,-1],[-28,3],[-39,0],[-189,-1],[-107,0],[-72,0],[-177,0],[-246,0],[-367,0],[-316,-1],[-250,0],[-147,0],[-143,0],[-242,-1],[-435,3],[-34,0],[-178,0],[-233,-1],[-121,0],[-54,-1],[-161,0],[-117,0],[-92,0],[-49,0],[-2,0],[-173,0],[-114,1],[-43,1],[-202,0],[-59,-3],[-95,0],[-68,0],[-388,-1],[-23,0],[-264,-1],[-81,0],[-161,1],[-30,0],[-155,-1],[-57,0],[-366,-4],[-208,0],[-86,0],[-47,0],[-38,5],[-58,-1],[-102,-1]],[[91599,39488],[4,154],[-1,59],[0,80],[-1,39],[1,208],[0,112],[0,27],[1,85],[0,39],[2,164],[1,181],[2,127],[-2,258],[-53,-1],[-124,1],[-38,0],[-29,-1],[-73,2],[-129,-4],[-26,1],[-28,-1],[-96,-3],[-22,0],[-202,-2],[-175,-1],[-114,-1],[-148,0],[-442,-3],[-125,-1],[-90,0],[-61,0],[-328,-2],[-100,0],[-366,-1],[-498,0],[-19,0],[-30,2],[-131,-3],[0,29],[1,31],[1,26],[0,135],[0,35],[1,257],[7,99],[-6,227],[-1,157],[0,22],[4,239],[3,151],[2,125],[1,124],[0,85],[-1,294],[5,322],[1,47],[2,248],[4,225],[-238,0],[-25,0],[-65,0],[-33,1],[-25,0],[-113,-1],[-58,-2],[-84,0],[-84,0],[-33,0],[-111,0],[-27,0],[-24,0],[-34,0],[-138,0],[-105,1],[-83,-1],[-126,0],[-173,0],[-38,0],[-19,0],[-28,0],[-1,0],[-288,1],[-63,0],[-14,0],[-5,0],[-33,1],[1,796],[1,29],[0,3],[0,32],[0,39],[1,86],[0,150],[2,27],[0,26],[-1,69],[-1,260],[-2,375],[-1,77],[0,18],[0,19],[0,6],[0,12],[-1,35],[1,91],[1,157],[0,26],[1,146],[0,57],[6,308],[-1,257],[-2,89],[-1,125],[-1,40],[1,132],[0,245],[0,398],[0,81],[0,300],[0,118],[-291,-2],[-88,2],[-54,0],[-127,-1],[-226,1],[-228,0],[-31,1],[-90,1],[-20,-2],[-305,13],[-265,7]],[[51689,51657],[-3,-176],[4,-94],[-4,-344],[-5,-428],[-1,-59],[0,-49],[-1,-120],[0,-39],[-1,-72],[-2,-163],[-6,-62],[1,-247],[2,-232],[0,-1],[2,-295],[-2,-283],[-1,-164],[-2,-249],[0,-63],[-1,-80],[-2,-319],[-2,-206],[0,-90],[-1,-119],[-3,-284],[0,-57],[-2,-292],[5,-37],[0,-156],[-2,-56],[0,-18],[7,-25],[-2,-476],[0,-93],[-1,-207],[-1,-230],[-1,-98],[0,-173],[11,-2],[1,-46],[3,-377],[0,-18],[-3,-193],[-2,-100],[3,-534],[1,-240],[-20,-1],[-418,0],[-17,0],[-31,0],[-247,-2],[-150,2],[-136,0],[-67,1],[-68,0],[-101,1],[-596,8],[-268,-3],[1,-279],[0,-199],[0,-439],[0,-70],[0,-191],[0,-153],[2,-43],[2,-147],[-6,-646],[3,-25],[0,-20],[1,-76],[-2,-399],[-1,-26],[1,-29],[-4,-63],[0,-41],[3,-251],[-34,0],[-235,1],[-192,-1],[-255,1],[-48,0],[-4,0],[-54,-1],[-35,-1],[-346,-2],[-69,0],[-156,2],[-180,-4],[-122,3],[-19,0],[-2,40],[-261,21],[-386,30],[-27,3],[-10,0],[-655,49],[-169,13],[-239,17],[-50,4],[-18,2],[-255,2],[-89,-3],[-93,2],[-75,1],[-70,2],[-490,0],[-429,-1],[-224,-1],[-18,-1],[0,-623],[5,-338],[1,-315],[0,-60],[0,-52],[1,-486],[1,-291],[1,-534],[0,-26],[1,-103],[2,-231],[2,-121]],[[44264,37898],[-41,-3],[-86,0],[-8,0],[-15,0],[-36,0],[-23,0],[-27,0],[-19,0],[-18,0],[-34,0],[-129,0],[-94,1],[-364,0],[-44,0],[-66,0],[-355,1],[-62,0],[-165,0],[-85,1],[-3,-77],[-74,0],[-51,-1],[-193,-1],[-25,-1],[-90,1],[-384,-1],[-108,-1],[-355,-1],[-82,0],[-91,-1],[-44,0],[-40,0],[-34,0],[-29,0],[-63,-1],[-51,0],[-136,0],[-60,-1],[-92,0],[-35,0],[-32,0],[-222,-1],[-23,0],[-42,0],[-99,-1],[-45,0],[-333,1],[-105,0],[-152,0],[-373,1],[-132,1],[-83,1],[-63,0],[-24,0],[-27,0],[-28,0],[-38,0],[-17,0],[-24,0],[-40,0],[-425,0],[-47,1],[-36,0],[-32,0],[-37,0],[-32,0],[-18,2],[-44,0],[-463,1],[-149,0],[-1281,1],[-131,0],[-134,0],[-96,0],[-533,2],[-48,0],[-168,0],[-133,1],[-952,25],[-108,2],[-17,1],[-127,2],[-5,0],[-19,0],[-36,1],[-20,0],[-56,1],[-67,1],[-238,4],[-17,1],[-171,3],[-35,0],[-14,0],[-8,0],[-23,0],[-17,0],[-60,0],[-27,0],[-37,0],[-32,0],[-22,0],[-36,0],[-21,0],[-18,0],[-18,0],[-18,0],[-51,0],[-27,1],[-26,0],[-27,0],[-322,4],[-41,1],[-21,0],[-20,0],[-53,1],[-61,1],[-25,0],[-8,0],[-13,1],[-54,-9],[-19,-3],[-3,0],[-19,-2],[-14,-1],[-3,-1],[-37,1],[-53,0],[-261,2],[-19,0],[-27,0],[-42,1],[-22,0],[-17,0],[-28,0],[-24,0],[-27,1],[-119,0],[-41,0],[-222,0],[-93,0],[-46,0],[-51,0],[-1,0],[-29,0],[-149,0],[-40,0],[-5,0],[-25,0],[-30,0],[-43,1],[-70,0],[-38,0],[-9,0],[-152,0],[-44,0],[-83,-1],[-44,0],[-88,0],[-84,-2],[-78,-1],[-17,0],[-17,0],[-197,0],[-17,0],[-15,0],[-9,0],[-18,0],[-22,0],[-18,0],[-43,0],[-97,0],[-73,0],[-61,-2],[-132,1],[-213,0],[-27,0],[-18,0],[-25,0],[-32,0],[-59,0],[-35,-1],[-86,1],[-48,0],[-29,0],[-24,0],[-22,0],[-25,0],[-25,0],[-22,0],[-130,-1],[-34,0],[-3,0],[-65,0],[-28,0],[-38,0],[-46,0],[-28,0],[-37,0],[-29,0],[-125,1],[-20,-1],[-55,0],[-35,0],[-54,1],[-63,-1],[-25,0],[-34,0],[-17,-1],[-25,0],[-34,-1],[-22,0],[-20,0],[-21,-1],[-22,-1],[-28,1],[-52,-1],[-90,-2],[-27,-1],[-85,-2],[-37,-2],[-67,-3],[-257,-7],[-98,-3],[-24,0],[-19,-1],[-22,0],[-20,-1],[-19,-1],[-38,0],[-39,0],[-56,0],[-75,0],[-8,0],[-23,0],[-34,1],[-21,-1],[-40,0],[-45,0],[-24,0],[-56,0],[-37,0],[-22,0],[-26,0],[-25,-1],[-17,0],[-24,0],[-33,-1],[-46,1],[-35,0],[-35,0],[-16,-6],[-46,1],[-25,0],[-22,0],[-27,1],[-60,-1],[-58,-1],[-3,0],[-307,-2],[-306,4],[-73,1],[-46,0],[-66,0],[-31,0],[-82,1],[-18,-1],[-19,1],[-27,0],[-25,0],[-39,0],[-48,1],[-30,0],[-19,0],[-23,0],[-146,-1],[-20,0],[-17,0],[-28,-1],[-27,1],[-26,1],[-26,0],[-62,1],[-92,2],[-91,1],[-39,1],[-62,2],[-31,-3],[-24,1],[-54,1],[-21,0],[-151,3],[-31,1],[-69,-1],[-41,2],[-132,2],[-39,0],[-23,0],[-24,1],[-20,0],[-54,1],[-92,-1],[-134,-1],[-24,0],[-38,0],[-24,-1],[-26,0],[-296,-1],[-18,0],[-18,0],[-32,1],[-19,0],[-36,1]],[[22114,37841],[0,33],[1,53],[0,149],[-1,27],[0,20],[-3,127],[0,22],[1,170],[0,47],[0,49],[1,53],[0,4],[0,146],[1,41],[0,57],[0,112],[1,110],[0,86],[1,91],[0,18],[0,50],[1,67],[1,138],[1,97],[0,62],[0,20],[0,53],[0,61],[1,74],[2,411],[0,144],[-8,22],[1,47],[2,139],[0,2],[1,78],[0,94],[1,96],[0,22],[0,25],[0,52],[2,98],[0,19],[0,62],[1,107],[1,40],[0,25],[1,107],[1,128],[0,3],[0,49],[1,48],[1,121],[0,42],[0,62],[1,58],[2,223],[-1,133],[0,44],[0,77],[-4,80],[-4,124],[-1,23],[0,22],[1,41],[1,25],[1,39],[0,21],[2,18],[-3,41],[1,21],[0,18],[-1,25],[1,27],[0,40],[0,19],[-3,317],[-1,73],[-1,97],[-4,213],[7,70],[3,35],[0,1],[11,116],[3,29],[-72,1],[-3,65],[-1,92],[-3,244],[0,4],[-1,92],[-1,91],[-1,108],[-2,91],[0,28],[-1,58],[0,86],[0,71],[0,137],[0,60],[0,122],[0,118],[0,231],[0,82],[0,76],[1,162],[0,48],[-1,47],[0,2],[0,97],[0,25],[-1,112],[0,56],[0,79],[-1,76],[-1,187],[-2,331],[0,133],[-1,560],[-1,371],[-1,139],[0,255],[0,103],[0,29],[2,349],[1,36],[0,53],[-1,78],[1,12],[1,87],[0,22],[0,48],[1,114],[0,93],[0,21],[1,234],[1,769],[0,99],[0,70],[0,119],[1,303],[1,250],[0,64],[0,91],[0,82],[-98,-1],[-53,-1],[0,85],[-1,75],[0,97],[0,65],[-1,269],[-1,144],[-1,103],[0,67],[-3,531],[0,40],[-1,51],[0,9],[0,118],[0,36],[-1,86],[0,57],[-1,121],[1,80],[0,93],[-4,852],[-2,261],[-1,22],[0,5],[-2,384],[0,157],[0,247],[0,184],[2,59],[1,73],[1,65],[1,18],[0,32],[4,207],[5,220],[0,20],[4,197],[4,198],[1,25],[1,47],[3,159],[1,56]],[[22114,37841],[-167,0],[-67,-2],[-3,0],[-44,0],[-69,5],[-23,1],[-88,4],[-56,5],[-41,3],[-68,-6],[-132,-6],[-41,-3],[-31,-2],[-45,0],[-122,-1],[-293,-1],[-78,-1],[-5,0],[-56,0],[-143,-4],[-22,1],[-24,1],[-26,0],[-33,0],[-21,1],[-25,0],[-21,1],[-26,-1],[-19,0],[-29,-1],[-24,0],[-80,-1],[-20,0],[-22,0],[-60,0],[-55,-1],[-50,-1],[-21,0],[-109,-2],[-56,-1],[-52,-1],[-27,0],[-17,-1],[-35,0],[-21,-1],[-33,-1],[-28,-1],[-19,0],[-26,-1],[-32,-2],[-39,-1],[-49,-2],[-21,-1],[-54,-1],[-74,-2],[-29,0],[-35,-1],[-20,0],[-36,-1],[-22,-1],[-19,-1],[-25,-1],[-20,0],[-21,-2],[-58,0],[-75,-2],[-22,-1],[-39,-1],[-23,0],[-25,-1],[-19,0],[-57,-1],[-31,-1],[-21,0],[-22,0],[-18,-1],[-18,0],[-23,0],[-27,-1],[-35,-1],[-31,-1],[-27,0],[-63,0],[-37,1],[-27,3],[-24,3],[-71,10],[-39,5],[-30,5],[-17,2],[-41,4],[-39,5],[-37,5],[-36,6],[-30,3],[-42,6],[-44,6],[-25,0],[-49,1],[-29,0],[-21,0],[-27,0],[-48,1],[-31,0],[-21,0],[-49,-1],[-37,0],[-46,1],[-77,-1],[-73,0],[-10,0],[0,-32],[0,-27],[0,-153],[0,-44],[0,-29],[0,-153],[0,-44],[0,-21],[0,-29],[0,-84],[0,-100],[0,-2],[0,-47],[0,-48],[0,-53],[0,-18],[0,-31],[0,-444],[0,-7],[0,-4],[0,-19],[0,-24],[0,-3],[0,-45],[0,-5],[0,-351],[0,-40],[0,-76],[0,-82],[0,-108],[1,-59],[-1,-94],[0,-165],[0,-115],[0,-47],[0,-48],[0,-9],[0,-98],[0,-192],[0,-120],[0,-116],[0,-7],[0,-48],[0,-2],[0,-45],[0,-16],[0,-118],[1,-118],[-1,-24],[0,-27],[0,-52],[0,-55],[0,-64],[0,-99],[0,-112],[0,-57],[0,-41],[0,-62],[0,-37],[0,-93],[0,-36],[0,-46],[0,-71],[0,-57],[0,-81],[0,-5],[0,-48],[0,-48],[0,-2],[0,-26],[-1,-195]],[[17353,32983],[-379,0],[-51,0],[-46,0],[-43,0],[-27,0],[-46,0],[-67,0],[-1407,-4],[-448,-1],[-47,0],[-87,-1],[-355,-2],[-49,0],[-158,-1],[-147,-1],[-59,0],[-11,0],[-8,0],[-38,0],[-4,0],[-62,0],[-21,0],[-21,0],[-8,0],[-21,-1],[-13,0],[-15,0],[-2,1],[-87,0],[-288,1],[-80,1],[-40,0],[-587,1],[-9,0],[-59,-1],[-3,0],[-3,0],[-9,0],[-2,0],[-5,0],[-8,0],[-45,-1],[-45,1],[-131,2],[-1040,-2],[-119,-2],[-477,4],[-752,-3],[-126,11],[-50,5],[-166,12],[-496,35],[-218,18],[-48,4],[-2,0],[-50,4],[-390,31],[-119,0],[-134,0],[-31,0],[-35,1],[-17,0],[-35,0],[-25,0],[-134,0],[-306,0],[-156,1],[-366,-5],[-4,0],[-49,0],[-2,0],[-49,1],[-243,0],[0,29],[-211,0],[-694,3],[-196,0],[-39,0],[-5,0],[-39,1],[-6,0],[-149,0],[-47,0],[-49,0],[-169,1],[-51,0],[-51,0],[-16,-12],[-121,-1],[-175,0],[-25,0],[-188,-1],[-495,-2],[-167,-1],[-147,-1],[-41,1],[-65,0],[-27,0],[-44,0],[-5,0],[-40,0],[-27,0],[-40,0],[-38,1],[-59,0],[-71,-2],[-251,-2],[-39,-2],[-1017,-13],[-324,-5],[-259,11],[-5,0],[-47,2],[-19,1],[-21,1],[-7,0],[-367,16],[-67,0],[-265,-1],[-270,-1],[-169,-1]],[[49,33114],[1,478],[0,8],[0,13],[0,50],[0,6],[0,10],[0,21],[-1,17],[-4,122],[2,115],[1,104],[3,69],[1,338],[0,89],[0,23],[0,72],[-1,156],[-1,138],[3,105],[0,27],[0,95],[1,233],[0,159],[1,235],[0,75],[-3,70],[2,59],[6,43],[-1,44],[-3,131],[1,48],[-2,21],[-3,132],[-4,237],[3,24],[-2,346],[-2,153],[7,59],[-1,38],[-6,186],[0,117],[4,48],[4,80],[0,187],[-1,228],[0,126],[3,146],[-1,709],[0,245],[-1,551],[0,83],[0,333],[3,139],[0,154],[-1,281],[-1,237],[0,52],[0,9],[-1,42],[-1,294],[0,100],[-2,383],[0,49],[0,31],[0,9],[-1,56],[0,52],[0,12],[0,34],[0,23],[0,25],[0,15],[-1,170],[3,177],[0,224],[0,273],[1,526],[0,1],[0,47],[0,48],[0,112],[0,51],[0,13],[0,48],[1,317],[7,545],[-2,514],[0,26],[0,42],[0,62],[-1,33],[0,45],[0,52],[-1,271],[0,33],[-2,344],[0,41],[-3,499],[-1,243],[2,285],[0,98],[1,352],[0,65],[-1,185],[0,46],[-1,185],[1,138],[0,135],[1,49],[-1,121],[0,35],[0,30],[0,29],[0,28],[0,8],[0,20],[0,3],[0,13],[0,1],[0,20],[0,118],[1,241],[0,138],[0,3],[0,45],[0,8],[0,33],[0,7],[0,36],[1,203],[0,153],[0,44],[0,22],[0,48],[0,47],[0,73],[1,121],[1,186],[-1,230],[0,55],[-1,9],[0,26],[0,37],[1,17],[1,323],[0,341],[1,167],[1,356],[1,13],[2,46],[0,9],[-1,78],[-1,122],[-1,49],[0,54],[1,114],[0,207],[-1,120],[1,194],[0,27],[0,346],[0,174],[0,83],[-1,47],[0,76],[0,129],[1,48],[0,24],[1,49],[0,34],[1,253],[0,456],[1,175],[0,547],[0,28],[1,386],[1,331],[0,18],[0,5],[0,40],[0,1],[0,2],[0,48],[0,4],[0,3],[0,24],[-1,42],[0,56],[0,52],[1,772]],[[68733,48627],[-3,-425],[-2,-235],[-1,-61],[-1,-146],[-1,-45],[-2,-307],[-1,-160],[0,-38],[0,-139],[-6,-304],[-1,-269],[-1,-326],[-2,-467],[0,-68],[-1,-66],[0,-58],[-1,-305],[0,-89],[-1,-172],[0,-81],[1,-162],[0,-182],[0,-23],[0,-134],[0,-81],[0,-196],[0,-28],[0,-4],[0,-49],[0,-36],[32,-1],[13,-18],[11,-22],[-1,-95],[-1,-138],[-2,-261],[0,-43],[-1,-142],[-1,-183],[-1,-180],[-1,-97],[0,-104],[-1,-27],[9,-232],[0,-21],[-1,-120],[-1,-79],[-1,-250],[-3,-339],[-1,-252],[-1,-211],[-1,-190],[-2,-282],[-1,-32],[-1,-197],[1,-132],[0,-114],[0,-187],[-1,-84],[0,-17],[0,-59],[0,-52],[0,-378],[-1,-12],[0,-76],[0,-70],[0,-62],[0,-25],[0,-66],[0,-127],[-1,-139],[0,-79],[0,-34],[0,-492],[-1,-156],[-1,-24],[-1,-31],[0,-18],[0,-86],[0,-26],[0,-48],[0,-21],[1,-158],[-2,-101],[-1,-20],[-2,-137],[0,-39],[0,-13],[-1,-215],[0,-103],[1,-33],[4,-221],[-2,-156],[0,-31],[0,-45],[0,-124],[88,-57],[15,-9],[16,-11],[3,-107],[3,-137],[-1,-18],[-2,-60],[-1,-101],[-1,-113],[-6,-228],[1,-44],[0,-1],[0,-21],[1,-37],[1,-57],[4,-210],[0,-55],[-1,-73],[0,-51],[0,-33],[0,-15],[0,-31],[-1,-74],[0,-70],[-237,-1],[-41,-1],[-5,0],[-25,0],[1,-166],[0,-72],[0,-89],[0,-114],[-1,-67],[0,-21],[3,-201],[1,-124],[1,-135],[-7,-148],[-1,-136],[-2,-230],[-24,2],[-1,-370],[1,-29],[1,-141],[1,-38],[-8,-449],[1,-19],[0,-25],[2,-126],[2,-75],[0,-43],[-2,-88],[0,-51],[-26,1],[-365,1],[-68,1],[-20,1],[-37,4],[-30,0],[-215,0],[-270,1],[-4,0],[-487,-1],[-45,0],[-105,-10],[1,-81],[-782,0],[-47,4],[-35,0],[-93,0],[-326,3],[-99,1],[-144,-3],[-174,-39],[-263,2],[-414,1],[-192,0],[-168,0],[-141,0],[-621,-1],[-531,-2],[-129,2],[-115,3],[-149,0],[-86,1],[-48,1],[-22,-1],[-6,0],[-157,-2],[-385,-1]],[[61727,31760],[0,130],[0,40],[0,90],[-3,31],[1,85],[0,136],[0,133],[-1,135],[-1,89],[-1,156],[-1,254],[0,34],[0,8],[0,113],[-5,216],[-1,82],[-1,18],[0,29],[0,20],[-5,259],[-1,22],[-8,278],[-9,300],[-2,68],[2,324],[-21,0],[-168,1],[-403,0],[-229,0],[-122,-8],[-95,1],[-237,1],[-112,1],[-274,1],[-159,1],[-80,0],[-229,2],[-159,0],[-60,1],[-35,0],[-518,1],[-102,0],[-228,2],[-30,-1],[-65,4],[-34,1],[-43,-1],[-70,0],[-87,0],[-359,-1],[-157,-1],[-140,-1],[-49,0],[-313,-2],[-299,-1],[-190,-3],[-208,3],[-37,1],[-23,-1],[-23,0],[-60,1],[-8,0],[-29,0],[-42,0],[-154,-1],[-73,0],[-18,0],[-39,-1],[-32,0],[-222,-1],[-411,-2],[-36,0],[-246,-2],[0,21],[0,31],[-1,63],[0,30],[0,41],[0,29],[-1,173],[-1,145],[0,20],[0,10],[-1,15],[0,20],[0,71],[-1,189],[-2,195],[-1,135],[-7,52],[-3,90],[-2,87],[-1,49],[-2,46],[-116,1],[-268,0],[-36,0],[-44,0],[-325,-1],[-156,-1],[-446,-1],[-216,-1],[-843,-3],[-271,-2],[-99,0],[-31,0],[-245,-1],[-229,-1],[-21,0],[-6,0],[-25,-1],[-150,-1],[-157,0],[-82,-1],[-161,0],[-47,-1],[-108,0],[-24,0],[-66,0],[-79,0],[-46,-1],[-208,0],[-228,-3],[-49,0],[-22,0],[-17,0],[-599,0],[-93,-1],[-168,0],[-18,0],[-25,0],[-3,0],[-418,0],[-150,-1],[-289,3],[-109,2],[-68,2],[-47,-3],[-41,1],[-1477,7],[-10,0],[-316,9],[-108,0],[-51,1],[-129,0],[-212,0],[-290,1],[-81,0],[-26,0],[-6,0],[-21,1],[-113,0],[-132,0],[-80,0],[-2,0],[-90,1],[-154,0],[-25,0],[-54,0]],[[44714,36322],[-92,1],[-4,0],[-133,0],[-35,0],[-80,0],[-74,0],[-18,0],[-1,25],[0,35],[0,57],[-1,29],[-1,196],[-1,65],[-1,92],[0,50],[-1,45],[-2,287],[0,42],[-2,132],[0,23],[-2,102],[0,59],[-1,128],[0,26],[0,14],[-1,16],[0,48],[0,104]],[[91599,39488],[-636,-6],[-577,-7],[-489,-5],[-22,0],[-183,-3],[-518,3],[-94,1],[-727,5],[-235,2],[0,-22],[-2,-253],[0,-103],[0,-65],[0,-144],[0,-30],[-1,-407],[-1,-204],[0,-37],[-1,-66],[-6,-821],[-1,-151],[0,-63],[1,-236],[2,-18],[0,-193],[1,-21],[-1,-31],[-12,-197],[0,-4],[-133,-2],[-310,-6],[-28,-2],[-264,3],[1,-361],[6,-313],[-11,-249],[-2,-552],[-1,-198],[-1,-253],[-2,-539],[0,-40],[-1,-60],[13,-144],[0,-49],[6,-5],[0,-159],[0,-48],[-1,-76],[-2,-93],[1,-39],[-2,-113],[1,-18],[6,-260],[-4,-28],[-2,-347],[-2,-163],[-1,-143],[0,-46],[2,-57],[1,-135],[0,-28],[-1,-122],[0,-73],[-3,-74],[1,-20],[2,-192],[0,-18],[0,-27],[0,-23],[-3,-162],[1,-29],[-2,-184],[1,-353],[2,-198],[0,-75],[-1,-184],[-1,-41],[0,-46],[-2,-97],[-3,-154],[0,-27],[1,-100],[2,-102],[0,-128],[2,-30],[0,-167],[0,-79],[0,-86],[0,-59],[1,-223],[-207,-2],[-369,-1],[-3,0],[-164,0],[-17,0],[-38,0]],[[86566,28813],[-47,2],[-38,0],[-111,3],[-40,0],[-180,4],[-63,1],[-20,0],[-20,0],[-50,-1],[-120,0],[-132,0],[-30,-1],[-130,0],[-26,-10],[-23,0],[-659,3],[-156,1],[-398,-1],[-288,2],[-129,1],[-163,-2],[-251,-1],[-300,-1],[-85,2],[-92,3],[-261,3],[-21,0],[-82,-1],[-50,0],[-16,-3],[-204,0],[-48,0],[-72,2],[-287,-3],[-159,-1],[-93,0],[-70,0],[-180,0],[-47,0],[-27,0],[-84,0],[-509,-1],[-18,0],[-20,-1],[-20,0],[-50,0],[-43,0],[-171,0],[-281,-1],[-418,-1],[-22,0],[-255,0],[-149,-1],[-245,0],[-164,-1],[-62,0],[-213,-1],[-291,-3],[-331,-3],[-91,0],[-313,1],[-5,0],[-13,0],[-56,0],[-62,-1],[-129,0],[-88,0],[-47,0],[-10,0],[-141,0],[-60,0],[-74,0],[-104,0],[-48,0],[-19,0],[-30,0],[-99,-1],[-77,0],[-18,0],[-42,0],[-63,-1],[-31,0],[-37,0],[-19,0],[-99,-2],[-39,0],[-1,0],[-128,0],[-122,0],[-32,0],[-144,0],[-80,0],[-51,-1],[-106,0],[-59,0],[-130,0],[-134,0],[-151,-1],[-48,0],[-87,0],[-72,-1],[-71,0],[-123,-1],[-90,0],[-86,-1],[-80,0],[-26,0],[-33,1],[-284,-2],[-18,0],[-288,-1],[-96,-1],[-25,-3],[-9,0],[-34,0],[-39,0],[-122,0],[-46,0],[-265,0],[-23,0],[-53,0],[-108,1],[-17,0],[-121,1],[-35,0],[-41,0],[-9,0],[-85,-1],[-29,0],[-140,-1],[-202,-1],[-122,-1],[-284,0],[-250,-1],[-28,0],[-5,0],[-100,0],[-34,0],[-186,0],[-78,0],[-109,1],[-63,-1],[-141,-1],[-234,-2],[-24,0],[-128,-1],[-100,0],[-1,0],[-314,0],[-26,0],[-232,0],[-105,0],[-81,0],[-51,0],[-7,0],[-1,-6],[0,-16],[0,-56],[-1,-98],[0,-44],[-2,-188],[0,-4],[-1,-180],[-1,-142],[-1,-120],[0,-35],[1,-420],[1,-25],[0,-2],[0,-39],[0,-102],[1,-79],[0,-102],[0,-38],[-3,-179],[-2,-169],[-1,-78],[-2,-176],[-1,-49],[0,-29],[0,-26],[-1,-31],[0,-64],[0,-5],[0,-39],[-2,-246],[0,-134],[-1,-144],[-1,-217],[-1,-95],[0,-70],[-1,-183],[-1,-108],[0,-23],[0,-183],[-1,-244],[1,-117],[0,-3],[2,-199],[2,-173],[0,-60],[0,-139],[0,-133],[0,-97],[0,-18],[0,-27],[0,-46],[0,-1],[1,-55],[1,-130],[0,-157],[0,-30],[0,-2],[0,-152],[0,-19],[-1,-49],[-1,-165],[0,-125],[0,-31],[1,-50],[0,-96],[0,-90],[0,-20],[0,-114],[1,-146],[0,-37],[0,-32],[-1,-45],[0,-23],[0,-162],[0,-227],[-1,-112],[0,-85],[0,-101],[2,-172],[0,-47],[1,-133],[-108,-2],[-49,-1]],[[69421,20969],[-68,1],[-43,0],[-48,0],[-49,1],[-54,1],[-118,1],[-17,0],[-195,-1],[-34,0],[-41,0],[-72,0],[-109,0],[-161,-1],[-202,-1],[-37,0],[-166,0],[-61,0],[-64,0],[-118,-1],[-32,0],[-120,-1],[-101,1],[-82,0],[-70,0],[-42,0],[-50,0],[-104,1],[-74,0],[-31,0],[-100,0],[-21,0],[-208,0],[-151,0],[-200,0],[-132,0],[-113,1],[-44,0],[-39,0],[-263,0],[-41,0],[-117,0],[-40,0],[-97,0],[-138,0],[-185,0],[-29,0],[-54,0],[-196,1],[-239,0],[-133,0],[-18,-12],[0,-21],[-224,0],[-44,0],[-19,0],[-121,0],[-185,0],[-19,0],[-77,0],[-111,0],[-134,0],[-277,0],[-32,0],[-68,0],[-174,0],[-44,0],[-80,0],[-70,0],[-21,0],[-43,0],[-209,0],[-574,-1],[-18,0],[-135,0],[-45,0],[-146,0],[-52,0],[-40,0],[-133,0],[-35,0],[-1,0],[-135,0],[-119,0],[2,286],[0,43],[0,70],[1,33],[0,168],[1,65],[2,114],[2,188],[-3,72],[0,22],[1,70],[0,29],[0,67],[1,141],[0,149],[26,10],[0,20],[-1,36],[0,35],[0,101],[0,13],[-1,34],[0,111],[0,399],[0,60],[-1,227],[0,44],[0,61],[0,43],[0,41],[0,204],[0,138],[0,20],[-1,308],[0,49],[0,158],[-1,54],[0,44],[0,57],[0,113],[0,42],[0,24],[0,54],[0,47],[0,21],[0,30],[0,31],[0,98],[-1,87],[-1,211],[-1,285],[1,26],[-2,490],[0,63],[0,101],[-1,193],[0,18],[0,172],[0,151],[-1,94],[0,151],[0,44],[-1,416],[0,17],[0,52],[0,137],[0,22],[0,26],[1,573],[0,64],[0,66],[0,116],[275,0],[18,-1],[2,0],[207,1],[26,0],[74,1],[0,152],[-1,53],[0,83],[-1,300],[0,99],[1,31],[-1,66],[-1,46],[0,33],[-2,165],[-1,161],[0,3],[0,328],[-1,225],[-1,91],[-1,129],[0,90],[-1,116],[-1,212],[1,72],[1,140],[-1,65],[-1,98],[0,117],[-1,127]],[[99165,39494],[-1,-34],[-2,-79],[-64,-3101],[0,-35],[-11,-587],[-29,-1694],[-52,-2952],[-1,-82],[-38,-2133],[-1,-91],[-1,-3218],[0,-881],[0,-58],[0,-2863],[0,-688],[0,-86],[1,-1577],[4,-5375],[1,-638],[-1,-1527],[-348,0],[-68,0],[-219,0],[-500,0],[-37,0],[-3162,-2],[-6506,-3],[-47,0]],[[88083,11790],[0,64],[0,44],[-1,349],[0,273],[0,405],[-1,91],[0,86],[9,892],[2,171],[-2,380],[-2,331],[-4,36],[-2,43],[2,86],[3,99],[-3,333],[2,32],[-2,38],[3,93],[-1,226],[-1,26],[-1,31],[-1,43],[1,42],[1,56],[1,63],[-4,76],[0,35],[0,310],[0,81],[-1,523],[0,25],[0,339],[0,63],[0,437],[0,382],[4,426],[0,56],[0,70],[-1,344],[0,38],[0,348],[0,28],[0,44],[0,96],[0,37],[-1,112],[1,36],[-1,54],[0,35],[0,238],[1,253],[-1,342],[-1,26],[0,28],[-106,0],[-37,0],[-143,-1],[-31,-1],[-34,0],[-105,-1],[-164,1],[-83,1],[-40,0],[-197,-3],[-82,-1],[-142,1],[-7,0],[-51,0],[-89,0],[-50,1],[-123,2],[-21,-1],[1,56],[0,66],[0,4],[0,107],[0,11],[0,52],[0,112],[0,79],[1,121],[0,42],[-2,71],[-1,20],[0,31],[-2,49],[-4,123],[1,20],[0,40],[2,44],[-1,56],[2,101],[2,215],[0,332],[0,59],[1,122],[1,81],[0,41],[1,56],[0,23],[0,79],[1,89],[-1,104],[1,34],[0,46],[-2,154],[-1,146],[-2,130],[-3,274],[-1,23],[-4,362],[-1,35],[-1,151],[0,42],[0,31],[0,23],[-1,114],[0,45],[0,45],[-1,27],[0,21],[-4,264],[1,238],[1,238],[1,38],[0,4],[1,226],[0,55],[-1,79],[0,29],[2,39],[1,27],[0,27],[2,275],[0,10],[1,124],[1,195],[0,56],[-2,91],[0,40],[1,48],[-1,28],[1,61],[0,34],[0,71],[0,35],[0,56],[0,51],[0,284],[0,84],[0,243],[-1,142],[-1,18],[0,38],[0,77],[0,25],[-1,323],[1,28]],[[44714,36322],[0,-280],[3,-56],[0,-1],[4,-305],[1,-59],[0,-41],[0,-25],[1,-89],[0,-1],[2,-178],[0,-4],[5,-440],[1,-75],[1,-93],[4,-308],[2,-233],[3,-236],[0,-58],[1,-27],[1,-42],[1,-40],[7,-263],[1,-74],[1,-74],[2,-119],[5,-162],[0,-21],[2,-41],[0,-19],[1,-30],[1,-20],[0,-36],[1,-54],[2,-68],[1,-37],[0,-60],[2,-176],[2,-43],[2,-32],[0,-18],[2,-25],[1,-34],[1,-34],[1,-45],[0,-24],[2,-54],[0,-20],[1,-27],[0,-20],[0,-18],[1,-18],[1,-34],[0,-30],[4,-174],[16,-1],[-3,-350],[0,-54],[0,-160],[0,-112],[0,-36],[0,-36],[1,-65],[0,-57],[1,-85],[0,-34],[0,-56],[0,-64],[-1,-141],[0,-23],[0,-24],[0,-30],[1,-76],[0,-64]],[[44803,30359],[-221,-99],[-359,-161],[-178,-79],[-230,-102],[-335,-148],[-60,-27],[-94,-42],[-32,-15],[-87,-39],[-101,-45],[-305,-135],[-85,-38],[-560,-251],[-138,-63],[-119,-53],[-58,-26],[-66,-29],[-67,-31],[-360,-160],[-21,-10],[-20,-9],[-39,-17],[-27,-12],[-527,-236],[-280,-125],[-78,-34],[-267,-118],[-216,-97],[-20,-9],[-30,-14],[-16,-7],[-158,-71],[-41,-18],[-643,-289],[-413,-185],[-66,-30],[-141,-63],[-62,-27],[-27,-13],[-30,-14],[-16,-7],[-121,-55],[-45,-21],[-22,-10],[-17,-8],[-19,-8],[-126,-57],[-118,-52],[-157,-70],[-34,-16],[-71,-33],[-27,-12],[-646,-291],[-154,-70],[-239,-108],[-459,-208],[-203,-90],[1,-571],[1,-89],[0,-36],[0,-72],[-499,1],[-90,0],[-71,0],[-20,0],[-20,0],[-63,0],[-63,0],[-97,0],[-73,0],[-58,-1],[-99,1],[-73,0],[-254,1],[-19,0],[-18,0],[-23,0],[-195,0],[-78,0],[-6,0],[-47,-1],[-31,0],[-21,0],[-67,0],[-25,0],[-24,1],[-34,-1],[-159,-1],[-60,0],[-20,0],[-48,-1],[-42,0],[-52,0],[-23,0],[-9,0],[-39,-1],[-40,0],[-55,0],[-264,-2],[-120,-1],[-176,-1],[-153,-1],[-45,0],[-40,0],[-238,1],[-106,1],[-175,1],[-97,0],[-87,1],[-70,0],[-434,3],[-94,1],[-17,0],[-36,0],[-142,2],[-110,1],[-117,1],[-95,1],[-119,1],[-56,1],[-229,2],[-70,1],[-29,0],[-39,1],[-41,0],[-24,0],[-21,0],[-38,1],[-29,0],[-22,0],[-43,1],[-147,1],[-3,0],[-123,0],[-37,0],[-17,0],[-29,0],[-33,0],[-1,0],[-21,1],[-34,0],[-24,0],[-19,0],[-20,0],[-18,0],[-191,1],[-88,0],[-6,-9],[-4,-6],[0,-341],[0,-26],[0,-26],[0,-109],[0,-32],[0,-38],[-1,-201],[0,-116],[-1,-423],[0,-12],[1,-60],[-2,-277],[1,-94],[-1,-98],[1,-64],[-2,-437],[0,-87],[-1,-119],[1,-22],[-1,-28],[0,-112],[1,-77],[2,-181],[1,-34],[-2,-53]],[[28945,22469],[-78,-2],[-151,1],[-1,0],[-157,-1],[-443,0],[-34,0],[-27,0],[-90,0],[-90,0],[-185,0],[-86,0],[-168,1],[-109,-1],[-89,1],[-62,-1],[-46,1],[-172,-1],[-160,1],[-480,-1],[-105,1],[-58,-1],[-63,-1],[-22,-1],[-26,0],[-220,-1],[-1,0],[-24,0],[-26,0],[-27,0],[-28,0],[-33,0],[-78,0],[-17,0],[-20,0],[-23,0],[-105,0],[-18,0],[-69,0],[-45,0],[-27,-1],[-47,-1],[-25,1],[-36,-1],[-104,1],[-128,1],[-123,2],[-27,0],[-75,0],[-42,0],[-1,0],[-49,0],[-35,0],[-30,-2],[-26,2],[-480,0],[-29,0],[-29,0],[-21,0],[-78,0],[-57,0]],[[23840,22466],[-69,12],[-96,16],[-38,6],[-249,42],[-85,14],[-110,19],[-134,23],[-52,9],[-32,5],[-173,30],[-66,11],[-26,5],[-53,8],[-66,12],[-46,7],[-31,5],[-36,6],[-1,1],[-126,21],[-88,14],[-55,10],[-68,11],[-94,16],[-26,13],[-39,25],[-29,18],[-61,20],[-24,5],[-28,4],[-37,0],[-32,17],[-15,14],[-42,6],[22,17],[19,19],[22,31],[18,28],[4,22],[1,22],[-14,18],[-13,16],[-8,28],[1,18],[25,36],[21,25],[18,20],[8,18],[-10,18],[-25,17],[7,38],[5,28],[20,15],[19,24],[8,22],[9,23],[6,33],[29,22],[-9,75],[17,11],[13,27],[-8,62],[4,49],[-14,12],[-4,25],[-27,24],[-8,33],[-13,19],[13,35],[-7,41],[-8,46],[17,33],[-1,55],[34,27],[35,24],[48,31],[13,13],[-2,24],[-3,41],[24,41],[-8,39],[-17,30],[0,19],[4,29],[-7,34],[-7,22],[22,31],[17,20],[0,19],[-8,29],[-3,21],[21,12],[19,3],[19,11],[2,22],[0,27],[-8,30],[-26,10],[-18,2],[-12,34],[-22,37],[-25,40],[-16,54],[8,64],[12,39],[32,33],[2,34],[1,20],[-22,14],[6,43],[10,23],[17,29],[20,36],[-14,30],[-8,16],[-11,29],[1,22],[27,16],[21,16],[4,17],[-25,2],[-12,21],[0,25],[-2,30],[-3,19],[-5,34],[-3,26],[-18,20],[-12,19],[-3,18],[0,23],[1,23],[-16,19],[-23,0],[-20,9],[-17,21],[-18,4],[-20,1],[-21,13],[-15,14],[-27,10],[-18,-1],[-23,0],[-20,7],[-16,14],[-10,19],[-10,25],[-22,17],[-16,6],[-17,17],[-13,20],[-6,30],[-10,26],[-12,20],[-5,21],[-8,18],[-6,19],[-1,23],[-13,12],[-25,-3],[-11,16],[7,19],[11,19],[-5,18],[-15,17],[-18,4],[-11,14],[6,18],[8,23],[9,18],[-1,19],[-1,19],[6,48],[9,41],[5,29],[7,32],[6,30],[8,21],[7,22],[10,23],[-17,10],[-17,5],[-24,15],[-14,15],[0,22],[0,21],[-5,23],[-14,14],[-12,14],[-14,16],[-4,22],[-7,24],[-16,26],[-17,18],[-18,21],[-8,21],[-22,35],[-8,27],[-5,21],[-22,16],[-26,18],[-25,7],[-16,7],[-32,24],[-25,7],[-18,-1],[-25,1],[-14,9],[-12,27],[-21,12],[-10,21],[-5,20],[13,17],[-2,21],[0,25],[1,28],[-7,29],[-2,22],[-5,32],[-10,18],[-2,17],[-10,16],[-4,20],[1,26],[13,18],[2,32],[-17,13],[-25,8],[3,20],[15,19],[0,24],[-7,30],[-16,53],[5,43],[14,47],[2,27],[-22,14],[18,45],[-14,29],[-20,26],[30,36],[31,29],[6,22],[9,38],[14,24],[23,12],[25,42],[34,14],[9,27],[18,9],[1,2],[14,16],[-4,20],[2,22],[5,18],[-6,17],[-14,11],[2,24],[0,27],[-18,35],[-27,36],[-14,17],[-3,31],[-17,22],[-25,20],[-37,16],[-16,19],[-1,20],[13,27],[-2,21],[-9,24],[-2,27],[19,9],[31,10],[10,15],[17,9],[13,17],[-15,21],[-20,61],[-27,88],[-31,31],[-22,3],[-31,-3],[-23,8],[-15,-16],[-22,-22],[-18,-8],[-19,3],[-112,-40],[-43,27],[-30,36],[-27,27],[-21,22],[-21,33],[-14,27],[-43,23],[-50,9],[-33,-7],[-21,-11],[-16,-15],[-37,-6],[-17,1],[-27,8],[-37,19],[-26,23],[-23,8],[-14,25],[-18,1],[-21,8],[-30,12],[-22,-2],[-37,11],[-10,35],[3,24],[12,46],[-19,23],[-2,36],[-18,20],[-35,-12],[-43,0],[-30,4],[3,44],[-12,34],[12,13],[-10,21],[-14,12],[-10,17],[-2,82],[-6,19],[-17,-3],[-20,4],[-19,33],[-17,31],[-18,27],[-18,21],[-23,10],[-39,26],[-17,17],[-17,27],[-5,27],[-29,24],[-19,12],[-1,21],[6,18],[17,17],[7,28],[42,-7],[23,5],[19,2],[21,8],[13,25],[-4,28],[7,17],[14,19],[3,18],[0,22],[4,19],[-8,17],[-16,19],[-14,12],[7,43],[-7,51],[-3,18],[0,20],[-3,20],[-14,23],[-16,13],[-15,13],[-13,17],[-9,21],[-21,23],[-17,27],[-15,21],[-15,11],[12,19],[3,29],[10,24],[13,21],[17,17],[23,13],[19,7],[10,18],[-6,19],[-17,42],[4,21],[16,25],[12,20],[-13,18],[1,25],[-16,18],[9,18],[56,8],[15,9],[26,12],[10,31],[4,20],[28,11],[17,4],[17,21],[1,22],[9,16],[20,17],[26,13],[15,11],[2,35],[18,18],[14,21],[12,37],[0,24],[-9,20],[-6,27],[-17,15],[-15,17],[-17,12],[-19,-6],[-8,18],[-28,22],[-22,5],[-22,2],[-21,11],[-15,11],[-6,34],[6,19],[8,23],[5,42],[16,4],[6,19],[10,17],[3,22],[7,26],[-14,31],[-13,23],[-15,16],[-1,18],[-17,20],[-5,22],[-4,23],[-8,24],[-12,30],[8,19],[-3,19],[-11,18],[1,19],[-8,19],[-11,15],[2,18],[-8,17],[12,17],[-11,18],[-11,21],[-12,15],[6,17],[5,22],[2,24],[16,17],[-2,25],[14,18],[19,14],[9,19],[0,21],[15,21],[-10,16],[-35,24],[-16,7],[-24,0],[-18,9],[-18,3],[2,28],[8,21],[2,31],[-9,26],[-15,25],[-6,21],[5,24],[12,16],[-20,24],[-13,17],[-7,17],[-13,18],[8,18],[13,25],[7,20],[-5,18],[8,22],[6,37],[-20,10],[-12,14],[-4,22],[-6,18],[-2,18],[6,20],[-6,18],[-14,10],[17,8],[16,23],[19,17],[8,23],[9,25],[9,18],[20,10],[16,16],[16,13],[18,-24],[25,-13],[22,1],[21,7],[28,11],[24,26],[2,22],[9,18],[14,13],[-23,21],[-5,24],[-8,16],[2,21],[32,12],[-14,15],[-7,21],[-16,19],[-13,-11],[-20,-6],[-17,-2],[-17,10],[-20,5],[-19,4],[-10,27],[-4,17],[-25,35],[-17,5],[-42,-11],[-16,27],[-22,-1],[-17,-2],[-17,-15],[-23,-19],[-6,-20],[1,-8],[-7,1],[-7,23],[-7,18],[20,16],[2,22],[8,10],[6,17],[10,30],[7,12],[13,11],[9,11],[-5,28],[-4,24],[-9,16],[-6,-1],[-23,-16],[-26,-21],[-13,-5],[-22,7],[-18,15],[-12,18],[-8,17],[-10,6],[-101,7],[-48,2],[-248,0],[-146,-2],[-82,0],[-92,-1],[-53,0],[-108,-1],[-81,-1],[-62,0],[-33,0],[-38,0],[-74,-1],[-485,-5],[-554,-6],[-11,-1]],[[69421,20969],[0,-72],[0,-59],[0,-53],[0,-22],[2,-142],[-4,-109],[0,-1],[2,-111],[1,-69],[-1,-25],[-1,-94],[-1,-70],[0,-67],[-1,-78],[0,-82],[0,-1],[-1,-229],[-1,-72],[0,-53],[-1,-47],[0,-68],[-1,-59],[0,-58],[0,-37],[-1,-224],[-1,-72],[-1,-197],[0,-87],[-1,-104],[0,-10],[3,-184],[5,-139],[2,-50],[1,-51],[0,-59],[0,-98],[0,-14],[1,-173],[0,-73],[0,-18],[0,-41],[1,-75],[0,-84],[0,-79],[0,-26],[0,-20],[0,-65],[1,-226],[1,-142],[0,-23],[0,-45],[1,-141],[1,-162],[0,-230],[0,-126],[60,-1],[0,-50],[-1,-263],[-2,-100],[0,-103],[-2,-18],[0,-274],[0,-114],[0,-34],[-1,-46],[0,-69],[-1,-30],[0,-485],[1,-87],[0,-33],[0,-20],[0,-134],[0,-61],[-1,-18],[0,-45],[-1,-64],[0,-75],[1,-83],[0,-50],[2,-61],[0,-23],[1,-40],[0,-72],[0,-71],[0,-142],[1,-48],[0,-95],[0,-4],[0,-338],[0,-42],[0,-17],[0,-118],[0,-22],[0,-302],[0,-184],[0,-75],[0,-29],[0,-22],[0,-154],[-1,-238],[1,-104]],[[69484,11795],[-516,0],[-650,0],[-1203,2],[-82,1],[-3306,6],[-1736,4],[-8699,18],[-2827,1],[-77,0],[-5262,-15],[-60,0],[-843,-3],[-27,0]],[[44196,11809],[0,44],[0,19],[0,32],[0,32],[-1,34],[0,30],[0,23],[0,17],[0,24],[0,58],[-1,70],[1,64],[0,48],[0,31],[-1,25],[0,19],[0,61],[1,32],[0,34],[0,702],[-2,545],[0,27],[-1,112],[0,101],[-2,769],[0,172],[-1,831],[-1,433],[9,726],[0,53],[2,871],[0,119],[1,100],[0,49],[-1,116],[0,92],[0,63],[-1,25],[1,98],[1,134],[0,74],[0,104],[0,37],[-1,116],[1,46],[-1,164],[0,219],[0,173],[-1,342],[0,90],[0,132],[0,43],[0,180],[0,114],[0,108],[-2,23],[-2,77],[1,200],[1,12],[1,23],[9,128],[-2,436],[-1,176],[0,33],[-1,177],[-1,290],[-1,187],[0,76],[-1,390],[0,66],[0,172],[0,143],[0,177],[0,133],[0,56],[-1,146],[4,236],[0,4],[-3,181],[-8,891],[3,1306],[2,755],[-2,20],[2,30],[8,80],[1,633],[0,82],[0,318],[0,68],[0,166],[0,26],[0,183],[18,0],[270,1],[305,4],[4,738],[0,452],[1,478]],[[23840,22466],[-171,-1],[-115,0],[-22,0],[-70,-1],[-64,0],[-77,0],[-273,-1],[-97,-1],[-154,0],[-95,-1],[-20,0],[-168,0],[-141,-1],[-24,0],[-28,0],[-22,0],[-30,0],[-156,-1],[-61,0],[-67,-1],[-110,0],[-172,-1],[-85,0],[-130,-1],[-99,0],[-136,0],[-49,0],[-161,-1],[-66,0],[-128,0],[-111,-1],[-2,0],[-119,0],[-51,0],[-85,-1],[-116,0],[-38,0],[-60,0],[-267,-1],[-57,0],[-151,0],[-58,-1],[-34,0],[-87,0],[-34,0],[-158,0],[-115,-1],[-36,0],[-60,0],[-16,0],[-76,0],[-3,0],[-82,0],[-140,-1],[-71,0],[-193,-1],[0,-28],[0,-24],[0,-44],[0,-81],[0,-87],[0,-41],[0,-118],[0,-18],[0,-21],[0,-91],[0,-105],[0,-28],[0,-35],[0,-84],[0,-80],[0,-11],[0,-26],[0,-23],[0,-2],[0,-21],[0,-34],[0,-88],[0,-69],[0,-377],[-182,-1],[-22,0],[-382,-1],[-205,0],[-108,-1],[-255,0],[-50,0],[-61,-1],[-9,0],[-18,0],[-27,0],[-16,1],[-6,0],[-11,0],[-34,-1],[-52,0],[-2,0],[-60,0],[-274,1],[-104,-2],[-131,0],[-34,-1],[-7,0],[-56,0],[-16,0],[-7,0],[-23,-1],[-41,0],[-33,0],[-159,-1],[-99,-1],[-140,1],[-6,0],[-5,0],[-55,0],[-28,0],[-10,0],[-12,0],[-63,0],[-164,0],[-284,1],[-91,0],[-182,1],[-271,1],[-8,0],[-21,0],[-110,0],[-32,0],[-57,0],[-181,0],[-85,0],[-18,0],[-37,0],[-8,0],[-21,0],[-40,0],[-7,0],[-40,0],[-450,-1],[-68,0],[-78,1],[0,-18],[-1,-132],[-1,-98],[1,-51],[0,-86],[-1,-50],[0,-119],[0,-116],[0,-32],[0,-55],[0,-1],[0,-68],[0,-104],[-1,-38],[-1,-142],[0,-358],[0,-78],[0,-15],[0,-54],[1,-204],[-4,-100],[4,-74],[-1,-81],[0,-66],[0,-26],[0,-105],[0,-98],[0,-135],[2,-30],[0,-64],[0,-51],[0,-55],[0,-101],[0,-25],[-1,-54],[0,-5],[0,-35],[0,-39],[0,-2],[-1,-97],[1,-36],[-1,-38],[0,-9],[0,-101],[-1,-357],[0,-24],[0,-30],[0,-32],[0,-149],[0,-44],[0,-35],[-1,-153],[0,-21],[0,-100],[0,-41],[0,-34],[-1,-161],[0,-282],[-2,-54],[0,-36],[0,-45],[2,-59],[-4,-45],[-1,-49],[2,-93],[0,-45],[2,-40],[-3,-200],[-1,-26],[1,-22],[2,-27],[2,-20],[0,-3],[-1,-45],[-2,-48],[-2,-21],[4,-130],[0,-40],[0,-24],[-2,-326],[-1,-61],[2,-254],[1,-182],[0,-31],[-5,-47],[4,-55],[-1,-28],[5,-44],[-3,-105],[-1,-136],[-2,-660],[215,-2],[-3,-623],[-2,-361],[-1,-139],[6,-284],[0,-2],[-2,-269],[0,-111],[0,-27],[-1,-34],[0,-41],[0,-169],[2,-721],[-1,-153],[-1,-76],[2,-99],[-3,-366],[0,-3],[0,-134],[0,-168],[0,-26]],[[13773,9389],[-132,-1],[-146,0],[-108,-1],[-45,0],[-121,0],[-29,0],[-56,0],[-85,0],[-25,0],[-33,0],[-25,0],[-23,0],[-86,0],[-19,0],[-33,0],[-78,0],[-52,-1],[-125,1],[-91,0],[-65,0],[-117,-1],[-28,0],[-169,0],[-102,0],[-71,0],[-236,0],[-1,0],[-62,0],[-183,0],[-2,0],[-273,0],[-293,0],[-174,-1],[-194,1],[-43,0],[-37,0],[-37,0],[-150,0],[-130,-1],[-32,0],[-18,0],[-51,0],[-54,0],[-18,0],[-59,0],[-76,0],[-35,0],[-29,0],[-33,0],[-31,0],[-86,0],[-77,0],[-110,0],[-27,0],[-19,0],[-37,0],[-45,0],[-55,0],[-115,0],[-33,1],[-82,-2],[-26,0],[-47,0],[-53,-1],[-34,0],[-24,0],[-48,-1],[-52,0],[1,21],[0,27],[0,45],[-1,24],[0,62],[0,22],[-1,69],[0,2],[0,162],[-1,123],[0,93],[0,43],[0,21],[-1,29],[-1,29],[-2,75],[0,21],[1,56],[3,96],[1,27],[1,19],[0,22],[0,22],[2,57],[0,43],[0,160],[1,52],[-1,191],[-2,96],[-3,181],[-2,83],[-1,74],[0,79],[-1,75],[0,203],[0,8],[3,110],[0,18],[6,217],[1,130],[0,126],[1,75],[0,94],[0,146],[-2,26],[0,457],[-216,2],[-8,0],[1,44],[1,125],[1,64],[4,241],[0,60],[-3,116],[-1,5],[2,20],[0,39],[-1,99],[1,39],[0,58],[0,20],[0,19],[-1,19],[0,59],[0,36],[0,58],[0,130],[0,39],[0,2],[0,53],[0,21],[1,19],[4,18],[1,4],[2,8],[2,7],[5,17],[5,17],[-1,16],[0,10],[-1,7],[0,4],[-1,19],[-1,1],[0,1],[-1,18],[0,11],[0,9],[0,41],[0,40],[0,35],[0,71],[0,59],[0,195],[0,58],[0,11],[0,4],[0,15],[-1,5],[0,18],[0,3],[-1,15],[0,19],[1,3],[0,13],[0,2],[0,37],[0,128],[0,54],[-1,19],[1,19],[-1,55],[1,19],[0,19],[0,39],[0,34],[0,18],[0,35],[0,23],[0,19],[0,77],[0,29],[0,43],[0,73],[0,42],[0,24],[0,18],[0,42],[0,30],[0,70],[0,4],[0,48],[0,5],[0,26],[0,11],[0,6],[0,30],[0,39],[0,15],[0,7],[1,9],[0,18],[0,20],[0,1],[0,1],[0,18],[0,28],[0,9],[0,33],[0,22],[0,19],[0,49],[0,34],[0,148],[0,137],[0,172],[1,74],[0,32],[-2,55],[0,34],[0,30],[-2,22],[-1,19],[4,40],[0,134],[0,94],[-1,294],[1,58],[-1,92],[0,78],[0,33],[-1,85],[0,46],[2,155],[0,24],[0,340],[0,30],[0,47],[0,48],[0,24],[0,93],[1,185],[0,22],[0,87],[-2,174],[0,96],[0,187],[0,69],[1,243],[1,153],[0,28],[0,1],[-1,48],[0,38],[0,9],[0,58],[-5,13],[1,20],[2,5],[0,9],[-2,6],[4,135],[-1,106],[-193,0],[-71,-1],[-32,0],[-35,0],[-74,-1],[-20,1],[-129,3],[-17,0],[-402,0],[-78,0],[-181,1],[-232,-2],[-123,1],[-52,0],[-56,0],[-2,0],[-52,1],[-71,0],[0,21],[1,61],[4,310],[2,79],[0,18],[1,200],[1,62],[0,83],[1,148],[0,45],[0,54],[0,78],[1,107],[0,69],[1,95],[0,49],[1,50],[-96,2],[-1,0],[-77,-2],[-42,-3],[-142,2],[-212,0],[-46,1],[-44,0],[-57,1],[-86,0],[-121,1],[-29,0],[-57,0],[-132,0],[-326,0],[-8,0],[-40,0],[-5,0],[-16,0],[-28,0],[-159,4],[-30,0],[-125,0],[-52,1],[-579,1],[-292,-3],[-304,-2],[-20,0],[-199,-1],[-93,-1],[0,70],[1,29],[0,25],[1,103],[-1,25],[-6,126],[-1,112],[0,3],[0,39],[1,39],[0,11],[0,48],[-1,252],[3,242],[-4,125],[-2,172],[1,111],[2,245],[1,21],[7,63],[-11,290],[-7,433],[-3,234],[-3,246],[-253,-2],[-18,-1],[-80,7],[-93,1],[-43,0],[-224,1],[-266,1],[-493,2],[-129,-1],[-251,-4],[-215,-3],[-152,-1],[-216,-2],[-208,2],[-52,0],[-3,0],[-54,1],[-71,0],[-166,2],[-51,0],[-148,2]],[[51,25504],[0,50],[0,32],[0,90],[0,105],[0,211],[0,64],[0,137],[0,155],[0,42],[0,34],[0,21],[0,23],[0,56],[0,94],[0,500],[0,106],[0,135],[0,77],[0,208],[0,77],[0,21],[0,123],[0,19],[0,162],[0,88],[0,352],[0,62],[0,181],[0,283],[0,69],[0,18],[0,30],[0,32],[0,16],[0,114],[-5,138],[0,84],[1,238],[0,344],[0,80],[0,33],[-3,256],[0,111],[1,60],[0,17],[1,33],[7,329],[1,36],[-3,77],[-1,140],[0,2],[-1,51],[0,3],[0,45],[1,266],[0,103],[1,117],[-1,123],[1,121],[-3,468],[-1,111],[2,210],[-1,136],[0,64],[1,27]],[[44196,11809],[-1103,-4],[-2297,-9],[-342,-1],[-54,0],[-194,-1],[-2,-8],[0,-1],[-2,-15],[-6,-33],[-6,-44],[-15,-14],[-33,-32],[-20,-20],[-55,-8],[-30,-5],[-16,-3],[-2,0],[-10,-3],[-16,-4],[-34,-28],[-1,-1],[-1,-1],[-52,-48],[-29,-54],[-7,-15],[-3,-5],[0,-35],[2,-4],[2,-7],[6,-18],[1,0],[15,-18],[30,-19],[2,-1],[29,-20],[38,-31],[23,-20],[50,-8],[18,5],[46,32],[23,0],[37,-23],[0,-2],[1,-6],[1,-1],[2,-1],[0,-1],[10,-71],[-11,-38],[-10,-14],[-8,-10],[-18,-14],[-5,-3],[-7,-5],[-33,-20],[-20,-62],[6,-53],[1,0],[37,-29],[74,50],[6,2],[12,4],[48,-1],[0,-2],[0,-18],[0,-37],[0,-23],[-6,-25],[-9,-19],[-14,-9],[-35,-19],[-16,-7],[-2,-1],[-69,-34],[19,-73],[3,-62],[0,-3],[1,-10],[-1,-4],[0,-7],[-6,-20],[-6,-16],[-1,-2],[-7,-18],[-11,-17],[-11,-18],[-1,-1],[-9,-13],[-15,-10],[-39,-32],[-19,-19],[3,-8],[15,-44],[12,5],[8,4],[16,7],[20,10],[15,3],[6,1],[1,0],[17,-6],[21,-11],[19,-12],[18,-14],[16,-11],[20,-5],[27,-12],[17,-6],[23,-9],[22,-8],[-1,-1],[-17,-14],[-1,-1],[-34,-24],[-18,-8],[-33,8],[-9,-3],[-10,-5],[-14,-12],[-2,-2],[-16,-13],[-17,-13],[-20,-17],[-21,-17],[-6,-5],[-3,-2],[-4,-4],[-4,-2],[-3,-2],[-23,-11],[-27,-10],[-72,-20],[-22,-16],[-2,-1],[-21,-15],[-19,-15],[-3,-2],[-11,-8],[-25,-18],[-14,-12],[-17,-18],[-28,-34],[-5,-7],[-9,-12],[-25,-40],[2,-60],[1,-1],[20,-25],[22,-17],[19,-4],[36,-9],[8,-3],[13,-5],[21,-13],[21,-13],[1,-1],[5,-3],[22,-14],[16,-13],[14,-15],[23,-21],[4,-6],[3,-4],[18,-38],[-9,-30],[-7,-18],[-11,-22],[-9,-15],[-1,-2],[-23,-33],[-23,-26],[-13,-22],[-6,-18],[-8,-37],[-1,-85],[58,-39],[54,-38],[16,-13],[12,-17],[0,-1],[2,-4],[30,-69],[61,-56],[12,-13],[99,-95],[18,-4],[23,1],[1,0],[25,2],[20,0],[22,-1],[17,-3],[13,0],[0,-2],[-6,-39],[40,-46],[-10,-41],[-20,-56],[-15,-22],[-15,-37],[7,-40],[32,-34],[13,-15],[7,-7],[2,-2],[34,-36],[1,-2],[7,-7],[43,-35],[56,-33],[21,-16],[95,-87],[28,-26],[51,-86],[62,-85],[42,-24],[61,-23],[47,-16],[52,-9],[202,-11],[33,1],[121,64],[23,-42],[22,-43],[71,42],[42,-49],[3,-3],[7,-11],[10,-19],[7,-14],[7,-15],[1,-3],[0,-1],[6,-11],[0,-1],[2,-2],[1,-3],[2,-2],[7,-9],[2,-2],[2,-2],[12,-11],[2,-2],[2,-1],[2,-2],[14,-8],[0,-1],[2,-1],[29,-16],[1,-1],[9,-4],[9,-7],[6,-37],[8,-49],[-26,0],[-127,0],[-741,0],[-1322,-1],[-1315,-1],[-1385,0],[-1346,-1],[-1376,0],[-245,-1],[-1223,0],[-1362,-1],[-889,0],[-1211,0],[-145,0]],[[28990,7969],[3,488],[1,234],[2,369],[2,281],[-1,242],[-1,307],[0,1],[-2,448],[-1,22],[-1,231],[0,4],[-5,1173],[3,16],[0,1],[0,2],[0,53],[-10,1023],[-4,330],[0,44],[-20,0],[6,755],[1,757],[1,590],[3,320],[0,21],[0,1],[-2,144],[-5,246],[0,12],[0,114],[0,147],[-1,38],[0,321],[1,187],[1,48],[1,48],[-1,291],[1,27],[0,147],[-2,39],[0,67],[1,845],[-2,193],[1,538],[1,307],[2,69],[7,339],[-3,264],[1,150],[3,227],[-5,118],[2,81],[1,33],[1,30],[2,74],[-12,105],[-2,284],[-1,54],[-1,175],[1,130],[1,40],[0,43],[-1,47],[-3,73],[-4,121],[0,98],[-1,53],[-1,129],[1,111],[0,7],[0,18],[-4,155]],[[88083,11790],[-4235,-2],[-20,0],[-5,0],[-728,-1],[-109,-1],[-7,0],[-146,0],[-918,1],[-6057,4],[-1163,1],[-4936,3],[-49,0],[-226,0]],[[13773,9389],[-1,-231],[0,-81],[0,-46],[0,-146],[-1,-56],[0,-98],[0,-66],[0,-19],[0,-30],[121,2],[0,-141],[0,-507],[27,0]],[[13919,7970],[0,-530],[0,-711],[0,-1153],[0,-753],[0,-480],[0,-280],[0,-757],[0,-618],[0,-1406],[0,-641],[0,-615],[-693,0],[-1175,0],[-997,0],[-977,0],[-363,0],[-1124,-1],[-1005,0],[-379,0],[-579,0],[-697,0],[-1073,-25],[-937,1],[-835,1],[-576,0],[-870,0],[-577,1],[-1060,0],[0,264],[0,44],[0,3],[0,424],[-1,24],[1,348],[0,309],[0,107],[2,345],[0,183],[-1,159],[0,144],[-1,100],[-2,155],[6,345],[1,270],[1,130],[3,179],[3,223],[0,101],[0,32],[0,93],[-1,296],[1,305],[1,173],[1,64],[0,91],[1,229],[0,29],[0,161],[0,16],[0,3],[1,23],[-1,354],[-1,249],[0,53],[1,139],[0,168],[1,187],[1,105],[0,67],[0,184],[0,168],[0,328],[1,210],[-5,500],[-1,113],[1,18],[1,25],[1,61],[0,32],[0,29],[0,26],[0,29],[0,13],[0,11],[0,27],[0,30],[0,19],[0,57],[0,76],[1,32],[0,58],[0,23],[0,30],[0,37],[0,20],[0,29],[0,23],[0,41],[0,47],[0,36],[0,25],[0,135],[0,26],[0,87],[0,39],[0,35],[1,40],[0,26],[0,47],[5,94],[1,398],[0,410],[1,168],[0,81],[1,547],[0,99],[0,44],[0,74],[1,305],[0,77],[0,2],[-2,45],[0,63],[0,109],[0,22],[-2,233],[0,23],[6,665],[0,76],[1,13],[0,64],[0,129],[0,40],[0,88],[1,357],[0,278],[1,363],[1,270],[0,217],[1,266],[0,140],[0,257],[0,127],[1,61],[0,2],[0,47],[0,27],[0,18],[0,3],[0,1],[0,3],[0,27],[0,15],[0,50],[1,311],[0,55],[0,162],[0,301],[1,61],[0,215],[0,22],[0,34],[0,72],[0,48],[0,36],[1,219],[0,343],[1,43],[0,67],[0,58],[1,469],[0,242],[0,41],[0,117],[0,26],[1,35],[0,227],[0,217],[0,90],[0,24],[-1,119],[-2,565],[0,84],[0,2],[0,76],[-1,196],[-1,144],[1,244],[0,118],[0,229],[0,256],[0,112],[0,128],[0,55],[0,34],[1,93],[0,115],[0,361],[0,12],[0,49],[0,5],[0,31],[0,42],[1,210],[0,113],[0,225],[1,112],[0,4],[0,46],[0,2],[0,47],[0,8],[0,83],[1,466],[0,42],[0,44],[0,6],[0,50],[0,3],[0,41],[0,10],[0,6],[0,9],[0,10],[0,12],[0,10],[0,12],[0,36],[0,2],[0,11],[0,12],[0,5],[0,35],[0,39],[0,14],[0,17],[1,385],[1,400],[1,60],[0,55],[3,195],[1,50],[2,125]],[[28990,7969],[-671,0],[-574,0],[-1050,0],[-673,0],[-741,1],[-690,0],[-951,0],[-125,0],[-156,0],[-777,0],[-665,0],[-774,0],[-1257,0],[-301,0],[-453,0],[-600,0],[-628,0],[-502,0],[-37,0],[-1,0],[-182,0],[-794,0],[-646,0],[-525,0],[-455,0],[-486,0],[-357,0]]],"transform":{"scale":[0.000060480690436903766,0.000056684412324123305],"translate":[-109.05016229399985,31.331902287000162]}} diff --git a/src/js/config/mapconfig/mapfiles/county/nv-counties.json b/src/js/config/mapconfig/mapfiles/county/nv-counties.json new file mode 100644 index 00000000..98f7d64f --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/nv-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-120.00749658299992,35.00111792000018,-114.03963575299991,41.999812963000124],"geometries":[{"type":"Polygon","properties":{"name":"NV"},"id":"32013","arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32007","arcs":[[5,6,7,-5,8]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32031","arcs":[[9,10,11,12,13,14,-3]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32011","arcs":[[15,16,17,-7]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32015","arcs":[[-18,18,19,20,-1,-8]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32027","arcs":[[-21,21,-10,-2]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32033","arcs":[[22,23,24,-16,-6]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32001","arcs":[[-20,25,26,27,-11,-22]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32019","arcs":[[28,29,30,31,32,-12,-28]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32029","arcs":[[-13,-33]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32510","arcs":[[33,34,-14,-32]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32023","arcs":[[-17,-25,35,36,37,38,39,-26,-19]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32005","arcs":[[-31,40,-34]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32021","arcs":[[-40,41,42,-29,-27]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32017","arcs":[[43,44,-36,-24]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32009","arcs":[[45,-42,-39]]},{"type":"Polygon","properties":{"name":"NV"},"id":"32003","arcs":[[46,-37,-45]]}]},"states":{"type":"GeometryCollection","bbox":[-120.00749658299992,35.00111792000018,-114.03963575299991,41.999812963000124],"geometries":[{"type":"Polygon","properties":{"name":"Nevada"},"id":"32","arcs":[[22,43,46,37,45,42,29,40,34,14,3,8]]}]}},"arcs":[[[50086,85717],[-4,-18],[0,-21],[0,-72],[0,-49],[1,-109],[0,-208],[0,-144],[0,-74],[0,-173],[0,-19],[1,-133],[0,-239],[0,-21],[0,-2],[0,-43],[0,-164],[0,-117],[0,-117],[0,-68],[1,-25],[1,-463],[0,-26],[0,-8],[-1,-193],[0,-253],[0,-70],[-1,-113],[0,-7],[0,-14],[0,-39],[0,-55],[4,-20],[-4,-22],[0,-30],[0,-103],[0,-22],[1,-129],[5,-44],[-5,-16],[1,-45],[0,-23],[0,-10],[0,-32],[0,-24],[-2,-246],[-1,-75],[0,-26],[0,-51],[0,-71],[0,-102],[0,-1],[0,-25],[0,-34],[0,-21],[-19,-69],[19,-78],[-1,-128],[0,-54],[0,-15],[0,-25],[0,-52],[0,-281],[0,-24],[0,-88],[0,-33],[0,-28],[-128,0],[-164,-4],[-238,-6],[-21,0],[-166,0],[-83,0],[-27,0],[-313,1],[-573,1],[-85,1],[-288,0],[-317,-1],[-5,0],[-124,0],[-1291,0],[-3,-6],[-10,-18],[-56,-106],[-24,-42],[-10,-17],[-35,-62],[-16,-35],[-11,-21],[-50,-91],[-46,-85],[-30,-56],[-109,-200],[-87,-161],[-102,-187],[-62,-115],[-11,-20],[-1,-2],[-29,-53],[-8,-15],[-23,-43],[-39,-71],[-129,-237],[-10,-19]],[[45358,78943],[0,25],[1,165],[1,101],[1,80],[0,5],[1,87],[0,42],[0,58],[1,56],[1,109],[2,250],[0,61],[0,15],[1,72],[1,169],[0,116],[0,73],[0,325],[0,16],[0,9],[0,36],[0,66],[0,140],[0,27],[0,42],[-20,87],[-82,10],[-56,7],[-27,0],[-117,0],[-240,0],[-99,0],[-31,0],[-68,0],[-54,0],[-90,0],[-114,0],[-81,0],[-119,1],[-75,2],[-111,1],[-32,0],[-110,0],[-78,0],[-70,0],[-77,1],[-196,0],[-98,0],[-207,1],[-215,1],[-462,1],[-56,0],[-20,0],[-194,1],[-25,0],[-47,0],[-56,0],[-41,2],[-112,-1],[-476,-1],[-561,-1],[-238,-1],[-54,0],[-283,1],[-375,3],[-259,0],[-45,0],[0,47],[0,223],[1,232],[0,207],[0,13],[6,215],[-2,942],[-1,190],[0,166],[-1,197],[0,47],[-277,0],[-19,-1],[-97,0],[-1185,-2],[-19,0],[-28,-1],[-147,1],[-17,0],[-81,1],[-492,3],[-239,-1],[-82,-1],[-18,-3],[-69,1],[-69,1],[-76,0],[-87,-1],[-124,0],[-40,-1],[-37,0],[-115,-1],[-72,5],[-49,-1],[-60,0],[-38,0],[-31,0],[-78,1],[-77,0],[-72,1],[-36,-1],[-27,0],[-25,1],[-30,0],[-45,0],[-128,-1],[-98,0],[-67,1],[-24,0],[-18,1],[-138,-3],[-20,0],[-37,0],[-44,0],[-291,0],[-230,1],[-101,0],[-11,0],[-9,0],[-193,0],[-10,0],[-12,0],[-110,0],[-409,1],[-67,2],[-3,0],[-232,-1],[-71,-1],[-605,-2],[-283,-1],[-105,-1],[-300,-1],[-499,1],[-109,-1],[-83,2],[-33,-1],[-70,-1],[-630,-4],[-212,-1],[-888,-4],[-28,0],[-41,1],[-100,0],[-41,0],[-182,0],[-396,0],[-114,0],[-45,0],[-119,0],[-390,-1],[-378,-4],[-330,-4],[-63,-1],[-615,-6],[-92,0],[-51,-1],[-221,-1],[-19,0],[-122,0],[-101,1],[-47,0],[-164,0],[-91,0],[-114,0],[-97,1],[-180,0],[-117,0],[-660,0],[-90,1],[-285,0],[-47,0],[-195,-1],[-83,1],[-212,1],[-215,1],[-53,-2],[-61,0],[-52,1],[-142,0],[-236,1],[-260,-1],[-137,0],[-348,0],[-129,-1],[-203,2],[-80,0],[-121,1],[-34,-1],[-44,0],[-20,0],[-133,0],[-46,-1],[-57,0],[-114,0],[-99,1],[-5,0],[-29,-1],[-61,0],[-163,0],[-175,-1],[-125,0],[-74,0],[0,97],[1,88],[0,9],[-2,77],[1,296],[1,231],[0,27],[-1,121],[0,24],[0,343],[0,12],[0,174],[-132,1],[-3,0],[-426,1],[-54,0],[-241,0],[-254,1],[-152,-1],[-205,1],[-29,-1],[-60,1],[-2,0],[-204,0],[-409,0],[-463,1],[-383,0],[-181,-1],[-393,-5],[-125,1],[-195,1],[-1692,-2],[-82,-1],[-274,1],[-298,2],[-48,0],[-282,-2],[-24,1],[-26,-1],[-81,1],[-121,1],[-252,-2],[-165,0],[-524,-3],[-259,-2],[-18,-1],[-209,-2],[-159,1],[-303,1],[-15,0],[-19,1]],[[11694,85147],[1,3],[-64,-1],[-22,0],[-98,-1],[-1,0],[-71,0],[-60,0],[-23,-1],[0,56],[1,136],[0,2],[0,15],[0,52],[0,23],[-1,134],[-1,51],[-3,96],[-6,126],[-4,114],[-4,97],[-3,82],[-3,70],[-3,71],[0,33],[0,19],[1,59],[0,96],[1,206],[1,124],[0,82],[0,20],[0,2],[1,183],[2,354],[1,58],[-1,18],[0,42],[0,45],[-1,101],[-1,17],[2,155],[0,35],[0,16],[0,79],[0,16],[0,96],[0,16],[0,89],[-1,95],[0,24],[-1,143],[0,38],[0,25],[2,207],[0,59],[0,115],[0,100],[0,34],[69,-1],[120,-3],[25,0],[23,-1],[42,0],[33,-1],[51,-1],[59,-1],[2,0],[1,20],[1,27],[1,23],[0,24],[0,2],[4,123],[4,154],[2,101],[2,73],[0,8],[1,25],[1,42],[3,132],[2,81],[2,75],[1,63],[0,26],[1,4],[0,43],[-7,184],[0,23],[-1,55],[0,154],[0,217],[-1,198],[1,128],[0,52],[0,28],[0,111],[0,95],[1,283],[-141,-1],[-183,-1],[14,206],[3,64],[5,150],[6,172],[2,69],[2,75],[4,123],[-4,208],[1,39],[4,113],[3,52],[1,21],[1,36],[4,144],[2,164],[0,44],[0,29],[0,48],[-1,131],[1,206],[0,68],[0,49],[-1,57],[-1,251],[-98,-4],[-1,217],[-1,183],[0,45],[-1,45],[-1,200],[-1,143],[1,323],[0,43],[-1,95],[0,16],[0,57],[1,161],[0,37],[0,17],[0,26],[0,315],[0,262],[0,18],[0,73],[1,222],[0,75],[1,67],[0,2],[0,75],[0,36],[1,15],[0,15],[0,5],[3,189],[1,90],[0,107],[-1,108],[0,19],[0,20],[0,11],[0,6],[-1,34],[0,18],[-2,138],[0,51],[0,18],[1,104],[2,104],[35,0],[0,34],[-1,53],[-1,108],[0,62],[0,17],[1,54],[1,90],[2,146],[1,69],[0,13],[0,5],[1,58],[1,126],[1,42],[2,201],[2,175],[0,345],[1,359]],[[11450,99914],[49,0],[852,0],[2903,-8],[4136,-8],[687,-3],[1951,-9],[907,18],[69,1],[552,8],[1149,16],[538,8],[2562,13],[309,2],[49,0],[490,2],[160,1],[475,1],[1046,3],[2849,5],[432,1],[117,1],[75,0],[118,0],[1030,2],[3068,6],[325,1],[3392,7],[80,0],[2551,5],[5568,11],[81,0],[68,-6],[0,-3]],[[50088,99989],[0,-91],[0,-96],[0,-2],[-1,-231],[-2,-28],[0,-151],[1,-89],[0,-256],[1,-202],[-3,-23],[1,-48],[2,-327],[0,-6],[1,-144],[4,-64],[-2,-17],[-3,-102],[2,-49],[-1,-236],[-1,-42],[-1,-113],[-3,-128],[-4,-285],[-1,-50],[-5,-326],[-1,-44],[-4,-183],[-1,-30],[9,-154],[6,-44],[1,-185],[0,-65],[0,-201],[0,-41],[0,-3],[-1,-72],[0,-29],[1,-48],[0,-182],[0,-79],[0,-128],[0,-22],[0,-39],[1,-11],[0,-47],[0,-90],[0,-68],[1,-320],[0,-1],[0,-155],[5,-35],[0,-206],[0,-25],[0,-249],[0,-240],[0,-193],[-1,-435],[0,-2],[0,-290],[0,-111],[11,-81],[0,-33],[0,-2],[-2,-114],[-1,-170],[0,-18],[-1,-27],[-1,-238],[-2,-421],[-2,-167],[0,-132],[-1,-111],[-1,-81],[-1,-108],[0,-83],[-2,-161],[0,-366],[-3,-153],[0,-23],[-1,-451],[0,-6],[-1,-306],[5,-320],[9,-136],[0,-247],[0,-3],[0,-141],[0,-237],[0,-476],[0,-44],[0,-181],[0,-106],[0,-82],[0,-131],[0,-2],[-6,-293],[-1,-282],[0,-15],[0,-21],[0,-57],[0,-114],[0,-41],[0,-81],[0,-42],[0,-33],[-1,-176],[0,-85],[0,-27],[0,-16],[0,-61],[0,-54],[0,-111],[0,-4],[-1,-61],[0,-87],[0,-120]],[[99881,73096],[-22,0],[-107,0],[-69,0],[-125,-1],[-101,0],[-137,-1],[-63,-1],[-54,1],[-151,0],[-36,0],[-162,0],[-24,0],[-157,1],[-120,-4],[-56,2],[-244,2],[-19,0],[-26,-1],[-30,0],[-45,0],[-155,0],[-243,0],[-154,0],[-163,0],[-85,0],[-112,-1],[-248,1],[-107,-1],[-211,-1],[-208,0],[-681,6],[-61,1],[-230,1],[-290,3],[-184,1],[-249,3],[-24,1],[-76,-2],[-161,-4],[-125,8],[-62,-1],[-202,2],[-109,1],[-82,1],[-130,1],[-239,3],[-140,2],[-367,2],[-127,0],[-18,0],[-236,2],[-383,1],[-349,2],[-74,0],[-66,1],[-4,0],[-70,0],[-334,4],[-100,1],[-116,1],[-27,0],[-59,0],[-30,1],[-14,0],[-4,0],[-63,0],[-319,3],[-466,3],[-140,2],[-2,0],[-37,1],[-340,5],[-104,0],[-370,2],[-23,1],[-216,1],[-34,0],[-279,2],[-4,0],[-57,0],[-2,0],[-327,3],[-38,0],[-35,2],[-31,-1],[-55,-8],[-142,2],[-207,1],[-42,0],[-54,0],[-61,1],[-19,0],[-82,0],[-281,1],[-44,1],[-453,7],[-348,8],[-169,4],[-47,-2],[-146,-8],[-132,-5],[-19,1],[-106,3],[-138,4],[-40,1],[-214,3],[-154,-2],[-196,3],[-505,3],[-18,0],[-36,0],[-57,1],[-215,1],[-264,1],[-124,-6],[-22,2],[-44,-1],[-33,-1],[-22,0],[-66,0],[-56,0],[-75,1],[-225,0],[-160,1],[-174,1],[-170,0],[-214,1],[-170,2],[-38,-1],[-20,0],[-31,0],[-21,0],[-19,0],[-22,0],[-33,0],[-65,-1],[-72,-1],[-21,0],[-18,0],[-67,-1],[-23,1],[-46,-1],[-44,-2],[-278,2],[-74,0],[-115,0],[-216,1],[-7,0],[-51,0],[-188,-1],[-207,0],[-292,3],[-29,-1],[-82,1],[-47,1],[-60,-2],[-24,-1],[-104,-1],[-236,-2],[-90,3],[-210,0],[-48,1],[-393,11],[-254,6],[-142,5],[-50,1],[-17,1],[-84,2],[-213,7],[-55,0],[-71,2],[-552,15],[-282,2],[-351,3],[-59,0],[-227,2],[-664,4],[-88,1],[-23,0],[-31,0],[-17,1],[-26,0],[-19,0],[-22,1],[-51,-1],[-60,0],[-33,0],[-31,0],[-86,1],[-25,12],[-123,-1],[-209,1],[-17,0],[-22,0],[-124,0],[-373,1],[-25,0],[-37,0],[-224,1],[-116,1],[-2,0],[-133,0],[-400,2],[-235,1],[-54,-7],[-588,-3],[-116,0],[-26,0],[-4,0],[-184,1],[-197,0],[-46,1],[-3,0],[-40,0],[-891,5],[-90,1],[-42,1],[-40,1],[-35,-2],[-18,1],[-114,3],[-30,0],[-30,1],[-116,-4],[-133,-4],[-66,2],[-76,0],[-203,0],[-139,0],[-63,0],[-214,-4]],[[69916,73252],[-131,-3],[-371,3],[-184,2],[-79,0],[-305,0],[-612,-4],[-129,-1],[-310,1],[-67,0],[-280,0],[-312,-5],[-41,130],[-96,285],[-21,63],[-51,151],[-15,45],[-14,41],[-55,159],[-14,42],[-87,249],[-10,31],[-59,167],[-7,13],[-94,266],[-39,112],[0,1],[-7,20],[-6,19],[-7,20],[-8,23],[-62,184],[-39,114],[-41,120],[-64,189],[-30,89],[-97,285],[-27,82],[-39,113],[-20,56],[-41,122],[-60,177],[-52,152],[0,17],[-89,260],[-95,282],[-29,86],[-36,105],[-6,17],[-13,40],[-79,235],[-5,13],[-46,136],[-7,22],[-46,137],[-56,166],[-41,122],[-56,165],[-14,43],[-30,74],[-4,11],[-62,183],[-92,265],[-3,10],[-27,71],[-56,119],[-89,272],[-58,176],[-41,124],[-144,438],[-112,339],[-13,45],[-1,2],[-9,25],[-6,15],[-27,72],[-2,6],[-26,71],[-1,3],[-6,15],[4,140],[0,88],[0,93],[0,52],[-2,174],[1,20],[-1,27],[0,20],[0,4],[0,40],[-1,107],[0,161],[-1,99],[0,54],[0,40],[-4,74],[0,49],[0,66],[0,67],[0,104],[0,35],[0,46],[0,92],[0,43],[0,16],[0,114],[0,215],[0,28],[0,119],[0,132],[0,91],[0,47],[0,102],[0,78],[0,187],[2,155],[0,94],[0,20],[0,59],[0,77],[-1,396],[0,124],[0,124],[0,127],[-1,191],[0,192],[-1,76],[1,137],[0,21],[0,20],[1,43],[0,15],[0,45],[-2,25],[-2,0],[-32,0],[-25,0],[-779,0],[-203,0],[-38,0],[-136,0],[-4,0],[-336,0],[-43,0],[-250,0],[-292,0],[-83,2],[-33,0],[-149,0],[-434,0],[-95,1],[-153,0],[-30,0],[-169,1],[-53,0],[-127,1],[-183,1],[-94,0],[-399,-2],[-8,0],[-34,-1],[-83,0],[-19,0],[-206,0],[-25,0],[-106,0],[-233,1],[-164,0],[-17,0],[-240,0],[-75,0],[-128,0],[-17,0],[-222,0],[-25,1],[-209,0],[-18,0],[-78,0],[-26,1],[-94,-3],[-450,3],[-123,0],[-24,0],[-363,1],[-53,0]],[[57319,85719],[-21,0],[-150,1],[-67,-1],[-58,0],[-360,-2],[-274,0],[-46,-1],[-119,0],[-52,0],[-5,0],[-121,0],[-74,0],[-30,0],[-60,0],[-55,0],[-69,0],[-40,0],[-426,0],[-33,0],[-3,0],[-27,0],[-42,0],[-72,1],[-44,0],[-68,0],[-131,0],[-304,0],[-48,0],[-47,0],[-48,0],[-130,0],[-77,0],[-76,-1],[-117,0],[-174,2],[-215,1],[-58,0],[-2,0],[-31,0],[-88,1],[-39,0],[-78,0],[-147,1],[-720,-3],[-161,0],[-30,0],[-323,-2],[-52,0],[-93,0],[-626,-1],[-84,0],[-135,0],[-356,0],[-103,0],[-131,2],[-60,0],[-148,1],[-19,-1],[-66,0]],[[50088,99989],[42,-7],[1232,0],[1161,-1],[2732,-2],[1252,0],[1779,-1],[1161,-1],[293,0],[2,0],[4037,-2],[911,-1],[220,0],[1584,-1],[1048,-1],[1092,-2],[1886,-3],[517,-1],[1992,-4],[357,0],[3611,-7],[1008,-2],[889,-2],[1335,-2],[457,-1],[747,-1],[1533,-3],[285,-1],[667,8],[1808,22],[2124,26],[736,-7],[860,-9],[2242,-23],[1906,-19],[159,-1],[206,-3],[1967,-19],[580,-1],[1477,-3],[1979,-3],[7,-87],[2,-95],[3,-130],[0,-18],[1,-47],[1,-24],[0,-22],[6,-238],[1,-77],[1,-42],[3,-145],[1,-48],[5,-281],[4,-208],[2,-93],[0,-26],[-1,-40],[-1,-76],[-13,-218],[-10,-129],[4,-295],[13,-808],[1,-86],[1,-59],[2,-135],[0,-56],[0,-113],[-1,-118],[0,-32],[0,-1],[0,-104],[-1,-100],[0,-125],[-1,-58],[0,-25],[0,-36],[1,-560],[0,-135],[1,-40],[0,-173],[0,-166],[-8,-148],[-1,-178],[-1,-157],[-1,-132],[0,-97],[0,-41],[-1,-22],[-2,-528],[-1,-115],[-2,-368],[8,-79],[4,-38],[0,-84],[0,-95],[-1,-109],[0,-101],[0,-167],[-2,-387],[0,-24],[-1,-200],[0,-35],[0,-129],[0,-104],[-1,-234],[0,-68],[0,-27],[0,-15],[-1,-63],[0,-23],[0,-2],[0,-17],[-2,-255],[0,-5],[-1,-108],[0,-63],[-1,-118],[-2,-263],[-1,-159],[0,-81],[-1,-112],[-1,-111],[-1,-73],[0,-78],[-1,-92],[-2,-65],[0,-65],[0,-130],[0,-58],[0,-130],[0,-33],[-19,-131],[18,-43],[0,-19],[0,-48],[-1,-175],[0,-210],[0,-86],[0,-86],[-1,-300],[0,-98],[0,-126],[0,-36],[-5,-24],[0,-55],[0,-40],[0,-26],[-1,-691],[-1,-157],[0,-261],[-1,-179],[0,-74],[0,-22],[0,-114],[-1,-142],[-1,-74],[-1,-255],[-1,-83],[-1,-237],[0,-62],[0,-63],[0,-54],[-1,-67],[0,-32],[0,-51],[-1,-126],[0,-84],[-1,-284],[-1,-75],[0,-1],[-1,-239],[-1,-418],[-2,-236],[-1,-210],[0,-16],[-1,-106],[-2,-167],[-2,-197],[0,-125],[-4,-71],[-7,-115],[2,-53],[-1,-72],[3,-43],[2,-18],[0,-53],[0,-15],[0,-16],[0,-23],[0,-3],[-1,-16],[0,-19],[0,-55],[0,-7],[0,-14],[0,-24],[0,-35],[0,-40],[-2,-120],[-2,-55],[0,-17],[0,-21],[-1,-20],[1,-21],[-1,-101],[-5,-422],[-2,-419],[-1,-114],[-1,-48],[0,-47],[-4,-517],[-10,-1074],[0,-8],[0,-55],[-1,-37],[-2,-29],[-3,-75],[0,-20],[0,-30],[1,-19],[0,-44],[1,-59],[-1,-197],[2,-230],[1,-98],[0,-20],[2,-274],[-4,-22],[-7,-51],[0,-25],[-3,-166],[-2,-188],[0,-131],[0,-75],[-1,-19],[-2,-109],[5,-39],[-1,-167],[0,-17],[0,-34],[0,-125],[-1,-97],[0,-134],[0,-135],[-1,-271],[0,-146],[1,-40],[0,-26],[-1,-67],[-2,-273],[1,-143],[-1,-72],[1,-80],[1,-23],[1,-153],[-1,-181],[-2,-159],[0,-107],[-3,-246],[1,-63],[1,-37],[-1,-251],[0,-31],[0,-18],[-2,-21],[2,-154],[-1,-95],[-1,-144],[1,-23],[-3,-80],[0,-34]],[[11694,85147],[-1,-3],[-5,-5],[-1,-3],[2,-1],[-1,-14],[0,-10],[1,-13],[5,-7],[0,-15],[4,-5],[1,-2],[0,-7],[-4,-10],[0,-5],[0,-29],[0,-40],[1,-4],[0,-50],[1,-39],[0,-13],[1,-92],[2,-52],[0,-68],[-1,-99],[0,-103],[-2,-48],[3,-57],[0,-104],[-1,-50],[1,-85],[0,-28],[0,-43],[2,-6],[-1,-65],[-1,-30],[-1,-16],[0,-19],[-1,-70],[-2,-53],[-2,-63],[-2,-45],[0,-20],[-2,-45],[0,-15],[-25,-734],[0,-1],[-2,-42],[-1,-18],[-2,-40],[-5,-98],[-3,-69],[1,-36],[3,-97],[6,-233],[3,-88],[-8,-71],[-4,-261],[0,-1],[-2,-104],[-1,-51],[-1,-57],[0,-51],[0,-22],[-6,-451],[0,-2],[-2,-187],[-1,-13],[-3,-249],[0,-12],[-4,-254],[4,-80],[2,-50],[0,-29],[0,-95],[0,-133],[0,-65],[-1,-127],[0,-21],[0,-168],[0,-177],[-1,-163],[0,-132],[0,-133],[0,-82],[0,-68],[-111,-2],[-18,0],[-257,-5],[-1,0],[-40,0],[-2,-144],[0,-31],[-1,-69],[0,-179],[1,-68],[-1,-63],[1,-22],[1,-197],[0,-82],[-1,-37],[2,-42],[0,-408],[0,-47],[3,-286],[-1,-204],[6,-367],[0,-28],[4,-54],[-1,-53],[0,-65],[-3,-229],[-2,-163],[0,-34],[-1,-75],[-3,-247],[0,-1],[-7,-633],[0,-76],[0,-362],[2,-881],[0,-467],[-10,-1778],[0,-7],[0,-20],[537,1],[1,0],[219,0],[126,0],[596,1],[15,7],[419,2]],[[13110,71416],[1,-77],[0,-90],[-2,-578],[0,-59],[0,-208],[-2,-206],[-13,-105],[0,-44],[-1,-10],[0,-51],[293,1],[3,-144],[2,-101],[1,-107],[-2,-100],[0,-98],[-1,-109],[3,-207],[-1,-206],[-1,-68],[-2,-139],[204,0],[110,0],[1,-128],[1,-79],[-1,-104],[99,0],[21,1],[26,0],[89,0],[80,0],[0,-104],[-6,-208],[1,-49],[0,-42],[0,-113],[0,-29],[0,-19],[0,-165],[1,-207],[10,0],[0,-76],[0,-101],[0,-57],[0,-164],[-1,-207],[-101,0],[-77,1],[-18,0],[-93,0],[-24,0],[-1,-61],[0,-53],[0,-102],[0,-16],[0,-136],[0,-55],[1,-120],[0,-79],[2,-63]],[[13712,66175],[-7,-4],[-8,-5],[-8,-5],[-56,-35],[-84,-53],[-17,-11],[-68,-43],[-57,1],[-181,2],[-142,4],[-112,1],[-217,0],[-61,-2],[-18,0],[-77,1],[-69,0],[-42,0],[-26,1],[-22,0],[-19,0],[-11,0],[-35,0],[-93,1],[-10,-1],[-9,-1],[-2,0],[-5,0],[-11,0],[2,2],[-1,0],[-2,0],[-21,-2],[-53,-4],[-41,-4]],[[12129,66018],[17,21],[48,58],[-19,11],[-25,15],[-1,0],[-1,-4],[-1,-2],[-9,-15],[-6,-7],[-52,-63],[-3,-1],[-57,-28],[-51,-25],[-1,-1],[-35,-17],[-9,-4],[-5,-2],[-15,-6],[-12,-5],[-53,-21],[-22,-8],[-51,-20],[-25,-10],[-75,-29],[-93,-35],[-1,-1],[-8,-3],[-4,-1],[-20,-8],[-99,-38],[-23,-9],[-229,-70],[-82,-8],[-178,8],[-77,-8],[-77,-28],[-31,-25],[-9,-7],[1,-21],[1,-14],[1,-39],[-35,-2],[-123,-9],[-22,-2],[-91,-7],[-141,-6],[-80,-4],[-14,-1],[-146,31],[-116,7],[-139,-19],[-117,-12],[-95,0],[-95,4],[-7,0],[-77,-30],[-10,1],[-5,0],[-43,9],[-16,3],[-6,1],[-61,28],[-18,9],[-100,-19],[-6,-4],[-88,-52],[-13,-18],[-26,-36],[-30,-54],[1,-53],[-6,-29],[-3,-12],[-3,-15],[-1,-5],[-14,-19],[-22,-8],[-5,1],[-45,2],[-5,0],[-68,4],[-47,-3],[-67,-5],[-6,-4],[-16,-2],[-27,-4],[-29,4],[-31,-1],[-85,-6],[-159,8],[-206,9],[-67,3],[-45,-1],[-63,-2],[-8,0],[-11,0],[-88,-31],[-62,-28],[-4,-1],[-13,-2],[-84,-19],[-75,-37],[-40,-20],[-3,-9],[-8,-33],[-11,-43],[-72,-19],[-1,0],[-20,-40],[-92,12],[-38,-8],[-15,-4],[-36,-4],[-5,-1],[-26,-3],[-3,0],[-2,-1],[-6,0],[-1,0],[-7,1],[-73,5],[-18,-2],[-100,-21],[-70,-24],[-125,-99],[-50,-39],[-6,-4],[-57,-43],[-51,-37],[-7,-4],[-71,-25],[-7,-5],[-86,-60],[-36,-38],[-10,-10],[-2,-52],[-9,-11],[-12,-8],[-20,-14],[-39,-7],[-26,-2],[-54,4],[-32,6],[-4,1],[-37,8],[-30,-2],[-9,-1],[-99,-11],[-82,-23],[-60,-9],[-28,-4],[-18,-2],[-33,-5],[-24,-4],[-29,-1],[-128,-4],[-55,35],[-36,24],[-23,12],[-9,-1],[-85,27],[-60,27],[-27,6],[-30,6],[-61,13],[-4,5],[-29,18],[-17,5],[-61,19],[-3,-20],[-3,-439],[-2,-383],[0,-29],[-2,-46],[-2,-55],[-1,-30],[0,-31],[2,-24],[125,2],[21,1],[23,0],[30,0],[178,0],[103,-1],[120,0],[56,-1],[32,0],[-4,-33],[-20,-181],[-2,-15],[1,-85],[-2,-77],[0,-19],[-2,-55],[0,-17],[-6,-138],[-148,3],[-78,0],[-47,1],[-60,1],[-1,-37],[-1,-25],[-2,-108],[0,-15],[0,-28],[-138,-1],[1,-22],[1,-23],[0,-138],[-1,-22],[132,-2],[1,-25],[1,-14],[1,-33],[-2,-38],[0,-20],[0,-34],[0,-41],[65,1],[92,1],[0,-60],[-1,-99],[1,-49],[156,-2],[1,-52],[3,-60],[1,-36],[0,-60],[-149,1],[-33,0],[-135,0],[0,-43],[0,-113],[-1,-126],[2,-28],[-1,-16],[0,-21],[-1,-21],[0,-31],[0,-16],[0,-122],[0,-65],[0,-32],[-1,-91],[-83,1],[-226,-1],[0,-48],[0,-36],[-1,-18],[-8,-208],[-29,-1],[-50,-1],[-46,0],[-54,1],[-38,1],[-39,0],[-37,0],[4,-24],[19,-95]],[[4941,60721],[-9,-17],[-8,-14],[-9,-21],[-6,-14],[-13,-28],[-35,0],[-30,0],[-29,0],[-22,0],[-60,-1],[-20,0],[-29,0],[-40,0],[-33,-1],[-34,0],[-19,0],[-23,0],[-63,-1],[-18,0],[-44,4],[-117,1],[-1,-121],[0,-22],[0,-22],[0,-31],[-48,-11],[-17,-1],[-18,0],[-231,0],[0,-48],[0,-21],[0,-15],[0,-20],[0,-38],[0,-45],[0,-21],[-117,0],[-42,0],[-154,0],[-47,0],[-26,0],[-44,-1],[-39,0],[0,-40],[0,-63],[-59,0],[-19,8],[-9,-2],[-9,-1],[-7,0],[-7,0],[-3,0],[9,3],[-8,8],[-44,3],[-19,1],[-11,0],[-13,-1],[-20,-1],[-26,-1],[-7,0],[-19,-1],[-42,-3],[0,-13],[-17,0],[-137,0],[0,-55],[0,-36],[0,-12],[-40,0],[-38,0],[-30,0],[-20,0],[-27,0],[-47,0],[-69,0],[-17,0],[1,-68],[0,-41],[-157,-2],[0,-62],[0,-42],[-100,-1],[-55,-1],[2,-62],[0,-24],[2,-42],[1,-22],[1,-57],[-93,-1],[-28,-1],[-108,-2],[-40,0],[-44,1],[0,-77],[-21,0],[-193,0],[-33,0],[-16,0],[-11,0],[-19,0],[-18,0],[-19,0],[-17,0],[-172,1],[-164,0],[-49,0],[-88,0],[-1,0],[-34,0],[-38,0],[-14,0],[-15,0],[-502,1],[-152,0],[-103,0],[-318,0],[-15,0],[-57,-1]],[[54,59503],[-20,811],[-2,65],[-32,1273],[19,487],[17,447],[36,946],[0,6],[2,198],[1,104],[20,2217],[1,41],[6,650],[0,74],[6,637],[18,1544],[12,1050],[9,779],[7,593],[16,1429],[-1,775],[-1,939],[-7,4777],[0,34],[-3,779],[-29,7873],[-1,311],[1,321],[0,389],[4,4459],[1,170],[1,1541],[3,3380],[0,3],[0,60],[2,1263],[194,0],[306,-1],[635,0],[2280,-2],[324,0],[4510,-3],[2140,-2],[318,0],[603,-6]],[[69916,73252],[9,-14],[22,-17],[17,-6],[21,-5],[37,-19],[34,-16],[28,-11],[15,-7],[5,-17],[0,-17],[-14,-15],[-26,-14],[-19,-9],[-3,-1],[-2,-17],[-22,-9],[-22,-14],[-1,-19],[29,-14],[28,-40],[25,-30],[-23,-25],[-29,-15],[-104,-31],[-55,-22],[-30,-14],[-8,-15],[23,-20],[65,-40],[13,-10],[18,-68],[-40,-28],[-22,-8],[-38,-13],[11,-39],[-2,-20],[32,3],[24,-7],[28,-31],[17,-43],[-4,-35],[-2,-23],[23,-19],[17,-16],[-8,-20],[9,-13],[24,-21],[29,-29],[-5,-35],[-4,-26],[3,-29],[10,-19],[7,-26],[-6,-33],[-11,-22],[-32,-17],[-62,-70],[16,-19],[21,-20],[19,-20],[9,-16],[-4,-26],[-15,-25],[4,-18],[22,-19],[19,-27],[21,-55],[-6,-22],[-4,-15],[-19,-8],[-62,-26],[-38,-31],[-17,-22],[-5,-38],[24,-60],[23,-19],[22,-18],[-7,-50],[-7,-38],[12,-25],[5,-11],[-4,-17],[-32,-23],[-26,-18],[-14,-17],[19,-17],[6,-15],[-2,-30],[-2,-28],[16,-23],[4,-16],[41,-22],[40,-9],[17,-11],[5,-19],[6,-24],[19,-21],[19,-20],[15,-34],[-11,-22],[8,-25],[5,-41],[17,-18],[29,-22],[18,-27],[21,-42],[15,-30],[17,-24],[7,-19],[1,-29],[14,-31],[9,-25],[-8,-22],[-8,-37],[9,-29],[-12,-21],[-5,-25],[-5,-32],[-8,-36],[-19,-28],[11,-26],[21,-28],[37,-30],[38,-34],[27,-4],[19,-9],[33,-56],[17,-25],[8,-32],[6,-14],[47,-28],[5,-26],[6,-27],[-7,-22],[-12,-30],[-50,-21],[-11,-21],[-19,-31],[-3,-16],[9,-24],[3,-45],[19,-10],[13,-20],[-10,-34],[22,-28],[24,-32],[3,-51],[-3,-18],[11,-12],[19,-19],[4,-19],[-10,-12],[-13,-23],[1,-22],[-24,-18],[-19,-18],[-5,-25],[14,-18],[50,-21],[23,-8],[14,-12],[13,-27],[5,-22],[17,-19],[5,-22],[24,-25],[4,-23],[3,-32],[-13,-10],[-31,-21],[-18,-16],[-3,-16],[8,-27],[-13,-18],[-9,-17],[-8,-24],[-5,-23],[6,-30],[9,-20],[12,-20],[1,-15],[-14,-14],[-21,-7],[-25,-2],[-31,-12],[-19,-21],[-17,-24],[-29,-30],[-19,-22],[-3,-19],[-53,0],[-2,-31],[-2,-36],[-14,-48],[-14,-18],[-21,-13],[18,-27],[20,-24],[0,-16],[8,-31],[11,-22],[4,-24],[-3,-18],[-6,-20],[14,-28],[16,-22],[11,-32],[0,-37],[-8,-32],[-25,-39],[10,-56],[12,-32],[-50,-59],[9,-29],[3,-20],[-6,-26],[9,-19],[16,-15],[19,-14],[-18,-15],[-16,-25],[8,-16],[22,-24],[16,-28],[-6,-21],[-29,-27],[-12,-29],[0,-18],[11,-19],[-8,-23],[-28,-4],[-13,-11],[-18,-18],[-13,-20],[-8,-19],[-17,-8],[-48,-13],[-27,-8],[-23,-17],[-10,-25],[-6,-25],[-18,-16],[-36,-11],[-20,-35],[-21,-16],[-7,-17],[-1,-17],[-29,-46],[-2,-18],[-4,-146],[47,-30],[1,-15],[-19,-64],[28,-33],[17,-26],[8,-31],[-7,-32],[-2,-40],[-8,-32],[6,-17],[27,-23],[18,-37],[18,-22],[4,-16],[15,-19],[6,-20],[-1,-20],[-3,-20],[-7,-22],[0,-15],[11,-13],[0,-15],[6,-21],[2,-20],[-8,-18],[2,-19],[11,-19],[11,-22],[-3,-24],[-14,-29],[-10,-22],[20,-34],[-21,-37],[14,-22],[5,-18],[0,-21],[-10,-25],[-11,-20],[-11,-20],[-33,-41],[-5,-47],[18,-20],[14,-27],[3,-21],[5,-33],[-6,-28],[-3,-20],[2,-21],[12,-62],[15,-25],[25,-31],[16,-12],[19,-17],[13,-14],[6,-23],[-1,-39],[-2,-16],[16,-23],[-16,-41],[5,-22],[6,-34],[8,-27],[9,-31],[13,-30],[32,-21],[15,-28],[4,-22],[-8,-23],[11,-26],[-5,-20],[-8,-29],[-14,-14],[-13,-16],[-3,-29],[-42,-20],[-8,-27],[-4,-14],[-17,-19],[-14,-15],[-10,-16],[-40,-23],[-36,-25],[-19,-22],[-15,-15],[-28,-16],[-27,-12],[-26,-31],[-19,-29],[-9,-21],[-16,-21],[-1,-38],[-17,-29],[-23,-32],[4,-18],[16,-17],[29,-6],[18,-6],[15,-12],[8,-31],[-4,-27],[4,-28],[9,-27],[22,-22],[9,-18],[-8,-16],[-14,-23],[0,-27],[-10,-20],[-12,-18],[-19,-27],[-77,-128],[-19,-15],[-12,-26],[-6,-32],[-1,-27],[-7,-17],[-15,-10],[-36,-24],[28,-8],[12,-12],[-12,-19],[-24,-20],[-124,-4],[-10,-15],[-14,-17],[-13,-10],[-32,-20],[27,-14],[14,-15],[27,-14],[-13,-28],[-19,-6],[-22,-1],[-22,-5],[-22,-17],[-13,-10],[-11,-15],[-20,-5],[-25,-3],[-23,-6],[-23,-9],[-12,-20],[11,-27],[-6,-19],[-24,-12],[-23,-4],[-22,-4],[-21,-6],[-1,-15],[14,-22],[14,-27],[14,-18],[21,-23],[-4,-24],[-12,-14],[-5,-20],[-3,-25],[-10,-13],[-14,-15],[-6,-15],[-19,-17],[-21,-4],[-19,-1],[-30,-2],[-9,-12],[4,-20],[-8,-19],[-20,0],[-34,0],[-21,6],[-26,-10],[-30,-16],[-16,-10],[-25,-7],[-26,-3],[-19,0],[-14,-9],[-23,-7],[-27,-3],[-36,-7],[-4,-16],[-8,-19],[-8,-18],[-10,-14],[-23,-19],[-7,-17],[-32,4],[-19,4],[-30,18],[0,26],[-13,24],[-3,15],[-1,15],[-16,7],[-11,10],[-13,24],[-18,4],[1,-92],[2,-283],[1,-45],[2,-160],[0,-54],[0,-40],[0,-128],[1,-181],[0,-26],[0,-140],[0,-67],[0,-2],[1,-61],[-7,-99],[0,-57],[0,-88],[1,-189],[0,-111],[1,-198],[1,-279],[0,-1],[1,-371],[0,-7],[1,-386],[2,-45],[0,-71],[1,-146],[0,-2],[0,-152],[0,-39],[0,-300],[0,-100],[0,-86],[0,-68],[1,-205],[0,-45]],[[68708,59449],[-42,0],[-104,0],[-383,1],[-189,-1],[-290,0],[-77,0],[-157,0],[-193,0],[-137,0],[-23,-8],[-1,0],[-162,0],[-330,1],[-131,0],[-274,0],[-367,1],[-579,1],[-199,1],[-29,2],[-227,0],[-483,-1],[-1032,2],[-87,1],[-77,0],[-188,0],[-506,0],[-164,0],[-52,0],[-676,-1],[-23,0],[-275,0],[-399,0],[-56,0],[-474,0],[-43,0],[-246,0],[-418,-1],[-211,0],[-319,0],[-805,-1],[-35,0],[-303,-1],[-408,-1],[-357,-1],[-96,1]],[[57081,59444],[0,210],[65,1],[0,115],[-1,442],[0,496],[0,81],[1,248],[0,3],[0,332],[1,103],[1,207],[0,20],[2,579],[0,182],[74,0],[-7,31],[0,329],[0,244],[0,154],[0,247],[0,102],[0,310],[0,147],[0,48],[0,205],[1,160],[0,52],[0,389],[0,30],[1,56],[-1,72],[1,238],[-1,373],[0,288],[0,66],[1,61],[-1,55],[-2,72],[31,0],[0,18],[-1,378],[0,17],[1,203],[4,170],[0,29],[10,224],[0,18],[0,69],[1,179],[0,56],[0,30],[-1,45],[-1,32],[0,461],[0,177],[0,196],[0,218],[1,246],[0,301],[1,173],[1,81],[1,196],[-3,141],[0,4],[-3,735],[-1,155],[-1,30],[5,513],[-1,138],[-3,187],[0,1],[0,31],[0,25],[0,65],[0,3],[1,704],[-15,17],[-75,0],[-71,0],[-2,25],[2,354],[-1,91],[1,153],[1,57],[2,39],[1,18],[0,15],[0,49],[0,39],[-1,30],[0,29],[1,27],[1,32],[1,20],[1,14],[2,127],[2,65],[2,59],[-4,22],[4,30],[5,57],[19,572],[5,240],[18,411],[0,73],[6,139],[6,155],[7,164],[9,214],[3,84],[6,139],[-5,40],[-1,27],[-5,91],[1,65],[1,110],[0,26],[0,119],[2,40],[4,105],[5,129],[0,29],[2,125],[-1,140],[0,55],[0,50],[0,18],[0,33],[0,29],[0,179],[0,32],[0,15],[0,73],[0,141],[0,124],[0,161],[0,145],[0,196],[-15,166],[-3,93],[0,30],[-1,22],[-2,75],[-6,252],[6,438],[-7,61],[-3,14],[-3,19],[-2,151],[0,33],[-1,29],[0,25],[0,27],[0,68],[0,30],[0,2],[-1,27],[0,21],[0,23],[0,31],[-1,68],[0,21],[-1,121],[9,208],[2,423],[-1,111],[1,318],[0,22],[0,21],[0,1],[0,79],[0,20],[0,1],[0,120],[0,22],[0,36],[0,2],[0,13],[0,85],[-1,15],[-1,28],[-2,25],[-1,31],[-4,81],[1,69],[1,113],[0,3],[1,35],[-2,65],[0,19],[8,29],[-5,228],[0,41],[1,25],[1,121],[0,1],[1,64],[0,45],[1,17],[-1,20],[-7,204],[1,118],[-3,178],[1,60],[-3,97],[0,5],[-3,123],[6,272],[-8,167],[-2,18],[0,129],[1,231],[0,72],[-1,86],[1,113],[1,251],[0,122],[163,8],[1,70],[1,232],[2,205],[1,115],[1,141]],[[57081,59444],[-418,2],[-234,1],[-20,0],[-215,1],[-1,0],[-405,2],[-70,1],[-76,0],[-83,0],[-354,2],[-285,2],[-28,0],[-126,0],[-198,-10],[-84,0],[-53,1],[-1007,6],[-128,1],[-164,1],[-174,1],[-484,6],[-697,1],[-171,1],[-117,1],[-465,3],[-66,0],[-111,1],[-468,3],[-239,0],[-512,0],[-251,-1],[-149,0],[-38,0],[-354,0],[-87,-1],[-464,2],[-860,-1],[-346,-1],[-374,0],[-53,0],[-34,0],[-36,0],[-130,0],[-107,1],[-155,2],[-417,-1],[-55,0],[-1,0],[-321,1],[-27,0],[-64,0],[-471,0],[-295,-38],[-92,-12],[-39,-5],[-13,-2],[-300,-34],[-92,-11],[-596,-70],[-278,-33],[-282,-34],[-375,-45],[-471,-59],[-97,-14],[-17,-3],[-444,-63],[-120,-17],[-212,-31],[-80,-11],[-20,-3],[-64,-9],[-324,-46],[-27,-4],[-41,-6],[-237,-38],[-188,-26],[-134,-19],[-46,-6],[-44,-4],[-50,-7],[-302,-42],[-507,-73],[-90,-13],[-83,-11],[-73,-10],[-19,-3],[-134,-20],[-1,0],[-255,-36],[-589,-85],[-53,-8],[-151,-21],[-200,-28]],[[37399,58472],[-20,7],[8,17],[-19,24],[-6,18],[0,15],[-9,14],[-1,15],[-9,14],[-16,20],[-16,14],[-18,11],[-14,10],[-15,8],[-21,6],[-27,5],[-17,4],[-24,8],[-25,3],[-21,-2],[-23,0],[-20,12],[-14,11],[-26,11],[-24,21],[-23,-3],[-12,21],[-7,16],[-18,21],[12,11],[29,28],[32,-12],[17,-12],[27,-3],[27,12],[5,17],[-9,16],[-8,15],[-21,8],[-16,4],[19,21],[21,11],[10,13],[-2,18],[1,17],[19,12],[9,28],[-2,17],[-20,20],[-19,22],[-6,14],[-7,19],[-1,20],[-19,16],[-46,-9],[-26,0],[-24,4],[-34,17],[-26,17],[-15,16],[1,18],[-9,19],[17,12],[27,0],[33,-7],[16,-5],[18,-1],[20,6],[20,2],[33,-1],[24,-9],[9,15],[-2,20],[5,14],[32,13],[32,12],[19,6],[35,3],[22,1],[8,14],[-22,12],[-18,13],[-14,28],[-14,8],[-16,17],[-15,15],[-37,13],[-5,19],[5,20],[27,7],[15,13],[18,9],[-3,20],[-41,43],[1,22],[37,-1],[20,-7],[35,12],[11,21],[4,27],[17,19],[20,14],[25,1],[17,-2],[32,-15],[36,-14],[24,-2],[32,8],[36,3],[13,14],[21,23],[25,19],[22,14],[10,41],[13,18],[26,18],[24,14],[26,4],[17,-2],[23,0],[18,-5],[20,5],[23,-8],[17,-3],[13,19],[25,14],[2,25],[13,10],[19,13],[25,5],[26,4],[27,5],[-1,32],[12,18],[0,34],[-11,18],[25,6],[19,-1],[21,26],[31,20],[15,18],[21,17],[19,10],[-2,25],[-6,19],[13,16],[13,14],[19,7],[42,9],[37,12],[26,13],[26,-3],[22,-5],[25,3],[28,-1],[-25,45],[-7,13],[13,26],[25,32],[-15,34],[-5,22],[17,25],[22,18],[-14,18],[-11,18],[-1,22],[5,16],[13,18],[-6,27],[20,15],[19,11],[12,30],[-3,16],[-4,16],[28,7],[22,20],[7,17],[-2,15],[-24,20],[-14,9],[-33,10],[-36,5],[-19,4],[-19,12],[-4,22],[-11,32],[-13,22],[-13,16],[-8,13],[1,33],[-13,28],[-17,16],[1,18],[-18,14],[-19,5],[-11,14],[-17,11],[-1,14],[19,15],[1,19],[-11,35],[-13,11],[-10,20],[-3,31],[-7,20],[1,14],[-81,51],[-41,13],[-26,12],[-14,17],[-16,7],[7,17],[10,28],[-1,17],[6,20],[5,18],[14,14],[22,14],[-8,14],[-21,11],[-17,18],[-5,16],[-4,16],[-27,13],[-30,14],[-13,14],[-4,19],[-3,22],[-6,17],[-13,12],[-20,7],[-19,-1],[-21,17],[-9,23],[9,21],[11,20],[2,31],[-13,23],[-8,16],[19,20],[-1,19],[-9,13],[-21,11],[-15,13],[-1,28],[-20,18],[-8,15],[3,17],[-19,6],[-16,6],[-29,23],[-4,16],[2,26],[-5,18],[-8,32],[16,21],[29,29],[5,20],[-21,11],[-11,12],[-6,26],[5,35],[-12,17],[-25,7],[-22,7],[11,15],[14,42],[-4,16],[-9,14],[58,69],[-3,19],[-4,28],[-6,23],[23,19],[28,7],[1,18],[-1,15],[8,29],[5,18],[21,12],[29,11],[11,20],[11,13],[15,15],[9,21],[-1,17],[15,6],[20,4],[10,14],[16,3],[17,-7],[19,-16],[17,-8],[20,-10],[28,-16],[31,-9],[21,-2],[23,1],[18,-2],[19,-3],[32,-6],[19,-1],[22,0],[22,0],[28,6],[18,4],[27,11],[28,12],[17,5],[20,1],[31,0],[17,-1],[22,-3],[37,0],[19,-5],[15,-6],[18,-10],[10,12],[10,14],[15,11],[26,8],[22,7],[25,3],[30,-3],[20,-2],[18,5],[28,5],[18,3],[17,8],[17,15],[19,14],[13,10],[14,8],[6,16],[8,15],[15,17],[7,13],[22,13],[20,5],[2,18],[14,12],[14,10],[14,10],[-1,20],[-6,16],[5,18],[20,9],[4,17],[13,11],[18,6],[18,10],[0,21],[-17,8],[-9,12],[-2,22],[3,16],[10,16],[17,8],[25,2],[29,-1],[18,4],[-1,21],[3,17],[-7,18],[2,15],[10,17],[4,18],[6,15],[16,13],[16,10],[17,5],[25,0],[16,-1],[25,-1],[19,8],[27,7],[34,-1],[25,5],[16,6],[19,-4],[22,0],[17,-3],[23,6],[19,0],[18,-3],[28,8],[21,13],[20,5],[27,-8],[28,-1],[21,8],[10,14],[22,14],[17,14],[1,15],[-4,19],[-6,16],[-1,17],[9,17],[22,20],[11,11],[15,14],[25,10],[-11,13],[-5,17],[-8,20],[4,19],[-7,16],[0,20],[8,16],[2,14],[13,14],[19,18],[-8,18],[-15,13],[-15,7],[-16,18],[-12,10],[-12,11],[-21,14],[-18,7],[-19,1],[-23,7],[-23,3],[-18,3],[-16,-8],[-33,-9],[-19,-2],[-2,21],[-15,7],[-19,8],[-5,19],[-19,5],[3,17],[2,16],[14,8],[2,14],[-5,15],[-8,13],[24,1],[19,-2],[29,-5],[24,-6],[23,12],[24,13],[2,17],[16,7],[24,0],[24,-3],[28,-6],[15,9],[14,10],[28,5],[24,9],[21,12],[18,18],[6,14],[16,10],[18,9],[18,2],[21,-2],[19,3],[27,-4],[18,-8],[23,1],[22,1],[25,8],[15,8],[15,7],[10,15],[7,14],[13,11],[24,12],[16,10],[10,21],[-4,22],[6,17],[0,24],[5,22],[17,5],[25,1],[20,12],[19,0],[19,-2],[15,8],[18,-5],[24,0],[17,-2],[17,-4],[26,1],[13,13],[-11,14],[18,16],[-4,18],[10,17],[20,3],[10,15],[17,8],[18,16],[21,2],[23,2],[39,6],[18,2],[20,4],[1,14],[21,16],[15,7],[17,9],[8,20],[-5,18],[-17,16],[-17,21],[0,23],[13,16],[-11,11],[1,17],[-1,20],[-2,19],[-15,14],[-10,17],[50,8],[20,2],[17,-8],[17,11],[25,-1],[17,6],[23,12],[17,-14],[24,-8],[23,0],[22,3],[25,2],[20,5],[20,1],[42,3],[45,-4],[19,21],[6,17],[17,15],[17,20],[18,20],[37,1],[19,-3],[30,-3],[22,10],[43,12],[24,-15],[38,-7],[29,9],[16,1],[20,7],[21,12],[28,-2],[44,5],[39,3],[26,-1],[18,8],[26,-19],[13,10],[-7,19],[15,13],[5,18],[32,7],[19,3],[-2,23],[22,4],[11,17],[17,-1],[17,-4],[20,-10],[20,5],[17,18],[18,25],[17,12],[22,-9],[35,-21],[40,-36],[27,-26],[40,-14],[19,0],[18,1],[27,3],[19,2],[16,-3],[27,-2],[20,6],[24,9],[18,5],[17,4],[18,8],[14,14],[20,19],[3,20],[1,23],[-4,20],[13,27],[-1,15],[16,8],[24,0],[18,5],[19,15],[20,6],[16,-1],[16,26],[13,23],[-12,11],[-15,7],[-12,16],[21,19],[16,15],[17,6],[18,16],[7,26],[-2,20],[-10,14],[5,14],[22,20],[9,19],[-14,24],[2,17],[-13,13],[1,14],[-13,15],[10,20],[10,22],[-7,22],[-7,17],[17,14],[14,13],[18,13],[15,19],[8,21],[14,12],[8,12],[0,19],[10,13],[-8,17],[-15,11],[10,19],[5,19],[-19,8],[-1,16],[-7,18],[-7,23],[7,17],[9,19],[15,16],[-22,15],[-19,0],[-23,2],[-26,8],[14,9],[17,13],[19,21],[9,13],[23,20],[13,19],[9,21],[7,22],[17,10],[22,17],[2,15],[15,16],[21,16],[17,14],[12,19],[13,13],[10,17],[10,11],[12,12],[25,11],[20,14],[19,6],[8,14],[10,15],[-13,11],[-12,14],[5,17],[4,18],[-7,17],[-7,17],[-5,14],[3,27],[-15,13],[-31,19],[-17,-13],[-19,-9],[-18,0],[-29,7],[-20,8],[-20,12],[-20,10],[-10,19],[-33,4],[-19,5],[-7,17],[-16,13],[-20,13],[-27,8],[-32,12],[-17,20],[-8,18],[8,18],[17,4],[12,11],[20,1],[20,5],[16,10],[10,15],[4,15],[15,14],[18,13],[-6,26],[-14,20],[4,22],[3,15],[10,14],[29,9],[26,8],[21,7],[16,9],[5,14],[-6,16],[0,21],[15,20],[-22,9],[-17,13],[0,20],[19,13],[18,12],[27,25],[7,20],[21,5],[27,10],[19,6],[21,23],[0,24],[-20,15],[-23,10],[-14,20],[-16,22],[-26,23],[-20,17],[-16,13],[-17,12],[-20,3],[-24,14],[-16,7],[-27,11],[-20,22],[-20,11],[-9,20],[2,20],[-10,12],[-19,8],[-13,12],[-13,17],[-11,13],[-7,17],[-8,15],[-21,19],[21,9],[23,15],[13,19],[3,20],[-12,20],[-12,20],[-25,5],[-6,22],[-4,20],[15,12],[4,15],[15,13],[12,16],[16,17],[14,13],[8,13],[20,0],[12,17],[7,21],[8,19],[-3,19],[11,17],[13,17],[14,10],[19,4],[-12,17],[12,16],[3,17],[10,14],[8,13],[-18,20],[-24,7],[-6,13],[5,25],[5,21],[0,16],[-19,-6],[-26,-9],[-22,10],[-17,-1],[-17,6],[-23,-7],[-14,8],[-11,14],[-12,12],[-8,16],[-15,18],[-26,2],[-20,7],[-27,1],[-16,-1],[-19,13],[-6,14],[5,14],[6,17],[-3,27],[5,20],[-13,18],[-5,15],[1,25],[-13,14],[-4,21],[11,13],[10,16],[-7,20],[5,14],[10,12],[-1,20],[-19,36],[15,12],[14,20],[-11,22],[19,13],[11,14],[21,11],[15,13],[8,13],[17,11],[-10,15],[5,15],[28,8],[5,14],[-5,16],[12,17],[22,13],[1,17],[-20,14],[-6,16],[-14,20],[-2,14],[6,23],[5,17],[15,10],[8,23],[-8,21],[-4,15],[-35,91],[-2,16],[29,5],[0,20],[13,18],[24,8],[32,4],[0,15],[-7,20],[-12,13],[-12,12],[-6,23],[-17,19],[-8,18],[-4,22],[20,11],[-8,23],[-17,25],[-6,24],[26,7],[34,11],[7,15],[18,14],[-7,23],[10,21],[-8,15],[17,4],[21,0],[17,4],[5,14],[5,23],[29,0],[92,29],[0,14],[12,20],[-10,14],[-10,15],[11,13],[19,17],[8,23],[25,17],[-1,24],[-32,27],[5,27],[22,16],[33,3],[15,13],[0,14],[19,3],[13,11],[-12,23],[0,22],[-8,22],[-17,22],[37,10],[23,7],[10,14],[19,12],[-2,24],[-1,21],[-19,19],[10,14],[10,19],[-3,14],[2,19],[-2,14],[-14,19],[2,17],[7,14],[7,17],[5,19],[-5,16],[-3,18],[1,26],[-14,16],[2,21],[-5,16],[-17,-2],[-5,19],[-1,16],[-21,7],[7,14],[-27,36],[2,14],[2,26],[-3,15],[-6,17],[-15,9],[5,17],[-11,17],[0,15],[0,18],[20,10],[16,23],[-1,16],[-15,18],[-10,22],[-15,14],[-21,14],[-6,16],[0,14],[12,13],[0,16],[18,14],[-13,10],[-19,9],[-17,27],[0,14],[-11,15],[-12,17],[-15,14],[-20,14],[-4,22],[-15,18],[-7,16],[9,21],[-18,15],[-7,17],[-9,27],[-25,9],[-20,14],[-5,20],[-27,18],[-26,-2],[-37,-10],[-27,5],[-5,17],[-9,15],[-20,10],[-16,16],[-21,18],[-19,-3],[-21,6],[-22,9],[-28,10],[-17,5],[-20,7],[-15,8],[-20,2],[-17,12],[-10,17],[-13,9],[-34,27],[7,20],[-8,34],[-17,14],[-24,20],[-3,40],[-6,20],[18,22],[15,13],[-27,10],[-18,4],[-21,14],[-23,6],[-35,4],[-22,-1],[-27,4],[-23,7],[-20,23],[3,30],[2,19],[-7,24],[-22,27],[-15,13],[-32,34],[-27,9],[-18,1],[-16,7],[-26,20],[-15,9],[-18,17],[-17,13],[8,14],[5,14],[-17,15],[-16,4],[-22,16],[-22,17],[-28,21],[-27,26],[-20,7],[-6,16],[-1,1],[-10,15]],[[41317,71440],[159,291],[64,117],[272,499],[189,349],[164,321],[6,11],[97,184],[78,155],[150,278],[56,106],[163,301],[102,182],[68,135],[94,175],[11,21],[29,54],[88,163],[118,214],[188,346],[35,62],[103,192],[15,33],[40,75],[33,62],[17,34],[38,68],[114,208],[86,157],[181,346],[20,29],[23,47],[57,104],[0,1],[17,30],[1,1],[87,163],[504,942],[13,23],[106,194],[13,25],[17,30],[46,85],[46,84],[16,29],[66,119],[27,51],[17,32],[10,15],[67,123],[27,48],[16,29],[36,67],[15,27],[2,4],[17,32],[17,30]],[[41317,71440],[-240,0],[-206,4],[-415,-1],[-100,3],[-108,1],[-69,-2],[-23,0],[-173,1],[-77,7],[-107,1],[-95,0],[-1318,3],[-137,-2],[-51,2],[-5,0],[-58,1],[-18,2],[-17,-3],[-18,-1],[-24,4],[-33,-3],[-214,-1],[-82,2],[-4,0],[-22,0],[-21,0],[-94,-1],[-18,0],[-11,0],[-7,0],[-241,2],[-572,1],[-1,0],[-69,-1],[-85,1],[-56,-1],[-578,0],[-233,3],[-322,-1],[-337,1],[-102,0],[-109,0],[-83,0],[-100,0],[-115,0],[-927,-3],[-568,-2],[-1015,-3],[-232,0],[-167,-2],[-113,4],[-1022,-1],[-132,0],[-700,3],[-148,1],[-92,-2],[-79,0],[-1016,-10],[-183,-2],[-648,-6],[-169,-2],[-62,-1],[-606,-10],[-58,-1],[-76,-1],[-137,0],[-671,-8],[-484,-10],[-420,-1],[-129,-1],[-323,-1],[-128,0],[-2,0],[-747,-2],[-8,0],[-338,3],[-218,0],[-1,0],[-19,0],[-28,0],[-190,0],[-51,0],[-21,0],[-181,0],[-4,0],[-135,0],[-17,0],[-37,0],[-4,0],[-27,0],[-433,0],[-275,0],[-453,1],[-81,0],[-289,0],[-163,-1],[-422,-1],[-40,0],[-317,0],[-300,-1],[-336,0],[-1,0],[-75,0],[-56,0],[-108,1],[-202,3],[-248,3],[-479,3],[-320,3],[-1,0],[-37,0],[-135,0],[-290,0],[-290,0],[-85,0],[-734,1],[-105,0],[-340,0],[-128,0],[-18,0],[-214,0],[-183,0],[-23,0],[-103,0],[-161,0],[-70,0],[-372,0],[-1,0],[-324,0],[-137,0],[-30,0],[-301,1],[-55,0],[-285,0],[-39,0],[-47,-1]],[[99881,73096],[0,-98],[-1,-55],[0,-29],[3,-36],[1,-29],[2,-25],[-1,-23],[-3,-124],[0,-106],[-1,-26],[0,-28],[0,-46],[0,-43],[0,-85],[0,-37],[0,-16],[0,-40],[0,-26],[0,-23],[-1,-78],[-1,-57],[0,-107],[0,-34],[0,-66],[-1,-47],[1,-50],[0,-43],[0,-96],[1,-75],[0,-22],[1,-23],[0,-32],[1,-3],[0,-17],[1,-26],[0,-1],[0,-41],[0,-2],[0,-48],[-1,-185],[-1,-122],[-1,-113],[-2,-242],[-1,-88],[-2,-253],[-1,-167],[0,-80],[-1,-150],[0,-61],[0,-112],[0,-34],[0,-95],[0,-24],[0,-51],[0,-31],[0,-197],[0,-89],[-1,-226],[0,-145],[-2,-65],[-1,-73],[-1,-44],[-2,-58],[-3,-144],[0,-58],[0,-43],[0,-25],[1,-85],[2,-93],[2,-95],[3,-98],[0,-2],[0,-76],[0,-57],[0,-125],[0,-27],[0,-26],[-1,-81],[0,-100],[0,-125],[0,-81],[-1,-142],[0,-50],[0,-28],[0,-58],[0,-28],[0,-21],[0,-38],[0,-23],[-1,-26],[0,-60],[0,-60],[0,-58],[0,-29],[0,-37],[0,-15],[0,-68],[0,-32],[0,-34],[-1,-41],[0,-32],[0,-47],[0,-37],[0,-64],[0,-88],[0,-79],[0,-26],[-1,-113],[0,-77],[0,-103],[-1,-194],[0,-95],[0,-101],[0,-42],[0,-70],[-1,-43],[0,-38],[0,-52],[0,-32],[0,-31],[0,-16],[0,-42],[0,-65],[0,-42],[0,-18],[0,-36],[1,-39],[1,-64],[1,-61],[0,-5],[3,-161],[2,-92],[1,-60],[1,-78],[0,-29],[0,-42],[0,-60],[0,-41],[-1,-50],[-2,-345],[0,-17],[0,-38],[0,-1],[0,-29],[0,-39],[-1,-73],[0,-16],[0,-24],[-1,-180],[0,-2],[-1,-44],[0,-52],[0,-52],[-1,-128],[-1,-85],[0,-50],[0,-26],[0,-28],[0,-41],[-1,-56],[0,-24],[0,-33],[0,-33],[-1,-42],[0,-31],[0,-42],[0,-47],[-1,-31],[0,-16],[0,-49],[0,-40],[0,-27],[-1,-51],[0,-52],[0,-15],[0,-44],[-1,-77],[-1,-60],[1,-17],[0,-1],[0,-20],[-1,-115],[-1,-35],[0,-99],[-1,-61],[0,-85],[0,-40],[-1,-59],[0,-100],[-1,-39],[0,-49],[0,-27],[0,-57],[-1,-78],[0,-50],[0,-56],[-1,-43],[0,-26],[0,-19],[0,-102],[-1,-65],[0,-35],[0,-21],[0,-27],[0,-36],[0,-52],[-1,-27],[0,-48],[0,-36],[0,-66],[0,-23],[-1,-71],[0,-85],[0,-32],[0,-28],[0,-50],[0,-26],[0,-20],[-1,-22],[0,-29],[0,-42],[0,-51],[0,-47],[0,-93],[0,-15],[-1,-47],[0,-22],[0,-121],[0,-43],[0,-58],[-1,-32],[0,-65],[0,-8],[0,-44],[0,-53],[0,-62],[-1,-46],[0,-60],[0,-81],[0,-19],[0,-19],[0,-76],[-1,-38],[0,-172],[0,-178],[-1,-21],[0,-19],[-1,-261],[0,-86],[0,-124],[0,-53],[-1,-56],[0,-3],[0,-81],[0,-35],[-1,-67],[0,-16],[0,-170],[0,-46],[-1,-55],[0,-37],[0,-8],[0,-14],[0,-35],[0,-64],[0,-81],[0,-17],[0,-80],[2,-195],[2,-222],[1,-151],[2,-156],[0,-9],[0,-23],[0,-18],[1,-38],[0,-37],[1,-89],[0,-20],[0,-15],[0,-24],[0,-7],[1,-106],[0,-24],[1,-60],[1,-155],[1,-15],[3,-59],[0,-25],[0,-51],[1,-136],[0,-22],[0,-2],[0,-23],[0,-50],[0,-54],[-23,-2],[0,-39],[0,-44],[0,-35],[0,-65],[0,-41],[3,-71],[0,-27],[0,-57],[1,-82],[0,-47],[0,-30],[0,-78],[0,-44],[2,-124],[0,-141],[0,-28],[0,-54],[0,-63],[-1,-48],[0,-65],[0,-61],[0,-117],[0,-26],[0,-55],[0,-56],[0,-8],[0,-20],[0,-42],[0,-141],[0,-44],[-1,-33],[-1,-57],[-1,-17],[-3,-104],[-3,-69],[-1,-47],[0,-15],[-1,-114],[0,-50],[0,-120],[0,-29],[0,-66],[0,-35],[0,-20],[0,-96],[-1,-100],[0,-19],[0,-77]],[[99828,52527],[-135,0],[-22,0],[-256,0],[-26,0],[-113,0],[-10,0],[-82,0],[-237,0],[-6,0],[-45,0],[-98,0],[-25,0],[-33,0],[-44,0],[-47,0],[-49,0],[-47,-1],[-53,0],[-90,0],[-285,0],[-118,0],[-30,2],[-66,2],[-124,-1],[-371,0],[-177,0],[-3,0],[-52,-1],[-40,0],[-114,0],[-114,0],[-71,0],[-66,-1],[-119,0],[-85,0],[-97,0],[-17,0],[-23,0],[-46,0],[-209,0],[-22,0],[-80,0],[-107,0],[-143,0],[-284,0],[-262,0],[-441,0],[-96,0],[-382,0],[-230,0],[-15,0],[-123,0],[-271,0],[-294,-1],[-127,0],[-68,0],[-86,0],[-312,0],[-68,0],[-55,1],[-446,0],[-294,0],[-171,0],[-327,0],[-174,0],[-92,0],[-714,0],[-323,0],[-59,0],[-31,0],[-8,0],[-60,1],[-52,0],[-118,0],[-41,-1],[-83,0],[-196,0],[-103,0],[-256,0],[-315,0],[-548,0],[-224,0],[-770,-1],[-361,1],[-144,0],[-157,0],[-88,-1],[-574,0],[-513,0],[-244,0],[-71,0],[-432,0],[-184,0],[-651,0]],[[83893,52526],[-409,190],[-341,158],[-33,15],[-25,11],[-7,4],[-56,25],[-40,19],[-40,18],[-51,24],[-166,77],[-47,22],[-86,39],[-116,55],[-65,29],[-1,1],[-105,48],[-131,60],[-52,24],[-97,44],[-177,82],[-50,17],[-149,76],[-276,126],[-79,36],[-23,10],[-78,36],[-41,19],[-180,83],[-154,71],[-607,279],[-280,128],[-227,105],[-266,125],[-120,57],[-18,9],[-3,1],[-53,24],[-35,15],[-254,119],[-107,47],[-713,326],[-372,170],[-36,16],[-8,3],[-110,49],[-1115,510],[-347,159],[-577,264],[-56,28],[-146,67],[-208,95],[-269,123],[-112,51],[-20,9],[-50,24],[-228,107],[-39,18],[-49,23],[-56,26],[-192,85],[-168,74],[-122,55],[-28,0],[-83,38],[-18,8],[-171,79],[-59,26],[0,1],[-18,8],[-2,1],[-56,27],[-20,9],[-294,132],[-236,106],[-28,12],[-624,282],[-53,24],[-175,78],[-212,95],[-41,19],[-51,22],[-1,1],[-222,100],[-137,71],[-229,103],[-28,12],[-236,107],[-242,110],[-5,2],[-85,38],[-311,142],[-294,133],[-16,7],[-91,41],[-232,105],[-221,100],[-105,40],[-100,44],[-383,172],[-40,18]],[[37399,58472],[-399,-75],[-27,-5],[-81,-16],[-176,-33],[-79,-14],[-37,-7],[-114,-22],[-79,-15],[-440,-83],[-69,-13]],[[35898,58189],[-62,0],[-119,1],[-228,0],[-175,0],[-4,0],[-50,0],[-436,-1],[-20,0],[-155,0],[-149,0],[-307,0],[-501,0],[-70,-3],[-176,1],[-574,0],[-18,0],[-30,0],[-851,-1],[-23,1],[-46,0],[-24,0],[-118,-1],[-234,1],[-1003,-1],[-139,0],[-259,1],[-401,-2],[-169,0],[-124,6],[-221,-2],[-153,1],[-395,0],[-84,0],[-41,-2],[-43,0],[-232,3],[-208,0],[-717,-4],[-31,0],[-145,0],[-86,0],[-155,1],[-57,1],[-197,1],[-27,0],[-186,1],[-401,2],[-21,0],[-47,-3],[-229,0],[-120,0],[-168,-1],[-8,0],[-217,4],[-161,0],[-10,0],[-7,0],[-193,1],[-112,0],[-620,0],[-125,0],[-187,0],[-18,-1],[-20,0],[-170,0],[-12,0],[-278,0],[-97,0],[-85,7],[-56,0],[-106,1],[-82,1],[-188,2],[-193,-2],[-130,1],[-160,1],[-448,-1],[-145,0],[-337,1],[-65,0],[-65,-1],[-119,0],[-48,0]],[[21007,58203],[2,102],[-2,144],[-3,289],[-296,1],[-12,0],[-140,1],[-129,2],[-65,1],[-2,95],[-1,84],[-2,105],[-2,132],[-276,3],[-22,1],[1,29],[1,166],[-128,1],[-217,1],[0,222],[-300,3],[-3,210],[-318,1],[3,167],[-90,0],[-46,1],[-251,5],[2,129],[6,204],[0,89],[-260,0],[-65,0],[0,69],[-1,31],[1,48],[0,63],[-310,-1],[-10,107],[6,96],[-312,-2],[-1,108],[0,62],[1,38],[-75,0],[-238,1],[2,21],[-2,190],[-379,-2],[0,55],[-1,155],[-207,-8],[-94,1],[4,226],[-203,-2],[-112,0],[1,146],[1,62],[-153,0],[-115,-1],[-47,0],[2,191],[0,17],[-311,1],[0,96],[0,112],[-232,0],[-78,1],[-2,25],[-1,67],[-1,32],[-2,59],[-118,8],[-191,16],[0,6],[-12,9],[3,71],[2,62],[1,53],[-306,8],[0,186],[0,20],[0,1],[0,22],[0,16],[1,452],[0,20],[0,19],[0,159],[1,128],[0,14],[0,167],[0,73],[0,55],[1,202],[1,36],[5,22],[0,58],[0,74],[0,95],[0,42],[99,-1],[213,1],[67,0],[82,0],[0,81],[0,34],[-1,199],[0,33],[0,17],[-1,54],[0,46],[2,24],[1,50],[1,74],[0,108],[0,15],[-1,72],[0,20],[2,32],[-1,27],[0,4],[0,18],[4,106],[7,199],[1,27],[1,22],[2,148],[0,84],[-2,23],[-1,24],[2,145],[41,0],[162,0],[-2,185],[-3,221],[-4,300],[-4,320],[-1,81],[-2,117],[143,2],[23,0],[1,19],[0,85],[88,0],[71,0],[1,105],[-33,0],[9,46],[-14,-14],[-14,-16],[-18,-16],[-41,-33],[-20,-16],[-32,-24],[-21,-17],[-94,-72],[-120,-95],[-75,-58],[-52,-39],[-15,-12],[-15,-12],[-18,-14],[-63,-51],[-20,-15],[-26,-21],[-25,-20],[-2,-1],[-12,-9],[-32,-30],[-23,-21],[-17,-17],[-15,-18],[-26,-24],[-19,-19],[-15,-13],[-22,-20],[-74,-46],[-21,-13],[-92,-54],[-54,-32],[-63,-37],[-221,-131],[-213,-126],[-76,-47],[-17,-9],[-27,-14],[-17,-3],[-18,-3],[-30,-2],[-22,0],[-23,0],[-39,0],[-23,-2],[-24,2],[-32,-5],[-28,-10],[-24,-11],[-10,-13],[-5,-14],[0,-17],[-3,-22],[-5,-14],[-5,-19],[-5,-15],[-10,-29],[-5,-16],[-5,-15],[-9,-15],[-8,-15],[-12,-19],[-9,-15],[-9,-6],[-13,-8],[-7,-4],[-5,-3],[-6,-4],[-15,-9],[-10,-6],[-6,-3]],[[21007,58203],[-127,0],[-267,-1],[-60,0],[-45,-1],[-1,0],[-773,-1],[-365,1],[-409,-7],[-40,0],[-53,0],[-73,1],[-149,1],[-7,0],[-28,0],[-34,0],[-23,0],[-8,0],[-40,-1],[-1,0],[-43,0],[-31,-1],[-103,-1],[-104,-1],[-59,-1],[-74,0],[-19,-3],[-15,-2],[-41,-54],[-194,-245],[-102,-129],[-10,-14],[-285,-360],[-31,-39],[-30,-38],[-48,-61],[-48,-60],[-33,-58],[-38,-51],[-39,-52],[-24,-31],[-23,-31],[-16,-21],[-21,-28],[-11,-14],[-85,-113],[-31,-42],[-40,-53],[-38,-50],[-35,-48],[-35,-47],[-35,-47],[-16,-21],[-16,-21],[-32,-44],[-33,-43],[-10,-13],[-23,-31],[1,-92],[2,-188],[0,-47],[1,-44],[1,-168],[0,-24],[0,-21],[0,-43],[0,-43],[0,-15],[0,-15],[0,-19],[0,-14],[0,-15],[1,-24],[0,-25],[0,-102],[0,-34],[0,-36],[0,-5],[0,-17],[0,-34],[0,-28],[0,-43],[0,-21],[0,-44],[0,-31],[0,-26],[0,-97],[68,0],[60,0],[42,0],[27,0],[30,1],[33,0],[21,0],[175,1],[97,0],[33,1],[82,0],[121,0],[205,1],[73,1],[407,2],[13,0],[26,0],[26,1],[344,5],[0,-35],[1,-35],[0,-39],[0,-38],[1,-59],[0,-60],[1,-40],[0,-39],[0,-58],[0,-40],[0,-40],[0,-42],[1,-41],[0,-22],[0,-63],[0,-62],[0,-105],[0,-41],[0,-40],[0,-81],[1,-87],[0,-18],[0,-25],[0,-26],[0,-39],[0,-48],[0,-23],[-64,1],[-23,0],[0,-21],[0,-45],[0,-15],[0,-20],[-1,-78],[0,-78],[0,-37],[-1,-36],[0,-26],[0,-26],[0,-88],[-1,-100],[0,-105],[0,-22],[1,-27],[0,-27],[0,-30],[0,-30],[0,-27],[0,-62],[0,-73],[0,-40],[0,-41],[1,-15],[0,-15],[0,-23],[0,-23],[0,-64],[0,-63],[0,-41],[0,-40],[0,-22],[0,-22],[1,-22],[0,-45],[0,-38],[0,-45],[0,-29],[0,-34],[0,-130],[1,-130],[0,-22],[0,-21],[0,-28],[0,-27],[0,-21],[0,-28],[1,-28],[1,-44],[2,-35],[1,-36],[1,-38],[1,-39],[2,-51],[2,-51],[2,-371],[0,-35],[1,-35],[0,-71],[0,-49],[1,-48],[0,-59],[1,-59],[0,-44],[0,-45],[0,-31],[1,-32],[0,-81],[0,-63],[1,-41],[0,-42],[0,-66],[1,-67],[0,-11],[0,-10],[-2,-29],[-1,-30],[-1,-25],[-2,-25],[-4,-96],[-1,-127],[0,-28],[0,-25],[0,-3],[-1,-35],[2,-71],[0,-184],[0,-48],[0,-48],[0,-27],[0,-28],[0,-23],[-1,-48],[0,-43],[0,-42],[0,-27],[0,-28],[0,-3],[0,-45],[0,-2],[-1,-20],[-1,-19],[-1,-20],[0,-35],[-1,-35],[0,-40],[-1,-39],[0,-45],[-1,-45],[0,-34],[-49,0],[-38,0],[-39,0],[-147,1],[-163,0],[-64,1],[-278,1],[-31,0],[-31,0],[-1,0],[-35,0],[-36,0],[-62,1],[-99,0],[-19,0],[-75,0],[-4,0],[-441,-3],[-231,-2],[-48,0],[-59,-1],[-21,0],[-170,-1],[-18,-1],[-24,1],[-364,-1],[-120,-1],[-394,-1],[-320,-2],[-55,0],[-102,0],[-134,-1],[-29,0],[-83,2],[-50,1],[-230,4],[-127,3]],[[14252,48775],[-42,24],[-38,23],[-2818,1683],[-1,1]],[[11353,50506],[1,1],[22,30],[-1,18],[-4,75],[-3,291],[-1,95],[0,21],[-2,208],[0,11],[-3,522],[5,199],[-2,119],[0,18],[-311,1],[-6,171],[-8,220],[-3,111],[-7,246],[-9,344],[-2,61],[3,98],[-130,0],[-310,2],[-191,1],[2,-43],[-112,0],[-21,0],[-186,1],[1,44],[0,13],[3,180],[0,29],[-1,147],[0,1],[0,46],[46,0],[-1,38],[-3,226],[-3,264],[-2,94],[-150,-2],[0,183],[0,28],[-104,-5],[-45,-1],[-1,98],[1,234],[-2,88],[-70,0],[-232,-1],[1,112],[6,207],[-1,54],[0,47],[296,2],[2,136],[6,374],[2,86],[2,150],[2,109],[3,143],[0,39],[308,-1],[5,137],[5,153],[0,17],[4,103],[166,0],[44,0],[3,0],[70,1],[55,0],[74,0],[18,0],[468,3],[2,33],[1,18],[72,0],[0,51],[120,0],[72,0],[55,0],[224,-1],[80,0],[4,132],[0,201],[1,83],[0,102],[-12,0],[1,105],[0,111],[-1,26],[0,29],[-8,166],[0,73],[0,46],[-2,254],[-125,0],[-24,0],[-19,0],[-186,2],[-27,0],[-229,0],[3,14],[-470,2],[-108,0],[-24,1],[-169,3],[-35,0],[-25,0],[-3,0],[-281,0],[-56,0],[-58,0],[-323,4],[-31,0],[-8,0],[-78,0],[-30,0],[-121,1],[-101,0],[-298,3],[-1,0],[-246,-1],[-89,0],[-80,0],[-158,0],[-33,0],[-129,0],[-77,1],[-60,0],[-166,0],[-89,1],[-55,0]],[[7650,58363],[25,31],[14,24],[-2,18],[-20,12],[-12,15],[-12,15],[-3,25],[4,31],[2,24],[-14,21],[-17,3],[-22,11],[-30,11],[-14,9],[-7,17],[13,18],[-1,16],[-8,23],[-5,14],[-17,13],[-5,33],[-2,19],[3,15],[9,19],[0,19],[-6,18],[-4,18],[-10,17],[-4,16],[10,18],[-3,16],[-12,19],[2,19],[-8,21],[-11,26],[-7,16],[14,22],[-3,20],[-9,22],[-21,14],[-16,8],[-20,12],[-32,11],[-17,12],[-37,24],[-19,23],[-13,17],[-8,13],[-12,30],[4,15],[5,19],[0,15],[6,18],[-36,19],[-8,19],[15,11],[17,17],[22,8],[7,29],[7,20],[24,12],[17,23],[9,15],[16,15],[16,26],[3,26],[13,43],[-1,16],[19,14],[19,16],[8,19],[11,13],[14,12],[2,17],[3,19],[-1,43],[1,18],[-3,22],[8,16],[0,19],[3,17],[-22,17],[-8,17],[-2,19],[-13,14],[-21,0],[-25,0],[-242,0],[-68,0],[-362,1],[-236,0],[-111,0],[-66,-1],[-155,0],[-156,-2],[-2,1],[-135,47],[-62,22],[-27,10],[-88,32],[-62,22],[-187,66],[-1,1],[-14,13],[-52,60],[-40,48],[-257,300],[-15,17],[-59,67],[-63,76],[-11,12]],[[4941,60721],[98,22],[480,98],[170,34],[45,9],[109,23],[36,7],[62,12],[94,20],[32,12],[21,8],[53,20],[19,5],[16,6],[69,25],[93,38],[54,14],[190,68],[225,81],[44,16],[88,32],[132,47],[22,9],[27,9],[173,62],[37,13],[151,54],[25,9],[36,13],[50,17],[45,17],[46,16],[37,13],[20,7],[29,11],[41,15],[197,70],[40,15],[160,57],[112,41],[114,41],[54,19],[84,30],[161,57],[74,26],[57,24],[73,91],[38,47],[42,52],[41,52],[24,30],[23,28],[44,56],[44,51],[61,76],[29,35],[11,18],[103,128],[87,109],[2,3],[17,21],[40,51],[230,286],[364,454],[45,57],[69,85],[24,31],[16,19],[79,98],[155,195],[37,46],[21,26],[108,135],[30,37],[12,14],[149,184],[293,362],[268,330],[172,212],[58,72],[67,83],[11,14],[40,49],[18,22],[39,47],[10,13],[24,30],[81,100],[30,37],[43,52],[24,31],[1,0],[15,19],[14,17],[40,50]],[[7650,58363],[-428,1],[-197,0],[-535,2],[-24,0],[-73,0],[-27,0],[-38,0],[-20,0],[-275,3],[-41,0],[-164,-2],[-154,-10],[-78,-4],[-65,-4],[-145,0],[-20,0],[-25,-1],[-120,1],[0,3],[-192,0],[-104,0],[-114,0],[-292,0],[-52,0],[-55,0],[-38,0],[-27,0],[-7,0],[-3,0],[-14,-1],[-24,-1],[-20,0],[0,27],[0,1],[0,50],[0,38],[-1,93],[-117,0],[-34,0],[0,25],[0,27],[0,53],[0,35],[0,18],[0,30],[0,12],[0,7],[-20,0],[-1,0],[-30,0],[-35,0],[-55,-1],[-58,0],[-3,-11],[-1,0],[-29,1],[0,10],[-43,0],[-2,0],[-33,0],[-21,0],[-20,0],[-62,-1],[-8,0],[-152,0],[-3,0],[-40,0],[-18,-1],[-38,0],[-16,0],[-38,0],[-70,0],[-82,-1],[-144,-1],[-39,-1],[-12,0],[-26,0],[-22,0],[-25,-1],[-19,0],[-116,-1],[-21,0],[-83,-1],[-33,0],[-36,-1],[-52,-2],[-23,1],[-29,0],[-74,-1],[-69,-1],[-97,-1],[-42,-1],[-81,-1],[-79,0],[-70,0],[-1,0],[-157,-1],[-71,0],[-271,-1],[-16,0],[-128,0],[-3,0],[-204,-1],[-131,0],[-226,0],[-1,0],[-722,0],[-17,0],[-41,0]],[[68,58747],[-14,756]],[[83893,52526],[0,-103],[0,-249],[0,-171],[0,-225],[0,-62],[0,-71],[0,-18],[0,-294],[0,-16],[0,-15],[0,-103],[0,-53],[0,-104],[0,-61],[0,-69],[0,-49],[0,-15],[0,-22],[0,-89],[0,-74],[0,-118],[0,-23],[0,-110],[0,-145],[0,-98],[0,-15],[0,-110],[-1,-52],[0,-70],[0,-16],[0,-213],[0,-99],[0,-43],[0,-205],[0,-59],[0,-68],[1,-359],[0,-265],[0,-47],[0,-185],[0,-157],[-1,-89],[0,-72],[0,-118],[-2,-303],[0,-103],[0,-84],[0,-170],[0,-20],[0,-59],[0,-14],[0,-73],[0,-100],[0,-37],[0,-15],[0,-117],[0,-155],[0,-33],[0,-19],[1,-67],[1,-138],[0,-239],[1,-209],[0,-44],[0,-76],[0,-14],[0,-25],[0,-132],[0,-223],[0,-58],[0,-123],[0,-83],[0,-73],[0,-2],[0,-65],[0,-29],[0,-181],[0,-143],[0,-67],[0,-160],[0,-182],[0,-55],[0,-30],[0,-13],[0,-75],[0,-47],[0,-77],[0,-38],[0,-22],[0,-88],[0,-137],[0,-85],[0,-46],[-58,-5],[-58,0],[-38,0],[-331,0],[-36,0],[-44,0],[-325,0],[-151,1],[-39,0],[-26,0],[-702,0],[-287,0],[-143,0],[-245,0],[-53,0],[-85,0],[-212,0],[-31,0],[-79,0],[-51,0],[-380,-1],[-69,0],[-28,0],[-476,0],[-186,0],[-56,-1],[-35,-1],[-138,1],[-6,0],[-1141,4],[-331,1],[-41,0],[-128,0],[-275,-6],[-234,0],[-186,1],[-281,0],[-21,0],[-2,0],[-31,0],[-1,0],[-606,2],[-26,0],[-297,1],[-55,0],[-203,0],[-151,-1],[-967,5],[-19,0],[-140,0],[-94,0],[-275,0],[-33,0],[-94,0],[-3,0],[-109,0],[-56,0],[-75,0],[-217,0],[-110,0],[-87,0],[-290,-1],[-75,0],[-48,0],[-386,0],[-159,0],[-123,0],[-99,0],[-19,0],[-35,0],[-676,0],[-241,-1],[-508,0],[-75,-1],[-216,0],[-20,0],[-449,-1],[-9,0],[-262,0],[-102,0],[-213,-4],[-302,-1],[-2,-190],[0,-26],[-3,-213],[-2,-185],[-1,-25],[-1,-84],[2,-40],[6,-185],[4,-107],[8,-219],[0,-46],[-1,-129],[-2,-182],[-6,-633],[-3,-245],[0,-75],[-4,-403],[-1,-49],[0,-32],[-3,-255],[-2,-197],[-3,-353],[-2,-194],[0,-38],[-2,-165],[0,-25],[0,-53],[0,-43],[0,-137],[-1,-134],[0,-35],[0,-150],[0,-44],[0,-116],[0,-103],[0,-47],[0,-325],[0,-23],[0,-124],[0,-111],[0,-138],[0,-42],[-1,-161],[0,-198],[0,-83],[0,-5],[0,-77],[0,-35],[0,-107],[0,-367],[0,-53],[0,-173],[-1,-685],[-10,-641],[-1,-102],[0,-38],[-1,-41],[-2,-265],[-1,-147],[-2,-159],[0,-80],[-1,-82],[0,-1],[-2,-198],[0,-35],[10,-90],[0,-3],[3,-202],[1,-63],[0,-29],[10,-883],[0,-23],[0,-1],[1,-103],[0,-28],[-14,-206],[-10,-155],[0,-27],[-1,-192],[0,-114],[0,-217],[0,-300],[0,-218],[0,-57],[0,-118],[0,-44],[0,-351],[0,-94],[-1,-54],[3,-375],[0,-72],[0,-32],[2,-554],[1,-133],[1,-376],[0,-85],[-7,-159],[0,-163],[0,-237],[0,-186],[0,-529],[19,-387],[13,-284],[0,-189],[-41,-280]],[[68878,26305],[3,-83],[0,-27],[1,-61],[0,-60],[0,-17],[1,-128],[1,-102],[1,-53],[2,-157],[2,-148],[0,-181],[0,-249],[2,-149],[0,-104],[2,-209],[1,-78],[3,-221],[1,-206],[0,-26],[1,-62],[0,-28],[2,-215],[0,-4],[1,-81],[1,-207],[1,-206],[0,-41],[0,-383],[0,-235],[0,-25],[0,-166],[0,-377],[0,-66],[0,-120],[0,-69],[0,-135],[0,-91],[0,-38],[0,-50],[0,-31],[1,-126],[4,-895],[0,-85],[-1,-255],[0,-162],[-1,-141],[0,-165],[-2,-440],[-1,-300],[-2,-454],[0,-158],[0,-99],[0,-46],[-1,-331],[-1,-186],[0,-26],[0,-158],[-1,-294],[-1,-308],[0,-54],[3,-306],[23,-1824],[4,-318]],[[68928,14285],[-3009,1990],[-292,193],[-37,24],[-250,164],[-834,544],[-180,117],[-257,168],[-2868,1873],[-1001,654],[-135,88],[-2328,1520],[-554,362],[-1047,684],[-4547,2924],[-3976,2558]],[[47613,28148],[0,72],[1,122],[2,72],[3,148],[0,73],[0,156],[0,147],[0,118],[-1,510],[0,274],[-1,308],[1,202],[-1,28],[1,373],[0,8],[0,11],[0,39],[0,48],[0,23],[1,119],[0,33],[0,234],[0,31],[0,88],[0,42],[-1,91],[0,53],[1,41],[0,159],[0,320],[1,40],[1,259],[0,292],[0,175],[0,74],[0,75],[0,38],[0,43],[-1,197],[0,31],[0,122],[1,163],[0,20],[1,211],[-3,86],[0,343],[0,114],[0,279],[0,42],[3,174],[0,20],[0,8],[-1,12],[-1,47],[0,26],[0,22],[0,30],[0,46],[0,1],[0,115],[1,148],[0,302],[-1,58],[-7,20],[1,107],[0,187],[1,64],[0,53],[0,17],[0,41],[1,95],[0,26],[0,96],[0,21],[1,61],[0,27],[0,25],[0,60],[0,581],[0,275],[0,31],[0,31],[-3,136],[-5,232],[-2,103],[2,56],[2,53],[0,44],[2,211],[1,95],[1,16],[1,93],[0,261],[-1,113],[0,29],[1,51],[0,115],[-1,82],[0,25],[0,23],[7,16],[0,29],[0,20],[0,110],[0,410],[0,299],[0,198],[0,97],[0,28],[0,110],[0,485],[5,392],[3,866],[2,336],[2,19],[-7,173],[-7,25],[-73,56],[-313,242],[-177,137],[-122,94],[-46,36],[-86,68],[-25,19],[-10,8],[-16,13],[-31,22],[-115,-1],[-251,-2],[1,135],[1,32],[1,86],[-3,16],[-9,22],[-61,46],[-1,1],[-14,11],[-46,36],[-22,12],[-12,7],[-22,15],[-26,22],[-44,33],[-46,35],[-150,116],[-154,118],[-62,47],[-256,194],[-102,85],[-203,151],[-19,15],[-143,108],[-73,54],[-7,6],[-191,143],[-248,186],[-348,277],[-22,17],[-57,43],[-366,277],[-20,14],[-50,38],[-10,7],[-507,389],[-78,60],[-65,52],[-63,49],[-235,185],[-109,86],[-1,0],[-52,41],[0,1],[-76,59],[-113,89],[-270,204],[-120,93],[-15,11],[-41,32],[-21,16],[-15,11],[-40,31],[-41,31],[-93,69],[-15,12],[-146,111],[-86,66],[-111,84],[-95,73],[-310,236],[-82,62],[-88,67],[-21,16],[-110,82],[-172,130],[-144,109],[-329,267],[-65,49],[-234,176],[-50,38],[-265,201],[-240,181],[-193,146],[-1,0],[-43,33]],[[38816,49618],[-21,16],[-248,188],[-53,42],[-158,119],[0,1],[-11,8],[-15,0],[-57,43],[-129,98],[-15,11],[-90,69],[-207,156],[-200,150],[-193,147],[-194,146],[-175,132],[-28,22],[-54,40],[-15,12],[-40,30],[-60,45],[-165,125],[-149,113],[-240,182],[-24,19],[-44,33],[-232,176],[-47,37],[-158,118],[-54,40],[-23,16],[-490,370],[-394,297],[-235,176],[0,1],[-55,40],[-117,88],[-100,76],[-18,14],[-42,32],[-17,12],[-394,298],[-115,86],[-118,89],[-45,33],[-290,217],[-313,235],[-196,148],[-65,48],[-459,343],[-322,242],[-6,4],[-213,160],[-185,139],[-266,200],[-67,50],[-99,74],[-186,139],[-126,94],[-328,245],[-58,43],[-15,11],[-26,19],[-7,54],[0,16],[0,75],[0,142],[0,10],[0,20],[0,143],[0,100],[0,273],[0,183],[0,145],[138,28],[148,30],[57,10],[115,21],[251,48],[373,70],[96,19],[32,3],[164,31],[200,38],[497,95],[145,28],[232,44],[298,57],[7,1],[37,8],[7,2],[125,23],[297,56],[53,11],[51,9],[296,53],[223,46],[39,7],[270,51],[261,50],[459,86],[115,22],[33,6],[348,66],[104,20],[77,14]],[[11353,50506],[-2767,1637],[-605,358],[-239,142],[-50,29],[-540,320],[-80,47],[-1847,1087],[-1166,686],[-228,135],[-1815,1069],[-287,168],[-633,372],[-126,74],[-844,496],[-17,10],[-23,916],[-1,49],[-17,646]],[[38816,49618],[-156,-114],[-95,-71],[-88,-65],[-125,-92],[-15,-11],[-19,-14],[-249,-183],[-18,-13],[-115,-83],[-123,-90],[-44,-32],[-93,-69],[-29,-23],[-55,-40],[-17,-12],[-81,-61],[-22,-17],[-59,-44],[-45,-31],[-23,-17],[-47,-35],[-28,-20],[-39,-31],[-24,-18],[-19,-13],[-12,-10],[-17,-12],[-15,-11],[-35,-27],[-3,-1],[-39,-29],[-41,-30],[-30,-22],[-29,-22],[-17,-12],[-50,-37],[-14,-10],[-17,-11],[-58,-44],[-16,-11],[-23,-17],[-14,-11],[-41,-30],[-38,-28],[-16,-12],[-23,-18],[-13,-9],[-26,-19],[-32,-24],[-20,-15],[-14,-11],[-19,-14],[-14,-10],[-14,-10],[-17,-13],[-22,-17],[-68,-50],[-17,-13],[-56,-41],[-47,-35],[-23,-17],[-25,-19],[-22,-16],[-28,-21],[-16,-12],[-18,-13],[-22,-17],[-18,-13],[-45,-33],[-91,-68],[-39,-29],[-90,-67],[-86,-63],[-20,-17],[-34,-25],[-70,-52],[-27,-20],[-18,-13],[-16,-12],[-108,-81],[-39,-29],[-38,-28],[-15,-11],[-117,-88],[-142,-106],[-23,-17],[-74,-56],[-65,-48],[-34,-26],[-78,-59],[-18,-13],[-79,-59],[-52,-39],[-14,-10],[-14,-11],[-15,-11],[-14,-11],[-496,-369],[-220,-165],[-30,-23],[-17,-13],[-36,-27],[-151,-114],[-1,0],[-21,-16],[-19,-10],[-305,-225],[-255,-188],[-72,-54],[-221,-163],[-115,-85],[-74,-53],[-84,-65],[-158,-115],[-19,-11],[-89,-73],[-21,-16],[-67,-55],[-29,-23],[-120,-91],[-56,-42],[-163,-124],[-38,-29],[-9,-7],[-40,-30],[-105,-80],[-55,-50],[-292,-216],[-74,-54],[-19,-14],[-120,-88],[-204,-151],[-121,-89],[-194,-143],[-114,-84],[-256,-188],[-43,-32],[-169,-125],[-33,-24],[-35,-25],[-39,-29],[-40,-30],[-47,-34],[-18,-13],[-145,-124],[-108,-93],[-24,-24],[-13,-10],[-29,-22],[-15,-11],[-57,-43],[-117,-89],[-134,-102],[-45,-34],[-239,-180],[-102,-77],[-76,-58],[-28,-21],[-28,-22],[-62,-47],[-62,-47],[-63,-48],[-62,-47],[-46,-35],[-46,-35],[-121,-91],[-54,-41],[-35,-28],[-37,-27],[-35,-27],[-45,-34],[-44,-34],[-89,-67],[-187,0],[-175,0],[-51,-1],[-133,1],[-78,0],[-78,1],[-75,0],[-75,1],[-54,0],[-51,0],[-24,0],[-23,0],[-30,0],[-31,0],[-49,38],[-85,-2],[-86,-2]],[[26464,41366],[-115,71],[-263,161],[-4100,2514],[-1710,1031],[-2524,1521],[-38,23],[-922,556],[-638,385],[-1902,1147]],[[99828,52527],[0,-29],[0,-61],[0,-29],[0,-125],[-1,-124],[0,-113],[0,-86],[0,-70],[0,-112],[-1,-47],[0,-60],[0,-35],[0,-7],[-1,-81],[-1,-241],[0,-134],[-1,-123],[0,-15],[-1,-126],[5,-191],[1,-52],[0,-48],[-3,-98],[-5,-134],[-1,-24],[0,-81],[0,-3],[0,-40],[-1,-56],[-1,-190],[2,-121],[-1,-422],[0,-107],[2,-105],[-3,-46],[1,-39],[1,-27],[1,-20],[1,-141],[2,-31],[-2,-19],[0,-136],[3,-148],[0,-168],[-1,-113],[4,-76],[0,-67],[1,-126],[0,-16],[0,-1],[1,-146],[1,-85],[0,-169],[2,-240],[0,-23],[1,-198],[1,-210],[0,-41],[0,-82],[1,-77],[0,-66],[0,-95],[-4,-83],[-4,-49],[-4,-79],[2,-186],[0,-110],[0,-41],[1,-367],[0,-81],[1,-41],[-1,-106],[0,-154],[0,-206],[1,-156],[-1,-152],[0,-15],[-2,-171],[-1,-93],[1,-60],[-1,-152],[0,-196],[0,-94],[-1,-111],[-1,-221],[0,-133],[0,-111],[0,-431],[1,-127],[0,-35],[-4,-22],[1,-52],[2,-245],[2,-276],[0,-1],[0,-69],[2,-186],[2,-254],[0,-29],[1,-148],[2,-180],[0,-67],[0,-38],[1,-149],[-3,-92],[-2,-107],[1,-214],[2,-66],[5,-136],[-2,-122],[0,-2],[0,-38],[0,-16],[-1,-32],[8,-83],[13,-120],[-4,-70],[-4,-59],[-4,-78],[-1,-55],[-2,-122],[0,-36],[-1,-23],[-4,-76],[-5,-108],[-15,-97],[-4,-41],[-3,-15],[-5,-34],[-2,-20],[-1,-16],[-1,-55],[2,-64],[-1,-73],[-1,-78],[-1,-43],[0,-58],[0,-12],[0,-17],[-2,-119],[0,-8],[0,-7],[-1,-60],[0,-16],[0,-104],[-1,-82],[0,-215],[1,-26],[0,-181],[-1,-21],[-2,-129],[-1,-50],[0,-42],[-1,-38],[-1,-103],[-1,-24],[1,-36],[0,-21],[-1,-104],[-1,-247],[0,-17],[0,-24],[-1,-27],[-7,-145],[0,-66],[0,-47],[0,-156],[0,-124],[0,-5],[-1,-126],[1,-96],[1,-157],[1,-87],[0,-18],[2,-197],[1,-22],[0,-93],[0,-96],[0,-36],[-1,-114],[1,-36],[0,-124],[0,-82],[0,-37],[0,-9],[0,-19],[1,-144],[0,-63],[0,-144],[2,-44],[1,-163],[3,-56],[2,-40],[6,-95],[0,-149],[0,-59],[0,-204],[0,-48],[-1,-156],[0,-40],[-2,-22],[1,-149],[0,-63],[0,-23],[1,-97],[0,-24],[0,-207],[0,-17],[1,-135],[1,-72],[1,-183],[1,-23],[-4,-114],[-2,-94],[-1,-38],[3,-154],[1,-15],[1,-205],[-1,-111],[6,-230],[-3,-56],[-4,-498],[-1,-155],[0,-3],[4,-173],[-4,-96],[0,-41],[-1,-26],[-4,-192],[4,-81],[1,-102],[-5,-110],[-1,-23],[-5,-177],[-5,-123],[11,-96],[8,-95],[-1,-31],[2,-120],[4,-210],[2,-305],[7,-193],[-1,-107],[3,-132],[2,-191],[11,-609],[-2,-85],[0,-17],[0,-40],[-1,-97],[-5,-540],[-1,-115],[3,-289],[0,-455]],[[99820,26319],[-64,0],[-51,0],[-30,0],[-24,0],[-27,0],[-198,1],[-27,-1],[-26,1],[-86,1],[-122,1],[-68,1],[-118,0],[-183,0],[-155,0],[-202,0],[-399,0],[-74,0],[-76,0],[-55,0],[-219,0],[-25,0],[-5,0],[-40,0],[-17,0],[-175,0],[-73,0],[-288,-1],[-79,1],[-102,0],[-543,1],[-20,0],[-237,1],[-438,1],[-76,0],[-68,0],[-183,0],[-94,1],[-41,0],[-18,0],[-18,0],[-47,0],[-168,0],[-41,0],[-28,0],[-22,0],[-183,1],[-102,0],[-38,0],[-36,0],[-86,0],[-152,0],[-94,0],[-74,0],[-224,1],[-191,0],[-38,0],[-88,0],[-20,0],[-41,0],[-22,0],[-30,0],[-263,0],[-731,1],[-91,0],[-61,0],[-66,0],[-72,0],[-44,0],[-86,0],[-212,0],[-138,0],[-151,0],[-26,0],[-97,0],[-176,-1],[-108,0],[-182,0],[-217,-1],[-166,-1],[-88,0],[-264,-1],[-27,0],[-22,0],[-299,-1],[-127,-1],[-18,0],[-47,0],[-1,0],[-243,0],[-58,0],[-157,0],[-146,1],[-173,1],[-71,0],[-90,1],[-185,1],[-32,0],[-296,1],[-91,0],[-139,0],[-1,55],[-2,49],[0,34],[-286,-1],[-53,-1],[-66,0],[-248,2],[-44,-2],[-175,0],[-79,0],[-240,1],[-26,0],[-99,0],[-234,0],[-260,-1],[-53,0],[-52,1],[-24,0],[-106,0],[-120,0],[-65,-1],[-221,-1],[-5,0],[-14,0],[-51,-1],[-253,2],[-61,-2],[-246,2],[-165,1],[-70,0],[-129,0],[-31,0],[-125,0],[-92,0],[-54,-1],[-177,0],[-264,-1],[-74,0],[-127,0],[-179,0],[-172,0],[-129,-1],[-408,-1],[-34,0],[-148,0],[-42,0],[-30,0],[-228,2],[-669,1],[-23,0],[-222,0],[-229,1],[-71,0],[-295,-1],[-6,0],[-71,0],[-223,2],[-127,0],[-112,-1],[-152,1],[-214,0],[-303,2],[-39,0],[-264,0],[-26,0],[-92,-1],[-108,0],[-59,0],[-190,1],[-155,0],[-148,0],[-303,-1],[-298,1],[-294,-1],[-609,0],[-277,0],[-51,0],[-4,0],[-146,0],[-69,0],[-3,0],[-54,-1],[-192,1],[-32,0],[-79,0],[-19,0],[-279,-2],[-84,1],[-73,0],[-144,0],[-19,0],[-53,0],[-593,0],[-240,0],[-302,-1],[-301,0],[-246,-1],[-3,0],[-45,0],[-48,0],[-39,0],[-215,1],[-58,0],[-246,-1],[-77,0],[-221,0],[-24,0],[-170,-1],[-110,-1],[-303,-1],[-108,0],[-179,0],[-227,-1],[1,-96],[1,-64],[-373,1],[-98,0],[-35,0],[-60,0],[-305,0],[-280,1],[-20,0],[-27,0],[-283,2],[-165,-2],[-295,1],[-126,0],[-127,0],[-184,-1],[-28,0],[-28,0],[-94,1],[-2,0],[-87,1]],[[47613,28148],[-2006,1270],[-976,617],[-462,291],[-2379,1502],[-5349,3375],[-134,84],[-1069,661],[-126,78],[-442,273],[-701,434],[-1506,932],[-543,336],[-1521,942],[-1820,1121],[-2115,1302]],[[99820,26319],[4,-211],[0,-51],[-1,-18],[0,-53],[0,-27],[0,-1],[0,-19],[0,-5],[0,-33],[1,-57],[0,-30],[2,-110],[0,-8],[0,-30],[0,-14],[2,-208],[-3,-127],[-5,-287],[1,-28],[1,-44],[3,-90],[1,-41],[-1,-207],[2,-210],[3,-100],[3,-109],[5,-181],[1,-28],[9,-296],[2,-69],[7,-250],[5,-207],[1,-23],[4,-167],[1,-27],[9,-270],[4,-132],[2,-64],[4,-148],[4,-156],[7,-258],[0,-40],[0,-167],[2,-28],[1,-28],[7,-155],[2,-103],[2,-111],[7,-77],[13,-131],[9,-101],[2,-104],[2,-204],[1,-194],[1,-226],[-3,-206],[-2,-206],[0,-36],[1,-69],[-2,-18],[-5,-83],[-3,-54],[-7,-153],[-12,-211],[0,-63],[-1,-142],[12,-196],[-1,-40],[-4,-74],[-11,-103],[-2,-42],[-3,-57],[0,-15],[-2,-48],[-2,-41],[0,-80],[1,-126],[3,-48],[10,-165],[9,-126],[4,-53],[2,-27],[-3,-197],[-1,-119],[0,-182],[1,-38],[0,-89],[0,-41],[1,-20],[0,-49],[0,-4],[-83,-22],[-47,-21],[-34,-8],[-44,-12],[-39,-16],[-44,-40],[-58,-69],[-4,-5],[-23,-31],[-37,-52],[-59,-85],[-43,-92],[-41,-53],[-62,-110],[-31,-50],[-37,-31],[-35,-30],[-32,-33],[-8,-16],[-21,-42],[-3,-6],[-29,-53],[-53,-111],[-22,-48],[-37,-17],[-21,-4],[-117,0],[-144,-56],[-36,-20],[-5,-2],[-40,-44],[-13,-36],[-2,-38],[1,-1],[11,-24],[29,-28],[22,-10],[47,-20],[46,-46],[8,-25],[-17,-23],[-39,-34],[-29,-28],[-21,-21],[-23,-24],[-25,-43],[-48,-103],[-31,-38],[-65,-63],[-32,-52],[-29,-46],[-30,-67],[-17,-53],[0,-1],[5,-40],[12,-46],[6,-26],[0,-21],[-15,-38],[-23,-39],[-19,-18],[-38,-14],[-35,-11],[-9,-3],[-26,-14],[-17,-19],[-1,-31],[0,-4],[2,-28],[-5,-19],[-32,-29],[-40,-24],[-19,-5],[-34,0],[-22,9],[-44,17],[-65,19],[-32,5],[-21,3],[-38,2],[-89,-5],[-22,1],[-24,-1],[-27,-7],[-52,-26],[-47,-15],[-61,-15],[-90,-37],[-43,-8],[-105,-19],[-19,0],[-50,-17],[-31,1],[-76,-17],[-23,-9],[-27,-3],[-19,3],[-32,-7],[-36,3],[-45,-5],[-47,-4],[-14,4],[-23,6],[-26,2],[-25,-7],[-37,-15],[-3,-1],[-26,-4],[-33,2],[-25,3],[-4,4],[-17,14],[-17,6],[-22,5],[-28,-1],[-29,1],[-15,8],[-23,19],[-38,20],[-41,15],[-145,66],[-48,27],[-34,26],[-26,34],[-25,36],[-19,32],[-11,25],[6,59],[-11,41],[-22,25],[-24,11],[-27,3],[-38,-6],[-34,-4],[-24,4],[-74,30],[-66,12],[-49,21],[-17,25],[-26,32],[-42,24],[-44,15],[-40,3],[-123,-6],[-5,-1],[-55,10],[-28,20],[-14,21],[1,21],[13,31],[7,11],[12,17],[36,20],[47,31],[27,25],[25,37],[4,22],[-11,16],[-10,21],[-14,40],[-12,22],[-103,90],[-35,38],[-30,28],[-35,20],[-30,23],[-21,30],[-9,20],[-14,18],[-19,12],[-15,14],[-25,27],[-30,14],[-36,2],[-1,0],[-43,5],[-18,6],[-14,14],[-14,18],[-16,20],[-26,13],[-36,30],[-27,35],[-42,38],[-59,37],[-64,36],[-40,21],[-41,22],[-29,16],[-27,23],[-65,67],[-18,32],[-31,31],[-11,21],[-8,13],[-28,25],[-26,8],[-15,4],[-18,4],[-27,-2],[-22,-9],[-24,-13],[-32,-10],[-25,0],[-114,23],[-101,23],[-27,7],[-41,10],[-65,11],[-56,6],[-9,0],[-50,1],[-45,-6],[-58,-21],[-49,-34],[-32,-32],[-50,-45],[-48,-25],[-83,-42],[-58,-29],[-19,-9],[-67,-29],[-71,-34],[-22,-4],[-19,5],[-44,30],[-26,18],[-16,11],[-42,54],[-22,40],[-23,23],[-41,17],[-61,6],[-50,-2],[-52,-8],[-160,-89],[-94,-42],[-20,-5],[-44,-11],[-70,-8],[-117,-21],[-50,-1],[-49,9],[-41,19],[-22,20],[-9,25],[-3,23],[13,19],[21,25],[9,7],[25,18],[32,17],[36,11],[18,22],[-4,24],[-13,18],[-119,74],[-52,13],[-51,3],[-43,-8],[-157,-30],[-17,-2],[-27,-4],[-38,-1],[-20,5],[-8,14],[-2,4],[-27,14],[-51,17],[-28,5],[-67,1],[-27,-4],[-32,-7],[-28,-5],[-6,-1],[-21,4],[-37,7],[-37,12],[-20,2],[-33,-7],[-9,-3],[-32,-11],[-78,-2],[-73,5],[-34,-1],[-54,-15],[-46,-17],[-30,-24],[-31,-17],[-51,-6],[-21,-7],[-44,-17],[-37,-10],[-48,-6],[-6,-1],[-57,-17],[-27,-14],[-103,-68],[-85,-50],[-6,-3],[-60,-26],[-37,-8],[-25,2],[-25,7],[-37,21],[-27,36],[-27,41],[-54,51],[-23,16],[-34,5],[-16,-12],[-18,-21],[-55,-53],[-18,-9],[-24,-2],[-31,-4],[-31,-20],[-63,-25],[-55,-31],[-45,-18],[-64,-34],[-43,-29],[-39,-59],[-24,-27],[-42,-26],[-23,-3],[-57,-1],[-46,-1],[-17,-7],[-16,-8],[-21,-11],[-25,-24],[-13,-10],[-17,-13],[-23,-14],[-25,-8],[-24,-2],[-29,4],[-23,12],[-21,10],[-17,7],[-25,7],[-35,8],[-34,-1],[-15,-7],[-15,-11],[-18,-10],[-20,-5],[-65,-17],[-24,-7],[-27,-3],[-24,0],[-21,-4],[-20,-6],[-29,-3],[-18,-1],[-50,1],[-17,0],[-31,-1],[-18,-2],[-33,-4],[-96,-13],[-94,-12],[-42,-6],[-28,-9],[-17,-7],[-41,-24],[-57,-34],[-41,-26],[-65,-36],[-49,-47],[-16,-12],[-13,-10],[-14,-17],[-9,-14],[-8,-13],[-7,-22],[1,-23],[5,-30],[17,-26],[23,-21],[24,-18],[29,-21],[37,-30],[42,-20],[28,-21],[21,-27],[2,-19],[18,-34],[18,-43],[67,-48],[13,-34],[3,-32],[-10,-15],[-33,-27],[-30,-19],[-37,-33],[-14,-32],[0,-8],[-3,-36],[9,-39],[15,-25],[20,-8],[19,-1],[26,6],[27,3],[21,0],[18,-2],[16,-7],[32,-17],[11,-11],[38,-34],[66,-27],[16,-13],[8,-15],[3,-4],[-5,-8],[-16,-26],[-28,-23],[-9,-8],[-56,-43],[-75,-41],[-42,-21],[-16,-9],[-1,-1],[0,-5],[-3,-19],[-1,-2],[-2,-2],[-30,-22],[-24,-20],[-20,-28],[-3,-10],[-3,-8],[-7,-30],[4,-27],[9,-28],[1,-30],[1,-3],[0,-4],[12,-32],[0,-19],[5,-18],[11,-25],[3,-7],[6,-12],[-9,-23],[-55,-40],[-8,-23],[1,-11],[0,-6],[1,-15],[50,-114],[72,-88],[19,-14],[6,-5],[38,-31],[22,-26],[11,-14],[9,-13],[9,-25],[5,-15],[3,-8],[3,-21],[7,-15],[-1,-22],[-3,-23],[-28,-68],[-7,-25],[-4,-8],[-7,-14],[1,-6],[2,-11],[11,-17],[19,-19],[17,-7],[25,-12],[68,-29],[40,-16],[79,-32],[25,-17],[19,-14],[11,-7],[25,-16],[42,-28],[15,-13],[4,-25],[-3,-66],[-3,-11],[-5,-19],[-6,-23],[-3,-15],[-1,-15],[-1,-10],[1,-33],[11,-25],[9,-11],[8,-9],[7,-8],[22,-22],[27,-13],[10,-14],[13,-14],[17,-17],[6,-7],[9,-18],[15,-14],[22,-19],[22,-19],[24,-16],[11,-9],[17,-16],[46,-26],[106,-57],[62,-38],[31,-19],[16,-11],[11,-13],[90,-83],[49,-31],[16,-9],[16,-6],[49,-9],[17,-7],[15,-20],[12,-16],[-6,-18],[-34,-18],[-54,-21],[-41,-17],[-8,-3],[-18,-7],[-19,-5],[-19,-4],[-22,-5],[-18,-6],[-37,-9],[-31,-1],[-23,-4],[-51,-16],[-17,-5],[-35,-12],[-29,-12],[-31,-18],[-15,-21],[-9,-14],[-8,-15],[-15,-10],[-15,-7],[-21,-4],[-56,-2],[-32,-6],[-28,-9],[-21,-14],[-16,-16],[-11,-21],[1,-23],[4,-16],[11,-20],[3,-7],[23,-22],[8,-14],[12,-19],[0,-1],[10,-13],[77,-67],[19,-17],[9,-16],[-1,-17],[-4,-17],[-16,-25],[-13,-20],[-32,-36],[-13,-17],[-12,-15],[-27,-61],[-17,-36],[-16,-17],[-35,-29],[-42,-20],[-15,-16],[-14,-28],[-12,-12],[-13,-16],[9,-17],[49,-42],[46,-36],[26,-31],[19,-29],[29,-28],[26,-23],[13,-24],[1,-20],[-3,-21],[-8,-52],[-4,-24],[-2,-16],[-10,-41],[-9,-45],[0,-33],[3,-31],[5,-20],[8,-20],[3,-7],[44,-81],[10,-12],[27,-19],[11,-19],[-8,-20],[-16,-6],[-13,-22],[-1,-15],[-15,-26],[0,-6],[0,-11],[2,-19],[11,-17],[5,-16],[4,-50],[-2,-53],[-3,-14],[-7,-38],[-5,-23],[-7,-29],[-10,-26],[-16,-42],[-17,-34],[-24,-51],[-5,-10],[-19,-39],[-15,-34],[-10,-24],[-11,-24],[-2,-20],[1,-19],[8,-27],[9,-17],[15,-29],[23,-25],[13,-16],[15,-11],[18,-14],[56,-40],[74,-44],[60,-30],[41,-14],[32,-15],[19,-11],[12,-14],[15,-23],[7,-27],[-4,-26],[-12,-33],[-5,-12],[-8,-18],[-12,-20],[-34,-55],[-16,-28],[-17,-17],[-13,-15],[-18,-18],[-11,-12],[-11,-16],[-4,-20],[-1,-16],[8,-38],[2,-16],[4,-29],[1,-10],[2,-20],[4,-26],[-4,-22],[8,-16],[16,-14],[32,-25],[40,-18],[50,-28],[23,-13],[30,-23],[19,-19],[25,-31],[28,-40],[20,-30],[31,-37],[21,-28],[10,-16],[25,-54],[13,-17],[13,-17],[29,-11],[27,-1],[23,-6],[20,-11],[13,-12],[24,-24],[12,-14],[22,-28],[22,-33],[7,-30],[0,-21],[-2,-14],[-10,-18],[-3,-24],[7,-18],[4,-38],[-3,-27],[-10,-27],[-18,-25],[-17,-28],[-29,-51],[-8,-14],[-15,-18],[-36,-11],[-28,-3],[-44,-14],[-25,-11],[-21,-8],[-22,-4],[-31,-16],[-49,-24],[-13,-18],[15,-15],[16,-10],[39,-21],[26,-9],[28,-18],[36,-38],[30,-46],[5,-17],[15,-30],[7,-21],[-5,-16],[-7,-23],[1,-15],[17,-34],[8,-23],[0,-19],[0,-28],[4,-16],[6,-18],[4,-18],[0,-17],[-7,-30],[1,-16],[7,-23],[6,-18],[7,-18],[13,-17],[14,-16],[15,-17],[11,-16],[5,-29],[-5,-21],[-10,-23],[-19,-23],[-17,-17],[-30,-18],[-11,-18],[-19,-32],[-9,-14],[-24,-15],[-19,-2],[-34,3],[-16,-6],[-15,-10],[-39,-24],[-13,-10],[-37,-31],[-9,-15],[-14,-22],[-6,-28],[-2,-29],[-4,-24],[-4,-23],[-6,-20],[-4,-20],[-2,-16],[0,-18],[3,-16],[0,-25],[8,-19],[7,-15],[15,-15],[10,-15],[-8,-18],[-4,-22],[8,-15],[11,-11],[38,-41],[28,-51],[2,-18],[-5,-16],[-17,-25],[-7,-16],[-1,-14],[7,-15],[13,-15],[38,-24],[22,-14],[23,-17],[24,-27],[6,-16],[2,-15],[-2,-14],[-11,-26],[-8,-14],[-8,-24],[18,-31],[17,-13],[16,-21],[5,-17],[-2,-17],[-3,-25],[4,-32],[7,-24],[11,-19],[19,-25],[26,-16],[35,-25],[46,-50],[18,-21],[5,-14],[2,-18],[1,-25],[7,-13],[11,-16],[33,-28],[315,-215],[26,-20],[23,-18],[29,-14],[27,-32],[21,-39],[14,-27],[31,-56],[15,-37],[31,-106],[6,-33],[6,-37],[1,-27],[3,-19],[6,-17],[11,-15],[45,-56],[20,-25],[33,-47],[28,-53],[34,-57],[22,-39],[26,-63],[11,-26],[3,-9],[41,-100],[26,-67],[38,-114],[33,-94],[7,-33],[0,-34],[-22,-193],[-7,-37],[-6,-37],[-1,-52],[10,-71],[7,-38],[10,-28],[9,-25],[23,-33],[9,-22],[10,-37],[2,-9],[18,-63],[8,-27],[8,-36],[11,-28],[18,-36],[21,-34],[6,-19],[9,-25],[6,-33],[8,-33],[1,-31],[0,-35],[-3,-17],[-3,-44],[6,-19],[3,-9],[5,-41],[4,-19],[8,-14],[14,-21],[11,-13],[10,-69],[-1,-19],[-7,-16],[-9,-16],[0,-17],[5,-15],[24,-66],[24,-57],[-1,-28],[7,-38],[0,-65],[3,-15],[4,-14],[15,-12],[36,-11],[25,-8],[12,-18],[4,-24],[14,-19],[18,-24],[5,-17],[0,-2],[-1,-16],[2,-15],[4,-40],[2,-16],[0,-18],[8,-31],[10,-21],[11,-31],[7,-40],[0,-71],[8,-83],[0,-19],[-1,-7],[-1,-35],[-6,-51],[-5,-37],[-13,-46],[-15,-48],[-39,-126],[-6,-22],[-1,-19],[4,-19],[13,-27],[6,-18],[-6,-15],[-9,-21],[-16,-30],[-40,-50],[-5,-7],[-11,-18],[-8,-13],[-27,-18],[-27,-10],[-27,-11],[-30,-12],[-58,-18],[-24,-6],[-134,-26],[-17,-3],[-25,-1],[-29,3],[-34,-6],[-126,6],[-24,0],[-37,1],[-40,0],[-21,0],[-18,-1],[-40,-6],[-25,-9],[-34,-12],[-18,-4],[-26,-8],[-25,-9],[-18,-8],[-21,-9],[-24,-19],[-24,-19],[-39,-28],[-26,-22],[-35,-36],[-32,-23],[-23,-13],[-13,-13],[-15,-27],[-12,-17],[3,-15],[16,-18],[17,-16],[14,-13],[15,-14],[21,-8],[27,-16],[16,-6],[58,-13],[58,-14],[80,-30],[26,-9],[55,-17],[69,-31],[49,-25],[40,-24],[60,-41],[26,-20],[22,-22],[19,-19],[13,-16],[10,-16],[16,-47],[5,-26],[-2,-29],[-10,-33],[-18,-36],[-34,-40],[-43,-35],[-24,-15],[-16,-6],[-45,-20],[-26,-13],[-15,-8],[-21,-12],[-26,-16],[-104,-62],[-22,-16],[-14,-14],[-18,-17],[-12,-19],[-15,-13],[-22,-30],[-15,-18],[-14,-19],[-17,-27],[-17,-34],[-10,-26],[-20,-36],[-2,-15],[-1,-17],[-8,-39],[4,-37],[0,-33],[3,-31],[5,-32],[6,-34],[5,-14],[21,-49],[24,-69],[-2802,1956],[-808,548],[-958,649],[-276,188],[-47,31],[-2374,1609],[-326,220],[-2342,1579],[-2390,1611],[-349,235],[-18,12],[-95,64],[-4030,2716],[-229,155],[-2948,1967],[-1078,719],[-20,13],[-20,13]]],"transform":{"scale":[0.000059679205092050983,0.00006998765030650247],"translate":[-120.00749658299992,35.00111792000018]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ny-counties.json b/src/js/config/mapconfig/mapfiles/county/ny-counties.json new file mode 100644 index 00000000..878ea301 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ny-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-79.76275987899987,40.49626430000018,-71.8564607089998,45.015861513999994],"geometries":[{"type":"Polygon","properties":{"name":"NY"},"id":"36000","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13],[14],[15],[16],[17],[18],[19],[20],[21],[22]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36019","arcs":[[23,24,25]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36089","arcs":[[26,27,28,29,30,31]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36033","arcs":[[-25,32,33,-27,34]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36031","arcs":[[35,36,37,-33,-24,38]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36045","arcs":[[[-20]],[[-19]],[[-18]],[[-17]],[[-23]],[[-1]],[[-15]],[[-16]],[[-14,39,-31,40,41,-4,42,-2]]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36049","arcs":[[43,44,-41,-30,45]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36041","arcs":[[46,47,48,49,-28,-34,-38]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36043","arcs":[[-50,50,51,52,53,-46,-29]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36115","arcs":[[54,55,56,-36,57]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36113","arcs":[[58,-47,-37,-57]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36075","arcs":[[[-43,-3]],[[-45,59,60,61,62,-5,-42]]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36065","arcs":[[63,64,-60,-44,-54]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36011","arcs":[[65,66,67,68,69,-6,-63]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36091","arcs":[[-56,70,71,72,73,74,-48,-59]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36073","arcs":[[75,76,77,-9]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36063","arcs":[[-78,78,79,-10]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36055","arcs":[[80,81,82,83,-76,-8]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36117","arcs":[[[-22]],[[84,85,-81,-7,-70]]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36035","arcs":[[-75,86,-51,-49]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36067","arcs":[[87,88,-66,-62]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36053","arcs":[[-65,89,90,91,-88,-61]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36037","arcs":[[92,93,94,-79,-77,-84]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36029","arcs":[[[-21]],[[-95,95,96,97,-11,-80]]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36057","arcs":[[-74,98,99,100,-52,-87]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36069","arcs":[[101,102,103,104,-82,-86]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36099","arcs":[[105,106,107,-102,-85,-69]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36051","arcs":[[-105,108,109,110,-93,-83]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36083","arcs":[[111,112,113,-71,-55]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36093","arcs":[[114,115,-99,-73]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36077","arcs":[[-101,116,117,118,-90,-64,-53]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36121","arcs":[[-111,119,120,-96,-94]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36095","arcs":[[-116,121,122,123,-117,-100]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36001","arcs":[[-114,124,-122,-115,-72]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36023","arcs":[[125,126,-67,-89,-92,127,128]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36123","arcs":[[129,130,-103,-108]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36017","arcs":[[-119,131,132,-128,-91]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36109","arcs":[[-127,133,134,135,-106,-68]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36101","arcs":[[-104,-131,136,137,138,139,-109]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36013","arcs":[[140,141,-12,-98]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36097","arcs":[[-136,142,-137,-130,-107]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36009","arcs":[[-121,143,144,-141,-97]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36003","arcs":[[-110,-140,145,-144,-120]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36025","arcs":[[-124,146,147,148,149,150,-132,-118]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36021","arcs":[[151,152,153,-113,154]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36039","arcs":[[155,-147,-123,-125,-154]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36007","arcs":[[-151,156,157,-129,-133]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36107","arcs":[[-158,158,159,-134,-126]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36015","arcs":[[-135,-160,160,-138,-143]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36111","arcs":[[-153,161,162,163,-148,-156]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36027","arcs":[[164,165,166,-162,-152]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36105","arcs":[[167,168,-149,-164]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36071","arcs":[[-167,169,170,171,-168,-163]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36079","arcs":[[172,173,-170,-166,174,175]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36119","arcs":[[[176]],[[177]],[[178,179,180,-176,181]]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36087","arcs":[[-171,-174,182]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36103","arcs":[[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190,191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198,199]],[[200]],[[201]]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36005","arcs":[[[202]],[[203]],[[204]],[[205,206,207,-180]]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36059","arcs":[[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[-191,220]],[[221]],[[222]],[[223]],[[-199,224,225,226,227,228]]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36061","arcs":[[229,-207]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36081","arcs":[[[230]],[[231]],[[232,-226]],[[233]],[[234]],[[235,236]],[[-228,237,238,239]]]},{"type":"MultiPolygon","properties":{"name":"NY"},"id":"36047","arcs":[[[240]],[[241,-236]],[[242]],[[243,-239]]]},{"type":"Polygon","properties":{"name":"NY"},"id":"36085","arcs":[[244]]}]},"states":{"type":"GeometryCollection","bbox":[-79.76275987899987,40.49626430000018,-71.85646070899986,45.015861513999994],"geometries":[{"type":"MultiPolygon","properties":{"name":"New York"},"id":"36","arcs":[[[230]],[[240]],[[231]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[233]],[[216]],[[217]],[[218]],[[234]],[[242]],[[219]],[[221]],[[222]],[[183]],[[184]],[[241,236]],[[185]],[[186]],[[187]],[[223]],[[244]],[[188]],[[189]],[[220,191]],[[192]],[[193]],[[202]],[[203]],[[204]],[[176]],[[194]],[[177]],[[195]],[[196]],[[197]],[[224,232,226,237,243,239,228,199]],[[200]],[[201]],[[-21]],[[-22]],[[-20]],[[-19]],[[-18]],[[-17]],[[-23]],[[-1]],[[-15]],[[-16]],[[178,205,229,207,180,172,182,171,168,149,156,158,160,138,145,144,141,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-14,39,31,34,25,38,57,111,154,164,174,181]]]}]}},"arcs":[[[44014,77761],[25,-46],[5,-9],[6,-10],[15,-18],[6,-7],[27,-31],[11,-22],[5,-11],[17,-38],[7,-3],[11,-6],[32,-16],[7,-22],[13,-44],[17,-67],[-7,-56],[-9,-59],[-14,-67],[-19,-52],[23,-25],[-21,-45],[-32,-41],[-20,-48],[-18,-59],[-3,-3],[-7,-8],[-26,-29],[-17,-32],[-28,-52],[-17,-51],[4,-18],[11,-53],[4,-12],[7,-22],[6,-17],[54,-6],[38,8],[45,26],[45,60],[41,30],[48,12],[66,-5],[34,27],[40,40],[48,49],[18,20],[1,1],[19,21],[8,16],[12,22],[34,37],[16,31],[13,23],[15,43],[14,29],[19,40],[28,44],[1,3],[3,3],[26,44],[32,45],[40,63],[7,35],[9,44],[-12,40],[0,1],[-1,14],[-3,22],[16,54],[28,63],[35,52],[11,20],[22,39],[48,80],[29,62],[38,57],[25,53],[2,16],[2,26],[-17,60],[-36,36],[-45,4],[-13,-3],[-20,-6],[-6,-1],[-2,2],[-22,29],[-11,-14],[-8,-11],[-6,-8],[-14,-19],[-24,12],[-16,9],[-52,6],[-59,2],[-51,-22],[-6,-2],[-26,-13],[-43,-26],[-5,-5],[-38,-34],[-42,-18],[-29,-6],[-10,-2],[-47,-26],[-34,-32],[-46,-17],[-24,-13],[-12,-6],[-38,-6],[-32,-3],[-30,-21],[-15,-10],[-26,-14],[-7,-4],[-7,-4],[-20,-15],[-8,-5],[-8,-14],[-5,-8],[-9,-15],[-18,-16],[-11,-10],[-37,-36]],[[44014,77761],[-9,29],[-2,10],[25,79],[1,0],[-1,1],[-40,55],[9,16],[26,50],[4,14],[7,25],[3,10],[2,9],[7,40],[1,5],[5,28],[5,28],[3,18],[3,12],[0,1],[17,83],[13,34],[4,8],[8,21],[5,12],[3,5],[10,25],[32,71],[9,15],[13,22],[19,30],[21,32],[0,1],[6,9],[1,5],[0,1],[0,10],[4,47],[-27,23],[-19,15],[3,3],[11,11],[12,11],[36,-2],[34,28],[31,28],[5,5],[21,34],[24,35],[32,41],[8,10],[13,19],[7,11],[10,9],[1,1],[15,14],[32,37],[1,-1],[3,-4],[28,-32],[25,-7],[7,-2],[25,16],[39,19],[33,10],[32,11],[6,2],[19,7],[32,12],[21,-1],[13,28],[3,-2],[5,-2],[20,-11],[27,32],[3,4],[6,8],[16,40],[9,24],[1,1],[9,2],[23,4],[1,1],[9,1],[21,9],[2,1],[1,1],[17,6],[40,43],[16,21],[18,36],[8,45],[26,-5],[34,-16],[-14,-57],[-7,-12],[-1,0],[-3,-5],[-3,-4],[0,-1],[-4,-7],[-7,-10],[-1,-1],[-16,-24],[-18,-37],[-23,-49],[-14,-29],[-7,-14],[-27,-56],[-4,-9],[-20,-49],[-12,-49],[20,-29],[1,-2],[9,-12],[42,-15],[30,-27],[22,3],[1,0],[25,3],[42,38],[36,13],[23,4],[3,0],[1,1],[29,11],[8,3],[40,9],[2,-1],[28,-15],[18,11],[19,12],[16,17],[10,10],[29,30],[19,27],[30,18],[31,26],[12,-7],[12,-8],[31,-26],[11,-11],[1,-1],[0,-1],[14,-16],[9,6],[11,7],[8,5],[20,10],[6,1],[33,7],[36,9],[22,35],[17,16],[18,16],[29,33],[20,22],[36,-5],[11,3],[13,4],[4,2],[13,4],[17,5],[-8,-30],[-10,-39],[-28,-42],[-24,-38],[-24,-40],[-3,-13],[-1,-7],[-10,-42],[15,-5],[1,0],[44,-12],[-9,-25],[-16,-41],[-9,-20],[-1,-3],[-13,-29],[-22,-48],[-6,-13],[-18,-71],[-2,-7],[-46,-65],[-32,-35],[-31,-39],[-14,-16],[-1,-1],[-15,-18],[-16,-22],[-3,-5],[-21,-25],[-7,-14],[-3,-7],[-20,-38],[33,-40],[37,-24],[40,-11],[42,2],[40,3],[36,28],[3,3],[1,1],[43,51],[33,42],[13,16],[2,2],[13,17],[2,2],[0,1],[1,0],[18,9],[5,2],[21,2],[27,2],[34,-25],[42,-6],[28,10],[24,15],[35,-4],[16,-56],[5,-20],[-10,-66],[-20,-60],[-7,-27],[-3,-13],[-12,-63],[-28,-47],[-32,-43],[-18,-37],[-2,-6],[-8,-16],[-40,-37],[-26,-31],[-1,-1],[-24,-27],[-9,-12],[-3,-4],[-19,-24],[-24,-21],[-12,-10],[-37,-31],[-18,-12],[-2,-1],[-28,-20],[-53,-27],[-41,-15],[-30,5],[-19,-6],[-2,-1],[-11,-3],[-15,-2],[-3,-1],[-19,-2],[-38,-17],[-30,-5],[-47,-35],[-36,-29],[-41,-20],[-27,-1],[-21,-10],[-3,-1],[-45,-22],[-45,-58],[-41,-35],[-8,-9],[-16,-18],[-1,-3],[-5,-7],[-24,-36],[-4,-7],[-48,-63],[-32,-81],[-5,-29],[-4,-27],[-16,-88],[-1,-2],[1,0],[0,-1],[50,-75],[10,-11],[36,-41],[0,-27],[0,-3],[0,-8],[0,-44],[23,-1],[33,15],[20,9],[25,4],[48,9],[51,24],[37,32],[3,2],[34,17],[32,17],[44,-28],[27,-27],[-11,-57],[-13,-29],[-6,-12],[-9,-29],[-4,-11],[-5,-16],[2,-2],[2,-1],[22,-19],[4,-3],[2,-2],[26,-64],[0,-1],[3,-7],[37,-23],[25,7],[12,3],[38,5],[28,-14],[5,3],[24,15],[29,24],[1,0],[9,8],[33,25],[13,14],[14,13],[29,22],[46,6],[69,-6],[4,0],[18,12],[10,6],[32,23],[12,11],[23,21],[25,12],[11,5],[30,22],[5,5],[20,20],[35,27],[10,9],[6,5],[5,4],[1,2],[17,15],[19,24],[6,7],[18,23],[23,30],[12,15],[18,23],[15,20],[22,29],[19,23],[21,25],[36,48],[1,2],[13,17],[19,18],[36,34],[38,42],[35,31],[13,22],[16,27],[7,13],[0,59],[-23,26],[-17,17],[-4,4],[-8,7],[37,10],[1,0],[14,3],[40,2],[10,17],[8,12],[19,24],[1,1],[10,13],[1,-24],[0,-2],[1,-32],[0,-3],[0,-4],[0,-23],[0,-5],[0,-23],[34,-12],[2,1],[0,1],[10,4],[17,9],[16,7],[28,-4],[1,0],[20,-3],[21,-33],[9,3],[1,1],[14,6],[22,10],[39,6],[1,0],[5,0],[-14,-36],[-1,-3],[-2,-3],[-6,-21],[-1,-4],[-7,-27],[-1,-49],[14,-31],[13,-37],[3,-22],[4,-31],[1,-6],[-2,-18],[-3,-31],[0,-1],[-3,-36],[-3,-33],[-12,-47],[2,-40],[2,-9],[1,-2],[4,-16],[4,-16],[-26,-51],[-11,-13],[-2,-2],[-18,-21],[-9,-17],[-26,-52],[-50,-48],[-16,20],[-15,19],[-2,0],[-23,1],[7,50],[9,23],[8,19],[-2,63],[-14,14],[-1,1],[-9,9],[-40,12],[-26,-9],[-7,-2],[-5,-2],[-31,-10],[-46,-22],[-22,-21],[-36,-34],[-37,-48],[-36,-52],[-1,-2],[0,-1],[-14,-20],[-16,-53],[-37,-48],[-17,-52],[-8,-15],[-1,-2],[-22,-42],[-6,-6],[-22,-26],[-33,-49],[-28,-37],[-13,-11],[-13,-11],[-16,-16],[-1,-2],[-7,-6],[-46,10],[-44,11],[-16,-13],[-7,-5],[-7,-6],[-18,-17],[-9,-9],[-47,-51],[-34,-47],[-29,-61],[24,-77],[8,-47],[0,-2],[3,-17],[27,-2],[2,0],[6,-1],[3,0],[11,-1],[29,-63],[0,-54],[16,-56],[10,-37],[0,-1],[10,-36],[1,-47],[-5,-39],[-1,-10],[-4,-25],[21,-58],[14,-74],[-6,-52],[-17,-17],[-15,-14],[6,-12],[3,-7],[2,-5],[7,-14],[1,-17],[2,-35],[-10,-113],[-9,-33],[-5,-17],[-7,-12],[-1,-2],[-9,-15],[-17,-15],[-1,-1],[-3,-3],[-20,-24],[-29,-28],[-35,-23],[-35,-17],[-20,-13],[-2,-1],[-10,-6],[-28,-9],[-14,-5],[-18,8],[-20,8],[-1,0],[-38,17],[-14,-6],[-4,-2],[-4,-2],[-13,-5],[-9,-13],[-11,-15],[-12,-12],[-2,-2],[-9,-8],[-23,-22],[-17,-17],[-45,-22],[-10,-16],[-1,-2],[-20,-33],[-12,-13],[-2,-2],[-9,-9],[-45,-10],[-15,-14],[-21,-19],[-14,-9],[-3,-2],[-39,-25],[-24,-26],[-26,-28],[-35,-51],[-9,-13],[-12,-16],[-28,-30],[-20,-20],[-30,-18],[-31,-21],[-34,-30],[-28,-63],[23,-89],[5,-41],[1,-9],[5,-41],[-13,-17],[-27,-38],[-32,-48],[-45,0],[7,77],[1,21],[1,10],[-9,12],[-28,42],[-42,24],[-15,68],[-29,33],[-3,4],[-1,1],[-26,12],[-38,4],[-39,13],[-30,-21],[-31,-14],[-1,0],[-50,-24],[-7,15],[-13,29],[18,37],[4,7],[4,7],[33,56],[9,76],[12,13],[18,21],[24,24],[11,14],[0,1],[2,2],[16,23],[23,67],[-16,57],[-37,20],[-1,0],[-21,23],[-11,25],[-3,9],[-3,7],[-10,-2],[-32,-7],[-30,-5],[-34,-17],[-13,-11],[-4,-2],[-25,-20],[-43,-26],[-22,-12],[-2,-1],[-24,-13],[-33,-9],[-23,-4],[-12,5],[-1,1],[-9,4],[-27,12],[-11,4],[-3,0],[-23,-2],[-4,-3],[-46,-31],[-31,-24],[-32,-24],[-32,-19],[-39,-33],[-14,-16],[-3,-3],[-13,-14],[-11,-23],[-3,-4],[-7,-15],[-28,-28],[-9,-8],[-15,-12],[-21,-31],[-7,-11],[-4,-6],[-16,-27],[-28,-40],[-32,-51],[-29,-51],[-29,-58],[-12,-40],[10,-76],[2,-7],[0,-1],[3,-9],[13,-41],[1,-2],[4,-13],[-11,-43],[-14,-47],[-25,-86],[3,-35],[0,-5],[2,-15],[28,-12],[27,-10],[13,-5],[5,3],[19,12],[24,15],[6,1],[21,4],[13,2],[15,2],[11,5],[14,6],[15,7],[51,24],[7,-12],[8,-14],[9,-14],[5,-10],[36,-24],[26,11],[2,0],[1,0],[9,0],[18,1],[28,-42],[-16,-54],[-8,-23],[-4,-13],[-9,-15],[-5,-8],[-5,-7],[-4,-30],[-5,-31],[1,-11],[0,-10],[1,-46],[34,7],[44,-7],[44,17],[8,2],[22,5],[20,6],[31,-1],[19,-1],[37,-25],[3,-6],[15,-30],[1,-2],[8,-23],[11,-36],[-3,-6],[-17,-26],[-7,-32],[0,-2],[1,-1],[27,-14],[11,-6],[7,0],[24,-2],[41,46],[2,13],[5,31],[0,3],[1,5],[5,5],[27,26],[4,0],[4,0],[8,0],[26,0],[8,0],[-8,-21],[-16,-43],[-2,-6],[-19,-48],[-5,-13],[-3,-51],[1,-23],[3,-47],[2,-36],[19,-30],[2,-5],[17,-32],[13,-3],[4,-1],[11,-3],[17,-4],[10,-2],[10,-86],[12,-71],[7,-49],[5,-63],[9,-49],[7,-33],[20,-62],[2,-10],[7,-36],[5,-36],[4,-22],[15,-77],[16,-71],[17,-88],[7,-46],[6,-34],[4,-26],[3,-25],[1,-9],[9,-49],[9,-52],[0,-1],[9,-58],[8,-32],[2,-10],[9,-67],[23,-55],[8,-58],[-4,-81],[7,-50],[11,-80],[5,-36],[5,-33],[6,-50],[8,-62],[3,-27],[10,-81],[3,-32],[0,-2],[4,-50],[17,-41],[3,-8],[0,-27],[-1,-14],[0,-34],[-1,-46],[5,-48],[3,-27],[4,-37],[4,-38],[4,-39],[3,-25],[2,-15],[6,-50],[1,-16],[1,-4],[2,-21],[1,-11],[0,-1],[2,-11],[0,-35],[0,-30],[0,-17],[0,-15],[0,-32],[-1,-48],[6,-63],[3,-57],[0,-3],[1,-4],[2,-25],[3,-25],[10,-37],[6,-22]],[[45070,70446],[0,-4],[-10,-53],[3,-37],[4,-44],[21,-55],[2,-96],[13,-27],[8,-16],[4,-8],[34,0],[4,30],[-29,51],[-2,5],[0,2],[-7,23],[0,50],[11,37],[-4,27],[-3,27],[10,31],[14,42],[2,5],[1,3]],[[45146,70439],[20,19],[2,2],[6,1],[11,1],[16,16],[22,-1],[17,-1],[21,-26],[5,-5],[18,-20]],[[45284,70425],[3,-18],[10,-63],[4,-23],[-22,-19],[-1,-1],[-11,-30],[-27,-10],[-16,-18],[-13,-16],[19,-4],[12,-3],[9,5],[21,12],[29,-6],[19,-4],[34,13],[20,7],[17,-20],[-19,-10],[-13,-7],[1,-15],[3,-22],[30,-47],[6,-41],[2,-16],[37,-8],[25,-5],[1,-3],[1,-2],[7,-12],[8,-14],[29,-15],[9,-5],[7,-21],[24,-80],[27,14],[18,-22],[4,-5],[0,-1],[5,-6],[-1,-2],[-1,-2],[-10,-17],[-5,-9],[-7,-10],[-8,-12],[-10,-14],[-12,-18],[-40,-40],[-6,-11],[-5,-9],[-2,-5],[-1,-2],[-4,-8],[-10,-20],[-5,-9],[0,-28],[0,-29],[-6,-15],[-6,-16],[2,-3],[2,-3],[12,-28],[2,-3],[-11,-25],[-1,-2],[-31,11],[-8,-2],[-14,-3],[-20,-4],[-7,-2],[-45,-10],[-46,0],[-17,-20],[-17,-20],[-27,-20],[0,-44],[0,-3],[-6,-19],[-10,-32],[-8,15],[-13,20],[-11,19],[-14,20],[-13,12],[-18,15],[-1,29],[-2,42],[3,10],[6,17],[-3,15],[-2,10],[-6,32],[0,40],[0,37],[0,3],[2,9],[25,126],[-10,14],[-10,13],[-7,57],[5,33],[3,21],[5,30],[2,61],[-25,-7],[-15,-27],[-4,-40],[-1,-8],[-6,-59],[-2,-24],[3,-143],[-2,-110],[-1,-47],[0,-5],[-2,-64],[0,-94],[0,-1],[1,-70],[0,-33],[2,-23],[1,-9],[1,-9],[0,-2],[2,-17],[2,-36],[11,41],[7,1],[1,0],[14,2],[8,-18],[3,-9],[12,-16],[16,1],[3,1],[15,1],[41,-20],[5,-3],[43,-21],[1,13],[0,1],[1,6],[1,11],[37,-11],[15,-4],[18,-6],[23,-40],[2,-67],[-54,-44],[-4,3],[-75,68],[-15,-34],[-33,-4],[-3,0],[-22,-3],[-20,2],[-12,1],[-6,1],[-10,7],[-32,23],[-1,-8],[-11,-79],[-5,-68],[-6,-191],[-4,-103],[-6,-70],[-6,-76],[-10,-118],[-9,-77],[-13,-175],[-4,-47],[0,-6],[-20,-36],[-7,-24],[-7,-25],[-2,-7],[-11,-52],[-12,-51],[-17,-72],[-20,-80],[-26,-95],[-17,-89],[-1,-5],[0,-2],[-7,-67],[-7,-9],[-23,-26],[-11,-12],[-2,-2],[-7,-15],[-2,-6],[-4,-8],[-5,-12],[-15,-34],[-17,-36],[-28,-56],[-26,-48],[-13,-21],[-14,-24],[-14,-17],[-4,-5],[-25,-28],[-14,-13],[-1,0],[-27,-23],[-62,-29],[-19,-10],[-2,-1],[-27,-14],[-16,1],[-17,1],[-26,-10],[-1,-1],[-11,-4],[-13,-5],[-5,-1],[-25,-9],[-14,-6],[-2,0],[-26,-9],[-15,-7],[-2,-1],[-12,-5],[-1,-1],[-16,2],[-7,1],[-1,-1],[-30,-28],[-42,-23],[-3,-2],[-31,-20],[-20,-13],[-23,-6],[-26,-8],[-24,16],[-24,-1],[-2,-2],[-8,-9],[-22,-24],[-31,-35],[-15,-13],[-29,-25],[-21,-15],[-8,-6],[-66,-35],[-12,-3],[-10,-3],[-25,-1],[-6,0],[-17,8],[-17,7],[-6,-2],[-6,-1],[-2,-1],[-11,-2],[-32,11],[-5,2],[-12,5],[-35,13],[-61,-1],[-35,0],[-5,1],[-23,0],[-16,-11],[-3,-2],[-20,-14],[-16,-9],[-3,-2],[-3,-2],[-11,-6],[-38,-5],[-27,-2],[-1,0],[-22,-1],[-15,16],[-18,21],[-4,4],[-36,4],[-1,0],[-57,-21],[-44,1],[-1,0],[-4,0],[-13,9],[-32,20],[-42,42],[-35,44],[-32,28],[-18,26],[-3,5],[-2,3],[-19,26],[-37,39],[-44,26],[-44,2],[-5,0],[-39,-15],[-4,-2],[-1,0],[-13,-5],[-17,-7],[-62,-12],[-28,15],[-1,0],[-17,9],[-5,3],[-1,0],[-6,3],[-31,-4],[-22,-3],[-65,0],[-21,-6],[-13,-3],[-38,-5],[-55,-15],[-8,-2],[-1,0],[-42,-8],[-51,-27],[-28,-13],[-16,-8],[-27,-41],[-27,-69],[-17,-18],[-16,-17],[-40,-18],[-15,-6],[-54,-19],[-32,-44],[-16,-21],[-11,-17],[-36,-22],[-1,-1],[-2,-2],[-24,-24],[-43,-43],[-13,-9],[-6,-4],[-22,-15],[-29,-20],[-35,-22],[-16,-14],[-12,-9],[-17,-14],[-26,-20],[-3,-3],[-1,0],[-47,-39],[-41,-22],[-4,-3],[-11,-6],[-2,-1],[-2,-1],[-37,-49],[-23,-60],[-19,-51],[-31,-74],[-11,-27],[-20,-42],[-11,-22],[-15,-29],[-7,-13],[-13,-21],[-24,-36],[-22,-27],[-23,-1],[-1,-1],[-2,0],[-27,-9],[-10,-10],[-11,-13],[-10,-11],[-6,-7],[-6,-7],[-12,-11],[-16,-15],[-38,-21],[-27,-8],[-9,-3],[-4,-1],[-39,-16],[-9,-12],[-11,-14],[-13,-16],[-12,-8],[-19,-12],[-4,-58],[-1,-17],[-10,6],[-36,21],[-17,1],[-18,0],[-3,0],[-35,-24],[-40,-26],[-21,-15],[-2,0],[-29,-10],[-36,-11],[-23,-19],[-26,-11],[-33,-6],[-34,-22],[-15,-9],[-27,-27],[-4,-3],[-34,-26],[-30,-45],[-9,-13],[-15,-3],[-10,-2],[-8,-1],[-15,-8],[-20,-11],[-34,-22],[-55,-28],[-29,0],[-14,-36],[-8,-21],[-10,-22],[-14,-30],[-25,-25],[-6,-5],[-3,-1],[-39,-14],[-13,-13],[-22,-20],[-1,0],[-15,-14],[-42,-42],[-44,-62],[-19,-29],[-6,-8],[0,-1],[-3,-4],[-3,-2],[-1,-1],[-2,-2],[-49,-33],[-36,-16],[-33,-84],[-17,-34],[-12,-12],[-6,-6],[-13,-13],[-1,0],[-1,0],[-50,-7],[-17,-4],[-10,-2],[-2,-2],[-4,-3],[-22,-18],[-34,-49],[-7,-6],[-3,-2],[-17,-14],[-23,-17],[-8,-6]],[[39789,64644],[-8,-6],[-13,-9],[-24,-48],[0,-2],[0,-1],[-1,-2],[-18,-65],[-31,11],[-3,1],[-7,2],[-19,-3],[-5,0],[-21,21],[-29,-9],[-19,-37],[-20,-41],[-7,-17],[-15,-37],[-40,-45],[-33,-58],[-31,-71],[-10,-29],[-8,-24],[-21,-52],[-28,-75],[-41,-87],[-28,-45],[-19,-31],[-15,-37],[-21,-55],[-19,-47],[-20,-41],[-6,-11],[-41,-77],[-29,-72],[-14,-36],[-7,-30],[-7,-36],[-43,-19],[-1,-2],[-24,-35],[-17,-25],[-15,-20],[-22,-43],[-8,-17],[-11,-21],[-14,-27],[-38,-52],[-28,-32],[-1,-1],[0,-1],[-28,-30],[-20,-23],[-12,-14],[-34,-41],[-1,-1],[-32,-34],[-6,-1],[-3,-1],[-3,0],[-32,-5],[-12,-44],[-2,-25],[-1,-31],[2,-28],[0,-1],[6,-56],[24,-54],[-7,-60],[-1,-9],[0,-1],[-1,-8],[-22,-12],[-13,-7],[-16,-8],[-28,-58],[-4,-11],[15,-44],[6,-44],[-1,-43],[-1,-19],[-3,-9],[-12,-35],[-9,9],[-21,23],[-7,-18],[-11,-33],[-8,-22],[-26,-14],[-8,-4],[-7,15],[-9,19],[-24,6],[14,85],[9,61],[-1,16],[0,1],[-1,31],[-4,42],[-1,4],[-2,19],[13,7],[2,1],[0,1],[19,10],[3,18],[2,11],[1,1],[3,18],[0,45],[0,1],[-1,34],[-13,96],[0,77],[8,33],[6,31],[-6,-1],[-4,0],[-29,-5],[-35,-11],[-6,-2],[-2,0],[-12,-3],[-11,-3],[-1,0],[-7,-2],[-4,-30],[-1,-13]],[[38456,62945],[-3,-31],[-5,-73],[-12,-17],[-35,-50],[-25,-14],[-10,-6],[-26,-16],[-9,33],[-13,38],[-6,29],[0,1],[-4,18],[0,17],[1,40],[-16,-10],[-9,-6],[-11,-6],[-3,-4],[0,-1],[-25,-30],[-68,-84],[-8,-10],[-26,-32],[-33,-33],[-44,-40],[-13,-19],[-2,-1],[-10,-15],[-4,-8],[0,-1],[-4,-7],[-28,-54],[-52,-43],[-58,-37],[-10,-10],[-4,-4],[-13,-13],[-31,-18],[-29,-5],[-38,-21],[-30,-24],[-29,-26],[-15,-14],[-7,-8],[-3,-6],[-10,-25],[-46,-5],[-21,-9],[-27,-12],[-47,-27],[-33,-30],[-2,2],[-26,15],[0,1],[-6,3],[-45,-15],[-16,1],[-16,1],[-27,3],[-29,-13],[-9,-5],[-33,-17],[-47,-21],[-27,-6],[-26,-5],[-48,-13],[-19,7],[-5,2],[-33,13],[-31,-9],[-42,-21],[-7,-1],[-23,-4],[-4,-1],[-26,11],[-8,-9],[-3,-4],[-14,-17],[-1,-1],[-26,-10],[-9,-4],[-3,-4],[-39,-38],[-37,-29],[-32,-25],[-63,-21],[-39,-19],[-36,-25],[-18,-12],[-53,-11],[-52,-23],[-7,-4],[-21,-10],[-27,-4],[-4,-1],[-31,20],[-42,4],[-20,-19],[-26,27],[-37,16],[-32,8],[-6,2],[-8,4],[-13,8],[-22,-21],[-8,-8],[-59,-57],[-34,-22],[-33,-21],[-6,-4],[-24,-16],[-2,-1],[-3,-2],[-13,-13],[-23,-21],[-55,-34],[-26,-16],[-13,1],[-25,3],[-3,1],[-10,-9],[-35,-33],[-7,-11],[-32,-46],[-46,-52],[-9,-7],[-33,-25],[-32,-32],[-1,-1],[-5,-4],[-27,-56],[29,-51],[1,-25],[0,-34],[-17,-52],[-26,102],[-24,-35],[-4,-6],[0,-27],[0,-28],[10,-42],[8,-45],[9,-15],[11,-19],[27,40],[1,-7],[5,-59],[31,-16],[9,-50],[-2,-23],[0,-1],[-2,-20],[-3,-34],[-3,-29],[-4,-6],[-2,-3],[-9,-13],[-13,-19],[-15,-30],[4,-100],[42,-21],[13,-47],[12,-29],[8,-19],[26,-53],[31,10],[23,16],[1,0],[18,13],[13,-75],[30,-71],[5,-25],[7,-30],[-14,-56],[-5,-13],[-12,-34],[-2,-25],[-1,-6],[-3,-30],[17,-58],[-2,-12],[-6,-33],[0,-1],[-4,-24],[-6,30],[-9,47],[-15,39],[-1,3],[-14,39],[-19,67],[-3,28],[-1,5],[-4,37],[-41,-4],[-1,-1],[-4,0],[-27,-4],[-22,24],[-14,15],[-19,30],[-4,5],[-7,11],[-13,34],[-6,15],[-5,10],[-20,40],[-12,30],[-1,1],[-5,14],[-8,30],[-9,14],[-1,1],[-12,18],[-4,5],[-29,-27],[-18,-16],[-2,-4],[-3,-6],[-7,-15],[0,-1],[-10,-21],[-46,-14],[-15,14],[-29,28],[-8,69],[-9,13],[-16,22],[-10,57],[-43,43],[-10,21],[-22,48],[-8,-21],[-30,-75],[-4,14],[-18,51],[-14,15],[-18,18],[-23,38],[-8,9],[-1,2],[-12,13],[-22,22],[-22,30],[-3,4],[-39,58],[-14,17],[-25,31],[-3,48],[4,9],[18,50],[19,19],[0,1],[2,1],[3,4],[37,20],[4,0],[30,3],[34,27],[5,6],[13,14],[4,5],[10,12],[50,42],[-39,5],[-29,-9],[-15,-1],[-1,0],[-12,-1],[-52,22],[-21,3],[-1,1],[-13,2],[-25,-9],[-27,-17],[-45,-22],[-30,-15],[-46,-7],[-45,4],[-33,-8],[-55,-11],[-38,13],[-36,-9],[-1,0],[-14,-4],[-54,-16],[-4,1],[-38,2],[-21,23],[-15,0],[-5,0],[-40,1],[-39,-6],[-16,-3],[-55,14],[-42,70],[-8,20],[0,2],[-4,8],[-7,21],[-24,0],[-51,2],[-15,0],[-58,42],[-66,14],[-29,17],[-21,45],[-1,4],[-1,0],[-1,3],[-12,0],[-6,0],[-29,-1],[-26,-18],[-5,-1],[-25,-5],[-23,0],[-3,1],[-19,0],[-14,13],[-2,1],[-17,15],[-32,19],[-36,12],[-31,10],[-8,2],[-13,4],[-48,12],[-10,14],[-10,15],[-18,6],[-18,5],[-14,12],[-20,18],[-17,7],[-14,5],[-9,4],[-10,-3],[-1,0],[-34,-10],[-9,-10],[-1,-1],[-6,-8],[-14,-16],[-55,-15],[-38,16],[-3,0],[-21,-2],[-29,-3],[-95,-28],[-27,1],[-1,0],[-29,1],[-28,14],[-9,4],[-12,10],[-40,33],[-15,10],[-1,1],[-27,18],[-26,-7],[-1,0],[-14,-4],[-22,-18],[-32,-26],[-38,-26],[-52,-31],[-15,-9],[-4,-2],[-40,-23],[-34,-17],[-10,-5],[-6,-2],[-21,-9],[-32,1],[-49,0],[-28,3],[-2,0],[-15,2],[-41,23],[-2,2],[-37,29],[-8,3],[-17,6],[-16,6],[-31,-29],[-32,-22],[-46,-8],[-2,0],[-26,1],[-27,2],[-1,0],[-29,10],[-9,3],[-1,0],[-43,22],[-24,0],[-12,0],[-13,-3],[-23,-5],[-29,-7],[-41,-21],[-53,-12],[-2,0],[-13,-8],[-15,-9],[-31,-3],[-2,0],[-40,-4],[-11,-1],[-40,-1],[-21,-5],[-4,-1],[-24,-6],[-10,2],[-26,5],[-41,-18],[-8,-4],[-11,-5],[-2,-1],[-2,-1],[-4,-2],[-4,-3],[-17,-12],[-40,-10],[-45,-4],[-55,-8],[-23,-1],[-38,-2],[-32,8],[-34,4],[-2,1],[-7,0],[-33,-4],[-46,-11],[-32,2],[-21,12],[-14,8],[-9,5],[-63,0],[-12,-4],[-13,-5],[-8,-3],[-2,-1],[-13,5],[-18,6],[-15,0],[-18,-1],[-4,0],[-52,-6],[-2,1],[-14,6],[-20,9],[-13,2],[-33,7],[-13,20],[-12,19],[-3,5],[-26,-2],[-31,-10],[-4,-1],[-12,1],[-13,0],[-15,1],[-20,-3],[-16,-2],[-40,-14],[-25,-10],[-18,-7],[-39,-22],[-32,8],[-19,5],[-42,30],[-9,7],[-12,-2],[-49,-6],[-36,-20],[-2,-2],[-26,-10],[-17,-7],[-17,-2],[-9,-1],[-20,3],[-7,1],[-46,7],[-42,-3],[-11,-1],[-8,-3],[-36,-11],[-31,-18],[-19,-2],[-16,-2],[-19,-7],[-9,-3]],[[30204,61512],[-9,-3],[-5,-2],[-35,-4],[-1,0],[-45,-11],[-11,-3],[-2,0],[-14,-3],[-19,3],[-1,0],[-26,4],[-24,6],[-17,5],[-11,3],[-11,-5],[-5,-2],[-31,-14],[-35,-19],[-19,-19],[-3,-3],[-8,-8],[-6,-4],[-17,-13],[-40,-27],[-9,-5],[-29,-15],[-51,-12],[-52,0],[-19,5],[-21,5],[-39,3],[-16,0],[-1,0],[-11,0],[-6,-2],[-3,-1],[-1,-1],[-13,-5],[-7,-2],[-6,-4],[-5,-3],[-23,-14],[-14,-20],[-14,-20],[-32,-26],[-1,-2],[-4,-3],[-33,-26],[-4,-3],[-15,-10],[-18,-12],[-6,-4],[-45,-23],[-41,-14],[-35,-15],[-11,-1],[-29,-4],[-30,-11],[-1,0],[-19,-6],[-46,-26],[-17,-10],[-18,-12],[-4,-1],[-27,-5],[-16,-2],[-1,0],[-13,-1],[-27,-14],[-34,-19],[-39,-25],[-47,-36],[-87,-34],[-6,-3],[-27,-11],[-31,-2],[-22,-2],[-14,-3],[-1,0],[-17,-3],[-25,2],[-11,-3],[-22,-8],[-26,-17],[-9,-7],[-4,-2],[-8,-7],[-3,-2],[-32,-25],[-36,-35],[-36,-56],[-33,-55],[-4,-7],[-1,-1],[-13,-23],[-35,-21],[-26,-25],[-19,-5],[-2,-1],[-11,-2],[-43,-15],[-17,-7],[-1,0],[-14,-5],[-5,-3],[-9,-3],[-1,0],[-1,0],[-22,-9],[-36,-7],[-1,1],[-6,2],[-1,0],[-8,4],[-19,7],[-11,1],[-15,1],[-9,0],[-8,1],[-15,1],[-14,1],[-44,6],[-33,8],[-3,1],[-8,1],[-34,-2],[-42,13],[-25,17],[-24,17],[-16,8],[-30,15],[-52,13],[-23,30],[-3,4],[-27,19],[-16,12],[-8,7],[-1,1],[-31,24],[-36,32],[-20,18],[-4,4],[-24,26],[-21,20],[-9,10],[-32,45],[-10,8],[-26,20],[-30,23],[-29,28],[-14,16],[-4,4],[-7,8],[-30,28],[-2,-1],[-22,-10],[-7,9],[-19,25],[-56,70],[-146,141],[-39,31],[-35,47],[-17,13],[-2,1],[-45,34],[-42,19],[-5,2],[-21,9],[-54,25],[-25,11],[-69,33],[-3,1],[-6,3],[-47,22],[-40,25],[-10,21],[0,1],[-2,4],[-4,9],[-13,27],[-90,104],[-51,48],[-19,24],[-34,43],[-6,4],[-20,12],[-88,94],[-92,105],[-51,50],[-18,18],[-21,35],[-29,19],[-5,4],[-6,-4],[-37,-22],[-56,-19],[-18,22],[-15,19],[-2,3],[-2,-1],[-55,-40],[5,25],[6,27],[2,8],[-28,40],[-11,16],[-6,8],[-9,45],[-4,22],[-33,-2],[-5,0],[-2,0],[-60,-3],[6,4],[10,7],[6,5],[14,9],[49,35],[61,-13],[3,9],[18,53],[21,30],[7,9],[-11,20],[-15,28],[-13,6],[-24,11],[-24,11],[-96,52],[-9,5],[-38,58],[-182,76],[-32,24],[-3,3],[-3,2],[-110,61],[-33,75],[-58,11],[-57,-16],[-39,-14],[-3,-1],[-29,-10],[-129,-9],[-12,5],[-10,5],[-2,1],[-5,2],[-50,1],[-12,0],[-2,0],[-2,0],[-67,0],[-43,17],[-43,18],[-61,4],[-23,10],[-7,3],[-24,11],[-40,17],[-24,1],[-5,0],[-127,2],[-80,45],[-128,37],[-18,-33],[-108,44],[-245,37],[-29,23],[-3,2],[-7,6],[-114,31],[-32,17],[-1,1],[-8,4],[-16,9],[-67,21],[-26,11],[-65,26],[-86,5],[-18,1],[-130,7],[-133,68],[-255,75],[-38,25],[-95,62],[-23,15],[-14,-5],[-2,-1],[-8,-2],[-44,-16],[-28,18],[-20,14],[-9,5],[-17,11],[-4,-3],[-2,-1],[-9,-8],[-10,-9],[-2,-2],[-21,-16],[-32,-11],[-14,-5],[-26,-7],[-68,-19],[-41,-10],[-12,-3],[-1,0]],[[22351,63470],[-4,1],[-48,24],[-4,3],[-21,20],[-14,13],[-16,7],[-3,2],[-12,5],[-49,0],[-40,-10],[-44,-12],[-1,0],[-41,-9],[-57,-7],[-58,4],[-14,2],[-2,1],[-7,1],[-1,0],[-12,4],[-4,2],[-23,8],[-21,18],[-7,5],[-7,6],[-8,8],[-22,21],[-17,16],[-29,-2],[-14,-1],[-7,0],[-1,-1],[-25,-2],[-117,-17],[-36,3],[-61,1],[-123,31],[-30,21],[-29,9],[-38,5],[-34,5],[-78,6],[-36,8],[-42,21],[-58,12],[-2,0],[-13,3],[-22,1],[-25,2],[-51,-3],[-42,-1],[-41,-1],[-12,0],[-14,1],[-35,3],[-33,0],[-2,0],[-26,1],[-62,1],[-93,-3],[-16,0],[-31,1],[-65,-3],[-50,-9],[-71,-9],[-44,2],[-16,-3],[-3,0],[-8,-2],[-12,-1],[-2,-1],[-13,-2],[-46,-20],[-1,0],[-33,-14],[-23,-10],[-2,-1],[-28,-11],[-36,-10],[-2,0],[-5,-2],[-35,-8],[-29,-7],[-57,1],[-13,8],[-2,1],[-15,8],[-35,-13],[-3,1],[-24,10],[-44,-7],[-25,-1],[-10,-1],[-39,9],[-11,2],[-2,1],[-33,7],[-30,7],[-17,-6],[-52,-16],[-57,-10],[-27,-5],[-1,0],[-22,-4],[-22,-6],[-1,0],[-20,-5],[-89,-15],[-115,5],[-64,13],[-31,17],[-18,18],[-3,3],[-15,15],[-69,12],[-75,-1],[-50,-1],[-4,-2],[-23,-11],[-14,-5],[-2,0],[-16,-5],[-32,-3],[-4,0],[-19,-2],[-17,6],[-1,0],[-28,9],[-26,1],[-2,0],[-28,2],[-18,-1],[-2,-1],[-10,0],[-26,-5],[-16,-4],[-83,-1],[-23,1],[-2,0],[-17,1],[-39,12],[-43,28],[-51,10],[-83,-14],[-44,-8],[-35,-2],[-1,0],[-22,-2],[-46,4],[-42,-5],[-56,5],[-41,7],[-36,13],[-40,2],[-34,0],[-40,0],[-51,-1],[-10,0],[-43,3],[-59,17],[-27,32],[-32,3],[-49,-5],[-15,-3],[-18,-3],[-28,0],[-10,0],[-32,0],[-32,-1],[-48,-3],[-27,-5],[-4,0],[-32,-6],[-32,-3],[-2,0],[-25,-3],[-36,-5],[-111,4],[-82,-5],[-16,-2],[-2,0],[-18,-3],[-37,-4],[-36,-6],[-65,-10],[-45,-13],[-39,-10],[-60,-8],[-59,-3],[-43,8],[-30,4],[-1,0],[-25,3],[-11,-3],[-18,-5],[-58,-14],[-16,-5],[-42,-13],[-2,0]],[[16407,63605],[-1,0],[-24,5],[-38,-6],[-32,-2],[-24,5],[-37,19],[-60,54],[-49,9],[-40,-2],[-3,0],[-28,-7],[-35,-8],[-61,-19],[-67,-17],[-63,-9],[-35,-3],[-84,10],[-65,-9],[-55,-10],[-34,-4],[-36,-10],[-15,-3],[-8,-2],[-13,-2],[-67,-12],[-33,-5],[-5,-1],[-23,-3],[-77,-20],[-32,-4],[-35,-12],[-52,-10],[-94,-28],[-34,-10],[-12,-2],[-4,-1],[-1,0],[-19,-4],[-43,-11],[-41,-15],[-14,-4],[-6,-3],[-26,-11],[-42,-15],[-15,-4],[-46,-13],[-49,-10],[-2,-1],[-40,-9],[-21,-3],[-3,0],[-1,0],[-10,-2],[-59,-10],[-2,0],[-20,-3],[-93,-16],[-57,-13],[-41,-8],[-43,-9],[-54,-13],[-245,-107],[-20,-10],[-1,0],[-6,-3],[-17,-8],[-67,-31],[-27,-13],[-6,-3],[-220,-103],[-43,-19],[-1,0],[-11,-5],[-80,-35],[-19,-9],[-39,-16],[-72,-12],[-43,-6],[-151,-25],[-1,0],[-10,-1],[-49,-4],[-31,6],[-35,-11],[-104,-29],[-90,-42],[-1,-1],[-61,-28],[-80,-37],[-171,-72],[-67,-28],[-2,-1],[-4,-2],[-52,-21],[-165,-35],[-94,-20],[-34,-7],[-69,-13],[-1,0],[-1,0],[-7,-4],[-21,-10],[-99,-47],[-23,-12],[-1,0],[-1,0],[-22,-11],[-72,-22],[-30,-11],[-97,-38],[-9,-4],[-36,-18],[-58,-23],[-37,-24],[-22,-11],[-2,-2],[-3,-1],[-50,-25],[-13,-3],[-7,-2],[-10,-2],[-48,-12],[-43,-17],[-21,-10],[-7,-3],[-191,-89],[-261,-115],[-393,-164],[-266,-147],[-65,-35],[-31,-13],[-107,-47],[-38,-16],[-198,-69],[-96,-9],[-47,-5],[-6,0],[-34,-11],[-56,-18],[-72,-24],[-58,-19],[-43,-14],[-58,-21],[-38,-13],[-142,-49],[-55,-25],[-64,-29],[-87,-51],[-41,-12],[-73,-26],[17,-25],[14,-21],[5,-4],[35,-26],[88,-120],[20,-67],[-5,-12],[-22,-191],[2,-127],[7,-88],[25,-127],[8,-138],[-26,-118],[-18,-49],[3,-53],[62,-159],[15,-52],[4,-163],[-33,-252],[-12,-207],[4,-81],[53,-182],[34,-187],[11,-66],[8,-124],[-7,-97],[-43,-75],[-52,-51],[-48,-89],[-68,-89],[-103,-108],[-10,-17],[11,-8],[46,-55],[30,-35],[31,-42],[12,-68],[2,-32],[1,-22],[2,-31],[-12,-45],[-31,-112],[-43,-145],[-39,-100],[-2,-7],[-31,-62],[36,-43],[38,-38],[13,-10],[38,-30],[2,-2],[13,1],[1,0],[1,0],[1,0],[57,-6],[36,-25],[1,-1],[1,0],[12,0],[38,1],[74,-28],[58,4],[31,2],[20,2],[29,2],[4,0],[11,1],[28,2],[97,-25],[1,0],[13,-3],[71,-18],[71,-38],[38,-20],[44,-2],[74,6],[5,0],[12,1],[13,1],[7,1],[24,-5],[7,-1],[1,-1],[43,-8],[58,-5],[47,-3],[11,-1],[17,-7],[1,-1],[23,-10],[10,3],[2,1],[26,9],[86,-11],[61,-13],[42,0],[7,4],[9,6],[21,14],[49,-12],[4,-4],[33,-29],[32,-2],[8,-5],[18,-12],[35,-22],[7,-4],[71,-23],[24,-9],[13,-4],[23,-14],[13,-8],[28,-30],[10,-12],[33,-32],[27,-31],[22,-26],[10,-3],[18,-5],[32,-13],[1,-1],[22,-9],[43,-20],[6,-6],[17,-16],[2,-2],[58,-55],[19,-51],[37,-48],[25,-32],[32,-62],[16,-127],[25,-121],[-19,-48],[19,-62],[14,-109],[26,-9],[11,-4]],[[11129,55920],[-11,-15],[-10,-13],[-7,-10],[-19,-33],[-37,-52],[-31,-33],[-29,-19],[-25,-16],[-37,-24],[-26,-19],[-19,-13],[-49,-37],[-14,-3],[-5,-2],[-5,-3],[-6,-3],[-16,-9],[-43,-28],[-52,-36],[0,-1],[-1,0],[-3,-2],[-17,-14],[-10,-8],[-1,0],[-22,-21],[-1,0],[-2,-2],[-20,-21],[-15,-14],[-6,-5],[-22,-27],[-14,-16],[-10,-11],[-17,-19],[0,-1],[-19,-22],[-25,-38],[-8,-12],[-8,-12],[-10,-24],[-34,-78],[-8,-30],[-14,-48],[-2,-13],[-2,-21],[-3,-18],[-1,-11],[-1,-89],[-1,-7],[17,-41],[12,-31],[16,-35],[21,-43],[0,-1],[17,-40],[3,-6],[26,-41],[9,-13],[24,-35],[9,-12],[46,-50],[28,-34],[29,-35],[20,-24],[17,-19],[25,-29],[2,-4],[1,0],[12,-15],[25,-27],[11,-13],[7,-19],[16,-44],[5,-50],[1,-18],[3,-65],[1,-22],[2,-33],[10,-28],[11,-26],[17,-76],[13,-53],[9,-36],[9,-36],[4,-17],[5,-20],[8,-34],[6,-66],[10,-114],[8,-78],[3,-19],[9,-52],[15,-92],[-12,-61],[-3,-16],[-1,-1],[-3,-18],[-2,-8],[0,-2],[-4,-19],[0,-1],[-3,-16],[-2,-50],[-2,-61],[10,-27],[8,-19],[0,-1],[5,-13],[5,-15],[1,-1],[0,-1],[15,-40],[23,-73],[13,-18],[23,-35],[5,-4],[2,-2],[7,-7],[19,-19],[1,-4],[1,-4],[1,-2],[10,-34],[9,-31],[1,-26],[0,-1],[2,-31],[8,-12],[1,-1],[0,-1],[13,-21],[-1,-3],[-5,-8],[-6,-13],[-25,-47],[24,-58],[13,-14],[7,-8],[23,-25],[21,-13],[4,-3],[2,-1],[15,-9],[-17,-33],[-1,-2],[-1,-1],[-8,-15],[23,-41],[36,-79],[38,-56],[0,-14],[0,-4],[0,-52],[37,-93],[32,13],[4,1],[17,-7],[4,-2],[28,-11],[17,-40],[24,-65],[-23,-13],[-18,-11],[22,-62],[19,-3],[3,-1],[5,0],[9,-2],[6,0],[7,-68],[19,-9],[2,-36],[-20,-10],[-1,-1],[-7,-4],[0,-25],[0,-2],[1,-38],[4,-3],[22,-18],[6,-4],[-14,-9],[-9,-7],[-2,-1],[-5,-4],[-26,-28],[-8,-8],[-13,13],[-6,5],[-25,24],[-28,24],[-3,-34],[9,-46],[-22,-24],[-4,-3],[-2,-1],[-22,-17],[-2,-33],[-1,-14],[4,-47],[3,-23],[5,-16],[0,-2],[9,-31],[7,-28],[1,-2],[0,-1],[6,-23],[22,-67],[32,-88],[1,-2],[18,-65],[13,-42],[1,-5],[1,-2],[11,-37],[8,-19],[0,-1],[2,-6],[19,-50],[39,-20],[15,-53],[7,-22],[1,-3],[6,-17],[8,-53],[2,-79],[0,-6],[0,-8],[-1,-53],[-22,-80],[-1,-2],[-2,-2],[-16,-22],[0,-1],[-2,-2],[-10,-13],[-37,-58],[-20,-46],[-5,-13],[-1,-1],[-13,-31],[-22,-52],[-35,-40],[-4,-6],[-1,0],[0,-1],[-37,-43],[-17,-19],[-3,-3],[-18,-20],[-16,-4],[-18,-4],[-33,-58],[-48,-64],[-49,-45],[-43,-54],[-22,-27],[-9,-13],[-1,0],[0,-1],[-15,-19],[-20,-25],[-1,-1],[-22,-26],[-43,-54],[-43,-28],[-37,-29],[-3,-3],[-3,-3],[-10,-18],[-7,-14],[-33,-52],[-33,-49],[-12,-17],[-26,-26],[-12,-13],[-31,-3],[-24,-13],[-1,-1],[-17,-9],[-2,-1],[-4,-2],[-21,-9],[-19,-9],[-46,-21],[-67,-33],[-26,-10],[-12,-4],[-56,-4],[-40,-33],[-25,-20],[-3,-5],[-2,-4],[-24,-32],[-9,-7],[-41,-31],[-32,-34],[-12,-12],[-47,-32],[-15,-6],[-34,-13],[-24,-49],[-1,-4],[-1,-3],[-13,-56],[-11,-8],[-19,-14],[-26,-24],[-19,-19],[-37,-48],[-5,-5],[-19,-18],[-25,-25],[-11,-7],[-22,-16],[-36,-32],[-20,-14],[-16,-12],[-20,-7],[-3,-1],[-26,-8],[-27,-6],[-4,-1],[-9,-1],[-13,-3],[-3,0],[-22,-4],[-19,2],[-1,0],[-36,5],[-19,-7],[-1,0],[-17,-6],[-25,-20],[-41,-35],[-30,-5],[-15,-2],[-35,-7],[-9,-14],[-16,-28],[-34,-37],[-4,-2],[-1,-1],[-5,-2],[-33,-16],[-35,14],[-45,-20],[-12,-8],[-20,-14],[-48,-42],[-21,-17],[-18,-13],[-15,1],[-6,1],[-15,1],[-22,-31],[-3,-8],[-2,-6],[-17,-50],[-6,-31],[-1,-6],[-3,-17],[-15,-53],[-8,-74],[-2,-23],[-12,-28],[-19,-43],[-43,-55],[-46,-100],[-7,-43],[-2,-12],[1,-65],[-2,-51],[0,-5],[-1,-26],[4,-83],[-2,-81],[-6,-56],[-3,-48],[-22,-69],[-53,-49],[-2,-2],[-21,-16],[-16,-2],[-1,0],[-1,0],[-24,-3],[-33,7],[-26,-25],[-1,-1],[-7,-7],[-6,-18],[-16,-51],[-10,-28],[-10,-27],[-6,-10],[-4,-7],[-12,-23],[-46,-39],[-21,-5],[-37,-7],[-23,-56],[0,-2],[-2,-4],[0,-1],[-8,-24],[-16,-47],[-18,-20],[-3,-5],[-1,0],[-19,-23],[-30,-35],[-8,-9],[-33,-49],[-14,-20],[0,-1],[-14,-20],[-34,-29],[-21,-96],[-26,-100],[-34,-32],[-26,-25],[-5,-5],[-1,-6],[-1,-10],[-3,-14],[0,-3],[-3,-22],[-17,-95],[-36,-78],[-13,-5],[-1,0],[-1,0],[-22,-9],[-37,-32],[-6,-37],[-5,-35],[-14,-62],[-3,-19],[-1,-1],[-8,-40],[-12,-58],[-10,-69],[-12,-69],[0,-60]],[[7926,45867],[0,-1],[-9,-19],[-4,-10],[-1,-1],[0,-1],[-13,-52],[-2,-9],[0,-1],[-2,-9],[-11,-50],[-29,-38],[-6,-16],[0,-1],[-1,-1],[-9,-28],[-46,-70],[-32,-44],[-12,-8],[-13,-8],[-14,-28],[-19,3],[-9,1],[-17,15],[-3,2],[-5,5],[-11,3],[-29,9],[-23,7],[-21,-17],[-27,-21],[-27,-25],[-3,-3],[-12,-11],[-32,-24],[-3,-3],[-55,12],[-26,42],[-4,7],[-19,-9],[-9,-5],[-1,0],[-18,-9],[-39,-60],[-29,-34],[-26,-11],[-24,-12],[-40,15],[-41,-7],[-20,-14],[-1,-1],[-21,-14],[-49,-47],[-52,-14],[-18,-10],[-2,-1],[-24,-15],[-40,-8],[-35,-20],[-7,-7],[-7,-8],[-1,-1],[-30,-32],[-24,-20],[-14,-11],[-16,1],[-20,1],[-12,24],[-5,8],[-6,13],[-38,-1],[-24,-42],[-6,-10],[-54,-75],[-43,-6],[-24,35],[-18,-10],[-4,-2],[-43,-13],[-32,-68],[-24,-44],[-41,-28],[-35,-35],[-35,-4],[-41,-38],[-42,-46],[-28,-26],[-26,-60],[-25,-51],[-29,-42],[-36,-23],[-35,5],[-1,0],[-4,0],[-21,-1],[-4,0],[-6,0],[-14,-8],[-31,-17],[-44,-6],[-37,-32],[-11,-18],[-1,-1],[-11,-19],[-34,-10],[-7,-3],[-26,-11],[-8,-4],[-12,-6],[-2,-1],[-17,-9],[-25,-8],[-1,0],[-2,-1],[-18,-6],[-58,-15],[-8,-2],[-25,-20],[-2,-2],[-13,-11],[-1,-3],[-2,-7],[-3,-11],[-11,-37],[-21,-51],[-21,-43],[-49,-53],[-9,-12],[-16,-21],[-29,-37],[-7,-3],[-24,-11],[-5,2],[-4,1],[-13,5],[0,1],[-8,3],[-1,-2],[-5,-8],[-5,-10],[0,-1],[-5,-7],[-83,-17],[-22,17],[14,31],[1,1],[2,4],[11,25],[-15,41],[-1,4],[-1,1],[-1,4],[-7,-3],[-40,-19],[-32,3],[-4,6],[-5,8],[-8,13],[-10,16],[-13,-5],[-1,0],[-11,-4],[-22,-43],[-9,-27],[0,-1],[-16,-49],[-4,-33],[-3,-17],[0,-3],[-4,-29],[-13,-65],[-17,-26],[0,-1],[-1,-1],[-10,-16],[-53,-44],[-34,-48],[-6,-9],[-46,-65],[-48,-60],[-40,-47],[-37,-37],[-53,-36],[-15,-4],[-1,-1],[-2,0],[-24,-8],[-26,-36],[-8,-11],[-49,-46],[-33,-49],[-29,-38],[-13,-16],[-1,-3],[-19,-23],[-30,-26],[-29,-12],[-30,2],[-24,24],[-19,31],[-25,-10],[-7,-29],[0,-1],[-5,-16],[-7,-32],[-5,-19],[-2,-15],[-8,-48],[-25,-92],[-8,-49],[-8,-93],[-18,-56],[-2,-5],[-9,-28],[-33,-70],[-3,-3],[-3,-2],[-22,-21],[-38,-41],[-27,-45],[-11,-9],[0,-1],[-1,0],[-21,-19],[-33,-40],[-33,-44],[-4,-6],[-20,-30],[-3,-3],[0,-1],[-3,-5],[-30,-41],[-7,-10],[-26,-32],[-29,-35],[-49,-37],[-20,-14],[-23,-15],[-14,-9],[-21,-13],[-28,-12],[-8,-3],[-40,-12],[-1,-1],[-1,0],[-23,-13],[-41,-23],[-30,-29],[-32,-41],[-6,-7],[-20,-19],[-25,-25],[-64,-70],[-28,-19],[0,-1],[-1,0],[-18,-13],[-31,-48],[-8,-13],[-12,-17],[-8,-8],[-4,-4],[0,-1],[-33,-33],[-40,-36],[-6,-5],[-28,-34],[-46,-44],[-38,-37],[-12,-9],[-34,-25],[-41,-44],[-4,-5],[-41,-38],[-31,-30],[0,-1],[-3,-2],[-27,-27],[-38,-40],[-29,-24],[-32,-21],[-22,-8],[-15,-6],[-15,-23],[-12,-19],[-28,-31],[-1,-1],[-10,-11],[-23,-31],[-33,-12],[-4,-2],[-1,0],[-7,-3],[-24,-10],[-3,-2],[-23,-10],[-38,-48],[-7,-6],[-2,-1],[-3,-3],[-50,-45],[-20,-26],[-19,-24],[-26,-36],[-43,-42],[-62,-36],[-61,-49],[-25,-14],[-14,-7],[-24,-22],[-48,-50],[-34,-28],[-42,-10],[-35,18],[-42,-41],[-7,-3],[-41,-15],[-23,-9],[-1,-3],[-15,-28],[-1,-1],[-3,-5],[0,-1],[-2,-4],[-5,-12],[-3,-8],[-13,-34],[-24,-32],[-8,-11],[0,-1],[-13,-19],[-32,-32],[-6,-6],[-24,-17],[-27,-20],[-13,-8],[-31,-22],[-2,-2],[-30,-34],[-4,-4],[-1,-1],[-6,-7],[-23,-26],[-13,-14],[-29,-20],[-43,-49],[-25,-22],[-10,-9],[-36,-18],[-23,-24],[-1,-1],[-14,-15],[-23,-17],[-11,-7],[-16,-9],[-37,-21],[-17,-11],[-20,-13],[-7,-8],[-22,-23],[-26,-27],[-43,-32],[-63,-40],[-42,-29],[-27,-33],[-9,-17],[-1,-1],[-8,-15],[-8,-4],[0,-1],[-22,-10],[-15,-5],[-2,-1],[-6,-2],[-38,-46],[-33,-19],[-33,-22],[-14,-11],[-3,-3],[-1,0],[-18,-15],[-35,-21],[-33,-31],[-34,-27],[-8,-7],[-20,-17],[-14,-4],[-1,0],[-12,-3],[-13,-10],[-1,0],[-12,-9],[-36,-26],[-33,-25],[-30,-16],[-16,-8],[0,-1],[-1,0],[-18,-10],[-25,-24],[-29,-19],[-38,-35],[-16,-10],[-35,-20],[-61,-36],[-35,-22],[-66,-42],[-35,-18],[-34,-21],[-45,-29],[-43,-27],[-28,-18],[-12,-7],[-45,-29],[-27,-17],[-17,-5],[-19,-5]],[[12,39229],[-1,97],[-11,5239],[0,79],[10465,6953],[243,1114],[8,59],[121,420],[0,147],[-2,373],[-43,220],[-123,296],[-171,197],[-367,41],[-168,242],[-463,365],[-108,211],[-41,475],[147,285],[82,400],[72,193],[-98,220],[-844,264],[-16,83],[71,154],[26,35],[19,27],[105,348],[-3,32],[-2,17],[-5,36],[-18,65],[-31,49],[-90,94],[130,136],[29,12],[38,52],[20,50],[38,78],[74,72],[17,116],[-6,124],[-18,58],[-2,24],[-7,66],[-22,142],[-56,116],[-28,139],[8,225],[50,356],[-99,225],[44,291],[-34,346],[14,213],[-16,131],[-183,171],[-1648,4162],[6454,3997],[8732,0],[15220,0],[3605,8161],[920,2081],[494,405]],[[42534,80008],[371,-249],[2,-15],[34,-18],[16,7],[2,1],[17,6],[13,5],[22,9],[26,10],[8,-11],[4,-5],[9,-13],[7,-9],[-4,-12],[0,-1],[-3,-8],[-12,-35],[-20,-49],[21,-24],[10,-12],[-20,-62],[-3,-9],[-5,-31],[-3,-17],[33,23],[34,25],[44,29],[41,19],[6,-9],[1,-1],[3,-5],[12,-19],[5,-6],[14,-21],[13,-54],[-7,-12],[-21,-34],[-51,-63],[-9,-8],[-1,-1],[-14,-14],[-19,-23],[-3,-4],[-15,-18],[-37,-51],[-10,-25],[-15,-36],[4,-56],[31,-17],[36,3],[6,1],[9,1],[43,4],[48,10],[29,23],[32,24],[14,9],[31,21],[26,7],[20,6],[9,-13],[1,-3],[12,-18],[5,-6],[0,-1],[4,-6],[9,4],[1,0],[16,6],[32,16],[3,5],[1,1],[21,28],[41,31],[52,32],[22,14],[1,1],[11,8],[14,11],[13,12],[9,7],[2,2],[12,-25],[7,-14],[-4,-7],[-21,-29],[-15,-8],[-1,0],[-16,-9],[-39,-13],[-24,-29],[-25,-25],[-22,-17],[-5,-3],[-40,-41],[-29,-24],[-23,-4],[-25,-20],[1,-19],[0,-1],[0,-22],[-3,-43],[17,-30],[11,1],[12,1],[28,-28],[6,-5],[46,-6],[45,-21],[8,-9],[27,-32],[40,-12],[12,4],[20,9],[28,-3],[25,-24],[11,4],[1,0],[19,6],[36,18],[38,-8],[49,-12],[6,-1],[2,-60],[1,-22],[-30,-74],[-12,-30],[44,-67],[1,-3],[2,-16],[4,-28],[-6,-14],[-2,-6],[-12,-32],[-5,-9],[-4,-6],[-39,-63],[1,-40],[0,-1],[0,-1],[2,-52],[-1,-30],[-2,-44],[-10,-18],[-10,-16],[-21,-22],[-34,-39],[-1,-2],[-4,-5],[-18,-26],[21,-28],[19,-25],[14,-21],[7,-10],[2,-3],[13,-20],[20,-52],[-10,-81],[-7,-19],[-8,-25],[13,-58],[33,-25],[17,-7],[12,-6],[41,15],[27,13],[32,22],[27,6],[12,2],[14,-7],[3,-1],[15,-7]],[[43476,78460],[12,74],[-16,-10],[-19,-12],[-38,-27],[-9,-27],[-8,-24],[-11,-60],[-7,-22],[-11,-34],[-14,-29],[36,-10],[34,4],[1,0],[19,-18],[29,-29],[37,-31],[8,78],[-18,69],[-30,43],[-22,19],[-6,6],[13,16],[20,24]],[[42932,78261],[14,2],[27,5],[15,-1],[49,-4],[13,9],[20,14],[33,31],[59,50],[18,23],[19,24],[18,50],[10,60],[37,45],[-18,47],[9,35],[1,2],[11,37],[-15,13],[-18,17],[-44,4],[-22,1],[-16,0],[-9,-6],[-15,-10],[-38,-20],[-34,-17],[-33,-14],[-8,5],[-24,15],[-20,6],[-18,6],[-41,-14],[-12,-13],[-12,-15],[-8,-10],[-12,-14],[-37,-45],[-1,-3],[-26,-38],[-7,-34],[-7,-28],[-2,-8],[-17,-39],[-9,-36],[-5,-20],[27,-11],[29,-10],[-1,-74],[5,-3],[4,-1],[11,-5],[15,-7],[49,-9],[36,8]],[[42531,75747],[-22,-30],[-2,-3],[-19,-4],[-22,-5],[-30,10],[-26,6],[-9,1],[-15,-20],[-20,-26],[-17,-22],[-18,-22],[-50,-49],[-7,-7],[-33,-28],[-31,-34],[-44,-46],[-38,-53],[-34,-70],[-36,-62],[-18,-35],[-21,-39],[-39,-60],[-9,-27],[-10,-30],[-4,-12],[-1,-1],[-4,-14],[17,-20],[14,-17],[52,15],[27,24],[46,41],[27,-3],[24,-3],[55,19],[23,20],[25,22],[9,9],[2,1],[18,18],[35,30],[25,20],[11,10],[21,16],[4,3],[8,6],[26,17],[15,12],[24,17],[11,4],[18,6],[32,13],[10,10],[29,29],[15,20],[12,15],[13,13],[2,2],[28,27],[31,30],[23,57],[19,58],[20,65],[7,23],[32,9],[13,17],[13,15],[4,6],[-18,15],[-31,27],[-27,-4],[-19,-3],[-11,-2],[-22,7],[-27,9],[-53,-7],[-24,-16],[-29,-20]],[[43608,75417],[-35,-27],[-75,-10],[-33,21],[-42,-16],[-49,-46],[-47,-45],[-47,-48],[-34,-37],[-29,-42],[-29,-84],[-21,-57],[-1,-2],[-31,-66],[-3,-33],[-5,-45],[44,8],[28,36],[17,11],[21,16],[31,1],[7,0],[13,0],[-21,-81],[50,-21],[8,-4],[16,-9],[11,-6],[31,17],[31,36],[44,25],[32,67],[29,72],[19,60],[6,20],[7,21],[24,38],[25,58],[43,75],[2,4],[17,32],[16,30],[13,24],[10,17],[3,23],[3,20],[0,2],[1,3],[4,28],[4,26],[1,6],[1,4],[9,35],[12,54],[2,11],[5,25],[8,33],[-32,2],[-7,1],[-49,-24],[-35,-43],[-25,-60],[3,-27],[6,-63],[2,-59],[-9,-7]],[[44821,75165],[16,-41],[33,15],[49,82],[-53,33],[-36,-45],[-6,-29],[-3,-15]],[[44708,75026],[19,-26],[2,-3],[3,-5],[31,-4],[14,11],[12,10],[8,70],[-20,-8],[-14,-5],[-7,-6],[-4,-2],[-44,-32]],[[10298,54482],[122,-1],[11,70],[-15,59],[-64,150],[-7,56],[-45,159],[11,51],[0,76],[5,56],[21,90],[26,62],[39,63],[14,21],[16,22],[77,95],[118,122],[75,49],[52,37],[96,38],[64,40],[47,53],[21,53],[3,64],[-15,61],[-18,57],[-13,70],[-2,61],[-15,54],[-29,68],[-52,61],[-63,46],[-27,15],[-25,24],[-24,36],[-12,35],[-52,37],[-54,19],[-53,15],[-38,35],[-22,8],[-41,21],[-44,50],[-32,24],[-22,21],[-41,15],[-27,1],[-46,-15],[-36,-12],[-63,-25],[-55,-13],[-47,4],[-28,13],[-36,16],[-49,33],[-99,0],[-31,0],[-10,-1],[-33,0],[-42,27],[-44,0],[64,-117],[-18,-147],[-78,-171],[-24,-55],[-29,-112],[-29,-199],[-88,-161],[-45,-96],[-11,-108],[22,-245],[36,-144],[64,-124],[185,-167],[142,-115],[115,-99],[194,-280],[153,-6]],[[35588,60997],[17,-14],[15,17],[4,5],[10,52],[-7,40],[-22,52],[-30,-12],[-27,-5],[-13,-3],[-13,-33],[10,-47],[2,-12],[38,-27],[16,-13]],[[45448,78051],[-21,35],[-27,-17],[-51,-70],[-45,-51],[-18,-19],[-25,-26],[-13,-25],[-15,-28],[42,9],[22,14],[23,15],[11,9],[1,0],[18,13],[20,24],[11,20],[5,9],[25,20],[22,26],[15,42]],[[81255,89622],[-6,-1],[-451,-56],[-329,-43],[-197,-25],[-28,-4],[-13,-2],[-3,0],[-80,-10],[-216,-28],[-92,-12],[-28,-4],[-127,-16],[-16,-2],[-12,-33],[8,-18],[-10,-30],[2,-8],[4,-5],[21,-8],[6,-15],[12,-44],[1,-1],[-3,-11],[-8,-13],[-13,-18],[-18,-28],[0,-9],[19,-40],[3,-3],[44,-45],[3,-3],[-1,-44],[-4,-2],[-33,-20],[-6,-3],[-19,-11],[-1,-1],[-47,-107],[-1,-1],[-32,-70],[-1,-4],[-15,-65],[-15,-2],[-4,0],[-32,-37],[-17,-11],[-14,-95],[-31,-10],[-6,0],[-22,-4],[-15,-6],[-11,-8],[-24,-13],[-26,-10],[-5,-5],[-9,-10],[-8,-15],[-44,-144],[-4,-13],[-1,-2],[-14,-88],[-11,-8],[-14,1],[-8,15],[-10,19],[-10,9],[-4,1],[-11,4],[-27,-7],[-52,-21],[-76,14],[-27,8],[-16,5],[-20,17],[-9,9],[-7,3],[-10,1],[-10,4],[-12,7],[-11,6],[-5,-1],[-4,-14],[-13,-19],[-22,-22],[-116,-28],[-8,-2],[-2,-1],[-2,0],[-59,-4],[-8,-11],[-11,-17],[-1,-1],[-2,-3],[-1,-1],[-17,-18],[-1,-1],[-1,-2],[-3,-1],[-1,-1],[-14,-9],[-1,-1],[-2,-1],[-13,-6],[-13,-7],[-43,-21],[-44,-26],[-10,-10],[-26,-37],[-1,-1],[-1,-2],[-14,-17],[-1,0],[-1,-2],[-2,-1],[0,-1],[-2,-11],[-6,-54],[-3,-25],[-6,-14],[-16,-39],[-2,-4],[-11,-15],[-9,-12],[-27,-28],[-60,-63],[-23,-17],[-2,-2],[-2,-1],[-2,-1],[-2,0],[-106,-29],[-1,0],[-1,0],[-75,-13],[-6,-2],[-1,0],[-1,0],[-58,-4],[-13,-1],[-15,-1],[-7,-2],[-11,-8],[-8,-7],[-82,-106],[-1,-1],[-2,-2],[0,-1],[-31,-30],[-1,-1],[-1,-1],[-20,-17],[-2,-1],[0,-1],[-31,-21],[-1,0],[-3,-2],[-20,-9],[-2,-1],[-3,-1],[-1,0],[-16,-2],[-1,0],[-2,-1],[-3,1],[-2,0],[-1,0],[-29,9],[-1,1],[-2,0],[-1,1],[-31,16],[-1,0],[-1,1],[-49,30],[-1,1],[-8,6],[-16,8],[-21,8],[-15,3],[-2,0],[-9,-4],[-2,-3],[-11,-18],[-1,-2],[-1,-1],[-28,-39],[0,-1],[-2,-2],[-11,-13],[-2,-2],[-2,-2],[-1,-1],[-9,-7],[-2,-1],[-2,-2],[-105,-57],[-2,-1],[-2,-1],[-70,-25],[-32,-15],[-10,-7],[-4,-4],[-1,-2],[-30,-49],[-35,-58],[-22,-18],[-24,-14],[-40,-10],[-26,-4],[-15,-2],[-12,-2],[-16,-5],[-14,-5],[-15,9],[-21,14],[-11,12],[-7,8],[-1,0],[-24,6],[-38,9],[-21,-5],[-1,0],[-19,-17],[-18,-8],[-16,2],[-3,0],[-2,1],[-32,13],[-25,11],[-23,12],[-19,3],[-21,-9],[-15,-8],[-12,-10],[-4,-8],[-9,-9],[0,2],[-1,18],[-2,39],[-2,55],[-13,-2],[-80,-8],[-29,-3],[-47,-5],[-60,-5],[-21,-3],[-20,-2],[-70,-8],[-26,-3],[-35,-6],[-44,-2],[-112,-10],[-44,-4],[-2,-1],[-15,-7],[-273,-37],[-21,-2],[-254,-31],[-131,-18],[-459,-66],[-443,-64],[-287,-43],[-157,-21]],[[74030,87030],[-14,159],[-19,226],[-3,43],[-24,291],[-19,210],[-7,86],[-3,31],[-15,196],[-17,191],[-3,43],[-4,53],[-2,27],[-1,30],[0,7],[0,23],[-3,38],[-6,63],[0,2],[-4,39],[-20,191],[-64,630],[-62,613],[-3,36],[-1,13],[-32,-6],[-25,-4],[-107,-19],[-11,116],[-1,6],[-7,67],[-5,62],[-54,632],[-19,227],[-13,162],[-4,50],[-4,46],[-51,586],[-5,59],[-46,522],[-5,59],[-5,61],[-4,53],[-22,262],[-149,-17],[-46,-6],[-16,-2],[-45,-5],[-38,515],[-9,122],[-2,26],[-9,116],[-11,112],[-2,44],[-14,171],[-8,104],[-3,49],[-16,158],[-13,127],[-11,109],[-6,56],[-6,59],[-6,56],[-7,65],[-3,36],[-3,34],[0,4],[-2,41],[-4,52],[-1,5],[-2,24],[-4,54],[-2,27],[-1,20],[-1,12],[-4,37],[-16,131],[-5,32],[-4,49],[-6,41],[-15,145],[-11,107],[-3,26],[-9,92],[1,76],[2,102],[0,49],[0,39],[2,115],[4,96],[-1,114],[1,198],[0,1],[-1,53],[-4,109],[-4,153],[-1,25],[-3,32],[-2,27],[-4,44],[-7,79],[-7,68],[-5,49],[-18,139],[-3,23],[-3,24],[-7,57],[-13,70],[1,24],[-5,46],[-15,112],[-22,181],[-2,19],[-8,56],[-3,26],[-6,44],[-4,36],[-15,131],[-12,114],[-3,29],[-6,53],[-9,84],[-7,62],[-10,95],[-2,26],[-19,169],[-10,91],[-2,26],[-3,39],[-4,46],[-3,31],[-5,58],[-4,36],[-3,45],[-4,42],[-4,50]],[[72541,99553],[57,3],[194,12],[34,2],[157,10],[192,13],[69,4],[112,7],[137,10],[134,9],[28,2],[1,0],[91,6],[133,8],[109,7],[129,8],[41,2],[82,6],[129,8],[129,6],[136,7],[149,7],[109,5],[227,6],[237,6],[38,1],[112,2],[117,3],[114,2],[90,1],[140,1],[132,1],[211,0],[78,0],[63,0],[19,0],[142,0],[167,-3],[136,-2],[78,-1],[103,0],[89,1],[102,1],[23,0],[86,5],[151,8],[160,9],[139,8],[60,3],[1,0],[92,4],[105,5],[93,5],[95,5],[110,6],[48,2],[97,6],[128,7],[128,7],[190,10],[140,8],[178,10],[91,4],[38,2],[127,6],[145,6],[95,3],[2,1],[8,0],[1,0],[3,0],[126,5],[46,2],[130,5],[126,4],[45,2],[78,2],[98,3],[1,0],[11,1],[106,3],[186,4],[45,1],[20,0],[5,0],[162,4],[63,1],[10,1],[12,0],[105,3],[-21,-88],[-6,-25],[-29,-126],[-6,-17],[-14,-45],[-3,-17],[-11,-48],[-7,-24],[-32,-65],[-9,-30],[-5,-48],[6,-58],[16,-75],[1,-6],[3,-7],[3,-11],[28,-78],[32,-66],[34,-54],[14,-17],[43,-56],[2,-3],[12,-18],[7,-13],[5,-23],[5,-92],[-15,-204],[-4,-97],[-3,-72],[1,-61],[4,-171],[9,-199],[0,-47],[-2,-59],[-3,-27],[-8,-38],[-18,-39],[-44,-43],[-41,-31],[-5,-4],[-37,-41],[-35,-45],[-9,-18],[-23,-47],[-51,-157],[-1,-2],[-19,-107],[-20,-124],[-37,-254],[-33,-181],[-3,-18],[-15,-38],[-16,-39],[-18,-24],[-30,-19],[-6,-4],[-3,-9],[-12,-38],[-8,-14],[-2,-4],[-20,-13],[-4,-14],[0,-20],[4,-44],[2,-22],[-7,-22],[-7,-22],[-8,-14],[-3,-29],[11,-25],[0,-1],[0,-20],[-1,-1],[-2,-11],[-8,-25],[5,-9],[16,-17],[2,-6],[1,-14],[-5,-52],[2,-17],[9,-38],[4,-11],[8,-9],[17,-8],[9,-5],[6,-6],[11,-15],[20,-46],[0,-1],[22,-62],[17,-28],[24,-30],[25,-29],[29,-23],[26,-16],[18,-16],[4,-4],[20,-14],[6,-3],[30,-31],[20,-24],[7,-9],[12,-28],[13,-32],[17,-30],[13,-18],[20,-22],[15,-16],[15,-15],[9,-14],[14,-25],[24,-57],[40,-54],[35,-36],[2,-5],[7,-22],[4,-26],[4,-44],[3,-34],[3,-33],[0,-2],[7,-171],[0,-4],[-1,-5],[-4,-57],[-2,-25],[-7,-24],[-13,-32],[-10,-22],[-13,-18],[-27,-36],[-17,-19],[-18,-16],[-18,-19],[-19,-27],[-10,-21],[-16,-38],[-8,-28],[-3,-29],[-4,-17],[-10,-43],[-6,-28],[-13,-39],[-8,-26],[-8,-39],[-6,-34],[-4,-20],[-2,-10],[-22,-81],[-14,-33],[-5,-13],[-12,-20],[-14,-32],[-12,-20],[-27,-38],[-16,-29],[-14,-25],[-11,-30],[-10,-28],[-7,-34],[-1,-7],[0,-19],[3,-70],[3,-39],[2,-42],[0,-101],[0,-25],[-1,-65],[-5,-128],[2,-29],[1,-83],[0,-57],[0,-22],[-5,-59],[0,-15],[5,-86],[-2,-29],[-4,-61],[-1,-22],[9,-38],[1,-1],[16,-6],[21,-6],[10,-16],[-4,-34],[-4,-13],[-14,-34],[-12,-29],[-8,-34],[-3,-14],[-6,-12],[-11,-14],[-22,-20],[-19,-17],[-6,-18],[2,-11],[1,-2],[13,-23],[16,-30],[1,-72],[-36,-10],[-3,-2],[-14,-14],[-1,-3],[1,-16],[0,-21],[8,-33],[-2,-40],[-7,-27],[-11,-43],[8,-23],[19,-25],[10,-22],[-1,-56],[-14,-12],[-29,4],[-2,-2],[-15,-15],[-9,-19],[-5,-15],[-6,-24],[-13,-25],[-16,-21],[-8,-9],[1,-24],[1,-12],[12,-29],[-4,-37],[-10,-22],[-13,-25],[-13,-23],[-18,-16],[-5,-4],[-13,-11],[-6,-21],[17,-20],[31,-59],[9,-14],[1,0],[8,-14],[5,-6],[1,-17],[-31,-26],[-14,-11],[-47,-42],[-16,-29],[4,-35],[13,-60],[0,-1],[0,-2],[-8,-86],[-7,-70],[-8,-34],[-27,-58],[-2,-37],[1,-19],[3,-9],[10,-29],[32,-31],[31,-42],[20,-39],[0,-9],[2,-46],[11,-59],[17,-60],[25,-41],[1,-2],[2,-4],[15,-62],[2,-7],[-2,-43],[-21,-48],[-9,-20],[-23,-23],[-10,-27],[-5,-16],[10,-36],[11,-20],[12,-22],[5,-8],[22,-33],[17,-42],[2,-18],[3,-34],[2,-46],[1,-43],[14,-30],[23,-33],[29,-43],[14,-35],[12,-34],[0,-1],[3,-9],[8,-21],[45,-49],[2,-2],[15,-20],[18,-13],[27,-61],[13,-33],[14,-35],[32,-15],[27,-10],[21,-14],[90,-83],[4,-3],[17,-34],[26,-32],[6,-24],[0,-8],[1,-8]],[[63703,99529],[6,-84],[6,-79],[12,-162],[3,-45],[2,-25],[0,-1],[3,-36],[9,-103],[11,-141],[6,-73],[16,-172],[100,0],[16,0],[161,0],[68,0],[16,0],[14,-2],[10,0],[5,0],[99,-2],[2,0],[118,0],[39,-1],[16,0],[28,-1],[59,-1],[35,1],[206,-2],[15,-198],[19,-228],[2,-31],[8,-89],[6,-77],[7,-93],[11,-135],[6,-75],[7,-82],[4,-58],[6,-93],[6,-69],[5,-66],[11,-133],[4,-47],[18,-235],[9,-133],[6,-89],[6,-94],[4,-24],[3,-29],[3,-33],[2,-22],[2,-20],[0,-2],[9,-120],[19,-250],[3,-44],[12,-137],[5,-62],[4,-48],[2,-30],[5,-65],[6,-72],[3,-45],[6,-67],[4,-56],[4,-56],[6,-78],[9,-114],[1,-8],[10,-128],[12,-162],[3,-40],[11,-125],[6,-78],[3,-41],[2,-22],[4,-43],[11,-140],[6,-76],[9,-112],[5,-57],[3,-39],[8,-108],[5,-60],[5,-68],[3,-47],[13,-166],[3,-36],[0,-3],[3,-33],[2,-31],[1,-14],[8,-97],[3,-37],[4,-50],[6,-71],[16,-181],[4,-36],[8,-84],[11,-116],[8,-85],[5,-62],[3,-38],[0,-2],[17,-176],[4,-36],[2,-25],[1,-11],[8,-70],[4,-36],[6,-58],[25,-257],[25,-237],[0,-2],[24,-244],[14,-129],[4,-64],[20,-184],[7,-76],[12,-133],[3,-29],[15,-168],[28,-333],[6,-80],[8,-94],[10,-115],[16,-193],[20,-230],[5,-70],[9,-114],[14,-178],[10,-135],[3,-40],[8,-102],[24,-314],[6,-86],[3,-38],[2,-29],[3,-33],[3,-34],[43,-513],[2,-30],[8,-82],[13,-152],[47,-525],[30,-362],[0,-9],[31,-389],[6,-76],[19,-222],[4,-35],[9,-112],[9,-102],[10,-112],[0,-22],[1,-35],[23,-239],[22,-227],[34,-357],[6,-64],[7,-67],[0,-1],[14,-144],[7,-73],[41,-427],[75,-777],[3,-33],[18,-190],[12,-120],[9,-128],[11,-133],[8,-110],[3,-28],[1,-14],[6,-80],[1,-21],[4,-52],[1,-13],[8,-98],[4,-51],[6,-66],[3,-41],[0,-1],[7,-98],[0,-1],[5,-57],[17,-223],[10,-141],[1,-1],[7,-93],[1,-13],[6,-89],[7,-88],[2,-25],[7,-92],[-72,-8],[-25,-3],[-65,-7],[-76,-9],[10,-137],[1,-8],[24,-323],[12,-167],[15,-195],[7,-93],[4,-50],[3,-29],[12,-161],[1,-9],[29,-381]],[[66119,79718],[-330,-54],[-129,-21],[-250,-42],[-45,-8],[-84,-14],[-78,-14],[-216,-37],[-93,-16],[-37,-6],[-17,-3],[-60,-10],[-102,-16],[-225,-38],[-309,-50],[-56,-10],[-65,-10],[-61,-11],[-120,-19],[-44,-8],[-252,-43],[-140,-14],[-7,-2],[-227,-33],[-166,-25],[-260,-40],[-211,-32],[-30,-5],[-421,-64]],[[62084,79073],[-36,-5],[-28,-5],[-195,-31],[-102,-17],[-83,-14],[-58,-9],[-77,-13],[-47,-8],[-26,-4],[-472,-78],[-34,-4],[-69,-12],[-155,-26],[-18,-3],[-143,-24],[-159,-27],[-138,-23],[-178,-31],[-55,-9],[-316,-52],[-46,-8],[-204,-33],[-71,55],[-14,10],[-7,6],[-6,4],[-63,47],[-2,2],[-57,43],[-481,363],[-81,64],[-129,98],[-68,51],[-58,44],[-138,105],[-18,13],[-165,125]],[[58087,79667],[-22,18],[-216,164],[-171,129],[-96,73],[-100,76],[-52,39],[-116,88],[-18,14],[-28,21],[-186,138],[-146,107],[-19,14],[-49,36],[-13,10],[-114,85],[-21,14],[-14,11],[-63,47],[-50,37],[-281,207],[-1,1],[-18,14],[-49,36],[-48,41],[-153,130],[-6,5],[-11,10],[-212,167],[-36,29],[-55,44],[-47,36],[-64,50],[-111,90],[-92,70],[-77,59],[-134,103],[-3,2],[-183,141],[-415,315]],[[54597,82338],[-71,52],[-35,26],[-28,18],[-15,2],[-65,60],[-33,13],[-14,5],[-17,28],[-30,34],[-33,30],[-13,9],[-34,11],[-16,9],[-11,10],[-24,25],[-53,39],[-13,13],[-36,43],[-21,15],[-31,4],[-18,15],[-13,31],[-19,26],[-27,23],[-68,54],[-12,10],[-39,30],[-16,12],[-20,24],[-60,46],[-35,24],[-31,24],[-124,96],[-31,22],[-24,11],[-13,20],[-37,33],[-45,35],[-10,8],[-12,8],[-23,17],[-15,9],[-6,5],[-6,4],[-221,170],[-13,9],[-77,59],[-19,15],[-162,125],[-20,17],[-47,36],[-54,42],[-89,66],[-18,13],[-12,9],[-3,2],[-24,19],[-136,101],[-4,3],[-62,45],[-19,15],[-27,21],[-16,12],[-16,12],[-72,54],[-103,78],[-156,117],[-21,16],[-24,17],[-24,17],[-100,73],[-54,38],[-16,11],[-108,82],[-131,102],[-118,92],[-25,20],[-10,9],[-20,16],[-116,97],[-14,11],[-132,111],[-76,62],[-183,137],[-20,15],[0,1],[-154,121],[-29,22],[-215,169],[-20,17],[-144,116],[-48,38],[-133,108],[-49,41],[-23,18],[-83,68],[-16,13],[-112,91],[-75,61],[-13,11],[-264,215]],[[49360,86447],[491,634],[174,878],[514,964],[520,632],[32,52],[38,40],[265,392],[481,598],[522,575],[1456,1917],[365,341],[232,274],[431,507],[110,311],[16,45],[87,12],[1,0],[129,17],[110,135],[226,75],[5,106],[318,471],[138,-62],[400,448],[-57,184],[-13,40],[286,259],[209,146],[155,53],[190,218],[162,26],[124,208],[196,2],[111,107],[67,11],[302,230],[316,75],[67,400],[216,134],[162,-32],[106,164],[401,54],[60,110],[421,269],[274,260],[27,90],[44,82],[1,124],[82,127],[257,132],[320,31],[495,-30],[89,200],[159,164],[143,33],[137,-22],[47,91],[82,-2],[127,129],[53,22],[90,74],[104,27],[120,-95],[49,44],[148,22],[21,-83],[88,-141],[376,29],[36,-238],[200,-96],[64,-1],[107,-3],[61,92]],[[74030,87030],[-26,-5],[-49,-7],[-40,-7],[-42,-8],[-217,-38],[-40,-7],[-28,-5],[-6,-1],[-30,-5],[-48,-8],[-207,-36],[-173,-29],[-1,0],[-19,-4],[-34,-6],[-46,-6],[-29,-5],[-3,0],[-25,-4],[-74,-11],[-330,-57],[-138,-23],[-94,-16],[-137,-24],[-55,-9],[-66,-11],[-77,-12],[-31,-5],[-16,-3],[-31,-5],[-137,-22],[-14,-3],[-94,-15],[-10,-2],[-65,-10],[-143,-24],[-4,0],[-139,-30],[-213,-34],[20,-217],[2,-19],[3,-27],[9,-93],[22,-238],[12,-119],[38,-335],[18,-183],[6,-63],[14,-140],[12,-101],[2,-23],[7,-60],[3,-28],[5,-43],[0,-1],[3,-21],[3,-25],[1,-9],[4,-28],[3,-24],[5,-42],[0,-1],[3,-20],[9,-66],[3,-26],[6,-48],[4,-26],[3,-20],[4,-31],[0,-3],[8,-57],[4,-29],[4,-33],[12,-128],[0,-3],[5,-50],[2,-29],[8,-91],[3,-38],[7,-83],[6,-74],[2,-12],[4,-50],[2,-19],[2,-24],[19,-264],[12,-166],[17,-234],[16,-170],[0,-3],[4,-33],[26,-256],[16,-138],[15,-134],[28,-271],[27,-251],[21,-189],[20,-192],[20,-181],[14,-124],[1,-11],[8,-77],[21,-197],[17,-152],[10,-115],[-44,-15],[-36,-5],[-26,-4],[-19,-3],[-78,-10],[-42,-6],[-97,-16],[-50,-8],[-232,-39],[-4,-1],[-14,-2],[-177,-30],[-96,-16],[-332,-53],[-353,-57],[-121,-21],[25,0],[-43,-6],[-234,-30],[-17,-3],[-32,-5],[-102,-15],[-89,-14],[-111,-17],[-58,-9]],[[69322,80190],[-145,-23],[-47,-7],[-32,-5],[-32,-4],[-15,-3],[-40,-7],[-175,-27],[-19,-3],[-18,-3],[-13,-2],[-48,-8],[-55,-8],[-16,-2],[-1,-1],[-23,-3],[-29,-4],[0,-1],[-48,-7],[-35,-5],[-72,-12],[-65,-10],[-34,-5],[-211,-34],[-83,-10],[-5,-1],[-41,-4],[-23,-3],[-232,-34],[-168,-26],[-138,-20],[-153,-23],[-27,-4],[-23,-4],[-10,-1],[-43,-7],[-363,-55],[-272,-26],[-87,-15],[-25,-3],[-98,-15],[-111,-15],[-52,-9],[-76,-13]],[[63703,99529],[55,84],[247,108],[237,-84],[130,29],[27,94],[8,27],[47,-82],[47,-81],[23,11],[6,0],[25,0],[88,0],[63,0],[127,0],[-2,0],[39,0],[70,0],[101,-1],[98,-1],[97,-1],[122,-1],[124,-2],[124,-2],[99,-2],[116,-3],[12,0],[97,-3],[113,-2],[112,-4],[31,-1],[132,-4],[131,-4],[13,0],[2,0],[84,-3],[102,-3],[90,-3],[3,0],[80,-3],[178,-6],[114,-4],[91,-5],[122,-7],[145,-11],[22,-1],[43,-4],[145,-10],[135,-10],[15,-1],[114,-8],[128,-9],[131,-10],[117,-9],[118,-9],[190,-17],[123,-2],[194,3],[39,1],[1,0],[3,0],[1,0],[9,0],[23,0],[159,0],[199,1],[180,1],[182,0],[83,-1],[99,0],[77,-1],[108,0],[183,-2],[152,-2],[152,-2],[78,-2],[109,-2],[93,-3],[110,-3],[41,2],[155,9],[153,9],[155,10],[155,11],[154,10],[2,0],[163,10],[162,10],[163,9],[18,1],[114,7],[118,8]],[[80741,73286],[-66,-12],[-17,-3],[-5,0],[-27,-4],[-29,-3],[-20,-5],[-10,-1],[-12,-2],[-25,-3],[-91,-12],[-20,-2],[-15,-3],[-1,0],[-22,-3],[-152,-21],[-26,-4],[-124,-17],[-26,-4],[-5,-1],[-26,-4],[-15,-2],[-14,-1]],[[79993,73179],[-17,-2],[-66,-8],[-37,-5],[-47,-6],[-72,-12],[-22,-2],[-41,-6],[-18,-2],[-12,-2],[-199,-26],[-81,-12],[-63,-8],[-17,-2],[-24,-3],[-9,-1],[-51,-14],[-99,-17],[-82,-15],[-82,-14],[-40,-6],[-18,-4],[-2,-1],[-32,-6],[-125,-21],[-64,-11],[-15,-3],[-24,-4],[-178,-31],[-183,-32],[-177,-32],[-42,-8],[-35,-6],[-18,-3],[-15,-2],[-151,-27],[-64,-11],[-26,-4],[-29,-5],[-48,-9],[-32,-6],[-90,-15],[-94,-15],[-64,-11],[-41,-7],[-121,-20],[-197,-34],[-41,-7],[-83,-14],[-45,-7],[-74,-12],[-212,-35],[-108,-18],[-143,-24],[-138,-23],[-77,-13],[-53,-12],[-29,-5],[-75,-12],[-71,-12],[-133,-22],[-2,-1],[-120,-20],[-19,-3],[-14,-2],[-46,-8],[-40,-6],[-110,-18],[-11,-2],[-12,-2],[-27,-4],[-80,-14],[-159,-27],[-120,-18],[-79,-13],[-121,-20],[-46,-8],[-114,-19],[-79,-13],[-28,-5],[-13,-2],[-33,-8],[-28,-5],[-27,-5],[-41,-6],[-22,-4],[-24,-4],[-118,-19],[-13,-2],[-30,-5],[-125,-21],[-55,-9],[-15,-2],[-150,-26],[-208,-33],[-48,-8],[-50,-8],[-61,-10],[-37,-6],[-73,-12],[-34,-6],[-96,-17],[-137,-22],[-82,-13],[-107,-18],[-27,-6],[-149,-26],[-68,-12],[-332,-58],[-11,-2],[-79,-14],[-48,-8],[-13,-3]],[[72166,71869],[-17,32],[-1,38],[4,27],[27,76],[-6,41],[1,3],[9,48],[3,12],[6,84],[-3,21],[-2,10],[0,2],[0,3],[0,50],[-1,27],[7,38],[13,67],[36,70],[7,17],[12,30],[8,14],[3,4],[21,65],[5,16],[6,18],[1,2],[-1,12],[-13,31],[-25,54],[-3,6],[-9,16],[-2,2],[-11,27],[2,10],[1,5],[0,1],[20,24],[10,13],[5,15],[11,59],[3,14],[3,16],[-1,18],[-2,3],[-4,8],[-2,4],[-10,2],[-2,0],[-5,3],[-24,14],[-23,6],[-47,13],[-36,10],[-25,7],[-32,12],[-66,37],[-8,7],[-29,24],[-20,8],[-3,2],[-10,7],[-30,22],[-17,12],[-21,16],[-25,35],[-9,12],[-10,5],[-31,17],[-5,3],[-13,-11],[-9,-14],[-9,-23],[-7,-34],[-1,-6],[-2,-2],[-10,-10],[-2,-2],[-1,1],[-38,8],[-4,1],[-12,12],[-9,9],[-17,5],[-4,1],[-9,3],[-19,-3],[-28,-20],[-6,-4],[-6,2],[-17,7],[-9,3],[-1,3],[-2,3],[-18,26],[-36,27],[-21,7],[-15,4],[-11,3],[-24,2],[-14,1],[-3,1],[-37,14],[-6,3],[-5,7],[-15,23],[-22,33],[-7,10],[-23,18],[-21,6],[-14,4],[-37,20],[-15,26],[-9,15],[-11,12],[-18,5],[-31,-8],[-15,4],[-2,12],[-2,12],[7,48],[6,34],[-8,57],[-4,10],[-10,22],[-12,17],[-6,5],[-10,5],[-66,31],[-6,4],[-53,9],[-21,-3],[-6,-1],[-26,-3],[-28,-15],[-36,-31],[-6,-9],[-6,-9],[-8,-6],[-9,-7],[-4,-3],[-20,0],[-15,4],[-33,10],[-9,-3],[-43,-37],[-6,-6],[-13,-6],[-15,-7],[-2,-1],[-12,-2],[-11,2],[-48,7],[-90,4],[-22,-5],[-34,-18],[-7,-11],[-3,-5],[-1,-2],[-4,-3],[-19,-13],[-14,-10],[-24,-1],[-19,0],[-26,-18],[-12,-14],[-9,-26],[-32,-48],[-3,-5],[-25,-37],[-2,-3],[-52,-68],[-3,-3],[-7,-5],[-10,16],[-44,70],[-85,139],[-32,52],[-105,168],[-28,46],[-150,243],[-16,26],[-24,38],[-28,46],[-2,4],[-177,287],[-24,40],[-19,30],[-131,216],[-69,112],[-93,148],[-108,178],[-1,1],[-118,190],[-117,193],[-172,277],[-5,11],[9,8],[218,210],[205,195],[2,1],[69,70],[54,54],[233,225],[232,227],[-1,24],[-4,35],[-22,223],[-2,24],[-3,28],[-3,21],[-2,26],[-2,24],[-11,103],[-5,67],[-5,45],[-2,23],[-5,21],[-1,6],[0,5],[-3,30],[0,1],[-3,26],[-8,91],[-12,123],[-3,33],[-1,1],[-3,35],[-4,46],[-11,105],[-6,65],[-4,40],[-2,22],[-7,73],[-6,56],[-5,48],[-6,75],[-14,132],[-3,38],[-13,129],[-5,57],[-9,97],[-11,105],[-16,173],[-7,64],[-5,57],[-3,30],[-6,60],[-7,75],[-3,25],[-6,61],[-2,24],[-4,41],[-9,89],[-1,18],[-7,66],[-10,104],[-10,99],[-8,83],[-16,160]],[[81255,89622],[-2,-18],[-3,-26],[2,-28],[5,-12],[4,-9],[10,-15],[12,-19],[12,-19],[14,-26],[12,-17],[17,-31],[9,-21],[6,-24],[4,-26],[0,-22],[0,-5],[3,-31],[6,-20],[8,-21],[12,-16],[12,-7],[15,-6],[5,-2],[18,-8],[14,-13],[10,-17],[9,-22],[3,-23],[-2,-35],[2,-23],[6,-24],[2,-23],[-1,-12],[-3,-62],[2,-23],[4,-24],[9,-20],[9,-18],[11,-13],[12,-11],[19,-24],[12,-16],[12,-17],[12,-18],[10,-16],[10,-18],[9,-18],[10,-16],[3,-7],[8,-14],[10,-19],[8,-18],[10,-22],[6,-24],[8,-48],[4,-31],[4,-30],[4,-35],[2,-25],[1,-26],[0,-25],[1,-27],[2,-39],[3,-26],[4,-26],[8,-28],[11,-31],[24,-74],[10,-42],[2,-23],[3,-29],[4,-31],[1,-23],[3,-25],[2,-25],[1,-27],[-1,-25],[-1,-47],[1,-26],[-3,-23],[-12,-129],[-2,-17],[-2,-22],[2,-18],[2,-11],[5,-23],[6,-16],[4,-9],[7,-18],[7,-20],[10,-27],[8,-28],[7,-24],[7,-24],[5,-21],[5,-28],[5,-25],[3,-29],[0,-22],[-1,-30],[-2,-23],[-9,-68],[-8,-60],[-10,-73],[-37,-110],[-28,-82],[-44,-139],[-30,-94],[-33,-103],[-11,-42],[-16,-105],[-9,-69],[-14,-61],[-18,-77],[-26,-56],[-50,-73],[-55,-70],[-34,-40],[-30,-38],[-10,-20],[-30,-62],[-17,-173],[3,-168],[56,-155],[37,-121],[5,-22],[23,-107],[14,-104],[2,-189],[-9,-134],[1,-18],[3,-186],[9,-67],[17,-121],[11,-53],[15,-72],[42,-181],[2,-4],[56,-165],[16,-128],[-23,-196],[-6,-28],[-6,-22],[-10,-37],[-24,-83],[-46,-180],[-17,-7],[-14,-12],[-7,-19],[-4,-22],[2,-26],[0,-14],[-6,-20],[-16,-14],[-20,0],[-8,3],[-12,5],[-16,6],[-14,1],[-11,-11],[-13,-16],[-11,-20],[-11,-18],[-14,-18],[-15,-15],[-17,-10],[-17,-10],[-26,-7],[-14,-3],[-16,-27],[7,-22],[2,-39],[-14,-17],[-14,-13],[-16,-14],[-14,-11],[-13,-12],[-14,-12],[-15,-42],[-4,-45],[-4,-22],[-11,-15],[-13,-16],[-15,-15],[-12,-16],[-4,-24],[1,-45],[-8,-24],[-9,-17],[-11,-19],[-4,-22],[-9,-19],[-11,-17],[-12,-15],[-12,-15],[-7,-20],[0,-24],[4,-21],[-2,-20],[-3,-22],[-14,-17],[-18,-12],[-8,-7],[-8,-7],[-18,-8],[-15,-11],[-14,-12],[-14,-14],[-11,-20],[-7,-20],[-10,-20],[-8,-19],[-14,-16],[-20,-9],[-18,-6],[-18,-11],[-18,-15],[-16,-15],[-10,-19],[-9,-28],[-4,-35],[-10,-18],[-20,-9],[-24,-1],[-25,-19],[-8,-18],[-2,-24],[-1,-42],[3,-24],[1,-25],[4,-21],[5,-47],[0,-14],[0,-9],[-5,-32],[-5,-14],[-3,-7],[-13,-21],[-18,-10],[-17,-13],[-8,-17],[-9,-18],[-9,-23],[-8,-42],[-2,-42],[5,-20],[6,-22],[8,-18],[3,-44],[-12,-39],[-11,-15],[-9,-20],[-7,-22],[-1,-29],[-4,-43],[-8,-45],[-2,-27],[-3,-23],[-14,-46],[-13,-17],[-6,-23],[6,-31],[4,-23],[-1,-24],[-11,-44],[-13,-25],[-13,-22],[-24,-39],[-14,-26],[-13,-13],[-22,-18],[-14,-16],[-16,-33],[-16,-35],[-14,-28],[-6,-24],[6,-30],[12,-35],[7,-28],[2,-27],[0,-32],[-1,-31],[10,-33],[10,-29],[6,-37],[2,-51],[3,-31],[5,-47],[-4,-41],[-7,-28],[-9,-26],[-14,-36],[-4,-23],[-5,-35],[-2,-34],[-2,-25],[-10,-46],[-11,-28],[-8,-18],[-5,-10],[-12,-29],[-28,-81],[-9,-23],[-22,-67],[-14,-39],[-18,-47],[-12,-32],[-13,-34],[-10,-25],[-9,-24],[-6,-28],[-5,-50],[1,-54],[-3,-43],[-4,-42],[-7,-50],[-7,-40],[-8,-45],[-3,-35],[-11,-68],[-9,-49],[-7,-39],[-10,-50],[-9,-50],[-13,-52],[-4,-26],[-4,-38],[-1,-9],[5,-37],[10,-18],[13,-17],[21,-23],[6,-6],[13,-14],[15,-17],[16,-14],[20,-15],[21,-26],[14,-31],[8,-20],[17,-25],[10,-13],[1,-2],[3,-3],[15,-13],[22,-9],[18,-11],[21,-13],[17,-11],[7,-5],[9,-7],[19,-21],[27,-41],[8,-31],[8,-27],[1,-3],[10,-29],[2,-9],[5,-16],[4,-23],[6,-40],[6,-24],[4,-22],[3,-23],[1,-28],[0,-11],[-1,-16],[-1,-32],[-5,-32],[-6,-34],[-4,-33],[-1,-26],[-4,-31],[-5,-26],[-5,-34],[-6,-22],[0,-16],[-2,-36],[0,-30],[-2,-29],[-5,-27],[-1,-9],[-6,-24],[-4,-24],[-3,-32],[-1,-23],[-2,-25],[-4,-43],[-4,-22],[-7,-20],[-4,-24],[-2,-24],[1,-26],[0,-23],[3,-28],[2,-25],[7,-25],[11,-35],[12,-28],[9,-33],[4,-23],[7,-21],[7,-23],[6,-21],[3,-27],[2,-25],[3,-63],[0,-35],[0,-41],[5,-39],[4,-41],[2,-39],[-1,-26],[2,-37],[0,-35],[-2,-37],[-5,-29],[-7,-30],[-6,-39],[-1,-1],[-3,-24],[-6,-42],[-4,-39],[-4,-34],[-3,-31],[-1,-31],[1,-24],[3,-33],[8,-45],[1,-2],[9,-35],[1,-6],[8,-26],[8,-24],[14,-43],[8,-19],[6,-15],[15,-50],[15,-65],[8,-50],[12,-56],[11,-40],[10,-42],[7,-44],[9,-45],[6,-27],[129,-216],[29,-49],[51,-137],[65,-180],[5,-36],[-3,-22],[-10,-33],[-11,-44],[-7,-27],[-12,-39],[-8,-24],[-12,-35],[-7,-45],[-6,-26],[-8,-24],[-6,-20],[-4,-22],[-4,-20],[-5,-45],[2,-33],[1,-10],[4,-10],[6,-14],[13,-25],[13,-15],[15,-17],[11,-12],[6,-6],[5,-6],[6,-8],[14,-16],[13,-17],[10,-20],[3,-29],[-6,-22],[-8,-29],[-1,-3],[-8,-19],[-14,-33],[-12,-20],[-2,-4],[-1,-1],[-13,-15],[-22,-12],[-23,-17],[-22,-20],[-24,-26],[-16,-20],[-14,-21],[-11,-18],[-14,-31],[-11,-41],[-5,-24],[-7,-21],[-7,-22],[-11,-54],[-3,-26],[8,-51],[6,-19],[8,-26],[19,-31],[22,-24],[27,-25],[14,-18],[12,-14],[20,-25],[17,-31],[8,-28],[7,-24]],[[42534,80008],[595,486],[507,1432],[330,106],[521,1],[489,246],[191,142],[346,407],[32,905],[387,347],[22,-28],[143,-4],[80,69],[188,36],[651,710],[474,275],[87,81],[110,-12],[19,-5],[1,0],[3,-1],[4,2],[28,1],[25,-7],[38,9],[15,4],[22,-32],[22,10],[28,-7],[15,-4],[27,-65],[35,-11],[258,143],[113,125],[143,103],[99,209],[112,-21],[543,628],[123,159]],[[54597,82338],[-14,-22],[-31,-62],[-23,-47],[-15,-30],[-9,-18],[-13,-24],[-74,-149],[-72,-144],[-22,-44],[-40,-81],[-114,-226],[-64,-129],[-112,-223],[-54,-112],[-20,-43],[-165,-335],[-178,-360],[-88,-172],[-80,-164],[-19,-39],[-2,-5],[-53,-108],[158,-130],[126,-102],[68,-56],[18,-14],[101,-82],[7,-5],[79,-66],[28,-23],[75,-64],[116,-96],[-39,-86],[-1,-2],[-42,-93],[-4,-8],[-8,-17],[-26,-57],[-58,-128],[-13,-30],[-39,-86],[39,-31],[4,-7],[20,-15],[4,-4],[52,-40],[-66,-141],[-5,-9],[-9,-20],[-30,-65],[0,-40],[0,-73],[0,-7],[1,-256],[1,-214],[-197,-10],[-134,-7],[-4,0],[-66,-4],[-208,-10],[5,-49],[5,-44],[9,-86],[0,-2],[13,-88],[0,-2],[29,-310],[18,-203],[7,-82],[4,-27],[-92,-12],[-27,-4],[-15,-6],[-24,-3],[-102,-12],[-157,-16],[-7,-1],[-12,14],[-8,18],[-7,19],[-20,15],[-16,3],[-13,-2],[-20,-15],[-58,-15],[-26,-9],[-24,-5],[-16,2],[-19,0],[-17,2],[-22,12],[-6,2],[-2,4],[-5,7],[-13,18],[-41,63],[-8,-9],[-31,-32],[-71,-74],[-7,-7],[-71,-75],[-31,-34],[-46,-47],[-29,-30],[-57,-63],[-11,-12],[-17,-18],[-105,-107],[-44,-50],[-46,-50],[-36,-40],[-14,-15],[-19,-21],[-141,-149],[-16,-17],[-86,-92],[-50,-52],[-174,-185],[-14,-14],[-153,-163],[-1,-2],[-17,-16],[-66,-64],[-13,-12],[-24,-25],[-165,-162],[-46,-50],[-41,-42],[-66,-71],[-102,-103],[-28,-29],[-73,-80],[-35,-37],[-47,5],[-154,17],[-115,13],[-145,16],[-89,10],[-21,2],[-66,8],[-42,4],[-115,13],[-42,4],[-8,1],[-31,4],[-167,18],[0,-67],[-8,-130],[-1,-44],[-2,-25],[0,-1],[-4,-64],[-16,-250],[-6,-90],[-8,-111],[-14,-210],[0,-6],[-10,-157],[-5,-81],[-8,-127],[-6,-83],[0,-4],[-6,-88],[-15,-233],[-15,-236],[-2,-32],[18,-1],[169,-14],[212,-17],[63,-6],[64,-6],[104,-10],[177,-23],[20,-302],[10,-137],[2,-32],[26,-305],[6,-71],[9,-128],[11,-139],[14,-224],[12,-212],[14,-205],[12,-168],[6,-98],[0,-2],[12,-177]],[[50443,70639],[-166,21],[-396,50],[-8,1],[-102,13],[-263,33],[-64,8],[-45,5],[-23,3],[-53,7],[-40,5],[-64,8],[-42,-6],[-38,6],[-90,14],[-48,8],[-45,7],[-153,25],[-56,5],[-45,5],[-259,25],[-52,6],[-196,24],[-35,5],[-271,34],[-232,27],[-61,9],[-122,20],[-37,6],[-23,4],[-76,12],[-64,11],[2,-57],[3,-68],[3,-58],[3,-73],[5,-108],[4,-81],[2,-71],[2,-31],[2,-45],[2,-26],[2,-32],[5,-122],[4,-88],[-9,0],[-171,21],[-108,13],[-165,21],[-41,6],[-25,3],[-26,4],[-17,2],[-4,1],[-8,1],[-22,3],[-13,2],[-8,1],[-69,10],[-2,0],[-85,13],[-34,5],[-37,5],[-23,3],[-146,22],[-76,10],[-50,6],[-127,18],[-32,4],[-187,19],[-19,2],[-94,9],[-117,11],[-52,5],[-16,2],[-109,10],[-20,2],[-117,11]],[[45146,70439],[-76,7]],[[58846,69009],[-25,-20],[-158,-128],[-58,-45],[-6,-5],[-45,-36],[-15,-13],[-344,-278],[-265,-215],[-142,-115],[-44,-36],[-78,-63],[-249,-201],[-27,-18],[-95,-78],[-131,-108],[-58,-47],[-24,-19],[-49,-37],[-92,-72],[-24,-19],[-106,-84],[-83,-66],[-298,-236],[-25,-19],[-37,-29],[-50,-41],[-22,-19],[-50,-40],[-9,-8],[-5,-4],[-78,-61],[-3,-2],[-34,-28],[-22,-16],[-24,-20],[-61,-48],[-22,-18],[-51,-40],[-147,-118],[-14,-11],[-23,-18],[-37,-30],[-26,-20],[-25,-19],[-65,-56],[-17,-15],[-56,-47],[-26,-21],[-28,-22],[-47,-37],[-47,-36],[-31,-24],[-72,-59],[-16,-14],[-80,-64],[-94,-76],[-101,-84],[-54,-45],[-3,-2],[-55,-46],[-24,-17],[-27,-23],[-73,-61],[-108,-87],[-59,-51],[-4,-3],[-16,-13],[-97,-79],[-15,-12],[-29,-24],[-20,-17],[-4,-3],[-34,-28],[-71,-58],[-122,-98],[-133,-111],[-117,-96],[-114,-94],[-29,-23],[-84,-69],[-96,-77],[-56,-46],[-49,-39],[-60,21],[-99,35],[-97,34],[-52,22],[-24,11],[-34,15],[-76,33],[-46,20],[-173,75],[-46,19],[-205,83],[-25,10],[-216,87],[-95,38],[-104,41],[-142,54],[-28,11],[-69,27],[-39,15],[-90,37],[-20,9],[-129,49],[-54,21],[-49,20],[-62,29],[-68,19],[-39,15],[-125,51],[-40,15],[-56,21],[-96,38],[-45,18],[-231,93],[-15,6],[-54,23],[-14,5]],[[50675,65804],[-1,36],[-3,150],[0,23],[-10,281],[-4,80],[-1,64],[-1,23],[0,33],[-3,60],[-3,69],[-1,19],[-3,77],[-1,40],[-4,93],[-9,302],[-7,145],[-9,110],[-2,35],[-1,27],[-5,142],[0,28],[-1,41],[-6,137],[-1,84],[-10,236],[-13,179],[-3,24],[-6,54],[0,3],[-4,30],[0,35],[0,30],[-4,35],[3,111],[-3,81],[-2,56],[-3,119],[-5,120],[-1,35],[-7,176],[-25,262],[-9,169],[-1,24],[-13,210],[-2,25],[-3,49],[-6,74],[-8,127],[-8,130],[-9,136],[-14,206]],[[58087,79667],[7,-96],[29,-396],[4,-56],[2,-27],[20,-276],[15,-209],[12,-161],[10,-136],[22,-309],[21,-290],[8,-110],[6,-77],[0,-2],[16,-265],[0,-1],[3,-37],[4,-65],[4,-46],[33,-461],[4,-54],[9,-124],[37,-530],[13,-183],[8,-83],[27,-295],[43,-682],[4,-33],[0,-9],[1,-10],[1,-33],[7,-98],[5,-48],[2,-25],[2,-26],[32,-477],[42,-595],[12,-197],[23,-323],[5,-72],[0,-3],[2,-24],[7,-102],[4,-48],[28,-355],[16,-226],[6,-85],[20,-282],[7,-90],[8,-103],[3,-78],[2,-17],[0,-9],[28,-394],[14,-192],[24,-335],[15,-214],[12,-174],[4,-63],[23,-315],[29,-414],[14,-218]],[[72166,71869],[-19,-3],[-11,-1],[-213,-37],[-503,-88],[-108,-19],[-20,-4],[-34,-6],[-255,-46],[-168,-29],[-26,-5],[-5,0],[-447,-80],[-36,-6],[-148,-25],[19,-211],[11,-132],[11,-121],[7,-79],[34,-382],[4,-49],[20,-232],[4,-36],[0,-8],[27,-297],[3,-36],[9,-105],[9,-100],[24,-272],[9,-98],[12,-135],[82,-943],[1,-8],[83,-930],[37,-425],[30,-345],[5,-65],[5,-50],[24,-277],[16,-184],[10,-122],[11,-133],[22,-257],[4,-50],[5,-52],[12,-140],[26,-288],[23,-260],[26,-307],[11,-127],[2,-29],[20,-237],[20,-230],[3,-29],[2,-44],[2,-33],[5,-45]],[[70863,63617],[15,-166],[10,-100],[18,-192],[5,-45],[1,-15],[68,-702],[10,-97],[21,-215],[29,-281],[7,-74],[26,-271],[3,-37],[21,-222],[4,-38],[4,-45],[10,-101]],[[71115,61016],[-46,-5],[-59,-7],[-53,-7],[-83,-9],[-19,-3],[-15,-1],[-72,-9],[-324,-38],[-30,-4],[-29,-4],[-23,-2],[-13,-1],[-25,-3],[-49,-5],[-41,-6],[-21,-4],[-27,-4],[-134,-17],[42,-592],[-80,-8],[-283,-35],[-42,-4],[-191,-21],[-87,-12],[-160,-18],[-66,-8],[-41,-4],[-178,-20],[-97,-12],[-6,0],[-53,-6],[-4,49],[-23,268],[0,6],[-3,39],[-21,234],[-51,0],[-18,-1],[-10,0],[-24,0],[-1,0],[-34,-4],[-35,-5],[-48,-6],[-26,-3],[-91,-20],[-49,-6],[-20,-2],[-65,-7],[-137,-17],[-522,-60],[-201,-25],[-15,-2],[-37,-3],[-43,-7],[-104,-12],[-38,-4],[-46,-4],[-19,-3],[-27,-3],[-73,-7],[-36,-4],[-79,-9],[-63,-6],[-85,-7],[-193,-18],[-173,-18],[-39,-4],[-15,-2],[-135,-14],[-61,-3],[-21,-13],[-452,272],[-23,14],[-180,108],[-150,92],[-203,119],[-129,76],[-155,92],[-226,135],[-1,0],[-65,39],[-30,18],[-1,0],[-15,9],[-529,315],[-97,58],[5,-63]],[[63874,61728],[-19,13],[-94,56],[-19,11],[-33,20],[-43,25],[-1,1],[-238,142],[-20,12],[-77,47],[-1,0],[-58,36],[-144,88],[-12,7],[-22,13],[-28,16],[-193,117],[-29,18],[-211,128],[-169,103],[-168,102],[-182,111],[-200,121],[9,26],[0,1],[138,385],[0,1],[23,63],[107,304],[24,68],[111,311],[0,1],[32,87],[21,58],[1,3],[66,184],[119,333],[36,99],[184,511],[39,107],[41,115],[2,5],[11,30],[123,344],[6,16],[71,198],[-19,296],[-7,47],[-8,108],[-9,128],[-8,107],[-9,106],[-2,23],[-5,62],[-7,99],[-1,29],[-6,60],[-10,143],[-13,167],[-12,148],[-8,133],[-11,129],[-3,37],[-11,142],[-15,200],[-16,210],[-5,55],[-10,136],[-12,126],[0,2],[-15,231],[-1,15],[-4,43],[-6,89],[-2,24],[-3,39],[-2,35],[-24,308],[-5,60],[-11,148],[0,1],[-23,302],[-4,50],[-11,143],[-4,51],[-19,258],[-3,30],[-22,298],[-1,5],[-7,87],[-1,21],[-5,60],[-4,60],[-5,59],[0,8],[-29,371],[-7,95],[-19,243],[-4,49],[0,4],[-7,74],[-5,66],[-3,31],[-2,28],[-7,97],[-2,17],[-3,41],[-8,103],[-2,26],[-3,30],[-3,41],[-15,189],[-2,34],[-19,244],[-22,288],[-11,153],[-3,37],[-6,77],[-5,67],[-16,211],[-3,37],[-7,95],[-5,70],[-1,16],[-1,15],[-6,74],[-8,100],[-4,55],[-4,53],[-9,120],[-12,157],[-3,67],[-12,144],[-7,91],[-3,34],[-21,266],[-32,423],[-4,60],[-16,202],[-8,104],[-5,71],[-2,27],[-12,161],[-2,24],[-8,113],[0,1],[-3,26],[-7,96],[-3,36],[-3,37],[-6,81],[-5,62],[-33,426],[-6,75],[-19,204],[0,2],[-8,108],[0,2],[-32,401],[-1,16],[-9,119],[-5,55],[-1,22],[-3,37],[-10,118],[-4,52],[-38,492],[-4,55],[-6,72]],[[63874,61728],[13,-168],[50,-630],[0,-59],[28,-296],[5,-38],[6,-71],[3,-26],[25,-256],[17,-176],[14,-148],[10,-102],[22,-232],[0,-1],[6,-63],[7,-62],[2,-23],[0,-6],[-1,-21],[1,-18],[2,-19],[9,-9],[2,-22],[-5,-34],[-27,-16],[-17,-13],[-16,-9],[-16,-15],[-12,10],[-9,12],[-38,-13],[-21,-12],[-17,-10],[-21,-11],[-24,-16],[-5,-4],[-46,-81],[-12,-14],[-6,-40],[-2,-36],[-1,-17],[0,-15],[4,-10],[0,-1],[0,-1],[3,-4],[38,-40],[2,-1],[31,-31],[6,-6],[10,-47],[-7,-9],[0,-2],[0,-14],[3,-7],[1,-1],[1,-1],[6,-12],[8,-5],[1,0],[15,-9],[4,-7],[4,-9],[1,-4],[1,0],[0,-12],[-4,-7],[-14,-5],[-1,0],[-51,-10],[-1,0],[-10,-1],[-20,-1],[-38,-8],[-4,-1],[0,-1],[-9,-4],[-17,-16],[-1,-1],[-2,-4],[-11,-22],[-1,-3],[0,-2],[-7,-8],[-3,-3],[-1,-1],[-4,-4],[-12,-1],[-19,7],[-2,0],[-9,1],[-7,-2],[-98,-33],[-5,-11],[-2,-12],[7,-38],[6,-14],[3,-6],[5,-13],[11,-12],[9,-16],[9,-23],[0,-2],[1,-15],[-2,-7],[0,-1],[-2,-2],[-9,-38],[-2,-6],[0,-24],[0,-1],[2,-7],[27,-76],[3,-9],[4,-9],[1,-3],[11,-19],[4,-4],[7,-22],[-3,-13],[-1,-9],[-9,-45],[-24,9],[-1,0],[-11,14],[-3,2],[-20,7],[-39,0],[-16,-8],[-7,-6],[-8,-14],[0,-1],[1,-2],[2,-10],[9,-27],[3,-6],[2,-2],[2,-3],[0,-14],[-7,-11],[-18,-15],[-12,-6],[-12,1],[-15,11],[-3,5],[0,4],[0,1],[-27,25],[-18,13],[-8,0],[-8,-4],[-3,-1],[-2,-1],[-84,-43],[-1,0],[-21,-65],[-5,-34],[0,-2],[-13,-24],[-1,-1],[-6,-2],[-10,-1],[-6,0],[-8,2],[-54,14],[-50,-12],[11,-73],[4,-52],[1,-24],[2,-20],[4,-57],[-2,-42],[-15,-52],[7,-32],[9,-38],[9,-17],[0,-36],[10,-20],[1,-54],[1,-14],[0,-8],[-51,-82],[-6,-6],[-39,-43],[-11,-26],[-4,-21],[5,-65],[1,-5],[7,-13],[16,-31],[11,-12],[11,-14],[3,-7],[3,-8],[8,-20],[0,-37],[-3,-17],[-10,-45],[-6,-49],[4,-24],[15,-30],[20,-14],[15,-30],[14,-8],[0,-1],[24,-25],[6,-6],[0,-4],[-3,-55],[-4,-72],[1,-6],[6,-35],[16,-68],[11,-33],[15,-24]],[[63276,56446],[9,-32],[1,-39],[-2,-26],[6,-23],[5,-9],[25,-13],[6,-3],[4,-3],[25,-18],[30,-20],[29,-56],[29,-57],[33,-67],[9,-57],[1,-5],[3,-18],[-8,-56],[3,-8],[10,-20],[11,-75],[10,-19],[8,-17],[0,-6],[-2,-104],[-3,-21],[-2,-27],[2,-70],[1,-19],[-6,-38],[-3,-35],[-2,-14],[-5,-24],[-12,-39],[-6,-15],[-4,-9],[28,-18],[17,-21],[-1,-10],[-2,-14],[-3,-31],[-2,-19],[-1,-12],[-6,-67],[-3,-41],[0,-14],[-14,-149],[-4,-44],[-5,-44],[-14,-177],[-8,-79],[-6,-62],[-9,-99],[-8,-78],[-3,-29],[-12,-116],[-7,-71],[-3,-29],[-24,-221],[4,-30],[-7,-80],[-1,-26],[-3,-43],[0,-1],[-6,-54],[-1,-11],[-2,-18],[-5,-47],[-16,-139],[-5,-55],[-7,-60],[-7,-63],[-2,-24],[-14,-132],[-13,-131],[-5,-48],[-5,-34],[-6,-50],[-13,-122],[-5,-44],[-7,-62],[-3,-33],[-10,-117],[-19,-144]],[[63233,52371],[-241,130],[-7,4],[-96,53],[-55,30],[-81,44],[-21,12],[-103,54],[-63,34],[-83,43],[-93,49],[-33,17],[-3,2],[-133,70],[-81,42],[-94,50],[-64,33],[-30,15],[-63,33],[-63,31],[-54,29],[-10,-90],[-21,-190],[-8,-72],[-5,-39],[-14,-123],[-10,-74],[-16,-154],[-2,-27],[-28,-256],[-18,-95],[-20,-140],[-48,-205],[-54,-60],[-16,-16],[-77,-75],[-13,-1],[-75,59],[-71,57],[-14,11],[-35,28],[-59,47],[-153,123],[-194,145],[-82,61],[-1,0],[-121,91],[-87,68],[-18,17],[-16,13],[-2,2],[-15,11],[-17,13],[-2,2],[-9,16],[-18,13],[-56,40],[-39,27],[-28,20],[-12,6],[-23,17],[-19,14],[-5,4],[-7,5],[-29,20],[-69,52],[-37,28],[-127,93],[-33,24],[-89,66],[-101,72],[-141,104],[-196,143],[-105,76],[-43,32],[-49,35],[-37,28],[-173,126],[-43,31],[-29,-63],[-38,-84],[-106,-231],[-34,-73],[-15,-33],[-19,-46],[-30,-67],[-28,-53],[-44,-87],[-128,-298],[-19,-40],[-37,-3],[-40,-3],[-397,-31],[-86,-7],[-3,0],[-207,-15],[-41,-3],[-70,-8],[-16,-1],[-8,237],[0,1],[-7,171],[-1,28],[-3,76],[0,5]],[[57556,52741],[7,1],[55,6],[71,8],[-4,73],[-4,79],[-5,91],[-9,169],[-10,174],[-4,76],[-2,27],[-5,111],[-8,145],[-10,176],[-7,133],[-4,72],[-4,66],[-18,318],[-1,23],[-2,38],[-6,100],[-3,49],[-10,177],[-16,243],[-19,302],[-4,55],[-6,102],[-5,91],[-7,97],[-7,135],[-2,22],[-2,34],[-5,106],[-6,104],[-2,36],[-10,185],[-14,192],[26,51],[17,31],[41,78],[45,79],[15,36],[14,24],[19,36],[47,86],[19,33],[11,21],[9,14],[32,67],[80,144],[14,26],[16,33],[21,40],[28,51],[6,13],[3,7],[13,24],[10,18],[11,19],[2,3],[76,152],[2,3],[44,78],[1,1],[23,43],[10,20],[9,17],[32,60],[25,49],[15,22],[12,26],[16,34],[77,161],[24,49],[14,29],[129,267],[33,71],[21,47],[29,62],[27,61],[57,124],[20,46],[16,39],[76,162],[23,49],[124,266],[46,99],[10,22],[14,31],[213,458],[53,114],[20,45],[107,228],[-19,2],[-28,11],[-12,39],[1,20],[12,24],[19,10],[14,10],[-1,24],[-16,19],[-19,7],[-19,-4],[-19,-16],[-20,-19],[-17,-16],[-15,-10],[-14,-7],[-17,-17],[-17,-6],[-17,-1],[-42,0],[-29,0],[-16,4],[-24,9],[-18,10],[-29,17],[-2,1],[-26,16],[-16,17],[-15,16],[-21,21],[-17,15],[-27,14],[-25,8],[-14,10],[-17,11],[-12,14],[-16,10],[-15,-5],[-16,0],[-13,6],[-17,12],[-19,14],[-27,14],[-8,24],[0,27],[-4,31],[-18,26],[-80,38],[-59,-7],[-21,50],[-4,11],[-17,43],[-19,-5],[-14,20],[-5,21],[-18,29],[-12,-9],[-2,-26],[-15,-34],[-21,-19],[-12,-20],[-32,-33],[-2,51],[-1,27],[-13,33],[-6,30],[1,31],[5,32],[-12,20],[-17,-17],[-6,-24],[-10,-17],[-27,-10],[-13,0],[-15,3],[-19,35],[-6,24],[-3,36],[2,27],[9,17],[12,17],[13,13],[14,17],[5,30],[2,28],[-8,33],[-6,36],[3,25],[6,41],[5,20],[20,19],[8,26],[11,31],[2,11],[12,27],[4,10],[8,17],[6,123],[5,23],[11,15],[34,29],[-1,10],[0,59],[18,102],[18,65],[-9,38],[-7,60],[17,6],[33,0],[37,6],[17,4],[30,7],[28,7],[35,12],[70,27],[16,1],[12,-13],[8,-30],[17,-21],[18,0],[8,24],[4,23],[-4,41],[-4,23],[10,30],[16,10],[17,3],[18,-1],[14,-2],[27,-3],[13,3],[30,11],[7,7],[11,13],[8,26],[13,41],[2,27],[15,24],[13,19],[16,52],[10,21],[9,19],[6,28],[3,29],[12,-4],[14,-12],[2,-2],[17,-14],[13,-8],[26,-8],[13,17],[-4,36],[-5,45],[11,23],[14,10],[14,5],[28,6],[20,-7],[16,9],[14,5],[15,2],[17,6],[54,11],[-5,75],[-5,63],[-8,124],[-1,11],[-2,37],[-3,40],[-8,116],[-13,195],[-22,320],[-1,23],[0,2],[-2,30],[-5,81],[-8,123],[-15,228],[-3,43],[-4,63],[-4,55],[-2,28],[-6,86],[-11,134],[-1,25],[-1,10],[-8,103],[-6,77],[-15,193],[-2,53],[-3,104],[-9,66],[-9,90],[-3,43],[-4,52],[-9,130],[-6,79],[-11,156],[-3,26],[-5,53],[-6,82],[-30,382],[-6,82],[-2,82],[-10,119],[-3,36],[-1,22],[-20,474],[-6,91],[-10,146],[-8,129],[-5,82],[-2,33],[-4,48],[-4,72],[-10,147],[-24,367],[-7,107],[-14,200],[-8,131],[-15,219],[0,8],[-2,21],[-1,24],[-4,54]],[[82071,54149],[-21,1],[-450,3],[-108,1],[-9,0],[-115,1],[-47,0],[-196,2],[-78,0],[-152,2],[-14,0],[-1,0],[-82,-4],[-64,-3],[11,30],[1,27],[-20,33],[-31,-21],[-38,-4],[-36,-2],[-8,47],[0,2],[0,2],[-4,27],[-4,35],[-8,57],[-38,-27],[-15,-10],[-70,-1],[-13,0],[-30,26],[-3,3],[-31,53],[-25,15],[-20,4],[-29,6],[-22,-8],[-31,-8],[-19,-13],[-25,-16],[-18,-10],[-17,7],[-17,8],[-13,9],[-6,24],[-18,32],[-19,0],[-29,3],[-26,-5],[-13,-10],[-17,-18],[-13,-8],[-16,-21],[-27,-34],[-14,-14],[-14,-8],[-17,-10],[-22,-9],[-20,-7],[-14,-4],[-13,-11],[-14,-16],[2,-45],[2,-42],[-1,-33],[-16,-17],[-23,0],[-40,2],[-41,2],[-27,0],[-17,1],[-19,-5],[-15,-8],[-24,0],[-33,-1],[-40,-1],[-191,-4],[-107,-3],[-33,-2],[-17,-1],[-45,-1],[-81,-3],[-45,-1],[-46,-2],[-28,-1],[-68,-2],[-33,-1],[-113,-4],[-47,-1],[-23,-1],[-61,-2],[-164,-6],[-32,-1],[-152,-5],[-36,-1],[-2,0],[-97,-2],[-29,-1],[-95,-4],[-40,-1],[-23,-1],[-182,-7],[-131,-6],[-68,0],[-25,1],[-16,0],[-29,1]],[[77498,54098],[19,23],[9,18],[12,27],[14,43],[12,52],[8,35],[4,28],[4,47],[1,39],[2,54],[1,29],[-5,40],[-9,36],[-7,49],[-4,101],[-1,39],[17,22],[19,18],[19,16],[23,13],[103,90],[74,64],[16,23],[8,22],[10,185],[4,70],[7,73],[29,60],[60,103],[16,22],[16,21],[15,33],[12,38],[11,46],[9,33],[8,28],[13,67],[10,59],[5,47],[-3,46],[-3,46],[7,83],[15,152],[11,33],[14,38],[8,31],[2,30],[3,47],[2,32],[8,48],[19,18],[37,38],[7,7],[14,25],[14,25],[6,21],[4,24],[-1,40],[-9,43],[-15,51],[-13,49],[-6,39],[-5,39],[-1,34],[4,34],[5,28],[11,29],[16,46],[12,22],[9,17],[7,26],[12,24],[6,46],[-2,33],[-5,21],[-20,37],[-7,23],[-4,46],[5,40],[14,50],[9,26],[9,19],[10,24],[10,27],[4,27],[2,26],[-10,63],[-11,58],[-5,26],[2,52],[-2,21],[-8,23],[-6,21],[-1,4],[-1,3],[-1,2],[-19,40],[-1,0],[0,2],[-55,102],[-25,67],[-2,13],[-10,110],[-13,30],[-16,38],[-28,36],[-11,123],[-1,3],[1,2],[7,33],[7,32],[39,90],[5,11],[20,48],[5,6],[29,38],[20,51],[0,1],[2,44],[3,4],[0,9],[-2,11],[-4,36],[-2,18],[-25,59],[-2,5],[-7,17],[-3,8],[-2,17],[10,51],[-5,11],[-5,9],[-7,7],[-2,2],[-3,1],[-13,2],[-21,4],[-3,1],[-4,6],[-15,32],[-5,41],[-2,11],[6,30],[7,14],[8,16],[15,27],[23,28],[23,59],[14,156],[-6,35],[0,2],[-6,39],[-1,1],[0,3],[0,4],[-1,2],[-13,21],[-17,26],[-9,13],[6,46],[13,28],[12,27],[-2,28],[-2,37],[0,1],[0,4],[0,3],[1,37],[0,2],[0,4],[1,3],[0,4],[1,4],[0,2],[6,29],[1,2],[1,3],[1,4],[21,61],[1,3],[0,1],[9,22],[1,109],[0,9],[-4,21],[-4,16],[-14,55],[-11,43],[-42,138],[-9,20],[-20,35],[-31,65],[-2,5],[0,-4],[-19,14],[-14,27],[-11,30],[-15,61],[-9,36],[-9,39],[-2,29],[1,27],[6,21],[14,24],[22,36],[1,1],[0,1],[0,3],[8,27],[0,1],[1,4],[1,3],[2,3],[25,60],[2,3],[1,3],[1,1],[19,32],[1,0],[25,42],[0,77],[-12,62],[-4,12],[-10,34],[-13,17],[-2,2],[-55,70],[-66,1],[-20,2],[-9,23],[17,209],[15,59],[16,38],[8,9],[15,30],[6,10],[11,65],[0,16],[-1,13],[-8,31],[49,102],[2,7],[0,1],[1,4],[2,3],[1,3],[1,3],[2,3],[0,1],[17,28],[1,2],[12,18],[0,1],[-4,9],[-10,21],[-2,3],[-1,3],[-1,3],[-1,4],[-1,3],[-1,4],[-6,32],[0,1],[-3,14],[-5,23],[-35,47]],[[78010,62170],[-2,34],[-3,29],[-4,41],[-6,45],[-2,22],[-3,27],[-5,44],[-5,35],[-5,44],[-29,260],[-3,25],[-15,128],[-5,55],[-8,69],[-17,146],[-4,35],[-22,222],[-12,116],[-6,50],[-10,98],[-5,45],[-1,10],[-3,34],[-5,42],[-5,54],[-3,26],[-9,79],[-12,115],[-2,24],[-10,85],[0,5],[-11,102],[-17,161],[-30,288],[-3,27],[-5,41],[-5,46],[-5,52],[-16,149],[-17,166],[-13,119],[-8,78],[-5,43],[-4,40],[-5,46],[-3,26],[-2,24],[-4,35],[-4,34],[-17,127],[-1,61],[-6,54],[-3,22],[-2,27],[-5,40],[-3,27],[-2,25],[-3,27],[-7,58],[-8,18],[-9,14],[-2,26],[-11,25],[-5,14],[-7,26],[-10,42],[-7,9],[-24,17],[-25,29],[-1,4],[1,15],[14,63],[14,41],[24,130],[11,95],[1,4],[40,134],[0,1],[23,52],[10,8],[9,7],[10,-8],[8,-16],[8,-17],[1,0],[3,-1],[16,-7],[1,0],[3,1],[1,1],[7,4],[3,1],[22,18],[2,5],[4,60],[-1,33],[-2,80],[16,133],[0,4],[2,9],[7,40],[3,8],[17,31],[2,3],[31,64],[8,20],[64,202],[-5,23],[-4,6],[-8,15],[-17,31],[-1,1],[-2,1],[-12,9],[-12,10],[-18,47],[-2,5],[10,80],[7,12],[23,42],[6,13],[43,46],[2,1],[9,11],[18,8],[15,4],[16,-4],[1,0],[4,-11],[15,0],[30,5],[1,0],[6,2],[72,19],[9,4],[26,12],[54,58],[35,44],[19,27],[29,44],[4,20],[3,5],[106,212],[18,51],[4,10],[4,12],[11,33],[59,169],[2,7],[26,31],[51,92],[60,107],[45,117],[72,153],[5,11],[17,30],[1,2],[7,12],[34,39],[5,6],[1,2],[94,118],[15,45],[3,3],[12,13],[2,1],[15,3],[35,9],[13,3],[17,5],[25,14],[24,13],[9,25],[1,1],[23,35],[2,3],[8,11],[41,31],[22,7],[39,22],[3,2],[26,23],[5,6],[2,9],[26,81],[28,41],[9,9],[25,45],[1,4],[11,26],[0,51],[-6,23],[-1,59],[4,21],[2,46],[0,3],[1,25],[-2,18],[-9,56],[-9,17],[-16,14],[-2,6],[-5,26],[0,1],[1,6],[2,18],[1,0],[9,5],[10,-1],[1,0],[4,-2],[1,-4],[12,2],[1,0],[12,6],[13,20],[12,16],[41,92],[6,13],[2,5],[9,46],[1,15],[12,100],[1,1],[11,80],[4,33],[1,7],[19,69],[19,62],[2,5],[0,1],[6,8],[21,8],[1,0],[7,-1],[12,5],[2,1],[13,37],[16,66],[2,31],[3,49],[-6,40],[0,14],[2,32],[1,2],[15,49],[38,112],[2,5],[7,29],[12,46],[3,5],[29,55],[1,1],[15,14],[1,1],[59,72],[3,12],[0,9],[-1,4],[-14,34],[-4,68],[1,47],[3,77],[1,5],[0,8],[-5,115],[0,19],[-3,78],[-3,15],[-1,2],[-9,43],[-6,83],[7,28],[15,34],[2,4],[23,18],[12,12],[3,2],[5,17],[-3,15],[0,3],[0,1],[-6,21],[-8,32],[-10,37],[-4,14],[-10,12],[-28,10],[-43,20],[-61,28],[-6,8],[-4,7],[3,37],[6,45],[10,27],[11,16],[4,6],[31,43],[14,16],[22,20],[8,7],[19,-4],[16,4],[3,2],[5,3],[29,33],[2,3],[1,2],[42,72],[0,1],[30,52],[40,82],[26,40],[37,46],[12,5],[5,5],[10,10],[17,16],[38,41],[2,28],[-19,42]],[[80741,73286],[3,-8],[0,-1],[3,-10],[9,-32],[8,-71],[3,-54],[2,-27],[28,-31],[44,-60],[20,-22],[28,-30],[35,-26],[7,-5],[20,-30],[24,-26],[5,-6],[39,-55],[7,-55],[14,-63],[7,-58],[13,-43],[26,-54],[16,-30],[1,-33],[-17,-47],[-25,-77],[-18,-41],[-42,-102],[-47,-132],[-34,-66],[-11,-13],[-19,-63],[-18,-21],[-16,-39],[-2,-60],[-5,-111],[9,-113],[1,-2],[0,-4],[1,-3],[0,-1],[0,-1],[2,-16],[0,-2],[0,-4],[0,-4],[0,-4],[0,-4],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-4],[-1,-4],[0,-3],[-3,-24],[-1,-1],[0,-4],[-1,-4],[-1,-3],[-1,-4],[-1,-3],[-1,-3],[-1,-2],[-12,-24],[-1,-2],[-1,-2],[-1,-2],[-45,-73],[-14,-38],[-4,-18],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-4,-10],[-7,-21],[-1,-4],[-1,-3],[-2,-3],[-1,-3],[-3,-5],[-8,-14],[-2,-2],[-2,-3],[0,-1],[-11,-13],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-6,-5],[-50,-72],[-30,-55],[-1,-32],[-40,-67],[-17,-58],[-27,-82],[-4,-15],[-1,-2],[-1,-3],[-1,-3],[-20,-55],[-1,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-2],[-2,-3],[0,-1],[-12,-12],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[-25,-14],[-1,-1],[-4,-2],[-18,-9],[-5,-5],[-7,-14],[-5,-15],[-1,-15],[-1,-15],[0,-24],[0,-2],[1,-72],[0,-1],[0,-41],[0,-4],[0,-3],[-1,-1],[0,-4],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-22],[0,-21],[0,-4],[0,-2],[-2,-23],[0,-1],[0,-4],[-7,-61],[0,-4],[-1,-3],[-1,-4],[-1,-4],[-1,-3],[0,-2],[-32,-88],[-53,-148],[-5,-14],[0,-1],[-1,-3],[-1,-2],[-38,-90],[-6,-15],[-21,-146],[-29,-50],[-55,-51],[-5,-12],[-23,-50],[-12,-101],[-8,-80],[-1,-1],[1,0],[2,-5],[26,-57],[20,-41],[39,-79],[38,-85],[10,-37],[-12,-28],[-31,-87],[0,-1],[-2,-13],[-7,-41],[0,-3],[-1,-4],[-1,-3],[-1,-4],[-6,-18],[-1,-3],[-1,-3],[-4,-8],[-10,-23],[-11,-27],[15,-26],[9,-42],[4,-46],[2,-36],[-3,-16],[-19,-39],[-1,-2],[0,-4],[-1,-2],[0,-1],[-1,-4],[-47,-173],[-1,-3],[0,-2],[-28,-79],[0,-1],[-2,-24],[16,-24],[21,-22],[3,-3],[5,-4],[56,-53],[32,-31],[54,-52],[99,-92],[25,-31],[42,-64],[6,-4],[18,-19],[2,-1],[25,-18],[13,-2],[11,0],[6,4],[48,40],[5,6],[2,8],[3,10],[-1,13],[-6,18],[0,13],[6,14],[8,14],[5,4],[10,7],[3,0],[23,-3],[17,2],[15,8],[2,2],[7,7],[10,29],[6,24],[2,15],[2,14],[-1,141],[-32,47],[-14,16],[-10,24],[2,29],[3,3],[4,5],[7,4],[5,2],[24,-2],[14,3],[6,5],[4,9],[0,4],[1,6],[0,9],[-6,33],[-1,3],[-1,3],[-12,33],[-3,8],[-1,4],[1,1],[37,27],[2,2],[32,33],[2,3],[53,78],[6,14],[3,11],[1,6],[3,15],[0,15],[-26,107],[-2,1],[-2,3],[-13,16],[-3,8],[0,1],[0,2],[-1,7],[2,5],[4,12],[13,29],[20,29],[39,69],[0,13],[0,1],[-5,14],[-4,5],[-12,18],[-7,17],[-5,13],[2,20],[1,9],[5,9],[10,11],[1,-1],[28,-2],[7,-5],[14,-21],[2,-1],[3,-2],[3,-1],[13,0],[73,22],[8,4],[5,7],[1,2],[2,5],[15,14],[33,7],[6,-1],[4,-2],[4,-5],[5,-18],[7,-25],[19,-34],[8,-13],[4,-2],[2,-2],[6,-3],[10,-1],[6,6],[6,12],[3,5],[7,37],[11,20],[12,18],[8,10],[9,1],[5,1],[8,2],[3,-7],[2,-5],[8,-20],[2,-3],[11,-5],[1,0],[7,1],[16,6],[2,1],[7,3],[2,2],[0,3],[2,15],[46,42],[3,0],[1,1],[2,0],[9,-6],[12,-13],[1,-3],[7,-18],[1,-4],[8,-2],[38,0],[5,1],[10,3],[5,5],[3,2],[18,24],[7,2],[13,-1],[7,-1],[25,-3],[5,-1],[33,-6],[17,-11],[13,-8],[2,-2],[4,-3],[12,-8],[6,-4],[1,-9],[1,-4],[1,-5],[8,-6],[1,-1],[4,-3],[8,-2],[7,0],[2,1],[3,1],[9,19],[3,8],[13,32],[8,15],[7,8],[1,0],[9,3],[14,-8],[0,-1],[13,-12],[20,-30],[6,-31],[8,-122],[3,-52],[1,-10],[-4,-25],[-11,-70],[-2,-13],[-4,-24],[0,-6],[4,-7],[5,-1],[6,2],[2,3],[1,5],[2,8],[4,11],[8,2],[25,-13],[3,-5],[16,-30],[39,-76],[14,-42],[0,-1],[1,-3],[-1,-44],[-3,-80],[0,-13],[-2,-70],[-5,-23],[-8,-20],[-9,-22],[-7,-21],[-3,-10],[-3,-10],[-11,-19],[-7,-20],[12,-8],[12,-10],[1,-1],[11,-13],[14,-6],[10,-16],[-8,-26],[-13,-16],[-40,-70],[-1,-7],[20,-50],[6,-9],[2,6],[8,29],[5,3],[5,1],[19,3],[87,13],[4,1],[37,-25],[5,-4],[1,-2],[1,-2],[3,-5],[4,-47],[1,-28],[0,-13],[4,4],[11,11],[1,0],[4,1],[15,6],[4,2],[5,-2],[5,-1],[4,-1],[2,0],[91,-56],[0,-2],[0,-26],[0,-1],[0,-9],[7,-1],[29,-6],[5,-1],[7,-7],[19,-16],[-3,-1],[9,-25],[5,1],[10,-13],[11,-32],[14,18],[9,-21],[10,-12],[38,-69],[4,-21],[38,-90],[14,-31],[0,-1],[7,-7],[29,-27],[2,-22],[0,-6],[-7,-5],[-4,-4],[-3,-9],[-8,-22],[-2,-9],[5,-49],[1,-14],[3,-30],[0,-1],[23,-75],[8,-10],[7,-10],[28,-67],[4,-10],[12,-68],[5,-29],[6,-52],[5,-49],[-6,-18],[-13,-19],[-2,-3],[0,-2],[-25,-42],[-25,-42],[-1,-7],[-1,-5],[-1,-4],[0,-2],[-4,-150],[0,-4],[1,-4],[12,-32],[-1,-138],[-1,-29],[-1,-39],[-3,-109],[-2,-105],[-1,-56],[-6,-325],[-2,-170],[-1,-31],[-4,-149],[-3,-152],[-5,-205],[-2,-72],[0,-66],[-1,-35],[0,-1],[-2,-49],[0,-37],[-2,-100],[-2,-92],[-4,-137],[-5,-240],[-1,-37],[-1,-23],[0,-25],[-1,-29],[0,-3],[-2,-76],[-1,-45],[-2,-79],[-3,-98],[-5,-256],[-2,-73],[-1,-46],[-3,-44],[-3,-166],[-6,-50],[0,-59],[0,-60],[3,-25],[-3,-38],[-1,-35],[0,-12],[-5,-223],[-2,-116],[-1,-71],[-1,-48],[-1,-46],[-1,-68],[-1,-41],[0,-31],[-2,-92],[1,-63],[-1,-61],[-25,-1249],[-9,-136],[-15,-381],[-1,-31],[-1,-73],[-16,-599],[-28,-933],[-9,-280],[-29,-835],[-3,-62],[-46,-1294],[-6,-172],[-27,-949],[-12,-424],[-19,-733]],[[78010,62170],[-57,13],[-43,-1],[-43,-5],[-45,2],[-90,-29],[-28,-5],[-29,-6],[-20,-4],[-17,-7],[-47,-8],[-54,46],[-21,15],[-15,6],[-20,1],[-23,-11],[-13,-7],[-16,-7],[-2,-1],[-21,-35],[3,-128],[4,-17],[3,-16],[2,-61],[-1,-8],[-3,-14],[-2,-13],[-20,-22],[-30,-23],[-45,-23],[-9,3],[-4,1],[-6,2],[-16,22],[-19,5],[-47,-11],[-64,-3],[-36,8],[-13,9],[-25,8],[-21,-17],[-19,-37],[-20,-120],[-3,-13],[3,-12],[23,-44],[60,-86],[29,-41],[19,-17],[11,-23],[-6,-40],[-6,-36],[-20,-48],[-20,-34],[-23,-27],[-16,-13],[-5,-3],[-3,-3],[-25,-12],[-26,-7],[-26,8],[-5,4],[-12,10],[-19,23],[-32,66],[-4,27],[2,27],[0,7],[-4,41],[-30,186],[-27,57],[-10,8],[-43,13],[-15,-7],[-23,-15],[-17,-92],[-19,-18],[-3,-4],[-23,-2],[-67,25],[-22,-9],[-15,-37],[-13,-34],[-11,-16],[-15,-16],[-14,-10],[-22,-7],[-17,-3],[-28,-4],[-30,-7],[-13,-2],[-17,-3],[-29,-4],[-24,-9],[-21,-10],[-29,-11],[-17,-7],[-15,-10],[-21,-18],[-17,-14],[-19,-18],[-16,-16],[-13,-17],[-9,-16],[-10,-26],[-2,-39],[6,-46],[6,-23],[7,-27],[7,-26],[5,-26],[2,-22],[-5,-21],[-14,-35],[-8,-19],[-7,-25],[-5,-21],[-10,-22],[-2,-44],[-16,-53],[-14,-37],[-22,-29],[-20,-22],[-29,-39],[-11,-21],[-16,-20],[-14,-17],[-15,-13],[-13,-13],[-13,-15],[-13,-15],[-13,-10],[-18,-13],[-15,-29],[-13,-30],[-5,-21],[-5,-23],[-7,-32],[-5,-22],[-11,-37],[-12,-20],[-14,-12],[-14,-3],[-20,5],[-12,9],[-13,14],[-20,30],[-22,40],[-18,32],[-11,36],[-12,41],[-10,45],[-13,31],[-22,35],[-19,29],[-20,28],[-25,42],[-24,46],[-20,31],[-40,40],[-39,26],[-39,29],[-24,15],[-21,15],[-21,9],[-17,4],[-18,3],[-17,3],[-21,-9],[-17,3],[-27,-4],[-23,11],[-32,-2],[-21,-6],[-11,-23],[-4,-29],[-16,-22],[-18,-16],[-20,-17],[-21,-2],[-14,21],[-8,17],[-20,17],[-15,8],[-23,11],[-14,23],[-11,20],[-2,24],[-9,37],[-1,50],[5,153],[0,34],[-1,30],[22,78],[15,33],[37,52],[39,53],[1,2],[14,30],[3,37],[1,13],[-19,64],[-7,24],[0,4],[-3,39],[3,14],[2,90],[1,46],[20,110],[8,65],[0,2],[3,64],[-1,6],[-6,39],[-27,12],[-43,17],[-35,11],[-34,12],[-30,57],[-16,55],[-8,18],[-17,20],[-10,15],[1,23],[0,25],[-1,2],[-2,27],[-29,45],[-2,0],[-1,0],[-13,21],[-16,23],[-11,18],[-13,19],[-18,11],[-14,5],[-27,8],[-21,17],[-15,20],[-23,37],[-1,1],[-5,33],[2,9],[1,4],[7,38],[20,34],[29,29],[4,4],[4,14],[5,23],[-1,29],[-1,8],[-12,30],[-42,47],[-34,38],[-4,4],[-10,9],[-25,22],[-14,24],[-4,27],[7,95],[-2,15],[-4,40],[0,1],[-9,20],[-9,6],[-15,12],[-14,15],[-46,48],[0,1],[-1,1],[-10,13],[-22,50],[-5,57],[0,1],[0,3],[8,41],[2,8],[31,59],[13,58],[0,17],[-1,15],[-29,180],[-7,33],[-3,7],[-14,31],[-7,15],[-27,48],[-1,3],[-65,202],[0,14],[-1,2],[0,3],[-2,2],[-6,-1],[-66,-11],[-154,-28],[-44,-7],[-141,-23],[-281,-47],[-25,-4],[-341,-57],[-120,-20],[-27,-5],[-166,-28],[-107,-17],[-185,-30],[-85,-15],[-16,-3],[-32,-6],[-17,-3],[-21,-3],[-81,-15],[-482,-78],[-40,-6],[-747,-127],[-314,-53]],[[50675,65804],[-110,45],[-113,44],[-148,60],[-59,23],[-80,30],[-42,16],[-141,56],[-46,18],[-19,-76],[-4,-12],[-91,-355],[-24,-93],[-130,-505],[-40,-157],[-21,-82],[-21,-79],[-72,-283],[-12,-45],[-20,-80],[-38,-145],[-3,-11],[-37,-147],[-56,-215],[-21,-81],[-9,-35],[-54,-202],[-69,-257],[-18,-69],[-19,-75],[-6,-21],[-52,-195],[-12,-45],[0,-1],[-24,-92],[-40,-150],[9,-5],[76,-32],[19,-7],[49,-21],[65,-27],[53,-23],[30,-12],[-2,-31],[-67,-842],[-10,-130],[-2,-24],[-14,-212],[-4,-35],[-21,-258],[-4,-41],[-3,-42],[-5,-63],[-8,-95],[-3,-43],[-3,-44],[-2,-24],[-2,-31],[-1,-24],[-2,-32],[0,-3],[-2,-30],[-9,-135],[-12,-173],[-11,-141],[-8,-117],[-12,-181],[-2,-30],[-11,-165],[-5,-62],[-15,-221],[-14,-193],[-15,-200]],[[49056,58839],[-25,16],[-41,12],[-2,0],[-59,3],[-7,2],[-28,7],[-28,4],[-4,0],[-5,2],[-24,6],[-21,3],[-42,9],[-27,9],[-18,4],[-4,0],[-16,9],[-10,5],[-30,11],[-9,4],[-21,4],[-19,-1],[-21,15],[-43,9],[-11,6],[-2,1],[-6,5],[-12,9],[-1,2],[-15,15],[-1,1],[-5,29],[0,1],[2,26],[-1,36],[-1,35],[-16,38],[-9,20],[-3,36],[-7,28],[-6,21],[-16,23],[-28,-6],[-1,0],[-37,-35],[-22,-8],[-43,-4],[0,-1],[-38,-8],[-1,0],[-13,-8],[-11,-25],[-16,-16],[-42,-10],[-28,21],[-13,15],[-25,33],[-1,2],[-1,1],[-11,18],[-6,22],[-1,8],[-3,32],[-3,28],[19,32],[-38,3],[-18,-8],[-1,0],[-13,-3],[-12,1],[-17,1],[-18,-1],[-16,-2],[-6,-3],[-10,-7],[-17,3],[-19,-3],[-13,-7],[-4,-4],[-8,-8],[-15,-11],[-7,-5],[-5,-2],[-22,-10],[-1,0],[-26,7],[-2,0],[-26,20],[-1,2],[-14,26],[-1,0],[-19,49],[-12,33],[-21,11],[-20,8],[-27,10],[-12,-39],[-1,-2]],[[47675,59454],[-21,-13],[-18,-13],[-6,-3],[-8,-4],[-26,-34],[-11,-11],[-14,-8],[-7,-18],[-6,-22],[-13,-17],[-23,11],[13,-1],[13,1],[9,17],[-16,-6],[11,13],[-2,24],[-14,1],[-14,-7],[-13,11],[-6,5],[-7,6],[-14,19],[-8,17],[2,19],[1,6],[-13,21],[-12,25],[-13,14],[-21,18],[-10,7],[-4,3],[-16,11],[-19,11],[-17,6],[-20,14],[-11,2],[-3,1],[-4,3],[-11,8],[-18,11],[-17,7],[-19,1],[-13,8],[-15,-8],[-16,0],[-13,7],[-12,12],[-4,22],[-11,25],[-8,20],[2,23],[-14,13],[-19,19],[-11,14],[-14,11],[-12,13],[-13,10],[-12,16],[-18,21],[-15,16],[-13,12],[-20,13],[-13,5],[-18,4],[-23,0],[-15,-1],[-5,-9],[-7,-10],[13,-10],[-15,-7],[-2,-9],[-3,-9],[-2,-5],[-2,0],[-11,0],[-9,-17],[-14,-3],[-11,14],[-5,20],[-3,-23],[-16,6],[-11,6],[-9,4],[-14,4],[-19,0],[-17,2],[-17,-7],[-16,-10],[-18,0],[-13,3],[-15,-2],[-13,-8],[-21,-4],[-23,-3],[-13,0],[-18,3],[-16,14],[-11,14],[-10,21],[-1,3],[-7,20],[-4,24],[-4,31],[3,31],[5,23],[9,15],[8,5],[4,2],[13,-1],[13,13],[13,-13],[-10,17],[-14,1],[-14,9],[-3,1],[-10,5],[-14,6],[-11,11],[-13,6],[-11,20],[0,23],[16,20],[15,6],[19,1],[2,0],[12,-9],[14,-7],[14,5],[13,5],[16,-7],[20,-2],[22,0],[14,-3],[12,-8],[15,-7],[-2,23],[-13,9],[-16,-2],[-13,10],[-13,7],[-12,19],[-9,-16],[-16,2],[-18,3],[-17,11],[-4,23],[1,24],[-10,-16],[3,-23],[-17,-1],[-14,7],[-12,7],[-13,2],[-1,0],[0,1],[-7,20],[-16,0],[-7,19],[-17,19],[-18,11],[-13,9],[-14,16],[-11,13],[-17,16],[-14,8],[-17,23],[-20,16],[-16,5],[-22,-8],[-5,-3],[-12,-9],[-4,0],[-11,-2],[-14,5],[-20,8],[-12,16],[1,24],[2,28],[-15,5],[-11,23],[-10,18],[-16,16],[-13,14],[-12,7],[-13,19],[-12,14],[-17,20],[-20,7],[-22,7],[-20,6],[-14,0],[-15,-2],[-12,-7],[-26,-6],[-18,9],[-15,9],[-5,0],[-9,-1],[-14,1],[-3,22],[-15,7],[-18,10],[-11,17],[-12,21],[-13,6],[-11,17],[-1,0],[-10,18],[-9,5],[-13,2],[-6,0],[-30,-2],[-17,-4],[-28,-5],[-26,0],[-14,0],[-30,30],[-18,19],[-39,22],[-5,2],[-6,3],[-84,41],[-23,11],[-50,22],[-4,1],[-4,24],[-10,26],[-18,31],[-23,26],[-26,13],[-19,14],[-14,19],[-81,116],[-41,60],[-3,5],[-21,36],[-14,24],[-1,1],[-18,26],[-17,21],[-24,19],[-15,27],[-45,54],[-17,7],[-2,1],[-2,-1],[-21,-14],[-32,-21],[-13,-8],[0,-1],[-33,-66],[13,-13],[11,-19],[0,-4],[3,-31],[-6,-37],[-1,-1],[-22,-65],[-5,-7],[-9,-9],[-9,-32],[1,-17],[14,-65],[3,-10],[8,-116],[2,-23],[1,-37],[-7,-38],[-24,-42],[-6,-21],[7,-13],[11,-9],[67,-18],[12,-9],[16,-27],[4,-15],[3,-14],[-14,-88],[0,-28],[3,-35],[11,-31],[7,-46],[10,-81],[34,-13],[28,-26],[41,-39],[-2,-4],[-52,-106],[0,-1],[-91,83],[-3,2],[-5,-4],[-17,-21],[-25,-59],[-6,-38],[1,-9],[1,-3],[-4,-24],[-15,-47],[0,-1],[-36,-41],[-10,-8],[-8,-7],[-29,-3],[-34,-2],[-29,4],[-19,5],[-38,30],[-33,41],[-42,87],[-11,12],[-48,24],[-38,14],[-37,6],[-4,13],[-19,67],[-15,39],[-3,9],[-3,8],[-1,5],[-11,70],[-15,32],[-10,12],[-5,6],[-10,20],[-25,50],[-32,67],[-10,32],[-3,2],[-21,26],[-24,28],[-7,-1],[-12,-1],[-14,9],[-13,20],[-17,25],[-1,1],[-6,11],[-5,1],[-12,3],[-57,11],[-3,1],[-26,-18],[-1,0],[-3,-19],[20,-40],[17,-33],[11,-12],[2,-2],[50,-72],[1,-1],[65,-145],[3,-24],[-8,-79],[-7,-64],[-14,-43],[0,-2],[-1,-31],[-1,-5],[-24,-48],[-3,-6],[-20,-35],[-13,-53],[-7,-33],[-21,-36],[-41,-32],[-19,-16],[-21,-5],[-4,-1],[-20,-5],[-17,-4],[-4,26],[-8,37],[-6,44],[-9,32],[-36,55],[-18,38],[-5,45],[-1,2],[1,5],[5,56],[-12,27],[-10,22],[-9,19],[-30,36],[-19,6],[-11,2],[-23,23],[-9,17],[-29,50],[-2,15],[-10,20],[-26,22],[-27,23],[-8,13],[-17,28],[-13,3],[-36,-13],[-12,3],[-24,-13],[-5,-3],[-18,-10],[-5,-3],[-2,1],[-6,-1],[-15,2],[-16,8],[-14,8],[-23,6],[-12,9],[-14,18],[-3,3],[-15,8],[-18,0],[-230,-16],[0,25],[-94,-8],[-4,-1],[-18,-2],[-65,-4],[-90,-6],[-109,-8],[-88,-3],[-5,-1],[-20,-1],[-122,-13],[-29,-1],[-96,-6],[-110,-6],[-25,-3],[-15,-1],[-115,-7],[-81,-5],[-263,-16],[-81,-5],[-37,-2],[-133,-8],[-103,-6]],[[41530,60431],[-8,214],[-1,32],[0,38],[-7,152],[-3,62],[-4,118],[-1,28],[-126,1],[-73,-2],[-35,-3],[-137,-4],[-94,-3],[-73,-2],[-1,0],[-49,-2],[-100,-5],[-43,-2],[-48,-2],[-123,-6],[-27,-1],[-124,-6],[-16,0],[-1,0],[-33,-2],[-25,-1],[-156,-10],[-1,0],[-156,-10],[-72,-4],[-32,-2],[-22,-2],[-1,45],[-2,38],[-2,63],[-3,87],[-7,188],[-1,23],[-1,39],[-5,117],[-12,355],[-1,37],[-2,42],[-13,345],[-1,31],[-5,108],[-1,16],[-1,37],[0,8],[-3,71],[-6,134],[0,25],[-5,89],[-5,152],[-7,146],[-2,40],[-1,37],[-6,134],[-1,40],[-1,28],[-1,27],[-12,186],[-4,97],[-1,3],[-4,88],[-4,72],[-1,15],[-1,24],[-1,27],[-1,26],[-7,259],[-2,26],[-4,74],[-2,58],[-1,28],[-2,23],[-2,37],[-1,33],[-4,59]],[[57556,52741],[-16,-2],[-119,-14],[-81,-9],[-23,-3],[-18,-2],[-117,-15],[-1,0],[-11,-1],[1,-3],[-1,-10],[-3,-5],[-10,-21],[-8,-24],[-10,-23],[-15,-24],[-13,-12],[-8,-19]],[[57103,52554],[-21,3],[-8,-1],[-110,-7],[-72,-5],[-38,-2],[-36,-3],[-75,-5],[-85,-6],[-42,-4],[-19,-1],[-35,-3],[-53,-2],[-119,-5],[-36,-6],[-39,-3],[-1,0],[-37,-2],[-132,-9],[-149,-13],[-13,-1],[-222,-18],[-260,-20],[-193,-17],[-121,-11],[-50,-4],[-5,-1],[-38,-3],[-55,-5],[-93,-8],[-65,-6],[-15,0],[-156,-14],[-12,207],[-6,53],[-10,184],[-4,73],[-7,144],[-4,68],[-16,256],[-1,27],[-9,159],[0,1],[-2,33],[-2,30],[-15,309],[-20,-1],[-53,-2],[-15,1],[-68,-2],[-27,-1],[-54,-2],[-35,0],[-4,0],[-16,0],[-28,0],[-19,-1],[-166,-4],[-38,-1],[-144,-4],[-15,-2],[-32,-1],[-144,-3],[-18,0],[-63,-1],[-89,-2],[-149,-3],[-69,0],[1,152],[1,121],[0,38],[-11,232],[-9,170],[-6,125],[-12,239],[-2,47],[-4,77],[-9,154],[-9,156],[-5,87],[-1,32],[-5,86],[-4,56],[-3,47],[-5,99],[-2,43],[-1,39],[-6,110],[-3,43],[-7,102],[-6,85],[-38,-4],[-25,-3],[-25,-2],[-22,-2],[-28,-1],[-63,-3],[-14,-2],[-56,-5],[-126,-12],[-29,-2],[-34,-2],[-63,-5],[-38,-5],[-1,23],[-3,2],[1,5],[-11,40],[1,96],[0,10],[-59,141],[-28,32],[-3,2],[-7,-1],[-4,-18],[-20,59],[21,34],[18,29],[27,43],[8,8],[1,2],[23,33],[0,2],[2,5],[2,23],[0,6],[0,5],[-31,50],[-4,4],[-27,17],[-8,2],[-31,3],[-21,2],[-3,0],[-45,5],[-6,3],[-18,9],[-1,1],[-8,5],[-20,26],[0,4],[17,12],[1,1],[1,3],[0,18],[0,3],[-43,51],[-24,7],[-15,30],[-18,4],[-15,0],[-33,10],[-12,12],[-10,22],[-10,13],[-18,12],[-19,1],[-7,-21],[-14,7],[-10,-21],[-4,23],[-16,12],[-7,20],[-10,19],[-18,3],[-2,7],[-9,23],[-10,31],[16,-5],[13,17],[-16,24],[9,24],[-9,35],[13,32],[-17,4],[-1,22],[-5,24],[0,22],[5,22],[-5,31],[-1,3],[0,43],[10,15],[13,6],[-1,27],[-13,27],[-20,23],[-22,17],[-10,19],[-11,72],[11,13],[-18,24],[-18,9],[-16,2],[-15,-1],[-15,0],[-11,21],[-15,16],[-1,1],[-11,10],[-13,18],[-2,26],[11,34],[12,15],[11,24],[-3,2],[-20,15],[-13,-8],[-51,-8],[-9,23],[-15,18],[-14,-4],[-12,-10],[-15,-5],[-15,8],[-25,0],[-13,2],[-2,1],[-13,9],[-10,21],[-10,16],[-19,6],[-7,29],[6,19],[10,21],[-20,30],[-13,0],[-13,-10],[-26,0],[-12,-19],[-10,18],[-15,-7],[-7,20],[15,11],[-18,23],[-20,-6],[-16,3],[-6,23],[14,14],[17,25],[20,-7],[20,-1],[15,15],[-7,25],[-26,17],[-26,-5],[-16,3],[-19,10],[-13,13],[2,47],[-4,28],[-13,20],[-23,-14],[-14,-4],[-25,5],[-14,12],[3,27],[-31,30],[-1,26],[22,32],[-12,19],[-19,-1],[-17,-9],[-34,-51],[-14,-8],[-20,17],[-15,9],[-9,-19],[-14,8],[-7,20],[-6,38],[13,22],[-4,36],[0,24],[2,25],[-19,19],[1,41],[8,21],[10,31],[2,28],[-14,11],[-20,0],[-27,-6],[-13,-10],[-10,-15],[-33,11],[16,22],[5,24],[-15,15],[-16,-6],[-18,0],[-16,21],[-7,6],[-1,9],[-8,69],[21,42],[-1,0],[-3,11],[-8,14],[-4,3],[-30,13],[-12,-21],[-11,-60],[-1,-5],[-3,-6],[-6,-2],[-6,4],[-5,6],[-7,11],[-3,5],[-7,17],[-6,20],[-32,21],[-15,10],[-41,28],[-15,15],[-10,13],[-9,9],[-15,6],[-16,-14],[-8,-23],[-41,-59],[-9,-11],[-10,-25],[-15,1],[-4,1],[-54,13],[0,1],[-1,0],[-24,5],[-42,9],[-18,48],[-12,31],[-1,4],[-12,22],[-2,4],[-5,8],[-5,6],[-2,3],[-10,10],[-3,3],[-1,1],[-73,56],[-1,1],[-63,42],[-29,20],[-2,1],[-25,-18],[-1,-11],[-3,-16],[0,-1],[-16,-34],[-1,0],[-32,-13],[-19,-6],[-62,-56],[0,-1],[-1,-7],[-2,-7],[-5,-8],[-44,-54],[-16,-18],[-6,-6],[0,-1],[-20,0],[-97,0],[-11,5],[-2,1],[-5,2],[-22,6],[-107,18],[-22,1],[-8,-1],[-18,-2],[-22,-10],[-4,-3],[-26,-15],[-10,-5],[-26,-12],[-72,-6],[-10,1],[-6,0],[-10,3],[-11,3],[-14,6],[-20,11],[-23,7],[-11,0],[-8,0],[-1,0],[-6,-2],[-12,-7],[-16,-18],[-10,-10],[-30,-21],[-5,-4],[-82,-26],[-1,0],[-6,-6],[-5,-10],[-1,-1],[-21,-73],[-4,-11],[-24,-26],[-76,-83],[-10,-2],[-42,-7],[-11,6],[-28,18],[-2,1],[-8,10],[-18,22],[-3,7],[3,18],[0,1],[-6,12],[-5,11],[-7,8],[-15,11],[-102,65],[-3,2],[-1,0]],[[41530,60431],[6,-158],[5,-93],[7,-186],[1,-24],[1,-23],[1,-26],[1,-25],[1,-24],[1,-23],[1,-31],[-1,-22],[5,-85],[2,-24],[1,-28],[3,-66],[2,-38],[2,-46],[1,-29],[2,-35],[4,-91],[0,-8],[2,-42],[2,-38],[1,-42],[5,-106],[2,-40],[1,-38],[0,-2],[2,-35],[1,-31],[2,-45],[7,-167],[1,-35],[2,-40],[3,-23],[1,-35],[-53,-1],[-18,-1],[-18,0],[-14,-1],[-16,-7],[-13,-9],[-2,-2],[-11,-10],[-12,-13],[-10,-18],[1,-22],[8,-21],[9,-18],[2,-3],[6,-25],[15,-46],[24,-52],[11,-21],[9,-24],[12,-33],[8,-35],[26,-114],[6,-27],[10,-51],[24,-140],[6,-57],[3,-25],[2,-86],[1,-42],[-8,-18],[-15,-7],[-27,5],[-44,13],[-19,11],[-12,6],[-19,11],[-15,3],[-6,1],[-9,2],[-15,4],[-19,4],[-24,-8],[-18,-6],[-18,-18],[-10,-9],[-27,-26],[-19,-18],[-5,-5],[-3,-11],[-10,-34],[-5,-39],[0,-37],[1,-23],[2,-39],[15,-261],[3,-81],[1,-26],[4,-80],[0,-2],[2,-34],[1,-23],[1,-29],[4,-80],[1,-11],[10,-213],[3,-66],[3,-55],[1,-24],[6,-131],[2,-46],[2,-49],[3,-78],[3,-99],[3,-60],[4,-89],[2,-32],[1,-50],[1,-14],[1,-24],[1,-31],[2,-62],[2,-44],[7,-185],[254,21],[3,0],[109,9],[5,-137],[0,-16],[1,-17],[2,-49],[0,-31],[4,-45],[1,-30],[1,-28],[4,-89],[3,-58],[1,-32],[2,-34],[1,-29],[1,-23],[1,-25],[1,-24],[3,-56],[1,-24],[1,-26],[1,-24],[1,-23],[1,-64],[4,-74],[0,-27],[5,-76],[0,-36],[4,-72],[2,-40],[1,-25],[1,-29],[2,-44],[2,-62],[1,-23],[0,-2],[3,-97],[1,-27],[5,-89],[2,-39],[2,-53],[1,-24],[8,-173],[6,-143],[4,-35],[6,-138],[1,-29],[2,-38],[1,-37],[11,-286],[9,-174],[6,-131],[5,-109],[8,-179],[5,-104],[3,-62],[4,-96],[5,-95],[1,0],[31,4],[41,3],[69,5],[100,7],[99,6],[54,3],[1,0],[183,12],[73,5],[77,6],[25,1],[1,0],[170,12],[37,2],[27,3],[1,0],[55,4],[38,2],[37,2],[21,2],[29,2],[10,0],[5,1],[30,-33],[37,-50],[13,-17],[40,-52],[12,-16],[12,-15],[20,-28],[24,-31],[74,-97],[22,-28],[22,-28],[17,-20],[21,-28],[62,-72],[70,-81],[12,-14],[12,-14],[12,-14],[9,-11],[3,-3],[13,-16],[33,-38],[26,-31],[26,-31],[32,-41],[17,-24],[22,-33],[26,-38],[18,-25],[15,-27],[40,-70],[1,-1],[30,-51],[12,-24],[29,-54],[32,-62],[10,-22],[40,-84],[40,-86],[5,-9],[9,-25],[10,-25],[13,-33],[3,-7],[7,-18],[0,-13],[2,-49],[2,-25],[1,-36],[2,-35],[0,-23],[1,-23]],[[44117,50335],[2,-41],[2,-55],[2,-54],[1,-7],[2,-65],[8,-197],[2,-49],[8,-230],[1,-23],[3,-78],[4,-108],[22,-634],[2,-72],[6,-151],[4,-114],[4,-116],[5,-170],[10,-331],[3,-63],[4,-111],[3,-69],[2,-65],[2,-51],[10,-300],[3,-80],[0,-33]],[[44232,47068],[-92,-4],[-54,-3],[-17,-1],[-13,0],[-47,-3],[-2,0],[-153,-7],[-234,-10],[-62,-2],[-14,0],[-14,-1],[-22,-1],[-29,-2],[-246,-10],[-42,-1],[-16,-1],[-21,0],[-13,-1],[-46,-5],[-20,0],[-13,0],[-86,-4],[-77,-4],[-28,-1],[-18,2],[-29,-2],[-99,-5],[-12,-1],[-9,0],[-8,-1],[-169,-9],[-26,-1],[-13,0],[-18,-1],[-24,-1],[-14,-1],[-16,-1],[-18,-1],[-15,-1],[-31,-1],[-14,-1],[-27,-1],[-17,-1],[-15,-1],[-13,1],[-130,-6],[-25,-1],[-88,-5],[-68,-3],[-42,-2],[-79,-3],[-41,-2],[-2,73],[-1,57],[0,13],[-2,52],[-7,0],[-32,-2],[-26,-1],[-14,-1],[-17,-1],[-14,-1],[-16,-1],[-15,0],[-22,-2],[-16,0],[-24,-1],[-27,-2],[-23,-5],[-168,-6],[-3,0],[-43,-3],[-38,-2],[-16,0],[-17,-1],[-15,-1],[-16,-1],[-13,-1],[-25,-1],[-27,-2],[-20,-3],[-32,-2],[-31,-1],[-24,-2],[-17,-1],[-28,-1],[-22,-1],[-115,-6],[-54,-4],[-25,-1],[-15,-1],[-10,-1],[-12,-1],[-15,-1],[-15,-1],[-16,-1],[-71,-3],[-71,-4],[-139,-9],[-33,-2],[-43,-6],[-16,-1],[-14,-1],[-119,-4],[-56,-6],[-21,-2],[-18,-1],[-28,-1],[-14,-1],[-24,-1],[-35,-2],[-17,-1],[-25,-1],[-30,-2],[-13,-1],[-15,-1],[-13,0],[-43,-3],[-20,-1],[-4,44],[-3,28],[-53,-4],[-58,-3],[-24,-4],[-90,-3],[-16,-2],[-159,-8],[-3,0],[-254,-19]],[[39161,47065],[-11,36],[-5,22],[-25,106],[0,4],[-6,24],[-18,79],[-23,96],[-22,95],[-5,22],[-9,39],[-35,159],[-12,58],[-8,34],[-18,86],[-9,38],[-5,23],[-32,134],[-13,37],[-14,44],[-30,56],[-64,117],[-1,3],[-31,40],[-18,25],[-49,65],[-11,13],[-11,12],[-71,81],[-12,16],[-45,61],[-16,20],[-16,22],[-15,20],[-7,9],[-5,7],[-13,22],[-10,19],[-10,17],[-14,24],[-8,22],[-6,17],[-11,29],[-17,47],[-28,79],[-34,174],[-23,158],[-11,127],[-11,132],[-8,100],[-3,32],[-9,100],[-5,57],[-3,34],[-10,147],[-16,205],[-7,140],[-3,148],[2,118],[0,21],[16,81],[6,36],[60,152],[40,101],[17,44],[21,54],[14,42],[7,22],[32,99],[47,166],[5,33],[20,144],[5,120],[-7,83],[-3,35],[-12,54],[-19,91],[-8,78],[2,185],[-2,79],[-2,36],[-1,39],[-6,33],[0,2],[-9,46],[-7,40],[-9,38],[-13,56],[-7,21],[-11,37],[-8,25],[-5,16],[-7,21],[-20,61],[-30,88],[-22,62],[-26,72],[-13,51],[-12,51],[-16,171],[-1,34],[-5,120],[10,162],[0,3],[1,22],[5,39],[1,11],[17,152],[2,14],[18,147],[2,22],[3,22],[-1,36],[0,3],[-7,20],[-7,21],[-19,61],[-5,31],[-6,24],[-7,19],[-7,30],[7,21],[7,20],[1,34],[-3,62],[9,17],[11,30],[0,3],[1,27],[9,24],[-7,32],[-3,16],[-5,22],[13,47],[32,45],[31,37],[30,35],[13,46],[-8,63],[-1,77],[3,27],[-9,46],[28,33],[4,24],[38,33],[15,23],[12,30],[7,26],[-3,71],[0,34],[0,4],[1,21],[-1,31],[-6,28],[-3,27],[-4,24],[0,23],[6,22],[8,17],[9,17],[10,22],[14,20],[11,12],[24,27],[11,15],[20,24],[12,24],[8,25],[0,1],[2,24],[-3,26],[-7,28],[-9,25],[-6,22],[-8,19]],[[38563,55928],[-7,22],[-7,23],[-7,22],[-10,27],[-8,25],[-7,19],[-6,20],[-5,24],[-4,35],[1,27],[-2,24],[-3,13],[-2,9],[1,42],[-1,28],[2,29],[5,66],[6,66],[1,3],[3,53],[10,116],[-1,18],[0,17],[-5,36],[-2,27],[-2,17],[0,7],[0,17],[0,4],[0,18],[6,13],[5,10],[13,15],[9,19],[5,10],[8,20],[10,18],[10,15],[2,4],[14,16],[19,15],[22,13],[19,7],[11,13],[2,24],[8,26],[5,20],[0,23],[5,20],[8,26],[2,24],[6,22],[6,20],[-2,56],[-2,31],[-1,37],[-1,27],[-1,10],[0,19],[-2,40],[-2,44],[-1,25],[-4,107],[-1,32],[-5,138],[-1,63],[-3,60],[-2,52],[-1,39],[-3,62],[-4,103],[-1,26],[-1,34],[-2,43],[-1,40],[-2,42],[-1,52],[-3,71],[-5,140],[-4,112],[-2,56],[-3,112],[-3,83],[-1,35],[-1,9],[-8,249],[-3,116],[-2,51],[-1,41],[-1,50],[-1,31],[-9,228],[-2,44],[-2,44],[-3,108],[0,4],[-3,75],[-6,147],[-1,31],[-1,26],[0,7],[-2,60],[-1,28],[-7,139],[-2,67],[-5,110],[-2,31],[-2,48],[0,1],[-1,37],[-9,181],[-1,46],[-3,55],[-3,58],[-1,22],[-5,120],[-3,47],[-13,272],[-16,1],[-3,42],[-2,44],[-6,125],[-5,108],[-4,84],[-4,76],[-3,62],[-2,49],[-2,34],[-4,105],[-3,67],[-2,24],[-1,30],[-2,25],[-2,46],[-1,30],[-1,22],[-2,29],[-1,29],[-2,40],[-1,38],[-3,41],[-2,46],[-4,94],[-1,24],[-3,49],[-1,32]],[[77498,54098],[-28,-26],[-14,-8],[-15,-8],[-21,-3],[-70,-6],[-17,-6],[-15,-4],[-14,-8],[-27,-27],[-59,-56],[-13,-16],[-17,-17],[-23,-50],[-11,-28],[3,-75],[-13,-30],[-30,-54],[-59,-43],[-11,-16],[-5,-9],[-73,-124],[-17,-28],[-6,-22],[0,-41],[-6,-20],[-32,-69],[-15,-56],[-1,-35],[-1,-10],[-7,-95],[-13,-109],[16,-34],[7,-8],[13,-26],[0,-1],[11,-37],[0,-1],[-7,-34],[1,-23],[15,-50],[16,-34],[21,-20],[19,-8],[39,-118],[6,-19],[-7,-47],[-2,-13],[1,-25],[0,-41],[-15,-213],[1,-9],[4,-23],[18,-91],[5,-24],[0,-20],[1,-72],[5,-70],[10,-63],[9,-25],[3,-6],[42,-85],[5,-17],[12,-39],[11,-42],[14,-52],[8,-77],[1,-5],[3,-6],[8,-17],[23,-45],[13,-75],[-2,-33],[-3,-5],[13,-98],[8,-88],[-7,-38],[-28,-77],[-22,-47],[-12,-4],[-43,-13],[-2,-5],[-37,-73],[-1,-3],[-2,-2],[-30,-48],[-12,-94],[-8,-34],[-9,-33],[-6,-26],[-12,-39],[-7,-23]],[[76976,50601],[-1,13],[-38,58],[-16,10],[-23,4],[-13,-2],[-25,-16],[-19,-24],[-19,-37],[-7,-35],[-5,-63],[-4,-32],[-18,-25],[-24,7],[-13,11],[-30,24],[-18,15],[-14,11],[-8,7],[-24,30],[-70,113],[-1,2],[-14,29],[-1,2],[-5,10],[-7,59],[1,18],[1,19],[-3,18],[-21,43],[-40,63],[-20,24],[-23,18],[-22,38],[-8,34],[-5,22],[-14,48],[7,113],[-6,39],[-21,66],[11,62],[-1,18],[-19,37],[-4,7],[-12,5],[-15,7],[-22,-7],[-41,-21],[-2,-1],[-66,-40],[-13,-19],[-19,-40],[-10,-32],[-6,-20],[-16,-84],[-29,-25],[-22,-48],[-18,-57],[-32,-68],[-5,-12],[-19,-40],[-40,-73],[-43,-17],[-36,-77],[-2,-5],[-25,-66],[-9,-28],[-24,-19],[-12,-9],[-9,-7],[-4,5],[-41,40],[-5,10],[-36,57],[-13,12],[-22,9],[-6,2],[-8,3],[-2,0],[-43,-3],[-44,-33],[-31,-35],[-1,-1],[-29,-48],[-35,-75],[-2,-5],[-2,-11],[-5,-12],[-28,-22],[-25,-32],[-17,-11],[-2,-2],[-9,0],[-116,0]],[[75299,50504],[-62,10],[-72,16],[-37,15],[-9,10],[-14,3],[-6,5],[-15,31],[-13,26],[-10,28],[-11,104],[-1,2],[-1,15],[-27,48],[-4,1],[-21,21],[-45,34],[-55,56],[-29,83],[-13,27],[-14,18],[-5,7],[-20,40],[-44,83],[-1,2],[-27,54],[-15,30],[-20,49],[-5,17],[-3,14],[-2,35],[-25,50],[-85,154],[-51,61],[-46,42],[-18,23],[-20,40],[-6,13],[-4,16],[-8,53],[-3,59],[-2,25],[-12,101],[-9,37],[-14,30],[-10,0],[-22,1],[-56,-11],[-3,0],[-32,2],[-60,15],[-8,3],[-2,28],[-3,37],[-6,68],[-16,214],[0,8],[-1,25],[-1,8],[-6,87],[-5,54],[-2,35],[-1,9],[-4,52],[-7,99],[-4,41],[-6,76],[-2,23],[-2,22],[-3,32],[-2,26],[-6,75],[-4,42],[0,3],[-3,37],[-7,75],[0,2],[-11,119],[-7,32],[-95,-11],[-58,-4],[-21,-3],[-36,-18],[-55,-29],[-15,-8],[-15,-8],[-1,0],[-90,-51],[-22,-16],[-20,-16],[-14,-11],[-18,-13],[-20,-15],[-38,-30],[-110,-71],[-14,-3],[-49,44],[-35,30],[-23,21],[-11,11],[-11,22],[-49,97],[-8,17],[-12,25],[-42,84],[-33,63],[-31,34],[-52,62],[-26,27],[-76,87],[-17,19],[-11,12],[-17,18],[-13,13],[-21,20],[-15,15],[-13,13],[-37,35],[-31,30],[-2,2],[-12,10],[-2,2],[-12,7],[-12,7],[-12,10],[-37,27],[-18,12],[-47,33],[-20,26],[-16,-3],[-15,8],[-46,24],[-40,20],[-44,24],[-14,8],[-49,39],[-72,78],[-30,19],[-14,10],[-60,39],[-59,38],[-15,2],[-18,2],[-120,13],[-165,18],[-23,3],[-71,7],[-58,10]],[[71715,54418],[-14,80],[-8,94],[-3,37],[-5,61],[-1,15],[-11,118],[-7,69],[-2,25],[-2,23],[-7,79]],[[71655,55019],[-8,85],[-15,170],[-2,22],[-10,102],[-7,86],[-2,25],[-3,28],[-3,36],[-4,52],[-4,29],[-1,30],[0,2],[-5,43],[-3,30],[-5,66],[-4,34],[-3,22],[-15,155],[0,36],[-4,42],[-10,111],[-7,78],[-3,28],[-16,186],[-14,153],[-5,57],[-5,52],[0,1],[-5,52],[-4,42],[-17,187],[-11,127],[-10,101],[-5,56],[-3,39],[-4,42],[-8,90],[-3,42],[-11,119],[-7,80],[-3,40],[-9,93],[-17,199],[-3,32],[-1,15],[-2,19],[-32,342],[-7,80],[-6,65],[-1,21],[-2,16],[-7,81],[-4,42],[-3,35],[-2,15],[-6,61],[-9,104],[-2,25],[-1,8],[-2,30],[-4,43],[-3,29],[-2,23],[-4,46],[-3,30],[-2,28],[-4,37],[-5,63],[-8,95],[-5,72],[-6,60],[-13,156],[-5,33],[-10,99],[-6,79],[-5,65],[-11,126],[-3,35],[-2,23],[-1,5],[-6,67],[-8,77],[-7,91],[-3,36],[-3,32],[-3,39],[-17,175],[-3,37],[-14,131],[-9,104]],[[22351,63470],[1,-70],[0,-11],[0,-6],[1,-15],[0,-31],[2,-74],[0,-85],[1,-32],[0,-42],[0,-40],[0,-81],[1,-62],[-1,-40],[0,-197],[0,-27],[0,-2],[0,-35],[0,-57],[0,-36],[0,-25],[0,-45],[0,-76],[-3,-305],[0,-4],[0,-25],[-1,-47],[0,-31],[0,-15],[0,-8],[0,-84],[-2,-105],[0,-55],[-4,-228],[-3,-116],[-1,-63],[-1,-121],[-1,-84],[-1,-56],[-1,-50],[0,-13],[0,-16],[-1,-127],[0,-50],[-1,-55],[0,-16],[0,-87],[-1,-103],[0,-93],[0,-68],[0,-31],[-1,-24],[1,-21],[0,-2],[0,-24],[-1,-33],[0,-38],[0,-30],[0,-4],[0,-24],[-1,-96],[0,-76],[0,-57],[-1,-73],[0,-25],[0,-24],[0,-3],[0,-375],[0,-39],[0,-63],[0,-232],[0,-43],[0,-110],[0,-30],[0,-3],[0,-20],[3,-161],[-3,-96],[-1,-25],[-1,-157],[0,-78]],[[22330,58339],[-31,0],[-4,0],[-16,-2],[-35,-1],[-22,-1],[-13,-1],[-77,-6],[-45,-1],[-5,-1],[-22,0],[-64,-5],[-44,-2],[-3,-1],[-33,-2],[-19,-1],[-66,-2],[-24,-2],[-72,-3],[-23,-2],[-25,0],[-28,0],[-45,0],[-130,-3],[-20,0],[-1,0],[-43,0],[-97,1],[-18,0],[-83,0],[-21,0],[-88,0],[-35,-1],[-32,1],[-43,1],[-46,0],[-28,0],[-36,1],[-35,0],[-22,0],[0,20],[-102,-1],[-16,-1],[-51,1],[-36,0],[-72,-1],[-67,-1],[-37,0],[-75,0],[-44,0],[-15,0],[-73,0],[-37,-1],[-40,0],[-18,-1],[-40,-1],[-96,-3],[-70,-2],[-97,-2],[-20,0],[-21,-1],[-58,-1],[-19,0],[-61,-1],[-36,-1],[-44,0],[-16,0],[-61,-1],[-31,0],[-54,0],[-100,1],[-40,0],[-62,-3],[-30,-2],[-88,-1],[-153,-4],[-18,0],[-235,-2],[-140,1],[-22,1],[-27,0],[-47,0],[-95,4],[-40,-5],[-35,0],[-37,-1],[-29,-1],[-48,1],[-96,-2],[-57,-3],[-41,-1],[-14,-1],[-26,-1],[-1,0],[-30,-1],[-44,-1],[-62,-1],[-20,0],[-4,0],[-12,1],[-26,-1],[-51,1],[-21,-1],[-18,0],[-23,0],[-7,0],[-18,-1],[-49,-1],[-39,0],[-1,0],[-16,0],[-8,0],[-71,1],[-38,0],[-34,1],[-16,0],[-47,0],[-64,0],[-16,0],[-48,0],[-66,1],[-97,-6],[-16,-1],[-31,-2],[-18,-1],[-15,0],[-54,-4],[-5,0],[-83,-6],[-20,-1],[-56,-4],[-23,-1],[-49,-3],[-108,-8],[-68,-3],[-48,-5]],[[16408,58242],[-2,52],[-1,36],[0,28],[0,27],[-1,22],[0,49],[4,120],[1,70],[2,66],[3,107],[2,73],[4,73],[4,120],[5,122],[9,189],[2,49],[9,237],[12,249],[5,110],[0,6],[4,85],[0,2],[1,33],[-7,256],[-3,102],[-7,190],[-1,35],[-2,63],[-4,116],[-4,94],[-3,62],[-14,295],[-4,86],[-5,141],[-9,201],[0,22],[0,12],[-7,135],[-6,119],[4,327],[0,56],[1,120],[1,35],[0,29],[1,88],[0,95],[1,60],[1,53],[1,102],[0,1],[0,31],[2,258],[0,154],[0,100]],[[16408,58242],[1,-57],[0,-2],[3,-61],[3,-128],[0,-15],[4,-195],[0,-33],[2,-141],[1,-79],[1,-110],[-2,-56],[-1,-1],[3,-117]],[[16423,57247],[-55,0],[-13,-16],[-27,-26],[-5,-2],[-36,46],[-19,24],[-2,-2],[-52,-17],[-4,-1],[-6,-1],[-1,1],[-1,1],[-11,34],[-20,12],[-10,0],[-9,-10],[-12,-18],[-6,-18],[-2,-2],[-17,-21],[-5,-4],[-46,-19],[-52,0],[-11,6],[-20,25],[-87,145],[0,9],[0,17],[0,48],[6,2],[23,0],[-8,7],[-28,13],[-7,-2],[-10,-13],[-6,-3],[-7,0],[-3,7],[-7,68],[1,6],[4,14],[-2,2],[-5,-1],[-6,-3],[-57,-71],[-13,-51],[0,-6],[5,-7],[-6,-19],[-1,-4],[-29,-20],[-26,-17],[-26,-17],[-47,-12],[-25,0],[-41,1],[-17,11],[-10,-21],[-7,-13],[-3,-6],[-16,-13],[-6,-1],[-6,9],[0,3],[-1,12],[-4,9],[-9,5],[-6,1],[-10,-7],[10,-15],[1,-3],[0,-7],[-2,-2],[-11,-1],[-2,-1],[-2,0],[-9,7],[-84,93],[-7,33],[-1,10],[14,19],[6,3],[8,1],[9,1],[14,-9],[6,1],[16,8],[6,2],[0,6],[-5,11],[-6,8],[-9,13],[-16,17],[-8,11],[-8,10],[-19,24],[-15,-13],[-20,-74],[-12,-19],[-91,-51],[-27,-14],[-9,0],[-1,3],[1,6],[6,10],[23,38],[16,27],[-1,25],[-13,39],[-4,3],[-11,5],[-8,0],[-5,-2],[-38,-37],[-5,-10],[0,-8],[10,-18],[1,-7],[-3,-11],[-19,-89],[-3,-5],[-1,-3],[-1,-1],[-5,-4],[-19,-7],[-13,-2],[-49,8],[-4,1],[-33,4],[-3,-21],[-3,-43],[0,-16],[5,-35],[3,-10],[7,-10],[17,-4],[3,-7],[1,-1],[-1,-4],[-3,-11],[-11,-14],[-9,-9],[-12,-6],[-13,0],[-4,4],[-11,73],[-11,100],[-39,19],[-5,0],[-3,-2],[-7,-8],[-25,-38],[-5,-18],[-1,-22],[3,-12],[14,-23],[21,-20],[11,-13],[9,-25],[0,-18],[0,-6],[-30,-97],[-3,-4],[0,-1],[-36,-40],[-5,-1],[-22,34],[-19,26],[-15,6],[-6,-7],[-6,-40],[-1,-24],[-1,-10],[-2,-17],[-8,-28],[-6,-6],[-14,-10],[-7,-2],[-8,8],[0,7],[2,7],[4,8],[5,9],[0,10],[-3,11],[-5,2],[-3,2],[-5,1],[-12,-3],[-5,-2],[-29,-4],[-57,3],[-7,2],[-23,7],[-5,7],[0,8],[5,6],[30,15],[28,33],[3,7],[0,7],[-2,5],[-7,3],[-7,1],[-17,-7],[-13,-12],[-4,-2],[-19,0],[-11,2],[-13,8],[-13,10],[-18,21],[-9,7],[-4,-2],[-2,-3],[-14,-63],[-5,-8],[-7,-6],[-2,-1],[-4,-1],[-7,2],[-8,11],[-12,71],[1,12],[9,28],[4,9],[8,7],[15,12],[11,12],[7,13],[4,15],[-1,10],[-2,9],[-4,5],[-51,35],[-47,12],[-7,-9],[-6,-5],[-21,-9],[-16,0],[-16,4],[-10,5],[-26,32],[-3,6],[-12,47],[-13,46],[2,9],[4,9],[6,20],[2,6],[-4,14],[-12,5],[-21,1],[-10,-1],[-25,-20],[-6,1],[-12,16],[-17,35],[-14,23],[-12,12],[-7,3],[-6,0],[-4,-3],[-1,-7],[1,-54],[4,-21],[10,-64],[-1,-15],[0,-1],[-4,-16],[-1,-3],[-7,-10],[-9,-5],[-12,-1],[-17,12],[-13,16],[-7,6],[-6,0],[-6,-3],[-2,-5],[-17,-45],[1,-11],[3,-7],[14,-8],[5,-4],[4,-9],[5,-47],[0,-7],[3,-38],[-2,-10],[-4,-4],[-15,-4],[-12,0],[-71,47],[-11,7],[-9,8],[-26,35],[-7,3],[-61,26],[-8,0],[-12,-5],[-15,-12],[-14,-9],[-1,-1],[-84,-25],[-25,-1],[-7,2],[-17,14],[-4,1],[-9,3],[-8,-3],[0,-1],[-6,-7],[-1,-6],[-2,-49],[-1,-9],[-6,-13],[-5,-7],[-11,-9],[-6,-1],[-12,8],[-9,7],[-35,66],[-3,7],[-1,6],[0,4],[-1,33],[-3,9],[-12,20],[-13,15],[-14,10],[-7,0],[-8,-2],[-10,-6],[-24,-36],[-33,-6],[-35,-6],[-48,2],[-40,20],[-13,-12],[-6,-56],[-3,-12],[-3,-6],[-10,-11],[-9,-5],[-13,-1],[-32,17],[-7,4],[-6,-1],[-4,0],[-10,-6],[-23,-33],[-10,-6],[-12,-1],[-4,2],[-8,7],[0,3],[-9,33],[-6,12],[-6,8],[-18,25],[-30,17],[-9,3],[-11,-1],[-12,-5],[-24,-18],[-16,-7],[-10,-5],[-22,-11],[-16,-24],[-6,-14],[-6,-22],[-5,-21],[-5,-24],[-2,-9],[-60,-139],[-4,-11],[-18,-29],[-12,-14],[-7,-3],[-1,0],[-23,-8],[-1,0],[-34,-5],[-1,0],[-39,3],[-47,27],[-16,7],[-25,0],[-102,-20],[-23,-7],[-2,-1],[-8,-5],[-2,-2],[-1,-1],[-8,-5],[-8,-7],[-31,-46],[-2,-2],[-25,-20],[-2,-1],[-5,-1],[-10,-3],[-7,-1],[-9,-1],[-19,4],[-4,2],[-42,16],[-20,4],[-5,0],[-22,-1],[-22,-5],[-13,-3],[-60,-5],[-20,1],[-4,1],[-18,4],[-1,0],[-76,-55],[-14,-19],[-4,-9],[-4,-7],[-1,-9],[0,-4],[-1,-30],[0,-14],[5,-29],[-16,-106],[-43,-27],[-7,-3],[-12,-7],[-12,-6],[-4,1],[-130,13],[-27,-13],[-6,-3],[-50,-25],[-4,-117],[0,-2],[1,-1],[2,-2],[29,-64],[0,-1],[22,-54],[3,-19],[16,-115],[0,-6],[3,-23],[0,-29],[1,-12],[0,-6],[-6,-2],[-46,0],[-3,-2],[-3,-4],[-9,-15],[-15,-64],[-10,-19],[-8,-14],[-3,-7],[-5,-8],[-12,-19],[-31,-47],[-23,-25],[-2,-3],[-9,-7],[-6,-3],[-7,-3],[-1,0],[-19,-2],[-6,0],[-101,2],[-5,1],[-13,10],[-9,11],[-38,36],[-3,2],[-19,10],[-26,8],[-18,5],[-5,1],[-7,1],[-63,4],[-17,1],[-32,-11],[-8,-3],[-12,-4],[-18,-6],[-28,-9],[-32,21],[-37,24],[-15,-1]],[[30204,61512],[0,-142],[-17,-10],[1,-49],[0,-29],[1,-59],[0,-37],[1,-101],[0,-52],[1,-38],[0,-67],[1,-83],[1,-51],[0,-69],[1,-60],[-4,-23],[4,-22],[1,-61],[0,-52],[0,-34],[1,-58],[0,-23],[0,-28],[1,-13],[0,-11],[0,-38],[0,-43],[1,-57],[0,-36],[0,-86],[1,-50],[0,-124],[1,-26],[0,-83],[0,-62],[-1,-33],[1,-41],[4,-86],[0,-28],[0,-107],[0,-84],[0,-27],[2,-112],[0,-119],[0,-17],[1,-139],[0,-9],[1,-26],[1,-135],[0,-65],[2,-99],[2,-121],[1,-29],[4,-162],[1,-30],[1,-46],[3,-106],[0,-23],[1,-127],[1,-65],[1,-93],[1,-34],[1,-75],[1,-30],[1,-84],[2,-68],[0,-3],[4,-192],[2,-207],[0,-2],[1,-48],[0,-12],[0,-11],[1,-32],[0,-55],[2,-131],[0,-2],[0,-37],[2,-201],[1,-139],[1,-84],[0,-39],[0,-50],[-1,-53],[0,-53]],[[30245,56164],[-41,-1],[-84,-2],[-12,0],[-74,0],[-19,0],[-19,-1],[-110,6],[-28,0],[-57,0],[-104,-4],[-43,1],[-34,0],[-139,2],[-72,1],[-16,-1],[-54,-1],[-20,0],[-3,0],[-66,0],[-14,0],[-20,0],[-21,0],[-36,-1],[-1,0],[-28,0],[-111,-2],[-33,0],[-19,-1],[-86,-1],[-7,0],[-56,0],[-14,2],[2,-166],[1,-84],[1,-104],[1,-42],[0,-1],[1,-40],[1,-64],[2,-77],[0,-12],[1,-113],[2,-98],[0,-3],[3,-149],[4,-132],[-2,-59],[3,-138],[1,-25],[3,-148],[1,-60],[4,-176],[3,-116],[1,-56],[4,-159],[-200,4],[-1,0],[-110,2],[-140,3],[-16,0],[-32,1],[-33,0],[-64,1],[-37,0],[-74,0],[-3,0],[-100,2],[-19,1],[-76,2],[-29,0],[-13,0],[-43,0],[-167,2],[-81,0]],[[27603,54157],[-2,0],[-11,0],[-69,2],[-5,0],[-9,0],[-3,0],[-21,0],[-45,0],[-77,0],[-99,0],[-59,2],[-3,0],[-68,0],[-6,0],[-48,0],[-37,2],[-129,5],[-32,-100],[-135,2],[-35,0],[-185,0],[-31,0],[-29,3],[-149,1],[-114,1],[-12,0],[-94,0],[-11,0],[-109,0],[-34,0],[-20,0],[-64,0],[-38,1],[-162,1],[-6,0],[-192,1],[-84,1],[-22,0],[-8,0],[-3,0],[-20,47],[-1,10],[4,16],[13,16],[9,1],[40,-2],[18,17],[6,4],[7,4],[7,-2],[7,-4],[28,-16],[9,-7],[5,-3],[9,-4],[26,1],[60,22],[11,15],[21,36],[9,7],[7,0],[6,-6],[34,-35],[0,1],[31,77],[3,6],[-30,111],[1,16],[9,12],[7,-1],[1,-1],[2,-1],[8,-5],[31,-54],[3,7],[39,101],[10,27],[3,8],[-5,83],[-9,57],[7,40],[10,50],[5,27],[2,7],[0,3],[3,6],[1,1],[3,2],[35,-10],[14,-5],[5,-1],[-1,3],[-19,111],[-13,67],[0,3],[-56,4],[-68,31],[-6,4],[-5,6],[1,14],[4,41],[7,66],[3,18],[4,11],[-91,1],[-63,1],[-360,-3],[-254,-4],[-193,1],[-60,-1],[-103,-1],[-31,0],[-29,-1],[-44,1],[-75,0],[-51,0],[-45,-1],[-55,-1],[-102,-2],[-18,0],[-38,-1],[-1,0],[-22,2],[-2,0],[-23,-2],[-46,0],[-112,0],[-46,0],[-276,0],[-122,-2]],[[23436,55126],[1,60],[1,84],[3,175],[0,7],[18,-6],[6,14],[2,69],[22,387],[14,0],[-3,37],[-1,106],[0,1],[2,55],[7,101],[-57,5],[-54,4],[-163,17],[-89,9],[-128,10],[-102,11],[35,124],[12,34],[6,25],[6,29],[3,12],[91,318],[18,69],[42,156],[1,3],[34,123],[1,4],[16,65],[13,48],[7,22],[0,1],[24,91],[35,126],[33,120],[7,23],[0,2],[41,154],[25,92],[37,133],[30,114],[11,43],[15,55],[27,94],[-49,-2],[-64,-2],[-87,-3],[-222,-7],[-74,0],[-186,-2],[-22,0],[-63,0],[-18,1],[-30,0],[-24,1],[-63,2],[-34,0],[-30,0],[-63,-4],[-19,6],[-107,-3]],[[38563,55928],[-49,-2],[-98,-6],[-43,-3],[-192,-12],[-1,0],[-70,-5],[-28,-1],[-16,0],[-48,-3],[-17,-1],[-34,-1],[-69,-4],[-45,-3],[-66,-4],[-101,-6],[-23,-2],[-98,-7],[-50,-4],[-19,-1],[-8,-1],[-7,-1],[-37,-3],[-29,-1],[-19,-2],[-15,-2],[-70,-7],[-14,-1],[-147,-12],[-47,-3],[-57,-3],[-76,-4],[-26,-3],[-45,-3],[-15,-1],[-41,-3],[-58,-4],[-41,-3],[-14,-2],[-10,0],[-49,-4],[-68,-5],[-36,-3],[-39,-3],[-49,-2],[-50,-7],[-104,-9],[-53,-4],[-92,-7],[-14,-2],[-20,-2],[-91,-8],[-44,-3],[-45,-4],[-36,-4],[-51,-5],[-16,-1],[-32,-3],[-104,-11],[-32,-3],[-100,-9],[-19,-2],[-33,-3],[-36,-3],[-4,0],[-102,-9]],[[35401,55688],[-180,-3],[-76,-1],[-37,-1],[-116,-2],[-45,0],[-74,0],[-19,0],[-57,-1],[-41,1],[-58,0],[-25,0],[-22,0],[-28,-1],[-57,0],[-43,-1],[-154,-1],[-24,0],[-69,-1],[-52,0],[-14,0],[-46,0],[-37,-1],[-75,0],[-28,0],[-16,0],[-64,0],[-104,-1],[-79,0],[-26,0],[-137,0],[-69,-1],[-131,0],[-17,0],[-15,-2],[-44,1],[-14,0],[-37,-1],[-15,0],[0,64],[0,25],[-1,44],[-4,185],[-1,24],[-2,114],[-1,33],[-1,118],[-19,0],[-100,0],[-14,0],[-12,0],[-37,0],[-64,-1],[-91,0],[-24,0],[-1,0],[-11,0],[-44,0],[-26,0],[-22,0],[-72,0],[-41,0],[-59,0],[-19,0],[-210,-2],[-22,0],[-117,-1],[-27,0],[-202,2],[-115,-1],[-18,0],[-55,0],[-2,-112],[-37,1],[-95,-1],[-49,-1],[-17,0],[-22,0],[-5,2],[-114,0],[-46,0],[-204,-1],[-16,0],[-93,1],[-41,0],[-20,-1],[-14,0],[-82,0],[-166,0],[-85,0],[-136,0],[-77,0],[-16,0],[-48,0],[-53,0],[-42,0],[-99,0]],[[71655,55019],[-95,-2],[-13,1],[-82,-2],[-116,1],[-37,0],[-73,-1],[-23,1],[-119,3],[-6,0],[-23,1],[-30,1],[-34,0],[-20,1],[-141,3],[-16,0],[-51,1],[-52,-1],[-19,3],[-99,1],[-63,-1],[-31,-1],[-5,0],[-26,1],[-209,4],[-55,1],[-29,0],[-56,1],[-108,2],[-17,-1],[-55,3],[-83,-1],[-107,4],[-43,2],[-39,1],[-128,7],[-62,-2],[-42,1],[-57,1],[-29,-1],[-27,0],[-67,1],[-2,0],[-20,0],[-28,0],[-52,0],[-15,0],[-15,1],[-102,0],[-20,0],[-14,-1],[-2,0],[-154,4],[-6,-2],[-11,0],[-93,1],[-49,0],[-24,0],[-17,0],[-24,1],[-58,0],[-28,-1],[-15,0],[-108,1],[-130,0],[-14,1],[-117,-1],[-174,2],[-2,0],[-13,0],[-205,1],[-38,0],[-35,0],[-49,0],[-15,0],[-128,-3],[-31,3],[-33,0],[-169,2],[-24,-5],[-266,3],[-199,8],[-64,0],[-105,-2],[-31,4],[-45,2],[-92,0],[-38,-1],[-23,2],[-20,-1],[-48,1],[-45,0],[-20,0],[-40,1],[-48,-2],[-16,2],[-17,-2],[-5,0],[-13,0],[-18,2],[-45,2],[-7,1],[-236,112],[-142,70],[-18,9],[-33,16],[-62,33],[-15,10],[-13,6],[-47,23],[-24,12],[-61,31],[-52,28],[-80,42],[-31,17],[-228,110],[-17,8],[-43,34],[-14,5],[-99,38],[-126,65],[-166,85],[-148,72],[-35,19],[-280,139],[-14,7],[-169,84],[-33,17],[-1,0],[-82,40],[-78,36],[-47,26],[-79,37],[-149,82],[-77,31],[-54,26]],[[47675,59454],[9,1],[11,-1],[2,-1],[5,-9],[5,-33],[0,-1],[15,-40],[1,-8],[-14,-26],[0,-1],[-5,-13],[-16,-48],[-3,-27],[0,-4],[8,-20],[24,-30],[9,-2],[46,5],[6,2],[7,8],[11,17],[1,2],[7,8],[5,1],[1,0],[9,-5],[6,-9],[20,-33],[0,-1],[6,-13],[2,-13],[-7,-23],[4,-30],[6,-41],[1,-7],[5,-9],[7,-9],[2,-2],[12,-7],[4,-2],[5,-1],[11,-3],[13,-19],[0,-11],[-3,-15],[-1,-1],[-13,-21],[-22,-36],[10,-7],[26,-24],[22,-15],[24,4],[0,-58],[0,-57],[-24,-106],[3,-36],[-33,-87],[-14,-19],[-1,-1],[-4,-9],[-5,-10],[-3,-12],[1,-61],[2,-18],[2,0],[10,-2],[5,2],[6,5],[10,8],[11,17],[0,1],[1,6],[-1,2],[-9,7],[-1,1],[-8,10],[0,10],[0,1],[2,6],[5,8],[22,13],[1,0],[8,1],[9,-7],[14,-23],[8,-22],[8,-34],[6,-12],[3,-7],[7,-9],[4,-6],[8,-5],[35,-11],[19,-6],[13,-5],[2,0],[44,15],[5,2],[15,30],[61,-6],[12,-5],[4,-8],[0,-8],[-4,-47],[-3,-19],[-13,-8],[-1,0],[-11,-12],[-1,-1],[-64,-71],[-1,-1],[-11,-40],[-7,-29],[-1,-19],[5,-7],[16,-21],[7,-11],[35,-102],[0,-9],[-18,-31],[-2,-3],[-13,-2],[-11,3],[-2,0],[-22,5],[-8,4],[-2,3],[-4,4],[-25,31],[-2,2],[-3,8],[-27,-31],[-6,-26],[-38,-95],[-5,-7],[-12,-10],[-9,-10],[-10,-16],[0,-6],[1,-5],[9,-11],[0,-1],[5,-6],[-16,-4],[-13,-27],[-31,-61],[-5,-24],[-6,-31],[3,-25],[-5,-34],[21,-38],[-29,-57],[11,-10],[3,-3],[-13,-9],[17,-11],[1,-38],[17,-2],[-4,24],[41,16],[-8,-27],[17,-13],[-10,-38],[19,16],[23,-45],[-5,49],[39,-20],[-14,-22],[36,-22],[15,29],[20,6],[-11,-64],[93,49],[38,-11],[8,49],[26,-62],[18,48],[10,-20],[12,11],[26,-28],[17,24],[6,-35],[42,0],[4,44],[12,-20],[17,9],[15,-27],[19,13],[0,31],[14,19],[13,-9],[2,-27],[11,-20],[18,-3],[-10,21],[12,19],[9,20],[16,10],[19,-17],[18,1],[19,5],[20,1],[6,-26],[13,-16],[-3,-29],[14,-8],[7,-45],[3,-22],[3,-34],[0,-2],[6,-137],[8,-219],[2,-27],[4,-118],[7,-186],[0,-3],[4,-90],[5,-118],[3,-63],[2,-51],[8,-198],[1,-35],[1,-24],[6,-151],[2,-67],[2,-33],[1,-25],[4,-117],[5,-123],[0,-26],[7,-234],[1,-25],[3,-61],[9,-173],[2,-49],[6,-195],[0,-26],[1,-41],[4,-110],[6,-132],[2,-47],[3,-43],[0,-36],[0,-36],[4,-37],[1,-41],[2,-41],[1,-82],[2,-62],[2,-63],[2,-39],[1,-45],[5,-44],[1,-61],[3,-28],[3,-142],[0,-2],[10,-230],[9,-274],[11,-239],[5,-104],[0,-12],[1,-23],[2,-26],[3,-61],[3,-86],[0,-4],[5,-100],[2,-33],[10,-213],[3,-49],[0,-2],[6,-118],[0,-1],[3,-79],[11,-242],[1,-8],[1,-24],[0,-10],[1,-21],[1,-19],[2,-40],[7,-182],[1,-5],[1,-19],[1,-43],[8,-143],[1,-23],[1,-64],[2,-32],[1,-35],[7,-165]],[[48906,50772],[-58,-7],[-103,-10],[-98,-11],[-67,-7],[-23,-2],[-36,-3],[-27,-3],[-140,-14],[-198,-20],[-90,-9],[-29,-2],[-16,-2],[-250,-25],[-126,-12],[-49,-4],[-70,-4],[-30,-2],[-40,-3],[-20,-2],[-90,-7],[-152,-11],[-13,-1],[-1,0],[-91,-8],[-5,-1],[-96,-7],[-34,-2],[-13,-3],[-29,-2],[-254,-18],[-67,-5],[-14,-1],[0,-26],[-41,-11],[-22,-2],[-343,-22],[-36,-2],[-24,-3],[-10,-1],[-28,-3],[-21,-3],[-37,-5],[-25,-3],[-36,-3],[-15,0],[-30,-3],[-54,-4],[-64,-6],[-27,-1],[-18,-2],[-97,-8],[-18,-2],[-61,-5],[-119,-9],[-24,-2],[-43,-4],[-41,-3],[-117,-10],[-35,-2],[-3,-1],[-13,-1],[-62,-5],[-213,-17],[-17,-1],[-219,-18],[-90,-7],[-2,-1],[-67,-5],[-71,-5],[-46,-5],[-83,-9],[-95,-4],[-9,-1],[-66,-3],[-18,-1]],[[57103,52554],[8,-37],[16,-5],[12,-15],[7,-24],[-12,-6],[-9,-28],[-1,-22],[-13,-24],[13,-4],[20,5],[7,-23],[-8,-23],[11,-16],[-6,-26],[-5,-32],[5,-23],[-10,-18],[-7,-21],[-7,-31],[11,-12],[7,-22],[-9,-17],[9,-15],[-4,-25],[-13,-14],[-11,-13],[4,-26],[12,-15],[-22,-31],[4,-25],[21,-13],[19,-12],[9,-17],[11,-13],[-5,-22],[5,-22],[1,-49],[1,-2],[28,-75],[0,-1],[3,-4],[-1,-14],[-14,-49],[-8,-6],[-1,0],[-29,-9],[-4,-6],[-14,-23],[0,-1],[-1,-1],[-51,-92],[-2,-5],[-1,-7],[0,-2],[-1,-15],[-1,-6],[1,-1],[7,-14],[15,-31],[1,-4],[11,-21],[0,-17],[0,-15],[17,-43],[11,7],[4,3],[10,6],[25,-5],[1,-2],[0,-6],[-3,-9],[-5,-15],[-17,-28],[-6,-7],[-12,-5],[-15,5],[-1,0],[-9,-2],[-4,-5],[-1,0],[-8,-21],[-8,-39],[1,-15],[5,-31],[1,-2],[6,-28],[0,-5],[0,-1],[-11,-59],[-3,-3],[-18,-17],[-13,-95],[-5,-40],[-1,-9],[8,-5],[13,-8],[-6,-5],[-22,-17],[-1,-8],[-2,-7],[0,-2],[0,-11],[-2,-172],[0,-1],[1,-13],[8,-26],[10,-14],[1,-2],[-7,-17],[-1,-1],[-62,-38],[-5,-3],[-12,-35],[-6,-17],[-6,-18],[2,-8],[5,-19],[1,-6],[-5,-8],[-1,-1],[-29,-24],[-10,-5],[-1,0],[-40,-10],[-22,4],[-5,0],[-3,-2],[-40,-31],[-6,-16],[-1,-3],[-8,-18],[-27,-63],[-34,-84],[-2,-4],[-14,-35],[-7,-18],[-1,-2],[2,-19],[3,-38],[1,-12],[-24,-104],[-2,-4],[-13,-28],[-17,-39],[-10,-16],[-9,-7],[-8,-5],[-27,16],[-14,8],[-31,-72],[-20,-57],[-1,-2],[-9,-25],[0,-1],[-25,19],[-9,-32]],[[56501,49735],[-12,-1],[-165,-14],[-5,0],[-23,-2],[-76,-7],[-18,-1],[-73,-6],[-16,-2],[-82,-8],[-19,-1],[-17,-2],[-18,-2],[-104,-9],[-156,-14],[-15,-1],[-14,-1],[-112,-10],[-18,-2],[-16,-2],[-41,-6],[-191,-12],[-16,0],[-70,-3],[-26,-2],[-372,-25],[-2,43],[-4,73],[-2,46],[-76,-7],[-20,-2],[-122,-13],[-18,-2],[-45,-3],[-41,-4],[-203,-17],[-243,-22],[-48,-3],[-19,0],[-63,-4],[-314,-28],[-40,-2],[-4,0],[-70,-5],[-17,-1],[-32,-3],[-59,-5],[-18,-2],[-22,-2],[-1,0],[-23,-1],[-39,-4],[-19,0],[-16,-2],[-16,-1],[-1,0],[-26,-1],[-27,-2],[-156,-11],[-39,-2],[-305,-21],[-37,-2],[-214,-12],[-86,-4],[-166,-13],[-91,-7],[-14,-1],[-94,-8],[-81,-7],[-73,-6],[-48,-4],[-28,-3],[-100,-8],[-57,-5],[-46,-3],[-241,-20],[-30,-3],[-64,-5],[-125,-10],[-38,-3],[-68,-6],[-10,-1],[-30,-2],[-1,0],[-114,-10],[-62,-7],[-61,-4],[-98,-7],[-39,-3],[-51,-3],[-19,-3],[-94,-7],[-16,-1],[-24,-2],[-23,-2],[-50,-4],[-13,-1],[-43,-3],[-92,-10],[-56,-6],[-63,-7],[-107,-14],[-29,-4],[-27,-3],[-36,-5],[-68,-9],[-15,-1],[-120,-9],[-112,-8],[-13,-1],[-250,-18],[-62,-6],[-74,-6],[-37,-3],[-81,-8]],[[48985,49286],[-8,172],[-7,144],[-12,265],[-3,58],[-2,29],[-2,35],[0,1],[-4,75],[-4,71],[-5,100],[-1,14],[-6,132],[-2,41],[-23,349]],[[23436,55126],[-2,-150],[0,-16],[-1,-40],[0,-1],[0,-47],[-1,-81],[-2,-76],[-3,-125],[-6,-205],[-5,-204],[-54,3],[-40,1],[-21,1],[-22,0],[-117,5],[-35,1],[-2,-177],[-1,-74],[-1,-31],[-1,-121],[-1,-52],[-2,-131],[-2,-149],[0,-1],[-1,-88],[0,-2],[-1,-66],[-69,4],[-120,6],[-68,4],[1,-110],[1,-140],[1,-98],[3,-263],[0,-71],[0,-47],[1,-94],[1,-92],[-1,-44]],[[22865,52355],[-3,1],[-90,4],[-55,2],[-112,3],[-38,0],[-32,1],[-43,1],[-113,4],[-24,-2],[-1,40],[-59,2],[-7,0],[-87,-3],[-23,0],[-2,0],[-135,-4],[-69,-2],[-13,0],[-28,-1],[-20,0],[-3,0],[-48,-2],[-142,-3],[-39,-3],[-27,0],[-47,-3],[-16,0],[-232,-8],[1,103],[0,41],[-101,0],[-99,-1],[-42,-1],[-72,-1],[-63,-1],[-135,2],[-25,0],[-35,-1],[-47,-1],[-29,-1],[-26,0],[-22,1],[-26,0],[-29,1],[-181,2],[-73,0],[-47,0],[-60,1],[-3,0],[-16,0],[-193,1],[-14,0],[-110,1],[-35,0],[-90,-2],[-164,-2],[-69,-1],[-389,-6],[-3,1],[-23,1],[-22,-2],[-28,0],[-13,-2],[-62,-3],[-20,-2],[-23,-1],[-21,-1],[-17,0],[-17,0],[-34,-1],[-47,0],[-32,1],[-24,-1],[-14,0],[-35,1],[-36,2],[-51,2],[-1,0],[-41,2],[-13,0],[-26,1],[-13,0],[-95,2],[-22,1],[-24,-1],[-90,-2],[-94,-2],[-32,-1],[-4,0],[-146,-5],[-196,-6],[-24,-1],[-41,-1],[-83,-3],[-19,0],[-68,-3],[-53,-1],[-33,-1],[-27,-1],[-85,-2],[-23,1],[-107,-3],[-78,-2],[-48,-1],[-19,-1],[-26,0],[-237,-7],[-46,-1],[-163,-4],[-39,-1],[-67,-2],[-136,-3]],[[16422,52464],[1,128],[1,46],[1,60],[0,84],[1,89],[0,27],[2,148],[0,2],[0,29],[1,105],[0,1],[0,194],[0,57],[0,83],[0,151],[-1,25],[0,33],[0,46],[-1,118],[-1,64],[0,77],[-2,169],[0,19],[0,37],[0,1],[0,134],[-1,37],[0,44],[0,50],[0,67],[0,44],[1,66],[0,46],[0,25],[0,50],[1,52],[4,211],[0,3],[4,266],[2,88],[0,6],[2,94],[0,29],[0,30],[2,94],[-3,193],[-3,240],[-2,140],[-2,56],[0,47],[-4,232],[-1,233],[-1,61],[1,250],[0,27],[-1,75]],[[16422,52464],[-137,2],[-37,1],[-19,0],[-84,3],[1,-25],[1,-109],[-2,-96],[0,-65],[-1,-101],[0,-3],[-1,-57],[0,-8],[-2,-124],[-3,-190],[-2,-202],[-1,-30],[-3,-191],[-1,-110],[-2,-100],[-1,-31],[-1,-76],[-3,-236],[-2,-116],[-1,-56],[66,-1],[249,-4],[-2,-239],[0,-3],[0,-124],[0,-51],[0,-155],[0,-22],[0,-77],[0,-41],[-1,-248],[-1,-82],[0,-87],[-1,-55],[0,-52],[0,-42],[0,-27],[0,-27],[0,-52],[0,-3],[-1,-43],[0,-46],[0,-52],[0,-1],[0,-104],[0,-23],[-1,-125],[0,-23],[0,-25],[0,-91],[1,-63],[0,-83],[0,-50],[1,-118],[0,-25],[1,-112],[1,-26],[0,-59],[1,-66],[2,-83],[1,-68],[0,-26],[4,-226],[1,-26],[3,-138],[0,-25],[0,-5],[0,-18],[6,-302],[-1,-106],[-1,-79],[-2,-224],[-1,-131],[0,-107],[-1,-33],[-1,-151],[-1,-136],[-3,-284],[-3,-160],[-3,-157],[-1,-59],[-3,-194],[0,-16],[0,-10],[-2,-115]],[[16428,45138],[-9,-10],[-16,-22],[-6,-36],[-6,0],[-39,19],[-3,2],[-48,14],[-18,-10],[-7,-13],[-22,-7],[-3,-1],[-10,-2],[-34,-6],[-6,6],[-16,16],[-17,17],[-10,-3],[-2,-1],[-16,-10],[-2,-2],[-1,1],[-3,3],[-9,6],[-4,1],[-4,1],[-15,-21],[-8,-21],[-3,-39],[-2,-10],[-5,-5],[-9,-5],[-3,-2],[-30,-3],[-17,-7],[-12,-7],[-9,-13],[-13,-11],[-13,-10],[-16,-1],[-10,-1],[-20,-8],[-34,-8],[-16,7],[-13,6],[-12,11],[-8,2],[-5,-3],[-13,-7],[-9,-5],[-16,-62],[-5,-26],[-9,-19],[-2,-4],[-31,-7],[-9,-2],[-20,-51],[-3,-7],[-29,6],[-18,7],[-35,26],[-13,5],[-16,-3],[-22,-15],[-12,-20],[-1,-3],[-20,3],[-22,3],[-15,-31],[0,-2],[-2,-3],[-2,-2],[-1,-3],[-1,-1],[-2,-3],[-17,-21],[-1,-1],[-2,-2],[-2,-2],[0,-43],[0,-7],[-4,-5],[-7,-3],[-5,1],[-8,5],[-1,1],[-31,20],[-6,5],[-1,0],[-6,4],[-8,1],[-10,1],[-11,0],[-5,1],[-7,0],[-5,0],[-5,1],[-9,-1],[-9,0],[-19,-21],[-7,-9],[-14,-22],[-19,-24],[-12,-8],[-5,-2],[-11,-6],[-17,-4],[-15,-4],[-19,-5],[-16,-2],[-11,-5],[-8,-5],[-1,0],[-6,-4],[-19,-1],[-11,5],[-19,2],[-8,0],[-11,0],[-12,-3],[-9,0],[-8,-1],[-13,-1],[-23,-1],[-27,3],[-13,6],[-11,5],[-5,5],[-16,13],[-17,5],[-18,0],[-43,-6],[-5,-17],[-1,-6],[-8,-19],[-34,-8],[-8,3],[-73,24],[-27,12],[-6,-2],[-22,-5],[-15,-4],[-23,-16],[-30,-40],[-19,-27],[-1,-1],[-6,-2],[-5,-11],[-3,-33],[-4,-7],[-4,-2],[-10,-1],[-1,0],[-7,4],[-29,29],[-19,6],[-9,0],[-6,-6],[-4,-7],[-7,-26],[-1,-7],[-8,-21],[-12,-17],[-10,-5],[-12,-2],[-14,9],[-5,9],[-3,26],[0,5],[-7,4],[-41,-44],[-3,-4],[-1,-6],[-1,-14],[0,-1],[4,-18],[4,-8],[-19,-13],[-52,-39],[-6,-4],[-11,-2],[-42,-7],[-1,-1],[-14,10],[-9,1],[-21,2],[-11,-10],[-3,-4],[-22,-28],[-24,-31],[-5,-37],[-21,-23],[-7,-3],[-74,-31],[-11,9],[-7,6],[-10,10],[-2,5],[-2,7],[-6,7],[-2,3],[-9,4],[-59,4],[-11,-2],[-2,-1],[-4,-1],[-5,-13],[-10,-29],[-4,-8],[-28,-44],[-5,-5],[-3,-1],[-6,-5],[-16,-1],[-19,12],[-8,0],[-9,-3],[-5,-1],[-23,-5],[-11,-5],[-7,-6],[-7,-15],[-17,-58],[-26,6],[-4,1],[-28,2],[-6,-3],[-3,-4],[-2,-8],[-2,-13],[-4,-33],[-1,-12],[-5,-7],[-3,-11],[-3,-35],[0,-3],[-1,-12],[-4,-9],[0,-1],[-1,-3],[-10,-53],[-33,11],[-1,1],[-8,-1],[-5,2],[-5,2],[-1,1],[-3,2],[-17,13],[-10,4],[-7,-7],[-7,-12],[-5,-15],[-3,-17],[-3,-11],[2,-25],[-2,-6],[0,-2],[-2,-6],[-5,-2],[-5,-2],[-3,-1],[-3,1],[-29,7],[-13,8],[-3,3],[-15,13],[-7,8],[-1,1],[-9,14],[-2,8],[-5,24],[6,49],[-5,94],[-2,40],[-1,16],[-6,12],[-6,13],[-6,11],[-6,2],[-3,-1],[-4,0],[-1,-1],[-22,-30],[-10,-8],[-10,-4],[-5,0],[-4,-1],[-44,-5],[-8,-1],[-33,27],[-3,2],[-1,17],[-3,5],[-1,2],[-2,1],[-9,-2],[-14,-10],[-5,-4],[-3,-26],[-7,-16],[-14,-9],[-24,-9],[-46,-11],[-32,1],[-10,-4],[-8,-5],[-3,-1],[-7,-10],[-3,-8],[-4,-10],[-3,-25],[-4,-11],[-3,-7],[-10,-5],[-6,-1],[-9,-1],[-12,1],[-19,7],[-12,6],[-11,17],[-2,4],[-7,5],[-2,-1],[-3,0],[-7,-5],[-6,-18],[0,-16],[3,-7],[15,-27],[3,-8],[0,-1],[1,-14],[1,-8],[-1,-1],[-9,-28],[-14,-16],[-15,-6],[-10,-3],[-15,1],[-2,0],[-28,9],[-35,2],[-13,-3],[-10,-1],[-17,-93],[-6,-15],[-1,-2],[-2,-6],[-5,-4],[-81,16],[-11,4],[-36,18],[-18,3],[-12,-3],[-4,-4],[-3,-10],[0,-2],[2,-6],[3,-6],[4,-1],[16,-6],[12,-6],[5,-2],[11,-6],[13,-16],[6,-11],[10,-22],[1,-3],[1,-13],[0,-7],[-12,-30],[-1,-1],[-1,-1],[-7,-9],[-4,-4],[-13,-10],[-9,-3],[-27,-9],[-13,3],[-9,3],[-1,1],[-77,69],[-17,-1],[-12,-5],[-18,-10],[-24,-25],[0,-1],[0,-3],[11,-45],[0,-3],[29,2],[20,-7],[11,-8],[9,-11],[8,-12],[3,-9],[0,-12],[-5,-11],[-6,-8],[-2,-2],[-5,-3],[-23,-9],[-9,-4],[-59,-24],[-3,-1],[-17,-2],[-12,2],[-32,20],[-11,11],[-15,20],[-2,3],[-1,3],[0,2],[-1,0],[-32,32],[-12,12],[-11,9],[-42,32],[-15,7],[-15,4],[-1,0],[-1,0],[-18,-1],[-19,-8],[-1,0],[-2,-2],[-25,-21],[-34,-29],[-13,-14],[-2,-3],[-3,-6],[0,-6],[-30,14],[-3,2],[-8,0],[-6,-3],[-6,-7],[-1,-1],[-21,-37],[-58,-64],[-17,-15],[-1,-1],[-62,-32],[-4,-2],[-38,-22],[-48,-29],[-6,-8],[-1,-2],[-2,-5],[-33,-12],[-5,-1],[-17,-24],[-8,-19],[-1,0],[-4,-14],[-3,-9],[-6,-24],[-4,-12],[-6,-6],[-7,-5],[-16,-2],[-9,1],[-14,9],[-10,8],[-9,7],[-12,6],[-14,6],[-10,1],[-17,-5],[-11,-9],[-9,-9],[-14,-14],[-8,-3],[-14,1],[-7,0],[-29,7],[-19,0],[-13,-4],[-4,-3],[-23,-14],[-4,-4],[-8,-4],[-11,-4],[-107,-29],[-3,0],[-58,5],[-14,9],[-1,1],[-16,5],[-15,0],[-33,-12],[-10,-7],[-9,-11],[-15,-30],[-8,-9],[-1,-1],[-3,-1],[-4,-1],[-9,8],[-11,23],[-2,4],[-3,8],[-7,16],[-3,5],[-5,9],[-10,12],[-6,5],[-1,0],[-6,-2],[-1,0],[-5,-3],[-13,-20],[-8,-12],[-7,-10],[-2,-3],[-4,-3],[-11,-7],[-12,-4],[-10,8],[-8,9],[-5,8],[-18,53],[-10,33],[0,7],[-4,42],[-7,26],[-9,5],[-26,16],[-1,1],[-1,-1],[-3,-3],[-8,-8],[-43,-40],[-24,8],[-15,10],[-8,10],[-15,25],[-2,3],[-12,-4],[-5,-6],[-15,-30],[-22,-43],[-51,-61],[-12,6],[-8,6],[-18,28],[-16,25],[-6,14],[-2,6],[0,17],[3,12],[5,7],[7,9],[2,1],[12,11],[7,6],[2,2],[10,1],[9,1],[10,1],[1,0],[7,2],[2,5],[0,38],[-3,30],[-3,17],[-4,7],[-52,73],[-38,92],[-40,32],[-69,56],[-34,27],[-1,1],[-14,28],[-1,3],[-4,1],[-2,1],[-44,5],[-8,4],[-38,-3],[-6,1],[-32,5],[-14,12],[-18,43],[-5,2],[-14,3],[-15,14],[-38,35],[-4,13],[-16,48],[-15,59],[-25,95],[-7,26],[-1,16],[-3,77],[0,4],[8,42],[11,60],[-8,7],[-25,-8],[-28,4],[-18,32],[-22,59],[-42,57],[1,2],[0,3],[-12,25],[-86,98],[-2,1],[0,2],[-33,124],[-4,5],[-2,2],[-7,6],[-18,8],[-5,3],[-16,12],[-6,6],[-5,23],[1,21],[17,48],[3,15],[-1,19],[-2,6],[-1,5],[-15,37],[-12,22],[-7,11],[-18,50],[-7,32],[-2,49],[-1,11],[-4,7],[-4,5],[-5,7],[-21,21],[-19,20],[-13,13],[-9,7],[-13,0],[-14,-4],[-10,-4],[-1,-1],[-8,-2],[-1,0],[-27,28],[-11,11],[-4,3],[-5,5],[-4,1],[-2,1],[-19,4],[-9,-1],[-29,-16],[-38,9],[-67,44],[-45,36],[-5,1],[-5,7],[-13,17],[-18,25],[-33,6],[-55,-18],[-39,-36],[-71,-21],[-27,-2],[-13,12],[-9,7],[-11,9],[-23,8],[-18,-13],[-12,-26],[-23,-22],[-53,12],[-63,30]],[[8879,45171],[-46,31],[-3,5],[-6,7],[-6,8],[-9,11],[-15,10],[-2,0],[-10,2],[-7,4],[-7,5],[-22,16],[-36,42],[-25,6],[-46,2],[-21,13],[-20,25],[-22,39],[-16,20],[-48,23],[-3,5],[-7,14],[1,13],[11,9],[19,8],[32,12],[2,0],[29,1],[19,10],[0,10],[1,7],[-8,16],[-14,27],[-14,7],[-43,4],[-22,-15],[-25,9],[-4,8],[-6,17],[-14,57],[-29,36],[-26,33],[-25,-3],[-1,0],[-18,-8],[-3,-1],[-4,1],[-24,5],[-7,2],[-13,11],[-1,2],[0,19],[17,20],[-12,25],[-12,23],[-28,59],[-10,3],[-4,1],[-7,-1],[-25,-5],[-3,-4],[-17,-20],[-4,-4],[-35,-40],[-30,-37],[-18,-15],[-23,23],[-11,11],[-33,34],[-43,-37],[-10,7],[-32,23],[-19,16],[-4,3],[-2,1],[-13,12],[-6,7],[-5,6]],[[71715,54418],[4,-54],[2,-26],[11,-112],[11,-129],[12,-125],[2,-29],[4,-46],[10,-109],[26,-283],[7,-33],[9,-93],[4,-58],[3,-37],[5,-66],[4,-46],[1,-22],[-3,-25],[-13,-10],[-14,-13],[-9,-8],[-7,-7],[-15,-12],[-31,-28],[-2,-2],[-11,-9],[-23,-21],[-12,-11],[-27,-24],[-188,-167],[-15,-13],[-152,-135],[-35,-33],[-69,-59],[-4,-4],[-55,-43],[-26,-21],[-30,-25],[-25,-20],[-15,-25],[-22,-21],[-51,-30],[-33,-28],[-55,-45],[-144,-125],[-61,-51],[-54,-47],[-101,-83],[-15,-13],[-38,-33],[-17,-15],[-89,-76],[-5,-5],[-16,-14],[-17,-14],[-6,-5],[-62,-52],[-60,-53],[-63,-51],[-161,-141],[-112,-95],[-27,-26],[-51,-39],[-20,-21],[-23,-20],[-101,-91],[-1,-6],[11,-28],[8,-18],[2,-30],[-2,-30],[-1,-26],[-9,-22],[-12,-11],[-1,-2],[-12,-21],[-2,-6],[-10,-21],[-12,-12],[-15,-11],[-13,-9],[-14,-6],[-9,-3],[-13,-15],[0,-2],[2,-28],[6,-21],[9,-18]],[[69557,50895],[-2,-2],[-32,-28],[-201,-169],[-99,-83],[-124,-4],[-144,-2],[-14,0],[-69,-1],[-48,-1],[-44,0],[-26,-3],[-59,-8],[-84,-14],[-9,-1],[-138,-20],[-16,-2],[-147,-19],[-136,-19],[-15,-1],[-28,-5],[-36,-5],[-58,-8],[-83,-13],[-22,-2],[-68,-12],[-34,-3],[-40,-7],[-97,-12],[-187,-29],[-26,-2],[-197,-29],[-33,-4],[-55,-6],[-52,-7],[-46,30],[-62,41],[-41,27],[-112,58],[-26,9],[-128,108],[-37,24],[-68,45],[-44,26],[-82,54],[-52,34],[-58,38],[-19,12],[-58,39],[-24,13],[-39,27],[-3,3],[-68,43],[-22,14],[-32,21],[-31,20],[-32,20],[-35,23],[-145,94],[-25,18],[-20,12],[-54,30],[-27,9],[-55,18],[-25,9],[-69,23],[-29,9],[-13,4],[-17,6],[-23,6],[-66,21],[-78,26],[-4,2],[-29,12],[-41,16],[-28,10],[-38,13],[-65,22],[-90,31],[-86,29],[-26,10],[-274,92]],[[64688,51625],[-17,7],[-14,4],[-68,36],[-151,79],[-221,112],[-38,19],[0,1],[-15,8],[-27,14],[-21,11],[-110,58],[-97,51],[-226,112],[-57,28],[-68,35],[-33,17],[-34,17],[-43,21],[-43,22],[-24,17],[-148,77]],[[35401,55688],[0,-53],[-1,-90],[0,-47],[0,-4],[1,-27],[-3,-69],[2,-205],[1,-141],[0,-132],[1,-45],[1,-81],[0,-74],[-1,-61],[1,-145],[0,-53],[0,-43],[0,-1],[0,-98],[0,-11],[0,-95],[0,-52],[0,-66],[0,-37],[0,-93],[1,-363],[1,-165],[0,-41],[1,-74],[0,-71],[-1,-140],[-1,-141],[0,-58],[0,-74],[-1,-25],[0,-8],[1,-23],[0,-52],[0,-27],[1,-3],[0,-30],[2,-27],[0,-1],[0,-25],[-4,-40],[-75,-15],[-21,-7],[-19,-6],[-40,-30],[-19,-24],[-10,-6],[-7,-5],[-5,-28],[-3,-19],[-3,-18],[-4,-6],[-7,-12],[-10,-17],[-1,-34],[0,-2],[9,-25],[1,-30],[2,-55],[8,-32],[5,-27],[8,-31],[5,-49],[13,-40],[7,-40],[6,-28],[5,-23],[5,-28],[2,-38],[16,-42],[19,-67],[-2,-50],[-4,-21],[-11,-24],[-13,-21],[-29,-38],[-9,-46],[9,-33],[15,-29],[3,-16],[2,-32],[3,-33],[13,-190],[0,-1],[1,-23],[0,-2],[0,-1],[6,-121],[0,-1],[0,-4],[0,-1],[0,-25],[-1,-51],[0,-3],[0,-4],[-1,-4],[0,-4],[-1,-3],[-2,-11],[0,-1],[-3,-19],[-4,-16],[0,-23],[24,-237],[0,-3],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[-1,-4],[0,-2],[-4,-21],[0,-1],[-2,-13],[-8,-44],[-3,-20],[-11,-79],[-4,-31],[-5,-57],[2,-30],[6,-33],[0,-2],[1,-2],[7,-59],[6,-4],[11,-12],[15,-39],[-4,-45],[0,-5]],[[35292,50180],[-14,0],[-5,0],[-25,-1],[-5,0],[-8,0],[-14,0],[-1,0],[-19,0],[-30,0],[-112,-3],[-112,1],[-16,0],[-31,-1],[-39,0],[-5,0],[-12,-1],[-51,-2],[-38,-1],[-29,-2],[-18,0],[-57,2],[-91,-1],[-53,-1],[-85,0],[-68,1],[-24,0],[-1,0],[-17,0],[-31,1],[-60,0],[-27,0],[-84,-1],[-23,-1],[-75,-3],[-61,0],[-13,0],[-6,0],[-53,-2],[-50,1],[-13,0],[-116,-2],[-55,-2],[-40,0],[-19,1],[-58,-3],[-36,1],[-23,-1],[-46,1],[-37,-1],[-1,-35],[-19,0],[-105,-2],[-141,-1],[-53,0],[-17,0],[-4,0],[-96,-1],[-204,-1],[-112,0],[-282,-2],[-202,-1],[-31,0],[-30,-1],[-14,0],[-47,-1],[-19,0],[-18,1],[-29,0],[-68,-1],[-16,0],[-20,1],[-39,-2],[-34,-2],[-92,1],[-81,-1],[-26,0],[-87,2],[-1,0],[-43,2],[-234,3],[-63,0],[-36,0],[-11,0],[-32,-1],[-50,1],[-24,-1],[-13,-2],[-7,-2],[-7,-19],[-12,-28],[-7,-28],[-15,-37],[-14,-29],[-17,-35],[-20,-40],[-13,-30],[-1,-1],[0,-1],[-16,-15],[-12,-15],[-11,-16],[-15,-29],[-16,-28],[-17,-31],[-10,-18],[-9,-18],[-9,-17],[-18,-36],[-11,-20],[-10,-20],[-15,-35],[-1,-2],[-14,-33],[-10,-23],[-4,-10],[-8,-18],[-10,-31],[-11,-36],[-6,-20],[-2,-4],[-9,-29],[-10,-31],[-10,-31],[-12,-44],[-12,-33],[-11,-33],[-10,-36],[-10,-33],[-12,-42],[-7,-29],[-7,-29],[-10,-35],[-10,-42],[-4,-18],[-9,-33],[-8,-38],[-7,-30],[-7,-34],[-1,0],[-7,-33],[-5,-35],[-5,-27],[-3,-26],[-2,-22],[-3,-25],[-3,-31],[-2,-26],[-4,-31],[-1,-29],[0,-24],[-2,-31],[-2,-38],[-1,-36],[0,-4],[-2,-26],[-3,-58],[-2,-57],[-2,-34],[-1,-24],[-1,-33],[-1,-22],[-2,-43],[-1,-8],[0,-18],[-2,0],[-53,-1],[-20,0],[-14,0],[-34,-1],[1,-50],[0,-166],[0,-1],[1,-64],[0,-84],[0,-60],[0,-12],[1,-165],[0,-42],[1,-60],[0,-6],[0,-17],[1,-220],[1,-517],[0,-48],[0,-26],[1,-31],[0,-22],[0,-232],[0,-56],[1,-146]],[[30308,46023],[-104,0],[-169,2],[-96,1],[-78,0],[0,1],[-117,1],[-76,1],[-30,0],[-46,0],[-235,6],[-27,-1],[-24,-1],[-1,0],[-77,1],[-47,1],[-49,1],[-187,4],[-112,2],[-26,0],[-61,1]],[[28746,46043],[1,128],[0,41],[1,99],[0,103],[0,72],[1,74],[0,26],[2,281],[2,151],[-4,83],[-2,127],[2,47],[6,195],[3,85],[10,118],[7,167],[0,3],[1,27],[3,74],[3,54],[3,75],[0,28],[-31,0],[-29,1],[-30,0],[-15,0],[-21,-1],[-29,1],[-62,2],[-27,1],[-56,1],[-287,7],[-26,3],[-28,1],[-211,4],[-220,7],[-13,1],[-24,1],[-30,1],[-175,5],[-3,0],[-57,1],[-22,1],[-19,1],[-1,4],[-7,100],[-7,86],[-3,39],[-6,87],[-18,227],[-39,519],[-4,18],[-1,5],[-1,27],[-4,23],[-6,19],[-5,22],[-6,43],[-1,24],[0,2],[0,26],[-1,20],[-1,5],[-3,24],[-3,31],[1,28],[-5,24],[2,23],[0,1],[0,28],[-3,44],[-3,37],[-1,9],[-2,24],[-5,24],[4,24],[0,13],[1,9],[-1,6],[-4,27],[-1,34],[-2,26],[0,3],[-3,18],[-4,25],[-5,29],[-7,44],[-2,22],[-1,9],[-8,57],[0,12],[0,23],[1,11],[2,29],[0,4],[66,-2],[29,0],[22,0],[34,-1],[45,0],[101,-2],[0,78],[0,8],[0,26],[0,53],[0,335],[0,89],[0,1],[1,65],[0,212],[0,147],[0,13],[0,68],[0,292],[0,76],[1,35],[0,111],[0,77],[0,186],[0,43],[0,99],[81,-1],[102,-3],[35,2],[235,4],[5,29],[-3,7],[-5,12],[-7,10],[-3,3],[-6,33],[0,2],[0,21],[-8,17],[-4,9],[2,24],[-2,25],[7,22],[3,5],[8,11],[1,1],[1,0],[11,4],[12,-16],[2,18],[0,8],[0,38],[17,-6],[1,-24],[-2,-24],[0,-2],[2,0],[13,-2],[4,0],[2,2],[9,7],[2,2],[1,2],[8,26],[-7,73],[-12,12],[-14,-6],[-3,-5],[-6,-11],[-12,-9],[-14,2],[-1,3],[-6,12],[-1,2],[0,1],[6,33],[1,0],[16,18],[21,14],[1,1],[14,17],[0,26],[-29,3],[-14,-12],[-1,0],[-16,-7],[-2,0],[-2,2],[-11,12],[-1,1],[0,1],[0,22],[12,37],[1,5],[2,3],[12,25],[1,3],[1,1],[12,1],[14,7],[-8,39],[-12,24],[-19,44],[-17,36],[0,1],[-4,31],[7,22],[11,16],[-4,26],[-16,4],[-13,-5],[-12,5],[7,25],[0,1],[1,1],[26,11],[1,0],[12,17],[0,1],[0,21],[0,1],[0,1],[-9,15],[-17,2],[-15,0],[-13,7],[9,32],[19,17],[6,22],[-14,19],[-1,0],[-31,16],[-5,2],[-21,7],[-5,22],[13,21],[2,6],[7,15],[-1,24],[-8,-1],[-5,0],[-12,11],[15,30],[5,24],[11,14],[-6,34],[-1,13],[-2,22],[-5,28],[-13,20],[-3,23],[-1,1],[-13,31],[25,53],[-13,19],[-12,-18],[-14,0],[-1,29],[-4,28],[1,0],[17,3],[0,25],[15,2],[-9,24],[-2,29],[-1,4],[-5,17],[-2,2],[-7,14],[-1,2],[-20,13],[-10,6],[0,1],[-14,32],[-8,17],[-7,52],[-6,29],[14,32],[4,27],[-13,24],[-15,-13],[-22,-5],[-17,-1],[-7,2],[-5,1],[-1,2],[-8,25],[-7,20],[-17,17],[-20,11],[-15,14],[3,44],[0,3],[-2,6],[-5,12],[-14,14],[-10,21]],[[39161,47065],[32,-118],[11,-39],[37,-122],[51,-134],[25,-55],[50,-109],[62,-125],[78,-138],[14,-24],[14,-22],[57,-93],[2,-5],[17,-26],[53,-87],[12,-16],[15,-20],[41,-63],[40,-61],[19,-21],[58,-62],[43,-43],[35,-34],[8,-6],[56,-46],[90,-75],[62,-52],[37,-31],[-162,-9],[-38,-2],[-57,-3],[-58,-3],[-9,0],[-25,-2],[-28,2],[-14,-2],[-13,1],[-30,-3],[-36,-3],[-2,0],[-17,-3],[-24,-1],[-53,-1],[-13,-1],[-104,-9],[-17,0],[-17,-1],[-93,-3],[-25,-1],[-70,-5],[-27,0],[-34,-3],[-27,0],[-54,-4],[-34,-2],[-19,0],[-53,-1],[-13,-1],[-14,-1],[-97,-6],[-123,-4]],[[38780,45367],[-39,-1],[-18,-1],[-20,-1],[-155,-8],[-76,-4],[-18,0],[-22,-1],[-19,-2],[-127,-6],[-13,-1],[-20,-1],[-37,-1],[-50,-2],[-56,-1],[-139,-6],[-143,-7],[-102,-5],[-12,-1],[-69,-3],[-26,-1],[-43,-2],[-69,-3],[-29,-1],[-67,-4],[-60,-2],[-19,-1],[-97,-4],[-54,-3],[-18,0],[-64,-6],[-68,-2],[-87,-4],[-84,-4],[-14,-2],[-19,0],[-19,-1],[-171,-7],[-99,-5],[-77,-2],[-14,0],[-1,0],[-182,-8]],[[36264,45253],[8,208],[4,88],[3,60],[2,109],[2,220],[0,139],[-1,138],[0,66],[-1,178],[-1,56],[-1,194],[-2,229],[0,21],[-1,101],[1,41],[0,90],[-2,171],[0,26],[-4,275],[-2,84],[-2,44],[-12,95],[-10,69],[-20,66],[-18,41],[-33,75],[-50,121],[-17,38],[-6,14],[-30,68],[-53,122],[-53,122],[-45,102],[-21,50],[-18,43],[-55,125],[-37,89],[-28,74],[-13,37],[-14,40],[-15,53],[-16,71],[-14,63],[-10,41],[-10,37],[-22,93],[-8,44],[-2,23],[-3,41],[-6,82],[-1,13],[-5,58],[-5,58],[-12,175],[1,34],[0,73],[1,42],[-238,-3],[-66,0],[-11,0]],[[28746,46043],[-20,1],[-72,3],[-31,2],[-39,1],[-386,15],[-17,1],[-1,0],[-62,2],[-174,7],[-110,4],[-160,7],[-115,5],[-15,2],[-22,1],[-30,1],[-70,3],[-99,1],[-16,1],[-51,2],[-84,3],[-39,0],[-18,0],[-29,0],[-44,1],[-112,4],[-57,-1],[-20,2],[-50,0],[-94,0],[-18,0],[-24,0],[-43,0],[-27,0],[-2,-86],[-4,-226],[-1,-154],[-1,-77],[-2,-34],[-2,-39],[0,-42],[0,-36],[-1,-11],[0,-33],[-4,-196],[-1,-67],[-53,0],[-17,0],[-21,0],[-130,0],[-2,0],[-31,0],[-64,0],[-25,0],[-37,0],[-49,0],[-6,0],[-18,0],[-10,0],[-71,5],[-6,0],[0,-16],[-4,0],[-3,0],[-21,1],[-182,10],[-3,-159],[-3,-140],[-4,-165],[-7,-311],[-2,-66],[0,-1],[-5,-261],[-2,-122],[-4,-188]],[[25799,43697],[-32,1],[-61,2],[-2,0],[-165,6],[-29,1],[-1,0],[-48,1],[-19,3],[-60,1],[-1,0],[-143,8],[-127,6],[-30,3],[-91,5],[-317,18],[-336,18],[-21,1],[0,27],[-2,179],[-3,354],[0,36],[0,38],[-1,322],[-82,1],[-122,2],[-120,3],[-106,2],[-41,-2],[-62,0],[-44,1],[-28,0],[-19,0],[-13,0],[-4,0],[-6,0],[-16,0],[-39,0],[-22,0],[-14,0],[-32,5],[-21,-1],[-45,-1],[-28,0],[-24,1],[-16,0],[-51,2],[-28,-3],[-22,1],[-14,0],[-194,1],[-82,0],[-67,1],[-2,0],[-74,0],[-18,0],[-110,1],[-258,1],[-187,1],[-4,0],[-257,0],[-20,0],[-82,0],[-127,-1],[-26,0],[4,2],[7,7],[6,11],[0,1],[5,22],[1,13]],[[21806,44798],[-1,25],[-9,27],[-9,56],[-3,22],[-1,7],[-1,12],[-1,8],[0,6],[0,3],[0,2],[-7,13],[-4,4],[-14,1],[-3,-3],[-9,-8],[-10,-39],[-1,-1],[-3,-4],[-11,-12],[-7,-7],[-19,4],[-12,26],[4,24],[21,38],[35,39],[2,2],[12,11],[4,2],[1,1],[7,0],[8,7],[1,19],[-5,8],[-12,18],[-10,3],[-34,23],[-10,15],[-24,38],[-2,1],[-1,0],[-8,2],[-4,-3],[-2,-1],[-5,-3],[-4,-2],[-10,-12],[-34,-47],[-8,-14],[-16,-17],[-13,-3],[-10,2],[-11,15],[-4,21],[1,14],[18,31],[17,38],[10,24],[8,3],[0,2],[10,9],[10,11],[12,2],[14,3],[0,1],[8,6],[5,9],[2,2],[1,4],[9,19],[1,12],[-3,11],[-3,7],[-15,11],[-3,5],[-11,20],[-3,13],[1,5],[1,13],[0,1],[0,1],[15,110],[1,2],[49,80],[22,26],[20,49],[18,37],[10,18],[8,16],[40,51],[21,22],[7,4],[10,2],[1,0],[24,-3],[6,20],[1,12],[-2,11],[-7,13],[-7,9],[-62,41],[-4,0],[-32,-3],[-53,-4],[-12,3],[-40,19],[-2,2],[-18,34],[-3,15],[19,62],[3,10],[4,12],[4,7],[11,32],[78,70],[30,40],[0,1],[11,17],[16,24],[6,6],[6,2],[12,-3],[89,-23],[17,-6],[11,-7],[1,-1],[12,-12],[13,-8],[1,-1],[20,1],[8,3],[28,12],[12,5],[7,3],[13,11],[21,6],[14,0],[23,-1],[5,5],[1,0],[5,6],[30,41],[3,6],[2,3],[2,5],[39,75],[3,6],[9,25],[1,1],[4,19],[1,19],[0,1],[-22,47],[-8,10],[-4,1],[-88,16],[-19,-3],[-11,-5],[-8,-8],[-1,-3],[-9,-30],[-11,-9],[-19,-15],[-18,-5],[-3,-1],[-11,2],[-29,24],[-1,2],[-18,9],[-9,11],[-7,15],[-21,73],[-1,16],[0,15],[5,10],[2,3],[18,15],[48,11],[26,-1],[26,11],[26,25],[6,22],[7,25],[12,10],[30,28],[14,5],[32,-5],[18,-7],[5,-2],[23,3],[28,14],[3,1],[14,12],[25,19],[9,6],[3,2],[10,23],[1,3],[9,31],[4,7],[9,6],[9,-1],[18,-5],[29,-28],[14,1],[1,1],[6,3],[7,9],[1,1],[10,17],[12,34],[9,41],[1,16],[-2,20],[-4,24],[-1,3],[-5,13],[-3,16],[-7,34],[-1,6],[-6,34],[23,29],[11,14],[35,16],[8,12],[7,13],[1,17],[-4,16],[-1,6],[0,20],[1,13],[9,18],[5,8],[6,11],[5,8],[5,5],[17,18],[23,28],[6,11],[0,1],[1,6],[2,15],[0,10],[-1,20],[0,9],[-1,7],[-1,0],[-2,0],[0,26],[58,62],[-14,134],[-5,19],[-2,29],[2,7],[1,2],[3,6],[0,1],[3,5],[6,8],[18,19],[5,13],[0,2],[1,3],[4,29],[-1,6],[0,3],[2,8],[0,1],[0,1],[1,12],[4,10],[7,18],[11,21],[1,2],[8,10],[8,3],[2,1],[15,-2],[11,-3],[27,-12],[9,-4],[5,10],[13,27],[36,76],[3,7],[10,10],[5,1],[8,4],[1,142],[1,60],[0,47],[1,138],[1,73],[1,120],[-1,49],[1,65],[0,29],[2,67],[3,91],[0,1],[2,56],[-2,32],[1,44],[0,91],[1,109],[2,73],[2,113],[0,27],[-4,102],[0,1],[2,160],[1,129],[0,38],[0,22],[-3,121],[-1,44],[0,14],[0,17],[-2,114],[-1,92],[0,39],[-1,47],[0,43],[0,107],[0,9],[1,197],[1,41],[0,23],[0,52],[0,95],[0,32],[1,39],[1,58],[1,93],[0,123],[1,56],[-1,72],[0,28],[0,41],[1,173],[0,1],[3,214],[0,44],[0,72],[1,85],[0,104],[1,123],[-1,15]],[[82071,54149],[-1,-13],[-1,-64],[-2,-62],[-8,-316],[-13,-677],[-7,-376],[-1,-41],[-16,-690],[-8,-194],[-71,27],[-15,-15],[-21,-312],[43,-138],[-29,-76],[-6,-16],[2,-37],[-6,-13],[-5,-10],[-48,-107],[187,-1238],[140,-4],[-57,-268],[-48,-226],[-1,-4],[-1,-5],[-4,-19],[-6,-27],[-5,-23],[-12,-61],[-23,-106],[-18,-89],[-20,-94],[-172,-816],[-40,-188],[-124,-576],[-18,-86],[-19,-88],[-34,-163],[-36,-172],[-10,-48],[-21,-93],[-44,-202],[-13,-65],[-5,-28],[-33,-155],[-48,-222],[-61,-289],[-97,-458],[0,-2],[-15,-68],[-1,-5],[-3,-13],[-9,-48],[-11,-49],[-33,-153],[-13,-59],[-17,-82],[-29,-142],[-7,-30]],[[81077,44555],[-179,-29],[-2,-1],[-63,-9],[-27,-4],[-63,-9],[-222,-42],[-75,-14],[-275,-51],[-149,-27],[-69,-13],[-47,-7],[-1,0],[-15,-5],[-29,-6],[-14,-2],[-99,-18],[-62,-11],[-24,-4],[-44,-7],[-115,-21],[-103,-19],[-86,-16],[-4,0],[-11,-1],[-58,-11],[-24,-6],[-27,-8],[-7,-1],[-22,-6],[-47,-10],[-23,-5],[-43,-8],[-58,-14],[-40,-9],[-28,-6],[-41,-8],[-26,-4],[-4,-1],[-16,-5],[-10,-2],[-6,-1],[-33,-7],[-30,-6],[-70,-15],[-34,-7],[-24,-5],[-84,-17],[-21,-5],[-43,-10],[-2,-1],[-13,-3],[-60,-14],[-47,-11],[-63,-15],[-18,-4],[-35,-8],[-21,-4],[-31,-7],[-28,-4],[-20,-3],[-70,-11],[-48,-10],[-19,-3],[-17,-3],[-44,-7],[-96,-18],[-86,-15],[-21,-4],[-105,-18],[-11,-2],[-57,-12],[-17,-3],[-9,-1],[-12,-1],[-137,-24],[-82,-15],[-67,-12],[-18,-3],[-12,-3],[-16,-2],[-319,-58],[-1,0],[-28,-5],[-13,-2],[-7,-1],[-17,-3],[-16,-4],[-1,0],[-97,-17],[-99,-18],[-135,-25],[-17,-2],[-136,-25],[-108,-19],[-40,-8],[-109,-21],[-46,-8],[-42,-6],[-51,-9],[-50,-9],[-51,-7],[-10,-2],[-5,0],[-14,-3],[-13,-2],[-4,-1],[-36,-6],[-27,-4],[-20,-4],[-17,-2],[-24,-4],[-22,-4]],[[75623,43542],[-1,10],[-3,41],[-3,27],[-10,47],[-5,22],[-11,25],[-11,60],[1,5],[0,60],[11,131],[9,94],[13,73],[17,33],[4,9],[15,43],[21,87],[0,4],[5,23],[29,102],[12,9],[2,3],[10,16],[6,20],[4,13],[7,22],[6,19],[13,35],[34,75],[31,62],[4,7],[8,19],[33,75],[30,142],[26,115],[18,56],[6,18],[6,89],[-1,5],[-3,10],[6,16],[5,15],[-2,20],[-2,30],[4,37],[15,130],[8,78],[19,117],[9,57],[2,37],[1,50],[1,13],[1,55],[1,91],[-15,122],[-15,50],[-4,8],[-29,56],[-17,76],[-33,218],[-1,24],[-7,84],[-4,64],[3,5],[4,22],[24,129],[24,92],[39,148],[10,53],[13,69],[1,10],[0,3],[0,43],[11,70],[23,88],[11,25],[13,32],[5,13],[1,3],[16,75],[3,12],[16,53],[17,45],[4,9],[14,34],[6,14],[15,35],[29,43],[68,96],[29,41],[3,3],[16,24],[5,7],[51,118],[9,12],[-1,6],[10,39],[8,32],[34,89],[31,71],[117,256],[20,65],[15,70],[3,22],[17,107],[0,72],[1,7],[31,158],[23,94],[19,114],[1,28],[0,3],[8,41],[2,8],[10,33],[9,23],[36,67],[15,32],[32,92],[0,2],[4,21],[13,66],[6,95],[-4,27],[9,44],[18,78],[-1,19],[0,4],[0,5],[1,4],[0,2],[11,113],[1,10],[2,56],[0,10],[0,4],[1,4],[0,4],[1,4],[1,3],[0,1],[4,17],[21,99],[43,161],[19,84],[3,13]],[[75299,50504],[-1,-27],[-1,-26],[-1,-32],[-26,-6],[-21,-4],[-41,-9],[-55,-11],[-46,-10],[-8,-1],[-38,-8],[-54,-12],[-19,-4],[-54,-11],[-29,-6],[-23,-5],[-115,-24],[-73,-15],[-25,-5],[-41,-9],[-67,-14],[-46,-13],[-16,1],[-14,-3],[-13,-3],[-13,-3],[-69,-15],[-82,-13],[-15,-5],[-33,-8],[-18,-3],[-67,-15],[-18,-5],[-91,-18],[-8,-1],[-23,-6],[-31,0],[-65,-16],[-166,-27],[-14,-3],[-1,-1],[-15,-3],[-16,-3],[-4,-1],[-54,-15],[-27,-5],[-17,-2],[-12,-1],[-4,-1],[-18,-2],[-2,-1],[-23,-8],[-174,-33],[-87,-21],[-54,-12],[-55,-13],[-14,-4],[-1,0],[-15,-3],[-56,-14],[-37,-9],[-96,-22],[-13,-4],[-101,-22],[-120,-27],[-31,-7],[-18,-4],[-56,-12],[-57,-13],[-69,-15],[-110,-24],[-2,0],[-53,-11],[-20,-4],[-32,-7],[-34,-8],[-22,-4],[-40,-8],[-41,-9],[-40,-8],[-86,-18],[-276,-59],[-155,-31],[-60,-13],[-32,-7],[-42,-8],[-18,-5],[-6,-1],[-78,-16],[-53,-11],[-38,-8],[-100,-23],[-24,-5],[-13,-2],[-9,-2],[-89,-20],[-96,-21],[-20,-5],[-171,-38],[-145,-33]],[[70607,49422],[-18,-140],[-11,-85],[-14,-106],[-8,-56],[-28,-4],[-91,-15],[-27,-4],[-27,-4],[-42,-7],[-17,-3],[-65,25],[-148,56],[-257,99],[-15,-46],[-8,-1],[-18,-3],[-82,-13],[-125,-18],[-46,-7],[-17,-2],[-16,-2],[-36,-6],[-17,-2],[-30,-3],[2,15],[17,101],[-88,-1],[0,1],[-5,11],[-11,16],[-18,28],[-13,22],[-10,26],[-52,94],[-15,26],[-57,100],[-63,109],[-20,35],[-31,55],[-1,1],[-12,21],[-39,73],[-6,11],[-1,1],[-7,26],[-4,33],[8,19],[4,4],[10,12],[42,28],[24,13],[16,9],[7,2],[12,5],[21,10],[26,12],[24,8],[18,5],[20,4],[16,3],[26,2],[15,1],[32,-2],[37,-1],[36,2],[25,8],[16,2],[31,3],[13,-4],[15,-7],[5,-4],[8,-6],[15,-13],[23,-5],[49,24],[14,16],[6,30],[13,18],[16,15],[5,10],[4,9],[9,16],[10,18],[9,19],[14,40],[1,26],[-5,25],[-11,30],[-8,24],[-6,25],[-5,23],[-4,32],[2,41],[5,20],[1,1],[7,17],[7,25],[9,29],[8,27],[11,25],[1,2],[1,0],[13,17],[16,30],[5,15],[2,5],[-2,26],[-11,28],[-9,14],[-1,1],[-28,19],[-12,13],[-2,4],[-7,14],[-2,42],[0,5],[-2,25],[-4,19],[-1,4],[-9,15],[-15,7],[-17,-1],[-22,-11],[-17,-4],[-18,8],[-18,24]],[[64688,51625],[-37,-142],[-114,-439],[0,-1],[-58,-224],[-7,-27],[-2,-30],[-14,-243],[-3,-56],[-2,-38],[-5,-86],[-8,-159],[10,-313],[9,-49],[18,-86],[7,-32],[5,-24],[6,-32],[35,-175],[8,-40],[10,-50],[5,-22],[10,-52],[8,-45],[16,-85],[7,-35],[6,-41],[1,-4],[7,-41],[13,-79],[16,-91],[36,-205],[8,-49],[5,-34],[8,-40],[6,-31],[6,-38],[6,-37],[26,-145],[13,-78],[6,-30],[15,-86],[4,-21],[5,-35],[9,-42],[11,-57],[4,-24],[4,-24],[18,-98],[16,-87],[5,-27],[3,-23],[0,-4],[4,-28],[7,-32],[1,-5],[8,-76],[8,-84],[21,-202],[6,-50],[4,-27],[3,-29],[-15,-35],[-14,-36],[-9,-23],[-74,-187],[-12,-36],[-9,-24],[-61,-165],[-70,-185],[-15,-36],[-37,-103],[-14,-35],[-9,-18],[-10,-28],[-107,-285],[-28,-74],[-22,-53],[-13,-32],[-9,-20],[-60,-124],[-56,-118],[-57,-118],[-92,-191],[-28,-57],[-36,-77],[-121,-252],[-12,-24],[-3,-8],[-5,-9],[-16,-34],[-10,-21]],[[63887,44728],[1,-12],[-2,-3],[-4,-5],[-6,-3],[-39,-15],[-18,1],[-24,2],[-7,23],[-15,-2],[-4,-6],[-8,-9],[-3,2],[-20,11],[-18,4],[-19,7],[-24,3],[-1,0],[-15,-16],[-21,-14],[-16,-23],[-8,-24],[-7,-4],[-6,-3],[-2,-1],[-4,3],[-13,9],[-13,7],[-18,7],[-14,13],[-21,-2],[-15,-2],[-10,9],[-2,2],[-17,0],[-2,0],[-12,-13],[-17,-10],[-8,-6],[-5,-4],[-12,-8],[-4,0],[-18,-2],[-1,0],[-13,7],[-35,-36],[-4,-2],[-16,-6],[-12,-13],[-9,-20],[-15,-14],[-2,-1],[-14,-3],[-2,0],[-19,3],[-13,-17],[-6,-8],[-1,-2],[-8,-14],[0,-1],[-12,-9],[-11,-12],[-10,-22],[-14,-7],[-10,-3],[-4,-1],[-14,-16],[-13,-11],[-2,-2],[-1,0],[-16,0],[-16,12],[-18,-7],[-1,0],[-2,2],[-17,15],[-3,7],[-6,14],[-1,-1],[-18,0],[-21,3],[-32,6],[-134,22],[-112,19],[-73,12],[-27,4],[-354,58],[-49,8],[-24,4],[-46,-34],[-58,-44],[-69,-52],[-196,-147],[-16,-17],[-39,-31],[-112,-88],[-17,-13],[-36,-28],[-39,-31],[-14,-12],[-12,-9],[-165,-100],[-44,-33],[-285,-213],[-4,-34],[-17,-10],[-29,-20],[-246,-183],[-15,169],[-10,-25],[-76,-12],[-28,-2],[-13,0],[-22,-5],[-49,-10],[-4,-24],[-5,-28],[-65,-330],[-18,-93],[-14,-70],[-35,19],[-17,22],[-11,20],[-24,0],[-14,-12],[4,-22],[21,-23],[-2,-28],[0,-7],[-13,-9],[-16,-14],[-1,-2],[-8,-22],[-15,-3],[-28,21],[-29,21],[-16,8],[-17,18],[-8,19],[1,41],[1,20],[-1,25],[-12,23],[-3,2],[-11,9],[-1,1],[-25,-1],[-18,-13],[-15,11],[-26,12],[-21,14],[-19,2],[-16,-3],[-10,28],[-7,18],[0,1],[-6,19],[-1,2],[-12,22],[-2,-26],[-9,-116],[-1,-18],[-2,-50],[-13,-312],[-1,-34],[-32,0],[-63,5],[-165,11],[-56,4],[-29,3],[-65,5],[-87,5],[-260,-133],[-2,0],[-172,-88],[-271,-315],[-24,-29],[-100,-115],[-27,-29],[32,-56],[26,-44],[-24,-25],[-36,-40],[-33,-35],[-12,-13],[-159,-167],[-51,94],[-59,-56],[-87,-82],[-103,-96],[-12,-17],[-149,-139],[-18,-20],[-20,-17],[-80,-76],[-105,-100],[35,217],[5,26],[21,126],[9,54],[8,51],[-6,-8],[0,-1],[-1,-1],[-2,-2],[-2,-2],[-2,-2],[0,-1],[-51,-41],[-23,-18],[-10,-8],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-24,-6],[-1,0],[-55,-10],[-21,-4],[-12,-6],[-30,-40],[-19,-24],[-1,-2],[-5,-5],[-1,-4],[-22,-55],[-1,-3],[-20,-20],[-11,-6],[-5,0],[-34,-1],[-9,0],[-99,-70],[-75,-10],[-127,-5],[-22,3],[-36,7],[-22,3],[-27,4],[-14,2],[-23,2],[-6,1],[-5,0],[-29,1],[-10,-2],[-19,-11],[-4,-4],[-84,-107],[-16,-27],[-11,-22],[-6,-24],[-3,-13],[12,-29],[10,-22],[3,-7],[0,-26],[-11,-15],[-27,-31],[-21,-21],[-15,-12],[-31,-4],[-14,-13],[-16,-37],[-1,-3],[-6,-20],[-6,-26],[-7,-8],[-7,-8],[-2,-3],[-20,-8],[-19,-8],[-17,-11],[-17,-14],[-23,-12],[-19,-5],[-2,-2],[-13,-11],[-8,-7],[-12,-36],[-25,-63],[-10,-30],[-3,-8],[-1,-1],[-2,-5],[-11,-27],[-3,-11],[-9,-48],[-6,-19],[-7,-10],[-5,-2],[-8,-9],[-2,-4],[-18,-16],[-37,-15],[-7,-3],[-46,-20],[-1,0],[-2,-2],[-2,-1],[-2,-1],[-65,-56],[-2,-2],[-61,3],[-47,-14],[-10,-3],[-2,-3],[-5,-5],[-13,-15],[-1,-1],[-26,-27],[-25,-26],[-13,-14],[-2,-2],[-2,-1],[-2,-2],[-45,-26],[-39,-12],[-10,0],[-4,0],[-2,0],[-1,0],[-28,8],[-1,0],[-1,0],[-25,10],[-14,6],[-67,26],[-14,5],[-26,0],[-118,-30],[-26,-6],[-27,-9],[-27,-19],[-3,-2],[-29,43],[-21,31],[-3,6],[-4,7],[-3,7],[-1,17],[2,25],[2,11],[-7,13],[-21,9],[-11,-2],[-6,-6],[-10,-10],[-22,-55],[-22,-17],[-43,-5],[-14,0],[-1,0],[-31,57],[-3,5],[-14,-5],[-5,-4],[-24,-18],[-4,-3],[-8,-25],[-9,-26],[-2,-2],[-30,-24],[-2,-2],[-6,-1],[-5,-2],[-10,-2],[-33,0],[-19,6],[-3,6],[-1,1],[-22,9],[-3,0],[-6,3],[-24,9],[-22,-7],[-4,-2],[-9,-8],[-10,-9],[-10,-5],[-14,-7],[-24,-13]],[[54987,40222],[-13,-4],[-6,-1],[-2,3],[0,1],[8,14],[5,31],[5,27],[4,21],[4,27],[12,24],[15,5],[7,-5],[24,-19],[17,-10],[11,7],[7,13],[1,4],[0,17],[0,2],[-2,10],[-3,9],[-6,11],[0,1],[-5,11],[10,17],[2,15],[6,24],[8,36],[6,53],[16,55],[1,1],[18,21],[26,18],[12,13],[16,25],[0,1],[6,15],[5,14],[2,10],[0,35],[-3,24],[-19,34],[1,22],[3,103],[0,25],[1,34],[3,3],[6,7],[30,33],[15,19],[3,4],[4,4],[3,7],[17,90],[0,18],[-2,10],[-3,7],[-28,18],[-9,6],[-47,43],[-2,2],[-1,9],[-12,65],[0,1],[-19,108],[0,1],[-7,34],[2,7],[8,56],[1,2],[-2,16],[-2,4],[-14,20],[-16,24],[-9,50],[0,5],[3,23],[5,35],[2,15],[1,2],[3,10],[37,82],[8,14],[37,57],[1,3],[12,20],[1,1],[5,10],[0,1],[1,2],[17,37],[1,3],[2,4],[0,2],[13,41],[4,8],[19,31],[5,7],[8,5],[18,9],[2,1],[2,1],[14,10],[2,2],[2,1],[11,11],[0,1],[2,1],[18,21],[1,0],[1,3],[7,9],[45,23],[5,6],[1,6],[12,54],[0,3],[2,3],[1,2],[1,4],[2,3],[0,3],[9,31],[1,2],[11,9],[37,28],[1,3],[0,12],[-7,22],[-23,77],[-1,26],[0,4],[-1,4],[0,3],[-1,3],[-3,20],[-1,1],[0,1],[-12,59],[0,2],[-12,61],[-7,34],[-5,24],[0,4],[-1,1],[0,4],[-1,4],[0,4],[-1,4],[-25,100],[0,3],[-2,3],[-1,4],[0,2],[-9,20],[-1,4],[-9,119],[-1,44],[0,1],[0,4],[0,4],[-1,4],[0,1],[-12,71],[-14,88],[0,3],[-1,4],[-1,4],[-1,3],[-1,3],[-45,123],[-1,0],[-1,4],[-25,55],[0,2],[-38,80],[-1,1],[-1,3],[-2,3],[-1,2],[-2,3],[-13,14],[-1,2],[-2,2],[-2,1],[-17,12],[-1,2],[-3,7],[-3,14],[-4,84],[-3,93],[0,4],[-1,4],[-3,25],[0,4],[-1,4],[-7,37],[-1,4],[-1,3],[0,3],[-13,42],[-8,49],[-3,21],[0,8],[1,3],[4,11],[1,2],[3,8],[42,11],[1,0],[41,66],[4,14],[3,15],[0,22],[-1,3],[-4,20],[-11,48],[-9,38],[4,27],[5,27],[-22,92],[0,1],[31,49],[2,4],[0,11],[-3,34],[-3,47],[0,1],[-4,12],[-4,2],[-10,-3],[-32,13],[-22,9],[6,10],[27,52],[3,5],[62,-1],[17,-3],[1,0],[14,-9],[9,-6],[4,-2],[7,2],[4,5],[5,12],[56,147],[12,53],[-1,0],[-33,37],[4,10],[39,104],[14,36],[32,83],[22,58],[1,3],[6,16],[47,0],[4,5],[7,9],[5,19],[9,34],[1,8],[5,60],[2,22],[15,36],[18,46],[10,24],[22,51],[2,4],[1,3],[0,1],[2,2],[1,3],[1,3],[14,29],[10,20],[5,1],[20,6],[12,3],[26,6],[4,6],[21,46],[17,-15],[2,-2],[21,4],[17,17],[9,10],[16,17],[3,5],[1,0],[25,31],[82,29],[9,3],[14,8],[15,16],[11,15],[9,11],[0,14],[0,1],[-5,20],[28,-4],[4,1],[6,0],[4,2],[1,1],[2,3],[0,9],[20,39],[11,14],[18,198],[0,2],[21,7],[1,1],[4,2],[5,12],[1,1],[2,15],[-4,4],[-10,20],[-20,39],[-1,13],[2,7],[13,35],[29,78],[8,23],[5,13],[-10,58],[-23,-15],[-2,-1],[-7,5],[-2,1],[-68,25],[-3,15],[-21,91],[0,1],[-1,3],[-15,52],[0,1],[-1,22],[-7,91],[0,4],[1,29],[9,69],[6,30],[8,24],[4,10],[25,47],[40,62],[1,2],[2,3],[1,2],[7,13],[75,133],[2,3],[-3,-1],[-33,-14],[-12,55],[-2,8],[-26,92],[0,1],[0,32],[0,9],[0,3],[39,21],[35,19],[4,10],[3,82],[0,1],[0,2],[-1,127],[-7,12],[0,1],[-11,7],[-40,68],[-2,6],[-6,50],[1,8],[0,1],[11,44],[2,7],[-12,60],[-13,61],[0,1],[-3,89],[-2,52],[-3,91],[1,20],[5,35],[2,20],[4,28],[10,38],[11,26],[6,12],[0,1],[1,3],[1,3],[1,3],[1,4],[1,4],[1,3],[0,4],[4,30],[0,4],[0,3],[1,16],[49,25],[12,8],[15,16],[29,52],[37,65],[19,34],[4,16],[0,20],[0,1],[-3,14],[16,63],[15,58],[8,13],[2,3],[1,3],[4,12],[18,70],[4,30],[1,4],[10,38],[6,13],[11,23],[27,46],[8,14],[1,0],[34,93],[0,8],[-9,17],[0,1],[0,16],[15,43],[2,3],[26,5],[4,3],[3,6],[2,8],[-2,16],[-7,9],[-3,1],[14,9],[1,1],[3,19],[-1,122],[0,30],[0,1],[-20,9],[-3,2],[5,73],[24,33],[1,1],[10,28],[1,7],[5,95],[1,9],[-16,32],[-1,57]],[[21806,44798],[-122,0],[-16,0],[-29,0],[-1,0],[-163,1],[-125,1],[-34,0],[-60,0],[-49,1],[-38,0],[-88,1],[-1,0],[-138,2],[-143,2],[-52,0],[-29,0],[-42,1],[-1,0],[-67,0],[-87,0],[-64,0],[-1,0],[-35,0],[-188,0],[-105,1],[-227,0],[-13,0],[-77,1],[-34,0],[-1,0],[-71,3],[-41,1],[-105,0],[-13,-3],[-55,2],[-19,0],[-3,0],[-15,0],[-118,-2],[-14,0],[-43,0],[-25,-1],[-103,0],[-14,-1],[-91,0],[-65,0],[-104,0],[-74,-2],[-13,0],[-21,0],[-72,-2],[-81,-1],[-39,-1],[-21,0],[-20,-1],[-147,-3]],[[18389,44798],[-22,0],[-15,0],[-69,-2],[-13,0],[-16,0],[-124,-3],[-151,-3],[-25,-1],[-139,-5],[-31,-1],[-17,0],[-46,-1],[-131,-3],[-34,-3],[-173,-7],[-155,-4],[-22,-1],[-22,-1],[-6,0],[-28,-2],[-76,-1],[-18,0],[-45,0],[-44,-1],[-41,0],[-105,0],[-32,0],[-148,0],[-173,-1],[-14,0],[-36,0],[4,80],[1,29],[0,66],[1,29],[1,47],[0,25],[1,9],[2,95]],[[70607,49422],[93,-133],[18,-25],[23,-33],[2,-4],[31,-44],[12,-17],[19,-26],[-5,-43],[-15,-128],[-12,-101],[-12,-124],[-11,-114],[-1,-2],[-5,-57],[5,-145],[2,-75],[2,-47],[3,-114],[-12,-107],[-5,-46],[-3,-23],[-13,-40],[-11,-31],[-8,-40],[-10,-38],[0,-53],[-18,-30],[-50,-190],[-13,-41],[-12,-36],[-13,-45],[-10,-23],[-15,-22],[-4,-9],[-16,-36],[-7,-20],[0,-1],[-33,-86],[-41,-101],[-10,-27],[-2,-29],[-9,-145],[-54,-98],[-10,-17],[-34,-58],[-14,-23],[-30,-52],[-26,-44],[-29,-69],[-19,-42],[-59,-78],[-29,-70],[-18,-38],[-10,-27],[-4,-74],[-3,-38],[-55,-90],[-23,-26],[-14,-17],[-82,-102],[-7,-40],[-21,-134],[-9,-61],[-4,-20],[-5,-23],[8,-66],[-45,-155],[-6,-28],[-7,-23],[46,-138],[45,-149],[10,-29],[7,-20],[27,-79],[22,-61],[44,-64],[1,-130],[1,-23],[-1,-68],[2,-28],[3,-87],[0,-1],[3,-58],[-10,-35],[-10,-96],[0,-57],[-8,-58],[-17,-68],[-21,-51],[-49,-96],[-30,-50],[-66,-297],[-35,-39],[-1,-4],[-11,-61],[-53,-282],[-6,-37],[-9,-47],[-13,-76],[-8,-45],[-18,-62],[-7,-28],[-15,-55],[-12,-41],[-37,-132],[-14,-49],[-13,-50],[-20,-72],[-20,-68],[0,-28],[6,-98],[7,-105],[3,-57],[116,24]],[[69671,42303],[1,-3],[28,-155],[31,-174],[21,-124],[34,-195],[7,-36],[-14,16],[-9,21],[-23,10],[-16,-3],[-30,3],[-22,6],[-18,6],[-18,-7],[-15,-5],[-15,-3],[-19,-17],[-9,-18],[-13,-25],[-15,-13],[-16,-17],[-16,-22],[-26,-52],[-16,-43],[-5,-32],[-9,-18],[-11,-9],[-29,-46],[-19,-19],[-22,-19],[-29,-7],[-23,0],[-14,-5],[-14,-16],[-13,-7],[-35,-7],[-25,-1],[-22,-2],[-31,-2],[-26,6],[-25,14],[-21,9],[-18,-1],[-28,-16],[-19,-16],[-25,-11],[-35,-16],[-17,-18],[-34,-42],[-62,64],[-18,12],[-15,3],[-34,-12],[-26,-7],[-20,-14],[-20,-21],[-17,-19],[-16,-5],[-28,0],[-16,6],[-21,12],[-16,7],[-15,2],[-20,3],[-15,0],[-37,-36],[-28,-26],[-18,33],[-8,18],[-14,8],[-22,31],[-12,11],[-26,10],[-17,9],[-6,27],[-11,42],[-42,43],[-37,24],[-18,8],[-28,3],[-11,15],[-54,38],[-22,-2],[-14,1],[-20,12],[-27,40],[-10,31],[-62,-29],[-447,-232],[-156,-80],[-22,-11],[-4,-2],[-55,-28],[-1,-1],[-68,-34]],[[67278,41126],[-12,8],[-1,1],[-148,104],[-147,104],[-105,73],[-221,154],[-56,38],[-19,13],[-52,36],[-116,80],[-60,41],[-12,8],[-103,72],[-63,43],[-38,26],[-37,26],[-14,9],[-54,37],[-7,6],[-38,26],[-80,55],[-180,124],[-90,62],[-127,88],[-27,18],[-1,1],[-30,21],[-49,33],[-67,46],[-93,63],[-146,101],[-5,4],[-20,14],[-20,33],[-18,28],[-28,52],[-133,238],[-129,228],[-13,23],[-141,249],[-90,159],[-69,122],[-3,5],[-23,41],[-168,298],[-50,88],[-64,110],[-22,39],[-53,94],[-50,86],[-68,120],[-31,54]],[[75623,43542],[-3,0],[-11,-2],[-30,-4],[-11,-1],[-48,-6],[-2,0],[-27,-4],[-72,-11],[-5,-1],[-95,-14],[-1,0],[-17,-3],[-20,-3],[-15,-2],[-68,-11],[-10,-1],[-87,-23],[-146,-38],[-16,-4],[-21,-5],[-2,-1],[-52,-13],[-114,-28],[-17,-5],[-147,-38],[-112,-28],[-26,-7],[-32,-7],[-68,-16],[-18,-5],[-48,-11],[-38,-10],[-27,-8],[-78,-19],[-35,-8],[-21,-5],[-31,-8],[-71,-17],[-83,-22],[-89,-20],[-32,-9],[-24,-6],[-2,0],[-19,-5],[-59,-12],[-26,-5],[-30,-6],[-72,-13],[-45,-8],[-91,-15],[-50,-9],[-14,-3],[-36,-7],[-34,-6],[-22,-4],[-60,-10],[-56,-9],[-49,-7],[-51,-11],[-56,-14],[-41,-6],[-29,-5],[-18,-3],[-224,-46],[-2,-1],[-13,-2],[-133,-27],[-94,-19],[-91,-20],[-169,-38],[-55,-12],[-133,-29],[-62,-13],[-93,-20],[-41,-9],[-42,-9],[-74,-16],[-146,-31],[-117,-24],[-92,-9],[-27,-6],[-43,-10],[-114,-25],[-106,-24],[-27,-6],[-86,-20],[-16,-3],[-32,-8],[-44,-8],[-130,-25],[-15,-3],[-5,-1],[-179,-34],[-12,-3],[-74,-14],[-30,-6],[-39,-7],[-1,0],[-196,-39],[-103,-19],[-84,-17],[-109,-21],[-48,-9],[-61,-12],[-45,-9],[-4,-1],[-11,-2]],[[45945,42350],[-32,-1],[-91,-4],[-122,-4],[-48,-2],[-55,-2],[-70,-3],[-20,-1],[-80,-3],[-24,-1],[-109,-4],[-38,-1],[-65,-3],[-26,-1],[-90,-3],[-16,-1],[-5,0],[-16,0],[-23,-1],[-14,0],[-23,-1],[-15,-1],[-18,-1],[-51,-2],[-19,0],[-54,-3],[-52,-2],[-186,-7],[-149,-6],[-29,-2],[-18,-1]],[[44387,42289],[-1,22],[-1,23],[-6,171],[-3,110],[-7,205],[-5,144],[-7,221],[-2,26],[-1,44],[-11,317],[-1,44],[-5,150],[0,9],[-1,15],[-2,62],[-6,196],[-1,1],[-5,147],[-7,139],[-1,60],[0,41],[-1,28],[-4,130],[-1,45],[-5,143],[-7,269],[-4,98],[0,49],[-1,27],[0,1],[-1,37],[-1,43],[-1,36],[-2,68],[-2,40],[-2,83],[-6,163],[-1,38],[-1,28],[-3,100],[-4,132],[-5,139],[-4,132],[0,12],[-13,394],[-1,48],[-12,349]],[[48985,49286],[2,-34],[2,-40],[6,-132],[0,-1],[6,-116],[14,-279],[6,-110],[4,-73],[15,-304],[4,-66],[14,-309],[3,-45],[7,-157],[12,-240],[5,-102],[5,-109],[2,-38],[1,-30],[1,-13],[20,-395],[1,-27],[3,-62],[0,-1],[0,-16],[3,-72],[20,-424],[2,-16],[1,-6],[1,-57],[11,-220],[3,-63],[18,-351],[4,-70],[0,-3],[1,-26],[3,-53],[2,-22],[16,-321],[1,-34],[11,-212],[4,-74],[11,-228],[5,-101],[5,-117],[3,-82],[4,-97],[3,-88],[3,-53],[4,-91],[2,-37],[7,-194],[1,-33],[7,-163],[1,-31],[4,-71],[4,-118],[9,-223],[0,-4],[3,-71],[4,-37],[-2,-24],[5,-79],[7,-106],[2,-46]],[[49311,42469],[-18,-4],[-26,-3],[-21,-1],[-39,-4],[-30,-2],[-50,-5],[-49,-5],[-24,-3],[-71,-7],[-39,-3],[-18,-2],[-50,-4],[-86,-9],[-94,-8],[-52,-4],[-37,-3],[-71,-5],[-109,-7],[-46,-4],[-53,-3],[-42,-3],[-27,-2],[-14,-1],[-44,-3],[-135,-11],[-32,-3],[-99,-7],[-62,-4],[-4,-1],[-43,-2],[-65,-4],[-70,-4],[-95,-5],[-161,-8],[-28,-2],[-39,-1],[-1,0],[-33,-1],[-20,-1],[12,37],[-13,38],[-24,6],[-5,1],[-231,-9],[-19,-1],[-59,-2],[-112,-5],[-128,-4],[-34,-2],[-340,-13],[-144,-5],[-42,-2],[-78,-3],[-24,-1],[-28,-1],[-30,-1],[-31,-2],[-3,0],[-36,-1]],[[36264,45253],[-1,-9],[-5,-43],[-10,-94],[-7,-68],[-13,-124],[-13,-125],[-3,-74],[-1,-41],[-1,-29],[-1,-24],[-5,-127],[-1,-35],[-3,-143],[-2,-91],[0,-29],[6,-45],[7,-52],[2,-15],[3,-21],[3,-23],[2,-14],[5,-42],[9,-36],[5,-21],[8,-35],[19,-80],[10,-43],[8,-35],[39,-165],[13,-54],[-171,-17],[-2,0],[-20,-1],[-23,-3],[-34,-3],[-64,-5],[-20,-2],[-176,-16],[-58,-5],[-3,0],[-26,-3],[-82,-7],[-134,-12],[-39,-2],[-3,0],[-12,-1],[-71,-8],[-2,36],[-4,76],[-105,-8],[-50,-4],[-142,-11],[-2,2],[-1,2],[-2,46],[-2,81],[-5,145],[-2,67],[-1,22],[-3,89],[-1,25],[-40,0],[-31,0],[-28,0],[-31,0],[-49,-1],[-136,-1],[-39,-1],[-18,0],[-15,0],[-28,0],[-44,-1],[-31,-1],[-63,0],[-20,-1],[-30,0],[-50,0],[-111,-3],[-21,0],[-192,-4],[-138,-3],[-44,-1],[-13,0],[-138,-3],[-161,-4],[-18,0]],[[33588,43975],[-5,373],[0,91],[0,1],[0,21],[-26,16],[-65,40],[-8,-29],[-6,-13],[-12,-25],[-14,-31],[-12,-15],[-14,-20],[-15,-20],[-18,-22],[-14,-15],[-13,-13],[-10,-14],[-22,-27],[-40,-28],[-16,-7],[-39,-19],[-28,-6],[-3,-1],[-21,-5],[-28,2],[-13,3],[-2,0],[-21,5],[-3,2],[-15,14],[-26,37],[-15,32],[-4,10],[-7,23],[-7,93],[0,38],[-1,42],[3,84],[5,80],[11,101],[11,91],[5,55],[3,35],[1,25],[2,64],[-4,43],[-2,24],[-8,86],[-9,80],[-4,31],[-4,42],[-5,90],[1,43],[0,44],[5,62],[6,66],[16,119],[15,85],[8,42],[7,39],[17,96],[-52,-1],[-18,0],[-17,0],[-3,0],[-115,-2],[-84,-1],[-98,-1],[-27,0],[-99,-1],[-99,-1],[-25,-1],[-244,2],[-65,-3],[-37,-2],[-120,0],[-36,-2],[-57,2],[-38,-1],[-18,1],[-23,-1],[-46,-1],[-2,0],[-17,0],[-99,-1],[-203,-1],[-168,0],[-28,-2],[-169,0],[-54,3],[-27,0],[-50,0],[-101,0],[-102,1],[-79,0],[-55,0],[-8,0],[-95,0],[-20,0],[-13,1],[-24,0],[-63,0],[-119,0]],[[54987,40222],[0,-224],[-1,-31],[-1,-60],[0,-18],[-2,-72],[-1,-47],[0,-14],[0,-12],[-4,-152],[-1,-89],[-9,-397],[-4,-202],[0,-101],[0,-9],[-2,-52],[0,-2],[0,-53],[0,-26],[-1,-56],[-4,-253],[-3,-324],[-2,-106],[-1,-63],[-2,-83],[-2,-190]],[[54947,37586],[-18,-2],[-35,1],[-49,2],[-64,-2],[-53,0],[-14,0],[-13,0],[-29,1],[-17,1],[-76,0],[-67,0],[-86,0],[-25,1],[-41,0],[-114,0],[-88,1],[-36,0],[-108,0],[-94,-1],[-50,1],[-19,0],[-203,1],[-79,0],[-51,1],[-17,0],[-39,0],[-70,0],[-21,1],[-1,0],[-120,0],[-133,1],[-188,1],[-20,0],[-190,1],[-24,0],[-34,1],[-8,0],[-9,0],[-23,0],[-42,0],[-20,0],[-34,1],[-67,-1],[-54,0],[-15,0],[-23,0],[-27,1],[-137,2],[-21,0],[0,34],[0,89],[-1,47],[-2,18],[1,13],[3,162],[-4,278],[-2,159],[0,28],[-1,73],[-4,80],[0,11],[-1,7],[-1,61],[-3,114],[-124,-3],[-137,-3],[-57,-1],[-112,-2],[-69,-3],[-23,-2],[-45,-2],[-25,1],[-40,-1],[-56,0],[-59,-1],[-73,-1],[-96,-1],[-43,-1],[-102,-1],[-3,12],[0,4],[-1,9],[-1,11],[-101,-1],[-35,0],[-54,0],[-121,-2],[-31,-1],[-189,3],[-1,0],[-54,-1],[-40,0],[-45,-1],[-32,0],[-14,1],[-8,-1],[-13,0],[-15,0],[-110,-2],[-57,0],[-23,0],[-140,-2],[-141,-1],[-5,0],[-2,-1],[-6,-7],[-13,-14],[-13,-6],[-13,-3],[-7,-1],[-6,-2],[-15,-2],[-14,-5],[-12,-9],[-9,-16],[-12,-8],[-15,-3],[-27,-6],[-10,-1],[-3,-1],[-6,-4],[-16,-12],[-3,-2],[-2,-1],[-3,-3],[-2,-1],[-1,1],[-1,2],[-2,7],[-5,18],[-5,19],[-8,27],[-2,8],[-14,50],[-31,119],[-26,94],[-2,53],[-1,39],[-7,175],[-5,82],[-2,36],[-1,31],[-13,192],[-12,196],[-8,139],[-5,86],[-9,150],[-15,275],[-3,51],[-2,39],[-2,35],[-2,33],[-8,142],[-6,114],[-1,23],[-17,140],[-2,22],[-5,42],[-3,27],[-12,102],[-18,162],[-21,167],[-9,82],[-5,48],[-12,95],[-16,141],[-5,47],[-6,89],[-1,35],[-14,272],[-4,60],[-2,30]],[[44387,42289],[-207,-9],[-239,-11],[-21,-1],[-26,-1],[-10,0],[-6,-14],[-7,-14],[0,-1],[-9,-20],[-14,-64],[-7,-34],[-9,-43],[-6,-34],[-6,-20],[0,-1],[5,-25],[2,-10],[3,-18],[3,-21],[5,-21],[7,-36],[-7,-38],[-11,-32],[-20,-29],[23,-54],[13,-32],[4,-1],[56,-27],[30,-1],[15,0],[23,0],[37,-1],[49,-1],[1,0],[30,-25],[52,-45],[31,2],[223,-183],[69,-57],[18,-15],[26,-21],[24,-20],[14,-55],[5,-18],[12,-50],[11,-41],[9,-94],[-28,-94],[-25,-46],[-6,-11],[-34,-62],[-3,-84],[-6,-30],[-2,-31],[-2,-56],[-1,-9],[-2,-25],[-5,-51],[-33,-59],[-20,-35],[2,-134],[1,0],[12,-43],[3,-8],[6,-21],[-4,-27],[-8,-63],[-2,-15],[-10,-71],[7,-27],[8,-42],[9,-50],[2,-27],[-1,-20],[0,-6],[-7,-40],[-5,-31],[-3,0],[-55,0],[-63,1],[-146,0],[-112,1],[-39,0],[-65,0],[1,162],[0,44],[0,48],[-46,1],[-23,-3],[-66,3],[-16,0],[-25,1],[-99,-1],[-53,0],[-19,0],[-34,1],[-120,0],[-30,1],[-157,1],[-59,0],[-42,0],[-2,123],[-2,71],[0,24],[-282,-2],[-16,0],[-244,7],[-70,0],[-13,-1],[-39,0],[-71,-1],[-54,-1],[-25,0],[-2,-283],[-2,-155],[-1,-146],[0,-73],[-3,-228],[-1,-88],[-1,-53],[-2,-200],[-78,2],[-27,1],[-103,2],[-83,2],[-34,1],[-38,1],[-134,2],[-42,1],[-52,2],[-54,2],[-36,1],[-56,1],[5,252],[2,132],[-15,0],[-62,-2],[-22,2],[-62,4],[-45,-1],[-24,0],[-13,-2],[-15,2],[-67,1],[-17,0],[-104,3],[-35,1],[-27,1],[-13,0],[-46,1],[-131,2],[-15,0],[-102,2]],[[40782,39505],[-33,0],[-17,0],[-1,0],[-32,1],[-50,1],[-161,3],[-123,7],[-104,6],[-64,1],[-138,2],[-173,2],[-128,1]],[[39758,39529],[-67,3],[-31,2],[-236,8],[-149,5],[-131,5],[-61,2],[-214,8],[-2,0],[-21,1],[0,42],[0,48],[1,30],[1,114],[0,21],[2,242],[1,145],[17,1],[-6,252],[0,70],[-1,124],[0,72],[-2,303],[0,77],[0,148],[-1,62],[0,136],[-1,82],[59,0],[2,38],[-6,177],[-4,126],[-1,35],[-2,61],[-12,350],[-2,65],[-3,64],[-2,107],[-1,22],[-7,188],[-1,32],[-3,61],[-1,36],[-1,48],[-3,34],[0,34],[-6,156],[-4,115],[-2,48],[-2,50],[-6,140],[0,26],[-3,48],[-1,22],[-8,180],[-1,44],[-1,26],[-4,85],[-2,26],[-3,88],[-2,59],[-1,41],[-5,111],[1,33],[0,6],[-1,21],[-1,38],[-1,24],[-3,93],[-3,55],[0,14],[-1,27],[-5,129],[-1,55],[-14,369],[-1,34],[-8,194]],[[33588,43975],[4,-270],[0,-3],[1,-41],[0,-28],[0,-1],[0,-47],[1,-20],[1,-22],[2,-86],[0,-157],[3,-108],[5,-127],[0,-24],[-2,-31],[-1,-19],[2,-69],[1,-90],[1,-44],[1,-31],[1,-24],[1,-25],[1,-186],[1,-180],[1,-69],[1,-165],[3,-95],[1,-129],[7,-314],[1,-24],[1,-1],[1,-31],[1,-24],[0,-17],[1,-47],[1,-51],[0,-7],[3,-135],[3,-141],[1,-58],[4,-153],[1,-28],[1,-54],[3,-120],[4,-135],[4,-170],[5,-164],[2,-69],[2,-84],[1,-34],[1,-59],[1,-23],[3,-121],[3,-76],[6,-253],[5,-194],[66,-3],[27,-2],[44,-3],[139,61],[39,16],[125,9],[85,4],[48,3],[67,3],[62,4],[85,4],[21,7],[20,-4],[41,1],[64,5],[134,6],[33,2],[21,1],[55,4],[18,1],[70,8],[28,3],[126,2],[42,0],[243,4]],[[35386,39433],[-5,-303],[-1,-60],[-1,-80],[-4,-186],[7,-475],[0,-36],[0,-17],[0,-5],[0,-53],[0,-16],[0,-25],[0,-63],[0,-104],[0,-136],[0,-65],[-1,-130],[0,-102],[0,-32],[0,-22],[0,-25],[-1,-157],[0,-92],[-1,-102],[-1,-201],[-1,-254],[-2,-30],[-1,-32],[1,-43],[0,-32],[-1,-25],[3,-60],[-1,-24],[0,-23],[0,-67],[0,-32],[0,-58],[-1,-28],[0,-16],[0,-65],[0,-9],[-1,-54],[0,-10],[0,-27],[0,-24],[0,-12],[1,-19],[2,-59],[0,-53],[0,-217],[-1,-360],[0,-104],[0,-204],[0,-36],[0,-90],[0,-2],[-1,-58],[0,-86],[0,-111],[0,-90],[0,-78],[0,-102],[0,-114],[0,-49],[-1,-53],[0,-224],[0,-24],[0,-7],[0,-62],[0,-51],[5,-245],[-3,-69],[1,-186]],[[35377,33268],[-1877,0],[-34,0],[-129,0],[-48,0],[-4672,0],[-55,0],[-1303,0],[-29,-1],[-1721,-58],[-51,1]],[[25458,33210],[3,151],[2,94],[13,514],[7,296],[2,46],[1,50],[0,1],[2,71],[4,162],[1,46],[2,75],[2,93],[2,75],[8,331],[8,321],[2,101],[2,73],[0,98],[3,230],[7,230],[3,62],[0,59],[1,27],[2,52],[0,8],[6,204],[3,133],[2,52],[4,158],[1,45],[1,39],[3,116],[2,34],[1,26],[2,49],[0,41],[5,151],[2,81],[3,101],[1,61],[1,33],[4,110],[5,149],[5,175],[4,191],[2,75],[3,118],[2,70],[0,45],[5,71],[5,119],[5,146],[4,108],[3,117],[0,27],[5,179],[4,153],[10,320],[3,101],[4,157],[1,19],[1,36],[2,62],[1,25],[1,61],[1,37],[1,28],[0,12],[4,122],[1,29],[0,13],[2,60],[1,52],[3,96],[11,424],[1,34],[0,26],[5,203],[3,108],[2,96],[0,19],[1,16],[2,71],[5,203],[3,98],[0,27],[0,4],[20,-1],[43,0],[1,45],[12,333],[0,55],[3,91],[2,45],[0,6],[0,36],[2,107],[3,115],[4,149],[0,126],[0,4],[2,63],[1,24],[7,126],[0,21],[2,100],[0,40]],[[8879,45171],[-2,-331],[-1,-46],[1,-161],[1,-178],[0,-90],[-2,-30],[-2,-115],[0,-92],[1,-99],[0,-57],[0,-29],[0,-49],[0,-6],[-1,-27],[0,-23],[0,-46],[-1,-87],[0,-78],[-1,-224],[0,-1],[1,-248],[0,-159],[0,-81],[2,-636],[0,-23],[1,-253],[0,-63],[1,-370],[0,-22],[2,-85],[-1,-74],[0,-12],[0,-36],[0,-50],[1,-23],[0,-1],[1,-127],[0,-170],[0,-52],[0,-7],[1,-366],[0,-41],[1,-343],[0,-405],[0,-498],[0,-44],[1,-184],[1,-206],[0,-32],[0,-48],[2,-71],[0,-32],[1,-45],[0,-10],[1,-22],[0,-46],[0,-22],[1,-109],[0,-38],[-1,-125],[0,-2],[-1,-48],[0,-79],[0,-8],[0,-46],[1,-40],[0,-43],[2,-54],[1,-72],[0,-258],[0,-221],[2,-155],[0,-8],[-1,-67],[0,-30],[0,-34],[0,-94],[0,-17],[-1,-114],[1,-84],[0,-44],[0,-44],[0,-10],[0,-20],[1,-110],[1,-139],[1,-247],[0,-27],[0,-26],[2,-44],[0,-323],[0,-25],[1,-42],[-1,-335],[0,-117],[0,-121],[0,-122],[-3,-83],[-1,-61],[-1,-34],[-3,-228],[-4,-294],[-2,-136],[-2,-171],[-2,-107],[-1,-179],[-1,-15],[-1,-179],[-1,-83],[-3,-115]],[[8872,33268],[-1057,-9],[-179,-2],[-1900,-16],[-434,-4],[-1338,-11],[-48,0],[-1261,-11],[-9,0],[-43,0],[-84,-1],[-535,-5],[-52,3],[-152,9],[-672,40],[-49,3],[-376,22],[-93,-40],[-32,0],[-57,1],[-19,0],[-15,0],[-36,0],[-32,0],[-235,-1],[-37,0],[-113,-1],[0,27],[0,417],[0,8],[0,21],[-1,2177],[0,246],[0,59],[0,391],[-1,1789],[0,182],[0,86],[0,216],[0,285],[0,41],[0,39]],[[39758,39529],[-1,-98],[-1,-43],[-2,-69],[2,-155],[1,-78],[2,-167],[1,-98],[0,-17],[-4,-31],[-43,-45],[-22,-25],[-45,-56],[-35,-39],[-34,-38],[-1,-1],[-74,-87],[-34,-40],[-74,97],[-34,-1],[-138,-3],[-46,-1],[-202,-4],[-46,-1],[-9,-1],[-1,25],[1,84],[-1,129],[-93,-4],[-34,0],[-150,-4],[-61,2],[-200,-3],[-14,3],[-9,0],[-32,-1],[0,45],[-1,89],[-5,282],[-1,89],[-4,228],[-1,100],[-1,16],[0,23],[-3,79],[0,23],[0,37],[-141,6],[-58,2],[-85,0],[-79,0],[-30,5],[-35,-3],[-23,-2],[-19,2],[-13,0],[-38,1],[-35,-1],[-18,3],[-42,2],[-30,-1],[-38,-1],[-45,0],[-53,-1],[-97,2],[-55,-5],[-73,0],[-92,-1],[-36,-2],[-56,-4],[-26,1],[-35,-1],[-24,0],[-67,-2],[-36,0],[-22,-4],[-1,0],[-20,-4],[-15,1],[-4,1],[-20,-6],[-20,2],[-44,-4],[-17,-1],[-39,-7],[-200,-19],[-16,-2],[-217,-18],[-93,-8],[-101,-9],[-64,-6],[-135,-11],[-26,-2],[-21,-2],[-114,-10],[-233,-20],[-42,-4],[-17,-1],[-7,-1],[-26,-2],[-18,-1],[-9,-1],[-2,-116],[-1,-82]],[[18389,44798],[2,-305],[0,-115],[0,-43],[-6,-90],[7,-106],[0,-25],[-1,-216],[1,-239],[0,-144],[-1,-27],[0,-66],[0,-156],[0,-32],[0,-1],[1,-98],[2,-204],[-2,-509],[-1,-170],[0,-35],[0,-73],[0,-65],[0,-219],[0,-291],[-1,-91],[-3,-205],[0,-54],[0,-16],[0,-30],[-2,-176],[-1,-37],[0,-69],[0,-41],[0,-191],[1,-48],[0,-59],[-1,-39],[0,-92],[0,-34],[0,-219],[0,-90],[0,-58],[0,-132],[1,-564],[0,-43],[0,-232],[0,-92],[0,-153],[0,-81],[1,-77],[0,-34],[0,-1],[-1,-55],[0,-13],[0,-11],[-2,-135],[2,-157],[0,-42],[1,-61],[0,-42],[0,-23],[0,-8],[1,-15],[0,-23],[0,-28],[0,-19],[-2,-271],[1,-53],[-1,-116],[2,-34],[0,-28],[2,-81],[-1,-80],[0,-64],[-1,-51],[0,-26],[0,-48],[1,-205],[0,-51],[1,-79],[-1,-30],[0,-61],[0,-34],[1,-111],[0,-58],[0,-119],[1,-227],[1,-114],[0,-22],[0,-78],[2,-238],[1,-147],[0,-79],[0,-46],[-1,-44],[-1,-195],[0,-27],[0,-46],[-1,-36],[1,-169],[1,-187],[0,-15],[3,-75],[1,-34],[-1,-66],[0,-2],[-1,-121],[2,-268],[0,-141],[0,-116],[1,-126],[-2,-56],[0,-201],[1,-114],[0,-53],[0,-23],[11,-45]],[[18408,33268],[-48,0],[-3,0],[-17,1],[-5,0],[-435,2],[-2,0],[-50,1],[-724,4],[-1229,-24],[-131,-3],[-52,-1],[-27,-1],[-149,22],[-973,-5],[-67,-4],[-44,-3],[-43,-2],[-328,-20],[-337,-26],[-2329,0],[-741,0],[-41,0],[-181,7],[-89,3],[-112,3],[-200,7],[-201,7],[-933,32],[-45,0]],[[25458,33210],[-1389,14],[-45,0],[-91,1],[-135,2],[-1503,15],[-1411,14],[-12,0],[-1152,12],[-38,0],[-522,0],[-252,0],[-418,0],[-82,0]],[[67278,41126],[26,-18],[38,-27],[6,-3],[19,-11],[105,-73],[-98,-230],[-38,-89],[-5,-12],[-3,-8],[-37,-87],[-17,-40],[0,-1],[-28,-66],[-300,-706],[-31,-75],[-51,-120],[-31,-75],[-13,-29],[-18,-43],[-54,-129],[-8,-19],[-171,-406],[-22,-55],[-94,-221],[-53,-124],[-41,-99],[-267,-632],[163,-110],[134,-91],[180,-120],[50,-27],[29,-19],[280,-184],[69,-45],[128,-84],[49,-33]],[[67174,37015],[-296,-242],[-19,-16],[-50,-39],[-28,-23],[-76,-62],[-17,-14],[-18,-14],[-29,-24],[-33,-26],[-15,-13],[-24,-22],[-67,-42],[-54,6],[-49,4],[-187,20],[-40,4],[-111,-213],[-40,-77],[-49,-96],[-19,-36],[-27,-51],[-40,-80],[-164,-132],[-2,-2],[-424,-342],[-262,-211],[-46,-41],[-178,-143],[-28,-22],[0,-1],[-39,-31],[-334,-269],[-243,-196],[-31,-25],[-136,-109],[-309,-250],[-170,-136],[-113,-98],[-172,-137],[-15,-12],[-207,-169]],[[63013,33633],[-84,-68],[-20,-17],[-154,-124],[-154,-125],[-33,-26],[-74,-62],[-88,-72],[-107,-83],[-86,-65],[-34,-30],[-54,-38],[-14,-8],[-11,-13],[-116,-89],[-12,-10],[-19,-14],[-61,-47],[-67,-52],[-76,-58],[-65,-51],[-64,-48],[-19,-15],[-1,-1],[-35,-26],[-99,-77],[-14,-11],[-52,-41],[-3,-2],[-23,-18],[-19,-14],[-16,-12],[-1,0],[-94,-74],[-99,-79],[-16,-13],[-31,-24],[-30,-24],[-132,-105],[-138,-110],[-111,-90],[-14,-11],[-69,-56],[-50,-40],[-55,-44],[-72,-56],[-108,-87],[-45,-36],[-30,-25],[-25,-21],[-1,0],[-20,-16],[-126,-100],[-51,-40],[-125,-97],[-27,-22],[-34,-26],[-141,-112],[-28,-21],[-42,-34],[-169,-133],[-34,-28],[-168,-130],[-48,-37],[-31,-25],[-68,-52],[-52,-41],[-25,-20],[-43,-34],[-168,-134],[-155,-126],[-75,-60],[-50,-41],[-35,-27],[-22,-36],[-18,-29]],[[58463,30000],[-29,-4],[-33,-46],[-52,-41],[-35,-29],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-3,0],[-1,0],[-50,5],[-1,0],[-2,0],[-2,1],[-2,1],[-45,21],[-2,1],[-2,1],[-2,2],[-2,2],[-1,1],[-33,38],[-46,124],[0,2],[-1,2],[-15,68],[0,2],[-1,4],[0,4],[-6,50],[0,3],[0,4],[0,4],[0,4],[0,4],[9,119],[0,5],[-3,7],[-2,6],[-2,4],[-1,3],[-1,3],[-1,4],[0,1],[-1,4],[-28,28],[-34,9],[-17,-10],[-12,-25],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[0,-2],[-10,-75],[0,-2],[-1,-4],[0,-4],[-1,-3],[0,-1],[-22,-75],[-1,-3],[-1,-4],[-1,-3],[-2,-3],[-1,-3],[-2,-2],[-2,-3],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-30,-18],[0,-1],[-2,-1],[-3,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-25,2],[-1,0],[-2,1],[-2,0],[-2,1],[-3,1],[-2,2],[-2,1],[-2,2],[-2,2],[0,1],[-17,21],[-1,1],[-2,3],[-2,2],[-1,3],[-2,3],[-1,3],[-1,4],[-1,3],[-3,11],[-9,26],[-7,21],[-24,34],[-31,28],[-38,19],[-30,10],[-10,-2],[-1,0],[-2,0],[-37,0],[-23,-8],[-34,-15],[-44,-31],[-20,-17],[-18,-35],[-25,-91],[0,-1],[-1,-3],[-1,-4],[-2,-3],[-1,-3],[-2,-3],[-22,-40],[-2,-3],[-2,-2],[-2,-2],[0,-1],[-38,5],[-30,22],[-41,30],[-6,10],[-16,30],[-47,97],[-54,39],[-6,1],[-9,2],[-6,1],[-4,-3],[-19,-16],[-9,-7],[-8,-12],[-51,-69],[-17,-5],[-7,-2],[-26,-8],[-43,6],[-15,3],[-10,1],[-43,53],[-14,30],[-20,75],[5,40],[60,113],[6,20],[-1,28],[-39,130],[-41,35],[-77,65],[-4,3],[-11,5],[-7,7],[-8,12],[-4,8],[-3,17],[-2,80],[1,37],[6,32],[11,44],[18,42],[40,83],[-1,91],[0,10],[-26,67],[-28,118],[-6,15],[-21,67],[-2,11],[3,80],[0,4],[0,11],[0,4],[-1,2],[-4,92],[-1,2],[0,4],[0,1],[-2,15],[0,2],[-1,4],[-1,3],[0,3],[-7,26],[-1,1],[-1,4],[-1,3],[-1,3],[-1,2],[-9,19],[-11,21],[-52,95],[-2,2],[-2,2],[-16,11],[-1,1],[-2,1],[-2,1],[-35,12],[-11,7],[-6,5],[-6,6],[-10,15],[-25,41],[-15,41],[-5,34],[4,5],[3,64],[0,12],[-17,8],[-14,5],[-23,-7],[-29,-14],[-9,-19],[-9,-40],[-11,-12],[-3,-3],[-17,-19],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-1,0],[-20,-9],[-1,0],[-3,-1],[-2,0],[-2,0],[-1,0],[-42,1],[-2,0],[-2,0],[-2,1],[-2,1],[-2,1],[-32,18],[-2,2],[-2,1],[-2,2],[-2,2],[-2,3],[-22,29],[-1,3],[-2,2],[-2,3],[-1,3],[0,1],[-31,73],[-1,2],[0,2],[-24,68],[-1,1],[-1,4],[-1,3],[0,2],[-8,37],[0,2],[-1,3],[-3,20],[-17,30],[-17,15],[-33,28],[-1,0],[-2,2],[-2,2],[-1,2],[-2,3],[-2,2],[-1,3],[-2,3],[-1,3],[-1,4],[-1,1],[-7,22],[-5,12],[-3,3],[-29,18],[-52,16],[-30,32],[-17,26],[-14,28],[-1,5],[-8,26],[-8,28],[3,28],[1,10],[1,93],[8,28],[16,61],[9,37],[0,2],[-8,20],[-1,2],[-1,3],[-15,46],[0,1],[-16,50],[-37,40],[-43,18],[0,1],[-49,22],[-1,0],[-2,1],[-2,1],[0,1],[-24,18],[-2,2],[-2,1],[-2,2],[0,1],[-36,43],[-1,0],[-13,16],[-5,3],[-28,14],[-13,0]],[[55650,33268],[-1,53],[1,3],[0,1],[-1,2],[-24,70],[-6,12],[-8,6],[-2,0],[-3,0],[-2,1],[-5,-1],[-4,0],[-9,-5],[-8,-7],[-21,-23],[-1,-2],[-1,-1],[-26,-24],[-1,-1],[-43,-36],[-2,-1],[-1,-1],[-22,-14],[-1,0],[-2,-1],[-2,-1],[-31,-11],[-3,-1],[-2,0],[-2,0],[-8,0],[-2,0],[-1,0],[-12,2],[-1,0],[-1,0],[-21,6],[-1,1],[-2,0],[-2,2],[-2,1],[-2,2],[-1,0],[-26,24],[-1,1],[-2,2],[-1,2],[-2,3],[-2,2],[-18,31],[-8,9],[-28,6],[-2,1],[-1,0],[-27,10],[-2,1],[-2,1],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-1,1],[-31,46],[-1,1],[-2,3],[-1,3],[-1,1],[-7,15],[-22,48],[-15,31],[-3,8],[-3,6],[-5,11],[-45,95],[0,2],[-2,3],[-1,3],[-9,28],[0,1],[-13,38],[-1,3],[0,1],[-5,21],[-1,2],[-1,4],[-29,154],[-16,76],[-32,72],[-1,3],[-9,11],[-4,1],[-5,1],[-12,9],[-11,12],[-36,70],[1,14],[0,2],[1,11],[8,21],[5,29],[0,1],[0,14],[-33,179],[3,9],[2,22],[1,6],[5,33],[0,22],[0,8],[0,32],[0,13],[1,21],[0,36],[1,59],[0,24],[0,39],[1,44],[1,169],[2,145],[3,163],[2,141],[7,349],[5,246],[1,135],[2,69],[2,52],[4,185],[2,83],[1,37],[0,29],[2,180],[3,181],[2,106],[2,96],[0,26],[1,49],[1,30],[1,32],[3,61],[0,18],[-2,53],[1,39],[1,87]],[[79251,34370],[-34,1],[-38,0],[-91,1],[-41,2],[-67,2],[-17,0],[-22,0],[-28,-523],[-9,-178],[-3,-56],[-2,-38],[-8,-158],[-3,-68],[-2,-82],[-17,-489],[-43,10],[-49,12],[-67,16],[-20,5],[-72,14],[-50,10],[-65,16],[-245,66],[-136,38],[-173,45],[-255,67],[-57,17],[-53,13],[-1,1],[-167,46],[-194,57],[-29,9],[-105,31],[-60,17],[-44,7],[-6,1],[-43,11],[-80,20],[-74,20],[-71,17],[-52,14],[-15,4],[-28,6],[-16,4],[-17,5],[-20,6],[-29,11],[-33,23],[-23,17],[-14,9],[-15,11],[-13,9],[-40,28],[-13,9],[-26,18],[-46,34],[-38,27],[-19,13],[-12,8],[-18,12],[0,1],[-35,25],[-25,18],[-25,18],[-38,26],[-45,33],[-30,21],[-48,32],[-3,3],[-45,29],[-336,222],[-37,24],[-24,15],[-101,66],[-30,19],[-68,42],[-3,2],[-41,25],[-20,13],[-27,17],[-45,27],[-14,10],[-36,22],[-263,173],[-37,25],[-1,0],[-68,46],[-18,11],[-84,53],[-19,13],[-30,20],[-51,34],[-15,11],[-14,8],[-19,11],[-12,7],[-16,11],[-26,14],[-123,80],[-139,89],[-8,5],[-94,61],[-56,32],[-21,-19],[-78,48],[-19,-98],[-26,9],[-31,10],[-100,32],[-1,0]],[[73778,35014],[0,6],[4,35],[2,23],[31,191],[8,28],[4,14],[13,71],[1,14],[5,39],[1,8],[11,89],[3,30],[1,18],[5,51],[8,43],[6,31],[18,48],[2,6],[13,37],[40,145],[5,15],[39,89],[8,19],[7,15],[4,8]],[[74017,36087],[10,26],[8,20],[4,12],[3,10],[8,35],[8,25],[9,23],[9,19],[9,18],[8,20],[8,19],[8,19],[8,20],[9,25],[8,31],[1,3],[4,19],[9,32],[1,21],[0,13],[6,23],[3,11],[2,9],[5,22],[6,31],[3,21],[0,4],[2,5],[3,16],[2,3],[8,17],[14,28],[9,18],[14,28],[7,21],[6,31],[4,31],[-2,29],[5,42],[-4,31],[-1,24],[5,25],[8,21],[11,20],[14,14],[14,7],[21,4],[22,-1],[16,-3],[20,9],[2,3],[14,18],[13,19],[11,13],[13,11],[13,6],[19,5],[17,9],[27,32],[106,150],[3,5],[64,113],[47,97],[18,80],[5,21],[6,27],[23,126],[7,72],[2,23],[9,41],[-1,29],[-1,11],[-2,28],[-9,69],[-9,102],[-1,4],[11,64],[1,11],[15,84],[3,9],[9,30],[5,18],[75,116],[43,63],[42,80],[33,44],[52,38],[41,-5],[28,13],[22,22],[29,29],[13,14],[17,22],[17,16],[24,5],[16,0],[40,14],[75,44],[43,62],[20,37],[35,66],[31,52],[17,36],[25,59],[16,46],[18,70],[24,113],[10,52],[3,46],[3,35],[2,42],[1,42],[2,26],[1,42],[1,4],[1,39],[5,39],[7,34],[4,47],[3,35],[6,42],[5,26],[1,27],[0,1],[0,31],[-2,31],[-1,8],[-3,23],[-8,29],[-6,22],[-3,40],[-2,29],[-1,8],[-2,20],[-2,29],[-1,24],[-6,24],[-2,6],[-8,26],[3,31],[1,7],[6,20],[7,22],[7,28],[0,52],[-4,31],[-3,36],[-4,30],[-4,17],[-2,8],[-7,25],[-15,50],[-6,44],[-10,47],[-8,52],[-5,35],[-3,24],[-4,31],[-7,31],[-5,28],[-7,31],[-4,12],[-11,28],[-14,29],[-5,13],[-5,10],[-5,27],[9,28],[10,32],[8,20],[4,9],[4,27],[0,7],[0,33],[-1,38],[-5,42],[-6,57],[-4,39],[-11,30],[-1,3],[-20,53],[0,46],[2,39],[3,34],[3,27],[3,23],[4,36],[5,34],[7,28],[9,28],[21,62],[8,25],[12,42],[5,24],[5,26],[4,23],[6,36],[8,55],[6,44],[6,39],[5,42],[18,69],[42,194],[14,64],[10,44],[3,15],[7,25],[7,35],[4,21],[7,34],[5,31],[3,22],[5,31],[3,26],[2,28],[2,29],[1,39],[3,47],[1,26],[1,24],[1,29],[-2,26],[0,39],[0,35],[-3,35],[-14,9],[-12,9],[-7,23],[9,17],[-5,21],[-12,23],[-7,26],[-6,27],[-2,26],[1,25],[11,13],[14,-16],[10,16],[-8,19],[-10,14],[-12,14],[-15,8],[-13,6],[-21,4],[-23,7]],[[81077,44555],[-45,-221],[-10,-35],[0,-1],[-5,-24],[-22,-113],[-39,-198],[-9,-29],[-7,-44],[-17,-76],[-39,-183],[-26,-123],[-60,-279],[-7,-43],[-1,-5],[-8,-37],[-7,-30],[-10,-48],[-16,-78],[0,-1],[-8,-34],[-37,-179],[-5,-24],[-7,-32],[-8,-39],[-32,-149],[-5,-26],[-26,-121],[-25,-120],[-13,-58],[-4,-22],[-9,-42],[-8,-39],[-9,-41],[-7,-34],[-24,-113],[-3,-13],[-12,-54],[-6,-30],[-13,-66],[-20,-91],[-20,-90],[-10,-47],[-33,-156],[-7,-32],[-57,-274],[-5,-22],[-3,-16],[-3,-11],[-1,-9],[-6,-25],[-1,-7],[-21,-100],[-5,-23],[-28,-136],[-25,-115],[-9,-44],[-3,-14],[-151,-716],[-20,-98],[-16,-73],[-40,-191],[-73,-348],[-58,-276],[-7,-33],[-25,-115],[-9,-46],[-35,-169],[-1,-1],[-8,-37],[-4,-22],[-7,-34],[-7,-32],[-8,-39],[-2,-10],[-37,-173],[-8,-39],[-39,-189],[-20,-94],[-14,-67],[-17,-80],[-37,-177],[-6,-26],[-54,-260],[-12,-56],[-11,-54],[-3,-14],[-14,-67],[-11,-48],[-14,-69],[-28,-134],[-6,-26],[-8,-38],[-35,-168],[-25,-124],[-9,-43],[-10,-49],[-7,-32],[-36,-176],[-14,-72],[-6,-30],[-12,-58],[-19,-94],[-16,-74],[-15,-63],[-106,-512],[0,-41],[16,-91],[41,-226],[4,-23],[45,-259],[6,-26],[28,-157]],[[74017,36087],[0,1],[-77,29],[-14,4],[-1,0],[-14,11],[-25,25],[-52,51],[-13,12],[-4,4],[-10,10],[-4,4],[-54,54],[-15,15],[-15,15],[-11,12],[-19,18],[-84,85],[-13,13],[-34,33],[-47,47],[-83,83],[0,1],[-22,22],[-27,25],[-45,46],[-29,28],[-14,14],[-18,18],[-43,43],[-37,37],[-100,100],[-72,72],[-6,6],[-26,26],[-56,57],[-1,0],[-39,42],[-3,4],[-4,6],[-25,22],[-4,5],[-11,-217],[-4,-84],[-9,-2],[-29,-6],[-36,-2],[-2,-1],[-20,-2],[-28,-4],[-57,-8],[-20,0],[-13,0],[-55,-3],[-21,18],[-201,165],[-252,-1002],[-20,-82],[-8,-31],[-137,-517],[-86,12],[-93,12],[-22,3],[-421,58],[-28,4],[-373,48],[-192,25],[-3,0],[-667,88],[-83,11],[-235,35],[-279,36],[-70,10],[-44,6],[-1,0],[-73,10],[-267,34],[-193,128],[-21,14],[-144,96],[-152,99],[-12,8],[-19,13],[-246,172],[-60,38],[-494,327],[0,1],[-15,9],[-35,23],[-188,125],[-97,64],[-15,10],[-116,77],[-16,10]],[[55650,33268],[-390,0],[-1123,-27],[-1298,4],[-267,1],[-48,0],[-1766,6],[-69,1],[-28,0],[-57,0],[-58,0],[-40,0],[-234,1],[-59,0],[-1205,4],[-829,3],[-603,2],[-53,0],[-1270,5]],[[46253,33268],[0,221],[-5,396],[-34,885],[-3,81],[-4,95],[-2,70],[-14,374],[-4,120],[-61,1720],[-1,22],[-3,89],[-1,37],[180,13],[189,14],[-3,150],[31,0],[-1,63],[-3,199],[-18,0],[0,54],[-1,111],[52,4],[-3,119],[22,1],[0,143],[0,58],[0,39],[-1,25],[-42,0],[-3,96],[-23,0],[-4,121],[-4,87],[-29,0],[-14,0],[-4,119],[-69,-2],[-1,61],[-3,114],[6,0],[0,2],[53,3],[34,2],[43,4],[66,3],[-7,147],[-20,1],[-8,156],[-48,-2],[-6,156],[-53,-3],[-110,-5],[-3,64],[-2,72],[-3,60],[-24,1],[-44,1],[1,136],[8,1],[43,1],[19,1],[28,0],[0,27],[-4,189],[-31,-2],[-1,157],[-58,-1],[-2,185],[-76,-3],[-1,175],[-49,1],[-5,236],[49,1],[45,2],[-6,169],[-2,52],[-19,0],[0,24],[-5,139],[-1,57],[-34,0],[1,127],[0,29],[0,58],[-1,3],[-19,1],[-80,1],[-2,175],[-1,39],[-2,87],[20,-1],[13,0],[-1,7],[-9,65],[-25,175],[-19,2],[0,70],[0,152],[-2,0],[-64,0],[-1,25],[-5,159]],[[46253,33268],[-80,0],[-339,0],[-16,0],[-84,0],[-2584,0],[-45,0],[-1487,0],[-611,0],[-39,0],[-31,0],[-24,0],[-20,0],[-114,0],[-142,0],[-51,0],[-54,0]],[[40532,33268],[1,9],[3,54],[-1,29],[-4,26],[-27,61],[-13,25],[5,25],[14,52],[34,127],[15,56],[20,74],[35,131],[38,143],[14,49],[61,230],[6,22],[7,25],[-46,265],[-8,51],[-14,75],[-9,48],[-2,10],[-3,16],[-15,82],[-2,7],[-13,73],[-12,149],[-6,76],[-2,23],[-20,273],[-17,220],[-4,80],[-3,61],[-6,123],[-2,36],[-40,101],[46,3],[16,1],[3,1],[-5,11],[-10,13],[-12,9],[-4,2],[-10,17],[-8,17],[-5,38],[5,11],[1,3],[11,25],[5,22],[-1,26],[-7,22],[-1,23],[-7,44],[-1,9],[-1,16],[-5,22],[-7,32],[-3,3],[-17,21],[-15,21],[-18,42],[2,28],[0,24],[13,5],[3,6],[0,12],[-7,17],[13,-1],[3,0],[14,0],[16,-1],[208,-7],[75,-3],[4,937],[0,75],[0,3],[0,52],[0,7],[4,968],[0,22],[1,31],[-7,142],[-11,250],[-2,49],[-1,23],[0,1],[-9,191],[-3,45]],[[40532,33268],[-5,0],[-453,0],[-375,0],[-1945,0],[-567,0],[-1020,0],[-2,0],[-294,0],[-468,0],[-26,0]],[[73778,35014],[-4,-35],[2,-42],[16,-23],[18,-19],[9,-20],[1,-16],[0,-12],[-8,-45],[-5,-32],[-5,-8],[-8,-14],[2,-30],[-7,-26],[-12,-13],[-12,-13],[-10,-13],[-11,-20],[-8,-42],[2,-75],[0,-27],[-2,-23],[-2,-25],[-5,-36],[-2,-32],[-1,-31],[-3,-26],[-3,-24],[-3,-31],[2,-36],[2,-24],[1,-34],[-6,-41],[-8,-23],[-14,-39],[-6,-25],[-4,-40],[0,-46],[-3,-23],[1,-25],[1,-23],[4,-31],[10,-22],[17,-42],[6,-27],[7,-34],[4,-46],[-1,-22],[0,-24],[-3,-33],[-5,-28],[-9,-46],[-5,-22],[-10,-45],[-8,-22],[-14,-67],[-9,-41],[-11,-43],[-9,-29],[1,-39],[1,-24],[0,-17],[0,-5],[-1,-5],[-7,-22],[-14,-42],[-6,-26],[-2,-28],[-3,-31],[-3,-28],[-6,-23],[-7,-34],[-5,-27],[-3,-26],[-4,-24],[-6,-35],[-7,-34],[-3,-14],[-2,-12],[-8,-39],[-3,-17],[-4,-24],[-3,-15],[-12,-58],[-10,-41],[-11,-55],[-5,-37],[-5,-36],[-8,-42],[-8,-34],[-9,-43],[-2,-41],[-6,-36],[-9,-61],[-5,-61],[-5,-89],[-2,-67],[-3,-46],[-3,-61],[-5,-56],[-9,-75],[-7,-64],[-4,-45],[-1,-32],[-2,-23],[-2,-19],[-4,-37],[-19,-23],[-11,-12],[-15,-27],[-4,-9],[-7,-14],[-10,-27],[-9,-30],[-1,-13],[-2,-22],[1,-23],[2,-25],[6,-25],[6,-26],[6,-45],[1,-29],[0,-3],[3,-26],[2,-25],[0,-5],[2,-6],[2,-12],[2,-11],[13,-33],[16,-29],[11,-24],[16,-31],[14,-27],[14,-25],[11,-32],[13,-27],[16,-27],[13,-27],[9,-15],[8,-11],[13,-27],[16,-29],[14,-24],[8,-18],[13,-34],[7,-20],[8,-27],[9,-24],[11,-25],[7,-26],[7,-28],[4,-19],[1,-6],[5,-37],[5,-22],[1,-23],[1,-20],[1,-5],[0,-23],[-1,-22],[-2,-22],[-10,-57],[-8,-36],[-12,-31],[-16,-32],[-14,-26],[-14,-25],[-15,-28],[-10,-27],[-2,-7],[-7,-22],[-5,-22],[-4,-26],[-2,-24],[-1,-17],[-2,-35],[-1,-23],[-1,-26],[-2,-37],[-2,-46],[0,-12],[-1,-26],[0,-32],[1,-12],[2,-25],[3,-35],[3,-41],[2,-32],[3,-46],[-2,-30],[-6,-37],[-3,-31],[-2,-33],[-1,-27],[3,-27],[7,-30],[1,-7],[1,-2],[3,-17],[3,-38],[-6,-44],[-5,-29],[-2,-24],[0,-39],[-1,-55],[-2,-25],[-1,-30],[-1,-27],[1,-31],[0,-2],[1,-24],[0,-15],[-10,-64],[-7,-43],[-5,-32],[-6,-35],[-3,-15],[1,-6],[0,-19],[-6,-55],[1,-29],[5,-229],[2,-54],[2,-53],[0,-19],[7,-27],[0,-1],[9,-21],[29,-63],[19,-42],[32,-67],[12,-27],[9,-19],[9,-27],[9,-35],[2,-32],[0,-11],[-10,-266],[-2,-61],[7,-35],[2,-32],[0,-73],[-2,-14],[-14,-139],[-6,-54],[-19,-173],[-2,-25],[-1,-5],[-6,-82],[-8,-106],[-2,-20],[-3,-42],[-1,-2],[-4,-46],[-3,-29],[3,-26],[2,-10],[6,-48],[21,-85],[8,-33],[1,-11],[9,-89],[3,-37],[-10,-104],[-14,-45],[-10,-32],[-2,-13],[-18,-120],[-4,-24],[-4,-29],[0,-124],[2,-40],[4,-82],[-16,-86],[-10,-170],[2,-58],[-21,-190],[-13,-131],[-14,-55],[7,-248],[-3,-107],[-2,-81],[-2,-91],[0,-134],[-9,-118]],[[73478,24199],[-21,-4],[-52,-10],[-4,-1],[-39,-6],[-102,-17],[-93,-16],[-36,-5],[-22,-4],[-1,0],[-46,-7],[-111,-17],[-58,-5],[-60,-14],[-261,-45],[-24,-4],[-87,-14],[-43,-7],[-19,-3],[-34,-5],[-102,-15],[-17,-3],[-28,-4],[-9,-1],[-4,2],[1,41],[1,37],[0,40],[-10,24],[-15,33],[-22,56],[-16,38],[-10,25],[-8,21],[-9,21],[-27,66],[-62,154],[-15,-11],[-17,-9],[-48,-28],[-2,0],[-70,-41],[-5,-2],[-13,-7],[-40,-21],[-4,-3],[-65,-39],[-9,26],[-17,46],[-13,35],[-11,27],[-6,19],[-20,14],[-33,25],[-112,46],[-75,31],[-141,59],[-25,11],[-20,7],[-81,33],[13,-94],[19,-131],[5,-38],[15,-108],[0,-1],[8,-60],[20,-134],[5,-40],[7,-27],[11,-101],[-27,10],[-115,38],[-48,19],[-27,9],[-67,22],[-65,21],[-59,24],[-25,9],[-69,23],[-62,18],[-19,8],[-47,16],[-14,9],[-54,14],[-35,12],[-13,5],[-27,-74],[-3,2],[-14,4],[-22,8],[-55,24],[-28,11],[-60,27],[-75,27],[-128,50],[-12,5],[-44,16],[-104,41],[-38,15],[-37,15],[-32,12],[-14,6],[-19,7],[-33,14],[-29,12],[-28,11],[-8,3],[-2,1],[-26,12],[3,76],[5,135],[4,150],[6,75],[0,93],[-178,76],[-3,-3],[-84,-79],[-5,-5],[-33,-42],[-2,-3],[-2,-5],[-18,-17],[-11,-2],[-17,5],[-2,1],[-8,-2],[-10,-5],[-30,-28],[-43,-57],[-16,-11],[-23,0],[-15,-38],[-18,-19],[-19,-8],[-13,9],[-16,11],[-18,-6],[-16,-15],[-26,-35],[-34,-20],[-16,-3],[-11,-14],[4,-43],[-2,-28],[-4,-8],[-4,-10],[-9,-38],[-16,-12],[-11,15],[-20,34],[-15,10],[-26,-14],[-11,-11],[-14,-37],[-1,-27],[-9,-26],[-16,-21],[-32,-42],[-10,-8],[-10,-4],[-19,-2],[-41,-8],[-8,-1],[-2,-5],[-45,-88],[-12,-16],[-11,-13],[-9,-5],[-63,-36],[-37,-11],[-2,-1],[-3,1],[-7,10],[-3,9],[-1,2],[-2,11],[-5,9],[-12,16],[-10,8],[-16,5],[-4,2],[-52,16],[-7,1],[-12,-5],[-1,-1],[-5,-6],[-7,-19],[-1,-1],[-6,-17],[-5,-22],[0,-1],[0,-1],[1,0],[10,-6],[3,-6],[-1,-9],[-3,-26],[-3,-4],[-16,-20],[0,-1],[-1,0],[-34,-8],[-13,5],[-1,0],[-4,-1],[-24,-4],[-2,0],[-4,1],[-30,4],[-1,0],[-13,1],[-46,-20]],[[68240,24221],[-2,4],[-4,3],[-2,4],[1,4],[15,14],[13,6],[12,23],[5,27],[-6,20],[-22,6],[-27,4],[-25,7],[-29,-16],[-15,13],[-17,36],[2,23],[-7,30],[1,24],[9,21],[-5,46],[-20,20],[-14,3],[-9,27],[-11,49],[10,25],[-21,42],[2,30],[-7,25],[-25,20],[-10,17],[-15,23],[-7,26],[-7,27],[0,26],[-9,28],[4,41],[-1,27],[-2,36],[-3,38],[-15,19],[-12,20],[-13,34],[-10,25],[-6,94],[-5,31],[-10,35],[-2,24],[-15,23],[-2,6],[-1,3],[-2,18],[-8,19],[-1,13],[-61,55],[-97,88],[-170,154],[-13,12],[-22,19],[-19,19],[-1,1],[-16,15],[-62,60],[-15,16],[-28,27],[-23,22],[-12,11],[-38,38],[-85,82],[-46,45],[-16,16],[-15,14],[-24,24],[-39,37],[-79,77],[-12,12],[-65,66],[-19,20],[-80,74],[-46,45],[-110,108],[-15,14],[-17,17],[-76,73],[-102,101],[-123,123],[-30,30],[-242,245],[-159,159],[-58,59],[-11,11],[-64,64],[-166,168],[57,107],[34,60],[47,81],[11,19],[0,1],[27,52],[83,158],[18,34],[111,213],[13,21],[35,61],[44,78],[52,90],[33,56],[13,22],[26,46],[12,23],[11,18],[12,26],[100,167],[82,144],[27,47],[45,77],[62,109],[90,159],[21,36],[8,15],[29,51],[12,20],[1,3],[33,68],[0,1],[14,29],[13,26],[69,144],[23,49],[266,561],[1,11],[-232,177],[-26,19],[-322,247],[-15,12],[-17,12],[-40,30],[-119,91],[-146,114],[-27,20],[-90,70],[-135,106],[-134,105],[-48,36],[-23,18],[-46,36],[-102,80],[-25,19],[-8,7],[-102,80],[-94,72],[-114,90],[-31,24],[-118,93],[-51,39],[-96,74],[-23,16],[-40,30],[-14,9],[-173,125],[-134,97],[-199,147],[-43,31],[-147,106],[-224,161],[-215,157],[-283,205],[-32,26],[-23,18],[-31,19],[-102,77],[-177,133],[-33,25],[-82,62]],[[79251,34370],[103,-1],[18,0],[-2,-56],[-10,-377],[-3,-105],[-2,-60],[0,-24],[-1,-43],[-1,-27],[-1,-47],[-3,-123],[-6,-234],[-26,-576],[-7,-152],[-8,-158],[-2,-34],[-5,-102],[0,-5],[-1,-19],[-3,-41],[-3,-30],[0,-1],[-33,-614],[-6,-237],[-4,-99],[-9,-244],[-3,-66],[0,-1],[-3,-51],[0,-1],[-10,-157],[-2,-27],[-5,-83],[0,-10],[-4,-62],[0,-3],[-4,-64],[-5,-67],[0,-11],[-14,-213],[1,-1],[-38,-761],[0,-1],[-2,-20],[-2,-30],[-23,-471],[-11,-201],[-3,-56],[0,-10],[-4,-55],[-12,-240],[-19,-366],[-5,-129],[0,-2],[-1,-60],[-2,-49],[-1,-51],[-3,-103],[-2,-24],[-5,-106],[-9,-206],[-8,-144],[-6,-124],[-22,-384],[-3,-60],[-4,-85],[-2,-39],[-13,-372],[-4,-96],[0,-9],[-15,-345],[-6,-138],[-1,-9],[-3,-69],[-9,-352],[-3,-110],[-6,-83],[-30,-524],[-1,-13],[-26,-448],[-2,-74],[-17,-336],[-3,-76],[-8,-129],[-8,-132],[-3,-38],[-11,-204]],[[78831,22810],[-69,-2],[-56,-4],[-97,-2],[-13,-1],[-138,-3],[-16,-1],[-244,-5],[-47,-9],[-48,-9],[-2,-1],[-22,-4],[-178,-31],[-9,-2],[-5,-1],[-10,-1],[-7,-1],[-117,-24],[-27,-5],[-33,-8],[-35,-6],[-23,-6],[-158,-40],[-16,-3],[-23,-6],[-21,-5],[-27,-6],[-21,-5],[-25,-6],[-63,-18],[-46,-11],[-176,-41],[-14,-4],[-25,-6],[-19,-5],[-14,-3],[-25,-5],[-46,-11],[-15,-3],[-7,-2],[-14,-3],[-13,-3],[-3,-1],[-39,-8],[-7,-1],[-10,-1],[-30,-7],[-199,-34],[-87,-15],[-14,-2],[-39,-6],[-263,-41],[-31,-7],[-191,-33],[-26,-4],[-17,-4],[-11,-2],[-15,-4],[-97,-22],[-23,-5],[-291,-43],[-1,0],[-53,-10],[-68,-11],[-20,-4],[-30,-4],[-15,-2],[-38,-6],[-16,-3],[-21,-3],[-32,-6],[-19,-4],[-14,-2],[-179,-29],[-5,-1],[-8,-2],[-23,-4],[-228,-42],[-47,-10],[-88,-8],[-54,-5],[-41,-3],[-293,-51],[-30,-5],[-21,-3],[-12,-2],[-63,-30],[-49,-10],[-48,-8],[-24,-5],[-19,-3],[-190,-33],[-60,-107],[-61,-110],[-9,-17],[-12,-22],[-16,-29],[-84,-151],[-262,-474],[-28,-50],[-2,-3],[-23,-42],[0,-1],[-32,-56],[-15,-28]],[[73121,20859],[-64,130],[-50,57],[-54,62],[-37,42],[-23,63],[-7,34],[0,38],[3,30],[4,23],[8,51],[2,29],[2,23],[10,169],[3,47],[-8,122],[-5,62],[13,84],[32,224],[-2,35],[-10,26],[-12,34],[-2,2],[-10,39],[-1,31],[3,39],[3,26],[3,43],[1,25],[-1,25],[1,30],[-4,69],[5,67],[0,5],[4,34],[3,30],[11,44],[14,56],[9,28],[12,31],[12,50],[12,58],[9,41],[9,47],[7,34],[4,22],[11,35],[11,29],[13,34],[17,35],[9,17],[6,13],[16,29],[4,8],[10,19],[14,27],[10,24],[11,23],[14,31],[7,14],[9,16],[18,32],[2,4],[12,21],[17,25],[23,30],[13,14],[25,23],[24,24],[7,6],[22,38],[14,25],[32,75],[17,54],[11,44],[8,30],[15,62],[8,37],[5,20],[2,13],[8,72],[3,76]],[[68240,24221],[-1,-1],[-3,-6],[-26,-40],[-1,-2],[-5,-8],[-4,0],[-12,-4],[-9,-3],[-29,-11],[-34,-23],[-7,-1],[-27,10],[-3,1],[-1,-6],[-12,-22],[-4,-5],[-18,-24],[-8,-10],[-9,-7],[-86,-33],[-22,-1],[-18,-15],[-3,-4],[-5,-6],[-5,-7],[-1,-3],[-4,-13],[-41,-95],[0,-1],[-53,-24],[-55,0],[0,9],[-1,1],[-5,0],[-3,-4],[-18,-38],[-14,-43],[0,-4],[5,-6],[23,-5],[1,-1],[4,-3],[5,-8],[1,-1],[1,-5],[-1,-14],[-2,-8],[-5,-5],[-7,-7],[-13,1],[-1,0],[-30,10],[-7,0],[-40,-1],[-25,-4],[-2,-27],[-9,-78],[-4,-7],[-11,-19],[-14,-25],[-22,-24],[-30,-18],[-5,-1],[-23,-4],[-22,-9],[-6,-27],[-56,-87],[-1,0],[-17,-43],[0,-1],[-8,-20],[-1,-9],[3,-6],[13,-30],[2,-8],[-1,-37],[-4,-14],[-36,-60],[-6,-5],[-1,0],[-6,-1],[-30,8],[-31,8],[-13,5],[-1,0],[-4,-6],[-8,-62],[29,-19],[-2,-27],[-1,-2],[-2,-14],[-4,-12],[0,-2],[-1,-1],[-54,-78],[-31,-26],[-1,-1],[-10,-6],[-7,-1],[-1,0],[-7,4],[-10,10],[-8,3],[-4,-3],[-15,-25],[2,-5],[4,-17],[1,-22],[-2,-8],[-20,-44],[-35,-57],[-60,-121],[-2,-12],[-13,-57],[-11,-18],[-25,-39],[-46,-43],[-38,-32],[0,-1],[-3,-5],[0,-5],[7,-21],[-1,-67],[-2,-2],[-3,-27],[-87,-9],[-19,0],[-19,-1],[-26,-3],[-37,-3],[-44,-3],[-71,-6],[-22,-1],[-40,0],[-46,-5],[-79,-6],[-66,-4],[-89,-7],[-40,-2],[-240,-18],[-28,-2],[-8,-1],[-9,0],[-42,-3],[-22,-1],[-27,-9],[-14,-5],[-2,0],[-141,-12],[-44,0],[-221,-16],[-37,-3],[-77,-3],[-147,-10],[-72,-4],[-16,-1],[-53,-3],[-228,-13],[-34,-2],[-15,-1],[-4,-1],[-19,-1],[-217,-14],[-106,-6],[-548,-35],[-42,-3],[-7,0],[-109,-7],[-133,-9],[-119,-7],[-29,-1],[-6,0],[-2,-11],[-13,-29],[-18,-12],[-14,-2],[-3,0],[-21,-3],[-17,-5],[-16,-4],[-14,-23],[-5,-27],[11,-30],[2,-5],[8,-18],[9,-24],[-2,-23],[-1,-17],[0,-8],[4,-22],[12,-17],[14,-10],[2,-1],[11,-13],[13,-10],[13,-19],[1,-54],[15,-36],[1,-2],[8,-29],[0,-3],[0,-32],[-4,-47],[-1,-13],[-1,-26],[1,0],[24,-43],[2,-3],[4,-23],[-18,-33],[0,-2],[-14,-12],[-36,-21],[-1,-1],[-27,-5],[-4,-1],[-17,-8],[1,-47],[1,-9],[5,-33],[8,-35],[-11,-49],[-4,-11],[-7,-23],[-11,-29],[-7,-36],[0,-81],[27,-23],[1,-1],[10,-21],[1,-1],[11,-32],[10,-45],[8,-25],[6,-41],[1,-36],[10,-26],[34,0],[12,-17],[1,-10],[3,-20],[-12,-25],[-26,-17],[-20,-30],[-3,-31],[7,-15],[4,-10],[8,-17]],[[63345,20547],[-5,-4],[-16,-14],[-20,-17],[-24,-1],[-33,0],[-47,19],[-53,41],[-45,6],[-55,-27],[-67,-55],[-65,-22],[-61,21],[-34,47],[-53,166],[0,43],[-7,77],[-41,73],[-42,40],[-49,8],[-40,-15],[-44,-41],[-16,-16],[-21,-21],[-1,-5],[-29,-42],[-16,-55],[-20,-56],[-28,-24],[-44,-5],[-52,15],[-39,41],[-102,132],[-48,53],[-55,46],[-23,20],[-46,2],[-56,-10],[-62,-36],[-32,-19],[-22,-5],[-45,-29],[-147,-39],[-77,25],[-14,52],[14,92],[22,44],[52,57],[8,41],[-13,51],[-18,48],[-57,37],[-94,24],[-42,31],[-18,75],[1,60],[-11,94],[-19,39],[-3,22],[-25,36],[-3,6],[-2,2],[-7,6],[-6,5],[-65,16],[-1,0],[-47,-6],[-3,1],[-23,9],[-33,27],[-32,43],[-35,34],[-39,19],[-79,12],[-26,-1],[-17,-6],[-9,-8],[-1,-1],[-23,-16],[-97,-91],[-44,-23],[-33,-5],[-23,-3],[-62,16],[-8,3],[-67,28],[-9,2],[-85,19],[-37,61],[-22,106],[0,1],[0,4],[1,3],[8,85],[0,1],[1,4],[0,2],[5,29],[0,2],[1,3],[15,64],[4,23],[4,44],[2,51],[-5,27],[-1,4],[0,3],[-11,83],[-41,42],[-10,11],[-4,4],[-2,1],[-2,2],[-2,1],[-2,2],[-2,0],[-2,1],[-34,8],[-2,1],[-2,0],[-3,0],[-1,-1],[-86,-17],[-14,-2],[-9,1],[-5,3],[-1,1],[-2,5],[-7,51],[0,17],[0,1],[0,4],[0,4],[0,4],[0,1],[0,2],[13,37],[9,28],[10,54],[-2,18],[-2,9],[-4,18],[-42,99],[-2,7],[0,1],[-1,4],[-1,3],[-2,3],[-1,3],[-2,3],[0,1],[-43,70],[-15,24],[-1,2],[-2,2],[-1,2],[-2,2],[-1,1],[-16,16],[-2,1],[-2,2],[-16,12],[-19,14],[-3,2],[-2,1],[-59,26],[-2,0],[-2,1],[-35,8],[-5,6],[-7,14],[-4,13],[33,92],[34,26],[21,30],[3,4],[6,12],[4,7],[4,22],[13,34],[-7,73],[-50,127],[-43,98],[-35,60],[-15,28],[-12,22],[-12,7],[-15,-9],[-5,-4],[-4,-4],[-32,-25],[-8,24],[-8,10],[-70,59],[-2,2],[-2,2],[-2,3],[-2,2],[-1,3],[-1,1],[-20,37],[0,1],[-1,1],[-20,43],[-1,2],[-1,3],[-1,2],[-10,27],[0,2],[-1,3],[-1,4],[-13,57],[-1,3],[0,1],[-11,62],[-11,58],[-4,11],[-15,17],[-12,12],[-1,0],[-2,3],[-1,1],[-14,17],[0,1],[-2,3],[-16,23],[-18,23],[-33,24],[-13,8],[-2,1],[-2,1],[-1,1],[-4,3],[-2,2],[-32,33],[-1,2],[-2,2],[-2,2],[-1,3],[-2,3],[-1,3],[-19,42],[-1,3],[-29,74],[-1,4],[-36,111],[-6,10],[-1,1],[-55,76],[-10,14],[0,8],[0,9],[1,22],[2,2],[0,4],[5,1],[18,6],[34,-1],[39,0],[28,18],[27,11],[1,1],[6,3],[5,2],[21,9],[0,3],[0,1],[-3,14],[-5,27],[0,1],[-1,2],[-1,4],[0,4],[0,4],[-1,4],[0,16],[0,9],[-1,12],[0,7],[0,4],[1,4],[1,8],[12,33],[9,22],[1,2],[2,3],[1,2],[2,2],[2,2],[16,14],[2,1],[2,2],[2,1],[1,0],[22,9],[2,1],[2,0],[2,1],[2,0],[2,0],[1,0],[11,-2],[7,-1],[1,0],[3,-1],[2,-1],[2,-1],[2,-1],[1,-1],[16,-13],[1,-1],[2,-2],[1,-1],[2,-2],[7,-8],[2,-1],[2,-2],[2,-2],[2,-2],[1,0],[4,-6],[11,-10],[9,-3],[2,0],[2,-1],[2,-1],[1,0],[9,-1],[14,4],[1,0],[2,5],[0,1],[-7,46],[0,3],[-10,74],[-11,47],[0,2],[-5,21],[0,2],[-1,4],[0,1],[-16,115],[0,2],[0,1],[-8,61],[-5,44],[-3,24],[-8,59],[0,1],[0,3],[0,4],[-1,4],[0,3],[1,28],[0,2],[0,4],[6,72],[0,240],[-6,44],[-12,43],[0,1],[-20,73],[-9,25],[-19,37],[-5,7],[-25,33],[-10,13],[-10,23],[-5,13],[-7,27],[7,40],[14,69],[1,1],[1,2],[1,1],[14,15],[1,1],[2,2],[4,4],[28,33],[7,11],[1,2],[2,3],[1,1],[4,5],[15,30],[1,4],[-3,35],[-4,48],[-6,47],[-1,11],[-37,113],[-7,27],[-13,53],[-28,53],[-41,55],[-19,17],[-19,25],[-13,15],[-2,3],[-15,30],[-9,43],[-2,6],[0,25],[8,35],[10,17],[17,11],[4,2],[35,21],[1,1],[2,2],[1,1],[14,10],[2,2],[2,1],[2,1],[2,0],[1,0],[2,1],[2,1],[2,1],[3,0],[2,0],[1,0],[18,-1],[1,0],[2,-1],[2,0],[81,-28],[11,2],[14,7],[4,2],[2,2],[-3,18],[-6,36],[-21,114],[-21,108],[-6,27],[-1,29],[1,5],[3,17],[-6,11],[-1,2],[-8,56],[-2,49],[2,51],[14,75],[11,56],[0,25],[0,4],[0,16],[-4,149],[-60,182],[-31,80],[-17,28],[-42,28],[-6,4],[-32,21],[-70,45],[-19,12],[-2,0],[-16,5],[-13,4],[-9,0],[-20,-7],[-18,-9],[-10,-11],[-10,-10],[-2,-2],[-2,-1],[-1,-1],[-21,-14],[-2,-1],[-2,-1],[-6,-3],[-2,-1],[-2,0],[-1,0],[-53,-11],[-1,-1],[-3,0],[-1,0],[-48,3],[-1,0],[-2,0],[-2,1],[-2,1],[-2,1],[-35,20],[-1,1],[-1,1],[-2,1],[-2,2],[-2,2],[-2,2],[-2,3],[-1,2],[-22,38],[-1,1],[-1,2],[-2,4],[-1,3],[-1,3],[-9,27],[-1,3],[-1,4],[-1,3],[0,4],[-1,4],[0,1],[-3,28],[0,3],[0,3],[0,4],[0,1],[0,96],[0,3],[3,92],[0,1],[0,4],[1,4],[0,2],[8,59],[0,2],[1,4],[1,3],[3,16],[4,15],[0,1],[1,3],[1,4],[1,3],[23,59],[1,3],[1,2],[5,10],[0,1],[2,2],[3,6],[0,1],[51,85],[1,2],[2,2],[0,1],[19,23],[1,2],[2,2],[2,2],[2,2],[2,1],[2,1],[1,1],[8,3],[1,0],[1,0],[20,7],[2,0],[2,1],[2,0],[2,0],[3,-1],[1,0],[15,-4],[1,-1],[2,-1],[2,-1],[2,-1],[2,-2],[1,0],[5,-5],[22,-8],[6,-2],[20,5],[17,7],[14,8],[10,11],[2,3],[2,2],[2,2],[2,2],[15,20],[22,93],[16,108],[0,44],[-3,20],[-9,6],[-24,3],[-28,-2],[-25,-10],[-69,-33],[-2,-1],[-2,-1],[-15,-3],[-19,-5],[-2,0],[-2,0],[-3,0],[-1,0],[-18,4],[-4,0],[-7,2],[-2,0],[-3,1],[-2,1],[-2,2],[-28,21],[-1,1],[-2,2],[-1,2],[-30,33],[-1,0],[-1,3],[-2,2],[-1,1],[-26,41],[-14,16],[-35,28],[-60,33],[-40,13],[-2,1],[-2,1],[-2,2],[-2,1],[-2,2],[-2,2],[-2,3],[-1,1],[-23,33],[0,1],[-2,3],[-2,3],[-1,3],[-1,3],[-1,3],[-2,4],[0,3],[-1,2],[-13,64],[-1,1],[0,4],[-1,4],[0,4],[0,4],[-1,4],[1,3],[1,38],[0,4],[0,4],[1,4],[0,2],[15,82],[7,38],[1,78],[-5,62],[-10,30],[-33,30],[-24,11],[-23,-1],[-25,-11],[-2,0],[-2,-1],[-2,-1],[-1,0],[-17,-1],[-14,-1],[-3,0],[-3,0],[-2,1],[-1,0],[-22,9],[-1,0],[-2,2],[-2,1],[-2,2],[-2,1],[-1,1],[-54,59],[-48,73],[-24,34]],[[73121,20859],[12,-34],[1,-3],[66,-185],[9,-20],[1,-2],[8,-31],[8,-27],[12,-31],[12,-25],[13,-21],[7,-11],[8,-12],[9,-15],[11,-28],[4,-10],[7,-23],[7,-22],[6,-21],[10,-52],[9,-21],[9,-18],[4,-21],[2,-6],[1,-14],[1,-7],[0,-2],[1,-26],[-1,-32],[2,-38],[4,-24],[7,-19],[12,-25],[15,-22],[16,-12],[16,-8],[13,-3],[21,-4],[21,-6],[21,-7],[13,-8],[3,-3],[8,-9],[7,-9],[10,-24],[6,-27],[0,-26],[-5,-30],[-11,-31],[-1,-4],[0,-1],[-8,-20],[-11,-36],[-1,-3],[-9,-36],[-4,-25],[-4,-27],[-2,-20],[-1,-9],[-6,-52],[-7,-25],[-8,-24],[-12,-31],[-12,-33],[-8,-29],[-9,-48],[-9,-61],[-9,-48],[-9,-68],[-6,-71],[-2,-77],[-1,-24],[0,-24],[-1,-36],[-1,-7],[-1,-25],[-3,-24],[-8,-32],[-4,-19],[-2,-8],[-9,-23],[-11,-28],[-9,-20],[-11,-23],[0,-2],[-11,-20],[-9,-17],[-13,-27],[-64,-129],[-13,-26],[-88,-178],[-17,-35],[-10,-11],[-52,-64]],[[73061,18254],[-12,-14],[-14,-15],[-4,-5],[-35,-49],[-1,-1],[-15,-15],[-66,-82],[-20,-23],[-34,-44],[-49,-62],[-50,-59],[-24,-29],[-109,-138],[-24,-29],[-24,-31],[-21,-23],[-8,-10],[-4,-4],[-539,-683],[-70,-88],[-8,-10],[-14,-18],[-272,-340],[-81,-102],[-16,-19],[-34,-43],[-69,-82],[-1,0],[-30,-44],[-111,-137],[-33,-44],[-66,-81],[-5,-6],[-36,-44],[-10,-14],[-53,-68],[-34,-42],[-87,-109],[-137,-170],[-196,-243],[-35,-39],[-25,-29],[-8,-21],[-16,-19],[-24,-29],[-12,-16],[-2,-3],[-59,-77],[-30,-39],[-91,-119],[-110,-142],[-21,-27],[-12,-15],[-22,-29],[-15,-16],[-12,-13],[-26,-34],[-6,-8],[-20,-29],[-87,-110],[-54,-91]],[[69958,14329],[-102,76],[-48,36],[-722,535],[-272,202],[-59,44],[-27,20],[-32,24],[-300,223],[-128,94],[-608,535],[-183,161],[-50,44],[-42,37],[-381,334],[-76,67],[-24,21],[-801,657],[-160,130],[-87,70],[-1502,1194],[-103,49],[-43,21],[-182,87],[23,26],[4,5],[35,37],[44,45],[32,41],[3,51],[-17,70],[-44,65],[-29,29],[-9,10],[-79,79],[-58,72],[-29,78],[-36,148],[-41,67],[-7,7],[-16,13],[-19,10],[-78,40],[-1,0],[-7,4],[-6,3],[-1,0],[-104,56],[-1,1],[-1,0],[-2,2],[-2,1],[-2,2],[-2,2],[-1,1],[-8,10],[-1,1],[-1,3],[-2,3],[-2,2],[-1,3],[-1,2],[-3,8],[-16,40],[-4,23],[-11,74],[-10,65],[13,30],[24,74],[1,23],[0,20],[0,2],[0,4],[1,3],[2,25],[0,1],[1,4],[0,4],[1,2],[16,77],[8,52],[1,39],[-5,33],[-4,16],[-5,10],[-11,18],[-10,15],[-17,16],[-17,12],[-17,8],[-4,1],[-3,-1],[-6,-4],[-26,-24],[-31,-12],[-15,-6],[-24,-19],[-43,-65]],[[73143,18270],[-36,-9],[-4,-1],[-15,-4],[-4,-1],[-23,-6],[-1,0]],[[73060,18249],[1,1],[0,4]],[[78831,22810],[-1,-19],[-7,-135],[-3,-67],[-1,-24],[-7,-129],[-2,-49],[-9,-160],[-1,-32],[-1,-17],[-1,-30],[-1,-18],[-1,-29],[-2,-41],[-2,-47],[-6,-144],[-3,-69],[-1,-39],[-1,-10],[-1,-28],[-2,-26],[-1,-22],[0,-2],[-1,-40],[-2,-23],[0,-3],[-2,-46],[-3,-48],[-1,-37],[-1,-45],[-3,-45],[-2,-52],[-2,-55],[-1,-30],[-1,-21],[0,-1],[0,-2],[0,-2],[-1,-30],[-1,-21],[0,-9],[-1,-25],[0,-20],[-2,-20],[0,-41],[-2,-28],[-1,-15],[-3,-55],[-3,-54],[-3,-60],[-3,-45],[-3,-54],[-2,-33],[-4,-50],[-1,-14],[-2,-38],[-4,-45],[-17,-247],[-3,-36],[-7,-100],[-4,-56],[-4,-34],[-7,-148],[-5,-100],[-1,-25],[0,-20],[-1,-33],[-1,-17],[-3,-81],[-8,-202],[-1,-23],[-2,-22],[-8,-110],[-4,-60]],[[78646,19252],[-196,-34],[-156,-28],[-6,-2],[-15,-2],[-16,-2],[-124,-23],[-24,-5],[-88,-17],[-32,-4],[-44,-6],[-180,-30],[-129,-21],[-50,-8],[-113,-18],[-8,-1],[-12,-1],[-34,-8],[-19,-3],[-162,-28],[-57,-10],[-2,0],[-12,-2],[-28,-5],[-81,-16],[-17,-2],[-13,-3],[-114,-23],[-99,-18],[-63,-11],[-291,-53],[-27,-4],[-15,-3],[-41,-7],[-15,-4],[-14,-3],[-18,-3],[-26,-4],[-14,-3],[-15,-2],[-18,-4],[-26,-5],[-2,0],[-55,-10],[-162,-29],[-63,-11],[-5,-1],[-79,-14],[-30,-6],[-49,-9],[-7,-1],[-9,-2],[-54,-11],[-50,-9],[-64,-11],[-34,-5],[-86,-18],[-31,-6],[-19,-3],[-99,-18],[-116,-19],[-7,-1],[-72,-13],[-29,-4],[-72,-12],[-40,-7],[-14,-5],[-51,-8],[-21,-3],[-34,-6],[-178,-29],[-67,-14],[-29,-4],[-84,-17],[-25,-5],[-29,-7],[-47,-6],[-6,-1],[-15,-3],[-42,-10],[-20,-4],[-21,-4],[-13,-1],[-14,-4],[-17,-5],[-21,-2],[-15,-2],[-90,-16],[-54,-10],[-42,-6],[-16,-4],[-19,3],[-31,-7],[-9,-2],[-14,-3],[-39,-7],[-29,-5],[-78,-14],[-6,-1],[-33,-6],[-26,-5],[-193,-34],[-65,-15],[-102,-17],[-20,-4],[-125,-22],[-37,-6],[-12,-3],[-7,-2],[-45,-10]],[[75828,8529],[-24,-35],[-55,43],[23,53],[14,69],[44,-48],[-2,-82]],[[77200,10599],[-11,56],[-2,11],[-11,80],[4,1],[36,7],[1,-1],[19,-24],[-1,-51],[-35,-79]],[[77200,10599],[-10,-126],[-24,-68],[-35,15],[-49,-14],[-36,-2],[-19,-31],[-12,-21],[-12,-4],[-34,-13],[-11,-42],[-5,-20],[-12,-31],[-11,-29],[-39,-53],[2,-52],[-9,-63],[-34,-43],[8,-87],[-7,1],[-23,6],[-34,-5],[-34,-32],[-33,-59],[6,67],[46,196],[11,56],[2,48],[0,1],[-22,-24],[-37,-55],[-16,-25],[-1,-1],[-9,-15],[-39,-58],[-5,-8],[-23,-15],[-10,-16],[-9,-15],[-20,-21],[-18,-20],[-26,7],[-26,-11],[-7,10],[-11,-10],[-69,-61],[-22,-43],[-27,-51],[-8,-70],[-10,-69],[-10,-48],[-39,-29],[-30,3],[-11,-16],[-25,-34],[-71,43],[-19,23],[-9,-11],[-41,6],[-6,-56],[10,-61],[14,-95],[-4,-23],[-209,-223],[-23,8],[-31,118],[-20,-9],[-57,-30],[-7,-31],[26,-55],[3,-6],[36,-74],[1,-23],[2,-62],[1,-25],[1,-19],[-67,-76],[-18,-20],[-16,-16],[-32,-54],[-27,-8],[-18,-73],[-12,-48],[-4,-3],[-24,-20],[-5,-21],[-3,-8],[-41,10],[-2,31],[-3,48],[-23,-24],[-16,-35],[-31,7],[-10,-6],[-12,-7]],[[75495,8571],[-13,6],[-18,8],[-13,4],[-12,6],[-15,7],[-10,5],[-17,9],[-18,8],[-18,8],[-4,2],[-21,7],[-15,6],[-14,9],[-15,4],[-17,9],[-15,7],[-16,7],[-17,5],[-4,2],[-10,5],[-19,9],[-25,12],[-1,0],[-16,7],[-25,12],[-2,-28],[-17,4],[-36,18],[-2,1],[-16,10],[-17,9],[-21,11],[-12,5],[-32,17],[-14,8],[-13,6],[-13,5],[-8,34],[-8,39],[5,31],[-10,40],[-13,50],[-3,26],[-26,2],[-13,0],[-6,26],[-16,12],[-12,8],[-21,13],[-16,12],[-12,-20],[-16,11],[-7,5],[-10,8],[9,19],[9,19],[10,20],[-11,-13],[-19,-1],[-14,-28],[13,-11],[-4,-22],[-13,-7],[-12,-7],[-8,-26],[-4,-24],[-9,-27],[-16,-3],[-5,-24],[-9,-17],[-11,6],[-8,4],[-13,9],[-26,7],[-12,7],[-17,9],[-13,6],[-35,18],[-26,13],[-15,9],[-20,11],[-28,13],[-5,2],[-9,4],[-23,11],[-27,14],[-15,7],[-17,13],[-10,4],[-28,13],[-43,23],[-13,6],[-48,28],[-1,1],[-18,10],[-17,4],[-15,9],[-18,11],[-27,13],[-22,10],[-24,12],[-6,3],[-26,14]],[[74021,9270],[8,87],[16,51],[16,71],[11,47],[11,73],[12,53],[5,38],[2,24],[7,43],[5,41],[7,47],[20,136],[15,83],[19,65],[22,72],[48,118],[20,89],[13,107],[9,48],[9,60],[28,215],[-1,67],[-1,67],[10,87],[3,25],[3,22],[21,151],[28,126],[5,28],[4,24],[8,42],[13,67],[14,107],[8,71],[1,22],[2,47],[10,82],[5,39],[19,141],[6,12],[17,32],[18,84],[2,59],[5,127],[8,50],[9,67],[6,53],[4,34],[5,34],[6,36],[0,3],[6,111],[9,71],[-20,1],[-20,17],[2,79],[-25,35],[-28,83],[-1,32],[-1,10],[20,33],[14,35],[-1,27],[-1,22],[-1,20],[3,85],[7,113],[13,99],[-4,80],[-6,74],[-2,28],[-2,27],[6,53],[10,100],[-2,39],[-2,31],[1,33],[1,51],[8,67],[2,56],[22,73],[2,5],[-15,45],[-19,59],[-2,38],[-3,44],[-24,54],[4,24],[10,54],[-9,78],[9,76],[-21,139],[-7,25],[-8,27],[-27,90],[-2,60],[-2,35],[1,50],[-4,49],[-27,24],[8,17],[11,24],[4,29],[1,12],[-43,-38],[-2,-2],[-69,-43],[-12,-23],[-26,-47],[-11,-15],[-16,-22],[-25,-44],[-38,-44],[-20,-44],[-23,-75],[-3,20],[-8,41],[-2,53],[4,36],[4,31],[-2,69],[-24,27],[-3,44],[5,66],[44,-19],[48,40],[28,50],[18,58],[9,47],[5,31],[4,67],[-32,72],[-29,64],[-31,30],[-36,30],[-15,12],[-18,20],[-24,27],[-28,30],[-24,21],[-17,14],[-31,54],[-7,17],[-16,39],[-33,63],[-45,51],[-34,39],[-8,9],[-7,18],[-9,19],[-5,-5],[-22,-18],[-6,39],[-2,16],[-2,17],[-2,3],[-17,27],[-18,28],[-21,37],[-38,-7],[-36,-9],[-28,9],[-19,36],[-30,-14],[-20,60],[-3,9],[-33,-16],[-34,17],[-9,21],[-10,27],[-8,35],[-8,36],[16,53],[-16,69],[-60,17],[-28,-30],[-44,11],[-30,41],[-2,30],[-1,26],[-1,52],[7,49],[6,46],[21,78],[37,46],[39,47],[20,34],[19,33],[16,26],[8,14],[29,35],[26,21],[31,-3],[40,-21],[-4,22],[-11,67],[34,30],[43,11],[9,59],[37,38],[24,38],[3,4],[2,59],[1,18],[-35,67],[-1,1],[-24,34],[15,44],[8,20],[-48,8],[-36,14],[-42,9],[2,-51],[-20,-9],[-9,-4],[-39,22],[-35,24],[-6,3],[-6,10],[-26,37],[-46,43],[-45,21],[-45,51],[-24,50],[-11,23],[-15,28],[-16,19],[-20,23],[-32,53],[-5,8],[-26,45],[-24,61],[2,21],[4,47]],[[78646,19252],[-5,-69],[-2,-39],[-5,-81],[-2,-28],[-2,-39],[0,-8],[-3,-41],[-11,-210],[-13,-178],[-2,-37],[-4,-76],[-1,-12],[-2,-37],[-2,-32],[-1,-26],[-5,-72],[-3,-49],[-1,-23],[2,-60],[1,-15],[1,-3],[6,-111],[1,-53],[0,-2],[-3,-29],[-8,-92],[-1,-10],[-14,-138],[1,-2],[31,-63],[46,-98],[51,-108],[183,-379],[11,-24],[3,-5],[0,-2],[5,-10],[7,-13],[74,-153],[12,-28],[57,-120],[39,-83],[91,-197],[123,-265],[19,-40],[25,-52],[12,-26],[8,-17],[65,-144],[-36,-29],[-16,-12],[-16,-16],[-44,-34],[-3,-3],[-30,-23],[-11,-7],[-10,-8],[-26,-20],[-77,-57],[-50,-40],[-17,-14],[-10,-7],[-19,-15],[-22,-16],[-16,-16],[-67,-55],[-14,-12],[-17,-13],[-12,-11],[-16,-13],[-8,-6],[-14,-10],[-123,-102],[-18,-14],[-35,-28],[-6,-5],[-136,-107],[-29,-23],[-17,-14],[-2,-2],[-31,-25],[-69,-56],[-23,-19],[-2,-1],[-13,-10],[-68,-54],[-93,-75],[-71,-56],[-21,-16],[-12,-10],[-60,-47],[-65,-47],[-12,-12],[-3,-3],[-22,-20],[-50,-39],[-24,-20],[-20,-15],[-15,-12],[-14,-11],[-53,-42],[-6,-4],[-16,-13],[-114,-87],[-26,-20],[-28,-23],[-17,-12],[-21,-17],[-26,-20],[-18,-14],[-17,-13],[-13,-10],[-25,-22],[-3,-3],[-46,-36],[-13,-10],[-100,-79],[-17,-14],[-22,-20],[-5,-3],[-62,-49],[-35,-27],[-17,-13],[-8,-8],[-1,0],[-21,-18],[-14,-12],[-27,-22],[-78,-62],[-29,-24],[-89,-74],[-43,-35],[-53,-45],[-29,-26],[-60,-42],[-21,-21],[-6,-6],[-24,-18],[-49,-39],[-37,-31],[-12,-8],[-1,-1],[-14,-12],[-171,-138],[-7,-7],[5,-13],[7,-16],[1,-3],[3,-6],[20,-48],[26,-62],[3,-9],[26,-41],[23,-37],[9,-19],[2,-5],[15,-35],[11,-26],[8,-18],[43,-97],[69,-154],[9,-20],[6,-13],[27,-59],[86,-183],[8,-18],[14,-30],[16,-29],[8,-16],[18,-40],[12,-27],[8,-20],[6,-13],[0,-1],[25,-51],[18,-38],[38,-85],[5,-12],[25,-51],[26,-54],[18,-35],[9,-22],[1,-3],[4,-10],[0,-3],[1,0],[0,-1],[1,-1],[7,-16],[19,-37],[27,-58],[2,-3],[9,-24],[11,-19],[30,-68],[12,-25],[0,-1],[9,-19],[7,-15],[17,-38],[2,-4],[4,-8],[7,-15],[20,-31],[11,-17],[11,-17],[1,-2],[3,-5],[6,-14],[12,-25],[9,-21],[9,-19],[13,-27],[0,-1],[9,-25],[-7,-39],[-7,-40],[-9,-34],[-11,-42],[-2,-7],[-6,-19],[-10,-41],[-8,-31],[-2,-10],[4,-30],[5,-32],[-1,-25],[0,-3],[0,-5],[-1,-36],[10,-33],[8,-18],[6,-17],[-17,4],[-41,-33],[-18,-49],[-23,-94],[6,-71],[17,-42],[11,-26],[38,-23]],[[73060,18249],[1,-24],[2,-82],[4,-15],[8,-32],[6,-60],[3,-27],[38,-44],[53,16],[43,-79],[21,-46],[17,-38],[27,-36],[-23,-21],[-27,1],[8,-36],[29,-10],[33,-21],[32,-18],[35,-26],[31,-31],[35,-37],[26,-49],[-4,-20],[-11,-54],[-33,-59],[-33,-41],[-50,-32],[-62,-41],[-15,-36],[-12,-30],[-13,-40],[-8,-29],[-2,-10],[-52,-153],[-6,-71],[9,-60],[-13,-77],[19,-124],[7,-43],[12,-77],[48,-15],[36,-45],[-70,-47],[1,-50],[-4,-170],[10,-44],[2,-7],[3,-14],[25,29],[30,-7],[27,-19],[55,-31],[-6,-89],[-17,-42],[12,-57],[8,-60],[-6,-86],[14,-128],[41,-1],[23,-42],[-12,-54],[-1,-9],[-5,-64],[2,-88],[21,-52],[7,-17],[8,-56],[36,4],[27,-83],[72,-74],[62,-65],[178,-209],[52,-98],[64,-144],[29,-64],[24,-51],[38,-121],[18,-22],[13,-46],[0,-19],[1,-45],[5,-39],[7,-57],[-3,-64],[-9,-101],[-18,-74],[-9,-36],[-6,-27],[-37,-89],[-6,-102],[-6,-74],[-5,-78],[-4,-59],[-3,-79],[-1,-63],[-1,-59],[4,-86],[-20,-55],[-14,-74],[19,-73],[-6,-79],[-38,-75],[-2,-17],[-3,-27],[-6,-51],[-2,-70],[-1,-43],[-1,-49],[5,-49],[2,-28],[5,-81],[7,-97],[8,-76],[8,-33],[6,-26],[2,-41],[6,-6],[16,-17],[34,-7],[92,-13],[-8,-19],[-22,-50],[19,-70],[0,-2],[20,-77],[10,-71],[4,-32],[2,-22],[9,-57],[1,-18],[2,-42],[-6,-38],[-7,-40],[-5,-98],[4,-28],[8,-50],[3,-63],[-7,-50],[-4,-121],[-163,142],[-67,59],[-96,84],[-134,117],[-43,33],[-104,78],[-503,379],[-44,34],[-43,31],[-308,233],[-32,24],[-397,299],[-349,263],[-787,593],[-46,35],[-4,3],[-104,78],[-61,46],[-595,449],[-36,31],[-235,205]],[[80233,3143],[9,-18],[6,1],[12,-97],[-4,2],[-4,2],[2,-10],[-82,38],[2,2],[-11,4],[31,55],[28,15],[3,1],[5,3],[3,2]],[[80522,3057],[-26,-57],[-6,-12],[-14,-31],[-33,-71],[-38,-31],[-43,-34],[-2,1],[-36,31],[-37,-9],[6,86],[12,152],[111,-41],[17,7],[34,15],[-13,68],[3,1],[88,16],[5,-63],[-28,-28]],[[80716,3147],[17,-130],[-12,2],[-25,2],[-78,99],[2,9],[5,20],[30,18],[61,-20]],[[80381,3270],[22,-38],[2,0],[-26,-43],[-18,-29],[-17,-18],[-21,-20],[-2,1],[-1,0],[-2,-5],[-12,0],[4,155],[9,-5],[0,6],[-1,13],[8,-2],[55,-15]],[[80592,3329],[87,-25],[14,-37],[5,-11],[-8,-7],[-53,-55],[-1,-5],[-1,-4],[-17,-7],[-2,-1],[-48,7],[-37,80],[15,16],[23,26],[1,0],[22,23]],[[82691,3385],[-31,-14],[-56,29],[-31,21],[-13,10],[36,25],[74,-30],[21,-41]],[[83182,3593],[16,-2],[8,0],[38,1],[38,4],[22,-56],[-21,-71],[-54,16],[-51,30],[-49,35],[-17,60],[29,-9],[30,-7],[11,-1]],[[80174,2539],[-1,24],[0,45],[0,8],[-1,27],[-1,17],[0,12],[0,59],[-1,25],[-1,58]],[[80169,2814],[50,5],[23,-15],[27,-17],[-5,-5],[0,-1],[57,-19],[14,9],[41,29],[14,-4],[26,-6],[34,-44],[67,23],[-5,50],[69,27],[16,6],[10,16],[15,24],[8,15],[12,23],[16,29],[26,-10],[18,-6],[13,-5],[15,-6],[3,-1],[6,1],[11,0],[18,1],[9,-26],[1,-3],[4,-11],[1,0],[38,5],[49,21],[0,3],[4,31],[3,26],[-27,13],[-6,52],[14,111],[59,26],[43,73],[30,46],[5,7],[15,15],[28,25],[3,-2],[3,6],[66,5],[1,2],[1,2],[50,20],[70,-6],[37,8],[75,-10],[9,-1],[-5,-18],[-12,-39],[-15,-50],[4,-9],[13,-42],[19,-3],[28,32],[40,46],[8,13],[10,17],[27,-5],[71,-53],[63,-29],[33,4],[36,-5],[2,58],[-1,3],[64,42],[11,44],[-12,54],[5,21],[63,45],[24,-24],[-2,-93],[47,-111],[-2,-2],[51,-45],[129,16],[-7,40],[-124,-5],[-40,40],[-2,73],[0,20],[23,15],[29,20],[222,152],[27,19],[10,-6],[76,-47],[49,-14],[59,73],[94,-129],[-5,-48],[-6,-50],[-11,-104],[-93,-134],[-54,-64],[-91,-11],[-79,-10],[-127,63],[-91,14],[-55,5],[-40,-23],[-59,10],[-132,20],[-127,-70],[-93,-56],[-42,5],[-378,-126],[-144,-82],[-56,-37],[-41,-13],[-69,-35],[-97,-61],[-404,-143]],[[83098,3529],[-69,-44],[-45,38],[-37,33],[-2,47],[32,28],[42,-32],[44,-32],[35,-38]],[[88552,5905],[-213,-119],[-96,-34],[-16,-11],[-68,-27],[-121,-66],[-72,-41],[-65,-37],[-52,-22],[-52,-36],[-69,-30],[-124,-69],[-119,-61],[-52,-33],[-47,-22],[-104,-50],[-48,-34],[-45,-20],[-46,-25],[-56,-34],[-69,-35],[-96,-64],[-114,-53],[-133,-85],[-155,-88],[-33,-24],[-145,-89],[-126,-82],[-81,-48],[-51,-38],[-104,-63],[-48,-40],[-38,-23],[-118,-85],[-80,-55],[-54,-29],[-55,-35],[-49,-34],[-48,-32],[-26,-17],[-35,-23],[-54,-33],[-77,-38],[-80,-52],[-196,-108],[-38,-21],[-131,-69],[-42,-19],[-141,-65],[-56,-24],[-47,-19],[-39,-14],[-62,-31],[-37,-14],[-41,-10],[-86,-35],[-67,-29],[-67,-25],[-112,-40],[-84,-36],[-60,-22],[-110,-45],[-93,-35],[-33,-13],[-59,-23],[-22,-10],[-80,-27],[-55,-22],[-52,-13],[-44,-18],[-55,-24],[-38,-12],[-35,-13],[-33,-15],[-27,-12],[-49,-23],[-65,-29],[-42,-20],[-51,-22],[-36,-19],[-34,-15],[-201,-71],[-187,-57],[-132,-42],[-110,-24],[-49,-14],[-34,0],[-52,5],[-189,-6],[-36,-4],[-36,-5],[-68,-9],[-101,5],[-58,1],[-1,65],[23,23],[37,63],[100,46],[124,-82],[55,-1],[51,-9],[81,1],[77,-27],[30,9],[46,13],[37,11],[50,26],[39,33],[50,29],[46,9],[63,34],[75,6],[51,-6],[47,13],[42,25],[31,20],[101,35],[25,32],[47,22],[55,57],[47,44],[20,-21],[-18,-30],[34,-43],[42,15],[63,52],[45,1],[57,23],[59,4],[58,34],[56,76],[33,21],[31,10],[32,4],[46,-16],[32,3],[26,5],[44,7],[37,32],[31,20],[97,52],[65,7],[51,24],[50,20],[64,7],[61,10],[34,17],[24,-12],[36,12],[33,12],[48,27],[37,14],[30,15],[34,19],[71,47],[53,40],[61,1],[22,6],[18,20],[35,11],[41,12],[39,9],[68,20],[79,39],[10,5],[1,0],[2,-1],[5,5],[21,19],[27,23],[4,-2],[89,26],[55,44],[60,37],[67,43],[47,24],[69,37],[25,18],[31,45],[36,27],[29,24],[34,16],[34,15],[31,41],[25,39],[38,24],[42,15],[45,35],[34,15],[22,-18],[38,21],[23,38],[-33,41],[26,20],[45,-25],[35,0],[64,51],[33,23],[39,38],[44,38],[27,38],[31,43],[39,24],[34,-6],[26,22],[48,30],[60,2],[30,54],[43,-6],[22,23],[21,78],[1,2],[2,1],[39,40],[5,-2],[32,4],[39,25],[41,3],[-3,-10],[27,-30],[9,3],[46,6],[53,13],[27,24],[26,107],[34,53],[1,-1],[120,18],[27,-11],[5,3],[68,-5],[26,6],[50,90],[5,1],[38,3],[44,-11],[33,21],[48,26],[70,40],[46,15],[35,20],[29,42],[20,46],[96,-15],[14,11],[37,43],[26,-2],[41,43],[48,-2],[40,16],[47,30],[37,14],[35,28],[28,53],[4,1],[4,17],[22,33],[0,5],[-1,5],[27,37],[33,-1],[38,52],[46,33],[24,2],[39,9],[30,-4],[9,-1],[7,-3],[24,-7],[1,-1],[43,-11],[37,8],[41,16],[31,55],[1,1],[6,3],[102,54],[11,13],[36,-20],[-15,-64],[-4,-47],[-47,-9],[-21,-9]],[[92219,10648],[35,-28],[32,3],[41,15],[50,-15],[34,-133],[12,-130],[30,-155],[-48,43],[-66,49],[-37,50],[-40,83],[-24,91],[-22,69],[3,58]],[[96452,11736],[-6,-45],[-27,48],[10,64],[1,60],[27,55],[15,-82],[-4,-51],[-16,-49]],[[94202,13128],[162,-111],[325,-99],[0,-129],[-32,-118],[-124,68],[-61,40],[-41,78],[-71,-19],[-38,-71],[-7,-9],[-62,143],[-44,73],[-76,98],[-36,23],[-9,-71],[27,-73],[11,-58],[19,-57],[30,-51],[28,-30],[36,-70],[-39,19],[-42,-11],[-14,-48],[41,-2],[34,-56],[37,20],[64,5],[32,12],[7,7],[24,-3],[18,-10],[1,-12],[98,-41],[37,37],[36,31],[26,12],[21,-48],[27,-82],[29,-73],[13,-44],[16,-55],[20,-52],[-56,-44],[-27,-35],[-13,-53],[11,-68],[91,-154],[63,-204],[-70,-37],[-95,25],[-15,123],[-1,21],[33,78],[-46,117],[-32,-50],[-21,23],[-65,53],[-48,25],[-66,71],[-30,79],[-52,59],[-26,20],[-40,-2],[-45,-41],[-20,-81],[8,-63],[3,-24],[-55,-23],[-59,2],[-38,40],[-20,51],[-34,38],[-34,31],[-34,13],[-17,-6],[-23,-23],[-37,33],[-11,-15],[-32,-48],[-22,-11],[4,50],[-9,38],[-27,6],[-19,41],[2,47],[-38,7],[11,-75],[18,-50],[19,-55],[9,-40],[16,-52],[32,-62],[-29,-7],[-54,21],[-47,35],[-59,64],[-68,76],[-29,37],[-20,59],[5,53],[-1,45],[-13,38],[-31,57],[-34,42],[-30,43],[-38,47],[18,63],[43,-16],[39,-28],[34,18],[64,41],[48,49],[23,140],[41,75],[22,57],[10,2],[49,8],[1,-54],[16,-31],[22,1],[49,18],[43,-29],[-8,89],[-8,75],[-27,36],[-11,49],[42,28],[58,53],[13,83],[28,62],[15,43],[43,-11],[28,-23],[74,-89],[24,-43],[0,-69],[7,-51],[82,-94]],[[97046,13406],[37,-23],[35,9],[33,-3],[47,-28],[6,-94],[-42,-36],[-27,-25],[-52,-205],[7,-19],[28,-150],[30,-100],[-44,-46],[-13,-38],[-4,-98],[-2,-79],[-16,-28],[-16,-26],[-43,-67],[-56,-67],[-28,37],[43,129],[-5,16],[-5,62],[-3,65],[7,82],[14,68],[-14,58],[-22,66],[-25,67],[-23,72],[-23,64],[-40,59],[-32,1],[-36,22],[-16,34],[-37,28],[-32,6],[-41,8],[-58,-26],[-93,4],[-40,1],[-30,-7],[-35,64],[0,65],[44,72],[57,33],[30,21],[36,22],[16,75],[10,80],[6,110],[-16,101],[38,-34],[50,-150],[45,-40],[38,-41],[36,-1],[24,-19],[41,-28],[52,-3],[78,-57],[48,-26],[33,-37]],[[80168,3568],[-5,23],[0,26],[0,25],[-2,22],[6,47],[-3,24],[1,24],[10,38],[6,25],[1,42],[-1,6],[-3,25],[-4,30],[-3,32],[-5,53],[-2,26],[-2,23],[-1,2],[-2,20],[-3,31],[-2,24],[-3,27],[-5,42],[0,1],[-6,62],[-5,42],[-4,36],[-3,44],[-3,23],[-3,28],[-2,22],[-3,27],[-2,25],[-4,30],[-2,27],[-6,50],[-4,26],[-1,5],[-3,21],[-4,22],[-3,23],[-3,23],[-3,44],[-2,54],[-2,22],[-2,26],[-3,24],[-3,27],[-4,36],[-1,7],[-4,35],[-3,25],[-1,13],[-1,11],[-4,31],[-3,29],[-4,34],[-2,25],[-8,71],[-2,20],[-2,15],[-2,23],[-4,35],[-1,8],[-3,23],[-3,22],[-3,30],[-10,87],[-3,24],[-4,27],[-2,22],[-7,51],[-5,44],[-4,38],[-4,30],[-1,23],[-6,57],[-5,36],[-6,61],[-12,122],[-8,65],[-7,68],[-5,53],[-7,73],[-4,23],[-5,28],[-2,22],[-1,13],[-4,56],[-6,50],[-7,65],[-7,59],[-22,189],[-1,10],[-11,107],[-5,42],[-24,179],[0,1],[-3,59],[-16,161],[-5,43],[0,7],[-5,48],[-6,20],[-8,129],[-1,39],[-6,19],[-10,36],[-3,30],[-4,24],[-4,26],[-25,68],[-14,45],[-11,27],[-15,37],[-8,28],[-10,34]],[[79666,8037],[15,56],[8,90],[2,56],[17,47],[-40,-4],[-25,35],[-35,40],[-23,42],[-24,127],[3,80],[-2,123],[-31,98],[-30,101],[-34,28],[-25,51],[-25,59],[-15,68],[-15,62],[-13,39],[-4,29],[-8,18],[-20,25],[-8,29],[-6,21],[-63,60],[-19,36],[7,87],[10,50],[25,74],[71,114],[13,42],[-22,71],[8,46],[41,23],[13,-20],[44,-43],[15,-12],[14,-12],[15,-6],[18,-11],[27,-23],[34,-17],[40,-27],[43,-24],[23,-9],[18,1],[63,-33],[56,0],[18,-6],[19,-9],[20,-2],[13,6],[46,17],[38,-16],[24,-10],[41,-49],[14,-17],[15,-24],[27,-42],[14,-36],[-18,-70],[9,-84],[-45,-33],[3,12],[-27,41],[-41,-2],[-26,-12],[-33,-6],[-56,-51],[-23,-58],[-86,-35],[-25,17],[-37,1],[-30,-5],[-24,-16],[42,-41],[42,-14],[48,3],[44,17],[45,11],[48,-62],[75,-43],[27,-1],[15,-46],[-19,-82],[-56,-42],[18,-30],[30,-8],[27,-22],[81,-17],[46,-22],[13,-85],[8,-73],[21,-60],[31,-2],[26,56],[2,64],[-27,53],[-20,59],[-32,55],[-32,4],[-17,23],[-51,2],[-4,-5],[-17,62],[6,65],[90,9],[90,-31],[54,-5],[44,5],[39,11],[26,10],[117,71],[42,-28],[41,-21],[45,-43],[17,-71],[43,-25],[21,64],[23,85],[22,136],[50,-43],[20,-60],[107,-109],[23,-100],[-49,-87],[-5,-110],[32,-36],[68,76],[28,70],[3,118],[-41,109],[-32,116],[43,43],[42,79],[12,75],[-9,91],[-46,27],[-36,13],[-27,-30],[-45,79],[-40,35],[-6,3],[-77,0],[-38,-110],[-125,-28],[-63,19],[-139,114],[-32,281],[70,290],[85,19],[277,-457],[146,-121],[101,-62],[43,-20],[53,-36],[4,68],[58,3],[95,39],[66,-1],[55,-4],[34,-24],[93,-23],[141,-32],[53,-25],[36,-25],[31,4],[84,-47],[50,-33],[37,-23],[80,-53],[57,-35],[59,-23],[91,-33],[236,-52],[29,-80],[57,-39],[22,-199],[59,10],[55,52],[43,-38],[104,-100],[54,-90],[52,-19],[8,80],[-35,100],[-71,53],[-90,33],[-68,100],[-24,78],[1,0],[118,69],[69,53],[105,56],[105,51],[141,56],[48,-11],[48,52],[55,32],[99,68],[65,47],[51,15],[-13,-77],[-32,-20],[-24,-15],[-10,-18],[-10,2],[-103,-109],[-93,-48],[-114,-62],[-6,-128],[44,-162],[16,-67],[48,-76],[49,6],[-23,194],[92,157],[166,181],[6,39],[0,-1],[19,74],[23,81],[12,110],[-2,52],[19,219],[4,236],[-27,79],[-33,25],[-43,28],[-14,7],[-73,122],[7,25],[151,-38],[21,8],[16,-5],[64,16],[1,0],[1,1],[85,22],[25,21],[41,47],[46,55],[32,33],[7,9],[13,47],[57,-49],[99,-96],[105,-48],[62,19],[20,-38],[21,-36],[-30,-32],[-35,16],[-88,42],[-53,22],[-44,42],[-1,0],[-1,0],[-14,-5],[47,-53],[13,-73],[6,-36],[15,-29],[37,9],[23,-23],[5,-44],[-15,-76],[-2,-66],[-27,-21],[-29,-11],[-18,-29],[23,-67],[39,-41],[-1,66],[26,42],[40,51],[-3,54],[-12,50],[26,29],[29,-14],[34,-19],[43,-25],[24,-26],[47,-22],[50,-47],[38,-39],[31,-63],[29,18],[2,1],[32,53],[6,43],[-32,34],[-13,34],[-17,54],[-32,76],[-52,118],[4,4],[-30,29],[-25,29],[-26,-3],[-53,0],[-31,35],[-9,55],[26,-4],[40,0],[46,26],[12,-9],[75,0],[86,-82],[144,-78],[36,-23],[88,-28],[52,-32],[24,-24],[45,-92],[20,-56],[14,-34],[35,-37],[35,41],[25,21],[50,17],[10,31],[-55,14],[-99,37],[-62,120],[72,-7],[27,5],[38,23],[51,-23],[27,0],[53,25],[48,4],[38,4],[42,5],[38,8],[50,-1],[104,9],[135,-7],[40,4],[86,6],[73,5],[155,-14],[67,-4],[165,-35],[62,-15],[95,-20],[87,-4],[45,-2],[55,-1],[58,5],[49,-1],[39,2],[36,-5],[35,3],[82,9],[40,8],[35,2],[122,19],[38,20],[42,-8],[41,19],[76,17],[29,12],[46,17],[48,10],[48,11],[49,17],[48,9],[56,7],[124,-33],[70,-15],[49,-10],[119,-21],[26,-4],[60,-1],[93,-2],[37,2],[38,-20],[27,-8],[66,1],[58,13],[37,6],[50,11],[49,15],[28,8],[37,9],[69,14],[63,17],[123,45],[28,4],[81,42],[45,11],[109,47],[44,29],[61,21],[37,14],[110,22],[88,11],[54,-14],[60,-13],[29,-8],[85,5],[106,20],[122,26],[43,-4],[39,-4],[48,7],[43,12],[58,22],[57,32],[59,25],[32,22],[36,30],[44,33],[61,27],[82,30],[39,21],[62,31],[27,18],[60,40],[47,40],[36,36],[52,48],[57,60],[24,22],[75,95],[25,63],[20,33],[5,20],[42,19],[62,25],[28,48],[52,50],[40,51],[91,103],[101,122],[43,30],[38,45],[22,36],[33,15],[30,-3],[82,41],[33,18],[31,28],[41,19],[46,29],[66,60],[67,21],[78,33],[33,30],[35,37],[25,48],[39,62],[20,37],[36,56],[24,43],[22,36],[23,40],[87,182],[27,89],[22,75],[41,38],[29,12],[45,-9],[49,-8],[74,22],[43,-9],[48,17],[39,7],[37,18],[35,39],[40,43],[39,2],[64,60],[36,9],[44,39],[48,65],[24,45],[24,46],[19,49],[21,67],[28,74],[20,52],[24,28],[32,32],[39,21],[39,28],[37,40],[32,45],[36,45],[26,68],[29,52],[21,60],[7,68],[28,57],[47,24],[35,-2],[38,-11],[30,9],[38,-11],[35,-34],[35,-18],[29,-28],[66,18],[60,54],[42,54],[33,63],[29,41],[0,8],[11,7],[1,1],[1,0],[33,-14],[60,43],[38,55],[5,4],[14,20],[25,14],[24,6],[46,40],[61,37],[43,8],[40,19],[27,10],[29,-34],[38,-42],[33,-23],[45,1],[45,21],[60,46],[46,35],[55,35],[61,13],[35,-23],[94,23],[39,0],[0,-49],[-7,-49],[-63,-11],[-26,-36],[-5,-7],[-23,-19],[-30,-90],[-34,-64],[-35,-33],[-24,-135],[-20,-70],[-2,-6],[-20,-13],[-21,-34],[-28,-66],[-44,-25],[-243,-212],[-218,-198],[-74,-12],[-11,55],[138,105],[91,142],[53,43],[99,13],[129,115],[26,32],[21,27],[30,25],[7,36],[-30,4],[-22,64],[-57,20],[-22,8],[-50,-4],[-20,-22],[-28,-43],[-23,10],[0,1],[0,1],[-36,-16],[4,-25],[18,-64],[7,-75],[0,1],[4,-15],[-54,-39],[-1,0],[-5,-4],[-1,0],[-1,1],[-23,-9],[-24,4],[-80,61],[-52,21],[-27,23],[-31,43],[-32,65],[-28,71],[-24,27],[-33,4],[-35,-5],[-30,-40],[-34,-74],[-67,-52],[-31,-47],[-5,-68],[-16,-46],[-34,-59],[-38,-89],[-19,-58],[-17,-30],[-10,-40],[-38,-42],[-38,10],[-23,-14],[-42,-126],[-110,-146],[-44,-57],[-3,-19],[-24,-85],[-34,10],[-26,20],[-27,8],[-41,-2],[-29,-18],[-42,-71],[-43,-30],[-9,-44],[34,-23],[34,-30],[36,-67],[4,-77],[-33,0],[-83,33],[-32,15],[-21,-27],[-39,-33],[-42,-20],[-24,15],[-30,-21],[-27,-18],[-23,-62],[-17,-71],[-41,-46],[-24,-53],[-30,-63],[-11,-51],[-21,-29],[-8,-77],[39,-71],[66,-6],[32,4],[47,-34],[55,-29],[44,-14],[52,-4],[37,0],[-6,-57],[-17,-52],[-13,-122],[20,-47],[7,-74],[-60,-43],[-42,-18],[-22,11],[-58,-21],[-25,15],[-39,11],[-209,65],[-38,26],[-36,2],[-32,-5],[-23,30],[-59,-34],[-19,-49],[-14,-52],[-38,-43],[-26,-38],[-18,-45],[-9,-52],[0,-59],[4,-67],[-6,-65],[40,-84],[29,-86],[32,-118],[20,-85],[37,-168],[-33,24],[-37,48],[-33,38],[-31,64],[-34,24],[-60,45],[-20,75],[10,58],[-30,53],[-56,16],[-23,-35],[-31,-26],[-49,-57],[-20,-79],[-19,-97],[17,-91],[-35,-42],[-27,-4],[-33,-7],[-45,10],[-22,39],[-56,1],[-37,0],[-26,-15],[-16,27],[-27,-28],[-54,-40],[-65,-54],[-33,-44],[-26,-8],[-41,-18],[-41,-15],[-79,-30],[-42,-26],[-28,15],[-20,-60],[-32,-33],[-42,-42],[-27,-69],[-42,-95],[-21,-63],[-21,-80],[-45,-108],[-48,-41],[-34,-54],[-25,-52],[-24,-32],[-34,-11],[-33,-34],[-45,-64],[-14,-64],[-12,-31],[-22,1],[-56,-84],[-44,16],[-41,-4],[-44,-41],[-31,-21],[-29,-51],[-63,59],[-51,35],[-44,-9],[-32,-33],[-24,11],[-17,11],[-72,-180],[-48,0],[-1,-9],[-20,-42],[-42,-19],[-21,6],[-23,-12],[-21,-42],[9,-3],[53,-14],[61,-8],[-10,-66],[-40,-68],[17,-53],[40,-19],[-11,-91],[41,-7],[40,40],[13,91],[26,54],[40,32],[35,-7],[34,20],[33,-34],[12,-67],[24,-20],[24,-32],[44,0],[1,10],[32,7],[28,5],[15,-35],[23,-13],[12,1],[28,-24],[9,13],[58,5],[35,-23],[22,30],[47,80],[24,86],[40,-2],[39,-16],[51,-9],[34,19],[44,-34],[31,-21],[38,-19],[40,-24],[70,-55],[68,-66],[24,-22],[16,-35],[26,-29],[40,-2],[85,-49],[51,-27],[40,-15],[31,20],[16,-58],[42,2],[102,10],[97,35],[72,29],[46,36],[58,46],[25,41],[37,71],[75,112],[72,125],[42,-8],[14,103],[3,64],[25,200],[13,116],[9,60],[17,80],[60,42],[68,17],[49,-2],[42,1],[62,-4],[56,-8],[54,18],[47,7],[27,22],[41,50],[31,79],[10,52],[17,62],[40,57],[20,37],[46,42],[40,128],[15,33],[27,63],[49,118],[32,74],[30,66],[22,69],[2,8],[-42,525],[32,31],[95,-419],[82,-34],[6,7],[26,0],[61,14],[29,-9],[21,68],[58,25],[27,-31],[42,-28],[32,-56],[44,-22],[37,14],[39,24],[33,39],[31,22],[37,110],[28,77],[-12,60],[-29,40],[-41,71],[-24,58],[-22,69],[-24,34],[-22,26],[-24,81],[-14,59],[-2,59],[13,33],[35,7],[42,47],[58,3],[36,26],[35,22],[1,1],[30,30],[24,-25],[39,-52],[23,-84],[12,-111],[14,-69],[26,-60],[16,-29],[39,-70],[-7,-150],[-26,-44],[5,-43],[2,-71],[20,-34],[38,15],[37,-33],[38,4],[28,3],[17,-26],[75,-28],[80,24],[26,25],[36,46],[28,76],[13,68],[26,51],[70,-1],[32,-9],[18,-25],[-16,-87],[-6,-69],[0,-76],[12,-75],[10,89],[11,35],[22,10],[0,54],[21,60],[30,63],[7,80],[35,64],[22,88],[-13,79],[6,74],[35,86],[8,50],[-16,46],[5,60],[-22,39],[-15,6],[-81,-17],[-31,-18],[-74,-24],[-53,30],[23,30],[99,32],[42,0],[43,9],[44,24],[57,0],[1,-1],[0,-1],[0,1],[60,-2],[94,-34],[47,-28],[60,-38],[55,-66],[36,-59],[109,-37],[16,1],[37,-15],[74,6],[18,0],[16,0],[41,-44],[10,-39],[-13,-12],[-39,42],[-5,0],[-182,3],[-8,-21],[12,-44],[1,-1],[-1,-1],[-1,-2],[2,-2],[22,-66],[11,-95],[0,-42],[64,-55],[48,-150],[44,-70],[30,72],[42,57],[10,125],[-4,158],[3,80],[-7,80],[-41,27],[-17,53],[57,32],[27,36],[26,71],[40,111],[29,32],[49,31],[31,20],[55,76],[46,-8],[57,-35],[37,-62],[45,-60],[47,-68],[8,-71],[0,-62],[26,-54],[-22,-86],[-15,-65],[-5,-4],[-6,-46],[-2,-15],[-15,-107],[27,-5],[25,21],[9,45],[2,0],[1,1],[0,5],[7,-1],[19,-2],[20,-3],[5,-4],[1,-1],[1,-1],[53,-44],[17,-43],[10,-4],[34,-56],[35,-90],[33,-93],[36,-73],[31,-86],[50,-70],[23,-28],[27,-40],[33,-27],[64,-31],[54,-7],[37,13],[32,17],[109,98],[5,44],[19,44],[14,56],[-2,59],[25,49],[40,20],[55,11],[62,17],[36,19],[23,22],[52,11],[-9,-56],[-4,-65],[-7,-71],[-28,-36],[-11,-57],[40,-33],[64,21],[59,11],[69,24],[36,26],[37,40],[22,70],[-21,57],[-37,85],[-31,44],[-76,76],[-46,56],[44,39],[89,-52],[64,-19],[39,0],[80,4],[39,10],[58,40],[46,60],[38,91],[56,73],[23,36],[32,56],[29,27],[26,28],[1,1],[20,23],[33,51],[19,70],[37,41],[41,14],[42,-3],[42,-22],[32,-82],[74,-50],[45,-12],[40,13],[36,28],[49,58],[31,97],[-11,96],[-18,116],[-15,70],[6,105],[9,90],[46,44],[57,10],[62,22],[35,33],[45,18],[34,-90],[11,-93],[25,-61],[15,-29],[32,-87],[59,-90],[29,-23],[50,-68],[97,-65],[46,100],[3,96],[-24,31],[-59,94],[-26,116],[-93,42],[-79,32],[-32,-4],[-46,148],[63,-13],[17,4],[49,25],[91,17],[80,34],[68,58],[58,29],[25,-27],[13,-58],[51,-94],[41,-53],[39,-13],[47,16],[72,34],[72,-28],[66,-18],[42,42],[73,-46],[35,-34],[14,-62],[-24,-27],[-36,-100],[-56,-54],[-9,-42],[-34,-48],[-39,-48],[-14,-36],[-7,-47],[-31,-30],[-85,-52],[-51,-21],[-25,-14],[-38,-30],[-35,-23],[-50,-36],[-38,-36],[-40,-30],[-53,-20],[-62,-3],[-38,-3],[-65,-34],[-92,-45],[-63,-19],[-73,-39],[-47,-22],[-34,-23],[-78,-43],[-138,-81],[-88,-60],[-61,-41],[-87,-58],[-180,-117],[-44,-29],[-48,-31],[-128,-93],[-127,-83],[-42,-27],[-54,-32],[-41,-21],[-44,-29],[-67,-45],[-55,-33],[-76,-37],[-40,-19],[-38,-32],[-83,-40],[-39,-24],[-59,-44],[-65,-37],[-59,-36],[-38,-20],[-35,-15],[-47,-24],[-58,-28],[-64,-40],[-42,-23],[-92,-49],[-68,-45],[-57,-35],[-62,-41],[-114,-74],[-96,-68],[-44,-27],[-78,-47],[-51,-34],[-72,-48],[-35,-26],[-50,-31],[-41,-24],[-63,-35],[-120,-78],[-59,-28],[-39,-50],[-83,-44],[-42,-23],[-198,-80],[-34,-52],[-13,-20],[-30,-15],[-6,-7],[-26,-31],[-56,-23],[-51,-45],[-71,-42],[-43,-28],[-44,-29],[-113,-94],[-56,-33],[-59,-45],[-53,-32],[-44,-24],[-52,-35],[-57,-25],[-44,-27],[-55,-53],[-104,-73],[-84,-58],[-30,-17],[-99,-70],[-30,-19],[-43,-27],[-83,-64],[-305,-198],[-185,-109],[-14,0],[-32,-21],[-42,-32],[-51,-32],[-46,-32],[-34,-22],[-105,-67],[-96,-54],[-41,-22],[-28,-25],[-79,-45],[-9,0],[-24,-15],[-55,-33],[-68,-33],[-34,-16],[-38,-23],[-28,-17],[-38,-23],[-73,-42],[-83,-55],[-114,-53],[-63,-43],[-38,-32],[-36,-5],[-45,-25],[5,72],[39,29],[61,37],[30,39],[4,16],[106,20],[46,49],[74,44],[27,4],[48,5],[9,2],[44,25],[46,11],[13,52],[1,0],[1,1],[40,13],[76,41],[44,81],[-53,97],[-30,-73],[-33,-77],[-39,-17],[-1,2],[-1,2],[-33,-19],[-38,20],[-35,53],[-21,88],[-3,76],[-4,38],[-30,28],[-15,15],[-38,20],[-47,17],[-44,19],[-76,20],[-61,32],[-76,17],[-46,6],[-44,7],[-55,12],[-40,10],[-43,-9],[-36,1],[-51,-26],[-55,14],[-16,-73],[24,-71],[45,-47],[58,-11],[11,-59],[-12,-66],[-41,-84],[-31,-57],[-24,-53],[-21,-70],[-20,-112],[6,-67],[-10,-6],[-32,44],[-33,24],[-28,2],[-26,18],[-28,-5],[-26,34],[-55,-3],[-49,38],[-5,-60],[25,-88],[-40,7],[-33,11],[-48,22],[-35,35],[31,45],[46,69],[-18,83],[-24,57],[-32,17],[-23,41],[-44,16],[-7,-104],[-10,-81],[-37,-60],[-30,-54],[-32,-61],[-1,-4],[-10,-250],[-50,34],[-3,0],[-31,-6],[-30,12],[-45,3],[-49,28],[-17,38],[-8,10],[-27,-43],[0,-13],[-7,-47],[-27,-65],[10,-79],[-17,-49],[-62,37],[-6,-2],[1,-190],[-11,-64],[-44,10],[-6,-2],[-31,0],[-10,0],[-6,-34],[10,-9],[46,-69],[34,32],[3,3],[26,35],[49,16],[26,9],[12,4],[11,9],[27,26],[43,6],[17,-20],[12,-15],[16,1],[31,2],[-9,34],[-12,41],[37,-24],[24,-38],[5,23],[9,33],[29,25],[24,9],[31,-5],[25,8],[23,-28],[25,2],[18,31],[45,23],[36,-5],[53,40],[47,44],[37,81],[4,45],[58,25],[41,-3],[-17,-66],[40,2],[31,-11],[28,28],[20,41],[41,1],[29,-1],[30,28],[16,8],[-13,106],[76,12],[5,-43],[3,-6],[38,-8],[28,0],[31,18],[55,25],[43,8],[5,-72],[-36,-3],[-172,-84],[-53,-21],[-57,-28],[-96,-62],[-36,-9],[-39,-21],[-45,-24],[-84,-42],[-105,-57],[-35,-17],[-52,-24],[-79,-37],[-152,-76],[-82,-40],[-33,-15],[-35,-23],[-59,-22],[-26,-12],[-40,-19],[-74,-35],[-54,-27],[-76,-43],[-36,-16],[-65,-27],[-4,-8],[-543,-278],[-128,-74],[-598,-291],[-94,-27],[-269,-117],[-229,-108],[3,52],[127,113],[121,135],[182,34],[186,35],[53,7],[7,14],[10,5],[-1,4],[92,43],[43,51],[45,50],[49,-37],[83,57],[20,22],[35,-4],[44,2],[21,64],[3,-3],[50,4],[95,12],[42,23],[48,39],[-24,33],[-39,-8],[-36,5],[-28,28],[-38,53],[-27,82],[-35,13],[-57,-32],[-6,-18],[-30,-3],[-26,0],[-26,-41],[-36,-5],[-67,33],[-32,19],[-40,8],[-52,-31],[-12,-63],[9,-50],[-24,-5],[-48,14],[-35,-10],[-40,17],[-52,41],[-25,-4],[-26,37],[-32,13],[-30,35],[-32,61],[-25,24],[-23,49],[1,62],[0,6],[-49,46],[-8,3],[-19,-54],[-13,-53],[-23,-46],[9,-58],[-1,-94],[-58,-36],[-58,13],[-20,30],[-35,27],[-42,3],[-30,-4],[-33,-86],[15,-49],[31,-57],[9,4],[17,16],[1,-1],[9,8],[32,-34],[-3,-27],[20,-95],[-19,-29],[-59,20],[-2,-1],[-5,6],[-49,64],[-6,7],[-18,43],[-1,1],[-52,31],[-3,2],[-24,-31],[-5,-6],[0,-6],[-3,-43],[28,-28],[34,-43],[4,-9],[69,-59],[-4,-35],[-60,9],[-43,7],[-23,-30],[-48,11],[-37,9],[-39,16],[-27,-17],[-48,8],[-37,-13],[-40,2],[-24,4],[-22,17],[-24,34],[-30,-14],[-31,13],[-27,4],[-64,-22],[-27,7],[-17,-47],[-4,-59],[-14,-64],[-31,32],[-29,43],[-17,42],[-43,50],[0,2],[-13,11],[-14,34],[-2,-3],[-10,74],[-38,35],[-39,20],[0,9],[-17,19],[-11,45],[-14,64],[-27,9],[-3,-116],[-2,-11],[36,-55],[0,-2],[16,-11],[8,-33],[-1,-43],[26,-23],[25,-33],[33,-59],[38,-77],[4,-3],[43,-15],[2,-138],[2,-1],[30,-72],[-18,-109],[-31,-16],[-28,-53],[-50,-18],[-54,0],[-28,0],[-29,-39],[-27,6],[-49,-90],[-55,-35],[-15,11],[-25,18],[-28,-38],[12,-36],[5,-16],[-37,-81],[-41,-2],[-79,-44],[-11,8],[0,-1],[-30,15],[-5,8],[-70,11],[-20,-44],[4,-58],[6,-7],[-27,-26],[-13,-13],[-55,-20],[-2,2],[0,-1],[-38,29],[-32,26],[-30,66],[-7,43],[-2,54],[-4,93],[0,59],[0,36],[-6,26],[-11,40],[-31,78],[4,31],[4,30],[-28,41],[-14,22],[-19,23],[-19,10],[-10,5],[-2,21],[-2,24],[-13,28],[-4,9],[-22,-48],[14,-53],[3,-8],[17,-39],[7,-14],[-7,-53],[-5,-68],[-32,-22],[-35,-20],[-41,-2],[-40,-24],[-39,-3],[-4,2],[-28,7],[-42,26],[-49,12],[-31,27],[-30,-34],[-58,-43],[-28,-33],[-31,-82],[-32,-23],[-70,-98],[-38,-47],[-6,-48],[-6,-44],[-22,7],[-23,7],[-48,4],[-60,31],[-48,-9],[-35,17],[-31,2],[-30,30],[-28,10],[-30,20],[-43,59],[-66,10],[-38,-1],[-39,46],[-23,-39],[-36,-7],[-33,-9],[-36,-2],[-40,-21],[-35,6],[-48,23],[-21,-28],[-42,33],[-42,-18],[-71,4],[-37,-42],[-34,-47],[-20,-47],[-30,-65],[-23,-35],[-7,-53],[-8,-106],[-237,-44],[-10,-18],[-35,-2],[-57,-8],[-62,-26],[-19,-59],[-27,-15],[-24,1],[-40,14],[-31,-1],[-44,-24],[-53,-21],[-73,-23],[-23,-15],[-57,-15],[-6,3],[-1,-1],[-29,1],[-113,-7],[-137,153],[-23,9],[-30,13],[-6,-6],[-36,-35],[-90,37],[-79,5],[-11,1],[-31,2],[-90,-4],[-10,-42],[-5,-18],[60,-26],[102,-33],[66,-8],[20,-27],[11,-2],[12,-22],[-38,-27],[-130,-160],[-48,-278],[-263,10],[-60,37],[-115,71],[-74,91],[-12,-12],[-35,-45],[-51,38],[-36,3],[-15,22],[-28,29],[-26,34],[-32,-4],[-28,-40],[-1,1],[-1,0],[-10,-11],[-45,-58],[-23,0],[-119,52],[0,41],[0,33],[3,42],[3,54],[-116,32],[-2,-10],[-14,-47],[-16,-25],[-1,1],[0,1],[-13,-43],[-104,-53],[-39,-80],[-8,-32],[-27,-66],[-30,-5],[-5,-1],[-93,-120],[-63,-21],[-80,-81],[-17,-27],[-25,-42],[-27,-47],[-20,-2],[-2,-1],[-57,13],[-44,10],[-48,-22],[-36,-3],[-41,18],[-70,-3],[-58,34],[-10,1],[-41,12],[-35,-23],[-9,-103],[0,-2],[-15,-22],[-9,10],[-31,-6],[-42,12],[-5,-4],[-24,-23],[-93,-67],[-17,-37],[-10,-4],[-18,-57],[-55,-28],[-5,-2],[-8,-4],[-8,7],[-23,5],[-52,-58],[-1,0],[0,-1],[-30,-20],[-142,-52],[-76,-81],[-68,-22],[-44,-26],[-37,-14],[-71,-38],[-39,-8],[-2,-1],[-61,-25],[-17,-7],[-67,-28],[-83,0],[-13,0],[-15,3],[-39,66],[-25,-9],[-1,-9],[-37,-49],[-26,12],[-30,-4],[-20,40],[-21,11]],[[96174,15357],[-74,-87],[-102,-68],[-82,25],[-5,1],[-18,2],[-28,10],[-35,-38],[-33,-89],[-46,-122],[-18,-54],[-25,-63],[-47,-74],[-45,90],[-15,42],[-18,29],[-38,6],[-42,18],[26,119],[70,50],[38,2],[36,66],[37,22],[29,32],[32,30],[29,11],[36,8],[31,-20],[141,14],[113,81],[53,-43]],[[99122,17583],[-32,-57],[-10,-75],[-46,-51],[-39,-42],[-38,-14],[-40,2],[-28,9],[-26,-26],[-14,-39],[-14,31],[-29,-4],[-43,-52],[-60,-23],[-42,27],[-32,-15],[-35,-47],[-35,-17],[-34,-11],[-19,-42],[-34,-19],[-32,-28],[-31,-7],[-22,-52],[-54,-52],[-24,-23],[-43,-73],[-18,-56],[-40,-47],[-24,-16],[-31,-20],[-38,3],[-35,30],[-42,26],[-48,-2],[-50,-24],[-47,-46],[-37,-32],[-30,0],[-31,-1],[-43,-4],[-40,-4],[30,111],[40,46],[8,36],[14,60],[33,32],[17,-46],[17,-32],[36,37],[-5,75],[6,111],[-28,84],[24,13],[21,18],[22,-29],[33,-14],[40,-23],[35,-7],[31,-39],[-21,-61],[-28,-38],[-4,-49],[27,-53],[27,-23],[9,50],[2,40],[28,-37],[32,81],[26,18],[23,18],[45,65],[15,61],[3,70],[4,69],[46,33],[44,3],[48,-8],[32,-35],[43,8],[32,24],[36,-1],[18,65],[26,26],[33,-17],[47,-26],[40,20],[43,14],[42,-32],[37,7],[16,37],[19,-28],[29,-26],[29,30],[11,38],[-24,8],[-22,21],[28,46],[20,46],[43,-18],[36,6],[28,6],[28,10],[40,-8]],[[74485,6414],[-67,-9],[-38,10],[-51,13],[-49,13],[-9,61],[-16,4],[19,169],[24,2],[48,-45],[76,-36],[48,-38],[46,-104],[-31,-40]],[[75645,7639],[-7,-78],[-50,40],[-28,73],[-25,70],[10,100],[-30,124],[28,44],[16,-60],[6,-46],[24,-36],[31,-30],[19,-100],[6,-101]],[[75835,7885],[-26,-180],[-37,37],[10,31],[1,61],[-15,61],[-2,138],[22,25],[41,-42],[35,-68],[12,-16],[-6,-12],[-35,-35]],[[75495,8571],[-1,-9],[-3,-25],[-15,-37],[-18,-112],[35,1],[-1,70],[21,38],[28,4],[41,-26],[17,-65],[-8,-71],[13,-1],[23,-2],[-20,-76],[-66,-32],[-33,-180],[-15,-77],[-31,-7],[-14,-25],[-10,-17],[-4,-77],[-20,-64],[-20,48],[-40,86],[-1,21],[-35,103],[-40,69],[-44,21],[5,-97],[0,-95],[-33,-65],[-1,-3],[0,-10],[7,-39],[5,-28],[4,-58],[-2,-51],[7,-88],[-16,-33],[0,-47],[9,-49],[12,-69],[14,-85],[4,-24],[5,-33],[33,20],[36,2],[17,-79],[22,-38],[20,-37],[15,-12],[43,-37],[-1,-1],[-32,-49],[-31,-13],[-9,-4],[6,-16],[16,-37],[37,-15],[9,-6],[50,-34],[11,-6],[31,-17],[7,-33],[2,-12],[-40,-4],[-4,-1],[-38,33],[-25,22],[-38,33],[-24,-5],[-40,47],[-46,49],[-30,9],[-47,9],[-43,-13],[-44,-17],[-33,-25],[-59,-4],[-8,-135],[-3,2],[-84,49],[-24,103],[4,36],[1,12],[-16,64],[-38,-53],[-29,-77],[-22,28],[-8,-28],[-13,-45],[34,-77],[-22,-43],[-58,-14],[-39,9],[-19,63],[-9,73],[-38,23],[-70,2],[-43,46],[31,-144],[-12,-57],[-31,-51],[-41,-6],[-55,30],[-64,-14],[-32,46],[-18,27],[-29,28],[-33,0],[-13,0],[-70,-4],[-32,-25],[-15,-24],[-17,-24],[-12,-31],[-6,-11],[-23,-40],[-31,-41],[-52,-4]],[[73966,6657],[-20,16],[-2,2],[-27,25],[-5,8],[-4,6],[-13,20],[-13,20],[-18,14],[-56,0],[-14,41],[-24,50],[-10,22],[-9,16],[-1,13],[-9,66],[0,2],[3,51],[2,23],[0,102],[-2,40],[-2,39],[-1,27],[-1,23],[1,26],[-1,29],[-5,21],[-1,3],[-3,52],[-1,40],[5,56],[30,88],[2,22],[12,38],[6,37],[11,30],[2,6],[10,22],[45,93],[12,35],[11,24],[8,25],[15,44],[9,18],[14,26],[22,38],[27,47],[44,89],[13,39],[8,33],[7,42],[2,4],[7,18],[12,17],[-3,67],[-10,22],[-15,16],[-13,19],[-15,5],[-10,-24],[-22,-23],[-12,-12],[-4,-23],[-27,11],[-31,11],[-18,31],[-3,6],[-15,12],[-26,6]],[[73840,8469],[1,6],[21,83],[29,115],[11,59],[2,9],[19,71],[10,52],[33,150],[19,94],[19,123],[17,39]],[[78544,2288],[-11,-11],[-52,13],[-37,0],[-42,5],[-35,36],[-10,70],[-4,26],[37,45],[27,5],[32,6],[30,28],[26,-4],[1,0],[17,-8],[4,-15],[14,-53],[0,-36],[5,-29],[11,-64],[-13,-14]],[[77048,2238],[-26,-15],[-38,12],[-26,8],[-2,37],[-1,38],[32,91],[13,33],[33,79],[44,-62],[-12,-46],[-18,-15],[-16,-40],[-3,-7],[6,-36],[14,-77]],[[77800,2258],[-5,-7],[-40,41],[-31,53],[48,73],[2,3],[7,44],[26,64],[10,13],[9,11],[10,-36],[9,-30],[8,-105],[-24,-72],[-29,-52]],[[79454,2483],[-37,-16],[15,60],[12,12],[13,12],[35,25],[42,24],[15,9],[-53,-109],[-42,-17]],[[77724,2620],[24,-27],[31,26],[30,-2],[-20,-62],[-9,-11],[-9,-13],[-21,-73],[-41,-51],[-16,0],[-16,-1],[-13,7],[-54,-33],[-41,-117],[-47,-3],[-6,53],[45,146],[-4,19],[0,2],[20,26],[25,5],[16,4],[10,16],[15,9],[11,2],[11,2],[0,1],[0,1],[26,26],[33,48]],[[79000,2410],[-88,-19],[24,53],[8,34],[4,14],[4,26],[8,45],[23,57],[17,1],[96,7],[9,7],[7,-5],[17,-13],[9,-30],[5,-19],[-72,-38],[-35,-49],[-36,-71]],[[78256,2169],[8,-39],[-13,-57],[-16,-74],[-47,-20],[-40,-2],[-84,0],[-559,-39],[-16,-4],[-55,-17],[-35,-6],[-51,-3],[-60,1],[-42,2],[-47,1],[-57,9],[-50,5],[-72,0],[-47,0],[-52,-3],[-26,1],[-57,-3],[-36,2],[-37,-1],[-43,2],[-45,-1],[-36,6],[-26,3],[-73,13],[-29,7],[-56,6],[-132,20],[-76,12],[-50,6],[-48,-16],[-164,-44],[4,42],[61,78],[12,15],[43,47],[41,14],[35,1],[37,-14],[80,-37],[63,-12],[44,-6],[44,-5],[56,-8],[44,7],[44,3],[56,-5],[27,-2],[46,-3],[59,0],[55,0],[69,69],[83,17],[82,17],[37,6],[41,4],[72,7],[104,11],[42,-1],[33,3],[36,1],[31,2],[65,1],[12,0],[179,14],[40,7],[26,-9],[36,-13],[44,5],[29,3],[28,7],[-40,46],[-23,39],[44,-1],[45,-20],[23,-24],[18,-37],[28,-48],[41,-2],[27,9],[-4,51],[-1,23],[-2,13],[-3,24],[-10,68],[-41,57],[-1,1],[-16,47],[-13,41],[-1,66],[23,55],[4,27],[7,5],[19,14],[26,-19],[29,-13],[12,-10],[34,-28],[38,-18],[33,-29],[66,-57],[17,-52],[14,-44],[0,-1],[-7,-43],[-5,-27],[-15,-14],[-17,-14],[-4,-19],[-8,-33],[-6,-9],[-4,-4],[2,-53]],[[78591,2668],[34,-29],[89,5],[13,-2],[10,-1],[22,-3],[13,-2],[4,2],[33,23],[38,-8],[21,26],[25,-26],[-1,-46],[0,-31],[0,-23],[0,-22],[-29,-54],[-29,-36],[-16,-12],[-17,-13],[-3,-2],[-21,-43],[-2,-2],[-4,-9],[-30,-18],[-5,-2],[-40,-8],[-37,-10],[-10,-3],[-21,12],[-6,3],[-21,42],[-8,16],[-50,98],[-1,3],[-12,77],[11,49],[5,18],[8,26],[11,30],[26,-25]],[[79192,2633],[-1,-3],[-32,21],[14,93],[12,42],[8,30],[29,-12],[2,-28],[-3,-40],[0,-3],[-4,-22],[-7,-49],[-18,-29]],[[77045,2752],[-36,-65],[-54,55],[17,63],[37,12],[19,-33],[17,-32]],[[79425,2613],[-23,-6],[-119,22],[-25,11],[-8,4],[7,122],[34,26],[30,12],[93,36],[51,19],[39,-39],[24,-25],[-24,-31],[-25,-75],[-3,-8],[-11,-27],[-10,-18],[-10,-17],[-20,-6]],[[78847,2894],[84,-22],[41,51],[26,-1],[16,-7],[20,-9],[4,-64],[13,-71],[-40,-15],[-32,-35],[-49,-10],[-33,14],[-25,15],[-45,37],[-27,95],[-15,75],[20,23],[22,-42],[20,-34]],[[80174,2539],[-61,-55],[-130,-46],[-68,-27],[-139,-46],[-84,-36],[-92,-44],[-44,-12],[-50,-14],[-97,-32],[-128,-37],[-395,-142],[-603,-235],[38,118],[68,122],[31,17],[53,25],[36,-7],[51,-15],[33,39],[30,51],[35,23],[20,34],[1,2],[40,-12],[38,25],[28,16],[28,13],[43,13],[46,-11],[50,19],[41,17],[23,35],[53,75],[36,46],[33,22],[31,15],[22,11],[23,46],[6,12],[7,15],[17,-14],[5,-4],[12,-17],[26,-36],[12,-2],[10,-5],[16,-60],[-11,-14],[-54,-72],[-47,-29],[-5,-1],[-27,-10],[14,-48],[27,0],[37,13],[52,-3],[86,23],[50,28],[-26,78],[163,98],[22,14],[49,29],[26,13],[26,44],[4,14],[16,66],[46,9],[13,3],[8,-2],[31,-5],[20,-5],[34,1],[3,15],[3,15],[2,10],[0,3],[2,11],[4,40],[1,7],[0,10],[0,41],[0,2],[0,6],[3,1],[4,2],[3,1],[22,7],[26,9],[37,3],[26,3],[-15,64],[25,50],[32,-6],[6,-2],[19,-33],[25,-51],[3,-12],[8,-31],[3,-44],[17,6],[5,1],[11,0],[15,1]],[[78674,2702],[-28,-10],[-39,14],[-64,54],[25,52],[3,1],[0,2],[0,2],[19,36],[8,16],[-6,103],[12,46],[8,30],[7,-18],[12,-35],[8,-45],[6,-32],[69,-44],[14,-22],[13,-21],[14,-83],[-22,-12],[-12,-7],[-38,-24],[-9,-3]],[[79432,2913],[-4,-2],[-26,9],[-24,10],[-33,15],[-21,42],[-3,4],[2,21],[2,39],[22,36],[4,8],[25,14],[26,14],[46,-75],[36,-10],[34,-9],[16,-7],[18,-7],[-4,-34],[-33,-41],[-70,-22],[-13,-5]],[[79455,3253],[31,-73],[-21,8],[-16,6],[-16,7],[-18,8],[-38,5],[3,33],[1,16],[22,42],[5,24],[5,24],[16,2],[10,-37],[16,-65]],[[80168,3568],[-38,-19],[-23,20],[-12,-70],[12,-85],[-75,-8],[-12,16],[-26,20],[-23,6],[-22,28],[-41,1],[-28,5],[-109,-63],[-5,-10],[-22,-27],[-32,-38],[-45,-4],[-29,25],[-20,50],[-12,66],[-21,60],[-22,-19],[-13,-86],[-27,-30],[-29,1],[-34,-16],[-39,-3],[-29,11],[-29,-95],[-27,-54],[-3,-15],[-10,-53],[-29,-31],[-37,-39],[-2,-19],[-4,-35],[-2,-22],[-2,-14],[-6,-38],[0,-2],[-2,-11],[-5,-47],[-5,-42],[-9,-34],[-15,-18],[-15,-2],[-4,0],[-25,41],[-2,28],[-3,33],[-25,-6],[-16,-3],[-10,46],[-2,18],[-3,34],[9,80],[6,32],[-74,-9],[-27,-3],[-2,0],[-55,47],[-48,65],[-41,-9],[-36,-67],[-38,-12],[-64,94],[-51,-2],[-41,-84],[-39,-21],[-33,58],[-30,35],[-35,34],[-23,-53],[-10,-29],[-7,-20],[37,-95],[-4,-36],[-6,-44],[1,-13],[4,-51],[46,-35],[-17,-179],[-2,-45],[-5,-2],[-33,-15],[-152,-75],[-43,34],[-16,26],[-37,56],[4,41],[6,48],[-8,69],[-14,23],[-17,28],[-43,2],[-47,29],[-18,88],[-9,2],[-35,22],[-19,7],[-33,-45],[0,-1],[0,-2],[27,-66],[-13,-106],[-5,-50],[-55,-7],[-155,50],[-15,60],[-28,61],[-24,32],[-6,-98],[5,-81],[-21,-61],[-43,-28],[-26,-17],[-14,-50],[-69,-55],[-56,-8],[7,-83],[-7,-86],[-48,-108],[-87,-68],[-73,-12],[-16,6],[-52,5],[-37,3],[-32,3],[-1,1],[0,2],[-11,-2],[-39,-8],[-34,15],[-8,26],[-1,26],[12,67],[6,33],[4,18],[7,30],[28,60],[12,49],[6,23],[-12,11],[-40,-20],[-34,10],[-31,18],[13,73],[12,45],[46,65],[2,31],[5,60],[-11,62],[-38,14],[-23,-14],[-40,15],[-44,-24],[-27,-45],[-55,-7],[-34,-5],[-1,-11],[-3,-43],[12,-50],[47,15],[4,-22],[11,-59],[39,-8],[28,8],[11,-40],[1,-28],[-7,-35],[-9,-48],[-13,-70],[-23,-21],[-55,-40],[-62,14],[-14,110],[-7,11],[-21,36],[-43,20],[18,46],[2,107],[17,39],[-7,15],[-2,2],[-34,-10],[-28,-50],[-32,-103],[-48,-27],[-3,-13],[-21,-74],[-31,-72],[5,-80],[49,-15],[38,6],[6,53],[37,47],[4,6],[6,9],[37,56],[30,-8],[-12,-76],[-13,-46],[16,-22],[14,-19],[19,-41],[47,-10],[7,-26],[7,-26],[0,-58],[-6,-31],[-4,-19],[-64,-24],[-43,-2],[-49,-12],[-44,-5],[-123,38],[-59,8],[-56,7],[-22,1],[-106,1],[-26,28],[-16,-1],[-17,-7],[-16,-6]],[[76200,2182],[-3,43],[1,26],[0,11],[3,68],[-2,25],[-13,32],[-14,10],[-11,19],[-26,56],[-8,20],[-9,27],[-13,37],[-2,4],[-15,-4],[-13,11],[-14,-6],[-20,-13],[-35,-20],[-22,1],[-30,10],[-31,7],[-26,31],[-18,21],[-11,14],[-18,4],[-4,23],[-4,54],[-4,47]],[[75838,2740],[40,46],[8,6],[88,70],[10,8],[27,21],[34,26],[26,32],[31,17],[11,76],[11,81]],[[76124,3123],[13,14],[14,-3],[9,-17],[-7,-21],[-4,-30],[15,5],[14,16],[-10,44],[0,1],[-11,31],[1,28],[-6,35],[-1,25],[2,37],[3,45],[-5,23],[14,-3],[13,9],[13,-1],[18,11],[20,14],[18,10],[29,7],[13,6],[18,9],[14,7],[25,13],[11,22],[8,19],[-6,34],[-5,59],[-7,32],[-11,26],[-8,31],[-5,29],[10,18],[-5,20],[-3,12],[0,13],[-1,16],[0,32],[4,30],[0,35],[1,30],[4,37],[6,24],[5,22],[6,27],[5,36],[2,35],[-2,24],[0,35],[1,25],[-2,30],[-1,19],[-2,46],[-3,24],[1,33],[8,139],[2,24],[2,25],[-2,37],[-4,27],[0,22],[-1,27],[-1,32],[-6,47],[-5,36],[-2,19],[-1,9],[-3,22],[-4,31],[-4,22],[-4,30],[-4,21],[-4,30],[-2,13],[-2,10],[-6,27],[-8,35],[22,16],[14,10],[13,9],[17,11],[5,2],[9,4],[14,6],[7,3],[7,4],[18,8],[27,13],[20,7],[3,1],[14,4],[5,1],[20,5],[2,0],[17,4],[9,2],[9,2],[1,1],[3,1],[14,5],[17,6],[7,20],[8,22],[15,40],[9,22],[8,22],[8,23],[9,21],[8,23],[9,20],[8,19],[2,14],[2,17],[0,30],[-3,47],[-3,41],[-1,46],[-4,39],[-4,54],[-9,35],[-18,17],[-23,21],[-11,13],[-19,22],[-21,25],[-14,16],[-12,13],[-12,13],[-12,12],[-1,2],[-12,13],[-25,28],[-46,53],[-8,11],[-3,4],[-19,16],[-14,14],[-26,31],[-13,13],[-16,17],[-10,13],[-11,11],[-20,19],[-11,13],[-22,23],[-2,2],[-37,39],[-13,12],[-20,24],[-3,2],[-9,8],[-14,16],[-34,35],[-16,18],[-11,13]],[[76096,6280],[-8,72],[-32,27],[-22,36],[-20,27],[-5,65],[-7,136],[40,49],[-36,35],[-44,45],[-39,52],[-29,31],[-15,37],[-9,99],[24,86],[55,24],[35,41],[24,59],[4,57],[-10,71],[-24,40],[-14,94],[29,36],[13,61],[46,-68],[15,-59],[45,14],[43,-32],[18,-32],[19,-44],[47,-12],[32,-4],[15,-40],[26,-41],[41,-1],[40,-25],[34,-47],[23,-53],[9,-69],[14,-76],[16,-68],[-11,-57],[21,-83],[32,-90],[22,46],[-10,81],[5,79],[18,57],[9,60],[23,43],[26,18],[2,76],[-10,47],[-2,53],[4,58],[15,72],[13,68],[17,35],[-2,8],[-78,-27],[-18,26],[-5,-2],[-19,38],[-10,43],[-15,34],[-36,-63],[-63,-34],[-60,5],[-30,-57],[-24,67],[12,41],[-14,106],[-60,89],[-34,66],[35,22],[30,24],[26,23],[29,30],[9,72],[-18,96],[-14,94],[36,16],[54,-14],[38,21],[29,52],[42,21],[35,-20],[41,-30],[46,-27],[33,-14],[54,-31],[56,-34],[43,-24],[45,-29],[38,-20],[43,-15],[49,-41],[7,-61],[39,-103],[34,-77],[19,-64],[25,-35],[30,-65],[28,-59],[32,-58],[42,-77],[55,-36],[-63,-50],[17,-60],[7,-54],[5,-79],[-6,-67],[4,-55],[25,-59],[-1,-96],[31,22],[23,45],[9,74],[3,69],[8,56],[-7,74],[0,57],[-15,130],[-31,99],[-22,55],[-10,44],[-6,66],[-1,81],[8,84],[12,51],[55,75],[17,46],[-37,6],[-26,24],[-17,48],[-19,85],[-13,77],[4,101],[-7,74],[28,97],[55,67],[21,49],[31,60],[38,85],[16,68],[43,29],[24,50],[18,54],[6,58],[46,-34],[32,-46],[27,-5],[48,-19],[26,16],[27,6],[49,59],[60,15],[30,-12],[26,20],[43,7],[31,30],[15,45],[26,51],[54,23],[49,3],[51,2],[46,3],[28,42],[27,19],[13,37],[33,25],[52,10],[62,-36],[38,-39],[42,-31],[44,-25],[34,-17],[29,0],[46,24],[53,29],[32,11],[158,150],[87,-38],[117,-204],[8,-129],[-59,-9],[-79,-134],[-3,-219],[-114,-19],[-74,5],[-8,100],[82,76],[43,167],[6,171],[-44,72],[-51,-20],[-37,-51],[-32,-62],[-51,-24],[-42,2],[-22,-7],[-4,-3],[-11,-26],[13,-95],[-22,-22],[-10,-59],[24,-62],[0,-2],[0,-3],[0,-5],[-1,-12],[1,-1],[0,-56],[3,-70],[26,-66],[14,-48],[11,-42],[27,-33],[32,4],[27,15],[40,3],[26,-16],[28,12],[39,-39],[53,-41],[30,-8],[33,0],[24,5],[27,25],[35,-24],[36,-38],[41,11],[-24,78],[-7,80],[-29,40],[-16,46],[-9,42],[-9,43],[20,60],[7,67],[78,22],[36,7],[27,7],[41,-8],[20,-55],[20,-60],[14,-57],[-2,-75],[14,-105],[40,-71],[37,-42],[31,-13],[57,-39],[35,-61],[62,-38],[-14,-58],[12,-39],[21,-50],[34,-11]],[[73966,6657],[0,-42],[0,-50],[-15,-27],[-30,-56],[-43,-66],[-25,-40],[-16,-26],[-36,-41],[-6,-6],[-41,31],[-20,17],[-34,30],[36,94],[26,49],[53,10],[-12,29],[11,54],[-16,86],[-20,-88],[-40,-48],[-15,-20],[-19,-25],[-12,-30],[-8,-21],[-25,-64],[-23,-29],[-22,-37],[-8,-12],[8,-74],[1,-12],[-12,-91],[-3,-5],[-126,-254],[-33,-51],[-23,-38],[-1,-3],[-9,-15],[-6,-12],[-12,-30],[-28,-48],[-18,-36],[-41,-78],[-5,-11],[-9,-20],[0,-1],[-15,-31],[-17,-35],[-10,-43],[-11,-50],[-10,-109],[-4,-70],[24,-46],[4,-57],[-23,-159],[-21,-95],[-9,-32],[-11,-37],[-15,-31],[-27,-15],[-13,-8],[-18,-5],[-55,-14],[-45,2],[-23,4],[-2,-1],[-83,-28],[-49,-64],[-26,-38],[-26,-31],[-71,-47],[-37,5],[-6,6],[-6,7],[-10,9],[-19,71],[-4,18],[-9,44],[4,44],[2,21],[16,65],[16,167],[44,0],[15,104],[1,13],[4,48],[-41,13],[2,19],[4,36],[38,2],[4,63],[0,13],[-4,88],[-4,35],[-4,44],[28,-1],[5,57],[6,53],[-15,6],[-13,5],[21,60],[0,53],[25,72],[14,41],[19,32],[8,25],[7,25],[33,34],[15,66],[35,31],[14,74],[-5,38],[-2,15],[29,-17],[10,54],[16,41],[17,39],[32,61],[39,101],[48,122],[68,170],[54,134],[85,211],[31,80],[19,38],[22,25],[51,103],[16,60],[36,113],[15,46],[37,137],[12,58],[-5,31],[-6,42],[-3,58],[1,1],[21,22],[7,12],[84,160],[61,163],[3,16],[6,41],[9,61],[1,6],[38,82],[11,23],[2,7],[3,0],[70,11],[-34,26]],[[74988,2156],[30,-45],[-15,-49],[-50,-14],[-23,30],[-15,51],[-3,11],[-37,-20],[-38,7],[31,81],[8,3],[42,21],[22,-23],[4,-4],[44,-49]],[[75282,2349],[-9,-83],[-31,19],[-19,35],[-4,51],[21,21],[42,-43]],[[76200,2182],[-26,0],[-38,-3],[-29,7],[-27,-29],[-42,-28],[-29,-30],[-48,-6],[-38,-1],[-61,-3],[-65,5],[-51,-2],[-26,-6],[-91,-31],[-63,-26],[-46,-16],[-46,-11],[-69,-18],[-45,-11],[-28,-8],[-50,-26],[-98,-48],[-37,-17],[-64,-32],[-42,-21],[-56,-21],[-27,-15],[-38,-25],[-29,-18],[-39,-23],[-39,-29],[-68,-47],[-46,-33],[-25,-17],[-22,-20],[-47,-16],[-104,-59],[-84,-52],[-160,-78],[-57,-16],[-32,-14],[-86,-8],[-44,-14],[-120,-84],[-166,-125],[-109,-82],[4,168],[5,108],[57,43],[30,-14],[43,46],[35,55],[46,21],[50,6],[44,27],[34,30],[31,3],[23,-24],[47,-14],[54,13],[55,36],[16,40],[55,25],[41,-1],[35,2],[28,7],[44,-2],[111,97],[35,30],[55,42],[42,42],[33,29],[30,26],[22,20],[40,20],[48,-11],[86,9],[37,11],[64,30],[44,37],[31,21],[44,16],[40,19],[6,6],[28,26],[36,35],[36,31],[5,9],[14,7],[66,125],[30,6],[43,1],[49,11],[84,100],[65,64],[11,26],[34,36],[35,-3],[29,-45],[-13,-49],[-14,-88],[16,-47],[23,-38],[43,6],[-12,40],[-3,65],[2,76],[7,71],[-27,25],[-21,12],[-1,48],[39,93],[46,53]],[[75417,2385],[-19,0],[-22,19],[-19,16],[7,69],[35,73],[2,52],[5,15],[4,12],[14,22],[19,27],[30,73],[6,12],[15,32],[34,2],[31,-3],[14,-17],[14,-17],[24,-49],[20,-52],[36,-56],[-27,-36],[-22,-29],[-36,-25],[-87,-73],[-44,-55],[-9,-12],[-25,0]],[[75373,2603],[-6,-7],[-18,69],[-21,87],[-6,23],[20,62],[37,31],[32,29],[35,-1],[16,-41],[-1,-4],[-1,-8],[-25,-21],[-6,-21],[-19,-77],[-2,-31],[-3,-29],[-17,-48],[-15,-13]],[[74986,2596],[5,162],[3,136]],[[74994,2894],[16,95],[-13,155],[31,5],[68,-50],[34,10],[10,-34],[10,-56],[4,-75],[18,-35],[8,-9],[9,-110],[2,-30],[7,-91],[-7,-18],[29,-65],[5,-51],[0,-62],[-25,-78],[-9,-53],[-8,-60],[-16,-45],[-69,-57],[-40,16],[-47,-7],[-29,23],[36,50],[69,35],[19,-12],[25,28],[-2,83],[26,75],[-4,65],[-39,-7],[-14,29],[-15,34],[-43,21],[-54,-17]],[[76124,3123],[-39,-3],[-25,-41],[-85,-62],[-52,-39],[-52,-39],[-41,-66],[-9,-35],[-5,-16],[-36,-14],[-66,77],[-61,55],[-37,30],[-37,26],[-35,40],[-28,34],[-163,126],[-101,76],[-41,40],[-87,65],[-38,-2],[-33,14],[-27,-21],[-59,1],[-7,-69],[-51,-15],[-74,-4],[-44,-9],[-30,57],[4,67],[-37,22],[-31,-4]],[[74697,3414],[-18,46],[-19,30],[-7,14],[-2,3],[-14,30],[-10,25],[-9,22],[21,18],[16,8],[13,5],[14,5],[3,37],[-6,34],[21,9],[13,7],[-5,38],[-5,33],[-5,35],[-5,36],[0,2],[-5,29],[-22,-5],[-13,-3],[-5,34],[-3,26],[-3,23],[-5,35],[-4,28],[-4,29],[-13,4],[-6,39],[-4,28],[-24,-10],[-3,26],[0,2],[-3,28],[-3,26],[-2,15],[-5,31],[-4,31],[-4,30],[-8,70],[-2,25],[-67,-13],[-69,-65],[-16,-22],[-19,-27],[-13,-17],[-30,-31],[-25,-19],[-9,-18],[-16,-22],[-13,5],[-12,-11],[-12,-11],[-19,38],[-12,-19],[-9,-19],[-10,-21],[0,-1],[-57,115],[-1,35],[-10,34],[-1,22],[-5,6],[-6,6],[-16,16],[-13,14],[-1,28],[9,17],[-14,17],[-12,10],[-13,14],[-11,11],[-15,15],[-18,18],[6,33],[-19,20],[-1,31],[-16,22],[-18,20],[-19,20],[-19,16],[-17,16],[-12,15],[-17,17],[9,32],[-12,31],[0,1],[-5,23],[-18,19],[-9,29],[5,22],[10,20],[-13,39],[2,28],[-14,36],[-28,79],[-9,30],[-15,26],[-1,2],[-29,11],[-34,13],[-40,22],[-32,42],[-7,23],[-24,59],[-51,38],[-79,44],[-2,1],[-13,3],[-17,-6],[-69,-41]],[[73386,5333],[-27,22],[7,50],[15,20],[12,16],[12,44],[5,17],[38,82],[14,45],[34,92],[5,9],[6,11],[75,162],[14,30],[40,66],[15,15],[29,7],[30,62],[-13,17],[-30,39],[13,41],[20,35],[8,22],[13,-13],[14,7],[15,-5],[28,-18],[21,-2],[17,34],[9,9],[9,11],[12,12],[35,51],[13,18],[22,31],[11,16],[19,36],[37,50],[36,47],[53,-18],[33,-64],[17,50],[32,-37],[29,-27],[26,-32],[-21,-42],[17,-33],[22,-34],[21,-42],[7,-77],[29,-31],[71,15],[-8,98],[94,46],[47,10],[35,-23],[110,-97],[69,-73],[-22,-67],[-62,-35],[46,-113],[45,-42],[49,-22],[43,13],[42,40],[28,65],[-46,35],[-35,68],[-2,48],[15,70],[-8,73],[-7,63],[-78,35],[-32,51],[20,26],[29,19],[20,20],[2,54],[-7,66],[59,22],[63,17],[30,15],[33,21],[24,-112],[4,-53],[33,-18],[33,40],[41,68],[6,75],[11,5],[31,12],[27,42],[29,29],[107,-80],[38,-16],[37,-11],[29,11],[43,-7],[37,-16],[26,-51],[22,-89],[13,8],[20,12],[64,0],[44,19],[4,81],[34,47],[43,-24],[18,-50],[23,-59],[13,-62],[-38,-27],[51,-97],[37,-74],[12,-41],[27,-92],[25,-37],[21,-39],[26,-45],[63,-42],[5,-3],[-2,8],[-27,108],[16,53],[-11,90],[11,56],[19,49],[32,10],[27,-43],[15,-32],[6,25]],[[74736,2241],[-62,-35],[-86,99],[52,53],[109,-60],[-13,-57]],[[74986,2596],[-18,-32],[-24,44],[-28,67],[43,3],[-12,61],[17,77],[9,43],[21,35]],[[74487,2639],[-60,-2],[-25,42],[12,77],[57,61],[101,94],[34,-45],[-25,-95],[-2,-68],[-92,-64]],[[74697,3414],[-11,-26],[-5,-68],[11,-17],[7,-57],[-73,-10],[-34,-37],[-45,-75],[-58,-63],[-34,19],[-19,-29],[-71,-110],[-52,-67],[-23,-19],[-17,-62],[-42,-48],[-11,-36],[6,-14],[66,-167],[-15,-28],[-18,1],[-13,-17],[-1,-89],[98,4],[36,-147],[46,-188],[32,-119],[-43,-84],[-105,-51],[-108,-27],[-57,79],[43,12],[6,46],[-30,77],[-25,39],[-40,-27],[-31,13],[-39,-38],[-40,-1],[14,-85],[-38,-15],[-49,15],[-76,27],[-21,47],[-32,-39],[-45,-15],[-34,6],[-34,2],[-44,5],[-27,-6],[-35,2],[-38,-16],[65,-30],[48,-6],[100,2],[14,-106],[-59,-15],[-31,-5],[-55,3],[-24,-2],[-38,-11],[-41,-12],[-35,-2],[-29,-2],[-35,-6],[-27,-1],[-47,-5],[-46,-14],[-35,-10],[-43,-14],[-54,-10],[-49,-2],[-55,-5],[-44,-8],[-30,-7],[-41,-1],[-56,10],[-71,37],[-53,23],[-26,34],[-4,61],[27,55],[51,19],[32,-1],[49,-6],[133,-34],[-36,51],[22,66],[-66,-50],[-58,35],[21,79],[-3,101],[-30,26],[-26,62],[-47,41],[-46,49],[-50,40],[-36,8],[-23,9],[-74,26],[-64,25],[-47,46],[-19,40],[-4,5],[-26,36],[-37,112],[-10,64],[-8,60],[-1,86],[10,95],[19,70],[18,61],[21,71],[10,55],[31,64],[27,0],[12,40],[24,70],[50,-32],[-11,45],[31,45],[-17,39],[63,97],[35,25],[36,-38],[3,74],[59,75],[63,-42],[-14,67],[9,65],[-8,59],[-85,-121],[6,97],[-42,49],[-41,45],[-26,61],[9,64],[26,21],[15,2],[38,35],[39,43],[16,37],[7,16],[1,3],[14,11],[14,11],[11,16],[13,13],[12,29],[8,27],[6,20],[15,26],[3,29],[6,24],[9,24],[6,23],[10,31],[29,73],[17,28],[30,0],[21,18],[12,-1],[16,-1],[13,-2],[21,2],[17,1],[19,5],[15,3],[36,1],[28,-47],[50,-20],[-18,95],[46,-1],[6,25],[-2,31],[11,69],[2,12],[5,28],[15,67],[15,32],[12,25],[31,70],[14,25],[0,84],[-2,51],[-5,34],[-5,100],[24,28]],[[71896,3385],[27,-14],[19,-28],[30,-35],[29,-47],[9,-59],[0,-69],[2,-135],[6,-97],[10,-40],[19,-53],[21,-76],[31,-36],[-10,-45],[42,-105],[45,-80],[48,-80],[0,-4],[-15,-79],[-62,-190],[-74,-71],[-50,-96],[-69,-84],[-38,-48],[-31,-49],[-59,-73],[-42,-65],[-19,-32],[-30,-39],[-49,-85],[-60,-81],[-37,-60],[-37,-76],[-45,-23],[-52,-92],[-32,-10],[-34,-44],[-43,-30],[-37,-49],[-46,-113],[-94,-149],[-15,-5],[-45,83],[7,38],[62,5],[57,72],[39,69],[1,18],[-25,63],[-35,18],[-53,-4],[-25,-21],[-21,-28],[-21,-31],[-4,-90],[-30,-55],[-41,-22],[-28,-36],[-35,-61],[-45,-43],[-69,-31],[-68,-84],[-36,-25],[-31,4],[-85,-60],[-40,6],[-24,-20],[-37,-36],[-58,-91],[-21,-51],[-44,-11],[-41,45],[-63,-11],[-65,-28],[-9,-46],[-20,-58],[-28,-41],[-23,-42],[-40,-25],[-30,-2],[-51,-5],[-31,13],[-41,-16],[-50,-15],[-41,-56],[-40,-26],[-45,-2],[-47,4],[-33,58],[-29,68],[-14,61],[-7,62],[26,44],[16,81],[71,70],[24,40],[33,2],[24,40],[-32,31],[-7,73],[24,137],[-7,61],[-38,56],[2,45],[-29,94],[11,59],[36,24],[83,80],[27,38],[74,91],[38,7],[49,-9],[50,-3],[43,13],[24,46],[20,77],[1,73],[34,137],[29,36],[-8,59],[11,77],[11,56],[18,98],[-4,66],[23,55],[42,75],[24,34],[35,10],[-24,30],[-10,39],[8,51],[-34,-21],[-13,52],[-31,48],[3,76],[10,97],[43,3],[58,-30],[-20,71],[-31,4],[-25,9],[0,246],[25,88],[26,65],[7,9],[15,23],[13,18],[95,139],[29,16],[47,12],[10,-26],[39,32],[45,-20],[25,-34],[28,-8],[40,3],[48,-47],[31,6],[33,-11],[17,-42],[28,23],[34,-9],[56,19],[24,14],[17,11],[46,22],[46,22],[33,-11],[47,-21],[55,-9],[39,35],[42,30],[55,32],[33,22],[57,7],[40,3],[27,-36],[21,27],[36,7],[36,9],[59,37],[42,21],[38,-7],[49,13]]],"transform":{"scale":[0.00007906378233782407,0.000045196424104239214],"translate":[-79.76275987899987,40.49626430000018]}} diff --git a/src/js/config/mapconfig/mapfiles/county/oh-counties.json b/src/js/config/mapconfig/mapfiles/county/oh-counties.json new file mode 100644 index 00000000..1978a8e3 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/oh-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-84.82028842799986,38.40350870700007,-80.51386807799992,42.324312188000135],"geometries":[{"type":"MultiPolygon","properties":{"name":"OH"},"id":"39000","arcs":[[[0,1]],[[2,3]],[[4,5,6,7,8,9,10,11,12,13,14],[15],[16],[17],[18],[19],[20],[21],[22],[23]]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39007","arcs":[[24,25,26,-15,27]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39085","arcs":[[28,29,-5,-27]]},{"type":"MultiPolygon","properties":{"name":"OH"},"id":"39095","arcs":[[[-20]],[[30,31,32,33,34,-2,35,-4,36,-13]],[[-19]]]},{"type":"MultiPolygon","properties":{"name":"OH"},"id":"39123","arcs":[[[-23]],[[-12,37,-10,38,39,-31]],[[-21]],[[-17]],[[-16]],[[-18]]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39051","arcs":[[40,41,42,-34]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39055","arcs":[[43,44,45,-29,-26]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39171","arcs":[[46,47,48,-42]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39035","arcs":[[-46,49,50,51,52,-6,-30]]},{"type":"MultiPolygon","properties":{"name":"OH"},"id":"39043","arcs":[[[53,54,55,-8]],[[-22]]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39173","arcs":[[-40,56,57,58,59,-32]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39093","arcs":[[-53,60,61,62,-54,-7]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39155","arcs":[[63,64,65,-44,-25]]},{"type":"MultiPolygon","properties":{"name":"OH"},"id":"39143","arcs":[[[-24]],[[-38,-11]],[[-9,-56,66,67,-57,-39]]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39069","arcs":[[-33,-60,68,69,-47,-41]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39039","arcs":[[70,71,72,-48,-70]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39153","arcs":[[73,74,75,76,-51]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39133","arcs":[[-66,77,78,-74,-50,-45]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39077","arcs":[[-63,79,80,81,82,-67,-55]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39103","arcs":[[-77,83,84,-61,-52]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39147","arcs":[[-83,85,86,87,-58,-68]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39125","arcs":[[88,89,90,-72]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39063","arcs":[[-88,91,92,93,94,-59]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39137","arcs":[[-95,95,96,-89,-71,-69]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39099","arcs":[[97,98,99,-78,-65]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39005","arcs":[[-85,100,101,102,103,-80,-62]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39033","arcs":[[104,105,106,107,-86,-82]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39139","arcs":[[-104,108,109,-105,-81]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39175","arcs":[[-108,110,111,-92,-87]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39169","arcs":[[-76,112,113,-101,-84]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39161","arcs":[[-97,114,115,116,117,-90]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39151","arcs":[[-100,118,119,120,121,-113,-75,-79]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39029","arcs":[[122,123,124,-119,-99]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39003","arcs":[[-94,125,126,-115,-96]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39065","arcs":[[-112,127,128,129,130,-126,-93]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39019","arcs":[[-125,131,132,133,-120]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39107","arcs":[[134,135,136,137,-117]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39117","arcs":[[-110,138,139,140,-106]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39101","arcs":[[-141,141,142,-128,-111,-107]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39011","arcs":[[-131,143,144,-135,-116,-127]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39075","arcs":[[-122,145,146,147,-102,-114]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39157","arcs":[[-134,148,149,150,-146,-121]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39081","arcs":[[151,152,153,-132,-124]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39083","arcs":[[154,155,156,-139,-109,-103,-148]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39091","arcs":[[-130,157,158,159,-144]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39159","arcs":[[160,161,162,-158,-129,-143,163]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39149","arcs":[[-160,164,165,166,-136,-145]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39031","arcs":[[-151,167,168,169,-155,-147]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39041","arcs":[[-157,170,171,-164,-142,-140]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39067","arcs":[[-154,172,173,-149,-133]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39037","arcs":[[-167,174,175,176,177,-137]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39089","arcs":[[-170,178,179,180,181,-171,-156]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39021","arcs":[[-163,182,183,184,-165,-159]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39059","arcs":[[185,186,-168,-150,-174,187]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39109","arcs":[[-185,188,189,-175,-166]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39013","arcs":[[-153,190,191,192,-188,-173]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39119","arcs":[[-187,193,194,195,-179,-169]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39049","arcs":[[-182,196,197,198,-161,-172]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39097","arcs":[[199,200,201,202,-183,-162,-199]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39023","arcs":[[-203,203,204,-189,-184]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39121","arcs":[[-193,205,206,207,-194,-186]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39045","arcs":[[-181,208,209,210,-197]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39127","arcs":[[211,212,213,-209,-180,-196]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39113","arcs":[[-205,214,215,216,217,-176,-190]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39135","arcs":[[-218,218,219,-177]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39111","arcs":[[220,221,-206,-192]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39057","arcs":[[-202,222,223,224,-215,-204]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39129","arcs":[[-211,225,226,227,-200,-198]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39115","arcs":[[-208,228,229,-212,-195]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39047","arcs":[[-228,230,231,232,-223,-201]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39073","arcs":[[233,234,235,-226,-210,-214]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39167","arcs":[[-222,236,237,-229,-207]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39017","arcs":[[238,239,240,-219,-217]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39165","arcs":[[-225,241,242,243,-239,-216]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39027","arcs":[[244,245,-242,-224,-233,246]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39009","arcs":[[-238,247,248,249,-234,-213,-230]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39141","arcs":[[-236,250,251,252,253,-231,-227]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39163","arcs":[[-250,254,255,256,-251,-235]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39071","arcs":[[-254,257,258,259,-247,-232]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39061","arcs":[[-244,260,261,-240]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39025","arcs":[[262,-261,-243,-246,263]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39015","arcs":[[264,265,-264,-245,-260]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39079","arcs":[[266,267,268,269,-252,-257]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39105","arcs":[[270,-255,-249,271]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39131","arcs":[[272,273,-258,-253,-270]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39001","arcs":[[274,275,-265,-259,-274]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39053","arcs":[[276,277,-267,-256,-271]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39145","arcs":[[-269,278,279,-275,-273]]},{"type":"Polygon","properties":{"name":"OH"},"id":"39087","arcs":[[280,-279,-268,-278]]}]},"states":{"type":"GeometryCollection","bbox":[-84.82028842799986,38.40350870700007,-80.51386807799992,42.324312188000135],"geometries":[{"type":"MultiPolygon","properties":{"name":"Ohio"},"id":"39","arcs":[[[-24]],[[-23]],[[-22]],[[-21]],[[-17]],[[-16]],[[-20]],[[-18]],[[-19]],[[63,97,122,151,190,220,236,247,271,276,280,279,275,265,262,261,240,219,177,137,117,90,72,48,42,34,-2,35,-4,36,-13,-12,-11,-10,-9,-8,-7,-6,-5,-15,27]]]}]}},"arcs":[[[31058,84897],[48,1]],[[31106,84898],[-5,-19],[-6,-27],[-17,-4],[-12,-2],[-25,0],[-8,0],[-12,-17],[-10,-14],[-26,-25],[-12,7],[-15,9],[-28,-17],[8,25],[8,9],[11,15],[31,-1],[15,24],[16,19],[3,4],[13,4],[23,9]],[[31359,84905],[131,3]],[[31490,84908],[-11,-11],[-23,-20],[-23,-19],[6,-49],[-22,-52],[-14,-12],[-31,-24],[-21,-9],[-29,-14],[-64,-16],[-54,-4],[-68,-17],[-68,-66],[-17,-80],[-18,-50],[-9,-27],[-39,-35],[-19,-16],[-58,-8],[-26,-5],[-7,-1],[-28,-6],[-49,-27],[-26,-10],[-17,-6],[-76,12],[10,7],[47,33],[44,20],[59,23],[57,23],[51,44],[28,56],[27,49],[12,25],[12,19],[15,27],[30,53],[65,13],[66,22],[78,43],[10,10],[6,6],[27,26],[1,1],[35,69]],[[88651,87987],[-6,-3],[-28,-11],[-29,-23],[-22,-17],[-32,-26],[-26,-20],[-10,-5],[-17,-6],[-194,-80],[-2,0],[-16,-7],[-52,-22],[-170,-51],[-15,-1],[-55,-3],[-17,-1],[-10,0],[-33,-6],[-60,-11],[-39,-21],[-11,-6],[-10,-5],[-26,-15],[-38,-20],[-33,-3],[-17,-2],[-4,0],[-7,-1],[-57,-3],[-96,-48],[-44,-30],[-18,-12],[-54,-37],[-32,-11],[-62,-22],[-89,-16],[-4,-1],[-8,-1],[-74,-22],[-35,0],[-86,-35],[-135,-60],[-119,-52],[-4,-2],[-6,-3],[-89,-41],[-21,-1],[-86,-8],[-33,-8],[-25,-5],[-98,-30],[-74,-33],[-87,-43],[-72,-19],[-58,2],[-45,-16],[-55,-31],[-46,-22],[-18,-8],[-30,-13],[-45,-10],[-25,-6],[-44,-12],[-83,-38],[-62,-33],[-97,-60],[-48,-24],[-22,-11],[-16,-6],[-52,-22],[-35,-11],[-73,-24],[-52,-21],[-11,-5],[-14,-8],[-49,-31],[-43,-29],[-23,-16],[-35,-14],[-20,-8],[-81,-43],[-78,-28],[-39,-24],[-29,-18],[-68,-42],[-34,-20],[-7,-4],[-72,-33],[-58,-33],[-67,-35],[-51,-20],[-64,-14],[-71,-19],[-61,-28],[-90,-39],[-42,-30],[-46,-29],[-26,-18],[-60,-21],[-5,-3],[-53,-29],[-27,-14],[-36,-18],[-25,-12],[-30,-14],[-39,-22],[-6,-3],[-7,-4],[-50,-28],[-31,-21],[-5,-4],[-10,-6],[-14,-6],[-39,-16],[-11,-5],[-18,-8],[-3,-2],[-3,-1],[-16,-10],[-35,-24],[-60,-24],[-20,-7],[-15,-6],[-24,-9],[-4,0],[-2,-1],[-31,-3],[-44,-6],[-99,-35],[-126,-44],[-112,-46],[-75,-30],[-5,-2],[-3,-1],[-10,-2],[-115,-21],[-80,-16],[-50,-11],[-25,-6],[-65,-17],[-48,0],[-82,-3],[-72,11],[-46,6],[-29,4],[-75,11],[-30,22],[-6,4],[-15,12],[-16,11],[-10,8],[-22,16],[-14,10],[0,-3],[-12,7],[-66,-70],[-43,-48],[-41,-48],[-64,-24],[-25,-11],[-18,-8],[-51,-21],[-29,-26],[-6,-5],[-1,-1],[-63,-55],[-336,-149],[-13,-6],[-57,-25],[-8,-3],[-37,-16],[-51,-23],[-58,-24],[-46,-19],[-241,-153],[-91,-60],[-98,-65],[-2,-2],[-55,-37],[-52,-13],[-20,-5],[-11,-3],[-14,-9],[-25,-15],[-20,-11],[-22,-13],[-67,-49],[-48,-17],[-47,-21],[-63,-30],[-539,-339],[-53,-35],[-28,-18],[-395,-263],[-160,-137],[-46,-39],[-228,-148],[-45,-23],[-109,-97],[-16,-46],[-35,10],[-12,3],[-10,3],[-47,-27],[-50,-45],[-16,-14],[-74,-76],[-10,-12],[-36,-46],[-35,-44],[-7,-9],[-62,-69],[-53,-56],[-50,-49],[-22,-20],[-30,-27],[-41,-51],[-45,-55],[-82,-89],[-31,-23],[-20,-15],[-49,-48],[-39,-34],[-18,-16],[-112,-101],[-16,-14],[-105,-95],[-34,-30],[-27,-25],[-30,-21],[-44,-32]],[[77364,82325],[-2,-1],[-1,-1],[-70,-45],[-4,-3],[-82,-53],[-43,-32],[-23,-18],[-20,-23],[-17,-19],[-100,-23],[-118,-52],[-101,-51],[-56,-20],[-30,-4],[-32,-5],[-133,-41],[-66,-20],[-56,-18],[-38,-37],[-58,-45],[-41,-31],[-17,-13],[-141,-112],[-39,-36],[-129,-116],[-33,-28],[-64,-56],[-33,-38],[-45,-43],[-8,-8],[-16,-16],[-82,-80],[-43,-28],[-27,-18],[-12,-11],[-41,-38],[-67,-64],[-40,-37],[-74,-67],[-101,-68],[-19,-8],[-6,-16],[-9,-20],[-40,-7],[-17,7],[-7,3],[-35,12],[-2,-10],[-2,-11],[-2,-15],[-16,7],[-6,2],[-9,4],[-19,8],[-7,-5],[-7,-4],[15,-15],[3,-2],[0,-1],[-25,-23],[-5,2],[-14,5],[-15,5],[-1,-2],[-20,-24],[10,-8],[4,-4],[16,-13],[-38,-43],[12,-20],[3,-3],[-219,-185],[-90,-56],[-93,-67],[-27,-16],[-55,-33],[-37,-24],[-60,-36],[-38,-28],[-62,-44],[-40,-26],[-16,-11],[-48,-32],[-18,-8],[-29,-14],[-27,-28],[-21,17],[-38,29],[-3,4],[-2,3],[-36,44],[-39,5],[-30,-32],[-73,-93],[38,-16],[1,-1],[33,2],[13,-22],[3,-4],[-31,-20],[-16,-5],[-23,-7],[-76,-21],[-22,-32],[-18,-25],[-129,-61],[-120,-71],[-20,-8],[-31,-12],[-9,-4],[-1,-4],[-1,-6],[-4,-21],[-3,-20],[-81,-28],[-47,-24],[-8,-5],[-27,-11],[-27,-12],[-3,-46],[-15,-5],[-70,-25],[-3,17],[-2,29],[0,4],[-1,5],[132,86],[-58,64],[-4,10],[-88,-59],[-126,-72],[-45,-26],[11,-15],[1,-2],[5,-6],[-19,-12],[-5,-3],[-6,-4],[-25,-15],[7,-10],[8,-9],[11,-14],[-59,-28],[-70,-32],[-53,-25],[-109,-51],[-14,-12],[-40,-20],[-21,-10],[-29,-15],[-2,-11],[-2,-13],[-1,-7],[0,-2],[6,-3],[18,-9],[30,-45],[-12,-2],[-55,-5],[-19,-1],[-43,-3],[-72,-49],[-78,-52],[-42,-10],[-42,-10],[-57,-36],[-21,-13],[-4,-40],[-3,-2],[-142,-97],[-29,-9],[-17,-6],[-43,11],[-142,-89],[-83,-69],[-49,-13],[-7,8],[-28,31],[-123,-47],[4,-18],[1,-7],[1,-5],[-18,-22],[-83,-37],[-32,-8],[-173,42],[-35,6],[-51,9],[-67,10],[-36,5],[-59,23],[-20,9],[-7,3],[-26,11],[-8,3],[-8,4],[-6,-1],[-5,0],[-20,-3],[-40,-6],[-12,4],[-38,11],[-93,28],[-97,18],[-7,2],[-38,29],[-26,20],[-53,-1],[-38,-1],[-1,0],[-73,-6],[-62,-5],[-37,6],[-23,16],[-2,7],[-2,11],[-1,1],[0,1],[-67,9],[-3,-1],[-59,-34],[-9,-1],[-5,-1],[-13,-17],[-109,3],[-27,1],[-55,-3],[-240,-36],[-201,-68],[-39,1],[-48,-11],[-55,-21],[-1,0],[-51,4],[-2,0],[-6,1],[-50,-8],[-2,0],[-12,-9],[-24,-17],[-141,-35],[-108,-59],[-193,-38],[-60,-4],[-120,-9],[-18,-1],[-31,-1],[-56,0],[-33,0],[-45,3],[-32,2],[-26,5],[-114,25],[-59,5],[-21,2],[-31,4],[-88,12],[-39,10],[-44,12],[-43,11],[-39,-6],[-10,-1],[-79,14],[-109,27],[-218,35],[-130,10],[-63,0],[-118,13],[-31,5],[-143,21],[-19,7],[-5,2],[-8,-1],[-25,-3],[-155,45],[-198,82],[-71,67],[-70,51],[-36,27],[-29,8],[-26,7],[-48,38],[-15,12],[-3,3]],[[66225,79102],[-126,60],[-35,11],[-30,10],[-132,48],[-27,11],[-71,30],[-49,28],[-76,0],[-29,12],[-62,27],[-63,-12],[-7,-2],[-62,8],[-79,12],[-71,11],[-46,9],[-48,9],[-94,-30],[-32,-10],[-58,-14],[-104,-10],[-128,-46],[-61,-17],[-160,-46],[-56,-15],[-13,-3],[-16,-5],[-11,-4],[-68,-22],[-28,-5],[-28,-4],[-96,-17],[-25,-4],[-26,-14],[-55,-30],[-77,-17],[-53,-23],[-34,-8],[-30,-8],[-110,-31],[-17,-3],[-70,-12],[-58,-18],[-111,-34],[-47,-14],[-63,-18],[-101,-25],[-79,-19],[-29,-8],[-23,-7],[-69,-17],[-87,-18],[-51,-17],[-21,-8],[-87,-27],[-81,-17],[-32,-7],[-84,-16],[-191,-74],[-20,-8],[-78,-31],[-204,-66],[-72,-23],[-139,-59],[-59,-19],[-66,-21],[-135,-41],[-147,-44],[-120,-31],[-20,13],[-7,2],[-8,2],[-12,0],[-3,0],[-9,-4],[-4,-3],[-16,5],[-9,-7],[24,-12],[17,-9],[-11,-4],[-9,-3],[-34,-14],[-33,-14],[-41,19],[-18,8],[-30,15],[-18,8],[-11,-12],[-8,-8],[4,-2],[36,-21],[-9,3],[-18,-3],[-54,-8],[-22,-3],[-11,3],[-20,6],[-36,-18],[-7,-11],[-4,-7],[-16,-27],[-9,-41],[-2,-2],[-11,-16],[-2,-2],[-10,-8],[-58,-43],[-78,-40],[-58,-30],[-107,-58],[-88,-34],[-43,-31],[-36,-26],[-24,-8],[-61,-22],[-93,-68],[-119,-74],[-53,-33],[-41,-33],[-130,-67],[-133,-69],[-15,-8],[-121,-63],[-102,-30],[-21,-3],[-38,-4],[-8,-1],[-18,-22],[-36,-44],[-211,-66],[-71,-17],[-39,-9],[-348,-38],[-82,-29],[-106,6],[-100,-2],[-48,6],[-244,29],[-47,0],[-158,17],[-9,1],[-170,-10],[-202,10],[-262,-29],[-70,-61]],[[57409,77111],[-12,2],[-62,10],[-113,-4],[-25,0],[-25,-1],[-76,3],[-24,11],[-23,11],[-10,-30],[-2,-5],[-8,-24],[-6,-2],[-87,-28],[-48,-35],[-9,-7],[-45,-33],[-85,-27],[-41,-13],[-24,-7],[-27,-10],[-24,-8],[-5,-2],[-40,-13],[-35,-12],[-78,-20],[-89,-29],[-6,-4],[-56,-32],[-30,-17],[-29,-18],[-40,-21],[-12,-7],[-100,-53],[-94,-48],[-35,-18],[-20,-12],[-22,-13],[-53,-30],[-23,-10],[-35,-14],[-13,-9],[-12,-9],[-25,-17],[-42,-23],[-57,-27],[-26,-25],[-43,-40],[-65,-17],[-36,-9],[-105,-41],[-74,-31],[-55,-47],[-44,8],[-29,-9],[-54,-15],[-6,-2],[-8,-2],[-61,-31],[-4,-2],[-2,-1],[-4,-1],[-14,-3],[-33,-8],[-31,-13],[-11,-5],[-3,-1],[-4,-2],[-49,-21],[-41,-17],[-58,-28],[-31,-15],[-18,-8],[-88,-26],[-98,-29],[-34,-15],[-37,-15],[-99,-16],[-47,-10],[-16,-3],[-29,-5],[-42,-4],[-36,-4],[-73,-7],[-67,3],[-38,2],[-37,2],[-48,2],[-51,5],[-33,2],[-18,1],[-58,5],[-63,16],[-73,20],[-14,2],[-47,7],[-64,-18],[-3,3],[-68,56],[-48,15],[-78,29],[-26,11],[-30,13],[-59,22],[-10,4],[-12,-1],[-40,-1],[-20,35],[-37,20],[-44,18],[-5,2],[-27,16],[-48,26],[-75,44],[-66,40],[-40,25],[-50,36],[-8,6],[-3,2],[42,66],[53,73],[-63,19],[33,-17],[-27,-43],[-28,4],[-43,5],[-23,-2],[-14,-1],[0,-18],[-1,-28],[41,-47],[-61,-53],[-12,6],[-18,9],[-21,8],[-45,18],[-88,35],[-93,34],[-15,36],[-5,12],[-88,61],[-55,34],[-32,20],[-83,19],[-45,16],[-68,13],[-27,8],[-26,8],[-49,23],[-38,34],[-19,7],[-45,18],[-65,1],[-22,16],[-43,34],[-26,19],[-32,22],[-37,23],[-8,4],[-53,59],[-17,-36],[-1,-2],[-84,6],[-150,108],[-88,69],[-68,53],[8,49],[13,7],[10,6],[5,2],[-60,43],[-122,88],[-20,13],[-174,124],[-54,47],[-229,197],[-92,80],[-24,22],[-31,29],[-92,87],[-70,66],[-24,23],[-26,26],[-24,18],[-116,121],[-45,54],[-11,12],[-37,43],[-46,50],[-24,28],[-31,37],[-12,14],[-38,49],[-48,58],[-76,99],[-8,12],[-14,21],[-13,21],[-3,3],[-4,7],[-46,71],[-31,-14],[-35,-16],[-49,-49],[-24,-24],[-5,-23],[-1,-6],[-1,-4],[-10,-49],[12,-36],[4,-13],[21,-21],[1,-1],[0,-1],[16,-15],[34,-14],[23,-3],[23,-3],[63,-20],[23,-17],[26,-19],[41,-69],[32,-35],[2,-2],[15,-16],[61,-78],[40,15],[19,7],[36,14],[76,-72],[21,-32],[7,-12],[5,-2],[24,-12],[34,-34],[22,-23],[1,-6],[3,-12],[5,-18],[1,-5],[-18,-21],[-14,-25],[-3,-7],[11,-13],[8,-10],[1,11],[1,23],[34,3],[40,-13],[-19,-3],[-11,-2],[-1,-7],[-3,-25],[63,17],[10,-1],[19,-2],[3,0],[3,-4],[30,-35],[8,-14],[20,-32],[56,-28],[28,-37],[23,-17],[55,-42],[5,-20],[7,-26],[33,0],[68,-63],[159,-149],[11,-7],[77,-52],[83,-55],[171,-108],[21,-27],[10,-13],[-13,-50],[-12,-43],[52,-34],[20,-17],[16,-1],[15,0],[39,-13],[54,-50],[42,-26],[87,-66],[18,-19],[-23,1],[-17,1],[-8,5],[-50,24],[-45,3],[-19,2],[-12,1],[-64,29],[-38,9],[-40,9],[-45,14],[-30,8],[-68,59],[-23,44],[-4,9],[-6,-2],[-39,-11],[-38,17],[-45,27],[-86,14],[-4,-36],[-3,-38],[-54,48],[-20,58],[-16,13],[-11,7],[-33,26],[-12,9],[-80,29],[-42,14],[-72,58],[-47,-16],[-32,17],[-48,-33],[-22,6],[-14,4],[-6,20],[-20,67],[-89,46],[-42,73],[-1,3],[-66,37],[-25,1],[-15,-25],[-9,-16],[-7,-10],[11,-9],[8,-6],[-36,2],[-37,23],[-9,6],[-2,1],[-2,-1],[-14,-6],[-37,-15],[-12,19],[-4,6],[18,23],[5,5],[0,1],[4,4],[59,9],[30,20],[74,24],[15,3],[43,6],[56,8],[31,5],[13,28],[13,27],[1,3],[9,18],[-9,12],[-25,35],[-28,38],[-68,-1],[-43,-7],[-38,-7],[-15,-17],[-23,-26],[-6,-6],[-1,-1],[-1,2],[-2,5],[-5,13],[-10,26],[-75,0],[-54,1],[-15,-12],[-22,-17],[-68,9],[-60,6],[-43,23],[-11,6],[-57,16],[-6,-5],[-26,-18],[-104,79],[-6,34],[-9,49],[-37,40],[-21,23],[-54,-8],[-43,-36],[-66,0],[-38,-48],[-59,-22],[-25,-5],[-78,-15],[-51,-14],[-23,-7],[-26,-13],[-43,-21],[-54,-58],[-10,-29],[-1,-1],[-19,-8],[-14,-7],[-25,46],[-25,-9],[9,-56],[-67,-37],[-3,3],[-21,20],[-18,18],[0,-1],[-15,-42],[-20,34],[80,242],[-59,-17],[-29,-58],[-26,-78],[-18,-50],[-4,-20],[-6,-33],[-9,-44],[-3,-13],[-23,12],[-32,16],[0,1],[-26,26],[-51,-11],[-34,-8],[-23,-8],[-55,-43],[-65,-31],[-2,-2],[-53,-54],[-14,-3],[-32,-6],[-40,4],[-47,5],[-53,4],[-31,6],[-17,3],[-51,16],[-71,28],[-98,56],[-108,63],[-66,51],[-24,19],[-50,40],[-35,71],[-47,44],[-34,37],[-14,-30],[-11,-28],[-51,1],[-29,7],[-17,4],[-15,44],[-2,6],[11,1],[15,2],[5,51],[-12,9],[-30,24],[14,-63],[-16,-9],[-20,-12],[-46,26],[-35,19],[-23,16],[-46,33],[-21,2],[-37,3],[1,16],[0,28],[-52,68],[-17,22],[-13,18],[-11,15],[-54,58],[0,-7],[-1,-21],[0,-5],[-1,-26],[-37,-34],[-20,-18],[-17,-16],[-22,0],[-38,-1],[-76,-7],[-21,9],[-27,10],[-11,10],[-40,36],[-31,27],[-20,16],[-69,-26],[0,-19],[1,-31],[9,-55],[7,-71],[2,-12],[4,-29],[5,-32],[7,-75],[21,6],[14,4],[23,7],[23,-2],[13,-2],[6,-5],[1,-1],[4,-2],[-8,-4],[-12,-6],[-41,-4],[-29,-3],[-17,-2],[-2,-20],[-3,-26],[-28,-28],[-20,-20],[-26,-45],[-45,-27],[-48,-29],[-75,-39],[-78,-25],[-24,-2],[-37,-2],[-51,-43],[-53,-48],[-32,-6],[-29,-6],[-47,-36],[-39,-29],[-20,-10],[-14,-7],[-42,-10],[-24,-5],[-52,-5],[-57,-11],[-14,-3],[-77,6],[-47,-23],[-45,10],[-54,13],[-26,11],[-16,6],[-34,0],[52,-25],[1,-1],[18,-19],[-47,-42],[-119,-26],[-71,-16],[-29,16],[-23,7],[-28,-32],[-11,-13],[-48,-19],[-33,-13],[-51,-4],[-41,-12],[-49,-34],[-68,-47]],[[44557,77202],[-13,-4],[-45,-14],[-56,-56],[-77,-50],[-52,-23],[-41,-17],[-64,-23],[-21,-13],[-18,-12],[-51,-16],[-37,-21],[-52,-20],[-74,-5],[-68,9],[-26,4],[-55,10],[-31,-3],[-26,-3],[-27,2],[-28,3],[-9,-1],[-26,-4],[-30,7],[-51,10],[-79,39],[-82,37],[-66,53],[-34,31],[-23,20],[-42,53],[-50,64],[-43,62],[-54,58],[-10,15],[-28,46],[-17,55],[-20,26],[-28,36],[-4,11],[-2,5],[-24,61],[-53,21],[-15,6],[-33,45],[-24,24],[-14,14],[-38,32],[-23,-1],[-34,-2],[-28,-22],[-11,-10],[-64,-20],[-8,0],[-26,1],[-28,1],[2,-41],[2,-40],[-44,-85],[-124,10],[-11,-14],[-16,-21],[-27,-47],[-43,-32],[-24,-20],[-18,-14],[-17,-5],[-29,-10],[-21,-21],[-9,-9],[1,-76],[17,-15],[40,-38],[11,-18],[14,-21],[-7,-9],[-24,-31],[-27,-33],[-24,24],[-6,6],[-23,22],[-52,-26],[-14,-7],[-19,5],[-7,2],[-33,9],[-3,43],[-4,44],[-30,75],[2,79],[-1,31],[-2,27],[31,25],[1,1],[10,8],[-26,9],[-35,13],[-17,7],[-61,42],[-75,-17],[-34,55],[-44,7],[-17,3],[-36,30],[-31,28],[-12,11],[-8,8],[-13,12],[-10,9],[4,6],[7,10],[21,31],[1,2],[6,8],[-50,25],[-9,5],[-12,1],[-47,4],[-20,-6],[-22,-7],[-49,-24],[-3,-2],[-72,-47],[-24,12],[-28,15],[-31,-9],[-10,-3],[-44,-33],[-26,-7],[-48,-14],[-34,-3],[-3,-1],[-32,-3],[-24,-2],[0,3],[-14,65],[-12,2],[-19,3],[-40,-19],[-6,-7],[-31,-33],[-25,-3],[-57,-7],[-60,55],[-50,46],[-3,2],[-4,4],[-5,16],[-4,15],[15,0],[13,0],[36,-37],[18,-19],[57,-50],[33,2],[33,1],[19,38],[-3,47],[-39,55],[-55,15],[-20,5],[-29,9]],[[40826,77884],[-5,1],[-5,2],[-22,7],[-15,4],[-1,7],[-1,5],[-2,13],[12,5],[17,6],[50,-32],[9,-5],[13,9],[13,9],[36,-8],[21,-15],[9,-6]],[[40955,77886],[71,-77],[-28,-33],[6,-3],[4,-3],[13,-8],[41,36],[39,45],[14,1],[2,0],[9,1],[15,-4],[2,-1],[59,-15],[26,-24],[32,-30],[105,16],[7,6],[21,20],[31,51],[-30,14],[-28,13]],[[41366,77891],[-9,66],[0,2],[2,6],[20,63],[7,20],[22,6],[4,1],[30,7],[27,5],[44,7],[73,-5],[17,6],[3,1],[36,12],[54,-32],[28,-17],[31,-12],[20,-9],[46,11],[25,7],[28,3],[33,5],[56,23],[48,17],[21,8],[4,-2],[15,-7],[114,-57],[47,1],[10,0],[4,1],[16,-7],[41,-17],[35,-27],[5,-4],[1,-1],[69,-29],[59,29],[8,17],[18,39],[39,42],[12,13],[10,12],[58,34],[48,17],[20,-4],[25,-4],[48,27],[24,14],[11,-32],[7,-18],[11,6],[4,1],[75,37],[11,14],[56,71],[58,96],[2,7],[2,8],[4,17],[8,35],[13,19],[5,7],[35,49],[30,59],[14,15],[29,29],[60,46],[63,38],[89,-7],[44,-5],[98,-10],[36,-4],[4,-1],[40,-5],[47,-3],[49,-7],[83,-14],[164,27],[29,5],[5,1],[68,12],[18,1],[41,1],[35,2],[42,2],[66,-6],[50,-5],[56,4],[20,2],[25,3],[39,4],[46,4],[66,-23],[16,-5],[94,4],[58,20],[63,7],[28,-2],[7,-1],[37,-3],[81,13],[12,-4],[28,-7],[27,-8],[36,5],[19,3],[29,12],[29,11],[18,3],[53,9],[60,9],[94,36],[57,12],[79,37],[19,9],[11,5],[44,18],[26,12],[4,15],[8,37],[51,37],[92,13],[15,2],[15,6],[1,0],[55,22],[83,23],[41,-8],[19,-4],[16,-3],[2,0],[8,-1],[49,-9],[27,-14],[14,-6],[5,-43],[3,-22],[12,-35],[1,4],[5,11],[5,13],[-1,10],[-4,30],[30,0],[26,-25],[39,-63],[32,-6],[38,-8],[73,-67],[51,-36],[1,0],[17,-12],[30,32],[1,0],[19,20],[15,16],[17,70],[2,5],[1,2],[2,4],[11,24],[20,44],[9,16],[1,2],[5,11],[29,57],[53,26],[101,50],[30,11],[1,1],[11,3],[52,24],[181,-33],[63,14],[69,24],[21,-1],[20,-2],[15,-1],[4,0],[6,-1],[9,0],[5,-1],[12,-1],[97,-17],[2,0],[1,0],[58,13],[103,-9],[41,-28],[8,-6],[11,-8],[50,-41],[38,1],[9,1],[14,1],[46,4],[23,-1],[32,-2],[34,21],[1,1],[90,61],[16,16],[38,38],[89,52],[5,2],[22,7],[29,9],[15,5],[51,14],[19,5],[59,19],[50,-11],[2,0],[49,-10],[29,-4],[27,-5],[24,2],[41,3],[30,4],[7,-15],[14,-32],[73,-165],[-47,-10],[-85,-58],[-78,-40],[-17,-17],[-31,-32],[-10,-51],[-6,-30],[24,-97],[45,-22],[61,16],[56,30],[27,14],[43,40],[13,61],[28,92],[19,43],[22,40],[-26,10],[-11,3],[-12,3],[-46,112],[-19,51],[-14,41],[-8,22],[110,-4],[38,16],[67,4],[4,0],[5,-11],[25,-48],[1,-1],[69,-85],[-16,-75],[-10,-39],[-7,-29],[63,-39],[22,-43],[15,-7],[14,-7],[24,-141],[-26,-127],[27,-54],[25,19],[19,88],[-12,23],[6,32],[-7,88],[-1,6],[-4,46],[0,4],[-11,97],[-5,42],[-38,65],[-22,19],[-51,94],[-23,42],[-31,87],[-10,55],[78,79],[66,66],[27,36],[23,65],[23,46],[9,19],[-19,123],[45,79],[-64,33],[-45,67],[-65,38],[-60,15],[-5,0],[-56,7],[-35,1],[-26,1],[-23,10],[-9,4],[-13,6],[-36,1],[-16,0],[-52,2],[-69,6],[-61,5],[-44,19],[-33,14],[-19,4],[-32,4],[-62,10],[-70,2],[-27,1],[-89,-14],[-29,-14],[-10,-5],[-24,-12],[-28,-7],[-23,-6],[-69,-17],[-16,-4],[-7,-1],[-86,-30],[-1,-1],[-8,-5],[-39,-25],[-41,-17],[-260,3],[0,1],[-13,30],[-31,-29],[-13,-13],[-15,-22],[22,1],[15,1],[218,10],[0,-30],[-15,-5],[-35,-10],[67,-10],[-83,-19],[-84,-17],[-82,12],[-73,3],[-9,-27],[-89,-13],[-35,-9],[-41,-10],[-14,13],[-6,6],[-5,-1],[-6,-1],[-42,-7],[-59,-9],[-8,33],[-34,-10],[-76,-24],[-51,-4],[-3,12],[-6,18],[-11,-23],[-63,-16],[-3,-20],[-2,-11],[-24,-1],[-21,24],[-8,9],[-13,-30],[-45,-9],[-29,-6],[-6,39],[-4,27],[-3,16],[-1,1],[-32,22],[38,39],[3,3],[52,3],[0,47],[35,-2],[47,40],[28,19],[35,24],[65,97],[23,57],[-42,40],[82,49],[54,-68],[64,-78],[36,-36],[5,-5],[35,-36],[51,-51],[15,-16],[117,-68],[22,12],[10,6],[3,4],[18,26],[14,18],[12,15],[-83,22],[-111,76],[-30,21],[-10,7],[-73,95],[-30,49],[-39,64],[-51,16],[-28,69],[-33,35],[-11,12],[-17,19],[-24,26],[-49,47],[-34,30],[-16,15],[-55,-31],[-3,-8],[-3,-9],[-11,-34],[-31,-22],[-5,-4],[-26,-50],[-17,-2],[-5,-1],[-42,-5],[-11,-3],[-64,-18],[7,-32],[-22,-31],[-17,-24],[4,-6],[1,-2],[10,-14],[-2,-2],[-19,-41],[-86,-44],[-81,-35],[5,-30],[17,-57],[36,8],[86,4],[3,1],[44,2],[0,-74],[-53,-49],[-8,-7],[69,-6],[-13,-24],[-39,-49],[21,-15],[20,2],[28,2],[-36,-33],[-67,-4],[-16,-9],[-30,-15],[-50,-16],[17,30],[-14,21],[-2,3],[-17,-30],[-3,-32],[-36,-22],[-21,-12],[-6,24],[-3,12],[-37,0],[-86,-33],[-114,-44],[-54,-21],[-90,-44],[-17,-11],[-73,-46],[-53,-21],[-21,-2],[-19,-1],[-53,-10],[-37,-6],[-20,-3],[-9,-5],[-20,-10],[-14,-7],[-25,-12],[-10,1],[-32,6],[-49,8],[35,3],[42,42],[31,14],[50,20],[71,-9],[61,41],[9,6],[34,32],[33,26],[13,10],[9,8],[36,33],[24,3],[25,26],[3,3],[22,22],[35,1],[17,10],[10,6],[79,0],[111,46],[26,11],[146,69],[42,7],[22,3],[2,1],[1,0],[3,0],[0,2],[-1,3],[-10,33],[-82,0],[0,16],[-1,73],[-10,11],[-10,12],[0,46],[0,3],[-95,-11],[-11,-2],[-18,-4],[-19,-3],[-19,-5],[-16,-5],[11,25],[10,24],[75,36],[9,-5],[19,-11],[95,-3],[66,67],[41,39],[-110,13],[22,18],[59,3],[31,1],[8,9],[30,34],[-5,20],[-3,11],[-23,3],[-43,6],[-4,29],[4,26],[35,10],[45,3],[12,0],[16,21],[5,7],[16,21],[-5,27],[3,37],[76,58],[24,18],[-18,16],[-9,9],[-45,62],[-26,58],[-66,78],[-20,33],[-23,39],[-76,85],[-47,86],[-96,7],[-3,0],[-158,-28],[-111,-37],[-2,-1],[-62,-31],[-50,-23],[-26,-52],[-43,-38],[-17,-15],[-22,-27],[-25,-30],[23,-58],[3,-10],[7,-3],[6,-2],[39,-16],[12,-28],[16,-36],[-24,-61],[-12,-29],[16,-39],[17,-41],[42,-25],[5,11],[4,10],[9,19],[12,26],[10,21],[25,-23],[1,-20],[1,-19],[-9,-15],[-17,-26],[0,-1],[0,-4],[-3,-33],[-1,-24],[-1,-9],[-28,-19],[-29,-19],[-13,-35],[-1,-2],[-16,-44],[-4,-31],[-3,-16],[-17,-46],[-7,-16],[9,-52],[4,-20],[-43,-25],[-25,-15],[-57,-58],[-26,-47],[-25,-42],[-22,-40],[-102,-96],[-51,-47],[-11,-11],[-54,-50],[-15,-13],[-18,-17],[-62,-45],[-43,-25],[-22,-14],[-43,-17],[-13,-5],[-26,-15],[-29,-17],[-59,-42],[-110,-50],[-108,-30],[-91,-22],[-53,-23],[-50,-6],[-44,-10],[-58,-1],[-43,-15],[-58,0],[-26,-6],[-25,-5],[-99,-11],[-66,-7],[-28,-3],[-25,-3],[-64,-6],[-80,-2],[-53,-1],[-43,33],[-58,-41],[-18,-1],[-20,-1],[-43,9],[-40,9],[-47,-2],[-46,-2],[-26,-18],[-13,-9],[-81,-2],[-10,-4],[-40,-16],[-100,7],[-20,23],[-7,1],[-24,4],[-3,-21],[-3,-16],[-26,-18],[-23,-15],[-68,-33],[-17,-9],[-6,1],[-28,3],[-13,28],[1,29],[-48,0],[-67,-45],[-19,-13],[-72,-7],[-9,9],[-14,16],[-60,-23],[-26,23],[-53,1],[-32,1],[-19,-6],[-1,0],[-3,-1],[-10,-1],[-36,-5],[-28,-3],[-57,-8],[-93,-31],[-78,-12],[-51,-8],[-78,47],[-13,1],[-14,1],[-91,0],[-38,-28],[-22,-16],[-28,-23],[-18,-14],[14,-52],[-57,0],[-15,31],[-4,7],[22,3],[18,2],[-7,44],[-35,-5],[-32,-4],[-74,-28],[-15,-6],[-16,-25],[-24,-38],[-25,-7],[-19,-5],[-76,14],[-20,8],[-35,13],[-100,1],[-13,0],[-35,0],[19,-33],[14,-25],[-2,-36],[-4,-55],[4,-35],[16,-25],[-21,-16],[-18,-13],[-34,-25],[-9,-7],[-81,5],[-48,-50],[-37,-37],[-16,8],[-11,6],[10,13],[42,55],[22,17],[34,24],[70,30],[33,70],[-8,96],[-4,31],[-7,35],[-22,-7],[-62,-20],[-67,6],[-45,5],[-16,1],[-15,1],[-46,0],[-19,-3],[-61,-9],[-40,0],[-16,-29],[-73,-9],[-70,-9],[-77,22],[-47,28],[-82,25],[-51,16],[-25,-69],[-32,-32],[-32,-31],[-73,-25],[-84,38],[-110,28],[-76,7],[-42,4],[-69,-57],[-89,-11],[-80,41],[-116,34],[-42,-11],[-12,-3],[-10,-28],[-9,-26],[-70,-41],[-19,-2],[-39,-5],[-2,-8],[-13,-47],[-64,-25],[-16,6],[-36,13],[-22,61],[10,40],[2,8],[4,13],[-16,44],[4,59],[-11,27],[-47,2],[-23,-34],[2,-7],[12,-32],[-4,-47],[-47,-18],[-44,11],[9,15],[18,28],[39,30],[-18,47],[56,50],[28,-6],[48,-12],[4,-57],[23,-59],[-6,-50],[1,-7],[0,-1],[7,-42],[16,2],[38,5],[73,48],[76,54],[58,62],[100,-23],[95,-30],[62,-2],[75,25],[62,21],[62,22],[29,-5],[5,-1],[26,-5],[16,-12],[48,-33],[73,13],[95,41],[14,23],[27,2],[12,10],[30,22],[49,16],[65,-16],[45,-48],[68,16],[47,4],[144,10],[128,4],[56,32],[40,1],[15,2],[29,3],[35,27],[4,3],[15,12],[33,10],[26,9],[77,-16],[43,-9],[6,-1],[58,-3],[61,3],[8,1],[31,17],[1,-2],[12,-23],[43,-4],[36,-16],[58,-1],[48,21],[12,4],[38,10],[9,29],[13,40],[75,25],[52,-23],[8,3],[17,7],[33,-10],[35,16],[39,-7],[35,12],[6,2],[70,-13],[57,-47],[41,45],[3,70],[52,-23],[22,-10],[39,-17],[18,10],[16,10],[30,17],[49,13],[36,11],[247,32],[190,25],[69,1],[23,-10],[20,-9],[66,-25],[50,-6],[3,-1],[21,-2],[48,-9],[7,-1],[61,-1],[65,-24],[59,-22],[25,-2],[66,1],[88,-17],[48,10],[23,24],[-3,1],[-38,2],[-42,19],[-23,11],[-89,30],[-72,-7],[-95,46],[-54,11],[-68,18],[-109,30],[-69,20],[-48,14],[-20,6],[-87,38],[-53,27],[-4,2],[-155,59],[-30,21],[-49,34],[-43,9],[-14,3],[-43,50],[-61,28],[-28,16],[-57,33],[-21,11],[-71,38],[-2,8],[-8,36],[-90,42],[-39,24],[-3,1],[-35,21],[-103,57],[-50,38],[-30,22],[-54,33],[-6,4],[-181,112],[-23,16],[-32,24],[-20,18],[-16,16],[-25,22],[-50,40],[-19,16],[-105,89],[-44,43],[-67,68],[-36,39],[-33,35],[-64,93],[-56,85],[-49,64],[-11,10],[-2,1],[-37,33],[-31,28],[-6,5],[-1,1],[-55,40],[-61,53],[11,58],[-63,98],[-23,24],[-1,1],[-41,41],[-17,14],[-41,34],[-56,35],[-11,7],[-11,8],[-11,7],[-32,21],[-20,5],[-19,4],[-45,29],[-21,13],[-33,25],[-51,37],[-91,29],[-40,15],[-19,7],[-9,8],[-49,41],[-127,49],[-50,18],[-44,14],[-81,28],[-29,4],[-62,10],[-69,1],[-6,1],[-20,0],[-76,-7],[-87,27],[-121,22],[-70,-9],[-6,-2],[-3,-1],[-33,-10],[-27,-9],[-40,35],[-66,9],[-17,4],[-87,18],[-132,24],[-205,60],[-247,76]],[[38429,82118],[-13,3],[-23,3],[-19,4],[-47,17],[-14,5],[-62,23],[-95,-5],[-72,45],[-47,29],[-47,9],[-9,1],[-22,4],[-53,12],[-39,9],[-26,9],[-41,15],[-38,14],[-12,4],[-7,3],[-52,15],[-29,8],[-4,1],[-22,11],[-39,21],[-21,8],[-8,4],[-53,22],[-53,21],[-22,9],[-18,8],[-28,12],[-32,15],[-27,14],[-25,13],[-24,13],[-22,-27],[-98,11],[-43,14],[-98,31],[-92,63],[-9,6],[-32,-3],[0,-41],[-17,-2],[-17,-2],[-15,39],[-7,20],[-22,34],[-41,42],[-22,41],[5,10],[4,8],[2,5],[1,6],[4,13],[-12,29],[-20,7],[-11,5],[-22,8],[-42,27],[-46,30],[-56,35],[-38,24],[-81,49],[-36,24],[-22,15],[-53,33],[-7,5],[-51,28],[-53,28],[-14,7],[-73,36],[-39,21],[-21,11],[-46,28],[-52,31],[-51,30],[-43,25],[-8,4],[-11,6],[-34,20],[-35,27],[-21,16],[-80,45],[-44,-4],[-29,-2],[-46,30],[-46,4],[-6,1],[-7,1],[-28,4],[-25,5],[-35,-12],[-75,15],[-42,14],[-41,15],[4,42],[-83,0],[-9,33],[-13,45],[0,2],[5,87],[-5,6],[0,1],[-4,5],[-55,75],[-41,15],[-22,25],[-10,10],[-27,17],[-29,18],[-62,32],[-27,25],[-18,16],[-68,24],[-36,59],[-53,41],[-15,13],[-25,20],[-16,11],[-24,18],[-50,27],[-22,12],[-23,12],[-44,22],[-7,0],[-10,-1],[-49,-1],[-63,-21],[58,-48],[11,-52],[-15,-62],[-2,-29],[-2,-34],[-41,-13],[-3,-1],[-2,-3],[-35,-43],[-22,-17],[-24,-19],[-65,-27],[-40,-17],[-20,-9],[-10,-4],[-21,-8],[-7,-18],[-16,-40],[-40,-5],[-60,-9],[-144,-23],[-48,-7],[-82,33],[-96,3],[-24,-8],[-58,-21],[-163,15],[-174,109],[-15,5],[-24,8],[-71,6],[-19,2],[-79,-25],[-83,19],[-55,-11],[-63,8],[-54,-22],[-76,-29],[-81,17],[-53,-4],[-38,4],[-31,3],[-60,-3],[-28,-2],[-45,22],[-41,9],[-31,7],[-63,11],[-23,17],[-53,40],[28,44],[4,5],[18,29],[99,31],[229,126],[-120,172],[-54,46],[-183,-100],[-179,-98],[-4,-10],[-9,-20],[-25,-58],[58,-110],[-75,64],[-32,27],[-52,-106],[-2,45],[-3,75],[-39,-89],[-8,30],[-9,40],[-12,-13],[-33,-39],[-15,2],[-37,6],[-51,-22],[-38,-38],[-36,2],[-42,1],[-38,2],[-9,0],[-46,2],[-39,1],[-30,2],[-128,-17],[-19,48],[-49,124],[22,42],[77,67],[30,97],[10,46],[22,58],[12,35],[62,140],[62,62],[29,24],[12,11],[34,20],[34,20],[67,17],[1,1],[64,16],[11,40],[9,32],[-1,30],[-1,28]],[[31709,84915],[901,25],[2310,1875],[4776,3735],[12,10],[956,-2312],[9042,-4770],[6554,0],[26745,13543],[16994,2978],[-129,-8850]],[[99870,91149],[-104,-32],[-46,-8],[-45,-14],[-27,-9],[-56,-18],[-87,-26],[-73,-7],[-102,-25],[-36,-13],[-18,-5],[-32,-9],[-51,-14],[-1,0],[-38,54],[-54,-51],[-13,-27],[-19,-39],[-43,-12],[-41,-19],[-70,-34],[-13,-5],[-75,-33],[-81,-36],[-68,-20],[-11,-4],[-101,-37],[-31,-13],[-53,-23],[-73,-27],[-74,-19],[-56,-7],[-51,-13],[-29,-5],[-17,-4],[-20,-6],[-51,-15],[-32,0],[-16,0],[-42,-28],[-45,-21],[-23,-11],[-37,-11],[-30,-9],[-60,-23],[-67,-26],[-10,-4],[-27,-8],[-52,-19],[-47,-16],[-38,-9],[-14,-3],[-15,-6],[-39,-13],[-70,-25],[-61,-22],[-9,-3],[-18,-5],[-4,-2],[-30,-9],[-51,-16],[-62,-7],[-92,-12],[-44,-3],[-24,-1],[-9,0],[-44,-2],[-85,-3],[-48,-23],[-55,-12],[-3,-1],[-70,-14],[-50,-23],[-147,-68],[-65,-29],[-74,-28],[-56,-18],[-7,-2],[-46,-15],[-62,-21],[-63,-22],[-43,-10],[-18,-2],[-26,-4],[-44,-17],[-1,0],[-78,-35],[-28,-8],[-40,-13],[-116,-41],[-98,-16],[-35,-11],[-79,-25],[-102,-42],[-43,-15],[-50,-5],[-30,-10],[-51,-17],[-69,-26],[-53,-10],[-35,-6],[-83,-16],[-39,-6],[-88,-14],[-74,-2],[-67,-2],[-50,-7],[-15,-2],[-4,0],[-11,-2],[-62,-4],[-37,-3],[-28,-4],[-57,-7],[-91,-22],[-79,-54],[-23,-7],[-67,-21],[-50,-22],[-63,-10],[-6,-3],[-5,-2],[-17,-8],[-28,-13],[-60,-17],[-143,-40],[-83,-23],[-36,-5],[-18,113],[-28,3],[-21,-34],[2,34],[-6,-3],[-23,-11],[-18,-40],[-32,9],[-42,5],[-56,3],[-26,-7],[-21,-2],[-4,0],[-3,26],[-18,-5],[-14,-4],[-12,-3],[-37,-10],[-74,-49],[-65,-62],[-4,-4],[-62,-59],[-56,-55],[-66,-45],[-29,-18],[-35,-22],[-26,-8],[-45,-16],[-92,-40],[-14,-8],[-37,-19],[-54,-4],[-15,-2],[-76,-14],[-67,-26],[-70,-26],[-79,-15],[-77,-24],[-17,-9],[-101,-53],[-36,-22],[-47,-29],[-70,-16],[-38,-14],[-75,-31],[-57,-27],[-51,-14],[-64,-11],[-14,-2],[-12,-2],[-21,-2],[-121,-42],[-23,-11],[-5,-3],[-14,-7],[-38,-13],[-65,-38],[-63,-20],[-4,-2],[-80,-28],[-42,-22],[-26,-14],[-40,-18],[-20,-9],[-72,-25],[-34,-14],[-67,-28],[-54,-17],[-6,-2],[-22,-7],[-8,-1],[-40,-7],[-39,-11],[-58,-7],[-72,-16],[-74,-7],[-54,-8],[-6,0],[-8,0],[-33,2],[-24,-2],[-36,-4],[-89,-15],[-34,-10],[-9,-2],[-3,-1],[-7,-3],[-78,-27],[-98,-23],[-81,-8],[-59,0],[-89,-5],[-74,5],[-1,1],[-76,-7],[-11,-5],[-13,-6],[-75,-34],[-23,-5],[-24,-6],[-29,-4],[-36,-7],[-150,-22],[-9,0],[-78,3],[-60,-22],[-6,-2],[-15,9],[-13,-8],[-8,-4],[-19,-9],[-37,-5],[-13,-1],[-56,-5],[-102,-22],[-29,-5],[-34,-5],[-18,-7],[-6,-2],[-24,-9],[-16,-5],[-10,-3],[-25,-8],[-28,0],[-1,0],[-2,0],[-33,4],[-74,-19],[-14,0],[-42,-1],[-9,0]],[[46903,83893],[11,8],[1,0],[8,6],[37,0],[33,0],[52,0],[33,4],[26,-2],[1,0],[9,0],[24,-14],[32,0],[41,12],[13,5],[36,14],[41,25],[32,10],[32,0],[7,6],[5,4],[0,29],[-11,8],[-8,6],[-37,0],[-57,-6],[-39,-4],[-32,-12],[-26,-9],[-52,-22],[-51,-6],[-42,-1],[-36,-1],[-20,-1],[-38,-2],[-24,-15],[-15,-9],[-1,-10],[-1,-15],[-44,-33],[-51,-25],[-43,-7],[-13,8],[-52,23],[-49,8],[-53,-23],[-69,-42],[-12,-7],[-59,-48],[-28,-21],[-21,-16],[-6,-3],[-46,-19],[-42,-10],[36,-55],[97,-22],[2,-1],[68,-8],[14,-22],[7,-13],[23,-37],[-1,-81],[37,-94],[73,-31],[34,3],[68,30],[6,0],[4,3],[9,6],[1,0],[0,1],[9,6],[-9,15],[-3,4],[-11,25],[-9,31],[-1,2],[0,26],[-1,12],[9,14],[7,10],[44,45],[17,23],[18,25],[1,9],[2,45],[-14,59],[-11,49],[1,3],[8,19],[11,25],[9,21],[21,25],[28,35]],[[45814,83563],[-124,6],[24,-65],[31,-6],[0,-1],[46,-9],[85,42],[-62,33]],[[46460,84697],[-17,2],[-21,-7],[-48,-15],[-37,-15],[-28,-10],[-13,-27],[-21,-41],[-17,-48],[-54,-29],[-6,-4],[-8,-8],[-34,-37],[13,-25],[21,-38],[-40,-32],[-30,-3],[-22,-2],[23,-62],[74,6],[49,25],[64,-28],[67,-44],[78,-2],[100,0],[60,5],[45,14],[2,0],[45,22],[-12,30],[-12,29],[-8,19],[-4,10],[-30,73],[4,75],[17,81],[-57,62],[-18,5],[-52,14],[-73,5]],[[39854,85150],[-43,6],[-24,-20],[-27,-21],[-52,-89],[48,-15],[50,8],[76,51],[7,20],[2,6],[11,32],[-41,22],[-7,0]],[[31559,84222],[17,-106],[251,100],[85,35],[-69,99],[-152,-68],[-74,-33],[-58,-27]],[[46871,83171],[-14,-6],[-59,0],[-79,-62],[-24,-73],[-18,-20],[-27,-29],[-13,-54],[-86,-9],[-12,-2],[-99,-18],[-52,22],[-76,4],[0,36],[0,17],[8,26],[11,36],[-16,0],[-40,-2],[-59,-29],[-59,-18],[-38,-11],[-79,-106],[-10,-11],[-27,-33],[-26,-25],[-8,-7],[0,-1],[-23,-27],[-33,-39],[30,-52],[17,-29],[45,-14],[13,-4],[12,-25],[13,-28],[-9,-47],[-11,-64],[-15,-25],[-29,-48],[-9,-60],[-1,-5],[0,-4],[-7,-16],[0,-1],[-21,-51],[93,5],[80,17],[33,22],[41,27],[81,48],[54,62],[4,4],[24,28],[49,44],[18,9],[21,11],[22,19],[2,2],[37,33],[43,26],[61,36],[4,13],[4,12],[15,42],[-2,17],[-9,70],[34,53],[65,48],[75,-9],[58,12],[22,40],[8,5],[42,24],[51,35],[36,63],[37,38],[19,57],[-51,22],[-11,5],[-10,4],[-72,-12],[-48,-18]],[[48702,81944],[4,-43],[3,-30],[-5,-29],[-4,-22],[-53,-57],[-13,-14],[-35,-35],[-100,-47],[-10,-6],[-22,-14],[-14,-9],[-7,-12],[-23,-37],[28,-33],[28,-35],[69,-29],[43,-33],[4,-3],[52,-44],[23,0],[49,-1],[57,-7],[33,-4],[13,-1],[35,-4],[20,-2],[8,-2],[1,0],[31,-9],[56,-26],[19,-1],[41,-2],[11,-4],[18,-6],[28,-9],[3,-2],[55,-39],[2,-4],[25,-62],[51,-67],[51,-10],[60,1],[23,6],[29,8],[36,20],[8,5],[33,-6],[11,-2],[38,1],[57,35],[17,36],[17,36],[46,42],[32,55],[13,9],[24,15],[48,36],[-30,47],[-12,19],[-5,8],[-6,9],[-8,75],[-3,35],[22,79],[-32,47],[-16,51],[13,37],[1,2],[11,28],[44,61],[6,74],[-24,-11],[-33,-16],[-25,-13],[-24,-13],[-51,-40],[-8,-7],[-32,-25],[-12,-10],[-6,-6],[-14,-12],[-19,-17],[-66,-32],[-54,-10],[-50,0],[-93,12],[-35,21],[-38,23],[-46,60],[38,32],[-11,8],[-56,44],[-56,21],[-23,8],[-27,1],[-66,3],[-92,-13],[-60,-26],[-31,-25],[-38,-32]],[[46410,80631],[1,-9],[77,10],[13,2],[58,-57],[4,14],[4,16],[-41,132],[-20,-9],[-3,-2],[-12,-5],[-2,-2],[-82,-72],[3,-18]],[[42015,77636],[80,-36],[7,6],[4,4],[62,57],[-28,23],[-16,13],[-30,38],[-115,2],[-43,10],[-27,7],[-21,-2],[-16,-2],[-11,-1],[-15,-1],[98,-72],[71,-46]],[[99872,78962],[-250,10],[-315,-2],[-338,-1],[-280,-1],[-2,0],[-616,-3],[-170,-1],[-32,0],[-110,0],[-143,-1],[-60,0],[-92,-1],[-34,0],[-25,0],[-2,0],[-287,-1],[-53,-1],[-8,0],[-165,0],[-406,-2],[-6,0],[-51,0],[-405,4],[-504,5],[-147,2],[-14,0],[-211,2],[-280,3],[-30,0],[-25,0],[-190,2],[-104,0],[-3,0],[-199,3],[-86,1],[-100,2],[-272,2],[-294,2],[-165,5],[-10,0],[-275,-1],[-235,1],[-9,0],[-192,1],[-232,2],[-214,-3],[-38,0],[-418,8],[-7,0],[-75,1],[-35,0],[-106,1],[-30,0],[-29,0],[-81,1],[-25,4],[-273,-8],[-119,1],[-70,1],[-55,0],[-8,0],[-151,1],[-100,1],[-28,1],[-15,0],[-5,0],[-520,6],[-2,0],[-123,1],[-104,1],[-376,2],[-97,1],[-30,1],[-30,0],[-110,0],[-51,0],[-30,0],[-344,3],[-34,0],[-31,0],[-43,0]],[[88638,79018],[0,82],[0,46],[0,53],[0,34],[0,42],[0,27],[0,88],[0,47],[0,52],[0,31],[0,34],[1,86],[0,55],[0,30],[0,58],[1,31],[0,57],[0,2],[-1,116],[0,8],[0,57],[1,170],[1,74],[2,120],[3,197],[0,1],[-1,48],[0,130],[-1,224],[0,62],[-1,258],[0,1],[0,253],[0,113],[0,3],[0,68],[0,102],[-1,227],[2,143],[1,36],[0,31],[1,25],[0,46],[0,26],[0,23],[0,6],[0,29],[1,65],[0,36],[-1,26],[-10,116],[0,48],[1,205],[1,83],[1,169],[0,1],[0,61],[1,31],[0,33],[-3,179],[0,309],[0,41],[-1,27],[5,149],[-2,43],[1,147],[-3,143],[-8,48],[-3,32]],[[88626,84462],[-16,228],[-10,64],[5,27],[6,36],[6,210],[2,79],[2,56],[-1,69],[0,8],[5,25],[17,83],[1,35],[0,33],[0,32],[0,52],[1,41],[1,32],[0,22],[0,6],[0,41],[0,62],[0,2],[0,36],[1,101],[1,36],[0,73],[0,26],[1,27],[0,29],[1,74],[0,15],[0,23],[1,80],[0,23],[0,40],[1,30],[0,4],[0,23],[0,46],[1,27],[0,26],[0,54],[1,41],[0,44],[1,27],[-1,51],[1,87],[0,44],[1,66],[1,48],[0,26],[0,26],[1,44],[0,82],[0,62],[1,50],[0,51],[0,52],[0,49],[0,32],[0,28],[0,42],[0,58],[0,55],[0,60],[0,38],[0,47],[0,26],[0,31],[0,64],[0,87],[1,50],[-7,18],[-1,3]],[[99870,91149],[0,-124],[1,-454],[0,-115],[-1,-157],[0,-175],[0,-41],[0,-44],[4,-458],[0,-226],[-2,-435],[0,-26],[0,-424],[0,-239],[0,-346],[-8,-1392],[2,-755],[3,-1301],[3,-1341],[0,-211],[0,-887],[0,-293],[0,-381],[0,-971],[0,-349],[0,-200],[0,-842]],[[88626,84462],[-172,-11],[-98,-1],[-40,0],[-132,-1],[-156,-2],[-188,-1],[-24,-1],[-39,0],[-207,0],[-42,0],[-78,0],[-113,0],[-160,0],[-132,0],[-232,-1],[-28,0],[-54,0],[-89,0],[-71,-1],[-32,0],[-75,-1],[-63,-1],[-65,0],[0,-41],[1,-39],[0,-81],[1,-125],[0,-62],[1,-106],[1,-71],[0,-53],[0,-37],[1,-77],[1,-48],[2,-123],[0,-53],[1,-70],[3,-254],[3,-125],[0,-78],[0,-58],[0,-4],[5,-353],[-66,-1],[-195,-1],[-145,0],[-30,0],[-12,0],[-42,0],[-200,1],[-129,-1],[-96,0],[-45,0],[-28,0],[-53,0],[-45,0],[-63,0],[-51,0],[-357,0],[-150,-1],[-93,0],[-8,0],[-271,0],[-78,-1],[-10,0],[-23,-1],[-58,0],[-67,-1],[-300,-1],[-80,-1],[-86,0],[-44,0],[-73,0],[-57,0],[-50,0],[-23,0],[-65,-1],[-32,0],[-38,0],[-67,0],[-20,0],[-39,0],[-102,0],[-73,-1],[-179,0],[-96,-1],[-70,0],[-71,-1],[-24,0],[-93,-1],[-67,0],[-52,0],[-198,-1],[-89,-1],[-85,0],[-1,-108],[-3,-207],[-2,-143],[-1,-83],[0,-20],[-1,-60],[0,-27],[0,-32],[1,-65],[-3,-63],[0,-42],[-3,-272],[-1,-36],[0,-1],[-1,-90],[-1,-73],[-1,-28],[-4,-158],[-1,-108],[0,-2],[0,-26],[-6,-165],[-198,2],[-14,0],[-12,0],[-127,1],[-74,0],[-205,2],[-47,0],[-69,0],[-142,0],[-213,0],[-61,0],[-65,0],[-4,0],[-147,-1],[-148,-2],[-26,0],[-43,-2],[-228,-2],[-62,-1],[-65,-1],[-142,-1],[-50,0],[-29,-1],[-38,0]],[[79631,80753],[-412,3],[-88,0],[-31,1],[-87,2],[-11,0],[-43,0],[-283,0],[-35,0],[-125,-3],[-10,1],[-58,1],[-72,1],[-30,0],[-36,0],[-10,0],[-212,0],[-248,1],[-228,2],[-40,0],[-50,0],[-87,0],[-52,0],[-3,132],[-4,54],[2,121],[0,1],[2,105],[-2,51],[-2,137],[1,61],[0,7],[0,36],[0,8],[-4,41],[2,40],[-4,52],[-5,65],[0,2],[7,68],[-1,6],[-5,43],[-1,41],[-2,122],[0,36],[-2,109],[0,39],[-5,69],[0,5],[0,25],[5,33],[1,26],[1,28]],[[38429,82118],[-54,1],[-61,0],[-35,0],[-41,0],[-56,0],[-42,-1],[-43,-1],[-65,-1],[-55,-1],[-122,-1],[-31,0],[-34,-1],[-95,0],[-115,-1],[-89,1],[-54,1],[-28,1],[-29,0],[-133,0],[-313,3],[-13,0],[-26,1],[-13,0],[-148,-1],[-29,-1],[-10,0],[-58,0],[-259,-4],[-143,-3],[-6,0],[-137,-6],[-24,-1],[-287,-8],[-70,-1],[-115,-4],[-27,0],[-220,-8],[-12,-1],[-21,-1],[-98,0],[-19,-1],[-53,-1],[-12,-1],[-37,0],[-92,-1],[-24,-1],[-30,0],[-21,-1],[-52,-1],[-133,-6],[-11,0],[-113,-4],[-201,-3],[-227,-3],[-51,-1],[-74,-1],[-17,0],[-94,-2],[-8,-1],[-75,-3],[-9,0],[-128,-2],[-34,0],[-33,0],[-60,-5],[-3,0],[-51,-3],[-936,-30]],[[32620,82009],[-282,-3],[-447,-5],[-263,0],[-37,0],[-155,-4],[-246,-4],[-1,0],[-30,0],[-55,0],[-118,-2],[-31,0],[-44,0],[-2,0],[-41,0],[-29,2],[-24,0],[-65,-8],[-4,0],[-32,-1],[-77,-3],[-91,0],[-29,1],[-3,0],[-148,0],[-59,0],[-35,1],[-24,0],[-28,0],[-29,0],[-27,0],[-26,0],[-27,0],[-27,1],[-8,-1],[-71,-1],[-23,0],[-52,1],[-48,0],[-61,0],[-17,-1],[-13,-1],[-41,2],[-41,-1],[-10,0],[-26,0],[-28,0],[-28,-1],[-32,-4],[-55,3],[-1,0],[-30,-2],[-30,0],[-51,-2],[-149,0],[-46,0],[-33,0],[-58,-5],[-76,-6],[-22,-2],[-85,-69],[-104,-85],[-6,-4],[-9,-16],[-77,-135],[-31,-10],[-27,-8],[-21,-22],[-60,-64],[-67,-164],[-51,-35],[-30,-105],[-71,-34],[-76,-37],[-7,-10],[-53,-72],[-63,-59],[-13,-17],[-43,-54],[-25,-120],[-58,-49],[-16,-15],[-18,-3],[-35,-6],[-38,-7],[-49,-9],[-67,5],[-93,3],[-41,-58],[-68,-96],[-16,-22],[-7,-11],[-112,-63],[-42,7],[-27,5],[-12,2],[-11,1],[-77,8],[-35,-11],[-79,-48],[-37,-41],[-1,0],[-48,-41],[-35,-7],[-45,-15],[-101,-34],[-135,-107],[-69,-15],[-21,-4],[-17,-4],[-99,0],[-50,-7],[-39,-6],[-29,-18],[-57,-35],[-20,-13],[-18,-11],[-94,-63],[-53,-35],[-21,-13],[-75,-49],[-130,-117],[-46,-74],[-37,-54],[-98,-97],[-22,-28],[-16,-23],[-11,-33],[-4,-29],[-5,-90],[-1,-5],[-4,-43],[-11,-39],[-5,-56],[-5,-89],[-2,-46],[-13,-24],[-2,-4],[-35,-75],[-6,-23],[-3,-12],[1,-2],[2,-15],[1,-8],[21,-46],[4,-8],[14,-25],[10,-32],[-3,-27],[-18,-41],[-28,-27],[-26,-32],[-62,-50],[-47,-24],[-16,-9],[-4,-2],[-45,-15],[-17,-2],[-26,-4],[-27,-2],[-50,-5],[-26,-4],[-57,-14],[-39,-19],[-26,-21],[-12,-10],[-25,-22],[-24,-15],[-5,-5],[-15,-16],[-31,-39],[-39,-53],[-16,-32],[-27,-53],[-59,-113],[-26,-48],[-14,-23],[-19,-21],[-25,-13],[-12,-6],[-18,-11],[-1,0],[-18,-5],[-31,-10],[-31,-21],[-34,-20],[-51,-16],[-44,-4],[-45,6],[-24,4],[-13,2],[-24,2],[-41,-9],[-4,1],[-20,1],[-18,5],[-21,5],[-3,1],[-46,12],[-45,8],[-28,2],[-28,-3],[-37,-7],[-29,-9],[-24,-14],[-28,-29],[-12,-24],[-6,-29],[-1,-26],[1,-5],[19,-131],[-2,-16],[-2,-10],[-5,-7],[-25,-33],[-28,-24],[-24,-14],[-22,-6],[-27,-7],[-90,-33],[-1,-1],[-4,-1],[-25,-11],[-20,-13],[-21,-14],[-66,-40],[-94,-59],[-28,-16],[-48,-31],[-15,-6],[-8,-4],[-26,-8],[-29,-13],[-30,-21],[-33,-24],[-27,-2],[-24,-13],[-25,-10],[-20,-8],[-37,-24],[-12,-12],[-17,-17],[-56,-24],[-27,0],[-1,0],[-26,3],[-23,-5],[-4,-3],[-27,-17],[-87,-30],[-23,1],[-41,-3],[-32,-16],[-42,-21],[-36,-17],[-12,-6],[-117,-32],[-52,-13],[-10,-3],[-71,-18],[-49,-23],[-3,-2],[-9,-6],[-25,-17],[-1,0],[-30,-28],[-8,-13],[-8,-13],[-10,-29],[-1,-9],[-3,-20],[-12,-53],[-18,-31],[-9,-10],[-9,-7],[-27,-14],[-28,-2],[-28,1],[-26,1],[-26,-2],[-33,-3],[-12,-1],[-25,-2],[-24,2],[-5,0],[-72,8],[-25,6],[-54,21],[-36,17],[-25,4],[-34,-5],[-27,-7],[-28,-11],[-26,-11],[-32,-9],[-47,-7],[-60,1]],[[21759,76794],[0,43],[0,9],[3,69],[0,15],[1,88],[2,165],[2,180],[0,41],[-1,40],[-1,30],[0,60],[0,59],[0,54],[1,53],[0,30],[0,52],[0,30],[0,26],[1,50],[0,28],[0,53],[0,55],[1,262],[0,73],[-1,76],[0,76],[0,38],[-1,51],[0,57]],[[21766,78657],[0,40],[0,38],[1,111],[-1,40],[0,26],[0,2],[0,35],[0,26],[0,31],[0,29],[0,43],[1,34],[0,33],[0,48],[0,59],[1,40],[0,32],[0,33],[0,52],[0,37],[0,29],[0,35],[1,50],[0,51],[0,51],[1,74],[0,34],[0,31],[0,26],[0,26],[1,34],[0,34],[0,42],[0,46],[0,47],[1,74],[0,43],[0,35],[0,33],[0,36],[0,26],[0,41],[0,37],[0,30],[0,34],[1,38],[5,29],[-1,138],[0,38],[0,1],[0,82],[0,106],[0,35],[1,38],[0,38],[-1,41],[0,11],[-1,14],[0,27],[0,29],[0,7],[0,24],[1,26],[0,26],[0,43],[0,29],[0,1],[0,38],[0,39],[-1,49],[0,32],[1,31],[0,44],[0,21],[0,6],[0,56],[1,65],[0,53],[0,34],[0,87],[0,61],[0,90],[38,0],[33,1],[47,0],[-5,188],[-2,84],[-1,27],[-4,174],[-2,84],[0,1],[0,31],[-2,78],[-4,140],[0,28],[-1,32],[-2,65],[-1,62],[-1,32],[-1,36],[-1,33],[-3,113],[-1,40],[-1,32],[-3,67],[0,28],[-1,10],[-2,62],[-1,34],[-2,71],[-1,39],[-1,39],[-1,32],[0,26],[-2,50],[-1,51],[-4,148],[-4,183],[-1,27],[-1,33],[-3,79],[-1,39],[-2,35],[-2,75],[-1,22],[-1,42],[-1,37],[-1,27],[-2,79]],[[21825,84588],[939,31],[1784,57],[1719,59],[2111,73],[1172,40],[56,2],[206,7],[24,1],[90,3],[240,8],[64,2],[217,7],[111,4],[4,0],[8,0],[52,2],[51,2],[25,1],[24,0],[66,2],[47,2],[46,1],[21,0],[12,1],[144,4]],[[31106,84898],[22,1],[1,0],[52,1],[178,5]],[[31490,84908],[219,7]],[[41366,77891],[-223,-3],[-12,0],[-63,-1],[-2,0],[-111,-1]],[[40826,77884],[-24,0],[-116,-1],[-73,0],[-68,0],[-68,1],[-36,0],[-31,0],[-69,0],[-49,0],[-43,1],[-109,-1],[-87,0],[-33,0],[-26,0],[-42,0],[-94,0],[-72,0],[-42,1],[-46,1],[-50,1],[-41,1],[-67,1],[-76,2],[-11,0],[-17,0],[-88,2],[-332,3],[-111,2],[-13,0],[-30,0],[-72,1],[-11,0],[-136,1],[-25,0],[-61,-1],[-34,0],[-29,1],[-38,0],[-226,0],[-216,14],[-28,0],[-43,0],[-47,0],[-43,-1],[-31,0],[-26,0],[-27,0],[-86,0],[-112,-1],[-58,0],[-54,-1],[-102,-1],[-96,-1],[-123,0],[-97,-1],[-31,0],[-99,0],[-42,0],[-44,0],[-63,-1],[-90,0],[-96,-1],[-117,-1],[-78,0],[-36,-1],[-117,-1],[-133,0],[-138,0],[-37,0],[-27,0],[-52,-1],[-55,0],[-25,0],[-37,0],[-29,0],[-16,-1],[-24,0],[-93,-1],[-62,-1],[-63,-1],[-62,-1],[-29,0],[-31,2],[-2,0],[-206,-1],[-30,0],[-212,-2],[-294,-3],[-131,-2],[-6,0],[-18,0],[-1,38],[0,37],[0,6],[0,23],[-1,57],[-1,53],[-1,79],[0,44],[-1,38],[-1,64],[-1,47],[0,14],[-2,77],[-1,87],[0,83],[-1,32],[-2,49],[-1,80],[-2,92],[-1,59],[-1,26],[-13,29],[-7,0],[-65,-1],[-47,-1],[-63,-1],[-80,-2],[-75,0],[-104,-2],[-223,-4],[-137,-3],[-45,0],[-43,-1],[-46,0],[-38,-1],[-26,0],[-46,0],[-28,0],[-115,-1],[-6,0],[-18,-1],[-29,0],[-48,-1],[-60,0],[-74,-2],[-91,-1],[-80,-1],[-2,0],[-32,-1],[-116,0]],[[32641,78981],[2,159],[0,28],[2,65],[0,3],[0,121],[0,7],[-1,62],[-5,221],[-1,3],[0,96],[-6,352],[0,26],[0,176],[0,48],[1,65],[-4,50],[-2,24],[0,2],[4,75],[1,1],[0,84],[-2,75],[-1,20],[3,120],[-1,7],[-4,332],[-5,25],[0,136],[0,66],[3,41],[4,102],[0,58],[-2,38],[0,7],[-5,121],[0,153],[-2,59]],[[21766,78657],[-31,1],[-27,0],[-27,-1],[-34,-1],[-63,-1],[-48,-1],[-63,-1],[-26,0],[-136,-2],[-24,0],[-85,0],[-102,-1],[-30,0],[-34,0],[-32,0],[-33,0],[-27,0],[-28,0],[-28,0],[-26,0],[-43,0],[-34,0],[-34,0],[-29,0],[-29,0],[-30,0],[-28,0],[-28,0],[-29,-1],[-36,0],[-28,0],[-31,0],[-72,0],[-29,0],[-26,0],[-28,-1],[-29,0],[-36,0],[-30,0],[-27,0],[-26,0],[-1,0],[-22,0],[-38,-1],[-34,0],[-26,0],[-28,0],[-27,0],[-25,-1],[-37,0],[-27,0],[-24,0],[-25,0],[-26,-1],[-37,0],[-24,0],[-42,-1],[-25,0],[-26,0],[-40,-1],[-30,0],[-29,0],[-24,0],[-33,0],[-30,-1],[-33,0],[-25,0],[-34,0],[-44,0],[-30,0],[-45,-1],[-70,-1],[-23,0],[-46,-1],[-38,-1],[-37,-1],[-26,0],[-1,0],[-77,-1],[-50,-1],[-25,-1],[-34,-1],[-19,0],[-8,0],[-65,0],[-55,1],[-29,0],[-33,0],[-29,0],[-38,0],[-68,2],[-24,0],[-29,1],[-25,0],[-33,1],[-62,0],[-61,1],[-92,0],[-33,-1],[-108,-5],[-63,-4],[-46,-2],[-10,0],[-39,-1],[-32,-1],[-88,-2],[-47,-2],[-37,0],[-39,0],[-38,0],[-39,0],[-38,0],[-35,0],[-35,0],[-34,0],[-31,0],[-28,-1],[-36,0],[-41,0],[-35,0],[-34,0],[-28,0],[-28,-1],[-28,0],[-28,0],[-26,0],[-26,0],[-25,0],[-26,0],[-27,0],[-25,0],[-24,0],[-28,0],[-49,0],[-32,0],[-401,-1],[-44,8],[-125,-2],[-34,0],[-36,0],[-45,-1],[-58,-1],[-39,0],[-108,-2],[-4,0],[-147,1],[-25,0],[-28,0],[-24,0],[-25,0],[-45,0],[-48,0],[-35,0],[-75,0],[-125,0],[-70,0],[-57,0],[-24,0],[-32,0],[-31,0],[-29,0],[-30,0],[-51,0],[-219,-6],[-121,-1],[-36,0],[-41,-1],[-39,0],[-44,0],[-25,0],[-25,0],[-28,0],[-34,0],[-53,1],[-25,-1],[-32,0],[-43,0],[-73,0],[-30,-1],[-27,0],[-36,0],[-28,0],[-26,-1],[-25,0],[-26,0],[-29,0],[-29,-1],[-27,0],[-28,0],[-35,-1],[-28,0],[-23,-1],[-30,0],[-34,8],[-57,0],[-26,0],[-24,0],[-37,0],[-45,0],[-66,0],[-31,0],[-30,0],[-38,0],[-32,0],[-29,-1],[-40,0],[-33,0],[-200,-1],[-33,0],[-32,0],[-30,-1],[-29,0],[-26,0],[-24,0],[-37,0],[-85,-1],[-33,0],[-32,0],[-29,-1],[-26,0],[-27,0],[-42,0],[-33,0],[-35,0],[-41,1],[-38,-1],[-31,1],[-43,-1],[-29,0],[-26,0],[-35,0],[-34,0],[-31,0],[-27,0],[-28,0],[-32,0],[-37,0],[-26,0],[-28,0],[-26,0],[-34,0],[-14,0],[-9,0],[-24,0],[-29,0],[-31,1],[-33,0],[-33,0],[-27,0],[-42,0],[-26,0],[-31,0],[-28,0],[-55,0],[-36,0],[-28,1],[-28,-1],[-30,0],[-25,0],[-36,0],[-26,0],[-34,0],[-29,0],[-30,-1],[-27,0],[-24,0],[-27,0],[-25,-3],[-49,-2]],[[11109,78606],[0,13],[-1,48],[0,42],[0,32],[0,37],[0,29],[0,30],[0,40],[0,42],[-1,34],[1,32],[-1,56],[-1,129],[-1,165],[-98,0],[-19,0],[-328,-1],[-227,0],[-92,0],[-134,-3],[2,72],[-1,28],[0,31],[-1,52],[0,3],[-2,184],[2,251],[-2,92],[2,27],[-4,110],[0,28],[1,34],[-1,138],[0,2],[-3,58],[2,27],[-1,36],[1,39],[1,30],[1,33],[-1,31],[1,27],[0,44],[0,29],[-1,26],[0,49],[0,182],[0,99],[0,40],[-2,44],[-1,108],[0,44],[-1,155],[-2,59],[-1,25],[0,14],[0,36],[-2,334],[-52,1],[-30,1],[-115,3],[-89,0],[-31,1],[-52,1],[-28,-1],[1,56],[0,85],[0,29],[-1,36],[-1,72],[-2,85],[0,40],[-1,31],[0,30],[-1,46],[0,29],[-1,28],[-1,38],[0,26],[0,2],[0,24],[-1,48],[-2,78],[-2,89],[0,26],[-1,38],[0,51],[-1,60],[0,35],[-1,36],[-2,133],[0,2],[-3,180],[2,35],[0,5],[-2,120],[0,5],[-2,26],[-2,310],[0,59],[-3,273]],[[9770,84224],[152,4],[754,16],[3,0],[430,13],[2935,89],[114,3],[1248,38],[2776,88],[866,27],[127,4],[311,10],[1144,35],[746,23],[449,14]],[[88638,79018],[0,-35],[0,-49],[0,-48],[-1,-66],[0,-39],[0,-41],[0,-76],[-1,-94],[0,-78],[0,-47],[-1,-54],[0,-26],[0,-50],[0,-30],[0,-28],[-1,-65],[0,-38],[0,-37],[0,-90],[0,-52],[-1,-51],[0,-56],[0,-69],[0,-37],[0,-66],[0,-51],[0,-172],[0,-26],[0,-42],[1,-57],[0,-28],[1,-40],[0,-57],[1,-27],[1,-120],[-1,-27],[1,-124],[0,-10],[0,-19],[1,-171],[0,-26],[0,-94],[0,-85],[0,-97],[0,-111],[-1,-172],[0,-5],[0,-79],[-1,-47],[0,-220],[-1,-87],[0,-32],[0,-90],[0,-31],[-1,-219],[3,-235]],[[88637,75095],[-36,0],[-27,0],[-57,-1],[-38,0],[-45,0],[-31,0],[-38,0],[-29,0],[-32,0],[-41,0],[-30,0],[-31,0],[-24,-1],[-28,1],[-28,0],[-23,-1],[-42,0],[-55,1],[-7,0],[-65,-1],[-65,0],[-39,0],[-39,-1],[-33,0],[-289,0],[-39,-1],[-43,0],[-58,1],[-90,-1],[-244,-2],[-51,-2],[-67,-3],[-165,2],[-1,0],[-79,0],[-74,0],[-78,-1],[-65,0],[-89,-1],[-40,0],[-78,0],[-25,0],[-112,-1],[-47,0],[-63,0],[-69,1],[-29,0],[-41,0],[-36,0],[-129,0],[-56,1],[-31,0],[-32,0],[-31,0],[-79,0],[-38,0],[-2,0],[-97,0],[-35,0],[-57,1],[-41,-1],[-198,-1],[-35,0],[-34,1],[-120,0],[-46,0],[-37,0],[-45,0],[-37,1],[-31,0],[-34,0],[-42,0],[-41,0],[-60,1],[-45,0],[-83,0],[-118,0],[-156,-1],[-135,0],[-98,0],[-53,0],[-76,-1],[-71,0],[-42,1],[-4,0],[-33,0],[-258,-1],[-55,1],[-41,0],[-30,0],[-42,0],[-44,0],[-79,-1],[-25,0],[-57,0],[-30,1],[-68,-1],[-31,0],[-59,0],[-43,0],[-255,-3],[-24,0],[-150,2],[-37,-1],[-45,0],[-50,0],[-60,0],[-25,0],[-73,-1],[-35,0],[-24,-1],[-29,0],[-33,0],[-43,0],[-37,0],[-46,1],[-43,0],[-40,0],[-36,1],[-28,0],[-49,1],[-36,0],[-75,1],[-27,0],[-38,1],[-33,0],[-36,0],[-41,1],[-43,0],[-57,1],[-36,0],[-29,1],[-32,0],[-84,-1],[-25,1],[-39,1],[-6,1],[-162,1],[-8,0],[-162,1],[-77,1],[-160,3],[-8,0],[-62,0],[-25,0],[-127,3],[-52,0],[-53,2],[-3,0],[-32,-1],[-52,1],[-47,1],[-34,0],[-29,1],[-73,1],[-25,0]],[[79628,75105],[-3,31],[-3,43],[-7,62],[0,44],[0,47],[0,6],[-1,29],[0,54],[0,27],[0,36],[-1,19],[0,138],[-1,278],[0,55],[-1,76],[0,26],[0,42],[0,13],[-1,17],[0,27],[0,29],[0,9],[0,72],[0,27],[-1,57],[1,55],[0,48],[0,63],[1,48],[0,37],[1,94],[0,3],[0,63],[0,49],[0,55],[0,91],[1,27],[0,27],[29,16],[76,1],[24,0],[24,0],[40,0],[48,1],[74,0],[43,0],[37,0],[0,27],[0,43],[-1,63],[0,28],[0,27],[0,40],[0,39],[-1,83],[0,47],[0,34],[-2,45],[-1,52],[-18,2],[-22,3],[-30,0],[-28,0],[-32,-1],[-29,0],[-27,0],[-25,0],[-87,-1],[-44,0],[-24,0],[-17,24],[0,38],[1,41],[0,56],[1,31],[0,55],[1,37],[0,28],[1,46],[1,52],[1,53],[2,95],[1,87],[0,41],[0,38],[1,55],[0,47],[0,28],[2,178],[0,35],[1,37],[0,29],[1,48],[0,48],[0,65],[0,35],[1,42],[0,41],[1,57],[0,35],[0,51],[0,61],[0,142],[1,53],[0,90],[0,70],[0,1],[0,85],[1,228],[0,36],[0,27],[0,38],[0,41],[0,32],[0,33],[-3,316],[-1,98],[0,33],[-1,38],[0,33],[-1,76],[0,56],[-1,35]],[[11109,78606],[-1,-31],[0,-28],[0,-27],[0,-28],[0,-29],[0,-28],[0,-29],[1,-29],[0,-28],[-1,-27],[0,-27],[1,-34],[0,-115],[0,-30],[0,-60],[0,-28],[0,-14],[0,-18],[0,-53],[1,-60],[0,-69],[0,-27],[0,-34],[0,-39],[0,-58],[1,-82],[0,-71],[0,-4],[0,-28],[1,-28],[0,-28],[0,-28],[0,-29],[1,-28],[0,-32],[0,-47],[0,-31],[1,-31],[0,-61]],[[11114,77128],[-165,-1],[-53,0],[-121,0],[-24,1],[-35,0],[-27,0],[-24,0],[-37,-1],[-51,0],[-62,0],[-96,0],[-58,0],[-35,0],[-36,0],[-35,-1],[-37,0],[-33,0],[-55,-1],[-29,0],[-35,0],[-26,-1],[-28,-2],[-17,1],[-11,1],[-33,1],[-83,1],[-24,-1],[-41,-1],[-89,-3],[-186,4],[-7,0],[-288,-3],[-2,0],[-38,-2],[-34,0],[-41,0],[-40,0],[-53,0],[-126,-1],[-28,0],[-38,0],[-57,0],[-60,-1],[-54,0],[-28,0],[-31,0],[-80,0],[-30,0],[-52,0],[-29,0],[-28,0],[-38,0],[-30,0],[-37,0],[-64,0],[-78,-1],[-89,0],[-105,0],[-93,0],[-85,0],[-27,0],[-76,0],[-23,0],[-86,0],[-59,0],[-56,0],[-111,0],[-77,0],[-43,0],[-68,0],[-90,0],[-88,0],[-96,-1],[-45,0],[-28,0],[-33,0],[-110,0],[-51,0],[-40,-1],[-85,0],[-39,-1],[-34,0],[-133,-1],[-1,0],[-37,-1],[-13,0],[-17,0],[-48,1],[-2,0],[-131,-1],[-29,0],[-67,0],[-114,0],[-37,0],[-43,0],[-25,0],[-28,0],[-25,0],[-48,-1],[-29,0],[-65,0],[-38,0],[-31,0],[-95,-1],[-38,0],[-25,0],[-29,-1],[-30,0],[-24,1],[-38,0],[-80,-1],[-43,0],[-45,0],[-39,0],[-30,0],[-34,0],[-27,-1],[-30,1],[-2,0],[-26,-1],[-33,0],[-24,0],[-33,0],[-26,0],[-36,0],[-27,0],[-35,-1],[-35,0],[-25,0],[-28,0],[-30,0],[-29,0],[-44,0],[-38,0],[-32,0],[-38,0],[-35,0],[-112,0],[-27,0],[-24,-1],[-24,0],[-28,0],[-35,0],[-34,0],[-34,0],[-26,0],[-36,0],[-27,-1],[-29,1],[-235,-1],[-77,0],[-194,-1],[-24,0],[-10,0],[-66,0],[-105,-4],[-38,0],[-24,0],[-42,-1],[-30,0],[-33,-1],[-41,0],[-38,0],[-36,0],[-38,0],[-30,-1],[-26,0],[-38,0],[-38,-1],[-37,0],[-49,0],[-38,0],[-33,0],[-54,-1],[-31,0],[-40,0],[-35,0],[-35,0],[-28,0],[-34,-1],[-27,0],[-37,0],[-33,-1],[-38,0],[-33,0],[-30,0],[-23,0],[-32,0],[-31,-1],[-32,0],[-24,0],[-25,-1],[-25,0],[-28,0],[-77,-1],[-93,1],[-1,0],[-135,3],[-23,1],[-182,-2],[-26,-1],[-52,0],[-53,0],[-35,-1],[-55,0],[-44,-1],[-58,0],[-64,0],[-28,0],[-29,0],[-77,-1],[-58,0],[-25,0],[-46,0],[-56,0],[-40,0],[-27,-1],[-24,0],[-36,0],[-34,0],[-35,0],[-35,0]],[[377,77088],[0,151],[0,103],[0,2],[1,25],[-1,44],[0,7],[1,39],[-1,32],[1,22],[-1,34],[0,31],[-2,46],[0,26],[0,64],[0,56],[0,23],[-1,34],[0,1],[1,29],[-1,49],[0,60],[0,37],[0,26],[1,52],[0,2],[-1,12],[0,26],[0,15],[0,34],[0,32],[-1,28],[0,54],[0,19],[0,38],[-1,48],[0,34],[0,2],[0,5],[0,28],[0,26],[0,29],[-1,18],[0,10],[0,7],[0,62],[0,10],[-1,20],[0,35],[-2,320],[-1,38],[0,46],[0,64],[0,91],[-1,35],[0,35],[0,30],[0,26],[-1,6],[0,4],[0,31],[-1,60],[0,54],[0,4],[0,41],[-1,41],[0,31],[0,30],[-1,55],[0,27],[0,3],[0,21],[-1,43],[0,52],[0,13],[0,25],[-1,31],[0,4],[0,57],[-1,40],[0,31],[0,38],[0,20],[0,5],[0,14],[-1,35],[0,26],[0,3],[0,5],[-1,31],[0,27],[0,8],[0,10],[-1,36],[0,44],[-1,48],[0,6],[-2,68],[0,31],[-1,33],[0,27],[-1,33],[0,36],[0,6],[0,47],[0,79],[0,56],[0,26],[-2,71],[0,2],[-1,90],[0,39],[-1,55],[0,32],[-1,54],[0,31],[-1,26],[-1,35],[0,30],[0,74],[0,20],[-1,56],[0,65],[0,9],[-1,52],[-1,120],[0,27],[-1,47],[0,44],[-3,104],[0,79],[1,62],[1,78],[0,85],[0,7],[-6,72],[0,3],[0,33],[1,98],[2,134],[1,48],[0,2],[-1,48],[-1,180],[0,192],[-2,65],[-1,82],[-2,72],[-3,142],[5,11],[-1,31],[0,52],[0,44],[0,32],[0,63],[0,18],[1,39],[-1,11],[0,2],[0,44],[0,45],[0,18],[0,23],[1,35],[0,3],[0,6],[0,1],[0,72],[1227,40],[131,4],[1246,41],[103,4],[2946,67],[36,1],[99,2],[76,2],[624,14],[715,18],[2235,54]],[[79628,75105],[-12,0]],[[79616,75105],[-30,0],[-30,1],[-30,0],[-26,1],[-25,2],[-43,4],[-136,2],[-35,0],[-113,1],[-168,1],[-229,3],[-259,5],[-2,0],[-250,3],[-238,5],[-3,0],[-73,2],[-32,2],[-70,2],[-3,0],[-465,4],[-114,3],[-61,2],[-68,1],[-213,2],[-10,0],[-30,0],[-39,0],[-4,0],[-126,2],[-2,0],[-22,0],[-186,3],[-1,0],[-45,0],[-121,2],[-44,0],[-30,0],[-140,3],[-73,0],[-145,2],[-106,0],[-30,1],[-28,0],[-51,2],[-108,0],[-92,0],[-225,0],[-41,1],[-78,1],[-67,3],[-25,0],[-73,0],[-81,0],[9,-30],[1,-5],[3,-8],[0,-2],[1,-4],[1,-5],[1,-3],[0,-3],[0,-1],[1,-2],[2,-25],[1,-3],[4,-16],[9,-15],[1,-3],[2,-4],[1,-1],[0,-1],[6,-8],[21,-20],[9,-5],[2,-1],[4,-2],[3,-2],[3,-3],[4,-3],[3,-3],[5,-6],[2,-2],[75,-83],[13,-15],[19,-21],[2,-3],[3,-3],[2,-4],[2,-4],[2,-4],[2,-4],[1,-4],[2,-4],[0,-5],[1,-4],[1,-5],[0,-4],[0,-5],[-1,-4],[-1,-5],[0,-4],[-2,-4],[-1,-5],[-2,-4],[-2,-4],[0,-1],[-21,-37],[-49,-91],[-6,-29],[10,-21],[34,-41],[30,-35],[13,-35],[21,-63],[-2,-23],[-3,-41],[9,-56],[8,-13],[3,-6],[20,-27],[1,-1],[4,-15],[-4,-14],[-10,-112],[6,-7],[8,-9],[96,-40],[2,-1],[4,-2],[3,-1],[37,-23],[0,-1],[4,-2],[3,-3],[3,-3],[3,-3],[3,-3],[39,-48],[1,-1],[9,-11],[1,-4],[5,-15],[19,-52],[16,-49],[8,-23],[21,-62],[11,-32],[7,-21],[15,-3],[6,-4],[2,-5],[-3,-8],[-14,-8],[-1,-6],[-2,-19],[0,-15],[5,-6],[1,-3],[15,-8],[33,-7],[6,0],[23,0],[20,-3],[13,-11],[6,-10],[0,-2],[2,-15],[-1,-9],[-36,-4],[-11,-1],[-1,0],[-7,-5],[-12,-20],[0,-19],[6,-17],[5,-10],[64,-62],[15,-16],[32,-33],[16,-18],[1,-20],[-2,-3],[-2,-4],[-10,-4],[-55,-21],[-90,2],[-19,0],[-409,-6],[-72,-1],[-325,-3],[-125,-2],[-140,-2],[-211,-3],[-56,-1],[-1,0],[-202,-1],[-8,0],[-31,-1],[-79,0],[-155,2],[-53,1],[-276,4],[-27,0],[-125,-2],[-44,0],[-48,0],[-53,-1],[-75,-1],[-34,0],[-34,0],[-58,-1],[-25,0],[-7,0]],[[72806,73291],[-40,0],[-200,-1],[-156,-1],[-12,0],[-62,5],[-297,-8],[-22,0],[-41,0],[-176,0],[-197,3],[-122,-7],[-26,-1],[-40,0],[-8,0],[-109,-1],[-76,0],[-117,0],[-42,-1],[-65,-1],[-119,-1],[-78,-1],[-104,0],[-218,-3],[-223,-6],[-24,0],[-42,-1],[-90,-1],[-39,-1],[-45,0],[-27,-1],[-4,0],[-33,0],[-68,-2],[-26,-1],[-24,0],[-43,0],[-35,-1],[-37,0],[-32,-1],[-41,0],[-41,-1],[-71,0],[-25,-1],[-54,0],[-151,-3],[-3,0],[-83,-2],[-435,-8],[-57,0],[-45,2],[-164,-3],[-123,-2],[-70,-1]],[[68324,73239],[-6,161],[-1,47],[0,5],[4,89],[0,64],[0,36],[1,51],[2,109],[4,388],[0,2],[7,199],[0,49],[10,214],[0,109],[0,41],[0,43],[0,43],[0,63],[0,34],[1,71],[1,106],[-36,1],[-100,1],[-34,0],[-60,1],[-26,0],[-28,-3],[-23,3],[-53,-3],[-26,3],[-32,1],[-67,1],[-38,0],[-14,2],[-13,1],[-42,-3],[-9,-1],[-17,-1],[-42,0],[-162,2],[-1,0],[-51,1],[-71,2],[-98,4],[-28,4],[-86,-8],[-76,8],[-12,-2],[-67,-6],[-70,2],[-44,1],[-100,2],[-82,2],[-192,6],[-60,-5],[-330,5],[2,40],[3,301],[2,115],[0,2],[0,15],[0,67],[2,73],[0,1],[10,237],[0,62],[0,29],[0,5],[0,29],[0,6],[0,193],[7,212],[-3,135],[7,140],[0,6],[0,66],[-2,158],[5,140],[0,102],[0,59],[2,134],[2,394],[0,53],[4,215],[1,23],[0,181],[0,39],[0,1],[7,388],[6,100],[7,120],[1,15],[5,62]],[[57409,77111],[2,-50],[1,-26],[3,-52],[1,-12],[1,-37],[0,-8],[4,-35],[-1,-29],[1,-39],[0,-2],[1,-26],[4,-48],[1,-26],[12,-28],[-1,-34],[1,-57],[2,-28],[1,-38],[4,-39],[1,-21],[1,-17],[-1,-254],[14,-216],[20,-224],[3,-88],[4,-74],[-17,-161],[0,-27],[2,-32],[3,-56],[1,-59],[1,-35],[2,-42],[4,-47],[1,-22],[2,-26],[-4,-25],[5,-87],[0,-6],[1,-45],[1,-32],[4,-110],[3,-57],[4,-28],[1,-128],[1,-34],[1,-46],[3,-86],[1,-37],[5,-102],[1,-34],[4,-91],[2,-38],[6,-67],[-1,-68],[1,-16],[2,-74],[0,-90],[2,-70],[5,-59],[6,-171],[2,-40]],[[57543,73455],[-109,0],[-90,0],[-186,1],[-82,0],[-323,3],[-26,1],[-77,0],[-2,0],[-88,1],[-30,0],[-1,0],[-139,1],[-27,0],[-144,2],[-311,-2],[-93,0],[-22,0],[-79,2],[-40,0],[-59,0],[-184,-1],[-63,0],[-153,-1],[-43,1],[-44,1],[-45,1],[-23,0],[-33,1],[-25,1],[-40,0],[-40,1],[-40,1],[-41,1],[-40,1],[-62,1],[-54,2],[-41,0],[-126,3],[-204,4],[-52,1],[-92,3],[-26,0],[-50,1],[-28,1],[-184,5],[-210,2],[-24,0],[-13,0],[-23,1],[-525,11],[-121,2],[-32,0],[-39,1],[-129,1],[-74,2],[-34,0],[-152,3],[-64,1],[-225,4],[-78,1],[-42,1],[-61,2],[-150,0],[-100,0],[-53,0],[-38,0],[-54,1],[-5,0],[-209,0],[-1,0],[-23,0],[-143,0],[-13,0],[-48,0],[-55,1],[-159,-14],[-27,4],[-181,15],[-36,2],[-182,-4],[-4,0],[-108,4],[-60,0],[-107,1],[-158,-1],[-26,1],[-34,1],[-37,0],[-25,1],[-25,3],[-121,3],[-19,0],[-68,1],[-31,0],[-37,1],[-10,0],[-16,0],[-52,1],[-59,1],[-54,1],[-96,1],[-54,1],[-49,1],[-50,1],[-97,1],[-24,0],[-52,1],[-108,2],[-32,0],[-36,1],[-68,1],[-150,2],[-57,1],[-29,0],[-4,0],[-22,0],[-50,1],[-66,1],[-35,0],[-49,1],[-55,1],[-36,1],[-19,1],[-15,0],[-94,2],[-85,0],[-107,2],[-340,7],[-93,2],[-104,3],[-1,0],[-141,3],[-2,0],[-109,2],[-75,3],[-74,2],[-27,0],[-141,3],[-16,1],[-28,1],[-229,5],[-211,5],[-16,0],[-27,1],[-61,2],[-91,2],[-101,3],[-1,0],[-131,5]],[[45950,73620],[-2,39],[-2,55],[-2,38],[-2,65],[-1,32],[-1,36],[-6,154],[-3,84],[-3,67],[-1,30],[-2,69],[-2,56],[-2,59],[-3,82],[-3,64],[-3,54],[-2,49],[-1,52],[-4,91],[-3,48],[-3,101],[-2,30],[-2,45],[-2,54],[-2,71],[-1,10],[-1,24],[-2,48],[-1,34],[-3,85],[-1,37],[-2,29],[-1,28],[-2,40],[-4,75],[-4,66],[0,32],[-1,28],[-6,40],[0,1],[2,67],[-12,308],[0,14],[-2,42],[-6,121],[-3,70],[-1,31],[-2,50],[-2,56],[-6,127],[-1,37],[-1,48],[-2,36],[-2,31],[-4,82],[-1,29],[-1,29],[-2,27],[-2,73],[-4,73],[-1,39],[-2,46],[-2,29],[-16,12],[-5,4],[-43,-1],[-171,-1],[-50,0],[-172,0],[-170,0],[-60,1],[-125,0],[-106,0],[-2,0],[-108,0],[-99,0],[-28,0],[-42,0],[-24,0],[-27,0]],[[32641,78981],[-1,-123],[-1,-58],[-2,-92],[-1,-99],[-2,-172],[0,-46],[-1,-34],[0,-2],[-1,-50],[0,-34],[0,-21],[-1,-8],[0,-73],[0,-30],[-1,-85],[0,-63],[-1,-130],[-1,-107],[0,-33],[-1,-25],[0,-4],[0,-52],[0,-64],[-1,-39],[0,-26],[0,-39],[-1,-82],[-1,-105],[-1,-69],[-1,-49],[0,-26],[-1,-47],[-1,-26],[-2,-79],[0,-1],[0,-34],[-5,-181],[-3,-185],[-3,-182],[-3,-187],[-1,-35],[-1,-38],[0,-44],[-1,-38],[-1,-28],[-3,-185],[-1,-56],[-1,-37],[-1,-49],[-1,-43],[-3,-147],[-1,-71],[-1,-28],[-2,-124],[-1,-57],[-3,-134],[-1,-51],[-2,-107],[0,-26],[-1,-26],[0,-34],[-1,-35],[-2,-88],[-4,-146],[-1,-32],[-1,-48],[-2,-59],[-2,-82],[-2,-53],[-2,-83],[0,-30],[-2,-25],[-3,-152],[-2,-59],[0,-1],[-1,-25],[0,-5],[-2,-113],[-1,-31],[-2,-77],[-1,-39],[-1,-28],[-1,-36],[0,-30],[-3,-92],[-1,-43],[-2,-70],[-3,-96],[-2,-76],[-1,-36],[-1,-31],[-1,-51],[-2,-46],[-1,-38],[0,-27],[-2,-69],[-1,-36],[-1,-37],[-1,-27],[-2,-73],[-1,-36]],[[32520,72700],[-1,-52],[0,-46],[-3,-266],[-2,-184],[-4,-193],[0,-27],[-3,-155],[-1,-74],[-2,-113],[-4,-189],[0,-64],[0,-46],[-1,-56],[0,-3],[-2,-201],[0,-48],[-2,-98],[0,-29],[-1,-46],[0,-31],[0,-76],[-1,-31],[1,-24],[0,-5],[-1,-37],[0,-29],[0,-18],[-1,-16],[0,-67]],[[32492,70476],[-25,-1],[-30,0],[-28,1],[-26,-1],[-123,0],[-57,0],[-48,-1],[-33,-1],[-36,0],[-28,-1],[-37,0],[-35,-1],[-136,-1],[-48,-1],[-237,-2],[-86,0],[-64,-1],[-163,-6],[-97,-2],[-233,2],[-262,-10],[-65,0],[-423,7],[-11,0],[-170,2],[-16,1],[-131,1],[-223,3],[-116,2],[-111,5],[-3,0],[-26,1],[-55,1],[-47,0],[-70,2],[-138,5],[-104,4],[-174,3],[-50,-1],[-211,2],[-230,1],[-69,1],[-157,2],[-300,3],[-38,0],[-103,0],[-112,1],[-120,0],[-99,1],[-2,0],[-83,2],[-15,0],[-10,0],[-25,0],[-298,4],[-119,2],[-43,0],[-1,0],[-87,1],[-76,1],[-31,1],[-217,3],[-38,0],[-79,0],[-317,3],[-358,1],[-80,2],[-25,4],[-196,-1],[-80,0],[-59,-1],[-31,0],[-58,0],[-41,-1],[-65,0],[-37,-1],[-99,0],[-31,0],[-33,-1],[-67,0],[-61,0],[-24,0],[-90,0],[-35,-1],[-103,0],[-121,0],[-79,-1],[-112,0],[-87,0],[-49,0],[-106,1],[-109,0],[-110,-1],[-106,0],[-88,0],[-120,-1],[-74,0],[-62,0],[-12,0],[-53,0],[-50,0],[-132,-1],[-82,0],[-213,0],[-32,-1],[-97,-1],[-94,-1],[-30,0],[-107,-1],[-27,0],[-24,-1],[-26,0],[-33,-1],[-38,-1],[-20,0],[-29,-1],[-30,0],[-70,-1],[-44,-1]],[[21808,70502],[0,37],[-1,88],[-1,46],[0,43],[-1,35],[0,35],[-1,37],[-1,49],[-1,76],[-1,60],[-1,43],[0,27],[-1,83],[-1,43],[-1,35],[-1,125],[-1,47],[0,19],[-2,96],[-1,28],[0,29],[-1,31],[-1,77],[0,2],[0,30],[0,28],[-1,29],[0,30],[-1,30],[0,44],[-1,28],[0,30],[-1,31],[0,32],[-1,28],[0,74],[0,28],[-1,10],[0,19],[-1,33],[0,33],[-1,32],[0,33],[0,31],[1,31],[0,33],[-1,38],[1,110],[0,42],[-1,56],[0,37],[0,38],[-1,66],[0,35],[0,36],[0,37],[-1,35],[-2,68],[0,27],[0,45],[-1,27],[-1,61],[0,40],[0,37],[0,32],[-1,79],[-1,46],[-1,38],[0,46],[-1,6],[-2,85],[0,28],[0,33],[-1,88],[-1,74],[-1,60],[0,26],[-2,100],[-1,43],[-1,32],[-1,84],[-1,89],[-1,84],[-1,57],[-1,72],[-1,104],[0,36],[-3,25],[3,57],[-1,86],[0,2],[-1,37],[-1,130],[-1,18],[0,37],[-2,22],[-2,40],[2,74],[1,26],[0,30],[0,30],[0,32],[1,31],[0,28],[0,26],[0,26],[0,28],[0,28],[0,32],[1,27],[0,30],[0,30],[0,26],[0,30],[0,28],[1,26],[0,27],[0,30],[0,29],[0,4],[0,26],[2,31],[0,26],[0,27],[0,32],[1,31],[0,26],[-1,30],[0,25],[0,28],[0,29],[0,46],[2,36],[0,42],[0,46],[0,30],[0,91],[1,67],[0,37],[0,34],[0,37],[0,28],[0,35],[-1,29],[1,31],[0,27],[0,27],[0,18],[0,69],[0,7],[-1,42],[0,5]],[[68324,73239],[-126,0],[-2,0],[-87,0],[-137,0],[-110,-1],[-148,6],[-47,2],[-196,2],[-1,0],[-25,0],[-130,-8],[-38,-3],[-22,0],[-12,0],[-27,-1],[-54,-3],[-373,8],[-217,5],[-5,0],[-78,0],[-360,0],[-1,-40],[-4,-246],[-1,-71],[-12,-30],[-5,-201],[-7,-369],[0,-7],[-6,-388],[-2,-112],[-2,-159],[-1,-72],[-2,-54],[-3,-172],[0,-2],[-98,-2],[-95,-2],[-397,2],[-67,-4],[-235,1],[-258,-1],[-37,0],[-340,2],[-361,1],[-214,0],[-174,0],[-5,-112],[-4,-192],[0,-35],[0,-28],[-7,-202],[-5,-241],[0,-22],[-1,-89],[-6,-115],[-2,-171],[-7,-252],[-3,-79],[0,-43],[-2,-39],[-148,3],[-263,2],[-81,0],[-485,4],[-9,0],[-36,-1],[-31,2],[-44,0],[-31,0],[-1,0],[-46,0],[-411,3],[-418,3],[-216,2],[-4,-187],[-1,-25],[-2,-110],[-2,-131],[-2,-83],[-6,-318],[-1,-67],[-1,-15],[0,-3],[-2,-89],[-5,-285],[-1,-25],[-7,-377],[-3,-118],[0,-42]],[[61508,67843],[-151,4],[-81,0],[-467,7],[-54,1],[-74,1],[-120,2],[-72,1],[-119,1],[-2,1],[-152,2],[-104,1],[-186,3],[-102,1],[-137,2],[-61,1],[-26,0],[-30,0],[-34,1],[-23,1],[-90,3],[-27,1],[-66,2],[-40,1],[-35,1],[-43,2],[-53,2],[-7,0],[-49,2],[-24,1],[-83,1],[-65,1],[-118,3],[-56,1],[-37,1],[-163,1],[-130,1],[-4,0],[-82,0],[-147,1],[-292,2],[-17,0],[-58,0],[-33,0],[-47,0],[-71,0]],[[57676,67900],[-14,598],[-9,344],[-5,237],[-37,1554],[-6,243],[-34,1409],[-12,498],[-14,595],[-2,77]],[[99872,78962],[-4,-267],[-4,-290],[4,-379],[11,-1209],[0,-707],[0,-1210],[0,-711],[0,-533],[0,-269],[0,-1483],[0,-99],[0,-98],[0,-131],[0,-641],[0,-119],[0,-232],[-2,-525],[0,-358],[0,-80]],[[99877,69621],[-61,0],[-2,0],[-42,-1],[-142,0],[-89,0],[-257,0],[-25,0],[-29,1],[-26,1],[-32,1],[-63,0],[-32,0],[-179,0],[-61,0],[-115,0],[-6,0],[-26,1],[-56,0],[-28,0],[-59,-1],[-72,0],[-37,0],[-24,0],[-33,1],[-36,0],[-53,0],[-37,0],[-45,-1],[-110,-1],[-42,0],[-335,4],[-59,0],[-30,-4],[-26,2],[-89,3],[-82,1],[-3,0],[-27,0],[-23,1],[-44,1],[-26,0],[-30,1],[-44,1],[-48,1],[-28,-1],[-39,-3],[-16,-1],[-24,0],[-57,0],[-77,1],[-35,0],[-114,0],[-37,1],[-31,0],[-26,0],[-77,1],[-30,1],[-108,0],[-15,0],[-22,0],[-35,0],[-52,0],[-32,0],[-29,0],[-62,5],[-56,-3],[-107,0],[-3,0],[-29,3],[-41,0],[-4,0],[-60,0],[-101,1],[-1,0],[-41,1],[-34,0],[-59,0],[-12,-1],[-12,-1],[-75,1],[-7,0],[-152,2],[-28,-1],[-47,0],[-100,0],[-151,0],[-25,0],[-53,0],[-29,0],[-46,0],[-102,2],[-29,1],[-2,0],[-36,0],[-169,-1],[-76,0],[-41,0],[-26,1],[-35,0],[-24,0],[-47,0],[-72,0],[-53,0],[-51,0],[-48,1],[-81,0],[-1,0],[-72,0],[-36,0],[-64,0],[-27,0],[-29,-1],[-32,2],[-68,0],[-153,0],[-37,-1],[-8,0],[-43,-1],[-36,0],[-63,2],[-47,0],[-46,0],[-17,0],[-6,1],[-24,0],[-72,3],[-25,-2],[-27,0],[-34,0],[-23,0],[-44,0],[-50,1],[-79,0],[-23,0],[-110,1],[-432,-1],[-201,2],[-2,0],[-124,0],[-1,0],[-180,-1],[-16,2],[-14,1],[-179,1],[-118,0],[-92,0],[-69,0],[-31,0],[-110,0],[-78,0],[-38,-1],[-68,0],[-107,-1],[-31,0],[-53,0],[-39,0],[-46,0],[-42,-1],[-46,0],[-51,0],[-24,0],[-15,0],[-23,0],[-39,0],[-24,0],[-25,0],[-54,-1],[-26,0],[-28,0],[-27,0],[-145,-1],[-45,0],[-26,0],[-133,-1],[-52,0],[-148,0],[-56,-1],[-2,0],[-66,0],[-31,0],[-27,0],[-44,0],[-39,0],[-24,0],[-20,0],[-5,0],[-27,-1],[-29,1],[-24,0],[-29,0],[-65,-1],[-34,1],[-58,-1],[-57,0],[-53,0],[-101,0],[-37,0],[-28,0],[-53,1],[-28,0],[-33,0],[-27,0],[-30,0],[-41,0]],[[88715,69645],[0,16],[0,74],[-1,73],[-5,313],[-10,709],[-1,92],[-3,159],[-1,101],[-18,1191],[0,45],[-2,108],[-12,805],[-5,324],[-3,212],[-4,255],[-7,486],[-3,217],[-3,228],[0,42]],[[45950,73620],[1,-32],[3,-51],[0,-27],[1,-29],[1,-29],[1,-26],[1,-27],[1,-27],[1,-27],[2,-37],[1,-36],[0,-4],[1,-29],[2,-35],[0,-1],[1,-31],[1,-34],[0,-10],[0,-8],[1,-9],[1,-29],[1,-37],[0,-21],[1,-17],[1,-23],[0,-7],[2,-47],[1,-27],[1,-29],[2,-30],[1,-31],[1,-34],[1,-41],[0,-3]],[[45982,72735],[-1,0],[-33,0],[-44,1],[-86,1],[-19,0],[-38,0],[-53,1],[-26,0],[-42,0],[-62,0],[-43,1],[-44,0],[-53,1],[-28,0],[-24,0],[-24,0],[-23,0],[-30,1],[-24,0],[-47,0],[-1,0],[-35,0],[-39,0],[-46,0],[-31,0],[-36,0],[-57,1],[-78,0],[-30,1],[-25,0],[-62,0],[-71,1],[-54,0],[-37,0],[-61,0],[-101,1],[-32,0],[-54,1],[-28,-1],[-26,1],[-38,0],[-83,0],[-25,1],[-46,0],[-50,0],[-8,0],[-25,0],[-104,1],[-39,0],[-78,0],[-34,1],[-64,0],[-58,1],[-27,0],[-50,0],[-88,1],[-34,0],[-41,0],[-29,1],[-37,0],[-96,0],[-88,1],[-30,-1],[-100,0],[-108,0],[-122,0],[-67,1],[-17,0],[-19,0],[-38,-1],[-52,0],[-33,0],[-58,0],[-35,-1],[-49,0],[-42,0],[-29,0],[-37,-1],[-51,0],[-32,0],[-25,0],[-39,-1],[-54,0],[-57,0],[-33,0],[-36,0],[-52,1],[-13,0],[-30,1],[-90,2],[-115,4],[-49,1],[-55,1],[-62,2],[-32,1],[-32,1],[-32,1],[-59,1],[-36,0],[-58,1],[-40,1],[-34,0],[-33,1],[-31,0],[-25,1],[-24,0],[-50,1],[-17,0],[-19,0],[-35,1],[-45,0],[-69,1],[-42,0],[-42,1],[-25,0],[-42,0],[-65,1],[-33,0],[-40,0],[-33,0],[-25,0],[-31,1],[-38,-1],[-24,-1],[-37,0],[-44,0],[-26,0],[-50,0],[-3,0],[-48,-1],[-102,0],[-25,0],[-31,0],[-89,-1],[-29,0],[-67,-1],[-57,-1],[-46,0],[-45,-1],[-37,0],[-39,0],[-35,0],[-35,-2],[-51,0],[-24,0],[-38,0],[-30,0],[-25,0],[-71,-2],[-104,-1],[-51,-1],[-51,-2],[-131,-4],[-43,-1],[-143,-4],[-147,-5],[-9,0],[-20,-1],[-93,-2],[-110,-3],[-96,-2],[-7,0],[-118,-4],[-112,-3],[-31,-1],[-77,-2],[-40,-2],[-38,-1],[-7,0],[-32,-1],[-92,-6],[-55,-4],[-32,-2],[-43,-2],[-111,-8],[-113,-8],[-219,-12],[-61,-2],[-8,0],[-135,-2],[-9,-1],[-47,-1],[-71,-1],[-69,-1],[-43,0],[-6,0],[-21,0],[-47,0],[-35,0],[-15,0],[-11,0],[-44,0],[-35,0],[-62,1],[-59,1],[-119,3],[-74,1],[-63,2],[-87,1],[-75,2],[-29,0],[-43,1],[-48,1],[-24,0],[-24,0],[-86,2],[-118,1],[-1,0],[-32,1],[-62,2],[-80,2],[-57,2],[-98,4],[-110,5],[-26,1],[-29,1],[-29,1],[-32,2],[-42,1],[-60,3],[-27,1],[-139,4],[-2,0],[-69,3],[-27,1],[-36,0],[-42,1],[-38,1],[-39,0],[-45,1],[-50,1],[-31,0],[-151,0],[-43,0],[-33,0],[-112,-2],[-27,0],[-27,0],[-52,-1],[-48,0],[-27,-1],[-85,-1],[-26,0],[-3,0],[-88,-1],[-23,-1],[-88,-2],[-102,-2],[-53,-2],[-67,-1],[-43,-1],[-34,0],[-37,-1],[-62,-1],[-53,-1],[-32,-1],[-52,-1],[-87,-2],[-30,-1],[-25,0],[-84,-1],[-46,-1],[-75,-1],[-46,0],[-51,-1],[-51,0],[-89,-1]],[[21808,70502],[-48,0],[-49,0],[-54,-1],[-25,0],[-53,0],[-33,-1],[-42,0],[-30,0],[-26,-1],[-27,0],[-25,0],[-26,0],[-30,-1],[-26,0],[-34,0],[-49,0],[-53,-1],[-36,0],[-26,0],[-45,-1],[-39,-1],[-32,0],[-29,0],[-23,0],[-32,0],[-24,0],[-30,0],[-32,-1],[-49,0],[-42,0],[-28,0],[-46,-1],[-17,0],[-24,0],[-30,0],[-40,0],[-37,-1],[-50,0],[-5,0],[-32,-1],[-30,0],[-47,-1],[-46,0],[-28,0],[-27,-1],[-38,0],[-24,0],[-29,0],[-11,0],[-20,0],[-23,-1],[-85,-1],[-26,0],[-94,-1],[-40,0],[-41,-1],[-32,0],[-29,-1],[-38,0],[-46,0],[-33,-1],[-58,0],[-29,0],[-48,0],[-27,0],[-45,0],[-45,0],[-35,1],[-230,-2],[-26,2],[-27,0],[-25,-1],[-4,0],[-27,0],[-25,0],[-25,1],[-29,0],[-42,0],[-29,0],[-81,-1],[-37,0],[-46,0],[-30,-1],[-8,0],[-16,0],[-28,0],[-46,0],[-53,-1],[-52,0],[-37,-1],[-32,0],[-29,0],[-4,0],[-21,0],[-38,0],[-30,-1],[-26,0],[-26,0],[-4,0],[-42,0],[-37,-1],[-31,0],[-34,0],[-32,0],[-29,0],[-10,0],[-15,0],[-34,-1],[-33,0],[-23,0],[-24,0],[-23,-1],[-35,0],[-30,0],[-24,0],[-31,-1],[-31,0],[-31,0],[-30,0],[-30,-1],[-30,0],[-30,0],[-30,0],[-24,-1],[-31,0],[-31,0],[-32,0],[-32,-1],[-31,0],[-32,0],[-31,0],[-31,-1],[-31,0],[-30,0],[-30,0],[-31,0],[-24,0],[-31,-1],[-41,0],[-39,0],[-38,0],[-28,0],[-41,-1],[-33,0],[-41,0],[-40,0],[-41,-1],[-29,0],[-33,0],[-40,0],[-37,0],[-37,0],[-38,1],[-36,0],[-28,0],[-29,1],[-55,-1],[-26,0],[-33,0],[-30,-1],[-35,0],[-24,0],[-29,0],[-27,0],[-47,-1],[-36,0],[-27,0],[-29,0],[-37,-1],[-2,0],[-222,-2],[-221,-2],[-64,-1],[-77,1],[-30,-1],[-39,0],[-26,0],[-34,0],[-31,0],[-27,0],[-27,0],[-31,0],[-37,-1],[-32,0],[-146,0],[-72,-1],[-93,-1],[-138,0],[-54,0],[-55,-1],[-25,0],[-32,0],[-25,0],[-47,-1],[-23,0],[-45,0],[-44,0],[-27,-1],[-26,0],[-27,0],[-26,0],[-26,0],[-26,0],[-26,0],[-25,0],[-25,0],[-47,-1],[-46,0],[-25,0],[-47,0],[-30,0],[-24,0],[-23,-1],[-25,0],[-40,0]],[[13748,70453],[1,73],[0,27],[0,35],[0,46],[1,41],[0,44],[0,43],[1,38],[0,34],[0,48],[0,52],[1,29],[0,44],[0,32],[1,53],[0,42],[0,32],[1,26],[0,32],[0,29],[1,63],[0,63],[1,45],[0,26],[1,79],[0,37],[1,101],[0,40],[0,29],[1,31],[0,36],[0,31],[1,32],[0,32],[1,31],[0,29],[0,34],[0,26],[0,26],[0,26],[0,31],[0,35],[0,29],[1,29],[-1,28],[1,28],[0,28],[0,26],[0,29],[1,25],[0,26],[0,33],[1,34],[0,25],[1,51],[0,32],[0,31],[1,35],[0,29],[0,25],[0,1],[0,35],[0,35],[0,36],[0,26],[0,33],[1,31],[0,33],[-1,32],[0,27],[1,29],[0,31],[0,16],[0,10],[0,73],[0,64],[0,52],[0,115],[1,64],[0,34],[0,32],[0,32],[0,31],[0,38],[0,33],[0,32],[0,33],[0,33],[0,44],[-4,57],[2,58],[2,26],[0,30],[0,32],[0,29],[0,168],[1,41],[-1,75],[-1,52],[1,104],[1,99],[-1,28],[1,29],[-1,26],[0,31],[0,26],[0,38],[0,38],[0,39],[0,61],[1,35],[-2,114],[0,58],[0,32],[-1,31],[0,33],[0,20],[0,6],[0,28],[-1,60],[0,43],[0,3],[-3,28],[2,30],[0,39],[-1,52],[0,31],[-1,51],[0,31],[-1,45],[0,27],[0,48],[-1,24],[0,13],[0,43],[-1,100],[0,53],[-1,73],[-2,203],[-2,121],[0,28],[-1,86],[-1,45],[0,73],[-1,60],[-2,61],[0,60],[-2,175],[-1,31],[-1,56],[-1,86],[-1,47],[-310,0],[-54,0],[-71,0],[-64,0],[-39,0],[-54,-1],[-39,0],[-42,0],[-45,0],[-36,0],[-26,0],[-26,0],[-26,-1],[-24,0],[-41,0],[-29,0],[-24,0],[-26,0],[-28,0],[-105,-1],[-74,0],[-99,0],[-32,0],[-25,-1],[-135,0],[-109,0],[-43,-1],[-51,0],[-25,0],[-42,0],[-30,0],[-28,0],[-28,0],[-144,0],[-102,0],[-55,0],[-30,0],[-79,0],[-218,-1],[-73,0],[-44,0],[-54,0]],[[13748,70453],[-45,0],[-41,0],[-28,0],[-25,0],[-25,0],[-38,0],[-26,-1],[-25,0],[-30,0],[-29,0],[-30,0],[-34,0],[-27,-1],[-42,0],[-65,0],[-383,-2],[-33,0],[-52,0],[-7,0],[-28,0],[-104,-1],[-56,-1],[-31,0],[-36,0],[-36,0],[-36,-1],[-29,0],[-34,0],[-40,0],[-29,0],[-29,-1],[-30,0],[-29,0],[-32,0],[-37,-1],[-43,0],[-43,0],[-38,0],[-57,-1],[-16,0],[-32,0],[-40,0],[-36,0],[-24,0],[-10,0],[-73,0],[-42,-1],[-31,0],[-71,0],[-52,0],[-28,0],[-42,0],[-26,0],[-37,0],[-32,0],[-33,0],[-27,0],[-48,1],[-38,0],[-23,0],[-25,0],[-25,1],[-39,0]],[[11116,70444],[0,43],[0,143],[0,32],[0,46],[0,53],[0,27],[0,27],[0,82],[0,46],[0,28],[0,41],[0,40],[0,31],[0,55],[0,48],[0,31],[-1,42],[1,89],[-1,26],[0,36],[0,31],[0,39],[0,40],[1,28],[-22,10],[-46,0],[-37,1],[-57,0],[-34,0],[-44,0],[-26,0],[-25,0],[-25,0],[-24,0],[-111,1],[-21,0],[-25,0],[-73,0],[-63,0],[-100,0],[-45,0],[-80,-1],[-40,0],[-26,0],[-67,1],[-38,1],[-45,0],[-37,1],[-30,0],[-38,0],[-31,-1],[-62,0],[-73,-1],[-33,1],[-25,0],[-26,0],[-23,0],[-102,0],[-35,1],[-30,-1],[-45,0],[-24,0],[-42,0],[-58,-1],[-25,0],[-49,0],[-81,-1],[-29,0],[-48,0],[-30,0],[-16,-1],[-12,0],[-32,0],[-25,0],[-10,0],[-21,0],[-10,-1],[-37,1],[-25,0],[-65,1],[-39,0],[-1,0],[-33,0],[-11,0],[-48,0],[-5,0],[-81,0],[-55,1],[-63,3],[-11,4],[-31,11],[-1,26],[0,5],[0,48],[1,33],[0,26],[2,26],[0,30],[0,30],[0,47],[0,28],[0,26],[-1,26],[0,28],[0,29],[0,31],[0,28],[0,65],[-1,47],[0,46],[0,58],[-1,58],[0,49],[0,27],[-1,47],[-1,86],[0,56],[0,26],[-1,47],[-22,31],[-28,-1],[-30,0],[-31,0],[-37,0],[-37,0],[-34,-1],[-1,0],[-27,0],[-36,0],[-43,-1],[-48,0],[-40,0],[-36,0],[-182,-3],[-28,0],[-27,-1],[-46,0],[-38,-1],[-27,0],[-46,0],[-40,0],[-34,-1],[-74,-1],[-129,-1],[-61,-1],[-34,-1],[-36,0],[-34,-1],[-36,0],[-36,-1],[-61,-1],[-84,-1],[-43,0],[-29,-1],[-23,0],[-29,0],[-47,0],[-119,-1],[-82,0],[-56,0],[-26,0],[-60,0],[-42,0],[-183,-1],[-83,-1],[-35,-1],[-2,0],[-39,-2],[-124,3],[-30,1],[-81,2],[-13,0],[-30,0],[-35,0],[-110,0],[-54,1],[-6,0],[-50,0],[-25,0],[-80,0],[-56,0],[-51,0],[-25,0],[-43,0],[-27,0],[-80,0],[-32,0],[-32,0],[-75,0],[-43,0],[-41,-1],[-32,0],[-25,0],[-33,0],[-30,0],[-31,0],[-25,0],[-32,0],[-38,-1],[-105,0],[-29,0],[-32,0],[-39,0],[-25,-1],[-25,0],[-38,0],[-73,0],[-85,0],[-72,-1],[-27,0],[-31,0],[-45,-1],[-52,0],[-25,0],[-34,0],[-34,0],[-31,0],[-30,0],[-90,-1],[-34,0],[-28,0],[-31,0],[-65,-1],[-53,0],[-32,0],[-60,0],[-55,-1],[-71,0],[-72,0],[-48,-1],[-33,0],[-39,0],[-56,-1],[-108,0],[-32,0],[-84,0],[-63,0],[-85,0],[-25,0],[-64,0],[-99,0],[-166,0],[-61,0],[-114,0],[-28,0],[-113,0],[-100,1],[-103,-1],[-29,0],[-72,1],[-67,0],[-193,0],[-204,0],[-50,0],[-29,0],[-43,0],[-29,0],[-58,0],[-54,1],[-39,0],[-28,0],[-32,-1],[-25,0],[-40,0],[-150,1],[-37,0],[-38,0],[-23,0],[-26,0],[-73,0],[-69,1]],[[389,72664],[0,32],[0,7],[0,9],[0,26],[0,13],[0,13],[0,10],[0,13],[0,15],[0,15],[0,5],[0,14],[0,11],[0,7],[0,13],[0,4],[0,18],[-1,35],[0,16],[0,9],[1,24],[-1,16],[0,9],[0,7],[0,49],[0,26],[0,18],[0,10],[0,27],[0,3],[0,3],[0,28],[0,8],[0,29],[0,39],[-1,29],[0,16],[0,53],[-1,6],[0,10],[0,7],[0,27],[0,35],[0,7],[0,14],[0,13],[-1,28],[0,7],[0,11],[0,7],[0,12],[0,8],[0,14],[0,43],[0,5],[0,22],[0,15],[-1,34],[0,21],[0,14],[0,19],[0,13],[-1,43],[0,16],[1,13],[-1,55],[0,10],[-1,9],[1,8],[0,9],[0,3],[0,3],[-1,8],[0,8],[0,14],[0,36],[0,11],[0,3],[0,19],[0,14],[0,7],[0,8],[-1,22],[0,30],[0,17],[0,2],[0,26],[0,36],[0,33],[0,16],[0,9],[0,14],[-1,26],[0,28],[0,89],[0,31],[0,44],[-1,49],[0,2],[0,3],[0,1],[3,39],[1,28],[-3,134],[-2,111],[0,37],[0,2],[0,13],[1,64],[0,13],[0,39],[0,53],[-1,131],[0,70],[0,27],[0,29],[0,26],[0,12],[0,11],[1,30],[-1,62],[0,8],[0,28],[0,19],[0,33],[1,42],[0,36],[0,24],[2,40],[0,6],[-1,27],[1,12],[0,27],[0,6],[0,26],[0,9],[-1,22],[0,49],[0,10],[-1,102],[0,57],[-1,53],[0,3],[0,31],[-2,449],[0,79],[3,3],[1,3],[0,8],[-1,18],[0,17],[0,16],[0,3],[0,5],[0,2],[1,2],[0,133],[-1,132],[0,22],[-1,37],[-1,48]],[[79616,75105],[0,-37],[-1,-26],[0,-51],[0,-33],[0,-31],[-1,-36],[-2,-32],[-2,-51],[0,-34],[1,-28],[6,-59],[0,-7],[2,-70],[-2,-100],[-1,-32],[-1,-170],[-1,-104],[0,-31],[0,-34],[0,-26],[0,-36],[0,-26],[0,-566],[0,-37],[0,-11],[-1,-48],[-1,-54],[0,-56],[0,-57],[0,-61],[-2,-46],[-3,-31],[1,-39],[1,-43],[0,-9],[1,-63],[0,-164],[-1,-55],[0,-4],[0,-48],[0,-59],[0,-15],[-1,-115],[-3,-133],[0,-43],[0,-30],[0,-26],[0,-34],[0,-56],[0,-31],[0,-34],[0,-34],[0,-35],[0,-30],[0,-29],[0,-31],[0,-35],[0,-42],[0,-3],[0,-51],[0,-31],[0,-36],[2,-101],[0,-13],[1,-199],[-5,-127],[0,-42],[1,-82],[1,-113],[-1,-27],[0,-32],[0,-26],[-1,-73],[0,-27],[0,-33],[-1,-39],[0,-31],[1,-37],[-1,-44],[0,-26],[0,-26],[0,-33],[-1,-75],[0,-28],[-1,-30],[-1,-265],[-1,-28],[0,-33],[0,-9],[0,-30],[0,-35],[0,-38],[0,-54],[0,-31],[1,-46],[1,-42],[-2,-60],[0,-3],[2,-72],[1,-10],[4,-22],[-9,-376],[4,-78],[-1,-89],[-1,-68],[0,-28],[-1,-41],[0,-45],[-1,-163],[-1,-31],[-2,-149],[0,-29],[0,-31],[0,-31],[-1,-28],[0,-26],[-1,-27],[0,-27],[0,-7],[-1,-20],[-1,-45],[0,-31],[0,-11],[-1,-218],[-2,-52],[0,-34],[0,-43],[0,-32],[4,-35],[0,-42],[-1,-4],[-7,-63],[2,-64],[-1,-39],[0,-27],[0,-16],[0,-13],[0,-27],[-1,-27],[0,-16],[0,-15],[0,-28],[0,-32],[0,-7],[-1,-42],[0,-27],[0,-38],[-1,-37],[0,-29],[0,-32],[0,-40],[0,-41],[-1,-28],[0,-49],[0,-50],[0,-48],[0,-45],[-1,-38],[0,-54],[0,-41],[0,-26],[1,-53],[-1,-44],[0,-27],[0,-36],[0,-29],[0,-28],[0,-26],[0,-27],[0,-38],[0,-29],[0,-39],[0,-28],[-1,-37],[0,-46],[0,-44],[0,-43],[-2,-40],[2,-150],[-1,-59],[-1,-51]],[[79575,65930],[-52,0],[-63,0],[-55,1],[-6,0],[-54,-2],[-53,-1],[-85,0],[-41,0],[-87,0],[-36,0],[0,-74],[-4,-110],[-2,-37],[-3,-72],[-2,-24],[-2,-43],[-3,-75],[-5,-123],[-1,-46],[-3,-52],[-1,-30],[-10,-250],[1,-29],[-3,-80],[-2,-30],[-6,-139],[-14,-216],[0,-49],[-3,-50],[-3,-62],[-11,-217],[-2,-69],[-7,-140],[-2,-69],[-60,-2],[-23,1],[-33,3],[-13,0],[-58,1],[-8,0],[-42,5],[-115,0],[-25,0],[-30,1],[-119,6],[-213,8],[-160,5],[-118,3],[-1,0],[-44,0],[-28,2],[-25,1],[-40,1],[-38,1],[-40,1],[-27,2],[-80,2],[-105,2],[-32,3],[-32,0],[-114,2],[-95,7],[-29,1],[-25,1],[-2,0],[-29,1],[-43,1],[-44,2],[-26,1],[-32,1],[-58,2],[-31,2],[-14,0],[-24,1],[-31,1],[-26,1],[-30,2],[-61,2],[-25,1],[-35,1],[-39,2],[-27,1],[-45,2],[-35,1],[-29,1],[-35,2],[-32,1],[-31,1],[-30,2],[-115,4],[-75,2],[-67,4],[-380,18],[-7,0],[-140,5],[-1,0],[-59,2],[-28,1],[-130,6],[-220,9],[-121,5],[-103,3],[-23,-3],[-65,5],[-19,1],[-116,4],[-72,3],[-57,2],[-55,3],[-64,3],[-32,1],[-50,1],[-44,1],[-61,2],[-62,2],[-220,10],[-79,3],[-41,2],[-14,1],[-63,2],[-68,2],[-48,4]],[[73670,64039],[-3,86],[-1,28],[-1,102],[1,25],[1,31],[0,11],[7,89],[-3,68],[0,46],[0,57],[0,50],[-1,39],[0,30],[0,30],[0,27],[0,37],[0,57],[0,31],[1,31],[0,30],[0,30],[0,65],[0,61],[0,27],[1,52],[0,26],[0,35],[0,38],[0,41],[0,36],[-1,58],[0,53],[0,34],[0,56],[0,50],[0,40],[0,27],[0,33],[1,33],[-1,51],[0,62],[0,27],[1,25],[-1,27],[-67,0],[-83,0],[-71,0],[-40,0],[-29,0],[-48,0],[-30,0],[-3,0],[-28,0],[-44,0],[-32,0],[-36,0],[-28,0],[-32,0],[-26,0],[-47,0],[-26,0],[-36,0],[-9,4],[-15,5],[-24,-3],[-38,-6],[-48,0],[-50,0],[-58,0]],[[72723,65931],[1,55],[1,30],[2,85],[1,40],[1,42],[0,41],[1,39],[1,43],[0,29],[1,34],[0,32],[1,28],[0,28],[1,33],[0,36],[2,60],[0,4],[0,26],[1,35],[0,28],[0,47],[1,41],[0,30],[0,33],[1,36],[0,27],[0,47],[0,27],[0,39],[1,36],[0,104],[0,34],[0,34],[1,35],[5,33],[1,4],[4,22],[-5,29],[-5,27],[1,27],[-1,26],[1,35],[0,43],[0,26],[0,45],[0,49],[1,28],[0,21],[0,29],[0,31],[0,36],[0,27],[0,59],[1,26],[0,28],[0,32],[0,26],[0,28],[1,28],[0,30],[0,29],[0,32],[0,33],[0,35],[1,34],[0,30],[0,29],[0,29],[0,27],[1,35],[0,29],[0,29],[0,8],[0,31],[0,26],[0,5],[1,61],[0,33],[0,18],[0,46],[0,29],[1,46],[0,40],[0,27],[0,28],[0,49],[1,28],[0,52],[0,30],[0,28],[1,42],[1,64],[0,56],[1,62],[1,83],[0,30],[1,49],[1,100],[0,40],[2,140],[0,7],[1,75],[1,58],[2,140],[1,49],[2,65],[0,26],[1,32],[1,61],[1,47],[1,81],[0,27],[1,32],[1,86],[1,40],[0,30],[2,124],[1,45],[1,48],[1,47],[1,61],[1,29],[0,27],[0,34],[1,50],[0,29],[7,284],[1,35],[0,6],[1,32],[3,169],[-3,35],[1,12],[4,233],[0,123],[2,310],[0,26],[1,49],[0,4],[1,158],[0,97],[2,291],[4,259],[2,152]],[[88715,69645],[0,-93],[0,-137],[0,-644],[0,-1198],[0,-228],[0,-28],[0,-43],[0,-13],[0,-76],[0,-77],[0,-238],[0,-101],[0,-269],[0,-38],[0,-140],[0,-5],[0,-390],[-49,-16],[-24,0],[-31,0],[-30,0],[-57,0],[-34,2],[-91,0],[-6,0],[-319,0],[-2,0],[-86,2],[-103,0],[-89,0],[-42,0],[-206,-4],[-104,2],[-108,1],[-33,0],[-65,1],[-53,0],[-28,0],[-43,0],[-33,0],[-60,0],[-51,1],[-34,0],[-42,0],[-33,0],[-37,-1],[-1,0],[-56,0],[-36,0],[-22,4],[-12,2]],[[86695,65921],[-83,-2],[-28,0],[-33,0],[-33,0],[-27,0],[-31,-1],[-23,0],[-29,0],[-26,0],[-35,0],[-34,1],[-34,0],[-35,0],[-38,0],[-31,0],[-26,1],[-24,0],[-29,-1],[-65,0],[-67,1],[-27,0],[-50,0],[-72,1],[-64,0],[-108,0],[-85,0],[-85,1],[-68,0],[-42,0],[-24,0],[-12,0],[-18,0],[-34,0],[-30,0],[-43,0],[-51,0],[-27,0],[-52,0],[-46,-1],[-29,1],[-35,0],[-34,0],[-55,1],[-29,0],[-30,0],[-83,0],[-31,-1],[-34,0],[-31,1],[-23,-1],[-30,0],[-26,0],[-93,0],[-23,0],[-112,0],[-58,0],[-102,0],[-142,0],[-32,-6],[-209,2],[-36,0],[-33,1],[-438,4],[-358,3],[-5,0],[-132,0],[-282,1],[-3,0],[-65,1],[-67,0],[-27,0],[-39,0],[-29,0],[-42,0],[-34,0],[-34,0],[-33,0],[-33,1],[-58,-1],[-40,1],[-39,0],[-26,0],[-59,0],[-26,0],[-39,0],[-25,0],[-33,1],[-87,1],[-34,-1],[-29,1],[-26,0],[-46,0],[-36,0],[-40,-1],[-27,1],[-40,0],[-26,0],[-26,1],[-25,0],[-57,1],[-23,0],[-27,0],[-46,-1],[-28,1],[-70,0],[-50,0],[-51,0],[-37,0],[-25,0],[-45,0],[-96,0],[-32,0],[-19,0],[-80,0],[-22,0],[-130,1],[-61,1],[-28,-1],[-34,0],[-41,0],[-23,0],[-41,0],[-28,0],[-40,-1],[-48,0],[-28,0],[-48,0],[-45,0],[-38,-1],[-34,0],[-44,0],[-41,0],[-45,-1],[-54,0],[-24,0],[-30,0],[-24,0],[-28,-1],[-27,0],[-41,0]],[[57676,67900],[-45,0],[-77,-1],[-78,1],[-35,0],[-103,0],[-34,-1],[-35,0],[-74,0],[-61,0],[-88,0],[-59,0],[-31,0],[-57,0],[-32,0],[-25,0],[-30,-1],[-32,0],[-38,0],[-24,0],[-26,0],[-24,0],[-31,0],[-27,0],[-31,0],[-30,0],[-104,0],[-37,-1],[-62,0],[-26,-1],[-24,0],[-17,0],[-13,1],[-24,-1],[-37,0],[-32,0],[-35,0],[-33,-1],[-30,0],[-42,0],[-33,0],[-26,0],[-39,-1],[-60,0],[-43,-1],[-26,0],[-24,0],[-38,0],[-35,-1],[-34,0],[-28,0],[-24,-1],[-35,0],[-33,0],[-35,0],[-50,-1],[-45,1],[-33,-1],[-28,0],[-18,-17],[1,-22],[2,-37],[2,-46],[6,-134],[2,-33],[2,-34],[2,-27],[1,-15],[2,-52],[2,-30],[0,-1],[1,-27],[2,-40],[1,-27],[2,-30],[2,-25],[1,-32],[1,-26],[2,-31],[2,-37],[2,-33],[2,-38],[1,-26],[2,-25],[1,-26],[2,-33],[0,-13],[3,-60],[1,-32],[2,-29],[2,-29],[1,-31],[2,-29],[2,-31],[2,-30],[1,-30],[2,-29],[2,-29],[1,-30],[1,-27],[2,-28],[1,-26],[2,-29],[1,-30],[1,-26],[1,-26],[2,-35],[1,-28],[1,-28],[1,-28],[2,-27],[2,-34],[1,-26],[2,-46],[3,-37],[3,-60]],[[55440,66043],[-29,0],[-43,0],[-32,0],[-33,0],[-33,0],[-33,0],[-33,0],[-32,0],[-27,0],[-43,0],[-34,-1],[-29,0],[-36,1],[-46,-1],[-44,0],[-42,0],[-33,0],[-33,0],[-23,0],[-27,0],[-31,0],[-34,0],[-40,0],[-29,0],[-36,0],[-29,0],[-26,0],[-62,0],[-31,0],[-27,0],[-32,0],[-27,0],[-28,0],[-43,1],[-50,1],[-28,0],[-18,0],[-7,0],[-30,0],[-54,0],[-38,0],[-39,0],[-58,1],[-45,1],[-25,-1],[-37,1],[-53,1],[-26,0],[-32,0],[-37,1],[-71,1],[-26,0],[-48,0],[-62,1],[-48,1],[-48,1],[-24,0],[-14,0],[-32,1],[-48,1],[-62,0],[-35,1],[-99,1],[-24,1],[-57,1],[-6,0],[-18,0],[-32,1],[-34,0],[-34,0],[-32,1],[-33,1],[-32,0],[-32,1],[-33,0],[-28,0],[-25,1],[-67,1],[-48,0],[-27,2],[-47,0],[-104,2],[-67,1],[-33,1],[-31,0],[-33,1],[-1,0],[-35,1],[-39,0],[-44,1],[-99,1],[-33,1],[-40,0],[-39,1],[-58,0],[-54,1],[-40,1],[-73,1],[-80,1],[-120,1],[-36,1],[-30,0],[-75,0],[-36,1],[-54,1],[-60,-1],[-28,0],[-38,0],[-88,1],[-29,0],[-32,1],[-28,0],[-25,1],[-25,0],[-23,0],[-31,0],[-37,1],[-26,1],[-26,0],[-47,1],[-47,0],[-26,0],[-24,1],[-63,1],[-61,1],[-39,1],[-24,0],[-4,0],[-31,0],[-49,1],[-30,1],[-5,0],[-26,1],[-27,0],[-35,1],[-26,1],[-24,1],[-25,1],[-32,0],[-29,1],[-13,0],[-9,0],[-15,1],[-32,0],[-20,1],[-4,0],[-31,-1],[-30,1],[-38,0],[-42,0],[-27,0],[-30,1],[-39,0],[-31,0],[-26,0],[-35,1],[-26,0],[-43,0],[-27,1],[-25,0],[-46,1],[-27,0],[-29,0],[-29,0],[-27,0],[-31,0],[-30,0],[-30,-1],[-37,1],[-27,0],[-32,1],[-28,0],[-92,1],[-34,0],[-29,1],[-29,0],[-36,0],[-43,0],[-70,1],[-37,0],[-35,0],[-73,0]],[[48659,66111],[-63,1],[-42,0],[-44,0],[-28,0],[-26,0],[-12,0],[-73,1],[-26,0],[-96,0],[-42,0],[-38,0],[-92,1],[-71,0],[-34,0],[-41,1],[-34,1],[-114,0],[-87,1],[-34,0],[-24,0],[-32,0],[-35,0],[-29,1],[-28,0],[-39,0],[-35,1],[-43,0],[-33,-1],[-34,0],[-50,1],[-42,1],[-2,0],[-28,0],[-29,1],[-33,0],[-33,1],[-31,0],[-23,0],[-26,1],[-29,0],[-46,1],[-37,0],[-39,1],[-25,0],[-56,1],[-31,0],[-40,1],[-40,0],[-41,1],[-41,1],[-23,0],[-38,1],[-38,0],[-51,2],[-27,0],[-33,1],[-31,0],[-41,1],[-62,1],[-36,1]],[[46228,66136],[-1,27],[-2,37],[-1,38],[-2,41],[-1,35],[-1,42],[-2,41],[-1,33],[-1,26],[-1,32],[-1,40],[0,26],[-2,34],[-1,35],[-1,31],[-1,28],[0,8],[-1,45],[-1,31],[-1,28],[-1,26],[-1,35],[-1,16],[-1,29],[-1,39],[-1,41],[-1,43],[-1,45],[-1,13],[0,17],[-1,34],[-2,36],[-1,36],[-1,36],[-1,35],[-1,27],[-2,31],[-1,45],[0,5],[-4,101],[-9,203],[-7,230],[-1,99],[-4,54],[-3,101],[-3,51],[0,5],[-3,70],[-2,30],[-1,35],[-1,34],[-1,30],[-2,28],[-1,28],[-1,33],[-1,31],[-2,37],[-1,33],[-2,37],[-1,30],[-1,27],[-1,34],[-1,42],[-1,31],[-2,42],[-1,29],[-1,29],[-2,35],[0,4],[0,24],[-2,39],[-6,140],[-2,41],[-8,194],[-1,18],[-6,167],[-7,182],[-2,46],[-2,58],[-1,31],[-2,41],[-6,132],[-4,73],[-9,272],[-1,20],[-1,21],[-1,41],[-3,77],[-1,86],[0,3],[-2,29],[-4,123],[-1,11],[-1,22],[-1,31],[-1,40],[-2,54],[-2,43],[-2,53],[-2,47],[-2,56],[-2,75],[-4,81],[-1,25],[-1,35],[-2,48],[-1,27],[-2,37],[-2,42],[-1,44],[-2,36],[-3,71],[-2,65],[0,2],[-2,50],[-2,28],[-1,29],[-1,31],[-1,26],[-1,29],[-2,32],[-5,132],[-1,23],[-3,81],[-3,90],[-2,45],[-2,62],[-1,31],[-1,30],[-1,29],[-3,63],[-1,30],[-2,60],[0,2],[-1,36],[-1,37]],[[72723,65931],[-102,0],[-84,0],[-33,0],[-51,0],[-40,0],[-69,0],[-27,-1],[-58,1],[-30,-1],[-34,0],[-32,0],[-24,0],[-36,0],[-28,0],[-41,-1],[-35,0],[-30,0],[-28,-1],[-34,0],[-29,0],[-42,0],[-47,-1],[-27,0],[-9,0],[-80,-1],[-75,0],[-52,-1],[-51,0],[-27,0],[-139,0],[-31,-2],[-27,0],[-24,-1],[-26,0],[-34,0],[-38,-1],[-26,1],[-41,0],[-7,0],[-52,-1],[-67,1],[-7,0],[-39,-1],[-24,1],[-104,-1],[-47,0],[-33,1],[-63,0],[-27,0],[-27,-1],[-35,0],[-38,1],[-47,0],[-33,0],[-94,0],[-52,-1],[-28,1],[-39,2],[-155,-1],[-79,0],[-26,0],[-99,0],[-87,1],[-66,1],[-63,0],[-28,1],[-153,-3],[-93,2],[-462,9],[-40,0],[-35,0],[-2,0],[-67,3],[-46,0],[-4,0],[-43,0],[-62,0],[-88,0],[-125,3],[-120,3],[-120,2],[-101,6],[-57,1],[-5,0],[-203,0],[-16,0],[-184,1],[-423,-3],[-282,8],[-201,-3],[-221,7],[-40,2],[-408,3],[-56,-1],[-135,2],[-62,0],[-5,0],[-118,1],[-26,2],[-1,0],[-45,0],[-28,2],[-69,4],[-111,1],[-302,4],[-159,2],[-112,1],[-134,2],[-335,4],[-104,-3],[-73,0],[-36,1],[-37,1],[-107,2],[-25,1],[-65,1],[-24,0],[-86,1],[-101,2],[-39,1],[-31,0],[-11,0],[-17,0],[-88,2],[-43,1],[-49,1],[-73,1],[-40,0],[-53,2],[-53,1],[-99,2],[-86,1],[-41,0],[-4,0],[-19,0],[-32,0],[-29,1],[-26,0],[-42,1],[-28,0],[-26,0],[-51,1],[-80,1],[-24,0],[-51,1],[-37,0]],[[62487,66014],[-29,0],[-35,1],[-27,0],[-32,0],[-34,0],[-35,1],[-37,0],[-40,0],[-43,1],[-36,0],[-40,1],[-28,0],[-27,0],[-33,0],[-45,0],[-29,1],[-31,-1],[-25,1],[-29,0],[-24,0],[-39,0],[-38,0],[-38,0],[-29,0],[-23,1],[-35,0],[-30,0],[-24,0],[-70,1],[-38,0],[0,177],[0,26],[5,249],[5,106],[9,357],[0,5],[9,364],[0,8],[3,112],[3,69],[0,10],[5,166],[2,38],[3,135]],[[46228,66136],[-82,1],[-43,1],[-71,1],[-46,1],[-24,1],[-34,1],[-3,0],[-95,1],[-83,1],[-67,1],[-2,-85],[-56,0],[-61,1],[-43,-1],[-52,1],[-267,0],[-25,0],[-52,0],[-105,0],[-132,0],[-175,0],[-141,0],[-62,-1],[-138,0],[-53,1],[-129,-2],[-28,1],[-1,0],[-78,0],[-18,0],[-55,0],[-293,1],[-40,0],[-46,0],[-24,0],[-41,0],[-80,0],[-122,0],[-79,0],[-53,0],[-135,-1],[-28,0],[-149,1],[-25,0],[-110,0],[-214,1],[-53,0],[-64,-1],[-113,0],[-56,0],[-96,0],[-130,1],[-24,0],[-41,-1],[-99,0],[-2,0],[-30,0],[-74,0],[-43,1],[-54,-1],[-223,0],[-160,0],[-58,0],[-93,1],[-29,-1],[-136,0],[-70,0],[-47,0],[-34,-1],[-131,0],[-163,-1],[-219,0],[-180,-1],[-74,-1],[-1,0],[-179,-1],[-35,0],[-118,0],[-88,-1]],[[39651,66055],[-95,0],[-140,-2],[-48,0],[-112,0],[-52,-1],[-100,-1],[-1,1],[-62,5],[-450,-3],[-97,-1],[-73,0],[-28,0],[-81,2],[-1,0],[-82,-3],[-42,-1],[-18,0],[-17,-1],[-213,-1],[-28,0],[-47,0],[-198,-1],[-76,-2],[-82,-2],[-55,-1],[-48,0],[-96,-1],[-25,0],[-166,0],[-76,-1],[-53,0],[-44,0],[-54,0],[-102,0],[-53,-1],[-41,0],[-36,2],[-26,0],[-32,-2],[-44,0],[-38,0],[-40,-1],[-72,0],[-29,0],[-28,0],[-37,0],[-24,-1],[-23,4],[-13,1],[-40,1],[-32,0],[-78,0],[-71,-1],[-105,-1],[-741,-3],[-149,-2],[-70,0],[-228,-2],[-112,-5],[-35,-1],[-44,0],[-41,-1],[-34,0],[-55,0],[-110,-1],[-38,0],[-33,0],[-35,0],[-43,-1],[-81,0],[-162,0],[-29,0],[-40,0],[-88,0],[-32,0],[-118,-1],[-34,0],[-40,0],[-37,0],[-81,0],[-36,0],[-1,0],[-79,-1],[-48,0],[-50,0],[-29,-1],[-41,0],[-32,0],[-13,0],[-11,0],[-33,-1],[-58,-1],[-41,0],[-51,-1],[-59,-1],[-89,-1],[-129,-1],[-35,0],[-73,-1]],[[32509,66016],[-1,40],[-2,138],[0,30],[-3,167],[-1,57],[0,26],[-1,98],[1,46],[1,43],[2,35],[1,39],[0,57],[-2,165],[0,31],[-1,56],[0,39],[-1,39],[0,38],[0,46],[0,26],[-1,63],[0,30],[-1,36],[0,41],[0,85],[0,1],[-1,64],[0,89],[-1,44],[0,33],[-1,31],[-1,123],[0,373],[0,4],[-1,93],[1,84],[0,41],[-3,151],[-2,255],[-1,114],[-2,253],[-1,116],[3,56],[0,44],[0,34],[-1,55],[-1,141],[0,45],[-1,52],[0,3],[-1,105],[2,29],[0,27],[0,34],[0,24],[0,12],[0,31],[0,40],[0,19],[0,11],[0,27],[1,37],[0,33],[0,26],[0,45],[0,2],[0,32],[1,46],[1,41],[0,35],[1,34]],[[11116,70444],[0,-28],[-1,-99],[0,-32],[1,-40],[-1,-59],[0,-55],[0,-35],[0,-32],[-1,-118],[-1,-225],[-1,-42],[0,-30],[-1,-63],[-1,-58],[-1,-39],[0,-26],[0,-26],[1,-32],[-1,-31],[1,-30],[0,-25],[0,-38],[0,-30],[0,-37],[-1,-27],[0,-27],[0,-29],[0,-66],[0,-38],[-1,-63],[0,-28],[0,-28],[0,-27],[0,-32],[0,-27],[0,-53],[0,-35],[0,-33],[0,-30],[0,-20],[0,-8],[0,-60],[0,-2],[0,-28],[0,-31],[1,-38],[0,-30],[0,-2],[0,-48],[0,-30],[0,-35],[0,-27],[0,-41],[0,-26],[0,-37],[0,-44],[0,-29],[0,-66],[0,-38],[0,-106],[0,-27],[-1,-42],[0,-31],[0,-1],[0,-51],[-1,-47],[0,-40],[0,-27],[-1,-30],[-1,-157],[-1,-26],[1,-46],[0,-28],[0,-32],[-1,-28],[0,-30],[0,-50],[-1,-66],[0,-34],[0,-34],[0,-27],[0,-26],[0,-28],[0,-26],[0,-48],[0,-35],[0,-42],[-1,-29],[0,-14],[0,-13],[0,-34],[-1,-24],[0,-25],[0,-24],[0,-40],[0,-31],[0,-30],[0,-31],[0,-27],[1,-210],[2,-104],[1,-60],[3,-185],[-80,0],[-28,0],[-35,-1],[-4,0],[-36,0],[-44,0],[-44,0],[-45,-1],[-41,0],[-35,-1],[-35,0],[-23,0],[-1,0],[-170,-1],[-33,0],[-37,0],[-30,-1],[-31,0],[-31,0],[-33,0],[-38,-1],[-39,0],[-109,-1],[-22,0],[-6,0],[-56,0],[-44,-1],[-26,0],[-52,0],[-128,-1]],[[9772,65976],[-110,-1],[-336,-1],[-112,0],[-126,-1],[-211,0],[-114,-2],[-108,1],[-106,0],[-118,-1],[-159,0],[-10,0],[-124,-1],[-153,0],[-1,0],[-240,-1],[-205,-1],[-97,0],[-42,0],[-94,-1],[-32,0],[-184,0],[-317,-1],[-139,0],[-198,0],[-238,0],[-29,0],[-5,0],[-57,0],[-101,0],[-194,-2],[-62,0],[-2,0],[-28,0],[-37,0],[-64,0],[-46,0],[-62,0],[-29,0],[-23,0],[-28,-1],[-38,1],[-34,-1],[-70,-1],[-58,0],[-40,-1],[-142,-1],[-33,0],[-48,0],[-116,0],[-289,-4],[-26,0],[-126,-1],[-271,-1],[-158,0],[-30,0],[-215,0],[-187,1],[-33,0],[-70,0],[-101,1],[-14,0],[-151,0],[-126,1],[-97,0],[-112,0],[-223,1],[-446,-1],[-113,0],[-334,-1],[-96,0],[-195,0],[-10,0],[-34,0],[-112,0],[-221,-1],[-171,0],[-32,-1],[-10,0],[-25,1],[-30,0],[-352,-3],[-46,0]],[[396,65952],[0,46],[0,10],[0,67],[-1,50],[-3,11],[-5,22],[2,12],[0,5],[1,2],[1,9],[4,45],[0,50],[0,44],[0,55],[0,16],[0,32],[0,33],[0,3],[0,37],[0,17],[-1,3],[1,9],[0,20],[0,41],[0,65],[-1,24],[1,20],[0,20],[1,48],[1,58],[0,83],[0,10],[0,17],[0,29],[0,31],[0,74],[0,56],[0,4],[0,62],[0,11],[-1,74],[1,31],[-1,37],[0,60],[0,38],[0,48],[0,25],[0,25],[0,26],[0,21],[-1,31],[0,45],[0,47],[0,59],[0,43],[-1,32],[0,29],[0,66],[0,91],[0,6],[0,31],[0,29],[0,40],[0,28],[0,34],[0,3],[0,8],[-1,7],[0,42],[0,9],[1,36],[-1,46],[0,35],[0,39],[0,57],[0,42],[0,43],[0,37],[0,78],[-1,19],[0,39],[0,27],[0,60],[0,109],[0,17],[-1,116],[0,35],[0,47],[0,64],[-1,64],[0,1],[0,30],[0,34],[0,60],[0,8],[0,29],[0,26],[0,83],[0,62],[0,76],[0,17],[0,92],[0,2],[0,40],[0,26],[0,35],[0,27],[0,34],[0,49],[0,1],[0,29],[0,52],[0,123],[-1,43],[1,82],[0,1],[0,57],[1,15],[0,2],[1,9],[-1,85],[-1,44],[-1,39],[0,9],[0,26],[-1,12],[0,5],[2,8],[1,26],[0,4],[1,58],[-1,30],[1,31],[0,66],[0,36],[1,36],[-2,139],[0,43],[0,30],[-1,98],[0,25],[0,5],[0,101],[-1,60],[1,77],[0,56],[-1,45],[0,44],[0,105],[0,34],[1,30],[-1,15],[0,56],[1,48],[0,4],[0,27],[0,39],[0,58],[0,40],[0,70],[-1,39],[1,33],[0,70],[-1,26],[1,36],[-1,26],[0,73],[1,29],[0,9],[0,15],[-1,43],[0,71],[0,7]],[[32509,66016],[-49,-1],[-44,0],[-25,0],[-83,-1],[-40,-1],[-43,0],[-26,0],[-64,-1],[-134,-1],[-28,0],[-182,0],[-37,0],[-25,0],[-26,-1],[-29,0],[-35,0],[0,-20],[0,-382],[0,-76],[1,-172],[0,-155],[0,-2],[1,-132],[0,-54],[0,-107],[-222,-2],[-222,-2],[2,-185],[2,-186],[0,-29],[0,-156],[-1,-182],[0,-1],[0,-41],[0,-31],[-2,-296],[-37,0],[-74,-1],[-106,0],[-24,0],[-35,0],[-146,0],[-116,1],[-50,0],[-27,0],[-99,1],[-71,1],[-97,2],[-1,-41],[0,-38],[-1,-56],[-1,-27],[0,-53],[-1,-42],[0,-51],[0,-28],[-1,-33],[-1,-98],[-2,-162],[-1,-98],[-1,-38],[0,-32],[0,-33],[-1,-50],[0,-1],[-2,-137],[-1,-89],[-2,-185],[-1,-59],[-5,-494],[0,-6],[-2,-118],[-2,-250]],[[30290,61584],[-103,1],[-8,0],[-62,1],[-69,1],[-63,-1],[-36,0],[-27,0],[-84,0],[-32,0],[-26,0],[-25,1],[-35,1],[-31,0],[-52,0],[-41,0],[-35,1],[-28,1],[-20,0],[-23,1],[-87,1],[-59,1],[-71,2],[-46,1],[-66,1],[-36,1],[-70,1],[-44,2],[-92,1],[-32,1],[-38,1],[-65,1],[-67,0],[-24,1],[-54,0],[-60,1],[-37,0],[-49,1],[-57,0],[-103,1],[-37,0],[-78,1],[-30,1],[-24,0],[-111,1],[-57,0],[-89,1],[-106,1],[-29,1],[-91,1],[-123,0],[-31,1],[-83,0],[-69,1],[-39,0],[-97,0],[-1,0],[-38,0],[-55,1],[-2,0],[-80,0],[-34,0],[-110,0],[-54,0],[-27,0],[-29,1],[-111,0],[-442,-1],[-141,0],[-83,0],[-224,1],[-140,-2],[-24,0],[-73,-1],[-48,-1],[-128,-1],[-34,0],[-29,0],[-167,-1],[-20,0],[-25,0],[-98,-1],[-41,0],[-149,0],[-29,0],[-53,0],[-68,0],[-43,0],[-88,0],[-93,0],[-57,1],[-41,0],[-34,0],[-70,1],[-36,0],[-57,1],[-68,0],[-65,1],[-60,0],[-42,1],[-58,0],[-29,0],[-28,1],[-24,0],[-44,0],[-29,0],[-33,1],[-42,0],[-55,1],[-67,1],[-41,0],[-54,0],[-47,1],[-34,0],[-63,1],[-28,0],[-103,1],[-13,0],[-29,0],[-112,0],[-36,0],[-32,0],[-86,1],[-41,0],[-103,1],[-54,0],[-46,0],[-110,0],[-200,1],[-36,0],[-51,0],[-30,1],[-51,0],[-34,0],[-34,0],[-25,0],[-47,0],[-27,0],[-43,0],[-34,1],[-42,0]],[[21833,61630],[-1,46],[-1,79],[0,68],[0,7],[0,26],[0,54],[-1,35],[0,53],[0,46],[0,32],[0,50],[0,38],[0,36],[0,32],[0,92],[0,31],[0,38],[-1,114],[0,75],[0,102],[-1,57],[0,55],[0,48],[0,33],[0,46],[0,32],[0,42],[0,8],[0,19],[0,48],[0,35],[0,51],[-1,30],[1,29],[-1,61],[0,1],[0,29],[0,44],[0,42],[0,33],[0,39],[-1,38],[0,47],[0,14],[0,12],[0,60],[-1,27],[0,39],[0,36],[0,52],[0,32],[0,47],[0,47],[0,73],[0,133],[0,30],[0,40]],[[21825,64193],[-1,44],[0,77],[0,64],[0,86],[0,44],[0,39],[0,28],[-1,27],[0,56],[0,58],[0,113],[0,27],[1,43],[-1,36],[0,45],[0,63],[0,30],[0,47],[-1,36],[0,26],[0,30],[0,56],[0,38],[-1,50],[0,55],[0,25],[0,27],[-1,10],[0,143],[0,66],[0,86],[0,91],[0,35],[0,27],[0,52],[0,39],[0,36],[1,57],[-1,120],[1,51],[0,76],[0,70],[0,48],[0,27],[-1,29],[0,77],[0,94],[1,28],[0,34],[-2,30],[0,45],[0,23],[-1,40],[1,32],[0,12],[1,18],[-1,51],[0,29],[0,34],[0,43],[0,43],[0,27],[0,29],[0,30],[0,48],[0,53],[0,59],[0,27],[0,38],[0,28],[0,30],[0,44],[-1,37],[0,79],[0,48],[-1,54],[1,71],[0,38],[0,46],[0,24],[0,36],[0,76],[-1,42],[0,46],[0,71],[0,28],[0,28],[0,44],[-1,19],[0,9],[0,38],[0,49],[0,26],[0,33],[1,36],[0,40],[0,30],[0,40],[0,36],[0,43],[0,31],[0,28],[0,39],[-1,34],[0,42],[-1,29],[0,18],[0,28],[0,26],[0,32],[0,58],[0,58],[0,28],[-1,45],[0,56],[0,55],[0,40],[0,37],[0,49],[-2,26],[0,42],[-1,44],[0,80],[0,32],[-1,62],[0,37],[0,55],[0,55],[-1,106],[0,44],[-1,40],[1,33],[-1,47],[0,31],[1,35],[0,33],[0,33],[-1,30],[0,7],[0,37],[0,44],[0,44],[0,33]],[[21825,64193],[-35,0],[-30,0],[-31,0],[-27,0],[-34,0],[-24,-1],[-32,0],[-27,0],[-23,0],[-32,0],[-27,0],[-30,-1],[-24,0],[-26,0],[-31,0],[-35,0],[-47,0],[-42,-1],[-58,0],[-49,0],[-125,0],[-24,0],[-39,0],[-32,0],[-37,0],[-34,0],[-67,0],[-37,0],[-86,0],[-48,0],[-40,0],[-67,-1],[-31,0],[-45,0],[-63,-1],[-83,0],[-32,0],[-44,-1],[-29,0],[-150,0],[-75,-1],[-33,-1],[-71,-1],[-4,0],[-39,-1],[-41,0],[-72,-1],[-55,-1],[-55,0],[-2,0],[-194,-1],[-203,-2],[-45,0],[0,-56],[0,-31],[0,-36],[0,-25],[-2,-45],[3,-32],[0,-111],[0,-41],[-29,0],[-41,0],[-42,-1],[-107,0],[-111,-1],[-28,0],[-31,-1],[-41,0],[-75,0],[-79,-1],[-35,0],[-83,0],[-68,-1],[-379,-1],[-8,0],[-177,0],[-55,0],[-62,-1],[-74,0],[-30,0],[-186,3],[-4,0],[-132,-1],[-124,0],[-26,-1],[-71,0],[-3,0],[-34,-1],[-520,-1],[-10,-268],[1,-40],[0,-33],[0,-35],[1,-27],[0,-26],[0,-25],[0,-80],[0,-116],[0,-33],[-1,-55],[4,-49],[1,-142],[0,-30],[1,-29],[0,-31],[0,-33],[1,-38],[0,-26],[-130,-7],[-40,-2],[-50,-3],[-137,-4],[-124,-4],[-10,0],[-167,-2],[-1,0],[-663,-5],[-485,-7],[-111,1],[-27,-1],[-2,0],[-56,1],[-56,1],[-170,-5],[-446,-6],[-51,20],[-103,-1],[-40,-2],[-29,-1],[-48,-1],[-62,-1],[-84,-2],[-27,0],[-140,0],[-65,0],[-152,-1],[-82,-1],[-80,0],[-44,0],[-66,0],[-146,-1],[-40,0],[-57,0],[-124,0],[-27,0],[-43,1],[-8,0],[-124,-1],[-354,-5],[-76,-1],[-147,-2],[-23,0],[-13,0],[-28,-2],[-136,1],[-15,0],[-15,0],[-155,-4],[-32,-1],[-26,0],[-25,0]],[[11141,62629],[-1,76],[0,16],[-2,239],[0,3],[-1,26],[2,47],[-4,348],[-2,173],[-3,207],[-112,0],[-112,-1],[-170,-1],[-99,-1],[-176,1],[-31,-3],[-14,0],[-22,0],[-53,0],[-26,0],[-26,-1],[-66,0],[-44,0],[-34,0],[-44,0],[-24,0],[-33,-1],[-26,0],[-26,0],[-28,0],[-25,-1],[-24,0],[-25,0],[-24,0],[-25,0],[-24,-1],[-21,16],[0,26],[0,27],[0,31],[0,31],[-1,27],[0,32],[-1,28],[-1,30],[0,29],[-1,29],[-1,48],[0,31],[0,36],[0,27],[-1,30],[0,38],[-1,38],[0,47],[-1,46],[0,46],[-1,46],[0,1],[0,33],[0,33],[-1,33],[0,34],[-1,64],[0,73],[0,52],[-1,47],[0,38],[0,27],[-1,75],[-1,49],[0,27],[0,38],[-1,37],[0,38],[0,38],[-1,33],[0,30],[0,30],[0,27],[-1,29],[0,27],[0,47],[0,55],[0,31],[0,34],[0,7],[0,29],[-1,35],[-1,47],[-1,69],[0,36],[-1,35],[0,48],[-1,58],[-2,38]],[[99877,69621],[-5,-221],[0,-864],[0,-1458],[0,-64],[0,-77],[0,-106],[0,-288],[0,-1001],[0,-109],[0,-1221],[0,-170],[0,-82],[0,-252],[0,-46]],[[99872,63662],[-34,7],[-48,-1],[-214,-2],[-7,0],[-28,0],[-28,1],[-241,2],[-86,1],[-136,-1],[-43,-1],[-27,0],[-290,-1],[-117,0],[-1,0],[-189,1],[-8,0],[-17,0],[-231,-1],[-218,0],[-244,-1],[-93,0],[-223,-1],[-90,0],[-54,1],[-14,0],[-14,1],[-272,2],[-52,1],[-35,-2],[-4,0],[-31,0],[-35,0],[-48,0],[-53,1],[-49,0],[-48,0],[-24,0],[-106,0],[-52,1],[-50,0],[-51,0],[-62,0],[-49,0],[-63,1],[-41,1],[-25,0],[-24,-1],[-34,-9],[-29,6],[-7,1],[-28,4],[-24,1],[-25,0],[-34,0],[-48,1],[-5,0],[-35,0],[-25,0],[-31,1],[-28,0],[-32,1],[-39,0],[-64,0],[-43,1],[-68,0],[-39,1],[-63,0],[-130,1],[-10,0],[-9,0],[-11,1],[-32,0],[-57,0],[-45,1],[-49,0],[-39,0],[-41,0],[-113,1],[-150,1],[-176,2],[-59,0],[-42,1],[-32,0],[-7,0],[-18,1],[-29,0],[-25,0],[-29,0],[-35,0],[-26,1],[-27,0],[-27,0],[-3,0],[-23,0],[-27,0],[-25,1],[-30,0],[-29,0],[-38,0],[-38,1],[-32,0],[-41,0],[-57,1],[-26,0],[-28,0],[-29,-2],[-46,0],[-36,1],[-54,0],[-5,0],[-92,1],[-71,1],[-27,0],[-68,1],[-68,0],[-102,0],[-69,0],[-140,0],[-21,2],[-13,0],[-1,187],[1,32],[0,46],[0,30],[0,42],[1,55],[1,36],[0,54],[0,7],[4,247],[-68,-1],[-68,0],[-29,0],[-22,0],[-5,0],[-25,0],[-215,-1],[-4,0],[-26,1],[-77,0],[-58,0],[-36,0],[-37,0],[-33,0],[-63,3],[-26,1],[-13,1],[-44,1],[-46,0],[-34,0],[-51,0],[-47,1],[-45,0],[-85,1],[-36,0],[-44,0],[-24,0],[-134,-1],[-22,1],[-12,0],[-86,0],[-35,0],[-32,0],[-26,1],[-82,2],[-41,0],[-5,-88],[-4,-126],[0,-10],[-1,-117],[0,-4],[-2,-25],[-5,-81],[-4,-151],[0,-31],[-3,-104],[-45,-7],[-65,0],[-27,0],[-19,1],[-46,0],[-44,0],[-126,1],[-25,0],[-74,0],[-37,0],[-26,1],[-52,0],[-33,1],[-101,1],[-57,0],[-44,0],[-31,1],[-34,0],[-194,1],[-33,1],[-30,0],[-35,0],[-38,1],[-30,0],[-24,0],[-44,0],[-29,1],[-7,0],[-16,0],[-34,0],[-36,0],[-121,0],[-128,1],[-62,0],[-39,0],[-27,0],[-40,0],[-37,1],[-76,0],[-29,0],[-24,0],[-78,1],[-32,0],[-53,0],[-40,0],[-29,0],[-3,0],[-2,0],[-97,0],[-28,0],[-24,0],[-34,0],[-45,0],[-35,0],[-36,-1],[-24,0],[-26,0],[-65,1],[-39,-1],[-28,0],[-25,0],[-37,0],[-28,0],[-32,0],[-71,0],[-29,0],[-35,0],[-115,0],[-35,0],[-42,0],[-41,0],[-52,0],[-41,0],[-125,0],[-37,1],[-12,0],[-14,0],[-29,0],[-39,0],[-35,0],[-88,0],[-150,1],[-47,-1],[-44,1],[-40,0],[-33,0],[-28,0],[-29,0],[-83,0],[-24,1],[-11,0],[-23,0],[-57,0],[-55,0],[-32,0],[-44,0]],[[86698,63713],[0,4],[0,35],[0,100],[0,66],[0,46],[0,15],[0,20],[0,27],[0,31],[0,63],[0,43],[0,29],[0,26],[0,47],[0,27],[0,43],[-1,29],[0,80],[0,1],[2,36],[1,87],[0,63],[-8,53],[1,3],[7,24],[-3,108],[0,55],[-1,108],[-1,260],[-3,508],[1,6],[2,32],[0,31],[0,40],[0,2],[0,60]],[[62487,66014],[1,-249],[3,-103],[1,-66],[3,-106],[0,-4],[1,-73],[2,-71],[0,-32],[0,-2],[3,-136],[0,-8],[10,-283],[6,-165],[2,-96],[-14,-183],[4,-124],[0,-21],[1,-6],[1,-67],[0,-5],[2,-57],[3,-93],[0,-3],[1,-31],[0,-8],[0,-37],[2,-130],[0,-40],[12,-120],[36,-195],[9,-80],[10,-88],[0,-11],[1,-22],[-1,-29],[0,-35],[0,-35],[0,-35],[-2,-78],[0,-33],[-2,-50],[0,-30],[0,-26],[-2,-78],[-1,-27],[-1,-29],[0,-31],[0,-26],[-1,-32],[0,-26],[-1,-31],[0,-32],[0,-31],[-1,-60],[0,-83],[0,-30],[1,-20],[0,-6],[-5,-142],[-8,-214],[-1,-42],[-1,-36],[-2,-38],[-2,-38],[2,-32],[-8,-199],[-2,-51],[-6,-149],[-4,-85],[0,-18],[-6,-137],[1,-33],[0,-38],[1,-41],[1,-37],[1,-59],[0,-27],[1,-38],[0,-29],[1,-26],[1,-49],[0,-33],[1,-29],[1,-63],[0,-3],[1,-105],[1,-67],[3,-180],[1,-191],[0,-92],[0,-11],[1,-121],[0,-1],[0,-104],[2,-18],[1,-15],[1,-291],[0,-89],[1,-187],[0,-78],[1,-106],[0,-78],[0,-108],[1,-191],[1,-192],[0,-50],[1,-313],[0,-3],[1,-176],[0,-192]],[[62559,57761],[-146,-2],[-25,0],[-32,0],[-63,-1],[-65,-1],[-58,0],[-47,0],[-7,0],[-23,1],[-36,-1],[-4,0],[-157,-1],[-37,-3],[-24,1],[-97,1],[-65,-1],[-84,0],[-113,-1],[-241,-2],[-233,-9],[-357,4],[-78,0],[-201,-2],[0,-85],[-1,-37],[0,-197],[1,-106],[0,-134],[0,-130],[0,-5],[0,-49],[0,-22],[0,-34],[0,-26],[0,-3],[0,-24],[0,-138],[0,-37],[0,-57],[4,-225],[0,-28],[-1,-42],[-1,-27],[3,-210],[1,-85],[2,-171],[0,-5],[1,-117],[0,-124],[3,-377],[1,-39]],[[60379,55210],[-193,-25],[-164,-22],[-301,-39],[-34,-4],[-254,-31],[-160,-20],[-50,-6],[-31,-4],[-28,-3],[-3,-1],[-55,-6],[-184,-23],[-137,-16],[-343,-42],[-37,-5],[-186,-24],[-309,-36],[-67,-8],[-127,-16],[-51,-6]],[[57665,54873],[2,160],[-2,76],[-1,39],[0,32],[-1,27],[-1,42],[-1,33],[-1,50],[-7,237],[0,3],[-1,57],[-5,256],[0,5],[-1,88],[-1,46],[-2,99],[-1,42],[0,26],[-3,61],[1,26],[-7,298],[0,45],[-3,39],[0,157],[0,119],[0,28],[0,26],[0,13],[0,69],[0,88],[0,6],[0,27],[0,55],[-1,27],[-3,69],[0,8],[-1,46],[-1,33],[-1,44],[0,49],[0,47],[0,36],[0,29],[-1,26],[2,29],[0,113],[0,35],[-3,312],[-2,43],[0,25],[0,27],[0,43],[0,28],[1,37],[-1,29],[0,19],[0,13],[-1,58],[0,61],[0,151],[-3,54],[0,41],[0,43],[0,31],[0,31],[0,30],[-1,33],[-1,35],[0,34],[-2,50],[1,29],[0,31],[1,28],[0,29],[0,29],[0,39],[-30,0],[-320,3],[-53,-3],[-24,1],[-29,1],[-25,0],[-42,0],[-40,-1],[-57,0],[-37,0],[-28,0],[-32,1],[-119,8],[-7,1],[-17,0],[-50,22],[0,59],[0,30],[0,70],[0,95],[0,185],[0,1],[0,40],[0,71],[1,484],[-1,39],[-2,95],[-1,30],[-1,47],[0,9],[-1,100],[0,1],[-1,26],[-6,128],[-19,16],[-1,25],[-24,2],[-21,-11],[-25,7],[-2,27],[-15,27],[-15,30],[-23,10],[-19,15],[-11,31],[-20,15],[-21,14],[-20,12],[-16,23],[-8,25],[21,11],[26,20],[15,15],[5,5],[-9,27],[-4,7],[-2,4],[-12,19],[-1,25],[0,29],[-1,50],[0,8],[-1,47],[-4,0],[-103,2],[-138,2],[-35,-3],[-109,1],[-58,0],[-3,105],[-1,6],[-1,50],[-26,1],[-19,0],[-5,0],[-47,-1],[-27,0],[-14,0],[-13,0],[-72,14],[-19,29],[22,36],[-4,22],[-2,9],[0,26],[13,31],[-23,4],[-16,20],[-17,19],[-4,5],[-1,1],[-23,16],[13,5],[9,3],[6,26],[-19,27],[-6,31],[15,20],[0,1],[13,-25],[9,-21],[2,-5],[10,-6],[2,-2],[10,-5],[21,10],[13,21],[8,14],[5,10],[8,31],[-18,17],[0,6],[0,52],[0,52],[1,117],[0,29],[0,87],[1,79],[3,176],[1,29],[0,72],[1,61],[0,47],[1,31],[0,63],[0,40],[1,59],[0,44],[0,27],[0,47],[0,41],[1,57],[0,5],[-1,49],[0,196],[0,27],[0,35],[1,111],[0,144],[0,1],[-11,75],[-2,114],[-1,116],[-2,131],[-6,376],[-8,559],[-5,373],[-1,106],[-2,72],[-4,303],[-1,80],[-1,76],[-27,0],[-75,1],[-40,-1],[-39,1],[-51,0],[-37,0],[-33,0],[-44,0]],[[48659,66111],[3,-225],[0,-1],[0,-130],[1,-32],[2,-34],[0,-26],[1,-26],[1,-34],[1,-25],[0,-28],[0,-27],[0,-28],[1,-30],[0,-26],[0,-29],[0,-28],[0,-27],[1,-32],[0,-70],[1,-77],[0,-175],[0,-54],[1,-71],[0,-53],[1,-58],[0,-10],[-1,-27],[0,-108],[0,-9],[2,-162],[-1,-55],[-3,-508],[-4,-179],[-4,-151],[-1,-49],[1,-83],[-1,-177],[0,-71],[0,-15],[0,-125],[0,-110],[0,-1],[-3,-369],[-2,-330],[-2,-177],[0,-3],[-5,-276],[-7,-204],[0,-6],[-3,-88],[-1,-34],[-4,-62],[0,-69],[-1,-28],[-1,-33],[-1,-33],[-1,-43],[0,-28],[-1,-28],[-2,-34],[0,-2],[2,-26],[-1,-30],[0,-26],[0,-39],[-1,-30],[0,-27],[0,-27],[0,-26],[0,-34],[-1,-26],[0,-26],[0,-26],[0,-2],[-1,-27],[-1,-40],[0,-26],[0,-27],[0,-30],[-1,-35],[0,-33],[-1,-27],[0,-35],[0,-27],[-1,-30],[0,-26],[0,-26],[-3,-175],[-1,-53],[0,-78],[0,-55],[0,-32],[-1,-28],[-1,-59],[-1,-28],[0,-2],[-1,-29],[-4,-250],[-2,-141],[-2,-463],[-1,-94]],[[48604,58857],[-42,1],[-31,0],[-18,0],[-28,1],[-43,1],[-59,1],[-43,0],[-59,2],[-46,1],[-39,1],[-21,0],[-14,0],[-67,2],[-37,0],[-32,1],[-31,0],[-48,2],[-39,0],[-139,3],[-43,0],[-15,1],[-41,1],[-86,1],[-53,1],[-49,1],[-39,0],[-45,1],[-37,0],[-53,1],[-29,0],[-36,0],[-53,1],[-33,0],[-30,0],[-26,0],[-6,0],[-18,0],[-50,0],[-30,1],[-24,0],[-64,1],[-30,0],[-55,2],[-24,0],[-31,1],[-28,0],[-34,0],[-31,1],[-35,2],[-36,1],[-8,0],[-53,2],[-37,1],[-58,2],[-31,1],[-31,-1],[-60,-1],[-22,0],[-23,1],[-43,-1],[-43,-1],[-28,0],[-49,0],[-25,0],[-27,0],[-56,0],[-31,-1],[-47,0],[-43,0],[-64,0],[-65,-1],[-56,-1],[-53,0],[-34,0],[-56,-2],[0,-89],[-2,-100]],[[45559,58699],[-111,-1],[-54,-1],[-152,-1],[-1,0],[-67,-1],[-310,-2],[-151,0],[-350,-5],[-42,-1],[-97,-2],[-75,-1],[-39,1],[-86,-1],[-48,0],[-28,1],[-181,-1],[-96,-2],[-26,-5],[-33,0],[-13,-1],[-30,-1],[-98,-6],[-73,-5],[-46,-3],[-60,-4],[-43,-2],[-45,1],[-63,0],[-35,1],[-59,0],[-110,1],[-63,1],[-41,0],[-29,1],[-161,-1],[-74,0],[-65,-1],[-26,0],[-44,-2],[-63,-1],[-100,0],[-43,-1],[-60,0],[-1,0],[-97,0],[-134,-1],[-114,-1],[-52,0],[-53,0],[-168,-1],[-32,0],[-32,0],[-53,1],[-48,-1],[-111,0],[-119,0],[-110,-1],[-6,0],[-73,1],[-172,0],[-27,0],[-80,1],[-84,-5],[-34,-2],[-1,0],[-221,0],[-104,3],[-58,-6],[-27,0],[-6,0],[-24,2],[-446,1]],[[39681,58645],[1,159],[-3,210],[0,2],[-1,59],[-1,62],[0,48],[-3,190],[0,41],[0,32],[0,4],[0,60],[1,28],[0,48],[1,127],[-1,29],[0,92],[0,39],[-1,56],[0,84],[0,53],[-1,30],[0,48],[0,48],[0,39],[0,71],[0,74],[0,71],[-1,39],[0,62],[0,94],[-1,27],[0,47],[0,41],[0,46],[-1,26],[0,27],[-1,64],[-1,40],[1,75],[0,31],[3,35],[-7,36],[-1,82],[1,37],[0,66],[0,31],[0,12],[1,67],[0,61],[0,30],[0,24],[-1,5],[-1,32],[-1,27],[-1,43],[0,86],[0,53],[0,51],[1,32],[-1,38],[0,64],[0,17],[0,11],[0,56],[-1,70],[0,32],[0,36],[-1,38],[-1,100],[0,38],[0,57],[0,42],[0,35],[1,62],[0,40],[0,46],[1,32],[0,32],[-1,26],[0,27],[-1,76],[-1,71],[-1,53],[-1,58],[0,59],[-1,39],[0,79],[-1,104],[-1,53],[0,26],[0,56],[0,1],[0,35],[0,79],[0,87],[0,75],[0,61],[1,34],[3,31],[2,59],[1,70],[0,41],[2,76],[0,85],[-1,84],[-1,126],[0,66],[0,22],[-1,26],[0,38],[0,135],[-1,28],[0,134],[0,40],[0,27],[-1,36],[0,1],[0,83],[0,27],[0,68],[0,6],[-1,42],[-1,81],[0,45],[0,30],[-1,30],[0,40],[0,50],[-1,29],[-1,111],[0,48],[0,8],[0,40],[-1,104],[0,67],[0,81],[0,36],[0,50],[0,31]],[[57665,54873],[-177,-21],[-38,-5],[-125,-15],[-184,-23],[-318,-37],[-38,-4],[-77,0],[-370,0],[-244,0],[-139,1],[-108,-1],[-295,0],[-37,0],[-47,1],[-31,-1],[-259,-2],[-46,0],[-99,0],[-31,-1],[-238,-1],[-156,1],[-56,-1],[-83,-1],[-127,0],[-50,0],[-18,0],[-49,0],[-203,0],[-140,-1],[-123,-3],[-91,1],[-30,-1],[-37,-1],[-37,0],[-32,-1],[-33,0],[-27,0],[-28,-1],[-29,-1],[-31,0],[-32,0],[-25,0],[-32,-1],[-28,0],[-25,0],[-35,-1],[-32,0],[-25,-1],[-24,0],[-31,0],[-25,-1],[-32,0],[-25,0],[-34,-1],[-25,0],[-3,0],[-40,0],[-40,-1],[-36,0],[-26,0],[-25,0],[-29,0],[-28,-1],[-27,0],[-24,-1],[-26,0],[-32,0],[-25,0],[-24,0],[-28,0],[-33,-1],[-36,0],[-50,0],[-87,0],[-142,-1],[-112,0],[-187,-1],[-44,0],[-73,0],[-158,1],[-101,-1],[-300,-1],[-51,0],[-111,0],[-47,-1]],[[51009,54742],[-1,26],[-1,29],[0,52],[-1,30],[0,28],[0,33],[0,37],[0,38],[0,26],[0,26],[0,33],[1,33],[-1,40],[0,25],[0,7],[0,22],[-4,32],[3,46],[0,31],[-4,340],[-3,80],[0,25],[-1,55],[-1,28],[-1,52],[-1,47],[-1,64],[-1,38],[-2,40],[-2,33],[-1,29],[-1,30],[-2,28],[-1,35],[-2,29],[-3,71],[-2,35],[-1,26],[-1,49],[-1,26],[0,26],[-2,37],[-1,36],[1,29],[0,1],[-3,34],[5,33],[4,98],[1,36],[4,146],[-54,0],[-31,-1],[-47,0],[-36,0],[-30,0],[-24,0],[-52,0],[-48,0],[-1,0],[-126,-1],[-2,51],[-3,89],[-7,223],[-7,208],[2,30],[0,26],[-1,40],[0,28],[-2,50],[43,-1],[99,-3],[48,-1],[48,0],[29,-1],[39,0],[40,0],[91,-2],[-2,51],[-2,95],[0,26],[-1,37],[-1,76],[-1,31],[-1,53],[-2,66],[-2,30],[-1,32],[-1,32],[-1,26],[-1,31],[-1,33],[-1,31],[-1,35],[-1,27],[-2,30],[-1,38],[0,63],[0,54],[-1,51],[0,38],[-1,93],[1,25],[-307,7],[-166,3],[-111,2],[-58,-1],[-34,-2],[-28,8],[-23,4],[-34,-5],[-136,2],[-3,0],[-31,2],[-507,11],[-594,12],[-35,0],[-68,1],[-28,0],[-34,1],[-24,0],[-36,1],[-34,0],[-31,0]],[[39681,58645],[-100,-1],[-29,0],[-31,0],[-69,-1],[-27,0],[-40,-1],[-72,0],[-30,-1],[-48,0],[-53,-1],[-153,-1],[-58,-1],[-15,0],[-56,-1],[-110,-1],[-48,0],[-24,0],[-38,-1],[-28,0],[-29,-1],[-37,0],[-26,3],[-31,-1],[-5,-1],[-21,-2],[-51,-1],[-50,-1],[-62,-1],[-56,0],[-33,-1],[-33,0],[-28,-1],[-30,0],[-91,-1],[-34,0],[-23,-1],[-24,0],[-64,0],[-27,0],[-71,-1],[-34,0],[-43,0],[-44,1],[-28,-1],[-69,1],[-51,0],[-110,-1],[-26,1],[-89,1],[-86,0],[-140,2],[-24,0],[-19,0],[-11,0],[-59,1],[-91,0],[-51,0],[-26,-1],[-60,0],[-42,1],[-23,0],[-26,0],[-69,0],[-32,0],[-8,0],[-24,-1],[-25,0],[-34,0],[-144,-1],[-82,0],[-152,0],[-203,-1],[-92,0],[-33,-1],[-47,0],[-85,0],[-94,-1],[-47,-1],[-43,-1],[-90,0],[-41,-1],[-135,-9],[0,-39],[0,-48],[0,-46],[0,-77],[0,-42],[0,-35],[0,-42],[-5,-43],[-23,0],[-90,1],[-60,1],[-33,0],[-78,1],[-35,1],[-88,1],[-39,0],[-27,1],[-39,0],[-33,1],[-53,0],[-140,0],[-52,0],[-82,1],[-33,0],[-98,-1],[-34,0],[-33,0],[-40,0],[-120,0],[-101,-1],[-93,0],[-139,0],[-46,0],[-59,-1],[-107,-1],[-252,1],[-14,0],[-103,1],[-26,0],[-302,0],[-23,0],[-174,-12]],[[32520,58235],[-29,1],[-23,1],[-71,3],[-23,1],[-90,4],[-26,1],[-34,1],[-63,3],[-78,4],[-38,1],[0,41],[1,148],[1,186],[-74,0],[-339,-1],[-1,0],[-50,0],[-416,-20],[-84,0],[-199,1],[-30,0],[-98,2],[0,77],[0,65],[-1,42],[1,29],[0,32],[0,38],[0,103],[0,59],[1,26],[1,87],[0,44],[0,4],[1,96],[-1,32],[-23,4],[-2,11],[1,88],[1,66],[0,29],[1,31],[0,36],[0,57],[1,31],[0,26],[0,82],[1,95],[0,48],[1,77],[0,68],[-2,176],[0,61],[-1,40],[0,52],[-1,51],[0,38],[0,51],[-1,39],[0,43],[-1,119],[-1,42],[0,48],[1,32],[0,34],[0,49],[1,44],[1,66],[1,92],[1,54],[1,48],[0,1],[0,25],[2,103],[1,31],[3,115],[0,30],[-52,1],[-24,1],[-40,2],[-30,-1],[-308,2]],[[73670,64039],[0,-51],[0,-25],[1,-86],[0,-34],[19,-31],[7,-29],[-10,-22],[-3,-6],[-13,-25],[-1,-52],[0,-34],[0,-33],[-2,-67],[0,-83],[-1,-53],[0,-41],[0,-26],[0,-36],[0,-95],[1,-131],[-1,-26],[0,-26],[1,-54],[0,-64],[0,-43],[0,-53],[0,-42],[0,-37],[0,-38],[0,-48],[0,-96],[0,-54],[-1,-141],[-1,-32],[0,-57],[-1,-24],[0,-4],[0,-65],[0,-23],[1,-102],[-1,-42],[-1,-77],[0,-26],[0,-35],[0,-73],[0,-84],[0,-79],[-1,-56],[0,-90],[-1,-71],[0,-29],[0,-26],[-1,-55],[0,-45],[-1,-88],[0,-48],[0,-17],[0,-33],[0,-42],[0,-5],[-1,-56],[0,-46],[0,-49],[0,-32],[-1,-36],[0,-53],[1,-45],[0,-54],[-1,-106],[0,-108],[0,-34],[0,-45],[0,-32],[0,-27],[0,-39],[0,-27],[0,-60],[0,-93],[-4,-282],[-21,-277],[-2,-39],[17,-20],[-4,-8],[-16,-37],[7,-85],[8,-62],[-10,-15],[-5,-9],[0,-163],[0,-40],[0,-163],[0,-34],[0,-84],[0,-127],[-2,-334],[-3,-327],[-7,-217],[0,-6]],[[73616,57758],[-64,1],[-155,1],[-267,2],[-393,-8],[-47,0],[-62,0],[-24,0],[-30,1],[-64,0],[-29,0],[-47,0],[-77,0],[-36,1],[-27,0],[-32,-1],[-24,0],[-42,0],[-34,0],[-40,0],[-52,0],[-29,0],[-53,1],[-27,0],[-93,1],[-97,-1],[-240,2],[-3,0],[-138,2],[-92,-5],[-127,-3],[-63,-2],[-80,-2],[-83,-11],[-222,12],[-219,-2],[-115,0],[-170,-1],[-167,-1],[-305,-1],[-261,-1],[-26,-1],[-78,0],[-170,-1],[-52,0],[-290,-3],[-35,0],[-107,-2],[-326,-1],[-51,-1],[-54,-12],[-330,6],[-47,-2],[-52,-1],[-98,1],[-69,-1],[-3,-34],[-217,4],[-117,19],[-29,5],[-74,12],[-27,0],[-160,4],[-73,1],[-258,5],[-20,1],[-51,3],[-69,1],[-19,1],[-60,1],[-50,1],[-70,1],[-1,0],[-145,0],[-42,1],[-28,-2],[-28,-1],[-35,0],[-29,0],[-116,2],[-42,0],[-80,2],[-95,1],[-39,1],[-39,0],[-26,0],[-60,1],[-55,-1],[-51,1],[-113,-1],[-48,1],[-87,-1],[-74,1],[-59,1],[-63,2],[-65,0],[-38,2],[-41,0],[-52,1],[-49,1],[-24,0],[-76,1],[-35,1],[-34,0],[-92,1],[-4,0],[-45,0],[-46,0],[-73,1],[-39,0],[-74,1],[-38,-1],[-34,0],[-61,0],[-27,0],[-38,0],[-43,0],[-24,0],[-120,-1],[-124,-2],[-52,-1],[-65,-1],[-51,0],[-33,-1],[-64,-1],[-29,0],[-41,-1],[-24,0],[-89,-2],[-28,0],[-17,0],[-9,0],[-77,1],[-25,-1],[-138,-3],[-52,7],[-12,2],[-43,-3],[-120,2],[-194,0],[-31,0]],[[11141,62629],[1,-53],[0,-53],[0,-74],[1,-53],[0,-47],[0,-25],[0,-1],[0,-32],[1,-29],[0,-26],[0,-25],[0,-27],[0,-17],[0,-17],[2,-166],[0,-27],[0,-39],[1,-31],[0,-28],[3,-326],[-107,0],[-38,0],[-83,-1],[-27,0],[-32,0],[-155,0],[-95,0],[-33,0],[-57,-1],[-41,0],[-62,0],[-76,-1],[-75,0],[-29,0],[-145,-1],[-57,0],[-30,-1],[-66,0],[-41,0],[-36,0],[-44,0],[0,-43],[0,-47],[0,-40],[1,-57],[0,-26],[0,-39],[1,-39],[0,-86],[1,-101],[0,-32],[0,-54],[0,-62],[0,-30],[1,-58],[0,-35],[0,-69],[1,-75],[0,-39],[0,-61],[1,-56],[0,-29],[0,-40],[0,-66],[0,-61],[-1,-43],[3,-189],[0,-70],[-1,-65],[-1,-62],[1,-74],[1,-78],[0,-31],[0,-34],[0,-12],[0,-39],[0,-28],[0,-28],[-1,-28],[0,-77],[0,-104],[1,-28],[1,-41],[0,-26],[0,-45],[0,-2],[0,-25],[0,-37],[1,-174],[0,-14],[0,-99],[1,-69],[0,-85],[0,-41],[1,-76],[0,-45],[0,-48],[0,-32],[0,-39],[1,-208]],[[9834,58187],[-26,-1],[-32,-1],[-26,-1],[-27,0],[-35,0],[-32,0],[-40,-1],[-27,0],[-32,0],[-26,0],[-34,0],[-42,-1],[-35,1],[-29,-1],[-27,0],[-28,0],[-29,0],[-29,0],[-33,0],[-27,0],[-30,0],[-21,0],[-445,1],[-267,2]],[[8455,58185],[0,49],[0,43],[1,68],[0,48],[1,44],[0,48],[0,45],[0,28],[0,46],[0,71],[-1,76],[0,50],[0,3],[0,23],[0,61],[0,27],[0,8],[0,40],[0,56],[-1,45],[0,31],[0,57],[0,29],[0,80],[0,30],[-39,2],[-38,0],[-70,0],[-45,-1],[-67,0],[-71,0],[-92,-1],[-41,0],[-25,0],[-43,0],[-69,0],[-47,0],[-59,0],[-58,0],[-26,0],[-51,0],[-35,0],[-51,0],[-35,-1],[-24,0],[-30,1],[-38,0],[-49,0],[-59,0],[-54,0],[-1,0],[-54,0],[-40,0],[-25,0],[-39,-1],[-36,0],[-49,0],[-43,0],[-55,0],[-68,0],[-32,-1],[-33,0],[-61,0],[-25,0],[-15,0],[-128,-1],[-82,0],[-41,0],[-59,0],[-69,-1],[-40,0],[-51,0],[-81,-1],[-53,0],[-52,0],[-3,0],[-102,-1],[-7,0],[-118,0],[-45,-1],[-42,0],[-34,0],[-49,0],[-49,-1],[-5,0],[-102,0],[-27,0],[-69,-1],[-26,0],[-65,0],[-32,0],[-27,0],[-32,-1],[-34,0],[-35,0],[-27,0],[-29,0],[-44,-1],[-24,0],[-26,0],[-26,0],[-37,0],[-101,-1],[-122,-1],[-34,0],[-31,0],[-67,-1],[-37,0],[-142,-1],[-41,0],[-69,0],[-38,0],[-32,-1],[-60,0],[-26,0],[-109,0],[-104,0],[-217,1],[-36,0],[-43,0],[-25,0],[-26,0],[-30,1],[-31,0],[-30,0],[-32,0],[-31,0],[-33,0],[-40,0],[-25,0],[-30,0],[-29,0],[-33,0],[-34,0],[-29,0],[-31,0],[-33,1],[-25,0],[-31,0],[-24,0],[-37,-1],[-197,2],[-4,0],[-57,0],[-21,0],[-100,1],[-1,0],[-628,3],[-17,0],[-19,0],[-63,1],[-9,0],[-116,1],[-27,0],[-81,1],[-27,-1],[-62,1],[-25,0],[-57,0],[-44,0],[-29,0],[-98,1],[-33,0],[-66,0],[-44,0],[-38,0],[-40,0],[-33,0],[-39,1],[-80,0],[-177,0],[-1,0],[-197,1],[-38,0],[-57,0]],[[418,59289],[1,21],[0,15],[-1,47],[0,2],[0,6],[0,74],[0,30],[0,32],[0,24],[0,27],[0,27],[0,11],[-1,49],[3,99],[1,22],[0,50],[0,28],[-3,55],[-1,7],[-1,8],[-2,238],[0,17],[-1,60],[2,51],[1,89],[0,15],[1,41],[0,31],[0,42],[0,57],[1,50],[0,4],[0,24],[-1,17],[1,28],[0,72],[0,15],[1,90],[0,32],[0,45],[0,37],[0,40],[0,40],[0,13],[0,10],[0,36],[0,10],[0,47],[0,7],[0,17],[0,16],[0,4],[0,10],[0,26],[0,26],[0,4],[0,53],[-1,29],[1,27],[0,13],[-1,51],[0,46],[0,48],[0,17],[0,2],[0,32],[-1,8],[0,19],[0,13],[0,8],[0,17],[0,29],[0,8],[0,38],[0,10],[0,1],[0,45],[0,20],[0,59],[0,50],[0,27],[0,10],[0,8],[0,34],[0,83],[0,51],[0,12],[0,29],[0,15],[0,18],[-1,10],[0,77],[0,37],[-1,29],[0,43],[0,16],[0,8],[0,62],[0,28],[0,35],[-1,16],[0,5],[0,39],[0,34],[-1,67],[0,21],[0,3],[0,31],[0,30],[0,12],[0,5],[0,16],[0,13],[0,24],[0,8],[-1,37],[0,72],[0,37],[-1,19],[0,59],[-1,68],[0,35],[-1,42],[0,32],[0,53],[-1,61],[0,77],[0,29],[-1,56],[0,64],[0,48],[-1,38],[0,12],[0,139],[-1,13],[0,17],[0,24],[0,58],[0,47],[-1,32],[0,39],[0,31],[0,32],[-1,92],[0,2],[0,5],[0,12],[0,1],[0,34],[0,83],[0,53],[0,19],[-1,43],[0,27],[0,32],[-1,46],[0,23],[0,1],[0,28],[-1,24],[0,34],[1,30],[0,25],[0,28],[0,10],[-1,34],[0,36],[0,35],[-1,27],[0,32],[0,12],[0,8],[0,4],[0,9],[0,1],[0,55],[-1,47],[0,71],[0,48],[0,4],[0,30],[0,35],[0,33],[0,48],[0,15],[-1,14],[0,16],[0,41],[0,96],[0,24],[0,28],[0,67],[-1,67],[0,139],[0,40],[0,30]],[[86698,63713],[1,-70],[2,-269],[1,-45],[-1,-49],[0,-79],[-1,-56],[0,-108],[-1,-68],[-1,-84],[-2,-290],[1,-196],[0,-75],[0,-104],[-1,-214],[-1,-57],[0,-31],[0,-32],[0,-89],[-1,-181],[0,-83],[0,-58],[0,-29],[-1,-47],[0,-149],[-1,-135],[0,-226],[-4,-548],[0,-281],[-1,-154],[1,-28],[1,-37],[-2,-58],[-1,-128],[-1,-6],[1,-30],[0,-31],[0,-16],[0,-31],[-1,-50],[0,-28],[0,-72],[-4,-69],[3,-40]],[[86684,59282],[-106,12],[-39,0],[-23,0],[-42,-2],[-26,0],[-11,0],[-37,0],[-33,0],[-11,0],[-26,0],[-32,-2],[-7,0],[-42,4],[-23,0],[-25,0],[-27,0],[-23,0],[-42,0],[-24,0],[-55,0],[-24,1],[-31,1],[-49,0],[-27,-1],[-165,-4],[-108,2],[-81,2],[-175,2],[-24,1],[-63,1],[-10,0],[-57,1],[-4,0],[-46,1],[-370,5],[-170,1],[-284,5],[-243,3],[-4,-73],[-6,-102],[-186,6],[-24,1],[-274,10],[-122,4],[-198,8],[-83,3],[-9,-162],[-2,-49],[-2,-37],[-2,-34],[-3,-63],[-1,-28],[-11,-228],[-2,-51],[-9,-184],[-16,-309],[-10,-152],[0,-3],[-8,-199],[-2,-45],[-1,-8],[-1,-27],[-14,-230],[0,-53],[-193,3],[-440,3],[-91,2],[-68,1],[-26,1],[-32,2],[-30,1],[-46,-1],[-203,4],[-37,0],[-39,0],[-31,1],[-30,1],[-34,0],[-33,0],[-8,0],[-17,1],[-30,0],[-18,2],[-13,1],[-25,-1],[-33,0],[-257,5],[-42,0]],[[81333,57336],[-171,4],[-330,7],[-191,4],[-65,3],[-47,0],[-2,0],[-64,1],[-46,1],[-33,0],[-384,5],[-284,5],[-137,2],[-142,2],[-81,1],[-32,3],[-18,0],[-8,0],[-183,1],[-168,1],[-138,1],[-36,0],[-32,2],[-129,2],[-12,0],[-212,2],[75,62],[60,48],[5,4],[9,1],[8,0],[12,-1],[4,4],[38,45],[2,2],[-5,3],[-75,59],[-24,19],[-15,12],[-32,2],[-25,3],[-40,10],[-61,19],[-199,43],[-37,5],[-32,0],[-28,-6],[-9,-4],[-15,-6],[-15,-13],[-9,-14],[-20,-41],[-22,-46],[-2,-8],[-8,-21],[-33,-30],[-30,-28],[-43,-53],[-17,-21],[-11,-22],[-44,-5],[-5,0],[-8,0],[-39,0],[-23,-7],[-8,-3],[-64,-8],[-58,-5],[-30,-5],[-121,-16],[-25,-2],[-146,-13],[-168,-15],[-162,-20],[-40,-4],[-231,-28],[-352,-46],[-16,-2],[-49,-5],[-210,-27],[-6,-1],[-39,-5],[-22,-2],[-7,-1],[-42,-5],[-62,-7],[-53,-8],[-81,-10],[-24,-3],[-96,-12],[-139,-18],[-4,0],[-38,-5],[-86,-10],[-8,-1],[-79,-10],[-7,-1],[-53,-7],[-4,0],[-196,-23],[-49,-6],[-239,-30],[-276,-35],[-385,-43],[-326,-36],[-32,-17]],[[73642,56903],[1,299],[0,74],[-27,155],[5,237],[-5,90]],[[99872,63662],[7,-628],[7,-600],[0,-51],[-1,-290],[0,-70],[-4,-1134],[0,-74],[-2,-337],[-7,-2178],[2,-394],[0,-140],[3,-458],[0,-136],[1,-74],[0,-92],[-58,-58],[-37,-20],[-124,-28],[-91,-36],[-99,-28],[-8,1],[-138,-58],[-73,-31],[-62,-37],[-27,-31],[-103,-69],[-171,-104],[-10,-7],[-182,-107],[-134,-41],[-51,-3],[-90,16],[-99,72],[-121,109],[-86,54],[-135,36],[-213,-58],[-121,-34],[-102,-28],[-94,-24],[-137,-42],[-121,-93],[-42,-40],[-93,-129],[-100,-98],[-135,-104],[-60,-46],[-100,-75],[-79,-77],[-46,-60],[-22,-28],[-27,-48],[-67,-78]],[[96420,55574],[-42,1],[-11,0],[-57,1],[-272,4],[-26,-2],[-462,8],[-61,0],[-272,4],[-143,1],[-169,2],[-56,0],[-6,0],[-40,0],[-26,-1],[-12,0],[-149,3],[-38,0],[3,119],[-9,170],[-4,59],[-47,2],[-77,1],[-289,6],[-5,0],[-306,7],[-360,7],[-275,6],[-99,1],[-171,4],[-115,3],[-67,1],[-111,2],[-76,1],[-95,4],[-6,0],[-144,3],[-139,4],[-112,3],[-159,7]],[[91915,56005],[7,210],[2,88],[-1,26],[1,45],[0,31],[3,87],[3,63],[0,23],[0,10],[-2,58],[0,14],[9,330],[0,2],[5,114],[-115,2],[-4,0],[-205,4],[-48,1],[-89,1],[-436,8],[-62,1],[-4,0],[-65,2],[-82,0],[-32,2],[-188,2],[4,146],[5,195],[1,38],[0,14],[4,131],[4,156],[1,61],[1,122],[1,91],[0,31],[0,69],[0,60],[0,56],[1,54],[0,142],[2,102],[-2,34],[0,287],[0,81],[0,99],[0,15],[0,25],[0,49],[0,44],[0,16],[0,11],[-7,0],[-88,0],[-128,0],[-7,0],[-205,1],[-498,0],[-135,1],[-72,0],[-63,0],[-136,0],[-228,0],[-224,1],[-54,0],[-32,2],[-42,0],[-51,0],[-87,1],[-122,1],[-27,0],[-174,2],[-46,0],[-43,1],[-141,0],[-178,1],[-84,1],[-59,1],[-170,2],[-101,1],[-89,1],[-50,2],[-201,2],[-123,1],[-107,0],[-39,1],[-78,4],[-35,-3],[-26,0]],[[21833,61630],[0,-41],[0,-27],[1,-30],[0,-89],[0,-35],[0,-38],[0,-41],[0,-38],[0,-31],[1,-49],[0,-36],[-1,-33],[1,-30],[0,-30],[-1,-31],[0,-29],[0,-32],[0,-29],[0,-1],[0,-52],[0,-31],[0,-29],[1,-32],[0,-38],[1,-37],[0,-33],[-1,-30],[1,-43],[0,-120],[0,-3],[1,-47],[0,-27],[0,-28],[0,-28],[0,-27],[-1,-26],[0,-32],[0,-32],[1,-33],[0,-1],[0,-52],[0,-34],[-1,-39],[0,-29],[0,-38],[0,-29],[0,-28],[0,-29],[1,-27],[0,-28],[0,-33],[0,-34],[0,-29],[0,-35],[1,-54],[-1,-36],[0,-32],[1,-33],[0,-27],[0,-26],[0,-32],[0,-32],[0,-34],[0,-26],[0,-35],[0,-2],[0,-43],[0,-69],[0,-38],[0,-36],[-1,-36],[0,-103],[0,-28],[0,-37],[-1,-28],[0,-28],[0,-28],[0,-28],[0,-28],[0,-27],[-1,-44],[1,-51],[-1,-54],[0,-38],[-1,-64],[1,-36],[-1,-28],[1,-28],[-1,-40],[1,-42],[-1,-39],[0,-27],[0,-29],[0,-31],[0,-45],[0,-41],[-1,-40],[0,-41],[0,-27],[0,-34],[0,-28],[-1,-40],[1,-40],[0,-33],[0,-32],[0,-27],[0,-39],[0,-32],[0,-27],[-1,-64],[0,-30],[1,-30],[0,-33],[0,-33],[-1,-26],[0,-32],[0,-29],[-1,-59],[0,-38],[-1,-38],[0,-32],[0,-29],[0,-130]],[[21830,57161],[-156,0],[-287,-1],[-328,-3],[-115,-1],[-205,0],[-59,1],[-1,-1],[-166,-1],[-27,-1],[-97,0],[-51,-1],[-27,0],[-88,-1],[-53,-1],[-24,0],[-76,-1],[-26,0],[-41,0],[-91,-1],[-42,0],[-28,0],[-74,0],[-54,0],[-53,-1],[-37,0],[-7,0],[-17,0],[-67,0],[-89,-1],[-53,0],[-84,0],[-122,-1],[-35,0],[-25,0],[-59,0],[-18,0],[-13,-1],[-29,0],[-32,0],[-25,0],[-35,0],[-39,0],[-39,0],[-43,0],[-27,0],[-23,0],[-63,0],[-34,0],[-26,0],[-25,0],[-26,0],[-26,0],[-47,0],[-34,0],[-57,-1],[-31,0],[-29,0],[-45,0],[-162,-2],[-171,0],[-63,-3],[-140,-1],[-132,0],[-37,-1],[-62,-1],[-124,-2],[-93,-1],[-37,-1],[-36,-1],[-29,0],[-46,-1],[-9,0],[-75,-1],[-1,0],[-118,-1],[-2,0],[-418,-9],[0,27],[-1,26],[0,42],[0,45],[0,42],[-1,33],[0,27],[0,29],[0,12],[1,19],[-1,39],[-1,38],[-313,-7],[-17,0],[-82,0],[-134,0],[-9,0],[-68,-3],[-26,0],[-38,-1],[-50,0],[-58,-2],[-3,0],[-56,1],[-47,-1],[-97,-3],[-41,0],[-291,-4],[-445,0],[-23,0],[-98,-1],[-323,-1],[-1,0],[-93,0],[-86,-3],[-7,0],[-260,0],[2,187],[2,66],[-3,27],[-1,34],[0,27],[0,41],[0,42],[-1,41],[0,40],[-1,39],[0,31],[0,29],[1,42],[0,41],[0,26],[-1,27],[-443,1],[-112,-2],[-75,0],[-153,2],[-27,-1],[-29,-1],[-24,0],[-35,-1],[-35,0],[-28,0],[-26,-1],[-26,0],[-9,0],[-93,-1],[-6,0],[-26,0],[-31,0],[-30,0],[-49,-1],[-36,0],[-15,0],[-23,0],[-1,0],[-46,0],[-24,0],[-24,0],[-33,0],[-43,0],[-26,0],[-34,0],[-45,0],[-30,-1],[-27,1],[-29,0],[-51,-1],[-51,0],[-56,-1],[-33,0],[-40,0],[-24,0],[-31,0],[-47,0],[-24,0],[-38,0],[-98,0],[-29,-1],[-490,-14],[-312,0],[-277,-1],[-8,-1],[-24,0],[-207,-2],[-61,0],[-446,0]],[[32520,58235],[0,-28],[-1,-79],[0,-86],[-1,-134],[2,-43],[0,-39],[-1,-61],[0,-94],[0,-109],[1,-216],[0,-4],[0,-23],[0,-94],[0,-48],[0,-40],[0,-84],[-1,-36],[-2,-50],[-1,-104],[-4,-160],[-2,-43],[-1,-81],[-1,-202],[-1,-113],[0,-53],[4,-109],[2,-78],[0,-1],[5,-134],[1,-42],[15,-310],[8,-164],[2,-35],[6,-102],[2,-41],[1,-28],[1,-8],[6,-155],[3,-33],[0,-37],[3,-33],[0,-30],[4,-53],[2,-53],[3,-70],[6,-103],[17,-268],[10,-174],[6,-86],[4,-83],[4,-66],[3,-50],[-46,-165],[-7,-28],[-18,-68]],[[32554,53604],[-56,-1],[-226,-3],[-104,-1],[-38,-1],[-317,-5],[-261,-3],[-84,-1],[-280,-4],[-1,0],[-295,-4],[-167,-2],[-2,0],[-9,0],[-134,-2],[-82,0],[-168,-2],[-41,0],[-1,0],[-56,-1],[-43,0]],[[30189,53574],[-3,26],[-4,25],[11,82],[-35,2],[-413,33],[-97,8],[-292,23],[-146,12],[-2,0],[-100,9],[-73,7],[-36,3],[-36,2],[-1,0],[-35,0],[-36,3],[-40,3],[-31,2],[-57,4],[-1,1],[-36,2],[-213,16],[-27,2],[-147,11],[-39,3],[-196,15],[-25,2],[-184,12],[-1,0],[-34,3],[-103,8],[-206,17],[-24,2],[-29,1],[-3,0],[-231,15],[-142,9],[-36,1],[-169,9],[-194,15],[-73,5],[-159,12],[-108,7],[-46,3],[-1,0],[-54,3],[-77,5],[-365,23],[-100,6],[-82,6],[-164,10],[-115,7],[-144,9],[-55,3],[-35,2],[-135,9],[-41,2],[-38,2],[-81,7],[-133,10],[-299,21],[-247,16],[-329,23],[-4,0],[-45,3],[-108,7],[-48,3],[-48,4],[-37,1],[-27,2],[-172,11],[-44,3],[-72,5],[-253,16],[-1,1],[-93,6],[-120,9],[-12,1],[-307,17],[-57,4],[-76,6],[-366,21],[-114,10],[-2,174]],[[21836,54457],[-5,383],[0,2],[0,48],[3,253],[0,27],[-3,29],[0,27],[0,29],[-1,37],[0,75],[-2,28],[-1,32],[4,54],[0,13],[1,27],[0,43],[0,48],[-1,47],[0,43],[0,30],[-1,38],[0,53],[-1,34],[-2,33],[0,96],[-1,64],[0,28],[0,10],[0,31],[0,40],[0,48],[0,36],[0,39],[0,76],[1,62],[0,51],[0,89],[0,41],[1,56],[0,59],[-1,127],[2,138],[1,180]],[[91915,56005],[-1,-41],[-2,-56],[-11,-355],[-1,-28],[-4,-153],[-1,-7],[-6,-187],[-2,-51],[-7,-198],[-1,-46],[-261,3],[-108,4],[-5,0],[-23,0],[-131,2],[-283,5],[-29,1],[-383,8],[-109,1],[0,-1],[-4,-74],[-1,-19],[0,-17],[-2,-30],[-1,-30],[-11,-211],[-2,-40],[-8,-267],[-4,-135],[0,-7],[-1,-28],[-11,-293],[-1,-33],[-2,-47],[-2,-55],[-9,-148],[-3,-262],[-1,-81],[1,-39],[1,-34],[-8,-124],[-2,-28],[-2,-31],[-2,-25],[0,-23],[0,-15],[0,-27],[-1,-21],[-2,-32],[-4,-43],[-5,-34],[-139,4],[-31,1],[-4,0],[-28,1],[-88,3],[-70,1],[-2,-56],[-6,-188],[-1,-25],[-3,-62],[-1,-36],[-6,-183],[-3,-75],[-7,-229],[-2,-36],[-1,-46],[1,-96],[1,-28],[-1,-53]],[[90069,51550],[-188,1],[-52,1],[-207,6],[-30,1],[-10,0],[-281,8],[-45,1],[-47,1],[-356,10],[-24,1],[-114,3],[-120,7],[-339,13],[-305,8],[-131,2],[-76,3],[-49,1],[-85,1],[-61,1],[-50,2],[-57,2],[-60,2],[-42,1],[-31,1],[-216,7],[-5,0],[-94,4],[-30,2],[-147,3],[-78,4],[-28,1],[-45,1],[-74,3],[-206,6],[1,42],[-69,3],[-27,2],[-27,1],[-102,4],[-44,2],[-144,6],[-56,1],[-39,1],[-67,1],[-323,8],[-26,1],[-41,1],[-235,7],[-143,4],[-52,1],[-76,2],[-95,3],[-166,4],[-43,1],[-88,3],[-30,1],[-44,1],[-83,3],[-28,0],[-2,1],[-38,2],[-24,0],[-62,1],[-24,0],[-73,1],[-28,0],[-1,0],[-201,4],[-59,1],[-46,2],[-1,-48],[-117,4],[-231,9],[-208,9],[-33,1],[-206,7],[-76,6],[-73,2],[-94,3],[-53,2],[-34,1],[-34,1],[-112,2],[-67,2]],[[82442,51774],[4,117],[3,120],[3,105],[2,65],[4,119],[1,32],[2,57],[5,114],[4,116],[3,101],[2,47],[0,35],[2,74],[3,86],[1,63],[2,79],[2,68],[0,38],[3,94],[3,91],[2,41],[2,52],[2,52],[3,86],[0,1],[1,31],[3,50],[1,20],[3,81],[0,1],[6,156],[4,101],[4,99],[3,58],[0,7],[4,101],[6,129],[0,3],[1,34],[3,69],[13,290],[8,188],[3,84],[-99,3],[-188,7],[-182,6],[-548,16],[-178,5],[-127,4],[11,230],[3,63],[2,30],[4,88],[4,81],[4,55],[6,110],[2,48],[2,34],[2,42],[5,132],[2,51],[1,16],[11,265],[7,176],[3,69],[1,28],[1,29],[2,49],[2,69],[4,112],[0,8],[7,194],[0,4],[6,183]],[[8455,58185],[0,-42],[0,-35],[0,-28],[1,-34],[0,-47],[4,-408],[0,-43],[-1,-29],[-3,-85],[0,-44],[0,-60],[1,-59],[0,-34],[0,-36],[0,-53],[0,-41],[1,-46],[0,-35],[-1,-29],[1,-28],[0,-47],[0,-68],[0,-79],[0,-64],[0,-21],[1,-21],[-1,-34],[1,-28],[0,-38],[0,-42],[1,-38],[0,-32],[0,-33],[0,-30],[0,-26],[0,-37],[1,-140],[0,-43],[0,-27],[1,-57],[0,-31],[0,-32],[0,-33],[1,-191],[0,-35],[0,-29],[1,-29],[0,-28],[0,-29],[0,-29],[0,-28],[0,-17],[2,-351],[-1,-30],[0,-26],[1,-54],[1,-59],[0,-58],[1,-42],[0,-1],[0,-28],[0,-26],[0,-26],[0,-15],[0,-13],[1,-28],[0,-26],[1,-59],[2,-45],[2,-62],[0,-5],[1,-247],[3,-311],[0,-64],[1,-84],[2,-212],[0,-2],[0,-27],[-1,-35],[-1,-27],[1,-30],[-1,-50],[1,-39],[-1,-26],[0,-43],[0,-32],[0,-31],[0,-60],[0,-32],[-6,-26],[6,-25],[0,-194],[0,-33],[1,-142],[0,-56],[1,-36],[2,-138],[0,-68],[0,-30],[0,-45],[0,-28],[0,-32],[-1,-47],[0,-46],[0,-73],[0,-38],[-1,-29],[0,-63],[0,-40],[-1,-69],[-1,-50],[0,-83],[0,-2],[-1,-91],[0,-43],[-1,-54],[-1,-174],[-1,-153],[0,-41],[0,-72],[-1,-80],[0,-26],[0,-10],[0,-16],[0,-34],[0,-26],[0,-34],[-1,-28],[0,-30],[0,-28],[0,-28],[0,-31],[0,-28],[0,-29],[0,-28],[0,-32],[0,-26],[-1,-27],[0,-31],[0,-32],[0,-29],[0,-30],[0,-38],[0,-29],[0,-33],[0,-35],[-1,-32],[0,-31],[-1,-77],[1,-109],[0,-27],[0,-28],[-1,-30],[0,-31],[0,-31],[0,-31],[0,-29],[3,-102],[13,-5],[55,-18],[196,-40],[224,-47]],[[8961,49760],[-6,-7]],[[8955,49753],[-191,-1],[-113,0],[-26,-1],[-33,0],[-26,0],[-40,0],[-39,1],[-50,0],[-142,0],[-52,0],[-114,0],[-51,1],[-114,0],[-64,-1],[-32,0],[-55,1],[-111,-1],[-51,0],[-55,0],[-30,0],[-24,-4],[-104,-1],[-79,-1],[-33,0],[-68,1],[-187,0],[-109,-1],[-102,-1],[-24,0],[-27,0],[-42,0],[-135,-1],[-124,-2],[-54,-1],[-85,-1],[-115,-1],[-36,-1],[-142,-2],[-3,0],[-30,0],[-44,-1],[-208,-2],[-16,0],[-17,-1],[-34,0],[-34,0],[-34,-1],[-34,0],[-28,0],[-25,-1],[-211,-2],[-85,-1],[-32,0],[-68,0],[-48,-1],[-3,-36],[-137,-1],[-6,0],[-135,0],[-50,0],[-31,-1],[-63,1],[-143,0],[-27,0],[-79,0],[-27,0],[-56,0],[-15,0],[-71,1],[-43,0],[-24,0],[-24,0],[-36,0],[-28,0],[-25,0],[-31,1],[-28,0],[-31,0],[-79,0],[-46,0],[-220,1],[-65,0],[-83,0],[-74,0],[-43,1],[-24,0],[-62,0],[-32,0],[-63,0],[-29,1],[-24,0],[-74,0],[-27,0],[-25,0],[-39,1],[-43,0],[-36,0],[-90,1],[-104,0],[-166,1],[-68,1],[-1,0],[-80,1],[-74,0],[-29,0],[-72,1],[-35,0],[-48,1],[-25,0],[-39,0],[-75,1],[-88,0],[-51,1],[-24,0],[-50,0],[-28,0],[-50,1],[-43,0],[-23,1],[-7,0],[-22,0],[-1,0],[-31,1],[-24,0],[-43,1],[-49,1],[-26,0],[-37,1],[-30,0],[-31,1],[-36,1],[-45,0],[-31,1],[-51,0],[-61,1],[-36,0],[-29,0],[-24,0],[-38,1],[-116,0],[-47,1],[-26,0],[-28,0],[-29,0],[-27,0],[-31,0],[-39,0],[-31,0],[-26,0],[-25,0],[-38,0],[-41,0],[-41,0],[-41,0],[-42,0]],[[381,49715],[-2,3],[1,1],[1,10],[-1,49],[0,1],[0,52],[-1,8],[0,13],[0,35],[0,33],[0,36],[0,17],[0,23],[-1,23],[0,53],[0,40],[-1,72],[0,35],[0,63],[0,166],[-1,81],[0,54],[0,27],[-1,93],[-1,66],[0,41],[0,35],[-1,67],[0,37],[0,55],[0,8],[0,26],[0,50],[0,4],[1,34],[0,37],[0,1],[1,27],[0,23],[0,24],[0,67],[0,17],[0,8],[0,4],[0,4],[0,4],[0,2],[0,1],[0,17],[1,7],[0,56],[0,4],[0,29],[0,10],[0,29],[0,9],[0,18],[1,63],[0,5],[0,14],[2,69],[0,76],[1,29],[1,45],[0,65],[1,78],[2,157],[2,92],[1,49],[0,29],[1,34],[0,17],[1,34],[0,54],[1,81],[1,77],[1,26],[0,13],[0,12],[1,50],[2,78],[0,40],[1,33],[2,102],[0,2],[0,46],[1,41],[1,41],[0,26],[1,72],[0,20],[1,34],[0,39],[1,81],[1,84],[1,14],[0,4],[1,1],[0,1],[0,7],[0,59],[0,64],[1,29],[0,54],[0,39],[1,86],[0,28],[0,34],[1,35],[0,50],[0,69],[0,66],[1,31],[-1,25],[0,43],[0,37],[0,44],[0,37],[0,27],[0,43],[0,96],[1,30],[0,31],[0,15],[0,3],[0,46],[0,17],[0,16],[0,7],[0,17],[0,2],[0,52],[0,31],[1,41],[0,30],[0,28],[0,6],[0,1],[0,6],[0,15],[0,58],[0,71],[1,41],[0,51],[0,27],[0,12],[1,34],[0,42],[0,31],[0,34],[0,33],[1,8],[0,21],[0,26],[0,51],[0,28],[0,8],[0,28],[1,31],[0,22],[0,10],[0,43],[0,7],[0,36],[1,62],[0,79],[0,38],[0,39],[0,29],[1,54],[0,19],[0,26],[0,8],[0,9],[0,91],[0,100],[0,23],[1,109],[0,21],[0,51],[0,56],[0,170],[0,7],[1,68],[0,7],[0,3],[0,19],[0,40],[0,73],[0,31],[0,95],[-1,51],[0,73],[0,44],[0,67],[-1,277],[0,28],[0,8],[0,48],[0,35],[0,12],[0,49],[0,37],[-1,71],[0,61],[0,83],[0,8],[0,10],[0,37],[1,57],[0,9],[1,53],[3,31],[0,20],[0,9],[-2,107],[-1,91],[0,4],[0,7],[0,32],[1,5],[3,1],[1,0],[-1,50],[-4,232],[0,31],[0,40],[0,7],[0,32],[0,87],[0,50],[0,30],[1,28],[0,48],[0,56],[-1,184],[0,60]],[[51009,54742],[-25,-1],[-65,0],[-356,5],[0,-52],[0,-38],[0,-39],[0,-29],[-5,-27],[0,-12],[-1,-182],[-1,-224],[0,-49],[7,-60],[32,4],[31,3],[26,3],[39,4],[45,5],[39,4],[9,-29],[-20,-263],[-23,-294],[-5,-85],[-8,-116],[-13,-153],[-43,-579],[0,-1],[4,-90],[-2,-14],[-6,-63],[-18,-291],[-5,-80],[-1,-39],[-16,-156],[-1,-34],[-1,-45],[-2,-41],[-6,-174],[0,-1],[-6,-105],[-3,-35],[-20,-280],[-5,-74],[-2,-25],[0,-1],[-4,-44],[-24,-363],[-8,-104],[-14,-181],[-2,-30],[-9,-145],[-23,-318],[-12,-149],[-9,-136],[-232,14],[-36,2],[-298,14],[-408,19],[-29,4],[-1,0],[-54,2],[-28,1],[-40,2],[-2,1],[-22,1],[-46,2],[-57,3],[-61,3],[-38,2],[-38,2],[-25,1],[-30,2],[-34,2],[-57,3],[-53,2],[-31,2],[-17,0],[-64,4],[-43,2],[-30,1],[-38,2],[-25,1],[-82,4],[-49,2],[-92,5],[-25,2],[-39,1],[-29,2],[-69,3],[-24,0],[-39,2]],[[48192,49634],[-41,2],[-89,5],[-137,7],[-43,2],[-112,5],[-40,2],[-43,2],[-26,1],[-55,3],[-59,2],[-44,2],[-27,1],[-5,1],[-71,4],[-318,17],[-379,17],[-102,6],[-40,2],[-84,4],[-33,2],[-45,3],[-27,1],[-182,10],[-4,0],[-207,12],[-88,4],[-113,5],[-161,8],[-8,0],[-15,1],[-136,6],[-104,5],[-34,2],[-257,13],[-70,3],[-62,3],[-807,43],[-1,0],[-18,1],[-9,1],[-38,2],[-154,8],[2,29],[6,84],[7,91],[0,6],[11,147],[6,63],[17,230],[21,264],[27,352],[14,179],[-243,17],[-34,2],[-48,2],[-27,1],[-157,8],[-49,2],[-27,1],[-86,4],[-228,12],[-223,12],[-113,-14],[-522,27],[-51,3],[-167,10],[-57,3],[-135,9],[-3,0],[-59,4],[-30,1],[27,337],[3,44]],[[41786,51782],[8,173],[31,405],[6,84],[25,332],[15,191],[8,102],[102,19],[137,17],[27,4],[126,14],[602,69],[49,5],[29,4],[97,11],[74,9],[1,0],[30,2],[51,6],[31,3],[6,229],[-3,376],[2,234],[1,506],[1,183],[0,62],[0,30],[1,95],[1,275],[0,141],[1,192],[1,116],[0,5],[0,165],[1,43],[0,176],[1,101],[1,225],[0,45],[1,218],[0,1],[2,153],[-1,127],[0,6],[-1,52],[-1,95],[-1,89],[146,3],[329,6],[364,7],[119,2],[15,1],[29,0],[27,0],[12,0],[138,4],[71,-2],[65,1],[77,1],[34,1],[31,0],[49,1],[74,1],[34,1],[49,0],[71,1],[28,1],[30,0],[47,1],[43,0],[130,1],[161,1],[62,0],[43,1],[0,34],[1,57],[0,34],[0,49],[2,39],[3,49],[3,46],[4,50],[1,28],[1,29],[2,18],[1,30],[0,25],[-1,23],[2,86],[2,112],[0,30],[2,90],[2,124],[0,60],[1,34],[1,61],[3,190],[3,196]],[[41786,51782],[-192,7],[-242,9],[-71,3],[-43,1],[-56,3],[-34,1],[-42,2],[-39,1],[-5,1],[-1,0],[-53,2],[-33,1],[-72,3],[-8,0],[-291,10],[-16,1],[-53,2],[-19,1],[-272,13],[-23,1],[-91,3],[-501,16],[-644,30],[-110,4],[-158,7],[-172,7],[-110,4],[-31,2],[-142,8],[-29,1],[-184,10],[-42,3],[-1,0],[-180,13],[-1,0],[-64,6],[-93,5],[-207,16],[-338,22],[-149,9],[-3,1],[-118,8],[-72,1],[-285,22]],[[36496,52042],[3,176],[1,68],[-1,40],[1,64],[4,142],[0,249],[0,222],[-1,162],[1,50],[0,48],[0,68],[-1,165],[3,154],[-160,0],[-93,-1],[-213,-3],[-65,0],[-14,-1],[-436,-5],[-175,-1],[-40,-1],[-181,-2],[-62,-1],[-62,0],[-207,-2],[-122,-1],[-95,-2],[-7,0],[-110,-1],[-2,0],[-203,-2],[-166,-3],[-268,-4],[-121,-1],[-190,-3],[-114,-1],[-90,-1],[-44,-1],[-51,0],[-66,-1],[-227,-2],[-85,-2],[-57,-2],[-171,-2],[-55,0]],[[21836,54457],[-52,-7],[-62,-16],[-214,-18],[-336,-43],[-63,1],[-47,-2],[-97,0],[-85,0],[-49,0],[-42,0],[-126,0],[-88,-1],[-27,0],[-79,0],[-64,0],[-6,-1],[-336,0],[-65,-1],[-181,0],[-2,0],[-111,0],[-72,0],[-306,0],[-136,-2],[0,-34],[0,-99],[-1,-53],[0,-34],[0,-120],[0,-79],[1,-137],[0,-30],[0,-78],[0,-41],[0,-58],[0,-53],[0,-112],[0,-46],[1,-69],[0,-27],[0,-51],[0,-8],[0,-26],[0,-38],[1,-84],[0,-3],[0,-25],[-17,-25],[-28,0],[-37,0],[-62,1],[-55,2]],[[18993,53040],[-176,0],[-11,0],[-28,0],[-113,-1],[-99,1],[-170,1],[-67,0],[-220,1],[-141,1],[-79,0],[-45,0],[-21,0],[-5,0],[-64,-1],[-66,0],[-151,-1],[-35,-1],[-27,0],[-29,0],[-129,-1],[-38,0],[-44,0],[-50,0],[-31,0],[-120,-1],[-31,0],[-164,1],[-168,1],[-111,1],[-79,-2],[-79,-2],[-45,-1],[-66,-2],[-171,-4],[-131,-2],[-56,0],[-33,0],[-93,-2],[-27,0],[-102,-1],[-82,-1],[-30,1],[-26,-1],[-42,-1],[-129,0],[-55,-1],[-81,0],[-67,-1],[-45,0],[-7,0],[-45,0],[-63,0],[-36,0],[-24,0],[-170,-2],[-1,0],[-65,0],[-1,0],[-74,0],[-35,0],[-60,0],[-35,0],[-50,-1],[-35,0],[-58,0],[-50,0],[-32,0],[-30,0],[-31,0],[-48,0],[-38,0],[-35,0],[-80,0],[-51,0],[-53,-1],[-116,-3],[-113,-2],[-223,-3],[-167,-2],[-70,0],[-30,-1],[-34,0],[-69,-1],[-71,-1],[-189,0],[-62,0],[-81,-1],[-34,0],[-85,-1],[-76,-1],[-94,-1],[-212,-3],[-39,-1],[-28,0],[-26,0],[-35,-1],[-83,-1],[-37,0],[-29,0],[-32,-1],[-107,-1],[-79,-1],[-59,0],[-81,-1],[-80,-1],[-209,-1],[-43,3],[-48,-8],[0,-138],[1,-44],[0,-30],[-1,-161],[1,-144],[1,-51],[1,-165],[0,-67],[1,-32],[0,-80],[0,-77],[1,-119],[0,-1],[2,-128],[0,-92],[1,-110],[-1,-52],[1,-51],[-1,-130],[1,-89],[0,-32],[0,-65],[-1,-101],[0,-39],[-1,-45],[0,-154],[0,-33],[0,-10],[1,-49],[1,-46],[1,-50],[1,-48],[1,-36],[0,-31],[1,-38],[0,-36],[-6,-32],[-37,0],[-29,0],[-30,0],[-34,-1],[-85,-1],[-85,-1],[-82,6],[-16,0],[-28,-2],[-7,0],[-40,-1],[-209,-5],[-157,-3],[-39,0],[-1,0],[-166,0],[-169,-4],[-109,0],[-47,4],[-493,-2],[-64,0],[-185,0],[-96,0],[0,-103],[0,-44],[-1,-39],[-1,-155],[0,-34],[-1,-93],[0,-6],[0,-22],[-1,-62],[-2,-21],[-4,-28]],[[73642,56903],[-118,-2],[-86,-10],[-262,-32],[-8,-123],[107,-6],[29,0],[34,-1],[-5,-68],[-21,-323],[-8,-191],[-5,-127],[0,-2],[-8,-154],[-5,-61],[-6,-118],[-1,-69],[-5,-140],[-3,-32],[-2,-81],[-2,-61],[-1,-38],[-2,-79],[-4,-99],[-3,-65],[-5,-137],[2,-32],[-11,-297],[-5,-181],[-6,-264],[-5,-211],[-2,-34],[3,-68],[-3,-77],[-15,-204],[-2,-39],[-4,-143],[0,-2],[2,-144],[-1,-27],[-10,-82],[-1,-33],[-3,-82],[-5,-115],[0,-19],[-4,-90],[2,-83],[-7,-166],[-3,-96],[-10,-247],[-2,-74],[-1,-35],[-25,0],[-40,0],[-33,1],[-208,8],[-32,-4],[-106,2],[-201,5],[-31,1],[-24,1],[-11,3],[-13,2],[-28,1],[-33,-2],[-25,-2],[-107,7]],[[72244,52062],[-69,2],[-144,4],[-31,1],[-36,-1],[-27,1],[-23,1],[-87,2],[-27,1],[-32,-3],[-134,6],[-164,2],[-25,0],[-147,3],[-80,2],[-30,1],[-54,1],[-86,2],[-24,1],[-52,2],[-52,4],[-53,0],[-32,1],[-28,3],[-26,-2],[-32,1],[-27,0],[-94,5],[-41,-1],[-60,1],[-49,1],[-54,2],[-32,0],[-23,1],[-59,1],[-169,4],[-112,2],[-29,1],[-61,1],[-48,1],[-118,2],[-188,4],[-40,0],[-161,4],[-124,2],[-92,7],[-455,-1],[-317,5],[-61,2],[-27,1],[-26,0],[-37,0],[-64,1],[-65,2],[-128,1],[-35,1],[-22,16],[-72,2],[-29,1],[-30,1],[-24,0],[-20,0],[-5,1],[-25,0],[-27,1],[-35,1],[-72,3],[-12,0],[-37,1],[-123,4],[-146,5],[-62,2],[-62,2],[-80,2],[-81,2],[-35,1],[-47,2],[-55,1],[-103,4],[-26,0],[-26,1],[-193,6],[-94,2],[-3,0],[-42,1],[-24,1],[-31,1],[-41,2],[-31,0],[-40,1],[-147,6],[-169,4],[-65,3],[-39,1],[-26,0],[-22,-7],[-71,2],[-50,3],[-41,2],[-34,1],[-41,1],[-353,13],[-23,1],[-223,7],[-53,2],[-28,1],[-25,0],[-40,2],[-34,1],[-55,5],[-188,3],[-28,1],[-25,0],[-28,2],[-27,0],[-29,2],[-42,1],[-43,2],[-40,1],[-471,17],[-243,9],[-2,-31],[-87,0],[-140,8],[-19,0],[-535,19],[-83,3],[-34,2],[-41,1],[-47,-1],[-32,1],[-1,0],[-188,7],[-295,12],[-265,11],[-196,8],[-32,2],[-295,13]],[[61203,52355],[6,25],[10,45],[9,126],[-6,82],[10,23],[-1,4],[-7,46],[9,27],[6,127],[2,60],[8,180],[14,373],[-4,37],[1,9],[1,23],[9,209],[0,9],[1,30],[7,149],[9,200],[2,42],[2,55],[2,43],[3,75],[4,95],[0,2],[2,46],[14,315],[3,67],[1,27],[9,203],[3,226],[-34,-2],[-124,-19],[-6,-1],[-23,-3],[-28,-3],[-186,-25],[-107,-14],[-122,-16],[-120,-16],[-159,-20],[-44,-6]],[[82442,51774],[-1,-43],[-2,-78],[-3,-56],[-6,-170],[-6,-224],[-3,-147],[-9,-169],[0,-1],[-4,-92],[-3,-59],[-1,-28],[-5,-65],[-2,-77],[-4,-94],[-3,-104],[-2,-83],[-3,-67],[-2,-49],[-4,-35],[0,-33],[-3,-71],[-6,-156],[-2,-33],[-2,-46],[-5,-99],[-6,-166],[-6,-176],[-2,-54],[-2,-97],[-4,-66],[-3,-66],[-7,-164],[-2,-69],[-2,-42],[-4,-110],[-1,-46],[-5,-182],[-216,0],[-9,0],[-88,3],[-50,2],[-83,2],[-24,0],[-42,0],[-322,6],[-7,0],[-38,1],[-53,1],[-49,-1],[-121,3],[-55,1],[-3,0],[-56,-1],[-25,0],[-25,1],[-110,4],[-3,-99],[0,-2],[-12,-225],[-3,-85],[-10,-233],[1,-37],[-10,-246],[0,-2],[0,-33],[-2,-45],[0,-5],[-3,-69],[-1,-39],[-3,-60],[-1,-26],[-3,-55],[-3,-54],[-3,-68],[1,-49],[-4,-95],[-1,-65],[-2,-72],[-3,-114],[-2,-40],[-1,-67],[0,-9],[-4,-142],[-3,-107],[-1,-31],[-3,-83],[-1,-40]],[[80861,46182],[-376,11],[-322,9],[-156,4],[-65,0],[-278,8],[-8,1],[-212,6],[-8,0],[-40,0],[-7,0],[-25,1],[-130,3],[-88,2],[-9,1],[-154,4],[-110,2],[-33,1],[-113,3],[-26,1],[-51,2],[-96,2],[-176,5],[-136,4],[-159,6],[-113,4],[-150,6],[-140,3],[-75,2],[-58,1],[-96,1],[-44,1],[-36,1],[-97,3],[-86,2],[-84,7],[-120,3],[-148,3],[-89,2],[-65,2],[-83,2],[-70,1],[-80,2],[-146,4],[-27,1],[-97,2],[-123,5],[-103,4],[-83,0],[-43,0],[-239,5],[-164,4],[-118,3],[-83,3],[-86,3],[-27,1],[-72,3],[-32,1],[-81,3],[-28,1],[-107,3],[-232,5],[-27,1],[-37,1],[-35,0],[-24,2],[-102,3],[-34,0],[-48,0]],[[74251,46362],[13,232],[3,72],[6,122],[1,27],[5,99],[4,106],[2,45],[0,26],[4,33],[0,33],[-1,39],[4,73],[7,128],[1,12],[1,13],[1,34],[3,50],[-1,26],[2,30],[4,78],[1,9],[1,27],[2,34],[2,36],[4,61],[3,63],[3,73],[1,39],[4,141],[4,98],[2,54],[3,85],[3,102],[6,106],[2,107],[4,92],[1,90],[6,147],[-2,112],[0,31],[2,42],[1,28],[1,40],[1,48],[1,26],[1,32],[2,29],[2,31],[1,33],[1,33],[2,27],[2,44],[10,263],[5,86],[2,27],[-1,28],[2,28],[11,115],[-112,3],[-27,0],[-6,1],[-60,0],[-193,5],[-123,4],[-48,2],[-177,8],[-25,0],[-184,6],[-205,6],[-44,1],[-291,11],[-12,0],[-38,2],[-27,-2],[-32,0],[-36,2],[-303,13],[-155,1],[-32,1],[-37,1],[-25,0],[-43,3],[6,103],[2,90],[1,51],[2,105],[7,115],[2,39],[1,42],[2,82],[3,128],[7,113],[6,144],[8,158],[6,132],[6,163],[2,73],[0,6],[0,22],[1,28],[1,50],[1,36],[3,69],[1,33],[2,49],[3,56]],[[96420,55574],[56,-149],[25,-60],[55,-89],[48,-34],[113,-64],[120,-99],[159,-191],[46,-68],[27,-73],[33,-55],[39,-49],[148,-186],[15,-30],[51,-103],[44,-120],[2,-15],[3,-20],[43,-124],[43,-103],[2,-7],[35,-143],[47,-124],[61,-152],[17,-44],[21,-24],[0,-1],[15,-29],[118,-148],[61,-70],[113,-112],[35,-45],[45,-60],[40,-95],[4,-18],[14,-61],[1,-35],[1,-38],[0,-10],[1,-7],[-2,-6],[0,-2],[-40,-201],[-34,-85],[-20,-39],[-49,-59],[-27,-49],[-17,-45],[-2,-6],[-11,-29],[-26,-54],[-35,-71],[-1,-12],[-85,-108],[-46,-122],[-21,-98],[0,-88],[15,-51],[1,-130],[3,-20],[1,-21],[0,-103],[-1,-65],[-1,-29],[-3,-42],[-5,-39],[-4,-25],[0,-3],[-16,-51],[19,-79],[0,-2],[-27,-31],[-156,-86],[-32,-13],[-43,-27],[-128,-25],[-4,-50],[-28,-28],[-9,-40],[8,-36],[21,-26],[28,-13],[69,-45],[114,-60],[73,-31],[97,-61],[53,-59],[39,-43],[27,-42],[33,-52],[-2,-69],[-6,-110],[-69,-224],[-26,-131],[7,-91],[0,-1],[12,-170],[39,-55],[85,-99],[47,-125],[74,-242],[11,-71],[-13,-64],[-43,-130],[-9,-29],[-18,-40],[-1,0],[-19,-27],[-27,-37],[-25,-31],[-5,-7],[-72,-88],[-66,-123],[-35,-71],[-33,-81],[6,-216],[11,-108],[6,-112],[-15,-67],[-87,-131],[-3,-5],[-44,-40],[-140,-95],[-125,-69],[-141,-85],[-204,-105],[-72,-70],[-78,-100],[-42,-64],[-48,-94],[-64,-225],[-42,-238],[-35,-137],[-59,-224],[-15,-77],[-37,-82],[-44,-74],[-78,-76],[-96,-102],[-36,-39],[-78,-16],[-67,-148],[-50,-86],[-97,-150],[-58,-82],[-214,-257]],[[95609,44727],[-56,5],[-27,1],[-19,1],[-10,1],[-26,0],[-25,1],[-17,1],[-78,4],[-122,6],[-40,2],[-393,18],[-138,5],[-145,6],[-44,2],[-181,7],[-140,8],[-6,-75],[-4,-46],[-40,1],[-79,3],[-28,1],[-54,2],[-114,6],[-52,3],[-78,3],[-39,2],[-118,7],[-125,4],[-67,5],[-97,-5],[-309,16],[-130,6],[-151,8],[-49,2],[-12,1],[-385,18],[-7,1],[-166,6],[-131,5],[-202,8],[-87,4],[-188,5]],[[91430,44786],[18,368],[5,117],[1,12],[5,73],[1,37],[2,45],[9,151],[10,222],[5,110],[3,50],[2,37],[4,91],[3,50],[1,31],[1,34],[2,37],[2,51],[5,102],[2,61],[2,33],[0,4],[0,14],[3,69],[0,5],[2,45],[3,64],[6,149],[9,150],[2,37],[5,61],[17,333],[5,96],[9,190],[1,28],[7,105],[5,92],[2,53],[5,76],[5,91],[2,40],[2,65],[3,103],[0,10],[2,64],[0,54],[2,32],[0,2],[6,48],[2,26],[0,3],[11,176],[3,78],[8,140],[3,99],[0,6],[2,28],[0,32],[5,139],[4,86],[6,162],[2,43],[2,38],[4,64],[4,106],[1,12],[1,46],[2,21],[1,7],[1,26],[0,76],[1,37],[1,19],[2,25],[5,132],[1,43],[-7,37],[12,111],[101,-2],[4,59],[12,278],[7,166],[4,175],[2,45],[2,59],[1,27],[6,136],[3,130],[-1,36],[-89,5],[-50,4],[-77,-2],[-68,1],[-145,3],[-98,2],[-27,-2],[-48,5],[-67,2],[-70,3],[-59,0],[-91,1],[-11,0],[-170,5],[-146,5],[-98,3],[-41,1],[-77,2],[-210,3],[-123,4]],[[61203,52355],[-2,-32],[5,-30],[1,-31],[-1,-34],[-2,-31],[-14,-215],[-6,-120],[0,-6],[-6,-125],[-4,-103],[-10,-230],[-9,-206],[-4,-71],[-1,-24],[0,-4],[-4,-90],[-5,-106],[-2,-27],[0,-9],[-8,-152],[-3,-61],[-2,-40],[-6,-113],[-10,-198],[-5,-55],[0,-6],[-7,-125],[-12,-224],[-18,-318],[5,-33],[-2,-27],[-1,-36],[-2,-31],[-2,-36],[-1,-30],[-1,-11],[-1,-14],[-1,-29],[-2,-39],[0,-2],[-2,-34],[-1,-27],[-1,-27],[-2,-27],[-5,-34],[0,-28],[0,-46],[-2,-57],[-12,-202],[0,-9],[-1,-18],[-4,-99],[-14,-281],[-3,-45],[-11,-224],[0,-1],[-4,-81],[-15,-303],[-1,-29],[-30,-592],[-11,-251],[0,-51]],[[60941,46815],[-31,2],[-225,9],[-194,2],[-48,2],[-244,2],[-299,5],[-139,2],[-45,1],[-28,1],[-64,1],[-241,1],[-44,1],[-20,0],[-103,0],[-191,-1],[-25,0],[-23,1],[-11,-24],[-35,1],[-46,0],[-150,1],[-178,1],[-58,1],[-39,1],[-75,1],[-84,1],[-1,0],[-104,2],[-79,0],[-114,2],[-84,1],[-245,7],[-226,5],[-236,10],[-97,5],[-32,2],[-23,1],[-31,1],[-118,6],[-3,0],[-30,1],[-5,0],[-90,1],[-133,10],[-24,1],[-26,1],[-28,1],[-25,1],[-26,1],[-41,2],[-45,3],[-28,1],[-29,1],[-34,1],[-35,2],[-41,2],[-37,2],[-26,0],[-27,2],[-47,2],[-40,3],[-40,2],[-42,2],[-28,2],[-31,1],[-25,0],[-138,3],[-16,2],[-12,1],[-24,3],[-31,2],[-44,2],[-33,1],[-29,1],[-52,3],[-24,0],[-29,0],[-81,9],[-29,2],[-51,3],[-25,1],[-58,3],[-121,6],[-35,-1],[-29,-1],[-9,0],[-66,-4],[-4,0],[-23,9],[-27,2],[-11,0],[-26,2],[-52,3],[-29,1],[-39,2],[-34,0],[-268,16],[-71,2],[8,156],[9,178],[-2,42],[14,106],[-48,1],[-157,9],[-149,8],[-65,3],[-100,5],[-24,1],[-28,2],[-33,1],[-41,3],[-30,1],[-32,1],[-40,3],[-24,2],[-24,1],[-25,1],[-24,1],[-40,3],[-33,1],[-27,2],[-1,0],[-50,3],[-23,1],[-52,2],[-56,3],[-26,2],[-35,2],[-58,3],[-34,1],[-39,2],[-46,3],[-37,2],[-52,2],[-26,2],[-49,3],[-33,2],[-33,1],[-28,2],[-31,1],[-71,4],[-88,5],[-46,3],[-38,2],[-26,1],[-41,2],[-32,2],[-94,6],[-83,4],[-50,3],[-24,1],[-24,1],[-168,7],[-66,3],[-41,4],[-89,5],[-25,2],[-14,1],[-64,2],[-43,2],[-68,3],[-31,2],[-87,4],[-165,9],[-1,0],[-31,2],[-86,4],[-45,2],[-40,2],[-39,2],[-39,2],[-30,2],[-29,1],[-43,2],[-33,2],[-30,2],[-31,1],[-33,2],[-31,1],[-31,2],[-48,2],[-37,2],[-52,3],[-44,2],[-31,1],[-23,1],[-31,1],[-29,2],[-25,1],[-26,1],[-44,2],[-91,5],[-47,2],[-28,1],[-36,2],[-36,2],[-37,1],[-36,2],[-46,2],[-26,1],[-51,3],[-30,1],[-30,2],[-28,1],[-23,1],[-252,10],[-58,3],[-37,2],[-160,7],[-178,8],[-25,1],[-143,7],[-119,5],[-87,5],[-307,13],[-287,12],[-86,3]],[[48057,47782],[2,30],[1,26],[4,58],[2,28],[2,30],[0,4],[8,121],[6,72],[3,46],[4,47],[22,306],[31,395],[5,42],[1,9],[9,135],[8,104],[12,177],[15,222]],[[30189,53574],[-19,-141],[-20,-152],[-12,-119],[-11,-119],[-25,-236],[-16,-143],[-8,-78],[-9,-95],[-7,-73],[-8,-80],[-39,-374],[-1,-8],[-11,-102],[-17,-154],[-5,-58],[-13,-130],[-14,-128],[-8,-71],[-18,-185],[-11,-107],[-3,-28],[-3,-21],[-1,-7],[-15,-140],[-7,-62],[-1,-10],[-8,-88],[-7,-71],[-15,-136],[-8,-97],[-32,-314],[-7,-60],[-18,-169],[-1,-12],[-21,-211],[-4,-33],[-12,-123],[-1,-9],[-3,-34],[-6,-67],[-30,-284],[-12,-116],[-24,-244],[-5,-61],[-3,-31],[-7,-70],[-4,-47],[-9,-98],[-5,-52],[-4,-41],[-15,-143],[-9,-87],[-3,-30],[-4,-42],[-3,-44],[-3,-27],[-2,-19],[0,-7],[-3,-27],[-7,-65],[-5,-42],[0,-3],[-10,-94],[-3,-41],[-18,-168],[-1,-10],[-9,-87],[-9,-102],[-6,-61],[-4,-33],[-10,-90],[-5,-43],[-3,-30],[-4,-53],[-14,-116],[-8,-78],[-5,-58],[-5,-57],[-7,-60]],[[29466,46568],[-56,4],[-129,10],[-5,1],[-425,33],[-37,3],[-106,8],[-249,20],[-123,10],[-31,2],[-436,34],[-82,7],[-30,-1],[-123,10],[-173,13],[-134,11],[-34,2],[-103,8],[-281,22],[-40,3],[-26,2],[-37,3],[-53,5],[-131,10],[-108,8],[-182,14],[-317,24],[-3,0],[-255,19],[-372,29],[-437,33],[-93,5],[-85,5],[-1,0],[-242,16],[-1,0],[-39,2],[-38,2],[-2,1],[-165,10],[-250,16],[4,38],[2,28],[1,10],[4,47],[3,29],[3,36],[4,42],[6,68],[3,35],[3,35],[-28,11],[-38,2],[-138,8],[-35,2],[-40,2],[-114,7],[-51,3],[-86,5],[-58,4],[-23,1],[-69,4],[-40,2],[-46,4],[-49,3],[-38,2],[-65,5],[-25,2],[-49,4],[-28,2],[-35,3],[-29,2],[-94,6],[-41,3],[-40,2],[-62,3],[-28,2],[-29,1],[-146,9],[-66,4],[-85,5],[-57,4],[-138,9],[-26,1],[-86,4],[-33,0],[-87,5],[-100,7],[-211,16],[-137,10],[-107,7],[-41,3],[-131,8],[-45,3],[-38,3],[-141,9],[-260,18],[-667,41],[-142,9],[-34,3],[-51,3],[-2,0],[-211,13],[-5,1],[-43,2],[-108,7],[-41,2],[-42,3],[-187,15],[-139,9],[-32,2],[-93,6],[-94,6],[-156,10]],[[18705,47692],[8,90],[10,127],[9,99],[0,1],[4,50],[8,78],[9,95],[1,6],[11,113],[4,35],[5,57],[5,47],[4,40],[2,26],[4,39],[14,150],[3,34],[7,39],[68,-22],[21,-35],[14,-22],[46,-40],[0,7],[-2,53],[-1,61],[-1,153],[-1,140],[-1,86],[0,109],[-2,360],[0,5],[-2,83],[-4,280],[-2,86],[-3,161],[-1,32],[-6,360],[67,8],[-1,74],[0,2],[-1,34],[-1,215],[1,157],[0,199],[0,168],[0,112],[-2,180],[0,96],[0,2],[0,51],[-1,138],[-1,184],[0,81],[0,74],[-3,237],[-1,353]],[[38322,44367],[0,-99],[0,-75],[1,-114],[0,-37],[0,-26],[0,-41],[-1,-36],[-2,-36],[-6,-52],[-10,-90],[-3,-28],[3,-56],[2,-34],[12,-48],[-1,-125],[-46,-24],[-36,2],[-58,3],[-41,-1],[-4,0],[-53,1],[-26,1],[-90,2],[-114,3],[-24,1],[-1,0],[-71,1],[-39,2],[-235,5]],[[37479,43466],[-85,2],[-96,2],[-8,0],[-27,1],[-150,1],[-116,2],[-154,3],[-55,1],[-43,0],[-50,1],[-122,3],[-120,2],[-110,3],[-52,2],[-7,0],[-37,1],[-79,1],[-25,2],[-26,0],[-30,1],[-28,1],[-1,0],[-26,1],[-43,1],[-26,0],[-6,0],[-28,1],[-26,1],[-34,1],[-38,2],[-24,1],[-26,1],[-43,0],[-87,1],[-53,1],[-49,0],[-52,1],[-105,2],[-92,1],[-160,2],[-41,1],[-37,0],[-153,2],[-122,2],[-155,1],[-239,3],[-39,1],[-101,0],[-28,1],[-25,0],[-72,0],[-205,2],[-129,0],[-86,3],[-67,1],[-78,1],[-78,0],[-93,1],[-76,1],[-150,2],[-50,0],[-22,1],[-34,0],[-19,0],[-177,2],[-86,1],[-137,2],[-86,1],[-132,2],[-127,1],[-238,0],[-174,1],[-44,1],[-98,1],[-237,2],[-128,2],[-86,1],[-174,2],[-102,2],[-71,1],[-27,0],[-51,1],[-24,1],[-95,0],[-69,0],[-106,2]],[[30572,43561],[15,222],[0,1],[2,42],[2,26],[5,82],[2,31],[9,129],[2,26],[18,226],[4,79],[5,79],[5,73],[0,6],[9,127],[2,26],[13,159],[6,82],[12,142],[4,49],[13,147],[7,79],[14,202],[7,107],[4,53],[1,26],[18,237],[2,38],[7,92],[0,2],[7,91],[5,55],[2,28],[3,37],[3,32],[3,39],[3,35],[-58,3],[-67,5],[-417,30],[-84,6],[-14,1],[-89,8],[-62,5],[-22,2],[-14,1],[-40,4],[-53,4],[-24,2],[-76,7],[-161,10],[-31,2],[-25,2],[-83,8]],[[36496,52042],[-1,-105],[-1,-39],[0,-1],[-2,-142],[-6,-209],[-2,-117],[-1,-28],[0,-4],[0,-34],[0,-41],[-2,-108],[-1,-41],[-5,-162],[-1,-121],[2,-263],[-1,-100],[0,-71],[-1,-52],[0,-77],[0,-28],[0,-29],[-1,-103],[0,-91],[0,-29],[0,-36],[0,-41],[1,-100],[-1,-29],[1,-123],[-1,-79],[0,-178],[1,-74],[0,-15],[1,-312],[1,-77],[1,-32],[0,-180],[-5,-98],[6,-115],[0,-71],[0,-53],[0,-153],[0,-45],[1,-193],[2,-126],[0,-47],[0,-4],[2,-156],[1,-74],[0,-100],[-6,-67],[1,-14],[6,-130],[2,-40],[2,-43],[4,-80],[1,-56],[2,-30],[2,-60],[2,-63],[42,0],[120,1],[54,0],[84,-1],[36,0],[15,0],[118,0],[30,0],[245,0],[37,0],[206,-1],[135,-1],[25,1],[30,0],[24,0],[103,-1],[34,0],[119,-1],[45,0],[147,-2],[60,0],[58,0],[2,-202],[0,-32],[4,-164],[1,-29],[2,-61],[2,-68],[0,-4],[1,-83],[2,-67],[2,-50],[2,-120],[2,-71],[1,-81],[1,-30],[3,-116],[1,-39],[0,-28],[3,-58],[1,-67],[2,-69],[0,-39],[1,-55],[1,-36],[3,-77],[0,-30],[0,-52],[5,-193],[1,-40],[2,-60],[2,-125],[0,-35],[0,-32],[1,-29],[3,-66],[1,-28],[1,-29],[0,-27],[0,-38],[1,-37],[0,-62],[1,-52]],[[18705,47692],[-4,-53],[-16,-190],[-15,-186],[-11,-122],[-4,-55],[-3,-30],[-4,-50],[-5,-61],[-5,-51],[-16,-195],[-10,-112],[-4,-49],[-6,-94],[-1,-4],[-15,-159],[-11,-153],[-4,-26],[-4,-48],[-3,-53],[-6,-83],[-5,-54],[-2,-30],[-4,-55],[-6,-371],[-25,1]],[[18516,45409],[-156,11],[-65,4],[-55,3],[-111,7],[-56,2],[-37,3],[-122,6],[-85,5],[-51,3],[-117,7],[-29,1],[-2,0],[-132,7],[-111,6],[-67,4],[-120,7],[-194,14],[-245,18],[-64,5],[-32,2],[-24,2],[-103,8],[-48,3],[-42,3],[-1,0],[-132,10],[-43,3],[-116,7],[-59,4],[-45,2],[-173,11],[-151,10],[-69,4],[-117,8],[-51,4],[-62,4],[-68,4],[-143,9],[-43,3],[-92,5],[-28,2],[-114,8],[-71,7],[-51,5],[-35,2],[-86,6],[-46,3],[-57,4],[-34,2],[-28,2],[-55,3],[-100,5],[-38,3],[-47,2],[-15,1],[-50,3],[-18,2],[-59,4],[-31,2],[-25,1],[-104,7],[-25,1],[4,46],[1,12],[0,58],[-344,-9],[-55,-2],[-31,1],[-6,0],[-104,-5],[-55,-3],[-36,-2],[-60,-3],[-36,-1],[-24,-1],[-101,-3],[-85,-2],[-23,-1],[-240,-4],[-54,-1],[-57,-1],[-110,-1],[-140,-2],[-2,0],[-72,-1],[-33,0],[-47,-1],[-32,0],[-49,0],[-67,-1],[-28,0],[-46,-1],[-145,-1],[-60,-1],[-87,-1],[-74,-1],[-65,-1],[-35,-1],[-122,-2],[-166,-1],[-106,-2],[-62,-1],[-45,-1],[-72,-2],[-104,-1],[-66,-1],[-43,-1],[-51,0],[-30,-1],[-43,0],[-25,0],[-39,-1],[-51,-1],[-33,0],[-130,-3],[-50,0],[-91,0],[-47,0],[-27,-1],[-30,0],[-80,2],[-167,6],[-43,0],[-147,-1],[-38,-2],[-51,-1],[-43,-1],[-27,-1],[-45,-2],[-49,-2],[-150,-1],[-71,-1],[-31,-1],[-28,0],[-99,-1],[-63,-1]],[[9003,45743],[1,237],[-3,137],[-3,99],[-4,78],[-10,199],[-4,134],[0,4],[0,43],[-2,104],[0,86],[-2,99],[-1,121],[-5,145],[-1,151],[1,15],[0,22],[1,191],[-1,188],[-4,186],[0,101],[1,84],[-3,90],[3,97],[0,155],[2,29],[-1,188],[-4,93],[-4,100],[-2,95],[-2,69],[2,48],[0,78],[-1,91],[-1,72],[0,2],[0,52],[0,13],[0,139],[-1,175]],[[74251,46362],[-148,4],[-49,1],[-120,3],[-171,5],[-185,6],[-34,1],[-81,1],[-217,8],[-37,1],[-1,-204],[0,-41],[0,-45],[-2,-79],[-4,-82],[-8,-158],[-14,-221],[-7,-134],[-2,-23],[-1,-22],[-2,-51],[-5,-97],[-6,-144],[-3,-46],[-7,-156],[-2,-31],[-1,-35],[-4,-70],[-3,-62],[-2,-37],[-1,-27],[-4,-59],[-50,1],[-116,4],[-42,2],[-47,1],[-24,1],[-43,1],[-34,1],[-68,2],[-41,2],[-189,4],[-145,4],[-138,5],[-69,2],[-46,1]],[[72078,44599],[-132,20],[-55,1],[-26,0],[-39,1],[-43,0],[-4,0],[-132,2],[-35,1],[-115,3],[-36,1],[-162,5],[-99,3],[-175,5],[-192,5],[-24,0],[-83,3],[-46,1],[-42,1],[-203,7],[-3,0],[-37,1],[-106,4],[-42,1],[-26,1],[-41,-1],[-15,0],[-39,5],[-66,2],[-25,1],[-54,2],[-26,1],[-42,1],[-67,2],[-66,3],[-13,0],[-26,1],[-120,4],[-38,1],[-51,2],[-103,2],[-109,5],[-272,8],[-59,2],[-14,1],[-9,0],[-26,1],[-151,2],[-162,7],[-119,4],[-57,3],[-74,2],[-2,0],[-117,3],[-154,5],[-48,1],[-102,3],[-157,3],[-1,0],[-52,2],[-24,1],[-27,1],[-26,0],[-49,1],[-10,1],[-16,0],[-45,1],[-118,3],[-93,3],[-25,1],[-112,3],[-28,0],[-31,1],[-99,2],[-15,1],[-78,2],[-34,1],[-31,1],[-21,1],[-22,1],[-88,2],[-46,1],[-68,2],[-37,0],[-67,2],[-115,4],[-143,3],[-84,3],[-28,1],[-175,5],[-137,3],[-114,4],[-45,0],[-64,1],[-91,3],[-58,3],[-39,1],[-24,1],[-235,6],[-67,1],[-215,7],[-7,1],[-82,1],[-26,1],[-2,0],[-428,8],[-210,3],[-166,2],[-372,4],[-144,2],[-43,10],[-25,1],[-31,1],[-34,9],[-76,5],[-27,1],[-26,1],[-37,2],[-40,1],[-26,0],[-48,2],[-32,1],[-49,2],[-135,7],[-41,2],[-203,11],[-64,4],[-3,0],[-58,3],[-102,6],[-91,5],[-271,12],[-117,7],[-101,5],[-25,1],[-217,9],[-33,2],[-157,9],[-207,12]],[[61144,44974],[13,294],[2,43],[2,47],[-7,28],[12,177],[25,358],[2,28],[3,41],[1,16],[1,27],[3,49],[0,1],[5,91],[14,250],[4,34],[2,23],[2,41],[8,137],[8,145],[-303,11]],[[48057,47782],[-3,-31],[-2,-38],[-2,-33],[-2,-30],[-3,-33],[-2,-32],[-2,-33],[-3,-38],[-3,-37],[-4,-48],[-5,-72],[-3,-37],[-2,-26],[-3,-42],[-1,-31],[-2,-27],[-3,-33],[-3,-46],[-2,-26],[-2,-26],[-1,-27],[-3,-39],[-4,-45],[-3,-27],[-1,-27],[-3,-44],[-2,-29],[-2,-32],[-2,-34],[-1,-30],[-2,-47],[-1,-33],[-2,-36],[-3,-36],[-3,-40],[-1,-3],[-1,-40],[-3,-26],[-4,-40],[-1,-26],[-2,-37],[-2,-30],[-2,-29],[-4,-45],[-3,-35],[-1,-27],[-2,-37],[-2,-31],[-2,-41],[-2,-30],[-2,-40],[-2,-28],[-3,-46],[-2,-31],[-2,-31],[-3,-47],[-2,-25],[-1,-28],[-3,-40],[-2,-28],[-2,-32],[-2,-27],[-3,-47],[-3,-34],[-2,-27],[0,-6],[-2,-27],[-2,-38],[-2,-28],[-2,-33],[-1,-28],[-2,-30],[-2,-37],[-4,-54],[-3,-45],[-2,-29],[-1,-28],[-2,-30],[-3,-43],[-2,-35],[-3,-42],[-3,-49],[-2,-38],[-2,-31],[-2,-34],[-4,-48],[-3,-46],[-3,-50],[-2,-28],[-3,-38],[-3,-40],[-2,-34],[-3,-36],[-3,-45],[-2,-32],[-2,-32],[-3,-46],[-2,-12],[-1,-19],[-3,-39],[-2,-32],[-2,-34],[-1,-27],[-2,-39],[-3,-40],[-2,-26],[-2,-26],[-3,-40],[-2,-34],[-2,-28],[-2,-34],[-3,-31]],[[47799,43928],[-180,11],[-237,11],[-29,1],[-32,2],[-98,4],[-53,2],[-24,1],[-25,1],[-62,3],[-41,1],[-27,2],[-37,1],[-79,3],[-23,1],[-31,2],[-55,2],[-31,2],[-40,2],[-16,2],[-10,1],[-130,5],[-128,5],[-287,13],[-36,2],[-204,10],[-85,4],[-24,1],[-29,2],[-26,1],[-55,2],[-90,5],[-25,1],[-134,7],[-71,3],[-54,3],[-62,4],[-27,1],[-42,2],[-24,2],[-37,2],[-21,1],[-23,1],[-42,2],[-33,2],[-30,2],[-11,0],[-25,2],[-40,2],[-37,2],[-24,1],[-59,3],[-30,2],[-39,2],[-24,1],[-70,4],[-66,3],[-36,2],[-24,1],[-32,2],[-64,2],[-34,2],[-44,2],[-30,2],[-25,1],[-25,1],[-31,1],[-39,2],[-28,1],[-28,1],[-45,2],[-48,3],[-24,1],[-48,2],[-26,1],[-29,1],[-22,1],[-7,1],[-71,3],[-37,2],[-67,3],[-174,7],[-68,3],[-14,0],[-43,0],[-80,6],[-23,0],[-38,2],[-267,13],[-25,1],[-3,0],[-73,3],[-73,3],[-66,3],[-25,1],[-28,1],[-45,2],[-29,2],[-35,1],[-93,4],[-28,1],[-30,2],[-25,1],[-25,1],[-36,2],[-37,2],[-48,2],[-23,1],[-42,2],[-14,1],[-19,1],[-31,1],[-29,1],[-28,1],[-26,0],[-25,2],[-37,1],[-32,2],[-30,1],[-20,0],[-14,1],[-274,10],[-39,3],[-14,1],[-129,3],[-8,0],[-56,2],[-35,2],[-369,12],[-47,1],[-27,2],[-82,3],[-12,0],[-39,2],[-30,1],[-26,1],[-77,3],[-59,2],[-42,2],[-31,1],[-65,3],[-215,8],[-184,7],[-132,5],[-50,2],[-102,3],[-204,7],[-33,2],[-42,2],[-134,8],[-30,1],[-24,2],[-35,3],[-33,1],[-35,1],[-44,0],[-32,6],[-83,5],[-70,4],[-109,1],[-56,11],[-38,3],[-82,3],[-28,0],[-91,3],[-30,3],[-161,16]],[[91430,44786],[-73,3],[-24,1],[-33,1],[-93,4],[-90,3],[-65,3],[-185,7],[-28,1],[-38,1],[-46,2],[-30,1],[-90,3],[-42,1],[-66,4],[-66,3],[-176,9],[-138,5],[-89,4],[-87,3],[-30,1],[-184,6],[-113,4],[-50,2],[-157,5],[-27,1],[-107,3],[-61,2],[-49,10],[-37,10],[-2,1],[-23,-14],[-53,2],[-155,5],[-29,1],[-65,3],[-44,1],[-71,2],[-176,6],[-26,0],[-25,1],[-5,0],[-103,5],[-47,2],[-27,1],[-25,0],[-36,2],[-55,2],[-30,2],[-273,12],[-185,8],[-184,7],[-30,3],[-229,10],[-64,2],[-173,8],[-51,3],[-101,3],[-54,2],[-75,4],[-64,2],[-49,2],[-30,1],[-67,3],[-32,2],[-170,7],[-82,4],[-53,3],[-33,1],[-52,3],[3,81],[-299,1],[-108,-2],[-46,0],[-36,0],[-36,-1],[-3,0],[-28,1],[-98,-1],[-67,2],[-107,3],[-78,1],[-37,1],[-24,0],[-8,0],[-36,1],[-36,1],[-80,2],[-33,1],[-24,1],[-58,1],[-51,1],[-24,0],[-30,1],[-17,0],[-97,1],[-43,2],[-103,1],[-88,2],[-58,1],[-45,1],[-74,2],[-59,1],[-160,3],[-51,1],[-90,2],[-7,0],[-122,3],[-6,0],[-35,1],[-76,2],[-29,1],[-11,0],[-80,1],[-46,1],[-3,-66]],[[83464,45056],[-92,0],[-137,3],[-155,3],[-30,1],[-32,1],[-109,3],[-152,2],[-208,5],[-207,4],[-7,1],[-30,0],[-28,1],[-155,3],[-153,4],[-63,1],[-125,1],[-94,1],[-117,2],[-142,1],[-87,2],[-25,0],[-182,3],[-217,4],[-51,2],[-40,1],[3,70],[1,59],[8,277],[8,261],[3,80],[1,40],[5,134],[6,156]],[[9003,45743],[-3,-110],[0,-40],[-2,-64],[-82,-200],[45,1],[49,0],[10,-352],[0,-13],[5,-169],[0,-1],[1,-47],[2,-80],[1,-22],[0,-8],[-1,-29],[0,-27],[0,-32],[1,-27],[1,-30],[3,-40],[0,-18],[1,-11],[1,-43],[0,-33],[1,-29],[1,-28],[0,-26],[1,-35],[1,-37],[0,-2],[1,-36],[0,-30],[1,-17],[0,-16],[1,-39],[0,-34],[1,-27],[1,-38],[0,-13],[1,-46],[1,-27],[1,-31],[0,-4],[1,-28],[1,-30],[0,-31],[1,-31],[1,-29],[1,-38],[1,-27],[1,-29],[1,-31],[1,-33],[1,-32],[1,-33],[1,-22],[0,-6],[0,-5],[0,-21],[1,-31],[1,-38],[0,-5],[1,-27],[1,-34],[1,-50],[1,-27],[1,-42],[1,-30],[0,-10],[0,-41],[1,-26],[0,-4],[0,-3],[1,-73],[0,-36],[1,-34],[0,-29],[1,-28],[0,-26],[0,-26],[1,-44],[0,-31],[1,-40],[1,-46],[0,-56],[1,-2],[6,-167],[0,-18],[7,-182],[1,-86],[2,-102],[-1,-89],[1,-161],[1,-119],[3,-83],[-2,-291],[0,-27],[0,-29],[1,-31],[1,-36],[1,-31],[1,-32],[1,-32],[1,-32],[1,-26],[0,-2],[-2,-95],[0,-28],[18,-17],[0,-40],[0,-32],[1,-30],[2,-27],[0,-5],[0,-27],[1,-42],[0,-45],[0,-44],[0,-33],[0,-26],[0,-28],[0,-27],[1,-30],[0,-28],[1,-28],[0,-28],[0,-30],[1,-26],[1,-33],[0,-27],[0,-34],[1,-30],[16,-175],[2,-16],[4,-177],[3,-370],[-8,-62],[2,-99],[5,-208],[1,-34],[2,-152],[1,-6],[-7,-186]],[[9146,38667],[-72,-1],[-46,-1],[-25,0],[-25,-1],[-25,0],[-25,-1],[-25,0],[-24,-1],[-25,0],[-46,-2],[-46,0],[-37,-1],[-26,-1],[-23,0],[-31,0],[-37,-1],[-26,-1],[-30,0],[-27,-1],[-27,0],[-27,-1],[-27,-1],[-27,-1],[-27,0],[-31,-1],[-35,-1],[-25,0],[-31,-1],[-31,0],[-33,-1],[-38,-1],[-40,-1],[-40,-1],[-42,-1],[-40,-1],[-24,0],[-23,-1],[-24,0],[-23,-1],[-47,-1],[-30,0],[-28,-1],[-28,0]],[[7777,38639],[-56,-1],[-43,-1],[-28,-1],[-36,-1],[-42,0],[-35,-1],[-61,-1],[-45,-1],[-27,0],[-31,-1],[-32,-1],[-31,0],[-50,-1],[-36,0],[-37,-1],[-35,-1],[-39,0],[-39,-1],[-24,-1],[-24,0],[-24,-1],[-23,0],[-24,0],[-24,0],[-24,-1],[-24,0],[-27,0],[-29,-1],[-41,-1],[-34,0],[-39,-1],[-24,0],[-36,0],[-36,-1],[-36,0],[-37,-1],[-36,-1],[-53,-1],[-26,0],[-1,0],[-31,0],[-24,0],[-43,-1],[-45,-1],[-38,-1],[-58,-1],[-36,-1],[-39,0],[-68,-2],[-25,0],[-34,0],[-49,-1],[-46,0],[-23,0],[-24,-1],[-24,0],[-29,0],[-31,-1],[-49,-1],[-28,0],[-25,0],[-45,0],[-28,-1],[-30,0],[-353,-10],[-307,3],[-38,-3],[-53,-3],[-40,-1],[-218,-2],[-37,1],[-2,0],[-104,1],[-385,0],[-123,2],[-205,1],[-246,-2],[-38,0],[-232,1],[-165,1],[-18,0],[-198,-4],[-121,0],[-29,0],[-39,0],[-27,0],[-27,0],[-33,0],[-48,0],[-151,0],[-76,2],[-222,4],[-388,0],[-88,0],[-81,0],[-93,1],[-107,0],[-33,0],[-3,0],[-41,0],[-25,0],[-207,1],[-55,0],[-23,0],[-154,0],[-392,0],[-42,2],[-106,0]],[[183,38599],[0,67],[-1,62],[0,4],[1,14],[1,39],[0,9],[0,11],[0,14],[1,11],[0,13],[0,12],[4,124],[0,52],[4,265],[5,338],[0,31],[0,5],[1,85],[1,36],[1,65],[0,41],[1,64],[1,60],[0,28],[4,276],[1,30],[0,66],[1,38],[1,75],[1,68],[4,80],[2,36],[0,1],[3,128],[0,8],[1,37],[1,43],[2,92],[1,54],[3,101],[0,32],[1,15],[1,84],[7,281],[1,62],[1,54],[0,1],[6,252],[0,2],[4,167],[1,49],[2,66],[1,99],[6,368],[1,0],[0,45],[2,145],[2,177],[2,115],[9,254],[0,2],[1,77],[3,134],[2,60],[1,34],[0,10],[2,61],[1,47],[0,32],[1,32],[0,19],[0,10],[2,41],[1,53],[1,21],[1,39],[0,39],[1,40],[1,35],[1,54],[1,21],[1,47],[1,38],[1,58],[2,66],[1,36],[2,52],[0,34],[3,113],[2,72],[1,34],[3,104],[1,58],[1,62],[0,2],[1,11],[1,65],[1,21],[0,6],[2,55],[1,46],[1,40],[1,33],[1,63],[3,85],[0,33],[1,27],[1,26],[1,27],[0,9],[1,27],[0,12],[1,34],[0,9],[1,15],[0,19],[0,7],[0,15],[0,9],[1,46],[1,12],[0,6],[0,21],[0,9],[0,10],[0,5],[0,18],[1,53],[1,26],[2,44],[0,19],[0,4],[0,10],[1,40],[0,2],[0,4],[1,52],[1,33],[0,16],[1,12],[0,25],[0,4],[1,31],[2,68],[0,27],[1,41],[1,16],[0,10],[2,53],[1,37],[1,35],[1,30],[0,29],[2,75],[1,36],[1,19],[0,16],[0,2],[1,30],[1,55],[0,11],[1,33],[1,92],[2,62],[0,14],[0,17],[1,11],[0,3],[0,15],[0,39],[1,17],[0,17],[1,56],[2,101],[0,39],[0,27],[1,43],[0,23],[1,39],[0,7],[1,37],[2,61],[3,95],[1,86],[1,79],[0,20],[1,47],[1,50],[1,94],[1,66],[0,3],[0,4],[1,67],[0,28],[1,74],[1,50],[0,43],[1,34],[0,116],[0,23],[0,22],[1,25],[0,34],[0,41],[0,9],[1,25],[0,48],[0,20],[0,27],[0,48],[0,35],[0,48],[0,41],[0,74],[0,14],[-1,18],[0,27],[0,37],[-1,11],[0,32],[0,28],[0,3],[0,23],[-1,34],[0,10],[0,6],[1,11],[-1,20],[0,26],[0,30],[-1,36],[-1,54],[0,26],[-1,52],[0,49],[0,66]],[[61144,44974],[1,-37],[0,-15],[-3,-28],[-2,-27],[-1,-34],[-1,-33],[-5,-80],[-1,-29],[-12,-251],[-2,-48],[-9,-178],[-5,-115],[-2,-32],[-6,-159],[-3,-72],[0,-1],[-8,-154],[-1,-28],[-3,-72],[-7,-145],[-6,-145],[-7,-142],[-1,-33],[-1,-1],[-3,-69],[-1,-10],[-3,-64],[-7,-123],[-2,-31],[-3,-58],[-5,-56],[-1,-28],[-2,-28],[0,-41],[-1,-7],[0,-34],[-9,-174],[-2,-61],[-1,-3],[-4,-92],[-5,-93],[-1,-26],[-1,-7],[-2,-40],[-11,-224],[-5,-120],[-1,-42],[-1,-26],[-2,-48],[-13,-206],[-5,-118],[-1,-40],[-4,-106],[-2,-61],[-1,-41],[-1,-55],[-5,-113],[-10,-150],[-1,-2],[-4,-41],[-1,-4],[-6,-146],[-7,-149],[-4,-77],[-3,-61],[-7,-145],[-1,-39],[-3,-34],[-2,-26],[-4,-26],[0,-27],[-2,-27],[-1,-28],[0,-28],[-2,-29],[-3,-32],[-2,-29],[-1,-29],[-3,-26],[0,-27],[-2,-27],[-1,-26],[-2,-37],[-2,-19],[-2,-17],[6,-25],[-6,-30],[-2,-17],[-1,-10],[-1,-32],[-83,4],[-17,0],[-64,2],[-24,3],[-42,0],[-77,4],[-35,0],[-29,1],[-12,0],[-24,-1],[-34,6],[-32,-1],[-38,1],[-27,1],[-50,1],[-30,0],[-73,1],[-73,0],[-1,-19],[-1,-43],[1,-17],[1,-10],[-2,-29],[-4,-63],[-3,-40],[-1,-11],[-4,-55],[-1,-11],[-2,-20],[-28,-478],[-3,-30],[-1,-39],[-4,-99]],[[60057,38506],[-170,8],[-54,3],[-98,4],[-47,2],[-81,4],[-1,0],[-46,2],[-126,8],[-66,3],[-56,2],[-184,8],[-29,2],[-284,13],[-47,3],[-3,0],[-84,5],[-41,2],[-153,7],[-25,0],[-32,1],[-27,1],[-26,3],[-24,1],[-223,7],[-47,3],[-152,8],[-33,3],[-236,18],[-24,1],[-88,6],[-39,2],[-125,8],[-23,1],[-30,2],[-51,3],[-59,4],[-36,2],[-34,2],[-69,4],[-73,5],[-46,2],[-36,2],[-27,2],[-52,3],[-25,2],[-38,2],[-47,2],[-45,3],[-55,3],[-61,3],[-40,3],[-46,2],[-27,2],[-24,1],[-37,3],[-55,3],[-26,2],[-46,3],[-44,2],[-31,2],[-30,2],[-48,4],[-27,1],[-36,2],[-33,2],[-34,3],[-3,0],[-90,5],[-4,0],[-96,5],[-34,2],[3,37],[8,103],[-246,10],[-103,7],[-687,45]],[[54743,38942],[-162,-88],[-85,-47],[-92,5],[-48,2],[-30,2],[-32,2],[-30,1],[-73,4],[-27,2],[-11,0],[-121,7],[-97,6],[-130,7],[-40,3],[-25,1],[-1,0],[-25,1],[-24,1],[-21,1],[-2,0],[-46,3],[-41,2],[-4,0],[-1,0],[-101,5],[-22,1],[-5,1],[-48,2],[-30,1],[-46,3],[-46,2],[-9,1],[-46,2],[-101,6],[-26,1],[-92,5],[-106,5],[-7,0],[-6,1],[-20,1],[-30,2],[-280,13],[-33,1],[-86,4],[-130,7],[-33,1],[-280,13],[-188,7],[-48,2],[-223,8],[-1,0],[-190,9],[-27,1],[-112,5],[-113,5],[-221,11],[-162,8],[-65,4],[-223,13],[-89,4],[-73,4],[-66,3],[-24,1],[-36,2],[-79,5],[-72,4],[-60,3],[-28,1],[-76,4],[-65,4],[-73,3],[-6,1],[-72,4],[-80,4],[-69,4],[-51,3],[-99,5],[-220,12],[-156,10],[-63,3],[-134,9],[-30,1],[-133,8],[-7,1],[-36,2],[-105,6],[-85,5],[-43,3],[-38,2],[-46,3],[-92,6],[-36,2],[-99,5],[-175,10],[-70,4],[-27,1],[-48,3],[-17,1],[-72,5],[-27,1],[-29,2],[-23,1],[-53,3],[-49,3],[-28,1],[-40,-1]],[[47320,39179],[4,45],[4,48],[3,37],[3,29],[1,28],[2,57],[0,26],[6,28],[0,26],[3,53],[2,30],[7,54],[3,61],[4,56],[4,52],[2,27],[3,30],[2,26],[9,112],[2,35],[3,30],[3,44],[131,-4],[3,38],[6,76],[4,32],[2,26],[4,32],[6,63],[2,22],[5,96],[3,44],[8,106],[2,29],[0,1],[2,44],[0,3],[5,67],[4,37],[1,33],[5,42],[1,26],[4,47],[4,67],[8,117],[4,26],[3,27],[4,64],[2,27],[3,42],[5,57],[4,59],[4,48],[3,37],[4,43],[3,40],[3,33],[2,30],[3,42],[2,38],[2,26],[2,33],[3,40],[2,29],[10,121],[7,284],[2,44],[3,43],[3,64],[5,80],[15,201],[1,12],[12,170],[3,44],[16,199],[19,42],[7,272],[9,100],[0,3],[10,110],[10,107],[1,4],[5,72],[1,26],[2,32]],[[30572,43561],[-14,-138],[-8,-96],[-33,-370],[-2,-22],[-48,-425],[-12,-94],[-19,-155],[-28,-181],[-13,-157],[-10,-90],[-1,-5],[-4,-35],[-18,-150],[-1,-11],[-48,-415],[-30,-239]],[[30283,40978],[-371,34],[-66,3],[-39,1],[-27,1],[-563,22],[-131,7],[-347,20],[-2,0],[-202,13],[-294,16],[-126,7],[-218,13],[-211,12],[-101,5],[-5,1],[-69,7],[-25,2],[-449,34],[-37,3],[-49,4],[-49,4],[-36,4],[-30,4],[-192,10],[-10,1],[-22,3],[-196,6],[-53,4],[-29,1],[-33,2],[-41,3],[-12,1],[-11,1],[-38,3],[-28,2],[-58,4],[-59,5],[-46,3],[-36,2],[-64,5],[-67,5],[-40,2],[-26,2],[-52,4],[-130,8],[-26,2],[-174,12],[-25,2],[-30,2],[-38,3],[-60,4],[-60,3],[-108,7],[-48,3],[-39,3],[-43,2],[-60,4],[-106,8],[-67,4],[-93,7],[-58,4],[-42,3],[-41,2],[-25,2],[-85,5],[-154,13],[-50,4],[-59,5],[-24,1],[-59,5],[-29,3],[-31,2],[-25,2],[-27,1],[-37,3],[-51,3],[-55,3],[-37,3],[-16,1],[-42,3],[-46,3],[-10,0],[-25,2],[-30,2],[-34,2],[-31,2],[-42,3],[-156,9],[-25,2],[-69,4],[-1,0],[-28,2],[-42,3],[-31,2],[-27,1],[-52,3],[-41,2],[-43,1],[-35,4],[-710,42],[-79,3],[-350,16],[-234,13],[-45,3],[-1,0],[-25,3],[-66,4],[-250,16],[-91,12],[-25,3],[-143,19],[-437,22],[-36,4],[-64,7],[-5,0],[-586,38],[-41,2],[-172,14],[-26,2],[-106,7],[-57,4],[-221,11],[-3,0],[-42,-2],[-37,-2],[-1,0],[-29,2],[-406,20],[-65,5],[-132,8],[-4,0],[-64,5],[-76,5],[-62,4]],[[18210,41743],[31,397],[1,0],[13,149],[2,17],[8,93],[2,20],[39,494],[9,111],[40,536],[7,94],[23,274],[4,51],[9,108],[16,91],[1,116],[1,2],[27,286],[5,84],[37,335],[11,134],[20,274]],[[83276,39475],[-41,0],[-26,1],[-74,4],[-32,0],[-8,0],[-48,0],[-96,2],[-42,2],[-30,1],[-332,10],[-76,3],[-237,4],[-85,2],[-9,0],[-96,2],[-114,3],[-261,6],[-27,5],[-368,3],[-24,1],[-97,1],[-261,5],[-257,5],[-1,-64],[0,-29],[-68,1],[-137,3],[-97,2],[-29,0],[-128,3],[-136,1],[-32,4],[-29,1],[-70,1],[-58,2],[-103,0],[-2,-98],[-2,-73],[-5,-285],[-4,-100],[-3,-33],[0,-34],[0,-46],[0,-24],[-1,-31],[-13,-23],[-49,2],[-54,1],[-97,-1],[-46,4],[-98,9],[-37,1],[-31,1],[-88,2],[-9,0],[-204,7],[-95,3],[-23,1],[-75,2],[-99,4],[-31,1],[-20,0],[-31,1],[-87,3],[-550,19],[-5,0],[-23,-2],[-17,-364],[-4,-98],[-4,-122],[-6,-159],[-29,1],[-122,4],[-79,2],[-92,2],[-160,5],[-64,1],[-113,4],[-116,3],[-54,4],[-36,-1],[-217,6],[-151,5],[-115,4],[-76,2],[-111,3],[-7,0],[-154,5],[-133,4],[-96,3],[-3,0],[-50,2],[-21,1],[-9,0],[-31,1],[-76,3],[-153,5],[-260,8],[-131,4],[-1,-32],[-1,-31],[-4,-145],[-3,-127],[-3,-89],[-4,-125],[-1,-30],[0,-74],[-1,-27],[-2,-60],[-1,-37],[-1,-57],[-5,-162],[-2,-88],[-5,-136],[0,-2],[-4,-129],[-2,-91],[0,-53],[-174,5],[-30,2],[-36,0],[-26,3],[-1,6],[-136,0],[-34,0],[-120,1],[-249,9],[-91,3],[-100,4],[-62,1],[-36,1],[-139,5],[-147,4],[-237,7],[-21,1],[-166,5],[-54,1],[-56,2],[-1,0],[-307,9],[-110,3],[-49,3],[-13,1],[-75,4],[-57,3],[-78,5],[-38,2]],[[72592,36704],[0,136],[0,102],[5,55],[4,41],[9,219],[3,64],[4,141],[3,70],[4,134],[3,106],[4,160],[-2,55],[1,38],[4,30],[1,69],[3,31],[-3,56],[9,50],[3,108],[4,158],[12,425],[-190,6],[-139,4],[-33,0],[-47,2],[-185,6],[-24,0],[-17,1],[-18,1],[-97,-3],[-37,5],[-84,7],[6,115],[18,339],[8,166],[7,116],[5,78],[5,98],[10,204],[0,3],[8,161],[4,85],[6,105],[2,44],[0,11],[4,69],[1,13],[4,56],[2,33],[3,41],[1,2],[1,39],[3,27],[2,42],[1,30],[1,26],[4,90],[5,94],[4,86],[5,74],[6,149],[7,132],[1,26],[7,133],[2,55],[8,170],[2,34],[5,86],[7,141],[9,162],[1,12],[6,131],[7,153],[4,88],[1,33],[2,35],[3,54],[4,99],[3,54],[4,126],[12,243],[1,33],[4,91],[2,53],[9,187],[2,29],[4,83],[4,88],[2,43],[4,61],[7,146],[1,29],[11,182],[6,102],[2,45],[0,1],[6,82]],[[83464,45056],[0,-29],[-3,-58],[-2,-37],[-1,-65],[-1,-82],[-2,-59],[-1,-50],[-3,-76],[-2,-51],[-4,-59],[-7,-119],[4,-26],[-1,-29],[-1,-42],[-1,-18],[-4,-87],[-3,-83],[-2,-33],[-3,-60],[-4,-85],[-1,-70],[-3,-100],[-3,-124],[-5,-124],[-2,-58],[-1,-40],[-6,-132],[-1,-64],[-6,-180],[-3,-99],[-1,-32],[-2,-63],[-3,-65],[-3,-125],[-2,-52],[-5,-140],[-3,-110],[-1,-51],[-2,-63],[-1,-43],[-2,-36],[0,-8],[-1,-18],[-2,-60],[-6,-258],[-3,-68],[-4,-64],[-2,-64],[-2,-65],[-4,-95],[-2,-42],[-3,-68],[-1,-48],[-11,-292],[-4,-91],[-1,-57],[-2,-24],[0,-10],[-5,-71],[0,-16],[-1,-14],[1,-137],[-6,-124],[-11,-255],[-2,-86],[-5,-105],[-2,-64],[-2,-47],[-10,-354],[0,-15],[0,-13],[0,-29]],[[18210,41743],[-12,-153],[-3,-31],[-4,-47],[-12,-134],[-2,-28],[-6,-80],[-4,-45],[-4,-45],[1,-42],[-5,-44],[-21,-156],[0,-12],[-7,-110],[-8,-98],[-17,-215],[-16,-225],[-2,-36],[-13,-109],[-6,-47],[-15,-170],[-3,-42],[-25,-341],[-1,-27],[-5,-62],[-2,-34],[-6,-44],[-3,-39],[-26,-162],[-2,-20],[-1,-6],[-3,-61],[0,-2],[-28,-294],[-10,-143],[-13,-256],[-1,-7],[-21,-262],[-43,-258],[1,-79],[2,-61],[-1,-64]],[[17863,37652],[-92,1],[-33,1],[-83,6],[-144,9],[-743,53],[-1,0],[-163,4],[-99,6],[-203,14],[-43,3],[-44,3],[-68,4],[-147,9],[-35,3],[-79,5],[-2,1],[-50,2],[-169,10],[-139,9],[-65,5],[-4,1],[-60,0],[0,2],[1,3],[-2,7],[-12,47],[-31,44],[-25,37],[-11,16],[-39,37],[-8,16],[-17,36],[5,68],[-18,85],[-32,119],[-18,67],[-4,41],[-7,64],[0,2],[4,4],[21,19],[15,26],[44,80],[74,88],[5,2],[10,8],[32,40],[-31,-6],[-29,-7],[-25,-3],[-84,3],[-45,2],[-46,4],[-3,0],[-127,0],[-324,-3],[-3,0],[-233,-2],[-58,-1],[-32,0],[-28,-1],[-25,0],[-314,-5],[-205,-1],[-122,-2],[-119,-2],[-26,0],[-31,0],[-23,-1],[-95,-1],[-28,0],[-45,-1],[-43,-1],[-151,-3],[-211,-3],[-90,-1],[-130,-2],[-67,-5],[-26,0],[-160,0],[-179,-2],[-75,-1],[-36,-1],[-68,-1],[-10,0],[-182,0],[-30,-1],[-3,0],[-51,-2],[-43,3],[-38,3],[-129,-8],[-74,-1],[-54,0],[-98,-2],[-54,-1],[-27,-1],[-32,0],[-102,-2],[-24,-1],[-35,0],[-36,-1],[-53,-1],[-66,0],[-49,-1],[-62,-1],[-38,-1],[-31,0],[-26,0],[-47,-1],[-31,0],[-24,0],[-127,-3],[-61,-1],[-101,-1],[-71,-1],[-32,-1],[-41,-1],[-35,0],[-97,-2],[-57,-1],[-53,-1],[-109,-2],[-156,-3],[-45,-1],[-90,-1],[-142,-3],[-1,0],[-114,-2],[-120,-2]],[[95609,44727],[16,-139],[-14,-39],[-25,-49],[-26,-135],[-15,-32],[-18,-95],[22,-37],[0,-42],[-9,-47],[-23,-28],[-34,-47],[4,-61],[16,-71],[13,-67],[7,-39],[32,-133],[1,-23],[12,-112],[-34,-172],[-35,-92],[-33,-41],[-65,-57],[-271,-168],[-122,-42],[-95,-61],[-44,-69],[-68,-77],[-35,-79],[-1,-2],[0,-1],[2,-82],[11,-53],[6,-28],[2,-34],[37,-1],[25,-64],[23,-29],[9,-19],[45,-101],[43,-107],[11,-168],[1,-24],[17,-44],[10,-95],[-34,-199],[-85,-49],[52,-53],[-20,-61],[-70,-125],[-49,-250],[-15,-86],[-16,-85],[-67,-97],[2,-34],[82,-64],[4,-23],[30,-166],[11,-262],[-15,-80],[-22,-107],[-44,-102],[-4,-7],[-5,-12],[-11,-17],[-107,-90],[-1,-1],[-218,-130],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-3,-2],[-2,-2],[-1,-1],[-4,-3],[-1,-1],[-2,-2],[-3,-3],[-1,-2],[-2,-1],[-2,-3],[-2,-2],[-1,-2],[-3,-3],[-1,-2],[-1,-2],[-3,-4],[-1,-1],[-1,-2],[-2,-4],[-1,-2],[-38,-72],[-51,-132],[0,-1],[-5,-16],[0,-3],[-1,-3],[-4,-21],[0,-2],[-1,-4],[-2,-19],[-1,-3],[-4,-68],[0,-1],[0,-1],[-2,-39],[0,-3],[0,-4],[3,-45],[0,-1],[0,-4],[1,-5],[1,-4],[22,-85],[1,-3],[0,-1],[1,-2],[1,-3],[12,-35],[8,-34],[10,-46],[0,-2],[1,-4],[2,-5],[1,-4],[1,0],[33,-70],[10,-21],[1,-2],[2,-4],[3,-4],[25,-36],[13,-40],[38,-144],[8,-126],[-5,-47],[-22,-57],[-3,-5],[-6,-4],[-83,-46],[-44,-15],[-4,0],[-50,0],[-116,24],[-46,15],[-293,160],[0,1],[-2,1],[-4,2],[-2,1],[-2,0],[-3,2],[-2,1],[-2,0],[-4,2],[-2,0],[-2,1],[-4,1],[-2,0],[-47,11],[-114,24],[-4,0],[-3,1],[-13,1],[-1,0],[-4,0],[-31,0],[-1,0],[-4,0],[-4,0],[-17,-3],[-43,2],[-28,-3],[-28,-4],[-25,-5],[-70,-19],[-27,-10],[-14,-7],[-6,-4],[-9,-9],[-7,-9],[-6,-9],[-16,-27],[-4,-7],[-11,-26],[-8,-26],[-13,-45],[-5,-15],[-1,-3],[-1,-5],[0,-3],[-3,-21],[0,-2],[-1,-4],[-1,-21],[0,-1],[0,-4],[0,-5],[0,-2],[2,-16],[0,-3],[0,-4],[4,-19],[1,-4],[0,-1],[9,-36],[1,-3],[2,-5],[17,-44],[1,-3],[12,-27],[2,-4],[0,-1],[33,-60],[2,-3],[1,-3],[27,-40],[1,-1],[3,-3],[0,-1],[12,-15],[1,0],[47,-56],[1,-1],[1,-1],[27,-29],[2,-2],[9,-9],[9,-11],[114,-131],[87,-159],[28,-107],[-12,-124],[-8,-21],[-19,-36],[-29,-33],[-91,-106],[-4,-4],[-34,-21],[-112,-68],[-8,-4],[-66,-29],[-46,-20],[-74,-33],[-1,0],[-1,-1],[-3,-1],[-1,-1],[-28,-14],[-1,-1],[-1,0],[0,-1],[-1,0],[-76,-20],[-93,-56],[-65,-39],[-25,-29]],[[92829,36860],[-36,22],[-20,12],[-55,1],[-55,2],[-35,0],[-24,1],[-133,4],[-297,11],[-42,1],[-138,6],[-35,2],[-24,0],[-72,2],[-52,2],[-196,7],[-175,9],[-155,8],[-49,-1],[-57,5],[-57,4],[-59,3],[-133,7],[-41,2],[-205,12],[-54,3],[-39,2],[-62,3],[-385,21],[-369,20],[-37,3],[-35,1],[-41,3],[-46,2],[-27,2],[-24,1],[-85,6],[-44,2],[-110,6],[-200,7],[-170,9],[-49,3],[-184,10],[-27,-3],[-384,18],[2,43],[-45,2],[-77,4],[-226,10],[-144,7],[-172,8],[-42,2],[-162,8],[-72,3],[-64,3],[-107,5],[-50,2],[-25,1],[-39,2],[-81,2],[-24,1],[-32,1],[-62,2],[-40,2],[-3,0],[-71,2],[-43,2],[-150,6],[-29,1],[-26,1],[-55,2],[-68,2],[-117,4],[-38,1],[-128,4],[-75,4],[-45,1],[-162,5],[-50,3],[-31,2],[0,27],[-91,4],[-30,1],[-63,3],[-73,2],[-288,8],[-8,0],[-125,4],[-49,2],[-390,9],[-172,6],[-254,7],[-58,2],[-61,1],[-101,3],[-196,5],[-36,1],[-216,5],[-193,5],[-27,0],[-1,0],[-127,3]],[[83200,37347],[5,184],[0,41],[2,48],[1,55],[4,126],[1,39],[2,87],[8,215],[3,111],[8,183],[-4,34],[3,26],[1,32],[1,28],[-1,27],[16,308],[10,227],[2,36],[0,49],[1,38],[0,5],[3,30],[-1,40],[2,30],[1,33],[1,25],[1,15],[1,3],[5,23],[0,30]],[[72592,36704],[-2,-56],[-3,-101],[-1,-34],[-2,-46],[0,-20],[-2,-44],[-6,-154],[-7,-185],[-1,-46],[-1,-34],[-2,-91],[-22,-311],[-1,-78],[-5,-396],[-3,-48],[-6,-139],[-1,-31],[-4,-115],[-1,-63],[-4,-128],[0,-26],[-2,-37],[-1,-37]],[[72515,34484],[-52,2],[-96,5],[-30,1],[-30,1],[-36,2],[-116,5],[-63,3],[-126,6],[-27,1],[-65,3],[-179,8],[-56,3],[-32,1],[-192,6],[-3,1],[-24,2],[-90,2],[-32,1],[-58,3],[-124,5],[-24,1],[-39,3],[-126,6],[-77,3],[-89,5],[-105,5],[-31,1],[-25,1],[-132,7],[-63,3],[-315,14],[-251,12],[-32,1],[-234,11],[-25,1],[-57,3],[-146,6],[-57,3],[-141,7],[-71,3],[-26,1],[-216,9],[-75,4],[-32,1],[-135,8],[-59,2],[-103,5],[-128,6],[-215,11],[-93,5],[-2,0],[-31,2],[-35,1],[-58,3],[-218,9],[-219,10],[-138,4],[-96,5],[-105,0],[-104,0],[-106,1],[-101,2],[-98,3],[-341,12],[-42,3],[-172,13],[-93,8],[-123,10],[-308,18],[-79,4],[-103,6],[-1,0],[-373,21],[0,-27],[-38,2],[-24,4],[-50,3],[-77,4],[-34,2],[-27,1],[-44,3],[-25,1],[-111,4],[-214,13],[-166,10],[-26,1],[-379,22],[-91,5]],[[63710,34876],[10,129],[4,59],[9,113],[7,104],[21,279],[3,38],[3,35],[2,26],[0,9],[2,18],[2,34],[3,36],[3,44],[1,9],[3,45],[2,26],[2,33],[3,39],[4,49],[-7,30],[-32,2],[-33,1],[-26,2],[-32,1],[-31,2],[-1,0],[-1014,51],[-40,1],[-85,3],[-27,0],[-26,1],[-46,6],[-33,1],[-13,1],[-18,0],[-60,1],[-189,11],[-106,6],[-66,4],[-49,3],[-239,14],[-80,4],[4,50],[3,37],[7,86],[3,34],[5,51],[9,120],[9,104],[9,108],[10,120],[2,29],[16,183],[2,34],[17,204],[1,2],[2,31],[4,39],[14,153],[9,90],[2,28],[9,135],[2,26],[17,259],[15,230],[7,106],[-113,6],[-73,4],[-559,37],[-83,5],[-32,2],[-27,2],[-31,3],[-70,2],[-28,2],[-67,5],[-55,3],[-165,9],[-52,3],[-24,2],[-119,6],[-59,4],[-105,6]],[[47320,39179],[-209,13],[-2,0],[-24,0],[-63,5],[-37,2],[-26,2],[-297,16],[-11,-163],[-4,-61],[-2,-19],[-1,-24],[-9,-104],[-2,-35],[-4,-64],[-3,-58],[-3,-41],[-11,-133],[-1,-7],[-2,-42],[27,-3],[39,0],[4,-1],[20,-1],[3,0],[20,-1],[31,-2],[59,-3],[23,-1],[24,-2],[27,-1],[33,-2],[25,-1],[31,-2],[40,-2],[28,-2],[-17,-148],[-2,-12],[-5,-32],[-10,-167],[-26,-215],[-11,-88],[-2,-30],[-1,-37],[-2,-36],[-5,-62],[-2,-26],[9,-30],[-3,-42],[-2,-26],[-4,-49],[-4,-39],[-4,-53],[-3,-34],[-3,-36],[-15,-141],[-11,-128],[-9,-78],[-6,-48],[0,-3],[-1,-26],[-2,-28],[-6,-25],[-4,-34],[-1,-11],[-3,-34],[-1,-31],[-2,-29],[-1,-27],[-1,-28],[-5,-43],[0,-6],[-2,-20],[-3,-26],[-6,-74],[-5,-46],[-2,-49],[-1,-28],[-2,-91],[-13,-23],[-215,14],[-50,4],[-53,5],[-112,10],[-3,-36],[-3,-36],[-4,-43],[-3,-32],[-5,-59],[-3,-37],[-2,-23],[-3,-27],[-1,-16],[-1,-13],[-3,-34],[0,-3],[-3,-28],[-2,-28],[-2,-27],[-3,-28],[0,-6],[-2,-21],[-2,-33],[-3,-33],[-5,-52],[-4,-47],[-3,-34],[-4,-51]],[[46350,35489],[-1,0],[-35,2],[-67,4],[-26,1],[-136,8],[-117,7],[-35,1],[-27,2],[-25,2],[-35,2],[-24,1],[-24,2],[-82,5],[-38,2],[-33,2],[-30,2],[-32,2],[-35,2],[-74,4],[-66,4],[-40,2],[-42,2],[-45,3],[-46,2],[-33,2],[-91,6],[-44,2],[-33,2],[-39,2],[-49,2],[-69,4],[-61,3],[-28,2],[-81,5],[-25,2],[-47,2],[-13,1],[-27,2],[-60,6],[-387,23],[-47,2],[-99,6],[-287,16],[-113,7],[-231,10],[-63,3],[-25,1],[-23,1],[-8,1],[-62,3],[-338,17],[-192,9],[-17,1],[-146,7],[-45,3],[-29,2],[-9,0],[-34,1],[-26,1],[-4,0],[-367,18],[-7,1],[-27,1],[-381,19],[-1,0],[-48,3],[-93,5],[-31,2],[-24,0],[-114,-2],[-37,-5],[-52,2],[-56,1],[-66,2],[-52,2],[-26,0],[-30,1],[-51,1],[-45,4],[-258,6],[-49,2],[-341,13],[-279,13],[-24,2],[-417,15],[-397,10],[-242,6],[-45,0],[-44,2],[-31,-1],[-25,1],[-28,1],[-169,4],[-58,0],[-2,0],[-64,1],[-33,1],[-36,2],[-32,1],[-27,2],[-69,3],[-62,2],[-57,2],[-40,0],[-43,2],[-21,18],[-139,5],[-24,0],[-13,1],[-24,1],[-146,9],[-993,47]],[[36610,35936],[1,27],[-5,53],[0,46],[-2,53],[-1,51],[-5,41],[-2,27],[-5,48],[-12,76],[-6,91],[-47,718],[-1,14],[-4,57],[-3,40],[-42,575],[-7,94],[-1,13],[-11,151],[-14,184],[-27,315],[40,20],[12,7],[77,41],[376,221],[17,18],[27,18],[27,14],[37,41],[-7,29],[-5,8],[-56,151],[-17,27],[-4,6],[-10,4],[-10,3],[-1,3],[-19,65],[-8,24],[-5,9],[-67,64],[-55,51],[-3,2],[-52,29],[-28,15],[-10,10],[-13,13],[-2,4],[-1,1],[-6,10],[-2,15],[-5,30],[1,23],[10,35],[1,1],[6,9],[25,38],[5,7],[-3,24],[-2,4],[-8,7],[-19,17],[-18,15],[-17,11],[-43,21],[-6,5],[-6,5],[-1,3],[-5,11],[-2,26],[2,31],[2,7],[0,15],[-1,20],[-2,7],[-8,23],[-17,27],[-3,26],[-21,10],[-16,-19],[-16,-20],[-23,9],[-8,32],[6,31],[20,23],[-4,27],[-11,31],[-3,31],[9,8],[5,43],[-4,38],[-1,14],[-1,3],[-3,39],[-2,12],[15,2],[3,0],[7,7],[23,20],[15,14],[0,2],[-2,83],[-4,3],[-20,19],[-22,25],[-38,29],[-21,32],[-19,34],[-30,39],[-27,22],[-13,23],[0,28],[-16,20],[-2,2],[-17,17],[-7,4],[-29,15],[-22,13],[-15,30],[-1,2],[-1,1],[-2,26],[17,22],[22,12],[2,-1],[24,-2],[18,-3],[19,-3],[23,3],[29,16],[27,32],[8,12],[14,21],[-2,33],[-8,25],[-9,28],[-4,29],[-4,29],[-1,41],[5,33],[1,6],[5,24],[10,25],[2,8],[6,21],[4,15],[-3,33],[-11,36],[11,23],[-7,30],[-18,32],[2,26],[6,25],[-19,15],[-31,-1],[-27,14],[-8,33],[0,27],[0,3],[3,17],[2,17],[10,16],[3,4],[1,2],[14,29],[12,28],[10,25],[16,43],[1,2],[1,4],[11,49],[-6,4],[-19,11],[-20,20],[-19,30],[-6,35],[2,38],[2,26],[9,31],[2,1],[27,14],[325,-10],[441,-24],[200,5],[28,290],[9,160],[8,86],[18,154],[38,451],[15,215],[1,7],[8,102],[0,6],[13,51]],[[36610,35936],[-3,-81],[-9,-49],[-6,-100],[-1,-99],[-12,-113],[-6,-95],[-3,-45],[-4,-58],[-2,-33],[-1,-6],[-4,-46],[2,-31],[-8,-83],[-10,-76],[-3,-94],[-4,-56],[-2,-65],[-5,-80],[-6,-84],[-4,-42],[-5,-98],[-3,-29],[-4,-56],[-9,-194],[-5,-30],[-1,-3],[-3,-46],[-2,-32],[-2,-38],[-3,-44],[-1,-16],[-3,-42],[-1,-9],[-2,-35],[-4,-46],[-2,-30],[-1,-27],[-2,-26],[-3,-27],[-2,-35],[-2,-30],[-2,-15],[-4,-68],[-13,-189],[-3,-26],[-7,-98],[-11,-154],[-2,-32],[-6,-100],[-4,-75]],[[36407,32950],[-86,6],[-11,1],[-172,10],[-164,10],[-2,0],[-38,3],[-90,5],[-206,13],[-6,1],[-106,7],[-3,0],[-157,7],[-155,8],[-731,35],[-29,2],[-89,6],[-288,13],[-15,0],[-29,1],[-54,0],[-138,7],[-53,2],[-33,-3],[-189,9],[-174,11],[-54,2],[-72,4],[-458,26],[-122,9],[-241,15],[-338,8],[-4,0],[-527,27],[-153,27],[-168,10],[-83,-8],[-311,22],[-197,15],[-69,4],[-278,20],[-322,23],[-32,3],[-1,0],[-279,19],[-1,0],[-783,52],[-1,0],[-316,20],[-299,20],[-5,1],[-293,19],[-4,0],[-99,6],[-6,0],[-115,5],[-474,35],[-140,9],[-46,0]],[[27098,33497],[27,212],[-2,88],[28,288],[5,58],[19,200],[26,282],[1,121],[5,67],[34,116]],[[27241,34929],[517,-40],[174,-15],[58,-4],[23,-11],[2,-1],[69,-6],[2,-1],[507,-33],[47,172],[8,27],[21,73],[22,72],[7,24],[7,26],[11,36],[14,45],[94,286],[20,91],[1,1],[23,103],[19,65],[34,108],[32,123],[52,222],[16,63],[27,103],[20,75],[13,47],[25,93],[0,2],[46,172],[0,1],[152,505],[19,75],[12,45],[42,159],[14,49],[42,147],[32,103],[9,23],[1,1],[51,182],[14,47],[21,70],[63,208],[39,127],[34,119],[53,181],[11,41],[11,36],[1,5],[22,76],[13,40],[7,26],[13,44],[8,27],[5,19],[3,11],[11,35],[21,74],[7,27],[9,31],[7,26],[21,67],[51,166],[24,74],[16,54],[62,205],[3,11],[36,116],[22,75],[15,50],[0,1],[24,78],[28,91],[9,32],[14,44],[11,37],[24,81],[16,51],[24,78],[3,10],[24,77],[11,38],[39,130],[-93,5]],[[27241,34929],[13,76],[-189,7],[-290,13],[-27,1],[-170,10],[-6,0],[-138,11],[-39,3],[-389,28],[-204,12],[-146,7],[-108,7],[-81,6],[-8,0],[-30,3],[-42,4],[-52,4],[-24,2],[-4,1],[-28,2],[-91,7],[-77,7],[-12,52],[-34,146],[-47,1],[-552,52],[-523,63],[-166,19],[-40,5],[-30,5],[-12,1],[-32,5],[-227,23],[-142,17],[-111,13],[-61,8],[-19,3],[-43,5],[-25,1],[-29,11],[8,35],[1,31],[0,28],[3,41],[6,65],[4,54],[2,31],[6,73],[1,53],[18,214],[-278,20],[-47,3],[-58,4],[-36,2],[-235,13],[-220,11],[-181,11],[-9,0],[-172,11],[-182,12],[-699,41],[-25,1],[-62,3],[-33,2],[-39,2],[-30,2],[-37,2],[-28,1],[-47,3],[-40,2],[-32,2],[-57,4],[-97,6],[4,36],[6,67],[8,94],[4,38],[4,44],[2,29],[3,35],[9,38],[-316,16],[-662,43],[-27,2],[-27,2],[-35,2],[-2,0],[-29,0],[-65,6],[-90,4],[-10,0],[-13,1],[-38,5],[-89,6],[-358,24],[-66,5],[-24,1],[-104,7],[-69,4],[-40,3],[-15,1],[-147,11],[-32,2],[-15,1],[-141,10],[-105,7],[-31,1],[-29,1],[-29,1],[-43,4]],[[17800,36904],[9,119],[5,26],[10,123],[2,32],[4,32],[5,48],[3,28],[1,40],[5,117],[5,111],[3,25],[1,9],[10,38]],[[83200,37347],[-91,2],[-47,1],[-125,2],[-29,1],[-25,1],[-23,1],[-91,2],[-178,4],[-24,1],[-179,5],[-75,2],[-246,6],[-72,2],[-80,1],[-124,3],[-259,5],[-103,3],[-4,-140],[-1,-56],[-1,-17],[0,-12],[0,-34],[-3,-44],[-9,-312],[-2,-36],[0,-62],[-5,-190],[-1,-25],[-5,-132],[-3,-113],[-6,-175],[-4,-117],[-2,-69],[-2,-60],[-3,-88],[-5,-119],[-1,-36],[-9,-235],[0,-5],[-2,-46],[-1,-49],[-5,-133],[-2,-39],[0,-2],[-2,-51],[-1,-43],[-1,-42],[-2,-68],[-3,-70],[-4,-81],[-4,-124],[-5,-125],[-2,-59],[0,-36],[-3,-84],[-5,-204],[-5,-176],[-4,-171],[-2,-91],[-4,-138],[-1,-56],[-5,-170],[87,0],[112,-1],[50,0],[119,-1],[138,-1],[326,-3],[6,0],[57,0],[-15,-373],[15,-7],[-1,-84],[-2,-259],[-4,-112],[-2,-74],[-2,-42],[-2,-58],[-6,-222],[0,-3],[-1,-28],[-3,-166],[-3,-82],[-2,-69],[0,-56],[-3,-105],[-1,-54],[-4,-133],[-1,-50],[1,-30],[-2,-86],[-7,-115],[-2,-29],[-1,-46],[-3,-97],[-2,-53],[-3,-89],[-2,-62]],[[82137,30664],[-2,-65],[-3,-114],[-3,-107],[-2,-70],[-49,1],[-75,2],[-204,5],[-329,9],[-18,1],[-39,1],[-166,4],[-238,6],[-141,3],[-140,4],[-69,2],[-54,1],[-114,3],[-57,1],[1,91],[1,44],[1,52],[-116,2],[-138,3],[-65,2],[-109,-1],[-2,0],[-67,2],[-4,0],[-80,2],[-144,2],[-32,1],[-24,0],[-116,4],[6,202],[1,48],[0,86],[-9,25],[-165,2],[-79,2],[-165,1],[-28,0],[3,97],[0,25],[1,36],[-1,52],[-2,70],[3,51],[0,42],[-33,1],[-67,2],[-157,2],[-170,3],[-143,3],[-24,0],[-129,3],[-41,0],[-28,1],[-79,1],[-36,1],[2,33],[2,26],[2,30],[1,26],[4,60],[7,189],[-118,3],[-33,1],[-34,1],[-36,1],[-35,1],[-52,1],[-7,1],[-27,0],[-36,1],[-2,0],[-113,4],[0,-30],[-1,-168],[-2,-204],[0,-28],[0,-99],[-2,-90],[0,-56],[0,-50],[0,-31],[0,-27],[0,-33],[0,-60],[0,-29],[0,-35],[0,-27],[0,-27],[-1,-69],[-1,-53],[-2,-135],[0,-105],[1,-105],[1,-31],[0,-31],[0,-75],[-105,3],[-42,1],[-186,6],[-98,3],[-129,5],[-53,-1],[-31,1],[-71,2],[-99,2],[-49,2],[-329,11],[-32,-2],[-25,4],[-29,-1],[-38,-1],[-224,15],[-147,5],[-45,1],[-116,5],[-238,8],[-35,2],[-56,2],[-33,1],[-44,1],[-30,2],[-145,6],[-31,1],[-52,2],[-60,3],[-92,4]],[[75052,30184],[3,170],[0,3],[3,163],[1,67],[2,98],[3,60],[1,93],[0,40],[-7,185],[6,26],[4,65],[8,161],[5,151],[3,127],[2,98],[2,31],[3,95],[1,45],[1,39],[2,71],[3,95],[1,29],[1,52],[-63,2],[-70,3],[-69,3],[-103,3],[-73,1],[-32,2],[-29,2],[-194,8],[-48,1],[-29,1],[-189,5],[-32,-1],[-25,1],[-104,4],[-105,4],[-25,1],[-30,0],[-105,3],[3,29],[4,142],[3,89],[6,175],[8,202],[1,46],[4,107],[2,56],[5,62],[-2,28],[2,26],[5,134],[7,185],[1,32],[5,172],[6,211],[6,175],[0,2],[2,74],[3,68],[5,143],[1,38],[2,28],[-55,15],[-57,2],[-105,4],[-151,5],[-141,6],[-23,1],[-27,1],[-37,2],[-82,3],[-31,1],[-7,0],[-70,2],[-1,0],[-40,1],[-35,2],[-23,1],[-137,3],[-180,4],[-46,0],[-91,16]],[[54743,38942],[-6,-40],[-10,-103],[-2,-24],[-1,-27],[-3,-30],[-2,-26],[-18,-206],[-2,-27],[-4,-39],[-4,-43],[-3,-28],[-3,-29],[-4,-53],[-4,-41],[-4,-44],[-8,-92],[-5,-56],[0,-2],[-4,-34],[-4,-43],[-5,-49],[-6,-71],[-4,-43],[-3,-36],[-4,-31],[-2,-26],[-4,-45],[-5,-53],[-8,-79],[-3,-31],[-6,-62],[-8,-84],[-1,-8],[-5,-49],[-7,-71],[-8,-75],[-4,-45],[-7,-72],[-7,-69],[-4,-44],[-3,-28],[0,-5],[-1,-2],[-9,-19],[-1,-2],[-7,-86],[-3,-50],[-3,-52],[-3,-60],[15,-43],[27,-1],[44,-4],[80,-6],[83,-5],[112,-8],[109,-8],[110,-6],[44,-3],[39,-3],[38,-2],[76,-5],[75,-4],[29,-2],[43,-2],[100,-6],[80,-4],[54,-3],[51,-2],[48,-3],[54,-3],[4,0],[77,-5],[65,-3],[67,-4],[26,-2],[196,-11],[10,-4],[15,-5],[4,-45],[-3,-83],[-4,-38],[-7,-52],[-4,-35],[-5,-32],[-4,-33],[-4,-47],[-6,-77],[-12,-133],[-7,-77],[-7,-87],[-18,-213],[-10,-110],[-6,-68],[-2,-27],[-2,-27],[-1,-12],[-2,-14],[-10,-135],[-10,-123],[-13,-170],[0,-6],[-2,-21],[-5,-61],[-4,-45],[-8,-102],[-4,-46],[-4,-40],[-9,-113],[-2,-25],[-2,-31],[-3,-41],[-5,-51],[-8,-27],[273,-16],[25,0],[26,-3],[25,0],[27,-2],[72,-4],[36,-3],[30,-2],[43,-2],[31,-2],[24,-4],[37,-1],[33,-2],[56,-3],[24,-2],[125,-7],[-14,-155],[-2,-27],[-10,-110],[-8,-94],[-8,-89],[-6,-63],[-2,-20],[-1,-21],[-3,-34],[-2,-21],[-9,-105],[-30,-338],[-4,-45],[-11,-117],[-6,-73],[-13,-144],[-5,-43],[-4,-26],[-5,-68],[-13,-154],[-2,-35],[-8,-91],[-4,-53],[-11,-128],[0,-1],[-2,-26],[-5,-55],[-9,-97]],[[56793,31918],[-57,3],[-41,3],[-160,9],[-178,10],[-313,18],[-5,1],[-81,4],[-31,2],[-29,2],[-23,3],[-28,1],[-25,0],[-24,1],[-25,1],[-51,4],[-104,6],[-80,5],[-42,3],[-66,4],[-1,0],[-182,12],[-78,6],[-55,3],[-50,4],[-27,2],[-79,5],[-72,5],[-61,5],[-38,3],[-206,14],[-28,2],[-40,3],[-93,7],[-191,13],[-80,5],[-47,-23],[-3,-28],[-17,-193],[-3,-34],[-12,-114],[-3,-38],[-9,-114],[-3,-38],[-2,-27],[-11,-131],[0,-4],[-5,-28],[-3,-32],[-4,-51],[-16,-180],[-8,-101],[-10,-115],[-6,-62],[-4,-41],[-14,-144],[-50,2],[-138,8],[-48,2],[-207,12],[-131,9],[-61,3],[-37,3],[-241,14],[-65,4],[-39,2],[-78,4],[-4,0],[-44,3],[-33,2],[-42,2],[-28,1],[-10,1],[-28,1],[-62,3],[-443,22],[-25,1],[-253,13],[-116,6],[-48,2],[-30,1],[-135,7],[-55,3],[-30,1],[-25,1],[-46,2],[-46,2],[-26,2],[-25,0],[-85,5],[-85,2],[-5,-74],[-4,-53],[-9,-201],[-4,-68],[0,-2],[-4,-84],[-5,-98],[-5,-96],[-3,-60],[-1,-31],[-19,-371],[-217,10],[-24,1],[-39,2],[-68,4],[-90,4],[-48,2],[-35,2],[-64,2],[-106,5],[-93,5],[-81,4],[-136,5],[-139,5],[-45,2],[-123,5],[-53,2],[-281,12],[-77,4],[-165,10],[-38,2],[-170,9],[-42,3],[-129,10],[-31,2],[-54,3],[-48,4],[-163,11],[-21,-275],[-8,-98]],[[48503,29354],[-48,3],[-25,1],[-53,7],[-24,-1],[-38,3],[-25,1],[-69,5],[-24,2],[-35,2],[-37,3],[-63,4],[-114,8],[-24,1],[-57,5],[-37,2],[-24,2],[-32,2],[-41,2],[-30,3],[-40,2],[-24,3],[-42,3],[-40,3],[-29,2],[-28,3],[-9,0],[-15,1],[-64,3],[-51,4],[-8,1],[-138,10],[-35,3],[-41,3],[-25,2],[-69,5],[-69,6],[-27,2],[-54,4],[-33,3],[-39,3],[-24,2],[-32,2],[-56,3],[-46,4],[-84,6],[-62,4],[-31,2],[-28,2],[-107,7],[-24,1],[-52,3],[-43,3],[-43,2],[-30,0],[-24,4],[-64,4],[-67,4],[-68,4],[-21,15],[6,69],[3,34],[9,95],[8,100],[5,64],[0,29],[5,102],[8,28],[4,27],[5,62],[3,44],[4,41],[2,27],[3,28],[3,32],[2,27],[3,30],[3,30],[3,30],[2,30],[3,27],[3,27],[2,26],[2,29],[3,30],[2,28],[3,27],[5,50],[12,130],[4,49],[6,53],[7,88],[3,40],[7,75],[6,71],[6,70],[2,27],[1,3],[8,89],[4,46],[5,55],[14,158],[9,103],[-1,0],[-74,4],[2,27],[10,124],[4,53],[3,35],[1,8],[3,45],[1,13],[3,41],[4,54],[2,29],[2,33],[4,39],[6,79],[3,29],[4,44],[2,25],[1,12],[2,33],[2,19],[1,13],[4,46],[3,36],[1,16],[3,31],[1,15],[2,14],[3,40],[6,73],[8,96],[6,73],[3,39],[3,35],[4,43],[3,32],[1,11],[2,27],[3,28],[3,37],[7,87],[7,76],[0,5],[0,2],[7,77],[8,87],[4,54],[3,34],[4,45],[7,85],[2,36],[9,104],[7,82],[11,124],[5,64],[3,30],[5,64],[2,30],[4,33],[3,33],[3,40],[4,62],[2,16],[3,47],[4,38],[2,24],[4,49],[3,30],[4,49],[2,26],[2,27],[10,116],[1,14],[2,19],[4,41],[5,71],[5,53],[2,22],[1,10],[1,22],[3,28],[0,30],[4,22],[2,7],[1,19],[0,8],[4,51],[3,32],[4,45],[2,21],[1,14],[5,56]],[[63710,34876],[-4,-56],[-7,-97],[-8,-97],[-12,-167],[-10,-116],[-11,-145],[-4,-41],[-3,-43],[-3,-43],[0,-3],[-10,-140],[-2,-28],[-7,-101],[-2,-27],[152,-10],[26,-2],[26,-1],[28,-1],[84,-6],[92,-5],[171,-9],[102,-6],[98,-6],[28,-2],[46,-3],[122,-7],[50,-3],[20,-1],[4,-1],[37,-2],[28,-1],[129,-7],[57,-3],[-7,-90],[-5,-66],[-9,-111],[-9,-109],[-7,-89],[-8,-95],[-3,-45],[-3,-40],[-2,-36],[-9,-116],[-5,-50],[-14,-184],[-5,-62],[-4,-45],[-9,-110],[-7,-80],[0,-2],[-15,-188],[-10,-112],[-8,-105],[-3,-29],[-4,-51],[-6,-76],[-13,-150],[-3,-31],[-12,-143],[-2,-30],[-2,-27],[-8,-87],[-2,-33],[-6,-73],[-1,-26],[0,-31],[-1,-29],[-4,-49],[-15,-152],[-11,-121],[-16,-184],[-7,-79],[-5,-72],[-2,-28],[-8,-126],[-22,-190],[-11,-96],[-7,-57],[-2,-39],[-6,-85],[-4,-67],[-2,-34],[-2,-30],[-11,-176],[-4,-69],[-8,-118],[-8,-127],[-50,5],[-39,3],[-95,8]],[[64386,29262],[-85,5],[-24,1],[-38,2],[-66,4],[-100,6],[-37,2],[-18,1],[-31,2],[-24,1],[-1,0],[-27,1],[-43,3],[-182,10],[-116,7],[-176,10],[-242,14],[-53,3],[-6,0],[-20,1],[-115,7],[-23,1],[-85,5],[-171,9],[-117,3],[-72,2],[-119,7],[-54,4],[-25,2],[-127,11],[-26,2],[-171,9],[-59,4],[-24,1],[-115,6]],[[61794,29408],[-208,6],[-207,13],[-43,3],[-25,1],[-267,17],[-100,6],[-104,6],[-103,6],[-3,1],[-216,13],[-160,10],[-75,4],[-244,15],[-90,6],[-34,2],[-75,5],[-148,9],[-57,4],[-126,6],[-6,0],[-131,9],[5,176],[1,32],[7,154],[8,144],[3,60],[1,18],[1,9],[5,76],[4,57],[-38,1],[-235,10],[-29,1],[-30,2],[-28,1],[-32,7],[-27,1],[-26,-2],[-106,8],[-128,6],[-196,4],[-61,5],[-107,6],[-132,8],[-99,8],[-52,4],[-34,2],[-51,4],[-29,2],[-261,20],[-78,4],[-2,0],[-25,2],[-55,3],[-117,6],[-26,1],[-33,2],[-1,0],[-222,12],[-94,5],[-13,1],[-164,12],[-91,5],[-117,6],[25,298],[14,162],[10,109],[14,149],[23,217],[4,105],[8,102],[2,28],[3,44],[2,33],[12,151],[8,87]],[[17800,36904],[-16,-179],[0,-5],[-7,-64],[-5,-27],[0,-1],[-2,-46],[0,-38],[-37,-7],[-25,2],[-1,0],[-58,3],[-17,2],[-32,3],[-130,10],[-362,23],[-165,13],[-53,2],[-33,-372],[-12,-126],[-3,-57],[-3,-57],[-10,-92],[-4,-38],[-7,-115],[-2,-21],[-14,-158],[-5,-50],[0,-27],[0,-12],[0,-32],[-2,-28],[-3,-52],[-2,-35],[0,-34],[-5,-68],[-9,-110],[-10,-67],[-14,-158],[-1,-33],[-14,-122],[-9,-85],[-8,-101],[0,-39],[-9,-81],[-5,-49],[-2,-28],[-7,-58],[-9,-77],[-5,-84],[-2,-30],[0,-3],[-5,-31],[-7,-76],[-18,-197],[-7,-120],[-7,-61],[-14,-112],[-5,-71],[-3,-39],[-4,-48],[-7,-61],[-2,-41],[2,-64],[-4,-71],[-3,-46],[-2,-31],[-5,-38],[-7,-77],[-4,-46],[-6,-49],[-13,-200],[-2,-51],[-4,-48],[-8,-90],[-7,-38],[-4,-44],[0,-83],[-4,-34],[-15,-153],[-6,-95],[-2,-25],[-1,-14],[-4,-44],[-6,-73],[-5,-62],[-5,-70],[-14,-168],[-3,-36],[0,-5],[-5,-69],[-2,-38],[-3,-28],[-8,-105],[-1,-25],[-2,-31],[53,-10],[-8,-35],[-5,-48],[-5,-33],[0,-32],[-4,-49],[-13,-178],[-24,-276],[-27,-298],[-9,-107],[-11,-168]],[[16396,29954],[-315,23],[-155,9],[-64,5],[-412,32],[-9,0],[-18,2],[-160,11],[-37,5],[-94,9],[-435,34],[-250,16],[-76,4],[-236,19],[-50,3],[-33,2],[-44,3],[-30,2],[-33,2],[-34,2],[-51,3],[-90,6],[-64,4],[-4,1],[-197,14],[-28,2],[-25,2],[-56,4],[-11,1],[-106,7],[-41,3],[-224,17],[-34,3],[-298,20],[-269,15],[-22,1],[-3,0],[-50,1],[-51,1],[-30,0],[-88,0],[-169,-3],[-45,0],[-25,2],[-12,1],[-23,0],[-101,-2],[-41,-1],[-46,3],[-35,-3],[-144,0],[-88,6],[-63,0],[-54,0],[-52,0],[-57,-1],[-178,1],[-9,0],[-460,3]],[[10567,30248],[-92,9],[-89,0],[-41,0],[-4,0],[-185,0],[-340,0],[-234,0],[-111,0],[-63,1],[-125,2],[-346,2],[-59,-2],[-34,0],[-209,0],[-161,2],[-181,-2],[-109,2],[-148,3],[-115,22]],[[7921,30287],[-1,29],[-1,92],[-1,88],[-1,76],[0,32],[-1,38],[-1,46],[-1,56],[-1,83],[-1,56],[-1,79],[-2,89],[0,33],[-2,44],[1,56],[-1,47],[-1,40],[0,41],[-1,40],[-1,76],[0,2],[-1,65],[0,33],[-1,48],[0,33],[-1,45],[0,67],[-1,49],[-1,44],[-1,40],[-1,72],[0,36],[8,24],[0,89],[-4,30],[-1,7],[-5,43],[0,35],[-1,105],[-1,31],[-1,34],[-1,128],[-1,41],[-1,58],[-1,35],[-1,63],[0,52],[-1,43],[-2,81],[-1,60],[-1,51],[0,45],[-1,26],[-1,58],[0,63],[-1,60],[-1,29],[-1,42],[-1,76],[-1,66],[-2,95],[-1,33],[-2,85],[-1,72],[-1,59],[-2,80],[-1,39],[-1,69],[-1,46],[-1,73],[-2,67],[0,54],[-1,1],[-1,28],[-1,90],[0,61],[0,32],[-1,29],[0,43],[-1,40],[0,57],[-3,129],[-1,70],[-1,44],[0,32],[-2,87],[-1,52],[-2,90],[-1,46],[-1,49],[-1,52],[-1,36],[-1,41],[-4,183],[-2,138],[-1,37],[0,39],[-2,73],[-1,87],[-3,91],[-1,60],[-1,57],[-3,156],[0,30],[-1,39],[-1,43],[-1,41],[0,30],[-1,38],[-2,79],[-1,41],[0,6],[0,25],[0,31],[-1,27],[-1,38],[0,39],[-1,30],[-2,100],[-4,228],[-1,31],[0,11],[-1,15],[0,30],[-1,32],[-1,39],[-1,44],[-1,77],[-2,68],[-1,57],[-3,149],[-2,80],[-2,106],[-2,36],[-3,104],[-1,45],[0,31],[-2,67],[-1,29],[0,27],[-1,44],[-1,26],[-1,31],[-1,30],[-1,60],[-1,38],[4,31],[-2,197]],[[7921,30287],[2,-101],[0,-32],[0,-33],[1,-29],[0,-42],[1,-36],[0,-34],[-2,-131],[4,-129],[-277,-7],[-9,0],[-58,-1],[-44,0],[-48,0],[-291,-7],[-115,-2],[-2,0],[-152,-1],[-70,0],[-39,-2],[-426,-3],[-156,-2],[-50,-1],[-1,0],[-124,-1],[-26,0],[-73,-1],[-345,8],[-93,-12],[-26,0],[-56,0],[-87,1],[-53,2],[-176,0],[-708,-1],[-68,7],[-28,-9],[-170,1],[-42,-1],[-2,0],[-65,-3],[-101,0],[-14,1],[-311,2],[-487,1],[-262,2],[-53,-1],[-2,0],[-78,-1],[-248,1],[-25,0],[-43,-4],[-132,3],[-124,-1],[-283,-7],[-16,-1],[-108,-5],[-43,-2],[-59,-3],[-28,-1],[-3,0],[-38,0],[-135,0],[-42,-5],[-84,0],[-160,26],[-190,1],[-53,0],[-24,0],[-28,0],[-57,0],[-26,0],[-193,1],[-28,0],[-191,0],[-96,1],[-26,0],[-40,0],[-49,0],[-41,-5]],[[126,29688],[-6,35],[0,15],[1,13],[0,8],[0,33],[0,41],[0,32],[0,29],[1,23],[0,11],[0,47],[0,67],[0,31],[0,27],[0,42],[0,44],[0,43],[0,44],[1,57],[0,30],[0,41],[0,5],[0,29],[1,72],[0,59],[1,40],[0,40],[0,38],[0,38],[1,26],[0,29],[0,26],[1,26],[0,52],[1,39],[0,58],[0,32],[1,33],[0,30],[-1,49],[0,24],[0,3],[0,5],[0,33],[1,7],[0,6],[0,36],[0,28],[0,63],[0,11],[1,39],[0,28],[0,65],[0,28],[0,66],[0,57],[0,28],[0,26],[1,41],[0,65],[0,37],[1,51],[0,7],[0,6],[1,35],[0,61],[0,45],[0,55],[0,58],[0,18],[-1,30],[0,13],[1,41],[0,26],[0,26],[0,18],[0,7],[-1,173],[-1,64],[1,4],[0,11],[0,4],[0,9],[1,46],[0,28],[0,50],[1,53],[0,26],[0,74],[1,63],[0,51],[0,29],[1,74],[1,39],[0,43],[0,57],[0,51],[0,35],[0,79],[1,62],[0,57],[0,41],[0,41],[0,65],[0,9],[0,26],[0,31],[0,35],[0,62],[0,27],[0,44],[0,49],[0,95],[-1,141],[0,10],[0,30],[1,94],[0,45],[-1,155],[3,72],[-4,37],[-1,46],[11,280],[-5,56],[-4,58],[1,60],[5,142],[0,5],[0,27],[5,16],[-7,145],[0,171],[0,47],[0,3],[0,38],[1,37],[0,4],[14,141],[3,26],[-17,70],[0,3],[0,1],[2,56],[4,164],[2,59],[0,40],[0,31],[0,34],[0,32],[0,1],[-1,60],[0,13],[0,1],[1,11],[2,203],[1,17],[0,12],[1,34],[1,55],[1,92],[0,17],[-1,8],[1,28],[2,31],[15,261],[2,39],[3,197],[-10,54],[12,167],[1,42],[-7,206],[4,277],[2,33],[10,143],[-6,62],[-4,68],[3,69]],[[92829,36860],[-56,-64],[-46,-111],[21,-63],[9,-51],[8,-21],[-1,-7],[73,-200],[47,-165],[-9,-47],[-3,-75],[-11,-113],[-14,-136],[-1,-10],[-17,-66],[-40,-81],[-1,-16],[-31,-45],[-7,-10],[-8,-10],[-46,-56],[-79,-83],[-3,-4],[-87,-56],[-113,-89],[-140,-78],[-156,-97],[-126,-96],[-21,-16],[-91,-74],[-44,-73],[-10,-20],[-32,-74],[-16,-48],[-1,-9],[0,-4],[-1,-4],[-1,-4],[0,-1],[19,-52],[17,-83],[70,-121],[293,-313],[35,-37],[39,-25],[17,-10],[12,-8],[44,-51],[77,-117],[190,-275],[21,-22],[10,-15],[23,-39],[40,-68],[-2,-34],[12,-47],[-5,-44],[-26,-69],[-23,-35],[-79,-85],[-22,-13],[-23,-8],[-70,-25],[-6,-1],[-68,-13],[-1,0],[-1,0],[-1,-1],[-1,0],[-74,-17],[-1,0],[-2,0],[-2,-1],[-39,-10],[-40,-11],[-1,0],[-1,-1],[-1,0],[-1,-1],[-4,-1],[-1,0],[-103,-37],[-1,0],[0,-1],[-2,0],[-4,-2],[-2,-1],[-2,-1],[-4,-2],[-2,0],[-1,-2],[-4,-2],[-2,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-3,-2],[-1,-2],[-2,-1],[-2,-2],[-2,-1],[-2,-2],[-30,-20],[-45,-31],[-2,-1],[-3,-3],[-3,-3],[-3,-3],[-2,-2],[-40,-47],[-1,-1],[-3,-4],[-2,-3],[-2,-4],[-1,-2],[-26,-53],[-1,-3],[-2,-4],[-2,-4],[-1,-4],[-12,-48],[-1,-5],[0,-2],[-12,-83],[-1,-2],[0,-5],[-7,-120],[3,-82],[0,-4],[1,-5],[1,-4],[11,-146],[0,-40],[-1,-50],[-3,-127],[-6,-32],[-34,-195],[-45,-104],[-40,-164],[-14,-95],[-9,-6],[-26,-69],[-42,-178],[-107,-110],[-47,-46],[-1,-1],[-24,-17],[-56,-42],[-25,-13],[-30,-8],[-1,0],[-41,-11],[-73,-12],[-16,-1],[-26,-2],[-79,-7],[-54,2],[-40,10],[-26,13],[-2,1],[-4,1],[-4,1],[0,1],[-45,13],[-4,0],[-4,1],[-1,0],[-36,5],[-3,0],[-3,0],[-4,1],[-91,2],[-183,5],[-194,-35],[-169,-70],[-91,-55],[-148,-144],[-64,-43],[-3,-54],[-86,-43],[-212,-130],[-142,-112],[-151,-98],[-97,-73],[-10,-9],[-7,-49],[-31,-19],[-65,-39],[-18,-29],[-159,-114],[-28,-38],[-110,-85],[-105,-59],[-99,-94],[-137,-110],[-50,-41],[-84,-55],[-22,-4],[-113,-71],[-35,-34],[-87,-109],[-22,-46],[-264,-146]],[[87812,28985],[11,209],[0,2],[7,116],[11,206],[5,92],[8,157],[2,38],[-28,1],[-189,8],[-168,7],[-207,8],[-110,5],[-326,13],[-133,5],[-122,4],[-89,3],[-179,7],[-148,6],[-93,4],[-252,10],[-84,3],[-181,6],[-90,4],[-34,1],[-141,4],[-200,6],[-36,1],[-26,1],[-28,1],[-3,0],[-219,7],[-171,6],[-155,5],[-146,5],[-36,1],[-232,8],[-4,0],[-21,1],[-109,4],[-94,3],[-104,4],[-181,6],[-47,1],[-348,12],[-33,2],[-109,3],[-11,-61],[-59,2],[-97,2],[-118,0],[-85,0],[-61,1],[2,60],[2,55],[2,72],[6,176],[2,53],[4,120],[7,192],[-234,6],[-203,5]],[[27098,33497],[-12,-132],[-4,-46],[-22,-210],[-17,-205],[-54,-594],[-13,-137],[-16,-150],[-13,-132],[-7,-74],[-7,-61],[-1,-13],[-28,-251],[-21,-295],[-22,-229],[-5,-52],[-16,-203],[-16,-179],[-5,-49],[-4,-37],[-22,-219],[0,-7],[-24,-265],[-15,-134],[0,-1],[-10,-144],[-3,-30],[-17,-168],[-18,-233]],[[26706,29247],[-156,11],[-38,3],[-243,17],[-26,1],[-155,10],[-323,22],[-139,10],[-3,0],[-166,13],[-51,2],[-24,1],[-13,1],[-180,13],[-132,9],[-121,7],[-412,23],[-39,2],[-94,5],[-192,23],[-67,4],[-120,6],[-44,3],[-301,24],[-47,3],[-81,4],[-353,26],[-26,2],[-79,5],[-60,5],[-49,3],[-26,2],[-116,8],[-119,6],[-25,2],[-107,7],[-4,0],[-132,5],[-114,4],[-115,10],[-71,5],[-30,3],[-247,21],[-74,4],[-36,3],[-24,2],[-23,2],[-23,2],[-390,29],[-96,8],[-27,2],[-35,2],[-34,3],[-128,9],[-129,10],[-72,4],[-73,4],[-42,2],[-41,2],[-47,3],[-35,2],[-32,2],[-32,2],[-81,4],[-36,3],[-99,5],[-71,4],[-36,4],[-60,3],[-199,11],[-6,0],[-56,3],[-10,1],[-134,10],[-10,0],[-15,1],[-37,2],[-41,4]],[[19582,29730],[-204,17],[-56,7],[-97,8],[-55,4],[-29,3],[-31,4],[-62,0],[-4,0],[-206,15],[-120,9],[-71,5],[-42,3],[-203,13],[-2,0],[-94,7],[-12,0],[-357,25],[-46,3],[-165,10],[-242,17],[-91,6],[-108,9],[-454,35],[-36,3],[-118,9],[-56,3],[-111,3],[-26,5],[-88,1]],[[48503,29354],[-13,-82],[-3,-42],[-18,-199],[-15,-159],[-8,-90],[-12,-133],[-14,-152],[-9,-93],[-4,-27],[-4,-27],[-1,-32],[-4,-36],[-5,-37],[-5,-59],[-4,-41],[-3,-37],[2,-29],[-14,-112],[-6,-31],[-5,-46],[-48,-478],[-4,-36],[-2,-48],[-1,-42],[-2,-27],[-3,-23],[0,-8],[-3,-33],[-6,-37]],[[48289,27158],[-8,1],[-36,2],[-30,3],[-28,2],[-29,3],[-29,2],[-3,0],[-23,1],[-29,-21],[-32,2],[-24,2],[-23,1],[-24,3],[-24,0],[-24,1],[-24,2],[-24,1],[-27,2],[-24,1],[-24,1],[-29,2],[-24,2],[-25,1],[-24,1],[-24,2],[-24,2],[-24,1],[-24,1],[-25,2],[-26,1],[-25,2],[-24,1],[-24,1],[-27,2],[-24,1],[-27,2],[-24,1],[-25,2],[-24,1],[-24,1],[-27,2],[-24,1],[-24,2],[-27,1],[-27,2],[-25,1],[-24,2],[-24,1],[-24,2],[-27,1],[-24,2],[-28,2],[-24,1],[-24,2],[-24,1],[-27,1],[-27,2],[-24,1],[-24,2],[-24,1],[-25,2],[-24,2],[-24,1],[-24,1],[-30,2],[-24,2],[-24,1],[-25,1],[-24,2],[-27,2],[-24,1],[-24,1],[-27,2],[-24,1],[-25,1],[-24,2],[-27,2],[-24,1],[-24,1],[-24,2],[-25,1],[-24,2],[-24,1],[-24,1],[-25,2],[-24,1],[-24,1],[-27,2],[-24,1],[-27,2],[-24,1],[-25,2],[-24,1],[-24,1],[-24,2],[-24,1],[-25,1],[-27,2],[-24,1],[-24,1],[-24,1],[-24,2],[-25,1],[-24,1],[-24,1],[-27,2],[-24,1],[-25,1],[-24,2],[-24,1],[-24,1],[-24,2],[-27,1],[-24,2],[-27,1],[-25,2],[-24,1],[-24,2],[-24,1],[-22,1],[-3,0],[-27,2],[-24,1],[-24,2],[-27,1],[-27,2],[-27,1],[-24,2],[-24,1],[-25,2],[-24,1],[-24,1],[-24,1],[-27,2],[-24,1],[-27,2],[-24,1],[-25,1],[-24,1],[-24,1],[-24,2],[-24,1],[-25,1],[-24,1],[-24,2],[-24,1],[-25,1],[-27,2],[-24,1],[-24,1],[-24,1],[-24,2],[-25,1],[-24,1],[-27,2],[-24,1],[-24,1],[-25,2],[-2,0],[-24,2],[-27,1],[-27,1],[-24,2],[-25,1],[-24,1],[-27,1],[-13,1],[-11,1],[-24,1],[-24,1],[-25,2],[-24,1],[-24,1],[-24,1],[-27,2],[-25,1],[-24,2],[-24,1],[-24,1],[-24,1],[-25,2],[-24,1],[-24,1],[-24,1],[-25,1],[-24,2],[-24,1],[-24,1],[-25,1],[-24,1],[-24,1],[-24,1],[-25,1],[-24,1],[-24,2],[-24,1],[-27,1],[-24,1],[-25,2],[-27,1],[-24,1],[-24,1],[-24,1],[-25,1],[-24,2],[-24,1],[-24,1],[-24,2],[-25,1],[-24,1],[-24,1],[-24,1],[-24,1],[-27,2],[-25,1],[-27,1],[-24,1],[-27,2],[-22,0],[-2,1],[-24,1],[-24,1],[-11,0],[-14,1],[-24,1],[-27,1],[-24,1],[-24,1],[-46,4],[-409,13],[-4,0],[9,33],[14,31],[16,28],[12,38],[4,33],[14,36],[6,7],[2,4],[11,14],[21,16],[30,16],[18,7],[5,2],[13,5],[27,10],[14,0],[8,0],[1,0],[25,-2],[42,-8],[2,0],[21,-8],[19,-7],[28,-14],[7,-4],[9,2],[16,3],[16,15],[3,3],[7,28],[0,38],[12,36],[9,28],[9,31],[-7,33],[-12,33],[17,24],[-7,31],[-29,5],[-31,11],[-3,1],[-21,16],[-20,19],[-2,28],[10,30],[-14,26],[-17,2],[-4,1],[-2,0],[-36,-2],[-24,-7],[-24,-5],[-39,-6],[-4,-1],[-27,5],[-25,4],[-17,3],[-96,2],[-52,2],[-117,1],[-2,0],[-85,5],[-54,2],[-26,1],[-1,0],[-66,3],[-164,6],[-110,4],[-5,1],[-43,1],[-34,2],[-31,1],[-133,5],[-77,3],[-364,14],[-126,4],[-95,3],[-137,4],[-192,8],[-515,18],[-227,9],[-26,-1],[-4,0],[-107,4],[-45,2],[-118,7],[-75,2],[-62,3],[-100,3],[-305,11],[-29,1],[-40,2],[-101,4],[-1,0],[-22,1],[-213,9],[-411,18],[-239,10],[-77,4],[-299,13],[-71,4],[-79,3],[-89,4],[-110,5],[-33,2],[-180,8],[-58,3],[-72,3],[-28,1],[-146,5],[-40,2],[-26,3],[-390,16]],[[36075,28380],[7,83],[45,540],[10,110],[9,108],[2,84],[0,5],[2,25],[10,139],[8,107],[4,56],[2,27],[29,390],[12,170],[11,152],[14,183],[7,104],[21,287],[0,1],[5,65],[9,124],[-1,26],[2,40],[0,1],[2,27],[16,182],[4,92],[5,81],[23,390],[1,35],[6,48],[4,28],[10,122],[0,5],[4,52],[2,34],[0,6],[14,194],[14,186],[12,163],[7,98]],[[75052,30184],[-105,4],[-53,1],[-4,0],[-72,3],[-52,1],[-200,9],[-171,7],[-70,3],[-93,4],[-31,0],[-66,2],[-69,4],[-324,12],[-107,4],[-21,1],[-24,1],[-25,1],[-4,0],[-84,3],[-1,0],[-124,5],[-72,3],[-36,1],[-27,1],[-8,0],[-39,0],[-126,6],[-15,1],[-34,3],[-26,1],[-37,2],[-13,1],[-48,1],[-124,5],[-28,0],[-23,-11],[-33,-20],[-24,-17],[-22,-16],[-29,-18],[-36,-12],[-14,-2],[-21,-3],[-4,-1],[-7,-1],[-64,-7],[-81,-8],[-26,-4],[-75,-29],[-102,-48],[-44,-35],[-24,-73],[-13,-65],[-3,-59],[-6,-119],[-18,-122],[-16,-89],[-13,-76],[-21,-77],[-55,-161],[-18,-78],[2,-24],[1,-19],[5,-38],[-5,-19],[8,-13],[3,-27],[6,-55],[1,-6],[5,-25],[11,-28],[-1,-34],[-8,-31],[-15,-34],[28,-1],[58,-2],[53,-1],[178,-7],[81,-3],[-2,-38],[-4,-82],[-9,-158],[-1,-7],[-2,-50],[-7,-125],[-8,-133],[-9,-125],[-5,-71],[-11,-109],[-3,-36],[-7,-129],[-2,-48],[-2,-32],[-3,-57],[-13,-80],[-271,9],[-46,1],[-24,1],[-99,-1],[-6,0],[-107,4],[-23,1],[-65,3],[-5,1],[-192,5],[-114,9],[-141,13],[-116,4],[1,30],[-1,80],[0,5],[-1,33],[-85,3],[-18,0],[-19,1],[-114,5],[-10,0],[-69,4],[-3,0],[-136,6],[-75,4],[7,79],[-81,4],[-129,5],[-30,-2],[-35,3],[-70,5],[-135,5],[-167,7],[-122,5],[-54,2],[-41,2],[-58,-11],[-2,-92],[-3,-140],[0,-1],[-2,-49],[-4,-51],[-6,-74],[-6,-81],[-13,-159],[-6,-109],[-5,-109],[0,-1],[-1,-26],[-8,-161],[-4,-79],[-86,3],[-100,5],[-107,5],[-33,2],[-59,3],[-59,9]],[[69092,26696],[-97,5],[-65,3],[-116,5],[-89,4],[-106,5],[-26,2],[-54,2],[-56,3],[-73,3],[-41,2],[-52,3],[-63,3],[-270,13],[-47,2],[-24,1],[-6,0],[-61,3],[-27,1],[-46,2],[-24,2],[-272,12],[-278,14],[-41,2],[-9,0],[-30,1],[-223,11],[-23,1],[-166,9],[-63,3],[-280,16],[-41,2],[-45,2],[-143,8],[-41,3],[-36,1],[-124,7],[-42,3],[-36,2],[-132,7],[-34,2],[-87,4],[-29,2],[-76,4],[-337,18],[-25,2],[-273,15],[-123,6],[-93,5],[-74,4],[-55,3],[-33,2],[-27,1],[-85,5],[-24,1],[-26,2],[-128,7],[7,96],[5,53],[2,30],[12,146],[10,111],[0,8],[15,175],[5,60],[10,130],[9,100],[4,55],[2,26],[11,127],[2,27],[4,46],[5,65],[3,27],[2,23],[1,23],[6,65],[3,42],[3,30],[8,101],[5,64],[1,10],[4,33],[1,28],[3,28],[0,2],[44,530],[4,54]],[[36075,28380],[-143,-209],[-1,-1],[-63,-92],[-23,-32],[-57,-79],[-51,-73],[-41,-54],[-1,-1],[-72,-104],[-133,-191],[-4,-6],[-35,-51],[-54,-74],[-135,-194],[-39,-56],[-232,-337],[-95,-136],[-142,-204],[-50,-73],[-85,-122],[-93,-141],[-43,-61],[-117,-176],[-233,-336],[-23,-34],[-42,-60],[-173,-251],[-142,-197],[-140,-198]],[[33613,24837],[-1,1],[-60,4],[-144,1],[-7,0],[-238,0],[-403,1],[-214,1],[-149,0],[-204,1],[-451,2],[-30,0],[-62,0],[-343,1],[-115,1],[-382,1],[-5,0],[-146,0],[-35,0],[-245,1],[-95,1],[-45,1],[-148,2],[-54,0],[-139,1],[-186,3],[-89,2],[-6,0],[-324,2],[-13,0],[-134,2],[-197,2],[-241,3],[-99,2],[-61,0]],[[28548,24873],[34,435],[4,52],[6,58],[12,162],[16,201],[23,309],[30,396],[7,95],[5,57],[3,46],[0,3],[4,49],[15,196],[13,182],[5,57],[35,474],[17,216],[6,76],[0,1],[5,29],[12,111],[2,27],[4,42],[4,47],[10,115],[9,107],[0,3],[11,132],[3,27],[27,325],[0,1],[17,198],[-158,11],[-35,1],[-3,1],[-424,31],[-178,13],[-3,0],[-35,3],[-185,14],[-50,3],[-42,3],[-418,22],[-17,1],[-82,5],[-125,9],[-53,4],[-96,5],[-229,16],[-48,3]],[[61794,29408],[-7,-88],[-3,-27],[-2,-32],[-9,-102],[-12,-153],[-7,-75],[-4,-54],[-4,-43],[-5,-68],[-8,-96],[-5,-55],[-2,-29],[-5,-53],[-10,-120],[-3,-36],[-3,-42],[-1,-16],[-3,-33],[-3,-30],[-2,-33],[-1,-3],[-2,-34],[-5,-59],[-3,-36],[-3,-30],[-1,-20],[-4,-45],[-6,-73],[-1,-13],[-1,-10],[0,-4],[-4,-45],[-1,-7],[-3,-40],[-3,-40],[-8,-97],[-2,-45],[-3,-33],[-3,-30],[-4,-36],[-2,-17],[-8,-99],[-1,-16],[0,-26],[-5,-34],[-3,-28],[-3,-40],[-5,-58],[-3,-41],[-2,-22],[-1,-10],[-1,-18],[-1,-8],[-9,1],[-22,1],[-32,2],[-45,3],[-38,3],[-46,3],[-211,13],[-67,5],[-98,6],[-58,4],[-66,4],[-30,2],[-56,3],[-26,2],[-29,2],[-26,2],[-28,1],[-25,2],[-6,0],[-73,5],[-124,8],[-139,9],[-25,2],[-43,2],[-131,9],[-32,2],[-114,7],[-13,1],[-197,13],[-66,4],[-86,5],[-24,2],[-28,2],[-44,2],[-33,2],[-41,3],[-61,4],[-297,19],[-36,2],[-64,4],[-36,2],[-8,-89],[-3,-30],[-3,-31],[-3,-33],[-4,-44],[-4,-36],[-4,-41],[-10,-109],[-1,-8],[-6,-69],[-1,-9],[-11,-115],[-1,-14],[-6,-62],[-12,-121],[-10,-105],[-3,-34],[-14,-150],[-6,-63],[-6,-64],[-4,-38],[-4,-39],[-8,-84],[-8,-85],[-3,-39],[-4,-39],[-6,-68],[-9,-93],[-14,-143],[-20,-209],[-10,-106],[-8,-92]],[[58764,25012],[-157,8],[-45,2],[-1,0],[-83,5],[-95,4],[-4,1],[-95,4],[-111,6],[-93,6],[-204,14],[-264,18],[-279,13],[-37,3],[-54,4],[-157,11],[-70,2],[-75,3],[-25,2],[-130,12],[-170,10],[-28,1],[-25,2],[-50,2],[-2,0],[-259,15],[-74,4],[-27,2],[-29,1],[-43,3],[-155,9],[-81,4],[-82,5],[-38,2],[-127,7],[-55,4],[-24,-1],[-25,1],[-26,2],[-47,2],[-26,2],[-123,7],[-3,0],[-41,2],[-97,5],[-68,4],[-24,1],[-43,2],[-56,2],[-39,2],[-14,1],[-13,2],[-28,1],[-30,1],[-24,1],[-33,2],[-36,3],[-30,0],[-26,1],[-65,4],[-36,2],[-185,9],[-435,22],[-61,3],[-339,23],[-2,-42],[-2,-37],[-2,-42],[-3,-42],[-1,-15],[-4,-75],[0,-5],[-7,-68],[-14,-142],[-6,-60],[-31,-143],[-76,5],[-95,5],[-175,10],[-39,3],[-144,8],[-276,16],[-538,31],[-73,4],[-118,7],[-127,8],[-385,22],[-77,4],[-100,3],[-28,3],[-25,2],[-30,2],[-174,10],[-232,23],[-9,-98],[-21,-269],[-205,9],[-320,15],[-6,0],[-84,4],[-154,7],[-111,5],[-83,6],[-117,7],[-32,2],[-35,3],[-144,9],[-308,20],[-59,4],[-95,6],[-56,5],[-335,27],[-3,0],[-22,2],[-56,5],[-55,4],[-143,12],[-199,16]],[[48107,24603],[15,176],[6,94],[5,80],[3,34],[3,48],[34,516],[7,96],[4,68],[2,17],[4,56],[8,116],[4,61],[-2,38],[-1,29],[1,2],[8,22],[9,118],[7,96],[4,57],[0,1],[27,393],[3,39],[4,45],[14,152],[5,54],[5,60],[2,28],[1,42],[0,17]],[[87812,28985],[-71,-93],[-65,-57],[-89,-126],[-62,-62],[-84,-76],[-207,-188],[-100,-70],[-81,-58],[-2,0],[-3,-3],[-1,-1],[-255,-226],[-81,-72],[-2,-2],[0,-1],[-161,-114],[-51,-36],[-17,-44],[-47,-128],[-64,-90],[-2,-3],[-31,-50],[-1,-1],[-1,-1],[-87,-148],[-30,-42],[3,-7],[-25,-38],[-14,-33],[-33,-47],[-58,-45],[-61,-78],[-135,-145],[-62,-103],[6,-45],[-65,-78],[-76,-76],[-117,-67],[-33,-6],[-268,-21],[-81,-10],[-12,-7],[-40,-3],[-143,-33],[-85,-16],[-188,-73],[-8,1],[-125,-73],[-42,-1],[-26,-11],[-80,-51],[-40,-43],[-18,-19],[-13,-39],[-27,-78],[-57,-71],[-88,-95],[-42,-26],[-106,-100],[-11,-16],[-54,-44],[-80,-97],[-45,-67],[-21,-42],[-14,-53],[3,-34],[20,-67],[-8,-73],[-33,-55],[-29,-66],[-4,-4],[-26,-23],[-84,-39],[-82,-11],[-41,-1],[-62,2],[-10,1],[-6,1],[-42,4],[-85,15],[-53,18],[-2,0],[-1,1],[-61,16],[-3,1],[-1,0],[-49,10],[-39,10],[-1,0],[-5,1],[-4,0],[-3,1],[-15,0],[-1,0],[-3,0],[-88,-5],[-1,0],[-90,-12],[-26,-6],[-1,-1],[-67,-17],[-1,0],[-21,-6],[-2,0],[-41,-12],[-1,-1],[-1,0],[-10,-3],[-3,-1],[-4,-2],[-3,-2],[-1,0],[-14,-8],[-53,-29],[-37,-19],[-114,-62],[-4,-3],[-4,-2],[-3,-3],[-1,-1],[-9,-8],[-110,-35],[-1,0],[-78,-27],[-139,-49],[-12,2],[-127,-67],[-30,-15],[-21,-10],[-159,-49],[-3,-1],[-4,-2],[-4,-2],[-1,0],[-20,-12],[-65,-41],[-12,0],[-37,-1],[-5,-4],[-158,-113],[-27,-25],[-87,-56],[-105,-55],[-83,-45],[-69,-36],[-44,-15],[-141,-92],[-66,-47],[-78,-66],[-103,-63],[-125,-36],[-424,-32],[-66,-7],[-246,-26],[-17,19],[-32,19],[-79,47],[-76,58],[-65,74],[-64,98],[-54,111],[-14,60],[-22,38],[-7,28],[-25,42],[-25,65],[-31,125],[-18,123],[-5,21],[-13,16],[-31,80],[9,47],[-18,82],[-31,56],[-56,76],[-72,82],[-46,41],[-120,88],[-41,26],[-27,10],[-60,41],[-71,44],[-94,58],[-171,60],[-88,-8],[-51,-7],[-33,-2],[-33,-1],[-150,-29],[-64,-23],[-209,-120],[-58,-39],[-86,-82],[-191,-231],[-60,-58],[-130,-146],[-25,-12],[-151,-155],[-123,-102],[-330,-144],[-135,-58],[-84,-55],[-62,-20],[-8,1],[-90,0],[-71,-92],[-28,-15],[-98,-67],[-124,-112],[-50,-30],[-11,-7],[-75,-60],[-24,-41],[-54,-93],[-29,-81],[-4,-75],[-11,-322],[-15,-81],[-19,-18],[-6,-11],[-7,-15],[-51,-140],[-11,-61],[-14,-137],[0,-13],[-1,-36],[12,-151],[2,-145],[12,-91],[-5,-182],[-20,-91],[-17,-35],[-21,-45],[-11,-14],[-44,-53],[-61,-37],[-64,-13],[-236,38],[-143,32],[-54,17],[-45,51],[-33,24],[-17,13],[-18,4],[-70,17],[-21,7],[-3,1],[-63,24],[-122,16],[-12,2],[-161,-25],[-76,-16],[-14,-3],[-87,-3],[-317,42],[-44,-3],[-4,0],[-3,0],[-157,27],[-9,2],[-78,14],[-165,-4],[-11,-2],[-75,-14],[-64,-37],[-117,-6],[-59,-10],[-78,-21],[-84,-30],[-130,-81],[-69,-60],[-61,-68],[-69,-81],[-40,-85],[-20,-87],[-5,-75],[10,-105],[16,-71],[46,-110],[47,-106],[18,-78],[1,-86],[-16,-92],[-13,-22],[-107,-65],[-47,7],[-656,-166]],[[71861,20721],[2,19],[16,189],[5,81],[4,58],[2,41],[7,113],[4,57],[3,59],[3,46],[2,29],[0,8],[2,30],[11,181],[4,66],[14,230],[1,26],[7,109],[2,25],[-287,11],[-257,9],[-55,2],[-52,1],[-67,3],[-79,3],[-65,2],[-110,3],[-70,3],[-58,2],[-25,1],[-78,2],[-143,5],[-38,1],[-257,9],[-24,1],[-26,1],[-46,1],[-94,4],[-111,3],[-176,6],[-124,4],[5,98],[5,96],[7,136],[2,40],[6,99],[7,130],[8,153],[-263,12],[-174,7],[0,1],[5,96],[4,112],[3,36],[2,48],[5,82],[-173,7],[-142,5],[-26,1],[-96,4],[12,184],[3,34],[3,30],[4,44],[7,80],[7,110],[2,39],[2,39],[8,127],[3,55],[9,151],[3,62],[5,91],[4,63],[12,206],[5,97],[8,147],[5,83],[3,61],[3,38],[6,112],[4,68],[3,53],[2,45],[2,33],[3,56],[4,64],[2,44],[6,100],[3,54],[3,57],[9,152],[2,34],[2,44],[2,32],[4,73],[0,1],[3,51],[7,120],[8,140],[3,70],[9,155],[2,28],[2,41]],[[10567,30248],[0,-26],[1,-32],[1,-45],[0,-32],[2,-52],[1,-31],[1,-26],[1,-29],[3,-96],[2,-73],[2,-55],[1,-34],[0,-43],[1,-38],[0,-57],[0,-34],[1,-62],[0,-1],[1,-35],[0,-29],[1,-56],[0,-26],[-1,-39],[-4,-192],[5,-21],[12,-11],[23,-25],[7,-6],[196,73],[58,20],[55,19],[101,23],[50,11],[255,86],[-7,-74],[-1,-9],[-2,-25],[-5,-51],[-6,-82],[-18,-221],[-4,-49],[-8,-106],[-5,-57],[-2,-30],[-5,-65],[-3,-49],[-3,-47],[-4,-25],[-4,-72],[-7,-57],[-2,-29],[-5,-64],[-5,-43],[-2,-32],[-3,-30],[-2,-29],[-7,-76],[0,-26],[-5,-45],[0,-7],[-6,-67],[0,-36],[-2,-43],[0,-36],[-3,-33],[-3,-47],[-6,-100],[-1,-27],[-7,-72],[-6,-25],[-3,-34],[-4,-64],[-2,-39],[-19,-179],[-7,-69],[0,-150],[34,-2],[36,-8],[-3,-29],[-7,-69],[-1,-12],[-4,-49],[-8,-71],[-5,-56],[-4,-40],[-3,-27],[-3,-27],[-2,-27],[-1,-5],[-3,-26],[-3,-35],[-7,-53],[-2,-14],[-1,-13],[-12,-131],[-2,-29],[-3,-37],[-8,-83],[-3,-31],[-6,-60],[-3,-32],[-4,-47],[-11,-108],[-7,-79],[-6,-55],[-3,-30],[-3,-27],[-4,-39],[-3,-28],[-6,-50],[-6,-64],[-3,-28],[-5,-59],[-5,-51],[-5,-56],[-5,-46],[-5,-49],[-6,-58],[-3,-39],[-3,-27],[-11,-96],[-3,-28],[-3,-31],[-6,-49],[-5,-51],[-3,-32],[-6,-55],[-5,-59],[-2,-28],[-4,-46],[-3,-35],[-4,-38],[-4,-45],[-6,-77],[-4,-46],[-3,-33],[-3,-32],[-3,-36],[-2,-28],[-3,-41],[-3,-33],[-3,-41],[-3,-42],[-4,-35],[-2,-26],[-5,-50],[-3,-47],[-3,-36],[-3,-38],[-1,-18],[-1,-14],[-4,-39],[-10,-136],[-3,-31],[-2,-31],[-5,-52],[-4,-53],[-3,-27],[-2,-25],[-2,-34],[-5,-60],[-6,-61],[-2,-35],[-3,-34],[-3,-34],[-5,-56],[-4,-47],[-4,-49],[0,-28],[-2,-26],[-2,-27],[-3,-34],[-3,-33],[-2,-26],[-6,-35]],[[10843,22668],[-488,68],[-393,55],[-101,14],[-306,23],[-588,44],[-67,5],[-57,5],[-359,27],[-244,18],[-100,8],[-368,27],[-887,67],[-891,52],[-1458,86],[-52,3],[-31,0],[-50,-1],[-8,0],[-12,-4],[-19,-16],[-61,-24],[-86,-30],[-12,-9],[-12,-9],[-6,-13],[-6,-13],[-19,-39],[-10,-20],[-2,2],[-25,0],[-41,-1],[-245,-7],[-93,2],[-5,0],[-95,0],[-345,-2],[-89,0],[-127,0],[-281,0],[-82,0],[-69,-3],[-2,0],[-489,3],[-50,0],[-26,0],[-119,0],[-215,0],[-33,0],[-81,3],[-51,1],[-51,1],[-32,0],[-34,0],[-96,0],[-52,-1],[-73,-1],[-143,7],[-322,8],[-34,0],[-185,5],[-43,0],[-228,-6],[-275,-6]],[[19,22997],[0,2],[4,165],[2,129],[0,1],[0,2],[0,14],[0,8],[0,28],[0,26],[1,21],[0,8],[1,28],[0,36],[0,12],[0,36],[1,42],[0,10],[0,16],[1,11],[0,31],[1,35],[0,4],[0,12],[1,52],[1,56],[0,2],[1,65],[0,34],[0,1],[0,2],[0,10],[0,26],[1,62],[0,33],[1,60],[1,37],[1,80],[1,41],[2,98],[1,21],[0,29],[1,27],[0,5],[0,22],[1,3],[2,4],[1,55],[1,101],[1,31],[2,53],[-1,90],[0,10],[2,54],[0,15],[1,10],[0,13],[7,197],[-1,14],[-11,108],[0,15],[-1,22],[1,31],[1,2],[2,2],[6,4],[2,2],[2,4],[0,5],[1,6],[0,24],[1,65],[2,43],[0,27],[0,22],[1,27],[0,3],[2,76],[2,103],[1,53],[1,35],[1,51],[1,67],[0,4],[1,35],[1,28],[1,59],[1,63],[1,68],[0,10],[1,39],[1,57],[0,7],[0,14],[1,7],[0,34],[1,55],[1,34],[0,13],[0,46],[1,62],[1,87],[1,60],[2,66],[0,31],[1,30],[0,68],[1,5],[0,29],[0,12],[0,10],[1,50],[0,20],[1,71],[0,36],[0,14],[2,81],[1,42],[0,19],[0,43],[0,3],[1,6],[1,68],[0,13],[0,36],[-2,5],[0,11],[13,375],[0,147],[1,155],[1,41],[-1,27],[1,49],[0,18],[1,20],[1,29],[3,229],[0,15],[1,194],[0,53],[1,51],[0,33],[2,310],[0,329],[3,50],[0,32],[0,12],[0,41],[0,1],[3,34],[1,8]],[[19582,29730],[-8,-115],[-4,-38],[-12,-141],[-5,-51],[-9,-92],[-6,-58],[-3,-35],[-3,-34],[-3,-32],[-3,-27],[-1,-13],[-5,-55],[-5,-65],[-3,-26],[-3,-31],[-2,-32],[-5,-51],[-3,-36],[-2,-26],[-3,-44],[-4,-46],[-2,-26],[-1,-20],[-1,-9],[-4,-49],[-2,-35],[-5,-48],[-1,-9],[-2,-20],[-3,-43],[-2,-26],[-3,-31],[-7,-83],[-17,-219],[-2,-30],[-5,-67],[-3,-42],[-3,-38],[-1,-1],[-2,-29],[-3,-40],[-4,-39],[-8,-94],[-7,-79],[-19,-227],[-4,-45],[-3,-38],[-3,-38],[-9,-101],[-9,-101],[-5,-66],[-1,-10],[-7,-81],[-3,-41],[-4,-42],[-10,-114],[-9,-115],[-3,-26],[-4,-57],[-16,-182],[-6,-70],[-6,-69],[-4,-52],[-4,-52],[-10,-112],[0,-4],[-3,-27],[-2,-31],[-8,-95],[-9,-95],[-4,-55],[-7,-78],[-3,-33],[0,-8],[-7,-81],[0,-1],[-4,-43],[-2,-28],[-5,-54],[-4,-49],[-2,-26],[-3,-27],[-7,-77],[0,-2],[-4,-49],[-4,-53],[-24,-270],[-2,-26],[-1,-13],[-9,-87],[-20,-217],[-6,-65],[-8,-95],[-5,-54],[-5,-49],[-2,-30],[-3,-29],[-13,-133],[-12,-133],[-10,-107],[-8,-79],[-7,-66],[-2,-75],[-1,-20],[-3,-36],[-10,-84],[-8,-76],[-2,-27],[-9,-112],[-8,-103],[-4,-40],[-4,-49],[-7,-96],[-4,-53],[-4,-31],[-4,-34],[-4,-36],[0,-2],[-9,-90],[-2,-21],[0,-8],[-3,-26],[-3,-36],[-7,-84],[-17,-201],[-18,-199],[-2,-29],[-12,-158],[0,-4],[-4,-35],[-4,-51],[-5,-62]],[[18890,21719],[-28,1],[-29,2],[-19,2],[-8,0],[-29,2],[-42,3],[-26,2],[-1,0],[-34,2],[-40,2],[-133,9],[-38,3],[-85,6],[-47,3],[-71,5],[-74,5],[-161,11],[-34,2],[-24,2],[-40,2],[-49,4],[-32,2],[-49,3],[-99,7],[-149,11],[-24,1],[-26,2],[-28,2],[-27,2],[-26,1],[-25,2],[-42,3],[-39,3],[-50,3],[-29,2],[-26,2],[-74,5],[-82,6],[-34,2],[-32,2],[-32,2],[-25,2],[-14,1],[-12,1],[-24,1],[-25,2],[-58,4],[-102,7],[-43,3],[-82,6],[-90,6],[-26,2],[-29,2],[-23,2],[-41,3],[-26,1],[-27,2],[-49,4],[-33,2],[-33,2],[-34,2],[-3,1],[-27,1],[-35,3],[-31,2],[-48,3],[-42,3],[-26,2],[-37,16],[-219,9],[-30,1],[-92,3],[-83,3],[-23,1],[-31,2],[-43,3],[-47,3],[-74,5],[-44,3],[-40,2],[-54,4],[-62,4],[-24,2],[-29,2],[-6,0],[-39,3],[-36,2],[-58,4],[-25,2],[-41,3],[-30,2],[-27,2],[-45,3],[-29,2],[-43,3],[-72,5],[-50,3],[-30,2],[-37,3],[-78,5],[-34,2],[-41,3],[-36,3],[-93,7],[-24,2],[-88,7],[-36,2],[-45,3],[-70,4],[-29,2],[-65,4],[-24,2],[-25,1],[-29,2],[-31,2],[-57,5],[-44,3],[-5,0],[-54,4],[-25,2],[-37,2],[-57,4],[-53,4],[-40,3],[-23,2],[-33,2],[-45,3],[-2,0],[-24,2],[-37,3],[-24,1],[-4,0],[-23,2],[-24,1],[-28,2],[-33,2]],[[13025,22120],[2,17],[2,7],[28,69],[3,9],[14,71],[1,6],[-37,27],[-45,14],[-19,12],[-56,13],[-22,19],[-9,18],[0,31],[10,37],[31,54],[18,32],[3,4],[-21,9],[-31,2],[-33,3],[-40,3],[-61,4],[-24,3],[-23,1],[-46,3],[-58,5],[-25,3],[-75,10],[-72,10],[-66,9],[-25,3],[-24,3],[-76,9],[-29,4],[-46,7],[-26,2],[-14,0],[-23,1],[-31,1],[-60,1],[-27,1],[-24,1],[-38,3],[-23,5],[-34,5],[-44,2],[-25,1],[-37,2],[-31,2],[-32,2],[-1,0],[-25,1],[-30,1],[-23,1],[-27,1],[-42,1],[-37,1],[-34,2],[-25,0],[-33,2],[-27,1],[-24,0],[-52,2],[-35,0],[-51,-2],[-44,-2],[-69,-5],[-29,-1],[-36,-3],[-39,-1],[-35,-3],[-30,-1],[-28,-2],[-24,-1],[-38,-3],[-24,-1]],[[22167,21521],[-178,10],[-37,2],[-82,6],[-133,8],[-210,12],[-30,2],[-69,4],[-26,2],[-68,4],[-64,4],[-3,0],[-73,4],[-182,11],[-158,9],[-32,2],[-290,18],[-178,11],[-52,3],[-74,4],[-22,1],[-185,10],[-33,2],[-33,2],[-42,3],[-27,1],[-36,2],[-35,2],[-109,7],[-60,3],[-127,8],[-42,2],[-43,3],[-76,5],[-76,6]],[[19282,21694],[-73,3],[-139,10],[-22,1],[-6,0],[-24,2],[-67,4],[-61,5]],[[28548,24873],[-72,-44],[-13,-8],[-41,-25],[-34,-22],[-99,-62],[-98,-62],[-208,-133],[-225,-146],[-102,-67],[-28,-18],[-70,-45],[-67,-43],[-122,-78],[-59,-39],[-6,-4],[-89,-58],[-47,-32],[-72,-47],[-129,-86],[-185,-122],[-121,-80],[-106,-71],[-4,-2],[-17,-11],[-109,-68],[-20,-14],[-25,-19],[-21,-13],[-35,-24],[-33,-21],[-22,-15],[-54,-37],[-4,-3],[-31,-21],[-22,-15],[-45,-29],[-104,-67],[-21,-15],[-315,-214],[-39,-26],[-61,-41],[-125,-84],[-44,-29],[-76,-50],[-155,-101],[-263,-172],[-23,-15],[-32,-21],[-114,-76],[-26,-17],[-11,-7],[-128,-85],[-55,-37],[-168,-112],[-27,-17],[-111,-73],[-46,-31],[-85,-57],[-1,-1],[-38,-29],[-46,-88],[-31,-32],[-50,-53],[-28,-49],[-21,-54],[-20,-32],[-32,-53],[-10,-52],[-5,-71],[-1,-7],[-1,-11],[-1,-9],[-2,-22],[-10,-23],[-19,-15],[-21,-14],[-23,-10],[-22,-19],[-20,-19],[-21,-6],[-24,-3],[-1,-2],[-1,-3],[-1,-9],[11,-70],[0,-2],[3,-38],[3,-34],[1,-6],[-13,-5],[-22,-2],[-7,3],[-1,0],[-12,6],[-11,6],[-9,0],[-1,0],[-21,-11],[-5,-13],[-45,-134],[-4,-8],[-1,0],[-8,-8],[-6,-5],[-13,-4],[-22,-8],[-17,-4],[-45,-10],[-7,-1],[-38,-4],[-67,-6],[-11,-1],[-3,1],[-11,-1],[-54,1],[-31,1],[-59,2],[-249,7],[6,101],[6,99],[0,6],[2,31],[5,77],[4,76],[5,74],[6,108],[-111,6],[-62,4],[-217,12],[-151,9],[-94,5],[-91,5]],[[71861,20721],[-171,-189],[-18,-20],[6,-2],[109,-35],[-2,-3],[-2,-4],[-1,-2],[-29,-58],[0,-1],[-39,-84],[-1,-1],[0,-1],[-40,-92],[0,-1],[-10,-25],[-9,-22],[-10,-20],[-15,-31],[-11,-17],[-6,-5],[-24,-23],[-58,-32],[-39,-15],[-70,-27],[-3,-2],[-4,-1],[-1,-1],[-97,-55],[-45,-34],[-55,-55],[-12,-23],[-67,-26]],[[71137,19814],[-6,1],[-113,9],[-87,4],[-30,1],[-53,3],[-53,2],[-67,3],[-28,1],[-39,2],[-50,2],[-69,3],[-57,3],[-95,4],[-100,4],[-94,4],[-88,4],[-435,19],[-380,16],[-91,4],[-23,1],[-5,0],[-50,3],[-110,5],[-47,2],[-182,8],[-259,11],[-46,2],[-184,8],[-23,2],[-140,6],[-140,6],[-159,7],[-80,3],[-36,2],[-93,4],[-128,6],[-28,1],[-242,11],[-43,2],[-28,1],[-93,4],[-114,5],[-174,8],[-40,1],[-272,12],[-65,3],[-29,1],[-97,5],[-35,2],[-79,3],[-13,1],[-11,1],[-27,1],[-168,8],[-80,4],[-45,2],[-32,1],[-29,2],[-73,3],[-231,11],[-56,3],[-53,2],[-88,4],[-74,4],[-89,4],[-34,1],[-323,16],[-107,5],[-216,10],[-83,3],[-71,4],[-14,0],[-39,2],[-71,4],[-57,2],[-77,4],[-72,3],[-40,2],[-111,5],[-37,2],[-102,5],[-387,22],[-24,2],[-25,1],[-38,2],[-351,21],[-135,7],[-130,8],[-174,10],[-39,2],[-98,6],[-125,7],[-72,4],[-70,4],[-35,2],[-73,4],[-6,1],[-90,5],[-211,12],[-136,8],[-65,3],[-258,15],[-68,4],[-178,10],[-3,0],[-67,4],[-569,34],[-285,16],[-33,2],[-44,3],[-254,14],[-150,9],[-10,1],[-179,10]],[[59253,20410],[6,75],[6,63],[6,74],[7,84],[2,26],[1,2],[3,35],[12,143],[5,57],[9,113],[14,166],[14,157],[8,96],[4,47],[4,54],[3,26],[2,32],[6,26],[1,28],[1,37],[2,26],[11,128],[20,227],[6,79],[8,95],[17,189],[8,99],[3,31],[5,59],[-82,5],[-32,2],[-79,4],[-50,3],[-70,5],[-27,1],[-2,0],[-238,15],[-103,6],[-72,4],[-133,8],[14,165],[5,47],[3,36],[21,237],[4,39],[4,45],[19,211],[3,33],[4,41],[3,41],[9,101],[5,48],[6,68],[11,120],[4,52],[9,95],[8,88],[7,85],[8,88],[8,88],[16,179],[14,145],[6,74],[0,2],[3,24],[11,123]],[[48107,24603],[-6,-64],[-20,-214],[-5,-53],[-6,-79],[-20,-266],[-17,-210],[-16,-204],[-13,-157],[-15,-184],[-5,-62],[0,-25],[-28,-354],[-10,-125],[-12,-152],[-7,-71],[-2,-21],[-26,-335],[-27,-362],[0,-1],[-2,-34],[-4,-38],[-5,-45],[-3,-38],[-2,-29],[-1,-26],[-16,-180],[-12,-139],[-30,-359],[-2,-23],[-2,-22],[-5,-54],[0,-3],[-13,-157]],[[47775,20517],[-7,-75],[-8,-93],[-4,-44],[-2,-28],[-4,-52],[-8,-86],[-5,-61],[-3,-36],[-1,-5],[-44,-519],[-2,-17],[-1,-9],[-37,2],[-275,16],[-133,8]],[[47241,19518],[-167,10],[-214,14],[-68,5],[-603,39],[-59,4],[-89,6],[-28,2],[-10,0],[-18,2],[-62,4],[-624,40],[-123,9],[-33,1],[-1,0],[-232,12],[-261,14],[-290,15],[-142,8],[-74,4],[-32,1],[-344,18],[-193,10],[-301,16],[-46,2],[-40,3],[-186,9],[-30,2],[-12,0],[-55,3],[-59,3],[-156,9],[-78,4],[-178,9],[-48,3],[-47,3],[-71,5],[-129,8],[-109,6],[-145,7],[-25,1],[-30,1],[-181,10],[-60,3],[-74,4],[-60,2],[-129,6],[-36,3],[-26,2],[-29,2],[-61,4],[-89,5],[-71,4],[-55,3],[-79,4],[-73,3],[-36,2],[-137,8],[-120,5],[-84,6],[-173,12],[-107,7],[-83,5],[-19,1],[-92,6],[-24,2],[-191,13],[-149,9],[-30,2],[-193,10],[-168,7],[-186,10],[-34,2],[-66,4],[-120,8],[-34,2],[-30,1],[-1,0],[-71,5],[-53,3],[-194,11],[-228,14],[-52,3],[-76,5],[-162,9],[-160,10],[-160,9],[-136,9],[-144,8],[-213,13],[-60,3],[-130,8],[-45,3],[-82,5],[-260,15],[-37,3],[-172,9],[-30,2],[-179,10],[-308,17],[-264,15],[-144,6],[-171,8],[-18,1],[-4,0],[-54,2],[-83,3],[-81,4],[-1,0],[-185,6],[-131,5],[-64,2],[-127,5],[-93,3],[-90,4],[-38,1],[-63,3],[-81,3],[-25,1]],[[34060,20253],[9,41],[29,123],[23,100],[18,79],[45,179],[17,65],[10,33],[5,25],[9,33],[12,43],[39,129],[16,56],[-16,-3],[20,31],[-88,-3],[-6,31],[0,1],[30,184],[28,169],[-1,22],[-1,6],[-1,7],[-15,23],[-18,21],[-7,9],[-26,5],[-21,-4],[-52,-21],[-79,-40],[-12,-6],[-19,-11],[-11,-7],[9,-29],[-3,-35],[0,-1],[-67,-63],[-102,-87],[-15,-13],[-45,9],[-42,46],[-51,16],[-44,32],[-109,101],[-52,48],[-32,35],[-8,25],[14,36],[15,92],[-19,36],[-6,18],[-20,26],[-62,58],[-17,17],[-60,34],[-78,29],[-50,44],[-11,11],[-8,77],[9,56],[1,5],[31,44],[29,19],[17,11],[51,8],[25,4],[85,18],[17,5],[19,15],[10,37],[-27,89],[7,44],[2,10],[73,69],[9,8],[29,48],[5,38],[-11,11],[-9,8],[-12,12],[-47,6],[-23,3],[-2,2],[-36,62],[-1,1],[0,4],[-5,81],[-1,8],[2,5],[22,84],[0,2],[3,10],[-1,10],[0,5],[-1,2],[-4,12],[-28,44],[-4,5],[-3,5],[-18,26],[-6,8],[22,110],[1,0],[2,2],[5,20],[1,67],[-2,9],[-3,5],[-1,0],[-40,31],[-9,13],[-29,80],[0,28],[13,68],[1,0],[43,24],[14,8],[3,0],[14,2],[-1,9],[-16,89],[-2,30],[0,2],[1,2],[3,28],[6,31],[0,1],[1,0],[16,67],[4,13],[3,12],[13,42],[5,7],[8,11],[80,79],[32,50],[13,20],[11,16],[3,5],[5,8],[-3,45],[-44,98],[-9,14],[-7,10],[0,1],[-10,9],[-2,1],[-15,11],[-1,0],[-3,0],[-11,13],[-9,16],[-4,14],[2,22],[56,114],[0,2],[1,0],[8,15],[9,14],[2,3],[73,133],[1,2],[1,1],[2,10],[-10,62],[-1,7],[-3,19],[-9,56],[48,51],[0,1],[-10,24],[0,1]],[[59253,20410],[-89,5],[-294,16],[-49,2],[-12,1],[-343,17],[-27,0],[-70,3],[-13,-145],[-18,-197],[-6,-74],[-1,-11],[-2,-25],[0,-3],[-5,-49],[-6,-77],[-1,-6],[-6,-76],[-4,-48],[-17,-238],[-1,-8],[-3,-46],[-1,-27],[-3,-49],[-36,-407],[-1,-27],[-1,-28],[-11,-121],[-13,-223],[-18,-147],[-11,-128],[-9,-107],[-6,-74],[-19,-222],[-13,-165],[-5,-60],[-16,-184],[-11,-193],[-3,-27],[-6,-26],[-12,-133],[0,-1],[-9,-114],[-10,-116],[-32,-379],[-3,-35],[-3,-37],[-4,-52],[-3,-34],[0,-1],[-5,-62],[-11,-137],[-5,-51],[-2,-30],[-1,-8],[-1,-10],[-10,-117]],[[57992,15919],[-128,10],[-50,3],[-71,6],[-1,0],[-67,5],[-187,14],[-1,0],[-238,18],[-2,1],[-36,2],[-278,22],[-122,9],[-26,2],[-109,7],[-170,12],[-64,5],[-51,3],[-128,9],[-78,5],[-229,16],[-86,6],[-40,3],[-208,15],[-42,4],[-113,7],[-86,5]],[[55381,16108],[16,157],[16,161],[25,236],[7,82],[14,148],[27,286],[4,46],[4,47],[4,39],[13,137],[2,27],[3,56],[2,52],[8,38],[11,117],[4,39],[12,133],[6,62],[32,347],[19,212],[1,13],[17,185],[-331,17],[-23,1],[-33,2],[-49,2],[-24,1],[-62,2],[-27,1],[-88,4],[-159,8],[-150,7],[-29,2],[-101,5],[-125,6],[-94,5],[-133,7],[-144,7],[-174,9],[-48,4],[-297,27],[-57,5],[-27,2],[-50,5],[-272,24],[-3,0],[-1,0],[-21,2],[-28,3],[-64,6],[-70,6],[11,113],[10,105],[0,2],[11,114],[4,42],[9,79],[9,84],[10,106],[11,104],[17,176],[-47,11],[-78,12],[-39,7],[-43,7],[-37,5],[-29,4],[-379,44],[-234,31],[-112,0],[-361,1],[-23,0],[-10,0],[-15,0],[-51,0],[-31,0],[-69,1],[-39,-1],[-53,1],[-84,0],[-121,14],[-17,2],[-15,2],[-372,42],[-213,22],[-105,10],[-97,10],[6,61],[1,8],[2,22],[11,112],[3,33],[4,32],[5,56],[-38,2],[-72,4],[-334,18],[-69,4],[-147,8],[-97,5],[-27,2],[-3,0],[-25,1],[-67,4],[-96,5],[-28,2],[-26,1],[-88,5],[-107,6],[-50,3],[-72,4],[-40,3],[-166,9],[-275,15],[-124,7],[-25,1],[-342,19],[-142,8],[-61,3],[-50,3],[-48,3]],[[34060,20253],[-31,-142],[-11,-57],[-18,-89],[-10,-52],[-13,-65],[-15,-73],[-22,-109],[-17,-80],[-108,-530],[-2,-9],[-4,-23],[-23,-129],[-11,-61],[-5,-29],[-14,-81],[-1,-4],[-33,-179],[-31,-145],[-67,-328],[-17,-82],[-2,-9],[-38,-185],[-4,-27],[-7,-35],[-56,-257],[-51,-231],[-22,-101],[-16,-73],[0,-1],[-19,-90],[-14,-64],[-8,-37],[-28,-126],[-21,-99],[-7,-30]],[[33314,16621],[-142,-23],[-3,-1],[-218,-36],[-10,-1],[-37,-6],[-223,-37],[-661,-110],[-9,-1],[-38,-7],[-397,-65],[-245,-40],[-90,-15],[-30,-4],[-144,-24],[-1,0],[-26,-5],[-128,-21],[-94,-16],[-118,-21],[-3,0],[-5,-1],[-81,-11],[-26,-4],[-67,-12],[-124,-19],[-29,-7],[-66,-15],[-31,-4],[-65,-10],[-95,-17],[-122,-23],[-75,-15],[-122,-20],[-109,-21],[-82,-15],[-132,-25],[-52,-10],[-46,-9],[-28,-6],[-57,-10],[-157,-30],[-91,-17],[-60,-12],[-177,-32],[-42,-8],[-73,-14],[-28,-6],[-1,0],[-122,-23],[-122,-25],[-86,-18],[-102,-21],[-155,-33],[-67,2],[-108,2],[-45,0],[-89,1],[-72,4],[-214,6],[-471,14],[-34,0],[-2,0],[-64,2],[-66,2],[-69,2],[-29,1],[-96,3]],[[26641,15734],[-79,2],[-201,7],[-92,3],[-253,7],[-52,2],[-70,3],[-1,0],[-495,-12],[-41,0],[-77,-2],[-425,-9],[-99,0],[-199,-1],[-2,0],[-276,-1],[-148,-1],[-38,-1],[-45,0],[-106,0],[-313,-2],[-39,0],[-26,0],[-35,0],[-37,0],[-10,0],[-78,-1],[-103,0],[-56,0],[-33,0],[-99,2],[-130,1],[-58,1],[-35,0],[-36,3],[-45,-2],[-43,1],[-54,1],[-272,9],[-67,2],[-142,4],[-63,1],[-17,1],[-106,4],[-20,0],[-10,1],[4,57],[0,2],[8,105],[20,285],[2,30],[5,84],[1,20],[17,289],[2,38],[1,67],[1,274],[10,304],[7,180],[9,377],[2,48],[3,173],[2,141],[4,172],[4,149],[3,172],[2,51],[4,57],[0,5],[0,312],[1,45],[3,110],[2,145],[4,234],[0,99],[7,294],[0,51],[1,66],[0,1],[0,84],[1,55],[6,269],[0,26],[2,62],[2,170],[0,54],[2,94],[0,66],[2,99],[1,37],[2,116],[3,90],[2,105]],[[13025,22120],[-30,-35],[-4,-41],[-2,-25],[0,-8],[-3,-30],[-3,-43],[-12,-3],[-12,-4],[-15,-4],[-42,-19],[-28,-28],[-88,-96],[-49,-38],[-39,-29],[-11,-7],[-38,-19],[-56,-26],[-79,-25],[-201,-61],[-54,-30],[-20,-29],[-5,-5],[-13,-28],[-10,-88],[-3,-13],[-3,-9],[-3,-6],[-12,-22],[3,-4],[-39,-54],[-11,-15],[-34,-48],[-17,-21],[-22,-15],[-73,-5],[-10,-6],[-47,-39],[-48,-47],[-47,-39],[-11,-6],[-84,-39],[-42,-14],[-58,-50],[-30,-27],[-19,-16],[13,-20],[3,-15],[5,-13],[9,-15],[17,-18],[24,-19],[2,-6],[16,-52],[9,-28],[23,-74],[11,-30],[5,-14],[9,-19],[6,-13],[9,-12],[10,-10],[11,-7],[15,-6],[21,-4],[13,1],[69,9],[4,0],[110,9],[25,-1],[7,-1],[37,-3],[36,6],[57,11],[43,21],[16,9],[24,12],[35,17],[19,19],[25,10],[38,7],[40,1],[22,-3],[1,0],[20,-10],[18,-14],[8,-11],[3,-7],[22,-47],[1,-1],[50,-67],[19,-18],[13,-12],[27,-35],[0,-2],[9,-30],[-1,-40],[-7,-36],[0,-3],[-14,-40],[-7,-13],[-15,-29],[-42,-47],[-58,-64],[-55,-61],[-45,-38],[-4,-3],[-3,-4],[-5,-6],[-20,-26],[-17,-47],[8,-55],[-28,-54],[-32,-19],[-47,-28],[-15,-4],[-10,-2],[-18,-23],[-34,-43],[-30,-46],[12,-77],[9,-60],[2,-11],[-8,-74],[-37,-14],[-14,-12],[-10,-10],[-19,-34],[-12,-37],[-6,-18],[-2,-20],[-6,-43],[2,-69],[0,-53],[0,-1],[-16,-28],[-10,-101],[-61,-606],[-4,-32],[-3,-30],[-4,-31],[-3,-26],[-3,-31],[-4,-28],[-3,-26],[-5,-32],[-4,-29],[-6,-44],[-1,-3],[-3,-25],[-5,-33],[-3,-26],[-5,-34],[-4,-33],[-4,-26],[-3,-26],[-7,-54],[-7,-52],[-5,-33],[-4,-29],[-4,-30],[-6,-50],[-4,-30],[-5,-35],[-4,-28],[-6,-49],[-10,-71],[-6,-44],[-4,-30],[-5,-36],[-4,-28],[-3,-26],[-4,-27],[-3,-27],[-4,-30],[-4,-26],[-3,-27],[-10,-74],[-1,-3],[-5,-40],[-4,-31],[-4,-28],[-4,-28],[-5,-34],[-7,-52],[-4,-27],[-4,-29],[-1,-9],[-1,-33],[-5,-33],[-3,-27],[-4,-26],[-4,-35],[-4,-35],[-4,-33],[-4,-30],[-7,-58],[-8,-67],[-4,-28],[-4,-28],[-11,-83],[-5,-38],[-5,-40],[-11,-78],[-4,-29],[-5,-48],[-5,-42],[-3,-29],[-4,-30],[-3,-28],[-1,-10],[-2,-17],[-3,-33],[-3,-26],[1,-4],[11,-36]],[[11632,15764],[-144,129],[-23,21],[-91,55],[-127,77],[-250,115],[-166,56],[-72,24],[-102,30],[-188,30],[-64,10],[-46,8],[-162,25],[-135,21],[-53,1],[-34,0],[-67,1],[-12,0],[-60,11],[-82,15],[-16,3],[-11,-6],[-26,-12],[-13,0],[-51,0],[-39,0],[-191,76],[-125,50],[-30,13],[-37,20],[-24,14],[-32,18],[-6,6],[-1,1],[-10,10],[-3,5],[-10,22],[-22,46],[-18,14],[-3,3],[-8,7],[-4,3],[-1,2],[-5,8],[-1,3],[-7,26],[-4,17],[0,3],[-1,3],[-1,2],[0,1],[-5,19],[-19,55],[-28,110],[-3,36],[-3,36],[-4,47],[0,95],[3,19],[6,33],[0,6],[-2,60],[-4,88],[-33,70],[-6,12],[8,45],[17,107],[16,28],[-22,72],[-28,84],[-19,58],[-21,33],[-45,73],[-10,16],[-36,57],[-21,23],[-11,13],[-35,39],[-49,55],[-60,47],[-33,27],[-1,1],[-40,21],[-79,41],[-74,18],[-95,24],[-45,-2],[-118,-6],[-38,-2],[-66,-29],[-37,-17],[-28,-13],[-3,-1],[-4,-2],[-50,-28],[-49,-28],[-6,-5],[-34,-33],[-51,-50],[-67,-65],[-114,-173],[-17,-26],[-51,-50],[-2,-1],[-2,-2],[-44,-34],[-7,-6],[-15,-10],[-20,-15],[-10,-7],[-43,-31],[-6,-4],[-95,-42],[-81,-25],[-9,-2],[-4,-1],[-77,-17],[-24,-4],[-28,-5],[-74,-12],[-5,0],[-18,-2],[-26,-2],[-14,-1],[-28,-1],[-10,0],[-3,0],[-33,4],[-37,8],[-12,4],[-23,11],[-62,35],[-42,25],[-45,23],[-41,20],[-12,6],[-8,4],[-64,27],[-17,7],[-25,8],[-2,0],[-53,5],[-33,9],[-2,1],[-4,1],[-30,0],[-45,-4],[-13,-1],[-17,-2],[-3,-1],[-20,-5],[-1,0],[-43,-19],[-39,-26],[-22,-21],[-12,-11],[-21,-21],[-38,-40],[-25,-35],[-19,-26],[-38,-48],[-22,-26],[-25,-25],[-5,-4],[-22,-18],[-8,-7],[-21,-17],[-24,-19],[-2,-2],[-7,-7],[-28,-22],[-12,-9],[-14,-10],[-2,-1],[-12,-7],[-22,-13],[-32,-13],[-29,-9],[-46,-13],[-77,-16],[-14,-3],[-39,-7],[-62,-12],[-1,0],[-27,-7],[-27,-7],[-33,-9],[-33,-7],[-17,-4],[-39,-8],[-70,-20],[-24,-9],[-17,-11],[-27,-16],[-30,-18],[-27,-14],[-43,-13],[-34,-7],[-40,-6],[-38,-3],[-36,-1],[-69,2],[-51,1],[-31,-2],[-30,-1],[-38,0],[-6,1],[-17,3],[-51,10],[-33,9],[-10,3],[-1,0],[-14,4],[-39,15],[-66,25],[-88,18],[-39,41],[-38,30],[-24,19],[-20,14],[-87,82],[-56,52],[-11,11],[-141,131],[-120,73],[-40,24],[-207,64],[-142,4],[-115,3],[-88,28],[-89,28],[-68,49],[-14,14],[-15,15],[-32,42],[-152,191],[-46,64],[-77,106],[-27,34],[-34,42],[-56,69],[-56,69],[-71,84],[-14,17],[-16,26],[-36,38],[-68,74],[-51,35],[-29,21],[-12,9],[-61,43],[-24,17],[-63,29],[-74,35],[-281,76],[-18,-5],[-7,5],[-21,0],[-107,-3],[-86,-17],[-34,-23],[-71,-46],[-181,-138],[-113,-138],[-92,-128],[-36,-49],[-36,-46],[-81,-96],[-37,-58],[-24,-22],[-32,-27],[-21,-17],[-28,-21],[-20,-10],[-19,-9],[-38,-15],[-32,-11],[-49,-14],[-113,-29],[-104,-26],[-27,-6],[-45,-10],[-64,-15],[-23,-17],[-3,-5],[-13,-25],[-3,-2],[-11,-10],[-27,-12],[-39,-13],[-32,-4],[-78,-9],[0,2],[0,30],[0,28],[0,17],[1,81],[0,10],[0,3],[0,28],[0,133],[1,25],[0,3],[-1,15],[0,3],[0,2],[-1,27],[0,63],[1,18],[0,31],[1,94],[1,26],[0,47],[0,265],[0,67],[0,10],[-1,26],[0,10],[-1,21],[-2,31],[-1,12],[0,10],[0,40],[0,30],[0,32],[0,13],[-1,20],[0,29],[11,76],[-1,48],[0,42],[-1,25],[-1,166],[0,107],[0,200],[-1,111],[0,174],[-2,64],[-1,138],[0,52],[1,130],[0,35],[0,116],[0,30],[0,26],[-1,1],[0,5],[0,12],[0,11],[-1,62],[0,40],[0,132],[0,2],[0,2],[0,4],[0,71],[1,12],[1,75],[5,234],[0,11],[-4,25],[-1,3],[0,29],[0,40],[4,20],[2,11],[-1,10],[-5,59],[-1,9],[1,4],[2,61],[0,17],[0,3],[0,50],[0,9],[0,12],[0,16],[1,25],[0,16],[0,36],[1,5],[0,9],[0,16],[2,51],[1,43],[2,36],[-1,39],[-2,27],[-1,0],[1,0],[4,2],[1,0],[0,1],[-1,42],[0,2],[0,28],[0,2],[0,17],[0,2],[0,3],[1,45],[0,3],[1,18],[0,1],[1,55],[1,45],[0,62],[1,25],[2,213],[0,75],[0,71],[2,30],[-1,9],[0,17],[0,30],[0,41],[-2,47],[-2,11]],[[17823,9380],[-54,-6],[-36,1],[-62,2],[-51,0],[-43,0],[-76,-6],[-33,-5],[-71,-7],[-36,8],[-64,16],[-31,4],[-36,8],[-18,3],[-68,15],[-21,5],[-77,25],[-26,2],[-38,4],[-46,5],[-31,7],[-2,0],[-19,7],[-27,13],[-153,46],[-2,1],[-2,1],[-95,29],[-68,20],[-16,5],[-10,6],[-28,18],[-26,16],[31,2],[1,3],[-32,12],[-42,14],[-26,9],[-25,8],[-86,31],[-103,42],[-28,12],[-103,38],[-91,34],[-42,16],[-24,6],[-25,6],[-59,14],[-22,8],[-24,10],[-55,17],[-62,19],[-117,32],[-95,26],[-92,18],[-86,16],[-125,19],[-126,20],[-153,22],[-31,4],[-106,13],[-52,7],[-29,5],[-186,30],[-140,35],[-28,7],[-55,27],[-66,31],[-3,1],[-46,21],[-9,10],[-33,38],[-87,73],[-3,3],[-8,7],[-18,19],[-54,55],[-48,63],[-28,37],[-25,48],[-25,48],[-7,14],[-41,85],[-6,12],[-13,33],[-1,7],[-1,1],[-20,80],[-17,98],[-13,111],[-14,87],[0,49],[0,1],[2,77],[-1,61],[0,2],[-1,28],[-1,27],[0,36],[4,37],[1,12],[0,25],[-1,20],[2,11],[1,8],[3,37],[0,1],[-3,0],[-1,0],[1,1],[2,16],[4,20],[2,16],[1,34],[0,17],[-1,36],[5,45],[1,5],[4,18],[11,88],[0,3],[3,33],[0,3],[1,7],[1,11],[-10,46],[0,2],[-1,20],[-4,125],[-5,98],[-3,12],[-37,173],[-9,42],[-33,48],[-100,148],[-33,33],[-26,25],[-66,95],[-5,8],[-14,21],[-67,105],[-54,85],[-7,11],[-29,44],[-49,77],[-10,16],[-31,49],[-65,63],[-10,10],[-14,14],[-18,21],[-42,49],[-67,78],[-54,62],[-20,24],[-80,92],[-46,53],[-81,66],[-35,28],[-80,112],[-76,108],[-11,17],[-24,34],[-26,51],[-25,49],[-33,66],[-29,58],[-21,39],[-23,45],[-11,93],[-2,26],[-13,168],[-4,60],[-1,17],[0,1],[-1,28],[-4,51],[-6,35],[-7,46],[-1,6],[-2,15],[-16,53],[-36,118],[-53,116],[-25,53],[-2,4],[-26,57],[-17,37],[-13,16],[-160,206],[-36,46],[-45,40],[-87,78]],[[19282,21694],[-7,-65],[-5,-39],[-6,-52],[-10,-93],[-4,-31],[-13,-120],[-6,-57],[-5,-38],[-16,-140],[-3,-29],[-8,-70],[-18,-161],[-4,-40],[-5,-45],[-4,-31],[-15,-135],[-5,-44],[-20,-176],[-12,-109],[-7,-59],[-2,-26],[-4,-30],[-11,-98],[-5,-47],[-9,-80],[-10,-91],[-5,-43],[-10,-89],[0,-3],[-3,-29],[-2,-16],[-2,-14],[-9,-88],[-9,-82],[-9,-79],[-14,-128],[-13,-116],[-5,-46],[-4,-38],[-4,-31],[-3,-27],[-1,-14],[-2,-16],[-4,-35],[-6,-55],[-4,-36],[-8,-72],[-4,-36],[-1,-15],[-2,-12],[-3,-33],[-3,-29],[-5,-37],[-4,-33],[-6,-42],[-11,-69],[-20,-125],[-6,-49],[-4,-36],[-4,-37],[-5,-43],[-11,-101],[-4,-35],[-5,-45],[-4,-29],[-6,-52],[-8,-73],[-10,-89],[-14,-124],[-4,-29],[-4,-25],[-4,-28],[-11,-79],[-5,-34],[-4,-28],[-5,-37],[-5,-35],[-5,-34],[-4,-26],[-4,-28],[-5,-34],[-16,-132],[-6,-49],[-6,-47],[-6,-55],[-6,-50],[-6,-44],[-1,-11],[-9,-66],[-5,-46],[-4,-25],[0,-5],[-6,-47],[-7,-52],[-8,-68],[-7,-52],[-8,-59],[-9,-75],[-3,-28],[-11,-91],[-8,-69],[-4,-29],[-10,-83],[-6,-52],[-5,-39],[-5,-47],[-9,-77],[-7,-54],[-9,-74],[-10,-78],[-9,-62],[-5,-37],[-12,-88],[-6,-43],[-4,-32],[-6,-41],[-4,-29],[-4,-29],[-10,-73],[-4,-28],[-3,-27],[-5,-38],[-5,-36],[-7,-53],[-9,-65],[-4,-31],[-4,-38],[-6,-68],[-8,-71],[-10,-105],[-6,-51],[-9,-89],[-3,-31],[-4,-37],[-1,-10],[-4,-40],[-7,-67],[-3,-35],[-3,-26],[-8,-63],[-8,-59],[-5,-40],[-4,-36],[-8,-62],[-10,-75],[-1,-8],[-2,-18],[-8,-61],[-8,-62],[-7,-48],[-3,-26],[-7,-53],[-10,-81],[-9,-78],[-4,-33],[-14,-118],[-9,-70],[-4,-37],[-3,-30],[-6,-51],[-3,-33],[-3,-34],[-3,-27],[-4,-37],[-3,-27],[-8,-85],[-3,-28],[-3,-28],[-3,-27],[0,-2],[-3,-34],[-8,-80],[-3,-30],[-4,-43],[-7,-71],[-5,-45],[-4,-47],[-3,-29],[-4,-38],[-7,-58],[-4,-34],[-14,-110],[-7,-55],[-6,-49],[-3,-26],[-4,-33],[-5,-41],[-9,-69],[-4,-32],[-1,-4],[-4,-38],[-5,-33],[-4,-36],[0,-1],[-7,-50],[-5,-41],[-6,-46],[-4,-30],[-5,-40],[-3,-28],[-3,-30],[-6,-44],[-4,-37],[-5,-40],[-4,-36],[-4,-34],[-3,-26],[-3,-27],[-4,-35],[-6,-46],[-4,-34],[-4,-37],[-5,-44],[-4,-28],[-4,-34],[0,-3],[-8,-65],[-1,-8],[-15,-131],[-1,-7],[-4,-37],[-10,-83],[-6,-53],[-7,-55],[-6,-51],[-5,-49],[-3,-26],[-12,-100],[-2,-17],[-3,-19],[-4,-37],[-11,-95],[-5,-43],[-9,-81],[-3,-26],[-8,-73],[-12,-104],[-4,-34],[-5,-40],[-5,-49],[-5,-41],[-12,-100],[-4,-35],[-4,-41],[-4,-28],[0,-5],[-6,-30]],[[26641,15734],[-4,-39],[-7,-89],[-13,-160],[-5,-66],[-13,-148],[-1,-28],[-11,-67],[-15,-198],[-4,-54],[-5,-66],[-14,-183],[-6,-84],[-4,-60],[-4,-34],[0,-1],[-10,-123],[-16,-192],[-9,-114],[-3,-40],[-5,-58],[-4,-51],[-1,-12],[-1,-14],[-5,-79],[-3,-39],[0,-3],[-15,-193],[-3,-42],[-22,-292],[-3,-35],[-10,-121],[-12,-146],[-2,-43],[-3,-39],[-3,-37],[-13,-172],[-8,-106],[-18,-234],[-16,-209],[-3,-38],[-12,-158],[-2,-33],[-5,-54],[-11,-130],[-5,-62],[-10,-114],[-18,-206],[-9,-112],[-6,-68],[-15,-182],[-7,-82],[-25,-294],[-8,-87],[0,-1],[-8,-90],[-15,-166],[-15,-182],[-6,-73],[-5,-65],[-2,-13],[-8,-105],[-22,-248],[-7,-86],[-8,-102],[-15,-176],[-7,-83],[-3,-29],[-10,-123],[-6,-61],[-6,-90],[-14,-157],[-22,-266],[-6,-70],[-8,-125],[-4,-56],[-4,-62],[-2,-29],[-9,-106],[-10,-127],[-2,-26],[-4,-55],[-4,-59],[-3,-35],[-18,-226],[-16,-190],[-2,-36],[-1,-6],[-6,-93],[-5,-142],[-7,-156],[-3,-87],[-1,-37],[-3,-61],[-3,-53],[-9,-163],[-2,-28],[-6,-109],[-1,-27],[0,-8],[-2,-33],[-3,-94],[-3,-59]],[[25888,5969],[-162,80],[-31,13],[-25,24],[-82,47],[-1,0],[-77,25],[-236,30],[-6,-5],[-111,7],[-300,37],[-19,3],[-64,13],[-51,12],[-39,15],[-56,16],[-2,0],[-1,0],[-8,-2],[-14,12],[-115,50],[-81,57],[-15,9],[-66,72],[-42,74],[-45,77],[-48,136],[-46,232],[-12,54],[-27,122],[-12,50],[-39,121],[-15,27],[-7,14],[-30,116],[-9,17],[-6,4],[-117,50],[-171,73],[-183,47],[-180,23],[-90,23],[-198,67],[-84,37],[-67,41],[-36,32],[-80,88],[-70,86],[-1,2],[-27,59],[-21,93],[-40,183],[-62,216],[-27,34],[-12,33],[-75,121],[-66,73],[-41,28],[-104,67],[-95,48],[-96,38],[-95,22],[-45,21],[-117,1],[-31,8],[-9,3],[-3,0],[-1,1],[-17,3],[-119,23],[-3,1],[-53,7],[-34,5],[-14,2],[-2,0],[-91,7],[-1,0],[-3,1],[-39,0],[-4,84],[-86,17],[-2,1],[-259,-26],[-158,44],[-79,36],[-40,31],[-34,26],[-226,174],[-90,51],[-62,27],[-93,31],[-72,8],[-63,17],[-190,18],[-63,6],[-204,1],[-62,-4],[-110,-29],[-200,-12],[-100,-29],[-55,-19],[-29,-9],[-32,-10],[-7,-1],[-24,-5],[-29,-7],[-88,-10],[-51,-14],[-29,-10],[-16,-5],[-4,-1],[-47,-18],[-32,-14],[-45,-17],[-64,-21],[-27,-8],[-27,-7],[-22,-7],[-29,-8],[-6,-1],[-38,-10],[-68,-16],[-36,-10],[-2,0],[-47,-12],[-54,-13],[-30,-6],[-13,-3],[-28,-8],[-44,-11],[-134,-26],[-56,10],[-26,4],[-77,10],[-32,-4]],[[55381,16108],[-5,-84],[-3,-38],[-9,-104],[-11,-144],[-23,-275],[-6,-37],[-1,-37],[-1,-26],[-3,-52],[-7,-96],[-1,-18],[-21,-321],[-3,-51],[-24,-227],[-37,-362],[-7,-60],[-25,-247],[-6,-54],[-11,-117],[-23,-229],[-17,-170],[-49,-484],[-15,-150],[-3,-38],[-3,-29],[-4,-33],[0,-1],[-6,-61],[-40,-383],[-33,-306],[-15,-145],[-11,-100],[-13,-127],[-5,-56],[-20,-197],[-59,7],[-35,4],[-114,14],[-27,3],[-66,8],[-133,15],[-220,19],[-77,6],[-38,3],[-2,1],[-196,16],[-54,5],[-123,9],[-420,30],[-102,8],[-1,0],[-65,4],[-8,1],[-95,7],[-161,11],[-292,22],[-143,10],[-337,24],[-11,-87],[-4,-38],[-13,-104]],[[52124,11247],[-30,2],[-283,19],[-88,6],[-104,7],[-2,0],[-34,2],[-99,7],[-240,16],[-147,10],[-121,9],[-24,2],[-28,2],[-57,4],[-59,4],[-9,0],[-33,3],[-286,18],[-85,6]],[[50395,11364],[-106,7],[-216,14],[-97,6],[-73,5],[-100,7],[-42,2],[-87,6],[-121,8],[-327,18],[-512,28],[-26,1],[-148,8],[-117,7],[-95,9],[-74,4],[-84,0],[-344,18],[-24,300],[-4,86],[28,128],[51,287],[3,51],[0,4],[3,36],[8,106],[12,153],[28,372],[5,65],[4,115],[3,38],[2,28],[11,123],[4,40],[6,37],[24,272],[2,31],[3,36],[-377,21],[-656,36],[-2,0],[-113,6],[-99,6]],[[46748,13889],[9,93],[7,81],[3,39],[13,141],[6,65],[18,202],[2,27],[19,209],[3,34],[22,242],[12,141],[10,98],[9,88],[3,27],[3,27],[5,49],[5,47],[0,3],[17,161],[21,203],[8,72],[21,181],[-41,3],[14,166],[38,437],[13,155],[3,30],[22,224],[14,140],[8,84],[14,142],[29,297],[4,34],[11,109],[5,54],[19,187],[20,205],[4,45],[3,36],[17,179],[44,488],[22,236],[14,148]],[[63196,14245],[1,18],[9,121],[2,25],[10,145],[13,177],[2,30],[13,174],[1,54],[14,158],[3,36],[2,32],[7,69],[-60,3],[-68,3],[-317,16],[-132,6],[-106,5],[-68,3],[-28,2],[-269,13],[-97,5],[-93,5],[-788,40],[-120,6],[-149,8],[-36,2],[-135,7],[-170,9],[-48,3],[-95,6],[-25,1],[-32,2],[-129,5],[-151,8],[-200,10],[-198,11],[-71,3],[-431,13],[-2,0],[-26,1],[-49,1],[-54,2],[-145,9],[-2,1],[-218,14],[-6,0],[-42,3],[-421,28],[-7,0],[-30,0],[-37,0],[-88,6],[-50,3],[-25,1],[-86,1],[0,42],[11,161],[8,109],[4,58]],[[71137,19814],[14,-173],[3,-29],[9,-7],[78,-60],[26,-38],[30,-65],[50,-155],[38,-109],[73,-188],[12,-50],[4,-70],[-6,-55],[-6,-54],[-7,-223],[30,-173],[25,-111],[12,-212],[-61,-247],[-38,-99],[-87,-10],[-47,-140],[-60,-77],[-143,-110],[-115,-72],[-120,-50],[-156,-42],[-129,-8],[-192,24],[-89,35],[-122,50],[-63,19],[-112,14],[-74,-22],[-51,-31],[1,-32],[-4,-15],[-4,-19],[-2,-19],[-1,-17],[0,-220],[10,-30],[23,-78],[1,-4],[1,-5],[1,-4],[0,-5],[3,-42],[14,-29],[90,-179],[84,-100],[21,-25],[23,-23],[44,-39],[26,-22],[143,-110],[172,-131],[76,-58],[3,-2],[3,-3],[83,-62],[51,-38],[26,-13],[179,-196],[35,-77],[15,-33],[16,-71],[3,-142],[5,-5],[-56,-213],[2,-58],[-19,-105],[-37,-116],[-2,-7],[-55,-79],[-64,-75],[-66,-78],[-16,-22],[-28,-62],[-67,-195],[-10,-120],[5,-45],[10,-57],[24,-51],[31,-56],[88,-101],[102,-75],[113,-100],[37,-43],[139,-164],[5,-10],[3,-7],[12,-29],[8,-39],[2,-33],[-3,-23],[0,-1],[-10,-40],[-23,-29],[-19,-26],[-78,-87],[-89,-57],[-25,-5],[-42,-2],[-68,0],[-43,13],[-4,1],[-4,1],[-1,0],[-62,7],[-92,14],[-22,4],[-57,19],[-93,42],[-19,10],[-77,42],[-72,46],[-48,37],[-48,48],[-79,91],[-55,64],[-2,2],[-3,3],[-62,59],[-3,3],[-3,3],[-2,1],[-36,25],[-2,1],[-4,2],[-3,2],[-50,24],[-1,0],[-4,2],[-4,1],[-39,11],[-4,1],[-4,1],[-4,0],[-19,2],[-122,25],[-54,0],[-79,-10],[-48,-15],[-65,-40],[-39,-33],[-72,-84],[-134,-201],[-5,-14],[-3,-9],[-37,-113],[-23,-128],[-7,-59],[-14,-122],[-15,-117],[-1,-3],[-1,-4],[-10,-43],[-6,-28],[0,-1],[-1,-4],[-1,-3],[-20,-56],[-1,0],[-1,-5],[-1,-1],[-17,-36],[-1,-1],[-18,-34],[0,-1],[-2,-3],[-14,-23],[0,-1],[-2,-3],[-22,-33],[-1,-1],[-2,-4],[-3,-3],[-3,-3],[-3,-2],[-53,-47],[-24,-23],[-71,-71],[-43,-44],[-36,-36],[-19,-21],[-1,-2],[-3,-3],[-3,-3],[-4,-2],[-3,-3],[-4,-2],[-3,-2],[-4,-1],[-4,-2],[-4,-1],[-4,0],[-4,-1],[-60,-56],[-172,-91],[-1,0],[-3,-2],[-1,-1],[-81,-52],[-51,-33],[-36,-24],[-1,-1],[-43,-29],[-118,-40],[-72,-6],[-45,2],[-148,54],[-150,55],[-14,6],[-38,13],[-92,82],[-147,25],[-48,55],[-73,95],[-82,69],[-48,54],[-13,43],[6,58],[9,6],[44,84],[37,47],[8,9],[135,138],[73,75],[112,100],[33,26],[216,249],[26,52],[9,51],[-14,81],[-25,90],[-37,70],[-156,209],[-88,173],[-43,111],[-18,28],[-36,98],[-37,70],[-75,110],[-58,66],[-89,125],[-59,107],[-4,56],[-45,51],[-80,83],[-10,11],[-7,7],[-93,54],[-5,2],[-23,8],[-82,28],[-34,11],[-86,19],[-56,-7],[-45,-8],[-46,-8],[-80,-31],[-1,0],[-2,0],[-59,-20],[-2,-1],[-4,-1],[-4,0],[-4,-1],[-4,0],[-2,0],[-11,0],[-68,-1],[-4,0],[-27,-2],[-15,-1],[-34,-2],[-49,-4],[-5,0],[-27,1],[-3,0],[-38,5],[-12,1],[-24,9],[-16,6],[-13,9],[-1,1],[-23,28],[-10,12],[-2,2],[-5,14],[-4,10],[-12,53],[0,1],[-1,4],[-1,2],[-5,15],[-7,23],[-1,2],[-1,2],[-14,40],[-51,203],[-7,29],[-9,36],[-24,99],[-2,8],[-7,5],[-279,251],[-55,50],[-260,22],[-173,14],[-378,-133],[-114,-214],[-26,-77],[-112,-322],[-27,-79],[-56,-76],[-337,-203],[-133,-66],[-18,-9],[-356,-176],[-80,-83],[-148,-375],[-25,87]],[[46748,13889],[-25,1],[-50,3],[-100,5],[-57,2],[-2,1],[-38,2],[-39,2],[-24,1],[-169,9],[-45,2],[-59,3],[-25,1],[-287,15],[-137,7],[-170,8],[-31,2],[-57,3],[-141,7],[-57,3],[-84,4],[-65,3],[-63,3],[-35,2],[-107,6],[-116,6],[-9,1],[-16,1],[-46,2],[-96,5],[-95,5],[-52,2],[-192,10],[-183,8],[-239,11],[-58,2],[-142,6],[-31,2],[-94,4],[-1,0],[-211,9],[-209,9],[-70,3],[-39,1],[-27,1],[-122,5],[-125,5],[-25,1],[-27,0],[-36,2],[-166,6],[-183,8],[-63,1],[-143,2],[-241,4],[-45,1],[-51,0],[-13,0],[-14,1],[-26,0],[-284,4],[-34,1],[-62,1],[-39,1],[-26,0],[-251,4],[-1,0],[-428,6],[-38,1],[-82,1],[-53,1],[-128,2],[-260,4],[-182,2],[-41,0],[-50,2],[-294,4],[-53,-4],[-71,1],[-46,2],[-342,6],[-34,1],[-139,3],[-52,1],[-180,12],[-65,2],[-147,4],[-170,5],[-188,5],[-166,5],[-200,6],[-30,1],[-140,3],[-55,2],[-1,0],[-47,31],[-15,25],[2,16],[1,5],[1,7],[15,25],[14,21],[16,19],[27,24],[18,21],[5,28],[-1,3],[-7,27],[-14,16],[-4,4],[-16,13],[-23,19],[-24,-9],[-33,-5],[-34,6],[6,56],[8,79],[2,29],[15,27],[1,29],[7,30],[15,24],[20,34],[15,71],[0,2],[-11,33],[0,3],[-3,9],[0,26],[-2,26],[-19,31],[-23,12],[-29,12],[-9,4],[-58,25],[-27,10],[-29,8],[-12,3],[-20,6],[-51,19],[-19,7],[-9,54],[-23,3],[-81,11],[-36,5],[0,1],[-19,19],[17,22],[1,2],[25,25],[-15,22],[-22,13],[-9,26],[-22,15],[-28,11],[-24,14],[-21,29],[16,34],[-1,33],[-20,21],[-34,-3],[-44,-8],[-26,9],[-34,28],[-34,-6],[-44,-13],[-23,-4],[-35,13],[-44,18],[-21,20],[-33,8],[-26,16],[-20,25],[-15,23],[-24,1],[-15,-33],[-31,-5],[-30,28],[-19,20],[-36,-12],[-29,-6],[-33,-2],[-43,-3],[-24,9],[-33,25]],[[35980,15616],[-19,20],[-11,24],[-23,16],[-19,23],[-18,20],[-21,19],[-25,12],[-2,1],[-21,9],[-23,6],[-25,-3],[-21,12],[-17,21],[-11,26],[-34,3],[-26,1],[-24,-1],[-19,16],[-20,52],[-15,19],[-3,33],[-5,29],[-75,16],[-27,21],[-18,33],[-16,20],[-38,12],[-24,36],[-23,12],[-55,28],[-32,4],[-20,35],[-19,18],[-78,43],[-39,-12],[-19,26],[-34,28],[1,28],[36,31],[-14,33],[-23,7],[-40,4],[-23,11],[-15,25],[-6,27],[-13,84],[-264,16],[-52,2],[-345,10],[-107,4],[-119,5],[-75,3],[-303,15],[-136,5],[-88,5],[-84,6],[-77,6]],[[35980,15616],[1,-72],[3,-158],[2,-171],[16,-610],[2,-59],[1,-72],[0,-33],[1,-54],[1,-38],[1,-91],[0,-27],[2,-144],[0,-70],[5,-389],[3,-189],[0,-10],[0,-30],[0,-37],[1,-32],[0,-43],[5,-426],[2,-107],[3,-256],[0,-47],[1,-69],[2,-152],[1,-100],[0,-98],[1,-81],[0,-64],[1,-229],[0,-181],[1,-99],[0,-140],[0,-126],[0,-2],[1,-41],[0,-26],[0,-24],[0,-51],[1,-255],[0,-26],[0,-98],[1,-187],[0,-33],[0,-83],[0,-62],[0,-90],[1,-92],[0,-137],[0,-29],[2,-124],[1,-116],[1,-33],[0,-30],[0,-105],[0,-86],[0,-81],[0,-105],[0,-54],[0,-156],[0,-3],[0,-78],[0,-60],[-1,-43],[-2,-174],[-1,-156],[0,-195],[0,-60],[1,-181],[1,-129],[-1,-93],[-1,-107],[0,-168],[1,-249],[-2,-208],[1,-91],[1,-333],[-2,-109],[0,-225],[0,-118],[0,-47],[1,-129],[-1,-33],[0,-29],[0,-48],[0,-41],[-1,-73],[1,-157],[2,-62],[0,-17],[-1,-64],[3,-5],[13,-20]],[[36056,5481],[-13,-35],[-4,-40],[-36,-66],[-116,-118],[-43,-40],[-125,-144],[-57,-49],[-45,-29],[-36,-23],[-57,-25],[-66,-6],[-129,14],[-74,16],[-82,26],[-38,15],[-88,65],[-110,99],[-82,98],[-27,62],[-35,138],[-23,244],[-61,155],[-60,79],[-63,66],[-95,69],[-160,101],[-170,84],[-65,28],[-103,67],[-104,64],[-98,49],[-100,42],[-218,66],[-162,28],[-85,7],[-154,31],[-88,6],[-99,22],[-140,19],[-39,8],[-7,7],[-341,39],[-109,5],[-94,0],[-61,-3],[-188,24],[-91,17],[-38,43],[-19,12],[-99,42],[-47,12],[-189,18],[-99,51],[-98,107],[-3,3],[-1,1],[-49,45],[-1,1],[-58,52],[-1,0],[-4,3],[-1,1],[-84,58],[-2,1],[-43,27],[-9,6],[-109,93],[-230,115],[-23,13],[-77,25],[-23,13],[-190,59],[-216,31],[-201,-12],[-227,-43],[-269,-77],[-138,-50],[-98,-51],[-67,-37],[-15,-47],[-49,-62],[-9,-5],[-15,-6],[-78,-21],[-60,-8],[-78,-6],[-73,-3],[-181,-8],[-266,-4],[-3,0],[-4,0],[-1,-1],[-144,-23],[-119,-29],[-39,-17],[-136,-64],[-101,-56],[-58,-47],[-58,-62],[-67,-86],[-25,-55],[-27,-101],[-23,-148],[-1,-56],[-14,-91],[-34,-144],[-49,-153],[-83,-78],[-8,-15],[-5,-17],[-60,-110],[-78,-47],[-75,-31],[-203,-47],[-57,-7],[-45,-6],[-148,40],[-31,8],[-237,71],[-285,116],[-37,21],[-113,46],[-13,5],[-9,-2]],[[63196,14245],[-136,-199],[-42,-61],[-40,-64],[-49,-77],[-123,-489],[-357,-500],[-233,-204],[-93,-154],[36,-164],[-2,-67],[3,-33],[79,-231],[1,-2],[1,-5],[1,-4],[1,-5],[0,-4],[0,-5],[0,-12],[37,-60],[11,-77],[-3,-86],[0,-4],[-18,-145],[-2,-59],[-56,-243],[-11,-52],[-29,-69],[-22,-92],[-46,-29],[-41,-54],[-7,-9],[-57,-64],[-80,-88],[-119,-96],[-101,-66],[-41,-19],[-30,-11],[-45,-25],[-243,-101],[-210,-57],[-8,1],[-341,-220],[-116,-88],[-77,-57],[-54,-49],[-63,-82],[-41,-71],[-30,-79],[-21,-121],[0,-49],[11,-125],[28,-97],[67,-87],[136,-86],[46,-19],[137,-83],[53,-44],[52,-59],[38,-60],[25,-44],[33,-94],[33,-280],[-6,-13],[52,-220],[44,-99],[19,-54],[13,-22],[53,-117],[41,-115],[22,-134],[0,-69],[-6,-13],[-12,-92],[-37,-120],[-44,-91],[-33,-68],[-52,-159],[0,-85],[0,-8],[9,-46],[38,-88],[38,-111],[12,-116],[17,-140],[10,-15],[28,-93],[85,-145],[98,-261],[14,-63],[32,-94],[37,-118],[22,-134],[2,-80],[-5,-75],[-9,-30],[3,-31],[-21,-122],[-25,-69],[3,-11],[-17,-46],[-36,-72],[-44,-63],[-99,-98],[-106,-74],[-73,-46],[-53,-21],[-68,7],[-260,-34],[-224,0],[-57,12],[6,-48],[-86,17],[-108,14],[-126,29],[-78,20],[-128,36],[-30,15],[-118,28],[-147,21],[-66,-2],[-11,5],[-181,-29],[-30,-9],[-7,3],[-92,-37],[-87,-52],[-91,-78],[-26,-35],[-27,-38],[-56,-1],[-129,-98]],[[58825,4571],[-71,3],[-71,3],[-6,0],[-85,3],[-117,4],[-59,2],[-108,4],[-70,3],[-498,17],[-60,2],[-2,1],[-314,11],[-65,2],[-119,4],[-89,3],[4,45],[4,61],[8,114],[5,76],[22,301],[2,35],[3,41],[6,67],[2,50],[2,28],[4,59],[10,141],[11,148],[16,224],[7,93],[7,98],[10,149],[14,194],[16,221],[12,136],[0,38],[-284,17],[-52,3],[-1,0],[-138,8],[-110,7],[-25,1],[-36,2],[-250,15],[-194,9],[-54,2],[-113,5],[-104,5],[-220,15],[-57,4],[-119,7],[-59,4],[-74,4],[-136,8],[-236,13],[-25,1],[-326,20],[-44,3],[-80,11],[10,142],[13,181],[2,30],[2,26],[8,70],[8,72],[0,2],[11,99],[15,132],[8,90],[4,45],[16,179],[7,68],[23,334],[2,34],[-49,4],[-408,34],[12,124],[4,42],[1,34],[1,9],[8,82],[3,29],[8,85],[7,78],[23,235],[1,29],[-47,4],[-351,28],[-199,15],[-106,8],[-237,18],[-106,7],[-91,7],[-105,8],[-119,9],[-185,14],[-109,8],[-189,14],[-38,2],[-61,5],[-73,5],[-234,18],[-50,4],[9,92],[6,62],[9,88],[23,228],[15,153],[12,120],[21,218],[14,135],[14,149],[4,41],[38,382]],[[50395,11364],[-4,-41],[-5,-46],[-10,-95],[-12,-127],[-3,-28],[-5,-62],[-3,-34],[-3,-34],[-3,-29],[-15,-160],[-7,-83],[-13,-147],[-19,-239],[-10,-127],[-24,-215],[-11,-100],[-14,-121],[-6,-51],[-10,-103],[-10,-78],[-7,-62],[-3,-26],[-6,-48],[-7,-148],[-53,-5],[-16,-130],[-1,-10],[-5,-73],[-11,-103],[-2,-54],[-118,8],[-399,27],[-78,6],[-36,2],[-121,8],[-11,-92],[-14,-152],[-13,-149],[-11,-115],[-13,-131],[-37,-388],[-8,-90],[-17,-171],[-14,-147],[-4,-43],[-2,-29],[-12,-34],[-25,-77],[-68,-203],[-10,-27],[-14,0],[-11,0],[-157,7],[-116,5],[-151,7],[-26,1],[-84,4],[-98,5],[-352,19],[-167,8],[-28,1],[-131,6],[-6,-101],[-6,-107],[-5,-89],[-16,-276],[-1,-3],[-5,-88],[-7,-121],[-6,-118],[87,-99],[55,-169],[12,-38],[9,-26],[3,-8],[33,-72],[36,-85],[44,-89],[67,-131],[31,-61],[25,-50],[52,-107],[123,-235],[13,-24],[8,-15],[-24,-9],[-151,-56],[-48,-18],[-153,-59],[-44,-17],[-121,-46],[-130,-50],[-114,-43],[-131,-51],[-239,-92],[-18,-7],[-14,-5],[-67,-26],[-71,-27],[-84,-33],[-185,-71],[-104,-40],[-13,-5],[-45,-18]],[[46541,4266],[-37,18],[-24,12],[-36,20],[-35,22],[-26,26],[-7,7],[-24,21],[-37,15],[-36,29],[-21,15],[-4,2],[3,2],[8,4],[-1,4],[-23,19],[-39,26],[-87,57],[-21,14],[-47,33],[-1,1],[-18,16],[-34,30],[-27,27],[-17,16],[-23,24],[-26,33],[-10,12],[-9,10],[-33,54],[-21,34],[-21,45],[-4,17],[-7,20],[-9,22],[-5,15],[-12,30],[-21,39],[-20,47],[-23,70],[-13,36],[-8,29],[-16,51],[-8,31],[-9,33],[-10,49],[-7,32],[-7,41],[-4,27],[-5,28],[-1,19],[-1,55],[-2,29],[-2,6],[-2,10],[-5,34],[-2,35],[-15,47],[-3,14],[-6,37],[5,25],[10,18],[0,26],[-3,38],[-2,28],[2,28],[3,36],[4,30],[-4,44],[-4,19],[-3,9],[-3,9],[-6,14],[-1,4],[-19,8],[-12,56],[-92,432],[-198,330],[-151,200],[-36,104],[36,268],[32,217],[117,538],[-7,24],[-117,411],[-42,64],[-39,26],[-126,83],[-57,37],[-404,-33],[-44,-13],[-26,-8],[-372,-110],[-410,-168],[-5,-2],[-25,-14],[-208,-119],[-139,-80],[-107,-58],[-167,-91],[-27,-15],[-11,-2],[-95,-26],[-70,-19],[-425,88],[-58,12],[-336,4],[-75,-24],[-11,-3],[-231,-72],[-1,1],[-26,47],[-40,-22],[-2,-2],[-24,-21],[-31,-32],[-19,-37],[-44,-48],[-57,-95],[-32,-71],[-3,-6],[-32,-67],[-20,-52],[-49,-72],[-44,-56],[-27,-29],[-18,-20],[-22,-24],[-38,-52],[-30,-49],[-26,-28],[-50,-31],[-46,-28],[-22,-10],[-32,-31],[-56,-46],[-55,-28],[-23,-7],[-16,-5],[-33,-20],[-34,-14],[-51,-21],[-9,-4],[-45,-16],[-30,-15],[-68,-33],[-28,-13],[-8,-3],[-152,-59],[-99,-38],[-363,-139],[-200,-158],[-27,-22],[-21,-39],[-104,-199],[-14,-26],[-22,-115],[-53,-176],[-117,-221],[-287,-287],[-73,-36],[-171,-85],[-88,-44],[-87,-6],[-33,-2],[-39,-2],[-19,-1],[-427,-27],[-398,-49],[-35,-4],[-265,94],[-271,97],[-261,93],[-344,-2],[-223,-162],[-158,-8],[-23,-26]],[[58825,4571],[-33,-31],[0,-43],[-37,-54],[-30,-55],[-23,-156],[2,-156],[5,-90],[6,-11],[-2,-62],[-12,-67],[2,-38],[-26,-176],[5,-18],[-9,-99],[-8,-23],[1,-39],[-30,-103],[-88,-161],[-23,-63],[-33,-117],[-3,-44],[-18,-222],[9,-22],[13,-160],[-15,-98],[-17,-112],[-47,-129],[-33,-54],[-59,-131],[-25,-70],[-4,-51],[-46,-242],[-18,-60],[0,-21],[-40,-116],[-77,-166],[-80,-132],[-91,-103],[-82,-52],[-215,-90],[-72,-19],[-139,-25],[-241,-32],[-17,-5],[-154,-15],[-101,-23],[-47,-14],[-114,-24],[-150,-20],[-53,0],[-132,16],[-16,2],[-30,14],[-22,13],[-149,59],[-42,12],[-59,10],[-33,5],[-54,-7],[-6,-2],[-20,-1],[-159,-57],[-388,-130],[-201,-57],[-203,-45],[-31,-7],[-154,-34],[-589,-156],[-85,-26],[-72,-22],[-346,-134],[-137,-40],[-5,-1],[-24,-6],[-33,-10],[-26,-7],[-25,-7],[-9,-3],[-93,-25],[-6,-1],[-12,-4],[-58,-16],[-2,0],[-4,-1],[-16,-5],[-14,-3],[-56,-15],[-26,-6],[-23,-5],[-27,-5],[-25,-6],[-20,-4],[-18,-3],[-11,-1],[-26,-4],[-28,-4],[-15,-5],[-49,-8],[-3,-1],[-13,-1],[-23,-2],[-23,-3],[-28,0],[-25,-2],[-23,0],[-29,-2],[-15,0],[-13,0],[-18,-2],[-15,-2],[-30,0],[-28,3],[-29,2],[-12,1],[-13,1],[-4,1],[-30,2],[-26,3],[-23,6],[-26,5],[-6,1],[-18,2],[-29,6],[-47,0],[-45,1],[-19,-1],[-45,0],[-38,4],[-34,2],[-11,2],[-31,8],[-28,9],[-3,1],[-44,17],[-57,22],[-47,24],[-67,37],[-84,58],[-11,8],[-54,44],[-31,30],[-1,1],[-86,111],[-14,24],[-6,3],[-20,26],[-3,5],[-8,16],[-53,107],[-24,49],[-57,172],[-10,49],[-6,25],[-2,11],[-24,100],[-12,101],[-12,71],[-36,273],[-14,15],[-75,187],[-2,6],[-23,31],[-3,5],[-2,3],[-20,31],[-10,16],[-8,10],[-22,14],[-6,4],[0,1],[-9,6],[-33,22],[-2,2],[-25,14],[-45,30],[-25,18],[-27,15],[-15,7],[-4,3],[-58,30],[-24,19],[-26,18],[-10,8],[-51,34],[-29,10],[-16,6],[-4,2],[-1,0],[-17,8],[-3,1],[-19,7],[-5,2],[-9,3],[-2,1],[-1,0],[-9,4],[-11,4],[-3,1],[-11,4],[-44,19],[-51,30],[-1,0],[-1,1],[-8,4],[-25,14],[-19,11],[-21,12],[-21,13],[-4,2],[0,1],[-2,1],[-28,17],[-19,13],[-35,23],[-1,1],[-6,4],[-3,2],[-3,2],[-7,4],[-38,28],[-17,13],[-12,9],[-6,5],[-32,23],[-29,28],[-12,11],[-22,21],[-33,28],[-29,36],[-3,5],[-15,18],[-12,14],[-2,3],[-2,1],[-3,2],[0,1],[-7,5],[-2,2],[-7,6],[-23,20],[-19,24],[-17,24],[-25,38],[-25,25],[-21,17],[-37,37],[-29,37],[-18,23],[-4,4],[-33,35],[-20,21],[-23,26],[-21,19],[-6,6],[-24,22],[-33,49],[-99,149],[-2,3],[-8,13],[-37,66],[-29,49],[-18,30],[-19,29],[-29,46],[-12,20],[-17,26],[-25,37],[-4,5],[-18,24],[-14,14],[-7,7],[-28,19],[-31,30],[-16,20],[0,1],[-2,2],[-18,20],[-19,19],[-6,5],[-30,23],[-31,21],[-4,3],[-18,10],[-19,8],[-20,8],[-2,1],[-8,4],[-31,18],[-13,8],[-23,11],[-38,16],[-24,9],[-17,9],[-24,12],[-25,13],[-36,17],[-26,15],[-19,9],[-17,14],[-13,12],[-8,7],[-2,3],[-20,22],[-13,3],[-5,1],[-34,11],[-23,10],[-12,8],[-17,26],[-2,3],[-1,1],[-48,37],[-48,28],[-25,9],[-45,11],[-41,10],[-10,2],[-4,0],[-30,-3],[-14,0],[-12,3],[-15,2],[-33,-8],[-23,-1],[-20,1],[-26,0],[-23,-1],[-38,6],[-33,0],[-10,0],[-24,0],[-25,0],[-50,4],[-62,4],[-25,2],[-293,20],[-68,3],[-26,-4],[-39,-7],[-40,-2],[-33,-4],[-42,-10],[-52,-8],[-16,-1],[-71,0],[-25,2],[-33,3],[-32,1],[-100,10],[-29,6],[-63,18],[-25,7],[-23,7],[-22,8],[-45,18],[-62,24],[-48,25],[-48,27],[-12,5],[-59,26],[-44,16],[-36,22],[-36,25],[-24,15],[-62,33]]],"transform":{"scale":[0.00004306463414634085,0.00003920842689426958],"translate":[-84.82028842799986,38.40350870700007]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ok-counties.json b/src/js/config/mapconfig/mapfiles/county/ok-counties.json new file mode 100644 index 00000000..96d46b6c --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ok-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-103.00242477599988,33.61584999900015,-94.43104484899993,37.00230566500005],"geometries":[{"type":"Polygon","properties":{"name":"OK"},"id":"40105","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40113","arcs":[[4,5,6,7,8,9]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40151","arcs":[[10,11,12,13,14,15]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40035","arcs":[[16,17,18,19,-1,20]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40147","arcs":[[-3,21,22,-5,23]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40053","arcs":[[24,25,26,27]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40003","arcs":[[-27,28,29,-11,30]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40071","arcs":[[-9,31,32,-25,33]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40115","arcs":[[34,-17,35]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40059","arcs":[[-15,-14,36,37,38,39]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40025","arcs":[[40,41]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40139","arcs":[[42,43,-41,44]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40007","arcs":[[-39,45,46,-43,47]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40153","arcs":[[48,49,50,-37,13,-14,-13]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40041","arcs":[[51,52,53,54,-18,-35]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40103","arcs":[[55,56,57,58,-32,-8]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40131","arcs":[[59,60,61,-22,-2,-20]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40047","arcs":[[-33,-59,62,63,64,-29,-26]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40045","arcs":[[-51,65,66,67,-46,-38]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40117","arcs":[[68,69,70,-56,-7]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40097","arcs":[[-55,71,72,-60,-19]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40093","arcs":[[-30,-65,73,74,75,-49,-12]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40143","arcs":[[-62,76,77,78,-69,-6,-23]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40119","arcs":[[79,80,81,-57,-71]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40073","arcs":[[82,83,84,-74,-64]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40083","arcs":[[-58,-82,85,86,-83,-63]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40011","arcs":[[-85,87,88,89,90,-75]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40043","arcs":[[91,92,-66,-50,-76,-91]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40037","arcs":[[-79,93,94,95,-80,-70]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40145","arcs":[[-73,96,97,98,-77,-61]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40021","arcs":[[-54,99,100,101,-97,-72]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40001","arcs":[[102,103,-100,-53]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40129","arcs":[[-93,104,105,106,-67]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40081","arcs":[[-96,107,108,109,-86,-81]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40111","arcs":[[-78,-99,110,111,112,-94]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40101","arcs":[[-102,113,114,115,-111,-98]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40039","arcs":[[-90,116,117,118,-105,-92]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40017","arcs":[[119,120,121,122,123,-88,-84]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40109","arcs":[[-110,124,125,-120,-87]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40135","arcs":[[-104,126,127,128,-114,-101]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40107","arcs":[[-113,129,130,131,132,-108,-95]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40091","arcs":[[133,134,135,-130,-112,-116]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40015","arcs":[[-124,136,137,138,139,-117,-89]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40009","arcs":[[-119,140,141,142,143,144,-106]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40133","arcs":[[145,146,147,-132]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40149","arcs":[[-140,148,-141,-118]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40125","arcs":[[-133,-148,149,150,151,-125,-109]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40061","arcs":[[152,153,154,-134,-115,-129]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40079","arcs":[[155,156,157,-153,-128,158]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40051","arcs":[[159,160,161,162,-137,-123]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40027","arcs":[[-152,163,-121,-126]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40087","arcs":[[-151,164,165,-160,-122,-164]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40121","arcs":[[-155,166,167,168,169,170,-135]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40063","arcs":[[-136,-171,171,172,-146,-131]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40075","arcs":[[-139,173,174,175,176,-142,-149]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40055","arcs":[[-177,177,178,179,180,-143]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40077","arcs":[[-158,181,-167,-154]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40057","arcs":[[-181,182,183,-144]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40123","arcs":[[-147,-173,184,185,186,187,-165,-150]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40065","arcs":[[188,189,-183,-180,178,-178,-176]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40031","arcs":[[-138,-163,190,191,192,-174]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40049","arcs":[[-188,193,194,195,-161,-166]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40029","arcs":[[-170,196,197,-185,-172]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40137","arcs":[[-196,198,199,200,-191,-162]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40005","arcs":[[201,202,203,204,-197,-169]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40127","arcs":[[-157,205,206,-202,-168,-182]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40099","arcs":[[-187,207,208,-194]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40141","arcs":[[-193,209,210,-189,-175]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40019","arcs":[[-209,211,212,213,214,-199,-195]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40069","arcs":[[-186,-198,-205,215,216,-212,-208]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40033","arcs":[[-201,217,218,-210,-192]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40089","arcs":[[219,220,-206,-156]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40067","arcs":[[-215,221,222,-218,-200]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40095","arcs":[[223,224,225,-213,-217]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40013","arcs":[[226,227,-224,-216,-204]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40023","arcs":[[-221,228,-227,-203,-207]]},{"type":"Polygon","properties":{"name":"OK"},"id":"40085","arcs":[[-226,229,-222,-214]]}]},"states":{"type":"GeometryCollection","bbox":[-103.00242477599988,33.61584999900015,-94.43104484899993,37.00230566500005],"geometries":[{"type":"Polygon","properties":{"name":"Oklahoma"},"id":"40","arcs":[[39,15,30,27,33,9,23,3,20,35,51,102,126,158,219,228,227,224,229,222,218,210,189,183,144,106,67,46,43,41,44,47]]}]}},"arcs":[[[88605,99910],[0,-297],[0,-64],[-1,-456],[0,-50],[0,-55],[0,-79],[0,-2],[0,-46],[0,-34],[0,-97],[-1,-493],[-28,0],[-20,0],[-7,0],[-18,0],[-128,0],[-78,4],[-1,-1197],[-1,-431],[0,-226],[0,-145],[0,-56],[1,-102],[0,-275],[-1,-44],[-1,-77],[1,-365],[1,-209],[1,-315],[0,-7],[-1,-322],[0,-124],[-4,-206],[-2,-96],[7,-430],[0,-318],[0,-110],[1,-385],[0,-7],[0,-37],[0,-206],[0,-181],[0,-81],[-1,-609],[0,-210],[0,-342],[1,-87],[0,-205],[0,-48],[0,-67],[0,-106],[0,-290],[-2,-114],[0,-62],[0,-145],[-1,-195],[1,-41],[3,-307],[-1,-43],[0,-86],[1,-209],[0,-217],[0,-46],[0,-335],[1,-32],[1,-34],[-1,-241],[0,-171]],[[88327,88047],[-16,-1],[-32,-1],[-25,2],[-37,-2],[-49,1],[-34,0],[-17,1],[-48,-3],[-51,3],[-65,0],[-45,-1],[-48,-3],[-18,1],[-121,2],[-23,2],[-25,0],[-26,0],[-20,0],[-25,-1],[-83,0],[-33,0],[-53,-5],[-15,0],[-17,2],[-148,7],[-23,-1],[-28,-1],[-80,-2],[-56,0],[-39,0],[-3,0],[-149,1],[-137,0],[-77,1],[-33,0],[-33,0],[-112,1],[-36,0],[-218,-4],[-169,2],[-85,0],[-169,-1],[-41,-1],[-71,0],[-46,0],[-38,0],[-223,-1],[-37,0],[-30,0],[-144,0],[-35,0],[-14,1],[-54,1],[-142,-1],[-156,1],[-18,0],[-37,0],[-74,-1],[-38,-3],[-33,-2],[-238,4],[-210,0],[-186,0],[-25,0]],[[83916,88045],[0,73],[1,354],[-1,268],[0,36],[0,52],[0,32],[0,43],[-1,213],[1,234],[1,69],[0,31],[0,53],[-1,41],[0,211],[0,323],[0,105],[-1,430],[0,216],[0,117],[0,95],[0,104],[0,322],[0,45],[0,41],[1,44],[-2,268],[0,29],[0,157],[0,74],[0,74],[-2,136],[2,47],[0,169],[0,205],[0,95],[0,115],[0,217],[-1,376],[0,7],[-1,34],[2,142],[-1,96],[0,216],[0,194],[0,315],[0,155],[0,162],[0,410],[0,79],[0,164],[0,221],[0,432],[-1,56],[0,123],[0,45],[-1,194],[0,42],[0,64],[0,241],[-1,91],[0,49],[0,165],[2,35],[0,69],[-1,44],[0,31],[1,37],[-1,55],[-1,96],[1,272],[0,60],[0,259],[28,1],[13,1],[20,0],[151,-2],[59,2],[1,429],[-1,104],[1,65],[-1,258],[-1,108],[1,114],[1,215],[-1,401]],[[84182,99910],[44,0],[167,-3],[72,2],[15,0],[16,0],[59,-1],[53,-1],[45,1],[53,0],[109,2],[50,0],[31,0],[88,-1],[37,0],[53,3],[60,-2],[100,-2],[51,3],[36,-1],[32,1],[118,-2],[27,0],[57,1],[57,1],[44,-1],[52,3],[105,1],[25,-1],[27,0],[52,-1],[72,-1],[31,1],[14,0],[13,0],[9,-1],[21,1],[47,0],[54,0],[42,-1],[36,-1],[29,0],[36,0],[23,0],[39,0],[103,0],[4,0],[36,-1],[107,0],[36,1],[34,0],[38,1],[70,1],[33,0],[73,-2],[135,3],[75,-2],[57,-1],[82,-1],[15,0],[72,0],[36,2],[38,0],[23,-2],[36,0],[11,1],[28,0],[25,0],[28,2],[40,0],[12,0],[13,0],[26,0],[32,0],[24,0],[45,0],[40,0],[12,0],[19,1],[45,-1],[14,0],[17,-3],[163,2],[18,-1],[23,0],[17,0],[13,0],[33,0],[22,-1],[16,1],[55,0],[32,0],[29,-1],[32,1],[25,0],[25,0],[19,0],[72,0],[30,0],[23,0],[41,0]],[[81685,99897],[0,-253],[0,-501],[0,-321],[0,-1058],[0,-2],[3,-388],[-3,-235],[-2,-493],[1,-39],[2,-379],[0,-96],[0,-6],[0,-79],[0,-21],[0,-12],[1,-260],[0,-559],[0,-55],[1,-111],[0,-274],[0,-95],[0,-117],[0,-77],[2,-192],[-1,-217],[-1,-226],[-1,-151],[0,-69],[0,-123],[-1,-62],[1,-99],[-1,-65],[1,-46],[0,-59],[0,-6],[0,-45],[0,-53],[0,-44],[-1,-199],[0,-37],[1,-161],[0,-14],[0,-8],[0,-39],[0,-13],[-1,-45],[0,-148],[0,-33],[-1,-59],[0,-2],[1,-32],[-2,-48],[0,-44],[2,-149],[0,-48],[1,-106],[0,-4],[0,-64],[0,-89],[-1,-71],[0,-133],[0,-108],[0,-278],[1,-132],[0,-329],[0,-140],[0,-105],[0,-46],[0,-38],[-3,-432],[0,-109],[0,-37],[-1,-93],[0,-115],[-1,-79],[3,-89],[0,-36],[0,-53],[1,-72],[0,-36],[0,-137],[0,-34],[0,-61],[0,-44],[1,-411],[0,-113],[0,-237],[-1,-487],[0,-72],[0,-443],[0,-122],[-1,-163],[0,-44],[0,-49],[0,-422],[0,-89],[-1,-245],[0,-61],[-1,-733],[-1,-122],[-1,-323],[-1,-130],[1,-259],[1,-99],[-1,-49],[0,-91],[-1,-63],[1,-92],[0,-76],[1,-130],[0,-101],[0,-49],[0,-33],[0,-54],[-3,-106],[0,-3],[0,-206],[0,-88],[1,-130],[1,-52]],[[81681,82913],[0,-38],[-1,-97],[-1,-123],[0,-6],[0,-72],[0,-72],[1,-73],[0,-19],[1,-46],[-1,-61],[0,-115],[0,-24],[-1,-57],[1,-92],[1,-243],[0,-212],[0,-85],[0,-48],[0,-57],[-1,-57],[0,-31],[0,-1],[-1,-58],[1,-54],[0,-39],[0,-53],[0,-55],[0,-44],[0,-34],[-1,-82],[1,-91],[0,-30],[0,-92],[0,-98],[0,-67],[-2,-151],[0,-55],[0,-58],[-1,-95],[0,-96],[-1,-97],[0,-38],[0,-47],[0,-22],[4,-53],[-1,-103],[0,-40],[-1,-151],[-1,-122],[0,-92],[0,-42],[0,-43],[1,-80],[0,-49],[0,-126],[0,-95],[0,-54],[0,-48],[1,-78],[0,-12],[0,-30],[2,-121],[-1,-308],[0,-208],[-1,-206],[0,-58],[0,-41],[0,-42],[0,-32],[0,-41],[0,-31],[-1,-94],[0,-89],[0,-123],[0,-78],[0,-56],[0,-38],[0,-33],[1,-98],[-1,-36],[-1,-3],[3,-183],[-1,-227],[2,-238],[0,-17],[1,-153],[-1,-32],[-1,-76],[-1,-31],[2,-64],[0,-31],[0,-98],[-1,-58],[0,-6],[-1,-61],[0,-33],[2,-56],[0,-53],[-1,-69],[1,-35],[1,-32],[-5,-47],[3,-74],[-4,-35],[-12,1],[-13,0],[-39,0],[-14,0],[-14,-1],[-25,0],[-12,-1],[-14,0],[-12,1],[-18,-1],[-23,-1],[-24,1],[-25,-2],[-14,0],[-12,-1],[-26,1],[-25,-1],[-53,0],[-14,0],[-12,-1],[-12,1],[-14,-1],[-14,0],[-13,-1],[-13,0],[-29,0],[-43,0],[-16,0],[-30,0],[-52,-1],[-56,0],[-17,0],[-15,-1],[-16,2],[-25,-2],[-28,0],[-33,1],[-13,-1],[-15,3],[-14,-2],[-13,0],[-16,-1],[-21,-1],[-13,0],[-17,-2],[-95,4],[-13,0],[-86,0],[-12,0],[-41,0],[-18,1],[-1,0],[-35,0],[-133,-1],[-49,-1],[-156,-2],[-20,0],[-24,0],[-54,0],[-31,0],[-63,0],[-43,0],[-42,0],[-50,-3],[-77,3],[-27,1],[-14,2],[-160,3],[-217,7],[-18,-1],[-35,2],[-23,0],[-54,2],[-78,4],[-55,1],[-104,3],[-34,0],[-62,3],[-23,-1],[-6,0],[-39,1],[-30,0],[-24,3],[-2,0],[-67,0],[-47,0]],[[78565,75185],[0,1],[-9,74],[-7,45],[-7,46],[1,12],[2,37],[1,16],[2,34],[0,159],[12,151],[17,34],[7,14],[20,22],[35,15],[13,0],[45,93],[33,92],[28,56],[16,37],[35,140],[36,167],[0,165],[0,75],[-13,73],[-20,89],[-11,44],[-57,114],[-10,15],[-1,0],[-88,40],[-118,55],[-22,13],[-7,5],[-4,7],[-11,-3],[-106,36],[-76,47],[-5,11],[-31,8],[-30,10],[-13,8],[-3,7],[-94,0],[-51,-30],[-116,-5],[-31,-18],[-161,-2],[-9,4],[-13,18],[-9,0],[-55,46],[-33,28],[-63,66],[-13,18],[-62,125],[-32,62],[-2,30],[-11,63],[-16,62],[-72,144],[-20,59],[-63,143],[-122,239],[-23,35],[-43,64],[-46,48],[-16,11],[-81,91],[-45,66],[-77,77],[-51,22],[-46,47],[-55,107],[-24,48],[-11,14],[-39,33],[-11,2],[-6,2],[-24,47],[-2,163],[2,51],[-54,107],[-3,18],[-36,255],[-11,155],[-2,118],[-2,22],[-42,162],[-16,63],[-1,3],[-1,2],[-48,88],[-7,13],[-86,103],[-88,2],[-99,-41],[-39,-38],[-42,-85],[-20,-63],[-11,-52],[-25,-77],[-20,-86],[-42,-188],[-4,-27],[-3,-28],[-1,-2],[-14,-106],[-12,-55],[-17,-52],[-38,-74],[-1,-2],[-47,-91],[-15,-15],[-63,-60],[-8,-7],[-23,-13],[-4,-2],[-8,-4],[-42,-15],[-5,0],[-32,0],[-24,0],[-89,1],[-17,0],[-52,31],[-5,2],[-9,11],[-4,-4],[-53,27],[-11,6],[-11,14],[-28,33],[-16,33],[-50,59],[-58,74],[-5,6],[-16,37],[-17,36],[-9,19],[-8,22],[-13,39],[-42,119],[0,7],[1,149],[0,32],[7,211],[2,40],[3,29],[3,24],[8,66],[15,48],[32,92],[6,15],[11,26],[22,74],[12,41],[13,26],[33,67],[2,11],[4,11],[11,32],[10,12],[33,39],[8,10],[10,-3],[1,0],[33,10],[25,9],[54,27],[27,14],[9,8],[14,12],[12,10],[2,4],[11,18],[10,7],[13,8],[4,8],[44,93],[87,190],[15,33],[11,25],[6,11],[5,30],[5,129],[4,30],[-1,22],[-1,99],[0,12],[-10,41],[-3,14],[-1,13],[-3,46],[-21,114],[-13,46],[-7,28],[0,25],[-11,48],[-15,26],[-19,3],[-22,37],[-13,48],[0,29],[-4,15],[-2,6],[-9,16],[-31,44],[-1,1],[-28,14],[-11,20],[-6,13],[-11,-8],[-20,-15],[-33,-52],[-15,-11],[-15,-11],[-27,-34],[-35,-70],[-3,-21],[0,-2],[-3,-4],[-12,-25],[-15,-30],[-16,-22],[-20,-1],[-6,-7],[-16,-30],[-9,-26],[-1,-20],[-8,-46],[-60,-167],[-11,-33],[-19,-36],[-15,-29],[-3,-6],[-1,-1],[-12,-18],[-42,-52],[-11,-12],[-13,-14],[-57,-1],[-1,0],[-10,15],[-31,22],[-94,47],[-3,0],[-1,0],[-13,20],[-20,33],[-2,3],[-24,45],[-14,23],[-8,26],[-5,15],[-2,7],[-1,9],[-1,40],[-2,39],[-1,51],[-1,21],[-3,33],[-6,57],[-5,86],[-2,56],[-6,81],[-11,74],[-5,30],[-8,36],[-2,8],[-9,18],[-11,14],[-12,16],[-22,30],[-13,14],[-18,13],[-6,5],[-13,10],[-17,12],[-3,2],[-29,45],[-12,35],[-4,28],[-3,26],[-3,30],[-5,36],[-8,55],[-8,37],[-1,2],[-1,3],[-1,2],[-25,52],[-44,89],[-37,66],[-44,40],[-17,0],[-7,-15],[-13,-26],[-37,-19],[-46,-6],[-12,-2],[-15,11],[-24,-1],[-7,-7],[-48,-1],[-44,-26],[-46,3],[-9,-8],[-16,-28],[-3,-5],[-14,-5],[-50,-18],[-18,-16],[-8,-7],[-44,3],[-4,10],[-3,5],[-31,22],[-21,2],[-13,1],[-29,22],[-9,15],[-9,16],[-15,5],[-18,16],[-3,2],[0,2],[-20,35],[-13,44],[-13,26],[-37,58],[-29,37],[-37,79],[-17,38],[-11,30],[-19,51],[-17,33],[-36,29],[-32,54],[-15,37],[-8,36],[-7,27],[1,27],[1,72],[-2,82],[-8,29],[1,63],[1,14],[12,60],[5,14],[10,30],[20,41],[11,33],[14,63],[4,45],[-9,34],[-4,14],[0,62],[23,126],[20,52],[4,0],[3,0],[17,34],[5,22],[9,85],[0,7],[4,48],[-1,89],[-11,77],[-19,114],[-24,44],[-42,18],[-17,7],[-13,11],[-15,29],[-6,20],[-14,39],[-11,59],[-25,45],[-6,10],[-33,103],[-1,41],[0,8],[-3,73],[23,32],[9,60],[2,92],[0,23],[0,77],[-6,89],[-22,95],[-10,137],[-2,66],[-7,15],[-17,59],[-2,36],[-10,70],[-26,166],[-15,59],[-9,17],[-19,34],[-10,63],[-12,73],[-6,19],[-35,69],[-67,122],[-46,86],[-28,52],[-4,1],[-15,6],[-7,-11],[-26,-4],[-52,43],[-21,38],[0,1],[-38,19],[-26,0],[-1,0],[-10,-5],[-5,-3],[-15,-11],[-130,-123],[-6,-5],[-2,-3],[-40,-42],[-7,-7],[-15,-30],[-10,-44],[-1,0],[-20,-41],[-33,-30],[-30,4],[-12,2],[-20,-11],[-35,-63],[-53,-117],[-11,-25],[-9,-33],[-18,-41],[-19,-19],[-19,0],[-3,0],[-69,-105],[-11,-22],[-2,-9],[-18,-106],[-42,-159],[-11,-23],[-1,-3],[-2,-4],[-33,-49],[-3,-2],[-19,-16],[-44,-90],[-22,-70],[0,-9],[1,-26],[0,-49],[0,-14],[0,-13],[4,-26],[0,-27],[0,-10],[-2,-28],[-3,-46],[-8,-51],[-10,-37],[-19,-38],[-4,-14],[-17,-59],[-17,-57],[0,-6],[-1,-34],[-23,-57],[-9,-23],[-8,-21],[-37,-85],[0,-55],[-3,-42],[-2,-18],[-14,-51],[-10,-25],[-36,-91],[-11,-26],[-11,-26],[-24,0],[-1,0],[-11,-12],[-11,-22],[-5,-20],[-1,-2],[-16,-48],[-17,-30],[-3,0],[-9,-20],[-15,-32],[-18,-63],[-1,-15],[-1,-19],[-18,-48],[-1,-3],[-34,-65],[-5,-10],[-10,-10],[-7,-6],[-7,-7],[-7,5],[-19,13],[-10,7],[-58,37],[-11,6],[-31,0],[-13,-8],[-13,-11],[-16,-26],[-18,-37],[-2,-4],[-7,-6],[-21,-21],[-33,-8],[-15,18],[-7,4],[-7,-4],[-19,4],[-49,-24],[-3,-1],[-5,-2],[-44,-5],[-18,-19],[-22,-44],[-8,-31],[-1,-3],[-22,-41],[-8,-4],[-20,-11],[-2,0],[-14,0],[-3,3],[-12,15],[-20,-4],[-6,-8],[-62,-119],[-12,-26],[-8,-27],[-1,-3],[-2,-18],[-11,-23],[-11,-7],[-83,-17],[-44,40],[-11,10],[-89,88],[-11,7],[-81,9],[-72,-9],[-1,0],[-5,4],[-16,14],[-3,3],[-20,19],[-42,39],[-1,1],[-2,2],[-11,14],[-2,2],[-1,2],[-16,34],[-19,12],[-5,3],[-8,10],[-16,20],[-2,2],[-7,15],[-6,85],[-12,43],[-1,4],[-24,47],[-27,52],[-72,124],[-15,19],[-18,25],[-1,0],[-28,19],[-8,9],[-13,26],[-28,73],[-5,22],[-7,28],[-9,38],[-3,31],[-9,94],[-13,140],[0,10],[-2,14],[0,44],[1,20],[0,6],[0,7],[-6,38],[-3,39],[-4,37],[-1,34],[-1,16],[1,40]],[[69914,85371],[1,34],[0,16],[4,118],[9,106],[3,34],[9,41],[3,9],[13,43],[15,43],[31,91],[15,28],[7,12],[87,106],[19,-3],[58,45],[13,19],[32,65],[1,2],[6,5],[47,33],[28,8],[40,1],[2,0],[15,-4],[22,-6],[9,-11],[50,-29],[62,5],[3,0],[20,18],[57,50],[25,34],[17,35],[20,39],[8,40],[4,20],[11,29],[20,41],[46,64],[23,21],[3,2],[1,2],[63,80],[62,57],[35,23],[83,1],[22,-9],[4,-1],[22,-11],[26,-14],[46,-11],[14,-3],[19,0],[16,16],[20,41],[5,11],[8,18],[9,47],[11,57],[50,106],[3,6],[5,19],[11,40],[4,15],[7,26],[0,9],[0,35],[5,159],[10,60],[2,10],[0,22],[-17,37],[-3,4],[-17,18],[-13,25],[-2,7],[-6,26],[-11,33],[-58,132],[-16,31],[-56,104],[-3,27],[-3,21],[-6,26],[-8,36],[-7,26],[-1,3],[-32,63],[-11,41],[-11,21],[-37,44],[-19,11],[-22,7],[-28,3],[-24,-1],[-19,-10],[-3,-1],[-1,-2],[-45,-65],[-23,-38],[-23,-19],[-8,-7],[-28,-1],[-30,-15],[-3,-2],[0,-1],[-22,-16],[-6,-9],[-35,-47],[-20,-41],[-34,-42],[-19,-7],[-34,-1],[-41,-1],[-30,-23],[-8,-16],[-4,-10],[-89,-53],[-64,-20],[-39,-1],[-21,14],[-23,15],[-18,0],[-74,-33],[-4,-2],[-46,-4],[-11,-1],[-25,-19],[-40,-30],[-10,-7],[-5,-5],[-1,0],[-47,-4],[-4,-1],[-37,7],[-98,24],[-201,62],[-31,14],[-104,90],[-46,35],[-1,1],[-27,21],[-13,26],[-4,74]],[[69405,87960],[33,59],[16,1],[22,19],[2,3],[18,38],[7,96],[0,31],[0,2],[-76,338],[0,69],[0,30],[18,53],[7,22],[9,66],[0,11],[-2,45],[-1,12],[-5,120],[-6,48],[-4,22],[-10,151],[3,111],[-8,63],[-3,11],[-13,24],[-15,31],[-21,21],[-13,26],[-35,105],[-17,52],[-2,7],[-11,37],[-12,85],[-12,96],[-3,225],[-1,254],[8,24],[-1,6],[1,124],[0,48],[1,27],[0,1],[0,4],[0,1],[5,29],[2,13],[8,45],[5,26],[29,63],[14,21],[23,2],[17,14],[2,1],[62,87],[36,52],[16,26],[21,34],[7,37],[17,52],[10,22],[11,12],[30,-37],[2,-3],[37,-33],[56,-65],[15,-29],[24,-5],[77,-15],[30,8],[11,19],[16,4],[52,-10],[13,-15],[9,-18],[1,-18],[-4,-15],[0,-27],[0,-14],[8,-14],[31,-3],[7,0],[23,-11],[11,-11],[11,-21],[9,-15],[42,-41],[6,-6],[17,-11],[18,-2],[6,0],[6,-1],[8,13],[2,3],[8,14],[51,19],[54,-2],[15,-11],[4,-9],[11,-20],[61,-10],[40,1],[32,15],[4,8],[3,3],[9,1],[37,-14],[19,-15],[33,-47],[1,-2],[27,-53],[24,-18],[26,1],[15,5],[38,14],[35,16],[13,0],[6,-7],[18,-22],[45,8],[18,12],[24,33],[8,16],[5,10],[18,100],[24,88],[8,27],[5,41],[0,59],[0,4],[-5,56],[-2,6],[-5,26],[-1,1],[20,11],[22,-6],[3,11],[10,30],[12,35],[8,103],[5,134],[7,183],[33,50],[30,62],[8,24],[19,30],[20,59],[20,70],[13,90],[6,103],[8,65],[14,32],[31,50],[27,66],[33,72],[32,75],[57,125],[16,35],[10,16],[11,10],[15,3],[15,-13],[15,-1],[18,-5],[21,4],[19,4],[26,22],[15,8],[18,12],[23,11],[36,-3],[27,-18],[30,-40],[25,-45],[33,-42],[61,-74],[25,6],[16,0],[20,-9],[19,-19],[36,-29],[26,-9],[20,-9],[32,-2],[34,-8],[43,21],[44,35],[23,40],[12,42],[23,57],[17,81],[14,94],[11,89],[-9,82],[0,56],[-13,38],[0,1],[-9,26],[-1,4],[-21,46],[25,0],[54,0],[11,0],[31,0],[19,0],[30,1],[225,-1],[1,215],[0,211],[126,2],[72,-1],[136,-2],[15,2],[14,-2],[13,1],[1,1],[8,0],[34,1],[2,413],[0,285],[0,161],[0,73],[1,358],[-1,49],[0,65],[3,241],[0,156],[-6,235],[3,58],[5,175],[0,49],[0,31],[8,45],[-9,221],[-3,131],[1,469],[1,234],[0,238],[0,137],[0,49],[1,453],[1,375],[21,1],[4,193],[0,237],[1,438],[0,319],[0,185],[1,332]],[[72947,99901],[100,7],[28,1],[26,1],[54,0],[225,-1],[26,0],[14,-3],[45,1],[216,-1],[2,0],[134,-1],[272,-1],[46,0],[241,-2],[33,-1],[200,-2],[105,0],[238,-2],[120,-1],[161,-1],[294,-2],[37,0],[198,-2],[98,0],[212,5],[356,8],[12,0],[170,0],[240,4],[19,0],[12,2],[14,-2],[14,-1],[15,0],[13,0],[61,0],[22,-1],[14,1],[58,0],[12,0],[21,0],[83,1],[35,1],[20,0],[13,0],[40,0],[27,1],[27,0],[49,0],[58,0],[98,0],[16,0],[75,0],[42,0],[27,0],[20,0],[18,0],[76,0],[21,0],[25,0],[22,0],[57,0],[81,-6],[36,1],[36,0],[78,8],[11,0],[2,0],[148,-4],[14,0],[64,3],[15,-1],[21,-3],[17,0],[31,0],[16,0],[78,0],[61,0],[13,0],[17,0],[15,0],[14,1],[26,0],[20,-1],[21,0],[71,-2],[14,-3],[41,3],[14,1],[17,0],[15,-1],[34,1],[15,-1],[21,0],[13,0],[92,0],[58,-1],[53,0],[25,-1],[24,-1],[44,-1],[12,6],[49,-1],[27,1],[12,-1],[12,2],[14,1],[13,0],[18,1],[23,0],[3,0],[91,-3],[32,-1],[63,-2],[91,-1],[46,-1],[30,3],[21,-3],[41,0],[20,-1],[24,-1],[34,3],[11,-4],[66,1],[23,0],[97,1],[13,0],[21,1],[38,2],[73,2],[35,0],[2,0],[12,0],[162,-1],[14,0],[27,-1],[109,-1],[16,0],[149,-1],[42,0],[58,-1],[18,0],[21,0],[54,0],[34,-1],[146,-1],[136,-1],[26,0],[13,0],[16,0],[16,0],[201,-2]],[[52007,99894],[0,-114],[0,-117],[0,-152],[0,-170],[0,-101],[0,-99],[0,-59],[0,-57],[1,-36],[-4,-308],[0,-131],[-1,-33],[1,-32],[-1,-260],[14,0],[4,0],[38,0],[-1,-113],[0,-61],[0,-40],[0,-46],[0,-37],[0,-39],[0,-29],[-1,-58],[0,-238],[0,-39],[0,-70],[0,-33],[0,-72],[0,-68],[0,-31],[0,-92],[0,-213],[0,-2],[1,-90],[0,-46],[-1,-215],[0,-76],[1,-277],[0,-45],[0,-106],[0,-211],[1,-138],[-1,-46],[1,-34],[-1,-139],[0,-64],[0,-36],[0,-41],[0,-76],[0,-38],[0,-35],[0,-214],[0,-350],[0,-3],[1,-41],[0,-40],[-2,-209],[0,-58],[0,-37],[0,-30],[0,-86],[0,-209],[0,-10],[0,-44],[-1,-125],[1,-40],[-1,-219],[0,-35],[0,-98],[0,-37],[0,-41],[0,-32],[0,-43],[0,-55],[0,-41],[0,-46],[0,-112],[0,-33],[0,-58],[0,-83],[0,-44],[-1,-101],[2,-110],[0,-30],[0,-288],[-1,-212],[-1,-217],[0,-31],[0,-98],[-1,-42],[1,-54],[0,-35],[0,-45],[0,-36],[0,-46],[0,-41],[1,-426],[-1,-214],[0,-215],[0,-64],[-1,-43],[1,-76],[0,-32],[0,-132],[0,-42],[0,-40],[0,-38],[0,-102],[1,-74],[0,-33],[0,-37],[0,-37],[0,-38],[0,-38],[0,-32],[1,-79],[-1,-54],[0,-34],[0,-117],[-1,-62],[0,-56],[1,-35],[0,-16],[-1,-189],[0,-101],[1,-113],[1,-81],[0,-23],[1,-67],[0,-1],[0,-165],[0,-1],[-2,-89],[0,-33],[0,-39],[0,-57],[0,-42],[0,-43],[0,-32],[0,-81],[0,-63],[0,-38],[25,0],[29,0],[28,0],[0,-41],[0,-57],[1,-46],[-1,-51],[0,-52],[0,-62],[0,-63],[0,-75],[0,-2],[0,-50],[0,-64],[0,-108],[0,-73],[0,-51],[0,-80],[0,-61],[0,-53],[0,-257],[0,-57],[0,-118],[0,-46],[-1,-47],[1,-44],[0,-84],[-1,-42],[0,-46],[0,-33],[0,-44],[1,-39],[0,-83],[0,-29],[0,-68],[-1,-131],[0,-39],[0,-43],[0,-78],[0,-49],[0,-44],[0,-43],[0,-47],[0,-38],[0,-40],[0,-68],[0,-108],[0,-42],[0,-60],[0,-36],[0,-75],[0,-39],[0,-31],[0,-40],[0,-38],[0,-45],[-1,-62],[1,-45],[-1,-78],[0,-48],[1,-43],[0,-30],[0,-52],[0,-31],[0,-30],[0,-36],[-1,-49],[0,-47],[0,-39],[0,-61],[0,-57]],[[52136,84080],[0,-67],[0,-84],[0,-106],[-1,-97],[0,-45],[1,-267],[0,-107],[0,-81],[0,-417],[1,-100],[0,-254],[0,-67],[0,-52],[0,-194],[-91,71],[-37,28],[-33,-4],[-61,45],[-51,-8],[-33,-4],[-20,-20],[-30,-31],[-31,-17],[-241,-123],[-251,-128],[-7,13],[-12,19],[-20,17],[-31,2],[-26,-8],[-29,-2],[-70,14],[-64,45],[-16,17],[-17,29],[-60,34],[-14,3],[-36,31],[-27,9],[-20,-1],[-179,154],[-50,44],[-209,179],[-22,19],[-5,4],[-4,3],[-5,3],[-5,4],[-4,3],[-5,3],[-5,2],[-4,3],[-5,3],[-5,2],[-1,1],[-29,25],[-43,36],[-28,25],[-64,88],[-27,49],[-23,39],[-16,66],[-44,189],[-48,204],[-11,31],[-93,207],[-39,14],[-147,76],[-14,-2],[-68,-6],[-134,-41],[-14,-4],[-125,22],[-94,43],[-187,213],[-1,-1],[-56,77],[-59,57],[-112,250],[-16,35],[-25,95],[-26,119],[-38,104],[-14,38],[-18,51],[-33,125],[-19,76],[-53,244],[-1,2],[-63,205],[-107,1],[-13,0],[-15,0],[-167,3],[-16,1],[-29,4],[-24,3],[-50,0],[-1,0],[-67,1],[-159,0],[-299,3],[-5,0],[-124,1],[-5,0],[-78,1],[-202,1]],[[47158,85370],[2,1282],[0,855],[0,107],[2,32],[-3,42],[1,30],[2,347],[-2,2],[-16,24],[-33,6],[-28,6],[-19,6],[-20,9],[-1,1],[-26,-29],[-13,-8],[-7,0],[-36,12],[-10,11],[-23,36],[-8,19],[-5,15],[-3,15],[-5,27],[-13,118],[-1,13],[2,21],[0,40],[-1,26],[-36,111],[-26,56],[-4,4],[-11,15],[-33,44],[-39,150],[-31,79],[-4,7],[-20,21],[0,4],[-11,22],[-5,-1],[-14,16],[-7,3],[-48,47],[-16,34],[-8,46],[-4,8],[0,30],[0,15],[0,3],[-2,31],[0,2],[-6,31],[-10,41],[-2,9],[-10,34],[-1,1],[-5,9],[-4,8],[-14,4],[-18,-1],[-19,5],[-12,4],[-13,8],[-5,3],[-7,7],[-4,4],[-13,23],[-5,31],[0,3],[0,14],[0,20],[0,23],[1,35],[1,11],[-1,5],[-4,25],[-1,7],[-10,35],[-1,3],[-7,22],[1,39],[0,16],[9,62],[3,18],[1,8],[6,27],[4,21],[4,22],[1,13],[0,5],[0,22],[-7,39],[-6,26],[-5,7],[-4,6],[-9,16],[-3,4],[-25,39],[-24,35],[0,5],[-2,15],[-1,7],[-13,28],[-4,10],[-26,47],[-7,8],[-14,4],[-6,-1],[-35,127],[-7,52],[-2,51],[-2,19],[0,1],[-1,3],[-2,37],[-3,13],[-12,47],[-28,55],[-2,2],[-23,48],[-32,92],[-1,3],[3,7],[21,56],[1,2],[11,37],[6,30],[5,33],[1,7],[4,42],[-6,26],[-8,26],[-7,12],[-10,18],[-12,24],[-29,71],[-5,19],[-2,25],[-12,77],[-3,7],[-3,6],[-5,12],[-4,2],[-3,3],[-2,6],[-20,62],[-1,4],[-10,38],[-39,123],[-7,20],[-4,6],[-24,37],[-4,6],[-10,2],[-18,5],[-1,0],[-8,-1],[-47,-5],[-11,-2],[-18,8],[-5,3],[-28,16],[-57,69],[-6,4],[-14,10],[-2,5],[-37,100],[-2,4],[0,2],[-17,39],[-2,5],[-19,63],[-47,163],[-32,112],[0,4],[0,5],[3,18],[0,22],[-1,3],[0,5],[0,12],[-14,57],[-5,16],[-7,27],[-3,5],[-9,12],[-11,16],[-17,13],[-12,3],[-21,26],[-12,21],[-8,18],[-3,7],[-1,4],[-7,23],[-4,40],[0,15],[-4,9],[-25,58],[-15,24],[-78,127],[-7,12],[-5,7],[-25,40],[-15,24],[-18,28],[-32,52],[-3,15],[-3,11],[-3,13],[0,24],[0,5],[0,7],[1,38],[-7,59],[-1,9],[-2,5],[-56,159],[-4,10],[0,3],[-7,35],[-4,20],[-14,71],[-17,46],[-12,37],[-16,31],[-6,13],[-6,10],[-88,84],[-6,5],[-51,46],[-16,8],[-25,-8],[-19,4],[-6,1],[-11,11],[-1,1],[-4,4],[-30,36],[-7,6],[-16,15],[-13,8],[-22,1],[-16,-7],[-2,-1],[-17,-11],[-34,-18],[-16,-10],[-25,-9],[-5,-2],[-1,-1],[-11,-5],[-36,-29],[-23,-4],[-21,8],[-31,-4],[-21,-1],[-24,11],[-40,23],[-9,5],[-2,3],[-22,20],[-20,42],[-17,6],[-7,1],[-2,0],[-17,2],[-34,-2],[-5,-1],[-6,-1],[-4,-1],[-21,-4],[-21,-6],[-4,-6],[-10,-17],[-4,-6],[-15,-24],[-5,-8],[-19,-29],[-11,-19],[-7,-2],[0,-1],[-2,0],[-7,-3],[-8,3],[-93,31],[-14,5],[-21,1],[-7,-5],[-15,-14],[-9,-4],[-9,-4],[-30,-12],[-13,-6],[-14,-2],[-37,-16],[-22,-5],[-1,0],[-2,2],[-16,13],[-5,0],[-9,-1],[-2,0],[-5,-5],[-15,-12],[-25,-16],[-24,-2],[-37,20],[-49,50],[-29,16],[-44,19],[-23,8],[-1,0],[-24,17],[-13,14],[-10,24],[-3,6],[-11,23],[-14,31],[-5,12],[-18,40],[-16,32],[-3,9],[-15,27],[-27,33],[-13,19],[-15,27],[-23,42],[-7,16],[-7,14],[-1,1],[-15,17],[-9,10],[-2,2],[-1,2],[-43,43],[-11,21],[-6,21],[-1,4],[-1,49],[0,14],[0,24],[-1,27],[0,9],[0,19],[-1,49],[-1,77],[0,16],[-2,60],[-2,24],[-2,19],[-1,8]],[[43251,94601],[0,2]],[[43251,94603],[-19,70],[-33,67],[-2,4],[-20,31],[-92,133],[-4,5],[-3,68],[-1,7],[-1,6],[-9,54],[-8,25],[-4,11],[-13,26],[-16,40],[-10,24],[-15,42],[-10,50],[-1,39],[-9,170],[54,0],[1,89],[1,35],[-3,10],[-14,63],[-5,20],[-33,6],[-49,20],[-40,44],[-11,13],[-19,60],[-14,32],[-16,26],[-2,3],[-5,4],[-12,9],[-30,22],[-3,2],[-25,21],[-3,3],[-13,22],[-2,3],[-23,23],[-27,22],[-18,14],[-20,21],[-17,17],[-12,10],[-33,25],[-7,7],[-33,21],[-4,3],[-2,2],[-9,10],[-8,9],[-40,60],[-3,5],[-3,6],[-9,14],[-30,48],[-21,32],[-1,2],[-15,4],[-12,-4],[-15,-4],[-23,5],[-16,25],[-15,35],[-7,33],[-9,41],[-4,46],[-14,49],[-16,36],[-4,9],[-31,61],[-18,46],[-13,42],[-9,42],[-9,82],[-15,91],[-8,49],[0,3],[0,1],[2,61],[10,50],[3,15],[-3,11],[-4,21],[-35,112],[-24,50],[-7,14],[-6,29],[-12,55],[-23,85],[-1,1],[0,2],[-6,53],[-1,2],[-2,9],[-5,18],[-12,22],[-26,31],[-36,42],[-15,28],[-41,97],[-32,101],[-6,35],[-6,27],[-9,21],[-3,7],[-1,3],[-20,55],[-54,107],[-36,156],[-42,189],[-7,36],[-7,41],[2,24],[6,43],[0,6],[4,35],[0,20],[0,17],[0,11],[-5,36],[-10,44],[-18,34],[-3,5],[-42,148],[-40,230],[-1,7],[-15,52],[-5,17],[0,11],[0,2],[-1,35],[3,41],[1,1],[7,14],[3,19],[-1,40],[-11,129],[-6,21],[1,8],[-2,11],[-21,83],[-7,14],[-16,29],[-15,10],[-9,-1],[-11,-4],[-11,-5],[-8,-7],[-11,-9],[-4,-1],[-19,-4],[-1,0],[-12,11],[-6,6],[-14,24],[-11,34],[-6,19],[-10,44]],[[41373,99915],[158,0],[99,2],[190,1],[126,0],[121,8],[52,3],[36,3],[40,2],[58,1],[16,0],[24,1],[22,0],[155,-4],[58,-3],[1,0],[120,-1],[74,-1],[24,0],[55,-1],[76,-1],[84,-1],[1,0],[106,-1],[103,-1],[103,-1],[53,-1],[46,-1],[84,-3],[42,0],[73,0],[12,0],[23,1],[53,0],[62,0],[55,0],[22,0],[248,0],[6,0],[25,0],[15,0],[11,1],[25,0],[51,0],[79,-1],[36,0],[281,0],[117,-2],[105,0],[81,0],[193,-1],[112,0],[53,0],[61,1],[92,0],[34,0],[37,0],[164,-2],[189,-3],[38,0],[206,-2],[56,0],[30,1],[29,1],[102,5],[82,2],[19,1],[27,-1],[25,0],[37,0],[25,0],[24,0],[20,-1],[23,1],[31,-1],[90,0],[12,-1],[46,0],[27,1],[56,1],[20,0],[18,0],[15,1],[12,0],[73,1],[217,0],[158,0],[48,0],[86,-1],[126,0],[182,-2],[28,0],[284,-6],[12,5],[43,0],[11,0],[19,-2],[32,0],[15,1],[204,0],[4,0],[15,0],[1,0],[46,0],[24,0],[107,-1],[3,0],[209,-2],[58,-1],[173,5],[23,-1],[15,1],[192,-3],[67,1],[12,-1],[103,-2],[65,-1],[53,-2],[19,1],[13,0],[23,0],[30,-1],[18,-1],[30,0],[26,-1],[34,0],[116,-2],[20,0],[25,0],[27,0],[13,4],[51,-3],[39,-1],[35,-1],[61,0],[42,0],[46,-1],[35,0],[29,0],[12,-1],[42,-1],[48,1],[106,-1],[32,0],[17,-1],[31,1],[30,0],[24,-1],[12,0],[16,-1],[17,0],[44,0],[1,0],[13,0],[22,0],[41,1],[31,0],[18,0],[19,0],[29,1],[27,0],[30,-1],[41,0],[26,0],[16,0],[32,0],[46,0],[12,0],[25,-1],[12,0],[12,0],[86,-1],[15,0],[12,1],[49,-1],[16,0],[22,0],[36,0],[14,0],[54,-1],[18,1],[31,-1],[19,0],[19,1],[20,0],[84,0],[21,0],[14,0],[13,0],[23,0],[24,0],[13,0],[35,-1],[19,0],[54,0],[45,-1],[28,0],[14,0]],[[93272,99916],[-14,-48],[-24,-15],[-35,-52],[-15,-17],[-21,-10],[-36,19],[-36,0],[-40,-21],[-50,-4],[-14,-5],[-20,-8],[-6,-3],[-2,-26],[-1,-3],[-1,-11],[0,-31],[-1,-65],[0,-3],[3,-60],[0,-24],[4,-50],[7,-48],[4,-21],[6,-20],[5,-15],[5,-7],[7,-9],[7,-10],[20,-31],[9,-45],[-4,-44],[-1,-3],[-2,-3],[-19,-21],[-7,0],[-8,0],[-1,2],[-21,26],[-14,31],[-1,1],[-3,-1],[-15,-6],[-2,-1],[-1,-4],[-6,-21],[-5,-19],[3,-48],[9,-18],[1,-2],[19,-18],[16,0],[20,2],[11,-14],[7,-8],[7,-18],[4,-10],[8,-30],[5,-75],[6,-46],[0,-3],[14,-31],[32,-80],[17,-38],[2,-2],[26,-35],[47,-48],[23,-22],[22,-33],[24,-35],[28,-32],[16,-17],[17,-17],[22,-13],[30,-17],[15,9],[7,4],[22,-2],[12,-8],[17,-36],[1,-8],[8,-33],[-3,-32],[-5,-31],[-4,-29],[-10,-52],[-4,-10],[-8,-20],[-38,-1],[0,-107],[0,-127],[0,-359],[-1,-174],[1,-122],[0,-153],[0,-161],[0,-45],[0,-56],[0,-208],[0,-112],[0,-55],[0,-76],[0,-83],[0,-173],[0,-39],[-1,-169],[0,-36],[0,-79],[0,-148],[0,-200],[0,-228],[1,-426],[0,-430],[-1,-287],[0,-140],[0,-12],[0,-411],[-1,-38],[1,-396],[0,-427],[0,-110],[-1,-51],[0,-64],[0,-204],[0,-426],[0,-88],[0,-276],[0,-66],[0,-166],[0,-260],[1,-40],[0,-54],[-1,-103],[1,-128],[-2,-318],[0,-2],[0,-214]],[[93366,90206],[0,-177],[0,-189],[1,-65],[0,-224],[0,-204],[0,-99],[0,-112],[-1,-219],[0,-57],[0,-167],[1,-129],[0,-77],[-1,-213],[0,-215],[-66,-5],[-5,-10],[-1,-271],[0,-134],[0,-33],[1,-307],[0,-158],[0,-63],[0,-49],[0,-68],[0,-158],[-2,-56],[2,-334],[0,-97],[-1,-318],[-1,-60],[0,-52],[0,-3],[1,-123],[0,-31],[1,-274]],[[93295,85455],[-34,1],[-29,1],[-14,0],[-14,1],[-15,3],[-17,0],[-39,0],[-20,0],[-25,0],[-15,0],[-14,2],[-13,0],[-12,-2],[-16,0],[-37,1],[-18,0],[-18,-1],[-68,-2],[-28,0],[-75,0],[-12,2],[-96,1],[-42,1],[-29,0],[-138,1],[-93,2],[-102,1],[-14,1],[-97,1],[-106,1],[-80,0],[-65,8],[-236,-6],[-1,0],[-52,-1],[-41,0],[-51,-2],[-105,1],[-43,0],[-167,1],[-125,0],[-84,0],[-205,1],[-80,-1],[-23,-1],[-112,-2],[-35,-1],[-98,-1],[-68,0],[-70,0],[-12,0],[-44,0],[-9,0],[-35,2],[-41,1],[-32,0],[-176,-1],[-101,0],[-35,0],[-220,2],[-30,0],[-35,-1]],[[89534,85469],[0,126],[0,203],[-1,98],[0,149],[-1,136],[0,37],[-1,105],[0,61],[0,367],[0,114],[1,110],[-1,203],[0,165],[0,201],[0,7],[0,59],[0,40],[0,184],[0,40],[-1,173],[-106,2],[-48,0],[-24,1],[-127,1],[-168,1],[-85,-1],[-17,0],[-53,-3],[-43,-1],[-16,1],[-57,-2],[-10,0],[-11,0],[-19,3],[-56,0],[-208,-1],[-155,-1]],[[88605,99910],[28,0],[64,0],[31,0],[23,1],[65,0],[55,1],[27,-1],[18,0],[44,1],[26,0],[29,0],[18,1],[12,1],[17,-1],[17,1],[22,0],[22,0],[24,-1],[34,0],[19,1],[15,1],[16,-2],[74,1],[41,-1],[16,0],[16,-1],[16,0],[24,-1],[21,1],[20,0],[18,1],[22,-1],[33,0],[2,0],[18,2],[23,-1],[30,0],[17,0],[13,0],[22,0],[59,1],[43,1],[51,1],[113,1],[45,0],[56,0],[52,0],[19,1],[35,-1],[27,-1],[31,0],[28,0],[20,1],[60,0],[30,0],[63,0],[24,0],[12,0],[22,1],[57,0],[48,0],[27,1],[24,-1],[48,0],[15,0],[27,1],[15,0],[36,-1],[22,1],[18,0],[15,-1],[20,0],[21,0],[30,0],[49,0],[39,0],[33,1],[14,-1],[39,1],[34,-1],[109,-2],[43,-1],[66,3],[13,1],[30,1],[36,0],[20,-1],[17,1],[32,0],[15,-1],[14,0],[34,0],[28,0],[15,0],[14,0],[13,-1],[23,1],[17,-1],[41,1],[65,-1],[13,0],[14,1],[18,0],[42,1],[19,-1],[13,-1],[25,0],[14,0],[22,0],[33,0],[12,-1],[23,1],[25,1],[28,0],[30,0],[21,-1],[41,1],[33,0],[17,0],[23,0],[15,-1],[13,1],[18,-1],[1,0],[19,0],[28,1],[19,0],[24,-1],[34,0],[21,0],[12,0],[40,-1],[26,1],[22,-1],[23,1],[100,-1],[116,1],[49,0],[15,0],[31,0],[44,0],[49,0],[12,-2],[33,0],[4,0],[51,0],[220,1],[44,-1]],[[83916,88045],[-33,1],[-1,-370],[0,-56],[-1,-377],[0,-53],[0,-150],[-1,-59],[5,-217],[1,-169],[0,-197],[0,-62],[-1,-417],[-2,-215],[0,-228],[0,-49],[1,-243],[-1,-132],[-1,-432],[0,-275],[-1,-152],[2,-427],[1,-117],[0,-146],[1,-269],[0,-52],[-5,-273]],[[83880,82909],[-24,-3],[-69,0],[-14,0],[-91,1],[-13,1],[-154,2],[-50,0],[-51,1],[-38,1],[-121,2],[-18,-1],[-15,0],[-27,-1],[-4,0],[-145,1],[-29,0],[-76,0],[-51,0],[-15,0],[-41,0],[-55,0],[-109,0],[-37,-1],[-9,0],[-5,0],[-195,-1],[-21,0],[-79,0],[-117,0],[-29,0],[-49,0],[-49,0],[-42,0],[-35,0],[-36,0],[-7,1],[-38,0],[-38,0],[-19,1],[-35,0],[-18,0],[-17,0],[-3,0],[-38,-2],[-59,1],[-14,1]],[[81685,99897],[10,1],[54,4],[121,0],[68,1],[70,0],[72,1],[32,0],[30,1],[89,0],[59,-2],[85,3],[3,1],[59,1],[51,2],[14,0],[31,-2],[108,2],[64,0],[38,1],[176,-4],[70,0],[35,0],[111,5],[15,-2],[27,0],[71,-1],[90,-1],[33,1],[180,0],[42,-1],[59,-1],[108,-1],[42,0],[84,-1],[20,0],[29,0],[133,3],[24,0],[90,2]],[[64634,99892],[1,-363],[1,-44],[-1,-121],[-1,-30],[0,-43],[0,-38],[0,-53],[0,-72],[0,-37],[0,-29],[0,-61],[1,-169],[0,-197],[0,-42],[-1,-386],[-1,-433],[1,-295],[0,-11],[0,-122],[-1,-431],[0,-427],[0,-248],[0,-183],[0,-289],[0,-138],[0,-429],[0,-427],[0,-109],[0,-57],[0,-42],[0,-61],[1,-159],[0,-30],[0,-184],[0,-215],[1,-164],[1,-268],[-1,-53],[1,-38],[-1,-80],[0,-4],[-1,-250],[-1,-428],[1,-83],[0,-166],[1,-178],[0,-106],[0,-85],[-1,-51],[0,-186],[0,-173],[0,-253],[0,-426],[0,-215],[0,-215],[0,-426],[0,-281],[0,-145],[0,-215],[0,-17],[0,-15],[0,-195],[0,-202],[0,-94],[0,-47],[0,-66],[0,-45],[-1,-175],[-1,-216],[1,-236],[0,-189]],[[64633,87931],[-33,-5],[-133,2],[-35,0],[-13,1],[-38,1],[-158,-3],[-32,2],[-180,-1],[-114,-2],[-96,-1],[-103,0],[-32,1],[-73,-2],[-80,1],[-117,-1],[-22,3],[-200,-2],[-156,-1],[-41,0],[-22,0],[-131,-1],[-56,0],[-22,2],[-13,-1],[-97,-1],[-77,0],[-23,1],[-182,0],[-27,1],[-119,-1],[-57,-1],[-34,2],[-26,0],[-58,-1],[-90,-1],[-35,0],[-13,0],[-158,-3],[-39,2],[-174,-3],[-33,1],[-177,-2],[-34,0],[-177,-1],[-34,2],[-73,1],[-103,2],[-33,1],[-52,0],[-25,0],[-105,0],[-14,-1],[-39,1],[-25,0],[-131,2],[-33,0],[-2,0],[-174,-1],[-27,0],[-80,1],[-103,0],[-28,1],[-154,1],[-47,0],[-1,0],[-130,1],[-3,0],[-16,0],[-30,-1],[-39,2],[-171,-3],[-40,1],[-13,0],[-136,1],[-18,-1],[-24,1],[-18,1],[-104,-2],[-62,0],[-39,1],[-168,1],[-46,2],[-119,0],[-76,1],[-2,0],[-12,0],[-60,0],[-96,0],[-40,0],[-122,-2],[-51,0],[-12,0],[-33,-1],[-104,0],[-56,0],[-54,0],[-75,-1],[-83,-1],[-52,2],[-69,0],[-1,0],[-87,0],[-44,1],[-62,0],[-13,0],[-91,-1],[-51,0],[-153,0]],[[57145,87929],[-20,1],[-26,0],[-13,0],[0,30],[0,213],[0,127],[0,41],[-1,90],[0,194],[0,30],[0,79],[-1,36],[1,196],[0,244],[-1,430],[-2,430],[0,2],[0,91],[0,295],[0,40],[0,36],[-1,113],[-1,56],[1,61],[-1,38],[0,89],[0,35],[0,89],[0,50],[-1,216],[0,45],[0,37],[0,36],[0,47],[0,10],[0,42],[0,45],[0,41],[0,35],[0,35],[0,32],[0,37],[0,59],[-1,67],[0,76],[0,63],[0,34],[0,44],[0,37],[-1,72],[0,34],[-1,50],[0,53],[0,40],[0,173],[-1,457],[-2,88],[0,33],[1,157],[0,72],[0,47],[0,100],[0,41],[0,35],[0,34],[1,41],[0,36],[0,32],[0,101],[0,71],[1,48],[0,35],[0,75],[0,54],[0,92],[0,36],[0,32],[0,40],[0,71],[0,3],[4,875],[0,93],[1,298],[1,237],[-1,210],[-1,171],[0,207],[1,215],[0,264],[1,429],[0,29],[0,50],[0,56],[1,55],[0,104],[0,42],[0,32],[0,60],[0,77],[1,30],[-1,36],[0,133],[0,160],[-22,0],[-1,216],[0,129],[-1,83],[-1,417],[-1,440],[-1,181],[-1,189]],[[57055,99874],[25,1],[14,0],[15,0],[130,3],[31,0],[22,0],[88,2],[102,0],[22,0],[13,0],[5,0],[39,0],[56,0],[24,1],[55,1],[38,0],[83,1],[15,0],[1,0],[63,0],[14,0],[17,1],[15,0],[23,0],[44,0],[18,0],[34,0],[53,1],[22,0],[36,1],[69,0],[69,0],[17,0],[18,0],[62,1],[23,0],[60,-1],[47,-1],[16,0],[33,1],[42,0],[64,0],[40,1],[20,0],[14,0],[53,1],[24,0],[32,0],[65,1],[14,0],[23,0],[19,1],[61,-1],[109,1],[20,0],[11,0],[14,0],[38,0],[71,0],[57,0],[17,0],[48,1],[16,0],[46,0],[86,0],[30,0],[73,0],[67,1],[49,-1],[22,0],[72,1],[1,0],[35,0],[30,0],[41,0],[55,0],[60,0],[63,-1],[30,1],[31,0],[15,0],[17,0],[61,1],[13,0],[13,0],[35,-1],[31,1],[25,0],[40,0],[46,0],[42,0],[42,0],[39,0],[37,0],[25,0],[27,0],[46,1],[50,1],[37,5],[171,-5],[21,-1],[26,0],[25,0],[46,0],[39,0],[61,-1],[37,1],[13,0],[39,0],[38,0],[49,-1],[33,0],[14,0],[12,-1],[12,1],[135,4],[20,0],[10,0],[49,-1],[155,0],[58,1],[161,2],[59,0],[35,-1],[212,2],[22,-4],[30,0],[17,0],[30,-1],[20,2],[19,0],[12,-3],[16,1],[12,9],[135,-6],[73,-2],[44,-2],[75,-2],[1,0],[14,-1],[15,0],[3,0],[11,-1],[117,-2],[70,2],[78,1],[34,0],[14,-1],[13,-1],[35,1],[29,1],[17,-1],[68,3],[43,0],[14,0],[1,0],[125,0],[4,0],[28,0],[34,0],[47,0],[5,0],[78,1],[32,0],[25,-3],[55,0],[28,-1],[28,0],[17,1],[18,-1],[36,0],[14,0],[23,1],[19,0],[22,0],[44,1],[28,0],[18,0],[39,-1],[20,0],[24,0],[49,0],[23,1],[40,0],[62,1],[35,-1],[38,-1],[18,-1],[13,-1],[9,3],[7,2],[14,-1],[13,-1]],[[57145,87929],[0,-32],[0,-221],[0,-105],[-1,-101],[0,-90],[0,-31],[0,-36],[0,-31],[1,-226],[0,-36],[1,-41],[0,-120],[0,-103],[0,-111],[-1,-238],[0,-87],[0,-42],[0,-62],[0,-71],[0,-66],[0,-91],[0,-200],[0,-66],[0,-39],[0,-40],[-1,-45],[0,-42],[1,-48],[0,-5],[0,-31],[0,-53],[0,-59],[0,-37],[-1,-157],[0,-66],[0,-59],[0,-62],[0,-71],[0,-55],[0,-35],[0,-50],[0,-50],[0,-72],[0,-72],[0,-68],[0,-20],[-1,-53],[1,-36],[0,-74],[0,-45],[0,-51],[-1,-69],[0,-81]],[[57143,84077],[-12,0],[-33,1],[-49,0],[-16,0],[-37,0],[-13,1],[-51,0],[-27,0],[-32,-1],[-19,0],[-18,0],[-22,0],[-43,0],[-21,0],[-16,0],[-16,0],[-46,0],[-17,1],[-22,0],[-24,0],[-29,1],[-25,0],[-39,0],[-12,-1],[-34,1],[-22,0],[-36,0],[-35,0],[-29,0],[-51,-1],[-14,1],[-35,1],[-37,-1],[-36,0],[-45,1],[-14,0],[-18,1],[-29,0],[-57,0],[-20,0],[-12,0],[-43,1],[-46,1],[-34,0],[-41,1],[-26,0],[-15,0],[-21,0],[-55,1],[-17,0],[-74,-1],[-30,0],[-13,0],[-33,0],[-30,-1],[-27,0],[-2,0],[-12,0],[-12,0],[-42,-1],[-37,0],[-30,0],[-21,0],[-25,0],[-24,0],[-5,0],[-15,0],[-51,0],[-14,0],[-24,0],[-43,0],[-13,0],[-25,0],[-23,0],[-21,1],[-53,0],[-22,1],[-36,0],[-43,-1],[-33,1],[-21,0],[-13,-1],[-21,0],[-29,-1],[-21,-1],[-28,0],[-28,0],[-18,-1],[-36,0],[-15,0],[-64,1],[-19,0],[-12,1],[-17,-1],[-19,1],[-18,0],[-13,0],[-25,1],[-18,0],[-18,0],[-12,-1],[-16,1],[-33,-1],[-18,0],[-14,0],[-43,0],[-16,0],[-17,0],[-15,0],[-15,-1],[-14,0],[-17,0],[-14,-1],[-32,-1],[-56,-1],[-20,0],[-20,0],[-17,0],[-18,0],[-32,0],[-24,0],[-29,0],[-18,0],[-14,0],[-39,0],[-13,0],[-14,0],[-71,-1],[-15,0],[-14,-1],[-13,1],[-20,0],[-26,0],[-16,0],[-33,-1],[-16,0],[-48,0],[-44,-1],[-15,-1],[-17,0],[-43,0],[-19,0],[-8,0],[-12,-1],[-28,1],[-53,2],[-14,0],[-17,0],[-13,1],[-36,0],[-23,0],[-15,0],[-19,0],[-72,-1],[-18,0],[-66,-2],[-18,0],[-17,1],[-9,0],[-14,0],[-24,1],[-32,1],[-18,0],[-16,0],[-77,2],[-16,0],[-19,0],[-40,1],[-36,1],[-13,0],[-17,0],[-12,0],[-15,0],[-57,0],[-13,0],[-15,0],[-49,-2],[-30,1],[-36,1],[-65,-1],[-17,0],[-19,0],[-28,0],[-20,0],[-124,-1]],[[52007,99894],[44,0],[24,1],[20,1],[15,0],[29,1],[52,1],[24,0],[16,-1],[21,1],[14,0],[31,-1],[29,-1],[32,-1],[43,-1],[33,-1],[25,0],[25,-1],[4,-1],[13,0],[7,0],[20,0],[17,-1],[69,-1],[16,-1],[12,0],[9,0],[33,-1],[14,1],[12,0],[24,0],[54,-1],[15,-1],[19,0],[15,0],[13,0],[40,-1],[35,0],[21,-1],[42,0],[32,0],[20,0],[18,0],[12,0],[41,-1],[76,-1],[57,1],[15,-1],[12,1],[54,0],[46,-1],[35,0],[53,4],[22,-2],[117,-1],[21,3],[363,-5],[89,-7],[43,-1],[3,0],[34,-1],[115,1],[15,3],[18,0],[12,0],[12,-5],[122,-2],[90,-2],[215,-4],[106,-1],[43,0],[3,0],[55,1],[210,0],[1,0],[236,1],[37,-1],[139,8],[14,0],[12,0],[32,0],[45,-1],[19,2],[35,-1],[38,-1],[33,-1],[77,1],[30,1],[17,1],[86,-4],[48,1],[20,-1],[37,1],[17,0],[49,1],[17,-1],[13,1],[12,-1],[23,0],[34,1],[158,0],[41,1],[50,2],[38,1],[66,2],[14,0],[56,-1],[83,-1],[35,0],[23,-1],[14,1],[22,0],[77,0],[90,0]],[[69405,87960],[-47,-29],[-40,2],[-11,0],[-11,1],[-56,2],[-15,2],[-13,-1],[-76,1],[-1,0],[-20,0],[-30,1],[-18,0],[-23,0],[-26,0],[-45,1],[-20,0],[-17,0],[-18,0],[-27,1],[-12,-1],[-63,1],[-52,0],[-28,1],[-44,1],[-42,-1],[-15,3],[-36,1],[-4,0],[-35,-3],[-20,0],[-12,0],[-18,1],[-4,1],[-8,1],[-20,1],[-27,0],[-18,0],[-20,0],[-11,-2],[-8,-2],[-25,0],[-15,0],[-16,0],[-23,0],[-18,1],[-27,-1],[-26,1],[-18,0],[-29,0],[-20,0],[-42,0],[-23,1],[-20,0],[-43,-2],[-30,0],[-42,-1],[-97,0],[-17,0],[-18,0],[-17,0],[-18,0],[-19,0],[-15,0],[-108,-1],[-55,0],[-13,0],[-21,0],[-17,0],[-17,1],[-167,-2],[-20,0],[-16,1],[-141,0],[-18,0],[-19,-1],[-19,-3],[-6,1],[-10,1],[-17,0],[-55,0],[-103,0],[-17,0],[-38,0],[-13,0],[-21,1],[-18,-1],[-17,0],[-14,0],[-49,-2],[-29,0],[-9,0],[-5,0],[-23,0],[-22,1],[-33,1],[-22,0],[-15,0],[-48,0],[-21,0],[-21,-1],[-28,1],[-22,0],[-20,0],[-28,0],[-20,0],[-26,-1],[-27,0],[-38,0],[-22,0],[-44,1],[-17,-1],[-20,0],[-17,0],[-32,0],[-57,0],[-48,-1],[-33,-2],[-20,0],[-16,0],[-40,-1],[-54,-1],[-106,5],[-18,-1],[-23,-1],[-25,-1],[-36,0],[-14,0],[-3,0],[-12,0],[-51,0],[-42,0],[-19,-1],[-40,1],[-30,-1],[-20,1],[-46,-1],[-47,0],[-37,0],[-19,1],[-41,-1],[-99,0],[-110,0],[-21,0],[-19,0],[-20,0],[-21,-1],[-13,0],[-42,0],[-24,0],[-28,0],[-22,0],[-172,-2],[-27,0]],[[64643,87931],[-10,0]],[[64634,99892],[42,0],[15,1],[38,0],[42,0],[23,0],[46,1],[29,0],[40,-1],[22,0],[120,1],[25,0],[38,0],[35,-1],[36,0],[38,1],[19,0],[3,0],[12,0],[84,1],[17,0],[2,0],[16,0],[29,0],[66,1],[13,0],[54,0],[21,0],[17,0],[16,1],[11,0],[6,0],[13,1],[20,-1],[19,1],[22,-1],[24,-1],[71,0],[27,0],[30,0],[32,0],[27,1],[26,-1],[26,0],[38,0],[22,1],[23,-1],[1,0],[45,1],[24,0],[28,0],[24,1],[167,0],[29,-1],[48,1],[13,-1],[12,0],[19,0],[14,0],[21,0],[45,0],[26,1],[35,0],[50,0],[39,-1],[43,1],[18,0],[24,1],[40,0],[42,-1],[39,1],[42,-1],[11,0],[1,0],[33,1],[37,-1],[29,0],[16,1],[33,-1],[26,0],[51,1],[14,1],[27,-2],[42,1],[18,0],[25,0],[19,0],[52,-1],[12,0],[39,1],[61,0],[45,0],[53,1],[13,0],[43,1],[45,-1],[16,0],[25,0],[26,1],[31,0],[33,1],[28,1],[62,-1],[31,0],[23,0],[58,-1],[32,1],[21,0],[51,1],[106,-1],[16,0],[84,0],[110,1],[105,2],[46,-2],[32,-1],[16,0],[11,0],[32,0],[20,0],[51,1],[84,-1],[39,-1],[3,0],[82,0],[49,0],[1,0],[163,-2],[71,0],[139,0],[136,3],[1,0],[42,0],[32,-1],[18,0],[89,-2],[22,1],[191,3],[35,0],[99,-2],[80,1],[94,0],[101,0],[14,0],[18,0],[78,1],[115,0],[95,1],[118,-1],[54,0],[106,2],[11,0],[6,0],[25,1],[56,1],[19,-1],[140,-1],[16,1],[158,1],[155,1],[91,0],[153,0],[137,-2],[20,0],[118,1],[94,0],[14,-1],[55,-1],[31,-1],[226,0],[32,3],[257,-1],[236,-5]],[[97817,90123],[-83,-1],[-50,0],[-136,0],[-25,0],[-22,0],[-14,0],[-24,0],[-34,1],[-28,0],[-39,0],[-51,0],[-123,0],[-88,0],[-35,0],[-12,-2],[-23,-3],[-140,1],[-46,0],[-63,0],[-1,0],[-62,0],[-39,0],[-30,1],[-23,-1],[-53,1],[-25,0],[-37,1],[-22,0],[-28,-3],[-4,-1],[-41,-4],[-15,-1],[-42,0],[-30,-1],[-29,0],[-19,1],[-71,10],[-25,0],[-9,0],[-34,0],[-34,0],[-105,0],[-10,-1],[-6,0],[-50,-1],[-35,84],[-3,0],[-66,-6],[-24,3],[-32,-1],[-98,-2],[-106,3],[-105,-1],[-74,0],[-26,0],[-110,2],[-24,0],[-16,1],[-169,-1],[-3,0],[-104,-1],[-23,0],[-82,0],[-20,0],[-56,1],[-12,0],[-42,0],[-79,1],[-16,0],[-32,-1],[-77,-1],[-13,-2],[-21,1],[-23,1],[-18,0],[-13,1],[-11,0],[-38,-1],[-55,0],[-103,1],[-24,0],[-82,0],[-61,1],[-42,0],[-211,0],[-114,1],[-97,0],[-13,0],[-198,2]],[[93272,99916],[18,0],[1,0],[20,0],[48,-1],[45,2],[12,0],[26,0],[105,1],[30,0],[24,-1],[24,0],[28,1],[59,-1],[19,0],[24,-1],[65,-1],[17,0],[23,0],[94,-3],[54,0],[44,0],[105,-2],[44,-1],[64,-2],[18,-1],[191,0],[111,-3],[60,-2],[42,-2],[18,-2],[79,1],[33,1],[39,-1],[45,0],[14,-1],[99,1],[60,-1],[13,0],[3,0],[24,1],[23,-2],[14,0],[12,0],[15,0],[14,0],[16,0],[17,0],[57,0],[44,0],[1,0],[14,-2],[35,0],[13,0],[46,0],[16,0],[12,0],[39,1],[35,0],[54,0],[89,1],[15,0],[64,0],[84,-1],[48,-1],[12,0],[16,0],[52,-2],[37,1],[67,-3],[66,0],[32,1],[74,1],[4,0],[9,1],[20,0],[21,0],[24,0],[61,0],[1,0],[16,-1],[34,2],[41,0],[15,0],[38,1],[52,-1],[22,0],[43,1],[25,0],[39,0],[14,0],[1,0],[13,0],[100,1],[24,-1],[99,1],[62,-2],[56,-3],[159,0],[118,0],[202,0],[106,0],[68,11],[84,-4],[-1,-49],[0,-19],[0,-15],[1,-40],[0,-31],[0,-62],[0,-87],[-1,-31],[0,-51],[0,-34],[-1,-39],[0,-81],[0,-59],[0,-36],[-1,-192],[-3,-35],[-1,-34],[-8,-31],[-4,-30],[8,-27],[7,-27],[1,-38],[2,-39],[1,-49],[0,-42],[-1,-43],[0,-47],[0,-31],[0,-115],[0,-30],[0,-93],[1,-65],[0,-60],[0,-58],[0,-41],[0,-65],[0,-34],[0,-59],[0,-35],[0,-35],[0,-61],[0,-37],[1,-62],[-1,-52],[0,-30],[0,-33],[0,-53],[0,-58],[0,-47],[0,-48],[-1,-110],[1,-221],[-1,-33],[0,-31],[0,-36],[0,-43],[0,-49],[-3,-115],[-3,-304],[-1,-99],[3,-34],[2,-133],[-1,-45],[0,-48],[0,-60],[1,-44],[-1,-85],[0,-70],[0,-92],[0,-31],[0,-103],[0,-47],[1,-57],[0,-43],[-1,-56],[0,-37],[0,-54],[0,-31],[-1,-126],[1,-56],[0,-36],[0,-47],[0,-5],[0,-25],[0,-52],[-1,-220],[0,-6],[0,-73],[-1,-165],[0,-4],[1,-368],[1,-246],[2,-424],[0,-59],[-1,-51],[0,-164],[-1,-153],[0,-33],[-1,-256],[0,-198],[2,-363],[0,-119],[0,-53],[1,-450],[0,-240],[0,-95],[0,-116],[1,-556],[0,-88],[0,-125],[0,-33],[0,-31],[1,-112],[-1,-46]],[[43251,94601],[0,-76],[0,-44],[0,-66],[0,-60],[1,-83],[0,-49],[0,-30],[0,-157],[0,-35],[1,-498],[0,-43],[1,-89],[0,-111],[0,-41],[1,-115],[-1,-85],[-1,-47],[0,-49],[-1,-50],[0,-37],[-2,-101],[0,-50],[-1,-117],[0,-133],[1,-37],[0,-59],[0,-55],[0,-35],[0,-58],[0,-48],[0,-38],[0,-47],[-1,-54],[0,-128],[0,-30],[0,-27],[0,-12],[0,-52],[0,-41],[0,-46],[0,-48],[0,-37],[0,-38],[0,-50],[0,-65],[0,-31],[0,-53],[0,-52],[0,-55],[0,-46],[0,-45],[0,-105],[0,-40],[0,-244],[0,-56],[0,-60],[0,-79],[0,-33],[0,-81],[0,-83],[0,-106],[-1,-52],[0,-40],[0,-65],[0,-42],[2,-34],[0,-34],[-1,-35],[0,-37],[-1,-67],[0,-58],[1,-117],[1,-66],[0,-97],[0,-73],[-1,-109],[1,-87],[0,-52],[-1,-130],[0,-50],[0,-158],[-2,-33],[1,-33],[0,-35],[-1,-107],[1,-37],[1,-306],[2,-133],[0,-101],[-2,-61],[1,-37],[-54,-1],[-66,-4],[-96,-3],[-18,0],[-14,0],[-16,0],[-15,-1],[-13,0],[-47,0],[-26,-1],[-21,1],[-18,-1],[-25,0],[-12,0],[-6,0],[-14,0],[-78,-2],[-41,-1],[-21,-1],[-37,0],[-22,0],[-15,0],[-44,-5],[-2,0],[-129,-3],[-11,-1],[-16,-1],[-18,0],[-16,0],[-19,0],[-46,-1],[-57,-2],[-14,-1],[-22,0],[-5,0],[-8,0],[-14,-1],[-29,1],[-13,0],[-38,-1],[-25,1],[-25,0],[-33,0],[-32,0],[-20,0],[-36,0],[-23,-1],[-41,0],[-15,-1],[-20,0],[-19,1],[-34,-1],[-19,0],[-16,-1],[-15,-1],[-18,0],[-15,-1],[-17,-2],[-13,1],[-22,0],[-13,0],[-12,-1],[-28,0],[-99,5],[-280,0],[-39,-6],[-95,-6],[-39,-2],[-109,-7],[-36,-3],[-12,0],[-43,-1],[-383,-5],[-60,0],[-8,-1],[-59,0],[-32,-1],[-36,0],[-180,-3],[-25,0],[-15,0],[-68,-1],[-71,-1],[-89,-1],[-1,0],[-101,-1],[-53,-1]],[[39630,87905],[-231,11],[-99,0],[-27,0],[-7,0],[-55,2],[-23,0],[-39,0],[-18,1],[-27,-1],[-17,0],[-38,-1],[-30,1],[-14,-1],[-13,0],[-91,0],[-30,2],[-40,0],[-32,-2],[-13,-1],[-18,0],[-40,0],[-63,-4],[-45,1],[-35,5],[-35,0],[-16,0],[-31,0],[-27,0],[-54,0],[-20,0],[-72,-1],[-32,0],[-24,1],[-35,-1],[-39,1],[-15,0],[-13,0],[-22,0],[-33,1],[-49,1],[-32,0],[-37,1],[-10,-1],[-2,0],[-42,0],[-14,-1],[-24,-1],[-23,-1],[-18,0],[-21,-1],[-17,0],[-29,-1],[-25,1],[-37,1],[-21,0],[-21,0],[-17,0],[-6,0],[-92,0],[-12,0],[-15,0],[-172,0],[-24,1],[-26,0],[-31,0],[-46,1],[-38,0],[-38,0],[-17,0],[-15,0],[-21,0],[-12,0],[-19,0],[-24,1],[-40,1],[-29,0],[-26,0],[-24,0],[-15,0],[-16,0],[-42,0],[-36,-1],[-24,0],[-25,0],[-54,0],[-14,0],[-17,0],[-22,0],[-13,0],[-14,1],[-23,-1],[-44,-3],[-3,0],[-78,2],[-14,0],[-24,-2],[-13,1],[-21,-1],[-49,1],[-29,0],[-11,8],[-16,-6],[-29,-1],[-22,0],[-42,0],[-59,0],[-104,-1],[-36,-1],[-25,0],[-31,1],[-108,2],[-73,2],[-124,-1],[-21,-2],[-15,1],[-34,0],[-18,0],[-28,0],[-18,0],[-12,0],[-23,0],[-21,1],[-27,0],[-15,-1],[-16,0],[-88,0],[-90,0],[-39,0],[-18,0],[-19,0],[-15,1],[-19,0],[-23,0],[-21,0],[-13,0],[-18,0],[-24,0],[-23,-1],[-31,-1]],[[34992,87919],[-1,77],[0,84],[0,37],[0,45],[0,60],[0,47],[0,39],[0,45],[0,68],[0,52],[0,40],[0,39],[0,85],[0,34],[0,4],[-1,90],[0,53],[0,40],[0,48],[0,62],[-1,51],[1,37],[-1,128],[0,33],[0,42],[0,104],[0,56],[-1,63],[0,129],[0,93],[0,44],[0,41],[0,79],[0,56],[0,132],[0,39],[-1,89],[0,77],[0,54],[0,71],[0,53],[0,49],[-1,32],[0,121],[0,57],[1,51],[-1,63],[0,63],[0,58],[0,54],[0,71],[0,75],[0,57],[0,59],[1,88],[-3,203],[2,185],[0,19],[0,371],[-1,107],[-1,41],[0,52],[0,123],[0,52],[0,118],[0,44],[-1,56],[1,60],[-1,68],[0,48],[0,48],[0,36],[0,51],[0,53],[0,59],[0,124],[0,44],[0,64],[0,273],[1,301],[0,147],[0,616],[1,449],[0,10],[0,52],[1,61],[0,69],[0,183],[0,37],[0,61],[0,32],[1,58],[0,62],[0,58],[0,68],[0,52],[0,42],[0,57],[0,46],[1,65],[0,52],[0,97],[0,92],[0,90],[0,33],[0,43],[0,156],[1,112],[0,119],[0,75],[0,64],[0,61],[0,70],[0,75],[1,86],[0,191],[0,50],[0,39],[0,68],[0,47],[1,34],[5,321],[2,140],[-1,434],[0,42],[-1,181],[1,171],[0,16],[-1,273],[0,454],[-2,59],[4,74]],[[34998,99981],[25,0],[33,-1],[28,-1],[25,-1],[169,0],[58,0],[426,1],[376,0],[203,1],[141,0],[20,-1],[421,-10],[5,0],[9,0],[53,-1],[37,-1],[15,0],[16,0],[224,-4],[122,-2],[121,-3],[130,1],[8,1],[30,-1],[24,0],[19,-1],[118,-3],[19,1],[40,-2],[32,0],[25,0],[27,-1],[18,-1],[18,-1],[29,0],[24,-1],[22,0],[29,-1],[33,-1],[20,0],[39,-2],[36,-1],[18,-1],[13,0],[31,1],[28,0],[26,-1],[13,0],[15,0],[23,-1],[12,0],[24,-1],[12,1],[28,-1],[56,0],[16,0],[21,0],[20,-1],[12,0],[41,0],[22,-1],[22,-1],[17,-1],[14,0],[17,-1],[56,0],[37,-1],[18,-1],[82,-2],[16,0],[48,0],[23,0],[22,0],[15,0],[65,-2],[13,0],[14,0],[12,0],[13,0],[14,0],[13,0],[59,0],[24,-1],[26,0],[21,0],[19,0],[23,0],[25,0],[13,0],[16,0],[44,0],[29,-1],[44,1],[48,0],[18,0],[28,-1],[20,0],[14,0],[20,0],[13,0],[24,0],[19,-1],[13,0],[15,0],[65,-1],[36,1],[41,-1],[13,0],[38,0],[23,0],[27,0],[14,0],[17,0],[30,0],[14,-1],[16,0],[12,0],[37,-9],[45,1],[20,0],[31,-1],[6,0],[95,2],[17,1],[12,0],[35,1],[117,2],[115,-1],[87,1],[14,0],[22,0],[13,0],[18,-1],[29,0],[35,0],[77,0],[15,0],[56,1],[24,-4],[17,0],[68,-2],[41,-2],[66,0],[32,0],[80,0],[1,0]],[[11366,99727],[1,-57],[0,-41],[0,-38],[0,-40],[0,-177],[0,-197],[0,-269],[0,-124],[0,-32],[0,-93],[0,-178],[0,-156],[0,-56],[0,-115],[0,-69],[0,-30],[0,-118],[0,-101],[0,-52],[0,-88],[0,-73],[0,-38],[0,-138],[0,-23],[0,-38],[0,-28],[0,-2],[0,-162],[0,-77],[0,-53],[0,-85],[0,-79],[0,-100],[0,-33],[0,-216],[0,-89],[0,-126],[0,-60],[0,-49],[2,-124],[-3,-81],[0,-6],[-1,-425],[0,-115],[-43,-14],[-2,-51],[1,-52],[1,-49],[0,-256],[1,-270],[0,-37],[0,-80],[0,-44],[0,-177],[0,-71],[0,-33],[0,-146],[0,-112],[0,-100],[0,-127],[0,-89],[1,-52],[-1,-38],[1,-81],[0,-50],[0,-126],[0,-81],[0,-110],[0,-105],[0,-212],[0,-1],[0,-99],[0,-37],[1,-70],[1,-185],[0,-65],[0,-30],[0,-35],[0,-41],[0,-50],[0,-31],[0,-67],[0,-63],[-1,-54],[0,-35],[-1,-79],[0,-99],[0,-29],[0,-1],[0,-31],[0,-33],[-1,-91],[0,-30],[0,-34],[-1,-428],[0,-439],[0,-65],[-1,-347],[0,-47],[0,-38],[0,-49],[0,-48],[0,-46],[0,-47],[0,-48],[0,-48],[1,-62],[0,-86],[0,-5],[-2,-450],[1,-226],[0,-33],[0,-41],[0,-44],[0,-89],[0,-39],[0,-40],[-1,-69],[0,-48],[0,-63],[0,-53],[0,-76],[0,-34],[0,-95],[0,-52],[0,-170],[-1,-225],[-1,-149],[-1,-60],[1,-57],[3,-164],[0,-102],[0,-99],[-1,-285],[0,-88],[0,-56],[0,-42],[0,-228],[0,-109],[0,-49],[0,-158],[-1,-54],[0,-69],[0,-110],[0,-60],[0,-141],[0,-102],[0,-65],[0,-40],[0,-57],[-1,-446]],[[11318,85183],[-1302,-6],[-216,-1],[-965,0],[-38,1],[-3347,2],[-16,0],[-2254,-1],[-906,0],[-2274,0],[0,659],[0,1233],[1,2881],[0,1518],[0,180],[1,924],[1,4331],[0,117],[0,88],[0,37],[0,310],[0,2478],[300,-6],[1614,-31],[1002,-18],[2032,-39],[463,-9],[158,-3],[3188,-60],[2051,-38],[258,-5],[135,14],[17,-14],[51,1],[57,1],[15,-1],[22,1]],[[23998,99884],[0,-141],[0,-32],[0,-60],[0,-220],[0,-111],[1,-68],[0,-328],[0,-30],[-1,-199],[0,-97],[0,-111],[0,-40],[0,-31],[0,-31],[0,-49],[0,-33],[0,-49],[0,-42],[0,-58],[0,-47],[0,-72],[0,-179],[0,-38],[0,-211],[0,-33],[0,-87],[0,-93],[0,-33],[0,-125],[0,-58],[0,-36],[0,-40],[0,-99],[0,-146],[0,-108],[-1,-243],[1,-116],[-1,-40],[1,-30],[-1,-64],[0,-150],[0,-214],[0,-2],[0,-53],[0,-58],[0,-42],[0,-275],[-30,0],[-21,0],[-39,0],[-8,-57],[0,-81],[0,-73],[0,-105],[0,-107],[0,-282],[0,-149],[0,-66],[0,-36],[0,-32],[0,-161],[0,-55],[0,-78],[0,-44],[0,-38],[0,-40],[-1,-111],[0,-30],[0,-34],[0,-35],[0,-98],[0,-216],[0,-32],[0,-60],[0,-33],[0,-88],[-1,-147],[1,-43],[0,-76],[-1,-108],[1,-38],[2,-360],[-1,-86],[-1,-297],[0,-133],[0,-209],[0,-199],[2,-44],[-1,-1154],[0,-202],[0,-1],[0,-80],[0,-232],[0,-2],[-1,-146],[0,-1],[0,-286],[0,-226],[0,-33],[0,-47],[0,-155],[0,-1],[0,-133],[2,-265],[1,-9],[-1,-163],[-1,-81],[0,-89],[0,-525],[-1,-153],[-2,-281],[1,-437],[1,-311],[-1,-107],[0,-73],[0,-89],[0,-61],[0,-73],[0,-88],[0,-44],[0,-47],[0,-41],[0,-37],[0,-109],[0,-78],[0,-34],[0,-48],[0,-37],[0,-45],[0,-69],[0,-59],[0,-39],[0,-50],[0,-80],[-2,-105]],[[23895,85155],[-234,-2],[-1276,-9],[-17,0],[-1467,2],[-1724,2],[-615,1],[-768,1],[-869,1],[-842,1],[-1912,13],[-52,0],[-540,3],[-994,7],[-890,6],[-377,2]],[[11366,99727],[26,0],[13,0],[23,1],[29,0],[35,0],[12,1],[71,0],[17,0],[13,1],[12,0],[39,0],[23,1],[16,0],[1,0],[18,0],[21,0],[24,-1],[14,0],[13,1],[17,1],[14,0],[24,0],[22,0],[26,1],[13,0],[41,0],[22,1],[19,0],[14,0],[31,1],[23,0],[27,1],[30,0],[60,0],[26,1],[11,0],[25,0],[17,0],[27,0],[26,1],[63,0],[19,0],[12,0],[11,1],[11,0],[2,0],[38,0],[25,1],[79,1],[29,0],[40,0],[32,0],[29,1],[25,0],[19,0],[36,0],[15,0],[6,0],[23,0],[21,0],[18,0],[18,1],[14,0],[14,0],[12,1],[13,0],[13,0],[13,1],[12,-1],[16,1],[20,0],[36,0],[17,0],[33,1],[22,0],[27,0],[20,0],[39,1],[25,-1],[15,1],[25,0],[15,0],[24,0],[13,0],[16,1],[12,0],[66,1],[23,0],[13,0],[17,0],[21,1],[12,0],[18,0],[21,0],[18,1],[14,0],[18,0],[39,1],[20,0],[16,0],[25,1],[23,0],[17,1],[15,-1],[12,1],[19,0],[21,0],[38,1],[30,0],[19,1],[21,0],[13,0],[19,0],[121,2],[20,0],[29,1],[27,0],[58,0],[17,0],[52,1],[30,0],[26,1],[27,0],[18,0],[59,1],[105,1],[26,0],[21,1],[50,1],[63,0],[38,1],[16,0],[43,0],[34,1],[29,0],[32,1],[32,0],[30,0],[12,1],[42,0],[39,0],[24,0],[21,1],[26,0],[29,0],[30,1],[42,0],[19,0],[23,1],[27,0],[25,0],[54,1],[19,0],[13,0],[32,1],[17,0],[24,1],[29,0],[35,1],[17,0],[23,0],[29,0],[36,0],[65,2],[43,0],[57,1],[49,0],[19,0],[41,0],[24,1],[25,0],[23,1],[20,0],[30,0],[17,0],[20,0],[21,0],[27,1],[25,0],[27,0],[25,1],[31,0],[45,1],[63,1],[30,0],[20,0],[17,0],[22,0],[23,1],[22,0],[13,0],[16,0],[35,1],[27,0],[30,1],[20,0],[37,1],[24,-1],[27,1],[82,2],[28,0],[49,1],[32,1],[17,0],[104,1],[19,1],[19,0],[30,0],[45,0],[55,2],[49,0],[38,0],[14,1],[16,0],[32,0],[18,0],[34,1],[22,1],[15,0],[45,0],[24,0],[17,1],[21,-1],[16,1],[11,0],[19,0],[17,0],[22,1],[19,0],[16,0],[27,1],[16,1],[14,-1],[23,0],[2,0],[22,1],[52,0],[14,1],[18,0],[21,0],[13,0],[27,0],[16,0],[52,0],[70,2],[35,1],[82,0],[23,0],[75,3],[34,0],[102,1],[13,-1],[61,1],[18,0],[28,1],[13,0],[13,0],[15,1],[13,0],[16,0],[15,0],[14,0],[34,1],[32,0],[15,0],[25,0],[31,1],[15,0],[13,1],[20,-1],[18,0],[13,0],[15,0],[18,1],[15,-1],[84,1],[14,1],[12,0],[15,0],[20,0],[15,0],[24,-1],[31,2],[43,0],[14,0],[14,1],[20,0],[20,1],[17,0],[425,6],[15,0],[269,4],[164,2],[201,3],[19,0],[30,1],[34,1],[75,1],[35,0],[12,0],[112,-1],[281,6],[14,1],[23,1],[106,2],[141,2],[121,-2],[53,2],[156,3],[209,3],[58,2],[160,0],[53,1],[45,1],[60,5],[54,1],[23,0],[13,-1],[22,0],[15,0],[42,2],[14,0],[31,0],[35,1],[12,-16],[32,0],[18,0],[157,13],[59,4],[153,2],[40,1],[16,0],[153,3],[23,0],[22,0],[14,0],[37,0],[12,0],[55,1],[47,1],[28,0],[18,0],[13,2],[124,1],[18,0],[31,-8],[10,1],[5,0],[241,7],[144,2],[38,0],[24,0],[23,0],[16,1],[38,0],[59,1],[13,0]],[[34992,87919],[0,-143],[-1,-45],[-1,-204],[-1,-411],[-1,-138],[-1,-400],[0,-121],[0,-31],[-1,-163],[0,-116],[-1,-130],[0,-189],[-1,-157],[0,-88],[1,-183],[-3,-243]],[[34982,85157],[-2246,-3],[-664,-2],[-1082,-1],[-100,-1],[-30,0],[-1543,-2],[-475,-1],[-185,0],[-94,0],[-2939,5],[-1729,3]],[[23998,99884],[37,0],[15,0],[117,1],[41,2],[44,0],[16,0],[28,0],[34,1],[83,1],[66,5],[146,-3],[8,0],[95,0],[87,0],[29,6],[54,0],[85,-6],[63,-1],[65,1],[12,0],[135,2],[171,3],[99,8],[96,0],[475,2],[12,6],[37,1],[19,1],[35,-2],[74,-2],[186,-7],[57,2],[418,14],[221,10],[44,0],[20,0],[12,0],[57,1],[46,0],[23,1],[51,0],[38,1],[37,1],[25,0],[60,1],[27,0],[13,-1],[28,1],[42,-3],[51,0],[41,3],[65,3],[30,2],[94,0],[73,0],[21,0],[73,3],[46,0],[111,1],[171,2],[110,6],[8,1],[5,0],[13,-3],[9,0],[4,0],[13,0],[1,0],[43,1],[24,-1],[40,1],[60,0],[86,2],[59,2],[26,1],[50,1],[111,2],[58,1],[13,1],[18,-4],[56,1],[24,0],[24,0],[54,0],[116,2],[108,1],[14,0],[52,0],[75,1],[24,1],[4,1],[29,0],[79,0],[66,1],[36,-1],[53,0],[67,0],[77,2],[35,1],[14,0],[92,1],[100,1],[2,0],[78,1],[161,1],[53,3],[137,3],[194,0],[202,4],[140,3],[56,1],[13,0],[26,0],[96,1],[35,0],[140,0],[26,0],[112,1],[67,1],[111,2],[56,-3],[339,4],[16,0],[28,0],[12,0],[100,1],[76,2],[13,1],[31,1],[14,-1],[23,-1],[24,-1],[52,0],[153,1],[56,1],[295,2],[5,0],[34,0],[143,1],[36,1],[14,-1],[68,-2],[22,0],[17,2],[17,0],[21,0],[24,1],[25,1],[22,0],[36,-1],[33,0],[27,0],[43,0],[25,0],[28,-1],[28,1],[45,-2],[19,-1],[34,0],[22,-1],[21,1],[26,-1],[24,0],[20,0],[28,-1],[23,0],[12,0],[12,0],[16,0],[34,0],[20,0],[27,0],[17,-1],[27,-1],[16,0],[27,-1],[21,0],[16,0],[29,0],[12,0],[18,0],[25,-1],[29,0],[22,-1],[22,0],[18,0],[17,0],[24,0],[13,-1],[22,0],[19,0],[20,0],[27,-1],[24,0],[13,-2],[17,0],[14,0],[35,-1],[24,-1],[35,-1]],[[47158,85370],[-1,-129],[0,-94],[-2,-83],[0,-18],[0,-61],[0,-46],[0,-43],[0,-559],[0,-66],[0,-4],[0,-743],[0,-284],[0,-429],[0,-15],[0,-189],[1,-336],[0,-1],[-1,-318],[0,-65],[0,-45],[0,-38],[0,-46],[0,-90],[0,-47],[-1,-59],[1,-45],[-1,-244],[0,-66],[0,-103],[-1,-431],[0,-849],[0,-70],[0,-38],[0,-56],[0,-1],[0,-29],[0,-30],[0,-95],[-1,-57],[0,-50],[1,-41],[0,-45],[0,-38],[0,-218],[0,-97],[0,-44],[0,-88],[0,-42],[0,-32],[1,-61],[0,-48],[0,-45],[0,-58],[0,-35],[-1,-43],[1,-29],[0,-41],[0,-64],[-3,-216],[0,-217],[0,-111],[0,-96],[58,-1],[-1,-216],[-1,-30],[0,-35],[2,-37],[-1,-34],[0,-31],[1,-44],[0,-46],[-1,-66],[0,-59],[0,-38],[0,-73],[0,-40],[0,-51],[0,-46],[0,-48],[-1,-206],[0,-58],[0,-176],[1,-357],[0,-36],[1,-59],[0,-204],[1,-201],[0,-49],[0,-34],[0,-14],[0,-33],[0,-75],[0,-40],[0,-49],[0,-30]],[[47210,75173],[-208,4],[-25,1],[-112,2],[-1,0],[-39,1],[-30,1],[-68,0],[-37,-1],[-103,2],[-88,2],[-62,1],[-17,0],[-16,1],[-24,0],[-122,2],[-85,1],[-37,2],[-4,0],[-44,0],[-27,1],[-42,0],[-24,0],[-25,1],[-104,2],[-47,0],[-57,2],[-208,5],[-20,1],[-33,1],[-38,1],[-37,0],[-14,1],[-64,2],[-28,-1],[-23,-4],[-28,-5],[-20,-3],[-19,-3],[-71,2],[-21,0],[-208,5],[-101,3],[-3,0],[-18,1],[-18,0],[-14,0],[-87,-1],[-32,0],[-79,3],[-56,2],[-140,4],[-27,0],[-14,1],[-23,0],[-12,1],[-94,3],[-98,4],[-12,0],[-37,1],[-55,1],[-83,2],[-32,1],[-69,1],[-55,8],[-42,7],[-79,1],[-65,4],[-57,3],[-23,-1],[-21,1],[-24,1],[-48,-3],[-61,0],[-20,0],[-56,0],[-38,0],[-35,0],[-22,1],[-1,0],[-134,4],[-30,-1],[-157,-4],[-50,1],[-56,2],[-101,3],[-28,0],[-19,1],[-162,1],[-74,0],[-18,0],[-21,0],[-13,-1],[-24,0],[-13,-1],[-42,-1]],[[42237,75253],[-151,-4],[-56,-1],[-209,-6],[-209,0],[-210,0],[-265,11],[-144,6],[-136,4],[-283,-4],[-48,-1],[-265,-4],[-104,-2],[-211,-3],[-204,-3],[1,280],[0,265],[0,166],[0,452],[0,401],[0,422],[1,454],[-105,-2],[0,101],[-3,332],[0,234],[-4,220],[1,234],[1,165],[-2,427],[1,288],[0,18],[0,123],[-1,423],[-1,40],[-1,360],[-1,31],[0,100],[0,412],[1,239],[0,45],[-1,67],[0,145],[0,109],[0,16],[0,155],[1,171],[0,52],[-1,72],[0,92],[0,42],[1,85],[0,326],[0,113],[0,88],[0,59],[0,62],[0,180],[0,45],[1,70],[0,61],[-1,56],[1,136],[-1,430],[1,173],[2,251],[1,80],[0,85],[0,4],[1,258],[1,135],[1,73],[0,209],[-1,187],[-1,88],[1,37],[-1,121],[-2,260],[-1,1028],[0,63],[0,92],[0,13],[0,226],[-2,42],[-1,122],[0,24],[1,111],[0,65],[0,50]],[[97817,90123],[0,-102],[0,-33],[1,-46],[0,-55],[0,-161],[0,-3],[0,-33],[0,-28],[0,-112],[1,-25],[0,-258],[1,-159],[1,-235],[0,-15],[-1,-367],[0,-170],[-1,-131],[0,-42],[1,-55],[0,-25],[0,-9],[0,-128],[0,-137],[0,-47],[0,-113],[0,-172],[-1,-265],[1,-382],[0,-199],[0,-43],[-1,-32],[-1,-254],[1,-55],[-1,-54],[0,-47],[1,-248],[0,-1],[1,-131],[-1,-59],[1,-44],[-1,-39],[1,-80],[0,-85],[0,-42],[-1,-206],[0,-47],[2,-30],[0,-5],[22,-310],[6,-81],[6,-96],[12,-162],[12,-224],[5,-74],[3,-28],[6,-109],[2,-33],[11,-193],[2,-38],[4,-44],[3,-49],[4,-77],[11,-169],[16,-274],[3,-45],[2,-42],[3,-50],[10,-146],[1,-9],[17,-248],[0,-9],[4,-56],[3,-54],[5,-83],[3,-42],[3,-43],[3,-33],[1,-10],[1,-23],[4,-58],[5,-74],[3,-74],[5,-59],[9,-148],[2,-33],[0,-6],[2,-30],[13,-209],[3,-56],[2,-36],[14,-236],[3,-46],[6,-80],[5,-116],[3,-36],[2,-32],[3,-68],[3,-46],[3,-53],[3,-48],[6,-89],[1,-16],[4,-60],[13,-213],[3,-48],[5,-69],[38,-599],[13,-233],[8,-130],[4,-47],[5,-90],[9,-124],[1,-32],[3,-37],[10,-145],[4,-56],[6,-110],[4,-43],[11,-175],[2,-43],[3,-44],[8,-121],[3,-50],[8,-110],[7,-115],[3,-31],[6,-100],[11,-142],[11,-153],[1,-44],[9,-127],[3,-46],[5,-78],[6,-87],[2,-34],[0,-5],[9,-129],[14,-228],[6,-84],[23,-339],[6,-86],[9,-122],[3,-48],[3,-44],[4,-60],[6,-89],[1,-31],[5,-55],[2,-36],[3,-47],[5,-59],[0,-4],[4,-52],[11,-173],[3,-44],[3,-51],[6,-71],[3,-35]],[[98463,75183],[-36,-1],[-1,0],[-50,0],[-33,0],[-15,0],[-25,-2],[-169,-2],[-26,-1],[-14,1],[-28,0],[-57,0],[-33,1],[-69,1],[-22,0],[-66,-1],[-37,0],[-42,0],[-14,0],[-27,-1],[-24,0],[-24,0],[-32,-1],[-25,0],[-46,0],[-17,0],[-13,-1],[-27,0],[-21,0],[-32,0],[-53,-1],[-15,1],[-20,0],[-22,0],[-25,0],[-13,-1],[-18,2],[-26,0],[-29,0],[-66,0],[-145,-1],[-114,-2],[-15,1],[-25,1],[-33,0],[-17,0],[-27,0],[-21,0],[-55,0],[-245,0],[-3,0],[-27,-2],[-64,0],[-19,0],[-19,0],[-29,-4],[-18,-2],[-17,-4],[-49,-3],[-37,1],[-22,0],[-24,0],[-12,1],[-52,0],[-26,1],[-33,0],[-17,0],[-25,0],[-51,1],[-10,0],[-2,0],[-23,1],[-30,0],[-65,1],[-54,0]],[[95726,75167],[-86,2],[-117,2],[-211,1],[-59,1],[-50,0],[-21,3],[-37,0],[-12,0],[-26,1],[-12,0],[-16,-1],[-19,-2],[-13,-1],[-36,1],[-45,-2],[-20,-1],[-52,-1],[-6,1],[-71,2],[-119,4],[-108,0],[-21,1],[-156,0],[-62,-3],[-32,-2],[-53,0],[-69,-1],[-126,-3],[-12,-2],[-71,2],[-55,0],[-26,0],[-56,1],[-218,6],[-52,0],[-96,-1],[-126,2],[-29,3],[-101,-1]],[[93229,75179],[4,117],[-1,35],[0,285],[-1,317],[0,97],[2,97],[0,83],[-2,135],[0,41],[0,68],[0,99],[0,107],[0,47],[0,38],[0,35],[0,45],[0,64],[-1,434],[0,96],[-1,349],[63,19],[-1,70],[0,32],[1,89],[0,216],[0,37],[1,390],[0,171],[0,92],[0,167],[1,428],[0,55],[0,10],[0,70],[-1,787],[0,172],[0,87],[3,194],[0,101],[0,240],[1,103],[0,104],[0,76],[-1,36],[-1,529],[0,61],[0,9],[0,101],[0,36],[0,143],[0,4],[0,84],[-2,98],[1,179],[-1,132],[1,65],[0,175],[0,151],[0,52],[-1,640],[0,68],[-1,37],[2,333],[0,79],[1,79],[0,24],[0,27],[0,53],[0,14],[0,179],[0,62],[-1,129],[0,49],[0,63],[3,42],[-1,78],[0,32],[-1,134]],[[69914,85371],[-23,1],[-17,2],[-20,0],[-15,0],[-32,0],[-34,-1],[-35,0],[-28,0],[-32,-1],[-25,-24],[0,-35],[-1,-53],[0,-105],[1,-75],[1,-137],[0,-11],[1,-41],[-1,-58],[0,-47],[1,-42],[-1,-41],[0,-43],[0,-76],[0,-67],[0,-107],[0,-143],[0,-178],[0,-198],[0,-33],[0,-2],[0,-99],[0,-108],[0,-416],[0,-223],[0,-146],[0,-59],[0,-54],[0,-253],[0,-2],[-1,-57],[0,-59],[0,-21],[0,-16],[1,-348],[-1,-519],[-1,-167],[-1,-319],[2,-38],[0,-1],[1,-285],[1,-47],[1,-53],[-1,-91],[0,-63],[-1,-96],[1,-71],[26,1],[31,0],[28,0],[17,0],[16,0],[38,0],[13,0],[26,0],[3,0],[56,0],[44,0],[71,0],[18,0],[26,2],[57,0],[46,0],[35,0],[18,-1],[18,0],[41,-1],[55,0],[53,0],[39,0],[25,0],[31,0],[16,0],[29,0],[21,0],[26,1],[60,-1],[19,-1],[17,0],[21,-1],[34,1],[28,0],[23,0],[23,0],[12,0],[25,0],[28,0],[36,0],[0,-49],[0,-35],[0,-33],[0,-37],[0,-33],[-1,-32],[0,-4],[1,-47],[1,-80],[0,-1],[-1,-59],[-1,-33],[0,-2],[0,-37],[1,-62],[0,-33],[-1,-39],[0,-36],[0,-61],[0,-53],[0,-27],[0,-14],[0,-21],[0,-27],[0,-56],[0,-69],[0,-73],[0,-15],[0,-32],[0,-66],[0,-116],[0,-40],[0,-46],[0,-36],[0,-55],[0,-35],[0,-66],[0,-37],[0,-9],[0,-15],[0,-27],[0,-60],[0,-66],[0,-47],[0,-31],[0,-1],[-1,-55],[0,-35],[0,-33],[1,-29],[0,-12],[0,-36],[0,-88],[1,-49],[-1,-47],[1,-45],[-1,-70],[1,-108],[0,-39],[0,-33],[-2,-33]],[[70902,77680],[-96,0],[-49,0],[-35,0],[-38,-1],[-39,1],[-46,-1],[-29,1],[-39,-1],[-14,1],[-35,-2],[-2,0],[-14,1],[-14,-2],[-35,1],[-32,0],[-59,0],[-14,0],[-20,-1],[-15,0],[-41,1],[-18,0],[-19,0],[-36,1],[-49,0],[-41,2],[-13,0],[-41,-1],[-33,0],[-32,-1],[-14,0],[-14,0],[-18,1],[-22,0],[-22,0],[-17,0],[-14,-1],[-19,1],[-15,-1],[-29,-1],[-24,2],[-16,0],[-15,0],[-23,1],[-12,0],[-31,-1],[-12,0],[-13,0],[-14,0],[-16,-1],[-13,1],[-26,0],[-22,0],[-7,0],[-22,1],[-62,-1],[-25,1],[-24,-1],[-47,1],[-21,0],[-30,-1],[-25,1],[-13,-1],[-16,1],[-19,0],[-3,0],[-12,-1],[-14,0],[-18,1],[-13,-1],[-12,0],[-24,0],[-25,0],[-14,0],[-27,0],[-34,0],[-23,0],[-36,-1],[-27,1],[-27,0],[-15,-1],[-19,0],[-29,0],[-20,1],[-16,0],[-19,-1],[-23,0],[-27,0],[-17,0],[-27,0],[-26,0],[-33,0],[-17,-1],[-17,0],[-21,0],[-17,0],[-15,1],[-20,-1],[-14,0],[-21,0],[-14,1],[-16,-1],[-26,0],[-17,0],[-26,0],[-18,1],[1,-72],[0,-92],[0,-35],[-1,-61],[1,-41],[0,-16],[0,-55],[0,-43],[0,-38],[0,-42],[0,-49],[0,-52],[0,-62],[0,-117],[0,-50],[1,-53],[-1,-116],[1,-45],[0,-60],[0,-30],[-1,-41],[0,-43],[1,-47],[0,-60],[-2,-42],[0,-35],[1,-109],[3,-214],[-1,-68],[0,-43],[0,-49],[0,-88],[0,-55],[0,-39],[1,-29],[-1,-44],[1,-31],[1,-30],[0,-30],[-1,-41],[8,-22],[-5,-27],[-2,-34],[-2,-43],[1,-36],[1,-34],[-1,-32],[0,-36],[-9,-45],[-20,0],[-46,0],[-16,0],[-14,0],[-12,-1],[-27,1],[-16,1],[-20,-1],[-28,-1],[-28,0],[-14,0],[-102,1],[-36,1],[-14,0],[-20,0],[-31,0],[-17,0],[-22,-1],[-29,1],[-15,0],[-23,0],[-24,0],[-15,0],[-13,0],[-17,0],[-15,0],[-20,0],[-15,0],[-19,0],[-25,0],[-14,0],[-15,1],[-23,0],[-13,0],[-16,-1],[-31,1],[-14,1],[-13,1],[-13,-5],[-29,0],[-20,3],[-100,-2],[-16,0],[-13,0],[-18,1],[-15,0],[-20,0],[-20,0],[-14,-2],[-30,1],[-12,-1],[-13,-2],[-17,3],[-14,-1],[-21,5],[-16,0],[-14,0],[-73,0],[-20,0],[-17,0],[-14,0],[-15,-1],[-12,1],[-21,3],[-57,-2],[-24,0],[-128,-2],[-1,-1],[-117,-2],[-75,-1],[-19,0],[-57,-1],[-92,-2],[-15,1],[-32,-1],[-13,2],[-15,-1],[-22,0],[-37,1],[-26,0],[-1,0],[-32,0],[-21,0],[-30,-1],[-21,-1],[-22,0],[-17,0],[-21,0],[-19,1],[-24,-1],[-15,0],[-23,0],[-22,-1],[-24,0],[-21,1]],[[65896,75099],[2,39],[2,35],[-1,32],[0,48],[-100,0],[-1,0],[-106,0],[-1,0],[-42,1],[-137,1],[-28,0],[-137,0],[-32,1],[-70,1],[-38,0],[-17,0],[-96,1],[-27,-1],[-104,1],[-15,0],[-89,0],[-120,1],[-20,0],[-67,-1]],[[64652,75258],[0,35],[0,65],[1,34],[0,147],[0,85],[0,64],[0,36],[0,152],[0,46],[0,45],[0,40],[0,60],[1,39],[0,33],[0,40],[0,32],[0,35],[-1,95],[0,37],[1,35],[0,40],[-1,71],[0,45],[0,38],[0,31],[1,55],[0,31],[0,40],[0,41],[0,38],[0,35],[0,95],[0,34],[1,30],[0,44],[0,39],[0,122],[0,40],[0,40],[0,35],[0,41],[0,38],[0,43],[0,36],[0,37],[1,37],[0,39],[-7,34],[-3,29],[0,41],[0,52],[0,41],[0,36],[0,71],[0,81],[0,78],[0,52],[0,43],[0,126],[1,47],[-1,44],[1,113],[0,2],[0,66],[0,16],[0,36],[0,47],[0,35],[1,118],[0,74],[-2,31],[2,103],[0,34],[0,41],[0,37],[0,69],[0,90],[0,45],[0,29],[0,37],[0,110],[0,95],[0,89],[0,57],[0,63],[1,61],[-1,75],[1,72],[0,67],[0,42],[-1,67],[0,210],[0,14],[0,22],[0,55],[0,68],[1,52],[0,31],[0,95],[0,60],[0,48],[0,38],[0,71],[0,54],[-1,11],[1,31],[3,31],[-2,31],[-1,41],[0,93],[0,58],[-1,136],[0,36],[0,71],[0,32],[0,33],[0,31],[0,39],[0,48],[0,131],[0,34],[-1,39],[0,56],[0,64],[0,37],[0,22],[0,120],[0,34],[0,55],[0,46],[0,31],[0,35],[0,32],[0,37],[0,36],[0,82],[0,42],[0,61],[0,66],[0,78],[0,33],[0,36],[0,75],[-1,48],[0,115],[0,92],[0,58],[0,41],[0,42],[-1,37],[1,43],[-1,36],[0,78],[0,83],[0,75],[0,106],[-1,163],[0,44],[0,34],[0,77],[0,46],[0,73],[0,56],[0,97],[0,213],[0,66],[-1,37],[0,44],[0,5],[1,28],[0,35],[0,40],[0,65],[0,45],[-1,46],[0,49],[0,31],[0,55],[0,41],[-2,36],[2,25],[1,25],[-1,221],[1,174],[0,428],[0,32],[0,52],[-1,45],[1,51],[0,47],[0,42],[0,160],[0,236],[-1,49],[0,98],[0,44],[0,52],[0,37],[0,339],[0,397],[0,51]],[[89534,85469],[-133,1],[-41,1],[-34,-3],[-120,-1],[-37,-1],[-52,0],[-77,1],[-57,0],[-78,0],[-17,0],[-37,1],[-33,1],[-122,-1],[-115,-1],[-121,0],[-8,0],[-70,-1],[-87,0],[-15,0],[0,-297],[0,-125],[0,-82],[-1,-349],[-1,-224],[0,-204],[0,-69],[0,-183],[0,-178],[1,-214],[0,-157],[0,-60],[0,-76],[0,-41],[0,-306],[0,-150],[-1,-79],[1,-48],[0,-153],[-1,-531],[1,-218],[1,-111],[0,-81],[-1,-52],[1,-69],[0,-43],[0,-178],[1,-361],[1,-47],[-1,-141],[1,-137],[0,-147],[0,-220],[0,-46],[-1,-79],[0,-99],[0,-106],[-1,-146],[0,-110],[0,-69],[0,-208],[2,-184],[0,-39],[0,-215],[-1,-213],[0,-283],[-1,-145],[1,-90],[-1,-163],[-1,-176],[-36,0],[-15,0],[0,-153],[0,-247],[0,-35],[0,-414],[0,-341],[0,-90],[0,-308],[1,-128],[-1,-376],[0,-47],[0,-165],[0,-21],[0,-35],[0,-31],[0,-128],[-1,-50],[0,-69],[0,-360],[0,-194],[0,-69],[1,-166],[0,-90],[0,-122],[0,-217],[-1,-431],[0,-107],[0,-102],[0,-214],[0,-345],[0,-36],[0,-50]],[[88227,72623],[-144,-1],[-2,0],[-62,0],[-104,1],[-90,-2],[-15,0],[-29,0],[-21,2],[-2,0],[-57,1],[-110,-1],[-66,1],[-13,0],[-42,1],[-25,0],[-53,-1],[-88,0],[-26,-1],[-48,2],[-47,0],[-78,2],[-29,0],[-98,-1],[-87,0],[-10,0],[-10,0],[-165,-1],[-12,0],[-32,44],[-16,20],[-10,13],[-2,2],[-10,14],[-22,55],[-6,39],[0,40],[17,33],[20,-10],[23,-38],[26,-12],[18,5],[49,46],[16,15],[13,8],[19,-9],[15,-19],[15,-28],[21,-20],[14,3],[8,24],[26,153],[11,106],[-26,70],[-2,6],[-23,64],[-20,43],[-10,23],[-72,202],[-27,88],[-17,84],[0,89],[1,80],[1,53],[2,64],[3,81],[-7,87],[-14,83],[-12,26],[-53,83],[-44,25],[-45,1],[-37,17],[-15,46],[-14,17],[-15,8],[-16,0],[-8,-40],[3,-30],[9,-57],[-24,-20],[-26,-10],[-33,-7],[-16,13],[-18,15],[-13,17],[-17,23],[-1,1],[-11,25],[-4,9],[-2,5],[-23,113],[-12,55],[-2,6],[-9,30],[-40,81],[-22,41],[-3,10],[-10,40],[-10,66],[-1,4],[0,6],[-1,74],[-2,58],[-2,126],[-2,103],[-12,0],[-66,-6],[-109,-2],[-25,-1],[-19,0],[-116,-2],[-24,0],[-22,0],[-13,-1],[-14,0],[-26,0],[-11,0],[-27,0],[-17,0],[-19,0],[-18,0],[-20,0],[-24,-2],[-48,-4],[-37,2],[-26,1],[-15,1],[-42,2],[-37,0],[-42,3],[-13,0],[-68,0],[-118,0],[-21,0],[-33,0],[-18,1],[-83,2],[-74,0],[-75,0],[-3,0],[-29,0],[-13,0],[-86,0],[-14,0],[-31,0],[-22,0],[-19,0],[-3,0],[-11,0],[-19,0],[-19,0],[-17,0],[-18,0],[-19,4],[-14,3],[-1,0]],[[84475,75207],[-52,-1],[-44,-2],[-26,-1],[-87,0],[-64,0],[-56,0],[-53,1],[-31,0],[-33,0],[-15,0],[-56,1],[-110,1],[0,89],[1,97],[0,30],[0,61],[0,64],[-1,84],[1,35],[0,203],[0,80],[0,4],[-1,52],[0,52],[1,165],[0,182],[0,41],[0,44],[2,269],[2,188],[0,20],[-3,63],[0,2],[0,71],[0,46],[3,32],[-2,56],[-2,129],[1,58],[-1,54],[0,256],[0,36],[38,3],[-3,214],[1,113],[2,107],[-1,236],[-1,151],[0,31],[0,97],[0,65],[0,66],[0,39],[0,59],[0,44],[0,61],[0,132],[0,45],[0,67],[0,40],[0,36],[0,31],[0,78],[0,92],[0,32],[0,29],[0,51],[0,133],[0,49],[0,36],[0,6],[0,158],[0,45],[0,65],[0,50],[0,114],[0,36],[1,85],[0,84],[-1,232],[0,70],[1,94],[0,73],[0,34],[0,47],[0,37],[0,63],[0,72],[0,79],[1,128],[0,55],[0,54],[-1,40],[0,32],[0,20],[0,61],[0,50],[0,40],[0,63],[1,153],[13,0],[1,0],[151,3],[9,0],[34,2],[-1,48],[0,2],[0,127],[0,50],[0,42],[0,76],[0,83],[-2,238],[-1,192],[-38,1],[-20,-1],[-86,0],[-27,0],[-40,0]],[[64652,75258],[-87,0],[-70,1],[-158,2],[-100,0],[-46,1],[-276,0],[-98,0],[-206,0],[-130,0],[-16,0],[-14,0],[-29,0],[-18,1],[-13,0],[-200,4],[-42,0],[-38,0],[-15,-1],[-33,0],[-81,1],[-208,0],[-41,-1],[-21,-1],[-23,0],[-42,-1],[-14,1],[-5,0],[-22,0],[-42,0],[-118,0],[-90,-1],[-93,0],[-64,0],[-53,0]],[[62146,75264],[-15,0],[-98,0],[-95,1],[-144,-1],[-37,0],[-13,0],[-15,0],[-22,1],[-75,1],[-19,0],[-73,0],[-19,0],[-25,0],[-19,0],[-63,0],[-102,0],[-38,-2],[-16,-2],[-31,-1],[-23,1],[-86,2],[-15,-1],[-24,0],[-14,0],[-93,0],[-73,0],[-51,0],[-32,0],[-14,0],[-45,0],[-25,0],[-41,0],[-25,0],[-181,0],[-106,0],[-16,0],[-21,0],[-11,0],[-55,0],[-47,0],[-161,0],[-8,0],[-8,0],[-35,0],[-160,0],[-45,1],[-19,1],[-42,0],[-66,0],[-16,0],[-22,0],[-2,0],[-30,0],[-10,0],[-62,0],[-12,0],[-62,0],[-30,0],[-153,-1],[-52,2],[-29,1],[-7,-3],[-13,-5],[-50,0],[-42,0],[-24,0],[-47,0],[-27,0],[-39,0],[-12,0],[-34,1],[-16,0],[-1,0],[-26,0],[-13,1],[-13,2],[-28,5],[-25,0],[-35,0],[-148,0],[-106,0],[-104,0],[-12,1],[-25,1],[-42,1],[-134,2],[-73,-2],[-21,1],[-15,0],[-17,1],[-79,0],[-11,0],[-15,0],[-27,0],[-156,0],[-207,1],[-52,0],[-32,0],[-20,0],[-104,1],[-89,0],[-14,0],[-24,0],[-77,-5]],[[57149,75270],[0,49],[0,31],[1,75],[-1,103],[0,38],[0,47],[0,36],[0,39],[0,37],[0,36],[0,78],[1,121],[-1,51],[0,63],[0,52],[0,117],[0,46],[0,49],[0,44],[1,45],[0,46],[-1,64],[1,61],[0,63],[0,74],[1,47],[0,49],[0,54],[0,51],[0,40],[0,66],[0,37],[0,122],[0,56],[0,62],[0,56],[0,39],[0,61],[1,57],[-1,31],[0,79],[-10,21],[1,42],[0,46],[0,61],[0,63],[1,88],[0,95],[0,61],[0,43],[0,36],[0,51],[0,54],[0,39],[0,41],[0,31],[0,36],[0,4],[0,32],[0,32],[0,31],[0,30],[0,61],[0,44],[0,30],[0,38],[0,46],[0,67],[0,40],[0,41],[0,33],[0,53],[0,32],[0,36],[0,35],[0,42],[0,60],[0,64],[0,48],[0,41],[0,45],[0,34],[0,41],[0,44],[0,39],[0,38],[0,104],[0,65],[0,114],[0,54],[0,65],[0,64],[0,60],[0,71],[0,83],[0,58],[0,66],[0,20],[0,9],[0,35],[0,47],[0,52],[0,69],[-1,126],[0,185],[0,107],[1,47],[-1,35],[0,78],[0,56],[0,51],[0,31],[0,130],[0,57],[0,73],[1,37],[0,40],[-1,36],[0,88],[0,54],[0,41],[0,6],[0,63],[0,63],[0,296],[0,34],[0,148],[0,5],[0,46],[0,105],[0,54],[0,36],[0,70],[0,52],[0,40],[0,136],[1,31],[0,98],[-1,51],[1,78],[-1,74],[1,31],[0,48],[0,146],[0,37],[0,146],[0,53],[0,85],[0,59],[0,47]],[[42237,75253],[0,-129],[0,-39],[0,-32],[0,-50],[0,-32],[0,-43],[0,-254],[1,-36],[0,-36],[0,-51],[0,-54],[-1,-30],[1,-47],[0,-39],[-1,-45],[0,-72],[0,-35],[1,-46],[0,-32],[0,-47],[0,-37],[-1,-42],[0,-35],[1,-42],[-1,-31],[1,-34],[-1,-51],[0,-57],[1,-31],[-1,-37],[0,-40],[1,-33],[0,-47],[1,-137],[0,-52],[0,-78],[-2,-55],[0,-53],[0,-50],[0,-53],[0,-38],[0,-52],[0,-31],[0,-77],[1,-51],[1,-82],[1,-255],[1,-208],[1,-315],[0,-158],[2,-163],[1,-56],[0,-72],[0,-30],[0,-10],[0,-81],[3,-349],[2,-298]],[[42250,70783],[-29,22],[25,-50],[-3,-1],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-3,-1],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,1],[-2,0],[-3,1],[-3,0],[-3,1],[-3,0],[-3,1],[-3,0],[-3,1],[-3,1],[-3,1],[-2,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,1],[-3,2],[-3,1],[-1,1],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,2],[-2,1],[0,1],[-2,2],[-2,2],[-3,2],[-2,2],[-2,3],[-4,4],[-4,4],[-4,5],[-4,6],[-4,5],[-4,5],[-14,19],[-5,6],[-6,7],[-4,6],[-5,5],[-2,3],[-3,3],[-2,2],[-2,2],[-2,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-1,0],[-4,1],[-3,1],[-4,1],[-3,0],[-4,1],[-3,0],[-4,0],[-3,1],[-4,0],[-3,-1],[-3,0],[-4,0],[-3,-1],[-4,0],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-3,-2],[-4,-1],[-3,-2],[-4,-2],[-3,-2],[-4,-2],[-3,-2],[-4,-2],[-3,-3],[-4,-2],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-3,-3],[-4,-4],[-3,-4],[-4,-3],[-3,-4],[-4,-4],[-3,-4],[-4,-5],[-3,-4],[-4,-4],[-3,-5],[-4,-5],[-3,-5],[-4,-5],[-4,-5],[-3,-5],[-4,-5],[-3,-6],[-4,-5],[-3,-6],[-1,-1],[-3,-5],[-3,-6],[-4,-6],[-3,-6],[-4,-6],[-4,-7],[-3,-6],[-4,-7],[-123,-49],[-43,-16],[-98,-39],[-161,-64],[-7,-33],[-33,-97],[1,-1],[10,-36],[3,-7],[-43,-146],[-1,-16],[-35,-76],[-4,-9],[-31,-67],[-41,-66],[-3,-1],[-23,-5],[-24,6],[-20,20],[-29,2],[-29,-58],[-72,-171],[-18,-20],[-1,-5],[-15,-37],[-10,-26],[-11,-64],[-4,-26],[1,-10],[4,-112],[-31,-117],[-2,-7],[-21,-72],[-10,-23],[-16,-8],[-27,-47],[-23,-46],[-42,-221],[2,-96],[-7,-82],[-1,-88],[5,-151],[6,-41],[13,-28],[1,-26],[0,-4],[-21,-160],[-5,-23],[-28,-57],[-36,-49],[-16,-22],[-17,-31],[-15,-26],[-15,-33],[-2,-6],[-41,-95],[-1,-4],[-7,-26],[-19,-42],[-21,-33],[-17,-35],[-2,-4],[-6,-25],[-5,-25],[-46,-96],[-67,-120],[-12,-11],[-33,-33],[-1,-3],[-9,-19],[-4,-8],[-2,-9],[-12,-78],[-1,-3],[0,-2],[0,-83],[0,-4],[1,-6],[11,-63],[12,-25],[1,-89],[-2,-26],[-1,-9],[-1,-9],[-4,-13],[-8,-27],[-24,-89],[-23,-86],[-11,-90],[-24,-210],[-2,-17],[-30,-104],[-3,-10],[-14,-15],[-26,0],[-15,0],[-20,-13],[-21,-14],[-9,-6],[-130,-94],[-7,-5],[-4,-8],[-41,-3],[-30,-17],[-8,-5],[-37,-10],[-63,-8],[-10,-1],[-23,-17],[-7,-7],[-17,-18],[-3,-2],[-7,-15],[-8,-14],[-37,-96],[-16,-40],[0,-7],[-2,-11],[-17,-38],[-32,-55],[-31,-40],[-3,-3],[-21,-46],[0,-1],[-5,-25],[-13,-25],[-21,0],[-24,24],[-33,20],[-1,0],[-40,8],[-47,-4],[-13,4],[-26,8],[-15,13],[-24,37],[-13,20],[-14,-1],[-10,-1],[-30,31],[-11,14],[-14,25],[-28,49],[-3,-4],[-18,4],[-28,7],[-25,20],[-8,7],[-61,18],[-19,4],[-9,3],[-3,-6],[-75,-6],[-109,-16],[-17,11],[-14,9],[-73,61],[-140,85],[-41,22],[-16,2],[-4,0],[-41,23],[-53,37],[-28,19],[-32,42],[-14,14],[-8,7],[-2,5],[-20,58],[-14,43],[-32,92],[-4,13],[-2,4],[0,1],[-19,38],[-2,4],[-4,6],[-37,46],[-24,24],[-9,16],[-21,41],[-14,54],[-23,58],[-9,15],[-6,10],[-16,28],[-35,45],[-30,9],[-3,-1],[-22,-1],[-36,-15],[-9,-4],[-9,-10],[-9,-10],[-22,-13],[-7,-4],[-12,1],[-5,0],[-9,1],[-33,27],[-26,23],[-33,9],[-24,5],[-45,56],[-15,28],[-4,22],[3,26],[-1,60],[0,3],[-25,212],[-5,11],[-21,39],[-39,23],[-6,10],[-17,32],[-8,40],[-3,9],[-25,67],[-2,5],[-10,2],[-5,2],[-36,30],[-18,24],[-6,9],[-8,9],[-18,41],[-26,55],[-6,25],[-3,12],[-3,22],[-2,216],[0,1],[-17,88],[-25,68],[-1,1],[-44,91],[-7,51],[-1,67],[8,97],[5,59],[15,94],[-3,47],[-16,51],[-4,25],[0,115],[2,21],[4,27],[-2,103],[0,16],[3,33],[8,63],[11,83],[1,11],[4,15],[19,42],[9,33],[1,5],[5,30],[5,41],[0,15],[1,46],[14,73],[1,62],[0,8],[-3,52],[-17,143],[-2,5],[-16,56],[-4,29],[0,59],[5,30],[6,16],[5,15],[-1,34],[0,5],[0,5],[-10,40],[-19,39],[0,19],[-7,25],[-9,16],[-17,20],[-23,62],[-6,25],[0,11],[6,78],[0,1],[-8,0],[-9,68],[-3,10],[-3,5],[-19,20],[-31,30],[-34,33],[-7,6],[-18,7],[-11,-2],[-5,-4],[-6,-5],[-42,-31],[-20,14],[-10,5],[-20,6],[-15,1],[-21,4],[-8,6],[-13,13],[-8,11],[-1,0],[-21,-4],[-29,-6],[-18,-3],[-20,-4],[-9,-2],[-21,-12],[-29,-16],[-40,-43],[-29,-60],[-6,-12],[-6,-20],[-4,-15],[-1,-1],[-4,-16],[-4,-10],[-13,-31],[-11,-21],[-9,-15],[-24,-50],[-17,-46],[-10,-26],[-12,-27],[-12,-26],[-20,-31],[-11,-20],[-9,-15],[-20,-21],[-16,-6],[-19,0],[-17,0],[-15,0],[-29,2],[-24,10],[-35,-3],[-12,-7],[-27,-33],[-32,-43],[-12,-34],[-2,-36],[1,-17],[4,-31],[1,-37],[-4,-30],[0,-20],[-7,-36],[-1,-2],[-4,-24],[-21,-43],[-36,-56],[-22,-44],[-42,-96],[-26,-40],[-14,-52],[-34,-223],[-4,-60],[2,-27],[-1,-32],[2,-30],[0,-17],[7,-97],[0,-1],[4,-61],[0,-13],[7,-47],[23,-43],[20,-19],[13,-69],[2,-14],[1,-52],[1,-31],[-25,-191],[-8,-63],[-20,-37],[-6,-9],[-13,-19],[-23,-34],[-12,-18],[-20,-32],[-11,-14],[-25,-43],[-28,-70],[-8,-27],[-13,-53],[-6,-26],[-10,-43],[-2,-3],[-28,-34],[-27,-34],[-17,-18],[-35,-36],[-46,-40],[-24,-19],[-1,0],[-32,-30],[-14,-16],[-15,-19],[-21,-22],[-17,-19],[-16,-12],[-15,-13],[-27,-17],[-14,-11],[-11,-9],[-20,-26],[-10,-13],[-11,-21],[-15,-31],[-8,-17],[-14,-31],[-10,-22],[-9,-26],[-3,-9],[-11,-32],[-16,-59],[-20,-45],[-23,-33],[-11,-13],[-5,-7],[-41,-22],[-19,-15],[-8,-9],[-44,-54],[-44,-39],[-12,-4],[-17,-6],[-9,-3],[0,-1],[-27,-20],[-52,-54],[-9,-5],[-27,1],[-21,-12]],[[35024,66874],[0,12],[0,3516],[0,373],[0,1271],[0,338],[0,1733],[0,152],[0,1646],[0,22],[0,2144],[0,533],[0,2639],[0,150],[0,541],[0,1253],[0,1960],[-42,0]],[[78565,75185],[-48,3],[-13,0],[-48,0],[-38,3],[-8,0],[-111,3],[-80,0]],[[78219,75194],[-46,2],[-18,1],[-18,2],[-17,-2],[-125,4],[-33,-2],[-38,3],[-4,0],[-66,0],[-55,3],[-1,0],[-77,1],[-24,-4],[-99,6],[-199,-3],[-14,0],[-3,1],[-28,3],[-4,1],[-21,1],[-13,-3],[-4,0],[-139,6],[-49,4],[-14,2],[-33,0],[-12,1],[-47,0],[-67,1],[-49,1],[-36,1],[-51,1],[-1,0],[-45,0],[-69,1],[-37,1],[-108,1],[-55,1],[-12,0],[-21,1],[-19,0],[-58,1],[-1,0],[-231,2],[-87,1],[-38,1],[-167,2],[-15,-3],[-130,-1],[-53,0],[-94,0],[-167,-1],[-149,0],[-13,0],[-188,-1],[-25,0],[-1,0],[-56,0],[-46,0],[-105,0],[-43,0],[-31,1],[-12,0],[-70,0],[-43,-2],[-88,0],[-23,1],[-44,0],[-12,0],[-12,0],[-1,-60],[0,-47]],[[74445,75124],[-37,-3],[-14,5],[-12,4],[-12,-5],[-14,-3],[-52,-1],[-96,-1],[-14,0],[-49,0],[-113,-1],[-21,0],[-12,-1],[-16,0],[-12,1],[-27,-1],[-27,1],[-26,-2],[-25,0],[-32,-1],[-18,0],[-34,-1],[-32,0],[-25,1],[-33,-1],[-18,0],[-20,0],[-16,0],[-28,1],[-30,0],[-38,-1],[-51,0],[-17,0],[-17,-1],[-13,0],[-24,0],[-15,0],[-15,0],[-15,0],[-28,0],[-24,-1],[-26,0],[-19,0],[-12,-1],[-17,0],[-17,-4],[-20,-4],[-14,6],[-42,1],[-46,1],[-14,0],[-41,0],[-30,0],[-21,-1],[-29,0],[-13,-1],[-17,-1],[-21,0],[-30,1],[-98,-3],[-23,1],[-17,-1],[-13,-1],[-18,0],[-23,0],[-117,-2],[-40,0],[-1,0],[-93,2],[-3,0],[-109,-5],[-36,-3],[-23,0],[-17,-1],[-34,-1],[-13,0],[-36,-2],[-28,-1],[-12,8],[0,42],[0,31],[0,54],[0,31],[1,37],[0,220],[0,46],[0,126],[0,44],[0,43],[1,39],[-1,18],[0,23],[0,45],[1,64],[0,94],[0,41],[0,125],[0,44],[0,40],[0,43],[0,43],[1,89],[0,47],[0,90],[0,45],[0,38],[0,78],[0,33],[0,48],[0,33],[1,31],[0,45],[-3,35],[0,31],[0,6],[1,26],[3,29],[1,62],[1,30],[0,34],[0,32],[-1,75],[-1,41],[-1,69],[-1,62],[0,39],[-1,31],[0,30],[-1,32],[-1,45],[-18,0],[-18,0],[-64,0],[-31,1],[-17,1],[-5,0],[-28,1],[-24,-1],[-16,-2],[-12,0],[-15,0],[-15,0],[-17,1],[-20,0],[-19,0],[-15,0],[-13,-1],[-29,1],[-19,-1],[-15,2],[-15,0],[-59,-2],[-14,0],[-49,0],[-12,0],[-14,1],[-14,-1],[-12,0],[-12,0],[-23,1],[-23,-3],[-9,0],[-86,0],[-25,0],[-30,0],[-3,0],[-21,0],[-13,0],[-65,0],[-34,0],[-82,1],[-1,0],[-14,0],[-37,0],[-21,0],[-16,1],[-16,-1],[-14,0],[-16,0],[-12,1],[-37,0],[-13,0],[-16,0]],[[93229,75179],[-75,1],[-129,0],[-16,0],[-330,1],[-14,-3],[-21,-2],[-13,-1],[-24,2],[-43,0],[-66,-1],[-21,0],[-33,-2],[-15,0],[-14,0],[-17,1],[-103,1],[-49,0],[-27,0],[-32,0],[-52,0],[-50,-1],[-106,0],[3,-362],[1,-172],[2,-278],[0,-4],[1,-160],[-3,-103],[-4,-113],[1,-32],[0,-63],[0,-41],[0,-277],[0,-56],[0,-55],[0,-61],[0,-49],[1,-107],[0,-212],[0,-72],[1,-358],[-82,2],[-99,2],[-18,0],[-219,-1],[-103,0],[-103,0],[-213,0],[-49,2],[-161,3]],[[90935,72608],[-108,1],[-171,2],[-116,-1],[-22,1],[-38,3],[-38,0],[-46,-3],[-15,0],[-1,0],[-15,0],[-26,1],[-35,1],[-154,3],[-65,1],[-44,3],[-21,-3],[-22,-1],[-23,0],[-51,-2],[-16,0],[-25,4],[-29,2],[-24,-2],[-139,-1],[-68,0],[-33,0],[-15,0],[-35,1],[-21,0],[-26,0],[-16,0],[-71,1],[-136,1],[-162,-1],[-14,1],[-19,0],[-20,0],[-15,1],[-57,1],[-19,1],[-58,1],[-28,0],[-26,-1],[-143,1],[-67,1],[-53,0],[-69,1],[-59,-5],[-124,1],[-110,1]],[[57149,75270],[-105,-1],[-104,-1],[-41,4],[-154,-4],[-13,0],[-25,0],[-14,-1],[-42,-1],[-23,0],[-37,-1],[-12,6],[-23,-1],[-17,1],[-17,-1],[-104,-3],[-18,0],[-30,0],[-54,0],[-136,2],[-137,1],[-30,0],[-108,1]],[[55905,75271],[-49,0],[-3,0],[-24,0],[-29,0],[-20,1],[-17,0],[-47,0],[-31,0],[-12,1],[-3,0],[-57,0],[-24,0],[-30,0],[-70,1],[-26,-3],[-22,0],[-21,0],[-77,0],[-53,-2],[-52,-1],[-90,1],[-1,0],[-74,0],[-16,0],[-50,0],[-11,0],[-65,1],[-66,0],[-157,0],[-47,0],[-1,0],[-41,0],[-94,1],[-40,0],[-33,0],[-16,0],[-46,0],[-85,0],[-62,0],[-208,1],[-12,0],[-41,-1],[-45,0],[-110,0],[-209,0],[-2,0],[-93,-1],[-28,0],[-76,1],[-100,0],[-109,1],[-107,0],[-20,0],[-81,0],[-28,0],[-18,0],[-161,0],[-95,0],[-38,1],[-23,0],[-111,3],[-22,0],[-76,2],[-2,0],[-77,1],[-20,1],[-127,2],[-50,1],[-15,-1],[-34,2],[-13,0],[-12,1],[-13,0],[-95,2],[-209,4],[-209,4],[-207,2],[-208,-12],[-42,-4],[-13,-2],[-18,-1],[-135,-7]],[[50931,75271],[-207,-7],[-91,-3],[-116,-4],[-207,-11],[-21,-1],[-84,-5],[-311,-17],[-406,-10],[-160,-8],[-17,0],[-110,-5],[-122,-4],[-85,-3],[-61,-3],[-21,0],[-26,-1],[-50,-2],[-42,-2],[-134,-6],[-34,-2],[-225,-10],[-8,-1],[-24,-1],[-17,-1],[-25,-1],[-79,-1],[-30,0],[-31,0],[-28,-1],[-236,1],[-7,0],[-17,0],[-61,1],[-145,0],[-13,0],[-15,1],[-40,0],[-5,0],[-57,0],[-23,1],[-61,1],[-6,0],[-60,1],[-203,6]],[[84475,75207],[0,-3],[0,-45],[0,-31],[0,-55],[0,-38],[0,-51],[0,-35],[0,-32],[-1,-41],[1,-56],[0,-48],[0,-56],[-1,-159],[0,-73],[0,-31],[0,-119],[1,-205],[-1,-138],[0,-35],[0,-43],[1,-30],[0,-35],[0,-158],[0,-46],[0,-53],[0,-111],[0,-36],[0,-45],[0,-47],[0,-79],[0,-87],[0,-53],[0,-35],[0,-40],[0,-33],[0,-31],[-1,-81],[0,-30],[0,-48],[1,-204],[-1,-53],[0,-57],[1,-33],[0,-33],[0,-56],[0,-66],[0,-30],[0,-114],[0,-33],[0,-50],[-2,-37],[1,-32],[0,-14],[0,-48],[1,-112],[1,-50],[-1,-40],[0,-178],[0,-3],[0,-27],[0,-107],[0,-113],[0,-72],[0,-30],[0,-36],[0,-32],[-1,-44],[0,-54],[0,-42],[1,-50],[0,-45],[-1,-30],[1,-102],[0,-44],[0,-53],[0,-39],[0,-184],[0,-38],[0,-44],[0,-4],[0,-66],[0,-62],[0,-45],[0,-13],[0,-19],[0,-30],[-1,-49],[0,-58],[1,-34],[0,-98],[0,-68],[1,-132],[0,-56],[0,-34],[0,-32],[-1,-85],[1,-42],[0,-74],[0,-206],[0,-429],[-1,-218],[-1,-45],[-1,-81],[1,-32],[4,-338],[0,-76],[0,-18],[0,-76],[0,-30],[-2,-76],[0,-60],[0,-16],[0,-63],[-1,-163],[-12,-5],[-241,2],[-89,3],[-36,4],[-36,-1],[-23,0],[-30,0],[-26,1],[-31,0],[-100,1],[-50,-2],[2,-431],[0,-65],[-1,-192],[-3,-80],[-1,-130],[-1,-60],[0,-44],[0,-58],[0,-41],[-1,-68],[-1,-122],[0,-44]],[[83795,66146],[-32,1],[-52,0],[-13,0],[-36,0],[-59,1],[-70,0],[-128,1],[-33,1],[-110,2],[-81,3],[-31,8],[-14,0],[-88,1],[-2,0],[-74,-4],[-105,1],[-53,1],[-50,0],[-29,1],[-17,0],[-23,0],[-16,5],[-17,2],[-9,0],[-22,-2],[-24,-3],[-16,1],[-35,2],[-32,0],[-21,0],[-42,-1],[-115,0],[-12,1],[-68,1],[-126,3],[-26,2],[-17,0],[-13,-1],[-8,0],[-41,1],[-53,0],[-51,3],[-28,-5],[-25,0],[-13,0],[-40,-1],[-12,2],[-69,0],[-16,5],[-33,-1],[-2,-1],[-2,0],[-31,0],[-41,0],[-100,1],[-5,0],[-206,-3]],[[81308,66174],[0,225],[-1,73],[0,26],[0,97],[0,95],[0,336],[-1,453],[44,3],[0,322],[0,93],[0,101],[0,63],[0,62],[0,102],[0,103],[1,179],[0,42],[0,96],[0,124],[0,17],[-1,263],[0,63],[0,82],[0,47],[0,51],[0,121],[1,91],[0,124],[-1,65],[0,78],[1,71],[-1,44],[0,105],[0,66],[0,4],[0,56],[0,76],[-2,40],[1,52],[1,79],[-2,38],[-1,5],[0,40],[0,30],[2,138],[1,46],[0,3],[0,74],[0,87],[0,37],[0,55],[0,160],[1,55],[1,35],[0,156],[-3,61],[0,174],[0,78],[0,47],[0,51],[0,39],[0,106],[0,84],[0,73],[0,51],[1,34],[0,50],[0,31],[0,51],[0,92],[-1,74],[0,66],[0,101],[1,41],[-16,0],[-12,0],[-18,1],[-33,-1],[-23,1],[-23,0],[-13,0],[-13,0],[-13,1],[-13,0],[-1,0],[-16,1],[-15,-1],[-26,0],[-27,0],[-16,2],[-6,-1],[-17,0],[-14,0],[-12,0],[-13,1],[-14,0],[-13,1],[-13,0],[-13,0],[-12,0],[-14,0],[-13,0],[-13,0],[-13,1],[-19,0],[-19,-1],[-13,-1],[-12,1],[-19,-2],[-22,2],[-18,1],[-8,1],[-15,-2],[-16,2],[-60,-1],[-15,0],[-36,0],[-95,0],[-83,-2],[-25,0],[-58,2],[-28,1],[-25,1],[-3,0],[-48,0],[-47,1],[-33,0],[-39,0],[-24,0],[-15,-1],[-201,4],[-26,-2],[-23,1],[-64,1],[-19,0],[-15,-1],[-17,-1],[-53,1],[-41,-3],[-50,6],[-27,4],[-53,1],[-32,-3],[-93,-6],[-13,2],[-45,3],[-43,-3],[-15,1],[-13,-1],[-33,0],[-40,-2],[-18,1],[-17,0],[-23,0],[-32,1],[-23,-3],[-14,0],[-279,2],[-24,-2],[-11,0],[-72,3],[-22,1],[-225,-7],[-35,0],[-61,1],[-22,-1],[-51,4],[-28,2],[-4,268],[0,152],[0,35],[0,156],[1,77],[-1,111],[0,41],[-1,330],[0,112],[0,79],[0,96],[-2,143],[0,1],[0,35],[0,47],[0,102],[0,32],[0,120],[1,42],[1,211],[0,91],[-1,93],[0,19],[1,162]],[[74445,75124],[-2,-165],[-7,-570],[-3,-250],[-1,-44],[1,-196],[0,-3],[0,-42],[-1,-135],[0,-301],[0,-64],[-1,-157],[0,-135],[0,-50],[-1,-316],[0,-137],[0,-71],[0,-151],[-1,-181],[-1,-356],[1,-279],[0,-59],[0,-64],[2,-235],[3,-678],[0,-43],[4,-33],[0,-7],[1,-35],[1,-58],[1,-36],[2,-113],[1,-79],[0,-62],[0,-1],[1,-31],[0,-40],[2,-184],[1,-87],[0,-60],[0,-33],[1,-72],[-1,-229],[-2,-84],[-1,-39],[-1,-39],[0,-35],[2,-63],[1,-169],[2,-178]],[[74449,68675],[-43,0],[-38,-1],[-60,0],[-12,2],[-13,1],[-30,3],[-13,1],[-16,3],[-15,1],[-24,2],[-23,0],[-16,1],[-13,-2],[-21,-3],[-13,-1],[-19,-1],[-12,0],[-16,0],[-13,-1],[-28,-1],[-16,0],[-2,0],[-142,8],[-65,4],[-18,1],[-12,-1],[-59,0],[-59,-1],[-37,1],[-14,0],[-43,1],[-12,0],[-23,0],[-11,0],[-1,0],[-31,1],[-18,0],[-14,0],[-15,0],[-15,0],[-37,0],[-79,1],[-23,0],[-20,0],[-39,0],[-28,0],[-18,0],[-28,0],[-18,0],[-20,0],[-14,0],[-15,0],[-14,0],[-13,1],[-15,0],[-18,-1],[-39,1],[-12,0],[-13,0],[-22,0],[-34,-1],[-21,-1],[-17,0],[-18,1],[-18,-1],[-14,0],[-23,0],[-25,0],[-38,0],[-16,0],[-14,1],[-17,0],[-15,0],[-16,0],[-15,0],[-59,1],[-13,-1],[-45,1],[-35,1],[-16,-1],[-19,0],[-23,1],[-14,0],[-13,1],[-13,-1],[-17,0],[-14,0],[-41,1],[-24,0],[-25,1],[-32,1],[-20,-1],[-16,0],[-25,0],[-19,0],[-17,-1],[-85,-4],[-15,0],[-15,0],[-18,0],[-16,0],[-31,-1],[-16,0],[-13,0],[-13,1],[-36,-1],[-14,0],[-22,1],[-13,-1],[-30,0],[-18,1],[-15,0],[-4,0],[-10,-1],[-13,1],[-23,-1],[-22,1],[-11,-1],[-18,1],[-26,0],[-12,1],[-17,-1],[-39,1],[-22,0],[-29,-1],[-4,0],[-13,-1],[-45,-5],[-147,-17],[-39,1],[-121,2],[-49,3],[-12,1],[-41,2],[-39,4],[-11,1],[-14,1],[-29,3],[-12,1],[-16,1],[-11,-5],[-13,2],[-12,3],[-159,-1],[-33,1],[-13,3],[-21,1],[-16,1],[-14,0],[-18,0],[-15,1],[-18,-1],[-23,0],[-57,0],[-24,-1],[-59,-5],[-4,0],[-66,2],[-19,0],[-22,-1],[-32,1],[-25,-1],[-18,0],[-18,1],[-34,-1],[-16,1],[-12,0],[-19,-1],[-12,0],[-16,0],[-24,0],[-22,1],[-15,0],[-26,-1],[-14,1],[-18,0],[-19,0],[-27,0],[-12,0],[-14,-1],[-17,0],[-13,1],[-13,0],[-12,0],[-12,0],[-29,-1],[-12,-1],[-42,-1],[-16,1],[-20,-2],[-18,0],[-14,-1],[-15,2],[-12,1],[-14,1],[-51,-1],[-15,-1],[-46,1],[-100,2],[-19,0],[-14,0],[-12,0],[-23,1],[-24,0],[-15,1],[-13,0],[-17,1],[-46,0],[-19,-1],[-27,0],[-49,2],[-16,-1],[-21,1],[-16,0],[-19,0],[-18,1],[-19,0],[-29,0],[-23,0],[-27,0],[-15,0],[-21,0],[-29,0],[-43,1],[-23,-1],[-25,0],[-15,1],[-47,0],[-26,-1],[-22,-1],[-53,0],[-17,0],[-26,0],[-13,0],[-19,-1],[-13,0],[-16,-1],[-9,0],[-30,0],[-19,-3],[-19,-1],[-15,2],[-30,-1],[-15,-1],[-15,-1]],[[68388,68688],[0,35],[0,40],[0,74],[0,62],[-1,66],[1,144],[1,43],[0,31],[-2,-20],[-7,-30],[-12,-58],[-5,-20],[-1,-3],[-40,-75],[-49,-80],[-16,-25],[-8,-12],[-66,-77],[-12,-14],[-12,-14],[-104,-73],[-30,-17],[-5,-2],[-9,-5],[-20,-11],[-20,4],[-58,-6],[-16,8],[-6,3],[-79,16],[-42,18],[-53,34],[-52,33],[-22,22],[-10,18],[-20,36],[-1,3],[-11,23],[-10,76],[-7,33],[-9,25],[-1,6],[-7,20],[-1,7],[-6,17],[-33,88],[-1,3],[-39,110],[-4,13],[-15,45],[-22,51],[-15,16],[-53,56],[-27,12],[-21,9],[-14,17],[-4,5],[-13,26],[-7,10],[-10,9],[-35,31],[-32,18],[-24,14],[-42,10],[-7,2],[-32,8],[-79,1],[-69,9],[-15,4],[-50,-5],[-41,-3],[-26,-3],[-35,15],[-42,16],[-43,38],[-10,20],[-6,63],[2,33],[3,11],[7,26],[5,67],[0,85],[-3,43],[-7,116],[0,10],[-1,4],[-5,34],[-10,58],[-11,58],[-19,41],[-7,25],[-9,40],[-1,1],[-8,41],[-5,25],[-11,27],[-43,111],[-16,30],[-8,14],[-16,22],[-4,0],[-4,2],[-34,20],[-76,44],[-39,4],[-40,-8],[-7,-1],[-11,-4],[-32,-31],[-24,-4],[-48,-9],[-14,-15],[-13,-26],[-6,-21],[-12,-39],[-23,-97],[-10,-70],[-5,-15],[0,-1],[-2,-19],[-22,-99],[-14,-37],[-40,-61],[-29,-44],[-21,-43],[-27,-55],[-63,-69],[-1,-2],[-2,-1],[-8,-13],[0,130],[-1,68],[0,33],[1,36],[-1,36],[0,35],[0,32],[0,35],[1,32],[0,6],[-1,203],[0,26],[-1,144],[1,35],[-1,42],[1,105],[-1,30],[0,109],[0,37],[0,61],[0,58],[1,65],[-1,48],[0,33],[1,49],[0,34],[-1,44],[0,68],[0,88],[0,56],[1,50],[-1,71],[0,67],[0,30],[1,38],[-1,51],[1,31],[-1,33],[0,62],[0,36],[0,42],[0,221],[0,66],[0,117],[2,311],[-1,426],[0,44],[0,53],[0,45],[0,74],[1,54],[-1,35],[1,33],[0,50],[0,40],[0,1],[0,80],[0,118],[0,45],[0,57],[0,39],[0,34],[0,54],[0,263],[0,162],[-1,139],[-1,258],[-2,32]],[[62146,75264],[0,-30],[0,-44],[-1,-70],[1,-247],[-1,-44],[0,-35],[1,-40],[0,-35],[0,-33],[1,-74],[-2,-256],[1,-110],[1,-116],[0,-38],[-1,-42],[0,-62],[1,-37],[-1,-36],[0,-31],[0,-51],[0,-14],[0,-34],[1,-38],[-1,-36],[0,-51],[1,-129],[-1,-53],[1,-71],[1,-133],[0,-8],[-3,-49],[0,-69],[0,-169],[0,-69],[0,-37],[0,-6],[0,-39],[2,-118],[-1,-55],[0,-43],[0,-35],[0,-49],[1,-33],[0,-44],[-1,-63],[0,-50],[0,-30],[0,-61],[0,-124],[0,-298],[0,-30],[0,-35],[0,-32],[0,-40],[-1,-107],[0,-56],[0,-58],[1,-80],[0,-1],[0,-55],[-1,-65],[0,-92],[0,-49],[-1,-32],[-1,-142],[0,-52],[2,-90],[0,-39],[0,-43],[0,-42],[0,-37],[0,-98],[0,-143],[0,-5],[0,-36],[0,-65],[0,-34],[0,-72],[0,-71],[0,-41],[0,-55],[0,-49],[0,-60],[0,-101],[0,-53],[0,-40],[0,-68],[0,-109],[0,-46],[0,-43],[0,-126],[0,-119],[-1,-53],[0,-42],[1,-43],[0,-99],[0,-80],[0,-51],[0,-43],[0,-44],[0,-69],[0,-49],[0,-52],[1,-32],[0,-31],[-1,-38],[1,-41],[0,-48],[-1,-43],[1,-43],[0,-51],[-1,-35],[0,-47],[0,-40],[1,-42],[0,-56],[0,-49],[0,-93],[0,-85],[0,-52],[1,-47],[-1,-34],[1,-48],[0,-53],[1,-58],[0,-52],[0,-44],[11,-23],[0,-61],[0,-78],[-1,-42],[0,-71],[0,-73],[0,-42],[0,-65],[0,-103],[0,-45],[0,-42],[0,-47],[1,-49],[0,-72],[-1,-36],[1,-42],[0,-34],[0,-31],[2,-33],[0,-30],[-1,-75],[0,-31],[0,-2],[0,-33],[1,-121],[0,-83],[0,-110],[0,-210],[0,-43],[0,-26],[0,-52],[0,-58],[0,-25],[0,-35],[0,-60],[0,-43],[0,-4],[0,-30],[1,-52],[0,-60],[0,-65],[0,-34],[0,-45],[0,-55],[0,-50],[0,-34],[1,-83],[0,-135],[0,-34],[0,-75],[0,-62],[0,-32],[0,-40],[0,-15],[0,-46],[0,-30],[0,-39],[1,-39],[0,-39],[0,-34],[0,-37],[-1,-38],[0,-35],[0,-44],[0,-39],[1,-71],[-1,-65],[0,-37],[1,-45],[0,-52],[0,-45],[0,-33],[0,-80],[0,-54],[0,-69],[0,-12],[0,-20],[0,-41],[1,-33],[-1,-65],[1,-50],[0,-30],[0,-36],[0,-37],[0,-35],[0,-129],[0,-40],[0,-46],[-1,-47],[0,-37],[0,-42],[1,-49],[-1,-38],[0,-88],[0,-38],[0,-43],[1,-89],[-1,-55],[0,-56],[0,-59]],[[62164,62310],[-12,0],[-25,-1],[-20,1],[-17,0],[-27,0],[-17,-1],[-12,0],[-21,0],[-18,-1],[-25,0],[-12,0],[-17,0],[-14,0],[-26,0],[-24,0],[-13,0],[-20,0],[-16,-1],[-17,0],[-20,0],[-44,-1],[-33,0],[-22,0],[-26,0],[-24,0],[-20,0],[-30,-1],[-12,0],[-16,0],[-14,0],[-12,0],[-26,0],[-31,1],[-43,-1],[-12,0],[-18,0],[-14,0],[-21,-1],[-23,0],[-13,1],[-53,-2],[-26,1],[-7,0],[-8,-1],[-57,-1],[-44,0],[-15,-1],[-39,0],[-13,-1],[-16,0],[-29,0],[-12,-1],[-19,0],[-32,0],[-14,0],[-20,2],[-13,1],[-16,0],[-84,0],[-26,0],[-37,1],[-44,0],[-38,0],[-18,0],[-32,1],[-15,0],[-14,0],[-27,1],[-52,1],[-32,0],[-16,0],[-5,0],[-44,1],[-51,0],[-23,-1],[-14,1],[-14,0],[-21,1],[-23,0],[-22,0],[-26,0],[-19,0],[-21,0],[-37,0],[-34,1],[-27,0],[-54,1],[-17,0],[-32,0],[-21,0],[-18,0],[-28,1],[-27,0],[-24,0],[-25,0],[-17,0],[-16,0],[-77,1],[-13,0],[-43,0],[-13,0],[-17,0],[-21,0],[-15,0],[-15,0],[-20,0],[-24,0],[-29,0],[-23,0],[-36,0],[-24,1],[-17,0],[-13,0],[-14,0],[-5,0],[-10,-1],[-12,1],[-40,-1],[-11,1],[-14,0],[-26,0],[-12,0],[-21,-1],[-13,1],[-52,0],[-15,0],[-23,0],[-49,1],[-43,-1],[-21,0],[-13,0],[-43,0],[-30,0],[-16,0],[-46,0],[-20,0],[-20,0],[-17,-1],[-58,-3],[-16,0],[-21,-1],[-20,-1],[-13,0],[-13,-1],[-4,0],[-13,-1],[-15,0],[-18,-1],[-17,0],[-17,-1],[-16,-1],[-16,-1],[-25,0],[-18,-1],[-14,-1],[-18,-1],[-13,-1],[-40,-1],[-16,0],[-61,0],[-39,-1],[-20,-1],[-38,0],[-20,1],[-29,0],[-81,-1],[-25,-1],[-27,1],[-39,-1],[-35,0],[-24,0],[-45,0],[-40,0],[-24,0],[-21,0],[-15,0],[-31,1],[-29,-1],[-61,1],[-29,0],[-28,-1],[-68,0],[-23,0],[-50,0],[-52,-1],[-39,0],[-44,0],[-29,0],[-15,0],[-60,0],[-94,0],[-88,-1],[-15,1],[-35,-1],[-34,0],[-2,0],[-25,0],[-24,0],[-31,-1],[-25,0],[-18,0],[-22,0],[-14,0],[-25,0],[-23,0],[-35,0],[-20,0],[-26,0],[-14,1],[-27,-1],[-16,0],[-65,-1],[-13,1],[-15,0],[-17,-1],[-18,-1],[-45,-3],[-21,-1],[-17,0],[-81,-1],[-20,1],[-23,0],[-23,0],[-35,0],[-37,0],[-54,1],[-81,0],[-51,0],[-36,0],[-29,0],[-12,0],[-30,0]],[[55945,62285],[0,40],[1,87],[-1,54],[-1,34],[0,33],[1,100],[0,92],[1,176],[1,87],[0,33],[0,31],[0,36],[0,52],[-1,310],[-1,118],[1,102],[1,115],[0,30],[0,78],[0,32],[0,71],[0,68],[0,163],[0,55],[0,46],[1,37],[-1,39],[0,46],[0,37],[0,50],[0,55],[0,49],[0,50],[0,73],[0,89],[0,88],[0,52],[0,69],[1,100],[0,45],[0,73],[-1,149],[1,63],[0,153],[-1,62],[0,5],[0,41],[0,40],[1,43],[-1,87],[0,69],[0,48],[0,20],[0,54],[1,114],[-1,30],[1,30],[0,34],[0,125],[0,31],[-1,85],[1,57],[0,103],[0,52],[0,100],[0,52],[0,43],[0,30],[0,36],[0,37],[0,62],[1,243],[-25,29],[-12,0],[0,83],[0,75],[0,18],[0,17],[0,41],[0,55],[0,103],[0,36],[0,84],[0,38],[0,31],[0,43],[0,147],[-1,85],[1,119],[0,33],[0,42],[0,38],[-1,61],[0,30],[0,35],[0,68],[-1,307],[0,83],[1,37],[0,150],[0,18],[-1,30],[1,63],[-1,53],[1,38],[0,36],[-1,40],[0,51],[0,30],[0,38],[0,68],[0,59],[0,40],[0,62],[0,81],[0,41],[0,51],[0,110],[0,47],[0,31],[0,106],[0,35],[0,8],[0,363],[0,46],[0,49],[0,44],[0,33],[0,56],[0,264],[0,31],[0,33],[0,144],[0,50],[0,45],[0,126],[0,53],[0,123],[0,35],[-1,113],[1,52],[-1,52],[0,66],[0,52],[0,30],[0,59],[0,84],[0,40],[0,41],[0,57],[0,419],[-1,33],[0,138],[1,45],[0,2],[0,38],[-1,93],[0,54],[0,34],[1,45],[-1,56],[0,54],[0,49],[0,56],[1,75],[0,91],[0,2],[0,51],[0,47],[0,88],[-1,46],[0,34],[0,42],[0,43],[0,42],[0,35],[-1,112],[0,131],[0,58],[-1,36],[1,133],[0,14],[0,17],[0,52],[0,9],[-1,224],[2,199],[-3,31]],[[68388,68688],[0,-85],[0,-47],[0,-171],[0,-62],[0,-44],[0,-79],[0,-81],[0,-81],[0,-127],[0,-40],[1,-82],[-1,-60],[0,-66],[1,-69],[-1,-50],[0,-44],[0,-87],[-11,-101],[0,-110],[0,-75],[0,-57],[0,-91],[-1,-66],[0,-73],[1,-34],[0,-53],[0,-41],[-1,-91],[1,-61],[0,-24],[0,-69],[0,-37],[0,-71],[1,-79],[0,-40],[0,-74],[0,-60],[0,-154],[0,-53],[1,-32],[-1,-30],[1,-35],[0,-105],[-1,-31],[2,-63],[0,-35],[0,-32],[0,-71],[0,-38],[1,-57],[-1,-39],[0,-42],[2,-119],[0,-34],[0,-33],[0,-32],[0,-35],[1,-41],[0,-51],[0,-80],[0,-34],[0,-32],[-1,-31],[1,-41],[0,-48],[0,-31],[1,-36],[-1,-36],[0,-39],[0,-58],[-1,-72],[-1,-11],[-2,-21],[3,-36],[-1,-49],[-1,-39],[0,-49],[2,-33],[-2,-31],[1,-47],[0,-94],[0,-56],[0,-56],[0,-46],[1,-45],[0,-47],[-1,-32],[1,-50],[0,-39],[1,-47],[0,-37],[0,-33],[0,-41],[0,-34],[0,-38],[0,-52],[0,-33],[1,-74],[0,-36],[0,-35],[-1,-49],[-2,-53],[2,-34],[1,-219],[0,-118],[0,-63],[0,-36],[0,-33],[-1,-45],[0,-41],[0,-125],[-1,-34],[0,-56]],[[68382,62259],[-98,4],[-81,-1],[-28,0],[-119,3],[-90,0],[-39,1],[-18,0],[-34,1],[-57,4],[-1,0],[-62,-3],[-19,-1],[-27,0],[-156,6],[-110,4],[-20,1],[-20,1],[-14,0],[-86,-1],[-159,-1],[-36,1],[-54,1],[-5,0],[-113,2],[-167,-1],[-41,0],[-31,0],[-16,1],[-15,0],[-40,1],[-59,0],[-32,-1],[-15,0],[-180,4],[-27,1],[-60,0],[-57,0],[-35,0],[-14,0],[-21,0],[-20,0],[-17,0],[-66,1],[-113,1],[-13,1],[-22,0],[-27,-1],[-13,0],[-16,0],[-26,0],[-17,0],[-17,-1],[-18,0],[-47,-1],[-21,-1],[-48,3],[-60,-1],[-64,-1],[-17,0],[-24,2],[-23,1],[-12,0],[-15,0],[-23,0],[-23,-2],[-25,2],[-18,0],[-45,0],[-23,0],[-12,-1],[-16,-1],[-14,-1],[-39,0],[-1,0],[-10,0],[-27,1],[-33,-1],[-34,0],[-31,-1],[-43,0],[-12,1],[-27,2],[-15,-1],[-29,-1],[-17,0],[-15,0],[-17,0],[-91,1],[-20,0],[-42,0],[-51,2],[-50,0],[-13,1],[-31,0],[-114,1],[-51,0],[-12,0],[-2,1],[-22,0],[-17,0],[-62,2],[-27,0],[-16,0],[-50,2],[-30,1],[-37,0],[-91,0],[-56,1],[-82,1],[-16,1],[-3,1],[-50,2],[-207,0],[-56,-1],[-129,1],[-20,3],[-52,-1],[-1,0],[-68,-2],[-15,-1],[-72,-1],[-3,0],[-61,2],[-80,3],[-63,0],[-138,1],[-70,0],[-164,3],[-46,-1],[-46,1],[-132,0],[-31,1],[-79,-1],[-23,0],[-48,0],[-57,0]],[[55945,62285],[-158,1],[-47,0],[-210,2],[-67,0],[-22,0],[-117,2],[-101,-1],[-105,0],[-76,0],[-67,2],[-270,-12],[2,-203],[0,-14],[1,-203],[-1,-430],[0,-332],[0,-92],[0,-58],[-1,-157],[0,-214],[0,-285],[0,-144],[0,-326],[-1,-101],[0,-107],[0,-9],[-1,-32],[1,-31],[0,-34],[0,-54],[1,-17],[0,-23],[0,-30],[0,-32],[0,-32],[0,-24],[1,-24],[0,-39],[0,-138],[-1,-45],[0,-12],[0,-52],[0,-168],[-1,-217],[-1,-35],[1,-121],[1,-98],[-2,-754],[0,-229],[1,-31],[1,-129],[1,-44]],[[54707,57159],[-320,-2],[-150,-1],[-56,0],[-15,1],[-108,-1],[-13,-3],[-17,0],[-14,2],[-18,1],[-13,0],[-21,-1],[-17,1],[-59,0],[-11,0],[-30,0],[-1,0],[-131,3],[-102,-1],[-113,0],[-22,0],[-38,-1],[-23,0],[-66,0],[-44,0],[-39,0],[-24,0],[-81,-1],[-35,0],[-41,0],[-26,0],[-103,0],[-18,0],[-114,1],[-8,0],[-11,0],[-30,0],[-16,0],[-14,0],[-12,1],[-35,1],[-13,0],[-14,-3],[-14,1],[-17,2],[-12,1],[-15,-1],[-17,1],[-15,0],[-13,-2],[-14,1],[-13,-1],[-13,1],[-14,-1],[-25,1],[-15,-1],[-13,0],[-31,0],[-115,0],[-99,1],[-20,-1],[-27,1],[-23,-1],[-87,0],[-88,-1],[-12,2],[-12,0],[-22,0],[-21,1],[-19,-1],[-37,2],[-16,-1],[-20,0],[-20,0],[-37,0],[-40,-1],[-14,0],[-22,1],[-15,0],[-13,0],[-16,1],[-12,-1],[-18,0],[-14,0],[-12,0],[-13,0],[-16,0],[-37,0],[-22,1],[-98,-2],[-22,1],[-81,1],[-38,0],[-22,-1],[-14,0],[-25,0],[-17,3],[-47,-2],[-15,0],[-21,0]],[[51091,57161],[-11,1],[-14,-1],[-67,8],[-12,2],[0,32],[0,44],[0,1],[-1,339],[-1,317],[1,110],[0,126],[0,193],[0,69],[0,40],[0,69],[1,93],[0,103],[0,50],[0,79],[0,39],[0,47],[0,43],[0,43],[-1,84],[0,41],[0,169],[0,37],[0,41],[0,46],[0,137],[0,55],[0,51],[0,54],[0,34],[0,40],[0,44],[0,46],[0,49],[0,69],[0,69],[0,81],[0,30],[0,96],[0,46],[0,35],[0,53],[0,34],[0,37],[0,35],[0,43],[0,37],[0,38],[0,39],[1,52],[-1,49],[1,44],[-1,29],[0,35],[0,42],[3,34],[-1,311],[2,79],[0,32],[-4,214],[0,33],[0,32],[1,97],[1,32],[-1,29],[1,40],[0,42],[0,117],[-2,55],[3,321],[1,116],[0,47],[1,129],[1,62],[-1,81],[-1,22],[0,43],[-2,124],[0,288],[-2,31],[1,41],[0,62],[0,34],[1,40],[0,30],[-1,31],[0,42],[0,54],[0,85],[1,138],[-1,32],[1,76],[0,72],[0,39],[-1,57],[0,49],[0,44],[1,64],[0,34],[0,30],[0,40],[0,174],[0,58],[0,44],[0,40],[1,64],[-1,48]],[[50988,64862],[1,190],[0,113],[-1,48],[0,78],[0,70],[0,96],[0,33],[0,64],[0,35],[0,131],[-1,44],[0,15],[0,370],[0,34],[0,91],[1,56],[-1,112],[0,45],[0,37],[-1,70],[-1,83],[0,5],[1,30],[0,308],[0,67],[-1,35],[0,68],[0,45],[0,30],[1,41],[1,32],[-2,75],[-12,0],[-33,1],[-1,69],[1,216],[-1,50],[1,48],[0,45],[0,49],[0,43],[0,59],[0,80],[0,45],[0,41],[0,109],[0,59],[0,63],[0,56],[0,34],[0,44],[0,40],[0,32],[0,40],[0,44],[0,19],[0,35],[0,138],[0,68],[0,52],[0,35],[0,63],[0,32],[0,54],[-1,47],[1,43],[0,40],[0,40],[0,48],[0,53],[0,44],[0,52],[-1,33],[1,67],[-1,132],[0,48],[-1,153],[0,30],[0,120],[0,59],[0,33],[0,31],[0,34],[0,108],[0,11],[0,26],[0,58],[0,54],[0,45],[0,33],[0,38],[0,56],[0,54],[0,31],[0,36],[0,36],[-1,60],[1,56],[-1,50],[0,55],[0,40],[0,83],[0,56],[1,127],[0,23],[-1,37],[0,62],[0,54],[0,56],[0,60],[0,72],[0,101],[0,44],[-1,49],[1,31],[-1,55],[0,68],[0,7],[0,31],[0,62],[0,67],[0,72],[0,39],[0,50],[0,76],[0,32],[0,133],[1,172],[0,136],[0,54],[-1,247],[0,34],[-2,43],[1,34],[-1,44],[0,34],[0,219],[0,70],[0,61],[0,31],[-1,47],[0,90],[2,50],[-3,31],[1,31],[-1,35],[0,35],[0,36],[1,39],[0,32],[0,3],[0,44],[0,78],[-1,79],[0,60],[0,14],[0,73],[0,196],[0,50],[0,104],[0,10],[0,78],[-1,33],[0,35],[0,86],[0,46]],[[50988,64862],[-24,0],[-13,0],[-14,1],[-23,0],[-14,0],[-32,1],[-22,0],[-24,0],[-14,0],[-21,0],[-14,-1],[-17,0],[-12,1],[-12,0],[-1,0],[-17,0],[-15,0],[-15,0],[-15,0],[-12,0],[-35,0],[-12,0],[-12,1],[-13,-1],[-12,0],[-14,-1],[-13,0],[-13,1],[-25,-1],[-26,0],[-21,0],[-17,1],[-15,0],[-13,0],[-16,0],[-14,0],[-14,0],[-14,-1],[-17,0],[-26,0],[-13,1],[-36,0],[-63,0],[-21,0],[-11,1],[-5,0],[-77,-2],[-146,-10],[-16,0],[-18,0],[-14,-2],[-12,1],[-17,-2],[-18,1],[-16,-1],[-46,0],[-20,0],[-20,0],[-15,0],[-35,1],[-89,6],[-24,-1],[-17,-2],[-25,0],[-17,0],[-22,0],[-11,0],[-13,1],[-12,1],[-13,2],[-16,2],[-144,3],[-24,0],[-36,0],[-69,2],[-40,1],[-61,1],[-65,0],[-29,0],[-19,0],[-66,0],[-33,2],[-28,1],[-58,2],[-20,1],[-83,2],[-13,-6],[-13,0],[-25,1],[-19,-1],[-44,1],[-40,1],[-27,0],[-17,0],[-21,-1],[-38,0],[-22,0],[-82,-2],[-13,0],[-24,1],[-18,-1],[-27,0],[-66,0],[-12,0],[-33,0],[-15,0],[-15,1],[-23,5],[-144,-5],[-26,-3],[-12,0],[-12,0],[-27,-1],[-23,0],[-26,0],[-21,0],[-20,-1],[-13,0],[-54,-1],[-13,0],[-91,-1],[-21,0],[-51,-1],[-17,0],[-14,0],[-18,0],[-27,1],[-23,-1],[-2,0],[-74,0],[-16,0],[-17,0],[-20,0],[-15,-1],[-203,0],[-1,0],[-25,-1],[-63,1],[-44,0],[-33,-1],[-17,1],[-20,0],[-13,1],[-13,-1],[-25,0],[-17,0],[-22,0],[-21,-1],[-24,1],[-22,-1],[-17,0],[-19,0],[-17,0],[-30,0],[-22,0],[-12,0],[-15,0],[-22,1],[-19,2],[-15,-6],[-14,-3],[-15,8],[-24,-1],[-75,-1],[-19,-1],[-47,0],[-84,1],[-73,0],[-98,1],[-32,0],[-89,0],[-118,1],[-76,0],[-170,1],[-66,0],[-103,0],[-34,-1],[-17,1],[-24,0],[-16,0],[-15,0],[-14,0],[-21,-1],[-20,1],[-12,0],[-27,-1],[-38,-1],[-3,-1],[-29,-1],[-15,4],[-25,0],[-12,0],[-12,0],[-23,0],[-18,0],[-40,0],[-25,-1],[-13,1],[-12,0],[-26,0],[-17,0],[-53,-1],[-57,-1],[-135,-1],[-72,-1],[-79,2],[-15,0],[-35,1],[-78,0],[-14,0],[-13,0],[-13,0],[-15,2],[-14,-1],[-36,-2],[-39,0],[-26,-1],[-37,1],[-16,0],[-15,2],[-18,-1],[-26,0],[-18,1],[-14,-2],[-27,1],[-17,0],[-14,-1],[-14,1],[-12,-1],[-14,0],[-52,-2],[-73,-1],[-13,1],[-48,5],[-19,-1],[-15,-2],[-17,5],[-13,-1],[-15,-4],[-16,-1],[-13,-1],[-27,1],[-22,-1],[-13,2],[-24,-2],[-13,0],[-24,0],[-16,-1],[-32,0],[-170,-3],[-11,4],[-12,0],[-16,0],[-25,0],[-15,0],[-12,-1],[-15,1],[-18,-1],[-13,0],[-21,0],[-14,0],[-14,1],[-36,-1],[-13,0],[-40,0],[-32,-1],[-13,0],[-39,0],[-23,0],[-18,0],[-22,0],[-15,0],[-16,0],[-27,0],[-18,0],[-12,0],[-18,-1],[-17,0],[-17,0],[-18,0],[-21,1],[-12,-1],[-16,0],[-28,0],[-29,1],[-15,-1],[-12,0],[-14,0],[-15,0],[-12,1],[-15,0],[-22,-1],[-3,0],[-10,-1],[-16,1],[-19,0],[-19,0],[-19,1],[-42,0],[-27,0],[-16,-1],[-14,0],[-13,1],[-26,0]],[[42310,64856],[1,39],[0,40],[0,87],[0,33],[0,141],[-1,42],[0,44],[0,46],[0,35],[1,38],[0,43],[0,36],[-1,34],[0,37],[0,34],[0,37],[0,42],[0,45],[0,2],[0,72],[0,38],[0,177],[1,46],[-1,33],[0,64],[0,32],[0,44],[0,53],[0,86],[0,41],[0,58],[0,112],[0,45],[-1,100],[1,416],[-1,68],[1,216],[-61,2],[1,131],[1,112],[1,63],[0,40],[0,64],[0,74],[0,132],[-1,243],[0,69],[0,532],[0,36],[0,53],[0,50],[0,35],[0,38],[0,41],[0,39],[0,46],[0,40],[0,31],[0,32],[0,64],[0,32],[0,38],[0,67],[-1,40],[1,196],[0,90],[0,58],[0,194],[0,118],[0,190],[0,6],[-1,196],[0,49],[0,100],[0,4],[0,26]],[[81308,66174],[-83,0],[-129,3],[-100,0],[-20,0],[-82,1],[-18,1],[-22,0],[-3,0],[-39,2],[-20,2],[-6,0],[-104,2],[-97,-1],[-66,-1],[-37,0],[-61,1],[-65,1],[-58,-2],[-75,6],[-41,-1],[-100,-1],[-15,0],[-31,0],[-195,-3],[-2,0],[-19,0],[-285,-3],[-86,-1],[0,-287],[0,-142],[0,-1110],[0,-64],[0,-215],[0,-75],[0,-41],[1,-409],[0,-239],[0,-31],[-1,-79],[0,-33],[0,-61],[0,-77],[0,-156],[-1,-139],[0,-91],[0,-184],[-1,-267],[0,-163],[0,-113],[0,-337],[0,-106],[0,-296],[0,-153],[0,-1],[0,-163],[-1,-451],[0,-94],[0,-127],[1,-176],[0,-65],[0,-124],[1,-367]],[[79448,59744],[-196,-1],[-1,0],[-47,-1],[-4,0],[-42,-1],[-32,-1],[-6,0],[-15,0],[-63,-1],[-5,0],[-38,0],[-28,0],[-22,0],[-31,0],[-4,0],[-38,0],[-101,1],[-76,-1],[-16,0],[-37,0],[-2,0],[-18,0],[-22,1],[-75,-1],[-28,-1],[-96,-1],[-16,0],[-15,-1],[-25,0],[-16,-1],[-37,0],[-17,0],[-20,1],[-12,0],[-19,-1],[-19,-1],[-28,0],[-25,1],[-21,1],[-15,-1],[-13,1],[-14,0],[-23,2],[-21,-2],[-32,3],[-18,0],[-73,1],[-21,0],[-15,0],[-37,0],[-44,0],[-51,0],[-12,-3],[-12,0],[-13,1],[-29,0],[-15,2],[-12,0],[-35,1],[-13,0],[-13,0],[-26,0],[-14,0],[-1,0],[-37,1],[-29,0],[-118,-1],[-24,0],[-38,-2],[-72,3],[-11,2],[-62,6],[-25,1],[-21,1],[-33,-5],[-45,1],[-2,1],[-84,3],[-18,0],[-24,0],[-41,0],[-29,0],[-53,-1],[-26,0],[-14,2],[-12,-1],[-16,0],[-21,-2],[-38,0],[-11,0],[-12,2],[-16,0],[-35,-1],[-55,-5],[-42,1],[-56,1],[-13,0],[-47,-4],[-12,-2],[-13,1],[-18,2],[-12,2],[-56,-1],[-13,0],[-27,-1],[-101,-2],[-12,0],[-53,0],[-48,1],[-2,0],[-13,0],[-26,-1],[-54,-1],[-24,0],[-2,0],[-38,-1],[-20,0],[-12,1],[-59,1],[-51,-2],[-34,2],[-26,-1],[-20,4],[-34,0],[-65,-2],[-19,0],[-1,0],[-45,0],[-34,0],[-24,0],[-35,-1],[-19,0],[-15,0],[-43,1],[-52,-1],[-29,0],[-29,0],[-95,0],[-12,-2],[-21,0],[-42,0],[-13,0],[-13,0],[-12,0],[-15,-1],[-15,3],[-56,-1],[-12,0],[-10,0],[-55,-2],[-37,0],[-64,-1],[-17,0],[-30,0],[-43,0],[-53,1],[-16,0],[-15,3],[-67,-1],[-26,0]],[[74454,59742],[0,46],[2,349],[-1,30],[-1,60],[0,4],[0,45],[0,155],[0,229],[1,327],[0,39],[0,38],[2,47],[1,33],[0,34],[1,58],[1,49],[0,50],[0,32],[0,54],[0,56],[1,41],[0,82],[-4,46],[0,36],[0,59],[0,61],[0,37],[2,43],[0,318],[0,64],[0,47],[1,180],[1,72],[0,128],[2,52],[0,103],[0,11],[-1,25],[0,3],[0,52],[-1,50],[0,50],[1,52],[1,39],[2,42],[0,43],[0,82],[0,230],[0,63],[0,28],[0,3],[1,137],[0,73],[0,148],[0,69],[0,363],[0,98],[0,341],[0,15],[0,27],[0,20],[0,13],[0,34],[0,9],[0,55],[0,29],[0,43],[0,66],[0,112],[1,66],[1,111],[2,359],[1,221],[-2,107],[3,49],[-1,223],[-1,173],[0,54],[-1,40],[2,39],[-1,56],[-3,235],[0,53],[0,190],[-1,154],[0,53],[0,144],[-2,242],[0,43],[4,30],[-17,593],[-2,169]],[[90935,72608],[1,-425],[0,-218],[0,-88],[2,-118],[-3,-180],[-75,0],[-128,-1],[0,-251],[-1,-345],[0,-154],[0,-155],[-56,2],[0,-120],[-1,-38],[1,-33],[-23,-14],[-14,0],[-10,-65],[0,-3],[0,-23],[-2,-234],[-50,6],[4,-104],[-68,0],[-57,-4],[-1,0],[-12,-3],[-23,3],[-32,-3],[-1,-11],[-16,-56],[-41,-80],[-18,-11],[-53,-99],[-6,-3],[-31,-59],[-31,-47],[-48,-59],[-11,-7],[-66,-132],[-3,-125],[9,-52],[13,-45],[31,-78],[16,-48],[84,-312],[6,-22],[1,-63],[-2,-52],[-2,-47],[0,-144],[5,-22],[4,-31],[7,-54],[0,-48],[0,-8],[-11,-48],[-78,-153],[-7,-26],[-8,-33],[-20,-44],[-2,-192],[14,-82],[23,-118],[7,-30],[80,-208],[11,-26],[92,-212],[18,-63],[6,-15],[97,-197],[51,-30],[48,-12],[23,-28],[36,-71],[48,-98],[14,-49],[0,-1],[0,-25],[1,-53],[0,-5],[8,-88],[4,-68],[-2,-93],[-19,-125],[-20,-113],[-5,-41],[0,-4],[-7,-8],[-37,-46],[-4,-9],[-20,-42],[-4,-8],[0,-6],[-2,-24],[-15,-30],[-42,-87],[-36,-103],[-3,-7],[-13,-26],[-16,-10],[-22,-41],[-6,-25],[-2,-56],[1,-20],[-3,-49],[-1,-12],[-16,-60],[-17,-65],[-10,-29],[-12,-33],[-14,-19],[-17,-1],[-25,-2],[-29,-18],[-18,-33],[-10,-29],[-3,-22],[-1,-69],[0,-21],[0,-17],[6,-26],[17,-33]],[[90262,64888],[-20,0],[-63,-4],[-9,1],[-3,0],[-27,-1],[-37,1],[-34,0],[-14,0],[-43,-1],[-39,1],[-50,0],[-30,0],[-77,1],[-15,0],[-14,-1],[-32,0],[-24,0],[-47,7],[-31,0],[-55,1],[-4,0],[-19,-4],[-12,0],[-57,-2],[-12,1],[-11,0],[-14,1],[-10,-1],[-38,0],[-33,5],[-22,2],[-41,86],[-7,10],[-22,20],[-22,20],[-27,-19],[-6,-4],[-31,0],[-33,12],[-18,26],[-49,8],[-19,6],[-61,-70],[-27,-31],[-54,-25],[-21,-19],[-62,-61],[-56,-54],[-83,-73],[-58,-51],[-10,-8],[-29,-21],[-71,-70],[-68,-87],[-38,-48],[-48,-29],[-40,-14],[-22,0],[-36,30],[-9,11],[-46,1],[-16,11],[-62,41],[-76,49],[-10,-3],[-1,0],[-37,-18],[-20,0],[-80,38],[-66,49],[-84,14],[-7,1],[-31,1],[-25,-18],[-13,-15],[-62,-33],[-33,-25],[-9,-15],[-15,-25],[-44,-41],[-11,-3],[-31,-3],[-9,-7],[-109,-70],[-22,-14],[-45,-58],[-14,-19],[-27,-8],[-45,16],[-23,-6],[-16,-45],[-30,-13],[-12,-1],[-89,-2],[-27,-12],[-12,-42],[-28,-14],[-5,8],[-11,8],[-18,0],[-5,0],[-12,-3],[-28,-8],[-11,-11],[-12,-23],[-6,-5],[-27,41],[-40,-14],[-20,-7],[-13,4],[-12,-7],[-15,-37],[-24,-82],[-20,-23],[-21,-69],[-16,-48],[-4,-32],[-6,-2],[-6,-7],[-13,-26],[-23,-66],[-10,-48],[0,-7],[0,-23],[-22,-44],[-15,-18],[-7,-8],[-14,-29],[0,-1],[-6,-21],[-25,-63],[-6,-6],[-20,-23],[-9,-11],[-11,4],[-2,2],[-7,8],[-20,23],[-32,63],[-34,114],[-31,69],[-15,49],[-3,58],[-15,25],[-28,0],[-11,-23],[-18,-12],[-30,-19],[-3,2],[-5,12],[-8,8],[-8,0],[-11,0],[-10,0],[-13,26],[-21,28],[-4,-2],[-7,7],[-24,34],[-42,11],[-47,-3],[-13,12],[-45,45],[-2,2],[-35,67],[-6,17],[-3,9],[-32,63],[-10,19],[-5,22],[-4,59],[4,26],[2,8],[9,36],[-1,155],[0,4],[-24,77],[-9,100],[0,26],[16,61],[2,9],[1,52],[-19,85],[1,57],[0,46],[19,123],[2,12],[1,5],[0,4],[-2,67],[-3,30],[3,33],[6,27],[3,33],[2,35],[-2,82],[0,35],[3,35],[2,42],[-1,29],[-6,31],[-8,24],[-6,31],[-7,26],[0,-32],[-4,-32],[8,-24],[9,-35],[-1,-30],[-12,6],[-16,13],[2,62],[-9,103],[-2,15],[-22,103],[-11,45],[-11,22],[-18,24],[-7,9],[-12,49],[-15,62],[12,127],[-13,0],[-16,1],[-22,0],[-25,0],[-31,-3],[-92,-3],[-14,1],[-50,-2],[-21,0],[-22,-1],[-8,0],[-14,0],[-40,1],[-15,-1],[-18,0],[-27,1],[-15,0],[-18,0],[-24,-1],[-15,0],[-15,0],[-41,0],[-24,-1],[-30,1],[-18,0],[-61,1],[-19,0],[-1,0],[-23,0],[-14,-1],[-14,0],[-19,0],[-119,-1],[-25,0],[-16,0],[-55,2],[-59,1],[-43,0],[-38,0],[-13,0],[-18,0],[-185,-6]],[[84423,66161],[-65,4],[-13,-2],[-19,1],[-19,-4],[-121,5],[-85,2],[-35,1],[-58,0],[-31,-1],[-15,-1],[-29,-16],[-51,-1],[-71,-2],[-16,-1]],[[95726,75167],[3,-818],[-1,-40],[-2,-46],[0,-3],[0,-33],[0,-45],[2,-85],[1,-182],[-2,-146],[-1,-40],[0,-69],[0,-51],[0,-63],[0,-56],[0,-35],[1,-133],[0,-88],[0,-84],[0,-48],[0,-95],[0,-109],[0,-35],[0,-131],[0,-62],[0,-44],[0,-196],[0,-131],[0,-33],[-1,-507],[0,-113],[0,-138],[0,-32],[0,-241],[0,-215],[0,-387],[0,-133],[0,-98],[0,-54],[0,-85],[0,-49],[0,-89],[1,-78],[0,-51],[0,-149],[0,-82],[0,-72],[-4,-128],[3,-106],[0,-2],[0,-36],[0,-142],[0,-21],[0,-102],[-1,-166],[0,-208],[0,-92],[0,-37],[1,-47],[-1,-52],[1,-36],[0,-33],[-1,-92],[1,-35],[0,-41],[0,-37],[0,-51],[0,-41],[0,-38],[0,-32],[0,-47],[-1,-142],[3,-85],[-1,-86],[0,-36],[0,-246],[-28,-1],[-12,1],[-12,-4],[-15,3],[-24,0],[-17,0],[-9,-16],[-1,-2],[0,-38],[1,-165],[0,-85],[0,-109],[0,-147],[-2,-52],[0,-36],[0,-51],[0,-61],[0,-46],[0,-33],[0,-43],[2,-130],[0,-31],[-3,-101],[-1,-53],[3,-143],[0,-183],[-1,-398],[0,-6],[0,-41],[0,-186],[-1,-74],[1,-236],[0,-129],[0,-43],[-1,-309],[0,-40],[0,-56],[0,-165],[0,-73],[-7,-330],[2,-57],[1,-39],[1,-33],[5,-34],[-1,-42],[0,-48],[0,-52],[0,-61],[0,-51],[-1,-38],[1,-52],[0,-4],[-1,-68],[-2,-171],[-1,-74],[0,-3],[0,-145],[0,-93],[0,-164],[0,-111],[0,-73],[3,-119],[-2,-151],[0,-74],[0,-59],[0,-176],[-1,-491],[0,-83],[0,-42],[0,-185],[0,-54],[1,-231],[2,-398],[2,-658]],[[95609,59730],[-75,0],[-132,0],[-48,0],[-16,1],[-57,0],[-46,1],[-172,1],[-74,0],[-44,0],[-58,1],[-22,0],[-48,2],[-136,0],[-131,-2],[-28,1],[-42,-1],[-25,-1],[-18,0],[-14,-1],[-16,-1],[-18,-1],[-22,0],[-38,0],[-173,-1],[-61,0],[-39,0],[-13,1],[-12,0],[-17,5],[-18,-2],[-50,-1],[-23,-2],[-42,-2],[-58,-2],[-41,-2],[-13,-1],[-21,7],[-40,-1],[-18,-8],[-25,1],[-2,0],[-17,1],[-25,0],[-6,0],[-44,0],[-112,0],[-28,0],[-76,0],[-31,-2],[-40,1],[-8,0],[-63,2],[-41,1],[-35,1],[-28,1],[-16,0],[-49,1],[-3,0],[-276,8],[-25,-1],[-20,0],[-12,0],[-209,-2],[-57,0],[-130,1],[-128,1],[-34,1],[-250,1],[-26,1]],[[91874,59738],[-2,191],[-2,301],[0,110],[7,26],[-1,58],[0,109],[1,36],[0,34],[-4,146],[1,73],[0,1],[1,219],[1,261],[0,223],[-1,120],[0,37],[0,46],[0,65],[1,159],[1,44],[0,51],[0,207],[-1,100],[1,93],[0,69],[-4,505],[0,70],[0,46],[5,140],[-1,67],[-6,112],[0,118],[1,122],[0,104],[0,218],[0,33],[1,98],[4,152],[0,75],[0,41],[1,15],[0,34],[0,51],[0,86],[0,31],[0,34],[0,54],[0,40],[0,58],[0,51],[-13,0],[-23,1],[-12,0],[-15,-1],[-19,0],[-23,1],[-17,1],[-21,-1],[-12,1],[-12,-1],[-15,2],[-13,0],[-20,-1],[-16,-2],[-12,1],[-13,2],[-16,0],[-17,0],[-23,1],[-18,0],[-17,0],[-17,0],[-13,0],[-13,0],[-14,0],[-15,0],[-21,0],[-29,0],[-18,0],[-13,0],[-13,1],[-13,0],[-18,0],[-17,1],[-12,0],[-13,0],[-15,-1],[-23,0],[-18,1],[-16,1],[-14,0],[-18,0],[-14,1],[-20,0],[-21,1],[-23,1],[-12,-1],[-14,1],[-12,-2],[-13,-1],[-14,0],[-12,0],[-14,0],[-12,0],[-13,1],[-33,0],[-12,0],[-13,0],[-18,0],[-25,0],[-16,0],[-20,0],[-13,1],[-15,0],[-21,1],[-41,0],[-15,0],[-22,0],[-17,0],[-27,0],[-20,1],[-12,0],[-22,1],[-24,-1],[-19,1],[-14,0],[-12,0],[-20,1],[-13,-1],[-31,-1],[-21,2],[-36,3],[-16,0],[-7,0],[-24,0],[-30,0],[-24,0],[-79,0]],[[98463,75183],[4,-58],[3,-44],[4,-49],[4,-47],[3,-31],[2,-36],[11,-174],[6,-83],[1,-6],[2,-33],[9,-123],[18,-252],[3,-37],[1,-14],[5,-88],[2,-38],[11,-172],[4,-56],[6,-77],[6,-99],[13,-173],[2,-35],[2,-28],[1,-9],[4,-62],[10,-134],[5,-76],[7,-108],[6,-77],[2,-40],[16,-211],[13,-192],[10,-144],[13,-194],[9,-139],[4,-53],[5,-71],[25,-366],[6,-81],[10,-144],[29,-425],[10,-159],[8,-113],[4,-64],[3,-36],[3,-51],[3,-48],[1,-19],[1,-12],[7,-92],[3,-51],[3,-44],[3,-35],[4,-61],[5,-71],[1,-6],[3,-55],[3,-44],[4,-53],[4,-58],[3,-46],[4,-43],[3,-48],[3,-41],[3,-48],[3,-36],[2,-35],[3,-33],[2,-34],[4,-58],[39,-566],[2,-33],[3,-33],[4,-60],[4,-57],[4,-33],[1,-31],[2,-41],[5,-70],[8,-103],[11,-211],[17,-227],[3,-44],[2,-31],[3,-51],[2,-36],[8,-142],[0,-12],[9,-127],[2,-30],[4,-55],[13,-181],[4,-70],[8,-115],[4,-56],[18,-247],[3,-35],[26,-372],[14,-206],[9,-142],[9,-132],[2,-30],[2,-30],[4,-54],[2,-33],[2,-32],[3,-30],[3,-58],[3,-35],[3,-54],[1,-16],[8,-148],[4,-67],[4,-37],[13,-209],[20,-300],[0,-1],[3,-41],[4,-67],[3,-39],[0,-6],[4,-65],[9,-142],[4,-36],[3,-58],[9,-138],[13,-185],[16,-231],[10,-151],[2,-44],[2,-29],[15,-205],[3,-41],[5,-79],[8,-123],[8,-139],[2,-39],[16,-226],[12,-196],[3,-41],[7,-67],[2,-45],[4,-77],[30,-472],[4,-57],[15,-204],[5,-68],[7,-107],[4,-49],[4,-59],[6,-93],[11,-165],[11,-165],[3,-46],[3,-34],[3,-43],[12,-184],[7,-103],[16,-233],[15,-223],[9,-121],[4,-62]],[[99514,59729],[-93,-2],[-33,0],[-35,-1],[-32,0],[-33,-1],[-96,-2],[-29,-2],[-144,2],[-35,0],[-31,0],[-67,-1],[-40,-1],[-45,0],[-37,0],[-177,0],[-23,0],[-196,0],[-18,1],[-27,-1],[-50,0],[-21,0],[-38,-1],[-7,0],[-20,0],[-95,0],[-50,0],[-20,0],[-20,0],[-189,-1],[-79,0],[-64,2],[-84,3],[-34,1],[-29,1],[-53,2],[-119,-3],[-94,2],[-107,-4],[-21,-1],[-22,-1],[-54,-3],[-16,1],[-18,0],[-119,3],[-55,2],[-34,0],[-29,1],[-31,1],[-19,0],[-31,1],[-223,6],[-31,2],[-172,-5],[-42,-1],[-49,-1],[-32,-2],[-68,3],[-17,0],[-4,0],[-45,-2],[-17,0],[-64,0],[-5,1],[-67,1],[-4,0],[-14,0],[-3,0],[-11,1],[-16,0],[-26,0],[-78,0],[-49,0],[-55,0]],[[42310,64856],[0,-37],[0,-38],[0,-40],[0,-40],[0,-88],[-1,-93],[0,-34],[0,-37],[0,-50],[0,-58],[0,-44],[-1,-42],[0,-36],[0,-32],[0,-56],[-1,-49],[0,-30],[0,-51],[0,-34],[-1,-48],[-1,-95],[0,-34],[0,-50],[0,-31],[0,-134],[0,-274],[-1,-48],[0,-71],[0,-35],[0,-36],[1,-36],[-2,-30],[0,-45],[-1,-38],[1,-32],[0,-45],[-1,-53],[0,-47],[0,-58],[-1,-427],[0,-32],[-1,-55],[0,-34],[0,-35],[1,-44],[-1,-52],[0,-44],[0,-106],[0,-30],[0,-46],[1,-51],[1,-31],[-1,-41],[-1,-29],[-1,-11],[-1,-19],[2,-46],[-1,-100],[1,-37],[-1,-66],[0,-38],[0,-46],[0,-91],[0,-31],[0,-71],[0,-43],[-1,-34],[1,-116],[0,-17],[0,-55],[0,-40],[-1,-53],[0,-62],[0,-46],[0,-2],[0,-33],[0,-122],[0,-57],[0,-40],[0,-17],[0,-116],[0,-31],[0,-65],[0,-45],[0,-46],[0,-61],[0,-63],[-1,-55],[1,-46],[0,-53],[0,-58],[0,-1],[0,-30],[-1,-31],[0,-42],[0,-44],[0,-31],[0,-32],[0,-88],[0,-54],[0,-73],[0,-368],[0,-37],[0,-74],[0,-38],[0,-82],[0,-51],[0,-46],[0,-45],[0,-38],[0,-50],[0,-35],[0,-40],[0,-86],[0,-38],[0,-38],[0,-39],[0,-39],[0,-32],[0,-31],[0,-41],[0,-43],[0,-46],[0,-160],[-1,-124],[0,-54],[0,-33],[0,-32],[0,-46],[0,-43],[0,-52],[0,-43],[0,-102],[0,-42],[0,-40],[0,-39],[1,0],[7,0],[4,0],[14,0],[17,1],[13,-1],[19,0],[25,0],[27,-1],[14,1],[1,-1],[10,-10],[-1,-35],[0,-46],[0,-37],[0,-35],[0,-81],[0,-34],[0,-41],[0,-46],[0,-48],[0,-31],[0,-42],[0,-30],[0,-32],[0,-31],[0,-70],[0,-69],[0,-39],[0,-34],[0,-47],[-1,-36],[0,-41],[0,-57],[0,-48],[0,-34],[0,-46],[0,-33],[1,-69],[0,-65]],[[42447,55897],[-23,0],[-16,0],[-25,0],[-33,1],[-6,0],[-9,0],[-21,0],[-17,0],[-24,0],[-22,1],[-33,0],[-16,0],[-15,0],[-33,0],[-16,0],[-21,0],[-19,0],[-32,0],[-34,0],[-14,0],[-41,1],[-21,0],[-23,1],[-14,0],[-18,0],[-13,0],[-24,0],[-18,0],[-12,1],[-18,3],[-117,0],[-136,1],[-37,-1],[-19,-1],[-44,-1],[-15,-1],[-34,-2],[-48,1],[-99,1],[-12,0],[-42,1],[-38,0],[-166,3],[-36,0],[-51,-1],[-19,0],[-35,0],[-85,-8],[-79,-3],[-28,-1],[-23,0],[-42,0],[-5,0],[-115,1],[-124,2],[-85,0],[-31,2],[-35,1],[-26,0],[-9,0],[-45,-1],[-16,-1],[-30,1],[-33,0],[-33,-1],[-13,1],[-19,0],[-12,1],[-1,-60],[-1,-40],[-1,-85],[-1,-44],[-1,-31],[0,-40],[1,-29],[0,-58],[0,-36],[1,-329],[0,-78],[0,-35],[0,-30],[0,-57],[1,-234],[0,-31],[0,-61],[0,-73],[0,-139],[-1,-69],[0,-61],[0,-61],[0,-38],[0,-327],[0,-45],[0,-57],[-1,-37],[1,-314],[0,-76],[-30,-2],[-31,0],[-35,-2],[-18,0],[-19,1],[-63,-1],[-107,1],[-112,-2],[-49,2],[-19,0],[-19,1],[-14,0],[-58,1],[-19,1],[-27,0],[-29,0],[-33,1],[-18,0],[-62,-1],[-25,0],[-40,1],[-49,0],[-31,0],[-25,0],[-29,2],[-30,0],[-42,-2],[-27,0],[-18,0],[-61,0],[-47,0],[-32,0],[-17,0],[-61,-1],[-4,0],[-18,0],[-18,1],[-16,-1],[-22,1],[-39,-1],[-24,-1],[-17,1],[-41,1],[-18,1],[-13,0],[-84,2],[-28,1],[-14,0],[-14,0],[-18,0],[-20,1],[-13,0],[-81,5],[-30,0],[-19,1],[-12,0],[-178,6],[-17,0],[-64,0],[-71,0],[-24,-1],[-218,-3],[-6,0],[-34,0],[-19,0],[-40,0],[-21,0],[-16,0],[-22,-1],[-19,0],[-29,0],[-16,0],[-25,0],[-18,0],[-26,1],[-33,0],[-9,-1],[-12,0],[-29,0],[-34,0],[-36,1],[-14,0],[-51,0],[-48,0],[-53,0],[-13,0],[-40,0],[-2,0],[-35,-1],[-64,1],[-22,0],[-68,0],[-13,0],[-46,0],[-26,1],[-16,0],[-52,0],[-13,0],[-39,0],[-13,0],[-15,0],[-29,1],[-49,0],[-36,1],[-12,0],[-28,1],[-38,-1],[-35,0],[-12,0],[-12,1],[-19,0],[-51,0],[-41,0],[-22,1],[-13,0],[-5,0],[-10,0],[-68,0],[-45,0],[-16,0],[-32,0],[-31,0],[-37,0],[-13,0],[-48,0],[-25,1],[-55,-1],[-29,1],[-31,-1],[-45,0],[-13,1],[-39,0],[-49,0],[-18,0],[-13,0],[-20,0],[-36,0],[-1,0],[-17,0],[-22,0],[-26,0],[-17,-1],[-18,1],[-19,-1],[-34,-2],[-173,3],[-33,0]],[[35024,53344],[0,226],[0,491],[0,4194],[0,899],[0,1024],[0,2699],[0,2003],[0,1994]],[[74454,59742],[-1,-72],[-1,-95],[-1,-76],[-2,-169],[2,-55],[-1,-32],[0,-84],[-1,-59],[0,-65],[0,-167],[-3,-414],[0,-49],[0,-57],[-3,-345],[-1,-32],[-1,-226],[0,-30],[-1,-179],[1,-305],[-1,-86],[0,-44],[-3,-150],[-2,-53],[0,-32],[0,-2],[-1,-30],[-1,-39],[-1,-38],[-2,-81],[-2,-103],[-1,-36],[0,-9],[-1,-25],[-3,-141],[-2,-115],[-5,-205],[-1,-113],[-1,-45],[0,-55],[1,-73],[0,-67],[0,-51],[0,-166],[0,-80],[0,-1],[-1,-39],[-3,-236],[0,-114],[-2,-33],[0,-88],[-2,-106],[-1,-72],[-1,-71],[-1,-49],[1,-46]],[[74405,54537],[-23,0],[-40,0],[-21,0],[-15,0],[-13,0],[-13,0],[-12,0],[-17,0],[-20,0],[-42,0],[-15,0],[-39,-1],[-25,0],[-22,0],[-25,0],[-25,1],[-18,0],[-22,-1],[-18,0],[-30,0],[-32,0],[-25,1],[-26,0],[-21,0],[-1,0],[-21,0],[-38,0],[-23,1],[-22,1],[-18,0],[-14,0],[-42,0],[-28,1],[-37,-2],[-94,-1],[-61,1],[-18,1],[-65,1],[-47,0],[-15,0],[-29,2],[-31,-1],[-43,1],[-30,0],[-59,1],[-41,0],[-31,0],[-18,0],[-18,1],[-82,0],[-17,0],[-14,1],[-19,0],[-21,-1],[-27,1],[-56,1],[-28,0],[-23,0],[-24,0],[-43,1],[-32,1],[-28,0],[-18,1],[-20,0],[-38,1],[-30,1],[-51,-1],[-16,1],[-26,1],[-23,-1],[-26,1],[-55,0],[-12,0],[-14,1],[-22,0],[-15,0],[-50,0],[-60,1],[-29,0],[-19,1],[-49,0],[-40,1],[-27,0],[-57,0],[-17,0],[-61,0],[-49,1],[-31,0],[-12,0],[-16,0],[-35,0],[-18,-1],[-20,0],[-28,1],[-38,0],[-17,0],[-16,0],[-13,0],[-25,0],[-16,0],[-15,0],[-14,-1],[-13,0],[-21,1],[-22,1],[-19,0],[-18,0],[-37,1],[-63,0],[-14,0],[-17,0],[-18,0],[-27,0],[-14,0],[-16,0],[-13,0],[-25,0],[-19,0],[-18,0],[-22,1],[-14,-1],[-12,0],[-28,3],[-21,0],[-14,-1],[-13,0],[-104,-2],[-24,0],[-33,0],[-36,1],[-14,0],[-49,0],[-22,0],[-12,0],[-24,0],[-15,0],[-12,0],[-19,0],[-21,0],[-15,1],[-23,-1],[-18,0],[-28,1],[-33,0],[-15,0],[-62,2],[-38,0],[-55,0],[-17,-1],[-35,-2],[-15,1],[-33,1],[-16,0],[-22,2],[-15,-4],[-22,0],[-20,0],[-21,0],[-16,1],[-27,-1],[-5,1],[-10,0],[-47,-1],[-2,0],[-10,0],[-13,0],[-14,0],[-32,0],[-14,0],[-21,2],[-45,-1],[-14,0],[-24,0],[-57,0],[-13,0],[-81,1],[-17,-2],[-13,0],[-31,1],[-16,-1],[-36,1],[-33,0],[-18,0],[-17,0],[-23,0],[-21,0],[-16,0],[-15,0],[-18,0],[-18,0],[-31,-1],[-21,0],[-16,0],[-17,0],[-29,1],[-15,0],[-24,0],[-35,-1],[-20,1],[-25,0],[-24,0],[-16,0],[-21,-1],[-13,1],[-13,1],[-16,-1],[-4,0],[-67,-1],[-40,1],[-98,0],[-28,1],[-92,1],[-28,-1],[-13,0],[-13,3],[-14,3],[-14,1],[-14,3],[-16,3],[-23,-1],[-9,0],[-9,-1],[-25,0],[-12,0],[-17,1],[-12,0],[-25,0],[-38,0]],[[68380,54574],[0,66],[-1,86],[0,5],[0,54],[0,55],[0,21],[-1,53],[0,86],[0,32],[0,52],[0,97],[1,117],[0,47],[0,71],[0,5],[0,165],[0,58],[-1,45],[1,56],[0,61],[0,37],[0,153],[0,87],[0,55],[0,82],[0,53],[0,52],[0,35],[0,37],[0,35],[0,54],[0,84],[0,50],[0,36],[0,44],[0,34],[0,69],[0,40],[0,36],[0,36],[0,40],[0,36],[0,47],[-1,37],[0,44],[6,27],[0,41],[0,31],[0,41],[1,35],[-1,74],[2,141],[-1,47],[0,57],[0,48],[0,34],[0,41],[-1,35],[0,31],[0,37],[0,147],[-2,211],[1,91],[0,43],[-2,76],[1,33],[0,53],[0,34],[0,44],[0,62],[0,86],[0,33],[-1,47],[-1,42],[0,38],[0,41],[-1,60],[1,75],[0,44],[0,172],[0,121],[0,44],[0,80],[0,33],[0,34],[0,44],[0,71],[-1,47],[-1,164],[0,37],[0,43],[0,95],[0,33],[0,4],[2,25],[0,88],[-1,36],[1,41],[0,76],[0,35],[0,132],[0,5],[0,60],[1,46],[0,86],[0,49],[0,32],[1,69],[0,34],[-1,61],[1,110],[0,61],[0,49],[0,47],[0,39],[0,36],[1,70],[0,89],[0,79],[0,39],[0,22],[0,17],[0,71],[0,7],[0,23],[1,97],[-1,106],[0,31],[0,70],[0,74],[0,40],[-1,86]],[[84423,66161],[1,-221],[0,-44],[0,-48],[0,-104],[1,-53],[-1,-63],[0,-112],[0,-33],[0,-45],[0,-47],[0,-45],[0,-39],[0,-37],[0,-33],[0,-39],[-1,-82],[0,-55],[0,-67],[0,-68],[0,-53],[0,-42],[0,-59],[0,-34],[0,-30],[1,-69],[0,-11],[-1,-34],[0,-37],[0,-57],[0,-45],[0,-99],[0,-31],[0,-38],[1,-36],[-1,-51],[0,-33],[1,-68],[0,-44],[0,-36],[-1,-49],[-1,-275],[-1,-105],[3,-81],[1,-29],[-4,-35],[2,-74],[0,-38],[0,-97],[0,-77],[0,-53],[0,-33],[0,-41],[-1,-67],[0,-46],[1,-49],[-1,-38],[0,-41],[0,-44],[0,-15],[0,-175],[0,-44],[0,-95],[0,-60],[0,-55],[21,0],[19,1],[19,0],[21,0],[12,-1],[16,0],[12,1],[23,0],[28,0],[18,0],[13,0],[35,1],[39,0],[15,-1],[20,0],[24,0],[19,1],[13,0],[21,0],[17,0],[16,0],[34,-1],[18,0],[18,0],[19,0],[19,0],[13,0],[18,0],[14,1],[15,0],[21,-1],[10,-37],[0,-47],[0,-63],[0,-48],[0,-44],[0,-55],[0,-69],[0,-64],[0,-66],[-1,-44],[1,-42],[0,-42],[0,-38],[0,-48],[-1,-124],[0,-148],[0,-1],[-1,-84],[0,-6],[1,-35],[0,-20],[0,-59],[0,-111],[0,-50],[0,-39],[2,-181],[3,-158],[1,-193],[0,-56],[0,-123],[0,-47],[-2,-183],[-2,-187],[0,-60],[0,-34],[0,-266],[0,-99],[0,-136],[0,-64],[0,-55],[0,-49],[0,-40],[-1,-55],[0,-43],[0,-19],[0,-28],[0,-49],[0,-49],[0,-77],[0,-86],[0,-40],[-1,-47],[0,-35],[0,-28],[-2,-266],[2,-147],[0,-62],[0,-30],[0,-38],[0,-66],[0,-51],[0,-40],[0,-119],[2,-67],[0,-163],[1,-217]],[[85044,57167],[-24,0],[-16,0],[-173,2],[-14,-5],[-12,1],[-18,0],[-42,-1],[-15,1],[-27,0],[-23,0],[-38,0],[-17,0],[-17,6],[-161,-5],[-86,-2],[-71,-3],[-13,0],[-12,1],[-16,2],[-13,-2],[-14,2],[-70,-2],[-18,0],[-90,0],[-14,1],[-12,5],[-13,2],[-14,-7],[-15,0],[-15,1],[-13,-1],[-27,1],[-15,-1],[-17,0],[-21,1],[-18,-1],[-12,1],[-16,-1],[-20,1],[-13,0],[-22,0],[0,-48],[0,-46],[0,-226],[0,-47],[0,-55],[0,-36],[0,-261],[0,-166],[0,-38],[0,-48],[-1,-54],[0,-51],[0,-54],[0,-48],[-1,-56],[0,-38],[0,-39],[0,-2],[0,-30],[0,-36],[0,-37],[0,-45],[0,-38],[-1,-32],[1,-54],[0,-40],[0,-108],[-3,-131],[0,-89],[-2,-174],[0,-41],[0,-23],[0,-43],[-2,-116],[-2,-185],[-1,-56],[-14,0],[-183,-5],[-87,-3],[-53,1],[-2,0],[-37,1],[-15,0],[-27,1],[-19,-1],[-51,-1],[-32,-1],[-75,-1],[-14,-1],[0,-88],[0,-132],[0,-31],[0,-49],[0,-168],[0,-13],[0,-53],[0,-69],[0,-40],[0,-76],[0,-77],[-1,-60],[0,-61],[0,-21],[0,-16],[0,-31],[0,-79],[3,-38],[0,-59],[0,-62],[0,-59],[1,-66],[0,-36],[0,-32],[0,-37],[0,-39],[0,-88],[0,-31],[0,-63],[0,-37],[-3,-31],[0,-186],[0,-97],[0,-94],[-1,-31],[0,-29],[0,-46],[0,-55],[1,-126],[0,-122],[0,-38],[-30,-1],[-20,-1],[-13,1],[-1,0],[-28,1],[-41,0],[-42,0],[-33,-1],[-14,0],[-2,0],[-38,1],[-45,0],[-124,-2],[-67,-1],[-53,4],[-66,-1],[-37,0],[-17,-1],[-14,1],[-11,0],[-12,0],[-12,1],[-19,0],[-30,0],[-16,0],[-18,0],[-9,0],[-13,0],[-23,0],[-30,0],[-29,1],[-13,0],[-13,0],[-13,0],[-34,0],[-10,0],[-2,0],[-36,0],[-13,0],[-27,0],[-39,1],[-19,0],[-7,0],[-27,0],[-19,-1],[-30,1],[-24,0]],[[81913,52000],[-45,1],[-56,1],[-15,0],[-15,-2],[-24,-1],[-53,0],[-10,0],[-2,0],[-1,0],[-32,0],[-25,1],[-19,0],[-14,-1],[-30,0],[-29,1],[-19,0],[-18,1],[-8,0],[-11,0],[-28,-1],[-15,0],[-27,5],[-21,0],[-54,0],[-26,-2],[-20,1],[-21,1],[-26,0],[-65,2],[-14,-6],[-21,-1],[-32,2],[-23,0],[-12,-2],[-13,-2],[-13,-1],[-16,2],[-28,2],[-22,1],[-20,-1],[-9,0],[-28,0],[-48,0],[-37,-2],[-27,0],[-12,0],[-12,3],[-4,1],[-16,0],[-15,0],[-16,-4],[-11,1],[-13,1],[-13,0],[-35,0],[-1,51],[0,41],[0,86],[0,35],[1,53],[0,10],[-1,35],[0,55],[0,38],[0,59],[-1,70],[-1,65],[0,44],[0,30],[0,35],[1,104],[-1,30],[1,40],[0,33],[-1,57],[1,31],[-1,58],[0,34],[1,43],[-1,33],[0,36],[0,31],[1,30],[1,54],[-1,32],[1,46],[0,41],[0,35],[0,24],[0,16],[-1,59],[0,34],[0,37],[0,54],[0,36],[0,37],[0,65],[0,30],[0,51],[0,34],[0,53],[0,139],[0,104],[0,82],[-1,121],[1,46],[0,54],[0,77],[0,56],[0,103],[0,81],[0,73],[0,41],[0,174],[-1,273],[-1,155],[-1,54],[2,128],[1,81],[-1,46],[0,33],[-1,48],[0,36],[0,57],[1,105],[0,55],[0,295],[0,87],[-1,101],[0,272],[0,47],[0,77],[0,36],[0,33],[-14,0],[-32,0],[-43,0],[-34,0],[-66,-1],[-16,0],[-22,-1],[-23,0],[-25,0],[-12,-1],[-12,-1],[-6,0],[-31,-1],[-19,0],[-18,-1],[-18,0],[-15,0],[-4,0],[-11,1],[-16,5],[-17,0],[-13,0],[-26,0],[-77,0],[-13,0],[-13,0],[-12,0],[-3,0],[-9,-1],[-35,-1],[-16,-1],[-18,0],[-20,2],[-18,-3],[-18,0],[-66,0],[-13,0],[-52,0],[-22,-1],[-18,0],[-17,0],[-37,0],[-36,0],[-11,0],[-16,0],[-88,0],[-85,-1],[-19,0],[0,153],[0,47],[1,272],[0,66],[0,68],[0,81],[0,67],[0,103],[1,280],[0,39],[0,72],[0,38],[0,3],[0,195],[0,73],[0,99],[0,53],[1,31],[0,43],[0,46],[0,49],[0,30],[2,31],[0,38],[-1,178],[0,33],[0,149],[0,55],[-1,29],[0,1],[0,50],[0,1],[0,31],[0,29],[0,41]],[[91874,59738],[1,-91],[0,-166],[1,-150],[-3,-143],[4,-332],[-1,-52],[1,-31],[0,-97],[0,-24],[-1,-17],[1,-74],[0,-57],[0,-37],[0,-76],[-3,-99],[0,-162],[1,-110],[-1,-179],[0,-205],[0,-185],[0,-138],[0,-40],[-1,-33],[0,-73],[-58,0],[0,-14],[0,-74],[0,-31],[0,-60],[0,-69],[0,-107],[1,-43],[0,-41],[0,-100],[0,-45],[0,-67],[0,-91],[50,-130],[6,-25],[3,-13],[2,-7],[7,-40],[3,-15],[1,-9],[8,-77],[9,-59],[1,-5],[9,-61],[31,-138],[5,-18],[45,-123],[33,-65],[88,-175],[68,-143],[39,-82],[15,-31],[13,-42],[5,-14],[1,-7],[9,-59],[23,-107],[16,-75],[18,-67],[22,-85],[10,-119],[7,-44],[12,-45],[29,-59],[6,-11],[10,-15],[22,-16],[26,-8],[4,-6],[13,11],[15,15],[12,23],[15,27],[14,18],[15,17],[14,21],[13,21],[14,15],[17,5],[20,3],[13,0],[22,-31],[110,-152]],[[92779,54423],[-39,-147],[-52,-194],[-54,40],[-8,5],[-54,-42],[-56,-96],[-29,-95],[-1,-4],[-11,-54],[-4,-21],[-28,-143],[-9,-54],[-11,-33],[-2,-14],[-4,-23],[0,-51],[-21,-92],[-23,-48],[-8,-25],[-5,-52],[-1,-44],[11,-82],[-5,-75],[-12,-112],[-24,-159],[-6,-6],[-14,-12],[-13,-6],[-64,-88],[-59,-83],[-9,-20],[-8,-24],[-18,-50],[-8,-33],[-8,-29],[-6,-27],[-8,-35],[-14,-53],[-15,-51],[-8,-33],[-4,-22],[-3,-17],[-9,-37],[-5,-27],[-7,-26],[-22,-77],[-9,-29],[-11,-27],[-9,-24],[-9,-20],[-22,-63],[-14,-25],[-24,3],[-17,38],[-6,33],[-8,23],[-10,32],[-9,16],[-9,17],[-19,32],[-15,18],[-17,17],[-17,9],[-14,3],[-19,-3],[-13,-3],[-13,-6],[-12,-11],[-21,-21],[-15,-18],[-12,-12],[-19,-35],[-14,-15],[-13,-12],[-15,-17],[-30,-41],[-65,-68],[-24,-41],[-11,-23],[-8,-28],[-2,-42],[10,-26],[13,-26],[45,-70],[11,-9],[16,-6],[26,-1],[16,-10],[11,-8],[13,-12],[27,-33],[31,-55],[10,-28],[6,-31],[-1,-34],[-5,-37],[-12,-73],[-14,-83],[-22,-55],[-23,-24],[-15,0],[-13,-2],[-23,46],[-22,44],[-41,59],[-25,21],[-39,28],[-27,14],[-24,0],[-26,-8],[-26,-18],[-33,-48],[-26,-59],[-19,-59],[-8,-25],[-13,-50],[-14,-63],[-7,-37],[-4,-42],[3,-69],[12,-49],[17,-56],[18,-84],[20,-87],[9,-44],[6,-37],[6,-28],[6,-31],[13,-61],[9,-50],[0,-3],[16,-103],[0,-4],[1,-26],[4,-29],[4,-98],[-3,-30],[-13,-105],[-16,-50],[-21,-49],[-17,-25],[-14,-6],[-31,4],[-25,28],[-39,59],[-25,21],[-33,10],[-39,1],[-25,-20],[-12,-10],[-3,-67],[-6,-81],[-30,-184],[-33,-107],[-82,-220],[-15,-33],[-16,-33],[-31,-48],[-31,-47],[-31,-44],[-15,-29],[-2,-15],[-65,-95],[-26,-51],[-16,-22],[-18,-37],[-8,-25],[-18,-37],[-29,-31],[-9,-9],[-7,-8],[-31,-39],[-9,-19],[-28,4],[-37,47],[-22,16],[-40,38],[-24,25],[-15,13],[-60,96],[-17,62],[-9,23],[-10,30],[-10,27],[-10,35],[-8,24],[-12,38],[-10,32],[-12,33],[-7,24],[-10,28],[-12,37],[-9,22],[-13,31],[-10,23],[-10,21],[-15,35],[-11,27],[-17,29],[-26,54],[-14,29],[-14,30],[-9,26],[-16,30],[-1,2],[-14,21],[-13,15],[-12,18],[-16,18],[-21,26],[-16,21],[-19,21],[-14,23],[-19,27],[-17,15],[-21,8],[-11,6],[-20,12],[-12,3],[-13,3],[-11,3],[-12,3],[-13,0],[-13,0],[-11,-6],[-26,-6],[-20,-6],[-38,-25],[-101,-52],[-38,-19],[-14,-10],[-20,-15],[-12,-12],[-18,-20],[-13,-18],[-12,-14],[-35,29],[-26,-110]],[[89340,49527],[0,36],[0,73],[0,75],[-1,121],[0,47],[-1,159],[-1,307],[0,369],[1,103],[0,58],[0,246],[0,166],[1,70],[1,37],[0,69],[0,61],[0,51],[1,88],[1,144],[-1,65],[-2,76],[-1,329],[0,289],[0,183],[1,88],[-1,54],[1,52],[0,133],[0,94],[0,55],[0,70],[0,37],[0,43],[0,35],[0,94],[0,33],[-1,48],[1,61],[-1,32],[0,41],[0,45],[0,86],[0,84],[0,43],[0,43],[0,23],[0,16],[0,37],[0,50],[0,312],[0,31],[0,46],[0,43],[0,2],[0,52],[0,57],[0,1],[1,81],[-1,70],[0,62],[0,105],[0,56],[0,51],[0,41],[0,39],[0,46],[0,38],[0,76],[0,39],[0,55],[0,191],[0,115],[0,425],[0,33],[0,70],[1,35],[-1,36],[1,89],[-1,44],[0,40],[1,88],[-1,108],[-1,114],[-1,108],[0,137],[0,26],[0,24],[0,33],[-12,14],[-36,0],[-54,-1],[-49,-11],[-54,-1],[-22,0],[-31,0],[-25,-2],[-34,1],[-15,1],[-18,0],[-12,0],[-17,-1],[-14,1],[-14,0],[-18,0],[-32,0],[-15,0],[-17,0],[-40,0],[-23,0],[-13,0],[-48,4],[-2,0],[-89,0],[-231,-1],[-45,0],[-192,-1],[-67,0],[-111,-1],[-82,-1],[-69,0],[-21,0],[-27,0],[-16,0],[-3,0],[-19,1],[-13,4],[-38,-1],[-65,0],[-9,0],[-2,0],[-20,-1],[-47,0],[-2,0],[-14,0],[-12,2],[-7,0],[-28,-1],[-14,-4],[-13,0],[-15,0],[-24,-1],[-19,0],[-19,0],[-17,0],[-19,0],[-19,0],[-15,0],[-28,0],[-13,-1],[-18,1],[-37,0],[-28,0],[-28,-1],[-22,1],[-66,-1],[-14,0],[-23,0],[-23,0],[-15,0],[-47,0],[-22,0],[-23,0],[-24,0],[-14,0],[-21,0],[-32,0],[-21,-1],[-33,0],[-30,0],[-18,0],[-19,1],[-19,0],[-18,0],[-17,0],[-20,0],[-19,0],[-38,0],[-21,0],[-20,0],[-14,0],[-26,0],[-20,0],[-17,0],[-21,0],[-19,0],[-17,0],[-43,0],[-51,0],[-15,0],[-43,0],[-37,0],[-22,0],[-21,0],[-23,0],[-13,0],[-21,0],[-28,0],[-25,0],[-18,0],[-39,0],[-12,0],[-28,0],[-15,0],[-34,1],[-27,-1],[-24,0],[-30,0],[-12,0],[-23,0],[-14,0],[-14,0],[-15,0],[-14,0],[-25,1],[-20,0],[-25,-1],[-12,0],[-12,0],[-13,1],[-14,-1],[-20,1],[-21,0],[-13,-1],[-24,1],[-16,0],[-48,-1],[-14,0],[-34,0],[-15,1],[-24,-1],[-25,0],[-16,0],[-15,0],[-29,0],[-15,0],[-16,-1],[-19,0],[-13,1],[-16,1],[-13,0],[-12,0],[-23,-1],[-54,1],[-15,0],[-57,2]],[[51091,57161],[0,-20],[0,-13],[0,-61],[-1,-125],[-1,-215],[1,-20],[0,-22],[0,-81],[0,-59],[0,-31],[0,-59],[-1,-99],[1,-58],[0,-207],[0,-220],[0,-58],[0,-50],[0,-43],[0,-62],[-1,-82],[0,-39],[0,-34],[-1,-32],[-7,-26],[10,-29],[-1,-181],[0,-50],[0,-170],[0,-78],[-1,-137],[1,-74],[1,-65],[0,-48],[-2,-32]],[[51089,54581],[-34,3],[-32,3],[-16,0],[-17,0],[-29,2],[-17,-1],[-36,-1],[-26,1],[-117,-1],[-28,0],[-14,0],[-14,0],[-17,0],[-17,-1],[-37,0],[-31,0],[-15,0],[-15,0],[-50,0],[-29,1],[-26,-1],[-14,1],[-27,0],[-13,0],[-22,0],[-54,0],[-23,-1],[-13,1],[-22,-1],[-17,0],[-17,1],[-42,0],[-12,0],[-14,0],[-40,0],[-19,-1],[-21,0],[-43,1],[-29,0],[-21,0],[-16,0],[-12,0],[-12,1],[-6,-1],[-7,0],[-14,0],[-22,0],[-19,0],[-16,0],[-18,1],[-12,-1],[-9,0],[-21,1],[-22,0],[-24,1],[-19,0],[-18,0],[-42,1],[-13,0],[-41,1],[-45,1],[-13,0],[-18,1],[-34,0],[-18,0],[-18,0],[-42,1],[-17,0],[-85,-3],[-23,0],[-106,6],[-20,0],[-18,0],[-143,2],[-22,0],[-13,0],[-21,-1],[-36,1],[-13,0],[-129,5],[-30,0],[-37,1],[-14,0],[-15,-3],[-13,0],[-70,3],[-20,1],[-18,0],[-12,0],[-14,0],[-14,0],[-18,0],[-23,-1],[-18,1],[-13,0],[-16,0],[-16,-1],[-18,1],[-25,1],[-14,-1],[-37,0],[-17,-1],[-9,0],[-3,0],[-22,1],[-44,0],[-12,-1],[-28,1],[-15,0],[-17,0],[-13,0],[-16,0],[-19,0],[-24,0],[-60,0],[-60,-1],[-47,0],[-48,0],[-12,1],[-39,-1],[-9,0],[-14,0],[-21,1],[-15,0],[-60,0],[-14,0],[-41,0],[-12,1],[-61,0],[-16,1],[-37,-1],[-55,0],[-25,1],[-24,-1],[-18,0],[-15,0],[-27,0],[-48,0],[-23,1],[-33,0],[-15,0],[-57,0],[-33,0],[-13,0],[-14,0],[-23,0],[-26,0],[-31,1],[-64,0],[-15,0],[-14,0],[-2,0],[-15,0],[-16,0],[-12,0],[-17,0],[-14,0],[-42,0],[-27,0],[-35,0],[-13,0],[-17,-1],[-40,0],[-15,0],[-19,1],[-5,0],[-13,0],[-19,0],[-23,-1],[-53,0],[-20,0],[-12,1],[-24,0],[-16,0],[-16,-1],[-41,1],[-19,0],[-23,-1],[-23,1],[-40,-1],[-23,0],[-15,0],[-20,0],[-12,0],[-36,0],[-32,0],[-18,1],[-16,-1],[-21,1],[-23,0],[-15,0],[-29,0],[-13,0],[-12,0],[-32,0],[-22,0],[-15,0],[-28,0],[-28,0],[-12,0],[-17,0],[-17,0],[-14,0],[-136,1],[-184,6],[-28,-6],[-19,0],[-14,1],[-13,-4],[-63,2],[-47,1],[-44,1],[-29,0],[-43,-2],[-26,2],[-61,1],[-13,0],[-64,3],[-50,0],[-21,0],[-59,1],[-16,0],[-9,0],[-18,0],[-14,1],[-23,0],[-77,1],[-95,-1],[-90,-1],[-120,2],[-128,4],[-75,-2],[-162,-3],[-53,-3],[-96,1],[-16,0],[-55,0],[-32,1],[-28,0],[-22,0],[-20,0],[-33,0],[-13,0],[-35,-1],[-30,1],[-21,-1],[-36,0],[-14,-1],[-105,4],[-4,0],[-54,-2],[-30,0],[-19,0],[-30,0],[-24,0],[-42,0],[-17,0],[-26,0],[-14,0],[-25,0],[-25,-1],[-31,0],[-29,0],[-15,0],[-49,0],[-32,0],[-17,0],[-18,0],[-13,0],[-52,0],[-15,0],[-23,-1],[-28,-1],[-18,0],[-19,1],[-12,-1],[-16,0],[-35,0],[-13,0],[-20,0],[-24,1],[-26,-1],[-19,0],[-20,0],[-16,0],[-20,0],[-16,1],[-24,0],[-38,0],[-13,-1],[-12,0],[-15,0],[-17,0],[-1,0],[-18,0],[-20,1],[-18,-1]],[[42446,54613],[0,33],[0,42],[0,63],[0,31],[0,33],[0,9],[0,25],[0,41],[0,33],[0,31],[1,52],[-1,35],[0,52],[0,51],[0,81],[1,54],[-1,38],[1,39],[-1,66],[0,49],[1,39],[0,51],[0,38],[0,32],[0,41],[-1,35],[1,45],[-1,30],[1,80],[0,3],[0,32]],[[62164,62310],[2,-439],[0,-215],[0,-215],[-1,-226],[0,-202],[-1,-233],[0,-197],[1,-165],[0,-32],[0,-43],[0,-126],[0,-61],[0,-242],[0,-189],[0,-93],[0,-7],[-2,-334],[0,-428],[0,-431],[1,-123],[-1,-106],[0,-68],[-1,-128],[2,-108],[1,-43],[0,-38],[1,-27],[0,-38],[-2,-64],[-1,-52],[-2,-61],[2,-145],[0,-102],[-1,-75],[3,-109],[19,-3],[12,3],[1,-411],[0,-17],[0,-45],[0,-94],[0,-51],[0,-8],[0,-444],[0,-14],[0,-41],[0,-163],[-1,-319],[0,-109],[0,-74],[0,-126],[0,-15],[-1,-80],[0,-46],[1,-43],[-1,-35],[0,-102],[0,-36],[0,-39],[0,-27],[1,-15],[0,-62],[0,-3],[-1,-76],[1,-68],[0,-1],[-1,-117],[0,-4],[0,-237],[0,-55],[-1,-23],[0,-30],[1,-325],[0,-65],[-2,-241],[0,-39],[2,-151],[1,-431],[0,-233],[0,-42],[0,-38],[0,-32],[0,-40],[0,-43],[-1,-176],[0,-70],[0,-45],[2,-66],[0,-2],[0,-63]],[[62197,52013],[-1,-157],[-1,-82],[0,-192],[-1,-212],[0,-145],[1,-73],[-1,-96],[-1,-232]],[[62193,50824],[0,-32]],[[62193,50792],[-25,9],[-25,4],[-32,-6],[-19,-11],[-21,-19],[-23,-23],[-22,-9],[-18,-17],[-18,-23],[-11,-18],[-18,-35],[-12,-26],[-15,-27],[-17,-29],[-14,-21],[-15,-10],[-24,-11],[-12,-7],[-5,-2],[-10,-6],[-7,-6],[-9,-7],[-13,-7],[-18,-16],[-12,-5],[-21,-2],[-19,2],[-19,8],[-10,24],[-5,34],[-6,36],[-6,10],[-11,17],[-26,8],[-59,-38],[-14,-20],[-2,-3],[-52,-65],[-14,-6],[-11,-7],[-13,-5],[-13,-3],[-12,-5],[-20,-2],[-18,0],[-26,15],[-14,18],[-8,12],[-3,5],[-1,1],[-8,10],[-17,32],[-1,3],[-47,106],[-13,40],[-45,85],[-52,97],[-43,57],[-7,10],[-17,42],[-7,-8],[-13,-12],[-50,-10],[-51,-13],[-34,-23],[-22,-16],[-47,-46],[-14,-23],[-32,-34],[-25,-16],[-68,64],[-37,45],[-2,2],[-38,20],[-27,7],[-11,10],[-11,22],[-17,14],[-69,20],[-23,-5],[-58,-32],[-11,-11],[-30,-61],[-39,-57],[-31,-19],[-41,-24],[-32,-16],[-2,-1],[-30,-10],[-17,-4],[-12,-8],[-17,-12],[-18,14],[-16,27],[-21,31],[-22,32],[-22,40],[-14,9],[-12,19],[-14,31],[-19,28],[-13,47],[-8,37],[-2,12],[-2,33],[0,10],[-2,28],[-20,118],[-51,305],[-63,24],[-10,5],[-11,-11],[-31,-105],[-20,-47],[-29,-64],[-31,-68],[-37,-82],[-11,20],[-13,23],[-20,9],[-23,-6],[-11,-11],[-13,-35],[0,-40],[-5,-54],[-14,-27],[-9,-7],[-4,-3],[-5,0],[-8,1],[-12,1],[-13,13],[-12,22],[-13,23],[-17,26],[-14,15],[-15,16],[-20,24],[-11,17],[-12,38],[-5,34],[-6,30],[-13,39],[-20,2],[-15,-7],[-20,-19],[-21,-6],[-29,1],[-13,1],[-15,9],[-12,17],[-17,28],[-18,39],[-9,26],[-13,23],[-18,38],[-3,9],[-24,77],[-4,13],[3,33],[-1,34],[-1,35],[-4,30],[-4,32],[-3,45],[-11,75],[-8,26],[-13,23],[-18,17],[-22,13],[-58,34],[-15,-27],[-22,-47],[-5,-35],[-9,-53],[8,-59],[-1,-77],[-1,-71],[-1,-55],[-1,-98],[-17,-121],[-19,-102],[-22,-50],[-14,-8],[-31,-27],[-24,-35],[-11,-6],[-27,3],[-22,14],[-49,85],[-86,155],[-18,28],[-49,56],[-23,10],[-31,20],[-15,0],[-48,29],[-26,-2],[-18,0],[-31,-2],[-12,-3],[-23,8],[-16,15],[-15,8],[-12,14],[-38,37],[-8,8],[-21,4],[-12,9],[-17,29],[-8,25],[-9,31],[-1,35],[1,45],[-1,42],[-2,38],[-14,19],[-12,11],[-17,33],[0,7],[5,35],[11,16],[3,11],[-1,12],[-53,1],[-2,0],[-35,1],[-10,0],[-2,1],[-19,0],[-98,3],[-66,-2],[-43,-1],[-13,1],[-14,-1],[-14,3],[-12,-1],[-65,0],[-31,-1],[-56,0],[-18,0],[-17,0],[-17,0],[-50,-1],[-23,0],[-15,0],[-20,0],[-15,0],[-15,-1],[-21,0],[-20,-1],[-20,0],[-12,0],[-34,2],[-16,-1],[-21,-1],[-16,0],[-27,1],[-18,0],[-13,-1]],[[57241,52027],[-12,0],[-30,0],[-23,-1],[-21,0],[-14,0],[-13,0],[-20,-1],[-16,-1],[-16,0],[-37,-1],[-140,-3],[-28,0],[-30,-1],[-11,-2],[-2,0],[-16,1],[-19,1],[-20,-2],[-14,-1],[-31,0],[-257,0],[-51,-5],[-28,-2],[-23,-1],[-54,-1],[-90,-1],[-22,1],[-19,-2],[-14,0],[-24,0],[-16,-2],[-16,1],[-16,-1],[-13,1],[-17,0],[-33,-2],[-19,-1],[-17,-1],[-17,1],[-26,-1],[-25,1],[-14,-1],[-14,-1],[-25,0],[-70,0],[-29,1],[-29,-2],[-24,-1],[-17,0],[-17,0],[-17,0],[-20,0],[-12,0],[-14,-2],[-14,-1],[-12,0],[-13,1],[-25,0],[-20,2],[-15,0],[-14,0],[-13,0],[-17,2],[-14,-1],[-13,0],[-14,1],[-13,0],[-21,1],[-13,-1],[-17,0],[-13,2],[-36,3],[-15,0],[-21,2],[-39,0],[-15,1],[-12,0],[-35,1],[-16,0],[-17,-2],[-21,3],[-17,-1],[-13,1],[-12,-1],[-15,0],[-90,2],[-14,0],[-128,2],[-21,2],[-14,-1],[-16,-3],[-13,2],[0,42],[0,55],[-1,29],[0,64],[1,171],[-1,39],[0,83],[1,109],[-1,47],[0,38],[1,37],[0,32],[0,74],[0,30],[0,37],[0,54],[0,42],[0,221],[0,19],[0,24],[0,30],[0,151],[-1,38],[0,58],[0,38],[0,88],[1,38],[-1,29],[1,62],[0,133],[0,35],[-1,44],[1,95],[0,46],[0,4],[-1,49],[0,61],[1,46],[-1,56],[2,63],[0,148],[0,40],[0,53],[0,67],[0,37],[-1,266],[0,37],[1,46],[0,33],[0,42],[0,31],[0,42],[0,39],[0,88],[0,33],[-1,31],[0,32],[1,69],[-1,80],[0,38],[0,56],[0,41],[0,35],[0,37],[0,51],[0,36],[0,31],[0,46],[0,57],[0,54],[-1,39],[0,32],[0,47],[-1,44],[0,32],[0,2],[0,32],[0,31],[0,111],[-1,87],[0,36],[-2,223],[-17,25],[-1,240],[0,15],[0,37],[-58,7]],[[68380,54574],[0,-47],[0,-37],[0,-32],[0,-42],[-1,-67],[-1,-48],[0,-81],[1,-78],[0,-40],[-1,-59],[0,-54],[-2,-54],[1,-41],[0,-72],[0,-37],[0,-38],[0,-33],[1,-28],[1,-44],[-1,-37],[-4,-58],[0,-42],[1,-59],[0,-38],[0,-38],[-1,-39],[1,-46],[-1,-46],[0,-31],[0,-57],[0,-37],[1,-59],[-1,-40],[-1,-54],[1,-63],[0,-37],[0,-32],[0,-35],[0,-9],[0,-35],[0,-34],[0,-17],[0,-52],[0,-3],[0,-47],[-1,-31],[0,-77],[0,-60],[0,-67],[0,-65],[0,-81],[1,-31],[-2,-42],[-1,-63],[0,-36],[2,-44]],[[68373,52000],[-210,9],[-21,0],[-51,1],[-75,1],[-60,0],[-64,0],[-63,-1],[-78,-1],[-48,1],[-78,1],[-44,0],[-36,0],[-69,0],[-70,0],[-14,0],[-52,5],[-62,1],[-36,0],[-28,1],[-14,0],[-58,1],[-73,0],[-77,0],[-55,-3],[-57,0],[-1,0],[-24,0],[-104,0],[-18,-3],[-43,-3],[-18,2],[-15,1],[-79,0],[-51,-3],[-44,0],[-55,0],[-27,0],[-12,0],[-42,0],[-28,0],[-72,-2],[-59,-1],[-38,0],[-37,0],[-17,0],[-83,6],[-86,6],[-17,-3],[-60,0],[-16,0],[-26,0],[-31,0],[-65,0],[-25,0],[-7,0],[-31,0],[-18,0],[-35,0],[-19,0],[-14,0],[-64,0],[-207,0],[-36,-6],[-7,1],[-42,0],[-94,1],[-26,1],[-2,0],[-14,-1],[-25,-2],[-27,0],[-46,0],[-21,0],[-27,0],[-46,0],[-99,0],[-111,0],[-32,4],[-43,1],[-55,-1],[-78,-1],[-24,-3],[-60,3],[-4,0],[-13,-1],[-13,-2],[-35,3],[-40,0],[-16,0],[-1,0],[-13,0],[-15,0],[-76,0],[-103,0],[-40,0],[-15,0],[-48,0],[-30,0],[-33,0],[-40,0],[-35,0],[-20,0],[-25,0],[-36,0],[-20,0],[-20,0],[-51,-3],[-41,0],[-15,0],[-16,3],[-21,0],[-12,0],[-19,0],[-14,-3],[-12,3],[-21,0],[-18,0],[-17,0],[-14,-2],[-39,-3],[-46,2],[-8,0],[-9,0],[-90,0],[-37,0],[-34,1],[-21,0],[-17,0],[-97,2],[-116,-2],[-63,-1],[-24,0],[-178,-5],[-28,2],[-50,1],[-72,2],[-34,1],[-27,1],[-22,1],[-39,0],[-13,0],[-29,0],[-16,0],[-109,0]],[[99514,59729],[6,-94],[5,-79],[3,-52],[3,-59],[8,-114],[23,-344],[9,-140],[1,-10],[3,-48],[3,-40],[8,-123],[14,-212],[4,-72],[5,-80],[4,-48],[8,-106],[2,-30],[4,-80],[10,-176],[22,-335],[2,-41],[22,-339],[8,-128],[7,-108],[3,-45],[3,-43],[20,-307],[3,-49],[9,-152],[13,-199],[5,-67],[2,-43],[6,-88],[0,-1],[11,-172],[1,-13],[2,-52],[2,-60],[3,-32],[0,-8],[8,-104],[12,-180],[3,-41],[66,-943],[7,-29],[3,-38],[0,-12],[2,-30],[4,-71],[0,-3],[10,-188],[17,-204],[29,-405],[2,-31],[30,-427],[18,-205],[2,-30],[5,-52],[-5,-23],[-17,-76],[-25,-117],[5,-20],[12,-42],[4,-9],[5,-26],[2,-117]],[[99980,52117],[-10,-18],[-3,-32],[-5,-32],[-14,-36],[-12,-23],[-4,-35],[-11,-37],[-13,-17],[-13,-7],[-15,-3],[-11,-15],[-23,0],[-18,6],[-12,3],[-11,14],[-13,-5],[-10,20],[-12,6],[-16,24],[-16,20],[-10,16],[-14,0],[-14,6],[-12,11],[-12,4],[-16,-2],[-13,6],[-17,3],[-12,1],[-19,3],[-15,-6],[-48,-6],[-18,-11],[-22,-22],[-11,-20],[-12,-11],[-14,-27],[-15,-21],[-10,-16],[-8,-12],[-2,-3],[-12,-23],[-13,-26],[-13,-13],[-23,-65],[-7,-28],[-3,-20],[-3,-21],[1,-43],[3,-43],[6,-47],[8,-48],[18,-92],[11,-27],[16,-42],[7,-23],[-4,-40],[-6,-32],[-9,-26],[-17,-21],[-10,-19],[-17,-24],[-15,-26],[-15,-16],[-31,-23],[-12,-16],[-17,-34],[-11,-17],[-1,-23],[0,-10],[0,-17],[0,-7],[1,-7],[0,-12],[2,-28],[2,-30],[1,-38],[0,-9],[-1,-15],[0,-47],[-2,-19],[-4,-40],[-5,-47],[2,-10],[14,-59],[13,-42],[10,-47],[21,-36],[12,-24],[17,-25],[25,-65],[26,-65],[14,-76],[5,-44],[4,-59],[1,-54],[-1,-38],[-12,-50],[-34,-72],[-18,-21],[-18,-7],[-12,-9],[-17,-24],[-17,-28],[-12,-12],[-14,-7],[-14,10],[-8,26],[-19,46],[-12,35],[-11,10],[-18,11],[-28,5],[-20,-31],[-20,-10],[-13,-1],[-31,-1],[-22,27],[-25,33],[3,45],[-7,13],[-16,29],[-4,-5],[-26,-34],[-24,-22],[-18,-17],[-25,-18],[-51,-35],[-48,-14],[-87,7],[-70,54],[-54,59],[-1,2],[-1,1],[-32,66],[-28,101],[-9,41],[0,7],[-4,14],[-4,16],[-36,79],[-40,83],[-53,108],[-1,2],[-1,1],[-32,35],[-27,19],[-18,12],[-14,9],[-49,30],[-24,11],[-50,2],[-24,-7],[-16,-14],[-29,-46],[-8,-12],[-41,-80],[-14,-25],[-13,0],[-28,-55],[-26,-88],[-1,-11],[1,-51],[-2,-78],[-65,-124],[-18,-54],[-8,-22],[-4,-22],[-5,-26],[-13,-33],[-3,-6],[-24,-48],[-15,-30],[-9,-10],[-17,-35],[-29,-64],[-9,-18],[-20,-19],[-32,-31],[-76,-72],[-133,-66],[-75,-3],[-2,-2],[-6,-8],[-13,1],[-29,15],[-50,28],[-71,68],[-25,38],[-26,56],[-18,41],[-16,56],[-36,104],[-3,23],[-2,94],[-1,79],[-2,145],[-5,74],[-2,37],[-9,37],[-13,57],[-8,32],[-2,6],[-38,85],[-1,3],[-52,68],[-63,57],[-40,8],[-50,35],[-49,46],[-79,164],[-67,133],[-2,6],[-94,161],[-52,61],[-45,42],[-76,50],[-27,15],[-27,1],[-43,16],[-46,-3],[-50,-20],[-48,-29],[-3,-7],[-4,4],[-15,-11],[-45,-50],[-38,-72],[-45,-85],[-14,-29],[-32,-55],[-42,-19],[-14,-55],[-21,-95],[-8,-39],[-13,-61],[-11,-30],[-7,-35],[-5,-60],[-25,-89],[-20,-37],[-22,-18],[-54,-45],[-60,-32],[-43,-15],[-23,-9],[-22,9]],[[95536,50421],[-43,15],[-40,60],[-36,103],[-6,27],[-9,46],[-10,45],[-18,119],[-2,44],[-5,69],[-2,30],[-9,134],[-1,137],[1,98],[1,40],[0,161],[-6,26],[-21,92],[-43,83],[-16,21],[-26,33],[-34,21],[-44,-4],[-28,-29],[-24,-36],[-39,-107],[-12,-24],[-22,-45],[-29,-53],[-13,-23],[-31,-48],[-25,-31],[-18,-22],[-10,-9],[-26,-22],[-40,-31],[-33,-6],[-20,-5],[-15,-10],[-25,-18],[-24,-21],[-25,-16],[-25,-10],[-18,-15],[-28,-15],[-25,-23],[-32,-18],[-41,-42],[-34,-31],[-32,-9],[-39,0],[-45,7],[-30,26],[-25,35],[-24,50],[-9,40],[-1,31],[0,15],[15,59],[14,40],[20,58],[25,50],[27,38],[26,37],[32,58],[40,69],[20,36],[17,31],[10,19],[18,44],[14,22],[12,19],[17,63],[11,135],[0,138],[-19,111],[-28,108],[-14,44],[-23,69],[-27,69],[-34,27],[-40,-14],[-35,-35],[-36,-58],[-33,-43],[-10,-5],[-74,71],[-16,8],[-22,1],[-27,8],[-102,2],[-25,1],[-115,150],[-16,15],[-24,15],[-45,24],[-7,7],[-17,34],[-32,67],[-4,3],[-7,4],[-16,30],[-41,86],[-118,58],[-12,-18],[-126,6],[-20,-18],[-5,-11],[-36,1],[-53,31],[-20,11],[-25,31],[-22,41],[-27,30],[-53,110],[-90,188],[-33,78],[-5,20],[-5,32],[-3,30],[-1,41],[-1,41],[0,33],[1,32],[1,54],[0,44],[0,44],[3,41],[2,36],[2,38],[4,39],[2,32],[-2,68],[-8,44],[-9,24],[-11,16],[-12,19],[-21,27],[-17,15],[-12,9],[-30,20],[-25,9],[-22,-3],[-23,0],[-20,0],[-22,3],[-18,6],[-15,9],[-15,15],[-15,12],[-13,14]],[[81913,52000],[-2,-50],[1,-195],[0,-188],[0,-32],[0,-64],[0,-79],[-1,-44],[0,-63],[0,-100],[0,-40],[0,-44],[0,-47],[0,-3],[1,-58],[0,-63],[-1,-39],[1,-52],[-1,-41],[0,-43],[0,-38],[0,-38],[-1,-48],[0,-32],[1,-37],[0,-39],[1,-39],[0,-84],[-1,-107],[1,-127],[1,-85],[0,-75],[0,-82],[0,-80],[0,-19],[0,-32],[0,-45],[-1,-315]],[[81912,49433],[-134,-9],[-58,2],[-25,3],[-2,1],[-23,2],[-16,0],[-29,-2],[-27,0],[-18,0],[-17,0],[-14,0],[-19,-1],[-15,0],[-14,-1],[-87,-1],[-122,3],[-2,0],[-27,0],[-26,0],[-16,0],[-17,0],[-38,0],[-21,0],[-15,0],[-28,1],[-16,-1],[-18,1],[-17,0],[-12,-1],[-13,1],[-38,-1],[-23,0],[-24,-1],[-120,1],[-143,1],[-42,0],[-64,0],[-69,0],[-16,0],[-121,-1],[-100,2],[-33,3],[-13,0],[-21,0],[-42,0],[-85,0],[-27,-1],[-3,0],[-10,0],[-53,0],[-78,0],[-28,0],[-17,1],[-81,3],[-10,1],[-4,0],[-92,1],[-24,0],[-17,0],[-60,1],[-51,0],[-23,0],[-59,1],[-16,-1],[-13,0],[-48,0],[-18,0],[-162,-1],[-16,0],[-87,0],[-13,0],[-34,0],[-33,0],[-68,0],[-32,0],[-54,0],[-29,1],[-24,-2],[-13,-1],[-15,0],[-29,0],[-27,0],[-19,1],[-19,2],[-13,-4],[-13,0],[-29,0],[-52,-1],[-26,1],[-79,3],[-49,-2],[-3,0],[-22,-1],[-13,0],[-23,0],[-27,0],[-35,0],[-20,0],[-34,0],[-45,-1],[-23,0],[-19,-1],[-62,0],[-30,1],[-16,0],[-29,-1],[-11,1],[-77,0],[-55,0],[-22,0],[-25,0],[-19,0],[-53,0],[-17,0],[-15,0],[-30,1],[-12,-1],[-40,1],[-23,0],[-25,0],[-19,0],[-43,1],[-17,0],[-23,1],[-14,0],[-17,0],[-47,0],[-26,1],[-16,0],[-23,0],[-14,0],[-23,-1],[-19,1],[-39,0],[-36,0],[-30,0],[-42,1],[-25,0],[-25,0],[-32,-1],[-32,1],[-28,0],[-31,0],[-12,0],[-40,0],[-17,-1],[-29,0],[-12,-1],[-12,1],[-13,2],[-50,1],[-1,0],[-11,-1],[-113,-4],[-19,1],[-51,0],[-13,0],[-21,0]],[[76545,49439],[1,71],[0,30],[0,42],[0,35],[0,57],[0,81],[-1,62],[0,2],[1,48],[0,44],[0,58],[-1,38],[0,40],[0,31],[0,32],[0,74],[0,36],[0,35],[1,38],[0,58],[0,196],[0,113],[0,80],[0,55],[1,47],[0,53],[-1,44],[1,214],[0,31],[0,32],[-1,32],[0,31],[0,50],[0,41],[0,37],[0,82],[0,80],[0,51],[0,64],[0,68],[0,175],[0,88],[0,190],[0,1],[0,58],[1,32],[0,8],[0,23],[-1,33],[0,33],[1,50],[0,46],[0,33],[0,56],[0,49],[0,31],[1,37],[-1,32],[-1,37],[1,32],[0,30],[0,56],[0,29],[0,91],[0,1],[0,35],[0,71],[0,43],[0,38],[0,44],[0,66],[0,39],[0,36],[-1,57],[1,94],[-1,40],[0,41],[-1,54],[1,35],[1,34],[0,78],[0,33],[0,54],[0,60],[0,66],[0,32],[-1,71],[0,38],[1,43],[-1,89],[1,76],[-1,77],[1,64],[0,91],[-3,68],[-6,-33],[-2,-18],[-4,-24],[0,-2],[-1,-5],[-10,-93],[-3,-14],[-6,-21],[-12,-37],[-7,-8],[-6,-5],[-73,-7],[-9,5],[-3,5],[-1,1],[-1,1],[-4,24],[-4,18],[-2,5],[-3,6],[-10,13],[-17,12],[-9,3],[-14,1],[-20,-6],[-16,-13],[-7,-11],[-2,-3],[0,-3],[-1,-16],[-3,-12],[-1,-2],[-3,-13],[-5,-11],[-6,-7],[-9,-1],[-1,1],[-1,1],[-27,23],[-9,12],[-2,4],[-10,15],[-7,10],[-1,12],[-2,16],[0,1],[-2,15],[-5,27],[-9,20],[-14,18],[-8,-2],[-4,-1],[-1,0],[-13,-8],[-9,-19],[-1,-26],[0,-4],[-1,-10],[-3,-24],[3,-29],[-1,-5],[-2,-17],[-1,-7],[-7,-20],[-1,-4],[-8,-25],[-8,-21],[-9,-23],[-8,-25],[-10,-29],[-12,-27],[-11,-24],[-8,-20],[-12,-12],[-5,-6],[-8,-9],[-11,-18],[0,-1],[-11,-22],[-6,-28],[-2,-44],[1,-5],[4,-19],[1,-3],[15,-9],[12,-7],[14,-18],[8,-23],[6,-31],[1,-4],[2,-22],[1,-7],[0,-2],[0,-17],[0,-21],[-5,-37],[0,-5],[-7,-37],[-6,-34],[-4,-17],[-2,-11],[-9,-33],[-10,-28],[-3,-7],[-8,-21],[-1,-1],[-25,-42],[-7,-11],[-22,-19],[-50,-38],[-12,-6],[-32,0],[-23,7],[-13,8],[-26,25],[-4,5],[-16,0],[-15,-3],[-19,-13],[-1,-1],[-10,1],[-21,6],[-64,36],[-12,17],[-11,23],[-3,9],[0,10],[4,25],[4,20],[3,15],[0,2],[0,6],[0,12],[-7,36],[-11,36],[-10,19],[-24,46],[-24,44],[-32,61],[-41,66],[-8,9],[-17,12],[-19,10],[-10,6],[-21,41],[-3,11],[-3,26],[-2,36],[-3,17],[-13,67],[-7,28],[-17,55],[-10,20],[-6,5],[-14,-2],[-6,-3],[-2,-5],[-2,-11],[4,-27],[25,-52],[3,-9],[0,-1],[-1,-15],[0,-4],[-1,-4],[-5,-10],[-2,-3],[-3,-3],[0,-1],[-3,-2],[-9,3],[-3,1],[-4,1],[-75,37],[-1,1],[-7,8],[-9,-9],[-5,-9],[-1,-7],[0,-9],[4,-20],[2,-2],[3,-9],[7,-49],[1,-3],[0,-6],[0,-13],[-3,-32],[0,-10],[-3,-8],[-4,-4],[-18,-15],[-9,-1],[-6,8],[-15,30],[-1,3],[-8,7],[-1,0],[-5,0],[-2,0],[-7,-8],[-8,-17],[-5,-19],[-5,-45],[-1,-26],[-5,-32],[-1,-1],[-9,-25],[-1,-2],[-10,-15],[-6,-6],[-11,-6],[-31,0],[-4,0],[-3,-3],[-5,-10],[-5,-27],[0,-33],[6,-20],[3,-6],[8,-16],[23,-45],[7,-10],[13,-10],[6,-3],[19,-8],[18,-7],[2,0],[22,-5],[34,-14],[2,-7],[0,-9],[1,-2],[-7,-44],[-6,-18],[-8,-15],[-7,-21],[-10,-40],[-4,-20],[-13,-89],[-6,-51],[0,-31],[2,-19],[5,-16],[2,-6],[4,-9],[30,-68],[4,-7],[6,4],[1,2],[5,8],[3,11],[1,17],[0,2],[0,1],[-2,7],[-1,37],[0,6],[8,28],[8,8],[7,4],[5,-1],[10,-8],[4,-6],[47,-113],[2,-6],[1,-5],[0,-3],[0,-21],[-1,-4],[-8,-21],[-11,-15],[-7,-24],[0,-13],[1,-5],[2,-5],[15,-29],[24,-37],[26,-23],[6,-2],[1,0],[35,7],[19,-6],[19,-17],[3,-7],[1,-2],[1,-5],[1,-7],[1,-7],[0,-14],[-5,-39],[-10,-90],[0,-24],[1,-12],[8,-19],[2,-2],[27,-18],[11,-13],[18,-31],[5,-11],[2,-13],[0,-2],[1,-15],[-2,-17],[-10,-39],[-10,-27],[-11,-54],[-6,-117],[0,-5],[-6,-5],[-8,-8],[-1,-1],[-7,-5],[-11,2],[-5,6],[-15,30],[-5,6],[-5,7],[-8,7],[-10,4],[-54,-4],[-16,-2],[-13,-10],[-15,2],[-1,0],[-17,13],[-19,18],[0,1],[-16,21],[-18,24],[-1,1],[0,1],[-2,3],[-4,29],[9,55],[3,16],[13,83],[0,23],[-3,9],[-6,6],[-9,1],[-11,-8],[-10,-11],[-15,-25],[-18,-27],[-48,-21],[-9,-2],[-9,2],[-5,4],[-11,23],[-12,15],[-17,15],[-44,18],[-10,-1],[-15,4],[-4,6],[-4,11],[-2,6],[-1,14],[1,13],[1,6],[1,10],[0,21],[-10,39],[-11,36],[-16,36],[-3,8],[-4,6],[-16,26],[-6,8],[-8,12],[-23,21],[-39,1],[-12,-11],[-18,-62],[-13,-61],[-21,-98],[0,-3],[-20,-96],[-3,-12],[-4,-15],[-9,-26],[-21,-41],[-4,-3],[-1,-1],[-4,0],[-2,1],[-3,2],[-3,2],[-4,3],[0,5],[0,1],[-9,24],[-5,8],[-19,23],[-6,3],[-23,0],[-2,-4],[0,-7],[0,-7],[5,-21],[0,-12],[-3,-43],[-4,-12],[-22,-32],[-9,-11],[-7,-5],[-9,0],[-4,0],[-5,2],[-58,38],[-2,1],[-3,2],[-3,3],[-2,2],[-18,26],[-1,2],[-13,19],[-10,14],[-3,6],[-2,4],[-1,0],[-3,7],[-6,19],[-3,15],[0,12],[-1,6],[-5,4],[-4,5],[-3,3]],[[74418,52706],[0,6],[-1,149],[1,167],[0,142],[0,136],[0,163],[0,114],[0,33],[0,62],[0,51],[-2,63],[0,40],[-1,31],[-1,69],[-1,74],[-1,49],[-1,55],[0,47],[-1,42],[-2,133],[-2,98],[-1,52],[0,55]],[[89340,49527],[-26,199],[-74,97],[-8,4],[-13,24],[-37,65],[-26,45],[-19,12],[-65,11],[-54,64],[-36,41],[-36,34],[-9,3],[-169,3],[-29,-48],[-31,-33],[-33,-33],[-22,-14],[-76,-21],[-125,1],[-9,-2],[-21,-5],[-14,-5],[-37,-13],[-11,-11],[-51,-29],[-232,3],[-43,-32]],[[88034,49887],[-31,-22],[-42,-37],[-141,2],[-28,15],[-92,1],[-25,-26],[-20,-29],[-32,-34],[-30,-32],[-29,-18],[-65,-33],[-21,-2],[-7,-1],[-21,-14],[-7,-9],[-17,-24],[-27,-56],[-11,-36],[-20,-165],[-12,-101],[-11,-81],[-5,-11],[-19,-85],[-8,-18],[-19,-41],[-4,-11],[0,-299],[-76,-153],[-21,-42],[-21,-29],[-19,-26],[-56,-33],[-102,-117],[-24,-32],[-8,-12],[-55,-92],[-88,1],[-13,0],[-20,-39],[-12,-23],[-50,-99],[-36,0],[-44,-37],[-86,-178],[-43,-90],[-30,-38],[-4,-6],[-33,-63],[-38,-77],[-15,-40],[-32,-67],[-37,1],[-22,40],[-29,52],[-15,26],[-87,178],[-12,26],[-141,2],[-1,0],[-12,-15],[-71,-103],[-87,-73],[-51,-59],[-34,-29],[-196,-2],[-18,-8],[-20,-11],[-94,-191],[-13,-63],[0,-22],[-6,-18],[0,-2],[-88,-179],[-68,-62],[-32,-44],[-3,-5],[-75,-124],[-20,-26],[-15,-26],[-70,-55],[-7,0],[-69,-3],[-45,-14],[-29,-24],[-11,-2],[-46,-37],[-4,-7],[-45,-74],[-39,-40],[-55,-44],[-76,-53],[-34,-24],[-42,-3],[-9,0],[-74,4],[-34,26],[-74,81],[-31,23],[-28,-2],[-37,-2],[-6,-7],[-43,-18],[-128,0],[-44,8],[-45,18],[-27,4],[-11,-3],[-83,41],[-6,-8],[-16,2],[-6,0],[-38,-26],[-25,2],[-3,0],[-47,26],[-56,19],[-71,0],[-14,-11],[-8,-11],[-104,-45],[-13,-6],[-29,-4],[-53,-34],[-5,-3],[-16,-10],[-17,-30],[-5,-22],[-22,-44],[-45,-81],[-36,-19],[-11,-15],[-24,-48],[-2,-25],[-11,-48],[-32,-107],[-60,-119],[-33,-110],[-14,-67],[-12,-37],[-60,-181],[-34,-77],[-4,-11],[-17,-44],[-20,-41],[-47,-64],[-23,-32],[-60,-63],[-4,0],[-34,-3],[-40,-11],[-43,0],[-13,8],[-29,18],[-25,26],[-7,11],[-125,74],[-50,26],[-48,28],[-54,31],[-70,44],[-91,23],[-39,0],[-33,7],[-105,-11],[-43,-7],[-10,-2],[-24,-4]],[[81885,45348],[0,88],[0,52],[1,65],[0,38],[1,588],[1,68],[0,200],[1,230],[2,54],[1,34],[0,34],[0,34],[17,24],[1,50],[5,331],[-2,50],[-2,56],[0,37],[0,63],[0,18],[0,35],[-1,137],[1,65],[3,236],[-1,323],[0,35],[0,55],[0,72],[0,134],[0,11],[-1,42],[0,77],[0,59],[0,51],[0,32],[0,179],[0,98],[0,62],[0,154],[0,114]],[[57241,52027],[0,-53],[1,-52],[0,-116],[0,-49],[0,-32],[0,-73],[1,-53],[0,-49],[0,-32],[0,-46],[0,-53],[1,-62],[0,-99],[0,-56],[0,-42],[0,-11],[0,-39],[1,-50],[0,-57],[0,-54],[0,-106],[1,-38],[0,-61],[0,-2],[0,-86],[0,-57],[0,-69],[0,-54],[1,-30],[0,-91],[0,-43],[0,-67],[1,-90],[0,-52],[0,-35],[1,-93],[0,-105],[0,-59],[0,-63],[0,-73],[1,-62],[0,-50],[0,-40],[0,-39],[1,-45],[1,-36],[-1,-51],[0,-83],[1,-165],[0,-34],[0,-39],[0,-51],[0,-37],[0,-33],[0,-60],[0,-36],[0,-35],[0,-64],[1,-42],[-1,-42],[0,-50],[0,-67],[1,-106],[0,-136],[0,-50],[0,-46],[0,-144],[0,-123],[0,-51],[0,-67],[0,-61],[0,-36],[0,-32],[0,-38],[1,-91],[0,-79],[0,-35],[0,-46],[0,-33],[0,-37],[0,-38],[0,-31],[0,-68],[0,-72],[0,-31],[0,-62],[-1,-113],[14,1],[15,0],[14,-1],[0,-43],[0,-222],[0,-117],[0,-46],[0,-50],[0,-106],[0,-70],[0,-58],[0,-74],[0,-70],[0,-125],[0,-77],[0,-41],[0,-36],[0,-36],[1,-104],[0,-29],[0,-36],[-1,-34],[1,-63],[0,-56],[-1,-50],[1,-60],[-1,-110],[0,-33],[1,-32],[0,-120],[0,-66],[0,-94],[0,-38],[0,-34],[0,-34],[0,-160],[0,-32],[1,-51],[0,-108],[0,-55],[0,-111],[0,-61],[1,-53],[-1,-114],[0,-92],[0,-49],[0,-44],[0,-187],[1,-69],[0,-46],[0,-1],[-22,-22],[0,-31],[0,-27],[0,-12],[1,-37],[0,-32],[0,-4],[0,-36],[0,-67],[-1,-93],[1,-45],[0,-77],[-1,-41],[0,-41],[0,-50],[0,-30],[0,-57],[0,-57],[-1,-40],[1,-30],[-1,-47],[0,-33],[0,-42],[0,-44],[0,-51],[0,-108],[0,-105],[0,-12],[0,-19],[0,-49],[1,-32],[-1,-35],[0,-156],[0,-30],[0,-85],[0,-91],[0,-33],[0,-33],[1,-99],[0,-65],[0,-53],[-1,-37],[1,-33],[-1,-90],[0,-79],[0,-5],[0,-29],[1,-34],[0,-31],[-1,-34],[0,-48],[0,-44],[1,-69],[-1,-45],[0,-37],[0,-68],[0,-32],[0,-30],[0,-43],[-1,-41],[0,-4],[0,-31],[0,-114],[2,-53],[0,-78],[-2,-147],[-1,-66],[-1,-37],[-1,-74],[4,-426],[1,-47],[0,-51],[2,-256],[0,-48],[0,-30],[-1,-118],[-2,-47],[0,-39],[0,-42],[0,-32],[0,-41],[0,-47],[0,-38],[1,-17],[1,-24],[0,-43],[-1,-124],[-1,-46],[0,-30],[0,-47],[0,-44],[0,-84],[0,-32],[0,-30],[0,-58],[0,-38],[0,-56],[0,-40],[0,-76],[0,-96],[2,-76],[3,-131],[-2,-126],[0,-43],[-4,-54],[0,-44],[-1,-89],[1,-43],[-2,-33],[6,-39],[0,-288],[0,-33],[1,-56],[0,-184],[1,-33]],[[57281,36588],[-14,0],[-25,0],[-37,-1],[-14,0],[-75,4],[-13,0],[-14,0],[-28,1],[-12,-1],[-77,0],[-31,1],[-31,2],[-12,0],[-14,-1],[-19,1],[-21,1],[-28,-1],[-16,0],[-38,1],[-17,-1],[-29,-8],[-54,7],[-14,0],[-14,2],[-12,-1],[-18,0],[-21,-1],[-17,0],[-33,1],[-12,0],[-13,-1],[-19,0],[-20,-1],[-10,1],[-5,0],[-14,1],[-38,0],[-17,-1],[-18,1],[-31,-1],[-18,0],[-20,0],[-17,1],[-24,-6],[-1,0],[-66,5],[-44,0],[-13,0],[-36,2],[-12,-1],[-18,0],[-14,0],[-13,2],[-14,-1],[-12,-1],[-16,0],[-19,0],[-33,0],[-53,0],[-12,0],[-41,0],[-12,0],[-12,0],[-28,0],[-29,1],[-28,0],[-14,-1],[-42,1],[-21,-1],[-18,0],[-16,1],[-6,0],[-7,0],[-19,0],[-45,0],[-16,0],[-20,0],[-38,-1],[-24,0],[-23,0],[-59,1],[-36,0],[-64,0],[-37,0],[-30,0],[-75,0],[-22,0],[-40,0],[-38,0],[-87,0],[-15,0],[-29,0],[-20,0],[-24,0],[-1,0],[-29,0],[-42,0],[-43,0],[-15,0],[-24,0],[-28,0],[-32,0],[-21,0],[-26,0],[-26,0],[-38,0],[-20,0],[-27,0],[-21,0],[-14,0],[-13,0],[-26,-1],[-101,0],[-33,1],[-14,0],[-12,0],[-16,1],[-5,-1],[-7,0],[-24,0],[-36,1],[-3,0],[-71,0],[-10,1],[-7,0],[-12,-1],[-18,0],[-15,0],[-8,0],[-6,-1],[-41,1],[-16,0],[-29,0],[-36,0],[-34,0],[-13,0],[-20,0],[-31,0],[-20,1],[-14,0],[-34,0],[-16,0],[-34,0],[-33,-1],[-31,0],[-14,0],[-24,0],[-22,-1],[-25,0],[-32,1],[-27,0],[-23,0],[-51,0],[-19,0],[-51,-1],[-33,0],[-22,0],[-12,0],[-14,0],[-43,0],[-12,0],[-48,0],[-14,0],[-21,0],[-56,0],[-24,0],[-41,0],[-358,-4],[-90,2],[-118,0],[-124,1],[-76,4],[-62,-5],[-145,1],[-192,5],[-13,0],[-26,-1],[-141,-2],[-115,-1],[-140,-1],[-43,-4],[-89,0],[-110,-1]],[[51130,36589],[0,478],[0,26],[0,90],[0,183],[-1,107],[-1,267],[0,166],[0,36],[1,50],[0,56],[0,75],[0,151],[0,34],[0,4],[0,33],[0,183],[0,67],[0,54],[0,42],[0,51],[0,31],[0,39],[0,46],[0,70],[-1,99],[0,145],[-1,34],[1,35],[1,388],[-1,99],[-1,30],[-1,42],[1,85],[0,42],[-1,102],[0,91],[0,143],[0,195],[-1,434],[0,131],[0,76],[0,67],[0,33],[-1,33],[0,43],[0,39],[-1,78],[-1,60],[0,45],[0,31],[-1,75],[0,41],[-1,39],[-1,54],[0,41],[0,57],[0,32],[0,97],[0,34],[0,97],[0,69],[0,88],[0,68],[0,201],[0,73],[0,46],[0,78],[0,92],[0,71],[1,62],[-1,69],[0,32],[1,77],[-2,115],[-2,202],[3,42],[0,35],[0,37],[1,19],[0,25],[-3,113],[-1,38]],[[51116,43747],[7,29],[-1,31],[2,37],[9,24],[18,8],[2,146],[-4,48],[0,49],[-1,45],[0,33],[1,136],[0,210],[1,64],[0,109],[0,44],[0,157],[0,36],[0,40],[0,34],[1,39],[0,149],[0,6],[0,56],[0,48],[0,292],[0,643],[0,32],[0,78],[0,44],[0,41],[0,32],[0,244],[0,81],[-3,89],[-16,-1],[-49,9],[0,78],[0,37],[0,36],[1,158],[0,54],[0,75],[0,50],[0,85],[0,50],[0,46],[0,83],[0,35],[0,59],[0,253],[1,101],[0,73],[0,73],[1,51],[-1,32],[0,30],[1,97],[0,76],[0,34],[0,40],[0,35],[0,57],[0,48],[1,48],[-1,33],[1,37],[-1,41],[1,75],[-1,54],[1,176],[0,59],[-1,33],[1,58],[0,51],[0,39],[0,1],[0,55],[0,56],[0,40],[1,40],[0,38],[0,67],[0,41],[0,34],[0,39],[0,36],[0,16],[0,17],[0,38],[0,128],[0,206],[0,54],[1,159],[0,104],[0,53],[0,56],[0,149],[0,47],[0,62],[-1,55],[0,39],[1,56],[0,43],[0,242],[-1,171],[1,39],[-1,246],[0,67],[1,47],[0,33],[-1,33],[0,35],[2,37],[0,39],[-1,52],[0,35],[0,33],[0,108],[0,54],[0,56],[0,49],[0,50],[1,53],[-1,56],[1,97],[0,53],[0,35],[0,199],[0,57],[-1,30],[-1,33],[1,43],[1,52],[0,92],[1,298],[-2,46],[0,38],[0,67],[1,90],[0,136],[0,44],[-1,32],[0,56],[0,54],[0,38],[0,36],[0,33],[0,54],[0,145]],[[42446,54613],[0,-85],[0,-33],[0,-30],[0,-46],[0,-36],[0,-107],[0,-58],[-1,-51],[0,-51],[1,-109],[0,-50],[-1,-30],[0,-57],[0,-142],[1,-79],[-1,-94],[0,-30],[0,-118],[0,-60],[-1,-30],[0,-19],[0,-14],[1,-30],[0,-46],[0,-37],[0,-55],[0,-32],[-1,-43],[1,-38],[-1,-70],[0,-35],[0,-118],[0,-50],[0,-73],[0,-31],[0,-36],[0,-4],[0,-46],[0,-71],[0,-69],[0,-359],[0,-57],[0,-73],[0,-43],[0,-81],[0,-34],[0,-41],[0,-43],[0,-56],[-1,-159],[0,-48],[0,-155],[0,-60],[0,-93],[0,-62],[0,-47],[-1,-47],[1,-53],[0,-132],[-2,-56],[0,-29],[0,-85],[0,-37],[0,-9],[1,-154],[1,-62],[0,-116],[0,-40],[0,-56],[0,-36],[0,-67],[0,-73],[0,-35],[-1,-143],[0,-46],[0,-139],[0,-50],[0,-45],[0,-4],[0,-70],[0,-104],[0,-39],[0,-36],[0,-114],[0,-65],[0,-49],[-1,-43],[0,-195],[0,-30],[0,-86],[0,-52],[0,-168],[0,-41],[0,-55],[0,-32],[-1,-41],[1,-61],[0,-49],[0,-44],[0,-214],[0,-120],[0,-107],[0,-81],[0,-37],[1,-205],[2,-180],[0,-32],[0,-10],[0,-34],[1,-171],[34,0],[13,0],[0,-53],[1,-95],[0,-159],[0,-140],[0,-183],[0,-30],[0,-67],[0,-1],[0,-32],[0,-39],[0,-77],[-1,-81],[1,-88],[0,-60],[0,-104],[0,-56],[0,-43],[0,-15],[0,-105],[0,-64],[0,-96],[0,-42],[0,-103],[0,-63],[0,-81],[0,-74],[-1,-133],[0,-77],[0,-98],[0,-104],[1,-34],[-1,-55],[0,-53],[0,-85]],[[42492,44320],[-81,0],[-22,-3],[-76,-5],[-145,-2],[-80,1],[-168,1],[0,-58]],[[41920,44254],[-2,-2],[-13,-14],[-5,-5],[-19,-31],[-11,-15],[-13,-11],[-14,-3],[-16,5],[-3,2],[-27,13],[-10,24],[-3,7],[-5,19],[-3,2],[-14,8],[-2,0],[-11,-12],[-6,-26],[-1,-3],[-12,-39],[-6,-17],[-24,-56],[-15,-17],[-9,-9],[-6,-6],[-6,5],[-19,13],[-29,1],[-31,-1],[-14,5],[-9,3],[-12,22],[-10,26],[-1,4],[-7,20],[-14,37],[-1,2],[0,11],[1,16],[0,8],[8,24],[23,50],[-47,3],[-53,4],[-25,2],[-20,0],[-17,0],[-12,0],[-24,0],[-19,0],[-26,0],[-17,0],[-22,0],[-12,0],[-24,0],[-21,0],[-14,0],[-35,1],[-13,-1],[-89,2],[-15,1],[-23,1],[-31,0],[-12,0],[-27,1],[-22,-1],[-19,0],[-22,-1],[-14,0],[-12,0],[-12,-1],[-31,0],[-12,1],[-29,-1],[-33,1],[-16,-1],[-33,1],[-15,0],[-19,0],[-21,-1],[-57,0],[-65,1],[-29,1],[-24,-1],[-29,0],[-45,0],[-67,1],[-42,-2],[-21,2],[-31,0],[-37,0],[-2,0],[-72,-7],[-50,0],[-41,0],[-205,1],[-27,0],[-76,3],[-106,2],[-13,-2],[-16,0],[-14,-2],[-12,0],[-57,-7],[-19,1],[-70,3],[-19,3],[-111,5],[-14,-1],[-68,-1],[-129,-2],[-51,-1],[-23,-1],[-18,1],[-38,2],[-91,-6],[-12,-1],[-47,-1],[-77,1],[-103,1],[-19,0],[-52,2],[-23,0],[-37,0],[-88,1],[-14,0],[-52,0],[-53,1],[-41,0],[-52,1],[-12,0],[-229,-2],[-177,0],[-163,0],[-38,0],[0,-70],[-2,-159],[1,-37],[1,-46],[-1,-53],[0,-37],[0,-32],[1,-37],[0,-44],[0,-99],[0,-58],[0,-174],[0,-102],[0,-129],[-1,-210],[0,-130],[0,-73],[0,-109],[-1,-331],[0,-5],[0,-92],[0,-44],[0,-22],[0,-34],[0,-72],[0,-121],[0,-90],[-1,-149],[-84,-1],[-65,0],[-38,-1],[-199,-1],[-28,0],[-86,-1],[-82,0],[-80,0],[-62,-1],[-98,-1],[-19,0],[-25,0],[-87,-1],[-26,0],[-99,14],[-4,0],[-150,-3]],[[36328,41766],[-136,-5],[-26,-1],[-2,0],[-37,-1],[-205,-1],[-59,0],[-53,-1],[-24,0],[-3,0],[-14,0],[-154,-1],[-22,0],[-155,4],[-69,1],[-22,1],[-72,2],[-29,0],[-82,2],[-7,1],[-18,0],[-115,31]],[[35024,41798],[0,633],[0,1052],[0,1596],[0,1189],[0,1306],[0,2104],[0,14],[0,102],[0,3550]],[[76545,49439],[1,-31],[0,-40],[0,-76],[0,-33],[0,-40],[0,-45],[0,-49],[0,-62],[1,-56],[0,-41],[-1,-70],[0,-116],[0,-34],[1,-93],[-1,-76],[0,-84],[0,-38],[0,-36],[1,-55],[0,-90],[-1,-127],[0,-97],[0,-41],[1,-41],[-1,-57],[1,-40],[0,-7],[0,-37],[-1,-77],[0,-31],[0,-44],[0,-199],[0,-42],[0,-38],[0,-36],[0,-39],[0,-30],[0,-155],[0,-61],[0,-33],[0,-43],[1,-135],[0,-33],[0,-39],[0,-78],[0,-160],[0,-49],[0,-61],[0,-35],[0,-49],[0,-54],[0,-102],[1,-51],[-1,-145],[0,-271],[1,-62],[-1,-55],[0,-39],[0,-257],[0,-5],[0,-168],[0,-162],[-1,-35],[0,-85],[-1,-215],[0,-24],[0,-8],[0,-42],[0,-200],[0,-89],[-19,1],[-21,-1],[-3,0],[-10,0],[-17,1],[-15,1],[-19,-1],[-27,0],[-21,1],[-24,-1],[-29,0],[-27,0],[-18,0],[-22,0],[-14,0],[-12,1],[-16,-1],[-4,0],[-14,0],[-28,0],[-14,0],[-25,0],[-19,0],[-16,2],[-18,0],[-20,-1],[-12,0],[-17,1],[-25,-1],[-46,1],[0,-191],[-1,-238],[-1,-160],[0,-55],[0,-214],[0,-99],[-1,-152],[0,-177],[0,-138],[0,-183],[0,-68],[0,-42],[0,-236],[1,-84],[0,-517],[0,-236],[-1,-211],[0,-81],[-1,-337],[1,-236],[0,-286],[0,-164],[0,-260],[0,-8],[0,-54],[0,-35],[0,-59],[0,-13],[0,-48],[0,-103],[0,-61],[0,-208],[0,-187],[0,-67],[0,-247],[0,-58],[0,-56],[-1,-291],[0,-33],[0,-48],[0,-38],[0,-44],[0,-39]],[[75969,38232],[-10,-21],[-11,-32],[-11,-27],[-10,-14],[-12,-30],[-8,-24],[-2,-5],[-7,-24],[-7,-30],[-6,-26],[-4,-41],[0,-30],[-2,-35],[-7,-30],[-6,-32],[-6,-76],[-25,-75],[-8,-35],[-18,-74],[-19,-48],[-5,-26],[-9,-36],[-7,-35],[-8,-41],[-8,-36],[-7,-35],[-8,-30],[-7,-26],[-7,-27],[-7,-26],[-9,-21],[-12,-36],[-13,-29],[-9,-18],[-11,-20],[-15,-15],[-14,-18],[-23,-18],[-13,-3],[-16,0],[-21,-3],[-16,-2],[-17,0],[-14,8],[-18,21],[-15,24],[-14,23],[-15,30],[-10,23],[-17,33],[-10,18],[-12,23],[-11,27],[-34,70],[-24,52],[-9,22],[-42,143],[-10,43],[-6,26],[-10,43],[-12,73],[-2,7],[-16,65],[-3,10],[-15,57],[0,5],[-4,28],[-2,20],[-1,24],[-1,6],[1,50],[1,29],[1,0],[1,30],[2,20],[4,27],[5,39],[3,29],[0,9],[0,5],[0,27],[-4,42],[-7,38],[-8,35],[-2,12],[-12,18],[-12,15],[-15,6],[-15,17],[-30,36],[-12,0],[-16,-6],[-14,-8],[-1,-1],[-21,-3],[-10,1],[-15,2],[-16,-1],[-16,-2],[-1,0],[-14,0],[-16,-3],[-16,-17],[-12,-20],[-2,-4],[-17,-27],[-2,-4],[-14,-25],[-13,-17],[-18,-24],[-10,-12],[-6,-9],[-12,-15],[-20,-24],[-8,-13],[-5,-8],[-19,-32],[-1,-1],[-27,-40],[-16,-21],[-13,-11],[-8,-8],[-12,-11],[-2,-2],[-28,-21],[-7,-4],[-6,-3],[-18,-13],[-6,-6],[-13,-9],[-18,-14],[-4,-4],[-18,-15],[-29,-23],[-21,-18],[-19,-12],[-20,-12],[-1,0],[-13,-6],[-1,0],[-14,-6],[-2,0],[-14,-2],[-18,-6],[-11,0],[-4,0],[-9,3],[-12,3],[-28,-10],[-8,-1],[-31,-4],[-1,0],[-18,-2],[-1,0],[-12,-1],[-2,0],[-18,3],[-8,1],[-11,2],[-12,5],[-9,4],[-11,5],[-14,6],[-5,4],[-13,8],[-20,16],[-8,10],[-15,18],[-12,24],[-15,44],[-5,17],[-9,31],[-11,41],[-14,50],[-17,59],[-13,65],[-9,45],[-6,29],[-8,43],[-5,30],[-5,30],[-2,13],[-5,31],[-3,24],[-7,27],[-9,38],[-12,30],[-18,47],[-3,6],[-22,44],[-16,30],[-10,13],[-17,22],[-30,21],[-30,12],[-1,1],[-20,10],[-17,12],[-9,6],[-5,3],[-25,12],[-18,8],[-18,14],[-10,3],[-21,4],[-30,1],[-27,4],[-22,-1],[-26,-15],[-1,-2],[-29,-33],[-28,-34],[-4,-5],[-21,-36],[-14,-26],[-1,-3],[-12,-27],[-12,-26],[-10,-30],[-10,-31],[-2,-7],[-8,-33],[-6,-26],[-9,-42],[-7,-23],[-11,-33],[-12,-50],[-3,-15],[-6,-38],[-3,-38],[6,-42],[7,-22],[4,-4],[16,-15],[4,-4],[7,-7],[19,-14],[4,-3],[17,-13],[13,-10],[3,-2],[17,-24],[9,-19],[8,-27],[11,-15],[46,-83],[26,-69],[17,-63],[9,-37],[8,-30],[13,-32],[11,-41],[11,-53],[7,-39],[2,-29],[6,-52],[-1,-35],[-2,-30],[1,-44],[0,-28],[0,-21],[-9,-56],[-9,-47],[-5,-24],[-2,-12],[-6,-26],[-4,-20],[-2,-7],[-7,-35],[-7,-27],[-8,-44],[-5,-28],[-1,-10],[-8,-33],[-6,-27],[-2,-6],[-9,-32],[-12,-18],[-12,-9],[-17,-18],[-2,-2],[-18,-24],[0,-1],[-4,-5],[-12,-18],[-12,-17],[-15,-27],[-12,-13],[-2,-3],[-5,-4],[-14,-18],[-1,0],[-12,-12],[-17,-15],[-19,-20],[-9,-14],[-2,-2],[-3,-4],[-1,-1],[-12,-15],[-1,-1],[-3,-2],[-10,-6],[-5,-5],[-12,-12],[-2,-3],[-10,-8],[-6,-4],[-11,-6],[-4,-2],[-15,-10],[-3,-2],[-1,-1],[-13,-9],[-17,-9],[-18,-6],[-13,3],[-6,0],[-14,3],[-13,6],[-15,9],[-12,9],[-14,15],[-9,10],[-6,6],[-1,1],[-14,24],[-11,22],[-9,25],[-10,24],[-3,7],[-6,17],[-10,29],[-8,24],[-7,23],[-10,30],[-9,29],[-5,21],[-2,6],[-8,30],[-5,35],[-5,27],[-4,33],[-2,14],[-4,20],[-6,30],[-16,103],[-6,33],[-6,38],[-6,33],[-1,38],[-4,44],[-4,42],[-3,35],[-3,47],[-2,30],[-3,23],[-1,6],[-7,39],[-5,26],[-20,63],[-44,139],[-20,10],[-9,4],[-13,7],[-18,9],[-31,-13],[-1,0],[-21,0],[-22,3],[-20,2],[-15,-5],[-2,-1],[-15,-3],[-15,10],[-1,-1],[-14,-10],[-11,-5],[-7,-3]],[[72645,37918],[0,35],[-4,227],[1,126],[2,133],[0,40],[1,64],[0,176],[0,90],[0,217],[0,125],[0,65],[-1,104],[1,63],[0,84],[0,104],[0,176],[1,73],[-1,126],[0,11],[1,45],[0,136],[0,17],[0,65],[0,212],[0,269],[0,159],[3,136],[0,82],[0,211],[0,77],[1,360],[-1,179],[-1,244],[0,118],[-1,277],[2,45],[-1,269],[0,34],[0,111],[0,192],[0,22],[0,69],[0,10],[0,193],[-1,410],[0,87],[0,145],[0,158],[-1,103],[0,147],[-1,45],[1,31],[0,47],[0,30],[0,28],[0,2],[0,59],[-1,47],[-1,36],[-1,95],[0,117],[0,71],[-2,253],[-5,175],[-3,277],[0,52],[-2,98],[0,82],[0,122],[0,85],[1,338],[0,177],[1,488],[-2,435],[-1,402],[1,74],[0,34],[1,18],[0,72],[0,16],[0,66],[-1,170],[1,210],[-2,210],[-1,346],[-1,79],[1,197],[0,58],[0,172],[1,154],[1,154],[0,15],[0,116],[0,207],[0,1],[1,213],[0,101],[0,33],[1,141],[0,150],[1,189],[-1,236],[1,86],[-1,161],[0,138],[0,44],[0,43],[0,161],[0,19],[0,19],[0,99],[-1,90],[0,48],[1,185],[0,33],[1,161],[0,122],[15,-1],[66,-3],[22,-1],[58,-3],[1,0],[0,-1],[7,-5],[5,-9],[1,-8],[5,-11],[15,-19],[10,-4],[78,-21],[33,-8],[60,3],[1,0],[16,4],[22,23],[10,25],[2,6],[0,17],[-7,30],[-9,24],[0,1],[-3,12],[1,85],[0,5],[3,4],[51,24],[4,-1],[3,-6],[32,54],[-7,111],[1,5],[13,43],[12,23],[70,50],[2,1],[14,4],[34,-15],[1,0],[5,-6],[8,-18],[1,-1],[39,-108],[4,-37],[0,-21],[-2,-10],[-8,-30],[-12,-27],[-4,-8],[-16,-41],[-4,-12],[0,-1],[0,-17],[2,-10],[0,-1],[0,-1],[5,-16],[4,-5],[5,-4],[7,0],[36,43],[0,4],[48,63],[2,2],[1,0],[70,30],[10,3],[1,1],[10,-6],[7,-10],[9,-19],[9,-63],[2,-22],[-1,-66],[1,-1],[2,-19],[5,-11],[4,-1],[16,-3],[20,-2],[3,0],[44,-10],[10,-4],[6,-7],[1,0],[8,-14],[9,-21],[0,-1],[2,-8],[0,-21],[-5,-17],[-1,-1],[-3,-18],[1,-17],[3,-15],[4,-8],[1,0],[4,-2],[6,-1],[1,0],[14,6],[11,10],[11,10],[19,28],[15,12],[2,0],[10,0],[7,-5],[1,-1],[3,-5],[5,-8],[4,-8],[2,-3],[0,-3],[4,-14],[6,-42],[1,-8],[5,-12],[4,-3],[39,-32],[16,-14],[3,-2],[31,-16],[4,-2],[13,-6],[2,0],[43,-21],[1,0],[1,-1],[7,-9],[6,-13],[0,-1],[0,-4],[4,-18],[27,-57],[7,-10],[9,-5],[9,0],[28,12],[30,5],[0,-1],[4,-3],[5,-13],[5,-20],[0,-1],[0,-18],[-3,-22],[0,-1],[-1,-21],[1,-7],[7,-6],[7,0],[81,28],[10,11],[1,1],[3,5],[13,17],[45,77],[17,39],[22,-19],[9,-57],[10,-45],[2,-11],[5,-11],[6,-8],[11,-8],[12,1],[7,9],[6,11],[11,40],[1,35],[3,11],[6,30],[11,45],[10,28],[10,13],[3,2],[10,12],[8,9]],[[51116,43747],[-5,-1],[-10,-2],[-9,24],[-5,36],[-7,30],[-10,44],[-6,24],[-2,11],[-1,8],[-1,7],[1,6],[2,12],[3,11],[-1,3],[-24,139],[-18,135],[-4,42],[-7,33],[-60,146],[-12,20],[-17,20],[-16,14],[-7,0],[-4,-9],[1,-24],[5,-51],[0,-30],[-17,-152],[-4,-25],[-14,-31],[0,-1],[-2,-2],[-10,-15],[-4,-3],[-15,0],[-1,0],[-6,2],[-47,79],[-1,1],[0,1],[-8,15],[-3,11],[0,12],[34,62],[20,13],[4,0],[5,-9],[11,57],[-81,130],[-7,-1],[-73,-50],[-6,-6],[-6,-11],[-1,-1],[-5,-19],[-12,-51],[0,-3],[-6,-13],[-8,-15],[-8,-10],[-17,0],[-32,11],[-67,-28],[-1,-4],[-3,-12],[-9,-29],[-5,-18],[-8,-26],[0,-3],[0,-1],[-2,-13],[0,-76],[0,-6],[7,-27],[1,-17],[-1,-7],[-7,-14],[-11,-15],[-16,-15],[-10,-1],[-6,7],[-8,18],[-11,37],[-1,2],[-2,13],[-5,65],[-1,5],[0,1],[-3,14],[-5,10],[0,1],[-5,6],[-16,7],[-2,1],[-1,1],[-6,1],[-5,-3],[-6,-10],[-3,-10],[0,-12],[8,-18],[8,-30],[1,-1],[8,-85],[1,-18],[0,-4],[-4,-14],[-7,-6],[-9,-2],[-7,6],[-56,43],[-22,17],[-18,41],[-6,12],[-13,15],[-10,8],[-12,1],[-1,0],[-70,-42],[-1,0],[0,-1],[-5,-6],[-5,-11],[0,-1],[-8,-26],[-8,-24],[-14,-35],[0,-1],[-6,-14],[-16,-19],[-33,-32],[-10,0],[-2,5],[-1,4],[0,6],[-2,13],[-8,32],[-1,5],[-11,25],[-1,3],[-7,13],[-7,9],[-1,0],[-10,7],[-9,1],[-1,0],[0,-1],[-3,-2],[-6,-8],[-6,-16],[-3,-8],[-6,4],[-3,15],[0,2],[0,20],[4,13],[0,1],[1,3],[17,50],[1,4],[-11,45],[-1,0],[-28,22],[-1,1],[-1,0],[-6,-2],[-4,-7],[-3,-6],[-1,-40],[-2,-8],[-3,-7],[-13,-6],[-10,1],[-16,5],[-39,16],[-3,2],[-1,1],[-1,0],[-1,2],[0,10],[2,13],[1,4],[0,19],[-2,8],[-3,4],[-6,0],[-7,-5],[-3,-5],[-12,-58],[0,-1],[-1,-15],[-2,-87],[0,-18],[-2,-74],[-1,-9],[0,-2],[-13,-88],[0,-1],[0,-1],[-3,-10],[-10,-12],[-1,-1],[-8,1],[-3,6],[-37,138],[0,10],[4,6],[15,11],[1,3],[0,5],[-46,95],[-2,3],[2,12],[-20,21],[-12,32],[-1,4],[-12,24],[-17,40],[-2,7],[-14,37],[-2,0],[-15,-3],[-57,0],[-12,4],[-12,-3],[-24,0],[-23,0],[-30,-1],[-34,1],[-11,0],[-17,-1],[-35,0],[-31,1],[-15,-1],[-17,0],[-18,0],[-42,0],[-14,1],[-43,1],[-32,0],[-77,0],[-50,0],[-26,0],[-19,0],[-29,0],[-37,0],[-20,-1],[-24,0],[-35,0],[-99,0],[-68,1],[-24,0],[-46,0],[-15,0],[-18,0],[-73,0],[-30,0],[-28,0],[-90,0],[-13,-1],[-36,0],[-16,0],[-19,0],[-5,0],[-11,0],[-21,0],[-20,0],[-11,0],[-27,0],[-13,0],[-21,1],[-30,0],[-13,0],[-17,0],[-12,0],[-22,-1],[-24,1],[-21,0],[-95,0],[-32,0],[-21,0],[-20,0],[-20,0],[-19,0],[-15,0],[-13,0],[-21,0],[-12,0],[-23,0],[-21,-1],[-14,1],[-28,-1],[-28,0],[-24,0],[-26,0],[-21,0],[-30,1],[-28,0],[-28,1],[-17,0],[-18,-1],[-25,0],[-28,0],[-20,1],[-12,0],[-16,0],[-15,1],[-71,-1],[-134,0],[-39,0],[-34,1],[-205,0],[-20,0],[-12,0],[-80,1],[-43,0],[-31,0],[-12,0],[-17,0],[-13,0],[-32,0],[-27,1],[-20,0],[-22,0],[-25,0],[-14,1],[-14,0],[-24,0],[-22,-1],[-15,1],[-17,0],[-32,-1],[-50,1],[-15,0],[-19,1],[-19,0],[-19,0],[-119,0],[-16,0],[-24,0],[-15,0],[-30,0],[-1,0],[-22,-1],[-28,0],[-13,0],[-10,0],[-3,1],[-72,0],[-12,-1],[-12,1],[-21,-1],[-7,0],[-7,0],[-14,0],[-14,1],[-22,0],[-16,0],[-28,0],[-85,-1],[-16,0],[-12,1],[-14,1],[-14,0],[-16,0],[-27,0],[-12,0],[-17,1],[-17,0],[-15,0],[-22,0],[-13,0],[-20,0],[-19,0],[-14,-1],[-62,0],[-13,0],[-30,0],[-13,0],[-38,0],[-36,0],[-23,1],[-30,0],[-149,0],[-16,0],[-87,0],[-28,0],[-30,-1],[-27,1],[-18,0],[-23,0],[-18,0],[-29,0],[-33,0],[-23,0],[-8,0],[-71,-2],[-16,-2],[-1,0],[-23,0],[-57,-1],[-1,0],[-20,6],[-24,0],[-19,0],[-30,0],[-13,-1],[-17,0],[-22,0],[-41,-1],[-28,0],[-44,1],[-30,0],[-29,0],[-102,2],[-14,1],[-18,0],[-37,0],[-18,0],[-12,0],[-45,0],[-12,-1],[-19,0],[-43,0],[-19,0],[-17,0],[-20,0],[-32,0],[-26,0],[-15,0],[-20,0],[-25,0],[-24,1],[-71,0],[-22,-1],[-100,0],[-15,0],[-56,0],[-13,0],[-26,0],[-117,1],[-68,0],[-21,0],[-22,0],[-36,0],[-15,0],[-71,0],[-62,-1],[-28,0],[-12,1],[-12,0],[-25,0],[-12,0],[-32,0],[-46,0],[-39,1],[-61,0],[-29,-1],[-62,-1],[-49,0],[-2,0]],[[72645,37918],[-30,-24],[-1,-1],[-19,-7],[-24,-2],[-5,2],[-30,8],[-31,19],[-34,31],[-34,51],[-25,42],[-24,34],[-16,38],[-5,42],[-2,55],[0,119],[2,91],[1,75],[6,59],[6,38],[6,53],[0,36],[-6,57],[2,71],[-17,52],[-24,53],[-10,31],[-15,63],[-19,45],[-19,37],[-32,43],[-14,48],[-8,27],[-20,34],[-19,23],[-9,9],[-12,11],[-7,7],[-14,5],[-7,2],[-19,-10],[-4,-3],[-2,-1],[-18,-23],[-2,-3],[-18,-36],[-12,-19],[-1,0],[-27,-21],[-24,-17],[-7,-5],[-36,-54],[-13,-19],[-3,-5],[-1,-2],[-10,-19],[-10,-22],[-15,-38],[-1,-3],[-34,-77],[-57,-68],[-31,-44],[-6,-10],[-26,-20],[-17,-5],[-63,27],[-29,10],[-57,-14],[-26,-6],[-11,-8],[-22,-25],[-13,-24],[-13,-5],[-37,-38],[-13,-2],[-21,3],[-16,2],[-29,1],[-27,3],[-21,15],[-11,12],[-18,40],[-6,58],[-4,63],[-11,36],[-9,30],[-6,30],[-4,16],[-16,79],[-8,27],[-19,64],[-31,26],[-13,20],[-19,32],[-12,39],[-22,93],[-64,277],[-23,14],[-16,-3],[-14,41],[-16,33],[-16,26],[-20,23],[-20,23],[-26,11],[-2,1],[-7,4],[-20,7],[-8,4],[-18,9],[-18,-2],[-9,-23]],[[70838,39820],[-13,-11],[-3,-3],[-11,-12],[-23,-19],[-25,-7],[-54,-51],[-25,-31],[-16,-20],[-15,-18],[-16,-33],[-9,-20],[-49,-80],[-14,-13],[-15,-73],[-20,-53],[-19,-93],[-8,-33],[-6,-51],[-16,-35],[-22,-27],[-25,-43],[-4,-13],[-6,-16],[-9,-36],[-14,-85],[-2,-11],[0,-3],[-1,-2],[-20,-74],[-2,-7],[0,-1],[-9,-22],[-2,-2],[-37,-39],[-2,-4],[-15,-31],[-7,-26],[-11,-54],[-18,-36],[-44,-70],[-13,-7],[-14,-8],[-33,1],[-17,-19],[-46,-69],[-12,-24],[-13,-30],[-18,-17],[-15,-13],[-14,-20],[-11,-6],[-36,-61],[-43,-39],[-30,-28],[-41,-58],[-7,-10],[-26,-17],[-14,11],[-21,26],[-16,31],[-28,31],[-38,48],[-30,-7],[-22,-1],[-26,13],[-37,11],[-16,18],[-12,8],[-7,5],[-51,38],[-44,45],[-10,14],[-19,31],[-7,26],[-7,29],[-23,34],[-27,4],[-42,-2],[-24,-3],[-59,-30],[-43,-16],[-28,5],[-17,25],[-13,28],[-11,23],[-24,92],[-15,52],[-13,49],[-37,40],[-32,30],[-23,6],[-21,-6],[-32,-8],[-38,-1],[-16,-3],[-22,-39],[-12,-2],[-19,23],[-31,43],[-14,20],[-10,13],[-51,43],[-42,22],[-33,2],[-67,-23],[-17,-8],[-12,-2],[-36,-8],[-30,-20],[-30,-23],[-23,-13],[-15,2],[-23,13],[-20,2],[-12,-5],[-12,-16]],[[68368,38857],[3,313],[0,41],[0,146],[0,242],[0,428],[1,98],[0,35],[-1,44],[0,286],[2,226],[0,3],[0,156],[2,40],[-1,48],[-1,347],[0,137],[-1,228],[0,62],[0,140],[0,288],[0,430],[-1,424],[0,429],[0,257],[-1,48],[4,42],[-1,39],[-1,43],[0,74],[0,35],[0,41],[1,207],[1,67],[-1,157],[-5,108],[0,166],[0,125],[0,76],[0,227],[1,126],[0,69],[1,69],[-1,161],[0,79],[0,60],[0,70],[0,205],[1,114],[0,6],[-1,219],[0,113],[0,39],[1,34],[-1,39],[2,302],[5,217],[0,212],[-2,217],[-1,46],[0,54],[0,116],[0,152],[0,34],[0,16],[-1,243],[0,13],[0,597],[-1,219],[-1,106],[1,52],[0,265],[0,36],[1,46],[1,160],[1,34],[-2,152],[0,36],[-1,332],[0,60],[0,121],[0,47],[0,262],[0,87],[0,42],[0,43],[0,46],[-2,212],[3,222],[-2,209],[0,115],[-1,85],[0,75],[3,67],[1,36],[0,51]],[[95536,50421],[-1,-75],[0,-30],[0,-42],[0,-31],[-1,-154],[-1,-151],[0,-94],[-1,-186],[-1,-175],[-1,-112],[0,-73],[0,-75],[-1,-31],[0,-31],[0,-30],[1,-32],[-1,-34],[0,-58],[1,-36],[0,-74],[-1,-60],[0,-11],[0,-19],[0,-33],[0,-43],[0,-30],[0,-35],[0,-33],[0,-44],[0,-27],[0,-9],[1,-50],[-1,-65],[0,-42],[0,-50],[0,-37],[0,-41],[0,-82],[0,-52],[0,-34],[0,-36],[0,-34],[-1,-81],[0,-30],[-1,-46],[0,-154],[-1,-178],[1,-53],[0,-139],[1,-68],[0,-33],[2,-47],[-2,-31],[0,-69],[0,-31],[0,-69],[0,-53],[-1,-16],[-6,-85],[-57,2],[-2,0],[-105,-1],[-35,3],[-12,-1],[-22,-1],[-29,1],[-189,0],[-38,1],[-61,0],[-117,1],[-17,1],[-19,-1],[-19,0],[-20,0],[-13,0],[-66,0],[-14,0],[-25,1],[-14,1],[-41,0],[-43,0],[-115,0],[-17,-1],[-34,0],[-117,1],[-38,1],[-14,0],[-14,0],[-12,-17],[0,-86],[0,-270],[-1,-196],[2,-81],[-1,-35],[1,-31],[-1,-39],[0,-40],[0,-40],[0,-88],[1,-77],[-1,-57],[0,-64],[0,-47],[0,-48],[0,-74],[1,-104],[0,-1],[0,-55],[-2,-47],[0,-30],[0,-33],[0,-31],[0,-167],[-1,-81],[0,-8],[1,-94],[2,-179],[0,-59],[-1,-57],[0,-35],[1,-77],[-1,-42],[0,-51],[0,-49],[-1,-32],[1,-31],[0,-36],[0,-312],[0,-196],[0,-269],[0,-353],[1,-343],[0,-200]],[[94203,42593],[-144,-2],[-175,-2],[-204,-4],[-123,-2],[-47,0],[-153,-2],[-43,-1],[-64,0],[-34,0],[-69,-1],[-184,-3],[-18,0],[-29,0],[-12,0],[-47,-1],[-16,0],[-21,0],[-13,0],[-123,-1],[-18,0],[-19,0],[-21,0],[-15,0],[-38,-1],[-184,-1],[-13,0],[-29,-1],[-19,0],[-12,0],[-56,0],[-47,-1],[-8,0],[-30,1],[-12,0],[-13,0],[-105,2],[-20,0],[-23,0],[-83,2],[-19,0],[-16,0],[-72,1],[-68,2],[-202,4],[-29,0],[-164,0],[-69,0],[-2,0],[-12,0],[-21,0],[-106,0],[-133,0],[-77,0],[-109,0],[-109,0],[-14,0],[-22,0],[-36,0],[-123,0],[-78,0],[-50,0],[-12,0],[-25,1],[-25,0],[-34,0],[-36,1],[-111,1],[-135,2],[-60,0],[-41,1],[-32,0],[-40,1],[-100,1],[-100,2],[-48,1],[-8,0],[-21,0],[-13,1],[-16,0],[-12,0],[-13,0],[-19,-1],[-14,0],[-24,2],[-23,0],[-34,0],[-22,2],[-45,1],[-19,0],[-19,2]],[[89287,42600],[1,722],[1,247],[0,16],[0,57],[0,124],[0,105],[-1,40],[0,56],[0,18],[0,31],[0,82],[0,48],[0,43],[-1,129],[0,164],[0,113],[0,1],[-1,87],[0,93],[-1,165],[-1,125],[0,108],[0,143],[2,289],[-193,-3],[-110,0],[-215,0],[-86,0],[-15,0],[-136,2],[-72,1],[-40,-2],[-71,0],[-52,0],[-48,0],[-48,2],[-45,1],[-30,5],[-17,0],[-27,1],[-16,-2],[-11,1],[-1,373],[0,8],[0,55],[0,69],[0,45],[0,36],[0,32],[0,36],[-1,34],[0,38],[0,29],[0,42],[0,63],[2,44],[-3,167],[-2,175],[54,3],[-1,60],[-1,216],[-1,320],[-1,158],[0,3],[0,124],[1,516],[-2,346],[-1,111],[3,41],[0,40],[0,31],[0,33],[0,69],[-1,47],[0,36],[0,66],[0,126],[0,59],[-1,71],[-3,41],[1,147],[0,50],[0,1],[-62,314]],[[99648,26328],[-60,-1],[-78,0],[-184,-3],[-36,0],[-17,0],[-22,-1],[-22,0],[-37,2],[-46,0],[-81,-1],[-52,0],[-44,0],[-141,-1],[-21,0],[-85,0],[-67,0],[-17,0],[-70,0],[-112,0],[-45,0],[-41,1],[-62,0],[-276,2],[-182,2],[-3,0],[-15,0],[-98,1],[-194,-1],[-36,-1],[-153,-1],[-47,-1],[-114,-1],[-16,0],[-10,0],[-36,0],[-53,-1],[-25,0],[-18,0],[-137,-1],[-27,0],[-85,-1],[-45,1],[-93,0],[-31,-1],[-2,0],[-63,0],[-26,1],[-78,1],[-57,-1],[-85,1],[-28,0],[-123,0],[-93,1],[-76,0],[-104,0],[-12,0],[-79,1],[-17,-2],[-51,0],[-344,1],[-111,1],[-208,0],[-240,-5],[-199,-4],[-208,-4],[-217,-3],[-14,0],[-26,-9],[-14,-2],[-23,9],[-27,4]],[[94089,26311],[0,229],[1,340],[0,10],[0,132],[0,22],[0,18],[0,57],[1,56],[-2,51],[-2,33],[0,40],[0,41],[2,210],[1,40],[1,178],[1,29],[0,183],[-1,195],[0,32],[0,88],[0,214],[0,101],[0,225],[0,58],[-1,260],[0,281],[0,253],[1,115],[0,117],[0,9],[-3,656],[1,65],[-1,157],[0,41],[0,168],[0,184],[0,136],[0,41],[0,73],[-77,-2],[-5,-1],[-61,-1],[-80,2],[-220,0],[-42,1],[-26,1],[-36,1],[-30,0],[-78,1],[-8,0],[-9,0],[-21,0],[-36,3],[-2,-1],[-10,0],[-34,-1],[-3,-1],[-29,-1],[-15,1],[-42,-1],[-5,0],[-40,-2],[-2,-1],[-12,-1],[-106,-1],[-100,0],[-93,-2],[-55,1],[-1,0],[-144,1]],[[92666,31445],[0,350],[0,54],[0,34],[-1,144],[0,265],[-1,221],[-2,170],[0,51],[0,37],[0,366],[0,207],[0,136],[0,62],[1,7],[0,40],[0,131],[0,32],[-1,51],[1,57],[-1,53],[0,72],[0,36],[0,41],[0,52],[1,29],[-1,58],[1,34],[0,3],[0,10],[-1,366],[0,45],[0,101],[0,102],[-1,66],[0,156],[2,58],[2,43],[0,46],[4,200],[-1,136],[0,4],[-2,43],[-2,29],[1,35],[1,68],[0,44],[1,31],[1,89],[0,81],[0,47],[0,44],[0,131],[0,34],[0,66],[-1,65],[0,42],[0,41],[0,2],[0,67],[0,61],[512,4],[51,0],[21,0],[4,0],[31,-1],[13,-1],[17,-3],[12,0],[23,0],[36,2],[0,36],[0,38],[0,64],[2,50],[1,39],[-3,31],[-1,90],[0,80],[1,101],[0,62],[-1,36],[0,40],[0,39],[0,37],[0,15],[0,122],[0,58],[1,66],[0,31],[0,80],[0,75],[-1,95],[0,41],[0,41],[0,61],[0,78],[0,31],[-1,63],[1,57],[0,56],[-1,376],[0,44],[0,103],[-1,122],[0,40],[0,3],[-2,97],[1,50],[127,24],[77,-5],[33,6],[24,0],[357,1],[37,0],[22,0],[59,0],[84,0],[2,33],[0,85],[0,51],[0,55],[0,27],[-1,192],[0,405],[0,67],[0,171],[1,196],[0,217],[0,164],[0,46],[0,80],[0,72],[0,86],[0,83],[0,71],[0,34],[0,43],[0,54],[2,34],[0,39],[-3,36],[1,50],[-1,31],[0,56],[0,38],[-1,19],[0,196],[0,30],[0,170],[0,62],[0,46],[0,119],[0,47],[0,191],[0,31]],[[99980,52117],[-12,-56],[3,-8],[-4,-155],[14,-56],[5,-40],[-1,-52],[-9,-48],[0,-53],[10,-29],[-1,-36],[-1,-34],[0,-11],[0,-33],[-1,-47],[0,-32],[-1,-46],[-1,-47],[0,-38],[-1,-38],[-1,-61],[0,-33],[-2,-67],[0,-44],[-1,-90],[-1,-35],[0,-33],[-1,-36],[-1,-29],[0,-38],[-1,-56],[-1,-60],[-1,-32],[0,-46],[-1,-36],[-1,-78],[-1,-61],[-1,-45],[0,-49],[-1,-30],[0,-42],[-1,-31],[0,-33],[-1,-30],[-1,-49],[-1,-42],[0,-29],[0,-30],[-1,-33],[-1,-54],[0,-34],[1,-15],[0,-97],[0,-51],[0,-57],[-3,-63],[-6,-105],[1,-36],[-1,-30],[0,-32],[-1,-47],[-1,-47],[0,-152],[-1,-60],[-3,-76],[-1,-32],[0,-30],[-1,-36],[0,-46],[-1,-87],[0,-58],[-2,-100],[-1,-80],[0,-14],[0,-18],[-1,-30],[-4,-235],[-10,-216],[-3,-74],[0,-30],[1,-143],[1,-103],[-2,-152],[0,-44],[-1,-10],[0,-28],[-1,-38],[-2,-155],[-2,-157],[-3,-73],[-4,-196],[-2,-100],[-1,-40],[0,-62],[1,-48],[2,-189],[-1,-46],[0,-31],[-1,-40],[-2,-129],[-2,-97],[-1,-55],[-1,-56],[0,-46],[-1,-34],[0,-83],[-1,-82],[0,-16],[-2,-174],[-3,-218],[-1,-129],[-3,-183],[-2,-177],[0,-48],[-1,-38],[0,-33],[-2,-31],[-1,-51],[0,-31],[-1,-43],[-1,-44],[1,-50],[-3,-118],[-1,-92],[-1,-70],[-2,-177],[-3,-242],[-2,-152],[-2,-120],[-2,-177],[-1,-46],[0,-38],[-2,-134],[0,-4],[-2,-108],[-1,-80],[-1,-73],[-1,-86],[-3,-193],[-8,-571],[-2,-185],[-1,-34],[-1,-103],[-3,-189],[-1,-82],[-6,-439],[0,-20],[-2,-27],[0,-61],[-2,-116],[-1,-107],[-1,-35],[-1,-123],[-2,-133],[-1,-65],[-1,-72],[-1,-73],[-1,-73],[0,-33],[-12,-826],[-4,-236],[-4,-237],[-2,-134],[-6,-405],[-2,-146],[-3,-182],[0,-20],[2,-30],[0,-29],[0,-20],[0,-33],[-1,-30],[1,-31],[-2,-140],[0,-7],[-2,-91],[-3,-196],[0,-31],[-1,-30],[0,-40],[0,-30],[-1,-30],[0,-55],[-1,-34],[-1,-35],[1,-36],[0,-44],[-1,-54],[-2,-72],[0,-61],[-1,-36],[-1,-77],[-4,-339],[0,-35],[0,-31],[-2,-170],[-1,-78],[-1,-85],[-2,-127],[-3,-172],[-1,-87],[-4,-265],[-2,-85],[-2,-139],[-1,-82],[-2,-147],[0,-18],[-1,-26],[-1,-80],[-6,-404],[-2,-186],[-1,-118],[0,-1],[-1,-65],[-3,-286],[-5,-299],[-2,-165],[-2,-167],[-2,-122],[-6,-454],[-1,-61],[0,-21],[0,-18],[0,-55],[-4,-296],[-2,-176],[-1,-33],[-1,-71],[-1,-93],[-1,-52],[0,-45],[-1,-88],[-1,-61],[-1,-41],[-6,-477],[-3,-263],[-3,-93],[1,-54],[0,-25],[1,-89],[-2,-42],[-1,-46],[-1,-107],[-1,-184],[-5,-318],[-4,-359],[-1,-68],[-2,-167],[-2,-189],[-3,-259],[-4,-319],[-6,-531],[0,-70],[0,-74],[-1,-40],[-2,-168],[-1,-108],[-1,-119],[-1,-74],[-3,-235],[0,-63],[-3,-251],[-1,-62]],[[62193,50792],[2,-60],[5,-29],[2,-281],[0,-67],[0,-36],[-1,-70],[0,-31],[0,-31],[0,-32],[0,-55],[0,-33],[1,-41],[0,-50],[0,-58],[0,-47],[0,-57],[0,-76],[0,-46],[0,-45],[0,-30],[0,-31],[0,-33],[0,-87],[0,-4],[0,-27],[0,-30],[0,-58],[0,-73],[0,-31],[0,-34],[0,-38],[0,-85],[0,-72],[0,-35],[0,-44],[0,-38],[0,-74],[0,-57],[0,-53],[0,-46],[0,-60],[0,-41],[0,-51],[0,-41],[0,-30],[0,-51],[-1,-69],[0,-37],[0,-32],[0,-31],[1,-60],[0,-37],[0,-44],[0,-33],[-1,-53],[0,-1],[0,-46],[0,-105],[0,-52],[0,-45],[0,-50],[0,-50],[1,-48],[0,-38],[-1,-30],[0,-37],[1,-60],[-1,-34],[0,-42],[0,-46],[0,-80],[0,-38],[0,-23],[0,-45],[0,-30],[0,-47],[0,-35],[0,-36],[0,-48],[6,-55],[0,-98],[0,-53],[0,-63],[0,-47],[-1,-38],[1,-35],[-1,-31],[1,-30],[-1,-41],[0,-31],[0,-47],[0,-31],[0,-53],[0,-42],[1,-41],[0,-24],[0,-15],[0,-43],[-1,-105],[0,-42],[0,-113],[1,-21],[0,-14],[-1,-53],[0,-64],[0,-45],[0,-49],[0,-35],[0,-40],[0,-51],[0,-172],[0,-51],[0,-32],[0,-48],[-1,-192],[0,-69],[0,-32],[1,-35],[0,-33],[0,-36],[0,-41],[0,-57],[0,-32],[0,-35],[0,-40],[-1,-30],[1,-35],[0,-48],[0,-46],[0,-30],[0,-31],[0,-35],[0,-32],[0,-50],[0,-33],[0,-39],[0,-35],[0,-37],[0,-43],[0,-42],[0,-50],[-1,-35],[0,-20],[0,-27],[1,-77],[0,-35],[0,-76],[0,-37],[0,-42],[0,-51],[0,-57],[-1,-41],[1,-57],[0,-38],[0,-35],[0,-44],[0,-40],[0,-42],[0,-38],[0,-91],[0,-44],[0,-40],[-1,-42],[1,-72],[-1,-48],[1,-33],[0,-34],[-1,-46],[0,-40],[0,-36],[1,-36],[0,-46],[-1,-76],[0,-20],[0,-34],[1,-37],[0,-62],[0,-38],[0,-53],[0,-67],[0,-1],[0,-45],[0,-84],[0,-3],[0,-36],[-1,-41],[0,-217],[0,-63],[0,-6],[0,-362],[0,-35],[0,-32],[0,-70],[0,-44],[0,-33],[0,-56],[1,-105],[1,-66],[0,-32],[-1,-35],[0,-41],[-1,-39],[1,-45],[0,-31],[-2,-30],[1,-39],[1,-32],[0,-32],[0,-63],[-1,-64],[0,-35],[0,-43],[1,-38],[0,-59],[0,-37],[0,-44],[-1,-43],[0,-61],[2,-154],[0,-66],[0,-94],[-2,-122],[0,-41],[0,-78],[0,-43],[0,-34],[0,-46],[0,-42],[0,-39],[0,-61],[-1,-35],[0,-30],[1,-30],[0,-35],[0,-41],[0,-46],[0,-41],[0,-46],[0,-55],[0,-55],[-1,-31],[1,-33],[0,-58],[0,-42],[0,-35],[0,-30],[0,-29],[0,-39],[0,-31],[0,-31],[0,-73],[0,-51],[0,-82],[0,-64],[0,-143],[0,-36],[0,-33],[0,-38],[0,-33],[0,-62],[0,-48],[-1,-48],[0,-38],[0,-41],[0,-49],[0,-31],[0,-54],[0,-86],[0,-19],[1,-12],[-1,-62],[0,-59],[0,-79],[0,-80],[1,-112],[1,-43],[0,-33],[0,-103],[-2,-38],[0,-48],[0,-68],[0,-38],[1,-34],[12,-4],[17,0]],[[62234,36596],[0,-80],[-1,-77],[0,-31],[0,-22],[0,-19],[0,-29],[1,-41],[1,-40],[0,-25],[0,-172],[-1,-53],[0,-9],[0,-31],[-1,-217],[0,-57],[0,-46],[0,-38],[0,-37],[0,-57],[-1,-37],[0,-86],[1,-55],[1,-123],[0,-105],[-2,-215],[0,-37],[0,-71],[0,-36],[0,-50],[0,-39],[0,-37],[0,-30],[0,-60],[0,-32],[0,-36],[-1,-93],[0,-45],[1,-74],[-1,-43],[0,-70],[0,-47],[0,-49],[0,-97],[0,-58],[0,-65],[0,-209],[1,-124],[-1,-579],[-1,-592],[-1,-354],[0,-153],[0,-3],[1,-92],[-1,-60],[1,-196]],[[62230,31463],[-60,1],[-93,0],[-216,1],[-42,0],[-57,0],[-148,1],[-44,-1],[-14,0],[-12,0],[-12,0],[-14,0],[-13,0],[-15,0],[-22,0],[-13,1],[-31,0],[-15,0],[-29,0],[-13,-1],[-19,0],[-13,0],[-12,1],[-14,-1],[-19,1],[-12,0],[-44,0],[-19,0],[-15,1],[-19,1],[-13,-2],[-14,1],[-158,-1],[-13,0],[-12,0],[-12,0],[-20,-1],[-20,1],[-58,1],[-18,-1],[-27,1],[-20,-5],[-95,1],[-4,0],[-106,1],[-120,1],[-19,0],[-67,1],[-146,1],[-1,0],[-64,-4],[-12,8],[-28,0],[-65,-1],[-19,0],[-55,0],[-20,0],[-16,1],[-13,-1],[-21,1],[-21,0],[-26,-1],[-39,0],[-26,0],[-25,1],[-15,1],[-80,-3],[-22,0],[-108,1],[-16,1],[-26,0],[-17,0],[-14,1],[-12,0],[-25,0],[-18,0],[-14,0],[-18,0],[-11,0],[-9,0],[-16,1],[-13,-1],[-32,0],[-26,1],[-22,-1],[-19,0],[-19,0],[-17,1],[-30,0],[-16,0],[-16,-1],[-18,1],[-20,0],[-28,0],[-20,0],[-17,0],[-24,0],[-62,0],[-11,1],[-4,0],[-19,1],[-22,-1],[-12,0],[-15,0],[-14,0],[-21,-1],[-3,0],[-10,0],[-22,0],[-27,2],[-19,1],[-32,1],[-12,-1],[-34,0],[-46,-1],[-19,0],[-30,0],[-25,0],[-12,0],[-24,1],[-24,0],[-20,0],[-22,0],[-13,0],[-16,0],[-13,0],[-15,0],[-13,0],[-14,0],[-15,0],[-18,0],[-14,0],[-24,-1],[-13,-1],[-47,0],[-11,0],[-12,-1],[-25,0],[-13,0],[-17,0],[-16,-1],[-17,0],[-17,-1],[-23,0],[-12,0],[-16,-1],[-33,0],[-14,0],[-45,-1],[-36,0],[-18,-1],[-17,0],[-30,-1],[-17,-1],[-35,1],[-16,-1],[-20,0],[-14,-1],[-15,0],[-19,0],[-21,0],[-14,0],[-28,0],[-14,0],[-20,0],[-17,-1],[-14,0],[-13,0],[-20,-1],[-19,0],[-13,0],[-24,-1],[-17,0],[-13,0],[-12,-1],[-32,-1],[-15,0],[-32,0],[-12,-1],[-15,0],[-14,0],[-18,1],[-14,-1],[-13,6]],[[57322,31465],[0,82],[0,47],[0,51],[0,34],[0,32],[0,53],[0,66],[0,32],[0,32],[1,35],[-1,84],[0,84],[0,31],[0,69],[0,56],[0,61],[0,38],[0,78],[0,37],[0,94],[0,40],[0,31],[0,30],[0,53],[0,47],[0,94],[0,101],[0,79],[0,40],[0,62],[0,32],[0,72],[0,33],[0,50],[0,38],[0,72],[0,44],[1,64],[1,44],[0,8],[-2,127],[0,52],[0,66],[0,41],[0,63],[0,60],[1,337],[0,77],[0,37],[0,43],[0,45],[0,55],[0,59],[0,40],[0,38],[0,43],[-1,38],[0,36],[0,30],[0,422],[1,438],[0,36],[0,41],[0,175],[0,8],[0,77],[0,47],[0,43],[-4,220],[-2,200],[-36,-1]],[[68368,38857],[-17,-22],[-17,-4],[-34,18],[-36,30],[-27,10],[-32,-6],[-45,6],[-43,1],[-29,-4],[-31,-27],[-19,-15],[-10,-19],[-17,-10],[-26,-16],[-35,-4],[-69,-1],[-23,2],[-15,0],[-9,-6],[-8,-5],[-38,-6],[-26,-13],[-28,-6],[-17,22],[-11,51],[-21,65],[-18,47],[-8,31],[-17,65],[-22,62],[-16,41],[-24,51],[-37,54],[-21,18],[-20,5],[-14,-3],[-11,-33],[-15,-60],[-26,-46],[-39,-59],[-27,-28],[-19,-2],[-28,38],[-31,70],[-39,58],[-17,30],[-14,47],[-25,86],[-35,39],[-19,-9],[-20,-10],[-15,-24],[-12,-16],[-12,-27],[-5,-52],[-19,-17],[-20,-4],[-22,-5],[-5,2],[-37,14],[-20,37],[-8,16],[-6,16],[-7,22],[-16,52],[-21,100],[-26,142],[-19,73],[-20,55],[-17,-5],[-21,-39],[-25,-16],[-25,1],[-13,12],[-14,14],[-16,9],[-13,3],[-19,-6],[-46,23],[-8,4],[-44,22],[-25,22],[-14,-3],[-16,-28],[-21,-74],[-18,-126],[-15,-44],[-24,-31],[-42,-19],[-19,13],[-14,1],[-71,5],[-38,17],[-30,18],[-42,54],[-39,42],[-41,64],[-9,32],[-33,55],[-18,30],[-6,53],[3,78],[-9,37],[-3,48],[-1,47],[-9,45],[-11,39],[-22,36],[-15,52],[-5,32],[4,71],[9,122],[9,26],[2,8],[3,5],[8,11],[39,50],[6,40],[-1,63],[-8,50],[-16,34],[-19,31],[-19,35],[10,30],[14,27],[-7,38],[-2,38],[-4,28],[-2,24],[-13,10],[-16,18],[-8,31],[-2,29],[-3,31],[-3,34],[-2,35],[-4,37],[-4,50],[-5,36],[-8,31],[-6,32],[-4,25],[-1,9],[-2,34],[0,5],[-1,11],[-2,32],[-3,52],[-5,38],[-8,54],[-6,63],[-18,6],[-4,32],[-4,39],[-7,67],[5,86],[8,48],[12,73],[15,56],[10,39],[13,48],[20,142],[4,32],[10,125],[-3,45],[-12,44],[-7,27],[-18,80],[-14,82],[-2,10],[-2,30],[-1,54],[1,38],[5,29],[17,57],[-1,50],[-6,33],[-10,42],[0,3],[-25,67],[-18,43],[-2,5],[-9,22],[-24,51],[-21,28],[-17,17],[-24,9],[-25,12],[-20,-1],[-13,-1],[-26,-4],[-22,-22],[-58,-30],[-3,-2],[-21,-7],[-37,-22],[-38,-4],[-35,15],[-26,25],[-24,27],[-24,22],[-16,12],[-31,25],[-12,43],[6,29],[12,22],[10,31],[6,27],[0,51],[-3,55],[-6,48],[-4,50],[-1,36],[-1,35],[-1,32],[-9,52],[-13,33],[-12,36],[-4,29],[-4,58],[4,31],[3,30],[1,7],[2,27],[5,36],[0,6],[1,3],[2,35],[5,35],[1,3],[6,48],[5,57],[5,72],[5,52],[0,34],[-11,89],[-21,104],[-4,16],[-32,66],[-21,20],[-34,73],[-6,22],[-33,62],[-42,54],[-9,7],[-56,9],[-37,29],[-18,32],[-25,33],[-17,7],[-11,14],[-24,47],[-55,213],[-10,37],[-41,157],[-3,15],[-28,110],[-37,110],[0,7],[-28,55],[-4,-1],[-52,25],[-17,18],[-22,36],[-13,62],[-9,78],[-4,25],[-52,117],[-27,32],[-42,47],[-44,47],[-11,10],[-12,0],[-24,21],[-37,69],[-7,48],[-12,69],[-24,89],[-9,18],[-17,29],[-12,11],[-49,24],[-24,10],[-38,10],[-58,21],[-49,5],[-49,-23],[-1,-1],[-57,-23],[-68,-10],[-13,11],[-9,18],[-6,40],[0,26],[3,15],[-2,96],[-15,66],[-43,98],[-2,30],[-2,15],[-16,32],[-18,18],[-6,2],[-51,15],[-54,5],[-42,51],[-54,118],[-23,176],[-71,112],[-8,238],[-1,22],[-5,159],[-5,142],[30,213],[10,69],[29,205],[-5,35],[-28,187],[-65,436],[-67,204],[-129,148],[-166,40],[-24,-14],[-12,-6],[-5,-2],[-8,-2],[-25,-15],[-44,8],[-23,-9],[-109,9],[-19,53],[0,35],[-19,56],[-44,123],[-48,91],[-16,-1],[-77,90],[-31,69],[-11,44],[-21,66],[-13,36],[-28,69],[-18,37],[-63,131],[-11,14],[-47,43],[-39,20],[-45,10],[-49,-2],[-3,-3],[-4,4],[-16,11]],[[70838,39820],[-2,-78],[-5,-167],[0,-38],[8,-79],[-1,-116],[-1,-37],[0,-1],[1,-163],[-1,-156],[-1,-171],[0,-96],[1,-18],[1,-14],[-1,-144],[-1,-282],[-1,-125],[-2,-131],[-1,-41],[0,-54],[1,-47],[3,-295],[0,-30],[0,-102],[0,-28],[-1,-188],[0,-35],[0,-38],[0,-141],[0,-86],[0,-297],[0,-44],[-21,-3]],[[70814,36575],[-74,1],[-75,1],[-38,2],[-16,0],[-31,-1],[-80,4],[-21,0],[-21,-1],[-37,0],[-56,1],[-15,1],[-23,0],[-111,4],[-15,-4],[-127,1],[-49,0],[-29,6],[-88,-2],[-94,-1],[-48,0],[-177,1],[-106,0],[-62,0],[-30,0],[-246,1],[-2,0],[-17,0],[-153,0],[-25,0],[-168,0],[-4,0],[-82,2],[-50,0],[-78,-1],[-40,1],[-149,2],[-14,0],[-144,1],[-93,0],[-133,1],[-154,1],[-86,-2],[-29,0],[-175,0],[-63,0],[-71,0],[-35,0],[-26,0],[-18,-1],[-46,0],[-74,1],[-78,0],[-30,0],[-75,1],[-10,0],[-3,0],[-49,0],[-39,0],[-84,1],[-121,1],[-37,1],[-2,0],[-142,-2],[-20,0],[-12,0],[-107,0],[-63,-1],[-21,0],[-71,1],[-16,0],[-60,1],[-64,1],[-52,0],[-22,0],[-48,2],[-72,-1],[-65,0],[-122,0],[-24,-1],[-36,1],[-21,0],[-70,0],[-41,1],[-35,0],[-24,-1],[-48,0],[-68,0],[-64,0],[-1,0],[-18,0],[-83,0],[-85,0],[-30,0],[-2,0],[-14,0],[-24,0],[-20,0],[-19,0],[-14,0],[-24,0],[-77,0],[-11,1],[-120,-1],[-12,1],[-39,-1],[-16,0],[-18,1],[-112,-2],[-25,0],[-23,0],[-24,1],[-15,0],[-83,-1],[-22,0],[-34,1],[-74,0],[-19,-2],[-3,0],[-12,-2],[-36,-1],[-65,-2],[-21,1],[-21,3],[-47,1],[-47,0],[-17,0],[-60,-1],[-46,1],[-18,0],[-62,-1],[-15,0],[-26,0],[-26,0],[-31,0],[-27,0],[-17,1],[-30,0],[-75,-1],[-42,0],[-34,2],[-14,-1],[-1,0],[-175,-1],[-55,0],[-21,-1],[-42,-1],[-29,2],[-26,1],[-35,-2],[-18,-1],[-21,3],[-40,-1],[-34,-2],[-11,1],[-15,0],[-30,0],[-14,0],[-40,1],[-28,0],[-21,0],[-15,0],[-22,0],[-24,0],[-19,1],[-34,1],[-9,0],[-30,-1],[-22,1],[-75,-1],[-72,0],[-39,0],[-14,-2],[-28,1],[-50,2],[-34,0],[-73,-2]],[[89287,42600],[-1,-38],[0,-35],[0,-37],[0,-41],[0,-130],[0,-45],[0,-43],[0,-37],[-1,-239],[0,-215],[-136,1],[-71,0],[-19,0],[-76,1],[-154,1],[-145,0],[-5,0],[-40,1],[-147,-2],[-15,0],[-217,-1],[-69,-1],[-43,0],[-83,-1],[-201,-1],[-54,-1],[-30,0],[-31,0],[-150,-2],[-74,0],[-75,0],[-11,-17],[0,-50],[0,-39],[1,-356],[0,-119],[1,-119],[0,-73],[0,-70],[-1,-204],[-1,-126],[0,-43],[0,-35],[0,-122],[0,-2],[0,-224],[0,-226],[0,-81],[0,-72],[-1,-94],[0,-68],[-1,-103],[0,-126],[0,-93],[2,-113],[4,-242],[-4,-67],[-3,-29],[3,-47],[-1,-41],[1,-38],[1,-44],[0,-351],[0,-56],[-2,-328],[0,-2],[1,-281],[0,-45],[1,-31],[0,-49],[1,-66],[-1,-216],[1,-43],[0,-276],[0,-85],[-1,-234],[-27,-1],[-29,0],[-16,0],[-3,-42],[-2,-96],[0,-4],[-1,-76],[-1,-113],[-1,-41],[4,-32],[-1,-31],[0,-39],[0,-41],[0,-41],[-1,-75],[1,-46],[0,-3],[0,-75],[-1,-33],[0,-30],[0,-79],[0,-79],[0,-95],[0,-216],[1,-411],[0,-375],[0,-231],[0,-44],[0,-108],[0,-70],[0,-48],[-1,-267],[0,-30],[-1,-108],[0,-116],[0,-249],[0,-52],[0,-52],[0,-207],[-1,-180],[0,-33],[0,-444],[0,-104],[-1,-715]],[[87359,31457],[0,-114],[-1,-154],[0,-5],[0,-159],[0,-50],[0,-194],[-2,-633],[2,-178],[0,-20],[1,-106],[0,-42],[-4,-174],[2,-168],[2,-252],[1,-170],[1,-150],[-180,0],[-236,-2],[-200,0],[-11,1],[-20,1],[-14,-1],[-63,1],[-47,0],[-10,-1],[-300,-5],[-220,-3],[-341,0],[-197,0]],[[85522,28879],[-205,3],[-41,0],[-21,1],[-3,0],[-32,2],[-54,2],[-82,-2],[-248,-5],[-136,-3],[-28,-1],[-38,-5],[-26,9],[-36,-1],[-45,1],[-29,0],[-238,-2],[-85,-1],[-32,0],[-194,-2],[-63,0],[-36,-1],[-160,-1],[-14,0],[-68,-1],[-144,0],[-91,3],[-95,3],[-26,0],[-14,1],[-19,1],[-18,1],[-51,1],[-44,-12],[-23,2],[-14,-2],[-1,161],[1,35],[0,421],[0,32],[0,151],[0,51],[0,81],[0,68],[0,286],[3,58],[0,59],[-1,244],[0,68],[-1,125],[0,425],[0,85],[0,76],[0,141],[-26,0],[-98,-1],[-1,0],[-14,0],[-69,0],[-22,0],[-69,-1],[-90,-2],[-56,0],[-106,7],[-6,1],[-60,0],[-39,0],[-67,1],[-17,-5],[-20,0],[-15,1],[-78,8],[-12,2],[-17,0],[-16,0],[-20,0],[-48,-4],[-45,-5],[-32,-3],[-209,-1],[-38,0],[-18,0],[-67,-1],[-2,0],[-1,0],[-49,-1],[-40,1],[-16,0],[-80,1],[-98,1],[-100,0],[-76,2],[-21,0],[-13,1],[-19,-1],[-152,-1],[-116,1],[-24,1],[-112,0],[-107,1],[-50,1]],[[80619,31441],[-1,158],[0,42],[0,134],[-1,127],[0,145],[0,241],[0,146],[1,189],[0,56],[0,30],[1,289],[1,92],[1,287],[0,116],[-2,86],[0,36],[1,181],[0,70],[1,112],[0,32]],[[80621,34010],[0,49],[0,45],[0,30],[0,33],[0,55],[-1,103],[-1,111],[0,97],[-1,25],[0,25],[4,629],[0,81],[-1,30],[0,53],[0,68],[1,38],[0,186],[0,32],[0,35],[0,73],[0,35],[0,37],[0,4],[0,38],[0,39],[0,30],[0,31],[0,56],[0,34],[0,39],[0,1],[1,233],[-1,44],[2,28],[0,2],[-1,37],[0,39],[0,42],[2,6],[5,1],[25,-1],[1,0],[0,78],[0,31],[0,36],[0,38],[0,32],[0,37],[0,75],[0,37],[0,39],[0,127],[0,60],[0,42],[0,33],[0,80],[0,115],[0,43],[0,46],[0,33],[0,35],[0,56],[0,31],[0,51],[0,37],[0,39],[0,44],[0,120],[0,46],[0,32],[0,127],[0,80],[0,1],[0,36],[0,31],[0,73],[0,33],[-1,163],[0,40],[1,193],[1,34],[0,40],[-1,117],[1,39],[0,31],[0,59],[0,50],[0,35],[0,33],[0,31],[0,44],[-2,88],[0,352],[0,104],[0,67],[0,58],[0,264],[0,155],[0,217],[1,224],[1,38],[1,221],[1,165],[1,78],[-1,212],[0,394],[-1,297],[0,62],[20,15],[15,9],[38,19],[15,7],[25,-11],[55,42],[49,41],[20,41],[11,37],[9,66],[9,115],[13,179],[13,171],[6,82],[0,30],[-3,13],[-6,38],[-9,26],[-2,81],[4,26],[12,26],[7,3],[15,5],[11,22],[20,74],[10,59],[2,33],[47,155],[13,32],[14,35],[9,18],[29,37],[33,41],[21,11],[8,4],[9,21],[11,24],[10,21],[9,37],[0,1],[-2,21],[21,42],[21,43],[16,63],[2,45],[49,136],[20,37],[16,15],[22,-2],[16,-2],[9,-14],[29,-22],[45,-34],[45,-22],[18,0],[18,11],[1,1],[12,25],[11,37],[0,55],[-9,48],[-2,37],[-7,37],[-20,96],[-20,163],[-5,52],[-6,118],[0,55],[12,37],[28,85],[9,17],[5,9],[26,26],[18,16],[3,2],[33,12],[27,6],[2,1],[2,1],[1,9],[15,0],[22,6],[29,6],[7,4],[5,10],[2,5],[4,-3],[1,-1],[64,7],[21,11],[19,13]],[[80621,34010],[-100,-4],[-50,2],[-6,1],[-232,-10],[-155,0],[-98,0],[-113,-1],[-15,0],[-26,0],[-9,0],[-7,0],[-18,0],[-65,-1],[-117,-2],[-20,0],[-60,-1],[-56,-1],[-73,-1],[-74,-1],[-25,0],[-107,-1],[-142,-1],[-17,0],[-44,1],[-57,1],[-34,0],[-86,1],[-31,-4],[-14,1],[-63,-1],[-16,-1],[-8,3],[-9,2],[-239,-3],[-55,-1],[-50,-1],[-50,-1],[-28,0],[-80,1],[-106,2],[-16,0],[-48,-2],[-11,2],[-20,2],[-82,-2],[-22,-1],[-12,1],[-18,-2],[-2,0],[-13,0],[-17,2],[-22,0],[-18,1],[-12,1],[-27,0],[-21,0],[-20,1],[-12,0],[-12,0],[-56,1],[-15,0],[-12,0],[-23,0],[-19,0],[-13,1],[-19,1],[-14,-1],[-20,1],[-61,3],[-74,2],[-19,1],[-169,4],[-50,1],[-12,0],[-35,1],[-73,2],[-25,1]],[[76952,34010],[0,136],[3,172],[1,60],[1,321],[0,104],[0,1],[-1,40],[0,31],[-1,201],[-1,53],[1,151],[1,321],[-1,283],[-1,540],[2,106],[0,49],[0,35],[0,90],[0,39],[0,51],[0,51],[0,55],[0,56],[0,52],[0,45],[0,74],[0,33],[0,30],[0,33],[0,29],[0,31],[0,31],[0,31],[0,30],[0,60],[0,36],[0,6],[0,29],[0,62],[0,62],[0,82],[0,54],[0,50],[-1,71],[1,44],[0,159],[0,77],[-5,70],[-30,435],[-1,1],[-2,2],[-6,-25],[0,-2],[-10,-29],[-2,-61],[-9,-46],[-11,-54],[-5,-30],[-8,-47],[-9,-25],[-12,-29],[-8,-20],[-18,-41],[5,-43],[-4,-38],[-9,-34],[-12,-6],[-16,-6],[-11,-33],[-10,-30],[-10,-21],[-12,-23],[-20,-15],[-14,-6],[-16,3],[-12,3],[-13,5],[-7,-27],[-12,-6],[-17,-3],[-12,0],[-13,7],[-11,17],[2,33],[-8,21],[-13,10],[-15,12],[-12,10],[-17,13],[-11,13],[-14,23],[2,31],[-10,17],[-16,16],[-12,5],[-15,15],[-12,15],[-12,18],[-16,23],[-12,18],[-23,43],[-13,24],[-19,23],[-13,7],[-12,-6],[-14,-11],[-14,4],[-12,16],[-13,-7],[13,-7],[-12,-10],[-12,-4],[-4,-2],[-9,-4],[-13,-4],[-16,10],[-3,1],[-9,2],[-12,5],[-17,6],[-12,7],[-28,2],[-15,5],[-13,-13],[-12,-18],[-18,-10],[-11,-12],[-17,-17],[-12,-12],[-14,-12],[-14,-18],[-12,-14],[-11,-13],[-18,-32]],[[51130,36589],[-56,-4],[-8,0],[-133,5],[-88,3],[-25,1],[-67,3],[-22,0],[-56,5],[-32,0],[-33,0],[-38,0],[-30,1],[-20,0],[-57,1],[-98,-1],[-56,-1],[-1,0],[-45,-1],[-201,-3],[-100,-2],[-129,-2],[-106,-1],[-121,12],[-199,-1],[-22,0],[-99,2],[-13,0],[-19,0],[-17,1],[-33,-1],[-18,2],[-12,0],[-31,3],[-66,-5],[-16,-1],[-340,0],[2,-144],[-1,-93],[0,-44],[0,-97],[0,-36],[0,-34],[0,-34],[0,-335],[0,-82],[0,-77],[0,-39],[0,-178],[0,-40],[0,-36],[0,-47],[0,-36],[-1,-31],[0,-40],[0,-41],[0,-31],[0,-43],[0,-30],[0,-42],[0,-43],[1,-42],[-1,-37],[1,-46],[0,-31],[2,-31],[-3,-57],[1,-29],[0,-32],[0,-119],[-1,-37],[-1,-57],[0,-303],[0,-13],[0,-250],[0,-60],[-1,-316],[2,-218],[0,-86],[-1,-602],[0,-73],[0,-616],[0,-35],[0,-84],[0,-33],[0,-44],[0,-35],[0,-91],[0,-109],[0,-49],[0,-34],[0,-109],[0,-39],[0,-39],[0,-159],[0,-74],[0,-4],[0,-78],[1,-59],[0,-81],[0,-33],[0,-33],[0,-32],[0,-34],[0,-254],[0,-81],[0,-94],[0,-115],[0,-38],[1,-45],[0,-13],[0,-56],[0,-40],[0,-39],[0,-35],[0,-35],[1,-73],[-1,-170],[0,-67],[0,-103],[-2,-31],[0,-41],[1,-152],[2,-231]],[[48725,28896],[-25,0],[-80,0],[-101,0],[-39,-1],[-20,1],[-53,-1],[-41,0],[-52,1],[-1,0],[-73,0],[-17,0],[-39,0],[-50,0],[-24,0],[-25,1],[-27,0],[-13,0],[-15,0],[-28,0],[-44,0],[-52,1],[-22,0],[-30,0],[-38,0],[-46,0],[-137,1],[-35,1],[-26,0],[-13,0],[-28,0],[-32,0],[-38,0],[-15,0],[-16,0],[-55,0],[-15,0],[-46,0],[-18,0],[-92,-1],[-16,0],[-4,0],[-55,-1],[-20,0],[-18,0],[-4,0],[-19,0],[-27,0],[-26,0],[-19,0],[-73,-1],[-37,0],[-40,-1],[-164,-1],[-1,206],[0,224],[0,66],[0,50],[0,123],[-1,63],[0,39],[1,89],[-1,46],[1,103],[1,193],[0,5],[-2,75],[0,2],[-54,1],[-47,0],[-25,0],[-19,0],[-38,0],[-24,1],[-22,-1],[-18,1],[-13,-1],[-53,1],[-16,0],[-16,0],[-59,0],[-23,0],[-71,0],[-18,1],[-21,-1],[-69,1],[-22,0],[-39,2],[-47,0],[-38,-1],[-62,1],[-22,0],[-43,-1],[-36,0],[-15,1],[-23,-1],[-14,0],[-15,0],[-28,-1],[-3,0],[-100,0],[-76,0]],[[45491,30182],[1,1],[9,58],[10,26],[16,36],[0,1],[12,28],[9,25],[7,23],[8,33],[1,9],[3,24],[1,39],[7,59],[2,43],[3,31],[0,92],[-1,101],[-1,41],[1,40],[1,64],[0,31],[0,5],[0,23],[1,23],[2,58],[7,42],[11,29],[0,1],[25,47],[1,1],[31,41],[12,16],[16,21],[1,1],[14,7],[1,1],[2,-1],[12,-10],[1,-1],[19,-31],[12,-19],[11,-13],[13,-4],[61,30],[22,16],[25,11],[15,3],[15,-1],[40,-2],[19,1],[71,-2],[26,6],[27,14],[23,-2],[66,35],[12,21],[9,25],[3,29],[0,1],[-15,28],[-14,15],[0,50],[1,0],[13,33],[1,2],[17,23],[3,3],[8,8],[14,17],[6,7],[12,12],[9,20],[1,73],[0,1],[-9,43],[-1,0],[-1,2],[-12,15],[-3,4],[-1,1],[-20,1],[-4,1],[-39,12],[-20,14],[-13,24],[0,2],[-8,27],[0,2],[0,27],[1,44],[-9,34],[0,1],[-16,44],[-4,8],[-6,14],[-9,24],[-13,20],[-1,0],[-20,1],[-15,-10],[-43,1],[-21,1],[-12,-5],[-14,-7],[-3,-2],[-4,0],[-33,3],[-25,-16],[-7,-4],[-9,-5],[-10,-4],[-6,-3],[-39,-20],[-27,-7],[-20,-9],[-21,-15],[-27,-26],[-14,-12],[-11,-3],[-1,-1],[-14,-8],[-14,-1],[-41,-10],[-13,0],[-14,-5],[-30,-21],[-21,-4],[-13,5],[-3,2],[-9,5],[-14,-7],[-16,9],[-11,28],[0,1],[-1,2],[-2,9],[-6,26],[-9,21],[-31,11],[-20,-3],[-12,-6],[-12,-8],[-24,6],[-24,20],[-42,30],[-23,9],[-18,13],[-16,7],[-7,3],[-4,1],[-18,3],[-21,10],[-12,3],[-2,1],[-17,-4],[-4,-2],[-10,-5],[-10,0],[-2,0],[-20,-5],[-32,-13],[-26,-3],[-34,5],[-19,8],[-46,28],[-10,16],[-38,51],[0,1],[-10,23],[-10,17],[-12,25],[-9,24],[-1,1],[-8,32],[-10,26],[0,1],[-11,74],[0,2],[0,1],[0,33],[0,2],[0,1],[30,64],[4,10],[16,50],[6,26],[5,66],[0,41],[0,1],[-6,50],[-1,2],[-10,35],[-9,23],[-1,1],[-13,28],[-11,38],[-2,8],[-7,30],[-15,39],[-2,8],[-5,17],[-4,28],[-5,37],[-1,3],[-2,37],[-2,55],[1,39],[2,30],[7,36],[2,9],[-3,33],[-24,6],[-1,0],[-15,-6],[-12,0],[-21,9],[-31,44],[-13,28],[-7,26],[-4,115],[-2,28],[0,2],[0,9],[-1,72],[-3,56],[0,1],[13,31],[15,3],[13,-27],[0,-1],[4,-35],[6,-28],[16,-44],[12,-18],[15,-6],[13,1],[18,13],[11,18],[5,63],[-5,33],[0,1],[-11,29],[-1,2],[-18,29],[-5,36],[0,1],[9,24],[0,2],[12,25],[7,6],[5,5],[21,12],[1,1],[1,0],[14,-7],[1,0],[14,-15],[13,-10],[13,-7],[14,2],[19,13],[13,23],[8,39],[0,1],[-8,30],[0,1],[-1,0],[-54,22],[-3,1],[-26,15],[-29,39],[-19,28],[-14,41],[-10,46],[-8,45],[-4,35],[-3,65],[3,21],[4,36],[2,39],[-2,36],[0,11],[-2,32],[4,60],[0,3],[-4,42],[-4,86],[0,2],[4,49],[0,1],[2,9],[4,23],[8,49],[1,11],[1,1],[13,21],[1,1],[27,-10],[25,-14],[19,-8],[33,0],[13,6],[14,18],[17,33],[5,29],[6,41],[1,42],[-2,8],[-4,16],[-2,10],[-13,28],[-7,26],[-11,40],[-5,27],[-7,36],[-6,52],[1,37],[6,55],[4,89],[0,3],[1,59],[3,40],[6,57],[-4,52],[-2,29],[-4,55],[-2,54],[-4,36],[-3,40],[-1,34],[0,1],[11,10],[14,-10],[10,-25],[9,-15],[12,-20],[12,0],[19,12],[15,23],[8,45],[-2,32],[-9,21],[-19,21],[-3,0],[-19,4],[-15,5],[-16,14],[-14,23],[-6,23],[-1,2],[-2,29],[-1,3],[0,40],[6,68],[1,5],[4,29],[6,33],[5,38],[7,29],[1,4],[7,19],[1,5],[19,17],[22,26],[1,1],[14,28],[2,3],[10,32],[0,2],[2,34],[0,3],[-1,5],[-3,23],[-15,23],[0,1],[-13,4],[-4,2],[-15,-3],[-1,0],[-63,-63],[-27,-11],[-11,-2],[-9,-2],[-5,1],[-7,1],[-39,-1],[-14,-7],[-15,1],[-17,4],[-30,7],[-12,6],[-13,17],[-5,77],[0,3],[-6,52],[-7,37],[-6,27],[0,1],[-9,25],[-14,31],[-17,27],[-17,15],[-37,25],[-2,0],[-17,0],[-3,0],[-2,-1],[-13,-9],[-23,-23],[-30,-5],[-20,0],[-1,0],[-16,-17],[0,-1],[-1,-2],[-10,-26],[-1,-1],[-1,-2],[0,-1],[-2,-42],[-1,-66],[-1,-7],[1,-3],[3,-41],[0,-36],[13,-51],[0,-2],[4,-39],[0,-1],[0,-3],[-5,-43],[-1,-4],[0,-2],[-11,-35],[0,-1],[-11,-18],[-29,-43],[-19,-35],[-12,-34],[-5,-30],[0,-1],[-11,-21],[-29,-2],[-6,6],[-27,27],[-14,16],[-4,5],[-19,13],[-14,-2],[-1,-1],[-20,-16],[-1,-1],[-13,-20],[-2,-4],[-9,-20],[-1,-2],[-6,-39],[-1,-37],[5,-28],[16,-38],[18,-45],[4,-31],[3,-42],[-7,-36],[-9,-30],[-16,-8],[-34,55],[-1,1],[-11,18],[-1,2],[-2,1],[-27,17],[-5,3],[-13,0],[-20,-6],[-32,-18],[-2,-3],[-20,-24],[-4,-10],[-27,-61],[-6,-29],[0,-1],[-3,-60],[0,-4],[0,-65],[-3,-43],[-9,-40],[-10,-23],[-19,-15],[-26,0],[-1,1],[-14,3],[-1,0],[-29,26],[-1,1],[-16,30],[-1,1],[0,1],[-11,30],[-18,50],[-15,40]],[[43819,35620],[-6,20],[-6,22],[-1,1],[0,1],[-3,33],[-4,42],[-6,41],[-12,43],[-12,22],[-18,30],[-12,31],[-8,36],[-11,32],[-1,1],[-6,31],[-2,12],[-1,7],[-3,14],[0,1],[-22,18],[-15,14],[-18,26],[-17,8],[-6,1],[-9,2],[-31,14],[-12,10],[0,1],[-14,28],[-19,18],[-1,0],[-3,0],[-18,0],[-3,-2],[-18,-10],[-4,-2],[-2,-3],[-11,-19],[-2,-4],[-11,-14],[-12,-1],[-13,15],[-8,23],[-3,40],[-7,29],[-11,39],[0,1],[-4,68],[0,7],[-3,27],[-1,8],[-1,7],[-5,18],[-14,32],[-16,18],[-18,35],[-1,1],[-13,11],[-1,0],[-22,-4],[-2,0],[-1,-1],[-12,-7],[-22,-3],[-2,0],[-23,-12],[-20,8],[-21,35],[-11,21],[-18,29],[-10,14],[-13,21],[-26,26],[-15,38],[-6,31],[-6,33],[-5,28],[-7,26],[-12,49],[-18,50],[-1,14],[-2,18],[-1,1],[-9,23],[-13,26],[-3,6],[-15,39],[-7,28],[-9,18],[-4,5],[-11,14],[0,40],[2,42],[-5,34],[-5,35],[-1,4],[-1,35],[1,55],[2,32],[2,40],[7,39],[14,57],[1,4],[17,24],[10,19],[10,16],[20,33],[13,9],[24,3],[16,-1],[25,-8],[22,-12],[21,-12],[3,-4],[17,-13],[11,-13],[16,-10],[5,0],[11,2],[18,-13],[14,-7],[13,5],[3,27],[2,15],[-7,55],[-8,34],[0,2],[-3,19],[-3,17],[0,5],[2,56],[-3,48],[-12,24],[-3,1],[-24,5],[-13,9],[-9,23],[-5,41],[6,28],[20,32],[17,5],[2,1],[14,8],[16,16],[20,5],[10,23],[-4,31],[-8,38],[-14,49],[-12,40],[-10,70],[-2,8],[-15,57],[-7,27],[-10,44],[-8,36],[1,34],[0,8],[3,34],[-11,50],[-3,64],[-4,28],[-23,42],[-16,5],[-13,0],[-6,-5],[-6,-4],[-18,-26],[-12,0],[-23,13],[-13,4],[-40,6],[-12,7],[-15,26],[-2,41],[45,101],[1,4],[15,40],[1,42],[-9,26],[-12,16],[-15,15],[-12,15],[-30,48],[-14,33],[-19,44],[-14,27],[-18,-17],[-13,-12],[-12,15],[-1,2],[-12,28],[-10,22],[-9,24],[-10,17],[-24,4],[-10,42],[9,46],[1,4],[4,43],[6,44],[5,44],[-2,34],[-1,38],[-2,54],[-5,53],[-10,44],[-8,37],[-4,42],[-6,44],[-4,38],[-5,52],[-2,35],[-5,57],[-4,31],[-6,36],[-3,18],[-3,13],[-1,0],[-21,5],[-15,-6],[-11,-15],[-30,-34],[-24,-13],[-10,18],[-2,28],[-1,14],[-3,55],[0,1],[-3,31],[-4,32],[-5,32],[-10,42],[-4,41],[-5,26],[-1,9],[-4,31],[0,1],[11,8],[14,-4],[1,0],[20,12],[2,1],[20,40],[14,14],[21,28],[1,0],[11,14],[4,4],[14,12],[5,6],[5,7],[4,4],[2,9],[7,24],[3,55],[0,17],[-1,16],[-4,48],[-7,44],[-9,39],[2,49],[2,47],[31,210],[0,3],[1,13],[2,57],[2,3],[13,21],[5,5],[13,12],[9,15],[7,9],[9,42],[2,12],[9,43],[5,54],[1,5],[-1,27],[-1,20],[0,6],[-8,40],[-2,9],[-5,22],[-17,36],[0,1],[-9,0],[-48,-1],[-2,3],[-9,9],[-8,8],[-1,8],[-2,30],[-1,8],[1,1],[36,49],[11,13],[17,21],[21,35],[38,27],[11,29],[1,5],[8,54],[4,36],[4,35],[0,42],[0,19],[0,4],[-3,33],[0,2],[-1,1],[-20,36],[-12,30],[-6,14],[-2,1],[-6,2],[-24,10],[-1,1],[-4,-4],[-20,-15],[-17,-14],[-1,0],[-39,0],[-8,0],[-23,5],[-37,9],[-4,2],[-33,19],[-39,30],[-14,27],[0,5],[0,39],[0,6],[3,49],[1,8],[0,11],[0,13],[0,78],[0,1],[-12,45],[-11,11],[-4,3],[-20,-23],[-36,-29],[-40,-3],[-7,0],[-18,0],[-18,11],[-13,9],[-24,8],[-3,1],[-22,17],[-3,2],[-3,2],[-11,23],[-5,21],[-7,30],[-9,81],[-2,48],[1,3],[0,11],[8,19],[6,4],[11,-1],[1,0],[20,13],[5,0],[3,-8],[1,-7],[2,-27],[2,-7],[4,-8],[7,1],[10,9],[4,5],[4,11],[1,14],[3,30],[0,19],[-2,61],[-2,32],[-1,13],[-2,21],[-2,12],[-19,93],[-9,48],[-7,36],[-1,1],[-1,6],[-5,35],[-1,37],[-5,124],[0,7],[8,81],[2,28],[4,37],[-1,1],[3,83],[0,1],[-4,10],[-8,10],[0,1],[-14,10],[-1,0],[-5,0],[-8,-6],[-1,0],[-10,-21],[0,-1],[-4,-14],[-1,-11],[-1,-58],[-5,-39],[-2,-15],[-4,-9],[-3,-6],[-10,0],[-5,3],[-14,16],[-9,15],[-3,8],[-3,10],[0,18],[4,10],[12,25],[5,14],[8,33],[3,22],[0,55],[-4,16],[-7,17],[0,1],[-1,1],[-9,12],[-31,30],[-4,4],[-23,9],[-29,-1],[-3,-3],[-5,-3],[-3,-3],[-3,-2],[-2,-5],[0,-6],[0,-22],[2,-16],[3,-14],[2,-13],[0,-21],[-1,-7],[-3,-10],[-3,-9],[-8,-7],[-11,-4],[-8,1],[-5,3],[-1,1],[-6,8],[-15,38],[-1,2],[-13,21],[-27,38],[-40,41],[-6,9],[-3,10],[-31,131],[-2,7],[-1,9],[0,12],[3,13],[5,14],[9,18],[14,21],[1,1],[8,15],[3,16],[0,1],[0,2],[1,9],[0,21],[0,4],[-1,2],[0,5],[-9,38],[-6,16],[0,2],[-5,8],[-5,3],[-3,-3],[-4,-9],[-4,-20],[0,-1],[-6,-13],[-8,-9],[-1,-1],[-10,-2],[-8,3],[-7,9],[-6,12],[-6,17],[-4,29],[1,9],[4,8],[3,48],[-1,5],[-32,136],[-3,5],[-7,3],[-6,-2],[-2,-2]],[[43819,35620],[1,-46],[0,-149],[0,-48],[0,-56],[-32,0],[-14,22],[-27,-1],[-33,0],[-42,0],[-62,-1],[-96,-1],[-41,0],[-18,0],[-31,-1],[-25,0],[-31,1],[-27,0],[-38,0],[-14,0],[-20,0],[-18,1],[-14,0],[-25,0],[-13,0],[-38,0],[-34,0],[-46,-1],[-25,0],[-19,0],[-13,0],[-16,0],[-16,0],[-54,2],[-22,1],[-37,2],[-84,2],[-1,0],[-19,0],[-18,0],[-80,0],[-62,-1],[-42,-1],[-22,1],[-55,0],[-40,1],[-69,0],[-12,1],[-55,1],[-50,0],[-39,1],[-64,1],[-23,0],[-35,0],[-22,0],[-14,1],[-17,0],[-15,0],[-3,0],[-28,0],[-37,0],[-13,-16],[0,-96],[1,-59],[0,-46],[0,-72],[0,-144],[0,-55],[0,-52],[0,-58],[0,-52],[0,-34],[0,-31],[0,-107],[0,-54],[0,-76],[0,-40],[0,-101],[1,-49],[-1,-54],[-3,-104],[-20,1],[-17,0],[-21,0],[-28,0],[-16,0],[-46,1],[-25,0],[-30,0],[-76,1],[-26,0],[-33,0],[-23,-25],[2,-51],[-7,-48],[-15,-37],[-12,-24],[-8,-22],[-5,-43],[2,-48],[11,-69],[1,-48],[-2,-29],[0,-49],[3,-38],[4,-29],[8,-61],[-2,-41],[-4,-29],[-2,-29],[-4,-47],[-2,-34],[5,-39],[13,-42],[3,-40],[10,-42],[-11,-41],[-9,-28],[-15,-16],[-18,-22],[-9,-25],[-2,-42],[0,-31],[7,-44],[12,-33],[13,-11],[22,40],[18,10],[12,10],[14,29],[11,30],[15,-9],[21,-48],[12,-12],[24,0],[12,-6],[12,-8],[-1,-45],[8,-27],[13,-9]],[[41757,32753],[1,0],[-1,0]],[[41757,32753],[-14,-1],[-49,1],[-76,0],[-12,0],[-15,0],[-29,0],[-22,1],[-41,0],[-14,0],[-58,1],[-21,0],[-46,0],[-12,0],[-32,0],[-21,-1],[-36,-1],[-40,-1],[-33,-1],[-36,-1],[-68,1],[-32,1],[-103,0],[-18,0],[-17,1],[-17,-1],[-38,1],[-40,0],[-8,0],[-8,0],[-15,0],[-45,0],[-25,0],[-20,0],[-40,0],[-20,1],[-28,0],[-12,0],[-43,0],[-18,0],[-269,-2],[-125,2],[-2,0],[-207,-7],[-149,-3],[-31,0],[-25,4],[-22,2],[-18,-1],[-12,2],[-12,-6],[-19,1],[-27,-1],[-15,0],[-16,1],[-36,-1],[-2,0],[-28,5],[-52,-1],[-19,-1],[-12,1],[-12,0],[-13,0],[-13,-1],[-14,0],[-70,-1],[-15,0],[-192,-2],[-24,0],[-131,-5],[-15,-1],[-23,0]],[[38915,32739],[-2,431],[0,43],[0,42],[0,34],[0,42],[0,65],[-1,36],[0,79],[0,37],[0,53],[-14,-1],[-72,1],[-15,0],[-23,0],[-63,0],[-18,0],[-1,84],[0,111],[0,81],[-1,126],[-4,30],[-14,0],[-33,0],[-34,1],[-29,0],[-26,1],[-28,-1],[-25,1],[-13,0],[-18,0],[-18,0],[-27,0],[-17,0],[-24,-1],[-27,0],[-31,1],[-24,0],[-19,0],[-1,275],[-1,153],[-1,376],[1,53],[0,48],[0,62],[0,59],[0,65],[0,82],[0,78],[1,34],[0,38],[0,35],[0,36],[0,31],[0,63],[0,176],[1,46],[-2,109],[2,404],[0,174],[1,219],[-38,-2],[-91,0],[0,107],[0,36],[1,37],[-1,30],[0,41],[0,30],[0,39],[-1,115],[0,102],[0,26],[0,38],[0,155],[1,530],[0,4],[0,26],[0,399],[1,41],[0,42],[0,9],[0,25],[0,38],[0,207],[0,67],[-1,195],[0,67],[0,34],[-10,132],[-32,-1],[-13,0],[-17,1],[-16,0],[-12,-1],[-15,0],[-16,0],[-15,0],[-17,0],[-12,0],[-16,0],[-15,0],[-22,1],[-22,-1],[-13,1],[-45,-2],[-126,7],[-69,4],[-14,-4],[-12,-3],[-14,-1],[-13,-4],[-14,3],[-22,0],[-18,-1],[-58,3],[-55,-1],[-23,0],[-30,0],[-19,-1],[-20,2],[-37,3],[-149,4],[-95,-6],[-19,-1],[-64,-2],[-48,-1],[-17,0],[-64,-2],[-36,-1],[-45,-2],[-15,5],[-43,0],[-34,-1],[-154,-3],[-49,2],[-112,-1],[-40,0],[0,249],[0,56],[0,157],[0,54],[4,533],[0,50],[0,49],[0,45],[0,35],[0,36],[0,33],[0,42],[0,154],[0,43],[0,38],[0,44],[2,30],[-2,30],[1,30],[-1,36],[-5,388],[0,49],[0,7],[0,27],[-1,272],[0,62]],[[92666,31445],[-168,1],[-73,0],[-72,0],[-15,-1],[-12,0],[-26,0],[-15,0],[-22,0],[-13,0],[-20,0],[-29,0],[-13,1],[-38,1],[-125,-7],[-39,3],[-86,4],[-79,0],[-18,0],[-40,0],[-17,1],[-44,0],[-44,0],[-22,0],[-103,1],[-255,-3],[-41,0],[-37,0],[-36,-1],[-137,-1],[-48,-1],[-31,1],[-89,-2],[-98,0],[-12,0],[-50,0],[-16,-1],[-70,0],[-35,-1],[-37,-1],[-31,0],[-68,-1],[-111,1],[-67,1],[-52,0],[-112,4],[-21,1],[-124,0],[-14,1],[-98,5],[-52,-1],[-14,0],[-17,1],[-24,1],[-20,0],[-19,1],[-3,0],[-48,-2],[-68,0],[-33,0],[-4,0],[-8,0],[-19,0],[-17,0],[-16,0],[-28,0],[-13,0],[-12,0],[-21,0],[-21,0],[-8,0],[-12,0],[-63,0],[-14,0],[-21,0],[-31,0],[-2,0],[-15,2],[-23,2],[-26,0],[-27,-1],[-119,-2],[-42,0],[-11,-1],[-4,0],[-53,-1],[-32,0],[-14,0],[-12,0],[-12,0],[-13,0],[-25,0],[-24,-1],[-23,0],[-23,0],[-65,-1],[-74,-1],[-20,0],[-56,1],[-85,1],[-18,0],[-31,-1],[-13,0],[-78,-2],[-43,-1],[-61,0],[-29,0],[-31,0],[-48,0],[-59,1],[-77,0],[-24,1],[-12,1],[-22,0],[-12,1],[-39,2],[-4,4],[-7,8],[-10,-19],[-15,6],[-18,-5],[-11,-20],[-14,13],[-12,-6],[-9,-3],[-11,-4],[-14,-12],[-11,15],[-11,-16],[-11,8],[-5,27],[-2,12],[-18,24],[-16,3],[-15,1],[0,-16],[0,-17],[-13,1],[-10,1],[-32,1],[-13,0],[-17,-4],[-16,-3],[-14,0],[-73,4],[-79,3]],[[38915,32739],[0,-77],[0,-132],[0,-37],[1,-138],[0,-47],[0,-40],[1,-45],[0,-46],[0,-84],[-1,-44],[1,-40],[0,-50],[0,-80],[0,-90],[1,-30],[5,-49],[-4,-35],[-1,-30],[0,-60],[0,-33],[0,-34],[0,-59],[0,-118],[0,-31],[0,-37],[0,-138],[0,-106],[0,-5],[0,-61],[0,-82],[0,-32],[0,-39],[0,-111],[0,-104],[0,-42],[0,-158],[-1,-34],[0,-53],[0,-45],[-1,-95],[1,-152],[2,-215],[-1,-61],[0,-98],[0,-92],[0,-31],[0,-208],[0,-102],[0,-79],[0,-458],[0,-215],[0,-31],[0,-27],[1,-529],[1,-181],[-1,-106],[0,-273],[0,-77],[0,-53],[0,-31],[0,-35],[0,-31],[0,-46],[0,-83],[0,-40],[0,-38],[0,-46],[0,-84],[0,-51],[0,-43],[0,-65],[0,-37],[0,-39],[0,-137],[0,-33],[-10,-22],[-27,-1],[-17,0],[-34,0],[-15,0],[-50,1],[-31,0],[-14,0],[-31,0],[-14,0],[-25,0],[-15,0],[-25,0],[-12,0],[-37,0],[-26,0],[-25,0],[-81,0],[-67,-1],[-58,0],[-12,0],[-67,1],[-108,0],[-16,0],[-17,1],[-17,0],[-15,-1],[-36,1],[-22,0],[-22,-1],[-19,0],[-31,0],[-25,0],[-23,0],[-22,0],[-1,0],[-29,-1],[-15,-1],[-15,1],[-11,0],[-5,1],[-36,-1],[-23,2],[-12,-1],[-12,0],[-33,0],[-18,-1],[-25,1],[-24,0],[-63,-1],[-41,-1],[-24,0],[-51,0],[-27,-1],[-23,0],[-39,0],[-18,0],[-25,-1],[-21,1],[-18,0],[-30,0],[-30,-1],[-20,0],[-40,0],[-23,-1],[-17,2],[-43,0],[-37,-1],[-146,-24],[-1,0]],[[36857,26291],[-14,19],[-8,15],[-18,35],[-9,10],[-10,12],[-19,24],[-13,18],[-21,24],[-19,40],[0,2],[-1,2],[-9,33],[-12,42],[0,1],[-1,2],[-6,14],[-17,26],[-1,4],[-19,53],[-11,32],[-1,0],[-13,15],[-17,44],[-14,30],[0,1],[-1,3],[-7,22],[-8,41],[-12,43],[0,1],[-1,1],[-22,38],[-1,3],[0,1],[-4,16],[-11,53],[-1,1],[-1,1],[-6,8],[-10,24],[-1,1],[0,1],[-1,9],[-12,101],[-1,2],[-1,1],[-17,35],[-13,32],[0,1],[-1,1],[-6,38],[-2,25],[-1,1],[-1,1],[-2,2],[-15,12],[-9,16],[-18,31],[-1,3],[-22,65],[-22,67],[-1,3],[-30,69],[-35,68],[-37,74],[-18,27],[-17,22],[-13,-1],[-15,4],[-8,18],[-17,30],[-14,10],[-14,17],[-10,19],[-24,37],[-42,56],[-27,54],[-40,59],[-44,80],[-26,46],[-1,2],[0,1],[-16,124],[-1,1],[0,1],[-32,28],[-14,16],[-22,16],[-16,5],[-21,-1],[-18,-1],[-20,8],[-21,15],[-24,12],[-13,4],[-13,11],[-35,21],[-18,3],[-14,-13],[-35,3],[-19,-12],[-30,-9],[-15,-23],[-10,-26],[-3,-23],[-3,-21],[-4,-38],[1,-31],[-8,-19],[-6,-17],[-11,-24],[-15,-27],[-13,-18],[-7,-30],[-9,-15],[-26,-53],[-47,-39],[-4,-30],[-11,-29],[-13,-14],[-7,-1],[-6,-1],[-9,-8],[-18,-11],[-16,4],[-9,0],[-29,-19],[-16,-4],[-12,3],[-23,-11],[-16,-10],[-6,0],[-16,-1],[-23,5],[-11,1],[-13,-21],[-7,-5],[-7,5],[-12,16],[-10,5],[-14,14],[-17,-4],[-24,-12],[0,5],[-2,332],[-5,776],[-2,415],[0,2062],[0,80],[0,1831],[0,3133],[0,38],[0,1372],[0,1935],[0,1934]],[[76952,34010],[0,-79],[0,-60],[0,-132],[0,-68],[0,-159],[0,-108],[0,-41],[0,-218],[0,-105],[1,-47],[0,-94],[0,-277],[0,-31],[0,-85],[1,-31],[-2,-30],[2,-47],[1,-113],[1,-95],[1,-110],[1,-118],[-3,-87],[-1,-38],[0,-41],[-1,-221],[-1,-147],[-66,1],[-30,0],[-89,-1],[-22,0],[-31,0],[-132,-3],[-37,-1],[-153,0],[-23,0],[-70,1],[-66,0],[-23,-1],[-35,0],[-24,0],[-17,-1],[-49,0],[-167,0],[-8,0],[-52,1],[-41,3],[-22,1],[-75,-4],[-1,-153],[0,-279],[0,-202],[0,-168],[0,-312],[0,-3],[0,-36],[1,-107],[0,-31],[0,-120],[0,-31],[0,-77],[0,-43],[-1,-60],[0,-95],[0,-180],[-1,-38],[0,-116],[0,-99],[0,-239],[1,-189],[0,-133],[0,-133],[0,-54],[1,-107],[1,-60],[-1,-90],[1,-61],[-1,-100],[0,-100],[1,-238],[0,-72],[0,-34],[0,-68],[0,-40],[0,-33],[1,-66],[-1,-121],[0,-43],[0,-60],[1,-318],[-1,-31],[-1,-201],[-1,-102],[-1,-94],[-2,-216],[-16,-4]],[[75700,26267],[-27,1],[-19,2],[-306,2],[-135,0],[-121,1],[-387,2],[-50,0],[-96,-7],[-37,2],[-94,6],[-28,0],[-43,0],[-3,0],[-61,0],[-21,0],[-50,0],[-56,0],[-171,-1],[-190,-2],[-3,0],[-73,1],[-140,1],[-6,0],[-130,1],[-144,3],[-29,0],[-208,1],[-15,0],[-96,1],[-20,-5],[-95,-1],[-14,0],[-15,5],[-28,1],[-145,4],[-20,-1],[-581,1]],[[72043,26285],[0,72],[0,345],[0,442],[0,74],[0,214],[-1,137],[2,48],[-1,89],[0,97],[0,177],[0,5],[0,378],[0,182],[0,314],[-100,1],[-95,-1],[-8,0],[-40,0],[-4,-1],[-40,0],[-2,0],[-17,0],[-24,-1],[-51,0],[-27,-1],[-107,0],[-45,0],[-54,0],[-62,1],[-51,0],[-72,1],[-5,0],[-15,0],[-26,0],[-31,0],[-26,0],[-118,0],[-15,0],[-171,-1],[-21,0],[0,57],[0,110],[0,16],[1,168],[-1,71],[0,55],[0,379],[1,89],[-2,128],[1,121],[0,94]],[[70816,30145],[0,193],[-1,236],[0,92],[-1,107],[0,30],[3,200],[0,114],[0,151],[0,168],[0,360],[0,65],[0,34],[0,356],[0,39],[0,58],[-1,109],[-1,265],[0,244],[-1,129],[0,53],[2,345],[1,65],[0,59],[-1,202],[-1,124],[-1,70],[1,146],[1,279],[-1,417],[0,10],[0,26],[1,33],[1,157],[0,69],[0,3],[0,31],[0,105],[-1,56],[0,38],[0,109],[-1,230],[0,35],[0,390],[0,187],[-1,76],[0,165]],[[45491,30182],[8,-58],[14,-8],[20,1],[1,0],[1,0],[13,-7],[1,0],[16,-23],[0,-2],[13,-32],[0,-3],[1,-1],[0,-2],[2,-12],[1,-15],[5,-31],[7,-35],[7,-42],[1,-2],[1,-4],[10,-38],[10,-23],[22,-29],[13,-4],[33,-11],[1,-1],[22,-10],[22,-19],[1,-1],[1,-2],[15,-29],[1,-2],[7,-41],[5,-29],[4,-46],[0,-39],[-4,-41],[-12,-45],[-14,-27],[-25,-17],[-20,11],[-19,28],[-2,3],[-10,16],[-1,1],[-1,0],[-14,-4],[-1,-1],[-11,-17],[-2,-5],[-7,-22],[0,-2],[-1,-2],[-4,-26],[0,-1],[0,-1],[7,-29],[13,-15],[2,-1],[18,-16],[1,-1],[11,-17],[5,-7],[11,-21],[1,-1],[10,-29],[0,-4],[3,-26],[1,-3],[0,-1],[-2,-60],[0,-33],[5,-32],[6,-32],[5,-33],[5,-40],[3,-46],[4,-34],[1,-5],[0,-60],[-1,-30],[-1,-35],[-5,-40],[-17,-39],[-24,-26],[-16,-8],[-31,-17],[-38,-9],[-19,14],[-13,16],[-11,25],[-1,1],[-9,34],[0,1],[-1,2],[-3,22],[-1,5],[0,19],[0,20],[-4,43],[-14,9],[-15,-4],[-13,-12],[-16,-29],[-16,-22],[-12,-6],[-14,-2],[-17,12],[-16,7],[-19,-15],[-13,-17],[-23,-23],[-16,-17],[-30,-16],[-15,-17],[-20,-46],[-7,-27],[-5,-34],[-5,-41],[-10,-24],[-14,2],[-15,10],[-33,45],[-5,35],[-8,26],[-9,18],[-10,18],[-7,33],[4,44],[8,38],[-20,1],[-17,0],[-35,15],[-30,-2],[-5,-2],[-39,-20],[-19,-15],[-37,-32],[-1,0],[-21,-23],[-42,-34],[-16,-10],[-29,-13],[-14,-2],[-38,17],[-46,-143],[-29,-94],[-1,-2],[0,-1],[-14,-49],[-22,-97],[-5,-21],[0,-2],[-12,-75],[-3,-20],[-5,-21],[-10,-40],[-21,-71],[-5,-15],[-5,-12],[-11,-20],[-22,-40],[-15,-19],[-17,-11],[-4,-6],[-3,-12],[-1,-14],[0,-3],[0,-39],[3,-18],[0,-1],[1,-3],[3,-15],[10,-38],[6,-14],[16,-23],[11,-23],[1,-1],[7,-20],[3,-13],[1,-4],[1,-4],[1,-13],[1,-13],[0,-3],[0,-1],[-2,-17],[-4,-17],[-1,-6],[-1,-3],[-1,-22],[3,-14],[6,-14],[19,-40],[6,-8],[8,-6],[5,-1],[3,2],[36,33],[2,2],[6,-8],[1,-1],[1,-4],[6,-13],[3,-10],[0,-3],[1,-11],[-2,-12],[-4,-14],[-4,-9],[-10,-11],[-13,-7],[-9,-9],[-15,-14],[-3,-4],[-1,-2],[-11,-29],[-7,-33],[-2,-32],[-1,-8],[1,-28],[-1,-9],[-3,-8],[-6,-4],[-7,0],[-108,29],[-9,4],[-8,10],[-4,8],[-19,49],[-1,3],[-14,41],[-5,11],[0,1],[-1,0],[-6,4],[-8,1],[-1,0],[-6,-3],[-5,-18],[-5,-34],[-3,-26],[-1,-21],[-2,-29],[-1,-20],[-1,-30],[0,-62],[-2,-69],[-3,-48],[0,-2],[-8,-59],[-1,-3],[-14,-45],[-10,-17],[-4,-13],[-6,-17],[0,-1],[-9,-40],[-6,-37],[-6,-33],[-6,-30],[-2,-7],[-6,-24],[-7,-25],[-7,-39],[-9,-33],[-8,-50],[-2,-10],[-4,-18],[-9,-54],[-5,-29],[0,-45],[1,-30],[5,-47],[3,-58],[0,-18],[0,-2],[0,-44],[0,-1],[-5,-32],[-11,-42],[-9,-18],[-23,-32],[-3,-5],[-8,-11],[-8,-13],[-12,-16],[-14,-31],[-5,-36],[-4,-18],[-4,-18],[-12,-27],[-5,0],[-10,0],[-6,-2],[-10,-3],[-11,-20],[-1,-8],[-4,-19],[0,-4],[0,-48],[0,-1],[6,-36],[1,-1],[12,-58],[0,-12],[0,-29],[-1,-17],[-6,-32],[-26,-59],[-3,-9],[-12,-44],[7,-37],[11,-20],[18,-25],[14,-9],[15,15],[10,37],[0,1],[2,32],[6,87],[1,1],[10,6],[2,1],[0,-1],[11,-15],[0,-1],[6,-41],[0,-14],[0,-17],[-1,-7],[-7,-60],[-5,-27],[-5,-34],[-5,-40],[-1,-67],[-4,-58],[0,-2],[-2,-11],[-16,-87],[-10,-41],[-10,-27],[-1,-2],[-6,-33],[0,-2],[2,-36],[9,-22],[11,-11],[15,-9],[23,-10],[1,-1],[16,-18],[1,-1],[1,-3],[11,-29],[0,-2],[5,-31],[0,-1],[-1,-38],[-8,-41],[-14,-25],[-15,-8],[-37,-13],[-40,-8],[-9,-29],[-3,-30],[-15,-15],[-3,2],[-21,21],[-1,1],[-1,-1],[-13,-20],[-9,-44],[-7,-59],[-1,-24],[-1,-15],[-2,-68],[-5,-92],[4,-45],[0,-38],[14,-81],[14,-50],[14,-7],[2,1],[25,3],[1,0],[3,-5],[9,-15],[1,-2],[0,-1],[6,-29],[0,-2],[0,-2],[2,-52],[6,-55],[3,-34],[1,-7],[0,-44],[-5,-42],[-17,-73],[-20,-39],[-21,-16],[-21,5],[-14,14],[0,1],[-9,26],[0,1],[-4,53],[4,45],[0,1],[0,1],[-14,56],[-29,67],[-17,1],[-15,-21],[-8,-43],[-1,-37],[-1,-11],[3,-32],[1,-85],[3,-59],[11,-56],[-1,-55],[4,-33],[2,-42],[4,-57],[6,-64],[0,-39],[1,-49],[-1,-3],[-6,-47],[1,-22],[1,-25],[6,-39],[9,-21],[17,-6],[17,3],[15,28],[11,11],[13,2],[15,-10],[2,-1],[0,-2],[7,-36],[0,-1],[-5,-27],[-2,-42],[-2,-65],[0,-1],[-7,-48],[-7,-22],[-4,-13],[-13,-60],[0,-37],[7,-47],[14,-20],[12,0],[22,5],[19,-1],[11,12],[13,22],[17,9],[13,19],[10,20],[8,28],[16,51],[7,42],[12,20],[1,1],[15,-8],[15,-15],[2,-2],[17,-31],[1,-1],[7,-31],[3,-30],[0,-30],[-5,-33],[-12,-31],[-14,-23],[-8,-30],[-14,-34],[-16,-46],[-6,-17],[-13,-36],[-15,-31],[-20,-31],[-11,-34],[-4,-32],[1,-12],[2,-38],[0,-5],[1,-3],[14,-37],[0,-1],[1,-1],[20,-16],[18,2],[22,16],[44,24],[16,2],[11,-11],[30,-59],[18,-40],[9,-46],[1,-6],[1,-47],[-2,-34],[1,-36],[12,-74],[18,-50],[12,-24],[14,-19],[1,-1],[18,-15],[1,-1],[14,-12],[12,-28],[5,-34],[9,-46],[8,-92],[0,-1],[0,-19],[0,-19],[0,-21],[-1,-57],[0,-1],[-4,-29],[-4,-23],[-5,-26],[-8,-34],[-1,-5],[-8,-32],[-6,-32],[-8,-17],[-4,-8],[-3,-5],[-17,-24],[-3,-5],[-1,0],[-18,-8],[-23,-8],[-19,-14],[-1,-1],[-10,-2],[-5,-2],[-25,-5],[-10,-2],[-21,-12],[-5,-2],[-9,-26]],[[44235,21290],[-21,90],[-1,1],[-1,1],[-21,28],[-30,18],[-29,-4],[-25,-40],[-62,-67],[-27,0],[-37,33],[-2,4],[-17,55],[7,66],[9,36],[9,37],[40,88],[8,27],[-9,45],[-1,0],[0,1],[-38,38],[-6,7],[-18,27],[0,2],[0,1],[-8,63],[-14,68],[-8,38],[-6,81],[12,70],[-3,41],[-2,3],[0,1],[-11,23],[-31,-42],[-49,-47],[-23,21],[-1,4],[-7,20],[-7,40],[-5,35],[9,44],[12,17],[33,26],[7,34],[-9,38],[-1,1],[0,1],[-34,44],[-26,38],[-28,-26],[-39,-79],[-13,-4],[-33,10],[-2,5],[-7,24],[2,100],[-2,3],[0,1],[-13,28],[-52,20],[-57,61],[-28,45],[-1,3],[0,1],[-6,25],[-1,6],[-1,1],[-1,2],[-21,38],[0,1],[0,1],[-5,48],[12,21],[48,16],[10,2],[5,1],[16,3],[10,0],[25,0],[6,4],[1,1],[5,5],[10,12],[17,21],[0,1],[27,74],[-2,3],[-13,25],[-14,31],[-4,13],[-2,15],[-1,9],[0,3],[1,96],[6,44],[3,26],[1,12],[0,7],[1,15],[0,7],[-1,16],[-3,11],[-1,4],[0,1],[-1,1],[-32,47],[-25,10],[-19,-25],[-4,-32],[-11,-38],[-36,-43],[-53,-22],[-37,17],[-23,43],[-14,25],[0,1],[0,1],[2,34],[2,97],[-2,14],[-12,67],[-5,24],[-12,35],[-1,3],[0,1],[-1,1],[-2,5],[-4,8],[-2,3],[-10,21],[-8,12],[-7,5],[-1,1],[-3,3],[-3,3],[-8,8],[-1,0],[-1,1],[-8,3],[-2,1],[-19,7],[-3,1],[-23,7],[-1,0],[-11,-3],[-24,-16],[-1,-1],[0,-1],[-15,-13],[0,-3],[-16,-23],[-62,-68],[-28,-30],[-1,0],[-11,-10],[-24,-8],[-31,-10],[-18,6],[-10,22],[-9,34],[-16,72],[-6,50],[-5,54],[-4,14],[-15,53],[-11,35],[-9,25],[-30,68],[-19,32],[-52,60],[-29,17],[-1,3],[-2,2],[0,1],[-7,9],[-2,2],[-15,20],[-38,37],[-4,5],[-2,1],[-1,1],[-18,33],[-6,10],[-2,3],[0,1],[-1,5],[-33,64],[-40,54],[-20,34],[-69,136],[-5,14],[-4,23],[0,55],[0,3],[0,4],[3,44],[2,15],[2,14],[7,28],[3,5],[4,9],[5,21],[2,28],[-12,74],[-1,2],[-1,1],[-28,61],[-19,23],[-19,6],[-53,15],[-23,40],[-19,9],[-32,8],[-18,5],[-16,-1],[-19,-7],[-13,-11],[-12,-13],[-1,-1],[-13,-13],[-4,-5],[-4,-6],[-8,-19],[-2,-4],[-86,-274],[-70,-143],[-9,-136],[2,-68],[8,-58],[0,-3],[15,-16],[7,-14],[1,0],[1,-3],[-5,-66],[-2,-74],[-37,-73],[-6,-43],[5,-50],[1,-33],[-1,-72],[10,-38],[1,-2],[0,-1],[3,-6],[1,-1],[34,-39],[2,-1],[20,-23],[34,-61],[0,-1],[6,-16],[1,-4],[0,-20],[-3,-22],[-3,-15],[-17,-45],[-29,-74],[-9,-39],[-5,-43],[-13,-78],[-4,-24],[-13,-34],[-2,-29],[-9,-208],[0,-89],[-1,-59],[0,-9],[1,-14],[6,-23],[0,-29],[-3,-38],[-5,-52],[-7,-48],[-9,-40],[-7,-21],[-11,-21],[-7,-13],[-11,-12],[-4,-3],[-12,-10],[-8,-5],[-2,-1],[-8,-5],[-11,-1],[-31,17],[-1,6],[-16,27],[-35,44],[-12,16],[-1,0],[-1,2],[-19,23],[-7,8],[0,1],[-45,50],[-6,4],[-6,10],[-3,11],[-3,50],[-2,27],[-6,25],[-21,43],[-5,5],[-3,0],[-6,0],[-9,-5],[-21,-16],[-7,-19],[-12,-48],[-10,-54],[-3,-39],[-1,-27],[2,-36],[3,-21],[7,-30],[8,-25],[22,-50],[7,-23],[2,-11],[-1,-14],[-2,-10],[-7,-17],[-8,-11],[-37,-19],[-21,0],[-21,13],[-11,8],[-9,5],[-27,21],[-13,18],[-9,19],[-4,14],[-4,20],[-1,8],[-17,41],[-15,31],[0,12],[-3,25],[-16,62],[-44,134],[-9,18],[-4,2],[-2,15],[-5,19],[-8,22],[-17,37],[-10,15],[-5,2],[-2,-1],[-1,-1],[-1,-1],[-2,-7],[-8,-68],[1,-49],[2,-17],[3,-58],[-2,-19],[-6,-14],[-8,-11],[-4,-2],[-11,-7],[-21,0],[-3,3],[-10,6],[-2,2],[-1,0],[0,1],[-3,5],[-8,37],[-4,45],[0,28],[2,38],[1,16],[-1,30],[-5,92],[-2,23],[-18,73],[-22,55],[-6,12],[-6,8],[-3,-1],[-1,-1],[-58,-15],[-9,-7],[-8,0],[-1,0],[-10,4],[-9,10],[-13,14],[-18,-3],[-22,14],[-14,-1],[-2,0],[-67,34],[-5,3],[-23,28],[-15,23],[-5,16],[-1,3],[0,1],[-2,7],[-10,42],[-22,71],[-1,3],[-1,2],[0,2],[-1,2],[-34,88],[-1,2],[-1,1],[-21,40],[-8,10],[-1,2],[-1,1],[-1,0],[-4,1],[-1,1],[-19,-8],[-13,-4],[-34,3],[-10,4],[-8,11],[-4,8],[-9,21],[0,2],[-1,1],[-6,14],[-4,9],[-4,7],[-12,20],[-1,1],[-25,27],[-11,11],[-1,1],[-9,6],[-2,2],[-2,1],[-26,5],[-15,-6],[-18,-22],[-1,-6],[-3,-4],[-1,-2],[-15,-15],[-18,-13],[-49,-19],[-22,-3],[-30,5],[-3,3],[-44,28],[-3,2],[-3,0],[-41,8],[-28,5],[-37,-12],[-9,-2],[-29,0],[-15,7],[-64,50],[-1,2],[-13,15],[-6,7],[-2,3],[-10,12],[-3,4],[-16,18],[-1,2],[-42,19],[-1,4],[-5,8],[-6,6],[-1,0],[-21,8],[-2,0],[-29,3],[-1,0],[-37,-4],[-2,-1],[-1,-1],[-14,2],[-30,-14],[-33,-25],[-4,-9],[1,-10],[-2,-11],[-33,-187],[-5,-15],[-11,-27],[-1,-15],[2,-39],[8,-38],[2,-39],[-12,-57],[-10,-109],[1,-18],[0,-6],[2,-52],[0,-8],[1,-27],[0,-5],[5,-63],[0,-25],[-10,-68],[-9,-44],[-7,-23],[-9,-23],[-9,-16],[-5,-2],[-11,-13],[-14,-25],[-13,-23],[-7,-13],[0,-1],[-4,-9],[-25,-61],[-13,-39],[-1,-8],[0,-47],[-43,-72],[-17,11],[-23,24],[-28,23],[-17,8],[-25,-5],[-25,-33],[-6,-3],[-20,-5],[-35,0],[-33,-27],[-21,-20],[-13,-5],[-19,-1],[-30,22],[-35,34],[-14,16],[0,3],[-3,28],[-1,2],[-1,1],[-12,27],[-17,20],[-15,11],[-25,8],[-13,4],[-15,11],[-21,32],[-15,16],[-19,4],[-17,16],[-8,10],[-14,-4],[-13,-24],[-7,-38],[-25,-56],[-10,-23],[-3,-7],[-17,-26],[-12,-12],[-1,-1],[-11,-4],[-10,-3],[-1,-1],[-11,-22],[-4,-8],[-11,-12],[-11,-10],[-28,-11],[-14,0],[-11,5],[-10,8],[-3,2],[-16,18],[-24,25],[-3,7],[-3,13],[-1,4],[0,1],[0,2],[-1,0],[-1,2],[-2,5],[-3,10],[-3,6],[-2,4],[-3,6],[-1,1],[-20,24],[-35,25],[-25,13],[-25,2],[-24,-1],[-22,-10],[-11,-12],[-1,0],[-16,-13],[-6,-2],[-34,-9],[-5,-2],[-3,0],[-43,0],[-4,3],[-1,1],[-1,1],[-4,10],[-3,12],[-1,2],[0,1],[-1,1],[-4,36],[-3,17],[-2,4],[-21,55],[0,1],[-24,48],[-4,8],[-3,3],[-2,4],[-14,10],[-1,1],[-8,6],[-2,1],[-4,2],[-3,2],[-4,4],[-42,42],[-1,2],[0,1],[-5,8],[-2,4],[-10,18],[-1,1],[0,1],[-36,65],[-1,0],[-1,4],[0,1],[-6,19],[0,1],[-6,23],[-1,8],[-3,14],[-1,5],[-3,15],[-4,17],[-1,19],[-1,4],[1,3],[1,15],[7,34],[0,1],[0,21],[-4,48],[0,3],[-5,29],[-1,7],[-2,11],[-9,33],[-1,5],[-1,4],[-2,7],[-36,85],[-1,0],[0,1],[0,1],[-1,0],[-4,10],[-2,4],[-1,2],[-1,1],[-1,2],[-4,5],[-7,8],[0,1],[-43,53],[-1,1],[-61,76],[-27,20],[-19,15],[-10,7],[-4,4],[-2,2],[-1,1],[-27,24],[-2,1],[-5,5],[-26,24],[-4,9],[-1,1],[-1,3],[-1,4],[-4,15],[-3,11],[-1,5],[-1,7],[0,3],[-1,2],[-1,1],[-3,4],[-1,3],[-4,7],[-4,4],[-1,2],[-1,1],[-59,65],[-1,0],[-16,18],[-2,0],[-8,-1],[-5,-1],[-12,6],[-11,11],[-10,13],[-23,41],[-11,30],[0,1],[-3,8],[-12,38],[-3,13],[0,2],[-1,1],[0,1],[-2,5],[-5,13],[-2,5],[0,1],[-12,14],[-29,21],[-11,13],[-25,40],[-12,25],[-1,2],[0,1],[-1,6],[-1,3],[-2,11],[0,8],[0,2],[0,7],[6,26],[7,20],[14,27],[0,1],[5,26],[1,35],[-3,17],[-6,14],[-1,1],[-4,7],[-1,1],[-21,31],[-1,2],[-1,1],[-28,33],[-26,36],[-10,23],[0,1],[-1,1],[-7,34],[-1,1],[-1,1],[-15,26],[-16,4],[-24,-1],[-24,-6],[-21,7],[-2,5],[-10,29],[0,1],[-10,81],[-9,57],[-1,2],[-1,1],[-13,25],[-10,19],[-3,4],[-85,123],[-17,36],[0,1],[-1,2],[-4,7],[0,8],[-1,1],[-2,10],[-1,8],[-12,46],[-1,1],[-1,2],[-28,61],[0,1],[0,1],[-5,48],[-15,49],[0,1],[-2,4],[-33,84],[-19,47],[-4,10],[-6,10],[-13,20],[-8,14],[-2,4],[-10,26],[0,1],[-7,19],[-1,3],[-18,44],[-1,1],[-11,34],[0,1],[0,4],[-7,52],[-12,82],[-9,29],[-5,16],[-2,8],[-1,3],[-1,3],[-4,10],[-7,26],[-1,6],[0,2],[0,1],[0,1],[-1,4],[2,10],[1,3],[4,17],[0,1],[16,109],[-1,10],[-1,8],[-1,10],[-4,25],[0,2],[-1,4],[-2,12],[-20,86],[-1,2],[-2,9],[-1,3],[-1,2],[-2,4],[-22,61],[0,2],[0,1],[-12,7],[-19,-14],[-18,4],[0,1],[-18,20],[-26,17],[-7,4],[-14,12],[-13,18],[-8,11],[-12,24],[-11,18],[-9,10],[-59,80],[-15,20],[-9,14]],[[57322,31465],[-20,-6],[-18,0],[-22,0],[-17,0],[-1,0],[-74,1],[-75,-1],[-45,0],[-22,0],[-17,0],[-47,-2],[-12,0],[-12,0],[-29,0],[-18,1],[-32,-1],[-16,0],[-79,1],[-59,-1],[-1,-126],[0,-63],[0,-67],[0,-62],[-1,-111],[0,-31],[0,-108],[0,-102],[0,-38],[0,-39],[0,-30],[0,-37],[0,-44],[0,-52],[0,-95],[0,-170],[0,-64],[0,-53],[0,-65],[0,-89],[0,-188],[0,-1],[0,-39],[0,-40],[0,-83],[0,-71],[0,-81],[0,-93],[0,-101],[0,-44],[-1,-274],[0,-55],[0,-55],[0,-3],[0,-53],[0,-90],[0,-60],[0,-104],[1,-48],[0,-71],[0,-118],[-1,-44],[1,-45],[-1,-119],[0,-46],[0,-57],[0,-111],[0,-71],[0,-40],[0,-116],[0,-64],[0,-37],[-1,-189],[1,-33],[0,-36],[-1,-40],[0,-72],[0,-63],[0,-149],[0,-81],[0,-59],[1,-124],[-1,-53],[0,-117],[1,-49],[0,-40],[-1,-35],[0,-91],[0,-43]],[[56703,26315],[-50,-1],[-69,0],[-52,0],[-32,-1],[-45,1],[-37,0],[-69,0],[-54,0],[-21,0],[-15,3],[-11,1],[-13,1],[-17,-1],[-14,-4],[-12,0],[-18,2],[-15,-1],[-18,0],[-14,0],[-37,1],[-13,0],[-24,0],[-35,0],[-16,0],[-80,0],[-36,1],[-20,0],[-62,1],[-2,0],[-28,0],[-29,-1],[-13,0],[-14,1],[-36,0],[-49,-1],[-12,0],[-41,1],[-32,0],[-17,0],[-18,0],[0,-78],[0,-33],[0,-40],[0,-59],[0,-42],[0,-132],[0,-67],[0,-132],[1,-39],[0,-93],[0,-33],[0,-52],[0,-32],[0,-21],[0,-215],[-1,-213],[-55,0],[-21,0],[-23,0],[-45,0],[-26,0],[-31,0],[-12,0],[-19,0],[-26,0],[-68,0],[-78,-1],[-13,0],[-63,-1],[-43,-2],[-15,0],[-66,-2],[1,-56],[-1,-36],[1,-39],[-1,-36],[0,-212],[0,-49],[-77,-1],[-43,0],[-29,-1],[-12,0],[-33,1],[-14,-2],[-34,0],[-13,0],[-22,0],[-25,1],[-28,-1],[-28,1],[-24,-1],[-24,0],[-55,0],[-19,0],[-3,0],[-11,-1],[-12,1],[-33,0],[-45,2],[-26,1],[-26,0],[-37,-1],[-135,-1],[-13,0],[-73,-1],[-28,0],[-29,-1],[-19,1],[-16,-1],[-31,0],[-61,-1],[-1,0],[-16,0],[-72,-1],[-18,-1],[-25,0],[-7,0],[-8,0],[-100,2],[-1,0],[-14,0],[-54,1],[-29,0],[-136,1],[-68,0],[-33,0],[-170,2],[-99,1],[-13,1],[-31,0],[-22,0],[-25,0],[-15,1],[-21,0],[-33,0],[-12,1],[-36,2],[-32,0],[-4,0],[-19,0],[-15,0],[-16,1],[-20,1],[-21,0],[-31,1],[-35,1],[-24,0],[-27,1],[-29,0],[-29,1],[0,-351],[0,-44],[0,-59],[0,-55],[0,-103],[0,-78],[0,-56],[0,-37],[0,-73],[-16,0],[-126,1],[-8,0],[-64,0],[-1,0],[-44,4],[-135,-3],[-48,0],[-54,0],[-123,1],[-12,-1],[-80,2],[-27,-1],[-41,1],[-19,0],[-17,0],[-33,0],[-21,0],[-151,1],[-41,0],[-15,0],[-24,1],[-106,0],[-14,0],[0,-204],[0,-46],[0,-46],[0,-132],[-59,0],[-46,0],[-17,-1],[-57,3],[-27,0],[-81,-1],[-85,-1],[-21,0],[-17,-1],[-38,0],[-18,0],[-16,-1],[-18,1],[-111,-4]],[[50639,23331],[-1,112],[0,32],[-1,70],[0,93],[0,117],[-1,30],[0,31],[0,2],[0,31],[0,60],[0,53],[1,53],[-1,71],[0,98],[1,111],[0,235],[0,38],[0,43],[0,89],[0,35],[0,37],[0,35],[0,5],[0,32],[0,202],[1,436],[0,35],[0,40],[0,34],[0,30],[0,68],[0,140],[0,68],[0,34],[0,75],[0,58],[0,46],[0,112],[0,59],[-4,47],[-15,1],[-51,0],[-14,0],[-49,0],[-23,0],[-49,0],[-30,0],[-39,0],[-31,0],[-31,-1],[-34,1],[-48,0],[-62,-1],[-17,0],[-29,1],[-21,0],[-47,0],[-13,0],[-36,0],[-40,0],[-24,1],[-47,0],[-29,0],[-14,0],[-25,0],[-36,0],[-42,-1],[-22,0],[-13,0],[-20,0],[-17,0],[-25,0],[-18,0],[-18,0],[-17,0],[-25,0],[-18,0],[-49,0],[-39,0],[-15,0],[-26,0],[-32,0],[-23,0],[-17,0],[-14,0],[-17,-1],[-70,0],[-28,0],[-24,1],[-16,-1],[-21,0],[-24,0],[-18,1],[-86,-1],[-17,0],[-54,-1],[-21,1],[-98,-1],[-19,0],[-17,0],[-44,-1],[-32,0],[0,13],[0,68],[-1,77],[0,108],[2,161],[-1,182],[0,38],[0,109],[-1,132],[0,110],[0,32],[1,41],[-1,36],[1,119],[0,58],[0,343],[0,85],[0,176],[0,39],[0,76],[0,138],[0,44],[0,36],[0,37],[0,53],[0,39],[0,99],[0,36],[0,44],[1,41]],[[70816,30145],[-103,1],[-97,0],[-44,0],[-56,0],[-16,0],[-93,1],[-13,0],[-44,0],[-42,0],[-41,0],[-128,-2],[-4,0],[-73,-1],[-37,0],[-27,7],[-48,5],[-152,-1],[-12,-3],[-47,3],[-74,0],[-47,0],[-25,0],[-99,0],[-104,0],[-52,-1],[-76,-1],[-78,0],[-179,1],[-36,0],[-37,-2],[-26,1],[-67,0],[-65,-1],[-158,4],[-50,-1],[-139,1],[-46,-1],[-17,-1],[0,-32],[0,-40],[0,-30],[1,-250],[2,-74],[-68,0],[-48,1],[-45,0],[-42,0],[-28,0],[-1,0],[-36,3],[-29,0],[-7,0],[-53,-1],[-51,-1],[-199,1],[-59,1],[16,-28],[17,-44],[2,-9],[15,-54],[4,-28],[1,-9],[1,-3],[0,-18],[-2,-10],[0,-1],[0,-1],[-4,-14],[-5,-9],[0,-1],[-19,-20],[-14,-23],[-4,-14],[0,-31],[2,-24],[3,-24],[14,-62],[6,-21],[6,-13],[11,-13],[11,-9],[29,-11],[1,-1],[5,-7],[5,-8],[1,-1],[2,-10],[-1,-14],[-2,-12],[0,-1],[-15,-38],[-6,-22],[-2,-18],[2,-33],[18,-96],[7,-20],[5,-11],[9,-8],[67,-25],[12,-3],[17,4],[3,1],[13,6],[16,1],[25,0],[4,1],[17,-7],[19,-22],[13,-26],[1,-3],[3,-25],[2,-12],[0,-6],[0,-5],[9,-37],[3,-6],[18,-32],[16,-29],[3,-6],[-1,-33],[0,-8],[-1,-3],[-8,-19],[-20,-1],[-15,13],[-19,16],[-15,0],[-3,-6],[-2,-3],[-4,-6],[-1,-34],[22,-139],[4,-18],[4,-16],[1,-7],[8,-17],[11,-26],[7,-15],[6,-9],[14,-20],[7,-4],[10,-5],[19,-9],[7,-15],[0,-7],[0,-19],[0,-7],[0,-3],[-5,-19],[-13,-24],[-3,-6],[-20,7],[-15,19],[-5,6],[-4,4],[-28,26],[-7,6],[-8,0],[-14,-23],[-4,-23],[-3,-18],[-5,-29],[0,-19],[0,-5],[0,-9],[28,-144],[4,-15],[4,-8],[2,-5],[8,-16],[11,-7],[7,-4],[4,-3],[2,-1],[23,-6],[12,-2],[4,-1],[2,0],[25,4],[2,0],[3,3],[24,20],[34,12],[9,0],[1,-2],[6,-9],[0,-8],[0,-10],[0,-11],[-8,-20],[-2,-5],[-2,-5],[-20,-26],[-29,-20],[-10,-7],[-4,-7],[-1,-2],[-9,-18],[0,-22],[36,-88],[5,-9],[31,-52],[8,-37],[0,-30],[-2,-5],[-21,-47],[-6,-5],[-9,-8],[-15,-14],[-9,-22],[-4,-37],[3,-67],[32,-191],[3,-15],[0,-11],[-1,-52],[0,-18],[-4,-8],[-7,-20],[-5,-13],[-3,-2],[-4,-3],[-6,-3],[-28,-16],[-3,-1],[1,-12],[2,-25],[0,-2],[7,-15],[9,-7],[17,0],[15,1],[17,-26],[7,-59],[2,-73],[0,-15],[4,-33],[4,-15],[16,-29],[13,-10],[2,-1],[13,-2],[14,-3],[9,-2],[7,3],[28,9],[36,27],[5,-2],[11,-6],[4,-2],[0,-2],[4,-8],[3,-9],[0,-12],[0,-24],[0,-4],[-2,-5],[-14,-33],[-1,-3],[-11,-12],[-3,0],[-33,-1],[-10,0],[-4,0],[-15,-11],[-10,-23],[0,-26],[6,-22],[1,-4],[14,-36],[1,-4],[11,-23],[7,-13],[9,-16],[9,-17],[7,-8],[31,-36],[3,-6],[4,-7],[6,-28],[-2,-30],[-9,-38],[-51,-3],[-12,0],[-1,0],[-71,1],[-44,-1],[-14,0],[-108,1],[-13,0],[-12,0],[-21,0],[-1,0],[-21,0],[-14,0],[-72,0],[-12,0],[-18,4],[-4,1],[-48,3],[-55,-1],[-47,0],[-66,1],[-74,0],[-58,0],[-47,1],[-14,0],[-103,1],[-47,0],[-154,1],[-34,0],[-48,0],[-96,-1],[-23,0],[-31,0],[-115,2],[-35,-1],[-25,0],[-29,0],[-177,-1],[-92,0],[-48,1],[-62,0],[-24,-1],[-19,0],[-45,-2],[-119,0],[-76,4],[-38,-1],[-43,-1],[-27,0],[-16,-1]],[[65920,26308],[-32,0],[-43,0],[-30,0],[-100,-1],[-65,0],[-92,1],[-31,-1],[-2,0],[-14,0],[-207,1],[-1,0],[-52,0],[-142,-1],[-76,-1],[-85,-1],[-26,4],[-43,0],[-45,-1],[-34,0],[-104,-1],[-131,3],[-111,-2],[-72,0],[-104,5],[-87,-2],[-14,-1],[-90,1],[-1,0],[-85,2],[-31,0],[-26,-1],[-4,0],[-61,0],[-24,0],[-45,0],[-17,1],[-49,0],[-31,0],[-36,0],[-13,-1],[-17,1],[-13,0],[-17,0],[-32,0],[-23,0],[-2,0],[-93,-1]],[[63467,26312],[-6,120],[-3,48],[0,42],[0,53],[0,4],[0,92],[0,74],[1,157],[1,52],[0,111],[0,108],[2,288],[1,148],[-1,65],[1,16],[0,20],[0,184],[-1,146],[0,150],[0,61],[1,205],[-1,81],[0,297],[1,54],[0,476],[0,172],[0,120],[0,88],[-1,57],[0,190],[0,1],[-1,72],[0,31],[-2,102],[0,47],[2,108],[0,68],[0,47],[-1,184],[1,106],[2,203],[0,139],[0,252],[0,106],[-159,1],[-195,1],[-12,0],[-13,0],[-32,0],[-58,1],[-149,0],[-112,1],[-52,-1],[-41,1],[-25,-5],[-18,4],[-88,1],[-74,1],[-143,1],[-62,0]],[[80619,31441],[1,-43],[0,-168],[1,-205],[1,-235],[1,-158],[-3,-67],[0,-291],[2,-169],[-2,-169],[0,-134],[0,-114],[-1,-65],[0,-27],[-1,-67],[0,-64],[0,-33],[0,-68],[2,-60],[0,-109],[0,-119],[1,-217],[0,-110],[1,-103],[-3,-217],[-1,-90],[0,-127],[1,-641],[0,-147],[0,-186],[-1,-91],[0,-10],[3,-576],[3,-148],[-1,-123],[-28,0],[-21,1],[-14,1],[-12,-2],[-20,2],[-13,1],[-40,0],[-148,2],[-53,-1],[-41,-6],[-24,0],[-58,0],[-123,0],[-25,0],[-4,-177],[0,-256],[0,-90],[1,-456],[0,-323],[1,-212],[0,-211],[0,-219],[0,-65],[1,-466],[0,-34],[0,-72],[-31,1],[-41,-1],[-92,0],[-18,-2],[-123,1],[-198,-1],[-5,0],[-57,-2],[-99,-1],[-186,-5],[-54,3],[-3,0],[-115,0],[-143,0],[-41,0],[-21,0],[-26,0],[-89,0],[-53,0],[-7,0],[-129,-1],[-305,-2],[-44,6],[-12,0],[-148,0],[-49,-1],[-145,-3],[-113,-2],[-5,0],[-93,1],[-32,1],[-10,1],[-62,1],[-2,0],[-101,1],[-1,0],[-33,-4],[-38,1],[-3,0],[-14,0],[-65,1],[-152,3],[-56,0],[-46,0]],[[76942,23703],[-199,-1],[-1,0],[-48,0],[-5,-1],[-109,0],[-42,0],[-1,-1],[-125,1],[-5,18],[-2,6],[-3,2],[-8,7],[-79,-2],[-54,2],[-35,0],[-35,0],[-15,0],[-37,0],[-22,0],[-37,0],[-70,-1],[-13,0],[-17,0],[-13,-1],[-14,0],[-14,-1],[-35,-1],[-14,1],[-22,-1],[-14,2],[-50,1],[-68,1],[-35,1],[-1,149],[-2,783],[0,3],[-2,351],[-1,368],[-1,380],[5,297],[1,57],[0,144]],[[63467,26312],[0,-190],[-1,-108],[0,-115],[0,-193],[-1,-35],[-1,-48],[0,-67],[1,-40],[-1,-56],[-1,-11],[2,-116],[0,-94],[2,-97],[0,-120],[0,-187],[0,-239],[1,-41],[-1,-66],[0,-33],[1,-101],[-1,-188],[1,-72],[0,-134],[0,-36],[0,-153],[0,-46],[-3,-221],[-2,-94],[1,-46],[2,-56],[-1,-166],[0,-48],[0,-149],[0,-321],[0,-4],[0,-37],[1,-130],[0,-35],[0,-79],[0,-54],[1,-211],[0,-50],[0,-93],[0,-38],[-4,-730],[0,-52],[2,-373],[0,-71],[0,-147],[1,-117],[0,-87],[-1,-434]],[[63465,19883],[-33,1],[-19,-2],[-39,0],[-24,0],[-39,-1],[-51,1],[-90,0],[-71,0],[-43,1],[-1,0],[-18,0],[-23,0],[-22,0],[-4,0],[-10,0],[-25,-1],[-25,0],[-16,0],[-16,0],[-45,-1],[-26,-1],[-22,0],[-78,2],[-25,-1],[-32,0],[-21,1],[-29,-1],[-75,0],[-61,0],[-158,0],[-165,-1],[-36,1],[-85,1],[-37,0],[-109,0],[-35,0],[-1,0],[-41,0],[-48,0],[-223,-2],[-12,-1],[-53,1],[-12,0],[-21,0],[-15,1],[-19,0],[-20,1],[-25,0],[-16,0],[-16,1],[-61,1],[-52,0],[-203,0],[-53,0],[-75,0],[-62,1],[-1,0],[-43,0],[-215,-1],[-61,0],[-12,0],[-39,0],[-188,0],[-171,0],[-50,0],[-53,0],[-158,0],[-22,1],[-25,0],[-201,-2],[-16,0],[-46,0],[-73,-1],[-75,-1],[-12,0],[-22,1],[-97,-1],[-66,0],[-210,-3],[-66,0],[-20,0],[-24,0],[-10,0],[-4,0],[-79,3],[-36,0],[-15,0],[-20,0],[-17,0],[-27,0],[-28,0],[-57,-1],[-34,0],[-29,0],[-26,0],[-55,0],[-14,0],[-20,-1],[-18,1],[-11,12],[-1,0],[-32,0],[-35,0],[-12,-1],[-13,0],[-92,1],[-78,0],[-24,0],[-56,0],[-32,1],[-25,0],[-202,4],[-13,0],[-66,0],[-12,1],[-26,-1],[-62,1],[-8,1],[-195,11],[-16,1],[-14,0],[-12,1],[-73,4],[-14,-1],[-29,-2],[-22,-2],[-21,-1],[-18,-1],[-75,-3],[-27,3],[-13,1],[-84,-2],[-37,0],[-16,-1],[-29,-5],[-21,0],[-91,0],[-30,-2]],[[56737,19900],[3,151],[-1,65],[0,101],[0,58],[0,263],[0,126],[0,34],[-1,40],[0,17],[0,264],[1,169],[0,209],[0,29],[0,9],[0,185],[1,423],[0,1],[0,69],[0,144],[0,162],[0,48],[0,210],[0,116],[0,100],[1,172],[0,44],[0,91],[0,120],[-1,428],[-1,420],[-1,440],[0,429],[0,431],[0,426],[-1,216],[0,205],[-34,0]],[[85522,28879],[-1,-184],[0,-233],[0,-68],[1,-45],[0,-34],[0,-108],[0,-181],[0,-341],[0,-164],[1,-131],[1,-426],[0,-177],[1,-255],[0,-22],[0,-201],[-31,0],[-61,1],[-146,-1],[-2,0],[-167,-1],[-13,0],[-18,0],[-85,0],[-100,0],[-21,0],[-26,0],[-34,0],[-213,1],[-12,-3],[-22,-3],[-306,-10],[5,-182],[0,-73],[0,-313],[0,-260],[-1,-45],[0,-276],[0,-106],[0,-63],[0,-1],[0,-314],[-1,-954],[0,-32],[0,-206],[0,-267],[0,-179],[-2,-470],[0,-132],[2,-416],[0,-1020],[-1,-283],[0,-56],[0,-59],[1,-324],[0,-63],[0,-43],[0,-32],[0,-32],[2,-162],[-2,-52],[0,-37],[-1,-38],[0,-408],[1,-77],[0,-46],[-1,-303],[1,-144],[0,-47],[0,-49],[0,-59],[0,-1],[0,-43],[0,-86],[0,-33],[0,-39],[1,-39],[0,-246],[0,-44],[0,-63],[0,-44],[0,-79],[0,-69],[0,-44],[0,-97],[1,-243],[0,-261],[0,-110],[0,-2],[1,-94],[0,-86],[0,-976]],[[84274,15971],[-205,-1],[-19,0],[-17,1],[-25,0],[-17,1],[-17,-1],[-26,-3],[-12,0],[-19,0],[-35,0],[-19,1],[-30,0],[-22,-1],[-19,0],[-19,1],[-15,-1],[-29,0],[-18,2],[-17,4],[-42,0],[-42,-1],[-2,0],[-51,0],[-92,-1],[-117,0],[-64,-1],[-86,-1],[-48,-3],[-26,0],[-87,0],[-122,0],[-124,1],[-94,0],[-53,0],[-119,1],[-51,0],[-27,0],[-24,0],[-140,0],[-70,0],[-241,3],[-135,2],[-44,0]],[[81793,15974],[-81,1],[-17,0],[-2,0],[-1,0],[-112,8],[-38,5],[-277,9],[-2,0],[-12,-1],[-159,-5],[-198,-7],[-29,-1],[-71,4],[-38,-1],[-51,-16],[-13,12],[-128,0],[-66,1],[-78,0],[-173,1],[-14,0],[-43,-1],[-138,-2],[-40,-3],[-12,-2],[-15,3],[-13,0],[-138,0],[-234,1],[-26,0],[-23,0],[-22,1],[-301,1],[-12,0],[-95,2],[-33,0],[-76,-1],[-47,-2],[-95,3],[-57,2],[-20,0],[-13,1],[-3,0],[-14,3],[-21,0],[-35,0],[-23,-1],[-17,0],[-2,0],[-96,4],[-140,1],[-68,-5],[-14,-1],[-12,0],[-52,0],[-110,-2],[-20,0],[-36,-1],[-37,-2],[-14,1],[-14,1],[-94,0],[-12,0],[-40,0],[-30,0],[-36,1],[-102,0],[-43,0],[-46,-1],[-90,0],[-12,0],[-18,0],[-23,0],[-13,0],[-13,0],[-17,0],[-18,0],[-37,0],[-26,-1],[-35,1],[-30,-2],[-141,4],[-16,0],[-3,0],[-218,2]],[[76939,15989],[-1,273],[0,104],[0,440],[0,40],[1,225],[1,405],[0,31],[1,196],[1,432],[0,30],[1,393],[2,170],[-2,260],[0,57],[0,371],[1,438],[1,337],[0,83],[0,225],[0,88],[1,111],[-1,510],[0,4],[0,348],[1,530],[1,324],[0,6],[0,42],[0,162],[0,158],[0,30],[0,33],[0,216],[0,51],[0,11],[0,151],[-2,143],[0,9],[-2,271],[-1,6]],[[94089,26311],[-17,-2],[-14,-5],[-22,3],[-17,9],[-273,2],[-269,-1],[-15,0],[-103,0],[-32,0],[-245,3],[-266,1],[0,-210],[0,-96],[0,-398],[0,-178],[0,-21],[0,-247],[1,-359],[-1,-170],[0,-367],[0,-45],[-1,-187],[1,-272],[0,-44],[0,-54],[0,-85],[0,-81],[0,-147],[0,-160],[2,-167],[1,-185],[0,-184],[1,-244],[-1,-40],[0,-190],[0,-104],[-1,-122],[0,-58],[1,-401],[0,-20],[0,-372],[0,-124],[1,-200],[0,-242],[1,-295],[-1,-113],[0,-313],[-1,-393],[0,-39],[0,-261],[0,-279],[0,-63],[0,-62],[-1,-119],[0,-71],[-159,0],[-263,-1],[-83,2],[-122,2],[-99,1],[-37,1],[-21,1],[-47,1],[-15,0],[-55,1],[-17,2],[-39,0],[-47,-1],[-27,-1],[-6,0],[-6,1],[-178,-2],[0,-53],[0,-45],[-2,-143],[0,-73],[0,-96],[0,-54],[1,-76],[0,-303],[0,-317],[3,-55],[-1,-34],[0,-39],[0,-98],[-1,-321],[-2,-97],[1,-324],[0,-438],[-18,0],[-43,-2]],[[91535,15978],[-26,0],[-42,1],[-46,-1],[-24,0],[-28,1],[-21,0],[-40,0],[-18,-1],[-29,1],[-15,0],[-24,-2],[-31,1],[-15,1],[-32,-1],[-17,1],[-17,-1],[-27,0],[-20,0],[-12,0],[-20,0],[-31,-1],[-15,2],[-22,-1],[-32,1],[-26,0],[-36,-1],[-22,0],[-26,0],[-31,-1],[-28,2],[-27,-1],[-12,0],[-20,2],[-16,0],[-18,-1],[-43,-1],[-14,0],[-16,0],[-17,0],[-31,0],[-33,-1],[-25,1],[-16,0],[-25,-1],[-12,0],[-24,1],[-13,0],[-28,0],[-25,0],[-24,0],[-12,0],[-13,-1],[-31,1],[-19,-1],[-14,0],[-34,1],[-2,0],[-15,0],[-14,-1],[-12,0],[-608,3],[-41,0],[-38,0],[-1,0],[-113,-2],[-20,-1],[-17,0],[-12,0],[-3,-1],[-38,0],[-18,0],[-60,-1],[-53,-1],[-30,4],[-23,0],[-22,-2],[-14,0],[-12,1],[-30,-1],[-33,1],[-14,-1],[-18,0],[-38,0],[-106,1],[-141,0],[-84,2],[-28,-1],[-33,-2],[-14,1],[-69,-4],[-23,0],[-72,1],[-78,1],[-4,0],[-25,0],[-7,1],[-11,0],[-191,-3],[-62,0],[-1,0],[-58,1],[-54,2],[-14,0],[-14,0],[-28,0],[-49,-2],[-39,0],[-1,0],[-17,1],[-13,0],[-140,-3],[-16,0],[-31,0],[-42,0],[-40,0],[-14,0],[-108,-1],[-14,0],[-49,1],[-75,1],[-20,0],[-45,1],[-48,0],[-25,0],[-70,2],[-42,0],[-14,0],[-20,0],[-23,0],[-14,-1],[-16,1],[-14,0],[-61,-1],[-13,0],[-7,0],[-32,-1],[-93,9],[-15,0],[-20,-6],[-15,0],[-15,1],[-14,-3],[-12,-1],[-20,0],[-1,0],[-18,-1],[-13,1],[-27,0],[-24,-1],[-24,0],[-29,0],[-17,0],[-13,0],[-39,0],[-13,0],[-25,-1],[-14,0],[-14,0],[-17,0],[-21,1],[-15,0],[-24,-1],[-13,0],[-14,-1],[-14,0],[-4,0],[-13,0],[-13,1],[-20,-1],[-13,0],[-31,-1],[-15,0],[-18,0],[-16,0],[-12,-3],[-150,4],[-8,0],[-37,-1],[-25,0],[-41,0],[-31,-2],[-20,0],[-23,1],[-20,1],[-27,0],[-28,-1],[-22,0],[-21,0],[-13,0],[-26,0],[-24,0],[-23,1],[-24,0],[-144,3],[-144,2],[-184,-8],[-20,3],[-11,0],[-12,-1],[-139,-2],[-94,5],[-50,0],[-289,-1]],[[72043,26285],[-22,0],[-43,0],[-13,0],[-128,3],[-20,1],[-69,-1],[-78,1],[-25,0],[-8,1],[-36,2],[-1,1],[-11,-1],[-77,-5],[-93,-5],[0,-378],[-1,-341],[-1,-123],[0,-159],[1,-207],[1,-64],[-1,-134],[0,-82],[0,-283],[0,-117],[0,-10],[0,-121],[0,-53],[0,-59],[0,-201],[0,-512],[0,-139],[-1,-49],[1,-41],[-1,-31],[-1,-175],[2,-71],[2,-47],[0,-33],[-1,-114],[0,-82],[0,-207],[0,-29],[-1,-803],[-1,-58],[0,-56],[-1,-327],[-80,-1],[-98,-2],[-21,0],[-19,-1],[-116,-2],[-48,-1],[-224,-2],[-6,0]],[[70804,21167],[-208,-4],[-10,0],[-203,-3],[-36,0],[-322,-2],[-37,-2],[-16,0],[-21,1],[-12,0],[-42,5],[-50,-2],[-48,3],[-14,-5],[-91,8],[-1,0],[-9,32],[-7,18],[-8,16],[-2,1],[-10,5],[-13,3],[-13,13],[-21,21],[-13,9],[-10,9],[-5,3],[-3,3],[-12,12],[-13,28],[-6,26],[-11,40],[-6,31],[-3,67],[15,28],[26,28],[34,39],[42,61],[15,35],[2,33],[-10,28],[-13,26],[-11,20],[-11,36],[2,36],[4,43],[0,48],[-10,68],[-10,31],[-13,36],[-14,53],[3,42],[1,13],[4,13],[3,12],[1,4],[25,45],[1,2],[0,1],[5,13],[8,20],[8,39],[-17,28],[0,1],[-14,25],[-61,23],[-60,0],[-26,0],[-31,1],[-83,2],[-22,1],[-107,2],[-109,1],[-15,0],[-13,1],[-33,1],[-40,1],[-12,0],[-28,0],[-57,0],[-115,3],[-65,2],[-41,1],[-86,1],[-34,-2],[-39,-1],[-70,3],[-19,0],[-84,0],[-12,0],[-211,0],[-18,0],[-144,1],[-15,1],[-50,1],[-18,0],[-431,-1],[-17,0],[-78,0],[-14,0],[-238,0],[-174,-1],[-99,0],[-75,1],[-1,0],[-22,0],[-297,0],[-70,1],[-26,0],[-37,0],[-40,0],[-109,0],[-33,0],[-134,0],[-71,0],[-1,636],[0,303],[-1,686],[1,351],[0,77],[0,301],[0,687],[1,387],[0,130],[0,57],[0,42],[0,153],[0,1],[0,44]],[[50639,23331],[0,-430],[0,-213],[1,-217],[0,-52],[0,-102],[0,-24],[1,-248],[0,-428],[0,-427],[90,1],[11,0],[101,1],[100,2],[49,0],[55,1],[19,1],[185,1],[-1,-432],[1,-430],[0,-206],[0,-27],[0,-197],[0,-50],[0,-382],[0,-429],[-1,-316],[0,-115],[0,-68],[0,-362],[-1,-429],[0,-189],[1,-163],[-2,-77],[0,-21],[0,-194],[0,-213],[-1,-429],[-3,-261],[0,-33],[0,-2],[-1,-183],[0,-7]],[[51243,15982],[-20,-16],[-28,-4],[-59,8],[-48,31],[-66,61],[-50,31],[-37,34],[-36,42],[-42,33],[-35,-2],[-12,-3],[-15,-5],[-43,-91],[-1,-3],[-26,-58],[-51,-75],[-32,-58],[-48,-86],[-30,-37],[-30,-30],[-23,-56],[-10,-47],[-40,-100],[-34,-41],[-40,-58],[-21,-58],[-6,-33],[-59,-90],[-17,19],[-30,-4],[-19,0],[-42,69],[-36,-5],[-34,-21],[-27,-67],[-26,-44],[-28,5],[-12,23],[0,1],[-1,36],[-9,42],[-1,3],[0,2],[-12,28],[-30,15],[-45,-29],[-43,0],[-27,-6],[-12,6],[-17,16],[-23,-3],[-29,-21],[-16,-61],[-5,-63],[-29,-117],[-19,-32],[-35,-14],[-22,2],[-35,-39],[-24,-1],[-25,12],[-18,-1],[-24,2],[-23,54],[0,1],[0,1],[-5,39],[0,30],[-13,104],[-1,4],[-13,37],[-1,1],[-43,75],[-73,57],[-52,30],[-21,6],[-58,84],[-26,57],[-31,62],[-14,3],[-11,-36],[-19,-34],[-13,-22],[-28,-17],[-18,14],[-1,4],[-21,65],[-3,10],[0,1],[-10,56],[-54,179],[-1,0],[-1,3],[-19,42],[-42,53],[-37,35],[-27,-10],[-18,15],[-96,53],[-71,52],[-12,-11],[-9,-48],[-13,-56],[-35,-52],[-72,46],[-22,35],[-31,19],[-22,-6],[-24,18],[-33,42],[-33,-19],[-6,-43],[-4,-76],[-2,-49],[-3,-94],[-14,-59],[-32,-32],[-36,2],[-29,13],[-13,17],[-47,100],[0,2],[-1,2],[-17,57],[-1,40],[19,58],[17,70],[8,63],[-11,71],[-1,2],[0,1],[-22,34],[-23,17],[-39,-13],[-59,10],[-31,19],[-9,18],[-30,45],[-2,4],[-16,45],[-1,0],[-36,43],[-17,29],[-66,48],[-42,31],[-45,15],[-16,30],[-50,67],[-45,46],[-34,76],[-2,4],[-25,68],[-1,2],[-12,47],[-1,2],[-21,56],[0,1],[-8,44],[-1,3],[-1,1],[-10,24],[-48,109],[-16,6],[-9,20],[-1,1],[0,1],[-5,25],[-1,3],[-49,132],[0,1],[-26,40],[-34,65],[-20,47],[-18,11],[-14,28],[0,1],[0,1],[-1,2],[-5,37],[-1,2],[0,1],[-10,15],[-13,8],[-18,12],[-50,20],[-17,-6],[-22,-42],[-6,-43],[2,-124],[-3,-25],[-9,-47],[-14,-27],[-29,-53],[-14,0],[-28,15],[-36,41],[-27,65],[0,1],[-1,3],[-11,35],[-1,50],[-1,3],[-1,1],[-11,24],[-1,2],[0,2],[-7,24],[-16,98],[-9,68],[-6,50],[-2,2],[0,1],[-7,12],[-22,41],[-39,52],[-24,8],[-28,2],[-15,-17],[-25,-31],[-26,-34],[-26,-18],[-23,-72],[-16,-9],[-20,-26],[1,-34],[4,-37],[0,-1],[0,-1],[10,-21],[16,-23],[1,0],[0,-1],[-1,-2],[-1,-1],[-19,-41],[-7,-8],[-10,-1],[-45,12],[-43,-3],[-27,-20],[-28,-53],[-1,0],[-11,-20],[-26,-32],[-20,-5],[-28,-3],[-38,25],[-32,13],[-42,23],[-21,12],[-14,-13],[-20,-72],[-27,-115],[-23,-56],[-43,-6],[-109,59],[-27,38],[0,2],[0,1],[-9,74],[-2,4],[0,1],[-13,32],[-53,82],[-34,22],[-55,45],[-34,30],[-29,7],[-32,-6],[-10,-14],[-22,-31],[-32,-31],[-37,-4],[-32,46],[-2,4],[-10,28],[-17,14],[-23,-8],[-39,-75],[-22,-100],[-14,-13],[-34,-10],[-15,-25],[-14,11],[-20,1],[2,5],[10,30],[-2,3],[-12,11],[-26,-5],[-20,-23],[-5,-5],[-23,-32],[-9,-37],[-26,-19],[-30,12],[-33,21],[-29,17],[-38,66],[-1,2],[0,1],[-9,71],[11,60],[18,73],[24,32],[11,46],[-10,78],[-2,2],[0,1],[-20,31],[-48,14],[-55,-13],[-17,-55],[-24,-20],[-10,-38],[-20,-27],[-4,-34],[-32,-101],[-32,-55],[-43,-21],[-37,-4],[-27,51],[-20,8],[-38,-7],[-21,16],[-55,39],[-49,34],[-47,20],[-73,20],[-37,17],[-27,30],[-1,4],[-19,50],[0,1],[-5,32],[3,89],[13,85],[17,104],[0,43],[-7,77],[-5,32],[-25,115],[-23,85],[-4,37],[-17,116],[1,56],[11,114],[22,95],[3,10],[15,46],[7,35],[3,60],[-2,4],[0,1],[-18,43],[-31,23],[-20,-4],[-16,12],[1,3],[11,43],[15,103],[2,69],[16,68],[8,40],[1,7],[-1,34],[-10,85],[0,114],[-8,34],[-1,0],[-12,-6],[-34,-3],[-50,37],[-40,41],[-1,4],[0,1],[-20,71],[-15,94],[-1,3],[-2,95],[12,80],[5,65],[-1,33],[-10,101],[-23,131],[-9,74],[2,56],[25,95],[18,25],[17,26],[21,50],[7,41],[-4,41],[-1,5],[-23,70],[-8,24],[-10,29],[-6,74],[-8,85],[0,124],[-1,69]],[[70804,21167],[0,-330],[0,-36],[1,-47],[0,-2],[0,-58],[0,-2],[0,-264],[0,-98],[-1,-83],[0,-65],[0,-42],[1,-44],[0,-227],[0,-205],[0,-65],[0,-82],[0,-79],[0,-132],[0,-501],[0,-77],[-2,-133],[-2,-202],[3,-180],[-2,-47],[2,-224],[-3,-84],[2,-50],[1,-98],[-1,-23],[0,-11],[1,-84],[0,-287],[1,-258],[-1,-50],[-1,-38],[0,-3],[-1,-29],[0,-58],[0,-430]],[[70802,16439],[-224,1],[-81,0],[-100,1],[0,-60],[0,-36],[0,-127],[-1,-60],[-1,-8],[-1,-89],[2,-719],[1,-134],[1,-171],[-1,-346],[0,-134],[0,-58],[0,-57],[0,-86],[0,-31],[0,-1],[0,-46],[1,-414],[1,-292],[0,-33],[-4,-104],[-17,0]],[[70378,13435],[-23,1],[-35,2],[-84,2],[-6,0],[-151,-2],[-54,-1],[-188,-1],[-151,0],[-101,2],[-13,0],[-99,0],[-23,0],[-22,0],[-16,0],[-30,-1],[-48,0],[-16,-1],[-24,0],[-12,0],[-45,1],[-32,0],[-42,0],[-3,0],[-36,-1],[-26,0],[-4,0],[-89,0],[-37,0],[-6,0],[-32,0],[-20,0],[-15,-1],[-13,0],[-41,1],[-40,2],[-49,-1],[-25,0],[-36,1],[-26,2],[-99,0],[-12,-1],[-35,0],[-106,0],[-2,0],[-53,0],[-69,2],[-8,0],[-7,-1],[-12,-1],[-184,-2],[-1,0],[-89,-1],[-8,0],[-73,0],[-16,0],[-40,2],[-74,0],[-33,-1],[-104,1],[-100,0],[-96,3],[-97,-4],[-12,-1],[-52,3],[-45,1],[-130,4],[-16,0],[-157,2],[-111,1],[-2,0],[-46,1],[-45,2],[-30,-1],[-107,0],[-2,0],[-223,-2],[-87,-1],[-337,-2],[-35,0],[-197,2],[-63,0],[-107,0],[-34,1],[-73,-3],[-13,0],[-72,0],[-16,0],[-31,0],[-88,0],[-31,0],[-13,0],[-66,3],[-73,-1],[-23,-1],[-54,0],[-61,1],[-52,-1],[-192,-4],[-4,0],[-16,0],[-56,3],[-76,-1],[-12,2],[-68,1],[-228,3],[-51,0],[-16,0],[-55,-1],[-66,1],[-12,0],[-89,1],[-14,-1],[-105,-1],[-99,-3],[-14,2],[-120,-3],[-64,-1]],[[63486,13443],[-19,-1],[-3,350],[1,62],[0,52],[2,176],[-1,64],[0,103],[0,56],[0,177],[-1,139],[1,36],[0,77],[0,98],[-3,205],[0,118],[0,120],[1,464],[0,81],[0,195],[0,146],[0,286],[0,1],[1,447],[-1,412],[1,175],[0,54],[1,160],[-1,44],[0,210],[-1,95],[0,54],[0,101],[0,79],[-1,335],[1,124],[0,40],[0,36],[1,54],[0,36],[1,40],[0,103],[0,114],[0,78],[0,48],[0,38],[0,66],[0,59],[-1,165],[0,51],[0,217]],[[76939,15989],[-32,0],[-13,0],[-25,0],[-22,1],[-315,2],[-26,-1],[-107,-1],[1,-67],[0,-195],[0,-43],[-1,-112],[0,-1],[0,-431],[0,-106],[1,-123],[0,-190],[-245,-5],[-15,0],[-14,4],[-11,-5],[-28,-1],[-23,0],[-22,0],[-24,1],[-9,-1],[-3,0],[-25,1],[-52,-1],[-71,3],[-110,2],[-35,-2],[-20,-1],[-51,-1],[-260,1],[-97,1],[-69,3],[-52,0],[-14,0],[-21,1],[-14,0],[-28,0],[-53,0],[-10,0],[-20,1],[-21,0],[-39,0],[-78,0]],[[74866,14723],[-144,552],[-37,142],[-53,138],[-31,78],[-17,46],[-18,47],[-77,118],[-112,172],[-4,6],[-38,59],[-75,115],[-71,110],[-14,-28],[-17,-37],[-23,-59],[-5,-10],[-12,-22],[-24,-18],[-9,-8],[-17,-14],[-28,-7],[-16,31],[-14,26],[-15,28],[-10,22],[-12,25],[-8,30],[-9,36],[-25,27],[-10,-16],[-2,-8],[-7,-27],[-12,8],[-9,36],[-10,21],[1,37],[-4,51],[-40,2],[-20,2],[-23,0],[-67,5],[-32,-4],[-323,4],[-58,0],[-98,-3],[-71,-2],[-130,-6],[-12,6],[-35,0],[-28,5],[-22,0],[-4,0],[-350,-3],[-159,3],[-19,1],[-45,-1],[-110,5],[-69,-3],[-32,-4],[-19,0],[-41,2],[-43,-1],[-20,-1],[-61,-3],[-26,3],[-46,-1],[-17,-1],[-32,3],[-61,5],[-60,-6],[-55,1],[-4,0],[-163,0],[-66,0],[-80,-5],[-21,3],[-394,2],[-120,1]],[[56737,19900],[0,-30],[1,-83],[-1,-36],[1,-41],[0,-35],[0,-40],[0,-38],[0,-122],[0,-43],[-1,-386],[0,-62],[0,-143],[-1,-192],[0,-30],[1,-40],[0,-42],[0,-36],[0,-40],[-1,-31],[0,-30],[0,-68],[1,-80],[0,-48],[-1,-14],[0,-7],[0,-80],[0,-46],[0,-298],[0,-30],[0,-55],[0,-79],[0,-51],[0,-99],[0,-88],[0,-53],[0,-54],[0,-109],[0,-45],[0,-76],[0,-43],[0,-55],[0,-42],[0,-55],[0,-49],[0,-54],[0,-36],[1,-72],[0,-56],[0,-109],[1,-95],[0,-237],[0,-40],[0,-17],[0,-31],[0,-29],[1,-36],[0,-24],[0,-32],[1,-57],[-1,-32],[15,-238],[0,-1],[1,-7]],[[56755,15573],[-28,-66],[-10,-59],[-21,-78],[-26,-53],[-27,-78],[-2,-37],[-80,-234],[-36,-67],[-56,-65],[-47,-60],[-30,-59],[-2,1],[-213,31],[-163,48],[-29,21],[-17,22],[-33,63],[-14,13],[-70,19],[-32,28],[-18,26],[-33,27],[-27,56],[-1,2],[-1,3],[-8,29],[-3,59],[-52,116],[-27,38],[-51,4],[-27,-7],[-61,-75],[-41,-38],[-28,-14],[-72,-22],[-17,10],[-44,52],[-52,14],[-17,-5],[-20,-5],[-26,17],[-16,-2],[-46,-35],[-40,-9],[-31,19],[-74,24],[-70,38],[-18,21],[-39,11],[-12,27],[-18,23],[-63,100],[-19,43],[-26,43],[-18,18],[-29,49],[-31,47],[-45,98],[-33,38],[-35,18],[-36,-7],[-57,31],[-64,26],[-15,23],[-26,7],[-41,5],[-48,19],[-53,27],[-75,31],[-25,-8],[-24,-42],[-22,-83],[-15,-27],[-32,-23],[-33,-11],[-27,-24],[-23,-10],[-23,-47],[-14,-44],[-5,-69],[0,-4],[-20,-64],[-4,-83],[11,-43],[1,-1],[1,-3],[21,-29],[21,-31],[23,-49],[1,-3],[4,-68],[-30,-47],[-17,10],[-1,4],[-1,0],[-15,50],[-1,1],[-15,25],[-33,17],[-19,-9],[-35,-29],[-29,-63],[-22,-39],[-6,-67],[-14,-54],[-6,-31],[2,-42],[0,-1],[25,-29],[-1,-2],[1,-1],[1,-1],[-4,-148],[4,-130],[0,-108],[-1,-24],[-2,-80],[0,-9],[-5,-38],[-4,-30],[-6,-46],[-8,-28],[-19,-11],[-14,12],[-40,61],[-30,6],[-24,-30],[-1,-51],[9,-65],[11,-59],[-1,-62],[-10,-69],[-2,-31],[-19,-47],[-22,-66],[-12,-16],[-23,-33],[-17,-23],[-13,-5],[-16,-5],[-16,9],[-10,7],[0,4],[-2,0],[-6,56],[0,3],[-31,34],[-46,-11],[-45,-11],[-53,-20],[-43,-42],[-15,-44],[-19,-74],[-1,-68],[-14,-58],[-34,-50],[-56,-18],[-34,12],[-29,19],[-33,6],[-26,-3],[-16,-47],[-20,-89],[-31,-83],[-31,-46],[-43,-37],[-56,-36],[-49,13],[-17,28],[0,1],[-6,50],[-1,1],[-27,45],[-20,39],[-17,33],[-25,13],[-24,10],[-21,20],[-25,31],[-24,7],[-2,5],[-111,282],[-1,3],[-10,42],[-2,3],[-23,69],[-1,2],[-50,96],[-13,32],[-26,66],[-42,70],[0,2],[0,1],[-28,141],[-8,28],[-1,2],[-27,71],[0,2],[-20,80],[-9,34],[-1,4],[0,1],[-1,2],[-178,350],[-26,7],[-22,18],[-13,28],[0,1],[-1,2],[-13,49],[0,1],[-1,0],[-14,17],[-19,14],[0,3],[16,108],[12,17],[27,-16],[22,-33],[29,15],[15,40],[4,49],[-7,72],[-2,2],[0,1],[-17,21],[-52,-2],[-38,-3],[-8,12],[-67,113],[0,2],[-1,1],[-10,55],[-2,3],[-36,100],[-1,2],[-13,45],[0,2],[-1,2],[-34,80],[-48,70],[-48,40],[-27,38],[-8,14],[-27,49],[-19,26],[-32,57],[-53,54],[-27,43],[-27,1],[-35,-27],[-19,-19],[-14,-30],[-26,-28]],[[99648,26328],[-3,-217],[0,-85],[0,-5],[0,-61],[-2,-119],[-5,-396],[-4,-430],[0,-3],[-1,-97],[-2,-160],[-2,-198],[0,-49],[-4,-174],[-2,-213],[-1,-13],[-3,-308],[0,-57],[0,-44],[0,-40],[-1,-36],[-1,-41],[-2,-53],[-1,-46],[-1,-237],[-7,-504],[0,-10],[-3,-230],[-1,-51],[0,-31],[-2,-134],[-1,-118],[-1,-59],[-1,-34],[0,-52],[1,-62],[-1,-68],[-1,-75],[-2,-51],[-2,-52],[-1,-36],[-3,-372],[-1,-96],[0,-37],[0,-13],[-1,-51],[0,-69],[-1,-90],[-1,-149],[-1,-67],[-3,-270],[-2,-194],[-7,-474],[-2,-135],[0,-130],[-1,-176],[-3,-327],[-1,-218],[-1,-82],[-2,-31],[-4,-318],[-2,-221],[-6,-406],[-2,-202],[-4,-360],[-2,-241],[-4,-327],[-1,-83],[-2,-134],[0,-30],[-1,-174],[-2,-157],[-1,-160],[-2,-122],[0,-51],[-2,-190],[-1,-113],[-1,-57],[-1,-104],[0,-68],[-2,-142],[-4,-230],[-2,-126],[-1,-109],[0,-168],[-3,-464],[-2,-127],[-4,-353],[-4,-219],[-4,-143],[0,-9],[-1,-143],[0,-16],[-2,-153],[-1,-127],[-3,-258],[-1,-72],[-1,-133],[-1,-62],[-1,-63],[1,-43],[0,-31],[0,-2],[0,-39],[0,-37],[-3,-60],[-1,-39],[-3,-191],[-1,-114],[-2,-160],[-2,-114],[-3,-330],[-3,-271],[-2,-233],[-2,-182],[-3,-154],[1,-56],[0,-25],[-2,-167],[-1,-97],[0,-3],[-1,-116],[0,-34],[-1,-59],[-1,-186],[-1,-72],[-3,-186],[-1,-73],[-1,-101],[0,-63],[-1,-123],[-2,-123],[-1,-90],[0,-86],[-4,-249],[0,-32],[0,-76],[3,-76],[-1,-41],[-4,-41],[0,-44],[-3,-188],[-4,-124],[-4,-419],[0,-13],[-1,-87],[-1,-60],[-2,-228],[0,-39],[-1,-70],[-2,-54],[0,-100],[-2,-134],[0,-56],[-3,-155],[-4,-396],[-2,-198],[-2,-202],[-1,-49],[-3,-159],[0,-7],[-4,-402],[-2,-245],[-1,-44],[-1,-148],[-1,-70],[0,-50],[-1,-78],[-1,-76],[-2,-131],[0,-31],[0,-76],[-2,-118],[-1,-87],[0,-1],[-2,-271],[-4,-282],[-1,-36],[0,-141],[-1,-87],[0,-2],[-2,-153],[0,-30],[-4,-285],[-1,-134],[-1,-66],[-3,-219],[-8,-439],[0,-131],[0,-150],[0,-36],[-3,-343],[0,-42],[-1,-53],[-31,-14],[-16,4],[-17,-43],[35,-108],[10,-87],[-18,-78],[-28,-50],[-37,-23],[-50,-12],[-15,-18],[-25,-52],[-26,-25],[-44,14],[-26,34],[-25,68],[-56,247],[-31,-102],[14,-111],[12,-74],[-22,-153],[-13,-32],[-31,-34],[-55,4],[-72,126],[-13,61],[6,82],[18,50],[37,54],[33,65],[75,121],[30,78],[-24,68],[-31,38],[-44,4],[-53,-28],[-18,-16],[-81,-68],[-80,-123],[-38,-43],[-28,-25],[-33,-40],[-18,-40],[0,-40],[-1,0],[-69,-16],[-28,4],[-42,26],[-21,68],[-6,60],[0,33],[22,69],[6,13],[12,24],[69,83],[108,122],[34,29],[42,24],[16,35],[5,12],[15,34],[9,29],[8,70],[3,137],[-4,15],[-41,105],[-11,22],[-23,31],[-16,4],[-32,1],[-23,-7],[-30,-17],[-32,-25],[-56,-72],[-23,-48],[-34,-88],[-9,-29],[-46,-158],[-43,-87],[-48,-69],[-18,-7],[-38,22],[-17,28],[-16,40],[-17,32],[36,110],[34,79],[51,105],[25,58],[32,57],[54,36],[29,9],[31,17],[20,20],[26,56],[16,60],[0,40],[-8,31],[-12,13],[-17,9],[-21,-4],[-36,-15],[-22,-9],[-14,-10],[-47,-48],[-13,-14],[-13,-6],[-34,21],[18,105],[-2,46],[-21,63],[17,62],[2,56],[-9,37],[-17,41],[-4,0],[-21,48],[-1,7],[-1,1],[-7,31],[-7,26],[-6,17],[-5,13],[-4,8],[-8,14],[-4,9],[-19,1],[-15,1],[-19,-25],[-10,-40],[1,-31],[31,-156],[3,-54],[-3,-43],[-13,-21],[-6,-34],[4,-69],[-1,-67],[-14,-91],[-27,-47],[-16,-14],[-36,1],[-10,2],[-35,8],[-38,63],[-23,63],[-26,57],[-9,41],[-3,53],[-8,50],[-9,47],[-19,87],[-13,43],[-21,36],[-32,20],[-14,12],[-11,-12],[-13,5],[-21,-6],[-22,-167],[-8,-89],[-11,-55],[-14,-48],[-16,-32],[-22,-26],[-41,-10],[-14,5],[-9,-8],[-21,1],[-44,53],[-24,58],[0,6],[-9,41],[0,221],[-10,51],[-15,38],[-84,189],[-19,57],[-24,25],[-49,49],[-28,8],[-22,-16],[-11,-11],[-32,-51],[-17,-16],[-2,0],[-21,-57],[-22,-45],[-83,-104],[-45,10],[-43,29],[-13,3],[-6,2],[-33,10],[-28,21],[-18,14],[-44,18],[-48,10],[-34,-12],[35,273],[66,16],[21,153],[26,104],[-75,116],[-137,26],[-70,79],[-29,24],[-9,-140],[10,-141],[72,-38],[12,-28],[21,-96],[-31,-320],[-42,19],[-11,5],[-32,36],[-91,11],[-21,22],[-22,91],[-29,152],[-16,33],[-46,44],[-10,10],[-62,59],[-16,67],[93,147],[68,43],[27,37],[51,118],[7,53],[0,94],[-10,32],[-33,55],[-36,-2],[-28,-4],[-29,-65],[-10,-52],[2,-127],[-11,-72],[-20,-42],[-43,-35],[-54,45],[-13,28],[-8,53],[14,29],[45,83],[51,90],[0,28],[-26,89],[-5,86],[-6,70],[-14,22],[-34,11],[-25,-29],[-20,-40],[-9,-29],[-28,-136],[-13,0],[-58,-3],[-68,17],[-76,61],[-6,21],[-15,51],[2,81],[4,18],[1,134],[-7,37],[33,77],[86,-60],[99,134],[64,74],[14,161],[-26,94],[-106,104],[-97,58],[-57,-233],[-30,-237],[-4,-39],[-68,-196],[-28,-23],[-32,-21],[-75,-142],[-43,13],[-71,60],[-58,140],[7,43],[41,118],[9,119],[-2,11],[-9,77],[-25,-32],[-19,84],[11,164],[-6,123],[-25,111],[-25,37],[-31,6],[-72,-149],[-10,-83],[-5,-95],[64,-218],[35,-173],[0,-4],[19,-191],[3,-131],[-29,-32],[-53,44],[-12,35],[7,167],[-41,5],[-74,-6],[-18,-18],[-66,-2],[-72,28],[-91,50],[-29,22],[-2,1],[-27,34],[-10,23],[-10,95],[-39,124],[-44,122],[-14,38],[-74,203],[-154,157],[-24,29],[-3,4],[-21,0],[-53,16],[-67,101],[-14,30],[-9,41],[-2,4],[-7,14],[-13,19],[-4,-16],[-5,9],[-15,53],[-40,142],[-38,112],[-15,43],[-7,73],[2,34],[6,36],[3,37],[1,37],[10,35],[12,40],[10,59],[12,82],[1,27],[9,68],[27,-9],[2,13],[13,73],[3,13],[11,43],[10,46],[0,52],[-4,55],[-6,8],[-12,12],[-4,65],[-16,47],[-38,105],[-30,59],[-21,20],[-27,-7],[-17,-17],[-7,-29],[1,-36],[16,-98],[16,-113],[8,-110],[-13,-84],[11,-109],[-54,-88],[-32,-21],[-37,-3],[-7,15],[-9,29],[-21,-10],[-15,-11],[-46,-4],[-16,15],[-50,61],[-14,46],[-19,74],[-20,59],[-11,54],[3,21],[15,43],[18,60],[8,28],[17,46],[15,34],[24,52],[15,75],[-2,21],[-2,31],[-9,27],[-19,27],[-31,39],[-41,48],[-61,2],[-9,7],[-33,24],[-26,25],[-13,23],[-10,143],[-3,81],[-2,92],[-4,53],[-11,108],[-13,84],[-2,46],[0,12],[-6,69],[-11,20],[-27,10],[-17,-13],[-25,-40],[-11,-50],[-13,-50],[-40,-121],[-18,-33],[-1,-1],[-24,-12],[-40,-4],[-39,27],[-10,16],[-9,25],[-6,43],[-10,46],[-27,81],[-11,42],[-19,46],[-27,46],[-60,64],[-14,9],[-87,-106],[-33,-37],[-35,-21],[-23,-7],[-69,-11],[-22,2],[-8,0],[-61,8],[-37,18],[-47,30],[-31,29],[-22,36],[-13,70],[-6,51],[-7,176],[2,41],[-15,20],[-30,59],[-23,90],[-5,41],[0,55],[2,17],[-8,19],[-12,40],[-4,56],[2,51],[3,109],[-5,110],[-10,111],[-25,51],[-76,-5],[-27,-9],[-33,-42],[7,-36],[19,-98],[3,-47],[-13,6],[-3,42],[-15,42],[-3,30],[-17,64],[-7,64],[10,57],[16,44],[1,1],[27,21],[28,7],[27,-1],[23,28],[16,54],[5,63],[-19,69],[-22,43],[-19,9],[-20,1],[-40,-45],[-7,-27],[-11,-176],[-1,-13],[-8,-26],[-23,-35],[-11,-57],[-1,-33],[-14,-524],[-6,-35],[-19,-125],[-60,1],[-38,36],[-56,190],[-30,52],[-26,87],[-5,80],[18,88],[27,33],[52,26],[74,82],[54,110],[36,107],[14,71],[7,88],[-9,48],[-57,125],[-10,6],[-78,-2],[-25,-18],[-52,-73],[-97,-202],[-32,-51],[-54,-69],[-71,-76],[-7,-4],[-19,-20],[-22,21],[-19,19],[-23,22],[-69,217],[15,105],[101,244],[6,144],[-24,84],[-12,64],[-17,37],[-13,23],[-96,13],[-48,-3],[-45,-18],[-21,1],[-62,1],[-67,-26]],[[91542,9471],[-1,306],[-1,170],[-2,458],[-1,77],[0,77],[-1,55],[0,41],[0,92],[0,85],[0,52],[0,73],[0,37],[0,34],[0,44],[0,44],[0,38],[-1,78],[1,30],[0,69],[0,34],[-1,81],[0,250],[0,3],[0,56],[0,1],[0,23],[0,20],[0,101],[0,69],[0,98],[0,55],[0,77],[1,349],[0,107],[0,87],[-1,233],[0,139],[0,75],[0,38],[-1,34],[0,31],[1,41],[0,34],[0,36],[1,182],[-1,51],[0,89],[0,45],[0,40],[1,166],[-1,58],[0,122],[1,40],[-1,38],[1,37],[-1,44],[1,52],[0,32],[0,32],[-1,44],[0,47],[0,40],[0,41],[1,39],[0,2],[-1,45],[0,69],[0,52],[1,40],[-1,57],[0,42],[1,37],[-1,42],[0,60],[0,33],[0,36],[1,35],[0,112],[0,30],[0,41],[0,57],[0,58],[0,30],[0,30],[0,67],[0,35],[0,61],[-1,46],[0,45],[0,55],[0,35],[0,39],[0,45]],[[63486,13443],[0,-102],[-1,-96],[0,-95],[1,-95],[-1,-37],[0,-62],[1,-137],[0,-119],[0,-115],[-1,-219],[0,-125],[2,-33],[-1,-122],[0,-202],[-1,-46],[1,-41],[-1,-291],[10,-82],[41,-22],[1,0],[15,5],[0,1],[16,16],[10,-27],[10,-40],[-15,0],[-12,-11],[-6,-23],[-5,-19],[-1,-2],[3,-2],[14,-11],[15,-11],[15,-20],[-4,-18],[-3,-18],[13,-17],[0,-31],[14,13],[4,-27],[0,-1],[-11,-23],[-1,0],[-6,-49],[21,-7],[11,19],[13,-14],[1,-30],[10,-39],[-13,-10],[11,-29],[0,-1],[12,1],[6,-29],[9,-18],[1,0],[11,-5],[4,40],[12,40],[9,-23],[2,-36],[-10,-20],[9,-19],[9,-1],[5,-1],[9,30],[3,1],[7,2],[5,2],[1,-11],[1,-29],[4,-33],[-14,2],[-40,1],[-28,0],[-40,1],[-32,-1],[-27,0],[-16,1],[-32,0],[-25,-1],[-27,0],[1,-267],[0,-162],[-1,-261],[-1,-169],[2,-419],[1,-18],[0,-76],[0,-175],[0,-73],[0,-98],[0,-80],[0,-144],[0,-72],[0,-65],[-2,-81],[1,-200],[-1,-46],[-5,-70],[0,-1],[0,-1]],[[63479,8392],[-27,54],[-67,29],[-69,-54],[-34,-9],[-33,-10],[-74,62],[-2,4],[-20,71],[-9,94],[-15,51],[-1,4],[-32,25],[-1,0],[-29,117],[-6,93],[11,125],[54,180],[4,90],[-9,30],[-11,33],[-5,16],[-20,101],[-4,121],[16,93],[27,60],[16,83],[16,91],[-23,51],[-43,3],[-18,19],[-37,38],[-2,1],[-17,130],[0,2],[-17,27],[-1,0],[-23,67],[-52,117],[-18,12],[-71,48],[-73,113],[-99,175],[-76,79],[-80,69],[-65,56],[-91,72],[-55,44],[-97,25],[-75,-53],[-61,-44],[-56,-32],[-28,-65],[-35,-38],[-25,-81],[-46,-155],[-39,-238],[-50,-258],[-35,-114],[-30,-93],[-77,-175],[-20,-38],[-63,-122],[-72,-114],[-4,0],[-46,-3],[-64,25],[-90,-28],[-46,14],[-58,-47],[-51,-36],[4,-98],[33,-166],[5,-189],[-32,-103],[-38,-53],[-91,42],[-2,5],[-40,112],[-2,5],[-42,22],[-1,0],[-44,-67],[-21,-117],[37,-121],[33,-156],[5,-142],[-6,-44],[-13,-100],[-47,-108],[-31,38],[-2,2],[1,46],[-11,37],[-23,81],[-1,3],[-30,57],[-39,-5],[-48,-85],[-4,-76],[4,-91],[-4,-93],[-2,-79],[-30,-185],[-37,-79],[0,-1],[-31,50],[-1,2],[-15,61],[-1,2],[-28,55],[0,1],[-53,-48],[-7,-154],[-1,-20],[0,-9],[-1,-21],[-3,-46],[0,-1],[-9,-51],[-22,-75],[-20,-46],[-5,-9],[-4,-6],[-2,-4],[-19,-29],[-30,-47],[-50,-131],[-97,-61],[-49,-16],[-10,-10],[-70,-74],[-19,-9],[-1,-1],[-21,-10],[-42,-34],[-44,-28],[-69,-31],[-102,43],[0,1],[-18,52],[-48,64],[-55,62],[-73,15],[-53,73],[-46,83],[-32,59],[-43,80],[-53,42],[-121,119],[-63,71],[-49,82],[-16,25],[-44,36],[-39,-13],[-65,-21],[-32,-11],[-47,6],[-89,60],[-78,83],[-97,191],[-1,3],[0,1],[-46,155],[-31,111],[7,100],[50,279],[27,24],[24,-54],[0,-1],[43,-110],[2,-5],[43,-17],[71,90],[40,102],[27,176],[26,163],[5,165],[3,77],[-17,154],[-1,0],[-1,0],[-46,-4],[-69,-42],[-94,50],[-1,4],[-19,82],[3,61],[30,65],[48,54],[59,103],[26,71],[36,173],[13,105],[15,125],[21,92],[62,455],[9,62],[11,81],[-1,1],[0,1],[-1,1],[0,1],[-20,32],[-38,-20],[-68,-3],[-61,88],[-2,4],[-40,112],[-1,3],[-23,78],[-48,163],[-1,1],[-28,37],[-48,-39],[-40,-78],[-96,-108],[-74,-40],[-42,-23],[-22,-12],[-177,-67],[-244,-24],[-121,38],[-38,13],[-177,113],[-63,42],[-120,55],[-6,3],[-23,33],[-40,57],[0,2],[0,1],[1,70],[46,17],[18,67],[-16,106],[-1,2],[-1,1],[-57,123],[-85,114],[-2,4],[-82,194],[-1,1],[0,1],[-29,166],[13,78],[39,45],[48,-14],[42,-97],[26,-49],[42,15],[57,88],[9,45],[-16,90],[-1,2],[0,1],[-41,68],[-142,161],[-131,305],[-43,71],[-1,3],[-1,1],[-39,137],[-25,149],[-5,211],[3,81],[22,107],[24,47],[53,126],[109,252],[73,273],[57,327],[9,140],[10,92],[-5,59],[-2,3],[0,1],[-19,48],[-5,2],[0,4],[0,12],[0,3],[-2,55],[-15,125],[-47,145],[-48,97],[-1,1],[-67,172],[-34,29],[-23,19],[-124,3],[-48,-87],[-60,-74],[-34,-114],[-25,-59]],[[74866,14723],[2,-31],[0,-1],[4,-30],[50,-161],[89,-284],[44,-140],[1,-4],[20,-65],[17,-55],[64,-204],[31,-101],[20,-62],[24,-79],[57,-180],[-64,-263],[-19,-77],[-20,-84],[-24,-99],[-127,-194],[-5,12],[-31,80],[-36,93],[-9,-162],[-16,-286],[-5,-99],[2,-26],[15,-131],[3,-33],[12,-112],[-182,-119],[-8,-5],[-71,-46],[-41,-24],[-198,-112],[-18,-10],[-24,-13],[-19,-11],[12,-39],[59,-179],[38,-116],[21,-65],[5,-15],[69,-210],[26,-82],[59,-179],[65,-129],[4,-8],[61,-121],[52,-102],[3,-7],[37,-72],[53,-105],[-35,-113],[-61,-197],[-2,-6],[-21,-67],[-63,-206],[112,-446],[23,-95],[-20,-176],[-11,-99],[-22,-184],[-29,-259],[-10,-86]],[[74829,8242],[-1,1],[-175,1],[-36,1],[-203,2],[-319,487],[-42,64],[-65,-156],[-159,-380],[-100,-236],[-246,-989],[-209,-186],[-297,-266],[-295,-138],[-18,43],[-113,274],[-286,690],[-53,129],[-102,-72],[-137,-95],[-84,-58],[-15,-13],[-81,-73],[-56,-50],[-125,-111],[-53,-48],[-55,238],[-10,42],[-3,15],[-27,116],[-33,144],[-90,390],[-7,67],[-124,1154],[-30,271],[-14,131],[-57,56],[-200,193],[-55,52],[-1,1],[-64,62]],[[70789,9995],[0,7],[0,62],[0,386],[0,11],[0,199],[0,79],[0,104],[0,36],[-1,48],[1,419],[0,196],[0,184],[-50,0],[-39,0],[-82,2],[-26,-6],[-19,-1],[-31,-2],[-12,1],[-17,2],[-132,6],[2,75],[-3,579],[-1,297],[-1,35],[0,278],[0,43],[0,258],[0,142]],[[81793,15974],[10,-23],[29,-6],[28,9],[44,-57],[2,-5],[0,-16],[-5,-15],[7,-11],[33,-53],[6,-1],[0,-1],[6,10],[10,112],[1,0],[0,-2],[10,-47],[7,-17],[1,-1],[10,-6],[5,5],[31,-1],[15,-1],[2,-2],[31,-37],[29,-28],[7,-2],[4,2],[1,1],[12,26],[5,2],[61,-49],[28,-59],[36,-74],[4,-9],[-3,-35],[-2,-16],[-3,-37],[-9,-85],[1,0],[22,-7],[1,-7],[15,-86],[2,-25],[1,-4],[2,-25],[3,-47],[1,-9],[-2,-9],[-19,-43],[0,-1],[35,-35],[9,-22],[11,-51],[1,-2],[15,-53],[5,-11],[24,-9],[9,0],[3,7],[1,31],[0,16],[13,11],[17,-26],[-1,-379],[-1,-35],[2,-34],[1,-50],[-1,-33],[0,-41],[-1,-47],[0,-41],[0,-31],[1,-47],[-1,-66],[1,-47],[-1,-36],[0,-37],[0,-50],[0,-29],[1,-37],[0,-49],[-1,-30],[0,-90],[0,-34],[0,-43],[0,-50],[0,-32],[0,-65],[0,-38],[-1,-58],[1,-44],[-1,-33],[0,-38],[0,-47],[1,-89],[0,-87],[-1,-85],[0,-65],[1,-51],[1,-47],[0,-66],[0,-35],[0,-36],[0,-38],[0,-31],[0,-30],[1,-35],[0,-31],[0,-32],[0,-44],[-1,-36],[0,-61],[0,-88],[0,-36],[0,-41],[0,-62],[0,-36],[0,-34],[0,-30],[0,-2],[0,-38],[0,-53],[0,-59],[1,-45],[-1,-42],[1,-46],[-1,-44],[0,-12],[0,-23],[0,-31],[0,-32],[1,-104],[0,-125],[0,-33],[1,-86],[0,-75],[1,-41],[0,-241],[-3,-37],[1,-32],[1,-569],[1,-386],[10,-164],[-3,-16],[15,-70],[1,-2],[2,-29],[0,-3],[-3,-24],[0,-5],[1,-6],[1,-3],[5,-26],[31,-46],[7,-2],[8,9],[5,0],[7,0],[9,-5],[1,-1],[8,-4],[83,-242],[35,-159],[3,-17],[8,-35],[0,-2],[0,-2],[4,-6],[53,-45],[37,-27],[4,-3],[95,-46],[2,-1],[25,-12],[61,23],[4,-3],[3,-3],[15,-14],[19,-19],[2,-1],[30,-23],[4,-2],[68,-46],[11,-7],[19,-12],[68,-156],[0,-8],[-1,-29],[-1,-21],[4,-14],[8,-25],[3,-10],[1,0],[6,4],[3,-6],[10,-17],[14,-23],[7,-32],[2,-9],[9,-37],[1,-3],[4,-19],[3,-31],[1,-12],[3,-23],[1,-37],[1,-19],[2,-39],[1,-11],[0,-1],[1,-9],[18,-66],[7,-11],[-2,-28],[0,-3],[4,-23],[8,-46],[0,-6],[7,-26],[12,-51],[4,-5],[5,3],[8,12],[3,1],[8,3],[3,-4],[1,-3],[54,-78],[18,-32],[3,-11],[0,-3],[1,-2],[7,-35],[81,-121],[6,-9],[28,-70],[2,-8],[5,-20],[3,-8],[7,-5],[33,-18],[27,10],[4,5],[13,22],[32,-1],[3,-1],[16,-27],[25,-4],[3,0],[15,-3],[10,-2],[2,-1],[43,-8],[9,-2],[26,-5],[22,-4],[17,-5],[3,-5],[0,-26],[1,-2],[6,-13],[17,-33],[4,-1],[66,6],[11,2],[4,8],[2,6],[6,11],[13,21],[13,19],[0,1],[3,2],[34,27],[10,8],[12,3],[14,-10],[29,-18],[6,-2],[2,5],[11,5],[9,3],[3,1],[21,3],[10,2],[11,2],[2,-3],[1,-3],[8,-23],[4,-19],[3,-14],[3,-13],[4,-34],[5,-15],[21,-22],[11,-4],[4,5],[35,56],[3,10],[8,22],[0,21],[3,25],[4,15],[7,17],[3,3],[1,1],[4,5],[7,2],[0,-1],[26,-16],[4,-5],[5,-10],[4,-14],[4,-17],[3,-11],[5,-9],[5,-3],[2,-1],[19,-12],[26,-3],[8,2],[8,7],[20,27],[32,48]],[[84494,7617],[-3,-79],[1,-43],[7,-7],[21,-52],[34,-219],[9,-62],[0,-63],[-9,-48],[-34,-104],[-18,-37],[-11,-14],[-16,-11],[-37,-11],[-57,52],[-57,4],[-69,59],[-20,23],[-8,18],[0,22],[-15,41],[-12,22],[-80,78],[-98,82],[-51,0],[-29,-22],[-12,-7],[-54,-29],[-1,0],[-27,-11],[-8,0],[-13,0],[-20,-8],[-19,-14],[-13,-26],[-9,-48],[0,-59],[13,-93],[21,-130],[0,-85],[-6,-40],[-18,-67],[-16,-33],[-64,-78],[-20,-16],[-12,-9],[-41,0],[-19,7],[-27,19],[-95,99],[-38,168],[-16,3],[-3,4],[-4,4],[-12,26],[-10,35],[-15,54],[-34,70],[-25,30],[-42,7],[-22,26],[-19,37],[-29,41],[-78,56],[-28,18],[-41,60],[-34,52],[-23,51],[-23,41],[-55,82],[-25,26],[-105,177],[-23,23],[-16,0],[-25,15],[-9,11],[-53,115],[-33,35],[-19,16],[-144,115],[-30,11],[-16,-25],[-9,-34],[0,-85],[20,-85],[1,-30],[0,-70],[-11,-145],[-1,-10],[-11,-54],[-46,-224],[-11,-21],[-5,-12],[-3,-3],[-14,-17],[-21,-24],[-51,-52],[-19,0],[-4,0],[-11,11],[-14,30],[-11,7],[-12,0],[-98,-26],[-62,-22],[-29,-26],[-12,-22],[-17,-5],[-17,-17],[-41,-44],[-18,-27],[-48,124],[23,94],[-10,168],[-34,63],[-50,27],[-92,105],[-2,2],[-1,2],[-31,31],[-18,-114],[50,-191],[2,-8],[3,-13],[57,-22],[-34,-285],[-26,-53],[-2,-4],[-24,-47],[-8,-8],[0,-1],[-20,-40],[-136,-139],[-21,-29],[-55,-6],[0,5],[-4,85],[33,161],[9,115],[-34,105],[-53,13],[-49,-119],[-2,-167],[-48,-148],[-50,-58],[-97,-118],[-123,91],[-2,-2],[-2,-2],[-71,-48],[-40,33],[-46,106],[-21,28],[-3,8],[-2,5],[-18,46],[-21,16],[-26,41],[-22,74],[-6,22],[-78,189],[-41,1],[-26,-29],[-7,-68],[3,-49],[51,-137],[7,-22],[1,-5],[12,-44],[9,-79],[4,-114],[-8,-35],[-22,-37],[-19,-16],[-36,24],[-16,18],[-15,18],[-1,1],[0,1],[-11,13],[-32,22],[-29,6],[-26,0],[-28,-37],[-20,-54],[-20,-66],[-1,-1],[-31,-105],[-65,-105],[-73,-55],[-52,26],[-72,-23],[-62,-99],[-21,-22],[-48,-49],[-1,-1],[0,-1],[-5,-6],[-31,-42],[-37,-78],[-25,-15],[-12,0],[-11,-22],[-32,-86],[-1,-1],[-8,-21],[-48,-181],[-31,-89],[-9,-41],[-16,-85],[-16,-226],[0,-41],[9,-88],[9,-23],[5,-25],[11,-86],[11,-96],[-2,-111],[-11,-77],[-14,-60],[-29,-90],[0,-3],[-6,-18],[-53,-118],[-9,-13],[-1,-1],[-35,-50],[-65,-66],[-4,0],[-69,-49],[-23,-25],[-7,-8],[-4,3],[-19,-18],[-2,-3],[0,-1],[-5,-8],[-9,-18],[-23,-1],[-10,-1],[-1,0],[-23,-2],[-12,11],[-57,22],[-126,3],[-39,-7],[-15,-15],[-46,7],[-21,29],[-48,52],[-54,66],[-40,56],[-89,95],[-61,59],[-37,52],[-25,40],[-14,15],[-27,15],[-84,40],[-43,13],[-12,-21],[-6,-10],[-1,-2],[-16,-24],[-3,-5],[-18,-26],[-34,-31],[-7,-6],[-7,-3],[-1,-1],[-16,-7],[-1,0],[-9,0],[-8,0],[-3,4],[-3,5],[-1,1],[-8,12],[-23,3],[-2,-2],[0,-1],[-3,-3],[-3,-2],[-4,-4],[0,-1],[-20,-20],[-14,-30],[-3,-78],[-12,-48],[-27,-55],[-19,-49],[-16,-63],[-7,-51],[-11,-100],[-14,-93],[-33,-159],[-13,-56],[0,-122],[9,-137],[9,-41],[11,-85],[0,-16],[0,-19],[-1,-91],[0,-14],[-1,-4],[-1,-53],[-16,-101],[-1,-6],[-11,-76],[-43,-279],[-67,-209],[-14,-44],[-181,-119],[-21,-56],[-36,-38],[-50,-50],[-26,3],[-35,3],[-3,1],[-23,2],[-71,69],[-1,5],[-48,139],[0,1],[-1,168],[-39,225],[-9,136],[-54,176],[-1,1],[-87,232],[-18,50],[-1,1],[-182,363],[-1,4],[-168,435],[0,2],[-29,133],[-37,238],[-43,190],[-1,2],[-1,1],[-42,84],[-188,114],[-61,6],[-37,3],[-63,-97],[-41,-62],[-43,3],[-66,6],[-14,1],[-29,-7],[-20,-4],[-25,-6],[-110,-57],[-88,-10],[-77,-7],[-13,-2],[-35,23],[-91,194],[-12,24],[0,2],[-1,2],[-7,26],[-19,70],[-29,105],[0,273],[-8,181],[-39,242],[-46,199],[-1,2],[-1,2],[-14,33],[-13,30],[-11,23],[-3,7],[-7,6],[-19,16],[-27,23],[-8,-3],[-56,-24],[-3,-2],[-8,-4],[-23,-12],[-31,-17],[-2,-1],[-44,-23],[-65,-19],[-31,-8],[-12,-4],[-19,0],[-94,1],[-33,0],[-18,1],[-9,7],[-3,2],[-29,22],[-14,11],[-139,224],[-295,299],[-93,67],[-91,123],[-1,3],[0,1],[-20,77],[-2,6],[7,112],[2,6],[51,157],[91,215],[64,152],[35,30],[114,119],[102,188],[41,157],[16,120],[-38,145]],[[91542,9471],[-51,58],[-24,15],[-43,42],[-23,48],[-49,86],[-46,82],[-71,98],[-44,41],[-50,27],[-7,-4],[-22,8],[-53,53],[-135,84],[-12,11],[-34,49],[-76,64],[-89,9],[-27,-18],[-7,-16],[-7,-14],[-4,-139],[-3,-75],[-13,-54],[-15,-64],[-19,-54],[-17,-27],[-67,-76],[-113,-220],[-16,-52],[-18,-107],[0,-63],[12,-85],[11,-34],[28,-126],[8,-81],[5,-108],[0,-103],[-8,-167],[-22,-188],[-14,-88],[-1,-8],[-12,-52],[-1,0],[-36,-97],[-10,-28],[-18,-33],[-6,0],[-37,-3],[-12,4],[-14,19],[-14,30],[1,82],[1,29],[3,33],[1,252],[-3,74],[-8,67],[-4,33],[-11,33],[-23,49],[-16,7],[-26,1],[-18,-22],[-56,-96],[-1,-3],[-15,-31],[-9,-17],[-10,-43],[-10,-40],[-10,-41],[0,-1],[-6,-30],[-4,-48],[2,-118],[28,-119],[26,-119],[5,-48],[10,-159],[0,-59],[-4,-26],[-9,-33],[-16,-34],[-59,-54],[-35,-18],[-7,4],[-45,-7],[-65,53],[-13,15],[-111,63],[-16,83],[-20,23],[-39,96],[-17,64],[-25,52],[-23,30],[-16,11],[-53,-3],[-47,-25],[-9,-7],[-9,-21],[-5,-20],[0,-107],[3,-30],[0,-155],[-9,-52],[-8,-17],[-16,-38],[-25,-15],[-21,1],[-18,0],[-7,8],[-75,-7],[-35,-18],[-25,-22],[-68,-21],[-50,-25],[-51,-7],[-15,-7],[-48,-29],[-46,1],[-41,19],[-41,0],[-110,-43],[-101,-35],[-24,0],[-10,0],[-82,1],[-84,23],[-14,8],[-3,7],[-11,23],[-16,15],[-78,30],[-78,-6],[-47,-29],[-58,-7],[-38,23],[-32,34],[-8,15],[-7,25],[0,60],[5,29],[-1,145],[-14,81],[-28,145],[-13,29],[-9,12],[-35,-7],[-32,-37],[-52,-84],[-11,-11],[-41,-63],[-23,-44],[-46,-66],[-27,-26],[-73,-54],[-54,-29],[-63,0],[-32,1],[-19,0],[-12,11],[-3,4],[-1,2],[-5,15],[-1,5],[-2,12],[-3,14],[0,62],[10,58],[9,52],[1,42],[-1,60],[-1,70],[-2,126],[-1,13],[-2,13],[-11,37],[-4,10],[-8,15],[-11,23],[-21,12],[-18,0],[-53,-66],[-47,-100],[-28,-73],[-38,-100],[-25,-51],[-21,-34],[-4,-7],[-12,-10],[-54,-48],[-20,-12],[-12,-7],[-43,-1],[-20,-1],[-12,0],[-10,11],[-31,63],[-42,171],[-2,48],[6,107],[33,203],[0,104],[-1,105],[-1,20],[-5,74],[-17,123],[-4,15],[-1,2],[-15,31],[-14,59],[-7,71],[-16,100],[-21,104],[-14,44],[-19,41],[-11,22],[-16,19],[-16,9],[-3,1],[-24,12],[-18,4],[-62,12],[-90,-3],[-4,0],[-45,19],[-7,8],[-19,40],[-36,93],[-19,41],[-18,22],[-28,27],[-22,-10],[-10,-5],[-6,-13],[-5,-13],[-24,-159],[-5,-51],[0,-23],[4,-7],[-1,-37],[-10,-45],[-6,-25],[-14,-44],[-48,-92],[-13,-11],[-48,-22],[-62,-70],[-26,-14],[-35,-19],[-11,-11],[-21,-48],[-5,-29],[0,-19],[-6,-22],[-59,-166],[-25,-48],[-12,-14],[-16,-11],[-32,-19],[-51,-5],[-19,-2],[-10,-7],[-64,56],[-47,26],[-14,8],[-37,4],[-19,-6],[-26,-9],[-59,-66],[-8,-18],[-34,-105],[1,-6],[-25,-81],[-69,-144],[-7,-11],[-11,0],[-16,-15],[-13,-14],[-10,-22],[-22,-63],[0,-30],[-7,-12],[-11,-21],[-74,-74],[-24,-7],[-47,-9],[-106,-8],[-21,15],[-23,26],[-34,52],[-35,78],[-20,32],[-32,49],[-7,8],[-50,44],[-39,21],[-25,13],[-38,4],[-42,4],[-42,-3],[-23,-8],[-11,-7],[-94,-103],[-15,-30],[-18,-62],[0,-8],[-14,-92],[-18,-85],[-2,-37],[7,-48],[25,-197]],[[70789,9995],[-2,-2],[-112,-152],[-136,-184],[-16,-16],[-41,-39],[-10,-11],[-63,-48],[-54,-70],[-21,-28],[-37,51],[-1,3],[0,1],[-39,188],[-3,189],[0,44],[14,128],[-2,1],[-23,4],[-61,-47],[-24,-18],[-35,-79],[-41,-123],[-8,-180],[24,-361],[37,-187],[15,-80],[2,-12],[38,-293],[19,-314],[-1,-295],[-86,-273],[-56,-170],[-17,-53],[-3,-8],[0,-1],[-39,-118],[-92,-257],[-100,-277],[-21,-59],[-25,-47],[-32,-57],[-14,-16],[-1,-1],[-28,-31],[-1,0],[-28,-31],[-1,-1],[-1,-1],[-59,-65],[-29,-31],[-31,10],[-41,15],[-1,4],[-69,223],[-46,226],[0,1],[-1,1],[-74,128],[-112,43],[-69,-60],[-120,-126],[-33,-173],[-6,-115],[9,-33],[-6,-45],[8,-23],[1,-5],[26,-26],[82,-5],[33,-2],[30,-5],[106,-17],[12,-10],[30,-25],[29,-25],[34,-29],[78,-159],[1,-1],[1,-2],[21,-147],[4,-176],[-23,-76],[-1,-3],[-31,-2],[-31,-3],[-1,0],[-44,-4],[-229,-108],[-72,-78],[-74,-144],[-43,-198],[0,-19],[-5,-111],[11,-87],[20,-174],[57,-354],[7,-75],[19,-203],[10,-115],[-11,-332],[-7,-61],[-13,-127],[-5,-47],[-55,-224],[-30,-76],[-45,-116],[-69,-117],[-28,-48],[-22,-17],[-59,-48],[-49,-38],[-91,-20],[-133,51],[-64,45],[-75,52],[-33,44],[-31,39],[-54,71],[-6,7],[-6,11],[-21,43],[-76,152],[-1,3],[-54,151],[0,1],[-4,80],[-1,25],[-27,135],[-64,239],[-1,0],[-40,-10],[-51,60],[-4,10],[-28,69],[-2,4],[-2,6],[-5,12],[0,1],[8,31],[55,226],[-9,105],[-26,150],[-38,216],[-19,72],[-102,387],[-4,189],[-5,217],[54,317],[80,166],[161,11],[80,108],[37,49],[30,136],[3,11],[-2,253],[-10,83],[-23,187],[-37,236],[-8,52],[-22,136],[-8,53],[-22,195],[-11,257],[-27,138],[-11,53],[-1,3],[-1,1],[-45,112],[-97,129],[-78,120],[-1,3],[0,1],[-17,59],[-1,0],[0,1],[-57,86],[-52,25],[-76,-22],[-48,-12],[-26,-7],[-20,-5],[-41,-103],[-102,-88],[-31,-47],[-37,-108],[-17,-159],[-10,-238],[-11,-156],[-7,-98],[-1,-162],[-46,-212],[-29,-124],[-128,-28],[-103,14],[-116,148],[-108,238],[-30,68],[-1,1],[0,3],[-65,217],[-25,83],[-1,0],[-48,-6],[-23,-66],[15,-103],[-2,-253],[-28,-135],[-24,-68],[-42,-118],[-112,-227],[-38,-24],[-38,36],[0,3],[-6,80],[16,150],[62,180],[55,263],[-29,140],[-1,0],[-54,25],[-37,-81],[-32,-70],[-13,-185],[-19,-334],[-26,-135],[-35,-177],[-33,-188],[-28,-74],[-61,-161],[-46,-219],[-116,-244],[-49,-60],[-210,-13],[-120,11],[-62,-4],[-46,-2],[-36,2],[-162,12],[-82,54],[-60,40],[-54,58],[-57,61],[-71,140],[-1,3],[-82,254],[5,142],[5,131],[45,164],[21,168],[13,102],[9,72],[29,125],[2,506],[0,71],[-36,142],[-69,268],[0,1],[-1,0],[-1,2],[-234,280],[-41,49],[-2,3],[-27,38],[-97,67],[-52,14],[-52,-38],[-5,-3],[-25,-20],[-30,-24],[-107,-84],[-84,-66],[-87,-153],[-34,-36],[-28,-31],[-27,-40],[-15,-22],[-45,-54],[-42,-36],[-4,-3],[-26,-22],[-30,-24],[-9,-7],[-57,10],[-1,4],[-10,56],[-1,2],[-1,1],[-4,9]]],"transform":{"scale":[0.0000857146564165637,0.00003386489530895213],"translate":[-103.00242477599988,33.61584999900015]}} diff --git a/src/js/config/mapconfig/mapfiles/county/or-counties.json b/src/js/config/mapconfig/mapfiles/county/or-counties.json new file mode 100644 index 00000000..972ad236 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/or-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-124.56617536999988,41.99187135900013,-116.46422312599981,46.28768217800007],"geometries":[{"type":"MultiPolygon","properties":{"name":"OR"},"id":"41007","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11,12,13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]]]},{"type":"MultiPolygon","properties":{"name":"OR"},"id":"41009","arcs":[[[28]],[[29,30,-12,31]]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41059","arcs":[[32,33,34,35,36]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41063","arcs":[[37,38,-33,39]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41049","arcs":[[-36,40,41,42,43]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41061","arcs":[[44,45,-34,-39]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41021","arcs":[[46,47,48,49,-43]]},{"type":"MultiPolygon","properties":{"name":"OR"},"id":"41057","arcs":[[[50]],[[51]],[[52,53,54,55,56,-13]]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41067","arcs":[[57,58,59,-53,-31]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41055","arcs":[[60,61,-49]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41051","arcs":[[62,63,64,-58,-30]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41027","arcs":[[65,66,-64,67]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41065","arcs":[[-61,-48,68,69,70,71,-66,72]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41005","arcs":[[-67,-72,73,74,-59,-65]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41071","arcs":[[-75,75,76,-54,-60]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41047","arcs":[[-74,-71,77,78,79,-76]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41001","arcs":[[80,81,82,-45,-38]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41053","arcs":[[-80,83,84,85,-55,-77]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41069","arcs":[[-42,86,87,88,-69,-47]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41041","arcs":[[-86,89,90,91,-56]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41023","arcs":[[-46,-83,92,93,94,-87,-41,-35]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41031","arcs":[[-89,95,96,97,-78,-70]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41043","arcs":[[-98,98,99,100,-84,-79]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41003","arcs":[[-101,101,-90,-85]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41013","arcs":[[-88,-95,102,103,-96]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41045","arcs":[[104,105,-93,-82]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41017","arcs":[[-104,106,107,108,109,-99,-97]]},{"type":"MultiPolygon","properties":{"name":"OR"},"id":"41039","arcs":[[[110]],[[-110,111,112,113,-91,-102,-100]]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41025","arcs":[[-106,114,115,-107,-103,-94]]},{"type":"MultiPolygon","properties":{"name":"OR"},"id":"41019","arcs":[[[116]],[[117]],[[118]],[[119,120,121,122,123,124,-113]]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41035","arcs":[[125,126,127,-120,-112,-109]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41037","arcs":[[128,-126,-108,-116]]},{"type":"MultiPolygon","properties":{"name":"OR"},"id":"41011","arcs":[[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136,137,-124]]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41029","arcs":[[-128,138,139,-121]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41015","arcs":[[-123,140,141,-137]]},{"type":"Polygon","properties":{"name":"OR"},"id":"41033","arcs":[[-122,-140,142,-141]]}]},"states":{"type":"GeometryCollection","bbox":[-124.56617536999988,41.99187135900013,-116.46422312599987,46.28768217800007],"geometries":[{"type":"MultiPolygon","properties":{"name":"Oregon"},"id":"41","arcs":[[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[116]],[[117]],[[118]],[[110]],[[50]],[[51]],[[28]],[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[31,62,67,72,61,49,43,36,39,80,104,114,128,126,138,142,141,137,124,113,91,56,13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]]]}]}},"arcs":[[[11287,97396],[3,-36],[-17,-19],[-30,-32],[-32,-3],[-35,19],[-47,-1],[-22,19],[-26,44],[23,-5],[11,50],[89,13],[62,36],[66,14],[52,27],[49,28],[38,9],[28,1],[19,0],[12,-18],[-19,-30],[-18,-10],[-65,-22],[-31,-16],[-39,-37],[-40,-24],[-31,-7]],[[10927,97464],[-15,-48],[-45,-22],[-25,10],[-1,0],[-43,-20],[-11,-16],[-18,-29],[-22,0],[-10,0],[-20,-3],[-21,-2],[-96,8],[-47,3],[-40,30],[14,48],[35,9],[42,13],[29,23],[53,-36],[-25,86],[43,-14],[37,-45],[41,-8],[-2,27],[-1,25],[30,58],[38,15],[5,3],[-23,25],[-12,13],[-54,42],[27,9],[9,3],[48,-12],[36,-27],[47,-27],[23,-25],[13,-14],[16,-17],[7,-8],[20,-32],[-25,-19],[-57,-26]],[[10420,97472],[-43,-13],[-63,3],[-29,36],[-13,70],[31,34],[52,27],[36,42],[-11,72],[-5,64],[30,-47],[48,-112],[5,-96],[-9,-49],[-29,-31]],[[11688,97693],[-16,-18],[-29,-20],[-20,-16],[-20,1],[-31,1],[9,21],[-13,16],[-18,-26],[-47,6],[26,90],[9,49],[29,9],[34,4],[40,-7],[26,-8],[30,-19],[14,-9],[15,-11],[14,-13],[25,-14],[-18,-20],[-59,-16]],[[10722,97879],[66,-65],[-60,18],[-46,14],[-22,33],[-2,54],[29,-11],[35,-43]],[[10344,97849],[-53,-7],[-20,33],[-27,79],[32,22],[33,-57],[35,-70]],[[10162,98024],[-18,-108],[-49,58],[-23,75],[55,15],[35,-40]],[[11791,98151],[3,-7],[19,3],[45,6],[51,-1],[17,-6],[29,-12],[65,-32],[21,-14],[7,-4],[15,-18],[-4,-74],[0,-18],[0,-9],[0,-25],[2,-8],[3,-17],[3,-29],[-6,-29],[-8,-36],[-10,-67],[-7,-46],[-10,-23],[-13,-21],[-5,-7],[-15,-13],[-17,1],[-27,14],[-4,2],[-14,14],[-12,18],[-17,4],[-15,11],[-13,-23],[-15,7],[-95,65],[-22,14],[-15,11],[-14,10],[-17,12],[-28,18],[-20,11],[-5,2],[-7,12],[-8,15],[-24,42],[5,24],[11,13],[10,31],[3,27],[19,1],[-11,31],[-18,5],[0,12],[2,16],[14,8],[28,12],[-15,17],[-15,3],[-7,15],[-3,7],[8,8],[9,8],[26,10],[47,5],[9,1],[6,1],[7,1],[13,2],[30,0],[4,1],[5,-12]],[[11555,98293],[-20,-68],[-25,-52],[0,-19],[-2,-39],[-11,-38],[-2,-80],[-26,-84],[-26,-64],[-25,-52],[-25,-26],[-25,-73],[-27,-60],[-46,-30],[-29,-9],[-25,-5],[-42,26],[29,18],[21,5],[16,4],[21,24],[-33,12],[-43,-4],[-38,1],[-29,10],[-34,20],[-25,66],[-31,47],[-17,74],[-24,29],[67,64],[44,39],[44,46],[44,10],[46,0],[58,-12],[25,-9],[15,44],[-27,4],[-21,8],[21,49],[26,48],[44,81],[26,8],[45,-13],[18,19],[7,1],[23,4],[68,28],[-30,-52]],[[11155,98350],[8,-37],[30,5],[34,35],[4,5],[49,3],[24,-14],[-6,-44],[-1,-10],[3,-62],[-42,-32],[-24,2],[-15,2],[26,38],[-45,9],[-36,-65],[0,65],[-42,29],[0,-5],[-9,-61],[-27,-15],[-32,-14],[-22,47],[-27,23],[8,21],[10,24],[40,62],[53,19],[39,-30]],[[11865,98533],[47,-20],[7,16],[7,15],[64,32],[27,-1],[42,-19],[37,-8],[21,-5],[8,9],[7,7],[4,4],[64,2],[49,1],[37,-15],[12,-9],[15,-8],[44,-35],[-18,-27],[-22,-35],[-134,-208],[-91,-44],[-16,3],[-45,8],[-21,4],[-14,11],[-28,8],[-17,6],[-5,2],[-35,10],[-5,2],[-17,17],[-13,-2],[-8,-25],[-5,-14],[-4,-13],[-46,8],[-6,1],[-67,12],[-4,0],[-51,16],[-87,-2],[21,59],[55,131],[14,-12],[27,-55],[26,-17],[7,-4],[32,-9],[-8,16],[-17,30],[-36,60],[-17,29],[117,149],[46,-81]],[[14841,96590],[0,-29],[-1,-69],[0,-30],[-3,-212],[0,-9],[0,-30],[-1,-32],[-1,-79],[-2,-222],[-3,-203],[-1,-67],[-1,-106],[0,-39],[-3,-226],[-2,-196],[-2,-120],[-1,-175],[-2,-102],[-1,-67],[-4,-345],[95,-3],[0,-93],[0,-13],[0,-32],[1,-538],[0,-48],[0,-2],[-11,-205],[-3,-142],[0,-25],[1,-142],[1,-268],[0,-5],[-4,-132],[-8,-367],[0,-63],[6,-613],[-2,-194],[0,-66],[-2,-191],[-2,-377],[-1,-98],[-1,-123],[0,-103],[5,-202],[4,-151],[0,-26],[7,-304],[0,-13],[4,-196],[-1,-25],[-1,-81],[-2,-70],[0,-35],[-17,-802],[-5,-265],[-1,-46]],[[14876,88173],[-189,-4],[-130,1],[-46,0],[-124,1],[-29,1],[-47,0],[-191,1],[-21,0],[-35,0],[-1,0],[-51,0],[-15,0],[-135,2],[-7,1],[-259,1],[-163,2],[-87,0],[0,-105],[-27,0],[-97,1],[-78,0],[-13,0],[-64,0],[-212,-4],[-239,-4],[-22,0],[-67,3],[-14,0],[-114,3],[-68,2],[-349,-10],[-204,-6],[-34,-2],[-17,-1],[-126,-21],[-91,-11],[-341,-2],[-168,0],[-270,-1],[-92,0],[-130,-1],[-22,1],[-34,0],[0,57],[-1,180],[-7,0],[-29,0],[-173,-1],[-30,0],[-50,0],[-39,0],[-44,0],[-21,5],[-317,-1],[-61,0],[-128,-1],[-151,-1],[-203,0],[-69,-1],[-47,1],[-78,0],[-1,0],[-18,0],[-21,0],[-33,0],[-37,0],[-123,-1],[-77,0],[-179,-2],[-72,0],[-77,0],[-75,1],[-111,0],[-28,0],[-33,0],[-35,1],[-22,1],[-391,-1],[-58,-1],[-40,0],[-61,1],[-1,0],[-63,-1],[-26,0],[-12,-1],[-18,-3]],[[7393,88253],[-23,42],[0,44],[8,103],[1,52],[1,79],[1,82],[1,58],[18,81],[15,98],[18,89],[7,111],[5,60],[2,105],[4,66],[-3,60],[9,57],[5,97],[3,124],[-3,51],[-11,46],[-2,72],[-13,82],[-9,92],[6,78],[11,87],[4,82],[-3,99],[-8,63],[-4,87],[-11,49],[-2,49],[15,36],[5,75],[5,105],[4,132],[20,32],[12,11],[40,8],[-5,26],[-21,9],[-21,-1],[-29,1],[-28,34],[10,47],[-20,54],[-24,28],[-20,113],[-44,66],[-46,31],[-2,24],[2,53],[2,39],[-14,39],[17,44],[-36,96],[-10,-17],[-36,5],[14,38],[-23,58],[-57,37],[-23,8],[-10,27],[13,89],[-17,105],[32,-6],[84,81],[80,63],[61,134],[5,136],[63,123],[79,96],[93,58],[82,2],[27,-2],[50,4],[28,40],[22,57],[1,105],[33,223],[45,246],[23,49],[31,28],[42,5],[3,-25],[-14,-34],[-13,-57],[-7,-39],[-1,-38],[-14,-53],[-4,-43],[26,72],[8,61],[26,60],[12,50],[1,49],[-2,36],[10,18],[10,68],[16,14],[27,-21],[18,-10],[8,-31],[6,39],[-10,21],[-15,6],[-32,23],[-9,30],[-31,21],[-40,4],[-17,-20],[-12,-39],[8,-32],[-4,-23],[20,-42],[-15,-18],[-25,-12],[-2,37],[-26,87],[-8,122],[-4,52],[-2,83],[2,92],[0,89],[-3,75],[-3,76],[-3,58],[-6,126],[-11,121],[-8,108],[-10,152],[-9,71],[-2,65],[-7,74],[-16,110],[-11,96],[-12,76],[-17,110],[-22,105],[-13,70],[-8,63],[-11,67],[-14,79],[-16,64],[-17,82],[-19,95],[-14,60],[-22,92],[-21,93],[-16,79],[-22,72],[-21,85],[-18,74],[-13,43],[-18,55],[-17,54],[-21,75],[-32,100],[-10,36],[-16,59],[-18,68],[-18,73],[-12,41],[-15,43],[-24,68],[-15,56],[-23,76],[-20,66],[-38,103],[-17,51],[-19,57],[-32,82],[-30,75],[-28,85],[-2,5],[-8,3],[-148,368],[-44,128],[-104,176],[-1,10],[11,68],[69,109],[28,10],[75,10],[50,-52],[11,-62],[42,-69],[88,-58],[16,-63],[-11,-34],[-27,17],[-26,21],[-1,0],[-33,10],[-29,-40],[-23,-1],[-22,-1],[-8,-12],[0,-17],[44,-42],[22,-58],[-2,-50],[3,-11],[34,-63],[37,-79],[35,-50],[86,0],[55,43],[22,32],[6,-3],[8,-47],[-14,-18],[-6,-15],[10,-24],[10,-3],[11,-20],[-6,-71],[-15,-36],[-1,-9],[15,-9],[21,36],[8,40],[-2,3],[-20,110],[5,12],[-1,41],[0,15],[7,7],[17,-8],[65,-31],[43,-28],[44,-13],[67,-13],[30,-43],[-20,-47],[45,-31],[33,-9],[22,-37],[30,-25],[28,-26],[25,-16],[138,-125],[29,-38],[8,-85],[1,-26],[-32,-38],[-20,-35],[-14,-39],[25,19],[19,41],[26,-3],[17,-67],[14,-15],[18,-33],[12,16],[56,29],[32,71],[25,-14],[-44,-162],[-31,-121],[-59,-44],[-25,-12],[-3,-37],[15,7],[17,5],[34,-27],[35,80],[23,73],[22,72],[39,127],[18,-48],[0,-86],[-3,-95],[25,-43],[13,-54],[27,16],[38,1],[43,-29],[14,-29],[5,-12],[44,8],[17,-5],[48,9],[30,0],[27,-8],[31,-21],[26,-36],[37,-27],[63,-41],[37,-32],[-3,-49],[-12,-61],[-4,-21],[-28,-84],[-14,-95],[-20,-85],[0,-9],[7,-21],[5,-17],[3,-5],[3,-5],[8,-1],[6,11],[42,94],[-1,32],[11,78],[28,67],[24,46],[4,9],[23,36],[9,67],[46,14],[54,25],[29,15],[36,14],[42,59],[11,33],[-6,53],[5,2],[11,2],[7,-24],[4,-63],[45,24],[24,2],[-5,-51],[34,38],[29,46],[-8,36],[4,36],[33,8],[21,-51],[9,-51],[-2,-96],[-3,-74],[5,-70],[18,-93],[27,-69],[27,-67],[14,-88],[2,-148],[-4,-102],[-28,-57],[24,-62],[7,-73],[3,-76],[2,-57],[7,-66],[47,-30],[53,1],[37,1],[50,-11],[38,-40],[50,-18],[48,-87],[14,-116],[4,-51],[27,-27],[42,-27],[15,-29],[16,-43],[9,5],[10,5],[-17,47],[-18,32],[-42,26],[-24,25],[1,65],[20,46],[-15,38],[-28,44],[-37,69],[-20,31],[-18,16],[-34,18],[-41,30],[-14,6],[-19,24],[-32,59],[-7,44],[23,51],[3,43],[-65,96],[-4,159],[-12,71],[-21,61],[-8,71],[-6,55],[17,8],[34,31],[23,40],[24,45],[18,-5],[24,-43],[11,-14],[42,-53],[90,-44],[64,-53],[12,-56],[-3,-58],[3,-5],[7,-13],[14,37],[5,71],[-10,35],[-22,23],[-51,42],[-81,40],[-58,64],[-10,11],[-45,47],[-34,-12],[-33,-68],[-28,-22],[-36,40],[-6,73],[24,87],[24,55],[28,48],[-27,37],[-19,30],[-10,45],[-3,58],[-13,48],[-34,22],[-33,2],[-38,-1],[-53,31],[-79,5],[-51,-37],[-21,9],[-14,7],[-36,1],[-33,16],[-74,73],[-86,86],[-34,39],[-21,37],[-3,6],[-25,59],[-21,72],[11,4],[21,8],[32,6],[36,7],[24,-18],[80,56],[1,0],[59,33],[165,-31],[84,-19],[118,18],[34,35],[111,47],[137,24],[45,25],[181,153],[26,-5],[54,46],[-7,62],[63,99],[58,20],[-11,-82],[-19,-55],[-28,-41],[-12,-69],[43,-138],[10,-50],[23,-34],[14,-14],[29,-55],[-3,41],[30,15],[42,-37],[19,-50],[23,-46],[22,-51],[4,-47],[11,-23],[-54,36],[-37,29],[-6,4],[33,-77],[-3,-45],[20,-1],[-35,-52],[-34,-7],[-20,-39],[8,-67],[18,16],[-1,63],[28,11],[31,12],[34,68],[5,6],[36,41],[47,-61],[26,-58],[20,-45],[33,-41],[73,-42],[58,6],[49,-4],[28,1],[51,18],[97,-10],[33,-20],[28,-27],[35,23],[24,-13],[30,23],[40,31],[37,50],[37,30],[34,13],[30,13],[21,6],[30,-11],[24,-51],[11,-22],[20,-17],[29,-7],[19,6],[23,4],[31,-10],[31,-1],[37,7],[75,36],[35,22],[67,59],[15,35],[71,59],[26,14],[40,21],[-14,20],[7,25],[17,0],[14,3],[27,9],[12,5],[30,17],[45,21],[36,12],[16,5],[14,-1],[13,-5],[19,-5],[10,17],[12,-4],[12,-5],[20,-7],[25,-22],[25,-26],[21,-7],[11,-4],[20,11],[15,5],[25,17],[22,32],[11,13],[13,22],[-5,32],[11,61],[9,60],[8,32],[9,30],[15,28],[-4,37],[-12,38],[1,32],[20,27],[15,25],[23,24],[31,34],[44,44],[16,16],[55,72],[43,62],[29,34],[120,92],[72,54],[23,15],[17,14],[20,57],[7,21],[16,45],[2,30],[-1,33],[-25,3],[-18,-18],[-14,-14],[-11,-25],[-10,-22],[-14,-33],[-16,-1],[-6,21],[11,18],[22,44],[20,29],[24,18],[33,19],[49,15],[61,-8],[51,-12],[72,1],[51,-6],[47,12],[80,-13],[69,-2],[41,-14],[38,-24],[70,-57],[64,-55],[38,-60],[18,-56],[32,-60],[10,-32],[30,-63],[33,-45],[51,-55],[64,-45],[29,-19],[26,-13],[60,-44],[31,-34],[24,-63],[37,-46],[45,-40],[34,-26],[36,-49],[21,-63],[16,-93],[-1,-78],[4,-111],[14,-105],[51,-98],[31,-47],[23,-43],[75,-76],[44,-42],[46,-56],[24,-18],[24,-37],[20,-39],[34,-47],[40,-65],[15,-29],[73,-77],[24,-35],[64,-90],[38,20],[61,-6],[47,5],[47,-19],[49,-35]],[[11759,98770],[-25,-2],[-48,0],[-51,20],[70,65],[45,10],[49,9],[57,-2],[-32,-53],[-38,-36],[-27,-11]],[[13925,98233],[6,-59],[19,5],[-2,75],[25,27],[14,-48],[18,-73],[-37,-121],[-92,119],[-38,56],[-145,108],[-50,64],[-119,65],[-34,73],[-53,55],[-11,34],[2,125],[3,4],[2,2],[21,19],[17,34],[45,19],[45,27],[121,58],[54,36],[45,-13],[56,-44],[44,-68],[23,-17],[44,-106],[11,-78],[-3,-102],[-22,-41],[13,-103],[-13,-49],[-9,-83]],[[12771,98948],[27,-1],[48,1],[35,-17],[35,-26],[27,-28],[17,-29],[-55,-15],[-64,12],[-50,25],[-13,2],[-15,-2],[-13,0],[-26,-4],[-15,-1],[-51,-8],[-11,31],[-14,28],[23,14],[22,4],[15,6],[-10,18],[28,9],[33,-11],[27,-8]],[[12477,98955],[40,-21],[23,3],[11,-5],[16,-9],[25,-30],[-14,-59],[-34,-51],[-26,-53],[-1,-3],[-6,-17],[-7,-34],[-3,-31],[-1,-53],[-8,-25],[-17,-23],[-16,-13],[-33,-10],[-22,-14],[-24,-5],[-15,11],[-23,36],[-22,37],[-37,23],[-29,5],[-9,1],[-75,1],[-64,10],[-1,0],[14,23],[11,18],[36,10],[26,33],[20,24],[32,7],[23,53],[36,50],[50,27],[9,19],[18,37],[18,47],[42,8],[37,-27]],[[11330,98970],[-100,-20],[-65,11],[27,41],[39,21],[26,9],[25,19],[39,18],[52,18],[38,-16],[-29,-62],[-52,-39]],[[12662,99002],[-62,-48],[-49,27],[-17,7],[-42,-15],[-20,48],[118,96],[38,17],[23,0],[4,0],[-1,-2],[30,-12],[46,-25],[24,-13],[27,-4],[20,-5],[-13,-16],[-19,-6],[-13,-4],[-51,-26],[-13,-6],[-15,-7],[-15,-6]],[[13536,99081],[30,-22],[111,13],[45,-43],[9,-17],[14,-1],[2,-24],[-83,-64],[-106,-53],[-50,-19],[-20,16],[-3,3],[-41,33],[-39,50],[-56,145],[-9,49],[14,10],[182,-76]],[[13183,99079],[17,-41],[21,-49],[24,-78],[30,-59],[-33,0],[-30,11],[-44,11],[-24,14],[-50,24],[-59,25],[-14,5],[14,-19],[-25,-1],[-43,3],[-48,22],[-17,55],[-13,16],[-13,2],[3,23],[12,-7],[14,-1],[20,17],[31,-34],[19,28],[17,6],[6,-35],[51,-12],[33,-9],[20,57],[37,-8],[5,56],[-17,40],[-20,24],[18,5],[31,-34],[27,-57]],[[10603,99061],[-94,-24],[-35,8],[-19,35],[37,31],[29,7],[93,61],[47,13],[43,15],[81,-41],[-42,-22],[-41,-28],[-23,-15],[-44,-20],[-32,-20]],[[12986,99150],[-37,-8],[-29,8],[-24,37],[67,40],[51,-29],[-28,-48]],[[13656,99084],[-37,-3],[-76,8],[-84,54],[-39,8],[-66,38],[-15,45],[-11,18],[-25,42],[-3,31],[41,16],[48,2],[118,-38],[15,-30],[34,-9],[50,-47],[47,-35],[8,-55],[-5,-45]],[[13189,99448],[46,-22],[1,2],[5,4],[4,-6],[32,-9],[12,-17],[5,-31],[-6,-1],[-8,-9],[-12,8],[-53,-8],[-3,27],[-14,9],[-4,18],[-33,13],[-7,22],[35,0]],[[7378,99475],[15,-86],[-94,-57],[-100,52],[-105,30],[0,52],[40,6],[17,-1],[14,-34],[90,24],[44,0],[79,14]],[[6728,99899],[47,-62],[45,-194],[41,-104],[49,-7],[35,-58],[-57,-35],[-94,148],[-65,71],[-78,29],[-62,94],[-37,86],[11,27],[35,-13],[63,18],[47,100],[20,-100]],[[16476,96611],[-72,-64],[-41,-30],[-232,-25],[-53,0],[-50,-6],[-74,4],[-15,3],[-20,-4],[-35,24],[-33,19],[-5,44],[100,2],[13,-4],[55,9],[42,9],[61,8],[69,16],[59,15],[28,9],[72,38],[20,18],[1,0],[83,49],[32,-9],[-2,-21],[2,-10],[9,-33],[-4,-24],[-10,-37]],[[22261,86976],[-57,-2],[-10,1],[-58,6],[-115,2],[-22,-1],[-1,-1],[-7,0],[-3,-74],[-2,-94],[-45,-2],[-32,0],[-24,1],[-49,1],[-50,1],[-38,0],[-39,1],[-53,1],[-53,1],[-7,0],[-103,2],[-3,0],[-14,0],[-15,0],[-21,1],[-21,0],[-1,0],[-26,0],[-32,1],[-50,1],[-46,0],[-41,1],[-73,1],[-73,1],[-40,0],[-23,1],[-20,0],[-25,0],[-63,2],[-7,0],[-18,0],[-12,-13],[0,-1],[-52,2],[-28,0],[-13,-2],[-25,0],[-16,1],[-48,0],[-23,-1],[-37,0],[-27,-1],[-17,0],[-49,22],[-18,0],[-174,3],[-120,1],[-14,-1]],[[20208,86838],[0,72],[0,34],[2,121],[4,93],[-81,0],[-88,0],[-130,-2],[-56,-2],[-21,0],[-45,1],[-81,-1],[-34,3],[-150,7],[-18,1],[-58,5],[-1,34],[1,51],[0,138],[2,9],[0,41],[1,36],[-2,27],[-137,11],[-102,0],[-21,0],[-144,0],[-73,0],[-39,0],[4,208],[1,44],[1,53],[1,75],[1,73],[3,192],[-43,0],[-65,0],[-15,0],[-126,3],[-14,1],[-51,1],[-7,0],[-167,5],[-251,7],[-23,1],[-141,3],[-49,-2],[-24,-1],[-67,-2],[-82,3],[-50,0],[-68,0],[-48,0],[-80,0],[-190,0],[-14,0],[-17,0],[-15,0],[-53,0],[-39,0],[-89,0],[-116,0],[-25,0],[-106,0],[-22,0],[-63,-1],[-158,1],[-10,0],[-108,0],[-322,-3],[-17,0],[-43,0],[-289,3],[-35,0],[-15,0],[-3,0],[-213,2],[-15,-1],[-45,0],[-26,-1],[-12,-1],[-48,-1],[-50,0],[-55,-1],[-236,-2],[-34,0],[-23,0],[-62,-1],[-67,-1],[-36,-1],[-30,0]],[[14841,96590],[38,21],[36,-6],[113,-40],[66,-9],[128,-24],[41,-12],[46,-7],[44,5],[44,0],[34,2],[37,7],[66,-1],[43,4],[46,4],[62,-12],[30,-9],[31,-19],[34,-16],[58,-39],[23,7],[35,-13],[25,-26],[59,5],[61,7],[31,-5],[50,5],[249,53],[48,23],[35,36],[28,-1],[-4,-60],[-56,-107],[-50,-33],[-21,-32],[3,-37],[31,-17],[35,30],[42,-7],[44,59],[14,43],[33,65],[14,-2],[-66,120],[-9,31],[31,68],[44,127],[37,51],[28,44],[17,27],[43,74],[19,37],[0,314],[39,33],[37,28],[33,23],[146,102],[192,112],[85,63],[11,0],[132,0],[4,1],[79,0],[264,-26],[90,-21],[28,-18],[5,-3],[142,-146],[25,-26],[39,-40],[26,-27],[63,-64],[277,-281],[156,-76],[50,-26],[12,-5],[24,-25],[43,-42],[90,-91],[103,-104],[18,-18],[22,-16],[34,-24],[276,-159],[18,-27],[138,-214],[80,-112],[3,-3],[104,-126],[43,-55],[125,-161],[4,-5],[24,-30],[27,-35],[0,-1],[9,-12],[108,-48],[105,-48],[25,-11],[54,-35],[43,-28],[170,-119],[163,-117],[16,-11],[1,-2],[82,-128],[46,-109],[52,-128],[23,-80],[11,-40],[36,-137],[39,-151],[-4,-66],[13,-112],[45,-192],[5,-20],[29,-134],[16,-71],[102,-133],[71,-133],[51,-117],[65,-299],[25,-96],[18,-34],[125,-296],[175,-279],[100,-199],[9,-18],[24,-164],[12,-127],[27,-290],[-20,-151],[-21,-162],[0,-5],[7,-69],[10,-110],[8,-80],[36,-121],[63,-200],[2,-88],[1,-62],[40,-128],[94,-191],[33,-148],[2,-95],[6,-85],[3,-44],[1,-134],[1,-124],[-3,-13],[-13,-56],[-28,-121],[-59,-560],[87,-303],[45,-158],[112,-271],[55,-154],[63,-183],[11,-32],[0,-25],[3,-207],[3,-37],[33,-394],[-27,-209]],[[81318,93319],[0,-43],[0,-240],[0,-481],[1,-364],[0,-646],[0,-6],[0,-646],[0,-51],[0,-248],[1,-205],[-1,-333],[59,1]],[[81378,90057],[-2,-184],[-2,-335],[-3,-217],[-2,-279],[-90,0],[-31,1],[-34,0],[-183,1],[-13,0],[-168,0],[-169,0],[-35,0],[-28,0],[-48,0],[-64,0],[-18,0],[0,-16],[0,-49],[0,-28],[0,-48],[1,-219],[0,-62],[0,-60],[1,-61],[-1,-152],[0,-35],[0,-31],[0,-50],[-1,-72],[1,-29],[-1,-65],[0,-37],[-94,0],[-5,0],[-20,1],[-64,0],[-1,0],[-2,0],[-77,-1],[-1,-28],[0,-62],[-1,-43],[-2,-289],[-1,-129],[0,-77],[2,-208],[1,-126],[4,-342],[0,-77],[-1,-102],[-1,-176],[-5,-294],[-1,-29],[-127,0],[-44,1],[-48,0],[-48,0],[-24,0],[-203,1],[-33,0],[-94,1],[0,-88],[0,-35],[1,-31],[0,-25],[0,-25],[0,-30],[0,-35],[1,-89],[0,-35],[0,-74],[1,-57],[1,-201],[0,-34],[1,-166],[0,-9],[1,-270],[0,-4],[0,-35],[1,-210],[0,-12],[1,-17],[-2,-132],[-1,-92],[-2,-259],[-1,-78],[-1,-25],[-1,-97],[-3,-200],[-4,-280],[1,-111],[1,-95],[1,-31],[2,-98],[0,-66],[-1,-98],[-2,-80],[-1,-62],[-1,-61],[-2,-223],[-2,-197],[0,-32],[-1,-46],[-1,-88],[-1,-116],[13,0],[-1,-158],[-1,-123],[0,-61],[0,-31],[1,-152],[2,-312],[0,-51],[1,-132],[-62,-2],[-49,-1],[-74,-2],[-61,-2],[-43,0],[-89,0],[-22,0],[-14,0],[-185,0],[-133,0],[-182,0],[-24,0],[-63,0],[0,-105],[0,-65],[1,-78],[0,-29],[0,-35],[0,-138],[0,-135],[1,-267],[0,-156],[-4,0],[-26,1],[-179,1],[-15,1],[-42,1],[-22,1],[-56,0],[-12,0],[-79,0],[-18,2],[-87,-2],[-1,37],[-69,2],[-45,0],[-205,0],[-43,0],[-18,0],[-296,-1],[-83,0],[-27,0],[-32,0],[-144,0],[-47,0],[-79,0],[-75,0],[-93,0],[-118,-1],[-18,0],[-43,0],[-2,0],[-12,0],[-91,0],[1,53],[2,94],[-120,0],[-49,2],[-50,2],[-5,168],[-105,0],[-54,0],[-50,0],[-18,0],[-28,0],[3,-277],[1,-40],[-40,0],[-252,-2],[0,-95],[1,-308],[0,-1],[0,-346],[0,-13],[0,-79],[0,-2],[0,-91],[0,-185],[0,-36],[1,-118],[0,-100],[0,-81],[-1,-26],[1,-50],[0,-59],[1,-128],[-51,0],[-50,-1],[-299,-2],[-17,-1],[-43,0],[-101,-1],[-338,-3],[-61,0],[-13,0],[-245,1],[-122,0],[-107,0],[-84,1],[-118,0],[-75,0],[-54,0],[-34,0],[-29,0],[-145,1],[-59,0],[-102,0],[-37,0],[-70,0],[-31,1],[-1,-75],[-3,-141],[-2,-109],[0,-27],[-79,2],[-57,1],[-15,1],[-73,3],[-137,7],[-39,0],[-123,0],[1,112],[-65,-1],[-122,0],[-151,-1],[-157,-1],[-18,0],[1,-388],[0,-102],[0,-24],[1,-130],[0,-31],[1,-135],[1,-109],[1,-72],[1,-55],[0,-51],[1,-42],[0,-1],[2,-219],[1,-280],[1,-348],[1,-49],[241,1],[21,0],[141,0],[103,1],[-1,-132],[0,-52],[0,-130],[0,-41],[0,-66],[1,-592],[0,-91],[0,-111],[0,-127],[0,-76],[13,0],[155,1],[117,0],[93,0],[69,1],[88,0],[85,0],[74,0],[125,0],[91,0],[40,0],[95,0],[42,0],[153,0],[106,1],[0,-183],[0,-52],[0,-107],[0,-47],[0,-17],[0,-175],[-1,-28],[0,-40],[0,-25],[0,-83],[0,-277],[0,-108],[0,-68],[-1,-133],[-1,-81],[0,-1],[0,-129],[-1,-125],[-1,-281],[0,-36],[0,-223],[-2,-143],[-1,-35],[-2,-34],[-1,-25],[-2,-52],[-5,-91],[-5,-106],[124,-1],[248,-2],[-1,-125],[-1,-191],[-1,-181],[-1,-369],[-1,-208],[0,-87],[-1,-49],[0,-110],[-1,-176],[-1,-384],[0,-91]],[[74637,69930],[-295,8],[-143,3],[-53,1],[-50,1],[-25,1],[-17,0],[-77,1],[-3,0],[-37,1],[-334,2],[-20,0],[-99,1],[-168,1],[-51,0],[-13,0],[-544,3],[-14,1],[-167,1],[-174,1],[-31,0],[-76,0],[-107,1],[-52,0],[-34,0],[-26,1],[-36,0],[-27,0],[-21,0],[-169,5],[-74,0],[-41,1],[-78,0],[-63,1],[-90,1],[-127,1],[-25,0],[-13,0],[-21,0],[-146,1],[-11,0],[-136,2],[-125,2],[-42,1],[-36,1],[-67,2],[-17,0],[-30,1],[-54,0],[-45,0],[-52,1],[-156,1],[-14,0],[-80,1],[-151,1],[-102,-1],[-157,-3],[-245,-7],[-79,-2],[-9,0],[-2,0],[-20,-1],[-73,-2],[-17,0],[-13,0],[-1,0],[-434,-11],[-100,-2],[-140,-3],[-17,-7],[-32,0],[-214,-1],[-240,-1],[-36,-1],[-225,-1],[-132,1],[-34,0],[-14,0],[-204,1],[-329,-2],[-66,-2],[-33,-1],[-85,-3],[-38,0],[-158,-3],[-153,-1]],[[66678,69928],[6,93],[7,154],[-1,45],[1,42],[-2,206],[-1,442],[0,79],[0,219],[0,56],[0,169],[0,210],[0,310],[26,0],[56,4],[90,-2],[34,0],[0,41],[0,163],[-1,151],[0,115],[-1,53],[0,100],[0,58],[0,63],[0,48],[-1,85],[-4,98],[-1,61],[-1,82],[0,64],[1,42],[0,122],[1,69],[1,102],[0,26],[2,31],[0,59],[-2,69],[1,101],[0,25],[0,39],[-1,52],[0,76],[1,55],[0,24],[0,112],[0,29],[-1,175],[0,214],[-1,25],[0,124],[0,209],[1,185],[-2,43],[-1,271],[0,20],[-1,22],[-2,82],[0,29],[0,63],[0,2],[11,228],[3,106],[-11,0],[3,340],[3,384],[1,228],[1,79],[0,80],[6,736],[3,440],[3,435],[0,6],[1,54],[0,359],[0,157],[0,160],[0,92],[0,311],[0,171],[0,3],[0,25],[0,463],[0,35],[1,165],[0,255],[0,619],[0,2],[0,73],[-1,245],[1,152],[-69,0],[-219,0],[-453,1],[-24,0],[-92,0],[-388,0],[-25,0],[0,83],[-1,453],[-1,53],[-1,350],[0,175],[-1,45],[3,170],[1,44],[0,147],[0,476],[-26,0],[-9,5],[-117,2],[-118,1],[-116,1],[-227,3],[-133,1],[-249,4],[-18,-1],[-140,1],[-62,0],[-77,-1],[-67,1],[-35,0],[-101,3],[-43,1],[-40,5],[-112,-1],[-101,-2],[-197,-1],[-93,0],[-27,0],[-70,0],[-1,0],[-121,-1],[0,107],[0,80],[1,112],[0,137],[-3,64],[0,31],[1,273],[0,388],[1,502],[0,45],[-1,257],[0,30],[-2,273],[0,69],[1,970],[0,86],[0,104],[1,44],[0,34],[1,115],[-3,170],[0,96],[-1,81],[-1,140],[0,65],[-1,68],[-1,61],[-1,92],[3,104],[0,35],[0,13],[0,60],[1,29],[1,22],[0,9],[0,109],[0,46],[1,60],[-1,187],[1,57],[-1,25],[0,39],[0,27],[0,27],[0,28],[0,27],[0,29],[0,26],[2,96],[0,28],[0,28],[0,28],[0,28],[0,28],[0,33],[1,51],[0,28],[0,27],[0,29],[0,29],[0,28],[0,28],[0,75],[1,79],[27,-1],[-1,239],[-2,102],[-2,129],[0,94],[-1,112],[6,177],[0,55],[2,44],[0,38],[0,27],[2,59],[-1,51],[3,122]],[[63371,91399],[332,31],[356,33],[145,14],[92,48],[347,181],[14,8],[36,19],[28,14],[120,23],[172,34],[7,1],[7,1],[394,77],[106,21],[75,-32],[141,-62],[84,-36],[88,-38],[201,-61],[172,-52],[321,-6],[267,61],[80,18],[188,43],[201,114],[206,116],[392,368],[168,98],[64,37],[192,112],[176,182],[53,54],[34,62],[57,107],[32,56],[36,65],[43,77],[62,112],[34,3],[21,1],[59,4],[12,1],[13,1],[41,0],[52,1],[152,2],[93,1],[89,2],[79,3],[118,-2],[328,-2],[66,0],[14,1],[199,-3],[111,1],[77,1],[101,2],[48,1],[24,0],[356,4],[74,0],[40,1],[237,1],[15,1],[33,0],[147,1],[73,1],[207,-1],[51,-1],[13,0],[165,0],[90,1],[53,1],[179,1],[28,0],[14,0],[167,-2],[19,0],[125,-1],[80,0],[58,0],[17,0],[81,0],[62,1],[60,0],[118,0],[20,0],[33,-1],[49,0],[61,0],[162,0],[25,-2],[52,0],[35,-1],[49,0],[111,0],[4,0],[32,0],[65,0],[35,0],[17,0],[42,-2],[76,1],[79,1],[17,1],[18,0],[22,1],[17,0],[23,1],[60,0],[13,0],[46,0],[5,0],[51,0],[12,-1],[30,-1],[40,0],[17,0],[244,0],[14,-1],[70,0],[60,0],[46,0],[162,-4],[145,0],[21,0],[56,0],[42,-1],[25,0],[79,0],[37,0],[20,0],[59,0],[42,0],[21,0],[3,0],[52,0],[48,0],[48,0],[44,-1],[3,0],[4,0],[109,-1],[23,0],[20,0],[24,-1],[1,0],[8,0],[10,0],[7,0],[29,-1],[19,0],[35,-1],[20,-1],[13,1],[29,1],[16,0],[21,0],[55,2],[8,1],[22,1],[22,1],[19,-2],[26,1],[22,-1],[28,0],[23,-1],[33,1],[46,2],[14,-1],[39,-1],[23,0],[50,1],[34,-1],[106,-1],[71,0],[13,-1],[93,0],[88,0],[14,0],[107,0],[289,5],[44,1],[55,1],[337,-6],[46,-1],[10,0],[8,-1],[69,0],[110,0],[23,0],[71,0],[35,-2],[143,2],[27,0],[17,0],[264,2],[77,1],[39,0],[108,1],[239,2],[74,0],[110,-5],[76,-4],[40,-2],[21,2],[36,-3],[70,-1],[14,0],[13,0],[13,1],[215,9],[228,-3],[18,-1],[243,5],[98,0],[318,-1],[6,0],[271,1],[51,4],[36,0],[23,0],[17,1],[160,-2]],[[96054,71863],[-13,0],[-4,0],[-26,0],[-499,2],[-281,1],[-104,1],[-74,0],[-51,0],[-85,3],[-79,0],[-29,0],[-20,0],[-18,1],[-61,0],[-22,0],[-47,0],[-382,1],[-123,1],[-63,0],[-62,-1],[-47,1],[-590,-3],[-78,-3],[-85,2],[-478,7],[-17,1],[-35,1],[-28,1],[-396,7],[-426,8],[-326,12],[-300,3],[-228,2],[-104,0],[-585,-3],[-192,-3]],[[90096,71905],[4,877],[-10,147],[0,2],[0,311],[-1,315],[0,25],[0,159],[0,144],[-97,0],[-76,0],[-362,0],[-117,1],[-219,1],[-1,0],[-447,0],[-25,0],[-496,-16],[-1,0],[-18,0],[-20,0],[-242,0],[-85,0],[-298,1],[-86,0],[1,263],[1,166],[1,160],[2,438],[-120,1],[-122,1],[-60,0],[-123,-1],[-111,-1],[-4,283],[0,4],[-1,43],[-7,468],[-7,143],[-1,157],[-3,260],[-138,-5],[-108,-3],[-2,386],[-1,277],[-119,1],[-6,0],[-96,0],[-21,1],[-6,223],[0,20],[-3,87],[-22,0],[-1,0],[-201,-3],[-22,0],[-5,339],[0,17],[-4,302],[-87,0],[-103,0],[-1,0],[-297,0],[0,-35],[-43,4],[-21,0],[-43,2],[-51,1],[-46,1],[-41,1],[-16,0],[0,39],[2,495],[1,63],[0,20],[0,42],[-12,0],[-236,6],[2,212],[-1,304],[0,17],[-4,913],[-231,3],[-3,0],[-11,0],[0,17],[-1,47],[0,33],[0,14],[-1,213],[0,138],[-3,564],[0,41],[0,68],[1,116],[2,365],[0,10],[0,47],[-3,85],[1,270],[-16,1],[-141,-4],[-5,0],[-372,-7],[4,1059],[-9,229],[6,80],[0,46],[0,4],[0,361],[0,609],[-5,0],[-10,0],[-14,1],[-5,0],[-11,-1],[-3,0],[-15,0],[-20,-1],[-155,-1],[0,15],[1,44],[0,71],[3,49],[-4,280],[1,30],[0,39],[3,152],[-1,88],[-1,61],[0,13],[-2,153],[-56,14],[-49,-1],[-4,0],[-34,-1],[-81,-2],[-30,0],[1,53],[0,291],[0,68],[0,51],[1,24],[0,97],[0,94],[-27,0],[-34,0],[-41,1],[-36,0],[-23,1],[-12,0],[-57,0],[-26,0],[0,104],[0,70],[-2,245],[-1,24],[0,49],[-1,63],[0,40],[-2,155],[0,49],[0,35],[-4,569],[1,73],[0,45],[1,381],[0,47],[0,10],[44,0],[16,0],[111,0],[198,0],[13,-1],[78,-1],[48,-7],[0,363],[0,17],[0,115],[0,2],[-1,90],[0,1],[0,203],[0,17],[0,54],[-1,532],[0,185],[0,387],[0,75],[-46,0],[0,-3],[-283,0],[-510,2],[-87,1],[-41,0],[-59,0],[-269,1],[-294,3],[-257,-3],[-293,-4],[-243,-2],[-26,-1],[-42,0],[-33,-1],[-121,-1],[-131,-2],[-50,0]],[[81318,93319],[26,0],[314,-4],[49,0],[208,-1],[218,-1],[14,1],[105,-2],[1,0],[223,-3],[98,2],[201,-1],[67,-3],[197,-1],[31,0],[232,-1],[45,0],[153,-1],[71,0],[124,0],[59,-5],[156,0],[11,0],[196,0],[24,0],[41,0],[187,0],[157,0],[213,-3],[1,0],[619,-9],[301,-4],[30,-1],[180,-4],[72,-2],[600,-12],[96,-2],[133,1],[80,0],[289,0],[15,0],[48,-2],[14,-1],[193,-6],[51,-1],[61,0],[19,0],[186,7],[208,9],[3,0],[18,1],[37,1],[68,0],[37,-1],[95,0],[111,0],[130,0],[130,-1],[104,-10],[1,0],[76,-8],[35,-8],[5,-1],[77,-8],[1,0],[155,-17],[201,54],[198,-2],[102,0],[220,-2],[185,-2],[26,1],[1,0],[230,-1],[118,0],[51,1],[288,-2],[73,0],[27,-1],[24,0],[306,-4],[152,-1],[252,-3],[109,-2],[150,-1],[100,-1],[47,-6],[248,0],[145,0],[1,0],[250,-1],[231,-15],[4,0],[9,0],[146,7],[462,-2],[14,0],[17,-2],[14,0],[12,0],[11,0],[7,0],[14,0],[15,0],[17,0],[15,0],[17,0],[18,0],[16,0],[18,-3],[17,0],[16,0],[19,0],[21,-2],[18,-2],[18,0],[19,0],[23,2],[23,0],[21,-2],[21,0],[17,0],[4,-1],[15,-2],[18,-2],[19,0],[20,0],[19,0],[18,0],[21,0],[19,-2],[21,0],[20,0],[25,-3],[16,0],[14,0],[2,0],[21,0],[15,0],[19,0],[19,-2],[17,0],[20,-2],[20,0],[18,0],[20,-3],[19,0],[21,-2],[23,0],[22,-2],[19,0],[19,0],[16,-3],[17,-2],[14,-2],[7,0],[2,-5],[5,-13],[6,-13],[16,-33],[6,-30],[12,-35],[12,-27],[21,-21],[47,-68],[20,-23],[22,-15],[24,-15],[24,-35],[23,-40],[23,-23],[15,-24],[10,-28],[-1,-46],[-2,-17],[-2,-17],[-13,-47],[-3,-67],[3,-18],[3,-15],[5,-28],[12,-44],[14,-46],[8,-36],[19,-16],[31,-16],[29,-5],[34,6],[15,-4],[15,-13],[16,-21],[16,-34],[9,-29],[6,-24],[4,-26],[4,-45],[-10,-32],[-2,-32],[0,-28],[1,-30],[4,-33],[3,-32],[9,-34],[6,-20],[7,-33],[9,-21],[8,-30],[7,-40],[12,-50],[5,-45],[-3,-27],[-1,-56],[3,-31],[6,-42],[13,-31],[15,-78],[10,-50],[10,-26],[9,-31],[14,-30],[11,-27],[40,-111],[31,-73],[20,-15],[12,-13],[20,-26],[21,-35],[20,-23],[16,-27],[18,-36],[32,-85],[10,-16],[34,-35],[19,-10],[15,-16],[13,-6],[63,-51],[2,-2],[21,-17],[17,-15],[13,-14],[28,-28],[25,-24],[59,-62],[13,-10],[41,-53],[16,-36],[11,-26],[26,-50],[9,-28],[18,-44],[10,-21],[6,-21],[10,-34],[11,-18],[18,-24],[16,-17],[7,-8],[20,-21],[40,-32],[8,-31],[-3,-33],[7,-25],[12,-32],[10,-36],[22,-57],[22,-51],[13,-49],[11,-44],[5,-36],[0,-1],[1,-36],[3,-58],[-11,-46],[-7,-35],[-1,-43],[0,-33],[9,-36],[18,-38],[16,-33],[16,-24],[4,-13],[1,-8],[9,-21],[12,-22],[22,-17],[49,-12],[27,-11],[14,-29],[21,-9],[20,-18],[14,-17],[8,-18],[14,-15],[36,-42],[2,-1],[15,-18],[18,-1],[16,0],[9,3],[3,0],[15,4],[14,5],[27,12],[17,8],[36,26],[20,17],[26,24],[25,25],[18,26],[19,23],[21,23],[20,18],[32,22],[14,5],[8,3],[47,-2],[53,3],[14,0],[20,-14],[16,-5],[15,3],[12,3],[20,9],[13,5],[12,1],[27,-7],[19,-5],[26,-12],[16,-15],[16,-19],[8,-11],[23,-30],[15,-19],[15,-6],[18,-9],[12,-4],[21,-1],[11,-17],[8,-18],[11,-29],[10,-34],[6,-61],[6,-32],[9,-35],[16,-26],[12,-12],[5,-5],[21,-27],[11,-20],[10,-22],[20,-72],[0,-25],[10,-22],[16,-49],[19,-70],[3,-12],[9,-28],[8,-19],[17,-27],[27,-36],[16,-28],[11,-12],[9,-12],[17,-16],[26,-36],[4,-12],[6,-17],[13,-20],[22,-30],[15,-23],[31,-25],[20,-15],[19,-7],[34,-3],[43,-3],[67,0],[20,2],[10,2],[2,1],[17,4],[13,3],[15,7],[16,8],[12,6],[9,9],[12,11],[13,17],[23,24],[30,24],[8,3],[9,4],[12,-3],[22,-11],[10,-3],[14,-5],[17,-13],[7,-20],[20,-19],[14,2],[15,2],[17,1],[7,0],[12,6],[7,1],[20,-4],[19,-7],[14,-3],[15,-1],[21,-3],[14,-4],[29,-8],[15,-3],[14,-8],[22,-18],[17,-8],[19,-1],[13,-3],[15,-2],[18,0],[16,-5],[15,-13],[25,-34],[1,-3],[10,-17],[11,-13],[13,-16],[9,-21],[20,-31],[18,-19],[18,-14],[23,-27],[29,-32],[12,-23],[3,-6],[28,-39],[14,-12],[13,-9],[17,-12],[21,-13],[21,-11],[16,-20],[6,-22],[9,-18],[16,-21],[10,-24],[15,-22],[20,-25],[11,-24],[16,-26],[12,-8],[15,-5],[35,-18],[12,-4],[12,-2],[14,0],[17,-10],[12,-8],[18,-33],[4,-25],[6,-26],[14,-26],[11,-26],[9,-19],[16,-29],[6,-25],[7,-24],[9,-29],[8,-28],[9,-23],[10,-18],[8,-20],[5,-27],[4,-31],[9,-21],[0,-24],[-6,-70],[-7,-20],[-4,-36],[0,-30],[3,-36],[-3,-29],[-4,-54],[-5,-69],[-5,-45],[2,-29],[9,-57],[2,-33],[-2,-46],[0,-33],[2,-24],[7,-37],[-1,-25],[4,-56],[1,-35],[-1,-32],[-1,-47],[3,-24],[4,-24],[6,-24],[2,-24],[1,-29],[27,-58],[13,-30],[15,-31],[11,-31],[2,-30],[7,-22],[10,-26],[17,-29],[17,-25],[9,-20],[10,-16],[15,-17],[9,-6],[8,-6],[18,-10],[14,-9],[13,-12],[12,-20],[11,-16],[32,-55],[18,-40],[11,-30],[12,-38],[13,-19],[5,-7],[11,-17],[17,-23],[6,-24],[10,-25],[13,-14],[17,-14],[12,-12],[15,-24],[14,-14],[11,-9],[13,-9],[12,-16],[15,-16],[12,-17],[9,-16],[9,-16],[12,-16],[13,-19],[12,-19],[11,-23],[10,-20],[5,-23],[3,-23],[-1,-24],[-4,-31],[-1,-35],[11,-14],[17,-14],[14,-8],[13,-20],[7,-28],[3,-23],[-1,-32],[-4,-37],[-2,-30],[0,-24],[7,-22],[11,-17],[15,-10],[20,-3],[19,-1],[17,-2],[18,-16],[14,-20],[14,-22],[10,-27],[-5,-29],[-9,-21],[-6,-24],[23,-60],[9,-24],[12,-25],[36,-35],[15,-16],[12,-22],[9,-29],[3,-24],[-4,-28],[1,-28],[3,-33],[-1,-38],[-3,-79],[-1,-32],[3,-28],[-7,-26],[-9,-30],[-11,-17],[-12,-27],[-7,-20],[-47,-91],[-18,-27],[-12,-14],[-17,-17],[-11,-26],[-11,-23],[-16,-11],[-13,-7],[-23,-23],[-11,-16],[-8,-18],[-5,-12],[-7,-26],[-4,-31],[4,-26],[14,-20],[12,-22],[-2,-33],[-8,-29],[-12,-21],[-14,-10],[-13,-7],[-14,-8],[-20,-10],[-29,-23],[-12,-18],[-15,-14],[-16,-14],[-13,-17],[-11,-15],[-15,-20],[-26,-31],[-24,-27],[-12,-15],[-16,-23],[-6,-25],[0,-32],[0,-9],[3,-28],[-6,-28],[-14,-23],[-11,-18],[-12,-18],[-12,-10],[-20,-20],[-13,-9],[-20,-7],[-9,-1],[-11,4],[-15,6],[-18,2],[-13,-2],[-2,-1],[-12,-5],[-13,-6],[-9,-5],[-4,-3],[-14,-13],[-12,-13],[-4,-4],[-12,-8],[-5,-7],[-7,-8],[-4,-9],[-9,-21],[-4,-5],[-10,-13],[-2,-22],[-1,-10],[3,-2],[10,-7],[5,-3],[14,-4],[14,-13],[11,-15],[4,-23],[-3,-25],[0,-5],[-10,-9],[-9,-7],[-12,-15],[-2,-3],[0,-3],[-1,-21],[1,-22],[0,-6],[-3,-12],[-5,-25],[-7,-15],[-1,-4],[-17,-29],[-4,-5],[-10,-11],[-11,-15],[-1,-2],[-9,-28],[-7,-29],[-2,-15],[-1,-13],[-2,-31],[0,-17],[0,-8],[0,-3],[1,-21],[-4,-13],[-3,-9],[-8,-16],[-1,-2],[-7,-30],[-1,-7],[-4,-26],[-8,-28],[-1,-2],[-11,-17],[-2,-4],[-2,-2],[-11,-9],[-15,-19],[-1,-1],[-9,-20],[-4,-9],[-4,-20],[-2,-8],[-2,-28],[-8,-33],[-12,-35],[-14,-33],[-16,-26],[-1,-2],[-10,-17],[-11,-15],[-12,-13],[-10,-15],[-13,-12],[-13,-14],[-12,-14],[-18,-12],[-18,-7],[-17,-19],[0,-1],[-8,-21],[0,-1],[-7,-30],[-3,-17],[-2,-13],[2,-7],[3,-21],[1,-6],[14,-23],[1,-2],[11,-11],[5,-6],[6,-8],[9,-18],[0,-1],[0,-32],[4,-34],[-6,-41],[-11,-59],[-11,-38],[-6,-23],[-4,-28],[-3,-28],[-7,-33],[-2,-29],[-11,-43],[-2,-6],[-7,-22],[0,-26],[5,-18],[9,-37],[15,-53],[15,-44],[1,-73],[-3,-23],[0,-11],[1,-27],[4,-54],[2,-49],[0,-10],[-21,-12],[-3,-2],[-17,-5],[-10,-4],[-3,-1],[-27,-14],[-4,-2],[-13,-11],[-15,-13],[-27,-39],[-22,-55],[-24,-25],[-11,-12],[-30,-20],[-1,-1],[-33,-26],[-5,-7],[-22,-28],[-1,-1],[-24,-29],[-5,-6],[-10,-12],[-12,-24],[-11,-29],[-9,-26],[-16,-20],[-8,-10],[-19,-13],[-4,-8],[-5,-11],[-8,-35],[-5,-38],[-6,-40],[-7,-48],[-7,-80],[-19,-121],[-2,-10],[-12,-64],[-18,-80],[-4,-22],[-8,-44],[-2,-11],[-9,-65],[-7,-44],[-18,-28],[-43,-41],[-18,-25],[-35,-44],[-33,-45],[-24,-35],[-22,-20],[-4,-6],[-16,-21],[-17,-23],[-32,-44],[-13,-29],[-5,-29],[-20,-26],[-14,-16],[-11,-26],[9,-26],[-36,-73],[-8,-18],[-13,-56],[-13,-60],[-8,-33],[-12,-27],[-12,-20],[-8,-34],[-20,-42],[-18,-35],[-12,-34],[-12,-27],[-15,-35],[-22,-33],[-17,-37],[-3,-24],[-7,-37],[-36,-91],[-47,-112],[-28,-64],[-26,-60],[-25,-51],[-7,-24],[-9,-41],[-14,-26],[-13,-58],[-28,-80],[-37,-93],[-26,-60],[-6,-32],[-35,-106],[-3,-9],[-10,-30],[-9,-25],[-22,-34],[-9,-19],[-7,-76],[1,-32],[-5,-42],[5,-53],[3,-34],[4,-24],[-6,-33],[6,-60],[7,-119],[6,-74],[3,-170],[3,-41],[-3,-39],[1,-48],[-5,-47],[-7,-60],[-12,-49],[-3,-50],[-14,-35],[-23,-38],[-15,-22],[-29,-36],[-25,-28],[-37,-27],[-12,-12],[-1,-3],[-6,-18],[-8,-21],[-15,-22],[-12,-16],[-12,-16],[-13,-48],[-13,-44],[-6,-29],[-7,-36],[-13,-38],[-4,-30],[-1,-24],[-10,-45],[-6,-21],[-10,-33],[-3,-25],[-1,-35],[-4,-24],[-11,-26],[-13,-25],[-11,-19],[-15,-25],[-11,-23],[11,-27],[2,-24],[-8,-25],[-6,-41],[-1,-34],[-2,-61],[0,-30],[-1,-36],[-7,-25],[-7,-21],[-6,-21],[-16,-42],[-12,-27],[-9,-34],[-6,-27],[-3,-25],[-3,-32],[2,-42],[2,-47],[5,-44],[4,-35],[1,-29],[1,-33],[-3,-23],[-4,-31],[-4,-30],[-13,-67],[-8,-35],[-6,-23],[-5,-22],[-12,-39],[-10,-32],[-7,-23],[-7,-34],[-6,-29],[-8,-42],[-8,-42],[-6,-30],[-6,-31],[-26,-83],[-3,-10],[-7,-23],[-10,-35],[-7,-28],[-15,-56],[-7,-37],[-6,-30],[1,-53],[0,-35],[0,-41],[0,-23],[0,-29],[-13,-105],[-15,-38],[-11,-28],[-7,-42],[-4,-63],[-2,-35],[0,-5],[-2,-42],[-3,-92],[-10,-54],[-17,-41],[-29,-42],[-45,-23],[-68,-52],[-38,-52],[-5,-43],[-5,-61],[1,-41],[-3,-31],[-4,-29],[-21,-30],[-15,-8],[-3,-2],[-12,-6],[-15,-5],[-13,-36],[-6,-40],[-3,-49],[0,-33],[-8,-30],[-27,-21],[-15,-13],[-21,-18],[-40,-29],[-15,-10],[-14,-8],[-17,-10],[-27,-25],[-17,-23],[-24,-21],[-15,-5],[-18,-13],[-19,-47],[-7,-20],[-11,-35],[-3,-8],[-5,-12],[-12,-15],[-11,-24],[-17,-44],[-9,-22],[-6,-23],[-7,-28],[-3,-34],[-1,-27],[-5,-67],[0,-41],[4,-69],[0,-31],[-1,-24],[0,-2],[0,-12],[2,-33]],[[66678,69928],[-82,-1],[-70,0],[-21,-1],[-261,-3],[-67,0],[-163,-1],[-140,-1],[-102,-1],[-170,-4],[-152,2],[-23,1],[-46,0],[-112,2],[-1,0],[-85,1],[-58,2],[-93,3],[-19,0],[-40,2],[-42,0],[-14,-1],[-161,-8],[-15,-1],[-76,-3],[-140,-7],[-32,0],[-172,0],[-58,1],[-16,-1],[-123,-2],[-65,1],[-44,-3],[-39,5],[-70,-6],[-44,3],[-27,0],[-39,-1],[-56,-2],[-68,-1],[-16,1],[-73,1],[-90,0],[-109,8],[-80,3],[-77,-1],[-17,0],[-40,3],[-42,4],[-47,2],[-434,19],[-128,-13],[-64,4],[-41,4],[-24,-2],[-17,1],[-24,-2],[-19,-2],[-107,-6],[-77,-8],[-100,-4],[-41,0],[-14,0],[-104,0],[-143,2],[-52,0],[-80,1],[-27,0],[-63,2],[-72,1],[-78,-4],[-15,-1],[-30,-1],[-58,-4],[-39,-2],[-16,-4],[-77,3],[-142,-3],[-22,-8],[-13,-3],[-13,0],[-15,-3],[-14,-1],[-22,0],[-12,2],[-16,-4],[-119,-1],[-105,-1],[-49,0],[-50,-5],[-43,-6],[-16,-2],[-14,0],[-65,21]],[[60407,69894],[-94,4],[-24,1],[-84,-1],[-261,0],[-41,0],[-125,-1],[-116,0],[-17,0],[-53,0],[-37,-1],[-83,-1],[-42,3],[-26,4],[-71,-1],[-192,-1],[-90,-1],[-26,0],[-88,0],[2,122],[-2,45],[0,30],[0,72],[-1,141],[0,264],[0,119],[-6,496],[15,413]],[[58945,71601],[0,37],[0,10],[1,272],[169,-2],[152,-2],[49,-1],[0,99],[1,43],[0,44],[3,294],[3,535],[-1,271],[-1,233],[-2,491],[-51,6],[-86,15],[-110,18],[-58,3],[-73,0],[-191,1],[-163,1],[-92,0],[-192,1],[-28,0],[-116,1],[-76,0],[-94,1],[-72,0],[-30,0],[-49,1],[-36,0],[0,122],[1,335],[-3,37],[3,45],[0,138],[4,377],[2,123],[1,35],[3,130],[-2,102],[1,206],[0,77],[1,140],[2,142],[-64,2],[-62,1],[-76,2],[-99,2],[-179,4],[-203,5],[-431,10],[-67,1],[-197,5],[-78,1],[-15,1],[-69,1],[3,322],[2,125],[0,1],[0,61],[2,667],[1,104],[1,141],[1,186],[0,89],[2,357],[1,96],[0,23],[0,1],[1,197],[2,300],[0,63],[1,174],[0,86],[1,294],[1,235],[0,184],[1,319],[1,240],[1,264],[1,571],[1,46],[1,497],[2,54],[0,117],[-1,236],[58,1],[9,1],[0,26],[0,7],[1,134],[3,571],[0,27],[2,409],[1,170],[0,141],[0,24],[0,232],[0,333],[-1,281],[4,145],[-1,526],[-1,206],[-2,565],[0,1],[0,82],[0,90],[0,23],[-1,350],[-1,141],[-4,926],[-4,139],[0,33],[-3,105],[-2,86],[0,95],[-1,161],[0,39],[1,21],[2,212],[0,43],[1,215],[0,4],[1,27],[0,35],[0,1],[0,53],[1,23],[1,139],[0,27]],[[56365,88937],[205,136],[211,141],[76,9],[261,32],[112,13],[251,31],[20,2],[386,154],[99,29],[117,38],[441,147],[250,84],[367,-46],[269,55],[262,54],[713,148],[28,6],[210,419],[330,649],[34,68],[282,324],[100,39],[123,46],[134,52],[428,-290],[98,-66],[54,-36],[135,-16],[155,-19],[164,-19],[390,216],[74,41],[227,21]],[[90096,71905],[-380,-5],[-168,-3],[-30,0],[-23,-1],[-66,0],[-501,-7],[-38,-1],[-145,6],[-72,-1],[-57,-1],[-243,-5],[-159,-3],[-160,-3],[-223,-4],[-154,-2],[-128,-3],[-45,2],[-12,-1],[-290,-4],[-27,0],[-76,1],[-187,2],[-43,0],[-121,2],[-312,3],[-1,-117],[-1,-147],[0,-156],[-1,-239],[-1,-269],[-1,-84],[-1,-191],[-1,-196],[0,-33],[0,-155],[-1,-26],[0,-32],[2,-211],[-2,-130],[1,-35],[-153,0],[-132,0],[-23,0],[-32,0],[-82,0],[-100,0],[-27,0],[-221,0],[-199,-1],[-19,0],[-56,-1],[-52,0],[-88,-1],[-550,-3],[-42,-2],[-93,0],[-250,-2],[-152,0],[-18,0],[-24,0],[-35,2],[-284,-6],[-12,-1],[-12,43],[-5,17],[-5,8],[-9,4],[-29,11],[-1,1],[-15,-3],[-5,2],[-2,4],[-4,46],[0,25],[9,43],[-3,33],[0,16],[1,12],[1,6],[6,10],[13,16],[16,12],[24,14],[7,13],[5,13],[3,15],[0,13],[-3,35],[-1,2],[-10,33],[-28,51],[-19,5],[-33,10],[-3,1],[-34,13],[-45,84],[11,69],[-29,54],[-7,18],[-12,33],[-17,46],[-17,15],[-23,20],[-54,48],[-12,10],[-16,1],[-11,1],[-19,1],[-33,-2],[-8,-38],[2,-11],[12,-41],[4,-13],[6,-19],[4,-12],[-39,-34],[-1,-1],[-1,0],[-14,8],[-37,22],[-5,10],[-6,11],[-8,14],[-20,37],[-42,54],[-1,0],[-37,92],[-2,3],[-64,126],[-27,54],[-69,155],[-3,11],[-3,15],[1,8],[4,8],[14,13],[4,2],[17,8],[5,5],[0,11],[-1,22],[0,16],[-19,8],[-15,-2],[-11,-11],[-18,-11],[-22,10],[1,33],[18,8],[7,23],[-6,12],[-10,6],[-18,10],[-3,1],[-9,5],[-48,19],[-30,17],[-3,0],[-21,0],[-2,0],[-43,-13],[-6,-6],[-3,-11],[-5,-22],[-2,-32],[-8,-24],[-11,-12],[-18,-18],[-7,-1],[-29,15],[-9,10],[-31,43],[-7,11],[-4,3],[-6,19],[-7,28],[-4,25],[-11,55],[-4,14],[-5,18],[-14,19],[-13,0],[9,-24],[4,-10],[5,-36],[4,-31],[-14,-22],[-4,4],[-19,-5],[-45,-10],[-31,1],[-7,1],[-35,-18],[-10,-6],[-27,-35],[-3,-6],[-2,-7],[-1,-3],[0,-7],[2,-7],[14,-24],[0,-1],[16,-59],[1,-13],[-3,-50],[-2,-4],[-5,-3],[-19,-2],[-26,-14],[-4,-7],[-39,-56],[-9,-23],[3,-22],[0,-4],[-15,-125],[-36,-35],[-38,-75],[-21,-18],[-23,-37],[-4,-6],[-8,-19],[-1,-1],[-23,-20],[-28,-28],[-20,-21],[-68,-69],[-34,-32],[1,-54],[-26,-40],[-4,-6],[-7,-10],[0,-1],[-16,-19],[-10,-11],[-3,-4],[-10,-12],[-30,-36],[-10,-10],[-11,-9],[-12,-4],[-11,0],[-27,-9],[-36,-18],[-5,-9],[0,-10],[10,-15],[0,-1],[-2,-5],[-55,-55],[-103,-132],[-44,-13],[-4,-1],[-45,-4],[-106,-108],[-19,-20],[-1,0],[-61,-11],[-1,0],[-30,-4],[-18,-2],[-90,-12],[-1,0],[-1,0],[-79,-3],[-1,0],[-6,-9],[-6,-4],[-42,-5],[-38,4],[-37,7],[-2,1],[-75,48],[-46,29],[-53,40],[-12,16],[-5,2],[-42,17],[-40,14],[-9,1],[-4,1],[-26,10],[-14,13],[-10,9],[-6,2],[-1,0],[-49,9],[-6,-3],[-23,-4],[-9,1],[-16,10],[-55,60],[-45,49],[-9,21],[-1,0],[-6,9],[-49,51],[-11,10],[-14,6],[-27,-1],[-10,-3],[-53,8],[0,1],[-19,9],[-15,7],[-14,12],[-14,24],[-37,24],[-14,8],[-14,14],[-7,23],[-10,23],[-12,7],[-11,11],[-17,23],[-10,18],[-9,25],[-11,16],[-10,20],[-15,16],[-16,13],[-16,26],[-8,20],[-18,37],[-15,24],[-12,33],[-12,8],[-14,16],[-7,19],[-4,25],[-6,31],[-5,26],[-12,22],[-6,25],[-3,26],[-6,21],[-17,20],[-23,-3],[-13,2],[-10,17],[-12,25],[-7,20],[-17,-8],[-14,9],[-11,14],[-22,4],[-18,11],[-25,5],[-13,8],[-21,10],[-19,-8],[-25,-13],[-15,-13],[-19,-9],[-22,-1],[-24,-10],[-14,0],[-14,4],[-22,-11],[-19,0],[-14,5],[-16,12],[-16,0],[-13,0],[-13,-19],[-8,-24],[-11,-16],[-19,-19],[-22,-21],[-12,-17],[0,-25],[-8,-21],[1,-29],[-4,-24],[-12,-7],[-8,-20],[-12,-21],[3,-24],[7,-29],[-7,-22],[2,-23],[-14,-38],[-14,-3],[-22,-10],[-18,-4],[-26,-9],[-14,-21],[-9,-17],[-13,-9],[-13,-21],[-14,-19],[-15,-13],[1,-25],[-9,-19],[0,-33],[-10,-21],[-12,-12],[-13,-14],[-13,-13],[-20,-15],[-15,1],[-28,14],[-22,-6],[-12,3],[-19,3],[-12,10],[-15,7],[-19,-1],[-14,14],[-13,26],[-30,7],[-19,-17],[-11,-13],[-19,9],[-17,8],[-14,14],[-15,2],[-14,-2],[-19,-7],[-27,-12],[-46,-25],[-14,3],[-10,-23],[-11,-15],[-14,-11],[-30,-7],[-13,-9],[-7,-25],[-12,-24],[-21,-10],[-12,-16],[-19,-19],[-12,-14],[-17,0],[-12,-9],[-13,-9],[-6,-23],[-13,-8],[-12,-4],[-12,-13],[0,-24],[13,-7],[2,-36],[5,-24],[-5,-81],[-6,-24],[4,-25],[-2,-29],[8,-24],[-2,-26],[-10,-24],[-10,-31],[1,-27],[11,-19],[-8,-25],[-23,-10],[-16,-8],[-14,-13],[-16,-23],[-5,-35],[-1,-32],[-15,-17],[-12,-27],[-9,-19],[-10,-33],[-13,-29],[-4,-22],[-21,-14],[-8,-41],[-3,-32],[-14,-24],[-12,-18],[-14,-33],[-6,-26],[-3,-29],[-5,-23],[3,-28],[3,-29],[-3,-39],[4,-29],[-3,-29],[-13,0],[-148,-4],[0,-25],[5,-26]],[[78023,69052],[-12,-11],[-15,-10],[-13,0],[-13,-9],[-13,-9],[-12,-7],[-12,4],[-15,5],[-15,-5],[-16,10],[-13,0],[-14,-5],[-12,-2],[-15,4],[-13,12],[-8,21],[-10,16],[-15,7],[-12,2],[-15,-7],[-12,-2],[-15,-12],[-11,-12],[-13,-13],[-12,10],[-19,2],[-17,-7],[-13,7],[-13,18],[-8,19],[-3,28],[-8,18],[-17,14],[-12,3],[-15,7],[-10,18],[2,23],[-13,12],[-12,-2],[-12,7],[-13,4],[-12,-4],[-11,-12],[-11,-16],[-11,-14],[-15,-9],[-13,2],[-13,-9],[-16,-17],[-12,-7],[-13,-11],[-12,-5],[-16,0],[-9,19],[6,25],[-5,26],[-9,16],[-7,21],[-10,23],[-6,21],[-3,26],[-14,5],[-12,-3],[-10,19],[-14,5],[-13,4],[-14,7],[-5,23],[1,24],[-13,0],[-15,-7],[-12,0],[-15,7],[-16,14],[-8,21],[-7,21],[-11,11],[-16,12],[-12,13],[-13,-1],[-4,-26],[-5,-23],[-12,-17],[-12,3],[-15,-17],[-14,-11],[-17,4],[-12,3],[-14,2],[-15,2],[-1,24],[-8,25],[-10,21],[-11,12],[-19,14],[-14,9],[-8,21],[-6,21],[-14,12],[-15,4],[-16,17],[-6,21],[-7,21],[-9,25],[-11,21],[-14,19],[-11,16],[-13,16],[-12,14],[-14,12],[-13,2],[-14,3],[-15,0],[-15,11],[-15,0],[-15,-2],[-13,4],[-11,12],[6,21],[-6,26],[-10,18],[-11,17],[-14,7],[-12,-5],[-16,-14],[-16,0],[-14,-9],[-23,-61],[-10,-18],[-2,-24],[-11,-14],[-8,-21],[-5,-23],[-35,-39],[-25,-14],[-18,-6],[-13,1],[-27,-35],[-16,-13],[-14,26],[-10,21],[-14,11],[-20,13],[-13,8],[-13,12],[-15,5],[-4,-23],[7,-31],[-3,-42],[-14,-22],[-17,-13],[-10,-21],[4,-26],[0,-25],[5,-27],[4,-29],[-13,-10],[-14,9],[-13,19],[-15,16],[-14,5],[-12,4],[-14,-4],[-13,21],[-11,14],[-19,9],[-18,4],[-13,3],[-7,-21],[-14,-21],[-11,-16],[-16,-10],[-12,-4],[-8,-24],[-11,-23],[-16,-14],[-15,-12],[-13,-16],[-11,-11],[-19,-14],[-11,-12],[-22,-23],[-19,-12],[-13,-12],[-14,-11],[-11,-24],[-12,-16],[-14,-7],[-18,0],[-18,5],[-18,5],[-15,-3],[-15,-11],[-11,-14],[-22,-5],[-14,12],[-11,18],[-7,23],[-6,24],[-5,25],[6,24],[7,28],[4,23],[9,23],[-2,28],[-2,26],[-5,30],[-5,30],[-2,28],[7,28],[4,23],[0,31],[6,28],[5,25],[-6,33],[-16,9],[-15,5],[-13,4],[-18,10],[-12,14],[-15,11],[-20,3],[-9,25],[0,28],[-10,21],[-8,19],[-13,2],[-9,-16],[-28,-17],[-16,-7],[-13,-2],[-14,2],[-11,12],[-11,16],[-17,-9],[-19,-2],[-12,2],[-14,2],[-18,-4],[-14,2],[-18,16],[-13,7],[-12,10],[-7,18],[-9,19],[-9,21],[-14,7],[-23,-3],[-19,0],[-16,0],[-14,0],[-184,18],[-60,6],[-33,3],[-12,1],[-15,5],[-16,1],[-18,1],[-63,3],[-125,7]],[[58945,71601],[-103,3],[-252,5],[-143,4],[-111,1],[-105,1],[-33,1],[-34,0],[-20,0],[-25,1],[-104,-3],[-31,2],[-39,-2],[-29,-2],[-13,-1],[-20,4],[-47,-1],[-124,-4],[-38,-5],[-207,-32],[0,-21],[-120,0],[-106,0],[-318,0],[-178,0],[-16,0],[-119,0],[-90,-1],[-126,0],[-35,0],[-1,0],[-13,0],[-36,0],[-17,1],[-63,0],[-17,0],[-223,0],[-44,1],[-53,0],[-125,2],[-104,2],[-60,2],[-84,2],[-190,-5],[-19,0],[-19,-1],[-19,0],[-147,0],[-97,0],[-226,-13],[-30,1],[-28,30],[-11,12],[-259,3],[-272,4],[-141,2],[-30,0],[-10,0],[-312,5],[-167,-23],[-86,-12],[-68,-1],[-49,-3],[-24,0],[-56,-2],[-56,-3],[-257,14],[-66,3],[-158,9],[-33,1],[-149,1],[-30,0],[-13,0],[-58,0],[-472,1],[-115,0],[-136,1],[-285,-6],[-37,-1],[-159,18],[-87,10],[-226,9],[-264,9],[-113,-1],[-241,-3],[-58,0]],[[50246,71620],[-3,61],[0,4],[8,81],[-78,134],[-30,55]],[[50143,71955],[-11,66],[-4,3],[-36,19],[-7,9],[-5,7],[-18,22],[-10,24],[-19,47],[-14,37],[-5,12],[-7,20],[-5,11],[6,12],[13,33],[5,13],[39,95],[0,1],[25,25],[2,1],[67,22],[24,8],[50,27],[58,17],[2,0],[8,-6],[19,-17],[2,-1],[10,-9],[33,-6],[33,13],[6,19],[33,111],[17,15],[18,17],[28,-25],[11,-10],[25,-22],[6,-5],[3,-6],[28,-48],[1,-2],[0,-14],[2,-31],[3,-46],[1,-11],[25,-44],[19,-2],[2,-1],[10,-1],[2,5],[10,31],[1,3],[-11,39],[-5,16],[7,29],[4,14],[27,111],[-7,126],[7,11],[15,24],[1,5],[9,37],[-2,38],[-24,46],[-27,44],[-8,22],[-2,8],[-11,30],[-4,15],[-9,29],[-2,9],[11,31],[29,74],[69,108],[29,9],[36,10],[26,35],[2,2],[0,3],[6,39],[-19,29],[-30,23],[-32,0],[-63,-24],[-10,0],[-47,1],[-11,23],[-20,39],[-22,22],[-19,19],[-21,21],[-30,31],[-3,3],[-3,6],[-6,17],[-6,18],[3,23],[8,65],[31,38],[3,4],[11,16],[21,32],[1,3],[1,2],[15,40],[4,21],[2,11],[-5,6],[-18,21],[-4,4],[-43,40],[-20,19],[-51,26],[-2,2],[-2,1],[-3,1],[-36,29],[-7,7],[1,9],[1,7],[1,10],[4,2],[33,13],[44,19],[24,26],[32,58],[2,4],[-1,1],[-14,49],[-31,18],[-5,3],[-8,-1],[-40,-5],[-19,-3],[-30,-4],[-11,-2],[-5,7],[-17,19],[-7,9],[1,22],[2,23],[0,7],[4,5],[39,47],[1,1],[29,51],[6,11],[1,26],[1,56],[-19,56],[-28,23],[-4,3],[-44,42],[-49,7],[-24,-2],[-6,-1],[-36,-30],[-7,-7],[-42,-4],[-46,8],[-50,48],[-29,17],[-37,13],[-5,4],[-17,17],[0,1],[-33,31],[-23,25],[10,36],[-3,25],[-1,0],[-20,2],[-4,0],[-18,-15],[-6,-5],[-28,9],[-27,9],[-20,6],[-8,24],[-1,3],[-5,15],[-3,73],[0,9],[-1,0],[-33,10],[-17,0],[-34,-14],[-14,-6],[-16,5],[-2,1],[-16,41],[4,21],[2,15],[6,14],[18,52],[8,7],[28,22],[59,-31],[56,-6],[13,15],[8,8],[23,27],[1,5],[10,75],[0,2],[-1,2],[-27,45],[-41,17],[-15,-6],[-17,-6],[-30,-26],[-3,-5],[-42,-60],[-3,0],[-28,-4],[-8,-2],[-8,9],[-23,29],[-15,19],[-2,62],[19,66],[7,24],[6,20],[11,42],[-10,36],[-2,29],[-27,60],[-1,2],[-33,31],[-24,42],[-21,38],[7,36],[-9,52],[-48,92],[-8,17],[2,11],[0,2],[4,30],[27,25],[106,16],[5,-2],[34,-11],[3,1],[62,30],[6,2],[2,5],[25,54],[2,3],[-1,6],[-10,70],[-42,40],[-1,0],[-46,-20],[-20,3],[-23,3],[-5,0],[-6,5],[-1,1],[-11,10],[-4,53],[12,67],[16,32],[3,7],[31,62],[24,73],[-5,54],[-16,41],[-33,24],[-13,9],[-9,1],[-35,7],[-3,0],[-43,-30],[-6,-5],[-8,11],[-4,5],[-14,17],[7,22],[2,8],[2,6],[3,2],[42,25],[12,4],[6,1],[58,17],[6,2],[9,2],[2,8],[12,37],[-1,28],[0,19],[-15,46],[-40,126],[-6,21],[3,49],[2,7],[8,24],[16,49],[28,38],[15,8],[6,4],[6,-5],[20,-17],[9,-7],[12,-130],[22,-48],[46,-22],[8,-3],[22,18],[33,27],[15,24],[15,23],[1,11],[3,35],[1,1],[-5,73],[-2,5],[-16,44],[-3,8],[-56,58],[-24,16],[-72,11],[-21,35],[-4,62],[20,36],[18,14],[12,10],[68,24],[40,21],[1,0],[0,5],[1,30],[2,102],[0,16],[0,11],[-11,30],[0,1],[-18,30],[-3,6],[-8,-1],[-80,-9],[-27,-3],[-22,28],[-1,2],[1,1],[12,27],[3,5],[6,1],[87,18],[0,1],[20,32],[2,3],[-1,19],[-5,58],[-1,5],[4,37],[4,43],[-33,92],[-2,4],[-117,46],[-8,3],[6,51],[53,56],[20,7],[19,20],[15,16],[12,29],[0,1],[0,3],[-3,61],[1,19],[1,23],[0,4],[30,115],[-7,52],[-1,5],[-26,44],[-2,3],[-12,20],[2,6],[8,30],[2,6],[36,20],[6,1],[26,5],[4,1],[46,17],[8,32],[-1,7],[0,6],[-3,35],[2,7],[10,31],[20,-4],[31,-19],[17,-11],[18,-12],[2,1],[26,15],[12,41],[0,41],[0,2],[-60,25],[-37,20],[-2,1],[-2,-1],[-65,-21],[-13,-2],[-37,-9],[-3,-1],[-1,2],[-22,24],[-1,1],[1,6],[4,24],[3,15],[9,15],[22,37],[0,1],[1,0],[31,17],[5,1],[13,14],[7,7],[29,31],[21,63],[27,80],[-11,32],[-1,4],[-10,8],[-3,2],[-25,19],[-64,53],[-5,7],[-8,11],[11,52],[15,33],[29,22],[24,2],[12,-2],[24,-5],[47,-15],[1,0],[35,3],[8,1],[31,5],[9,5],[20,24],[7,22],[7,20],[8,22],[41,205],[1,5],[5,5],[13,14],[0,1],[1,0],[31,-1],[44,-16],[5,-1],[63,-22],[48,38],[24,19],[-1,14],[-1,34],[-32,67],[-6,13],[-19,22],[-25,30],[-4,5],[-14,3],[-33,7],[-71,-2],[-29,2],[-42,2],[-7,26],[-2,23],[-5,37],[55,31],[6,5],[12,10],[50,6],[54,6],[32,-1],[6,1],[44,7],[12,2],[15,28],[1,4],[6,63],[1,4],[-2,5],[-9,24],[-8,14],[-4,7],[-12,10],[-27,23],[-51,20],[-18,7],[-30,3],[-15,45],[10,82],[17,32],[12,24],[3,7],[12,7],[107,67],[6,5],[9,8],[4,3],[1,1],[6,12],[2,21],[-17,65],[-74,55],[-15,11],[-15,17],[-12,19],[-3,22],[4,30],[9,35],[72,41],[45,25],[28,16],[1,0],[19,11],[7,9],[37,46],[15,19],[8,7],[9,8],[4,3],[27,19],[5,3],[27,13],[21,9],[16,7],[4,3],[32,26],[9,6],[3,6],[16,27],[20,33],[13,23],[5,7],[19,30],[12,0],[2,0],[33,-1],[36,-25],[23,-34],[67,-121],[12,-17],[38,-55],[1,-1],[33,-27],[26,-20],[52,-35],[85,-58],[30,5],[24,4],[8,5],[8,4],[39,23],[21,11],[6,4],[26,40],[-1,8],[-11,66],[-20,96],[-15,47],[-2,4],[-1,0],[-76,17],[-43,5],[-20,9],[-15,19],[-2,14],[-2,13],[-4,35],[6,121],[-39,72],[-2,63],[-1,3],[13,13],[34,35],[10,8],[24,-5],[1,-1],[51,-14],[64,-18],[9,-5],[14,-7],[45,-12],[11,-3],[33,-9],[71,-7],[90,-5],[118,-68],[18,-10],[10,-7],[5,2],[91,40],[19,9],[5,7],[30,38],[2,2],[1,4],[15,54],[2,4],[14,43],[9,43],[14,53],[0,14],[3,70],[-26,45],[-14,26],[-24,46],[0,1],[-44,35],[-23,7],[-44,23],[-11,8],[-3,5],[-5,8],[-23,4],[-2,1],[-6,15],[-8,27],[-5,14],[-2,32],[5,32],[9,19],[32,50],[24,35],[24,31],[26,27],[32,24],[2,1],[9,-4],[1,0],[2,-1],[77,-22],[10,2],[2,0],[8,8],[6,7],[2,6],[0,6],[0,36],[0,11],[0,13],[-3,4],[-6,8],[-10,11],[-4,3],[-15,12],[-19,10],[-39,20],[-15,6],[-31,6],[-27,2],[-39,-5],[-3,0],[-8,0],[-6,0],[-13,3],[-41,11],[-10,7],[-24,42],[-1,2],[-20,47],[-1,1],[-3,9],[-1,6],[0,1],[-6,27],[1,23],[0,28],[-4,9],[-20,38],[-60,79],[-7,8],[-31,15],[-3,1],[-57,21],[-15,7],[-24,15],[-7,9],[-9,13],[-8,18],[0,1],[0,5],[-21,62],[6,80],[0,1],[9,28],[5,8],[21,35],[17,24],[0,1],[0,64],[-2,16],[-7,31],[-5,13],[-1,3],[-6,27],[-1,6],[-3,14],[-6,44],[-1,11],[-2,5],[-25,65],[-9,36],[-1,2],[-4,17],[-2,10],[-3,15],[0,1],[0,20],[0,45],[-1,60],[0,12],[0,3],[-3,46],[-6,55],[-1,13],[-10,27],[-10,10],[-1,1],[-41,21],[-67,19],[-23,3],[-8,1],[-17,-8],[-2,-1],[-1,0],[-24,-4],[-12,-1],[-1,0],[-3,1],[-46,23],[-8,2],[-1,0],[-12,8],[-62,75],[-59,99],[-20,48],[-2,14],[-1,11],[-10,49],[-11,55],[-2,26],[2,17],[13,37],[8,16],[25,36],[9,11],[35,43],[9,15],[4,14],[0,5],[0,1],[0,1],[-9,17],[-10,34],[-1,1],[-5,10],[-10,9],[-13,8],[-21,9],[-28,-3],[-22,-4],[-24,-4],[-12,-3],[-16,-9],[-8,-13],[-6,-11],[-3,-8],[-34,-47],[-2,-3],[-12,-9],[-93,-56],[-18,-9],[-13,-2],[-10,6],[-7,12],[-1,0],[-3,11],[-9,37],[-3,13],[0,16],[0,3],[-39,68],[-9,6],[-4,1],[0,1],[-31,18],[-7,4],[-7,19],[-1,21],[2,16],[2,9],[-2,8],[-10,38],[-1,2],[-10,20],[-7,11],[-11,7],[-5,2],[-23,6],[-17,13],[-20,27],[-2,7],[0,18],[5,11],[7,8],[17,18],[15,12],[7,2],[18,-4],[11,1],[2,0],[9,5],[6,9],[4,9],[1,17],[0,1],[-1,25],[-1,7],[-7,30],[-8,27],[-3,4],[-5,2],[-55,-1],[-9,-2],[-14,-6],[-13,-11],[-18,-20],[-10,-6],[-6,0],[-9,2],[-10,7],[-3,12],[6,34],[1,8],[13,122],[1,3],[18,51],[0,1],[5,19],[0,10],[-3,7],[-6,10],[-1,1],[-14,7],[-3,1],[-18,4],[-29,-3],[-1,0],[-22,-10],[-9,0],[-31,18],[-8,11],[-1,1],[-11,17],[-66,114],[0,1],[-23,39],[-5,8],[-9,13],[-1,1],[-9,8],[-10,10],[-17,3],[-9,1],[-20,4],[-10,1],[-67,30],[-7,6],[-61,55],[-19,23],[-4,2],[-18,15],[-4,3],[-6,0],[-72,-3],[-23,-1],[-19,-12],[-23,-19],[-39,-28],[-2,-2],[-3,1],[-24,6],[-23,52],[-11,36],[-19,42],[-25,54],[-134,161],[-7,16],[-14,32],[-13,58],[-14,64],[-63,94],[-5,11],[-17,36],[-9,6],[-148,78],[-69,9],[-7,1],[-29,3],[-4,2],[-65,41],[-19,58],[-5,15],[-9,139],[0,10],[-4,5],[-32,41],[-56,71],[-50,45],[-8,8],[-72,32],[-70,-8],[-52,-6],[-36,6],[-6,1],[-88,16],[-19,3],[-14,41],[-6,18],[-11,34],[-4,15],[-4,16],[-6,24],[-3,13],[-1,5],[-9,32],[-5,22],[-1,3],[-14,57],[-31,68]],[[48292,87186],[259,170],[318,34],[288,-55],[328,-170],[25,-13],[173,-209],[16,-22],[179,-305],[318,-322],[210,-93],[285,31],[162,17],[534,56],[196,21],[81,9],[48,20],[225,93],[68,28],[60,19],[490,153],[19,10],[306,149],[450,41],[382,35],[24,37],[50,80],[206,324],[129,212],[140,229],[7,11],[38,22],[162,91],[128,73],[751,238],[137,98],[209,149],[346,247],[32,21],[273,209],[15,9],[6,4]],[[8374,86077],[-28,-12],[-18,3],[-17,2],[-7,18],[-5,15],[20,29],[3,4],[11,14],[18,12],[0,1],[7,7],[14,16],[17,25],[15,23],[15,11],[5,-39],[-11,-58],[-17,-43],[-9,-24],[-13,-4]],[[8198,86330],[15,-2],[22,1],[15,-8],[21,-13],[19,-9],[24,-6],[34,0],[13,-8],[-7,-38],[-8,-27],[-17,-30],[-23,-30],[-21,-22],[-20,-13],[-27,-7],[-34,5],[-26,14],[-31,25],[32,28],[26,18],[19,7],[5,36],[-14,26],[-10,15],[-25,20],[18,18]],[[14876,88173],[-1,-33],[0,-6],[-1,-120],[-1,-125],[0,-79],[0,-33],[-4,-132],[3,-88],[2,-78],[-1,-75],[1,-28],[2,-38],[-2,-60],[-2,-39],[0,-46],[-3,-32],[0,-66],[-1,-81],[3,-80],[0,-26],[1,-67],[2,-104],[0,-48],[0,-28],[2,-140],[-50,1],[-21,1],[-44,2],[-74,0],[-167,0],[-96,0],[-12,0],[-16,0],[-14,0],[-28,0],[-211,1],[-41,0],[-14,0],[-10,0],[-166,1],[-79,1],[-20,0],[-12,0],[-29,0],[-32,0],[-18,1],[-54,0],[-321,2],[0,-88],[0,-2],[0,-23],[1,-73],[0,-155],[1,-173],[-1,-180],[89,1],[163,4],[-2,-235],[-1,-102],[92,0],[168,2],[-2,-123],[-2,-75],[-2,-75],[-1,-61],[16,0],[81,-1],[48,0],[99,-1],[16,0],[-2,-132],[0,-31],[0,-52],[-1,-86],[0,-37],[32,-1],[97,-3],[25,-1],[119,-5],[15,-1],[65,0],[1,0],[22,0],[43,0],[109,0],[-1,-162],[0,-91],[1,-27],[0,-33],[0,-31],[17,4],[15,2],[3,0],[17,1],[7,5],[13,2],[24,4],[98,14],[55,6],[132,-11],[109,-9],[4,-150],[-1,-32],[-3,-78],[-3,-71],[130,2],[107,-2],[148,-2],[106,-2],[22,0],[1,-47],[0,-74],[2,-212],[-166,1],[-94,1],[3,-187],[4,-152],[-9,0],[-332,6],[-97,2],[-73,1],[0,-276],[0,-120],[0,-24],[0,-6],[0,-52],[1,-143],[0,-55],[-20,0],[-168,3],[-104,1],[-7,0],[-147,0],[-64,1],[4,-163],[1,-42],[1,-89],[1,-40],[0,-6],[-3,0],[-27,0],[-226,-2],[1,-152],[1,-132],[0,-48],[-96,1],[-40,0],[-108,1],[-7,-20],[1,-60],[0,-25],[3,-148],[1,-49],[2,-97],[3,-99],[3,-199],[-238,7],[4,-146],[4,-188],[-29,-268],[0,-9],[-7,-61],[-8,-339],[-269,-6],[-1,-56],[-1,-31],[-1,-64],[-1,-65],[-2,-117],[48,1],[213,5]],[[13592,80123],[2,-155],[2,-143],[1,-40],[0,-80],[0,-239],[1,-55],[-2,-152],[3,-43],[4,-69],[3,-87],[1,-29],[2,-180],[0,-33],[0,-36],[-1,-33],[1,-120],[1,-51],[2,-122],[1,-39],[3,-97],[2,-51],[0,-11],[5,-128],[0,-36],[1,-27],[1,-79],[0,-93],[0,-72],[-1,-119],[0,-111],[-1,-51],[0,-19],[0,-15],[0,-74],[-2,-108],[-2,-159],[0,-61],[-2,-21],[0,-22],[-1,-34],[0,-30],[0,-36],[3,-59],[1,-14],[-2,-65],[0,-57],[-1,-33],[-1,-189],[-1,-47],[1,-53],[0,-24],[-1,-31],[0,-23],[0,-101],[0,-30],[-1,-26],[1,-27],[-1,-110],[-1,-84],[0,-43],[-1,-31],[0,-76],[0,-101],[0,-2],[0,-169],[0,-69],[0,-209],[0,-38],[1,-130],[0,-64],[-85,0],[-130,0],[-6,0],[-18,0],[-94,0],[-36,0],[-100,-6],[-39,1],[-40,0],[-37,0],[-68,1],[-32,0],[-16,0],[-29,1],[-13,0],[-79,1],[-15,1],[-22,-1],[-101,-1],[-171,0],[-69,0],[-38,1],[-18,2],[-15,0],[-31,0],[-73,1],[-19,0],[-65,0],[-97,1],[-102,1],[-51,4],[-50,0],[-21,3],[-17,1],[-24,2],[-40,4],[-15,0],[-135,4],[-149,0],[-90,0],[-83,-1],[-69,-6],[-67,2],[-42,-2],[-81,-6],[-64,-5],[-47,-2],[-38,-3],[-79,0],[-71,-1],[-20,-1],[-67,-1],[-86,3],[-142,1],[-172,1],[-12,0],[-54,1],[-24,0],[-71,0],[-15,0],[-53,-3],[-49,-1],[-31,0],[-26,0],[-251,-2],[0,-87],[0,-42],[0,-47],[0,-33],[0,-113],[7,1],[1,-186],[1,-123],[0,-113],[0,-89],[0,-119],[0,-25],[0,-26],[-3,-95],[-1,-74],[-1,-72],[0,-27],[-2,-103],[-4,-86],[0,-108],[-1,-40],[-2,-73],[1,-43],[-1,-65],[0,-76],[0,-71],[2,-70],[1,-36],[0,-33],[1,-37],[1,-5],[1,-7],[3,0],[-2,-253],[-1,-231],[0,-1],[-3,-358],[0,-72],[-1,-38],[0,-79],[-2,-98],[288,9],[127,-8],[49,0],[2,0],[39,-3],[7,0],[90,-2],[90,-1],[15,0],[41,0]],[[10392,71795],[-1,-68],[-1,-38],[0,-21],[-2,-71],[0,-27],[-2,-112],[-2,-76],[-4,-223],[-2,-111]],[[10378,71048],[-17,0],[-44,1],[-76,1],[-65,0],[-3,0],[-61,1],[-53,4],[-150,2],[-14,0],[-105,1],[-26,-1],[-73,2],[-42,2],[-21,0],[-127,1],[-10,1],[-24,0],[-35,2],[-1,0],[-32,1],[-28,1],[-49,0],[-16,1],[-22,1],[-19,3],[-74,-1],[-76,1],[-110,1],[-57,1],[-51,2],[-17,0],[-25,-1],[-32,0],[-59,0],[-35,0],[-103,-1],[-87,1],[-13,-1],[-56,-9],[-69,0],[-128,1],[-195,0],[-27,1],[-373,1],[-30,0],[-95,1],[-1,0],[-148,1],[-2,-6],[1,-16],[-30,1],[-156,8],[-64,3],[-24,2],[-68,3],[-34,2],[-24,1],[-21,1]],[[6982,71069],[-11,31],[-20,47],[-33,0],[-42,-18],[-48,4],[-37,20],[-20,45],[44,57],[-3,70],[-3,55],[-14,49],[2,126],[21,36],[36,14],[30,34],[-3,47],[-26,24],[11,55],[-16,57],[37,89],[14,54],[28,37],[25,16],[26,40],[30,54],[33,25],[37,43],[38,41],[16,80],[8,66],[18,90],[7,58],[9,49],[13,74],[12,77],[8,94],[15,56],[9,67],[12,101],[9,88],[12,95],[14,96],[11,101],[7,59],[2,68],[13,75],[27,85],[29,10],[98,168],[26,38],[20,41],[5,44],[9,39],[18,12],[4,33],[-3,67],[8,22],[3,31],[4,33],[25,-41],[19,-4],[31,-40],[0,-52],[21,-71],[14,-124],[27,-72],[26,-43],[20,-19],[9,-9],[0,13],[0,15],[-35,66],[-16,29],[-2,60],[12,1],[9,-68],[65,2],[11,56],[1,55],[24,39],[-13,22],[-24,94],[-19,0],[-8,16],[-27,37],[-15,-10],[-13,-9],[-3,28],[-36,29],[-10,41],[-26,99],[-37,34],[-17,-34],[2,-37],[25,-10],[-8,-24],[-16,-18],[-35,47],[1,24],[13,22],[-8,60],[-10,62],[-18,33],[-39,41],[-30,21],[-19,23],[-9,34],[8,77],[35,77],[31,56],[14,31],[24,43],[-18,-4],[-12,-18],[-18,-21],[-20,-54],[-29,-44],[-25,-61],[-11,-65],[3,-55],[36,-63],[20,-27],[36,1],[27,-57],[4,-30],[-5,-56],[-33,-113],[-13,-8],[0,40],[-10,-32],[-4,-33],[13,-42],[19,-16],[-47,-78],[-58,-71],[-6,-27],[-11,-56],[-8,-151],[10,-31],[-16,-14],[-33,56],[14,137],[3,134],[11,85],[1,85],[7,89],[4,86],[6,134],[4,65],[2,109],[-14,92],[-8,65],[-8,68],[-8,65],[-16,42],[-30,24],[-51,-5],[37,93],[29,75],[11,47],[10,55],[1,80],[12,49],[2,47],[6,78],[13,63],[14,63],[13,94],[4,63],[6,68],[7,136],[11,113],[14,95],[28,55],[44,-50],[-26,-50],[5,-62],[62,-9],[21,36],[31,34],[19,44],[24,64],[-27,-6],[-34,8],[-17,84],[8,64],[24,29],[6,72],[1,44],[16,4],[14,4],[14,-8],[13,-7],[7,-31],[2,-17],[2,-21],[20,31],[-7,21],[17,-1],[24,-17],[6,5],[18,13],[-2,58],[4,94],[-2,18],[-4,47],[-29,20],[-14,-37],[-39,-102],[-10,0],[-27,2],[-4,0],[-27,-2],[-27,-27],[-3,-89],[-26,-49],[-18,2],[-27,1],[-14,-40],[4,-27],[-24,2],[-18,38],[4,99],[-3,85],[5,73],[-1,88],[2,112],[-1,80],[-2,97],[-4,70],[-6,77],[-6,89],[-9,66],[-10,60],[-24,107],[-27,104],[-11,38],[-24,68],[-37,24],[-27,26],[-23,-1],[-34,-3],[-45,-1],[-27,-11],[-41,-7],[-36,-6],[-43,-12],[-37,-5],[-23,-4],[-58,38],[33,47],[28,-1],[27,23],[34,27],[28,-32],[26,20],[15,61],[31,-5],[42,45],[39,14],[27,9],[17,34],[10,39],[21,36],[91,603],[-1,28],[95,948],[2,100],[1,86],[27,75],[45,112],[9,-86],[-24,-51],[10,-75],[37,-28],[24,-107],[-15,-107],[-12,-54],[-98,-434],[-37,-357],[21,-130],[21,-42],[22,-44],[8,40],[21,56],[40,55],[-18,45],[1,51],[32,51],[36,41],[17,37],[41,22],[17,42],[27,52],[38,24],[19,55],[19,87],[20,52],[19,23],[8,38],[-6,58],[-36,110],[2,79],[-3,73],[-17,28],[-12,85],[-27,81],[-38,57],[-28,35],[-22,20],[-42,24],[-4,77],[3,63],[-38,54],[-37,18],[-35,47],[-23,54],[-26,69],[-29,84],[-13,57],[-14,43],[-31,74],[-19,49],[-20,31],[-8,70],[5,48],[32,78],[18,95],[0,77],[-15,73],[-35,39],[-34,41],[-23,30],[34,37],[-11,50],[49,55],[64,20],[59,71],[23,114],[21,96],[27,111],[11,103],[19,197],[22,243],[11,126],[10,189],[6,128],[2,110],[-3,114],[-2,78],[41,-12],[100,-190],[51,24],[19,-18],[-22,-107],[-23,6],[-33,-10],[-26,-8],[-16,-53],[0,-60],[19,-59],[-6,-124],[-19,-72],[-35,-23],[-19,-60],[-4,-41],[-8,-77],[34,-166],[38,-78],[-60,-77],[29,-71],[-29,-24],[-47,-6],[-60,-65],[-13,-101],[32,20],[11,27],[28,-3],[54,33],[5,8],[36,20],[35,-20],[44,-64],[28,-53],[71,-85],[46,-28],[69,-60],[31,-28],[27,-49],[34,-53],[52,-43],[34,-32],[26,-40],[20,-54],[32,-85],[25,-43],[40,-41],[28,-20],[26,-23],[30,-44],[28,-56],[76,-26],[10,24],[7,16],[-23,3],[-38,16],[-15,27],[-2,17],[-2,19],[-22,3],[-58,74],[-22,24],[0,12],[1,4],[6,37],[7,14],[28,59],[54,28],[40,67],[2,104],[16,23],[13,11],[90,77],[14,16],[8,123],[-37,17],[-17,8],[-13,6],[-40,4],[-31,-5],[-25,16],[-10,7],[51,45],[-28,41],[-37,18],[-31,38],[-1,99],[4,81],[-10,70],[-29,54],[-30,35],[-31,23],[-25,57],[-17,55],[-3,61],[-11,74],[-12,74],[-7,43],[-12,40],[-22,61],[-18,35],[-14,50],[23,52],[35,45],[16,46],[13,42],[18,39],[6,11],[34,61],[16,27],[-9,17],[-56,-10],[-45,-5],[-31,-29],[0,-117],[-36,-5],[-45,45],[-30,-13],[21,-45],[-43,-9],[-7,49],[-29,17],[-46,-12],[-46,27],[-49,35],[-37,20],[-19,61],[-94,128],[-43,10],[-17,-1],[-34,7],[-53,10],[-22,18],[0,89],[11,52],[15,59],[18,83],[19,82],[22,63],[4,69],[-5,76],[0,72],[15,101],[18,76],[5,59],[1,59],[8,90],[2,91],[0,43],[5,52],[4,70],[10,67],[6,80],[13,73],[5,68],[5,97],[2,74],[5,56],[2,45],[17,86],[29,40],[31,31],[28,34],[25,54],[14,69],[12,50],[20,40],[17,62],[-1,94],[1,52],[3,80],[1,122],[-4,55],[5,44],[23,26],[27,7],[59,1],[58,5],[34,-11],[38,-27],[41,-8],[42,-3],[31,-3],[52,-16],[53,2],[50,33],[26,61],[6,38],[1,182],[-32,29],[-34,93],[-15,23],[2,28],[-21,59],[-7,20],[-16,40],[2,47],[22,58],[20,37],[21,52],[24,90],[3,24],[-38,-52],[-3,-24],[-12,-54],[-39,-74],[-23,-48],[9,-98],[6,-28],[15,-77],[26,-112],[11,-24],[-5,-26],[-14,-18],[-62,10],[-15,11],[-9,32],[44,-34],[-13,67],[-26,2],[20,46],[-12,51],[-42,34],[-37,5],[-20,-20],[-52,29],[-58,-38],[-31,2],[-27,0],[-28,-54],[5,-58],[-23,-27],[-30,-32],[0,-58],[1,-44],[-78,-54],[-49,-58],[0,-43],[-24,-42],[-5,-48],[1,-48],[10,-29],[4,-104],[24,-70],[11,-105],[-20,-56],[-15,-69],[-8,-95],[-40,-17],[-19,138],[1,80],[2,98],[4,97],[2,73],[0,89],[-2,121],[-1,47],[1,136],[-2,111],[-3,73],[-5,82],[-10,127],[-11,82],[-10,86],[-8,72],[-9,59],[-12,72],[-23,61],[-36,60],[-35,37],[-42,52],[-31,46],[-32,28],[-26,11],[-31,48],[-20,86],[-14,60],[-3,57],[1,64],[32,38],[-44,100],[-28,25],[-38,-24],[-55,-29],[-38,13],[20,65],[-26,50],[36,61],[7,65],[35,39],[24,51],[15,45],[28,37],[43,70]],[[20208,86838],[0,-72],[1,-319],[1,-157],[0,-88],[-5,-27],[1,-108],[5,-66],[-1,-256],[0,-79],[-1,-112],[0,-32],[-1,-243],[0,-49],[0,-33],[-1,-157],[0,-51],[0,-31],[-1,-127],[0,-25],[-2,-21],[0,-3],[1,-3],[8,0],[17,0],[14,0],[89,-2],[1,0],[42,-1],[81,-2],[0,-32],[0,-35],[0,-40],[0,-1],[0,-23],[-1,-107],[-1,-13],[-1,-19],[0,-9],[0,-9],[0,-13],[210,-2],[48,0],[0,-60],[0,-29],[0,-9],[5,-225],[17,0],[72,-5],[8,0],[11,-1],[15,-1],[49,-2],[13,0],[6,0],[52,2],[8,0],[0,-41],[-1,-105],[0,-25],[-1,-83],[-4,-79],[13,-2],[65,-2],[52,-1],[37,-3],[27,2],[67,-1],[-1,-74],[-4,-178],[-1,-35],[0,-44],[42,-1],[53,-1],[158,1],[1,-143],[0,-79],[2,-121],[133,-1],[76,-1],[48,-1],[0,-52],[0,-110],[-1,-25],[1,-56],[0,-70],[0,-19],[19,-2],[9,-1],[33,2],[27,1],[41,-1],[65,1],[33,0],[6,1],[17,0],[3,-1],[4,-2],[-3,-75],[-1,-30],[1,-36],[-1,-38],[-3,-55],[-1,-41],[-2,-44],[0,-17],[9,-2],[8,0],[23,0],[15,0],[23,0],[13,0],[26,0],[26,0],[16,0],[13,0],[22,0],[39,0],[18,0],[3,0],[2,-60],[1,-6],[0,-4],[-1,-4],[0,-6],[-1,-6],[1,-6],[1,-5],[-1,-18],[-1,-10],[0,-7],[0,-6],[0,-8],[-1,-4],[0,-2],[0,-29],[1,-36],[0,-12],[0,-10],[0,-36],[-1,-29],[0,-2],[1,-20],[0,-7],[3,0],[3,-1],[10,0],[20,0],[2,1],[10,-1],[13,-1],[54,-1],[23,0],[28,-1],[39,-1],[19,0],[20,0],[13,0],[1,-52],[0,-31],[0,-35],[0,-41],[0,-72],[0,-22],[0,-8],[0,-2],[-1,-7],[0,-2],[1,-6],[0,-6],[0,-2],[0,-7],[0,-16],[0,-30],[0,-36],[0,-48],[0,-40],[0,-36],[0,-31],[0,-43],[0,-14],[-1,-9],[0,-20],[2,-13],[1,-26],[1,-18],[0,-10],[-1,-13],[0,-11],[1,-21],[2,-15],[0,-7],[0,-1],[0,-10],[0,-15],[-1,-2],[1,-2],[-1,-8],[0,-33],[-1,-9],[0,-21],[2,-59],[0,-40],[-1,-23],[0,-25],[1,-25],[-1,-26],[1,-24],[0,-37],[-1,-26],[4,-25],[0,-33],[-3,-56],[0,-40],[-1,-42],[1,-36],[1,-24],[1,-32],[0,-36],[-2,-25],[0,-33],[-2,-33],[0,-36],[0,-46],[0,-30],[2,-5],[0,-49],[0,-61],[-2,-2],[-1,-2],[0,-29],[1,-26],[-1,-20],[0,-30],[0,-2],[0,-10],[2,-19],[1,-43],[0,-36]],[[22495,80116],[-2,-12],[0,-4],[-2,-50],[-1,-6],[-1,-21],[-2,-26],[0,-7],[1,-15],[0,-3],[0,-5],[0,-2],[-1,-12],[1,-15],[0,-20],[1,-5],[1,-107],[0,-13],[-2,-25],[0,-12],[0,-23],[0,-1],[0,-40],[0,-10],[0,-27],[0,-13],[-1,-24],[2,-27],[0,-3],[0,-40],[-1,-27],[0,-3],[0,-42],[1,-22],[1,-32],[0,-30],[-1,-42],[-1,-39],[0,-12],[0,-30],[0,-33],[0,-29],[0,-13],[0,-11],[0,-17],[0,-26],[0,-6],[-1,-20],[0,-4],[0,-39],[0,-29],[0,-24],[0,-15],[0,-69],[0,-32],[0,-28],[0,-24],[0,-31],[0,-9],[-1,-26],[0,-21],[0,-20],[1,-38],[-1,-30],[0,-9],[-1,-11],[-1,-39],[1,-24],[0,-168],[1,-8],[0,-22],[0,-49],[0,-6],[1,-37],[0,-6],[0,-19],[0,-20],[1,-23],[0,-45],[0,-59],[0,-33],[1,-103],[0,-101],[0,-22],[0,-20],[0,-102],[-32,0],[-5,0],[-87,0],[-33,-1],[-1,0],[-12,0],[-54,-1],[-33,0],[-47,0],[-5,0],[-11,0],[-24,-1],[-29,0],[-5,0],[-19,0],[-41,0],[-15,0],[-28,-1],[-24,1],[-15,0],[-12,0],[-1,0],[-2,0],[-7,0],[-16,0],[-30,0],[-48,0],[-33,0],[-90,0],[0,76],[0,84],[-1,158],[-1,20],[-8,0],[-12,0],[-62,-1],[-99,1],[-58,0],[-10,0],[-28,-1],[-31,0],[-8,0],[-23,-1],[-126,2],[-38,-1],[0,-42],[0,-40],[0,-163],[0,-51],[0,-4],[-1,-27],[0,-29],[0,-47],[0,-41],[0,-30],[0,-68],[0,-33],[0,-7],[0,-66],[0,-27],[-61,1],[-9,0],[-12,0],[-31,1],[-17,0],[-18,0],[-20,0],[-21,1],[-75,1]],[[20960,77412],[-67,0],[-34,0],[-146,-3],[-76,-1],[-16,0],[-35,0],[-17,1],[-13,-1],[-42,0],[-15,0],[-1,0],[-16,-1],[-26,-1],[0,48],[0,109],[-1,185],[1,59],[0,87],[0,47],[1,58],[0,52],[0,33],[-38,0],[-14,1],[-57,0],[-46,-1],[-22,0],[-71,1],[-29,0],[-18,1],[-19,0],[-16,1],[-46,0],[-15,0],[-16,0],[-114,0],[-29,0],[-24,-1],[-27,0],[-50,0],[-13,0],[-1,0],[-32,0],[-50,1],[-1,0],[-13,0],[1,8],[2,49],[0,75],[0,51],[-1,77],[-1,74],[-59,3],[-13,1],[-18,0],[-22,0],[-149,2],[0,93],[-1,61],[0,100],[0,40],[0,24],[1,9],[1,9],[-5,0],[-71,6],[-38,3],[-39,7],[-16,2],[-74,6],[-6,10],[1,92],[0,33],[0,29],[0,28],[0,144],[-40,-1],[-15,-1],[-147,-6],[-38,-2],[-13,0],[0,216],[0,91],[0,28],[-21,-1],[-22,0],[-26,0],[-141,-3],[-45,0],[-126,-2],[-48,0],[-54,-1],[-52,0],[-56,-1],[-71,-1],[-215,-2],[-110,-2],[-30,0],[0,37],[0,1],[0,115],[-1,144],[0,43],[-41,0],[-94,0],[-53,0],[-35,0],[-33,0],[-2,62],[1,16],[-2,67],[0,24],[-1,45],[2,81],[1,40],[-16,1],[-15,0],[-18,1],[-79,1],[-42,1],[-41,0],[-46,0],[-38,1],[-218,1],[-43,0],[-13,0],[-32,-2],[-28,-1],[-46,1],[-87,2],[-48,0],[-86,3],[-16,0],[-28,1],[-25,0],[-87,-1],[-379,-1],[-634,0],[-145,5],[-97,1],[-89,1],[-127,-1],[-36,-1],[-147,-1],[-255,9],[-13,0],[-13,0],[-19,0],[-21,0],[-395,-3],[-87,-1],[-151,-1],[-21,0],[-153,-1],[-69,-1],[-166,-1]],[[50143,71955],[-15,0],[-384,5],[-107,1],[-161,2],[-100,1],[-209,2],[-219,1],[-203,2],[-1,0],[-115,1],[-76,0],[-76,1],[-291,3],[-40,-2],[-15,0],[-79,0],[-13,1],[-11,0],[-169,0],[-107,1],[-401,2],[-5,11],[0,34],[8,67],[3,10],[4,14],[25,18],[6,13],[-1,5],[0,21],[-1,7],[-8,59],[-13,54],[-4,14],[0,8],[4,15],[0,1],[36,103],[4,8],[27,29],[34,39],[6,9],[11,51],[8,35],[0,1],[0,33],[0,5],[-4,7],[-4,6],[-2,28],[0,27],[1,21],[1,14],[2,19],[2,14],[-39,80],[-8,15],[-4,53],[-11,146],[0,1],[-42,18],[-54,34],[-77,29],[-2,1],[-10,0],[-16,6],[-56,41],[-17,21],[-3,9],[-8,31],[-2,6],[0,1],[-9,20],[-24,50],[-43,33],[-17,7],[-1,0],[-13,3],[-39,1],[-1,0],[-6,1],[-7,-7],[-18,6],[-7,5],[-5,30],[0,9],[2,15],[-7,62],[-2,2],[-54,97],[-3,7],[-17,24],[7,50],[3,3],[0,1],[7,25],[0,8],[-2,5],[-11,20],[-33,54],[-1,1],[-3,4],[-8,5],[-1,0],[-43,-7],[-68,9],[-30,18],[-6,5],[-8,7],[-7,2],[-5,-1],[-12,-3],[-56,4],[-1,0],[-53,19],[-21,7],[-3,2],[-1,0],[-49,24],[-1,1],[-51,35],[-33,22],[-19,21],[-1,1],[-1,3],[-3,23],[0,1],[-2,3],[-24,20],[-5,4],[-9,8],[-5,3],[-2,1],[-3,2],[-8,3],[-35,0],[-4,0],[-6,16],[-6,14],[-25,45],[-36,23],[-90,51],[-1,0],[-1,0],[-15,2],[-10,-3],[-1,0],[-16,25],[-10,1],[-7,4],[-9,10],[-4,12],[-3,32],[-11,30],[-2,6],[-1,1],[-8,9],[-25,29],[-1,1],[-68,52],[-47,37],[-2,2],[-36,44],[-17,36],[-3,4],[-22,10],[-3,0],[1,21],[0,1],[-11,12],[-9,-2],[-15,-9],[-29,-7],[-14,4],[-6,4],[-22,26],[-42,54],[0,10],[-47,-12],[0,-1],[-11,-1],[-73,24],[-10,4],[-3,4],[-2,3],[-2,5],[-5,7],[-8,5],[-9,-1],[-31,-19],[-2,6],[-2,3],[-2,4],[-3,5],[0,1],[-37,38],[0,1],[-1,0],[-96,25],[-13,1],[-27,-1],[-3,0],[-35,-10],[-1,0],[-1,0],[-39,4],[-4,-3],[-2,-4],[-3,-25],[-1,-29],[-3,-3],[-13,-8],[-21,-10],[-64,-31],[-20,-5],[-4,-1],[-33,-2],[-4,2],[-5,8],[-1,7],[3,17],[7,15],[12,19],[17,21],[0,6],[-13,19],[-4,2],[-6,0],[-1,-1],[-47,-28],[-1,-1],[-14,-12],[-17,-16],[-3,-3],[-15,-7],[-11,1],[-60,26],[-79,-65],[-8,-3],[-13,1],[-6,4],[-60,43],[-25,17],[-3,17],[-14,9],[-16,-3],[-17,-9],[-13,-10],[-11,-15],[0,-1],[1,-11],[9,-9],[1,0],[9,-5],[8,-6],[2,-4],[-1,-36],[-6,-18],[-6,-6],[-7,0],[-80,13],[-52,30],[-32,23],[-11,11],[-10,6],[-1,0],[-77,10],[-4,-1],[-10,-2],[-48,-11],[-8,-6],[-26,-19],[-11,-15],[-4,-3],[-4,1],[-30,23],[-1,9],[-2,18],[-18,71],[-4,7],[0,1],[-108,114],[-5,5],[-1,0],[-3,1],[-27,12],[-61,18],[-46,15],[-3,0],[-39,5],[-2,1],[-53,37],[0,2],[-7,87],[7,15],[0,10],[-2,6],[-4,6],[-8,3],[-1,0],[-17,0],[-13,0],[-21,3],[-6,4],[-6,15],[-2,11],[0,17],[7,121],[2,5],[28,30],[4,4],[20,20],[2,6],[-1,10],[-1,2],[-3,10],[-5,10],[0,1],[-21,12],[-15,16],[-17,30],[-1,4],[1,12],[6,12],[23,24],[14,22],[0,14],[-3,6],[-26,37],[-7,9],[-2,78],[0,16],[6,19],[5,18],[0,1],[5,107],[-5,37],[-6,50],[0,4],[4,35],[3,147],[-3,17],[-9,51],[-1,6],[6,10],[30,50],[0,2],[21,65],[9,30],[0,5],[-1,4],[0,4],[-1,4],[-1,3],[-1,4],[-1,3],[-2,4],[-1,3],[-1,3],[-2,3],[-2,2],[-1,3],[-2,2],[-2,2],[-2,2],[-1,0],[-33,25],[-11,20],[2,26],[68,104],[1,2],[1,3],[2,3],[1,3],[1,1],[10,27],[1,2],[1,4],[1,3],[1,4],[1,4],[1,4],[0,4],[0,4],[1,4],[0,4],[0,4],[-1,4],[0,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,3],[-10,35],[-1,3],[-2,4],[-1,3],[-43,4],[-6,-6],[-4,-4],[-19,-17],[-6,-8],[-3,-2],[-9,-8],[-11,-4],[-11,1],[-36,6],[-9,10],[0,2],[2,38],[0,2],[21,18],[14,14],[33,31],[4,4],[73,101],[1,3],[1,3],[2,3],[1,4],[1,3],[1,4],[0,4],[7,37],[1,4],[0,4],[0,4],[5,72],[4,59],[20,68],[77,63],[19,10],[6,0],[61,-52],[1,0],[1,-1],[29,-20],[1,0],[2,-1],[2,-1],[2,-1],[2,0],[2,-1],[24,0],[2,1],[2,0],[2,1],[37,15],[2,0],[2,2],[2,1],[2,2],[2,2],[2,2],[2,3],[24,36],[1,2],[2,3],[1,3],[2,3],[1,3],[1,4],[1,2],[62,227],[14,37],[31,18],[18,4],[19,-3],[40,-36],[3,-10],[-3,-29],[-14,-104],[0,-3],[0,-4],[-1,-4],[0,-4],[0,-4],[1,-4],[0,-5],[0,-4],[1,-3],[1,-4],[0,-3],[20,-79],[1,-4],[1,-4],[2,-3],[1,-3],[2,-3],[1,-3],[2,-3],[2,-2],[1,-2],[2,-2],[2,-2],[2,-1],[33,-22],[2,-2],[2,-1],[3,0],[57,-13],[2,0],[2,0],[2,0],[2,1],[30,7],[2,1],[2,0],[3,2],[2,1],[0,1],[33,27],[1,1],[2,2],[2,2],[2,2],[1,3],[2,3],[1,3],[1,2],[16,37],[2,4],[1,4],[1,3],[1,4],[1,4],[0,4],[9,61],[18,77],[37,55],[2,2],[1,2],[1,3],[54,113],[1,4],[1,3],[1,3],[1,4],[1,4],[1,4],[1,4],[0,4],[1,4],[0,4],[0,4],[0,4],[0,2],[-6,106],[0,1],[0,4],[-1,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,3],[-2,3],[-1,4],[-1,3],[-2,2],[-2,3],[-2,2],[-1,3],[-2,2],[-2,1],[-2,2],[-1,0],[-29,17],[-2,1],[-1,1],[-51,20],[-5,25],[2,6],[24,23],[41,-3],[145,-158],[2,-2],[2,-1],[2,-2],[2,-1],[2,-1],[3,-1],[2,0],[2,0],[2,0],[2,0],[2,1],[3,1],[2,1],[1,1],[17,12],[0,1],[2,1],[2,2],[2,2],[2,3],[2,2],[1,3],[2,3],[1,3],[1,4],[2,3],[1,4],[0,4],[10,44],[1,4],[1,4],[0,4],[0,4],[1,4],[0,4],[0,4],[0,3],[-3,49],[-1,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,3],[-1,3],[-2,3],[-2,3],[-1,2],[-36,54],[-2,3],[-42,53],[-2,46],[2,5],[41,20],[129,-16],[2,0],[3,0],[2,1],[2,0],[19,8],[2,1],[2,1],[2,1],[2,2],[2,2],[2,2],[2,3],[2,2],[1,3],[1,1],[17,33],[0,2],[2,3],[1,4],[1,3],[1,4],[1,4],[1,3],[1,4],[0,4],[0,4],[1,4],[0,7],[-1,52],[0,1],[-2,57],[-2,54],[0,30],[3,15],[33,33],[35,10],[21,0],[86,-31],[16,-10],[2,-1],[2,-1],[3,-1],[2,0],[2,0],[2,0],[2,0],[2,1],[3,1],[2,1],[2,1],[2,2],[6,6],[1,2],[2,2],[2,2],[2,3],[1,3],[2,3],[1,3],[1,3],[2,4],[1,3],[0,3],[5,20],[1,4],[0,4],[1,4],[0,4],[0,4],[0,4],[1,128],[13,64],[0,2],[1,4],[0,2],[9,70],[50,90],[38,68],[77,112],[2,3],[2,2],[1,3],[2,4],[1,3],[1,3],[1,4],[1,4],[1,4],[0,4],[1,2],[3,33],[1,1],[0,4],[0,4],[0,3],[1,40],[3,6],[25,3],[101,-109],[2,-1],[2,-2],[2,-2],[2,-1],[2,-1],[2,0],[2,-1],[3,0],[2,0],[2,1],[2,0],[1,1],[23,10],[1,0],[2,1],[2,2],[2,1],[2,2],[2,3],[2,2],[1,3],[2,2],[1,3],[2,4],[1,3],[1,3],[1,4],[1,4],[1,4],[1,4],[9,70],[1,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[-1,4],[0,4],[-1,4],[-1,4],[-1,3],[-1,3],[-14,42],[-2,4],[-1,3],[-2,3],[-11,21],[4,68],[10,79],[1,3],[0,4],[0,3],[5,99],[0,2],[0,3],[0,4],[-3,57],[3,12],[14,64],[40,118],[3,3],[1,2],[2,3],[2,3],[1,3],[1,3],[2,3],[1,4],[1,3],[1,4],[1,4],[0,4],[1,4],[0,4],[0,4],[0,1],[1,17],[0,2],[0,4],[-1,5],[0,4],[0,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,2],[-9,19],[-4,11],[-1,5],[0,34],[8,14],[10,0],[35,-24],[1,-1],[2,-1],[2,-1],[28,-11],[2,0],[19,-6],[1,0],[2,-1],[3,0],[2,0],[2,1],[2,0],[2,1],[2,1],[17,11],[3,1],[2,2],[1,2],[2,2],[2,3],[2,2],[1,3],[2,3],[1,3],[1,4],[2,3],[1,4],[1,3],[0,2],[6,27],[0,3],[1,4],[0,4],[0,4],[1,4],[0,4],[0,4],[-1,4],[0,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,2],[-9,23],[0,2],[-2,3],[-1,3],[-2,3],[-1,2],[-2,3],[-2,2],[-2,2],[-2,1],[-1,1],[-38,27],[-32,30],[-2,1],[-2,2],[-40,24],[-63,104],[-1,1],[0,6],[0,36],[17,59],[0,2],[1,3],[0,2],[4,16],[4,21],[18,59],[2,4],[1,4],[0,4],[1,4],[0,4],[1,4],[0,2],[0,1],[2,50],[1,16],[2,47],[18,54],[6,8],[11,13],[140,23],[2,0],[2,1],[2,1],[2,1],[2,2],[2,1],[2,2],[1,2],[114,139],[2,3],[2,2],[1,3],[2,3],[1,3],[1,4],[2,3],[1,4],[1,4],[0,4],[1,3],[0,5],[1,10],[1,4],[0,4],[0,7],[0,20],[-1,5],[0,4],[-1,4],[-19,123],[-9,61],[-5,46],[15,87],[49,149],[0,1],[1,4],[1,4],[1,4],[1,4],[0,4],[1,4],[0,4],[0,7],[-2,52],[0,4],[0,5],[-1,4],[0,3],[-1,4],[-1,4],[-1,3],[-5,17],[-1,4],[-1,3],[-2,4],[-1,3],[-2,3],[-45,71],[-3,27],[1,17],[7,20],[27,49],[101,85],[1,1],[2,2],[2,2],[2,3],[1,2],[2,3],[1,3],[2,3],[1,4],[1,3],[1,4],[1,3],[1,4],[0,3],[4,21],[0,5],[1,4],[0,4],[0,4],[0,4],[0,4],[-1,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,4],[0,1],[-10,31],[-1,2],[-1,3],[-1,3],[-2,3],[-2,3],[-1,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,1],[-2,1],[-2,1],[-2,0],[-3,1],[-103,-6],[-71,26],[-120,89],[-85,122],[-16,39],[-1,2],[-2,3],[-1,3],[-2,2],[-2,3],[-1,2],[-2,2],[-2,1],[-11,10],[-3,1],[-2,1],[-2,1],[-2,1],[-2,0],[-4,0],[-26,-2],[-2,0],[-3,-1],[-2,-1],[-70,-37],[-56,-18],[-31,3],[-1,1],[-3,-1],[-2,0],[-2,-1],[-8,-3],[-35,42],[-9,40],[-1,138],[-1,16],[0,2],[0,4],[0,4],[-1,4],[0,4],[-1,4],[-1,4],[-1,4],[-1,3],[-1,3],[-2,4],[-1,3],[-17,31],[-2,3],[-1,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,1],[-2,0],[-3,1],[-2,0],[-36,0],[-3,0],[-2,2],[-19,16],[-2,1],[-2,2],[-2,1],[-2,1],[-2,1],[-2,0],[-2,0],[-7,0],[-13,3],[-14,24],[-6,67],[-1,2],[0,4],[-1,4],[0,4],[-1,4],[-16,59],[-1,3],[-1,4],[-2,3],[-1,3],[-1,3],[-107,208],[-2,16],[5,49],[19,74],[6,22],[7,28],[1,4],[1,4],[1,4],[0,4],[0,4],[1,4],[0,4],[0,87],[12,89],[20,53],[45,73],[2,3],[1,3],[2,4],[1,3],[1,3],[1,2],[18,64],[9,32],[0,1],[1,4],[1,4],[0,4],[1,4],[0,4],[1,4],[0,4],[0,4],[-1,2],[-2,48],[0,3],[0,4],[-1,4],[0,4],[-7,36],[-16,93],[-1,4],[-1,4],[-1,4],[-1,3],[-1,4],[-1,3],[-2,3],[-1,3],[-1,1],[-18,28],[-1,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-50,33],[-52,44],[-13,23],[-1,1],[-2,3],[-1,2],[-2,2],[-14,16],[-4,14],[5,51],[1,2],[5,22],[63,108],[18,42],[5,24],[2,11],[4,18],[-4,58],[-5,23],[0,4],[-1,4],[0,2],[-1,2],[-1,4],[-1,3],[-1,4],[-1,3],[-2,3],[-1,3],[-27,65],[-33,104],[-13,39],[-1,5],[-3,7],[-1,6],[-5,14],[-3,11],[-4,7],[-22,42],[-1,1],[0,1],[-1,12],[-5,50],[-12,81]],[[45054,84953],[49,-24],[47,-24],[65,58],[32,28],[174,156],[7,7],[139,187],[197,259],[61,58],[12,6],[172,76],[12,5],[13,6],[7,4],[15,6],[16,7],[2,1],[34,16],[396,185],[358,171],[14,6],[269,153],[87,50],[120,79],[77,51],[297,144],[10,5],[33,17],[20,9],[3,3],[9,9],[141,142],[43,43],[220,258],[17,19],[70,57]],[[22261,86976],[5,-63],[-23,-257],[-110,-597],[33,-388],[26,-66],[79,-264],[55,-96],[84,-149],[70,-38],[307,-166],[60,-33],[145,-128],[21,-19],[113,-116],[31,-32],[27,-28],[4,-4],[44,-46],[73,-46],[3,-2],[32,-20],[31,-19],[1,-1],[18,-11],[266,-167],[212,-85],[76,-13],[171,14],[111,-38],[143,-48],[150,-2],[173,-88],[165,-84],[39,-20],[40,-20],[41,-21],[417,-158],[143,-55],[144,-43],[100,-30],[72,-25],[16,-66],[105,-101],[72,-65],[285,-55],[11,-2],[166,6],[141,66],[63,30],[57,52],[32,3],[234,26],[257,-124],[31,-31],[33,-34],[6,-6],[57,-104],[10,-22],[16,-34],[70,-145],[13,-11],[116,-97],[40,-29],[34,-25],[84,-23],[26,4],[21,2],[36,5],[265,3],[225,69],[56,17],[169,-39],[334,169],[277,172],[170,88],[99,51],[143,164],[285,147],[118,14],[71,10],[109,16],[93,12],[353,226],[149,96],[65,51],[310,247],[8,6],[228,110],[155,50],[116,22],[254,196],[193,183],[40,72],[22,38],[31,88],[7,19],[54,27],[63,-3],[31,-6],[4,-1],[33,-4],[36,-1],[29,-1],[11,1],[4,0],[90,39],[19,15],[29,47]],[[32633,85134],[0,-37],[0,-20],[0,-15],[0,-15],[0,-15],[0,-62],[0,-40],[0,-32],[1,-329],[1,-82],[2,-170],[0,-74],[24,-33],[23,-30],[12,-7],[12,-12],[7,-44],[7,-22],[10,-20],[11,-24],[2,-32],[-13,-29],[-11,-23],[-4,-26],[6,-41],[2,-31],[-2,-33],[-12,-31],[1,-39],[-1,-24],[-10,-19],[-15,-29],[-6,-20],[6,-37],[12,-24],[13,-25],[28,-26],[36,-4],[4,-32],[-7,-30],[-4,-31],[-11,-32],[-9,-21],[-4,-30],[-3,-29],[-7,-24],[9,-38],[10,-42],[12,-20],[14,-11],[16,-2],[13,1],[-3,-33],[9,-31],[8,-33],[20,-22],[13,-8],[14,-2],[-1,-37],[0,-25],[5,-27],[12,-28],[-8,-18],[-18,-22],[-14,-22],[-10,-21],[-21,-29],[-12,-24],[-32,-25],[-41,-20],[-18,-4],[-26,-8],[-21,-5],[-18,-10],[-13,-12],[11,-22],[11,-13],[33,-28],[12,-11],[12,-27],[6,-33],[11,-30],[12,-36],[4,-26],[-5,-27],[-2,-33],[6,-36],[9,-28],[8,-22],[7,-54],[13,-32],[10,-17],[11,-14],[16,-14],[3,-48],[-1,-42],[12,-27],[24,-25],[12,-7],[13,-8],[33,-30],[20,-19],[9,-17],[17,-21],[14,-17],[49,-28],[17,-2],[38,-5],[50,13],[11,14],[18,5],[16,9],[29,25],[18,12],[22,-9],[13,-8],[17,-8],[13,-10],[5,-41],[4,-56],[8,-28],[9,-24],[13,-39],[9,-20],[17,-24],[17,-24],[11,-15],[16,-27],[8,-38],[3,-32],[-3,-37],[-20,-62],[-20,-34],[12,-21],[24,-55],[31,-24],[32,-36],[21,-10],[22,-1],[23,-4],[12,-43],[12,-22],[9,-33],[5,-40],[6,-36],[11,-49],[16,-12],[28,-4],[38,-19],[32,-25],[14,-43],[24,-24],[27,-37],[17,-41],[48,-44],[19,-25],[25,-30],[20,-48]],[[33890,80768],[-18,0],[0,-29],[-161,1],[-49,0],[-49,0],[-11,0],[-5,0],[-13,1],[-4,0],[-217,2],[-161,-10],[-78,-1],[-6,3],[-30,17],[-198,-4],[-333,1],[-156,4],[-130,2],[-115,2],[-168,3],[-37,0],[-37,0],[-230,4],[-25,-5],[-28,0],[-117,-1],[-129,0],[-225,4],[-118,1],[-332,2],[-21,0],[-75,1],[-162,-13],[-17,1],[-3,0],[-59,1],[-55,2],[-53,2],[-27,1],[-5,0],[-21,0],[-1,0],[-16,1],[-32,1],[-47,-6],[-43,-8],[-15,0],[-51,-1],[-17,0],[-4,0],[-26,0],[-244,1],[-32,0],[-4,0],[-8,1],[-57,1],[-20,0],[-58,0],[-5,0],[-21,0],[-23,0],[-44,1],[-88,2],[-105,0],[-11,0],[-2,0],[-42,-1],[-69,-1],[-67,6],[-24,-1],[-51,-1],[-25,-1],[-18,0],[-18,1],[-80,2],[-389,10],[-31,1],[-8,0],[-3,-1],[-15,0],[-29,-2],[-12,-2],[-5,-1],[-9,-2],[-5,-1],[-5,1],[-8,2],[-5,0],[-80,1],[-24,0],[-15,0],[-37,1],[-44,1],[-42,0],[-53,0],[-59,0],[-8,0],[-59,0],[-63,2],[-11,0],[-2,1],[-51,0],[-100,0],[-28,0],[-43,0],[-32,0],[-12,-1],[-12,0],[-29,-2],[-65,5],[-4,0],[-6,-1],[-53,-1],[-8,0],[-5,0],[-22,0],[-25,0],[-24,0],[-23,0],[-20,0],[-14,-1],[-8,0],[-73,-4],[-31,-1],[-54,-1],[-15,0],[-31,0],[-22,0],[-13,-1],[-10,1],[-21,0],[-10,0],[-8,0],[-9,0],[-1,0],[-3,0],[-13,0],[-38,1],[-4,0],[-8,0],[-8,0],[-12,1],[-19,2],[-9,0],[-7,0],[-64,0],[-5,1],[-10,0],[-48,-1],[-84,2],[-21,1],[-12,0],[-6,1],[-6,0],[-42,-2],[-55,-2],[-31,-1],[-100,-2],[-9,-1],[-10,0],[-50,-3],[-12,0],[-2,0],[-6,0],[-53,0],[-23,-1],[-6,0],[-21,0],[-60,-6],[-84,-3],[-79,10],[-48,0],[-16,1],[-19,0],[-33,0],[-55,0],[-32,-7],[-14,-3],[-10,0],[-13,0],[-13,3],[-46,-1],[-2,0],[-38,-2],[-40,6],[-17,0],[-11,1],[-7,0],[-10,0],[-6,1],[-11,1],[-15,0],[-17,1],[-15,1],[-16,1],[-13,1],[-31,0],[-17,0],[-20,0],[-9,0],[-17,0],[-14,0],[-9,0],[-8,-1],[-21,0],[-21,0],[-24,0],[-28,0],[-4,0],[-19,0],[-23,0],[-3,0],[-13,1],[-20,1],[-189,-6],[-9,-1],[-23,-2],[-9,0],[-25,1],[-17,0],[-20,0],[-30,1],[-18,2],[-37,3],[-7,0],[-8,0],[-15,1],[-13,0],[-21,1],[-13,-1],[-16,-1],[-12,2],[-8,1],[-21,1],[-26,1],[-40,1],[-6,-2],[-5,-1],[-1,-1],[-17,0],[-11,0],[-5,0],[-9,0],[-12,0],[-7,0],[-7,1],[-16,0],[-20,3],[-16,0],[-27,0],[-6,0],[-10,0],[-10,0],[-6,0],[-12,0],[-13,0],[-13,0],[-12,0],[-7,0],[-6,0],[-22,-1],[-27,-5],[-1,0],[-14,0],[-22,0],[-26,0],[-14,0],[-13,0],[-12,0],[-19,0],[-19,0],[-14,0],[-14,0],[-20,0],[-2,0],[-18,0],[-11,0],[-1,0],[-4,0],[-16,-1],[-15,-1],[-25,-1],[-20,0],[-12,0],[-26,0],[-24,0],[-9,-1],[-4,0],[-2,0],[-14,-1],[-4,1],[-2,1],[-1,0],[-5,0],[-3,0],[-5,0],[-13,0],[-14,0],[-1,0],[-10,0],[-17,0],[1,-7],[0,-23],[0,-9],[0,-9],[1,-8],[0,-5],[0,-1],[0,-5],[-13,0],[-4,-1],[-16,-1],[-8,-1],[-6,0],[-10,-1],[-3,0],[-19,-1],[-27,-3],[-15,-2],[-11,-1],[-4,1],[-1,2],[-4,4],[-1,1],[-1,2],[-2,3],[-5,-1],[-6,-1],[-26,-3],[-12,-1],[-20,-8],[-4,-1],[-3,-1],[-21,-2],[2,-7],[5,-17],[4,-13],[3,-11],[6,-22],[1,-5],[13,-30],[9,-23],[19,-48],[5,-13],[29,-72],[1,-3],[5,-11],[8,-5],[11,-7],[55,-35],[3,-9],[1,-4],[8,-22],[2,-5],[3,-8],[-8,-24],[-4,-13],[-2,-5],[-6,-18],[-8,-24],[-6,-5],[-4,-2],[-13,-10],[-9,-7],[-6,-4],[-9,-7],[6,-17],[7,-21],[5,-13],[6,-17],[9,-25],[-4,0],[-1,0],[-20,0],[-4,0],[-17,1],[-3,1],[-1,0],[-6,0],[-5,-2],[-7,0],[-1,0],[-4,1],[-6,1],[-5,0],[-1,0],[-9,0],[-8,-1],[-28,3],[-17,0],[-19,0],[-28,0],[-24,0],[-18,4],[-21,-3],[-40,-1],[-7,0],[-7,1],[-8,1],[-26,2],[-33,-1],[-19,0],[-18,0],[-47,2],[-2,0],[-1,0],[-56,1],[-73,1],[-8,0],[-15,0],[-17,0],[-24,1],[-20,2],[-13,2],[-11,0],[-2,0],[-19,0],[-12,0],[-18,0],[-5,0],[-4,0],[-10,0],[-6,1],[-14,2],[-3,1],[-4,1],[-16,-5],[-11,0],[-2,0],[-7,0],[-36,0],[-1,0],[-4,0],[-8,0],[-18,-1],[-15,-1],[-5,0],[-25,4],[-25,-3],[-8,-1],[-3,0],[-13,0],[-2,0],[-8,1],[-4,0],[-9,0],[-14,0],[-6,0],[-8,0],[-10,0],[-4,0],[-17,1],[-3,0],[-25,0],[-2,0],[-4,2],[-1,0],[-26,0],[-11,2],[-23,3]],[[38572,86254],[0,-65],[0,-48],[0,-25],[0,-13],[0,-62],[0,-7],[0,-133],[0,-102],[0,-41],[0,-46],[0,-80],[0,-38],[0,-187],[0,-499],[-8,-291],[-1,-64],[1,-49],[4,-181],[1,-57],[3,-125],[-11,-328],[8,-299],[1,-37],[2,-99],[5,-185],[1,-59],[-2,-137],[0,-35],[-1,-53],[-1,-61],[0,-29],[-1,-25],[1,-190],[1,-26],[1,-167],[0,-36],[0,-24],[1,-79],[0,-65],[1,-95],[-13,1],[-74,1],[-431,6],[3,-133],[4,-227],[2,-101],[3,-78],[0,-135],[0,-24],[0,-104],[0,-1],[0,-324],[0,-1],[-1,-215],[0,-97],[0,-124],[-1,-160],[0,-32],[0,-26],[1,-72],[1,-102],[2,-194],[0,-6],[0,-41],[-1,-162],[-3,-236],[0,-44],[0,-60],[0,-1],[0,-98],[-1,-98],[0,-26],[-1,-286],[-3,-163],[12,-472],[1,-80],[1,-123],[0,-66],[3,-254],[0,-72],[2,-321],[1,-267],[2,-310],[0,-23],[-3,-145],[-2,-106],[-2,-127],[-3,-139],[-1,-34],[-2,-131],[-1,-43],[-111,-1],[-114,-2],[-29,1],[-55,-3],[-78,-3],[-267,-1],[-236,0],[-1,0],[-64,-1],[-27,-1],[-66,0],[-45,0],[-198,0],[-49,0],[-199,0],[-45,0],[-37,0],[-87,0],[-30,-1],[-10,0],[-38,-1],[-23,1],[-14,1],[-29,1],[-60,4],[-67,2],[-62,-2],[-98,-1],[-177,1],[-341,0]],[[35416,76030],[-5,48],[9,74],[17,61],[23,69],[12,33],[5,59],[5,43],[26,27],[14,65],[2,10],[11,15],[18,24],[8,26],[1,45],[13,56],[25,55],[15,32],[4,67],[4,23],[7,39],[-10,65],[-19,27],[-17,39],[-7,16],[-31,55],[-15,66],[-4,28],[-8,48],[-8,55],[-7,44],[-15,74],[-17,37],[-4,8],[-7,11],[-24,38],[-39,36],[-26,82],[-9,23],[-23,60],[8,71],[-6,27],[-8,37],[-20,101],[12,77],[11,61],[6,29],[5,21],[-1,17],[-1,18],[4,34],[7,23],[5,21],[3,28],[-1,34],[-1,11],[-6,34],[3,28],[2,40],[0,7],[3,18],[2,10],[0,31],[-1,38],[0,2],[1,29],[3,22],[0,3],[0,13],[1,22],[3,15],[1,11],[1,2],[7,21],[16,16],[2,2],[7,6],[8,7],[10,18],[-10,0],[-5,0],[-15,13],[-4,21],[-2,9],[-11,27],[-6,24],[-3,16],[-2,12],[-10,16],[-9,16],[-4,7],[-5,8],[-8,11],[-5,22],[-21,29],[-23,-5],[-18,8],[-33,30],[-23,20],[-25,17],[-15,12],[-16,9],[-7,4],[-19,22],[-14,28],[-16,34],[-6,11],[-7,15],[-7,40],[-14,9],[-16,7],[-20,-5],[-8,-2],[-7,4],[-12,6],[-14,20],[-8,1],[-11,0],[-12,2],[-13,2],[-8,6],[-13,9],[-22,21],[-14,-5],[-4,-1],[-1,0],[-20,-3],[-20,-2],[-15,7],[-5,3],[-21,17],[-6,2],[-21,7],[-6,4],[-11,7],[-11,12],[-18,9],[-16,5],[-29,9],[-51,30],[-32,25],[-9,2],[-27,5],[-27,-1],[-31,-14],[-20,-9],[-17,1],[-14,2],[-15,5],[-7,2],[-7,12],[-13,19],[-8,26],[-5,16],[-18,36],[-18,32],[-5,8],[-23,27],[-32,55],[-26,35],[-3,5],[-6,5],[-21,16],[-21,6],[-10,44],[-14,40],[0,31],[7,25],[2,31],[0,6],[-6,40],[-17,35],[-11,22],[-17,7],[-9,10],[-4,5],[-5,39],[-21,34],[-25,22],[-8,8],[-4,10],[-8,18],[-8,22],[-9,10],[-8,10],[-6,16],[-2,6],[8,21],[2,76],[-3,45],[8,23],[31,-12],[-5,40],[-6,23],[-11,38],[-2,9],[-11,40],[14,46],[4,32],[-10,23],[-4,7],[-12,16],[-34,18],[-21,12],[-5,3],[-13,36],[-23,32],[-18,22],[-14,14],[-9,10],[-18,12]],[[32633,85134],[53,26],[49,47],[17,15],[60,57],[14,34],[63,153],[5,13],[-11,134],[3,5],[46,77],[152,252],[147,114],[34,27],[170,100],[67,39],[68,51],[91,66],[48,37],[177,41],[26,6],[134,32],[106,-43],[118,-48],[115,-46],[217,-63],[202,-34],[193,-33],[136,-3],[75,-2],[34,-1],[60,-1],[15,-1],[87,-2],[12,0],[233,160],[73,50],[301,38],[39,5],[218,64],[2,0],[2,1],[1,1],[164,57],[199,48],[44,11],[357,87],[333,131],[186,57],[194,-100],[92,-60],[35,-23],[35,-24],[104,-68],[61,-53],[260,-224],[223,-87]],[[50246,71620],[-7,-105],[3,-5],[9,-15],[3,-4],[2,0],[5,0],[42,1],[1,0],[1,-7],[6,-20],[3,-9],[0,-8],[2,-30],[1,-15],[0,-6],[1,-1],[23,-17],[41,-22],[1,-4],[10,-59],[-4,-25],[-2,-15],[-13,-18],[-42,-61],[-3,-11],[-13,-38],[3,-34],[1,-6],[8,-42],[10,-27],[80,-84],[2,-31],[1,-12],[-13,-25],[-11,-20],[-33,-63],[-24,-46],[-15,-26],[1,-10],[1,-51],[46,-68],[3,-4],[34,-47],[27,-55],[6,-13],[0,-32],[-3,-18],[-10,-53],[-11,-34],[-3,-19],[-2,-46],[7,-22],[2,-7],[-6,-4],[-11,-10],[-29,-26],[-1,0],[-12,-11],[-6,-6],[-1,-2],[-15,-77],[-4,-21],[20,-27],[29,-23],[2,-2],[1,-4],[21,-112],[7,-33],[17,-88],[3,-11],[1,-1],[12,-16],[0,-12],[-1,-7],[-9,-26],[-2,-16],[-1,-19],[2,-12],[17,-32],[1,-1],[12,-30],[-2,-19],[-5,-15],[-8,-12],[-7,-8],[-1,0],[0,-1],[-24,-20],[-9,-14],[-1,-1],[-26,-60],[-4,-15],[0,-25],[2,-16],[4,-4],[10,-2],[17,4],[14,2],[13,-2],[0,-1],[10,-5],[8,-8],[1,-2],[0,-1],[8,-24],[6,-25],[0,-51],[-2,-11],[-9,-17],[-4,-7],[-17,-17],[-9,-6],[-17,-1],[-9,-4],[-38,-33],[-5,-6],[-6,-18],[0,-1],[0,-24],[2,-23],[0,-1],[8,-14],[3,-8],[0,-1],[2,-57],[-1,-10],[-35,-88],[-6,-9],[10,-48],[1,-1],[29,-15],[69,-57],[-1,-5],[-2,-30],[28,-107],[4,-11],[21,-63],[4,-4],[1,-2],[4,-13],[8,-22],[12,-24],[-37,-52],[-8,-9],[-5,-15],[0,-28],[2,-18],[4,-16],[4,-6],[9,-6],[23,-24],[12,-13],[6,-14],[16,-39],[5,-13],[3,-21],[0,-2],[1,-24],[-8,-106],[0,-4],[0,-20],[5,-23],[7,-12],[11,-21],[-1,-12],[-5,-14],[-12,-15],[-4,-6],[-10,-12],[-4,-2],[-1,-2],[-22,-34],[-7,-13],[0,-12],[4,-15],[8,-10],[6,-3],[37,-10],[1,0],[30,1],[11,-5],[3,-1],[16,-11],[19,-16],[30,-39],[0,-1],[12,-25],[5,-13],[1,-9],[0,-1],[2,-3],[12,-3],[17,6],[14,11],[8,12],[5,13],[1,7],[0,2],[0,44],[4,25],[11,29],[2,7],[7,9],[9,7],[1,0],[10,0],[4,-2],[0,-1],[7,-9],[37,-69],[21,-29],[5,-7],[31,-44],[1,-1],[37,-69],[0,-1],[11,-26],[29,-103],[-14,-65],[-1,-3],[0,-1],[-22,-70],[-5,-16],[-12,-15],[0,-1],[-38,-30],[-29,-15],[-11,-4],[-5,-1],[-28,-3],[-21,-5],[-55,-28],[-27,-24],[-7,-9],[-8,-21],[-5,-21],[-1,-3],[-6,-34],[-4,-33],[0,-16],[2,-18],[2,-11],[5,-14],[8,-10],[7,-4],[12,4],[17,2],[6,-4],[0,-1],[7,-12],[5,-12],[0,-1],[0,-1],[3,-14],[2,-11],[0,-1],[1,-42],[-14,-80],[0,-4],[2,-10],[8,-11],[16,-11],[10,-5],[3,0],[28,-5],[4,-2],[48,-17],[1,0],[34,9],[2,0],[20,-3],[20,0],[10,-6],[30,-24],[0,-1],[3,-9],[1,-18],[5,-23],[19,-64],[6,-15],[25,-28],[18,-18],[25,-21],[5,-5],[5,-2],[13,-6],[20,3],[4,0],[71,6],[7,-2],[1,0],[48,-18],[11,-10],[5,-7],[4,-11],[1,-1],[0,-1],[15,-138],[9,-106],[2,-17],[3,-7],[8,-9],[11,-6],[17,0],[17,-4],[4,-4],[2,-10],[-2,-71],[-2,-20],[0,-1],[2,-13],[3,-9],[42,-68],[8,-9],[6,-8],[5,-3],[11,-6],[23,-8],[38,-4],[22,7],[2,0],[24,5],[9,1],[1,0],[1,-1],[28,-6],[1,0],[2,-1],[28,-20],[54,-36],[0,-1],[39,-40],[6,-7],[21,-17],[9,-7],[6,-3],[4,-9],[20,-36],[1,-3],[0,-1],[0,-2]],[[51771,65872],[-1,0],[-54,1],[-357,1],[-307,1],[-589,3],[-46,0],[-8,0],[-18,0],[-218,1],[-18,0],[-13,1],[-102,1],[-254,3],[-18,1],[-175,2],[-138,2],[-65,1],[-69,1],[-20,0],[-449,6],[-199,3],[-16,0],[-414,6],[-62,1],[-22,0],[-142,2],[-150,-3],[-559,-8],[-147,-2],[-54,1],[-74,0],[-80,0],[-618,3],[-548,3],[-144,1],[-1,0],[-65,0],[-12,0],[-29,0],[-4,0],[-23,0],[-27,1],[-65,0],[-2,0],[-72,0],[-32,0],[-14,0],[-28,1],[-127,0],[-38,0],[-5,0],[-23,1],[-53,0],[-6,0],[-34,0],[-3,0],[-57,0],[-12,0],[-19,0],[-178,1],[-373,2],[-40,0],[-23,0],[-93,1],[-20,0],[-143,1],[-108,0],[-333,0],[-540,0],[-25,0],[-2,0],[-60,0],[-25,0],[-9,15],[-2,4],[-11,19],[-16,4],[-37,0],[-169,-1],[-53,0],[-130,0],[-23,0],[-227,0],[-123,0],[-79,0],[-94,-1],[-15,0],[-34,0],[-179,0],[-109,0],[-40,1],[-32,0],[-20,-2],[-94,1],[-342,-2],[-155,0],[-60,3],[-15,0],[-191,-3],[-170,-2],[-227,-4],[-579,2],[-110,2],[-98,-1],[-5,0],[-88,0],[-56,1],[-88,1],[-98,1],[-58,0],[-135,2],[-435,2],[-151,1],[-38,1],[-63,0],[-112,1],[-188,0],[-38,1],[-83,0],[-305,1],[-144,0],[-333,0],[-165,0],[-71,1],[-89,0],[-86,0],[-186,0],[-164,0],[-60,0],[-22,3],[-92,-2],[-17,0],[-34,0],[-53,0],[-16,0],[-127,0],[-383,1],[-63,0],[-99,0],[-2,0],[-224,0],[-60,0],[-291,1],[-102,2]],[[34642,65965],[9,7],[5,5],[11,11],[3,3],[15,14],[20,14],[2,3],[9,13],[6,15],[4,8],[18,42],[4,7],[19,42],[6,15],[7,18],[13,32],[11,33],[3,11],[3,12],[5,25],[5,24],[23,72],[6,15],[4,10],[5,19],[2,10],[4,25],[-1,30],[0,52],[-5,35],[-3,7],[-11,21],[-12,11],[-2,3],[-15,4],[-20,9],[-14,5],[-13,12],[-12,18],[-11,18],[-3,14],[-1,8],[-2,10],[-2,16],[-2,7],[-4,14],[-10,18],[0,5],[2,18],[10,24],[4,5],[7,9],[8,14],[4,7],[3,13],[6,22],[2,9],[5,23],[8,33],[10,37],[-2,28],[0,37],[4,11],[7,17],[5,17],[2,9],[24,9],[4,1],[17,6],[27,21],[5,7],[8,12],[14,23],[10,12],[8,11],[19,23],[4,6],[13,20],[9,28],[-3,12],[-3,16],[-2,10],[-2,13],[-7,36],[-2,11],[0,5],[-1,20]],[[34948,67422],[33,47],[12,11],[3,2],[20,10],[21,16],[11,14],[14,40],[18,31],[1,2],[16,14],[24,13],[9,4],[17,8],[12,9],[13,17],[5,13],[8,19],[11,26],[1,6],[2,22],[1,36],[0,1],[1,40],[-15,16],[-18,-2],[-6,0],[-31,2],[-26,5],[-14,-3],[-21,-9],[-18,-14],[-17,-7],[-15,5],[-16,14],[-20,16],[-16,9],[-11,8],[-5,4],[-17,30],[-10,19],[-11,16],[-13,9],[-20,14],[-4,3],[-23,14],[-18,14],[-17,16],[-21,23],[-13,26],[13,46],[14,26],[13,19],[1,2],[10,21],[-6,37],[-13,30],[-8,27],[-2,4],[-1,4],[-7,19],[-7,22],[-1,4],[-13,34],[-11,14],[-13,14],[-82,170],[-34,72],[-20,-4],[-9,-3],[-28,0],[-23,-2],[-38,5],[-12,3],[-17,4],[-21,2],[-9,-8],[-5,-4],[-8,-9],[-6,-9],[-3,-4],[-17,-17],[-22,-18],[-20,-18],[-33,-15],[-26,-7],[-12,-1],[-14,-3],[-43,-3],[-26,0],[-14,9],[-3,2],[-16,10],[-12,17],[-7,9],[-4,12],[-7,21],[1,58],[7,35],[1,6],[6,37],[3,24],[8,28],[10,27],[13,24],[12,18],[8,13],[21,37],[4,15],[5,21],[2,17],[1,12],[-2,54],[-10,38],[-6,18],[-4,10],[-13,40],[-1,3],[-7,20],[-10,26],[-8,30],[-2,5],[-6,21],[-7,23],[-2,16],[-2,10],[-1,21],[-1,25],[-1,28],[-15,40],[-9,21],[-5,32],[-1,23],[-17,26],[-15,26],[-1,5],[-3,27],[1,40],[-1,26],[-1,13],[0,26],[-1,26],[0,4],[0,7],[-2,40],[0,13],[-2,22],[1,21],[0,21],[0,19],[-1,23],[-2,37],[1,37],[-1,47],[-1,14],[-2,21],[-11,62],[-4,26],[-9,48],[-2,18],[-3,28],[0,28],[0,6],[2,34],[1,15],[1,20],[4,17],[1,8],[27,42],[29,30],[29,25],[19,9],[18,9],[10,2],[11,1],[11,-1],[5,-1],[9,-8],[5,-5],[35,-22],[46,-22],[17,-2],[13,3],[7,13],[4,8],[-1,7],[-6,40],[-5,32],[6,43],[8,31],[14,41],[3,16],[4,21],[1,22],[0,8],[0,12],[-1,27],[-6,42],[-2,10],[-4,19],[-10,19],[-7,13],[-1,13],[0,11],[19,17],[11,43],[17,18],[25,11],[20,13],[32,28],[17,4],[51,-19],[25,-11],[29,-12],[46,-21],[23,-16],[30,-22],[12,-9],[14,-10],[45,-33],[18,-5],[18,0],[25,0],[13,3],[28,4],[6,1],[32,14],[10,9],[16,13],[17,16],[6,6],[42,21],[35,10],[33,1],[29,1],[12,3],[3,1],[7,5],[8,6],[10,35],[-7,28],[-27,77],[0,5],[-4,30],[1,17],[0,6],[1,7],[9,42],[14,33],[18,26],[8,9],[30,37],[22,31],[20,28],[3,3],[16,18],[15,8],[5,3],[42,16],[29,11],[15,9],[11,6],[20,15],[2,1],[21,30],[20,32],[18,29],[9,15],[25,42],[23,25],[23,11],[10,2],[15,3],[117,-4],[24,-1],[16,-1],[32,-3],[44,-11],[33,-3],[48,-5],[-4,24],[-5,29],[-3,28],[-1,9],[-2,163],[4,61],[8,21],[23,32],[24,32],[27,25],[12,20],[7,49],[4,25],[-1,63],[-4,22],[0,3],[-3,61],[-13,29],[-2,4],[-16,18],[-26,31],[-4,11],[-5,12],[-3,11],[-3,9],[-11,22],[-9,17],[-10,22],[-10,23],[-7,24],[-7,23],[-7,40],[2,39],[1,9],[2,15],[0,40],[-8,30],[-7,16],[-4,10],[-1,6],[-8,22],[-2,33],[-2,30],[-3,12],[-3,13],[-23,14],[-38,6],[-6,0],[-7,4],[-11,5],[-54,29],[-28,12],[-29,11],[-18,9],[-23,11],[-16,-1],[-22,-46],[-13,-24],[-32,-63],[-22,-15],[-13,2],[-23,34],[-13,24],[-10,17],[-3,4],[-9,23],[-4,23],[-4,41],[-3,42],[-1,11],[-2,17],[-6,14],[-6,17],[-20,24],[-4,5],[-15,9],[-18,26],[-3,14],[-6,26],[-8,53],[-10,61],[-8,28],[-9,43],[-1,5],[-6,29],[-5,65],[1,31],[0,15],[-4,40],[-3,36],[-10,29],[-6,9],[-4,7],[-15,17],[-12,9],[-23,22],[-19,35],[-9,15],[-2,3],[-6,5],[-19,15],[-33,22],[-37,26],[-9,16],[-3,6],[-11,33],[-4,13],[-6,29],[-13,66],[-7,30],[-8,33],[-8,36],[-2,17],[-1,8],[-4,31],[0,2],[-8,39],[-8,15],[-13,21],[-8,10],[-11,14],[-14,35],[-5,30],[-3,11],[-7,27],[-5,8],[-6,12],[-18,14],[-18,10],[-21,16],[-15,23],[-14,44],[-4,15],[-9,38],[-5,42],[-4,27],[-9,74],[1,49],[3,71],[3,32],[2,16],[8,29],[12,27],[21,19],[28,9],[35,14],[24,10],[28,19],[11,9],[22,20],[13,9],[20,16],[14,9],[8,5],[24,6],[10,2],[36,6],[30,-3],[33,-6],[26,-9],[19,4],[20,24],[16,46],[15,37],[4,9],[13,26],[25,32],[2,2],[19,27],[11,43],[7,63],[3,16],[4,17],[10,31],[2,15],[3,20],[11,14],[1,0],[17,4],[5,1],[26,-1],[32,-1],[44,-16],[7,-3],[38,-20],[32,-3],[10,0],[10,0],[-6,38],[-11,19],[-3,5],[-1,15],[-1,22],[0,50],[2,43],[-1,19],[0,19],[4,22],[5,23],[6,14],[12,29],[19,39],[3,23],[-8,49],[-3,46],[7,11],[5,8],[-27,32],[-6,0],[-23,0],[-14,-1],[-20,-2],[-23,34],[-30,43],[-28,17],[-5,2],[-14,5],[-5,60]],[[38572,86254],[345,-87],[194,-49],[181,155],[81,78],[34,32],[7,6],[12,11],[174,15],[78,7],[34,-2],[66,-3],[65,-2],[12,-5],[353,-137],[78,-31],[94,-125],[38,-50],[49,-65],[115,-77],[192,-112],[614,-270],[25,-52],[86,-179],[25,-111],[32,-148],[6,-45],[20,-210],[23,-155],[3,-23],[-7,-87],[-2,-32],[0,-4],[-8,-101],[-1,-13],[7,-15],[72,-147],[47,-33],[69,-49],[71,-50],[331,57],[78,52],[37,24],[3,2],[21,28],[5,7],[22,28],[27,36],[28,36],[47,63],[83,97],[75,89],[24,28],[21,24],[76,92],[21,72],[12,41],[79,79],[189,190],[27,28],[161,58],[96,38],[196,83],[125,-22],[488,-142],[77,-33],[37,-15],[5,-2],[28,14],[149,75],[189,95],[31,15],[161,-54],[104,-172],[126,-208],[19,61]],[[34948,67422],[-103,0],[-101,-1],[-17,0],[-154,0],[-213,0],[-13,0],[-50,0],[-197,0],[-86,0],[-100,0],[-51,-1],[-438,0],[-223,2],[-36,0],[-25,-4],[-64,0],[-6,1],[-356,0],[-93,-1],[-65,0],[-51,-1],[-42,-1],[-112,-1],[-176,3],[-16,0],[-22,1],[-18,0],[-18,0],[-179,1],[-147,0],[-117,1],[-164,-3],[-17,1],[-17,1],[-47,-2],[-287,-8],[-75,-2],[-279,-5],[-404,-6],[-22,-1],[-84,-1],[-27,1],[-16,-1],[-104,6],[-171,1],[-276,2],[-38,0],[-52,-4],[-10,0],[-45,1],[-133,-1],[-77,1],[-46,-3],[-39,-2],[-24,-1],[-78,0],[-64,0],[-54,-1],[-93,0],[-106,-1],[-237,5],[-42,0],[-35,1],[-29,-10],[-120,-8],[-89,-3],[-104,-3],[-49,-2],[-285,-5],[-68,-1],[-22,0],[-199,-10],[-138,-7],[-175,-3],[-70,-2],[-118,1],[-33,1],[-16,1],[-23,0],[-34,1],[-35,0],[-75,2],[-39,3],[12,8],[8,9],[17,32],[17,41],[5,17],[0,1],[1,11],[3,16],[0,2],[0,32],[-3,18],[-3,11],[-1,5],[-30,116],[-18,62],[-3,6],[0,1],[-1,0],[-37,40],[-3,1],[-1,0],[-55,15],[-1,0],[-33,7],[-1,0],[-11,-2],[-5,-4],[-1,-2],[-11,-11],[-43,-1],[-123,2],[-1,0],[-38,-21],[-20,-11],[-26,-11],[-6,0],[-9,2],[-45,13],[-36,9],[-50,20],[-9,6],[-18,18],[-40,38],[-1,4],[-2,9],[-1,10],[-4,12],[-5,9],[0,1],[-11,17],[-17,22],[0,1],[-81,86],[-2,2],[-21,19],[-2,1],[-35,24],[-4,1],[-23,4],[-3,0],[-1,0],[-8,-2],[-4,-3],[-7,-10],[-7,-2],[-30,17],[-74,47],[-5,4],[-5,6],[-2,3],[-15,21],[-27,31],[-2,2],[-9,5],[-3,1],[-1,0],[-1,1],[-68,21],[-1,0],[-12,-4],[-68,-26],[-9,-4],[-9,-4],[-12,-7],[-39,-36],[-6,-9],[-3,-5],[-17,2],[-45,5],[-20,3],[-10,1],[-33,32],[-30,49],[-41,99],[-6,19],[-2,8],[-2,11],[-3,25],[-7,21],[-22,56],[-1,1],[-9,18],[-8,13],[-1,1],[-59,38],[-10,5],[-12,0],[-1,0],[-8,-6],[-8,-3],[-13,2],[-23,4],[-34,18],[-22,12],[-7,5],[-3,6],[-79,197],[-72,112],[-8,14],[-6,18],[0,1],[-5,25],[-26,93],[0,1],[-3,7],[-5,10],[-2,2],[-21,27],[-23,35],[-40,108],[0,7],[7,21],[2,11],[-1,16],[0,2],[-4,16],[-3,9],[-7,14],[-1,1],[-11,36],[-3,8],[-14,31],[-7,13],[-1,2],[-6,7],[-6,5],[-1,1],[-12,15],[-14,27],[-3,10],[-7,45],[-1,14],[2,22],[-1,37],[0,1],[-1,13],[-1,7],[-3,6],[-32,47],[-1,1],[0,1],[-9,10],[-8,5],[-1,0],[-22,6],[-42,9],[-12,2],[-24,-2],[-6,5],[-18,28],[-6,11],[0,1],[-5,6],[-6,3],[-23,13],[-5,1],[-30,10],[-10,3],[-2,0],[-17,0],[-27,-6],[-6,4],[-4,6],[-19,31],[-7,12],[-7,17],[-1,15],[5,12],[20,37],[1,5],[0,206],[0,13],[-10,170],[-1,17],[-5,19],[-7,12],[0,1],[-3,10],[0,20],[1,17],[1,21],[-6,63],[0,8],[-6,7],[-3,1],[-27,10],[-24,16],[-14,9],[-13,8],[-18,3],[-52,-4],[-9,7],[-15,29],[-2,5],[-6,9],[-6,3],[0,1],[-16,5],[-21,6],[-10,2],[-1,0],[-41,45],[-22,24],[-67,16],[-10,4],[-9,4],[-9,5],[-10,13],[-10,19],[-4,10],[-6,16],[-1,7],[-8,14],[-1,1],[-10,14],[-15,14],[-10,4],[-1,0],[-10,-2],[-12,-8],[-13,-13],[-12,-13],[-6,-4],[-6,-5],[-11,-5],[-12,1],[-89,24],[-16,14],[-2,2],[-41,49],[-56,9],[-16,7],[-9,13],[-1,1],[-31,43],[-12,22],[-17,37],[-9,37],[-30,61],[-2,3],[-10,14],[-22,21],[-14,3],[-19,0],[-15,-2],[-20,-6],[-26,0],[-18,4],[-9,5],[-10,10],[-3,8],[-2,11],[1,23],[1,11],[-4,8],[0,1],[-17,20],[-17,17],[-32,21],[-1,1],[-1,1],[-22,10],[-35,10],[-18,3],[-9,7],[-80,66],[-11,13],[-17,9],[-2,2],[-13,10],[-14,11],[-3,5],[-5,5],[-13,48],[-10,34],[0,46],[-7,11],[-1,0],[-2,3],[-51,60],[-5,6],[-41,35],[-9,11],[-20,44],[1,10],[4,10],[-11,64],[0,3],[-22,55],[-12,31],[-4,11],[-4,8],[-20,48],[-14,34],[-35,72],[-56,115],[-9,11],[0,1],[-2,1],[-80,72],[-2,2],[-37,19],[-10,15],[-2,7],[-1,4],[-16,60],[-2,8],[-6,24],[-29,17],[-1,4],[-6,70],[-2,6],[-11,36],[-4,12],[-3,-3],[-13,-11],[-5,1],[-4,4],[-4,14],[-1,15],[0,9],[1,11],[-19,25],[-24,26],[-10,7],[-5,2],[-1,0],[-9,-2],[-7,-3],[-6,3],[-23,16],[-45,39],[-31,43],[-37,49],[-6,-3],[-2,-11],[-26,10],[-26,15],[-4,4],[-13,76],[2,12],[5,16],[-38,13],[-52,36],[-5,34],[-19,40],[-7,11],[-7,1],[-4,-7],[-16,40],[55,136],[30,92],[-2,2],[-11,39],[-6,24],[1,26],[6,19],[4,11],[16,49],[10,30],[11,24],[2,4],[1,1],[29,58],[9,18],[5,6],[29,53],[33,71],[1,5],[-1,13],[-6,6],[-20,15],[-8,6],[-7,3],[-2,57],[15,-3],[5,-3],[17,-20],[3,-4],[5,-6],[3,-2],[5,1],[37,38],[41,114],[4,10],[45,148],[22,99],[44,21],[11,13],[6,17],[2,11],[-3,9],[-5,2],[-30,-3],[-9,1],[-49,5],[-4,4],[-2,8],[3,8],[9,7],[14,4],[25,4],[11,6],[2,3],[21,47],[0,2],[3,15],[-3,58],[-3,15],[-9,16],[-3,4],[-4,5],[-3,3],[-11,-3],[-5,-4],[-26,-31],[-3,-2],[-6,0],[-4,5],[-8,25],[0,26],[5,54],[1,6],[5,5],[26,14],[15,0],[3,-4],[1,-9],[0,-8],[-5,-14],[-4,-6],[-1,-7],[0,-8],[6,-8],[24,-18],[6,-4],[10,-4],[7,2],[5,4],[23,56],[2,5],[-1,88],[-4,11],[-42,64],[-6,3],[-21,5],[-10,-4],[-4,-7],[-1,-13],[-4,-9],[-9,-1],[-6,6],[-3,7],[-5,31],[0,26],[4,16],[8,22],[26,64],[23,25],[23,27],[47,16],[9,2],[6,5],[2,4],[2,64],[5,173],[0,59],[-1,32],[-4,10],[-27,62],[-6,7],[-6,36],[1,4],[0,6],[4,51],[-1,11],[-1,64],[0,1],[-2,65],[-1,41],[-9,15],[-10,12],[9,96],[47,97],[36,71],[33,124],[-15,18],[-18,0],[-56,1],[-26,-2],[-162,-1],[-65,0],[-125,1],[-64,0],[-1,47],[0,10],[1,236],[0,45],[-72,0],[-3,0],[-110,0],[-69,0],[-52,0],[-141,-1],[-154,-1],[-13,-1],[-57,-113],[-36,-66],[-55,-99],[-15,-30],[-1,-3],[-22,-22]],[[21186,76068],[-23,0],[-62,-1],[-116,0],[-23,0],[0,18],[0,31],[0,284],[0,57],[0,57],[0,43],[0,24],[-1,36],[0,31],[0,14],[1,28],[-1,160],[0,78],[0,68],[-1,47],[1,87],[0,110],[-1,130],[0,9],[0,33]],[[21186,76068],[-71,-64],[-44,-54],[-2,-1],[-1,-1],[-68,-34],[-1,0],[-2,0],[-63,9],[-24,6],[-33,9],[-87,24],[-17,11],[-45,29],[-45,29],[-15,-4],[-29,-8],[-48,-26],[-26,13],[-7,3],[-5,3],[-14,19],[-28,42],[-33,39],[-3,4],[-4,6],[-27,44],[-22,45],[-10,6],[-55,34],[-7,4],[-9,1],[-38,5],[-96,10],[-107,-6],[-21,-1],[-17,-3],[-33,-5],[-33,-5],[-2,0],[-35,12],[-3,1],[-2,2],[-14,25],[-21,34],[-7,23],[-44,146],[-33,74],[-23,35],[-28,45],[-2,3],[-2,0],[-30,9],[-10,3],[-15,-11],[-15,-12],[-59,-80],[-7,-9],[-24,-40],[-175,-147],[-23,-46],[-27,-59],[-3,-19],[3,-36],[0,-6],[-19,-22],[-22,-26],[-45,-123],[0,-109],[21,-84],[0,-4],[9,-102],[24,-118],[22,-51],[1,-10],[6,-64],[0,-10],[-7,-80],[-7,-19],[-20,-89],[-14,-44],[-4,-4],[-25,-31],[-7,-3],[-33,-15],[-28,5],[-9,2],[-102,15],[-60,2],[-40,1],[-68,-4],[-127,-19],[-28,-41],[-2,-2],[-55,-37],[-53,-67],[-3,-92],[0,-6],[28,-82],[18,-60],[8,-39],[16,-77],[26,-39],[42,2],[13,0],[12,7],[36,19],[73,47],[36,6],[12,-5],[7,-3],[14,-6],[30,-31],[2,-5],[12,-29],[9,-24],[10,-65],[-8,-44],[-5,-21],[2,-16],[5,-60],[30,-141],[7,-29],[5,-57],[3,-35],[2,-22],[8,-13],[45,-77],[86,-102],[30,-32],[2,-6],[5,-23],[-9,-50],[-35,-67],[-37,-18],[-32,10],[-37,9],[-72,52],[-36,-2],[-21,-9],[-15,-6],[-30,-15],[-22,-11],[-16,-33],[-3,-8],[-12,-32],[-7,-18],[-15,-93],[1,-61],[0,-15],[1,-52],[3,-11],[26,-87],[2,-6],[12,-29],[14,-15],[9,-10],[2,-1],[4,-3],[59,-39],[79,-51],[17,-11],[10,-17],[5,-9],[17,-30],[15,-65],[9,-59],[25,-21],[82,-115],[47,-66],[12,-34],[4,-20],[3,-16],[-10,-38],[-8,-13],[-2,-2],[-45,-29],[-15,-15],[-22,-23],[-5,-5],[-20,-28],[-9,-13],[-23,-56],[-3,-9],[-9,-21],[-10,-24],[-14,-19],[-19,-26],[-11,-16],[-5,-7],[-5,-4],[-12,-8],[-5,-4],[-1,1],[-73,13],[-36,49],[-38,24],[-84,-24],[-51,-45],[-37,-48],[-17,-75],[0,-87],[-1,-10],[-6,-16],[-9,-23],[-35,-60],[-68,-65],[-82,-49],[-24,-18],[-15,-12],[-19,-29],[-4,-7],[-21,-32],[-26,-70],[-1,-13],[-1,-3],[-2,-21],[-1,1],[-5,0],[-4,0]],[[18467,71772],[-25,0],[-3,0],[-249,-2],[-317,-2],[-100,-1],[-228,-3],[-125,0],[-17,0],[-65,0],[-44,0],[-159,2],[-104,1],[-170,1],[-45,0],[-42,0],[-29,0],[-34,0],[-4,0],[-97,-1],[-125,0],[-231,2],[-24,1],[-42,0],[-35,0],[-61,0],[-62,0],[-21,0],[-93,1],[-23,0],[-91,1],[-71,-1],[-35,0],[-334,0],[-66,-1],[-24,1],[-48,-1],[-90,1],[-60,0],[-29,0],[-23,1],[-20,2],[-33,-2],[-45,0],[-89,-1],[-30,0],[-45,1],[-73,-1],[-54,-2],[-150,1],[-48,2],[-80,0],[-96,-1],[-23,1],[-17,0],[-21,-1],[-107,0],[-91,0],[-42,0],[-1,0],[-97,0],[-76,1],[-33,0],[-1,0],[-84,1],[-121,1],[-114,1],[-6,0],[-18,0],[-15,0],[-11,0],[-8,0],[-12,0],[-27,0],[-30,0],[-12,0],[-24,0],[-19,0],[-16,0],[-13,0],[-76,-1],[0,5],[-10,3],[-140,9],[-39,2],[-42,-1],[-182,-5],[-69,2],[-25,1],[-40,2],[-42,2],[-29,1],[-20,1],[-36,-2],[-20,-2],[-105,1],[-30,0],[-42,0],[-31,0],[-28,0],[-1,0],[-51,0],[-157,-1],[-114,4],[-27,0],[-17,-1],[-68,-1],[-30,0],[-49,1],[-16,-2],[-7,1],[-24,1],[-24,1],[-3,0],[-24,-3],[-383,3],[-73,0],[-95,-2],[-136,-1],[-15,0],[-26,1],[-185,2],[-64,0],[-115,-1],[-71,0],[-31,0],[-16,0]],[[34642,65965],[-14,0],[-7,-3],[-9,-4],[-7,-28],[-9,-25],[-1,-38],[-11,-14],[-7,-9],[-34,-9],[-15,0],[-4,0],[-18,2],[-11,4],[-1,1],[-16,0],[-4,-1],[-20,-2],[-14,-2],[-19,-6],[-20,-10],[-15,-3],[-13,-7],[-11,-7],[-7,-4],[-18,-18],[-20,-21],[-24,-14],[-8,-1],[-21,-2],[-15,0],[-6,-32],[-9,-18],[-28,-14],[-14,-20],[-14,-9],[-28,4],[-15,3],[-16,2],[-23,0],[-24,-7],[-20,-4],[-15,-26],[-17,2],[-8,4],[-7,3],[-5,-36],[-1,-3],[9,-42],[8,-21],[0,-26],[-17,3],[-10,-9],[-7,-8],[-2,-6],[-3,-17],[-6,-3],[-14,-6],[-12,-12],[-16,-28],[-11,-19],[-17,-16],[-7,-30],[4,-28],[4,-38],[2,-20],[-3,-11],[-3,-10],[10,-13],[7,-8],[21,-14],[14,-12],[-3,-8],[-4,-15],[-11,-16],[-11,-14],[-4,-6],[-8,-11],[22,-35],[20,-32],[5,-7],[13,-23],[8,-12],[13,-21],[7,-21],[-1,-8],[-1,-15],[10,-4],[3,-1],[2,1],[10,1],[17,-3],[3,-1],[13,14],[4,-7],[10,-16],[7,-19],[4,-9],[12,-21],[-3,-26],[14,-14],[16,19],[13,21],[37,-31],[12,-11],[8,-27],[-4,-29],[5,-23],[7,-16],[4,-10],[25,-7],[13,-5],[13,-2],[13,19],[13,-6],[16,-4],[22,-7],[18,-4],[21,4],[5,8],[16,30],[13,19],[9,13],[10,6],[3,1],[17,-11],[12,-17],[9,3],[7,2],[6,5],[13,11],[9,9],[2,3],[4,-23],[8,-28],[3,-9],[6,-17],[21,-37],[4,-28],[1,-3],[7,-20],[8,-21],[8,-21],[13,2],[12,2],[12,0],[14,-9],[11,-19],[15,-11],[3,-31],[1,-2],[12,-19],[4,-25],[-10,-14],[-8,-12],[-14,-4],[-15,2],[-21,2],[-13,3],[-7,0],[-16,2],[-13,-1],[-5,1],[-12,1],[-4,-7],[-9,-16],[-24,-21],[-7,-19],[-4,-9],[-1,-3],[-5,-23],[-4,-11],[-8,-18],[-3,-9],[-5,-15],[1,-16],[0,-16],[11,-18],[-8,-13],[-7,-9],[-14,-21],[-14,-2],[-4,-1],[-12,0],[-7,-9],[-13,-15],[-10,-14],[-5,-7],[-16,-8],[-8,-4],[-17,-3],[-16,-15],[-18,-6],[-1,0],[-12,-6],[-7,-5],[-9,-7],[-10,-21],[-3,-25],[-1,-9],[-22,-19],[-7,-14],[-4,-7],[-3,-22],[-2,-11],[-3,-7],[-15,-37],[-9,-18],[-7,-26],[-20,-23],[-5,-35],[5,-28],[-8,-42],[-17,-19],[-8,-7],[-8,-7],[-4,-8],[-9,-17],[19,-14],[22,-7],[34,-21],[21,-21],[12,-14],[0,-10],[-1,-20],[-5,-21],[-1,-5],[-3,-23],[10,-60],[-7,-29],[-2,-44],[2,-42],[-2,-5],[-12,-30],[-13,-11],[-16,-14],[-7,-5],[-17,-14],[-10,-19],[-3,-10],[-3,-11],[10,-37],[1,-27],[0,-8],[4,-25],[1,-13],[3,-29],[7,-26],[1,-4],[15,-18],[6,-8],[16,-12],[5,-29],[1,-6],[10,-16],[-7,-19],[8,-21],[19,-13],[10,-10],[5,-4],[6,-28],[11,-10],[15,-30],[5,-7],[10,-14],[3,-35],[13,-2],[1,-51],[-4,-20],[-47,-54],[-28,-33]],[[34215,62667],[-48,0],[-38,0],[-16,0],[-5,0],[-91,0],[-25,0],[-12,0],[-8,0],[-12,0],[-22,0],[-19,0],[-11,0],[-9,0],[-144,1],[-26,0],[-21,0],[-133,0],[-373,1],[-617,1],[-45,0],[-54,0],[-82,1],[-95,0],[-16,0],[-136,0],[-20,0],[-15,3],[-1,0],[-13,1],[-5,7],[-17,22],[-13,7],[-18,27],[-3,6],[-17,35],[-2,4],[-17,9],[-7,29],[-5,23],[-2,2],[-9,14],[-14,-8],[-11,-13],[-3,2],[-11,4],[-54,20],[-99,-76],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-38,-8],[-2,0],[-2,0],[-2,0],[-2,0],[-1,1],[-27,8],[-38,-37],[-1,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-2,0],[-3,0],[-2,0],[-2,1],[-2,1],[-1,0],[-16,9],[-25,0],[-32,-14],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-36,8],[-2,1],[-2,1],[-2,1],[-2,1],[-2,2],[-2,1],[-51,54],[-130,-24],[-32,-42],[-2,-3],[-2,-2],[-2,-1],[-2,-2],[-25,-16],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-10,3],[-79,19],[-40,-33],[-2,-1],[-2,-2],[-3,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,1],[-3,0],[-2,1],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-1,2],[-1,1],[-23,36],[-1,1],[-2,3],[-1,3],[-1,3],[-2,4],[-1,3],[-1,4],[-1,3],[-1,4],[0,4],[-1,4],[0,4],[0,4],[0,4],[0,5],[0,4],[0,4],[1,4],[0,4],[1,1],[7,35],[-77,32],[-2,0],[-2,2],[-2,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-55,64],[-25,-8],[-1,0],[-2,-1],[-2,0],[-48,0],[-2,0],[-3,1],[-2,0],[-2,1],[-2,1],[-2,2],[-46,35],[-2,2],[-41,37],[-61,0],[-1,0],[-1,0],[-2,0],[-3,1],[-36,15],[-33,13],[-2,1],[-2,1],[-1,1],[-85,62],[-87,61],[-62,18],[-18,13],[-9,6],[-25,17],[-12,8],[-40,26],[-20,14],[-7,4],[-3,2],[-32,20],[-2,3],[-8,15],[-36,69],[-25,26],[-21,22],[-7,7],[-19,20],[-1,2],[-46,46],[-5,5],[-13,23],[-7,12],[-19,32],[0,1],[-8,7],[-3,2],[-2,3],[-28,17],[-13,6],[-35,14],[-35,6],[-44,-3],[-14,-11],[-20,-17],[-8,-31],[-9,-29],[-2,-19],[-6,-40],[-9,-15],[-10,-18],[-22,-15],[-28,-9],[-33,-11],[-29,-43],[-24,-35],[-41,0],[-6,-4],[-29,-16],[-22,-42],[-17,-16],[-21,-18],[-9,-15],[-12,-18],[-21,-21],[-16,-15],[-45,-30],[-20,-17],[-10,-8],[-29,-11],[-12,-5],[-15,-56],[-65,-37],[-43,-24],[-29,-29],[-49,-48],[-65,-2],[-62,-2],[-139,80],[-40,41],[-62,64],[-9,120],[-1,17],[-71,149],[-19,63],[-8,14],[-9,17],[-37,56],[-1,3],[-10,1],[-13,12],[-7,6],[-15,14],[-8,7],[-4,20],[-2,14],[-3,16],[0,2],[-9,13],[-3,5],[-33,39],[-5,5],[-41,47],[-8,9],[-9,11],[-46,16],[-34,13],[-2,1],[-2,1],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-1,3],[-1,2],[-23,47],[-1,1],[-1,3],[-1,4],[-2,3],[-1,4],[0,3],[-1,4],[-1,4],[0,4],[-1,2],[-5,67],[-16,99],[-29,54],[-54,84],[-40,41],[-63,32],[-51,4],[-1,0],[-2,0],[-125,28],[-2,0],[-3,1],[-2,2],[-142,94],[-30,-1],[-51,-2],[-43,-50],[-1,-1],[-1,-2],[-2,-2],[-2,-1],[-3,-1],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-50,0],[-51,-15],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-42,11],[-2,1],[-35,12],[-32,12],[-18,4],[-26,0],[-2,0],[-2,0],[-68,14],[-52,-14],[-2,-1],[-3,0],[-89,0],[-38,-42],[-2,-3],[-2,-1],[-2,-2],[-1,-1],[-44,-23],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-16,0],[-88,-4],[-3,1],[-2,0],[-2,1],[-2,0],[-2,1],[-52,25],[-22,0],[-41,-52],[-2,-3],[-2,-2],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,0],[-2,0],[-2,1],[-2,0],[-2,1],[-2,1],[-2,1],[-42,31],[-25,13],[-3,1],[-39,21],[-55,-12],[-8,-1],[-24,-45],[0,-1],[-8,3],[-32,23],[-34,7],[-6,2],[-7,-16],[-13,-26],[-7,-9],[-8,-1],[-25,5],[-12,2],[-14,11],[-7,6],[-17,19],[0,1],[-4,5],[-3,5],[-27,30],[-3,1],[-1,0],[-67,0],[-4,0],[-49,-33],[-5,-3],[-1,10],[-2,7],[-9,7],[0,1],[-9,4],[-18,2],[-124,2],[-48,-1],[-44,-22],[-2,-1],[-2,0],[-2,-1],[-2,0],[-66,2],[-6,0],[-60,-44],[-1,0],[-12,-2],[0,3],[-3,16],[-2,14],[0,3],[-2,12],[-3,1],[-2,0],[-2,1],[-1,1],[-1,0],[-1,1],[-28,20],[-15,11],[-53,-9],[-14,-2],[-17,-3],[-39,-38],[-1,0],[-78,-50],[-16,-8],[-4,-1],[-38,-7],[-47,15],[-87,31],[-2,1],[-76,17],[-30,46],[-5,7],[-8,94],[3,5],[15,33],[-1,3],[-15,33],[-102,63],[-29,9],[-51,-1],[-59,-2],[-3,0],[-2,1],[-1,0],[-12,4],[-40,13],[-57,18],[-1,0],[-2,1],[-2,1],[-1,1],[-6,4],[-6,5],[-1,0],[-2,2],[-2,2],[-2,2],[-139,0],[-5,5],[-15,13],[-23,35],[-2,8],[-7,24],[3,40],[-9,18],[-8,5],[-10,6],[-132,47],[-31,8],[-39,9],[-43,-1],[-11,0],[-14,2],[-7,2],[-43,8],[-13,4],[-8,2],[-20,6],[-21,24],[-12,31],[-4,13],[-2,2],[-13,22],[-47,33],[-13,17],[-9,12],[-52,47],[-8,8],[-9,8],[-2,1],[-1,2],[-2,1],[-30,14],[-3,2],[-30,8],[-3,0],[-2,0],[-3,1],[-5,-1],[-47,-12],[-16,-3],[-25,-4],[-57,-8],[-17,-3],[-6,-1],[-55,-14],[-13,-9],[-6,-4],[-7,-20],[-5,-16],[-30,-26],[-23,-19],[-1,-1],[-2,0],[-3,0],[-10,-2],[-2,0],[-2,-1],[-15,-6],[-2,-1],[-2,-1],[-28,-17],[-25,-16],[-15,-9],[-56,-13],[-15,-3],[-114,-49],[-1,-1],[-3,1],[-75,1],[-63,-16],[-4,-4],[-14,-13],[-5,-6],[-12,-4],[-25,-9],[-38,-14],[-137,57],[-168,89],[-31,71],[-1,2],[-19,39],[-1,3],[-2,3],[-1,1],[0,1],[-35,89],[-28,33],[-8,9],[-2,0],[-21,3],[-37,-64],[-2,1],[-2,1],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,-1],[-2,-1],[-23,-11],[-6,-3],[-67,0],[-2,0],[-26,-15],[-30,-10],[-3,-2],[-9,-2],[-26,-1],[-33,0],[-18,4],[-9,5],[-21,14],[-50,33],[-28,15],[-20,11],[-6,6],[-15,12],[-19,12],[-58,12],[-28,3],[-1,-2],[-13,-16],[-5,-18],[-1,-5],[7,-30],[-6,-9],[-5,-10],[-7,2],[-35,9],[-21,0],[-5,-1],[-41,-16],[-13,-3],[-12,-2],[-16,32],[-1,24],[-17,17],[-5,2],[-12,4],[-23,-8],[-26,-10],[-16,1],[-14,1],[-6,7],[-11,11],[-22,-3],[-21,-3],[-51,-47],[-36,-74],[-2,-4],[-9,-4],[-9,-3],[-18,-15],[-6,-5],[-9,-7],[-1,-3],[-5,-11],[-5,-12],[-17,-81],[-2,-10],[-15,-18],[-4,-1],[-2,-1],[-11,-5],[-29,2],[-6,0],[-3,-7],[-9,-22],[-17,-34],[-4,-8],[-20,-27],[-7,-10],[-11,-29],[-10,-27],[-3,-7],[-14,-6],[-63,-25],[-29,-5],[-14,1],[-34,3],[-6,0],[-5,1],[-7,5],[-9,5],[0,1],[-19,50],[-7,6],[-19,16],[-35,8],[-22,-22],[-1,-1],[0,-1],[1,-10],[4,-54],[-7,-74],[-1,-7],[-8,-45],[-5,-30],[-3,-16],[0,-1],[-9,-15],[-6,-9],[-20,-29],[-1,-1],[-74,-51],[-44,-7],[-15,-2],[-24,-1],[-39,-2],[-29,-10],[0,-1],[-4,-4],[-11,-12],[-2,-10],[-2,-9],[-2,-7],[0,-6],[3,-28],[1,-8],[2,-21],[1,-12],[-2,-9],[-4,-16],[-13,-18],[-6,-7],[-30,-28],[-32,-18],[-4,-3],[-26,-14],[-12,-8],[-4,-13],[-7,-24],[-12,-25],[-20,-18],[-11,-12],[-9,-9],[-2,-2],[-7,-4],[-7,-3],[-22,-6],[-6,-2],[-26,-25],[-12,-9],[-11,-13],[-25,-31],[-1,-37],[-9,-20],[-2,-5],[-21,-18],[-10,-8],[-16,-16],[-2,-1],[-38,-30],[-31,-22],[-3,-2],[-4,-4],[-9,-9],[-21,-30],[-18,-23],[-26,-11],[-5,2],[-11,5],[-13,-10],[-7,-5],[-11,-21],[-3,-5],[-14,-44],[-10,-9],[-8,-7],[-11,-18],[1,-25],[-4,-13],[-2,-9],[-35,-22],[-13,11],[-7,10],[-4,6],[-2,-1],[-19,-5],[-2,-11],[-4,-13],[-2,-25],[0,-4],[-15,-25],[-14,-24],[-6,-9],[-8,-13],[-24,-20],[-17,-9],[-9,-3],[-15,-3],[-24,-4],[-30,9],[-40,41],[-33,23],[-21,14],[-21,22],[-13,13],[-6,2],[-23,8],[-1,0],[-1,0],[-18,-4],[-18,-9],[-1,-1],[-23,-25],[-19,-43],[-2,-4],[-22,-30],[-45,-47],[-5,-6],[-30,-33],[-13,-33],[-31,-105],[-1,-22],[-1,-11],[-2,-86],[-2,-7],[-7,-33],[-2,-8],[-2,-2],[-16,-21],[-34,-10],[-52,-16],[-1,-1],[-9,-7],[-14,-13],[-4,-3],[-2,0],[-66,-4],[-30,9],[-30,-4],[-17,-30],[2,-38],[0,-5],[0,-2],[-4,-43],[0,-4],[-4,-4],[-13,-12],[-1,0],[-2,-1],[-13,-3],[-18,-3],[-29,-30],[-30,-32],[-4,-4],[-5,5],[-6,16],[-6,11],[-12,21],[-87,115],[-3,4],[-27,82],[-5,25],[-2,5],[0,4],[0,8],[2,17],[3,19],[15,83],[5,34],[27,126],[12,58],[0,11],[0,2],[-2,50],[0,12],[0,4],[-1,5],[-6,36],[-3,17],[-36,81],[-28,42],[-10,3],[-20,7],[-11,3],[-4,-2],[-2,0],[-16,-6],[-46,-41],[-39,-52],[-2,-3],[-2,-1],[-20,-8],[-2,-1],[-7,7],[-9,8],[-26,24],[-32,31],[-10,11],[-23,23],[-8,36],[2,36],[4,31],[1,6],[6,40],[15,16],[14,27],[1,1],[2,8],[0,29],[-2,14],[-5,19],[-5,11],[-7,11],[-13,13],[-43,13],[-9,1],[-12,1],[-2,0],[-14,0],[-16,-2],[-2,0],[-14,-2],[-19,-14],[-1,-1],[-8,-7],[-3,-1],[-19,-8],[-3,-1],[-10,-5],[-14,7],[-26,13],[-1,0],[-2,3],[-11,20],[-5,8],[-2,22],[3,14],[2,12],[3,118],[-6,24],[-1,6],[-1,1],[-10,19],[-17,-1],[-29,-1],[-9,0],[-15,-11],[-32,-22],[-3,-6],[-8,-14],[-1,-2],[-19,-17],[-27,-26],[-5,-5],[-17,-3],[-19,-3],[-12,-2],[-3,2],[-53,42],[-2,1],[-51,19],[-32,2],[-27,2],[-5,2],[-2,0],[-13,4],[-6,2],[-13,5],[-53,19],[-57,38],[-3,11],[-23,96],[-2,9],[-1,6],[-3,13],[-3,4],[-30,37],[-30,17],[-13,10],[-35,26],[-2,-5],[-41,-78],[2,-16],[3,-26],[-3,-20],[-8,-20],[-1,-1],[-1,-2],[-5,-9],[-9,-4],[-3,-1],[-23,-4],[-21,-3],[-42,6],[-27,3],[-25,-3],[-11,-8],[-12,-9],[-28,-13],[-11,-5],[-4,-2],[-61,-4]],[[17559,64196],[-21,18],[-9,8],[-10,9],[-17,176],[9,124],[11,126],[0,3],[5,9],[13,25],[27,26],[39,38],[44,61],[30,48],[5,13],[9,20],[1,15],[3,42],[3,47],[1,0],[12,63],[43,86],[13,18],[16,22],[15,21],[14,5],[87,35],[92,44],[88,26],[60,45],[0,1],[30,69],[11,28],[3,14],[16,86],[3,45],[1,16],[-14,53],[-7,10],[-8,12],[-17,14],[-32,27],[-43,37],[-35,30],[-66,43],[-40,26],[-37,7],[-60,21],[-31,44],[-10,5],[-51,24],[-5,3],[-5,0],[-47,-1],[-48,-2],[-39,-18],[-70,5],[-12,1],[-19,9],[-5,22],[-3,13],[-8,15],[-13,21],[-5,9],[-2,0],[-35,6],[-23,9],[-1,0],[-52,-3],[-6,0],[-35,-12],[-39,-19],[-14,-7],[-23,5],[-9,2],[-47,32],[-32,21],[-29,52],[-5,16],[-8,25],[-3,47],[-5,98],[0,1],[-16,81],[1,98],[11,26],[-1,40],[-1,93],[-4,40],[0,2],[1,2],[17,49],[24,40],[11,18],[47,46],[14,1],[22,0],[14,1],[11,-9],[52,-42],[5,-4],[15,-12],[85,-41],[20,6],[20,6],[27,19],[13,9],[1,9],[4,57],[2,33],[1,3],[0,4],[1,4],[3,16],[3,37],[10,105],[10,44],[1,5],[11,63],[12,45],[12,50],[5,13],[8,25],[9,22],[34,49],[17,25],[18,26],[3,3],[14,12],[11,57],[2,11],[28,144],[12,67],[3,15],[8,25],[6,18],[36,116],[16,33],[37,36],[46,23],[7,3],[50,51],[65,83],[2,30],[-3,36],[-42,73],[-13,62],[-11,24],[1,0],[2,1],[2,1],[11,5],[1,1],[2,2],[2,2],[2,1],[2,3],[17,9],[12,2],[72,-10],[2,0],[3,0],[2,0],[2,1],[66,26],[12,2],[59,-36],[1,-1],[59,-33],[1,0],[2,-1],[1,-1],[22,-7],[2,0],[1,-1],[12,-1],[2,-1],[3,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,1],[21,1],[1,1],[9,5],[78,39],[37,37],[82,83],[1,1],[2,1],[2,2],[2,2],[1,2],[1,1],[51,69],[16,16],[56,46],[38,25],[1,1],[11,9],[1,1],[2,2],[2,2],[9,12],[2,2],[2,1],[2,4],[1,2],[2,2],[1,4],[2,3],[1,3],[1,4],[1,3],[1,4],[1,4],[13,26],[3,7],[13,24],[28,55],[3,6],[15,51],[6,20],[16,136],[-2,24],[-11,22],[7,54],[7,52],[8,31],[6,19],[-2,79],[-3,91],[-4,22],[-5,25],[1,15],[2,58],[1,5],[6,21],[0,48],[-5,60],[-29,73],[-5,13],[-11,15],[-25,35],[-39,24],[-54,-2],[-34,-23],[-89,-26],[-7,2],[-26,5],[-19,16],[-4,8],[-5,13],[-3,7],[-1,16],[-5,56],[-16,58],[-16,59],[-32,159],[-25,75],[-24,70],[1,37],[1,28],[2,57],[-2,127],[10,153],[11,43],[9,33],[4,13],[18,58],[16,81],[10,87],[-3,42],[12,123],[4,67],[-6,60],[-1,19],[-2,17],[28,120],[9,38],[-6,53],[-1,12],[-2,17],[-5,45],[-10,42],[-16,48],[-12,33]],[[96054,71863],[1,-35],[-4,-25],[-7,-11],[-29,-41],[-3,-27],[-12,-25],[-15,-19],[-18,-28],[-5,-30],[-6,-22],[-8,-23],[-6,-16],[-15,-23],[-11,-14],[-14,-52],[-14,-45],[-18,-25],[-14,-21],[-17,-36],[-20,-25],[-14,-15],[-21,-35],[-24,-47],[-11,-20],[-24,-21],[-14,-8],[-15,-9],[-18,-16],[-12,-18],[-15,-24],[-28,-42],[-20,-28],[-24,-45],[-15,-44],[-9,-20],[-10,-23],[-13,-13],[-14,-15],[-22,-20],[-13,-11],[-36,-25],[-12,-7],[-15,-9],[-39,-29],[-15,-13],[-16,-15],[-10,-13],[-15,-33],[-4,-31],[-7,-23],[-12,-31],[-13,-23],[-14,-17],[-9,-20],[-4,-27],[9,-35],[18,-41],[4,-21],[1,-8],[8,-45],[-2,-35],[-14,-19],[-11,-20],[5,-36],[18,-61],[6,-84],[0,-68],[-15,-30],[-9,-21],[-13,-36],[-13,-35],[-15,-40],[-11,-30],[-13,-36],[-8,-23],[-11,-30],[-18,-45],[-9,-31],[-3,-8],[-12,-34],[-9,-40],[-3,-34],[-5,-32],[-1,-40],[9,-30],[10,-14],[13,-19],[26,-54],[19,-22],[22,-10],[1,0],[19,2],[22,17],[18,31],[11,20],[11,18],[9,24],[4,23],[4,25],[1,30],[5,23],[12,35],[12,19],[14,11],[22,10],[3,1],[26,4],[30,6],[14,-2],[26,-3],[17,-7],[11,-19],[-4,-32],[-7,-24],[-10,-30],[-13,-21],[-13,-25],[-7,-24],[-7,-26],[-9,-23],[-13,-26],[-13,-24],[-12,-24],[-5,-16],[-9,-28],[-22,-9],[-20,-11],[-15,-20],[-25,-35],[-48,-15],[-11,-14],[-21,-28],[-17,-47],[-6,-40],[9,-40],[40,-94],[12,-60],[5,-11],[7,-15],[11,-24],[10,-20],[10,-20],[14,-23],[13,-20],[21,-45],[25,-41],[17,-34],[14,-53],[12,-49],[5,-25],[11,-31],[2,-58],[-9,-27],[-9,-28],[-33,-60],[-21,-51],[-3,-65],[-3,-40],[-6,-44],[-5,-9],[-34,-59],[1,-43],[-8,-68],[-3,-29],[-13,-16],[-12,-31],[-6,-16],[-8,-22],[-10,-37],[-8,-45],[-16,-22],[-16,-107],[2,-25],[-1,-7],[-6,-30],[-16,-26],[-3,-28],[1,-46],[-4,-24],[-17,-41],[-13,-29],[-14,-26],[-10,-23],[-7,-18],[3,-36],[-14,-24],[-15,-24],[-13,-27],[-13,-37],[-10,-25],[-24,-64],[-5,-14],[-9,-21],[-14,-19],[-27,-20],[-37,-31],[-13,-6],[-20,-8],[-15,-7],[-19,-15],[-13,-32],[-8,-36],[-6,-29],[-24,-41],[-29,-43],[-14,-16],[-15,-18],[-22,-24],[-18,-10],[-9,-5],[-6,1],[-24,1],[-21,7],[-14,6],[-14,-2],[-1,-1],[-16,-19],[-2,-4],[-6,-14],[-5,-42],[7,-22],[9,-11],[7,-9],[7,-31],[0,-29],[-3,-31],[-5,-24],[-2,-8],[-7,-33],[-8,-32],[-14,-36],[-4,-9],[-11,1],[-4,-27],[0,-26],[-7,-35],[-4,-16],[-12,-14],[-5,-2],[-21,-7],[-23,-11],[-12,-31],[-7,-20],[-8,-20],[-8,-21],[-28,-72],[-28,-73],[-31,-80],[-30,-78],[-12,-31],[-17,-49],[-10,-33],[-10,-23],[-11,-21],[-23,-26],[-12,-7],[-14,-14],[-14,-13],[-11,-21],[-10,-21],[-7,-21],[-9,-21],[-6,-26],[-7,-21],[-5,-23],[-5,-23],[-5,-28],[-5,-38],[0,-27],[3,-26],[6,-28],[8,-28],[11,-23],[9,-31],[1,-25],[-4,-29],[-9,-34],[-11,-26],[-14,-32],[-11,-19],[-14,-14],[-12,-9],[-16,-5],[-16,-7],[-19,-4],[-13,-5],[-16,-7],[-16,-14],[-16,-21],[-13,-23],[-12,-14],[-14,-14],[-18,-7],[-1,0],[-27,-6],[-19,-3],[-9,-2],[-16,-5],[-12,-5],[-20,-10],[-20,-13],[-12,-5],[-13,-2],[-10,-3],[-28,-3],[-6,0],[-17,-8],[-16,-11],[-14,-10],[-12,-11],[-12,-19],[-11,-21],[-8,-21],[-16,-37],[-13,-14],[-13,-14],[-13,-12],[-25,-32],[-11,-14],[-19,-26],[-11,-11],[-18,-24],[-20,-23],[-14,-14],[-12,-14],[-11,-14],[-11,-12],[-25,-21],[-11,-11],[-16,-10],[-15,-9],[-18,-16],[-15,-9],[-12,-5],[-7,0],[-21,0],[-25,-2],[-18,1],[-18,7],[-29,8],[-18,3],[-31,1],[-6,-3],[-6,-3],[-18,-24],[-7,-33],[-9,-29],[-11,-22],[-20,-22],[-20,-6],[-7,0],[-26,3],[-23,4],[-23,3],[-17,-2],[-1,-2],[-11,-10],[-15,-16],[-82,-40],[-16,-40],[-43,-23],[-16,-11],[-35,-66],[-12,-146],[-25,-78],[-100,-48],[-49,-78],[6,-37],[16,-90],[-6,-109],[-21,-124],[8,-41],[3,-76],[-25,-70],[-52,-42],[-52,-31],[-14,-73],[-10,-23],[-27,-43],[-34,-55],[5,-48],[-8,-30],[-15,-49],[-3,-59],[12,-38],[15,-52],[-5,-62],[-22,-90],[-62,-43],[-67,-73],[-57,-94],[-1,-36],[-2,-97],[-8,-39],[4,-30],[8,-39],[10,-56],[-15,-65],[-25,-36],[-1,-68],[1,-94],[-29,-76],[-15,-40],[-11,-26],[-41,-111],[-28,-63],[-21,-12],[-25,-15],[-34,-25],[-14,-36],[-24,-75],[-22,-91],[-11,-36],[-11,-68],[0,-44],[0,-10],[-6,-59],[-18,-66],[0,-62],[-3,-50],[-3,-46],[-18,-80],[-2,-37],[4,-76],[3,-84],[2,-36],[-8,-23],[-8,-30],[-43,-62],[-9,-14],[-46,-71],[-26,-27],[-25,-25],[-54,-37],[-44,-65],[-4,-13],[-24,-86],[4,-49],[0,-3],[18,-32],[19,-32],[25,-50],[-2,-71],[-9,-89],[-4,-110],[-17,-63],[-20,-71],[-26,-87],[-17,-44],[-22,-57],[-50,-81],[-56,-73],[-76,-41],[-8,2],[-8,-4],[-13,3],[-17,3],[-22,4],[-24,-13],[-32,-17],[-5,1],[-7,-4],[-44,9],[-45,-81],[-20,-88],[-34,-49],[-23,-81],[4,-72],[-15,-82],[-15,-57],[-7,-22],[-12,-30],[-9,-25],[-9,-25],[-13,-18],[-13,-17],[-13,-54],[-15,-26],[-10,-16],[-13,-22],[-11,-12],[-23,-27],[-11,-14],[-12,-22],[-11,-17],[-17,-11],[-10,-1],[-6,-1],[-12,4],[-14,5],[-22,11],[-16,-1],[-3,-2],[-27,-16],[-33,-20],[-23,-10],[-22,-41],[-8,-42],[-2,-27],[1,-24],[1,-26],[5,-41],[11,-37],[21,-49],[9,-23],[8,-31],[6,-20],[5,-35],[3,-28],[-1,-33],[-1,-34],[23,-47],[11,-22],[8,-24],[3,-25],[8,-45],[7,-53],[4,-37],[6,-68],[1,-28],[-4,-34],[-11,-45],[-9,-55],[7,-34],[7,-20],[2,-46],[-3,-33],[-5,-32],[5,-34],[2,-26],[2,-26],[-6,-54],[7,-36],[-6,-41],[-7,-31],[-7,-24],[-9,-26],[-10,-40],[-12,-33],[-22,-29],[-17,-27],[-10,-23],[5,-37],[-19,-50],[-8,-49],[-4,-38],[-18,-50],[-6,-23],[-35,-43],[-17,-23],[-12,-24],[-29,-40],[-30,-27],[-33,-21],[-25,-17],[-11,-31],[1,-27],[0,-41],[-2,-25],[2,-31],[9,-23],[42,-130],[10,-29],[5,-39],[11,-29],[8,-34],[6,-36],[-2,-28],[5,-33],[14,-22],[12,-22],[11,-13],[6,-10],[5,-7],[16,-21],[10,-21],[15,-21],[20,-25],[12,-13],[26,-19],[12,-12],[8,-11],[10,-16],[48,-85],[11,-10],[24,-22],[24,-13],[19,-13],[18,-23],[27,-35],[17,-28],[10,-23],[8,-34],[10,-27],[21,-26],[18,-16],[22,-15],[13,-12],[14,-25],[25,-83],[19,-62],[6,-21],[14,-15],[11,-26],[3,-57],[-6,-21],[-8,-23],[-5,-48],[-2,-33],[-8,-23],[-17,-17],[-16,-8],[-18,-23],[-4,-33],[-11,-45],[-15,-20],[-11,-22],[-6,-30],[-1,-26],[0,-27],[-6,-23],[-22,-27],[-4,-46],[-16,-30],[-17,-15],[-21,-12],[-21,-9],[-4,-2],[-14,-9],[-15,-10],[-24,-11],[-21,-10],[-20,-20],[-12,-25],[-7,-50],[-6,-33],[-7,-31],[-8,-21]],[[90670,53761],[-12,0],[-27,1],[-36,-1],[-12,-1],[-24,1],[-22,0],[-81,0],[-168,0],[-358,0],[-180,0],[-118,0],[-94,1],[-539,-1],[-254,7],[-101,0],[-2,0],[-258,-2],[-399,-1],[-99,-1],[-200,-1],[-300,-1],[0,297],[-1,697],[1,182],[-1,327],[6,207],[-2,298],[-19,0],[-62,-1],[-106,-8],[-63,-2],[-40,1],[-2,282],[0,57],[-247,-4],[-1,328],[-496,-5],[-2,135],[0,60],[-1,119],[0,30],[-103,-2],[-135,-3],[-18,0],[0,24],[-1,261],[-1,50],[-105,-1],[-114,-1],[-91,-2],[-83,1],[-40,1],[-44,0],[-23,-1],[-252,-1],[-22,0],[-69,0],[-88,-1],[-307,-1],[-643,-4],[-75,-1],[-19,-3],[-35,-1],[-113,-1],[-23,0],[-93,-1],[-341,-3],[-126,-2],[-155,-1],[-20,-1],[-67,0],[-529,-6],[-41,1],[-295,1],[-36,0],[-849,2],[0,-319],[-363,0],[-28,-1],[-29,0],[-70,2],[0,-183],[0,-89],[0,-63],[-248,-3],[-1,-129],[-1,-157],[-2,-303],[-126,2],[-123,1],[1,-108],[2,-262],[0,-49],[-27,-1],[-222,-4],[-1,-335],[-185,2],[1,-161],[2,-174],[-9,0],[-8,0],[-43,0],[-1,-27],[0,-24],[-8,-284],[-67,0],[-175,0],[1,-148],[0,-166],[1,-24],[-177,-3],[-74,-4],[2,-96],[1,-28],[1,-53],[-2,-158],[-63,0],[-43,0],[-147,2],[0,-41],[-1,-56],[0,-236],[-2,-339],[-251,4],[-252,-4],[2,-340],[-251,0],[-61,0],[-37,0],[-131,0]],[[78179,52707],[-1,28],[-26,-1],[-102,-1],[-12,0],[-23,-1],[-70,-1],[-22,0],[-19,0],[-177,-1],[-92,-1],[-198,-1],[-312,-2],[-244,-2],[-49,0],[-133,-1],[-25,0],[-1,-33],[-30,1],[-78,1],[-18,0],[-37,1],[-19,0],[-63,1],[-26,0],[-132,-1],[-147,-1],[-6,0],[-22,0],[-270,-2],[-301,-6],[-105,0],[-358,0],[-155,0],[-1,218],[-1,141],[-1,148],[-27,7],[16,23],[4,31],[4,23],[4,23],[4,44],[2,33],[9,33],[10,27],[6,33],[13,-5],[23,10],[13,4],[12,19],[5,30],[9,40],[9,35],[5,25],[13,40],[8,32],[8,45],[11,46],[16,26],[10,14],[8,23],[8,39],[0,29],[5,48],[9,21],[16,38],[-5,30],[0,30],[17,19],[14,19],[10,20],[18,17],[13,2],[11,14],[23,22],[20,22],[15,26],[-5,23],[-6,21],[-7,44],[4,26],[0,25],[1,47],[-1,42],[3,28],[-7,30],[13,2],[18,7],[16,12],[16,7],[18,5],[17,16],[9,23],[14,26],[8,28],[7,51],[5,35],[3,33],[11,27],[16,28],[15,26],[18,16],[21,17],[15,4],[20,10],[17,2],[23,-5],[16,3],[14,2],[23,7],[15,9],[11,12],[14,7],[12,11],[11,19],[8,21],[-11,26],[8,30],[8,35],[8,21],[8,37],[5,26],[0,30],[-11,30],[-4,28],[-1,37],[1,26],[13,16],[17,10],[18,11],[16,7],[17,7],[19,2],[25,7],[21,10],[19,7],[23,11],[18,12],[19,9],[13,5],[12,2],[24,-7],[23,-23],[15,-16],[11,-12],[-10,26],[-7,21],[-2,25],[3,31],[-5,23],[-1,25],[-2,24],[-10,21],[-11,16],[-13,12],[-12,9],[-11,14],[-13,18],[-12,12],[-12,16],[-10,14],[-12,12],[-13,9],[-12,12],[-9,17],[-9,28],[-7,39],[-11,36],[-11,18],[-12,21],[-14,20],[-12,17],[-5,25],[6,21],[6,21],[10,21],[7,26],[-17,0],[-15,0],[-12,0],[-12,-5],[-14,-2],[-12,-10],[-13,-7],[-13,-9],[-1,23],[-2,24],[-7,23],[-8,23],[4,23],[9,19],[6,23],[-2,24],[6,25],[8,23],[14,14],[12,12],[9,19],[4,23],[14,14],[13,16],[-1,26],[2,23],[-9,18],[-2,39],[8,29],[23,33],[11,11],[16,19],[15,16],[11,17],[5,23],[-3,33],[-7,20],[-9,28],[6,21],[13,12],[11,14],[9,19],[6,21],[11,18],[1,23],[7,24],[-3,25],[-3,24],[-3,28],[-7,25],[-6,26],[4,25],[-5,24],[1,23],[0,26],[-6,23],[-9,21],[-3,28],[-2,23],[-2,26],[-2,25],[0,28],[1,23],[2,28],[3,24],[3,23],[4,23],[8,21],[8,19],[12,-3],[12,-14],[16,-11],[16,-7],[13,-7],[16,-16],[13,-17],[12,-11],[14,-5],[12,2],[11,17],[12,14],[14,9],[14,18],[8,19],[12,11],[13,10],[12,7],[15,7],[12,5],[14,2],[12,0],[14,0],[15,0],[12,-9],[14,-10],[12,5],[12,12],[14,9],[12,7],[14,0],[13,7],[15,7],[12,7],[12,12],[7,18],[9,21],[11,16],[12,0],[12,-9],[9,-19],[10,-20],[11,-14],[12,-3],[12,30],[11,28],[7,28],[11,19],[15,26],[14,25],[16,9],[12,13],[11,18],[10,21],[47,49],[12,25],[-10,26],[-8,28],[-18,18],[-11,24],[-12,21],[-9,23],[-11,28],[14,7],[15,4],[24,10],[19,11],[10,24],[13,28],[14,28],[-3,25],[-11,12],[-12,11],[-21,24],[-15,23],[-11,30],[-3,24],[-6,37],[4,30],[1,26],[-10,28],[-6,21],[-16,27],[-6,21],[-7,21],[-12,24],[-17,58],[-16,25],[-12,28],[-9,35],[-10,31],[8,18],[0,30],[-13,42],[2,35],[9,28],[13,47],[11,30],[13,37],[18,23],[7,24],[-18,35],[-11,23],[4,37],[-3,29],[-11,27],[2,30],[4,35],[13,17],[9,27],[11,38],[12,19],[38,60],[24,-23],[17,-5],[20,2],[6,33],[12,32],[14,14],[10,24],[14,17],[13,13],[-7,21],[-1,32],[11,26],[19,38],[13,18],[5,1],[10,1],[13,10],[13,23],[21,16],[-11,12],[-8,28],[4,37],[11,16],[5,26],[-6,28],[3,35],[15,42],[25,25],[2,35],[9,19],[11,18],[19,33],[29,40],[3,-28],[7,-28],[16,0],[53,2],[9,-19],[15,0],[11,-11],[3,-24],[13,-18],[16,-21],[15,14],[18,28],[1,23],[9,19],[19,18],[11,17],[10,18],[22,33],[-4,28],[15,18],[13,7],[-6,21],[-8,24],[1,23],[12,14],[19,23],[-10,14],[-5,42],[10,23],[14,20],[15,22],[12,16],[0,31],[2,28],[19,23],[17,37],[15,14],[10,35],[-9,28],[-58,89],[7,27],[10,28],[-7,26],[-19,19],[-10,18],[-10,25],[-11,29],[-8,35],[-8,18],[-10,26],[-14,16],[-20,21],[-15,9],[-14,10],[-12,7],[-15,7],[-12,9],[-28,16],[-15,14],[-24,3],[-16,4],[-13,-11],[-24,14],[-12,14],[-12,9],[-15,-2],[-10,16],[4,32],[-2,28],[-17,33],[-20,39],[-7,21],[-7,26],[12,33],[6,35],[-21,37],[-10,32],[1,33],[13,16],[5,28],[-2,23],[-7,21],[-1,24],[-8,32],[-16,14],[-19,14],[-21,14],[-24,16],[-12,10],[-15,9],[-12,5],[-9,21],[-6,32],[-1,31],[-13,7],[-12,-3],[-15,-7],[-15,-9],[-14,-9],[-17,14],[-9,25],[-15,2],[-15,3],[-16,23],[-12,19],[-14,16],[-14,14],[-21,7],[-7,21],[-11,19],[-19,13],[-13,7],[-14,4],[-13,-1],[-15,7],[-12,2],[-14,-9],[-20,-7],[-15,-14],[-13,-12],[-16,-2],[-5,-26],[-11,-30],[-10,-16],[-15,11],[-12,10],[-11,14],[-16,2],[-15,-2],[-20,2],[-16,7],[-20,2],[-13,3],[-16,0],[-14,2],[-19,-12],[-18,-39],[-14,2],[-12,9],[-18,14],[-14,3],[-14,16],[-10,23],[-13,5],[-12,25],[-13,21],[-17,10],[-16,4],[-16,19],[-12,28],[-10,26],[-7,14],[-2,4],[-12,23],[-11,24],[-21,18],[-9,26],[-14,-2],[-21,-10],[-12,-4],[-17,-12],[-14,-14],[-15,-12],[-12,3],[-16,16],[-15,7],[-12,12],[-10,-21],[-15,-10],[-17,-4],[-14,-5],[-16,-16],[-13,-19],[-15,-14],[-13,-9],[-14,9],[-15,14],[-14,14],[-19,23],[-14,7],[-12,5],[-11,21],[-12,16],[-17,19],[-17,0],[-15,5],[-14,16],[-17,-7],[-18,-9],[-14,0],[-15,0],[-22,2],[-14,9],[-15,5],[-24,2],[-16,5],[-4,30],[-11,23],[-16,14],[-9,19],[-18,23],[-12,7],[-18,-2],[-16,2],[-18,10],[-16,16],[-15,14],[-14,9],[-12,12],[-14,7],[-12,-7],[-20,-10],[-12,-11],[-20,4],[-15,12],[-14,12],[-18,21],[-16,11],[-15,-1],[-22,4],[-15,-7],[-16,-5],[-11,16],[0,31],[4,23],[1,35],[-18,39],[-4,26],[-9,21],[-7,51],[-7,21],[-17,21],[-16,23],[-11,26],[3,26],[-1,23],[-10,46],[-14,19],[-4,23],[-1,24],[-2,23],[-11,25],[-25,35],[-21,17],[-14,9],[9,19],[14,23],[1,23],[-1,37],[-4,30],[2,45],[10,44],[8,37],[-5,28],[-15,30],[-10,19],[10,19],[17,0],[19,-3],[28,0],[16,3],[22,2],[26,-5],[34,-4],[14,2],[26,27],[7,25],[12,7],[14,10],[14,34],[11,11],[10,16],[14,19],[11,16],[16,5],[12,-5],[10,-23],[14,-12],[14,-12],[17,-13],[19,-7],[15,-5],[15,-9],[15,-2],[16,-3],[15,-2],[14,-9],[18,-7],[14,-5],[13,-26],[10,-19],[11,-27],[15,-23],[17,-10],[12,3],[11,11],[15,14],[15,2],[18,12],[13,7],[7,19],[14,4],[13,14],[8,31],[-10,21],[-1,34],[11,17],[11,27],[4,26],[5,24],[19,18],[18,16],[16,17],[13,16],[16,14],[11,12],[29,28],[12,21],[16,18],[11,14],[16,9],[14,10],[13,0],[14,-14],[17,-12],[13,-9],[13,-19],[22,0],[19,-14],[18,-4],[15,-7],[5,-26],[19,-7],[22,-2],[14,-5],[14,-9],[13,2],[16,9],[13,10],[14,-7],[16,-7],[11,16],[-11,37],[9,24],[13,7],[-1,25],[-5,23],[9,28],[11,26],[12,5],[23,2],[17,-2],[14,-12],[21,-2],[23,-7],[12,-12],[18,-7],[20,-12],[16,7],[14,7],[11,12],[21,14],[13,-2],[18,-7],[12,-3],[12,14],[13,21],[0,28],[8,23],[11,21],[9,21],[3,28],[-7,28],[12,12],[14,14],[16,16],[18,9],[0,33],[7,23],[19,14],[18,10],[-1,23],[13,16],[10,21],[10,16],[8,24],[13,16],[17,14],[19,5],[12,-3],[18,0],[12,7],[11,12],[14,9],[16,10],[22,9],[21,-5],[12,-16],[11,-9],[20,-7],[25,-5],[13,0],[18,2],[13,-9],[18,-5],[13,-2],[22,-5],[11,-14],[20,-7],[15,5],[22,0],[13,2],[20,5],[17,2],[16,0],[24,-9],[13,-9],[27,-19],[15,-5],[14,-2],[27,9],[14,7],[14,10],[15,-10],[12,-7],[11,-23],[20,-5],[17,3],[14,0],[16,-7],[13,4],[15,14],[11,19],[10,19],[20,4],[16,7],[12,0],[12,-2],[14,0],[15,0],[17,5],[14,9],[12,14],[7,30],[13,21],[13,9],[15,-2],[10,-19],[17,-25],[14,-2],[15,14],[13,7],[14,-3],[13,-7],[20,10],[19,18],[6,23],[10,24],[22,11],[12,3],[14,4],[16,7],[-4,28],[-6,21],[-9,26],[3,28],[2,30],[-3,26],[1,23],[0,25],[-11,28],[-6,35],[-13,14],[-8,37],[1,26],[11,9],[10,17],[16,14],[13,9],[10,21],[9,21],[11,25],[3,28],[-10,14],[-20,14],[-7,31],[-19,30],[-7,25],[-15,33],[-6,21],[-14,16],[-17,24],[-10,28],[-9,37],[-3,30],[-2,40],[7,23],[-4,32],[-8,31],[-13,30],[-11,21],[-13,39],[-11,24],[-11,16],[0,28],[5,23],[12,19],[10,23],[-8,19],[-4,28],[0,25],[9,26],[1,28],[2,25],[8,28],[13,21],[8,26],[-4,23],[1,37],[-2,26],[-5,33],[-4,25],[-12,11],[-13,1],[-13,2],[-15,3],[-15,4],[-23,23],[-17,21],[-18,3],[-18,25],[7,28],[-15,7],[-17,7],[-12,21],[-2,23],[2,31],[10,28],[4,28],[9,28],[-1,23],[-1,35],[-16,9],[-16,12],[-14,11],[-17,12],[-32,21],[-18,35],[-12,25],[15,7],[24,17],[23,28],[12,21],[20,28],[16,6],[15,10],[23,56],[5,25],[-2,24],[1,23],[17,14],[28,21],[23,21],[13,21],[14,9],[16,19],[12,14],[26,18],[8,21],[-7,40],[-7,28],[6,42],[-3,27],[-8,24],[-10,32],[10,31],[12,14],[25,23],[12,14],[9,18],[20,5],[13,-14],[32,-9],[18,0],[17,0],[27,15],[17,10],[14,5],[27,2],[30,21],[16,12],[15,12],[21,14],[21,2],[6,-21],[20,-12],[7,-28],[23,-11],[21,-17],[21,-28],[18,-18],[15,2],[11,12],[12,7],[11,11],[12,-2],[19,-5],[14,-5],[16,-2],[17,-6],[21,-7],[24,-7],[97,-35],[16,14],[27,21],[59,62],[1,28],[2,38],[-7,37],[4,39],[9,21],[12,31],[13,9],[6,21],[-9,18],[-10,26],[-6,30],[-10,19],[-10,21],[-11,23],[-7,23],[-4,52],[-9,30],[-3,26],[-5,25],[-8,37],[0,40],[5,26],[0,32],[-10,19],[-12,18],[-16,21],[-12,24],[-6,35],[6,25],[2,37],[3,24],[6,37],[-13,23],[-8,23],[-4,26],[-2,30],[11,12],[11,19],[13,11],[16,12],[15,11],[10,21],[14,26],[8,26],[10,30],[6,44],[-8,23],[-16,24],[-15,23],[-6,26],[-8,30],[9,25],[19,17],[20,18],[8,21],[1,28],[10,33],[2,28],[0,28],[7,30],[8,21],[13,30],[10,33],[-12,16],[-14,19],[-9,18],[-15,17],[-13,18],[-12,26],[-14,-12],[-11,-11],[-14,-7],[-12,-12],[-13,7],[-13,9],[-13,26],[-14,28],[-14,-3],[-16,5],[-14,2],[-13,10],[-15,14],[-10,18],[-2,33],[6,37],[5,33],[0,35],[-9,21],[4,30],[7,32],[4,24],[-4,30],[-12,37]],[[17559,64196],[27,-42],[11,-8],[13,-10],[56,-40],[27,-57],[3,-36],[2,-23],[-6,-10],[-27,-45],[-70,-74],[-15,-17],[-23,-24],[-36,-38],[-18,-26],[-13,-20],[-19,-51],[0,-22],[1,-32],[7,-56],[12,-53]],[[17491,63512],[-26,0],[-29,0],[-29,0],[-20,-1],[-31,0],[-12,0],[-29,-2],[-39,0],[-65,0],[-40,0],[-28,0],[-59,1],[-138,0],[-92,0],[-16,0],[-47,0],[-88,1],[-16,0],[-94,-1],[-166,1],[-119,-2],[-64,-1],[-14,0],[-35,1],[-65,1],[-15,0],[-22,-1],[-26,-1],[-18,1],[-21,0],[-65,-1],[-35,0],[-38,-1],[-29,0],[-21,0],[-32,0],[-75,-1],[-40,-1],[-33,0],[-63,0],[-52,1],[-81,0],[-41,1],[-24,0],[-27,0],[-35,1],[-22,0],[-59,1],[-33,1],[-15,0],[-40,2],[-12,-1],[-15,-1],[-56,1],[-43,0],[-25,0],[-45,0],[-88,1],[-52,1],[-50,2],[-36,0],[-15,0],[-33,1],[-11,-18],[-128,1],[-13,-1],[-18,0],[-90,1],[-83,0],[-27,0],[-49,0],[-39,0],[-21,0],[-198,4],[-72,1],[-22,0],[-14,0],[-1,0],[-84,-1],[-124,-1],[-57,2],[-63,-3],[-61,2],[-61,2],[-141,13],[-176,4],[-74,-1],[-9,0],[-16,1],[-37,1],[-23,0],[-23,1],[-67,3],[-55,2],[-59,3],[-47,1],[-39,2],[-36,1],[-45,-3],[-85,-5],[-70,-5],[-23,-1],[-30,-2],[-31,-4],[-35,-3],[-14,-2],[-34,-3],[-39,-5],[-26,-2],[-13,-2],[-12,-1],[-40,-5],[-38,6],[-55,8],[-18,3],[-93,14],[-11,1],[-54,9]],[[11894,63534],[-56,-1],[-76,0],[-134,-1],[-26,-2],[-152,1],[-56,0],[-36,1],[-181,0],[-40,1],[-106,0],[-16,0],[-56,0],[-17,0],[-30,1],[-27,0],[-18,0],[-34,-1],[-35,0],[-58,-1],[-104,-1],[0,260],[-1,48],[0,81],[0,30],[-135,0],[-41,0],[-76,0],[0,166],[-1,85],[0,95],[-1,247],[-1,96],[0,78],[0,90],[-1,56],[-2,610],[0,28],[-2,433],[-1,214],[0,26],[-1,178],[-1,132],[0,54],[-1,107],[-1,203],[-1,206],[0,2],[0,23],[7,31],[1,79],[0,17],[0,31],[1,94],[0,42],[1,217],[1,278],[1,101],[0,82],[1,26],[0,66],[0,56],[1,78],[0,54],[0,50],[0,61],[1,111],[0,59],[0,32],[0,41],[0,80],[1,88],[0,52],[1,175],[0,38],[0,40],[0,68],[0,157],[0,184],[1,61],[0,30],[0,106],[0,234],[-5,22],[-12,17],[1,53],[7,376],[1,26],[1,26],[1,59],[0,26],[1,80],[0,36],[1,31],[0,73],[0,52],[1,45],[1,128],[-7,0]],[[60407,69894],[0,-42],[1,-255],[1,-256],[1,-26],[0,-49],[0,-50],[1,-308],[0,-2],[0,-27],[1,-123],[1,-199],[0,-321],[2,-382],[0,-158],[0,-14],[0,-16],[0,-54],[0,-84],[1,-93],[1,-324],[9,-99],[2,-89],[-6,-110],[-12,-219],[0,-41],[0,-303],[0,-111],[0,-221],[129,-6],[113,-4],[-1,-91],[-6,-472],[0,-13],[-7,-789],[-1,-33],[1,-42],[0,-4],[7,-263],[-2,0],[-5,-1197],[-1,-383],[0,-26],[-1,-140],[0,-50],[0,-40],[0,-80],[-1,-7],[0,-222],[-1,-115],[0,-133],[-2,-380],[0,-137],[-3,-71],[-5,-138],[0,-303],[0,-255],[0,-18],[0,-57],[0,-249],[0,-25],[1,-208],[0,-299],[0,-65],[2,-91],[-3,-302],[-1,-31],[1,-45],[3,-255],[2,-96],[0,-19],[0,-14],[0,-29],[0,-24],[0,-270],[1,-45],[0,-29],[0,-170],[0,-28],[0,-35],[0,-79],[0,-181],[0,-334],[-1,-42],[0,-31],[-1,-120],[1,-50],[1,-73],[1,-47],[3,-313],[-1,-40],[-3,-128],[0,-143],[0,-128],[0,-108],[0,-68],[-1,-77],[2,-139],[2,-215],[-17,1],[0,-164],[-2,-169],[0,-137],[0,-117],[-1,-197],[0,-226],[0,-6],[-1,-52],[-1,-486],[-1,-192],[0,-68],[0,-48],[0,-52]],[[60610,53891],[-57,1],[-22,0],[-81,1],[-258,2],[-4,0],[-301,3],[-117,1],[-120,1],[-107,1],[-47,0],[-65,1],[-13,-1],[-14,0],[-41,0],[-166,6],[-88,3],[-38,-1],[-55,-1],[-49,-1],[-73,-1],[-26,-1],[-71,-1],[-111,-2],[-11,0],[-12,-1],[-54,-1],[-29,0],[-37,0],[-42,0],[-229,-1],[-64,0],[-29,-1],[-77,0],[-51,0],[-63,-1],[-93,0],[-32,1],[-52,-2],[-29,-2],[-71,-4],[-16,-1],[-80,-4],[-8,131],[-1,33],[1,101],[0,35],[1,32],[-2,169],[3,190],[0,13],[-1,33],[-4,286],[0,102],[1,173],[0,289],[0,85],[0,87],[0,62],[0,107],[-61,1],[-119,0],[-37,0],[-64,0],[-181,2],[-146,-1],[-26,-1],[-20,0],[-81,-2],[-23,-2],[-122,-9],[-117,2],[-21,0],[-121,-3],[-23,1],[-29,3],[-15,2],[-40,0],[-14,-1],[-116,12],[-15,0],[-87,-2],[-23,1],[-2,134],[-3,248],[-2,111],[-1,98],[-1,49],[-1,117],[-2,166],[-1,73],[-1,26],[-1,116],[-13,0],[-59,-1],[-77,-1],[-43,-1],[-58,-1],[-49,-1],[-35,0],[-51,-1],[-47,-1],[-81,0],[-161,-1],[-68,0],[-141,-1],[-96,0],[-304,1],[-16,0],[-24,-1],[-25,-1],[-148,-6],[-40,2],[-12,0],[-86,3],[-14,0],[-43,2],[-16,1],[-89,3],[-17,1],[-186,0],[-92,-2],[-132,-3],[-23,-1],[-66,-1],[-28,-1],[-18,-1],[-28,0],[-99,-1],[-187,-2],[-158,-3],[-247,-4],[-148,-1],[-112,-2],[-8,0],[-34,-1],[-32,0],[-52,0],[-179,0],[-32,0],[-50,0],[-109,1],[-62,0],[-116,1],[-36,0],[-37,0],[-289,2],[-119,0],[-1,145],[-4,612],[0,142],[-14,0],[2,280],[1,232],[0,19],[0,38],[0,18],[0,17],[1,35],[1,215],[1,193],[0,39],[0,57],[0,40],[1,181],[6,222],[3,120],[6,337]],[[51600,59873],[-1,103],[0,56],[0,32],[-1,95],[0,16],[0,67],[-4,450],[-2,330],[-1,24],[-1,149],[0,96],[1,378],[0,279],[1,142],[0,40],[2,865],[1,314],[0,140],[0,109],[5,331],[-2,312],[4,138],[2,64],[1,56],[-16,16],[-11,72],[-4,101],[0,3],[-7,25],[0,1],[-7,12],[-18,23],[-5,5],[-27,28],[-57,69],[-17,24],[-3,8],[-4,21],[0,9],[3,13],[18,44],[6,10],[7,7],[1,1],[15,15],[1,1],[5,4],[2,13],[1,11],[1,7],[1,12],[-5,26],[0,1],[-6,17],[-1,3],[-61,103],[-5,3],[0,1],[-19,2],[-17,8],[-9,7],[-5,8],[-2,14],[3,40],[2,8],[7,16],[35,65],[8,14],[1,1],[27,80],[6,14],[8,11],[1,1],[7,6],[14,4],[6,-2],[5,-6],[9,-79],[0,-1],[3,-55],[3,-12],[7,-22],[8,-9],[13,-3],[48,2],[19,4],[4,4],[5,10],[0,5],[0,14],[-12,-3],[-2,0],[-2,8],[1,13],[4,10],[18,25],[1,1],[1,0],[25,15],[14,22],[6,19],[4,10],[11,38],[2,5],[0,5],[1,24],[-6,19],[-5,5],[-1,0],[-8,5],[-8,0],[-37,0],[-7,-1],[-8,13],[-10,65],[0,8],[2,6],[5,7],[17,10],[8,3],[23,-6],[1,-1],[6,2],[34,8],[1,1],[6,2],[7,13],[-1,47],[-3,12],[-10,17],[-2,4],[-9,7],[-1,1],[-21,32],[1,7],[19,22],[10,5],[0,1],[1,0],[31,11],[21,0],[1,1],[12,4],[11,14],[6,12],[4,7]],[[11894,63534],[0,-182],[0,-187],[-1,-41],[0,-70],[0,-38],[0,-94],[0,-77],[0,-176],[0,-34],[-1,-368],[0,-64],[0,-79],[-1,-76],[0,-3],[-1,-138],[70,0],[1,-47],[0,-16],[0,-23],[1,-65],[0,-50],[0,-51],[0,-85],[0,-42],[0,-27],[0,-85],[0,-66],[0,-35],[0,-24],[-1,-191],[0,-153],[0,-106],[0,-146],[0,-126],[0,-1],[0,-31],[0,-43],[0,-41],[1,-389],[-2,-183],[-3,-230],[2,-174],[0,-31],[1,-63],[0,-12],[0,-38],[4,-313],[1,-81],[1,-29],[0,-32],[1,-78],[1,-184],[1,-74],[1,-66],[0,-87],[0,-43],[-5,-441],[-1,-51],[-14,-192],[3,-146],[-2,-147],[-1,-64],[3,-130],[1,-29],[2,-79],[2,-59],[1,-39],[1,-147],[-16,4],[-40,5],[-44,7],[-2,1],[-61,-1],[-90,-5],[-105,-4],[-38,0],[-15,1],[-28,0],[-63,-1],[-98,-1],[-23,0],[-17,0],[-35,-1],[-125,10],[-153,6],[-72,1],[-106,-1],[-33,1],[-23,-2],[-29,0],[-15,-1],[-140,-7],[-150,-8],[0,-31],[0,-130],[-1,-201],[0,-43],[0,-78],[0,-24],[0,-38],[0,-68],[-1,-368],[0,-28],[53,1],[4,-110],[3,-80],[1,-30],[0,-1],[3,-126],[0,-44],[0,-69],[2,-219],[-143,2],[-19,0],[-40,1],[-49,0],[4,-164],[1,-24],[4,-159],[-114,-1],[-29,-1],[-22,0],[-21,0],[-16,-2],[-69,-4],[-46,-6],[-15,-1],[-47,-1],[-23,0],[-25,-1],[-72,-5],[-105,-5],[-109,6],[-88,0],[-149,-1],[-13,0],[-32,0],[-18,-1],[3,-298],[0,-14],[3,-366],[86,2],[133,3],[30,0],[130,3],[33,1],[13,0],[34,5],[39,1],[5,0],[1,-244],[1,-268],[0,-56],[1,-156],[0,-39]],[[9760,53346],[-70,-1],[-54,0],[-52,-2],[-88,-2],[-36,-1],[-17,-1],[-22,-1],[-50,-2],[-93,-3],[-47,-2],[-28,0],[-17,0],[-33,-1],[-123,-2],[-106,0],[-20,0],[-126,1],[-62,0],[-23,0],[-49,0],[-93,2],[-35,-1],[-106,-2],[-6,0],[-15,0],[-55,-1],[-109,1],[-92,0],[-34,0],[-101,1],[-20,1],[-96,0],[-40,1],[-39,0],[-30,0],[-28,2],[-2,0],[-27,0],[1,-127],[-29,1],[-79,-2],[-65,-2],[-31,0],[-17,-1],[-36,-1],[-12,0],[-16,0],[-51,0],[-57,0],[-97,0],[-93,0],[-37,0],[-62,-2],[-62,2],[-150,-1],[-370,-4],[-179,-2],[-71,-1],[1,-51],[-123,14],[-85,11],[-301,15],[-80,-3],[-24,-1],[-26,-1]],[[5565,53177],[16,36],[30,59],[19,42],[-22,36],[-33,65],[5,64],[24,65],[15,88],[7,68],[11,77],[33,77],[39,81],[-42,19],[-19,51],[-4,79],[7,64],[10,59],[19,69],[29,79],[20,72],[18,64],[8,81],[12,77],[12,80],[7,60],[6,52],[3,51],[5,46],[6,70],[12,87],[6,61],[3,57],[7,52],[8,57],[15,66],[13,87],[3,93],[4,102],[3,70],[10,70],[11,92],[2,108],[9,91],[10,97],[8,78],[9,77],[6,53],[13,59],[34,52],[42,29],[29,14],[35,42],[16,48],[22,55],[20,12],[17,11],[31,47],[18,51],[20,46],[31,-23],[9,-34],[-13,-17],[-3,-36],[0,-10],[1,-33],[27,-16],[-13,-47],[-15,-30],[-27,-42],[23,-17],[18,33],[0,-29],[-2,-33],[-32,-99],[-3,-36],[22,3],[11,26],[12,30],[14,13],[6,45],[9,16],[11,28],[-10,22],[-8,44],[6,43],[-1,26],[-5,32],[-22,15],[7,14],[2,4],[17,35],[15,5],[13,5],[30,-14],[31,-62],[23,-66],[7,-53],[34,-7],[26,-47],[39,-68],[35,-75],[-12,-86],[34,-46],[16,112],[1,6],[45,10],[30,-14],[21,10],[28,0],[39,5],[52,-9],[45,3],[58,11],[-68,51],[-32,51],[-41,-36],[-50,1],[-53,35],[-48,24],[-44,16],[-32,12],[-22,56],[-27,41],[-8,54],[-1,56],[24,36],[34,-55],[11,-76],[35,-63],[-5,60],[9,39],[34,83],[24,95],[21,56],[-11,71],[-44,42],[-32,-11],[-34,-31],[-37,42],[-30,44],[-34,54],[-29,24],[-33,34],[-28,-9],[-26,-46],[-43,-26],[-52,-39],[-20,-75],[-19,-42],[-20,-29],[-32,-24],[-47,-50],[-28,-15],[-12,-7],[-36,-38],[-24,-38],[-2,-70],[10,-37],[-12,-45],[-43,70],[-13,80],[-1,66],[11,91],[9,112],[2,112],[3,112],[1,57],[3,97],[2,98],[-4,101],[-3,72],[-5,75],[0,76],[-1,58],[-18,81],[-16,59],[11,72],[0,67],[1,50],[-15,52],[17,55],[7,86],[8,75],[16,87],[8,87],[16,68],[16,87],[24,75],[-7,86],[7,135],[10,198],[6,79],[7,88],[4,101],[7,63],[11,96],[6,46],[1,100],[8,71],[9,83],[5,118],[6,98],[4,72],[5,124],[1,133],[7,65],[5,82],[6,69],[4,81],[-5,60],[-22,55],[73,58],[86,58],[18,34],[15,14],[3,3],[26,17],[-13,78],[18,23],[32,9],[20,-24],[23,-1],[27,-43],[7,-56],[-36,-69],[33,-100],[32,-30],[27,0],[38,5],[63,53],[29,-9],[-17,-40],[-37,-50],[-17,-52],[-27,-69],[-5,-57],[-32,-83],[-2,-82],[34,16],[9,72],[38,61],[37,62],[11,61],[25,12],[15,32],[39,-27],[36,-63],[19,-65],[-4,-79],[-8,-53],[-13,-45],[-27,-55],[-35,-67],[-6,-60],[-1,-77],[21,-61],[25,-17],[35,-25],[57,-12],[45,-22],[42,9],[54,-1],[75,-58],[31,-38],[24,-53],[26,5],[35,-37],[45,24],[44,-3],[81,-1],[36,-5],[28,6],[37,29],[26,42],[45,41],[18,42],[-22,71],[2,81],[74,16],[23,22],[29,1],[67,22],[55,38],[43,99],[88,-4],[-47,35],[-41,35],[-53,97],[-70,176],[-41,126],[37,24],[80,-32],[30,-85],[27,-13],[14,-26],[57,-35],[46,-49],[59,-108],[60,-102],[7,8],[4,4],[-98,194],[-59,67],[-64,54],[-33,36],[-34,88],[-43,52],[-61,25],[-29,-53],[-25,-55],[40,-152],[33,-71],[46,-192],[-2,-44],[-51,-99],[-32,-2],[-64,13],[-51,-24],[-17,-26],[-60,-60],[-23,-41],[-13,-76],[-15,-88],[-32,-47],[-27,5],[-36,13],[-78,18],[-56,10],[-40,40],[-54,56],[-36,28],[-62,38],[-31,7],[-36,16],[-56,-3],[-58,8],[-27,29],[-4,74],[19,38],[27,11],[8,43],[27,75],[32,113],[-12,65],[8,80],[-17,77],[9,52],[52,63],[22,55],[-1,84],[-14,79],[-22,25],[-43,38],[-51,14],[-76,39],[-40,-6],[-5,-65],[-16,-87],[-57,65],[-36,18],[-31,32],[-33,46],[-37,45],[-23,18],[-22,1],[-35,6],[-44,-40],[-24,-17],[-19,-44],[-27,-68],[-11,-8],[-42,-26],[-30,-36],[-19,63],[-6,68],[9,83],[14,67],[6,76],[14,73],[2,106],[15,41],[10,103],[9,62],[19,96],[4,73],[-2,85],[-10,69],[-9,48],[-24,59],[-48,24],[-56,-2],[-34,-1],[-40,7],[-38,57],[7,40],[25,-4],[43,25],[32,96],[25,128],[9,71],[20,97],[12,68],[13,56],[14,66],[8,97],[2,48],[7,86],[12,87],[4,82],[-3,59],[13,82],[5,56],[1,127],[2,80],[-10,69],[-17,66],[-24,54],[-34,14],[16,54],[-4,70],[12,34],[-3,53],[-11,46],[-27,57],[12,73],[-22,67],[-43,67],[-37,46],[-4,56],[6,40],[4,56],[25,24],[-21,53],[1,56],[-6,46],[16,45],[30,14],[22,36],[-46,36],[-2,88],[-11,78],[32,69],[22,42],[27,20],[34,-15],[9,50],[1,49],[4,53],[-2,68],[-14,67],[-41,19],[21,88],[-16,86],[-1,73],[8,62],[26,31],[44,-6],[12,43],[3,62],[32,66],[30,16],[21,32],[10,103],[-10,45],[25,7],[20,51],[12,58],[2,17],[53,187],[115,703],[3,0],[-6,103],[8,22],[7,83],[25,56],[8,59],[0,64],[14,63],[17,156],[1,30],[16,29],[0,81],[28,49],[13,-22],[-11,-25],[-10,-90],[-9,-56],[-6,-84],[10,-39],[-4,-61],[-11,-63],[1,-59],[4,-17],[-16,-39],[-1,-39],[-4,-44],[-10,-32],[9,-49],[5,-51],[7,7],[15,-9],[33,-22],[41,53],[9,5],[15,27],[-1,32],[40,-17],[32,24],[11,51],[-16,0],[-33,13],[1,18],[10,31],[2,7],[8,55],[18,-6],[34,-48],[7,12],[1,2],[8,46],[-9,54],[7,24],[1,-4],[28,18],[0,87],[-70,-11],[-3,31],[3,2],[-13,29],[-51,0],[-31,53],[1,35],[10,25],[69,57],[-15,29],[0,27],[6,51],[-4,39],[-118,18],[-15,102],[-3,94],[2,78],[9,56],[5,66],[-1,59],[5,67],[18,52],[8,53],[0,77],[11,54],[10,69],[18,124],[12,99],[5,73],[11,91],[13,96],[12,102],[9,85],[8,68],[11,70],[2,81],[5,81],[13,94],[10,110],[-2,74],[2,57],[-1,67],[-10,50],[-25,52],[9,73],[-4,35],[22,51],[25,46],[27,39],[15,48],[-1,49],[-3,50],[16,45],[20,0],[-5,-53],[22,-48],[27,6],[44,-54],[55,-84],[12,26],[-12,29],[29,-31],[0,-52],[16,-45],[-5,-35],[11,-16],[10,24],[47,-11],[29,-5],[-9,21],[-24,22],[-29,37],[-5,49],[-15,54],[-12,41],[-39,-1],[-30,27],[-13,-9],[-33,24],[-21,31],[5,33],[-33,18]],[[78179,52707],[-2,-67],[-2,-78],[-6,-320],[-5,-335],[-4,-215],[65,0],[1,-328],[1,-353],[1,-189],[0,-92],[0,-31],[0,-30],[2,-694],[0,-61],[0,-12],[1,-78],[0,-171],[1,-351],[2,-644],[0,-7],[0,-30],[0,-62],[1,-248],[0,-13],[0,-196],[1,-285],[1,-141]],[[78237,47676],[-96,-1],[-148,-3],[-48,0],[-375,-6],[-5,0],[-413,-5],[-73,-1],[-62,-1],[-66,-1],[-127,-2],[-10,0],[-60,-1],[0,28],[-203,0],[-149,0],[-123,0],[-148,0],[-15,0],[-28,-1],[-90,0],[-33,0],[-252,0],[-58,0],[-89,0],[-20,0],[-161,3],[-83,1],[-14,0],[-12,0],[-84,0],[-168,1],[-13,0],[-96,0],[-38,-1],[-22,-1],[-31,-4],[-431,-1],[-18,0],[-3,0],[-158,-1],[-190,0],[-70,0],[-115,0],[-37,0],[1,51],[0,111],[-48,1],[-438,3],[-37,1],[-266,2],[-12,0],[-509,4],[-13,0],[-247,2],[-13,0],[-200,2],[-69,0],[-163,2],[-14,0],[-74,0],[-221,-1],[-58,0],[-38,0],[-76,-1],[-133,0],[-84,0],[-105,-1],[-16,-16],[-1,-190],[0,-177],[0,-23],[-2,-345],[0,-26],[0,-133],[-1,-199],[0,-3],[0,-301],[0,-58],[-1,-74],[0,-166],[0,-51],[0,-279],[-87,0],[-67,0],[-87,0],[-221,-1],[-99,0],[-31,0],[-17,0],[-124,0],[-211,-1],[-19,0],[-25,0],[-212,0],[-64,0],[-106,0],[-55,0],[-45,0],[-35,0],[-33,-1],[-10,0],[-10,0],[-73,0],[-86,0],[-112,0],[-52,0],[-30,0],[-83,0],[-37,0],[-89,0],[-156,5],[-74,1],[-34,0],[-272,2],[-282,2],[-18,0],[-82,0],[-78,0],[-67,0],[-30,0],[-219,0],[-170,-4],[-217,-5],[-465,2],[-39,0],[-68,1],[-36,0],[-47,0],[-67,0],[-46,0],[-159,1],[-23,1],[-204,1],[-8,0],[-104,1],[-149,0],[-3,0],[-125,4],[-14,0],[-2,0],[-478,-1],[-91,-2],[-287,-7],[-16,0],[-16,-1],[-90,-2],[-22,-1],[-159,-4],[-379,-25],[-109,-1],[-389,-7],[-73,-1],[-261,-4],[-411,-7],[-45,-1],[-45,-1],[-42,-1],[-52,-1],[-64,-2],[-40,14],[-45,3],[-83,7],[-41,3],[-13,1],[-105,4],[-170,7],[-35,1],[-83,1],[-139,0],[-20,1],[-41,0],[-138,1],[-108,0],[-58,1],[-15,0],[-102,0],[-18,1],[-63,0],[-121,-3],[-57,-1],[-88,3],[-217,-4],[-15,1],[-157,-3]],[[60585,45792],[0,219],[1,61],[1,562],[3,99],[1,13],[1,26],[-1,63],[-2,294],[2,599],[0,57],[0,42],[1,181],[0,132],[0,254],[0,282],[0,264],[0,147],[0,105],[0,165],[0,85],[0,76],[0,89],[1,45],[-1,183],[0,253],[0,179],[1,85],[-1,462],[1,551],[0,242],[0,158],[1,42],[1,67],[23,0],[0,64],[-1,55],[-2,399],[-1,52],[0,5],[0,113],[-1,90],[-1,35],[-1,24],[-3,151],[1,479],[0,234],[0,221],[1,95]],[[51600,59873],[-300,-6],[-29,-1],[-2,0],[-77,-1],[-56,-2],[-133,-2],[-101,-3],[-17,0],[-38,-1],[-30,0],[-134,-2],[-59,-1],[-143,-2],[-38,0],[-17,-1],[-232,-3],[-21,0],[-179,0],[-34,0],[-233,1],[-416,1],[-54,0],[-23,0],[-27,0],[-217,0],[-15,0],[-177,0],[-152,0],[-16,0],[-201,0],[-348,-1],[-254,-1],[-15,0],[-92,-2],[-84,0],[-335,-5],[-109,-1],[-104,-2],[-80,1],[-299,3],[-61,1],[-200,-9],[-14,0],[-54,0],[-99,6],[-16,1],[-118,7],[0,-204],[0,-194],[0,-89],[1,-569],[0,-78],[0,-146],[0,-17],[0,-87],[0,-83],[4,-321],[1,-1],[-4,-218],[-118,-1],[-126,0],[-32,-1],[-191,-1],[-98,-1],[-39,0],[-114,-1],[-33,0],[-249,-2],[-15,0],[-76,0],[-14,3],[-73,-2],[-14,0],[-76,0],[-212,0],[-240,1],[-40,0],[-30,0],[-24,-1],[-17,1],[-146,0],[-17,0],[0,-152],[1,-45],[-1,-63],[0,-220],[0,-276],[0,-59],[0,-122],[-1,-165],[0,-64],[0,-80],[1,-243],[0,-9],[2,-513],[-35,0],[-120,-1],[-49,1],[-77,0],[-42,1],[-287,11],[-129,3],[-21,0],[-84,1],[-16,1],[-51,0],[-52,1],[-17,0],[-108,-2],[-378,-4]],[[42691,55837],[-155,3],[-15,0],[-62,1],[-59,0],[-231,-2],[-15,0],[-62,0],[-40,1],[-2,0],[-34,0],[-22,0],[-46,0],[-18,0],[-52,-1],[-26,0],[-40,0],[-24,2],[-47,0],[-23,0],[-27,0],[-29,0],[-7,0],[-52,-1],[-13,0],[-2,0],[-9,0],[-33,-1],[-23,1],[-202,4],[-35,1],[-13,0],[-68,2],[-16,0],[0,48],[-16,0],[-52,1],[-75,0],[-19,-1],[-13,1],[-98,-5],[-247,0],[-155,-1],[-54,0],[-34,0],[-7,0],[-466,-2],[-150,0],[-113,1],[-317,1],[-99,1],[-187,2],[-75,1],[-1,0],[-87,1],[-142,4],[-29,1],[-14,0],[-55,2],[-21,0],[-36,0],[-19,0],[-392,0],[-40,0],[-209,1],[-137,1],[-33,-1],[-137,-2],[-67,-2],[-159,-3],[-259,-6],[-233,1],[-63,0],[-32,0],[-28,0],[-125,1],[-50,0],[-120,0],[-14,0],[-127,1],[-45,0],[-50,0],[-292,1],[-82,0],[-26,0],[-50,0],[-80,1],[-40,0],[-23,0],[-7,0],[-5,0],[-227,1],[-1,0],[-19,0],[-13,0],[-364,2],[-13,0],[-197,1],[-86,0],[-18,1],[-216,1],[-92,1],[2,-14],[-98,-1],[-82,-1],[-50,0],[-77,-1],[-121,-1],[-86,0],[-66,-1],[-244,-2]],[[33615,55881],[2,40],[-3,25],[-11,23],[-15,17],[-11,30],[-4,23],[2,24],[-2,32],[-3,23],[6,33],[10,81],[-8,26],[14,7],[21,7],[20,16],[1,24],[-15,23],[-25,39],[-7,24],[2,30],[9,19],[6,28],[-5,23],[-7,21],[-6,39],[-2,24],[2,37],[0,14],[1,16],[-6,26],[-14,25],[-9,38],[7,28],[12,18],[0,28],[-4,26],[5,23],[6,33],[8,23],[8,28],[8,28],[15,18],[10,24],[1,37],[3,32],[-3,26],[-9,33],[-5,25],[-10,37],[-5,26],[-6,21],[-8,23],[-10,21],[-14,31],[-7,23],[-5,28],[-3,32],[2,26],[-2,23],[-3,23],[5,31],[12,18],[-6,21],[-8,26],[-11,26],[-6,25],[5,33],[10,18],[12,14],[19,14],[19,12],[0,30],[-1,28],[0,28],[6,28],[9,28],[1,35],[-8,28],[-7,32],[-9,21],[-16,17],[-14,9],[-20,23],[1,26],[2,23],[7,21],[9,21],[6,21],[6,23],[5,24],[15,11],[18,21],[14,19],[13,14],[14,23],[15,19],[15,23],[17,25],[12,19],[11,16],[11,12],[8,30],[9,26],[13,14],[19,9],[14,12],[20,25],[11,28],[15,24],[9,25],[7,28],[9,26],[20,18],[29,5],[24,9],[14,-7],[10,14],[24,28],[12,-4],[15,-3],[18,14],[9,24],[0,34],[-9,26],[-8,30],[-8,40],[-8,30],[-8,28],[-5,65],[2,37],[-5,31],[0,30],[-8,23],[-15,35],[-12,23],[-7,31],[-4,23],[0,33],[6,44],[11,32],[14,28],[5,26],[7,21],[34,40],[21,4],[16,26],[9,35],[-1,32],[-4,31],[4,23],[13,15],[13,13],[22,60],[0,47],[6,37],[5,23],[-5,47],[-6,23],[3,35],[6,21],[11,28],[-4,35],[0,39],[10,38],[13,21],[-3,44],[3,42],[8,42],[1,23],[-11,40],[14,23],[4,23],[7,49],[7,33],[7,52],[6,50],[11,33],[10,18],[7,42],[-10,16],[-8,21],[-7,35],[-24,21],[-9,19],[-18,23],[-8,23],[-2,28],[15,14],[12,35],[-7,19],[-18,23],[-13,30],[1,33],[-9,28],[-31,39],[-13,24],[-20,9],[-16,5],[-14,-3],[-12,12],[4,23],[-13,21],[7,24],[19,41],[4,35],[-4,24],[11,28],[13,30],[-1,28],[-8,25],[0,45],[11,21],[15,23],[1,35],[13,35],[17,21],[12,35],[-1,27],[21,17],[11,21],[11,18],[16,12],[2,26],[-12,23],[-1,42],[-7,23],[3,30],[21,35],[2,30],[-6,24],[-9,20],[-4,31],[4,26],[1,25],[-4,25],[-22,36],[-12,30],[2,30],[13,30],[12,14],[-2,45],[-13,46],[-7,47],[6,37],[5,34],[-11,19],[12,14],[0,12],[10,23],[-4,26],[0,35],[-3,35],[-16,23],[8,35],[3,33],[7,5],[1,7],[1,11],[9,18],[52,29]],[[33615,55881],[-7,-19],[2,-25],[-2,-33],[-14,-25],[-15,-26],[-7,-30],[9,-28],[17,-21],[9,-24],[-15,-23],[-6,-30],[0,-29],[2,-27],[9,-33],[13,-25],[8,-35],[8,-26],[-11,-11],[-22,-28],[-9,-26],[2,-25],[-6,-33],[2,-30],[15,-17],[10,-23],[3,-23],[3,-26],[6,-21],[17,-23],[16,-26],[11,-16],[15,-7],[10,-21],[-5,-37],[-13,-16],[-10,-17],[-8,-35],[-2,-25],[-9,-26],[-13,-35],[-9,-25],[-7,-26],[-8,-35],[0,-39],[4,-24],[7,-37],[13,-23],[17,-28],[15,-30],[6,-21],[6,-21],[10,-24],[-4,-32],[-6,-23],[0,-38],[-2,-35],[-8,-28],[-1,-30],[7,-35],[3,-23],[-3,-33],[-9,-28],[-14,-25],[-5,-23],[9,-38],[2,-23],[3,-28],[2,-29],[10,-36],[2,-28],[-11,-35],[-12,-39],[9,-21],[17,-26],[4,-33],[8,-18],[5,-37],[-4,-31],[-9,-23],[-7,-21],[2,-42],[-3,-25],[-4,-24],[-3,-30],[-8,-51],[-3,-33],[-8,-28],[3,-35],[-2,-28],[-4,-28],[13,-7],[19,12],[26,7],[17,-2],[23,-17],[25,-13],[23,-7],[13,-5],[11,-12],[16,-11],[10,-17],[5,-25],[2,-38],[1,-25],[2,-28],[-3,-28],[-2,-28],[1,-35],[6,-25],[13,-21],[14,-31],[6,-21],[8,-39],[6,-26],[11,-28],[10,-16],[-1,-23],[0,-45],[22,-21],[12,-9],[13,-4],[17,-7],[16,2],[15,-2],[13,1],[25,1],[14,-6],[18,-10],[21,0],[26,-3],[14,-4],[11,-28]],[[34150,52755],[-175,1],[-1,0],[-772,8],[-1043,-8],[-31,0],[-32,-2],[-437,-6],[-57,-1],[-281,-1],[0,-44],[-1,-39],[-107,-1],[-19,0],[-22,0],[-206,0],[-14,0],[-309,-2],[-353,-2],[-71,-1],[-69,0],[-34,1],[-25,0],[-47,0],[-213,1],[1,-16],[-47,0],[-243,2],[-111,0],[-195,1],[-24,0],[-361,2],[-20,0],[-44,0],[-71,1],[-91,0],[-52,6],[-102,2],[-46,1],[-1,-24],[-143,2],[-439,5],[-52,0],[-147,2],[-18,-32],[-14,-49],[-25,-93],[-11,-54],[5,-34],[12,-54],[44,-52],[10,-7],[-11,-28],[-12,-55],[3,-35],[13,-21],[-16,-12],[-12,-10],[-12,-16],[-11,-16],[-11,-23],[-18,-9],[-23,-7],[-16,0],[-10,-17],[-15,-29],[-16,-21],[8,-32],[-11,-22],[-36,-5],[-22,-3],[-30,-6],[-29,-7],[-23,-7],[-17,-17],[-22,-26],[-15,-35],[-20,-42],[-4,-23],[-25,-44],[-14,-19],[-17,-15],[-34,6],[-5,-35],[-15,-19],[-28,-6],[-28,5],[-36,25],[-26,10],[-22,-14],[-30,-20],[-16,1],[-18,11],[-36,27],[-1,143],[-144,0],[-83,0],[-11,82],[-13,0],[-28,0],[-17,0],[-90,0],[-89,0],[0,-37],[-9,-17],[-15,12],[-15,5],[-12,6],[-22,-4],[-14,14],[-24,6],[-16,9],[-20,5],[-19,-23],[-27,-26],[-18,-3],[-33,-16],[-16,-11],[-17,-15],[-20,-3],[-15,9],[-22,5],[-25,14],[-15,21],[-13,16],[-7,24],[-30,4],[-14,10],[-17,16],[-24,12],[-20,16],[-17,0],[-13,-7],[-24,4],[-18,-4],[-22,-7],[-16,-2],[-21,-28],[-10,-19],[-18,-21],[-22,5],[-15,9],[-35,16],[-34,13],[-33,5],[-17,-17],[-13,-17],[-25,1],[-25,21],[-10,34],[-17,9],[-17,-4],[-14,0],[-25,-8],[-25,5],[-25,17],[-28,39],[-25,34],[-14,33],[-6,24],[-3,32],[-10,21],[-18,12],[-19,-2],[-29,-5],[-12,-12],[-14,-14],[-12,-14],[-23,-27],[-17,-14],[-12,-10],[-16,-7],[-16,-4],[-16,2],[-14,10],[-12,25],[-16,25],[6,40],[4,30],[-9,21],[-19,21],[-12,6],[-26,-2],[-35,-6],[-55,20],[-27,5],[-23,-4],[-13,-12],[-8,-23],[-20,-35],[-12,-7],[-18,-12],[-24,-7],[-24,-11],[-19,2],[-21,9],[-20,-2],[-14,-5],[-12,-2],[-15,-16],[-11,-12],[-15,-12],[-12,-6],[-24,-3],[-21,-7],[-21,-4],[-19,7],[9,50],[4,26],[1,31],[-2,39],[-7,26],[-12,19],[-14,13],[-14,-2],[-16,9],[-22,10],[-15,14],[-14,21],[-16,9],[-8,21],[-16,11],[-20,10],[-25,21],[-22,32],[-14,21],[-22,-7],[-24,3],[-35,0],[-16,-12],[-17,0],[-15,-2],[-23,12],[-31,38],[-18,7],[-14,9],[-31,3],[-26,12],[-57,41],[-18,15],[-18,13],[-18,-3],[-46,-17],[-27,-5],[-20,2],[-28,4],[-17,6],[-14,-2],[-12,-7],[-25,14],[-16,29],[-25,18],[-5,27],[-10,23],[-4,28],[-3,46],[11,30],[18,40],[3,23],[-23,47],[-12,23],[-3,26],[1,29],[-21,20],[-29,12],[-34,37],[-26,21],[-20,12],[-24,7],[-15,-9],[-25,-21],[-26,-10],[-20,-9],[-20,-4],[-20,35],[-11,12],[-19,7],[-28,10],[-10,20],[-24,13],[-13,2],[-18,12],[-18,28],[-20,-2],[-20,-19],[-18,-14],[-20,-12],[-22,17],[-17,28],[-21,2],[-20,5],[-21,11],[-10,19],[6,30],[8,21],[-18,14],[-13,2],[-20,14],[-31,-4],[-24,-12],[-19,2],[-21,7],[-32,-7],[-25,5],[-24,28],[-23,2],[-18,-4],[-20,2],[-26,5],[-23,28],[-15,23],[-13,31],[3,32],[10,24],[-9,30],[-16,-4],[-16,-12],[-29,-10],[-19,1],[-15,10],[-18,-14],[-15,-14],[-20,-14],[-21,3],[-28,14],[-24,0],[-14,-7],[-15,-5],[-18,0],[-21,-16],[-19,-5],[-18,9],[-12,10],[-20,23],[-12,14],[-25,32],[-13,12],[-20,14],[-16,14],[-16,0],[-22,-9],[-15,-10],[-68,-74],[-12,-13],[-19,-17],[-15,-14],[-32,-30],[-20,-2],[-81,12],[-27,3],[-21,12],[-15,9],[-12,7],[-14,5],[-28,7],[-32,-21],[-44,-16],[-25,-5],[-29,2],[-20,0],[-30,-38],[-16,-10],[-21,-38],[-9,-28],[-9,-28],[-11,-30],[-28,-11],[-14,-1],[-20,-2],[-13,-4],[-15,-5],[-22,7],[-32,25],[-13,-2],[-14,2],[-5,35],[-10,31],[-6,35],[-12,25],[-13,2],[-20,3],[-32,-10],[-30,-12],[-23,-5],[-13,0],[-19,20],[-15,16],[-16,9],[-84,50],[-12,4],[-30,0],[-13,-2],[-19,2],[-18,9],[-26,24],[-14,7],[-14,9],[-12,5],[-2,-241],[1,-80],[-2,-67],[-2,-290],[-88,1],[-45,0],[-98,1],[-112,2],[-125,1],[-1,-28],[-12,-186],[-2,-63],[-5,-138],[-3,-97],[-1,-82],[0,-145],[-1,-35],[0,-44],[-2,-387],[-1,-110],[0,-54],[-28,0],[-54,0],[-269,-1],[-43,0],[-106,0],[-145,0],[-134,-1],[-125,0],[-14,0],[-72,0],[-66,0],[-124,0],[-488,-3],[-58,0],[-100,-1],[-41,-1],[-42,3],[-8,0],[-135,-1],[-24,0],[-163,0],[-39,-1],[-25,0],[-172,0],[-248,-1],[-17,-1],[-456,3],[-8,7],[-4,3],[-6,35],[-1,7],[15,46],[41,70],[29,76],[20,38],[12,23],[1,33],[-9,106],[10,92],[17,30],[1,3],[3,5],[6,7],[30,40],[1,14],[0,20],[-10,36],[-9,33],[-11,26],[-18,19],[-18,4],[-24,2],[-24,-5],[-21,2],[-22,26],[-2,2],[-5,18],[0,1],[-6,19],[-8,61],[-1,10],[-14,27],[-26,33],[-33,26],[-5,3],[-3,5],[-27,39],[-1,1],[-7,9],[-2,13],[-3,20],[-2,15],[-3,20],[9,40],[0,4],[2,26],[0,4],[1,2],[0,1],[3,67],[-3,11],[-20,75],[-21,41],[-6,11],[-4,8],[-1,4],[-3,16],[-2,16],[0,4],[-1,8],[0,12],[5,13],[1,1],[1,4],[4,9],[5,8],[11,17],[6,9],[3,5],[23,25],[5,4],[1,1],[0,2],[3,42],[0,5],[0,8],[-3,52],[-3,47],[1,7],[4,44],[0,2],[1,13],[-21,38],[-28,53],[-1,1],[-1,2],[-64,65]],[[17060,53349],[-48,52],[-10,21],[-7,13],[-14,26],[-21,121],[-1,19],[0,10],[-1,37],[2,10],[19,94],[-2,15],[-9,51],[-4,22],[-10,25],[-5,8],[-13,19],[0,1],[-2,1],[-49,17],[-3,1],[-8,-4],[-5,-2],[-2,0],[-59,17],[-63,18],[-57,16],[-19,16],[-4,4],[-8,16],[-4,10],[-4,8],[-8,40],[-5,71],[0,1],[9,56],[-1,24],[0,15],[8,54],[2,12],[0,25],[-12,41],[-6,21],[-8,16],[-2,2],[-15,29],[-25,26],[-29,9],[-18,0],[-13,-1],[-8,-4],[-13,-6],[-16,0],[-26,0],[-65,-24],[-14,-5],[-15,5],[-27,8],[-34,27],[-1,3],[-10,18],[1,24],[6,19],[18,55],[0,2],[2,1],[27,24],[13,5],[29,7],[10,2],[20,4],[26,24],[2,2],[27,26],[31,65],[0,24],[-11,36],[-1,2],[-10,25],[-12,48],[-26,85],[-1,0],[-3,11],[1,15],[3,26],[-2,19],[-1,21],[15,41],[11,12],[15,15],[32,12],[5,2],[8,-2],[45,-11],[23,1],[13,1],[4,0],[0,8],[-8,105],[0,8],[-30,98],[-31,15],[-30,14],[-18,8],[-6,4],[-63,37],[-2,1],[-3,3],[-64,75],[-45,105],[-8,44],[6,30],[0,2],[2,2],[17,16],[4,4],[3,0],[18,3],[9,2],[33,4],[10,2],[24,25],[49,51],[29,30],[42,43],[15,18],[5,5],[0,3],[0,38],[-1,17],[-48,257],[-18,37],[-20,24],[-28,18],[0,1],[-12,36],[0,2],[0,8],[0,11],[-1,10],[16,29],[10,7],[14,11],[32,13],[10,3],[8,-6],[3,-3],[9,-6],[5,-11],[10,-18],[8,3],[21,8],[17,14],[4,3],[0,4],[7,29],[9,40],[-5,59],[-51,87],[-12,43],[-4,12],[-1,48],[2,18],[2,14],[16,60],[12,44],[17,18],[14,8],[3,2],[4,2],[5,1],[17,0],[1,0],[5,-2],[9,-3],[2,-1],[53,-5],[2,0],[30,6],[9,22],[1,6],[14,53],[1,3],[19,93],[0,2],[0,32],[-1,7],[-2,11],[-6,11],[-52,87],[-5,8],[-3,109],[0,24],[-7,30],[-10,41],[-30,133],[-20,137],[-1,22],[0,10],[10,38],[14,14],[8,20],[4,22],[2,13],[1,14],[0,2],[0,22],[-2,38],[-12,30],[-29,15],[-29,22],[-7,5],[-3,9],[-7,22],[-2,42],[-1,13],[10,21],[22,17],[27,16],[5,3],[1,2],[11,14],[6,17],[2,5],[-3,37],[-4,11],[-5,13],[1,25],[0,12],[3,13],[11,41],[19,82],[3,15],[0,11],[-1,28],[-1,23],[0,3],[-5,37],[-1,7],[-16,43],[-6,7],[-44,61],[-9,13],[-80,58],[-8,10],[-10,11],[-16,34],[-33,149],[-4,16],[-4,9],[-15,29],[-1,2],[-1,1],[-29,36],[-6,7],[-3,4],[-37,42],[-5,5],[-22,-10],[-32,-28],[-1,-2],[-6,-3],[-14,-7],[-2,-2],[-39,-6],[-14,3],[-6,1],[-9,2],[-13,15],[-7,8],[-7,8],[-8,34],[15,26],[13,23],[2,8],[30,110],[1,3],[14,33],[13,28],[48,106],[4,5],[9,12],[-1,11],[-4,53],[-9,28],[-2,6],[-38,39],[-7,5],[-68,49],[-37,30],[-12,5],[-37,12],[-18,14],[1,3],[1,10],[10,59],[7,43],[4,25],[20,62],[17,55],[17,49],[2,5],[35,102],[1,2],[2,1],[4,3],[170,114],[153,143],[3,3],[18,10],[16,3],[36,7],[84,17],[22,2],[67,7],[18,1],[101,-11],[12,-1],[19,5],[16,4],[31,8],[41,17],[14,32],[4,10],[6,17],[2,6],[1,11],[2,27],[1,10],[-2,12],[-4,23],[-1,1],[-1,2],[-9,17],[-27,24],[-17,5],[-43,8],[-39,11],[-32,25],[-12,32],[-4,9],[-1,4],[-1,13],[0,22],[-1,19],[6,24],[1,2],[15,31],[5,9],[14,9],[47,32],[85,58],[2,1],[2,4],[14,41],[3,7],[-1,19],[-1,41],[-10,70],[24,55],[22,23],[46,5],[15,-3],[6,-2],[4,2],[9,4],[13,7],[3,5],[13,19],[10,18],[5,27],[1,27],[-8,35],[-21,41],[4,49],[5,51],[15,55],[26,27],[19,21],[4,0],[27,2],[45,1],[77,4],[2,0],[1,0],[27,6],[2,0],[18,7],[7,1],[10,0],[135,9],[53,3],[18,1],[137,22],[42,1],[2,0],[28,4],[3,0],[2,0],[2,0],[2,1],[2,1],[2,1],[44,11],[4,0],[4,-1],[4,0],[4,0],[30,-1],[8,-1],[25,8],[58,20],[18,6],[15,5],[23,7],[10,4],[47,15],[35,12],[82,60],[33,24],[60,98],[3,6],[1,27],[0,9],[2,52],[-8,61],[-4,10],[-11,33],[-22,38],[-8,13],[-3,3],[-49,52],[-14,15],[-34,55],[-1,0],[0,1],[-16,78],[-19,86],[-2,11],[-9,6],[-44,27],[-10,7],[-89,-4],[-58,-28],[-22,-2],[-33,-3],[-16,5],[-23,7],[-21,7],[-13,19],[-10,16],[-33,132],[0,2],[-10,20],[-24,187],[-16,34],[-29,60],[-2,2],[-130,138],[-46,86],[-43,81],[-28,66],[-17,64],[0,54],[-22,83]],[[17060,53349],[-67,3],[-122,1],[-140,0],[-55,1],[-16,1],[-66,-3],[-39,-2],[-39,-1],[-25,0],[-33,0],[-81,-1],[-57,0],[-59,0],[-31,3],[-111,1],[-43,0],[-163,-1],[-147,-1],[-81,-2],[-188,-1],[-93,0],[-152,0],[-200,-1],[-51,0],[-74,0],[-136,-1],[-39,0],[-1,-59],[-64,-3],[-19,1],[-61,1],[-80,0],[-26,1],[-29,0],[-61,1],[-52,0],[-63,0],[-114,1],[-49,0],[-49,0],[-103,2],[-40,0],[-143,0],[-90,0],[-9,0],[-116,0],[-78,0],[-142,1],[-72,0],[-56,0],[-12,0],[-25,1],[-15,1],[-38,-3],[-19,0],[-14,1],[-28,0],[-41,1],[-48,1],[-28,1],[-57,0],[-23,-1],[-43,2],[-52,1],[-38,-1],[-25,-1],[-22,2],[-32,-1],[-26,-2],[-27,0],[-22,0],[-26,-1],[-65,-1],[-12,0],[-16,1],[-71,2],[-30,1],[-124,3],[-250,3],[0,-73],[-2,-44],[-84,4],[-63,6],[-41,3],[-13,1],[-72,6],[-48,6],[-49,0],[-16,1],[-16,-1],[-170,12],[-90,10],[-71,6],[-23,1],[-31,1],[-5,0],[-50,1],[-111,2],[-32,0],[-105,6],[-75,5],[-106,2],[-181,8],[-45,7],[1,25],[-4,58],[-44,-2],[-34,-1],[-26,1],[-18,0],[-15,0],[-84,1],[-76,1],[-76,0],[-72,-3],[-27,-2],[-25,1],[-43,0],[-114,-2],[-13,0],[-59,-1],[-18,-1]],[[60585,45792],[-56,0],[-138,0],[-464,0],[-122,0],[-374,-2],[-168,1],[-53,1],[-82,1],[-2,-377],[-1,-391],[0,-62],[-1,-249],[-1,-353],[-1,-380],[0,-148],[-1,-169],[0,-61],[-3,-551],[-1,-154],[0,-116],[-2,-333],[-2,-404],[-2,-289],[-2,-45],[0,-172],[0,-13],[0,-96],[-1,-163],[0,-111],[-1,-233],[0,-158],[0,-109],[-1,-117],[0,-53],[0,-51],[0,-126],[0,-158],[-1,-135],[0,-93],[0,-79],[0,-55],[-1,-72],[-42,1],[-63,0],[-53,0],[-209,1],[-17,0],[-55,0],[-194,0],[-75,1],[-196,0],[-137,1],[-2,0],[-115,1],[-58,0],[-47,0],[-177,2],[-49,-1]],[[57615,39723],[-482,-4],[-85,-1],[-162,-2],[-91,-1],[-44,-1],[-1,0],[-40,0],[-62,-3],[-289,2],[-14,0],[-131,-8],[-305,2],[-287,1],[-41,0],[-3,0],[-52,1],[-174,0],[-12,1],[-224,1],[-78,0],[-43,0],[-73,1],[-120,0],[-634,-4],[-217,-1],[-50,-1],[-170,2],[-23,-4],[-265,0],[-127,10],[-30,0],[-27,6],[-73,11],[-12,2],[0,61],[0,81],[0,233],[0,298],[-1,153],[0,103],[0,261],[0,72],[1,333],[0,31],[1,191],[0,92],[0,105],[-165,0],[-97,0],[-93,-1],[-1,0],[-310,-1],[-79,0],[-430,1],[-61,0],[-90,0],[-132,-4],[-30,0],[0,77],[-1,153],[0,38],[0,151],[-1,229],[-1,380],[0,4],[0,71],[0,41],[0,136],[-2,681],[0,62],[-5,0],[-192,0],[-32,-1],[-254,4],[-95,0],[-26,0],[-93,1],[-41,0],[-88,-1],[-16,0],[-75,1],[-241,2],[-73,2],[-125,1],[-123,2],[-29,3],[-96,-1],[-49,0],[-70,-1],[-89,-1],[-104,-1],[-67,0],[-123,-1],[-99,-2],[-273,-3],[-101,0],[-124,-1],[-74,0],[-16,2],[-107,-2],[-25,-1],[-126,-7],[-26,-1],[-57,-3],[-123,-2],[-34,-1],[-39,-1],[-44,-3],[-7,0],[-159,-1],[-13,1],[-155,-2],[-26,-5],[-41,2],[-28,-3],[-68,-2],[-53,3],[-81,1],[-34,0],[-27,-1],[-31,1],[-90,0],[-114,1],[-25,0],[-11,0],[-32,1],[-132,4],[-54,0],[1,83],[0,63],[-1,301],[0,66],[-1,85],[0,70],[-1,338],[-1,302],[0,30],[-1,670],[-12,-2],[-25,-5],[-38,0],[-33,0],[-41,0],[-24,0],[-197,0],[-26,0],[-103,0],[-87,7],[-37,2],[-131,10],[-20,-1],[-223,-13],[-254,5],[-236,14],[-91,3],[-306,13],[-79,4],[-18,1],[-30,1],[-85,4],[-63,2],[-332,15],[-88,4],[-165,7],[-64,3],[-72,3],[-61,2],[-1,210],[0,98],[-2,410],[0,188],[0,4],[-1,303],[0,85],[-1,263],[0,250],[-1,208],[0,91],[-1,189],[1,54],[1,332],[4,282],[0,93],[-1,98],[0,118],[-2,493],[-5,47],[-1,209],[-170,14],[-74,7],[-102,6],[-148,9],[-2,1],[-21,1],[-51,3],[-17,1],[-44,3],[-109,6],[-41,3],[-207,14],[-311,21],[-126,9],[-1,450],[0,53],[-1,280],[0,116],[0,134],[0,74],[-1,392],[0,309],[-1,64],[-34,1],[-36,1],[0,32],[2,274],[4,423],[0,280],[0,2],[-1,415],[-2,997],[0,74],[1,31],[3,130],[-2,30],[0,25],[-1,50],[1,66],[1,18],[0,188],[1,124],[0,40],[1,101],[0,6],[0,64],[0,98],[7,170],[1,130],[0,236]],[[90670,53761],[-23,-42],[-10,-29],[5,-37],[7,-22],[51,-157],[19,-28],[16,-17],[16,-13],[13,-17],[19,-19],[17,-20],[12,-14],[13,-19],[15,-33],[20,-47],[26,-45],[27,-45],[22,-30],[35,-41],[33,-33],[29,-27],[26,-24],[27,-18],[27,-20],[27,-27],[28,-27],[28,-30],[21,-30],[20,-27],[25,-32],[23,-19],[28,-9],[28,0],[28,-7],[15,-5],[16,-5],[27,-3],[22,-3],[23,2],[3,1],[20,5],[11,3],[14,-1],[24,0],[26,-1],[33,5],[14,3],[27,6],[34,20],[21,24],[22,33],[13,27],[10,30],[4,23],[1,23],[8,41],[15,34],[25,42],[24,39],[11,15],[30,44],[31,49],[15,16],[23,16],[12,7],[38,22],[26,10],[3,1],[28,5],[20,-3],[22,-8],[21,-11],[24,-26],[21,-33],[25,-43],[27,-55],[22,-52],[12,-37],[9,-53],[7,-38],[6,-60],[11,-60],[18,-48],[16,-27],[27,-37],[62,-86],[32,-45],[33,-30],[19,-20],[34,-32],[24,-22],[17,-18],[10,-14],[14,-30],[21,-40],[6,-10],[8,-15],[19,-22],[17,-20],[13,-21],[9,-21],[4,-27],[5,-34],[5,-30],[12,-36],[14,-16],[16,-17],[13,-9],[20,-8],[11,2],[5,0],[20,6],[17,16],[12,21],[8,31],[9,50],[8,51],[9,53],[2,32],[2,29],[4,22],[19,34],[32,31],[23,30],[11,13],[15,16],[18,16],[16,10],[29,6],[24,0],[28,-9],[15,-12],[15,-15],[20,-19],[13,-10],[17,-10],[23,-6],[20,2],[24,4],[2,0],[23,6],[23,7],[7,2],[12,3],[25,2],[15,-2],[16,-11],[15,-9],[15,-4],[34,-4],[14,3],[57,1],[55,2],[14,0],[61,-26],[1,0],[23,-10],[37,-17],[14,-8],[29,-67],[2,-10],[9,-34],[5,-21],[3,-35],[0,-24],[-12,-62],[-13,-51],[-4,-28],[2,-27],[3,-35],[7,-28],[28,-68],[11,-23],[-1,-29],[1,-32],[-14,-64],[-16,-52],[-3,-26],[-6,-35],[-2,-15],[-2,-45],[5,-58],[9,-104],[2,-26],[4,-45],[18,-40],[23,-22],[18,-18],[22,-10],[26,-9],[22,-7],[38,-12],[91,-26],[20,-6],[24,-7],[8,1],[11,2],[19,15],[30,28],[15,9],[4,2],[16,2],[26,1],[9,1],[23,-2],[9,-4],[29,-13],[41,-19],[26,-11],[17,-17],[2,-31],[6,-30],[13,-25],[13,-17],[27,-27],[30,-32],[19,-22],[30,-20],[25,-14],[16,-10],[15,-4],[21,-6],[24,-11],[19,-9],[26,-42],[17,-31],[21,-53],[20,-47],[13,-30],[9,-74],[1,-37],[9,-97],[2,-49],[-3,-49],[-12,-49],[-8,-40],[-14,-26],[-12,-17],[-10,0],[-15,-22],[-22,-35],[-11,-34],[1,-32],[-9,-49],[-12,-17],[-39,-38],[-24,-22],[-34,-43],[-17,-98],[-8,-67],[0,-63],[-7,-43],[-5,-25],[-15,-27],[-15,-29],[-17,-24],[-19,-20],[-17,-26],[-20,-22],[-20,-21],[-11,-15],[-12,-21],[-8,-24],[-10,-27],[-13,-26],[-7,-28],[-3,-39],[12,-23],[6,-23],[0,-40],[-5,-30],[-42,-113],[-25,-56],[-28,-45],[-23,-27],[-23,-27],[-6,-8],[-19,-20],[-17,-12],[-9,-5],[-12,-7],[-22,-8],[-3,-1],[-12,-2],[-49,-12],[-13,-3],[-2,0],[-10,-2],[-7,-1],[-16,-7],[-13,-8],[-11,-2],[-2,-1],[-10,-2],[-13,-3],[-1,0],[-11,-2],[-14,-2],[-8,0],[-23,1],[-20,-3],[-5,-1],[-22,-12],[-20,-16],[-6,-5],[-15,-12],[-13,-10],[-13,-13],[-10,-9],[-7,-13],[-9,-18],[-6,-11],[-4,-22],[15,-34],[2,-28],[-1,-18],[0,-45],[2,-56],[0,-39],[8,-38],[3,-42],[-4,-49],[-1,-27],[1,-26],[-1,-63],[3,-29],[5,-25],[8,-31],[5,-27],[3,-27],[2,-47],[-2,-32],[-6,-43],[2,-39],[4,-29],[4,-31],[14,-19],[64,-40],[79,-31],[18,-7],[17,-13],[12,-13],[5,-29],[14,-32],[0,-1],[29,-36],[13,-8],[18,-19],[52,-48],[33,-25],[17,-24],[30,-58],[28,-64],[15,-52],[11,-53],[6,-24],[3,-60],[-3,-27],[-7,-47],[-12,-44],[-5,-29],[1,-36],[2,-36],[-4,-28],[-9,-24],[-25,-36],[-21,-28],[0,-1],[-21,-33],[-13,-21],[-11,-17],[2,-30],[3,-57],[0,-13],[36,-18],[41,-119],[1,-4],[1,-2],[17,-46],[1,-6],[12,-79],[1,-5],[-5,-6],[-40,-57],[-17,-23],[-105,10],[-10,1],[-6,-10],[-9,-14],[-24,-39],[-11,-16],[-6,-23],[-14,-53],[-7,-27],[-11,-79],[-22,-31],[-3,-5],[-15,-8],[-29,-17],[-17,-10],[-70,-39],[-23,-14],[-45,-57],[-21,-28],[-10,-127],[0,-5],[40,-51],[125,-9],[28,-2],[18,-20],[1,-1],[0,-2],[-4,-23],[-9,-52],[-8,-45],[-6,-37],[-5,-45],[-5,-38],[-66,-85],[-7,-9],[3,-36],[5,-49],[0,-7],[1,-3],[9,-25],[7,-21],[53,-37],[27,-17],[3,-1],[0,-4],[14,-108],[3,-22],[-25,-144],[-8,-46],[-2,-13],[-1,-12],[-18,-9],[-79,-3],[-2,0],[-3,0],[-52,-2],[-46,-23],[-4,-2],[-24,-17],[-2,-1],[0,-6],[-2,-27],[-1,-3],[1,-5],[15,-51],[7,-18],[2,-5],[6,-16],[11,-57],[0,-3],[2,-9],[7,-111],[4,-167],[-3,-11],[-14,-50],[-5,-19],[-13,-47],[-5,-20],[-11,-38],[-4,-14],[-8,-25],[-26,-79],[0,-4],[0,-22],[0,-6],[-1,-15],[0,-14],[0,-36],[1,-5],[1,-5],[2,-14],[7,-34],[7,-35],[3,-37],[-2,-56],[-7,-26],[-8,-11],[-7,-10],[-16,-13],[-20,-10],[-13,-9],[-5,-8],[-5,-6],[-25,-18],[-6,-4],[-4,0],[-17,3],[-6,1],[-5,0],[-4,3],[-15,7],[-23,9],[-11,-3],[-9,-2],[-24,-16],[-36,-12],[-10,-2],[-5,-1],[-21,-3],[-24,-6],[-3,-1],[-31,-10],[-49,-36],[-26,-19],[-21,-16],[-20,-37],[-8,-30],[5,-34],[2,-4],[11,-22],[27,-25],[38,-17],[2,-1],[18,-13],[7,-6],[24,-36],[7,-53],[-3,-62],[-1,-8],[-9,-47],[-4,-30],[-1,-3],[-15,-24],[-17,-6],[-5,-2],[-3,1],[-24,6],[-26,15],[-32,23],[-17,2],[-18,-4],[-1,-1],[-4,-3],[-16,-13],[-19,-31],[-20,-39],[-4,-7],[-18,-45],[-11,-32],[0,-30],[6,-22],[-12,-43],[1,-30],[35,-42],[3,-3],[38,-38],[31,-33],[9,-21],[13,-58],[3,-23],[-4,-50],[-2,-33],[-3,-10],[-9,-37],[-8,-17],[-6,-11],[-2,-4],[-4,-10],[-7,-17],[-13,-48],[0,-3],[-4,-23],[-1,-33],[2,-23],[-1,-53],[0,-87],[0,-25],[0,-69],[0,-41],[0,-47],[0,-52],[1,-216],[0,-51],[0,-57],[0,-46],[0,-63],[0,-17],[0,-56],[1,-142],[0,-24],[-1,-35],[0,-32],[2,-187],[-4,-105],[0,-207],[0,-59],[-2,-24],[1,-128],[0,-50],[0,-139],[0,-97],[2,-40],[-1,-36],[1,-62],[0,-26],[0,-29],[-2,-137],[0,-104],[1,-61],[-1,-95],[0,-153],[2,-24],[0,-30],[0,-14],[0,-1],[-1,1],[-10,11],[0,-3],[-1,-30],[-2,-59],[0,-32],[0,-47],[1,-125],[0,-99],[-2,-338],[0,-69],[-1,-131],[2,-123],[0,-91],[-1,-31],[-1,-118],[0,-17],[-1,-80],[0,-57],[1,-33],[2,-157],[0,-198],[-1,-36],[0,-24],[-1,-77],[0,-56],[-1,-43],[2,-79],[-1,-61],[0,-39],[0,-34],[2,-92],[0,-47],[2,-65],[-1,-26],[-3,-187],[0,-33],[0,-75],[-1,-334],[0,-36],[2,-497],[1,-152],[1,-393],[0,-102],[-1,-261],[1,-789],[0,-39],[0,-196],[0,-443],[0,-157],[0,-628],[0,-120],[0,-164],[-2,-935],[1,-452],[0,-201],[1,-177],[0,-438],[0,-107],[0,-287],[0,-286],[0,-21],[0,-6],[0,-114],[0,-76],[0,-88],[0,-172],[0,-89],[0,-376],[0,-269],[0,-171],[-1,-85],[-1,-471],[0,-28],[0,-61],[0,-231],[0,-145],[0,-54],[0,-57],[1,-120],[-1,-118],[0,-39],[0,-4],[0,-27],[0,-65],[2,-50],[-2,-151],[1,-349],[0,-129],[0,-31],[1,-357],[1,-115],[0,-29],[0,-156],[0,-164],[0,-112],[-1,-164],[0,-57],[0,-125],[0,-320],[0,-68],[1,-91],[0,-80],[1,-327],[1,-84],[0,-96],[2,-547],[0,-44],[-1,-214],[0,-86],[0,-2],[0,-38],[-1,-32],[0,-142],[1,-394],[-1,-391],[-1,-221],[0,-91],[1,-189],[1,-394],[0,-29],[1,-121],[0,-77],[0,-12],[0,-42],[0,-39],[0,-111],[0,-60],[0,-111],[1,-360],[0,-84],[-1,-77],[0,-223],[0,-43],[0,-27],[0,-109],[-1,-84],[0,-44],[0,-70],[0,-17],[0,-257],[0,-120],[0,-321],[0,-109],[-1,-148],[0,-244],[-1,-136],[0,-36],[0,-199],[0,-50],[0,-245],[0,-98],[0,-26],[0,-203],[0,-278],[-1,-148],[0,-151],[0,-58],[-1,-972],[0,-60],[0,-182],[0,-68],[1,-253],[0,-5],[0,-95],[1,-185],[0,-147],[0,-111],[1,-314],[0,-94],[0,-143],[0,-11],[0,-53],[0,-278],[0,-5],[0,-483],[0,-30],[0,-63],[0,-185],[0,-54],[0,-130],[0,-190],[-1,-80],[-1,-225],[1,-338],[1,-237],[0,-41],[0,-167],[0,-145],[0,-177],[0,-286],[0,-5],[0,-52],[0,-69],[0,-224],[0,-145],[-1,-390],[0,-52],[0,-240],[0,-31],[0,-86],[5,-412],[0,-254],[0,-498],[0,-10],[0,-28],[-3,-339],[0,-429],[0,-274],[1,-264],[0,-281],[0,-121],[1,-358],[0,-364],[0,-60],[0,-370],[0,-50],[0,-82],[-1,-90],[0,-241],[1,-328],[0,-77],[-2,-300],[-1,-273],[-2,-122],[0,-194],[6,-169],[0,-44],[0,-453],[-1,-69],[-1,-429],[0,-3],[-1,-301],[1,-253],[1,-772],[0,-417],[-4102,-19],[-1879,-8],[-59,0],[-2498,-11],[-240,-2],[-2259,-10],[-759,-3],[-87,0],[-55,-1],[-87,0],[-318,-1],[-2098,-10]],[[78610,119],[-1,163],[0,174],[1,92],[0,95],[0,147],[0,245],[1,370],[0,140],[0,213],[0,10],[0,214],[0,177],[1,333],[0,447],[0,42],[0,50],[0,29],[-1,36],[4,408],[1,99],[3,455],[2,285],[4,472],[0,70],[1,202],[2,299],[1,620],[3,511],[0,94],[-239,4],[0,158],[0,158],[0,6],[0,124],[0,121],[0,271],[0,281],[0,60],[-1,248],[0,82],[0,83],[0,201],[0,104],[0,155],[0,84],[0,165],[0,33],[0,62],[-1,561],[0,104],[-1,944],[0,143],[-1,943],[0,120],[-4,854],[-4,893],[0,167],[0,147],[0,223],[-1,196],[3,181],[-2,105],[-1,143],[0,53],[-1,215],[0,53],[0,220],[0,227],[0,171],[-1,966],[0,48],[-1,571],[1,386],[-2,331],[0,25],[0,34],[-3,914],[0,26],[-1,103],[-1,28],[0,206],[1,116],[0,37],[0,26],[-1,271],[-1,629],[1,164],[-1,661],[-1,262],[-107,1],[-45,0],[0,209],[0,109],[0,31],[-1,714],[5,784],[1,53],[0,28],[2,58],[-3,401],[5,361],[-4,49],[1,49],[0,139],[0,268],[-1,76],[1,81],[-2,39],[2,543],[1,245],[0,66],[-1,191],[0,401],[0,147],[0,106],[0,48],[1,82],[0,9],[0,176],[0,34],[0,37],[1,366],[1,234],[0,108],[0,68],[1,139],[0,558],[1,120],[0,88],[0,59],[3,483],[0,40],[0,307],[0,52],[0,330],[0,98],[0,43],[-1,79],[0,1],[0,394],[0,217],[0,275],[-1,243],[0,280],[-49,-1],[0,218],[-1,382],[0,299],[0,205],[0,149],[0,321],[0,101],[0,337],[0,29],[1,54],[0,32],[0,41],[0,152],[0,562],[0,96],[0,532],[-2,128],[0,217],[-1,728],[0,24],[-1,392],[0,230],[0,84],[0,26],[-1,123],[0,99],[0,10],[0,78],[0,30],[-1,323],[0,124],[0,293],[0,168],[0,2],[0,23],[1,221],[1,389],[0,105],[2,640],[1,130],[0,179],[1,99],[2,777],[0,58],[4,76],[-1,25],[2,5],[-5,13],[0,18],[0,273],[-1,387],[32,2],[21,2],[0,51],[0,199],[0,35],[1,791],[0,281],[0,407],[0,23],[0,24],[0,43],[0,374],[0,111],[0,28],[0,602],[0,724],[1,1254],[0,18],[0,63],[0,97],[0,16],[0,269],[0,169],[0,60],[0,45],[0,95],[1,292]],[[57615,39723],[1,-203],[1,-108],[0,-79],[1,-244],[2,-133],[1,-93],[3,-256],[2,-106],[8,-617],[-26,-254]],[[57608,37630],[-1198,38],[-51,1],[-411,13],[-1606,7],[-2617,12],[-675,7],[-6667,78],[-4477,7]],[[39906,37793],[-643,28],[-88,0],[-48,0],[-29,0],[-341,1],[-31,0],[-99,0],[-137,0],[-133,0],[-75,1],[-78,0],[-86,0],[-90,0],[-18,0],[-50,0],[-98,0],[-2,0],[-29,1],[-66,0],[-22,0],[-94,-2],[-49,1],[-19,0],[-29,0],[-63,1],[-69,-1],[-100,0],[-39,0],[-27,0],[-1,0],[-36,-1],[-174,-2],[-227,-3],[-30,1],[-46,0],[-33,0],[-18,0],[-56,0],[-26,0],[-1,0],[-36,0],[-15,1],[-22,1],[-52,0],[-58,-1],[-83,-1],[-52,-3],[-52,0],[-64,-1],[-118,0],[-166,0],[-142,-1],[-113,-1],[-59,0],[-23,0],[-204,-1],[-32,1],[-108,-1],[-59,0],[-150,1],[-27,0],[-50,0],[-79,0],[-50,0],[-47,1],[-56,-1],[-48,-1],[-146,-4],[-34,0],[-139,-3],[-43,-1],[-70,-1],[-139,-3],[-18,0],[-39,-1],[-30,-1],[-45,0],[-14,-1],[-39,0],[-16,0],[-23,0],[-12,0],[-193,0],[-380,2],[-15,0],[-11,0],[-33,0],[-52,1],[-14,-1],[-54,0],[-47,1],[-29,0],[-27,-1],[-13,-1],[-40,1],[-36,1],[-19,0],[-23,0],[-17,0],[-30,0],[-14,0],[-31,0],[-131,-1],[-242,0],[-241,-1],[-246,-2],[-237,-2],[-19,-4]],[[31640,37789],[9,57],[2,57],[-2,57],[13,38],[2,29],[7,19],[16,9],[15,8],[19,-2],[14,-5],[26,-11],[17,-11],[21,-2],[22,1],[17,-1],[19,1],[26,1],[29,-1],[23,-3],[14,1],[14,4],[21,2],[17,5],[15,0],[25,3],[18,4],[15,3],[13,10],[19,3],[-9,17],[-12,-8],[-13,-1],[-16,26],[-6,27],[-10,20],[-11,13],[-17,21],[-12,31],[-7,35],[-9,20],[-17,13],[-11,12],[-18,16],[-19,41],[-8,20],[3,39],[-7,26],[-14,29],[-7,27],[-7,28],[-3,26],[-8,28],[-6,29],[-5,23],[-3,25],[-10,24],[-10,29],[9,25],[9,38],[-5,26],[-1,37],[-2,42],[20,89],[-2,42],[6,25],[11,41],[18,51],[9,21],[4,48],[1,37],[8,35],[6,32],[3,46],[-4,34],[5,38],[5,38],[6,29],[10,26],[13,28],[16,14],[17,21],[10,31],[2,34],[0,38],[8,24],[15,28],[15,30],[15,26],[11,23],[8,23],[-3,40],[-15,10],[-18,-4],[-21,8],[-11,17],[-13,27],[-8,33],[-6,26],[-5,30],[2,44],[4,28],[4,23],[16,25],[-5,32],[-8,31],[-9,38],[-10,34],[-9,14],[-11,20],[-11,28],[1,26],[15,40],[17,46],[10,23],[11,33],[-14,15],[-9,36],[4,35],[-5,27],[-14,12],[-12,17],[-9,18],[-11,21],[-10,37],[-11,45],[6,21],[17,16],[13,17],[14,22],[15,19],[18,32],[-6,25],[0,25],[52,8],[8,18],[-16,14],[-7,28],[8,25],[28,67],[10,20],[8,28],[11,16],[13,20],[17,19],[7,20],[13,17],[15,21],[-14,9],[-13,6],[-14,5],[-12,3],[-14,18],[-19,21],[-14,30],[0,44],[2,25],[-1,38],[5,43],[9,22],[35,52],[17,10],[14,9],[12,20],[14,28],[0,24],[-15,6],[-15,9],[-18,25],[-21,43],[-7,21],[-8,41],[-4,22],[-3,38],[3,33],[10,36],[-1,38],[-3,40],[-2,31],[-9,71],[12,15],[12,11],[12,24],[16,18],[-8,21],[-3,24],[2,36],[7,20],[7,30],[-14,22],[-17,22],[-13,16],[-16,18],[-28,3],[-12,-10],[-21,-24],[-24,5],[0,37],[8,44],[4,23],[2,33],[-3,29],[1,25],[0,26],[4,37],[3,25],[0,26],[6,37],[-2,35],[1,30],[-14,-8],[-8,-26],[-16,-4],[-12,13],[-1,27],[11,30],[-2,26],[7,33],[2,26],[12,38],[1,37],[2,24],[-1,43],[7,37],[-2,37],[-6,22],[-13,33],[-1,35],[3,37],[7,20],[6,33],[-7,21],[2,28],[0,27],[-1,38],[6,34],[12,18],[13,23],[-4,23],[6,20],[54,77],[25,21],[18,21],[2,35],[-1,36],[9,37],[22,25],[6,24],[4,28],[-7,28],[-11,19],[3,25],[16,5],[13,10],[12,17],[13,9],[13,7],[12,17],[14,13],[16,10],[15,15],[16,14],[14,4],[26,1],[20,9],[14,10],[16,23],[10,16],[14,29],[14,25],[15,22],[13,23],[9,16],[19,31],[15,22],[14,17],[14,5],[9,22],[2,34],[4,25],[9,29],[-10,23],[-18,10],[-19,11],[-16,10],[-13,6],[-14,2],[-10,13],[9,20],[19,26],[16,21],[17,14],[19,12],[13,3],[14,17],[13,29],[10,23],[11,22],[14,-9],[15,-10],[16,2],[11,16],[7,27],[4,24],[10,19],[10,18],[11,20],[13,5],[12,15],[16,-6],[11,-23],[7,-24],[12,4],[13,-5],[16,-2],[12,12],[12,14],[16,6],[14,3],[13,-12],[15,10],[7,21],[11,12],[13,13],[16,-1],[11,-13],[7,-27],[8,-29],[13,-17],[17,-7],[15,-15],[18,-9],[15,3],[12,-19],[1,-29],[12,-12],[19,5],[17,2],[21,-9],[19,-4],[19,6],[21,-11],[19,-2],[15,3],[22,-1],[12,13],[10,18],[14,18],[15,18],[17,23],[17,-1],[14,25],[2,25],[9,26],[2,27],[14,21],[3,24],[8,30],[3,28],[-12,17],[-15,18],[-17,19],[-9,19],[17,5],[14,26],[10,24],[2,27],[6,23],[7,33],[1,26],[-2,33],[9,21],[17,15],[5,27],[12,11],[1,24],[-3,32],[6,23],[1,28],[4,24],[-2,23],[5,27],[10,18],[14,18],[10,23],[-14,18],[1,28],[14,31],[-2,24],[2,26],[-6,20],[-9,18],[-3,23],[15,19],[-4,22],[-7,25],[-2,27],[-9,23],[1,25],[0,23],[5,26],[12,21],[8,18],[3,24],[14,8],[12,16],[10,15],[11,14],[12,-8],[14,-2],[17,7],[12,9],[12,8],[12,-5],[17,-1],[13,9],[10,14],[18,15],[15,14],[15,12],[17,14],[16,11],[12,5],[-7,20],[-14,3],[-12,7],[-14,2],[-16,-1],[-14,12],[-13,20],[-12,17],[-3,26],[5,23],[6,22],[9,17],[11,25],[15,15],[12,17],[17,14],[16,16],[13,26],[6,22],[4,24],[-5,28],[11,21],[13,-1],[16,-1],[13,4],[13,5],[17,12],[8,24],[-12,-1],[-14,14],[-10,23],[-15,21],[14,18],[15,19],[12,19],[8,18],[5,25],[11,23],[10,17],[5,30],[10,22],[0,4],[11,49],[5,26],[10,37],[0,26],[-2,28],[4,25],[10,19],[10,23],[5,35],[-1,26],[-5,28],[-2,23],[-10,28],[-12,28],[-4,26],[-2,27],[2,31],[-2,23],[-6,21],[-11,19],[-15,37],[-2,43],[2,29],[-3,23],[-17,30],[-15,13],[-16,13],[-10,26],[0,32],[-3,31],[-18,11],[-12,14],[-4,28],[10,21],[4,23],[9,21],[12,14],[11,14],[16,-4],[15,2],[12,23],[19,19],[10,14],[12,14],[11,16],[17,33],[13,30],[11,16],[8,21],[7,30],[9,19],[18,-2],[18,-10],[13,19],[16,19],[13,4],[14,0],[14,-5],[19,-4],[19,-5],[32,-4],[19,0],[13,18],[1,37],[4,31],[11,18],[7,26],[6,28],[10,26],[14,13],[17,21],[8,19],[9,42],[7,28],[9,35],[8,23],[12,26],[5,28],[15,28],[14,25],[2,30],[1,24],[14,16],[11,23],[17,7],[21,19],[19,23],[13,12],[20,18],[5,24],[4,35],[11,23],[10,21],[7,28],[-1,25],[5,38],[15,16],[16,9],[16,19],[5,28],[3,35],[5,32],[-1,33],[-1,28],[2,37],[7,26],[15,21],[9,23],[0,36],[-6,24],[1,24],[0,35],[-4,23],[-2,23],[1,23],[8,33],[7,19],[5,32],[5,28],[-3,26],[-10,23],[-6,23],[0,26],[-2,26],[-7,30],[-10,25],[-7,24],[0,25],[9,31],[-7,21],[-4,27],[2,38],[4,28],[-7,25],[-10,26],[-1,30],[3,23],[-7,26],[-1,37],[5,47],[-14,14],[-10,18],[-11,19],[-14,26],[-12,23],[-16,21],[-22,16],[-20,9],[-12,17],[-13,32],[8,28],[1,26],[5,25],[-4,38],[-2,8],[0,18],[4,6],[9,8],[11,10],[5,5],[9,15],[-5,30],[-1,22],[0,10],[-9,35],[14,5],[13,9],[18,-4],[8,-3],[23,0],[40,75],[-1,35],[3,25],[11,21],[-14,21],[-6,24],[-19,27],[-27,19],[-11,12],[-9,21],[-7,30],[-7,23],[-5,28],[8,23],[15,26],[9,33],[2,30],[9,23],[11,14],[16,23],[6,63],[-12,35],[1,42],[1,23],[-14,19],[-20,19],[-13,21],[-19,27],[-16,17],[7,21],[-7,23],[-14,30],[3,26],[16,37],[-3,28],[-17,9],[-5,28],[9,21],[9,17],[-24,7],[-15,16],[-9,21],[-10,30],[12,21],[13,16],[-5,26],[-8,23],[-7,33],[7,23],[6,30],[13,10],[20,14],[21,9],[19,14],[8,28],[1,23],[-5,33],[-7,39],[-9,19],[-11,16],[-10,16],[-12,5],[-15,5],[-11,18],[-6,26],[-7,35],[-4,28],[-1,32],[-7,33],[-8,23],[-5,31],[-4,23],[-4,35],[3,25],[-3,28],[-1,31],[-11,25],[-11,23],[-7,33],[5,35],[8,23],[-2,24],[-5,23],[-14,16],[-11,19],[-11,11],[-14,21],[-12,21],[-20,14],[-14,35],[-5,28],[-20,40]],[[6249,46011],[-17,-21],[-60,14],[-92,-23],[-43,35],[30,75],[111,89],[65,4],[27,-77],[-4,-11],[-17,-85]],[[31640,37789],[-13,-25],[-12,-11],[-12,-13],[-15,-26],[-14,-24],[-14,-19],[-11,-13],[-14,-7],[-31,3],[-17,3],[-15,-2],[-13,-7],[-14,-17],[-15,-28],[-21,-20],[-17,-5],[-24,-1],[-22,-13],[-13,-22],[-15,-13],[-12,-10],[-62,-46],[-35,-29],[-22,-9],[-14,-1],[-17,-12],[-27,-22],[-21,-16],[-22,-17],[-17,-21],[-18,-25],[-20,-23],[-11,-16],[-8,-3],[-8,-2],[-23,-19],[-21,-11],[-17,-18],[-11,-22],[-13,-14],[-11,-23],[-3,-24],[-18,-14],[-21,7],[-21,4],[-16,-10],[-13,-9],[-13,-4],[-18,9],[-12,8],[-15,7],[-14,-7],[-5,-26],[10,-23],[12,-12],[18,-19],[13,-17],[11,-22],[-7,-38],[-16,-18],[-17,-1],[-12,2],[-15,-3],[-15,-17],[-19,-23],[-42,14],[-27,16],[-20,13],[-22,11],[-24,-9],[-49,-20],[-40,-25],[-34,-25],[-23,-25],[-27,-31],[-13,-19],[-15,-23],[-6,-56],[-10,-16],[-24,-31],[-18,-27],[-16,-39],[-11,-22],[-9,-18],[-21,-16],[-13,-9],[-19,-11],[-13,7],[-13,11],[-16,6],[-24,-9],[-18,-21],[-6,-28],[-13,-23],[-11,-17],[-17,-21],[-16,-11],[-15,-9],[-19,-62],[-7,-20],[-9,-39],[-5,-28],[-8,-22],[0,-45],[-5,-38],[-14,-31],[-22,-43],[-22,-38],[-19,-31],[-8,-34],[-4,-36],[1,-30],[8,-37],[8,-36],[8,-31],[3,-26],[-24,-27],[-15,-9],[-22,-9],[-13,-32],[-8,-33],[1,-25],[-8,-35],[-10,-19],[-11,-22],[0,-35],[6,-34],[7,-35],[6,-24],[11,-14],[16,-16],[18,-13],[22,-16],[14,-5],[14,-5],[17,-8],[15,-5],[19,-15],[12,-13],[14,-18],[15,-25],[9,-24],[9,-21],[8,-18],[6,-25],[0,-48],[-4,-28],[-5,-26],[-5,-25],[8,-40],[12,-32],[-1,-31],[-26,-25],[-12,-31],[-22,-55],[18,-47],[11,-37],[2,-51],[-19,-61],[1,-65],[1,-61],[3,-53],[-26,-26],[-5,-51],[-37,-53],[-16,-31],[-12,-39],[-16,-65],[0,-35],[-19,-21],[-14,-28],[12,-35],[-17,-68],[-28,-51],[-9,-79],[-37,-14],[-26,-37],[16,-30],[16,-38],[25,-25],[31,-26],[25,30],[16,24],[22,11],[27,-18],[34,-40],[39,-27],[10,-22]],[[30044,33720],[-34,0],[-130,0],[-56,0],[-33,0],[-199,-1],[-132,0],[-132,-1],[-2,0],[-29,0],[-292,0],[-241,-1],[-190,0],[-32,0],[-94,0],[-131,1],[-188,2],[-98,0],[-50,1],[-35,0],[-25,0],[-171,1],[-99,1],[-118,1],[-287,2],[-56,0],[-10,0],[-14,0],[-135,1],[-75,1],[-17,0],[-86,0],[-106,1],[-302,2],[-13,0],[-56,1],[-247,1],[-72,1],[-233,1],[-213,2],[-107,0],[-16,1],[-90,1],[0,-24],[0,-4],[-89,0],[-75,1],[-185,1],[-16,0],[-71,1],[-16,0],[-89,1],[-155,1],[-233,1],[-33,1],[-17,0],[-190,0],[-27,0],[-138,0],[-70,0],[0,-44],[-49,-2],[-82,-1],[-144,-3],[-41,-1],[-28,-1],[-48,-1],[-19,0],[-274,-6],[-439,-9],[-51,-1],[-289,-6],[1,122],[2,359],[0,92],[1,146],[1,81],[0,18],[0,67],[0,48],[0,124],[-6,266],[-5,137],[-3,397],[0,70],[0,27],[0,85],[-1,173],[-1,54],[-1,235],[-1011,-37],[-972,-35],[-2550,-92],[-8,1526],[24,67],[-98,-68],[-75,51],[-49,20],[-6,-72],[-155,-1],[12,3498],[0,59],[2,557],[-122,0],[-78,0],[-268,0],[-23,0],[-106,0],[-384,0],[-13,0],[-44,0],[-26,0],[-199,0],[-139,3],[-286,2],[-28,0],[-63,1],[-34,0],[-13,0],[-53,0],[-97,1],[-15,0],[-73,1],[-12,0],[-38,0],[-377,3],[-45,0],[-56,0],[-2,456],[-3,219],[-239,-12],[-48,0],[-61,2],[-145,3],[-58,5],[-17,-3],[-3,-1],[-36,0],[-175,4],[-143,6],[-27,1],[-49,2],[-19,0],[-34,1],[-74,2],[-84,3],[-299,11],[-2,12],[-1,363],[0,50],[0,11],[1,5],[-1,14],[0,18],[-34,-1],[-57,-3],[-4,-2],[-1,0],[-50,-2],[-315,-9],[-87,-2],[-93,-3],[-80,-2],[0,73],[1,92],[0,48],[0,40],[0,53],[0,53],[0,33],[1,316],[0,180],[0,13],[-132,0],[-168,-1],[-242,0],[-84,0],[0,19],[2,128],[0,387],[-134,3],[-192,6],[-158,4],[-7,0],[0,273],[0,286],[0,104],[-145,7],[-165,8],[-14,1],[-6,0],[-159,7],[0,13],[-2,0],[1,108],[1,138],[0,84],[-32,2],[-44,1],[-193,8],[-282,11],[-1,174],[2,20],[-24,0],[-65,-2],[-223,-6],[-57,-1],[-66,-3],[-65,-2],[-69,-2],[-24,-1],[-89,2],[-35,0],[-566,8],[-12,1],[-14,0],[-223,4],[-2,-47],[8,0],[0,-9],[-61,-1],[0,-13],[-2,-3],[-1,-6],[-1,-14],[-4,-11],[-4,-128],[-57,1],[-1,-81],[-46,0],[0,-66],[-15,-1],[-1,-30],[-13,1],[-44,2],[-1,-9],[13,1],[0,-50],[-18,0],[-2,-28],[-49,4],[1,-16],[16,-1],[-1,-25],[-1,-17],[-28,-4],[-1,-20],[-27,2],[-80,3],[1,-27],[10,0],[-1,-46],[-24,3],[0,-9],[-49,-3],[-56,-4],[1,-31],[7,0],[0,-37],[-24,0],[0,-2],[-39,-1],[-2,-50],[8,-1],[-1,-38],[-19,0],[-1,-3],[-4,-3],[0,6],[0,5],[-44,1],[2,-55],[3,0],[-2,-31],[-18,-3],[0,-12],[-114,-3],[-55,-2],[1,-35],[2,0],[-3,-27],[-12,-1],[0,-6],[-42,-2],[-2,-57],[1,0],[-1,-19],[-17,-2],[0,-4],[-30,-1],[-47,0],[-14,0],[-19,0],[-52,0],[-130,-2],[-1,-57],[-3,-47],[-4,-239],[1,-223],[8,-38],[0,-67],[-1,-109],[-94,48],[-154,79],[0,-147],[0,-48],[-19,0],[-107,-2],[-561,7],[-78,-5],[-27,-1],[-67,-2],[-90,-1],[-63,-2],[-84,-3],[-91,-2],[-237,-7],[-28,0],[-18,0],[-1,50],[-129,-1],[-33,0],[-43,-8],[-3,-1],[-17,0],[-9,-1],[-53,-1],[-135,-5],[-32,0],[-32,-2],[-69,0],[-8,-1],[-26,-1],[-50,-2],[-60,0],[-60,14],[-85,0],[-36,-1],[-32,0],[-16,-2],[-230,-2]],[[5031,43568],[3,46],[11,87],[26,108],[-7,72],[1,86],[7,98],[6,96],[11,90],[10,75],[4,48],[21,208],[10,88],[7,144],[12,85],[3,58],[3,53],[8,83],[8,127],[8,61],[5,56],[6,48],[1,54],[18,156],[5,94],[9,83],[5,83],[2,64],[4,59],[8,55],[4,145],[12,97],[3,93],[8,108],[13,203],[8,67],[1,12],[6,98],[4,101],[-2,75],[26,32],[31,-32],[6,-29],[-14,-48],[-9,-68],[0,-46],[16,-27],[25,0],[32,-57],[7,-11],[27,-40],[8,-42],[1,-50],[4,-49],[-3,-71],[-30,-152],[-8,-83],[5,-94],[13,-43],[24,-61],[57,-84],[41,-43],[41,-34],[40,-16],[6,-5],[42,-35],[32,-9],[52,36],[23,34],[12,17],[24,-6],[35,-9],[17,21],[20,37],[20,11],[234,-5],[78,1],[26,-42],[0,-12],[-2,-27],[-11,-34],[12,-10],[-2,-8],[-2,-15],[-5,-29],[-47,-38],[-8,-10],[22,-27],[26,31],[16,2],[-11,-42],[8,-37],[-1,-46],[16,-4],[7,56],[6,90],[4,42],[3,37],[23,45],[21,52],[26,63],[-16,12],[-18,-39],[-15,-17],[-8,-11],[-11,-13],[-5,12],[-2,6],[-2,5],[-4,10],[1,40],[20,15],[30,46],[39,51],[-14,26],[-70,-49],[-4,-6],[-4,3],[1,50],[-23,36],[41,38],[33,50],[40,36],[43,23],[29,24],[28,23],[47,32],[40,-16],[41,7],[47,-12],[57,72],[-5,14],[-8,22],[-29,-44],[-53,-30],[-56,10],[-34,35],[-27,-14],[-47,-61],[-2,-2],[-71,-57],[-48,-15],[-61,-83],[-13,-12],[-48,-14],[-66,-24],[-8,-2],[-64,-58],[-11,15],[0,38],[-5,9],[-41,32],[3,15],[5,32],[9,49],[60,44],[18,17],[17,-8],[41,41],[62,64],[27,29],[15,23],[0,27],[-18,-20],[-12,26],[2,41],[-19,27],[-34,6],[-17,-7],[16,-7],[2,-25],[-19,-34],[-10,-14],[-28,-28],[-28,-53],[-13,-20],[-14,-35],[-39,-3],[-39,-34],[-16,-71],[3,-53],[-1,-14],[-3,-50],[-13,-11],[-35,-2],[-42,9],[-44,-23],[-36,-30],[-6,-103],[-6,-19],[-89,-41],[-42,-22],[-16,10],[-27,17],[-39,58],[-51,29],[-29,35],[-18,39],[-13,95],[0,65],[9,76],[25,91],[4,90],[-8,81],[-12,54],[-7,50],[-2,11],[-11,51],[-24,47],[-18,43],[34,80],[-9,32],[-21,30],[9,33],[-10,30],[5,23],[2,114],[-12,47],[-17,19],[4,-44],[5,-48],[-5,-54],[-11,-35],[-17,1],[-12,15],[-31,32],[-15,3],[-27,26],[-15,-1],[-5,129],[27,58],[16,100],[9,58],[11,84],[10,84],[5,57],[0,56],[16,106],[7,91],[11,39],[-1,43],[8,45],[3,14],[-10,67],[5,53],[3,61],[8,73],[4,59],[3,69],[10,68],[4,64],[5,75],[12,83],[7,66],[10,61],[3,63],[5,49],[5,116],[-19,67],[-18,86],[12,75],[7,49],[-26,53],[-27,82],[13,71],[24,35],[23,66],[-18,33],[-4,40],[26,23],[-21,41],[-37,13],[-16,37],[25,50],[43,43],[23,58],[10,92],[7,86],[9,78],[8,48],[6,79],[4,85],[10,123],[3,53],[7,85],[1,127],[3,53],[-1,73],[9,52],[3,55],[2,58],[4,55],[4,54],[-5,36],[-2,69],[-6,103],[12,69],[2,79],[-4,41],[4,37],[-2,41],[15,67],[23,81],[0,1],[-10,58],[7,44],[4,88],[-5,123],[-11,122],[-27,61],[13,59],[4,42],[16,89],[14,79],[-12,62],[15,48],[21,59],[0,72],[-15,47],[-23,37],[-27,27],[-12,77]],[[78610,119],[-771,-4],[-350,-2],[-118,-1],[-360,-4],[-37,0],[-227,-3],[-1887,-22],[-397,-12],[-846,-27],[-407,-13],[-50,-1],[-668,-30],[-1437,15],[-506,5],[-3047,14],[-2138,12],[-628,0],[-36,0],[-444,10]],[[64256,56],[0,72],[3,59],[1,321],[0,230],[1,221],[0,340],[1,194],[1,428],[0,47],[0,128],[1,76],[0,199],[0,152],[1,395],[1,71],[0,46],[-1,29],[-3,32],[-3,161],[-2,122],[-43,-2],[0,1206],[0,170],[0,66],[0,70],[0,142],[0,281],[-1,457],[-2,237],[2,251],[-1,150],[-1,96],[0,246],[0,284],[0,94],[-1,75],[0,414],[0,200],[0,260],[0,598],[0,130],[-1,71],[0,41],[0,40],[-1,456],[-1,233],[0,14],[0,11],[-1,394],[0,83],[0,5],[0,20],[-2,688],[7,666],[-1,300],[0,77],[0,256],[-2,862],[-1,216],[-1,124],[-2,363],[-1,157],[-1,179],[-4,675],[-2,389],[-2,472],[0,310],[0,108],[0,380],[0,12],[0,72],[0,164],[-1,535],[0,448],[-919,3],[-968,-3],[-2319,-55],[-2244,-99],[-667,-30],[0,175],[1,1972],[1,1843],[85,-1],[-28,2199],[-13,1702],[-17,2048],[-1,171],[90,5],[49,2],[373,20],[0,340],[-1,757],[0,204],[-1,1142],[-2,2174],[-3,4536],[-1,706],[0,194]],[[5990,40128],[-33,-96],[-38,-31],[-45,29],[-7,14],[-11,24],[-6,26],[39,-4],[34,-3],[35,14],[26,42],[6,-15]],[[5883,39989],[-18,-38],[-28,31],[-12,13],[-34,16],[-32,2],[-6,3],[-11,7],[-41,42],[-33,32],[-20,63],[18,56],[93,-56],[1,-1],[77,-73],[18,-50],[5,-8],[23,-39]],[[5636,40254],[-8,-73],[-71,73],[-66,74],[-47,51],[-15,54],[7,129],[-12,84],[18,46],[22,-33],[39,-13],[31,-50],[16,-182],[86,-160]],[[30044,33720],[0,-32],[-14,-40],[3,-30],[20,2],[30,7],[33,-33],[14,-13],[40,32],[14,68],[57,-31],[43,19],[37,-33],[37,-58],[-6,-39],[-8,-45],[-4,-30],[31,7],[33,-23],[11,-16],[0,-47],[10,-40],[42,12],[15,49],[34,53],[35,-23],[11,-60],[54,-49],[7,-44],[17,-56],[22,-70],[30,-68],[38,-23],[30,-37],[33,-40],[26,-30],[22,-12],[31,3],[27,-40],[-4,-51],[26,-42],[21,-30],[22,-7],[-3,-28],[-29,-26],[-26,-58],[7,-34],[7,-40],[25,-61],[16,-84],[6,-49],[9,-46],[33,-19],[43,-44],[47,-56],[22,-42],[26,-49],[66,-63],[53,-63],[-3,-30],[17,-46],[16,-44],[-8,-45],[-11,-44],[-18,-44],[31,25],[20,16],[14,10],[18,28],[46,33],[18,18],[-3,-46],[37,-107],[17,-70],[49,-93],[23,-77],[9,-22],[9,-22],[1,-70],[15,-63],[-1,-33],[0,-37],[-1,-79],[-24,-40],[-25,-65],[-16,-25],[2,-75],[6,-23],[6,-54],[16,-28],[62,-35],[17,-33],[17,-32],[15,-18],[12,-24],[9,-21],[1,-32],[0,28],[25,-44],[-12,-17],[-13,-18],[-10,-42],[-25,-47],[-33,-37],[-19,-33],[-10,-53],[1,-32],[1,-29],[-7,-60],[11,-37],[9,-28],[11,-70],[13,-40],[31,-51],[14,-21],[13,-17],[14,-10],[24,-8],[27,-3],[24,-7],[11,-17],[14,-13],[23,-18],[17,-2],[15,-19],[9,-47],[8,-21],[13,-11],[8,-22],[6,-60],[23,-38],[7,-27],[18,-66],[45,-59],[30,-18],[-11,-14],[-15,-10],[-25,-8],[-18,-12],[-33,-35],[-41,-31],[-18,-37],[-19,-25],[-10,-22],[-13,-23],[-17,-16],[-16,-35],[9,-19],[-4,-27],[-10,-22],[-9,-27],[-7,-28],[-13,-28],[-13,-17],[-18,-9],[-19,-10],[-18,-7],[-14,-16],[-14,-24],[-12,-21],[-18,-18],[-17,-14],[-19,-14],[-15,-7],[-16,-23],[-8,-28],[-5,-24],[-9,-25],[-12,-26],[-2,-32],[0,-24],[-7,-28],[-11,-16],[-12,-14],[-14,-5],[-17,-4],[-14,-10],[-12,-11],[-16,-17],[-13,-13],[-11,-19],[-11,-19],[-1,-23],[-6,-26],[-19,-9],[-15,-7],[-22,-8],[-16,-6],[-16,-7],[-20,-7],[-14,-7],[-14,-9],[-15,-23],[-6,-28],[0,-28],[6,-21],[13,-19],[7,-18],[12,-26],[15,-21],[14,-14],[14,-12],[-6,-25],[-11,-21],[-11,-28],[-12,-30],[-16,-26],[-5,-30],[-11,-17],[-13,-11],[-7,-23],[-7,-21],[-4,-26],[8,-23],[3,-26],[1,-28],[4,-28],[6,-25],[-5,-26],[-6,-21],[-10,-21],[-11,-21],[-15,-11],[-18,-17],[-3,-28],[-5,-25],[-3,-24],[-8,-21],[-10,-30],[-11,-30],[-6,-23],[-10,-17],[-16,-14],[-12,-21],[-10,-25],[-5,-26],[-12,-23],[-10,-21],[-5,-35],[-2,-33],[5,-23],[12,-23],[11,-23],[7,-33],[-9,-30],[-11,-30],[-7,-24],[5,-28],[5,-35],[1,-30],[-9,-21],[-17,-11],[-11,-12],[-15,-7],[-16,-9],[-22,-21],[-21,-14],[-12,-5],[-20,-12],[-16,-7],[-3,-23],[3,-28],[-6,-25],[3,-26],[6,-28],[7,-21],[3,-25],[7,-21],[6,-33],[-3,-26],[-1,-25],[-2,-26],[-2,-30],[-1,-28],[-5,-37],[-10,-24],[-11,-21],[-9,-20],[-7,-28],[-11,-21],[-15,-14],[-16,-17],[-12,-14],[-15,-21],[-17,-25],[-6,-30],[2,-31],[-4,-23],[-8,-26],[-4,-30],[0,-28],[-5,-25],[-11,-28],[-15,-28],[-11,-23],[-6,-24],[-9,-28],[-8,-23],[-4,-23],[-5,-26],[-4,-32],[3,-28],[10,-26],[12,-33],[5,-30],[-1,-25],[-12,-21],[-6,-24],[-12,-18],[-12,-17],[-14,-16],[-14,-21],[-14,-21],[-9,-30],[-6,-30],[1,-31],[-1,-28],[-11,-30],[-11,-18],[-2,-3],[-8,-21],[-8,-28],[-5,-30],[-1,-32],[1,-33],[-2,-33],[-1,-32],[-2,-33],[7,-35],[5,-25],[9,-24],[13,-18],[15,-24],[14,-13],[12,-12],[16,-12],[13,0],[35,-14],[22,-16],[10,-19],[16,-18],[18,-7],[19,-7],[12,-19],[-577,1],[-1,0],[-1381,3],[-619,1],[3,-1021],[-17,-673]],[[28176,23346],[-1144,2],[-137,1],[-101,0],[-80,0],[-3,-307],[-224,4],[-10,-360],[-263,3],[5,-359],[-155,-12],[-69,-5],[-3,-286],[-1221,-4],[-2,-339],[-240,4],[-10,-318],[-263,13],[0,-4],[-9,-339],[-1,-28],[-31,0],[-393,-2],[-2,-339],[-502,6],[-18,-350],[-231,14],[-2,-339],[-240,-8],[-9,-339],[-247,3],[-1,-70],[-2,-248],[-215,-7],[-3,127],[-246,-8],[-8,-455],[-108,-4],[-1,-349],[-139,-5],[5,-307],[-740,-3],[3,-138],[-169,2],[-696,7],[-315,3],[-5,-170],[-269,-9],[3,-169],[-501,3],[-13,-128],[-1097,7],[-109,1],[-255,1],[-243,2],[-6,-414],[-332,-2],[-12,-159],[-123,6],[-4,-180],[-116,-5],[3,-137],[-123,-5],[-4,-170],[-232,2]],[[16498,16677],[-254,11],[0,112],[1,227],[-301,9],[4,180],[-432,4],[-5,-96],[-247,-10],[-2,95],[-462,13],[-4,148],[-21,-1],[-63,-2],[-1,-329],[-278,-2],[-45,0],[-12,20],[-2,-251],[0,-88],[-53,-2],[1,89],[-260,-26],[-6,-85],[-231,1],[-11,-170],[-220,19],[-359,5],[1,170],[-91,1],[-466,7],[-44,1],[0,170],[-239,2],[1,165],[-60,0],[-1,114],[-1,142],[-60,0],[0,-36],[1,-50],[-122,3],[0,184],[-138,-2],[-67,0],[-82,-1],[-163,-1],[-27,0],[-75,-1],[-32,0],[-130,-2],[-237,-4],[-41,0],[-70,-1],[-13,0],[-17,0],[-49,0],[-24,0],[-17,0],[-2,50],[-6,160],[6,25],[1,30],[-89,1],[-35,0],[0,1],[0,50],[-28,1],[-22,0],[-49,0],[-24,0],[0,-83],[1,-235],[-55,0],[-165,0],[-6,235],[-2,208],[-6,583]],[[10491,18435],[0,31],[-6,-2],[-10,-13],[-12,-15],[-6,-6],[-36,11],[-2,0],[-1,1],[-28,-25],[-40,-68],[-30,-11],[-28,9],[-21,21],[-14,14],[-20,12],[-15,9],[-13,16],[-13,26],[-6,35],[-7,23],[-11,14],[-20,7],[-22,0],[-33,-2],[-22,2],[-16,7],[-12,21],[-13,14],[-9,14],[-16,9],[-23,7],[-19,14],[-15,14],[-15,9],[-20,0],[-20,3],[-12,18],[-17,30],[-12,12],[-36,22],[-25,27],[-27,19],[-31,24],[-44,20],[-16,0],[-14,-12],[-14,-9],[-21,-5],[-17,-10],[-15,-2],[-17,-19],[-14,-6],[-27,-56],[-21,-15],[-17,-29],[-11,-16],[-9,-18],[-16,-19],[-13,-26],[-4,-7],[-2,-1],[-2,-4],[-15,-21],[-11,-9],[-6,-2],[-6,-5],[-6,-5],[-22,2],[-14,12],[-5,7],[-14,6],[-9,3],[-4,0],[-17,-4],[-6,-1],[-1,29]],[[9307,18566],[2,210],[0,1],[2,428],[1,173],[-100,0],[1,580],[1,596],[0,221],[0,26],[1,393],[0,47],[0,18],[0,35],[0,70],[-14,0],[0,317],[0,922],[0,39],[-1,24],[0,542],[12,138],[736,48],[-7,2013],[652,16],[0,76],[81,0],[-8,1215],[-5,724],[-12,1801],[-1,242],[-231,-10],[-522,-21],[1,1713],[1,504],[1,1078],[0,787],[-682,-22],[26,1039],[23,920],[-46,2],[-46,1],[-233,7],[-192,-1],[-30,1],[-44,0],[-61,-1],[-29,0],[-59,0],[0,34],[0,62],[0,83],[0,27],[0,31],[0,54],[0,3],[0,49],[0,93],[0,289],[0,35],[0,36],[0,155],[0,211],[0,49],[0,346],[1,484],[0,107],[-7,4],[-3,2],[-170,0],[-183,1],[-216,1],[-159,1],[-89,0],[-88,-1],[0,19],[-102,0],[-112,-1],[-121,0],[-31,0],[-45,0],[-168,0],[-38,0],[-21,15],[-97,2],[-221,3],[-313,3],[-99,1],[-536,5],[-115,1],[-18,1],[-110,1],[-34,-1],[-186,3],[-38,0],[-20,1],[-2,0],[-42,0],[-103,2],[-11,0],[-29,0],[-14,1],[-47,0],[-59,1],[-7,0],[-52,1],[-1,0],[-62,1],[-32,0],[-11,-14],[-16,0],[-109,0],[-296,-5]],[[4293,37674],[14,75],[19,124],[15,121],[6,83],[12,83],[10,88],[10,104],[12,75],[11,121],[4,54],[5,95],[6,104],[4,26],[20,157],[88,64],[45,-10],[21,6],[50,120],[22,40],[16,138],[8,12],[23,-5],[13,-37],[-1,-124],[2,-3],[70,0],[29,52],[-18,88],[-32,72],[1,11],[27,67],[182,183],[69,144],[-5,69],[12,47],[17,47],[28,42],[-3,84],[25,29],[10,53],[33,40],[18,89],[17,61],[14,73],[12,44],[2,68],[-30,82],[-9,47],[7,14],[30,15],[85,-47],[68,-128],[14,-139],[-1,-47],[-1,-61],[15,-21],[4,0],[5,26],[7,2],[218,-277],[-13,-123],[-17,-44],[-2,-13],[0,-1],[8,-12],[13,8],[21,113],[30,51],[43,-38],[3,-3],[58,-51],[26,-24],[28,-25],[62,-48],[25,-12],[75,-36],[70,-49],[35,-52],[38,-45],[22,-30],[42,-11],[38,-6],[47,14],[36,31],[38,22],[40,15],[38,12],[51,16],[96,10],[95,14],[95,-9],[25,8],[32,0],[24,-13],[48,-17],[30,-17],[39,-24],[49,-27],[31,-10],[59,-9],[52,-6],[35,-7],[66,-14],[58,-26],[37,-21],[42,-2],[41,-37],[43,-25],[38,-20],[68,-27],[37,-4],[34,-12],[23,-19],[33,-31],[41,-27],[59,-81],[18,-30],[30,-65],[21,-52],[18,-41],[27,-54],[16,-56],[8,-54],[13,-35],[48,-69],[51,-58],[59,-40],[-30,65],[-56,74],[-38,69],[-20,51],[-13,51],[-8,44],[-17,49],[-16,52],[-17,45],[-31,75],[-20,37],[-31,7],[-27,32],[-10,49],[-47,32],[-99,65],[-42,25],[-68,35],[-77,43],[-63,38],[-30,19],[-62,30],[-43,-1],[-40,11],[-32,-10],[-27,10],[-44,7],[-47,21],[-55,40],[-52,45],[-79,24],[-50,-21],[-40,20],[-40,-11],[-105,-14],[-52,-11],[-58,-10],[-54,-18],[-89,-21],[-55,-8],[-38,1],[-87,21],[-48,28],[-38,29],[-44,-5],[-40,9],[-44,30],[-36,27],[-10,11],[-16,2],[-38,46],[12,38],[30,22],[32,53],[17,45],[22,37],[16,76],[-11,76],[-32,52],[-31,30],[-16,-5],[4,-22],[5,-16],[7,-25],[10,-37],[-4,-18],[-10,-41],[-28,-50],[-41,-2],[-55,-4],[-33,34],[-11,30],[-35,32],[-32,13],[-57,22],[-55,84],[-10,51],[-13,65],[-14,64],[-26,98],[-29,81],[-23,49],[-44,71],[-43,62],[-23,20],[-145,36],[-43,-23],[-54,-26],[-30,-16],[-172,-248],[-20,-64],[1,-113],[-11,-62],[15,-28],[0,-23],[-3,-18],[-21,-100],[-2,-19],[-7,-87],[8,-40],[28,-134],[8,-42],[-12,-91],[-69,-92],[-18,-28],[-68,-66],[-59,-45],[-37,-45],[-31,-35],[-28,-58],[-22,-78],[-31,-99],[-48,-67],[-28,-31],[-35,-5],[7,67],[23,89],[19,92],[17,70],[9,55],[6,56],[12,48],[14,96],[16,102],[16,111],[12,73],[10,78],[21,148],[14,101],[12,68],[16,135],[17,83],[17,124],[15,108],[7,75],[10,93],[12,122],[10,59],[4,58],[12,45],[8,87],[13,104],[13,64],[5,88],[15,89],[5,70],[10,49],[9,99],[9,48],[1,55],[8,64],[9,72],[8,79],[26,56],[34,114],[50,25],[-11,23],[-32,-1],[-42,28],[6,59],[9,123],[9,71],[1,52],[8,68],[6,67],[9,65],[8,72],[9,79],[10,123],[7,71],[3,79],[16,127]],[[39906,37793],[2,-3498],[53,-191],[1,-429],[6,-1890],[-210,-3],[-16,-5460],[-6,-1947],[-20,-4584],[-12,-2249],[2102,-12],[118,-1],[230,-1],[55,0],[57,-1],[1773,-10],[18,0],[672,-9],[727,-3],[3,-1161],[0,-9],[1,-1238],[2,-314],[3,-545],[1,-232],[1,-206],[1,-103],[1,-245],[4,-1936],[11,-1732],[4,-650],[1,-218],[-1,-937],[-3,-1973],[2,-338],[1,-212],[-1,-290],[-1,-443],[-1,-99],[0,-66],[-1,-324],[-2,-541],[-1,-65],[0,-44],[0,-72],[-2,-416],[7,-602],[2,-279],[3,-332],[-2,-90],[-1,-77],[5,-262],[0,-17],[4,-515],[2,-239],[3,-254],[2,-180],[0,-63],[-1,-142]],[[45503,44],[-143,-1],[-67,0],[-128,-1],[-225,-2],[-26,-1],[-99,0],[-138,-1],[-165,-2],[-49,0],[-125,-2],[-3,0],[-77,0],[-2,0],[-3,0],[-115,-1],[-41,-1],[-91,0],[-225,1],[-13,0],[-188,1],[-51,2],[-207,9],[-117,5],[-105,4],[-235,10],[-40,2],[-111,13],[-71,5],[-184,12],[-349,8],[-164,0],[-111,2],[-49,1],[-238,3],[-2,0],[-86,2],[-5,0],[-7,0],[-23,1],[-300,5],[-165,3],[-43,12],[-118,0],[-91,-1],[-98,0],[-99,-1],[-16,0],[-15,0],[-42,0],[-66,0],[-17,0],[-8,0],[-158,3],[-80,-7],[-12,-1],[-165,-12],[-47,-4],[-10,-1],[-58,-5],[-37,1],[-2,0],[-36,1],[-39,4],[-33,1],[-34,0],[-61,1],[-14,0],[-102,4],[-85,4],[-35,-1],[-177,-2],[-16,0],[-50,1],[-24,1],[-34,0],[-38,1],[-12,1],[-22,0],[-49,1],[-34,1],[-7,0],[-9,0],[-12,0],[-58,1],[-52,2],[-13,0],[-29,0],[-22,1],[-31,1],[-30,0],[-48,1],[-81,2],[-54,-6],[-125,3],[-12,0],[-7,0],[-40,1],[-69,2],[-140,3],[-31,1],[-71,1],[-111,3],[-18,0],[-4,0],[-36,1],[-79,1],[-25,0],[-8,0],[-56,1],[-5,0],[-31,1],[-21,0],[-71,1],[-70,2],[-55,1],[-123,2],[-138,3],[-34,0],[-116,2],[-94,4],[-45,3],[-13,0],[-47,2],[-64,0],[-44,4],[-13,1],[-16,0],[-19,-2],[-15,0],[-26,0],[-24,1],[-61,6],[-67,2],[-65,4],[-81,2],[-124,4],[-29,1],[-53,2],[-41,1],[-249,6],[-19,1],[-52,1],[-34,3],[-62,1],[-64,1],[-10,1],[-128,2],[-74,4],[-19,-1],[-11,0],[-20,1],[-98,2],[-242,7],[-173,4],[-75,3],[-265,11],[-156,6],[-301,8],[-8,0],[-64,2],[-43,1],[-15,1],[-253,7],[-29,0],[-246,4],[-88,1],[-162,2],[-3,0],[-16,1],[-18,0],[-67,1],[-53,0],[-76,1],[-124,1],[-50,0],[-388,4],[-32,0],[-81,1],[-155,1],[-317,5],[-167,5],[-40,1],[-86,3],[-175,6],[-215,7],[-106,3],[-235,8],[-120,4],[-101,3],[-92,5],[-206,9],[-6,0],[-12,1],[-344,24],[-15,-1],[-47,6],[-28,2],[-171,-6],[-60,0],[-54,0],[-26,0],[-298,-1],[-117,0],[-188,0],[-128,0],[-14,0],[-35,0],[-137,-1],[-102,3],[-177,4],[-58,2]],[[28100,370],[0,80],[0,133],[0,48],[0,187],[0,441],[-1,533],[-1,59],[0,59],[1,100],[-1,80],[0,136],[0,31],[0,303],[0,243],[-1,181],[-1,71],[-6,86],[0,7],[36,1],[0,66],[0,64],[0,20],[1,181],[0,310],[0,52],[0,45],[0,73],[0,63],[-1,17],[0,80],[0,47],[0,154],[0,46],[1,69],[-1,27],[0,29],[1,422],[1,641],[0,47],[0,254],[-2,532],[0,55],[0,93],[1,333],[0,44],[-1,137],[1,67],[-1,93],[0,155],[0,78],[-1,48],[1,154],[-1,81],[0,68],[0,88],[0,28],[-1,121],[0,130],[-1,183],[0,575],[0,286],[0,107],[0,67],[0,11],[0,23],[0,25],[0,27],[-2,910],[-1,866],[28,-1],[0,12],[12,460],[1,25],[0,88],[0,94],[1,84],[0,169],[1,139],[1,746],[1,402],[0,15],[0,120],[0,39],[1,90],[1,123],[-1,184],[2,123],[0,37],[0,168],[-1,72],[0,104],[1,302],[0,71],[0,107],[0,103],[0,93],[1,124],[0,157],[0,53],[0,15],[1,32],[0,34],[0,37],[-1,48],[0,134],[1,295],[0,135],[1,170],[1,134],[-1,28],[0,26],[1,26],[0,152],[0,153],[0,21],[0,4],[1,49],[0,34],[0,256],[1,165],[1,132],[0,112],[1,458],[-1,134],[2,230],[-1,94],[-1,27],[1,102],[0,33],[0,13],[0,29],[1,207],[-1,158],[1,230],[0,49],[0,70],[-1,200],[0,239],[1,49],[1,202],[0,236],[-1,156],[1,53],[0,49],[-1,48],[-1,175],[1,83],[-1,38],[1,87],[0,1],[-1,201],[14,3],[1,78],[0,1],[1,477],[0,129],[0,2],[1,216],[0,4],[1,189],[-18,860]],[[64256,56],[-235,0],[-1576,3],[-3322,5],[-239,1],[-1679,2],[-468,1],[-225,1],[-143,0],[-10,0],[-167,7],[-1,0],[-87,-1],[-6,0],[-129,0],[-20,0],[-43,0],[-17,0],[-36,0],[-14,0],[-16,0],[-16,0],[-34,0],[-32,0],[-20,0],[-33,-1],[-25,0],[-144,-2],[-47,0],[-7,0],[-116,-2],[-113,-1],[-2,0],[-310,-3],[-53,-1],[-68,0],[-93,0],[-227,-2],[-42,0],[-66,0],[-65,0],[-16,0],[-178,0],[-226,-3],[-15,-1],[-16,0],[-40,0],[-145,-7],[-36,-1],[-31,-1],[-31,-2],[-39,-1],[-29,-1],[-138,-6],[-34,-1],[-39,-1],[-25,-1],[-8,0],[-36,-1],[-52,-1],[-58,-1],[-119,-3],[-176,-4],[-34,0],[-33,0],[-21,0],[-10,-1],[-26,0],[-6,0],[-35,0],[-22,0],[-30,1],[-33,2],[-24,1],[-17,0],[-49,-1],[-44,1],[-44,-1],[-34,1],[-18,-1],[-8,0],[-24,2],[-9,0],[-52,1],[-52,0],[-482,3],[-23,0],[-155,1],[-59,0],[-115,1],[-115,0],[-540,3],[-375,3],[-1,0],[-161,1],[-74,0],[-15,0],[-21,0],[-125,-1],[-151,0],[-155,-1],[-35,-1],[-271,-7],[-28,-1],[-19,0],[-108,-2],[-119,-1],[-68,-1],[-68,-1],[-2,0],[-23,0],[-6,0],[-10,0],[-120,0],[-21,0],[-2,0],[-50,0],[-28,0],[-23,0],[-104,0],[-50,0],[-49,0],[-18,0],[-38,0],[-52,2],[-51,3],[-433,9],[-21,0],[-12,1],[-6,0],[-13,0],[-69,1],[-584,-2],[-14,0],[-20,0],[-181,4],[-156,4],[-13,1],[-26,0],[-361,3],[-1,0],[-27,0],[-113,-3],[-61,-1],[-43,-1],[-139,-2],[-18,0],[-130,-1],[-18,0],[-263,-1],[-43,-1]],[[4901,32017],[-10,-82],[-1,-39],[-43,23],[-25,66],[1,39],[23,-9],[6,25],[-14,29],[-9,54],[-3,17],[-3,22],[-8,45],[0,10],[0,2],[25,-19],[30,-21],[31,-47],[10,-48],[-10,-67]],[[4917,32125],[-2,-18],[-8,29],[-26,41],[-39,36],[-9,14],[-1,0],[-17,7],[-1,1],[-10,5],[-16,9],[-1,2],[-7,16],[-1,2],[7,11],[3,3],[4,2],[11,4],[17,5],[27,-15],[17,-30],[13,-21],[18,-35],[8,-26],[10,-32],[3,-10]],[[4742,32238],[-50,-31],[-4,7],[4,14],[1,2],[23,33],[-6,20],[-7,26],[4,9],[3,7],[50,-55],[-9,-26],[-9,-6]],[[4488,32260],[-50,-21],[-76,81],[-5,56],[38,55],[60,10],[33,-121],[0,-60]],[[4827,32317],[-62,-33],[-44,63],[2,5],[11,20],[6,10],[0,8],[-9,16],[-3,5],[-1,2],[-8,3],[-13,5],[0,23],[3,0],[11,-1],[81,-56],[15,-31],[7,-17],[9,-18],[-1,-3],[-4,-1]],[[4439,32511],[-37,-44],[-57,32],[-2,31],[12,109],[31,-4],[34,-1],[2,-44],[17,-79]],[[4417,32709],[-19,-55],[-39,23],[9,79],[5,63],[40,-12],[4,-98]],[[9307,18566],[-166,-4],[-295,-6],[-5,-169],[-237,0],[-3,-163],[-79,0],[-79,1],[-35,0],[-68,0],[-119,1],[-275,2],[-38,0],[-3,-196],[-5,-388],[-2,-242],[-143,0],[5,-247],[-246,2],[-1,-342],[-240,3],[-1,-92],[-4,-239],[-158,-2],[-23,0],[-16,0],[-44,0],[-2,-336],[-52,0],[-181,-1],[-156,2],[-157,1],[-168,3],[-32,-1],[-63,2],[-51,-1],[-21,1],[-20,5],[-1,-17],[-15,0],[-213,2],[-17,0],[1,-16],[0,-128],[1,-24],[-72,-5],[-219,2],[-62,-2],[-7,0],[-14,0],[1,-30],[4,-42],[-1,-9],[1,-17],[4,-68],[-16,0],[-68,-1],[-27,-1],[1,-101],[-58,-2],[-3,107],[-71,-3],[0,56],[0,26],[1,322],[0,44],[-1,206],[1,344],[0,144],[0,238],[0,56],[0,166],[-76,0],[-184,-1],[-1,238],[-2,319],[0,39],[0,69],[0,31],[-1,459],[-54,-1],[-2,410],[-2,243],[31,1],[38,0],[-18,250],[62,4],[170,10],[-2,126],[1,137],[1,82],[1,83],[0,54],[-57,0],[-3,246],[-54,5],[-1,89],[-64,-2],[0,91],[-59,-2],[1,167],[4,177],[-96,-1],[-122,-1],[-27,-1],[1,66],[0,19],[-2,0],[-51,-1],[0,46],[-1,120],[-52,1],[-16,1],[-3,83],[-118,0],[-3,77],[-56,-2],[0,8],[-2,78],[-85,-4],[-32,1],[-4,168],[61,2],[-1,175],[-115,-5],[0,85],[0,1],[0,24],[-1,244],[-223,-6],[-28,0],[5,166],[-108,6],[1,52],[0,25],[-21,1],[-16,-5],[-13,1],[0,39],[-2,135],[-23,0],[-34,2],[-1,29],[0,54],[-149,-6],[-149,3],[-47,-1],[-96,0],[-43,0],[-27,2],[-65,-1],[-83,-1],[-17,0],[-67,-1],[-221,2],[-14,-2],[-277,-1],[-67,0],[-148,0],[-24,4],[-16,0],[-160,10],[-190,11],[-10,0],[-78,2],[-5,-48],[-94,9],[-33,4],[-25,6],[-17,-2],[-96,5],[-14,0],[-1,0],[-25,2],[-185,3],[-73,1],[-35,1],[-71,1],[-82,1],[-39,1]],[[1072,22419],[19,90],[18,53],[13,62],[20,77],[23,89],[17,66],[32,131],[11,63],[20,71],[10,68],[23,79],[11,66],[11,53],[10,52],[18,36],[9,72],[25,128],[21,89],[1,8],[16,87],[23,105],[15,85],[14,67],[14,78],[16,89],[12,68],[18,104],[12,70],[8,76],[22,144],[14,108],[7,46],[14,94],[18,116],[-3,50],[8,71],[-2,86],[5,70],[0,58],[6,57],[4,56],[18,75],[8,62],[2,43],[-2,62],[-11,56],[-34,49],[13,30],[9,49],[8,46],[-4,39],[-14,66],[42,92],[19,39],[6,55],[43,-14],[41,-20],[28,3],[14,3],[17,-7],[22,-5],[19,-2],[50,-15],[-3,32],[12,12],[2,-40],[10,17],[10,13],[-9,16],[-3,34],[-18,37],[-8,-20],[-21,0],[-15,17],[-21,-1],[-12,-18],[-8,-34],[-13,4],[-37,9],[-21,5],[-26,10],[13,60],[17,76],[6,46],[9,50],[22,83],[17,94],[15,76],[14,45],[7,52],[11,49],[16,74],[20,89],[23,103],[13,79],[20,89],[17,79],[13,48],[9,67],[17,86],[13,70],[13,113],[15,94],[17,96],[12,88],[7,114],[13,94],[-6,123],[-17,89],[25,121],[12,76],[16,108],[12,89],[16,114],[15,82],[1,49],[8,62],[17,96],[7,58],[0,63],[21,70],[17,77],[9,57],[5,79],[-31,52],[-25,77],[-4,94],[1,99],[-12,72],[-8,61],[-18,40],[-14,60],[-14,72],[-21,64],[-14,45],[-23,16],[-19,-46],[-10,-2],[-22,65],[-8,51],[17,50],[17,-8],[25,10],[5,64],[14,34],[12,22],[2,37],[18,55],[6,25],[6,23],[12,18],[42,64],[1,14],[0,25],[13,45],[14,62],[0,3],[10,44],[11,0],[11,-29],[1,-1],[18,1],[36,2],[15,13],[-3,25],[12,26],[8,11],[4,-1],[2,-17],[17,-10],[12,14],[11,27],[-13,23],[-13,13],[-13,1],[-7,43],[10,30],[4,23],[13,-5],[10,-15],[22,-11],[34,3],[34,15],[29,23],[53,33],[83,67],[83,104],[8,13],[1,39],[16,12],[13,-4],[11,-10],[13,-13],[14,-15],[16,4],[19,12],[7,-1],[27,-27],[32,13],[16,-22],[20,-48],[29,-4],[41,8],[5,-77],[-18,-15],[-8,-7],[9,-28],[8,-11],[21,-25],[-4,-24],[-38,-22],[-7,-11],[-27,-54],[0,-70],[1,-79],[28,4],[5,-8],[0,-5],[-11,-9],[-26,-16],[-23,-16],[0,-8],[3,-2],[22,-8],[7,-13],[-2,-9],[-8,-27],[-20,-52],[-25,-45],[3,-4],[17,7],[37,73],[10,28],[46,-35],[0,-8],[-35,-71],[-7,-60],[8,-39],[-4,-62],[-13,-13],[-8,-47],[18,-43],[39,-29],[1,-25],[-3,-5],[-12,-38],[14,-45],[0,-22],[-10,-31],[-11,3],[-8,19],[-2,-6],[-4,-8],[3,-26],[4,-4],[3,-28],[-1,-27],[0,-3],[3,0],[11,54],[5,2],[13,-15],[-1,-48],[-8,-40],[-20,-22],[-7,-37],[30,3],[15,-22],[-19,-24],[-10,-43],[-6,-25],[15,-20],[-4,-47],[3,-39],[8,-22],[18,0],[-6,23],[5,24],[13,9],[-12,42],[3,29],[19,13],[3,23],[6,64],[17,1],[2,-46],[5,-22],[2,2],[-2,47],[3,27],[-41,54],[12,74],[-5,55],[0,53],[0,9],[3,100],[15,8],[7,-10],[-5,-134],[4,-24],[13,-28],[22,-11],[9,-42],[8,-25],[11,-27],[0,-22],[38,-74],[4,-4],[2,0],[3,-10],[0,-56],[2,-37],[1,-3],[6,5],[3,37],[1,13],[4,49],[18,2],[25,-16],[3,25],[-26,29],[-27,-2],[-23,23],[-19,37],[-1,35],[2,7],[18,0],[5,22],[14,-2],[16,-12],[17,-3],[17,16],[23,8],[19,-10],[3,3],[-24,22],[-18,-3],[-17,15],[-51,-17],[-22,17],[-18,10],[-14,46],[-8,-1],[-5,20],[23,29],[0,26],[-13,21],[-3,29],[9,15],[22,18],[2,27],[-14,8],[-18,-9],[-34,45],[-3,23],[19,38],[16,51],[-2,8],[-20,6],[-29,-25],[-38,50],[2,13],[14,39],[29,33],[31,-4],[24,4],[6,15],[-1,69],[-15,22],[-17,19],[-21,17],[-17,44],[-16,6],[-13,17],[8,41],[24,42],[26,16],[11,-11],[6,-11],[5,3],[2,17],[15,20],[11,-3],[3,6],[-9,21],[14,35],[11,39],[10,15],[20,3],[13,1],[14,-19],[2,-6],[6,5],[0,4],[-14,33],[13,18],[25,2],[13,-11],[3,-39],[13,-25],[11,-17],[3,-9],[6,-4],[6,20],[14,11],[13,-11],[12,-15],[16,-9],[10,-16],[18,-36],[20,-22],[16,2],[4,8],[-1,8],[-1,10],[-6,8],[-14,-4],[-13,6],[-14,19],[2,35],[-3,4],[-10,1],[-17,4],[-18,26],[-19,0],[-12,-3],[-18,6],[-7,35],[6,28],[-1,4],[-41,5],[-29,9],[-17,-14],[-10,-22],[-12,-11],[-19,-5],[-14,-19],[-15,-19],[-7,-21],[-20,3],[-19,-21],[19,-21],[-13,-21],[-13,-11],[-14,-4],[-5,26],[-8,36],[1,46],[0,1],[4,17],[21,32],[7,20],[-23,50],[-2,10],[10,13],[9,10],[42,240],[27,62],[13,7],[12,-18],[25,39],[17,54],[61,59],[48,62],[25,84],[0,75],[0,23],[60,40],[9,10],[3,6],[34,48],[28,76],[21,88],[10,52],[21,45],[5,62],[17,60],[41,50],[24,31],[28,41],[49,46],[31,76],[25,49],[45,81],[24,46],[-1,14],[-79,-50],[-16,37],[136,105],[29,35],[41,30],[28,16],[72,42],[22,-37],[0,-93],[5,-57],[11,-36],[-6,-54],[15,-80],[56,-10],[22,84],[20,51],[23,61],[-8,29],[-27,24],[-7,6],[-61,43],[-12,29],[7,35],[1,1],[30,26],[51,-8],[39,-5],[32,-5],[11,-2],[27,-19],[23,-62],[-5,-50],[-1,-11],[-17,-116],[-11,-57],[1,-102],[20,-86],[14,-80],[0,-68],[-13,-108],[-12,-64],[-8,-67],[16,-79],[30,-72],[22,-19],[29,-42],[19,-36],[4,-62],[-1,-88],[-8,-54],[-5,-59],[41,-65],[22,-22],[30,24],[34,27],[-2,21],[-23,5],[-35,15],[-17,51],[12,131],[34,17],[71,-24],[55,-5],[45,2],[44,24],[9,15],[66,13],[32,-83],[11,-187],[8,-74],[5,0],[2,0],[8,28],[5,52],[20,-1],[14,-10],[30,-18],[13,4],[2,4],[6,18],[-5,8],[-4,32],[2,35],[5,28],[10,35],[1,30],[9,24],[-6,27],[-1,25],[-4,24],[-23,57],[-8,32],[-41,63],[8,26],[-23,26],[-27,34],[-18,16],[-14,10],[-24,16],[-34,21],[-18,5],[6,21],[14,9],[16,7],[13,0],[18,-9],[8,-20],[6,-15],[4,3],[-3,21],[-7,27],[-18,7],[-14,1],[-28,4],[-12,-3],[-20,-4],[-12,13],[3,33],[7,21],[7,38],[-20,66],[-42,45],[-23,19],[-23,7],[-23,2],[-9,18],[6,12],[6,20],[36,50],[-3,12],[-4,6],[-17,-5],[-32,32],[-8,23],[6,60],[12,35],[22,47],[13,61],[29,51],[22,68],[21,4],[19,-22],[11,26],[-25,28],[-9,-7],[-50,-2],[-32,-3],[-2,-1],[-20,-28],[-24,-9],[-14,25],[-18,40],[-20,61],[-27,88],[-34,63],[-63,22],[-32,11],[-46,7],[-6,29],[-9,46],[16,56],[3,8],[21,41],[20,34],[31,41],[54,38],[32,28],[31,29],[31,10],[28,40],[-12,82],[35,112],[33,93],[18,57],[23,11],[28,19],[-3,29],[-6,3],[-17,-20],[-96,-6],[-13,-75],[-33,-104],[-9,-86],[-21,-29],[-27,3],[-11,1],[-48,7],[-23,-69],[-29,-23],[-30,17],[-7,1],[-31,-12],[-20,-21],[-14,2],[-7,1],[-21,55],[-26,14],[-26,11],[-12,-135],[-21,-112],[-20,-79],[-6,-37],[11,-15],[-5,-45],[-1,-73],[-9,-47],[-2,-1],[-23,-8],[-18,9],[-28,38],[-17,24],[-9,18],[-28,-2],[-34,-9],[5,-26],[10,-13],[3,-21],[-6,-25],[-49,-64],[-28,-35],[-74,-24],[-26,8],[-39,1],[-30,-15],[-37,-36],[-25,-29],[-22,-36],[-33,-18],[-3,-51],[-9,-16],[-5,-28],[-15,-61],[-11,-77],[-8,-83],[-5,-57],[-13,-48],[-28,-62],[-17,-8],[-46,-75],[-34,-14],[-37,-65],[-57,-127],[-53,-48],[-33,-60],[-37,-60],[-30,-48],[-39,-56],[-19,-48],[-2,-130],[-17,-80],[-14,-33],[-13,-6],[-72,-29],[-54,-12],[-17,-49],[6,-28],[-35,-5],[-27,17],[19,41],[31,58],[32,80],[38,94],[23,73],[37,86],[27,79],[26,74],[23,59],[23,72],[36,105],[14,51],[13,34],[27,73],[18,60],[100,297],[21,56],[0,4],[17,62],[32,90],[6,15],[17,72],[1,38],[53,177],[22,94],[28,100],[21,73],[26,96],[23,84],[24,82],[16,81],[22,69],[30,130],[19,67],[16,78],[45,184],[21,87],[14,70],[31,124],[13,71],[15,43],[28,113],[12,47],[14,74],[11,43],[10,62],[11,39],[14,62],[11,59],[16,58],[5,51],[16,70],[14,88],[17,77],[17,66],[10,54],[14,83],[9,48],[21,95],[23,90],[15,88],[5,24],[9,47],[9,107],[24,124],[8,77],[13,57],[16,104],[10,71],[16,79],[6,58],[10,72],[11,41],[14,148],[12,58],[9,83]],[[28100,370],[-213,9],[-167,6],[-42,1],[-69,3],[-139,4],[-42,1],[-75,3],[-27,1],[-145,6],[-48,2],[-5,1],[-120,3],[-4,0],[-53,-3],[-203,-15],[-54,0],[-51,-1],[-112,-1],[-181,-3],[-162,-2],[-125,-1],[-32,0],[-448,4],[-199,-6],[-166,-10],[-338,-17],[-37,-2],[-68,-3],[-188,-11],[-191,-10],[-63,-3],[-214,-10],[-32,-1],[-13,-1],[-36,-1],[-24,-2],[-19,-1],[-106,-5],[-50,-3],[-120,-1],[-8,0],[-9,0],[-33,-1],[-51,1],[-21,0],[-14,-1],[-36,0],[-30,0],[-14,0],[-132,-3],[-383,-9],[-114,-2],[-74,0],[-37,-1],[-47,0],[-135,1],[-90,0],[-44,-1],[-75,0],[-61,0],[-45,0],[-3,-1],[-75,-2],[-126,-3],[-36,0],[-34,-1],[-63,5],[-35,2],[-88,-1],[-8,0],[-18,-1],[-13,0],[-46,-2],[-81,-3],[-315,-9],[-37,0],[-353,-4],[-3,0],[-64,0],[-227,-14],[-111,-1],[-125,2],[-353,9],[-134,-1],[-81,1],[-34,-1],[-320,4],[-96,-1],[-216,-2],[-61,-1],[-163,0],[-149,1],[-27,0],[-74,13],[-165,30],[-92,4],[-138,6],[-215,30],[-26,4],[-111,16],[-108,6],[-56,4],[-80,14],[-3,0],[-174,16],[-91,-23],[-2,-1],[-1,0],[-15,-4],[-5,0],[-8,-2],[-128,-16],[-71,-8],[-171,-24],[-80,-11],[-49,-3],[-348,-27],[-72,-6]],[[16488,279],[-3,152],[1,154],[0,144],[0,27],[1,37],[1,49],[0,30],[1,49],[3,165],[0,171],[-1,190],[0,30],[0,7],[-1,55],[-1,313],[-3,247],[0,120],[-1,78],[0,19],[-1,151],[0,28],[-1,62],[-1,168],[-5,208],[-5,238],[29,-1],[-4,328],[0,41],[0,25],[1,63],[1,47],[-1,31],[-3,64],[1,83],[0,43],[0,64],[0,101],[-1,36],[0,23],[0,26],[-1,52],[1,143],[0,41],[1,145],[1,102],[0,34],[0,59],[0,100],[-1,55],[-3,290],[-1,256],[-1,55],[3,72],[-1,30],[-1,32],[-1,186],[1,117],[1,137],[0,188],[-1,115],[0,340],[0,26],[0,159],[0,1],[1,74],[0,9],[0,148],[1,71],[0,140],[3,109],[0,60],[0,31],[0,70],[0,65],[0,51],[0,52],[2,156],[0,333],[0,174],[1,45],[-1,94],[2,366],[-1,82],[0,147],[1,29],[-1,73],[0,63],[1,79],[0,201],[0,117],[0,26],[-1,208],[0,4],[1,25],[-1,30],[1,14],[0,32],[-1,31],[1,32],[0,63],[1,99],[0,44],[-1,111],[0,255],[0,28],[0,122],[0,108],[-1,147],[0,168],[1,119],[13,349],[4,90],[1,97],[-2,82],[0,35],[-4,158],[-3,100],[-1,76],[-11,267],[-4,345],[0,55],[-1,90],[-1,66],[1,119],[-3,155],[0,5],[-1,37],[-2,280],[-2,130],[0,2],[-1,29],[1,58],[-2,481],[9,207],[3,40],[1,213],[0,195],[2,1288],[0,243]],[[10491,18435],[-3,-3],[-2,3],[-3,-2],[-32,-35],[-9,-11],[-1,-5],[-2,-8],[-2,-14],[-3,-26],[1,-12],[2,-19],[-2,-13],[-29,-59],[-18,-15],[-24,-6],[-20,-7],[-17,-26],[-3,-29],[-12,-17],[-9,-26],[-19,-17],[-16,-61],[-15,-46],[5,-24],[-5,-41],[-10,-22],[-20,-66],[-3,-27],[1,-26],[2,-28],[3,-26],[-11,-21],[-19,-26],[-5,-30],[-14,-18],[-8,-19],[-16,-22],[-10,-22],[-8,-28],[-12,-12],[-22,-44],[-23,-28],[-19,-50],[-12,-68],[1,-23],[-11,-16],[0,-43],[-12,-12],[-4,-33],[-10,-27],[-7,-35],[4,-32],[7,-26],[0,-33],[-8,-33],[-12,-24],[-4,-25],[-10,-18],[-9,-31],[-6,-20],[-18,-20],[-10,-32],[-17,-12],[-8,-22],[-15,-20],[-9,-39],[-9,-26],[-17,-41],[-13,-9],[-12,-25],[8,-23],[-7,-29],[-15,-18],[-23,-5],[-10,-16],[-9,-25],[0,-33],[-11,-12],[-67,-150],[-92,-205],[-129,-290],[-74,-166],[-72,-160],[-16,-38],[-25,-56],[-51,-114],[-180,-402],[17,-115],[18,-54],[14,-11],[32,-35],[12,-18],[13,-24],[14,-21],[11,-20],[8,-25],[11,-51],[7,-38],[-3,-39],[-7,-34],[-10,-26],[-4,-37],[-20,-19],[-27,-20],[-15,-6],[-19,-6],[-9,-17],[-12,-87],[4,-27],[-4,-30],[-8,-20],[-5,-25],[-3,-24],[0,-51],[-16,-15],[-20,-26],[-16,-9],[-10,-19],[-19,-9],[-13,-19],[-15,-13],[-14,-17],[-13,-31],[-25,-15],[-30,-22],[-20,-17],[-14,-21],[-7,-19],[-6,-43],[3,-24],[3,-36],[-8,-25],[-6,-107],[-35,-69],[-4,-26],[-12,-37],[-16,-30],[-14,-12],[-14,-24],[-4,-26],[-13,-41],[-10,-40],[0,-24],[4,-24],[10,-30],[10,-32],[18,-33],[22,-60],[4,-39],[-20,-44],[-22,-29],[-14,-14],[-9,-31],[-15,-18],[-10,-34],[-16,-14],[-14,-5],[-14,-20],[-2,-54],[-17,-28],[-8,-22],[-27,-32],[-10,-27],[-19,-30],[-9,-23],[-13,-32],[-9,-22],[0,-23],[-12,-36],[0,-30],[-14,-14],[-17,-22],[-10,-71],[8,-22],[15,-49],[8,-39],[-5,-25],[13,-23],[9,-26],[-11,-14],[-15,0],[-14,0],[-18,-19],[-4,-24],[6,-31],[-15,-16],[-14,-6],[-14,-2],[-20,-34],[-3,-24],[-16,-19],[6,-24],[-8,-20],[-25,-9],[-12,-22],[-11,-40],[-17,-5],[-23,-8],[-25,-25],[-17,2],[-17,0],[-15,-8],[-20,-5],[-9,22],[-18,8],[-14,-6],[-12,-6],[-13,-24],[-11,-17],[-3,-6],[0,1],[-25,7],[-17,1],[-17,-19],[-16,-17],[-12,-7],[-23,-5],[-16,5],[-15,-21],[-1,0],[-14,-3],[-23,8],[-1,0],[-13,2],[-15,-2],[-13,-9],[-14,-8],[-16,4],[-9,18],[-11,27],[-14,-1],[-18,-8],[-24,9],[-9,17],[-3,14],[-3,13],[0,1],[-8,25],[-4,22],[0,2],[-17,10],[-14,8],[-2,1],[-14,-2],[-1,-1],[-13,-2],[-22,12],[-25,-1],[-1,-1],[-19,-15],[-14,-10],[-3,0],[-14,3],[-23,-13],[-9,-9],[-8,-7],[-16,-2],[-5,0],[-17,-8],[-19,-6],[-20,-9],[-15,7],[-24,-4],[-16,-15],[-13,-1],[-22,-7],[-16,4],[-14,-5],[-10,-21],[-15,-14],[-39,-5],[0,1],[-12,17],[-1,1],[-26,11],[-12,11],[-1,1],[-21,0],[-26,-7],[-23,8],[-21,14],[-25,17],[0,1],[4,27],[-8,33],[-4,15],[-1,1],[-12,-3],[-13,-8],[-14,-5],[-8,-22],[-11,-11],[-13,-15],[-2,23],[-13,14],[-14,3],[-13,-6],[-16,-17],[-1,-2],[-6,-14],[-10,-21],[-15,-32],[-22,-4],[-16,3],[-16,-2],[-20,-12],[-15,-4],[-9,-18],[-7,-24],[-12,-22],[0,-1],[-5,-87],[2,-1],[24,-7],[1,0],[25,-12],[15,-16],[9,-17],[3,-7],[8,-9],[12,-14],[12,-23],[7,-40],[3,-23],[7,-26],[3,-63],[-9,-23],[-8,-32],[-4,-38],[-2,-25],[1,-33],[5,-35],[7,-21],[7,-20],[3,-33],[-2,-30],[-6,-36],[-1,-1],[-10,-29],[-13,-27],[-16,-3],[-9,-21],[0,-35],[7,-23],[16,-28],[16,-23],[10,-21],[0,-25],[0,-9],[0,-17],[-18,-24],[-8,-18],[-10,-17],[3,-37],[13,-35],[8,-23],[9,-21],[0,-28],[-13,-13],[0,-1],[-13,-16],[-15,-9],[-12,-6],[-16,-8],[-1,-1],[-27,-18],[-1,-1],[-11,-20],[-7,-22],[-14,-40],[-11,-20],[-26,-70],[-6,-33],[12,-35],[1,0],[0,-1],[18,-25],[11,-18],[2,-2],[13,-25],[11,-13],[0,-1],[0,-29],[-18,-21],[0,-1],[-24,-49],[34,-39],[17,-2],[1,-23],[0,-5],[0,-4],[1,-30],[-13,-32],[-13,-23],[-8,-31],[-9,-30],[-15,-29],[-13,-5],[-18,-11],[-14,-18],[-42,-36],[-14,-37],[-14,-7],[-22,-2],[-18,-9],[-13,-38],[-22,-54],[-20,-9],[-1,0],[-19,1],[-1,0],[-13,-11],[-15,-3],[-15,-11],[-1,-4],[-6,-45],[-2,-23],[-2,-17],[4,-50],[0,-25],[-12,-39],[-5,-27],[-5,-33],[-10,-29],[-8,-19],[-16,-10],[-11,-37],[10,-30],[11,-12],[9,-19],[14,-23],[13,-15],[7,-60],[5,-25],[17,-58],[-8,-27],[-10,-39],[3,-36],[8,-27],[14,-40],[11,-16],[10,-35],[8,-28],[32,-49],[9,-32],[12,-26],[12,-16],[14,-19],[15,14],[21,21],[14,10],[22,4],[23,-16],[11,-19],[14,-11],[19,-10],[14,-2],[25,-14],[21,0],[12,9],[21,0],[13,-4],[22,0],[18,-4],[18,-1],[13,-2],[14,-3],[20,10],[12,0],[20,-14],[19,-14],[14,0],[14,2],[14,7],[13,21],[17,16],[14,-9],[10,-14],[18,-7],[20,14],[22,5],[25,-17],[28,5],[22,-12],[21,-11],[34,-3],[21,7],[14,0],[18,-7],[21,-9],[35,-7],[33,19],[30,4],[26,-18],[32,-9],[25,9],[20,5],[29,6],[19,28],[17,21],[36,24],[24,18],[19,3],[8,-19],[6,-26],[-4,-28],[-2,-23],[0,-30],[19,-30],[14,-14],[21,0],[16,-5],[12,-19],[11,-14],[15,-4],[19,-19],[10,-23],[34,-72],[14,-19],[18,5],[18,8],[23,-8],[12,-3],[16,17],[13,8],[20,8],[13,0],[16,-9],[15,-3],[14,7],[12,26],[15,9],[23,5],[15,-2],[25,0],[24,30],[25,18],[14,19],[17,16],[13,3],[13,-12],[31,-49],[28,-39],[6,-51],[14,-22],[26,-2],[23,2],[13,3],[14,-12],[5,-39],[-5,-35],[-8,-40],[-8,-23],[5,-42],[-8,-40],[3,-32],[18,-14],[14,-17],[7,-32],[3,-35],[10,-21],[10,-33],[20,-16],[11,-14],[18,-88],[18,-21],[0,-24],[8,-18],[20,0],[21,12],[26,-7],[11,-15],[11,-13],[14,4],[27,-4],[12,23],[25,9],[23,19],[14,-12],[20,-25],[29,-25],[13,-1],[11,-23],[0,-35],[13,-17],[13,-20],[12,-21],[17,-19],[14,-28],[-7,-26],[-25,-28],[-16,-25],[-10,-49],[-17,-21],[-16,-23],[-6,-50],[8,-32],[-10,-39],[22,-19],[26,-2],[25,-19],[31,-25],[11,-17],[11,-49],[15,-39],[2,-23],[-17,-17],[-11,-28],[1,-25],[13,-17],[11,-11],[12,-14],[7,-21],[7,-42],[14,-23],[32,-34],[11,-14],[15,-7],[12,-13],[8,-31],[9,-55],[1,-32],[8,-28],[-1,-28],[-4,-31],[11,-23],[14,-33],[10,-30],[3,-25],[7,-26],[11,-16],[25,4],[23,7],[19,-21],[12,-25],[3,-26],[-5,-43],[-4,-27],[6,-28],[5,-28],[6,-21],[14,-30],[14,-21],[3,-23],[2,-26],[5,-22],[-4,-34],[-14,-109],[0,-30],[11,-26],[16,-10],[42,11],[38,-27],[33,-2],[16,-5],[27,-32],[25,-28],[36,-9],[20,-23],[-9,-29],[-9,-27],[-9,-33],[1,-27],[-3,-52],[-12,-55],[22,-32],[11,-24],[7,-41],[30,-33],[-13,0],[-31,10],[-18,-4],[-17,-4],[-14,-12],[-29,-52],[-23,-39],[-15,-4],[-23,4],[-28,12],[-15,7],[-16,2],[-14,-9],[-14,-25],[-8,-23],[-11,-67],[-12,-65],[-6,-59],[-8,-26],[-19,-34],[-18,-4],[-21,-1],[-13,-9],[-1,-28],[-9,-19],[-7,-30],[-3,-41],[0,-26],[-9,-58],[-11,-54],[0,-30],[19,-30],[33,-12],[27,-59],[38,-58],[0,-46],[1,-29],[-1,-37],[-3,-69],[-15,-49],[4,-35],[0,-33],[9,-26],[11,-18],[-9,-25],[-17,-33],[-41,-61],[-29,-37],[-8,-50],[-11,-30],[-14,-30],[-13,-22],[-22,-5],[-34,-9],[-34,-21],[-45,-26],[-13,-8],[-17,-13],[-30,-24],[-11,-18],[-15,-25],[-16,-37],[-11,-42],[-11,-38],[-30,-30],[-38,-25],[-18,-5],[-27,-21],[-25,-26],[-12,-46],[-4,-42],[4,-33],[7,-46],[15,-37],[14,-54],[33,-38],[40,-43],[30,-40],[18,-5],[16,0],[15,2],[16,3],[24,-38],[-8,-44],[-11,-44],[-7,-52],[6,-63],[15,-22],[13,-6],[8,-32],[2,-25],[3,-25],[14,-31],[22,-18],[31,-33],[4,-23],[4,-26],[0,-38],[0,-38],[13,-34],[3,-28],[12,-26],[8,-27],[13,-24],[25,-40],[29,-134],[5,-38],[-19,-51],[-25,-50],[-9,-80],[-2,-40],[-2,-29],[-18,-35],[12,-47],[-2,-35],[-29,-9],[-11,-26],[-16,-2],[-21,-22],[-17,-13],[2,-24],[20,-27],[22,-25],[-25,-14],[-20,-8],[-24,-14],[-37,-27],[-19,-36],[21,-33],[9,-32],[-2,-25],[-8,-53],[-10,-28],[-14,-38],[-9,-21],[-9,-40],[-27,-30],[-35,-29],[7,-54],[14,-62],[26,-68],[28,-73],[17,-47],[11,-10],[31,-7],[23,-11],[-2,-31],[-5,-23],[-8,-38],[5,-90],[0,-29],[-5,-49],[-18,-30],[-22,-7],[-8,-31],[4,-40],[19,-13],[19,-6],[11,-23],[2,-24],[2,-32],[16,-2],[30,6],[36,-9],[18,-36],[6,-46],[-9,-18],[-15,-27],[5,-38],[10,-50],[7,-20],[30,-12],[16,-8],[18,-11],[21,-23],[3,-37],[-3,-30]],[[9192,84],[-62,6],[-95,9],[-87,-1],[-4,0],[-180,0],[-123,0],[-55,0],[-17,0],[-52,2],[-97,0],[-14,0],[-101,0],[-23,0],[-15,1],[-144,0],[-47,0],[-26,0],[-181,0],[-96,0],[-72,0],[-95,0],[-213,1],[-1,0],[-13,0],[-405,-3],[-179,2],[-215,1],[-157,3],[-7,0],[-140,-1],[-268,6],[-68,1],[-29,0],[-151,1],[-11,1],[-15,2],[-13,2],[-17,4],[-5,0],[-149,-1],[-119,-1],[-250,8],[-400,13],[-101,3],[-21,1],[-47,2],[-6,0],[-42,1],[-5,0],[-21,1],[-117,4],[-4,0],[-41,1],[-11,60],[-29,92],[-27,45],[-27,35],[-22,27],[-50,47],[-27,31],[-33,8],[-23,51],[-27,38],[-26,59],[-25,62],[-40,51],[-39,31],[-49,26],[-42,36],[-27,14],[-16,78],[-39,53],[-30,43],[-33,77],[-39,58],[-33,54],[2,22],[2,34],[-23,-32],[-26,9],[-47,-12],[-30,-28],[-32,-14],[-3,41],[-41,7],[-45,14],[-26,49],[-33,25],[-28,39],[-37,19],[-12,74],[-2,61],[-23,62],[-22,62],[-21,33],[-29,7],[-21,31],[-35,10],[-33,41],[-16,27],[-15,39],[-24,43],[-7,73],[-23,60],[-10,43],[-23,52],[-33,32],[-27,36],[-52,26],[-24,53],[-29,34],[-32,51],[-33,41],[20,12],[5,54],[-28,49],[-24,19],[-46,-6],[-34,29],[-12,46],[16,37],[15,36],[-7,75],[-13,87],[-41,32],[-16,59],[9,52],[32,27],[-3,62],[5,73],[16,56],[6,74],[-8,83],[-25,67],[-16,68],[-4,59],[-23,-1],[-22,-36],[-18,49],[13,71],[-35,22],[-25,45],[-12,59],[-6,94],[16,28],[20,21],[30,41],[-3,62],[-12,68],[-26,60],[23,39],[13,80],[1,109],[-11,79],[-47,30],[40,30],[-33,39],[-48,94],[-22,81],[-35,57],[-15,92],[-9,109],[-19,96],[3,80],[-2,91],[-10,59],[-20,33],[-31,66],[-16,63],[-42,49],[-17,50],[-27,60],[-26,56],[-34,57],[-34,52],[-47,44],[-27,85],[-28,43],[-48,59],[-17,73],[21,90],[17,84],[8,91],[-1,55],[10,73],[-4,107],[5,115],[-6,51],[1,59],[-7,96],[2,55],[-17,103],[-7,93],[-18,79],[6,98],[-39,71],[-12,51],[-12,57],[-29,70],[-18,60],[-30,30],[-34,7],[-23,-53],[-23,-4],[-24,36],[-17,42],[-6,47],[5,46],[18,102],[34,83],[7,52],[-12,61],[15,45],[8,89],[6,94],[4,66],[2,122],[1,139],[-1,78],[8,104],[4,75],[4,78],[-2,75],[-5,132],[-4,57],[0,76],[1,72],[-7,65],[2,61],[-3,75],[-7,115],[-12,77],[-10,93],[8,99],[49,-12],[60,33],[58,64],[9,4],[32,15],[30,31],[47,41],[50,49],[33,3],[27,5],[29,10],[44,32],[35,40],[38,21],[24,17],[22,43],[19,100],[43,54],[36,86],[10,83],[5,66],[-6,80],[-6,71],[26,40],[30,19],[78,70],[29,8],[32,-5],[50,-2],[40,-18],[42,34],[46,51],[28,44],[21,53],[-39,-2],[-27,-49],[-34,-30],[-29,31],[-35,7],[-46,-28],[-57,-30],[-44,-8],[-55,-40],[-46,-19],[-62,-20],[-49,-25],[-53,4],[-19,-48],[6,-80],[37,-70],[25,-61],[-3,-98],[-26,-50],[-16,-43],[-51,-100],[-41,-70],[-64,-49],[-35,4],[-39,-14],[-34,-59],[-38,-41],[-43,-29],[-21,-7],[-43,-12],[-50,-12],[-25,-17],[-75,-105],[-20,-12],[6,53],[-19,76],[-17,58],[-24,106],[-3,104],[27,86],[19,65],[24,65],[54,109],[31,76],[13,79],[-23,34],[-35,32],[26,34],[21,25],[-1,71],[8,69],[-9,92],[-20,22],[-17,26],[30,37],[15,92],[21,112],[9,57],[-21,56],[-5,71],[14,70],[23,34],[25,85],[23,80],[22,64],[25,89],[28,93],[22,95],[15,68],[13,50],[12,60],[18,72],[16,68],[18,88],[20,93],[5,42],[14,83],[19,84],[9,50],[13,73],[9,82],[18,119],[11,108],[-3,87],[-20,46],[-31,19],[7,47],[5,60],[-19,69],[-25,64],[-22,60],[-26,42],[-41,10],[22,43],[14,53],[-10,82],[18,76],[3,79],[-6,59],[8,72],[5,60],[0,86],[-19,52],[4,78],[-16,80],[-36,34],[2,71],[-8,58],[-12,53],[-39,50],[-20,72],[-24,71],[29,54],[7,78],[-13,57],[-12,57],[-12,49],[-23,59],[-31,29],[-49,22],[-61,59],[-32,28],[-23,39],[-42,40],[-42,23],[-33,19],[-38,20],[-34,33],[-37,23],[-19,57],[25,108],[17,55],[-3,61],[-9,65],[-22,38],[-45,37],[-12,77],[-13,59],[-27,57],[-9,73],[-2,58],[-16,89],[-19,48],[-6,51],[-21,49],[-33,41],[-3,83],[-11,47],[-44,126],[-29,63],[-41,52],[-49,44],[-28,27],[-26,26],[-52,47],[-43,10],[-46,-2],[-21,-46],[-35,10],[-27,-7],[-29,-48],[-33,-48],[-20,-46],[-21,18],[-23,74],[-10,83],[9,60],[2,63],[-17,91],[-14,84],[-10,71],[-7,69],[-16,79],[-10,81],[-11,78],[-12,97],[-5,103],[-18,124],[-2,42],[4,77],[-27,109],[-12,71],[-15,58],[-21,79],[-12,68],[-20,14],[-20,73],[-14,52],[-8,30],[-26,67],[-24,41],[-24,63],[-35,64],[-26,39],[-29,38],[-25,41],[-33,58],[-20,26],[-21,21],[-22,24],[-45,4],[-39,9],[-11,66],[13,73],[46,-42],[46,-5],[21,13],[37,38],[29,51],[12,36],[11,45],[7,43],[26,56],[23,40],[8,-19],[11,-11],[24,-3],[18,-8],[15,-10],[4,12],[-6,14],[-10,26],[-10,22],[-22,29],[-14,4],[-16,3],[27,38],[27,54],[12,35],[23,62],[19,85],[11,58],[-14,76],[-8,87],[31,-5],[43,45],[34,61],[35,66],[28,67],[25,63],[14,41],[23,63],[16,39],[21,63],[15,34],[14,36],[14,43],[19,42],[24,77],[37,101],[18,56],[36,94],[26,77],[8,28],[5,20],[22,69],[17,58],[16,38],[10,44],[16,57],[22,68],[17,51],[10,46],[21,67],[20,65],[11,52],[16,46],[18,73]],[[16488,279],[-32,-3],[-225,-12],[-251,-27],[-18,-1],[-9,-1],[-147,-12],[-74,-5],[-440,-33],[-22,0],[-38,-2],[-6,-1],[-122,-9],[-63,-5],[-49,1],[-304,1],[-69,2],[-183,13],[-141,13],[-73,6],[-254,23],[-577,-23],[-8,0],[-210,-4],[-25,1],[-6,0],[-43,3],[-27,3],[-53,1],[-34,1],[-46,0],[-37,1],[-54,3],[-58,-2],[-3,0],[-65,-4],[-28,-2],[-82,-5],[-6,-1],[-45,-3],[-8,0],[-44,-1],[-62,-1],[-100,0],[-43,0],[-18,0],[-35,-1],[-57,-1],[-97,-1],[-68,0],[-17,1],[-124,-1],[-86,-6],[-3,0],[-67,0],[-22,0],[-33,0],[-27,0],[-12,0],[-4,0],[-12,-3],[-10,-4],[-27,-5],[-1,0],[-49,-12],[-110,-30],[-203,-55],[-126,6],[-634,32],[-1,0],[-32,1],[-2,0],[-84,4],[-54,-1],[-13,-1],[-19,0],[-198,-2],[-39,-1],[-148,-5],[-107,-4],[-165,-6],[-23,-5],[-8,-3],[-2,0],[-1,0],[-1,0],[-59,-4],[-61,-3],[-48,-3],[-98,-5],[-2,0],[-41,2],[-17,1],[-13,1],[-3,1],[-3,0],[-16,2],[-12,1]]],"transform":{"scale":[0.00008102033264332717,0.00004295853777537715],"translate":[-124.56617536999988,41.99187135900013]}} diff --git a/src/js/config/mapconfig/mapfiles/county/pa-counties.json b/src/js/config/mapconfig/mapfiles/county/pa-counties.json new file mode 100644 index 00000000..7e7e3e1a --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/pa-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-80.51967819599992,39.71979106100008,-74.6894691139999,42.51401389200004],"geometries":[{"type":"Polygon","properties":{"name":"PA"},"id":"42045","arcs":[[0]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42000","arcs":[[1,2]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42049","arcs":[[3,4,5,-3,6]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42015","arcs":[[7,8,9,10,11,12]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42117","arcs":[[-13,13,14,15]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42083","arcs":[[16,17,18,19,20]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42105","arcs":[[-15,21,22,23,-17,24]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42127","arcs":[[25,26,27,28,29]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42115","arcs":[[30,31,-9,32,-29]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42123","arcs":[[-20,33,34,35,-4,36]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42039","arcs":[[-36,37,38,39,-5]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42131","arcs":[[-32,40,41,42,-10]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42069","arcs":[[-28,43,44,-41,-31]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42047","arcs":[[45,46,47,48,-19]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42053","arcs":[[-49,49,50,51,-34]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42121","arcs":[[52,53,54,-38,-35,-52]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42023","arcs":[[-24,55,56,-46,-18]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42103","arcs":[[57,-26,58]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42081","arcs":[[59,60,61,62,63,64,-22,-14,-12]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42113","arcs":[[-60,-11,-43,65,66]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42085","arcs":[[-55,67,68,69,-39]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42035","arcs":[[-65,70,71,72,-56,-23]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42031","arcs":[[73,74,75,-53,-51]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42079","arcs":[[76,77,78,79,-66,-42,-45]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42065","arcs":[[80,81,82,-74,-50,-48]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42037","arcs":[[83,84,85,-61,-67,-80]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42033","arcs":[[86,87,88,89,-81,-47,-57,-73]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42027","arcs":[[90,91,92,93,-87,-72]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42089","arcs":[[94,95,96,-77,-44,-27,-58]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42097","arcs":[[97,-85,98,99,100,101,102,-63]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42093","arcs":[[-86,-98,-62]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42019","arcs":[[-76,103,104,105,106,-68,-54]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42005","arcs":[[-83,107,108,109,-104,-75]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42119","arcs":[[110,111,-91,-71,-64,-103]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42025","arcs":[[-97,112,113,114,-78]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42073","arcs":[[-107,115,116,-69]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42095","arcs":[[117,118,-113,-96,119]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42107","arcs":[[-115,120,121,122,123,-99,-84,-79]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42063","arcs":[[-90,124,125,-108,-82]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42109","arcs":[[-102,126,127,-111]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42007","arcs":[[-106,128,129,130,-116]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42087","arcs":[[131,-92,-112,-128,132]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42077","arcs":[[133,134,135,-121,-114,-119]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42061","arcs":[[-132,136,137,138,139,140,-93]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42013","arcs":[[141,142,-88,-94,-141]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42021","arcs":[[-143,143,144,145,-125,-89]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42067","arcs":[[-101,146,147,-137,-133,-127]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42129","arcs":[[-126,-146,148,149,150,151,-109]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42011","arcs":[[152,153,154,155,-122,-136]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42003","arcs":[[-110,-152,156,-129,-105]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42043","arcs":[[-124,157,158,159,160,161,-100]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42099","arcs":[[162,163,-147,-162]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42017","arcs":[[164,165,-134,-118,166]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42075","arcs":[[-158,-123,-156,167]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42125","arcs":[[-157,-151,168,169,170,-130]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42091","arcs":[[171,172,173,-153,-135,-166]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42041","arcs":[[174,175,176,-163,-161]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42009","arcs":[[-140,177,178,179,-144,-142]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42071","arcs":[[180,181,182,-159,-168,-155]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42055","arcs":[[-177,183,184,185,-138,-148,-164]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42111","arcs":[[-180,186,187,-149,-145]]},{"type":"MultiPolygon","properties":{"name":"PA"},"id":"42029","arcs":[[[188,189]],[[190,191,-181,-154,-174]]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42133","arcs":[[-183,192,193,-175,-160]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42057","arcs":[[-186,194,-178,-139]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42051","arcs":[[-188,195,196,-169,-150]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42101","arcs":[[197,198,-172,-165]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42001","arcs":[[199,-184,-176,-194]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42045","arcs":[[-199,200,-189,201,-191,-173]]},{"type":"Polygon","properties":{"name":"PA"},"id":"42059","arcs":[[-197,202,-170]]}]},"states":{"type":"GeometryCollection","bbox":[-80.51967819599992,39.71979106100008,-74.6894691139999,42.51401389200004],"geometries":[{"type":"MultiPolygon","properties":{"name":"Pennsylvania"},"id":"42","arcs":[[[0]],[[36,20,24,15,7,32,29,58,94,119,166,197,200,189,201,191,181,192,199,184,194,178,186,195,202,170,130,116,69,39,5,-3,6]]]}]}},"arcs":[[[89618,4825],[149,-24],[76,16],[168,8],[1,-85],[-12,-1],[-19,-2],[-111,-8],[-7,4],[-53,28],[-66,0],[-111,0],[-114,24],[-95,0],[0,56],[34,0],[76,8],[84,-24]],[[5,80792],[95,12418],[7443,2478],[5440,4311],[0,-128],[14,-8473],[2,-158]],[[12999,91240],[-3,-1],[-10,-3],[-14,-18],[-16,-20],[-23,-29],[-15,-19],[-12,-15],[-15,-10],[-14,-9],[-20,-20],[-14,-11],[-35,-28],[-16,8],[-24,13],[-37,17],[-44,-12],[-17,-7],[-12,-4],[-12,-4],[-37,-50],[-8,-10],[-31,-38],[-23,-30],[-15,-16],[-34,-35],[-20,-22],[-20,-24],[-26,-31],[-19,-21],[-16,-19],[-49,-16],[-10,-6],[-27,-16],[-6,-11],[-22,-39],[-70,-89],[-48,-40],[-19,-20],[-41,-45],[-18,-29],[-37,-52],[-10,-14],[-60,-46],[-18,-6],[-18,-6],[-51,-27],[-2,-1],[-10,-1],[-60,-6],[-14,-9],[-25,-18],[-32,-61],[-41,-59],[-16,-17],[-24,-26],[-42,-43],[-46,-40],[-34,-15],[-11,-4],[-12,-5],[-20,-2],[-17,-8],[-69,-32],[-55,-29],[-9,-5],[-8,-4],[-15,-1],[-13,-1],[-17,-1],[-3,-1],[-45,-10],[-43,-24],[-39,-19],[-20,-9],[-21,17],[-14,11],[-13,10],[-36,-20],[-8,-4],[-12,-13],[-17,-19],[-29,-32],[-29,-31],[-43,-49],[-17,-25],[-6,-9],[-16,-24],[-42,-46],[-47,-62],[-4,-4],[-27,-30],[-4,-5],[-10,-11],[-21,-21],[-34,-33],[-26,-28],[-70,-76],[-54,-40],[-27,0],[-10,-1],[-28,-28],[-29,-38],[-35,-35],[-10,-10],[-14,-10],[-25,-19],[-43,-29],[-27,-26],[-39,-38],[-65,-67],[-32,-2],[-16,5],[-7,2],[-51,-23],[-27,-36],[-22,-28],[-17,-19],[-38,-40],[-33,-24],[-17,-11],[-29,-18],[-12,-8],[-16,-14],[-3,-3],[-30,-27],[-31,-40],[-1,-1],[-11,-15],[-32,-46],[-17,-24],[-2,-3],[-22,-28],[-1,-2],[-4,-4],[-63,-82],[-11,-9],[-46,-37],[-16,-8],[-25,-13],[-16,-22],[-14,-21],[-18,-20],[-15,-17],[-26,-24],[-3,-3],[-22,-20],[-54,-52],[-18,-22],[-43,-41],[-29,-17],[-64,-48],[-46,-60],[-31,-37],[0,-1],[-15,-28],[-6,-10],[-8,-14],[-18,-25],[-21,-29],[-25,-29],[-54,-60],[-38,-25],[-61,-54],[-28,-23],[-37,-30],[-19,-15],[-9,-8],[-30,-27],[-2,-2],[-21,-22],[-27,-35],[-20,-27],[-23,-22],[-17,-16],[-1,0],[-3,0],[-34,1],[-45,-46],[-28,-30],[-28,-31],[-27,-31],[-14,-16],[-29,-34],[-43,-33],[-46,-19],[-18,-32],[-21,-39],[-18,-23],[-7,-8],[-16,-22],[-50,-46],[-30,-20],[-22,-16],[-22,-15],[-25,-17],[-1,-2],[-1,-1],[-23,-34],[-7,-12],[-25,-23],[-42,-30],[-14,-10],[-38,-30],[-18,-11],[-21,-12],[-52,-71],[-18,-14],[-28,-22],[-17,-7],[-21,-9],[-52,10],[-19,4],[-17,3],[8,-36],[1,-5],[9,-44],[-26,-13],[-47,-23],[-65,188],[-18,59],[-23,74],[-6,20],[-26,-3],[-39,-50],[-15,-12],[-18,-15],[-21,-18],[-6,-33],[-8,-50],[33,-35],[5,-6],[13,-14],[24,-45],[-53,-65],[-1,-1],[-18,-12],[-18,-27],[-25,-39],[-29,-51],[-3,-2],[-8,-6],[-19,-13],[0,-1],[0,-1],[-37,-34],[-6,43],[-23,11],[-4,-38],[-6,-76],[-2,-24],[-1,-21],[-1,-1],[-1,-1],[-3,-3],[-2,-1],[-17,-15],[-19,-17],[-7,-42],[-1,-7],[-16,-1],[-12,0],[-55,-35],[-4,4],[-5,7],[-6,7],[-13,16],[-34,11],[-6,-7],[-19,-24],[0,-17],[0,-15],[-3,8],[-3,10],[-5,12],[-8,-7],[-2,-27],[-4,-57],[-2,-26],[-6,17],[-27,78],[-27,-18],[21,-49],[-7,-16],[-1,-3],[-10,-19],[-4,-8],[-1,-5],[-4,-23],[-1,-9],[-1,-3],[-22,-16],[-132,-93],[-31,-23],[-47,-33],[-43,97],[-1,4],[-55,-49],[31,-106],[4,-13],[-35,-29],[-51,-41],[-25,-22],[-7,0],[-15,0],[-46,-43],[-30,-27],[-32,-24],[-44,-32],[-15,-4],[-9,-2],[-21,-5],[-2,18],[-4,38],[0,1],[18,97],[16,56],[7,38],[5,24],[11,57],[6,29],[1,1],[4,18],[10,51],[53,65],[10,26],[11,25],[15,-10],[21,-15],[19,31],[-23,6],[-18,5],[-28,46],[14,145],[21,83],[0,1],[34,129],[10,5],[16,8],[68,60],[21,55],[1,5],[21,56],[9,27],[56,131],[13,30],[28,22],[49,35],[158,21],[11,31],[-23,10],[-26,-10],[-25,-9],[-30,-2],[-42,-2],[-11,3],[-68,15],[-5,2],[36,64],[41,74],[43,13],[6,2],[3,0],[18,-8],[20,-10],[13,-81],[2,1],[2,0],[13,4],[11,4],[47,-22],[0,-78],[61,0],[142,23],[21,3],[88,15],[-1,2],[2,0],[5,2],[45,14],[11,21],[6,11],[-5,1],[-1,0],[-1,0],[-19,2],[-21,-5],[-29,110],[0,4],[2,7],[7,35],[5,27],[15,14],[40,37],[42,-48],[19,-32],[1,-1],[9,-9],[12,-19],[8,-14],[16,6],[26,8],[24,22],[2,1],[8,8],[25,-141],[5,-30],[-8,-9],[-8,-9],[-11,19],[-10,17],[-15,24],[-14,35],[-5,2],[-17,-5],[2,-10],[1,-10],[9,-50],[18,-38],[14,-30],[21,14],[25,-6],[45,48],[8,7],[36,35],[-26,46],[-38,93],[-24,56],[-44,92],[-16,39],[-30,82],[-11,83],[19,35],[28,-13],[26,-15],[3,-24],[1,-12],[4,-62],[-10,-23],[16,2],[93,23],[17,28],[7,14],[11,20],[7,0],[17,0],[0,-3],[0,-13],[13,-54],[16,35],[4,18],[11,42],[1,20],[0,16],[0,11],[0,14],[-11,27],[-10,24],[-21,8],[-111,3],[-42,1],[-4,-1],[-20,-3],[-39,-9],[-72,9],[-21,7],[-8,2],[-4,1],[-5,1],[-23,-6],[-13,0],[-9,0],[-48,-9],[-74,-13],[-87,-37],[-17,-18],[-33,-28],[-16,-14],[-53,-47],[-48,-45],[-33,-16],[-11,-5],[-2,-1],[-9,-4],[-5,-6],[-12,-18],[-25,-39],[-16,-25],[-15,-24],[-19,-29],[-27,-45],[-10,-15],[-5,-8],[-16,-24],[-12,-19],[-8,-11],[-14,-21],[-36,-55],[-28,-61],[-4,-11],[-2,-3],[-61,-131],[-29,-69],[-13,-49],[-5,-21],[-8,-32],[-14,-58],[-21,-59],[-4,0],[-5,-14],[-6,-28],[-3,-11],[-8,-25],[-23,-68],[-34,-139],[-2,-7],[-12,-49],[-11,-81],[-8,-41],[-1,-5],[-7,-36],[-24,-121],[-2,-7],[-1,-3],[-8,-30],[-34,-122],[-25,-92],[-14,-56],[-5,-16],[-6,-16],[-24,-67],[0,-1],[-1,-1],[-23,-49],[-2,-3],[0,-1],[-14,-20],[-14,-19],[-24,-36],[-14,-17],[-38,-46],[-23,-37],[-20,-32],[-9,-11],[-15,-19],[-42,-45],[-36,-40],[-17,-18],[-18,-17],[-5,-5],[-22,-25],[-45,-60],[-26,-33],[-22,-23],[-13,-13],[-26,-31],[-28,-33],[-25,-22],[-26,-27],[-21,-22],[-32,-27],[-20,-17],[-41,-24],[-59,-69],[-21,-13],[-20,-13],[-24,-4],[-29,-5],[-19,-12],[-7,-5],[-13,-8],[-10,-11],[-12,-13],[-27,-32],[-61,-77],[-12,-13],[-35,-35],[-9,-8],[-8,-7],[-37,-32],[-21,-11],[-30,-16],[-19,-15],[-36,-30],[-41,-19],[-14,-7],[-41,-35],[-31,-27],[-14,-4],[-25,-7],[-43,11],[-9,3],[-48,-42],[-12,-14],[-10,-11],[-26,-29],[-42,-76],[-18,-21],[-27,-31],[-26,-31],[-1,0],[-1,-2],[-4,-4],[-36,-37],[-60,-70],[-49,-45],[-55,-63],[-41,-46],[-38,-51],[-49,-48],[-9,-8],[-23,-13],[-22,-14],[-42,-28],[-9,-6],[-10,-8],[-74,-55],[-48,-35],[-11,-8],[-11,-9],[-43,-32],[-10,-8],[-31,-20],[-24,-20],[-28,-23],[-40,-45],[-24,-28],[-22,-25],[-24,-27],[-13,-9],[-7,-6],[-9,-6],[-18,-13],[-62,-56],[-35,-24],[-28,-19],[-57,-46],[-41,-35],[-5,-4],[-29,-28],[-35,-25],[-42,-31],[-1,-2],[-36,-38],[-39,-35],[-18,-15],[-25,-19],[-9,-7],[-27,-23],[-8,-5],[-13,-10],[-19,-12],[-30,-14],[-31,-14],[-26,-21],[-20,-15],[-35,-27],[-24,-14],[-31,-19],[-26,-14],[-21,-12],[-43,-33],[-33,-18],[-37,-17],[-69,-14],[-13,-6],[-41,-21],[-46,-17],[-1,-1],[-26,-11],[-10,-4],[-10,-5],[-20,-17],[-4,-3],[-2,-2],[-23,-19],[-20,-23],[-7,-9],[-6,-7],[-21,-24],[-28,-50],[-20,15],[-25,20],[-47,-44],[-10,-11],[-19,-20],[-77,-65],[-50,-41],[-19,-17],[-16,-14],[-43,-30],[-25,-17],[-8,-6],[-38,-26],[-29,-17],[-18,-12],[-24,-20],[-15,-13],[-42,-27],[-22,-14],[-62,-28],[-26,-16],[-28,-17],[-44,-11],[-12,-5],[-11,-4],[-39,-13],[-28,-11],[-15,-6],[-48,-28],[-41,-37],[-30,-20],[-36,-24],[-30,-18],[-7,-4],[-10,-6],[-49,-20],[-35,-14],[-19,-8],[-6,-3],[-24,-13],[-48,-29],[-18,-15],[-10,-8],[-13,-11],[-25,-18],[-7,-4],[-17,-11],[-17,-10],[-9,-17],[-17,-31],[-52,-31],[-6,-4],[-13,-8],[-17,-16],[-17,-15],[-74,-51],[-40,-24],[-19,-11],[-52,-34],[-18,-11],[-9,-5],[-12,-8],[-5,-3],[-11,-7],[-32,-19],[-40,-28],[-11,-6],[-52,-26],[-21,-17],[-12,-11],[-6,-5],[-22,-11],[-10,-5],[-7,-4],[-22,-11],[-19,-13],[-15,-10],[-20,-15],[-62,-37],[-52,-8],[-54,-42],[-51,-31],[-4,-2],[-8,-4],[-3,-3],[-54,-55],[-61,-63],[-52,-32],[-20,-17],[-17,-15],[-11,-9],[-16,-17],[-2,-2],[-44,-40],[-18,-13],[-20,-13],[-22,-13]],[[15602,81509],[-4,-280],[-3,-297],[0,-3],[-2,-147],[-1,-77],[-2,-173],[-1,-51],[0,-49],[-2,-342],[-1,-439],[-1,-201],[-1,-121],[0,-59],[0,-80],[0,-6],[0,-66],[0,-70],[0,-139],[0,-3],[-1,-266],[0,-3],[0,-41],[0,-64],[-1,-265],[1,-61],[1,-200],[-4,-42],[0,-84],[-2,-364],[-1,-101],[-8,-302],[0,-107],[-1,-344],[0,-38],[-1,-387]],[[15567,76237],[-218,11],[-63,3],[-52,2],[-147,7],[-103,4],[-38,2],[-1,0],[-54,2],[-39,2],[-31,1],[-18,1],[-31,1],[-46,3],[-177,9],[-25,1],[-31,2],[-63,2],[-29,2],[-26,0],[-21,-2],[-87,-6],[-36,-2],[-54,7],[-37,-2],[-2,0],[-52,3],[-1,0],[-27,1],[-20,-4],[-58,-7],[-1,0],[-79,0],[-20,0],[-40,0],[-21,0],[-36,0],[-79,0],[-163,-10],[-336,-8],[-36,1],[-131,2],[-36,0],[-358,4],[-90,0],[-180,-1],[-86,0],[-93,0],[-270,-2],[-4,0],[-40,0],[-124,0],[-44,0],[-103,-1],[-22,0],[-85,0],[-155,0],[-48,-1],[-222,0],[-224,-2],[-396,-2],[-223,-1],[-139,-2],[-60,0],[-48,0],[-275,-2],[-113,-1],[-231,-1],[-45,-3],[-5,1],[-24,1],[-31,0],[-62,0],[-91,-1],[-194,0],[-128,0],[-22,-1],[-46,-2],[-68,-1],[-23,-1],[-30,0],[-50,-2],[-58,-2],[-1,0],[-26,-1],[-61,1],[-35,-1],[-18,-1],[-39,-1],[-128,-3],[-93,-2],[-101,10],[-47,-7],[-57,-5],[-34,-2],[-18,-2],[-21,-1],[-26,-3],[-24,-3],[-40,-4],[-25,-2],[-38,3],[-19,2],[-72,2],[-82,6],[-66,8],[-38,-4],[-114,-8],[-17,0],[-7,0],[-24,0],[-27,-1],[-38,-1],[-58,3],[-39,0],[-84,-4],[-60,0],[-6,-1],[-36,0],[-100,-1],[-60,1],[-17,0],[-69,-1],[-175,0],[-50,0],[-127,-1],[-203,-1],[-124,0],[-34,0],[-21,0],[-245,-1],[-276,-1],[-20,0],[-23,0],[-171,1],[-8,0],[-115,-1],[-3,0],[-290,1],[-75,0],[-37,0],[-160,0],[-33,0],[-103,0],[-32,0],[-63,0],[-48,0],[-70,0],[-364,1],[-58,0],[-53,0],[-73,0],[-395,0],[-182,0],[-43,0],[-53,0],[-190,1],[-180,1],[-3,0],[-41,1],[-266,0],[-31,-1],[-158,1],[-7,0],[-42,1],[-28,0],[-6,1],[-21,0],[-20,0],[-1,0],[-44,0],[-1,0],[-47,0],[-134,0],[-124,2],[-278,2],[-363,3],[-59,-1],[-83,2],[-92,0],[-13,0],[-88,-3],[-207,-6],[-3,0],[-29,-1],[-335,-9]],[[6,76211],[0,487],[0,334],[0,596],[0,37],[1,609],[1,318],[-4,643],[0,62],[0,56],[1,246],[0,220],[0,162],[0,637],[0,174]],[[12999,91240],[0,-63],[0,-67],[0,-461],[0,-348],[0,-139],[0,-294],[1,-2894],[0,-634],[0,-95],[0,-397],[1,-3521],[0,-34],[0,-13],[1,-674],[0,-45],[152,2],[51,0],[319,2],[44,-1],[48,0],[20,0],[27,0],[76,0],[44,0],[126,64],[509,-36],[68,-4],[910,-65],[206,-14]],[[61627,81599],[399,0],[3,0],[1382,0],[769,0],[2638,0],[508,0],[615,0],[7,0],[73,0],[69,0],[192,0],[155,0],[27,0],[33,0],[42,0],[53,0],[828,0],[2016,0],[62,0],[3504,0]],[[75002,81599],[9,-217],[13,-258],[6,-159],[1,-43],[3,-60],[3,-58],[10,-185],[12,-240],[23,-443],[11,-225],[16,-366],[5,-55],[2,-37],[1,-20],[3,-71],[2,-48],[33,-652],[10,-198],[17,-369],[8,-171],[15,-241],[0,-12],[10,-169],[4,-108],[1,-61],[0,-54],[8,-200],[11,-298],[6,-134],[1,-18],[1,-30],[13,-282],[11,-243],[5,-112],[2,-61],[14,-310],[17,-373],[23,-491],[9,-202],[10,-267],[15,-297],[0,-9],[2,-37],[7,-171],[1,-5],[7,-186],[6,-95],[3,-51],[9,-241],[3,-56],[8,-204],[6,-75],[14,-387],[6,-225],[5,-122],[10,-271],[2,-63],[5,-129],[8,-139],[1,-49],[-1,-37],[3,-42],[2,-46],[2,-50],[0,-6],[6,-208],[8,-206],[13,-383],[13,-391],[2,-58],[10,-283],[4,-114],[2,-41],[8,-226]],[[75541,69155],[-158,-26],[-32,-4],[-153,-20],[-6,0],[-47,-6],[-3,-1],[-202,-25],[-185,-24],[-41,-5],[-1,0],[-29,-4],[-367,-47],[-44,-7],[-152,-21],[-2,-1],[-20,-3],[-11,-55],[-13,-60],[-12,-66],[-4,-78],[3,-50],[-1,-82],[2,-38],[8,-39],[16,-53],[-3,-22],[-3,-24],[-8,-77],[-15,-131],[-9,-108],[-9,-87],[-21,-196],[-9,-94],[-10,-101],[-11,-99],[-4,-37],[-6,-62],[-12,-109],[-4,-37],[-19,-175],[-6,-64],[-66,-623],[-15,-155],[-11,-100],[-5,-39],[-29,-281],[-8,-80],[-6,-48],[-5,-48],[-6,-60],[-9,-91],[-7,-67],[-23,-210]],[[73748,65215],[-35,4],[-227,34],[-49,7],[-75,12],[-87,13],[-36,5],[-417,73],[-41,7],[-31,5],[-222,37],[-297,50],[-57,9],[-40,7],[-33,5],[-20,4],[-40,6],[-457,76],[-65,11],[-137,22],[-41,7],[-2,0],[-28,4],[-216,35],[-68,11],[-129,21],[-407,67],[-20,3],[-7,1],[-72,12],[-42,7],[-85,14],[-164,27],[-76,12],[-175,29],[-80,14],[-163,28],[-78,14],[-54,9],[-39,7],[-133,21],[-115,19],[-54,9],[-96,15],[-87,13],[-103,16],[-1,0],[-40,7],[-17,2],[-398,64],[-36,6],[-119,19],[-113,18],[-97,15],[-45,7],[-70,12],[-249,39],[-39,7],[-43,7],[-244,41],[-87,14],[-46,8],[-48,8],[-32,5],[-215,38],[-20,3],[-82,14],[-114,18],[-119,19],[-244,38],[-460,72],[-163,25],[-102,16],[-942,147],[-264,60],[-10,2],[-50,12],[-176,40],[-242,55],[-5,1],[-181,41],[-172,40]],[[63563,66937],[-32,7],[-33,7],[-18,5],[-32,7],[-73,16],[-225,52],[-18,4],[-23,5],[-24,6],[-135,31],[-146,33],[-19,4],[-55,13],[-63,14],[-48,11],[-32,7],[-15,4],[-18,4],[-1,0],[-41,3]],[[62512,67170],[4,48],[-1,7],[-2,40],[-9,141],[-27,449],[-10,164],[-10,167],[-4,85],[-6,111],[-6,126],[-11,181],[-5,70],[-8,117],[-9,177],[-11,195],[-9,151],[-11,176],[-5,79],[-6,108],[-6,107],[-2,39],[-4,71],[-18,300],[-3,39],[-7,134],[-12,203],[-20,325],[-5,76],[-6,86],[-25,390],[-7,144],[-6,115],[-6,116],[-8,111],[-6,75],[-3,41],[-5,70],[-23,280],[-2,116],[-2,68],[-18,381],[-5,115],[-15,215],[-8,122],[-6,92],[-13,252],[-8,163],[-12,269],[-3,135],[-4,210],[-1,55],[-4,49],[0,4],[-17,226],[-19,251],[-7,87],[-4,53],[-10,115],[-7,89],[-8,93],[-10,174],[-14,252],[-3,44],[-31,461],[-6,92],[-4,62],[-9,146],[-7,93],[-10,134],[-2,37],[-18,259],[-11,169],[-11,175],[-11,163],[-7,98],[-31,471],[-6,88],[-21,316],[0,5],[-23,343],[-3,51],[-10,154],[-21,305],[-31,473],[-13,200],[-1,10],[-2,30],[-7,104],[-39,595],[-3,42],[0,1],[-4,63],[-14,199],[-11,146]],[[62512,67170],[-6,-19],[5,-107],[-8,-23],[-2,-4],[-52,-128],[0,-2],[-2,-4],[-3,-5],[-2,-4],[-2,-2],[-15,-23],[-1,-1],[-3,-3],[-2,-3],[-2,-2],[-41,-37],[-1,-1],[-3,-2],[-3,-2],[-2,-1],[-17,-8],[-3,-1],[-3,-1],[-1,0],[-26,-2],[-2,0],[-2,0],[-42,2],[-6,-2],[-119,-79],[-10,-8],[-25,-33],[-1,-2],[-3,-3],[-1,-1],[-25,-25],[-2,-2],[-31,-26],[-3,-3],[-3,-1],[-3,-2],[-19,-8],[-1,0],[-99,-36],[-2,-1],[-2,0],[-26,-5],[-1,0],[-3,0],[-3,0],[-3,0],[-2,1],[-44,17],[-1,1],[-3,1],[-3,2],[-2,2],[-3,2],[-23,6],[-14,0],[-1,-1],[-76,-52],[-6,-5],[-1,-2],[0,-5],[0,-3],[-1,-6],[-20,-160],[-1,-6],[0,-1],[-8,-44],[-1,-6],[-1,-5],[-1,-6],[-2,-5],[-13,-42],[0,-1],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-3,-4],[-2,-3],[-1,-1],[-11,-16],[-2,-2],[-3,-3],[-1,-2],[-21,-19],[-2,-1],[-2,-2],[-80,-59],[0,-1],[-3,-2],[-2,-1],[-19,-8],[-3,-1],[-3,-1],[-3,0],[-3,0],[-3,1],[-1,0],[-65,20],[-27,4],[-19,0],[-20,-6],[-17,-7],[-39,-31],[-17,-16],[-77,-97],[-88,-129],[-73,-168],[7,-1],[15,-16],[-4,-43],[-4,-45],[1,-5],[-12,-1],[-38,-2],[-8,-1],[-14,-1],[-286,-18],[-187,-11],[-38,-3],[-44,-3],[-40,-2],[-65,-5],[-96,-6],[-35,-3],[-85,-5],[-46,-3],[-46,-3],[-19,-1],[-93,-7],[-90,-5],[-73,-4],[-61,-4],[-47,-4],[-21,-1],[-22,-2],[-22,-1],[-20,-1],[-23,-2],[-30,-1],[-85,-1],[-50,0],[-25,-4],[-19,-2],[-29,-3],[-91,-4],[-62,-4],[-109,-5],[-42,-2],[-19,-1],[-63,-3],[-269,-13],[-82,-4],[-27,-1],[-128,-4],[-20,0],[-5,-1],[-13,0],[-72,-2],[-22,-1],[-18,0],[-1,0],[-18,-1],[-24,-1],[-32,-2],[-73,-3],[-18,-1],[-110,-5],[-82,-4],[-275,-7],[-3,0],[-20,-1],[-19,0],[-100,-3],[-21,-4],[-121,-8],[-30,-2],[-79,-8],[-25,0],[-115,-6],[-381,-14],[-122,-1],[-24,0],[-59,0],[-22,2],[-50,-2],[-75,-2],[-37,-1],[-55,-3],[-102,-6],[-56,-2],[-67,-1],[-6,0],[-137,-2],[-66,-1],[-21,0],[-73,1],[-35,0],[-74,0],[-28,-1],[-18,-1],[-61,-3],[-25,-1],[-5,0],[-68,-5],[-19,-1],[-130,5],[-164,-2],[-67,-2],[-33,0],[-314,-5],[-226,-4],[-126,-2],[-66,-1],[-65,-1],[-29,0],[-228,-3],[-93,-1],[-176,-2],[-19,0],[-38,-1],[-18,0],[-4,0],[-17,0],[-18,0],[-25,0],[-34,-1],[-91,-1],[-271,-3],[-238,-3],[-35,-1],[-273,-3],[-7,0],[-28,0],[-68,-1],[-187,-2],[-99,-1],[-66,-1],[-23,0],[-218,-2],[-95,-1],[-194,-2],[-33,-1],[-86,-1],[-86,-1],[-145,-2],[-267,-3],[-19,0],[-17,-1],[-552,-13],[-314,-8]],[[50085,65222],[-1,91],[-2,174],[0,17],[-6,463],[-3,308],[-5,464],[-1,136],[-2,113],[-3,357],[-6,514],[0,1],[-3,325],[-12,1170],[-5,471],[-4,358],[0,38],[-1,53],[-1,151],[-9,790],[-5,484],[-2,154],[-2,168],[-4,324],[0,22],[0,20],[-1,78],[-1,193],[-1,84],[0,163],[-1,54],[0,53],[-1,3],[0,73],[-2,300],[-4,397],[-3,353],[-1,37],[-1,127],[-2,117],[0,97],[-1,127],[0,37],[0,64],[-4,289],[-6,396],[1,39],[0,52],[-4,135],[-1,63],[0,36],[1,67],[1,45],[-4,254],[-3,282],[0,43],[-1,39],[-1,132],[-1,104],[-2,152],[-2,150],[0,109],[-2,196],[-6,473],[-1,44],[-2,166],[-5,405],[-1,69],[0,30],[-1,38],[-2,100],[1,66],[0,60],[-1,58],[-20,1227],[-1,91],[-1,42],[0,48],[3,107],[-11,977],[-4,268]],[[49909,81597],[39,2],[1768,0],[74,0],[6336,0],[65,0],[174,0],[47,0],[2546,0],[35,0],[634,0]],[[39674,81599],[0,-709],[0,-65],[0,-108],[0,-73],[1,-149],[0,-1],[0,-130],[0,-49],[0,-7],[0,-286],[0,-400],[1,-296],[0,-628],[0,-10],[0,-58],[0,-138],[1,-483],[0,-570],[1,-265],[1,-42],[10,-580],[3,-684],[3,-763],[2,-266],[3,-610],[1,-94],[-1,-83],[1,-42],[0,-7],[1,-158],[0,-9],[0,-42],[7,-1135],[3,-208],[1,-282],[3,-975],[0,-86],[0,-16],[0,-39],[1,-69],[2,-603],[1,-383],[0,-356],[0,-36],[1,-40],[0,-9],[1,-451],[0,-87],[3,-834],[3,-247]],[[39728,67938],[-69,1],[-244,0],[-5,0],[-47,0],[-4,0],[-17,-1],[-70,2],[-263,-3],[-75,-1],[-252,-1],[-95,0],[-104,-1],[-105,-1],[-154,-9],[-258,-2],[-152,-3],[-61,-1],[-126,-2],[-2,0],[-16,0],[-50,-1],[-12,0],[-41,-1],[-535,0],[-55,-1],[-126,0],[-348,-9],[-142,-4],[-146,-5],[-129,-4],[2,-248],[2,-277]],[[36029,67366],[-316,2],[-48,0],[-167,1],[-223,1],[-87,1],[-252,1],[-3,213],[-3,191],[-2,127],[-2,218],[-1,64],[0,58],[1,115],[-280,0],[-220,-8],[-25,-1],[-479,-13],[-5,0],[-31,-1],[-221,-8],[-55,1],[-200,-6],[-33,-1],[-20,-1],[-405,-11],[-148,-5],[-5,0],[-210,-6],[-87,-3],[-146,1],[-104,1],[-39,0],[-190,-40],[-340,-72],[-46,-9],[-19,-1],[-4,0],[-28,1],[-20,0],[-92,1],[-135,3],[-172,-3],[-70,-1],[-27,0],[-104,-2],[-126,0],[-340,-2],[-50,0],[-3,0],[-29,-1],[-22,0],[-6,0],[-32,1],[-29,1],[-5,0],[-68,1],[-45,3],[-75,2],[-77,1],[-159,3],[-103,-2],[-88,1],[-43,-1],[-61,0],[-7,0],[-63,0],[-33,-2],[-20,0],[-39,0],[-145,-5],[-50,-1],[-24,-2],[1,-69],[-143,4],[-69,1],[-5,0],[-136,3],[-260,3],[-157,3],[-64,3],[-53,0],[-35,1],[-24,1],[-25,1],[-18,0],[-22,-6],[-119,6],[-24,1],[-129,2],[-90,1],[-144,2],[-95,0],[-36,1],[-190,6],[-163,4],[-240,5],[-90,1],[-75,-3]],[[26819,68142],[1,43],[0,38],[8,415],[2,89],[14,-1],[0,397],[-1,293],[-1,354],[8,394],[5,253],[5,242],[1,59],[0,3],[0,35],[13,652],[11,480],[1,55],[1,96],[1,58],[0,21],[1,36],[1,93],[1,103],[3,309],[1,51],[3,169],[1,48],[3,202],[11,600],[5,287],[6,312],[11,604],[1,94],[4,128],[0,39],[0,1],[1,39],[2,141],[0,5],[3,157],[465,16],[-4,357],[103,0],[-4,488],[0,70],[-1,32],[0,110],[-1,46],[-18,2],[2,160],[1,128],[3,187],[1,193],[1,60],[0,84],[1,112],[0,8],[1,52],[0,13],[0,89],[10,1294],[6,854],[0,28],[-50,0],[0,177],[-1,118],[-1,369],[-2,594],[0,50],[0,138],[0,2],[-1,137]],[[27457,81504],[1005,0],[3159,0],[457,42],[445,31],[57,4],[61,5],[91,6],[1319,9],[201,-36],[38,1],[70,2],[177,4],[1668,40],[981,-7],[68,-1],[3,0],[589,-4],[7,0],[23,-1],[4,0],[65,0],[112,0],[566,0],[342,0],[709,0]],[[50085,65222],[2,-180],[6,-347],[0,-54],[0,-16],[1,-167],[0,-127],[2,-213],[0,-48],[4,-242],[2,-114],[1,-63],[5,-471],[2,-237]],[[50110,62943],[-152,-3],[-126,-2],[-13,0],[-131,-2],[-34,-6],[-304,1],[-41,-1],[-169,-3],[-199,1],[-78,-4],[-214,-3],[-3,0],[-89,-1],[-289,-6],[-78,0],[-107,-2],[-226,-3],[-68,-2],[-144,-4],[-50,1],[-24,1],[-61,3],[-18,-1],[-76,-1],[-33,-4],[-19,2],[-55,-2],[-58,1],[-25,1],[-104,1],[-69,-5],[-53,-2],[-35,-1],[-68,1],[-40,1],[-115,-1],[-55,-2],[-64,-1],[-127,-3],[-55,-2],[-68,-2],[-84,-1],[-24,0],[-19,0],[-14,-1],[-19,0],[-19,0],[-8,0],[-18,0],[-20,-2],[-58,-5],[-65,0],[-82,-1],[-45,-6],[-84,-2],[-114,-6],[-104,-6],[-129,-1],[-101,-2],[-24,-1],[-28,0],[-199,-4],[-138,-3],[-229,-2],[-187,1],[-102,-4],[-43,-1],[-128,-1],[-113,-1],[-61,-2],[-65,0],[-120,-9],[-118,-4],[-35,3],[-112,-6],[-128,-5],[-33,-2],[-100,-6]],[[43403,62808],[-43,0],[-93,7],[-45,-2],[-5,0],[-161,6],[-127,4],[-92,3],[-51,2],[-80,0],[-143,2],[-205,1],[-6,0],[-48,94],[-9,18],[-6,10],[-77,150],[-160,315],[-155,294],[-57,109],[-208,406],[-38,75],[-14,28],[-128,256],[-107,204],[-51,98],[-75,143],[-83,158],[-58,117],[-69,136],[-54,106],[-143,281],[-28,55],[-66,129],[-151,292],[-66,130],[-149,288],[-32,64],[-117,230],[-72,140],[-15,30],[-79,152],[-29,56],[-13,25],[-267,518]],[[39674,81599],[51,0],[1562,-19],[17,0],[1913,-24],[2037,-24],[183,-2],[124,-2],[61,-1],[1884,-23],[69,0],[2334,93]],[[93477,67359],[-83,-224],[-56,-140],[-50,-126],[-29,-75],[-49,-136],[-34,-85],[-15,-37],[-58,-159],[-60,-154],[-22,-58],[-43,-111],[-104,-287],[-61,-161],[-72,-211],[-5,-16],[-33,-95],[-78,-206],[-56,-143],[-34,-86],[-54,-148],[-200,-533],[-56,-149],[-109,-287],[-14,-44],[-31,-84],[-19,-51],[-16,-43],[-31,-81],[-16,-44],[-12,-30],[-17,-45],[-22,-60],[-51,-135],[-1,-4],[-14,-35],[-13,-34],[-19,-52],[-16,-41],[-11,-31],[-11,-29],[-19,-50],[-22,-29],[-2,-25],[-3,-34],[-17,-12],[-8,-48],[-16,-26],[-8,-33],[-17,-16],[-88,-361],[-47,-27],[-49,-30],[-2,-1],[-38,-332],[-32,-30],[-6,-19],[-1,0],[10,-193],[5,-101],[-184,-102],[-13,-19],[-103,-149],[-89,-128],[-75,-74],[-56,-54],[-32,-32],[-19,-12],[-88,12],[-23,-1],[-87,-85],[-5,-6],[-4,-3],[-103,-113],[-1,-9],[-66,-64],[-15,-45],[-18,-81],[-13,-28],[-29,-59],[-14,-95],[-17,-119],[-35,-83],[-5,-13],[-20,-136],[8,-71],[21,-62],[-1,-110],[-20,-117],[-66,-64],[-8,-2],[-85,-12],[-36,-43],[-14,-96],[23,-86],[22,-58],[-16,-86],[-52,-51],[-14,5],[-42,-8],[-46,-28],[-13,-8],[-6,-5],[-24,15],[-33,22],[-51,17],[-145,-83],[-59,-58],[-14,-27],[-2,-4],[-38,-38],[-28,9],[-54,15],[-7,2],[-43,70],[-39,96],[-28,37],[-37,12],[-28,-28],[-18,-18],[-5,-38],[-4,-34],[-4,-26],[-20,-39],[-32,-28],[-25,0],[-2,0],[-38,-8],[-25,-7],[-8,-7],[-9,-8],[-4,-4],[0,-2],[-13,-30],[-16,-8],[-2,1],[-14,5],[-3,1],[-108,112],[-3,4],[-36,90],[-25,63],[-16,46],[-12,32],[-31,7],[-15,-13],[-15,-13],[-4,-4],[-1,-4],[-2,-18],[-23,-22],[-8,-8],[-27,-42],[-9,-25],[-6,-20],[-3,-3],[-24,-23],[-4,-5],[-15,-1],[-3,1],[-22,2],[-7,-4],[-3,-7],[-33,-90],[-12,-150],[1,-5],[21,4],[28,-42],[-3,-21],[1,-29],[3,-14],[24,-91],[13,-34],[38,-56],[1,-1],[18,-21],[0,-1],[16,-40],[60,-152],[4,-37],[-3,-25],[-5,-43],[0,-2],[-8,-68],[-3,-13],[-6,-10],[-24,-27],[-15,-20],[0,-1],[-43,-69],[-5,-27],[10,-107],[3,-12],[27,-17],[23,-11],[31,2],[28,6],[12,0],[51,0],[9,-7],[23,-28],[2,-2],[15,-8],[8,-2],[7,4],[9,10],[9,16],[8,28],[2,5],[8,46],[3,14],[25,64],[73,-23],[5,-10],[24,-51],[50,-104],[7,-37],[0,-2],[1,-6],[1,-5],[4,-11],[0,-1],[1,-5],[2,-5],[2,-5],[1,-2],[11,-25],[1,-2],[2,-5],[3,-4],[63,-99],[20,-75],[-28,-98],[0,-1],[-1,-1],[-1,-22],[5,-31],[1,-5],[1,-14],[0,-15],[1,-5],[-1,-1],[-5,-16],[-13,-16],[-47,-62],[-7,-9],[-22,-28],[31,-79],[33,-85],[-1,-76],[0,-2],[-15,-55],[-20,-51],[-1,-1],[-4,-12],[-8,-21],[-1,-1],[-6,-21],[-73,-235],[0,-1],[-3,-4],[-2,-3],[-3,-4],[-1,-1],[-42,-47],[-34,-42],[-1,-2],[-1,-5],[0,-5],[-9,-104],[4,-12],[19,-60],[3,-9],[10,-81],[0,-3],[2,-21],[-7,-7],[-51,-60],[-1,0],[-5,-7],[-16,-27],[-4,-7],[0,-3],[-42,-170],[-14,-57],[-1,-33],[1,-18],[10,-71],[0,-2],[1,-1],[3,-14],[-6,-51],[-1,-7],[-45,-160],[-6,-20],[-5,-20],[-1,-5],[-2,-5],[-2,-6],[-1,-4],[-1,-1],[-16,-39],[-2,-4],[-2,-4],[-3,-4],[-2,-4],[-3,-3],[-2,-3],[-3,-3],[-3,-2],[-3,-2],[-3,-1],[-1,-1],[-14,-5],[-2,0],[-3,-1],[-3,0],[-1,0],[-58,3],[-1,0],[-44,-52],[-11,-108],[9,-99],[9,-10],[12,3],[12,-26],[0,-3],[-5,-39],[27,-10],[22,-27],[5,-40],[-10,-36],[-3,-10],[-16,-29],[-18,-20],[-10,-34],[-10,-47],[-3,-36],[-23,-20],[-20,-43],[-19,-20],[-111,-172],[-21,-19],[-30,-31]],[[88522,54389],[-15,-21],[-42,-1],[-4,3],[-26,14],[-22,-9],[-18,-6],[-17,-27],[-67,-8],[-35,-4],[-29,-3],[-573,-51],[-59,-6],[-62,-6],[-17,-2],[-69,-5],[-30,-2],[-72,-7],[-234,-21],[-18,0],[-24,0],[-32,-4],[-6,0],[-104,-11],[-23,-2],[-7,-1],[-53,-5],[-68,-7],[-56,-5],[-39,-3],[-431,-33],[-39,-4],[-47,-4],[-1,0],[-43,-3],[-12,0],[-24,-2],[-34,-1],[-21,-2],[-6,0],[-46,-3]],[[85997,54137],[11,42],[2,11],[8,46],[17,20],[17,18],[4,1],[15,2],[4,4],[14,15],[1,9],[5,36],[16,26],[2,15],[5,24],[12,30],[13,29],[13,39],[16,24],[23,6],[18,-2],[16,-21],[15,-24],[25,-4],[23,10],[23,6],[26,7],[17,14],[8,87],[31,31],[37,17],[22,-16],[16,19],[29,-66],[46,-15],[14,-28],[25,-19],[19,9],[16,16],[10,36],[4,48],[8,39],[20,17],[22,-11],[18,-13],[28,-22],[19,4],[33,61],[3,37],[9,34],[19,45],[16,26],[8,41],[18,32],[14,-3],[7,-2],[14,-43],[10,-34],[25,6],[15,26],[22,18],[20,5],[23,21],[44,89],[22,0],[15,28],[16,15],[0,43],[-2,90],[-7,288],[-1,49],[-16,664],[-9,351],[-3,134],[-1,37],[-27,944],[-6,218],[-5,164],[-1,55],[2,51],[-5,76],[-12,434],[-5,197],[-5,193],[0,5],[-1,54],[-1,57],[-1,40],[-7,359],[-4,135],[-1,26],[0,39],[-4,180],[-4,149],[-2,170],[-4,170],[-1,37],[-14,515],[-2,47],[-5,235],[0,36],[-8,337],[-7,178],[-7,301],[-6,246],[-4,194],[-2,105],[0,38],[1,155],[-5,110],[-3,132],[-5,134],[-4,129],[-15,431],[-9,132],[-8,428],[-4,119],[-4,125],[-5,137],[-10,201],[-15,439],[0,80],[-2,41],[-10,353],[-12,464],[0,32],[0,12],[-2,118],[-8,379],[-8,259],[-8,300],[-12,323],[0,73],[-3,100],[-1,43],[-2,42],[-5,56],[-1,6],[-13,727]],[[86742,68776],[-1,125],[-3,96],[0,6],[-3,84],[-9,290],[-2,77],[-2,39],[-1,45],[-4,171],[-16,535],[-5,214],[-9,295],[-2,91],[-3,84],[-3,101],[-17,640],[-4,143],[-1,39],[-15,505],[0,2],[-7,273],[-22,673],[-4,143],[-1,38],[-9,332],[-3,98],[-2,75],[-8,343],[-1,27],[-4,183],[0,3],[-2,82],[-1,28],[-8,284],[-2,93],[-3,123],[-1,37],[-8,323],[-4,151],[-5,191],[-5,202],[-2,43],[-5,203],[-6,132],[-3,72],[-19,434],[-2,67],[-3,53],[0,48],[-4,60],[-2,50],[-2,70],[-5,225],[-4,142],[-6,258],[-4,140],[-2,85],[-7,268],[0,4],[-2,183],[-2,161],[-5,156],[-3,101],[-8,380],[-17,680],[-1,39],[-29,992],[-2,448]],[[86397,81554],[1523,45],[529,0],[18,0],[37,-23],[7,-5],[19,-26],[50,-70],[2,-4],[3,-3],[2,-1],[32,-30],[1,-1],[3,-2],[3,-2],[67,-36],[1,0],[57,-30],[1,-1],[49,-64],[22,-81],[0,-2],[20,-73],[0,-1],[2,-5],[1,-3],[11,-33],[0,-3],[-12,-60],[-21,-99],[-12,-44],[-1,-150],[-1,-17],[-5,-45],[12,-45],[10,-43],[2,-8],[19,-44],[23,-43],[40,-52],[72,-26],[39,-29],[4,-5],[7,-18],[9,-37],[1,-2],[1,-5],[2,-5],[2,-5],[2,-5],[2,-4],[3,-4],[2,-4],[3,-3],[2,-3],[1,-1],[45,-45],[23,-24],[23,-48],[5,-32],[0,-6],[1,-2],[10,-60],[1,-3],[1,-6],[2,-6],[0,-2],[33,-110],[1,-3],[1,-3],[41,-118],[1,-1],[1,-5],[3,-5],[2,-4],[2,-4],[30,-48],[2,-4],[3,-3],[2,-3],[3,-3],[3,-2],[43,-30],[3,-2],[3,-1],[3,-1],[3,-1],[2,0],[57,-2],[1,0],[3,0],[3,1],[3,1],[2,1],[28,14],[1,0],[3,2],[3,2],[2,3],[3,3],[2,2],[24,31],[3,5],[16,20],[11,65],[12,30],[39,23],[33,11],[19,-7],[22,-14],[0,-19],[-4,-103],[-5,-9],[6,-55],[20,-66],[35,-66],[14,-25],[8,-9],[8,-9],[14,-11],[47,-20],[3,-1],[3,-2],[2,-1],[21,-18],[1,0],[3,-3],[2,-3],[70,-154],[15,-34],[13,-31],[1,-3],[1,-5],[2,-5],[1,-6],[1,-2],[9,-42],[1,-4],[1,-6],[1,-6],[0,-3],[3,-24],[0,-3],[1,-6],[0,-3],[7,-149],[0,-2],[0,-7],[0,-18],[0,-6],[-4,-131],[3,-16],[29,-109],[7,-24],[38,-191],[36,-109],[0,-16],[1,-146],[-53,-135],[-25,-69],[-15,-71],[-8,-51],[-2,-60],[3,-129],[4,-27],[5,-13],[11,-20],[10,-12],[14,-7],[7,-6],[103,-105],[56,-56],[53,-210],[1,-46],[-8,-32],[-81,-182],[-7,-66],[27,-120],[20,-49],[57,-86],[14,-2],[21,-4],[58,-10],[35,12],[10,4],[23,7],[68,112],[12,20],[11,11],[27,26],[5,4],[8,-1],[12,-2],[9,-2],[73,-64],[63,-156],[22,-49],[8,-17],[55,-47],[41,-37],[52,-7],[0,1],[3,4],[2,4],[2,4],[32,65],[2,4],[2,5],[1,5],[2,6],[1,5],[1,1],[33,148],[25,56],[27,28],[59,50],[47,24],[31,13],[50,0],[3,0],[1,0],[14,3],[41,-16],[50,-30],[43,-45],[32,-55],[10,-35],[12,-42],[4,-17],[2,-6],[1,-5],[2,-5],[2,-5],[2,-5],[2,-4],[2,-4],[2,-2],[23,-34],[1,-1],[2,-4],[3,-3],[3,-2],[3,-2],[2,-2],[3,-2],[3,-1],[3,0],[1,0],[35,-4],[2,0],[3,0],[3,1],[3,1],[3,1],[3,2],[1,1],[40,30],[2,2],[3,3],[2,3],[3,3],[2,4],[3,4],[2,4],[2,5],[2,4],[2,6],[1,5],[1,5],[30,122],[1,6],[1,6],[1,6],[1,5],[12,121],[1,3],[1,2],[2,6],[1,5],[1,4],[16,40],[23,15],[46,-13],[39,-46],[1,-6],[0,-3],[2,-5],[1,-6],[2,-5],[1,-5],[1,-1],[3,-9],[3,-12],[0,-8],[-12,-193],[0,-6],[0,-6],[0,-7],[0,-6],[1,-6],[7,-80],[1,-7],[1,-6],[0,-3],[20,-110],[1,-3],[1,-4],[61,-201],[45,-60],[2,-3],[3,-3],[2,-2],[3,-3],[3,-1],[60,-35],[3,-1],[3,-1],[3,-1],[1,0],[67,-8],[3,0],[3,0],[3,1],[3,1],[3,2],[3,1],[3,3],[1,1],[48,46],[71,67],[44,75],[40,5],[32,-55],[65,-117],[73,-95],[1,-2],[3,-3],[3,-2],[3,-3],[3,-2],[2,-1],[30,-13],[0,-1],[3,-1],[3,0],[6,0],[18,1],[23,3],[1,0],[3,0],[3,1],[3,1],[34,19],[31,1],[33,-18],[44,-49],[14,-48],[7,-100],[-2,-127],[-9,-61],[-20,-132],[-1,-4],[0,-7],[-1,-6],[0,-6],[-2,-61],[0,-6],[0,-7],[0,-6],[1,-6],[0,-6],[1,-6],[1,-3],[18,-103],[1,-3],[1,-6],[1,-6],[2,-5],[2,-5],[2,-5],[2,-5],[2,-4],[1,-2],[31,-53],[1,-2],[3,-4],[2,-3],[3,-3],[3,-3],[3,-2],[2,-2],[3,-1],[1,-1],[54,-21],[80,-54],[48,-44],[19,-27],[36,-67],[0,-1],[3,-4],[2,-3],[1,-2],[40,-53],[2,-2],[3,-3],[2,-2],[37,-34],[3,-3],[3,-1],[3,-2],[3,-1],[1,0],[9,-2],[6,-2],[23,-5],[3,-1],[3,0],[3,0],[3,1],[26,7],[19,6],[3,1],[3,1],[0,1],[93,53],[34,16],[39,4],[32,-5],[13,-11],[3,-31],[0,-72],[-21,-174],[-30,-150],[-20,-32],[-3,-3],[-3,-4],[-2,-3],[0,-1],[-3,-4],[-14,-19],[-19,-12],[-23,-11],[-27,-8],[-8,2],[-29,13],[-8,8],[-1,1],[-2,3],[-3,2],[-3,2],[-3,1],[-1,1],[-21,7],[-2,1],[-3,0],[-3,0],[-3,0],[-3,0],[-2,-1],[-27,-11],[-1,0],[-2,-1],[-11,-5],[-1,-1],[-3,-2],[-3,-2],[-2,-3],[-3,-2],[-3,-4],[-1,-2],[-25,-39],[-1,-1],[-2,-4],[-2,-3],[-69,-137],[0,-1],[-5,-10],[-2,-4],[0,-1],[-6,-16],[-2,-3],[-1,-5],[-31,-95],[-1,-1],[-1,-5],[-2,-6],[-1,-5],[0,-2],[-5,-24],[-5,-26],[0,-5],[-1,-6],[-1,-3],[-10,-96],[-1,-3],[0,-7],[-1,-6],[0,-1],[-4,-150],[0,-4],[-1,-155],[0,-2],[1,-6],[0,-6],[0,-5],[4,-45],[0,-1],[1,-7],[1,-6],[1,-6],[1,-5],[1,-6],[12,-43],[2,-5],[2,-5],[2,-5],[2,-5],[0,-1],[31,-62],[1,-3],[3,-4],[2,-3],[3,-4],[2,-3],[3,-2],[1,-1],[2,-2],[47,-33],[3,-1],[3,-2],[3,-1],[3,0],[2,0],[64,-5],[2,0],[3,1],[2,0],[72,18],[1,0],[3,1],[2,1],[9,5],[3,2],[2,1],[28,23],[2,1],[2,2],[3,3],[0,1],[14,16],[13,17],[25,15],[26,10],[13,1],[18,-6],[22,-8],[3,-1],[24,-19],[96,-73],[43,-34],[8,-6],[58,-46],[23,-45],[41,-129],[82,-294],[5,-241],[1,-27],[0,-6],[-1,-40],[-14,-92],[-20,-121],[-3,-82],[4,-79],[10,-91],[1,-3],[8,-18],[-4,-27],[-1,-8],[2,-47],[7,-43],[30,-176],[27,-183],[9,-59],[4,-29],[-3,-4],[-5,-2],[-19,-12],[-15,-3],[-109,45],[-3,1],[-3,0],[-1,1],[-25,2],[-2,0],[-3,-1],[-3,0],[-3,-1],[-3,-2],[-2,-1],[-1,0],[-3,-1],[-3,-2],[-3,-1],[-3,-3],[-18,-16],[-2,-2],[-3,-3],[-2,-2],[-46,-34],[-6,-4],[-23,-17],[-13,-27],[-11,-56],[0,-41],[2,-10],[13,-69],[20,-48],[3,-5],[17,-25],[26,-41],[26,-28],[56,-88],[38,-86],[17,-86],[9,-42],[51,-183],[2,-18],[8,-77],[5,-77],[4,-58],[-2,-5],[-20,-49],[-5,-8],[-2,-2],[-2,-4],[-2,-4],[-9,-18],[-39,-53],[0,-1],[-5,-5],[-3,-3],[-1,-2],[-19,-24],[-1,-1],[-2,-4],[-1,-2],[-18,-111],[-10,-65],[9,-45],[7,-20],[14,-37],[13,-22],[34,-53],[7,-10],[25,-61],[13,-40],[26,-119],[1,-1],[16,-70],[8,-71],[0,-388],[-7,-116],[0,-1],[-1,-6],[0,-3],[-1,-46],[0,-4],[0,-6],[1,-6],[0,-7],[0,-1],[10,-95],[4,-39],[8,-71],[10,-99],[0,-1],[0,-3],[22,-187],[1,-2],[1,-6],[0,-3],[6,-34],[1,-3],[15,-77],[13,-119],[0,-4],[10,-76],[-4,-9],[-19,-6],[-13,1],[-1,1],[-3,1],[-3,1],[-2,1],[-13,5],[-14,15],[-6,10],[-1,1],[-3,3],[-2,3],[-3,3],[-1,0],[-2,2],[-9,12],[0,1],[-3,3],[-2,2],[-2,3],[-2,2],[-22,20],[-1,1],[-3,3],[-3,1],[-2,2],[-3,1],[-3,0],[-9,2],[-15,3],[-1,0],[-3,0],[-3,0],[-3,-1],[-3,-1],[-1,-1],[-30,-14],[-1,-1],[-3,-2],[-3,-2],[-3,-3],[-21,-22],[-3,-3],[-3,-3],[-2,-4],[-2,-4],[-2,-3],[-11,-36],[-17,-53],[-2,-14],[0,-5],[0,-6],[0,-12],[0,-20],[0,-14],[1,-26],[0,-1],[0,-6],[1,-6],[1,-7],[1,-6],[0,-3],[0,-2],[8,-44],[4,-22],[0,-1],[0,-6],[-29,-15],[-6,-3],[-9,-5],[-1,0],[-36,-20],[-39,-29],[-53,0],[-46,2],[-25,-9],[-5,-2],[-1,-6],[-2,-3],[-1,-35],[-1,-15],[-1,-14],[14,-23],[76,-122],[0,-1]],[[86742,68776],[-44,1],[-15,-1],[-59,-6],[-95,10],[-64,-2],[-131,-2],[-266,-5],[-318,0],[-92,5],[-25,1],[-26,0],[-11,1],[-32,1],[-19,-1],[-18,0],[-87,-2],[-66,-2],[-34,-1],[-161,-2],[-19,1],[-243,10],[-77,1],[-59,0],[-273,5],[-1,0],[-85,0],[-36,0],[-145,3],[-181,3],[-30,-3],[-30,-2],[-115,2],[-69,1],[-65,0],[-67,5],[-171,13],[-37,-16],[-44,10],[-17,0],[-243,-5],[-117,0],[-185,1],[-179,3],[-104,5],[-4,0],[-252,-5],[-3,0],[-25,-4]],[[82303,68799],[-36,1],[-365,4],[-87,2],[-22,0],[-134,4],[-111,3],[-43,3],[-150,11],[-25,2],[-30,2],[-35,3],[-22,1],[-8,0],[-24,0],[-31,1],[-105,2],[-26,2],[-1,0],[-49,1],[-147,1],[-222,5],[-21,0],[-157,4],[-58,1],[-283,8],[-63,1],[-186,4],[-89,3],[-108,9],[-78,0],[-114,-1],[-70,0],[-34,-1],[-537,-3],[-20,0],[-22,0],[-199,2],[-6,0],[-121,1],[-108,0],[-88,1],[-49,0],[-168,-1],[-56,-1],[-200,-1],[-47,1],[-109,-1],[-80,-1],[-32,-1],[-136,0],[-27,-1],[-3,0],[-95,-6],[-67,-3],[-53,3],[-36,2],[-115,5],[-18,-2],[-55,-3],[-67,3],[-110,0],[-77,0],[-33,0],[-75,0],[-94,3],[-15,0],[-13,1],[-131,-8],[-51,-3],[-235,-6],[-19,0],[-165,-4],[-26,-1],[-21,0],[-29,-1],[-145,-4],[-65,-2],[-10,311]],[[75002,81599],[114,0],[21,0],[460,0],[109,-1],[1723,-7],[71,0],[817,-3],[1124,-5],[1635,-7],[80,0],[317,-1],[54,-1],[79,0],[78,0],[38,-1],[93,0],[2394,-10],[66,0],[362,-2],[1760,-7]],[[26819,68142],[-52,3],[-61,4],[-84,3],[-111,3],[-19,1],[-72,1],[-123,3],[-58,3],[-33,2],[-20,1],[-18,1],[-6,0],[-93,1],[-441,16],[-38,1],[-69,2],[-11,0],[-22,1],[-15,0],[-14,1],[-19,0],[-123,0],[-199,18],[-154,4],[-102,3],[-19,1],[-60,3],[-134,6],[-21,1],[-129,1],[-60,1],[-57,1],[-120,6],[-155,8],[-182,0],[-191,5],[-260,6],[-22,1],[-79,1],[-542,11],[-54,2],[-155,3],[-77,2],[-103,2],[-38,0],[-134,1],[-172,1],[-102,1],[-174,2],[-41,0],[-286,-9],[-338,-4],[-93,-2],[-26,-1],[-303,-7],[-344,-8],[-24,-1],[-109,-2],[-344,-11],[-28,-1],[-4,0],[-36,-1],[-23,-1],[-186,-6],[-63,-2],[-204,-7],[-121,-4],[-4,-1],[-45,-1],[-17,-1],[-8,0],[-18,0],[-27,0],[-92,0],[-179,-3],[-155,-4],[-6,0],[-47,-1],[-27,0],[-86,-1],[-69,-2],[-60,-1],[-128,-2],[-22,0],[-58,-2],[-118,-2],[-161,-3],[-62,-4],[-260,-12],[-107,0],[-95,-3],[-23,-1],[-93,-2]],[[17282,68167],[-137,-2],[-627,-7],[-239,-5],[-65,-1],[-4,0],[-312,-5],[-345,-5]],[[15553,68142],[1,43],[0,189],[0,59],[0,1],[0,35],[0,145],[-1,330],[0,95],[0,21],[0,62],[0,93],[-1,56],[2,202],[-2,480],[2,169],[-1,100],[2,105],[4,362],[-4,216],[-2,104],[1,36],[1,286],[2,288],[0,52],[-2,307],[0,197],[0,226],[0,79],[0,178],[2,537],[1,329],[0,71],[1,291],[0,67],[0,68],[0,453],[1,179],[0,131],[0,74],[-1,70],[3,265],[1,50],[1,95],[1,103],[1,64],[1,595],[0,137]],[[15602,81509],[71,-5],[726,7],[113,1],[59,1],[12,0],[1710,17],[65,1],[1814,18],[589,6],[2577,26],[242,3],[1434,14],[61,1],[1265,-52],[272,-11],[272,-11],[152,-6],[120,-5],[246,-10],[55,0]],[[15553,68142],[0,-243],[-204,1],[-18,1],[-169,1],[-6,0],[-29,0],[-86,2],[-4,0],[-19,0],[-96,1],[-42,1],[-38,-1],[-19,0],[-10,0],[-33,0],[-13,0],[-12,0],[-38,1],[-90,0],[-60,6],[-20,-2],[-4,-1],[-18,-2],[-47,1],[-128,1],[-83,1],[-153,2],[-241,3],[-54,1],[-163,2],[-91,1],[-146,2],[-23,0],[-31,1],[-58,0],[-1,0],[-52,1],[-24,0],[-25,1],[-123,-3],[-130,2],[-29,0],[-38,1],[0,110],[-84,4],[-202,9],[-86,4],[-33,0],[-73,0],[-42,2],[-152,7],[-2,0],[-362,18],[-4,-186],[-8,-530],[-66,1],[-137,2],[0,-81],[-138,-6],[-1,-70],[-3,-249],[0,-25],[0,-82],[-2,-11],[-5,-10],[0,-6],[-153,-80],[-5,-3],[-38,-17],[-36,-21],[-59,-34],[-5,-2],[-58,-29],[-42,-24],[51,-248],[-85,0],[-306,-4],[0,-14],[-1,-106],[-2,-250],[1,-54],[-44,-2],[-97,-5],[-131,-4],[-4,-163],[-1,-64],[-2,-66],[-2,-134],[-93,3],[-73,0],[-108,-14],[12,-157],[22,-280],[-186,-2],[-41,0],[-118,-1],[17,-437],[-117,2],[-167,2],[1,-53],[2,-51],[10,-320],[-27,-6],[-77,-18],[-57,0],[-27,1],[-213,3],[1,-60],[1,-193],[-2,-205],[-45,8],[-42,10],[-144,6],[-59,5],[3,-33],[0,-356],[-22,-1]],[[8917,63354],[-28,-2],[-22,-2],[-39,-3],[-57,-5],[-155,-11],[-2,0],[-22,-2],[-47,-5],[-160,-10],[-5,0],[-27,-2],[-18,-1],[-65,-3],[-60,-2],[-26,-3],[-32,-1],[-63,-6],[-115,-8],[-20,-2],[-110,-6],[-8,0],[-147,-8],[-296,-15],[-111,-12],[-38,-1],[-68,-3],[-28,-2],[-155,-8],[-46,-2],[-187,-11],[2,-210],[-17,3],[-61,2],[-161,7],[-94,2],[-91,5],[-23,0],[-101,4],[-33,6],[-56,8],[-73,3],[-4,0],[-72,4],[-136,5],[-103,3],[-102,2],[-4,0],[-26,2],[-20,1],[-111,5],[-104,3],[-103,3],[-28,1],[-72,3],[-11,0],[-93,3],[-1,0],[-182,6],[-50,4],[-21,1],[-180,11],[-90,6],[-12,0],[-9,1],[-110,0],[-42,1],[-232,7],[-164,4],[-23,-2],[-49,5],[-163,5],[-91,2],[-58,2],[-263,9],[-146,5],[-85,2],[-3,0],[-79,2],[-75,2],[-123,9],[-54,4],[-21,2],[-68,6],[-5,0],[-32,3],[-39,3],[-4,1],[-104,11],[-77,10],[-18,1],[-65,4],[-26,1],[-78,4],[-67,4],[-39,-3],[-33,-2],[-222,13],[-97,5],[-33,0],[-38,2],[-89,4],[-40,2],[-44,3],[-1,81],[-29,-46],[-6,27],[30,40],[-11,81],[-93,4],[-3,0],[-67,2],[-59,3],[1,-51],[0,-65],[0,-3],[-1,-62],[-39,0],[-6,0],[-26,0],[-24,0],[-60,5],[-33,2],[-71,3],[-88,7],[-82,5],[-23,0],[-169,10],[-100,8],[-71,6],[-37,1],[-110,7],[-65,0],[-33,1],[-102,5],[-138,2]],[[3,63316],[3,375],[0,1182],[0,281],[0,490],[0,1361],[0,535],[0,411],[0,1245],[0,296],[-3,1882],[-2,1825],[-1,1060],[6,1952]],[[82303,68799],[5,-46],[1,-13],[2,-14],[2,-18],[9,-35],[15,-18],[14,-29],[-3,-39],[-18,-29],[-21,-21],[-32,-20],[-35,12],[-23,9],[-44,19],[-23,15],[-1,-6],[-126,-384],[-120,-336],[-93,-304],[-123,-326],[-12,-30],[-9,-33],[-9,-22],[-36,-95],[-44,-116],[-51,-144],[-64,-172],[-1,-2],[-78,-227],[51,-136],[38,-88],[-60,-172],[-30,-86],[-8,-22],[-15,-41],[-11,-28],[-9,-26],[-2,-5],[-34,-86],[-35,-99],[-47,-133],[-15,-44],[-47,-131],[-30,-84],[-33,-96],[-190,-545],[21,-26],[124,-146],[97,-119],[77,-95],[133,-161],[69,-87],[-136,-364],[-41,-109],[-76,-206],[0,-1],[-37,-95],[-2,-4],[-16,-42],[-91,-239],[-99,-265],[-106,-278],[-41,-106],[-43,-115],[-84,-227],[-80,-208],[-10,-31],[-51,-133],[-112,-272],[-11,-29],[-13,-34],[-18,-42],[-6,-13]],[[80356,61106],[-18,-48],[-12,-23],[-42,-26],[-17,-8],[-189,-88],[-190,-92],[-111,-69],[-39,-18],[-54,-27],[-71,-30],[-24,-11],[-155,-66],[-225,-112],[-350,-172],[-72,-35],[-55,-21],[-23,-12],[-25,-15],[-226,-102],[-17,-10],[-123,-60],[-3,-2],[-22,-11],[-94,-45],[-45,-22],[-70,-37],[-18,-7],[-16,-8],[-230,-116],[-12,-6],[-58,-30],[-340,-171],[-53,-27],[-169,-15],[-34,-3],[-50,-3],[-17,-2],[-23,0],[-44,-5],[-222,-22],[-72,-4],[-103,-8],[-6,-2],[-21,-7],[-168,-5],[-172,-16],[-1,0],[-78,-5],[-157,-2],[-215,-12],[-39,-9],[-39,-1],[-344,-19],[-289,-13],[-82,-4],[-11,0],[-169,-7],[-47,-2],[-412,-16],[-82,-2],[-117,-5],[-190,-8],[-240,-13],[-56,-3],[-449,-18],[-34,-2],[-29,-1],[-222,-12],[-34,-1],[-212,-12],[-38,-2]],[[72670,59318],[8,46],[69,354],[12,62],[4,17],[8,40],[31,162],[7,36],[151,778],[0,1],[27,135],[98,499],[14,74],[83,424],[12,65],[14,72],[7,36],[24,130],[92,467],[25,135],[9,49],[34,182],[11,57],[0,1],[108,572],[58,290],[8,39],[60,343],[20,103],[10,54],[9,49],[3,14],[5,27],[24,232],[19,194],[6,69],[8,89]],[[85997,54137],[-28,-11],[-22,12],[-5,-37],[-6,-56],[3,-45],[-5,-38],[-15,-27],[-5,-48],[-16,-22],[-10,-34],[-35,-52],[-14,-29],[-17,-47],[-12,-31],[-17,11],[-58,69],[-26,11],[-25,22],[-18,8],[-17,20],[-10,68],[-22,5],[-12,33],[-15,14],[-24,-20],[-16,-18],[-20,-2],[-18,-1],[-17,-9],[-29,2],[-18,-9],[-26,2],[-20,-18],[-19,-18],[-18,-8],[-20,-18],[-3,-43],[-13,-27],[-14,-26],[-15,-40],[-13,-30],[-20,-33],[-14,-29],[-13,-29],[-14,-37],[-5,-43],[-15,-38],[-23,-30],[-10,-33],[-9,-30],[-9,-33],[2,-39],[-11,-32],[-16,-11],[-29,-10],[-18,-8],[-6,-44],[-18,-5],[-18,9],[-19,-16],[-9,-41],[-12,-29],[-18,-45],[-11,-29],[-18,-32],[-5,-40],[-19,7],[-22,-21],[-2,-53],[-14,-45],[8,-38],[17,-44],[-21,-28],[4,-47],[-13,-26],[-23,-10],[-17,-23],[-17,-42],[-22,-24],[-15,-44],[1,-45],[-1,-49],[3,-37],[0,-71],[-1,-38],[-7,-37],[-5,-50],[-26,-18],[-26,-4],[-22,-3],[-20,-5],[-18,-18],[-14,-25],[-20,-37],[-16,-33],[-24,-35],[-27,-19],[-24,-5],[-22,-3],[-20,-8],[-28,-12],[-30,7],[-15,19],[-27,-3],[10,-31],[6,-36],[-3,-37],[-1,-37],[16,-25],[10,-50],[-5,-44],[-7,-61],[-24,-6],[-6,-6],[-16,-15],[-12,-31]],[[84372,51597],[-28,4],[-11,31],[-16,24],[-18,11],[-21,6],[-20,9],[-17,2],[-21,-12],[-18,13],[-19,8],[-13,30],[-11,40],[-19,45],[-7,37],[15,24],[-10,38],[1,46],[-18,26],[-19,-2],[-19,-19],[-13,-26],[-21,-6],[-22,-1],[-23,-1],[-16,-27],[-19,-15],[-18,5],[-21,-9],[-18,6],[-21,-1],[-21,-8],[-23,-4],[-14,27],[-18,8],[-18,4],[-5,36],[-18,2],[-18,8],[-1,40],[-12,38],[-13,40],[-12,29],[-19,12],[-23,-4],[-23,0],[-16,35],[2,40],[-12,36],[5,41],[5,44],[0,38],[-14,31],[-16,39],[-7,37],[-14,63],[-17,12],[-20,4],[-18,744],[-4,177],[-13,407],[-11,375],[-11,486],[-1,41],[-7,273],[0,40],[-156,84],[-72,35],[-205,101],[-16,740],[-3,119],[-38,-3],[-136,-9],[-14,571],[-61,0],[0,165],[0,85],[-1,36],[-4,197],[63,0],[72,0],[0,266],[0,142],[0,32],[0,74],[0,259],[-330,106],[-28,8],[-22,7],[-5,2],[-9,3],[-68,21],[-17,6],[-99,31],[-44,14],[-21,6],[-29,10],[-44,14],[-37,12],[-2,1],[-43,13],[-37,11],[-26,11],[-21,7],[-8,2],[-26,8],[-14,4],[-6,3],[-23,8],[-15,25],[-36,57],[-71,93],[-15,25],[-30,40],[-32,43],[-10,14],[-30,40],[-23,32],[-40,53],[-20,33],[-129,177],[-63,52],[-268,229],[-112,96],[-25,24],[-5,47],[-8,36],[-18,47],[-13,31],[-31,39],[-21,22],[-18,16],[-18,12],[-22,17],[-23,13],[-19,11],[-19,8],[-21,3],[-18,8],[-27,5],[-22,6],[-27,7],[-24,10],[-22,9],[-10,7],[-14,11],[-19,10],[-20,21],[-20,23],[-22,22],[-15,24],[-18,25],[-20,21],[-20,28],[-20,29],[-15,29],[-15,35],[-2,6],[-6,25],[-2,10],[-3,10],[-7,26],[-7,34],[-6,35],[-6,41],[0,38],[1,41],[1,56],[10,143],[3,54],[4,47],[4,51],[0,39],[2,40],[1,74],[-6,90],[-7,65],[-5,43],[-6,40],[-7,55],[-11,52],[-20,50]],[[36029,67366],[2,-449],[3,-333],[3,-580],[1,-242],[1,-79],[0,-2],[1,-396],[-32,-5],[1,-552],[0,-25],[1,-444],[0,-118],[0,-417],[-3,-183],[-4,-154],[-2,-96],[-1,-42],[0,-26],[-1,-49],[-5,-195],[-1,-50],[-3,-156],[21,-4],[8,-180],[0,-22],[-1,-229],[-5,-535],[4,-222],[-7,-799],[3,-474],[329,1],[12,0],[436,-4],[61,4],[117,-2],[161,-2],[167,0],[281,0],[60,-1],[375,-5],[167,-2],[127,2],[496,2],[59,-1],[0,-56],[0,-129],[-1,-67],[-4,-631],[-1,-179],[-1,-405],[2,-60],[0,-2],[0,-82],[0,-53],[0,-32],[0,-7],[0,-98],[-2,-1103],[80,-12],[165,0],[65,8],[24,3],[-1,-70],[0,-140],[0,-44],[-2,-357],[0,-16],[0,-45],[-1,-241],[-5,-773],[0,-40],[-6,-499],[0,-61],[-1,-55],[0,-53],[1,-162],[0,-74],[-9,-257],[-7,-179],[-9,-264]],[[39148,54065],[-156,19],[-58,8],[-280,32],[-14,2],[-5,0],[-280,29],[-197,20],[-25,3],[-448,50],[-32,3],[-222,27],[-72,8],[-187,22],[-22,2],[-134,16],[-140,15],[-779,89],[-44,5],[-1,0],[-32,4],[-39,4],[-121,14],[-144,17],[-73,8],[-74,8],[-226,26],[-195,22],[-18,2],[-4,0],[-86,10],[-143,16],[-127,15],[-124,14],[-299,33],[-36,4],[-61,7],[-86,9],[-3,0],[-68,8],[-158,21],[-131,18],[-71,10],[-72,9],[-74,10],[-118,17],[-86,13],[-45,6],[-28,4],[-18,4],[-70,7],[-20,2],[-22,3],[-112,17],[-239,32],[-101,12],[-226,30],[-208,21],[-49,7],[-80,13],[-2,0],[-20,3],[-17,2],[1,-132],[-2,-102],[-1,-63],[-6,-272],[-5,-236],[-9,-480],[-23,-26],[-373,-195],[-314,-164],[-21,-11],[-137,-72],[-19,-10],[-182,-94]],[[31035,53040],[1,183],[1,350],[0,43],[0,79],[1,108],[1,253],[-23,1],[-311,9],[-32,1],[-92,2],[-26,2],[-3,75],[-2,128],[-1,66],[-1,37],[-1,69],[-2,86],[-2,109],[0,42],[-1,82],[-1,17],[0,42],[-1,73],[1,1],[9,52],[24,117],[32,158],[-87,84],[-92,86],[-21,20],[-19,18],[-29,28],[-201,184],[-45,41],[-154,142],[-111,101],[-197,181],[-238,219],[-121,111],[-46,42],[-173,162],[-11,10],[-17,15],[-61,57],[-10,10],[-319,298],[-90,84],[-174,162],[-40,37],[-136,128],[-93,85],[-88,81],[-152,140],[-59,54],[-104,96],[-85,78],[-43,39],[-61,57],[-95,87],[-274,252],[-48,44],[-164,151],[-184,167],[-2,188],[-1,97],[0,32],[-37,-39],[-49,-16],[-30,52],[-13,23],[-7,12],[-22,79],[-23,46],[-11,13],[-30,8],[-15,-15],[-48,-89],[-30,-70],[-4,-33],[-34,-73],[-36,-43],[-24,-13],[-28,3],[-28,32],[-76,21],[-26,-7],[-90,-126],[-16,-83],[-9,-22],[-5,-11],[-24,-44],[-14,-20],[-8,-9],[-6,-5],[-8,-4],[-25,-4],[-64,5],[-17,-4],[-41,-20],[-29,-31],[-18,-44],[-21,-163],[-10,3],[-19,7],[-1,1],[-45,13],[-15,31],[-2,9],[-1,3],[-2,6],[-1,5],[-2,5],[-2,4],[-3,5],[-2,4],[-78,124],[-2,4],[-3,3],[-3,3],[-1,2],[-17,15],[-1,1],[-3,3],[-3,1],[-2,2],[-63,27],[-1,0],[-3,1],[-3,1],[-3,0],[-1,0],[-62,-5],[-1,-1],[-1,0],[-25,-5],[-2,0],[-3,-1],[-3,-2],[-1,0],[-22,-14],[-2,-1],[-2,-3],[-1,0],[-29,-26],[-3,-2],[-2,-3],[-2,-2],[-67,-86],[-2,-2],[-2,-4],[-2,-4],[-13,-24],[-1,0],[-2,-4],[-2,-5],[-2,-5],[-1,-4],[-23,-71],[-4,-10],[-79,-28],[-70,-5],[-55,-18],[-49,-16],[-40,11],[-52,39],[-54,74],[-73,30],[-33,-20],[-47,-51],[-24,-46],[-30,-94],[-66,-162],[-45,-90],[-28,-19],[-17,-2],[-25,12]],[[24434,58013],[1,49],[1,242],[0,164],[0,156],[0,146],[0,117],[0,43],[0,47],[2,104],[-5,49],[8,108],[1,86],[0,5],[6,548],[3,327],[6,516],[3,244],[79,-1],[376,-2],[33,0],[17,649],[2,64],[6,221],[3,140],[71,-3],[321,-10],[500,-17],[202,-8],[95,-4],[1,0],[233,-8],[67,-2],[0,-128],[0,-201],[0,-201],[103,1],[127,2],[1,0],[17,0],[55,1],[0,565],[0,246],[-1,63],[0,301],[0,644],[-1,275],[-1,161],[6,231],[0,73],[0,256],[3,162],[1,42],[1,54],[-1,105],[1,189],[5,265],[4,269],[1,58],[0,19],[6,742],[3,257],[0,80],[0,31],[1,70],[4,278],[2,92],[0,15],[2,114],[4,238],[4,381],[0,12],[5,245],[1,56],[1,39],[-1,57]],[[24434,58013],[-8,-8],[-39,44],[-33,14],[-6,-1],[-15,2],[-16,0],[-23,-8],[-15,-15],[-8,-18],[-32,-137],[-5,-42],[6,-36],[32,-77],[12,-57],[-5,-67],[-16,-88],[-9,-22],[-15,-15],[-50,-30],[-65,-16],[-32,18],[-107,145],[-42,38],[-23,15],[-50,35],[-80,156],[-64,137],[-25,7],[-37,11],[-30,-65],[-51,-113],[-20,-68],[-33,-68],[-101,-109],[-24,-13],[-45,13],[-32,28],[-35,44],[-26,56],[-7,46],[8,90],[6,28],[10,31],[12,26],[16,78],[-11,47],[-10,22],[-19,20],[-29,13],[-13,5],[-11,2],[-9,-2],[-9,-3],[-6,-5],[-11,-15],[-6,-13],[-4,-18],[-3,-21],[-2,-36],[6,-65],[15,-82],[22,-109],[3,-54],[-3,-33],[-62,-149],[-47,-60],[-20,-9],[-18,15],[-19,49],[-16,131],[0,34],[21,150],[-3,30],[-15,34],[-38,49],[-48,23],[-52,-15],[-26,-36],[-6,-47],[2,-40],[9,-114],[12,-62],[-9,-71],[-46,-99],[-54,-58],[-13,-6],[-12,-1],[-22,3],[-15,6],[-23,21],[-21,35],[-10,7],[-13,5],[-15,2],[-14,-1],[-12,2],[-8,20],[-34,86],[-20,47],[-8,40],[-28,9],[-26,10]],[[22483,57695],[1,41],[1,40],[1,75],[5,703],[1,226],[2,180],[0,63],[1,62],[0,61],[1,84],[0,57],[1,179],[1,178],[1,63],[0,157],[1,161],[1,68],[-4,131],[-4,131],[1,39],[1,39],[5,322],[2,30],[1,48],[3,77],[0,49],[0,1],[3,269],[-139,17],[-37,-3],[-60,-12],[-28,4],[-44,7],[-61,3],[-81,4],[-80,3],[-193,5],[-382,8],[-154,3],[-78,1],[-173,4],[-61,1],[-55,1],[-41,1],[-89,2],[-24,0],[-39,1],[-26,1],[-91,1],[-25,1],[-173,3],[-85,3],[-141,3],[-121,3],[-26,-2],[-29,0],[-17,0],[-18,0],[-10,38],[-3,90],[-58,5],[-87,2],[-47,1],[-37,1],[-56,-4],[-27,-1],[-35,-2],[-7,0],[-13,1],[-358,7],[-1,-44],[0,-56],[0,-72],[-1,-186],[-2,-298],[-8,-184],[2,-321],[3,-73],[0,-547],[-58,-1],[-91,-2],[-27,3],[-485,-1],[-21,0],[-34,-1],[-32,0],[-197,0],[-220,7],[-58,2],[-20,-10],[-80,1]],[[17870,59647],[-3,140],[-1,573],[0,170],[-1,260],[0,1],[-1,776],[-371,9],[-95,1],[-57,0],[-162,1],[-63,1],[-3,323],[-2,348],[-1,86],[-1,127],[9,1],[1,1],[160,0],[3,274],[0,26],[1,71],[0,5],[1,56],[0,39],[3,206],[1,88],[5,322],[0,42],[4,130],[-1,220],[-1,512],[-1,214],[-2,668],[0,9],[-2,377],[-3,931],[0,99],[0,3],[-1,361],[-1,384],[-1,55],[0,32],[-1,388],[-1,190]],[[17870,59647],[0,-49],[0,-40],[0,-205],[-1,-106],[-1,-222],[0,-38],[1,-41],[0,-18],[0,-72],[-1,-65],[0,-68],[0,-93],[0,-74],[0,-44],[-1,-73],[0,-96],[-1,-53],[-1,-86],[0,-90],[0,-43],[0,-71],[-2,-52],[-1,-66],[-1,-52],[-24,-1],[-179,0],[-85,1],[-44,1],[-20,0],[-18,0],[-116,1],[-9,0],[-173,1],[-27,0],[-27,0],[-61,1],[-22,0],[-28,0],[-104,1],[-23,0],[-80,0],[-30,1],[-17,-49],[0,-92],[1,-59],[2,-50],[4,-84],[2,-92],[2,-55],[1,-51],[-96,1],[-92,1],[-21,2],[-28,-4],[-68,-14],[-28,-2],[-35,1],[-195,13],[-106,12],[-1,1],[-62,1],[-247,1],[-104,7],[-2,-73],[0,-22],[-4,-266],[-3,-259],[-2,-188],[0,-71],[1,-57],[0,-5],[-1,-127],[-1,-181],[0,-57],[1,-37],[2,-127],[1,-71],[0,-41],[0,-11],[-173,3],[-126,1],[-51,0],[-23,0],[-32,0],[2,-44],[7,-277],[0,-46],[-89,0],[-1,-130],[0,-74],[1,-267],[-101,-2],[-146,0],[-21,0],[-35,-10],[3,-130],[4,-142],[1,-36],[1,-66],[0,-57],[0,-36],[0,-44],[0,-52],[0,-38],[0,-9],[0,-75],[0,-79],[0,-17],[0,-19],[-1,-39],[2,-36],[0,-42],[0,-37],[0,-82],[0,-36],[2,-60],[0,-37],[1,-51],[1,-18],[2,-24],[-2,-23],[-89,-175],[-60,-117],[-22,-47],[-14,-27],[-2,-4],[-18,-36],[-18,-37],[-54,-113],[-49,-100],[14,-25],[38,-57],[-24,-37],[-61,-104],[27,-43],[5,-7],[60,-91],[-39,-92],[-17,-11],[-11,-19],[-9,-16],[-11,-80],[-47,-2],[-2,46],[0,1],[-22,20],[-26,6],[-10,-30],[-18,-5],[-18,-11],[-17,-14],[-18,17],[-19,-7],[-15,19],[-6,4],[-10,7],[-19,-17],[-16,-13],[-15,-23],[-12,-31],[-19,-3],[-19,-11],[-18,-4],[-7,25],[-3,8],[-18,12],[-18,11],[-11,30],[-22,11],[-16,13],[-20,-1],[-17,-24],[-23,-40],[-12,-32],[-2,-37],[11,-30],[0,-1],[3,-38],[0,-36],[-5,-28],[22,1],[30,-75],[31,-78]],[[14144,52002],[-34,2],[-6,0],[-20,-1],[-2,0],[-113,-4],[-94,-2],[-139,-3],[-187,1],[-140,0],[-49,0],[-3,0],[-85,1],[-67,1],[-79,-1],[-71,0],[-36,1],[-40,0],[-71,0],[-24,0],[-69,2],[-33,1],[-109,3],[-94,2],[-21,2],[-52,0],[-57,0],[-101,2],[-61,2],[-35,2],[-145,-1],[-74,0],[-31,-1],[-24,-1],[-22,0],[-32,1],[-30,-1],[-23,1],[-49,-1],[-34,-1],[-44,-1],[-87,-2],[-65,-1],[-58,-1],[-95,-2],[-182,-2],[-64,-2],[-1,0],[-37,0],[-94,-4],[-22,-1],[-55,-1],[-74,-3],[-95,-2],[-81,-4],[-84,-2],[-83,-3],[-32,-2],[-60,-1],[-111,-2],[-107,0],[-37,-4],[-77,-1],[-108,-2],[-63,0],[-81,0],[-41,0],[-47,-1],[-107,0],[-60,-6],[-20,0],[-35,0],[-25,1],[-94,1],[-53,1],[-91,3],[-78,-1],[-5,1],[-28,0],[-72,1],[-19,0],[-59,2],[-41,0],[-99,-2]],[[8917,51966],[0,311],[0,69],[0,245],[0,275],[0,126],[0,74],[0,2],[0,239],[0,141],[0,133],[0,67],[0,288],[0,163],[0,227],[0,297],[0,142],[0,429],[0,338],[0,95],[0,258],[0,393],[0,130],[0,61],[0,440],[0,97],[0,4],[0,263],[0,468],[0,35],[0,1],[0,110],[0,178],[0,73],[0,209],[0,157],[0,241],[0,229],[0,67],[0,103],[0,94],[0,169],[0,108],[0,165],[0,41],[0,169],[0,362],[0,324],[0,363],[0,115],[0,235],[0,378],[0,138],[0,273],[0,50],[0,157],[0,31],[0,63],[0,45],[0,8],[0,426],[0,179],[0,1],[0,316]],[[43403,62808],[0,-165],[1,-150],[3,-303],[0,-180],[0,-133],[1,-128],[1,-129],[0,-131],[0,-45],[1,-163],[1,-137],[1,-254],[0,-106],[0,-272],[0,-243],[1,-204],[0,-69],[2,-276],[-1,-286],[0,-43],[0,-52],[0,-55],[0,-51],[-1,-121],[-2,-87],[-4,-67],[-13,-43],[-15,-48],[-68,-213],[-11,-33],[-18,-54],[-1,-4],[-39,-118],[-25,-77],[-2,-7],[-16,-48],[-51,-160],[-25,-75],[-47,-133],[-19,-60],[-10,-31],[-57,-192],[-68,-201],[-128,-378],[-38,-113],[-114,-344],[-86,-252],[-31,-91],[-23,-68],[-2,-7],[-8,-24],[-22,-62],[-9,-26],[-83,-232],[-56,-180],[-27,-81],[-148,-448],[-104,-291],[-16,-45],[-15,-54],[-64,-197],[-36,-107],[-95,-283],[-84,-249],[-117,-350]],[[41616,53579],[-305,61],[-47,9],[-46,10],[-140,27],[-250,49],[-191,39],[-508,101],[-140,28],[-23,4],[-195,38],[-224,43],[-203,39],[-160,31],[-36,7]],[[94815,49118],[-16,33],[-20,25],[-31,-16],[-17,-45],[-1,-41],[-14,-50],[-28,-9],[-20,3],[-15,33],[-17,30],[-22,0],[-2,0],[-1,0],[-40,-84],[-16,-23],[-19,-11],[-26,-5],[-14,6],[-11,5],[-18,-25],[-2,-23],[-2,-25],[4,-42],[-14,-44],[-20,-7],[-18,10],[-17,21],[-40,15],[-3,1],[-18,0],[-20,-8],[-31,-24],[-24,-2],[-16,-44],[-3,-8],[-13,-64],[-24,-26],[-26,16],[-1,47],[-5,38],[-2,12],[-20,27],[-7,9],[-12,16],[-13,42],[-7,45],[-20,20],[-3,4],[-37,10],[-20,18],[-22,12],[-8,-4],[-1,3],[-36,107],[-25,74],[-23,69],[-29,82],[-27,80],[-49,145],[-19,53],[-21,61],[-22,62],[-14,40],[-24,69],[-39,113],[-14,39],[-14,41],[-13,39],[-20,56],[-12,34],[-37,108],[-12,31],[-197,574],[-97,19],[-6,1],[-252,59],[-268,57],[-1,0],[-196,39],[-136,28],[-59,13],[-62,15],[-50,11],[-18,5],[-53,12],[-30,9],[-58,24],[-31,11],[-37,14],[-21,7],[21,155],[89,653],[0,1],[46,337],[140,1018],[42,305],[49,358],[104,749],[13,95],[-504,-62],[-10,-2],[-179,-19],[-72,-12],[-30,0],[-213,-33],[-59,-8],[-74,-10],[-591,-80],[-60,-8],[-30,-4],[-9,0],[-262,-15],[-268,-32],[-21,-2],[-45,-5],[-23,-3],[-32,-3],[-36,-3],[-32,-6],[-24,-6],[-21,-8],[-20,-3],[-35,4],[-34,-2],[-32,-4],[-47,-3],[-23,-5],[-24,6],[-50,-14],[-27,-2],[-184,-12],[-103,-7],[-196,-38],[-82,-10],[-15,-2],[-18,-3],[-24,-3],[-17,-2],[-436,-51]],[[93477,67359],[9,-17],[49,-179],[0,-1],[1,-5],[39,-120],[2,-5],[25,-69],[2,-4],[2,-5],[2,-4],[2,-4],[3,-4],[2,-3],[43,-52],[0,-1],[3,-3],[6,-6],[3,-3],[2,-2],[18,-13],[46,-38],[24,-36],[21,-38],[0,-1],[2,-4],[1,-1],[19,-28],[1,-3],[3,-3],[1,-1],[16,-18],[21,-29],[5,-18],[15,-93],[15,-100],[1,-3],[0,-4],[18,-91],[0,-2],[1,-5],[2,-6],[0,-2],[13,-44],[1,-4],[2,-5],[1,-3],[28,-69],[1,-1],[0,-3],[27,-59],[1,-2],[2,-5],[3,-4],[2,-3],[3,-4],[2,-3],[1,0],[95,-95],[10,-17],[12,-39],[43,41],[6,6],[6,6],[20,15],[17,-12],[16,-35],[20,-46],[48,-96],[58,-159],[68,-205],[9,-117],[-18,-56],[-5,-35],[-5,-12],[-8,-20],[-4,-5],[-29,-49],[-47,-43],[-43,-148],[4,-21],[10,-23],[6,-9],[49,-13],[2,-1],[2,-1],[80,-42],[1,0],[3,-2],[3,-2],[0,-1],[26,-22],[23,-20],[2,-3],[2,-2],[23,-26],[0,-1],[3,-3],[2,-4],[3,-4],[1,-2],[20,-39],[58,-113],[1,-2],[2,-5],[2,-5],[2,-5],[1,-5],[2,-6],[0,-1],[3,-13],[57,-159],[5,-29],[3,-15],[2,-28],[-13,-88],[-13,-45],[-17,-60],[0,-4],[0,-1],[0,-7],[1,-6],[-1,-6],[0,-2],[-1,-28],[10,-82],[3,-7],[2,-3],[6,-5],[13,-1],[18,2],[116,29],[3,1],[3,0],[3,0],[3,-1],[46,-13],[2,-1],[3,-2],[3,-2],[3,-2],[3,-2],[2,-3],[5,-6],[15,-18],[56,-68],[13,-134],[1,-5],[1,-6],[7,-44],[-2,-83],[-7,-71],[-5,-38],[-20,-102],[-1,-6],[0,-3],[-7,-47],[0,-3],[-1,-6],[0,-3],[-12,-137],[0,-4],[0,-6],[0,-3],[29,-171],[50,-99],[116,-31],[11,-3],[92,-44],[11,-5],[84,-27],[31,5],[44,8],[60,38],[132,146],[31,27],[1,1],[13,13],[22,10],[36,1],[107,-19],[53,-31],[48,-54],[43,-70],[44,-43],[31,-15],[5,-2],[64,10],[88,-26],[9,-9],[9,-9],[3,-3],[5,-9],[33,-59],[4,-36],[27,-63],[14,-152],[-1,-96],[24,-122],[57,-50],[128,-38],[77,-61],[24,-78],[18,-83],[-12,-66],[-70,-91],[-29,-72],[-20,-149],[20,-83],[105,-41],[198,63],[61,47],[31,8],[42,31],[85,58],[75,16],[63,-2],[32,-33],[74,-75],[64,-86],[140,-213],[52,-66],[71,-25],[59,8],[39,39],[26,91],[23,89],[39,67],[1,9],[29,34],[21,26],[59,66],[55,24],[66,-13],[57,-64],[55,-119],[10,-124],[0,-69],[73,-268],[46,-78],[82,-33],[89,36],[90,89],[74,44],[62,-11],[72,-67],[63,-30],[45,0],[32,3],[28,27],[21,21],[7,7],[58,105],[33,32],[20,9],[43,19],[34,39],[9,7],[3,1],[7,-1],[22,-13],[23,-19],[23,-27],[14,-23],[15,-29],[6,-17],[7,-26],[6,-54],[-1,-62],[-11,-84],[-22,-126],[-1,-3],[-1,-6],[0,-6],[-1,-1],[-3,-41],[0,-5],[-1,-6],[0,-3],[0,-33],[-1,-38],[-32,-118],[-18,-49],[13,-106],[15,-120],[5,-37],[23,-65],[4,-12],[1,-3],[2,-4],[2,-5],[2,-4],[2,-4],[2,-2],[11,-17],[1,-1],[2,-4],[3,-3],[3,-2],[3,-3],[1,-1],[2,-1],[141,-90],[8,-5],[11,-7],[107,-65],[25,-15],[21,-22],[10,-11],[55,-107],[50,-240],[38,-127],[80,-116],[106,-128],[13,-16],[39,-47],[60,-105],[23,-113],[-4,-83],[-43,-66],[-60,-74],[-47,-58],[-6,-8],[-31,-43],[-66,-18],[-24,-14],[-3,-2],[-10,-7],[-33,-24],[-7,-8],[-54,-55],[-82,-66],[-3,-2],[-66,-60],[-103,-41],[-60,-10],[-104,19],[-21,-1],[-71,-2],[-43,-21],[-14,-14],[-72,-84],[-93,-32],[-25,-9],[-18,-17],[-68,-120],[-8,-62],[-8,-47],[-9,-61],[-10,-41],[-10,-37],[-15,-37],[-47,-77],[-19,-28],[-41,-60],[-34,-34],[-13,-5],[-34,-5],[-42,6],[-34,-5],[-25,-4],[-30,-6],[-30,-5],[-69,-23],[-45,-25],[-25,-29],[-16,-21],[-23,-122],[0,-5],[12,-21],[5,-13],[15,-36],[11,-28],[10,-29],[6,-42],[1,-14],[-5,-37],[-2,-18],[-41,-63],[-2,-3],[-5,-5],[-19,-15],[-39,-34],[-19,-24],[-7,-7],[-6,-6],[-12,-12],[-35,-38],[-23,-24],[-16,-20],[-24,-29],[-24,-38],[-21,-43],[0,-2],[-1,-1],[-14,-32],[-17,-36],[-26,-43],[-49,-56],[-60,-41],[-22,-20],[-24,-22],[-41,-61],[-80,-133],[-25,-47],[-4,-33],[-4,-32],[-15,-54],[-22,-43],[-76,-150],[-16,-39],[-10,-44],[-6,-30],[3,-95],[-1,-3],[-1,-6],[-1,-6],[-1,-4],[-51,-191],[0,-1],[-2,-6],[-1,-5],[-69,-166],[8,-38],[10,-39],[8,-54],[-4,-41],[-11,-71],[-10,-34],[-32,-83],[-4,-7],[-32,-17],[-35,-11],[-25,-4],[-35,-17],[-25,-62],[-25,-84],[-48,-159],[-3,-42],[-85,-268],[0,-2],[-7,-70],[-6,-93],[5,-48],[24,-53],[32,-43],[23,-24],[18,-18],[20,-44],[1,-2],[6,-14],[3,-18],[6,-49],[-1,-15],[-14,-60],[-58,-153],[-39,-99],[-21,-60],[-10,-33],[-14,-43],[-11,-34],[-30,-85],[-12,-41],[-16,-56],[-9,-31],[-14,-42],[-10,-40],[-57,-231],[-6,-43],[-16,-109],[-38,-162],[-18,-63],[-8,-17],[-83,-176],[-19,-35],[-31,-48],[-18,-28],[-79,-118],[-24,-32],[-17,-26],[-19,-39],[-14,-42],[-8,-32],[-10,-82],[-7,-30],[-20,-81],[-19,-61],[-6,-19],[-13,-30],[-20,-40],[-17,-34],[-58,-118],[-48,-96],[-13,-26],[-44,-88],[-16,-21],[-27,-32],[-6,-8],[-12,-27],[-9,-36],[-21,-52],[-11,-40],[-25,-32],[-24,-29],[-35,-45],[-21,-29],[-31,-34],[-29,-21],[-26,-18],[-40,-25],[-34,-22],[-47,-36],[-27,-12],[-48,-65],[-21,-26],[-5,-8],[-3,-6],[0,-3],[-2,-41],[-3,-46],[0,-13],[0,-5],[-30,-45],[-29,-35],[-115,-114],[-30,-44],[-14,-22],[-17,-23],[-34,-40],[-16,-16],[-25,-18],[-26,3],[-41,0],[-44,-14],[-67,-56],[-38,-70],[-53,-101],[-32,-65],[-7,-15],[-97,-346],[-38,-91],[-2,-13]],[[63563,66937],[32,-191],[14,-83],[2,-11],[21,-124],[88,-509],[11,-77],[14,-105],[5,-38],[26,-148],[56,-344],[0,-2],[14,-81],[7,-36],[15,-86],[32,-194],[55,-315],[46,-271],[2,-11],[23,-132],[71,-388],[16,-95],[7,-49],[15,-92],[49,-300],[16,-96],[11,-71],[65,-407],[26,-166],[10,-53],[6,-36],[18,-118],[49,-310],[63,-404],[14,-91],[8,-48],[97,-621],[73,-463],[22,-35],[6,-10],[16,-23],[21,-33],[15,-24],[14,-23],[17,-22],[22,-29],[463,-602],[158,-205],[22,-29],[23,-30],[28,-37],[21,-29],[37,-46],[18,-24],[17,-23],[48,-63],[22,-30],[117,-156],[136,-181],[45,-59],[32,-43],[34,-44],[44,-58],[36,-49],[24,-30],[40,-55],[16,-22],[24,-31],[72,-98],[41,-57],[132,-181],[126,-172],[22,-31],[82,-111],[87,-120],[66,-91],[36,-49],[156,-215],[118,-163],[44,-60],[18,-25],[4,-5],[69,-94],[92,-126],[13,-19],[2,-2],[26,-11],[18,-6],[19,-7],[39,-16],[120,-49],[20,-8],[43,-18],[116,-47],[35,-14],[10,-3],[22,-8],[49,-20],[146,-58],[64,-27],[40,-16],[-12,-93],[21,-6],[166,-58],[209,-72],[23,-10],[65,-30],[121,-33],[232,-65],[234,-93],[283,-111],[43,-17],[44,-17],[1,-1],[52,-20],[237,-93]],[[69844,55680],[-41,-71],[-23,-39],[-5,-8],[-132,-227],[-19,-31],[-10,-17],[-43,-73],[-40,-68],[-54,-93],[-148,-253],[-21,-35],[-78,-125],[-113,-183],[-15,-24],[-35,-58],[-45,-72],[-28,-47],[-43,-71],[-24,-44],[-28,-53],[-81,-152],[-14,-23],[-16,-29],[-93,-176],[-32,-60],[-6,-11],[-83,-154],[-22,-36],[-14,-24],[-209,-346],[-39,-65],[-23,-38],[-214,-357],[-16,-26],[-11,-19],[-3,-5],[-33,-54],[-20,-34],[-40,-66],[-31,-50],[-65,-108],[-46,-77],[-53,-88],[-11,-19],[-69,-114],[-72,-119],[-22,-38],[-48,-81],[-23,-39],[-22,-35],[-111,-183],[-134,-12],[-109,-10],[-58,-6],[-94,-8],[-44,-4],[-30,-3],[-30,-3],[-51,-5],[-112,-9],[-164,-14]],[[66531,51388],[-25,-2],[-54,-4],[-212,-18],[-178,-16],[-54,-4],[-129,-11],[-36,26],[-59,42],[-62,45],[-112,80],[-88,64],[-139,100],[-21,15],[-79,56],[-64,47],[-37,26],[-70,51],[-112,82],[-46,5]],[[64954,51972],[-139,18],[-152,22],[-214,28],[-129,17],[-98,21],[-31,7],[-124,6],[-73,15],[-31,-19],[-18,0],[-1,0],[-58,-28],[-60,-29],[-34,-17],[-42,-20],[-17,-8],[-21,-9],[-24,-12],[-76,-35],[-94,-38],[-77,-34],[-86,-37],[-58,-27],[-52,-18],[-42,-12],[-55,-16],[-62,-17],[-88,-25],[-96,-24],[-19,-5],[-90,-24],[-229,-111],[-1,-1],[-17,-6],[-20,-8],[-21,-12],[-36,-17],[-21,-9],[-43,-20],[-5,-2],[-45,-28],[-17,-41],[-1,-1],[-18,-31],[-31,-45],[-23,-97],[-36,-116],[-8,-35],[-10,-34],[-11,-61],[-33,-112],[-8,-34],[-8,-38]],[[62151,50793],[-99,30],[-23,7],[-121,38],[-59,18],[-1,0],[-37,12],[-69,22],[-176,56],[-66,21],[-75,24],[-96,31],[-77,25],[-99,31],[-102,33],[-21,-158],[-8,-58],[-17,-128],[-5,-36],[-19,-139],[-54,-403],[-7,-48],[-1,-5],[-44,-313],[-12,-82],[-1,-4],[-12,-90],[-7,-43],[-16,-112],[-18,-132],[-62,-429],[-1281,-77],[-93,-6],[-37,-3],[-137,-9],[-29,-21],[-116,-84],[-258,-188],[-229,-167],[-150,-120],[-131,1],[-26,0],[-363,-8]],[[57897,48279],[-115,-1],[-231,-4],[-170,342],[-97,195],[-13,25],[-37,78],[-26,50],[-33,67],[0,1],[-70,140],[-55,111],[-81,162],[-21,43],[-61,122],[-70,141],[-73,145],[-15,32],[-28,57],[-13,25],[-15,30],[-18,37],[-19,37],[-35,70],[-44,90],[-118,229],[-13,25],[-19,40],[-13,26],[-2,3],[-32,63],[-32,61],[-17,35],[-35,70],[-190,390],[-32,62],[-14,28],[-36,68],[-74,142],[-16,29],[-43,83],[-45,99],[-58,126],[-10,21],[-12,26],[-14,30],[-11,23],[-2,5],[-16,32],[-2,59],[-2,32],[-5,25],[-22,57],[-16,32],[-7,14],[-31,62],[-6,5],[-104,77],[-9,7],[-18,-5],[-9,-3],[-6,2],[-46,15],[-4,1],[-8,9],[-35,45],[-23,53],[-10,58],[-3,135],[0,1],[-6,36],[-15,81],[-1,74],[-1,22],[-1,46],[-35,31],[-14,-12],[-40,78],[-15,44],[-18,51],[-36,75],[-36,55],[-16,25],[-44,70],[-80,115],[-36,52],[-26,38],[-2,3],[-2,3],[-22,39],[-1,1],[-1,2],[-25,50],[-27,-8],[-19,5],[-17,17],[-16,13],[-31,-14],[-19,-1],[-12,35],[-19,-27],[-22,11],[-19,0],[-28,25],[-22,0],[-48,3],[-35,3],[-35,1],[-27,-5],[-18,1],[-20,-4],[-27,-13],[-33,-6],[-27,9],[48,105],[-15,42],[2,77],[-1,47],[-5,40],[-26,23],[-27,18],[-30,12],[-37,2],[-24,7],[-16,15],[-17,29],[-19,46],[-28,17],[-24,-16],[-28,-16],[-31,-12],[-33,12],[-12,30],[-16,49],[-52,59],[-17,13],[-15,18],[-18,19],[-17,19],[-16,18],[-18,26],[-14,22],[-16,25],[-20,30],[-18,26],[-15,22],[-23,34],[-18,29],[-17,28],[-19,31],[-14,23],[-16,26],[-26,31],[-19,25],[-15,21],[-16,20],[-17,23],[-19,26],[-20,30],[-19,34],[-23,47],[-17,35],[-11,33],[-16,20],[-14,35],[-7,43],[-9,40],[-11,31],[-14,29],[-12,26],[-15,29],[-36,75],[-13,23],[-27,34],[-27,36],[-15,21],[-14,24],[-20,5],[-54,24],[-45,44],[-29,35],[-3,6],[-5,36],[-43,211],[-14,46],[-10,31],[-17,20],[-8,8],[-7,6],[-20,17],[-2,2],[-34,26],[-85,29],[-31,15],[-42,31],[-39,59],[-32,76],[-36,96],[-3,6],[-10,36],[-14,55],[-8,52],[-8,68],[-7,32],[-36,116],[-14,30],[-3,5],[-2,3],[-17,26],[-46,28],[-19,18],[-59,64],[-43,50],[-51,82],[-25,41],[-7,23],[-2,9],[-4,17],[-16,112],[-8,82],[-3,34],[-4,27],[-10,78],[-9,75],[4,222],[0,30],[0,86],[0,2],[-2,24],[-1,4],[-5,33],[-20,54],[-147,226],[-18,25],[-12,17],[-48,69],[-24,30],[-46,54],[-54,62],[-54,62],[-9,8],[-22,12],[-53,14],[-91,15],[-111,28],[-14,7],[-5,2],[-4,2],[-96,57],[-47,27],[-24,19],[-54,61],[-48,52],[-33,45],[-30,40],[-13,21],[-33,77],[-9,60],[-23,314],[-2,30],[-10,134],[-1,10],[-75,261],[-25,78],[-54,173],[-156,400],[-44,111],[-13,34],[-11,18],[-1,2],[-7,7],[-8,9],[-5,1],[-27,8],[-1,1],[-19,12],[-11,16],[-34,53],[-24,55],[-37,94],[-19,58],[-1,3],[-4,17],[-8,46],[-18,118],[-12,78],[-3,37],[-27,161],[-9,39],[-4,13],[-14,58],[-25,56],[-8,14],[-10,27],[-11,28],[0,15],[-72,-3],[-115,-5],[-29,-1],[1,114],[-4,88],[-4,224],[-4,544],[-4,373]],[[72670,59318],[-16,-79],[-13,-56],[-101,-521],[-22,-115],[-21,-111],[-12,-62],[-18,-93],[-12,-64],[-1,-6],[-14,-70],[-15,-71],[-10,-51],[-9,-49],[-7,-36],[-12,-61],[-5,-26],[-1,-6],[-2,-9],[-33,-174],[-10,-48],[-70,-362],[-40,-201],[-6,-34],[-29,-150]],[[72191,56863],[-121,0],[-70,-1],[-198,-1],[-177,-1],[-185,-2],[-75,-1],[-270,-6],[-257,-2],[-161,-1],[-119,-1],[-36,-1],[-16,-25],[-27,-47],[-15,-26],[-19,-32],[-124,-215],[-106,-184],[-126,-217],[-24,-41],[-118,-201],[-64,-110],[-39,-68]],[[8917,51966],[-50,-110],[-46,-105],[-124,-280],[-17,-38],[-58,-131],[-131,-296],[-53,-120],[-25,-57],[-8,-19],[-88,-198],[-20,-45],[-32,-72],[-74,-167],[-2,-7],[-10,-24],[-17,-35],[-56,-130],[-61,-131],[-83,-176],[-3,-7],[-37,-79],[-164,-350],[-27,-59],[-5,-11],[-35,-79],[-54,-122],[-130,-259],[-39,-89],[-54,-122],[-162,-334]],[[7252,48314],[-19,34],[-43,78],[-113,207],[-68,121],[-36,65],[-18,29],[-30,58],[-75,139],[-65,120],[-43,68],[-192,356],[-67,124],[-73,136],[-4,9],[-17,30],[-17,0],[-175,11],[-103,7],[-87,5],[-76,5],[-152,10],[-39,3],[-59,3],[-49,4],[-42,2],[-20,1],[-31,3],[-29,2],[-324,21],[-4,0],[-306,19],[-147,10],[-1,0],[-99,8],[-93,8],[-28,2],[-19,1],[-2,383],[-188,-7],[-169,-2],[-148,-4],[-181,-5],[-34,0],[-71,-2],[-25,-1],[-51,-3],[-61,-2],[-150,-4],[-1,0],[-119,-3],[-34,-1],[-33,0],[-52,-2],[-109,-3],[-48,-1],[-72,-2],[-169,-4],[-105,-1],[-182,-4],[-33,1],[-130,-3],[-27,-1],[-172,-5],[-450,-11],[-78,-2],[-1,0],[-32,-1],[-96,-2],[-9,0],[-27,0],[-68,0],[-187,-6],[-62,-2],[-405,-10],[-108,-3],[-46,0],[-128,-8],[-35,-1],[-34,0],[-45,0],[-306,-17]],[[6,50274],[3,310],[0,112],[1,503],[1,736],[0,326],[0,166],[0,900],[0,184],[0,138],[0,138],[0,2081],[0,379],[0,747],[0,997],[0,1698],[0,992],[-8,1697],[-3,532],[3,406]],[[57897,48279],[1,-66],[1,-123],[1,-182],[4,-415],[0,-5],[0,-45],[-8,-41]],[[57896,47402],[-19,-12],[-273,-165],[-140,-86],[-61,-36],[-29,-18],[-16,-10],[-915,-556],[-16,-10],[-77,-47],[-242,-148],[-95,-57],[-349,-213],[-34,-21],[-25,-16],[-472,-288],[-171,-104],[-61,-37],[-3,-2],[-41,-25],[-55,-34],[-128,-78],[-98,-60],[-37,-23],[-57,-19],[-869,-299],[-272,-47],[-32,-5],[-46,-8],[-27,-5],[-87,-15],[-69,-12],[-30,-5],[-19,-3],[-5,-1],[-24,-4],[-21,-4],[-131,-22],[-32,-6],[-83,-29],[-85,-29],[-43,-16],[-132,-46],[-401,-141],[-401,-141],[-27,-10],[-153,372],[-351,855],[-121,293],[-11,28],[-3,6],[-11,27],[-13,33],[-7,16],[-194,472],[-37,92],[-11,27],[-55,139],[-38,96],[-192,483],[-26,65],[285,354],[19,23],[-80,261],[-3,7],[-12,25],[-25,26],[-18,-4],[-2,3],[-26,42],[-18,27],[-15,9],[-12,3],[-36,-3],[-15,-6],[-32,-13],[-30,-24],[-11,-1],[-9,5],[-2,6],[-1,3],[-6,30],[-4,23],[-6,20],[-11,21],[-66,38],[-17,10],[-13,2],[-12,-28],[-18,-5],[-12,32],[4,50],[-2,51],[-5,18],[-4,9],[-6,11],[-34,72],[-83,101],[-19,12],[-11,-2],[-5,-1],[-5,-1],[-35,28],[-67,64],[-10,9],[-25,31],[0,1],[-32,44],[-27,30],[-50,45],[-46,30],[-12,13],[-2,3],[-18,30],[-9,31],[-1,4],[-2,5],[-8,13],[-11,10],[-1,0],[-3,3],[-54,39],[-12,6],[-41,6],[-9,2],[-85,66],[-23,6],[-19,17],[-37,40],[-2,2],[-6,4],[-112,34],[-21,7],[-10,3],[-20,-12],[-13,-2],[-13,3],[-60,40],[-56,53],[-34,52],[-9,28],[-4,56],[-3,34],[-8,49],[-23,59],[-11,17],[-3,4],[-19,10],[-3,2],[-15,-2],[-2,-2],[-9,-6],[-10,-6],[-16,-14],[-21,-25],[-31,-50],[-16,-17],[-15,-9],[-14,0],[-43,27],[-12,13],[-56,63],[0,2],[0,1],[-7,11],[-8,7],[-2,2],[-6,5],[-12,6],[-44,5],[-6,-3],[-33,-30],[-26,-42],[-11,-10],[-27,-14],[-16,-5],[-25,3],[-12,9],[-9,3],[-4,1],[-18,17],[-15,15],[-5,4],[-23,28],[-34,41],[-13,16],[-30,38],[-36,55],[-13,20],[-25,17],[-7,1],[-70,-87],[-15,-19],[-6,-11],[-2,-4],[-3,-8],[-6,-66],[-2,-23],[-17,-59],[-11,-16],[-2,-2],[-7,-7],[-9,-8],[-16,-7],[-1,0],[-31,-1],[-7,-1],[-37,20],[-19,20],[-2,5],[-46,90],[-2,7],[-13,37],[-4,14],[-7,7],[-14,11],[-6,3],[-15,5],[-16,1],[-21,-2],[-14,-8],[-19,-10],[-2,-1],[-5,-3],[-2,-1],[-1,-1],[-27,-33],[-2,-3],[-21,-29],[-30,-25],[-54,-17],[-17,2],[0,1],[-39,86],[-160,379],[-94,225],[-140,332],[-146,345],[-36,-32],[-38,-33],[-96,-86],[-4,96],[-3,70],[-3,71],[-4,86],[-4,96],[-3,86],[-5,112],[-2,43],[-13,294],[-4,101],[-6,126],[-12,280],[-35,-3],[-42,-3],[-18,-2],[-45,-4],[-108,-9],[-79,-7],[-70,-6],[-82,-7],[-203,-17],[-224,-19],[-55,-5],[-45,-4],[-17,-2],[-228,-19],[-23,-2],[-136,-10],[-26,-2],[-18,-1],[-19,-1],[-56,-5],[-10,0],[-73,-6],[-167,-12],[-5,168],[-3,94],[-3,94],[-5,135],[-4,135],[-13,399],[-10,289],[-25,771],[-2,64],[-16,476],[0,19],[-8,22],[-2,-6],[-19,-51],[14,-32],[-2,-5],[-4,-8],[-35,-68],[-40,-76],[-1,-1],[-2,-4],[-3,-4],[-2,-3],[-26,-32],[0,-1],[-3,-3],[-1,0],[-77,-76],[-25,-25],[-26,-45],[-18,-36],[-15,-54],[-11,-49],[-53,-246],[-1,-7],[-1,-4],[-1,-6],[-2,-5],[-1,-3],[-14,-41],[-1,-1],[-2,-5],[-1,-3],[-18,-40],[-1,-2],[-2,-4],[-2,-4],[-3,-4],[-2,-3],[-20,-24],[-3,-3],[-3,-3],[-2,-2],[-1,0],[-21,-14],[-2,-2],[-3,-1],[-2,-1],[-21,-7],[-1,-1],[-3,0],[-3,-1],[-1,0],[-37,2],[-2,0],[-3,1],[-3,1],[-33,12],[-44,0],[-21,-6],[-16,-9],[-13,-10],[-12,-19],[-6,-14],[-2,-10],[-2,-34],[3,-35],[8,-27],[18,-56],[24,-64],[0,-1],[2,-5],[1,-5],[2,-6],[0,-3],[6,-25],[0,-2],[1,-6],[1,-6],[1,-6],[0,-4],[3,-34],[0,-3],[0,-6],[0,-6],[0,-7],[0,-6],[0,-3],[-3,-38],[-1,-3],[0,-6],[-1,-6],[-1,-6],[-2,-6],[-1,-5],[-2,-6],[0,-1],[-8,-25],[-2,-3],[-2,-5],[-2,-5],[-1,-2],[-11,-22],[-1,-2],[-3,-4],[-2,-4],[-3,-3],[-2,-3],[-3,-3],[-1,-1],[-20,-16],[-2,-1],[-3,-2],[-1,0],[-19,-9],[-1,-1],[-3,-1],[-3,-1],[-3,0],[-53,17],[-9,4],[-1,0],[-3,2],[-3,2],[-3,2],[-77,67],[-2,2],[-2,3],[-31,36],[-3,3],[-2,4],[-1,1],[-37,61],[-39,55],[-22,19],[-11,5],[-2,-1],[-61,-58],[-2,-5],[-6,-47],[0,-1],[-1,-6],[-1,-3],[-8,-48],[-1,-2],[-3,-18],[0,-1],[-2,-6],[-1,-5],[-2,-6],[-1,-5],[-2,-5],[-2,-4],[-1,-1],[-13,-27],[-2,-4],[-2,-4],[-2,-3],[-7,-10],[-34,-49],[-1,-1],[-2,-4],[-3,-2],[-1,-2],[-27,-25],[-2,-1],[-1,-1],[-34,-28],[-11,-24],[-8,-25],[-2,-17],[-18,-253],[-1,-35],[4,-48],[28,-284],[15,-110],[0,-2],[22,-170],[1,-6],[0,-6],[0,-7],[0,-6],[0,-6],[0,-6],[0,-2],[-3,-36],[0,-5],[-1,-6],[-1,-6],[-1,-6],[-1,-5],[-1,-6],[-1,-2],[-14,-50],[-1,-3],[-2,-5],[-2,-5],[-1,-2],[-18,-39],[-1,-2],[-2,-4],[-2,-4],[-3,-4],[-2,-3],[-1,-1],[-21,-25],[-3,-3],[-2,-2],[-3,-2],[-3,-2],[-1,0],[-40,-22],[-2,-1],[-3,-1],[-1,0],[-31,-7],[-2,0],[-1,-1],[-39,-3],[-24,-15],[-14,-14],[-2,-3],[-2,-7],[-3,-5],[0,-6],[-4,-44],[0,-2],[-1,-6],[0,-3],[-11,-75],[-1,-4],[-1,-6],[-1,-5],[-1,-6],[-1,-1],[-12,-46],[-2,-4],[-2,-5],[-2,-5],[-2,-5],[-2,-4],[-2,-4],[-16,-27],[-1,0],[-2,-4],[-3,-3],[-2,-3],[-3,-3],[-1,-1],[-18,-14],[-2,-2],[-3,-2],[-3,-1],[-1,-1],[-14,-5],[-2,0],[-3,-1],[-3,0],[-3,0],[-14,2],[-3,0],[-3,1],[-3,2],[-2,1],[-68,45],[-16,6],[7,63],[-22,-3],[-21,-25],[-5,-62],[-13,30],[-14,-96],[0,-63],[27,-43],[0,-1],[5,-37],[0,-1],[1,-6],[0,-2],[11,-122],[0,-5],[0,-6],[1,-7],[-1,-6],[0,-6],[0,-1],[-4,-65],[-1,-5],[0,-6],[-1,-6],[-1,-6],[-1,-6],[-1,-3],[-8,-29],[-17,31],[-15,-36],[-13,-36],[17,-36],[-2,-4],[-1,-2],[-32,-61],[-42,-43],[-40,-4],[-36,16],[-29,32],[-21,34],[-17,63],[-15,82],[-7,74],[-16,39],[-22,12],[-23,-12],[-36,-31],[-64,-50],[-35,-6],[-36,5],[-30,25],[-24,32],[-23,30],[-22,24],[-21,1],[-22,-6]],[[42573,51246],[-25,90],[-3,10],[-31,59],[-13,25],[-22,43],[-74,141],[-18,35],[-18,33],[-20,39],[-14,25],[-20,39],[-15,29],[-18,34],[-17,33],[-44,84],[-49,94],[-16,44],[-92,246],[-19,53],[-48,129],[-117,320],[-30,81],[-13,36],[-124,339],[-97,272]],[[22483,57695],[0,-5],[-1,-149],[-1,-72],[0,-1],[0,-138],[-1,-166],[0,-10],[-4,-394],[0,-42],[0,-45],[0,-38],[0,-36],[0,-49],[1,-98],[0,-57],[1,-88],[-1,-192],[-1,-132],[0,-76],[-2,-80],[-1,-51],[-2,-249],[1,-225],[-1,-92],[0,-146],[-4,-304],[1,-460],[0,-85],[0,-2],[-1,-126],[0,-149],[-1,-242],[0,-154],[0,-125],[0,-66],[-1,-97],[-1,-50],[0,-78],[0,-218],[0,-62],[-1,-59],[0,-42],[0,-45],[0,-49],[-1,-61],[0,-20],[0,-112],[-1,-173],[0,-10],[0,-46],[0,-59],[-1,-66],[0,-71],[-2,-274],[-1,-93],[0,-37],[0,-36],[-1,-54],[-1,-238],[-1,-7],[0,-40],[0,-49],[0,-37],[-1,-58],[-2,-254],[-2,-275],[0,-65],[-1,-223],[-3,-262],[0,-42],[0,-61],[-2,-38],[0,-48],[0,-57],[0,-6],[0,-224],[0,-219],[0,-121],[0,-230],[-1,-200],[0,-83],[-1,-69],[-55,2],[-2,-253],[-1,-42],[-3,-237],[-6,-448],[0,-8],[0,-29]],[[22374,47618],[-50,-115],[-16,-17],[-22,-14],[-45,-25],[-41,-22],[-42,-39],[-48,-19],[-33,-33],[-34,-43],[-23,-50],[-15,-45],[-38,-91],[-12,-31],[0,-1],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-3,-3],[-2,-4],[-3,-2],[-16,-17],[0,-1],[-3,-2],[-3,-3],[-3,-1],[-7,-4],[-3,-2],[-3,-1],[-3,-1],[-1,0],[-17,-1],[-20,-11],[-62,-52],[-2,-1],[-40,-30],[-101,-73],[-9,-8],[-29,-24],[-28,-54],[-3,-9],[-18,-47],[-9,-30],[0,-2],[-2,-6],[-2,-4],[-2,-4],[-43,-92],[0,-1],[-2,-4],[-3,-4],[-2,-4],[-3,-3],[-45,-55],[0,-1],[-2,-2],[-14,-15],[-12,-15],[-68,-98],[-39,-100],[-1,-3],[-2,-4],[-2,-4],[-2,-5],[-1,-1],[-30,-51],[-1,-3],[-2,-3],[-2,-2],[-7,-10],[-27,-34],[-1,-1],[-2,-3],[-3,-3],[-3,-2],[-25,-18],[-3,-2],[-3,-1],[-16,-7],[-2,-1],[-1,0],[-3,-1],[-1,-1],[-62,4],[-21,3],[-2,1],[-2,0],[-3,1],[-11,4],[-1,1],[-3,1],[-3,2],[-82,57],[-99,50],[-9,0],[-1,-3],[-2,-6],[0,-3],[-2,-6],[-1,-5],[-2,-5],[-2,-5],[-2,-5],[-2,-4],[-2,-3],[-15,-24],[0,-1],[-3,-4],[0,-1],[-122,-164],[-2,-3],[-14,-16],[-1,-2],[-16,-17],[0,-1],[-93,-97],[0,-1],[-2,-2],[-23,-20],[-1,-1],[-2,-2],[-3,-2],[-3,-1],[-1,0],[-52,-21],[-2,0],[-71,-21],[-60,-16],[-21,4],[-41,-3],[-12,-6],[-16,-8],[-52,-24],[-25,60],[-20,46],[-12,27],[-36,-89],[-27,-46],[-26,-46],[-20,7],[-2,0],[-3,2],[-3,2],[-3,2],[-16,14],[-28,22],[-19,7],[-22,3],[-3,1],[-3,1],[-1,0],[-21,10],[-2,1],[-3,2],[-3,2],[-2,3],[-3,3],[-3,3],[-1,3],[-20,29],[-1,2],[-2,4],[-2,4],[-2,5],[-2,5],[-2,5],[-1,2],[-9,31],[-4,10],[-2,3],[-9,5],[-11,-1],[-14,-2],[-19,-20],[-13,-24],[-8,-31],[-12,-104],[0,-2],[0,-1],[-7,-50],[0,-5],[-2,-6],[-1,-6],[-1,-6],[-2,-5],[-1,-4],[-7,-19],[-2,-8],[0,-2],[-2,-6],[-1,-5],[-2,-5],[-17,-47],[-20,-64],[-5,-17],[-2,-20],[-3,-54],[0,-3],[0,-6],[-1,-6],[-1,-6],[-1,-6],[0,-2],[-11,-51],[-1,-4],[-1,-6],[2,-154],[0,-15],[11,-72],[6,-46],[-3,-32],[-15,-70],[-20,-90],[-7,-33],[-33,-51],[-22,-13],[-23,-8],[-24,3],[-18,5],[-15,13],[-13,17],[-10,18],[-7,15],[-2,14],[-1,36],[-2,125],[4,66],[11,61],[12,37],[12,23],[16,22],[21,24],[13,10],[15,14],[-3,13],[-4,14],[-26,10],[-24,2],[-33,-13],[-34,-6],[-24,11],[-15,13],[-27,41],[-12,48],[-5,43],[3,50],[8,37],[14,32],[23,11],[28,10],[29,10],[33,-3],[10,30],[-7,38],[-18,10],[-43,6],[-49,-10],[-44,-27],[-34,2],[-29,-3],[-16,-2],[-10,-3],[-7,-6],[-6,-32],[-8,-55],[-13,-35],[-9,-25],[-18,-20],[-52,-16],[-2,0],[-3,0],[-3,1],[-3,1],[-1,0],[-17,8],[-2,1],[-3,2],[-3,2],[-2,3],[-3,3],[-1,1],[-4,5],[0,1],[-3,3],[-1,1],[-2,4],[-3,4],[-2,4],[-2,5],[-5,13],[-2,4],[-2,5],[-1,6],[-2,5],[-1,6],[-1,6],[-1,6],[0,3],[-6,48],[0,3],[0,6],[-1,6],[0,6],[0,7],[0,1],[2,54],[1,6],[0,6],[0,1],[9,89],[0,23],[0,4],[0,1],[-9,8],[-19,4],[-17,-15],[-29,-26],[-1,-1],[-2,-2],[-3,-2],[-3,-2],[-3,-1],[-3,0],[-3,0],[-3,0],[-3,0],[-3,1],[-2,1],[-31,10],[-12,15],[-3,4],[-2,3],[-3,4],[-2,5],[-2,4],[-19,46],[-2,5],[-2,5],[-1,5],[-2,6],[-1,5],[-1,6],[-1,6],[-1,7],[0,6],[0,6],[-1,6],[1,7],[0,6],[0,6],[1,6],[1,6],[0,1],[5,30],[1,5],[1,5],[2,6],[1,5],[2,6],[-11,25],[-18,-15],[-18,-6],[-21,-15],[-13,-28],[-4,-23],[3,-33],[0,-32],[-3,-57],[-13,-121],[-14,-92],[0,-3],[-1,-6],[-1,-3],[-17,-75],[0,-2],[-1,-3],[-10,-38],[0,-3],[-2,-5],[-1,-2],[-20,-62],[-1,-3],[-2,-5],[-20,-45],[-1,-4],[-3,-5],[-2,-4],[-2,-3],[-1,-2],[-18,-23],[-2,-2],[-2,-3],[-3,-2],[-3,-3],[-2,-1],[-11,-7],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-3,0],[-13,0],[-3,0],[-3,1],[-3,1],[-45,19],[-3,2],[-15,8],[-90,39],[-13,1],[-4,1],[-16,-3],[-15,-6],[-20,-17],[-23,-30],[-11,-20],[-24,-53],[-1,-3],[-2,-4],[-2,-4],[-3,-4],[0,-1],[-14,-18],[-2,-3],[-3,-3],[-3,-2],[-3,-3],[-2,-2],[-2,0],[-10,-5],[-2,-1],[-3,-1],[-3,-1],[-3,0],[-1,0],[-83,4],[-2,0],[-3,1],[-2,0],[-22,9],[-1,0],[-3,1],[-3,2],[-3,3],[-3,2],[-2,2],[-7,8],[0,1],[-13,16],[-3,3],[-2,4],[-3,4],[-6,5],[-5,9],[-2,4],[-8,77],[3,37],[2,12],[1,8],[1,6],[2,8],[0,1],[2,6],[1,6],[1,5],[2,6],[2,5],[1,5],[3,4],[2,5],[2,4],[3,4],[1,1],[5,19],[-1,9],[-2,-1],[-27,-8],[-1,0],[-3,-1],[-3,0],[-2,0],[-17,2],[-1,0],[-3,0],[-3,1],[-3,2],[-1,1],[-62,40],[-3,3],[-1,2],[-40,53],[-9,9],[-55,22],[-53,15],[-170,26],[-12,-1],[-6,0],[-3,1],[-11,3],[-4,0],[-3,0],[-3,1],[-1,0],[-25,8],[-2,1],[-1,0],[-25,-97],[-20,-67],[-2,-6],[-7,-17],[-13,-24],[-12,-30],[-7,-36],[1,-38],[3,-9],[8,-25],[10,-48],[1,-2],[11,-102],[-9,-51],[-21,-24],[-129,-37],[-49,13],[-11,30],[-12,77],[-4,21],[-1,11],[0,31],[2,22],[-2,6],[-7,45],[-10,22],[-85,77],[-22,6],[-3,1],[-4,1],[-5,1],[-2,-1],[-17,-3],[-16,-26],[-17,-51],[-3,-18],[0,-6],[3,-22],[34,-69],[3,-4],[4,-10],[2,-7],[2,-10],[3,-9],[0,-6],[1,-17],[1,-21],[-2,-8],[-1,-5],[-7,-30],[-18,-25],[-30,-24],[-24,-19],[-38,-28],[-45,17],[-59,89],[-20,20],[-58,35],[-46,13],[-5,11],[-21,6],[-19,29],[-2,5],[-13,34],[-2,7],[-5,33],[-6,14],[-4,14],[-31,13],[-1,-1],[-3,2],[-10,-3],[-54,-63],[-72,-24],[-14,-16],[-16,-34],[-33,72],[-77,89],[-46,37],[-79,21],[-144,-29],[-40,-35],[-69,-71],[-54,-83],[-37,-87],[-74,-209],[-24,-52],[-36,-39],[-40,-18],[-91,25],[-130,93],[-80,41],[-84,33],[-43,36],[-16,24],[-28,61],[-9,56],[-2,39],[12,104],[23,99],[26,51],[94,108],[101,84],[76,4],[45,8],[97,-27],[73,-49],[97,-31],[29,16],[44,52],[14,40],[10,61],[-42,167],[-100,158],[-26,22],[-76,20],[-92,16],[-82,-3],[-36,10],[-30,67],[-4,50],[4,62],[50,137],[44,90],[43,164],[39,340],[-1,78],[-11,71],[-17,39],[-20,24],[-42,17],[-56,-29],[-88,-83],[-68,-21],[-137,33],[-37,22],[-15,24],[-48,10],[-48,22],[-26,17],[-171,153],[-118,120],[-26,17],[-52,14],[-5,-6],[-44,19],[-65,32],[-34,29],[-16,28],[-12,28],[-9,36],[-4,133],[7,57],[18,53],[24,47],[90,107],[31,50],[22,53],[12,55],[-1,73],[-25,89],[-47,106],[-39,49],[-27,61],[-46,66],[-105,130],[-26,17],[-66,169],[-16,135],[-10,54],[-2,75],[0,110],[-10,126],[-1,14],[-2,100],[1,5],[-4,31],[21,176],[11,123],[1,41],[-1,62],[0,70],[-4,97],[-4,140],[0,14],[15,118],[3,48],[1,68],[-7,98],[-4,44],[-10,51],[-16,48],[-25,60],[-1,2],[-34,71],[-24,55],[-16,44],[0,36],[7,55],[37,122],[20,48],[29,85],[13,122],[-1,89],[-14,73],[-21,46],[-58,91],[-106,96],[-11,23]],[[14218,51926],[-74,76]],[[84372,51597],[-3,-57],[-22,-54],[-16,-27],[-8,-18],[-7,-14],[-10,-37],[2,-8],[7,-26],[13,-34],[1,-41],[-3,-38],[-21,-14],[-17,-15],[-19,-36],[-19,-3],[-32,7],[-12,6],[-29,10],[-21,17],[-25,5],[-19,-30],[2,-36],[12,-42],[14,-39],[3,-47],[-8,-40],[-15,-28],[-14,-23],[-24,-22],[-24,-21],[-27,-22],[-28,-32],[-21,-32],[-13,-25],[-13,-33],[-21,-9],[-17,-1],[-4,-3],[-12,-56],[-9,-41],[2,-20],[4,-17],[6,-25],[3,-11],[45,-63],[-17,-31],[-3,-5],[-21,-40],[-4,-7],[-20,-19],[-73,-69],[-5,-5],[-62,-38],[-14,25],[-19,23],[-19,15],[-23,4],[-30,-9],[-25,-19],[-18,-7],[-24,-4],[-17,-7],[-17,-21],[-1,-58],[-1,-9],[-2,-30]],[[83538,50191],[-1,-4],[-16,-34],[-23,-52],[-12,-33],[-16,-33],[-16,-32],[-15,-18],[-17,-10],[-14,24],[-8,35],[-3,38],[6,41],[6,46],[7,33],[8,42],[-10,31],[-14,53],[-18,59],[-27,47],[-14,25],[-20,14],[-18,6],[-17,15],[15,-21],[-18,12],[-14,21],[-41,58],[-64,45],[-8,-6],[-20,-16],[-20,-1],[-18,0],[-21,-1],[-20,12],[-37,-9],[-51,-88],[-38,-4],[-18,-3],[-20,16],[-19,16],[-22,8],[-23,0],[-15,5],[-5,1],[-26,-17],[-21,-15],[-18,-16],[-17,-16],[-22,-29],[-14,-21],[-16,-19],[-19,-24],[-11,-33],[-10,-38],[-9,-45],[-5,-51],[-17,-28],[-17,-12],[-25,6],[-21,23],[-17,7],[-23,-18],[18,-88],[12,-56],[0,-58],[-15,-28],[-26,2],[-21,15],[-26,40],[-22,22],[-23,16],[-20,-8],[-20,-48],[-9,-38],[-12,-55],[-17,-38],[-8,-29],[-6,-22],[-24,-48],[-18,-18],[-19,-26],[-25,-10],[-35,-14],[-18,-32],[-44,-126],[-15,-40],[-22,-19],[-18,-9],[-18,-4],[-22,-3],[-33,2],[-33,8],[-27,9],[-17,4],[-18,7],[-18,11],[-23,21],[-44,8],[-3,0],[-24,0],[-22,-14],[-21,-25],[-12,-36],[5,-43],[11,-36],[9,-52],[0,-43],[-8,-42],[-11,-31],[-15,-29],[-19,-19],[-18,-24],[-20,-25],[-23,-19],[-18,-7],[-27,24],[-15,35],[-16,25],[-23,4],[-23,-15],[-11,-34],[3,-50],[5,-41],[7,-66],[12,-57],[7,-39],[-1,-38],[-13,-40],[-27,-72],[-55,-148],[-2,-57],[2,-51],[4,-60],[12,-58],[4,-75],[-2,-46],[0,-44],[-1,-49],[-6,-98],[-18,-32],[1,-5],[5,-30],[7,-49],[6,-37],[2,-41],[-3,-47],[0,-2],[4,-40],[2,-37],[-1,-40],[19,-31],[30,-96],[36,-106],[16,-34],[14,-55],[24,-40],[15,-34],[3,-36],[-4,-45],[12,-34],[17,-25],[14,-43],[4,-39],[6,-36],[18,-2],[19,-15],[48,-10],[14,4],[111,-44],[11,-4],[2,1],[1,0],[13,3],[3,1],[12,2],[9,2],[27,-51],[19,-36],[13,-23],[7,-22],[2,-9],[2,-19],[13,-164],[-2,-23],[-14,-27],[5,-38],[6,-35],[3,-47],[-1,-13],[-3,-32],[19,-32],[16,-31],[11,-30],[11,-33],[11,-33],[8,-57],[20,-57],[6,-20],[5,-21],[-11,-8],[-22,-17],[-358,-263],[-98,-71],[-70,-50],[-45,-37],[-141,-105],[-27,-20],[-17,-15],[-60,-45],[-51,-41],[-26,-20],[-90,-67],[-70,-54],[-108,-90],[-89,-4],[-37,-8],[-180,-18],[-79,-54],[-202,-147],[-235,-174],[20,-127],[8,-60],[-217,-154],[-58,-41],[-44,-31],[-39,-25],[-7,-6],[-342,-266],[-706,-520],[-1,-1],[-31,-24],[-54,-42],[-246,-184],[-255,-188],[-47,-35],[-19,-14],[-20,-15],[-70,-51],[-159,-117],[-52,-38],[-6,-6],[-26,-27],[-68,-54],[-25,-19],[-70,-53]],[[77566,42701],[-145,-109],[-12,-9],[-100,-71],[-147,-111],[-139,-84],[-1,0],[-177,95],[-399,228],[-16,9],[-119,69],[-259,149],[-116,67],[-32,23],[-4,2],[-17,10],[-52,30],[-106,50],[-20,12],[-66,35],[-24,16],[-20,10],[-46,27],[-19,9],[-60,34],[-24,14],[-17,10],[-46,21],[-38,22],[-23,13],[-74,41],[-26,13],[-34,19],[-392,214],[-60,32],[-65,36],[-37,20],[-20,11],[-28,16],[-28,15],[-254,138],[-348,190]],[[73956,44017],[-45,368],[-30,240],[-46,367],[-14,120],[-16,124],[-15,123],[-6,49],[-6,51],[-6,47],[-38,313],[-16,159],[-6,60],[-21,207],[0,3],[-10,94],[-6,57],[-26,255],[-12,124],[-9,87],[-17,165],[-13,126],[-16,156],[-9,94],[0,2],[-19,183],[0,7],[-2,30],[36,35],[4,4],[10,30],[0,25],[0,13],[0,51],[0,37],[0,9],[0,32],[0,61],[0,28],[0,21],[0,48],[0,48],[-1,41],[0,49],[0,121],[0,67],[0,50],[0,122],[0,60],[-1,56],[0,36],[0,255],[0,369],[0,78],[0,58],[-3,349],[-3,432],[0,18],[1,61],[0,184],[-1,295],[-152,-50],[-205,-72],[-317,-78],[-39,-10],[-22,-5],[-96,-24],[-3,12],[-25,89],[-20,73],[-48,178],[-14,54],[-32,119],[-10,35],[-9,35],[-16,58],[-9,33],[-11,42],[-42,154],[-23,85],[-25,92],[-22,77],[-39,138],[-32,118],[-11,38],[-25,91],[-43,159],[-35,132],[-10,36],[-13,47],[-45,167],[-45,164],[-1,6],[-20,75],[-56,210],[-29,102],[-5,129],[-2,50],[-1,41],[-2,42],[-3,122],[6,141],[8,115],[1,53],[0,42],[2,65],[0,45],[3,72],[3,72],[2,53],[3,51],[20,424],[6,99],[1,36],[7,121],[3,74],[5,83],[7,156],[4,86],[2,54],[13,263],[13,269],[3,67],[4,78],[2,53],[2,36],[0,6],[5,92],[13,271],[15,316],[1,35]],[[31035,53040],[-264,8],[-246,8],[-18,0],[-137,5],[-129,3],[-24,1],[-50,2],[-42,2],[-54,3],[-19,-73],[-11,-42],[-43,-153],[-16,-69],[-16,-62],[-26,-107],[-9,-36],[-22,-73],[-17,-65],[-17,-79],[-13,-61],[-3,-15],[-16,-65],[-24,-99],[-19,-73],[-11,-42],[-27,-103],[-15,-61],[-144,-546],[-5,-19],[-4,-14],[-15,-62],[-4,-13],[-13,-49],[-10,-42],[-2,-9],[-10,-37],[-8,-34],[-11,-41],[-1,-5],[-22,-83],[-12,-49],[-22,-84],[-29,-115],[-11,-44],[-10,-42],[0,-6],[1,-44],[1,-165],[-3,-118],[-2,-37],[2,-56],[-1,-39],[1,-137],[2,-45],[2,-323],[0,-105],[0,-81],[1,-286],[0,-51],[0,-7],[1,-260],[0,-81],[0,-60],[1,-91],[0,-92],[1,-303],[0,-57],[0,-26],[1,-226],[1,-215],[0,-39],[0,-2],[0,-41],[0,-57],[0,-143],[1,-65],[0,-91],[0,-87],[0,-61],[1,-51],[1,-438],[0,-51],[0,-5],[-2,-226],[0,-106],[1,-262],[2,-52],[-1,-73],[0,-43],[0,-55],[0,-55],[0,-71],[0,-29],[0,-86],[0,-336],[0,-227],[0,-42],[1,-42],[0,-59],[0,-58],[0,-49],[-1,-52],[0,-75],[0,-75],[0,-43],[0,-43],[0,-107],[0,-107],[0,-83],[-2,-213],[-2,-140],[-1,-100],[0,-39],[-2,-163],[-2,-149],[0,-47],[-1,-58],[-1,-50],[-3,-223],[-4,-287],[-1,-88]],[[29407,42451],[-58,0],[-28,-1],[-5,1],[-56,1],[-134,1],[-58,1],[-76,0],[-181,2],[-91,1],[-21,0],[-19,0],[-29,0],[-30,1],[-19,0],[-31,0],[-216,2],[-47,1],[-24,2],[-70,6],[-53,4],[-153,9],[-97,5],[-79,4],[-26,2],[-88,5],[-100,6],[-48,2],[-27,2],[-103,5],[-54,3],[-19,1],[-105,5],[-117,7],[-32,2],[-34,1],[-50,3],[-29,3],[-5,0],[-19,0],[-48,2],[-21,0],[-79,5],[-50,0],[-20,2],[-40,0],[-19,-3],[-126,4],[-83,3],[-253,8],[-167,5],[-35,-1],[-20,0],[-16,0],[-36,1],[-1,0],[-22,0],[-28,1],[-38,1],[-91,1],[-37,1],[-40,1],[-101,3],[-28,1],[-48,0],[-47,3],[-22,0],[-75,1],[-48,1],[-33,0],[-23,1],[-22,0],[-7,0],[-52,3],[-33,1],[-44,0],[-23,0],[-65,1],[-129,3],[-40,0],[-75,2],[-122,4],[-21,0],[-15,1],[-46,1],[-9,0],[-18,1],[-35,0],[-84,3],[-57,2],[-71,1],[-82,2],[-50,2],[-35,1],[-22,1],[-27,1],[-32,0],[-45,1],[-41,1],[-53,4],[-17,0],[-48,0],[-29,0],[-23,1],[-100,1],[-103,1],[-52,1],[-18,0],[-36,2],[-19,0],[-17,0],[-42,1],[-33,-1],[-21,1],[-43,1],[-66,2],[-73,1],[-70,0],[-31,0],[-92,6],[-93,4],[-89,1],[-75,1],[-37,-1],[-137,2],[-190,4]],[[22372,42643],[0,46],[1,44],[-3,73],[-1,311],[1,70],[0,112],[0,42],[0,295],[30,456],[20,324],[-1,41],[0,61],[-1,74],[1,27],[2,124],[2,106],[5,495],[5,351],[2,123],[1,104],[3,145],[1,48],[1,133],[4,296],[1,48],[1,103],[1,102],[3,179],[3,211],[0,41],[1,33],[0,12],[3,181],[1,50],[1,68],[-86,-5],[0,51]],[[73956,44017],[-114,-194],[-48,-81],[-343,-580],[-1,-1],[-132,-223],[-2,-4],[-77,-132],[-60,-116],[-317,-609],[-21,-41],[-149,-286],[-53,-101],[-39,-304],[-42,-314],[-50,-370],[-10,-75],[-23,-170],[-67,-511],[-17,-131],[-5,-37],[-13,-101],[-36,-273],[-38,-285],[-18,-137],[-29,-218],[-114,-86],[-116,-87],[-56,-42],[-252,-189],[-27,-20],[-42,-32],[-116,-87],[-95,-72],[-23,-17],[-3,-2],[-46,-35],[-71,-52],[-25,-19],[-127,-94],[-25,-19],[-18,-16],[-1,-1],[-24,-16],[-35,-27],[-35,-28]],[[71001,37782],[-10,36],[-9,31],[-6,23],[-3,13],[-15,54],[-15,54],[-22,79],[-14,53],[-9,33],[-12,45],[-13,46],[-9,33],[-22,85],[-13,50],[-35,134],[-2,15],[-5,25],[-6,35],[-21,119],[-16,95],[-31,191],[-6,35],[-6,38],[-7,42],[-7,39],[-17,93],[-29,164],[-34,194],[-28,155],[-9,48],[-8,47],[-56,-16],[-44,-14],[-69,-26],[-76,21],[-2,2],[-2,2],[-29,-3],[-9,-1],[-4,-2],[-69,-25],[-1,0],[-34,-12],[-55,4],[-23,7],[-25,1],[-4,0],[-40,-3],[-8,0],[-11,-1],[-22,-12],[-15,-19],[-3,-1],[-7,-3],[-75,-19],[-6,-1],[-84,-20],[-9,0],[-3,0],[-12,14],[-8,1],[-35,-5],[-1,0],[-7,-3],[-20,-7],[-5,-2],[-38,-20],[-65,-48],[-36,-12],[-139,-27],[-10,-1],[-3,0],[-36,-4],[-1,1],[-16,1],[-18,-2],[-18,-3],[-43,-9],[-2,0],[-41,-19],[-50,-2],[-16,-1],[-1,0],[-17,-3],[-30,-31],[-8,-8],[-59,-30],[-7,3],[-28,10],[-52,21],[-15,8],[-4,5],[-1,1],[0,11],[0,3],[0,6],[-1,6],[0,2],[-8,80],[-1,5],[-1,6],[0,1],[-8,48],[-59,277],[-6,13],[-21,36],[-11,19],[-15,84],[1,29],[4,112],[1,3],[6,30],[4,14],[15,28],[9,15],[6,8],[19,11],[33,9],[17,9],[13,7],[19,9],[3,7],[4,6],[10,33],[0,10],[-3,32],[-9,96],[-9,92],[0,6],[-1,12],[-1,1],[-7,27],[-6,16],[-25,69],[-13,18],[-3,0],[-3,1],[-50,15],[-6,6],[-10,13],[-9,29],[-32,248],[-1,4],[-1,9],[1,17],[6,80],[5,10],[33,75],[11,16],[2,3],[4,5],[31,34],[4,5],[1,15],[-1,15],[-4,65],[-4,24],[-17,28],[-20,10],[-5,0],[-24,1],[-179,2],[-26,0],[-37,1],[-25,0],[-33,1],[-19,0],[-19,0]],[[68464,41611],[9,178],[3,72],[7,141],[3,67],[3,65],[3,70],[2,36],[10,228],[3,140],[0,30],[7,58],[0,42],[3,19],[2,9],[1,9],[2,10],[-2,10],[-5,23],[-19,42],[-7,7],[-30,31],[10,53],[18,27],[21,19],[1,0],[36,27],[5,3],[4,9],[18,38],[2,4],[17,60],[2,10],[4,41],[2,16],[-9,64],[-8,44],[-11,57],[-17,51],[-25,46],[-1,0],[-21,6],[-12,24],[-13,49],[-15,52],[-15,46],[3,26],[1,10],[34,17],[35,26],[20,13],[21,15],[64,49],[100,92],[-2,8],[-11,35],[-16,46],[-3,11],[-23,43],[-5,89],[9,45],[1,39],[11,43],[1,58],[-12,41],[-16,16],[-25,42],[-19,54],[-15,26],[-19,23],[-12,54],[-2,67],[-19,18],[-22,-1],[-21,26],[-19,72],[-16,51],[-8,12],[-9,13],[-12,29],[-62,95],[-32,50],[-83,128],[-169,262],[-31,47],[-67,104],[-79,120],[-55,86],[-43,75],[-3,72],[-3,55],[0,4],[-1,32],[-3,41],[-1,38],[-3,45],[1,37],[32,304],[23,208],[3,120],[3,101],[2,74],[1,40],[1,50],[-13,73],[-39,209],[-45,240],[-8,39],[-26,139],[-39,17],[-93,40],[-117,51],[-21,10],[-1,0],[-19,8],[-122,51],[-124,51],[-28,12],[-37,15],[-125,53],[-86,37],[-19,36],[26,62],[10,33],[3,68],[-4,36],[-5,40],[0,4],[-10,66],[-10,25],[-4,10],[8,34],[17,44],[7,35],[9,48],[4,36],[-14,23],[-16,22],[-16,28],[-11,32],[-17,39],[-11,30],[-6,66],[-3,139],[-8,54],[-29,220],[-6,45],[-27,213],[-27,189],[-11,75],[0,5],[-14,95],[-9,63],[-4,35],[-12,85],[-19,130],[-6,46],[-38,246],[-28,182],[-35,226],[-32,210],[-36,228]],[[42573,51246],[-20,-16],[-13,-40],[-11,-56],[-32,-109],[-30,-50],[-43,-20],[-53,12],[-31,2],[-22,-9],[-6,-65],[-9,-108],[1,-116],[-6,-87],[-25,-99],[-42,-37],[-62,-11],[-43,10],[-49,31],[-21,3],[-18,-14],[-3,-21],[16,-68],[14,-77],[-4,-79],[-16,-72],[-47,-57],[-35,-2],[-18,11],[-30,31],[-30,71],[-31,59],[-17,22],[-32,11],[-23,-5],[-22,-35],[-8,-59],[2,-80],[0,-59],[-4,-57],[-13,-61],[-26,-27],[-29,-30],[-25,-5],[-32,7],[-25,21],[-24,36],[-17,82],[-8,48],[-17,16],[-31,17],[-29,0],[-22,-17],[-37,-68],[-29,-119],[-45,20],[-35,16],[-9,4],[-18,-71],[0,-51],[10,-56],[22,-43],[19,-19],[15,-15],[36,-45],[45,-184],[32,-142],[5,-69],[7,-88],[27,-116],[46,-150],[86,-208],[7,-61],[-15,-73],[-19,-58],[-20,-40],[-24,-22],[-3,-24],[3,-9],[10,-31],[14,-18],[14,-8],[1,-1],[113,-55],[32,-13],[8,-7],[1,-2],[3,-3],[2,-2],[3,-8],[0,-13],[-2,-7],[-1,-7],[-1,-7],[-15,-42],[-31,-52],[-15,-39],[-20,-83],[-7,-27],[0,-3],[-4,-18],[-1,-34],[4,-12],[12,-24],[13,-16],[17,-7],[16,0],[41,6],[15,8],[68,60],[23,14],[31,7],[51,-80],[5,-99],[6,-66],[6,-37],[5,-21],[8,-27],[8,-18],[8,-8],[11,-8],[15,1],[16,10],[12,13],[44,67],[23,25],[19,11],[14,3],[11,0],[1,-1],[3,-2],[4,-2],[10,-9],[10,-20],[5,-14],[0,-25],[-2,-14],[-4,-10],[-2,-6],[-6,-11],[-25,-45],[-24,-55],[-4,-14],[-2,-7],[0,-2],[-5,-27],[0,-1],[1,-19],[2,-17],[10,-26],[6,-15],[16,-29],[32,-38],[12,-16],[10,-13],[7,-15],[9,-16],[9,-26],[1,-7],[-1,-34],[-6,-26],[-6,-14],[-3,-12],[-1,-8],[-24,-97],[-41,-4],[-58,-1],[-20,-13],[-21,-26],[-19,-29],[-19,-14],[-24,-3],[-25,11],[-36,33],[-21,21],[-21,-2],[-24,-10],[-9,-7],[-9,-8],[-15,-68],[11,-47],[35,-67],[1,-3],[9,-17],[7,-11],[1,-1],[6,-3],[4,-1],[25,19],[7,5],[9,4],[5,3],[14,2],[6,1],[15,-9],[8,-18],[9,-34],[3,-22],[-4,-11],[-8,-8],[-2,-1],[-16,-4],[-37,-10],[-18,-17],[-6,-18],[-1,-20],[3,-14],[6,-10],[58,-47],[19,-10],[18,-138],[-4,-29],[0,-37],[2,-13],[2,-9],[2,-7],[7,-13],[9,-9],[10,-3],[12,-5],[20,-2],[3,0],[19,4],[8,4],[22,11],[14,4],[10,-6],[24,-34],[46,-75],[8,-16],[16,-46],[1,-3],[6,-40],[1,-56],[-3,-19],[-6,-22],[-12,-19],[-9,-10],[-13,-7],[-44,28],[-26,8],[-6,1],[-4,0],[-8,1],[-6,-5],[-7,-6],[-3,-2],[-7,-13],[-5,-17],[-2,-31],[2,-42],[6,-46],[36,-49],[6,-12],[11,-32],[2,-66],[-5,-15],[-12,-7],[-17,-6],[-7,4],[-4,4],[-2,2],[-1,1],[-5,5],[-11,32],[-11,24],[-13,26],[-6,4],[-3,1],[-13,-3],[-2,0],[-3,-4],[-12,-13],[-28,-59],[-17,-28],[-3,-3],[-36,-35],[-7,-8],[-11,-3],[-54,-9],[-28,-2],[-22,7],[-3,2],[-27,23],[-16,14],[-21,10],[-2,0],[-18,-3],[-10,-6],[-4,-23],[1,-13],[2,-12],[11,-31],[19,-29],[3,-7],[4,-9],[37,-159],[1,-6],[1,-2],[5,-59],[-2,-9],[-2,-8],[-13,-51],[-12,-38],[-18,-32],[-8,-9],[-18,-1],[-2,1],[-25,11],[-28,13],[-8,-4],[-4,-6],[-5,-12],[16,-103],[4,-23],[6,-36],[-4,-19],[-1,-5],[-3,-5],[-22,-47],[-4,-8],[-1,-2],[-7,-11],[-8,-7],[-12,-2],[-2,3],[-7,8],[-3,9],[-6,8],[-11,4],[-18,0],[-14,-11],[-9,-12],[-4,-20],[3,-9],[37,-45],[8,-10],[3,-3],[4,-5],[11,-8],[10,-8],[26,-5],[15,4],[17,4],[18,-1],[17,-5],[8,-8],[19,-28],[12,-22],[11,-30],[82,-225],[1,-2],[11,-32],[1,-1],[0,-3],[7,-25],[0,-2],[1,-2],[1,-17],[3,-31],[0,-7],[1,-4],[-1,-7],[-1,-14],[-1,-16],[-1,-6],[-1,-2],[-11,-19],[-4,-8],[-3,-6],[-14,-14],[-11,-7],[-2,0],[-53,-7],[-58,-12],[-6,-2],[-30,-6],[-19,-11],[-14,-13],[-11,-20],[-9,-21],[-2,-7],[-13,-42],[-2,-5],[-2,-4],[-7,-10],[-4,-3],[0,-1],[-1,0],[-8,-6],[-20,-2],[-9,3],[-10,9],[-8,3],[-16,19],[-20,6],[-7,-2],[-4,-2],[-2,-2],[-3,-3],[-13,-19],[-17,-13],[-18,-20],[-13,-9],[-13,-1],[-43,29],[-19,4],[-13,-4],[-8,-9],[0,-1],[-5,-9],[-4,-57],[-4,-29],[-8,-42],[-7,-23],[-5,-17],[-19,-16],[-9,-8],[-59,-51],[-31,-22],[-2,-1],[-10,-4],[-3,-1],[-27,-5],[-22,23],[-10,13],[0,5],[36,104],[-1,14],[-5,14],[-5,5],[-13,2],[-22,-7],[-26,-10],[-40,-21],[-58,-6],[-16,1],[-15,8],[-8,7],[-9,14],[-6,37],[7,21],[9,22],[11,16],[8,11],[6,9],[5,11],[6,25],[0,31],[-5,29],[-9,15],[-10,10],[-19,14],[-18,8],[-15,13],[-9,18],[-7,32],[1,27],[3,15],[63,88],[17,35],[17,67],[-1,32],[-3,19],[-12,39],[-18,48],[-15,27],[-8,12],[-9,3],[-19,-3],[-12,-6],[-8,-12],[-1,-22],[6,-41],[0,-50],[-3,-20],[-4,-26],[-3,-17],[-17,-49],[-6,-15],[-14,-35],[-11,-36],[-1,-8],[-2,-8],[-3,-27],[0,-7],[0,-21],[-1,-10],[1,-10],[3,-36],[0,-18],[-15,-116],[-9,-23],[-4,-4],[0,-1],[-2,-2],[-1,-2],[-34,-28],[-3,-1],[-16,-4],[-21,-1],[-12,0],[-11,9],[-4,3],[-4,9],[-2,10],[-2,14],[1,44],[4,27],[8,52],[8,35],[2,52],[-2,14],[-9,17],[-41,4],[-28,9],[-20,20],[-32,54],[-20,20],[-64,47],[-19,7],[-66,8],[-20,1],[-18,-10],[-21,-12],[-16,-20],[-7,-21],[-8,-44],[-13,-76],[1,-49],[5,-36],[2,-5],[6,-17],[3,-11],[12,-16],[9,-7],[11,-3],[13,7],[10,8],[32,48],[12,13],[10,8],[5,3],[18,6],[22,-9],[8,-12],[3,-10],[2,-44],[-4,-73],[5,-29],[21,-122],[3,-19],[14,-40],[5,-15],[2,-6],[10,-34],[5,-37],[0,-21],[-3,-10],[-8,-4],[-3,-2],[-120,-73],[-35,-52],[-2,-5],[-25,-35],[-15,-9],[-11,-1],[-18,12],[-12,4],[-9,0],[-7,-4],[-8,-11],[-2,-4],[-2,-2],[-2,-5],[-1,-4],[-4,-8],[-1,-18],[0,-6],[1,-4],[1,-22],[3,-20],[5,-32],[2,-13],[-47,-14],[-10,-6],[-17,-26],[-22,-38],[-25,-50],[-3,-23],[-1,-3],[5,0],[8,4],[10,-8],[2,-6],[1,-1],[-2,-9],[-1,-10],[-2,-10],[-34,-91],[-4,-14],[-11,-27],[-17,-24],[-8,-7],[-58,-55],[-7,-7],[-55,-53],[-16,-14],[-15,-7],[-5,4],[-6,9],[0,1],[-13,48],[-3,12],[-27,-25],[-5,-5],[-15,-13],[-28,-25],[-34,-32],[-4,-7],[-16,-28],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-14,-27],[-6,2],[-91,22],[-11,3],[-1,0],[-32,8],[-11,2],[-1,1],[-15,3],[-2,-21],[0,-1],[-1,-3],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[-2,-5],[-1,-3],[-7,-19],[0,-2],[-2,-5],[-2,-5],[-3,-4],[-2,-4],[-27,-42],[-2,-4],[-2,-3],[-3,-3],[-2,-1],[-88,-84],[-27,-33],[-10,-15],[-10,-21],[-12,-29],[-15,-35],[-18,-44],[-20,-60],[-26,-86],[-26,-87],[-1,-3],[-27,-90],[76,-195],[28,-74],[3,-7],[7,-20],[18,-45],[-10,-17],[-2,-4],[-1,-2],[-57,-120],[-45,-88],[-33,-48],[-9,-14],[-13,29],[-1,2],[-5,10],[-40,4],[-15,2],[-67,7],[-25,-23],[-26,-26],[-40,-41],[-20,-19],[-3,-26],[6,-24],[1,-6],[11,-27],[22,13],[27,16],[20,10],[18,-14],[16,-38],[-3,-24],[-43,-32],[-64,-38],[-5,-7],[-13,-20],[-4,-15],[-16,-61],[-12,-50],[-4,-17],[-5,-19],[0,-19],[-1,-31],[-1,-16],[3,-60],[11,-96],[8,-26],[0,-21],[-22,-38],[-29,-40],[-24,-21],[-31,-26],[-20,-15],[-15,-6],[-11,2],[-4,-2],[-47,-25],[-6,-2],[-48,-12],[-22,-31],[-21,-67],[-12,-40],[-13,-40],[0,-1],[-11,-41],[-2,-7],[0,-3],[-29,-110],[-22,2],[-75,57],[-13,21],[-13,30],[-7,18],[-22,27],[-20,13],[-29,9],[-19,1],[-89,-44],[-26,-13],[-11,-17],[-10,-77],[-5,-66],[-20,-69],[-2,-7],[-31,-103],[-2,-6],[-1,-9],[-5,-7],[-2,-5],[-14,-19],[-10,-20],[-11,-9],[-22,-31],[-38,-131],[13,-82],[3,-165],[-2,-21],[-5,-14],[-32,-59],[-14,-23],[-9,-6],[-4,-1],[-1,0],[-15,-4],[-2,-3],[-2,-2],[-14,-19],[-6,-14],[-7,-20],[-3,-10],[-15,-47],[0,-1],[-8,-39],[-3,-13],[0,-2],[-1,-1],[-62,-84],[-6,-35],[-4,-21],[-10,-46],[-17,-76],[-2,-11],[-4,-9],[-7,-4],[-39,-8],[-36,-4],[-8,1],[-5,1],[-18,5],[-17,-21],[-9,-64],[-30,-3],[-18,1],[-18,2],[-19,-4],[-9,-31],[-18,-36],[-20,-24],[-2,-40],[-14,-34],[-17,-23],[-26,-4],[-17,-22],[-23,-1],[-17,-9],[-26,-34],[-19,-26],[0,-36],[-7,-41],[1,-40],[-4,-36],[-7,-48],[-3,-36],[-20,-11],[-16,-14],[-26,-11],[5,-48],[8,-39],[3,-50],[3,-61],[-20,-25],[9,-30],[13,-27],[-18,-24],[-21,-9],[-17,-22],[-12,-29],[2,-46],[-15,-24],[-9,-31],[-6,-36],[-16,-27],[-25,-29],[-3,-43],[-16,-31],[-5,-57],[5,-44],[-9,-33],[-19,-31],[-16,-13],[-20,1],[-20,4],[-33,-14],[-21,-20],[-8,-31],[-20,-34],[-52,-30],[-22,-10],[-12,-27],[-9,-33],[-13,-32],[-20,-26],[-17,-20],[-13,-57],[-27,-31],[-20,-14],[-14,-23],[-14,-33],[-18,-33],[-12,-27],[4,-42],[3,-51],[17,-33],[19,-3],[16,-78],[21,-52],[8,-37],[15,-46],[20,-57],[15,-31],[8,-55],[20,-36],[13,-41],[11,-46],[25,-27],[11,-34],[23,-37],[9,-56],[28,-10]],[[37044,36246],[148,-257],[2,-2],[13,-19]],[[37207,35968],[-55,0],[-228,-3],[-134,7],[-139,5],[-18,1],[-86,3],[-86,0],[-48,1],[-48,0],[-47,0],[-47,1],[-1,0],[-105,2],[-100,2],[-51,1],[-51,1],[-65,0],[-56,1],[-6,0],[-44,1],[-37,0],[-38,1],[-33,0],[-76,1],[-74,1],[-32,2],[-33,1],[-135,2],[-135,2],[-5,0],[-231,3],[-83,1],[-57,1],[-177,5],[-45,0],[-44,0],[-97,-2],[-52,0],[-55,-1],[-72,-1],[-66,-1],[-52,-1],[-33,1],[-36,-1],[-13,0],[-6,0],[-40,-1],[-22,-1],[-26,0],[-31,0],[-81,-2],[-37,-1],[-39,-1],[-27,1],[-40,-1],[-44,-1],[-36,-1],[-34,0],[-33,-1],[-47,0],[-42,-1],[-38,0],[-95,-1],[-25,-1],[-21,0],[-52,-2],[-68,1],[-20,-2],[-70,-1],[-39,0],[-186,-4],[-103,-1],[-127,-2],[-18,-1],[-132,-1],[-158,0],[-99,-1],[-48,-3],[-41,0],[-302,-4],[-221,-3],[-208,-3],[-2,0],[-15,0],[-22,-1],[-16,0],[-7,0],[-18,0],[-25,0],[-43,-1],[-125,-1],[-20,-1],[-21,0],[-125,-1],[-61,-1],[-61,-1],[-42,0],[-42,-1],[-17,0],[-256,-3],[-21,0],[-29,0],[-25,0],[-24,1],[-50,4],[-49,1],[-44,1],[-44,2],[-32,-1],[-22,0],[-23,0],[-249,-2],[-248,-2],[-40,0],[-69,-1],[-60,-1],[-11,0]],[[29467,35957],[-13,70],[-5,29],[-6,35],[-11,20],[-3,6],[-23,15],[-18,12],[0,40],[-1,157],[-1,283],[0,142],[0,45],[0,59],[0,185],[0,182],[0,61],[-1,147],[-2,418],[0,46],[0,44],[0,127],[1,308],[0,240],[0,58],[0,44],[1,154],[0,39],[0,68],[0,45],[0,154],[0,53],[0,45],[0,94],[0,100],[1,48],[0,4],[0,318],[0,113],[1,331],[0,67],[0,64],[0,40],[0,168],[0,46],[0,43],[-1,139],[7,392],[1,89],[1,104],[0,13],[1,43],[0,76],[1,67],[1,41],[2,208],[3,212],[0,40],[1,11],[0,35],[3,257]],[[57896,47402],[1,-65],[-2,-2],[-230,-401],[-16,-27],[-69,-120],[-16,-28],[-13,-23],[-14,-24],[-88,-153],[-28,-48],[-14,-25],[-1,0],[-77,-134],[-23,-41],[-86,-149],[-120,-207],[-46,-81],[-37,-63],[-143,-249],[-5,-9],[-33,-75],[-12,-28],[-254,-586],[-132,-304],[-78,-179],[-52,-121],[-112,-257],[-30,-70],[-254,-583],[-113,-260],[-27,-64],[-192,-442],[-1,-1],[-142,-218],[-213,-329],[-41,-63],[-232,-356],[-303,-453],[-401,-630],[-14,-22],[-110,-174]],[[54123,40338],[-61,-2],[-33,-17],[-30,-15],[-60,-31],[-49,-26],[-503,-330],[-116,-75],[-25,-19],[-20,-15],[-92,-71],[-295,-227],[-518,-447],[-106,-92],[-20,-17],[-566,-490],[-29,-25],[-712,-586],[-37,-34],[-292,-259],[-381,-297],[-30,-17],[-254,-146],[-91,-52],[-93,-54],[-1,0],[-106,-62],[-427,-245],[-161,-257],[-104,-89],[-228,-197]],[[48683,36144],[-43,-37],[-199,-224],[-76,-57],[-178,-223],[-83,262],[-49,153],[-13,41],[-284,-94],[-49,-16],[-348,-116],[-174,-57],[-211,191],[-144,130],[-186,168],[-159,143],[-19,17],[-8,7],[-233,210],[-118,-91],[-477,-369],[-607,-528],[-2,-1],[-21,-23],[-154,-158],[-675,-695],[-80,47],[-656,383],[-2,1],[-102,59],[-37,22],[-47,27],[-32,19],[-1,1],[-44,26],[-4,1],[-147,86],[-79,47],[-9,5],[-21,12],[-112,65],[-424,247],[-125,72],[-70,41],[-17,10],[-348,202],[-61,36],[-26,15],[-160,91],[-3,2],[-24,13],[-38,22],[-115,65],[-121,69],[-44,25]],[[41224,36488],[-24,14],[-214,120],[-11,6],[-14,8],[-9,5],[-85,-7],[-127,-13],[-19,-2],[-37,-4],[-69,-6],[-23,-3],[-8,-1],[-344,-34],[-345,-34],[-12,-2],[-6,0],[-44,-5],[-4,0],[-52,-5],[-49,-5],[-314,-32],[-57,-5],[-86,-9],[-451,-46],[-154,-15],[-142,-15],[-91,-9],[-117,-12],[-175,-18],[-429,-44],[-360,-37],[-157,-17],[-151,-15]],[[94815,49118],[0,-3],[-4,-52],[1,-37],[1,-21],[17,-21],[22,-10],[18,-1],[10,1],[39,8],[45,22],[25,23],[4,4],[19,39],[27,38],[23,32],[9,12],[26,30],[33,28],[22,25],[34,16],[20,-1],[15,-12],[19,-40],[3,-39],[-4,-54],[-6,-53],[-11,-63],[-17,-60],[-12,-25],[-7,-15],[-16,-21],[-15,-17],[-120,-135],[-34,-39],[-30,-28],[-17,-5],[-34,-9],[-21,-6],[-26,-6],[-17,-5],[-26,-13],[-49,-32],[-20,-18],[-31,-38],[-29,-34],[-29,-39],[-21,-36],[-30,-60],[-35,-81],[-23,-34],[-21,-5],[-28,5],[-32,-1],[-25,-44],[-16,-66],[-30,-115],[-10,-108],[-31,-117],[-26,-71],[-49,-98],[-35,-69],[-28,-65],[-6,-39],[-5,-44],[8,-76],[5,-60],[-46,-45],[-24,-15],[-27,-18],[-56,-51],[-42,-74],[-64,-105],[-52,-47],[-13,-7],[-31,-14],[-95,-97],[-122,-115],[-112,-104],[-77,-74],[-17,-17],[-4,-2],[-14,-10],[-43,-25],[-44,-14],[-46,-5],[-23,-3],[-8,-4],[-29,-14],[-46,-25],[-20,-4],[-22,-15],[-9,-26],[-42,-75],[-19,-30],[-25,-41],[-32,-55],[-23,-28],[-21,-15],[-40,-30],[-61,-36],[-57,-33],[-25,-23],[-27,-71],[-17,-13],[-27,-21],[-34,-45],[-47,-42],[-45,-44],[-18,-19],[-44,-50],[-30,-35],[-23,-25],[-16,-26],[-26,-46],[-17,-34],[-9,-25],[-2,-8],[-2,-15],[-3,-76],[2,-39],[-1,-54],[-10,-84],[-7,-48],[-10,-38],[-13,-40],[-11,-29],[-16,-45],[-1,-4],[-2,-22],[-1,-10],[1,-46],[4,-42],[3,-16],[8,-34],[0,-3],[16,-38],[21,-36],[12,-14],[0,-1],[5,-6],[38,-15],[38,17],[7,3],[43,12],[33,1],[2,0],[3,-6],[23,-42],[4,-9]],[[92607,44681],[-17,-41],[-31,-71],[-23,-55],[-9,-18],[-79,-164],[-158,-149],[-79,-74],[-65,-61],[-19,-15],[-26,-14],[-25,-12],[-35,-7],[-28,-7],[-25,-8],[-37,-8],[-25,-5],[-19,-5],[-22,-4],[-20,1],[-39,0],[-26,-12],[-32,3],[-26,-7],[-19,-12],[-22,-14],[-18,-11],[-33,-29],[-13,-33],[-5,-87],[-12,-30],[-1,-54],[-25,-31],[-19,-16],[-58,-33],[-43,-22],[-31,-11],[-38,5],[-25,-12],[-24,-33],[-24,6],[-19,7],[-2,1],[-19,-4],[-17,-9],[-20,-12],[-22,-14],[-22,-12],[-29,-12],[-28,-14],[-24,-14],[-22,-17],[-17,-11],[-19,-13],[-23,-15],[-22,-19],[-30,-29],[-18,-21],[-17,-40],[-12,-24],[-22,-28],[-8,-39],[-16,-76],[-47,-133],[-85,-130],[-217,-308],[65,-159],[67,-156],[-47,-34],[-30,-23],[-32,-19],[-18,-16],[-16,-16],[-21,-23],[-17,-19],[-22,-38],[-11,-32],[-23,-46],[-15,-19],[-26,-21],[-18,-8],[-302,-307],[-53,-168],[-30,-96],[-21,-65],[-105,-119],[-66,-130],[-78,-81],[-72,-17],[-41,-41],[-6,-6],[-13,-13],[-91,-90],[-38,-12],[-209,-82],[-98,-39],[-99,-108],[-136,-147],[-21,-12],[-52,-62],[-15,-19],[-163,-108],[-131,-99],[-22,-16],[-58,-42],[-108,-80],[-77,-52],[-22,-15],[-17,-13],[-76,-55],[-72,-52],[-30,-48],[-45,-11],[-139,-34],[-287,-70],[-33,-8],[-43,-10],[-59,-95],[-327,-159],[-23,-9],[-24,-6],[-17,-6],[-57,-1],[-70,-7],[-47,2],[-31,-4],[-30,-4],[-20,-9],[-24,-9],[-206,-78],[-47,-18]],[[86540,39186],[-116,437],[-1,1],[-27,105],[-62,207],[-3,11],[-19,61],[-105,312],[-96,254],[-31,95],[-20,56],[-143,390],[-30,87],[-21,58],[-20,55],[-55,135],[-20,57],[-14,41],[-63,180],[0,2],[-14,40],[-32,90],[-10,31],[-5,12],[-106,287],[-22,57],[-32,86],[-58,158],[-104,281],[-33,90],[-54,144],[-88,238],[-21,56],[-25,70],[-6,14],[-27,73],[-2,5],[-42,110],[-41,106],[-58,152],[-64,167],[-33,76],[123,120],[21,21],[96,93],[29,29],[218,213],[13,13],[82,79],[20,18],[99,93],[44,41],[25,26],[43,40],[2,2],[19,18],[19,18],[47,44],[20,19],[66,63],[28,26],[25,24],[306,289],[2,2],[-35,60],[-38,66],[-20,43],[-37,65],[-24,44],[-24,43],[-24,45],[-24,48],[-19,41],[-18,37],[-12,28],[-16,33],[-13,28],[-20,40],[-129,253],[-184,360],[-93,187],[-80,161],[-48,96],[-63,126],[-199,400],[0,1],[-21,24],[-24,-16],[-32,23],[-61,2],[-5,40],[-13,23],[10,31],[-12,39],[11,38],[24,20],[-10,35],[-32,45],[-4,61],[-15,32],[-15,36],[-16,20],[-15,32],[-2,60],[-21,33],[-8,91],[-19,19],[-20,11],[-33,-28],[-16,26],[-23,65],[0,52],[-6,41],[-27,19],[-16,25],[-16,47],[-11,32],[-18,-1],[-18,27],[-3,4],[-38,42],[-19,56],[-14,33],[-23,-3],[-18,8],[-22,35],[-18,29],[-25,53],[-41,10],[-27,-5],[-19,11],[-1,4],[-12,26],[-1,42],[13,95],[3,78],[16,30],[-3,47],[-27,22],[-20,7],[-59,-11],[-32,5],[-17,8],[-12,30],[0,89],[1,74],[-10,42],[-13,39],[-7,33],[1,45],[-22,30],[-47,37],[-18,30],[10,48],[-26,57],[-25,30],[-16,16],[-23,-4],[-14,-36],[-6,-39],[-9,-40],[-12,-32],[-19,-6],[-29,12],[-22,20],[-19,26],[-11,37],[-4,39],[-3,42],[-15,19],[-23,22],[-23,15],[-19,4],[-29,1],[-24,-10],[-37,-18],[-22,2],[-20,16],[-3,47],[5,36],[9,55],[0,36],[-11,44],[-7,38],[-12,40],[-29,26]],[[64954,51972],[0,-159],[10,-35],[10,-38],[2,-47],[3,-47],[-4,-44],[0,-46],[1,-68],[-2,-43],[0,-43],[10,-47],[-6,-38],[-9,-42],[-3,-36],[-10,-49],[-6,-41],[-7,-60],[-9,-54],[-4,-47],[-5,-43],[2,-40],[-8,-36],[-12,-26],[-9,-39],[4,-44],[12,-32],[6,-39],[4,-38],[4,-43],[4,-41],[-3,-38],[-19,-40],[-4,-37],[13,-36],[21,-32],[-7,-92],[-9,-89],[-5,-70],[-2,-41],[-2,-43],[-4,-210],[-2,-78],[1,-40],[8,-87],[9,-74],[0,-26],[-2,-102],[-2,-48],[-4,-136],[-2,-78],[0,-21],[0,-37],[-4,-39],[-16,-62],[-29,-101],[-5,-37],[-5,-39],[-6,-39],[-6,-46],[-10,-47],[-10,-47],[-31,-149],[-22,-95],[-12,-56],[-27,-123],[-19,-82],[-13,-42],[-23,-74],[-24,-77],[-19,-60],[-10,-32],[-9,-30],[-72,-215],[-10,-33],[-8,-52],[-3,-35],[-1,-46],[-1,-45],[-7,-54],[-6,-44],[-6,-36],[-8,-49],[-85,-344],[3,-10],[27,-88],[12,-40],[-148,-258],[-30,-87],[-24,-70],[7,-40],[-19,-28],[-6,-42],[-7,-36],[-5,-23],[-4,-16],[-2,-38],[15,-62],[11,-54],[9,-67],[-1,-37],[-1,-8],[-6,-59],[-37,-232],[-6,-39],[-6,-39],[-9,-61],[-13,-84],[-37,-243],[-13,-91],[-1,-4],[-20,-135],[-30,-184],[-6,-61],[-14,-30],[-15,-36],[-8,-67],[-1,-49],[0,-38],[13,-52],[11,-29],[-29,-37],[-16,-16],[-24,-15],[-20,-13],[-14,-33],[1,-52],[10,-34],[14,-22],[14,-21],[-19,-20],[-19,-19],[-16,-18],[-16,-14],[-13,-27],[11,-27],[10,-34],[-1,-38],[34,9],[26,7],[71,20],[27,9],[40,18],[41,16],[36,15],[19,8],[143,11],[153,60],[131,51],[20,8],[65,33],[19,7],[20,8],[65,-1],[34,-4],[51,5],[52,20],[45,21],[35,15],[31,12],[40,11],[41,11],[30,7],[44,21],[39,19],[25,7],[36,13],[40,15],[48,17],[32,10],[33,13],[32,20],[29,17],[64,21],[38,9],[58,13],[26,6],[72,66],[36,23],[18,7],[19,5],[27,-4],[20,-2],[19,3],[27,12],[25,10],[29,13],[33,14],[26,10],[29,10],[63,20],[41,-61],[21,-32],[19,-29],[35,-52],[2,-2],[34,-51],[16,21],[157,75],[67,14],[10,2],[37,-12],[29,-9],[8,-3],[8,-5],[58,-66],[36,-37],[29,-30],[2,-2],[67,-75],[3,-3],[7,-9],[2,-1],[1,-1],[47,-61],[2,-2],[0,-1],[40,-56],[1,-2],[13,-20],[1,-1],[1,-2],[113,-194],[1,-2],[1,-1],[14,-27],[33,-63],[1,-3],[1,-3],[19,-41],[17,-27],[31,-33],[85,-55],[42,-28],[43,-8],[1,0],[2,0],[49,-1],[20,0],[68,-2],[2,0],[119,11],[1,1],[3,0],[3,1],[2,1],[29,15],[28,5],[204,-7],[63,-77],[-2,-46],[-3,-18],[-3,-19],[-9,-34],[-3,-39],[-9,-38],[4,-41],[0,-42],[-10,-34],[-16,-51],[-7,-38],[-9,-33],[-8,-33],[-6,-36],[-20,-35],[-14,-25],[-14,-35],[-13,-27],[-12,-31],[-9,-44],[-11,-32],[1,-42],[-11,-30],[-3,-36],[3,-40],[5,-39],[11,-33],[6,-42],[9,-32],[-2,-58],[4,-42],[5,-38],[6,-36],[9,-33],[17,-60],[20,-51],[12,-32],[20,-28],[4,-35],[5,-55],[1,-38],[13,-59],[7,-36],[4,-51],[11,-31],[9,-33],[5,-41],[13,-25],[18,-12],[9,-33],[8,-38],[24,-40],[8,-24],[2,-9],[16,-21],[7,-9],[158,-14],[144,-1],[93,0]],[[71001,37782],[-17,-13],[-51,-39],[-51,-38],[-22,-17],[-33,-24],[-21,-15],[-22,-16],[-17,-13],[-30,-21],[-20,-14],[-20,-15],[-17,-13],[-4,-2],[-59,-45],[-81,-59],[-40,-30],[-108,-79],[-137,-104],[-73,-56],[-72,-55],[-73,-56],[-73,-56],[-46,-36],[-91,-69],[-28,-22],[-16,-13],[-26,-21],[-23,-17],[-42,-32],[-42,-32],[-109,-83],[-28,-21],[-28,-21],[-12,-10],[-65,-49],[-455,-347],[-59,-44],[-29,-22],[-101,-79],[-127,-99],[-83,-64],[-46,-36],[-51,-40],[-22,-17],[-16,-13],[-63,-49],[-39,-30],[-91,-73],[-40,-31],[-19,-14],[-74,-56],[-47,-35],[-1,-1],[-22,-16],[-47,-35],[-20,-15],[-85,-69],[-23,-19],[-32,-19],[-46,-34],[-21,-16],[-42,-31],[-29,-18],[-29,-18],[-21,-14],[-100,-62],[-23,-15],[-122,-76],[-46,-28],[-20,-13],[-58,-36],[-26,-18],[-52,-38],[-128,-102],[-35,-27],[-27,-22],[-62,-48],[-97,-79],[-20,-15],[-77,-62],[-34,-27],[-46,-36],[-65,-52],[-31,-23],[-19,-14],[-18,-14],[-19,-14],[-71,-53],[-87,-66],[-111,-83],[-66,-50],[-59,-41],[-24,-17],[-23,-16],[-64,-45],[-64,-45],[-22,-15],[-36,-25],[-37,-25],[-19,-14],[-83,-58],[-109,-68],[-12,-15],[-3,-3],[-2,1],[-18,15],[-20,5],[-19,-9],[-19,3],[-13,-1],[-4,-1],[-8,0],[-11,-43],[-4,-48],[0,-34],[1,-14],[-4,-59]],[[65488,33577],[-3,-44],[-1,-14],[-3,-5],[-10,-18],[-3,-3],[-7,-8],[-2,-1],[-4,0],[-10,0],[-11,8],[-5,4],[-56,52],[-40,40],[-17,17],[-9,12],[-18,15],[-7,1],[-44,-20],[-2,0],[-1,-1],[-35,-19],[-11,-12],[-17,-46],[0,-5],[-2,-15],[-9,-64],[-5,-16],[-12,-17],[-1,-1],[-7,-4],[0,-1],[-25,-5],[-61,2],[-24,6],[-23,10],[-22,16],[-17,20],[-17,9],[-24,2],[-148,-9],[-8,-1],[-28,-7],[-1,0],[-6,-6],[-29,-27],[-78,-103],[-12,-19],[-25,-37],[-11,-16],[-12,-12],[-14,-6],[-39,-3],[-8,-2],[-47,-12],[-20,-5],[-37,-19],[-90,-10],[-64,-17],[-50,-24],[-54,-25],[-12,-6],[-14,-18],[-74,-94],[-8,-8],[-29,-11],[-10,-3],[-61,-18],[-7,-2],[-21,0],[-5,0],[-8,12],[1,19],[-2,12],[-2,3],[-29,53],[-8,13],[-24,38],[-1,2],[-62,78],[-7,6],[-3,2],[-4,0],[-12,2],[-26,-14],[-12,-17],[-41,-70],[-10,-23],[0,-1],[-14,-39],[-8,-60],[-1,-19],[0,-2],[-2,-54],[2,-22],[1,-76],[-3,-48],[-2,-10],[-9,-19],[-6,-8],[-23,-9],[-13,-6],[-22,-2],[-3,-1],[-104,2],[-5,0],[-25,7],[-2,1],[-8,6],[-7,12],[-3,4],[-15,10],[-10,3],[-39,-21],[-12,-9],[-7,-11],[0,-1],[-57,-127],[-1,-3],[-5,-12],[-4,-27],[-1,-4],[-4,-14],[-9,-18],[-1,0],[-47,-47],[-27,-12],[-42,-20],[-1,0],[-1,0],[-14,-3],[-54,10],[-19,4],[-35,2],[-32,3],[-51,4],[-71,2],[-117,47],[-9,3],[-11,4],[-26,-12],[-1,0],[-14,-22],[-31,-55],[-6,-15],[-7,-21],[-6,-51],[2,-99],[0,-39],[-2,-25],[-2,-11],[-4,-7],[-39,-37],[-44,-5],[-3,0],[-15,-1],[-20,5],[-9,0],[-29,8],[-3,1],[-33,9],[-13,7],[-17,19],[-7,7],[-8,0],[-7,1],[-31,-6],[-2,-1],[-25,-12],[-13,-11],[-8,-8],[-23,-25],[-19,-40],[-2,-4],[-3,-10],[1,-13],[6,-15],[22,-33],[2,-3],[6,-19],[-1,-41],[-9,-34],[-4,-6],[-11,-4],[-21,0],[-115,15],[-8,5],[-17,10],[-34,29],[0,4],[-18,4],[-129,-27],[-10,-2],[-49,-12],[-94,-22],[-14,-4],[-9,-14],[-1,-17],[2,-20],[9,-15],[13,-22],[10,-25],[2,-5],[10,-29],[7,-19],[6,-35],[0,-17],[-8,-10],[-7,-5],[-1,0],[-10,1],[-10,6],[-9,12],[-5,11],[-4,11],[0,4],[-16,34],[-12,25],[-23,46],[-19,31],[-17,20],[-39,32],[-35,29],[-5,4],[-17,11],[-42,29],[-12,7],[-27,19],[-5,3],[-10,24],[-63,153],[-31,79],[-22,57],[-48,125],[-28,73],[-14,33],[-1,3]],[[61240,32508],[7,9],[8,10],[20,33],[20,45],[8,20],[4,11],[22,49],[2,3],[14,31],[14,32],[22,55],[2,5],[20,60]],[[61403,32871],[10,10],[14,15],[3,3],[17,22],[119,-5],[49,58],[51,42],[48,51],[78,87],[37,50],[16,21],[21,30],[10,19],[140,277],[35,62],[5,8],[5,20],[-59,111],[-3,7],[-3,11],[33,73],[3,27],[3,21],[33,93],[54,90],[75,48],[71,17],[39,21],[22,12],[157,125],[57,49],[38,59],[55,130],[53,122],[64,149],[61,163],[2,4],[1,3],[32,68],[29,62],[94,208],[46,181],[16,158],[-17,177],[-2,55],[-53,141],[-36,119],[-26,147],[-13,90],[-8,203],[-11,118],[-1,146],[1,202],[3,372],[-23,139],[-22,203],[-4,89],[11,84],[74,492],[57,283],[1,9],[30,137],[43,169],[14,132],[72,215],[45,95],[24,47],[104,168],[48,103],[87,169],[121,139],[46,59],[83,366],[48,214],[36,125],[57,228],[34,177],[-39,145],[3,41],[-4,36],[-4,24],[-2,14],[-2,9],[-14,58]],[[63795,41592],[-12,20],[-14,21],[-18,35],[-28,112],[-63,30],[-114,50],[-103,66],[-66,79],[-126,223],[-31,73],[-83,86],[-127,207],[-49,105],[-71,158],[-22,74],[-18,61],[-53,183],[-55,189],[-129,402],[-24,39],[-3,4],[-2,4],[-2,5],[-2,5],[-1,3],[-13,40],[-1,2],[-2,5],[-1,6],[-28,119],[-1,6],[-15,74],[-1,5],[-26,246],[-11,74],[-22,144],[-6,34],[-11,52],[-13,65],[-6,85],[9,114],[3,25],[1,3],[1,6],[1,6],[0,3],[20,90],[1,2],[1,4],[50,191],[1,2],[0,2],[28,131],[6,32],[3,6],[37,93],[41,100],[43,174],[1,52],[6,231],[12,156],[6,97],[12,217],[17,105],[18,71],[19,31],[17,132],[-4,151],[4,91],[21,121],[32,108],[13,78],[17,123],[1,77],[-6,49],[-18,146],[0,270],[7,121],[11,83],[-9,90],[-13,36],[-4,38],[-67,158],[-51,80],[-20,29],[-68,40],[-39,40],[-73,153],[-72,142],[-38,53],[-6,4],[-45,106],[-22,84],[-36,91],[-23,83],[-17,97],[0,74],[0,17],[-20,157],[-14,73],[-6,134],[-25,100],[2,17],[-31,275],[-28,38],[-9,104],[7,91],[7,39],[8,34],[9,39]],[[14218,51926],[4,-62],[0,-9],[-3,-1095],[0,-25],[0,-128],[-1,-316],[7,-174],[1,-148],[0,-104],[0,-43],[0,-171],[0,-58],[0,-87],[0,-158],[0,-179],[0,-88],[0,-3],[0,-112],[1,-223],[0,-71],[0,-31],[0,-18],[0,-186],[0,-210],[1,-129],[0,-254],[-1,-123],[0,-61],[0,-117],[0,-56],[1,-217],[0,-165],[0,-156],[0,-99],[0,-111],[0,-125],[1,-159],[0,-115],[0,-66],[0,-110],[0,-95],[0,-41],[4,-37],[-1,-76],[-1,-97],[0,-299],[0,-159],[0,-337],[1,-129],[0,-49],[0,-82],[0,-8],[0,-477],[0,-1],[-5,-444],[0,-63],[-4,-305],[-1,-92],[0,-66],[-3,-252],[-5,-426],[-1,-167],[-3,-277],[-1,-93],[-1,-41],[-2,-280],[-1,-55],[-1,-69],[0,-45],[-3,-258],[0,-233],[0,-11],[0,-103],[0,-243],[-1,-47],[0,-46],[0,-126],[0,-127],[0,-21],[0,-19],[-1,-221],[-1,-511],[-1,-197],[0,-61],[0,-41],[0,-163],[0,-203],[0,-56],[0,-216],[0,-263],[0,-184],[0,-59],[1,-492],[0,-84],[1,-227],[0,-58],[1,-391],[2,-16],[6,-54],[23,-322],[-3,-58],[-4,-126],[-10,-188],[-1,-21],[-22,-468],[-2,-201],[0,-177],[0,-11],[0,-20],[1,-14],[-2,-176],[-1,-280],[0,-108],[-1,-27],[0,-41],[-1,-93],[0,-15],[0,-85],[0,-85],[0,-11],[-1,-33],[0,-32],[0,-123],[1,-44],[0,-37],[-3,-49],[-1,-18],[-1,-12]],[[14180,33996],[-26,-3],[-2,0],[-68,9],[-244,5],[-33,-5],[-2,-1],[-55,-4],[-45,-1],[-20,-2],[-139,-16],[-35,-4],[-31,4],[-23,3],[-146,17],[-23,-5],[-260,29],[-40,1],[-29,0],[-21,4],[-250,21],[-90,11],[-211,15],[-46,-2],[-200,14],[-74,-16],[-159,-21],[-1,-1],[-54,-4],[-64,11],[-114,14],[-94,17],[-123,11],[-147,-7],[-101,-9],[-23,-1],[-26,1],[-135,5],[-109,4],[-28,3],[-67,5],[-54,3],[-392,20],[-22,-5],[-162,-3],[-45,-2],[-44,-3],[-30,-1],[-5,0],[-482,-19],[-35,4],[-27,3],[-217,19],[-114,14],[-28,1],[-24,3],[-19,2],[-27,0],[-3,0],[-63,2],[-56,0],[-51,0],[-58,0],[-117,-2],[-209,1],[-69,3],[-71,3],[-23,1],[-30,0],[-23,1],[-29,0],[-261,8],[-68,0],[-138,-3],[-85,2],[-34,2],[-43,0],[-389,2],[-6,0],[-22,-1],[-30,0],[-2,0],[-31,0],[-16,0],[-35,-1],[-21,1],[-3,0],[-86,3],[-25,1],[-21,2],[-72,-6],[-54,8],[-28,0],[-22,1],[-35,-6],[-26,4],[-18,-3],[-37,3],[-113,-10],[-156,14],[-53,4]],[[6363,34168],[-1,68],[-2,62],[-3,100],[-2,78],[-11,344],[-3,126],[-7,376],[-11,227],[-6,237],[-2,90],[0,22],[-2,47],[-6,214],[0,123],[-10,363],[-5,159],[-10,293],[2,73],[-17,469],[-2,175],[-6,202],[0,2],[-1,47],[-4,81],[1,54],[0,3],[-2,39],[-3,66],[-2,51],[-1,93],[-1,0],[-4,103],[-3,74],[-3,126],[-7,250],[-1,41],[-3,108],[-2,63],[6,59],[-2,41],[-1,43],[-3,174],[-2,60],[-2,86],[-2,108],[-7,70],[-1,122],[-2,141],[-7,248],[-4,189],[-1,37],[-1,37]],[[6194,40632],[-1,55],[-15,587],[-1,70],[-3,174],[-2,93],[-3,157],[-2,84],[-11,430],[0,1],[-3,151],[-3,117],[-9,375],[0,4],[-13,560],[-3,116],[-9,449],[-6,253],[-1,92],[-2,96],[-1,94],[-2,79],[0,11],[-1,55],[0,14],[-4,205],[-1,78],[-1,38],[0,11],[-6,314],[-5,249],[-1,47],[-4,106],[-3,35],[71,146],[112,227],[91,188],[163,332],[46,95],[28,58],[63,128],[33,69],[1,1],[56,115],[9,18],[5,11],[17,37],[43,95],[100,220],[31,68],[50,110],[56,121],[103,224],[43,93],[34,81],[19,45]],[[22372,42643],[0,-192],[1,-37],[0,-41],[0,-22],[0,-245],[0,-18],[-3,-341],[0,-12],[4,-48],[0,-29],[0,-103],[-2,-209],[2,-137],[0,-518],[0,-293],[1,-41],[2,-328],[1,-198],[0,-246],[0,-6],[0,-499],[1,-80],[0,-81],[0,-71],[0,-240],[0,-10],[0,-316],[0,-43],[0,-66],[-1,-37],[0,-26],[-1,-17],[0,-52],[-1,-35],[0,-24],[-1,-59],[-1,-62],[0,-64],[-92,-206],[-118,-257],[-130,-284],[-15,-29],[-16,-34],[-12,-27],[-13,-41],[-21,-48],[-30,-54],[-42,-91],[-14,-30],[-29,-65],[-36,-82],[-24,-55],[-30,-61],[-27,-59],[-66,-146],[-22,-49],[-65,-149],[-16,-30],[-12,-26],[-107,-233],[-131,-289],[-18,-49],[-16,-28],[-72,-156],[-53,-119],[-24,-58],[-14,-31],[-15,-29],[-68,-151],[-15,-33],[-28,-61],[-16,-35],[-48,-108],[-44,-96],[-75,-165],[-118,-263],[-54,-117],[-14,-35],[-6,-13],[-7,-15],[-27,-56],[-4,-10],[-29,-64],[-30,-65],[-14,-31],[-95,-213],[-20,-42],[-17,-38],[-35,-78],[-59,-132],[-1,-1],[-14,-32],[-18,-41],[-44,-94],[-22,-51],[-17,-38],[-72,-160],[-41,-90],[-22,-48],[-68,-147],[-27,-62],[-16,-35],[-15,-34],[-28,-60],[-32,-71],[-32,-72],[-21,-46],[-21,-46],[-43,-93],[-51,-114],[-29,-66],[-21,-47],[-13,-29],[-18,-42],[-35,-74],[-57,-122],[-52,-112],[-37,-77],[-23,-47],[-34,-70],[-30,-64],[-51,-111],[-19,-41],[-15,-29],[-13,-28],[-60,-127],[-62,-133],[-26,-58],[-32,-68],[-13,-29],[-33,-69],[-14,-29],[-31,-66],[-57,-121],[-40,-84],[-22,-49],[-47,-100],[-34,-73],[-40,-84],[-42,-91],[-28,-59],[-20,-41],[-50,-107],[-35,-74],[-12,-26],[-75,-160],[-89,-190],[-2,-5],[-11,-23]],[[18344,29001],[-59,48],[-15,29],[-15,8],[-48,2],[-68,-3],[-63,-5],[-77,-5],[-68,-81],[-23,-13],[-13,4],[-11,3],[-2,5],[-4,8],[-6,13],[-6,13],[-3,54],[-3,96],[-1,61],[-1,45],[-37,-4],[-34,-19],[-20,-29],[-19,-40],[-16,-75],[-10,-90],[-14,-73],[-26,-24],[-31,-27],[-26,-7],[-38,-5],[-11,5],[-6,39],[-2,55],[-9,59],[-13,53],[-12,35],[-36,60],[-97,115],[-37,76],[-25,80],[-18,31],[-36,37],[-31,3],[-34,-16],[-85,-42],[-28,6],[-41,11],[-29,26],[-21,57],[-39,77],[-40,65],[-59,67],[-44,54],[-115,107],[-87,90],[-124,137],[-33,61],[-10,33],[-68,251],[-31,164],[-9,45],[-14,96],[-14,92],[11,56],[8,46],[17,67],[14,55],[18,58],[28,64],[58,106],[64,91],[20,52],[11,32],[5,13],[7,40],[-9,52],[-22,29],[-26,37],[-65,53],[-43,35],[-36,22],[-45,6],[-25,-14],[-37,-25],[-39,-60],[-26,-52],[-28,-47],[-30,-7],[-23,8],[-33,53],[-33,106],[-17,45],[-28,72],[-28,96],[-6,23],[-15,47],[-9,53],[3,210],[16,73],[25,114],[2,8],[8,44],[6,85],[-36,68],[-34,-15],[-36,-19],[-38,-60],[-4,-10],[0,-3],[-31,-81],[-11,-31],[-2,-3],[-8,-22],[-26,-77],[-49,-46],[-43,-15],[-48,-7],[-47,49],[-6,94],[-1,20],[4,54],[4,118],[0,10],[1,5],[0,34],[1,26],[2,36],[1,80],[-9,55],[-3,10],[-3,24],[-32,98],[-19,16],[-47,45],[-70,54],[-42,30],[-22,24],[-44,50],[-77,97],[-41,60],[-26,41],[-10,36],[-6,55],[-3,71],[-1,95],[-1,32],[-2,27],[-6,30],[-12,43],[-18,43],[-18,26],[-42,34],[-46,41],[-141,121],[-67,59],[-37,52],[-39,54],[-29,32],[-34,31],[-32,16],[-24,7],[-6,-20],[-25,-85],[-34,-111],[-54,-18],[-111,-102],[-79,-61],[-58,-28],[-57,7],[-8,1]],[[14185,33962],[-5,34]],[[63795,41592],[-5,-49],[-13,-30],[-18,-8],[-4,-3],[-23,-13],[-19,-8],[-20,-1],[-25,-8],[-18,5],[-16,14],[-14,28],[-16,24],[-24,26],[-24,31],[-16,21],[-16,20],[-19,25],[-20,21],[-17,16],[-22,20],[-24,20],[-16,13],[-18,16],[-13,29],[-20,6],[-18,-4],[-18,-7],[-18,-5],[-23,12],[-22,19],[-19,18],[-17,16],[-17,8],[-11,-32],[-16,-18],[-17,-14],[-20,-11],[-39,-19],[-26,-7],[-9,-1],[-18,-3],[-43,-2],[-31,-3],[-23,-2],[-13,26],[-24,30],[-16,28],[-33,15],[-19,3],[-26,1],[-20,-2],[-45,-21],[-21,-8],[-19,-8],[-26,-13],[-21,-11],[-24,-13],[-28,-16],[-24,-14],[-17,-11],[-19,-13],[-39,-30],[-17,-10],[-21,-6],[-19,3],[-22,15],[-21,24],[-29,26],[-18,13],[-19,15],[-22,8],[-27,13],[-24,15],[-21,15],[-17,7],[-18,-13],[-24,-26],[-18,-18],[-33,-16],[-27,-12],[-19,-8],[-25,-9],[-38,-15],[-33,-15],[-33,-5],[-24,-2],[-18,-1],[-22,-4],[-22,-4],[-19,-2],[-39,5],[-20,3],[-24,6],[-29,10],[-20,10],[-26,15],[-36,20],[-18,12],[-23,13],[-19,8],[-18,1],[-21,0],[-21,-3],[-61,-6],[-19,2],[-20,6],[-53,19],[-18,5],[-18,-1],[-18,-8],[-18,-18],[-14,-21],[-18,-21],[-11,-7],[-8,-6],[-32,-13],[-42,-17],[-20,-8],[-32,-12],[-21,-8],[-17,-8],[-19,-10],[-22,-12],[-36,-16],[-38,-18],[-64,-30],[-18,-8],[-25,-10],[-18,-45],[-4,-43],[-14,-22],[-1,-1],[-24,-28],[-25,-11],[-27,7],[-3,-1],[-20,-6],[-2,0],[-74,-13],[-1,-1],[-73,-11],[-2,-1],[-23,-7],[-1,0],[-9,-2],[-5,-1],[-4,-1],[-98,-21],[-43,-8],[-31,-17],[-87,-69],[-98,-79],[-12,-30],[-24,-62],[-41,-104],[-12,-37],[-2,-6],[-1,-66],[-1,-17],[-6,-16],[-57,-93],[-19,-15],[-43,-10],[-4,-1],[-23,-4],[-13,7],[-22,29],[-1,2],[-15,36],[-17,53],[-11,28],[-35,56],[-27,33],[-12,6],[-54,9],[-3,0],[-10,2],[-6,-5],[-1,-1],[-2,-25],[-3,-10],[-2,-5],[-6,-10],[-9,-6],[-29,-5],[-12,4],[-38,33],[-1,0],[0,1],[-2,15],[-10,14],[-42,52],[-1,1],[-43,59],[-34,37],[-44,35],[-29,25],[-24,-8],[-131,-38],[-145,-42],[-86,-27],[-349,-179],[-183,-95],[-276,-146],[-112,-53],[-75,-42],[-270,-125],[-78,-30],[-265,-108],[-109,-42],[-99,-38],[-7,-3],[-73,-28],[-35,-13],[-381,-143],[-278,-106],[-234,-88],[-27,-10],[-75,-28],[-26,-4],[-325,-133],[-24,-10],[-294,-118],[-50,-22],[-128,-53],[-258,-113],[-151,-68],[-118,-68],[-105,-57],[-381,-227]],[[54252,38920],[-1,136],[-3,419],[-1,38],[-2,597],[0,40],[-1,72],[-4,12],[-9,27],[-54,49],[-16,15],[-38,13]],[[86540,39186],[-75,-60],[-115,-20],[-182,-53],[-70,-20],[-139,-49],[-189,-11],[-161,-74],[-96,1],[-24,0],[-105,2],[-168,-81],[-106,-121],[-130,-2],[-137,-58],[-29,-13],[-38,8],[-19,-5],[-128,-88],[-169,-124],[-51,-113],[-72,-75],[-43,-9],[-47,-10],[-9,-2],[-10,-2]],[[84228,38207],[-1,0],[-268,-110],[-271,-107],[-28,-12],[-172,-49],[-18,-3],[-7,-2],[-20,4],[-34,-4],[-35,-11],[-26,-6],[-22,-16],[-71,-31],[-20,-3],[-42,-1],[-47,-8],[-36,-12],[-34,-20],[-24,-5],[-51,-43],[-38,-21],[-32,-11],[-30,-10],[-37,-50],[-24,-32],[-29,-16],[-25,-12],[-27,-20],[-16,-16],[-25,-36],[-20,-31],[-13,-28],[-14,-28],[-20,-30],[-17,-30],[-8,-32],[-9,-46],[-18,-22],[-416,-274],[-32,-33],[-31,-44],[-25,-82],[-7,-48],[-22,-41],[-25,-43],[-16,-29],[-17,-18],[-18,-19],[-54,-15],[-23,-22],[-16,-16],[0,-90],[-57,-40],[-25,-26],[-139,-109]],[[81676,36348],[-31,37],[-143,186],[-41,53],[-55,71],[-138,177],[-37,48],[-61,81],[-4,5],[-133,176],[-94,127],[-185,249],[-31,44],[-42,59],[-109,142],[-99,125],[-18,18],[0,1],[-60,79],[-7,9],[-130,173],[-223,298],[-81,102],[-22,27],[-203,280],[-58,71],[-77,100],[-46,60],[-72,94],[-99,176],[-32,58],[-72,130],[-20,37],[-19,35],[-5,8],[-34,62],[-23,41],[-43,78],[-37,68],[-12,24],[-16,32],[-17,35],[-13,24],[-11,20],[-33,61],[-3,7],[-26,47],[-21,39],[-16,31],[-13,24],[-146,265],[-70,125],[-326,581],[-20,41],[-1,0],[-28,56],[-77,118],[-120,221],[-117,210],[-4,6],[-85,156],[-38,64],[-89,165],[-1,3],[-22,37],[-23,43],[-38,64],[-16,30],[-33,65],[-9,17],[-40,74],[-13,27],[-29,56]],[[6194,40632],[-364,-18],[-15,-1],[-8,0],[-20,-1],[-22,-1],[-24,1],[-25,1],[-170,-3],[-266,-6],[-473,-9],[-72,-2],[-22,0],[-117,-3],[-24,-1],[-25,1],[-25,0],[-110,-1],[-32,-1],[-20,-1],[-20,-1],[-21,0],[-22,-1],[-21,0],[-23,0],[-15,-1],[-56,-3],[-12,0],[-32,-1],[-57,0],[-15,-1],[-21,0],[-28,-2],[-29,-1],[-25,-1],[-22,1],[-31,0],[-24,-1],[-39,-3],[-30,0],[-20,-2],[-100,-2],[-61,-2],[-40,-1],[-25,-1],[-30,-1],[-27,1],[-43,-2],[-65,-2],[-36,0],[-5,0],[-19,-1],[-21,-1],[-12,-1],[-8,-1],[-44,-3],[-7,-1],[-25,0],[-277,-3],[-174,-4],[-38,-2],[-50,-1],[-36,0],[-55,1],[-9,0],[-22,0],[-19,0],[-35,0],[-104,-2],[-258,-4],[-30,0],[-4,0],[-48,-2],[-65,-1],[-14,0],[-31,-2],[-4,0],[-31,0],[-17,0],[-10,-1],[-55,-1],[-76,-5],[-100,4],[-232,-4],[-52,-2],[-119,-2],[-151,-3],[-19,0],[-20,-1],[-5,-1],[-52,-1],[-28,1],[-35,-1],[-44,-1],[-123,-3],[-211,-4],[-235,-4],[-150,-2],[-36,-1],[-138,-1]],[[17,40499],[-6,843],[-5,880],[0,65],[0,353],[0,116],[0,238],[0,1713],[0,153],[0,1405],[0,405],[0,147],[0,108],[0,91],[0,2046],[0,1212]],[[91297,31807],[-16,-16],[-2,-1],[-49,-45],[-15,-12],[-89,-79],[-40,-35],[-66,-70],[-29,-26],[-53,-51],[-58,-55],[-26,-23],[-103,-92],[-52,-48],[-37,-37],[-24,-23],[-21,-20],[-25,-21],[-19,-14],[-23,-19],[-19,-4],[-19,-28],[-42,-35],[-22,-19],[-20,-1],[-16,-20],[-19,-27],[-35,-30],[-28,-23],[-21,-18],[-40,-38],[-18,-16],[-29,-34],[-18,-21],[-18,-19],[-40,-37],[-39,-39],[-17,-15],[-34,-38],[-53,-62],[-18,-22],[-54,-67],[-97,-121],[-46,-57],[-47,-58],[-50,-61],[-50,-61],[-41,-53],[-102,-131],[-16,-20],[-39,-48],[-46,-54],[-19,-25],[-48,-64],[-38,-52],[-18,-24],[-4,-5],[-19,-26],[-23,-31],[-39,-54],[-40,-54],[-20,-27],[-20,-27],[-30,-40],[-20,-26],[-20,-26],[-24,-33],[-23,-30],[-47,-60]],[[88945,29239],[-258,348],[-37,49],[-20,25],[-48,65],[-52,70],[-19,22],[-17,22],[-26,36],[-32,39],[-3,4],[-48,68],[-17,24],[-15,21],[-15,20],[-36,43],[-24,32],[-32,42],[-20,25],[-57,75],[-70,91],[-56,71],[-19,25],[-39,53],[-13,17],[0,1],[-14,19],[-22,28],[-103,130],[-82,110],[-2,40],[18,49],[98,265],[17,35],[17,38],[12,37],[12,43],[11,35],[12,42],[9,31],[12,69],[3,44],[3,37],[2,36],[3,57],[3,43],[3,46],[3,47],[3,61],[3,34],[2,27],[5,47],[4,39],[30,6],[15,3],[15,3],[80,14],[35,6],[51,3],[45,23],[20,10],[3,16],[-51,-5],[-33,3],[-34,0],[-2,0],[-22,-5],[-21,17],[-24,4],[-10,55],[-10,35],[-7,36],[2,39],[14,41],[1,37],[-15,26],[-16,16],[-14,34],[-5,8],[-13,19],[-14,25],[-18,34],[1,33],[0,3],[8,46],[10,35],[4,31],[1,4],[-18,19],[-1,1],[-26,7],[-30,12],[-21,22],[-16,30],[-35,57],[-19,32],[-14,26],[-15,27],[-15,24],[-14,25],[-18,33],[-28,54],[-19,35],[-16,31],[-13,23],[-16,29],[-28,52],[-19,38],[-21,42],[-8,15],[-8,15],[-26,52],[-26,58],[-27,61],[-19,40],[-15,31],[-14,26],[-22,43],[-29,54],[-49,94],[-4,7],[-16,32],[-26,49],[-14,25],[-32,1],[-18,7],[7,44],[12,34],[2,56],[-1,39],[0,51],[-259,-165],[-104,-84],[-30,-24],[-118,-93],[-108,-78],[-12,-7],[-29,-17],[-19,-17],[-22,-13],[-17,-16],[-17,-9],[-23,-22],[-25,-19],[-18,-9],[-18,-16],[-21,-9],[-21,-21],[-10,-6],[-9,-5],[-47,-13],[0,2],[-2,5],[-2,5],[-1,6],[-1,6],[-1,6],[-1,6],[-4,30],[-4,28],[0,2],[-1,6],[0,4],[-2,24],[0,3],[-1,6],[0,21],[0,1],[-1,11],[-6,230],[-16,130],[-43,104],[-39,90],[-32,64],[-44,21],[-12,15],[-25,30],[-10,47],[-3,19],[-8,36],[-27,105],[-22,46],[-34,70],[-3,8],[-147,307],[-14,29],[-1,1],[-34,76],[-2,3],[-1,2],[-65,307],[-3,12],[-11,57],[-9,40],[-31,116],[-31,112],[-4,14],[-1,10],[-5,40],[-3,13],[-4,15],[0,46],[0,13],[-1,11],[-10,121],[3,22],[1,28],[1,79],[1,37],[0,2],[-1,37],[-1,14],[-2,7],[-13,48],[-18,42],[-4,12],[-19,20],[-23,25],[-2,2],[-40,23],[-19,5],[-41,10],[-31,-12],[-27,-34],[-2,-2],[0,-2],[-14,-90],[-3,-15],[-4,-23],[3,-20],[-16,-159],[-19,-34],[-2,-9],[-23,-57],[-3,-7],[-6,-6],[-52,-49],[-37,-37],[-36,-24],[-17,-7],[-23,-9],[-10,-4],[-26,0],[-2,1],[-46,15],[-14,5],[-29,24],[-25,34],[-51,68],[-15,21],[-24,62],[-6,43],[-16,112],[-12,34],[-10,28],[-5,16],[-28,32],[-14,7],[-45,20],[-15,-11],[-93,-33],[-30,-8],[-33,-7],[-10,4],[-30,10],[-5,2],[-3,2],[-23,20],[-46,105],[-1,3],[-1,4],[-26,97],[-5,16],[-53,164],[-22,67],[-30,72],[0,2],[-1,4],[-4,18],[-6,28],[-5,29],[-6,47],[-7,67],[-3,57],[0,6],[-2,30],[15,171],[4,47],[-1,37],[-8,71],[-14,46],[-3,8],[-23,53],[-15,34],[-1,2],[-6,43],[1,14],[0,2],[2,66],[7,52],[12,24],[5,35],[1,34],[0,11],[-5,71],[-7,34],[-13,50],[-37,137],[-5,22]],[[92607,44681],[2,-9],[10,-47],[1,-44],[14,-230],[1,-24],[9,-138],[3,-27],[0,-4],[1,-2],[17,-40],[6,-15],[40,-91],[27,-62],[46,-114],[63,-218],[12,-58],[3,-10],[12,-46],[37,-92],[66,-166],[6,-14],[45,-112],[20,-36],[25,-45],[18,-34],[50,-95],[30,-45],[32,-35],[31,-37],[24,-30],[34,-50],[3,-6],[5,-17],[19,-75],[20,-111],[0,-3],[0,-51],[0,-6],[0,-6],[1,-2],[6,-83],[0,-4],[1,-6],[1,-6],[4,-26],[0,-1],[1,-5],[10,-51],[1,-6],[12,-90],[24,-181],[25,-54],[16,-33],[17,-24],[49,-68],[38,-64],[7,-11],[1,-1],[27,-50],[45,-92],[49,-132],[2,-4],[24,-56],[1,-4],[2,-3],[11,-20],[0,-1],[11,-20],[6,-10],[2,-4],[1,-1],[6,-10],[7,-11],[51,-89],[5,-11],[6,-17],[1,-3],[3,-35],[4,-103],[1,-43],[0,-6],[-8,-36],[-6,-25],[-3,-11],[-9,-28],[-13,-32],[-12,-20],[-37,-67],[-27,-43],[-2,-4],[-2,-4],[-1,-2],[-2,-5],[-8,-17],[-2,-3],[-1,-5],[-1,0],[-34,-95],[-2,-4],[-1,-6],[-2,-5],[0,-1],[-6,-27],[-1,-5],[-1,-6],[-63,-142],[-8,-16],[-31,-30],[-13,-1],[-41,-2],[-14,-1],[-5,2],[-5,1],[-24,9],[-27,50],[-10,18],[-33,16],[-143,-14],[-29,-4],[-63,-9],[-36,-5],[-67,-66],[-10,-29],[-6,-53],[-10,-77],[-2,-19],[2,-47],[6,-43],[9,-28],[6,-17],[12,-33],[10,-13],[24,-31],[84,-140],[7,-11],[27,-36],[15,-20],[5,-15],[12,-32],[7,-21],[9,-26],[-14,-157],[-12,-15],[-1,-2],[-2,-3],[-12,-18],[0,-1],[-3,-4],[-2,-4],[-2,-5],[-2,-5],[-1,-4],[-19,-58],[0,-1],[-1,-2],[-20,-66],[-37,-73],[-32,-40],[-25,-24],[0,-1],[-3,-3],[-34,-41],[-3,-3],[-2,-4],[-3,-4],[-34,-62],[0,-1],[-2,-4],[-2,-5],[-1,-1],[-22,-55],[-1,-3],[-2,-5],[-2,-6],[-1,-5],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[0,-4],[-3,-38],[0,-3],[-1,-6],[0,-6],[0,-6],[1,-7],[0,-1],[3,-41],[0,-5],[1,-6],[1,-6],[1,-6],[1,-4],[20,-46],[-2,-65],[-11,1],[-23,-43],[-1,-2],[-59,-121],[-1,-1],[-1,-4],[-25,-56],[-2,-5],[-1,-6],[-1,-3],[-16,-52],[-9,-20],[-14,-16],[-21,-10],[-45,-11],[-29,-7],[-3,-1],[-3,-1],[-1,-1],[-28,-17],[-2,-1],[-3,-2],[-2,-3],[-1,-1],[-16,-17],[-1,-2],[-3,-3],[-1,-1],[-8,-13],[-30,-43],[-2,-3],[-2,-3],[-23,-40],[0,-1],[-2,-4],[-1,-2],[-5,-11],[-53,-115],[-26,-57],[-1,-3],[0,-1],[-16,-36],[-32,-77],[-1,-4],[-2,-4],[-39,-96],[-5,-1],[-11,-4],[-140,4],[-137,51],[-44,22],[-66,39],[-1,1],[-1,0],[-19,10],[-2,1],[-3,1],[-59,17],[-1,0],[-3,1],[-1,0],[-21,2],[-2,0],[-20,-1],[-74,-10],[-1,-1],[-3,-1],[-3,-1],[-2,-1],[-22,-15],[-2,-1],[-3,-2],[0,-1],[-20,-18],[-2,-1],[-2,-3],[-23,-69],[-12,-36],[-19,-71],[-15,-101],[-8,-60],[0,-60],[-9,-67],[-6,-39],[-1,-8],[-16,-49],[-3,-5],[-21,-36],[-19,-31],[-18,-19],[-22,-21],[-4,-5],[-15,-10],[-60,-41],[-24,-24],[-3,-4],[-37,-38],[-12,-14],[-43,-72],[-21,-47],[-1,-8],[-7,-72],[15,-115],[10,-36],[19,-46],[18,-45],[40,-68],[42,-56],[33,-59],[2,-4],[3,-8],[52,-131],[10,-25],[1,-17],[4,-36],[1,-9],[-1,-4],[-8,-57],[-52,-120],[-12,-60],[3,-50],[1,-24],[2,-29],[-9,-65],[-22,-48],[-14,-17],[-29,-33],[-27,-31],[-30,-49],[-14,-32],[-3,-37],[-3,-25],[-12,-70],[-2,-12],[-54,-169],[-14,-90],[-14,-93],[-21,-92],[-1,-3],[-20,-101],[-2,-9],[-1,-5],[0,-5],[-14,-102],[10,-48],[9,-42],[8,-33],[2,-9],[2,-9],[16,-60],[6,-13],[67,-151],[30,-18],[21,-13],[9,-3],[4,-2],[5,-4],[13,-12],[0,-1],[15,-11],[20,-3],[5,0],[9,2],[26,8],[20,6],[14,1],[19,2],[9,0],[15,-3],[5,-2],[26,-9],[28,-16],[25,-27],[6,-9],[2,-4],[13,-31],[6,-53],[-2,-27],[-2,-26],[-2,-19],[-1,-12],[-3,-15],[-4,-19],[-3,-8],[-1,-5],[-1,-4],[-21,-53],[-12,-31],[-8,-21],[-4,-10],[-13,-28],[-17,-50],[-11,-24],[-1,-3],[-10,-11],[-15,-15],[-11,-11],[-10,-8],[-12,-10],[-14,-5],[-12,-8],[-27,-32],[-14,-20],[-26,-50],[-19,23],[-2,-5],[-21,-50],[-2,-5],[-2,-5],[0,-1],[-35,-113],[-1,-1],[-43,-145],[0,-3],[-2,-5],[-1,-6],[-1,-6],[-1,-5],[-7,-55],[0,-1],[-1,-5],[0,-1],[0,-6],[-1,-7],[0,-11],[1,-32],[0,-1],[0,-7],[1,-5],[4,-49],[0,-1],[1,-6],[1,-6],[1,-6],[1,-5],[1,-3],[0,-1],[8,-32],[1,-2],[1,-5],[2,-5],[2,-5],[3,-8],[2,-5],[2,-2],[42,-80],[34,-91],[25,-110],[5,-106],[0,-4],[0,-7],[11,-111],[1,-6],[1,-6],[1,-6],[1,-6],[10,-43],[1,-4],[24,-89],[3,-13],[5,-23],[-2,-17],[0,-5],[-5,-45],[-1,-4],[-1,-10],[-16,-61],[-76,34],[-1,0],[-2,-1],[-37,-14],[-1,0],[-1,0],[-33,-16],[-2,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-3],[0,-2],[-17,-21],[-2,-2],[-2,-4],[-3,-4],[-2,-4],[-2,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-6],[-1,-5],[0,-2],[-9,-48],[-1,-4],[-1,-6],[0,-6],[-1,-6],[0,-6],[0,-7],[0,-5],[1,-51],[1,-6],[0,-7],[1,-6],[1,-6],[1,-6],[1,-6],[1,-3],[12,-45],[0,-1],[2,-6],[1,-5],[2,-5],[2,-4],[2,-4],[27,-49],[40,-55]],[[81676,36348],[-45,-56],[-63,-66],[-45,-55],[-78,-29],[-129,-20],[-33,-163],[-46,-52],[-24,-28],[-121,-113],[-102,-97],[-80,-142],[-31,-54],[-16,-30],[-35,-62],[-20,-36],[-3,-3],[-37,-34],[-113,-74],[-58,-38],[-44,-57],[-305,-285],[-198,-43],[-57,0],[-592,-525],[-19,-20]],[[79382,34266],[-37,-31],[-33,-25],[-97,-75],[-106,-81],[-210,-160],[-174,-137],[-116,-88],[-79,-59],[-238,-182],[-41,-33],[-88,-68],[-133,-103],[-170,-132],[-223,-170],[-22,-139],[-9,-55],[-8,-50],[-38,-246],[-7,-34],[-14,-83],[-12,-70],[-61,-395],[-29,-194],[-32,-210],[-54,-349],[-8,-52],[-13,-90],[-14,-90],[-20,-138],[-17,-25],[-4,-7],[-1,-1],[-22,-13],[-14,-23],[-10,-32],[-1,-1],[0,-4],[0,-32],[-2,-3],[-19,-23],[-1,-2],[-12,-3],[-6,-1],[-5,1],[-7,1],[-11,1],[-5,3],[-12,7],[-5,9],[-13,24],[-2,6],[-15,46],[-17,51],[-16,25],[-12,1],[-8,1],[-7,-1],[-12,-3],[-18,-12],[-3,-3],[-20,-21],[-21,-14],[-8,2],[-2,0],[-16,4],[-21,19],[-2,2],[-33,51],[-3,5],[-23,84],[-27,48],[-5,4],[-20,16],[-19,8],[-8,3],[-23,0],[-20,-5],[-4,-3],[-15,-10],[-19,-27],[-1,-50],[1,-30],[1,-5],[-3,-7],[-37,-128],[-17,-33],[-8,-16],[-32,-32],[-4,-1],[-21,-5],[-25,22],[-7,6],[-10,16],[-4,8],[-12,38],[-1,2],[-5,54],[0,39],[-2,1],[-34,13],[-23,0],[-22,0],[-11,1],[-30,0],[-20,-31],[-47,-99],[-15,-33],[-54,-107],[-27,-55],[-39,-80],[-43,-81],[-116,-41],[-59,-19],[-56,-17],[-44,-11],[-49,-16],[-31,-13],[-25,-12],[-20,-6],[-53,-4],[-26,-18],[-36,-25],[-31,-11],[-21,-15],[-37,-37],[-21,-12],[-45,-25],[-34,-18],[-20,-11],[-19,-19],[-21,-25],[-30,-21],[-26,-4],[-31,-7],[-21,-12],[-30,-19],[-39,-29],[-27,-59],[-36,-35],[-63,-33],[-35,-15],[-40,-33],[-41,-33],[-108,-86],[-18,-29],[-75,-148],[-89,-25],[-108,-172],[-21,2],[-191,17],[-34,3],[-35,-13],[-63,-47],[-44,-49],[-33,-36],[-35,-15],[-22,-5],[-90,-19],[-25,-5],[-71,-32],[-36,4],[-30,-1],[-29,-13],[-25,-3],[-35,-11],[-68,-53],[-4,-3],[-22,-18],[-58,-47],[-20,-15],[-29,-25],[-24,-34],[-24,-31],[-17,-27],[-89,-40],[-28,-16],[-17,-8],[-31,-3],[-26,-6],[-19,-11],[-28,-19],[-28,-12],[-41,-20],[-22,-12],[-19,-10],[-17,-7],[-20,-5],[-18,-1],[-21,-4],[-35,-1],[-23,-2],[-25,3],[-38,7],[-37,12],[-32,7],[-25,3],[-23,-6],[-24,-4],[-32,-17],[-38,-8],[-29,-10],[-25,-7],[-26,-5],[-43,-5],[-20,-4],[-26,-6],[-33,-6],[-39,1],[-18,-3],[-29,-3],[-42,-10],[-41,-8],[-29,-4],[-31,11],[-32,11],[-37,8],[-34,8],[-29,6],[-24,2],[-24,-1],[-47,-20],[-30,-16],[-27,-17],[-18,-8],[-44,4],[-33,7],[-40,23],[-25,21],[-30,-4],[-29,-2],[-36,3],[-26,0],[-20,-4],[-22,-13],[-17,-16],[-16,-15],[-22,-20],[-24,-17],[-31,-16],[-28,-5],[-30,-14],[-19,-11],[-18,-14],[-2,-2],[-14,-14],[-47,-15],[-42,-9],[-38,-8],[-39,-7],[-26,-1],[-19,4],[-25,-6],[-42,-12],[-34,-20],[-20,-19],[-50,-50],[-20,-15],[-19,-15],[-3,-1],[-18,-10],[-35,-4],[-19,-2],[-20,-2],[-21,3],[-68,-47],[-35,-17],[-19,-13],[-23,-13],[-22,-13],[-30,-18],[-74,-43],[-51,-43],[-33,-19],[-20,-19],[-43,-29],[-81,-35],[-18,-16],[-29,-23],[-22,-11],[-18,-3],[-29,-5],[-68,-5],[-51,0],[-38,2],[-29,7],[-29,-1],[-30,-4],[-25,12],[-23,11],[-25,-6],[-36,-4]],[[69971,27777],[-28,36],[-86,108],[-172,219],[-118,152],[-69,90],[-18,23],[-63,82],[-15,19],[-14,20],[-2,3],[-27,34],[-93,122],[-48,63],[-1,1],[-51,67],[-33,43],[-71,91],[-56,73],[-56,65],[-17,23],[-78,103],[-30,39],[-103,136],[-16,21],[-320,421],[-33,44],[-15,21]],[[68338,29896],[-51,66],[-83,105],[-62,79],[-27,35],[-84,108],[-1,0],[-159,204],[-39,51],[-16,20],[-62,80],[-41,52],[-90,113],[-24,31],[-31,38],[-29,36],[-24,30],[-19,24],[-33,44],[-169,223],[-16,22],[-24,31],[-26,32],[-134,177],[-70,88],[-45,62],[-38,50],[-33,44],[-102,133],[-38,50],[-217,284],[-26,33],[-5,7],[-119,150],[-69,88],[-130,165],[-63,81],[-30,40],[-60,74],[-73,98],[0,1],[-113,148],[-92,121],[-83,112],[-4,6],[-30,40],[-111,139],[-54,65],[-1,1]],[[29467,35957],[46,-258],[-17,-2],[-33,24],[-37,34],[-69,63],[-141,-614],[0,-2],[-29,-134],[-24,-111],[-11,-55],[-20,-97],[-11,-51],[-19,-92],[-33,-154],[-15,-74],[-39,-184],[-68,-325],[-10,-44],[-31,-150],[-9,-46],[-21,-99],[-49,-241],[-9,-44],[-25,-99],[-10,-39],[-25,-99],[-57,-265],[-13,-57],[-54,-248],[-9,-44],[-2,-20],[-5,-32],[-52,-256],[-22,-108],[-66,-306],[-13,-61],[-104,-424],[-68,-278],[-36,-149],[-43,-175],[-9,-33],[-43,-172],[-13,-52],[-99,-402],[-38,-153],[-58,-235],[-13,-53],[-12,-48],[-40,-161],[-40,-161],[-16,-62],[-1,-7],[-123,-505],[-103,-426],[-57,-247],[-9,-47],[-12,-41],[-74,-273],[-1,-10],[-3,-26],[-12,-28],[-17,-47],[-9,-34],[-10,-38],[-9,-31],[-9,-32],[-19,-73],[-199,-722],[-77,-280],[-28,-94],[-86,-294],[-5,-16],[-9,-30],[-77,-271],[-196,-684],[-104,-362],[-43,-150],[-26,-91],[-5,-15],[-10,-36]],[[26500,24199],[-82,161],[-30,92],[-24,81],[-79,147],[-68,74],[-130,69],[-86,62],[-53,46],[-66,49],[-118,19],[-63,0],[-87,-26],[-3,-1],[-45,-14],[-31,-33],[-10,-30],[-14,-63],[-12,-124],[5,-48],[15,-18],[26,-10],[17,-9],[3,-11],[3,-20],[-10,-49],[-26,-86],[-2,-6],[-18,-39],[-11,-24],[-13,-28],[-17,-42],[-25,-49],[-32,-66],[-23,-46],[-23,-30],[0,-1],[-18,-33],[-27,-39],[-37,-30],[-6,1],[-70,-34],[-2,-6],[-19,-40],[-40,-87],[-66,-87],[-4,-5],[-10,-48],[-57,-44],[-62,-14],[-92,35],[-24,20],[-15,56],[-13,25],[-24,48],[-9,18],[-5,3],[-20,13],[-21,10],[-51,13],[-40,0],[-29,-25],[-23,-58],[-27,-91],[-40,-171],[-25,-105],[-81,-149],[-19,-26],[-15,-19],[-14,-20],[-3,-3],[-5,-4],[-13,-11],[-30,8],[-39,30],[-3,2],[-9,7],[-14,18],[-2,5],[-2,4],[0,1],[-33,30],[-63,-18],[-57,-30],[-63,-3],[-46,18],[-3,1],[-3,1],[-42,36],[-46,63],[-34,102],[-11,86],[-7,77],[3,101],[20,119],[16,62],[54,21],[68,27],[74,28],[7,40],[0,23],[0,28],[-7,15],[-2,4],[-6,10],[-32,14],[-68,83],[-153,69],[-50,26],[-62,13],[-91,16],[-92,17],[-53,9],[15,105],[5,62],[-1,70],[-11,58],[-13,36],[-7,15],[-23,33],[-28,18],[-31,14],[-79,-24],[-114,-30],[-68,13],[-178,107],[-58,37],[-64,10],[-19,-19],[-69,-66],[-58,-55],[-30,-5],[-27,17],[-113,191],[-87,147],[-65,77],[-105,98],[-171,152],[-20,17],[-14,-22],[-25,-36],[-46,-69],[-86,85],[-46,-7],[-29,-68],[-15,-41],[-11,-64],[-14,-42],[-18,-33],[-35,-31],[-8,-15],[-12,-20],[-7,-11],[-1,-1],[-47,-53],[-34,-39],[-41,-46],[-54,3],[-47,2],[-6,0],[-54,38],[-5,11],[-3,4],[-15,30],[-6,51],[3,31],[1,9],[2,16],[2,7],[12,38],[15,32],[39,85],[6,54],[0,2],[0,5],[-12,101],[-1,35],[0,14],[1,9],[-3,4],[-87,134],[-104,159],[-29,19],[-15,0],[-17,-6],[-17,-34],[-17,-56],[-7,-26],[-8,-26],[-9,-11],[-27,-33],[-1,0],[-58,-27],[-19,-5],[-49,-33],[-12,-8],[-15,4],[-14,4],[-13,4],[-6,11],[-8,14],[-1,3],[-6,36],[1,17],[1,80],[6,56],[0,1],[2,220],[1,48],[1,120],[2,21],[2,12],[6,10],[15,26],[12,21],[13,22],[3,24],[1,13],[1,6],[-3,12],[-16,84],[-7,33],[-3,5],[-16,32],[-6,13],[-36,15],[-146,-56],[-86,-20],[-37,-24],[-46,-46],[-8,-18],[-22,-48],[-3,-7],[-6,-18],[-26,-47],[-12,-11],[-17,1],[-19,17],[-21,33],[-13,29],[-11,40],[-5,99],[-4,25],[-13,71],[-2,11],[-6,17],[-21,53],[-9,23],[-14,16],[-8,9],[-1,3],[-21,47],[-9,30],[-2,8],[-5,21],[-5,30],[-23,31],[-2,2],[-8,10],[-38,-13],[-32,-35],[-16,-37],[-1,-3],[-11,-94],[1,-180],[-5,-155],[0,-6],[-2,-8],[-7,-27],[-46,-54],[-39,-10],[-27,0],[-69,14],[-26,6],[-12,15],[-11,35],[-17,97],[-16,93],[-12,31],[6,75],[0,1],[6,9],[10,16],[14,40],[30,157],[1,17],[13,147],[5,60],[-4,25],[-15,31],[-10,20],[-2,5],[-3,1],[-36,14],[-15,5],[-37,-24],[-20,-21],[-1,-2],[-18,-43],[0,-1],[-5,-86],[-3,-38],[4,-27],[13,-100],[-1,-39],[-2,-72],[-9,-53],[-19,-116],[-14,-85],[-15,-90],[-17,-34],[-46,-51],[-20,-14],[-29,-14],[-34,-17],[-39,-5],[-21,-3],[-45,13],[-60,17],[-41,21],[-9,6],[-36,27],[-7,5],[-22,26],[-10,22],[-16,44],[-18,118],[-2,13],[-9,35],[-4,13],[-5,9],[-20,42],[-32,66],[-11,23],[-9,54],[-17,104],[-12,35],[-8,24],[-8,22],[-9,4],[-6,3],[-8,-5],[-44,-27],[-39,-27],[-13,-12],[-13,-21],[-25,-34],[-16,-18],[-19,-13],[-26,-7],[-17,4],[-27,13],[-17,16],[-16,22],[-11,24],[-9,26],[-6,23],[-11,74],[-26,168],[-2,12],[-2,11],[-7,21],[-15,41],[-20,57],[-8,109],[-1,8],[0,3],[-10,52],[-11,27],[-1,3],[-15,5],[-20,-8],[-9,-3],[-21,-15],[-38,-27],[-5,-4],[-8,-8],[-26,-25],[-1,-1],[-4,-7],[-95,-155],[-8,-2],[-25,-4],[-25,16],[-40,56],[-40,23],[-8,75],[-2,19],[-4,35],[1,165],[0,54],[-33,126],[-5,19],[4,65],[1,7],[1,9],[4,23],[12,70],[-1,26],[-1,12],[-2,26],[-7,30],[-14,32],[-12,32],[-18,66],[-17,71],[-14,62],[-10,52],[-3,53],[2,55],[-1,21],[6,56],[10,32],[20,40],[33,67],[90,82],[2,5],[1,11],[3,29],[-8,30],[11,77]],[[61403,32871],[3,62],[1,16],[-2,27],[-1,11],[0,1],[0,1],[-5,25],[-32,177],[-2,11],[-38,83],[-7,14],[-11,5],[-11,0],[-61,-45],[-8,-6],[-64,-41],[-5,0],[-127,-26],[-21,21],[-8,12],[-41,-41],[-2,-3],[-12,-20],[-19,-32],[-5,-7],[5,-121],[0,-12],[-4,-7],[-20,-5],[-38,23],[-30,18],[-10,5],[-18,11],[-30,42],[-1,36],[-4,14],[-8,7],[-8,0],[-26,-7],[-35,-16],[-16,-12],[-36,-26],[-12,-5],[-35,10],[-24,-11],[-3,-4],[-7,-13],[-10,-30],[-10,-29],[-15,-31],[-98,-161],[-8,-9],[-2,0],[-3,0],[-2,2],[-4,5],[-12,24],[-22,43],[-5,9],[-7,4],[-39,17],[0,1],[-60,147],[-1,1],[1,2],[22,63],[3,10],[2,5],[4,15],[0,8],[0,10],[0,1],[-7,34],[-1,1],[-28,83],[-4,10],[-14,20],[-7,13],[-5,21],[-1,25],[-3,63],[0,1],[2,26],[-2,51],[-4,134],[-1,18],[-34,54],[-9,7],[-26,14],[-27,0],[-9,-11],[-10,-22],[-12,-27],[-9,-18],[-11,-8],[0,-1],[-20,-4],[-19,6],[-43,35],[-16,-23],[-37,-57],[-3,-4],[-3,-25],[0,-1],[-1,-3],[-7,-36],[-4,-22],[-7,-5],[-49,-8],[-16,14],[-10,9],[-61,130],[-1,2],[1,13],[15,47],[4,11],[3,27],[-4,32],[-1,6],[9,27],[5,18],[-7,7],[-3,5],[-39,99],[-10,72],[-3,29],[1,14],[13,11],[0,2],[1,2],[1,3],[2,19],[-3,46],[-8,104],[-1,5],[-3,13],[0,1],[-27,69],[-3,7],[-6,11],[-18,8],[-5,-1],[-8,-2],[-27,-19],[-8,-12],[-13,-22],[-9,-22],[-10,-25],[-16,-24],[-19,-16],[-3,-1],[-112,-20],[-9,1],[-3,1],[-3,2],[-44,24],[-15,8],[-3,4],[-25,22],[-4,2],[-1,2],[-86,49],[-1,0],[-42,21],[-12,15],[-9,7],[-15,5],[-2,0],[-28,0],[-9,0],[-84,-31],[-51,-18],[-54,-16],[-41,-12],[-134,-39],[-11,-4],[-23,-1],[-10,9],[-22,28],[-25,32],[0,1],[-3,3],[0,7],[1,86],[-1,5],[-7,42],[-11,59],[-2,9],[-7,21],[-18,41],[-3,9],[-3,4],[-71,110],[-4,5],[-33,37],[-12,14],[-10,4],[-33,14],[-26,12],[-76,-41],[-1,0],[-170,-94],[-69,-39],[-35,37],[-42,-66],[-54,-70],[-21,-18],[-5,-5],[-47,-38],[-41,-27],[-16,-11],[-3,-2],[-19,-9],[-7,-1],[-63,-30],[-11,-73],[0,-4],[3,-34],[-50,13],[-36,9],[-6,2],[-59,14],[-197,45],[-33,6],[-184,52],[-40,12],[-42,11],[-86,17],[-96,24],[-74,20],[-58,15],[-124,32],[-49,10],[-50,11],[-120,29],[-58,11],[-85,25],[-101,21],[-72,23],[-51,13],[-26,-2],[-144,32],[-98,35],[-94,26],[-11,3],[-149,36],[-160,46]],[[55430,34850],[-171,39],[-79,21],[-109,28],[-144,34],[-44,10],[-219,59],[-23,6],[-65,17],[-44,12],[-48,13],[-3,0],[-23,6],[-167,42],[-1,186],[-1,86],[-1,113],[-2,165],[-1,57],[0,84],[-1,36],[-1,33],[0,9],[0,51],[-2,128],[-2,162],[-1,73],[0,83],[-1,199],[-4,269],[-3,333],[-2,119],[0,68],[-3,245],[0,83],[0,21],[-4,363],[-3,274],[0,3],[-3,258],[0,21],[-2,209],[-1,52]],[[6363,34168],[2,-65],[3,-92],[9,-322],[13,-419],[7,-262],[2,-106],[18,-613],[4,-30],[8,-272],[-13,-10],[-64,-43],[-15,-10],[-13,-11],[-9,-16],[-8,-20],[-12,-33],[0,-1],[-6,-16],[-5,0],[-99,7],[-1,0],[-1,0],[-1,2],[-1,3],[-8,3],[-2,0],[-12,0],[-17,-13],[-23,-34],[-15,-22],[-10,-22],[-14,-19],[-10,-10],[-8,-3],[-2,1],[-1,-1],[-1,1],[-50,12],[-3,2],[-2,2],[-1,1],[-4,5],[-3,3],[-34,44],[-21,-11],[-15,0],[-31,16],[-3,3],[-10,10],[-19,23],[-8,1],[-20,-6],[-9,-3],[-3,-3],[-2,-8],[0,-25],[-15,-28],[-50,-98],[0,-12],[1,-76],[-1,-23],[-8,-145],[-2,-14],[-9,-7],[-2,0],[-2,-1],[-45,-14],[-50,0],[-6,1],[-33,18],[-11,-1],[-15,-10],[-1,0],[-9,-15],[-2,-7],[-34,-69],[-15,-30],[-13,-25],[-89,-128],[-16,-12],[-17,-5],[-13,-6],[-10,-3],[-10,-13],[-47,-79],[-3,-8],[-2,-6],[0,-1],[0,-17],[1,-6],[0,-28],[-2,-10],[-11,-25],[-7,-13],[-2,-4],[-18,-26],[-1,-2],[-8,-11],[-3,-2],[-1,0],[-8,-5],[-14,-1],[-17,5],[-44,14],[-3,1],[-24,-66],[-8,-20],[-2,-4],[-35,-88],[-9,-23],[-5,-13],[-3,-8],[-9,-14],[-5,-5],[-28,-17],[-5,-3],[-4,-2],[-42,-6],[17,-43],[0,-1],[-22,-32],[-21,-33],[-3,-5],[-33,-55],[-25,-39],[-175,-267],[-26,-42],[-57,-82],[-15,-20],[-14,-23],[-209,-315],[-149,-218],[-6,-8],[-37,-51],[-16,-23],[-36,-58],[-241,-355],[-203,-299],[-22,-34],[-31,-50],[-298,-458],[-87,-130],[-63,-95],[-159,-239],[-5,-7],[-106,-161],[-29,-42],[-20,-31],[-43,-62],[-17,-28],[-54,-79],[-45,-67]],[[2724,27118],[-20,0],[-5,0],[-38,0],[-176,-1],[-314,-8],[-19,1],[-27,2],[-25,-1],[-38,1],[-156,1],[-37,1],[-133,3],[-101,3],[-168,5],[-69,2],[-18,-1],[-47,1],[-23,0],[-3,0],[-57,-2],[-37,-1],[-31,-2],[-60,-1],[-57,-3],[-49,-2],[-31,-2],[-78,-3],[-59,0],[-65,0],[-73,1],[-25,1],[-193,2],[-100,2],[-51,-1],[-26,0],[-300,-4],[-4,0]],[[11,27112],[0,46],[1,44],[1,106],[-1,103],[1,177],[-1,146],[0,70],[0,121],[0,46],[1,333],[0,47],[0,95],[-1,65],[0,39],[0,78],[1,43],[-1,131],[-4,318],[0,37],[2,265],[-1,337],[0,43],[0,5],[3,126],[2,111],[0,90],[-1,91],[-1,196],[0,76],[1,134],[-1,128],[0,63],[-1,325],[-1,76],[0,1],[0,190],[0,44],[1,179],[0,86],[0,39],[1,38],[-1,36],[0,43],[0,73],[0,32],[-1,72],[1,70],[0,89],[0,173],[1,70],[0,3],[0,57],[0,176],[0,41],[-2,148],[0,129],[0,104],[-1,191],[-1,643],[-1,196],[-1,552],[5,3056],[1,473],[0,104],[3,1592],[1,98],[0,406],[1,72]],[[47475,23586],[-16,-29],[-24,-46],[-14,-28],[-13,-28],[-13,-34],[-17,-45],[-14,-27],[-18,-33],[-12,-36],[-5,-12],[-7,-11],[-18,-33],[-281,-3],[-19,0],[-337,-1],[-179,-1],[-19,0],[0,-19],[-96,-164],[-17,-23],[-12,-11],[-29,-15],[-3,-1],[-13,1],[-7,4],[-83,59],[-3,2],[-6,3],[-68,45],[-35,13],[-59,22],[-1,5],[-2,4],[-8,19],[0,1],[-2,4],[-2,5],[-3,4],[0,1],[-28,42],[-2,3],[-2,3],[-1,1],[-7,8],[-15,17],[-2,2],[-3,3],[-2,2],[-3,2],[-1,0],[-16,9],[-3,1],[-3,2],[-3,0],[-3,0],[-3,0],[-3,0],[0,-1],[-32,-9],[-3,-1],[-3,-1],[-2,-1],[-20,-14],[-3,-2],[-3,-3],[-57,-60],[-16,-14],[-59,-41],[-5,2],[-84,43],[-10,15],[-3,6],[-56,104],[-8,13],[-21,38],[-14,13],[-28,48],[-32,162],[-33,120],[-3,33],[-6,48],[35,161],[9,124],[-19,-4],[-16,28],[-12,8],[-11,7],[-39,11],[-29,7],[-22,-1],[-23,-13],[-12,-5],[-12,-6],[-23,-6],[-31,-10],[-27,-16],[-20,-11],[-24,-11],[-24,23],[0,35],[1,199],[-51,1],[-57,-3],[-313,-11],[-7,358],[110,138],[168,174],[43,96],[18,51],[12,29],[22,62],[14,56],[10,39],[13,38],[12,28],[31,46],[21,26],[17,27],[26,58],[15,33],[36,75],[15,37],[16,25],[15,28],[19,33],[21,39],[20,55],[15,25],[14,28],[26,39],[23,41],[14,33],[24,55],[13,27],[14,35],[18,44],[19,38],[22,43],[14,40],[21,40],[19,56],[11,34],[21,34],[18,29],[16,33],[12,26],[10,31],[13,27],[15,35],[11,27],[18,43],[12,33],[16,30],[11,34],[14,33],[19,37],[17,40],[19,40],[16,32],[13,36],[16,49],[14,40],[16,45],[14,24],[9,34],[12,31],[15,28],[13,29],[12,52],[19,37],[16,28],[15,23],[18,30],[21,52],[28,62],[12,28],[16,28],[21,21],[16,20],[27,41],[16,23],[24,36],[55,88],[24,30],[15,21],[-83,343],[-35,144],[-17,72],[-24,99],[-1,3],[-14,57],[-47,195],[-1,4],[-20,83],[-17,69],[-13,52],[-166,684],[11,37],[19,44],[23,81],[21,44],[55,159],[17,56],[13,27],[12,34],[7,34],[14,50],[9,38],[25,63],[62,179],[11,27],[11,38],[13,24],[15,29],[6,50],[13,46],[27,16],[17,35],[12,35],[13,37],[22,39],[14,32],[10,38],[18,36],[20,50],[23,43],[19,41],[143,311],[21,41],[17,56],[55,78],[29,61],[18,34],[12,29],[60,110],[18,31],[21,40],[22,50],[31,56],[13,25],[17,33],[13,26],[14,29],[20,42],[18,28],[17,22],[22,42],[25,49],[13,31],[19,30],[36,21],[60,35],[45,24],[74,42],[17,9],[4,3],[84,66],[37,28],[33,51],[63,107],[41,68],[95,143],[51,77],[63,63],[23,31],[33,43],[24,36],[42,67],[67,112],[3,44],[-5,48],[24,45],[65,54],[78,74],[66,85],[58,82],[85,108],[27,40],[24,36],[29,36],[17,27],[28,31],[73,83],[75,214],[8,86],[-53,-8],[-27,-29],[-20,3],[-29,-15],[-27,-21],[-53,-41],[-32,-16],[-26,-4],[-31,-13],[-19,-12],[-52,-30],[-60,290],[-19,88],[9,34],[26,9],[18,8],[38,27],[45,78],[-3,64],[24,51],[-2,38],[-7,50],[-24,159],[4,8],[53,52],[38,36],[31,32],[84,79],[34,35],[20,12],[21,12],[35,31],[30,34],[71,80],[-17,96],[-9,57],[-55,323]],[[55430,34850],[-129,-74],[-139,-88],[-51,-30],[-40,-36],[-42,-27],[-44,-31],[-45,-31],[-49,-31],[-63,-28],[-16,-14],[-39,-31],[-29,-25],[-74,-48],[-36,-26],[-40,-34],[-42,-27],[-37,-27],[-33,-24],[-18,-16],[-39,-24],[-28,-13],[-25,-12],[-22,-16],[-23,-16],[-18,-14],[-19,-19],[-21,-9],[-29,-33],[-27,-20],[-28,-18],[-41,-36],[-27,-19],[-36,-16],[-28,-18],[-28,-22],[-33,-29],[-16,-19],[-25,-24],[-28,-13],[-29,-21],[-22,-16],[-22,-17],[-20,-15],[-22,-17],[-17,-12],[-18,-15],[-28,-30],[-20,-19],[-20,-16],[-24,-19],[-23,-17],[-22,-17],[-22,-16],[-21,-16],[-22,-18],[-21,-19],[-23,-20],[-19,-15],[-21,-19],[-20,-17],[-21,-18],[-20,-17],[-20,-16],[-21,-17],[-23,-23],[-31,-37],[-23,-26],[-22,-22],[-18,-16],[-18,-16],[-24,-21],[-23,-26],[-16,-21],[-23,-21],[-21,-18],[-21,-15],[-23,-19],[-18,-7],[-25,-15],[-21,-17],[-19,-21],[-27,-23],[-30,-22],[-25,-27],[-21,-20],[-22,-19],[-26,-22],[-31,-32],[-27,-21],[-28,-18],[-30,-32],[-24,-22],[-23,-20],[-18,-22],[-27,-23],[-29,-26],[-25,-20],[-26,-26],[-15,-21],[-27,-22],[-23,-21],[-15,-21],[-31,-33],[-21,-19],[-21,-20],[-20,-18],[-38,-33],[-29,-31],[-16,-16],[-21,-25],[-17,-17],[-25,-18],[-21,-11],[-14,-22],[-19,-14],[-37,-46],[-23,-14],[-22,-16],[-29,-32],[-31,-32],[-15,-39],[-21,-27],[-38,-18],[-24,-21],[-19,-27],[-14,-20],[-22,-30],[-13,-25],[-16,-31],[-17,-11],[-16,-22],[-15,-24],[1,-333],[0,-83],[0,-11],[0,-37],[1,-40],[0,-3],[0,-126],[2,-360],[-38,-46],[-23,-31],[-19,-26],[-39,-41],[-20,-16],[-26,-33],[-19,-25],[-25,-40],[-30,-30],[-22,-23],[-44,-107],[-13,-27],[-34,-26],[-19,-29],[-14,-26],[-24,-21],[-27,-34],[-35,-53],[-16,-22],[-18,-23],[-22,-17],[-15,-26],[-22,-22],[-21,-23],[-15,-30],[-23,-26],[-37,-43],[-30,-30],[-28,-28],[-24,-24],[-16,-19],[-19,-21],[-20,-29],[-20,-18],[-18,-20],[-22,-25],[-17,-17],[-18,-27],[-21,-18],[-37,-45],[-38,-43],[-39,-42],[-16,-18],[-22,-24],[-41,-36],[-40,-39],[-40,-40],[-39,-45],[-27,-32],[-28,-31],[-22,-23],[-22,-30],[-31,-40],[-38,-47],[-17,-23],[-28,-29],[-31,-40],[-17,-22],[-22,-27],[-16,-17],[-18,-18],[-21,-25],[-94,-125],[-36,-39],[-16,-21],[-24,-35],[-17,-26],[-54,-74],[-36,-49],[-33,-40],[-80,-103],[-20,-28],[0,-200],[0,-110],[0,-4],[0,-192],[2,-68],[-1,-258],[-171,-211],[-39,-50],[-21,-24],[-29,-40],[-15,-20],[-28,-42],[-20,-27],[-14,-23],[-35,-49],[-14,-23],[-19,-34],[-14,-21],[-21,-31],[-36,-55],[-31,-51],[-23,-39],[-18,-29],[-27,-38],[-182,-302],[-93,-159],[-30,-54],[-31,-54],[-30,-59],[-34,-53],[-32,-50],[-33,-56],[-33,-56],[-23,-41],[-44,-72],[-20,-28],[-13,-30],[-16,-23],[-16,-30],[-32,-55],[-33,-51],[-35,-55],[-28,-56],[-37,-53],[-49,-79],[-16,-28],[-66,-93],[-43,-60],[-22,-36],[-42,-72],[-26,-37],[-34,-52],[-17,-24],[-20,-47],[-26,-44],[-16,-27],[-27,-39],[-25,-40],[-41,-69],[-15,-19],[-17,-34],[-16,-24],[-16,-25],[-14,-28],[-15,-33],[-28,-58],[-22,-44],[-30,-57],[-37,-75],[-23,-28],[-22,-60],[-13,-27],[-18,-36],[-14,-24],[-16,-31],[-10,-32],[-25,-59],[-31,-60],[-19,-32],[-17,-38],[-15,-29],[-28,-51],[-29,-73],[-24,-56],[-16,-33],[-19,-54]],[[88945,29239],[-80,-98],[-25,-34],[-92,-126],[-17,-24],[-180,-253],[-29,-38],[-76,-106],[-53,-75],[-28,-40],[-60,-78],[-57,-81],[-54,-75],[-36,-55],[-25,-32],[-72,-80],[-18,-24],[-9,-10],[-11,-14],[-17,-23],[-34,-45],[-24,-35],[-15,-22],[-54,-72],[-53,-71],[-57,-75],[-107,-139],[-15,-19],[-25,-34],[-60,-116],[-16,-34],[-58,-117],[-22,-42],[-2,-5],[-111,-216],[-97,-189],[-18,-39],[-151,-294],[-3,-6],[-15,-31],[-24,-47],[-71,-141],[-18,-36],[-20,-38],[-56,-113],[-19,-37],[-19,-39],[-19,-39],[-14,-27],[-14,-28],[-18,-35],[-48,-91],[-18,-35],[-13,-27],[-25,-47],[-45,-91],[-34,-66],[-36,-70],[-41,-78],[-61,-118],[-86,-166]],[[86370,25003],[-109,142],[-86,115],[-33,42],[-25,35],[-16,26],[-66,86],[-133,174],[-34,45],[-17,22],[-48,62],[-24,30],[-99,129],[-57,72],[-34,45]],[[85589,26028],[-21,29],[-8,10],[-37,47],[-43,57],[-95,122],[-55,72],[-22,28],[-57,75],[-13,17],[-8,10],[-31,40],[-16,22],[-21,27],[-132,175],[-58,76],[-86,111],[-17,15],[-17,22],[-21,27],[-25,34],[-23,30],[-28,37],[-18,24],[-23,35],[-39,50],[-117,152],[-129,166],[-24,31],[-22,28],[-16,21],[-28,36],[-26,34],[-41,52],[-74,95],[-26,34],[-41,56],[-57,79],[-43,60],[-67,94],[-16,20],[-2,3],[-51,69],[-33,45],[0,1],[-152,205],[-25,32],[-15,20],[-43,57],[-141,182],[-157,210],[-123,170],[-109,139],[-61,80],[-17,21],[-51,68],[-1,2],[-201,268],[-98,131],[-42,55],[-99,132],[-15,21],[-34,44],[-65,87],[-40,53],[-19,25],[-89,118],[-60,82],[-122,163],[-30,39],[-15,20],[-20,27],[-2,3],[-34,43],[-104,129],[-63,82],[-110,146],[-198,257],[-39,50],[-31,42],[-31,40],[-70,91],[-117,153],[-24,31],[-87,114],[-20,26],[-40,53],[-29,38],[-76,100],[-63,83],[-18,23],[-17,23],[-99,124],[-33,49],[-29,37],[-61,79],[-52,70],[-28,38],[-23,31],[-143,201],[-126,172],[-63,91],[-11,15],[-27,39],[-43,61],[-5,6],[-71,94],[-72,96],[-40,56],[-19,25],[-16,23],[-48,65],[-35,47],[-33,45],[-97,131],[-289,397]],[[47475,23586],[26,-135],[9,-45],[66,-330],[16,-75],[1,-7],[8,-39],[89,-431],[79,-390],[23,-113],[1,-5],[49,-238],[37,-195],[45,-223],[52,-232],[77,-384],[37,-202],[6,-38],[19,-95],[20,-97],[62,-287],[34,-168],[10,-47],[0,-1],[8,-40],[4,-20],[52,-258],[4,-21]],[[48309,19470],[-3,-3],[-10,-6],[-40,-22],[-26,-16],[-8,-18],[-22,-38],[-21,-39],[-16,-25],[-20,-33],[-21,-34],[-24,-33],[-17,-25],[-18,-15],[-22,-28],[-14,-23],[-17,-28],[-22,-33],[-16,-26],[-25,-47],[-24,-40],[-20,-46],[-33,-52],[-19,-45],[-17,-30],[-14,-35],[-40,-70],[-22,-54],[-40,-70],[-19,-51],[-25,-61],[-29,-60],[-29,-61],[-22,-47],[-12,-33],[-12,-36],[-36,-69],[-24,-46],[-22,-51],[-26,-62],[-26,-53],[-28,-71],[-26,-63],[-25,-61],[-24,-61],[-15,-42],[-37,-85],[-16,-46],[-13,-24],[-12,-35],[-17,-36],[-27,-38],[-20,-55],[-26,-73],[-11,-30],[-14,-28],[-22,-74],[-15,-49],[-11,-41],[-15,-44],[-52,-129],[-27,-66],[-17,-48],[-33,-93],[-18,-40],[-27,-84],[-23,-54],[-28,-75],[-29,-76],[-22,-62],[-14,-42],[-28,-73],[-8,-34],[-19,-48],[-17,-65],[-24,-75],[-25,-86],[-14,-54],[-13,-38],[-14,-54],[-10,-36],[-18,-50],[-23,-65],[-12,-54],[-17,-72],[-20,-67],[-17,-56],[-14,-32],[-16,-58],[-23,-66],[-13,-72],[-14,-71],[-13,-53],[-1,-39],[-8,-37],[-22,-71],[-14,-29],[-19,-54],[-19,-41],[-22,-70],[-28,-57],[-8,-53],[-10,-32],[-25,-63],[-16,-61],[-16,-29],[-9,-34],[-21,-74],[-8,-32],[-14,-26],[-14,-33],[-6,-41],[-13,-27],[-6,-40],[-22,-61],[-12,-41],[-14,-43],[-22,-56],[-12,-27],[-8,-41],[-14,-68],[-13,-32],[-17,-67],[-16,-57],[-34,-97],[-12,-50],[-8,-39],[-8,-38],[-7,-31],[-5,-22],[-6,-36],[-14,-51],[-19,-60],[-14,-49],[-12,-28],[-13,-40],[-14,-39],[-10,-38],[-10,-35],[-16,-41],[-13,-26],[-11,-61],[-11,-46],[-8,-35],[-10,-38],[-20,-65],[-21,-69],[-12,-32],[-11,-43],[-24,-61],[-15,-32],[-21,-30],[-30,-3]],[[45542,12231],[-181,263],[-27,39],[-16,24],[-89,130],[-20,28],[-5,7],[-12,18],[-4,6],[-19,28],[-20,28],[-25,35],[-47,69],[-66,94],[-2,3],[-159,231],[-13,19],[-194,280],[-149,216],[-4,-75],[-157,66],[-248,106],[-187,78],[-42,19],[-28,10],[-3,1],[-291,123],[-4,1],[-27,12],[-44,18],[-198,83],[-30,13],[-4,2],[-10,5],[-61,28],[-107,43],[-72,32],[-44,19],[-18,7],[-69,29],[-31,13],[-21,8],[-26,10],[-54,19],[-175,82],[-79,36],[-26,11],[-20,10],[-4,1],[-239,106],[-176,78],[-37,17],[-4,1],[-35,16],[-27,12],[-19,7],[-16,19],[-4,4],[-113,133],[-244,286],[-4,5],[-158,186],[-261,309],[-133,161],[-18,21],[-19,18]],[[40903,15938],[-13,29],[-16,19],[-22,26],[-43,50],[-16,21],[-38,45],[-20,24],[-18,22],[-47,57],[-19,23],[-26,31],[-68,84],[-53,65],[-32,38],[-47,58],[-41,50],[-85,103],[-28,35],[-19,23],[-27,32],[-59,73],[-56,69],[-23,27],[-22,27],[-46,56],[-30,36],[-88,107],[-46,57],[-96,118],[-18,21],[-27,33],[-107,130],[-138,170],[-21,24],[-28,34],[-30,38],[-42,51],[-22,27],[-16,19],[-28,34],[-17,20],[-33,41],[-23,29],[-41,49],[0,2],[-11,63],[-6,39],[-15,93],[-1,13],[-17,117],[-6,44],[-28,192],[-15,101],[-14,95],[-5,37],[-14,93],[-6,42],[-9,73],[-25,188],[-13,98],[-22,158],[-8,61],[-5,36],[-6,38],[-9,74],[-5,49],[-2,16],[-4,30],[-27,195],[-16,120],[-6,49],[-16,114],[-14,102],[-22,162],[-18,131]],[[38803,20688],[11,31],[12,52],[14,57],[8,37],[22,97],[14,55],[13,44],[6,42],[15,39],[9,33],[7,46],[28,91],[21,53],[8,43],[24,45],[32,118],[37,111],[18,72],[31,95],[13,24],[17,58],[12,44],[62,156],[19,59],[33,62],[53,122],[23,60],[20,27],[19,33],[46,85],[45,93],[26,51],[22,55],[22,73],[15,41],[14,70],[5,56],[14,51],[19,96],[33,76],[5,36],[23,89],[16,52],[9,33],[26,58],[19,53],[35,72],[39,104],[96,286],[40,158],[13,34],[36,122],[75,175],[68,139],[71,203],[34,86],[12,31],[43,137],[53,147],[44,114],[10,42],[24,66],[13,28],[14,46],[38,78],[30,92],[61,230],[42,113],[15,52],[23,80],[49,171],[15,33],[7,53],[25,48],[14,74],[17,52],[21,62],[17,84],[58,190],[50,240],[21,73],[-1,52],[11,82],[1,123],[-15,37],[-14,42],[-9,46],[-5,46],[-11,43],[-19,28],[-24,10],[-22,-6],[-65,-96],[-86,-124],[-81,-112],[-23,10],[-36,54],[-8,50],[-1,79],[1,59],[3,112],[12,112],[6,59],[3,63],[3,65],[9,44],[11,76],[10,59],[1,77],[2,90],[9,112],[1,97],[5,65],[3,46],[0,50],[11,108],[10,50],[5,41],[7,86],[18,61],[14,65],[21,61],[6,45],[11,29],[16,40],[8,34],[20,64],[13,64],[4,82],[6,75],[9,33],[9,38],[15,40],[21,91],[20,68],[20,69],[19,56],[4,65],[2,37],[40,72],[-11,14],[-2,2],[-2,4],[-2,4],[-1,1],[-20,37],[0,1],[-26,8],[-26,3],[-14,0],[-22,-100],[-13,-78],[-24,-142],[-7,-44],[-1,-2],[-14,-47],[-14,-34],[-56,-187],[-42,-139],[0,-2],[-28,-125],[0,-1],[-81,-94],[-1,-1],[-13,-6],[-14,-13],[-1,-1],[-116,-119],[-18,-22],[-7,-19],[-2,-25],[0,-2],[-3,-13],[-1,-3],[-4,-16],[-9,-34],[-9,-34],[-11,-26],[-2,-3],[-18,7],[-18,11],[-34,57],[-42,30],[-17,9],[-30,0],[-24,0],[-30,61],[3,37],[-13,48],[-23,20],[-10,36],[-13,30],[-1,3],[-22,51],[-26,37],[-18,16],[-11,43],[-12,36],[7,54],[-20,31],[-18,64],[-12,40],[-15,35],[-18,8],[-10,33],[-19,23],[-7,41],[-22,37],[-25,44],[-14,28],[10,32],[32,82],[14,41],[15,38],[14,32],[23,69],[9,32],[23,60],[16,36],[10,31],[6,38],[19,57],[25,57],[16,42],[10,31],[41,111],[20,60],[19,58],[9,89],[-2,58],[-12,89],[-12,84],[-30,55],[-32,38],[-22,-1],[205,581],[14,39],[7,20],[4,10],[11,30],[19,55],[15,11],[17,-50],[3,-16],[9,-38],[12,-42],[20,-49],[26,80],[29,87],[-49,190],[-43,-13],[-34,-9],[-21,-6],[-18,32],[-24,181],[-50,-12],[-17,-4],[-33,-14],[-24,2],[-24,16],[-16,18],[-16,29],[-13,22],[-29,43],[-26,38],[-76,114],[-10,83],[-14,116],[-3,6],[-57,116],[-9,18],[-10,51],[-13,79],[-17,80],[-21,54],[-42,62],[-59,83],[-75,108],[-29,-9],[-57,-15],[-45,-13],[-7,0],[-6,2],[-9,10],[-9,12],[-9,10],[-2,9],[0,10],[7,37],[13,27],[8,15],[47,85],[30,56],[22,40],[-2,15],[-3,23],[-12,47],[-17,6],[-7,16],[-16,38],[-23,52],[-2,4],[-45,106],[-23,52],[9,37],[26,97],[29,97],[19,67],[26,72],[22,54],[27,57],[13,30],[15,32],[18,37],[22,46],[17,29],[20,29],[17,33],[13,47],[18,26],[16,25],[16,24],[28,25],[18,-10],[34,-66],[19,11],[16,15],[24,36],[14,23],[16,30],[19,23],[23,20],[15,21],[35,52],[36,53],[27,38],[33,35],[31,37],[16,17],[46,50],[40,44],[58,69],[31,8],[21,10],[30,7],[20,7],[15,-43],[29,-23],[26,18],[32,10],[26,19],[16,28],[5,42],[0,41],[-8,60],[39,20],[40,27],[43,33],[41,33],[39,35],[41,45],[45,41],[34,46],[38,50],[35,51],[41,46],[40,50],[35,56],[21,32],[19,25],[20,31],[16,30],[22,25],[16,17],[32,46],[23,35]],[[38803,20688],[-17,-29],[-5,-21],[-5,-21],[-16,-47],[-19,-79],[-7,-38],[-11,-46],[-8,-50],[-10,-31],[-11,-36],[-11,-51],[-11,-49],[-16,-37],[3,-41],[-12,-50],[-16,-57],[-20,-72],[-13,-41],[-15,-42],[-13,-30],[2,-48],[-20,-27],[-3,-48],[-13,-56],[-12,-25],[-7,-43],[-13,-29],[-13,-35],[-24,-65],[-16,-34],[-19,-54],[-11,-40],[-12,-35],[-15,-32],[-25,-57],[-13,-32],[-12,-40],[-14,-40],[-11,-61],[-9,-41],[-13,-53],[-10,-48],[-8,-48],[1,-38],[-5,-46],[-59,44],[-44,35],[-41,32],[-45,36],[-35,29],[-32,26],[-39,31],[-1,1],[-39,32],[-40,33],[-18,14],[-50,40],[-70,57],[-50,41],[-68,54],[-48,39],[-26,21],[-59,48],[-62,50],[-58,47],[-17,14],[-35,28],[-68,56],[-27,21],[-136,109],[-56,45],[-63,52],[-46,37],[-58,47],[-12,10],[-76,59],[-106,94],[-40,35],[-70,62],[-129,115],[-54,47],[-51,45],[-43,39],[-18,16],[-28,24],[-24,21],[-25,23],[-24,21],[-114,100],[-16,15],[-25,24],[-48,43],[-25,22],[-51,45],[-138,122],[-5,-39],[-15,-102],[-5,-45],[-6,-64],[-1,-37],[-12,-28],[-13,-69],[-10,-52],[-7,-49],[-7,-36],[-4,-36],[-7,-39],[-8,-32],[-5,-72],[-9,-48],[-8,-52],[-13,-40],[0,-51],[-5,-43],[5,-61],[1,-46],[-1,-54],[-2,-47],[-2,-67],[0,-61],[-2,-70],[-1,-70],[-2,-62],[-2,-55],[-5,-47],[-6,-54],[-2,-47],[-1,-39],[-16,-62],[-4,-44],[-10,-48],[-14,-62],[-9,-44],[-6,-49],[-14,-49],[-5,-19],[-15,23],[-76,119],[-25,38],[-18,28],[-19,26],[-19,36],[-16,25],[-1,1],[-45,73],[-17,27],[-22,35],[-245,389],[-15,24],[-1,2],[-56,88],[-94,150],[-99,156],[-62,99],[-39,61],[-44,65],[-40,63],[-25,23],[-46,20],[-37,16],[-25,11],[-108,48],[-61,26],[-27,12],[-40,17],[-39,17],[-17,7],[-23,19],[-22,17],[-81,65],[-61,49],[-40,32],[-44,35],[-32,26],[-19,15],[-38,30],[-17,14],[-17,15],[-101,80],[-109,88],[-31,25],[-36,28],[-103,83],[-42,34],[-47,37],[-36,30],[-26,20],[-18,14],[-173,139],[-165,132],[-8,7],[-16,13],[-150,120],[-22,17],[-83,67]],[[32577,21731],[144,434],[27,82],[17,49],[59,177],[57,171],[5,16],[341,328],[1,1],[124,121],[190,181],[13,160],[9,95],[34,382],[32,357],[10,112],[4,43],[10,111],[4,45],[6,74],[7,70],[4,47],[37,415],[18,208],[-60,170],[-35,98],[-18,52],[86,373],[45,193],[8,42],[12,48],[29,72],[-2,42],[20,62],[20,51],[16,26],[11,30],[29,33],[8,39],[6,26],[16,69],[6,35],[4,47],[5,53],[14,69],[-4,38],[-10,47],[-14,49],[-12,39],[-4,15],[-28,86],[-3,73],[-1,46],[1,39],[15,85],[28,200],[17,107],[6,60],[6,47],[15,182],[42,121],[35,100],[88,235],[124,146],[11,30],[74,176],[52,42],[44,38],[20,24],[194,224],[31,31],[36,39],[41,7],[26,4],[36,3],[41,8],[25,2],[19,48],[55,136],[22,52],[1,1],[29,72],[17,43],[25,61],[24,61],[12,27],[36,105],[111,322],[40,112],[20,62],[66,187],[64,183],[44,125],[38,108],[22,66],[16,48],[43,129],[66,195],[-77,574],[-20,144],[-8,73],[-9,40],[6,40],[21,53],[12,46],[12,27],[24,11],[27,47],[11,42],[6,84],[3,80],[6,67],[-3,45],[-20,43],[1,50],[11,34],[14,69],[19,42],[37,37],[30,5],[22,23],[34,5],[20,-13],[48,-12],[68,21],[33,-23],[18,-5],[19,6],[22,-12],[36,-42],[88,-25],[40,-2],[9,-4],[104,282],[2,6],[15,41],[112,298],[182,489],[43,123],[121,341],[151,408],[129,357],[113,317],[19,51],[39,109],[-35,50]],[[32577,21731],[-75,-226],[-16,-50],[-107,-225],[-14,-30],[-46,-96],[-32,-230],[-22,-166],[-8,-57],[-3,-18],[-9,-65],[-17,-123],[-13,-94],[-26,-181],[-77,-31],[-76,-31],[39,-226],[29,-174],[38,-223],[2,-8],[27,-164],[-143,-336],[-83,-205],[-21,-50]],[[31924,18722],[-267,1],[-204,1],[-72,1],[-306,1],[-112,1],[-329,2],[-276,1],[-182,0],[-160,11],[-85,7],[-9,1],[-36,3],[-245,14],[-141,-7],[-53,4],[-50,3],[-37,4],[-81,6],[-216,15],[-11,0],[-51,0],[-22,3],[-48,4],[-27,2],[-35,2],[-45,0],[-39,0],[-29,0],[-36,4],[-11,40],[-22,82],[-47,-5],[-48,-5],[-36,-55],[-20,-37],[-18,-30],[-20,-13],[-22,28],[-34,29],[-34,26],[-36,25],[-26,21],[-4,5],[-1,2],[-1,0],[-9,10],[-59,10],[-23,-4],[-57,2],[-26,-12],[-43,-16],[-42,-37],[-35,-55],[-11,-17],[-30,-46],[-72,111],[-29,89],[-1,5],[-11,92],[-9,77],[-10,68],[-4,86],[-5,38],[-13,30],[-13,59],[-9,36],[0,10],[-1,25],[15,82],[12,104],[-7,40],[-1,8],[-13,43],[-10,21],[-23,23],[-25,-6],[-21,-6],[-40,-12],[-70,29],[-161,71],[-57,44],[-23,36],[-22,34],[-7,21],[-53,165],[-2,13],[-4,37],[-4,3],[-42,-4],[-11,0],[-40,0],[-19,0],[-24,0],[-89,4],[-84,0],[-259,0],[-107,0],[-228,7],[-27,4],[-318,-8],[-43,-5],[-46,1],[-33,-1],[-145,2],[-122,2],[-191,-3],[-192,-3],[-20,-1],[-4,0],[-112,-2],[-52,-2]],[[25104,20221],[6,43],[16,59],[0,69],[35,6],[33,24],[20,84],[6,37],[6,34],[31,37],[23,18],[5,39],[-3,58],[14,45],[47,57],[23,16],[7,52],[2,53],[29,33],[30,49],[-8,33],[9,34],[9,48],[-18,105],[31,61],[32,48],[45,53],[3,44],[-6,50],[10,32],[16,68],[28,15],[21,23],[18,28],[17,46],[21,52],[11,75],[7,35],[15,59],[13,51],[13,45],[41,94],[24,7],[19,32],[54,19],[41,29],[-9,124],[3,35],[36,68],[15,99],[18,62],[23,17],[24,25],[45,94],[27,20],[38,127],[61,208],[113,381],[79,268],[56,200],[29,100],[2,9],[13,45],[12,39],[15,58]],[[61240,32508],[-51,-1],[-5,-1],[-31,-3],[-31,-3],[-23,-23],[-1,-1],[-19,-18],[-88,-60],[-124,-90],[-58,-51],[-101,-81],[-71,-54],[-38,-27],[-18,-15],[-25,-25],[-28,-34],[-24,-22],[-23,-16],[-33,-27],[-32,-25],[-20,-11],[-29,-29],[-120,-64],[-22,-25],[-27,-12],[-63,-39],[-72,-43],[-94,-55],[-21,-4],[-21,6],[-6,2],[-21,-5],[-22,-10],[-23,-3],[-51,-15],[-27,6],[-50,9],[-31,5],[-17,9],[-29,-1],[-32,-20],[-26,-19],[-34,-22],[-30,-5],[-20,-13],[-33,-6],[-39,-23],[-46,-12],[-41,2],[-22,-23],[-51,-26],[-40,-3],[-32,-13],[-35,-24],[-23,-1],[-22,-4],[-35,-4],[-28,-5],[-30,-14],[-36,-1],[-39,13],[-42,-5],[-25,5],[-19,1],[-36,-15],[-23,-16],[-19,-5],[-33,-2],[-21,-1],[-15,-24],[-22,3],[-37,-9],[-29,5],[-18,-4],[-20,-8],[-23,-47],[-20,-42],[-17,-23],[-27,3],[-19,8],[-18,6],[-32,-13],[-23,5],[-17,-5],[-72,-9],[-14,-32],[-17,-17],[-36,-5],[-32,-6],[-57,-5],[-38,-7],[-53,-14],[-41,-20],[-42,-11],[-89,-13],[-18,-7],[-51,-12],[-39,-16],[-33,-28],[-17,-2],[-49,-2],[-32,-9],[-31,-11],[-31,-2],[-23,8],[-20,6],[-42,-19],[-60,-34],[-39,-24],[-42,-23],[-37,-29],[-24,-13],[-39,-15],[-49,-11],[40,-142],[25,-77],[33,-101],[33,-104],[31,-96],[8,-25],[23,-70],[1,-4],[9,-28],[17,-51],[11,-31],[18,-50],[12,-34],[-9,-6],[-5,-3],[-43,-31],[-32,-24],[-18,-8],[-41,-6],[-65,-11],[-51,-11],[-23,-12],[-54,-33],[-80,-48],[-109,-65],[-60,-54],[-61,-58],[-70,-60],[-118,-110],[-83,-70],[-178,-142],[-130,-92],[-128,-88],[-51,-37],[-115,-84],[-72,-48],[-26,-23],[-19,-13],[-32,-21],[-33,-24],[-19,-14],[-17,-17],[-21,-20],[-23,-22],[-32,-23],[-24,-15],[-30,-22],[-18,-21],[-21,-28],[-16,-29],[-27,-30],[-22,-8],[-46,-12],[-43,-13],[-28,-13],[-30,-28],[-32,-33],[-48,-48],[-22,-21],[-23,-19],[-27,-24],[-42,-43],[-29,-38],[-31,-43],[-58,-48],[-80,-78],[-66,-67],[-81,-78],[-50,-51],[-40,-38],[-173,-170],[-639,-614],[-46,-46],[-120,-118],[-11,-11],[-85,-83],[-87,-80],[-107,-96],[-37,-34],[-37,-45],[-65,-60],[-58,-57],[-26,-21],[-25,-23],[-27,-25],[-43,-38],[-24,-20],[-24,-16],[-28,-18],[-26,-20],[-19,-15],[-26,-23],[-18,-20],[-22,-25],[-17,-19],[-32,-33],[-20,-22],[-19,-21],[-19,-14],[-38,-30],[-18,-16],[-22,-23],[-36,-25],[-28,-13],[-15,-24],[-29,-20],[-32,-37],[-24,-19],[-23,-20],[-17,-19],[-17,-19],[-61,-59],[-96,-98],[-81,-89],[-52,-60],[-23,-15],[-71,-51],[-16,-13],[-21,-34],[-14,-21],[-18,-20],[-20,-26],[-16,-25],[-21,-23],[-25,-8],[-15,-23],[-29,-25],[-17,-19],[-17,-20],[-15,-17],[-26,-26],[-23,-23],[-19,-26],[-24,-22],[-26,-27],[-16,-19],[-20,-13],[-76,-90],[-35,-52],[-38,-47],[-18,-9],[-67,-75],[-28,-12],[-20,-28],[-27,-29],[-105,-118],[-114,-128],[-149,-168],[27,-170],[1,-6],[8,-46],[12,-64],[39,-226],[49,-326],[-144,-9],[-40,-17],[-39,-27],[-38,-18],[-24,-26],[-35,-24],[-37,-33],[-24,-18],[-42,-18],[-39,-25],[-73,-61],[-39,-26],[-25,-30],[-35,-47],[-20,-21],[-19,-18],[-15,-18],[-28,-43],[-30,-33],[-43,-50],[-22,-29],[-22,-28],[-22,-35],[-28,-30],[-22,-20],[-18,-21],[-30,-31],[-28,-39],[-29,-36],[-25,-33],[-16,-16],[-16,-18],[-40,-38],[-46,-54],[-14,-28],[-18,-34],[-41,-82],[-37,-23],[-24,-24],[-20,-33],[-17,-26],[-27,-29],[-16,-41],[-22,-42],[-23,-26],[-34,-30],[-42,-78],[-17,-28],[-30,-40],[-15,-20],[-20,-39],[-17,-13],[-16,-33],[-26,-15],[-38,-79],[-19,-28],[-35,-36],[-17,-31],[-26,-45],[-19,-19],[-25,-43],[-17,-34],[-24,-27],[-14,-32],[-32,-56],[-19,-38],[-26,-46],[-15,-26],[-15,-25],[-14,-26],[-23,-33],[-18,-20],[-15,-27],[-14,-26],[-21,-37],[-29,-60],[-26,-70],[-18,-16],[-12,-41],[-21,-31],[-16,-31],[-10,-43],[-21,-27],[-21,-43],[-20,-31],[-13,-28],[-17,-38],[-16,-45],[-19,-26],[-17,-36],[-13,-44],[-19,-31],[-11,-28]],[[48847,20400],[-13,-26],[-33,-70],[-16,-29],[-15,-24],[-15,-47],[-21,-45],[-13,-27],[-16,-35],[-15,-26],[-14,-29],[-16,-27],[-23,-42],[-15,-30],[-15,-35],[-18,-28],[-23,-30],[-21,-25],[-17,-29],[-22,-20],[-15,-30],[-17,-40],[-13,-23],[-20,-31],[-17,-38],[-24,-37],[-25,-61],[-14,-24],[-52,-22]],[[25104,20221],[-10,-68],[7,-69],[-6,-74],[-19,-50],[-20,-44],[0,-1],[-112,-92],[-44,-44],[-52,-145],[-25,-44],[-20,-36],[-2,-52],[-30,-62],[1,-58],[-25,-48],[-18,-36],[-28,-40],[25,-110],[0,-72],[-25,-75],[-38,-18],[-18,-18],[-17,-75],[-11,-36],[-15,-26],[-17,-14],[-5,-45],[7,-44],[-8,-32],[-19,-19],[-18,-14],[-29,-13],[-19,-15],[-6,-40],[-15,-32],[-24,-34],[-11,-35],[-2,-41],[0,-46],[-7,-39],[-24,-23],[-22,-9],[-33,5],[-21,7],[-21,-9],[16,-20],[17,-9],[13,-40],[16,-35],[8,-46],[-1,-48],[-10,-34],[-14,-22],[-21,-5],[-30,0],[-24,-5],[19,-28],[19,-3],[16,-10],[12,-37],[-13,-40],[-21,-15],[-15,-20],[-6,-45],[9,-30],[-18,-45],[-25,-5],[-21,11],[-21,20],[-16,20],[8,-41],[15,-26],[14,-46],[-4,-38],[-16,-43],[-17,-26],[-19,-24],[-21,-7],[-18,2],[-22,-16],[-12,-28],[1,-36],[5,-43],[-2,-48],[-4,-37],[-17,-45],[-15,-23],[-18,-7],[-31,-5],[-22,-7],[-21,0],[-12,-33],[-10,-32],[-20,-15],[-22,-6],[-15,-16],[11,-37],[3,-40],[-1,-40],[11,-47],[7,-35],[9,-31],[-2,-48],[-14,-30],[-18,-19],[-3,-43],[-15,-48],[-11,-32],[-1,-37],[16,-33],[11,-31],[-9,-46],[-29,-30],[-15,-47],[-21,-35],[-16,-23],[-15,-12],[-40,-31],[-26,0],[-27,16],[-21,16],[-17,11],[-30,5],[-27,-2],[-6,-37],[7,-33],[12,-46],[11,-43],[6,-39],[4,-39],[-2,-38],[-3,-37],[-1,-37],[6,-50],[9,-52],[7,-51],[3,-55],[-13,-41],[-20,-8],[-36,-18],[-17,-7],[-21,-27],[-17,-20],[-23,-10],[-21,-15],[-25,-2],[-31,21],[-27,-2],[-33,-10],[-21,-4],[-33,15],[-17,7],[-10,-31],[6,-46],[6,-42],[-3,-46],[-16,-38],[-15,-32],[-5,-35],[0,-45],[6,-64],[2,-36],[-8,-66],[-7,-48],[2,-36],[14,-53],[1,-37],[-12,-49],[-17,-44],[-21,-26],[-12,-27],[0,-63],[0,-38],[-10,-44],[-11,-49],[-6,-52],[0,-58],[-4,-50],[-17,-41],[-23,-26],[-28,-17],[-16,-32],[-6,-71],[-8,-56],[-15,-50],[-17,-24],[-15,-24],[-19,-27],[-20,-32],[-34,-44],[-13,-57],[-11,-47],[-19,-13],[-1,-60],[-12,-27],[-28,-30],[-30,-11],[-32,-2],[-21,1],[-19,10],[-17,17],[-31,58],[-24,52],[-14,39],[-11,29],[2,64],[3,51],[-24,9],[-21,-8],[-31,-14],[-21,-16],[-7,-49],[-6,-48],[-20,32],[-18,26],[-18,12],[-17,16],[-17,13],[-22,34],[-22,9],[-22,-17],[-30,-16],[-14,-34],[-29,-58],[-14,-30],[-25,-22],[-21,-12],[-18,-32],[-5,-40],[-8,-60],[-3,-43],[-1,-34],[-1,-34],[-3,-42],[-9,-53],[-18,-49],[-16,-32],[-17,-41],[-9,-55],[-9,-34],[-22,-11],[-32,-10],[-18,-10],[-32,-32],[-21,-12],[-27,8],[-18,3],[-23,-20],[-15,-19],[-19,-18],[-8,-55],[-4,-37],[-29,-3],[-22,15],[-32,29],[-17,8],[-17,-8],[-15,-29],[-25,-25],[-29,-35],[-26,-30],[-18,-30],[-28,-25],[-9,-42],[-15,-41],[-7,-37],[-6,-48],[-9,-65],[-4,-37],[-9,-53],[-19,-14],[-33,-1],[-22,-8],[-17,-10],[-19,-50],[-24,-64],[-11,-33],[-5,-37],[-1,-41],[0,-37],[-2,-43],[3,-43],[8,-35],[-9,-27],[-21,-63],[-17,-16],[-16,-20],[-15,-31],[-10,-32],[-8,-33],[-38,-78],[-21,-27],[-9,-38],[-19,-52],[-13,-28],[-28,-54],[-131,-263],[-25,-59],[-72,-165]],[[21028,11474],[-54,19],[-36,12],[-19,7],[-91,31],[-90,29],[-11,28],[-31,6],[-18,-2],[-23,-10],[-26,-12],[-77,-66],[-16,-14],[-31,-21],[-31,-7],[-27,-1],[-28,7],[-26,13],[-17,9],[-17,10],[-46,16],[-48,4],[-27,9],[-26,16],[-16,20],[-12,36],[7,50],[-16,34],[-12,94],[-9,64],[-13,64],[-8,35],[-9,52],[-7,36],[-8,41],[-9,46],[-7,36],[-7,38],[-8,40],[-7,36],[-7,34],[-7,38],[-16,80],[-16,67],[-16,60],[-12,36],[-10,30],[-10,31],[-15,33],[-2,1],[-30,21],[-15,10],[-23,15],[-17,15],[-21,38],[-17,24],[-17,19],[-30,29],[-25,22],[-39,21],[-32,19],[-33,18],[-20,21],[-18,16],[-26,37],[-21,20],[-29,23],[-26,14],[-160,151],[-28,27],[-20,25],[-18,29],[-17,32],[-11,26],[-13,34],[-10,35],[-10,40],[-11,35],[-11,41],[-9,34],[-11,38],[-21,75],[-21,11],[-26,-21],[-18,6],[-21,10],[-23,10],[-24,9],[-51,25],[-50,26],[-17,18],[-15,22],[-13,25],[-36,70],[-14,31],[-16,29],[-19,25],[-45,45],[-38,30],[-22,16],[-6,4],[-18,13],[-70,38],[-30,18],[-22,18],[-29,41],[-44,88],[-17,46],[-11,29],[-22,54],[-21,42],[-11,33],[-12,31],[-5,36],[4,63],[-2,37],[-24,35],[-51,49],[-42,54],[-18,22],[-17,24],[-22,17],[-24,8],[-95,11],[-21,6],[-18,9],[-20,16],[-27,45],[-15,23],[-23,20],[-16,17],[-21,23],[-31,15],[-20,14],[-16,20],[-16,26],[-6,12],[-21,13],[-24,2],[-23,11],[-21,-6],[-1,0],[-17,0],[-70,76],[-23,-3],[-24,-4],[-21,0],[-28,13],[-24,-84],[-19,-63],[-6,-21],[-97,4],[-8,-2],[-4,-2],[-6,-4],[-9,-10],[-157,-188],[-27,-59],[-1,-1],[-1,-9],[-12,-33],[-3,-7],[-5,-16],[-7,-18],[-12,-22],[-70,-120],[-10,-18],[-10,-24],[-32,-76],[-21,-23],[-9,2],[-9,2],[-7,14],[-1,7],[-7,36],[-3,11],[-11,41],[-6,17],[-8,4],[-47,26],[-15,-16],[-1,-2],[-6,-32],[0,-1],[-1,-6],[-2,-5],[-6,-22],[-1,-5],[-1,-2],[-5,-15],[-1,-3],[-2,-5],[-21,-51],[-57,-137],[3,-39],[0,-1],[0,-6],[0,-6],[0,-7],[0,-4],[-2,-43],[0,-2],[-1,-7],[-1,-6],[0,-6],[-1,-6],[-2,-5],[0,-2],[-6,-23],[-1,-5],[-20,-97],[-2,-10],[-61,-73],[-10,-8],[-14,-3],[-8,-1],[-9,9],[-24,23],[-21,96],[-21,94],[-47,-14],[-48,-13],[-38,-44],[-14,-34],[-15,-50],[-12,-131],[-29,-12],[-11,0],[-14,8],[-21,11],[-3,1],[-3,2],[-3,0],[-24,4],[-3,0],[-3,0],[-3,-1],[-19,-5],[-1,0],[-3,-1],[-3,-2],[-2,-1],[-44,-31],[-1,-1],[-48,-36],[-6,-1],[-7,0],[-11,4],[-3,1],[-3,1],[-2,0],[-17,1],[-29,-25],[-3,-13],[-60,-222],[-34,-100],[-50,-59],[-44,-53],[-1,0],[-19,-21],[-17,-19],[6,-55],[5,-43],[4,-31],[1,-10],[9,-77],[-2,-75],[0,-14],[0,-7],[-4,-14],[-9,-12],[-1,0],[-6,-5],[-66,-51],[-35,71],[-1,1],[-25,51],[-15,31],[-2,5],[-21,51],[-11,27],[-37,93],[-16,39],[-23,45],[-3,7],[-73,36],[-10,-3],[-1,-2],[-12,-18],[-1,-10],[-2,-8],[-7,-21],[-4,-6],[-1,-3],[-15,-1],[-44,20],[-3,1],[-28,18],[-4,2],[-10,9],[-4,11],[-1,3],[-2,16],[-4,15],[-1,4],[0,1],[-9,4],[-6,-3],[-16,-16],[-2,-2],[-8,-10],[-14,-16],[-10,-16],[-1,0],[-1,-2],[-7,-16],[-2,-15],[-2,-12],[-9,-75],[-1,-8],[-3,0],[-56,-7],[-40,-5],[-9,5],[-23,16],[-29,-81],[-28,-79],[-2,-5],[0,-1],[-2,-5],[-6,-23],[0,-14],[0,-2],[-5,-14],[0,-1],[-9,-5],[-7,0],[-24,13],[-36,23],[-15,10],[-6,10],[-2,28],[-1,3],[0,3],[-5,54],[-33,-5],[-2,-2],[-3,-2],[-3,-2],[-17,-6],[-2,-1],[-3,-1],[-4,0],[-3,0],[-3,1],[-27,8],[-2,1],[-3,1],[-3,2],[-3,3],[-3,2],[-1,2],[-4,4],[-42,69],[-2,6],[-1,5],[-2,6],[-1,4],[-19,92],[-7,26],[-20,37],[-21,30],[-5,4],[-6,3],[-14,-3],[-4,-3],[-11,-6],[-10,-5],[-3,-2],[-3,-1],[-3,0],[-21,-4],[-1,0],[-3,0],[-3,0],[-3,1],[-2,1],[-34,13],[-1,0],[-3,1],[-3,2],[0,1],[-22,15],[-2,2],[-3,3],[-3,3],[-2,3],[-1,1],[-2,3],[-1,2],[-7,11],[-1,1],[-2,4],[-2,4],[-1,1],[14,36],[15,41],[40,109],[1,7],[0,38],[-1,6],[0,7],[0,6],[-1,6],[-1,6],[-1,6],[-1,3],[-7,32],[0,3],[-2,5],[-1,6],[-2,5],[-2,5],[-2,3],[-15,33],[0,1],[-3,4],[-2,4],[-2,4],[-3,3],[-1,2],[-15,17],[-2,2],[-3,2],[-3,2],[-2,2],[-29,17],[-34,19],[-33,-80],[-13,-33],[-20,-51],[-17,10],[-41,24],[-39,22],[-26,19],[-10,16],[-29,51],[19,98],[5,28],[13,66],[-9,20],[-11,10],[-16,13],[-23,16],[-30,2],[-30,-3],[-32,-12],[-31,-24],[-19,-28],[-27,-36],[-28,-20],[-51,-28],[-57,-32],[-30,-16],[-41,14],[-43,31],[-34,48],[-45,39],[-47,36],[-17,12],[-22,30],[-4,5],[21,25],[2,1],[3,2],[19,15],[2,6],[-1,15],[-4,20],[-54,116],[-21,38],[-8,14],[-4,6],[-10,7],[-10,-1],[-9,-8],[-7,-11],[-2,-2],[-6,-39],[-1,0],[-1,-3],[-8,-20],[-6,-7],[-1,0],[-10,-3],[-8,0],[-23,1],[-11,1],[-7,1],[-40,8],[-1,0],[-19,9],[-5,5],[-1,1],[-20,30],[-5,8],[-13,21],[-20,40],[-30,50],[-1,1],[-25,35],[-6,7],[-7,8],[-7,8],[-5,7],[-7,10],[-16,21],[-9,14],[-13,17],[-5,-18],[-14,-1],[-67,-2],[-4,0],[-172,1],[-231,-4],[-8,0],[-103,-1],[-28,2],[-42,1],[-137,-2],[-29,0],[-77,-1],[-209,-3],[-125,0],[-94,0],[-289,0],[-34,0],[-27,0],[-20,1],[-30,0],[-37,3],[-22,0],[-23,0],[-21,0],[-21,0],[-37,0],[-18,2],[-21,-1],[-29,7],[-19,0],[-21,-1],[-24,-2],[-33,-2],[-19,1],[-19,-1],[-20,20],[-21,9],[-20,4],[-27,3],[-21,6],[-19,-34],[-3,-5],[-17,-49]],[[11017,14565],[-12,9],[-17,11],[-18,10],[-13,16],[-11,13],[-35,43],[-27,37],[-32,59],[-28,70],[-24,51],[-4,8],[-48,101],[-63,129],[-54,112],[-16,29],[-31,88],[-28,117],[-1,14],[-7,57],[18,137],[24,60],[34,59],[52,58],[52,29],[67,13],[115,-35],[137,-50],[31,-12],[59,-12],[50,-1],[78,34],[13,14],[10,11],[76,85],[2,3],[22,43],[30,66],[16,39],[16,59],[9,33],[17,183],[-15,203],[-7,75],[-4,30],[-6,44],[-6,38],[-7,37],[-14,56],[-14,38],[-57,73],[-103,106],[-26,20],[-18,7],[-14,5],[-6,2],[-21,3],[-25,1]],[[11133,17093],[6,4],[22,19],[31,18],[55,41],[71,54],[329,239],[4,3],[24,18],[65,46],[70,47],[186,129],[45,31],[10,7],[185,124],[206,149],[105,77],[38,27],[36,26],[7,4],[8,3],[18,15],[-103,-23],[-37,22],[-80,30],[-92,36],[-47,25],[-45,61],[-27,79],[-9,90],[10,85],[13,73],[44,114],[52,136],[4,14],[14,67],[1,6],[1,6],[16,56],[1,5],[2,5],[2,5],[2,4],[1,2],[31,62],[1,3],[2,2],[22,37],[1,2],[2,4],[47,88],[14,33],[2,6],[1,3],[1,6],[1,1],[7,20],[11,58],[3,34],[-1,16],[-18,49],[-72,166],[-1,1],[-2,5],[-1,4],[-18,54],[0,2],[-2,5],[-1,6],[-1,3],[-26,124],[-1,2],[-1,6],[-1,6],[0,6],[-1,6],[0,4],[-3,65],[0,3],[0,6],[0,6],[0,7],[0,1],[1,13],[0,5],[1,6],[0,2],[2,14],[1,4],[1,6],[1,5],[1,5],[6,23],[1,1],[1,5],[2,5],[1,2],[7,19],[1,3],[2,5],[3,4],[2,4],[2,4],[3,3],[3,3],[2,3],[3,2],[1,0],[10,7],[2,1],[3,1],[3,1],[3,1],[2,0],[10,1],[75,6],[105,12],[54,22],[21,22],[34,95],[-20,57],[-35,79],[-20,35],[-46,68],[-37,52],[-33,92],[3,42],[2,12],[17,195],[10,106],[9,66],[19,157],[5,54],[8,66],[6,56],[10,75],[10,86],[9,71],[24,208],[7,64],[7,72],[13,133],[9,89],[31,269],[12,103],[5,37],[4,45],[13,126],[9,57],[2,39],[6,50],[2,47],[1,9],[13,127],[27,286],[9,39],[8,65],[18,42],[15,55],[7,33],[10,36],[3,16],[3,16],[6,35],[16,2],[6,1],[21,45],[5,12],[-9,60],[-10,50],[23,30],[11,15],[43,52],[4,3],[18,14],[26,-12],[27,-10],[21,-9],[34,-3],[26,-1],[8,7],[24,60],[18,44],[11,41],[12,55],[9,33],[12,22],[17,20],[14,8],[20,2],[27,-9],[16,-7],[32,-7],[39,-9],[19,-4],[51,9],[22,67],[12,80],[19,85],[30,27],[17,13],[58,110],[1,1],[3,1],[-2,4],[22,68],[-26,51],[-39,76],[-19,38],[30,69],[29,-3],[36,-30],[32,14],[11,26],[8,27],[11,22],[29,43],[42,55],[47,62],[39,50],[16,13],[5,-13],[24,47],[7,39],[1,36],[4,105],[5,148],[4,105],[1,182],[2,210],[3,140],[2,109],[5,265],[2,71],[1,55],[1,48],[2,49],[4,226],[0,37],[1,39],[2,168],[0,7],[2,100],[0,61],[1,64],[0,4],[-1,490],[-1,521],[3,55],[0,84],[5,69],[4,43],[0,3],[-37,146],[-38,83],[-28,57],[-8,13],[-31,38],[-34,18],[-14,3],[-20,8],[-25,47],[-19,41],[-18,41],[-26,64],[-20,50],[-29,57],[-8,14],[-66,51],[-57,-41],[-9,-6],[-2,-2],[-29,-24],[-22,-11],[-17,60],[-41,60],[-14,11],[-67,12],[-15,3],[-32,12],[-29,11],[-38,26],[-38,23],[-21,14],[-35,7],[-33,7],[-62,-8],[-26,-6],[-32,-8],[-41,-17],[-7,20],[-13,43],[-8,24],[-16,51],[-22,113],[-1,11],[-9,70],[-40,192],[-43,217],[-4,48],[-9,133],[14,190],[21,131],[36,126],[52,108],[43,81],[31,50],[91,92],[20,14],[21,13],[86,55],[80,47],[15,1],[56,25],[30,13],[49,23],[60,48],[32,26],[31,24],[70,44],[56,58],[9,14],[5,7],[20,33],[33,99],[22,67],[17,87],[24,76],[9,17],[10,17],[34,58],[26,37],[6,6],[62,66],[25,33],[29,38],[47,68],[25,45],[68,134],[40,96],[32,145],[6,25],[27,125],[4,15],[4,48],[2,57],[-2,67],[-11,81],[-13,71],[-18,62],[-20,65],[-34,158],[-13,62],[-1,58],[22,67],[16,97]],[[85589,26028],[-77,-194],[-3,-7],[-28,-76],[-22,-63],[-21,-54],[-27,-69],[-48,-125],[-5,-12],[-28,-72],[-71,-182],[-20,-52],[-12,-30],[-13,-33],[-14,-39],[-15,-38],[-61,-157],[-37,-95],[-15,-39],[-22,-58],[-24,-60],[-22,-58],[-47,-120],[-28,-74],[-20,-54],[-37,-91],[-80,-208],[-51,-131],[-26,-64],[-15,-41],[-6,-15],[-20,-52],[-23,-60],[-36,-88],[-25,-67],[-83,-207],[-24,-55],[-13,-37],[-76,-190],[-17,-44],[-23,-58],[-50,-128],[-11,-30],[-24,-60],[-23,-56],[-26,-66],[-22,-55],[-24,-65],[-15,-38],[-16,-42],[-12,-27],[-14,-36],[-2,-5],[-22,-54],[-24,-61],[-40,-106],[-16,-48],[-2,-6],[-31,-82],[-13,-33],[-12,-30],[-12,-31],[-15,-38],[0,-1],[-13,-32],[-13,-33],[-11,-30],[-15,-37],[-38,-97],[-13,-34],[-30,-75],[-12,-31],[-34,-87],[-37,-94],[-15,-39],[-98,-250],[-46,-115],[-37,-96],[-23,-58],[-26,-65],[-43,-111],[-156,-397],[-21,-56],[-84,-230],[-48,-116],[-6,-15],[-23,-60],[-2,-4],[-25,-73],[-30,-75],[-57,-141],[-68,-171],[-24,-62],[-29,-70],[-10,-33],[-40,-103],[-13,-40],[-2,-5],[-13,-29],[-16,-37],[-13,-25],[-1,-3],[-21,-48]],[[82722,18684],[-10,-11],[-26,-29],[-22,-23],[-7,-8],[-24,-26],[-43,-47],[-36,-39],[-49,-53],[-26,-29],[-20,-22],[-83,-91],[-42,-47],[-24,-26],[-82,-90],[-56,-62],[-18,-19],[-44,-55],[-108,-131],[-18,-21],[-58,-71],[-50,-63],[-95,-120],[-18,-22],[-21,-27],[-48,-60],[-36,-45],[-40,-51],[-32,-40],[-76,-96],[-7,-9],[-88,-110],[-3,-5],[-23,-28],[-134,-169],[-24,-30],[-20,-25],[-27,-34],[-43,-54],[-23,-28],[-26,-35],[-89,-110],[-85,-110],[-107,-134],[-99,-126],[-120,-151],[-36,-47],[-31,-40],[-108,-141],[-1,-2],[-43,-57],[-26,-33],[-106,-137],[-30,-39],[-3,-4],[-13,-16],[-16,-21],[-25,-33],[-80,-93],[-59,-70],[-16,-21],[-1,-1],[-14,-19],[-24,-32],[-21,-29],[-16,-21],[-14,-20],[-94,-126],[-15,-20],[-66,-82],[-25,-32],[-23,-22]],[[79686,14944],[-26,28],[-73,98],[-43,61],[-59,80],[-10,14],[-84,115],[-48,64],[-19,27],[-25,33],[-33,45],[-2,3],[-60,82],[-35,47],[-208,282],[-61,84],[-79,107],[-39,52],[-21,29],[-32,44],[-15,20],[-22,30],[-22,31],[-11,15],[-5,6],[-33,46],[-19,26],[-81,111],[-22,31],[-32,43],[-46,63],[-18,27],[-83,112],[-23,33],[-21,25],[-15,20],[-28,38],[-52,69],[-267,359],[-17,23],[-23,31],[-23,32],[-18,24],[-36,46],[-16,22],[-36,49],[-51,69],[-19,27],[-20,26],[-35,47],[-21,28],[-22,30],[-17,21],[-33,45],[-251,335],[-3,3],[-24,32],[-77,102],[-34,46],[-104,136],[-19,24],[-45,60],[-50,67],[-54,73],[-4,5],[-22,29],[-18,24],[-21,29],[-8,10],[-19,25],[-34,45],[-31,42],[-21,27],[-21,25],[-31,43],[-88,117],[-75,101],[-50,70],[-73,95],[-16,24],[-17,26],[-64,85],[-102,133],[-135,176],[-24,35],[-45,58],[-29,39],[-15,21],[-60,80],[-23,28],[-18,25],[-33,45],[-16,20],[-196,262],[-15,19],[-36,44],[-123,168],[-124,164],[-126,169],[-35,45],[-42,55],[-78,103],[-16,21],[-14,19],[-25,33]],[[74923,21326],[-180,310],[-7,13],[-60,104],[-133,231],[-50,87],[-226,393],[-80,138],[-20,35],[-20,33],[-33,58],[-1,2],[-117,205],[-323,142],[-135,67],[-193,252],[-44,55],[-62,77],[-28,36],[-57,74],[-4,7],[-19,23],[-47,61],[-39,55],[-2,3],[-107,137],[-122,158],[-86,112],[-23,29],[-55,73],[-159,208],[-71,96],[-30,41],[-24,35],[-16,22],[-21,32],[-2,2],[-57,71],[-44,55],[-45,55],[-14,19],[-74,91],[-38,47],[-19,26],[-19,27],[-1,2],[-70,97],[-58,81],[-21,25],[-73,90],[-20,26],[-20,24],[-46,57],[-16,23],[-19,26],[-20,26],[-75,101],[-98,130],[-16,21],[-4,5],[-95,121],[-86,111],[-45,59],[-155,191],[-25,33],[-15,19],[-54,72],[-242,320],[-48,64],[-90,114],[-17,22],[-30,38],[-272,348],[-46,59],[-269,349]],[[11133,17093],[-50,-5],[-2,0],[-4,0],[-98,-16],[-12,-1],[-94,-13],[-165,-21],[-53,16],[-69,15],[-132,46],[-79,88],[-49,54],[-85,104],[-66,56],[-64,47],[-91,52],[-82,38],[-130,45],[-74,36],[-49,33],[-39,40],[-52,53],[-59,111],[-44,84],[-38,100],[-1,5],[-21,108],[-4,77],[3,59],[32,112],[46,76],[49,52],[47,33],[78,36],[73,19],[84,17],[89,11],[31,14],[90,40],[56,35],[80,73],[69,45],[67,98],[38,61],[21,43],[-57,36],[-3,1],[-20,10],[-32,21],[-21,15],[-17,12],[-2,1],[-27,17],[-264,164],[-57,37],[-20,9],[-198,124],[-23,16],[-80,43],[-43,25],[-24,14],[-67,40],[-1,0],[-19,14],[-36,22],[-15,15],[-1,1],[-64,40],[-111,69],[-257,154],[-55,32],[-50,32],[-200,124],[-83,50],[-20,13],[-16,10],[-3,2],[-23,13],[-109,74],[-28,18],[-74,39],[-37,22],[-64,43],[-51,29],[-117,78],[-164,103],[-22,14],[-43,27],[-28,17],[-55,29],[-19,11],[-62,39],[-70,39],[-43,33],[-48,25],[-24,16],[-27,16],[-95,57],[-14,9],[-25,16],[-25,13],[-16,12],[-93,54],[-27,18],[-81,50],[-58,36],[-4,3],[-29,22],[-21,13],[-99,62],[-135,82],[-183,117],[-48,29],[-29,19],[-19,12],[-42,26],[-104,66],[-96,59],[-160,104],[-26,15],[-25,16],[-21,13],[-18,12],[-22,13],[-21,13],[-17,11],[-7,4],[-32,20],[-9,8],[-16,13],[-41,71],[-256,447],[-14,22],[-187,328],[-157,273],[-17,29],[-14,23],[-81,141],[-15,31],[-17,21],[-19,35],[-17,27],[-21,35],[-19,33],[-17,32],[-27,45],[-16,27],[-46,80],[-142,243],[-108,185],[-64,110],[-15,24],[-31,52],[-42,72],[-139,238],[-23,44],[-54,89],[-25,42],[-144,238],[-27,33],[-16,27],[-46,79],[-30,52],[-15,25],[-12,20],[-6,10],[-19,30],[-18,31],[-4,7],[-17,30],[-15,24],[-192,332],[-53,90],[-8,13],[-40,66],[-119,201],[-104,174],[-61,105],[-80,132],[-17,29],[-161,271],[-21,38],[-24,34],[-12,26],[-160,268]],[[68338,29896],[-52,-61],[-183,-213],[-85,-100],[-215,-255],[-141,-165],[-248,-290],[-108,-128],[-500,-595],[-143,-164],[-772,-908],[114,-619],[10,-56],[2,-10],[45,-246],[14,-78],[10,-54],[18,-102],[12,-66],[11,-58],[34,-184],[0,-1],[18,-94],[27,-145],[34,-184],[11,-59],[14,-76],[98,-528],[13,-67],[9,-49],[52,-283],[31,-164],[0,-2],[24,-126],[21,-113],[23,-121],[0,-2],[14,-79],[12,-62],[45,-245],[45,-229],[38,-201],[44,-234],[47,-249],[10,-57],[1,-7],[14,-62],[41,-207],[89,-452],[19,-92],[23,-116],[35,-181],[3,-14],[26,-135],[13,-67],[9,-44],[0,-1],[7,-41],[17,-100],[14,-80],[7,-39],[7,-44],[16,-89],[8,-46],[13,-75],[7,-37],[19,-108],[35,-192],[1,-3],[52,-287],[19,-99],[17,-92],[62,-339],[14,-79],[13,-68],[7,-35],[29,-134],[20,-116],[8,-48],[19,-113],[32,-172],[36,-198],[12,-62],[8,-46],[25,-139],[89,-468],[1,-3],[28,-150],[19,-103],[7,-41],[31,-111]],[[67763,17039],[-57,-20],[-108,-37],[-11,-3],[-15,-1],[-37,-68],[-5,-10],[-39,-31],[-34,-52],[-4,-6],[-73,19],[-51,-39],[-73,-16],[-17,-4],[-18,-4],[-2,4],[-16,59],[-50,-15],[-4,-1],[-46,-13],[-10,-1],[-4,-7],[-17,-29],[-7,-1],[-12,-34],[-17,-24],[-7,-10],[-10,-15],[-5,-28],[-2,-6],[8,-35],[-12,-28],[-1,0],[-32,-66],[-7,-15],[-16,-35],[-48,-30],[-1,-1],[-14,1],[-13,9],[-1,0],[-8,0],[-27,-6],[-10,-8],[-43,-35],[-3,-2],[-6,-8],[-18,-36],[-8,-24],[-3,-21],[-1,0],[-4,-21],[-16,-40],[-20,-45],[-25,-53],[-1,-2],[-13,-20],[-5,-6],[-1,-1],[-1,0],[-8,0],[-8,21],[-7,-9],[-45,-56],[-54,-66],[-13,-17],[-26,-80],[-28,-86],[-59,95],[-65,45],[-27,-2],[-13,-9],[-7,-14],[-2,-4],[0,-14],[0,-2],[-61,1],[-13,1],[-42,13],[-1,1],[-14,-39],[-7,-17],[-6,-7],[-74,-80],[-3,-3],[-54,-68],[-17,-21],[-16,-20],[-6,-8],[-59,-153],[-3,-7],[-2,-7],[-5,-28],[4,-31],[-2,-14],[-1,-3],[-6,-33],[-6,-32],[-2,-6],[-2,-3],[-6,-3],[-3,0],[-20,3],[-17,1],[-107,35],[-62,20],[-2,1],[-1,32],[-7,66],[-10,98],[-1,12],[-7,15],[-6,10],[-9,5],[-25,-4],[-38,-13],[-17,-6],[-10,-12],[-1,-9],[5,-7],[25,-47],[1,-18],[-1,-56],[0,-29],[0,-19],[-5,-27],[-4,-12],[-42,-138],[-5,-15],[-3,-11],[-5,-6],[-43,-19],[-28,-18],[-12,-10],[-6,-12],[-14,-28],[0,-2],[-29,-75],[-5,-14],[-5,-12],[1,-3],[13,-129],[4,-44],[3,-24],[-46,-13],[-20,-6],[-32,-10],[-48,-14],[-34,-10],[-19,-132],[-28,-120],[12,-39],[-25,-106]],[[65158,14382],[-15,17],[-100,97],[-45,105],[8,85],[-35,84],[-85,82],[-72,183],[-16,207],[-12,113],[13,101],[13,32],[20,153],[-20,71],[10,74],[40,83],[74,122],[37,38],[18,4],[37,38],[11,83],[-26,178],[-40,118],[-36,84],[-194,45],[-67,21],[-244,157],[-121,132],[-122,56],[-74,28],[-109,120],[-91,150],[-30,19],[-70,127],[-15,19],[-29,23],[-9,5],[-92,50],[-89,29],[-52,71],[-48,71],[-46,55],[-21,16],[-89,29],[-41,86],[-112,168],[-33,34],[-44,9],[-4,2],[-3,2],[-92,39],[-49,21],[-91,39],[-30,20],[-7,5]],[[62819,18182],[-33,49],[-120,175],[-20,38],[-79,159],[-35,73],[-1,2],[0,1],[-2,5],[-1,2],[-51,117],[-1,1],[-4,11],[-2,2],[-2,5],[-2,4],[-3,3],[-1,2],[-33,43],[-25,32],[-2,2],[-2,3],[-40,41],[-1,2],[-3,3],[-3,2],[-3,2],[-3,1],[-57,44],[-90,107],[-24,44],[-83,209],[-85,218],[-6,135],[-31,74],[-16,14],[-41,105],[-2,28],[28,219],[-22,231],[-15,114],[-54,118],[-25,35],[-51,30],[-27,59],[1,54],[14,110],[38,111],[33,53],[30,118],[13,90],[20,146],[15,50],[27,69],[18,31],[18,136],[-16,73],[-17,52],[-74,-36],[-38,-20]],[[61828,21783],[-23,75],[-10,43],[-4,16],[-9,32],[-14,30],[-17,21],[-12,32],[-16,32],[-6,34],[-24,23],[-1,3],[-12,22],[-9,17],[-7,12],[-10,20],[-6,11],[-3,6],[-14,32],[-8,33],[-11,57],[-7,59],[-4,36],[-6,53],[-10,37],[-17,48],[-9,44],[-6,39],[-2,10],[-12,43],[-15,41],[-22,35],[-24,19],[-38,23],[-21,6],[-31,4],[-29,-2],[-24,0],[-20,-6],[-18,4],[-1,0],[-31,7],[-6,2],[-13,4],[-23,4],[-18,2],[-23,-4],[-26,-5],[-29,-5],[-24,-2],[-19,7],[-23,-1],[-17,3],[-22,-2],[-19,-9],[-5,-1],[-22,-8],[-18,-5],[-15,-11],[-9,-7],[-22,-7],[-22,-7],[-27,-2],[-27,4],[-20,2],[-19,0],[-30,2],[-29,7],[-26,10],[-28,10],[-20,-4],[-24,-4],[-18,-8],[-17,-7],[-17,-2],[-9,1],[-16,3],[-11,-3],[-9,-3],[-17,2],[-17,4],[-27,-4],[-25,-9],[-25,0],[-21,3],[-17,8],[-19,7],[-21,10],[-28,11],[-24,4],[-9,2],[-17,6],[-10,4],[-18,8],[-21,5],[-18,38],[-13,33],[-14,25],[-5,6],[-10,12],[-16,19],[-27,29],[-18,14],[-7,7],[-18,18],[-24,15],[-19,21],[-30,67],[-6,34],[-5,44],[1,37],[1,40],[0,46],[-4,48],[-9,49],[-9,35],[-10,30],[-25,54],[-19,44],[-11,35],[-8,40],[-14,64],[-4,18],[-3,16],[-6,39],[-7,41],[-3,15],[-1,56],[4,48],[14,66],[10,30],[13,31],[14,28],[14,24],[20,31],[15,23],[21,35],[15,19],[22,17],[19,12],[30,26],[16,24],[15,20],[18,21],[8,19],[14,32],[8,44],[9,47],[3,73],[-5,46],[-9,53],[-7,39],[-13,53],[-15,40],[-16,44],[-9,48],[-11,97],[0,2],[-5,53],[0,57],[4,35],[8,68],[0,1],[20,5],[30,10],[32,8],[12,1],[6,0],[22,7],[18,8],[25,5],[5,1],[21,7],[22,5],[16,15],[23,67],[32,74],[12,46],[19,44],[30,45],[27,32],[53,41],[20,21],[17,30],[12,39],[8,24],[5,12],[6,17],[13,32],[27,53],[27,54],[36,56],[19,26],[38,43],[18,21],[18,22],[25,26],[21,19],[28,24],[14,24],[25,22],[30,10],[21,19],[22,19],[25,19],[22,19],[32,35],[27,33],[19,27],[15,21],[14,21],[13,27],[17,32],[12,28],[12,28],[13,31],[11,41],[10,43],[12,56],[8,34],[8,34],[5,35],[5,49],[3,95],[-1,50],[0,36],[0,36],[0,36],[-1,41],[1,43],[0,38],[-3,36],[-5,41],[-9,47],[-10,30],[-16,52],[-9,43],[-11,31],[-8,33],[-15,17],[-33,23],[-27,18],[-31,18],[-25,19],[-26,26],[-19,13],[-17,18],[-19,21],[-17,18],[-26,34],[-22,30],[-24,38],[-9,30],[-14,29],[-8,35],[-19,24],[-13,25],[-12,41],[-14,33],[-21,40],[-25,48],[-18,51],[-5,16],[-5,17],[-14,41],[-12,38],[-9,36],[-12,21],[-5,8],[-17,17],[-11,42],[-7,43],[-2,37],[1,42],[-2,39],[-1,74],[-4,70],[-1,39],[1,37],[7,54],[14,40],[4,7],[12,21],[16,41],[1,4],[10,31],[5,35],[3,37],[8,41],[3,46],[3,47],[0,44],[-5,54],[-4,43],[-8,38],[-5,36],[-9,32],[-9,32],[-6,34],[-10,32],[-10,34],[-9,31],[-9,43],[-9,30],[-3,37],[-11,29],[-7,35],[7,20],[4,11],[-9,34],[-9,30],[-8,34],[-11,29],[-9,16],[-5,9],[-13,25],[-10,33],[-13,28],[-8,35],[-4,35],[-10,30],[-1,38],[5,31],[1,3],[4,37],[-4,5],[-11,11],[14,21],[3,12],[4,21],[7,33],[10,30],[8,36],[3,12],[7,22],[11,28],[13,33],[13,26],[16,28],[13,26],[18,31],[15,20],[16,19],[16,23],[16,15],[17,17],[18,17],[19,24],[17,13],[16,16],[16,13],[16,16],[15,15],[20,9],[17,13],[16,15],[15,17],[15,18],[15,21],[16,20],[13,14],[3,3],[5,7],[11,17],[14,24],[19,28],[13,23],[16,28],[12,24],[14,25],[13,26],[12,31],[12,38],[10,30],[9,35],[8,35],[9,34],[8,31],[10,34],[5,22],[3,11],[7,33],[5,34],[1,11],[4,26],[1,40],[0,39],[-1,37],[0,41],[0,38],[-1,38],[1,29],[0,9],[1,36],[-1,45],[-3,25],[-2,11],[-2,35],[2,33],[0,4],[1,30],[0,6],[0,2],[3,36],[5,35],[5,37],[6,34],[7,39],[4,39],[2,31],[0,6],[5,37],[6,42],[14,24],[15,19]],[[61828,21783],[-5,-3],[-12,-9],[-47,-34],[-86,-62],[-210,-147],[-30,-20],[-112,-79],[-25,-18],[-62,-43],[-22,-13],[-217,-120],[-41,-22],[-41,-23],[-37,-20],[-54,-31],[-21,-11],[-21,-5],[-19,-6],[-19,-6],[-30,-10],[-28,-10],[-48,-15],[-17,-5],[-19,-7],[-23,-6],[-39,-13],[-132,-41],[-36,-13],[-28,-10],[-30,-7],[-26,-6],[-24,-5],[-25,-3],[-17,-2],[-18,-3],[-18,-3],[-19,-5],[-20,-5],[-24,-6],[-33,-11],[-20,-5],[-19,-5],[-34,-4],[-30,-3],[-41,-2],[-32,1],[-26,1],[-70,4],[-58,0],[-67,8],[-43,2],[-39,-7],[-41,-6],[-31,-5],[-27,-4],[-34,-6],[-32,-10],[-30,-4],[-32,0],[-20,2],[-21,0],[-23,-11],[-32,-30],[-17,-7],[-21,2],[-25,4],[-51,6],[-60,-1],[-28,-1],[-35,-9],[-27,-6],[-20,-4],[-38,-9],[-34,-7],[-30,-7],[-20,-4],[-28,-3],[-38,-5],[-86,-15],[-18,-4],[-18,-4],[-23,-11],[-20,-17],[-19,-17],[-30,-13],[-20,4],[-20,5],[-19,-3],[-33,-18],[-26,-17],[-37,-10],[-25,-3],[-43,-4],[-27,-3],[-89,-8],[-24,-4],[-18,-4],[-28,-12],[-22,-12],[-40,-24],[-26,-9],[-19,1],[-3,0],[-15,-1],[-30,-13],[-24,-11],[-44,-21],[-17,-8],[-24,-11],[-24,-11],[-47,-24],[-22,-11],[-26,-12],[-42,-15],[-55,-16],[-26,-9],[-17,-7],[-24,-11],[-35,-12],[-18,-3],[-36,-7],[-27,-2],[-20,-2],[-26,-5],[-24,-4],[-19,-4],[-19,-3],[-17,-4],[-23,-6],[-23,-6],[-31,-7],[-21,-4],[-17,-3],[-34,-5],[-18,-4],[-26,-2],[-27,-1],[-20,-1],[-27,4],[-28,0],[-48,-6],[-29,-2],[-28,-1],[-17,-1],[-62,-7],[-21,-1],[-26,-3],[-20,-3],[-22,-8],[-18,-6],[-28,-14],[-41,-15],[-25,-7],[-21,-6],[-17,-5],[-23,-5],[-27,-7],[-28,-6],[-29,-7],[-19,-4],[-27,-3],[-33,-5],[-22,-8],[-24,-8],[-20,-6],[-29,-6],[-26,-2],[-30,-1],[-78,22],[-30,-27],[-21,-18],[-32,-15],[-24,-6],[-17,-6],[-22,-5],[-34,-6],[-37,-11],[-100,-35],[-73,-25],[-33,-9],[-45,-9],[-22,-5],[-46,-17],[-66,-34],[-47,-27],[-17,-10],[-7,-4],[-22,-12],[-23,-12],[-31,-17],[-22,-11],[-25,-16],[-22,-13],[-37,-24],[-52,-30],[-32,-14],[-19,-9],[-23,-10],[-20,-8],[-23,-9],[-30,-18],[-24,-19],[-26,-17],[-32,-20],[-22,-12],[-32,-15],[-40,-20],[-24,-8],[-23,-4],[-19,-3],[-27,-3],[-25,2],[-38,38],[-39,49],[-18,25],[-58,82],[-16,26],[-23,24],[-34,43],[-13,29],[-5,73],[6,45],[30,78],[24,51],[17,56],[16,49],[37,84],[9,33],[8,61],[2,37],[-22,16],[-23,0],[-20,-4],[-31,-9],[-45,-30],[-53,-47],[-25,-24],[-36,-43],[-36,-36],[-39,-50],[-29,-39],[-32,-29],[-39,-56],[-74,-78],[-34,-38],[-47,-66],[-39,-59],[-21,-30],[-49,-47],[-28,-30],[-20,-15],[-25,-36],[-29,-34],[-49,-54],[-31,-29],[-22,-21],[-19,-19],[-23,-22],[-26,-27],[-29,-29],[-72,-71],[-28,-19],[-48,-33],[-20,-14],[-54,-36],[-64,-46],[-39,-23],[-24,-19],[-19,-15],[-17,-7],[-17,-6],[-41,-14],[-22,-6],[-56,-14],[-38,-15],[-40,-4],[-45,3],[-32,3],[-20,14],[-15,34],[-15,45],[4,46],[10,34],[31,104],[13,35],[16,30],[24,38],[33,42],[23,24],[26,29],[19,12],[2,52],[4,36],[9,48],[13,45],[12,25],[28,49],[31,52],[41,80],[48,68],[49,58],[35,35],[14,24],[15,23],[21,30],[50,69],[26,37],[24,35],[25,30],[64,69],[20,23],[30,34],[59,74],[21,28],[22,29],[57,62],[52,52],[31,35],[28,42],[32,53],[24,53],[11,46],[10,37],[14,69],[3,56],[-12,31],[-16,19],[-21,6],[-20,-2],[-25,-6],[-33,-5],[-18,-2],[-18,-13],[-29,-25],[-18,-10],[-24,-9],[-28,-16],[-25,-16],[-23,-16],[-34,-31],[-36,-22],[-41,-27],[-42,-32],[-25,-26],[-36,-40],[-27,-25],[-20,-15],[-17,-12],[-31,-22],[-56,-49],[-44,-50],[-16,-12],[-1,-1],[-26,-24],[-52,-67],[-58,-62],[-50,-50],[-41,-34],[-19,-18],[-62,-75],[-17,-17],[-16,-21],[-27,-35],[-26,-34],[-20,-22],[-43,-49],[-15,-23],[-15,-25],[-31,-51],[-29,-40],[-60,-73],[-44,-55],[-44,-62],[-27,-41],[-19,-21],[-22,-27],[-14,-21],[-29,-48],[-19,-30],[-18,-28],[-34,-41],[-105,-137],[-54,-78],[-16,-25],[-15,-22],[-25,-49],[-20,-38],[-37,-62],[-54,-78],[-18,-26],[-15,-23],[-17,-25],[-20,-22],[-19,-21],[-25,-30],[-15,-23],[-18,-25],[-17,-18],[-22,-27],[-27,-34],[-16,-17],[-25,-29],[-17,-22],[-20,-25],[-20,-25],[-18,-20],[-21,-24],[-17,-18],[-15,-17],[-27,-33],[-23,-34],[-31,-43],[-17,-21],[-21,-21],[-16,-14],[-17,-17],[-25,-25],[-16,-17],[-20,-18],[-19,-16],[-47,-40],[-29,-26],[-18,-22],[-23,-34],[-44,-73],[-18,-15],[-45,-33],[-44,-40],[-63,-63],[-17,-23],[-10,-31],[-19,-47],[-16,-24],[-31,-31],[-22,-22],[-17,-16],[-18,-18],[-21,-24],[-19,-20],[-20,-6],[-19,5],[-19,4],[-19,4],[-20,4],[-17,1],[-63,-2],[-51,-3],[-21,-1],[-76,-2],[-26,-9],[-36,-35],[-54,-62],[-20,-24],[-19,-42],[-25,-35],[-21,-16],[-27,-20],[-23,-29],[-22,-34],[-14,-28],[-21,-27],[-19,-15],[-20,-21],[-22,-28],[-18,-25],[-17,-35],[-19,-64],[-21,-32],[-19,-26],[-28,-51],[-29,-54],[-31,-49],[-18,-25],[-17,-25],[-13,-26],[-25,-74],[-14,-42],[-98,-141],[-17,-20],[-23,-20],[-54,-46],[-18,13],[-95,252],[-67,176]],[[49826,17133],[14,27],[54,72],[34,49],[30,41],[15,24],[0,343],[0,120],[-1,222],[0,114],[15,37],[-1,13],[-10,27],[-32,77],[-19,47],[-2,5],[-2,6],[-30,15],[-35,3],[-55,-22],[-33,-39],[-54,-80],[-60,-65],[-163,-221],[-97,-130],[-50,16],[-13,5],[-40,198],[-46,-72],[-41,181],[-9,64],[-1,45],[11,45],[35,78],[59,200],[-78,324],[26,42],[8,34],[21,65],[28,66],[17,61],[7,47],[-2,30],[-10,26],[-20,22],[-24,12],[-28,-2],[-32,-9],[-32,-11],[-32,-16],[-26,-16],[-17,-16],[-16,-19],[-22,-27],[-21,-27],[-15,-17],[-25,-27],[-18,-24],[-18,-28],[-15,-23],[-6,-4],[-27,-18],[-32,130],[0,2],[-17,40],[-2,3],[-19,68],[20,46],[23,23],[20,36],[15,22],[18,37],[16,31],[19,32],[14,21],[17,33],[23,38],[26,41],[22,29],[15,25],[2,5],[8,20],[-32,86],[-23,62],[-45,124],[-28,76],[-135,347]],[[95119,11767],[-13,25],[-26,49],[-29,51],[-13,23],[-14,24],[-17,8],[-18,0],[-10,5],[-11,5],[-14,21],[-11,33],[-1,8],[-5,27],[-5,36],[15,19],[18,15],[17,22],[13,30],[6,35],[-3,39],[0,38],[2,40],[-2,26],[-1,12],[4,34],[16,20],[14,27],[19,12],[15,23],[9,32],[18,16],[9,32],[16,16],[12,25],[16,19],[6,35],[16,14],[-3,37],[0,39],[17,17],[19,6],[17,-3],[23,2],[11,30],[18,0],[6,-2],[12,-4],[17,12],[14,50],[8,32],[14,27],[16,23],[4,38],[15,16],[2,36],[5,36],[8,38],[3,42],[3,39],[-7,46],[7,33],[3,37],[10,31],[11,30],[4,41],[6,45],[-13,25],[-18,5],[-20,29],[-15,16],[-19,5],[-17,10],[-5,35],[3,37],[4,35],[11,32],[-1,40],[-8,32],[-14,24],[-10,31],[-11,33],[-6,35],[-20,7],[-4,39],[13,36],[15,20],[-7,35],[4,38],[-2,36],[6,35],[7,37],[2,39],[-7,33],[-13,28],[-14,30],[-16,-15],[-22,-11],[-13,-25],[-17,-14],[-19,6],[-11,27],[-11,35],[-13,25],[-19,13],[-18,0],[-17,14],[-17,-5],[-21,-10],[-17,-8],[-17,-4],[-8,12],[-6,11],[-20,-2],[-18,1],[-7,34],[9,34],[-3,43],[-17,16],[-18,12],[-16,-16],[-21,-6],[-14,21],[-14,24],[-9,32],[-12,27],[-3,0],[-20,-1],[-22,-9],[-19,2],[-17,19],[4,35],[7,36],[5,36],[12,28],[-7,36],[-17,7],[-55,-116],[-19,-2],[-18,22],[-23,28],[-53,64],[-28,34],[-5,7],[-25,30],[-16,19],[-14,17],[-5,7],[-17,20],[-18,23],[-19,25],[-22,28],[-19,24]],[[94416,14964],[-35,42],[-19,22],[-87,107],[-27,37],[-19,26],[-18,19],[-17,21],[-21,26],[-30,32],[-42,54],[-14,26],[-58,67],[-17,18],[-19,25],[-20,25],[-16,18],[-34,43],[-46,57],[-38,50],[-6,7],[-47,57],[-14,18],[-3,4],[-48,59],[-30,37],[-7,9],[-25,27],[-22,25],[-67,83],[-41,52],[-30,34],[-44,53],[-43,54],[-36,43],[-22,28],[-30,36],[-36,43],[-48,61],[-32,43],[-34,43],[-49,54],[-20,28],[-19,22],[-17,21],[-16,20],[-1,2],[-16,21],[-28,34],[-4,5],[-19,22],[-40,46],[-22,33],[-19,18],[-4,5],[-23,30],[-36,47],[-16,25],[-34,39],[-24,29],[-27,32],[-55,72],[-45,57],[-67,86],[-29,28],[-24,33],[-72,89],[-63,79],[-30,36],[-58,71],[-15,22],[-5,6],[-64,87],[-60,71],[-82,104],[-21,25],[-129,165],[-70,89],[-34,47],[-28,32],[-19,25],[-24,31],[-33,41],[-22,30],[-20,24],[-46,60],[-29,40],[-2,2],[-12,19],[-71,89],[-29,39],[-32,44],[-81,104],[-8,10],[-55,72],[-120,154],[-54,64],[-74,94],[-54,67],[-79,100],[-17,20],[-23,28],[-19,24],[-47,57],[-59,72],[-6,8],[-42,49],[-49,67],[-20,22],[-53,61],[-87,110],[-31,26],[-20,24],[-23,27],[-21,26],[-32,38],[-58,68],[-36,43],[-15,28],[-16,20],[-16,19],[-16,20],[-16,20],[-16,21],[-19,17],[-16,30],[-22,27],[-51,64],[-69,86],[-110,138],[-19,24],[-75,95],[-28,34],[-67,83],[-31,40],[-37,44],[-21,28],[-23,28],[-9,13],[-15,18],[-39,49],[-61,75],[-75,95],[-38,49],[-24,30],[-8,10],[-48,61],[-43,54],[-31,39],[-34,42],[-26,33],[-31,39],[-20,24],[-16,21],[-19,23],[-32,41],[-2,1],[-17,22],[-28,35],[-20,24],[-19,24],[-20,24],[-31,37],[-31,44],[-68,82],[-80,108],[-22,29],[-41,48],[-28,34],[-9,11],[-64,80],[-47,54],[-39,49],[-41,46],[-26,31],[-114,140],[-2,3],[-34,41],[-68,90],[-76,94],[-55,71],[-65,80],[-86,108],[-35,45],[-22,28],[-33,44],[-14,16],[-15,18],[-15,20],[-22,26],[-25,31],[-18,24],[-44,56],[-40,46],[-15,21],[-20,23],[-54,71],[-62,78],[-9,12],[-23,31],[-59,98],[-17,19],[-23,28],[-33,39],[-30,36],[-19,24],[-217,270],[-140,171],[-46,56],[-96,117],[-54,65],[-106,129],[-3,4],[-52,63],[-37,43],[-38,48],[-35,42],[-36,44],[-20,19]],[[91297,31807],[6,-26],[3,-13],[-14,-40],[1,-3],[1,-5],[2,-6],[2,-5],[1,-5],[3,-4],[0,-2],[16,-32],[2,-2],[1,-3],[33,-55],[5,-14],[-6,-56],[-1,-3],[0,-7],[0,-6],[-1,-6],[1,-7],[1,-43],[0,-6],[1,-6],[1,-6],[0,-1],[12,-92],[1,-4],[1,-6],[1,-6],[1,-2],[23,-29],[16,-55],[11,-45],[-15,-58],[-11,-87],[0,-1],[-1,-4],[-8,-80],[-3,-7],[-43,-127],[-9,-35],[15,-113],[1,-4],[62,-169],[35,-95],[68,-114],[1,-1],[2,-4],[3,-3],[2,-3],[3,-3],[91,-77],[3,-2],[2,-2],[3,-2],[3,-1],[80,-25],[70,-9],[70,38],[69,37],[142,162],[54,77],[25,14],[149,84],[205,-51],[166,-17],[109,-52],[18,-12],[38,-24],[37,-20],[55,-41],[18,-14],[19,-14],[23,-26],[10,-18],[37,-63],[19,-33],[16,-30],[31,-70],[6,-2],[84,-149],[79,-142],[38,-87],[48,-90],[42,-60],[45,-53],[53,-59],[10,-24],[13,-29],[5,-13],[5,-38],[13,-111],[1,-8],[13,-162],[0,-1],[9,-120],[4,-47],[3,-54],[1,-15],[0,-6],[-4,-67],[-5,-35],[-1,-28],[-4,-64],[3,-109],[10,-402],[4,-62],[1,-4],[6,-57],[9,-83],[14,-127],[0,-60],[9,-93],[6,-68],[2,-111],[14,-46],[2,-88],[-1,-9],[-26,-138],[-7,-117],[-36,-240],[-31,-139],[-4,-16],[-44,-146],[-1,-4],[-2,-5],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[-7,-80],[-1,-6],[0,-6],[0,-7],[0,-6],[0,-6],[0,-2],[8,-104],[0,-4],[1,-6],[1,-6],[1,-6],[27,-135],[1,-5],[31,-140],[38,-379],[0,-3],[22,-196],[10,-113],[13,-151],[51,-127],[1,-3],[39,-59],[50,-36],[109,-38],[63,-66],[1,-1],[2,-5],[2,-4],[24,-64],[15,-26],[130,-122],[38,-32],[92,-80],[68,15],[4,1],[17,10],[130,76],[81,36],[38,26],[40,31],[6,5],[46,6],[52,8],[147,-54],[59,-49],[12,-10],[76,-83],[1,-1],[2,-2],[2,-1],[145,-117],[23,-26],[63,-74],[32,-72],[52,-239],[29,-85],[14,-40],[-1,-3],[-1,-4],[54,-163],[16,-56],[0,-1],[34,-119],[4,-10],[1,-4],[1,-5],[1,-5],[23,-114],[0,-1],[1,-4],[24,-149],[6,-39],[15,-48],[7,-26],[6,-18],[8,-49],[0,-18],[32,-181],[0,-50],[-2,-110],[11,-196],[7,-56],[12,-44],[14,-59],[2,-5],[8,-36],[1,-3],[0,-1],[1,-6],[14,-32],[13,-31],[17,-39],[40,-67],[63,-106],[26,-32],[1,-1],[29,-28],[18,-30],[60,-97],[0,-1],[2,-5],[2,-5],[2,-5],[2,-4],[1,-2],[24,-42],[1,-1],[107,-178],[0,-1],[1,-1],[67,-102],[2,-2],[2,-2],[34,-44],[1,-1],[3,-3],[2,-2],[37,-32],[84,-36],[33,-12],[20,-2],[7,7],[30,3],[20,2],[26,-9],[8,-3],[5,-2],[67,-61],[43,-51],[19,-27],[48,-66],[77,-107],[154,-258],[43,-93],[51,-115],[7,-14],[12,-37],[58,-170],[69,-203],[24,-114],[3,-21],[2,-27],[10,-82],[10,-168],[14,-70],[18,-67],[43,-9],[8,-18],[31,-74],[0,-20],[-3,-94],[23,-49],[32,-114],[58,-200],[35,-53],[43,-43],[38,-38],[127,-109],[14,-13],[34,-27],[21,-16],[231,-184],[125,-81],[193,-222],[257,-308],[33,-57],[44,-74],[35,-89],[26,-74],[24,-81],[24,-83],[24,-82],[64,-197],[6,-41],[0,-4],[14,-82],[12,-94],[1,-5],[1,-6],[1,-6],[1,-6],[2,-5],[2,-5],[2,-5],[2,-5],[1,-1],[0,-2],[17,-76],[-1,-9],[45,-112],[12,-17],[29,-37],[20,-28],[19,-16],[28,-24],[95,-47],[40,-28],[46,-67],[13,-27],[21,-40],[47,-95],[3,-5],[30,-48],[141,-340],[8,-25],[18,-99],[0,-15],[2,-31],[1,-13],[5,-44],[0,-64],[-22,-162],[-18,-68],[-9,-32],[-1,-5],[-1,-4],[-3,-8],[-16,-39],[-20,-27],[-17,-32],[-17,-22],[-17,-20],[-21,-28],[-20,-16],[-6,-9],[-1,-1],[-28,-44],[-4,-6],[-17,-28],[-14,-24],[-5,-7],[-21,-30],[-5,-9],[-5,-7],[-8,-11],[0,-1],[-11,-16],[-9,-13],[-2,-3],[-16,-21],[-4,-4],[-9,-9],[-3,-2],[-6,-5],[-10,-6],[-1,0],[-27,-9],[-3,-1],[-5,0],[-27,1],[-3,2],[-1,0],[-38,9],[-39,8],[-1,0],[-36,2],[-31,-4],[-6,-2],[-6,-2],[-17,-6],[-9,-4],[-22,-11],[-22,-15],[-28,-24],[-19,-11],[-16,-18],[-37,-41],[-61,-71],[-41,-54],[-62,-76],[-14,-18],[-4,-5],[-15,-20],[-29,-43],[-21,-27],[-12,-14],[-26,-30],[-9,-7],[-15,-11],[-16,-8],[-33,0],[-9,0],[-23,5],[-52,20],[-7,4],[-27,11],[-17,7],[-24,10],[-49,19],[-12,4],[-43,26],[-31,19],[-6,4],[-34,25],[-7,6],[-35,27],[-13,10],[-21,14],[-15,9],[-5,3],[-36,21],[-22,12],[-13,4],[-5,1],[-8,0],[-28,-1],[-41,-9],[-17,-8],[-30,-25],[0,-1],[-20,-25],[-12,-20],[-21,-42],[-17,-52],[-25,-83],[-7,-20],[-23,-86],[-2,-11],[-14,-59],[-22,-92],[-15,-100],[-4,-42],[-7,-73],[-1,-10],[0,-1],[-7,-39],[-1,-3],[-12,-41],[-39,-94],[-6,-12],[-20,-33],[-16,-22],[-14,-17],[-22,-25],[-17,-15],[-14,-12],[-22,-19],[-33,-26],[-6,-5],[-9,-5],[-19,-14],[-19,-15],[-3,-2],[-31,-25],[-6,-6],[-19,-20],[-24,-40],[-20,-43],[-3,-5],[-9,-22],[-1,-2],[-16,-43],[-5,-26],[-1,-5],[-12,-76],[-8,-28],[-12,-39],[-7,-12],[-23,-37],[-9,-10],[0,-1],[-9,-9],[-11,-8],[-42,-20],[-17,-5],[-35,-10],[-9,-3],[-5,-1],[-10,-3],[-29,-9],[-29,-11],[-10,-5],[-19,-10],[-1,0],[-22,-12],[-18,-10],[-40,-28],[-88,-67],[-24,-16],[-25,-16],[-23,-15],[-24,-14],[-55,-30],[-29,-18],[-20,-12],[-31,-18],[-26,-16],[-2,-1],[-44,-29],[-24,-16],[-10,-6],[-14,-9],[-23,-11],[-31,-11],[-19,-6],[-29,-1],[-3,0],[-7,0],[-27,2],[-7,0],[-8,2],[-23,6],[-29,12],[-15,5],[-25,10],[-25,3],[-36,-6],[-9,-3],[-24,-9],[-12,-6],[-33,-19],[-24,-16],[-27,-18],[-11,-9],[-16,-13],[-17,-14],[-19,-16],[-24,-22],[-18,-17],[-24,-23],[-55,-54],[-23,-23],[-9,-9],[-13,-13],[-44,-44],[-62,-67],[-24,-25],[-20,-22],[-30,-29],[-6,-6],[-23,-25],[-21,-21],[-24,-23],[-26,-24],[-21,-18],[-52,-50],[-28,-27],[-32,-37],[-24,-29],[-10,-13],[-21,-25],[-18,-22],[-16,-20]],[[74923,21326],[-147,-116],[-269,-214],[-188,-152],[-190,-152],[-68,-55],[-36,-29],[-3,-3],[-119,-97],[-17,-14],[-57,-45],[-6,-5],[-53,-41],[-158,-132],[-67,-55],[-104,-84],[-17,-14],[-46,-39],[-17,-14],[-122,-98],[-196,-157],[-79,-65],[-102,-83],[-39,-32],[-30,-25],[-22,-18],[-23,-18],[-97,-80],[-111,-91],[-215,-176],[-80,-66],[-9,-2],[-14,-4],[-37,-10],[-233,-64],[-5,-2],[-20,-6],[-73,-19],[-37,-10],[-63,-17],[-132,-31],[-22,-5],[-18,-4],[-73,-19],[-21,-6],[-28,-9],[-28,-9],[-23,-7],[-68,-21],[-64,-20],[-7,-2],[-17,-8],[-158,-46],[-168,-46],[-28,-8],[-181,-49],[-80,-22],[-29,-9],[-17,-5],[-38,-12],[-168,-46],[-103,-28],[-126,-35],[-121,-37],[-8,-4],[-14,-7],[-20,-13],[-81,-53],[-80,-53],[-11,-7],[-106,-73],[-43,-28],[-43,-28],[-24,-16],[-100,-65],[-21,-15],[-11,-8],[-13,-10],[-25,-16],[-48,-32],[-157,-103],[-32,-21],[-173,-114],[-19,-12],[-57,-31],[-39,-19],[-48,-31],[-66,-46],[-68,-45],[-61,-42],[-51,-33],[-42,-30],[-31,-20],[-74,-49],[-109,-73],[-32,-22],[-46,-31],[-301,-202],[-2,-1],[-44,-31],[-43,-29],[-39,-28],[-8,-5],[-6,-4],[-26,-18],[-9,-17],[-32,-11],[-10,-3]],[[11017,14565],[152,-169],[171,-172],[62,-47],[63,-66],[28,-35],[6,-18],[9,-30],[10,-34],[32,-151],[10,-49],[28,-124],[4,-17],[25,-124],[2,-9],[40,-187],[0,-13],[1,-96],[-12,-53],[-25,-84],[-30,-73],[-64,-92],[-64,-57],[-65,-38],[-59,-29],[-88,-14],[-136,-24],[-61,21],[-23,8],[-48,17],[-54,29],[-83,24],[-83,8],[-93,-30],[-46,-60],[-14,-57],[3,-74],[10,-28],[6,-18],[11,-16],[34,-33],[89,-25],[57,-10],[98,-19],[31,-41],[43,-128],[3,-146],[-28,-114],[-47,-89],[-94,-132],[-27,-47],[-15,-76],[16,-62],[89,-150],[20,-24],[41,-50],[39,-47],[34,-65],[4,-8],[0,-26],[0,-57],[-2,-23],[-4,-33],[-26,-76],[-9,-27],[-11,-33],[-8,-27],[-42,-60],[-44,-57],[-63,-79],[-40,-30],[-38,-12],[-42,-6],[-51,7],[-101,15],[-76,-16],[-65,-4],[-108,-81],[-47,-45],[-48,-73],[-53,-70],[-28,-55],[-8,-30],[-4,-14],[-14,-48],[-15,-56],[-4,-15],[-21,-175],[-46,-63],[-16,-21],[-78,-102],[-85,-60],[-72,-22],[-29,-4],[-41,22],[-39,46],[-50,120],[-2,4],[0,67],[-41,93],[-31,107],[-25,59],[-34,63],[-34,45],[-33,22],[-40,11],[-140,-8],[-2,0],[-69,-46],[-106,-75],[-12,-17],[-24,-74],[-12,-174],[-6,-77],[21,-100],[13,-124],[13,-100],[3,-38],[3,-31],[0,-49],[-8,-71],[-4,-18],[-20,-47],[-1,-3],[-12,-27],[-19,14],[-31,-3]],[[8948,9431],[-103,-15],[-26,5],[-20,-5],[-17,-6],[-7,-18],[-36,-16],[-28,-19],[-24,-17],[-26,-60],[-3,-6],[-10,0],[-38,0],[-18,-3],[-32,9],[-7,3],[-98,43],[-58,43],[-13,9],[-18,1],[-10,-7],[-5,-23],[1,-25],[14,-63],[-1,-21],[0,-3],[-2,-12],[0,-1],[-7,-12],[-29,-31],[-35,-25],[-65,-47],[-4,4],[-8,9],[-35,57],[-9,13],[-3,4],[-19,16],[-36,31],[-16,9],[-10,10],[-8,21],[-2,24],[1,19],[3,170],[-31,112],[-5,17],[0,27],[4,12],[7,22],[20,37],[17,24],[25,28],[47,54],[29,22],[30,22],[15,17],[-13,35],[-21,10],[-19,10],[-17,14],[-16,17],[3,52],[-2,18],[-3,24],[-15,43],[-19,59],[-3,9],[-6,19],[-3,10],[-3,6],[-15,29],[-11,13],[-10,4],[-11,-3],[-3,-2],[-21,-19],[-13,-14],[-5,-7],[-28,-26],[-33,-29],[-15,-9],[-8,2],[-1,0],[-5,2],[-10,4],[-8,7],[-3,3],[-1,1],[-7,13],[-6,14],[2,15],[2,9],[28,111],[-9,14],[-14,15],[-1,2],[-2,1],[-6,4],[-1,-1],[-6,1],[-9,-5],[-6,-6],[-23,-46],[-14,-22],[-26,-32],[-16,-16],[-10,-10],[-14,-39],[-16,-62],[-72,-97],[-5,-7],[-77,-101],[-140,-220],[-17,-26],[-18,17],[-22,15],[-41,21],[-19,7],[-20,-4],[-19,-3],[-22,-6],[-19,5],[-20,7],[-28,-18],[-20,-22],[-18,-10],[-22,-4],[-32,15],[-25,-3],[-17,-14],[-18,-9],[-14,-20],[-16,-31],[-17,-20],[-18,15],[-15,22],[-26,26],[-22,20],[-22,18],[-22,11],[-18,-12],[-22,-13],[-19,-11],[-23,-8],[-21,-6],[-30,-29],[-22,-11],[-19,-9],[-18,-4],[-50,64],[-26,4],[-31,61],[-36,22],[-66,33],[-39,-1],[-16,21],[-28,12],[-32,-9],[-23,-3],[-21,11],[-13,29],[-6,35],[-18,9],[-37,3],[1,40],[3,41],[-21,22],[-18,6],[-7,15],[-8,15],[-13,34],[-14,30],[-10,37],[-22,11],[-26,12],[-28,13],[-20,16],[-16,18],[-17,6],[-24,29],[-29,-20],[-19,-3],[-14,22],[-13,31],[-19,25],[-20,15],[-23,-4],[-16,-10],[-18,-11],[-20,-15],[-34,-136],[-19,-10],[-21,-2],[-21,-6],[-18,2],[-16,15],[-16,-16],[-3,-3],[-14,-11],[-15,-20],[-16,32],[-9,39],[-16,19],[-14,23],[-8,-1],[-35,-2],[-22,-12],[-19,-33],[-16,-19],[-60,4],[-21,5],[-27,24],[-24,25],[-17,14],[-16,-14],[-22,-22],[-21,-25],[-16,-19],[-21,-3],[-21,7],[-18,10],[-18,10],[-19,8],[-25,11],[-41,18],[-22,24],[-12,28],[-14,35],[-18,25],[-30,-5],[-39,-3],[-25,7],[-21,15],[-17,16],[-24,7],[-21,-4],[-2,-1],[-21,11],[-25,13],[-23,8],[-25,-11],[-9,-33],[-15,-33],[-38,-7],[-40,8],[-30,2],[-25,12],[-17,-34],[-13,-41],[-24,-45],[-23,-22],[-15,-25],[-23,13],[-14,24],[-19,-4],[-33,-18],[-18,-24],[-14,-33],[-19,-4],[-19,-6],[-27,21],[-22,11],[-23,3],[-17,22],[-27,-13],[-18,-8],[-17,23],[-12,27],[-8,35],[15,55],[48,35],[-3,63],[-2,42],[-9,34],[-4,67],[-18,-4],[-31,-10],[-25,0],[-25,-6],[-37,26],[-39,-12],[-17,-22],[-19,38],[-5,41],[4,46],[-10,39],[-10,38],[-11,38],[-23,16],[-17,17],[-27,12],[-42,-52],[-29,-7],[-16,24],[-25,21],[-31,8],[-18,1],[-34,-1],[-19,-16],[-18,-10],[-18,-41],[-28,-17],[-36,-9],[-16,-22],[-2,-40],[2,-70],[-2,-38],[19,-21],[6,-42],[-7,-46],[-1,-54],[14,-48],[-3,-37],[-34,-42],[-27,-55],[-25,2],[-20,14],[-26,-7],[-35,13],[-20,30],[-19,31],[-22,9],[-19,-28],[-18,-5],[-23,-4],[-17,-7],[-26,2],[-15,29],[-22,-11],[-14,-28],[-16,-16],[-19,-15],[-37,-14],[-33,-15],[-28,-11],[-35,-12],[-21,-13],[-14,-21],[-11,-28],[-18,3],[-20,7],[-20,8],[-19,6],[-21,-8],[-18,-9],[-21,-15],[-2,-5],[-23,-64],[-17,-29],[-3,-2],[-33,-18],[-112,-69],[-2,0],[-51,-2],[-1,0],[-2,0],[-23,2],[0,1],[-3,0],[-3,1],[-1,0],[-18,8],[-44,-6],[-143,-130],[-67,-82],[0,-1],[-3,-3],[-3,-2],[-1,-1],[-10,-8],[-2,-2],[-2,-1],[-3,-2],[-3,-1],[-1,0],[-9,-2],[-3,-1],[-3,0],[-3,0],[-3,1],[-3,1],[-3,1],[-3,2],[-2,2],[-56,-13],[-3,-1],[-9,-15],[-2,-20],[-1,-1],[-35,-70],[-9,-16],[-10,-16],[0,-1],[-15,-112],[-6,-21],[-9,-34],[-16,-7],[-17,2],[-48,4],[-39,-10],[-34,-25],[-67,-24],[-38,-36],[-10,-2],[-17,-3],[-18,-8],[-99,-46],[-3,-1],[-3,-1],[-4,-7],[-23,-55],[-6,-14],[-1,-10],[-8,-16],[-1,-2],[-9,-9],[-42,-8],[-9,5],[-18,28],[-35,83],[-14,24],[-40,41],[-26,14],[-20,3],[-3,0],[-50,-11],[-8,-1],[-3,-1],[-86,-37],[-13,-5],[-12,-5],[-4,-8],[-20,-139],[-2,-11],[-16,-98],[-5,-32],[-2,-23],[-2,-7],[-1,-3],[-4,-8],[-3,-2],[-1,-1],[-3,-3],[-20,12],[-8,11],[-10,24],[-94,56],[-3,-2],[-36,-21],[-45,-49],[-4,-8],[0,-24],[8,-23],[40,-63],[0,-11],[-7,-25],[-19,-27],[-3,-2],[-18,-15],[-38,-29],[-11,0],[-20,14],[-26,5],[-33,6],[-15,3],[-3,0],[-5,-4],[-5,-11],[-2,-10],[2,-23],[9,-26],[11,-18],[15,-14],[9,-15],[31,-58],[3,-12],[1,-28],[-5,-18],[-6,-13],[-1,-3],[-5,-3],[-66,5],[-12,-3],[-1,-1],[-1,0],[-2,-2],[-3,-2],[-34,-65],[-2,-2],[-12,-14],[-10,-7],[-17,-1],[-18,5],[-47,21],[-23,16],[-10,12],[-14,13],[-47,25],[-23,5],[-10,-3],[-16,-13],[-3,-2],[-13,-7],[-15,13],[-5,9],[-7,21],[-1,37],[6,11],[29,56],[2,5],[12,15],[18,35],[4,10],[1,10],[0,1],[0,1],[-2,20],[-7,14],[-12,10],[-7,3],[-8,4],[-8,-2],[-4,-2],[-3,0],[-12,-18],[-13,-28],[-11,-29],[-4,-7],[-4,-6],[-5,-5],[-3,-2],[-2,-2],[-21,-6],[-38,-1],[-26,-13],[-27,-20],[-3,-3],[-21,-27],[-5,-13],[-2,-14],[9,-35],[9,-23],[0,-3],[0,-9],[-2,-6],[-7,-6],[-7,1],[-14,12],[-97,98],[-9,15],[-29,69],[-20,18],[-52,13],[-14,22],[-13,28],[-28,55],[-28,-22]],[[11,8686],[1,40],[0,84],[1,148],[1,1070],[0,5],[1,105],[-1,215],[-1,265],[-3,335],[5,384],[-4,318],[1,224],[3,456],[0,24],[1,112],[0,205],[-1,110],[1,39],[-5,617],[1,34],[3,95],[0,164],[0,12],[1,88],[1,408],[-1,146],[-3,115],[2,349],[0,348],[-1,93],[0,119],[0,197],[-4,136],[-1,414],[2,46],[2,360],[0,66],[1,287],[0,114],[0,15],[-1,103],[-3,160],[0,117],[0,862],[0,486],[0,445],[0,3],[-1,187],[0,212],[0,479],[0,6],[1,63],[0,110],[0,76],[1,37],[0,28],[0,14],[1,120],[-1,190],[1,37],[0,393],[0,238],[0,138],[0,315],[-1,196],[0,54],[0,39],[0,40],[0,51],[1,84],[0,165],[0,48],[0,1],[13,460],[4,145],[1,37],[-1,24],[0,14],[-1,640],[0,163],[0,41],[0,40],[-1,50],[0,43],[2,102],[4,1],[0,21],[0,115],[0,66],[0,126],[0,98],[1,46],[0,213],[0,39],[0,113],[-1,44],[0,36],[0,278],[2,502],[1,180],[1,211],[1,186],[-2,38],[-3,41],[-8,136],[-10,213],[-4,105]],[[94416,14964],[-23,-50],[-12,-26],[-16,-34],[-28,-58],[-17,-34],[-54,-80],[-28,-42],[-15,-22],[-93,-135],[-6,-8],[-28,-41],[-73,-106],[-20,-29],[-56,-81],[-33,-48],[-55,-81],[-19,-27],[-4,-5],[-13,-20],[-19,-28],[-40,-58],[-22,-32],[-18,-27],[-31,-49],[-22,-28],[-19,-40],[-14,-30],[-19,-41],[-22,-49],[-18,-37],[-20,-44],[-13,-27],[-34,-76],[-30,-64],[-30,-65],[-3,-6],[-55,-119],[-31,-68],[-25,-52],[-17,-17],[-41,-42],[-21,-44],[-17,-33],[-18,-36],[-43,-83],[-2,-5],[-14,-32],[-21,-44],[-21,-46],[-20,-42],[-18,-35],[-17,-35],[-2,-7],[-26,-47],[-26,-53],[27,-33],[31,-38],[27,-32],[35,-42],[16,-21],[23,-27],[-4,-7],[-17,-37],[-19,-38],[-24,-51],[-26,-57],[-16,-30],[2,-7],[1,-2],[-24,-33],[-18,-24],[-19,-23],[-19,-22],[-19,-22],[-10,-12],[-8,-9],[-14,-19],[-19,-24],[-19,-22],[-18,-23],[-19,-23],[-18,-23],[-2,-2],[-14,-26],[-14,-30],[-13,-42],[-5,-20],[1,-4],[-3,-3],[-1,2],[-3,4],[-25,31],[-30,35],[-37,46],[-35,41],[-26,31],[-15,18],[-23,28],[-27,29],[-24,27],[-23,25],[-34,43],[-24,30],[-17,22],[-13,17],[-6,8],[-20,24],[-14,20],[-27,35],[-18,23],[-29,31],[-3,4],[-2,2],[-39,53],[-25,29],[-16,20],[-21,24],[-26,31],[-15,18],[-20,24],[-30,35],[-20,24],[-20,25],[-25,29],[-20,24],[-23,27],[-20,24],[-44,52],[-7,8],[-10,10],[-18,22],[-26,29],[-17,19],[-20,25],[-71,88],[-29,36],[-30,37],[-21,26],[-21,26],[-21,25],[-19,22],[-21,-44],[-13,-27],[-13,-27],[-14,-28],[-13,-27],[-17,-36],[-14,-27],[-13,-28],[-29,-59],[-15,-31],[-20,-40],[-29,-45],[-19,24],[-16,19],[-72,85],[-24,29],[-36,43],[-42,50],[-29,35],[-36,42],[-27,33],[-36,44],[-18,27],[-18,15],[-23,21],[-16,15],[-13,28],[-27,32],[-29,35],[-20,24],[-39,46],[-16,20],[-21,24],[-22,21],[-21,-42],[-13,-29],[-22,-45],[-3,-7],[-12,-24],[-15,-31],[-15,-32],[-23,-47],[-16,-32],[-20,-40],[-42,-89],[-13,-24],[-16,-34],[-18,-37],[-24,-51],[-13,-25],[-16,-32],[-37,-76],[-41,-79],[-156,-298],[-30,-59],[-66,-127],[-53,-101],[-4,-7],[-5,-10],[-5,-7],[1,-2],[29,-62],[38,-71],[66,-114],[28,-38],[8,-12],[8,-6],[11,-9],[26,-37],[52,-87],[19,-34],[51,-127],[29,-39],[7,-9],[26,-35],[76,-114],[255,-315],[64,-52],[57,-110],[106,-182],[15,-22],[3,-4],[8,-11],[15,-18],[-17,-40],[0,-1],[-12,-33],[-17,-14],[-11,-12],[-15,-15],[-18,-18],[-26,-27],[-24,-21],[-2,-2],[-25,-24],[-55,-54],[-26,-25],[-50,-49],[-48,-47],[-2,-2],[-16,-16],[-15,-15],[-12,-11],[-7,-7],[-24,-24],[-22,-21],[-18,-18],[-19,-18],[-17,-16],[-46,-46],[-17,-16],[-46,-45],[-39,-38],[-30,-30],[-40,-39],[-20,-20],[-16,-16],[-4,-3],[-22,-22],[-41,-40],[0,-1],[-29,-27],[-19,-26],[-9,-13],[-21,-33],[-18,-21],[-19,-23],[-31,-35],[-21,-24],[-18,-17],[-25,-24],[-19,-17],[-20,-18],[-13,-12],[-35,-33],[-17,-15],[-21,-20],[-33,-31],[-17,-16]],[[89931,9203],[-27,77],[-12,36],[-10,32],[-17,50],[-21,54],[-17,47],[-23,67],[-46,96],[-24,55],[-13,32],[-23,47],[-29,71],[-15,40],[-17,39],[-12,43],[-19,39],[-9,18],[-8,32],[-19,54],[-24,61],[-18,43],[-18,39],[-9,32],[-17,43],[-16,32],[-27,72],[-22,36],[-23,50],[-18,46],[-12,47],[-1,1],[-15,53],[-19,50],[-22,-15],[-20,-16],[-26,-23],[-53,-50],[-33,-32],[-19,46],[-17,47],[-17,39],[-23,61],[-10,32],[-12,29],[-17,46],[-12,36],[-16,43],[0,3],[-10,29],[-32,86],[-21,47],[-25,65],[-9,27],[-7,22],[-16,43],[-15,40],[-17,39],[-29,75],[-52,140],[-20,57],[-28,80],[-17,49],[-11,19],[-10,16],[-24,72],[-20,64],[-12,27],[-12,31],[-14,45],[-12,41],[-11,32],[-20,54],[-32,93],[-36,79],[-25,42],[-17,-24]],[[88480,12373],[-16,41],[-20,52],[-18,45],[-18,47],[-12,28],[-13,33],[-64,-59],[-32,-30],[-26,-24],[-32,-30],[-18,-17],[-91,-81],[-69,-63],[-23,-20],[-28,-27],[-26,-25],[-32,-29],[-5,-5],[-13,35],[-18,48],[-29,80],[-40,113],[-13,40],[-24,67],[-21,62],[-19,54],[-10,29],[-4,11],[-20,59],[-11,32],[-18,47],[-1,2],[3,7],[-4,25],[-5,14],[-28,72],[-34,93],[-14,43],[-15,50],[-26,58],[-3,8],[-12,30],[-11,41],[-39,70],[-7,16],[-9,25],[-11,28],[-11,31],[-110,-87],[-126,-113],[-23,-22],[-42,-38],[-51,148],[-21,-18],[-120,-90],[-129,-110],[-8,48],[-1,40],[-2,25],[-1,16],[1,38],[3,29],[1,9],[-1,5],[-2,33],[0,1],[-1,1],[-3,4],[-11,15],[-11,2],[-7,2],[-15,12],[-4,3],[-16,12],[-11,6],[-8,5],[-14,24],[-5,37],[8,39],[-1,16],[-1,23],[8,43],[3,18],[3,16],[-62,130],[-42,74],[-42,156],[1,31],[2,31],[13,56],[70,98],[10,8],[32,29],[11,9],[4,21],[8,39],[1,0],[25,33],[-21,56],[-7,17],[-15,41],[-14,36],[-7,-10],[-3,-4],[-29,20],[-36,36],[-19,6],[-38,36],[-67,-5],[-36,-24],[-45,-32],[-11,-8],[-35,-20],[-34,5],[-9,1],[-10,-4],[-20,-8],[-84,-13],[-10,10],[-4,4],[-67,51],[-36,38],[-119,125],[-24,36],[-39,76],[-18,37],[-55,133],[37,61],[6,9],[32,52],[2,3],[2,5],[2,4],[2,4],[65,170],[0,2],[2,5],[2,5],[1,6],[1,6],[1,5],[39,112],[13,46],[4,38],[3,30],[1,12],[-11,68],[-13,31],[-23,27],[-8,1],[-64,14],[-1,1],[-1,0],[-37,-12],[-5,-1],[-3,-4],[-26,-28],[-15,-17],[-30,-66],[-4,-9],[-8,-28],[-22,-72],[-8,-29],[-4,-25],[-9,-64],[-2,-20],[-3,-18],[-16,-44],[-29,-77],[-11,13],[-27,16],[-31,9],[-2,1],[-3,1],[-3,2],[-2,2],[-25,20],[-1,1],[-3,2],[-3,3],[-2,4],[-3,3],[-2,4],[-2,5],[-2,4],[-2,5],[-2,4],[-14,44],[-1,1],[-1,6],[-2,5],[-1,6],[-1,6],[-1,6],[0,3],[-5,44],[0,3],[-1,6],[0,6],[0,7],[0,6],[0,6],[0,3],[4,53],[1,3],[0,6],[1,6],[1,6],[2,6],[1,5],[2,6],[12,39],[11,41],[1,3],[0,2],[8,25],[-37,308],[-4,12],[-141,210],[-31,46],[-35,49],[-3,4],[-2,4],[-2,4],[-2,5],[-1,3],[-46,116],[-1,2],[-2,5],[-1,6],[-2,5],[0,1],[-78,337],[-64,254],[-35,123],[-64,225],[-13,22],[-54,20],[-3,-1],[-13,-3],[-14,-5],[-3,-2],[-2,-1],[1,-5],[32,-153],[0,-3],[12,-59],[3,-16],[-1,-10],[-6,-94],[0,-13],[-33,-66],[-39,-51],[-34,-16],[-20,7],[-9,3],[-5,2],[-10,7],[-1,1],[-12,9],[-16,15],[-36,53],[-8,16],[-8,17],[-3,2],[-19,10],[-35,88],[-8,79],[-8,69],[-4,7],[-37,52],[-2,3],[-2,4],[-3,4],[-2,5],[-2,5],[-1,5],[-2,5],[-1,6],[-1,5],[-34,163],[-17,84],[-43,125],[-19,54],[-47,123],[0,1],[-2,5],[-1,6],[-2,5],[0,3],[-23,102],[0,1],[-27,129],[-1,2],[-1,4],[-12,71],[0,1],[-1,6],[-1,7],[0,6],[0,6],[-1,2],[0,40],[-2,25],[-4,9],[-2,4],[-1,2],[-5,12],[-1,1],[-23,15],[-26,7],[-26,1],[-52,-4],[-28,-6],[-8,-34],[-12,-54],[12,-55],[50,-77],[16,-47],[-7,-45],[-55,-53],[-77,-29],[-63,29],[-50,150],[-20,16],[-40,35],[-35,30],[-22,19],[-174,140],[-106,62],[-20,3],[-15,3],[-102,66],[-23,26],[-67,24],[-40,14],[-32,11],[-18,7],[-17,6],[-2,1],[-3,1],[-2,2],[-64,44],[-36,17],[-54,0],[-27,-68],[-36,-89],[-50,11],[-32,-7],[-32,-79],[-37,-47],[-60,-10],[-51,-7],[-36,34],[-61,133],[-30,44]],[[62819,18182],[-30,-57],[-2,-6],[-11,-21],[-7,-21],[-2,-3],[-17,-38],[0,-2],[-3,-6],[-6,-19],[-3,-12],[0,-19],[0,-2],[0,-5],[6,-114],[0,-7],[-39,-3],[-21,-17],[-3,-2],[-11,-18],[-13,-47],[0,-1],[-6,-8],[-2,0],[-47,-11],[-31,-2],[-15,3],[-36,28],[-2,2],[-49,42],[-8,4],[-24,0],[-51,-46],[-7,-6],[-2,-2],[-2,-3],[-4,-7],[-12,-18],[-14,-32],[-17,-21],[-4,-5],[-18,-7],[-16,-2],[-26,4],[-22,31],[-13,37],[0,1],[-9,22],[-2,10],[-21,106],[-21,59],[-11,29],[-27,77],[-8,15],[-6,3],[-6,-1],[-63,-7],[-9,-1],[-19,-3],[-8,-5],[-1,-3],[-9,-14],[3,-21],[12,-53],[10,-33],[28,-60],[7,-15],[11,-23],[9,-30],[12,-60],[1,-7],[0,-15],[-1,-22],[-3,-18],[-17,-49],[-8,-11],[-7,-2],[-4,-1],[-12,7],[-10,15],[-4,10],[-4,21],[0,30],[-7,56],[-7,20],[-9,18],[-13,10],[-9,0],[-5,-3],[-1,0],[-3,-5],[-8,-13],[-8,-31],[-5,-22],[-1,-10],[0,-18],[0,-18],[0,-1],[1,-12],[6,-42],[10,-25],[2,-13],[2,-24],[-7,-38],[-2,-3],[-71,-143],[-5,-11],[-18,-16],[-1,-1],[-11,-5],[-5,4],[-18,24],[-18,28],[-3,11],[2,30],[2,17],[3,26],[-4,13],[-22,41],[-14,11],[-24,-2],[-5,-1],[-19,-11],[-12,-12],[-12,-18],[-6,-13],[-2,-6],[-5,-16],[-13,-42],[-8,-25],[-34,-111],[0,-1],[-19,-58],[-17,-55],[-1,-4],[-29,-8],[-27,-3],[-3,-1],[-9,-6],[-2,-6],[1,-12],[4,-2],[3,-2],[44,-14],[61,7],[92,55],[32,-69],[6,-13],[0,-1],[51,-80],[2,-4],[75,-126],[25,-42],[2,-12],[1,-13],[1,-2],[-2,-3],[-6,-14],[-5,-9],[-3,-5],[-8,-3],[-19,2],[-27,10],[-1,0],[-11,0],[-4,-5],[-2,-8],[-1,-22],[8,-43],[8,-22],[9,-41],[2,-30],[-3,-10],[-15,-27],[-14,-14],[-8,-4],[-18,2],[-21,18],[-3,5],[-55,94],[-17,20],[-62,50],[-16,10],[-11,-5],[-10,-4],[-9,-18],[-4,-8],[-1,-3],[-9,-28],[-6,-38],[1,-52],[61,-199],[17,-40],[14,-24],[58,-63],[69,-53],[16,-17],[13,-6],[145,-70],[-1,-94],[0,-29],[0,-47],[0,-18],[-21,-4],[-2,-1],[-41,-9],[-51,-29],[-38,-4],[-16,-7],[-19,-12],[-7,-7],[-20,-17],[-18,-16],[-53,-22],[-58,-11],[-46,-14],[-1,0],[-10,-3],[-21,0],[-25,8],[-25,11],[-21,18],[-19,18],[-12,17],[-2,3],[-41,29],[-19,6],[-68,-1],[-3,0],[-28,7],[-28,12],[-30,21],[-20,10],[-18,2],[-31,-4],[-37,-14],[-6,-2],[-71,-49],[-5,-1],[-10,-2],[-22,7],[-30,21],[-8,2],[-4,2],[-16,-3],[-7,-7],[0,-7],[-23,-44],[-11,-8],[-1,-1],[-49,0],[-1,0],[-27,0],[-60,28],[-21,-19],[-44,-46],[40,-97],[40,3],[18,-2],[12,-7],[18,-30],[7,-19],[1,-10],[-2,-5],[-4,-14],[-5,-7],[-13,-18],[-22,-38],[-6,-22],[-1,-13],[-5,-19],[-1,-2],[-1,0],[-49,-34],[-13,-5],[-13,2],[-1,0],[-1,2],[-6,7],[-26,33],[-2,4],[-12,9],[-5,5],[-60,24],[-59,23],[-12,5],[-2,-5],[-20,-40],[-2,-4],[-1,-2],[-19,-33],[-2,-2],[-2,-4],[-3,-3],[0,-1],[-28,-32],[-1,-1],[-20,-22],[-31,75],[-1,3],[-30,72],[-163,-132],[-19,-16],[-34,-25],[-32,-19],[-238,-93],[-15,13],[-2,2],[-37,-34],[-15,-17],[-18,-30],[-36,-72],[-16,-31],[-12,-21],[-103,-145],[-21,-33],[-28,-40],[-6,-10],[-10,-15],[-15,-22],[-18,-27],[-193,-290],[-9,-33],[-29,-23],[-14,-21],[-15,-23],[-17,-25],[-208,-312],[-64,-95],[-175,-263],[-26,-39],[-23,-36],[-38,-56],[-16,-25],[-32,-47],[-23,-35],[-55,-82],[-41,-62],[-93,-139],[-239,-359],[-18,-27],[-17,-26],[-159,-239],[-23,-34]],[[58012,12531],[-37,-56],[-16,-24],[-35,-52],[-16,-25],[-15,-21],[-20,-30],[-54,-82],[-104,-156],[-6,-8],[-10,-17],[-86,-128],[-18,-35],[-36,-69],[-16,-30],[-41,-79],[-26,-49],[-29,-56],[-34,-64],[-39,-80],[-44,-88],[-17,-34],[-13,-27],[-82,-165],[-14,-28],[-19,-37],[-20,-11],[-89,-21],[-59,-12],[-27,-6],[-31,-6],[-17,-4],[-17,-4],[-7,-1],[-14,-3],[-32,-7],[-43,-9],[-28,-6],[-19,-4],[-22,-5],[-48,-10],[-34,-7],[-25,-5],[-32,-7],[-20,-4],[-27,-6],[-23,-5],[-11,-2],[-7,-2],[-63,-13],[-24,-5],[-22,-6],[-18,-7],[-21,-7],[-18,-6],[-18,-6],[-21,-8],[-31,-10],[-75,-26],[-76,-26],[-122,-42],[-25,-9],[-52,-18],[-96,-33],[-7,-2],[-18,-7],[-24,-8],[-19,-6],[-132,-46],[-17,-6],[-64,-23],[-20,-8],[-37,-14],[-19,-7],[-76,-29],[-21,-8],[-19,-7],[-18,-6],[-91,-35],[-33,-12],[-89,-34],[-186,-70],[-66,-25],[-326,-122],[-150,-57],[-83,-31],[-20,-8],[-4,-1],[-22,-9],[-98,-37],[-2,0],[-35,-13],[-136,-50],[-17,-7],[-18,-6],[-222,-82],[-59,-22],[-38,-14],[-119,-43],[-68,-25],[-30,-11],[-64,-95],[-79,-123],[-35,-55],[-81,-126],[-47,-74],[-110,-171],[-338,-528],[-217,-339],[-155,-243],[-33,-51]],[[52289,8026],[22,76],[84,295],[16,54],[105,365],[63,226],[-35,41],[-1,1],[-22,25],[-23,26],[-25,32],[-28,40],[-10,50],[-18,66],[-14,55],[-13,46],[-10,37],[-17,28],[-16,27],[-18,8],[-31,17],[-20,33],[-11,33],[-9,38],[-5,34],[-14,36],[-16,24],[-22,0],[-17,-5],[-26,-5],[-21,15],[-19,30],[-16,19],[-15,28],[-19,26],[-12,34],[-11,28],[-18,36],[-12,28],[-14,23],[-12,28],[-1,4],[-7,28],[-16,26],[-18,17],[-20,28],[-15,30],[-17,21],[-16,19],[-16,16],[-10,34],[-11,38],[-22,33],[-12,35],[-11,40],[0,41],[-4,41],[-9,36],[-15,32],[-15,27],[-14,43],[-15,27],[-11,28],[-13,32],[-13,43],[-10,33],[-25,72],[-22,84],[6,35],[8,35],[13,41],[-1,4],[-7,27],[-16,23],[-7,37],[-15,26],[-13,30],[-16,39],[-19,23],[-21,3],[-12,28],[-13,33],[-6,34],[-19,17],[-14,25],[-15,22],[-7,37],[-3,16],[4,17],[4,17],[11,46],[13,31],[14,37],[-2,37],[-26,10],[-2,1],[-21,10],[17,-47],[3,-10],[-5,2],[-23,7],[-11,-12],[-6,-7],[-24,59],[-21,-8],[-6,-2],[-6,-9],[-9,-15],[-2,4],[-14,28],[-14,33],[-12,19],[-9,15],[-18,15],[-19,12],[-21,10],[-10,35],[5,41],[7,74],[6,51],[3,44],[7,89],[-5,64],[-14,25],[0,36],[-12,31],[-7,40],[-1,36],[-2,38],[5,34],[14,29],[-13,24],[-12,27],[-12,27],[-10,30],[-2,1],[-14,14],[-17,-16],[-30,-9],[-18,-7],[-11,-7],[-25,4],[-4,6],[2,20],[4,31],[22,87],[1,6],[-2,22],[0,3],[-7,73],[-1,1],[-5,10],[-7,4],[-46,18],[-13,5],[-15,6],[1,8],[5,8],[2,1],[25,15],[35,11],[9,9],[3,9],[0,7],[0,11],[0,5],[-28,301],[-4,15],[-1,8],[-1,1],[-5,12],[-2,2],[-14,13],[-113,104],[-2,1],[-8,24],[-14,35],[-1,2],[-9,14],[-12,11],[-10,6],[-18,-2],[-17,-10],[-12,-13],[-8,-16],[-17,-12],[-16,-7],[-6,1],[-10,11],[-5,12],[-3,8],[0,1],[-13,82],[0,2],[3,42],[21,58],[19,37],[7,23],[2,19],[1,5],[-2,31],[-10,48],[-5,23],[-2,10],[-18,60],[-10,46],[-9,64],[-5,41],[-8,48],[-4,75],[-1,45],[-5,35],[0,36],[6,34],[-16,19],[-16,19],[0,37],[-6,34],[-14,27],[-16,15],[-10,30],[-10,31],[-10,31],[-15,24],[-18,-4],[-17,14],[-17,14],[-18,8],[-17,11],[-18,14],[-14,24],[-12,28],[-12,28],[-17,21],[-7,12],[-9,18],[-13,28],[-13,29],[-14,34],[-17,10],[-18,-11],[-18,1],[-18,0],[-19,3],[-16,-13],[-18,-8],[-18,2],[-13,28],[-17,14],[-17,9],[2,36],[4,35],[-3,37],[7,33],[-4,35],[-6,36],[-6,35],[-17,12],[-16,20],[-15,28],[-10,33],[-12,25],[-15,17],[-7,34],[-17,17],[-16,17],[-17,3],[-12,27],[-10,35],[-9,32],[-13,25],[-17,16],[-18,17],[-18,4],[-21,17],[-9,26],[-2,4],[-2,38],[-2,35],[-12,27],[-6,35],[-4,36],[-15,23],[-8,30],[0,3],[-9,31],[-12,27],[-4,35],[-2,36],[-8,33],[-1,37],[-3,35],[-4,37],[9,32],[3,36],[-7,36],[-13,22],[-12,28],[-14,23],[-12,31],[-10,29],[-14,50],[-14,40],[-10,40],[-48,150],[-9,50],[-14,28],[-20,31],[-30,152],[19,19],[15,18],[13,25],[16,26],[19,39],[29,45],[26,47],[16,18],[17,35],[15,23],[22,41]],[[40903,15938],[-8,-33],[-10,-38],[-42,-155],[-9,-36],[-18,-68],[-38,-144],[-38,-145],[-18,-65],[-57,-216],[-36,-138],[-10,-35],[-10,-39],[-13,-50],[-74,-276],[-30,-110],[-206,-290],[-59,-84],[-27,-39],[-19,-29],[-15,-21],[-65,-92],[-39,-56],[-16,-23],[-19,-27],[-41,-57],[-3,-4],[-19,-33],[-17,-30],[-57,-97],[-78,-135],[-78,-140],[-49,-88],[-16,-30],[19,-7],[18,-26],[7,-36],[8,-57],[1,-43],[1,-44],[0,-39],[-8,-39],[-5,-46],[-2,-52],[-4,-48],[-4,-43],[6,-39],[6,-34],[11,-33],[17,-36],[16,-16],[20,-12],[16,-16],[16,-14],[32,-11],[17,-4],[19,-3],[19,-2],[24,-1],[27,-5],[15,-21],[21,-29],[20,-23],[11,-29],[6,-39],[7,-33],[11,-32],[12,-31],[15,-19],[19,-12],[21,-12],[-1,-45],[-4,-43],[-8,-39],[-10,-44],[-6,-46],[-11,-45],[-8,-44],[-16,-27],[-24,-38],[-15,-33],[-16,-16],[-22,-3],[-22,0],[-25,-17],[-24,-4],[-20,3],[-19,1],[-19,-4],[-24,-7],[-17,-15],[-18,-25],[-32,-60],[-28,-46],[-7,-34],[-5,-36],[-8,-43],[-4,-37],[-1,-38],[1,-36],[-3,-41],[5,-34],[10,-45],[7,-37],[14,-26],[12,-27],[5,-36],[-2,-45],[-2,-36],[0,-40],[-7,-33],[-2,-38],[-6,-52],[0,-36],[-1,-44],[-3,-46],[-1,-38],[3,-18],[4,-22],[13,-34],[11,-32],[9,-25],[12,-32],[-39,-48],[-20,-28],[-3,-3],[-22,-60],[-14,-38],[-3,-7],[-25,-70],[-12,-29],[-22,-41],[-13,-29],[-23,-57],[-21,-53],[0,-2],[-35,-71],[-17,-31],[-17,-48],[-19,-46],[-17,-42],[-29,-103],[-13,-47],[-22,-73],[-16,-56],[-17,-61],[-12,-53],[-14,-61],[-15,-62],[-13,-60],[-13,-57],[-9,-47],[-12,-64],[-10,-47],[-10,-39],[-13,-43],[-12,-40],[-17,-71],[-9,-39],[-8,-36],[-15,-75],[-17,-90],[-14,-68],[-11,-72],[-6,-68],[-3,-34],[-1,-2],[-5,-46],[-8,-53],[-2,-5],[-9,-28],[-14,-28],[-15,-25],[-19,-29],[-14,-36],[-18,-61],[-12,-39],[-23,-79],[-15,-54],[-33,-100],[-52,-201],[-22,-87],[-11,-43],[-11,-43],[-9,-34],[-84,-325],[-31,-120],[-32,-124],[-9,-42],[-9,-46],[-13,-33],[-8,-33],[-9,-32],[-7,-36],[-12,-49],[-7,-34],[-6,-38],[-6,-68],[-3,-40],[-4,-46],[-6,-54],[-11,-54],[-8,-46],[-11,-50],[-15,-57],[-20,-73],[-9,-31],[-9,-40],[-10,-32],[-8,-32],[-9,-36],[-12,-68],[-10,-53],[-7,-83],[-11,-46],[-8,-68],[-28,-165],[-58,-286],[-50,-283],[-45,-200],[-6,-79],[-26,-72],[-15,-107],[-103,-465],[-10,-30],[-145,-417],[-39,-114],[-53,-150],[-14,-41],[-18,-53],[-15,-42],[-32,-93],[-13,-32],[-11,-29],[-14,-28],[-15,-30],[-20,-44],[-11,-72],[-13,-49],[-21,-82],[-18,-74],[-22,-80],[-20,-51],[-10,-79],[-15,-30],[-12,-29],[-8,-35],[-15,-20],[-35,-86],[-14,-22],[-15,-27],[-19,-53],[-14,-38],[-18,-55],[-22,-60],[-23,-66],[-27,-103],[-18,-73],[-31,-56],[-12,-37],[-8,-36],[-26,-35],[-31,-41],[-35,-82],[-57,-113],[-8,-31],[-17,-61],[-67,-136],[0,-1],[-14,-29],[-14,-27],[-9,-21],[-4,-10],[-11,-31],[-186,-467],[-101,-182]],[[36689,100],[-76,4],[-10,0],[-10,0],[-108,1],[-100,1],[-30,0],[-19,0],[-39,0],[-61,1],[-44,0],[-50,-1],[-29,-1],[-105,-3],[-44,-1],[-1,-1],[-2,0],[-25,-1],[-65,-1],[-84,-2],[-57,0],[-40,0],[-65,7],[-7,1],[-1,0],[-22,3],[-48,2],[-29,0],[-25,0],[-28,0],[-164,1],[-3,0],[-46,0],[-68,0],[-20,0],[-83,-1],[-9,0],[-2,0],[-5,0],[-70,0],[-34,0],[-28,0],[-54,0],[-22,0],[-48,0],[-30,0],[-71,1],[-2,-1],[-84,-1],[-31,0],[-41,-1],[-18,0],[-19,-1],[-166,-3],[-58,-1],[-60,-2],[-3,0],[-154,-3],[-5,0],[-71,-1],[-44,4],[-64,6],[-33,3],[-5,0],[-5,0],[-35,-1],[-70,-1],[-32,-1],[-8,0],[-3,0],[-84,-2],[-51,0],[-28,-1],[-216,-4],[-31,0],[-80,0],[-119,1],[-11,0],[-20,0],[-93,2],[-214,4],[-23,1],[-67,2],[-138,3],[-20,1],[-121,-1],[-23,-1],[-67,1],[-23,0],[-21,0],[-49,0],[-134,0],[-81,0],[-56,-2],[-132,5],[-36,-2],[-30,-1],[-19,0],[-29,0],[-26,0],[-71,0],[-45,0],[-78,0],[-37,0],[-1,0],[-6,0],[-12,0],[-3,0],[-23,0],[-27,0],[-6,0],[-18,0],[-37,1],[-78,1],[-7,0],[-56,-2],[-49,-2],[-3,0],[-52,1],[-26,0],[-69,1],[-32,0],[-36,1],[-28,0],[-24,1],[-20,2],[-36,0],[-75,0],[-111,0],[-101,-2],[-6,0],[-46,0],[-109,-1],[-238,-1],[-58,2],[-1,0],[-2,0],[-5,1],[-29,0],[-5,0],[-14,0],[-8,0],[-21,-1],[-17,0],[-11,-1],[-17,0],[-16,0],[-4,0],[-3,0],[-34,-1],[-38,0],[-20,-1],[-4,0],[-20,0],[-87,1],[-107,0],[-20,0],[-40,0],[-82,0],[-25,0],[-49,-1]],[[29352,111],[12,47],[23,79],[26,90],[17,62],[7,50],[12,41],[15,48],[16,45],[14,44],[13,30],[14,37],[16,41],[13,39],[7,49],[12,60],[13,41],[14,49],[19,40],[10,40],[5,41],[12,53],[12,47],[44,179],[20,79],[38,152],[13,54],[12,46],[12,47],[33,130],[23,88],[35,137],[29,113],[19,75],[37,143],[24,72],[30,63],[38,143],[30,167],[40,250],[38,232],[6,36],[11,67],[30,176],[10,60],[3,48],[0,3],[-9,552],[-4,251],[-3,165],[0,36],[-1,51],[-1,51],[-1,51],[-1,42],[0,40],[-1,41],[4,120],[4,110],[-6,243],[-1,59],[-1,42],[0,69],[-1,165],[-4,191],[-6,260],[-2,124],[-3,163],[1,126],[3,145],[-2,165],[-1,64],[0,62],[-2,131],[-2,220],[-3,260],[-1,121],[-1,57],[-1,64],[-1,42],[0,11],[-1,61],[-2,178],[-1,41],[0,43],[-2,156],[-4,352],[0,69],[-2,184],[-1,98],[-1,36],[0,13],[0,38],[-1,77],[-2,170],[1,315],[2,137],[-3,22],[-2,13],[-5,100],[-1,69],[-2,259],[0,38],[-1,39],[-24,9],[0,60],[0,114],[0,108],[0,85],[0,148],[0,265],[0,19],[0,57],[1,87],[-2,51],[-1,209],[0,62],[0,110],[0,140],[20,68],[37,124],[37,126],[26,87],[71,234],[39,-32],[16,-15],[111,-101],[42,-43],[40,183],[49,230],[33,156],[91,426],[79,373],[29,145],[54,250],[48,223],[93,427],[14,67],[14,66],[14,61],[8,38],[10,47],[16,72],[8,36],[12,55],[11,50],[11,52],[40,181],[13,61],[20,89],[133,638],[8,38],[15,73],[30,140],[19,94],[37,176],[1,5],[29,135],[45,216],[63,286],[36,96],[64,171],[91,243],[68,181],[9,74],[10,84],[32,266]],[[79686,14944],[-77,-76],[-43,-43],[-166,-162],[-379,-318],[-88,-68],[-12,-10],[-30,-23],[-22,-17],[-67,-52],[-53,-41],[-28,-23],[-22,-16],[-20,-16],[-65,-51],[-30,-23],[-57,-44],[-28,-23],[4,-46],[4,-41],[4,-37],[3,-38],[2,-16],[12,-121],[5,-44],[4,-40],[6,-51],[4,-40],[4,-36],[12,-93],[5,-58],[17,-150],[16,-143],[4,-36],[3,-36],[8,-72],[0,-193],[-1,-212],[0,-68],[2,-43],[8,-159],[5,-87],[3,-71],[2,-42],[5,-85],[4,-80],[2,-39],[-8,-176],[-6,-64],[-5,-65],[-3,-51],[-3,-36],[-28,-77],[-13,-33],[-17,-53],[-14,-41],[-51,-144],[-22,-62],[-12,-34],[-11,-30],[0,-1],[-33,-90],[-13,-39],[-15,-42],[-37,-106],[-28,-79],[-25,-73],[-18,-52],[-12,-33],[-124,-352],[-40,-117],[-29,-82],[-16,-48],[-21,-59],[-38,-112],[-10,-29],[-4,-11],[-27,-80],[-14,-42],[-14,-42],[-18,-49],[-17,-51],[-11,-33],[-16,-47],[-52,-153],[-10,-30],[-47,-141],[-15,-46],[6,-35],[1,-37],[-1,-38],[-7,-33],[-14,-25],[-12,-22],[-2,-2],[-10,-38],[-11,-30],[-13,-25],[-5,-36],[-6,-38],[-7,-33],[-11,-29],[-15,-20],[-10,-30],[-13,-29],[-1,-5],[-5,-32],[12,-31],[12,-29],[16,-36],[12,-37],[10,-34],[0,-1],[-16,-19],[-7,-33],[8,-32],[18,-10],[17,4],[10,-40],[3,-41],[-1,-38],[7,-35],[9,-30],[18,-16],[12,-24],[15,-20],[16,-16],[16,-29],[13,-25],[14,-23],[10,-36],[9,-31],[-4,-35],[-5,-34],[3,-37],[1,-37],[-19,-6],[-13,41],[-15,37],[-18,11],[-14,-22],[-7,-37],[-14,-20],[-19,-9],[-22,-8],[-17,-8],[-18,-8],[1,-36],[6,-34],[-16,-12],[-19,1],[-16,18],[-14,26],[-18,20],[-17,8],[-6,-35],[3,-36],[7,-33],[12,-32],[-2,-36],[-10,-30],[-6,-35],[6,-38],[6,-35],[12,-45],[10,-38],[4,-35],[-9,-35],[-10,-33],[1,-41],[5,-42],[7,-34],[-19,-20],[-16,-16],[0,-38],[3,-38],[5,-38],[6,-47],[5,-43],[3,-35],[15,-37],[8,-33],[-4,-46],[1,-38],[-2,-39],[20,9],[17,-8],[16,-27],[14,-20],[19,-30],[14,-21],[8,-37],[15,-18],[7,-38],[10,-32],[-15,-24],[-17,-15],[-14,-29],[-10,-35],[-9,-32],[-11,-33],[-5,-37],[-1,-36],[14,-21],[-3,-38],[-9,-32],[-15,-23],[11,-30],[11,-29],[14,-37],[15,-26],[15,-19],[6,-35],[5,-36],[8,-34],[11,-30],[-1,-36],[-15,-19],[-3,-36],[-17,0],[-15,-21],[-14,-26],[-7,-33],[-3,-36],[-18,2],[-17,21],[-17,16],[-16,15],[-2,2],[-17,15],[-16,16],[-16,21],[-5,34],[8,2],[10,2],[-13,35],[-18,3],[-14,27],[-18,4],[-21,-15],[-17,-31],[-16,-26],[-5,-37],[6,-37],[-2,-19],[-2,-18],[-4,-43],[-10,-31],[-12,-31],[1,-38],[-7,-39],[-6,-34],[1,-38],[5,-38],[-10,-33],[1,-36],[-5,-48],[-10,-32],[-1,-44],[5,-38],[8,-32],[-5,-35],[-7,-33],[-17,-14],[-18,21],[-18,7],[-19,16],[-21,-2],[-16,-10],[-20,7],[-23,32],[-18,5],[-19,-1],[-18,-12],[-17,-37],[-11,-28],[-11,-38],[-14,-31],[-2,-39],[19,5],[18,-11],[5,-39],[0,-37],[-3,-45],[0,-40],[17,-7],[-3,-42],[6,-39],[7,-36],[-16,-17],[15,-37],[12,-25],[10,-32],[-6,-36],[15,-26],[-8,-34],[6,-36],[4,-48],[10,-34],[-12,-35],[-24,8],[-22,4],[-17,-6],[-23,2],[-16,-20],[-6,-35],[2,-41],[-6,-40],[-15,-40],[-14,-32],[-14,-23],[-22,-15],[-21,-4],[-18,0],[-9,9],[-8,7],[-16,23],[-23,34],[-16,12],[-18,5],[-25,15],[-19,2],[-11,-33],[2,-51],[25,-49],[37,-74],[14,-29],[15,-24],[19,-49],[14,-63],[-1,-51],[5,-35],[15,-34],[-11,-30],[-8,-4],[-15,-6],[-23,12],[-17,5],[-18,-24],[-6,-44],[1,-40],[3,-51],[-9,-65],[-19,-67],[-8,-31],[-18,-35],[-18,-31],[-21,-3],[-19,22],[-16,17],[-50,38],[-31,9],[-21,-8],[-15,-34],[12,-34],[20,-11],[31,-31],[23,-46],[14,-45],[23,-18],[5,-5],[11,-10],[-9,-44],[-11,-31],[-12,-28],[-16,-16],[-14,-27],[12,-32],[16,-22],[-17,-29],[-23,-17],[-19,-5],[-21,-25],[-9,-33],[-6,-35],[-5,-35],[-3,-46],[-2,-38],[-9,-39],[-16,-30],[-19,-18],[-21,-7],[-19,-22],[-15,-29],[-20,-5],[-26,-6],[-12,-32],[-16,-57],[-10,-41],[-3,-40],[-20,-38],[-15,-29],[-15,-31],[-20,-46],[-2,-55],[13,-60],[0,-3],[11,-39],[10,-41],[1,-41],[-11,-31],[-13,-24],[-12,-27],[-15,-27],[-15,-29],[-9,-31],[-20,1],[-19,3],[-25,9],[-18,12],[-20,15],[-26,15],[-21,9],[-25,9],[-20,-1],[-22,6],[-27,-16],[-17,-15],[-18,-31],[-11,-28],[-10,-43],[-11,-43],[-13,-41],[12,-30],[19,-12],[15,-21],[9,-38],[-12,-36],[-12,-40],[-4,-39],[-2,-40],[-5,-35],[-15,-30],[-17,-33],[-26,-39],[-20,-17],[-16,-16],[-33,-32],[-25,-13],[-19,2],[-18,6],[-21,5],[-13,33],[-13,40],[-19,25],[-19,-30],[-5,-41],[5,-35],[-6,-38],[-14,-44],[-3,-38],[16,-23],[17,-24],[18,-9],[19,-1],[19,-14],[21,-26],[20,-29],[17,-35],[14,-30],[-6,-35],[-13,-27],[-15,-35],[-12,-32],[-15,-36],[-27,-36],[-30,-33],[-16,-23],[-15,-31],[-7,-40],[-14,-35],[-26,-3],[-20,1],[-17,8],[-22,31],[-16,25],[-21,34],[-18,31],[-9,33],[10,36],[11,36],[4,40],[5,41],[5,35],[12,31],[-21,31],[-17,19],[-19,16],[-32,23],[-18,-13],[-22,-5],[-19,-6],[-25,4],[-20,-5],[-15,-37],[1,-42],[7,-39],[6,-36],[-13,-37],[4,-44],[8,-33],[6,-37],[11,-42],[9,-35],[-3,-46],[-9,-31],[-24,-11],[-18,3],[-18,4],[-12,34],[-19,37],[-7,41],[-18,12],[-19,5],[-16,18],[-25,-4],[-16,-9],[-21,-2],[-23,-2],[-17,3],[-20,-22],[-15,-19],[-14,-23],[2,-40],[3,-38],[7,-35],[7,-40]],[[75197,48],[-4,0],[-146,13],[-145,-2],[-27,0],[-1,0],[-116,1],[-30,0],[-215,-3],[-16,0],[-22,0],[-34,0],[-51,-1],[-16,0],[-21,-2],[-273,3],[-17,0],[-29,-1],[-43,-1],[-86,-1],[-9,0],[-130,2],[-41,1],[-47,1],[-2,0],[-156,-2],[-112,-1]],[[73408,55],[9,44],[3,36],[7,54],[-12,75],[-13,80],[-29,102],[-14,31],[-16,52],[-12,33],[-15,41],[-14,31],[-19,31],[-14,19],[-15,20],[-113,317],[-12,36],[-15,28],[-17,25],[-22,30],[-8,3],[-14,6],[-15,44],[-23,47],[-14,38],[-14,40],[-17,27],[-21,33],[-16,38],[-15,51],[-16,57],[-17,47],[-16,53],[-5,24],[-6,23],[-8,45],[-10,35],[-55,247],[-22,74],[-16,29],[-26,41],[-24,19],[-17,5],[-18,-5],[-16,18],[-16,19],[-34,52],[-40,63],[-19,35],[-19,38],[-20,37],[-21,41],[-50,90],[-143,272],[-11,11],[-12,13],[-12,26],[-16,31],[-14,21],[-13,34],[-14,21],[-12,29],[-12,31],[-10,31],[-13,29],[-13,26],[18,-5],[13,-28],[-9,31],[-10,30],[-11,27],[-13,25],[-13,20],[-1,2],[-5,7],[-10,14],[-8,8],[-8,7],[-1,-1],[-16,-5],[-13,28],[-15,14],[-19,14],[-17,16],[-19,-5],[-15,19],[-16,14],[-18,13],[-5,3],[-11,7],[-18,15],[-17,13],[-15,18],[-14,23],[-15,19],[-16,24],[-15,16],[-11,29],[-14,22],[-12,25],[-11,28],[-19,21],[-14,23],[-13,24],[-9,32],[-11,29],[-8,32],[-1,11],[-2,25],[-8,37],[-19,53],[-31,62],[-10,38],[-70,164],[-17,21],[-10,31],[-7,81],[-6,35],[-1,50],[5,63],[4,55],[0,52],[-11,33],[-10,32],[-23,34],[-60,125],[-26,43],[-18,12],[-19,30],[-20,48],[-64,47],[-20,20],[-18,13],[-21,26],[-39,55],[-17,32],[-11,33],[-26,46],[-28,20],[-24,36],[-11,33],[-13,60],[-5,47],[-6,58],[-3,42],[-4,9],[-9,19],[-6,37],[-8,35],[-4,38],[1,35],[-5,36],[7,39],[9,35],[7,35],[6,44],[1,33],[1,32],[1,4],[2,41],[-4,54],[0,4],[0,3],[-5,37],[-9,42],[-10,31],[-19,45],[-5,9],[-12,22],[-6,44],[0,53],[-2,40],[-1,14],[-2,34],[-3,14],[-6,30],[-8,43],[-7,47],[-2,41],[0,51],[-1,28],[0,15],[-12,34],[-2,5],[-12,27],[-16,40],[-31,75],[-5,16],[-7,20],[-15,28],[-16,15],[-17,12],[-8,5],[-10,7],[-20,15],[-16,9],[-2,1],[-8,0],[0,-1],[-4,2],[-71,22],[-46,14],[-10,3],[-5,3],[-75,95],[-24,34],[-24,42],[-29,37],[-114,131],[-35,37],[-46,38],[-102,73],[-139,84],[-75,31],[-20,11],[-36,28],[-30,30],[-21,26],[-64,97],[-6,15],[-13,20],[-87,93],[-20,18],[-10,0],[-11,-3],[-13,0],[-26,13],[-57,44],[-19,21],[-65,105],[-13,24],[-19,36],[-35,76],[-13,53],[-8,36],[-37,93],[-36,63],[-19,34],[-12,10],[-17,27],[-8,122],[-27,105],[-28,109],[-28,106],[-1,1],[-32,120],[-18,67],[-7,49],[-9,107],[-7,164],[-2,50],[-9,65],[-22,112],[-29,127],[-11,52],[-17,56],[-9,29],[-2,10],[-1,0],[-4,0],[3,5],[114,217],[-69,191],[-80,174],[-149,223],[-95,218],[-69,157],[-33,89],[-47,129],[-39,274],[-18,70],[-31,92],[-22,52],[-20,21],[-20,7],[-77,29],[-32,-3],[-97,-51],[-82,-55],[-60,-31],[-105,-29],[-6,2],[-30,-9],[-50,-11],[-70,0],[-49,2],[-81,27],[-24,17],[-81,22],[-58,23],[-102,56],[-34,7],[-16,14],[-15,-4],[-62,11],[-153,54],[-18,15],[-84,23],[-69,4],[-106,35],[-68,31],[-105,62],[-44,34],[-49,40],[-33,47],[-43,52],[-12,18],[-46,38],[-11,8],[-48,23],[-47,35],[-51,62],[-50,62],[-38,54],[-33,49],[-74,109],[-121,203],[-126,256],[-99,238],[-85,242],[-13,31],[-63,139],[-23,22],[-69,88],[-88,137],[-42,53],[-6,9],[-14,16],[-62,98],[-56,4],[-22,27]],[[52289,8026],[1,-46],[1,-45],[1,-44],[1,-44],[1,-39],[2,-57],[1,-37],[0,-42],[1,-51],[2,-56],[2,-70],[1,-53],[2,-44],[0,-37],[1,-48],[1,-38],[1,-57],[3,-77],[1,-41],[2,-61],[2,-40],[3,-44],[2,-36],[2,-41],[2,-25],[1,-13],[2,-42],[1,-39],[2,-43],[0,-38],[-2,-44],[0,-36],[0,-11],[2,-26],[1,-36],[1,-38],[2,-41],[1,-47],[1,-42],[1,-39],[1,-38],[2,-42],[1,-44],[1,-47],[1,-45],[1,-40],[2,-40],[1,-38],[1,-38],[1,-39],[2,-60],[1,-36],[1,-42],[1,-37],[1,-47],[1,-36],[2,-44],[1,-42],[1,-40],[2,-36],[1,-51],[1,-38],[2,-40],[1,-38],[2,-40],[1,-44],[2,-41],[1,-50],[0,-43],[1,-39],[2,-52],[2,-36],[2,-42],[2,-38],[2,-46],[1,-54],[2,-62],[2,-44],[3,-105],[1,-40],[1,-65],[1,-41],[2,-74],[2,-65],[0,-39],[2,-46],[3,-63],[3,-72],[1,-43],[1,-50],[2,-42],[2,-51],[3,-59],[1,-41],[2,-40],[1,-45],[2,-46],[1,-46],[1,-43],[1,-42],[0,-45],[0,-41],[1,-52],[0,-40],[1,-42],[1,-41],[0,-45],[1,-31],[1,-23],[1,-55],[1,-41],[1,-54],[0,-38],[1,-43],[1,-43],[1,-41],[1,-47],[2,-85],[1,-40],[1,-39],[0,-40],[1,-58],[1,-37],[1,-42],[0,-41],[1,-44],[1,-47],[0,-36],[1,-43],[1,-40],[0,-45],[1,-40],[1,-51],[0,-40],[1,-46],[2,-92],[3,-138],[1,-45],[2,-113],[3,-124],[1,-57],[1,-62],[8,-418],[0,-3],[1,-69],[9,-256],[2,-66],[5,-159],[-2,-89],[5,-181],[0,-42],[1,-74]],[[52494,7],[-7,0],[-75,1],[-13,1],[-43,-1],[-22,0],[-12,0],[-36,0],[-38,0],[-36,0],[-13,0],[-32,0],[-14,0],[-8,0],[-37,0],[-28,-1],[-49,0],[-42,1],[-51,-1],[-66,-1],[-31,0],[-43,-2],[-42,-1],[-8,0],[-18,0],[-27,1],[-13,0],[-15,1],[-2,0],[-71,0],[-57,1],[-44,1],[-102,2],[-44,0],[-25,0],[-118,4],[-65,-2],[-20,1],[-31,0],[-22,0],[-26,1],[-12,0],[-125,3],[-242,4],[-32,2],[-1,0],[-73,-1],[-48,0],[-28,0],[-38,0],[-54,2],[-73,0],[-62,0],[-67,0],[-57,1],[-95,0],[-53,0],[-1,0],[-19,1],[-29,1],[-102,1],[-61,-1],[-56,0],[-66,-2],[-241,3],[-34,1],[-226,3],[-265,0],[-3,0],[-24,2],[-22,2],[-39,3],[-68,2],[-4,0],[-350,3],[-278,2],[-24,-1],[-78,-3],[-50,1],[-11,0],[-23,5],[-19,1],[-31,2],[-58,-4],[-3,0],[-33,0],[-25,0],[-34,0],[-45,0],[-18,2],[-26,2],[-170,2],[-29,0],[-11,0],[-40,0],[-185,4],[-152,2],[-80,2],[-67,2],[-26,1],[-44,2],[-17,1],[-79,2],[-57,1],[-65,1],[-423,3],[-224,3],[-120,2],[-117,1],[-195,2],[-119,3],[-36,0],[-12,2],[-153,-1],[-114,-1],[-45,1],[-69,3],[-80,-1],[-139,0],[-55,1],[-44,0],[-43,1],[-78,0],[-107,2],[-104,0],[-35,0],[-15,0],[-39,0],[-23,0],[-91,0],[-49,0],[-64,0],[-24,1],[-12,0],[-178,1],[-24,0],[-66,0],[-85,0],[-55,0],[-83,0],[-41,0],[-145,0],[-72,0],[-5,0],[-250,0],[-131,0],[-25,0],[-32,-1],[-21,0],[-76,-1],[-216,-2],[-2,0],[-50,0],[-16,0],[-19,1],[-86,1],[-46,1],[-56,1],[-34,0],[-13,-1],[-21,0],[-3,0],[-169,-2],[-3,-1],[-7,0],[-7,0],[-1,0],[-73,1],[-69,-2],[-67,-2],[-160,-3],[-52,-1]],[[41512,82],[32,57],[67,121],[53,95],[52,96],[8,13],[54,98],[29,52],[138,252],[86,160],[22,55],[3,39],[5,36],[5,36],[9,36],[14,35],[12,36],[10,57],[19,47],[10,37],[65,145],[16,29],[8,36],[19,32],[12,39],[23,40],[15,28],[17,43],[14,43],[10,40],[14,28],[17,33],[12,46],[14,32],[12,32],[13,43],[21,33],[9,32],[20,54],[16,46],[12,29],[20,43],[10,32],[25,53],[15,40],[15,43],[7,50],[24,39],[19,40],[24,39],[11,36],[24,57],[13,29],[14,21],[19,39],[22,40],[21,32],[17,22],[17,32],[17,36],[19,25],[19,28],[19,25],[20,43],[14,43],[24,47],[17,32],[10,39],[19,33],[11,42],[18,40],[12,43],[18,39],[18,54],[13,28],[15,40],[19,46],[15,43],[19,47],[19,39],[5,40],[14,39],[14,54],[10,32],[3,11],[10,31],[9,33],[14,23],[8,41],[11,36],[14,35],[13,34],[4,37],[7,38],[14,24],[9,56],[14,54],[25,57],[14,43],[19,54],[14,51],[8,46],[20,49],[12,34],[15,43],[17,54],[18,41],[11,60],[9,35],[11,30],[19,70],[10,40],[10,43],[18,55],[9,54],[9,47],[16,61],[16,32],[6,50],[13,41],[7,58],[8,37],[10,38],[6,42],[5,36],[9,67],[9,52],[8,60],[12,48],[12,29],[0,51],[13,40],[9,46],[6,43],[10,24],[6,12],[9,44],[8,36],[2,37],[4,35],[2,38],[9,54],[15,25],[14,31],[9,46],[10,43],[4,43],[15,67],[8,45],[7,34],[1,48],[3,40],[9,42],[13,46],[16,21],[8,32],[3,11],[6,51],[8,32],[10,32],[9,37],[3,37],[0,62],[-18,43],[-7,38],[-5,41],[6,36],[5,48],[34,83],[26,34],[18,21],[32,31],[22,26],[19,38],[15,43],[7,53],[15,51],[9,31],[10,39],[12,35],[25,56],[63,187],[-2,59],[8,183],[11,151],[15,50],[14,23],[20,110],[32,263],[19,14],[15,21],[0,42],[58,151],[27,163],[6,33],[10,33],[13,32],[13,30],[19,33],[29,158],[-22,127],[-2,105],[4,31],[4,24],[8,32],[8,50],[11,29],[12,37],[27,65],[12,29],[8,34],[24,68],[29,57],[22,44],[16,41],[19,37],[32,52],[17,37],[15,52],[10,42],[-4,41],[7,44],[20,41],[19,47],[28,56],[14,41],[24,34],[20,42],[14,26],[30,56],[29,52],[20,72],[22,64],[20,65],[10,37],[20,31],[25,87],[9,43],[16,49],[13,32],[15,46],[28,60],[34,51],[28,58],[14,29],[22,34],[17,25],[21,5],[28,62],[24,20],[29,37],[19,38],[41,32],[19,16]],[[29352,111],[-22,1],[-34,0],[-65,-1],[-37,0],[-69,0],[-47,1],[-50,0],[-68,0],[-117,1],[-28,0],[-27,0],[-32,1],[-39,0],[-4,0],[-77,0],[-61,-1],[-43,1],[-28,0],[-54,0],[-20,-1],[-171,-1],[-233,-2],[-69,0],[-125,0],[-104,-1],[-134,0],[-74,-1],[-41,0],[-60,0],[-43,-1],[-18,0],[-74,0],[-38,-1],[-14,0],[-64,-1],[-90,0],[-303,-2],[-43,0],[-71,-1],[-41,-1],[-166,0],[-43,-1],[-185,-1],[-153,1],[-20,1],[-32,0],[-196,3],[-52,1],[-156,2],[-122,1],[-168,2],[-43,0],[-58,-1],[-23,0],[-42,-1],[-69,-2],[-195,-4],[-76,-2],[-95,-2],[-111,-2],[-42,0],[-8,0],[-98,0],[-292,0],[-30,0],[-5,0],[-18,0],[-44,0],[-152,0],[-47,0],[-43,-1],[-26,0],[-92,-1],[-23,0],[-290,-2],[-80,-1],[-119,-1],[-20,0],[-68,-1],[-14,0],[-36,0],[-339,-6],[-28,0],[-62,-1],[-116,-1],[-37,-1],[-25,0],[-43,0],[-63,-1],[-85,0],[-58,-1],[-4,0],[-125,0],[-5,0],[-4,0],[-171,0],[-110,0],[-68,0],[-22,0],[-38,0],[-119,0],[-407,0],[-32,0],[-27,0],[-157,0],[-7,0],[-227,0],[-49,-1],[-23,0],[-103,-1],[-167,-2],[-25,0],[-95,0],[-88,0],[-241,-5],[-74,-1],[-35,-1],[-151,-2],[-73,0],[-35,0],[-25,0],[-70,-1],[-20,0],[-10,0],[-71,0]],[[19334,64],[21,43],[15,35],[7,26],[-2,23],[-17,63],[-39,123],[-30,67],[-26,41],[-12,12],[-38,36],[-53,20],[-29,-12],[-45,8],[-20,44],[-5,36],[-1,44],[12,79],[24,28],[20,9],[25,7],[69,-14],[60,37],[10,11],[30,33],[5,6],[14,69],[-9,52],[-27,61],[-12,16],[-10,14],[-30,74],[-6,14],[-4,50],[1,11],[10,112],[77,95],[77,96],[28,2],[34,14],[8,3],[16,10],[35,39],[29,40],[9,27],[6,54],[1,7],[-10,72],[-53,131],[-23,27],[-37,43],[-29,47],[-34,78],[12,104],[35,42],[14,17],[30,50],[34,132],[38,42],[13,-2],[17,-3],[25,-5],[73,-59],[48,-79],[7,-10],[21,-25],[54,-44],[39,-11],[16,18],[19,21],[7,61],[-20,44],[-23,49],[-17,35],[-8,32],[-45,179],[-25,84],[-1,1],[0,1],[-2,12],[-1,97],[1,7],[9,31],[31,43],[6,19],[3,4],[11,29],[12,31],[9,43],[-3,42],[0,14],[-4,57],[-11,161],[-1,8],[-15,55],[-16,124],[-25,68],[-33,80],[-26,39],[-17,14],[-41,9],[-40,-12],[-49,13],[-29,18],[-27,74],[-11,54],[0,44],[8,79],[1,41],[-5,24],[-25,33],[-38,36],[-50,76],[-51,48],[-12,22],[-55,69],[-52,42],[-60,30],[-102,88],[-71,65],[-55,163],[5,22],[3,19],[48,248],[25,129],[19,97],[48,247],[10,51],[144,754],[22,109],[73,207],[197,559],[43,122],[98,277],[29,82],[34,93],[104,290],[25,67],[61,169],[31,87],[42,115],[0,1],[42,116],[51,141],[51,141],[55,152],[39,112],[20,59],[14,42],[23,67],[143,411],[32,91],[41,117],[12,34],[1,5],[23,57],[66,175],[51,135],[30,78],[31,82],[11,30],[29,80],[27,66],[41,116],[33,89],[42,112],[22,48],[10,30],[17,44],[20,54],[42,111],[21,64],[24,75]],[[84490,4210],[31,52],[9,36],[10,39],[14,36],[11,31],[21,31],[14,12],[11,3],[21,-9],[2,-1],[6,-8],[23,-29],[64,-146]],[[84727,4257],[0,-1],[-40,-7],[-45,-8],[-43,-8],[-30,-7],[-66,-14],[-10,-2],[-3,0]],[[88480,12373],[1,-2],[-23,-21],[-147,-134],[-36,-34],[-34,-33],[-74,-69],[-43,-39],[-76,-70],[-43,-40],[-46,-41],[-23,-21],[-18,-15],[-38,-34],[-4,-4],[-19,-17],[-32,-29],[-21,-19],[-22,-19],[-16,-14],[-26,-26],[-17,-16],[-6,-6],[-16,-15],[-56,-50],[-17,-16],[-25,-23],[-26,-22],[-22,-21],[16,-43],[14,-40],[18,-49],[13,-39],[19,-52],[33,-95],[11,-30],[12,-35],[11,-30],[19,-52],[16,-47],[-27,-39],[-21,-32],[-135,-196],[-19,-27],[-34,-50],[-15,-22],[-17,-26],[-53,-77],[-76,-108],[-22,-31],[-85,-118],[-28,-40],[-47,-68],[-20,-29],[-16,-22],[-18,-26],[-27,-39],[-24,-33],[-5,-8],[-22,-32],[-23,-32],[-27,-38],[-33,-46],[-27,-38],[-24,-33],[4,-2],[19,-5],[16,-5],[5,0],[4,-1],[5,4],[3,2],[4,7],[8,6],[23,1],[54,3],[19,-7],[13,-4],[57,-22],[2,0],[28,-31],[5,-5],[-6,-20],[1,-14],[16,-36],[3,-7],[13,-7],[10,-5],[3,-14],[0,-21],[-3,-78],[-3,-49],[-35,-35],[-36,-35],[-21,-20],[-21,-20],[-24,-24],[-25,-23],[-25,-25],[-47,-46],[-48,-46],[-145,-144],[-17,-17],[-2,-2],[-18,-17],[-78,-75],[-34,-32],[-35,-33],[-16,-16],[-17,-16],[-60,-58],[-30,-29],[-34,-32],[-19,-19],[-17,-15],[-25,-25],[-37,-36],[-19,-18],[-60,-58],[-22,-20],[-34,-33],[-20,-19],[-21,-20],[-46,-44],[-50,-47],[-24,-25],[-38,-37],[-36,-35],[-36,-36],[-5,-5],[-3,-3],[-18,-18],[-22,-23],[-21,-19],[-20,-20],[-65,-64],[-26,-25],[-37,-37],[-18,-17],[1,-2],[17,-41],[17,-43],[30,-78],[15,-35],[-15,-15],[11,-26],[18,-47],[-9,-54],[-2,-14],[-6,-13],[-9,-7],[-13,-11],[-48,-46],[-12,-12],[-6,-4],[-16,68],[-13,53],[-29,-24],[-22,-19],[-18,-15],[10,-32],[-16,-17],[18,-49],[15,-38],[12,-31],[2,-6],[9,-24],[52,-134],[13,-34],[-26,-30],[-15,-17],[-22,57],[-3,-3],[-50,-44],[-53,147],[-41,114],[-6,18],[-12,-10],[-66,-56],[-36,-32],[5,-11],[23,-64],[-28,-29],[-28,-32],[5,-108],[9,-24],[18,-46],[-91,-83],[-45,-42],[49,-134],[20,-52],[-19,-17],[-22,-21],[-19,-18],[-18,-15],[-38,-34],[-21,-18],[-21,-20],[-8,-14],[-8,22],[-36,98],[-46,-45],[23,-63],[12,-33],[-17,-16],[17,-47],[-38,-34],[-18,-14],[-18,-19],[-11,-11],[-17,-17],[-32,-32],[-39,-40],[-20,-20],[-25,-25],[-3,-30],[-7,-57],[6,-51],[-36,-34],[16,-44],[38,-104],[-32,-32],[-37,-37],[-32,-32],[-23,-21],[-12,-11],[-15,-15],[-43,84],[-23,-48],[-18,-4],[-17,-5],[-16,-11],[41,-118],[-67,-68],[-81,-84],[-21,-22],[-25,-27],[10,-23],[15,-109],[9,-66],[2,-11],[2,-90],[0,-3],[0,-6],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[0,-1],[-12,-46],[-1,-5],[-1,-5],[-2,-5],[-2,-5],[-2,-5],[-2,-4],[-2,-3],[-26,-43],[0,-1],[-23,-67],[-1,-5],[-6,-25],[-22,-110],[17,-20],[1,-1],[11,-3],[2,-1],[14,-5],[3,-2],[3,-2],[2,-2],[3,-2],[2,-2],[22,-24],[21,-65],[3,-11],[1,-3],[2,-5],[1,-6],[1,-4],[5,-23],[7,-36],[3,-13],[0,-1],[1,-2],[2,-11],[0,-4],[1,-6],[1,-6],[0,-7],[1,-6],[0,-6],[0,-7],[-1,-6],[0,-6],[-1,-6],[-1,-6],[-1,-6],[-1,-6],[-20,-83],[-1,-6],[-2,-5],[-1,-4],[-12,-33],[0,-1],[-24,-68],[-1,0],[-8,-82],[-16,-45],[14,-27],[19,-24],[18,-4]],[[84478,4207],[-3,-1],[-1,-1],[-1,-1],[-6,-1],[-21,-3],[-22,-4],[-12,-3],[-3,0],[-57,-12],[-71,-17],[-2,-1],[-8,-3],[-27,-9],[-58,-20],[-47,-18],[-2,-1],[-81,-32],[-51,-22],[-19,-8],[-31,-14],[-31,-15],[-4,-2],[-39,-18],[-40,-19],[-40,-18],[-17,-8],[-10,-6],[-11,-6],[-17,-10],[-29,-15],[-40,-23],[-17,-8],[-13,-8],[-22,-13],[-52,-32],[-34,-20],[-69,-50],[-77,-56],[-27,-20],[-30,-21],[-25,-17],[-4,-3],[-5,-3],[-40,-34],[-32,-26],[-105,-95],[-130,-122],[-6,-5],[-1,-1],[-3,-3],[-1,-1],[-1,-1],[-88,-91],[-48,-53],[-27,-32],[-27,-30],[-42,-50],[-26,-32],[-44,-53],[-46,-54],[-23,-31],[-45,-60],[-15,-22],[-67,-93],[-30,-43],[-16,-22],[-4,-7],[-7,-10],[-40,-61],[-56,-87],[-32,-53],[-20,-32],[-35,-59],[-10,-16],[-12,-22],[-29,-50],[-27,-52],[-15,-28],[-15,-30],[-14,-25],[-42,-78],[-47,-87],[-15,-31],[-36,-75],[-7,-15],[-29,-64],[-37,-81],[-18,-42],[-13,-30],[-17,-41],[-33,-81],[-8,-19],[-9,-23],[-5,-13],[-22,-57],[-23,-60],[-34,-89],[-22,-63],[-37,-112],[-6,-17],[-2,-6],[-18,-53],[-9,-26],[-25,-86],[0,-2],[-1,-3],[-11,-38],[-11,-40],[-45,-170],[0,-4],[-2,-6],[-2,-7],[-22,-86],[-9,-34],[-4,-18],[-8,-32],[-49,-198],[-16,-63],[-19,-75],[-9,-40],[-92,-9],[-95,1],[-22,0],[-17,0],[-28,0],[-39,0],[-8,0],[-30,0],[-28,0],[-30,0],[-7,0],[-32,0],[-4,0],[-11,0],[-19,0],[-15,0],[-21,0],[-38,0],[-88,-1],[-11,0],[-22,0],[-141,-2],[-18,0],[-58,-1],[-40,-1],[-15,0],[-1,0],[-28,-1],[-25,0],[-5,0],[-20,0],[-153,-2],[-4,0],[-3,0],[-2,0],[-39,0],[-48,0],[-87,-1],[-30,0],[-17,0],[-13,0],[-27,0],[-11,0],[-47,0],[-42,0],[-21,0],[-21,0],[-33,0],[-61,0],[-65,0],[-106,0],[-97,1],[-102,0],[-15,0],[-34,0],[-21,0],[-25,0],[-33,0],[-46,0],[-20,0],[-50,-1],[-53,0],[-45,0],[-117,-1],[-20,0],[-39,0],[-28,0],[-5,0],[-46,0],[-164,-2],[-101,0],[-63,-1],[-62,-1],[-60,0],[-24,0],[-4,0],[-81,0],[-38,-1],[-31,0],[-31,0],[-29,0],[-65,0],[-44,0],[-124,0],[-40,0],[-24,0],[-78,-1],[-78,0],[-19,0],[-20,0],[-19,0],[-18,0],[-2,0],[-17,0],[-4,0],[-28,0],[-18,0],[-186,3],[-54,-1],[-18,0],[-40,-1],[-27,0],[-74,-2],[-36,0],[-45,0],[-15,0],[-15,0],[-31,-1],[-26,0],[-9,0],[-50,0],[-70,-1],[-12,0],[-33,0],[-22,-1],[-26,0],[-57,0],[-37,0],[-3,0],[-110,-1],[-112,-2],[-18,0],[-27,0],[-75,-1],[-60,0],[-42,-1],[-22,0],[-61,0],[-27,-1],[-278,-2],[-40,-1],[-66,-1],[-41,-1],[-61,-1],[-19,0],[-48,-1],[-23,0],[-21,-1],[-28,0],[-23,-1],[-4,0],[-2,0],[-6,0],[-48,-1],[-1,0],[-70,-1],[-62,-1],[-3,0]],[[73408,55],[-28,5],[-3,1],[-137,-7],[-81,-4],[-70,4],[-100,0],[-218,0],[-86,0],[-66,0],[-49,0],[-18,0],[-26,0],[-86,0],[-23,0],[-94,0],[-55,0],[-23,0],[-76,0],[-123,0],[-159,0],[-67,0],[-17,0],[-45,-1],[-19,0],[-19,0],[-81,1],[-2,0],[-61,0],[-128,0],[-123,0],[-306,0],[-17,0],[-77,0],[-38,-4],[-81,0],[-10,0],[-27,0],[-21,1],[-27,0],[-33,0],[-23,0],[-34,0],[-55,0],[-33,0],[-43,-1],[-91,0],[-8,0],[-26,0],[-42,0],[-87,2],[-121,1],[-38,2],[-99,-1],[-56,-3],[-2,0],[-29,-3],[-132,6],[-107,0],[-49,0],[-21,-1],[-59,-3],[-111,-1],[-37,0],[-87,3],[-68,2],[-146,0],[-232,-1],[-205,1],[-108,0],[-37,0],[-36,0],[-234,0],[-32,1],[-55,0],[-35,1],[-37,0],[-24,0],[-171,-6],[-85,-2],[-38,2],[-32,-3],[-13,0],[-95,7],[-109,0],[-142,0],[-122,0],[-20,0],[-161,-1],[-6,0],[-18,-1],[-68,-2],[-236,0],[-35,0],[-140,-1],[-109,-2],[-155,0],[-1,0],[-44,0],[-36,0],[-85,0],[-49,0],[-32,0],[-135,1],[-24,-1],[-103,0],[-20,0],[-131,-1],[-68,1],[-32,-1],[-58,1],[-41,0],[-7,1],[-21,2],[-81,-3],[-27,-2],[-1,0],[-39,-1],[-9,0],[-23,-1],[-73,0],[-92,0],[-54,0],[-90,0],[-238,-3],[-34,-1],[-19,0],[-77,0],[-27,0],[-117,1],[-117,-4],[-18,0],[-46,1],[-148,-1],[-16,0],[-39,0],[-1,0],[-23,0],[-113,-7],[-94,-1],[-101,2],[-10,0],[-18,2],[-136,-3],[-72,0],[-43,-2],[-258,-2],[-31,0],[-32,1],[-5,0],[-54,-1],[-3,0],[-2,0],[-12,0],[-31,0],[-36,0],[-33,0],[-87,-3],[-82,0],[-2,0],[-88,0],[-16,1],[-17,1],[-32,1],[-23,0],[-20,0],[-139,-3],[-78,-2],[-88,-1],[-51,4],[-7,0],[-4,0],[-22,0],[-24,0],[-2,0],[-9,1],[-3,0],[-28,0],[-44,0],[-32,1],[-112,4],[-99,0],[-1,0],[-57,0],[-40,0],[-53,3],[-87,0],[-2,0],[-40,0],[-61,0],[-69,-4],[-38,-3],[-2,0],[-1,0],[-19,0],[-39,0],[-11,0],[-24,0],[-74,-3],[-95,0],[-1,-1],[-81,-5],[-1,0],[-15,-2],[-184,-2],[-1,0],[-13,-2],[-70,-3],[-39,0],[-57,-2],[-105,-5],[-33,3],[-114,8]],[[60378,11],[0,75],[0,135],[0,192],[1,41],[-1,48],[0,41],[2,65],[1,59],[-1,59],[-1,41],[-1,185],[0,68],[2,86],[0,43],[0,41],[1,36],[1,63],[0,40],[0,114],[0,27],[1,60],[1,63],[1,63],[-2,72],[-1,48],[0,82],[-3,424],[2,178],[0,4],[-1,49],[-2,37],[-3,99],[-2,68],[0,62],[0,68],[0,52],[0,41],[0,70],[0,36],[0,5],[0,42],[0,51],[0,38],[0,47],[0,41],[0,16],[-1,44],[-1,64],[-1,43],[2,68],[6,91],[0,89],[0,54],[0,59],[1,15],[0,25],[1,55],[17,127],[133,80],[35,69],[43,83],[52,98],[11,32],[15,56],[11,30],[40,91],[13,31],[64,57],[158,40],[38,54],[32,48],[20,27],[17,24],[15,19],[21,14],[27,32],[-46,102],[-20,63],[-30,63],[-27,67],[-7,107],[-3,44],[-4,61],[-4,41],[-4,42],[-18,25],[-31,-9],[-30,-9],[-29,-8],[-26,-8],[-29,5],[-11,29],[-10,29],[-4,36],[-12,30],[-14,32],[-13,41],[-12,34],[-12,47],[-3,56],[6,34],[4,37],[-12,49],[-19,18],[-16,20],[-2,21],[-1,15],[-6,43],[-5,35],[-12,41],[-7,42],[-13,26],[-13,33],[3,41],[14,39],[7,35],[-3,42],[-15,23],[-10,28],[1,38],[7,43],[27,25],[18,13],[7,34],[-13,38],[22,20],[21,17],[17,26],[15,31],[22,24],[10,31],[12,32],[25,37],[0,48],[4,40],[14,26],[18,14],[25,14],[27,9],[10,39],[-6,38],[-17,27],[16,21],[14,33],[9,35],[18,46],[-22,3],[-20,-19],[-19,-19],[-22,14],[2,36],[-1,36],[-17,21],[-16,20],[-5,36],[10,49],[8,34],[-12,38],[5,36],[7,50],[-4,35],[-10,37],[3,41],[4,22],[3,12],[15,33],[8,3],[10,4],[16,-34],[8,-13],[10,-16],[19,13],[-4,9],[-52,150],[-15,48],[-46,141],[-1,2],[-81,251],[-20,60],[-24,77],[-54,169],[-12,37],[-30,91],[-31,88],[-90,254],[-117,373],[-77,248],[-37,117],[-61,195],[-6,17],[-40,139],[-26,92],[-28,98],[-1,4],[-53,155],[-22,17],[-18,19],[-23,32],[-33,51],[-25,34],[-18,-9],[-29,4],[-25,6],[-60,16],[-21,17],[-16,16],[-23,18],[-19,13],[-18,13],[-19,10],[-23,9],[-27,9],[-21,10],[-20,7],[-27,5],[-44,8],[-43,12],[-30,8],[-24,7],[-21,16],[-18,27],[-15,20],[-19,28],[-25,24],[-17,15],[-17,12],[-18,11],[-20,10],[-22,11],[-25,22],[-19,23],[-13,24],[-20,73],[-8,42],[-10,29],[-15,25],[-19,18],[-17,20],[-19,22],[-15,18],[-3,3],[-15,25],[-19,94],[-10,45],[-11,58],[-12,27],[-15,24],[-16,24],[-14,26],[-22,46],[-16,37],[-24,56],[-15,34],[-15,30],[-15,20],[-21,34],[-17,19],[-18,10],[-24,15],[-24,12],[-15,19],[-20,22],[-16,14],[-21,8],[-26,17],[-20,12],[-16,16],[-11,28],[-23,37],[-16,15],[-15,9],[-6,3],[-53,28],[-19,20],[-22,27],[-24,19],[-20,15],[-16,12],[-18,16],[-30,28],[-18,11],[-17,12],[-20,15],[-20,16],[-17,16],[-18,21],[-12,29],[-17,8],[-20,1],[-18,4],[-18,4],[-20,3],[-18,2],[-18,5],[-27,13],[-17,12]],[[41512,82],[-242,2],[-1,0],[-145,3],[-42,1],[-22,0],[-63,0],[-30,0],[-51,1],[-22,0],[-35,0],[-4,0],[-47,0],[-139,1],[-5,0],[-242,1],[-147,1],[-2,0],[-27,0],[-50,1],[-18,0],[-48,0],[-35,0],[-44,0],[-4,0],[-5,0],[-229,0],[-12,0],[-35,0],[-10,1],[-17,-3],[-4,0],[-13,1],[-6,0],[-10,0],[0,1],[0,1],[-153,2],[-69,1],[-6,0],[-92,1],[-23,0],[-18,0],[-200,2],[-8,0],[-46,-7],[-23,0],[-29,1],[-5,1],[-12,2],[-9,2],[-4,1],[-80,4],[-55,-1],[-31,-1],[-93,-2],[-151,-3],[-2,0],[-76,3],[-86,1],[-20,0],[-30,1],[-73,1],[-34,0],[-29,1],[-24,0],[-21,0],[-69,1],[-7,0],[-56,1],[-82,1],[-7,0],[-7,1],[-26,0],[-60,1],[-58,1],[-10,0],[-9,0],[-41,-1],[-29,0],[-25,-1],[-13,-1],[-139,-6],[-21,-1],[-18,-6],[-26,-3],[-55,-1],[-13,2],[-15,0],[-10,1],[-16,2],[-3,0],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-5,-1],[-1,1],[-2,2],[-35,-4],[-2,0],[-8,2],[-18,5],[-155,4],[-34,-1],[-30,0],[-40,0],[-33,0],[-38,0],[-59,0],[-5,0],[-49,0],[-178,1]],[[19334,64],[-13,0],[-151,0],[-1,0],[-107,0],[-123,0],[-98,-2],[-154,-2],[-46,-1],[-206,-2],[-2,-1],[-133,-2],[-34,-1],[-47,-1],[-267,-5],[-33,-1],[-25,0],[-187,-1],[-7,0],[-206,-1],[-41,0],[-63,-1],[-237,-3],[-70,0],[-133,-2],[-31,0],[-249,-2],[-266,6],[-58,2],[-295,9],[-84,-2],[-168,-6],[-89,2],[-77,1],[-41,4],[-201,-11],[-5,0],[-29,0],[-31,-1],[-121,-1],[-183,-1],[-26,0],[-58,-1],[-142,-1],[-39,0],[-18,0],[-7,0],[-113,-1],[-147,3],[-270,4],[-156,0],[-172,0],[-156,0],[-227,-3],[-251,-3],[-35,-1],[-149,0],[-87,0],[-296,3],[-90,0],[-20,0],[-108,3],[-30,-3],[-114,0],[-100,0],[-7,0],[-101,0],[-32,0],[-63,-1],[-42,0],[-7,0],[-48,0],[-74,0],[-28,0],[-31,0],[-82,-1],[-39,0],[-25,0],[-26,0],[-170,0],[-23,-1],[-21,0],[-40,0],[-2,0],[-15,0],[-75,0],[-106,0],[-89,-1],[-110,1],[-106,0],[-22,0],[-343,2],[-38,0],[-5,0],[-70,1],[-20,-3],[-1,0],[-1,0]],[[10349,35],[2,3],[7,16],[37,87],[32,72],[17,45],[7,33],[18,56],[15,46],[34,74],[26,100],[6,38],[5,36],[9,27],[3,32],[7,71],[6,56],[-35,73],[-12,24],[-17,37],[-29,58],[-22,45],[-54,68],[-57,35],[-110,35],[-29,22],[-14,15],[-55,57],[-58,113],[-45,227],[5,38],[15,106],[1,5],[2,31],[2,36],[-17,101],[-20,87],[-1,2],[0,6],[-2,54],[0,8],[7,96],[8,128],[33,30],[36,30],[41,26],[34,14],[45,5],[36,-3],[22,3],[25,7],[11,13],[16,18],[58,57],[25,31],[16,24],[10,30],[3,52],[-5,80],[-6,51],[-20,75],[-30,81],[-29,64],[-31,80],[-15,44],[-30,105],[-15,67],[-8,41],[-7,97],[-1,7],[-6,103],[-3,227],[-13,195],[-2,55],[-3,58],[-18,57],[-24,48],[-35,25],[-13,6],[-82,27],[-42,29],[-36,43],[-24,81],[-3,45],[11,80],[29,67],[119,128],[41,59],[7,9],[24,113],[-3,44],[-20,65],[-38,74],[-27,83],[-13,84],[3,76],[19,97],[25,45],[39,46],[69,63],[72,-20],[13,94],[12,37],[0,57],[-8,43],[-14,54],[-28,74],[-39,105],[-34,101],[0,5],[-85,325],[-12,126],[-3,101],[6,74],[16,59],[24,64],[7,14],[11,21],[21,61],[15,33],[16,60],[1,1],[3,11],[0,25],[1,70],[1,7],[-8,46],[-16,48],[-10,20],[-18,38],[-22,48],[-78,137],[-37,83],[-126,321],[-67,149],[-121,188],[-55,63],[-62,51],[-56,30],[-115,21],[-74,-9],[-85,-41],[-20,-16],[-50,-39],[-2,-2],[-6,-5],[-50,-40],[-37,-30],[-4,-2],[-1,-1],[-41,-22],[-35,-5],[-66,13],[-20,15],[-35,40],[-3,4],[-29,47],[-20,16],[-6,5],[-10,15],[-48,73],[-39,94],[-14,100],[6,16],[-10,5],[1,107],[-6,67],[0,4],[0,3],[-3,49],[0,3],[0,6],[0,7],[1,6],[0,2],[8,103],[0,4],[0,5],[7,54],[0,1],[1,6],[1,6],[1,4],[17,78],[1,2],[1,6],[2,5],[2,5],[2,5],[2,5],[2,4],[2,4],[1,1],[15,24],[22,33],[37,43],[53,42],[3,51],[31,15]],[[95119,11767],[-41,-72],[-35,-57],[-16,-20],[-24,-32],[-16,-28],[-19,-36],[-7,-12],[-13,-20],[-51,-77],[-29,-44],[-33,-49],[-61,-96],[-43,-63],[-27,-41],[-42,-65],[-27,-30],[-14,-15],[-13,-14],[-31,-45],[-2,-3],[-80,-115],[-5,-8],[-15,-25],[-15,-23],[-14,-23],[-17,-9],[-33,-17],[-33,-22],[-29,-19],[-23,-7],[-27,-7],[-24,-7],[-48,-22],[-50,-29],[-24,-14],[-15,-8],[-20,-11],[-17,-10],[-71,-51],[-39,-30],[-40,-34],[-3,-3],[-30,-26],[-21,-24],[-17,-20],[-48,-98],[-5,-8],[-35,-55],[-23,-42],[-31,-104],[-6,-19],[-10,-30],[-1,-4],[-13,-42],[-16,-47],[-6,-70],[-12,-76],[-6,1],[-74,17],[0,-1],[-38,-133],[-39,-85],[-23,-63],[-18,-46],[-17,-24],[-40,-55],[-51,-73],[-75,-50],[-42,-15],[-58,-27],[-23,-10],[-27,-7],[-44,-16],[-47,-17],[-55,-21],[-102,-54],[-86,-67],[-82,-64],[-58,-59],[-87,-77],[-51,-40],[-38,-41],[-45,-61],[-43,-85],[-30,-61],[-39,-187],[-3,-16],[-6,-32],[-7,-61],[-6,-42],[-4,-37],[-6,-56],[-6,-65],[-5,-86],[-2,-83],[2,-67],[2,-71],[-2,-98],[0,-79],[22,-123],[19,-77],[22,-98],[9,-98],[15,-146],[4,-69],[-3,-71],[14,-106],[24,-17],[-1,-50],[-8,-66],[-8,-76],[-11,-39],[-9,-32],[-10,-50],[-15,-60],[-60,-167],[-37,-115],[-14,-31],[-14,-17],[-6,-12],[-17,-15],[-40,-19],[-31,-4],[-25,-6],[-33,-2],[-34,0],[-35,-2],[-46,-4],[-71,-4],[-59,-15],[-71,-8],[-38,2],[-58,-4],[-35,-3],[-34,-4],[-36,-6],[-19,-10],[-25,-5],[-13,-6],[-24,-8],[-26,-15],[-24,-12],[-17,-7],[-29,-4],[-30,-10],[-8,-3],[-27,-8],[-34,-20],[-32,-38],[-29,-42],[-30,-50],[-28,-39],[-24,-40],[-26,-44],[-61,-66],[-97,-153]],[[90945,5381],[27,175],[1,30],[0,7],[-17,-7],[-17,-6],[-19,-2],[-35,-3],[-21,3],[-19,4],[-25,9],[-23,9],[-20,6],[-23,7],[-26,7],[-17,3],[-23,5],[-28,4],[-18,-7],[-16,-17],[-12,-27],[-15,-24],[-14,-26],[-14,-26],[-16,-21],[-14,-23],[-23,14],[-77,82],[-24,41],[-37,0],[-25,-8],[-29,0],[-21,3],[-25,3],[-18,2],[-32,5],[-38,4],[-15,2],[-5,1],[-1,0],[-41,146],[-4,36],[14,21],[20,4],[20,19],[-15,31],[-23,14],[17,42],[-14,28],[-16,21],[-1,39],[17,25],[17,-2],[15,27],[0,40],[4,37],[14,28],[20,9],[19,12],[13,25],[19,42],[-6,36],[9,34],[11,28],[10,32],[1,41],[30,83],[33,78],[-20,53],[7,44],[18,13],[18,23],[5,37],[-5,35],[-9,30],[14,29],[17,16],[10,31],[13,28],[12,27],[-2,9],[-7,23],[10,32],[2,37],[-7,32],[1,37],[-5,39],[2,39],[2,38],[9,19],[4,7],[8,40],[7,33],[10,30],[15,25],[-4,38],[9,34],[0,38],[-7,35],[14,24],[7,34],[11,29],[14,24],[17,4],[19,-10],[17,-23],[18,-6],[13,26],[4,39],[5,35],[18,23],[9,33],[-5,41],[-16,14],[-21,-1],[-17,-6],[-18,-3],[-18,7],[-3,37],[11,28],[5,36],[-10,30],[-19,10],[-13,-1],[-6,0],[-18,3],[-18,8],[-20,2],[-17,3],[-5,19],[-4,14],[-10,32],[-11,30],[-16,29],[-14,23],[-5,37],[-12,31],[-8,33],[6,34],[-8,32],[6,38],[8,34],[13,24],[8,37],[5,34],[-2,35],[-13,24],[-12,31],[14,30],[16,18],[14,22],[8,36],[2,36],[0,2],[1,39],[-16,21],[-19,18],[-18,1],[-16,17],[-20,-4],[-19,5],[-17,-22],[-16,-14],[-14,-24],[-17,-3],[-11,29],[-7,36],[-16,21],[-17,9],[-17,-4],[-15,-20],[-17,0],[-17,-15],[-17,6],[-14,23],[-18,8],[-18,13],[-11,27],[-17,11],[-8,33],[-18,5],[-16,15],[-18,5],[-22,1],[-13,30],[-16,16],[-15,18],[-15,30],[-9,33],[-5,35],[-15,21],[9,37],[1,1],[26,28],[24,25]],[[60378,11],[-22,0],[-80,0],[-23,0],[-39,0],[-49,-1],[-33,0],[-59,0],[-19,0],[-3,0],[-6,0],[-33,0],[-29,-1],[-17,0],[-61,-3],[-80,-1],[-111,-1],[-16,-1],[-76,1],[-65,1],[-15,-1],[-15,0],[-54,0],[-41,1],[-12,0],[-44,0],[-1,0],[-137,0],[-21,0],[-264,0],[-95,0],[-25,0],[-105,0],[-41,0],[-46,0],[-40,0],[-88,0],[-49,-1],[-24,0],[-28,0],[-69,0],[-19,0],[-7,0],[-21,0],[-2,0],[-29,0],[-7,0],[-8,0],[-10,0],[-187,0],[-71,0],[-52,0],[-69,0],[-26,0],[-14,0],[-95,0],[-28,-1],[-38,0],[-44,0],[-14,0],[-96,-1],[-11,0],[-31,0],[-17,0],[-66,-1],[-32,0],[-42,0],[-74,0],[-23,0],[-26,0],[-37,0],[-27,0],[-38,0],[-117,1],[-30,0],[-73,0],[-91,0],[-2,0],[-109,0],[-5,0],[-51,0],[-254,1],[-54,0],[-12,0],[-13,0],[-8,0],[-17,0],[-3,0],[-7,0],[-3,1],[-8,0],[-6,0],[-5,-1],[-10,0],[-5,-2],[-1,0],[-4,1],[-12,1],[-12,0],[-42,0],[-26,0],[-85,0],[-152,0],[-24,0],[-77,0],[-48,0],[-373,1],[-5,0],[-197,0],[-29,0],[-9,0],[-227,0],[-22,0],[-30,0],[-50,0],[-12,0],[-91,0],[-53,0],[-70,0],[-174,0],[-14,0],[-4,0],[-99,0],[-116,0],[-21,0],[-49,0],[-41,0],[-55,-1],[-36,0],[-12,0],[-19,0],[-25,0],[-20,0],[-134,-2],[-50,0],[-22,0],[-11,0],[-7,0],[-241,1],[-18,0],[-21,0],[-68,1],[-64,0],[-25,0],[-222,1],[-73,0],[-126,1],[-38,0],[-19,0],[-39,0],[-25,0],[-15,1],[-106,0],[-16,0],[-29,1]],[[90945,5381],[-100,-104],[-197,-200],[-226,-146],[-132,-61],[-20,46],[-130,32],[-75,-3],[-49,-4],[-29,-4],[-27,-4],[0,-3],[-71,30],[-38,40],[-50,16],[-99,-40],[-111,-8],[-133,64],[-141,63],[-65,-119],[-76,-48],[-88,-55],[-152,-112],[-149,-135],[-130,-103],[-72,-104],[-84,-71],[-95,-112],[-180,-175],[-5,-12],[-75,-171],[-263,-286],[-160,-175],[-171,-151],[-102,-93],[-37,-34],[-15,-14],[-67,78],[-48,49],[-41,41],[-2,1],[-64,55],[-9,10],[-38,40],[-23,23],[-13,13],[-63,54],[-17,17],[-50,41],[-4,3],[-6,5],[-48,24],[-18,10],[-92,88],[-18,13],[-65,47],[-104,70],[-36,18],[-17,12],[-133,81],[-85,44],[-121,62],[-20,10],[-44,19],[-35,14],[-14,5],[-83,30],[-44,17],[-25,9],[-52,19],[-30,-10],[-24,4],[-24,5],[-4,0],[-19,10],[-16,25],[-70,26],[-23,6],[-39,2],[-50,9],[-69,12],[-73,19],[-30,7],[-11,1],[-4,0],[-18,-1],[-202,-11],[-9,0],[-56,1],[-43,1],[-87,17],[-23,-7],[-44,10],[-32,10],[-15,-9],[-95,-6],[-61,-11],[-1,0]],[[84490,4210],[-1,-1],[-3,0],[-2,-1],[-5,-1],[-1,0]],[[10349,35],[-44,0],[-11,0],[-21,-1],[-62,0],[-104,-1],[-176,-2],[-103,2],[-60,1],[-110,1],[-120,2],[-153,2],[-203,3],[-268,7],[-109,1],[-123,1],[-96,0],[-188,2],[-200,1],[-40,-1],[-99,1],[-198,1],[-1,0],[-18,0],[-35,0],[-196,1],[-29,1],[-43,0],[-61,-6],[-19,0],[-129,0],[0,-1],[-216,-2],[-3,0],[-65,-2],[-27,1],[-244,1],[-38,-3],[-241,5],[-20,0],[-17,0],[-52,1],[-52,0],[-76,0],[-22,0],[-316,-3],[-68,0],[-102,1],[-21,1],[-7,0],[-46,1],[-20,0],[-32,-1],[-21,0],[-50,0],[-14,-1],[-36,-1],[-7,0],[-50,0],[-34,2],[-37,0],[-11,0],[-12,0],[-18,0],[-18,1],[-18,0],[-6,0],[-28,0],[-23,0],[-12,0],[-32,0],[-77,0],[-5,0],[-23,0],[-27,0],[-47,-1],[-20,-1],[-16,0],[-9,0],[-7,0],[-56,0],[-4,0],[-20,-1],[-35,0],[-48,0],[-4,0],[-31,-1],[-37,0],[-12,0],[-70,-3],[-36,-1],[-146,1],[-6,0],[-48,1],[-18,0],[-28,1],[-10,0],[-37,0],[-45,-1],[-6,0],[-70,1],[-4,0],[-19,0],[-6,0],[-20,0],[-120,2],[-68,0],[-57,1],[-53,1],[-205,2],[-29,1],[-19,0],[-338,0],[-103,2],[-79,0],[-164,1],[-25,0],[-114,1],[-199,1],[-69,0],[-48,-3],[-59,-1],[-18,0],[-152,-1],[-38,-1],[-28,0],[-81,-1],[-35,0],[-76,-1],[-114,-1],[-35,1],[-157,0],[-75,3],[-93,0],[-4,0],[-249,1],[-70,1],[-39,0],[-31,0],[-77,0],[-166,0],[-145,0],[-210,0],[-52,-1],[-58,0],[-74,2],[-97,1],[-165,3],[-74,0],[-3,0],[0,80],[0,481],[-1,60],[0,47],[-1,75],[-1,72],[3,210],[1,474],[0,63],[-3,69],[2,413],[0,65],[1,178],[-1,47],[0,95],[0,84],[0,210],[-1,196],[-1,112],[4,534],[0,56],[0,208],[0,2],[3,156],[-3,87],[1,62],[2,275],[1,146],[-1,188],[0,73],[0,79],[1,136],[0,133],[-2,184],[-1,148],[3,99],[0,10],[2,459],[-1,180],[0,43],[-4,402],[1,171],[0,101],[-3,570],[0,1],[-2,53],[1,44],[3,91],[2,40],[1,22],[0,24],[-3,277],[0,342],[4,50],[0,30],[-2,119]]],"transform":{"scale":[0.00005830267384673858,0.000027942507735076914],"translate":[-80.51967819599992,39.71979106100008]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ri-counties.json b/src/js/config/mapconfig/mapfiles/county/ri-counties.json new file mode 100644 index 00000000..173000e7 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ri-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-71.88617535999992,41.14700112800011,-71.1196432999999,42.018789422000054],"geometries":[{"type":"Polygon","properties":{"name":"RI"},"id":"44007","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"RI"},"id":"44001","arcs":[[-1,4]]},{"type":"Polygon","properties":{"name":"RI"},"id":"44003","arcs":[[5,6,7,-3]]},{"type":"MultiPolygon","properties":{"name":"RI"},"id":"44005","arcs":[[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]]]},{"type":"MultiPolygon","properties":{"name":"RI"},"id":"44009","arcs":[[[18]],[[-7,19]]]}]},"states":{"type":"GeometryCollection","bbox":[-71.88617535999992,41.14700112800011,-71.1196432999999,42.018789422000054],"geometries":[{"type":"MultiPolygon","properties":{"name":"Rhode Island"},"id":"44","arcs":[[[18]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[4,1,5,19,7,3]]]}]}},"arcs":[[[74152,72162],[-152,-93],[-136,-84],[-43,-26],[-191,-117],[-120,-70],[-257,-154],[-44,-26],[-66,-40],[-172,-102],[-183,-111],[-271,-161],[-236,-142],[-128,-76],[-131,-79],[-170,-102],[-204,-122],[-373,-223],[-360,-216],[-2,-1],[-187,-112],[-135,-82],[-130,-77],[-125,-75],[-125,-75],[-166,-99],[-304,-182]],[[69741,69515],[-61,244],[-291,197],[-145,-342],[-381,96],[88,-303],[223,-321],[72,-311],[-404,-155],[-133,249],[-118,246],[-157,189],[-25,253],[29,261],[47,253],[-90,427],[-335,323],[-544,148],[162,319],[193,293],[-8,340],[-50,369],[-220,392],[-288,155],[-61,272],[-77,395],[-233,239],[-62,233],[-145,205],[-341,113],[-270,101],[-6,261],[-180,145],[-236,337],[-293,128],[-233,102],[-230,428],[-302,380],[-186,20],[52,260],[472,139],[426,139],[375,122],[173,97],[331,185],[-10,11],[-286,296],[-19,19],[-74,77],[321,403],[755,463],[367,825],[-6,93],[-40,652],[-23,947],[-618,664],[-235,-8],[-361,-12],[46,-443],[23,-644],[-160,-685],[-596,-322],[-23,-866],[504,-201],[-114,-423],[-504,-181],[-68,-166],[-161,-398],[-177,-179],[-175,-177],[-47,16],[-555,9],[-329,-118],[-618,66],[-6,-48],[-40,-334],[169,-340],[-8,-93],[327,-266],[4,-300],[144,-260],[256,-282],[591,-44],[514,-402],[304,-233],[361,-204],[251,-321],[-9,-454],[-403,-60],[-221,-72],[-307,-201],[-287,4],[-153,-337],[108,-519],[313,-402],[-78,-320],[319,-209],[156,-367],[-197,-397],[-184,428],[-254,-19],[-218,-17]],[[64548,70787],[-85,-9],[-22,-3],[-115,-4],[-68,10],[-131,32],[-78,38],[-30,14],[-44,66],[-3,156],[-1,20],[-7,6],[-12,10],[-9,7],[-315,89],[-106,30],[-17,4],[-72,14],[-732,-55],[-120,-9],[-156,-21],[-406,-105],[-72,-23],[-52,-34],[-83,-108],[-219,-223],[-164,-42],[-486,-123],[-15,0],[-74,-1],[-18,0],[-48,29],[-374,99],[-33,9],[-127,-84],[-153,-68],[-277,-121],[-98,-8],[-2,0],[-245,8],[-53,2],[-264,9],[-60,2],[-116,4],[-94,3],[-315,-98],[-1,0],[-138,-44],[-100,-188],[-74,-139],[-4,-4],[-157,-170],[-1,-1],[-350,-378],[-103,-133],[-169,-219],[-80,-105],[31,-77],[52,-118],[85,-116],[38,-63],[32,-52],[50,-145],[9,-117],[-16,-118],[-166,-98],[-132,-6],[-76,1],[-63,1],[-245,1],[-96,-6],[-13,-22],[-349,-266],[-126,-131],[-130,-135],[-209,-143],[-340,-179],[-135,-2],[-567,-5],[-306,-5],[-169,-3],[-221,-4],[-666,-16],[-286,-7],[-79,-2],[-92,-2],[-134,-3],[-148,-3],[-179,-4],[-182,-5],[-87,-2],[-276,-6],[-52,-1],[-80,-2],[-88,-2],[-394,-10],[-377,-8],[-482,-12],[-347,-8],[-130,-18],[-279,-6],[-131,-5],[-185,-7],[-189,-3],[-183,-2],[-143,-5],[-160,-5],[-178,-6],[-178,-3],[-291,-6],[-161,-5],[-303,-8],[-159,-8],[-427,-8],[-220,-7],[-206,-5],[-319,-8],[-277,-7],[-364,-13],[-210,-1],[-227,0],[-152,-1],[-143,1],[-136,-3],[-238,-2],[-158,-1],[-152,-4],[-12,0],[-138,1],[-133,-7],[-157,-3],[-84,-2],[-60,-2],[-169,-1],[-170,-2],[-515,-9],[-172,-4],[-346,-6],[-297,-5],[-142,-3],[-625,-12],[-151,-3],[-389,-8],[-535,-11],[-433,-10],[-163,-4],[-664,-17],[-629,-16],[-374,-12],[-249,-8],[-207,-6],[-158,-5],[-479,-15],[-1318,-32],[-725,-20],[-500,-14],[-294,-7],[-142,-3],[-382,-2],[-685,-3],[-528,8],[-439,-23],[-254,-3],[-199,-1],[-616,-5],[-1316,-13],[-289,-3],[-132,-1],[-368,-3],[-364,-3],[-321,-7],[-185,-6],[-193,-6],[-853,-15],[-628,-11],[-281,-5],[-1288,-25],[-527,-11],[-65,-1],[-362,-7],[-292,-6],[-475,-9],[-434,-3],[-682,-19],[-168,-3],[-154,-3],[-989,-18],[-1457,-18],[-1115,-22],[-365,-6],[-284,-7],[-131,-13],[-141,-1],[-348,-3],[-155,-3],[-233,-5],[-133,-2],[-716,-20],[-146,-2],[-182,-7],[-674,-15],[-272,-6],[-446,-11],[-232,-5],[-588,-19],[-387,-14]],[[12586,66249],[-2,314],[-7,488],[-16,432],[-11,289],[-5,118],[-10,195],[3,196],[-15,199],[-17,406],[-2,38],[-30,256],[-7,260],[-5,170],[-7,245],[-47,1629],[-24,469],[-20,411],[-10,174],[-12,217],[-48,952],[0,3],[-1,215],[-12,295],[-4,84],[-1,32],[-7,47],[-22,377],[-8,140],[-29,433],[-25,416],[0,47],[-1,62],[-1,49],[-10,243],[-2,109],[-12,156],[-16,181],[-5,138],[-3,101],[-3,94],[-11,347],[-6,125],[-1,36],[-10,271],[-8,165],[-8,150],[-12,210],[-3,62],[-21,358],[-12,252],[-24,560],[-14,194],[-8,179],[-19,424],[-11,256],[0,14],[-7,154],[-6,134],[-15,323],[-32,544],[-51,830],[-7,130],[-7,120],[-29,523],[-13,226],[-15,297],[-10,277],[-33,693],[-32,640],[-11,405],[-5,205],[-8,130],[-8,138],[-4,119],[-6,176],[-9,286],[-6,174],[-20,478],[-11,263],[-19,434],[-1,13],[-4,63],[-1,9],[-21,435],[-4,128],[-7,175],[-7,149],[-17,328],[-5,116],[-12,230],[-3,72],[-1,115],[0,31],[-1,52],[-2,191],[-1,102],[0,11],[-1,70],[-11,632],[-3,390],[-5,167],[-5,267],[8,196],[-1,252],[-8,122],[-7,4],[-2,73],[-4,151],[-9,187],[-1,149],[0,195],[0,60],[-3,64],[-1,15],[-5,118],[-5,117],[-18,752],[-4,188],[-9,579],[-6,386],[-6,307],[-3,209],[-7,491],[-24,779],[-14,483],[-10,408],[-3,173],[-5,333],[1177,77],[279,11],[134,5],[291,11],[474,16],[389,14],[132,5],[560,20],[192,7],[633,23],[53,2],[27,2],[825,15],[497,9],[83,1],[93,1],[315,1],[29,1],[206,5],[131,0],[1086,16],[764,18],[1326,30],[472,7],[739,11],[252,4],[295,17],[54,3],[133,-2],[599,9],[63,0],[267,5],[110,2],[443,1],[1844,37],[244,5],[53,1],[164,1],[348,2],[25,0],[153,3],[166,4],[206,4],[584,13],[351,7],[254,5],[48,2],[4,0],[301,9],[85,2],[962,21],[258,5],[296,7],[342,7],[270,6],[11,0],[3,0],[171,4],[512,13],[395,10],[135,3],[393,11],[641,16],[135,4],[114,2],[264,7],[89,2],[170,4],[1,0],[567,13],[417,10],[852,16],[243,6],[128,1],[2,0],[1,0],[274,6],[180,3],[931,18],[32,1],[274,7],[179,5],[201,2],[208,2],[55,1],[224,2],[109,8],[1,0],[235,15],[181,-2],[575,-7],[98,1],[383,9],[188,4],[24,0],[188,4],[241,5],[389,9],[266,4],[110,2],[146,3],[118,2],[326,8],[335,8],[270,7],[33,1],[102,2],[632,21],[229,0],[174,0],[23,0],[154,-1],[224,4],[261,5],[65,1],[85,2],[34,0],[144,8],[76,4],[143,0],[13,0],[192,11],[544,0],[97,0],[185,12],[26,0],[323,11],[388,23],[133,0],[134,11],[230,6],[20,1],[431,38],[349,24],[236,28],[238,19],[248,19],[46,4],[159,11],[339,22],[23,2],[359,21],[24,0],[116,0],[213,0],[62,0],[148,0],[44,0],[115,0],[241,8],[91,4],[205,0],[335,9],[229,14],[175,0],[1388,14],[999,10],[530,6],[431,4],[231,3],[456,5],[360,4],[378,0],[739,22],[4,0],[24,1],[277,2],[44,1],[1252,12],[621,6],[123,1],[100,0],[216,5],[204,7],[167,4],[291,7],[179,1],[55,0],[300,3],[168,2],[995,12],[407,6],[220,2],[216,3],[198,2],[307,4],[191,0],[56,0],[38,0],[98,0],[298,-1],[11,0],[242,1],[87,0],[167,0],[42,0],[244,0],[-8,-607],[-5,-362],[0,-430],[0,-591],[0,-154],[0,-1],[0,-1],[2,-87],[11,-600],[3,-238],[3,-194],[7,-612],[1,-75],[3,-214],[1,-37],[0,-386],[-11,-166],[-13,-38],[-3,-155],[9,-348],[0,-72],[0,-15],[-3,-597],[-1,-16],[-3,-40],[6,-67],[5,-23],[-13,-96],[-7,-13],[16,-167],[-2,-140],[-4,-338],[-7,-456],[0,-194],[0,-48],[0,-93],[-2,-60],[-4,-157],[-1,-52],[-6,-196],[-2,-285],[0,-87],[-4,-676],[-1,-159],[-6,-897],[0,-221],[7,-287],[6,-231],[0,-6],[55,-139],[-42,-210],[-59,-291],[-283,-96],[-8,-316],[-7,-283],[66,-395],[-45,-164],[-132,-402],[306,-99],[-45,-313],[-45,-310],[48,-12],[39,-65],[24,-58],[115,-269],[3,0],[39,6],[374,46],[122,15],[39,5],[25,3],[51,6],[34,4],[224,35],[58,7],[180,20],[177,10],[50,2],[604,77],[238,21],[338,23],[431,47],[243,32],[255,26],[13,3],[2,0],[201,26],[153,20],[32,4],[285,9],[90,8],[3,0],[4,-1],[41,-4],[131,30],[104,9],[26,3],[40,3],[333,44],[262,17],[261,17],[14,1],[130,23],[-47,-456],[-3,-14],[-20,-67],[-19,-76],[-13,-55],[-2,-7],[-7,-83],[-11,-102],[-3,-18],[-3,-22],[-6,-31],[-75,-469],[-13,-126],[-33,-214],[-7,-54],[-8,-145],[9,-25],[-56,-494],[-43,-239],[-15,-82],[-73,-398],[36,-459],[136,-73],[167,-226],[220,-299],[9,-1],[88,-67],[-45,-111],[-185,-116],[-121,-128],[-69,-167],[80,-169],[94,-370],[-171,-315],[-72,-97],[-80,-152],[-63,-130],[-29,-79],[-32,-316],[-32,-324],[346,74],[71,-86],[15,-300],[-114,-277],[-157,-118],[-14,-6],[-52,-84],[-22,-61],[-219,-233],[-232,-247],[-154,-439],[39,-73],[475,-895],[303,-459],[76,-114],[61,-109],[-42,-300],[-50,-350],[-5,-21],[-38,-138],[-13,-46],[-17,-64],[-52,-86],[7,-96],[9,-138],[19,-36],[60,-111],[16,-31],[1,-1],[15,-14],[60,-56],[48,-32],[267,-81],[88,-26],[529,-528],[13,-13],[100,-60],[238,-144],[-4,-29],[-52,-357],[24,-325],[115,-202],[84,-121],[36,-37],[279,-89],[239,-55],[344,-30],[8,-2],[499,-205]],[[74152,72162],[300,-110],[131,-48],[221,-83],[279,-104],[12,-4],[17,-7],[44,-16],[95,-36],[48,-17],[27,-11],[367,-136],[296,-110],[653,-243],[99,-37],[61,-22],[303,-113],[3,-1],[59,-22],[542,-202],[81,-30],[265,-99],[225,-84],[220,-82],[2,-1],[137,-52],[138,-51],[52,-20],[304,-113],[292,-109],[122,-45],[420,-157],[252,-94],[56,-21],[647,-238],[175,-64],[193,-71],[271,-100],[232,-231],[134,-141],[454,-473],[177,-185],[165,-172],[336,-351],[166,-163],[355,-350],[14,-13],[1219,-1201],[555,-546],[651,-641],[142,-352],[-162,-344],[-259,-235],[-407,-254],[-393,-238],[-299,-121],[-276,-106],[-327,10],[-18,298],[-6,80],[-14,233],[96,32],[-24,527],[-93,321],[-66,198],[-115,210],[-426,66],[-310,210],[-290,120],[-407,-68],[-122,278],[-104,189],[-292,191],[-584,-27],[244,-357],[201,-230],[189,-113],[0,-242],[1512,-1680],[169,-188],[-49,-143],[17,-365],[225,-334],[122,-286],[158,-225],[272,-287],[225,-316],[299,-484],[2,-423],[-63,-311],[-142,-184],[-71,-292],[-479,-76],[-328,231],[-249,-45],[-415,-234],[-344,-249],[-133,-270],[-144,-311],[-49,-283],[-41,-252],[-166,-366],[-197,-318],[-136,-337],[-264,-292],[-16,-17],[-312,29],[-279,89],[-255,156],[-139,233],[-186,353],[-71,271],[157,311],[113,258],[-53,222],[-258,156],[-395,231],[-280,263],[-314,216],[-165,419],[-36,430],[58,259],[-91,271],[-243,40],[-148,193],[-157,164],[-380,-97],[-396,-241],[88,-196],[68,-203],[54,-290],[-2,-275],[-91,-330],[-102,-269],[-175,-344],[-349,-249],[-199,113],[-247,-123],[-107,-259],[-44,-366],[17,-383],[-143,-276],[-243,47],[-195,312],[-165,249],[-24,301],[-149,298],[55,313],[-30,305],[-50,273],[-65,390],[71,362],[186,373],[145,160],[109,307],[440,-7],[399,207],[94,265],[250,255],[54,226],[7,285],[24,318],[49,350],[121,495],[6,292],[-3,273],[-21,277],[98,275],[341,170],[277,141],[128,326],[-50,268],[-110,391],[1,368],[-31,278],[-79,239],[-207,224],[75,247],[-57,76],[58,89],[100,152],[51,9],[504,-302],[435,0],[183,60],[-320,665],[-161,745],[-160,1147],[-184,7],[-366,14],[-297,-363],[46,-705],[114,-825],[-298,-403],[59,-153],[7,-19],[-72,-294],[-312,-58],[-196,307],[-43,68],[-21,7],[-109,223],[-481,463],[-641,181],[-595,161],[-779,403],[-366,0],[23,-202],[504,-523],[618,-201],[1076,-141],[344,-343],[126,-134],[65,-69],[56,-155],[331,-297],[414,-75],[173,-166],[109,-254],[-125,-309],[-153,-197],[-234,-177],[7,-285],[-79,-319],[-278,110],[0,314],[-275,181],[-252,-81],[-91,-422],[26,-63],[-5,-290],[120,-209],[-105,-249],[-162,-250],[-264,-74],[-360,136],[-202,316],[-45,403],[151,220],[39,298],[-390,301],[-387,139],[-434,106],[-405,64],[-383,42],[-421,18],[-370,14],[-247,3],[-455,-23],[-387,-26],[-389,42],[-202,283],[-47,329],[-87,177],[-28,230],[-216,277],[-241,46],[-307,317],[-212,332],[-450,278],[50,433],[40,475]],[[64548,70787],[357,-163],[66,-208],[100,-192],[99,-211],[218,-305],[357,-183],[240,-60],[-173,-304],[-294,-321],[437,-195],[394,-171],[-340,-406],[-254,-248],[-296,94],[-279,-140],[-358,-142],[-49,-405],[414,-26],[219,-290],[458,-329],[247,-340],[322,-255],[364,-193],[367,-186],[445,-186],[113,-15],[1122,133],[82,-38],[43,-206],[-400,-239],[-762,-188],[51,-298],[49,-325],[88,-295],[-28,-347],[-118,-386],[-4,-298],[91,-258],[206,-268],[-228,-302],[-300,-113],[-282,-48],[-238,-279],[-181,-343],[-19,-260],[-60,-299],[32,-305],[-13,-211],[-181,-274],[-318,-286],[-419,-19],[-334,148],[-331,201],[-218,231],[-351,69],[-77,264],[-6,324],[-6,303],[114,257],[82,303],[-64,121],[47,564],[-367,120],[-174,-81],[-55,-26],[-25,-156],[85,-302],[57,-306],[-233,-117],[-344,-13],[-425,163],[-13,18],[28,498],[-366,524],[-481,100],[46,-221],[23,-503],[-390,0],[-481,0],[69,-182],[641,-161],[-28,-30],[-59,-62],[-13,-13],[-398,-62],[-505,0],[-463,75],[-455,96],[-330,39],[-322,0],[-450,-8],[-471,105],[-290,9],[-436,-5],[-393,162],[204,270],[-348,252],[-245,258],[-410,98],[-224,55],[-180,-139],[75,-105],[368,-266],[246,-148],[-124,-232],[-254,-213],[66,-282],[164,-282],[39,-301],[84,-170],[204,-206],[151,-266],[-218,-269],[-22,-305],[81,-232],[125,-251],[63,-204],[-36,-280],[-277,-251],[-181,-187],[-590,-426],[-55,-584],[313,4],[241,370],[224,226],[328,168],[325,288],[116,373],[82,302],[11,331],[221,134],[231,-35],[470,29],[426,106],[297,23],[365,290],[437,-303],[210,-300],[445,-32],[464,-117],[471,-249],[-3,-467],[-259,-44],[-441,-117],[-472,19],[-214,-3],[-356,-55],[-276,-86],[-312,-205],[-309,-301]],[[59514,57784],[-285,74],[-80,-11],[-4,0],[-109,-15],[-108,-41],[-666,-346],[-1,0],[-74,-69],[-127,-118],[-22,-21],[-171,-115],[-8,-9],[-307,-363],[-9,-10],[-407,-482],[-7,-39],[-61,-351],[-3,-16],[-83,-189],[-572,-234],[-52,-21],[-422,619],[-555,312],[-105,18],[-65,-106],[-45,-60],[-28,-39],[-129,-25],[-122,-60],[-118,-56],[-91,-89],[-125,-45],[-36,15],[-89,37],[-131,-33],[-89,-96],[-125,-57],[-95,-84],[3,-165],[1,-50],[52,-194],[-972,-514],[-133,-25],[-150,-22],[-78,-25],[-50,-17],[-24,-120],[-80,-95],[-130,-23],[-80,-100],[-117,-56],[-61,-106],[12,-115],[23,-116],[-125,-45],[-133,-28],[-1,-116],[56,-106],[16,-118],[135,-18],[125,-36],[8,-122],[39,-224],[17,-148],[13,-117],[28,-262],[20,-186],[-119,-113],[-675,-4],[-162,-1],[-357,-3],[-147,-1],[-275,-2],[-7,0],[-227,-2],[-904,-3],[-547,1],[-658,0],[-262,0],[-350,-1],[-229,-1],[-922,-27],[-523,-11],[-1372,-30],[-132,-3],[-175,-12],[-670,-13],[-57,-1],[-93,-2],[-709,-18],[-781,-15],[-689,-8],[-608,-5],[-552,-8],[-663,-9],[-939,-11],[-153,-2],[-253,-3],[-426,-6],[-344,-6],[-308,-4],[-380,-5],[-164,-2],[-586,-5],[-413,-4],[-599,-5],[-308,7],[-304,7],[-267,-8],[-360,-11],[-842,4],[-382,-1],[-458,-1],[-226,1],[-197,1],[-147,-16],[-308,-59],[-381,-71],[-165,-29],[-194,-35],[-80,-7],[-97,-9],[-383,-1],[-135,0],[-145,-1],[-32,0],[-246,0],[-11,0],[-481,-1],[-374,0],[-487,0],[-363,0],[-239,0],[-734,0],[-236,0],[-269,1],[-917,0],[-774,-1],[-593,1],[-480,1],[-188,1],[-162,-1],[-306,-1],[-242,-1],[-252,-1],[-197,0],[-309,-1],[-6,0],[-568,-2],[-344,1],[-261,0],[-435,1],[-319,1],[-796,0],[-511,-5],[-167,-4],[-139,-2],[-87,-2],[-134,-10],[-153,-10],[-168,-4],[-147,-5],[-322,-7],[-180,-2],[-137,-6],[-220,-4],[-254,-7],[-520,-14],[-402,-21],[-406,-16],[-462,-19],[-363,-13],[-388,-20],[-138,-4],[-590,-23],[-439,-17]],[[12645,51599],[15,441],[16,427],[18,357],[17,292],[14,258],[23,386],[11,183],[21,429],[3,99],[12,369],[10,339],[1,39],[1,38],[1,31],[2,41],[0,12],[18,574],[5,145],[8,194],[11,286],[1,26],[8,266],[7,236],[38,1325],[0,2],[1,3],[-25,520],[-9,178],[-22,453],[-2,25],[-21,393],[-61,1606],[-11,271],[-19,497],[-4,117],[-2,36],[-7,196],[-10,246],[-9,255],[-3,64],[-3,90],[-7,172],[-7,170],[-18,477],[1,131],[1,9],[-6,10],[-11,219],[-11,274],[-28,742],[-5,125],[-22,576]],[[63357,40397],[-421,-247],[-176,139],[204,412],[1,13],[68,335],[314,203],[395,-47],[117,-279],[-221,-214],[-152,-81],[-129,-234]],[[73002,41263],[-206,-194],[-266,221],[-30,219],[79,405],[315,218],[344,-195],[42,-343],[33,-88],[-78,-223],[-233,-20]],[[70862,43939],[-279,-40],[-65,306],[-44,284],[46,308],[255,-155],[92,-266],[32,-228],[-37,-209]],[[68120,39392],[196,-264],[251,-264],[76,-312],[211,-187],[282,-153],[-347,-245],[-332,72],[-316,-159],[-316,-11],[-326,75],[-334,-5],[-225,-239],[-319,-146],[-192,368],[-149,380],[-46,270],[-97,290],[-144,199],[-207,109],[-495,-118],[17,-200],[141,-557],[264,-927],[123,-556],[-229,-449],[-281,-30],[-422,231],[-158,-108],[70,-448],[-53,-510],[-105,-232],[-668,-278],[-316,-355],[-141,-62],[-140,31],[-36,1514],[352,263],[369,139],[0,325],[-439,587],[228,510],[-35,386],[-88,572],[-439,479],[123,278],[263,108],[264,-62],[545,-15],[492,0],[299,-325],[336,99],[-60,246],[-22,12],[-173,300],[100,290],[218,369],[394,294],[45,33],[-36,213],[-350,215],[-407,307],[-372,215],[-384,278],[-143,379],[-10,389],[78,454],[2,9],[120,293],[123,340],[123,334],[214,271],[190,205],[-19,294],[-27,311],[-24,223],[82,333],[2,377],[93,451],[291,304],[194,312],[137,348],[159,285],[215,259],[177,210],[269,188],[305,123],[328,-70],[314,-66],[213,-103],[237,-283],[68,-415],[138,-376],[103,-276],[48,-261],[61,-308],[12,-358],[-35,-326],[-103,-236],[-168,-262],[-284,-312],[-60,-355],[110,-303],[167,-347],[127,-471],[54,-330],[-81,-197],[-58,-209],[-75,-262],[-188,-259],[-249,-251],[46,-252],[186,-279],[367,-99],[381,-30],[29,-285],[17,-166],[-378,-416],[-514,-316],[-155,-316],[-21,-191],[154,-292],[198,-254]],[[67600,51941],[-474,-144],[153,293],[172,228],[279,329],[352,2],[46,-237],[-214,-250],[-314,-221]],[[79716,56393],[-182,-104],[-313,38],[-421,4],[-384,-29],[-26,277],[-171,252],[455,192],[216,368],[356,-5],[212,-326],[73,-336],[185,-331]],[[87309,56362],[-215,-227],[29,-308],[-28,-70],[-156,-14],[-151,235],[-262,272],[-449,-34],[-339,-127],[-373,-145],[-24,-59],[-513,-191],[-275,-261],[46,-222],[296,15],[272,-7],[348,-8],[89,-37],[194,-82],[290,-122],[170,-79],[354,26],[140,234],[298,0],[22,-524],[-595,-100],[-985,-61],[-350,0],[-129,-18],[-363,-84],[-382,-188],[-44,-401],[-27,-400],[9,-298],[-28,-230],[-47,-232],[-105,-367],[-66,-353],[-14,-239],[-48,-239],[-22,-400],[4,-417],[88,-353],[241,-264],[227,-280],[161,-258],[332,-163],[-96,-210],[-19,-219],[-9,-325],[-16,-353],[-71,-261],[-115,-294],[-25,-345],[19,-255],[121,-254],[328,-189],[-18,-255],[-84,-258],[-130,-305],[22,-315],[14,-300],[-92,-319],[31,-312],[187,-276],[351,-242],[385,-40],[93,-244],[-59,-329],[-126,-358],[-127,-230],[-184,-230],[-123,-310],[-183,-259],[-272,-369],[-301,-281],[-171,-322],[-24,-261],[-163,-289],[-246,-279],[-325,-326],[-155,-259],[-51,-209],[56,-240],[215,-208],[328,-178],[287,57],[353,51],[94,-321],[-107,-294],[-198,-218],[-101,-328],[-283,-77],[-236,-100],[-351,-156],[4,350],[161,368],[-113,349],[-319,206],[-536,288],[-474,99],[-380,90],[-569,93],[-448,-166],[-230,-415],[-353,-248],[-356,-225],[-322,110],[-118,255],[-207,206],[-268,319],[-440,145],[-399,-49],[-294,74],[-417,-193],[-407,-283],[26,-373],[-20,-429],[-79,-312],[6,-271],[68,-355],[-236,-277],[-380,-75],[-202,-261],[-52,-250],[87,-249],[-128,-247],[-57,-313],[-197,-192],[-371,-187],[-427,-30],[60,309],[-211,378],[-290,-182],[-210,-140],[-250,173],[-151,294],[-375,203],[-435,-189],[-206,-264],[-275,-191],[-201,-191],[-369,94],[-227,136],[-165,128],[-439,-108],[106,-77],[71,-5],[192,-11],[193,-77],[18,-278],[-104,-43],[-93,-39],[-202,181],[-308,115],[-364,27],[-246,-114],[-318,-58],[-245,-90],[-218,-166],[-414,-62],[-220,327],[-135,476],[-190,349],[-408,110],[51,260],[330,171],[504,318],[462,284],[478,130],[346,217],[261,168],[229,178],[187,192],[189,173],[147,311],[246,31],[193,-356],[-50,-166],[30,-66],[-216,-304],[3,-422],[358,103],[280,61],[269,117],[264,158],[322,102],[214,200],[281,-13],[465,117],[72,131],[-159,1175],[-90,-35],[-351,182],[47,267],[-3,364],[-49,346],[-4,80],[-14,259],[-177,609],[292,446],[-159,250],[-27,275],[-275,187],[-420,200],[170,314],[429,75],[326,-260],[310,-44],[434,56],[435,244],[-69,274],[-74,216],[5,248],[-48,465],[-10,235],[156,222],[456,308],[95,352],[-328,229],[-25,262],[154,230],[177,266],[257,268],[102,288],[196,266],[251,309],[219,240],[279,235],[186,236],[200,226],[147,244],[221,50],[229,58],[360,97],[140,215],[264,286],[-37,414],[-234,342],[9,613],[371,25],[72,286],[221,108],[201,135],[188,385],[180,324],[251,330],[187,301],[112,228],[81,326],[18,357],[-194,308],[-23,390],[221,355],[247,127],[284,51],[334,4],[258,174],[413,233],[162,410],[155,228],[315,179],[55,32],[335,208],[343,180],[307,36],[308,-118],[366,-15],[350,19],[327,14],[358,112],[271,181],[106,192],[476,286],[244,137],[351,402],[-6,31],[96,222],[249,327],[106,-282],[-131,-338],[267,-259],[202,-394],[27,-252],[22,-57],[96,-243],[-54,-57]],[[68846,58933],[391,-99],[168,-190],[-70,-270],[-206,-354],[-289,-182],[-246,-104],[-340,267],[-148,358],[-181,291],[-70,253],[304,0],[257,22],[430,8]],[[71458,57989],[187,-314],[114,-305],[-280,-84],[-340,-149],[-312,-187],[-50,-371],[194,-139],[195,86],[173,-223],[236,-150],[216,-96],[250,-169],[388,-123],[217,-78],[1351,-134],[274,0],[88,-118],[177,-135],[267,-200],[209,-56],[273,-68],[201,-195],[187,-330],[214,-352],[53,-271],[24,-349],[-26,-409],[44,-412],[-199,-233],[-80,-238],[-132,-203],[-146,-266],[-167,-230],[-227,-296],[-163,-320],[-203,-282],[-259,-334],[-270,-259],[-277,-109],[-273,-154],[-326,-133],[-396,-55],[-387,170],[-345,315],[-303,295],[-120,337],[-33,360],[-15,297],[99,331],[129,294],[81,279],[90,309],[287,204],[260,286],[25,350],[235,303],[137,286],[53,338],[72,300],[-311,415],[-363,212],[-210,96],[-55,20],[-1524,325],[-304,-73],[-291,66],[-290,267],[-132,351],[-66,496],[17,347],[-6,382],[331,79],[49,1],[15,164],[321,242],[6,-1],[63,-4],[326,-21],[46,95],[-183,236],[-278,128],[-327,85],[-107,249],[332,268],[60,373],[353,171],[125,-269],[89,-258],[320,-196],[256,-140],[118,-301],[-51,-416]],[[98964,47432],[44,-306],[9,-65],[44,-218],[-4,-60],[20,-60],[4,-19],[57,-275],[3,-18],[0,-23],[117,-907],[109,-735],[261,-1725],[31,-355],[22,-252],[33,-376],[0,-1],[18,-124],[4,-121],[26,-300],[13,-73],[0,-1],[2,-76],[6,-71],[14,-125],[56,-702],[146,-258],[-306,-18],[-34,11],[-407,53],[-388,-47],[-394,-105],[-481,-141],[-379,-213],[-391,-216],[-4,-239],[57,-272],[143,-317],[-160,-205],[-297,-124],[-416,47],[45,-316],[-253,-184],[-359,-140],[-318,71],[-375,-35],[-460,-28],[-301,-188],[-236,-205],[-330,-93],[-276,-19],[-235,-337],[4,-334],[32,-277],[114,-237],[-242,-87],[-315,34],[-385,-64],[-412,49],[-250,-97],[-252,58],[-1186,-376],[-68,-21],[-90,-12],[-142,15],[-58,164],[-152,262],[0,75],[-84,85],[19,80],[49,202],[275,0],[195,54],[32,111],[-53,330],[111,313],[18,321],[136,186],[100,222],[-49,264],[-12,258],[-159,384],[-264,166],[-199,213],[-306,177],[-223,250],[-17,271],[-169,221],[-248,127],[-278,67],[-190,166],[55,305],[89,278],[186,290],[116,367],[199,234],[-14,317],[-199,199],[-226,109],[-28,282],[-135,375],[-265,287],[-78,245],[66,256],[112,287],[69,310],[145,272],[0,296],[-8,298],[-315,-22],[-230,85],[-265,71],[-340,113],[-213,267],[28,373],[90,153],[-126,383],[-687,221],[-69,363],[458,101],[596,-323],[421,-95],[12,18],[23,365],[1,347],[45,291],[135,347],[11,154],[3,48],[10,142],[-4,280],[-2,139],[99,462],[-386,117],[-14,12],[-322,266],[153,379],[200,129],[177,287],[230,155],[277,106],[137,427],[-97,116],[-272,232],[-312,364],[-250,450],[-85,361],[21,407],[116,348],[-579,917],[206,302],[322,934],[-6,244],[-1,19],[102,316],[76,257],[91,378],[207,269],[25,253],[152,430],[238,392],[235,299],[245,274],[191,293],[220,287],[161,315],[147,410],[131,-25],[3,-1],[36,-5],[17,-2],[82,-13],[42,-6],[47,-7],[55,-10],[27,-4],[27,-5],[100,-19],[34,-6],[37,-2],[31,-3],[199,-35],[13,-3],[15,-2],[48,-7],[18,-3],[40,-7],[20,-4],[20,-3],[4,-1],[5,-1],[49,-7],[136,-22],[131,-22],[61,-11],[124,-21],[4,0],[55,-9],[34,-6],[133,-22],[449,-65],[79,-13],[250,-40],[7,-36],[-2,-20],[-12,-124],[-15,-163],[-3,-32],[93,-15],[212,-34],[403,-64],[161,-26],[505,-81],[58,-9],[293,-47],[84,-14],[36,-6],[378,-60],[411,-66],[152,-25],[152,-24],[20,-4],[262,-43],[60,-11],[19,-3],[54,-10],[97,-16],[92,-14],[43,-7],[264,-43],[98,-15],[165,-26],[154,-25],[41,-6],[3,-1],[60,-9],[212,-33],[59,-8],[30,-5],[101,-18],[127,-20],[14,-2],[38,-5],[48,-7],[55,-11],[4,0],[150,-25],[146,-21],[28,-5],[218,-33],[35,-5],[59,-8],[-25,-107],[-6,-20],[-1,-10],[-27,-206],[-50,-389],[-71,-556],[-18,-144],[-57,-443],[-6,-133],[-13,-119],[-8,-135],[-7,-113],[-101,-1276],[-278,-256],[-111,-93],[-149,-124],[-83,-69],[-27,-146],[-53,-311],[-29,-167],[-50,-288],[-26,-151],[3,-412],[84,-343],[40,-166],[34,-139],[84,-93],[152,-74],[37,-44],[95,-122],[139,-180],[62,-80],[252,-324],[323,-493],[169,-1181],[59,-399],[104,-728],[48,-341],[91,-502],[9,-51],[20,-249],[33,-268],[1,-7]],[[41487,8886],[354,-18],[253,14],[225,-100],[191,-196],[185,-267],[397,-421],[179,-390],[-129,-239],[-30,-235],[-251,-265],[-229,-376],[-291,-289],[-195,-309],[-185,-343],[-133,-335],[-77,-251],[-46,-274],[17,-288],[100,-315],[153,-300],[5,-155],[2,-39],[39,-215],[242,24],[92,9],[391,-134],[422,-67],[32,-55],[128,-222],[69,-301],[354,-302],[279,-58],[338,-73],[157,-361],[-66,-266],[-67,-326],[-193,-357],[-409,-198],[-497,-49],[-571,-70],[-406,-64],[-314,-98],[-387,-78],[-450,33],[-330,-40],[-275,-61],[-305,-52],[-396,105],[-420,-48],[-319,-27],[-435,-95],[-343,-31],[-269,-18],[-237,45],[-246,-38],[-360,33],[-371,179],[-373,179],[-237,140],[-359,208],[-175,275],[-39,420],[204,401],[32,304],[52,341],[162,346],[260,173],[-55,285],[150,347],[115,301],[212,102],[335,127],[455,259],[414,267],[145,331],[63,255],[19,269],[56,359],[219,-164],[281,-190],[-73,-252],[-233,-333],[408,-64],[256,-173],[225,-176],[121,-281],[235,-184],[434,-58],[350,-74],[127,-37],[269,-79],[130,392],[208,302],[38,364],[-368,94],[-247,231],[70,348],[12,303],[-34,163],[-265,270],[-300,-85],[-322,-71],[-272,-22],[116,216],[238,220],[212,274],[116,307],[121,190],[92,251],[-37,309],[-25,449],[5,442],[-30,268],[90,308],[446,-237],[172,-201],[407,-42]],[[59514,57784],[247,-108],[422,196],[257,198],[190,36],[324,78],[357,-9],[293,-157],[318,-187],[368,-105],[78,-318],[-35,-212],[-22,-337],[1,-323],[83,-344],[104,-324],[163,-297],[85,-266],[201,-371],[-280,-232],[-900,46],[-802,-242],[275,-342],[775,-15],[462,116],[618,-363],[-78,-65],[101,-35],[-366,-504],[-692,-11],[-191,-100],[-344,-243],[-254,-349],[246,-340],[1424,-112],[28,-200],[-71,-384],[-2,-438],[0,-294],[-299,-193],[-480,-167],[-380,-60],[-549,-46],[-452,-39],[-323,-18],[-518,-97],[-439,-133],[-230,-107],[-259,-176],[-215,-175],[-310,-217],[-111,200],[-20,280],[-194,394],[-477,-99],[-267,-175],[-30,-208],[288,-174],[-390,-116],[-156,247],[-123,86],[133,484],[-69,214],[-16,50],[-6,18],[-935,-598],[-70,-44],[-3,-2],[0,-443],[68,-15],[299,-66],[480,0],[458,-221],[55,-225],[358,-77],[458,-141],[229,-383],[-224,-421],[-19,-147],[50,-26],[122,-266],[408,-64],[6,-31],[69,-11],[527,-161],[458,-262],[-72,-103],[-84,-249],[-215,-280],[-396,177],[-139,-193],[-12,-84],[-26,-171],[101,-114],[270,-171],[824,-20],[321,-705],[687,-423],[63,-420],[143,-225],[71,-112],[30,-47],[14,-21],[-27,-575],[62,-378],[73,-249],[-60,-259],[-45,-377],[-148,-275],[-128,-263],[-80,-197],[-231,-377],[-175,-422],[23,-402],[133,-464],[-4,-475],[3,-403],[292,-322],[41,-416],[-47,-378],[-45,-264],[-250,-294],[-197,204],[-415,136],[-406,-79],[-198,-91],[-105,-181],[-23,-217],[0,-268],[105,-262],[164,-350],[281,-259],[-35,-373],[-409,-208],[-250,-336],[34,-269],[-136,-271],[-277,-54],[-360,-321],[-256,-162],[-190,139],[-317,-77],[-94,-23],[-563,-137],[-1053,-805],[55,-49],[-4,-3],[66,-163],[13,-293],[-41,-282],[85,-400],[204,-311],[107,-341],[-18,-311],[-60,-219],[6,-304],[-314,-197],[-139,-300],[-403,-202],[-185,-167],[-176,-156],[-27,-278],[-109,-257],[-421,-116],[-277,-158],[-226,-283],[-263,-253],[-264,-253],[-135,-309],[-101,-161],[-198,-231],[-124,-246],[-123,-219],[-247,-227],[-114,-157],[-227,-182],[80,-229],[47,-241],[164,-273],[66,-104],[166,-119],[137,-282],[-298,-60],[-641,141],[-320,-81],[-138,363],[-985,724],[-959,474],[-223,50],[-492,65],[-31,5],[-237,-55],[-4,66],[183,442],[49,347],[66,459],[939,946],[572,1349],[66,1171],[3,58],[-481,402],[-596,-523],[-1167,-2255],[-367,-1349],[14,-58],[284,-426],[206,-402],[0,-343],[-57,0],[-538,222],[-144,-3],[-188,110],[-248,19],[-360,10],[-421,-13],[-305,-42],[-739,-343],[-206,15],[-148,-58],[-389,28],[-308,80],[-284,28],[-226,73],[-412,-72],[-305,-45],[-293,-46],[-303,-53],[-492,-131],[-1191,-181],[-1855,-323],[-1695,-422],[-693,-18],[-1397,-103],[-680,-77],[-327,-71],[-514,-120],[-620,-165],[-313,-106],[-345,-163],[-236,-92],[-357,-37],[-421,-77],[-312,-67],[-330,-77],[-448,-81],[-373,-68],[-260,-55],[-329,-76],[-528,-138],[-33,1],[-1017,-263],[-126,-2],[-41,-42],[-313,-65],[-241,-54],[-229,-55],[-339,-88],[-466,-120],[-487,-138],[-434,-118],[-519,-184],[-413,-198],[-380,-251],[-364,-253],[-320,-59],[-228,-72],[-347,-107],[-386,-104],[-4,1],[-134,-64],[-526,141],[-1580,-121],[-1993,-383],[-412,-342],[-751,315],[-307,89],[-429,69],[-294,53],[-299,-9],[-369,-34],[-299,-28],[-307,-40],[-343,-53],[-411,-64],[-472,-77],[-519,-103],[-310,-73],[-384,-59],[-527,-65],[-480,-66],[-2063,-439],[-2399,-453],[-29,10],[-2381,-946],[-453,-275],[-166,10],[0,225],[-122,188],[-290,-7],[-847,20],[-1603,-403],[-733,81],[183,443],[2359,302],[968,-12],[39,133],[-22,402],[57,39],[378,256],[160,108],[489,76],[-4,18],[408,208],[0,704],[0,1],[1,0],[2,1],[12,64],[-5,1],[120,37],[368,118],[838,451],[656,392],[259,194],[173,148],[60,94],[12,87],[-178,579],[-92,282],[-72,72],[-50,52],[-89,89],[-160,35],[-175,37],[-69,85],[-114,139],[-156,314],[-109,220],[73,489],[4,22],[209,204],[416,352],[-8,33],[-62,275],[101,219],[51,93],[97,177],[39,86],[40,91],[70,58],[62,100],[30,84],[-306,135],[-90,40],[-226,99],[114,196],[3,45],[16,73],[51,100],[4,165],[-98,168],[-54,60],[-10,11],[-134,97],[-361,149],[-176,73],[-256,-21],[0,300],[0,24],[0,26],[0,305],[148,400],[-4,34],[-330,528],[47,185],[46,368],[127,78],[97,59],[92,57],[48,16],[162,-6],[175,-15],[150,-32],[71,-7],[56,-6],[85,2],[6,0],[921,324],[213,75],[47,26],[106,153],[1,2],[107,81],[173,109],[81,51],[12,3],[135,41],[226,42],[170,8],[463,-42],[175,-29],[210,-79],[127,-68],[328,-142],[64,3],[230,57],[130,6],[115,-29],[107,-116],[107,-42],[147,-2],[134,31],[206,94],[-17,109],[14,246],[34,624],[6,109],[2,41],[28,583],[12,255],[8,232],[3,107],[1,24],[8,212],[7,150],[5,87],[1,22],[4,85],[2,52],[1,16],[15,323],[11,231],[2,47],[10,205],[11,251],[39,446],[46,523],[30,455],[51,782],[27,410],[13,213],[87,1344],[26,467],[26,467],[8,150],[12,207],[7,127],[12,226],[26,402],[14,226],[7,123],[1,12],[0,1],[21,423],[12,241],[9,153],[24,431],[11,312],[21,427],[13,264],[26,550],[37,735],[31,693],[16,354],[13,294],[1,24],[5,127],[1,33],[1,19],[11,285],[22,644],[26,557],[0,4],[25,448],[5,161],[1,8],[1,37],[1,18],[14,291],[11,234],[13,255],[3,73],[15,298],[1,5],[2,53],[5,89],[8,158],[4,85],[10,204],[8,152],[10,192],[8,182],[3,62],[6,119],[11,175],[14,139],[8,81]]],"transform":{"scale":[0.000007665397253972852,0.00000871797011970061],"translate":[-71.88617535999992,41.14700112800011]}} diff --git a/src/js/config/mapconfig/mapfiles/county/sc-counties.json b/src/js/config/mapconfig/mapfiles/county/sc-counties.json new file mode 100644 index 00000000..87f549ef --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/sc-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-83.35387987999991,32.03762984100007,-78.55080002499994,35.215424939000116],"geometries":[{"type":"Polygon","properties":{"name":"SC"},"id":"45045","arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45083","arcs":[[5,6,-1,7,8]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45021","arcs":[[9,-9,10,11]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45091","arcs":[[12,13,14,-12,15]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45077","arcs":[[-4,16,17,18]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45057","arcs":[[19,20,21,22,-13,23]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45073","arcs":[[24,25,-18]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45087","arcs":[[-15,26,27,28,29,-6,-10]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45023","arcs":[[-23,30,-27,-14]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45007","arcs":[[31,32,-25,-17,-3]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45025","arcs":[[33,34,-20,35,36]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45069","arcs":[[37,38,39,-37,40]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45059","arcs":[[-30,41,42,43,-2,-7]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45033","arcs":[[44,45,46,-38,47]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45055","arcs":[[48,49,50,51,52,-21,-35]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45039","arcs":[[-22,-53,53,54,-28,-31]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45031","arcs":[[-40,55,56,-49,-34]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45071","arcs":[[-55,57,58,59,60,-42,-29]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45001","arcs":[[61,62,63,-32,-44]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45047","arcs":[[-61,64,65,66,-62,-43]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45061","arcs":[[67,68,-50,-57]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45041","arcs":[[69,70,71,72,-68,-56,-39,-47]]},{"type":"MultiPolygon","properties":{"name":"SC"},"id":"45051","arcs":[[[73]],[[74]],[[75,76,-45,77]]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45067","arcs":[[-77,78,79,-70,-46]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45079","arcs":[[80,81,82,-58,-54,-52]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45063","arcs":[[83,84,85,86,-59,-83]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45081","arcs":[[-87,87,88,-65,-60]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45085","arcs":[[-73,89,90,-81,-51,-69]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45065","arcs":[[-67,91,92,-63]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45037","arcs":[[93,94,-92,-66,-89]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45027","arcs":[[95,96,97,98,-90,-72]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45089","arcs":[[-80,99,100,-96,-71]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45017","arcs":[[-91,-99,101,-84,-82]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45003","arcs":[[102,103,104,-94,-88,-86]]},{"type":"MultiPolygon","properties":{"name":"SC"},"id":"45043","arcs":[[[105,106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[-76,115,116,117,-100,-79]]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45075","arcs":[[-98,118,119,120,121,122,123,124,-103,-85,-102]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45015","arcs":[[-118,125,126,127,128,-119,-97,-101]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45011","arcs":[[129,130,131,-104,-125]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45009","arcs":[[122,-122,132,133,-130,-124]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45035","arcs":[[-129,134,135,-120]]},{"type":"MultiPolygon","properties":{"name":"SC"},"id":"45029","arcs":[[[136]],[[137,138]],[[139]],[[-136,140,141,142,143,-133,-121]]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45005","arcs":[[-134,144,145,-131]]},{"type":"Polygon","properties":{"name":"SC"},"id":"45049","arcs":[[146,147,148,-145,-144]]},{"type":"MultiPolygon","properties":{"name":"SC"},"id":"45053","arcs":[[[149]],[[150]],[[151,152,153,154,155,156,157,158,-148]]]},{"type":"MultiPolygon","properties":{"name":"SC"},"id":"45013","arcs":[[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[-158,174]],[[175]],[[-156,176]],[[177]],[[178]],[[179]],[[-154,180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186,-152,-147,-143]]]},{"type":"MultiPolygon","properties":{"name":"SC"},"id":"45019","arcs":[[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208,-138,209,-141,-135,-128]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216,-106]],[[217,-126,-117,218]]]}]},"states":{"type":"GeometryCollection","bbox":[-83.35387987999991,32.03762984100007,-78.55080002499994,35.215424939000116],"geometries":[{"type":"MultiPolygon","properties":{"name":"South Carolina"},"id":"45","arcs":[[[149]],[[150]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[175]],[[177]],[[178]],[[179]],[[181]],[[182]],[[183]],[[136]],[[184]],[[185]],[[187]],[[139]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216,106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[73]],[[74]],[[217,126,208,138,209,141,186,152,180,154,176,156,174,158,148,145,131,104,94,92,63,32,25,18,4,7,10,15,23,35,40,47,77,115,218]]]}]}},"arcs":[[[23686,99389],[-1,-73],[0,-91],[-1,-47],[0,-4],[0,-65],[-1,-99],[-1,-179],[-2,-248],[-1,-135],[-2,-350],[-1,-73],[0,-39],[-1,-78],[-1,-200],[0,-11],[-1,-32],[-1,-210],[0,-49],[-1,-31],[0,-27],[-1,-128],[-7,-63],[-10,-286],[0,-2],[0,-87],[-1,-96],[-1,-220],[-4,-350],[-3,-152],[-9,-336],[-1,-47],[-3,-95],[-3,-147],[-3,-116],[2,-33],[0,-87],[-5,-265],[-7,-337],[-1,-17],[-2,-97],[-3,-301],[-1,-232],[-1,-107],[-3,-69],[-3,-75],[8,-414],[-9,-312],[-7,-337],[-3,-163],[-1,-14],[-2,-150],[-3,-116],[-2,-48],[-5,-151],[-2,-51],[0,-41],[-3,-59],[-3,-74],[0,-51],[-1,-36],[0,-16],[-3,-109],[-5,-30],[0,-37],[-4,-116],[-1,-44],[0,-13],[-2,-28],[-2,-71],[0,-5],[-2,-75],[0,-32],[-1,-39],[-2,-69],[-3,-70],[-2,-85],[-4,-70],[-1,-47],[1,-78],[-4,-68],[-2,-80],[-2,-45],[-2,-57],[-1,-41],[-2,-99],[0,-42],[-2,-42],[-2,-41],[-2,-77],[-7,-186],[0,-50],[-9,-244],[-1,-63],[2,-42],[-5,-81],[-4,-91],[3,-23],[3,-23],[-1,-52],[-14,-291],[-2,-50],[-2,-45],[-1,-5],[17,-25],[16,-22],[-27,-86],[-8,-39],[1,-17],[2,-5],[2,-3],[4,0],[3,0],[26,21],[20,15],[6,11],[6,31],[9,15],[4,3],[7,5],[8,5],[1,0],[6,-2],[3,0],[32,-13],[8,-6],[124,-187],[6,-10],[41,-62],[2,-5],[7,-61],[7,-11],[13,-19],[103,-81],[10,-8],[30,-11],[41,-15],[2,-1],[6,-5],[26,-22],[27,-25],[81,-112],[62,-97],[4,-20],[6,-33],[3,-5],[53,-82],[75,-115],[15,-23],[5,-7],[54,-64],[45,-54],[31,-60],[40,-83],[27,-60],[12,-41],[3,-48],[-4,-40],[4,-14],[8,-10],[10,-4],[13,-1],[18,-3],[17,4],[26,11],[13,7],[40,23],[9,3],[12,0],[15,-13],[4,-33],[11,-41],[23,-42],[5,-5],[0,-6],[-4,-11],[-11,1],[-22,1],[-26,2],[-11,13],[-7,5],[-44,4],[-19,-4],[-13,-11],[0,-11],[1,-2],[31,-84],[43,-52],[8,-5],[24,-34],[8,-12],[34,-53],[33,-51],[16,-33],[11,-33],[1,-6],[2,-6],[41,-4],[12,-1],[15,-19],[18,-1],[8,-7],[48,-57],[0,-13],[-7,-24],[-17,-46],[52,-89],[4,-6],[27,42],[1,2],[34,91],[8,4],[23,-31]],[[25133,86470],[-107,-343],[-81,-267],[-11,-39],[-51,-175],[-17,-56],[-16,-52],[-73,-238],[-25,-83],[-65,-213],[-13,-43],[-36,-119],[-63,-206],[-93,-266],[-3,-10],[-14,-45],[-16,-57],[-24,-82],[-19,-62],[-10,-35],[-23,-77],[-11,-33],[-17,-56],[-10,-32],[-33,-101],[-16,-53],[-5,-17],[-27,-85],[-11,-37],[-16,-52],[-21,-68],[-35,-114],[-2,-6],[-23,-77],[-3,-7],[-57,-193],[-6,-19],[-5,-13],[-26,-84],[-133,-428],[-44,-132],[-35,-120],[-36,-123],[-14,-48],[-62,-215],[-66,-227],[-73,-241],[-16,-63],[-10,-38],[-15,-54],[-20,-69],[-50,-177],[-3,-8],[-15,-47],[-69,-226],[-44,-144],[-19,-63],[-41,-133],[-53,-177],[17,-340],[5,-93],[2,-51],[9,-439],[1,-45],[2,-87],[1,-121],[5,-431],[-5,-4],[-214,-223],[-68,-67],[-32,-33],[-254,-257],[-43,-43],[-308,-312],[-63,-65],[-119,-120],[-1,-1],[-1,-1],[-92,-92],[-134,-134],[-152,-147],[-136,-129],[-4,-4]],[[21647,76983],[-5,32],[-24,29],[-29,3],[-20,-23],[-2,3],[-3,-2],[-7,1],[-16,30],[-6,11],[0,1],[-7,27],[2,39],[2,28],[-5,13],[-6,14],[-3,6],[-47,8],[-46,-4],[-30,5],[-3,5],[-6,9],[11,71],[3,16],[-12,23],[-10,18],[-1,2],[-86,74],[-46,39],[-13,29],[-51,42],[-13,4],[-14,4],[-7,2],[-5,0],[-11,-2],[-9,-2],[-8,-6],[-46,-34],[-6,-4],[-24,4],[-9,14],[-27,184],[2,6],[2,11],[6,33],[7,12],[15,27],[0,7],[4,33],[2,10],[-8,16],[-1,2],[-3,5],[-12,11],[-8,0],[-35,0],[-6,0],[-7,-7],[-18,-17],[-6,-5],[-1,-3],[-10,-37],[-12,-11],[-12,2],[-2,0],[-6,2],[-154,108],[-70,25],[-30,23],[-20,15],[-10,7],[-4,10],[-12,31],[-6,14],[-11,72],[-2,9],[-3,2],[-41,21],[-3,4],[-23,24],[-30,19],[-4,2],[-6,10],[-3,6],[-8,13],[-4,31],[-3,25],[-9,15],[-2,4],[-7,10],[-84,109],[-52,60],[-22,10],[-11,5],[-7,-3],[-6,9],[-17,29],[-57,108],[-10,36],[-2,38],[-1,18],[-15,24],[-48,30],[-9,14],[-47,43],[-1,0],[-87,45],[-19,3],[-35,5],[-86,13],[-97,19],[-23,19],[-6,5],[-100,95],[-16,15],[-72,124],[-30,73],[-16,38],[-1,5],[-11,38],[-3,10],[1,3],[0,6],[1,64],[18,32],[14,25],[3,5],[4,33],[-14,118],[-5,11],[-7,20],[-4,10],[-7,10],[-42,69],[-3,7],[-7,6],[-9,10],[-9,10],[-5,2],[-22,13],[-8,4],[-7,5],[-6,14],[4,33],[21,26],[30,21],[6,6],[21,23],[-1,41],[-13,32],[-1,3],[-11,27],[-15,100],[-1,8],[-3,23],[-66,118],[-1,2],[-8,12],[-3,5],[-44,123],[0,14],[-1,42],[33,75],[1,9],[1,29],[0,9],[-1,2],[-58,73],[-34,43],[-58,72],[-6,8],[-16,17],[-8,9],[-7,2],[-40,14],[-37,-19],[-23,13],[-7,9],[-25,32],[-7,8],[0,3],[2,16],[0,2],[2,2],[32,22],[62,19],[19,18],[0,34],[-3,5],[-8,14],[-55,1],[-154,168],[-12,19],[1,15],[2,32],[2,25],[-71,106],[-4,8],[-7,10],[-6,11],[-3,10],[-4,15],[-3,11],[2,14],[1,12],[2,20],[20,46],[9,21],[3,50],[0,3],[-2,10],[2,4],[0,1],[1,15],[-8,56],[-16,61],[0,1],[-2,22],[6,7],[1,1],[0,1],[9,4],[34,-7],[23,3],[6,5],[9,18],[-1,26],[-6,30],[-7,27],[-3,7],[-18,23],[-25,69],[-49,135],[-19,122],[28,130],[-35,43],[-1,9],[-9,13],[-4,-1],[-11,0],[-73,0],[-78,0],[-1,0],[-8,17],[-8,18],[4,14],[3,7],[29,87],[2,5],[-24,79],[-35,11],[-1,0],[-9,5],[-9,12],[-4,6],[-12,26],[0,2],[1,21],[5,9],[1,1],[13,7],[12,0],[3,0],[7,-2],[19,1],[6,5],[16,25],[5,22],[0,23],[-9,19],[-22,42],[-6,11],[27,1],[26,-16],[22,-20],[1,0],[6,-2],[13,3],[12,11],[9,10],[7,8],[0,1],[9,22],[48,215],[-4,30],[-5,24],[-23,42],[-11,14],[-18,17],[-33,14],[-4,1],[-3,2],[-21,15],[-25,24],[-1,1],[0,2],[8,8],[49,48],[2,2],[42,41],[8,16],[-1,27],[-12,20],[-3,6],[-9,8],[-48,6],[-7,5],[-8,18],[-5,41],[1,34],[5,22],[6,10],[16,17],[75,44],[13,32],[5,17],[-2,15],[-6,7],[-11,6],[0,1],[-43,18],[-4,2],[-31,17],[-16,10],[-9,6],[-11,14],[-14,37],[-31,84],[1,18],[6,52],[8,38],[8,17],[18,22],[11,5],[7,0],[6,0],[11,-4],[13,-23],[1,-2],[8,-17],[11,-10],[3,-3],[9,-3],[17,2],[16,15],[1,1],[10,14],[5,9],[2,7],[6,27],[-2,78],[-4,15],[-3,7],[-5,13],[-9,12],[-15,9],[-50,18],[-54,15],[-7,8],[-6,7],[-6,7],[-3,7],[-13,117],[25,311],[17,178],[7,22],[15,15],[12,10],[49,29],[2,1],[1,42],[-3,16],[-11,19],[-23,27],[-22,23],[25,67],[4,11],[22,19],[22,57],[73,84],[-41,61],[-6,8],[-6,8],[-6,21],[-5,20],[-2,16],[0,19],[27,176],[4,15],[4,12],[14,34],[3,9],[53,107],[7,10],[5,7],[3,3],[9,10],[4,2],[9,18],[1,4],[0,4],[1,8],[1,22],[-5,183],[-5,32],[-8,8],[-56,22],[-26,23],[-14,12],[-28,25],[-2,3],[-17,19],[-5,22],[-1,43],[13,60],[2,21],[-3,121],[-3,13],[-62,177],[-6,11],[-25,54],[-4,2],[-54,27],[-1,0],[0,1],[-23,75],[-9,31],[-8,23],[-9,30],[-13,14],[-33,29],[-8,2],[-5,1],[-15,-2],[-11,-6],[-29,-17],[-16,-25],[-1,-6],[-10,-12],[-4,-3],[-10,5],[-5,2],[-8,8],[-5,15],[3,14],[3,12],[3,12],[3,3],[5,6],[51,88],[1,7],[-29,110],[-3,7],[-60,29],[-13,14],[-69,119],[-50,101],[-9,-2],[-18,-21],[-12,-15],[0,1],[-13,37]],[[18051,87537],[15,37],[12,28],[51,61],[4,4],[11,8],[27,1],[45,22],[2,1],[8,8],[35,69],[6,24],[-1,15],[-2,5],[-8,12],[-64,44],[-11,-3],[-24,-7],[-19,-2],[-43,-2],[-9,-1],[-7,2],[-15,10],[-18,27],[-6,17],[0,4],[1,18],[0,72],[2,3],[5,8],[6,11],[28,27],[56,37],[56,18],[-4,76],[0,4],[0,1],[-2,35],[-4,17],[0,1],[-6,32],[-8,17],[-15,11],[-22,1],[-8,-19],[-7,-27],[-32,-13],[-50,-41],[-17,-11],[-3,1],[-5,3],[-2,1],[0,4],[0,3],[0,8],[-1,17],[0,4],[0,5],[1,28],[16,12],[18,6],[25,7],[4,1],[10,3],[10,13],[1,3],[4,4],[0,4],[1,4],[0,18],[-6,26],[-12,47],[-2,29],[0,36],[12,37],[8,26],[3,29],[17,142],[5,37],[3,26],[-21,29],[-65,7],[-14,7],[-14,24],[1,28],[0,14],[10,9],[21,20],[10,83],[-38,58],[7,66],[1,1],[1,1],[22,25],[4,89],[-4,26],[-13,41],[-17,28],[-49,26],[-29,43],[-7,10],[5,46],[41,52],[6,10],[46,79],[10,35],[-53,9],[-58,-9],[-33,4],[-2,1],[-6,3],[-1,1],[-11,6],[-4,7],[-10,13],[-2,9],[-8,41],[-10,47],[-2,8],[-1,11],[0,19],[3,11],[7,8],[16,16],[35,27],[9,21],[-3,49],[-9,34],[-5,16],[-15,17],[-6,0],[-30,14],[-22,15],[-25,29],[-34,66],[-17,34],[-20,38],[-8,42],[-4,18],[-2,23],[1,34],[7,14],[11,16],[32,37],[3,4],[-4,11],[-135,75],[-10,-2],[-21,-36],[-28,23],[8,37],[0,8],[0,31],[0,1],[-3,21],[-13,63],[-3,12],[-5,5],[-48,33],[-15,3],[-49,2],[-19,12],[-7,8],[-4,10],[1,41],[18,69],[14,56],[5,19],[-68,-21],[-8,-3],[-10,23],[-11,28],[-3,23],[0,17],[6,21],[12,30],[38,92],[10,41],[1,8],[3,14],[-2,14],[-30,6],[-7,2],[-74,79],[-45,47],[-5,8],[-4,10],[-9,101],[2,-1],[61,-16],[15,-2],[2,0],[2,0],[18,1],[11,5],[1,1],[2,1],[14,11],[8,17],[0,1],[5,13],[0,10],[-3,8],[-3,2],[-1,0],[-2,1],[-6,-1],[-29,-5],[-14,5],[-22,23],[-25,33],[-9,16],[-2,17],[-1,27],[15,117],[-36,11],[-4,1],[-9,3],[-38,39],[-2,9],[6,107],[14,113],[0,4],[1,135],[-2,4],[-1,3],[-20,22],[-1,0],[-10,6],[-17,3],[-1,0],[-25,-1],[-31,-10],[-5,5],[-1,3],[-5,13],[-3,18],[1,35],[1,8],[5,30],[5,53],[0,21],[-8,10],[-1,0],[-18,18],[-1,0],[-11,6],[-10,-2],[0,-1],[-1,0],[-16,-21],[-73,50],[-76,84],[-1,0],[-3,-1],[-9,-5],[-9,-6],[-27,-48],[0,-1],[-48,105],[-4,10],[-1,16],[8,9],[5,2],[18,5],[37,4],[18,17],[31,35],[19,27],[6,11],[7,47],[2,18],[4,-14],[14,-63],[5,-10],[6,-5],[12,3],[83,43],[7,14],[6,13],[6,68],[0,2],[0,3],[-2,11],[-74,290],[-20,53],[-6,11],[-42,61],[0,1],[-1,0],[-34,29],[-4,6],[0,1],[-4,19],[-3,15],[-6,36],[0,2],[2,31],[6,24],[1,2],[0,1],[9,24],[8,14],[0,1],[37,53],[0,1],[26,52],[1,1],[19,101],[0,60],[-4,11],[-22,5],[-19,1],[-7,-2],[-33,-23],[-4,-1],[-34,-11],[-14,-1],[-2,1],[-2,2],[-79,11],[-2,0],[-122,-11],[-12,-1],[-33,-3],[-32,-1],[-3,-3],[-33,-51],[-1,-1],[-1,-1],[-41,-17],[-39,-16],[-30,-8],[-1,1],[-11,5],[-9,4],[-10,-2],[-48,2],[-10,4],[-40,15],[-9,3],[-43,18],[-8,2],[0,-1],[-22,-20],[-23,-40],[-3,-15],[-8,-24],[-12,-11],[-13,-5],[-1,0],[-67,-25],[-1,-1],[-1,0],[-10,0],[-75,-3],[-60,-1],[-75,-8],[-20,-3],[-21,1],[-1,0],[-3,1],[-2,0],[-17,33],[-6,27],[-7,82],[0,9],[1,1],[5,15],[8,13],[63,102],[1,1],[5,3],[1,1],[7,11],[51,88],[6,14],[0,8],[-26,122],[-4,8],[-12,14],[-14,8],[-5,5],[-13,17],[-3,10],[0,10],[0,2],[7,12],[5,8],[65,96],[49,21],[6,5],[2,9],[-25,138],[-8,35],[-7,14],[-15,26],[-2,0],[-17,2],[-7,9],[0,1],[-2,49],[0,44],[-46,6],[-61,-34],[-55,-67],[-17,-22],[-7,59],[-1,12],[0,1],[8,103],[0,1],[13,67],[20,152],[0,1],[-8,33],[0,4],[-3,24],[1,26],[0,4],[0,2],[2,13],[9,22],[1,2],[4,8],[39,65],[0,1],[11,26],[-6,22],[0,1],[-11,26],[46,35],[1,0],[98,51],[4,3],[32,13],[78,32],[70,29],[6,2],[20,1],[24,0],[19,-7],[7,-5],[8,-17],[6,-6],[12,5],[1,2],[25,37],[12,30],[7,17],[23,61],[1,1],[10,32],[0,10],[-6,9],[-29,20],[-9,11],[-5,12],[1,15],[-1,0],[-15,-1],[-14,1],[-12,-6],[-27,-3],[-25,-5],[-94,-13],[-75,-7],[-121,-7],[-68,-5],[-38,-2],[-64,-25],[-131,-74],[-80,26],[-53,18],[-23,-56],[-2,-4],[-20,-5],[-2,-1],[-64,-1],[-21,-9],[-151,-66],[-71,-17],[-1,0],[-1,0],[-32,-4],[-19,2],[-29,3],[-47,0],[-33,-3],[-14,-6],[-26,-40],[-2,-3],[-22,-45],[-10,-13],[0,-1],[-2,-1],[-7,-4],[-12,-1],[-3,-1],[-2,0],[-143,1],[-1,0],[-8,6],[-5,5],[-6,7],[-7,8],[-3,14],[-1,25],[4,9],[-4,14],[-5,5],[-51,0],[-13,-1],[-6,-3],[-8,-9],[-7,-20],[-6,-10],[-7,-3],[-6,1],[-18,4],[-2,1],[-1,2],[-2,2],[-1,14],[-3,31],[-45,19],[-131,16],[-16,-11],[-11,-15],[-78,-3],[-6,5],[-24,22],[-1,1],[-3,0],[-57,1],[-32,3],[-3,0],[-4,-2],[-13,-5],[-34,-14],[-23,-13],[-58,-54],[-45,7],[-115,16],[-5,1],[-16,-5],[-49,-14],[-24,0],[-56,-7],[-76,-11],[-44,-6],[-1,-1],[-14,-10],[-15,-8],[-1,-1],[-2,0],[-98,-22],[-5,0],[-51,2],[-27,-14],[-14,-15],[0,-1],[-15,-18],[-3,-15],[-11,-67],[-18,-58],[-7,-10],[-10,-9],[0,-1],[-39,-18],[-49,-6],[-30,-2],[-9,6],[-8,12],[0,2],[-7,31],[-6,13],[-7,9],[-15,7],[-29,-2],[-42,-15],[-19,-10],[0,-15],[18,-23],[0,-1],[2,-15],[-3,-7],[-14,-7],[0,-1],[-64,-24],[-40,1],[-27,-8],[-21,-14],[-13,-16],[-24,-47],[0,-13],[-71,-32],[-1,0],[-140,9],[-7,0],[-7,2],[-8,1],[-6,5],[-2,3],[-6,10],[-38,71],[-3,5],[-7,3],[-1,1],[-64,66],[-44,64],[-1,2],[-36,70],[-3,13],[0,1],[-1,51],[-11,44],[-6,14],[-19,34],[-15,26],[-10,29],[-6,38],[-9,34],[-1,62]],[[12287,95368],[43,-15],[45,-10],[18,3],[31,-10],[62,51],[19,37],[7,38],[19,42],[10,25],[5,24],[-13,64],[1,48],[-2,69],[19,49],[23,-3],[51,-28],[12,-13],[38,-12],[26,11],[23,-34],[32,-22],[21,-4],[20,3],[9,29],[-8,39],[14,35],[23,4],[26,-7],[10,54],[11,28],[21,21],[-2,50],[18,31],[28,6],[21,-5],[30,11],[11,51],[-18,49],[27,49],[33,56],[28,6],[20,-14],[26,15],[63,-34],[42,25],[34,-14],[31,-21],[21,12],[18,24],[67,15],[20,59],[24,-13],[20,16],[12,34],[92,47],[34,51],[7,-42],[15,-40],[5,-36],[-4,-32],[30,-19],[49,92],[25,29],[21,40],[48,61],[26,45],[11,34],[25,57],[28,28],[-6,66],[-12,34],[-27,4],[-90,66],[-29,54],[2,18],[15,35],[24,47],[17,31],[88,12],[19,15],[13,97],[-20,71],[32,3],[56,38],[24,43],[38,3],[29,-7],[78,-35],[12,-32],[18,-67],[-2,-80],[-6,-41],[-16,-34],[18,-26],[17,0],[44,58],[29,37],[9,-12],[12,-29],[6,-18],[22,-12],[35,8],[59,-17],[15,7],[34,29],[70,-15],[30,36],[12,46],[47,38],[13,43],[-4,71],[13,3],[55,14],[47,0],[21,8],[15,26],[15,33],[11,32],[25,46],[9,14],[26,2],[18,-56],[14,-5],[9,-4],[43,18],[5,-59],[10,-29],[4,-20],[-6,-41],[31,-4],[40,1],[40,14],[33,-2],[23,18],[30,44],[8,45],[25,34],[-5,35],[18,56],[41,46],[36,1],[68,31],[60,28],[12,27],[2,46],[24,22],[58,1],[65,-9],[83,-13],[99,-40],[27,18],[80,15],[16,21],[5,55],[19,4],[38,20],[26,31],[43,4],[64,-16],[77,-35],[26,47],[15,46],[24,19],[19,14],[41,-33],[24,15],[47,13],[27,13],[-3,57],[11,45],[30,11],[8,43],[35,50],[49,2],[44,-27],[14,-6],[30,-17],[80,65],[8,32],[-28,25],[-17,46],[-4,69],[21,61],[38,48],[70,-1],[19,32],[24,-14],[34,42],[37,-44],[52,-2],[40,-35],[61,-28],[14,-29],[6,-15],[-25,-56],[-3,-41],[16,-28],[23,-4],[71,42],[61,-8],[50,13],[39,29],[56,35],[16,20],[27,8],[17,62],[4,34],[27,7],[17,21],[30,11],[60,-5],[55,-13],[29,-7],[21,4],[14,22],[25,33],[18,37],[20,10],[61,-51],[44,-50],[33,-18],[26,-1],[29,32],[-18,33],[10,35],[81,126],[28,18],[18,-1],[9,0],[24,-4],[-2,58],[15,91],[63,-20],[43,6],[43,38],[36,27],[26,-15],[20,-42],[18,-1],[49,12],[50,4],[40,-4],[35,18],[42,37],[54,38],[34,18],[31,-14],[35,-10],[47,5],[53,-128],[5,-11],[3,-13],[-119,-168],[-3,-39],[5,-34],[26,-46],[70,40],[47,39],[50,-28],[92,28],[17,-5],[44,-9],[23,6],[25,41],[31,22],[47,13],[-10,56],[13,31],[20,26],[43,42],[1,41],[-4,43],[7,40],[21,24],[41,26],[32,6],[16,30],[1,37],[28,13],[-70,57],[4,38],[34,93],[1,54],[16,25],[28,4],[15,22],[-27,60],[12,26],[19,21],[21,53],[26,46],[41,58],[34,35],[40,-24],[57,86],[59,20],[43,-15],[10,5],[26,19],[32,34],[48,14],[39,13],[19,30],[21,16],[-4,24],[-13,41],[8,31],[63,74],[0,35],[39,61],[38,9],[35,4],[39,-47],[23,-66],[21,-13],[21,4],[18,-19],[15,-37],[-1,-57],[-15,-29],[-14,-24],[17,-16],[34,-43],[18,-47],[23,-15],[-3,-52],[23,-31],[24,-82],[4,-44],[-24,-19],[-68,-27],[-24,-88],[72,-141],[79,-53],[40,-61],[36,-46],[23,-51],[22,0],[19,15],[40,49],[25,23],[20,47],[39,13],[40,43],[-8,31],[-36,13],[40,101],[32,2],[30,35],[31,-20],[29,10],[18,5],[42,-37],[30,-23],[34,5],[4,67],[32,3],[19,17],[70,3],[27,-28],[49,-33],[16,-64],[44,-3],[18,20],[40,11],[27,20],[21,-1],[35,-41],[10,-10],[-3,-51],[66,-51],[17,-23],[23,-9],[29,1],[22,0],[47,49],[33,10],[35,37],[41,89],[22,12],[169,63],[112,20],[62,21],[28,10],[34,9],[53,33],[36,44],[66,41],[113,36],[98,-14],[61,-1],[125,6],[204,-26],[215,-28],[160,-17],[270,-21],[125,-10],[122,-9]],[[34191,90471],[-34,-50],[-23,-34],[-82,-121],[-36,-53],[-26,-39],[-92,-137],[-104,-155],[-23,-33],[-40,-62],[-25,-37],[-28,-42],[-95,-142],[-6,-9],[-37,-54],[-5,-8],[-121,-204],[-18,-30],[-29,-48],[-2,-3],[-27,-46],[-95,-159],[-84,-140],[-62,-103],[-88,-146],[-109,-183],[-61,-102],[-28,-46],[-113,-189],[0,-1],[-71,-416],[-24,-143],[-48,-287],[-35,-208],[-56,-333],[-14,-82],[-38,-226],[-13,-75],[-1,-7],[-75,-447],[-36,-211],[-38,-226],[-13,-77],[-19,-64],[-7,-42],[-18,-115],[-8,-53],[-19,-120],[-31,-184],[-31,-147],[-31,-178],[-38,-213],[-1,-4],[-25,-143],[-7,-37],[-52,-287],[-73,-385],[0,-1],[-32,-237],[-26,-89],[-47,-151],[-32,-107],[-13,-44],[-21,-73],[-82,-278],[-55,-172],[-38,-133],[-5,-24],[-3,-14],[-16,-78],[-8,-36],[-58,-321],[-37,-204],[-3,-59],[-33,-173],[-7,-38],[-17,-88],[-16,-85],[-30,-154],[-3,-17],[-54,-284],[-17,-63]],[[31223,80462],[-11,-5],[-68,-59],[-34,-36],[-11,-16],[-9,-26],[-1,-2],[-8,-19],[-13,-43],[-2,-11],[-8,-50],[-2,-12],[-1,-45],[8,-43],[-1,-14],[-1,-18],[-1,-2],[-6,-14],[-12,-23],[-8,-5],[-8,-2],[-3,-1],[-7,5],[-23,35],[-20,36],[-58,115],[-1,3],[-5,12],[-8,17],[-17,95],[0,41],[0,1],[0,1],[-1,4],[-3,15],[-7,10],[0,1],[-7,5],[-27,4],[-4,0],[-14,-3],[-10,-7],[-17,-11],[-9,-3],[-17,1],[-23,5],[-13,12],[-9,13],[-1,2],[-4,5],[-7,22],[-1,16],[-3,37],[0,2],[-1,1],[-1,5],[-13,13],[-19,-1],[-2,-1],[-1,-1],[-110,-70],[-20,-14],[-6,-11],[-16,-33],[-3,-6],[-1,-13],[-5,-38],[-1,-1],[-18,-21],[-9,13],[9,97],[-26,28],[-4,5],[0,1],[-23,28],[-46,55],[0,2],[-5,78],[0,1],[-1,33],[-7,35],[-1,4],[-15,-2],[-89,-84],[-1,-1],[-3,3],[-48,47],[-16,-3],[-14,-2],[-14,4],[-7,2],[-7,3],[-111,62],[-9,14],[2,15],[7,38],[0,2],[0,3],[0,15],[-8,61],[-5,21],[-19,23],[-1,1],[-20,19],[-42,35],[-21,16],[-41,15],[-42,16],[-18,13],[-85,102],[0,1],[-2,2],[-17,24],[-14,35],[-10,47],[-3,47],[-2,25],[-2,23],[-5,51],[-4,16],[-2,11],[-5,7],[-9,11],[-24,12],[-17,17],[-23,26],[-23,35],[-62,114],[-17,37],[-86,40],[-40,139],[-3,8],[0,27],[-1,14],[-1,7],[-8,42],[-19,45],[-17,21],[-95,114],[-43,48],[-8,10],[-8,8],[-44,29],[-14,7],[-3,2],[-4,2],[-7,-8],[-22,-28],[-23,-29],[-11,1],[-118,9],[-61,5],[-46,3],[-13,1],[-17,12],[-6,7],[-2,6],[11,112],[-7,134],[-23,14],[-124,72],[-5,2],[-1,0],[-1,0],[-12,-3],[-13,-10],[-20,-21],[-18,-26],[-2,-2],[-16,-35],[-37,14],[-19,7],[-2,1],[-21,9],[-40,16],[-17,13],[-33,32],[-7,11],[-5,12],[-5,13],[-7,5],[-73,24],[-7,2],[-18,-7],[-76,-27],[-2,-1],[-24,-8],[-8,1],[-2,1],[-50,18],[-56,66],[-17,21],[-6,12],[-11,52],[-7,9],[-74,40],[-3,1],[-5,1],[-4,0],[-30,-5],[-3,-3],[-5,2],[-7,4],[-21,21],[-26,44],[-8,49],[-7,15],[-12,13],[-7,8],[-24,1],[-17,1],[-14,9],[-2,2],[-11,11],[-10,21],[2,15],[-3,23],[-4,10],[-5,5],[-115,98],[-8,2],[-97,23],[-9,4],[-50,20],[-68,75],[-15,17],[-4,10],[-1,86],[-13,9],[-104,74],[-1,1],[-6,5],[-5,27],[-25,73],[-3,3],[-53,7],[-1,0],[-24,4],[-60,83],[-66,91],[-10,14],[-2,3],[-154,43],[-3,0],[-37,22],[-32,30],[-30,33],[-6,14],[-1,17],[7,11],[12,10],[3,2],[15,11],[23,27],[7,17],[14,46],[9,60],[9,45],[1,107],[-14,49],[-5,11],[-39,75],[-6,6],[-5,1],[-24,4],[-12,1],[-12,0],[-3,-1],[-18,-9],[-26,-15],[-7,0],[-1,0],[-24,4],[-47,6],[-4,4],[-1,1],[-5,31],[19,128],[5,8],[19,39],[6,11],[-10,2],[-110,15],[-12,2],[-1,0],[0,1],[6,44],[1,19],[1,109],[0,16],[-15,40],[-12,30],[-11,28],[-1,14],[-2,42],[0,4],[-16,-12],[-6,-5],[-8,-3],[-7,3],[-1,1],[-7,12],[1,20],[6,28],[4,22],[11,61],[27,65],[5,9],[0,6],[-14,23],[-18,15],[-7,2],[-14,-1],[-2,-5],[-2,-4],[-20,-12],[-96,-12],[-16,1],[-50,14],[-78,-26],[-1,0],[-29,-8],[-11,1],[-9,6],[-13,10],[-24,31],[-6,15],[-3,14],[-1,60],[0,6],[-1,8],[-2,19],[-5,11],[-23,37],[-39,55],[-6,16],[-16,44],[-9,14],[-2,4],[-5,6],[-6,9],[-1,1],[-6,6],[-1,0],[-3,-1],[-3,-1],[-10,-8],[-10,-18],[-2,-2],[-9,-31],[-1,-13],[0,-1],[-20,-52],[-4,-104],[-1,-10],[-5,-2],[-25,3],[-7,3],[-8,3],[-11,8],[-16,26],[-1,8],[-12,40],[-15,44],[-7,12],[-6,6],[-51,145],[-36,21],[-12,10],[-13,21],[-12,29],[-15,91],[-8,20],[-39,64],[-4,28],[-4,15],[-69,190],[-13,14],[-10,3],[-4,-14],[-6,-25],[-4,-12],[-6,-6],[-5,-6],[-5,-5],[-2,0],[-6,1],[-15,18],[-12,22],[-4,14],[0,14],[0,9],[8,16],[14,18],[11,14],[36,84],[0,7],[-5,11],[-19,7],[-23,-5],[-1,0],[-6,-6],[-16,-16],[-43,31],[-12,12],[-3,7],[-3,39],[-16,59],[-11,7],[-103,56],[-52,9]],[[23686,99389],[995,-59],[315,-19],[1792,-107],[397,-18],[1445,-64],[196,-9],[1976,-100]],[[30802,99013],[43,-121],[136,-388],[12,-34],[25,-73],[19,-54],[2,-6],[18,-51],[11,-31],[20,-56],[10,-28],[13,-36],[10,-29],[24,-67],[13,-35],[0,-2],[13,-34],[23,-66],[5,-14],[7,-21],[25,-68],[11,-31],[32,-91],[17,-48],[51,-142],[14,-38],[73,-207],[25,-69],[14,-61],[67,-184],[57,-156],[57,-157],[68,-184],[37,-104],[12,-32],[15,-42],[27,-74],[13,-34],[36,-98],[40,-111],[97,-267],[26,-71],[7,-18],[3,-10],[33,-91],[31,-85],[13,-38],[41,-117],[15,-45],[67,-185],[-3,-39],[-8,-233],[0,-3],[-18,-388],[27,-1],[33,0],[34,-1],[175,-1],[17,-36],[24,-76],[29,-79],[15,-41],[23,-73],[12,-33],[25,-101],[4,-16],[4,-17],[9,-40],[42,-175],[48,-194],[59,-239],[91,-308],[12,-46],[55,-183],[14,-57],[32,-135],[98,-454],[153,-695],[17,-71],[19,-93],[18,-80],[107,-76],[180,42],[107,34],[24,8],[19,-36],[2,-13],[5,-30],[26,-48],[11,-50],[27,-54],[9,-48],[4,-34],[20,-15],[28,0],[15,-23],[10,-19],[3,-1],[119,-125],[1,-1],[18,-20],[5,-16],[3,-57],[3,-18],[8,-29],[5,-8],[10,-4],[14,-1],[1,0],[50,17],[22,3],[3,-1],[42,-7]],[[39487,88162],[-50,66],[-14,18],[-75,103],[-9,11],[-6,8],[-26,25],[-80,46],[-22,22],[-7,18],[0,1],[-8,41],[-4,8],[-8,6],[-1,1],[-26,10],[-59,7],[-15,7],[-3,1],[-4,4],[-124,110],[-6,11],[-3,12],[-25,168],[5,15],[8,13],[23,19],[3,3],[7,9],[3,9],[14,42],[0,2],[2,20],[0,10],[-7,8],[0,1],[-2,1],[-185,67],[-58,14],[-32,-7],[-12,-5],[-8,-7],[-7,-7],[-9,-6],[-7,-4],[-28,-7],[-3,0],[-18,0],[-12,6],[-2,1],[-4,3],[-14,12],[-3,10],[-13,33],[-16,34],[-18,25],[-8,6],[-156,96],[-67,71],[-136,10],[-19,-4],[-1,0],[-1,-1],[-6,-3],[-105,-199],[-6,-24],[-1,-4],[-1,-9],[0,-27],[2,-10],[-2,-26],[-9,-10],[-1,0],[-1,0],[-11,0],[-14,10],[-1,0],[-3,5],[-18,33],[-3,7],[-2,4],[-10,81],[0,5],[-2,49],[-1,8],[0,14],[-5,29],[-28,116],[-5,9],[-3,4],[-7,7],[-9,3],[-1,1],[-7,-1],[-18,-2],[-7,-3],[-2,-2],[-2,-1],[-15,-17],[-2,-9],[-1,-3],[-1,-87],[0,-1],[3,-14],[-1,-23],[0,-5],[-8,-28],[-5,-6],[-9,-13],[-73,-89],[-9,-6],[-5,-3],[-2,-1],[-2,1],[-8,1],[-9,5],[-3,2],[-38,48],[-21,15],[-36,14],[-53,14],[-126,14],[-3,0],[-114,49],[-2,2],[-87,63],[-1,1],[-35,37],[0,3],[0,1],[-10,8],[-20,15],[-17,10],[-87,54],[-15,9],[-86,43],[-15,12],[-97,80],[-16,18],[-24,32],[-1,0],[-9,3],[-15,-3],[-3,0],[-10,-4],[-39,-15],[-4,-4],[-83,-76],[-15,-3],[-25,17],[-2,1],[-35,11],[-10,-4],[-1,0],[-12,-10],[-88,-115],[-1,-1],[-55,-89],[-11,-7],[-1,-1],[-13,-4],[-31,-9],[-15,-9],[-43,-26],[-122,-32],[-27,-7],[-104,-28],[-12,0],[-3,1],[-8,1],[-23,5],[-7,5],[-2,1],[-5,7],[-19,25],[-1,6],[0,1],[-13,25],[-13,17],[-8,7],[-34,12],[-43,21],[-16,10],[-56,34],[-13,10],[-16,12],[-2,1],[-10,3],[-45,-5],[-14,-1],[14,30],[2,6],[9,20],[23,45],[8,35],[2,7],[-16,34],[-9,19],[-14,28],[-12,16],[-8,7],[-52,154],[-16,105],[-12,46],[-21,52],[-21,32],[-20,15],[-22,13],[-39,13],[-16,3],[-37,-3],[-69,-14],[-14,-7],[-21,-19],[-30,-37],[-27,-20],[-8,-2],[-28,3],[-15,10],[-28,23],[-37,30],[-19,15],[-13,18],[-4,40],[-8,11],[-76,18],[-19,-5],[-16,-14],[-20,-30],[-49,19],[-14,115],[-14,28],[-104,155],[-9,10],[0,1],[-1,2],[-13,0],[-14,-5],[-16,-9],[-85,-97],[-8,-11],[-14,-26],[0,-6],[-11,-28],[-8,-12],[-15,-13],[-18,-10],[-7,0],[-54,0],[-42,-1],[-47,6],[-22,9],[-12,9],[-10,12],[-8,27],[-52,114],[-7,11],[-20,12],[-52,10],[-25,1]],[[30802,99013],[515,-26],[116,-6],[980,-50],[603,-31],[1926,-114],[1373,-81],[764,-45],[722,-43],[372,-22],[78,-4],[98,-6],[1200,-70],[81,-5],[140,-8],[770,-45],[359,-21],[476,-27]],[[41375,98409],[-88,-105],[-83,-102],[-19,-23],[-50,-62],[-202,-250],[-79,-97],[-202,-249],[-21,-364],[-3,-74],[-7,-103],[-5,-98],[-6,-98],[-8,-189],[-3,-45],[-9,-85],[-19,-309],[-12,-221],[-16,-231],[-4,-65],[-1,-6],[-2,-27],[-4,-64],[-1,-44],[-1,-11],[-4,-121],[-5,-139],[-1,-37],[-28,-313],[-7,-123],[-5,-74],[-67,12],[-23,-1],[-26,-1],[-22,2],[-270,22],[-143,13],[-126,12],[-65,6],[-41,3],[-70,5],[-46,4],[-18,-38],[-41,-22],[-26,-2],[-24,15],[-20,28],[-21,3],[-23,-8],[-7,-32],[-10,-27],[-23,-8],[-27,-5],[-39,46],[-33,40],[-8,37],[0,33],[-21,9],[-37,-38],[-1,-1],[-6,-9],[-22,-89],[-1,-2],[0,-20],[-66,-92],[0,-1],[-46,-54],[-59,-71],[-1,-1],[-6,-9],[-7,-16],[-1,-2],[0,-10],[-5,-4],[-50,-43],[-51,-34],[-1,-1],[-1,-1],[-11,-11],[-8,-44],[-22,-124],[5,-50],[0,-7],[-1,-4],[-6,-20],[23,-44],[2,-3],[7,-25],[2,-19],[9,-86],[19,-54],[12,-33],[0,-10],[5,-91],[3,-19],[2,-10],[2,-13],[3,-13],[13,-62],[3,-10],[0,-1],[30,-62],[5,-11],[23,-64],[3,-10],[-1,-8],[-11,-58],[0,-4],[-34,-45],[-8,-11],[-24,-47],[-1,-12],[-1,-19],[-7,-49],[-3,-16],[2,-11],[16,-94],[-1,-14],[-1,-7],[10,-28],[25,-43],[69,-124],[20,-39],[26,-54],[10,-20],[8,-19],[5,-17],[-2,-18],[-4,-29],[-3,-24],[-22,-51],[-32,-76],[-20,-131],[-1,-2],[3,-9],[-14,-36],[-2,-6],[-5,-13],[-9,-16],[-39,-47],[-23,-26],[-22,-42],[-13,-25],[-10,-19],[-4,-24],[-12,-78],[-1,-6],[0,-12],[3,-69],[-8,-67],[-8,-32],[-10,-29],[-37,-72],[-23,-44],[-23,-73],[-2,-28],[-2,-20],[0,-11],[0,-3],[3,-23],[32,-108],[2,-10],[3,-3],[29,-50],[3,-4],[10,-10],[8,-7],[16,-16],[63,-33],[7,-1],[81,-18],[68,-14],[43,-17],[8,-17],[10,-22],[4,-8],[-2,-24],[-5,-56],[-13,-33],[-2,-6],[-4,-5],[-8,-10],[-20,-43],[-12,-45],[-5,-40],[-1,-9],[-3,-21],[-1,-5],[-1,-64],[4,-22],[21,-34],[36,-33],[17,-15],[9,-16],[14,-24],[11,-18],[20,-65],[2,-7],[13,-41],[2,-35],[-1,-9],[-2,-7],[-6,-33],[-6,-5],[-57,-52],[-26,-42],[-27,-76],[-16,-96],[-1,-12],[-11,-25],[-17,-40],[-3,-34],[-6,-49],[0,-7],[0,-2],[5,-30],[3,-16],[2,-4],[28,-51],[4,-7],[13,-12],[12,-10],[8,-10],[29,-37],[0,-1],[16,-26],[12,-45],[6,-176],[0,-7],[0,-104],[16,-234],[29,-184],[22,-73],[1,-2],[23,-50],[50,-107],[13,-49],[22,-85],[12,-45],[2,-10],[0,-5],[0,-25],[6,-10],[12,-22],[7,-15],[2,-1],[30,-30],[6,-6],[90,-60],[18,-20],[28,-57],[-2,-12],[-4,-33],[-25,-54],[-8,-17],[-17,-55],[-12,-32],[-11,-39]],[[50974,95606],[-5,-35],[2,-13],[8,-47],[-1,-55],[-15,-60],[-7,-35],[-12,-69],[0,-3],[8,-36],[7,-15],[10,-5],[11,5],[38,26],[1,-18],[3,-30],[4,-10],[32,-13],[13,-11],[17,-20],[7,-15],[3,-14],[0,-13],[0,-9],[-11,-46],[-13,-44],[-3,-10],[-45,-127],[-3,-10],[-33,-107],[0,-2],[16,-78],[25,-28],[92,-192],[6,-15],[0,-24],[-5,-42],[2,-13],[10,-64],[7,-14],[-2,-25],[-16,-62],[-8,-30],[-4,-14],[-20,-68],[-21,-68],[-1,-2],[-15,-47],[-37,-114],[-13,-41],[-80,4],[-34,-44],[-4,-10],[3,-28],[18,-33],[63,-112],[9,-17],[1,-1],[28,-28],[5,-5],[33,60],[8,15],[2,6],[15,20],[22,20],[11,5],[13,0],[18,-8],[16,-15],[1,-7],[-6,-7],[-45,-50],[-11,-19],[-13,-27],[-18,-50],[10,-36],[15,-53],[24,-82],[84,-97],[9,-28],[1,-6],[14,-92],[1,-11],[-7,-34],[-1,-27],[2,-15],[23,-58],[9,-21],[6,-7],[8,0],[9,4],[11,6],[88,20],[17,4],[-1,-24],[-5,-80],[0,-5],[-3,-1],[-2,-1],[-47,-19],[-1,-1],[0,-5],[-2,-50],[38,-120],[6,-25],[12,-56],[2,-33],[-3,-13],[5,-44],[6,-16],[34,-91],[-4,-149],[-2,-18],[-9,-53],[0,-2],[1,0],[40,-27],[4,-3],[37,-7],[6,-43],[7,-21],[8,-11],[9,-1],[7,2],[4,1],[8,10],[5,6],[19,24],[12,16],[11,9],[14,13],[8,7],[6,2],[16,2],[15,-83],[13,-68],[1,-9],[-2,-7],[-20,-62],[-1,-3],[0,-2],[-2,-13],[0,-22],[0,-4],[1,-2],[5,-33],[6,-11],[11,-21],[5,-10],[57,-155],[-4,-27],[0,-1],[0,-3],[0,-31],[1,-13],[2,-12],[1,-13],[6,-11],[2,-3],[3,-16],[1,-7],[-25,-43],[20,-33],[30,-70],[-1,-42],[0,-18],[-16,-24],[-19,-29],[-16,-44],[-4,-29],[5,-12],[6,-14],[9,-63],[34,-58],[52,-134],[5,-44],[-3,-102],[-19,-65],[-12,-117],[-22,-93],[-1,-1],[0,-1],[-29,-61],[-48,-72],[-113,-93],[-30,-71],[-12,-88],[-2,-72],[4,-48],[5,-18],[4,-17],[0,-1],[5,-42],[8,-63],[3,-17],[-2,-29],[-6,-137],[1,-14],[2,-16],[-10,-74],[-9,-68],[-13,-48],[-8,-59],[3,-11],[2,-7],[-4,-136],[3,-40],[6,-81],[-6,-46],[3,-77],[20,-58],[6,-16],[12,-18],[26,-36],[126,-108],[9,-7],[15,-13],[7,-12],[28,-47],[10,-17],[4,-6],[-3,-21],[0,-1],[-2,-20],[13,-69],[1,-7],[0,-4],[-6,-63],[-1,-12],[-22,-39],[-46,-64],[-18,-26],[-23,-89],[-41,-65],[-2,-4],[-2,-1],[-22,-20],[-8,-7],[-3,-1],[-34,-17],[-142,-130],[-1,0],[-1,-1],[-77,-39],[-20,-6],[-23,-6],[-50,-14],[-16,-4],[-8,-6],[-22,-14],[-4,-3],[-36,-36],[-10,-19],[-11,-21],[-12,-22],[-1,-5],[-8,-48],[-3,-17],[6,-61],[10,-50]],[[51126,87579],[-103,0],[-54,1],[-90,0],[-145,1],[-140,1],[-100,1],[-56,0],[-24,0],[-24,0],[-69,0],[-3,0],[-92,2],[-23,0],[-263,3],[-3,0],[-32,0],[-35,0],[-174,1],[-177,1],[-146,1],[-57,1],[-177,1],[-67,1],[-35,0],[-28,1],[-69,-2],[-220,-2],[-83,0],[-107,-1],[-80,-1],[-76,-1],[-51,0],[-4,0],[-27,-1],[-168,-1],[-75,-1],[-38,0],[-184,-1],[-1,0],[-105,-1],[-120,0],[-231,-1],[-34,0],[-199,-4],[-21,1],[-64,-3],[-101,-2],[-26,-1],[-48,0],[-26,-4],[-38,3],[-7,0],[-148,-3],[-60,-1],[-3,0],[-83,-2],[-103,3],[-37,0],[-124,2],[-183,3],[-44,0],[-726,10],[-219,4],[-1,0],[-493,6],[-65,1],[-80,1],[-238,3],[-79,2],[-277,3],[-5,0],[-32,0],[-284,4],[-490,8],[-150,2],[-81,1],[-550,9],[-41,1],[-95,1],[-38,-5],[-26,-2],[-89,0],[-289,1],[-154,0],[-107,1],[-168,0],[-4,0],[-36,-1],[-159,-2],[-362,-3],[-213,-2],[-254,-3],[-53,0],[-4,0],[-262,-3],[-215,-1],[-79,-1],[-94,-1],[-181,-1],[-38,-1],[-207,-2],[-37,-1]],[[39046,87603],[52,37],[73,80],[42,56],[31,28],[65,14],[65,51],[17,23],[9,19],[34,75],[16,40],[10,28],[14,39],[12,62],[1,3],[0,4]],[[41375,98409],[598,-34],[192,-11],[11,0],[2673,-169],[38,-2],[374,-30],[201,-16],[1623,-131],[667,-54],[68,-5],[38,-3],[44,-4],[142,-12],[270,-23],[3,-35],[-118,-9],[-91,-12],[-26,-6],[-64,-29],[-70,-79],[5,-13],[-8,-59],[-35,-57],[-7,-54],[29,-44],[10,-2],[15,-3],[4,-1],[66,-102],[60,-72],[17,-7],[20,-34],[-3,-26],[-3,-18],[0,-3],[-2,-15],[61,-98],[31,-78],[15,-50],[74,-292],[-13,-100],[-20,-43],[-54,-71],[-32,-28],[-4,-3],[-21,-5],[-54,-49],[-60,-53],[-10,-11],[-37,-41],[-38,-99],[-37,-86],[-25,-42],[-16,-29],[-29,-81],[-21,-44],[-73,-148],[9,-36],[-25,-161],[-15,-40],[-19,-146],[-10,-156],[1,-17],[15,-59],[110,-42],[35,-29],[53,-57],[44,-109],[72,-152],[38,-142],[90,-5],[90,77],[977,849],[239,206],[425,377],[152,135],[328,323],[77,-125],[268,-435],[253,-411],[14,-23]],[[18051,87537],[-60,-44],[-77,-57],[-25,-18],[-23,-17],[-25,-18],[-29,-22],[-36,-28],[-65,-46],[-73,-53],[-31,-23],[-22,-16],[-40,-29],[-22,-16],[-11,-9],[-46,-33],[-23,-16],[-115,-84],[-144,-107],[-31,-23],[-69,-51],[-110,-78],[-116,-85],[-46,-34],[-21,-15],[-26,-20],[-71,-54],[-32,-23],[-33,-25],[-122,-85],[-11,-8],[-181,-134],[-130,-95],[-2,-2],[-75,-54],[-53,-38],[-151,-110],[-27,-20],[-21,-16],[-98,-72],[-190,-139],[-250,-184],[-5,-3],[-90,-66],[-45,-32],[-107,-79],[-25,-18],[-33,-25],[-39,-29],[-44,-32],[-82,-61],[-165,-123],[-68,-49],[-74,-56],[-89,-66],[-64,-48],[-54,-40],[-23,-17],[-35,-27],[-35,-25],[-20,-16],[-52,-39],[-15,-10],[-39,-29],[-98,-74],[-37,-28],[-99,-73],[-154,-114],[-53,-40],[-105,-78],[-108,-81],[-164,-122],[-102,-76],[-27,-20],[-35,-26],[-59,-44],[-8,-6],[-59,-44],[-24,-17],[-164,-123],[-59,-43],[-69,-52],[-10,-7],[-100,-70],[-162,-116],[-194,-145],[-22,-16],[-115,-85],[-20,-15],[-40,-30],[-75,-56],[-34,-25],[-9,-7],[-50,-37],[-62,-48],[-23,-23],[-34,-48],[-2,-3],[-39,-52],[-63,-85],[-6,-9],[-33,-44],[-1,-1],[-41,-60],[-27,-39],[-23,-31],[-19,-26],[-1,-1],[-16,-23],[-46,-66],[-90,-127],[-4,-7],[-54,-76],[-75,-106],[-26,-35],[-52,-73],[-51,-72],[-49,-70],[-195,-277],[-102,-144],[-32,-67]],[[10694,81363],[-140,-82],[-5,40],[9,44],[26,17],[-23,15],[-28,-3],[-43,-82],[-23,-4],[-17,-3],[16,17],[27,31],[-27,35],[1,34],[-27,0],[-14,-25],[-15,-2],[-13,-2],[-9,30],[2,0],[19,8],[-22,27],[21,19],[4,35],[33,10],[12,65],[-24,17],[9,48],[-26,33],[33,22],[13,-46],[28,22],[15,52],[1,43],[2,1],[29,23],[8,-9],[74,-92],[32,33],[-1,35],[91,34],[25,-21],[9,-112],[34,41],[-9,46],[13,53],[27,-20],[38,52],[-13,33],[100,88],[-24,6],[-38,-34],[-47,2],[-52,-60],[-43,-4],[-5,46],[-19,14],[39,21],[4,39],[-54,8],[-3,8],[-11,40],[11,-5],[65,-27],[71,-10],[-101,99],[29,48],[60,-34],[-5,62],[29,29],[60,-26],[-37,68],[41,-6],[-14,44],[28,25],[32,-13],[33,18],[14,-28],[29,54],[-111,5],[-36,-6],[1,30],[0,54],[-41,-56],[0,-1],[-12,-28],[-41,-3],[32,-38],[-73,-56],[-16,10],[-8,6],[-33,16],[-17,43],[8,27],[1,5],[28,18],[-17,67],[39,18],[31,-18],[43,57],[16,20],[-69,-31],[-90,43],[61,50],[-92,-7],[-29,10],[-19,7],[-11,27],[-12,30],[28,46],[-12,42],[-73,-1],[-67,46],[6,51],[-24,-7],[-9,37],[14,26],[-18,86],[-21,86],[-27,1],[-9,45],[-1,3],[1,1],[28,30],[5,4],[107,91],[-17,28],[-21,8],[-58,24],[9,78],[9,83],[6,23],[22,28],[4,43],[0,4],[6,62],[-6,25],[-1,4],[-9,34],[-27,44],[-51,9],[-103,37],[-58,62],[-27,44],[6,53],[1,6],[12,21],[61,58],[18,44],[24,112],[18,84],[6,50],[10,90],[3,28],[-2,123],[-35,116],[-3,10],[-42,87],[-19,27],[-14,11],[-10,9],[-35,6],[-25,-10],[-2,-1],[-32,-27],[-34,3],[-14,1],[-19,35],[-4,25],[-6,10],[-13,21],[-5,6],[-50,55],[-85,19],[-48,8],[-22,-1],[-33,-2],[-144,-48],[-14,-4],[-20,7],[-11,3],[-35,13],[-44,7],[-19,4],[-19,31],[-55,116],[-2,13],[8,38],[27,43],[43,37],[45,79],[5,51],[-2,14],[-9,44],[-5,25],[8,74],[15,17],[41,49],[18,45],[8,19],[24,58],[7,39],[-26,48],[-41,7],[-3,1],[-17,3],[8,21],[26,70],[8,21],[16,-3],[9,4],[4,2],[8,7],[32,30],[3,27],[-8,37],[25,144],[2,12],[1,6],[40,69],[34,46],[33,30],[16,29],[0,32],[-20,51],[-1,16],[4,39],[19,53],[8,14],[37,34],[63,-15],[7,3],[22,24],[5,15],[-4,21],[-20,23],[-18,3],[-21,3],[-46,-8],[-24,-15],[-18,1],[-35,23],[-9,18],[-47,87],[-21,14],[-35,73],[-9,18],[6,60],[-5,45],[-75,123],[-78,126],[-6,13],[-2,4],[-7,137],[-24,119],[-3,16],[-25,68],[-22,93],[-13,52],[3,115],[23,171],[17,37],[22,80],[4,47],[11,117],[-7,53],[-49,80],[-20,48],[-3,8],[-15,101],[9,75],[9,22],[1,14],[5,68],[-49,84],[-8,28],[-1,6],[-25,210],[-1,13],[-3,19],[-27,240],[-10,141],[-6,65],[-11,41],[-5,132],[-12,38],[-15,82],[-3,15],[-2,10],[1,4],[4,38],[0,1],[18,17],[4,3],[9,-2],[79,-17],[5,3],[34,26],[4,30],[0,1],[-21,34],[-9,15],[5,43],[35,58],[2,34],[1,13],[-25,40],[-12,10],[-38,10],[-31,51],[-10,16],[9,78],[49,87],[26,59],[3,30],[1,9],[-13,22],[-51,17],[-24,16],[-14,23],[-21,34],[-12,19],[-9,15],[13,99],[38,49],[20,61],[-9,92],[-5,54],[-7,76],[16,112],[-34,57],[-9,14],[-21,20],[-58,89],[-10,16],[-23,37],[-15,37],[-23,57],[0,12],[0,44],[32,30],[24,8],[22,20],[27,71],[-1,20],[-24,40],[-32,36],[-25,28],[-18,20],[-35,15],[-50,44],[-1,1],[-9,32],[12,68],[11,38],[2,50],[0,39],[24,62],[15,24],[12,34],[-3,35],[-42,23],[-41,16],[-23,6],[-32,11],[-30,5],[-34,17],[-23,21],[-32,20],[-24,20],[-29,-1],[-25,-6],[-32,-8],[-20,16],[-81,132],[-10,15],[-11,132],[-1,13],[-37,71],[-9,16],[-15,66],[15,161],[12,22],[69,64],[7,35],[2,11],[25,79],[153,142],[28,26],[30,7],[77,-13],[43,-51],[57,-10],[91,84],[1,4],[9,82],[-38,57],[-67,104],[-1,14],[-2,24],[-2,38],[9,78],[27,63],[24,68],[12,105],[-6,9],[3,13],[3,14],[-55,89],[3,48],[2,50],[5,7],[23,26],[57,69],[5,6],[65,57],[9,-2],[10,-2],[5,-5],[7,-8],[19,-4],[43,33],[6,82],[15,17],[15,17],[5,5],[-4,6],[-31,39],[-7,20],[-5,20],[-1,4],[4,3],[33,24],[25,-4],[18,-19],[19,-3],[17,16],[5,4],[11,19],[5,6],[14,37],[4,22],[8,40],[2,11],[8,43],[8,46]],[[9516,94990],[1813,722],[518,206],[100,-53],[50,-41],[30,-50],[-9,-16],[-12,-22],[6,-69],[-71,-164],[15,-47],[2,-35],[-44,-79],[-12,-45],[3,-29],[23,5],[34,-9],[117,6],[75,72],[27,-17],[51,31],[36,5],[19,7]],[[58084,87477],[2,-33],[3,-33],[-1,-5],[-2,-10],[2,-11],[110,-399],[1,0],[3,-11],[29,-55],[6,-9],[6,-4],[1,0],[8,0],[11,3],[7,-6],[20,-28],[1,-3],[1,-2],[44,-166],[1,-6],[0,-6],[2,-11],[-5,-22],[-2,-6],[8,-2],[100,-27],[11,-3],[2,-2],[9,-8],[17,-23],[2,-8],[0,-7],[-6,-18],[-13,-16],[-20,-20],[0,-1],[0,-12],[25,-51],[12,-18],[14,-17],[39,-14],[24,-19],[29,-17],[22,-10],[10,0],[21,17],[8,7],[27,11],[3,1],[24,5],[2,-1],[16,-9],[10,-11],[0,-2],[1,-33],[-4,-16],[-11,-25],[-5,-11],[-10,-67],[-1,-18],[3,-9],[8,-12],[7,-4],[29,-11],[33,-6],[6,-2],[16,-16],[18,-22],[8,-10],[0,-1],[8,-14],[8,-18],[1,-2],[0,-10],[-6,-9],[-22,-2],[75,-47],[45,-23],[2,-17],[2,-29],[1,0],[3,-4],[7,-9],[9,-5],[1,0],[55,-8],[1,0],[38,1],[29,-5],[16,-15],[11,-16],[7,-23],[0,-12],[-3,-6],[-26,-19],[-19,-22],[-8,-13],[-12,-25],[0,-1],[0,-28],[7,-28],[2,-6],[14,-43],[6,-16],[26,-39],[10,-15],[15,-22],[4,-5],[15,-10],[20,-14],[3,-7],[54,-122],[2,-4],[11,-10],[-4,-14],[1,-7],[1,-9],[8,-40],[3,-20],[2,-7],[21,-81],[7,-6],[12,-2],[10,-10],[37,-49],[0,-1],[39,-87],[1,-1],[23,-64],[-7,-7],[-7,-7],[-6,-5],[1,-21],[0,-1],[4,-14],[6,-21],[64,-179],[67,-118],[11,-17],[18,-30],[2,-3],[43,-40],[9,-1],[40,-6],[16,2],[0,-1],[11,-37],[3,-11],[-3,-8],[-18,-13],[-1,0],[-13,-3],[-4,-5],[-2,-9],[0,-1],[1,-30],[11,-19],[8,-11],[10,-7],[44,-30],[11,-8],[-9,-5],[-46,-26],[-1,-1],[-8,-7],[-7,-13],[0,-24],[0,-1],[5,-25],[4,-6],[20,1],[8,-5],[4,-6],[9,-31],[0,-18],[-1,-2],[-12,-18],[-6,-13],[-4,-15],[-22,-152],[1,-34],[4,-10],[2,-3],[5,-11],[7,-6],[1,6],[6,27],[2,7],[1,3],[3,9],[9,7],[12,2],[72,-30],[15,-11],[34,-43],[7,-9],[46,-53],[34,-35],[5,-2],[29,-41],[1,-1],[7,-13],[3,-14],[-1,-1],[0,-2],[-1,-1],[0,-1],[-12,-11],[-8,-15],[0,-22],[28,-87],[15,-32],[9,-21],[2,-4],[17,-24],[27,-26],[1,-1],[13,-8],[19,-2],[10,-2],[-1,-1],[-50,-68],[0,-13],[38,-52],[40,-33],[1,0],[42,5],[8,-4],[45,-28],[31,-34],[1,-9],[-7,-10],[-1,-3],[-6,-21],[-1,-36],[0,-9],[7,-50],[2,-11],[3,-8],[0,-1],[1,-1],[6,-9],[10,-6],[71,2],[4,0],[68,-6],[21,-5],[13,-7],[3,-2],[15,-8],[14,-11],[5,-13],[-9,-24],[-1,0],[-5,-7],[-30,-23],[-20,-15],[-7,-12],[-2,-15],[2,-17],[0,-1],[2,-1],[66,-51],[7,-5],[70,-52],[90,-102],[35,-24],[0,-2],[10,-111],[-11,-46],[-1,-25],[1,-3],[0,-1],[1,-2],[6,-5],[9,-1],[5,6],[6,14],[8,24],[2,7],[15,22],[7,5],[11,2],[12,0],[58,-4],[11,-1],[20,-6],[2,0],[1,-1],[8,-6],[32,-103],[5,-17],[0,-1],[1,-14],[-64,-126],[-1,-4],[-39,-119],[-3,-11],[-4,-37],[-2,-98],[2,-14],[8,-28],[1,-4],[6,-12],[34,-77],[3,-2],[8,-8],[1,-6],[12,-20],[20,-24],[9,-5],[45,-3],[8,-1],[25,5],[8,0],[10,-3],[5,-6],[69,-94],[3,-5],[11,-21],[22,-39],[9,-7],[14,-11],[54,-42],[50,-43],[0,-1],[1,0],[9,-13],[12,-38],[15,-74],[3,-11],[-1,0],[-4,-19],[-17,0],[-22,1],[-3,0],[-1,0],[-15,-5],[-24,-22],[-1,-1],[-1,-1],[-42,-43],[-7,-8],[-1,-1],[0,-20],[64,-93],[7,-9],[36,-31],[10,-5],[6,-1],[28,2],[75,-29]],[[61328,81096],[-293,-167],[-36,-21],[-63,-37],[-75,-44],[-266,-153],[-30,-17],[-7,-4],[-136,-78],[-152,-87],[-242,-139],[-236,-136],[-165,-95],[-24,-13],[-182,-104],[-80,-46],[-168,-100],[-334,-192],[-222,-131],[-93,-54],[-78,-49],[-82,-54],[-3,-17],[5,-20],[17,-50],[49,-119],[1,-3],[14,-61],[6,-13],[20,-47],[18,-40],[13,-37],[5,-15],[3,-13],[1,-14],[-4,-17],[-5,-19],[-3,-14],[-1,-3],[-11,-32],[20,-161],[0,-4],[2,-12],[9,-6],[99,-61],[27,-23],[13,-12],[9,-9],[18,-151],[6,-43],[2,-3],[89,-127],[14,-9],[24,-16],[2,-3],[8,-9],[6,-13],[1,-4],[1,-2],[4,-23],[1,-88],[1,-5],[6,-33],[2,-14],[0,-24],[0,-5],[4,-32],[1,-1],[15,-17],[17,-21],[11,-7],[9,-6],[2,-8],[1,-17],[-1,-11],[-6,-65],[-2,-21],[0,-1],[-6,-8],[-5,-8],[-45,-67],[0,-1],[0,-1],[-2,-12],[0,-67],[-29,2],[-30,-10],[-31,7],[-40,4],[-23,20],[-31,-8],[-40,11],[-29,14],[-27,10],[-20,34],[-28,14],[-45,-59],[-6,-34],[10,-43],[2,-48],[-2,-33],[-45,-101],[-9,-32],[-17,-75],[-34,-9],[-52,2],[-97,6],[-45,3],[-72,-59],[-76,-61],[-114,-11],[-74,-1],[-6,-59],[4,-67],[-23,-8],[-52,-19],[-9,35],[-8,37],[-9,39],[-14,50],[-25,103],[-73,121],[-21,16],[-105,77],[-39,53],[-38,21],[-17,-61],[-25,-125],[-6,-32],[-12,0],[-10,0],[-79,1],[-25,0],[-54,-79],[2,-53],[-44,0],[-34,-70],[-34,0],[-48,1],[7,101],[-3,48],[-6,53],[85,81],[-70,67],[-36,-13],[-54,-20],[-27,-23],[-37,-33],[-44,27],[11,-55],[-45,-21],[-100,99],[-1,-141],[0,-95],[22,-1],[79,0],[42,10],[-10,-30],[-19,-31],[-17,-25],[-16,-30],[-9,-30],[-6,-39],[-6,-40],[-10,-37],[-18,-23],[-23,-16],[-27,-18],[-22,-15],[-3,33],[3,34],[-4,51],[-8,65],[-2,38],[0,56],[1,55],[-38,3],[-77,6],[-28,-9],[-45,5],[-77,10],[-23,-36],[-12,-44],[21,-85],[8,-36],[-1,-56],[-20,-24],[-151,-115],[-33,-2],[-70,-20],[-23,56],[-22,37],[-27,53],[-34,38],[-140,162],[-15,44],[-59,37],[-21,13],[-26,16],[-7,40],[-19,39],[-11,33],[-11,35],[-16,23],[-21,19],[-23,19],[-19,38],[0,42],[5,64],[-19,85],[-18,25],[-27,25],[-22,43],[-10,33],[-20,66],[-23,59],[-53,-5],[-88,-5],[-31,-5],[-11,18],[-72,-82],[-60,-66],[-17,-9],[-23,-5],[-13,-3],[-2,-21],[0,-1],[-7,-20],[-21,-61],[0,-1],[-11,-16],[-9,-16],[-4,-8],[-14,-41],[2,-40],[-3,-67],[0,-3],[-4,-4],[-6,-5],[0,-6],[0,-6],[-16,-87],[-16,-50],[0,-1],[-16,-157],[-1,-2],[-29,-92],[-21,-6],[-35,-10],[-2,-1],[-14,-5],[-49,-39],[-16,-10],[-66,-38],[-3,-1],[-15,-6],[-6,-4],[-5,-3],[-40,-15],[-67,-26],[-44,-16],[-22,-14],[-29,-8],[-24,14],[-20,11],[-1,0],[-33,-4],[-14,-13],[-20,-19],[-2,-1],[-25,22],[0,71],[-8,43],[-29,29],[-28,51],[-17,37],[-3,38],[-4,41],[23,51],[6,43],[37,83],[47,104],[-2,38],[8,52],[7,82],[-4,36],[-23,34],[-48,33],[-35,41],[-11,31],[-6,46],[12,31],[23,52],[31,73],[7,36],[8,62],[7,38],[35,63],[8,31],[-4,52],[14,68],[-7,51],[8,62],[1,97],[23,131],[-47,14],[-35,0],[-36,-1],[-31,-30],[-25,-23],[-51,-48],[-28,-21],[-428,-394],[-2,-1],[-63,-58],[-212,-195],[-152,-140],[-50,-45],[-324,-296],[-59,-56],[-75,-73],[-5,-4],[-60,-56],[-142,-131],[-67,-60],[-133,-121],[-221,-203],[-163,-151],[-240,-226],[-64,-67],[-102,-81],[-27,-21],[-23,-16],[-18,-16],[-63,-55]],[[51523,76154],[-13,47],[-36,93],[-43,73],[-16,7],[-22,22],[-51,87],[-53,147],[-18,76],[-28,57],[-30,83],[1,8],[-10,16],[-22,38],[-53,138],[-2,6],[-12,31],[9,71],[18,47],[9,25],[50,63],[43,38],[29,16],[5,3],[9,-1],[3,0],[19,-1],[37,-3],[1,0],[54,45],[32,36],[26,38],[1,14],[1,16],[10,22],[8,17],[5,41],[-7,73],[0,6],[1,10],[12,94],[10,20],[-3,50],[-1,27],[21,159],[16,23],[5,7],[14,93],[3,13],[6,43],[21,78],[19,68],[9,67],[-5,160],[0,107],[0,21],[-22,38],[-10,16],[-3,4],[-2,35],[4,12],[1,5],[-15,44]],[[51558,78843],[-20,70],[-1,3],[3,22],[0,6],[6,43],[69,59],[25,21],[13,19],[9,19],[7,50],[-1,43],[7,55],[62,77],[5,42],[-43,98],[-19,34],[-48,33],[-40,-19],[-1,0],[-43,11],[-29,60],[-19,66],[7,25],[1,24],[0,8],[2,18],[16,51],[7,168],[0,35],[0,4],[-15,67],[-15,16],[-29,24],[15,13],[2,6],[-12,13],[-23,26],[-24,20],[6,38],[4,57],[-26,42],[-21,26],[-62,91],[-17,50],[-33,38],[-18,29],[4,8],[6,25],[19,84],[-3,25],[-1,11],[47,366],[3,72],[-5,40],[-18,76],[-19,68],[-20,60],[-14,22],[-18,31],[-18,16],[-49,82],[-25,48],[-15,46],[9,71],[18,18],[7,7],[30,259],[0,4],[2,5],[5,15],[57,121],[56,83],[6,37],[19,125],[14,131],[0,3],[-3,8],[-24,57],[0,48],[-3,115],[7,50],[34,33],[89,84],[21,30],[45,102],[13,75],[-3,13],[-11,41],[12,62],[35,53],[38,52],[65,72],[72,72],[28,24],[33,30],[32,28],[64,75],[18,20],[13,115],[-4,26],[-7,23],[-15,26],[-25,42],[-11,19],[-39,25],[-7,7],[-14,14],[-7,13],[-4,8],[-16,33],[-4,8],[0,3],[-4,37],[-2,16],[-6,61],[-13,56],[-12,48],[0,15],[0,40],[1,77],[0,47],[0,53],[-4,8],[-8,18],[-2,46],[-1,40],[-63,103],[-33,66],[-15,46],[-3,19],[-3,16],[-2,39],[6,84],[1,25],[-5,13],[-5,13],[-30,72],[-14,32],[-11,37],[2,17],[7,54],[2,64],[-6,61],[-6,14],[-2,5],[2,4],[3,7],[-3,31],[-20,124],[-1,8],[0,3],[7,51],[3,47],[15,35],[57,92],[1,10],[8,61],[-1,68],[-2,11],[-19,45],[11,104],[3,25],[-5,12],[-22,53],[14,40],[-10,41],[-8,48],[0,22],[1,8],[1,38],[6,42],[7,13],[2,2],[1,90],[-14,24],[-2,5],[-3,11],[-5,42],[-80,124],[-1,3],[-2,2],[-60,61],[-22,17],[-2,32],[-5,72],[-6,15],[-15,40],[-5,40],[-17,55],[-65,68],[-5,8],[-12,21],[-20,34],[-62,151],[-26,63],[-2,4],[-2,7],[-4,17],[-15,53],[-13,62],[-13,62]],[[50974,95606],[150,-257],[272,-467],[698,-1198],[260,-445],[38,-67],[1117,-1962],[33,-58],[-31,-356],[-8,-85],[-237,-2667],[-44,-495],[1466,-22],[247,-3],[1855,-28],[1294,-19]],[[10694,81363],[-15,-27],[-66,-88],[-34,-47],[-29,-39],[-33,-45],[-132,-191],[-113,-165],[-48,-68],[-48,-67],[-6,-8],[-71,-99],[-89,-127],[-10,-13],[-55,-80],[-251,-364],[-36,-52],[-85,-121],[-50,-72],[-42,-56],[-89,-121],[-6,-9],[-59,-91],[-19,-27],[-150,-215],[-61,-84],[-19,-26],[-16,-21],[-117,-178],[-48,-63],[-20,-27],[-124,-169],[-21,-32],[-31,-49],[-58,-90],[-60,-81],[-57,-81],[-19,-27],[-40,-57],[-13,-19],[-94,-132],[-47,-74],[-66,-92],[-32,-59],[-28,-32],[-27,-31],[-33,-45],[-17,-24],[-23,-32],[-88,-127],[-21,-30],[-50,-74],[-106,-156],[-8,-12],[-15,-22],[-12,-17],[-30,-44],[-2,-26],[-3,-59],[-32,-5],[-18,-3],[-34,-43],[-19,-24],[-59,-84]],[[7590,76920],[-25,-37],[-31,-44],[-34,-41],[-29,-25],[-18,-16],[-83,-34],[-60,-62],[-32,6],[-72,49],[-23,17],[-43,29],[-64,62],[-87,87],[-44,15],[-57,10],[-103,53],[-1,0],[-34,38],[-131,42],[-38,6],[-18,-15],[-4,-3],[-8,-8],[-43,-3],[-36,8],[-65,54],[-11,18],[-26,25],[-74,28],[-6,109],[-82,61],[-4,24],[16,116],[-59,104],[-3,6],[-6,15],[-12,25],[-22,3],[-34,-14],[-43,-36],[-63,-21],[-38,6],[-34,18],[-12,10],[-66,102],[-36,82],[-7,81],[-14,81],[-8,18],[-24,40],[-45,35],[-27,44],[12,89],[0,3],[1,21],[11,124],[1,11],[2,8],[5,29],[-88,146],[-23,24],[-105,14],[-135,-25],[-35,5],[-12,10],[-44,71],[-48,16],[3,39],[5,20],[-4,0],[-9,2],[-15,3],[-90,66],[-49,80],[-74,176],[-64,94],[-11,18],[-1,7],[-1,7],[-1,10],[-100,105],[-3,5],[-5,8],[-3,59],[-19,32],[-18,11],[-97,23],[-7,11],[-1,1],[-16,13],[-142,24],[-19,7],[-11,17],[-2,13],[-9,12],[-6,7],[-3,4],[-5,60],[-45,123],[-39,64],[-2,30],[-22,32],[-74,53],[-100,71],[-63,11],[-14,-10],[-19,3],[-12,10],[-23,38],[5,37],[32,110],[47,44],[11,14],[5,19],[3,23],[-17,34],[-1,19],[0,5],[-1,9],[-8,13],[-12,6],[-120,28],[-93,39],[-21,44],[9,110],[10,30],[48,51],[38,12],[11,10],[7,6],[51,38],[-4,20],[-23,24],[-107,58],[-55,29],[-32,5],[-145,1],[-94,-1],[-61,-25],[-56,-1],[-7,10],[-5,6],[-106,18],[-53,52],[-95,21],[-17,3],[-134,28],[-111,-1],[-124,11],[-39,3],[-37,0],[-67,28],[-6,3],[-67,32],[-42,23],[-108,107],[-70,70],[-15,24],[-22,22],[-5,1],[-5,0],[-9,2],[-31,49],[2,39],[-48,72],[-65,197],[-79,45],[-22,36],[-17,50],[-36,54],[-16,10],[-69,16],[-61,66],[-52,20],[-4,1],[-47,8],[-10,3],[-33,14],[-7,3],[-27,16],[-21,16],[-43,39],[-12,12],[-10,2],[-13,3],[-12,22],[0,1],[-4,8],[-5,27],[-5,30],[-4,8],[-5,9],[-15,27],[-15,14],[-18,15],[-186,102],[-4,1],[-21,3],[-28,45],[-124,191],[-19,38],[-13,25],[-5,11],[-5,44],[1,23],[2,33],[-8,21],[-6,8],[-51,70],[-2,3],[-27,18],[-3,3],[-25,13],[-38,-3],[-40,-9],[-75,-37],[-4,-2],[-25,5],[-12,13],[-4,9],[-8,15],[-4,7],[-16,58],[1,15],[1,1],[-4,13],[-12,53],[-26,46],[-4,6],[-34,38],[-22,14],[-30,18],[-72,52],[-9,11],[-14,17],[-48,3],[-26,-3],[-47,-12],[-65,-26],[-13,-5],[-19,3],[-24,16],[-5,9],[-27,52],[4,35],[5,15],[9,26],[27,26],[5,5],[23,28],[3,12],[7,50],[-15,38],[-39,62],[-2,3],[-65,68],[-73,12],[-115,66],[-11,18],[-12,42],[4,35],[38,53],[18,17],[38,21],[17,10],[25,23],[7,31],[0,4],[-8,14],[-3,4],[-34,45],[-24,68],[-2,14],[-13,119],[-3,4],[-8,39],[-23,52],[-8,87],[0,115],[-6,69],[-3,15],[-9,46],[5,51],[3,4],[29,50],[39,58],[8,98],[1,15],[2,3],[24,25],[23,40],[22,20],[4,3],[4,1],[54,2],[70,-16],[8,8],[1,1],[9,8],[0,5],[4,37],[1,5],[4,65],[1,10],[39,33],[71,60],[8,14],[1,6],[4,79],[6,6],[32,30],[29,14],[46,21],[7,93],[1,9],[1,20],[1,35],[1,1],[7,10],[14,13],[18,6],[6,2],[72,5],[36,13],[1,0],[14,14],[-3,28],[-8,13],[-30,29],[-39,23],[-6,8],[3,26],[0,2],[9,18],[8,9],[50,49],[2,16],[-12,14],[-40,14],[-15,18],[49,88],[28,79],[-21,71],[-42,91],[-11,25],[1,6],[1,12],[1,1],[15,17],[7,7],[2,24],[-39,173],[-16,62],[-4,75],[0,5],[12,10],[2,1],[7,6],[54,75],[37,52],[16,22],[68,116],[7,31],[1,1],[23,19],[48,23],[95,37],[59,10],[38,43],[11,12],[9,23],[19,92],[1,15],[2,38],[1,6],[-20,31],[-37,10],[-36,2],[-53,89],[0,1],[-4,7],[0,16],[0,11],[1,12],[5,15],[23,36],[45,56],[11,11],[63,-19],[14,-22],[-3,-19],[-2,-4],[-17,-25],[-2,-23],[5,-9],[8,-14],[9,-6],[51,-38],[9,-7],[7,-1],[3,0],[4,4],[15,17],[3,3],[87,126],[1,2],[8,11],[1,36],[-23,80],[-3,11],[1,11],[2,16],[2,12],[8,15],[25,20],[31,-6],[67,-46],[25,-36],[4,-15],[0,-4],[31,-42],[35,-32],[67,-60],[24,-7],[10,1],[5,3],[33,20],[43,25],[54,69],[2,11],[7,31],[21,183],[4,57],[-1,76],[-4,23],[-9,24],[-10,7],[-44,19],[-13,113],[0,4],[7,51],[6,43],[3,21],[13,34],[2,4],[3,11],[4,14],[5,16],[18,84],[12,36],[0,1],[0,1],[11,21],[4,7],[11,7],[81,-6],[20,-7],[9,-8],[12,-28],[-7,-36],[0,-24],[7,-11],[4,-7],[52,-23],[27,-3],[29,1],[28,1],[38,0],[39,17],[17,8],[11,11],[7,7],[2,11],[-13,17],[-24,5],[-19,1],[-16,6],[-37,21],[0,1],[-8,11],[-3,9],[0,8],[0,4],[7,183],[1,7],[1,30],[8,16],[3,2],[10,-1],[53,-20],[39,-20],[16,2],[11,11],[5,11],[2,4],[0,18],[0,2],[1,9],[-3,7],[-31,28],[-10,9],[17,31],[1,2],[4,6],[21,19],[0,2],[2,5],[-8,25],[-23,31],[-6,110],[0,2],[9,26],[15,18],[18,16],[61,-33],[38,-33],[9,-3],[30,5],[13,5],[4,3],[3,3],[5,10],[71,154],[0,6],[-2,8],[-9,2],[-63,9],[-18,12],[-18,19],[-13,17],[-2,4],[-49,109],[0,13],[4,11],[11,9],[53,31],[11,2],[34,-9],[39,-20],[30,-7],[42,5],[14,7],[41,42],[43,-10],[12,-3],[128,-30],[13,-4],[5,-1],[1,7],[6,67],[2,24],[0,2],[44,126],[4,11],[7,21],[41,59],[1,2],[17,11],[12,-1],[8,-7],[1,-3],[5,-12],[-1,-10],[0,-10],[-2,-3],[-18,-29],[-4,-18],[-8,-34],[-1,-5],[0,-6],[1,-9],[7,-15],[17,-21],[1,0],[53,-58],[16,-16],[7,-4],[72,-12],[13,6],[6,9],[85,127],[1,20],[1,4],[-16,31],[-17,21],[-3,4],[-29,86],[-7,19],[1,24],[15,57],[4,16],[6,11],[13,10],[9,1],[97,29],[33,74],[28,61],[8,9],[8,-2],[13,-8],[25,-57],[1,-2],[7,-10],[2,-1],[7,-3],[17,4],[29,21],[53,56],[27,33],[12,39],[9,54],[25,64],[5,101],[12,49],[26,30],[26,23],[82,5],[30,-5],[19,0],[0,1],[17,41],[43,111],[8,1],[29,65],[6,13],[4,8],[17,8],[24,-3],[32,-12],[11,-21],[3,-5],[25,-34],[54,-72],[28,-10],[9,-3],[23,6],[6,8],[9,47],[1,19],[-3,9],[-22,74],[-1,4],[-25,276],[3,8],[1,0],[0,1],[37,46],[14,9],[1,0],[6,0],[8,0],[9,-6],[5,-3],[10,-8],[47,-38],[9,-7],[42,-33],[12,-6],[39,-18],[17,-8],[18,-11],[1,0],[43,-48],[8,-8],[10,-2],[23,-2],[14,4],[6,4],[2,1],[120,108],[12,16],[0,1],[9,20],[3,3],[13,15],[2,2],[5,1],[9,3],[18,2],[8,8],[11,10],[8,15],[6,15],[-1,14],[-33,74],[-2,12],[0,1],[-1,22],[6,13],[4,7],[12,18],[42,37],[25,13],[6,0],[3,0],[8,-8],[49,-53],[27,-46],[35,-44],[23,-23],[15,0],[1,1],[4,3],[98,73],[4,3],[10,68],[1,3],[-42,119],[-15,35],[-8,10],[-18,9],[-13,3],[-13,-3],[-16,-12],[-18,-18],[-9,2],[-12,14],[-19,32],[-21,57],[-16,26],[-12,23],[-32,37],[-8,9],[-13,16],[-2,14],[12,148],[5,8],[2,4],[18,7],[17,8],[11,-1],[143,-71],[-48,139],[-1,2],[-5,18],[-2,11],[-29,141],[-3,18],[0,34],[11,49],[13,56],[4,18],[13,25],[10,14],[74,104],[3,5],[11,22],[-6,21],[-17,30],[-5,9],[8,0],[16,0],[11,0],[39,1],[18,3],[17,10],[1,1],[4,6],[0,4],[0,2],[0,13],[-15,52],[0,50],[3,10],[5,18],[150,156],[13,7],[16,-4],[14,-3],[10,14],[0,13],[-17,32],[-4,9],[-4,12],[2,8],[2,2],[20,26],[8,11],[15,7],[27,3],[15,1],[4,7],[-1,10],[-1,15],[-9,10],[-7,9],[-1,1],[-26,20],[-53,32],[-9,9],[-1,1],[1,21],[15,21],[3,5],[4,6],[1,1],[1,5],[2,6],[-3,29],[-30,36],[-15,12],[-40,13],[-9,13],[-4,5],[-17,16],[-2,23],[1068,438],[784,322],[213,87],[543,209],[1100,424],[687,264]],[[39046,87603],[-114,-90],[-10,-9],[-28,-26],[-28,-25],[-10,-20],[-2,-19],[-3,-22],[6,-32],[2,-13],[66,-89],[68,-68],[20,-4],[37,14],[35,21],[97,57],[5,0],[46,-5],[12,-20],[3,-27],[2,-12],[0,-30],[-2,-13],[-18,-116],[8,-48],[21,-30],[52,-27],[89,-63],[38,-27],[15,-24],[8,-35],[12,-48],[17,-28],[17,-34],[4,-35],[-4,-46],[3,-44],[3,-34],[1,-4],[7,-37],[12,-39],[26,-65],[7,-34],[-13,-44],[-11,-45],[-1,-52],[-1,-36],[-7,-55],[-3,-34],[2,-33],[5,-48],[19,-76],[6,-26],[4,-26],[16,-119],[-1,-49],[-19,-35],[-5,-9],[-5,-8],[-5,-4],[-23,-22],[-3,-2],[-62,-14],[-20,-5],[-16,-7],[-3,-1],[-22,-10],[-133,-115],[-11,-10],[-50,-46],[-2,-1],[-8,-10],[-16,-20],[-69,-83],[-13,-16],[-130,-117],[-5,-5],[-15,-16],[-35,-62],[-34,-75],[-6,-19],[-20,-66],[-4,-16],[-1,-5],[-4,-51],[-2,-24],[2,-7],[2,-15],[5,-9],[17,-38],[12,-19],[5,-8],[58,-98],[56,-79],[20,-16],[25,-20],[9,-8],[19,-1],[36,-1],[29,5],[78,13],[80,32],[4,2],[64,41],[18,5],[9,-2],[13,-2],[19,-4],[8,-5],[19,-12],[18,-13],[28,-31],[6,-11],[33,-60],[13,-41],[3,-44],[0,-8],[-17,-223],[5,-150],[4,-112],[-4,-63],[-7,-131],[1,-8],[2,-27],[29,-89],[1,-32],[1,-40],[7,-252],[-20,-137],[-2,-20],[-6,-72],[9,-36],[17,-29],[37,-37],[21,-34],[17,-29],[27,-60],[7,-49],[2,-7],[5,-21],[29,-112],[31,-129],[-1,-8],[19,-52],[16,-43],[4,-11],[6,-9],[28,-43],[1,-1],[67,-47],[35,-16],[81,-36],[35,-24],[37,-37],[20,-33],[35,-57],[53,-86],[7,-12],[62,-79],[22,-27],[43,-72],[10,-25],[19,-45],[3,-9],[0,-6],[-2,-32],[-1,-16],[-18,-43],[-8,-21],[-1,-11],[-8,-60],[3,-156],[0,-41],[-8,-139],[-9,-161],[8,-112],[1,-13],[5,-14],[-2,-73],[-1,-63],[-1,-4],[-4,-34],[-8,-27],[-21,-70],[-16,-102],[-5,-38],[-22,-146],[-12,-66],[-9,-19],[-1,-1],[-3,-15],[-13,-63],[-54,-122],[-5,-4],[-3,-3],[-1,-7],[-2,-12],[-7,-39],[4,-43],[85,-183]],[[40207,79752],[15,-50],[22,-57],[20,-49],[6,-31],[-1,-64],[-22,-124],[-25,-59],[-53,-93],[-11,-58],[-1,-8],[0,-21],[0,-10],[-1,-58],[10,-99],[5,-58],[-5,-42],[-18,-35],[-12,-96],[33,-121],[1,-47],[-8,-63],[-13,-19],[-35,-36],[-5,-63],[0,-1],[6,-22],[8,-31],[27,-58],[3,-7],[3,-14],[6,-25],[5,-19],[20,-167],[-2,-79],[-1,-31],[6,-41],[1,-10],[39,-274],[10,-50],[-9,-71],[0,-4],[-1,-3],[-34,-175]],[[40196,77309],[-90,34],[-5,-2],[-16,-19],[-6,-12],[-8,-34],[-12,-18],[-18,-10],[-40,-7],[-1,0],[-8,3],[-6,6],[-16,25],[-1,3],[-26,81],[-12,22],[-10,6],[-2,0],[-34,2],[-20,-5],[-7,-1],[-44,-17],[-20,-13],[-10,-5],[-2,-3],[-5,-5],[-8,-25],[0,-1],[1,-115],[-3,-24],[-11,-35],[-12,-29],[-2,-4],[-6,-5],[-9,0],[-20,15],[-1,1],[-4,4],[-7,9],[-21,30],[-9,13],[-9,9],[-18,9],[-1,0],[-1,0],[-8,0],[-8,-3],[-27,-15],[-44,-34],[-36,-32],[-9,-9],[-17,-18],[-8,-6],[-14,1],[-1,0],[-1,1],[-9,5],[-8,10],[-1,2],[-29,46],[-22,34],[-133,126],[-11,4],[-8,-5],[-51,-59],[-2,-2],[-36,-47],[-10,-11],[-17,-5],[-17,-2],[-25,-2],[-51,-2],[-28,-7],[-2,-1],[-36,-14],[-10,0],[-13,4],[-19,18],[-103,-111],[-47,-57],[-67,-79],[-107,-127],[-166,-181],[-113,-143],[-271,-335],[-41,-53],[-136,-181],[-121,-150],[-28,27],[-103,100],[-81,91],[0,1],[-2,2],[-4,7],[-3,20],[-2,17],[-17,115],[0,1],[0,19],[24,30],[41,21],[42,23],[16,11],[1,20],[-5,20],[0,1],[-1,1],[-9,17],[-16,11],[-17,4],[-75,-7],[-25,-8],[-4,0],[-15,0],[-22,6],[-29,18],[-9,12],[-3,8],[1,9],[0,2],[35,60],[35,43],[24,41],[9,25],[2,17],[1,3],[0,3],[-2,50],[-9,134],[0,5],[0,1],[-5,25],[-11,13],[-24,14],[-2,1],[-27,11],[-19,13],[-26,24],[-1,1],[-109,107],[-17,24],[-1,2],[-5,18],[-12,21],[-19,24],[-120,114],[-48,41],[-3,2],[-15,10],[-7,2],[-5,9],[-52,77],[-19,22],[-8,5],[-57,12],[-3,0],[-117,54],[-2,1],[-1,0],[-12,7],[-11,13],[-3,5],[-10,17],[-14,23],[-14,38],[0,2],[0,6],[-21,59],[-36,70],[-99,148],[-1,1],[-83,115],[-1,1],[-15,15],[-20,20],[-12,11],[-45,-46],[-1,-1],[-8,0],[-131,36],[0,2],[-71,132],[0,1],[0,2],[-3,12],[-8,52],[-2,17],[-3,23],[0,37],[0,6],[6,37],[3,21],[-1,7],[-6,6],[-6,1],[-9,3],[-23,-1],[-20,-1],[-157,-6],[-15,18],[-45,52],[0,1],[-10,7],[-29,5],[-7,1],[-42,-12],[-29,1],[-65,4],[-7,2],[-7,7],[-7,17],[0,2],[-12,52],[-3,16],[-6,24],[-3,13],[-12,30],[-20,28]],[[35612,78539],[-8,12],[-8,4],[-16,-3],[-11,-9],[-9,-12],[-2,-2],[-26,-17],[-9,1],[-11,6],[-3,6],[-10,15],[-54,82],[-51,96],[-6,14],[-72,34],[-6,3],[-10,5],[-7,9],[0,1],[-2,2],[-4,16],[-3,14],[-4,14],[-11,114],[-167,67],[-2,1],[-9,4],[-76,78],[-28,29],[-2,-1],[-73,-29],[-10,-5],[-16,5],[-15,18],[-7,14],[-3,12],[0,21],[1,0],[12,27],[3,6],[6,8],[18,22],[21,26],[3,12],[0,20],[0,2],[0,3],[-4,10],[-13,14],[-4,2],[-12,3],[-50,-9],[-16,-2],[-19,-7],[-17,-13],[-10,-8],[-43,-48],[-15,-15],[-53,-49],[-27,-14],[-17,-4],[-13,10],[-3,10],[-5,39],[0,2],[-6,15],[-11,15],[-1,0],[-4,4],[-11,9],[-143,107],[-2,1],[-17,-5],[-6,-3],[-9,-4],[-9,-5],[-219,-114],[-1,-1],[-31,-37],[-13,-38],[-5,-10],[-10,-17],[-5,-5],[-4,-5],[-11,-4],[-2,1],[-24,13],[-16,9],[-19,17],[-13,16],[-6,13],[0,1],[-1,25],[-8,11],[-42,36],[-10,0],[-24,0],[-51,13],[-6,5],[-21,29],[-2,3],[-64,44],[-5,4],[-119,16],[-1,-1],[-8,-5],[-2,-1],[-10,-2],[-13,8],[-63,55],[-12,19],[-9,21],[-2,15],[-1,47],[0,4],[-7,25],[-14,19],[-7,7],[-54,58],[-7,7],[-16,5],[-1,-1],[-2,0],[-16,-2],[-4,-6],[-3,-4],[-5,-7],[-33,-67],[-47,-3],[-5,1],[-117,6],[-1,0],[-22,7],[-7,13],[-31,54],[-5,5],[-115,33],[-86,25],[-59,13],[-69,-21],[-24,-1],[-1,1],[-1,0],[-9,4],[-16,16],[-12,11],[-10,10],[-32,45],[-11,13],[0,1],[-38,23],[-31,6],[-8,2],[-148,18],[-2,0],[-19,-4],[-8,-6],[-12,-10],[-17,-8],[-8,1],[-35,17],[-10,13],[-10,14],[-3,4],[-8,16],[-1,2],[-2,4],[-7,34],[0,5],[1,2],[0,20],[3,12],[4,21],[2,18],[-3,16],[-7,8],[-14,7],[-4,3],[-4,2],[-18,-11],[-129,-78],[-9,1],[-15,7],[-9,6],[-1,1],[-7,6],[-22,26],[-22,27],[-17,21],[-13,28],[-4,14],[-8,56],[-1,3],[-31,91],[-14,29],[-1,1],[-10,12],[-23,8],[-4,2],[-11,4],[-16,2],[-4,0],[-27,-1],[-1,0],[-89,56],[0,1],[-64,61],[-4,3],[-89,8],[-72,5],[-2,1],[-22,5],[-6,6],[-2,3],[-8,23],[1,24],[0,6],[2,5],[8,28],[2,5],[5,9],[0,18],[0,1],[-1,1],[-4,10],[-13,15],[-7,8],[-10,11],[-37,48],[-2,3],[-7,8],[-5,1],[-39,-47],[-9,-22],[0,-1],[-4,-9],[-3,-15],[0,-7],[0,-8],[0,-23],[-3,-12],[-1,-4],[-5,-8],[-9,-10],[-27,-15],[-3,-1],[-17,-5],[-23,0],[-14,0],[-33,-2],[-38,-8]],[[51558,78843],[-93,5],[-12,1],[-24,2],[-26,2],[-28,2],[-25,2],[-25,1],[-125,5],[-66,4],[-77,4],[-37,2],[-23,-3],[-166,9],[-60,3],[-3,1],[-67,3],[-68,4],[-136,8],[-167,3],[-166,5],[-92,5],[-42,3],[-110,14],[-61,10],[-102,9],[-145,-1],[-75,7],[-173,8],[-28,8],[-176,11],[-149,9],[-60,3],[-47,6],[-6,1],[-205,32],[-108,18],[-233,31],[-263,35],[-331,47],[-96,5],[-131,5],[-238,29],[-32,2],[-51,5],[-235,19],[-54,4],[-113,9],[-299,24],[-100,4],[-306,27],[-36,3],[-105,9],[-58,6],[-38,3],[-37,3],[-6,1],[-20,2],[-230,20],[-125,12],[-4,0],[-28,3],[-109,9],[-206,19],[-70,6],[-113,9],[-67,6],[-82,8],[-165,13],[-135,12],[-214,19],[-130,11],[-160,14],[-61,9],[-98,8],[-260,18],[-282,19],[-519,31],[-227,19],[-302,21],[-329,22],[-183,12],[-22,2],[-330,22],[-148,17],[-109,9],[-5,0],[-271,20],[-64,5],[-271,20],[-101,6],[-7,10],[-15,6],[-86,11],[-32,-1],[-25,-13],[-11,-4]],[[21647,76983],[-142,-142],[-63,-61],[-41,-40],[-133,-129],[-181,-176],[-137,-134],[-77,-76],[-36,-35],[-109,-110],[-42,-42],[-89,-88],[-12,-12],[-21,-22],[-77,-76],[-75,-75],[-17,-17],[-53,-51],[-40,-40],[-82,-79],[-22,-22],[-1,0],[-46,-46],[-21,-20],[-15,-15],[-30,-28],[-27,-27],[-27,-26],[-38,-37],[-23,-23],[-124,-121],[-46,-45],[-325,-317],[-78,-77],[-55,-53],[-28,-27],[-34,-34],[-65,-63],[-289,-280],[-4,-4],[-88,-85],[-137,-135],[-11,-10],[-28,-28],[-35,-33],[-2,-3],[-11,-10],[-133,-130],[-4,-4],[-14,-14],[-41,-40],[-128,-125],[-48,-47],[-96,-93],[-20,-19],[-19,-19],[-23,-22],[-22,-20],[-19,-19],[-18,-17],[-39,-37],[-91,-90],[-83,-84],[-31,-30],[-135,-125],[-61,-60],[-40,-39],[-188,-184],[-3,-3],[-136,-133],[-38,-37],[-205,-200],[-185,-178],[-3,-3],[-62,-60],[-32,-31],[-141,-139],[-97,-94],[-106,-102],[-48,-47],[-132,-127],[-25,-24],[-4,-5],[-6,-6],[-24,-23],[-50,-48],[-24,-23],[-71,-68],[-40,-40],[-77,-74],[-154,-148],[-60,-59],[-123,-120],[-103,-100],[-122,-118],[-1,-2],[-27,-25],[-80,-78],[-161,-159],[-30,-29],[-206,-201],[-59,-58],[-53,-51],[-174,-166],[-29,-28],[-53,-51],[-4,-4],[-67,-64],[-99,-95],[-88,-88],[-60,-60],[-107,-102],[-35,-34],[-100,-96],[-54,-51],[-60,-60],[-98,-99],[-41,-42],[-90,-90],[-71,-72],[-68,-68],[-95,-91],[-133,-126],[-142,-135],[-204,-196],[-13,-13],[-23,-26]],[[12761,68321],[-12,27],[1,2],[0,6],[-9,24],[-13,32],[5,43],[0,2],[11,40],[15,49],[26,63],[5,39],[-4,20],[-28,65],[-55,89],[-4,21],[1,44],[0,15],[3,32],[13,53],[7,88],[2,26],[4,45],[-3,70],[-5,69],[-34,125],[13,118],[2,15],[-2,44],[-3,60],[-8,63],[-1,5],[-12,84],[-11,76],[-49,95],[-1,2],[-21,99],[3,79],[-6,33],[-30,77],[-21,39],[-24,48],[-1,5],[-9,44],[-20,32],[-35,30],[-10,1],[-2,1],[-9,11],[-59,76],[-7,0],[-28,2],[-9,6],[-71,56],[-19,18],[-13,11],[-53,69],[-49,56],[-16,59],[-34,37],[-121,208],[-3,5],[-1,6],[-7,39],[-19,60],[-5,16],[-6,33],[4,29],[0,2],[-10,53],[-60,130],[-31,61],[-14,30],[-20,44],[-6,29],[-21,186],[-10,75],[-3,21],[-19,74],[-18,74],[-40,158],[0,87],[-37,98],[-66,131],[-8,13],[-4,7],[-31,51],[-66,53],[-31,25],[-4,3],[-1,2],[-61,83],[-10,15],[-25,15],[-29,18],[-11,8],[-25,18],[-47,53],[-27,32],[-4,6],[-40,65],[-2,2],[-13,8],[-41,7],[-2,-1],[-63,-59],[-77,-50],[-173,29],[-19,12],[-98,160],[-8,152],[-24,100],[-18,43],[33,292],[2,100],[-6,32],[-17,51],[-164,269],[-11,12],[-41,94],[53,437],[-18,389],[-38,66],[-44,39],[-39,23],[-44,71],[7,174],[13,109],[-55,93],[-11,46],[9,74],[19,80],[-12,38],[-43,79],[1,8],[1,71],[20,28],[6,51],[-25,40],[-37,18],[-89,36],[-44,11],[-17,-1],[-65,110],[-43,48],[-45,27],[-49,80],[-39,114],[0,60],[-9,61],[-7,21],[-68,111],[0,4],[-11,18],[-56,14],[-67,43],[-1,5],[-20,12],[-24,17],[-24,21],[-20,20],[-20,18],[-53,34],[-22,3],[-23,-7],[-30,-8],[-27,-4],[-25,-9],[-3,0],[-9,1],[-8,12],[-6,10],[-22,4],[-57,-18],[-102,-50],[-102,-56],[-32,15],[-30,49],[1,8],[-42,62],[-146,53],[-47,8],[-99,-43],[-43,-40],[-1,-8],[-98,-126],[-43,-41],[-21,-8],[-13,-2],[-63,15],[-17,15],[-55,61],[-41,62],[-45,8],[-54,65],[-69,12],[-40,-9],[-78,-63],[-10,-6],[-52,-27],[-53,-11],[-47,8],[-46,-32],[-75,-31]],[[73367,78490],[-32,35],[-15,40],[-32,-17],[-17,-20],[-8,39],[-23,17],[-22,0],[-25,-18],[-26,-23],[-3,-3],[-22,-16],[-21,17],[-24,-2],[-19,-20],[-15,-39],[-35,-12],[-11,-38],[-5,-32],[-6,-45],[-2,-15],[-2,-23],[-5,-31],[-17,-27],[-30,-4],[-28,0],[-24,0],[-30,-19],[-5,-31],[-3,-6],[-11,-17],[-32,-7],[-24,-26],[-23,-17],[-23,-8],[-20,6],[-28,9],[-3,-34],[-5,-40],[5,-30],[-14,-33],[-1,-35],[-12,-30],[-16,-26],[-10,-36],[2,-43],[18,-26],[1,-38],[-19,-37],[-26,-3],[-23,-20],[-29,-4],[-24,-28],[-23,-19],[-32,-30],[-20,-27],[-11,-35],[-23,-16],[-19,-31],[12,-50],[18,-30],[-8,-33],[-8,-38],[-41,-26],[-27,-33],[-23,-18],[-21,-20],[-30,-3],[-24,-17],[-29,-33],[-39,-14],[-29,5],[-19,-16],[-26,15],[-34,-4],[-25,-24],[-24,-22],[-37,-10],[-27,18],[-23,4],[-20,-9],[-41,-14],[-24,6],[-24,36],[-18,17],[-39,47],[-29,11],[-21,2],[-21,29],[-22,11],[-21,15],[-33,3],[-36,-7],[-59,6],[-20,20],[-22,9],[-44,-8],[-52,-33],[-44,-35],[-30,-10],[-21,-2],[-42,-13],[-37,-25],[-56,-16],[-34,-19],[-21,-22],[-30,-40],[-32,-9],[-48,3],[-24,-8],[-32,1],[-27,31],[-28,24],[-24,-14],[-20,-33],[-31,-9],[-77,3],[-11,-36],[-22,-5],[-23,-4],[-21,7],[-49,0],[-41,9],[-37,22],[-15,42],[-18,21],[-25,12],[-13,42],[-6,33],[-22,21],[-21,23],[-7,44],[1,57],[-28,23],[-40,1],[-38,21],[-35,24],[-30,34],[-34,24],[-38,0],[-24,-10],[-46,-29],[-48,-8],[-23,-3],[-49,-16],[-26,-22],[-16,-22],[-23,-37],[-26,-12],[-62,2],[-42,5],[-35,-10],[-30,-23],[-25,-21],[-22,0],[-26,0],[-20,-16],[-16,-33],[-25,-40],[-29,-45],[-39,-26],[-65,-10],[-35,-12],[-67,-44],[-39,-19],[-10,-5],[-12,-7],[-62,-9],[-28,5],[-36,17],[-33,27],[-16,25],[-17,21],[-42,31],[-28,25],[-19,25],[-37,12],[-55,-13],[-56,13],[-21,-16],[-23,-23],[-53,-32],[-45,-38],[-42,-61],[-34,-21],[-52,-12],[-43,-37],[-28,-26],[-290,-239],[-141,-110],[-26,-22],[-72,-63],[-96,-83],[-97,-84],[-332,-250],[-38,-30],[-103,-78],[-73,-54],[-27,-16],[-166,-129],[-112,-88],[-111,-87],[-70,-54],[-9,-6],[-18,-15],[-19,-14],[-100,-78],[-14,-11],[-128,-100],[-28,-22],[-24,-18],[-31,-24],[-4,-4],[-42,-32],[-129,-101],[-197,-154],[-7,-5],[-409,-318],[-107,-84],[-57,-44],[-104,-81],[-198,-155],[-107,-83],[-133,-104],[-247,-192],[-20,-23],[-36,-27],[-83,-64],[-179,-141],[-155,-122],[-22,-17],[-21,-17],[-150,-121],[-52,-42],[-121,-98]],[[63819,73276],[-20,47],[32,83],[6,17],[8,21],[13,33],[3,8],[2,4],[44,111],[5,26],[1,21],[-18,71],[-26,41],[-6,7],[12,73],[5,29],[1,9],[0,1],[3,60],[4,81],[0,23],[-12,66],[-1,6],[-33,43],[-26,35],[0,-1],[-13,-45],[-3,-8],[-27,-28],[-8,-3],[-10,0],[-100,70],[-7,11],[-1,3],[-1,1],[-10,19],[-7,25],[-9,46],[0,2],[-13,33],[-29,37],[-4,5],[-27,94],[-14,50],[-4,9],[-6,15],[-5,15],[6,49],[-1,2],[-11,63],[3,7],[0,12],[-4,8],[-18,4],[-2,1],[-32,4],[-24,10],[0,1],[-27,17],[-11,15],[-12,15],[-5,10],[-1,2],[-17,49],[-8,50],[1,43],[-1,10],[-3,51],[-7,114],[-2,2],[-50,38],[-6,-14],[-2,-1],[-13,-9],[-11,1],[-2,2],[0,1],[-1,1],[-46,66],[-3,13],[-11,49],[-4,17],[-1,3],[-5,11],[-6,20],[-11,-10],[-3,-5],[0,-1],[-7,-17],[6,-17],[1,-4],[0,-1],[7,-96],[-28,-18],[-23,81],[-10,34],[-15,38],[-7,18],[0,1],[-6,54],[0,2],[-1,18],[-1,15],[-7,24],[-1,0],[-9,45],[-1,5],[-4,24],[-13,78],[-4,30],[-2,11],[-7,45],[-4,16],[1,13],[0,3],[0,3],[12,108],[1,9],[6,21],[9,-5],[21,7],[10,6],[8,24],[4,25],[0,30],[-4,8],[-4,2],[-42,16],[-19,-2],[-1,0],[-1,0],[-16,86],[35,38],[-1,87],[-31,101],[-9,35],[-17,68],[9,143],[1,9],[11,65],[0,4],[3,65],[0,10],[-9,9],[-6,1],[-2,0],[-44,-8],[-10,5],[-5,10],[0,13],[13,37],[3,3],[1,1],[61,165],[0,3],[1,4],[-23,49],[-4,10],[-27,72],[-3,11],[6,17],[0,1],[12,12],[7,7],[42,61],[1,8],[-1,14],[-6,6],[-1,0],[-15,4],[-12,12],[-1,1],[-5,13],[-8,165],[0,1],[-2,61],[6,71],[2,24],[3,27],[-6,-1],[-20,-1],[-7,0],[-15,11],[-65,72],[3,51],[3,13],[9,16],[10,18],[9,9],[10,9],[19,12],[5,11],[5,29],[0,11],[-2,9],[-1,0],[-2,3],[-47,56],[-16,14],[-157,102],[-7,5],[-7,4],[-9,2],[-1,-6],[-1,-3],[-11,-82],[-1,0],[-81,120],[-26,38],[-6,7],[-44,45],[-45,40],[-13,51],[-9,37],[-16,60],[0,1],[0,8],[-5,82],[-1,85],[-3,11],[0,1],[-1,2],[-39,77],[-39,77],[-3,2],[-59,45],[-26,19],[-20,15],[-8,18],[-15,31],[-6,13],[-5,28],[-1,37],[-21,64],[-3,8],[0,1],[-6,8],[-8,0],[-7,-2],[-2,-10],[-14,-16],[-7,-3],[-10,1],[-26,14],[-15,19],[-11,13],[0,2],[-8,18],[-3,12],[-1,1],[0,1],[-26,165],[-11,99],[-6,37],[-1,3],[-3,15],[-6,15],[-7,10],[-14,15],[-2,2],[-16,26],[-3,6],[-15,36],[-1,3],[-2,7],[0,3],[0,18],[17,56],[6,0],[0,-1],[6,-6],[11,-21],[1,-2],[20,-33],[2,-2],[28,-41],[5,-7],[15,-12],[1,0],[12,2],[7,4],[0,2],[-3,21],[-18,82],[-5,16],[-1,3],[-1,0],[-9,15],[-11,13],[-22,24],[-13,15],[-11,37],[-4,62],[0,9],[0,8],[0,4],[0,27],[2,23],[1,6],[0,23],[0,1],[-1,0],[-3,19],[-7,16],[-21,26],[-8,3],[-8,-1],[-14,-3],[-4,-2],[-11,-5],[-27,58],[-24,143],[1,13],[7,61],[0,1],[8,16],[8,6],[33,30],[3,8],[0,20],[-1,3],[0,1],[-1,2],[-12,12],[-25,11],[-21,10],[-3,8],[-16,118],[-2,18],[-2,35],[-4,16],[-1,2],[-4,10],[-2,3],[-9,17],[-16,28],[-4,14],[-24,72],[-59,69],[-5,0],[-96,9],[-49,5],[-6,0],[-19,35],[-5,10],[-1,2],[-2,9],[-2,20],[0,3],[4,50],[0,28],[-9,28],[-10,13],[-2,1],[-22,15],[-90,59],[-12,3],[-17,82],[12,45],[-3,2],[-63,68]],[[58084,87477],[772,-17],[2286,-49],[1128,-25],[886,-19],[2330,-58],[273,-7],[235,-6],[192,-4],[671,-17],[925,-29],[1150,-37],[868,-27],[680,-22],[781,-24],[33,0]],[[71294,87136],[-35,-38],[-5,-5],[-19,-23],[-12,-13],[-8,-20],[-3,-6],[-9,-23],[-9,-42],[-3,-69],[-1,-18],[-2,-29],[2,-12],[6,-33],[7,-47],[10,-76],[6,-51],[2,-23],[3,-45],[3,-50],[6,-48],[8,-59],[2,-17],[22,-76],[10,-37],[4,-29],[7,-49],[9,-63],[7,-49],[1,-6],[2,-11],[7,-34],[12,-57],[20,-56],[19,-49],[5,-10],[16,-29],[5,-6],[17,-21],[39,-36],[56,-40],[60,-45],[32,-32],[40,-48],[34,-51],[28,-43],[16,-21],[8,-6],[40,-30],[41,-34],[33,-27],[6,-5],[6,-9],[17,-22],[32,-42],[15,-23],[34,-38],[19,-25],[20,-27],[18,-23],[21,-29],[16,-24],[2,-3],[15,-24],[1,-3],[5,-11],[2,-6],[6,-13],[10,-26],[2,-6],[10,-41],[10,-31],[11,-32],[18,-45],[14,-42],[16,-47],[9,-37],[2,-5],[2,-10],[5,-26],[10,-51],[8,-23],[1,-5],[6,-18],[31,-62],[26,-54],[4,-6],[14,-24],[6,-18],[4,-16],[21,-36],[16,-22],[7,-10],[11,-28],[10,-37],[5,-28],[8,-47],[7,-36],[3,-15],[5,-21],[8,-34],[27,-87],[0,-2],[7,-29],[12,-34],[5,-21],[10,-46],[1,-3],[0,-4],[3,-46],[0,-10],[0,-8],[2,-72],[1,-45],[1,-2],[6,-41],[9,-36],[21,-56],[22,-46],[11,-22],[32,-62],[33,-64],[12,-20],[5,-9],[9,-15],[27,-47],[34,-61],[39,-81],[18,-41],[20,-38],[24,-40],[21,-36],[13,-18],[20,-29],[13,-17],[6,-7],[45,-46],[3,-4],[5,-3],[30,-20],[10,-6],[7,-2],[62,-13],[10,-2],[12,0],[46,0],[66,-18],[20,-20],[22,-38],[9,-16],[16,-28],[3,-13],[1,-4],[104,-214],[9,-16],[9,-15],[3,-5],[3,-3],[22,-21],[1,-1],[1,-1],[55,-15],[10,2],[25,9],[2,1],[104,58],[9,6],[5,0],[38,-2],[25,-1],[31,-31],[19,-19],[30,-30],[29,-50],[12,-35],[4,-13],[7,-13],[16,-30],[5,-11],[13,-12],[16,-14],[6,-5],[8,-4],[43,-22],[16,-8],[9,-2],[94,-18],[27,-5],[38,-7],[4,-8],[5,-10],[8,-17],[0,-7],[0,-5],[-1,-24],[-7,-8],[-40,-50],[-64,-62],[-13,-22],[-6,-42],[3,-25],[8,-16],[21,-44],[1,-2],[5,-3],[83,-44],[60,-57],[59,-68],[21,-36],[1,-13],[-1,-12],[-1,-9],[-2,-14],[-6,-10],[-7,-11],[-17,-72],[2,-24],[5,-52],[1,-10],[91,-135],[48,-54],[73,-56],[14,-7],[18,-10],[9,-15],[9,-16],[4,-7],[5,-17],[0,-3],[2,-6],[-5,-31],[-18,-36],[-43,-54],[-10,-12],[-21,-26],[-2,2],[-42,47],[-41,-22],[-41,-6],[-96,34],[-88,32],[-42,20],[-49,26],[-37,-19],[-38,-19],[7,-47],[5,-38],[-19,-45],[-28,-64],[-16,-37],[-20,-67],[-1,-4],[-3,-12],[-2,-11],[-10,-55],[-2,-11],[0,-43],[0,-14],[0,-35],[3,-18],[9,-55],[0,-2],[4,-115],[1,-13],[-34,-242],[-2,-19],[-22,-63],[-10,-18],[-4,-7],[-4,-7],[-53,-62],[-17,-19],[-6,-10],[-44,-69],[-8,-13],[-1,-9],[-20,-119],[-3,-19],[-2,-42],[-6,-84],[-9,-41],[-34,-150],[-4,-24],[-12,-68],[-18,-156],[-9,-42],[-4,-5],[-6,-7],[-2,-10],[-2,-7],[-51,-85],[0,-1],[-1,-2],[-16,-42],[-13,-33],[-1,-7],[-7,-66],[-1,-9],[7,-109],[2,-37],[-7,-51],[-4,-9],[-22,-47]],[[81277,81295],[-28,-75],[-36,-96],[-51,-134],[-104,-273],[-1,-2],[-34,-90],[-46,-123],[-61,-162],[-46,-122],[-52,-138],[-73,-193],[-37,-97],[-55,-146],[-15,-40],[-20,-55],[-49,-128],[-62,-166],[-94,-248],[-33,-89],[-24,-63],[-11,-32],[-13,-36],[-38,-97],[-3,-7],[-49,-125],[-31,-82],[-101,-265],[-4,-11],[-30,-80],[-32,-84],[-54,-143],[-113,-297],[-35,-105],[-141,-376],[0,-1],[-64,-171],[-94,-251],[-7,-17],[-210,-560],[-38,-101],[-157,-420],[-28,-74],[-48,-127],[-61,-162],[-173,-463],[-30,-80],[-70,-186],[-5,-13],[-4,-12],[-66,-176],[-7,-17],[-161,-433],[-6,-14],[-28,-74],[-77,-206],[-126,-335],[-44,-118],[-43,-115],[-64,-172],[-331,-882],[-120,-315],[-11,-31],[-42,-115],[-79,-213],[-12,-33],[-10,-27],[-26,-72]],[[77459,71129],[-11,20],[-33,12],[-69,26],[-21,2],[-57,7],[-1,0],[-59,45],[-6,5],[-45,21],[-94,43],[-22,10],[-79,13],[-9,19]],[[76953,71352],[16,76],[-1,4],[-6,17],[-13,45],[-2,6],[-43,6],[-5,1],[-21,12],[-3,3],[-10,8],[-4,5],[-6,10],[-7,13],[-2,12],[5,35],[11,29],[4,9],[12,25],[7,14],[4,5],[15,18],[15,37],[4,51],[-10,44],[-7,33],[-7,28],[-18,32],[-7,7],[-30,29],[-33,22],[-56,37],[-21,21],[-16,15],[-20,25],[-55,67],[-41,73],[-26,70],[-5,20],[-36,144],[-18,71],[-10,39],[-4,7],[-12,22],[-67,113],[-69,179],[-2,3],[-138,0],[0,46],[-3,34],[-4,40],[5,31],[5,29],[2,14],[9,18],[33,25],[6,1],[31,6],[13,2],[2,-3],[43,-60],[2,-3],[86,11],[6,0],[7,12],[10,40],[5,20],[1,2],[61,86],[42,58],[17,24],[16,41],[22,91],[-3,45],[-11,38],[-4,8],[-30,51],[0,1],[-45,45],[-48,27],[-147,39],[-33,23],[-8,15],[-7,12],[-4,13],[-3,9],[-27,197],[1,15],[1,23],[1,6],[1,2],[19,26],[65,2],[28,18],[15,12],[5,15],[9,58],[14,145],[-3,5],[-15,31],[-3,5],[-18,13],[-5,4],[-57,11],[-94,18],[-39,7],[-8,2],[-14,3],[-3,5],[-12,19],[-6,9],[0,2],[-10,64],[-15,31],[-15,11],[-5,1],[-20,4],[-14,-8],[-1,-1],[-10,-5],[-13,-22],[-3,-22],[-22,-156],[-22,-23],[-7,-3],[-10,3],[-20,7],[-11,3],[-31,46],[-20,29],[-6,5],[-20,16],[-20,5],[-2,0],[-17,-4],[0,-1],[-18,-18],[-5,-5],[0,-2],[-7,-49],[-1,-11],[1,-7],[2,-13],[-6,-67],[-14,-34],[-15,-36],[-16,-24],[-41,-36],[-39,-24],[-3,-1],[-11,-7],[-25,9],[-10,18],[-12,55],[0,24],[3,14],[5,27],[3,12],[26,23],[13,4],[38,13],[23,24],[0,1],[11,12],[3,47],[-10,44],[-11,49],[-3,12],[-3,4],[-13,19],[-18,32],[-40,41],[-18,32],[-7,37],[0,3],[0,1],[1,7],[11,62],[3,16],[16,30],[20,37],[6,12],[15,29],[2,28],[1,15],[-29,46],[-41,13],[-8,-2],[-2,0],[-26,-23],[-22,-19],[-25,-18],[-16,-1],[-19,4],[-24,17],[-52,67],[0,1],[-41,80],[-46,90],[-4,9],[-47,44],[-14,12],[-4,5],[-36,43],[-27,31],[-6,11],[-46,77],[-1,1],[-12,21],[-6,7],[-4,4],[-15,18],[-18,11],[-39,25],[-20,20],[-8,14],[-9,17],[-4,6],[-3,44],[1,6],[29,140],[13,117],[-8,58],[-12,47],[-2,12],[-6,29],[-3,13],[-16,63],[-18,52],[-15,83],[1,89],[0,7],[5,94],[2,23],[0,1],[9,46],[24,27],[12,6],[14,7],[8,4],[6,-1],[115,-21],[24,7],[16,5],[52,15],[3,1],[8,-2],[24,-8],[11,-3],[5,-6],[36,-47],[38,-8],[37,28],[8,14],[8,59],[-8,23],[-20,54],[-6,33],[-11,55],[-3,45],[5,39],[2,11],[8,16],[4,8],[6,12],[36,49],[79,447],[-16,46],[0,1],[-24,41],[-21,16],[-35,24],[-43,13],[-98,1],[-70,-17],[-52,3],[-43,17],[-20,16],[-26,26],[-1,2],[0,1],[-7,12],[-10,18],[-3,3],[-22,28],[-7,8],[-7,8],[-26,18],[-48,13],[-5,2],[-1,1],[-3,5],[-10,17],[-4,17],[3,19],[10,21],[4,7],[9,19],[17,21],[22,27],[10,22],[1,12],[2,27],[2,20],[-6,22],[-4,18],[-5,19],[-14,21],[-10,13],[-8,12],[-59,30],[-38,19],[-21,16],[-2,3],[-47,60],[-15,11],[-7,1],[-14,3],[-1,1],[-15,-13],[-4,-7],[0,-2],[-1,-11],[-3,-38],[4,-8],[1,-1],[1,-37],[-1,-5],[-8,-44],[-3,-16],[-17,-32],[-88,-73],[-4,-4],[-14,-29],[-3,-31],[-2,-23],[-1,-12],[11,-155],[5,-29],[1,-2],[5,-7],[9,-15],[25,-40],[-10,-50],[-30,-30],[-12,-1],[-1,0],[-11,4],[-103,40],[-40,9],[-54,11],[-10,2],[-16,-4],[-7,-2],[-1,-1],[-2,-2],[-18,-17],[-10,-10],[-70,-149],[-21,-60],[-1,-15],[0,-25],[-1,-19],[5,-15],[2,-7],[6,-66],[2,-25],[1,-7],[-13,-14],[-3,-2],[-13,-1],[-3,0],[-3,2],[-10,6],[-8,5],[-6,7],[-21,25],[-1,1],[0,2],[-58,106],[-8,15],[-24,44],[-8,10],[-28,10],[-23,-3],[-15,-11],[-8,-7],[-14,-10],[-7,-35],[-2,-11],[-14,-40],[-7,-20],[-6,-18],[-27,-51],[-1,-1],[-28,-24],[-55,15],[-5,1],[-6,5],[-31,22],[-1,1],[0,1],[-30,55],[-7,14],[-22,131],[-7,45],[-19,52],[-13,22],[-12,21],[-4,7],[0,1],[-14,16],[-19,22],[3,192],[-343,327],[0,1],[4,4],[19,19],[32,49],[2,4],[2,4],[6,14],[7,51],[-3,24],[-1,9],[-2,16],[-35,61],[-12,21],[-8,21],[-13,32],[-4,10],[-4,11],[2,14],[4,52],[23,51],[29,66],[6,9]],[[71294,87136],[46,0],[172,-7],[14,0],[95,-4],[249,-10],[259,-2],[641,-5],[332,-2],[1420,-12],[235,-2],[1054,-8],[522,-4],[30,-1],[224,-4],[98,-120],[1115,-1376],[110,-136],[287,-354],[1357,-1673],[564,-697],[915,-1129],[78,-94],[166,-201]],[[35612,78539],[-18,-36],[-18,-27],[-2,-36],[-9,-51],[-13,-65],[-25,-46],[-2,-37],[-40,-106],[-2,-40],[-2,-40],[-16,-22],[-22,-32],[-19,-28],[-21,-26],[-25,-11],[-26,-8],[-38,-23],[-10,-48],[-8,-29],[-15,-25],[-14,-33],[-27,-52],[-73,-64],[-33,-68],[-20,-41],[-27,-50],[-3,-5],[-85,-169],[-33,-66],[-6,-12],[-58,-115],[-14,-28],[-15,-30],[-249,-497],[-78,-155],[-41,-82],[-29,-58],[-89,-176],[-45,-79],[-35,-4],[-33,-7],[-28,-18],[-23,-21],[-8,-7],[-23,-20],[-29,-26],[-21,-18],[-18,-12],[-10,-6],[-27,-6],[-33,5],[-40,9],[-49,10],[-1,-5],[-10,-33],[-20,-66],[-15,-32],[-24,-25],[-29,-19],[-20,-17],[-19,-31],[-33,-53],[-21,-19],[-32,-40],[-25,-36],[2,-40],[5,-37],[-15,-30],[-29,-64],[-20,-60],[-1,-4],[-18,-33],[-22,-40],[-32,-33],[-28,-34],[-11,-40],[-12,-36],[-24,-17],[-34,-37],[-9,-48],[-22,-34],[16,-37],[3,-40],[7,-35],[-1,-42],[-17,-40],[-18,-20],[-40,-48],[-45,-41],[-50,-53],[0,-39],[-2,-56],[-9,-41],[0,-2],[-15,-40],[-10,-39],[-20,-40],[-15,-29],[-21,-16],[-23,-1],[-27,8],[-21,-14],[-10,-42],[-9,-36],[-13,-37],[-21,-29],[-28,-69],[-22,-28],[-25,-33],[-21,-28],[-18,-23],[-22,-29],[-17,-22],[-20,-24],[-19,-25],[-19,-26],[-18,-32],[-13,-26],[-11,-26],[-13,-25],[-6,-9],[-12,-31],[-11,-36],[-12,-40],[-9,-32],[-21,-73],[-1,-32],[12,-109],[-8,-39],[-8,-16],[-4,-9],[-19,-37],[-17,-19],[-22,-20],[-23,-19],[-7,-6],[-13,-12],[-27,-23],[-50,-43],[-25,-22],[-39,-32],[-30,-20],[-26,-18],[-45,-32],[-19,-18],[-17,-19],[-11,-16],[-7,-10],[-17,-23],[-29,-32],[-20,-21],[-29,-30],[-20,-20],[-18,-17],[-19,-16],[-20,-15],[-22,-16],[-9,-6],[-19,-13],[-28,-18],[-27,-15],[-23,-9],[-24,-6],[-32,-1],[-21,2],[-30,4],[-31,3],[-28,-1],[-31,-9],[-33,-12],[-25,-10],[-37,-13],[-32,-7],[-18,-6],[-2,-1],[-6,-2],[-9,-5],[-13,-7],[-28,-18],[-28,-18],[-3,-2],[-22,-16],[-18,-19],[-19,-28],[-21,-30],[-19,-29],[-4,-6],[-21,-35],[-18,-31],[-9,-14],[-12,-20],[-15,-23],[-4,-5],[-22,-17],[-23,-15],[-22,-14],[-10,-6],[-15,-9],[-20,-13],[0,-3],[-14,-83],[-5,-38],[17,-109],[12,-74],[-43,-17],[-38,-21],[-25,-16],[-19,-27],[-10,-35],[-10,-29],[-25,-4],[-22,-11],[-22,-26],[-23,-29],[-15,-29],[-30,11],[-24,19],[-25,8],[-24,-10],[-27,0],[-21,-38],[-13,-19],[-8,-12],[-17,-29],[-19,-28],[-27,-12],[-23,0],[-23,1],[-24,1],[-29,5],[-36,-10],[-25,-6],[-25,-1],[-33,8],[-12,-39],[-14,-30],[-15,-27],[-23,-46],[-14,-39],[-28,-43],[-31,-33],[-16,-9],[-5,-2],[-27,-6],[-22,-11],[-19,-31],[-18,-35],[-19,-30],[3,-32],[-4,-94],[-24,-91],[-9,-48],[-16,-38],[-8,-36],[-7,-35],[-9,-45],[-10,-49],[-5,-40],[-4,-37],[-7,-66],[-5,-32],[-7,-31],[-6,-35],[-8,-36],[-15,-37],[-13,-32],[-9,-33],[2,-38],[2,-46],[1,-34],[2,-39],[2,-38],[2,-35],[-1,-64],[-14,-34],[-17,-30],[-14,-27],[-18,-31],[-13,-24],[-20,-23],[-13,-24],[-14,-34],[-7,-38],[-5,-56],[-8,-51],[-5,-40],[-6,-33],[-7,-38],[-6,-31],[-8,-36],[-14,-32],[-14,-28],[-18,-37],[-22,-44],[-18,-35],[-3,-4],[-17,-32],[-38,-65],[-49,-86],[-37,-74],[-27,-42],[-10,-30],[-8,-34],[-8,-31],[-14,-65],[-4,-38],[0,-34],[-9,-49],[-7,-52],[-11,-38],[-18,-26],[-24,-19],[-51,-25],[-34,-24],[-40,-37],[-21,-33],[-34,-67],[-16,-30],[-22,-21],[-28,-26],[-31,-47],[-16,-36],[-9,-20],[-11,-54],[-16,-38]],[[29332,68144],[-108,62],[-77,130],[-73,176],[-8,18],[-88,153],[-48,60],[-58,40],[-98,52],[-2,1],[-30,10],[-61,71],[-69,115],[-3,60],[6,46],[-61,101],[-5,5],[-35,32],[-86,59],[-19,6],[-54,20],[-71,13],[-19,-10],[-31,-2],[-41,5],[-2,0],[-6,-1],[-118,-16],[-17,3],[-2,0],[-19,5],[-33,9],[-131,118],[-24,41],[-27,45],[-2,13],[-36,62],[-24,43],[-1,2],[-44,99],[-14,31],[-17,40],[-18,27],[-32,50],[-60,50],[-19,11],[-6,4],[-26,15],[-82,37],[-5,1],[-13,3],[-56,13],[-72,46],[-27,16],[-36,23],[-51,39],[-46,77],[-6,31],[1,68],[-18,29],[-22,38],[-10,12],[-24,28],[-48,56],[-29,21],[-41,30],[-10,6],[-31,11],[-19,7],[-39,45],[-27,46],[-38,58],[-2,2],[-66,81],[-19,24],[-52,69],[-31,41],[-31,42],[-34,46],[-66,85],[-62,62],[-35,20],[-20,1],[-59,5],[-48,4],[-50,13],[-46,43],[-26,24],[-31,29],[-94,51],[-76,27],[-2,0],[-42,8],[-61,-45],[-55,-28],[-21,-1],[-42,-1],[-53,14],[-35,58],[-10,20],[-37,74],[-1,2],[-12,34],[-4,31],[0,51],[7,59],[-20,42],[-22,37],[-4,6],[-77,92],[-59,69],[-38,28],[-63,-5],[-68,12],[-46,76],[-23,18],[-91,67],[-37,7],[-102,18],[-8,-1],[-175,-29],[-15,-6],[-40,38],[-33,32],[10,39],[4,34],[-3,60],[-17,148],[-28,226],[-2,18],[-2,7],[-12,47],[-18,26],[-9,12],[-23,35],[-13,41],[-5,48],[-61,96],[-5,5],[-16,16],[-19,7],[-5,2],[-21,38],[-10,18],[-34,92],[-17,29],[-43,46],[-29,43],[-7,10],[-12,13],[-37,39],[-9,6],[-7,1],[-10,2],[-8,-2],[-10,-3],[-11,-3],[-30,-24],[-10,0],[-15,0],[-7,13],[-16,25],[-1,5],[-3,17],[1,4],[5,21],[26,42],[0,3],[2,14],[1,8],[-2,4],[-15,25],[-7,8],[-17,22],[-25,25],[-17,-3],[-43,-9],[-13,-5],[-43,-26],[-32,-11],[-38,7],[-18,16],[-67,76],[-145,180],[-4,5],[-14,24],[-15,39],[0,2],[-1,1],[0,3],[-2,30],[5,24],[9,40],[0,2],[0,13],[0,13],[-7,10],[-16,24],[-4,5],[-5,1],[-27,4],[-2,1],[-13,2],[-14,-4],[-21,-7],[-13,-4],[-13,-4],[-7,1],[-26,2],[-8,0],[-8,6],[-3,2],[-21,15],[-7,11],[-3,6],[-2,2],[1,15],[0,21],[0,3],[12,21],[2,2],[7,33],[11,77],[6,35],[27,84],[-76,21],[-21,6],[-26,13],[-36,6],[-8,2],[-11,-2],[-50,-9],[-68,2],[-19,0],[-20,0],[-11,19],[-6,36],[3,49],[3,31],[-9,21],[-20,49],[-1,1]],[[23059,74643],[-39,75],[-6,12],[-98,133],[-3,3],[-77,83],[0,1],[-45,4],[-10,5],[-12,7],[-3,4],[-26,44],[-11,32],[5,34],[0,3],[0,1],[21,24],[3,4],[4,5],[1,5],[5,19],[1,8],[-11,20],[-12,19],[-49,81],[-30,40],[-1,4],[-26,78],[-1,4],[-33,10],[-33,-14],[-4,-1],[-6,1],[-53,10],[-5,1],[-12,7],[-8,6],[-25,16],[-26,28],[-22,24],[-4,4],[-10,48],[-16,84],[-3,7],[-31,70],[-26,46],[-4,9],[-29,78],[3,29],[0,1],[-22,37],[-69,123],[-13,11],[-75,13],[-30,22],[-33,24],[-86,77],[-15,13],[-49,45],[-10,9],[-54,36],[-7,4],[-9,17],[-42,82],[-15,13],[-4,3],[-112,131],[-14,28],[-2,43],[3,27],[2,14],[3,30],[15,36],[24,36],[1,2],[0,1],[2,15],[1,9],[-15,75],[-2,14],[-10,101],[-8,33]],[[89132,71210],[-30,-51],[13,-39],[-25,-15],[-30,-7],[-28,9],[-5,-32],[17,-35],[-22,-45],[-4,-8],[-3,-4],[-10,-19],[-19,15],[0,1],[-20,17],[-28,-21],[-22,-2],[-9,43],[-32,3],[-11,7],[-14,-20],[-40,-56],[-1,-8],[-1,-11],[-5,-77],[-3,-44],[-2,-30],[-1,-19],[5,-23],[30,-4],[9,-35],[-23,-5],[-29,-19],[-15,27],[-30,41],[-5,-55],[-13,-10],[0,-3],[-4,-31],[2,-3],[9,-18],[-3,-4],[-28,-32],[-11,-20],[-1,-1],[5,-43],[-1,-26],[-3,-11],[-8,-12],[-8,-4],[-1,-1],[-1,0],[-21,-3],[-6,5],[-68,-27],[-5,-5],[-5,-5],[-20,9],[10,59],[-30,-8],[-26,-43],[-32,-2],[-20,-25],[-3,-44],[-2,-13],[-6,-31],[-53,10],[-17,-5],[-7,-6],[-5,-11],[-2,-16],[2,-2],[3,-4],[1,-18],[-6,-10],[0,-1],[-14,-13],[-9,-10],[17,-31],[-7,-48],[-8,-39],[-19,-24],[-11,-27],[-24,-19],[-22,17],[-18,-19],[7,-39],[-21,16],[-23,-14],[26,-20],[8,-34],[-23,-10],[-20,-20],[-12,-31],[-31,11],[-10,-31],[-15,-36],[5,-27],[3,-14],[-21,-33],[-1,1],[-15,33],[-18,37],[-10,3],[-11,3],[-37,-6],[-6,-2],[-1,-40],[24,-14],[11,-28],[0,-35],[-20,-10],[-28,31],[-23,-18]],[[87978,69734],[-6,-1],[-1,-1],[-1,-1],[-13,-5],[-12,1],[-13,8],[-58,107],[-6,7],[-176,200],[-97,110],[-12,13],[-72,81],[-160,182],[-316,365],[-26,-32],[-156,-185],[-78,-93],[-152,-180],[-29,-35],[-282,-335],[-64,-77],[-18,-21],[-25,-27],[-2,-17],[-4,-3],[-14,-2],[-17,29],[-2,1],[-63,53],[-3,3],[-3,2],[-18,15],[-13,4],[-4,1],[-1,0],[-13,1],[-91,-12],[-12,-3],[-12,-3],[-16,-5],[-19,-5],[-120,-43],[-67,-31],[-4,-4],[0,-1],[-7,-20],[-39,-20],[-8,-1],[-95,32],[-136,62],[-1,1],[-30,20],[-8,10],[-35,40],[0,3],[-1,3],[-16,10],[-6,1],[-12,-1],[-4,0],[-12,-1],[-15,-7],[-1,0],[-19,-22],[-8,-4],[-10,2],[-51,59],[-39,49],[0,1],[-13,19],[-26,46],[-5,13],[-3,14],[-5,11],[-12,17],[-14,18],[-32,33],[-45,46],[-11,10],[-2,1],[-2,1],[-184,65],[-33,27],[-18,11],[-94,38],[-23,0],[-16,0],[-21,7],[-71,69],[-22,-6],[-21,-22],[-3,-4],[-24,-25],[-3,-3],[-28,-29],[-21,-22],[-13,-14],[-9,-10],[-22,-23],[-18,-19],[-17,-18],[-9,-9],[-14,-15],[-23,-5],[-37,25],[-55,36],[-130,87],[-296,208],[-29,16],[-20,11],[-64,42],[-96,65],[-104,71],[-63,42],[-112,77],[-89,61],[-68,46],[-77,49],[-51,25],[-46,21],[-53,24],[-37,16],[-28,12],[-92,42],[-251,-3],[-238,4],[-28,-2],[-41,-7],[-49,-13],[-26,3],[-22,0],[-25,-11],[-21,-8],[-24,-9],[-20,-14],[-128,-66],[-64,-33],[-59,-30],[-99,-21],[-4,-1],[-147,-32],[-175,-39],[-37,-7],[-9,-2],[-230,-50],[-106,-23],[-34,25],[-2,0],[-34,25],[-52,-47],[-21,-19],[-105,-9],[-40,-4],[15,-98],[5,-33],[5,-35],[10,-64],[2,-8],[-3,-65],[-40,-9],[-38,-8],[-24,-6],[-36,-7],[-28,-7],[-25,0],[-23,-2],[-40,-29],[-32,-29],[-71,-24],[-20,-49],[-17,-34],[-48,-69],[-14,-29],[-6,-39],[-19,-30],[-19,-47],[-45,-64],[-23,-30],[-14,-26],[-42,-62],[-24,-27],[-27,-11],[-36,-38],[-119,8],[-27,27],[-32,-3],[-21,-36],[-9,-64],[-13,-47],[-13,-53],[-87,-29],[-55,-17],[-223,-61],[-29,-1],[-32,0],[-25,23],[-35,0],[-56,-26],[-21,10],[-9,-44],[-26,6],[-24,-18],[-3,-32],[12,-30],[22,-24],[7,-42],[12,-28],[23,-42],[8,-45],[22,-49],[13,-39],[22,-36],[14,-33],[14,-32],[10,-38],[4,-35],[-38,-12]],[[79248,68996],[-14,80],[-17,43],[-84,149],[-9,16],[-2,5],[-42,96],[-2,5],[-83,265],[0,5],[-1,9],[-12,94],[0,3],[0,1],[-13,61],[-4,22],[-8,12],[-14,21],[-57,28],[-44,14],[-29,18],[-40,40],[-13,24],[-14,24],[-1,3],[-2,6],[-27,136],[-21,60],[-37,76],[-9,9],[-28,27],[-33,23],[-22,15],[-13,9],[-34,35],[-15,28],[-21,36],[-60,109],[-33,39],[-19,14],[-34,25],[-95,85],[-60,77],[-45,46],[-122,58],[-71,47],[-2,5],[-6,9],[-22,14],[-3,2],[-111,68],[-17,11],[-39,36],[-54,50],[-16,8],[-29,16],[-3,2],[-14,3],[-10,2],[-8,2],[-19,-4],[-1,0],[-16,-16],[-10,-10],[-27,-74],[-14,-15],[-12,-12],[-22,5],[-1,1],[-16,16],[-9,8],[-4,8]],[[81277,81295],[211,-269],[1017,-1292],[55,-51],[73,-68],[169,-211],[42,-53],[13,-15],[126,-160],[51,-65],[10,-13],[12,-15],[57,-75],[1,-2],[77,-87],[33,-44],[33,-41],[23,-34],[17,-23],[16,-21],[4,-4],[7,-9],[21,-28],[18,-22],[19,-25],[19,-26],[19,-25],[16,-22],[31,-41],[25,-73],[641,-814],[1,-2],[80,-103],[28,-37],[688,-890],[1,-1],[16,-23],[332,-480],[181,-239],[283,-365],[353,-460],[10,-12],[58,-72],[289,-372],[57,-21],[5,-51],[32,3],[27,-34],[19,-60],[31,-5],[13,-17],[1045,-1351],[668,-864],[34,-44],[218,-281],[144,-184],[105,-134],[52,-66],[54,-69],[57,-73],[91,-116],[27,-34]],[[63819,73276],[37,-31],[-2,-2],[-38,-31]],[[63816,73212],[-248,-199],[-21,-17],[-27,-23],[-5,-4],[-114,-89],[-73,-59],[-42,-34],[-99,-81],[-115,-94],[-35,-28],[32,-67],[-8,-69],[-23,-24],[-20,-4],[-29,-6],[-36,-8],[-22,-5],[-29,-4],[-28,2],[-36,7],[-60,11],[-23,4],[-36,7],[-34,6],[-25,4],[-25,0],[-31,0],[-29,-1],[-49,-1],[-40,-1],[-29,0],[-56,0],[-22,0],[-73,0],[-22,0],[-28,2],[-12,-84],[-16,-146],[-3,-145],[13,-31],[26,-88],[11,-39],[14,-35],[16,-32],[25,-52],[16,-33],[15,-28],[24,-23],[21,-21],[19,-34],[18,-39],[10,-34],[0,-47],[0,-36],[-1,-46],[3,-34],[10,-51],[8,-42],[-18,-17],[-31,6],[-31,5],[-45,7],[-50,7],[-24,3],[-29,0],[-23,-3],[-40,-6],[-31,-4],[-28,-2],[-27,-1],[-66,0],[-28,9],[-26,8],[-25,9],[-26,9],[-21,6],[-31,1],[-32,-42],[-33,-24],[-21,-14],[-24,-11],[-31,-8],[-33,-7],[-23,-12],[-19,-17],[-23,-27],[-22,-26],[-19,-22],[-27,-32],[-15,-31],[-71,-40],[-109,-24],[-61,-4],[-202,-33],[-10,-2],[-32,8],[-18,27],[-148,-140],[-98,-92],[-81,-77],[72,-135],[21,-40],[39,-72],[4,-69],[7,-130],[12,-189],[13,-224],[25,-30],[36,-44],[49,-135],[-35,-12],[-152,-41],[9,-310],[5,-76],[6,-60],[26,-242],[-55,-127],[-4,-9],[-58,-135],[-23,-52],[-28,-59],[-48,-103],[-43,-89],[-5,-12],[-14,-29],[-20,-42],[-38,11],[-48,16],[-68,27],[-42,4],[-7,-54],[-5,-37],[-11,-32],[33,-61],[32,-67],[3,-31],[-11,-30],[-22,-28],[-10,-47],[-15,-44],[-33,-77],[-34,-98],[-9,-33],[-7,-36],[-22,-66],[-14,-35],[-29,-31],[-25,-34],[-5,-41],[-20,-43],[-87,-92],[-59,-57],[-170,-162]],[[59837,67060],[-45,-45],[-91,-91],[-83,-87],[-40,-42],[-100,-108],[-56,-56],[-46,-42],[-47,-54],[-66,-71],[-118,-119],[-32,-33],[-162,-164],[-141,-142],[-141,-148],[-51,-54],[-110,-115],[-53,-54],[-76,-79],[-5,-4],[-45,-47],[-78,-81],[-18,-19],[-29,-30],[-80,-79],[-127,-131],[-26,-26],[-33,-34],[-109,-112],[-39,-46],[-7,-9],[-40,-40],[-38,4],[-33,3],[-25,3],[-72,8],[-89,9],[-34,4],[-72,7],[-39,5],[-8,1],[-84,9],[-5,0],[-7,6],[-279,222],[-23,-3],[-17,-32],[-5,-10],[-1,-11],[-1,-7],[-9,-91],[-1,-3],[0,-5],[1,-47],[9,-19],[9,-19],[9,-19],[13,-9],[1,0],[14,-10],[42,-8]],[[56999,64886],[-47,-5],[-133,-21],[-57,-9],[-144,-25],[-24,-1],[-18,-29],[-29,-18],[-35,-17],[-24,-9],[-34,-13],[-30,-6],[-34,-12],[-27,-12],[-24,-16],[-28,-25],[-24,-9],[-20,-15],[-38,-29],[-45,-36],[-30,-17],[-18,-9],[-15,-8],[-6,-51],[-8,-44],[-20,2],[-2,0],[-56,-2],[-23,-3],[-31,-24],[-27,-14],[-24,0],[-26,-17],[-24,0],[-30,-4],[-41,9],[-21,7],[-23,-1],[-25,4],[-21,-31],[-23,-3],[-43,-3],[-33,-30],[-21,-20],[-36,-4],[-34,0],[-26,15],[-20,-27],[-38,-6],[-40,13],[-4,-1],[-23,-4],[-33,-3],[-36,1],[-26,-2],[-28,-9],[-21,-8],[-28,-1],[-22,16],[-27,-20],[-35,-32],[-22,-35],[-36,-18],[-15,-44],[-16,-47],[-24,-12],[-47,-38],[-25,-18],[-35,2],[-45,-116],[-36,43],[-325,390],[-111,132],[-125,150],[-38,43],[-29,32],[-38,42],[-57,70],[-55,66],[-296,360],[-67,82],[-137,163],[-36,43],[-34,40],[-31,37],[-4,5],[-59,70],[-84,99],[-20,25],[-152,192],[-47,57],[-185,215],[-25,34],[-17,22],[-69,89],[-12,12],[-11,11],[-88,103],[-23,27],[-42,49],[-19,24],[-116,139],[-152,184],[-42,53],[-109,134],[-21,25],[-17,20],[-19,24],[-46,31],[-23,16],[-29,19],[-67,45],[-114,78],[-4,2],[-77,52],[-18,36],[16,52],[22,67],[8,25],[43,133],[29,90],[46,138],[42,112],[49,140],[79,231],[67,211],[56,171],[70,199],[69,202],[50,152],[60,193],[50,148],[54,156],[42,124],[14,38],[41,120]],[[52632,70209],[31,92],[3,8],[79,235],[93,277],[76,224],[137,397],[33,96],[42,123],[52,149],[117,339],[62,183],[51,146],[77,225],[14,40],[28,82],[47,136],[33,93],[38,110],[15,44],[37,109],[18,55],[19,58],[42,127],[12,36],[-83,103],[-75,37],[-77,130],[-61,141],[-6,116],[17,110],[14,94],[1,14],[15,137],[-17,59],[-15,31],[-1,2],[-82,140],[-28,27],[-73,15],[-137,27],[-28,-7],[-34,6],[-95,19],[-46,1],[-41,0],[-27,1],[-36,-18],[-1,-1],[-3,0],[-54,-10],[-30,-15],[-15,-10],[-34,-16],[-10,-5],[-42,-26],[-122,24],[-110,86],[-72,83],[-30,40],[-79,135],[-68,60],[-57,102],[-1,17],[-59,102],[-31,31],[-23,13],[-71,92],[-78,143],[-6,10],[-3,2],[-68,42],[-22,50],[-42,97],[-24,54],[-91,137],[-57,85],[-47,54]],[[52632,70209],[-334,-60],[-58,-10],[-88,-16],[-84,-15],[-198,-37],[-87,-16],[-52,-9],[-61,-11],[-56,-16],[-110,-19],[-62,-12],[-209,-38],[-45,-7],[-176,-33],[-108,-21],[-35,-6],[-80,-15],[-164,-31],[-225,-42],[-1,0],[-151,-29],[-80,-16],[-162,-30],[-45,-8],[-93,-17],[-3,-1],[-66,-12],[-4,-1],[-98,-39],[-42,-19],[-34,-12],[-67,-25],[-48,-17],[-54,-22],[-59,-23],[-50,-22],[-37,-11],[-31,-10],[-179,-68],[-53,-21],[-26,-9],[-8,-2],[-65,-23],[-41,-15],[-27,-10],[-54,-19],[-38,-14],[-21,-8],[-30,-12],[-76,-30],[-178,-70],[-281,-111],[-30,15],[-35,64],[-5,40],[-41,7],[-28,-15],[-15,-30],[-35,-13],[-27,1],[-30,-15],[-23,-10],[-45,4],[-25,-30],[-24,-11],[-29,11],[-9,-48],[-24,-18],[-7,-37],[-12,-45],[-23,-15],[-25,20],[-32,23],[-12,32],[-30,16],[-33,15],[-36,31],[-19,-27],[-13,-33],[-1,-12],[-8,-59],[4,-54],[9,-39],[-32,-19],[-63,-82],[-39,-19],[0,35],[-17,75],[-30,-3],[-71,-1],[-23,-18],[-11,-26],[-79,-130],[-29,-12],[-19,-18],[-24,-5],[-26,-19],[-15,-35],[-39,-79],[-108,15],[-62,8],[-61,10],[-56,7],[-50,6],[-63,8],[-120,15],[-95,-10],[-190,24],[-110,13],[-7,1],[-89,11],[-165,20],[-62,8],[-102,12],[-297,39],[-145,14],[4,-95],[2,-9],[6,-35],[10,-15],[49,-41],[3,-3],[32,-29],[8,-10],[6,-9],[41,-54],[2,-4],[0,-12],[-2,-55],[-1,-1],[-5,-53],[1,-4],[0,-2],[0,-1],[7,-66],[8,-8],[2,-2],[28,-5],[34,-23],[4,-5],[0,-11],[-1,-19],[-8,-27],[0,-23],[0,-1],[0,-2],[3,-18],[2,-6],[6,-16],[1,-3],[12,-17],[0,-1],[-9,-80],[-7,-65],[-19,-18],[-9,-9],[-8,-10],[-2,-3],[-7,-10],[-5,-15],[-15,-60],[-1,-5],[0,-3],[-7,-4],[-80,-42],[-39,-34],[-6,-8],[-1,-64],[0,-18],[2,-104],[1,-26],[0,-22],[1,-12],[7,-94],[0,-27],[-43,21],[-3,1],[-17,15],[-17,13],[-44,39],[-67,68],[-43,58],[-26,24],[-112,100],[-112,74],[-153,195],[-80,19],[-5,1],[-116,69],[-22,43],[-18,51],[-4,52],[-13,21],[-27,42],[-5,5],[-32,32],[-13,4],[-30,9],[-69,4],[-67,-16],[-59,-23],[-70,-1],[-13,0],[-6,1],[-84,-5],[-22,-9],[-2,-1],[-36,-30],[-17,-3],[-26,-4],[-3,-1],[-23,5],[-12,2],[-9,2],[-44,38],[-72,82],[-15,25],[-30,52],[-1,1],[-5,14],[-28,77],[-7,12],[-73,123],[-2,6],[-18,50],[-2,2],[-41,70],[-25,22],[-52,23],[-35,28],[-10,16],[-36,57],[-28,78],[-5,8],[-44,74],[-34,32],[-34,28],[-78,48],[-34,21],[-28,9],[-36,12],[-33,21],[-22,14],[-44,27],[-49,18],[-101,15],[-8,1],[-28,-3],[-29,-9],[-90,-28],[-61,12],[-35,24],[-40,46]],[[42409,69287],[-29,55],[-3,7],[-14,15],[-30,33],[-8,9],[-41,85],[-60,162],[-7,22],[-10,27],[-8,74],[-8,23],[-3,5],[-23,45],[-58,77],[-16,28],[-3,5],[-11,18],[-4,7],[-17,3],[-54,11],[-37,62],[0,2],[-11,159],[10,105],[-59,163],[-40,47],[-5,64],[1,2],[88,188],[-6,91],[-4,25],[-6,32],[-18,76],[-13,33],[-48,82],[-59,60],[-3,3],[-3,1],[-5,4],[-33,20],[-15,5],[-58,22],[-14,15],[-20,21],[-28,48],[-11,24],[-28,68],[-36,85],[-58,225],[-4,8],[-50,128],[-4,11],[-4,15],[-32,56],[-8,33],[-1,3],[0,2],[11,105],[4,40],[-6,35],[-1,2],[-58,125],[-3,5],[-28,61],[-22,72],[-1,11],[-2,24],[15,139],[5,46],[3,20],[-8,36],[-16,72],[0,3],[-2,5],[-12,28],[-42,76],[-21,56],[-26,107],[-8,32],[-19,46],[-34,58],[-15,16],[-28,30],[-20,34],[-10,43],[0,4],[-9,72],[-9,67],[-4,24],[-3,28],[-7,23],[-21,71],[-21,73],[-9,18],[-16,29],[-69,112],[-69,81],[-6,10],[-13,23],[-21,39],[-6,27],[-10,50],[-9,43],[-12,30],[-1,5],[-2,5],[-1,3],[0,1],[-12,48],[0,3],[-1,5],[-1,4],[-10,71],[0,1],[-1,5],[0,6],[0,6],[0,5],[0,5],[2,25],[-1,26],[-30,82],[-53,143],[-16,45],[-1,3],[-2,6],[-1,5],[-1,5],[-1,3],[-5,37],[-10,64],[-23,139],[-12,76],[-3,14],[-1,3],[-9,13],[-2,4],[-3,4],[0,1],[-16,32],[-2,4],[-1,2],[-14,33],[-1,3],[-2,5],[-1,5],[-1,5],[-1,3],[-15,72],[0,3],[-1,5],[0,2],[-2,20],[-1,3],[0,5],[0,6],[0,6],[0,3],[3,49],[1,2],[0,6],[1,5],[1,5],[1,3],[0,1],[6,22],[-33,74],[-35,80],[-16,59],[-2,10],[-15,79],[2,42],[-17,63],[-13,30],[-83,181],[-4,9],[-8,48],[-10,54],[1,6],[0,5],[0,1],[9,61],[2,18],[1,5],[1,5],[1,4],[6,22],[0,1],[2,5],[1,5],[2,5],[3,4],[1,2],[34,64],[2,3],[71,211],[8,53],[-1,56],[-5,34],[-18,48],[-2,5],[0,2],[-10,32],[-1,3],[-2,6],[-1,5],[-1,5],[0,6],[-1,5],[0,6],[0,5],[1,5],[1,15],[-5,19],[-9,25],[-21,18],[-55,41],[-3,2],[-3,3],[-3,4],[-3,3],[-1,2],[-7,10],[-2,2],[-2,4],[-3,4],[-2,5],[-5,11],[-1,3],[-2,5],[-2,5],[-1,3],[-7,25],[-18,57],[0,3],[-2,5],[-1,5],[0,6],[-1,5],[0,5],[5,174],[3,90]],[[76953,71352],[-43,6],[-25,19],[-15,40],[-26,11],[-49,-38],[-28,-27],[-28,-31],[-29,-16],[-45,-11],[-12,-38],[-2,-36],[-17,-37],[-18,-25],[-9,-35],[-24,-27],[-9,-31],[12,-35],[-21,-22],[-13,-26],[-30,-44],[-9,-45],[8,-63],[-15,-33],[-65,-42],[-11,-31],[-35,-28],[-22,-5],[-25,-2],[-54,14],[-30,26],[-31,15],[-24,26],[-69,60],[-22,13],[-31,0],[-32,-7],[-45,6],[-19,16],[-36,28],[-22,10],[-33,10],[-60,-1],[-53,10],[-59,17],[-39,23],[-28,9],[-44,28],[-19,29],[-14,29],[-17,30],[-25,-3],[-29,-25],[-30,-21],[-26,-1],[-23,-71],[-37,-107],[-40,-120],[-33,-96],[-33,-98],[-34,-100],[-155,-458],[-2,-5],[-27,-81],[-13,-37],[-31,-94],[-13,-44],[-36,-89],[8,1],[37,-130],[11,-38],[-92,12],[-52,6],[-79,-5],[-63,14],[-23,13],[-28,21],[-1,1],[-54,26],[-17,8],[-3,1],[-28,2],[-20,2],[-71,4],[-93,5],[-42,3],[-52,3],[-91,3],[-35,31],[-38,40],[-12,14],[-23,28],[-50,34],[-5,2],[-34,17],[-10,5],[-48,0],[-45,-28],[-25,-16],[-82,-27],[-45,-50],[-7,-20],[0,-3],[-18,-39],[-15,-17],[-48,-42],[-51,-36],[-7,0],[-33,-29],[-3,-3],[-51,-41],[-9,-8],[-2,0],[-3,1],[-12,-5],[-100,-73],[-42,-55],[-13,-37],[-151,-152],[-188,-187],[-321,-320],[-112,-105],[-154,-144],[-23,-19],[-20,-16],[-24,-22],[-27,-24],[-85,-78],[-16,-14],[-25,-23],[-74,-68],[-18,-17],[-14,-15],[-51,-48],[-46,-44],[-25,-24],[-41,-39],[-74,-70],[-63,-60],[-22,-21],[-23,-31],[-33,-30],[-26,-21],[-79,-71],[-6,-5],[-153,-143],[-333,-315],[-193,-187],[-5,-5],[-115,-112],[-46,-45],[-5,-5],[-135,-126],[-175,-165],[-29,-29],[-41,-39],[-23,-23],[-29,-27],[-49,-47],[-58,-55],[-38,-36],[-51,-48],[-44,-43],[-93,-87],[-148,-188],[-26,-32],[-30,-22],[-28,-35],[-55,-49],[-21,-15],[-39,-34],[-44,-41],[-178,-167],[-18,-18],[-105,-98],[-37,-35],[-79,-74],[-31,-29],[-32,-30],[-23,-21],[-64,-58],[-27,-25],[-60,-54],[-175,-160],[-97,-88],[-71,-62],[-29,-16],[-113,-90],[-165,-132]],[[68310,64458],[-33,6],[-3,0],[-35,-3],[-10,0],[1,10],[4,32],[0,9],[-2,3],[0,1],[-1,2],[-7,8],[-15,14],[-27,23],[-34,20],[-5,5],[-82,82],[-30,78],[-20,50],[-2,6],[-38,94],[-5,5],[-9,-1],[-8,-6],[-6,-13],[-4,-19],[-9,-12],[-19,-15],[-15,-3],[-7,5],[-30,41],[-9,16],[-16,51],[0,15],[3,8],[17,10],[1,10],[0,1],[0,1],[-14,65],[-1,0],[-11,11],[-38,16],[-8,3],[-15,19],[0,1],[-84,130],[-6,7],[-12,1],[-35,4],[-1,0],[-12,7],[-4,14],[-11,57],[-6,29],[-1,19],[-7,2],[-5,1],[-3,1],[-5,-1],[-11,-3],[-26,-8],[-61,-19],[-31,9],[-3,1],[-9,10],[-1,5],[0,22],[0,2],[-1,0],[-43,57],[-7,9],[-11,14],[-16,2],[-6,-3],[-62,45],[-110,155],[-4,7],[-44,70],[-14,20],[-19,29],[-4,7],[-20,29],[-16,22],[-18,5],[-5,7],[-26,39],[-5,7],[-26,48],[11,12],[1,2],[1,3],[0,8],[-24,70],[-38,87],[-1,2],[-1,1],[-31,55],[-11,13],[-1,1],[-1,0],[-14,8],[-15,3],[-11,0],[-8,29],[3,20],[-3,10],[-8,13],[-8,5],[-8,-3],[-6,-6],[-2,-1],[-11,-18],[-8,-7],[0,-1],[-6,-2],[-8,0],[-6,5],[-1,2],[-1,1],[-1,2],[-36,93],[0,1],[-2,19],[-5,53],[1,4],[1,3],[9,16],[5,6],[-1,17],[-7,8],[-26,36],[-2,2],[-47,110],[-3,14],[-5,23],[-2,5],[-15,46],[-10,21],[-28,36],[-36,42],[-22,2],[-4,1],[35,41],[260,303],[19,29],[38,45],[158,179],[48,56],[29,35],[100,117],[17,22],[141,164],[82,94],[6,7],[22,22],[12,442],[3,220],[6,332],[-111,279],[-14,26],[-76,211],[-61,162],[-10,29],[-50,104],[50,-15],[34,-14],[-40,91],[-85,191],[-26,55],[-16,31],[-14,31],[-16,36],[-23,51],[-15,39],[-9,23],[-11,53],[-2,11],[20,38],[19,43],[24,61],[1,47],[-12,57],[0,3],[-2,12],[-1,1],[-16,39],[-22,46],[-9,19],[-13,10],[-94,63],[-1,1],[-111,84],[-5,4],[-21,18],[-23,34],[-23,41],[-25,36],[-47,42],[-1,1],[-23,93],[-11,17],[-44,51],[-23,18],[-39,16],[0,1],[-15,9],[-8,12],[-2,3],[-3,3],[-64,95],[-2,3],[-3,5],[-6,12],[-4,13],[3,31],[1,7],[7,29],[5,73],[-8,37],[-22,27],[-18,18],[-55,40],[-29,53],[-6,33],[-8,42],[-5,38],[-3,36],[-12,66],[-5,36],[-31,40],[-28,22],[-3,95],[-7,191],[-3,73],[-2,73],[-5,143],[-6,162],[-3,62],[-3,94],[-6,187],[-6,141],[-18,41],[-49,11],[-60,23],[-57,16],[-26,-10],[-27,-20],[-29,-12],[-27,1],[-46,-126],[-25,-70],[-65,-182],[-38,-104],[-140,-385],[-303,-183],[-31,-18],[-273,-164],[-163,-96],[-9,-13],[-13,23],[-136,293],[-2,8],[4,25],[23,58],[5,13],[-8,2],[0,1],[-9,4],[-10,12],[-28,58],[-17,18],[-50,53],[-18,-1],[-1,0],[-2,0],[-39,-21],[-9,-5],[2,9],[6,23],[-1,17],[-41,75],[-7,8],[-1,1],[-9,0],[-79,-23],[-11,-3],[-9,28],[-35,112],[-6,8],[-1,0],[-5,3],[-7,4],[-11,2],[-4,1],[-2,-1],[-11,-2],[-11,-14],[-1,-1],[-6,-17],[-3,0],[-9,-3],[-7,-2],[-66,15],[-12,5],[-41,46],[-4,6],[0,3],[0,3],[17,40],[-13,-6],[-25,-12],[-17,6],[-9,14],[-91,159],[-1,1],[-53,120],[-17,39],[-26,58]],[[42409,69287],[-76,-116],[-21,-32],[-17,-26],[-49,-77],[-29,-45],[-55,-85],[-234,-481],[-28,-56],[-1,-4],[-68,-178],[15,-29],[11,-28],[16,-21],[21,-17],[17,-26],[11,-35],[12,-34],[15,-24]],[[41949,67973],[-78,-7],[-47,-6],[-106,-13],[-47,-6],[-30,-46],[-10,-13],[-37,-55],[-56,-82],[-29,-44],[-19,-21],[-38,-43],[-61,-66],[-46,-51],[-67,-74],[-9,-10],[-32,-32],[-6,-3],[-26,-16],[-30,-8],[-85,-23],[-143,-40],[-136,15],[-194,21],[-68,-115],[-83,-177],[-28,-59],[-126,-276],[-50,-112],[-55,-117],[-95,-211],[-20,-43],[-51,-112],[-17,-38],[-31,-66],[-72,-150],[-16,-33],[29,-46],[33,-100],[17,-30],[94,-154],[81,-57],[27,-19],[18,-30],[11,-19],[36,-62],[67,-116],[8,-13],[38,-65],[18,-32],[17,-59],[14,-24],[17,-29],[29,-48],[24,-19],[98,-76],[10,-7],[23,-39],[62,-106],[3,-34],[48,-142],[5,-14],[35,-62],[24,-43],[12,-15],[30,-10],[8,-7],[33,-27],[8,-14],[17,-29],[13,-37],[-13,-107],[-5,-35],[-56,-25],[-21,-93],[-41,-26],[-11,-9],[-95,17],[-20,7],[-45,15],[-17,6],[-42,41],[-1,2],[-39,54],[-53,10],[-19,-9],[-67,13],[-105,187],[-47,9],[-121,23],[-36,42],[-3,4],[-88,17],[-71,-21],[-114,-81],[-199,34],[-48,15],[-55,18],[-13,19],[-22,34],[-49,37],[-4,3],[-74,23],[-20,0],[-29,-26],[-22,-20],[-22,-154],[-44,-120]],[[39181,64161],[-130,85],[-53,55],[-2,2],[-74,14],[-39,-5],[-14,-13],[-40,-37],[-5,-16],[-37,-44],[-38,-34],[-20,-19],[-79,1],[-42,1],[-42,-31],[-42,-5],[-73,14],[-1,0],[-2,3],[-13,13],[-60,101],[-3,31],[-44,74],[-63,10],[-37,-18],[-70,13],[-33,15],[-56,19],[-78,15],[-61,-53],[-14,-8],[-43,-28],[-36,-14],[-21,-5],[-71,14],[-34,57],[-27,65],[1,9],[-8,61],[-19,136],[-40,67],[-12,11],[-155,30],[-55,31],[-21,26],[-72,60],[-16,12],[-43,10],[-41,10],[-11,-6],[-16,-1],[-4,0],[-1,0],[-14,-1],[-13,2],[-30,6],[-19,15],[-16,13],[-30,31],[-80,118],[-46,68],[-35,54],[-117,197],[-16,38],[-31,53],[-64,12],[-65,-18],[-38,-57],[-39,-35],[-53,10],[-16,19],[-41,51],[-68,120],[-72,57],[-13,10],[-94,22],[-60,50],[-80,75],[-46,63],[-52,71],[-31,53],[-29,98],[-30,108],[-23,82],[-23,82],[-62,37],[-51,10],[-31,-3],[-70,-34],[-78,15],[-83,24],[-41,18],[-11,5],[-22,17],[-48,64],[-45,47],[-1,0],[-1,1],[-78,27],[-128,63],[-12,6],[-32,17],[-26,15],[-19,17],[-62,88],[-46,73],[-31,53],[-9,40],[-14,22],[-12,21],[-42,51],[-4,4],[-100,116],[-11,12],[-47,39],[-44,8],[-28,-3],[-59,-32],[-36,-10],[-66,0],[-6,1],[-47,8],[-9,2],[-32,6],[-24,11],[-33,14],[-28,13],[-45,26],[-3,1],[-19,11],[-3,3],[-32,18],[-3,2],[-28,25],[-8,10],[-13,16],[-72,105],[-1,3],[-29,52],[-14,25],[-12,22],[-40,71],[-67,24],[-29,-3],[-20,-11],[-18,-9],[-5,-3],[-53,-34],[-15,-20],[-11,-13],[-10,-13],[-2,-2],[-15,-26],[-30,-55],[-21,-49],[-1,0],[0,-1],[-14,-17],[-8,-9],[-4,-3],[-6,-4],[-86,-52],[-23,-3],[-2,0],[-38,2],[-6,1],[-43,9],[-20,2],[-33,-18],[-7,-7],[-29,-35],[-60,-9],[-3,0],[-142,-19],[-25,1],[-1,-1],[-20,-10],[-8,-10],[-8,-17],[-6,-21],[0,-1],[-5,-78],[-3,-23],[0,-2],[-19,-60],[-14,-27],[-20,-14],[-12,-8],[-77,-41],[-20,-3],[-129,37],[-1,3],[-1,3],[-4,27],[-1,4],[0,1],[1,31],[2,7],[4,4],[1,1],[10,5],[12,-2],[1,0],[16,-17],[15,-4],[2,1],[0,1],[2,1],[34,66],[3,11],[-1,8],[0,1],[-1,5],[-4,16],[-7,14],[-13,14],[-9,4],[-23,4],[-23,-1],[-12,-3],[-3,-1],[-1,0],[-51,-14],[-2,-1],[-2,-1],[-13,-7],[-6,-8],[-2,-8],[-9,-33],[-11,-18],[-2,-1],[-24,-14],[-12,1],[-8,2],[-26,9],[-26,12],[-14,7],[-22,23],[-31,32],[-12,6],[-12,8],[-2,1],[-181,91],[-18,5],[-24,1],[-21,-4],[-1,0],[-2,-1],[-58,-22],[-77,-38],[-26,-11],[-50,-13],[-1,0],[-35,-6],[-73,11],[-18,6],[-14,9],[-2,1],[-2,4],[-12,20],[-16,63],[1,19],[4,9],[2,3],[27,30],[8,11],[3,4],[29,52],[0,2],[9,21],[-1,19],[-4,8],[0,1],[-2,1],[-15,12],[-18,0],[-64,-60],[-4,-5],[-92,-113],[0,-1],[-12,-26],[-5,-11],[-9,-17],[-20,-37],[-17,-25],[-9,-13],[-13,-1],[-99,47],[-37,47],[-55,69],[-6,10],[-13,12],[0,1],[-1,0],[-58,49],[-18,9],[-2,1],[-29,-1],[-10,-2],[-85,-15],[-21,-5],[-8,-11],[-37,-84],[-10,-17],[-15,-25],[-13,-21],[-50,-73],[-11,-9],[-40,-21],[-79,-42],[-3,-4],[-25,-32],[-47,-67],[2,-32],[0,-3],[2,-5],[15,-31],[4,-15],[0,-1],[-6,-32],[-11,-25],[-4,-10],[-22,-32],[-2,-3],[-22,-37],[-7,-27],[0,-29],[4,-11],[12,-15],[22,-9],[7,-3],[18,-10],[10,-9],[12,-18],[4,-7],[1,-1],[58,-105],[4,-7],[11,-21],[3,-11],[-2,-16],[-1,-1],[-1,-3],[-17,-34],[-26,-36],[-1,-2],[0,-16],[2,-11],[2,-6],[1,-1],[9,-15],[49,-52],[13,-11],[20,-17],[18,-25],[9,-17],[4,-7],[6,-19],[7,-22],[2,-29],[-4,-25],[0,-5],[-1,-5],[-9,-40],[-6,-10],[0,-2],[-1,0],[-17,-23],[-8,-6],[-2,-2],[-25,-14]],[[30891,66008],[-59,19],[-2,1],[-37,10],[-32,12],[-35,21],[-9,10],[-22,37],[-15,29],[0,3],[-4,13],[-11,22],[-3,5],[-10,13],[-9,11],[-17,9],[-28,16],[-13,7],[-78,21],[-2,0],[-129,56],[-29,21],[-26,26],[-7,12],[-12,32],[-10,38],[-5,24],[0,38],[0,3],[1,3],[1,18],[16,56],[5,33],[-5,31],[0,1],[-5,13],[-16,16],[-2,2],[-2,2],[-67,64],[-63,43],[-31,31],[-9,20],[-7,35],[0,3],[4,16],[0,84],[0,8],[2,18],[0,3],[0,2],[6,26],[3,4],[0,10],[1,54],[14,-4],[81,-22],[5,-1],[25,18],[4,34],[-5,39],[-8,14],[-10,15],[-19,12],[-25,13],[-1,1],[-107,79],[-61,37],[-62,37],[-73,18],[-1,0],[-48,82],[3,82],[0,2],[-13,67],[-10,17],[-70,117],[-33,40],[-99,70],[-31,14],[-28,14],[-92,153],[-123,83]],[[23059,74643],[-29,-35],[-31,-36],[-39,-43],[-51,-59],[-3,-4],[-20,-23],[-130,-149],[-27,-31],[-57,-65],[-22,-25],[-55,-63],[-85,-99],[-45,-51],[-85,-99],[-161,-186],[-42,-48],[-31,-37],[-41,-47],[-35,-40],[-36,-41],[-22,-26],[-28,-31],[-27,-32],[-64,-73],[-70,-79],[-84,-96],[-51,-58],[-37,-43],[-9,-10],[-132,-152],[-36,-41],[-75,-86],[-55,-65],[-106,-126],[27,-64],[2,-5],[4,-4],[23,-20],[24,-32],[43,-79],[23,-54],[15,-41],[1,-2],[1,-3],[10,-50],[1,-11],[3,-29],[2,-16],[7,-50],[7,-37],[10,-38],[10,-26],[1,-3],[14,-25],[28,-24],[16,-11],[95,-22],[28,-12],[4,-2],[34,-22],[39,-26],[3,-2],[-2,-20],[-6,-74],[-1,-45],[1,-5],[4,-24],[20,-123],[5,-33],[-1,-78],[0,-15],[-1,-6],[-3,-41],[-16,-33],[9,-128],[6,-65],[13,-164],[4,-46],[3,-34],[35,-415],[28,-20],[87,-66],[24,-18],[41,-29],[96,-66],[25,-29],[92,-109],[37,-43],[108,-124],[37,-44],[60,-72],[96,-145],[60,-97],[47,-71],[59,-91],[78,-172],[48,-106],[49,-110],[50,-109],[23,-49],[22,-49],[36,-79],[44,-124],[18,-99],[13,-73],[18,-96],[8,-45],[10,-58],[13,-69],[13,-70],[6,-31],[6,-31],[5,-31],[2,-11],[7,-37],[13,-71],[13,-72],[6,-32],[11,-57],[0,-6],[-1,-50],[-1,-97],[-1,-108],[-2,-130],[-2,-229],[-3,-278],[-17,-75],[-14,-66],[-14,-66],[-21,-92],[-20,-93],[-15,-70],[-1,-4],[-31,-144],[-52,-241],[-18,-63],[-88,-195],[-37,-84],[-37,-82],[-75,-167],[-13,-33],[-37,-87],[-12,-28],[-24,-57],[-31,-73],[-52,-59],[-42,-53],[-101,-123],[-27,-28],[-15,-37],[-54,-62],[-68,-88],[-70,-88],[-43,-56],[-22,-23],[-128,-140],[-106,-108],[-51,-53],[-155,-158],[-170,-174],[-140,-143]],[[21381,63769],[-73,-14],[-4,-1],[-297,-59],[-91,-17],[-514,-103],[-26,-9],[-43,-7],[-2,0],[-181,10],[-266,18],[-160,9],[-26,1],[-157,9],[-240,14],[-304,16],[-109,7],[-55,3],[-1,0],[-71,7],[-18,42],[0,2],[-25,32],[-23,22],[-19,18],[-22,18],[-33,8],[-37,33],[-29,47],[-15,40],[-17,32],[-18,21],[-21,19],[-25,15],[-35,29],[-33,22],[-19,15],[-23,16],[-17,22],[-10,11],[-10,11],[-29,13],[-23,22],[-23,22],[-27,34],[-23,26],[-27,28],[-23,22],[-20,14],[-21,-24],[-29,-55],[-30,-34],[-31,-5],[-20,-13],[-37,-29],[-32,14],[-40,-7],[-87,-97],[-3,-38],[-20,-6],[-1,-1],[-26,0],[-124,1],[-22,-2],[-163,-49],[-23,-8],[-69,16],[-167,39],[-28,6],[-159,-210],[-107,-147],[-1,-2],[-73,-99],[-191,-262],[-45,-62],[-14,-19],[-112,-155],[-25,-34],[-85,-117],[-127,-176],[-61,-85],[-145,-197],[-23,-31],[-89,-120],[-23,-33],[-57,-80]],[[15807,62188],[0,45],[-17,47],[-6,31],[0,2],[-2,40],[14,117],[20,77],[2,7],[7,56],[2,18],[-9,37],[-35,58],[-162,156],[-27,19],[-3,2],[-25,1],[-94,140],[-97,100],[-34,14],[-36,26],[-30,45],[-8,38],[0,8],[3,196],[0,17],[-2,8],[-25,92],[-1,1],[-9,-2],[-14,21],[-38,60],[-11,18],[-5,4],[-30,26],[-129,26],[-45,24],[-45,28],[-53,85],[-37,58],[-8,18],[-34,81],[-19,43],[-16,27],[-9,10],[-55,109],[-26,20],[-19,35],[1,8],[3,27],[9,23],[57,105],[80,68],[6,5],[15,21],[-2,64],[-18,39],[-46,24],[-44,8],[-37,-10],[-35,2],[-23,24],[-24,40],[-36,82],[-35,58],[-35,34],[-18,35],[-32,58],[-28,96],[2,69],[0,2],[-12,22],[-48,87],[-1,2],[-2,1],[-7,4],[-6,9],[-8,13],[-11,18],[-10,26],[-9,57],[1,15],[2,30],[-7,32],[-15,66],[-1,2],[-7,39],[-35,62],[-33,77],[-47,92],[-47,76],[-40,39],[-6,1],[-37,18],[-103,30],[-80,118],[-44,35],[-25,4],[-53,-10],[-53,13],[-19,-1],[-52,21],[-36,23],[-115,95],[-63,71],[-67,63],[-49,77],[-17,54],[-6,21],[-4,24],[-8,46],[3,19],[-28,125],[-38,146],[-8,13],[-28,92],[-56,133],[-27,45],[-23,24],[-50,100],[-14,46],[-3,84],[3,175],[14,121],[-13,86],[-29,108],[-29,57],[-31,65],[-102,251]],[[30891,66008],[20,-26],[17,-61],[-88,-186],[-12,-8],[-12,3],[-2,8],[-13,14],[-3,0],[-5,1],[-12,0],[-9,-5],[-62,-59],[-36,-73],[-6,-19],[-1,-4],[-1,-31],[-33,-36],[-9,-10],[-1,-2],[-5,2],[-18,7],[-13,2],[-9,-6],[-44,-47],[-6,-8],[-5,-21],[-1,-4],[-10,-31],[-8,-24],[-1,-2],[-3,-9],[-18,-54],[-5,-10],[-1,0],[-24,-108],[-1,-8],[-24,-2],[-21,-3],[-37,-24],[-7,-8],[-7,-9],[-18,-24],[-5,-12],[-1,-10],[3,-11],[18,-39],[0,-2],[5,-47],[0,-19],[0,-1],[0,-1],[-7,-59],[0,-1],[-22,-39],[-14,-8],[-1,0],[-26,-34],[-6,-15],[-17,-44],[-3,-40],[0,-3],[-30,0],[-4,0],[-58,-12],[-1,0],[-7,-1],[-174,-68],[-13,-6],[-34,-37],[-18,-57],[-7,-29],[-28,-149],[2,-26],[9,-9],[1,-3],[1,-4],[-3,-94],[-5,-5],[-1,-1],[-92,-67],[-10,-2],[-11,3],[-1,1],[-25,46],[-1,0],[-2,2],[-2,1],[-20,2],[-8,-3],[-21,-27],[-18,-38],[-7,-18],[-1,-1],[-2,-65],[-6,-36],[-3,-24],[-10,-29],[-3,-11],[-1,-1],[-4,-8],[-12,-13],[-77,-233],[-25,-75],[-68,-203],[-107,-324],[-37,-110],[-9,-30],[-3,-5],[-14,-21],[-33,-50],[-33,-49],[-78,-116],[-77,-115],[-16,-25],[-37,-55],[-38,-56],[-42,-64],[-43,-64],[-63,-94],[-281,-419],[-19,-45],[-10,-37],[-59,-49],[-36,-7],[-23,-25],[-22,-33],[-10,-40],[-13,-33],[-12,-36],[1,-39],[-9,-34],[-14,-28],[-16,-24],[-16,-28],[-16,-33],[-12,-30],[14,-35],[-15,-25],[-4,-33],[-17,-20],[-21,-23],[-5,-33],[-18,-29],[-15,-23],[-18,-49],[15,-32],[9,-30],[-19,-24],[-23,-12],[-20,-24],[-19,-16],[-12,-29],[-27,-32],[-10,-29],[-12,-43],[-15,-32],[-10,-32],[-4,-33],[-17,-19],[-16,-23],[-4,-37],[17,-27],[17,-31]],[[28015,60545],[-91,-30],[-90,-30],[-35,-11],[-179,-59],[-59,-20],[-125,-41],[-226,-75]],[[27210,60279],[-4,48],[-6,66],[6,87],[5,67],[19,231],[3,36],[2,38],[2,43],[5,149],[4,121],[2,62],[-5,0],[-25,-4],[-29,-5],[-51,-10],[-63,-13],[-297,-58],[-165,-32],[-131,39],[-115,35],[-150,45],[-98,30],[-98,23],[-24,-23],[-28,-25],[-24,-20],[-17,-6],[-13,-4],[-82,12],[-81,12],[-177,26],[-46,8],[-47,7],[-3,0],[-34,6],[-24,4],[-33,5],[-33,6],[-36,5],[-147,24],[-43,7],[-82,13],[-49,-63],[-141,-172],[-35,-43],[-35,-42],[-54,-65],[-37,-45],[-21,-3],[-43,-16],[-37,-4],[-48,3],[-63,21],[-24,6],[-112,35],[-81,40],[-148,52],[-79,36],[-23,5],[-21,22],[-21,16],[-34,20],[-26,19],[-40,31],[-22,26],[-65,68],[-22,10],[-16,11],[-17,12],[-25,27],[-71,75],[-21,22],[-18,21],[-17,29],[-20,36],[-38,71],[-15,26],[-22,27],[-37,42],[-28,31],[-21,30],[-8,31],[-15,94],[-11,26],[-16,37],[-14,34],[-13,31],[-16,40],[-14,32],[-17,32],[-20,32],[-17,25],[-62,76],[-50,60],[-19,22],[-21,18],[-100,-153],[-147,-167],[-9,-10],[-130,-160],[-78,-95],[-25,-32],[-358,-451],[-113,-139],[-31,-33],[-21,-19],[-94,-80],[-164,-125],[-7,-5],[-5,33],[-7,43],[-5,33],[-3,20],[-8,49],[-11,74],[-31,195],[-25,161],[-14,102],[-23,174],[-7,45],[-8,50],[-25,182],[-19,123],[-6,45],[-36,243],[-6,43],[-6,43],[-41,280],[0,3],[-16,98],[-32,235],[-10,72],[-12,79],[-6,32],[-27,180],[-18,112],[-12,83],[-10,65]],[[68310,64458],[42,4],[3,1],[84,8],[1,-1],[6,-3],[9,-11],[73,-111],[0,-1],[28,-12],[11,-5],[38,-17],[59,-27],[38,-17],[93,-77],[23,-12],[36,-41],[5,-5],[60,-40],[40,30],[30,31],[26,30],[44,20],[13,9],[32,21],[8,5],[4,-9],[16,-41],[6,-21],[1,-4],[31,-20],[3,-2],[79,-78],[31,-30],[3,-4],[43,-50],[15,-17],[56,-66],[7,-11],[3,-5],[1,-3],[2,-7],[4,-17],[2,-39],[0,-1],[-1,-7],[-3,-37],[0,-18],[4,-16],[8,-17],[23,-30],[11,-12],[10,-5],[60,-14],[24,-72],[15,-10],[15,-7],[33,-5],[25,-3],[4,13],[15,20],[1,0],[1,1],[8,2],[11,-13],[37,-53],[0,-2],[1,-5],[0,-1],[3,-99],[0,-13],[14,-60],[0,-1],[4,-7],[12,-18],[11,-19],[48,-49],[-10,-30]],[[69803,63225],[-12,-29],[-11,-26],[-92,-232],[-102,-245],[-3,-6],[-255,-542],[-4,-8],[-56,-116],[-155,-4],[-51,-1],[-231,-5],[-28,0],[-38,0],[-9,0],[-314,-8],[-41,-1],[-39,-1],[-48,-42],[-211,-202],[-33,-27],[-106,-89],[-1,0],[-139,-109],[-89,-70],[-128,-103],[-53,-34],[-86,-64],[-99,-88],[-50,-37],[-90,-73],[-64,-50],[-164,-130],[-265,-209],[-280,-220],[-58,-46],[-66,-42],[-5,-2],[-190,-82],[-67,-29],[-2,175],[0,6],[-22,117],[0,6],[-17,167],[-1,15],[-6,87],[4,169],[0,2],[-4,43],[-2,9],[-3,11],[-26,110],[-4,10],[-63,186],[0,2],[-1,3],[-7,16],[-2,14],[0,1],[0,6],[-1,23],[13,139],[0,8],[1,5],[3,29],[8,44],[2,9],[0,18],[1,12],[-6,35],[-4,27],[-20,119],[-2,5],[-7,19],[-50,-17],[-82,-29],[-24,-9],[-224,-88],[-233,-77],[-6,-2],[-210,-78],[-182,-66],[-127,-46],[-27,4],[-13,0],[-20,3],[-15,14],[-27,26],[-23,15],[-9,-18],[-19,-4],[-1,0],[-41,61],[-39,57],[-6,8],[-3,88],[-1,15],[-8,21],[-9,46],[-3,15],[1,76],[2,5],[6,18],[-1,16],[-12,48],[-1,4],[-21,59],[-9,15],[0,1],[-24,27],[-13,20],[-7,35],[1,18],[5,51],[7,19],[18,35],[2,6],[6,18],[0,16],[0,9],[-2,16],[-2,20],[-7,29],[0,1],[-8,29],[-3,8],[-1,6],[-4,10],[-9,14],[-3,4],[-14,12],[-20,17],[-5,9],[-1,1],[0,1],[-37,64],[-7,12],[-5,12],[-56,147],[-8,38],[0,5],[0,4],[-43,63],[-1,0],[-70,18],[-27,6],[-114,29],[-184,47],[-54,13],[-88,23],[-81,330],[-55,227],[-42,171],[-68,121],[-46,80],[-28,51],[-35,63],[-35,64],[-15,38],[-30,44],[-32,33],[-4,2],[-22,15],[-27,17],[-19,14],[-26,17],[-60,2],[-53,1],[-71,2],[-105,2],[-128,3],[-177,5],[-48,1],[-175,4],[-32,1],[-139,3],[-56,0],[-54,-13],[-82,0],[-37,32],[-99,85],[-31,25],[-72,52],[-1,1],[-49,36],[-63,46],[-39,-48],[-167,-208],[-66,30],[-39,23],[-246,152],[-164,101],[-286,197],[-104,72],[-44,28],[-69,40],[-90,54],[-78,50],[-83,52],[-25,16],[-50,32],[-39,25],[-46,26],[-149,85],[15,272],[6,132],[0,199],[-1,205],[0,163],[1,78],[2,130],[2,169],[3,251],[3,166]],[[79248,68996],[22,-52],[16,-31],[30,-59],[4,-37],[1,-59],[1,-113],[-40,-284],[-13,-49],[-5,-20],[-12,-47],[0,-1],[-19,-88],[-19,-87],[-73,-9],[-3,0],[-134,-59],[-4,-3],[-32,-26],[-15,-12],[-24,-33],[-39,-52],[-57,-77],[-28,-42],[-45,-86],[3,-3],[61,-62],[78,-442],[42,-56],[5,-6],[8,-10],[26,-45],[24,-58],[5,-13],[26,-61],[28,-97],[9,-31],[8,-15],[26,-45],[42,-41],[2,-1],[110,-73],[13,-9],[4,-7],[32,-47],[1,-2],[1,-4],[8,-22],[5,-13],[5,-57],[-3,-22],[-8,-76],[-9,-83],[0,-3],[4,-10],[16,-43],[10,-29],[16,-25],[19,-31],[19,-20],[25,-12],[30,-16],[79,-29],[1,0],[17,-16],[3,-5],[9,-17],[6,-10],[3,-24],[-6,-39],[-11,-23],[-2,-6],[-4,-21],[-9,-48],[10,-64],[2,-11],[5,-16],[6,-19],[9,-15],[12,-21],[20,-16],[31,-7],[59,3],[34,9],[16,15],[20,17],[33,45],[29,25],[8,0],[3,0],[18,-2],[4,-6],[15,-20],[3,-2],[4,-13],[-1,-10],[-2,-14],[-6,-11],[-7,-14],[-3,-2],[-38,-37],[-39,-112],[-4,-8],[-29,-56],[-20,-40],[-1,-10],[-1,-16],[-3,-43],[10,-22],[20,-40],[9,-17],[4,-2],[19,-12],[6,-4],[41,-12],[18,-5],[11,-18],[-3,-20],[-8,-10],[-4,-3],[-39,-27],[-3,-20],[16,-27],[106,-57],[8,-4],[12,-27],[-10,-29],[-5,-4],[-10,-9],[-35,7],[-8,10],[-15,3],[-10,-1],[-19,-20],[-2,-15],[-1,-2],[-2,-14],[6,-21],[1,-1],[25,-41],[12,-19],[11,-9],[20,-18],[16,-27],[-5,-35],[-11,-10],[-7,1],[-15,1],[-7,1],[-22,21],[-52,51],[-8,2],[-9,3],[-137,44],[-7,-6],[-12,-10],[-5,-23],[-24,-118],[-4,-25],[-2,-12],[-2,-18],[4,-201],[7,-89],[3,-19],[16,-94],[-5,-19],[-5,-19],[-4,-15],[-7,-6],[-15,-17],[-7,-6],[-16,-13],[-39,-13],[-5,-1],[-22,-23],[-10,-26],[-1,-28],[1,-3],[10,-35],[10,-19],[37,-28],[16,-11],[38,-8],[31,-7],[8,-8],[21,-20],[8,-8],[5,-13],[13,-27],[4,-9],[2,-28],[-1,-9],[-3,-19],[-1,-7],[-6,-111],[92,-56],[1,-3],[23,-76],[0,-2],[-8,-80],[-1,-10],[3,-15],[1,-2],[4,-17],[21,-37],[11,-11],[10,-11],[2,-9],[19,-58],[7,-21],[-3,-21],[-2,-14],[15,-28],[26,-21],[19,-4],[31,-7],[9,-13],[6,-9],[1,-2],[5,-17],[-8,-61],[-4,-34],[41,-74],[6,-10],[-1,-15],[-9,-83],[-31,-102],[-1,-9],[-7,-49],[8,-126],[2,-32],[3,-11],[36,-150],[8,-57],[-2,-12],[-5,-52],[-1,-15],[-32,-100],[-3,-8],[-3,-47],[3,-17],[10,-46],[34,-61],[22,-38],[6,-11],[4,-17],[5,-23],[5,-23],[-1,-7],[-6,-44],[-2,-15],[-28,-62],[-12,-18],[-9,-12],[-3,-5],[-9,-14],[-84,-82],[-6,-6],[-1,-5],[-11,-34],[-6,-21],[3,-25],[20,-37],[90,-102],[19,-21],[12,-18],[22,-34],[24,-41],[24,-77],[2,-9],[5,-9],[-1,-11],[-1,-4],[10,-70],[5,-15],[14,-41],[18,-48],[81,-154],[6,-8],[35,-45],[47,-31],[63,-13],[77,-1],[62,-11],[10,-1],[13,-2],[27,-14],[20,-21],[9,-20],[16,-33],[8,-30],[2,-36],[-8,-55],[-8,-25],[-9,-27],[-33,-49],[-134,-154],[-1,-1],[-31,-61],[-6,-19],[-5,-62],[5,-34],[24,-57],[93,-92],[12,-21],[7,-12],[4,-8],[23,-89],[15,-26],[3,-6],[17,-16],[4,-1],[70,-23],[22,3],[1,0],[8,6],[6,5],[24,18],[2,2],[13,-3],[6,-1],[9,-15],[4,-8],[6,-29],[-2,-36],[-1,0],[-45,-46],[-2,-15],[13,-24],[17,-29],[1,-2],[7,-7],[51,-55],[4,-4],[3,-1],[42,-24],[40,-13],[37,12],[17,18],[21,22],[11,41],[3,12],[11,9],[12,-3],[6,-10],[6,-11],[14,-24],[36,-112],[10,-42],[5,-57],[-8,-58],[-1,-1],[2,-4],[3,-13],[12,-18],[6,-10],[18,-4],[1,0],[9,8],[9,8],[2,24],[2,33],[2,30],[11,13],[1,1],[36,31],[8,7],[16,0],[3,0],[13,1],[7,-13],[8,-14],[3,-5],[2,-7],[7,-21],[28,-96],[-1,-9],[-1,-11],[-2,-15],[-31,-56],[-9,-16],[-6,-42],[2,-9],[2,-8],[12,-22],[4,-6],[56,-84],[20,-13],[110,-47],[3,-1],[59,-13],[23,-21],[6,-10],[15,-28],[2,-3],[6,-30],[50,-44],[29,-25],[2,-2],[47,-42],[2,-2],[0,-5],[-1,-14],[-3,-41],[14,-43],[6,-9],[15,-24],[29,-22],[38,-5],[36,-15],[63,-34],[43,-33],[10,-7],[24,-14],[13,-7],[52,-29],[15,-9],[14,-1],[11,-1],[10,-1],[14,4],[33,9],[89,13],[19,0],[28,-8],[44,-12],[9,-2],[21,-33],[4,-17],[-5,-38],[-6,-9],[-2,-3],[-9,-13],[-9,-7],[-17,-11],[-17,-12],[-24,-8],[-50,-16],[-29,-9],[-1,0],[-3,-3],[-41,-32],[2,-32],[0,-1],[26,-45],[28,-30],[155,-38],[13,-27],[4,-8],[1,-1],[-2,-14],[-5,-53],[7,-14],[17,-35],[4,-9],[2,-3],[31,-32],[24,-14],[73,-19],[4,-1],[13,-3],[15,-14],[2,-2],[11,-19],[7,-13],[9,-34],[-4,-27],[-4,-9],[-15,-31],[-3,-21],[-3,-19],[0,-3],[2,-15],[6,-38],[0,-1],[1,-1],[7,-16],[41,-73],[19,-25],[81,-61],[5,-8],[26,-47],[3,-10],[17,-51],[5,-17],[23,-37],[21,-18],[23,-19],[0,-1],[31,-26],[5,-11],[21,-38],[15,-28],[23,-86],[0,-8],[0,-12],[5,-13],[12,-30],[36,-60],[43,-42],[24,-16],[2,-2],[47,-6],[51,17],[37,4],[12,1],[12,-2],[8,-2],[2,-1],[5,-4],[35,-32],[5,-2],[92,-20],[18,16],[4,3],[39,39],[17,17],[32,-8],[98,-24],[38,-9],[11,-18],[16,-30],[9,-16],[31,-88],[1,-3],[-14,-81],[-2,-9],[0,-3],[-2,-11],[3,-6],[10,-21],[8,-6],[103,-82],[7,-6],[24,-13],[45,-10],[5,-1],[9,1],[26,5],[15,3],[17,15],[27,23],[17,8],[16,-3],[6,-11],[3,-5],[4,-7],[0,-16],[-9,-52],[-6,-33],[11,-18],[5,-9],[19,-2],[12,-1],[41,40],[16,15],[18,-4],[11,-18],[-5,-31],[-11,-20],[-73,-53],[0,-1],[-9,-14],[-1,-18],[-1,-2],[-3,-39],[10,-46],[8,-13],[15,-24],[28,-6],[34,12],[22,-9],[2,-6],[2,-4],[5,-12],[-3,-23],[-16,-21],[-11,-9],[-35,-41],[4,-9],[18,-43],[6,-12],[7,-11],[13,-62],[8,-39],[-9,-62],[-38,-40],[-7,1],[-37,5],[-15,-13],[-3,-23],[28,-55],[7,-13],[14,-39],[3,-21],[-5,-39],[-19,-16],[0,1],[-3,0],[-18,4],[-12,11],[-3,7],[-6,15],[-8,44],[-4,31],[-4,5],[-19,31],[-6,10],[-6,1],[-2,1],[-20,4],[-11,-6],[-26,-22],[0,-5],[-3,-19],[-1,-7],[17,-64],[-6,-34]],[[83884,55429],[-54,41],[-22,-8],[-18,-7],[-5,-1],[-6,2],[-11,3],[-3,5],[-43,65],[0,1],[1,18],[9,18],[19,40],[-17,-11],[-82,-54],[-1,0],[-7,-5],[-18,3],[-60,7],[-9,7],[-79,63],[-2,29],[0,6],[10,45],[-10,42],[-19,13],[-30,21],[-42,30],[-21,17],[-2,2],[-1,0],[-7,59],[-2,6],[-4,17],[-6,20],[-24,12],[-29,-4],[-31,-7],[-15,3],[-14,9],[-34,-3],[-44,-3],[-34,-3],[-10,-1],[-1,1],[-31,28],[-49,43],[-19,17],[-36,32],[-2,2],[-34,-5],[-17,-7],[-13,-5],[-15,-6],[-25,-11],[-7,-3],[-12,-5],[-37,-11],[-33,0],[-5,2],[-15,5],[-31,18],[0,1],[-12,10],[-2,5],[-20,8],[-11,-2],[-5,-2],[-10,-6],[-13,-7],[-3,-2],[-10,-6],[-6,-7],[-4,-6],[-6,-10],[-9,-14],[-1,-9],[-2,-6],[-1,-30],[0,-2],[6,-20],[2,-5],[2,-5],[20,-27],[8,-15],[0,-1],[3,-10],[3,-22],[-1,-9],[-17,-29],[-38,-54],[-33,-48],[-6,-3],[-40,-21],[-3,-1],[-83,-43],[-8,-6],[-47,-75],[0,-1],[-1,-46],[-4,-6],[-5,-5],[-13,-3],[-18,-3],[-2,0],[-16,5],[-41,13],[-1,1],[-1,1],[-56,14],[-33,3],[-25,1],[-1,0],[-20,-3],[-26,-5],[-17,-7],[-168,-59],[-14,-10],[-2,-2],[-22,-18],[-11,-13],[-1,-2],[-16,-27],[-9,-8],[-2,-2],[-5,-4],[-40,-33],[-1,-2],[-39,-13],[-30,-2],[-13,-3],[-9,-3],[-7,-3],[-31,-15],[-50,-47],[-9,-9],[-6,-14],[1,-10],[0,-5],[-6,-19],[-5,-9],[-4,-5],[-86,-97],[-5,-5],[-3,-4],[-22,-35],[-27,-47],[-70,2],[-4,0],[-60,3],[-25,-1],[-24,-12],[-8,-3],[-23,-11],[-51,-29],[-27,-16],[-87,-32],[-28,25],[-29,17],[-23,5],[-23,-2],[-24,-10],[-55,-21],[-22,18],[-39,34],[-27,10],[-24,1],[-40,-18],[-26,-13],[-22,-9],[-22,-10],[-31,-16],[-167,-79],[-119,-56],[-25,-18],[-32,-44],[-58,18],[-86,31],[-44,16],[-276,102],[-192,70],[-387,142],[-83,30],[-246,88],[-365,131],[-23,8],[-436,156],[-368,132],[-96,26],[-210,82],[-16,35],[-17,45],[-6,50],[1,52],[5,31],[2,15],[4,23],[8,48],[-73,-16],[-46,-40],[-33,-12],[-54,-21],[-83,-31],[-65,-15],[-24,10],[-25,15],[-30,1],[-34,-3],[-29,-3],[-19,-9],[-35,-13],[-16,-4],[-23,-2],[-33,-2],[-15,2],[-4,0],[-21,8],[-5,2],[-18,10],[-10,14],[-17,23],[-17,7],[-35,8],[-13,-2],[-88,-27],[-22,-12],[-86,-122],[-16,-22],[-7,-10],[-2,-5],[0,-1],[-2,0],[-3,-1],[-18,-14],[-9,-12],[-6,-16],[-1,-7],[0,-1],[-1,-2],[-22,-57],[-1,-4],[-26,-23],[-25,19],[-39,24],[-4,33],[-10,8],[-12,9],[-27,11],[-24,33],[-29,25],[-18,34],[-13,33],[-23,41],[-36,22],[-58,-5],[-50,-9],[-24,-2],[-50,2],[-24,5],[-47,16],[-28,10],[-57,19],[-35,-3],[-27,-10],[-59,-24],[-25,-1],[-25,13],[-37,47],[-43,24],[-17,22],[-29,45],[-21,34],[-12,25],[-22,42],[-21,44],[-26,35],[-20,21],[-27,33],[-18,27],[-14,34],[-9,36],[-11,30],[-19,36],[-18,37],[-11,34],[-10,37],[-133,3],[-59,1],[-66,1],[-109,1],[-87,2],[-29,0],[-38,1],[-2,0],[-57,1],[-196,3],[-62,0],[-143,3],[-73,1],[-3,0],[-87,1],[-16,31],[-41,80],[-30,58],[-1,3],[-40,79],[-82,160],[-49,95],[-54,106],[-79,154],[-56,109],[-127,249],[-32,62],[-38,60],[-13,27],[-101,205],[-2,4],[-27,1],[-11,0],[-42,11],[-36,9],[-42,10],[-23,8],[-70,14],[-18,18],[-38,78],[-69,87],[-44,48],[-153,-146],[-82,-86],[-61,1],[-30,1],[-101,22]],[[72417,58135],[-116,30],[-5,1],[-127,32],[-61,16],[-166,40],[-30,4],[-40,1],[-37,-4],[-41,-4],[-52,-7],[-81,-8],[-118,-15],[-27,-3],[-52,-6],[-49,-9],[-39,-6],[-94,-13],[-66,-10],[-29,-4],[-37,0],[-17,-5],[-106,-33],[-34,3],[-33,21],[-39,45],[-5,6],[-49,83],[-17,28],[-30,106],[-2,7],[-63,222],[-118,417],[-27,93],[-1,3],[-253,903]],[[70356,60069],[123,95],[1,1],[214,165],[90,70],[29,23],[142,111],[83,64],[44,36],[4,4],[122,94],[161,127],[69,53],[208,164],[85,66],[5,4],[55,44],[21,17],[154,111],[73,55],[-74,36],[-1,2],[-1,1],[-1,1],[-59,93],[-3,7],[-23,44],[-53,101],[-2,6],[-15,46],[-1,17],[1,2],[1,2],[12,26],[8,13],[3,10],[3,26],[-2,16],[-3,4],[-34,6],[-9,0],[-20,-2],[-16,7],[-45,51],[-19,23],[-54,63],[-3,3],[-1,-3],[-3,-20],[-7,-7],[-1,-2],[-10,-6],[-11,-7],[-7,-3],[-8,0],[-10,7],[-9,10],[-9,33],[-1,5],[-2,1],[-19,12],[-66,23],[-16,4],[-34,-16],[-32,-12],[-1,0],[-56,42],[-43,95],[-1,10],[3,10],[21,28],[0,1],[-10,3],[-9,3],[-1,1],[-9,7],[-69,54],[-3,3],[-33,25],[-2,2],[-59,24],[-17,-8],[-36,2],[-138,22],[0,1],[-7,15],[-43,96],[-2,0],[-8,-1],[-18,-25],[-21,6],[-20,-19],[-10,32],[-25,-17],[-26,-9],[-27,15],[-26,3],[-20,7],[-17,29],[-28,20],[-34,10],[-20,32],[-2,32],[-17,22],[-23,24],[-13,-26],[-20,20],[-25,36],[-26,-10],[-20,-10],[-8,37],[-19,18],[-23,0],[-13,28],[-12,26],[-33,47],[-24,11],[-10,31],[-9,23],[-6,13],[-24,3],[-19,16],[-4,47],[-25,13],[-11,-31],[-31,62],[-20,5],[-21,5],[0,36],[-22,1],[-18,-6],[-9,-3],[-29,-16],[-11,31],[-24,-7],[-11,38],[-14,40],[-23,42],[-19,34],[-21,5],[-18,47],[-31,0],[-57,26]],[[99661,57469],[16,-8],[39,4],[53,8],[35,18],[46,35],[134,-172],[-19,-3],[-49,-6],[-40,-15],[-41,-25],[-63,-39],[-45,37],[-25,21],[-53,-37],[-32,39],[-13,15],[-55,112],[-13,30],[-5,13],[2,45],[15,38],[31,-15],[27,-51],[23,-26],[17,-10],[3,-3],[12,-5]],[[99721,57520],[-47,-3],[-23,20],[-34,43],[-24,41],[-4,38],[18,31],[12,50],[-11,55],[-39,49],[16,25],[241,-298],[-33,-30],[-21,-13],[-23,-6],[-28,-2]],[[90584,48287],[-29,1],[-41,0],[-1,0],[-124,1],[-30,0],[-7,0],[-18,-1],[-21,1],[-23,0],[-74,0],[-49,-2],[-66,0],[-61,-1],[-33,0],[-3,0],[-34,0],[-85,-1],[-7,0],[-91,-1],[-269,-2],[-198,-1],[-139,-1],[-73,0],[-39,0],[-172,-1],[-45,0],[-24,0],[-252,-2],[-38,32],[-8,78],[1,83],[0,41],[-7,28],[-7,27],[3,19],[7,54],[2,12],[16,45],[36,49],[4,6],[6,12],[1,4],[8,17],[0,4],[8,50],[-12,61],[-11,60],[-3,17],[3,31],[3,31],[1,5],[6,18],[6,19],[1,4],[30,92],[-7,35],[-17,46],[-11,40],[-6,31],[-6,39],[-10,50],[-14,54],[-29,42],[-30,12],[-31,-10],[-20,-31],[-11,-37],[-10,-54],[-17,-102],[2,-34],[0,-36],[-19,-33],[-39,-16],[-22,7],[-161,96],[-25,16],[-27,24],[-19,29],[16,32],[27,36],[0,38],[-21,33],[-42,21],[-12,37],[13,35],[16,36],[-2,51],[-10,53],[0,47],[5,63],[-4,32],[-8,38],[-32,26],[-38,17],[-34,18],[-15,24],[5,48],[16,50],[-13,47],[-48,29],[5,33],[23,61],[-16,24],[-46,3],[-25,11],[-14,42],[12,51],[18,18],[64,6],[4,39],[-50,12],[-22,16],[-11,30],[-9,99],[-23,61],[15,45],[39,0],[16,-44],[21,-27],[21,-24],[28,-75],[25,1],[29,75],[3,8],[20,21],[15,27],[12,32],[2,33],[-6,51],[-14,41],[-24,16],[-25,-14],[-1,-5],[-15,-42],[-18,-37],[-25,0],[-15,26],[-19,45],[-14,64],[-10,41],[-15,27],[-29,33],[-15,51],[-25,142],[-28,11],[-12,-28],[-42,-78],[-25,-69],[-25,-3],[-67,-16],[-81,-1],[-21,4],[-23,4],[-29,37],[-14,41],[-1,1],[-1,10],[-5,48],[9,136],[12,96],[0,1],[15,39],[14,44],[3,56],[-2,57],[-21,60],[-14,26],[-21,32],[-22,36],[-14,58],[-22,57],[0,1],[-1,1],[-34,27],[-7,-2],[-27,-6],[-35,-14],[-22,5],[-18,15],[-20,31],[-18,51],[-1,4],[-12,24],[-13,27],[-6,4],[-29,23],[-1,1],[-28,6],[-5,2],[-60,13],[-7,4],[-19,11],[-15,8],[-17,17],[-23,23],[-29,30],[-4,6],[-17,24],[-15,21],[-3,5],[0,2],[7,32],[25,20],[1,0],[29,17],[1,1],[2,2],[17,23],[1,46],[0,2],[-4,5],[-29,37],[-23,7],[-45,7],[-19,3],[-8,1],[-35,7],[-39,34],[-80,54]],[[86686,52493],[-12,12],[-20,36],[-67,119],[-9,17],[-4,17],[6,43],[10,8],[3,3],[0,7],[1,59],[6,42],[1,1],[29,45],[1,13],[8,71],[1,10],[-67,183],[-3,4],[-6,12],[-12,21],[-11,14],[-48,63],[-3,1],[-64,20],[-17,26],[-30,82],[0,13],[0,27],[-13,23],[-90,140],[-10,2],[-9,1],[-17,2],[-2,0],[-147,181],[0,2],[26,140],[1,0],[10,10],[1,7],[1,4],[-25,74],[-8,15],[-1,2],[-14,24],[-8,10],[-11,2],[-7,2],[-10,2],[-15,-10],[-9,-6],[-15,-11],[-32,7],[-25,12],[-53,25],[-1,3],[-6,17],[-7,19],[3,19],[0,1],[-6,49],[-16,24],[-2,3],[-20,-14],[-23,10],[-31,-5],[-22,33],[-19,39],[3,48],[12,37],[5,33],[-2,9],[-46,183],[-77,138],[-1,0],[-15,3],[-14,-12],[-4,-4],[-5,1],[-7,2],[-4,1],[-11,10],[-3,9],[-6,15],[-7,20],[-40,113],[-2,4],[-42,134],[-6,45],[-9,30],[-31,51],[-8,17],[-19,41],[-32,179],[-41,151],[-5,17],[-1,3],[8,54],[-6,94],[-1,4],[-13,99],[-16,27],[-12,14],[-13,14],[-2,3],[-25,8],[-12,4],[-13,30],[-3,5],[-1,4],[-2,24],[0,17],[-2,24],[9,83],[47,149],[11,10],[19,-3],[31,-4],[1,0],[16,24],[38,175],[15,67],[1,6],[2,8],[1,12],[2,7],[-22,29],[-36,-4],[-5,0],[-8,22],[-1,1],[-3,9],[-9,9],[-8,4],[-31,9],[-1,1],[-76,40],[-15,13],[-1,1],[-7,14],[-34,88],[0,1],[0,11],[1,8],[40,56],[13,18],[2,3],[18,112],[0,2],[19,111],[0,2],[-6,99],[16,145],[5,13],[25,65],[3,6],[25,63],[-14,103],[-9,50],[12,62],[-1,6],[-1,47],[0,3],[-35,81],[-4,8],[-33,86],[-6,14],[-3,9],[-50,147],[-13,43],[4,27],[6,8],[17,19],[5,55],[-9,50],[-18,28],[-14,23],[-1,1],[-13,11],[-78,17],[-1,0],[-42,56],[-15,21],[-7,9],[-21,17],[-115,49],[-87,68],[-3,-1],[-6,-1],[-11,-2],[-4,-3],[-10,-9],[-8,-7],[-2,-15],[-2,-11],[-1,-9],[15,-58],[2,-6],[-1,-6],[-3,-21],[-12,-14],[-18,-12],[-22,5],[-16,30],[-2,2],[-1,3],[-17,49],[-37,67],[-10,8],[-11,2],[-1,0],[-26,6],[-20,-8],[-11,-5],[-8,3],[-29,9],[-1,3],[-9,15],[1,28],[13,11],[27,20],[2,17],[0,2],[1,5],[-10,18],[-25,6],[-7,-10],[-5,-8],[-14,-9],[-8,-7],[-4,-2],[-5,0],[-24,3],[-9,1],[-4,6],[-8,12],[-4,6],[-1,12],[3,13],[4,16],[0,1],[1,1],[16,28],[0,20],[-39,88],[-55,117],[-2,4],[-5,10],[-8,13],[-17,4],[-24,5],[-27,6],[-52,54],[-21,22],[-13,23],[2,15],[6,42],[6,40],[0,4],[-2,8],[-9,30],[3,20],[13,11],[5,5],[4,3],[22,-5],[30,-15],[5,-2],[2,1],[4,4],[10,9],[1,28],[-13,23],[-20,16],[-31,13],[-9,4],[-7,13],[2,12],[8,34],[-17,37],[-5,12],[3,27],[53,97],[3,2],[15,10],[8,10],[-5,4],[-61,42],[-2,1],[-10,-3],[-20,-6],[-17,-13],[-29,-22],[-19,-15],[-4,0],[-23,2],[-2,1],[-17,39],[6,43],[2,1],[61,53],[3,24],[24,74],[19,20],[6,47],[-4,13],[-21,33],[-18,11],[-8,3],[-4,1],[-25,9],[-7,-7],[-38,8],[-6,3],[-76,34],[-6,3],[-45,63],[-8,13],[-1,0],[-42,71],[-2,3],[10,45],[-10,19],[-37,16],[-1,-2],[-23,-53],[-5,-5],[-4,-3],[-2,-2],[-13,2],[-60,6],[-13,23],[7,44],[0,7],[12,33],[13,17],[3,4],[31,61],[15,41],[5,31],[-10,18],[-19,4],[-22,-18],[0,-1],[-2,0],[-14,3],[-8,7],[-3,4],[-1,2],[-28,74],[-4,11],[0,4],[1,4],[-7,86],[-11,17],[-8,11],[-28,6],[-14,11],[-2,4],[-10,27],[4,31],[1,1],[58,100],[4,6],[53,92],[4,5],[24,32],[8,11],[5,35],[-5,105],[0,5],[-7,104],[1,5],[1,4],[4,30],[11,10],[1,-1],[6,-1],[2,0],[16,44],[6,59],[-7,11],[-55,99],[49,29],[1,14],[0,14],[1,42],[0,10],[30,66],[13,16],[14,9],[36,8],[13,2],[19,10],[18,12],[0,2],[0,1],[26,7],[-29,-67],[120,-113],[3,-2],[12,-12],[15,-7],[8,6],[1,7],[13,121],[21,26],[60,76],[41,52],[1,1],[18,1],[13,0],[4,5],[4,8],[2,12],[0,2],[1,31],[6,141],[13,66],[20,48],[3,19],[0,3],[0,1],[3,63],[8,144],[2,39],[6,122],[16,63],[17,71],[5,15],[50,52],[13,3],[10,-8],[16,-21],[16,0],[0,1],[2,0],[16,9],[42,61],[9,13],[3,-11],[7,-25],[32,-37],[9,1],[38,15],[39,15],[74,29],[33,31],[1,0],[2,3],[77,81],[17,19],[3,7],[20,46],[5,13],[3,4],[20,27],[33,44],[80,-3],[92,-1],[13,2],[14,17],[1,1],[20,59],[8,17],[32,42],[10,10],[69,61],[4,5],[51,129],[19,-3],[2,0],[25,3],[31,12],[5,2],[37,71],[36,69],[8,16],[2,30],[2,38],[-2,21],[-11,48],[-9,38],[1,2],[24,51],[77,14],[3,1],[10,37],[-15,55],[37,63],[28,-2],[15,34],[-40,42],[17,38],[26,22],[-12,43],[-25,10],[-33,-4],[-29,-20],[-26,-1],[-33,34],[-21,28],[28,23],[-11,28],[-29,31],[-5,51],[-5,53],[21,-10],[22,25],[-10,35],[-34,20],[-23,16],[-6,35],[14,30],[22,8],[45,18],[29,37],[43,10],[25,-9],[17,22],[-4,37],[-30,20],[-1,38],[-8,34],[25,12],[15,28],[25,32],[17,21],[61,6],[35,3],[-9,41],[20,20],[29,10],[16,74],[29,62],[19,45],[25,-30],[43,4],[35,31],[25,-2],[26,-39],[27,3],[5,42],[0,2],[4,19],[4,7],[1,2],[24,23],[6,9],[1,10],[0,20],[-6,13],[-6,5],[-3,1],[-6,2],[-8,-2],[-4,-1],[-22,-18],[-9,2],[-11,6],[-5,10],[-4,10],[-1,6],[5,17],[11,75],[-7,24],[2,43],[28,107],[48,130],[18,49],[51,91],[8,12],[9,2],[2,-1],[7,-9],[6,-19],[0,-3],[-1,-10],[3,-12],[2,-11],[0,-3],[5,-8],[11,-16],[5,-8],[7,-1],[24,-3],[7,-1],[2,1],[27,21],[17,22],[4,6],[5,12],[30,68],[22,51],[13,79],[-7,21],[-19,49],[-7,18],[-1,2],[-63,151],[21,70],[12,38],[1,1],[-3,42],[-20,15],[-5,34],[14,29],[29,10],[26,0],[16,28],[-12,26],[-40,45],[11,35],[20,-10],[15,-31],[19,-25],[35,9],[13,34],[-5,38],[8,41],[21,12],[33,7],[26,13],[22,28],[7,17],[8,17],[0,2],[13,39],[2,135],[0,2],[-2,16],[4,100],[0,1],[28,89],[31,98],[4,11],[0,1],[1,1],[7,9],[14,20],[11,6],[0,1],[1,0],[4,2],[66,29],[9,3],[7,3],[11,17],[1,2],[55,82],[8,8],[7,3],[1,0],[6,-1],[31,-3],[20,3],[12,10],[14,17],[10,21],[10,21],[8,17],[2,3],[6,9],[7,10],[6,2],[10,4],[10,-1],[5,0],[1,0],[19,-10],[-1,-12],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-12,-24],[-15,-32],[-1,-2],[-7,-11],[-2,-12],[-1,-8],[-3,-22],[7,-18],[14,-15],[31,-7],[26,22],[25,39],[16,58],[80,293],[1,3],[9,50],[3,8],[0,2],[9,25],[4,11],[6,12],[14,31],[9,19],[1,2],[1,0],[0,1],[9,8],[9,4],[4,2],[2,1],[1,0],[16,0],[20,9],[1,0],[8,6],[22,23],[37,39],[32,58],[2,7],[5,14],[1,3],[23,51],[9,22],[13,56],[1,1],[46,32],[22,16],[8,5],[10,-64],[0,-1],[51,-62],[55,37],[6,7],[13,14],[36,77],[11,82],[0,15],[0,1],[10,48],[39,66],[6,5],[1,0],[10,-1],[12,-13],[0,-1],[1,-3],[15,-44],[5,-5],[0,-1],[9,-6],[11,3],[41,52],[3,8],[-2,20],[-11,14],[-2,3],[-11,22],[-3,7],[-5,35],[2,39],[12,22],[8,3],[12,0],[14,-5],[10,-3],[10,3],[11,6],[9,9],[5,9],[1,21],[0,1],[-1,0],[-10,9],[-7,4],[-2,1],[-33,-4],[-30,-3],[-1,0],[-12,10],[-2,7],[1,12],[0,2],[2,29],[-2,30],[2,21],[4,26],[1,1],[3,11],[7,41],[-10,30],[-1,28],[0,1],[28,71],[4,7],[13,10],[2,1],[1,0],[18,-2],[4,-10],[-1,-37],[7,-9],[50,-25],[9,2],[9,4],[4,7],[-2,20],[-7,94],[14,3],[24,21],[-12,38],[-18,-22],[-19,-4],[-3,0],[-13,39],[-13,25],[-23,22],[-34,-16],[-5,39],[16,27],[1,2],[-8,29],[-24,-3],[-20,16],[9,31],[31,10],[28,-8],[1,20],[20,11],[21,24],[6,7],[28,34],[30,85],[2,6],[4,88],[-3,14],[0,1],[-25,28],[-8,33]],[[89132,71210],[33,-42],[77,-97],[93,-117],[66,-84],[322,-409],[37,-48],[20,-25],[8,-11],[1219,-1553],[99,-125],[568,-724],[184,-234],[1232,-1569],[75,-96],[71,-90],[1988,-2533],[779,-996],[59,-75],[182,-233],[1114,-1424],[70,-90],[181,-232],[52,-66],[251,-321],[15,-19],[233,-297],[779,-992],[192,-248],[124,-161],[243,-316],[-39,-7],[-81,2],[-42,-87],[-44,-57],[-48,-20],[-58,-4],[-52,-15],[-51,-20],[-38,-8],[-58,-15],[-44,-4],[-61,-27],[-42,-6],[-29,-25],[20,-19],[35,-2],[51,2],[27,13],[28,0],[23,12],[28,19],[41,8],[32,12],[28,5],[41,3],[109,15],[43,5],[63,46],[44,16],[41,-35],[56,-110],[-14,-74],[-13,-28],[-7,-66],[7,-56],[14,-54],[30,-61],[27,-81],[44,-28],[51,-45],[67,-16],[55,-13],[75,-5],[78,-17],[54,3],[10,-106],[-55,-62],[-85,-3],[-114,-15],[-82,-18],[-124,-17],[-128,-27],[-62,-23],[-79,-24],[-58,-38],[-52,-25],[-56,-29],[-94,-36],[-42,60],[-46,-20],[-28,-63],[-62,-30],[-112,-46],[-171,-82],[-108,-49],[-184,-108],[-85,-41],[-79,-29],[-70,-27],[-81,-32],[-179,-83],[-61,-36],[-78,-36],[-65,-36],[-83,-44],[-67,-36],[-89,-57],[-70,-33],[-161,-100],[-75,-45],[-73,-48],[-69,-45],[-69,-46],[-171,-118],[-47,-32],[-52,-40],[-95,-71],[-110,-86],[-64,-50],[-68,-58],[-40,-35],[-44,-40],[-88,-77],[-124,-90],[-43,-41],[-47,-43],[-365,-305],[-39,-30],[-50,-37],[-60,-56],[-109,-106],[-51,-37],[-61,-56],[-106,-106],[-39,-28],[-51,-48],[-131,-134],[-64,-62],[-143,-141],[-51,-57],[-32,-32],[-31,-31],[-37,-39],[-48,-49],[-55,-64],[-94,-100],[-64,-70],[-99,-116],[-54,-57],[-65,-72],[-56,-73],[-41,-43],[-51,-63],[-64,-78],[-73,-92],[-57,-70],[-68,-82],[-74,-96],[-43,-57],[-72,-99],[-57,-72],[-55,-81],[-36,-50],[-37,-58],[-31,-50],[-64,-104],[-101,-117],[-62,-70],[-54,-73],[-79,-96],[-50,-65],[-118,-144],[-44,-58],[-46,-60],[-32,-43],[-49,-73],[-41,-58],[-53,-74],[-82,-104],[-74,-97],[-144,-184],[-77,-104],[-67,-95],[-66,-101],[-76,-112],[-67,-109],[-105,-163],[-35,-57],[-38,-66],[-33,-64],[-35,-52],[-39,-59],[-39,-64],[-31,-54],[-61,-96],[-58,-87],[-40,-79],[-52,-73],[-43,-71],[-43,-68],[-34,-61],[-47,-73],[-39,-58],[-41,-73],[-47,-67],[-53,-81],[-37,-76],[-54,-79],[-62,-77]],[[86686,52493],[-7,0],[-8,3],[-12,-4],[-8,-3],[-25,5],[-25,25],[-1,1],[-17,30],[-30,50],[-7,12],[-18,12],[-31,7],[-20,-4],[-18,-20],[-1,-2],[0,-1],[-3,-20],[9,-13],[3,-5],[4,-5],[8,-5],[28,-15],[25,-25],[3,-3],[14,-14],[11,-22],[6,-10],[18,-36],[3,-28],[-4,-17],[-2,-9],[-3,-12],[-22,-20],[-17,-4],[-14,4],[-35,11],[-43,33],[-24,18],[-68,15],[-42,-9],[-17,-4],[-4,-1],[-5,-6],[-53,-64],[-11,-13],[-28,66],[0,1],[-19,42],[-16,23],[-11,10],[-24,20],[-5,3],[-6,1],[-7,1],[-19,1],[-11,-9],[-2,-16],[5,-7],[2,-2],[9,-14],[14,-8],[31,-18],[10,-18],[-5,-35],[-2,-3],[-13,-14],[-8,-6],[-17,-3],[-75,-9],[-30,-13],[-7,-7],[-31,-29],[-19,-68],[-20,-23],[-15,7],[-5,10],[-5,8],[0,24],[-7,13],[-6,11],[-4,8],[-22,9],[-15,-17],[1,-7],[6,-34],[-2,-13],[-1,-7],[-1,-8],[-24,-30],[-33,-29],[-27,-10],[-137,10],[-103,23],[-26,18],[-7,7],[-11,10],[-10,9],[-5,9],[-4,6],[-7,13],[-5,33],[4,23],[9,18],[16,15],[2,1],[11,10],[5,2],[15,5],[14,5],[30,0],[25,0],[20,8],[9,7],[9,8],[15,13],[7,13],[2,2],[8,14],[1,31],[-8,15],[-7,13],[-8,14],[-14,11],[-13,3],[-25,5],[-6,2],[-11,-8],[-21,-15],[-34,-25],[-23,-17],[-10,-4],[-32,-15],[-14,-2],[-15,-3],[-41,-4],[-84,-9],[-16,2],[-159,14],[-2,0],[-19,4],[-6,1],[-7,13],[-3,4],[-1,2],[7,5],[29,26],[8,7],[8,6],[4,10],[5,12],[7,57],[4,41],[-9,24],[-3,7],[-1,3],[-4,6],[-20,12],[-38,9],[-19,-10],[-9,-5],[-10,-5],[-2,-4],[-29,-53],[-1,-2],[-10,-8],[-11,-9],[-9,1],[-21,2],[-8,1],[-16,24],[0,4],[0,18],[-2,122],[3,20],[9,7],[3,3],[7,6],[22,8],[18,7],[10,9],[23,21],[14,13],[2,6],[1,3],[6,66],[2,17],[-3,7],[-20,42],[-9,18],[-21,9],[-143,-125],[-9,-14],[-8,-14],[-2,-2],[-33,-31],[-6,-6],[-14,3],[-33,7],[-3,1],[-2,1],[-11,8],[-14,9],[-18,20],[-4,5],[-6,13],[-9,18],[0,5],[-6,61],[-18,88],[-1,2],[0,2],[-4,12],[-17,49],[-17,36],[-7,17],[-15,31],[-3,12],[-5,22],[0,2],[-6,44],[12,61],[9,22],[34,33],[9,4],[29,15],[16,14],[10,9],[0,2],[5,37],[-7,9],[-6,9],[-14,19],[-73,33],[-14,7],[-24,17],[-5,7],[-22,27],[-4,8],[-4,6],[-5,29],[2,10],[19,102],[5,26],[7,12],[2,3],[7,54],[-1,32],[-2,7],[-21,77],[-1,2],[-2,4],[-34,60],[-59,61],[0,1],[-50,65],[-1,1],[-6,11],[-23,41],[-70,125],[-17,29],[-3,12],[-20,78],[-18,67],[0,3],[1,9],[-16,44],[-19,28],[-34,31],[-19,24],[-41,50],[-25,45],[-16,28],[-7,14],[-9,21]],[[84045,54824],[-4,14],[0,1],[-3,6],[-8,19],[-3,14],[-12,65],[-10,18],[-5,9],[-12,21],[-9,23],[-6,15],[-38,41],[-4,4],[-13,23],[3,19],[30,21],[4,2],[19,13],[9,39],[-23,45],[-43,44],[-7,7],[-4,6],[-10,21],[-11,22],[-4,65],[3,28]],[[56999,64886],[9,-23],[5,-18],[-5,-35],[-1,-13],[-1,-7],[-1,-8],[-42,-107],[-19,-39],[-23,-23],[-37,-37],[0,-1],[-4,-1],[-24,-6],[-18,-5],[-5,1],[-6,1],[-138,20],[-35,-23],[-61,-129],[-13,-40],[-2,-16],[-3,-23],[-4,-32],[9,-40],[2,-4],[21,-31],[57,-37],[87,-24],[26,-7],[32,32],[0,2],[11,81],[11,28],[9,15],[35,31],[17,-1],[17,-1],[12,-17],[20,-28],[-3,-39],[-1,-16],[-6,-14],[-4,-10],[-9,-18],[-17,-33],[-11,-22],[-2,-4],[-64,-109],[-14,-25],[-17,-24],[-5,-6],[-7,-7],[-28,-25],[-22,-8],[-35,-31],[-5,-19],[-2,-10],[4,-10],[6,-18],[7,-6],[12,-10],[33,-10],[10,-3],[12,-2],[52,-7],[23,-13],[51,-57],[40,-25],[1,-1],[2,0],[17,-4],[27,-5],[1,-1],[2,1],[26,13],[24,10],[23,-4],[8,-14],[1,-1],[7,-12],[7,-12],[-1,-3],[-4,-20],[-1,-8],[-3,-14],[-34,-43],[-4,-5],[0,-2],[-1,-9],[-3,-19],[2,-4],[11,-28],[19,-27],[2,-3],[12,-3],[10,-1],[4,-1],[15,5],[45,42],[12,12],[6,6],[18,0],[5,0],[1,0],[14,-25],[-8,-37],[-15,-13],[-75,-67],[-17,-22],[-14,-31],[0,-2],[-4,-26],[-3,-22],[4,-23],[14,-24],[16,-3],[4,-1],[16,-12],[18,-20],[6,-11],[22,-42],[2,-4],[70,-145],[1,-3],[3,0],[7,-2],[15,-15],[1,-1],[48,-48],[1,-7],[4,-23],[2,-19],[-10,-53],[-24,-24],[-12,-12],[-109,-175],[-1,-4],[-3,-25],[4,-14],[1,-4],[14,-20],[28,-5],[2,-1],[8,3],[29,11],[16,-6],[7,-3],[16,-32],[0,-1],[0,-1],[-5,-34],[0,-7],[-5,-4],[-23,-20],[-37,-8],[-5,-1],[-24,5],[-38,25],[-4,1],[-53,10],[-69,2],[-5,-5],[-3,-2],[-4,-4],[-1,-14],[-4,-73],[0,-3],[-2,-15],[-11,-37],[-42,-90],[-7,-15],[-12,-21],[-19,-33],[-40,-43],[-18,-5],[-18,-5],[-34,4],[-21,3],[-3,0],[-19,-13],[-9,-15],[-7,-80],[31,-130],[25,-63],[1,-3],[0,-2],[-3,-18],[-8,-8],[-3,-3],[-33,10],[-10,3],[-51,56],[-73,80],[-9,7],[-35,2],[-17,-12],[-2,-1],[-2,-4],[-7,-11],[-5,-38],[7,-12],[3,-5],[15,-31],[-16,-99],[-45,-35],[-96,-9],[-28,7],[-10,-8],[-8,-11],[-2,-12],[-3,-26],[8,-40],[9,-14],[8,-15],[9,-2],[5,-1],[10,-2],[33,15],[20,1],[15,0],[25,-43],[12,-52],[0,-1],[3,-15],[1,-21],[-11,-58],[-8,-7],[-6,-5],[-10,-9],[-37,-7],[-16,-4],[-7,-5],[-8,-8],[-4,-4],[-4,-25],[63,-131],[4,-10],[1,-1],[23,-44],[2,-4],[5,-5],[62,-64],[15,-16],[31,-20],[16,-11],[32,-13],[8,-3],[17,-31],[1,-1],[7,-12],[7,-27],[-11,-96],[-9,-76],[-1,-12],[-6,-20],[-31,-46],[-8,-11],[2,-9],[0,-2],[0,-2],[14,-24],[17,-12],[16,-10],[30,-21],[14,0],[1,0],[10,-1],[20,19],[3,3],[4,3],[5,12],[7,13],[4,4],[65,55],[3,2],[127,-56],[25,-22],[8,-15],[6,-61],[-9,-41],[-5,-4],[-3,-3],[-8,-7],[-17,4],[-3,4],[-29,41],[-13,2],[-17,-18],[-3,-3],[-8,-37],[-3,-47],[6,-22],[1,-5],[7,-8],[8,-10],[3,-2],[33,-7],[10,-28],[-23,-21],[-4,1],[-14,3],[-12,2],[-4,3],[-24,20],[-8,2],[-1,0],[-15,3],[-6,-6],[-2,-1],[-1,-2],[-7,-9],[-3,-26],[-1,-4],[23,-34],[40,-13],[11,-19],[-2,-17],[-9,-10],[-19,-22],[-45,0],[-21,-9],[-8,-4],[-4,-2],[-24,-20],[-18,-13],[-19,-43],[1,-13],[5,-72],[2,-29],[2,-51],[55,-58],[1,-1],[12,0],[68,1],[5,-1],[15,-3],[8,-15],[1,-2],[2,-3],[-3,-25],[-22,-17],[-17,-13],[-13,-19],[-1,-4],[-7,-19],[-3,-9],[-1,-17],[0,-10],[-1,-16],[2,-2],[11,-19],[4,-8],[5,-1],[12,-2],[6,-1],[6,6],[14,15],[1,0],[10,29],[6,15],[14,13],[1,1],[10,-2],[7,-1],[6,-10],[6,-19],[1,-3],[0,-1],[-4,-28],[-3,-22],[-50,-36],[-20,-14],[-9,-7],[-27,-2],[-99,-6],[-19,4],[-41,8],[-8,-11],[-2,-3],[-3,-5],[2,-13],[10,-15],[5,-9],[8,-11],[21,-9],[34,-15],[11,-19],[1,-1],[5,-9],[-2,-17],[-10,-23],[-66,-85],[-3,-3],[-29,-21],[-22,-17],[-4,-3],[2,-35],[0,-4],[31,-54],[4,-18],[0,-4],[-2,-16],[-2,-13],[-10,-19],[0,-1],[-50,-45],[-1,-8],[-2,-11],[-2,-18],[128,-257],[1,-2],[52,-90],[12,-20],[-24,-179],[2,-8],[11,-39],[3,-12],[14,-24],[9,-10],[31,-34],[9,-9],[33,-7],[26,13],[18,8],[27,-5],[2,-3],[6,-10],[24,-36],[12,-37],[-2,-15],[0,-3],[-18,-58],[0,-1],[-7,-5],[-69,-49],[-4,-3],[-33,11],[-22,17],[29,-136],[-2,-79],[14,-24],[-7,-29],[1,-48],[2,-46],[-7,-25],[0,-1],[-13,-44],[-23,-84],[-2,-16],[-1,-9],[-5,-38],[10,-39],[22,-73],[6,-22],[28,-81],[4,-22],[34,-76],[-142,-110],[-21,17],[-35,-39],[-23,-33],[-34,-61],[-23,-42],[0,-6],[8,-65],[125,-62],[66,-169],[125,-94],[38,-150],[31,-119],[-18,-48],[-8,-63],[-54,-49],[1,-27],[-3,-35],[-12,-120],[1,-6],[11,-60],[34,-80],[39,-72],[9,-13],[41,-60],[8,-12],[28,-27],[45,-43],[8,-2],[2,0],[12,10],[4,11],[14,46],[23,4],[1,0],[8,2],[4,-14],[14,-49],[3,-10],[68,-112],[-3,-1],[-72,-18],[-43,13],[-2,0],[-1,1],[-12,-11],[-1,-8],[-1,-11],[-1,-6],[25,-99],[11,-20],[9,-6],[49,-6],[9,-1],[5,-10],[0,-4],[0,-6],[-12,-218],[-1,-4],[-6,-76],[-37,-121],[11,-21],[8,-15],[59,-114],[4,-8],[9,-28],[18,-55],[3,-9],[-4,-29],[-9,-15],[-3,-3],[-22,-20],[-6,-5],[-10,-3],[-19,-4],[-11,-11],[-10,-9],[-6,-5],[-62,-81],[-5,-12],[3,-3],[54,-34],[35,-50],[-8,-33],[-4,-3],[-21,-17],[-10,-7],[-7,1],[-10,2],[-14,24],[-1,1],[-11,2],[-4,1],[-8,-7],[-1,-4],[-1,-13],[0,-1],[11,-74],[4,-8],[7,-11],[29,-10],[6,-10],[-2,-13],[-4,-4],[-12,-10],[-7,-7],[-30,-15],[-17,-5],[-12,5],[-21,10],[-8,-7],[-2,-21],[6,-14],[21,-46],[5,-10],[17,-2],[27,-3],[8,-15],[-2,-16],[-11,-10],[-5,-4],[-56,-6],[-65,-51],[0,-4],[-1,-8],[-1,-5],[9,-14],[9,0],[32,0],[10,-17],[-3,-17],[-15,-24],[0,-1],[-33,-44],[-3,-1],[-39,-21],[-42,8],[-5,2],[-12,-11],[24,-85],[1,-3],[-5,1],[-43,12],[-20,6],[-17,4],[-4,-3],[-10,-9],[-5,-5],[-2,-11],[0,-3],[-1,-3],[16,-56],[1,-3],[0,-5],[1,-64],[-9,-6],[-12,-1],[-1,0]],[[56914,53673],[-3,9],[-17,45],[-5,5],[-13,12],[-24,5],[-26,-16],[-57,-21],[-77,-29],[-29,3],[-15,1],[-73,56],[-54,41],[-5,3],[-15,12],[-3,5],[-5,9],[-9,15],[1,17],[1,7],[0,2],[4,60],[-21,37],[-9,6],[-21,4],[-39,8],[-6,4],[-26,20],[-13,20],[-5,8],[-1,2],[-9,14],[-16,51],[-4,13],[-14,24],[-1,2],[-5,4],[-30,31],[-49,30],[-37,22],[-12,15],[-4,8],[-8,13],[-2,3],[-6,32],[2,18],[3,36],[4,42],[9,16],[13,11],[30,27],[13,16],[13,17],[7,7],[1,12],[6,44],[1,7],[-10,32],[-5,9],[-9,15],[-24,22],[-28,2],[-63,-9],[-1,1],[-89,57],[-60,-86],[-40,-39],[-91,-86],[-207,-154],[-86,-81],[-47,-44],[-10,-1],[-70,-12],[-99,0],[-139,82],[-6,109],[-2,13],[-3,15],[-3,16],[-19,34],[-89,87],[-12,10],[-12,12],[-34,6],[-23,-16],[-1,-28],[-2,-34],[8,-33],[-9,-79],[-11,-101],[-9,-20],[-5,-4],[-19,-17],[-4,-3],[-33,6],[-63,73],[-22,43],[-5,33],[-4,29],[-4,5],[-25,39],[-15,12],[-45,4],[-24,-18],[-2,-2],[-1,-3],[0,-5],[-5,-34],[11,-49],[-10,-75],[-3,-10],[-3,-8],[-5,-14],[-6,-6],[-8,-7],[-17,-15],[-149,-108],[-18,-13],[-4,-3],[-3,1],[-12,2],[-2,0],[-12,10],[-2,2],[-1,0],[-17,33],[2,17],[2,32],[0,6],[37,96],[30,44],[4,5],[5,11],[9,20],[2,45],[1,1],[-21,26],[-20,4],[-34,7],[-12,11],[-7,14],[-4,9],[-5,10],[-2,40],[-2,64],[-8,22],[-5,14],[-28,49],[-15,16],[-22,13],[-38,3],[-32,-29],[-7,-6],[-58,-108],[-5,-38],[0,-1],[1,0],[9,-22],[13,-11],[20,-7],[16,-5],[3,-5],[2,-5],[65,-133],[9,-18],[-2,-36],[0,-6],[-28,-29],[-11,-2],[-7,11],[-28,43],[-19,29],[-36,8],[-1,0],[-31,-16],[-28,-15],[-30,10],[-19,34],[5,38],[7,54],[-28,160],[-11,19],[-6,10],[-33,6],[-27,-20],[-66,-115],[-6,-18],[-18,-54],[-31,-28],[-20,4],[-17,29],[17,82],[2,12],[-13,29],[-13,2],[-52,9],[-4,0],[-2,-2],[-12,-14],[-61,-125],[-59,-138],[-19,-34],[-9,-10],[-22,-22],[-50,-16],[-42,16],[-1,0],[-3,2],[-13,11],[-13,28],[3,21],[12,11],[54,48],[13,23],[2,15],[3,22],[4,30],[-20,34],[-1,1],[-23,15],[0,1],[-4,6],[-44,9],[-23,-6],[-37,-8],[-34,7],[-100,20],[-64,34],[-27,31],[-22,19],[-11,10],[-26,22],[-101,16],[-6,9],[-61,151],[-1,3],[-61,38],[-31,6],[-7,2],[-2,0],[-27,-20],[-3,-13],[-20,-85],[-35,-58],[-31,-28],[-8,-3],[-6,-2],[-57,11],[-30,17],[-15,9],[-11,12],[-18,18],[-8,7],[-11,20],[2,15],[2,19],[2,8],[5,4],[19,16],[43,37],[18,15],[27,51],[13,41],[4,11],[2,4],[19,30],[1,30],[-14,24],[-27,5],[-22,-8],[-29,-27],[-21,-19],[-10,-4],[-22,-10],[-1,0],[-2,-1],[-21,-4],[-9,-2],[-50,10],[-9,8],[-10,9],[-23,39],[-4,7],[1,10],[0,90],[-8,40],[-8,16],[-15,27],[-5,10],[-10,9],[-17,13],[-23,18],[-6,1],[-89,28],[-30,9],[-79,58],[-39,32],[-42,31],[-16,12],[-16,4],[-60,46],[-44,9],[-6,-3],[-27,-12],[-13,2],[-44,9],[-27,16],[-8,4],[-1,2],[-16,27],[-5,10],[-2,18],[-3,51],[-1,3],[-14,94],[-10,32],[-42,73],[-92,92],[-21,20],[-100,-1],[-51,-24],[-13,-11],[-31,-29],[-19,-17],[-23,-20],[-82,-52],[-3,-2],[-82,-37],[-7,-3],[-35,-10],[-29,-7],[-34,-2],[-145,29],[-172,47],[-23,13],[-22,38],[0,1],[-1,1],[-6,34],[-1,9],[4,71],[7,128],[14,108],[20,44],[37,48],[14,28],[0,1],[9,18],[10,23],[0,10],[-3,51],[-27,52],[-8,7],[-11,10],[-8,3],[-54,22],[-23,9],[-33,7],[-1,-1],[-17,-4],[-39,-46],[-14,-17],[7,-73],[2,-18],[-6,-46],[-13,-23],[-39,-35],[-35,-6],[-21,6],[-72,21],[-22,-7],[-46,-14],[-37,7],[-7,2],[-44,36],[-12,9],[-31,36],[-14,16],[-8,16],[-12,23],[-6,13],[-12,24],[2,20],[1,9],[-9,32],[-23,35],[-48,86],[-43,64],[-23,22],[-37,36],[-8,7],[-135,75],[-2,1],[-7,4],[-10,9],[-27,24],[-29,18],[-22,14],[-57,15],[-40,-18],[-28,-3],[-57,12],[-9,1],[-28,6],[-48,27],[-18,-1],[-5,9],[-61,12],[-6,2],[-21,-1],[-49,-3],[-10,3],[-26,7],[-30,8],[-13,11],[-28,48],[-5,15],[-2,7],[0,1],[1,3],[18,36],[54,45],[8,15],[6,46],[-7,19],[-6,14],[-2,4],[-3,5],[-16,4],[-1,0],[-93,18],[-48,10],[-76,27],[-40,31],[-3,4],[-34,44],[-6,9],[2,6],[39,101],[2,6],[14,12],[18,16],[33,100],[10,101],[-11,53],[-21,47],[-6,8],[-37,47],[-18,9],[-18,6],[-31,12],[-193,34]],[[48751,57978],[-46,9],[-68,39],[-15,16],[-12,21],[-25,42],[-19,74],[-1,7],[0,2],[4,57],[11,32],[4,51],[1,5],[1,20],[11,57],[28,55],[31,28],[97,32],[38,31],[9,15],[22,64],[13,45],[6,46],[-10,32],[-32,49],[-37,33],[-51,31],[-112,16],[-54,8],[-44,28],[-46,29],[-18,12],[-15,15],[-31,54],[-4,22],[3,16],[8,42],[19,17],[65,22],[19,13],[82,78],[50,67],[24,158],[-3,116],[-16,53],[-39,133],[-55,101],[-29,52],[-71,213],[-48,97],[-49,126],[-103,276],[-22,95],[-70,125],[-47,69],[-49,99],[-2,10],[-5,38],[-8,49],[-1,72],[-1,60],[-2,108],[-3,15],[-26,111],[-20,55],[-36,67],[-1,1],[-21,7],[-5,2],[-50,39],[-30,32],[-2,2],[-18,32],[-7,31],[-1,3],[-3,15],[-38,84],[-31,54],[-62,32],[-37,23],[-118,-1],[-26,-12],[-20,3],[-315,212],[-33,6],[-68,39],[-73,75],[-8,26],[-19,60],[-3,4],[-105,113],[-4,5],[-12,15],[-20,66],[-27,89],[-7,23],[-17,44],[-15,35],[-23,72],[-16,31],[-9,24],[-3,10],[-2,4],[-29,72],[-18,38],[-50,107],[-18,35],[-17,33],[-20,38],[-38,70],[-17,33],[-23,43],[-20,33],[-38,63],[-21,35],[-53,84],[-28,37],[-45,58],[-20,26],[-53,69],[-70,91],[-22,28],[-42,47],[-71,78],[-22,26],[-32,34],[-17,22],[-27,21],[-23,18],[-20,21],[-8,7],[-18,17],[-19,17],[-108,86],[-20,15],[-25,22],[-61,48],[-25,18],[-29,21],[-43,31],[-19,14],[-46,30],[-23,16],[-21,65],[-1,0],[-75,26],[-32,0],[-28,0],[-40,23],[-36,22],[-40,23],[-7,3],[-42,19],[-26,14],[-47,22],[-22,9],[-26,12],[-30,13],[-48,20],[-27,8],[-52,20],[-72,24],[-21,7],[-34,9],[-21,6],[-298,68],[-1,0],[-48,8],[-24,4],[-22,3],[-3,0],[-70,9],[-34,6],[-10,1],[-36,3],[-56,5],[-55,3],[-23,1],[-44,2],[-30,-1],[-18,0],[-79,-1],[-82,0],[-90,-7],[-84,-21],[-84,-28],[-59,-22],[-41,-20],[-39,-18],[-63,-34],[-36,90],[-30,78],[-62,136],[-79,195],[-52,135],[-30,0],[-4,1],[-23,-13],[-33,53],[-36,63],[-76,129],[-92,163],[-78,137],[-46,82],[-4,7],[-51,89],[-2,4],[-16,29],[8,64],[-44,55],[-30,38],[9,36],[11,40],[31,114],[20,71],[66,48],[169,121],[7,102],[4,76],[-98,177],[-2,4],[-34,62],[-83,148],[-21,38],[-62,112],[-66,112],[-17,-19],[-21,5],[-18,21],[-16,26],[-6,34],[-19,14],[-24,25],[-21,1],[-27,-5],[-21,-4],[-23,18],[-25,-6],[-9,39],[4,37],[-13,39],[-25,-2],[-23,-1],[-20,20],[-10,33],[-25,8],[-25,-3],[-29,12],[-11,38],[-26,31]],[[48751,57978],[-32,-19],[-84,-44],[-43,-23],[-75,-42],[-6,-3],[-41,-24],[-64,-32],[-98,-54],[-23,-12],[-7,-4],[-60,-33],[-8,-40],[-8,-37],[-7,-37],[-8,-47],[-5,-40],[-3,-35],[-6,-41],[-11,-46],[-13,-32],[-1,-63],[28,-155],[6,-38],[20,-107],[9,-54],[-53,-459],[-51,-396],[-14,-108],[-23,-180],[-10,-56],[-6,-61],[-5,-38],[-3,-42],[1,-40],[1,-60],[-4,-61],[2,-41],[-3,-36],[-6,-63],[-3,-30],[0,-2],[-5,-39],[-7,-54],[-7,-34],[-12,-34],[-17,-45],[-21,-49],[-38,-93],[-47,-112],[-31,-74],[-41,-94],[-19,-41],[-13,-30],[-7,-32],[2,-39],[3,-42],[-1,-37],[-4,-35],[-20,-71],[17,-174],[5,-36],[18,-188],[0,-100],[25,-1],[235,-29],[26,-4],[180,-22],[10,156],[24,178],[17,126],[11,79],[6,54],[70,-7],[93,-8],[33,-3],[18,305],[170,61],[9,193],[178,-23],[117,-15],[137,-25],[109,-13],[74,-9],[15,-1],[9,-1],[85,-11],[88,-10],[110,-13],[39,-5],[19,3],[6,1],[39,28],[28,15],[25,7],[33,-15],[37,-33],[18,-21],[25,-6],[39,-17],[22,-50],[34,-43],[32,-32],[95,-54],[29,-12],[34,-10],[46,-12],[32,-32],[24,-46],[23,-28],[47,-13],[26,-25],[12,-33],[5,-38],[22,-33],[19,-36],[42,-52],[37,-46],[33,-19],[-24,-39],[-24,-9],[-40,-20],[-41,-9],[-29,-18],[-19,-12],[-60,-7],[-23,-2],[-40,-8],[-1,-1],[-21,-17],[-36,-44],[-23,-14],[-1,0],[-2,-2],[-1,-1],[-18,-13],[-27,-27],[-36,-68],[-4,-6],[-20,-34],[-21,-32],[-15,-32],[-6,-20],[-6,-19],[-31,-50],[-1,-2],[-22,-33],[-20,-25],[-11,-15],[-52,-35],[-14,-8],[-5,-3],[-7,-4],[-36,-4],[-39,10],[-28,2],[-46,-12],[-14,-5],[-9,-3],[-24,-28],[-33,-23],[-41,-13],[-27,-13],[-20,-16],[-29,-34],[-29,-34],[-28,-17],[-35,0],[-23,1],[-106,19],[-53,-3],[-22,12],[-33,23],[-124,-133],[-10,-11],[-27,-32],[-154,-71],[-129,-67],[-80,-41],[-33,-18],[-24,-12],[-82,-68],[-83,-70],[-280,-234],[-44,-31]],[[48114,52535],[-135,-54],[-43,-17],[-59,-24],[-50,-21],[-4,-1],[-303,-121],[-212,-85],[-88,-39],[-18,-8],[-88,-59],[-209,-139],[-35,-24],[-126,-85],[-7,-4],[-146,-92],[-6,-4],[-138,-87],[-28,-17],[-433,-273],[-123,-78],[-183,-116],[-162,-102],[-67,-39],[-118,-76],[-12,-8],[-130,-84],[-7,-4],[-10,-7],[-64,-39],[-3,-2]],[[45107,50826],[-8,7],[-16,16],[-18,22],[-23,20],[-20,17],[-24,11],[-32,26],[-28,18],[-8,-3],[-17,-6],[-18,25],[-22,-4],[-25,18],[-23,20],[-1,1],[-34,-14],[-23,11],[-7,-3],[-8,-4],[-12,-4],[-22,4],[-19,17],[-22,-11],[-18,33],[-22,19],[-17,42],[-21,22],[0,1],[-1,0],[-6,2],[-14,6],[0,-32],[-17,20],[-17,-22],[-26,40],[-26,19],[-28,8],[-11,33],[-18,32],[-37,46],[-25,28],[-20,8],[-29,-8],[-23,23],[-19,16],[-24,7],[-24,15],[-1,0],[-37,-6],[-16,30],[-2,20],[-2,16],[-20,21],[-4,-2],[-17,-5],[-3,-1],[-27,34],[-19,42],[-22,3],[-26,13],[-20,14],[-20,12],[-2,0],[-19,-1],[0,16],[1,22],[-16,24],[-33,9],[-24,13],[-5,41],[-20,-20],[-28,27],[-27,1],[-33,5],[-9,9],[-22,22],[-20,24],[-2,35],[0,1],[-25,2],[-33,11],[-4,6],[-22,34],[-7,2],[-16,5],[-2,-1],[-17,-14],[-21,5],[-19,31],[-1,2],[-3,0],[-26,1],[-3,11],[-4,19],[-26,0],[-12,1],[-22,2],[-13,25],[-4,7],[-17,18],[-28,16],[-1,1],[-1,2],[-13,24],[-7,26],[-3,11],[1,48],[-4,7],[-11,22],[-1,0],[-25,3],[-19,21],[-13,29],[-24,4],[-21,16],[-25,3],[-3,0],[-13,-26],[-31,-22],[-22,0],[-1,0],[-7,0],[-19,-2],[-26,0],[-7,0],[0,-1],[-18,-25],[-19,23],[-29,-26],[-26,-5],[-26,5],[-1,0],[0,1],[-21,15],[-40,37],[-21,19],[-12,26],[-30,7],[-20,10],[-22,13],[-16,23],[-23,4],[-1,0],[-1,2],[-19,29],[-22,9],[-12,47],[-33,61],[-8,33],[0,3],[-2,1],[-31,12],[-33,-15],[-22,23],[-25,10],[-18,21],[-3,17],[-3,14],[-35,43],[-33,0],[-4,2],[-18,9],[-34,20],[-17,20],[-1,1],[-2,1],[-23,5],[-22,16],[-1,1],[-29,12],[-28,11],[-24,13],[-16,-10],[-6,-4],[-41,28],[-1,2],[-24,21],[-21,44],[-11,42],[-28,-12],[-33,7],[-4,1],[-28,6],[-23,25],[-31,23],[-25,18],[-21,-9],[-16,16],[-6,6],[-26,21],[-17,3],[-10,1],[-25,19],[-32,14],[-16,16],[-8,8],[-27,-7],[-20,-20],[-30,2],[-23,27],[-33,9],[-25,23],[-28,8],[-25,11],[-22,0],[-23,11],[-5,6],[-20,22],[-16,21],[-2,3],[-29,9],[-28,21],[-1,1],[-17,17],[-21,28],[-14,28],[-37,17],[-17,4],[-3,1],[-7,1],[-37,-32],[-1,0],[-25,-13],[-11,-13],[-6,-7],[-5,0],[-22,-3],[-25,-28],[-20,-15],[-5,-1],[-19,-4],[-4,4],[-21,18],[-42,-19],[-67,24],[-34,8],[-2,1],[-21,18],[-26,5],[-9,-4],[-31,-13],[-31,21],[-1,0],[-19,12],[-13,-8],[-3,-3],[-10,-6],[-2,-2],[-27,8],[-29,21],[-23,9],[-4,2],[-1,1],[-15,22],[-29,10],[-15,23],[-20,10],[-7,3],[-34,29],[-3,3],[-28,35],[-18,-13],[-2,-2],[-41,0],[-20,6],[-2,1],[-32,-5],[-26,-18],[-29,-22],[-4,2],[-10,6],[-7,5],[-24,30],[-22,1],[-1,0],[0,1],[-7,32],[-2,12],[-14,6],[-10,5],[-19,16],[-25,64],[-29,34],[-29,14],[-4,32],[-10,37],[-1,0],[-26,36],[-9,4],[-32,14],[-21,36],[-1,0],[0,1],[-2,34],[5,37],[2,39],[6,46],[-7,41],[-8,42],[-17,23],[-23,12],[12,27],[-5,34],[-15,33],[-20,14],[-3,35],[-20,11],[-8,30],[4,27],[1,4],[0,11],[-1,40],[-10,33],[0,5],[-1,90],[2,49],[-6,69],[7,47],[-12,27],[-15,32],[-4,7],[-15,36],[-13,27],[-24,67],[-21,33],[-32,33],[-3,2],[-23,8],[-19,15],[-1,0],[-29,4],[-17,46],[-24,23],[-25,42],[-15,43],[-27,24],[-25,34],[-17,39],[-13,6],[-7,3],[-12,29],[-2,4],[-5,31],[-11,32],[-24,28],[-27,0],[-20,37],[-20,11],[-16,32],[-19,49],[-23,16],[-4,0],[-17,4],[-9,36],[0,1],[-1,1],[-25,11],[-6,3],[-42,-7],[-2,0],[-23,19],[-32,2],[-3,0],[-35,13],[-10,5],[-7,3],[-4,2],[-4,2],[-17,35],[-28,-3],[-53,-29],[-7,1],[-22,4],[-21,18],[-3,2],[-2,49],[-41,22],[-31,22],[-43,0],[-10,-4],[-15,-6],[-9,2],[-12,3],[-1,1],[-17,33],[-22,42],[-29,17],[-29,-17],[-20,25],[-7,38],[-4,6],[-12,15],[-9,47],[0,1],[-20,17],[-33,-7],[-27,-7],[-7,-2],[-24,8],[-22,-4],[-35,-12],[-59,-18],[-35,8],[-16,33],[0,40],[-2,4],[-12,30],[0,1],[-1,0],[-21,2],[-4,0],[-22,-12],[-21,14],[-46,15],[-22,18],[-11,33],[-8,7],[-12,11],[-6,38],[-26,30],[-22,10],[-24,19],[-6,4],[-11,65],[0,2],[-19,35],[-19,76],[0,1],[-1,1],[-21,42],[-20,18],[0,1],[-17,44],[-1,2],[-1,1],[-87,94],[-4,5],[-25,3],[-39,38],[-49,14],[-21,27],[0,1],[-2,104],[0,4],[-6,35],[0,1],[-25,8],[-29,15],[3,9],[11,31],[-8,7],[-19,21],[-14,25],[6,21],[2,9],[-18,35],[-2,42],[-46,44],[-17,19],[-8,32],[5,42],[0,3],[15,48],[8,35],[0,1],[0,3],[-8,29],[-1,5],[-5,5],[-21,29],[-11,28],[-23,27],[-28,48],[-27,44],[-4,8],[-48,12],[-35,39],[-27,12],[-22,-1],[-24,-3],[-31,20],[-16,21],[-69,24],[-31,16],[-15,32],[-15,23],[-45,86],[-32,37],[-19,42],[-15,42],[-26,34],[-10,55],[-12,29],[-17,65]],[[37109,57888],[-1,38],[-6,51],[11,44],[12,29],[12,48],[-4,34],[12,35],[6,35],[23,26],[13,33],[19,24],[23,76],[20,57],[29,83],[3,8],[19,55],[16,43],[2,5],[11,30],[26,72],[2,4],[36,87],[14,34],[15,55],[10,41],[1,2],[40,125],[29,86],[19,55],[13,39],[19,55],[11,33],[42,124],[17,53],[47,148],[11,35],[39,121],[17,51],[15,46],[27,85],[71,223],[22,69],[27,89],[25,78],[45,144],[7,24],[15,48],[45,123],[50,140],[34,95],[28,87],[48,135],[68,186],[46,129],[32,87],[45,128],[145,409],[21,60],[32,89],[97,281],[72,207],[2,6],[26,78],[47,135],[166,479],[19,65],[36,124],[4,15],[7,23],[13,46],[12,39],[10,36],[18,58],[17,63],[5,16],[32,109],[13,45]],[[37109,57888],[-68,-66],[-52,-68],[-40,-46],[-3,-5],[-122,-144],[-37,-43],[-26,-31],[-39,-46],[-17,-21],[-34,-38],[-32,-39],[-39,-49],[-72,-88],[-63,-77],[-18,-22],[-75,-93],[-26,-30],[-4,-5],[-116,-138],[-36,-42],[-98,-117],[-50,-60],[-43,-38],[-27,-32],[-102,-119],[-94,-113],[-138,-165],[-84,-101],[-17,-21],[-101,-119]],[[35436,55912],[-94,37],[-168,65],[-42,16],[-155,62],[-62,25],[-154,62],[-62,23],[-84,35],[-25,11],[-84,35],[-67,25],[-95,35],[-52,20],[-136,51],[-161,60],[-111,42],[-30,11],[-24,9],[-66,25],[-151,56],[-112,42],[-106,38],[-91,34],[-107,40],[-62,23],[-86,32],[-103,38],[-29,11],[-73,27],[-3,1],[-103,66],[-50,31],[-35,22],[-64,41],[-92,58],[-50,32],[-88,55],[-126,80],[-30,14],[-23,12],[-1,1],[-22,38],[-18,30],[-35,33],[-26,22],[-19,16],[-30,16],[-23,12],[-37,20],[-23,13],[-28,15],[-21,12],[-17,19],[-24,14],[-23,-5],[-31,-21],[-24,-20],[-29,-18],[-27,-9],[-27,-4],[-35,4],[-21,8],[-23,13],[-24,20],[-38,47],[-18,23],[-23,28],[-24,30],[-37,47],[-20,25],[-22,27],[-25,32],[-21,23],[-24,20],[-21,14],[-29,18],[-55,36],[-28,22],[-27,25],[-27,28],[-20,22],[-28,29],[-34,36],[-22,25],[-21,33],[-18,38],[-14,31],[-20,45],[-13,28],[-16,27],[-20,23],[-22,16],[-32,86],[-11,55],[-31,170],[-2,8],[-22,121],[-13,73],[-11,53],[-17,89],[-38,188],[-19,91],[-23,122],[-29,133],[-15,71],[-51,259],[-30,150],[-23,127],[-51,275],[-23,126],[-5,26],[-9,48],[-8,40],[-27,149],[-12,62],[-1,7],[-19,105],[-117,10],[-296,18],[-175,11],[-194,11],[-444,-129],[-19,-6],[-110,-32],[-154,-45],[-195,-57],[-152,-44],[-47,-14],[-254,-71],[-35,-23],[-67,-22],[-109,-37]],[[70356,60069],[-25,-19],[-25,-18],[-28,-19],[-36,-25],[-339,-233],[-72,-50],[-119,-69],[-178,-131],[-97,-71],[-70,-52],[-24,-18],[-184,-135],[-197,-152],[-20,-16],[-4,-3],[-107,-90],[-71,-60],[-54,-45],[-19,-16],[-33,-27],[-244,-203],[-25,-21],[-174,-144],[-5,-4],[-56,-49],[-141,-122],[-20,-16],[-152,-132],[-104,-92],[-4,-3],[-29,-26],[-48,-37],[-31,-25],[-62,-57],[-58,-56],[-76,-69],[-25,-23],[-105,-94],[-6,-1],[-59,-4],[-102,-8],[-84,-5],[-38,-7],[-38,-31],[-25,-19],[-47,-39],[-65,-42],[-62,-40],[-23,-19],[-25,-19],[-16,-12],[-25,-18],[-55,-42],[-1,-1],[-19,-14],[-61,-50],[-18,-17],[-106,-76],[-33,-23],[-29,-20],[-32,-21],[-24,-13],[-69,-57],[-262,-201],[-137,-106],[-75,-57],[-105,-98],[-74,-68],[-83,-74],[-32,-28],[-168,-149],[-90,-80],[-63,-56],[-155,-135],[-293,-257],[-58,-47],[-130,-108],[-5,-8],[-71,-118],[-74,-127],[-3,-6],[-134,-229],[-30,-53],[-2,-2],[-68,-29],[-31,-7],[-19,-4],[-33,-7],[-280,-60],[-104,-22],[-319,-70],[-180,-41],[-169,-38],[-28,-7],[-134,-30],[-204,-45],[-162,-37],[-4,-1],[-41,-9],[-108,-23],[-100,-22],[-181,-38],[-58,-18],[-407,-88],[1,-280],[1,-43],[1,-233],[0,-102],[10,-76],[1,-5],[55,-375],[3,-21],[2,-10],[7,-73],[7,-71],[0,-2],[7,-45],[3,-43],[5,-42],[1,-2],[3,-222],[-313,-43],[-261,-32],[-310,-41],[32,293],[145,91],[-41,164],[-63,284],[-382,-25],[-26,-183],[-9,-61],[-64,-456],[-8,-55],[-152,9],[-88,3],[-67,2],[-193,9],[-32,-57],[-47,-117],[-169,-430],[-16,-40],[-18,-60],[-102,-477],[-20,-84],[-41,-66],[-39,-49],[-45,-70],[-79,-104],[-39,-55],[-63,-88],[-73,-85],[-12,-14],[-131,-150],[-206,-237],[-19,-22],[-7,-9]],[[58708,50546],[-73,49],[-87,49],[-18,12],[-21,15],[-13,9],[-49,34],[-75,61],[-125,104],[-217,255],[-13,64],[38,81],[57,59],[11,12],[33,55],[3,12],[7,35],[-2,25],[-2,24],[-1,16],[-7,23],[-17,51],[-7,20],[-7,22],[-27,21],[-1,0],[-29,22],[-68,12],[-33,-12],[-24,-8],[-47,-13],[-56,-3],[-20,-1],[-30,13],[-24,10],[-2,1],[-131,65],[-46,45],[-19,18],[-37,66],[-44,80],[-38,32],[-52,44],[-4,1],[-47,87],[33,45],[31,9],[2,0],[1,14],[1,7],[14,23],[14,14],[25,25],[21,30],[1,11],[2,20],[-19,68],[-4,12],[-35,-3],[-38,-4],[-9,2],[-21,4],[-18,-3],[-3,-1],[-37,8],[-2,1],[-14,10],[-16,11],[-3,3],[-13,14],[-21,41],[-12,22],[-4,16],[0,2],[-9,40],[-14,24],[-2,5],[-28,23],[-42,15],[-41,15],[-35,20],[-28,25],[-2,2],[-25,42],[-3,7],[-3,16],[-1,12],[-2,11],[3,20],[8,62],[3,19],[0,4],[-2,12],[-10,54],[-2,9],[-3,6],[-15,25],[-4,8],[-113,168],[-6,8],[-74,90],[-14,24],[1,21],[1,11],[1,11],[11,10],[4,4],[8,4],[25,15],[4,3],[1,4],[8,37],[-14,24],[-71,36],[-8,12],[-2,3],[-2,4],[-8,11],[2,18],[0,6],[3,43],[6,6],[3,3],[15,16],[22,6],[53,13],[65,26],[5,5],[13,16],[12,25]],[[27210,60279],[-4,-1],[-31,-10],[-248,-82],[-30,-10],[-209,-69],[-157,-51],[-142,-47],[-64,-21],[-138,-46],[-154,-51],[-82,-26],[-99,-33],[-53,-18],[-148,-48],[-16,-6],[-41,-13],[-38,-13],[-30,-10],[-112,-39],[-26,-12],[-23,-10],[-23,-5],[-52,-14],[-76,-26],[-41,-14],[-132,-45],[-28,-10],[-22,-7],[-45,-15],[15,-82],[19,-103],[1,-5],[33,-180],[39,-209],[47,-251],[-42,-32],[-173,-117],[12,-76],[19,-113],[25,-152],[14,-91],[15,-88],[52,-115],[45,-91],[113,-221],[103,-205],[112,-222],[26,-53],[73,-145],[94,-187],[195,-330],[-8,-36],[-19,-89],[-6,-2],[-23,-3],[-17,7],[-4,2],[-56,6],[-12,-2],[-7,-3],[-7,-4],[-8,-4],[-1,-1],[-8,-11],[-8,-14],[-101,-174],[-8,-16],[-3,-16],[-4,-34],[-4,-12],[-1,-1],[-8,-7],[-34,-13],[-20,-3],[-7,5],[-5,3],[-14,17],[-26,12],[-18,2],[-10,0],[-4,-1],[-11,-2],[-14,-8],[-9,-12],[-2,-2],[-1,-2],[-9,-25],[-1,-20],[19,-23],[32,-44],[21,-36],[27,-49],[13,-35],[2,-16],[-3,-9],[-7,-17],[-2,-4],[-5,-4],[-8,-7],[-23,-10],[-12,-5],[-37,-30],[-34,-45],[-12,-15],[-4,-19],[3,-17],[10,-26],[3,-9],[29,-70],[0,-1],[-11,-22],[-7,-12],[-21,-38],[-43,-116],[-8,-19],[-10,-11],[-10,-6],[-28,-3],[-8,3],[-64,6],[-13,1],[-4,-2],[-11,-19],[-1,-16],[10,-22],[28,-55],[6,-19],[2,-6],[0,-2],[0,-15],[-11,-10],[-3,-4],[-1,0],[-12,-1],[-5,3],[-14,9],[-17,26],[-15,14],[-25,19],[-75,43],[-16,7],[-3,1],[-5,3],[-8,-1],[-7,-9],[-1,0],[-2,-3],[-3,-9],[-7,-17],[-3,-17],[-1,-7],[1,-4],[3,-14],[30,-55],[2,-5],[23,-42],[16,-32],[47,-96],[2,-6],[1,-3],[2,-6],[0,-5],[-12,-19],[-15,-8],[-34,-4],[-38,7],[-23,-2],[-17,-11],[-12,-11],[-15,-15],[-10,-17],[-2,-17],[1,-2],[0,-3],[1,-4],[6,-9],[10,-10],[4,-4],[7,-11],[5,-16],[-2,-12],[-9,-30],[-43,-50],[-1,-2],[-40,-67],[-22,-11],[-4,-2],[-6,-3],[-14,-35],[-5,-11],[-9,-14],[-20,-17],[-16,-14],[-4,-6],[-1,-1],[-67,-118],[0,-8],[0,-24],[8,-45],[9,-36],[8,-21],[27,-58],[4,-9],[57,-65],[7,-10],[9,-12],[16,-29],[6,-17],[0,-19],[-2,-6],[-3,-11],[-2,-5],[-4,-8],[-3,-7],[-19,-23],[-12,-25],[-3,-11],[-1,-4],[1,-20],[6,-28],[64,-142],[7,-48],[2,-26],[-1,-8],[0,-2],[-1,-2],[-8,-18],[-1,-2],[-7,-8],[-11,-4],[-49,-4],[-7,-3],[0,-1],[-4,-5],[-4,-14],[-4,-24],[-1,-75],[-5,-20],[-4,-8],[-3,-6],[-10,-17],[-2,-3],[-2,-2],[-14,-13],[-1,-1],[-121,-79],[-13,-4],[-66,-23],[-15,-8],[-13,-13],[-3,-7],[-4,-9],[-2,-28],[-13,-171],[38,-112],[39,-113],[45,-132],[112,-350],[94,-282],[16,-55],[10,-15],[18,-17],[26,-14],[21,3],[9,6],[43,14],[87,26],[21,3],[26,-4],[12,-6],[37,-27],[127,-113],[11,-15],[1,-1],[11,-15],[8,-19],[2,-36],[1,-1],[-2,-5],[-1,-3],[-61,-67],[-30,-119],[1,-6],[10,-22],[16,-19],[89,-52],[35,0],[53,11],[30,0],[27,-6],[13,-6],[10,-8],[4,-4],[2,-4],[6,-11],[2,-4],[4,-12],[3,-19],[0,-23],[-11,-49],[0,-13],[-1,-12],[3,-17],[12,-34],[2,-3],[3,-7],[17,-34],[47,-50],[13,-17],[3,-12],[1,-3],[1,-9],[2,-7],[-5,-19],[-9,-17],[-3,-3],[-11,-12],[-13,-8],[-11,-20],[-2,-12],[0,-2],[4,-13],[9,-8],[15,-4],[35,-4],[22,-7],[11,-11],[56,-50],[17,-16],[15,-13],[14,-3],[64,-10],[27,4],[37,4],[109,-11],[6,-4],[7,-16],[0,-1],[13,-56],[5,-43],[12,-98],[8,-11],[87,-100],[53,-62],[7,-9],[15,-17],[15,-30],[11,-36],[2,-64],[0,-1],[0,-1],[16,-34],[10,-20],[34,-52],[16,-22],[-123,-349],[-54,-154],[-155,-439],[-46,-115],[-5,-19],[-13,-49],[-16,-47]],[[25787,49058],[-16,9],[-2,1],[-47,-19],[-65,-50],[-37,-47],[-5,-7],[-40,-61],[-11,-10],[-66,-16],[-63,8],[-2,1],[-43,9],[-18,4],[-56,20],[-42,18],[-95,70],[-65,89],[-42,57],[-64,87],[-22,124],[-5,36],[-82,83],[-18,17],[-30,5],[-20,3],[-23,14],[-40,23],[-8,14],[-29,1],[-121,30],[-104,43],[-66,60],[-48,56],[-141,186],[-42,65],[-90,118],[-46,180],[-10,29],[-10,27],[-53,300],[0,2],[0,72],[0,14],[7,49],[7,54],[0,3],[13,260],[-1,5],[-1,9],[-2,9],[0,4],[1,7],[4,29],[-15,26],[-5,9],[-33,54],[-59,99],[-50,9],[-39,67],[-169,286],[-59,46],[36,132],[-193,84],[-92,140],[-67,112],[-75,592],[28,238],[5,43],[-37,97],[-19,52],[-123,206],[-61,55],[-129,214],[0,56],[10,78],[-34,182],[-101,169],[-56,46],[-72,121],[-2,68],[-83,139],[-51,33],[-31,29],[-82,15],[-45,76],[-75,101],[-17,6],[-29,11],[-204,36],[-70,117],[-7,104],[31,294],[3,21],[2,13],[-9,15],[-62,98],[-58,50],[-58,51],[-87,83],[-13,-2],[-5,2],[-38,14],[-94,157],[-4,16],[-70,117],[-12,10],[-28,29],[-69,16],[-43,71],[-73,61],[-32,53],[-40,68],[-9,6],[-34,38],[-71,56],[-80,138],[-145,78],[-31,5],[-36,-2],[-45,-3],[-78,18],[-79,66],[-18,31],[-16,18],[-58,67],[-56,42],[-15,5],[-10,3],[-43,72],[-3,16],[-3,13],[-32,54],[-40,43],[-20,3],[-18,3],[-48,29],[-35,59],[-32,52],[-51,19],[-35,13],[-10,2],[-28,5],[-45,43],[-5,4],[-22,21],[-31,34],[-27,41],[-36,22],[-201,40],[-35,26],[-4,1],[-48,20],[-82,15],[-36,18],[-73,13],[-75,45],[-130,147],[-91,152],[-64,31],[-86,32],[-58,58],[-54,85],[-22,32],[-62,15],[-100,165],[-72,73],[-30,17],[-44,8],[-87,79],[-8,13],[-58,82],[-96,141],[-56,70],[-17,19],[-45,23],[-41,40],[-75,124],[-38,31],[-73,121],[-107,186],[-12,34],[-27,72],[-21,44],[-62,102],[-37,35],[-23,16],[-75,53],[-100,30],[-103,161],[-12,10],[-39,23],[-36,19],[-55,12],[-14,4],[-71,52],[-28,9],[-308,55],[-68,20],[-39,26],[-54,86],[-38,38],[-38,31],[-56,54],[-20,48],[-52,263],[-12,62],[-40,111],[-6,16],[-27,53],[-149,237],[-25,64],[-4,16],[-28,93],[-56,126],[5,15],[-1,20],[-16,152],[-2,26],[-51,95],[-12,28],[-7,29],[-6,116],[10,86],[-110,183],[-19,-10]],[[35436,55912],[-31,-37],[-22,-25],[-24,-29],[-29,-35],[-55,-65],[-78,-90],[-39,-44],[-230,-264],[-39,-44],[-158,-181],[-134,-154],[-59,-71],[-189,-229],[-12,-14],[-60,-73],[-65,-79],[-89,-108],[-25,-30],[-182,-205],[-48,-54],[-87,-96],[-88,-96],[-103,-128],[-43,-55],[-35,-44],[-49,-62],[-68,-86],[-29,-35],[-2,-3],[-160,-194],[-86,-105],[-201,-236],[-35,-39],[-53,-60],[-33,-38],[-5,-5],[-21,-25],[-154,-184],[-111,-133],[-32,-37],[-113,-130],[-14,-15],[-7,-10],[-27,-32],[-51,-60],[-23,-27],[-41,-49],[-97,-116],[-42,-57],[-38,-50],[-61,-68],[-5,-6],[-35,-40],[-18,-20],[-26,-28],[-33,-38],[-128,-152],[-61,-71],[-36,-42],[-18,-20],[-69,-83],[-38,-45],[-22,-24],[-51,-60],[-32,-39],[-167,-196],[-27,-32],[-101,-119],[-44,-52],[-27,-32],[-45,-54],[-13,-34],[-41,-34],[-23,-22],[-23,-30],[-83,-105],[-34,-41],[-29,-33],[-70,-83],[-1,-1],[-45,-53],[-58,-67],[-51,-59],[-49,-57],[-24,-28],[-44,-51],[-17,-24],[-30,-42],[-58,-76],[-22,-28],[-20,-25],[-22,-24],[-26,-37],[-45,-61],[-26,-29],[-133,-158],[-31,-38],[-191,-227],[-20,-22],[-99,-118],[-70,-83],[-39,-48],[-19,-22],[-23,-28],[-39,-47],[-32,-39],[-5,-6],[-41,-47],[-109,-127],[-17,-20],[-33,-39],[-67,-77],[-21,-24],[-26,-30],[-52,-60],[-37,-44],[-22,-26],[-78,-92],[-43,-51],[-45,-52],[-26,-31],[-70,-83],[-22,-27],[-56,-65],[-53,-61],[-19,-21],[-149,-178],[-137,-164],[12,-14],[-39,-65],[-10,-16],[-29,-51],[-52,-26],[-11,-5],[-37,-18],[-3,2],[-32,26],[-12,7],[-12,2],[-9,-10],[-90,-148],[-31,-26],[-9,-8],[-8,-75]],[[27926,47029],[-68,51],[-37,19],[-26,9],[-24,8],[-32,26],[-53,90],[-58,78],[-28,122],[-58,-18],[-11,46],[-1,1],[-41,74],[-56,146],[-7,12],[-9,17],[-12,20],[-22,40],[-7,1],[-32,54],[-12,29],[-18,40],[-109,180],[-69,69],[-88,95],[-83,52],[-36,18],[-35,7],[-87,16],[-30,49],[-93,73],[-30,22],[-74,45],[-67,1],[-53,9],[-93,25],[-51,19],[-53,20],[-16,16],[-68,64],[-18,21],[-10,12],[-4,6],[-49,83],[-48,113],[-66,115],[-6,1],[-20,20],[-33,18],[-53,10],[-85,-15]],[[72417,58135],[-2,-5],[-33,-76],[-98,-231],[-33,-90],[-13,-37],[-16,-44],[-30,-82],[-99,-253],[-10,-29],[-29,-70],[-29,-75],[-51,-126],[-8,-36],[-154,-385],[-101,-250],[-36,-91],[-85,-209],[-228,-157],[-25,-15],[-80,-51],[-47,-31],[-21,-6],[-208,-8],[-73,-94],[-63,-82],[-25,-33],[-24,-29],[-21,-28],[-75,-94],[-148,-190],[-65,-82],[-102,-130],[-256,-326],[-35,-46],[-176,-196],[70,-244],[95,-314],[79,-237],[18,-59],[2,-7],[119,-399],[46,-153],[13,-44],[-40,-7],[-27,-36],[-22,-38],[-10,-44],[-3,-38],[-27,-37],[-17,-41],[-14,-32],[-14,-24],[-26,-31],[-28,-56],[-14,-65],[-30,-32],[-28,-22],[-26,-6],[-22,-10],[-22,-7],[-22,-13],[-18,-62],[-7,-25],[-1,-4],[-1,-3],[-73,-258],[-37,-127],[-9,-41],[-1,-3],[-40,-123],[-63,-197],[-37,-116],[-32,-97],[-80,-244],[-14,-42],[-24,-76],[-107,-330],[-11,-34],[-21,-64],[-18,-45],[-83,-206],[-21,-52],[-113,-347],[-46,-129],[-15,-49],[-46,-135],[-15,-44],[-11,-32],[-1,-5],[-64,-181],[-71,-199],[-42,-124],[-46,-137],[-107,-307],[-64,-174],[-24,-66],[-76,-206],[-31,-83],[-105,-284],[-86,-232],[-59,-164],[-54,-146],[-99,-272],[-120,-328],[-62,-174],[-36,-101],[-47,-132],[-16,-44],[-36,-100],[-35,-85],[-33,-102]],[[67710,45921],[-12,-10],[-36,11],[-9,3],[-1,0],[-9,15],[-1,10],[-2,16],[-9,14],[-17,26],[-41,9],[-5,1],[-2,-1],[-34,-17],[-18,-8],[-20,-10],[-11,1],[-21,3],[-15,2],[-33,21],[-8,5],[-10,2],[-45,9],[-7,4],[-25,19],[-3,3],[-17,15],[-26,22],[-7,7],[-27,5],[-7,-2],[-11,-2],[-10,-3],[-3,-2],[-25,-25],[-4,-5],[-3,-17],[-2,-19],[32,-104],[-1,-45],[-4,-29],[-10,-24],[-12,-10],[-35,-29],[-3,-2],[-21,-4],[-16,6],[-10,4],[-18,2],[-26,3],[-27,-25],[-22,-85],[-16,-39],[-23,-21],[-115,-86],[-3,-2],[-8,-6],[-13,1],[-11,1],[-7,0],[-5,9],[-32,46],[-15,12],[-20,4],[-7,2],[-40,-13],[-18,-17],[-1,-1],[0,-1],[-4,-22],[-2,-8],[5,-9],[21,-41],[3,-26],[-5,-38],[-18,-35],[-4,-27],[-2,-14],[27,-52],[28,-55],[2,-4],[1,-1],[23,-25],[85,-57],[49,-91],[0,-1],[16,-14],[2,-2],[1,0],[1,-1],[44,-22],[15,-10],[52,-36],[5,-3],[70,-92],[7,-23],[-5,-38],[-9,-15],[-13,-10],[-10,-8],[-7,-5],[-24,5],[-15,11],[-3,6],[-46,90],[-8,9],[-1,1],[-6,6],[-4,2],[-22,12],[-22,2],[-12,1],[-14,-8],[-8,-4],[-34,-35],[-1,-1],[-1,-2],[-4,-29],[-2,-14],[4,-10],[12,-28],[33,-9],[33,-9],[10,-2],[18,-17],[8,-15],[1,-2],[13,-26],[5,-40],[2,-35],[-3,-50],[-9,-16],[-26,-15],[-7,2],[-27,13],[-2,1],[-7,13],[-10,16],[-7,44],[-7,11],[-18,33],[-10,9],[-15,13],[-67,36],[-22,5],[-27,5],[-1,1],[-1,-1],[-22,-16],[-9,-15],[-3,-44],[0,-7],[4,-6],[4,-9],[6,-9],[37,-26],[7,-5],[3,-5],[13,-24],[12,-33],[8,-23],[-3,-72],[-9,-45],[-29,-33],[-32,-14],[-69,1],[-97,16],[-43,14],[-4,7],[-4,7],[8,43],[5,27],[-42,67],[-21,46],[-3,6],[-19,4],[-2,0],[-1,-6],[-1,-10],[-8,-23],[-2,-6],[-9,-18],[-7,-16],[-1,0],[-2,-5],[-20,-30],[-60,-66],[-25,-19],[-34,-14],[-24,-4],[-24,2],[-18,42],[-7,41],[-6,59],[-23,35],[-33,15],[-24,-3],[-32,-25],[-12,-31],[14,-52],[25,-38],[-8,-47],[-26,-19],[-23,18],[-15,37],[-22,23],[-21,5],[-39,-18],[-28,-27],[-32,-50],[-56,-67],[-23,-23],[-31,-24],[-47,-15],[-22,32],[-3,34],[54,107],[10,41],[-18,43],[-51,43],[-129,-10],[-22,-4],[-17,-22],[16,-52],[11,-37],[0,-40],[75,-117],[8,-34],[-15,-32],[-52,3],[-50,21],[-88,39],[-20,13],[-24,27],[-27,46],[-19,18],[-31,17],[-37,8],[-28,-3],[-8,-29],[9,-33],[9,-34],[-13,-35]],[[65200,44247],[-63,35],[-85,-9],[-24,-31],[-27,-43],[-39,-44],[-57,-39],[-35,0],[-21,14],[-16,27],[3,37],[18,31],[19,31],[10,38],[-3,32],[-11,34],[-7,43],[-7,34],[-2,44],[3,97],[-24,13],[-21,-8],[-12,-27],[3,-35],[-2,-35],[-15,-44],[-21,-23],[-23,5],[-38,19],[-44,11],[-22,-5],[-28,-7],[-21,-3],[-22,-6],[-32,-14],[-25,-22],[-14,-43],[-8,-48],[-16,-46],[-14,-25],[-20,-26],[-23,-26],[-44,-20],[-19,-10],[-21,-12],[-30,-28],[-31,-36],[-19,-15],[-23,-6],[-43,1],[-34,15],[-15,30],[-8,36],[-5,42],[-6,36],[-5,32],[-11,36],[-13,31],[-20,33],[-20,20],[-24,17],[-27,10],[-40,-2],[-26,-10],[-24,-17],[-18,-25],[-11,-30],[-14,-37],[-18,-32],[-24,-31],[-41,-41],[-21,-16],[-20,-8],[-30,-5],[-28,-1],[-49,8],[-27,4],[-28,1],[-43,-9],[-24,-10],[-40,-26],[-23,-15],[-25,-15],[-22,-13],[-26,-11],[-29,-12],[-34,-21],[-39,-30],[-28,-24],[-23,-19],[-23,-23],[-34,-29],[-53,-38],[-21,-6],[-22,-1],[-26,2],[-31,2],[-37,4],[-34,3],[-32,-3],[-36,-2],[-34,-4],[-23,-2],[-25,-5],[-32,-4],[-38,2],[-28,0],[-26,-2],[-57,-7],[-22,-9],[-24,-4],[-26,0],[-42,0],[-26,3],[-23,3],[-25,12],[-37,15],[-26,16],[-29,13],[-21,4],[-36,8],[-32,10],[-24,17],[-27,22],[-22,28],[-35,49],[-49,55],[-31,27],[-28,11],[-24,14],[-103,32],[-47,17],[-54,25],[-33,18],[-20,14],[-41,22],[-45,30],[-29,27],[-20,41],[-18,31],[-14,33],[-29,46],[-40,44],[-18,15],[-74,60],[-23,19],[-33,33],[-91,116],[-36,36],[-114,133],[-31,36],[-33,31],[-39,36],[-20,20],[-102,113],[-17,18],[-31,25],[-35,25],[-20,18],[-47,53],[-21,54],[-2,47],[8,45],[12,33],[16,32],[33,69],[7,47],[-10,51],[-16,35],[-23,28],[-22,14],[-52,33],[-27,23],[-12,28],[0,40],[18,48],[19,30],[32,37],[8,30],[-9,37],[-17,24],[-27,15],[-40,11],[-65,-7],[-52,4],[-51,-18],[-49,-16],[-51,-1],[-26,4],[-1,0],[-30,7],[-1,1],[-43,28],[-21,45],[3,55],[25,48],[32,33],[26,30],[17,38],[-1,8],[-74,73],[-1,32],[-36,4],[-69,1],[-33,12],[-28,38],[-9,76],[6,79],[-10,68],[7,56],[17,44],[33,29],[31,6],[26,-13],[18,-46],[1,-40],[9,-37],[22,-13],[3,1],[37,14],[28,30],[40,-10],[49,-21],[54,5],[33,18],[30,18],[7,36],[-8,32],[-21,20],[-16,23],[-14,58],[2,48],[31,63],[19,34],[10,33],[1,92],[-14,62],[-38,78],[-23,44],[-31,50],[-32,26],[-41,9],[-46,-33],[-23,-51],[-14,-55],[-15,-31],[-22,-27],[-7,-4],[-20,-12],[-25,-8],[-38,5],[-36,14],[-25,14],[-23,25],[-27,56],[-9,44],[-9,57],[-18,41],[-5,23],[-419,259],[-70,43]],[[59495,47858],[-145,126],[-17,15],[-35,40],[-5,33],[32,65],[8,46],[0,37],[-15,38],[-21,13],[-35,2],[-48,10],[-65,42],[-49,44],[-15,29],[-6,39],[3,69],[3,14],[9,20],[17,38],[3,7],[55,37],[62,17],[56,14],[3,0],[1,1],[46,33],[5,4],[2,4],[26,49],[9,43],[6,29],[2,10],[-26,73],[-84,46],[-62,5],[-17,1],[-90,44],[-20,19],[-70,66],[-44,95],[-9,56],[-3,13],[5,14],[34,97],[19,122],[-7,102],[-32,103],[-88,74],[-86,47],[-65,54],[-42,61],[-13,14],[-15,15],[-17,17],[-35,127],[-41,25],[-1,1],[-12,57],[46,31],[60,2],[32,4],[32,4],[45,22],[2,3],[29,33],[14,54],[2,7],[-1,3],[-16,74],[-29,62],[-8,17],[-66,56]],[[84045,54824],[-2,0],[-30,-4],[-24,-7],[-29,-22],[-68,-41],[-22,0],[-138,0],[-110,-74],[-21,-18],[-16,-22],[-44,-119],[-34,-129],[-30,-126],[-13,-57],[-7,-32],[-13,-51],[-17,-65],[-23,-38],[-43,-82],[-27,-47],[-114,-211],[-19,-32],[-21,-37],[-59,-94],[-17,-26],[-55,-87],[-56,-88],[-31,-49],[-23,-36],[-20,-32],[-27,-40],[-4,-7],[-12,-19],[-32,-38],[-24,-23],[-20,-21],[-75,-78],[-27,-28],[-34,-35],[-22,-25],[-62,-66],[-25,-28],[-35,-36],[-34,-39],[-23,-43],[-53,-106],[-18,-40],[-18,-33],[-41,-92],[-46,-94],[-17,-35],[-112,-229],[-17,-36],[-19,-39],[-27,-68],[-14,-54],[-39,-142],[-11,-48],[-37,-134],[-9,-34],[-9,-34],[-7,-30],[-8,-34],[-14,-57],[-15,-65],[-4,-40],[-1,-35],[-3,-33],[-3,-95],[-1,-32],[0,-20],[-2,-39],[-1,-42],[-10,-221],[-23,-77],[-60,-207],[-16,-54],[-15,-54],[-14,-51],[-13,-26],[-34,-49],[-1,-3],[-24,-45],[-3,-9],[-11,-34],[-9,-30],[-31,-116],[-8,-32],[-21,-81],[0,-2],[-19,-72],[-3,-14],[-11,-44],[-47,-209],[-10,-42],[-29,-124],[-10,-37],[-17,-73],[-16,-70],[-27,-110],[9,-40],[21,-74],[10,-34],[20,-75],[32,-115],[17,-71],[10,-33],[15,-67],[11,-47],[19,-41],[14,-26],[-2,-9],[-29,-97],[-14,-24],[-4,-4],[-149,-157],[-56,-60],[-22,-24],[-6,-6],[-3,-3],[-181,-179],[-4,-4],[-28,-32],[-20,-17],[-30,-37],[-76,-96],[-18,-18],[-39,-46],[-3,-3],[-1,-2],[-135,-171],[-107,-132],[-11,-12],[-28,-33],[-50,-66],[-25,-33],[-34,-83],[-54,-140],[-46,-124],[-28,-72],[-36,-86],[-21,-33],[-11,-13],[-39,-46],[-26,-24],[-36,-29],[-29,-26],[-72,-61],[-43,-32],[-106,-78],[-21,-13],[-20,-15],[-100,-72],[-53,-36],[-23,-18],[-34,-25],[-20,-15],[-36,-24],[-21,-14],[-69,-46],[-15,-17],[-5,-5],[-32,-21],[-21,-14],[-42,-29],[-41,-29],[-30,-23],[-4,-6],[-13,-15],[-22,-28],[-9,-13],[-26,-38],[-2,-3],[-38,-52],[0,-36],[2,-39],[11,-42],[-8,-9],[-14,-16],[-17,-22],[-38,-50],[-5,-7],[-50,-71],[-22,-36],[-18,-46],[-13,-22],[-2,-4],[-90,-108],[-25,-44],[0,-1],[-17,-39],[-20,-13],[-9,-6],[-22,-34],[-20,-29],[-24,-36],[-29,-42],[-23,-35],[-18,-29],[-23,-31],[-91,-135],[-15,-22],[-11,-17],[-4,-5],[-7,-10],[-17,-25],[-7,-10],[-50,-75],[-24,-37],[-22,-32],[-26,-38],[-34,-50],[-24,-34],[-24,-36],[-43,-63],[-28,-40],[-20,-31],[-1,-3],[-15,-47],[-18,-113],[-6,-39],[-18,-111],[-6,-39],[-17,-97],[-1,-4],[0,-4],[-34,-227],[-4,-2],[-50,-34],[-50,-32],[-7,-7],[-23,-25],[-26,-46],[-43,-103],[-68,-160],[-25,-50],[-37,-64],[-65,-110],[-31,-52],[-95,-162],[-8,-14],[-8,-14],[-72,-123],[-14,-34],[-51,-177],[-65,-228],[-8,-37],[-18,-34],[-20,-36],[-66,-63],[-31,-28],[-180,-168],[-77,-70],[-60,-50],[-25,-35],[-11,-24],[-3,-6],[-10,-20],[-51,-128],[-9,-12],[-10,-14],[-62,-83],[-31,-48],[-56,-88],[-27,-46],[-32,-48],[-25,-30],[-87,-85],[-20,-23],[-21,-39],[-15,-54],[-4,-36],[-7,-52],[-28,-199],[-12,-88],[-13,-91],[-5,-32],[3,-55],[15,-33],[133,-163],[8,-36],[1,-2],[-3,-43],[-54,-97],[-21,-33]],[[76553,39883],[-18,5],[-18,6],[-5,8],[-1,2],[-4,1],[-32,7],[-110,89],[-50,40],[-28,23],[-50,61],[-15,17],[-51,24],[-11,10],[-14,13],[-8,14],[-45,75],[-28,19],[-20,4],[-24,-3],[-34,-15],[-6,-2],[-1,0],[-4,0],[-15,4],[-16,12],[-2,3],[-5,8],[-48,72],[-4,7],[-7,1],[-24,6],[-2,0],[-2,0],[-27,-7],[-41,-25],[-31,-20],[-29,-18],[-29,-7],[-21,-4],[-49,15],[-48,70],[-32,20],[-18,-1],[-16,0],[-54,-40],[-36,-16],[-17,-8],[-5,-2],[-15,3],[-29,6],[-39,9],[-71,33],[-27,20],[-23,42],[-25,84],[-8,26],[-11,19],[-6,6],[-21,18],[-58,51],[-11,3],[-41,12],[-8,2],[-12,-1],[-2,-1],[-37,-21],[-15,-9],[-7,-4],[-10,2],[-4,1],[-6,1],[-8,14],[0,1],[-4,7],[-2,3],[3,25],[16,31],[13,27],[1,8],[5,32],[2,14],[-3,5],[-3,5],[-5,10],[-7,1],[-22,-8],[-12,-11],[-7,-6],[-4,-1],[-17,-2],[-4,-1],[-1,1],[-32,7],[-7,1],[-2,3],[-7,8],[-13,24],[-1,3],[-2,28],[3,18],[9,69],[-5,56],[-2,31],[-1,5],[-16,29],[-19,13],[-84,14],[-3,2],[-3,3],[-11,20],[-2,35],[6,43],[4,32],[-3,26],[-2,6],[-3,12],[-4,14],[-53,89],[-7,33],[-4,20],[-8,36],[-13,25],[-1,1],[-13,10],[-14,12],[-20,6],[-43,12],[-19,12],[0,3],[-6,16],[-3,9],[2,14],[8,40],[-4,8],[-9,16],[-6,10],[-16,8],[-26,14],[-5,7],[-15,19],[-3,4],[-4,23],[11,73],[2,14],[-8,14],[-13,23],[-2,2],[-46,41],[-18,16],[-5,11],[-1,1],[-15,31],[1,17],[1,18],[1,12],[10,12],[2,3],[28,37],[6,7],[1,12],[-11,20],[-2,0],[-14,1],[-11,0],[-5,-5],[-15,-13],[-67,-62],[-11,-10],[-4,1],[-3,0],[-16,4],[-9,15],[-1,3],[-1,1],[-1,8],[-4,36],[-10,28],[-22,39],[-3,1],[-1,1],[-25,9],[-8,-5],[-3,-2],[-19,-13],[-9,-25],[-19,-50],[-17,-31],[-7,-5],[-6,-6],[-30,-26],[-2,0],[-91,40],[-45,80],[-12,194],[-361,259],[-226,203],[-223,166],[-140,18],[-21,25],[-99,122],[-7,9],[-16,22],[-3,4],[-1,23],[-2,29],[17,147],[-3,13],[-4,21],[-2,6],[-11,23],[-8,15],[-5,10],[-12,13],[-1,2],[-11,12],[-13,8],[-3,2],[-6,3],[-79,21],[-12,18],[-5,8],[-4,7],[-18,41],[-8,19],[-2,4],[-12,11],[-8,2],[-58,14],[-73,18],[-6,3],[-4,3],[-14,25],[-2,9],[0,1],[-2,8],[1,5],[4,34],[1,7],[5,5],[5,4],[18,19],[19,-3],[65,-11],[20,1],[10,1],[1,0],[25,8],[9,7],[26,20],[11,19],[16,26],[7,54],[-6,32],[-16,29],[-22,22],[-20,4],[-8,2],[-8,1],[-18,-4],[-28,-7],[-11,2],[-29,6],[-29,19],[-25,40],[-16,38],[-11,67],[-12,36],[-69,122],[-46,44],[-104,61],[-29,45],[-56,115],[-18,21],[-56,16],[-25,-7],[-5,-5],[-15,-16],[-4,-4],[-1,-17],[-7,-67],[-9,-15],[-13,-12],[-5,-5],[-1,-1],[-9,2],[-11,3],[-13,25],[31,126],[-11,2],[-6,1],[-41,8],[-22,4],[-5,1],[-30,6],[-16,-25],[-31,7],[-17,25],[-30,68],[-6,42],[-18,47],[-49,96],[-21,18],[-100,51],[-74,84],[-67,58],[-54,62],[-35,68],[-4,18],[-46,70],[-34,3],[-19,-17],[-5,-12],[-35,-27],[-36,12],[-9,23],[-4,10],[-4,91],[-21,44],[-6,13],[-58,55],[-25,14],[-28,23],[-6,5],[-56,47],[-21,38],[-9,15],[1,9],[1,29],[0,30],[-22,39],[-18,17],[-61,9],[-25,14],[-50,47],[-19,18],[-1,1],[-5,11],[-19,41],[-11,18],[-14,24],[-9,13],[-19,10],[-30,11],[-16,5],[-26,19],[-50,23],[-7,-3],[-41,-18],[-5,-2],[-22,-46],[-31,-24],[-26,6],[-7,1],[-31,33],[-5,5],[-33,11],[-31,-2],[-33,-14],[-19,-15],[-10,-7],[-23,-10],[-28,-3],[-10,3],[-23,8],[-7,2],[-7,16],[-9,21],[-5,10],[1,5],[5,59],[1,8],[-6,17],[-6,18],[0,2],[-1,1],[-24,38],[-12,20],[-49,40],[-33,12],[-36,-10],[-11,-11],[-6,-6],[0,-85],[6,-12],[45,-91],[-41,-134],[-7,-24],[-3,-4],[-21,-15],[-32,12],[-11,4],[-13,4],[-6,8],[-15,20],[-2,3],[1,16],[0,18],[13,19],[7,50],[-1,12],[-1,11],[-1,9],[-1,12],[-7,12],[-6,13],[-4,8],[-3,5],[-8,8],[-6,8],[-14,5],[-81,32],[-28,36],[-4,5],[-22,3],[-15,1],[-4,1],[-10,-7],[-18,-11],[-2,-2],[-21,-59],[-14,-79],[-1,-3],[0,-1],[-3,-7],[-12,-28],[-25,-20],[-6,-4],[-33,7],[-15,20],[0,2],[3,34],[0,3],[6,71],[1,8],[-12,19],[-29,47],[-30,48],[-20,-2],[-8,-1],[-24,-19],[-14,-11],[-19,-76],[-4,-14],[-18,-30],[-41,-26],[-16,4],[-15,20],[-1,26],[-1,56],[-9,46],[-1,6],[0,1],[-24,31],[-26,3],[-7,0],[-4,1],[-4,-4],[-20,-20],[-8,-8],[-20,-51],[-7,-24],[-14,-54],[-28,-28],[-11,-2],[-32,11],[-9,11],[-6,11],[-13,24],[-17,32],[-55,76],[-8,2],[-34,7],[-1,0],[-3,0],[-16,-2],[-6,-1],[-118,-14],[-72,-3],[-63,-2],[-19,3],[-20,4],[-105,19],[-10,4],[-26,12],[-8,4],[-11,4],[-6,-2],[-56,-23],[-31,8],[-24,7],[-3,1],[-8,2],[-10,-3],[-29,-10],[-18,-16],[-6,-5],[-14,-31],[-9,-67],[-1,-8],[-10,-32],[-7,-23],[-2,-5],[0,-1],[-22,-14],[-35,0],[-11,0],[-43,56],[-12,14],[-18,17],[-8,3],[-12,5],[-22,10],[-8,-7],[-3,-2],[-9,-9],[-4,-27],[0,-7],[-1,-3],[5,-40],[6,-10],[6,-10],[2,-4],[4,-22],[-1,-3],[0,-5],[-8,-55],[-7,-15],[-1,-1],[-6,-11],[-9,-7],[-11,-8],[-10,-8],[-5,1],[-1,0],[-8,1],[-5,10],[18,61],[1,5],[5,36],[-3,6],[-1,2],[-7,12],[-14,1],[-12,1],[-8,1],[-8,-8],[-4,-3],[-4,-3],[-20,-37],[-7,-13],[-3,-3],[-13,-12],[-11,-10],[-17,-1]],[[59495,47858],[-4,-69],[-14,-85],[-36,-39],[-32,-1],[-23,12],[-30,11],[-20,2],[-7,1],[-22,-4],[-12,-40],[-3,-35],[10,-37],[16,-65],[11,-58],[-4,-55],[-21,-59],[-16,-24],[4,-47],[55,-121],[-26,-7],[-24,8],[-66,50],[-47,31],[-27,37],[-22,30],[-21,21],[-23,21],[-32,36],[-51,61],[-62,70],[-31,36],[-36,42],[-37,44],[-22,26],[-24,25],[-22,28],[-24,31],[-17,22],[-35,45],[-32,39],[-39,49],[-40,73],[-47,-36],[-74,-44],[-52,-23],[-38,0],[-27,6],[-1,37],[-7,56],[-5,37],[-6,50],[2,31],[-161,-71],[-113,-46],[-52,-12],[-142,-27],[-2,0],[-129,12],[-44,-17],[-25,-6],[-291,-100],[-70,-24],[-42,-16],[-5,-6],[-50,-51],[-67,-70],[-23,-26],[120,-97],[36,-30],[148,-117],[161,-140],[-2,-3],[-204,-336],[-28,-47],[-87,-143],[-69,-114],[-76,-125],[-46,-76],[-32,-53],[-78,-128],[-56,-92],[-56,-93],[-26,-40],[23,-38],[39,-31],[18,-34],[24,-33],[1,-45],[-19,-34],[-45,-49],[-17,-19],[-26,-40],[61,-87],[29,-45],[18,-27],[6,-42],[57,-127],[18,-40],[15,-34],[42,-94],[34,-77],[-109,-139],[-173,193],[-50,53],[-144,-131],[-78,134],[-21,34],[-6,-2],[-38,-19],[-98,-47],[-27,-5],[-27,11],[-34,-7],[-31,-13],[-15,2],[-6,13],[-135,-59],[-3,9],[-21,48],[-5,8],[-50,25],[-69,41],[-9,8],[-2,2],[0,1],[-2,4],[2,22],[11,51],[-4,6],[-69,90],[-12,3],[-54,48],[-113,134],[-41,124],[-1,1],[-20,72],[-19,24],[-11,14],[-42,171],[-3,12],[-16,0],[-16,0],[0,6],[-3,7],[0,1],[-14,20],[-14,15],[-28,21],[-39,28],[-12,13],[-3,3],[-19,26],[-27,46],[-21,47],[-4,9],[-10,30],[-7,33],[-2,16],[0,3],[2,73],[2,57],[3,25],[1,11],[2,2],[0,1],[35,129],[4,21],[-3,36],[-143,158],[-190,211],[-214,236],[-45,51],[-18,24],[-23,31],[-43,39],[-35,40],[-20,22],[-52,60],[-1,0],[-267,286],[-114,121],[-21,23],[-110,120],[-193,210],[-46,51],[-64,70],[-95,105],[-14,15],[-213,232],[-20,21],[-137,149],[-72,79],[-85,91],[-1,1],[-109,119],[-34,29],[-36,12],[-139,45],[-148,48],[-59,16],[-106,34],[-41,13],[-28,9],[-163,51],[-199,63],[-87,29],[-37,12],[-24,8],[-31,10],[-25,9],[-42,14],[-48,16],[-6,2],[-38,12],[-131,40],[-81,27],[-49,16],[-8,2],[-78,-44],[-14,-8],[-81,-45],[-72,-40],[-140,-79],[-240,-134],[-182,-94],[-405,101],[12,48],[3,33],[3,38],[6,30],[-5,40],[-8,32],[-1,34],[3,33],[10,42],[9,49],[-4,66],[-9,34],[-11,36],[-5,39],[0,84],[8,103],[4,50],[-1,53],[-10,63],[-10,40],[-20,44],[-51,71],[-11,35],[-100,-128],[-350,-450],[-244,384],[-85,133],[-38,61],[-94,147],[-20,33],[-1,2],[-102,159],[-131,199],[-99,168],[-21,34],[-27,45],[-173,292],[-46,69],[-48,72],[-66,100],[-63,103],[-197,322],[-157,252]],[[45107,50826],[-53,-69],[-71,-93],[-214,-278],[-62,-81],[-85,-108],[-114,-149],[-70,-92],[-26,-47],[-18,-32],[-80,-116],[-52,-74],[-31,-44],[-172,-223],[-253,-332],[-62,-83],[-3,-5],[-83,-110],[-220,-295],[-142,-191],[-109,-145],[-20,-28],[-89,-118],[-29,-39],[-5,-6],[-82,-110],[-24,-33],[-29,-38],[-78,-105],[-93,-123],[-4,-5],[-53,-71],[-34,-45],[-119,-158],[-28,-38],[-226,-299],[-19,-25],[-168,-224],[-67,-90],[-49,-62],[-69,-87],[-118,-149],[-3,-4],[-252,-319],[-21,-26],[-27,-35],[-23,-29],[-116,-150],[-98,-127]],[[41244,45716],[-41,-24],[-7,-8],[-60,-71],[-57,-67],[-82,-96],[-336,-393],[-55,-64],[-122,-144],[-279,-326],[-259,-295],[-113,-130],[-109,-124],[-161,-184],[-74,-85],[-132,-151],[-38,-43],[-27,-31],[-42,-47],[-69,-80],[-4,-4],[-168,-191],[-408,-467],[-119,-130],[-14,-16],[-65,-71],[-68,-75],[-28,-31],[-4,-4],[-46,-51],[-213,-233],[-79,-91],[-2,-3],[-274,-319],[-176,-205],[-105,-121],[-73,-86],[-84,-95],[-108,-127],[-156,-181],[-159,-185],[-198,-231],[-239,-278],[-108,-126],[-38,-44],[-158,-183],[-89,-103],[-61,-71],[-50,-57],[-37,-43],[-105,-123],[-22,-24],[-40,-47],[-28,-32],[-28,-33],[-38,-44],[-20,-23],[-24,-28],[-60,-69],[-32,-38],[-26,-30],[-160,-186],[-1,0],[-63,-73],[-174,-202],[-104,-120],[-45,-52],[-174,-202],[-43,-50],[-159,-182],[-5,-7],[-68,-79],[-259,-304],[-175,-205],[-114,-133],[-3,-4],[-54,-63],[-41,-48],[-27,-31],[-4,-4],[-21,-23],[-186,-217],[-36,-43],[-115,-134],[-43,-51],[-107,-108]],[[33246,36519],[-5,17],[1,18],[-18,35],[-71,44],[-3,2],[-3,4],[-12,12],[-7,8],[-6,9],[-1,3],[-9,15],[-15,39],[-71,281],[-11,66],[4,7],[-6,22],[0,3],[-14,22],[-28,23],[-33,25],[-12,20],[-19,20],[-9,26],[-115,16],[-7,0],[-28,-22],[-7,-35],[4,-16],[48,-81],[26,-69],[-7,-87],[-17,-40],[-32,-33],[-1,-1],[-71,-38],[-41,-11],[-118,17],[-126,91],[-53,10],[-74,-10],[-27,5],[-7,2],[-29,21],[-17,23],[-13,29],[-4,11],[-1,75],[-9,106],[-20,76],[-19,29],[-5,7],[-4,2],[-94,32],[-62,51],[-2,1],[-1,1],[-5,1],[-87,44],[-80,19],[-32,26],[-76,142],[-143,162],[-103,44],[-43,36],[-7,9],[-12,18],[-22,32],[-14,43],[-21,36],[-52,59],[-19,34],[-5,17],[1,9],[6,46],[0,1],[16,31],[26,27],[23,8],[9,-2],[44,-10],[21,-5],[7,-2],[16,1],[89,51],[17,17],[2,9],[1,13],[2,17],[-2,3],[-10,17],[-4,7],[-2,0],[-88,20],[-17,12],[-7,11],[-2,4],[-13,21],[-29,149],[0,11],[3,35],[0,13],[3,5],[4,7],[2,2],[0,1],[14,13],[26,7],[27,4],[9,1],[25,-5],[11,-30],[3,-8],[1,-5],[1,-32],[18,-35],[63,-18],[16,-47],[9,-31],[16,-29],[21,-15],[21,-8],[22,19],[24,36],[18,24],[23,18],[27,27],[0,47],[-23,18],[-27,-8],[-18,-25],[-20,-24],[-30,-14],[-25,8],[-13,36],[5,41],[9,75],[-5,70],[-3,50],[15,28],[23,24],[23,40],[8,43],[-19,25],[-29,-22],[-23,-18],[-25,-22],[-22,-10],[-38,9],[-9,10],[-56,90],[-26,45],[-2,31],[0,1],[-3,84],[-18,40],[-8,9],[-31,6],[-55,-30],[-176,45],[-10,15],[-92,126],[-5,7],[4,27],[12,27],[13,29],[3,23],[4,31],[-3,63],[0,18],[4,42],[0,10],[41,45],[22,-3],[23,-4],[62,13],[34,-7],[15,-11],[3,1],[33,5],[21,16],[2,3],[49,75],[5,11],[8,18],[5,47],[-6,25],[-37,63],[-12,10],[-101,87],[-14,1],[-4,0],[-10,0],[-7,-6],[-8,-7],[-7,-6],[-2,-14],[-2,-18],[-13,-29],[-8,-12],[-23,-34],[-6,-7],[-36,-39],[-2,-2],[-6,-17],[-3,-9],[0,-24],[-12,-22],[-35,-29],[-22,8],[-18,35],[23,140],[-23,128],[-7,17],[-20,34],[-55,8],[-21,-10],[-3,-1],[-21,-20],[-59,-117],[-8,-14],[-62,-118],[-31,-57],[-5,-10],[-15,-14],[-21,4],[-16,27],[-66,172],[2,44],[20,36],[11,10],[11,10],[12,21],[1,7],[8,67],[-5,37],[-24,37],[-50,9],[-5,-2],[-2,-1],[-13,-5],[-82,-65],[-3,-3],[-1,2],[-29,73],[-3,9],[42,46],[5,12],[4,10],[5,39],[-2,3],[-14,28],[-33,10],[-74,-26],[-34,3],[-24,16],[-26,45],[-4,24],[3,28],[6,14],[1,3],[2,5],[28,37],[7,9],[7,23],[7,22],[-61,127],[-50,-19],[-17,-16],[-1,0],[-13,-82],[-6,-21],[-9,-28],[-11,-11],[-8,-16],[-19,-18],[-3,-37],[5,-48],[-4,-55],[-19,-24],[-43,-27],[-38,-20],[-25,-7],[-23,13],[-6,29],[-2,15],[27,38],[20,12],[12,8],[18,11],[16,26],[19,56],[2,33],[-128,109],[-83,76],[-16,23],[-5,41],[11,23],[17,35],[6,31],[21,32],[13,25],[10,44],[27,35],[33,6],[21,0],[35,12],[32,45],[-4,59],[-13,31],[-32,12],[-23,2],[-29,-15],[-16,-33],[-10,-28],[-8,-31],[-23,-48],[-27,-28],[-28,-33],[-21,21],[-23,24],[-54,86],[-26,20],[-40,8],[-1,0],[-102,-61],[-51,-2],[-60,7],[-25,5],[-24,16],[-21,36],[-4,17],[4,35],[4,6],[43,69],[41,52],[18,37],[12,77],[-6,29],[-2,9],[-18,43],[-17,29],[-6,11],[-26,29],[-86,76],[-34,42],[-28,53],[-25,84],[-3,29],[4,63],[19,28],[22,20],[20,8],[101,-3],[1,0],[35,-26],[34,-58],[10,-12],[27,-31],[14,-11],[38,-7],[85,76],[11,21],[24,47],[3,5],[0,3],[5,43],[0,1],[0,1],[-8,40],[-21,32],[-49,41],[-6,5],[-44,86],[-3,7],[-6,36],[-4,23],[-7,39],[1,36],[-10,107],[-3,23],[-45,240],[-11,34],[-36,51],[-22,19],[-9,7],[-96,82],[-29,24],[-29,54],[5,70],[12,12],[35,36],[13,5],[1,0],[31,-6],[6,-1],[22,-15],[64,-45],[84,-15],[53,14],[43,43],[32,54],[49,81],[19,-14],[39,-51],[33,-27],[30,-29],[39,-15],[46,6],[36,12],[23,22],[22,29],[13,30],[3,39],[-5,44],[-19,32],[-26,18],[-32,12],[-58,4],[-98,41],[-29,23],[-25,17],[-26,19],[-27,33],[-86,80],[-35,58],[-3,15],[-4,26],[-1,1],[7,58],[17,33],[27,29],[46,7],[76,12],[16,-3],[59,17],[59,37],[22,20],[8,15],[15,24],[21,36],[11,34],[3,7],[1,6],[9,80],[-1,16],[-2,13],[-23,72],[-78,150],[-39,95],[-34,94],[-21,92],[-14,42],[-24,65],[-43,91],[-46,77],[-73,81],[-65,40],[-151,44],[-112,57],[-147,121],[-42,34],[-1,2],[-7,11],[-6,-2],[-1,-1],[-7,5],[-17,11],[-130,81],[-78,38],[-47,19],[-47,18],[-4,2],[-3,3],[-345,463],[-5,6],[6,12],[3,6],[-1,58],[0,3],[-4,23],[-22,89],[-34,66],[-41,35],[-21,36],[-40,123],[-34,91],[-12,35],[-13,72],[0,4],[-10,50],[-8,14],[-16,26],[-20,20],[-38,23],[-22,4],[-13,3],[-9,15],[-3,6],[-17,28],[0,27],[0,8],[-9,37],[0,1],[-6,17],[-13,78],[-46,52],[-7,8],[-3,16]],[[85042,34420],[-1,41],[-17,71],[-27,76],[-48,54],[-108,64],[-135,49],[-79,53],[-81,40],[-77,-2]],[[84469,34866],[101,32],[47,-19],[12,-5],[55,-24],[46,-19],[93,-41],[20,-13],[17,-12],[10,-7],[40,-30],[67,-52],[36,-76],[23,-51],[16,-34],[-10,-95]],[[85275,35625],[48,-84],[52,-17],[66,-43],[32,-36],[22,-42],[10,-89],[-14,-117],[-3,-117],[-2,-2],[-37,-56],[-51,54],[-42,95],[-37,67],[-34,71],[-32,57],[-35,77],[-81,44],[-63,20],[-57,20],[-85,35],[-119,13],[-4,-6],[-74,-88],[-83,-38],[-70,148],[-21,46],[74,44],[48,72],[14,21],[62,130],[0,2],[62,118],[95,50],[75,2],[24,-25],[73,-28],[74,-43],[10,-25],[27,-72],[-2,-25],[-4,-49],[15,-66],[36,-63],[31,-55]],[[85403,38519],[-36,-4],[-80,52],[-72,83],[5,2],[35,8],[68,-35],[15,-8],[13,-7],[40,-20],[52,-68],[-40,-3]],[[85929,38889],[-12,-23],[-19,4],[-47,12],[3,-13],[19,-79],[74,-22],[44,-56],[19,-81],[15,-16],[57,-57],[-77,-11],[-64,75],[-66,60],[-52,60],[-79,81],[-19,26],[-17,24],[-32,68],[-7,86],[-1,38],[-1,49],[29,94],[126,-71],[87,-52],[62,-66],[-18,-85],[-24,-45]],[[85167,38739],[2,-41],[-58,57],[-43,93],[-51,43],[-69,16],[-68,111],[-16,88],[25,24],[23,76],[45,3],[34,-68],[69,-20],[2,-73],[29,-94],[31,-39],[76,-127],[-31,-49]],[[85991,39239],[-53,-34],[-25,2],[-61,6],[-95,68],[33,126],[15,63],[10,48],[36,113],[56,27],[11,-24],[30,-64],[8,-41],[6,-38],[23,-69],[2,-29],[6,-87],[-2,-67]],[[84944,39816],[29,-98],[-54,51],[-55,71],[-13,97],[59,-37],[34,-84]],[[85097,40563],[-56,-44],[-13,0],[-39,2],[-59,41],[-9,70],[-11,89],[10,61],[5,28],[32,41],[65,65],[56,-39],[31,-86],[17,-84],[-8,-63],[-21,-81]],[[86528,43650],[-76,-46],[-15,0],[-89,1],[82,66],[20,15],[9,5],[32,15],[62,21],[30,-12],[10,-4],[-65,-61]],[[90584,48287],[-25,-69],[-43,-67],[-22,-19],[-36,-28],[-5,-33],[-11,-64],[-36,-75],[-97,-154],[-19,-30],[-21,-83],[-23,-89],[-48,-142],[-36,-131],[-23,-60],[-13,-32],[-8,-15],[-54,-106],[-42,-57],[-14,-21],[-13,-19],[-10,-3],[-30,-7],[-25,34],[11,41],[27,39],[18,24],[2,25],[1,13],[13,38],[23,36],[27,3],[6,64],[28,41],[53,75],[17,62],[22,53],[-25,55],[-15,39],[16,22],[48,21],[26,47],[-13,27],[-14,45],[-29,7],[-43,-10],[-22,-21],[-15,-15],[-9,-13],[-13,-17],[-30,15],[-15,27],[-10,-59],[34,-16],[31,-3],[6,3],[27,15],[20,30],[36,12],[-18,-50],[-33,-24],[-24,-71],[6,-43],[20,-35],[-1,-3],[-11,-47],[-15,-16],[-11,-13],[-33,-86],[-45,-72],[-34,-48],[-22,-37],[-26,7],[-20,-26],[2,-7],[7,-38],[-27,-22],[-21,-25],[-12,-28],[-2,-50],[-27,7],[-5,-1],[-41,-8],[-64,-8],[-24,0],[-34,0],[-27,0],[-33,7],[-5,-3],[-29,-15],[-4,-56],[23,17],[23,0],[42,-7],[28,0],[29,14],[38,2],[40,2],[51,-11],[25,-48],[9,-32],[-31,-56],[-24,-44],[-14,-20],[-52,-75],[-4,-44],[-54,-20],[-32,-78],[-10,-24],[-68,-51],[-61,-70],[-48,-91],[-34,1],[-34,-95],[-56,-80],[-47,-59],[-40,-38],[-49,-63],[-61,-75],[-64,-81],[-65,-96],[-90,-137],[-42,-72],[-60,-115],[-31,-58],[-27,-54],[-40,-77],[-21,-44],[-22,-47],[-23,-47],[-39,-78],[-36,-79],[-48,-110],[-26,-68],[-24,-65],[-11,-13],[-29,-36],[-18,-85],[-4,-12],[-20,-57],[-42,-15],[-35,-105],[-8,-62],[-38,-98],[-19,-43],[-23,-50],[-15,-40],[-5,-15],[-9,-24],[-43,-108],[-65,-174],[-50,-135],[-18,-45],[-10,-25],[-27,-72],[-20,-54],[-23,-66],[-21,-58],[-66,-98],[-34,-49],[-3,-4],[-23,-99],[-18,-65],[-25,-80],[-43,-113],[-11,-74],[-19,-99],[-27,-61],[-32,-93],[-31,-124],[-27,-131],[-16,-98],[-22,-170],[-10,-92],[-11,-82],[-6,-79],[-19,-182],[-7,-121],[-34,-189],[-35,-91],[-33,-51],[-6,-108],[-19,-107],[-58,-117],[-54,-41],[-33,48],[6,65],[14,90],[41,143],[65,105],[33,90],[-34,25],[-21,37],[-19,32],[-41,67],[-9,15],[0,-27],[-1,-34],[8,-59],[4,-32],[-51,-86],[-33,-119],[-29,-123],[-58,-42],[-53,-8],[-46,30],[-4,94],[-53,-63],[-45,-8],[-69,-8],[-48,-32],[-27,-58],[-5,-95],[22,40],[26,48],[46,36],[46,3],[18,2],[30,-10],[25,-9],[63,-42],[118,-58],[5,-26],[8,-41],[-37,-43],[-15,-18],[-10,-6],[-38,-23],[46,-107],[-36,-110],[2,-45],[1,-34],[13,-59],[28,-24],[5,69],[0,81],[3,44],[3,40],[17,33],[54,0],[1,0],[42,-5],[20,-23],[-7,-96],[11,-93],[5,-85],[-60,-142],[-14,-63],[-14,-43],[-10,-31],[-7,-23],[-42,-146],[-7,-35],[-14,-79],[-9,-58],[-9,-59],[-5,-50],[-9,-87],[-8,-44],[-12,-71],[-27,-138],[-11,-56],[-12,-61],[-8,-72],[-16,-104],[-20,-162],[-1,-2],[-11,-90],[-4,-31],[-7,-52],[-9,-64],[-8,-58],[-14,-132],[-2,-126],[-2,-128],[4,-87],[4,-68],[11,-86],[9,-64],[14,-95],[18,-99],[21,-111],[17,-88],[34,-172],[8,-33],[8,-33],[-20,-137],[-103,-77],[-27,93],[-13,60],[-21,68],[-14,49],[-12,47],[-6,65],[-37,81],[-15,47],[-5,59],[-14,62],[-9,80],[-5,66],[-30,123],[-13,85],[-13,61],[-25,99],[-24,100],[-9,26],[-19,55],[-30,58],[-4,132],[-8,58],[-3,22],[-14,57],[-3,39],[-6,77],[-51,132],[-2,66],[-1,27],[-2,21],[-4,54],[5,65],[2,21],[14,82],[13,91],[2,17],[6,11],[41,86],[27,97],[18,36],[23,45],[-3,59],[-1,30],[-27,109],[-35,56],[-49,84],[-87,81],[-80,24],[-87,3],[-20,-3],[-64,-10],[-47,-4],[-58,-11],[-70,0],[-51,-10],[-57,-4],[-43,-6],[-73,1],[-57,23],[-37,-2],[-29,-7],[-15,-4],[-37,-34],[-45,-35],[-36,-61],[-62,-19],[-86,19],[-63,4],[-73,28],[-48,19],[-60,23],[-56,34],[-47,37],[-37,89],[-26,103],[-21,82],[10,74],[53,63],[45,70],[33,65],[36,77],[21,58],[18,58],[47,141],[23,111],[0,102],[16,89],[44,83],[24,84],[0,2],[22,68],[50,33],[33,108],[17,53],[9,27],[6,27],[8,39],[33,68],[17,114],[-27,68],[-3,6],[37,26],[19,13],[27,130],[22,126],[19,34],[20,34],[47,51],[25,37],[24,40],[28,60],[20,47],[6,13],[29,61],[61,76],[21,34],[30,47],[37,75],[27,65],[37,111],[34,69],[75,103],[33,77],[14,20],[34,52],[40,48],[56,92],[60,137],[50,80],[71,8],[47,22],[38,28],[59,23],[68,109],[42,60],[30,56],[47,76],[28,39],[33,53],[38,81],[59,84],[65,83],[57,65],[13,15],[37,36],[47,80],[4,12],[23,71],[72,96],[40,68],[32,75],[46,102],[7,17],[21,57],[11,111],[-8,69],[15,100],[19,69],[20,102],[37,65],[74,98],[41,86],[42,110],[20,125],[43,114],[17,96],[35,26],[5,5],[23,-1],[61,-1],[72,28],[22,29],[18,22],[24,53],[5,12],[31,70],[26,60],[0,1],[-16,43],[-14,38],[31,50],[3,6],[90,56],[13,8],[45,54],[4,6],[43,52],[57,13],[45,121],[65,94],[30,38],[-11,112],[-46,-58],[-40,-67],[-53,-75],[-54,-51],[-36,-64],[-23,-34],[-34,-51],[-9,-6],[-83,-60],[-44,-47],[-38,-61],[-6,-104],[-2,-28],[-28,-87],[-50,-58],[-93,-17],[-109,-11],[-69,-50],[40,-49],[-11,-125],[-80,-96],[-19,-56],[-15,-42],[-2,-45],[-2,-52],[-69,-50],[-32,-60],[-28,-71],[-6,-16],[-4,-27],[-6,-51],[-5,-74],[-11,-66],[-30,-86],[-10,-85],[-16,-156],[-65,-119],[-11,-24],[-38,-82],[-54,-74],[-26,-53],[-44,-32],[-1,-2],[-11,-103],[-75,-89],[-39,-51],[-23,-30],[-26,-31],[-39,-48],[-63,-90],[-26,-44],[-16,-27],[-16,0],[-30,0],[-33,-72],[-67,-67],[-16,-12],[-31,-23],[-27,-9],[-87,-31],[-49,-25],[-41,-17],[-72,-56],[-59,-57],[-41,-59],[-11,-49],[-10,-50],[-7,-59],[-8,-67],[-45,-106],[-40,-81],[-20,-55],[-35,-68],[-34,-43],[-29,-37],[-12,-18],[-14,-21],[-41,-71],[-58,-100],[-43,-85],[-49,-86],[-45,-63],[-26,-44],[-29,-39],[-35,-51],[-43,-95],[-41,-69],[-38,-23],[-14,-9],[-14,-15],[-31,-32],[-52,-83],[-25,-60],[-23,-58],[-5,-24],[-11,-56],[-16,-71],[-9,-42],[-1,-5],[-15,-39],[-5,-14],[-53,-59],[-42,-27],[-2,59],[-1,22],[-7,74],[21,96],[16,87],[16,84],[4,26],[8,48],[10,114],[6,88],[-7,104],[-3,42],[-4,43],[20,43],[9,19],[39,34],[42,24],[91,32],[17,9],[33,18],[38,30],[37,34],[64,60],[-97,-12],[-11,70],[-2,12],[-4,28],[-6,57],[-29,95],[-20,18],[-28,27],[18,-114],[5,-23],[10,-44],[5,-118],[-35,-31],[-16,-15],[-85,-16],[-78,-19],[-57,-50],[-36,-105],[-3,-25],[-13,-93],[-2,-128],[-2,-123],[-21,-128],[-22,-177],[-23,-107],[0,-2],[-42,-98],[-32,-41],[-9,-11],[-36,-53],[-41,-80],[-32,-113],[-26,-75],[-34,65],[-4,123],[1,122],[-51,50],[-60,72],[-39,18],[-42,50],[-52,-69],[18,-51],[84,-58],[-6,-90],[7,-9],[58,-74],[11,-87],[22,-109],[-1,-74],[-10,-75],[-74,-74],[-57,-85],[-16,-104],[-34,-174],[-2,-87],[-23,-116],[7,-132],[16,-109],[1,-114],[5,-75],[2,-153],[-42,-83],[-8,-61],[3,-72],[18,-109],[47,-105],[59,-111],[27,-99],[24,-78],[25,-76],[27,-81],[23,-52],[29,-53],[50,-123],[50,-21],[22,-53],[41,-62],[46,-69],[66,-16],[99,-83],[51,-79],[20,-6],[28,-9],[59,-30],[43,-30],[45,-32],[75,-33],[94,-37],[126,-30],[95,-60],[38,-19],[36,-17],[42,-18],[12,-5],[53,-19],[72,-30],[64,-25],[55,-28],[62,-68],[60,-101],[42,-83],[22,-48],[8,-17],[9,-22],[21,-49],[4,-42],[2,-22],[4,-102],[1,-10],[10,-74],[6,-82],[0,-124],[-1,-6],[-15,-82],[-10,-26],[-30,-77],[-3,-69],[-1,-18],[37,-188],[23,-121],[172,-142],[98,-15],[-17,66],[-20,75],[-63,68],[-32,139],[27,71],[141,-232],[79,-128],[1,-42],[1,-112],[11,-30],[8,-22],[-111,-329],[-91,-293],[-59,-48],[-50,-42],[-72,-47],[-27,-97],[-42,-47],[-81,-50],[-60,-49],[-38,-42],[-22,-22],[-40,-41],[-63,-74],[-56,-66],[-28,-33],[-17,-21],[-42,-53],[-55,-71],[-25,-34],[-16,-24],[-69,-104],[-49,-56],[-76,-6],[7,64],[8,77],[20,69],[21,72],[21,101],[0,2],[-6,102],[-1,28],[-19,54],[-13,54],[-6,49],[-4,40],[-5,55],[-11,113],[-19,77],[-37,93],[-46,63],[-70,14],[-83,74],[-111,71],[-67,85],[-63,99],[-40,26],[-25,15],[-106,36],[-33,24],[-14,11],[8,-62],[-69,-13],[-52,-18],[-36,-22],[-13,-8],[-46,-70],[-18,-29],[-30,-48],[-38,-94],[-19,-28],[-6,-8],[-47,-52],[-9,-2],[-58,-10],[-118,27],[-76,11],[-66,37],[-23,33],[-39,55],[-71,18],[-70,38],[-83,87],[-66,32],[-62,-19],[-33,-71],[-20,-42],[-75,-118],[-41,-94],[-24,-14],[-49,-30],[-81,0],[-63,27],[-53,74],[-31,43],[-32,26],[-3,-20],[-4,-27],[53,-91],[42,-47],[70,-22],[53,-21],[67,-11],[71,63],[54,144],[91,87],[58,94],[62,-19],[19,-19],[80,-81],[99,-62],[66,-100],[45,-61],[1,-2],[116,0],[95,-12],[8,-20],[87,-218],[54,-37],[20,2],[33,4],[75,38],[100,81],[14,-9],[50,-34],[79,-36],[118,-37],[91,-103],[36,-69],[31,-73],[16,-40],[19,-55],[41,-96],[80,-131],[58,-88],[20,-57],[16,-46],[-25,-135],[-12,-95],[10,-89],[13,-77],[-30,-31],[-69,-33],[-70,-31],[-28,-12],[-72,-31],[-65,-27],[-25,-17],[-31,-21],[-68,-53],[-20,-16],[-56,-33],[-67,22],[11,20],[30,55],[38,61],[59,55],[49,68],[17,44],[18,46],[4,31],[6,47],[-5,72],[-3,39],[-38,102],[-41,77],[-31,37],[-21,25],[-60,48],[-20,16],[-34,27],[-64,41],[-56,18],[-69,18],[-104,49],[-77,17],[-42,-3],[-16,-2],[-149,-20],[-36,-3],[-83,-5],[-89,-14],[-97,49],[-4,4],[-93,90],[-29,27],[-23,22],[-60,35],[-81,59],[-109,0],[-95,-32],[-74,-6],[-67,-15],[-67,37],[-46,82],[-10,19],[-95,85],[-105,26],[-16,26],[-33,54],[-29,19],[-45,29],[-71,69],[-35,59],[-31,52],[-27,28],[-47,47],[-46,42],[-119,59],[-60,0],[-92,74],[-94,69],[-39,32],[-5,-16],[-3,-6],[-2,-7]],[[82267,36031],[-13,18],[-13,10],[-26,46],[-11,19],[-29,49],[-8,14],[-45,92],[-21,51],[-13,76],[-1,4],[-14,38],[-26,48],[-15,26],[-5,10],[-20,25],[-40,35],[-49,15],[-56,43],[-28,30],[-31,34],[-35,68],[-3,6],[-47,106],[-5,12],[-7,-3],[-10,5],[-38,18],[-40,31],[-35,45],[-9,12],[-6,5],[-9,8],[-24,21],[-8,1],[-24,2],[-50,-9],[-102,-39],[-4,-2]],[[81347,37001],[-20,13],[-9,0],[-57,34],[-30,27],[-28,25],[-12,11],[-18,21],[-1,3],[-15,35],[-2,5],[10,19],[52,65],[6,8],[10,20],[5,57],[-9,64],[-8,14],[-23,34],[-20,27],[-18,13],[0,1],[-16,11],[-10,1],[-19,2],[-8,1],[-31,-38],[-11,-13],[-14,3],[-2,0],[-7,12],[-12,23],[0,6],[2,15],[38,21],[36,36],[3,3],[1,7],[5,36],[1,7],[-8,36],[-8,15],[-34,3],[-35,-27],[-42,-55],[-27,-24],[-21,-9],[-114,-52],[-3,-1],[-16,-7],[-2,0],[-21,5],[-18,38],[0,2],[5,39],[2,9],[17,27],[55,51],[16,15],[17,28],[3,5],[2,5],[2,18],[1,27],[0,1],[-5,8],[-9,14],[-8,13],[-30,7],[-22,-8],[-101,-90],[-44,-46],[-13,-14],[-15,3],[-3,1],[-18,4],[-12,11],[-2,4],[-17,34],[8,41],[5,25],[37,46],[16,20],[31,70],[0,1],[6,43],[0,2],[-1,11],[-4,25],[-18,23],[-2,3],[-20,4],[-12,-2],[-20,-4],[-20,-20],[-12,-12],[-17,-47],[-24,-104],[-1,-2],[-11,-28],[-15,-24],[-5,-9],[-10,-16],[-32,-28],[-40,-16],[-62,-4],[-98,56],[-88,79],[-104,70],[-121,66],[-48,19],[-7,1],[-22,5],[-48,11],[-45,-4],[-14,-1],[-3,1],[-44,10],[-36,8],[-113,46],[-17,13],[-48,36],[-17,29],[-3,12],[-11,42],[-1,5],[-10,17],[-1,3],[-26,14],[-56,16],[-77,13],[-12,10],[-15,13],[-18,32],[2,26],[0,2],[-5,42],[-6,40],[-1,6],[-35,136],[-13,29],[-3,0],[-4,1],[-27,2],[-6,-5],[-7,-6],[-11,-9],[-11,-26],[-8,-17],[-21,-26],[-10,-8],[-31,-25],[-9,-7],[-40,-13],[-3,1],[-27,5],[-15,34],[0,5],[2,16],[25,53],[8,15],[21,45],[9,63],[2,20],[-32,63],[-26,35],[-33,17],[-17,8],[-14,7],[-94,17],[-180,34],[-25,11],[-285,121],[-62,12],[-72,13],[-3,1],[-6,-2],[-68,-16],[-7,0],[-5,0],[-47,0],[-6,1],[-9,2],[-18,4],[-4,4],[-19,20],[-13,14],[-24,42],[-3,7],[-5,7],[-52,74],[-54,53],[-52,51],[-42,24],[-92,51],[-20,11],[-113,63],[-81,30],[-9,5],[-20,10],[-85,31],[-150,33],[-29,7],[-17,3],[-13,0],[-39,-2],[-114,17],[-120,26],[-29,19],[-23,15],[-17,11],[-13,17],[-39,50],[-58,51],[-60,39],[-26,13],[-41,20]],[[65200,44247],[2,-131],[12,-122],[2,-35],[-8,-53],[-49,-184],[-11,-49],[-1,-53],[14,-91],[4,-56],[2,-32],[0,-97],[-3,-32],[-5,-39],[-16,-48],[-5,-60],[69,-151],[-1,-46],[-1,-36],[-5,-137],[-1,-22],[-2,-59],[-2,-80],[-2,-35],[-26,-1],[-30,2],[-96,6],[-8,-235],[-44,0],[-15,25],[-112,197],[-7,-34],[-23,-101],[-30,-131],[0,-6],[-5,-63],[-8,-72],[0,-55],[3,-42],[11,-29],[13,-37],[10,-54],[-3,-73],[-5,-50],[0,-35],[7,-32],[8,-42],[10,-33],[7,-53],[0,-40],[-4,-33],[-10,-61],[-7,-73],[8,-49],[-1,-36],[-14,-58],[-41,-70],[-27,-65],[-25,-97],[-42,-88],[-16,-56],[1,-38],[0,-63],[2,-58],[5,-139],[-10,-61],[-12,-28],[-31,-51],[-23,-40],[-25,-51],[-5,-247],[2,-49],[0,-66],[-1,-34],[-8,-88],[-4,-55],[-17,-119],[-5,-36],[-27,18],[-26,-10],[-18,-25],[-20,-35],[-19,-15],[-22,-46],[-16,-26],[-20,-13],[-20,-51],[-19,-20],[-38,-6],[-38,-19],[-41,-16],[-26,-48],[-22,-49],[-16,-66],[-42,-23],[-50,-43],[-18,-20],[-47,-20],[-59,-34],[-24,-14],[-53,-43],[-24,-8],[-30,-3],[-20,-31],[-14,-39],[-20,-32],[-19,-38],[-13,-42],[-2,-7],[-21,-58],[-32,-41],[-48,-34],[-75,-45],[-72,-34],[-56,-24],[-73,-33],[-66,-14],[-51,0],[-57,21],[-48,40],[-36,49],[-34,45],[-47,54],[-46,46],[-45,33],[-55,42],[-57,40],[-56,28],[-55,22],[-34,12],[-50,7],[-39,-1],[-40,-7],[-29,-10],[-4,-2],[-42,-21],[-33,-30],[-29,-33],[-18,-36],[-18,-51],[-16,-91],[-8,-48],[-9,-53],[-13,-89],[-4,-56],[-5,-58],[-3,-63]],[[62293,38385],[-142,67],[-479,225],[-25,51],[-132,-120],[-114,53],[-229,-19],[-193,-81],[-94,7],[-124,28],[-37,8],[-42,15],[-128,45],[-240,84],[-93,54],[-230,133],[-103,43],[-146,60],[-90,-7],[11,93],[-48,202],[-95,203],[-96,89],[18,144],[22,172],[-11,261],[-94,615],[-161,-130],[-7,-6],[-435,-349],[-59,-48],[-153,-124],[-21,-16],[-171,-138],[-70,-56],[-1,-1],[-220,-177],[-20,-16],[-241,-195],[-97,-77],[-86,-70],[-97,-78],[-192,-154],[-5,-4],[-40,-33],[-150,-121],[-66,-53],[-249,-201],[-94,-77],[-149,-121],[-27,-22],[-46,-38],[-309,-251],[-121,-98],[-113,-85],[-12,-10],[-8,-7],[-51,-41],[-156,-127],[-33,-26],[-18,-16],[-322,-261],[-122,-99],[-5,-5],[-63,-50],[-30,-25],[-140,-113],[-4,-4],[-71,-57],[-47,-39],[-52,-42],[-86,-70],[-317,-257],[-206,-163],[-73,-58],[-81,-68],[-262,-212],[-83,-66],[-23,-19],[-247,-202],[-73,-60]],[[53374,35974],[-71,-67],[-1,-1],[-38,-50],[-7,-4],[-32,-1],[-1,0],[-9,1]],[[53215,35852],[-9,1],[-88,14],[-22,10],[-5,11],[-29,52],[-2,2],[-56,91],[-7,11],[-66,62],[-20,14],[-27,12],[-16,7],[-23,16],[-19,16],[-9,13],[-33,90],[0,12],[2,3],[2,4],[1,3],[1,25],[0,9],[24,31],[1,1],[7,15],[1,18],[-2,15],[-8,21],[-13,19],[-22,25],[-2,1],[-22,13],[25,19],[6,10],[1,21],[-10,91],[-11,29],[-5,9],[-14,0],[-11,-6],[-10,-11],[-22,-80],[-8,4],[-11,4],[-3,3],[-23,16],[-110,81],[-3,2],[-48,-5],[-47,12],[-25,-2],[-30,4],[-5,4],[-63,126],[-1,6],[1,0],[40,6],[1,0],[11,6],[10,11],[0,1],[1,1],[6,16],[3,18],[0,2],[0,1],[-1,17],[-3,11],[-1,2],[-2,2],[-50,30],[-24,10],[-10,0],[-7,-3],[-8,-13],[-6,-7],[-9,-1],[-9,5],[-1,1],[-11,16],[-3,12],[2,11],[36,76],[11,24],[13,14],[27,9],[18,8],[7,12],[1,1],[0,3],[3,18],[-4,19],[-1,3],[-1,2],[-5,11],[-12,15],[-9,6],[-38,8],[-10,0],[-8,-6],[-16,-19],[0,-1],[-10,-1],[-44,39],[-6,5],[0,1],[-1,1],[-11,12],[-4,8],[2,15],[0,1],[8,22],[14,40],[10,30],[-2,2],[-13,14],[-7,11],[-1,2],[0,1],[-3,23],[-7,158],[-2,43],[-1,13],[-2,41],[-2,41],[4,7],[20,56],[2,9],[-1,2],[0,1],[-1,3],[-24,2],[-53,2],[-69,2],[-3,5],[-1,1],[-31,41],[-12,15],[-9,19],[-5,11],[-9,22],[-2,4],[-2,2],[-15,24],[-52,55],[-3,2],[-1,0],[-15,10],[-8,14],[-40,74],[12,74],[2,14]],[[51870,38177],[0,1],[0,-1]],[[51870,38177],[-6,-3],[-18,-9],[-4,-69],[-1,0],[-15,-4],[-21,-4],[-9,-1],[-10,4],[-39,19],[-2,1],[-1,1],[-12,10],[-24,34],[-54,79],[-2,7],[-2,23],[-1,15],[-2,2],[-8,9],[-19,1],[-37,3],[-39,3],[-20,2],[-2,2],[-10,12],[-57,69],[-8,39],[0,3],[-1,15],[-5,12],[-17,9],[-2,2],[-4,1],[-5,1],[-6,-1],[-7,-1],[0,-1],[-7,-3],[-36,-57],[-2,-3],[-15,4],[-4,13],[-5,28],[0,14],[3,10],[9,19],[10,17],[12,11],[9,3],[18,13],[4,7],[0,17],[-6,13],[0,1],[-2,2],[-9,12],[-19,14],[-4,-1],[-39,-22],[-23,10],[-14,17],[-1,1],[0,2],[-2,12],[-25,112],[-5,9],[-6,-3],[-22,-10],[-25,-10],[-8,1],[-87,54],[-1,1],[-42,26],[-5,8],[-33,49],[-1,43],[1,3],[4,33],[0,4],[0,1],[-2,10],[-10,7],[-67,43],[-15,9],[-49,31],[-23,40],[-37,62],[-8,11],[-49,56],[-21,16],[-96,65],[-19,12],[-8,4],[0,5],[0,64],[-27,35],[-4,5],[-43,32],[-6,4],[-26,13],[-32,16],[-3,2],[-24,20],[0,1],[-19,42],[-26,62],[-15,34],[2,7],[0,7],[-17,27],[-1,1],[-19,18],[-58,55],[-1,1],[-26,11],[-3,2],[-30,60],[-3,2],[-15,11],[-52,39],[-36,27],[-21,8],[-17,6],[-22,8],[-19,7],[0,1],[8,13],[13,20],[0,1],[1,2],[1,2],[2,30],[1,11],[0,1],[-5,7],[-8,3],[-5,-28],[-4,-12],[-7,-5],[-36,-22],[-11,-3],[-7,3],[0,4],[-19,28],[-1,1],[-31,34],[-56,13],[-1,1],[-1,0],[-4,0],[-23,1],[-6,-5],[-41,-44],[-1,-1],[-2,3],[-18,25],[-31,45],[-9,40],[-6,38],[-3,15],[-20,43],[-24,38],[-27,30],[-18,20],[-24,13],[-13,8],[-16,9],[-11,1],[-76,-32],[-12,4],[-16,7],[-33,14],[-7,3],[-9,12],[-8,12],[-1,1],[-34,52],[-64,97],[0,1],[-19,72],[-1,12],[-129,89],[-9,-4],[-8,-19],[1,-13],[7,-19],[3,-10],[-1,-9],[-5,-6],[-32,-8],[-12,1],[-8,6],[0,1],[-106,56],[-2,1],[0,18],[0,46],[0,1],[-15,-9],[-11,4],[-9,8],[-32,28],[1,32],[0,3],[-3,8],[-6,23],[-14,28],[-3,8],[-17,29],[-31,7],[-98,20],[-45,10],[-17,5],[-80,25],[-9,3],[-122,39],[-29,56],[-16,32],[-22,43],[-21,40],[-4,8],[-36,70],[0,1],[-3,5],[-3,7],[-2,9],[-1,5],[-1,7],[-1,0],[-1,-1],[-65,-40],[-42,57],[-8,3],[-14,2],[-1,0],[-1,0],[-49,-6],[-8,-7],[-11,-13],[0,-3],[-1,-4],[-1,-44],[-31,29],[-16,13],[-5,4],[-2,-1],[-3,-1],[-5,-3],[-13,-9],[-50,28],[-1,1],[-19,14],[-3,3],[-66,50],[-18,21],[0,12],[1,13],[-1,1],[-15,9],[-34,29],[-10,9],[-29,29],[0,7],[-4,35],[0,1],[-10,37],[-24,33],[-5,3],[-59,32],[-14,3],[-8,-2],[-23,15],[-8,8],[-24,25],[-36,74],[-15,35],[0,24],[0,1],[-129,78],[-8,9],[-5,6],[0,2],[-3,16],[-9,44],[-6,34],[-1,6],[-3,10],[-13,50],[-5,6],[-41,22],[-20,11],[-7,4],[-6,0],[-15,1],[-31,3],[-23,1],[-7,1],[-4,0],[-50,4],[-13,1],[-13,16],[-27,33],[-4,5],[-7,9],[3,15],[-25,24],[-2,1],[-78,6],[-68,5],[-26,2],[0,1],[-104,8],[-6,-3],[-3,-5],[-5,-8],[-7,1],[-23,7],[-99,42],[-2,0],[-33,14],[-77,58],[0,4],[0,1],[1,1],[-14,21],[-15,23],[-6,10],[0,1],[-42,60],[-1,0],[-2,1],[-86,44],[-7,3],[-45,20],[-12,-2],[-14,-1],[-24,-2],[-48,32],[-11,19],[-50,89],[-14,25],[-1,0],[-22,0],[-9,2],[-6,4],[-5,5],[-1,2],[-25,38],[-4,4],[-37,38],[-18,19],[-7,0],[-10,3],[-1,0],[-18,8],[-109,51],[-65,45],[-3,5],[12,18],[-4,56],[-6,12],[-6,2],[-56,16],[-6,-4],[-3,-9],[-1,-3],[-3,2],[-14,7],[-48,23],[-4,35],[-2,16],[-39,-9],[-44,10],[-14,3],[-127,61],[-83,-12],[-36,7],[-5,3],[0,1],[0,15],[-3,5],[-22,20],[-38,17],[-22,8],[-1,1],[-2,0],[-95,1],[-27,-7],[-7,-12],[-95,36],[-14,23],[-29,66],[-49,146],[-8,2],[-1,0],[-65,23],[-4,3],[-28,63],[1,13],[3,25],[1,8],[3,17],[3,8],[0,30],[-1,12],[-13,61],[-28,112],[0,2],[-1,3],[-21,36],[-100,165],[-17,23],[-110,40],[-45,0],[-2,0],[-1,0],[-17,-5],[-1,-15],[-2,-2],[-1,-2],[-64,-2],[-68,26],[-22,32]],[[44371,44130],[-111,9],[-54,5],[-14,1],[-40,74],[-3,7],[-1,-16],[-1,-5],[-4,-6],[-2,-1],[0,-1],[-53,-12],[-4,0],[-18,-2],[-15,22],[-3,3],[-19,2],[-73,-16],[-9,-2],[-1,-4],[-1,-4],[5,-18],[-51,54],[-20,21],[-11,11],[-58,63],[-99,54],[-21,15],[-154,116],[-3,2],[-1,1],[-23,30],[-30,39],[-1,1],[-48,46],[0,1],[-7,71],[-3,8],[-17,26],[-146,126],[-12,10],[-10,8],[-5,3],[-9,41],[-12,53],[-18,31],[-16,25],[-5,3],[-62,-1],[-8,0],[-6,-1],[-10,-2],[-43,-16],[-3,-1],[0,1],[-47,81],[2,26],[-1,2],[-1,5],[-17,30],[-28,44],[-6,11],[-113,180],[-2,4],[-34,9],[-27,-5],[-27,-5],[-3,2],[-27,22],[-58,-11],[-11,-2],[-9,-2],[-21,-17],[-14,-10],[-15,-13],[-2,0],[-49,-23],[-7,-3],[-35,5],[-1,3],[-1,0],[2,22],[-1,2],[-3,4],[-35,38],[-8,4],[-35,12],[-25,8],[-2,1],[-28,13],[-38,20],[-1,0],[-7,4],[-4,2],[-17,7],[-19,-7],[-27,-10],[-27,-11],[-28,-11],[-5,-3],[-25,-10],[-68,-25],[-27,2],[-9,1],[-100,8],[-17,1],[-97,7],[-19,28],[0,1],[-3,3],[-49,57],[-22,25],[-8,10],[-2,2],[-63,6],[-89,11],[-92,49],[1,12],[-4,5],[-15,20],[-125,49],[-23,-12],[-2,0],[-45,4],[-29,29]],[[81347,37001],[-6,-38],[-4,-29],[-32,-26],[-15,-20],[-3,-8],[-1,-7],[3,-43],[0,-14],[-4,-4],[-14,0],[-1,0],[-30,9],[-13,4],[-1,1],[-124,37],[-1,-1],[0,-1],[-2,-1],[-41,-29],[-1,0],[-21,-12],[-2,-1],[-18,-2],[-9,4],[-1,0],[-72,31],[-7,4],[-66,9],[-79,11],[-6,-2],[-66,-17],[-18,-50],[-3,-8],[-5,-12],[-106,-90],[-4,-9],[-5,-18],[-6,-28],[0,-20],[8,-39],[-1,-97],[-5,-29],[0,-3],[-1,-1],[-37,-66],[0,-1],[-92,-13],[-3,4],[-8,0],[-9,-9],[-27,-47],[-1,-11],[0,-1],[-7,-64],[-65,-134],[-3,-53],[4,-31],[0,-3],[2,-41],[-2,-28],[-10,-67],[-4,-19],[-5,-7],[-8,-4],[-53,16],[-48,4],[-13,-4],[-27,-8],[3,-19],[11,-67],[0,-18],[0,-2],[-1,-5],[-4,-16],[-4,-17],[-9,-13],[-13,-13],[-3,-4],[-1,-1],[-46,-111],[-15,-3],[-55,-9],[-5,-6],[-36,-72],[-6,-19],[-7,-21],[-1,-17],[10,-55],[20,-115],[-32,-71],[-15,-33],[-28,-63],[-4,-9],[-4,-9],[-2,0],[-6,-6],[-5,-9],[-28,-62],[-5,-13],[-1,-11],[0,-2],[-6,-17],[-6,-10],[-2,-2],[-13,-10],[-29,-21],[-3,0],[-128,-26],[-54,-12],[-5,-5],[-28,-23],[-33,-26],[-2,0],[-1,0],[-2,-1],[-16,0],[-13,5],[-20,14],[-128,117],[-1,1],[-17,17],[-6,6],[-25,29],[-2,2],[-4,12],[-6,13],[-2,3],[-33,76],[-2,1],[-58,55],[-14,12],[-1,1],[-1,1],[-9,4],[-18,0],[-2,0],[-22,-4],[-21,-6],[-22,0],[-22,5],[-39,14],[-2,1],[-1,0],[-38,7],[-22,1],[-3,-1],[-35,-8],[-14,-8],[-4,-2],[-2,-2],[-7,-6],[-9,-13],[-41,-62],[-81,-78],[-1,0],[-6,-4],[-29,-19],[-226,-91],[-10,-4],[-1,0],[-127,-54],[-123,-54],[-9,-6],[-1,0],[-17,-22],[-12,-23],[-7,-27],[-1,-13],[-1,-4],[-8,-29],[-17,-52],[-2,-6],[-6,-8],[-2,-3],[-40,-49],[-13,-11],[-25,-12],[-21,-6],[-29,-2],[-2,1],[-13,1],[-8,-2],[-8,-4],[-48,-49],[-23,58],[-10,34],[-18,34],[-13,33],[-5,-1],[-28,-7],[-43,-29],[-114,-46],[-34,-87],[-41,-45],[-43,-48],[-1,-1],[-18,-18],[-24,-14],[-21,-7],[-26,3],[-43,17],[-24,-1],[-22,-13],[-25,-21],[-65,-62],[-9,-8],[-26,-24],[-19,-19],[-21,-42],[-35,-81],[-11,-40],[-35,-87],[1,-39],[-3,-115],[-40,-74],[-17,-31],[-11,-29],[-37,-79],[-55,-101],[-25,-79],[-27,-85],[-41,-127],[-35,-85],[-23,-20],[-7,-7],[-96,-91],[-40,-42],[-45,-54],[-29,-30],[-29,-36],[-21,-37],[-69,-141],[-88,-153],[-50,-76],[-27,-28],[-12,-41],[-14,-37],[-24,-30],[-35,-65],[-21,-35],[-35,-47],[-21,-29],[-18,-16],[-25,-21],[-22,-18],[-27,-35],[-12,-31],[-12,-36],[-16,-68],[-8,-67],[-19,-42],[-14,-30],[-28,-31],[-58,-37],[-121,-62],[-35,-41],[-25,-33],[-40,-77],[-17,-44],[-21,-35],[-43,-104],[-10,-30],[-18,-56],[-61,-212],[-24,-90],[-58,-195],[-23,-29],[-131,-111],[-90,-73],[-27,-22],[-18,-20],[-31,-45],[-23,-30],[-63,-94],[-21,-14],[-37,-25],[-38,-38],[-56,-73],[-23,-60],[-22,-39],[-37,-36],[-36,-10],[-19,-15],[-24,-44],[-34,-39],[-2,-48],[-24,-94],[-6,-58],[4,-53],[-17,-45],[-17,-63],[6,-35],[9,-43],[-17,-32],[-13,-33],[-2,-49],[0,-33],[10,-30],[29,-51],[19,-45],[9,-29],[10,-34],[11,-41],[14,-44],[14,-42],[5,-71],[-45,-7],[-20,-49],[-24,15],[10,-40],[-3,-30],[-1,-6],[-31,-34],[-18,-73],[-8,-47],[-4,-37],[-18,-55],[-7,-31],[9,-63],[-29,-10],[-21,-1],[-26,4],[-22,16],[-24,22],[-19,16],[-23,12],[-25,3],[-21,0],[-41,-21],[-39,-39],[-36,-37],[-42,-47],[-36,-32],[-33,-35],[-42,-34],[-24,-16],[-20,-12],[-17,-17]],[[74052,28225],[-52,-21],[-45,-70],[-51,-35],[-61,6],[-91,-13],[-80,-32],[-34,-30],[-30,-55],[-49,-74],[-50,29],[-5,15],[-17,57],[-38,6],[-34,-1],[-40,6],[-52,-14],[-64,-54],[-27,-75],[-37,-92],[-57,-99],[-49,-105],[-26,-97],[6,-143],[14,-126],[-43,-78],[9,-74],[-38,-114],[-56,-104],[-32,80],[-43,-100],[-7,-122],[-17,-109],[-31,-78],[-30,-61],[-51,-63],[-49,-8],[-49,10],[-69,6],[-52,1],[-51,11],[-30,52],[-25,64],[-12,-38],[-14,-45],[-9,-62],[-16,-71],[-44,-38],[-16,-15],[-50,11],[-36,7],[-92,-47],[-66,-90],[-30,-73],[-59,-66],[-26,-40],[-10,-15],[-43,-95],[-35,-116],[4,-83],[11,-72],[7,-74],[18,-114],[29,-94],[9,-84],[-2,-92],[-15,-81],[-42,-97],[-71,-20],[-68,-1],[-60,-3],[-60,-19],[-86,9],[-84,-5],[-66,17],[-39,92],[3,81],[16,108],[33,120],[-1,99],[-14,67],[-40,114],[-46,99],[-45,48],[-44,31],[-33,72],[-30,75],[-15,60],[-56,36],[13,-73],[15,-89],[-100,25],[-49,10],[-77,11],[-62,4],[-34,15],[-36,78],[-33,109],[-14,79],[-16,97],[-24,94],[-4,21],[-10,47],[2,94],[6,38],[12,71],[9,54],[7,41],[13,70],[7,39],[48,107],[55,87],[40,83],[61,89],[64,65],[31,26],[20,17],[63,32],[60,17],[45,-17],[37,-4],[49,-25],[0,6],[-1,70],[62,52],[45,96],[21,59],[10,60],[-8,68],[-18,68],[-23,48],[-9,20],[-43,66],[-56,53],[-76,73],[-1,61],[0,24],[38,52],[59,48],[56,56],[55,67],[23,86],[9,4],[47,21],[56,39],[12,9],[25,41],[15,51],[22,79],[18,63],[6,20],[36,41],[47,-30],[41,-24],[50,-79],[14,-105],[-23,-37],[-18,-30],[-22,-17],[-28,-21],[-7,-9],[-27,-33],[-8,-129],[15,-83],[0,-114],[-13,-32],[-21,-54],[-44,-12],[-51,-35],[-60,-4],[133,-61],[33,40],[7,9],[1,0],[40,119],[13,111],[-10,69],[4,62],[46,72],[44,49],[31,59],[7,68],[14,103],[-50,156],[-62,52],[-77,8],[-69,-10],[-55,-71],[-14,-85],[-24,-104],[-70,-52],[-59,34],[-27,62],[-10,101],[86,86],[97,39],[59,101],[1,24],[2,42],[2,43],[-60,128],[-51,32],[-69,51],[-6,28],[-12,55],[50,26],[71,-21],[50,-8],[19,-3],[51,16],[34,-3],[23,-2],[48,33],[-25,138],[-7,40],[-7,38],[-9,64],[-2,10],[-44,32],[-54,34],[-66,14],[-73,4],[-42,52],[-2,56],[-2,50],[10,85],[40,14],[19,7],[53,-18],[48,-11],[43,6],[29,-26],[36,77],[16,34],[-73,-13],[-76,5],[-41,48],[-34,-16],[-40,-19],[-58,-59],[-14,-81],[-2,-103],[11,-59],[20,-74],[53,-41],[84,-8],[82,-24],[27,-117],[-88,-51],[-65,5],[-70,-10],[-60,-34],[-47,-18],[8,-72],[-17,-64],[-73,-22],[-22,-15],[-62,8],[-12,49],[-21,78],[-34,75],[0,88],[-21,26],[-19,-23],[-8,-73],[19,-36],[24,-65],[1,-99],[31,-70],[33,-23],[54,-2],[57,23],[63,1],[39,-31],[43,-47],[47,-53],[24,-82],[-41,-54],[-40,-34],[-52,-52],[-56,-77],[-22,-114],[5,-75],[26,-61],[25,-98],[-59,-59],[-70,-62],[-52,-52],[-43,-88],[-10,-84],[5,-71],[21,-73],[39,-76],[32,-61],[37,-74],[28,-71],[2,-84],[-52,-38],[-71,-23],[-83,-17],[-63,-26],[-23,-9],[-49,-23],[-35,-21],[-21,-12]],[[70840,27453],[-11,-3],[-74,-20],[-52,-13],[-68,-18],[-193,-49],[-28,-7],[-39,-10],[-33,-9],[-23,-6],[-26,-7],[-25,-6],[-35,-9],[-4,-1],[-109,-27],[-47,-10],[-58,-16],[-22,-6],[-49,-13],[-22,-5],[-34,-9],[-30,-7],[-21,-6],[-28,-8],[-38,-9],[-34,-8],[-58,-16],[-39,-9],[-66,-5],[-39,111],[-12,30],[-12,33],[-11,31],[-36,106],[-56,153],[-12,37],[-11,31],[-17,51],[-12,36],[-17,50],[-64,182],[-20,54],[-37,105],[-56,157],[-102,288],[-12,36],[-38,111],[-26,81],[-16,50],[-17,52],[-5,35],[-1,37],[-1,37],[-1,52],[8,96],[1,11],[4,42],[12,119],[8,72],[3,63],[3,45],[13,169],[2,33],[5,39],[-37,21],[-15,3],[-12,3],[-20,44],[-11,-28],[-33,11],[-54,7],[-58,189],[-77,249],[-126,-60],[-34,-16],[-22,-10],[-100,-33],[-48,-16],[-48,-17],[-214,-62],[-24,-28],[-14,29],[-15,49],[-50,-40],[-12,-9],[-8,-6],[-44,-36],[-90,-73],[-22,-18],[-31,24],[-49,39],[-38,27],[-29,21],[-53,43],[30,51],[22,41],[-50,14],[27,48],[15,38],[14,28],[-6,32],[-51,-14],[-55,-10],[-1,50],[-40,25],[14,-21],[-28,-60],[-8,5],[-3,0],[-6,-16],[-16,6],[2,16],[-10,2],[-11,-87],[-26,26],[-25,24],[-27,25],[-24,24],[-2,2],[-33,33],[-7,7],[-19,19],[-20,20],[-39,40],[-40,41],[-42,44],[-37,38],[-37,38],[-40,40],[-86,84],[-28,27],[-24,22],[-7,7],[-45,42],[-103,107],[-25,25]],[[66717,30966],[-30,30],[-23,23],[-26,26],[-24,24],[-40,40],[-33,38],[-27,30],[-20,23],[-36,40],[-23,26],[-26,32],[-4,5],[-60,68],[-102,120],[-18,21],[-22,22],[-46,52],[-21,24],[-82,97],[-46,55],[-18,21],[-150,172],[-31,36],[-26,30],[-20,26],[-76,87],[-75,84],[-35,38],[-55,58],[-148,174],[-91,106],[-140,165],[-145,171],[-94,110],[-111,130],[-58,69],[-1,0],[-64,78],[-19,22],[-25,30],[-126,141],[-30,36],[-33,36],[-116,129],[-20,21],[-59,61],[-48,50],[-178,183],[-192,196],[-49,69],[-13,18],[-41,53],[-76,95],[-49,64],[-35,42],[-130,163],[-1,2],[-157,193],[-17,19],[-17,23],[-100,134],[2,11],[29,63],[3,5],[41,30],[28,21],[1,1],[55,37],[1,1],[32,2],[1,0],[7,9],[28,38],[148,303],[2,7],[-2,15],[-2,1],[-2,2],[0,41],[0,8],[13,38],[0,1],[20,36],[16,20],[33,40],[10,9],[9,8],[31,41],[15,30],[2,6],[-2,8],[0,2],[-26,75],[-12,19],[-8,8],[-77,69],[-18,16],[-3,3],[-43,39],[-40,18],[-14,-5],[-1,2],[-7,8],[-5,12],[-4,15],[0,1],[-1,44],[0,1],[0,20],[-43,15],[-2,1],[-78,65],[-99,82],[-77,72],[-24,17],[-8,2],[-1,0],[-15,-2],[-27,-5],[-25,-8],[-13,-5],[-23,0],[-4,0],[-1,0],[-8,5],[-2,1],[-1,2],[-8,10],[-5,17],[-4,13],[-28,94],[-5,26],[-4,26],[-5,30],[-43,218],[0,1],[-20,94],[-4,18],[3,12],[10,44],[1,7],[14,71],[6,66],[-1,36],[-11,48],[-20,62],[-24,59],[-7,15],[-13,15],[-22,15],[-62,63],[-19,26],[-61,87],[-2,2],[-2,7],[-6,14],[-4,13],[-3,14],[-15,58],[-4,25],[-1,1],[-12,73],[1,29],[5,17],[18,34],[1,2],[6,22],[-1,16],[0,2],[-8,52],[-2,14],[-3,1],[-92,3],[-199,295]],[[44371,44130],[21,-137],[4,-25],[21,-151],[42,-287],[43,-289],[11,-74],[9,-57],[47,-306],[-3,-77],[-5,-104],[-5,-123],[-5,-104],[-5,-118],[-2,-42],[-7,-145],[-9,-279],[-10,-238],[-12,-310],[-1,-21],[-9,-227],[-5,-258],[-4,-109],[-4,-100],[-8,-232],[-1,-8],[-15,-317],[-4,-136],[-9,-279],[-6,-177],[-2,-91],[-1,-33],[-4,-101],[-3,-107],[-4,-137],[-6,-183],[-10,-308],[18,-284],[-5,-209],[-1,-41],[-8,-334],[-1,-97],[9,-40],[-4,-41],[22,-47],[25,-55],[9,-29],[-9,-40],[-1,-37],[-8,-29],[-30,-39],[-8,-51],[-22,-19],[6,-35],[11,-29],[18,-29],[27,-54],[13,-43],[-14,-24],[-23,-26],[-20,-41],[0,-44],[-2,-49],[-11,-59],[-1,-69],[-1,-72],[-2,-151],[-1,-22],[-2,-109],[-5,-53],[-1,-57],[-12,-76],[-8,-41],[-2,-35],[-6,-41],[-3,-57],[-4,-36],[-2,-47],[-3,-40],[0,-63],[-30,-71],[-16,-27],[4,-20],[3,-11],[-21,-46],[-17,-53],[-5,-38],[-2,-39],[22,-3],[22,-11],[-4,-51],[10,-37],[-1,-3],[6,-24],[2,0],[12,-1],[56,-28],[5,-10],[19,-35],[4,-9],[54,-103],[43,-81],[1,-2],[90,-143],[11,-21],[6,-37],[5,-41],[22,-130],[4,-22],[-7,-14],[-12,-37],[-1,-7],[76,-129],[5,-1],[2,0],[8,3],[26,-10],[4,-1],[9,-3],[37,-24],[4,-2],[4,-3],[13,-10],[48,-35],[2,-2],[7,-8],[16,-51],[0,-12],[-1,-2],[-3,-11],[3,-5],[17,-30],[5,-10],[32,-55],[40,-71],[3,-2]],[[44990,34017],[-39,-8],[-21,-13],[-46,12],[-50,4],[-24,10],[-21,4],[-12,7],[-16,9],[-36,7],[-33,17],[-26,0],[-30,-1],[-18,7],[-10,4],[-19,-13],[-25,0],[-23,-27],[-19,-20],[-34,-11],[-16,-39],[-41,-16],[-27,14],[-38,-2],[-34,-5],[-21,6],[-20,22],[-5,-1],[-35,-6],[-39,-9],[-38,-5],[-22,5],[-37,-2],[-19,15],[-19,19],[-30,11],[-22,3],[-32,-1],[-22,-1],[-33,-17],[-31,-9],[-50,-51],[-18,-17],[-35,-24],[-25,-4],[-51,-18],[-91,-38],[-21,-8],[-21,-18],[-32,-13],[-59,-25],[-51,-8],[-31,-3],[-18,15],[-46,11],[-30,16],[-37,10],[-20,5],[-24,5],[-39,-36],[-31,-37],[-35,-24],[-38,-24],[-37,-2],[-460,-4],[-156,-1],[-59,-1],[-32,0],[-94,-1],[-280,-3],[-26,0],[-85,-1],[-454,-4],[-24,6],[-172,71],[-21,15],[-134,61],[-268,123],[-141,65],[-164,75],[-250,114],[-3,2],[-156,75],[-413,193],[-25,12],[-52,24],[-23,11],[-3,2],[-24,8],[-100,40],[-420,167],[-74,28],[-27,11],[-122,46],[-37,15],[-74,30],[-93,38],[-491,195],[-130,52],[-256,99],[-67,-88],[-85,-111],[-17,-23],[-203,-266],[-137,-180],[-127,-169],[-17,-25],[-18,-21],[-116,-151],[-165,-219],[-7,-9],[-103,-137],[-100,-132],[-54,-72],[-4,-6],[-67,-88],[-35,-47],[-36,-48],[-35,-46],[-25,-33],[-85,-109]],[[36221,33282],[-27,4],[-34,13],[-15,-5],[-5,-3],[-73,-19],[-24,-6],[-8,-2],[-284,-52],[-1,0],[-47,-9],[-26,5],[-44,9],[-42,8],[-21,18],[-21,16],[-23,25],[-16,12],[-5,4],[-17,19],[-13,12],[-7,7],[-19,19],[-25,28],[-19,28],[-23,32],[-25,31],[-25,22],[-19,19],[-27,22],[-20,13],[-25,12],[-23,16],[-27,16],[-32,19],[-25,9],[-29,13],[-27,12],[-21,10],[-23,9],[-25,16],[-20,16],[-21,18],[-23,19],[-23,19],[-25,19],[-23,16],[-27,16],[-29,9],[-27,9],[-31,10],[-27,9],[-30,10],[-22,12],[-30,13],[-27,13],[-27,12],[-33,13],[-29,15],[-27,13],[-23,9],[-31,4],[-34,-7],[-37,-9],[-25,0],[-21,6],[-127,154],[-19,19],[-27,19],[-23,13],[-21,9],[-29,16],[-23,16],[-25,20],[-25,17],[-18,16],[-19,16],[-17,22],[-18,35],[-4,6],[-15,31],[-23,32],[-25,28],[-27,38],[-33,38],[-36,28],[-23,19],[-29,19],[-29,25],[-31,31],[-23,29],[-27,25],[-38,22],[-33,25],[-44,41],[-18,66],[-12,36],[-7,21],[-25,18],[-18,7],[0,1],[-32,12],[-28,23],[-10,11],[-1,1],[-13,15],[-17,25],[-19,28],[-20,32],[-21,34],[-25,38],[-15,25],[-16,32],[-21,28],[-4,4],[-23,31],[-19,18],[-24,41],[-3,32],[-6,34],[-5,35],[0,38],[-8,41],[-19,19],[-29,19],[-23,25],[-10,31],[8,19],[9,22],[12,38],[-6,44],[-15,31],[-16,35],[-13,27],[-7,16],[-14,36],[-14,44],[-13,28],[-21,44],[13,35],[21,-22],[21,-38],[14,-25],[19,-19],[25,-13],[25,7],[16,34],[-4,41],[-3,6],[-11,22],[-25,35],[-11,35],[-1,14],[-1,20],[5,19],[6,25],[11,26],[1,3],[1,1],[16,28],[25,10],[25,2],[10,3],[18,6],[1,0],[27,19],[3,11],[5,20],[2,10],[7,44],[0,44],[8,47],[19,26],[4,6],[19,34],[1,4],[0,2],[9,35]],[[53215,35852],[-33,-27],[-50,-40],[-5,-5],[-36,-29],[-2,-2],[-57,-45],[-41,-33],[-665,-542],[-110,-90],[-70,-58],[-175,-140],[-104,-84],[-254,-204],[-189,-144],[-240,-181],[36,-76],[31,-71],[12,-28],[24,-15],[55,-221],[-13,-108],[-5,-55],[-3,-89],[4,-40],[10,-39],[8,-36],[40,-4],[100,-69],[41,-60],[46,-101],[-20,-13],[-19,-25],[-29,-18],[-19,-26],[-22,-26],[-8,-43],[-18,-27],[-16,-36],[-28,-51],[-23,-60],[-22,-42],[-7,-33],[-25,-34],[-33,-60],[-20,-63],[-3,-74],[0,-3],[-13,-65],[-16,-33],[-13,-45],[-10,-29],[-4,-60],[-9,-30],[-22,-104],[-161,-13],[-36,-3],[-15,89],[-1,3],[-8,26],[-12,32],[-4,11],[-3,7],[-15,14],[-1,1],[-12,4],[-8,7],[-12,18],[-24,41],[-19,21],[-21,18],[-34,18],[-26,57],[-7,24],[-2,6],[-19,25],[-4,35],[10,33],[-19,22],[7,32],[10,30],[-16,26],[-16,20],[-30,17],[-19,12],[-20,34],[-19,26],[-35,25],[-18,36],[-28,16],[-12,43],[-13,25],[-11,30],[-27,47],[-13,38],[-6,47],[-1,32],[-4,32],[-2,41],[-117,153],[-3,5],[-10,12],[1,13],[-1,4],[-13,-10],[-176,-139],[-99,-78],[-108,-87],[-268,-213],[-126,-100],[-78,-62],[-7,-6],[-61,-49],[-124,-98],[-49,-39],[-48,-39],[-147,-117],[-22,-18],[-35,-27],[-72,-58],[-141,-100],[-385,-303],[-4,-3],[-27,-22],[-162,-134],[-86,-66],[-38,-27],[-68,-54],[-109,-87],[-29,-24],[-25,-20],[-107,-84],[-5,-4],[-103,-83],[-110,-87],[-4,-3],[-39,-32],[-153,-119]],[[47287,31116],[-39,84],[-34,72],[-4,10],[-1,12],[0,1],[-3,24],[1,27],[1,16],[-3,29],[-69,126],[-49,32],[-24,16],[-7,4],[-23,4],[-1,0],[-5,6],[-39,81],[-1,3],[0,1],[-6,17],[0,17],[0,7],[-3,8],[-11,32],[-6,15],[0,1],[-9,16],[-28,30],[-2,3],[-72,20],[-1,0],[-127,6],[-4,0],[-119,15],[-1,0],[-23,17],[-11,13],[-16,25],[-6,3],[-61,11],[-1,0],[-10,1],[-57,37],[-24,35],[-12,18],[-15,26],[-4,9],[-17,34],[-3,8],[-3,16],[-1,10],[-1,31],[-3,12],[-42,61],[-48,83],[-51,56],[-13,14],[-83,90],[-6,3],[-6,6],[-55,64],[-36,40],[-6,11],[-3,10],[-7,54],[-1,3],[-15,80],[-1,4],[0,2],[-14,33],[-31,59],[-17,22],[-17,15],[-43,25],[-22,23],[-13,16],[-23,29],[-13,17],[-9,13],[-43,63],[-58,85],[-17,23],[-92,80],[-30,22],[-20,9],[-34,15],[-1,1],[-8,7],[-14,25],[-2,3],[0,1],[-5,16],[-7,56],[-1,3],[-7,23],[-25,57],[-203,306],[-40,54],[-3,1],[-9,4],[-25,16],[-2,1],[-42,26],[-1,2],[-76,128]],[[66717,30966],[-56,-96],[-34,2],[-1,-11],[-1,-15],[-36,9],[-1,11],[-1,10],[-26,4],[-1,0],[-19,7],[-29,19],[-10,9],[-26,23],[-4,-5],[-49,-49],[7,-5],[55,-44],[-20,-40],[-15,-32],[-14,-27],[-12,13],[-9,-26],[-3,-9],[-11,-30],[-44,29],[-23,18],[-25,24],[-21,15],[-20,-20],[-27,-32],[-20,-26],[-19,-25],[-24,-35],[-20,-29],[-17,-25],[18,-23],[73,-93],[28,-35],[20,-25],[20,-24],[22,-27],[5,-6],[24,-30],[71,-93],[20,-28],[24,-32],[20,-29],[33,-49],[22,-25],[38,-47],[118,-155],[28,-39],[39,-56],[24,49],[13,48],[21,-12],[6,20],[22,-9],[5,11],[28,62],[134,301],[0,2],[119,-94],[27,-20],[41,-33],[64,-52],[26,-21],[123,-99],[111,-92],[-1,-1],[-78,-25],[-77,-25],[-25,-8],[-97,-31],[-22,-9],[-27,-13],[-51,-51],[-27,-26],[-20,7],[-50,18],[-72,27],[-38,15],[-35,-58],[111,-121],[60,-65],[25,-32],[57,-76],[67,-90],[236,-304],[90,-120],[23,-32],[61,-80],[25,-33],[5,-8],[49,-61],[25,-33],[40,-52],[52,-69],[75,-99],[61,-80],[100,-132],[37,-47],[34,-45],[44,-57],[-5,-30],[-44,-155],[-107,-377],[-20,-71],[-22,-77],[-3,-9],[-11,-41],[-11,-38],[-21,-72],[-12,-46],[-48,-175],[-7,-30],[-15,-52],[-45,-161],[-34,91],[-17,63],[-30,59],[-26,25],[-99,17],[-125,-53],[-16,-1],[-55,16],[-64,41],[5,30],[7,39],[12,66],[5,35],[-3,29],[-17,40],[-19,20],[-37,8],[-21,-5],[-2,-19],[-30,-126],[-19,-9],[-7,-4],[-20,-18],[-5,-208],[-6,-5],[-244,-170],[18,119],[-173,-2],[-99,-281],[-27,-14],[-166,-100],[29,-99],[68,-228],[-65,-145],[-33,-79],[-34,-8],[-35,-8],[-18,26],[-126,185],[-106,151],[-48,22],[-81,49],[-7,-80],[-21,-223],[-10,-113],[-13,-137],[21,-11],[65,-41],[44,-35],[18,-22],[18,-33],[12,-31],[10,-40],[7,-33],[196,-112],[1,-1],[36,-20],[43,-15],[5,-6],[0,-1],[2,-7],[17,-68],[4,-16],[43,-176],[-2,-13],[0,-4],[-17,-47],[33,-96],[7,-19],[7,-21],[12,-5],[23,-10],[2,-2],[39,-41],[4,-4],[57,-103],[1,0],[5,-17],[12,-21],[2,-2],[27,-21],[2,-2],[2,-4],[6,-22],[0,-1],[-5,-39],[-16,31],[-35,15],[-180,11],[-26,8],[-26,8],[-173,57],[-94,30],[-36,11],[-54,16],[-30,13],[-36,12],[-71,23],[-106,33],[-23,10],[-70,23],[-62,22],[-23,8],[-148,48],[-21,6],[-104,33],[-324,106],[-63,21],[-48,15],[-201,66],[-106,33],[-23,8],[-34,10],[-148,48],[-65,21],[-27,8],[-52,17],[-176,56],[-19,6],[-64,20],[-30,14],[-58,29],[-87,43],[-6,3],[-164,82],[-59,28],[-61,30],[-44,22],[-27,10],[-45,3],[-28,-4],[-63,-7],[-43,-3],[-35,-4],[-98,11],[-107,13],[-81,10],[-213,25],[-183,20],[-76,10],[-52,7],[-73,9],[-104,12],[-50,4],[-114,15],[-151,16],[-59,7],[-32,4],[-145,16],[-101,14],[-215,29]],[[61471,25828],[10,65],[5,22],[24,88],[3,11],[-1,13],[-3,4],[-18,1],[-26,1],[-4,5],[-8,9],[-5,7],[-2,3],[-13,70],[-1,41],[0,1],[7,32],[1,1],[-1,7],[-1,5],[4,8],[5,4],[56,51],[9,14],[3,4],[4,7],[65,189],[2,5],[-4,68],[0,1],[-5,11],[-4,11],[1,11],[4,5],[49,60],[11,8],[4,3],[6,5],[38,-4],[12,-9],[20,-14],[28,-6],[4,2],[29,11],[7,6],[15,14],[2,19],[1,3],[2,17],[-23,41],[-2,2],[-3,2],[-7,6],[-50,7],[-3,6],[-4,7],[2,37],[0,2],[-1,18],[-29,45],[-28,0],[-7,-1],[-2,4],[-4,6],[-2,4],[6,19],[12,14],[2,1],[5,4],[6,14],[2,10],[0,2],[-6,28],[-1,6],[-1,1],[-5,6],[-16,1],[-4,-6],[0,-10],[4,-13],[-2,-28],[-1,-2],[-4,-8],[-8,-5],[-72,-1],[-9,7],[-4,6],[1,9],[35,47],[12,28],[3,13],[-2,15],[-1,4],[-2,4],[-4,9],[-8,10],[-3,3],[-12,9],[-76,53],[-7,6],[-12,8],[14,8],[0,1],[6,9],[6,14],[3,8],[0,2],[0,20],[-1,8],[-18,21],[-2,1],[-9,6],[-8,11],[-6,22],[-4,89],[-1,9],[-6,3],[-50,32],[-1,3],[-13,154],[-1,8],[23,23],[15,15],[35,34],[5,6],[2,4],[18,49],[0,3],[1,1],[14,60],[1,6],[20,88],[16,70],[3,18],[0,3],[0,2],[2,12],[-20,260],[-1,13],[-23,140],[-38,196],[-8,14],[-12,3],[-18,-17],[-19,-31],[-5,-8],[-19,4],[-5,1],[-10,2],[-6,13],[-4,12],[-5,11],[5,38],[40,50],[1,0],[10,20],[1,6],[4,21],[6,31],[-5,61],[0,1],[-3,8],[-3,16],[-5,8],[-5,10],[-6,9],[-23,8],[-4,1],[-3,1],[-3,1],[-8,-6],[0,-2],[-1,-10],[5,-9],[9,-6],[4,-3],[6,-5],[4,-20],[1,-4],[-1,-8],[-2,-14],[-4,-7],[-1,-1],[-5,-5],[-15,2],[-1,0],[-10,6],[-32,63],[-47,90],[-9,21],[-18,51],[-1,3],[-19,15],[-6,5],[-18,23],[-65,157],[-9,24],[1,19],[3,10],[6,10],[8,8],[10,3],[28,0],[1,1],[12,11],[28,52],[10,19],[0,2],[0,7],[-1,3],[-7,26],[-10,13],[-7,3],[-5,-1],[-7,-6],[-4,-12],[-3,-26],[0,-4],[-2,-6],[-7,-16],[-6,-2],[-1,0],[-1,0],[-14,-1],[-9,8],[-4,5],[-14,113],[-1,15],[5,22],[22,10],[37,16],[10,13],[19,31],[11,25],[1,11],[0,4],[0,7],[1,44],[-1,20],[14,67],[14,66],[15,24],[12,5],[19,14],[6,5],[3,7],[5,11],[3,14],[1,10],[-1,32],[0,2],[-8,36],[-21,65],[-4,11],[16,18],[21,25],[19,31],[3,6],[23,37],[30,58],[1,21],[-4,1],[-20,8],[-10,4],[-7,15],[-2,10],[-9,81],[0,4],[0,8],[1,9],[1,11],[0,1],[33,83],[1,4],[3,7],[-3,68],[-7,135],[-7,73],[-1,13],[-1,12],[0,18],[0,4],[11,37],[3,4],[11,13],[22,21],[6,6],[63,40],[13,8],[31,13],[1,0],[10,7],[67,57],[14,17],[23,32],[4,5],[0,1],[21,37],[92,161],[7,14],[0,24],[-35,281],[-4,15],[-17,28],[-43,62],[-152,203],[-17,14],[-20,12],[-12,3],[-19,-5],[-8,-7],[-12,-20],[-3,-9],[1,-18],[5,-24],[1,-5],[0,-22],[-7,-10],[-1,0],[0,-1],[-142,-80],[-19,-9],[-16,-2],[-8,4],[-2,2],[-2,1],[-94,136],[-2,2],[-32,54],[-13,21],[-27,35],[-1,0],[-8,9],[-13,-1],[-3,-4],[-17,-58],[0,-2],[-1,-1],[-7,-17],[-11,-17],[0,-1],[-1,0],[-6,-7],[-8,-1],[-97,-8],[-42,7],[-91,28],[-2,1],[0,-1],[-59,-85],[-21,35],[-25,41],[-88,113],[-2,2],[-60,22],[-3,1],[-15,60],[-3,9],[-28,91],[-7,13],[-19,9],[9,-50],[-2,-12],[-46,-14],[-5,-2],[-32,50],[-9,7],[-57,35],[-4,3],[-34,-1],[-1,0],[-8,-10],[-7,-3],[-44,3],[-1,1],[-31,2],[-60,5],[-25,18],[-2,2],[-27,12],[-29,9],[-17,5],[-12,4],[-18,5],[-11,1],[-5,-33],[-4,-25],[-15,-48],[-29,-14],[-53,-24],[-13,1],[-151,69],[-1,2],[-42,46],[-1,2],[-2,4],[-7,4],[-122,-18],[-14,-5],[-9,-21],[0,-5],[0,-10],[5,-15],[4,-10],[5,-6],[3,0],[6,0],[6,7],[1,1],[3,9],[6,7],[13,2],[7,-3],[9,-8],[3,-9],[1,-1],[0,-4],[-1,-16],[-4,-12],[-1,-4],[-1,-1],[-10,-11],[-9,-4],[-4,-2],[-3,-1],[-1,0],[-84,-30],[-7,-3],[-2,0],[-93,-27],[-12,5],[-25,29],[-3,3],[-2,3],[-29,-7],[-94,-21],[-67,78],[-1,1],[-1,1],[-12,11],[-24,-15],[-6,1],[-6,4],[-16,30],[-2,3],[-15,11],[-16,5],[-39,-5],[-13,-4],[-33,-9],[-7,-2],[-7,-4],[-4,-2],[-15,-2],[-11,5],[-1,1],[-1,1],[-9,11],[-13,27],[-7,12],[-2,4],[-4,8],[0,32],[-4,78],[-74,88],[-5,3],[-11,-4],[-37,-17],[-31,-15],[-8,-3],[-26,-43],[3,-7],[0,-15],[-7,-15],[-34,-41],[-6,-6],[-9,-5],[-2,0],[-1,1],[-13,5],[-4,4],[-5,6],[-18,43],[-7,9],[-5,3],[-9,-1],[-72,-14],[-15,-11],[-1,-18],[9,-45],[2,-10],[24,-15],[14,2],[6,-2],[5,-5],[3,-5],[0,-13],[-2,-8],[-12,-17],[-40,-54],[-2,-2],[-1,-1],[-1,-1],[-23,-15],[-45,-28],[-11,0],[-2,2],[-5,4],[-34,29],[-4,6],[1,9],[0,1],[4,11],[3,12],[-1,26],[0,1],[-7,16],[-4,4],[-6,3],[-7,0],[-78,-19],[-98,-24],[-9,-2],[-65,-12],[-34,-6],[-108,-20],[-15,-4],[-9,-9],[-11,-22],[-2,-4],[0,1],[-13,25],[-13,25],[0,1],[-6,6],[-37,12],[-15,1],[-6,-6],[-65,-60],[-22,-7],[-60,-19],[-3,-1],[-3,-1],[-6,-2],[-14,-1],[-88,11],[-20,10],[-104,65],[-44,23],[-7,3],[-7,4],[-78,19],[-8,3],[-92,36],[-7,3],[-65,36],[-15,7],[-31,17],[-13,6],[-13,-1],[-1,0],[-18,-17],[-24,1],[-1,0],[-101,51],[-11,9],[-13,12],[-50,53],[-20,14],[-11,14],[-35,90],[0,12],[8,14],[-28,84],[-38,58],[-87,113],[-12,10],[-20,7],[-60,37],[-7,5],[-25,16],[-14,14],[-3,3],[-65,37],[-1,0],[-13,5],[-31,60],[0,1],[0,1],[-4,14],[-4,28],[0,6],[-10,26],[-12,16],[-59,80],[-11,8],[-52,-13],[-1,0],[-37,-13],[-9,-3],[-5,19],[-8,26],[-13,89],[1,9],[0,2],[-3,15],[-6,8],[-62,43],[-45,38],[-23,20],[-46,39],[-2,2],[-40,39],[-8,7],[-80,153],[7,36],[2,11],[10,50],[16,41],[-10,8],[-15,11],[-68,53],[-1,0],[-1,1],[-15,7],[-7,9],[-11,26],[-24,98],[0,27],[4,15],[-62,80],[-3,3],[-44,47],[-3,3],[-85,91],[-1,0],[-52,2],[0,3],[-9,52],[1,1],[7,58],[4,84],[0,1],[1,5],[3,74],[-1,14],[-64,106],[-4,12],[-1,1],[-3,1],[-11,7],[-29,7],[-57,22],[-71,64],[-12,13],[-24,42],[0,1],[-12,27],[-19,91],[1,11],[10,21],[10,5],[23,2],[1,1],[11,3],[8,4],[8,11],[1,0],[-1,14],[-7,9],[-53,43],[-1,0],[-47,21],[-4,2],[-17,8],[-41,36],[-56,50],[-75,67],[-4,-4],[-5,0],[-10,8],[-16,12],[-1,1],[-41,32],[-40,34],[-51,44],[-11,13],[-15,28],[-1,1],[-7,9],[-115,119],[-42,29],[-1,0],[-21,3],[-39,6],[-2,0],[-1,1],[-8,-22],[-2,-6],[-6,-8],[-42,-30],[-1,-1],[-2,-1],[-18,-7],[-33,-5],[-8,3],[-9,8],[-35,53],[-44,74],[0,3],[0,13],[5,2],[16,3],[13,7],[7,8],[0,22],[-1,4],[-11,11],[-1,0],[-2,0],[-6,2],[-14,-2],[-10,-9],[-2,-10],[-6,-12],[-10,-8],[-38,-19],[-1,0],[-8,1],[-31,20],[-13,17],[-4,6],[-7,4],[-90,16],[-10,1],[-1,0],[-7,-3],[-2,-3],[-2,-4],[-3,-12],[1,-27],[-23,-33],[-8,-10],[-34,-44],[-2,-3],[-1,0],[-7,-6],[-10,4],[-93,60],[-84,-18],[-10,-2],[-78,47],[0,1],[-11,42],[-1,0],[-119,40],[-4,1],[-49,-2],[-3,2],[-67,33],[-48,128]],[[62330,14562],[-26,-93],[-25,-17],[-21,-16],[-64,-56],[-52,-93],[-33,-58],[-22,-41],[-71,-13],[-13,-6],[-71,-33],[-87,2],[-58,47],[25,107],[14,58],[4,35],[4,35],[-25,45],[-2,3],[-33,40],[-14,50],[-89,1],[59,-95],[-7,-12],[-23,-45],[64,0],[-7,-36],[-13,-65],[-5,-54],[-2,-28],[4,-16],[22,-81],[20,-123],[5,-36],[-29,-99],[-83,-75],[-92,-58],[-143,-44],[-64,-16],[-76,-28],[-92,-17],[-54,75],[-29,131],[-8,106],[0,96],[-7,69],[1,73],[8,79],[3,6],[55,122],[33,61],[22,41],[11,27],[16,38],[29,40],[36,66],[29,152],[3,73],[1,38],[-3,49],[-2,48],[-7,128],[-2,30],[-5,87],[-32,138],[-19,94],[-28,82],[18,58],[22,69],[102,-43],[108,-41],[50,-5],[92,-13],[100,-57],[83,-59],[122,-154],[71,-141],[18,-43],[25,-61],[24,-65],[115,-210],[29,-57],[8,-17],[2,-4],[24,-57],[26,-61],[31,-57]],[[62658,14457],[88,-60],[79,-50],[45,-7],[105,10],[61,24],[15,45],[29,161],[-5,57],[-24,46],[-21,25],[-32,19],[-31,20],[-17,27],[-20,62],[-25,76],[-31,51],[-21,16],[-24,11],[-54,17],[-44,22],[-35,46],[-38,30],[-36,8],[-44,1],[-23,11],[-6,51],[21,32],[19,45],[-23,57],[9,37],[36,17],[26,-24],[16,-26],[11,-29],[29,10],[34,-8],[20,-9],[27,6],[32,19],[24,18],[-19,55],[48,-4],[17,-29],[8,-14],[15,-26],[28,-22],[33,-3],[26,7],[40,23],[26,1],[48,-8],[38,-22],[27,-48],[26,0],[2,-43],[15,-23],[-11,-42],[13,-28],[13,-38],[-65,-73],[29,-82],[80,41],[57,31],[27,-3],[230,236],[2,2],[72,67],[55,54],[78,67],[48,27],[65,21],[45,-92],[31,-67],[34,7],[36,5],[17,21],[36,3],[39,35],[31,42],[1,19],[1,15],[28,-4],[3,-25],[1,-7],[11,1],[10,2],[26,15],[27,11],[40,28],[-16,97],[19,25],[21,15],[60,1],[-2,102],[89,14],[13,-30],[-14,-62],[0,-43],[18,-21],[115,-35]],[[64621,15517],[-61,-12],[-8,-8],[-56,-48],[-97,-75],[-99,-87],[-84,-76],[-34,-31],[-6,-5],[-108,-92],[-77,-75],[-14,-15],[-56,-57],[-81,-85],[-16,-16],[-123,-139],[-42,-54],[-68,-72],[-61,-72],[-67,-67],[-102,-113],[-86,-102],[-154,-154],[-39,-44],[-94,-85],[-101,-77],[-106,27],[-34,68],[-48,193],[-32,116],[-16,80],[0,1],[2,36],[1,23],[4,57]],[[58120,16210],[-6,-19],[-78,19],[-7,114],[32,100],[35,41],[14,17],[30,-120],[0,-22],[-1,-74],[-19,-56]],[[61471,25828],[-1,-45],[1,-9],[0,-3],[7,-106],[4,-57],[1,-15],[19,-148],[6,-10],[9,-12],[1,-2],[2,0],[29,-6],[24,15],[19,-4],[8,-2],[10,-2],[10,-18],[-3,-23],[-30,-114],[-2,-8],[-28,-103],[-2,-7],[-32,-121],[-4,-30],[-5,-40],[0,-4],[-13,-46],[-15,-37],[-1,-2],[-7,-16],[-19,-26],[-12,-15],[-25,-47],[-1,-6],[-9,-54],[-2,-10],[1,-27],[5,-94],[-19,-62],[-54,-172],[-127,-71],[-25,-99],[-4,-12],[2,-13],[3,-45],[1,-2],[1,-15],[0,-1],[-2,-11],[-5,-6],[-9,-1],[-6,6],[-7,15],[-4,8],[0,11],[-1,4],[-5,30],[-5,8],[-11,5],[-2,0],[-19,-3],[0,-2],[-1,-10],[-10,-97],[1,-5],[-11,-24],[-21,-45],[-21,-22],[-5,-5],[-17,-8],[-18,1],[-38,2],[-9,-5],[-14,-9],[-5,-4],[-74,-129],[-35,-83],[-2,-5],[-19,-25],[-3,-4],[-1,-2],[-3,-2],[-37,-28],[-2,-1],[-15,-13],[-3,-28],[3,-5],[26,-43],[3,-5],[20,-33],[19,-45],[7,-45],[-8,-76],[-25,-51],[-30,-64],[-12,-33],[-8,-19],[-23,-107],[1,-2],[12,-21],[-2,-15],[-49,-106],[-7,-8],[-1,-1],[-10,-9],[-3,1],[-80,43],[-44,-66],[-10,-8],[-1,-2],[-4,-9],[-21,-68],[-13,-48],[-19,-69],[-2,-14],[-2,-18],[-5,-42],[1,-42],[3,-61],[0,-6],[12,-53],[4,-19],[6,-53],[-2,-18],[-4,-30],[-4,-30],[-60,-84],[-18,-24],[-12,-25],[-2,-8],[-1,-9],[-9,-49],[29,-70],[72,-147],[5,-17],[-2,-39],[7,-42],[0,-1],[8,-15],[17,-33],[14,-11],[21,-16],[66,-26],[10,-9],[20,-16],[123,-67],[12,-3],[28,-6],[35,-23],[4,-8],[16,-28],[14,-39],[0,-17],[-1,-15],[-87,-72],[0,-3],[-2,-141],[0,-6],[38,-3],[4,1],[6,3],[16,6],[19,21],[18,19],[21,40],[29,26],[17,5],[14,-3],[22,-5],[7,-1],[5,-9],[3,-5],[12,-22],[3,-5],[4,-21],[-11,-82],[-3,-23],[1,-29],[1,-23],[0,-5],[28,-78],[38,-68],[16,-38],[11,-27],[12,-31],[43,-149],[3,-29],[-8,-62],[-1,-2],[-17,-38],[-55,-48],[-20,-17],[-13,-9],[-8,-6],[-1,-2],[-12,-15],[-3,-4],[-6,-47],[4,-17],[16,-27],[41,-49],[11,-19],[12,-21],[5,-9],[13,-47],[3,-29],[1,-16],[-4,-24],[-11,-65],[-21,-40],[-3,-3],[-21,-22],[-1,-46],[-2,-56],[-2,-43],[13,-20],[338,-554],[17,-27],[170,96],[93,16],[16,-32],[17,-9],[-5,-29],[-6,-36],[-158,-180],[-97,-205],[-2,-3],[-57,-208],[-30,-107],[-11,-39],[-22,-8],[-71,-24],[-70,-24],[-94,26],[-64,17],[-103,-69],[-6,-4],[-16,-11],[10,-258],[72,-313],[19,-15],[71,-55]],[[61088,17833],[6,1],[19,2],[51,1],[78,69],[104,110],[57,49],[33,34],[80,67],[13,13],[48,46],[64,28],[13,6],[67,-57],[8,-128],[-116,-198],[-42,-88],[-46,-126],[-21,-125],[-10,-137],[5,-87],[29,-139],[26,-54],[31,-64],[37,-105],[3,-21],[13,-100],[-2,-11],[-9,-51],[-32,-41],[-27,-129],[-21,-54],[-42,-8],[-10,-2],[-56,10],[-50,-6],[-21,-2],[-34,19],[45,101],[17,38],[-56,-45],[-59,-90],[-10,-7],[-65,-43],[-74,-62],[-25,-21],[-33,-50],[-27,-78],[-11,-85],[1,-104],[22,-98],[51,-110],[82,-96],[63,-57],[-52,-114],[-30,29],[-75,50],[-74,15],[-12,2],[-56,-7],[-84,-35],[-89,-52],[-76,-36],[-66,8],[-48,27],[-72,67],[-48,62],[-24,71],[-4,12],[2,44],[2,35],[-8,67],[-38,153],[-63,85],[-13,2],[-99,10],[-19,1],[-41,0],[-83,-15],[-14,-1],[-123,-5],[-73,-35],[96,-51],[91,0],[44,1],[69,7],[73,7],[34,-15],[44,-19],[18,-88],[2,-83],[16,-110],[20,-71],[1,-3],[39,-91],[22,-18],[47,-37],[36,-45],[18,-50],[8,1],[42,5],[30,-1],[23,-1],[19,-5],[24,-5],[102,13],[53,19],[90,61],[15,10],[64,18],[122,-49],[18,-15],[57,-51],[15,-127],[13,-115],[11,-150],[2,-245],[-10,-95],[-47,-151],[-27,-49],[-25,-47],[-31,-46],[-8,-31],[-6,-21],[-37,-45],[-31,38],[-1,1],[-55,67],[-64,40],[-24,15],[-54,21],[-65,26],[-47,20],[-55,56],[-74,104],[-37,-114],[-76,-9],[-50,37],[-58,56],[-77,66],[-52,63],[-31,101],[-23,78],[-8,22],[-24,57],[-2,1],[-21,13],[-54,33],[-44,77],[-73,-6],[-64,-3],[-40,41],[-38,14],[28,-74],[12,-33],[32,-41],[53,-41],[77,-28],[52,-13],[43,-10],[30,-81],[23,-89],[10,-24],[21,-53],[93,-123],[63,-43],[0,-1],[66,-59],[52,-30],[30,-37],[-56,-55],[-60,-16],[-63,-4],[-75,-30],[-71,-12],[-49,-16],[-45,9],[-67,33],[-2,1],[-95,-5],[-63,16],[-36,15],[-16,7],[-78,51],[-14,7],[-71,31],[-92,43],[-63,74],[-15,32],[-29,59],[-48,16],[-21,107],[-10,8],[-39,32],[-60,104],[-23,22],[-38,36],[-36,55],[-21,50],[-9,19],[-11,21],[-28,53],[-19,77],[-15,62],[-16,78],[-65,58],[23,-115],[-5,-139],[-58,-5],[-40,25],[-45,27],[-122,98],[-25,96],[-14,153],[-12,110],[-5,71],[-19,97],[-3,17],[-33,108],[-60,63],[-22,74],[2,22],[4,56],[-53,-7],[-19,48],[-13,32],[-25,74],[-30,97],[-48,70],[-39,27],[-36,8],[-18,4],[-73,-34],[-83,-71],[-93,95],[-94,-18],[-26,-19],[-8,-7],[-33,-24]],[[57861,16606],[-38,-9],[-130,36],[-28,46],[-1,5],[0,5],[8,49],[6,36],[9,16],[36,63],[44,53],[46,56],[12,26],[7,14],[7,15],[5,43],[-5,29],[-3,5],[-13,22],[-13,23],[-47,52],[-11,13],[-8,9],[-20,16],[-17,8],[-17,8],[-11,5],[-28,6],[-6,-1],[-52,-4],[-12,-1],[-50,-17],[-24,-15],[-65,-60],[-3,-2],[-1,-1],[-26,-19],[-39,-27],[-39,-12],[-34,7],[-16,14],[-16,13],[-9,16],[-19,34],[-14,58],[-17,68],[-20,35],[-8,15],[-3,5],[-23,16],[-31,7],[-16,-5],[-1,0],[-30,-27],[-16,-15],[-27,-35],[-90,-168],[-1,-1],[-25,-23],[-10,-2],[-1,0],[-30,5],[-34,5],[-30,14],[-26,21],[-28,50],[-13,43],[-14,112],[-2,15],[-9,26],[-19,28],[-5,3],[-22,14],[-43,25],[-195,44],[-20,5],[-27,13],[-1,2],[-49,49],[-9,15],[-43,72],[-65,146],[-21,47],[-23,46],[-81,160],[-28,98],[5,43],[12,25],[10,22],[38,63],[3,5],[11,15],[31,40],[25,47],[1,16],[5,59],[-4,15],[-2,10],[-6,11],[-12,21],[-8,6],[-5,5],[-19,15],[-13,3],[-16,3],[-11,2],[-29,-9],[-21,-12],[-47,-43],[-62,-71],[-47,-42],[-31,-12],[-9,-4],[-7,2],[-27,5],[-15,12],[-7,5],[-7,5],[-6,12],[-24,46],[-14,43],[-5,85],[6,47],[3,19],[1,2],[6,12],[14,30],[29,26],[22,9],[13,5],[18,7],[189,-7],[23,8],[11,8],[14,10],[2,5],[8,14],[3,7],[4,51],[2,15],[1,16],[-8,38],[-34,99],[-10,15],[-9,13],[-24,37],[-43,29],[-40,8],[-47,-18],[-38,-24],[-83,-51],[-46,-15],[-37,4],[-28,29],[-4,8],[-14,29],[-12,26],[-4,25],[-26,157],[-18,39],[-11,25],[-8,20],[-4,17],[-4,19],[-2,10],[-1,7],[-2,23],[-1,14],[7,55],[4,11],[5,17],[7,25],[7,11],[21,37],[1,2],[22,19],[7,3],[5,2],[14,6],[149,-27],[25,-1],[20,8],[18,18],[15,15],[4,11],[14,32],[5,13],[0,2],[5,35],[1,9],[-11,63],[-9,26],[-13,19],[-15,25],[-9,15],[-4,3],[-9,7],[-16,12],[-42,17],[-159,20],[-53,-1],[-9,-1],[-5,0],[-22,-3],[-8,-7],[-25,-27],[-26,-69],[-18,-50],[-3,-3],[-26,-26],[0,-1],[-41,-19],[-187,-50],[-19,-4],[-2,0],[-28,6],[-1,0],[-7,5],[-2,1],[-18,42],[-1,2],[0,9],[4,68],[2,40],[1,18],[-3,20],[-18,32],[-7,7],[-1,1],[-6,7],[-74,15],[-26,-13],[-12,-7],[-68,14],[-4,6],[-21,34],[-1,1],[-3,25],[2,14],[3,25],[-3,17],[-4,20],[-3,13],[-3,5],[-17,24],[-12,17],[-42,13],[-40,-12],[-39,-36],[-9,-12],[-3,-5],[-13,-26],[-1,-7],[-5,-39],[-10,-34],[-6,-5],[-20,-18],[-23,1],[-2,0],[-8,6],[-5,3],[-13,8],[-10,18],[-6,59],[-4,39],[-6,26],[-8,15],[-7,14],[-5,11],[-13,11],[-10,9],[-11,11],[-47,29],[-19,4],[-31,7],[-13,-12],[-5,-5],[-4,-11],[-8,-42],[-13,-70],[-70,-101],[-8,-8],[-9,-7],[-4,-5],[-140,-3],[-21,11],[-8,4],[-7,4],[-19,20],[-5,8],[-64,98],[-8,3],[-1,0],[-24,8],[-25,-19],[-15,-42],[-9,-25],[-22,-20],[-7,-6],[-15,-3],[-5,-1],[-2,0],[-50,14],[-18,28],[1,9],[3,22],[13,18],[10,14],[4,35],[-16,23],[-34,7],[-12,-10],[-12,-9],[-32,-102],[-19,-20],[-3,0],[-2,0],[-11,-1],[-4,11],[-19,46],[-10,25],[0,1],[-44,129],[9,46],[-8,38],[-7,11],[-5,7],[-6,10],[-7,1],[-20,4],[-4,1],[-1,-1],[-21,-18],[-7,-7],[-1,-5],[-3,-30],[-1,-4],[1,-11],[4,-26],[-1,-10],[-3,-19],[-2,-14],[-9,-10],[-4,-6],[-2,-1],[-17,7],[-4,1],[-2,3],[-56,62],[-30,34],[7,58],[-5,9],[-4,7],[-6,11],[-13,3],[-76,2],[-2,0],[-16,1],[-29,0],[-82,-1],[-9,-6],[-37,-25],[-11,10],[-11,20],[-15,25],[-16,48],[-18,31],[-7,1],[-10,0],[-8,1],[-11,-11],[-4,-3],[-3,-3],[-1,-2],[-13,-31],[-14,-13],[-7,2],[-20,8],[-11,19],[-24,42],[0,21],[0,8],[0,13],[-14,64],[-12,53],[-16,27],[-1,0],[-17,4],[-11,-10],[-2,-14],[-5,-45],[-7,-6],[-5,1],[-1,0],[-161,37],[-5,2],[-4,2],[-6,3],[-7,13],[-3,5],[-2,5],[-44,80],[-1,6],[0,5],[-11,96],[-1,2],[-19,36]],[[52622,20979],[-5,63],[-7,12],[-4,7],[-37,65],[-4,6],[-64,69],[-1,0],[-13,1],[-36,2],[-6,10],[-2,4],[-3,4],[0,26],[-2,43],[0,3],[-57,31],[-3,1],[-3,2],[-6,4],[-33,34],[-1,1],[-94,103],[-2,3],[-11,16],[-6,9],[-60,172],[-17,97],[-46,256],[-15,107],[14,59],[0,2],[-45,165],[-8,14],[-6,1],[-40,-8],[-2,0],[0,8],[-5,56],[0,1],[-45,48],[-1,0],[-7,40],[-3,17],[-18,92],[-12,90],[-3,9],[-5,7],[-1,0],[-39,27],[-11,18],[1,4],[0,1],[0,4],[21,51],[7,11],[0,1],[0,6],[0,9],[1,0],[2,6],[-2,3],[-72,134],[-4,16],[-2,10],[-1,4],[-3,122],[-1,49],[-1,13],[0,1],[-1,2],[-59,152],[-1,3],[-1,1],[-22,42],[-4,7],[-14,27],[-5,8],[-8,13],[-31,53],[-2,16],[0,8],[-3,37],[-3,4],[-10,11],[-4,4],[-113,122],[-3,3],[-22,54],[-35,86],[-13,38],[-19,51],[-5,9],[-29,26],[-17,43],[-27,14],[-52,84],[-16,21],[-28,24],[-15,42],[-21,43],[-27,50],[-2,43],[-9,136],[-13,31],[8,36],[-12,45],[1,40],[-9,36],[-3,47],[-15,25],[-26,29],[1,43],[-11,47],[4,59],[-4,49],[-7,32],[-28,43],[-24,10],[-12,27],[-38,92],[-18,21],[-28,16],[-30,34],[-14,61],[-18,40],[-26,24],[-69,24],[-23,70],[-1,1],[-11,30],[-3,20],[2,30],[-45,75],[-107,136],[-20,14],[-14,10],[-18,13],[-4,3],[-7,-1],[-5,0],[-1,1],[-25,59],[-1,3],[-42,120],[-6,17],[-4,20],[-9,13],[-17,16],[-64,31],[-13,4],[-39,12],[-6,4],[-2,1],[-3,3],[-15,18],[-2,22],[-2,20],[-1,2],[-14,38],[-5,15],[-5,4],[-16,19],[-38,46],[-7,11],[-1,5],[-3,8],[-7,11],[-1,1],[-1,2],[-37,38],[-19,12],[-16,-3],[-11,-6],[-36,-30],[-25,1],[-30,8],[-32,24],[-21,7],[-24,-1],[-6,0],[-37,0],[-21,15],[-7,10],[-7,18],[-1,10],[-4,33],[-3,6],[0,3],[-19,25],[-2,0],[-8,23],[-5,18],[-34,107],[-35,56],[-20,60],[-4,15],[-5,18],[-3,6],[-3,6],[-24,27],[-39,22],[-17,12],[-1,1],[-27,24],[-16,24],[-17,46],[-12,19],[-36,42],[-13,10],[-21,6],[-61,30],[-83,48],[-34,25],[-1,1],[0,1],[-65,178],[-7,17],[-6,34],[-8,63],[-5,50],[-16,36],[13,12],[13,14],[1,1],[-7,21],[-2,8],[-4,10],[-44,69],[-34,52],[-8,14],[-76,176],[-1,0],[0,1],[10,94],[1,3],[-26,131],[-5,8],[-11,17],[-41,49],[-110,131],[-7,7],[-6,12],[-20,37],[-6,11],[-1,17],[-11,104],[0,1],[-3,11],[-11,18],[-2,1],[-9,8],[-11,15],[-2,3],[-12,31],[-16,52],[-1,2],[0,1],[-22,89],[2,9],[9,64],[1,4],[0,1],[0,26],[-4,9],[-73,87],[-36,37],[-14,15],[0,1],[-20,86],[0,1],[0,1],[-74,77],[-42,44],[-12,20],[-13,35],[-8,40],[-10,46],[-1,2],[-24,78],[-1,1],[-3,7],[-17,32],[-24,24],[-16,16],[-101,105],[-14,16],[-19,39],[-2,3],[-9,15],[-6,4],[-1,1],[-41,21],[-3,17],[-3,18],[6,19],[6,46],[2,30],[-35,83],[-11,12],[-39,10],[-76,-15],[-15,-9],[-21,-17],[-47,68],[-16,24],[-23,33],[0,1],[-16,27],[4,102],[0,12],[22,99],[-16,0],[-18,51],[-16,17],[-3,4],[-19,-5],[-75,64],[-26,31],[-17,24],[-1,1],[-5,13],[-24,142],[-33,88],[-1,1],[-2,-1],[-1,-1],[-15,2],[-42,21],[-195,196],[-5,7],[-38,67],[-43,105]],[[47287,31116],[-74,-60],[-151,-124],[-105,-84],[-232,-186],[-24,-19],[-233,-189],[-25,-20],[-32,-25],[-136,-121],[-26,-20],[-93,-72],[-291,-226],[-37,-30],[-365,-295],[-116,-90],[-196,-152],[-118,-94],[-154,-123],[-164,-131],[-23,-18],[-256,-221],[-18,-55],[-14,-25],[-5,-8],[-39,-42],[23,-23],[17,-18],[-3,-2],[-134,-120],[-156,-134],[-18,-11],[-16,-10],[0,-34],[-1,-36],[-1,-52],[0,-67],[-1,-37],[-1,-40],[0,-39],[0,-35],[-1,-32],[-1,-33],[0,-34],[-1,-47],[0,-33],[-1,-39],[0,-40],[-1,-38],[0,-37],[-1,-42],[0,-13],[0,-20],[-1,-45],[-1,-40],[0,-33],[-1,-38],[0,-39],[-1,-42],[-13,-29],[0,-1],[-7,4],[-22,12],[-1,0],[-13,7],[-6,2],[-34,13],[-20,0],[-1,0],[-27,-5],[-28,-8],[-43,-18],[-55,-29],[-22,-21],[-58,-38],[-35,-9],[-11,-3],[-44,-16],[-27,-13],[-26,-28],[-48,-78],[-44,-53],[-23,-27],[-32,-37],[-24,-33],[-44,-46],[-22,-16],[-25,-10],[-32,-10],[-26,-5],[38,-204],[31,-171],[27,-156],[49,-258],[38,-199],[84,-437],[16,-83],[28,-161],[-216,-236],[-48,-53],[-206,-227],[-37,-43],[-159,-177],[-148,-167],[-217,-244],[-193,-220],[-30,-33],[-4,-5],[-61,-70],[-35,-40],[-33,-41],[-15,-25],[-24,-67],[-12,-33],[-46,-149],[-21,-63],[-32,-103],[-18,-56],[-29,-86],[-7,-33],[-10,-51],[-132,-54],[-166,-66],[-59,-24],[-161,-64],[-91,-38],[-146,-130],[-218,-200],[-101,-93],[-42,-40],[-35,-33],[-45,1],[-54,0],[-132,2]],[[40574,22258],[6,33],[1,59],[-10,18],[-8,14],[-3,4],[-9,2],[-31,6],[-93,-13],[-50,-15],[-40,-20],[-27,3],[-4,0],[-10,1],[-11,14],[0,2],[-12,25],[-5,12],[1,12],[2,16],[1,4],[2,4],[16,34],[8,17],[14,13],[39,14],[43,-11],[45,9],[28,19],[28,41],[6,50],[-19,-28],[-34,-28],[-24,-5],[-25,10],[-13,32],[0,3],[25,86],[13,65],[4,20],[4,30],[3,28],[-7,10],[-10,15],[-14,13],[-29,-13],[-14,-46],[-28,-69],[-23,-10],[-24,29],[18,44],[14,25],[11,42],[-5,43],[-29,37],[-46,28],[-19,12],[-31,6],[-14,-6],[-5,-3],[-23,-10],[-18,-9],[-48,-2],[-49,13],[-17,15],[-3,6],[-8,16],[-7,14],[5,43],[11,12],[11,11],[17,9],[90,11],[51,6],[92,-2],[13,5],[15,13],[7,7],[7,6],[48,131],[0,7],[1,29],[-13,22],[-3,5],[-24,8],[-13,-1],[-21,-15],[-10,-7],[-44,-19],[-48,-7],[-50,10],[-23,12],[-32,30],[-30,38],[-1,2],[-18,38],[-14,27],[-1,44],[15,13],[7,-2],[8,-3],[15,-5],[30,-45],[10,-15],[21,-12],[28,-5],[26,11],[15,13],[13,29],[0,6],[1,14],[0,20],[-10,18],[-17,1],[-52,4],[-24,13],[-15,31],[3,23],[7,11],[7,5],[43,37],[16,25],[0,5],[16,16],[24,13],[29,14],[23,46],[-22,22],[-24,-9],[-22,-6],[-24,5],[-16,1],[-7,13],[-7,22],[-1,39],[0,33],[-4,17],[-10,16],[-10,18],[-1,2],[-2,0],[-16,11],[-10,18],[-4,21],[3,23],[28,23],[14,-4],[4,-1],[33,-8],[23,-6],[6,3],[5,6],[1,1],[9,10],[4,31],[-17,40],[-5,3],[-4,2],[-12,23],[-2,3],[-9,19],[-3,11],[-10,39],[-1,44],[17,37],[8,7],[13,13],[9,3],[18,8],[26,27],[42,87],[3,17],[2,11],[14,72],[-11,19],[-59,7],[-11,14],[-10,18],[-4,8],[-57,137],[-3,7],[12,74],[9,22],[46,35],[3,8],[15,30],[3,6],[0,1],[-17,59],[-24,73],[-139,208],[-33,42],[-25,31],[-20,2],[-11,1],[-13,2],[-24,-20],[-25,-71],[-11,-11],[-14,-16],[-25,5],[-15,11],[-22,48],[-39,120],[14,95],[2,13],[-2,13],[-6,11],[-4,6],[-11,19],[-21,4],[-3,-1],[-18,-5],[-12,-4],[-75,-45],[-29,-26],[-9,-19],[-8,-93],[0,-5],[-19,-20],[-43,8],[-4,6],[-9,17],[-15,68],[-28,128],[6,43],[18,54],[22,66],[27,66],[24,44],[30,218],[3,51],[-6,25],[-17,71],[-10,50],[-21,36],[-21,4],[-33,-15],[-4,-1],[-5,0],[-37,8],[-2,0],[-23,20],[-7,12],[-19,30],[-26,72],[-51,78],[-6,1],[-8,2],[-17,3],[-3,-2],[-11,-9],[-10,-8],[-4,-62],[-1,-29],[-5,-15],[-3,-3],[-9,-10],[-7,-7],[-15,1],[-19,1],[-20,16],[-22,5],[-25,0],[-3,-2],[-4,-4],[-30,14],[-64,88],[-5,8],[-5,6],[-12,26],[4,31],[39,131],[3,9],[5,19],[5,7],[32,30],[62,45],[16,11],[27,-2],[30,-19],[35,-24],[25,14],[-13,29],[-20,15],[-15,25],[0,22],[8,37],[43,40],[37,45],[3,47],[-5,17],[-23,40],[-52,46],[-46,9],[-15,-11],[-5,-5],[-8,-6],[-8,-14],[-5,-60],[4,-11],[24,-74],[-3,-27],[-6,-6],[-16,-14],[-19,6],[-8,3],[-34,59],[-7,7],[-21,22],[-12,3],[-63,12],[-14,11],[-8,18],[-3,8],[-4,8],[3,25],[0,3],[14,33],[23,59],[5,39],[-2,33],[-5,16],[0,1],[-7,21],[-24,42],[-2,3],[-19,48],[4,35],[9,11],[17,20],[4,37],[1,5],[2,12],[-5,17],[-3,5],[-8,12],[-8,11],[-21,4],[-13,-7],[-8,-5],[-32,-2],[-25,5],[-20,16],[-10,15],[-9,13],[-4,16],[4,35],[8,8],[11,12],[14,14],[13,2],[29,26],[3,3],[13,30],[0,5],[1,42],[0,9],[-21,36],[-87,96],[-25,25],[-38,31],[-21,8],[-48,98],[-21,16],[-65,12],[-48,46],[-4,6],[-9,16],[-9,29],[-7,22],[1,8],[1,32],[2,47],[-1,5],[-1,4],[12,45],[42,84],[6,50],[1,5],[-4,5],[-6,10],[-1,3],[-2,2],[-56,45],[-19,19],[-19,30],[-77,125],[-27,117],[-6,25],[-1,13],[-2,77],[-1,52],[0,7],[-11,66],[-2,19],[-11,65],[4,40],[21,32],[27,12],[21,-16],[2,-38],[0,-33],[12,-48],[6,-1],[48,-51],[16,-17],[27,-2],[3,-1],[5,0],[5,2],[17,7],[5,2],[21,20],[5,11],[3,22],[7,36],[2,14],[10,55],[1,64],[1,7],[7,59],[4,13],[10,33],[2,7],[2,4],[24,51],[-3,10],[15,48],[16,45],[0,16],[-1,34],[-15,38],[0,55],[24,48],[0,37],[-34,64],[-9,42],[6,41],[23,25],[33,22],[25,34],[16,61],[5,41],[-6,58],[-25,17],[-32,5],[-30,6],[-35,9],[-29,13],[-21,16],[-17,39],[1,9],[1,27],[5,15],[7,14],[2,4],[8,15],[10,10],[9,8],[2,2],[21,12],[2,-1],[23,-4],[46,11],[23,12],[29,26],[1,26],[0,9],[1,5],[-14,26],[-4,8],[-3,6],[-49,9],[-7,1],[-7,3],[-27,10],[-8,4],[-12,13],[-13,15],[-9,4],[-6,3],[-20,36],[-11,22],[-18,33],[-11,21],[-28,29],[-8,2],[-19,3],[-4,1],[-16,-5],[-2,-1],[-9,-11],[-12,-15],[0,-2],[-4,-29],[-13,-86],[-2,-12],[-11,-11],[-8,-9],[-3,-3],[-3,-1],[-26,-5],[0,-1],[-1,1],[-16,14],[0,1],[-13,22],[1,22],[1,18],[0,8],[15,17],[22,27],[13,25],[8,15],[5,28],[5,26],[-3,25],[-17,47],[-20,40],[-3,4],[-9,12],[-16,5],[-49,-28],[-49,8],[-48,24],[-15,51],[31,25],[74,-11],[49,27],[11,18],[7,16],[2,18],[2,13],[-4,17],[-6,9],[-11,17],[-10,15],[-21,8],[-18,-2],[-37,-3],[-59,11],[-18,9],[-7,4],[-11,6],[-20,19],[-41,38],[-30,29],[-54,74],[-12,19],[-13,24],[-7,11],[-1,44],[7,42],[4,24],[-1,16],[-10,18],[-25,5],[-20,-4],[-31,-29],[-15,-14],[-17,-10],[-35,-20],[-49,9],[-11,10],[-4,4],[-3,1],[-26,45],[-33,154],[-1,33],[-7,15],[-5,10],[-6,14],[-22,24],[-22,5],[-19,3],[-9,2],[-5,-5],[-11,-10],[-5,-5],[-3,-5],[-51,-92],[-20,-36],[-17,-16],[-9,-9],[-6,-5],[-10,2],[-29,5],[-1,1],[-8,3],[-38,13],[-56,24],[-17,6],[-20,16],[-52,39],[-26,20],[-15,15],[0,1],[-5,9],[-12,25],[4,11],[0,1],[12,10],[10,9],[72,0],[13,0],[17,15],[6,6],[6,5],[5,19],[7,55],[-11,70],[-23,44],[-10,8],[-4,3],[-13,12],[-10,6],[-13,46],[-10,35],[-19,19],[-40,3],[-18,-36],[33,-39],[43,-31],[4,-61],[-70,-68],[-22,0],[-25,19],[-41,6],[-23,-6],[-27,28],[19,24],[21,38],[-32,56],[-21,-11],[-33,-26],[-34,-7],[-22,17],[-4,36],[88,56],[-17,39],[-36,-7],[-36,-8],[-31,6],[-3,3],[-9,8],[-12,22],[80,51],[-1,51],[-32,8],[-91,-39],[3,114],[-29,41],[-120,70],[-50,30],[-2,-99],[-20,-13],[-26,33],[-25,67],[-63,-6],[-4,0],[-18,4],[-5,3],[-28,15],[0,1],[-12,11],[-14,13],[-7,14],[0,28],[27,18],[13,-2],[3,-1],[27,11],[15,15],[8,7],[13,11],[30,42],[5,43],[-6,29],[-63,132],[-7,25],[-21,36],[-2,1],[-5,1],[-11,2],[-9,-8],[-2,-2],[-4,-3],[-17,-65],[-7,-10],[-50,-71],[-7,-5],[-44,-32],[-30,-23],[-6,-3],[-7,-2],[0,-1],[-2,1],[-23,4],[-18,31],[-1,1],[-6,25],[5,67],[12,21],[26,24],[13,13],[8,11],[13,20],[0,1],[7,10],[13,30],[2,17],[2,18],[1,4],[-7,25],[-11,44],[-6,23],[-5,8],[-21,31],[-20,30],[-6,1],[-21,8],[-24,15]],[[52622,20979],[-146,-118],[-74,-51],[-210,-345],[-6,-10],[0,-1],[-41,-77],[-146,-255],[-19,-35],[-29,-53],[-10,-19],[-40,-73],[-57,-105],[-59,-105],[-65,-118]],[[51720,19614],[-38,-68],[-69,-129],[-63,-118],[-79,-143],[-55,-99],[-3,-5],[-2,-5],[-9,-18],[-121,-218],[-84,-152],[-78,-141],[-3,-4],[-41,-74],[-29,-51],[-15,7],[-12,27],[-1,0],[-109,60],[-15,8],[-4,7],[-52,4],[-18,19],[-24,18],[-31,0],[-32,-4],[-25,-9],[-20,21],[-9,34],[-55,89],[-42,18],[-49,50],[-19,34],[-21,34],[-13,41],[-34,12],[-40,11],[-29,22],[-28,7],[-43,-20],[-31,7],[-28,15],[-39,19],[-23,-6],[-23,4],[-24,27],[-29,19],[-26,7],[-26,-10],[-21,4],[-17,19],[-37,42],[-22,0],[-41,-13],[-21,3],[-31,18],[-8,10],[-59,122],[-13,43],[-9,124],[0,13],[7,29],[10,11],[21,1],[18,20],[5,10],[19,33],[1,4],[1,1],[36,64],[11,12],[20,11],[49,22],[1,0],[41,25],[12,12],[0,1],[18,30],[9,26],[6,68],[21,96],[2,5],[19,80],[16,39],[6,15],[2,7],[0,2],[5,42],[0,13],[-2,27],[-3,10],[-2,5],[-18,38],[-3,18],[13,144],[21,102],[-2,17],[-3,40],[-2,20],[-1,4],[-6,19],[-13,16],[-35,30],[-41,34],[-7,-1],[-5,-5],[-26,-15],[-2,0],[-11,-3],[-13,0],[-3,1],[-25,9],[-33,51],[-12,24],[-2,13],[2,11],[-2,9],[-6,12],[0,1],[-15,16],[-10,7],[-61,-7],[-77,61],[-2,1],[-49,103],[0,15],[-1,45],[-2,49],[0,9],[0,2],[-30,70],[-10,40],[-3,13],[-68,138],[-19,40],[-2,3],[-21,24],[-15,17],[-14,10],[-71,80],[-8,10],[-8,25],[-12,32],[-7,14],[-62,107],[-15,18],[-23,20],[-8,2],[-2,8],[-9,43],[-4,15],[-29,38],[-52,92],[-67,96],[-30,49],[-56,98],[-19,13],[-9,13],[-3,13],[-6,23],[5,68],[2,43],[-4,12],[-112,178],[-38,50],[-143,41],[-81,-91],[-35,-42],[-189,-227],[-150,-180],[-1,-1],[-237,-271],[-171,-197],[-235,-269],[-27,-31],[-34,-38],[-151,-173],[-2,-3],[-66,-76],[-21,-23],[-126,-145],[-43,-50],[-183,-207],[-66,-73],[-179,-195],[-27,-29],[-25,-27],[-173,-188],[-73,-83],[-210,-223],[-57,-61],[-13,-13],[-64,-73],[-41,-48],[-116,-132],[-76,-86],[-106,-122],[-238,-236],[-44,-46],[-2,-3],[-347,-373],[-39,-48],[-135,-151],[-139,-155],[-88,-96],[-117,-77],[-203,-134],[-88,-111],[-1,-1],[-140,-176],[-17,-21],[-22,-28],[-66,-82],[-28,-36],[-84,-105],[-82,-100],[-4,-5],[-34,-45],[-88,-104],[-6,-7],[-185,-220],[-11,-13],[-141,-167],[-14,-18],[-36,-42],[-108,-128],[-23,-28],[-17,-21],[-17,-23],[-9,-13]],[[43152,16323],[-37,13],[-2,-1],[-8,-5],[-4,-3],[-7,-6],[-1,-8],[-5,-43],[-3,-23],[-4,-28],[-4,-7],[-15,-25],[-38,-28],[-1,0],[-7,0],[-23,2],[-4,0],[-6,8],[-8,13],[-2,3],[2,10],[15,61],[10,34],[5,45],[-4,54],[-7,50],[-16,54],[-21,25],[-23,7],[-24,-7],[-12,-34],[30,-56],[11,-27],[5,-31],[1,-38],[-12,-41],[-25,-27],[-15,-11],[-24,-17],[-28,-8],[-17,6],[-6,2],[-15,24],[1,13],[5,40],[1,9],[19,31],[13,26],[10,29],[2,5],[6,37],[-7,36],[-22,31],[-21,13],[-23,5],[-6,-1],[-15,0],[-27,-11],[-33,-11],[-26,-11],[-28,-16],[-27,-9],[-167,-24],[-50,-15],[-26,-7],[-29,-6],[-46,-1],[-20,4],[-46,18],[-42,12],[-29,13],[-4,2],[-45,40],[-28,18],[-23,18],[-21,11],[-42,12],[-50,29],[-32,19],[-91,61],[-32,18],[-50,33],[-67,35],[-23,6],[-41,14],[-22,15],[-27,35],[-27,42],[13,38],[24,22],[32,26],[22,25],[12,30],[-6,32],[-18,26],[-20,14],[-18,16],[-6,6],[-21,21],[-21,5],[-21,-7],[-15,-24],[-8,-29],[-11,-40],[-20,-39],[-24,-30],[-23,-10],[-28,1],[-9,6],[-10,6],[-9,30],[10,30],[36,36],[19,24],[9,22],[3,8],[1,38],[-13,29],[-18,7],[-4,2],[-24,-1],[-31,0],[-24,9],[-22,31],[-4,40],[6,31],[15,36],[4,50],[-15,24],[-31,20],[-38,9],[-21,-16],[-14,-31],[-19,-36],[-18,-14],[-24,-7],[-24,4],[-28,13],[-21,16],[-77,72],[-71,85],[-18,18],[-17,38],[-24,55],[-15,35],[-13,30],[-26,60],[-37,56],[-31,46],[-21,26],[-1,1],[-49,58],[-44,45],[-44,47],[-23,33],[-14,25],[-9,29],[-5,42],[-8,40],[-36,25],[-26,1],[-29,32],[-23,62],[10,37],[3,36],[-5,36],[-28,42],[-26,31],[-22,15],[-23,23],[-16,31],[-11,32],[0,25],[-1,32],[5,49],[-3,32],[9,44],[10,12],[-1,0],[4,4],[41,45],[17,11],[28,-3],[19,-49],[7,-37],[13,-54],[13,-30],[33,-27],[24,7],[19,13],[24,35],[26,53],[26,33],[16,20],[-8,47],[-21,17],[-31,2],[-50,7],[-40,8],[-37,19],[-14,35],[0,5],[3,5],[124,53],[29,12],[17,7],[3,2],[4,3],[36,32],[31,27],[123,131],[34,46],[6,43],[-9,17],[-4,7],[-5,11],[-10,11],[-18,18],[-62,64],[-19,12],[-11,7],[-28,1],[-23,-12],[-29,-9],[-26,4],[-28,27],[-9,31],[-8,35],[-10,40],[-3,33],[16,31],[43,3],[13,-44],[13,-56],[19,-21],[22,-7],[37,6],[21,19],[20,26],[3,4],[3,25],[1,10],[3,20],[-5,12],[-11,18],[-46,34],[-54,50],[-18,32],[-11,18],[1,2],[0,5],[-4,21],[3,48],[27,118],[35,101],[7,59],[-3,39],[-34,76],[-29,42],[-6,3],[-14,7],[-16,9],[-23,35],[-1,1],[1,4],[4,39],[14,34],[2,31],[0,2],[3,30],[-4,9],[-22,50],[-25,57],[-6,39],[-8,37],[-19,38],[-26,-6],[-7,-32],[9,-34],[1,-14],[4,-56],[-26,-15],[-22,23],[-4,37],[-9,39],[-35,17],[-3,2],[-34,-9],[-2,0],[-2,1],[-21,7],[-4,1],[-2,5],[-19,31],[-15,79],[-25,33],[-21,12],[-24,5],[-41,-9],[-8,-2],[-15,3],[-1,2],[-12,21],[2,41],[0,2],[20,37],[14,15],[8,8],[4,10],[8,17],[5,10],[0,4],[2,46],[-17,24],[-32,22],[11,32],[22,-2],[21,-8],[35,1],[16,17],[1,32],[5,15],[19,19],[2,1],[1,0],[61,-12],[19,4],[11,10],[12,18],[4,39],[-3,20],[-11,18],[-13,24],[-18,31],[-52,46],[-15,31],[4,31],[16,25],[10,9],[27,7],[47,-9],[36,-2],[21,-8],[34,-5],[19,20],[-1,39],[-26,11],[-23,-6],[-28,-2],[-38,11],[-34,35],[-13,23],[6,49],[-1,5],[-11,115],[-4,39],[9,22],[9,8],[6,6],[21,-5],[25,-24],[1,-1],[17,-3],[14,-3],[13,6],[22,23],[1,11],[1,4],[3,24],[-2,13],[-38,61],[-2,2],[0,3],[3,41],[4,11],[18,17],[89,26],[40,44],[13,30],[9,92]],[[50995,1180],[23,-11],[99,10],[40,40],[33,33],[56,44],[66,25],[64,13],[45,9],[42,3],[-22,-111],[-49,-81],[-35,-62],[-59,-69],[-44,-98],[-27,-56],[-9,-21],[-40,-82],[-3,-6],[-36,-69],[-22,-44],[-11,-21],[-43,-67],[-58,-56],[-51,-65],[-59,8],[-74,64],[-38,31],[-34,28],[-27,28],[-79,81],[13,44],[72,248],[12,83],[-9,213],[8,113],[75,-14],[51,-83],[62,-72],[68,-30]],[[50682,1271],[16,-100],[-6,-71],[-43,-141],[-19,-58],[-16,-246],[72,-124],[24,-33],[13,-17],[36,-51],[66,-38],[55,-48],[25,-69],[74,-81],[81,-22],[65,32],[38,12],[66,-8],[53,-76],[25,-114],[-64,-18],[-59,12],[-54,15],[-83,21],[-85,20],[-68,-4],[-66,-3],[-47,4],[-76,30],[-57,44],[-44,42],[-68,57],[-46,62],[-45,65],[-32,49],[-39,57],[-38,60],[-38,85],[-53,79],[-41,48],[-43,48],[-31,19],[-45,60],[-48,80],[-39,72],[-38,44],[-63,40],[-45,29],[12,51],[53,30],[67,4],[95,-4],[49,4],[65,17],[2,1],[29,30],[46,57],[20,70],[29,43],[125,138],[51,10],[85,-92],[57,-101],[45,-122]],[[51720,19614],[46,-126],[26,-73],[29,-132],[30,-132],[23,-50],[32,-32],[61,-95],[10,-49],[10,-28],[21,-14],[10,-29],[1,-2],[12,-36],[-15,-36],[19,-26],[14,30],[22,7],[8,-43],[15,-33],[34,-13],[22,16],[-1,-66],[29,-32],[1,-38],[4,-46],[16,-21],[16,-26],[-3,-67],[-16,-48],[-39,-64],[-19,-45],[16,-62],[63,-70],[64,-41],[129,-117],[22,-83],[3,-105],[-13,-73],[8,-40],[71,-94],[13,-92],[-19,-97],[-48,-164],[-25,-199],[29,-208]],[[52451,16820],[-24,-46],[-5,-9],[-2,-71],[-1,-48],[-1,-36],[0,-18],[-20,-34],[-19,-33],[-5,-9],[-27,-43],[-21,-74],[1,-93],[9,-76],[0,-15],[3,-101],[-1,-59],[58,-55],[-4,-77],[-25,-82],[-41,-66],[-39,-46],[-58,-28],[-90,-63],[-64,43],[-36,57],[-44,67],[-41,83],[-9,16],[-17,29],[-74,49],[-30,78],[-15,41],[-22,-30],[-39,-53],[-3,-1],[-34,-14],[-43,-14],[-37,-13],[72,-72],[65,-15],[8,-1],[13,-10],[45,-36],[54,-5],[51,-66],[22,-59],[22,-62],[11,-39],[14,-51],[50,-96],[50,-99],[33,-53],[33,-49],[-47,-51],[-86,-63],[-6,-95],[37,-20],[17,-10],[27,51],[19,24],[21,28],[65,68],[60,-25],[24,-36],[29,-79],[15,-77],[3,-39],[5,-54],[15,-76],[25,-80],[25,-72],[42,-84],[24,-57],[25,-70],[28,-96],[18,-75],[14,-83],[20,-113],[11,-63],[11,-61],[23,-121],[-4,-115],[-6,-40],[-7,-46],[-13,-32],[-10,-26],[-6,-90],[-26,-27],[-21,-21],[-28,1],[-50,2],[16,30],[36,69],[19,83],[-28,88],[-56,43],[-79,-15],[-43,29],[-25,55],[-24,50],[-17,-59],[-46,4],[-48,-1],[-62,19],[-1,0],[17,-32],[11,-23],[8,-15],[39,-20],[83,-21],[50,-48],[1,-1],[56,-19],[47,-39],[22,-18],[-65,-117],[11,-43],[12,-46],[11,-16],[39,-55],[38,-33],[19,-16]],[[52508,13273],[-35,-61],[-22,-64],[-24,-71],[-16,-46],[-15,-52],[-8,-29],[-11,-37],[-10,-32],[-7,-22],[-19,-55],[-19,-46],[-13,-31],[-27,-85],[-25,-69],[-13,-41],[-8,-37],[-11,-32],[-5,-17],[-7,-22],[-13,-37],[-22,-72],[-15,-66],[-19,-79],[-8,-47],[-2,-31],[-6,-69],[-2,-107],[17,-65],[29,-82],[31,-16],[29,2],[45,28],[30,35],[27,31],[53,27],[45,-2]],[[52432,11874],[39,-68],[46,-82],[25,-2]],[[52542,11722],[-46,-65],[-21,-57],[-20,-40],[-17,-51],[-49,-97]],[[52389,11412],[-86,-113],[-47,-87],[6,-26],[23,-90],[-25,-109],[-62,-44],[-31,28],[-46,32],[20,-88],[-36,-101],[-35,5],[-9,2],[-58,48],[-88,37],[-70,-27],[63,-38],[12,-32],[23,-58]],[[51943,10751],[-12,-69],[-27,-16],[-15,-44],[11,-48],[-56,-30],[-208,-115],[21,-34],[34,-45],[27,-48],[24,-43],[-42,-49],[-24,-30],[-24,-32],[-24,-30],[-1,-5],[-7,-29],[-15,-24],[-9,-45],[-10,-84],[-26,-190],[-4,-41],[-42,5],[-22,-1],[-27,6],[-46,10],[-37,8],[-25,6],[-23,6],[-51,16],[1,38],[1,82],[-17,41],[-14,23],[-3,6],[-29,-2],[-105,6],[-23,1],[-46,1],[-51,3],[-112,6],[-73,-15],[-50,-22],[-23,-4],[-30,-3],[-37,-2],[-46,-4],[-25,-7],[-1,0],[-2,-7],[-28,-87],[-10,-33],[-19,-64],[-42,-151],[1,-38],[3,-145],[-1,-100],[-7,-42],[-26,-76],[-16,-41],[-27,-64],[-8,-19],[-3,-15],[-6,-35],[-22,-64],[-10,-33],[-3,-34],[-2,-48],[-1,-41],[-2,-33],[-1,-38],[0,-16],[-2,-65],[-1,-37],[0,-19],[-4,-144],[-2,-78],[2,-36],[4,-34],[-9,1],[-61,4],[-35,6],[-23,6],[-23,0],[-34,7],[-24,9],[-23,6],[-23,7],[-44,3],[-35,6],[-29,10],[-33,6],[-42,9],[-27,7],[-23,3],[-31,6],[-50,13],[-21,3],[-21,3],[-60,8],[-32,4],[-24,7],[-34,3],[-31,9],[-1,1],[-24,6],[-21,3],[-24,3],[-24,6],[-37,6],[-36,7],[-20,3],[-25,0],[-25,7],[-23,2],[-25,0],[-27,0],[-18,0],[-7,0],[-24,0],[-22,0],[-31,-3],[-40,0],[-29,0],[-29,0],[-31,0],[-25,-3],[-129,0],[11,-85],[1,-6],[6,-16],[11,-33],[11,-25],[14,-16],[60,-49],[16,-13],[5,-3],[30,-24],[68,-53],[29,-98],[-5,-22],[-17,-96],[-38,-155],[2,-123],[3,-111],[19,-31],[36,-60],[54,-129],[0,-60],[0,-105],[0,-51],[-87,-139],[-94,-67],[-2,-3],[-31,-39],[-10,-16],[-18,-28],[-2,-4],[-4,-9],[-2,-16],[-1,-8],[-3,-10],[-11,-16],[-22,-27],[-15,-9],[-72,-34],[-9,1],[-45,-26],[-23,-24],[-19,-19],[-29,-41],[-3,-7],[-16,-40],[-1,-11],[1,-34],[1,-53],[0,-18],[7,-28],[16,-42],[4,-9],[15,-39],[6,-11],[-3,-37],[-6,-93],[-1,-4],[0,-5],[-1,-6],[2,-91],[4,-40],[18,-89],[1,-4],[21,-73],[0,-12],[0,-1],[-11,-63],[0,-3],[0,-20],[8,-33],[0,-1],[10,-15],[46,-43],[24,-23],[3,-3],[22,-61],[4,-11],[-25,-43],[0,-1],[67,-129],[4,-8],[5,-10],[9,-15],[13,-14],[11,-7],[7,-2],[56,-3],[5,-11],[24,-30],[2,-3],[15,-32],[75,-206],[-8,-16],[-11,-6],[-37,10],[-63,-2],[-2,0],[0,-46],[11,-9],[161,-129],[18,-14],[27,-32],[5,-6],[87,-17],[15,1],[9,2],[7,5],[16,13],[23,21],[3,4],[2,3],[6,2],[2,1],[6,1],[7,0],[15,-19],[2,-4],[10,-21],[3,-6],[7,-43],[2,-18],[2,-14],[10,-6],[14,-9],[6,-4],[1,0],[51,-8],[37,6],[6,-2],[12,-4],[9,-3],[19,-21],[1,-1],[22,-32],[17,-9],[2,0],[4,1],[18,12],[1,1],[28,22],[10,8],[15,12],[23,6],[29,-14],[19,-38],[-3,-28],[-1,-6],[0,-1],[-22,-20],[-51,-11],[-7,-1],[-19,-8],[-7,-3],[-14,-5],[-14,-13],[-7,-11],[-20,-60],[-3,-43],[2,-4],[13,-27],[11,-3],[11,-2],[27,15],[25,23],[22,31],[3,7],[2,8],[10,9],[19,17],[23,-1],[2,0],[10,-18],[5,-12],[2,-5],[5,-41],[-1,-28],[-1,-36],[15,-31],[16,-3],[1,0],[4,-1],[49,45],[8,7],[13,0],[6,0],[19,1],[5,-10],[15,-29],[3,-6],[0,-1],[3,-11],[9,-42],[4,-17],[8,-14],[19,-14],[42,-47],[13,-22],[-1,-29],[0,-7],[-3,-3],[-1,0],[-10,-10],[-26,-3],[-17,4],[-10,2],[-31,-9],[-28,-8],[-23,-7],[-11,-8],[-11,-9],[-6,-5],[-6,-23],[1,-3],[1,-9],[9,-14],[7,-10],[3,-1],[81,-32],[14,-10],[18,-32],[5,-31],[0,-2],[7,-98],[-2,-15],[-2,-19],[-1,-1],[-23,-35],[-7,-11],[-2,-11],[2,-11],[6,-51],[12,-231],[-11,-61],[-12,-22],[-4,-3],[-23,-18],[-1,-1],[-2,0],[-13,5],[-12,4],[-82,101],[-11,17],[-4,7],[-8,13],[2,21],[10,76],[-6,26],[-3,5],[-7,11],[-3,6],[-4,3],[-13,9],[-6,5],[-11,2],[-4,1],[-16,3],[-32,-1],[-2,-2],[-22,-14],[-14,-14],[-30,-29],[-13,-13],[-2,-4],[-3,-7],[-2,-22],[-12,-117],[-2,-14],[9,-54],[19,-33],[12,-21],[33,-44],[13,-17],[43,-13],[32,8],[13,3],[28,-6],[1,-3],[11,-20],[3,-4],[-1,-4],[-2,-17],[-2,-22],[-16,-19],[-21,-26],[-18,-36],[-3,-51],[-5,-143],[1,-17],[10,-18],[12,-2],[7,-2],[3,0],[25,23],[60,104],[30,25],[8,7],[3,0],[7,-1],[25,-2],[37,-24],[23,-22],[14,-13],[12,-3],[2,0],[13,-3],[15,15]],[[50108,2898],[0,-36],[37,0],[3,20],[6,37],[6,52],[20,53],[23,52],[32,22],[37,-22],[44,-26],[72,-22],[25,23],[4,3],[23,40],[23,34],[7,2],[16,3],[26,-122],[20,-92],[44,-48],[49,0],[89,13],[44,35],[34,57],[18,48],[34,26],[47,-26],[1,-16],[4,-37],[0,-43],[-11,-21],[-23,-41],[-75,-8],[-78,-40],[-47,0],[-60,0],[-64,-43],[-35,-26],[-14,-27],[-26,-83],[32,-91],[84,-61],[153,-75],[199,-74],[69,-31],[145,-109],[20,-87],[-5,-12],[-21,-49],[-75,-96],[-66,-92],[-73,-109],[-20,-53],[-84,-153],[-65,-91],[-45,10],[-19,4],[-73,97],[-60,71],[-68,37],[-71,18],[-106,-4],[-69,-13],[-47,1],[-25,32],[-42,53],[-26,52],[0,74],[15,66],[0,61],[-18,35],[-34,13],[-47,0],[-7,-13],[-13,-22],[-40,0],[-7,-7],[-22,-24],[40,-17],[28,-4],[7,0],[23,7],[20,6],[9,-66],[-2,-20],[-4,-37],[0,-61],[3,-52],[20,-48],[18,-18],[38,-9],[32,-50],[24,-20],[12,-4],[36,-10],[53,-15],[12,-1],[2,-1],[43,-4],[50,-6],[-92,-98],[-57,-52],[-23,-88],[-38,-43],[-58,-27],[-78,0],[-72,0],[-84,0],[-56,-38],[-48,-57],[-101,31],[-74,40],[-43,14],[-73,36],[-63,40],[-93,108],[-48,85],[-23,67],[-32,82],[-31,98],[-77,110],[-88,96],[-42,33],[-43,29],[-64,22],[-51,3],[-75,-9],[-77,-48],[-81,-70],[-56,-135],[-29,-72],[-244,-189],[-71,-13],[-194,80],[-83,-7],[-50,11],[-32,8],[-17,39],[-54,-2],[-38,25],[-20,35],[-51,22],[-38,40],[-42,27],[-61,55],[-40,55],[-44,38],[-68,-27],[-33,17],[-22,9],[-25,16],[-31,25],[-22,28],[-3,3],[-17,25],[-9,5],[-19,11],[-5,44],[-27,45],[-24,43],[-6,61],[-7,28],[-5,22],[-22,20],[-13,12],[-8,2],[-30,6],[-62,0],[-93,-6],[-52,-9],[-35,17],[-38,37],[-40,28],[-47,25],[-43,19],[-28,26],[-14,30],[-32,6],[0,70],[23,101],[16,90],[-7,39],[-10,51],[-15,27],[-17,31],[-16,29],[-21,46],[-10,32],[0,32],[6,34],[9,38],[4,59],[-2,93],[17,72],[22,58],[21,30],[24,16],[26,18],[34,32],[0,47],[-38,38],[-24,2],[-32,3],[-21,2],[-26,18],[-22,16],[-14,25],[-17,31],[-13,70],[0,66],[3,75],[-23,35],[-43,18],[-45,19],[-23,10],[-23,45],[-1,2],[5,48],[26,53],[22,26],[19,22],[31,40],[28,38],[17,21],[39,40],[28,1],[9,-31],[12,-41],[8,-39],[20,-20],[29,0],[40,12],[32,28],[28,42],[10,31],[0,35],[-14,53],[-21,22],[-42,-12],[-27,-20],[-27,-19],[-21,8],[-22,24],[-37,39],[6,47],[5,34],[12,39],[10,32],[18,58],[-3,50],[-3,73],[-24,12],[-25,13],[-24,25],[10,56],[40,19],[21,-2],[22,-2],[21,-2],[29,15],[19,17],[-2,53],[-42,25],[-39,-25],[-40,-25],[-41,25],[-15,79],[-7,54],[-6,44],[-18,30],[-15,24],[-17,44],[-22,55],[-17,43],[-18,34],[-23,30],[-30,18],[-36,19],[-23,18],[-25,23],[-38,51],[2,62],[-7,42],[-11,27],[-20,44],[-20,24],[-33,14],[-28,27],[-36,20],[-25,2],[-38,-7],[-21,-7],[-22,-7],[-34,-2],[-24,21],[5,23],[2,2],[65,29],[8,4],[50,43],[3,3],[24,34],[3,28],[5,47],[-8,62],[-19,39],[-3,7],[-8,16],[-22,20],[-21,9],[-33,23],[-5,4],[-4,4],[-26,26],[-17,17],[-29,28],[-33,63],[-30,82],[-10,54],[8,59],[28,50],[39,36],[120,56],[1,0],[29,31],[3,3],[1,11],[2,15],[1,9],[-8,13],[-39,69],[-12,22],[37,200],[6,47],[6,14],[1,2],[1,2],[18,17],[13,1],[17,-2],[63,-10],[2,-1],[14,-2],[5,4],[29,21],[16,25],[7,59],[-8,37],[-26,38],[-57,23],[-13,23],[2,15],[7,7],[14,12],[0,1],[84,19],[6,-1],[22,-5],[4,1],[74,20],[45,87],[15,13],[13,5],[3,0],[21,-5],[1,0],[42,-36],[13,-3],[9,-2],[17,17],[2,40],[-21,36],[-39,36],[-15,31],[-8,37],[5,43],[29,30],[65,19],[36,29],[21,44],[5,39],[-20,100],[-35,58],[-20,35],[-2,2],[-7,22],[0,5],[-2,23],[10,77],[20,145],[3,72],[-19,79],[-18,32],[-20,16],[-43,-43],[-1,-1],[-13,-9],[-21,-15],[-22,6],[-26,7],[-6,2],[-20,16],[-6,9],[0,1],[-7,12],[-5,17],[7,31],[50,56],[2,2],[0,6],[8,64],[-5,33],[-14,38],[-2,8],[-14,40],[-3,56],[10,75],[8,46],[2,60],[-10,22],[-13,2],[-15,-18],[-25,-30],[-23,-7],[-12,4],[-9,4],[-13,23],[-27,85],[2,13],[5,22],[1,7],[44,48],[3,5],[12,20],[20,60],[21,39],[26,27],[32,10],[9,8],[5,5],[5,15],[6,47],[-15,83],[-10,18],[-23,8],[-1,1],[-2,-2],[-27,-25],[-5,1],[-22,5],[-14,15],[-89,94],[-3,4],[-20,31],[-1,1],[-23,103],[-6,23],[-7,13],[-9,16],[-7,12],[-33,14],[-5,-4],[-55,-42],[-10,-8],[1,-5],[5,-74],[1,-8],[9,-61],[0,-3],[-9,4],[-6,3],[-5,0],[-38,-3],[-1,0],[-1,-1],[-34,-43],[-17,-22],[-1,-7],[-8,-35],[-1,-1],[-13,-12],[-90,-36],[-8,-4],[-15,-6],[-5,1],[-5,1],[-14,3],[-11,14],[-12,31],[7,34],[21,16],[43,-12],[9,2],[5,4],[20,18],[4,4],[2,20],[6,56],[1,12],[0,4],[-10,52],[-93,39],[-23,16],[-10,19],[-4,24],[13,106],[-3,20],[-24,37],[-25,16],[-10,7],[-7,0],[-9,-1],[-32,23],[-29,42],[0,3],[1,1],[9,42],[4,19],[-8,14],[-2,2],[0,2],[-10,-3],[-13,-5],[-6,1],[-46,10],[-16,3],[-21,8],[-6,8],[-10,15],[1,13],[1,3],[6,5],[5,5],[3,3],[24,9],[19,6],[3,3],[21,17],[24,39],[4,7],[2,22],[3,41],[-17,43],[-4,3],[-48,32],[-50,58],[-68,128],[-3,6],[-26,25],[-15,8],[-8,5],[-5,3],[-19,10],[-23,30],[1,4],[5,23],[19,29],[11,15],[6,15],[23,58],[7,20],[3,16],[17,121],[3,18],[-4,21],[-11,62],[-10,26],[-20,36],[-21,35],[-13,24],[-81,108],[-26,45],[-11,18],[-42,113],[-50,86],[-12,16],[-66,87],[-11,21],[-33,61],[-25,48],[-87,151],[-2,3],[-5,8],[-46,69],[-7,11],[-3,4],[1,13],[7,77],[0,20],[-3,5],[-5,9],[3,6],[1,1],[-5,23],[-11,52],[-9,37],[-22,88],[-1,2],[0,1],[0,1],[-16,66],[0,3],[5,43],[7,6],[20,8],[8,4],[19,8],[10,5],[70,54],[25,23],[3,7],[13,22],[5,42],[1,5],[-1,3],[-3,22],[-3,20],[-2,4],[-14,23],[-20,20],[-10,2],[-20,4],[-6,-3],[-5,-3],[-10,1],[-30,4],[-3,0],[-1,1],[-21,27],[4,56],[1,7],[10,48],[6,5],[51,44],[2,2],[5,-10],[5,-8],[0,-1],[98,-85],[0,2],[-9,114],[3,15],[3,14],[2,9],[4,4],[20,15],[15,-2],[1,-1],[3,-2],[16,-12],[23,-18],[7,-5],[5,2],[12,4],[3,2],[1,2],[12,31],[5,15],[-46,81],[2,47],[0,1],[2,3],[2,4],[12,11],[6,5],[50,14],[9,3],[41,37],[0,6],[5,93],[0,3],[-24,8],[-5,-1],[-11,-2],[-53,-11],[-53,14],[-5,1],[-12,11],[-85,73],[-100,126],[-20,26],[-19,33],[-12,21],[-24,32],[-92,124],[-27,36],[-75,83],[-72,124],[-53,93],[-37,55],[-3,5],[-2,2],[-11,15],[-77,97],[-58,63],[-26,41],[-5,7],[0,3],[0,33],[-1,46],[-5,30],[-3,3],[-19,29],[-43,32],[-10,18],[-6,9],[-14,59],[-1,44],[8,43],[33,37],[16,9],[1,0],[4,-1],[43,-4],[11,9],[14,11],[3,2],[1,13],[2,31],[1,15],[-10,46],[-4,7],[-14,29],[-26,17],[-46,9],[-1,0],[-110,20],[-66,11],[-35,-5],[-3,3],[-37,33],[-262,236],[-120,108],[-2,2],[-140,109],[-41,33],[-1,2],[-12,20],[3,72],[16,34],[14,28],[9,77],[1,9],[-2,60],[-4,9],[-9,17],[-5,9],[-4,1],[-45,9],[-24,13],[-1,2],[-31,44],[-3,25],[4,31],[32,57],[2,4],[2,4],[0,3],[5,40],[-3,21],[-12,34],[-19,34],[-4,6],[-14,9]],[[51220,1631],[52,-79],[52,-13],[66,52],[95,5],[1,-21],[5,-93],[-84,-28],[-77,-13],[-70,-21],[-125,-58],[-43,-31],[-76,-53],[-75,32],[-72,97],[0,89],[7,38],[92,134],[32,-24],[58,-18],[52,40],[42,6],[19,2],[46,-39],[3,-4]],[[52386,2948],[-2,-100],[-21,-81],[-2,-93],[-1,-64],[-23,-61],[-66,-93],[-25,-84],[-62,-116],[-34,-60],[-35,-68],[-57,-65],[-58,-63],[-69,-79],[-42,-72],[-45,-75],[-26,-55],[-29,-53],[-30,-62],[-38,-76],[-36,-76],[-34,-52],[-63,-36],[-26,78],[-2,77],[-13,61],[-34,69],[-59,-6],[-81,-8],[-46,-35],[-55,35],[-38,74],[-40,31],[-55,-9],[-49,-13],[-43,-9],[-9,57],[87,144],[55,70],[20,118],[17,131],[-1,4],[-27,73],[-7,19],[-52,131],[3,79],[38,78],[26,96],[23,62],[6,17],[30,47],[46,72],[67,-24],[46,-15],[6,-1],[41,-7],[60,2],[47,17],[44,28],[68,70],[52,74],[48,111],[40,46],[85,72],[88,52],[194,101],[85,27],[72,-5],[50,-10],[40,-47],[53,-112],[-5,-149],[-67,-94],[-30,-95]],[[51414,3642],[50,-8],[39,-21],[22,-51],[-27,-32],[-42,-51],[-46,-46],[-35,-36],[-65,-74],[-24,-34],[-61,-87],[-11,-56],[-17,-84],[52,-65],[31,-53],[-74,-113],[-44,-69],[-23,-62],[-14,-48],[-32,-63],[-6,-11],[0,-74],[0,-66],[-46,-30],[-168,52],[-108,37],[-33,11],[-34,19],[-79,42],[-87,31],[-17,39],[29,31],[144,48],[168,70],[107,105],[20,48],[17,43],[0,83],[-69,75],[-29,13],[-29,56],[2,37],[1,11],[61,69],[9,10],[66,66],[52,0],[43,-40],[15,-48],[29,-43],[34,-27],[38,13],[10,52],[7,36],[-6,105],[-1,44],[-1,30],[-3,61],[-32,48],[-41,4],[-37,0],[-29,0],[-6,9],[-14,22],[9,18],[11,21],[48,16],[4,2],[43,13],[49,0],[29,-31],[82,-51],[69,-16]],[[53119,3575],[-94,-14],[29,125],[56,93],[45,92],[46,83],[61,65],[23,24],[-9,-130],[-15,-107],[-10,-24],[-19,-47],[-31,-58],[-5,-11],[-77,-91]],[[53087,4199],[-92,-20],[95,131],[40,54],[15,17],[56,61],[41,43],[59,38],[-42,-95],[-99,-142],[-73,-87]],[[51813,5818],[-49,-47],[-17,35],[-23,46],[24,110],[41,46],[56,-18],[-6,-101],[-26,-71]],[[53633,6586],[-51,-31],[-63,0],[1,32],[2,42],[23,54],[66,78],[34,-31],[-1,-77],[-3,-19],[-8,-48]],[[54728,7338],[43,-107],[81,-40],[78,-73],[124,-172],[117,-143],[71,-98],[198,-132],[16,-24],[76,-34],[47,-78],[46,-70],[34,-43],[22,-46],[37,-17],[48,-80],[72,-188],[31,-72],[30,-85],[4,-102],[-22,-130],[-93,-102],[-66,-81],[-34,-40],[-46,-53],[-46,-53],[-55,12],[-15,-97],[-42,-53],[-55,-76],[-56,-120],[-42,-88],[-57,-81],[-56,-104],[-36,-66],[-83,-182],[-48,-91],[-111,-229],[-68,-123],[-66,-113],[-68,-98],[-91,-108],[-53,-64],[-56,-57],[-47,-48],[-89,-92],[-58,-49],[-68,-64],[-48,-59],[-128,-87],[-47,-32],[-51,-28],[-42,-33],[-44,-33],[-54,-27],[-57,-42],[-86,-65],[-71,-53],[-111,-80],[-73,-39],[-69,-30],[-54,-36],[-52,-38],[-70,-26],[-61,-87],[-70,-62],[-63,-63],[-93,-79],[-81,-41],[-110,-10],[-76,40],[-46,52],[-45,70],[-3,61],[45,144],[31,56],[17,40],[15,34],[7,15],[10,37],[19,66],[37,69],[28,102],[52,89],[48,28],[40,24],[19,99],[3,4],[60,99],[68,59],[57,42],[93,87],[61,93],[31,76],[4,11],[19,63],[9,101],[7,66],[22,133],[44,74],[34,50],[33,68],[7,14],[30,81],[38,59],[85,39],[-38,33],[-5,5],[-88,-41],[-76,-110],[57,201],[25,154],[12,115],[5,89],[9,68],[5,37],[7,51],[6,43],[3,135],[9,66],[9,62],[-40,141],[-8,22],[-43,123],[20,139],[47,37],[28,22],[50,4],[39,6],[67,-23],[47,-6],[34,-9],[54,15],[46,23],[46,46],[21,25],[43,50],[3,99],[46,97],[40,12],[-10,-75],[-12,-79],[50,12],[14,3],[45,72],[24,105],[61,46],[43,49],[-11,75],[-25,78],[-23,100],[-30,111],[-52,84],[17,48],[35,48],[81,31],[-14,-61],[10,-78],[56,64],[7,86],[11,62],[19,58],[50,121],[50,78],[44,36],[54,-18],[41,73],[69,-1]],[[54327,7255],[50,-39],[33,6],[-24,-90],[-63,-83],[-50,-52],[-46,-51],[-54,-76],[-51,-50],[3,-26],[6,-68],[18,-70],[15,-32],[36,-80],[-3,-58],[-4,-69],[-22,-12],[-58,-33],[6,-24],[13,-51],[-71,-27],[-9,121],[-56,-11],[-9,-104],[36,-49],[-26,-56],[-26,-54],[-60,-110],[-63,-85],[-55,29],[-41,21],[-18,-4],[-77,-17],[-46,-2],[-5,0],[-28,-15],[-30,-20],[-19,-12],[-56,-37],[-40,-31],[-27,69],[17,102],[5,14],[24,65],[14,39],[39,113],[13,33],[28,73],[58,30],[32,43],[13,61],[33,68],[44,103],[3,5],[-28,76],[-37,47],[10,70],[1,9],[13,99],[76,-19],[70,-33],[17,20],[42,47],[39,43],[-5,71],[-11,161],[25,84],[17,60],[46,77],[52,50],[5,-3],[47,-31],[49,-83],[71,-67],[49,-19],[50,-56]],[[52017,8433],[-56,-18],[-69,32],[-14,7],[-34,26],[-16,13],[37,45],[59,15],[51,-26],[84,-80],[-42,-14]],[[59863,9658],[56,-59],[69,-66],[-43,-60],[-32,-1],[-57,-2],[-81,-87],[-3,-25],[-5,-40],[-17,-68],[6,-95],[-12,-74],[-67,-55],[-6,-5],[-53,-45],[-53,-12],[-41,25],[-51,55],[-43,52],[-32,-15],[34,-47],[19,-27],[8,-9],[49,-56],[22,-3],[65,-12],[102,71],[27,18],[11,15],[42,53],[8,133],[12,129],[16,30],[14,27],[4,0],[24,2],[57,4],[27,8],[23,5],[45,27],[69,27],[35,-3],[13,0],[23,-29],[1,-2],[19,-24],[49,-79],[17,-51],[43,-78],[14,-24],[13,-20],[38,-56],[48,-117],[-37,-47],[-108,-47],[-59,-17],[-50,-15],[-28,-13],[-36,-16],[-85,-48],[-82,-41],[-6,-3],[-66,-34],[-65,-36],[-49,-39],[-54,-36],[-10,-9],[-39,-35],[-68,-28],[-12,-9],[-51,-41],[-55,-16],[-26,11],[-26,57],[-28,13],[-39,13],[-21,27],[-15,56],[-1,4],[-6,56],[-22,51],[-23,8],[3,-40],[3,-37],[6,-54],[13,-29],[16,-33],[15,-29],[23,-13],[30,-18],[41,-18],[-15,-124],[-110,-51],[-11,-2],[-59,-10],[-132,-83],[-205,-160],[-73,-60],[-93,-82],[-85,-77],[-49,-76],[-60,-61],[-119,-56],[-162,-80],[-59,-49],[-42,-35],[-87,-41],[-19,-5],[-17,-5],[-11,-4],[-31,-12],[-68,-11],[-59,-1],[-63,5],[-42,15],[-27,67],[40,1],[61,23],[-4,95],[-5,56],[4,44],[3,40],[5,32],[9,56],[63,65],[15,16],[12,13],[49,53],[64,72],[55,54],[46,53],[18,53],[70,92],[21,90],[38,84],[14,95],[45,63],[-49,51],[-5,27],[-12,65],[-6,66],[-5,61],[64,34],[64,15],[62,25],[72,43],[33,34],[5,6],[42,54],[8,13],[38,53],[53,-29],[47,15],[11,3],[-2,-9],[-12,-64],[-39,-68],[-55,-63],[-43,-40],[-46,-39],[-106,-153],[73,46],[34,21],[16,12],[31,22],[38,34],[37,33],[96,112],[53,16],[63,13],[6,7],[31,37],[56,9],[50,70],[58,66],[58,98],[65,68],[45,46],[27,32],[22,52],[29,29],[59,48],[81,29],[94,15],[22,-1],[82,-2],[60,14],[97,57],[64,-65]],[[54468,8503],[-14,-107],[-14,-11],[-62,-46],[-95,78],[-120,-5],[-37,56],[-69,20],[-24,7],[-126,198],[-24,70],[-4,13],[-52,162],[-28,120],[-74,66],[-63,79],[-54,79],[-14,77],[-19,61],[-42,66],[-52,71],[-15,24],[-27,42],[-30,68],[23,120],[62,6],[47,1],[67,-29],[43,-13],[49,-18],[93,-111],[70,-83],[69,-120],[72,-86],[47,-65],[45,-35],[46,-71],[17,-14],[56,-48],[28,-104],[130,-218],[81,-143],[0,-7],[14,-150]],[[59170,9617],[30,-33],[35,-11],[-4,-38],[-3,-39],[-44,-52],[-17,-12],[-33,-26],[-36,-47],[-91,-102],[-59,-43],[5,88],[80,56],[18,61],[-84,-9],[-46,70],[-67,-5],[36,-50],[7,-9],[-11,-71],[-31,-59],[-45,-29],[-46,53],[-56,34],[-53,-47],[-13,-15],[-20,-25],[-5,11],[-29,78],[-34,77],[50,25],[23,39],[5,7],[46,103],[-52,-11],[-27,-5],[-57,67],[77,41],[65,25],[47,24],[53,38],[71,48],[81,56],[37,6],[32,6],[11,-1],[31,-2],[50,-66],[27,-91],[17,-57],[29,-58]],[[59288,9619],[-38,-12],[-51,29],[-26,29],[-17,54],[-21,63],[-26,113],[22,63],[24,22],[14,13],[22,21],[24,24],[40,21],[29,16],[36,48],[7,9],[9,17],[18,36],[48,40],[176,-30],[92,-66],[53,-54],[47,-114],[0,-95],[1,-16],[1,-48],[-46,-32],[-96,-43],[-120,-23],[-73,-18],[-42,-4],[-24,-11],[-25,-23],[-34,-12],[-24,-17]],[[59660,10210],[-35,-6],[-62,34],[-101,54],[-54,4],[14,134],[67,47],[46,109],[12,-72],[35,-24],[7,-45],[7,-13],[21,-42],[16,-70],[27,-110]],[[51943,10751],[37,1],[21,-16],[2,-4],[22,-37],[81,24],[11,4],[69,97],[51,60],[32,-46],[32,-54],[33,-74],[51,-85],[14,-28],[31,-64],[12,-28],[22,-48],[6,-53],[46,-52],[51,-49],[69,-76],[-9,-1],[-57,-11],[-49,10],[-15,3],[-16,4],[-40,9],[-60,26],[-46,41],[-56,51],[-25,-16],[-34,-21],[-2,-1],[-26,-66],[-12,-32],[84,54],[88,-81],[46,-26],[31,-15],[15,-7],[18,-4],[40,-9],[72,-2],[39,6],[10,2],[58,4],[77,6],[42,-11],[18,-28],[23,-35],[0,-4],[6,-62],[47,-29],[17,-62],[2,-79],[14,-35],[15,-37],[42,-60],[23,-55],[68,-38],[37,-45],[21,-28],[34,-53],[21,-83],[19,-94],[40,-105],[-2,-100],[-55,-34],[-19,-35],[-14,-28],[-60,-15],[-39,-138],[-28,-123],[-13,-55],[10,-39],[12,-52],[3,-123],[8,-108],[12,-107],[-24,-65],[-62,-83],[-113,-51],[-85,0],[-33,-1],[-50,21],[-2,1],[-53,30],[-49,22],[-124,99],[-5,4],[-122,111],[-66,67],[-87,93],[-57,81],[44,80],[72,72],[-88,-6],[-36,-45],[-47,-21],[-8,-3],[-62,34],[-59,20],[-43,10],[-76,14],[2,-66],[-5,1],[-50,9],[-46,51],[-42,53],[-12,68],[-35,25],[-12,8],[-19,71],[0,19],[0,42],[23,79],[6,75],[52,42],[40,66],[-78,25],[-5,18],[-14,56],[-1,1],[-116,4],[-52,61],[-40,74],[-49,76],[-53,75],[-68,40],[-64,-23],[6,-5],[29,-24],[32,-26],[24,-30],[39,-50],[31,-54],[35,-75],[41,-65],[47,-72],[6,-10],[7,-15],[31,-69],[0,-18],[0,-63],[28,-68],[-3,-39],[-2,-41],[-19,-59],[-11,-34],[4,-89],[15,-99],[32,-86],[46,-95],[43,-40],[24,-23],[10,-3],[113,-34],[63,-54],[60,-7],[146,25],[89,-18],[56,-69],[46,-58],[30,-37],[18,-21],[16,-22],[16,-21],[9,-44],[3,-18],[45,11],[64,-82],[62,-20],[109,-53],[63,-50],[38,11],[61,-1],[47,2],[45,11],[81,27],[64,49],[48,55],[35,70],[45,79],[15,58],[26,112],[7,97],[-1,22],[0,62],[1,35],[2,41],[7,63],[0,4],[12,101],[24,67],[77,104],[77,18],[2,-1],[42,-16],[77,-99],[36,-70],[-2,-23],[-3,-39],[55,-119],[34,-62],[9,-17],[36,-61],[0,-1],[25,-60],[41,-74],[7,-16],[26,-56],[96,-174],[3,-115],[-13,-144],[64,-10],[3,-97],[49,-52],[6,-57],[5,-43],[-71,-46],[-49,-71],[-48,-119],[53,-270],[-74,-16],[-31,15],[-57,30],[-92,10],[-67,-34],[-17,-77],[14,-63],[-29,-103],[-58,-89],[-40,-9],[-6,59],[-6,59],[-7,30],[-17,73],[-45,39],[-12,11],[-37,39],[-33,-84],[17,-7],[51,-21],[6,-88],[5,-59],[4,-47],[46,-82],[1,-5],[19,-77],[5,-97],[-22,-103],[-51,-141],[-59,-73],[-7,-9],[-14,-15],[-30,-35],[35,-58],[-2,-26],[-4,-38],[15,-80],[15,-86],[31,-88],[36,-91],[20,-50],[14,-61],[9,-38],[5,-43],[8,-62],[27,-83],[-27,-84],[-42,-75],[-16,28],[-22,38],[-68,53],[-26,21],[-44,34],[-39,35],[-87,-1],[-36,96],[-4,70],[-1,11],[-1,93],[-45,-32],[-19,-54],[31,-103],[24,-90],[-46,-20],[-8,-3],[-7,-3],[-57,-21],[-47,-11],[-33,19],[-28,24],[-13,11],[-22,14],[-38,24],[-39,33],[-52,51],[-44,72],[-60,27],[-27,14],[-14,8],[-25,11],[-34,15],[-53,6],[-15,1],[-22,2],[-42,4],[-7,1],[-80,-13],[-81,-16],[-128,-40],[-69,-16],[-39,-30],[-49,-45],[-89,-50],[-38,-15],[-75,8],[-16,87],[39,73],[56,26],[40,14],[77,48],[52,88],[37,89],[11,136],[-39,100],[-79,65],[-55,20],[-88,5],[-64,-15],[-43,-13],[-62,-28],[-70,-62],[-72,48],[-79,6],[-73,2],[45,-97],[61,-30],[71,-41],[68,16],[65,49],[74,53],[73,9],[12,-64],[8,-94],[-34,-100],[39,-46],[-81,-28],[-52,-40],[-7,119],[-41,-143],[9,-78],[-27,-113],[-36,-143],[69,-69],[55,90],[79,-30],[55,-15],[29,-31],[-28,-65],[-61,-54],[-52,-21],[41,-71],[-6,-53],[-33,-42],[-21,-61],[-32,-69],[-46,-95],[45,19],[2,0],[13,5],[18,36],[16,32],[31,56],[45,77],[3,3],[4,10],[32,68],[66,96],[23,77],[38,38],[87,51],[30,65],[38,35],[68,35],[72,13],[50,-8],[46,-43],[-21,-87],[5,-114],[4,-61],[4,-64],[3,-72],[30,-81],[6,45],[7,51],[-14,152],[0,116],[-1,34],[28,96],[52,-21],[59,-24],[75,-37],[74,-27],[44,-45],[65,-37],[51,-41],[52,-33],[3,-2],[64,-42],[41,-23],[13,-8],[48,-18],[51,-20],[45,-11],[39,-10],[5,0],[47,-4],[61,2],[52,0],[87,-51],[57,-108],[-14,-87],[-68,-80],[-28,-25],[-70,-60],[-38,-37],[-64,-63],[-169,-210],[-58,-40],[-74,-65],[-71,-34],[-31,-92],[-42,-75],[-52,-44],[-36,-72],[-23,-105],[-38,-85],[-34,14],[-54,32],[-63,7],[-70,-48],[-67,-16],[-69,-23],[-40,70],[0,33],[-3,171],[-18,54],[-8,25],[-54,39],[26,-82],[8,-129],[-19,-53],[25,-125],[-48,-50],[-14,-26],[-28,-48],[-72,-47],[-21,-15],[-52,-40],[-57,-60],[-65,-38],[-14,-38],[-10,-25],[-75,-114],[-4,-7],[-23,-44],[-61,-91],[-88,-12],[-63,28],[-10,5],[-114,93],[18,67],[121,146],[96,119],[53,71],[2,4],[15,65],[7,29],[-22,54],[-46,46],[-55,33],[-55,22],[-12,-1],[-23,0],[-95,32],[-55,31],[-73,0],[-69,-27],[-23,-65],[0,-66],[26,-30],[52,-18],[52,0],[19,-108],[7,-40],[4,-46],[5,-63],[-15,-31],[-32,57],[-30,58],[-10,20],[-58,22],[-63,0],[-49,-39],[-67,-74],[-46,-44],[-4,-39],[-5,-39],[18,-57],[17,-44],[-19,-12],[-16,-10],[-75,-30],[-55,-48],[-28,-38],[-27,-37],[-46,18],[-14,52],[0,88],[-8,35],[-7,30],[-55,26],[-49,0],[-30,-41],[-7,-11],[-35,-52],[-29,0],[-12,10],[-40,33],[-32,17],[-17,9],[-10,-2],[-45,-11],[-52,-105],[-23,-78],[-6,-20],[-14,-49]],[[53036,11512],[0,-112],[-9,1],[-34,5],[-37,67],[-38,62],[-3,5],[3,64],[84,22],[34,-114]],[[52542,11722],[50,-4],[70,-7],[80,-45],[33,-72],[35,-77],[42,-61],[20,-82],[28,-70],[9,-24],[24,-61],[51,-60],[-31,-163],[-5,-33],[-6,-40],[66,57],[28,68],[83,33],[61,-32],[38,-86],[15,-50],[14,-48],[42,-92],[17,-47],[5,-14],[32,-96],[10,-99],[12,-61],[5,-26],[27,-95],[30,-118],[3,-19],[19,-94],[10,-80],[-1,-94],[-45,-61],[-23,-85],[-43,-26],[-37,-88],[-46,-14],[-49,35],[-13,10],[-39,30],[-38,28],[-27,42],[-13,52],[-28,62],[-18,66],[-6,24],[-7,19],[-25,70],[-47,96],[-61,95],[-52,52],[-84,44],[-33,-24],[-61,24],[-65,41],[-50,76],[-39,96],[-2,6],[-43,63],[-36,42],[-52,105],[-26,131],[-4,72],[-18,83],[2,76],[1,37],[36,-16],[4,-2],[26,-15],[52,26],[80,45],[-30,24],[-24,19],[-9,13],[-18,23],[-34,23],[-25,63]],[[60878,11466],[15,-77],[-72,61],[-21,-123],[3,-30],[7,-70],[-62,-61],[-40,-18],[-20,-19],[-15,-12],[-13,-18],[-17,-22],[-21,-53],[-10,-46],[-14,-18],[-18,-25],[-45,-68],[-47,-86],[-33,-61],[-10,-50],[-4,-18],[2,-62],[6,-74],[-1,-45],[-1,-19],[5,-28],[3,-16],[23,31],[0,3],[8,74],[-19,71],[0,52],[17,56],[39,86],[38,80],[51,56],[25,64],[18,65],[35,49],[8,9],[32,34],[96,29],[61,-65],[-9,-66],[-72,-319],[-21,-95],[-60,-186],[-44,-153],[-54,-184],[-80,-312],[-57,-125],[-32,-82],[-75,-101],[-69,-57],[-54,84],[-65,70],[-12,13],[-96,64],[-42,38],[-10,9],[-57,38],[-42,22],[-22,12],[-25,13],[-47,25],[-3,111],[-30,90],[-31,62],[-52,76],[-13,19],[-31,46],[-9,64],[-25,75],[-12,56],[-1,9],[-12,79],[32,40],[65,-21],[-1,-144],[67,-59],[80,39],[10,53],[7,35],[28,19],[27,17],[6,46],[8,60],[-49,-23],[-19,-9],[-8,78],[-28,93],[63,101],[24,56],[12,29],[51,3],[42,-10],[68,-8],[27,61],[54,55],[8,49],[2,14],[30,74],[26,82],[43,80],[47,36],[44,50],[25,59],[32,50],[12,19],[61,71],[48,39],[11,97],[53,70],[14,4],[56,16],[67,-38],[33,-20],[26,-86],[24,-100],[7,-28],[20,-80]],[[55713,11906],[6,-38],[-93,75],[-6,106],[58,-5],[16,-53],[10,-35],[9,-50]],[[55813,11949],[-21,-14],[-40,61],[-28,97],[2,35],[3,62],[54,31],[8,-102],[59,-51],[20,-79],[-57,-40]],[[52508,13273],[39,19],[10,2],[60,8],[28,-76],[-33,-79],[-1,-85],[7,-40],[11,-56],[23,-119],[29,-83],[9,-23],[24,-59],[24,-89],[8,-26],[13,-49],[6,-17],[18,-47],[1,-27],[3,-48],[24,-103],[-18,-58],[-10,-32],[1,-129],[36,-119],[-5,-65],[5,-108],[-58,15],[-16,5],[-10,41],[-14,52],[-41,-55],[-69,-32],[-57,34],[-54,53],[-69,-4]],[[53122,13968],[-15,-6],[-8,1],[-27,5],[-59,33],[-40,6],[27,80],[25,46],[34,116],[75,79],[67,16],[108,-91],[-2,-23],[-5,-75],[21,-94],[-46,-39],[-19,-17],[-14,-2],[-70,-14],[-52,-21]],[[59384,14028],[33,-80],[53,13],[61,21],[26,-1],[17,-1],[56,-18],[21,-6],[75,-45],[93,-59],[3,-20],[14,-75],[34,-68],[18,-35],[-14,-136],[-41,-62],[-64,-84],[-30,-74],[-106,-40],[-24,-6],[-23,-5],[-14,-1],[-38,-3],[-101,0],[-2,0],[-1,0],[-77,2],[-55,8],[-17,2],[-67,15],[-38,11],[-64,-5],[-40,-2],[-54,20],[-64,21],[-59,9],[-14,2],[-124,-2],[-11,-19],[-24,-41],[-23,32],[-15,21],[-67,-11],[-73,113],[-10,42],[-12,53],[3,43],[2,43],[0,34],[0,17],[-2,70],[-43,106],[-81,109],[-48,73],[0,65],[5,111],[13,139],[27,56],[43,49],[24,22],[15,13],[81,42],[26,8],[93,27],[90,-1],[72,-27],[47,-66],[34,-29],[55,-28],[14,-7],[8,-7],[65,-54],[78,-76],[44,-74],[40,-45],[59,-45],[27,-21],[35,-16],[36,-17]],[[56236,14510],[55,0],[66,0],[101,29],[73,28],[94,40],[64,15],[60,7],[70,14],[80,-17],[79,-21],[107,-46],[58,-50],[56,-70],[7,-11],[1,-2],[29,-57],[53,-72],[36,-44],[26,-53],[10,-71],[-16,-74],[54,29],[72,39],[134,-42],[62,-20],[49,7],[59,10],[101,23],[19,10],[36,19],[16,11],[47,29],[41,18],[83,37],[45,30],[40,-4],[8,-15],[25,-51],[25,-73],[14,-93],[9,-69],[40,-99],[43,-78],[18,-30],[34,-55],[-23,-34],[-30,-47],[-13,-19],[2,-7],[12,-60],[16,-87],[-54,-4],[-60,-2],[-4,-2],[-89,-54],[-71,-52],[-55,-38],[-122,-53],[-74,-22],[-20,-7],[-100,-29],[-57,-67],[-63,-55],[-132,-47],[-160,-64],[-112,-14],[-11,63],[12,36],[14,44],[10,113],[-36,88],[-27,72],[-30,50],[-1,43],[-3,89],[-40,112],[-10,-63],[-6,-39],[10,-119],[2,-8],[23,-77],[28,-83],[-20,-48],[-5,-88],[-12,-119],[3,-67],[7,-25],[11,-44],[22,-108],[-14,-125],[-54,-43],[-32,-17],[-19,-10],[51,-48],[43,-13],[-22,-25],[-29,-33],[-84,-31],[-19,-6],[-39,-13],[-54,1],[-39,-18],[35,-59],[3,-80],[-2,-31],[-3,-50],[-39,-45],[-19,-21],[24,-100],[-17,-77],[-19,-62],[38,-122],[51,-97],[17,-108],[67,-9],[-24,79],[-7,33],[-12,50],[-11,51],[67,64],[29,59],[22,84],[-47,107],[4,131],[68,18],[82,36],[5,9],[43,78],[11,36],[19,58],[3,37],[8,69],[-12,76],[-1,2],[-4,117],[13,42],[9,28],[55,41],[1,0],[104,-18],[74,41],[78,50],[87,33],[1,0],[97,51],[69,46],[43,28],[74,5],[16,-25],[29,-44],[34,-52],[34,-36],[36,-27],[41,-21],[68,0],[77,-7],[-33,72],[-45,24],[-60,19],[-55,11],[-50,48],[-12,67],[27,41],[109,44],[16,6],[35,8],[16,5],[18,6],[64,-1],[69,-12],[63,-16],[57,-17],[30,-8],[54,-35],[67,-42],[70,-32],[55,-49],[-26,-112],[67,48],[64,80],[89,23],[80,-18],[64,-9],[98,-36],[72,-27],[69,-10],[39,-34],[-38,-43],[-11,-13],[-1,-17],[-5,-43],[62,42],[43,32],[42,27],[40,4],[34,3],[24,2],[59,3],[51,-26],[19,-9],[48,30],[84,4],[53,-69],[14,-18],[17,-27],[9,-14],[38,-58],[43,-91],[29,-90],[14,-107],[26,-118],[28,-83],[16,-64],[29,-95],[26,-91],[35,-132],[43,-53],[20,-24],[36,-66],[-10,-88],[-1,-6],[-25,-112],[-27,-90],[-32,-50],[-18,-39],[-11,-23],[-9,-18],[-19,-42],[-19,-83],[-34,-42],[-10,-14],[-24,5],[-84,18],[-81,-27],[51,105],[5,11],[28,65],[-14,97],[-5,18],[-17,56],[-38,44],[-14,16],[-52,-25],[-36,2],[-8,-26],[-11,-32],[19,-32],[23,-39],[15,-100],[-21,-18],[-41,-34],[-71,26],[-63,10],[-55,44],[-51,-22],[-75,-37],[-59,-18],[-68,-4],[-11,-13],[-51,-58],[-85,-87],[-23,-106],[64,39],[37,17],[60,7],[55,-18],[-91,-112],[-44,-16],[-25,-28],[-18,-21],[-22,-20],[-51,-46],[-71,-36],[-66,-40],[-47,69],[-44,-6],[2,-37],[2,-35],[-32,-41],[-38,-49],[-72,-63],[-15,21],[-24,35],[-47,-7],[-4,-4],[-58,-56],[54,-46],[-54,-18],[-19,-6],[-50,-59],[-43,-50],[-62,-67],[-60,-59],[-71,-58],[-81,-22],[-63,-46],[-65,-25],[66,-80],[22,-98],[46,28],[8,-100],[-1,-58],[21,-67],[36,-4],[9,-1],[8,-2],[46,-8],[47,-15],[20,-49],[21,-64],[3,-17],[10,-64],[36,-50],[21,-89],[-30,-56],[-10,-17],[-7,-7],[-66,-64],[-57,-42],[-65,-32],[-64,-8],[-59,-31],[-21,-27],[-12,-14],[-11,1],[-43,5],[-65,5],[-16,1],[-14,-1],[-43,-4],[-89,-41],[-48,-41],[84,-16],[85,18],[92,1],[58,-52],[-26,-112],[-30,-103],[-30,-58],[-7,-13],[-14,-25],[-20,-36],[-50,-95],[-61,-104],[-50,-78],[-32,-37],[-34,-46],[-42,-43],[-13,-28],[-15,-30],[-31,-55],[-34,-80],[-37,-95],[0,-84],[-71,-70],[-59,-54],[-139,-130],[-30,-25],[-121,-103],[-109,-129],[-123,-122],[-89,-126],[-35,-30],[-47,-28],[-55,-30],[-28,-7],[-20,-5],[-60,18],[-48,35],[-27,24],[-9,8],[-84,37],[-46,81],[-23,91],[5,65],[1,11],[5,57],[9,175],[15,49],[9,30],[21,44],[14,30],[-13,5],[-21,7],[-18,104],[-14,85],[-4,38],[-5,58],[14,102],[4,56],[15,73],[16,135],[-8,79],[-9,74],[-2,67],[5,74],[-5,68],[0,64],[-10,134],[-23,117],[-15,117],[-17,93],[-4,116],[-4,52],[-2,37],[-2,32],[2,32],[1,39],[12,93],[7,117],[-6,51],[-6,53],[1,57],[1,65],[-9,127],[50,140],[48,67],[34,38],[7,7],[4,4],[42,41],[87,95],[40,52],[36,104],[48,-42],[34,-30],[5,58],[7,68],[27,52],[9,16],[-88,61],[-60,96],[7,-125],[-97,16],[6,-7],[55,-69],[-8,-23],[-20,-63],[-48,-32],[-80,-9],[40,-83],[-74,-61],[-48,-20],[-46,-58],[-43,-90],[-41,-95],[-64,-81],[-27,-82],[-47,-16],[-39,72],[-34,28],[-66,65],[-70,1],[-53,75],[-54,66],[16,96],[1,148],[38,124],[5,14],[8,23],[8,21],[-6,86],[6,36],[7,38],[0,1],[0,91],[-13,79],[-22,92],[-35,78],[2,4],[34,96],[51,138],[-2,57],[6,103],[-8,106],[-29,114],[-14,76],[98,30],[-12,58],[-23,91],[2,0],[54,14],[62,-19],[-17,108],[74,32],[-44,59],[29,74],[56,119],[65,36],[-33,64],[-27,50],[84,-19],[26,-69],[56,-46],[2,117],[-39,110],[-92,34],[-45,10],[-58,54],[22,90],[17,86],[-9,-11],[-42,-48],[-29,62],[-14,29],[-2,5],[-19,44],[-28,105],[-46,-25],[-91,40],[-76,1],[-26,10],[-68,28],[-32,-7],[-11,-2],[-2,-1],[-11,-4],[-42,-17],[-46,85],[-23,133],[-9,41],[-5,27],[-5,46],[-6,55],[1,33],[1,37],[-18,103],[-8,29],[-12,46],[18,121],[15,71],[15,82],[49,-4],[5,40],[11,91],[-37,88],[58,58],[54,19],[50,48],[0,1],[15,56],[-1,82],[39,49],[88,28],[70,-7],[72,-42],[69,-31],[74,-37],[92,-24],[38,0]],[[54333,15736],[73,-44],[55,-34],[45,-19],[30,0],[84,0],[71,-16],[95,-71],[74,-46],[53,-23],[96,-44],[95,-54],[52,-29],[81,-4],[93,4],[62,-64],[102,-33],[110,-57],[21,-82],[8,-31],[97,-43],[8,-8],[37,-40],[29,-49],[3,-51],[0,-17],[-62,-25],[43,-115],[-77,-49],[-10,-4],[-87,-34],[-69,-11],[-17,-3],[47,-43],[13,-21],[23,-38],[-22,-77],[-51,15],[-86,-15],[-3,-69],[-19,-79],[-2,-7],[-40,-72],[32,-55],[28,-48],[-47,-91],[3,-77],[-5,-100],[-1,-26],[-3,-50],[16,-72],[7,-74],[3,-30],[-2,-94],[0,-9],[-3,-55],[-22,-36],[-18,-31],[22,-75],[4,-13],[-36,-20],[-25,-14],[-61,5],[17,-72],[-4,-5],[-40,-50],[-48,-117],[90,32],[24,26],[13,14],[18,23],[27,33],[56,8],[11,1],[17,-13],[112,-87],[70,-21],[7,-2],[24,1],[59,4],[93,18],[84,-32],[30,-76],[20,-75],[3,-32],[8,-94],[19,-46],[8,-18],[29,-84],[5,-69],[1,-21],[2,-89],[-72,-55],[-79,-37],[-10,-4],[-78,43],[-116,63],[-46,0],[-38,-29],[-26,-69],[-19,-74],[-14,-90],[-15,-109],[12,-89],[32,-95],[25,-68],[64,-69],[90,-92],[13,-138],[-20,-86],[-53,-156],[0,-63],[0,-69],[10,-84],[14,-64],[16,-102],[-1,-112],[-37,-53],[-44,-86],[-24,-106],[-17,-59],[-58,-7],[-46,-2],[-52,31],[-74,87],[-63,85],[-32,32],[-40,42],[-75,39],[-71,-60],[-25,-47],[-37,3],[-12,1],[-57,-19],[65,-58],[48,-3],[81,10],[57,0],[73,-30],[72,-86],[49,-53],[6,-3],[42,-22],[14,-32],[6,-16],[43,-9],[30,-36],[34,-42],[41,-46],[42,-68],[40,-82],[30,-36],[46,-35],[26,-45],[6,-10],[54,-63],[43,-67],[31,-81],[22,-58],[20,-80],[13,-79],[8,-60],[25,-48],[0,-1],[11,-112],[-13,-70],[-8,-62],[-1,-9],[-17,-106],[5,-59],[6,-81],[-22,-78],[-4,-56],[-9,-128],[-4,-99],[-1,-18],[1,-30],[2,-58],[1,-31],[2,-48],[-3,-98],[-7,-30],[-16,-69],[-87,-18],[-94,43],[-44,20],[-4,1],[-170,86],[-175,172],[-104,186],[-99,150],[-104,271],[-236,321],[-6,60],[20,63],[5,17],[15,49],[26,53],[13,26],[-43,0],[-42,1],[-4,-7],[-30,-45],[-13,-65],[-36,17],[-20,9],[-67,84],[-54,81],[-39,66],[-65,104],[65,55],[53,46],[9,39],[6,24],[-160,-59],[-23,-24],[-27,-28],[-15,-44],[-12,-33],[-47,11],[-20,25],[-9,12],[-12,21],[-15,26],[-28,77],[-21,93],[-15,53],[-19,65],[-50,-41],[-69,46],[-54,55],[-72,130],[-43,80],[-39,54],[-36,85],[-10,33],[-10,33],[-9,19],[-20,43],[-30,70],[-34,110],[-23,68],[-8,22],[-4,13],[-7,21],[-24,76],[-41,100],[-25,77],[-8,24],[-34,132],[-4,17],[-26,101],[-62,91],[-17,69],[-6,22],[-35,87],[-24,98],[-45,185],[-30,95],[-31,73],[-19,64],[-34,66],[-61,101],[-24,95],[-9,106],[-20,131],[-25,173],[-19,169],[-16,77],[-26,120],[-19,99],[-33,104],[-17,63],[13,88],[46,31],[104,14],[44,19],[51,26],[62,42],[75,-11],[53,102],[-6,76],[-30,78],[42,56],[62,62],[39,95],[8,75],[3,72],[-16,82],[-22,90],[-2,84],[34,89],[31,28],[25,22],[53,125],[0,91],[0,46],[-25,101],[-7,71],[33,61],[59,33],[105,18],[61,29],[14,6],[60,75],[81,123],[60,-17],[59,7],[54,65],[62,7],[74,-48],[23,-15]],[[57700,15802],[21,-96],[-141,75],[-72,50],[-75,115],[10,42],[9,38],[28,47],[10,47],[71,2],[37,-7],[11,-2],[58,-51],[49,-67],[-7,-42],[-7,-37],[-2,-114]],[[57861,16606],[-17,-13],[-7,-5],[-46,-102],[82,22],[77,70],[28,14],[27,14],[34,-25],[-26,-82],[-44,-95],[-16,-98],[3,-13],[27,-116],[32,-33],[24,-24],[17,-3],[26,-4],[50,17],[55,48],[36,65],[29,97],[9,58],[2,101],[-2,79],[39,22],[20,-50],[10,-29],[10,-42],[15,-59],[13,-83],[43,-152],[31,-90],[9,-27],[6,-26],[19,-80],[15,-131],[3,-27],[15,-117],[12,-57],[14,-68],[14,-41],[13,-40],[52,-110],[22,-47],[30,-65],[61,-76],[54,-41],[94,-50],[14,-3],[75,-19],[12,-39],[12,-42],[-52,-8],[-15,-3],[-55,-35],[-46,-16],[-296,1],[-91,-11],[-39,-23],[-12,-8],[-43,-7],[-124,-20],[-39,43],[-31,103],[-15,168],[-45,152],[-69,113],[-35,56],[14,28],[22,43],[-70,43],[-34,50],[-60,34],[6,19],[19,65],[-41,137],[-13,34],[-25,66],[-28,94],[-60,30],[-75,79],[-56,152],[-76,154],[-1,27],[-2,56],[-117,104],[-54,52],[-19,19],[-52,-22],[-26,-10],[-21,-8],[-23,-62],[-17,-44],[60,34],[60,34],[41,-31],[54,-65],[33,-88],[12,-16],[20,-29],[63,-139],[18,-69],[-28,-60],[-48,-67],[-24,-36],[-4,-7],[-27,-74],[-3,-43],[-4,-43],[42,-76],[31,-94],[-18,-13],[-18,-14],[-55,20],[-58,119],[-19,13],[-46,32],[-71,68],[-102,92],[-56,43],[-22,13],[-18,11],[-54,17],[-90,38],[-107,56],[-59,70],[-112,89],[-24,15],[-56,34],[-104,83],[-57,5],[-31,52],[-7,69],[-1,15],[43,85],[-47,-11],[-18,-5],[-55,-21],[-57,54],[-49,75],[-53,28],[-17,9],[19,-122],[44,-46],[2,-3],[38,-71],[48,-43],[53,-53],[74,-67],[51,-31],[62,-34],[95,-68],[80,-66],[70,-52],[36,-42],[57,-67],[49,-50],[58,-5],[54,-14],[65,-27],[58,-74],[29,-49],[73,-31],[91,-76],[58,-73],[56,-55],[57,-25],[62,4],[87,9],[7,-2],[44,-14],[28,-9],[39,-29],[16,-18],[39,-42],[79,-106],[89,-71],[54,-53],[28,-56],[-3,-33],[-4,-37],[5,-102],[-4,-98],[16,-113],[48,-89],[12,-23],[9,-15],[27,-45],[73,-68],[-50,-27],[-236,-18],[-74,-5],[-54,-22],[-9,-5],[-43,-23],[-90,3],[-49,53],[-9,107],[-47,58],[-41,14],[-61,63],[-68,70],[-75,34],[-88,58],[-51,28],[-8,5],[-26,12],[-68,31],[-80,-10],[-57,6],[-63,14],[-56,9],[-126,-33],[-139,-74],[-11,-5],[-115,-54],[-99,-41],[-82,23],[-60,99],[-38,82],[-45,75],[-42,-4],[-17,-1],[-43,48],[-24,27],[-51,38],[-11,5],[-1,0],[-48,20],[-192,47],[-32,5],[-112,18],[-46,30],[-94,60],[-50,18],[-91,-7],[-59,13],[-74,66],[-61,0],[-74,28],[-95,34],[-44,16],[-63,53],[-72,25],[-103,10],[-31,-18],[-78,65],[-87,42],[-23,17],[-44,32],[-6,4],[-44,28],[-59,2],[11,70],[18,63],[-17,24],[-31,44],[-25,69],[-8,63],[-2,18],[-59,76],[-3,0],[-32,-5],[-112,58],[-31,58],[-2,77],[8,49],[10,69],[24,93],[14,50],[-24,12],[-27,12],[-19,-71],[-39,-83],[4,-40],[5,-50],[1,-6],[-5,-71],[17,-87],[40,-71],[39,-42],[35,-63],[25,-57],[43,80],[35,-66],[9,-79],[32,-90],[-23,-73],[-37,-47],[-57,-2],[-65,-55],[-4,-12],[-42,-129],[-5,-10],[-38,-76],[-4,-2],[-47,-19],[-48,21],[-44,-10],[-78,-2],[-18,-14],[-27,-20],[-52,-66],[-37,0],[-34,0],[-32,-14],[-28,-12],[59,-34],[54,-12],[6,-68],[2,-22],[6,-65],[15,-122],[-22,-68],[-60,-50],[-42,-60],[-8,-12],[-3,-44],[-6,-79],[-2,-49],[-2,-53],[8,-42],[8,-40],[14,-127],[-30,-59],[-7,-13],[-64,45],[-65,12],[-73,7],[-81,-59],[-96,-75],[-67,-32],[-56,39],[-17,38],[-36,83],[-14,41],[-7,20],[-22,29],[-18,23],[-17,22],[-41,51],[-64,112],[-24,94],[-29,116],[0,26],[0,69],[26,39],[44,39],[14,58],[-6,76],[0,4],[-47,-90],[-58,-33],[-24,34],[-12,16],[-55,49],[-117,122],[-21,52],[-30,75],[64,109],[27,60],[38,133],[19,68],[7,73],[0,5],[6,57],[8,76],[-28,103],[-41,83],[8,57],[7,53],[40,92],[18,76],[7,90],[-6,79],[-12,39],[-7,22]],[[66121,15876],[-84,-29],[-56,49],[7,139],[27,68],[15,55],[31,28],[41,-49],[72,-38],[39,-46],[92,-125],[-79,-36],[-105,-16]],[[64220,18181],[4,-21],[-25,1],[-41,1],[-36,8],[-35,-18],[-41,-44],[-31,-37],[-40,-44],[-16,-30],[-16,-30],[-21,-41],[-1,-2],[-29,-42],[-32,-23],[-36,-8],[-135,24],[-10,122],[-20,73],[40,63],[49,51],[-25,52],[54,-7],[64,10],[35,-122],[41,3],[35,3],[24,26],[39,43],[49,32],[39,43],[6,104],[46,-6],[49,-106],[16,-78]],[[70732,19535],[-26,-45],[-120,63],[-19,42],[-6,56],[-3,24],[0,65],[29,0],[60,-6],[100,-53],[25,-55],[-22,-61],[-18,-30]],[[70493,18954],[-71,-31],[-74,20],[24,93],[69,57],[70,48],[60,20],[49,26],[39,52],[33,50],[39,100],[38,91],[41,41],[55,27],[71,17],[63,20],[1,0],[42,20],[45,23],[210,79],[142,76],[167,129],[114,112],[102,130],[55,69],[50,66],[179,233],[4,6],[44,-39],[47,-87],[5,-73],[-84,-58],[-48,-48],[-42,-57],[-36,-43],[-38,-39],[-41,-38],[-71,-46],[-63,-88],[-65,-62],[-56,-44],[-63,-53],[-59,-42],[-53,-33],[-57,-35],[-64,-39],[-55,-34],[-52,-33],[-52,-35],[-44,-30],[-44,-33],[-47,-32],[-4,-3],[-55,-31],[-74,-42],[-67,-52],[-49,-37],[-59,-47],[-55,-41],[-44,-41],[-63,-60],[-60,-57],[-49,-42]],[[71816,20325],[-71,-64],[-65,0],[-10,0],[-38,9],[-29,7],[-8,1],[-1,0],[-62,9],[-61,-80],[-3,-140],[-75,-21],[-53,96],[-43,3],[-35,3],[-2,-7],[-12,-58],[-15,-64],[-56,-177],[-133,-130],[-25,-27],[-8,-9],[-6,-3],[-24,-12],[-16,-8],[-84,-15],[-58,26],[-84,81],[-43,26],[-28,17],[-85,59],[-71,16],[-39,23],[-46,26],[7,75],[42,26],[5,3],[13,8],[75,-10],[22,-21],[60,-55],[88,-59],[96,59],[4,4],[6,5],[40,35],[36,32],[3,13],[34,120],[20,71],[80,58],[1,1],[338,102],[128,91],[103,113],[1,2],[34,85],[32,79],[7,43],[152,10],[42,-48],[15,-51],[-56,-152],[0,-167],[-39,-59]],[[71272,20454],[-202,-59],[-43,86],[64,150],[61,124],[19,78],[13,51],[10,24],[46,104],[82,135],[85,129],[44,26],[10,6],[35,20],[39,23],[8,-376],[-35,-171],[-15,-76],[-15,-29],[-74,-138],[-132,-107]],[[72537,21771],[-28,-106],[-39,-102],[-39,-89],[-26,-69],[-39,-101],[-32,-87],[-27,-79],[-26,-94],[-29,-79],[-46,-78],[-8,-64],[-12,-78],[-57,-62],[-70,53],[-65,75],[-37,-3],[-47,35],[-4,3],[-57,41],[-19,13],[-152,5],[-8,183],[34,80],[16,38],[-64,182],[93,-5],[49,48],[38,53],[19,28],[53,32],[47,22],[84,39],[51,37],[21,55],[15,63],[10,4],[47,17],[66,-56],[9,3],[33,10],[34,-38],[77,36],[-1,129],[40,109],[25,90],[49,61],[44,-130],[0,-123],[-22,-101]],[[73691,23283],[-32,-46],[-32,-4],[-30,-43],[-26,-10],[-21,0],[-20,20],[-16,15],[-35,18],[-54,-18],[2,-1],[36,-17],[19,-2],[9,-1],[25,-20],[15,-12],[23,-19],[28,-24],[47,78],[54,17],[4,-4],[24,-23],[-24,-119],[-57,-105],[-61,-49],[-56,-16],[-61,-30],[-43,-36],[-67,-60],[-54,-43],[-63,-48],[-67,-46],[-63,-22],[-71,-21],[-44,-9],[-40,16],[-47,24],[-71,11],[-59,48],[-43,65],[-50,67],[-41,46],[-1,89],[41,-13],[46,-40],[57,-55],[20,-13],[18,36],[54,50],[33,-54],[76,-86],[20,33],[12,19],[-60,83],[-19,73],[168,112],[-7,-56],[49,-7],[1,9],[2,65],[159,117],[87,39],[92,85],[40,-49],[32,-13],[12,-5],[68,25],[19,53],[3,7],[69,-39],[-29,-42]],[[73862,23440],[-74,-50],[-32,-31],[-54,73],[-63,0],[-4,-18],[-15,-60],[-23,-18],[-59,0],[2,32],[31,32],[68,56],[75,39],[94,61],[70,39],[183,120],[109,70],[35,23],[7,-54],[-13,-34],[-11,-29],[-7,-18],[-68,-78],[-66,-32],[-50,-25],[-8,-4],[-64,-49],[-15,-11],[-34,-25],[-14,-9]],[[71451,24116],[-59,-148],[-69,109],[-22,61],[-21,56],[40,123],[22,81],[34,93],[83,-40],[33,-56],[9,-97],[-40,-157],[-10,-25]],[[73900,23252],[-69,-31],[-64,28],[14,27],[25,44],[98,87],[68,49],[94,64],[94,54],[52,60],[10,35],[13,43],[21,74],[3,39],[54,40],[77,50],[193,126],[240,138],[106,61],[35,35],[27,78],[22,80],[54,48],[1,1],[8,7],[20,53],[11,35],[7,20],[12,28],[23,52],[28,63],[112,93],[15,13],[44,5],[16,-7],[34,-16],[45,-26],[19,-42],[52,-45],[38,-27],[31,-22],[40,-50],[47,-76],[46,-107],[-51,-89],[-65,-78],[-60,-70],[-68,-56],[-51,-31],[-80,-44],[-77,-46],[-81,-34],[-82,-26],[-81,-26],[-69,-27],[-44,-17],[-46,-20],[-52,-21],[-45,-22],[-48,-24],[-59,-36],[-75,-47],[-46,-27],[-45,-26],[-63,-41],[-65,-40],[-68,-70],[-49,-2],[-58,-33],[-47,-34],[-54,-41],[-63,-48],[-74,-66],[-50,-39]],[[74917,24886],[27,-90],[35,-61],[19,-35],[-55,-53],[-40,10],[22,113],[-54,27],[-20,-55],[-10,-7],[-19,-13],[-32,-4],[-28,-4],[-46,29],[-79,-93],[72,-41],[-74,-73],[-60,35],[-10,6],[-23,51],[-9,19],[-8,0],[-64,-1],[-65,-24],[-56,-18],[-42,-17],[4,54],[12,19],[24,37],[32,13],[18,8],[51,29],[50,31],[51,66],[50,4],[58,-1],[137,49],[33,40],[16,20],[61,41],[22,-111]],[[74772,25088],[52,-10],[19,-4],[-31,-44],[-11,-32],[-6,-18],[-36,-33],[-17,-20],[-91,-12],[6,63],[3,28],[-5,36],[-7,45],[74,-5],[50,6]],[[74864,25508],[23,-3],[52,-7],[13,34],[11,30],[22,22],[23,23],[4,-51],[3,-43],[-5,-36],[-5,-42],[76,-11],[43,-40],[45,39],[-3,-52],[-2,-49],[11,-1],[60,-2],[-11,-66],[-6,-32],[-12,-42],[-16,-53],[-10,-29],[-15,-48],[-12,8],[-58,39],[14,112],[14,58],[-63,60],[-91,49],[-88,23],[-17,110]],[[75964,25105],[-61,-42],[-66,-99],[-63,-63],[-61,-49],[-53,-50],[-53,8],[-52,56],[-29,71],[-8,48],[-4,24],[-23,47],[-14,29],[-2,-39],[-5,-87],[-8,-1],[-25,-6],[-55,-12],[-25,3],[-45,6],[-39,18],[-40,18],[8,78],[16,41],[19,52],[12,5],[39,18],[38,4],[78,46],[44,149],[49,97],[36,50],[52,50],[46,29],[68,63],[-31,17],[-37,19],[31,102],[-12,96],[19,22],[101,-140],[32,-55],[-21,-10],[-13,-7],[-30,-30],[48,-36],[37,-10],[11,-2],[12,-3],[37,-7],[44,-19],[30,-35],[17,-21],[35,-27],[27,-86],[14,-162],[-19,-52],[-29,-54],[-77,-62]],[[75898,26029],[-33,-27],[-15,130],[21,29],[100,144],[-26,-184],[-47,-92]],[[76779,26938],[2,-46],[1,-36],[21,-21],[37,-110],[43,-41],[39,-38],[16,-93],[4,-15],[19,-71],[59,-58],[15,-53],[3,-14],[-43,-73],[-57,-60],[-56,-40],[-71,-55],[-58,-39],[-75,-57],[-57,-61],[-42,-33],[-164,-141],[-93,-89],[-84,-78],[-76,-45],[-37,17],[-36,71],[-3,5],[-70,96],[-60,44],[-35,61],[4,43],[4,31],[21,48],[6,14],[29,53],[56,118],[11,48],[6,29],[-19,44],[1,69],[31,81],[5,13],[7,9],[62,76],[71,76],[93,-2],[7,-60],[-41,-43],[54,-59],[58,46],[59,20],[90,5],[30,101],[-10,59],[-12,73],[-61,38],[-88,-9],[12,85],[-39,23],[-5,-3],[-34,-17],[-31,-14],[-13,-6],[7,86],[69,52],[78,60],[78,53],[54,8],[46,70],[5,13],[9,19],[64,-45],[65,-69],[13,-63],[3,-19],[3,-81]],[[77414,27861],[87,-92],[-15,-93],[20,-18],[8,-8],[14,-25],[10,-19],[-5,-102],[-10,2],[-82,20],[-40,4],[-35,8],[-38,33],[-19,43],[-16,38],[-37,52],[-1,1],[21,46],[17,36],[-3,15],[-14,83],[46,-24],[35,53],[57,-53]],[[77643,27698],[-83,-23],[-4,24],[-16,91],[-30,36],[-58,51],[-51,57],[-35,21],[67,24],[76,16],[38,45],[-63,107],[73,24],[38,69],[11,46],[3,12],[13,57],[26,30],[11,13],[32,-22],[86,-43],[93,-44],[11,-35],[12,-38],[46,-100],[3,-5],[46,-90],[34,-78],[-92,-67],[-71,-17],[-77,-45],[-30,-36],[-43,-51],[-66,-29]],[[77093,27415],[46,-4],[7,59],[9,72],[40,67],[14,23],[27,-24],[46,-41],[38,-74],[75,-16],[136,-21],[53,137],[75,37],[64,22],[35,3],[16,1],[55,-2],[27,-42],[5,4],[56,39],[49,97],[29,51],[54,48],[60,74],[43,38],[71,1],[52,-18],[85,24],[82,10],[23,60],[22,76],[79,9],[71,-6],[18,81],[73,-9],[30,-87],[16,-51],[-4,-132],[-25,-113],[-15,-79],[-21,-78],[-12,-71],[-4,-91],[-24,-129],[-65,-63],[-70,-39],[-78,-21],[-101,-35],[-69,-31],[-160,-70],[-41,-23],[-43,-14],[-77,-34],[-111,-55],[-48,-26],[-55,-24],[-82,-48],[-43,-27],[-68,-41],[-66,-42],[-73,-58],[-74,-72],[-65,-101],[-47,-101],[-100,-61],[-18,70],[-47,55],[-51,105],[-33,40],[-10,12],[-56,98],[-57,68],[-25,30],[-4,37],[-4,40],[-19,123],[-6,73],[-31,37],[-17,21],[-19,10],[-32,18],[-30,33],[0,86],[0,81],[57,111],[91,89],[60,78],[24,61],[26,100],[12,47],[35,133],[24,96],[49,192],[22,74],[35,12],[3,-98],[-33,-91],[-21,-60],[-37,-136],[-18,-64],[-29,-115],[0,-106],[-49,-61],[-9,-43],[-7,-31],[4,-21],[4,-24],[46,-98],[130,-41]],[[80769,30498],[-82,-64],[-95,-42],[-69,2],[-54,17],[6,11],[14,28],[18,57],[12,27],[39,-47],[43,-7],[54,9],[37,26],[17,23],[9,13],[11,19],[16,-25],[24,-47]],[[70840,27453],[-2,-7],[-3,-12],[-9,-27],[-52,-56],[-59,-45],[-37,-75],[-37,-64],[-44,-63],[-35,-65],[-27,-78],[-30,-75],[-2,-5],[10,-60],[-15,-84],[-8,-116],[-1,-104],[0,-115],[16,-89],[4,-73],[37,-84],[24,-78],[-44,-90],[95,-18],[20,-61],[42,-30],[37,-65],[7,-61],[43,-45],[36,-34],[38,-33],[55,-31],[84,-23],[65,-17],[83,-38],[57,-100],[-16,-95],[-13,-106],[-2,-84],[2,-89],[-7,-89],[-63,22],[-17,71],[-54,6],[18,-81],[8,-84],[56,1],[55,-30],[19,-72],[15,-112],[1,-105],[39,-73],[35,-48],[3,-67],[-35,-52],[-36,-113],[27,-82],[35,-104],[48,-153],[43,-78],[33,-100],[8,-124],[22,-61],[-20,-152],[-6,-128],[-24,-95],[-53,-138],[-154,16],[-69,37],[-65,49],[-31,39],[-38,49],[-30,81],[-35,73],[-32,-61],[-96,95],[-60,92],[-8,13],[-33,53],[-44,87],[-42,38],[-77,75],[12,136],[-13,79],[39,177],[52,263],[15,75],[-5,104],[-3,88],[-9,98],[-12,114],[-42,69],[-32,73],[-50,83],[-58,65],[-57,41],[-71,58],[-14,-81],[-60,32],[-8,12],[-44,61],[37,71],[-39,17],[-38,-6],[-89,-31],[-77,-35],[-81,-54],[-55,-56],[-36,-63],[-34,-47],[-50,-42],[-21,-63],[-44,-43],[-47,-6],[-37,35],[-56,43],[-44,56],[-46,60],[-28,29],[-28,29],[-60,38],[-52,37],[-60,57],[-52,64],[-50,97],[-48,47],[-48,-5],[-4,-2],[-52,-27],[-37,-58],[58,-10],[74,28],[20,-84],[43,-69],[77,-104],[48,-65],[98,-63],[14,-9],[53,-34],[46,-118],[27,-66],[114,-89],[92,-13],[65,21],[27,55],[56,76],[51,38],[82,17],[60,15],[54,6],[40,11],[29,65],[25,27],[8,10],[16,-83],[13,-7],[36,-21],[7,-2],[68,-11],[66,-74],[31,65],[4,8],[61,-41],[19,-74],[3,-35],[3,-30],[-88,20],[71,-95],[4,-6],[56,-87],[3,-58],[2,-44],[-19,-68],[-39,-137],[-34,-103],[-43,-130],[-53,-108],[12,-41],[16,-55],[8,-96],[25,-96],[64,-89],[71,-71],[21,-21],[56,-58],[4,-4],[16,-26],[25,-41],[41,-47],[51,-48],[58,-93],[-20,-48],[-69,-47],[-33,-16],[-63,-32],[-103,-27],[-67,-27],[-51,0],[-10,0],[-46,0],[-60,0],[-43,-37],[-50,32],[-42,0],[8,-52],[2,-18],[89,-16],[68,22],[46,10],[29,-3],[17,-2],[39,0],[57,27],[50,0],[46,5],[40,19],[17,8],[39,25],[10,7],[1,0],[63,41],[25,17],[14,0],[40,-1],[37,-41],[40,-103],[6,-47],[8,-61],[3,-7],[29,-55],[51,-29],[139,-97],[1,0],[76,-57],[18,-13],[73,-16],[52,-12],[96,0],[93,10],[54,-52],[56,7],[64,-17],[94,-18],[109,43],[42,-2],[11,-99],[0,-5],[32,-65],[43,15],[11,56],[5,15],[21,64],[91,30],[8,-44],[10,-49],[10,-5],[60,-34],[48,80],[52,-29],[21,-12],[-7,-36],[-15,-82],[-12,-66],[-2,-11],[-30,-81],[-54,-31],[-62,-15],[-56,-1],[-54,-46],[20,-92],[-43,-140],[-19,-87],[-4,-19],[-13,-52],[-94,62],[-78,0],[-21,-56],[-11,-30],[-64,-43],[-93,33],[-103,-11],[-64,-86],[-71,-5],[-88,0],[-50,-6],[-43,-43],[-39,0],[0,-43],[89,0],[-21,-26],[-118,-27],[-71,0],[-46,16],[-82,-49],[-42,43],[-15,-123],[61,11],[99,10],[43,-32],[-50,-75],[71,-102],[-67,-258],[-85,-86],[-79,-172],[-35,-96],[0,-210],[-35,-168],[-8,-36],[8,-59],[-65,-59],[-71,64],[-78,54],[-78,38],[-75,0],[-46,-38],[-46,0],[-46,-43],[-68,-43],[-71,11],[-57,11],[-63,-50],[-11,-9],[-61,0],[-17,-76],[54,-40],[2,-3],[64,70],[71,6],[118,48],[96,64],[0,-96],[10,-59],[22,-20],[92,-82],[18,-59],[10,-33],[15,-123],[133,-85],[-14,-27],[-45,-46],[-48,-36],[-57,-44],[-57,-42],[-26,-18],[-30,-21],[-52,-34],[-54,-56],[-64,-70],[-60,17],[-1,-2],[-40,-68],[-35,-60],[-100,-6],[-94,-8],[-50,3],[-29,-58],[-70,25],[-63,5],[-4,1],[-76,12],[-62,36],[-27,76],[16,41],[22,56],[33,126],[18,60],[7,24],[0,14],[0,56],[46,91],[62,4],[8,1],[15,32],[12,27],[42,36],[10,18],[29,52],[24,78],[9,25],[3,45],[5,56],[-24,97],[-13,41],[-12,39],[8,79],[-40,91],[-7,65],[-5,81],[23,24],[32,34],[81,10],[44,9],[51,29],[51,61],[35,61],[13,22],[36,113],[0,140],[-53,91],[2,49],[8,119],[-12,274],[-38,73],[-56,43],[-88,70],[-105,32],[-101,31],[-19,87],[-25,119],[24,238],[1,98],[0,1],[-14,92],[-11,101],[-2,21],[-13,101],[1,12],[2,58],[26,77],[96,112],[22,151],[-26,57],[-9,19],[-89,150],[-72,-15],[-135,-29],[-71,-17],[-85,-14],[-186,85],[-62,45],[-109,128],[-119,27],[-50,28],[-3,2],[-100,3],[-64,-25],[-68,-29],[-55,-17],[-27,-55],[-10,-20],[-59,-82],[-71,28],[-33,100],[-51,75],[-64,40],[-7,4],[-37,-10],[-16,-5],[-9,10],[-22,20],[-41,-38],[-48,-14],[-51,25],[-30,23],[-16,13],[-33,29],[-26,23],[-19,30],[-23,36],[-3,29],[-6,44],[-15,-5],[-27,-8],[-41,21],[-38,0],[-43,-12],[-57,-32],[-38,-78],[13,4],[51,17],[54,28],[17,-2],[72,-9],[50,-94],[33,-84],[24,-18],[36,-28],[73,-61],[57,32],[60,-14],[62,-14],[60,-32],[39,-79],[40,-74],[57,-35],[55,-7],[23,13],[61,34],[47,42],[57,58],[69,51],[64,29],[40,12],[79,-14],[66,-51],[55,-50],[78,-64],[71,-58],[55,-31],[50,-20],[51,-17],[17,-6],[8,-1],[64,-10],[47,-8],[12,-2],[30,-4],[23,-3],[38,0],[50,1],[64,10],[58,-16],[28,-47],[-39,-70],[-34,-68],[-9,-19],[-15,-40],[-11,-32],[-27,-87],[-1,-59],[0,-12],[0,-18],[0,-49],[26,-41],[17,-79],[12,-116],[-10,-111],[-17,-71],[-11,-65],[5,-76],[3,-35],[6,-65],[12,-46],[8,-33],[2,-4],[28,-55],[51,-73],[49,-35],[53,-22],[77,-33],[51,-49],[15,-14],[43,31],[30,-30],[27,-27],[-4,-106],[-5,-37],[-7,-38],[-3,-53],[-2,-35],[-1,-14],[0,-1],[-3,-74],[0,-95],[10,-106],[3,-91],[-32,-82],[-71,-57],[-50,-29],[-36,-22],[-70,-57],[-72,-88],[5,-108],[-3,-79],[7,-70],[3,-22],[10,-79],[38,-44],[25,-28],[7,-26],[18,-65],[-28,-49],[-56,-21],[-31,-97],[-38,-52],[-54,-60],[-27,-41],[-28,-41],[-16,-31],[-19,-36],[-19,-58],[-8,-23],[-7,-76],[-25,-37],[-7,-11],[-41,-67],[-7,-27],[-12,-50],[-23,-68],[-75,-18],[-78,-27],[-60,-17],[-16,-4],[-26,6],[-35,8],[-37,6],[-29,4],[-7,-1],[-49,-11],[-61,10],[-61,-22],[-52,-12],[-38,-14],[-30,-10],[-21,-20],[-63,-59],[-82,-97],[-60,-48],[-85,-41],[-80,-73],[-50,-45],[-28,-19],[-68,-48],[-89,-103],[-72,-37],[-93,0],[-68,0],[-101,-54],[-62,-18],[-71,-19],[-72,61],[4,103],[56,31],[-16,60],[-63,-29],[-29,-13],[-65,-12],[-48,0],[-32,0],[-4,-55],[60,-6],[36,0],[0,-79],[-104,-6],[-52,-25],[-37,43],[-60,0],[-56,-12],[-69,-61],[-60,-12],[-65,0],[-56,-91],[-60,-12],[-28,-73],[84,-7],[48,49],[65,55],[60,6],[28,-26],[4,-4],[49,-73],[12,-65],[4,-21],[32,-54],[15,16],[73,81],[41,41],[56,56],[109,79],[56,0],[40,-54],[-68,-67],[-93,-37],[-56,-67],[4,-79],[84,0],[15,5],[130,38],[41,0],[12,85],[44,85],[44,61],[77,55],[32,24],[68,-6],[109,6],[72,38],[20,11],[69,67],[44,60],[147,132],[30,7],[40,28],[44,15],[53,52],[57,47],[49,53],[38,29],[40,51],[39,10],[20,5],[38,0],[3,-1],[39,-1],[53,-10],[14,-3],[13,-2],[58,-11],[26,48],[39,1],[23,1],[18,2],[58,4],[50,4],[52,-3],[60,-6],[60,-25],[54,-67],[56,-21],[65,-56],[65,-7],[42,-32],[77,-9],[74,-53],[52,-24],[47,-62],[45,-77],[36,-67],[22,-105],[-87,-109],[-5,-6],[-28,-28],[-53,-39],[-49,-24],[-15,-7],[-60,-29],[-6,-3],[-42,-10],[-64,-24],[-65,24],[-74,-8],[-127,25],[-60,10],[-95,2],[-139,-11],[-139,-31],[-89,-19],[-273,-73],[-105,-30],[-213,-63],[-143,-52],[-193,-67],[-141,-59],[-20,34],[-60,-18],[-139,-125],[-84,-14],[-36,-50],[-107,-52],[-98,-38],[-87,-106],[-56,-48],[-52,-52],[-84,-73],[-83,-55],[-33,56],[52,48],[89,43],[68,55],[68,66],[41,73],[-4,61],[4,91],[-12,61],[-6,9],[-23,42],[-20,34],[-2,-35],[-2,-25],[7,-38],[5,-29],[0,-79],[0,-61],[0,-49],[-20,-36],[-40,-49],[-44,-24],[-61,0],[-60,-19],[-30,-35],[-10,-13],[-40,-49],[-8,-19],[-12,-32],[40,-168],[-105,-170],[-129,-103],[-88,-140],[-118,-55],[-120,-11],[-100,3],[-101,204],[-70,101],[-126,132],[-5,6],[-36,77],[-58,51],[-57,72],[-82,92],[-13,86],[-2,8],[76,100],[83,90],[73,111],[67,68],[58,-41],[44,-47],[58,-35],[60,-10],[56,-8],[65,126],[-6,35],[-6,33],[33,76],[53,8],[3,-5],[17,-31],[42,41],[27,26],[76,16],[61,13],[89,91],[0,103],[-33,55],[-48,42],[-92,31],[-29,30],[16,122],[37,79],[0,73],[-24,85],[-33,79],[20,104],[29,97],[32,73],[68,48],[24,49],[12,91],[37,37],[32,42],[-12,43],[-40,-55],[-25,-55],[-24,-54],[-20,-43],[-48,-36],[-40,-55],[-37,-85],[-12,-55],[-16,-67],[-12,-55],[0,-54],[0,-43],[0,-42],[20,-37],[4,-55],[0,-42],[-32,-104],[0,-60],[0,-37],[5,-21],[3,-15],[5,-21],[3,-16],[45,-18],[32,-12],[15,-3],[45,-9],[32,-25],[6,-28],[2,-8],[0,-55],[-44,-12],[-3,-2],[-53,-35],[-112,-53],[-57,-2],[-22,-1],[-47,-22],[-35,-35],[-9,-19],[-9,-16],[-10,-23],[-32,-122],[-95,31],[-49,60],[-53,27],[-59,6],[-43,-14],[-44,-31],[-36,-45],[-16,-19],[-33,-56],[-33,-68],[-44,-31],[-48,-16],[-28,-54],[-20,-81],[-11,-49],[-4,-23],[-44,6],[-21,3],[-70,47],[-28,-20],[-50,80],[-66,112],[4,142],[-62,65],[-3,28],[-9,78],[2,82],[-9,53],[-3,16],[-4,15],[-9,36],[-48,103],[-1,108],[78,76],[37,61],[22,35],[7,43],[9,59],[0,29],[0,39],[-33,69],[-7,-93],[-1,-67],[-19,-61],[-68,-62],[-67,-71],[-8,-72],[-7,-65],[7,-91],[4,-43],[-47,24],[-51,28],[-42,19],[-125,55],[-49,24],[-78,29],[-130,61],[-50,30],[-80,94],[-20,23],[-1,107],[72,-80],[16,-28],[27,-47],[35,46],[4,59],[-13,56],[0,27],[0,48],[9,67],[4,29],[4,27],[22,40],[14,24],[-37,29],[-10,73],[-2,66],[-11,106],[18,140],[35,97],[53,24],[-13,-64],[35,-3],[44,6],[40,83],[61,49],[32,-47],[58,-30],[24,113],[33,62],[19,109],[37,93],[-22,100],[-4,59],[-40,141],[-59,135],[66,67],[38,-51],[25,69],[52,-10],[26,-80],[13,-59],[33,-25],[76,26],[47,15],[94,28],[-28,-77],[73,23],[59,86],[1,104],[43,68],[-19,91],[-27,50],[-32,26],[-46,56],[-66,-2],[-24,91],[77,1],[46,-27],[24,68],[40,32],[43,-30],[39,-4],[52,16],[45,53],[-2,87],[26,72],[41,-1],[33,-39],[42,16],[88,15],[36,102],[77,75],[38,63],[41,4],[75,6],[60,-46],[1,-1],[68,5],[44,61],[1,1],[0,102],[15,55],[13,48],[-58,-56],[-30,-93],[-45,-23],[21,145],[-31,49],[-81,56],[-6,2],[-16,3],[-68,17],[-92,4],[-47,50],[-113,-39],[-78,-25],[-49,23],[-46,-72],[45,-5],[56,-33],[-17,-64],[-36,-64],[-38,75],[-50,-66],[-44,-9],[-75,17],[-43,17],[-43,-60],[29,-55],[42,-42],[8,-96],[-13,-85],[-59,-13],[-59,-11],[-38,4],[-43,53],[-42,-47],[53,-43],[-44,-83],[-17,-75],[3,-79],[5,-40],[5,-46],[-29,-26],[-33,-18],[-79,-9],[-86,0],[-47,13],[-47,-55],[4,103],[-73,-38],[-57,-44],[-46,-40],[-37,-66],[-33,-55],[-35,-70],[-42,-48],[13,-52],[10,-39],[-9,-47],[-4,-22],[-13,-70],[39,-54],[70,119],[79,13],[52,-99],[46,-69],[-26,-64],[-82,-193],[-4,-8],[-26,-56],[-27,12],[-24,11],[-63,35],[-11,15],[-24,32],[-81,-10],[-52,-11],[-37,-19],[-45,54],[-26,18],[-10,7],[-75,80],[-7,-1],[-52,-12],[-34,-42],[-41,43],[-9,34],[-18,61],[-2,9],[-12,23],[-20,37],[-45,21],[-45,46],[-59,62],[-73,82],[-61,36],[-29,61],[-33,60],[-17,56],[-34,34],[32,51],[39,80],[-62,-35],[-71,-41],[-19,-45],[-27,-47],[68,-23],[36,-72],[30,-111],[42,-84],[31,-68],[70,-93],[73,-91],[68,-48],[41,-61],[46,-40],[28,-6],[58,-12],[81,16],[68,-12],[42,-30],[32,-59],[2,-63],[-27,-38],[-7,-10],[-16,-123],[-61,-138],[-20,-4],[-40,-7],[-30,-178],[-40,-112],[-14,-87],[-2,-35],[-4,-65],[-53,-50],[-61,-26],[-62,-42],[-29,-24],[-38,-33],[5,28],[16,83],[-54,102],[-48,65],[-89,6],[-61,-62],[-45,-64],[-51,31],[-64,88],[-46,28],[-68,-30],[-49,-6],[-21,-3],[-5,65],[66,56],[26,22],[4,12],[12,47],[7,26],[-69,78],[-48,22],[-24,9],[-77,29],[68,-79],[43,-27],[44,-53],[-56,-45],[-14,-23],[-37,-58],[-7,-71],[-2,-21],[-1,-12],[46,-120],[-71,-14],[-50,-8],[-63,-45],[66,-59],[63,-44],[9,-20],[28,-62],[37,-56],[19,-63],[-26,-73],[73,49],[21,90],[7,32],[9,43],[31,-4],[35,-5],[25,-61],[10,-24],[33,-111],[-66,3],[4,-60],[32,-21],[18,-12],[38,-20],[70,-55],[26,-68],[-51,-36],[80,-41],[92,-67],[154,5],[37,23],[13,9],[0,1],[49,34],[38,74],[48,90],[45,54],[54,48],[45,-18],[43,-32],[48,-29],[55,-52],[12,-93],[-7,-96],[-6,-71],[67,-38],[54,-8],[6,-1],[105,21],[11,-32],[17,-48],[27,-69],[44,-14],[5,92],[1,8],[1,91],[-36,86],[-45,40],[-56,26],[33,32],[59,-20],[64,-19],[9,-3],[62,-34],[33,-41],[-33,-106],[4,-37],[5,-60],[41,81],[36,68],[33,-53],[29,-115],[31,-95],[52,-94],[6,-9],[43,-65],[74,-146],[18,-31],[35,-62],[71,-57],[21,-38],[58,-23],[74,-34],[89,-41],[57,-31],[-44,-67],[-38,-82],[-33,-18],[0,-36],[-30,-29],[-30,13],[-26,32],[-31,35],[-10,11],[-28,68],[-32,39],[-23,9],[-35,0],[-36,-39],[-28,-42],[-22,-39],[-14,-44],[-5,-14],[-35,-29],[-4,-3],[-30,-36],[-8,-62],[3,-9],[7,-20],[20,28],[6,8],[10,21],[16,37],[21,29],[10,12],[16,17],[13,22],[9,14],[7,18],[6,15],[7,10],[20,29],[30,25],[28,0],[37,-55],[14,-31],[5,-11],[10,-16],[20,-33],[30,-29],[7,-6],[47,-16],[32,0],[17,22],[13,20],[3,3],[2,3],[6,39],[52,57],[47,13],[74,2],[63,-14],[53,-76],[1,-91],[-76,-130],[-37,-47],[-13,-11],[-70,-60],[-53,-5],[-60,16],[-30,-8],[-14,-3],[5,-95],[-71,-34],[-114,-86],[-77,-75],[-34,-34],[-115,-97],[-55,-51],[-91,-84],[-57,-68],[-35,-24],[-19,-13],[-37,-32],[-23,-21],[-61,-70]],[[62658,14457],[6,93],[4,44],[-9,38],[-11,52],[-26,56],[-16,36],[-46,50],[-66,67],[-46,27],[-7,5],[-19,27],[-35,50],[-24,79],[4,39],[8,69],[18,87],[4,16],[7,70],[21,137],[36,158],[66,82],[61,22],[36,-3],[29,-3],[51,13],[36,26],[26,56],[-4,91],[-10,21],[-15,30],[-52,44],[-29,25],[6,-28],[22,-92],[34,-97],[-95,-16],[-73,-4],[-77,-44],[-42,-60],[-26,-63],[-19,-67],[-28,-72],[-5,-12],[-34,-128],[-15,-111],[-5,-36],[-40,-52],[-70,78],[-38,74],[-58,95],[-55,80],[-51,74],[-57,56],[-58,61],[-32,27],[-20,16],[-19,17],[-38,31],[-54,31],[-54,27],[-60,17],[-122,77],[-53,17],[-9,3],[-30,11],[-66,22],[-56,53],[23,43],[27,51],[25,61],[40,73],[30,40],[46,43],[95,57],[54,18],[40,29],[46,59],[56,80],[47,137],[19,106],[2,60],[-5,48],[-5,51],[-12,69],[-17,59],[-5,19],[-41,92],[-47,80],[-58,120],[28,99],[39,88],[15,34],[18,48],[36,99],[40,198],[8,87],[5,93],[1,12],[-71,91],[-64,45],[-45,14],[-12,3],[-51,3],[-19,-6],[-86,-30],[-102,-68],[-23,-15],[-12,-11],[-39,-36],[-48,-69],[-91,-190],[-58,-97]],[[83238,31050],[37,-10],[38,11],[-1,-10],[-5,-64],[-39,-160],[-2,-9],[-34,-122],[-24,-80],[-36,-88],[-19,-4],[-43,-7],[15,29],[32,61],[-6,113],[-2,40],[-24,82],[-41,80],[-3,51],[-3,50],[52,71],[64,0],[44,-34]],[[82453,31029],[28,-3],[155,14],[20,1],[53,8],[93,-35],[76,-71],[54,-121],[73,-97],[-1,-19],[-1,-85],[-65,-72],[-68,-62],[-114,2],[-44,31],[-62,17],[-28,6],[-179,-48],[-103,-29],[-96,-13],[-35,54],[-15,23],[9,33],[2,5],[124,42],[10,2],[12,3],[42,78],[-36,64],[-57,78],[-62,53],[7,39],[28,158],[58,-23],[65,-25],[57,-8]],[[82145,30844],[-21,-14],[-60,-38],[-57,39],[-68,-2],[-25,-13],[-46,59],[-59,75],[-5,26],[-11,53],[31,62],[37,39],[41,46],[35,42],[36,34],[54,38],[59,17],[64,-14],[2,-3],[35,-47],[24,-58],[11,-45],[-38,-213],[-39,-83]],[[82521,31843],[38,-31],[54,-27],[58,-12],[55,-28],[45,-34],[30,-48],[19,-40],[15,-79],[-19,-73],[-11,-44],[70,44],[40,65],[71,-3],[66,-102],[4,-18],[13,-54],[6,-144],[-45,-81],[-39,-24],[-14,-9],[-8,-2],[-55,-13],[-69,27],[-33,39],[-25,42],[-16,26],[-14,80],[-7,37],[-10,-16],[-40,-65],[-58,-46],[-61,-38],[-15,-9],[-7,-2],[-49,-14],[-58,-2],[-72,-12],[-67,29],[-48,69],[-24,121],[5,118],[-33,81],[-98,112],[-67,38],[-15,28],[-10,19],[28,93],[59,25],[71,-3],[18,-1],[65,-13],[11,-7],[34,-22],[71,-5],[35,39],[47,27],[59,-38]],[[82395,31989],[21,-66],[-54,-66],[-45,22],[-47,34],[-12,9],[-59,8],[-53,-4],[-5,123],[84,13],[45,55],[39,-5],[86,-123]],[[83600,31967],[-14,-79],[-23,-84],[-21,-72],[-15,-43],[-11,-32],[-47,-155],[-45,-123],[-13,-44],[-17,-59],[-16,-47],[-6,-20],[-36,-80],[-2,32],[-7,92],[2,49],[2,21],[4,74],[-4,114],[-15,66],[-15,61],[-35,52],[-26,37],[-17,98],[-7,15],[-36,66],[-20,78],[47,2],[20,-18],[30,-27],[66,-49],[64,10],[72,79],[4,24],[13,70],[-15,40],[-8,21],[25,92],[15,51],[20,48],[27,74],[1,4],[18,64],[59,77],[41,-74],[3,-33],[2,-31],[-1,-94],[-10,-105],[-21,-103],[-20,-88],[-12,-51]],[[85042,34420],[-41,50],[-30,51],[-13,-56],[-18,43],[-5,14],[2,41],[2,26],[-74,64],[-79,42],[-10,2],[-84,20],[-45,14],[-178,135]],[[74864,25508],[-92,-1],[-8,94],[-50,-3],[-34,-70],[-52,-71],[-45,-88],[-69,-77],[-46,-101],[-44,-71],[-47,-77],[-39,-65],[-59,-66],[-20,-78],[-59,-41],[-59,-79],[24,-69],[-48,-84],[-6,-30],[-6,-37],[-10,-7],[-27,-18],[64,-80],[55,19],[16,6],[-34,-83],[52,-105],[18,-3],[73,-11],[50,-86],[7,-5],[40,-33],[75,22],[69,88],[12,52],[23,101],[59,15],[38,40],[37,83],[46,32],[56,-2],[43,14],[39,20],[37,27],[85,77],[11,96],[-38,45],[-38,61],[-23,96],[7,23],[11,32],[85,23],[52,-26],[39,-61],[5,-7],[20,-25],[-12,-60],[-35,-154],[-51,-68],[-1,-16],[-2,-42],[-47,-65],[-19,-17],[-29,-26],[10,-24],[3,-6],[-22,-58],[-61,-113],[-188,-98],[-237,-146],[-173,-114],[-142,-84],[-7,-5],[-183,-99],[-148,-89],[-113,-85],[-197,-124],[-40,-28],[-75,-51],[-54,-38],[-21,-12],[-132,-73],[-88,-67],[-76,-58],[-116,-45],[-20,47],[47,82],[-8,20],[-22,60],[-9,-18],[-47,-99],[-1,-43],[0,-89],[-45,-46],[-68,7],[-61,75],[21,100],[-20,16],[-43,32],[-60,62],[-71,83],[-56,85],[-52,79],[-66,57],[-67,17],[-51,35],[-14,57],[-32,-23],[-55,-18],[-36,-47],[-72,-14],[-100,-31],[-65,-26],[-47,-6],[-41,42],[-5,105],[7,102],[18,54],[14,61],[7,100],[10,99],[0,1],[7,70],[4,90],[0,61],[-39,100],[24,112],[53,66],[68,77],[70,89],[61,94],[12,99],[9,68],[15,71],[44,32],[55,15],[47,78],[-17,116],[-20,126],[-45,87],[-17,33],[-46,25],[-17,35],[-11,24],[-7,30],[-13,52],[1,66],[1,22],[7,10],[29,38],[6,7],[43,16],[36,10],[30,33],[26,29],[44,32],[34,17],[18,8],[10,0],[38,-2],[66,-21],[46,-1],[24,-1],[51,13],[10,2],[45,30],[62,0],[67,-2],[63,66],[76,50],[33,50],[25,49],[16,31],[7,16],[29,69],[80,36],[24,-19],[42,-31],[63,-29],[-34,127],[-69,162],[67,251],[21,161],[18,103],[49,204],[-25,129],[-2,80],[72,106],[38,34],[-13,69],[10,112],[22,58],[69,-54],[11,-18],[39,-64],[21,-51],[79,-5],[48,36],[43,23],[14,83],[50,89],[51,19],[65,7],[56,15],[48,2],[67,-21],[102,-28],[69,75],[38,30],[45,5],[49,-33],[41,-61],[90,-8],[46,-63],[24,-77],[38,18],[18,9],[-13,44],[-23,79],[-56,63],[-5,6],[-45,19],[-61,41],[-55,58],[-11,11],[-88,10],[-62,-39],[-44,-36],[-90,-2],[23,56],[25,80]],[[82267,36031],[59,-77],[81,-85],[65,-38],[9,-5],[86,-13],[16,-3],[85,-44],[7,-7],[28,-29],[27,-79],[35,-43],[85,-106],[112,-122],[95,-58],[74,-11],[70,-53],[45,-62],[33,-44],[17,-34],[18,-36],[81,-31],[27,6],[68,15],[63,-16],[49,-16],[21,69],[88,-16],[22,-4],[38,-21],[47,-24],[52,-27],[126,-91],[2,-1],[46,-32],[10,-7],[188,-24],[190,-114],[196,-66],[105,-39],[54,-59],[48,-59],[50,-50],[32,-70],[4,-11],[9,-111],[-12,-56],[-3,-16],[-33,-61],[-91,-106],[-45,-27],[-32,-57],[-59,-101],[-48,-25],[-24,-50],[-8,-15],[-65,-43],[-12,-22],[-3,-7],[-170,-115],[-99,-43],[-86,-56],[-103,-109],[-43,-43],[-39,-41],[-77,-120],[-20,-12],[-20,-12],[-60,-31],[-57,-25],[-77,-52],[-97,-93],[-109,-131],[-138,-49],[-37,-13],[-16,-6],[-38,8],[-44,34],[-41,-46],[-37,-15],[-38,-32],[-35,-76],[-23,-51],[-19,-40],[-8,-23],[-29,-77],[-35,-89],[-60,6],[12,-64],[3,-13],[0,-11],[-1,-54],[-1,-71],[-1,-25],[14,-28],[17,-36],[33,-79],[22,-95],[-15,-37],[-12,-27],[-49,-35],[-52,13],[-140,65],[-88,49],[-133,105],[-51,83],[-13,23],[-18,15],[-64,53],[-56,0],[-64,26],[-48,38],[-48,85],[-55,17],[-37,12],[-13,7],[-58,31],[-16,29],[-17,31],[5,68],[-64,-47],[5,-51],[-9,-19],[-10,-23],[-37,-13],[-34,-42],[-42,34],[-8,-73],[50,-29],[24,13],[30,16],[62,-4],[19,-34],[-39,-29],[-65,-51],[-50,-26],[-39,-25],[-37,-51],[65,0],[30,-30],[82,13],[42,-51],[22,-55],[4,-81],[2,-42],[37,-94],[73,-80],[106,-51],[63,-75],[21,-147],[-109,16],[-19,-1],[-69,-6],[-68,-16],[-9,-3],[-1,0],[-39,-2],[-67,-31],[-40,-19],[-51,-45],[48,-9],[75,-13],[-15,-36],[-9,-20],[-34,-71],[-38,-80],[-3,-32],[-4,-25],[41,-68],[13,-22],[14,-32],[24,-55],[-81,32],[-91,-61],[-146,-16],[-204,0],[-76,-22],[-117,-50],[-98,-33],[-98,-16],[-62,-55],[-124,39],[32,108],[2,89],[10,131],[-18,149],[23,64],[29,50],[32,75],[10,46],[9,46],[6,131],[-59,-16],[-60,47],[-48,81],[-16,40],[-18,44],[54,94],[126,112],[28,131],[13,86],[3,13],[15,55],[4,62],[-47,-58],[-5,-16],[-20,-72],[-10,-67],[-6,-46],[-59,-46],[-43,-37],[-49,-32],[-8,-22],[-38,-100],[-13,-126],[45,-44],[24,-75],[4,-11],[66,-67],[41,-93],[-51,-87],[-1,-1],[-34,-49],[0,-1],[-24,-73],[-3,-145],[15,-72],[7,-107],[-9,-77],[-20,-88],[-13,-79],[-22,-16],[-35,0],[-54,31],[-49,55],[-54,16],[0,22],[-1,20],[18,83],[-46,59],[-49,13],[-15,58],[-3,13],[-60,41],[-23,74],[-51,39],[-43,54],[-35,26],[-4,2],[-8,39],[-9,44],[-30,86],[36,112],[-50,44],[-46,9],[-6,1],[-38,59],[-30,-49],[-15,-23],[-1,-4],[-14,-45],[-35,-56],[-47,8],[-45,9],[-59,35],[21,49],[15,32],[-12,-1],[-62,-6],[-65,-31],[-2,-2],[-61,-63],[-13,-2],[-46,-7],[-59,10],[-61,-10],[-22,-25],[-16,-19],[49,-37],[94,0],[54,-49],[-69,-102],[-22,-13],[-49,-29],[-46,-25],[-52,7],[-60,-9],[-27,-14],[-10,-5],[-7,-3],[-31,-10],[-30,-44],[-59,-53],[-65,-18],[-67,-63],[-89,-86],[-47,-56],[-66,-38],[-48,-51],[-48,-65],[-40,-41],[-45,-43],[-57,-29],[-45,-22],[23,-59],[8,-21],[-16,-68],[1,-77],[-4,-18],[-19,-79],[-34,-105],[-61,-81],[-53,-73],[-56,-85],[-65,-76],[-28,-36],[-15,-19],[-29,-45],[-31,-47],[-42,-58],[-44,-83],[-5,-40],[-5,-40],[21,-83],[-25,-127],[-46,-43],[-42,-92],[-96,-40],[-3,-68],[-2,-10],[-10,-57],[-14,-93],[15,-109],[-14,-60],[17,-91],[1,-4],[15,-59],[-51,14],[-41,10],[-33,4],[-86,9],[-43,98],[-35,20],[-51,45],[-100,20],[29,-49],[55,-4],[43,-45],[0,-57],[19,19],[11,10],[29,-53],[3,-119],[-22,-94],[-73,-32],[-43,-49],[-32,0],[-35,0],[-6,-41],[-3,-16],[-62,0],[-27,-5],[27,86],[-62,29],[-34,-28],[-36,-29],[-38,12],[35,65],[3,61],[32,33],[0,37],[6,12],[27,53],[5,78],[-24,69],[-35,-102],[-41,0],[32,120],[1,3],[46,122],[67,70],[51,118],[19,78],[-17,5],[-7,3],[-3,-5],[-86,-134],[-33,-86],[-67,-65],[-68,-168],[-50,-167],[-1,-4],[-43,-163],[-38,-152],[-54,-220],[-14,-54],[-8,-28],[-89,-118],[-73,-70],[-54,-73],[-24,-119],[-6,-26],[-19,-80],[-13,-49],[-73,-20],[-68,-78],[-81,-61],[-87,-56],[-19,-12],[-13,-96],[-37,-27],[-13,-9],[5,-45],[4,-41],[-33,-63],[-18,-26],[-39,-59],[-34,-48],[-14,-28],[-25,-50],[-35,-49],[-12,-16],[-19,-31],[-32,-51],[-87,-131],[-50,65],[-5,6],[-26,23],[34,51],[0,50],[-2,40],[-2,34],[-22,50],[-23,-28],[12,-79],[0,-62],[-75,28],[-19,-16],[49,-34],[0,-57],[45,-45],[7,-7],[55,-53],[-114,-173],[-53,38],[-14,10],[-11,8],[-38,28],[21,-76],[5,-15],[-22,-51],[-6,-16],[-3,-12],[-8,-45],[-33,-64],[-35,-6],[-13,-2],[9,42],[14,58],[9,103],[-59,18],[-20,121],[-29,48],[-12,20],[-56,40],[-22,6],[-29,7],[-1,0],[-9,3],[-49,-20],[-66,-54],[-78,-99],[-87,-121],[-39,-93],[-73,-66],[-76,-63],[40,-90],[-25,-47],[16,-105]]],"transform":{"scale":[0.00004803127886278827,0.000031778268762688096],"translate":[-83.35387987999991,32.03762984100007]}} diff --git a/src/js/config/mapconfig/mapfiles/county/sd-counties.json b/src/js/config/mapconfig/mapfiles/county/sd-counties.json new file mode 100644 index 00000000..a6014a45 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/sd-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-104.05772848299989,42.48030137500018,-96.4377180009999,45.94566303400006],"geometries":[{"type":"Polygon","properties":{"name":"SD"},"id":"46105","arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46031","arcs":[[6,7,8,9,-1,10]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46063","arcs":[[-5,11,12]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46021","arcs":[[13,14,-7,15]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46089","arcs":[[16,17,18,-14,19]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46013","arcs":[[20,21,22,23,24,-17,25]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46109","arcs":[[26,27,28,29]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46091","arcs":[[-29,30,-21,31]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46129","arcs":[[-19,32,33,34,-8,-15]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46045","arcs":[[-25,35,36,-33,-18]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46037","arcs":[[-31,-28,37,38,39,40,-22]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46041","arcs":[[-35,41,42,43,44,-9]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46137","arcs":[[-45,45,46,-2,-10]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46051","arcs":[[47,48,49,-38,-27]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46107","arcs":[[-37,50,51,52,-42,-34]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46049","arcs":[[-24,53,54,55,-51,-36]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46115","arcs":[[-41,56,57,58,-54,-23]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46019","arcs":[[-4,59,60,61,-12]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46025","arcs":[[62,63,64,65,-57,-40]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46029","arcs":[[-50,66,67,-63,-39]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46093","arcs":[[-47,68,69,70,-60,-3]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46039","arcs":[[71,72,73,-67,-49]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46119","arcs":[[74,75,76,-43,-53]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46069","arcs":[[-56,77,78,79,80,-75,-52]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46059","arcs":[[-59,81,82,83,-78,-55]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46057","arcs":[[-74,84,85,-64,-68]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46117","arcs":[[-77,86,87,88,89,-44]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46055","arcs":[[90,91,92,-69,-46,-90]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46005","arcs":[[-66,93,94,95,-82,-58]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46081","arcs":[[-71,96,97,-61]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46065","arcs":[[-81,98,-87,-76]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46077","arcs":[[-86,99,100,101,102,-94,-65]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46011","arcs":[[103,104,105,-100,-85,-73]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46103","arcs":[[-93,106,107,108,109,-97,-70]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46085","arcs":[[110,111,112,113,114,-88,-99,-80,115]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46073","arcs":[[-96,116,117,118,119,-83]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46101","arcs":[[120,121,122,-105]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46017","arcs":[[-120,123,-116,-79,-84]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46111","arcs":[[-103,124,125,126,127,-117,-95]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46079","arcs":[[-106,-123,128,129,130,-101]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46097","arcs":[[-131,131,132,-125,-102]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46075","arcs":[[-115,133,134,-91,-89]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46071","arcs":[[-135,135,136,137,-107,-92]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46003","arcs":[[-128,138,139,140,141,-118]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46015","arcs":[[-142,142,-111,-124,-119]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46095","arcs":[[-114,143,144,-136,-134]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46033","arcs":[[145,146,147,-109]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46035","arcs":[[148,149,150,-139,-127]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46061","arcs":[[-133,151,152,-149,-126]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46099","arcs":[[153,154,155,-129,-122,156]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46087","arcs":[[-130,-156,157,158,-152,-132]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46123","arcs":[[159,160,161,-144,-113]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46113","arcs":[[162,163,164,-146,-108,-138]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46083","arcs":[[165,166,167,168,-154]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46023","arcs":[[-141,169,170,171,172,173,-143]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46125","arcs":[[-155,-169,174,175,176,-158]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46067","arcs":[[-159,-177,177,178,-171,179,-150,-153]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46043","arcs":[[-151,-180,-170,-140]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46053","arcs":[[-174,180,-160,-112]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46047","arcs":[[-165,181,-147]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46007","arcs":[[182,183,-163,-137]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46121","arcs":[[-162,184,-183,-145]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46135","arcs":[[185,186,187,-178,-176]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46009","arcs":[[-188,188,-172,-179]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46127","arcs":[[189,190,-167]]},{"type":"Polygon","properties":{"name":"SD"},"id":"46027","arcs":[[-191,191,-186,-175,-168]]}]},"states":{"type":"GeometryCollection","bbox":[-104.05772848299989,42.48030137500018,-96.4377180009999,45.94566303400006],"geometries":[{"type":"Polygon","properties":{"name":"South Dakota"},"id":"46","arcs":[[10,15,19,25,31,29,47,71,103,120,156,165,189,191,186,188,172,180,160,184,183,163,181,147,109,97,61,12,5]]}]}},"arcs":[[[26996,99967],[5,-284],[0,-3],[0,-61],[-1,-338],[0,-150],[-2,-289],[-1,-442],[-1,-390],[0,-49],[0,-62],[0,-29],[2,-279],[2,-417],[0,-61],[-3,-362],[0,-36],[-1,-302],[0,-73],[3,-496],[1,-161],[0,-180],[0,-182],[-2,-488],[-1,-86],[0,-345],[0,-7],[-1,-33],[-2,-83],[0,-81],[-1,-164],[0,-66],[0,-135],[-1,-88],[0,-8],[0,-96],[-1,-177],[0,-210],[0,-187],[0,-82],[1,-201],[0,-70],[1,-355],[0,-94],[1,-197],[1,-116],[0,-4],[2,-522],[1,-46],[0,-87],[4,-551],[1,-306],[1,-189],[0,-102],[0,-131],[0,-78],[0,-295],[0,-121],[0,-60],[0,-51],[0,-85],[0,-47],[-1,-287],[0,-3],[1,-1950],[0,-57],[1,-213],[1,-289],[1,-136]],[[27007,86342],[1,-372],[1,-399],[0,-64],[0,-1],[-1,-262],[0,-83],[1,-413],[1,-484],[0,-125],[0,-305],[0,-134],[1,-175],[1,-107],[1,-91],[0,-269],[0,-118],[-1,-993],[0,-92],[0,-345],[0,-36],[0,-116],[0,-61],[0,-70],[0,-7],[0,-33],[0,-308],[-1,-132],[-7,-501],[-2,-142],[2,-122],[1,-64],[0,-335],[-1,-37],[0,-2],[0,-10],[0,-48],[1,-40],[0,-47],[-1,-52],[-1,-63],[1,-281],[1,-165],[-1,-42],[0,-15],[-1,-49],[1,-343],[0,-45],[-1,-119],[0,-69],[1,-113],[0,-7],[0,-16],[0,-139],[0,-134],[-1,-707],[0,-321],[1,-170],[0,-9],[0,-22],[0,-4],[-1,-33],[1,-151],[-1,-78],[0,-39],[0,-23],[0,-13],[0,-261],[0,-582],[1,-237],[-1,-56],[1,-327],[0,-26],[0,-17],[0,-19],[0,-60],[-2,-35],[1,-36],[0,-56],[0,-319],[1,-309],[0,-31]],[[27004,73806],[-16,7],[-83,0],[-30,0],[-119,1],[-75,2],[-106,4],[-70,2],[-77,0],[-16,0],[-66,0],[-17,0],[-211,1],[-166,3],[-21,0],[-16,1],[-19,0],[-15,-1],[-121,2],[-186,3],[-7,0],[-100,0],[-109,0],[-227,3],[-50,0],[-133,-1],[-162,1],[-22,0],[-73,1],[-218,0],[-93,0],[-74,0],[-72,1],[-14,-1],[-113,1],[-225,0],[-27,1],[-16,-2],[-28,2],[-93,-3],[-7,0],[-17,1],[-32,2],[-5,0],[-35,3],[-2,0],[-65,-4],[-109,0],[-16,1],[-122,0],[-38,-2],[-253,1],[-81,-1],[-39,0],[-426,-5],[-109,-2],[-379,2],[-362,6],[-23,0],[-16,0],[-23,1],[-272,7],[-15,0],[-111,3],[-112,2],[-191,3],[-203,0],[-61,0],[-51,-1],[-36,0],[-9,0],[-73,1],[-65,0],[-30,-1],[-44,-4],[-168,6],[-31,0],[-167,-1],[-130,-3],[-130,-2],[-368,-9],[-32,0],[-35,-1],[-43,-1],[-1,0],[-163,-3],[-126,-1],[-92,-3],[-79,5],[-29,-2],[-14,-6],[-408,10],[-27,1],[-59,4],[-22,0],[-19,-7],[-20,4],[-133,1],[-53,-1],[-18,0],[-277,-2],[-16,0],[-15,0],[-137,-3],[-21,5],[-18,0],[-18,0],[-19,0],[-248,5],[-89,0],[-28,0],[-62,1],[-20,0],[-15,0],[-318,-1],[-284,1],[-92,1],[-197,0],[-24,0],[-99,0],[-181,0],[-99,1],[-26,0],[-91,-1],[-98,15],[-40,-1],[-489,-4],[-45,0],[-24,0],[-95,-1],[-55,0],[-153,-1],[-86,-3]],[[14440,73850],[0,397],[0,124],[0,227],[0,13],[0,482],[0,222],[0,131],[0,494],[-1,97],[2,294],[1,306],[1,122],[1,390],[0,29],[0,428],[-1,110],[0,150],[0,52],[0,31],[-1,769],[-2,133]],[[14440,78851],[1,145],[-1,387],[0,200],[0,24],[-1,207],[0,55],[0,57],[13,226],[0,51],[-3,137],[-8,463],[2,299],[0,249],[1,429],[9,617],[-2,111],[0,28],[-6,498],[0,78],[-1,44],[1,308],[2,74],[0,47],[0,108],[0,166],[89,-1],[0,52],[0,686],[-2,805],[0,64],[0,46],[-1,274],[0,12],[0,26],[-1,333],[0,92],[0,108],[-1,126],[0,8],[-1,76],[-2,404],[-1,169],[-2,65],[-1,30],[0,39],[0,36],[0,32],[0,40],[0,32],[0,46],[0,50],[0,79],[0,64],[1,43],[-2,32],[-5,42],[6,39],[1,30],[0,49],[-3,43],[3,40],[-1,42],[0,30],[0,7],[0,49],[0,78],[0,38],[1,66],[0,63],[0,75],[0,33],[0,41],[0,51],[0,30],[-1,62],[0,106],[0,71],[0,61],[1,50],[0,68],[5,33],[-5,68],[-1,56],[-1,86],[1,36],[0,96],[0,72],[1,113],[1,70],[0,39],[1,52],[-1,107],[3,97],[0,182],[1,250],[3,400],[0,244],[1,395],[1,117],[0,3],[0,451],[0,48],[0,327],[0,5],[0,80],[0,64],[0,54],[-1,86],[-1,409],[0,424],[0,351],[0,46],[28,6],[2,0],[43,-1],[15,0],[15,0],[-1,209],[0,48],[-1,43],[-2,67],[3,51],[-1,76],[-1,58],[2,59],[0,54],[-2,172],[0,120],[1,301],[0,304],[0,116],[0,59],[0,33],[0,53],[0,45],[0,80],[0,46],[-6,117],[6,35],[0,57],[0,68],[0,38],[0,32],[0,51],[-1,30],[0,41],[0,5],[0,27],[0,30],[0,48],[0,39],[0,35],[0,31],[0,35],[0,32],[0,60],[1,31],[1,99],[-1,35],[0,35],[0,49],[0,32],[0,51],[0,41],[0,35],[0,55],[0,33],[-1,96],[1,91],[0,60],[1,78],[0,33],[0,32],[0,31],[0,39],[1,235],[0,9],[0,23],[0,29],[1,81],[-1,57],[1,56],[0,31],[0,31],[0,50],[-1,38],[0,34],[0,63],[0,40],[0,45],[4,921],[1,316],[1,33],[0,29],[-1,241]],[[14641,99980],[38,1],[35,0],[21,1],[54,0],[51,1],[54,0],[4,0],[26,0],[16,0],[15,0],[14,0],[16,0],[15,0],[20,0],[14,0],[15,0],[16,0],[14,0],[14,0],[17,0],[23,0],[20,0],[20,0],[15,0],[20,0],[15,1],[22,-1],[16,0],[19,0],[15,0],[22,0],[26,0],[22,0],[13,0],[16,0],[15,1],[15,-1],[20,0],[51,0],[84,-1],[28,0],[72,1],[35,1],[427,1],[129,-2],[209,-1],[60,0],[46,0],[63,0],[503,4],[57,0],[133,0],[24,0],[49,0],[318,-4],[22,0],[19,0],[50,2],[27,1],[14,0],[36,0],[219,-1],[35,1],[27,0],[64,-1],[177,3],[12,0],[9,0],[132,-1],[55,-9],[175,0],[40,0],[274,2],[249,1],[18,0],[146,-1],[14,0],[114,0],[14,-1],[14,0],[92,-3],[151,3],[14,1],[19,0],[13,0],[133,1],[25,0],[303,1],[39,0],[262,-2],[17,0],[14,0],[20,1],[21,0],[24,0],[15,0],[14,0],[99,1],[21,0],[27,0],[35,0],[21,0],[18,0],[17,1],[13,-1],[18,0],[16,-2],[15,-2],[255,1],[68,1],[129,2],[40,-2],[16,0],[99,-4],[9,1],[4,0],[16,1],[41,2],[9,-1],[7,0],[22,0],[99,-1],[122,0],[56,0],[6,0],[96,0],[81,0],[14,0],[15,1],[22,-1],[44,0],[214,3],[21,0],[22,-1],[49,-1],[39,0],[17,0],[136,-1],[23,-1],[41,1],[55,-1],[154,-1],[59,-1],[65,1],[16,3],[16,6],[20,8],[14,7],[19,0],[13,-6],[18,-11],[14,-6],[20,0],[102,1],[4,0],[133,1],[34,-1],[255,-2],[13,0],[4,-1],[18,0],[40,0],[37,0],[14,0],[14,0],[15,0],[35,-1],[132,1],[32,-1],[45,0],[21,0],[117,-1],[14,0],[17,0],[14,2],[15,-2],[19,0],[51,0],[26,0],[50,0],[19,0],[19,0],[31,0],[17,-1],[31,0],[21,-1],[5,0],[20,-1],[20,1],[19,1],[82,1],[55,-1],[28,-1],[8,0],[18,0],[20,1],[15,0],[16,0],[20,0],[25,0],[36,0],[13,0],[52,0],[16,1],[14,8],[18,0],[34,0],[48,-1],[19,0],[16,-1],[238,-1],[29,0],[79,0],[37,-2],[43,-1],[54,1],[30,0],[42,-1],[59,-1],[88,-1],[113,-3],[124,-1],[26,1],[25,3],[97,-3],[17,0],[141,-2],[15,0],[97,-1],[60,0],[31,1],[46,0]],[[46531,99942],[-1,-115],[-4,-292],[287,-326],[171,-159],[132,-94],[19,7],[92,32],[328,117],[109,-22],[70,-169],[24,-269],[-47,-249],[-29,-152],[-17,-74],[12,-83],[154,-174],[309,-118],[31,-11],[236,-63],[9,-8],[93,-93],[0,-184],[-199,-566],[-52,-121],[-15,-34],[-46,-105],[-35,-73],[1,-155],[214,-387],[32,-51],[29,-98],[25,-101],[56,-226],[103,-427],[20,-116],[60,-206],[28,-95],[8,-26],[20,-68],[69,-237],[184,-550],[61,-185],[71,-275],[52,-205],[11,-193],[-9,-332],[-11,-49],[-46,-194],[-30,-131],[-30,-93],[-33,-59],[-36,-44],[-95,-99],[-69,-71],[-7,-7],[-15,-17],[-101,-48],[-120,-29],[-274,15],[-20,-2],[-46,-5],[-18,-7],[-79,-32],[-66,-40],[-126,-143],[-58,-89],[-8,-30],[-21,-85],[-11,-43],[-45,-179],[-77,-306],[-101,-634],[-35,-223],[-2,-13],[-11,-80]],[[47606,89874],[-8,-90],[-17,-82],[-28,-90],[-38,-93],[-49,-102],[-36,-57],[-19,-27],[-75,-107],[-50,-62],[-27,-23],[-34,-29],[-39,-24],[-29,-25],[-31,-26],[-18,-29],[-4,-6],[-12,-20],[-11,-18],[-33,-53],[-37,-57],[-27,-56],[-33,-83],[-34,-90],[-18,-59],[-16,-65],[-10,-55],[-5,-57],[-3,-61],[0,-53],[0,-45],[0,-38],[11,-53],[17,-58],[26,-77],[20,-73],[24,-68],[30,-59],[26,-45],[41,-53],[33,-35],[44,-47],[36,-36],[40,-41],[40,-33],[41,-29],[44,-24],[44,-23],[42,-15],[48,-5],[55,4],[37,0],[49,-4],[15,0],[15,-1],[42,2],[44,-1],[37,-4],[32,-4],[7,-1],[41,-10],[13,-3],[17,-2],[39,4],[37,8],[8,3],[29,10],[35,19],[33,17],[33,17],[20,12],[36,0],[29,-2],[31,-14],[30,-22],[28,-32],[23,-26],[22,-30],[13,-19],[24,-33],[38,-54],[40,-61],[36,-56],[35,-78],[9,-19],[186,-439],[69,-214],[4,-28]],[[48763,86357],[-195,-2],[-22,2],[-11,1],[-70,-5],[-80,-1],[-5,0],[-61,0],[-250,-4],[-121,4],[-247,-1],[-133,0],[-33,-2],[-165,-2],[-15,0],[-251,5],[-162,-2],[-21,0],[-153,3],[-44,1],[-47,2],[-101,-3],[-57,5],[-61,2],[-14,-1],[-17,-3],[-75,-2],[-238,0],[-68,0],[-132,1],[-8,0],[-351,-9],[-133,2],[-110,1],[-6,0],[-73,-5],[-93,5],[-69,2],[-35,3],[-142,-2],[-50,0],[-59,-1],[-249,-3],[-64,-1],[-16,0],[-14,0],[-15,0],[-17,0],[-18,0],[-16,0],[-15,0],[-19,0],[-14,0],[-16,0],[-27,0],[-2,0],[-14,0],[-15,0],[-14,0],[-13,0],[-14,1],[-17,0],[-15,0],[-17,0],[-16,0],[-19,0],[-16,0],[-15,0],[-18,0],[-17,0],[-13,0],[-13,0],[-15,0],[-14,0],[-18,0],[-17,0],[-14,0],[-17,0],[-13,0],[-13,0],[-18,0],[-15,0],[-15,0],[-15,0],[-14,0],[-14,0],[-14,0],[-14,0],[-14,0],[-17,0],[-16,0],[-15,0],[-17,0],[-19,0],[-17,0],[-14,1],[-17,0],[-17,0],[-15,0],[-17,0],[-17,0],[-15,0],[-14,0],[-18,0],[-16,0],[-15,0],[-15,0],[-17,0],[-15,0],[-14,0],[-16,0],[-14,0],[-18,0],[-20,0],[-16,0],[-14,0],[-13,0],[-17,0],[-13,0],[-14,0],[-16,0],[-16,0],[-14,0],[-15,0],[-16,0],[-16,0],[-15,0],[-16,0],[-18,0],[-16,0],[-16,0],[-15,0],[-14,0],[-17,0],[-13,0],[-17,0],[-16,0],[-14,1],[-16,0],[-19,0],[-14,0],[-4,0],[-11,0],[-14,0],[-19,0],[-19,0],[-19,0],[-17,0],[-16,0],[-14,0],[-16,0],[-15,0],[-17,0],[-16,0],[-8,0],[-11,0],[-14,0],[-20,0],[-16,0],[-15,0],[-17,0],[-15,0],[-13,0],[-16,0],[-18,0],[-16,-1],[-5,0],[-10,0],[-14,0],[-14,0],[-16,0],[-14,0],[-14,0],[-14,0],[-16,0],[-13,0],[-17,0],[-16,0],[-15,0],[-14,0],[-13,0],[-4,0],[-12,0],[-17,0],[-17,0],[-17,0],[-17,0],[-15,0],[-15,0],[-14,0],[-15,0],[-17,0],[-15,0],[-17,0],[-17,0],[-18,0],[-16,0],[-16,0],[-13,0],[-17,0],[-16,0],[-18,0],[-14,0],[-16,0],[-13,0],[-14,0],[-16,0],[-16,0],[-14,0],[-16,0],[-18,0],[-19,0],[-19,0],[-16,0],[-6,0],[-10,0],[-14,0],[-18,0],[-15,0],[-16,0],[-13,0],[-18,0],[-9,0],[-4,0],[-16,0],[-16,0],[-16,0],[-16,0],[-14,0],[-17,0],[-16,0],[-15,0],[-17,0],[-20,0],[-15,0],[-14,0],[-14,0],[-16,0],[-14,0],[-19,0],[-14,0],[-18,0],[-18,1],[-16,0],[-16,0],[-16,0],[-18,0],[-16,0],[-15,0],[-16,0],[-16,0],[-15,0],[-17,0],[-15,0],[-16,0],[-15,0],[-13,0],[-16,0],[-15,1],[-16,0],[-18,0],[-13,0],[-13,0],[-15,0],[-14,0],[-15,0],[-14,0],[-14,0],[-17,0],[-14,0],[-14,0],[-15,0],[-16,0],[-14,0],[-15,0],[-15,0],[-15,0],[-14,0],[-14,0],[-16,0],[-14,0],[-16,0],[-15,0],[-14,0],[-16,0],[-15,0],[-16,0],[-16,0],[-15,0],[-17,0],[-14,0],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-13,0],[-16,0],[-14,0],[-16,0],[-13,0],[-13,0],[-17,0],[-14,0],[-15,0],[-15,0],[-14,0],[-16,0],[-16,0],[-14,0],[-16,0],[-17,0],[-17,0],[-17,0],[-17,0],[-13,0],[-14,0],[-16,0],[-15,0],[-16,-1],[-14,0],[-14,0],[-17,0],[-18,0],[-16,0],[-17,0],[-18,0],[-15,0],[-6,0],[-11,1],[-14,0],[-15,0],[-15,0],[-14,1],[-14,0],[-14,0],[-16,0],[-14,0],[-16,0],[-16,0],[-14,0],[-14,-1],[-16,0],[-16,0],[-10,0],[-7,0],[-18,0],[-17,0],[-13,0],[-15,0],[-17,0],[-14,0],[-14,0],[-17,-1],[-15,0],[-14,0],[-13,0],[-18,0],[-17,0],[-17,0],[-15,0],[-14,0],[-14,0],[-18,0],[-16,0],[-16,0],[-13,0],[-16,0],[-15,0],[-14,0],[-13,0],[-16,0],[-14,0],[-17,0],[-17,0],[-16,0],[-1,0],[-3,0],[-12,0],[-7,-1],[-53,0],[-13,0],[-270,0],[-261,-3],[-105,-1],[-42,3],[-24,-1],[-101,-2],[-61,0],[-258,2],[-384,0],[-120,1],[-381,2],[-57,1],[-31,0],[-65,1],[-44,0],[-16,0],[-17,0],[-15,0],[-16,-1],[-16,0],[-14,0],[-17,0],[-17,0],[-14,0],[-16,0],[-16,0],[-13,0],[-14,0],[-14,0],[-20,0],[-14,0],[-14,0],[-15,1],[-14,0],[-22,0],[-15,0],[-15,0],[-16,0],[-20,0],[-15,0],[-16,0],[-14,0],[-14,0],[-18,0],[-14,0],[-19,0],[-20,0],[-18,0],[-18,0],[-16,0],[-15,0],[-19,0],[-15,0],[-16,0],[-26,0],[-15,0],[-17,0],[-16,0],[-19,-1],[-13,0],[-19,0],[-18,0],[-15,0],[-16,0],[-16,0],[-16,0],[-18,0],[-15,0],[-14,0],[-15,0],[-15,0],[-17,0],[-30,-1],[-16,-2],[-18,-3],[-47,1],[-256,4],[-115,-1],[-25,0],[-52,-4],[-23,4],[-30,-1],[-28,-1],[-31,-1],[-155,2],[-84,-6],[-115,0],[-158,9],[-105,-1],[-1,0],[-14,0],[-418,-2],[-7,0],[-15,0],[-16,0],[-17,0],[-13,0],[-16,0],[-17,-1],[-18,1],[-17,0],[-36,-1],[-122,-4],[-177,-1],[-66,0]],[[33957,86342],[-280,4],[-40,1],[-77,-5],[-275,2],[-30,0],[-255,-5],[-211,2],[-2,0],[-101,1],[-427,-4],[-74,1],[-43,0],[-212,2],[-272,-4],[-117,0],[-77,5],[-104,2],[-4,0],[-102,3],[-50,1],[-89,2],[-194,-2],[-141,1],[-60,-1],[-303,-4],[-58,2],[-80,2],[-103,-1],[-154,1],[-119,0],[-91,1],[-10,0],[-170,1],[-284,2],[-89,-1],[-160,0],[-23,0],[-15,1],[-23,2],[-145,-2],[-48,2],[-23,1],[-40,0],[-67,1],[-5,-1],[-72,-9],[-32,4],[-133,-2],[-39,1],[-358,-8],[-411,1],[-56,3],[-166,4],[-75,0],[-284,-6],[-77,-1]],[[26996,99967],[8,1],[18,2],[37,-2],[49,-1],[12,0],[25,0],[154,-1],[24,0],[27,0],[118,0],[15,0],[40,0],[44,0],[18,0],[13,0],[13,0],[25,-1],[15,0],[21,1],[34,-1],[15,1],[20,1],[2,0],[20,-2],[14,1],[25,-2],[44,1],[135,2],[41,1],[122,2],[204,4],[136,1],[158,-1],[14,-2],[161,-1],[120,0],[101,-1],[126,0],[31,-1],[116,-1],[105,-1],[32,-3],[84,-1],[209,-2],[22,0],[48,0],[34,0],[13,1],[21,0],[20,1],[16,0],[14,0],[16,0],[17,0],[16,0],[14,0],[15,-1],[15,0],[17,0],[30,0],[20,0],[13,0],[69,1],[14,0],[19,0],[19,0],[32,0],[16,-1],[17,0],[29,0],[27,0],[15,0],[14,0],[49,0],[20,0],[36,-1],[15,0],[41,-1],[19,0],[36,-1],[53,1],[14,0],[44,0],[132,0],[106,0],[84,0],[55,0],[66,0],[13,0],[28,-1],[17,-3],[176,4],[114,-2],[160,0],[18,0],[69,0],[90,2],[56,0],[44,2],[64,-3],[400,2],[177,-1],[189,-4],[25,1],[17,-1],[30,0],[30,-1],[23,0],[147,1],[16,0],[56,0],[63,0],[110,-4],[148,2],[129,0],[16,6],[229,-7],[29,-1],[36,-1],[18,0],[176,-3],[51,0],[84,-1],[154,-1],[101,0],[40,-1],[110,0],[14,0],[110,2],[134,2],[372,7],[27,0],[15,-1],[14,0],[17,0],[11,2],[6,1],[21,-3],[20,-1],[35,0],[20,0],[46,-1],[14,0],[71,1],[46,0],[31,0],[126,0],[24,1],[45,0],[149,-2],[1,0],[52,0],[16,1],[51,0],[85,-2],[190,-1],[161,3],[45,1],[99,-3],[179,4],[62,-3],[50,-3],[3,0],[214,2],[20,1],[23,-1],[17,0],[25,0],[15,0],[26,0],[22,0],[32,0],[18,0],[17,-3],[27,0],[13,0],[20,0],[18,0],[24,0],[168,1],[24,0],[92,0],[47,1],[60,0],[112,-2],[17,0],[51,0],[151,0],[36,0],[104,-1],[92,-1],[35,1],[109,5],[44,0],[90,-1],[18,-3],[21,-1],[36,0],[280,-10],[137,-2],[127,-1],[15,0],[126,0],[22,0],[3,0],[77,0],[254,3],[40,0],[169,2],[77,0],[262,6],[41,0],[27,0],[51,-1],[89,-1],[58,0],[249,3],[34,1],[45,-3],[270,1],[247,1],[9,0],[32,-1],[36,1],[91,-3],[54,-1],[6,-1],[21,0],[200,0],[29,0],[16,0],[20,-2],[58,2],[2,0],[35,0],[41,-2],[104,1],[13,-1],[19,0],[22,0],[43,0],[64,0],[151,2],[45,0],[137,2],[90,1],[44,0],[60,1],[136,-1],[16,0],[17,1],[33,-1],[27,1],[40,-1],[40,0],[142,-3],[37,0],[352,9],[21,1],[157,-2],[150,-2],[323,-3],[103,-2],[102,-1],[24,0],[75,-1],[22,0],[30,0],[224,1],[32,0],[15,-1],[1,0],[19,-2],[20,0],[85,0],[59,0],[34,0],[32,0],[256,5],[102,1],[14,0],[21,-1],[106,0],[23,0],[79,0],[16,0],[73,0],[50,-2],[152,-1],[92,2],[26,0],[4,0],[12,0],[199,-1]],[[14440,78851],[-362,-8],[-203,0],[-73,13],[-215,0],[-168,0],[-1,0],[-84,0],[-1,0],[-58,0],[-1,0],[-138,-1],[-1,0],[-27,0],[-42,0],[-2,0],[-235,0],[-389,0],[-205,0],[-58,0],[-134,-1],[-19,0],[-15,0],[-69,0],[-9,0],[-184,0],[-21,0],[-688,-1],[-70,-1],[-6,0],[-368,0],[-428,2],[-127,0],[-149,1],[-431,2],[-146,1],[-14,0],[-104,0],[-134,1],[-107,0],[-84,0],[-32,-1],[-334,3],[-36,-1],[-67,1],[-119,0],[-159,1],[-95,0],[-275,1],[-265,1],[-175,-14],[-100,0],[-94,0],[-171,0],[-99,1],[-66,0],[-95,4],[-8,1],[-181,8],[-132,0],[-211,0],[-289,0],[-26,0],[-168,-1],[-75,0],[-90,0],[-149,0],[-91,0],[-242,0],[-16,0],[-18,0],[-123,0],[-69,0],[-14,0],[-32,0],[-3,0],[-292,-1],[-28,0],[-88,0],[-149,0],[-162,0],[-323,0],[-280,0],[-169,-1],[-647,0],[-45,0],[-176,0],[-253,4],[-140,3],[-16,0],[-3,0],[-56,-2],[-465,-5],[-259,-3],[-2,0],[-196,-5],[-251,0],[-98,1],[-171,0],[-160,0],[-4,0],[-85,-1]],[[233,78853],[0,67],[0,11],[0,261],[1,713],[-1,441],[-1,421],[-1,470],[-1,377],[-1,399],[-1,195],[2,198],[1,40],[-2,126],[-1,105],[0,46],[1,447],[2,338],[-1,150],[-3,407],[-1,461],[0,38],[0,9],[-1,640],[0,118],[-1,337],[-1,129],[0,3],[-1,166],[0,54],[0,2],[0,37],[-2,137],[0,3],[-1,68],[-3,241],[0,29],[0,9],[-1,70],[0,151],[-2,112],[5,28],[-1,68],[0,48],[0,45],[0,33],[0,37],[0,101],[0,47],[-1,35],[0,56],[0,63],[-1,43],[1,45],[-1,47],[0,44],[0,40],[0,63],[0,48],[-1,33],[0,41],[0,55],[0,51],[0,39],[-1,38],[0,32],[0,49],[0,65],[0,30],[0,35],[-1,30],[0,9],[0,46],[0,49],[0,43],[-1,37],[0,62],[0,28],[0,21],[1,40],[0,58],[0,42],[-1,31],[0,60],[-4,294],[-1,331],[0,67],[-1,197],[-1,143],[0,120],[-1,298],[-1,507],[0,256],[0,18],[0,43],[-1,742],[0,108],[-1,109],[0,238],[0,483],[-1,341],[-1,845],[0,3],[1,414],[-1,83],[0,66],[-1,170],[-2,540],[-1,107],[-10,2195],[-1,256],[-2,31],[0,34],[-1,39],[2,87],[-2,200],[-5,477],[-2,241],[0,2],[-2,153],[0,2],[-1,128],[-1,42],[-1,128],[-1,74],[-2,220],[0,34],[-4,329],[156,-1],[18,0],[8,0],[107,-1],[269,-1],[31,0],[141,1],[1,0],[93,0],[6,0],[143,1],[4,0],[230,0],[19,0],[370,1],[212,1],[75,-5],[38,1],[17,0],[50,-2],[37,-1],[36,-2],[169,1],[36,3],[90,0],[160,2],[29,2],[45,-3],[37,-3],[39,3],[347,0],[269,0],[101,-1],[36,0],[454,2],[71,-6],[28,1],[123,0],[164,1],[41,0],[70,1],[280,1],[38,0],[135,0],[16,1],[56,0],[51,1],[73,-1],[20,0],[15,0],[77,1],[37,0],[343,1],[94,0],[64,0],[376,0],[102,1],[46,2],[37,-1],[49,-1],[15,0],[28,0],[23,1],[18,-1],[21,0],[18,1],[216,-3],[70,0],[111,0],[277,0],[75,0],[86,-9],[108,2],[73,2],[98,2],[81,2],[16,0],[265,2],[101,0],[34,0],[34,1],[30,-6],[34,0],[16,0],[28,0],[15,0],[15,0],[21,0],[22,0],[14,3],[73,-1],[13,2],[249,-7],[19,-1],[16,0],[265,5],[30,0],[169,0],[37,0],[143,0],[55,0],[5,0],[49,0],[4,0],[66,0],[64,0],[2,0],[8,0],[108,0],[3,0],[70,0],[130,0],[168,0],[196,0],[219,1],[30,-1],[70,0],[350,2],[50,-1],[26,-1],[18,2],[51,0],[54,0],[130,1],[145,-2],[20,0],[33,0],[27,1],[22,-1],[15,-1],[14,2],[14,0],[25,1],[19,-1],[16,-2],[24,-1],[17,1],[14,-1],[21,2],[25,-1],[17,0],[14,0],[17,0],[21,-1],[20,-1],[24,1],[23,0],[15,0],[14,0],[21,0],[18,0],[34,0],[53,0],[42,1],[34,-1],[22,0],[7,0],[20,1],[70,0],[13,0],[22,-1],[113,0],[28,0],[22,0],[57,-1],[37,1],[20,1],[60,0],[21,0],[37,0],[44,-1],[40,0],[58,0],[17,1],[39,-1],[18,1],[15,-1],[96,1],[4,0],[32,-1],[43,0],[16,1],[51,-1],[15,0],[25,0],[25,0],[17,2],[17,-1],[15,0],[13,0],[17,2],[17,-1],[18,1],[17,1],[24,0],[25,2],[90,0],[41,-2],[1,0],[88,-1],[49,0],[177,-1],[63,-1],[77,2],[22,-1],[22,-1],[40,-2],[70,0],[50,-1],[21,0],[34,0],[70,0],[23,0],[2,0],[40,0],[1,0],[58,-1],[20,0],[18,0],[16,0],[100,0],[2,0],[18,0]],[[56950,99861],[0,-47],[0,-33],[0,-32],[0,-37],[0,-35],[0,-32],[0,-44],[0,-34],[0,-37],[1,-30],[0,-35],[0,-36],[0,-32],[0,-39],[0,-37],[0,-32],[0,-33],[0,-36],[0,-34],[0,-32],[0,-47],[0,-32],[0,-38],[0,-35],[0,-29],[0,-35],[0,-31],[0,-32],[0,-62],[0,-35],[0,-34],[0,-37],[0,-32],[0,-34],[0,-39],[0,-33],[0,-31],[0,-30],[0,-43],[0,-50],[0,-31],[0,-31],[0,-37],[0,-34],[0,-31],[0,-29],[0,-35],[0,-30],[0,-35],[0,-33],[0,-37],[1,-33],[0,-37],[0,-37],[0,-36],[0,-33],[0,-30],[0,-36],[0,-38],[0,-36],[0,-27],[0,-7],[0,-32],[0,-33],[0,-40],[1,-238],[0,-33],[0,-36],[0,-34],[0,-38],[0,-32],[0,-35],[0,-32],[0,-32],[0,-31],[0,-37],[0,-38],[0,-35],[-1,-436],[0,-404],[1,-1254],[0,-1],[0,-44],[0,-41],[0,-37],[1,-43],[0,-35],[-1,-31],[0,-37],[0,-36],[1,-32],[0,-35],[0,-37],[-1,-37],[0,-38],[0,-33],[0,-35],[0,-40],[0,-35],[0,-33],[0,-34],[0,-35],[0,-32],[0,-31],[0,-37],[1,-426],[0,-343],[4,-60],[0,-109],[0,-373],[-1,-176],[1,-134],[-2,-80],[0,-36],[0,-38],[0,-40],[0,-28],[1,-40],[0,-37],[0,-41],[0,-35],[0,-29],[0,-34],[0,-34],[-1,-437],[0,-36],[0,-41],[0,-30],[0,-36],[0,-29],[0,-31],[0,-32],[0,-36],[0,-35],[1,-36],[0,-35],[0,-30],[0,-37],[0,-38],[0,-34],[0,-30],[0,-31],[0,-36],[0,-32],[0,-41],[0,-35],[0,-31],[0,-33],[0,-36],[1,-838]],[[56958,89834],[-145,-2],[-272,-5],[-20,0],[-28,-1],[-49,4],[-28,3],[-15,0],[-17,0],[-16,0],[-17,0],[-16,0],[-15,0],[-14,0],[-15,1],[-16,0],[-132,-4],[-270,2],[-16,0],[-16,0],[-13,0],[-17,0],[-15,0],[-14,0],[-16,0],[-16,0],[-16,0],[-19,0],[-16,0],[-17,0],[-14,0],[-15,0],[-17,0],[-14,0],[-18,1],[-82,-4],[-190,-1],[-53,0],[-105,4],[-272,2],[-16,1],[-19,0],[-58,3],[-18,0],[-4,0],[-12,0],[-16,0],[-16,0],[-15,0],[-17,1],[-13,0],[-18,0],[-14,0],[-17,0],[-15,1],[-17,0],[-15,0],[-18,0],[-13,0],[-16,0],[-14,0],[-16,1],[-18,0],[-14,0],[-17,0],[-14,0],[-17,0],[-16,0],[-16,0],[-14,0],[-17,0],[-20,0],[-13,0],[-16,0],[-14,0],[-15,0],[-15,0],[-16,0],[-16,0],[-18,1],[-14,0],[-19,0],[-16,0],[-15,0],[-15,0],[-16,0],[-19,1],[-13,0],[-14,0],[-13,0],[-15,0],[-16,0],[-19,0],[-16,0],[-15,0],[-18,1],[-16,0],[-18,0],[-13,0],[-17,0],[-17,0],[-16,0],[-16,0],[-13,0],[-15,0],[-17,0],[-17,0],[-15,0],[-15,0],[-16,0],[-16,0],[-14,0],[-15,1],[-16,0],[-14,0],[-15,0],[-15,0],[-14,0],[-15,0],[-17,0],[-52,1],[-167,3],[-20,-1],[-42,2],[-90,-3],[-87,0],[-22,0],[-23,0],[-14,0],[-37,0],[-14,0],[-15,0],[-27,0],[-19,0],[-18,0],[-14,1],[-16,0],[-17,0],[-17,0],[-17,0],[-17,0],[-14,0],[-17,0],[-16,0],[-14,0],[-15,1],[-16,0],[-18,0],[-13,0],[-14,0],[-15,0],[-15,0],[-18,0],[-19,0],[-17,0],[-15,0],[-16,0],[-16,0],[-15,0],[-18,0],[-14,1],[-17,0],[-15,0],[-15,0],[-17,1],[-16,0],[-16,0],[-15,0],[-18,0],[-13,0],[-20,0],[-16,0],[-19,0],[-5,0],[-10,0],[-18,0],[-17,0],[-13,0],[-16,0],[-18,0],[-20,1],[-19,0],[-17,0],[-13,0],[-14,0],[-17,0],[-17,0],[-18,1],[-17,0],[-15,0],[-16,0],[-17,0],[-14,0],[-18,0],[-16,1],[-18,0],[-17,0],[-16,0],[-16,0],[-13,0],[-15,0],[-15,0],[-17,1],[-17,0],[-13,0],[-14,0],[-17,0],[-19,0],[-17,0],[-16,1],[-14,0],[-17,0],[-14,0],[-17,1],[-15,0],[-207,1],[-16,0],[-17,0],[-14,0],[-15,0],[-16,0],[-19,1],[-18,0],[-18,0],[-15,0],[-14,0],[-17,0],[-17,0],[-17,0],[-14,0],[-16,0],[-14,1],[-14,0],[-16,0],[-15,0],[-16,0],[-17,1],[-16,0],[-13,0],[-13,0],[-17,0],[-17,1],[-19,0],[-14,0],[-14,0],[-19,0],[-17,1],[-14,0],[-19,0],[-17,0],[-17,0],[-13,0],[-15,1],[-18,0],[-15,0],[-14,0],[-15,0],[-18,0],[-16,0],[-15,0],[-17,0],[-13,0],[-15,0],[-19,0],[-16,0],[-14,0],[-14,0],[-17,0],[-17,0],[-15,0],[-17,1],[-17,0],[-18,0],[-14,0],[-15,0],[-16,0],[-14,-1],[-14,0],[-16,0],[-16,0],[-18,0],[-14,0],[-17,0],[-15,0],[-17,0],[-18,1],[-18,0],[-20,0],[-16,0],[-19,0],[-18,0],[-15,0],[-15,0],[-15,0],[-16,0],[-16,0],[-17,0],[-16,0],[-14,0],[-16,0],[-17,0],[-18,0],[-19,0],[-20,0],[-15,0],[-15,0],[-16,0],[-14,0],[-16,0],[-19,0],[-16,0],[-15,0],[-18,0],[-17,0],[-19,0],[-17,1],[-19,0],[-15,0],[-16,0],[-17,0],[-17,0],[-17,0],[-15,0],[-16,0],[-18,0],[-13,0],[-20,0],[-14,0],[-17,0],[-15,0],[-14,0],[-6,0],[-12,0],[-15,0],[-15,0],[-15,1],[-18,0],[-18,0],[-16,0],[-18,0],[-13,0],[-17,0],[-19,0],[-13,0],[-18,0],[-18,0],[-17,0],[-17,0],[-16,0],[-14,0],[-14,0],[-19,0],[-18,0],[-14,0],[-18,0],[-15,0],[-14,0],[-18,0],[-14,0],[-14,0],[-19,0],[-16,0],[-16,0],[-18,0],[-14,0],[-15,0],[-14,0],[-15,0],[-13,0],[-16,0],[-17,0],[-14,0],[-15,0],[-15,0],[-18,0],[-17,0],[-18,0],[-15,0],[-16,0],[-16,0],[-14,0],[-15,0],[-16,0],[-16,0],[-14,0],[-14,0],[-17,0],[-15,0],[-13,0],[-17,0],[-15,0],[-15,0],[-15,0],[-18,0],[-16,0],[-13,1],[-18,0],[-14,0],[-14,0],[-16,0],[-18,0],[-16,0],[-17,1],[-14,0],[-16,0],[-14,0],[-16,0],[-14,0],[-17,1],[-15,0],[-20,0],[-13,0],[-18,0],[-16,0],[-16,0],[-15,0],[-16,0],[-18,1],[-14,0],[-15,0],[-16,0],[-17,0],[-16,0],[-16,0],[-14,3],[-74,-3],[-20,-2],[-130,0],[-2,1],[-34,0],[-161,2],[-25,0],[-28,1],[-78,1]],[[46531,99942],[300,-1],[318,-1],[111,-1],[18,0],[15,0],[15,0],[20,0],[14,0],[14,0],[15,0],[19,0],[16,0],[20,0],[14,-1],[14,0],[34,0],[40,0],[29,0],[23,-1],[23,0],[1,0],[31,0],[46,-1],[68,1],[23,0],[19,-3],[18,2],[24,0],[20,-1],[22,-1],[21,-1],[383,-7],[86,7],[18,0],[17,1],[19,-1],[171,-5],[320,1],[296,0],[158,-6],[6,0],[25,0],[43,-2],[17,0],[15,0],[16,0],[17,-1],[16,-1],[20,1],[93,0],[233,2],[100,0],[46,1],[31,-1],[28,-1],[182,-3],[203,-2],[38,-1],[52,-1],[77,0],[65,-1],[48,-1],[46,-1],[226,-4],[138,-2],[107,-1],[18,1],[120,3],[22,-1],[193,-8],[41,3],[132,0],[20,-2],[17,0],[14,1],[1,0],[24,-1],[16,-1],[14,1],[17,-1],[14,1],[36,-2],[43,-1],[18,1],[33,-1],[22,0],[22,0],[28,0],[33,0],[14,-1],[90,-1],[45,0],[15,0],[28,0],[13,-1],[14,1],[26,1],[16,-1],[17,0],[17,0],[18,-1],[17,0],[14,0],[17,-1],[27,1],[22,0],[22,-1],[31,0],[26,-1],[14,0],[19,2],[25,0],[19,0],[24,0],[26,1],[29,-1],[21,-1],[29,0],[16,-1],[26,-1],[28,-1],[26,1],[17,0],[15,0],[44,2],[36,-1],[14,0],[17,0],[18,0],[16,-1],[16,0],[20,0],[29,0],[63,-2],[184,0],[17,-1],[14,1],[13,0],[21,0],[216,-2],[22,1],[30,-2],[68,-1],[33,-1],[62,1],[53,-2],[25,0],[38,0],[28,0],[15,-1],[55,-1],[18,-1],[18,0],[15,1],[24,-1],[33,0],[30,0],[55,1],[51,0],[49,-2],[22,1],[70,-2],[27,-1],[20,0],[31,1],[28,-3],[37,0],[21,2],[17,-1],[34,-1],[61,1],[23,0],[80,-2],[15,0],[16,1],[15,-2],[16,-1],[15,2],[19,-1],[14,-2],[20,0],[14,0],[20,1],[14,1],[19,-1],[16,0],[46,-1],[17,-2],[27,1],[14,-2],[15,0],[36,0],[22,1],[13,-1],[20,1],[20,0],[15,-1],[8,0],[15,0],[49,0],[75,-1],[19,0],[18,0],[41,-1],[43,0],[13,0],[36,0],[18,-1],[81,0],[63,-1],[20,0],[55,-1],[39,0],[53,-1],[16,0],[21,0],[21,0],[15,0],[20,0],[5,0],[13,0],[70,-1],[99,-1],[52,-1],[52,0],[70,0],[57,0],[22,-1],[20,0],[116,0],[150,1],[17,0],[26,1],[33,0],[47,1]],[[69991,99796],[0,-38],[0,-43],[0,-38],[0,-32],[0,-32],[0,-35],[0,-34],[0,-38],[0,-14],[0,-26],[0,-31],[0,-30],[0,-41],[-1,-34],[0,-41],[0,-30],[0,-30],[0,-38],[0,-39],[0,-36],[0,-38],[0,-35],[0,-32],[0,-33],[0,-37],[0,-32],[0,-35],[0,-38],[0,-35],[0,-32],[0,-35],[0,-37],[0,-35],[0,-31],[0,-32],[-1,-32],[0,-434],[-1,-178],[-1,-346],[0,-3],[0,-51],[0,-53],[0,-3],[0,-151],[0,-50],[1,-415],[-1,-222],[0,-197],[1,-417],[2,-419],[-2,-417],[-3,-339],[0,-6],[0,-82],[-1,-115],[0,-30],[0,-40],[0,-32],[0,-36],[0,-33],[0,-35],[0,-35],[0,-37],[0,-33],[0,-31],[0,-38],[0,-32],[0,-36],[0,-34],[-1,-31],[0,-32],[0,-40],[0,-31],[0,-33],[0,-40],[0,-35],[0,-31],[0,-32],[0,-38],[0,-30],[0,-43],[0,-33],[0,-40],[0,-30],[0,-35],[0,-39],[-1,-42],[0,-12],[0,-20],[0,-39],[0,-37],[0,-232],[0,-31],[0,-29],[0,-30],[0,-70],[1,-328],[0,-3],[0,-33],[1,-32],[0,-75],[0,-33],[1,-269],[-4,-421],[0,-41],[0,-33],[0,-60],[0,-37],[-1,-29],[0,-31],[0,-31],[0,-29],[0,-33],[0,-29],[0,-56],[0,-30],[-1,-30],[0,-37],[-1,-44],[3,-281],[0,-264],[0,-26],[-2,-132],[0,-36],[0,-34],[0,-35],[0,-37],[0,-30],[0,-31],[-1,-33],[0,-32],[0,-38],[0,-30],[0,-33],[0,-30],[2,-360],[1,-34],[3,-40]],[[69984,89772],[-16,0],[-14,0],[-17,0],[-15,0],[-272,6],[-170,3],[-45,1],[-22,0],[-70,2],[-88,1],[-45,1],[-48,1],[-133,2],[-93,2],[-295,6],[-21,0],[-16,1],[-80,1],[-72,2],[-19,1],[-140,0],[-133,0],[-522,1],[-47,0],[-225,-1],[-18,0],[-17,1],[-19,1],[-12,1],[-16,-1],[-18,0],[-22,0],[-147,1],[-26,0],[-32,0],[-45,0],[-66,1],[-26,0],[-87,-1],[-64,0],[-16,0],[-26,-1],[-27,-1],[-144,1],[-49,0],[-30,0],[-90,1],[-94,0],[-14,0],[-23,0],[-42,0],[-43,0],[-151,-1],[-64,0],[-21,0],[-121,1],[-64,1],[-378,-3],[-24,0],[-163,1],[-216,3],[-1,0],[-222,2],[-291,0],[-79,0],[-119,1],[-319,0],[-185,0],[-180,0],[-42,5],[-14,-4],[-28,-1],[-190,2],[-193,1],[-105,0],[-17,0],[-207,-1],[-13,2],[-16,2],[-455,0],[-27,0],[-38,0],[-37,0],[-52,0],[-19,0],[-21,0],[-145,1],[-1,0],[-235,3],[-34,0],[-219,-7],[-23,1],[-28,0],[-43,0],[-53,1],[-165,0],[-14,0],[-16,0],[-180,0],[-14,0],[-58,-1],[-337,7],[-33,0],[-17,0],[-119,0],[-25,0],[-17,0],[-94,-1],[-30,-1],[-129,2],[-56,1],[-16,-2],[-100,1],[-28,0],[-38,0],[-31,2],[-20,0],[-18,0],[-15,0],[-16,0],[-20,0],[-22,0],[-58,1],[-55,0],[-206,2],[-117,0],[-32,0],[-16,1],[-14,1],[-26,-1],[-21,0],[-114,2],[-147,-3],[-77,3],[-91,-4],[-96,0],[-19,0],[-155,4],[-54,-1],[-40,1],[-22,0],[-145,2],[-82,-1],[-42,-1],[-33,0],[-14,0],[-14,0],[-1,0],[-43,0],[-17,0],[-36,0],[-163,3],[-17,0],[-349,1],[-270,0]],[[57086,89833],[-128,1]],[[56950,99861],[59,1],[28,0],[183,3],[62,1],[26,0],[14,-1],[169,-1],[65,1],[209,0],[20,0],[159,1],[91,1],[71,-1],[109,0],[94,0],[24,0],[15,0],[7,0],[13,-1],[14,0],[63,0],[137,-1],[67,0],[200,-3],[45,-1],[28,-1],[123,-1],[14,-1],[62,0],[67,0],[210,-3],[72,-1],[34,-1],[163,-2],[39,0],[21,-1],[79,0],[93,-2],[38,0],[78,1],[88,-1],[82,-1],[25,0],[79,-1],[16,0],[180,-1],[78,-1],[73,0],[200,0],[194,1],[78,1],[193,0],[16,0],[83,-1],[11,0],[21,-1],[20,0],[13,0],[19,0],[15,0],[39,0],[23,0],[16,-1],[45,2],[14,1],[211,-4],[16,0],[66,0],[275,-2],[26,0],[107,-1],[37,0],[106,-1],[35,0],[31,0],[106,1],[100,1],[174,-2],[65,0],[94,1],[73,-1],[33,0],[103,-1],[163,-1],[74,0],[37,0],[15,-1],[147,0],[62,0],[210,1],[112,0],[291,1],[26,0],[224,0],[116,0],[59,0],[193,-1],[64,1],[43,0],[20,0],[56,-1],[356,-1],[66,0],[125,-1],[126,-1],[294,-2],[126,-2],[71,-1],[75,0],[80,-1],[199,-3],[121,-2],[273,-2],[359,-3],[126,1],[14,0],[18,0],[60,1],[31,0],[56,0],[19,0],[16,-1],[20,0],[23,-2],[18,-1],[20,0],[20,2],[26,1],[38,-1],[23,-1],[62,-1],[65,-1],[197,-2],[15,0],[38,0],[18,0],[80,-1],[123,-1],[23,0],[128,-1],[38,0],[108,-2],[127,0],[75,-1],[9,0],[54,0],[67,-2],[68,-1],[144,-1],[126,-1],[16,0],[253,0],[116,-1],[15,0],[21,-3]],[[79775,99716],[1,-850],[1,-803],[0,-105],[-2,-736],[-1,-418],[1,-325],[-1,-91],[0,-83],[2,-42],[-1,-36],[-2,-76],[0,-200],[-1,-192],[-1,-50],[0,-35],[0,-33],[0,-32],[0,-39],[0,-22],[0,-16],[0,-71],[3,-118],[0,-3],[-2,-215],[-1,-127],[-1,-86],[-1,-114],[0,-87],[0,-99],[0,-43],[0,-41],[0,-35],[0,-29],[1,-41],[0,-29],[-1,-37],[0,-33],[0,-34],[0,-35],[0,-31],[0,-35],[0,-40],[0,-36],[0,-34],[0,-29],[0,-36],[0,-38],[0,-58],[0,-34],[0,-36],[-1,-29],[0,-40],[0,-29],[0,-38],[0,-31],[0,-35],[0,-36],[0,-36],[0,-36],[0,-36],[0,-42],[0,-38],[0,-33],[0,-35],[0,-45],[0,-36],[0,-30],[0,-40],[0,-33],[0,-36],[0,-39],[0,-46],[0,-29],[0,-30],[0,-33],[0,-31],[0,-37],[0,-35],[0,-31],[0,-33],[0,-29],[0,-8],[0,-39],[0,-39],[-1,-38],[0,-40],[0,-36],[0,-34],[0,-30],[0,-34],[0,-43],[0,-36],[0,-42],[0,-37],[0,-32],[0,-38],[0,-35],[0,-31],[0,-36],[0,-37],[0,-35],[0,-37],[0,-41],[0,-34],[0,-33],[0,-38],[0,-41],[0,-35],[0,-31],[0,-35],[0,-37],[0,-31],[-1,-36],[0,-35],[0,-37],[0,-34],[0,-37],[1,-40],[-1,-38],[0,-37],[1,-39],[-1,-43],[0,-32],[0,-32],[0,-39],[0,-36],[0,-33],[0,-32],[0,-30],[0,-32],[0,-30],[0,-30],[-1,-43],[0,-73],[0,-124],[0,-31],[0,-40],[0,-36],[0,-34],[0,-35],[0,-35],[0,-30],[0,-31],[0,-34],[0,-39],[0,-36],[0,-32],[0,-34],[0,-32],[0,-35],[0,-32],[-1,-31],[0,-35],[1,-422]],[[79765,89692],[0,-200],[-1,-236],[-1,-183],[0,-221],[0,-327],[0,-83],[0,-4],[0,-40],[0,-240],[0,-35],[0,-32],[-1,-36],[0,-37],[0,-40],[0,-43],[0,-38],[0,-35],[0,-39],[0,-28],[0,-32],[0,-36],[0,-61],[0,-31],[0,-33],[-1,-211],[0,-212],[0,-75],[0,-346],[0,-118],[0,-43],[0,-58],[-1,-48],[0,-42],[0,-30],[0,-34],[-1,-36],[0,-34],[0,-68],[0,-15],[0,-19],[0,-85],[0,-32],[0,-31],[0,-31],[0,-50],[0,-31],[-1,-30],[0,-36],[0,-32],[0,-32],[0,-31],[-1,-230],[0,-39],[0,-39],[-1,-244],[0,-43],[-1,-117],[0,-31],[0,-35],[0,-52],[-1,-15],[0,-21],[0,-39],[0,-21],[0,-16],[0,-36],[0,-37],[0,-36],[0,-37],[0,-34],[0,-30],[0,-36],[0,-47],[-1,-129],[0,-37],[0,-81],[0,-32],[0,-54],[-1,-223],[0,-36],[-1,-39],[0,-50],[0,-45],[0,-33],[0,-32],[0,-35],[-1,-42],[0,-41],[0,-68],[0,-37],[0,-39],[0,-38],[0,-57],[0,-32],[0,-43],[-1,-38],[0,-35],[0,-263],[-1,-182],[0,-42],[0,-34],[0,-5],[0,-37],[0,-41],[0,-33],[-1,-52],[0,-33],[0,-32],[0,-33],[0,-32],[0,-34],[0,-189],[1,-40],[-1,-42],[0,-68],[1,-51],[0,-46],[-1,-30],[0,-50],[-1,-32],[0,-42],[0,-42],[-1,-35],[0,-40],[0,-30],[0,-34],[0,-40],[0,-33],[0,-33],[0,-33],[0,-6],[0,-38],[0,-35],[0,-35],[0,-32],[0,-33],[1,-204],[-1,-215],[-1,-299],[-1,-120],[-3,-418],[-1,-110],[1,-305]],[[79740,79648],[-89,-2],[-183,1],[-19,0],[-15,0],[-18,0],[-19,0],[-15,0],[-15,0],[-19,0],[-18,0],[-18,0],[-14,0],[-18,0],[-16,0],[-18,0],[-18,0],[-19,0],[-15,0],[-16,0],[-14,0],[-18,0],[-15,0],[-18,0],[-16,0],[-18,0],[-18,1],[-16,0],[-16,0],[-17,0],[-17,0],[-18,0],[-19,0],[-17,0],[-18,0],[-17,0],[-14,0],[-15,0],[-17,1],[-18,0],[-17,0],[-15,0],[-16,0],[-15,0],[-16,0],[-15,0],[-15,0],[-17,0],[-16,0],[-14,1],[-15,0],[-14,0],[-16,0],[-16,0],[-17,0],[-15,0],[-17,0],[-17,0],[-17,0],[-15,0],[-17,0],[-17,1],[-17,0],[-16,0],[-19,0],[-13,0],[-16,0],[-15,0],[-17,0],[-15,0],[-17,0],[-18,1],[-15,0],[-17,0],[-14,0],[-16,0],[-16,0],[-18,0],[-14,0],[-14,0],[-15,0],[-18,0],[-16,1],[-17,0],[-3,0],[-14,0],[-17,0],[-15,0],[-18,0],[-17,0],[-19,0],[-15,1],[-14,0],[-2,0],[-16,0],[-15,0],[-17,0],[-15,0],[-18,0],[-14,1],[-19,0],[-17,0],[-17,0],[-17,0],[-17,0],[-14,0],[-13,0],[-17,1],[-19,0],[-17,0],[-18,0],[-14,0],[-15,0],[-15,0],[-18,1],[-16,0],[-17,0],[-15,0],[-17,0],[-15,0],[-14,0],[-18,1],[-15,0],[-14,0],[-15,0],[-14,0],[-17,0],[-14,1],[-14,0],[-16,0],[-16,0],[-15,0],[-15,0],[-15,0],[-17,1],[-14,0],[-15,0],[-18,0],[-18,0],[-17,0],[-18,0],[-14,1],[-14,0],[-14,0],[-16,0],[-18,0],[-16,0],[-14,1],[-13,0],[-19,0],[-17,0],[-18,0],[-18,0],[-14,1],[-18,0],[-13,0],[-16,0],[-15,0],[-14,0],[-17,0],[-18,1],[-14,0],[-18,0],[-17,0],[-14,0],[-13,0],[-14,0],[-14,0],[-14,1],[-15,0],[-15,0],[-16,0],[-17,0],[-16,1],[-19,0],[-13,0],[-19,0],[-14,0],[-15,0],[-17,1],[-13,0],[-17,0],[-15,0],[-14,0],[-14,0],[-14,0],[-17,1],[-14,0],[-16,0],[-1,0],[-17,0],[-14,0],[-15,0],[-17,1],[-18,0],[-18,0],[-17,0],[-18,0],[-14,0],[-14,1],[-15,0],[-19,0],[-14,0],[-18,0],[-15,0],[-17,1],[-16,0],[-16,0],[-17,0],[-15,0],[-17,0],[-16,1],[-16,0],[-16,0],[-18,0],[-17,0],[-16,0],[-14,1],[-15,0],[-14,0],[-15,0],[-16,0],[-14,0],[-15,1],[-16,0],[-17,0],[-13,0],[-17,0],[-16,0],[-14,0],[-18,0],[-15,0],[-18,1],[-17,0],[-18,0],[-14,0],[-19,0],[-15,0],[-14,0],[-18,0],[-17,1],[-18,0],[-18,0],[-17,0],[-16,0],[-13,0],[-19,0],[-14,1],[-9,0],[-7,0],[-14,0],[-15,0],[-16,0],[-16,0],[-14,0],[-17,0],[-16,1],[-16,0],[-14,0],[-18,0],[-18,0],[-14,0],[-17,0],[-15,0],[-15,1],[-17,0],[-17,0],[-18,0],[-15,0],[-17,1],[-15,0],[-14,0],[-16,0],[-13,0],[-15,0],[-14,0],[-17,1],[-14,0],[-14,0],[-18,0],[-15,0],[-16,0],[-13,1],[-14,0],[-14,0],[-17,0],[-15,0],[-15,1],[-16,0],[-15,0],[-17,0],[-17,0],[-19,0],[-17,1],[-17,0],[-18,0],[-16,0],[-14,0],[-17,0],[-15,1],[-16,0],[-16,0],[-15,0],[-18,0],[-14,0],[-15,0],[-16,1],[-16,0],[-17,0],[-14,0],[-16,0],[-19,0],[-15,0],[-15,0],[-16,0],[-16,-1],[-16,0],[-15,0],[-15,0],[-17,0],[-15,0],[-16,0],[-15,0],[-18,0],[-14,0],[-15,0],[-7,0],[-12,0],[-15,0],[-17,0],[-17,0],[-14,0],[-17,0],[-15,0],[-15,0],[-17,0],[-17,1],[-15,0],[-17,0],[-17,0],[-15,0],[-15,0],[-15,0],[-17,0],[-17,1],[-17,0],[-15,0],[-14,0],[-13,0],[-19,0],[-13,0],[-18,0],[-16,0],[-14,1],[-14,0],[-15,0],[-15,0],[-14,0],[-14,0],[-15,0],[-14,0],[-15,0],[-17,0],[-18,1],[-17,0],[-16,0],[-15,0],[-16,0],[-15,0],[-17,1],[-17,0],[-15,0],[-15,0],[-17,0],[-17,1],[-15,0],[-15,0],[-16,0],[-17,0],[-17,0],[-14,0],[-14,0],[-13,1],[-16,0],[-17,0],[-16,0],[-14,0],[-14,1],[-17,0],[-15,0],[-14,0],[-15,0],[-14,1],[-15,0],[-17,0],[-16,0],[-15,0],[-14,1],[-15,0],[-15,0],[-14,0],[-17,0],[-17,0],[-18,1],[-15,0],[-17,0],[-17,0],[-15,0],[-14,1],[-18,0],[-17,0],[-15,0],[-14,0],[-18,0],[-6,0],[-10,1],[-16,0],[-16,0],[-14,1],[-15,0],[-14,0],[-17,1],[-17,0],[-14,0],[-14,1],[-16,0],[-15,0],[-19,1],[-15,0],[-17,0],[-18,1],[-14,0],[-1,0],[-14,0],[-16,1],[-17,0],[-14,1],[-18,0],[-16,0],[-15,1],[-18,0],[-14,1],[-17,0],[-14,0],[-17,1],[-17,0],[-15,0],[-16,1],[-17,0],[-18,1],[-16,0],[-14,0],[-16,1],[-16,0],[-15,0],[-14,1],[-13,0],[-14,0],[-13,0],[-14,1],[-14,0],[-15,0],[-15,0],[-13,1],[-17,0],[-15,1],[-17,0],[-9,0],[-7,1],[-16,0],[-19,0],[-17,0],[-17,1],[-16,0],[-14,0],[-16,0],[-15,1],[-15,0],[-17,0],[-15,0],[-16,0],[-18,1],[-14,0],[-18,0],[-15,0],[-15,0],[-15,0],[-15,0],[-17,0],[-13,0],[-16,1],[-13,0],[-19,0],[-17,0],[-18,0],[-17,0],[-15,1],[-14,0],[-18,0],[-14,0],[-17,0],[-15,0],[-17,0],[-17,1],[-13,0],[-17,0],[-15,0],[-19,0],[-17,0],[-18,1],[-14,0],[-18,0],[-17,0],[-15,0],[-14,0],[-18,1],[-14,0],[-17,0],[-14,0],[-15,0],[-14,0],[-15,1],[-17,0],[-17,0],[-15,0],[-18,1],[-16,0],[-15,0],[-17,0],[-16,1],[-16,0],[-15,0],[-17,0],[-14,1],[-13,0],[-19,0],[-14,0],[-15,1],[-16,0],[-14,0],[-18,0],[-13,0],[-18,1],[-15,0],[-15,0],[-17,0],[-13,1],[-18,0],[-15,0],[-16,0],[-17,0],[-15,1],[-15,0],[-13,0],[-17,1],[-17,0],[-18,0],[-17,0],[-14,1],[-15,0],[-15,0],[-17,0],[-17,0],[-18,1],[-16,0],[-15,0],[-17,0],[-13,1],[-16,0],[-17,0],[-18,0],[-17,1],[-16,0],[-18,0],[-14,0],[-16,0],[-16,1],[-14,0],[-15,0],[-17,0],[-15,0],[-14,1],[-15,0],[-16,0],[-15,0],[-15,0],[-17,1],[-19,0],[-16,0],[-1,0],[-13,0],[-19,1],[-15,0],[-14,0],[-13,0],[-18,1],[-16,0],[-16,0],[-16,0],[-18,1],[-15,0],[-15,0],[-15,0]],[[70080,79743],[-64,1]],[[70016,79744],[0,53],[0,49],[0,41],[0,62],[1,212],[0,174],[0,253],[-1,108],[-1,30],[1,136],[4,49],[-3,37],[1,55],[-1,30],[0,31],[0,36],[0,35],[1,48],[-1,34],[0,34],[1,34],[-1,37],[0,44],[1,49],[0,45],[1,62],[0,33],[0,31],[0,38],[1,108],[0,3],[0,33],[0,39],[0,41],[0,46],[0,63],[0,49],[0,46],[0,61],[0,34],[0,15],[0,18],[0,32],[0,40],[0,28],[0,24],[0,16],[-1,44],[0,41],[0,263],[0,35],[0,111],[0,233],[0,39],[0,90],[0,334],[0,31],[0,200],[0,148],[0,59],[1,202],[0,82],[0,48],[0,59],[0,257],[0,152],[0,400],[0,31],[0,31],[0,60],[0,50],[0,36],[-1,14],[-1,23],[0,10],[0,26],[0,22],[0,152],[1,413],[0,121],[0,78],[-1,65],[0,112],[0,11],[0,48],[0,24],[-1,23],[0,5],[0,50],[0,14],[0,62],[0,1],[0,15],[-1,70],[0,37],[0,92],[0,2],[1,28],[0,37],[1,46],[0,240],[0,74],[-1,96],[-1,147],[0,68],[0,50],[0,46],[2,430],[0,416],[0,352],[1,70],[1,418],[-1,220],[-4,187],[-16,1],[-15,0]],[[69991,99796],[126,2],[66,-1],[1,0],[15,0],[54,-1],[100,-1],[1,0],[121,-3],[156,-2],[2,0],[32,-1],[134,-2],[135,-2],[138,-2],[103,-1],[30,0],[132,-1],[38,-1],[105,-1],[73,-1],[27,0],[39,0],[68,-2],[66,-1],[130,-3],[142,-4],[124,-3],[74,-1],[74,-2],[128,-3],[94,-2],[3,0],[48,-1],[1,0],[26,-1],[14,0],[14,0],[29,-1],[48,-1],[43,0],[99,-2],[129,-2],[31,-1],[113,-2],[129,-1],[142,-2],[102,-2],[50,0],[5,0],[11,0],[24,-1],[81,-1],[122,-1],[242,-3],[34,-1],[150,-1],[124,-1],[70,-1],[73,0],[58,-1],[70,0],[271,-3],[128,0],[137,-1],[159,-2],[112,-2],[161,1],[114,0],[159,1],[111,0],[1,0],[161,0],[50,0],[64,0],[158,0],[116,0],[100,1],[37,1],[20,0],[24,0],[97,0],[135,-1],[17,0],[123,0],[143,0],[6,0],[28,0],[93,-1],[148,-2],[18,1],[47,-1],[11,-1],[7,0],[23,0],[21,0],[201,-1],[68,-1],[154,0],[32,-1],[25,1],[25,0],[15,0],[25,0],[20,-1],[34,0],[33,0],[24,0],[40,0],[114,-1],[138,1],[16,0],[58,-1],[67,-2],[34,0],[396,-2],[113,3],[17,0],[137,1],[15,0],[74,0],[27,1],[43,0],[117,2],[109,-4]],[[99569,82133],[-136,-1],[-2,1],[-13,1],[-74,12],[-14,-12],[-68,2],[-203,1],[-26,-1],[-15,7],[-14,2],[-32,-8],[-69,0],[-43,0],[-138,-1],[-130,0],[-137,-1],[-271,1],[-268,0],[-266,-1],[-63,-1],[-28,-1],[-22,-2],[-152,2],[-3,0],[-269,-1],[-211,-1],[-9,0],[-37,-1],[-54,0],[-27,0],[-28,-1],[-174,-1],[-237,-3],[-32,1],[-28,1],[-85,-1],[-63,0],[-93,-1],[-203,-1],[-29,0],[-7,0],[-30,0],[-27,-1],[-243,0],[-126,-1],[-143,-1],[-268,-1],[-15,1],[-20,0],[-133,-1],[-101,0],[-70,-1],[-195,-1],[-40,1],[-90,1],[-14,1],[-95,1],[-13,0],[-15,0],[-267,4],[-65,0],[-67,1],[-261,3],[-14,0],[-136,-1],[-128,2],[-104,4],[-32,2],[-116,2],[-45,0],[-210,4],[-27,-122],[-25,-114],[-40,-182],[-6,-28],[-29,-132],[-2,-6],[-15,-66],[-43,-187],[-5,-29],[-112,-1],[-16,1],[-34,1],[-65,3],[-78,-1],[-70,0],[-66,0],[-119,1],[-21,0],[-4,0],[-27,1],[-36,0],[-25,0],[-25,0],[-41,0],[-86,0],[-32,0],[-126,0],[-271,1],[-60,1],[-4,0],[-28,0],[-178,1],[-182,0],[-88,1],[-271,1],[-136,1],[-118,2],[-17,0],[-239,3],[-33,0],[-132,3],[-130,3]],[[89651,81299],[0,52],[0,29],[0,29],[0,30],[0,59],[0,39],[0,49],[0,44],[0,44],[0,39],[0,135],[0,45],[0,86],[0,45],[0,40],[-1,64],[2,189],[0,58],[0,18],[-1,104],[0,62],[-2,289],[-1,119],[-1,155],[-1,96],[0,46],[-1,120],[0,83],[-1,63],[-1,68],[0,204],[0,33],[0,63],[0,45],[-1,163],[0,102],[0,39],[0,39],[0,48],[0,213],[3,93],[0,51],[0,55],[0,55],[0,82],[0,55],[0,64],[0,61],[1,61],[0,60],[0,55],[0,37],[1,32],[0,61],[0,33],[-2,83],[-1,190],[0,39],[0,71],[0,99],[0,102],[3,38],[0,55],[-1,78],[1,37],[-1,53],[0,30],[0,40],[-1,41],[0,29],[1,35],[1,40],[-2,33],[-1,89],[-1,65],[0,38],[1,45],[0,39],[0,54],[0,53],[-1,51],[0,44],[0,99],[0,80],[1,37],[-1,35],[0,33],[1,56],[0,30],[-1,119],[-1,63],[0,38],[0,98],[0,48],[-1,184],[0,92],[0,38],[0,32],[0,51],[1,65],[-1,43],[0,45],[0,50],[1,92],[-2,416]],[[89640,88817],[0,719],[0,40],[0,82],[0,31],[0,36],[0,32],[0,38],[0,34],[0,32],[0,41],[0,30],[0,30],[0,41],[0,31],[0,36],[2,110],[-2,450],[0,114],[-1,308],[0,105],[0,33],[0,96],[0,39],[0,208],[-1,187],[0,24],[-1,694],[0,59],[1,86],[-1,29],[0,69],[0,67],[0,78],[0,93],[-1,82],[0,69],[0,143],[0,67],[0,44],[-1,89],[1,43],[0,58],[0,102],[-1,49],[0,167],[0,97],[0,35],[0,142],[0,75],[0,64],[-1,82],[0,52],[0,57],[0,72],[0,152],[-1,116],[0,186],[-1,177],[0,50],[0,1],[-1,76],[1,143],[1,68],[0,37],[-1,30],[0,37],[0,35],[0,30],[0,32],[0,35],[0,37],[0,30],[0,29],[-1,30],[0,36],[0,32],[0,33],[0,39],[-1,37],[0,36],[0,35],[0,30],[0,35],[0,30],[0,37],[-1,33],[0,35],[0,36],[0,36],[0,42],[0,29],[0,30],[0,34],[-1,38],[0,37],[0,33],[0,37],[0,36],[0,37],[0,36],[0,34],[0,33],[0,30],[-1,36],[0,30],[0,39],[0,37],[0,35],[0,36],[0,37],[0,35],[-1,37],[0,35],[0,35],[0,37],[0,34],[0,39],[0,40],[0,14],[0,17],[0,40],[0,29],[0,33],[0,34],[0,34],[0,12],[0,24],[0,33],[0,39],[0,6],[0,29],[0,38],[0,30],[0,35],[0,33],[0,37],[0,30],[0,35],[0,33],[0,38],[0,30],[0,30],[0,32],[0,34],[0,30],[-1,36],[0,35],[0,34],[0,39],[1,29],[-1,37],[0,38],[0,35],[0,42],[0,39],[0,38],[0,35],[0,36],[0,32],[0,32],[0,37],[0,31],[0,32],[0,41],[0,37],[0,39],[0,40],[0,36],[0,31],[0,40],[0,42],[0,40],[0,36],[0,31],[0,29],[0,43],[0,31],[0,37],[0,37],[0,36],[0,35],[0,31],[0,35],[-1,37],[0,37],[0,63]],[[89624,99697],[33,5],[17,0],[23,0],[17,0],[38,1],[27,0],[34,0],[40,0],[19,0],[25,1],[22,0],[29,1],[19,0],[23,0],[27,0],[35,1],[17,0],[38,0],[32,1],[21,0],[27,0],[66,1],[17,0],[19,1],[42,1],[48,0],[27,0],[21,0],[17,0],[23,-1],[18,0],[21,0],[19,0],[21,0],[23,0],[37,0],[19,0],[39,-1],[21,1],[19,-1],[14,1],[136,1],[53,-1],[47,0],[23,1],[24,0],[43,0],[27,0],[18,0],[42,1],[94,6],[41,-5],[1,0],[87,0],[36,0],[39,0],[16,0],[24,1],[13,0],[34,0],[26,0],[26,0],[22,1],[14,0],[31,0],[132,-1],[49,0],[170,-1],[19,0],[16,0],[27,1],[15,-1],[26,2],[13,0],[21,-1],[39,1],[21,-1],[40,1],[17,0],[83,0],[35,-1],[282,0],[157,-7],[117,0],[16,7],[49,4],[37,-1],[42,-4],[131,-4],[139,-3],[173,-1],[237,9],[105,-7],[160,9],[26,0],[39,1],[39,-1],[71,0],[36,0],[40,1],[29,0],[34,0],[34,0],[45,0],[32,0],[43,0],[39,0],[49,0],[68,0],[22,-1],[23,0],[2,0],[57,0],[26,0],[33,0],[31,0],[16,0],[15,0],[34,0],[41,0],[15,1],[25,-1],[41,0],[41,-1],[58,1],[69,0],[41,-1],[41,-1],[40,0],[34,-1],[25,0],[20,0],[41,0],[31,0],[93,1],[110,0],[55,0],[13,0],[66,1],[41,1],[41,0],[39,0],[30,1],[41,0],[15,1],[18,0],[49,0],[41,1],[13,-1],[27,0],[15,0],[54,0],[55,0],[21,1],[17,0],[15,0],[13,1],[14,0],[40,-1],[65,-2],[83,0],[24,0],[17,0],[34,0],[63,-2],[4,0],[24,-1],[40,-1],[48,0],[23,0],[16,-1],[36,0],[40,-1],[79,-2],[40,-1],[62,0],[55,-1],[40,-1],[40,-1],[39,0],[40,-1],[39,0],[20,-1],[21,-1],[118,-1],[38,0],[36,0],[39,-1],[20,0],[148,1],[34,-1],[34,-2],[40,0],[14,2],[105,0],[33,0],[46,0],[24,0],[55,0],[41,-1],[40,0],[14,0],[25,0],[28,0],[37,0],[-7,-226],[-5,-39],[-1,-56],[3,-46],[2,-31],[0,-81],[-1,-25],[-3,-15],[-5,-11],[-15,-24],[0,-1],[-7,-8],[-26,-125],[24,-27],[30,-34],[-22,-62],[-14,-50],[-3,-13],[-9,-44],[-2,-15],[-1,-41],[3,-30],[1,-20],[1,-31],[2,-140],[-4,-65],[-26,-362],[-5,-54],[-2,-11],[0,-15],[-9,-161],[-15,-170],[-2,-17],[-5,-77],[0,-6],[0,-1],[-2,-71],[-5,-172],[-4,-109],[-5,-122],[-3,-51],[-4,-21],[-17,-52],[-6,-18],[5,-133],[-14,-132],[-12,-58],[-19,-69],[-30,-106],[-12,-29],[-1,-37],[-1,-32],[-47,-74],[-9,-6],[-33,-23],[-24,0],[-9,-8],[-31,-47],[-7,-31],[-9,-35],[-65,-135],[-10,-18],[-33,-59],[-23,-47],[-49,-132],[-53,-119],[-3,-9],[-106,-165],[-49,-22],[-48,-77],[-6,-11],[-3,-15],[-4,-21],[0,-32],[0,-59],[-51,-132],[-14,-22],[-17,-7],[-21,-33],[-14,-33],[5,-87],[5,-91],[5,-7],[1,-153],[-54,-84],[-2,-6],[-47,-53],[-14,-22],[-68,-105],[-21,-127],[-2,-16],[-9,-14],[-46,-72],[-2,-2],[-2,-5],[-54,-87],[-67,-73],[-34,-37],[-129,-83],[-2,-2],[-31,-40],[-72,-114],[-26,-26],[-74,-95],[-11,-15],[-13,-9],[-83,-126],[-14,0],[-1,-6],[-97,-152],[-24,-26],[-18,-11],[-43,-40],[-59,-94],[-11,-13],[-106,-55],[-40,-34],[-46,-22],[-24,-11],[-64,-101],[-79,-123],[-110,-172],[-7,-4],[-73,-84],[-67,-103],[-47,-41],[-43,-15],[-102,-161],[-40,-81],[-59,-91],[-110,-74],[-51,-4],[-20,-1],[-9,-7],[-126,-177],[-87,-89],[-67,-104],[-1,-1],[0,-1],[-37,-22],[-19,-4],[-14,-14],[-47,-74],[-14,-29],[-21,-51],[-32,-102],[-35,-139],[-20,-160],[-4,-55],[-28,-66],[-5,-40],[3,-7],[-2,-97],[-44,-221],[-2,-162],[8,-40],[55,-261],[5,-28],[30,-60],[114,-224],[26,-51],[131,-161],[3,-8],[47,-98],[23,-11],[12,-3],[3,-4],[9,-16],[16,-33],[19,-45],[0,-3],[-2,-4],[-13,-17],[55,-118],[26,-56],[1,-1],[32,-98],[6,-5],[77,-97],[6,-12],[4,-13],[5,-26],[3,-10],[9,-13],[10,-7],[6,-1],[17,2],[4,-1],[7,-12],[6,-31],[0,-21],[0,-80],[3,-4],[47,-78],[67,-158],[46,-124],[14,-45],[12,-36],[5,-39],[8,-24],[79,-112],[3,-5],[12,-18],[3,-12],[15,-58],[43,-96],[61,-97],[8,-27],[21,-90],[-3,-11],[46,-155],[3,-8],[78,-287],[14,-35],[5,-32],[26,-104],[23,-74],[18,-101],[8,-47],[18,-66],[3,-68],[5,-119],[28,-46],[13,-29],[20,-45],[11,-70],[-2,-30],[0,-16],[28,-160],[21,-71],[15,-49],[15,-43],[33,-50],[54,-112],[114,-256],[99,-248],[17,-69],[1,-5],[44,-116],[18,-43],[91,-193],[20,-39],[127,-197],[3,-4],[11,-14],[4,-5],[5,4],[5,-8],[65,-11],[8,-8],[78,5],[55,-42],[16,-4],[95,1],[60,20],[73,1],[26,-11],[42,-12],[56,1],[15,12],[17,0],[61,1],[15,-8],[38,-19],[103,1],[15,-7],[73,-35],[45,-42],[68,-50],[5,4],[99,-81],[58,-50],[38,-43],[50,-54],[10,-11],[23,-31],[89,-105],[12,-11],[43,-15],[63,-89],[51,-15],[30,-24],[48,-26],[60,-39],[5,4],[51,-50],[48,-27],[2,0],[25,-3],[56,-23],[27,-23],[66,-15],[73,-50],[55,-51],[23,-11],[15,-12],[47,-72],[44,-67],[15,0],[30,-23],[56,-11],[45,-43],[93,-142],[114,-175],[23,-62],[28,-47],[20,-97],[14,-72],[12,-64],[3,-214],[15,-58],[16,-28],[53,-192],[1,-2],[1,-4],[2,-13]],[[89640,88817],[-138,0],[-22,0],[-109,2],[-36,-1],[-114,1],[-123,1],[-44,1],[-229,2],[-171,11],[-18,-2],[-14,-1],[-24,0],[-20,0],[-16,0],[-137,0],[-142,-4],[-135,1],[-75,1],[-50,0],[-14,2],[-174,3],[-40,297],[-5,41],[-58,429],[-13,66],[-19,0],[-22,0],[-41,0],[-42,2],[-16,1],[-24,-2],[-86,0],[-37,0],[-42,-2],[-27,0],[-31,0],[-25,0],[-19,0],[-145,0],[-18,1],[-46,0],[-14,0],[-19,0],[-1,0],[-30,0],[-24,0],[-35,0],[-24,0],[-19,0],[-27,0],[-22,1],[-37,0],[-14,-1],[-25,1],[-36,0],[-115,-1],[-15,0],[-23,0],[-54,5],[-90,-2],[-101,0],[-13,0],[-76,1],[-28,0],[-37,0],[-46,0],[-89,0],[-25,0],[-49,0],[-16,0],[-5,0],[-11,0],[-17,0],[-17,0],[-58,0],[-151,0],[-18,0],[-198,0],[-54,0],[-56,0],[-70,0],[-27,0],[-109,0],[-70,0],[-37,0],[-30,0],[-33,0],[-94,0],[-17,0],[-65,-3],[-14,1],[-17,0],[-19,0],[-145,2],[-20,0],[-13,0],[-30,0],[-70,3],[-80,-3],[-17,0],[-16,-1],[-42,-1],[-39,-1],[-84,1],[-164,2],[-21,0],[-16,0],[-26,0],[-19,0],[-38,1],[-33,0],[-4,0],[-81,1],[-25,0],[-123,2],[-13,0],[-30,0],[-56,0],[-23,0],[-78,0],[-113,0],[-15,0],[-19,0],[-47,0],[-22,1],[-55,0],[-55,0],[-138,-1],[-18,0],[-261,1],[-65,0],[-198,0],[-16,0],[-136,0],[-120,1],[-14,0],[-106,0],[-129,1],[-20,0],[-17,0],[-237,1],[-20,0],[-81,0],[-154,0],[-38,0],[-268,2],[-159,1],[-88,1],[-24,0],[-273,2],[-51,0],[-76,0],[-45,1],[-100,0],[-3,1],[-10,2],[-115,1],[-72,0],[-70,0],[-269,2]],[[79775,99716],[264,0],[707,-2],[24,2],[80,-5],[13,1],[15,0],[51,0],[38,-1],[44,0],[31,-1],[43,0],[56,0],[22,0],[34,0],[19,0],[83,0],[90,0],[14,0],[71,0],[188,-3],[294,-1],[162,2],[110,-1],[31,0],[25,0],[16,0],[15,0],[21,0],[65,-1],[25,-1],[20,1],[25,0],[25,0],[14,0],[18,0],[28,0],[17,0],[17,0],[20,0],[22,0],[31,0],[23,0],[32,0],[35,0],[22,0],[15,1],[82,-1],[28,0],[14,0],[21,0],[16,1],[26,-1],[22,0],[48,1],[26,-1],[45,0],[62,0],[29,0],[51,0],[14,-1],[26,0],[18,0],[77,0],[31,0],[54,0],[118,0],[37,-1],[8,0],[17,0],[15,0],[16,0],[23,0],[39,0],[36,0],[20,0],[60,-1],[22,0],[17,0],[42,0],[31,-1],[40,0],[44,0],[29,0],[26,0],[23,0],[26,0],[22,0],[33,-1],[17,0],[5,0],[13,0],[16,0],[21,0],[19,0],[17,0],[26,0],[58,0],[9,0],[18,0],[45,0],[28,0],[21,0],[35,-1],[21,0],[60,0],[31,0],[17,0],[17,0],[30,0],[35,0],[41,0],[21,0],[22,-1],[22,0],[48,0],[19,0],[55,0],[31,0],[65,-1],[18,0],[8,0],[17,0],[31,0],[31,0],[16,0],[76,0],[20,0],[34,0],[19,0],[18,0],[19,0],[20,-1],[26,0],[23,0],[18,0],[21,0],[30,0],[58,1],[21,0],[20,-1],[40,-1],[35,0],[62,1],[23,2],[120,-4],[123,-1],[52,0],[61,1],[69,-1],[52,0],[27,1],[211,0],[192,1],[237,23],[7,0],[7,1],[27,0],[135,4],[19,0],[69,-1],[55,-1],[90,-2],[61,-1],[149,-1],[128,1],[62,0],[63,-1],[146,-2],[15,0],[14,0],[16,0],[17,0],[14,0],[15,0],[15,0],[15,0],[13,0],[16,0],[45,0],[2,0],[57,-1],[14,0],[49,-1],[35,0],[68,-1],[21,-1],[24,0],[89,-1],[16,-1],[20,0],[23,-1],[21,1],[138,1],[56,1],[59,1],[59,-1],[24,0],[131,-1],[66,0],[52,-1],[69,-1],[16,0],[14,0],[49,-2],[46,0],[51,-1],[47,-2],[15,0],[42,-1],[31,0],[23,-1],[29,-5]],[[57086,89833],[-1,-419],[0,-95],[0,-153],[-2,-593],[0,-90],[-1,-263],[0,-59],[0,-41],[-1,-340],[0,-41],[0,-131],[-1,-203],[0,-49],[0,-29],[1,-57],[-1,-66],[3,-75],[0,-199],[0,-58],[-1,-40],[0,-34],[0,-31],[0,-35],[0,-38],[0,-36],[0,-31],[0,-35],[0,-30],[0,-34],[0,-41],[0,-41],[0,-29],[0,-34],[0,-34],[0,-39],[0,-34],[0,-29],[0,-36],[-1,-38],[0,-31],[0,-37],[0,-31],[0,-38],[0,-35],[0,-31],[0,-18],[0,-23],[0,-40],[0,-34],[0,-40],[0,-30],[0,-37],[0,-30],[0,-32],[0,-28],[0,-10],[0,-36],[0,-30],[0,-36],[0,-37],[0,-29],[0,-35],[-1,-39],[0,-30],[0,-31],[0,-31],[0,-31],[0,-33],[0,-34],[0,-40],[0,-37],[0,-36],[0,-37],[0,-37],[0,-35],[0,-35],[-1,-36],[0,-39],[0,-32],[0,-36],[0,-35],[0,-29],[0,-30],[0,-37],[0,-33],[0,-32],[0,-36],[0,-32],[0,-36],[0,-40],[0,-37],[0,-36],[0,-38],[0,-35],[0,-36],[0,-31],[0,-31],[0,-34],[0,-39],[0,-36],[0,-37],[0,-32],[0,-33],[0,-30],[0,-29],[0,-43],[0,-37],[0,-31],[0,-38],[0,-38],[-1,-32],[0,-34],[0,-37],[0,-32],[0,-35],[0,-39],[0,-40],[0,-36],[0,-36],[0,-34],[0,-34],[0,-35],[0,-40],[0,-35],[0,-32],[0,-29],[0,-38],[0,-30],[0,-35],[0,-29],[0,-31],[0,-32],[0,-36],[0,-31],[0,-37],[0,-36],[0,-37],[-1,-29],[0,-33],[0,-40],[0,-37],[0,-30],[0,-34],[0,-30],[0,-38],[0,-34],[-1,-79],[1,-36],[0,-97],[0,-12],[1,-43],[0,-8],[0,-48],[0,-40],[0,-37],[0,-29],[-1,-29],[0,-29],[0,-34],[0,-40],[0,-40],[-1,-34],[0,-42],[0,-37],[0,-35],[0,-38],[-1,-35],[0,-37],[0,-38],[0,-42],[-1,-38],[0,-38],[0,-39],[0,-31],[0,-34],[0,-33],[0,-37],[0,-36],[-1,-31],[0,-32],[0,-33],[0,-32],[0,-47],[0,-47],[0,-38],[0,-37],[0,-43],[-1,-29],[0,-37],[0,-36],[0,-30],[0,-36],[0,-40],[0,-34],[0,-34],[0,-41],[-1,-36],[0,-42],[0,-34],[0,-40],[0,-37],[0,-34],[0,-35],[0,-41],[-1,-51],[0,-30],[0,-35],[0,-35],[0,-32],[0,-39],[0,-29],[-1,-49],[0,-50],[0,-45],[0,-36],[0,-35],[1,-86]],[[57070,79805],[-19,0],[-16,0],[-15,0],[-14,0],[-15,0],[-16,0],[-16,0],[-14,0],[-16,0],[-14,0],[-20,0],[-14,1],[-18,0],[-15,0],[-13,0],[-15,0],[-16,0],[-15,0],[-19,0],[-14,0],[-18,0],[-18,0],[-17,0],[-15,0],[-17,1],[-16,0],[-15,0],[-16,0],[-16,0],[-16,0],[-14,0],[-15,0],[-14,0],[-18,0],[-19,0],[-15,0],[-14,0],[-18,0],[-14,0],[-14,0],[-15,0],[-18,0],[-15,0],[-18,1],[-15,0],[-18,0],[-13,0],[-15,0],[-18,0],[-16,0],[-18,0],[-14,0],[-13,0],[-23,0],[-17,0],[-15,0],[-14,1],[-15,0],[-18,0],[-16,0],[-15,0],[-17,0],[-16,0],[-16,0],[-13,0],[-14,0],[-19,1],[-12,0],[-8,0],[-14,0],[-14,0],[-16,0],[-16,0],[-17,0],[-15,0],[-17,0],[-15,0],[-17,1],[-14,0],[-16,0],[-15,0],[-17,0],[-17,0],[-19,0],[-16,0],[-16,0],[-19,0],[-16,0],[-19,0],[-14,0],[-14,0],[-16,1],[-6,0],[-11,0],[-15,0],[-14,0],[-18,0],[-17,0],[-12,0],[-3,0],[-17,0],[-16,0],[-15,0],[-16,0],[-17,0],[-14,0],[-18,0],[-16,0],[-15,0],[-14,0],[-16,0],[-15,0],[-14,1],[-14,0],[-18,0],[-14,0],[-15,0],[-14,0],[-4,0],[-17,0],[-15,0],[-14,0],[-17,0],[-15,0],[-13,0],[-16,0],[-16,0],[-15,0],[-15,0],[-18,1],[-16,0],[-16,0],[-17,0],[-15,0],[-17,0],[-17,0],[-16,0],[-15,0],[-16,0],[-13,1],[-15,0],[-16,0],[-15,0],[-15,0],[-21,0],[-20,0],[-20,0],[-19,0],[-20,0],[-20,0],[-20,0],[-20,0],[-21,1],[-20,0],[-21,0],[-19,0],[-21,0],[-18,0],[-13,0],[-2,0],[-15,1],[-18,0],[-15,0],[-16,0],[-18,0],[-14,0],[-15,0],[-15,1],[-17,0],[-16,0],[-16,0],[-41,0],[-27,0],[-15,0],[-14,0],[-17,1],[-18,0],[-16,0],[-16,0],[-16,0],[-17,0],[-16,0],[-16,0],[-16,0],[-13,1],[-17,0],[-14,0],[-16,0],[-18,0],[-16,0],[-14,0],[-17,0],[-17,1],[-13,0],[-15,0],[-15,1],[-18,0],[-13,0],[-17,1],[-14,0],[-15,0],[-18,1],[-14,0],[-16,0],[-17,0],[-17,0],[-18,-1],[-18,0],[-16,0],[-14,0],[-17,0],[-15,0],[-17,-1],[-13,0],[-16,0],[-19,0],[-17,0],[-16,0],[-16,-1],[-14,0],[-15,0],[-17,1],[-19,0],[-15,0],[-16,0],[-15,0],[-16,0],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-15,0],[-16,1],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-15,0],[-16,0],[-15,0],[-3,0],[-12,0],[-18,0],[-15,0],[-14,0],[-15,0],[-14,0],[-15,0],[-14,0],[-15,0],[-14,0],[-16,0],[-16,0],[-16,0],[-15,0],[-15,0],[-14,0],[-15,0],[-14,0],[-15,0],[-16,0],[-16,0],[-14,0],[-15,0],[-14,0],[-15,0],[-18,0],[-16,0],[-16,0],[-15,0],[-18,0],[-13,0],[-16,0],[-15,0],[-9,0],[-5,0],[-319,1],[-260,1],[-235,1],[-18,-1],[-20,0],[-14,0],[-16,0],[-15,0],[-19,0],[-16,0],[-16,0],[-16,1],[-14,0],[-15,0],[-14,0],[-13,0],[-14,0],[-15,0],[-14,0],[-15,0],[-17,1],[-19,0],[-14,0],[-17,0],[-14,0],[-17,0],[-19,0],[-14,0],[-18,1],[-14,0],[-15,0],[-15,0],[-17,0],[-16,0],[-17,0],[-16,0],[-17,0],[-17,0],[-18,0],[-18,0],[-17,0],[-19,0],[-17,0],[-15,0],[-16,0],[-16,0],[-14,0],[-15,0],[-17,0],[-15,0],[-18,0],[-14,0],[-19,0],[-16,0],[-19,0],[-14,0],[-16,-1],[-14,0],[-14,1],[-13,0],[-17,0],[-18,0],[-14,0],[-19,0],[-13,0],[-16,1],[-14,0],[-15,0],[-16,0],[-16,0],[-58,2],[-13,0],[-17,0],[-19,0],[-13,0],[-15,0],[-232,1],[-211,0],[-64,0],[-36,0],[-92,0]],[[49836,79832],[-15,92],[-5,30],[-18,69],[-45,158],[-20,64],[-19,41],[-15,30],[-36,58],[-56,77],[-86,123],[-72,127],[-64,123],[-107,172],[-36,75],[-25,63],[-25,173],[-8,57],[-47,284],[-3,19],[-29,147],[-10,70],[1,38],[14,81],[35,134],[61,156],[340,670],[25,99],[7,95],[6,74],[9,67],[7,39],[40,153],[12,41],[4,49],[1,88],[-1,41],[-73,220],[-49,110],[-14,24],[-39,90],[-43,147],[-7,32],[-17,96],[-51,158],[-9,32],[-39,96],[-60,141],[-40,83],[-84,142],[-92,128],[-29,58],[-52,104],[-42,101],[-15,63],[-60,331],[-49,330],[-19,124],[-10,38]],[[70016,79744],[-193,4],[-18,0],[-100,0],[-35,-1],[-20,0],[-12,2],[-22,3],[-55,-1],[-32,-1],[-16,1],[-6,0],[-33,0],[-20,1],[-111,2],[-65,1],[-22,-1],[-31,0],[-14,1],[-170,4],[-50,1],[-56,3],[-112,3],[-36,-2],[-61,1],[-62,2],[-17,0],[-13,-1],[-19,1],[-16,0],[-18,1],[-17,0],[-24,0],[-9,1],[-8,0],[-126,2],[-39,1],[-103,-1],[-207,3],[-51,0],[-86,1],[-57,0],[-136,0],[-108,0],[-27,0],[-124,1],[-17,0],[-13,0],[-114,1],[-44,0],[-31,-1],[-39,0],[-27,1],[-129,0],[-120,1],[-26,0],[-127,0],[-21,0],[-3,0],[-61,0],[-51,0],[-131,1],[-18,0],[-119,0],[-83,0],[-18,0],[-18,0],[-13,-1],[-48,1],[-74,0],[-19,0],[-27,0],[-18,1],[-16,0],[-7,0],[-16,0],[-21,0],[-26,1],[-22,0],[-14,0],[-27,0],[-63,1],[-141,1],[-149,-3],[-258,3],[-102,1],[-167,2],[-68,-3],[-66,-3],[-136,-1],[-19,0],[-26,-1],[-89,0],[-268,-8],[-153,1],[-44,-1],[-336,0],[-142,8],[-136,0],[-96,0],[-28,0],[-15,0],[-130,0],[-137,0],[-44,1],[-19,0],[-38,1],[-31,2],[-27,-1],[-106,0],[-16,0],[-120,0],[-40,-1],[-99,2],[-25,1],[-109,3],[-89,0],[-45,-2],[-18,0],[-24,-1],[-207,-1],[-155,-1],[-51,2],[-65,0],[-220,0],[-14,1],[-16,0],[-18,0],[-124,0],[-41,1],[-41,0],[-125,0],[-210,0],[-140,1],[-200,0],[-28,1],[-25,0],[-28,0],[-72,0],[-39,0],[-74,1],[-84,0],[-22,0],[-21,0],[-22,0],[-42,1],[-46,0],[-120,0],[-74,1],[-32,0],[-166,0],[-111,-2],[-34,0],[-98,1],[-24,0],[-113,2],[-70,1],[-18,1],[-27,1],[-39,1],[-34,0],[-38,-1],[-20,1],[-19,0],[-70,-4],[-74,-1],[-122,0]],[[58849,79790],[-81,1],[-83,2],[-23,0],[-82,2],[-165,5],[-119,0],[-17,0],[-16,0],[-19,0],[-17,0],[-18,0],[-14,0],[-18,0],[-18,0],[-17,0],[-17,0],[-15,0],[-14,0],[-18,0],[-17,0],[-18,0],[-17,0],[-17,-1],[-78,0],[-37,-1],[-37,0],[-17,0],[-14,0],[-57,-1],[-144,1],[-21,0],[-265,5],[-56,0],[-37,1],[-176,1]],[[89651,81299],[0,-37],[0,-118],[0,-29],[0,-59],[0,-29],[0,-30],[0,-29],[0,-87],[0,-60],[0,-86],[0,-35],[0,-70],[0,-40],[0,-30],[0,-30],[1,-30],[0,-56],[0,-30],[0,-59],[1,-30],[0,-29],[0,-61],[0,-57],[1,-30],[0,-29],[0,-88],[0,-54],[1,-34],[0,-51],[0,-181],[0,-48],[0,-50],[0,-60],[0,-61],[0,-64],[0,-52],[0,-57],[0,-60],[0,-67],[-1,-291],[-1,-133],[0,-209],[0,-104],[0,-103],[0,-67],[0,-57],[1,-73],[-1,-36],[0,-31],[0,-49],[0,-56],[-2,-14],[-2,-21],[0,-66],[0,-36],[0,-1],[0,-144],[3,-191],[0,-47],[0,-109],[0,-34],[0,-34],[0,-42],[0,-37],[-1,-52],[0,-62]],[[89651,77093],[-18,-2],[-15,1],[-16,0],[-13,0],[-20,1],[-29,0],[-17,0],[-18,0],[-16,-7],[-15,-12],[-28,-2],[-15,0],[-20,0],[-55,0],[-14,0],[-14,1],[-16,0],[-14,0],[-16,0],[-18,1],[-15,0],[-16,0],[-14,1],[-21,0],[-15,0],[-14,0],[-14,1],[-15,0],[-15,0],[-18,0],[-18,1],[-14,0],[-16,0],[-22,1],[-18,0],[-133,2],[-35,1],[-37,0],[-90,1],[-42,1],[-34,0],[-36,0],[-63,1],[-192,3],[-18,0],[-15,0],[-13,0],[-18,1],[-15,0],[-16,0],[-17,0],[-21,0],[-14,1],[-22,0],[-15,0],[-31,0],[-16,0],[-40,1],[-13,0],[-14,0],[-13,0],[-17,0],[-16,0],[-15,1],[-18,0],[-15,0],[-13,0],[-59,0],[-88,1],[-43,1],[-15,0],[-18,0],[-13,0],[-14,-1],[-14,0],[-19,0],[-22,0],[-23,0],[-18,0],[-18,-1],[-17,0],[-13,0],[-24,0],[-17,0],[-15,0],[-13,0],[-35,-1],[-57,0],[-27,0],[-86,-1],[-43,0],[-25,-1],[-17,0],[-18,0],[-17,0],[-17,0],[-18,0],[-17,0],[-17,0],[-17,0],[-19,0],[-19,-1],[-18,0],[-16,0],[-16,0],[-18,0],[-16,0],[-18,0],[-15,1],[-33,0],[-20,1],[-17,1],[-33,0],[-30,1],[-22,-1],[-29,0],[-15,0],[-23,-1],[-29,0],[-18,-1],[-14,0],[-20,0],[-44,-1],[-16,0],[-18,0],[-37,0],[-27,0],[-28,0],[-14,0],[-34,0],[-13,0],[-18,-1],[-24,0],[-24,0],[-21,0],[-21,0],[-20,-1],[-19,-1],[-18,2],[-18,-1],[-48,0],[-24,1]],[[86134,77086],[-19,0],[-20,0],[-22,0],[-16,0],[-25,0],[-34,1],[-31,-1],[-17,0],[-19,1],[-26,-1],[-23,1],[-16,0],[-17,0],[-19,0],[-17,0],[-18,0],[-14,0],[-17,0],[-17,0],[-17,0],[-14,0],[-114,0],[-5,0],[-44,0],[-73,0],[-20,0],[-50,0],[-80,0],[-56,0],[-76,0],[-22,0],[-32,0],[-19,0],[-25,0],[-13,0],[-14,0],[-73,1],[-28,0],[-30,0],[-20,0],[-33,0],[-32,-1],[-29,0],[-30,0],[-32,0],[-34,0],[-28,0],[-23,0],[-14,0],[-65,0],[-20,0],[-13,0],[-34,0],[-17,0],[-21,0],[-18,0],[-19,1],[-21,0],[-20,0],[-14,0],[-20,1],[-25,0],[-20,1],[-25,0],[-19,1],[-21,0],[-18,1],[-22,0],[-30,1],[-18,0],[-15,0],[-44,1],[-19,0],[-17,0],[-15,0],[-27,0],[-31,1],[-13,0],[-17,0],[-174,2],[-20,0],[-75,1],[-17,1],[-148,3],[-16,1],[-18,1],[-20,1],[-18,1],[-16,1],[-16,0],[-15,-1],[-16,0],[-17,0],[-25,0],[-17,-1],[-21,0],[-24,0],[-16,-1],[-21,0],[-13,0],[-15,0],[-18,-1],[-29,0],[-15,0],[-143,-3],[-28,0],[-91,0],[-58,1],[-56,0],[-16,0],[-149,1],[-3,0],[-105,0],[-48,0],[-71,0],[-34,1],[-403,-2],[-24,-1],[-97,0],[-229,-2],[-33,0],[-20,4],[-15,-1],[-17,-1],[-14,-1],[-17,-1],[-72,1],[-16,0],[-25,0],[-49,0],[-23,2],[-16,0],[-18,1],[-16,0],[-150,3],[-91,6],[-66,3],[-412,3],[-30,1],[-25,0],[-45,1],[-39,1],[-47,1],[-140,3],[-52,-1],[-15,1],[-28,0],[-15,1],[-19,1],[-21,1],[-35,0],[-23,0],[-24,0],[-16,0],[-16,0],[-16,0],[-17,1],[-17,0],[-16,1],[-18,0],[-17,1],[-18,0],[-14,0],[-15,1],[-18,0],[-14,1],[-13,0],[-13,1],[-17,0],[-15,1]],[[79736,77134],[1,211],[1,130],[0,70],[0,99],[2,34],[0,45],[-1,75],[0,34],[1,108],[0,30],[0,96],[0,121],[0,202],[0,225],[0,88],[1,106],[-1,59],[0,60],[0,24],[0,24],[-1,71],[0,39],[1,70],[1,72],[-1,259],[0,162]],[[49836,79832],[10,-75],[3,-19],[13,-61],[12,-83],[-2,-44],[-1,-39],[-9,-82],[-9,-59],[-10,-58],[-10,-69],[-12,-60],[-31,-126],[-52,-213],[-40,-164],[-56,-266],[10,-146],[-4,-73],[-7,-102],[-7,-77],[-14,-454],[-23,-205],[-8,-62],[-54,-212],[-88,-332],[-12,-48],[-29,-64],[-38,-88],[-73,-178],[-27,-56],[-98,-248],[-89,-228],[-19,-41],[-26,-54],[-40,-104],[-16,-65],[-10,-147],[-5,-98],[1,-130],[12,-152],[22,-200],[71,-327],[26,-102],[57,-141],[137,-240],[100,-142],[100,-135],[53,-72],[11,-17],[29,-67],[13,-71],[5,-26],[-1,-83],[0,-47],[-17,-91],[-11,-48],[-192,-20],[-1,-1],[-20,-16],[-36,-29],[-49,-36],[-107,8],[-15,2],[-34,9],[-13,3],[-14,9],[-96,61],[-116,74],[-31,20],[-53,33],[-90,66],[-51,23],[-51,26],[-42,31],[-78,46],[-5,1],[-108,15],[-58,12],[-18,1],[-27,-4],[-32,-8],[-36,-18],[-31,-22],[-37,-33],[-23,-34],[-24,-46],[-29,-51],[-49,-90],[-43,-84],[-73,-138],[-24,-55],[-30,-75],[-25,-60],[-28,-75],[-26,-76],[-42,-139],[-13,-43],[-9,-47],[-8,-79],[0,-6],[-1,-37],[-1,-80],[3,-267],[2,-78],[5,-59],[20,-208],[40,-390],[4,-34],[21,-495],[16,-244],[28,-239],[12,-71],[11,-54],[93,-382]],[[47939,69758],[7,-31],[15,-63],[63,-257],[23,-85],[21,-84],[11,-54],[10,-48],[4,-34],[0,-86],[-1,-11],[0,-31],[-5,-53],[-8,-40],[-16,-56],[-25,-76],[-38,-89],[-34,-81],[-47,-89],[-54,-99],[-71,-133],[-13,-27],[-25,-41],[-58,-60],[-43,-41],[-42,-40],[-45,-42],[-33,-42],[-35,-42],[-65,-54],[-52,-50],[-52,-50],[-40,-39],[-33,-28],[-28,-28],[-20,-25],[-33,-44],[-35,-54],[-34,-42],[-43,-39],[-50,-57],[-62,-94],[-48,-77],[-52,-82],[-28,-52],[-18,-32],[-42,-81],[-35,-66],[-35,-90],[-12,-30],[-10,-34],[-10,-27],[-17,-33],[-21,-34],[-13,-21],[-23,-34],[-30,-47],[-34,-55],[-31,-57],[-19,-44],[-14,-42],[-13,-45],[-14,-51],[-12,-46],[-18,-51],[-19,-52],[-13,-30],[0,-2],[-14,-32],[-22,-49],[-21,-37],[-24,-28],[-21,-18],[-31,-24],[-32,-23],[-14,-11],[-16,-14],[-21,-20],[-38,-32],[-23,-14],[-15,-9],[-27,-5],[-13,2],[-23,9],[-24,10],[-18,9],[-23,12],[-16,8],[-28,10],[-29,8],[-28,5],[-4,0],[-28,4],[-22,4],[-26,3],[-17,1],[-20,1],[-27,6],[-32,10],[-42,10],[-65,20],[-72,32],[-65,29],[-69,28],[-60,29],[-44,18],[-25,20],[-22,29],[-26,43],[-33,46],[-32,45],[-25,44],[-23,37],[-16,27],[-13,23],[-18,26],[-43,62],[-45,59],[-41,73],[-35,59],[-32,54],[-25,50],[-24,56],[-25,56],[-18,45],[-28,69],[-25,67],[-24,64],[-29,72],[-28,60],[-35,72],[-35,59],[-33,54],[-43,63],[-40,57],[-2,3],[-41,57],[-40,41],[-40,29],[-47,30],[-49,27],[-46,21],[-61,17],[-24,0],[-15,-3],[-17,-12],[-13,-15],[-13,-15],[-14,-19],[-27,-29],[-18,-17],[-26,-27],[-19,-18],[-25,-34],[-16,-33],[-11,-38],[-11,-38],[-11,-51],[0,-1],[-15,-53],[-16,-47],[-12,-28],[-14,-34],[-12,-39],[-16,-62],[-7,-43],[-9,-56],[-11,-73],[-10,-69],[-11,-69],[-7,-52],[-6,-58],[-4,-48],[-1,-53],[0,-48],[1,-52],[5,-70],[7,-59],[11,-50],[12,-40],[16,-49],[17,-44],[20,-39],[14,-24],[22,-31],[28,-32]],[[43833,66100],[-22,-36],[-15,-23],[-14,-19],[-13,-19],[-16,-22],[-25,-28],[-22,-22],[-16,-11],[-19,-8],[-19,-5],[-20,-4],[-17,-5],[-16,-5],[-20,3],[-15,22],[-11,20],[-11,38],[0,59],[10,26],[15,29],[12,27],[9,24],[6,28],[-6,31],[-22,29],[-16,12],[-27,9],[-31,-1],[-31,-10],[-14,-6],[-18,-9],[-16,-10],[-17,-13],[-19,-17],[-9,-33],[37,-159],[7,-35],[0,-40],[-8,-34],[-11,-38],[-13,-17],[-13,-11],[-23,-17],[-26,-12],[-46,-13],[-14,1],[-20,-6],[-44,-19],[-13,-8],[-18,-9],[-13,-2],[-23,3],[-26,6],[-19,23],[-9,27],[-7,29],[6,29],[19,41],[16,33],[10,25],[8,24],[6,55],[-4,33],[-10,35],[-11,18],[-11,15],[-16,14],[-15,1],[-20,-9],[-13,-13],[-14,-22],[-20,-43],[-13,-35],[-22,-18],[-14,-7],[-17,-12],[-19,-15],[-16,-12],[-44,-34],[-15,-11],[-15,-10],[-15,-10],[-15,-4],[-13,-2],[-21,22],[5,34],[13,37],[11,40],[-2,40],[-15,26],[-19,7],[-15,-8],[-18,-15],[-12,-14],[-16,-19],[-21,-22],[-25,-12],[-15,-1],[-23,6],[-22,24],[-12,29],[-9,33],[0,32],[-1,47],[-7,35],[-7,27],[-10,54],[-11,55],[-15,32],[-13,11],[-24,16],[-24,14],[-32,14],[-20,9],[-23,9],[-15,7],[-18,3],[-16,-1],[-13,-1],[-14,-6],[-15,-11],[-12,-12],[-12,-27],[-3,-5],[-8,-14],[-11,-17],[-22,-29],[-20,-36],[-15,-25],[-25,-8],[-20,5],[-17,11],[-12,15],[-12,15],[-15,30],[0,1],[-73,-9],[-8,-6],[-130,-81],[-2,-1],[-130,-82],[-155,-96],[-45,31],[-9,28],[-8,57],[-4,45],[-7,33],[-5,16],[-10,-1],[-210,-17],[-1,0],[-57,-34],[-5,0],[-23,-6],[-113,-34],[-79,-76],[-54,-62],[-90,-37],[-73,-94],[-185,-239],[-32,-39],[-49,-44],[-68,-36],[-33,-23],[-105,-183],[-13,-38],[-20,-45],[-10,-48],[-46,-87],[-7,-22],[-14,-42],[-11,-19],[-52,-91],[-23,-40],[-15,-25],[-133,-120],[-48,-22],[-95,-8],[-40,8],[-38,22],[-3,2],[-33,28],[-38,33],[-16,-1],[-43,0],[-42,11],[-41,58],[-21,64],[-19,71],[-1,26],[-3,108],[-9,35],[-7,18],[-49,69],[-19,16],[-77,-6],[-31,-28],[-120,-108],[-38,-40],[-57,-34],[-107,-9],[-10,7],[-61,83],[-29,40],[-96,-8],[-78,-7],[-47,18],[-46,44],[-34,46],[-39,53],[-67,49],[-33,19],[-59,24],[-48,-44]],[[38332,65413],[0,86],[0,149],[0,6],[1,167],[0,406],[0,38],[1,320],[0,94],[-1,110],[1,644],[-1,430],[0,694],[0,40],[0,58],[-1,114],[0,338],[-1,849],[0,114],[0,158],[0,96],[1,723],[2,291],[3,563],[0,36],[1,154],[1,39],[1,246],[0,44],[0,119],[-171,0],[-402,-2],[-17,0],[-183,-5],[-23,-1],[-34,0],[-16,-4],[-24,0],[-212,-3],[-104,0],[-15,-1],[-14,1],[-15,1],[-14,0],[-15,0],[-13,-1],[-15,1],[-15,0],[-19,0],[-16,0],[-14,0],[-14,1],[-15,-1],[-122,-2],[-80,-2],[-28,0],[-43,0],[-69,1],[-24,0],[-58,1],[-14,0],[-21,-2],[-30,-5],[-6,-2],[-43,11],[-221,4],[-220,1],[-50,0],[-270,5],[-277,5],[-17,-4],[-16,0],[-15,0],[-18,0],[-13,0],[-16,0],[-17,0],[-14,0],[-16,0],[-15,0],[-13,0],[-15,0],[-16,1],[-14,0],[-17,0],[-279,-1],[-49,1],[-218,-2],[-193,-4],[-76,-1],[-28,0],[-100,1],[-25,0],[-63,0],[-50,0],[-81,-1],[-24,0],[-78,1],[-17,0],[-66,0],[-162,0],[-3,0],[-81,0],[-7,31],[0,38],[0,40],[0,39],[0,38],[0,30],[0,33],[0,32],[0,38],[0,35],[0,34],[0,32],[0,39],[0,39],[0,39],[0,36],[0,37],[0,35],[0,30],[0,33],[0,37],[0,34],[0,33],[1,35],[0,41],[0,36],[0,32],[0,37],[0,35],[0,41],[0,36],[0,37],[0,33],[0,39],[0,30],[1,41],[15,0],[14,0],[14,0],[15,0],[16,0],[19,0],[16,0],[12,1],[67,1],[0,67],[1,338],[1,172],[0,3],[0,35],[0,39],[3,453],[-1,67],[1,61],[-1,170],[0,90],[0,498],[-1,104],[0,33],[0,29],[0,36],[0,36],[0,31],[0,35],[0,35],[0,32],[0,35],[0,34],[0,36],[0,38],[0,36],[0,35],[0,43],[0,32],[0,41],[0,32],[0,37],[0,36],[0,31],[0,32],[0,41],[0,44],[0,30],[0,32],[0,36],[0,30],[0,30],[0,31],[0,36],[0,29],[0,38],[0,32],[0,39],[0,30],[0,36],[0,32],[0,38],[0,37],[1,30],[0,31],[0,42],[0,95],[-1,205],[-1,180],[-4,577],[0,13],[0,61],[-2,240],[-1,396],[-1,159],[1,105],[0,17],[2,31],[2,41],[2,31],[2,36],[2,30],[2,35],[1,13],[2,23],[1,30],[0,44],[-1,31],[-3,35],[-3,29],[-1,36],[0,38],[0,35],[0,40],[0,42],[0,36],[0,36],[0,33],[0,39],[0,36],[0,30],[0,32],[0,36],[0,39],[0,32],[0,35],[0,32],[0,32],[0,31],[0,32],[0,40],[0,31],[0,40],[0,32],[0,31],[0,32],[0,39],[0,36],[0,43],[0,33],[0,35],[0,36],[0,39],[0,48],[0,32],[0,31],[0,32],[0,32],[0,47],[0,40],[0,35],[0,36],[0,47],[0,32],[0,32],[0,39],[0,32],[0,39],[0,48],[0,32],[0,31],[0,42],[0,36],[0,31],[0,32],[0,32],[0,31],[0,32],[0,32],[0,35],[0,36],[0,32],[0,33],[0,38],[0,32],[0,39],[0,32],[0,31],[0,32],[0,32],[0,38],[0,117],[0,46],[0,21],[0,29],[0,36],[0,29],[0,30],[0,40],[0,36],[0,39],[0,36],[0,31],[0,40],[0,32],[0,35],[0,37],[0,31],[0,33],[0,31],[0,36],[0,38],[0,35],[0,30],[0,37],[0,41],[0,36],[0,38],[0,40],[0,37],[0,32],[0,32],[0,37],[0,38],[0,31],[0,36],[0,40],[0,39],[0,39],[0,31],[12,12],[17,0],[14,0],[16,0],[16,0],[17,0],[20,0],[16,0],[15,0],[15,0],[19,0],[22,0],[0,2],[6,802],[0,1],[4,523],[1,361],[0,32],[0,39],[1,38],[0,37],[0,37],[0,35],[0,40],[0,30],[0,38],[0,30],[0,38],[0,38],[0,32],[0,29],[0,38],[0,36],[-2,37],[3,212]],[[38332,65413],[-52,35],[-12,-8],[-20,-27],[-15,-26],[-37,-66],[-36,-112],[-18,-139],[-1,-37],[-10,-30],[-14,-41],[1,-40],[1,-61],[-9,-77],[-11,-30],[-55,-96],[-45,-33],[-14,-8],[-32,-14],[-32,-10],[-11,-2],[-30,-5],[-35,-7],[-12,-4],[-4,-8],[-37,-10],[-37,-22],[-87,-152],[-11,-27],[0,-1],[-6,-28],[-57,-100],[-38,-46],[-30,-18],[-21,-10],[-88,-46],[-67,-86],[-5,-8],[-27,-53],[-40,-6],[-28,-5],[-12,-1],[-25,-11],[-86,-36],[-23,-41],[-41,-46],[-35,-3],[-3,4],[-15,22],[-16,33],[-13,19],[-65,-10],[-30,9],[-37,34],[-17,22],[-16,20],[-31,-3],[-4,0],[-7,-7],[-17,-14],[-89,-94],[-56,-106],[-25,-24],[-5,-4],[-1,-2],[-16,-40],[-4,-9],[-3,-7],[-74,-38],[-42,-4],[-70,2],[-15,7],[-42,70],[-39,39],[-20,15],[-18,13],[-18,-1],[-9,-5],[-10,-5],[-7,-6],[-15,-31],[-27,-42],[-23,-37],[-18,-18],[-76,-71],[-69,-44],[-27,-7],[-25,6],[-21,10],[-20,8],[-6,3],[-3,10],[-8,25],[-3,8],[-4,49],[0,52],[1,4],[1,50],[-2,9],[-4,21],[-1,4],[-5,11],[-5,10],[-1,4],[-13,17],[-7,3],[-6,3],[-30,-1],[-3,-2],[-16,-12],[-1,-2],[-13,-25],[-7,-40],[-2,-10],[-6,-43],[-4,-17],[-3,-13],[0,-1],[-8,-21],[-3,-11],[-7,-6],[-4,-5],[-5,-5],[-6,-3],[-14,-5],[-10,0],[-13,-1],[-13,2],[-6,0],[-19,12],[-32,27],[-3,4],[-1,0],[-62,75],[-9,10],[-19,12],[-46,28],[-13,1],[-7,0],[-18,-10],[-5,-5],[-8,-8],[-2,-2],[-3,-10],[-14,-32],[-2,-16],[0,-47],[0,-4],[5,-12],[32,-90],[14,-79],[5,-24],[5,-31],[2,-43],[-6,-35],[-1,-6],[-1,-6],[-15,-26],[-2,-3],[-23,-5],[-1,-1],[-33,5],[-35,22],[-31,19],[-40,0],[-9,-12],[-3,-4],[-2,-8],[-7,-24],[-4,-16],[0,-14],[2,-54],[0,-2],[6,-19],[8,-16],[16,-30],[5,-10],[8,-12],[50,-72],[20,-45],[3,-5],[4,-10],[15,-61],[-1,-51],[-20,-44],[-4,-2],[-23,-7],[-8,-2],[-16,11],[-4,2],[-31,33],[-49,38],[-20,2],[-19,-25],[-1,-2],[-16,-26],[-12,-75],[-19,-25],[-22,-2],[-13,6],[-32,64],[-39,54],[-4,-1],[-16,-5],[-19,-32],[-15,-5],[-12,-1],[-22,20],[-1,1],[-15,-5],[-21,-37],[-18,-60],[-4,-8],[-24,-45],[-19,-17],[-35,-18],[-12,-6],[-13,-19],[-7,-11],[-8,-12],[-4,-23],[1,-33],[0,-6],[-6,-32],[-11,-32],[-14,-25],[-29,-33],[-6,0],[-30,2],[-19,8],[-23,-2],[-51,-20],[-6,-5],[-38,-30],[-34,-3],[-5,3],[-18,15],[-27,36],[-36,36],[-15,10],[-23,-2],[-5,-9],[-4,-7],[-10,-75],[-48,-73],[-25,-3],[-16,-2],[-43,15],[-22,-2],[-22,-21],[-9,-16],[-3,-30],[-1,-10],[24,-91],[4,-50],[-25,-73],[-26,-41],[-31,-38],[-30,-53],[-15,-33],[-5,-13],[-28,-63],[-7,-28],[4,-47],[6,-19],[16,-21],[40,0],[7,0],[13,-7],[45,-66],[12,-32],[2,-4],[2,-5],[-1,-51],[-8,-14],[-3,-6],[-25,-3],[-13,11],[-39,55],[-18,14],[-40,0],[-25,-10],[-7,-8],[-28,-57],[-35,-58],[-14,-25],[0,-50],[-1,-32],[0,-19],[-7,-24],[-11,-20],[-15,-13],[-17,-10],[-44,-4],[-56,30],[-25,24],[-1,1],[-113,-101],[-9,-28],[15,-87],[22,-127],[-10,-33],[-48,-156],[-64,-16],[-86,4],[-51,-80],[-81,-130],[-143,-171],[-28,12],[-42,18],[-70,17],[-37,9],[-37,8],[-87,-63],[-74,17],[-132,156],[-72,-25],[-28,-10],[-36,-13],[-55,20],[-136,49],[-40,-16],[-53,-20],[-73,-29],[-42,-16],[-74,-30],[-55,51],[-64,60],[-11,62],[-19,108],[-47,98],[-66,-81],[-54,-63],[-36,52],[-31,45],[-27,55],[-41,6],[-82,-55],[-62,25],[-94,24],[-58,-66],[-33,-38],[-6,-35],[-36,-207],[-88,-99],[-52,33],[-12,72],[-54,-4],[-80,-6],[-29,39],[-10,13],[-23,30],[-84,69],[-54,-79],[7,-48],[8,-50],[-38,-66],[-16,-20],[-13,-16],[-41,-51],[-89,-40],[-47,14],[-110,24],[-31,-20],[-47,-30],[-11,-98],[67,-112],[8,-105],[-44,-45],[-55,-36],[-56,-42],[-87,-65],[-25,-19],[-39,-66],[-8,-15],[-117,-204],[-13,-15],[-19,-23],[-26,-36],[-17,-10],[-12,13],[-23,123],[-81,28],[-58,29],[-33,-15],[-27,-62],[-49,-113],[-23,-265],[-22,-69],[-70,5],[-27,74],[-1,4],[-16,94],[-39,27],[-69,-10],[-1,0],[-89,-108],[-1,-1],[-14,-116],[-90,-15],[-6,28],[-1,1],[-4,20],[-15,63],[0,1],[-61,39],[-74,15],[-93,-42],[-47,94],[-78,23],[-11,4],[-55,22],[-59,23],[-24,10],[-44,17],[-1,1],[-36,52],[-17,25],[-108,12],[-110,-55],[-40,-20],[-117,-32],[-22,-6],[-95,-26],[-1,0],[-6,-2],[-74,-21],[-25,-8],[-77,99],[-32,7],[-15,-37],[-50,-122],[-93,-26],[-45,-2],[-81,-46],[-9,-5],[-26,1],[-8,0],[-102,1],[-18,-37],[-2,-4],[-3,-6],[-13,-32],[-24,-30],[-40,0],[-5,0],[-18,31],[-14,24],[-13,10],[-19,-2],[-109,-139],[-23,-41],[-13,-56],[-16,-53],[-12,-41],[-7,-27],[-5,-15],[-4,-12],[-2,-8]],[[26998,58616],[0,1],[0,6],[0,157],[0,3],[0,115],[0,34],[0,110],[0,111],[0,219],[0,5],[0,46],[0,54],[0,17],[0,24],[0,4],[0,186],[0,170],[0,122],[0,257],[0,64],[0,472],[0,26],[0,170],[0,63],[0,230],[0,203],[0,4],[0,205],[0,2],[0,192],[0,171],[0,115],[0,110],[0,559],[0,88],[0,155],[0,679],[0,33],[0,136],[0,130],[0,293],[0,833],[0,115],[0,3],[0,188],[0,39],[0,46],[0,152],[0,5],[0,104],[0,157],[0,44],[0,105],[0,114],[0,81],[0,82],[0,236],[0,20],[0,3],[0,104],[0,229],[0,284],[0,637],[0,583],[0,186],[0,396],[0,81],[0,425],[0,288],[0,313],[0,2],[0,389],[0,219],[4,466],[2,175],[0,360],[-2,298],[2,397],[0,56],[0,32],[0,76],[0,3],[-1,27],[-1,132],[1,537],[0,34],[0,356],[0,2],[1,32],[0,3]],[[99569,82133],[3,-10],[31,-210],[38,-89],[43,-65],[3,-5],[45,-144],[56,-190],[5,-19],[1,-82],[0,-124],[1,-68],[4,-657],[3,-1854],[5,-3643],[1,-337],[0,-357],[2,-1383],[2,-837]],[[99812,72059],[-19,-1],[-28,-1],[-268,0],[-169,-1],[-19,-3],[-27,0],[-41,-1],[-63,-5],[-66,0],[-13,0],[-13,0],[-18,-1],[-20,0],[-88,0],[-111,0],[-31,-1],[-17,0],[-18,0],[-25,-1],[-65,0],[-96,0],[-50,0],[-33,0],[-87,0],[-134,-1],[-71,0],[-64,0],[-59,-1],[-15,0],[-22,1],[-171,0],[-236,-2],[-13,0],[-16,-1],[-20,0],[-14,1],[-15,0],[-22,0],[-77,0],[-16,0],[-34,-1],[-54,1],[-8,-1],[-5,0],[-29,1],[-37,0],[-32,1],[-62,1],[-41,0],[-65,1],[-34,0],[-18,2],[-127,7],[-12,1],[-77,-12],[-54,0],[-23,0],[-67,-1],[-60,1],[-23,-1],[-36,1],[-54,-2],[-39,-1],[-23,0],[-43,-1],[-46,-1],[-32,-1],[-27,0],[-39,-1],[-91,-1],[-41,-1],[-24,0],[-32,0],[-31,-1],[-16,0],[-129,-6],[-59,-4],[-75,-3],[-15,0],[-33,4],[-27,2],[-16,6],[-14,28],[-17,11],[-36,11],[-16,5],[-17,2],[-25,-37],[-16,-9],[-29,3],[-30,2],[-25,2],[-32,2],[-14,1],[-15,2],[-15,9],[-17,-9],[-14,-7],[-16,8],[-21,0],[-17,0],[-31,0],[-24,-1],[-133,-1],[-16,0],[-36,-1],[-63,-1],[-19,0],[-55,-1],[-36,0],[-21,0],[-116,-3],[-53,-1],[-51,0],[-68,0],[-42,-1],[-66,0],[-13,0],[-50,0],[-69,-1],[-61,-1],[-14,0],[-52,-1],[-33,1]],[[94164,72043],[0,129],[-1,40],[0,64],[0,39],[-1,61],[0,70],[-2,158],[0,43],[-2,191],[0,31],[0,76],[0,406],[0,47],[1,275],[0,40],[0,64],[0,68],[1,43],[2,36],[-3,34],[-1,173],[0,419],[-1,416],[-8,420],[0,216],[1,200],[1,210],[0,64],[0,16],[-3,539],[-4,379],[-2,35],[-58,0],[-354,1],[-26,-3],[-18,0],[-78,1],[-268,2],[-34,0],[-234,4],[-165,6],[-104,-2],[-187,-1],[-63,-1],[-21,0],[-118,0],[-98,1],[-30,0],[-222,4],[-48,1],[-20,0],[-40,0],[-63,2],[-6,0],[-24,1],[-17,-1],[-62,1],[-37,0],[-58,2],[-22,0],[-30,1],[-17,0],[-18,1],[-21,3],[-18,4],[-24,5],[-90,2],[-88,2],[-15,1],[-17,0],[-64,2],[-15,0],[-44,2],[-62,2],[-93,-1],[-26,0],[-29,0],[-21,1],[-31,1],[-69,2],[-147,-2],[-80,0],[-78,0],[-92,0],[-18,0],[-14,0],[-112,-1],[-64,0],[-9,-1],[-67,0],[-15,0],[-113,1],[-21,0],[-27,1],[-59,1],[-22,0],[-14,0],[-73,1],[-126,0],[-73,2]],[[58849,79790],[-1,-100],[2,-60],[0,-39],[1,-39],[0,-100],[0,-87],[-5,-100],[-1,-51],[-1,-269],[7,-413],[0,-8],[0,-208],[-2,-205],[0,-398],[3,-440],[0,-418],[1,-124],[0,-86],[-3,-211],[0,-118],[2,-297],[1,-211],[-1,-113],[0,-95],[3,-29],[-3,-31],[1,-137],[0,-40],[0,-159],[1,-184],[0,-44],[-4,-216],[0,-89],[1,-29],[2,-44],[1,-113],[1,-68],[-1,-37],[1,-30],[0,-1],[1,-223],[1,-196],[0,-505],[0,-330],[0,-164],[0,-256],[-1,-413],[0,-33],[1,-601],[0,-206],[-1,-211],[0,-209],[0,-47],[0,-218],[0,-106],[0,-47],[0,-414],[0,-43],[0,-31],[0,-125],[-1,-167],[0,-55]],[[58855,69749],[-329,1],[-170,0],[-189,-2],[-252,6],[-15,-2],[-48,0],[-23,0],[-15,1],[-22,-1],[-24,-1],[-20,1],[-41,0],[-15,0],[-23,0],[-20,0],[-19,0],[-21,0],[-15,0],[-28,0],[-25,0]],[[57541,69752],[-23,1],[-189,0],[-87,0],[-114,2],[-143,-2],[-157,0],[-115,0],[-23,0],[-67,0],[-16,0],[-57,0],[-55,0],[-15,0],[-20,-1],[-14,-2],[-29,0],[-71,1],[-631,3],[-20,1],[-20,-1],[-17,-1],[-19,0],[-14,0],[-26,0],[-25,0],[-13,0],[-17,1],[-18,-1],[-14,0],[-20,0],[-16,0],[-29,0],[-14,0],[-19,0],[-22,0],[-10,0],[-8,1],[-131,0],[-22,0],[-22,0],[-75,0],[-17,4],[-14,0],[-76,-1],[-48,-1],[-83,-2],[-44,-1],[-121,-1],[-139,4],[-227,0],[-52,0],[-105,0],[-158,0],[-37,0],[-34,0],[-18,0],[-15,0],[-17,0],[-18,1],[-15,0],[-13,0],[-22,0],[-17,0],[-24,0],[-18,0],[-24,0],[-67,1],[-35,0],[-15,0],[-18,0],[-22,0],[-19,0],[-20,0],[-23,1],[-15,0],[-13,0],[-16,-1],[-16,0],[-16,0],[-19,0],[-22,0],[-36,0],[-36,0],[-45,0],[-18,0],[-20,1],[-33,0],[-25,0],[-65,0],[-65,0],[-19,0],[-23,0],[-69,1],[-15,-1],[-36,0],[-17,0],[-48,0],[-25,0],[-38,0],[-25,-1],[-62,0],[-30,0],[-18,0],[-27,1],[-13,0],[-36,0],[-23,0],[-32,0],[-15,0],[-13,0],[-41,0],[-27,0],[-36,0],[-51,1],[-83,0],[-28,0],[-33,0],[-29,0],[-16,-1],[-75,0],[-92,0],[-33,0],[-13,0],[-15,1],[-25,-1],[-17,1],[-38,0],[-37,0],[-32,0],[-39,0],[-55,0],[-19,0],[-30,0],[-18,0],[-16,0],[-15,0],[-18,0],[-23,0],[-15,0],[-14,0],[-19,1],[-19,0],[-20,0],[-18,0],[-17,0],[-22,0],[-20,0],[-16,0],[-14,0],[-9,0],[-10,0],[-14,0],[-14,0],[-15,0],[-14,0],[-17,0],[-16,0],[-14,0],[-16,0],[-16,0],[-16,0],[-21,0],[-20,0],[-16,1],[-18,0],[-24,-1],[-20,0],[-11,0],[-5,0],[-14,0],[-18,1],[-15,0],[-20,0],[-18,0],[-16,0],[-16,-1],[-17,1],[-15,0],[-17,0],[-16,0],[-16,0],[-14,0],[-19,0],[-162,0],[-77,0],[-14,0],[-16,0],[-252,1],[-14,0],[-159,-3],[-61,1],[-28,0],[-73,3],[-124,0],[-342,-1],[-5,0],[-27,5],[-35,0],[-94,1],[-123,1],[-250,3],[-22,0],[-79,1],[-10,0],[-182,1],[-86,-5],[-34,-2],[-107,-6],[-36,-2],[-84,-3],[-63,1],[-3,0],[-132,0],[-187,0]],[[70080,79743],[-2,-410],[0,-33],[0,-33],[0,-35],[0,-33],[0,-34],[0,-235],[0,-58],[0,-34],[0,-35],[0,-34],[0,-29],[0,-38],[0,-34],[0,-31],[0,-36],[0,-35],[0,-34],[0,-34],[0,-33],[0,-35],[0,-34],[0,-33],[0,-34],[0,-33],[0,-34],[0,-35],[1,-158],[0,-33],[0,-30],[0,-30],[0,-33],[0,-33],[0,-34],[0,-34],[0,-33],[0,-36],[0,-40],[0,-37],[0,-30],[0,-35],[0,-40],[0,-34],[0,-33],[0,-36],[0,-40],[-1,-36],[0,-32],[0,-33],[0,-34],[0,-34],[0,-18],[0,-16],[1,-33],[0,-31],[1,-28],[-1,-54],[1,-47],[0,-210],[0,-422],[1,-147],[1,-37],[0,-36],[0,-38],[0,-35],[1,-37],[0,-32],[0,-34],[1,-34],[0,-31],[-2,-373],[1,-153],[-2,-214],[-1,-52],[4,-162],[0,-35],[0,-38],[0,-35],[0,-37],[0,-32],[0,-35],[0,-37],[0,-29],[1,-32],[0,-38],[0,-30],[0,-31],[1,-37],[0,-44],[0,-32],[0,-36],[0,-113],[1,-50],[0,-37],[0,-32],[0,-33],[0,-33],[0,-33],[0,-36],[0,-34],[1,-34],[0,-33],[0,-34],[0,-30],[1,-92],[0,-99],[0,-7],[1,-38],[0,-157],[0,-51],[0,-33],[0,-30],[1,-33],[0,-32],[0,-38],[0,-31],[0,-35],[0,-31],[0,-35],[1,-41],[0,-34],[0,-30],[0,-35],[0,-34],[0,-33],[0,-33],[0,-33],[0,-31],[0,-36],[0,-33],[0,-34],[0,-41],[0,-33],[0,-37],[0,-33],[0,-41],[0,-35],[0,-38],[0,-36],[0,-41],[0,-46],[1,-141],[1,-210],[0,-57],[1,-149],[0,-135],[0,-31],[-2,-258],[0,-30],[0,-33],[0,-33],[0,-34],[0,-33],[0,-31],[0,-35],[0,-41],[0,-33],[0,-33],[0,-33],[0,-37],[0,-36],[0,-32],[0,-33],[0,-35],[0,-30],[0,-12],[0,-22],[0,-34],[0,-35],[0,-32],[0,-29],[0,-37],[0,-32],[0,-38],[0,-38],[0,-36],[0,-30],[0,-34],[1,-32],[0,-32],[0,-35],[0,-34],[0,-40],[0,-34],[0,-33],[0,-31],[0,-36],[0,-33],[0,-33],[0,-32],[0,-33],[0,-35],[0,-40],[0,-33],[0,-34],[0,-33],[0,-33],[0,-37],[0,-1]],[[70094,69739],[-20,-4],[-14,0],[-14,0],[-17,-1],[-15,0],[-14,0],[-14,1],[-17,0],[-13,0],[-16,0],[-18,0],[-15,0],[-16,0],[-15,0],[-15,0],[-15,0],[-13,0],[-16,0],[-15,0],[-18,1],[-15,0],[-14,0],[-16,0],[-17,1],[-17,0],[-14,0],[-14,0],[-19,0],[-16,0],[-16,1],[-13,0],[-13,0],[-17,0],[-16,0],[-18,0],[-15,0],[-19,0],[-14,0],[-14,0],[-15,0],[-16,0],[-14,0],[-15,0],[-15,0],[-16,0],[-17,0],[-17,1],[-14,0],[-16,0],[-16,0],[-16,0],[-14,0],[-16,0],[-19,0],[-16,0],[-18,0],[-14,0],[-15,0],[-16,0],[-14,0],[-18,0],[-16,0],[-15,0],[-16,0],[-16,0],[-16,0],[-17,0],[-16,0],[-15,0],[-17,0],[-16,0],[-15,0],[-16,0],[-14,0],[-14,0],[-15,0],[-16,0],[-14,0],[-13,0],[-14,0],[-20,0],[-18,0],[-14,0],[-16,0],[-14,0],[-16,0],[-14,0],[-15,0],[-15,0],[-17,0],[-13,0],[-14,0],[-13,0],[-14,0],[-14,0],[-13,0],[-16,0],[-15,0],[-14,0],[-17,0],[-16,0],[-17,0],[-14,0],[-17,0],[-18,0],[-17,-1],[-15,0],[-14,0],[-13,0],[-2,0],[-14,0],[-16,0],[-16,0],[-17,0],[-16,0],[-13,0],[-14,0],[-17,0],[-17,0],[-17,0],[-18,0],[-17,-1],[-15,0],[-14,0],[-13,0],[-19,0],[-14,0],[-16,0],[-16,0],[-17,0],[-18,0],[-16,0],[-14,0],[-14,0],[-17,0],[-16,0],[-14,0],[-14,0],[-13,-1],[-15,0],[-13,0],[-15,0],[-17,0],[-14,0],[-15,0],[-15,0],[-15,0],[-17,0],[-17,0],[-14,0],[-19,0],[-16,0],[-16,0],[-14,0],[-14,0],[-15,0],[-15,0],[-14,0],[-16,0],[-16,1],[-15,0],[-14,0],[-15,0],[-16,0],[-14,0],[-13,0],[-14,0],[-16,0],[-14,0],[-17,0],[-13,0],[-16,0],[-18,0],[-15,0],[-15,0],[-15,0],[-18,0],[-16,0],[-15,0],[-18,0],[-15,0],[-16,0],[-17,0],[-14,1],[-15,0],[-13,0],[-16,0],[-14,0],[-15,0],[-15,0],[-15,0],[-18,0],[-13,0],[-16,0],[-14,0],[-13,0],[-16,0],[-15,0],[-16,0],[-15,0],[-16,0],[-16,0],[-15,0],[-15,0],[-16,1],[-16,0],[-15,0],[-16,0],[-14,0],[-17,0],[-54,0],[-19,0],[-9,0],[-7,0],[-49,0],[-133,0],[-52,0],[-10,0],[-11,0],[-148,1],[-5,0],[-21,0],[-81,0],[-19,0],[-18,0],[-14,0],[-27,0],[-43,-1],[-20,-1],[-43,2],[-15,0],[-17,0],[-16,1],[-18,0],[-15,0],[-14,0],[-14,0],[-15,0],[-16,0],[-18,0],[-17,1],[-15,0],[-18,0],[-16,0],[-15,0],[-18,0],[-16,0],[-14,0],[-16,0],[-14,0],[-17,0],[-16,0],[-16,0],[-14,0],[-14,0],[-19,0],[-16,0],[-15,0],[-13,0],[-16,0],[-16,0],[-16,0],[-16,0],[-16,0],[-14,0],[-14,0],[-16,0],[-17,0],[-14,0],[-18,0],[-15,0],[-17,0],[-15,0],[-17,0],[-14,0],[-16,0],[-16,0],[-15,0],[-18,0],[-16,0],[-14,0],[-16,0],[-15,0],[-16,0],[-15,0],[-15,0],[-16,0],[-18,0],[-16,0],[-15,0],[-16,0],[-13,0],[-15,0],[-16,0],[-18,0],[-17,0],[-14,0],[-16,0],[-14,0],[-15,0],[-15,0],[-13,0],[-16,0],[-17,0],[-16,0],[-17,0],[-16,0],[-17,0],[-14,0],[-17,0],[-13,0],[-17,0],[-17,0],[-15,0],[-18,0],[-15,0],[-15,0],[-14,0],[-14,0],[-15,0],[-17,0],[-16,0],[-14,0],[-15,0],[-16,0],[-16,1],[-14,0],[-14,0],[-13,0],[-14,0],[-16,-1],[-18,0],[-17,0],[-17,0],[-15,0],[-13,0],[-13,0],[-15,0],[-13,0],[-17,0],[-19,0],[-17,0],[-15,0],[-20,0],[-14,0],[-15,0],[-13,0],[-16,0],[-18,0],[-17,0],[-17,0],[-17,0],[-15,0],[-17,0],[-17,0],[-15,0],[-17,0],[-16,0],[-17,0],[-14,0],[-15,0],[-15,0],[-15,0],[-17,0],[-17,0],[-15,0],[-16,0],[-18,0],[-15,0],[-15,0],[-15,0],[-152,0],[-43,0],[-34,0],[-46,0],[-19,0],[-46,0],[-48,0],[-19,0],[-21,0],[-37,0],[-72,0],[-18,0],[-16,1],[-14,0],[-17,0],[-18,0],[-15,0],[-18,0],[-14,0],[-13,0],[-14,0],[-15,0],[-14,0],[-16,0],[-15,0],[-19,0],[-17,0],[-16,0],[-16,0],[-18,0],[-13,0],[-13,0],[-15,0],[-17,0],[-20,0],[-16,0],[-16,0],[-16,0],[-15,0],[-15,0],[-17,0],[-16,0],[-15,0],[-17,0],[-17,0],[-14,0],[-13,0],[-14,0],[-15,0],[-14,0],[-17,0],[-15,0],[-16,0],[-15,0],[-18,0],[-14,0],[-15,0],[-17,0],[-18,0],[-13,0],[-15,0],[-26,0],[-16,0],[-16,0],[-13,0],[-13,0],[-18,0],[-17,0],[-16,0],[-16,1],[-17,0],[-17,0],[-17,0],[-14,0],[-16,0],[-17,0],[-17,0]],[[62284,69744],[-22,0],[-16,0],[-13,0],[-16,0],[-13,0],[-17,0],[-17,0],[-16,0],[-16,0],[-16,0],[-17,-1],[-17,0],[-16,0],[-20,0],[-15,0],[-16,0],[-14,1],[-17,0],[-16,0],[-13,0],[-16,0],[-13,0],[-14,0],[-16,0],[-15,0],[-14,0],[-14,0],[-19,0],[-17,0],[-18,0],[-17,0],[-21,0],[-20,0],[-14,0],[-17,1],[-17,0],[-17,0],[-32,0],[-17,0],[-15,0],[-15,0],[-30,0],[-16,0],[-14,0],[-28,0],[-27,0],[-13,0],[-29,0],[-15,0],[-19,0],[-14,0],[-19,0],[-15,0],[-16,0],[-14,0],[-17,1],[-15,0],[-40,0],[-19,0],[-18,0],[-20,1],[-14,0],[-13,0],[-14,-1],[-14,0],[-14,1],[-18,-1],[-15,0],[-14,0],[-15,0],[-13,0],[-17,0],[-15,0],[-16,0],[-15,1],[-15,-1],[-16,0],[-14,1],[-14,-1],[-17,0],[-18,0],[-18,0],[-17,0],[-16,1],[-17,0],[-14,0],[-16,0],[-19,-1],[-15,0],[-15,0],[-13,0],[-15,0],[-15,0],[-15,0],[-14,0],[-15,0],[-13,0],[-16,0],[-15,0],[-17,0],[-14,0],[-15,0],[-19,0],[-13,0],[-15,0],[-13,0],[-15,0],[-15,0],[-17,0],[-12,0],[-2,0],[-17,0],[-15,0],[-17,1],[-16,0],[-15,0],[-18,0],[-14,0],[-17,0],[-18,-1],[-16,1],[-15,-1],[-15,1],[-14,-1],[-15,0],[-18,0],[-15,0],[-18,1],[-15,0],[-18,0],[-15,0],[-13,0],[-14,0],[-14,0],[-16,0],[-14,1],[-14,0],[-18,0],[-16,0],[-14,0],[-18,0],[-18,0],[-34,-1],[-16,0],[-14,0],[-17,0],[-17,0],[-16,0],[-16,0],[-18,0],[-16,0],[-15,0],[-19,0],[-16,0],[-18,0],[-16,0],[-15,0],[-18,0],[-17,0],[-17,0],[-14,0],[-16,0],[-15,0],[-17,0],[-17,0],[-17,0],[-14,0],[-17,0],[-16,0],[-15,0],[-13,0],[-16,0],[-14,0],[-17,0],[-13,0],[-15,-1],[-15,0],[-538,3]],[[79736,77134],[0,-108],[0,-91],[-1,-41],[0,-178],[0,-176],[-2,-153],[0,-66],[0,-205],[2,-238],[0,-1],[0,-110],[-1,-154],[0,-134],[0,-8],[0,-24],[0,-36],[-1,-31],[0,-40],[0,-34],[0,-33],[0,-31],[0,-39],[0,-30],[0,-40],[0,-30],[0,-36],[0,-112],[-1,-206],[0,-5],[0,-46],[0,-79],[-1,-206],[0,-71],[0,-6],[-1,-131],[0,-32],[0,-29],[0,-40],[0,-41],[0,-36],[0,-40],[0,-37],[0,-34],[0,-35],[0,-30],[-1,-36],[1,-32],[-1,-31],[0,-29],[0,-34],[0,-40],[0,-33],[0,-33],[0,-29],[0,-38],[0,-41],[0,-31],[-1,-34],[0,-42],[3,-235],[1,-109],[2,-291],[-6,-28],[-1,-151],[0,-40],[0,-58],[-1,-30],[0,-13],[-2,-237],[1,-32],[0,-33],[0,-88],[0,-31],[0,-38],[0,-36],[0,-39],[0,-45],[0,-35],[0,-40],[0,-30],[0,-36],[0,-63],[0,-55],[-1,-96],[0,-40],[0,-30],[0,-31],[-1,-30],[0,-30],[0,-43],[0,-39],[0,-30],[0,-36],[0,-39],[0,-42],[0,-37],[0,-45],[0,-36],[0,-31],[-1,-34],[0,-35],[0,-276],[0,-27],[-1,-130],[0,-419],[0,-39],[3,-267],[-1,-22],[-1,-39],[3,-48],[0,-2],[16,0],[17,0],[14,0],[15,-1],[9,-24],[1,-41],[0,-32],[0,-35],[0,-31],[0,-36],[0,-40],[0,-35],[0,-30],[0,-33],[0,-40],[0,-29],[0,-32],[0,-37],[0,-33],[0,-39],[0,-35],[0,-32],[0,-42],[0,-33],[-1,-39],[0,-34],[0,-40],[0,-34],[1,-34],[0,-29],[0,-32],[0,-35],[0,-43],[0,-41],[0,-30],[0,-30],[0,-39],[-1,-38],[0,-37],[0,-29],[1,-41],[0,-188],[0,-42],[0,-48],[0,-3],[1,-88],[0,-418],[1,-420],[1,-417],[0,-52],[0,-15],[-2,-349],[-1,-210],[0,-55],[1,-101],[0,-5],[1,-49],[2,-350],[-1,-70],[-2,-413],[0,-87],[-1,-35],[0,-32],[0,-31],[-1,-30],[0,-32],[0,-35],[1,-35],[-1,-36],[0,-40],[1,-38],[0,-37],[0,-38],[0,-32],[-1,-29],[0,-40],[1,-39],[0,-30],[0,-30],[0,-39],[0,-30],[0,-32],[-1,-35],[0,-209],[0,-39],[0,-59],[-1,-33],[0,-60],[0,-54],[0,-41],[-1,-40],[0,-30],[0,-39],[0,-36],[0,-29],[0,-34],[0,-40],[0,-37],[0,-56],[0,-103],[0,-57],[0,-34],[0,-7],[0,-50],[0,-52],[0,-74],[0,-3],[0,-40],[-2,-135],[0,-38],[0,-35],[1,-32],[-1,-40],[0,-32],[0,-33],[0,-31],[0,-37],[-4,-420],[0,-4]],[[79788,62079],[-74,1],[-32,0],[-6,0],[-132,2],[-19,0],[-49,1],[-80,0],[-110,1],[-27,1],[-34,0],[-3,0],[-41,0],[-53,1],[-80,0],[-32,1],[-23,0],[-267,1],[-34,0],[-3,0],[-95,1],[-133,0],[-73,1],[-21,0],[-25,0],[-18,0],[-13,0],[-1,0],[-54,0],[-60,1],[-18,0],[-85,1],[-163,2],[-115,1],[-150,1],[-46,1],[-52,0],[-16,0],[-10,0],[-143,1],[-176,2],[-68,1],[-19,0],[-4,0],[-127,1],[-123,1],[-14,0],[-183,0],[-74,1],[-3,0],[-92,0],[-14,0],[-69,1],[-60,0],[-27,0],[-20,0],[-46,1],[-15,0],[-111,1],[-18,0],[-65,0],[-88,0],[-20,1],[-19,0],[-15,0],[-5,0],[-110,0],[-54,0],[-22,1],[-67,0],[-124,1],[-21,0],[-65,0],[-130,1],[-59,0],[-22,0],[-47,0],[-16,0],[-161,1],[-14,0],[-90,1],[-42,0],[-135,1],[-132,0],[-42,1],[-92,0],[-258,1],[-17,1],[-5,0],[-21,0],[-15,0],[-15,0],[-22,0],[-15,0],[-23,0],[-24,0],[-29,1],[-59,0],[-29,0],[-149,1],[-117,1],[-263,2],[-98,1],[-33,1],[-30,0],[-53,1],[-52,1],[-136,1],[-14,0],[-111,1],[-3,1],[-46,0],[-220,2],[-267,1],[-266,2],[-16,0],[-15,0],[-51,0],[-182,1],[-21,0],[-245,3],[-45,1],[-222,3],[-147,2],[-84,1],[-24,0],[-11,0],[-58,1],[-75,1],[-133,1],[-33,0],[-13,0],[-221,2],[-256,6]],[[70236,62156],[0,29],[0,30],[-1,33],[0,33],[0,32],[0,34],[0,37],[0,33],[0,37],[0,32],[0,33],[0,32],[0,29],[0,36],[1,35],[0,36],[0,33],[0,38],[0,38],[0,30],[0,39],[0,32],[0,36],[0,33],[0,34],[0,32],[0,35],[0,33],[0,34],[0,32],[0,34],[0,36],[0,37],[0,32],[0,34],[1,35],[0,30],[0,37],[0,32],[0,32],[0,35],[0,32],[0,4],[0,37],[0,32],[0,37],[0,31],[0,32],[0,32],[0,31],[0,33],[0,38],[0,36],[0,34],[1,33],[0,34],[0,34],[0,33],[0,34],[1,33],[0,40],[0,38],[-1,32],[0,34],[0,33],[0,34],[0,32],[0,33],[0,33],[0,33],[0,41],[0,33],[0,33],[0,33],[0,35],[0,32],[0,37],[0,30],[0,37],[0,33],[0,33],[0,33],[0,34],[1,32],[0,29],[0,32],[0,37],[0,32],[0,36],[0,30],[0,32],[0,36],[0,33],[0,30],[0,36],[0,31],[1,36],[0,35],[0,39],[0,31],[0,43],[0,34],[0,36],[0,30],[0,32],[0,38],[-1,38],[0,32],[0,33],[0,30],[0,36],[0,31],[0,1],[0,38],[0,58],[0,326],[0,41],[0,37],[0,33],[0,33],[0,37],[0,37],[0,33],[0,30],[0,35],[0,33],[0,36],[0,32],[0,32],[0,33],[0,40],[0,34],[0,33],[0,37],[0,39],[0,36],[-1,40],[0,33],[0,33],[-1,439],[-3,841],[0,415],[1,258],[0,165],[-1,470],[-16,0],[-14,1],[-13,0],[-16,0],[-15,0],[-14,0],[-16,0],[-16,1],[-20,3]],[[14440,73850],[-18,-3],[-2,-788],[0,-348],[1,-57],[0,-97],[-1,-311],[2,-181],[2,-46],[1,-34],[0,-275],[-2,-54],[1,-157],[-1,-152],[0,-12],[0,-32],[0,-11],[1,-222],[1,-596],[0,-420],[0,-61],[0,-80],[0,-76],[0,-5],[0,-182],[1,-547],[-2,-387],[-1,-371],[0,-224],[0,-38],[0,-131],[0,-52],[0,-5],[0,-605],[0,-231],[0,-355],[0,-424],[0,-12],[-1,-773],[0,-44],[1,-472],[0,-134],[0,-6],[1,-531],[0,-47],[-1,-148],[1,-162],[0,-11],[0,-158],[-66,0],[0,-187],[-2,-495],[-1,-645],[-1,-470],[-1,-97],[-1,-272],[-1,-290],[1,-35],[-113,-3],[-48,3],[-316,4],[-23,0],[-55,0],[-468,3],[-65,1],[-173,1],[-97,0],[-36,0],[-2,0],[-230,1],[-491,1],[-210,-1],[-15,0],[-14,0],[-252,-1],[-174,0],[-20,1],[-101,0],[-204,0],[-311,-1],[-201,0],[-25,0],[-62,0],[-34,0],[-18,5],[-18,-4],[-15,-5],[-18,-5],[-34,2],[-15,-2],[-88,3],[-16,3],[-17,0],[-73,0],[-136,-1],[-40,0],[-14,7],[-19,0],[-21,0],[-15,-12],[-200,4],[-40,0],[-222,3],[-17,0],[-13,0],[-17,0],[-13,0],[-18,0],[-15,0],[-14,0],[-17,0],[-16,0],[-14,0],[-13,0],[-14,0],[-15,0],[-16,0],[-18,0],[-13,0],[-15,0],[-167,0],[-101,0],[-56,0],[-57,0],[-99,1],[-60,7],[-28,0],[-15,0],[-13,0],[-18,0],[-60,-1],[-19,1],[-13,0],[-17,5],[-18,-6],[-14,0],[-14,0],[-16,0],[-15,0],[-13,0],[-18,0],[-17,1],[-13,0],[-15,1],[-74,-1],[-18,0],[-16,0],[-25,0],[-24,0],[-15,0],[-10,0],[-18,0],[-16,0],[-24,0],[-15,-1],[-23,-5],[-94,-1],[-46,0],[-33,6],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-15,-1],[-15,0],[-15,0],[-15,0],[-15,0],[-16,0],[-16,-1],[-14,-1],[-15,0],[-15,0],[-15,0],[-16,-3],[-118,-2],[-148,2],[-171,5],[-185,-5],[-107,-2],[-61,0],[-33,-1],[-28,0],[-59,-1],[-14,0],[-34,0],[-38,0],[-17,-1],[-21,0],[-26,-1],[-17,0],[-23,0],[-19,0],[-15,-1],[-16,0],[-15,0],[-19,0],[-16,0],[-29,-2],[-19,-1],[-17,-1],[-17,0],[-19,-1],[-16,-2]],[[6433,61285],[-62,4],[-55,0],[-149,2],[-204,1],[-50,-3],[-19,2],[-98,0],[-123,2],[-270,2],[-65,1],[-75,0],[-9,0],[-407,1],[-116,-1],[-24,-1],[-18,-1],[-33,6],[-315,2],[-24,0],[-106,0],[-102,0],[-22,-1],[-55,0],[-184,1],[-64,1],[-32,0],[-40,0],[-19,0],[-6,0],[-37,0],[-21,0],[-8,0],[-361,2],[-43,0],[-86,0],[-27,-15],[-19,-22],[-33,-26],[-11,-9],[-22,-23],[-5,-9],[-4,-42],[-65,-138],[-12,-25],[-26,1],[-14,-4],[-8,-4],[-2,-3],[0,-7],[3,-6],[5,-5],[20,-9],[3,-3],[18,-15],[4,-5],[1,-11],[0,-48],[-12,-24],[-94,-48],[-5,-3],[-7,5],[-23,40],[-5,22],[-30,35],[-26,31],[-7,6],[-31,-3],[-16,-21],[-9,-13],[-42,-21],[-52,47],[-13,12],[-106,23],[-48,97],[-1,3],[-36,32],[-29,0],[-7,0],[-4,-5],[-4,-14],[-16,21],[-1,2],[-82,33],[-16,-8],[-6,-24],[-5,-17],[-6,-45],[-3,-7],[-26,-25],[-17,-12],[-6,-4],[-5,4],[-2,8],[0,15],[6,20],[10,24],[2,9],[-1,8],[-6,4],[-8,1],[-31,4],[-108,-107],[-1,-1],[-24,-110],[-11,-48],[-76,39],[-31,17],[-6,-7],[-4,-14],[-16,-64],[-38,-78],[-60,38],[-75,-14],[-2,-2],[-2,-2],[-24,-55],[-2,-12],[-1,-13],[2,-10],[12,-48],[-2,-7],[-6,-9],[-11,-10],[-7,0],[-20,11],[-35,24],[-13,15],[-68,-33],[-11,-5],[-61,-30],[-137,-32],[-34,-2],[-3,4],[-3,15],[-22,36],[-40,66],[-7,-69],[-4,-50],[-45,43],[-2,3],[-9,25],[-33,23],[-4,0],[-9,-5],[-7,-9],[-4,-13],[0,-10],[-25,59],[-15,-12],[-41,-46],[-1,-3],[2,-27],[4,-1],[5,6],[8,2],[1,-1],[4,-16],[1,-7],[-5,-7],[-45,-44],[-46,-5],[-41,21],[-6,16],[-12,18],[-33,8],[-4,1],[-23,-6],[-24,-104],[-50,-7],[-3,0],[-111,44],[-10,8],[-63,44],[-57,36],[-29,17],[-7,4],[-5,-7],[-5,-7],[-36,-53],[-11,-7],[-9,-3],[-30,48],[-5,8],[-46,32],[-13,-2],[-12,-16],[0,-10],[13,-15],[0,-2],[1,-2],[0,-18],[-37,-59],[-9,-9],[-55,-29],[-8,-1],[-33,20],[-4,2],[-9,13],[-10,16],[1,-27],[-1,-5],[-6,-21],[-13,-29],[-18,-26],[-22,-31],[-15,-9]],[[24,60328],[0,138],[0,38],[0,49],[-1,32],[-1,52],[1,289],[2,309],[1,653],[0,468],[0,25],[0,138],[-1,524],[-1,221],[0,53],[0,104],[0,106],[-1,123],[2,47],[0,105],[0,68],[1,44],[0,150],[-1,297],[0,348],[0,113],[-1,327],[1,277],[0,46],[-1,418],[-1,129],[1,194],[0,171],[1,53],[-3,171],[0,3],[-2,210],[0,140],[1,173],[-1,58],[0,68],[0,20],[0,14],[0,265],[-1,53],[0,217],[-1,526],[-2,509],[8,239],[-3,395],[-2,198],[-3,502],[0,46],[-1,535],[-4,203],[0,14],[-11,1594],[1,44],[70,4],[37,3],[14,1],[115,11],[-6,57],[0,290],[0,209],[0,56],[0,125],[1,416],[0,56],[0,353],[0,87],[0,3],[0,706],[0,210],[0,6],[1,87],[5,479],[0,145],[0,101],[0,135],[1,114],[-6,374],[0,290],[0,225],[0,1288],[0,388]],[[86134,77086],[0,-144],[0,-44],[0,-36],[0,-38],[0,-38],[0,-39],[0,-44],[0,-46],[0,-45],[0,-51],[0,-31],[0,-37],[0,-30],[0,-35],[0,-30],[0,-31],[0,-31],[0,-33],[0,-30],[0,-51],[0,-41],[0,-33],[0,-30],[0,-36],[0,-40],[0,-31],[0,-29],[0,-37],[0,-30],[0,-29],[0,-29],[0,-37],[0,-30],[1,-30],[0,-37],[0,-33],[0,-29],[0,-33],[0,-34],[0,-34],[0,-38],[0,-32],[0,-40],[0,-30],[0,-6],[0,-50],[0,-40],[0,-35],[0,-36],[0,-35],[0,-47],[0,-38],[0,-31],[0,-35],[0,-40],[0,-30],[1,-55],[0,-44],[1,-29],[0,-32],[0,-32],[-1,-90],[1,-40],[0,-42],[0,-57],[0,-215],[-1,-145],[0,-55],[0,-56],[-1,-31],[0,-89],[0,-40],[-1,-102],[2,-53],[1,-69],[2,-192],[-3,-202],[-1,-251],[1,-291],[0,-76],[-1,-107],[-1,-318],[-1,-202],[-1,-420],[-2,-417],[5,-421],[1,-32],[-3,-36],[3,-35],[0,-33],[1,-36],[0,-39],[0,-34],[0,-45],[0,-32],[1,-273],[0,-39],[0,-32],[0,-32],[0,-36],[0,-62],[1,-60],[0,-32],[1,-39],[-4,-33],[0,-213],[0,-38],[6,-40],[17,0],[15,-16],[0,-35],[0,-32],[0,-36],[0,-40],[0,-39],[0,-36],[0,-35],[0,-68],[0,-57],[0,-34],[0,-2],[0,-51],[0,-35],[0,-32],[0,-33],[-1,-32],[0,-38],[0,-29],[0,-36],[0,-30],[0,-35],[0,-38],[0,-31],[0,-103],[0,-42],[0,-39],[0,-37],[0,-35],[0,-30],[0,-32],[0,-109],[0,-39],[0,-36],[0,-37],[0,-38],[0,-39],[0,-41],[0,-41],[0,-30],[0,-31],[0,-32],[0,-53],[-1,-36],[0,-31],[0,-30],[0,-31],[0,-36],[0,-39],[0,-31],[0,-64],[0,-35],[0,-32],[0,-56],[0,-34],[0,-83],[0,-38],[0,-84],[0,-36],[0,-30],[0,-29],[0,-32],[0,-40]],[[86172,67052],[0,-29],[0,-38],[0,-31],[-1,-32],[0,-44],[0,-43],[0,-100],[0,-91],[0,-101],[0,-32],[0,-41],[0,-38],[0,-30],[-1,-39],[0,-41],[0,-38],[0,-33],[0,-31],[0,-38],[-1,-29],[0,-374],[0,-30],[0,-41],[0,-32],[0,-33],[0,-36],[-1,-38],[0,-33],[0,-32],[0,-30],[0,-37],[0,-36],[0,-38],[0,-39],[-1,-34],[0,-36],[0,-34],[0,-29],[0,-43],[0,-35],[0,-38],[0,-114],[0,-124],[0,-70],[0,-39],[0,-33],[0,-39],[0,-33],[0,-33],[0,-35],[-1,-50],[0,-31],[0,-30],[0,-30],[0,-76],[0,-36],[0,-10],[0,-25],[0,-31],[0,-58],[-1,-40],[0,-49],[0,-74],[0,-46],[0,-45],[0,-34],[0,-35],[0,-56],[0,-38],[0,-42],[0,-42],[0,-39],[-1,-36],[0,-29],[0,-31],[0,-31],[0,-49],[0,-33],[0,-36],[0,-38],[0,-54],[0,-31],[0,-37],[0,-36],[0,-42],[0,-29],[0,-38],[0,-41],[-1,-52],[0,-40],[0,-35],[0,-34],[0,-35],[0,-92],[0,-34],[0,-34],[-1,-110],[0,-36],[0,-32],[0,-31],[0,-31],[0,-33],[0,-35],[0,-36],[0,-44],[0,-33],[0,-81],[-1,-37],[0,-34],[0,-36],[0,-31],[0,-40],[0,-29],[0,-36],[0,-32],[0,-31],[0,-42],[0,-76],[0,-132],[0,-40],[0,-38],[-1,-87],[0,-63],[0,-32],[0,-39],[0,-48],[0,-88],[0,-32],[0,-40],[0,-33],[0,-36],[0,-30],[0,-55],[0,-36],[0,-41],[0,-68],[0,-26],[0,-22],[0,-42],[0,-37],[0,-35],[0,-31],[0,-37],[0,-34],[-1,-30],[1,-35],[0,-30],[0,-36],[1,-76],[0,-42],[0,-39],[0,-34],[0,-37],[0,-30],[0,-29],[0,-31],[0,-34],[0,-39],[-1,-76],[0,-50],[0,-36],[0,-30],[0,-31],[0,-36],[0,-37],[0,-30],[0,-34],[0,-65],[0,-38],[0,-30]],[[86160,59548],[-25,0],[-30,0],[-15,0],[-16,0],[-16,0],[-13,0],[-22,0],[-75,0],[-64,0],[-51,-1],[-1,0],[-209,3],[-8,0],[-7,0],[-16,0],[-15,0],[-15,0],[-14,0],[-14,1],[-15,0],[-14,0],[-16,0],[-15,0],[-18,0],[-15,0],[-16,0],[-30,1],[-15,0],[-9,0],[-13,-1],[-15,0],[-14,0],[-26,0],[-14,0],[-30,0],[-14,0],[-18,0],[-18,0],[-19,0],[-17,1],[-17,0],[-16,0],[-15,0],[-24,0],[-128,2],[-17,0],[-14,0],[-17,0],[-47,1],[-43,0],[-32,0],[-14,0],[-17,0],[-15,1],[-16,0],[-14,0],[-16,0],[-15,0],[-21,0],[-16,1],[-16,0],[-15,0],[-16,0],[-15,0],[-13,0],[-16,0],[-47,-1],[-17,1],[-13,0],[-14,0],[-15,0],[-13,0],[-14,0],[-16,0],[-45,-1],[-15,1],[-14,0],[-14,0],[-22,0],[-18,0],[-14,0],[-16,0],[-15,0],[-18,0],[-13,0],[-14,0],[-15,0],[-15,0],[-16,-1],[-15,0],[-17,0],[-15,0],[-18,0],[-15,0],[-15,1],[-19,0],[-17,-1],[-25,1],[-17,-1],[-16,0],[-18,0],[-15,0],[-14,0],[-41,0],[-14,1],[-16,0],[-21,0],[-21,0],[-16,0],[-18,0],[-35,0],[-16,0],[-15,0],[-17,0],[-64,0],[-18,0],[-16,0],[-16,0],[-52,0],[-16,0],[-26,0],[-23,0],[-16,0],[-65,0],[-15,0],[-17,1],[-9,0],[-8,0],[-14,0],[-17,0],[-16,0],[-15,0],[-17,0],[-18,1],[-60,0],[-16,0],[-16,0],[-17,1],[-17,-1],[-22,1],[-13,-1],[-15,0],[-17,1],[-16,0],[-20,0],[-25,1],[-56,1],[-15,0],[-89,-2],[-25,1],[-14,0],[-14,0],[-15,1],[-14,0],[-24,0],[-30,0],[-15,0],[-7,0],[-7,0],[-15,0],[-19,0],[-29,0],[-53,0],[-16,0],[-18,1],[-29,0],[-27,0],[-25,0],[-17,0],[-14,0],[-16,0],[-17,0],[-16,0],[-16,0],[-18,0],[-17,1],[-18,0],[-16,0],[-15,0],[-14,-1],[-17,0],[-15,0],[-15,0],[-34,0],[-16,0],[-14,0],[-12,0],[-1,0],[-17,0],[-16,0],[-16,0],[-17,0],[-15,0],[-13,0],[-18,0],[-14,0],[-13,0],[-14,0],[-15,0],[-17,0],[-60,0],[-14,0],[-16,0],[-15,0],[-16,0],[-37,0],[-15,0],[-15,0],[-15,0],[-14,1],[-25,0],[-27,-1],[-15,0],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-30,0],[-102,0]],[[81426,59563],[-17,0],[-14,0],[-12,28],[0,47],[0,63],[0,57],[0,34],[0,37],[0,51],[0,64],[0,35],[0,29],[1,47],[0,50],[0,33],[0,32],[0,31],[0,45],[0,67],[0,59],[0,52],[0,36],[0,3],[0,31],[0,32],[0,33],[0,35],[0,42],[0,31],[0,50],[0,56],[0,33],[0,47],[-1,29],[1,42],[0,32],[0,33],[0,33],[-1,43],[0,55],[0,40],[0,43],[0,67],[0,44],[0,32],[0,41],[0,35],[0,31],[1,43],[-1,31],[0,44],[0,81],[0,42],[0,69],[0,32],[0,32],[1,45],[0,44],[0,33],[0,46],[0,38],[0,30],[-36,4],[-1,0],[-186,1],[-45,1],[-134,1],[-25,0],[-106,1],[-18,0],[-248,1],[-39,1],[-33,0],[-17,0],[-148,1],[-29,0],[-15,0],[-65,1],[-4,0],[-31,0],[-47,0],[-13,1],[-91,0],[-1,0],[-116,2],[-15,0],[-14,0],[-23,0],[-96,1]],[[94164,72043],[0,-49],[1,-88],[0,-71],[1,-113],[0,-18],[3,-44],[-1,-34],[-2,-39],[0,-56],[0,-58],[0,-85],[-1,-182],[0,-104],[0,-42],[-1,-142],[0,-37],[0,-51],[-1,-40],[0,-84],[0,-62],[0,-42],[0,-41],[0,-112],[-1,-78],[0,-68],[0,-85],[0,-115],[0,-57],[0,-58],[0,-50],[-1,-76],[1,-56],[-1,-55],[-1,-179],[0,-36],[-20,1],[0,-3],[-1,-40],[0,-42],[-1,-141],[0,-4],[0,-50],[0,-34],[0,-61],[0,-57],[0,-131],[0,-115],[0,-116],[0,-50],[0,-159],[-1,-40],[0,-51],[1,-113],[0,-55],[-1,-84],[0,-72],[0,-136],[0,-31],[0,-44],[-1,-139],[0,-73],[-1,-66],[0,-48],[0,-32],[0,-64],[0,-30],[0,-67],[0,-61],[0,-30],[0,-75],[0,-153],[0,-3]],[[94135,67067],[-3,0],[-64,3],[-66,-2],[-29,-1],[-14,0],[-15,0],[-16,0],[-16,0],[-19,0],[-25,-1],[-17,0],[-16,0],[-11,0],[-10,0],[-16,0],[-1,0],[-28,-1],[-32,0],[-14,0],[-4,0],[-19,1],[-66,-1],[-4,0],[-29,0],[-33,0],[-17,0],[-38,0],[-20,0],[-14,0],[-14,0],[-15,0],[-42,0],[-25,0],[-32,0],[-18,0],[-15,0],[-14,0],[-81,-1],[-20,0],[-49,0],[-22,0],[-21,0],[-35,0],[-15,0],[-25,1],[-22,0],[-14,0],[-31,0],[-36,-1],[-20,0],[-46,0],[-26,0],[-20,-1],[-22,1],[-21,-1],[-21,1],[-84,0],[-16,0],[-26,-1],[-33,1],[-22,-1],[-13,1],[-21,0],[-17,-1],[-29,-1],[-35,0],[-51,-1],[-20,0],[-22,-1],[-18,0],[-35,-1],[-16,0],[-24,0],[-277,-5],[-256,-1],[-17,0],[-4,-1],[-33,0],[-88,-2],[-129,-4],[-131,-2],[-136,-3],[-13,0],[-41,-1],[-15,0],[-21,0],[-30,-1],[-16,0],[-35,-1],[-46,-2],[-15,0],[-24,-1],[-21,0],[-37,1],[-18,0],[-17,0],[-139,2],[-33,0],[-14,0],[-17,1],[-23,0],[-28,1],[-29,0],[-13,0],[-20,0],[-13,0],[-39,0],[-29,1],[-15,0],[-27,0],[-125,2],[-28,1],[-16,1],[-19,0],[-16,-1],[-22,0],[-28,0],[-17,1],[-34,1],[-19,0],[-49,1],[-14,0],[-58,2],[-14,0],[-14,0],[-25,1],[-17,0],[-15,0],[-24,1],[-16,0],[-71,1],[-75,3],[-22,1],[-28,-1],[-35,1],[-14,0],[-37,0],[-53,1],[-25,1],[-23,1],[-48,1],[-57,1],[-23,0],[-25,0],[-18,0],[-50,0],[-110,0],[-25,0],[-16,0],[-44,-1],[-13,0],[-41,0],[-27,0],[-57,0],[-32,0],[-20,-1],[-19,0],[-15,0],[-71,0],[-15,0],[-3,0],[-12,-1],[-71,0],[-68,0],[-27,0],[-15,0],[-18,0],[-20,-1],[-29,0],[-30,0],[-2,0],[-116,-1],[-128,-2],[-13,1],[-30,-1],[-17,0],[-29,0],[-74,0],[-15,0],[-18,0],[-28,0],[-29,0],[-32,0],[-20,-1],[-23,0],[-21,0],[-20,0],[-20,0],[-44,0],[-61,0],[-20,0],[-16,1],[-13,-1],[-21,1],[-33,-1],[-20,1],[-17,0],[-16,0],[-49,0],[-25,0],[-32,1],[-20,0],[-22,0],[-15,0],[-21,1],[-38,0],[-19,0],[-15,0],[-24,0],[-33,1],[-25,0],[-17,0],[-223,-2],[-33,-3],[-35,0],[-14,1],[-17,1],[-38,1],[-24,1],[-14,1],[-17,0],[-24,0],[-32,0],[-30,0],[-19,0],[-17,0],[-13,0],[-21,0],[-15,0],[-23,0],[-13,0],[-17,0],[-41,0],[-36,0],[-42,0],[-61,0],[-92,-1],[-110,-4]],[[26998,58616],[-2,-4],[-6,-15]],[[26990,58597],[-13,-15],[-19,-36],[-38,-31],[-14,-21],[-25,-23],[-23,-21],[-22,-2],[-23,9],[-10,7],[-20,-2],[-15,-13],[-27,-7],[-9,-1],[-38,-3],[-182,-49],[-6,-32],[-1,-2],[-13,-23],[-22,-14],[-35,-9],[-11,-3],[-6,-8],[-10,-11],[-5,-5],[-8,-14],[-103,-213],[-8,-44],[2,-49],[2,-40],[7,-61],[-8,-44],[-16,-33],[-45,-23],[-23,-11],[-43,-62],[-59,-57],[-45,-27],[2,-15],[3,-25],[2,-22],[2,-16],[2,-12],[3,-23],[-2,-9],[-6,-26],[-5,-24],[-9,-36],[-28,-71],[-1,-2],[-10,-16],[-17,-53],[-19,-33],[-10,-5],[-17,-35],[-13,-28],[15,-51],[3,-48],[-5,-25],[-9,-2],[-8,-2],[-7,-2],[-7,-2],[-7,-2],[-2,0],[-7,-2],[-14,1],[-15,2],[-10,1],[-13,16],[-20,2],[-20,-10],[-1,-2],[-52,-96],[-58,-92],[-27,-14],[-12,-2],[-8,0],[-16,-22],[-12,-20],[-9,-28],[2,-43],[14,-41],[6,-15],[3,-86],[-6,-39],[-17,-64],[-14,-25],[-26,-22],[-55,-2],[-39,18],[-20,23],[-33,24],[-35,16],[-35,8],[-25,-5],[-12,-3],[-36,12],[-17,10],[-19,18],[-52,72],[-22,17],[-54,41],[-1,1],[-29,8],[-58,17],[-31,10],[-37,-8],[-41,-28],[-12,-20],[-2,-16],[4,-42],[31,-28],[21,-35],[6,-9],[14,-34],[0,-55],[-61,-161],[-21,-38],[-38,-35],[-47,-1],[-31,25],[-22,5],[-46,-5],[-4,0],[-8,-3],[-41,-18],[-4,-8],[-17,-9],[-26,-3],[-32,-3],[-31,-3],[-38,3],[-127,61],[1,36],[35,65],[-4,31],[-32,38],[-4,-3],[-13,11],[-71,86],[-15,10],[-10,-1],[-31,44],[-18,13],[-31,13],[-37,0],[-25,13],[-29,28],[-19,29],[-2,55],[6,14],[-2,9],[6,32],[14,36],[6,32],[-5,58],[-13,18],[-15,7],[-81,-7],[-100,-74],[-14,-2],[-1,-1],[-66,-10],[-77,-11],[-67,-62],[-37,-4],[-25,2],[-10,6],[-37,0],[-65,-6],[-43,15],[-13,18],[-37,66],[-17,20],[-2,2],[-17,2],[-30,-3],[-22,-18],[-8,-15],[-23,-38],[-1,-1],[-3,-31],[-4,-36],[3,-15],[-10,-60],[3,-19],[-8,-48],[-43,-94],[-45,-45],[-2,-2],[-14,-25],[-5,-55],[-2,-20],[-4,-16],[-21,-29],[-17,-10],[-3,0],[-16,-2],[-6,0],[-5,3],[-8,5],[-3,2],[-13,20],[-25,38],[-13,-10],[-10,-21],[-14,-27],[-19,-30],[-10,-22],[-2,-2],[-16,-12],[-12,-28],[4,-32],[21,-22],[7,-4],[24,-16],[17,-31],[-4,-20],[-23,-59],[-2,-5],[-6,-41],[11,-42],[9,-9],[49,-53],[12,-35],[-4,-27],[-21,-17],[-27,-48],[-17,-23],[-3,-30],[0,-24],[3,-8],[13,-13],[18,-9],[10,-12],[3,-12],[3,-14],[1,-24],[1,-5],[2,-46],[-8,-206],[-2,-30],[-3,-17],[-8,-11],[14,-112],[24,-15],[10,-10],[13,-20],[7,-19],[1,-28],[-5,-48],[-11,-13],[-20,-13],[-13,-17],[-7,-20],[-2,-21],[8,-39],[11,-21],[18,-22],[16,-41],[4,-40],[-1,-23],[-17,-40],[-6,-15],[-37,-45],[-34,-120],[-1,-30],[-1,-14],[-23,-31],[-17,-23],[-8,-13],[-21,-35],[-12,-12],[-23,-12],[-14,1],[-15,9],[-10,12],[-5,15],[-4,30],[-10,27],[-8,10],[-20,14],[-37,16],[-10,0],[-14,0],[-16,-14],[-24,-32],[-1,-53],[17,-44],[-1,-10],[-3,-13],[-4,-23],[-3,-22],[-7,-15],[-5,-12],[-4,-11],[-6,-15],[-5,-11],[-2,-3],[-13,-30],[-5,-16],[-5,-14],[-10,-42],[-11,-25],[-14,-26],[-20,-37],[-31,-38],[-49,-50],[-5,-17],[37,-62],[11,-9],[13,-21],[10,-30],[0,-18],[-4,-24],[-13,-16],[-15,-3],[-24,-5],[-12,-11],[-9,-16],[-6,-14],[-4,-31],[11,-74],[1,-55],[-2,-22],[-2,-53],[10,-49],[1,-24],[-5,-6],[-12,-15],[-34,-12],[-14,-34],[7,-33],[28,-31],[9,-21],[4,-11],[-8,-25],[-3,-8],[-26,-28],[-16,-19],[-10,-39],[7,-65],[-4,-60],[-14,-58],[-4,-30],[-8,-22],[-14,-51],[-1,-17],[6,-23],[8,-18],[13,-19],[11,-27],[1,-30],[-3,-19],[-10,-27],[-15,-24],[-74,3],[-46,-46],[-25,-18],[-13,-19],[-11,-27],[-4,-25],[3,-17],[7,-20],[9,-36],[5,-69],[-1,-55],[0,-22],[-9,-18],[-39,-35],[-8,-14],[-7,-23],[-10,-56],[-7,-128],[-4,-106],[2,-23],[8,-29],[33,-110],[13,-35],[31,-73],[11,-20],[9,-16],[7,-21],[2,-14],[0,-24],[-7,-20],[-12,-22],[-16,-19],[-13,-5],[-29,14],[-20,2],[-15,-10],[-4,-7],[-3,-14],[1,-25],[7,-19],[22,-26],[9,-6],[66,-162],[0,-31],[0,-28],[0,-133],[-18,-16],[-16,-9],[-25,-27],[-17,-55],[3,-55],[22,-64],[31,-71],[13,-31],[2,-26],[-16,-28],[-3,-5],[-42,-125],[-19,-80],[-7,-28],[-7,-20],[-14,-28],[-19,-23],[-16,-19],[-16,-22],[-7,-21],[-5,-30],[-3,-18],[0,-37],[9,-102],[1,-3],[6,-93],[-2,-33],[-2,-17],[-29,-46],[-1,-1],[-2,-2],[-4,-5],[-9,-10],[-16,-5],[-23,0],[-38,12],[-18,0],[-76,-38],[-6,-7],[-26,-28],[-13,-24],[-12,-35],[-12,-46],[-3,-23],[-6,-59],[0,-144],[-4,-33],[-35,-235],[-27,-115],[-8,-41],[1,-12],[7,-49],[21,-10],[5,-3],[14,-6],[1,4],[9,23],[14,16],[17,13],[15,3],[23,-1],[14,-12],[20,-27],[9,-20],[8,-34],[4,-170],[-4,-102],[-3,-12],[-6,-24],[-4,-47],[4,-50],[0,-8],[-2,0],[-41,0],[-12,15],[-29,17],[-12,2],[-60,-2],[-25,-3],[-8,-6],[-9,-29],[-1,-2],[-6,-38],[-7,-60],[2,-14],[2,-17],[7,-8],[4,0],[8,0],[31,25],[15,5],[7,-1],[9,-11],[-5,-65],[-12,-30],[-4,-16],[-3,-28],[4,-16],[9,-16],[2,-3],[32,-36],[8,-20],[12,-29],[1,-34],[5,-27],[16,-59],[11,-20],[23,-27],[6,-6],[12,-29],[-99,0],[-121,-1],[-90,-1],[-120,0],[-209,0],[-199,0],[-25,0],[-106,0],[-68,0],[-77,1],[-56,0],[-134,2],[-163,0],[-94,0],[-169,0],[-216,0],[-142,0],[-81,0],[-1,0],[-295,0],[-65,1],[-94,0],[-486,0],[-37,0],[-87,1],[-271,1],[-85,1],[-84,1],[-264,1],[-270,2],[-132,1],[-112,0],[-80,1],[-56,0],[-125,1],[-35,0],[-113,0],[-165,0],[-95,0],[-80,0],[-98,0],[-138,0],[-58,0],[-64,1],[-144,1],[-72,1],[-23,0],[-57,0],[-33,-1],[-179,-1],[-177,-1],[-145,-1],[-83,0],[-102,0],[-314,0],[-213,1],[-16,0],[-13,0],[-17,0],[-62,0],[-160,0],[-259,1],[-14,0],[-119,1],[-116,0],[-49,1],[-103,1],[-149,0],[-134,0],[-110,0],[-180,0],[-85,0],[-26,0],[-56,1],[-28,0],[-18,0],[-33,0],[-54,0],[-21,0],[-27,0],[-57,0],[-27,0],[-15,0],[-28,0],[-19,0],[-39,2],[-15,0],[-23,0],[-43,0],[-84,0],[-24,0],[-63,0],[-88,0],[-66,0],[-74,-1],[-56,0],[-72,0],[-20,0],[-119,0],[-19,0],[-38,0],[-69,0],[-21,0],[-175,1],[-19,0],[-48,0],[-54,-1],[-14,0],[-200,0],[-134,2],[-54,0],[-73,0],[-88,0],[-150,0],[-26,1],[-46,1],[-200,2],[-282,1],[-34,-1],[-21,-3],[-56,0],[-198,0],[-3,0],[-36,-1],[-16,-1],[-6,0],[-11,0],[-19,-1],[-14,2],[-2,0],[-57,-2],[-16,0],[-32,2],[-516,1],[-230,0],[-27,0],[-34,0],[-31,-4],[-77,-3],[-147,1],[-55,0],[-24,1],[-182,1],[-42,0],[-224,0],[-25,0],[-80,0],[-40,0],[-68,0],[-17,1],[-28,0]],[[7944,47916],[-1,28],[-2,371],[0,242],[1,183],[-1,172],[1,78],[0,163],[1,408],[0,393],[0,41],[-5,420],[0,133],[-1,138],[0,152],[-1,229],[0,191],[-422,-1],[-168,0],[-33,1],[-165,-1],[-15,-1],[-201,-2],[-38,0],[-37,-1],[-238,-2],[-276,-8],[0,130],[1,273],[0,439],[0,381],[0,29],[0,8],[1,36],[3,383],[0,91],[-1,326],[0,89],[-3,358],[64,1],[1,66],[3,356],[-1,290],[0,175],[4,565],[2,223],[0,68],[0,13],[4,471],[0,31],[-1,29],[-2,35],[-1,19],[-2,43],[0,20],[0,219],[1,186],[1,330],[0,13],[1,248],[1,382],[0,235],[1,46],[0,60],[1,172],[0,4],[1,195],[0,117],[0,77],[0,193],[1,120],[-5,60],[0,18],[1,159],[4,133],[0,62],[0,82],[0,55],[1,205],[0,5],[0,57],[1,42],[0,40],[0,37],[0,43],[0,39],[1,39],[0,73],[0,31],[0,72],[0,32],[0,38],[0,36],[0,35],[1,36],[0,35],[0,36],[0,36],[0,35],[0,36],[0,36],[1,53],[0,59],[0,36],[0,36],[0,35],[1,36],[0,35],[0,36],[0,35],[0,36],[1,44],[0,39],[0,36],[0,47],[0,36],[1,47],[0,36],[0,35],[0,36],[0,34],[0,37],[2,30]],[[99812,72059],[1,-932],[0,-262],[5,-3372],[1,-333],[0,-38],[0,-409],[-1,-1533],[0,-601],[-1,-1207],[0,-230],[0,-214],[0,-818],[0,-38],[-2,-1695],[-1,-838]],[[99814,59539],[-22,2],[-46,0],[-45,0],[-26,0],[-39,1],[-71,0],[-72,0],[-13,0],[-35,0],[-244,-1],[-23,0],[-66,1],[-7,1],[-7,0],[-61,0],[-30,1],[-28,0],[-31,0],[-43,0],[-32,0],[-14,0],[-19,0],[-58,0],[-63,0],[-54,0],[-21,0],[-35,1],[-55,0],[-21,0],[-20,0],[-16,0],[-14,1],[-18,-1],[-13,-14],[-16,-5],[-16,14],[-22,5],[-23,0],[-14,0],[-34,0],[-25,0],[-64,1],[-59,0],[-20,-1],[-22,0],[-23,0],[-51,1],[-33,0],[-14,0],[-41,0],[-41,0],[-15,0],[-20,0],[-20,0],[-35,0],[-46,0],[-72,0],[-32,1],[-33,0],[-83,0],[-46,0],[-16,0],[-29,0],[-35,0],[-136,1],[-17,0],[-22,0],[-2,0],[-50,-1],[-53,0],[-85,0],[-41,0],[-21,0],[-19,0],[-46,0],[-35,-1],[-96,0],[-17,0],[-32,0],[-41,0],[-19,0],[-48,0],[-43,0],[-115,0],[-40,0],[-56,0],[-65,0],[-25,1],[-15,0],[-38,0],[-26,0],[-40,0],[-18,0],[-25,0],[-18,0],[-103,-1],[-27,0],[-34,0],[-41,0],[-14,0],[-30,0],[-30,-1],[-18,0],[-28,0],[-12,-1],[-5,0],[-26,0],[-19,1],[-19,0],[-8,0],[-15,0],[-19,0],[-19,0],[-30,0],[-33,0],[-34,0],[-25,1],[-13,0],[-111,-1],[-95,-1],[-50,0],[-21,0],[-17,0],[-23,0],[-43,0],[-24,1],[-45,-1],[-62,0],[-25,0],[-84,0],[-57,0],[-36,1],[-41,1],[-42,0],[-43,0],[-57,0],[-15,0],[-14,1],[-16,0],[-90,-1],[-27,0],[-105,0],[-14,0],[-32,0],[-40,0],[-39,0],[-1,0],[-78,0],[-18,0],[-58,-1]],[[94123,59545],[0,170],[-1,78],[0,134],[1,37],[-1,364],[1,52],[0,2],[-1,60],[1,116],[0,113],[-1,129],[3,343],[0,46],[2,236],[-1,204],[0,46],[0,40],[0,41],[0,37],[0,44],[0,38],[1,147],[0,29],[0,38],[3,59],[-1,81],[0,9],[-3,245],[0,1],[1,286],[0,5],[3,110],[1,60],[0,38],[0,78],[0,37],[0,75],[0,54],[1,76],[0,37],[0,57],[0,116],[0,115],[1,92],[-1,35],[1,178],[0,60],[0,147],[1,418],[-1,35],[1,79],[1,119],[0,40],[0,39],[0,107],[0,90],[1,76],[0,40],[0,40],[0,40],[-3,66],[1,30],[1,35],[0,1],[0,2],[0,44],[0,47],[1,31],[0,46],[0,92],[0,41],[0,100],[0,40],[0,39],[0,90],[0,81],[-1,76],[0,29],[0,39],[0,66],[0,61],[0,117],[0,217],[0,181],[0,34],[0,42],[0,106],[0,51]],[[57541,69752],[-3,-184],[0,-43],[-1,-47],[0,-31],[-3,-157],[-3,-189],[-6,-599],[-2,-49],[0,-436],[-2,-43],[0,-382],[6,-40],[-3,-769],[-2,-113],[-3,-199],[-1,-49],[0,-62],[0,-25],[0,-394],[0,-106],[0,-47],[0,-38],[-1,-140],[0,-30],[0,-38],[-1,-67],[0,-32],[0,-52],[0,-61],[0,-34],[0,-30],[-1,-98],[0,-62],[0,-97],[-1,-42],[0,-146],[-1,-131],[0,-172],[-1,-248],[-2,-126],[-1,-710],[0,-51],[-1,-37],[1,-35],[-1,-35],[0,-41],[1,-34],[0,-52],[0,-43],[0,-35],[0,-34],[0,-449],[-2,-415],[0,-272],[0,-3],[-3,-812],[-2,-166],[-1,-109],[0,-49],[-1,-256],[-1,-298],[0,-32],[-1,-93],[0,-66],[0,-29],[0,-41],[-1,-67],[0,-55],[0,-30],[0,-54],[0,-5],[0,-66]],[[57497,59670],[-20,0],[-15,0],[-17,0],[-18,0],[-17,0],[-14,0],[-31,1],[-17,0],[-20,0],[-17,0],[-18,0],[-17,0],[-20,1],[-16,0],[-15,2],[-20,0],[-18,0],[-27,-1],[-23,0],[-16,0],[-24,-1],[-51,0],[-14,0],[-20,0],[-16,0],[-16,-1],[-29,0],[-15,0],[-18,0],[-18,0],[-32,0],[-36,-1],[-15,0],[-22,0],[-17,0],[-23,0],[-17,0],[-24,0],[-28,0],[-28,0],[-30,0],[-17,1],[-36,0],[-31,0],[-62,0],[-31,0],[-16,0],[-15,0],[-18,0],[-16,0],[-17,0],[-16,0],[-17,0],[-22,0],[-14,0],[-15,0],[-16,0],[-16,0],[-15,0],[-17,0],[-20,0],[-16,0],[-16,0],[-29,0],[-44,0],[-17,0],[-28,1],[-17,0],[-13,0],[-18,0],[-19,0],[-15,0],[-25,0],[-22,0],[-20,0],[-21,0],[-20,0],[-17,0],[-15,0],[-14,0],[-26,0],[-16,1],[-23,0],[-14,0],[-14,0],[-14,0],[-15,0],[-21,0],[-19,0],[-15,0],[-55,1],[-35,0],[-53,1],[-119,0],[-104,1],[-13,1],[-16,0],[-20,0],[-16,0],[-17,0],[-25,0],[-17,1],[-41,0],[-38,0],[-55,0],[-60,0],[-16,0],[-15,0],[-14,0],[-23,0],[-13,0],[-14,-1],[-21,1],[-14,0],[-19,0],[-16,0],[-14,0],[-15,0],[-18,0],[-23,0],[-29,0],[-17,0],[-15,0],[-18,0],[-14,0],[-20,0],[-17,0],[-16,0],[-19,0],[-18,0],[-24,0],[-19,0],[-15,0],[-19,0],[-16,0],[-20,0],[-30,0],[-23,0],[-21,1],[-16,0],[-34,0],[-42,0],[-33,0],[-17,0],[-29,-1],[-24,0],[-24,0],[-15,0],[-21,0],[-14,0],[-7,1],[-11,0],[-17,-1],[-15,0],[-15,0],[-15,0],[-18,0],[-17,0],[-19,0],[-27,0],[-22,0],[-17,0],[-23,0],[-20,0],[-23,0],[-508,0],[-25,0],[-17,0],[-14,0],[-143,-8],[-202,-3],[-34,-1],[-4,0],[-20,-1],[-66,0],[-1,0],[-45,0],[-108,10],[-15,0],[-14,-1],[-130,-1],[-14,0],[-24,0],[-14,0],[-14,0],[-14,0],[-14,0],[-25,0],[-16,0],[-17,0],[-16,0],[-16,0],[-15,0],[-16,0],[-15,0],[-15,0],[-15,0],[-9,0],[-6,0],[-20,1],[-16,0],[-15,0],[-18,0],[-20,0],[-18,0],[-16,-1],[-17,0],[-22,1],[-22,0],[-14,0],[-14,0],[-14,0],[-15,0],[-17,0],[-32,0],[-27,0],[-45,0],[-27,0],[-16,1],[-17,-1],[-20,0],[-33,1],[-19,0],[-20,0],[-20,0],[-15,0],[-19,0],[-15,0],[-15,0],[-15,0],[-22,0],[-17,0],[-16,0],[-15,0],[-16,0],[-14,0],[-15,1],[-17,0],[-16,0],[-14,0],[-17,-1],[-14,0],[-17,13],[-16,-4],[-23,-8],[-19,0],[-24,0],[-27,0],[-38,0],[-16,0],[-28,-1],[-19,1],[-14,1],[-22,0],[-14,0],[-15,1],[-19,-1],[-18,0],[-20,0],[-28,-1],[-23,0],[-42,1],[-20,0],[-18,0],[-20,0],[-27,0],[-72,0],[-33,0],[-44,-1],[-13,0],[-22,0],[-14,-1],[-21,0],[-24,0],[-19,0],[-15,0],[-18,0],[-18,0],[-16,0],[-27,0],[-28,-1],[-15,0],[-15,0],[-16,0],[-19,0],[-14,0],[-20,0],[-15,0],[-16,-1],[-17,0],[-13,0],[-19,0],[-14,0],[-15,0],[-17,0],[-20,0],[-19,0],[-18,-1],[-18,0],[-15,0],[-15,0],[-17,0],[-21,0],[-16,0],[-18,0],[-16,0],[-16,0],[-15,0],[-18,0],[-17,0],[-16,0],[-18,0],[-15,0],[-16,-1],[-30,0],[-20,0],[-28,0],[-20,0],[-33,-1],[-22,0],[-68,0],[-24,-1],[-16,0],[-15,0],[-15,0],[-15,-1],[-25,0],[-23,1],[-15,0],[-20,0],[-16,0],[-14,0],[-18,0],[-17,-1],[-19,-1],[-14,0],[-20,0],[-23,-1],[-15,0],[-19,0],[-17,1],[-17,0],[-15,1],[-20,0],[-35,0],[-18,0],[-14,0],[-15,0],[-15,0],[-15,0],[-22,0],[-18,-1],[-14,0],[-18,0],[-18,0],[-21,0],[-25,0],[-15,0],[-15,0],[-17,0],[-14,0],[-16,0],[-14,0],[-14,0],[-20,0],[-15,0],[-17,0],[-18,-1],[-15,0],[-18,0],[-16,0],[-16,0],[-17,0],[-14,0],[-16,0],[-15,0],[-16,0],[-17,0],[-24,0],[-16,0],[-24,1],[-28,-1],[-17,0],[-19,0],[-17,0],[-14,0],[-17,0],[-15,0],[-16,0],[-32,-1],[-18,-3],[-66,-1],[-54,1],[-16,0],[-83,-1],[-34,-1],[-7,0],[-14,0],[-7,0],[-73,0],[-131,0],[-30,0],[-96,0],[-199,-3],[-56,0],[-36,0],[-28,-1],[-19,1],[-13,0],[-85,1],[-57,0],[-12,-7],[-2,-1],[-14,11],[-21,0],[-23,0],[-23,0],[-22,0],[-20,0],[-23,0],[-20,0],[-27,-1],[-16,0],[-27,0],[-24,0],[-19,0],[-16,0],[-16,0],[-16,-2],[-14,0],[-14,0],[-17,7],[-14,9],[-18,-7],[-15,-3],[-19,0],[-14,-4],[-16,-2],[-19,0],[-33,0],[-29,1],[-35,-4],[-9,0],[-164,-2],[-238,-3]],[[46341,59650],[-18,55],[-20,24],[-33,28],[-31,21],[-23,14],[-13,8],[-14,5],[-29,8],[-26,6],[-60,11],[-27,3],[-32,1],[-13,0],[-45,0],[-49,3],[-48,9],[-39,10],[-41,11],[-30,5],[-26,4],[-33,9],[-32,9],[-36,7],[-86,1],[-26,3],[-43,9],[-29,17],[-43,24],[-41,25],[-42,27],[-35,23],[-34,25],[-32,30],[-30,30],[-29,30],[-28,33],[-23,28],[-18,32],[-16,32],[-13,25],[-12,20],[-31,55],[-29,40],[-32,52],[-33,69],[-26,65],[-17,44],[-24,58],[-18,72],[-13,60],[-11,73],[-11,69],[-11,62],[-8,74],[-2,63],[0,50],[4,73],[7,92],[4,75],[5,74],[3,74],[4,65],[3,40],[3,40],[10,41],[16,43],[13,28],[9,22],[74,190],[55,266],[56,271],[8,40],[3,29],[3,37],[3,37],[4,35],[6,50],[10,56],[10,91],[6,43],[8,51],[11,59],[10,48],[3,29],[10,58],[11,75],[14,89],[5,55],[9,61],[14,99],[9,53],[3,74],[9,80],[2,126],[-1,73],[-2,69],[-5,56],[-11,71],[-15,64],[-31,110],[-26,97],[-20,93],[-29,118],[-20,74],[-11,58],[-61,254],[-42,63],[-16,19],[-40,33],[-45,29],[-45,22],[-15,5],[-18,5],[-2,1],[-17,4],[-16,2],[-140,4],[-13,2],[-14,1],[-23,1],[-21,4],[-16,5],[-24,7],[-19,6],[-21,9],[-99,61],[-13,10],[-10,25],[-11,50],[-10,49],[-33,92],[-17,31],[-24,46],[-41,62],[-27,30],[-25,31],[-37,39],[-27,28],[-25,22],[-21,15],[-24,20],[-16,14],[-22,16],[-22,13],[-13,14],[-17,17],[-22,21],[-18,17],[-13,13],[-15,15]],[[62284,69744],[-1,-220],[-1,-230],[0,-183],[-1,-184],[0,-53],[-1,-66],[0,-280],[-1,-64],[2,-49],[-2,-35],[2,-38],[-2,-62],[2,-439],[1,-256],[1,-353],[0,-37],[-1,-57],[0,-33],[0,-78],[-1,-43],[0,-45],[0,-34],[0,-123],[0,-39],[1,-233],[1,-47],[-2,-32],[0,-48],[0,-27],[-2,-416],[4,-417],[1,-310],[0,-23],[-1,-88],[0,-33],[0,-37],[0,-133],[-1,-103],[0,-61],[0,-46],[0,-54],[-1,-73],[0,-150],[-1,-94],[0,-54],[0,-34],[0,-226],[0,-243],[0,-2],[-1,-151],[0,-113],[-1,-69],[0,-50],[0,-92],[-1,-41],[0,-32],[0,-38],[0,-32],[-1,-135],[-2,-419],[-2,-397],[0,-36],[0,-57],[0,-77],[0,-52],[3,-1004],[0,-53],[0,-22],[-1,-161],[0,-234],[-1,-448],[0,-13],[0,-26],[0,-94],[0,-127],[0,-46],[0,-36],[0,-32],[45,-21],[42,-1],[39,0],[27,-1],[4,-192],[-1,-233],[0,-47],[0,-46],[0,-23],[1,-255],[0,-1],[0,-166],[0,-419],[0,-171],[0,-107],[0,-138],[0,-48],[0,-31],[-1,-49],[0,-60],[0,-124],[0,-54],[0,-60],[-1,-102],[0,-189],[0,-34],[0,-40],[0,-28],[0,-122],[-1,-238],[2,-36],[-1,-60],[1,-155],[2,-220],[0,-35],[0,-30],[1,-37],[1,-343],[-1,-53],[-1,-59],[0,-46],[0,-47],[-3,-500],[-1,-29],[-1,-182],[1,-5],[1,-158],[5,-50],[0,-141],[-1,-330],[0,-115],[-1,-374],[0,-175],[1,-33],[0,-267],[0,-21],[0,-11],[0,-30],[0,-30],[1,-136],[1,-39],[0,-36],[0,-32],[-1,-41],[0,-51],[0,-68],[0,-72],[0,-199],[0,-70],[0,-51],[0,-47],[0,-61],[0,-159],[0,-38],[0,-60],[-1,-73],[0,-86],[1,-211],[-1,-37],[1,-45],[0,-76],[0,-55],[0,-40],[0,-71],[-1,-40],[0,-31],[1,-31],[0,-75],[-4,-48],[1,-69],[1,-208],[0,-63],[0,-55],[0,-34],[1,-132],[0,-172],[0,-20],[1,-80],[0,-25],[0,-16],[0,-119],[0,-108],[1,-69],[0,-9],[0,-59],[0,-32],[0,-92],[1,-184]],[[62435,49475],[-29,1],[-5,0],[-147,2],[-33,1],[-84,0],[-122,1],[-77,1],[-129,1],[-15,0],[-19,1],[-15,0],[-27,0],[-15,1],[-26,0],[-50,-1],[-77,-2],[-32,0],[-104,-2],[-104,-4],[-77,-3],[-140,-5],[-164,-6],[-111,-4],[-152,-5],[-31,-2],[-3,0],[-31,-1],[-17,-1],[-5,0],[-108,-3],[-164,-4],[-17,-1],[-91,-5],[-30,0],[-253,-3],[-168,-2],[-43,-1],[-187,-3],[-13,0],[-101,-1],[-15,0],[-18,-2],[-21,-2],[-25,-3],[-16,0],[-16,2],[-31,2],[-46,0],[-17,0],[-71,-1],[-71,-1],[-17,0],[-3,0],[-86,-3],[-58,-3],[-14,0],[-27,-2],[-29,-1],[-29,-6]],[[58809,49405],[-42,61],[-47,68],[-82,121],[-59,86],[-67,56],[-185,127],[-160,97],[-72,43],[-20,13],[-33,8],[-35,12],[-131,35],[-186,1],[-24,-3]],[[57666,50130],[0,57],[-1,62],[0,1],[0,31],[-3,155],[-4,254],[-5,378],[0,77],[0,76],[1,51],[1,556],[0,101],[5,77],[1,10],[0,30],[0,108],[0,148],[1,148],[0,188],[0,136],[0,39],[-1,153],[-2,160],[0,70],[1,88],[1,187],[0,36],[1,122],[0,74],[1,326],[1,169],[0,1],[-1,252],[-2,72],[-2,96],[5,55],[-1,96],[0,65],[-2,179],[-1,219],[0,34],[0,1],[0,96],[2,973],[0,72],[1,40],[0,94],[-1,48],[-3,106],[0,35],[0,50],[0,59],[0,116],[0,30],[0,111],[1,55],[0,59],[1,169],[0,70],[0,93],[1,67],[0,93],[1,96],[3,284],[1,98],[-3,90],[0,123],[0,85],[0,76],[-1,59],[0,20],[0,53],[0,281],[0,1],[0,36],[0,48],[0,1],[0,33],[1,322],[0,230],[0,29],[-152,1],[-15,0]],[[70236,62156],[0,-315],[0,-107],[0,-218],[0,-140],[0,-67],[0,-283],[0,-124],[1,-166],[0,-43],[0,-214],[-1,-269],[0,-147],[0,-363],[0,-54],[18,1],[19,0],[20,-1],[0,-43],[0,-223],[1,-229],[-1,-68],[0,-351],[0,-173],[0,-65],[0,-180],[0,-84],[0,-63],[0,-27],[0,-6],[0,-34],[0,-44],[0,-44],[0,-107],[0,-84],[0,-105],[0,-111],[0,-3],[0,-27],[0,-100],[0,-226],[0,-5],[0,-44],[0,-41],[0,-35],[0,-31],[0,-36],[0,-4],[0,-31],[0,-46],[0,-4],[0,-25],[0,-34],[0,-38],[0,-62],[0,-48],[0,-122],[0,-174],[0,-172],[0,-71],[0,-34],[0,-60],[0,-47],[0,-29],[0,-37],[0,-116],[0,-95],[0,-58],[0,-85],[0,-276],[0,-35],[0,-362],[0,-9],[1,-40],[0,-272],[0,-49],[0,-33],[0,-37],[0,-45],[0,-50],[0,-37],[0,-285],[0,-43],[1,-374],[0,-226],[0,-2],[0,-133],[0,-52],[0,-69],[0,-139],[0,-83],[0,-73],[0,-60],[0,-59],[0,-358],[0,-177],[0,-230],[1,-294],[0,-6],[1,-98],[0,-37],[1,-419],[1,-204],[0,-55],[0,-161],[0,-157],[1,-258],[0,-418],[1,-327],[-1,-31],[5,-62]],[[70305,49530],[-27,0],[-17,0],[-15,-1],[-26,-1],[-19,0],[-16,1],[-22,0],[-6,0],[-99,1],[-22,0],[-125,1],[-95,2],[-31,-1],[-23,-1],[-21,0],[-86,0],[-324,-3],[-77,-1],[-21,0],[-115,0],[-91,-1],[-38,0],[-103,2],[-157,-3],[-32,0],[-65,1],[-195,6],[-23,1],[-15,1],[-18,1],[-15,1],[-22,0],[-128,2],[-118,0],[-61,-2],[-35,0],[-47,-1],[-26,-1],[-32,-4],[-15,-1],[-204,-4],[-15,0],[-28,-1],[-56,4],[-60,-2],[-16,0],[-102,0],[-56,0]],[[67345,49526],[-124,-3],[-94,-2],[-15,0],[-27,1],[-23,0],[-389,1],[-18,1],[-16,0],[-15,0],[-15,0],[-14,0],[-15,0],[-11,0],[-5,0],[-15,0],[-15,0],[-22,0],[-17,0],[-16,0],[-17,0],[-15,0],[-18,0],[-17,0],[-15,0],[-20,0],[-15,0],[-15,0],[-17,1],[-16,0],[-16,0],[-15,0],[-16,0],[-15,0],[-16,0],[-15,0],[-145,-1],[-149,0],[-22,0],[-124,1],[-252,3],[-22,0],[-2,0],[-239,3],[-26,0],[-16,-5],[-18,0],[-23,-1],[-84,3],[-16,-1],[-81,-1],[-273,3],[-510,-1],[-15,-1],[-20,-2],[-242,-2],[-113,-1],[-18,0],[-16,0],[-14,0],[-14,0],[-16,-5],[-15,-15],[-15,5],[-16,14],[-15,1],[-14,-1],[-318,1],[-32,-1],[-32,2],[-18,-1],[-11,-44],[-179,-7],[-42,0],[-1,0],[-91,-2],[-15,2],[-3,0],[-28,5],[-14,-5],[-18,0],[-23,1],[-1,0],[-264,3],[-83,1],[-68,-1]],[[94123,59545],[-25,-3],[-25,1],[-38,0],[-26,0],[-20,0],[-39,0],[-27,-1],[-15,1],[-18,-1],[-26,-1],[-21,-1],[-2,0],[-77,0],[-3,0],[-91,1],[-71,-1],[-16,0],[-25,0],[-26,2],[-50,-1],[-13,-1],[-114,-1],[-31,0],[-33,-1],[-55,0],[-25,0],[-23,0],[-130,0],[-21,0],[-27,0],[-52,0],[-70,0],[-84,-1],[-29,0],[-70,-1],[-38,1],[-35,-1],[-105,1],[-53,-1],[-74,1],[-54,0],[-24,0],[-52,-1],[-67,0],[-33,0],[-23,1],[-18,0],[-18,0],[-26,0],[-44,0],[-46,1],[-58,-1],[-15,0],[-24,0],[-49,-3],[-34,-6],[-29,1],[-19,-1],[-11,-1],[-13,-2],[-304,-1],[-374,-1],[-5,0],[-22,3],[-16,0],[-16,0],[-63,0],[-3,0]],[[90940,59526],[-26,-1],[-109,0],[-48,0],[-14,0],[-33,1],[-431,2],[-4,0],[-31,0],[-32,1],[-77,-1],[-24,0],[-83,1],[-66,0],[-81,1],[-25,0],[-187,1],[-60,0],[-263,1],[-78,0],[-33,1],[-17,0],[-48,1],[-90,2],[-64,-1],[-18,0],[-62,-1],[-38,0],[-73,1],[-11,0],[-28,0],[-23,1],[-70,0],[-44,0],[-20,0],[-52,0],[-40,-1],[-98,1],[-63,0],[-23,1],[-23,0],[-50,0],[-85,0],[-20,0],[-27,0],[-71,0],[-28,0],[-34,1],[-21,1],[-190,2],[-33,0],[-18,0],[-67,1],[-87,0],[-78,1],[-17,0],[-17,0],[-99,0],[-153,2],[-14,0],[-47,0],[-50,0],[-104,1],[-50,1],[-14,0],[-68,1],[-108,1],[-82,0],[-107,1],[-18,-1],[-14,1],[-43,-1],[-15,0],[-63,0],[-30,1],[-85,-1],[-28,0],[-97,-1],[-23,0],[-15,0]],[[46341,59650],[9,-23],[14,-41],[14,-41],[12,-37],[13,-39],[13,-38],[17,-49],[10,-27],[13,-32],[11,-31],[6,-48],[-1,-54],[-6,-36],[-8,-42],[-11,-40],[-12,-34],[-23,-59],[-18,-42],[-24,-53],[-24,-49],[-20,-36],[-21,-42],[-13,-18],[-20,-21],[-19,-11],[-31,-18],[-35,-20],[-43,-23],[-40,-25],[-42,-30],[-27,-15],[-28,-20],[-19,-15],[-21,-20],[-29,-32],[-27,-29],[-37,-51],[-26,-36],[-16,-24],[-25,-33],[-16,-20],[-35,-62],[-22,-48],[-19,-55],[-16,-57],[-5,-31],[-6,-76],[-5,-54],[-11,-55],[-19,-106],[-10,-55],[-11,-83],[-3,-68],[-1,-71],[0,-184],[5,-80],[6,-30],[79,-184],[50,-72],[48,-61],[68,-66],[89,-67],[41,-21],[91,-25],[47,-5],[23,-2],[40,6],[63,28],[78,53],[92,58],[76,47],[80,46],[79,47],[66,35],[94,50],[98,50],[78,40],[33,10],[29,7],[95,6],[46,3],[86,-8],[98,-11],[89,-11],[87,-11],[101,-12],[97,-16],[52,-14],[35,-15],[34,-20],[37,-38],[37,-50],[6,-8],[19,-31],[7,-12],[11,-19],[33,-48],[12,-32],[14,-24],[24,-55],[31,-69],[19,-32],[9,-24],[20,-53],[14,-59],[10,-51],[0,-40],[25,-215],[16,-142],[5,-66],[6,-82],[8,-131],[6,-123],[8,-130],[33,-317],[5,-48],[8,-75],[5,-34],[9,-60],[5,-58],[0,-52],[0,-10],[2,-36],[6,-30],[11,-52],[6,-33],[9,-33],[8,-32],[2,-6],[19,-68],[1,-3],[15,-113],[14,-170],[6,-81],[3,-16],[10,-72],[18,-61],[22,-62],[16,-17],[39,-42],[80,-59],[22,-14],[94,-60],[36,-20],[17,-8],[8,-4],[5,-2],[15,-6],[42,-17],[15,-4],[11,-3],[2,-2],[15,-10],[28,-2],[28,-17],[29,1],[25,-7],[90,-26],[21,-5],[78,-19],[4,-1],[56,-12],[157,-55],[68,-35],[38,-30],[16,-12],[29,-21],[6,-5],[60,-47],[63,-26],[73,-17],[46,-22],[58,-14],[43,-18],[5,-2],[9,-4],[22,-11],[104,-34],[132,-33],[32,2],[105,9],[37,6],[16,-1],[8,-3],[27,-10],[113,-45],[15,2],[42,-14],[10,-3],[18,-11],[107,-17],[124,12],[45,14],[29,7],[39,10],[16,4],[59,10],[34,1],[17,-6],[49,-19],[15,-5],[33,-12],[89,-33],[71,-36],[3,-1],[31,-17],[67,-31],[47,-23],[22,-7],[45,-20],[24,-14],[16,-3],[157,-108],[5,-3],[10,-8],[60,-26],[66,4],[30,3],[28,-5],[54,-28],[61,-34],[55,-35],[36,-40],[25,-28],[28,-34],[32,-44],[85,-116],[10,-12],[32,-38],[11,-13],[4,-4],[27,-34],[25,-27],[20,-21],[69,-54],[10,-7],[55,-56],[44,-46],[22,-21],[51,-42],[34,-16],[11,-4],[105,-44],[30,-15],[21,-10],[60,-35],[65,-37],[12,-14],[30,-35],[55,-51],[17,-15],[17,-15],[47,-43],[24,-24],[21,-18],[53,-49],[49,-38],[28,-16],[42,-30],[17,-11],[86,-31],[35,-12],[192,-68],[41,-4],[25,-1],[82,30],[62,22],[31,8],[63,-20],[74,9],[25,7],[85,1],[5,0],[26,-13],[47,-37],[45,-37],[44,-39],[45,-47],[16,-18],[11,-14],[23,-27],[46,-90],[17,-55],[13,-55],[9,-39],[42,-169],[2,-8],[9,-25],[11,-32],[-7,-76],[-10,-37],[-5,-11],[-6,-13],[-33,-69],[-53,-112],[-7,-15],[-64,-136],[-41,-61],[-87,-132],[-70,-104],[-132,-197],[-46,-69],[-16,-34],[-17,-51],[-6,-33],[-3,-15],[-3,-33],[0,-63],[0,-69],[0,-17]],[[54061,49486],[-37,-2],[-6,0],[-55,-4],[-357,0],[-183,1],[-33,0],[-18,-1],[-28,-1],[-43,-1],[-34,0],[-22,-1],[-62,-1],[-105,1],[-51,0],[-179,1],[-15,-1],[-74,0],[-1,0],[-79,-1],[-34,-2],[-259,-1],[-237,-1],[-32,0],[-197,0],[-70,0],[-233,0],[-24,0],[-18,0],[-212,0],[-35,0],[-134,2],[-94,0],[-31,0],[-118,1],[-84,-1],[-29,0],[-16,0],[-43,0],[-22,0],[-182,0],[-20,0],[-147,-1],[-78,0],[-15,0],[-31,0],[-35,-1],[-34,0],[-50,-1],[-147,0],[-19,1],[-35,2],[-313,0],[-413,-1],[-145,0],[-127,-1],[-24,0],[-145,-1],[-57,0],[-41,-1],[-4,0],[-264,-1],[1,-308],[0,-7],[0,-355],[0,-4],[-2,-75]],[[48430,48720],[-44,-4],[-62,1],[-154,0],[-108,0],[-119,0],[-26,2],[-216,2],[-136,-2],[-178,-2],[-28,-1],[-29,3],[-8,0],[-186,-6],[-202,0],[-197,3],[-54,-3],[-208,-2],[-110,1],[-13,0],[-73,-1],[-37,1],[-57,0],[-71,0],[-30,0],[-238,0],[-31,0],[-163,8],[-95,4],[-97,-6],[-13,0],[-201,-4],[-142,-2],[-28,-4],[-33,4],[-132,0],[-55,0],[-122,0],[-92,0],[-359,-3],[-13,0],[-41,0],[-300,-1],[-286,-3],[-130,5],[-110,-6],[-71,13],[-23,4],[-187,-5],[-17,1],[-38,0],[-34,-4],[-26,-5],[-204,1],[-122,2],[-150,-1],[-292,1],[-207,0],[-162,1],[-108,-5],[-46,0],[-81,-2],[-196,-5],[-45,5],[-5,1],[-279,-4],[-23,1],[-71,2],[-118,4],[-74,0],[-23,0],[-58,-3],[-47,0],[-124,0],[-127,4],[-130,5],[-16,-1],[-177,-6],[-180,3],[-18,0],[-281,3],[-131,-2]],[[39512,48712],[-13,3],[-47,-1],[-203,-2],[-93,-1],[-126,1],[-44,-1],[-38,-2],[-55,0],[-51,1],[-30,-1],[-67,1],[-138,0],[-112,0],[-39,0],[-1,0],[-273,-5],[-243,-1],[-1,86],[-1,336],[0,76],[1,64],[0,43],[2,259],[0,178],[-2,33],[-1,54],[0,105],[5,203],[0,13],[-4,230],[1,271],[-1,60],[-1,65],[2,223],[-2,64],[0,245],[0,145],[0,177],[0,205],[1,122],[0,18],[1,14],[0,51],[-1,186],[1,238],[0,84],[0,88],[3,37],[-3,30],[-1,213],[0,51],[1,40],[-1,274],[0,224],[0,199],[0,46],[118,1],[35,0],[0,77],[0,48],[-1,118],[0,49],[0,33],[-2,31],[4,28],[-1,6],[-3,25],[0,39],[0,36],[4,345],[1,79],[-2,119],[1,132],[0,92],[0,207],[-1,145],[1,132],[0,137],[-2,248],[1,126],[-1,44],[0,168],[1,412],[-3,48],[3,117],[0,81],[-1,153],[1,281],[-1,65],[0,178],[0,89],[1,173],[0,120],[-1,108],[1,232],[0,46],[0,98],[0,136],[2,128],[0,42],[0,37],[1,136],[0,47],[0,54],[0,123],[0,84],[0,305],[1,156],[0,67],[0,64],[0,216],[0,214],[-1,211],[1,129],[0,278],[0,379],[0,40],[-1,67],[1,168],[1,296],[2,83],[0,50],[-1,61],[-1,42],[0,104],[1,113],[1,147],[0,112],[-3,192],[0,87],[3,773],[0,2],[2,200],[162,9],[65,-9],[1,147],[1,206],[2,80],[-3,175],[0,399],[-1,503],[5,140]],[[39512,48712],[0,-196],[1,-253],[0,-58],[0,-47],[2,-373],[1,-326],[0,-267],[0,-90],[0,-16],[0,-341],[0,-245],[0,-4],[-1,-109],[0,-99],[0,-4],[1,-47],[0,-2],[0,-30],[0,-47],[0,-1],[0,-156],[0,-170],[0,-385],[-1,-68],[1,-111],[0,-49],[0,-76],[0,-155],[-1,-243],[-1,-202],[2,-116],[0,-84],[0,-237],[-1,-141],[-1,-111],[-1,-145],[-90,0],[-121,-1],[-4,0],[-11,0]],[[39287,43707],[-266,-3],[-129,1],[-387,1],[-24,0],[-36,0],[-59,-2],[-13,-1],[-2,0],[-22,0],[-228,0],[-36,1],[-372,0],[-6,0],[-33,0],[-747,9],[-448,-6],[-69,0],[-58,2],[-258,-6],[-108,1],[-247,8],[-237,-7],[-131,1],[-43,2],[-5,0],[-122,5],[-71,0],[-171,0],[-176,0],[-201,0],[-38,0],[-146,-1],[-74,-4],[-25,-1],[-45,6],[-223,-2],[-38,2],[-21,-8],[-45,7],[-132,-21],[-132,11],[-73,5],[-38,3],[-126,-3],[-71,-1],[-100,0],[-24,0],[-211,0],[-181,0],[-26,-1],[-15,0],[-26,0],[-17,0],[-40,0],[-35,0],[-173,2],[-27,-1],[-549,-2],[-148,0],[-123,0],[-52,0],[-34,3],[-36,-3],[-84,0],[-321,-1],[-45,0],[-25,0],[-91,1],[-14,0],[-355,0],[-299,1],[-25,0],[-47,0],[-17,0],[-43,-1],[-28,0],[-40,0],[-2,0],[-161,-1],[-35,0],[-14,0],[-17,0],[-15,1],[-18,0],[-16,0],[-37,0],[-57,-1],[-16,1],[-20,0],[-26,-1],[-21,-1],[-47,0],[-30,-1],[-21,0],[-16,0],[-44,0],[-44,0],[-56,0],[-27,-1],[-227,0],[-207,1],[-291,-1],[-17,-1],[-19,-1],[-118,0],[-164,-1],[-435,-2],[-95,4],[-40,0],[-40,-1],[-102,-1],[-81,-3],[-15,4],[-90,-4],[-17,1],[-26,1],[-50,1],[-38,2],[-32,2],[-35,-3],[-26,2],[-26,2],[-119,3],[-22,-6],[-28,-3],[-6,-1],[-90,0]],[[26908,43695],[1,158],[-3,474],[0,76],[1,299],[0,43],[0,33],[-1,173],[3,553],[-1,191],[0,61],[-1,32],[-1,33],[0,75],[0,78],[-1,247],[0,103],[1,55],[0,46],[0,274],[0,339],[1,54],[0,119],[-1,31],[2,120],[-1,66],[0,1],[-4,31],[0,413],[1,227],[0,403],[2,203],[0,51],[-1,87],[0,176],[0,55],[-2,61],[0,32],[2,169],[0,338],[0,137],[1,564],[0,187],[0,232],[0,234],[0,38],[0,137],[0,137],[0,1042],[-1,303],[0,111],[0,45],[1,112],[1,124],[2,319],[1,185],[-1,54],[0,67],[0,71],[82,1],[1,51],[-1,225],[0,136],[0,53],[-1,381],[0,53],[-1,86],[-1,204],[0,57],[2,224],[-3,266],[3,190],[0,138],[2,216],[1,167],[0,185],[0,139],[0,45],[-4,1235],[0,32],[0,99],[-1,215],[0,20],[1,56],[0,35],[0,29],[0,10],[0,6],[0,36],[1,233]],[[81426,59563],[-3,-33],[0,-41],[0,-30],[0,-59],[0,-39],[1,-50],[-1,-59],[0,-30],[0,-60],[0,-29],[0,-29],[0,-48],[0,-28],[0,-36],[0,-30],[0,-31],[0,-57],[0,-44],[0,-70],[0,-36],[0,-36],[0,-29],[0,-59],[0,-30],[0,-30],[0,-30],[0,-34],[1,-84],[-1,-59],[0,-50],[0,-43],[0,-33],[0,-46],[0,-38],[0,-40],[0,-31],[0,-87],[0,-109],[0,-31],[0,-39],[0,-57],[0,-113],[0,-44],[0,-31],[0,-64],[0,-40],[0,-30],[0,-58],[0,-56],[0,-38],[0,-32],[0,-9],[0,-22],[0,-126],[0,-75],[0,-41],[0,-90],[0,-40],[0,-36],[0,-43],[0,-118],[0,-47],[0,-99],[0,-63],[0,-34],[0,-87],[0,-58],[0,-104],[0,-42],[0,-31],[0,-35],[0,-47],[0,-47],[0,-35],[0,-80],[0,-32],[0,-40],[0,-136],[0,-283],[0,-85],[0,-92],[0,-34],[0,-58],[0,-58],[0,-58],[0,-32],[0,-180],[0,-44],[0,-59],[0,-34],[0,-46],[0,-34],[0,-1],[0,-30],[0,-38],[0,-10],[0,-20],[0,-39],[0,-38],[0,-51],[0,-33],[0,-44],[0,-40],[-1,-58],[0,-6],[0,-42],[0,-37],[0,-32],[0,-41],[0,-52],[0,-29],[0,-35],[0,-64],[0,-42],[-1,-72],[0,-42],[0,-82],[0,-77],[0,-62],[0,-62],[0,-48],[0,-44],[-1,-50],[0,-55],[0,-38],[0,-49],[0,-33],[0,-49],[0,-45],[0,-58],[0,-63],[0,-31],[-1,-57],[0,-57],[0,-58],[0,-57],[0,-58],[0,-84],[0,-34],[0,-69],[0,-56],[-1,-97],[0,-42],[0,-76],[0,-36],[0,-47],[0,-41],[0,-62],[0,-146],[0,-90],[0,-49],[0,-34],[0,-49],[0,-100],[0,-39],[0,-34],[0,-48],[0,-69],[0,-52],[-1,-66],[1,-52],[0,-55],[0,-65],[0,-43],[0,-72],[0,-35],[0,-35],[0,-59],[0,-51],[0,-30],[0,-33],[0,-37],[0,-32],[0,-54],[0,-33],[0,-34],[0,-44],[0,-42],[0,-46],[0,-29],[0,-31],[0,-36],[0,-41],[0,-39],[0,-38],[0,-53],[0,-64],[0,-43],[0,-45],[0,-59],[0,-39],[0,-32],[-1,-64],[0,-36],[0,-69]],[[81417,49490],[-86,-6],[-70,-2],[-69,1],[-40,0],[-36,-1],[-40,0],[-20,1],[-21,-1],[-31,0],[-25,0],[-17,0],[-23,0],[-17,0],[-16,0],[-20,-1],[-15,0],[-26,0],[-17,-1],[-22,0],[-19,0],[-22,-1],[-25,0],[-17,0],[-15,0],[-32,-2],[-15,1],[-16,0],[-8,0],[-23,0],[-38,-2],[-22,0],[-29,-1],[-60,1],[-30,-1],[-29,0],[-30,-1],[-15,0],[-15,0],[-31,-1],[-30,-1],[-30,0],[-29,0],[-58,2],[-18,-2],[-33,-1],[-18,0],[-14,0],[-14,0],[-47,-1],[-13,0],[-33,-1],[-18,1],[-20,0],[-15,0],[-24,0],[-14,0],[-20,1],[-22,0],[-18,1],[-45,1],[-79,2],[-56,1],[-29,1],[-42,1],[-44,1],[-31,1],[-14,0],[-66,1],[-17,1],[-38,1],[-53,1],[-42,1],[-58,1],[-14,0],[-26,1],[-19,0],[-55,2],[-32,0],[-18,1],[-52,1],[-21,1],[-53,1],[-18,1],[-19,0],[-24,2],[-22,0],[-53,2],[-84,1],[-24,0],[-31,1],[-32,0],[-41,1],[-46,1],[-110,2],[-43,1],[-48,1],[-16,2],[-52,-3],[-86,1],[-80,0],[-70,-1],[-25,0],[-66,-1],[-52,0],[-29,-1],[-49,1],[-107,0],[-16,4],[-26,1],[-17,0],[-28,0],[-37,1],[-37,1],[-17,-1],[-41,1],[-16,1],[-19,0],[-46,1],[-51,1],[-37,1],[-34,0],[-20,1],[-35,1],[-16,-1],[-29,0],[-27,1],[-34,0],[-39,1],[-23,2],[-13,-1],[-27,1],[-17,0],[-15,0],[-13,1],[-18,0],[-14,0],[-13,0],[-22,1],[-23,0],[-22,3],[-14,1],[-20,0],[-13,0],[-16,1],[-25,0],[-23,0],[-15,1],[-19,0],[-13,0],[-4,0],[-19,0],[-15,0],[-19,0],[-44,0],[-37,1],[-45,-1],[-33,0],[-14,-1],[-21,0],[-24,1],[-19,0],[-18,0],[-28,0],[-24,0],[-30,0],[-27,1],[-16,0],[-14,0],[-19,0],[-19,0],[-57,-3],[-28,0],[-18,0],[-28,0],[-19,0],[-19,0],[-55,0],[-54,2],[-35,0],[-32,0],[-42,1],[-45,-1],[-44,1],[-28,0],[-49,0],[-29,0],[-47,-1],[-16,1],[-88,0],[-25,0],[-14,0],[-28,0],[-36,0],[-62,0],[-36,0],[-35,0],[-19,-1],[-28,0],[-51,-2]],[[75140,49526],[-21,2],[-35,1],[-23,0],[-13,0],[-73,0],[-72,1],[-30,0],[-41,0],[-50,0],[-157,-1],[-33,0],[-16,0],[-17,0],[-32,0],[-51,0],[-31,0],[-17,0],[-12,0],[-72,0],[-53,0],[-143,0],[-71,0],[-52,0],[-137,0],[-33,0],[-46,0],[-50,0],[-17,0],[-105,0],[-73,0],[-37,0],[-3,0],[-16,0],[-16,-1],[-184,0],[-1,0],[-25,1],[-2,0],[-25,0],[-6,0],[-128,1],[-69,-1],[-20,0],[-71,0],[-180,1],[-16,0],[-34,-1],[-37,0],[-59,1],[-47,0],[-51,1],[-30,0],[-77,2],[-137,-3],[-45,1],[-87,0],[-162,1],[-40,0],[-24,0],[-14,0],[-26,-1],[-94,0],[-33,0],[-29,1],[-90,-1],[-20,0],[-161,0],[-16,0],[-90,2],[-32,1],[-41,0],[-24,0],[-68,0],[-61,-2],[-39,1],[-40,0],[-126,-1],[-80,0],[-21,0],[-85,0],[-21,0],[-27,0],[-16,0],[-15,0],[-19,0],[-29,0],[-20,0],[-16,0],[-22,0],[-95,-1],[-16,0],[-46,0],[-98,-1]],[[7944,47916],[-123,-3],[-22,0],[-76,-2],[-16,0],[-50,-1],[-251,3],[-33,0],[-16,0],[-44,1],[-310,-1],[-311,-1],[-227,-1],[-39,2],[-6,0],[-14,0],[-55,0],[-77,0],[-45,0],[-96,0],[-18,0],[-15,0],[-24,0],[-77,0],[-70,-1],[-63,0],[-193,1],[-21,0],[-60,1],[-297,1],[-125,1],[-185,1],[-39,0],[-276,1],[-319,2],[-23,0],[-195,1],[-17,0],[-84,0],[-209,1],[-152,-2],[-272,1],[-36,-1],[-8,0],[-627,0],[-11,1],[-9,0],[-27,0],[-117,0],[-172,1],[-74,1],[-198,0],[-98,0],[-267,1],[-65,0],[-86,0],[-349,1],[-237,1],[-267,-3],[-154,0],[-138,1],[-38,0],[-138,0],[-152,0],[-15,0],[-75,0]],[[41,47924],[1,453],[0,29],[0,208],[0,262],[0,3],[1,180],[-3,456],[-1,215],[-1,116],[0,65],[-4,621],[-2,407],[-1,128],[0,216],[0,67],[-1,284],[0,322],[0,217],[0,29],[-1,413],[0,143],[0,117],[0,98],[0,241],[0,173],[-1,552],[0,327],[0,78],[0,31],[0,32],[0,267],[0,56],[0,68],[0,447],[-1,564],[-1,1024],[-1,323],[0,281],[-1,844],[0,301],[0,201],[0,106],[0,75],[-1,148],[0,388],[1,33],[0,4],[1,92],[0,55],[-1,179],[0,156],[-1,84],[1,222],[0,3]],[[57666,50130],[-34,-5],[-235,-83],[-186,-262],[-41,-58],[-117,-294],[-6,-248],[101,-214],[95,-139],[130,-59],[90,-4],[35,-2],[134,-24],[107,-18],[170,-91],[131,-98],[126,-130],[32,-32],[54,-69],[112,-150],[42,-105],[56,-172],[30,-182],[20,-231],[4,-35],[-3,-54],[-11,-104],[-24,-110],[-43,-128],[-96,-183],[-97,-98],[-75,-41],[-15,-9],[-40,-17],[-39,-3],[-69,21],[-40,14],[-62,32],[-22,8],[-96,35],[-143,98],[-47,46],[-70,74],[-18,10],[-27,26],[-86,57],[-8,5],[-54,31],[-50,14],[-9,5],[-77,36],[-50,29],[-78,44],[-158,115],[-67,49],[-58,33],[-102,84],[-47,43],[-109,99],[-110,46],[-56,24],[-61,12],[-12,2],[-1,0],[-79,-10],[-96,-31],[-120,-25],[-29,-6],[-139,-44],[-121,-47],[-150,-71],[-144,-61],[-67,-15],[-43,-12],[-54,-10],[-87,-11],[-14,0],[-70,-2],[-58,10],[-26,7],[-30,18],[-73,41],[-120,92],[-100,139],[-91,195],[-44,116],[-104,273],[-12,57],[-74,324],[-47,126],[-32,71],[-105,238],[-39,112],[-15,42],[-13,46],[-11,44],[-16,97],[-2,13]],[[90940,59526],[1,-31],[1,-33],[0,-118],[1,-128],[-1,-65],[-1,-80],[-1,-43],[-1,-107],[-1,-173],[0,-43],[0,-301],[-1,-131],[-1,-363],[-1,-55],[0,-417],[-1,-156],[0,-60],[-1,-204],[0,-151],[0,-53],[0,-180],[0,-32],[0,-296],[-2,-123],[-1,-154],[-1,-62],[1,-163],[0,-37],[1,-212],[0,-204],[0,-99],[0,-319],[0,-226],[0,-144],[0,-48],[0,-37],[0,-61],[0,-29],[0,-3],[0,-37],[-1,-45],[0,-1],[0,-48],[-1,-72],[0,-3],[-1,-50],[0,-34],[-1,-38],[-1,-67],[0,-312],[1,-280],[0,-34],[1,-13],[0,-39],[0,-70],[0,-90],[0,-49],[0,-1],[0,-164],[0,-99],[1,-329],[0,-59],[0,-32],[0,-84],[0,-92],[0,-85],[-1,-155],[-1,-309],[-1,-100],[0,-56],[0,-45],[-1,-100],[1,-118],[0,-39],[0,-63],[0,-137],[0,-15],[0,-265],[0,-168],[0,-106],[-1,-144],[0,-43],[0,-9],[-1,-125],[-2,-243],[-3,-167],[0,-64],[1,-180]],[[90920,49507],[-23,0],[-15,0],[-15,1],[-14,0],[-16,0],[-17,0],[-18,0],[-16,0],[-19,0],[-13,0],[-17,0],[-17,0],[-18,0],[-16,0],[-16,0],[-15,0],[-15,0],[-15,0],[-21,0],[-18,-1],[-16,0],[-15,0],[-17,0],[-16,0],[-20,-1],[-16,0],[-17,0],[-81,-1],[-126,4],[-134,-3],[-14,0],[-16,0],[-13,0],[-15,0],[-16,0],[-17,0],[-17,0],[-16,1],[-16,0],[-14,0],[-15,0],[-14,0],[-15,0],[-13,0],[-18,0],[-19,0],[-17,0],[-14,0],[-23,0],[-13,0],[-17,0],[-17,0],[-16,0],[-17,0],[-18,0],[-15,1],[-15,0],[-14,0],[-16,0],[-16,0],[-31,0],[-16,0],[-14,0],[-17,0],[-15,0],[-17,0],[-16,0],[-17,1],[-15,0],[-15,0],[-16,0],[-15,0],[-15,0],[-14,0],[-15,0],[-14,0],[-13,0],[-14,0],[-14,1],[-18,0],[-17,0],[-16,0],[-17,0],[-13,1],[-15,0],[-17,0],[-16,0],[-14,0],[-16,0],[-14,0],[-17,0],[-15,0],[-14,0],[-15,0],[-15,0],[-15,0],[-14,0],[-18,0],[-15,0],[-16,0],[-14,0],[-17,0],[-15,-1],[-18,0],[-15,0],[-14,-1],[-14,0],[-15,0],[-14,0],[-14,-1],[-17,0],[-18,0],[-13,0],[-17,0],[-19,-1],[-14,0],[-15,-1],[-15,0],[-15,-1],[-18,0],[-17,-1],[-16,-1],[-17,0],[-19,-1],[-16,0],[-19,0],[-18,-1],[-14,0],[-17,0],[-14,-1],[-15,0],[-15,-1],[-17,0],[-15,-1],[-16,0],[-13,0],[-17,-1],[-17,-1],[-13,0],[-18,0],[-17,-1],[-17,-1],[-16,0],[-15,-1],[-16,0],[-17,0],[-17,-1],[-17,-1],[-16,0],[-19,0],[-14,-1],[-16,0],[-17,-1],[-14,0],[-14,-1],[-17,0],[-14,0],[-13,-1],[-14,0],[-17,-1],[-13,0],[-20,0],[-17,-1],[-15,0],[-16,-1],[-16,0],[-16,0],[-18,-1],[-13,0],[-15,0],[-17,-1],[-14,0],[-14,0],[-17,-1],[-19,0],[-13,0],[-20,-1],[-17,0],[-17,-3]],[[87764,49477],[-27,1],[-14,0],[-14,0],[-70,-1],[-16,-1],[-18,0],[-46,-1],[-28,-1],[-36,0],[-14,0],[-47,0],[-51,0],[-15,0],[-18,-1],[-15,0],[-86,-1],[-16,0],[-14,0],[-26,1],[-31,0],[-83,1],[-30,2],[-31,2],[-38,-1],[-15,-1],[-54,-1],[-28,0],[-30,0],[-26,1],[-14,0],[-23,0],[-14,0],[-14,1],[-31,0],[-19,0],[-15,1],[-65,1],[-72,2],[-62,0],[-62,0],[-64,-1],[-64,0],[-140,-1],[-17,0],[-23,0],[-15,0],[-26,0],[-24,0],[-29,0],[-24,0],[-17,0],[-16,0],[-19,0],[-20,0],[-18,0],[-14,0],[-269,0],[-258,4],[-11,1],[-14,0],[-14,0],[-20,0],[-41,1],[-23,0],[-13,0],[-14,0],[-14,-1],[-16,0],[-17,0],[-14,3],[-15,-1],[-24,-1],[-20,0],[-77,-1],[-39,-1],[-184,-2],[-182,-3],[-139,-1],[-74,0],[-52,-1],[-17,1],[-30,0],[-14,0],[-16,0],[-13,0],[-27,4],[-22,1],[-18,0],[-17,-4],[-31,-1],[-18,0],[-22,0],[-21,0],[-43,-1],[-14,0],[-32,0],[-32,0],[-42,-1],[-36,0],[-27,-1],[-18,0],[-19,0],[-40,0],[-17,1],[-28,-1],[-23,0],[-15,1],[-22,0],[-15,-1],[-17,0],[-11,-1],[-49,-4],[-19,10],[-17,-4],[-40,2],[-17,-1],[-31,1],[-25,0],[-21,0],[-29,0],[-25,0],[-26,0],[-25,0],[-13,1],[-22,0],[-38,0],[-124,0],[-37,1],[-45,1],[-14,0],[-30,1],[-126,0],[-94,1],[-19,0],[-25,1],[-26,0],[-20,0],[-31,1],[-30,0],[-18,0],[-28,1],[-30,1],[-43,0],[-41,1],[-19,0],[-25,1],[-22,0],[-18,0],[-13,1],[-20,0],[-16,0],[-24,0],[-19,1],[-20,0],[-22,0],[-46,1],[-34,0],[-90,1],[-7,0],[-16,0],[-21,0],[-17,0],[-30,1],[-16,0],[-20,0],[-23,0],[-15,1],[-15,0],[-14,0],[-21,-1],[-25,-1],[-17,0],[-14,0],[-16,0],[-18,0],[-25,0],[-27,0],[-36,0],[-21,-1],[-19,0],[-20,-1],[-40,-1],[-39,-1],[-26,0],[-20,-1],[-29,0]],[[81472,49487],[-55,3]],[[99814,59539],[0,-109],[-1,-999],[-1,-187],[0,-205],[-1,-1449],[-2,-1291],[-4,-3695],[-1,-610],[0,-89],[0,-355],[-1,-757],[-1,-261],[0,-4]],[[99802,49528],[-173,-1],[-17,0],[-14,0],[-14,-1],[-15,0],[-14,-1],[-16,0],[-14,0],[-18,-1],[-16,0],[-14,-1],[-14,0],[-17,-1],[-14,0],[-17,-1],[-20,0],[-14,0],[-13,-1],[-18,0],[-16,-1],[-16,0],[-14,-1],[-16,0],[-15,-1],[-14,0],[-18,-1],[-17,-1],[-16,0],[-17,-1],[-19,-1],[-13,0],[-17,-1],[-19,0],[-16,-1],[-14,0],[-16,-1],[-19,-1],[-17,0],[-15,-1],[-16,0],[-16,-1],[-14,0],[-16,-1],[-14,0],[-17,-1],[-14,-1],[-16,0],[-19,-1],[-16,-1],[-14,0],[-15,-1],[-21,0],[-14,0],[-14,0],[-13,0],[-15,0],[-16,0],[-17,-1],[-16,1],[-20,-1],[-14,0],[-19,0],[-16,0],[-17,0],[-15,0],[-17,0],[-16,0],[-17,0],[-16,0],[-17,0],[-16,0],[-14,0],[-15,-1],[-20,0],[-16,0],[-15,0],[-18,-1],[-15,0],[-18,-1],[-15,0],[-17,-1],[-13,0],[-16,0],[-13,-1],[-17,0],[-18,1],[-15,0],[-17,0],[-18,0],[-15,0],[-21,1],[-18,0],[-16,0],[-15,0],[-15,0],[-16,0],[-16,0],[-18,1],[-17,0],[-15,0],[-4,0],[-16,0],[-18,0],[-18,-1],[-14,0],[-21,0],[-14,-1],[-18,0],[-18,0],[-14,0],[-17,-1],[-14,0],[-18,0],[-16,-1],[-18,0],[-15,0],[-15,0],[-22,0],[-16,-1],[-18,0],[-18,0],[-13,0],[-21,0],[-13,0],[-16,0],[-18,1],[-20,0],[-15,0],[-17,0],[-18,0],[-16,0],[-19,0],[-18,1],[-18,0],[-15,0],[-17,1],[-15,0],[-17,0],[-19,0],[-13,0],[-15,0],[-13,0],[-19,0],[-14,0],[-18,0],[-16,1],[-16,0],[-18,0],[-13,0],[-19,0],[-18,0],[-19,1],[-18,0],[-20,0],[-14,0],[-16,1],[-17,0],[-18,0],[-19,1],[-15,0],[-18,0],[-17,0],[-15,-1],[-15,0],[-15,0],[-15,0],[-19,0],[-21,0],[-15,0],[-19,0],[-20,0],[-17,0],[-15,-1],[-14,0],[-15,0],[-16,-1],[-17,0],[-16,0],[-15,-1],[-15,0],[-17,-1],[-13,0],[-20,1],[-19,1],[-20,1],[-14,1],[-21,0],[-19,-1],[-14,0],[-20,-1],[-19,-1],[-20,-1],[-19,-1],[-15,-1],[-20,0],[-13,0],[-16,0],[-14,1],[-18,2],[-14,1],[-14,0],[-15,0],[-15,-1],[-15,0],[-18,-1],[-15,0],[-18,-1],[-18,1],[-20,0],[-13,1],[-20,1],[-18,0],[-20,1],[-19,1],[-20,0],[-19,1],[-14,0],[-15,1],[-17,0],[-19,1],[-20,0],[-19,0],[-18,1],[-20,0],[-19,1],[-17,-2],[-20,-1],[-14,0],[-19,0],[-20,0],[-14,0],[-22,0],[-14,0],[-6,-1],[-14,-2],[-16,0],[-15,0],[-18,0],[-14,0],[-11,0],[-3,0],[-17,-1],[-14,0],[-21,0],[-18,0],[-15,0],[-14,0],[-19,0],[-21,0],[-14,0],[-20,0],[-17,-1],[-18,1],[-19,0],[-20,0],[-5,1],[-8,0],[-15,0],[-20,0],[-15,0],[-15,-1],[-19,1],[-17,0],[-14,0],[-15,0],[-14,0],[-17,1],[-19,0],[-14,0],[-17,0],[-17,0],[-16,0],[-20,0],[-18,0],[-14,1],[-13,0],[-20,0],[-14,0],[-15,0],[-18,0],[-15,1],[-14,0],[-13,0],[-16,0],[-16,0],[-16,0],[-17,0],[-16,0],[-14,1],[-17,0],[-18,0],[-17,0],[-14,0],[-14,0],[-14,0],[-14,0],[-14,-1],[-14,0],[-17,0],[-19,0],[-15,0],[-14,0],[-15,0],[-18,0],[-14,0],[-14,0],[-16,0],[-14,0],[-14,0],[-15,0],[-18,0],[-14,-1],[-23,0],[-2,0],[-111,-1],[-51,-1],[-3,0],[-15,1],[-16,0],[-18,0],[-17,1],[-16,0],[-13,0],[-13,0],[-17,0],[-17,0],[-20,0],[-18,0],[-13,0],[-15,0],[-15,0],[-18,0],[-14,0],[-17,0],[-21,1],[-14,-3]],[[94074,49498],[-25,3],[-14,0],[-15,0],[-16,0],[-17,0],[-13,0],[-14,0],[-14,0],[-14,0],[-17,0],[-14,0],[-17,0],[-17,0],[-18,0],[-15,0],[-15,0],[-17,0],[-27,0],[-15,0],[-15,0],[-40,-1],[-14,0],[-16,1],[-17,-1],[-13,0],[-37,0],[-19,0],[-16,0],[-25,0],[-22,0],[-13,0],[-14,0],[-18,0],[-13,0],[-17,0],[-14,0],[-15,0],[-16,0],[-18,0],[-16,0],[-15,0],[-16,0],[-15,0],[-15,0],[-32,0],[-20,0],[-14,0],[-16,0],[-15,0],[-13,0],[-14,0],[-105,0],[-36,1],[-23,-1],[-263,1],[-93,1],[-51,3],[-27,0],[-69,-2],[-15,0],[-24,0],[-16,0],[-16,0],[-16,0],[-32,0],[-17,0],[-16,0],[-17,0],[-16,0],[-15,0],[-13,0],[-20,0],[-30,0],[-15,0],[-18,0],[-14,0],[-14,0],[-16,0],[-17,0],[-14,0],[-14,0],[-16,0],[-18,0],[-14,0],[-14,0],[-17,0],[-13,-1],[-17,1],[-15,0],[-16,0],[-16,0],[-16,0],[-14,0],[-15,0],[-14,0],[-17,0],[-14,0],[-17,0],[-15,0],[-15,0],[-14,0],[-17,0],[-17,0],[-15,0],[-16,0],[-17,0],[-14,1],[-16,-1],[-15,1],[-17,0],[-14,0],[-16,0],[-16,0],[-14,-1],[-17,0],[-13,0],[-17,1],[-16,0],[-17,-1],[-16,0],[-19,0],[-17,0],[-20,0],[-15,0],[-26,0],[-17,1],[-18,0],[-13,0],[-16,-1],[-14,1],[-18,0],[-16,0],[-15,0],[-14,0],[-17,0],[-18,0],[-18,0],[-17,0],[-18,0],[-14,0],[-15,0],[-14,0],[-15,0],[-15,0],[-17,0],[-15,0],[-16,0],[-13,1],[-15,0],[-17,0],[-14,0],[-16,1],[-19,0],[-15,0],[-17,0],[-18,1],[-13,0],[-4,0]],[[26908,43695],[-76,1],[-79,-2],[0,-121],[-1,-170],[0,-2],[-3,-270],[0,-28],[-1,-35],[-1,-18],[-1,-17],[2,-61],[3,-113],[-2,-395],[1,-331],[-1,-681],[-1,-263],[-1,-30],[-1,-242],[1,-101],[0,-6],[0,-38],[1,-252],[0,-14],[0,-38],[2,-222],[3,-364],[-1,-159],[0,-209],[1,-102],[0,-84],[-2,-227],[1,-415],[0,-67],[1,-347],[0,-217],[0,-74],[1,-133],[-1,-112],[0,-35],[0,-13],[-2,-254],[-1,-431],[2,-364],[-7,-56],[5,-420],[1,-91],[4,-318],[0,-1],[0,-76],[0,-3],[1,-229],[-26,16],[-14,25],[-3,4],[0,2],[-7,25],[2,36],[-9,25],[-17,6],[0,-1],[-13,-28],[5,-43],[-1,-4],[-3,-31],[-17,-34],[-5,-31],[-15,-24],[-13,-20],[-12,-16],[-20,-35],[-31,-49],[-4,-7],[-1,-1],[-1,-3],[-10,-24],[-5,-9],[-6,-11],[-6,-28],[-3,-13],[3,-34],[3,-33],[5,-41],[4,-43],[3,-32],[15,-25],[1,0],[11,-35],[-1,-40],[-3,-5],[-10,-15],[-1,-1],[-9,1],[-5,1],[-11,-5],[-7,-3],[-3,13],[-5,17],[-13,22],[-5,9],[-16,34],[-11,33],[-10,49],[-10,20],[-14,14],[-15,2],[-32,-14],[-17,-29],[-26,-68],[-1,-2],[-17,-38],[-10,-29],[-38,-6],[-46,6],[-11,3],[-25,6],[-3,0],[-7,2],[-8,1],[-11,3],[-12,0],[-4,0],[-6,0],[-12,-6],[-7,-3],[-1,0],[-17,2],[-8,2],[-19,5],[-3,1],[-14,2],[-8,5],[-7,4],[-19,17],[-44,12],[-47,30],[-1,0],[-21,15],[-30,20],[-17,5],[-18,5],[-26,0],[-14,3],[-29,15],[-17,18],[-15,-5],[-1,0],[-7,-39],[5,-39],[11,-51],[0,-1],[0,-4],[-1,-44],[0,-4],[-5,-29],[-2,-4],[-11,-16],[-12,-28],[-2,-3],[-19,-21],[-47,-2],[-26,0],[-20,6],[-8,2],[-27,15],[-9,25],[-4,31],[-3,13],[-4,14],[-6,29],[-8,23],[-8,26],[-5,35],[6,39],[10,33],[1,1],[26,32],[15,30],[9,84],[-2,27],[0,16],[-9,28],[-10,20],[-6,8],[-8,11],[-1,2],[-8,13],[-3,6],[-1,1],[-2,4],[-11,20],[-11,33],[-8,34],[-1,38],[-5,35],[-3,9],[-5,14],[-18,31],[-16,4],[-1,-6],[-3,-32],[-3,-35],[-7,-39],[-7,-9],[-11,-17],[-1,-6],[-4,-23],[-6,-41],[-16,-18],[-15,-14],[-19,-4],[-1,0],[0,1],[-11,16],[-1,2],[-15,15],[-21,5],[-30,-24],[-33,-28],[-27,-36],[-6,-7],[-8,-8],[-16,-16],[-6,-5],[-8,-8],[-15,-8]],[[25178,35219],[-3,1],[-20,1],[-10,13],[-21,27],[-7,7],[-8,6],[-16,10],[-30,14],[0,1],[-10,29],[-19,25],[-12,8],[-14,10],[-8,-1],[-7,-1],[-14,-8],[-10,-5],[-3,-2],[-1,-1],[-2,-6],[-13,-27],[0,-1],[-2,-35],[-1,-27],[0,-1],[3,-24],[4,-26],[1,-75],[-33,-47],[-22,11],[-29,17],[-13,0],[-13,2],[-6,1],[-4,0],[-22,0],[-19,-9],[4,-38],[1,-2],[19,-35],[5,-51],[-10,-20],[-3,-7],[-31,-39],[-14,-18],[-1,-1],[-17,-17],[-15,-11],[-24,-17],[-19,-10],[-21,-5],[-26,1],[-24,2],[-25,2],[-24,-8],[-19,5],[-29,0],[-101,-2],[-53,2],[-352,-2],[-5,0],[-132,-1],[-121,-1],[-39,7],[-32,0],[-6,0],[-41,0],[-28,0],[-21,0],[-20,1],[-62,0],[-467,-1],[-227,-1],[-86,0],[-261,-1],[-42,0],[-49,0],[-5,0],[-67,0],[-35,0],[-203,-3],[-47,1],[-104,2],[-57,0],[-141,-2],[-67,0],[-371,0],[-553,-1],[-184,0],[-1,0],[-34,0],[-24,0],[-24,0],[-22,-3],[-184,2],[-77,0],[-69,1],[-7,1],[-102,0],[-14,0],[-25,-1],[-9,0],[-4,0],[-346,0],[-11,0],[-128,0],[-39,0],[-2,0],[-193,0],[-130,0],[-54,0],[-38,0],[-75,1],[-85,0],[-31,-1],[-18,0],[-72,1],[-229,0],[-72,0],[-111,0],[-299,0],[-258,-1],[-14,0],[-324,1],[-210,7],[-51,2],[-241,1],[-226,3],[-38,-1],[-61,1],[-69,1],[-150,4],[-1,0]],[[16370,34854],[-18,10],[-30,4],[-6,1],[-20,6],[-8,12],[-7,11],[3,43],[0,2],[1,2],[17,28],[15,36],[1,4],[3,28],[13,41],[14,20],[20,20],[18,1],[14,1],[19,4],[23,-4],[13,2],[14,3],[15,9],[10,21],[0,1],[-3,39],[0,5],[-10,52],[-6,46],[-13,29],[-2,29],[-5,32],[-1,5],[2,9],[3,24],[0,36],[18,47],[14,8],[37,13],[21,19],[12,15],[13,29],[1,1],[0,1],[25,75],[1,24],[0,1],[0,10],[-2,32],[2,37],[9,22],[8,27],[28,5],[29,6],[13,1],[16,0],[14,-14],[11,-25],[3,-6],[25,-21],[29,5],[11,35],[-3,29],[0,1],[-10,30],[5,31],[9,29],[8,37],[36,3],[4,0],[15,3],[16,23],[15,37],[0,50],[-9,30],[-12,17],[-13,36],[4,42],[0,1],[16,54],[0,1],[16,36],[15,27],[15,6],[16,0],[15,-5],[15,-11],[2,1],[21,11],[24,8],[2,1],[14,11],[18,25],[13,39],[0,1],[22,53],[14,30],[9,26],[6,42],[-3,49],[4,20],[5,30],[1,1],[9,27],[7,21],[16,21],[2,2],[16,31],[11,23],[11,31],[30,43],[14,16],[15,11],[29,11],[18,11],[22,24],[8,17],[4,9],[7,27],[26,39],[9,14],[2,2],[0,2],[6,33],[-14,30],[-14,9],[-29,28],[-12,23],[-5,24],[-3,12],[1,1],[7,38],[16,35],[0,1],[1,1],[22,32],[23,10],[19,25],[15,2],[16,8],[2,0],[15,13],[21,2],[6,0],[2,3],[30,35],[13,25],[11,25],[18,30],[12,22],[13,31],[29,36],[37,55],[2,2],[1,2],[32,72],[19,34],[26,28],[1,1],[14,27],[4,6],[9,34],[-2,56],[-10,29],[0,52],[19,32],[19,3],[18,-11],[15,-9],[21,-9],[24,0],[17,12],[2,6],[5,11],[3,8],[2,4],[0,27],[0,17],[-7,29],[-12,18],[-2,2],[-14,16],[-7,9],[-5,6],[-6,34],[-1,6],[-10,70],[-3,42],[-1,20],[3,30],[-6,73],[7,54],[4,29],[10,37],[-1,44],[-1,24],[0,17],[0,22],[0,6],[3,48],[5,40],[15,45],[0,1],[4,30],[1,9],[2,6],[8,28],[12,36],[5,40],[8,50],[15,61],[34,86],[13,54],[17,28],[5,35],[0,15],[2,41],[-1,0],[-8,16],[-11,21],[0,1],[-3,1],[-31,12],[0,1],[-7,17],[-5,15],[-7,19],[0,48],[8,29],[11,19],[3,4],[8,10],[27,29],[16,14],[12,15],[7,42],[-7,57],[-117,1],[-27,0],[-102,0],[-18,0],[-19,0],[-8,0],[-15,0],[-19,1],[-309,1],[-196,2],[-514,5],[-31,0],[-182,2],[-129,2],[-25,0],[-272,4],[-206,2],[-67,2],[-35,0],[-89,1],[-91,-2],[-144,1],[-66,1],[-30,0],[-15,0],[-52,1],[-101,1],[-90,1],[-73,0],[-79,1],[-111,1],[-90,1],[-46,0],[-114,1],[-84,2],[-16,0],[-31,0],[-143,0],[-33,0],[-42,0],[-124,0],[-79,0],[-8,0],[-69,-2],[-34,0],[-15,0],[-18,0],[-4,0],[-13,1],[-131,1],[-143,2],[-178,0],[-31,0],[-108,0],[-57,0],[-293,1],[-236,2],[-380,-2],[-132,0],[-17,0],[-287,-1],[-90,0],[-116,0],[-103,0],[-19,0],[-1,0],[-90,-1],[-29,0],[-81,0],[-212,-2],[-13,0],[-18,0],[-20,0],[-31,0],[-215,0],[-166,0],[-244,-3],[-37,-1],[-14,0],[-81,-1],[-62,-1],[-66,-1],[-104,-1],[-17,0],[-17,-1],[-22,0],[-20,1],[-84,0],[-43,0],[-159,1],[-11,0],[-173,1],[-124,2],[-297,4],[-65,1],[-61,0],[-150,-1],[-191,-1],[-29,-1],[-61,0],[-59,0],[-14,0],[-52,-1],[-13,0],[-62,0],[-5,0],[-57,-1],[-5,0],[-42,0],[-5,0],[-80,0],[-433,-3],[-130,-1],[-13,0],[-15,0],[-24,0],[-140,-1],[-228,-3],[-34,0],[-74,-1],[-21,-1],[-66,-1],[-15,0],[-248,-3],[-20,0],[-288,-4],[-20,0],[-5,0],[-259,-4],[-80,-1],[-41,0],[-32,-1],[-208,-3],[-70,0],[-9,0],[-6,-1],[-580,-6],[-132,-2],[-107,-1],[-580,-7],[-22,0],[-25,0],[-44,-1],[-67,0],[-74,0],[-51,-1],[-101,0],[-148,-1],[-13,1],[-1,0],[-20,-1],[-203,0],[-240,-1],[-20,0],[-232,-1],[-92,-1],[-275,-1],[-5,0],[-165,0],[-411,-7],[-132,-2],[-39,-1],[-29,0],[-284,-5],[-135,-2],[-342,-6],[-20,0],[-249,-5],[-284,-3],[-26,0],[-200,-2],[-211,-2]],[[30,39625],[0,233],[1,388],[0,81],[1,156],[0,63],[1,292],[0,53],[0,125],[1,304],[1,347],[0,315],[0,40],[1,33],[0,168],[1,268],[1,370],[0,111],[0,120],[1,177],[0,120],[0,141],[1,170],[0,152],[0,1],[0,266],[0,121],[0,199],[0,243],[0,390],[1,231],[0,201],[0,236],[0,453],[0,489],[0,361],[0,86],[0,155],[0,89],[0,87],[0,91],[0,330],[0,43]],[[61705,41956],[-26,-215],[-48,-170],[-23,-159],[0,-37],[0,-126],[17,-192],[64,-182],[1,-3],[1,-24],[8,-62],[6,-11],[38,-52],[65,-59],[96,-103],[100,-80],[78,-81],[74,-109],[23,-41],[59,-133],[76,-202],[18,-51],[27,-78],[5,-31],[0,-85],[-39,-134],[-32,-92],[-38,-91],[-96,-226],[-37,-80],[-43,-76],[-21,-52],[-18,-63],[-29,-114],[-33,-173],[-2,-43],[0,-8],[-13,-55],[-12,-43],[-2,-5],[-62,-181],[-47,-104],[-47,-80],[-3,-4],[-43,-61],[-20,-23],[-68,-82],[-41,-38],[-68,-42],[-44,-30],[-33,-56],[-60,-50],[-54,-26],[-63,-11],[-5,-1],[-76,-28],[-75,-39],[-82,-55],[-5,4],[-19,-32],[-26,-68],[-35,-64],[-4,-27],[-24,-161],[-12,-100],[-5,-41],[-8,-67],[0,-38],[1,-77],[-4,-70],[-8,-69],[-10,-55],[-14,-75],[-10,-74],[4,-59],[31,-122],[55,-147],[24,-59],[0,-8],[12,-23],[16,-30],[4,-19],[4,-18],[14,-70],[2,-66],[-2,-6],[-5,-14],[-4,-31],[-7,-140],[0,-11],[1,-51],[-21,-51],[-5,-27],[-1,-30],[1,-31],[35,-128],[-1,-33],[-11,-30],[-24,-41],[-29,-38],[-35,-38],[-32,-30],[-42,-34],[-20,-15],[-33,-17],[-39,-16],[-54,-18],[-32,-11],[-27,-12],[-38,-19],[-51,-28],[-21,-13],[-47,-29],[-37,-26],[-15,-16],[-18,-17],[-19,-20],[-22,-29],[-126,-248],[-2,-3],[-6,-12],[-30,-62],[-6,-55],[16,-77],[15,-59],[19,-70],[13,-58],[1,-4],[0,-3],[12,-65],[18,-91],[15,-49],[28,-42],[42,-37],[41,-28],[34,-16],[45,-13],[51,-17],[62,-6],[44,-1],[67,8],[46,12],[15,5],[15,6],[26,9],[55,25],[11,6],[82,43],[83,43],[22,4],[6,1],[69,19],[69,13],[42,0],[66,-7],[35,-13],[42,-13],[23,-12],[114,-115],[84,-151],[31,-75],[32,-78],[56,-214],[39,-179],[13,-108],[20,-119],[32,-142],[16,-153],[15,-249],[0,-256],[10,-207],[9,-146],[36,-173],[56,-103],[10,-18],[16,-42],[14,-35],[10,-30],[16,-47],[8,-25],[6,-17],[16,-42],[20,-39],[31,-38],[25,-35],[29,-37],[28,-35],[26,-28],[17,-29],[5,-14],[9,-23],[13,-37],[21,-33],[23,-36],[77,-113],[65,-91],[56,-98],[39,-78],[66,-140],[11,-43],[11,-68],[4,-44],[-1,-45],[-9,-88],[0,-3],[-4,-52],[-35,-154],[-36,-106],[-30,-91],[-10,-30],[-14,-43],[-15,-28],[-34,-53],[-27,-53],[-2,-5]],[[62464,29418],[-8,0],[-156,-3],[-7,0],[-27,0],[-481,2],[-2,0],[-67,1],[-156,-3],[-28,0],[-82,1],[-108,0],[-23,0],[-14,0],[-15,0],[-15,0],[-15,0],[-15,0],[-14,0],[-15,0],[-15,0],[-15,0],[-15,0],[-15,0],[-19,0],[-15,0],[-15,0],[-15,0],[-15,0],[-15,0],[-14,0],[-20,0],[-15,0],[-15,0],[-14,0],[-15,0],[-15,0],[-15,0],[-55,0],[-83,1],[-18,0],[-15,-1],[-19,0],[-15,0],[-15,0],[-15,0],[-20,0],[-14,0],[-5,0],[-13,0],[-15,0],[-15,0],[-15,1],[-272,-1],[-19,0],[-182,0],[-53,-1],[-65,0],[-114,0],[-14,0],[-81,3],[-54,-1],[-258,0],[-65,2],[-15,0],[-15,0],[-15,0],[-15,0]],[[59370,29419],[-31,-4],[-71,-1],[-36,0],[-15,0],[-164,7],[-81,0],[-42,0],[-41,0],[-85,0],[-20,0],[-63,0],[-59,0],[-115,1],[-46,-2],[-48,0],[-21,0],[-111,0],[-39,0],[-19,0],[-17,0],[-20,0],[-15,0],[-21,2],[2,331],[0,32],[0,31],[0,38],[0,33],[0,78],[0,36],[0,33],[0,70],[0,40],[1,34],[0,36],[-1,40],[0,101],[0,54],[0,160],[0,104],[0,290],[0,129],[1,301],[0,63],[1,50],[-1,50],[0,144],[0,96],[0,130],[0,150],[0,7],[0,680],[-1,269],[0,141],[0,171],[0,5],[-1,248],[0,21],[0,397],[-2,216],[5,200],[0,32],[0,30],[0,37],[-1,38],[0,33],[0,35],[0,37],[0,41],[0,30],[0,40],[-6,29],[0,346],[1,86],[0,472],[-6,713],[0,-2],[-6,-10],[-27,-52],[-2,-3],[-48,-74],[-19,-19],[-17,-18],[-9,-10],[-11,-7],[-1,-1],[-1,-1],[-28,-16],[-19,-1],[-11,2],[-16,4],[-6,1],[-10,4],[-3,5],[-6,9],[-5,11],[-9,35],[-3,11],[1,18],[7,33],[11,47],[4,23],[0,1],[2,26],[-1,35],[-1,2],[5,49],[2,69],[-6,129],[-4,49],[-8,40],[-61,123],[-16,26],[-36,56],[-37,43],[-17,19],[-5,6],[-21,15],[-41,8],[-20,-6],[-8,-7],[-43,-40],[-8,-12],[-3,-7],[-4,-26],[0,-12],[0,-6],[0,-44],[7,-56],[10,-50],[11,-78],[5,-40],[13,-100],[18,-227],[1,-162],[-2,-12],[-9,-31],[-16,-33],[-13,-27],[-8,-16],[-11,-21],[-2,-4],[-24,-31],[-32,-28],[-18,-13],[-37,-16],[-12,-3],[-72,-8],[-1,0],[-5,0],[-31,2],[-11,4],[-22,24],[-29,37],[-3,5],[-7,11],[-6,10],[-5,14],[-6,46],[2,27],[1,6],[14,81],[16,43],[30,61],[16,45],[15,40],[13,39],[19,68],[5,29],[-1,13],[-10,128],[-2,11],[-13,37],[-18,51],[-5,13],[-25,38],[-10,10],[-44,42],[-9,5],[-18,-1],[-24,-13],[-2,-1],[-20,-30],[-12,-19],[-10,-32],[-5,-18],[-9,-37],[-14,-36],[-31,-55],[-9,-11],[-5,-1],[0,-1],[-17,-18],[-2,-3],[-10,-23],[-1,-1],[-2,-5],[-1,-4],[-8,-25],[-13,-52],[-29,-146],[0,-2],[-2,-20],[-1,-6],[0,-1],[1,-17],[1,-26],[4,-33],[0,-42],[-2,-53],[-7,-36],[0,-3],[-1,-1],[-1,-5],[-11,-33],[-10,-19],[-4,-2],[-5,-5],[-15,-15],[-57,-80],[-10,-15],[-7,-15],[-19,-56],[-5,-16],[-20,-66],[-8,-20],[-30,-41],[-12,-13],[-16,-12],[-23,-9],[-19,-4],[-13,3],[-34,24],[-19,21],[-2,3],[-1,1],[-16,24],[-3,9],[0,1],[-9,41],[-2,32],[3,28],[0,1],[15,70],[14,62],[3,35],[1,36],[-1,54],[0,13],[-4,22],[-1,1],[-13,22],[-6,14],[-2,12],[-3,20],[-2,37],[-12,155],[-5,41],[-8,27],[-14,33],[-11,9],[-16,6],[-9,0],[-11,-3],[-34,-7],[-32,-12],[0,-1],[-15,-9],[-5,-13],[-2,-3],[-4,-9],[-36,-61],[-24,-27],[-12,-14],[-7,-11],[-12,-22],[-21,-35],[-6,-15],[-15,-37],[-13,-44],[-4,-20],[-1,-7],[4,-140],[1,-11],[7,-46],[1,-8],[4,-10],[5,-14],[1,-2],[5,-8],[11,-15],[22,-18],[6,-10],[9,-15],[8,-16],[1,-4],[1,-7],[4,-35],[3,-94],[0,-3],[1,-4],[15,-42],[23,-37],[2,-4],[9,-7],[24,-18],[7,-5],[5,-5],[20,-15],[23,-34],[16,-38],[5,-15],[1,-16],[0,-27],[0,-3],[-4,-20],[-2,-3],[-4,-7],[-3,-6],[-11,-1],[-7,0],[-2,0],[-3,1],[-12,9],[-25,3],[-2,-2],[-51,-37],[-5,-1],[-41,-9],[-14,5],[-3,2],[-18,10],[-8,9],[-20,24],[-65,62],[-6,3],[-21,11],[-28,-2],[-2,0],[-5,-6],[-34,-43],[-13,-16],[-30,-19],[-11,-7],[-7,0],[-25,0],[-40,-1],[-2,0],[-6,3],[-111,48],[-66,-8],[-2,-3],[-6,-8],[-4,-5],[-4,-20],[29,-181],[-9,-26],[-5,-13],[-3,-6],[-10,-17],[-5,-10],[-17,-19],[-3,-3],[-2,-2],[-19,-9],[-20,-9],[-2,0],[-1,-1],[-46,-6],[-19,-9],[-149,-115],[-134,-118],[-37,-32],[-12,-9],[-38,-26],[-28,-1],[-2,0],[-1,1],[-10,15],[-1,2],[-42,102],[-1,2],[-21,67],[-36,75],[-32,49],[-11,18],[-11,11],[-7,8],[-22,10],[-57,-4],[-4,-5],[-8,-11],[-3,-3],[-4,-5],[-7,-20],[1,-16],[12,-19],[15,-24],[1,-1],[3,-3],[27,-23],[9,-13],[10,-14],[19,-29],[26,-60],[6,-17],[10,-32],[4,-66],[-3,-9],[-6,-11],[-1,-1],[-5,-2],[-10,-4],[-16,24],[-6,18],[-7,20],[-23,34],[-1,0],[-18,13],[-11,8],[-36,3],[-12,1],[-34,2],[-45,-26],[-41,-37],[-10,-17],[1,-15],[3,-5],[20,-29],[55,-43],[23,-29],[13,-18],[7,-8],[4,-9],[18,-41],[1,-3],[0,-1],[1,-21],[1,-32],[-13,-79],[-8,-20],[-38,-91],[-51,-72],[-4,-6],[-9,-8],[-12,-1],[-5,7],[-1,1],[-38,59],[-57,36],[-5,3],[-2,3],[-31,43],[-20,27],[-3,5],[-10,2],[-24,4],[-6,1],[-7,2],[-15,18],[-1,6],[-1,5],[-1,8],[2,11],[8,31],[1,6],[41,94],[1,1],[0,5],[2,31],[1,19],[-8,34],[-22,33],[-27,39],[-5,6],[-8,18],[-2,5],[-1,5],[-11,41],[-4,15],[-1,26],[-1,32],[-9,70],[-21,56],[0,1],[-5,5],[-33,42],[-20,11],[-37,-3],[-10,-8],[-12,-12],[0,-1],[-53,-96],[-6,-6],[-31,-32],[-56,-57],[-1,0],[-26,-14],[-55,-85],[1,-8],[-12,-20],[-25,-30],[-23,-27],[-26,-18],[-5,1],[-32,3],[-8,1],[-4,6],[-6,7],[-7,9],[-1,10],[-3,38],[0,10],[4,14],[0,2],[0,21],[-1,29],[0,8],[-3,23],[-14,43],[-1,5],[-4,13],[-9,14],[-1,0],[-8,7],[-15,12],[-48,8],[-36,6],[-27,13],[-30,14],[-12,-4],[-27,6],[-10,11],[-3,3],[-15,3],[-18,-1],[-18,-1],[-5,0],[-10,-17],[1,-4],[1,-22],[5,-73],[1,-9],[-3,-16],[-3,-13],[0,-2],[-3,-7],[-17,-35],[-4,-6],[-8,-10],[-9,-11],[-40,-45],[-1,0],[-19,-2],[-7,0],[-18,22],[-1,3],[-3,9],[-1,3],[0,6],[-1,33],[-20,34],[-28,17],[-11,2],[-18,4],[-1,0],[-11,-2],[-20,-4],[-4,-6],[-10,-18],[-10,-16],[-16,-95],[-1,-4],[-4,-4],[-7,-9],[-10,-11],[-12,-3],[-17,-3],[-18,10],[-8,16],[-7,14],[-2,11],[-14,97],[-11,46],[-15,38],[-35,56],[-31,49],[-6,10],[-25,30],[-51,47],[-12,-1],[-6,-11],[-6,-9],[-4,-24],[1,-23],[3,-17],[8,-37],[1,-38],[-2,-9],[-2,-11],[-7,-35],[-1,-2],[-7,-9],[-17,-24],[-11,-14],[-16,-13],[-5,0],[-22,-2],[-31,17],[-7,4],[-23,33],[-5,15],[0,13],[-1,16],[0,10],[11,59],[14,34],[7,14],[15,75],[2,19],[1,12],[1,4],[0,4],[-2,53],[0,5],[-3,12],[0,1],[-1,4],[-3,5],[-13,18],[-1,1],[-2,2],[-10,7],[-8,6],[-22,10],[-32,-2],[-14,-9],[-15,-20],[-6,-16],[-26,-64],[-4,-8],[-5,-7],[-14,-26],[-39,-33],[-9,-9],[-62,-78],[-10,-13],[-13,-17],[-6,1],[-10,15],[-2,4],[-2,20],[-3,42],[-8,30],[-2,8],[-25,38],[-6,10],[-15,15],[-18,9],[-13,6],[-9,5],[-7,0],[-7,-1],[-28,-1],[-18,-9],[-11,-5],[-9,-10],[-3,-3],[-1,-1],[-8,-14],[-3,-5],[1,-27],[10,-41],[10,-39],[4,-62],[-2,-10],[-11,-68],[-1,-2],[-23,-32],[-4,-7],[-11,-7],[-9,-6],[-12,-1],[-7,0],[-26,13],[-14,7],[-18,-1],[-14,-1],[-15,-1],[-6,-4],[-9,-6],[-35,-21],[-42,-10],[-2,0],[-1,0],[-19,10],[-30,10],[-25,3],[-9,2],[-12,-1],[-64,-8],[-23,-11],[-4,-3],[-9,-16],[-11,-43],[-43,-113],[-1,-3],[-4,0],[-35,-6],[-15,10],[-35,55],[-37,57],[-5,7],[-65,67],[-11,11],[-30,32],[-30,21],[-4,0],[-13,-1],[-7,-1],[-12,-20],[-13,-55],[1,-46],[1,-28],[-6,-43],[-7,-20],[-4,-7],[-12,-21],[-1,0],[-11,-11],[-3,-2],[-18,-1],[-16,-1],[-5,-1],[-3,2],[-7,5],[0,1],[-28,40],[-10,14],[-18,27],[-5,26],[-6,34],[-1,9],[-2,65],[-1,24],[-3,10],[-3,11],[-12,36],[-8,13],[-41,69],[-36,60],[-2,2],[-17,26],[-17,24],[-9,8],[-10,10],[-4,4],[-89,25],[-8,-1],[-16,-1],[-20,-1],[-12,-9],[-9,-16],[-1,-12],[0,-15],[-1,-8],[2,-5],[8,-26],[4,-11],[3,-5],[26,-33],[33,-42],[1,-1],[6,-19],[-1,-9],[0,-42],[-6,-12],[-4,-8],[-3,0],[-9,-1],[-2,0],[-7,4],[-1,0],[-45,24],[-7,7],[-8,7],[-35,60],[-8,15],[-11,18],[-43,64],[-18,18],[-50,39],[-14,7],[-32,15],[-46,23],[-11,6],[-14,7],[-1,0],[-33,-14],[-30,2],[-54,23],[-3,1],[-49,15],[-14,-2],[-121,-11],[-3,-1],[-24,-9],[-1,-2],[-51,-56],[-23,-48],[0,-8],[-10,-46],[-21,-96],[-22,-60],[1,-54],[-9,-34],[-24,-89],[-2,-3],[-24,-49],[-13,-58],[-1,-3],[-42,-24],[0,-1],[-2,5],[-15,60],[-21,45],[-37,63],[-12,19],[-17,15],[-13,18],[-26,50],[-2,5],[-1,1],[-7,26],[-16,56],[-1,6],[0,1],[-11,212],[0,8],[1,108],[12,36],[-2,50],[0,24],[-17,65],[-15,22],[-3,-1],[-1,0],[-30,-5],[-23,-17],[-10,-3]],[[50212,35597],[-18,-17],[-5,-11],[-40,-44],[-59,-65],[-63,-68],[-25,-32],[-53,-67],[-7,-4],[-2,-2],[-5,-3],[-3,0],[-19,2],[-3,0],[-3,5],[-21,30],[-4,6],[-11,38],[-3,36],[-1,10],[-10,27],[-1,1],[-2,3],[-15,22],[-17,2],[-24,-1],[-4,-1],[-29,-2],[-22,-9],[-40,-38],[-12,-24],[-10,-55],[-3,-16],[-18,-61],[-11,-34],[-28,-56],[-30,-41],[-32,-23],[-4,-3],[-49,-8],[-28,18],[-6,10],[-43,68],[-74,208],[-8,27],[-22,72],[-9,131],[-11,64],[-12,67],[-3,9],[-6,22],[-5,14],[-15,26],[-8,15],[-3,4],[-27,18],[-7,-2],[-7,-1],[-16,-3],[-8,-10],[-14,-16],[-10,-11],[-34,-38],[-73,-65],[-28,-24],[-10,-7],[-35,-23],[-28,-11],[-3,-1],[-18,-7],[-23,0],[-8,0],[-32,7],[-18,3],[-52,31]],[[48802,35689],[-1,203],[-4,419],[1,327],[0,96],[0,37],[0,75],[0,38],[0,74],[0,172],[0,43],[0,273],[-1,154],[0,68],[0,286],[0,47],[0,202],[0,353],[0,56],[-1,165],[0,105],[1,556],[-265,0],[-87,0],[0,114],[0,278],[0,32],[0,350],[-4,34],[0,35],[-1,537],[-1,338],[0,49],[0,81],[0,1],[-1,133],[0,4],[1,31],[0,31],[-1,29],[-1,105],[-1,45],[0,156],[0,118],[0,206],[0,312],[0,234],[0,17],[0,641],[0,140],[0,88],[0,135],[0,141],[0,78],[1,332],[0,207],[0,74],[0,229],[0,223],[-1,183],[0,25],[0,4],[0,233],[0,308],[0,467],[0,140],[-1,165],[0,442],[0,259],[0,5],[0,46],[0,162],[-3,428],[0,247],[0,208],[-2,402]],[[58809,49405],[13,-21],[318,-590],[137,-367],[2,-241],[-176,-646],[-15,-80],[-75,-441],[-8,-59],[-5,-59],[-6,-59],[-3,-59],[5,-59],[6,-58],[43,-159],[15,-30],[33,-66],[73,-145],[22,-46],[41,-110],[18,-48],[47,-93],[22,-34],[27,-43],[18,-28],[75,-91],[59,-80],[79,-133],[54,-80],[35,-40],[29,-17],[16,-5],[61,-9],[38,-5],[181,-75],[48,-12],[123,-21],[82,-6],[79,-4],[52,-6],[49,-13],[50,-16],[17,-7],[1,-1],[24,-10],[37,-13],[16,-4],[15,-5],[26,-9],[28,-16],[55,-38],[71,-60],[83,-88],[52,-80],[12,-18],[40,-74],[39,-55],[22,-36],[67,-111],[5,-6],[59,-74],[11,-13],[57,-66],[62,-61],[32,-37],[23,-27],[64,-82],[16,-27],[24,-42],[19,-32],[10,-23],[52,-90],[14,-20],[28,-42],[16,-28],[17,-37],[62,-66],[2,-2],[83,-134],[42,-138],[33,-129],[7,-35],[8,-40],[11,-57],[2,-161],[0,-165],[-2,-28],[1,-40],[2,-80],[-11,-179],[-13,-45],[-17,-62],[2,-86],[-17,-164],[-41,-186],[-34,-166]],[[75140,49526],[-1,-346],[0,-130],[0,-79],[0,-102],[0,-51],[0,-56],[0,-284],[0,-130],[0,-7],[0,-37],[0,-8],[0,-19],[0,-247],[0,-109],[-1,-25],[0,-29],[0,-127],[0,-42],[2,-196],[0,-42],[2,-377],[0,-417],[0,-421],[1,-209],[0,-141],[0,-72],[0,-109],[0,-58],[0,-5],[0,-156],[0,-41],[0,-46],[-1,-311],[0,-48],[0,-61],[2,-166],[-1,-74],[1,-103],[0,-79],[0,-306],[0,-32],[0,-44],[0,-32],[0,-182],[1,-117],[0,-66],[0,-52],[0,-419],[0,-144],[0,-100],[0,-179],[0,-42],[0,-97],[1,-47],[0,-52],[2,-103],[-1,-34],[0,-60],[2,-92],[-1,-47],[1,-57],[-3,-208]],[[75146,42054],[-171,-1],[-92,0],[-66,-1],[-198,-3],[-46,-1],[-51,-2],[-166,-1],[-16,-1],[-18,0],[-30,-1],[-20,0],[-18,0],[-15,0],[-16,-1],[-23,1],[-21,-1],[-28,0],[-14,-1],[-19,-1],[-18,0],[-271,-4],[-20,0],[-46,-1],[-21,0],[-14,-1],[-15,0],[-22,0],[-32,0],[-24,-1],[-19,0],[-20,0],[-13,0],[-13,0],[-61,-1],[-54,3],[-14,2],[-16,1],[-47,-1],[-7,0],[-73,-5],[-16,0],[-14,0],[-14,0],[-31,0],[-16,0],[-20,0],[-19,0],[-19,-1],[-18,0],[-19,0],[-22,0],[-14,0],[-14,0],[-13,0],[-18,0],[-14,-1],[-24,0],[-19,0],[-14,0],[-18,0],[-15,0],[-17,-2],[-14,-1],[-21,1],[-14,1],[-19,0],[-21,-1],[-18,0],[-82,0],[-51,-1],[-38,0],[-90,-1],[-28,1],[-19,0],[-16,-1],[-15,0],[-29,0],[-24,0],[-14,0],[-19,0],[-7,0],[-32,0],[-19,0],[-21,0],[-30,-1],[-41,0],[-28,-1],[-19,0],[-20,-1],[-21,-1],[-21,-1],[-107,-5],[-209,-2],[-27,0],[-19,0],[-142,1],[-41,1],[-21,-1],[-17,0],[-18,0],[-13,1],[-112,-3],[-1,0],[-100,-2],[-55,0],[-130,-2],[-17,0],[-19,-1],[-15,0],[-25,0],[-25,0],[-28,0],[-47,-1],[-84,0],[-31,-1],[-95,-2],[-14,-1],[-70,-1],[-169,-2],[-264,-4],[-116,-2],[-147,-3],[-78,0],[-64,-2],[-119,-5],[-30,-5],[-230,-1],[-20,0],[-242,0],[-128,-2],[-46,0],[-18,-1],[-70,9]],[[68896,41984],[-257,-2],[-128,-1],[-18,0],[-114,-1],[-75,1],[-90,0],[-27,0],[-13,0],[-58,-1],[-21,0],[-16,0],[-14,0],[-17,0],[-16,0],[-3,0],[-13,1],[-15,0],[-13,-1],[-15,0],[-18,0],[-18,0],[-16,0],[-15,0],[-15,1],[-20,-1],[-15,1],[-71,2],[-36,0],[-42,0],[-117,-1],[-258,0]],[[67332,41982],[-3,415],[1,77],[0,127],[0,34],[0,73],[0,49],[0,226],[0,142],[0,63],[0,36],[1,270],[0,150],[5,207],[0,2],[-1,354],[0,30],[1,138],[1,56],[0,40],[2,132],[1,75],[-1,29],[-3,185],[1,31],[0,42],[0,49],[0,68],[1,44],[1,179],[0,50],[0,208],[0,137],[0,4],[1,274],[0,162],[1,255],[0,40],[-1,124],[-1,351],[0,69],[1,480],[1,334],[0,5],[2,194],[-1,139],[-1,103],[1,427],[0,107],[1,57],[0,36],[0,95],[0,113],[0,62],[1,311],[0,5],[1,79]],[[99802,49528],[-5,-3441],[-3,-2031],[0,-203],[0,-1],[0,-803],[1,-3535]],[[99795,39514],[-14,-3],[-4,-2],[-16,0],[-20,-1],[-20,-2],[-18,-1],[-19,-1],[-16,0],[-18,-1],[-19,-1],[-15,-1],[-20,-1],[-21,-1],[-14,-2],[-19,-2],[-18,-2],[-17,-2],[-14,-2],[-16,-2],[-17,-2],[-17,0],[-17,0],[-15,0],[-20,0],[-18,0],[-17,-1],[-19,-2],[-14,-1],[-18,-4],[-9,0],[-7,0],[-17,-1],[-13,-2],[-14,-2],[-14,-1],[-17,-2],[-19,-2],[-16,-2],[-17,-2],[-20,-2],[-14,-2],[-18,-2],[-16,-1],[-14,0],[-13,-1],[-18,0],[-16,0],[-11,0],[-8,0],[-14,0],[-14,0],[-19,0],[-16,-1],[-20,0],[-14,0],[-16,0],[-18,0],[-17,0],[-18,0],[-13,0],[-14,0],[-16,0],[-15,0],[-20,0],[-16,-1],[-16,0],[-18,0],[-14,-1],[-14,0],[-14,1],[-15,1],[-15,0],[-17,1],[-16,0],[-14,1],[-18,0],[-14,1],[-14,1],[-15,0],[-21,1],[-22,1],[-16,1],[-16,1],[-14,0],[-16,1],[-14,0],[-14,1],[-18,0],[-13,1],[-16,1],[-21,0],[-21,1],[-15,0],[-14,1],[-16,0],[-15,0],[-16,0],[-14,0],[-21,0],[-19,0],[-14,0],[-17,-1],[-19,1],[-21,0],[-20,0],[-19,0],[-20,0],[-14,0],[-18,0],[-10,0],[-6,0],[-17,0],[-14,-1],[-20,0],[-13,0],[-20,0],[-14,0],[-15,0],[-18,0],[-19,0],[-20,0],[-16,-1],[-15,0],[-16,0],[-14,0],[-18,0],[-17,0],[-19,0],[-17,0],[-17,0],[-15,0],[-19,0],[-15,0],[-16,0],[-20,-1],[-18,0],[-21,0],[-15,0],[-15,0],[-16,0],[-19,-1],[-18,0],[-19,0],[-14,0],[-16,0],[-13,0],[-19,-1],[-16,0],[-17,0],[-17,2],[-18,1],[-13,2],[-19,1],[-16,1],[-15,1],[-16,1],[-15,1],[-16,1],[-16,1],[-19,0],[-16,1],[-13,1],[-13,0],[-13,1],[-8,0],[-17,1],[-14,0],[-19,0],[-13,-1],[-20,0],[-14,0],[-16,0],[-14,-1],[-19,0],[-19,0],[-15,0],[-20,-1],[-19,0],[-14,0],[-17,0],[-18,0],[-20,0],[-13,0],[-16,0],[-15,0],[-19,-1],[-16,0],[-19,0],[-14,0],[-14,0],[-15,-1],[-14,0],[-13,0],[-18,0],[-15,1],[-19,-1],[-14,0],[-19,0],[-13,0],[-14,0],[-19,1],[-20,0],[-18,-2],[-16,-1],[-13,0],[-13,7],[-16,-6],[-19,1],[-20,0],[-14,0],[-16,0],[-14,0],[-19,0],[-16,0],[-14,0],[-14,0],[-20,0],[-13,0],[-19,-1],[-14,0],[-19,0],[-20,0],[-13,0],[-19,0],[-18,0],[-19,0],[-15,0],[-17,0],[-20,0],[-20,0],[-18,1],[-17,0],[-18,0],[-19,0],[-14,0],[-19,1],[-16,0],[-14,0],[-19,0],[-14,0],[-19,0],[-19,0],[-20,0],[-15,0],[-14,-1],[-14,0],[-18,0],[-19,0],[-19,0],[-19,0],[-20,0],[-18,0],[-13,0],[-19,0],[-8,0],[-5,0],[-15,0],[-19,0],[-14,0],[-13,0],[-14,0],[-14,0],[-22,0],[-17,0],[-18,0],[-13,0],[-16,0],[-19,0],[-14,1],[-14,0],[-17,0],[-19,0],[-20,0],[-16,0],[-13,0],[-15,0],[-22,0],[-21,0],[-15,0],[-14,0],[-20,0],[-17,-1],[-14,0],[-17,1],[-17,0],[-16,0],[-17,0],[-13,0],[-14,0],[-19,-1],[-17,1],[-18,-1],[-15,0],[-20,0],[-15,0],[-14,0],[-13,0],[-14,0],[-14,0],[-14,0],[-14,0],[-14,0],[-16,0],[-20,0],[-16,0],[-17,0],[-15,0],[-17,0],[-15,0],[-11,0],[-6,0],[-13,0],[-16,0],[-16,0],[-14,0],[-18,0],[-19,0],[-19,0],[-17,0],[-17,0],[-19,1],[-21,-1],[-14,0],[-14,1],[-16,0],[-15,0],[-18,0],[-16,0],[-20,0],[-16,0],[-18,0],[-19,0],[-17,0],[-15,0],[-18,0],[-15,0],[-14,0],[-14,0],[-19,1],[-18,0],[-13,0],[-14,1],[-17,0],[-17,1],[-14,1],[-21,1],[-14,0],[-18,1],[-15,0],[-15,1],[-14,0],[-14,-4]],[[94081,39478],[1,420],[0,326],[0,29],[-2,234],[0,29],[0,31],[0,31],[0,35],[0,42],[0,47],[0,30],[-1,51],[0,32],[0,33],[0,35],[0,30],[0,32],[0,33],[0,63],[0,30],[0,50],[0,115],[0,41],[0,35],[0,31],[0,86],[0,29],[0,37],[0,38],[0,34],[-1,52],[1,63],[0,40],[0,30],[0,135],[0,38],[0,35],[0,37],[0,35],[0,39],[-1,30],[0,35],[0,29],[0,36],[0,32],[0,30],[0,32],[0,39],[0,30],[0,42],[0,39],[0,40],[0,33],[0,36],[0,32],[0,44],[0,31],[0,63],[0,33],[0,34],[0,37],[0,43],[0,35],[0,31],[0,33],[1,37],[0,66],[0,34],[0,40],[1,55],[0,36],[0,6],[0,26],[0,31],[0,30],[0,42],[0,38],[0,35],[0,45],[0,38],[0,36],[0,32],[0,31],[0,30],[0,6],[0,33],[0,35],[0,48],[0,37],[0,36],[0,2],[-1,37],[0,30],[0,42],[1,40],[0,31],[0,49],[0,39],[0,38],[0,34],[0,29],[0,34],[0,32],[0,31],[0,35],[1,39],[0,31],[0,36],[0,39],[0,31],[0,63],[0,30],[0,31],[0,35],[0,39],[0,29],[0,36],[0,31],[0,32],[0,37],[0,44],[0,33],[0,34],[0,34],[0,32],[0,32],[0,33],[0,33],[0,51],[0,33],[0,35],[0,36],[0,37],[0,36],[0,61],[0,37],[-1,35],[0,37],[0,32],[0,58],[0,65],[0,35],[0,33],[0,41],[0,40],[0,38],[0,35],[0,45],[0,31],[0,52],[0,30],[0,57],[0,35],[0,42],[0,35],[0,41],[0,32],[0,42],[0,32],[0,34],[0,34],[0,38],[0,32],[0,39],[0,58],[0,33],[0,33],[0,37],[0,32],[1,34],[0,36],[0,76],[0,42],[0,39],[0,31],[-1,74],[0,50],[0,77],[0,35],[1,36],[0,38],[0,31],[0,41],[0,39],[0,30],[0,38],[0,31],[0,39],[0,34],[0,41],[0,32],[0,38],[0,38],[1,32],[-1,38],[0,39],[-3,97],[-1,16],[0,106],[-1,70],[0,77],[0,3],[-1,112],[0,1],[0,39],[0,38],[0,31],[1,30],[0,30],[0,31],[1,29],[0,34],[-1,34],[1,46],[-1,37],[0,41],[0,34],[-1,33],[0,30],[0,31],[-1,41],[0,39],[0,67],[0,44],[0,34],[0,32],[0,35],[0,36],[0,34],[0,33],[0,45],[0,35],[0,35],[0,60]],[[67332,41982],[-267,-4],[-147,-2],[-28,0],[-59,-1],[-26,-1],[-17,0],[-32,-1],[-216,3],[-4,0],[-191,-5],[-49,2],[-21,-1],[-51,0],[-185,-2],[-26,0],[-57,-1],[-89,-1],[-72,-1],[-58,-1],[-124,5],[-34,-1],[-99,-4],[-215,-7],[-50,-3],[-57,0],[-206,-6],[-28,0],[-233,-5],[-15,0],[-2,-1],[-14,0],[-15,0],[-17,0],[-17,-1],[-16,0],[-16,0],[-20,0],[-21,0],[-1,0],[-24,-1],[-6,0],[-18,0],[-18,0],[-38,-1],[-44,-1],[-47,-2],[-78,-2],[-80,-3],[-38,-1],[-29,-1],[-16,0],[-115,-4],[-44,-1],[-23,-1],[-273,2],[-12,0],[-18,0],[-479,3],[-28,0],[-21,-7],[-38,1],[-50,1],[-27,1],[-36,0],[-29,1],[-48,1],[-25,0],[-42,1],[-90,2],[-38,1],[-44,1],[-84,1],[-46,0],[-8,0],[-76,0],[-54,0],[-41,0],[-220,-1],[-320,9],[-52,-4],[-8,10],[-7,8]],[[81472,49487],[-1,-143],[0,-7],[-2,-185],[-2,-428],[-1,-162],[0,-52],[0,-54],[-1,-150],[-1,-72],[0,-66],[0,-40],[0,-42],[0,-44],[1,-34],[0,-78],[-1,-98],[-1,-133],[-1,-135],[-1,-84],[-8,-75],[0,-12],[0,-21],[0,-45],[0,-45],[1,-150],[0,-80],[2,-149],[1,-141],[-1,-129],[-1,-169],[0,-35],[0,-160],[0,-11],[0,-27],[0,-39],[-1,-116],[0,-80],[0,-37],[-1,-161],[0,-68],[0,-243],[0,-109],[0,-34],[0,-48],[0,-63],[0,-65],[0,-60],[0,-72],[0,-57],[1,-72],[0,-39],[1,-40],[0,-40],[0,-78],[-1,-44],[0,-37],[0,-1],[0,-52],[0,-36],[0,-55],[0,-58],[0,-230],[0,-62],[0,-27],[0,-16],[0,-161],[0,-78],[0,-150],[0,-29],[0,-205],[0,-107],[0,-33],[0,-45],[0,-31],[0,-157],[0,-30],[0,-200],[0,-81],[-1,-60],[0,-46],[1,-33],[0,-52],[-1,-40],[1,-43],[-1,-44],[2,-55],[1,-102],[-3,-79],[0,-38],[0,-101],[0,-30],[0,-33],[-1,-420],[0,-42],[0,-65],[0,-63],[-1,-71],[0,-69],[0,-61],[0,-47],[0,-33],[0,-72],[-1,-60],[1,-66],[-1,-60],[1,-43],[0,-31],[0,-55],[0,-72],[1,-201],[0,-143],[-4,-39],[-1,-31],[0,-30],[0,-9],[1,-25],[3,-75],[0,-168],[0,-34],[0,-34],[0,-34],[-1,-55],[0,-45],[1,-59],[0,-58],[0,-138]],[[81451,39521],[-141,4],[-36,1],[-2,0],[-35,1],[-48,2],[-35,1],[-74,2],[-20,1],[-89,2],[-46,1],[-22,1],[-99,3],[-84,2],[-41,0],[-17,0],[-28,-1],[-121,-1],[-42,0],[-24,0],[-48,1],[-48,0],[-20,0],[-44,1],[-25,0],[-80,0],[-46,0],[-39,1],[-45,0],[-74,1],[-16,0],[-37,1]],[[79925,39545],[-22,-1],[-24,0],[-61,-1],[-34,1],[-57,2],[-43,-2],[-82,1],[-18,0],[-92,0],[-21,4],[-13,2],[-51,-2],[-57,1],[-218,2],[-37,0],[-11,0],[-53,0],[-78,1],[-46,0],[-23,0],[-60,1],[-200,2],[-14,-1],[-50,0],[-163,0],[-33,0],[-64,0],[-81,1],[-137,1],[-47,0],[-24,0],[-146,-1],[-5,0],[-22,0],[-17,-7],[-30,7],[-20,0],[-188,-1],[-42,0],[-30,0],[-38,0],[-38,0],[-98,0],[-25,0],[-15,0],[-13,0],[-36,0],[-42,0],[-15,0],[-67,0],[-24,1],[-24,0],[-18,0],[-17,0],[-40,1],[-16,0],[-127,2],[-39,0],[-24,1],[-25,0],[-49,0],[-184,1],[-14,0],[-65,1],[-197,3],[-64,0],[-201,0],[-33,2],[-27,0],[-67,0],[-138,-1],[-14,0],[-44,-1],[-199,-3],[-36,-1],[-29,-1],[-180,-5]],[[75229,39555],[-56,-1],[-26,-1],[0,198],[-1,220],[0,79],[0,57],[0,284],[-1,126],[1,293],[0,229],[0,188],[0,219],[0,196],[1,84],[0,114],[-1,44],[0,43],[0,127]],[[94081,39478],[-20,0],[-15,0],[-19,-1],[-15,0],[-16,0],[-16,0],[-17,1],[-15,0],[-15,0],[-17,0],[-14,-1],[-17,0],[-16,0],[-19,0],[-15,0],[-15,0],[-25,0],[-17,0],[-14,0],[-18,0],[-15,0],[-18,0],[-22,0],[-20,1],[-18,0],[-17,0],[-17,0],[-16,0],[-14,0],[-17,0],[-18,-1],[-20,-1],[-5,1],[-9,0],[-17,0],[-17,-1],[-55,0],[-16,0],[-14,2],[-15,1],[-15,-2],[-14,-1],[-15,0],[-15,0],[-14,0],[-14,1],[-15,0],[-15,0],[-17,0],[-16,0],[-37,0],[-14,0],[-15,0],[-14,0],[-14,0],[-18,0],[-19,0],[-15,0],[-19,0],[-14,0],[-14,-1],[-23,1],[-22,-1],[-15,0],[-15,0],[-13,0],[-14,0],[-27,1],[-17,-1],[-15,0],[-33,2],[-18,-1],[-59,-2],[-18,0],[-21,0],[-16,0],[-16,-1],[-15,0],[-17,1],[-17,0],[-14,-1],[-14,0],[-14,0],[-26,0],[-19,0],[-18,0],[-16,0],[-15,-1],[-20,0],[-28,0],[-15,0],[-13,0],[-14,0],[-33,0],[-17,0],[-18,0],[-16,0],[-19,0],[-17,0],[-17,0],[-15,0],[-20,0],[-27,0],[-18,0],[-21,0],[-14,0],[-14,0],[-15,0],[-17,0],[-19,-1],[-13,0],[-16,0],[-18,0],[-16,0],[-16,0],[-13,0],[-17,-1],[-18,0],[-21,0],[-16,0],[-25,0],[-14,0],[-26,0],[-14,0],[-14,0],[-16,0],[-15,0],[-17,0],[-13,0],[-16,-1],[-14,1],[-16,0],[-14,-1],[-24,0],[-1,0],[-16,0],[-18,0],[-15,0],[-16,0],[-17,0],[-17,0],[-14,0],[-15,-1],[-17,0],[-36,1],[-17,-1],[-18,0],[-21,0],[-19,0],[-17,0],[-14,0],[-17,0],[-18,-1],[-75,1],[-14,0],[-17,0],[-18,-1],[-15,0],[-28,0],[-18,0],[-18,0],[-17,0],[-16,0],[-14,-1],[-15,0],[-17,0],[-15,0],[-17,0],[-15,0],[-19,0],[-13,0],[-14,0],[-18,0],[-15,0],[-29,-1],[-21,0]],[[90926,39466],[-16,0],[-15,0],[-20,1],[-14,0],[-19,0],[-18,0],[-15,0],[-15,0],[-22,0],[-18,1],[-20,0],[-17,0],[-14,0],[-15,0],[-15,0],[-18,0],[-17,0],[-15,0],[-16,0],[-14,0],[-18,0],[-16,0],[-22,0],[-15,0],[-16,0],[-16,0],[-14,0],[-13,0],[-18,0],[-14,0],[-15,1],[-15,0],[-17,0],[-21,0],[-16,0],[-15,0],[-16,0],[-14,0],[-16,1],[-14,0],[-14,0],[-17,0],[-14,0],[-17,0],[-17,1],[-13,0],[-17,0],[-15,0],[-15,0],[-17,0],[-15,1],[-21,0],[-15,0],[-21,0],[-14,0],[-26,1],[-15,-1],[-52,0],[-22,1],[-23,0],[-20,0],[-18,0],[-13,0],[-16,0],[-14,0],[-26,0],[-21,0],[-30,0],[-17,0],[-14,1],[-14,0],[-15,0],[-14,0],[-18,0],[-15,0],[-17,1],[-19,0],[-14,0],[-13,0],[-17,0],[-17,0],[-13,0],[-2,0],[-15,0],[-16,1],[-17,0],[-15,0],[-18,0],[-14,0],[-17,0],[-15,0],[-17,0],[-16,0],[-14,0],[-15,1],[-17,0],[-14,0],[-17,0],[-15,0],[-17,0],[-15,0],[-14,1],[-19,0],[-16,0],[-18,0],[-14,0],[-15,0],[-17,0],[-15,0],[-14,0],[-15,0],[-14,0],[-13,0],[-17,0],[-18,0],[-18,0],[-20,1],[-14,0],[-14,0],[-18,0],[-14,0],[-14,0],[-17,0],[-13,0],[-16,0],[-13,0],[-19,0],[-24,0],[-20,1],[-20,0],[-19,0],[-26,0],[-15,0],[-22,0],[-46,0],[-25,1],[-44,0],[-31,0],[-15,0],[-19,0],[-26,0],[-26,0],[-45,0],[-36,0],[-19,1],[-33,0],[-15,0],[-16,0],[-18,0],[-16,0],[-16,0],[-15,0],[-14,0],[-14,0],[-14,0],[-15,0],[-15,0],[-18,0],[-16,0],[-15,0],[-14,0],[-14,0],[-18,0],[-14,0],[-16,0],[-21,0],[-18,0],[-13,0],[-18,0],[-15,0],[-16,0],[-16,0],[-14,0],[-15,0],[-16,0],[-15,0],[-16,0],[-16,0],[-15,0],[-22,4]],[[87772,39486],[0,42],[0,34],[0,39],[0,37],[0,32],[-1,37],[0,31],[0,31],[0,33],[0,32],[0,34],[0,32],[0,44],[0,38],[-1,36],[0,33],[0,36],[0,36],[0,52],[0,41],[0,35],[0,30],[0,38],[0,34],[0,31],[0,37],[0,38],[0,39],[0,32],[0,33],[-1,31],[0,40],[0,30],[0,36],[0,37],[0,42],[0,29],[0,32],[0,26],[0,8],[0,38],[0,37],[0,34],[0,37],[0,36],[0,35],[0,34],[0,30],[0,39],[0,30],[0,31],[0,34],[0,31],[0,30],[0,36],[0,31],[0,37],[-1,43],[1,33],[0,34],[-1,41],[0,34],[0,37],[0,30],[0,30],[0,36],[0,33],[0,29],[0,36],[0,30],[-1,36],[0,31],[0,37],[0,40],[0,31],[0,36],[0,36],[-1,40],[0,38],[0,36],[0,32],[0,36],[0,35],[0,46],[0,44],[0,42],[-1,34],[0,43],[0,30],[0,46],[0,29],[0,30],[0,38],[-1,31],[0,37],[0,43],[0,33],[0,39],[0,37],[-1,41],[0,31],[0,31],[0,37],[0,30],[0,32],[0,29],[-1,80],[0,37],[0,31],[0,30],[1,34],[-1,32],[1,50],[0,31],[0,32],[0,36],[0,40],[0,37],[1,42],[0,32],[0,37],[0,42],[0,32],[0,1],[0,34],[0,34],[0,36],[0,37],[0,31],[0,30],[0,30],[1,428],[0,34],[-1,125],[0,57],[0,393],[0,42],[0,110],[0,66],[-1,229],[0,70],[0,121],[0,80],[0,49],[0,251],[0,38],[-1,43],[0,13],[0,33],[0,7],[-1,325],[0,32],[-1,36],[0,40],[0,39],[1,40],[0,71],[0,43],[0,36],[0,32],[-1,39],[0,32],[0,34],[0,34],[0,36],[0,33],[0,30],[1,31],[0,31],[0,29],[0,30],[0,35],[0,30],[0,32],[0,37],[0,36],[0,35],[0,39],[0,35],[0,41],[0,44],[0,34],[1,32],[0,39],[0,32],[0,36],[0,35],[0,32],[0,37],[0,32],[0,32],[0,30],[0,31],[0,31],[0,38],[0,30],[0,33],[0,35],[1,39],[-1,67],[0,36],[1,35],[-1,38],[0,40],[0,35],[0,34],[0,37],[0,30],[1,46],[-1,31],[0,39],[1,35],[0,31],[0,31],[0,36],[0,41],[0,30],[-1,32],[0,33],[0,41],[0,32],[0,31],[0,35],[0,31],[0,36],[0,40],[1,38],[0,42],[0,42],[0,33],[1,40]],[[87772,39486],[-82,-3],[-13,0],[-143,1],[-22,0],[-1,0],[-42,0],[-40,0],[-47,0],[-94,0],[-39,0],[-38,0],[-13,0],[-33,0],[-25,0],[-27,1],[-18,0],[-2,0],[-103,0],[-100,2],[-25,0],[-106,-2],[-32,-1],[-28,1],[-17,0],[-17,0],[-13,0],[-18,0],[-51,0],[-15,0],[-41,0],[-70,1],[-30,0],[-18,0],[-30,0],[-28,-1],[-13,1],[-21,0],[-39,1],[-15,-1],[-19,1],[-30,0],[-21,0],[-20,1],[-35,0],[-17,0],[-21,0],[-15,1],[-22,-1],[-31,0],[-13,0],[-15,1],[-19,0],[-22,0],[-14,0],[-17,-1],[-28,1],[-77,0],[-25,0],[-54,0],[-61,1],[-27,0],[-18,0],[-14,0],[-32,-1],[-13,0],[-38,1],[-21,0],[-34,0],[-55,1],[-18,0],[-18,1],[-14,0],[-26,0],[-51,0],[-29,0],[-23,0],[-103,0],[-17,0],[-36,1],[-51,0],[-141,3],[-25,0],[-17,0],[-34,0],[-28,1],[-35,0],[-53,0],[-11,0],[-71,1]],[[84634,39498],[-28,0],[-22,0],[-39,1],[-149,3],[-24,0],[-17,-1],[-73,0],[-25,0],[-26,1],[-22,0],[-19,0],[-22,0],[-19,0],[-30,1],[-35,0],[-28,0],[-19,0],[-21,1],[-49,0],[-13,0],[-16,0],[-21,1],[-29,3],[-47,0],[-8,-1],[-6,-1],[-44,0],[-110,1],[-36,0],[-19,0],[-26,1],[-19,0],[-25,0],[-33,0],[-42,1],[-135,1],[-18,0],[-25,0],[-29,0],[-105,1],[-36,1],[-57,1],[-38,0],[-46,0],[-19,1],[-19,0],[-15,0],[-68,1],[-56,0],[-27,1],[-56,1],[-85,2],[-49,2],[-20,-1],[-15,6],[-8,3],[-19,-10],[-23,0],[-225,2],[-17,0],[-22,-1],[-31,0],[-107,-3],[-60,-1],[-25,-1],[-40,0],[-14,-1],[-25,1],[-41,-1],[-42,0],[-30,0],[-19,0],[-39,0],[-27,-1],[-19,0],[-23,1],[-16,-1],[-24,-14],[-15,-7],[-16,7],[-13,16],[-24,1],[-30,1],[-42,2],[-17,0],[-25,1],[-26,1]],[[48802,35689],[-32,23],[-22,-2],[-17,24],[-15,62],[-2,52],[-2,44],[-22,91],[-28,43],[-1,2],[-22,18],[-15,6],[-1,0],[-51,0],[-30,25],[-44,71],[-55,113],[-2,6],[-63,39],[-14,-18],[-5,-7],[-11,-20],[-5,-12],[-3,-16],[-2,-25],[-2,-9],[-33,-85],[-6,-12],[-8,-12],[-86,-138],[-2,-2],[-20,-20],[-9,-6],[-7,1],[-12,12],[-10,21],[-5,15],[-12,31],[-12,21],[-13,16],[-19,20],[-11,6],[-37,17],[-29,13],[-72,27],[-29,13],[-30,12],[-4,4],[-106,61],[-2,-7],[-2,-8],[0,-1],[1,-10],[2,-3],[14,-29],[23,-38],[16,-31],[8,-22],[4,-11],[3,-17],[3,-23],[1,-15],[1,-121],[-2,-12],[-5,-23],[-7,-16],[-8,-17],[-59,-116],[-5,-7],[-16,0],[-13,2],[-21,12],[-19,15],[-14,56],[-11,28],[-19,39],[-7,11],[-27,29],[-23,8],[-2,7],[-2,7],[-5,17],[-8,12],[-56,74],[-4,5],[-26,38],[-1,2],[-21,36],[-8,11],[-16,16],[-5,1],[-17,-1],[-7,-7],[-8,-14],[-7,-35],[-11,-104],[-1,-27],[-2,-17],[-9,-21],[-6,-9],[-65,-67],[-13,-13],[-26,-9],[-12,-3],[-13,-2],[-21,0],[-158,11],[-18,6],[-9,5],[-1,3],[1,15],[4,2],[1,0],[1,2],[37,49],[49,77],[11,30],[9,56],[0,33],[-7,54],[-3,20],[-3,12],[-15,41],[-20,34],[-8,7],[-12,0],[-9,-4],[-3,-6],[-2,-2],[-6,-11],[-5,-33],[2,-35],[1,-8],[11,-46],[3,-14],[0,-2],[2,-17],[1,-32],[-5,-19],[-2,-6],[-7,-14],[-11,-13],[-13,-6],[-18,-5],[-15,2],[-20,14],[-15,14],[-11,16],[-3,7],[-3,6],[-5,12],[-6,29],[-14,50],[-10,33],[-16,33],[-4,7],[-25,46],[-28,38],[-5,5],[-3,4],[-5,0],[-8,-4],[-3,-3],[-6,-12],[-21,-53],[0,-2],[-12,-45],[-2,-9],[-5,-10],[-10,-19],[-36,-49],[-60,-46],[-15,-10],[-33,-5],[-29,7],[-15,7],[-56,27],[-29,18],[-1,0],[-14,17],[10,33],[13,39],[3,13],[2,10],[0,31],[0,29],[-3,42],[-3,34],[-3,29],[-7,43],[-7,21],[-36,61],[-28,36],[-11,6],[-9,1],[-25,-9],[-13,-11],[-24,-36],[-1,-3],[-24,-51],[-21,-35],[-40,-56],[-12,-14],[-23,-21],[-29,-18],[-11,-1],[-9,6],[-5,3],[-4,2],[-26,5],[-21,-2],[-24,-6],[-44,-11],[-48,-2],[-10,4],[-9,9],[-3,9],[-1,15],[3,8],[29,78],[3,5],[0,1],[8,18],[14,37],[2,7],[12,67],[3,16],[1,7],[1,20],[0,22],[-12,100],[-2,10],[-21,84],[-7,11],[-6,7],[-12,6],[-9,-2],[-6,-7],[-37,-47],[-7,-7],[-26,-20],[-15,-7],[-29,-5],[-65,8],[-8,2],[-30,9],[-8,11],[-1,4],[-13,41],[-25,90],[-9,43],[-7,34],[-1,15],[-1,7],[-12,42],[-7,21],[-8,22],[-10,25],[-26,50],[-61,49],[-49,-14],[0,-4],[-3,-9],[-19,-44],[-12,-16],[-9,-10],[-14,-10],[-41,-20],[-55,-18],[-18,-6],[-24,-11],[-18,-16],[-15,-20],[-12,-24],[-8,-31],[-5,-24],[-6,-28],[-5,-83],[0,-53],[1,-12],[1,-6],[-1,-24],[0,-17],[-2,-41],[-1,-14],[-2,-20],[-5,-19],[-16,-43],[-10,-28],[-7,-9],[-13,-11],[-7,-3],[-57,-26],[-15,-7],[-94,-37],[-38,-15],[-61,-23],[-1,39],[-4,41],[-11,46],[-16,39],[-14,24],[-11,15],[-36,35],[-9,4],[-36,4],[-30,-3],[-26,-7],[-24,-8],[-9,-6],[-25,-21],[-82,-91],[-14,-16],[-7,-8],[-4,-8],[-9,-17],[-8,-13],[-14,-25],[-21,-36],[-1,0],[-6,-14],[-5,-11],[-1,-5],[-8,-37],[-9,-45],[-1,-21],[3,-9],[7,-15],[4,-6],[9,-2],[103,39],[26,2],[21,-2],[6,-5],[11,-18],[11,-24],[3,-7],[4,-12],[1,-5],[10,-36],[1,-14],[-4,-11],[-5,-10],[-5,-6],[-18,-23],[-8,-11],[-20,-8],[-29,-17],[-13,-9],[-11,-15],[-1,-4],[-4,-2],[-68,-48],[-56,-43],[-70,-54],[-11,-10],[-6,-9],[0,-1],[-5,-10],[-2,-8],[-1,-15],[-1,-26],[2,-15],[5,-31],[1,-15],[1,-15],[5,-93],[1,-22],[-2,-7],[-2,-17],[-5,-13],[-10,-18],[-7,-6],[-12,-6],[-21,12],[-17,10],[-28,18],[-18,12],[-32,20],[-54,33],[-13,7],[-62,33],[-8,3],[-10,11],[-5,9],[-2,10],[0,30],[6,30],[4,12],[9,19],[10,14],[11,13],[4,8],[5,19],[0,23],[-5,21],[-4,11],[-11,20],[-2,3],[-4,3],[-7,3],[-7,0],[-4,-4],[-18,-27],[-52,-78],[-6,-13],[-2,-11],[2,-14],[5,-12],[6,-8],[5,-4],[4,-8],[1,-3],[0,-1],[1,-22],[-1,-5],[-5,-16],[-11,-15],[-10,-10],[-14,-1],[-5,5],[-19,30],[-2,3],[-9,23],[-13,18],[-11,7],[-17,3],[-18,3],[-13,1],[-10,-2],[-4,-2],[-3,-1],[-10,-11],[-16,-24],[-3,-6],[-2,-12],[-3,-16],[1,-14],[2,-25],[-1,-4],[-1,-12],[-12,-41],[-21,-74],[-2,-4],[-6,-4],[-10,-2],[-5,2],[-8,8],[-4,12],[-2,11],[0,16],[2,17],[3,18],[2,9],[2,17],[0,23],[-2,16],[-2,6],[-11,45],[-1,2],[-8,31],[-6,24],[-6,9],[-14,17],[-23,12],[-82,45],[-4,1],[-9,-4],[-10,-10],[-8,-12],[-4,-9],[-2,-13],[0,-39],[-2,-9],[-6,-17],[-3,-4],[-1,0],[-12,-1],[-20,28],[-13,12],[-13,8],[-28,-1],[-27,-2],[-31,10],[0,1],[-16,9],[-17,13],[-6,12],[-1,4],[-1,9],[1,14],[2,9],[7,13],[10,19],[20,37],[10,11],[13,12],[37,16],[1,1],[21,14],[11,12],[17,41],[2,10],[6,38],[0,21],[-3,12],[-8,7],[-7,-2],[-3,-2],[-10,-11],[-9,-6],[-4,0],[-5,2],[-7,8],[-9,21],[-2,6],[-3,15],[-1,15],[2,14],[3,9],[7,17],[14,25],[2,3],[8,17],[5,11],[2,14],[0,8],[-5,16],[-8,14],[-13,12],[-8,2],[-11,-1],[-5,-4],[-6,-8],[-4,-11],[-3,-11],[0,-14],[1,-9],[10,-22],[1,-2],[3,-10],[-1,-19],[-4,-19],[-1,-3],[-8,-13],[-12,-11],[-10,-3],[-5,-2],[-9,-1],[-11,4],[-12,11],[-6,13],[-1,6],[0,1],[-2,21],[-6,23],[-6,14],[-3,7],[0,1],[-14,18],[-25,26],[-3,3],[-17,16],[-11,3],[-7,2],[-5,-1],[-7,-6],[-6,-12],[-2,-11],[2,-18],[3,-13],[6,-13],[9,-11],[12,-6],[1,0],[28,2],[7,-4],[18,-21],[9,-14],[4,-11],[2,-10],[0,-31],[-2,-9],[-3,-15],[-6,-9],[-50,-53],[-6,-4],[-12,-1],[-10,8],[-5,10],[-7,14],[-9,20],[-7,11],[-14,9],[-9,1],[-20,-12],[-13,-16],[-7,-11],[-11,-25],[-1,-1],[-2,-4],[-19,-40],[-46,-83],[-17,-25],[-16,-18],[-45,-26],[-1,0],[-5,-1],[-102,37],[-2,2],[-33,35],[-11,16],[-3,9],[1,16],[3,6],[9,12],[8,4],[18,0],[15,-6],[32,-34],[14,1],[105,23],[26,15],[4,8],[1,6],[-1,17],[-3,15],[-3,7],[-6,10],[-6,7],[-16,15],[-16,7],[-19,0],[-22,-12],[-12,-10],[-18,-15],[-10,-6],[-13,-2],[-10,-2],[-3,0],[-3,1],[-5,1],[-5,4],[-5,3],[-9,13],[-6,9],[-35,51],[-14,33],[31,0],[10,5],[9,6],[8,14],[6,13],[8,37],[0,3],[0,29],[-3,25],[-6,42],[-1,3],[-2,9],[-9,25],[-8,14],[-8,0],[-2,-2],[-9,-6],[-9,-22],[-10,-11],[-18,-17],[-11,-6],[-22,-4],[-93,86],[-11,17],[-2,6],[-4,9],[-3,11],[-5,48],[-9,89],[-1,32],[1,21],[2,13],[2,4],[6,8],[9,2],[11,-8],[8,-14],[15,-32],[2,-7],[2,-11],[1,-13],[1,-18],[1,-6],[1,-2],[4,-14],[3,-8],[7,-7],[10,-4],[13,-1],[6,1],[9,8],[8,10],[5,9],[7,19],[2,14],[1,36],[-2,18],[-2,21],[-9,78],[-3,15],[-1,9],[-5,16],[-7,9],[-5,4],[-10,-4],[-7,-7],[-14,-20],[-17,-15],[-6,-2],[-11,1],[-17,16],[-12,23],[-7,17],[-5,22],[-4,25],[-2,14],[-4,44],[0,35],[3,61],[-4,27],[-9,39],[-2,5],[-5,10],[-6,11],[-8,5],[-23,3],[-21,-4],[-35,2],[-32,7],[-24,8],[-26,9],[-20,8],[-12,5],[-22,9],[-25,3],[-34,6],[-9,10],[-4,2],[-19,1],[-36,-10],[-6,-4],[-8,-14],[-2,-13],[0,-17],[2,-4],[8,-23],[6,-20],[2,-19],[1,-5],[1,-15],[-2,-59],[0,-2],[-4,-16],[-2,-7],[-12,-26],[-6,-8],[-7,-5],[-5,-3],[-22,-10],[-3,1],[-17,5],[-8,6],[-5,9],[-2,8],[0,10],[2,14],[4,19],[4,8],[8,9],[9,8],[16,27],[5,10],[4,21],[3,17],[-1,16],[-5,16],[-8,16],[-8,9],[-10,6],[-13,3],[-13,3],[-6,3],[-3,2],[-16,12],[-12,10],[-6,8],[-3,5],[-5,11],[-9,32],[-6,26],[-2,10],[-1,10],[-18,81],[-20,75],[-4,16],[-15,46],[-8,15],[-6,12],[-5,4],[-9,16],[-18,39],[-7,19],[-2,6],[-2,4],[-22,44],[-33,77],[-11,17],[-11,13],[-6,4],[-10,0],[-12,-8],[-7,-12],[-7,-15],[-4,-11],[0,-20],[3,-37],[1,-2],[2,-38],[-3,-22],[-3,-14],[-7,-18],[-9,-14],[-21,-29],[-31,-23],[-13,-8],[-11,-3],[-14,31],[-22,50],[-7,15],[-15,33],[-4,37],[1,13],[5,9],[7,5],[35,2],[13,5],[7,8],[5,16],[3,11],[0,15],[-4,20],[-5,12],[-4,10],[-3,5],[-9,14],[-14,21],[-7,26],[-2,14],[0,22],[9,41],[13,49],[1,21],[-3,31],[-3,10],[-11,32],[-66,48],[-16,2],[-20,0],[-11,-7],[-6,-9],[-3,-11],[0,-22],[2,-12],[7,-41],[11,-45],[3,-24],[0,-20],[-2,-14],[-4,-15],[-5,-20],[-7,-11],[-10,-13],[-12,-12],[-20,-10],[-24,-3],[-10,1],[-48,18],[-98,55],[-6,4],[-3,2],[-4,2],[-2,5],[-4,7],[-2,6],[-1,4],[0,19],[1,11],[3,20],[4,9],[6,9],[7,7],[8,0],[15,-6],[9,-9],[16,-27],[13,-21],[9,-12],[14,-8],[8,-3],[14,2],[9,7],[6,5],[4,10],[3,6],[7,25],[0,6],[0,14],[-1,5],[-4,12],[-42,84],[-1,2],[-10,19],[-7,10],[-11,7],[-10,4],[-20,-3],[-30,-13],[-37,-24],[-10,-7],[-9,-4],[-9,1],[-11,4],[-15,11],[-13,13],[-10,16],[-17,74],[-11,48],[-5,24],[-2,35],[1,13],[5,8],[6,5],[3,2],[9,-1],[11,-6],[11,-16],[2,-4],[5,-15],[7,-22],[12,-29],[15,-27],[7,-9],[7,-5],[19,-4],[16,3],[20,12],[11,10],[5,8],[8,17],[8,28],[1,1],[5,39],[0,1],[2,12],[-1,13],[0,8],[-1,23],[-7,37],[-4,16],[-3,6],[-23,40],[-25,45],[-4,5],[-5,5],[-15,0],[-12,-5],[-15,-13],[-11,-18],[-13,-30],[-6,-12],[-5,-6],[-13,-14],[-4,-4],[-4,0],[-21,-1],[-8,2],[-9,3],[-16,12],[-13,11],[-25,31],[-8,20],[-3,29],[0,49],[-3,50],[-4,48],[-4,21],[-3,10],[-7,22],[-2,5],[-29,53],[-6,8],[-29,40],[-24,37],[-13,23],[-29,44],[-10,10],[-23,15],[-30,9],[-16,1],[-30,-2],[-18,-5],[-13,-6],[-3,-2],[-5,-5],[-2,-4],[-3,-10],[-24,-146],[-1,-9],[-4,-28],[-2,-12],[-3,-37],[-3,-85],[0,-3],[0,-5],[-2,-25],[-2,-16],[-1,-4],[-1,-6],[-9,-43],[-7,-20],[-7,-16],[-22,-32],[-19,-23],[-7,-8],[-15,-19],[-18,-15],[-16,-8],[-31,-10],[-2,0],[-19,-1],[-13,7],[-6,9],[4,32],[13,20],[1,3],[13,10],[28,10],[13,8],[6,4],[6,7],[11,17],[7,20],[3,18],[2,23],[0,18],[0,3],[-3,14],[-3,11],[-7,16],[-6,7],[-11,3],[-13,-3],[-12,-9],[-11,-12],[-7,-11],[-16,-25],[-18,-21],[-14,-9],[-12,-5],[-22,-3],[-28,8],[-30,20],[-22,18],[-12,12],[-7,10],[-10,14],[-3,8],[-5,18],[-5,22],[-2,16],[-3,37],[-5,85],[-8,44],[-5,24],[-3,25],[0,21],[2,10],[6,9],[9,5],[6,-2],[14,-6],[10,-6],[15,-19],[10,-26],[16,-24],[16,-15],[10,-3],[17,2],[1,0],[6,2],[17,14],[9,10],[6,12],[1,3],[1,2],[4,9],[2,6],[10,26],[0,1],[3,23],[0,1],[1,26],[0,41],[0,2],[-5,47],[-8,41],[-5,15],[-9,13],[-6,-2],[-3,-8],[-5,-20],[-11,-46],[-5,-15],[-11,-16],[-14,-16],[-19,-15],[-26,-16],[-11,-7],[-5,-1],[-1,0],[-37,-4],[-10,2],[-1,1],[-30,9],[-34,23],[-33,25],[-15,15],[-4,10],[1,13],[14,10],[11,15],[7,11],[9,27],[3,15],[1,89],[-4,11],[-6,9],[-3,2],[-14,-3],[-15,-13],[-6,-7],[-17,-22],[-5,-6],[-12,-8],[-7,1],[-3,2],[-7,10],[-2,4],[-5,28],[-1,23],[4,34],[1,2],[24,90],[4,13],[3,18],[0,33],[-2,14],[-5,7],[-29,35],[-9,9],[-15,15],[-11,11],[-15,8],[-12,-1],[-15,-6],[-1,-1],[-21,-23],[-16,-22],[-30,-40],[-24,-27],[-1,-1],[-14,-8],[-4,-2],[-29,-26],[-9,-12],[-8,-14],[-4,-11],[-13,-37],[-13,-34],[-5,-12],[-27,-21],[-12,-5],[-8,0],[-12,22],[-6,15],[-7,11],[-8,7],[-19,4],[-18,-4],[-38,-12],[-18,-1],[-30,-3],[-19,-1],[-22,-1],[-10,0],[-18,5],[-16,10],[-12,12],[-4,3],[-9,14],[-21,32],[-5,11],[-3,14],[-1,16],[4,21],[23,29],[14,8],[2,1],[23,4],[26,-6],[7,7],[8,16],[4,15],[5,26],[0,18],[0,6],[-2,41],[-7,39],[-14,44],[-18,44],[-2,5],[-4,7],[-3,5],[-8,9],[-8,1],[-10,-7],[-6,-19],[-14,-64],[-12,-57],[-8,-22],[-6,-11],[-19,-15],[-11,-5],[-10,-1],[-19,8],[-4,1],[-26,27],[-8,5],[-9,0],[-2,-1],[-8,-2],[-28,-10],[-16,5],[-1,1],[-28,25],[-26,17],[-35,23],[-21,5],[-56,14],[-9,-8],[-7,-12],[0,-23],[4,-15],[6,-14],[16,-24],[10,-13],[12,-13],[5,-20],[2,-27],[-2,-30],[-4,-22],[-6,-12],[-5,-9],[-24,-45],[-61,-112],[-1,-1]],[[39283,39268],[4,390],[-3,300],[-1,46],[1,65],[1,59],[-2,118],[0,262],[1,363],[0,3],[-2,61],[2,62],[0,6],[0,116],[0,1],[0,88],[1,566],[-3,263],[2,48],[0,48],[0,59],[0,56],[0,50],[1,47],[-1,30],[0,46],[1,47],[-1,55],[1,45],[-1,20],[0,18],[0,37],[-2,38],[0,58],[-1,41],[-1,40],[0,34],[4,32],[0,53],[0,32],[0,40],[0,58],[1,55],[-1,50],[0,34],[0,32],[1,52],[-1,170],[3,245]],[[39283,39268],[0,-1],[-2,-2],[-11,-11],[-10,-5],[-10,-4],[-2,0],[-15,-1],[-5,7],[3,17],[1,0],[18,42],[5,25],[0,1],[1,42],[-4,15],[-8,9],[-10,5],[-12,-1],[-15,-12],[-31,-47],[-44,-32],[-27,-19],[-39,-15],[-14,-1],[-29,-4],[-10,2],[-25,5],[-6,6],[-6,7],[0,8],[2,3],[10,13],[18,15],[23,27],[6,12],[7,16],[2,14],[0,42],[-3,17],[-11,18],[-10,6],[-5,3],[-14,4],[-20,-2],[-24,-5],[-19,-18],[-32,-42],[-15,-29],[-18,-57],[-6,-10],[-10,-9],[-9,2],[-11,10],[-9,28],[-8,25],[-1,2],[-21,34],[-11,12],[-10,4],[-15,-3],[-13,-8],[-11,-13],[-9,-15],[-5,-17],[-1,-16],[1,-21],[5,-13],[2,-4],[9,-10],[5,-4],[23,-22],[6,-6],[8,-15],[10,-42],[2,-24],[-2,-23],[-4,-13],[-14,-21],[-9,-7],[-15,-3],[-15,4],[-13,7],[-17,15],[-9,8],[-33,29],[-7,12],[-3,16],[-4,23],[-12,30],[-9,10],[-13,6],[-11,-4],[-9,-11],[-3,-25],[-4,-18],[-10,-16],[-13,-13],[-11,-4],[-72,19],[-12,-7],[-10,-2],[-23,3],[-13,7],[-46,45],[-1,1],[-15,10],[-18,-1],[-13,-9],[0,-1],[-19,-28],[-23,-36],[-22,-65],[-21,-62],[-5,-22],[1,-25],[4,-14],[10,-15],[11,-8],[30,-5],[2,0],[42,0],[10,-5],[9,-9],[7,-13],[5,-18],[1,-22],[-2,-22],[-13,-51],[-11,-31],[-9,-26],[-13,-26],[-10,-19],[-41,-69],[-16,-20],[-7,-5],[-14,-11],[-64,-38],[-16,-10],[-30,-17],[-10,-4],[-11,2],[-1,1],[-15,8],[-7,15],[-2,18],[3,19],[18,32],[6,17],[0,2],[3,14],[-7,49],[-8,25],[-26,56],[-15,33],[-4,9],[-15,22],[-17,19],[-3,3],[-11,10],[-17,10],[-12,5],[-23,-9],[-4,-13],[7,-13],[22,-20],[11,-13],[12,-19],[3,-23],[-2,-21],[-4,-13],[-6,-9],[-9,-7],[-10,-1],[-5,0],[-24,3],[-16,-1],[-11,-9],[-9,-13],[-9,-18],[-3,-24],[-4,-26],[-7,-93],[-1,-58],[5,-24],[0,-2],[4,-9],[7,-40],[4,-60],[3,-45],[0,-3],[0,-8],[-4,-9],[-16,-2],[-1,1],[-7,2],[-5,6],[-18,36],[-13,25],[-12,12],[-5,6],[-14,9],[-24,12],[-13,7],[-5,2],[-18,6],[-12,-6],[-14,-19],[-1,-15],[10,-24],[25,-21],[15,-23],[3,-16],[-4,-32],[-5,-11],[-6,-4],[-39,-7],[-11,-5],[-9,-7],[-7,-17],[-23,-64],[-19,-39],[-12,-10],[-11,-3],[-16,-1],[-15,7],[-15,10],[-9,10],[-6,44],[-1,9],[-12,75],[-5,35],[-6,38],[0,1],[-6,18],[0,1],[-1,2],[-14,19],[-15,15],[-32,19],[-12,-2],[-28,-9],[-14,-10],[-2,-1],[-20,-23],[-4,-7],[-3,-17],[0,-1],[1,-15],[6,-25],[1,-18],[-6,-40],[-8,-19],[-29,-30],[-11,-9],[-17,-13],[-24,-19],[-37,-14],[-6,-12],[5,-12],[6,-7],[6,-13],[5,-18],[-1,-13],[-1,-18],[-11,-41],[-10,-36],[-8,-8],[-9,-7],[-16,-1],[-17,4],[-22,11],[-12,13],[-5,6],[-10,4],[-14,-1],[-14,-16],[-7,-19],[-6,-24],[0,-13],[5,-23],[1,-4],[3,-17],[7,-43],[2,-31],[0,-1],[-2,-36],[-9,-39],[-3,-261],[1,-87],[0,-29],[2,-135],[0,-1],[0,-80],[0,-23],[0,-281],[0,-10],[1,-61],[0,-10],[0,-143],[0,-118],[0,-252],[0,-115],[0,-273],[0,-225],[0,-242],[-1,-50],[0,-9],[1,-77],[0,-55],[0,-34],[0,-10],[0,-157],[0,-215],[-2,-64],[0,-16],[1,-74],[0,-43],[0,-36],[0,-45],[1,-90],[-1,-154],[0,-516],[-1,-174],[0,-60],[3,-153],[1,-349],[0,-216],[-1,-314],[0,-42],[0,-52],[0,-128],[0,-175],[0,-201],[-1,-248],[0,-223],[-1,-158],[-1,-31],[0,-2],[1,-84],[0,-67],[1,-65],[-1,-54],[-1,-68],[2,-83],[0,-211],[-1,-40],[-1,-227],[1,-117],[0,-67],[1,-178],[0,-309],[-2,-248],[0,-97],[0,-125],[0,-41],[0,-40],[0,-163],[0,-216],[0,-136],[0,-81],[0,-86],[2,-115],[-1,-170],[0,-59],[-1,-47],[0,-4],[0,-120],[0,-35],[4,-437],[-1,-78],[-1,-47],[1,-203],[-1,-45],[1,-84],[1,-236],[0,-102],[-1,-207],[-1,-112],[0,-46],[0,-66]],[[37133,26227],[-115,0],[-109,0],[-124,3],[-29,0],[-89,4],[-43,0],[-147,-1],[-21,-1],[-24,-1],[-40,-1],[-137,-2],[-2,0],[-137,-7],[-145,-5],[-20,0],[-105,3],[-2,0],[-124,2],[-111,1],[-34,2],[-112,3],[-27,1],[-240,1],[-177,-1],[-10,1],[-8,0],[-69,-1],[-120,-1],[-87,0],[-50,0],[-240,-1],[-32,1],[-230,-1],[-70,-1],[-102,1],[-58,0],[-32,0],[-59,0],[-70,1],[-18,0],[-114,-2],[-64,1],[-39,-3],[-7,0],[-20,-2],[-33,-1],[-16,-1],[-15,0],[-32,-1],[-28,0],[-25,1],[-1,0],[-155,0],[-184,0],[-159,2],[-224,-2],[-185,-1],[-80,0],[-63,0],[-83,-1],[-81,0],[-68,1],[-30,0],[-67,0],[-18,-1],[-25,0],[-28,-1],[-106,0],[-127,1],[-174,-1],[-58,0],[-95,1],[-76,0],[-20,0],[-1,0],[-37,0],[-21,1],[-199,3],[-2,0],[-31,0],[-44,0],[-3,0],[-29,1],[-179,0],[-33,1],[-9,0],[-12,1],[-18,0],[-17,-1],[-91,0],[-14,0],[-37,-1],[-58,-1],[-150,3],[-49,-2],[-54,-2],[-29,1],[-179,1],[-26,1],[-46,2],[-30,2],[-25,-2],[-86,3],[-39,1],[-20,1],[-48,3],[-25,0],[-21,0],[-136,-1],[-39,0],[-72,0],[-141,-1],[-48,0],[-83,-1],[-50,0],[-14,0],[-28,1],[-37,1],[-46,-2],[-211,2],[-44,0],[-14,14],[-73,-2],[-125,-3],[-132,-3],[-137,-3],[-79,-2],[-47,-1],[-22,0],[-94,1],[-15,-2],[-116,2],[-17,0],[-35,0],[-54,1],[-38,0],[-70,1],[-39,0],[-29,0],[-124,1],[-57,0],[-2,0],[-69,0],[-93,1],[-31,0],[-137,18],[-5,1],[-68,-2],[-18,-1],[-24,0],[-74,-3],[-175,-5],[-41,-1],[-185,-5],[-1,0],[-62,0],[-246,0],[-14,0],[-14,1],[-68,2],[-77,2],[-136,3],[-22,1],[-18,0],[-30,0],[-45,-2],[-70,1],[-61,1]],[[25550,26248],[0,285],[1,78],[0,10],[0,119],[0,44],[1,90],[0,49],[-2,91],[0,62],[-2,75],[0,33],[0,40],[1,38],[3,233],[0,12],[-1,153],[1,65],[-2,43],[1,44],[3,85],[-3,92],[1,58],[0,64],[-3,129],[1,123],[-4,269],[0,124],[-70,1],[-98,-2],[-20,-3],[-96,0],[-59,-1],[-24,1],[-2,64],[1,545],[0,29],[3,195],[-1,499],[0,186],[-1,478],[0,166],[0,23],[0,78],[0,32],[0,49],[0,1],[2,88],[-1,10],[-2,43],[0,426],[-1,214],[0,284],[4,552],[0,224],[0,11],[0,94],[3,298],[-6,1030],[2,84],[0,207],[-1,60],[0,298],[-1,89],[0,110]],[[75229,39555],[-1,-488],[0,-196],[-1,-223],[0,-126],[-1,-133],[0,-1],[-1,-163],[-1,-215],[0,-228],[0,-3],[-1,-182],[0,-216],[0,-421],[0,-422],[-1,-421],[0,-422],[1,-121],[0,-52],[0,-36],[0,-8],[-1,-230],[-1,-120],[-1,-49],[0,-22],[0,-55],[1,-45],[0,-53],[0,-51],[-2,-171],[0,-168],[1,-40],[0,-15],[1,-26],[-3,-158],[0,-36],[2,-48],[1,-51],[-1,-94],[0,-32],[0,-114],[0,-106],[2,-82],[1,-41],[0,-75],[0,-42],[1,-379],[2,-417],[0,-33],[1,-226],[0,-43],[0,-113],[1,-289],[1,-132],[2,-206],[3,-147],[2,-90],[2,-36],[9,-288],[2,-99],[10,-416],[1,-7],[4,-171],[1,-49],[4,-191],[7,-296],[3,-122],[8,-299],[3,-119]],[[75290,29386],[-28,0],[-120,-1],[-113,0],[-104,0],[-14,0],[-34,0],[-105,-1],[-148,-1],[-110,0],[-33,-1],[-48,0],[-49,0],[-18,0],[-130,0],[-205,-1],[-1,0],[-32,0],[-26,0],[-59,0],[-66,0],[-44,0],[-28,0],[-39,0],[-19,0],[-28,0],[-32,0],[-68,0],[-54,0],[-56,1],[-84,1],[-63,-1],[-26,0],[-37,1],[-64,0],[-132,1],[-28,0],[-87,1],[-18,0],[-137,1],[-14,0],[-43,0],[-33,1],[-16,0],[-17,0],[-15,0],[-121,2],[-106,0],[-154,2],[-107,0],[-152,1],[-106,1],[-153,1],[-116,0],[-21,0],[-28,1],[-41,0],[-21,1],[-21,0],[-19,0],[-97,0],[-158,1],[-16,0],[-85,1],[-152,1],[-107,0],[-155,-1],[-108,1],[-123,1],[-20,0],[-153,5],[-8,0],[-82,0]],[[70235,29405],[-63,1],[-18,-2],[-39,-4],[-150,0],[-3,0],[-128,0],[-196,0],[-51,1],[-143,1],[-113,1],[-45,0],[-55,0],[-49,0],[-43,0],[-69,-2]],[[69070,29401],[-1,50],[0,31],[0,41],[0,42],[0,64],[0,41],[0,39],[0,75],[0,37],[2,120],[0,61],[1,149],[-3,88],[1,216],[0,198],[0,232],[1,185],[-1,181],[1,236],[1,42],[0,374],[1,241],[0,179],[0,188],[-1,131],[0,66],[0,43],[0,44],[0,40],[0,31],[0,56],[1,40],[-1,37],[1,39],[-1,32],[0,40],[0,54],[0,28],[0,35],[0,31],[0,50],[0,33],[0,43],[0,36],[0,108],[0,32],[0,60],[0,45],[0,41],[0,51],[0,54],[0,29],[0,86],[0,90],[1,110],[0,93],[0,76],[0,87],[0,35],[-1,67],[-1,365],[0,101],[-1,64],[0,40],[0,59],[-1,145],[-1,118],[0,93],[-1,93],[0,58],[0,48],[-1,55],[0,49],[-1,83],[0,51],[0,79],[-1,36],[0,50],[0,39],[0,30],[-1,35],[0,38],[0,37],[0,44],[0,1],[-1,72],[0,31],[0,8],[0,34],[0,57],[-1,53],[-2,177],[0,31],[0,64],[-1,105],[0,9],[0,30],[0,37],[-1,35],[0,36],[0,37],[-1,33],[0,36],[0,37],[0,32],[-1,38],[0,51],[0,38],[0,37],[-1,34],[0,40],[0,30],[0,40],[-1,33],[0,40],[0,34],[0,37],[-1,33],[0,30],[0,41],[0,30],[-1,44],[0,31],[0,44],[-1,33],[0,40],[0,31],[-1,50],[0,33],[0,38],[0,32],[-1,30],[0,34],[0,40],[0,33],[-1,37],[0,46],[0,32],[-1,35],[0,39],[0,39],[0,35],[0,36],[-1,31],[0,31],[0,42],[0,37],[-1,40],[0,47],[0,67],[0,30],[-1,32],[0,36],[0,41],[0,41],[-1,49],[0,43],[-1,39],[0,38],[-1,43],[0,30],[-1,35],[0,44],[-1,41],[-92,-2],[-14,0],[-21,-1],[-8,423],[-4,342],[-1,64],[1,255],[0,179],[0,34],[0,37],[0,41],[0,34],[0,37],[0,31],[0,37],[1,56],[-1,43],[1,37],[1,150],[0,79],[-1,213],[-1,225],[-3,186]],[[69070,29401],[-154,1],[-223,2],[-15,0],[-16,0],[-16,0],[-215,-1],[-29,0],[-53,1],[-8,0],[-43,1],[-18,-1],[-142,0],[-109,0],[-89,0],[-55,0],[-112,1],[-151,0],[-123,1],[-97,0],[-27,0],[-267,1],[-13,0],[-19,0],[-14,0],[-19,0],[-18,0],[-33,1],[-153,1],[-108,0],[-149,1],[-65,0],[-27,0],[-15,0],[-17,-1],[-67,0],[-48,1],[-61,1],[-68,1],[-115,-1],[-29,1],[-16,0],[-79,1],[-22,0],[-33,-1],[-105,2],[-78,0],[-151,1],[-18,-1],[-17,-1],[-14,0],[-110,1],[-136,0],[-16,0],[-20,-2],[-17,1],[-63,0],[-74,1],[-52,0],[-17,0],[-25,0],[-103,0],[-108,0],[-31,0],[-36,0],[-73,0],[-66,1],[-42,0],[-40,1],[-2,0],[-65,0],[-44,-1],[-72,0],[-69,0],[-68,1],[-8,0],[-21,1],[-31,0],[-37,0],[-18,0],[-75,0],[-51,0],[-68,0],[-141,0],[-131,0],[-111,0],[-19,0],[-14,0],[-103,0],[-18,0],[-25,0],[-80,0],[-21,0],[-20,0],[-33,1],[-75,2],[-151,-1],[-252,2],[-63,-2],[-73,1],[-1,0],[-84,-2]],[[50212,35597],[0,-4],[9,-142],[-1,-1042],[0,-138],[0,-255],[0,-21],[0,-1],[0,-74],[0,-1],[0,-119],[0,-85],[0,-219],[-1,-330],[0,-134],[1,-73],[3,-195],[0,-79],[0,-141],[1,-167],[0,-440],[0,-425],[0,-232],[-1,-99],[0,-85],[-1,-199],[-1,-180],[0,-173],[1,-71],[-2,-53],[1,-264],[0,-318],[3,-266],[-4,-150],[0,-164],[-1,-467],[0,-1],[200,-4],[1,-1],[16,-14],[1,-530],[1,-305],[-1,-121],[2,-277],[0,-38],[2,-94],[-2,-341],[0,-343],[0,-3],[0,-459]],[[50439,26260],[-42,1],[-17,2],[-122,-1],[-60,0],[-56,-1],[-95,-1],[-55,-1],[-28,1],[-22,2],[-22,-1],[-130,0],[-106,0],[-29,-2],[-45,-3],[-24,0],[-8,0],[-32,-1],[-150,-1],[-186,-2],[-74,-1],[-101,0],[-12,0],[-136,-1],[-132,0],[-25,0],[-1,0],[-71,-1],[-32,0],[-133,1],[-104,1],[-99,0],[-65,0],[-111,1],[-28,0],[-221,2],[-31,1],[-76,-1],[-7,0],[-43,0],[-61,0],[-229,0],[-101,0],[-105,0],[-30,0],[-84,1],[-39,1],[-137,-1],[-45,0],[-107,0],[-4,0],[-40,0],[-43,1],[-77,-1],[-15,0],[-313,-6],[-147,6],[-2,0],[-93,1],[-24,0],[-125,0],[-43,1],[-22,0],[-103,-1],[-252,-2],[-98,0],[-89,-2],[-6,0],[-208,1],[-32,-1],[-46,-1],[-52,1],[-208,-2],[-80,0],[-97,-1],[-52,0],[-82,-2],[-152,-1],[-77,-1],[-129,-1],[-75,0],[-40,-1],[-98,-1],[-61,-3],[-8,0],[-18,2],[-30,2],[-60,-2],[-266,0],[-41,0],[-45,0],[-34,0],[-44,0],[-44,0],[-50,0],[-29,0],[-97,0],[-47,0],[-87,0],[-115,0],[-84,0],[-18,0],[-36,0],[-31,0],[-103,0],[-123,-7],[-63,7],[-65,-1],[-51,-1],[-3,0],[-76,0],[-125,0],[-3,0],[-27,0],[-108,0],[-75,-2],[-3,0],[-13,-1],[-9,-1],[-152,1],[-39,1],[-151,-1],[-113,0],[-2,0],[-80,0],[-131,-2],[-20,2],[-57,0],[-114,-2],[-38,1],[-50,0],[-133,0],[-122,0],[-68,0],[-8,0],[-49,0],[-135,0],[-58,0],[-62,-4],[-50,0],[-333,-4],[-84,-1],[-18,0],[-66,0],[-18,-1],[-31,3],[-14,1],[-31,2],[-43,-6],[-28,0],[-60,0],[-22,0],[-45,0],[-41,0],[-29,0],[-20,0],[-18,0],[-64,0],[-58,1],[-262,0],[-131,0],[-127,0],[-71,0],[-5,0],[-152,0],[-33,0],[-234,0],[-28,0],[-50,0],[-33,0],[-94,0],[-85,0],[-126,0],[-59,1],[-30,0],[-43,0],[-22,0],[-26,0],[-82,0],[-78,0],[-52,0],[-118,0],[-25,0]],[[16370,34854],[25,-40],[7,-38],[-1,-1],[-4,-13],[-7,-19],[2,-29],[0,-1],[-7,-22],[-1,-3],[-7,-16],[-6,-13],[-12,-24],[-8,-16],[-5,-16],[-16,-47],[-7,-21],[-17,-49],[-2,-6],[-9,-52],[4,-55],[1,-2],[19,-33],[8,-31],[-3,-52],[-18,-14],[-17,-12],[-16,-13],[-7,-6],[-11,-5],[-31,-14],[-1,-1],[-18,-11],[-15,-18],[0,-1],[-4,-33],[-2,-30],[0,-1],[-13,-82],[-1,-2],[-13,-24],[-6,-9],[-4,-6],[-7,-13],[-7,-2],[-19,-8],[-13,0],[-6,-1],[-15,13],[-1,2],[-10,17],[-18,20],[-10,21],[-2,3],[-22,34],[-3,5],[-10,18],[-5,10],[-10,14],[-3,4],[-20,24],[-11,14],[-3,4],[-21,8],[-18,19],[-18,19],[-13,2],[-12,-18],[-2,-47],[0,-1],[4,-27],[-5,-54],[-16,-36],[-18,-17],[-15,-11],[-4,-1],[-16,-1],[-16,2],[-21,3],[-1,1],[-13,12],[-12,0],[-14,-1],[-16,11],[0,1],[-11,26],[-1,0],[-1,6],[-6,35],[0,7],[-3,22],[-4,42],[0,1],[0,3],[8,30],[0,1],[9,48],[0,1],[-4,30],[-1,1],[-7,12],[-6,10],[-9,6],[-7,5],[-14,2],[-18,-13],[-22,-24],[-12,-11],[-16,-8],[-15,-6],[-21,8],[-4,1],[-25,19],[-19,21],[-3,5],[-41,48],[-13,15],[-13,6],[-26,-1],[-16,0],[-13,5],[-1,1],[-9,9],[-8,8],[-16,2],[0,1],[-14,2],[-18,11],[-10,6],[-2,1],[-18,6],[-17,6],[0,1],[-16,10],[-13,8],[-5,3],[-3,2],[-18,6],[-21,13],[-10,6],[-21,3],[-21,1],[-48,-3],[-1,-1],[-27,-22],[-3,-2],[-1,-1],[0,-1],[-2,-13],[-2,-16],[0,-1],[8,-25],[0,-1],[9,-27],[2,-8],[15,-60],[4,-14],[0,-1],[-4,-38],[0,-2],[-23,-68],[-14,-25],[-5,-1],[-16,-3],[-19,0],[-18,-6],[-8,-9],[-7,-6],[-26,-26],[-5,-12],[-6,-18],[10,-47],[3,-12],[0,-2],[6,-31],[2,-30],[0,-1],[-1,-3],[-3,-10],[-6,-20],[0,-2],[-1,-1],[-17,-23],[-1,-1],[-17,-18],[-11,-28],[-18,-47],[-2,-35],[0,-31],[3,-12],[4,-19],[13,-31],[5,-12],[16,-68],[2,-7],[-4,-28],[-4,-24],[-2,-14],[-9,-35],[-1,-2],[-19,-25],[-1,-2],[-25,-16],[-9,-7],[-18,-13],[-22,-31],[-11,-49],[-7,-41],[-22,-93],[4,-30],[0,-1],[1,-3],[21,-41],[20,1],[20,-13],[10,-36],[-5,-38],[0,-1],[-1,-1],[-13,-16],[-11,-32],[-15,-32],[-8,-26],[-1,-7],[-18,-59],[-12,-15],[-20,-18],[-17,-15],[-14,-6],[-1,0],[-23,-1],[-13,-6],[-6,-2],[-29,1],[-16,10],[-17,0],[-3,-1],[-13,-5],[-21,-7],[-15,-10],[-50,-52],[-2,-2],[-19,-16],[-14,-6],[-1,0],[-16,-5],[-1,0],[-18,-6],[-2,0],[-4,3],[-11,9],[-1,1],[-21,22],[-9,16],[-10,17],[-1,1],[-1,2],[-5,5],[-21,22],[-1,2],[-2,0],[-13,4],[-2,1],[-25,-13],[-3,1],[-15,4],[-19,11],[-12,12],[-14,16],[-7,9],[-15,5],[-19,-1],[-19,-12],[-19,-26],[-1,-50],[0,-1],[0,-46],[0,-25],[-9,-14],[-4,-6],[-1,-2],[-16,-19],[-22,-32],[-1,0],[-16,-10],[-1,0],[-15,-1],[-2,-1],[-16,31],[-24,14],[-18,2],[-14,-5],[-19,-7],[-16,-21],[-2,-39],[-14,-39],[-17,-18],[-20,-4],[-2,-2],[-18,-11],[-23,-35],[1,-362],[0,-188],[0,-227],[2,-424],[1,-413],[0,-421],[0,-416],[0,-99],[0,-327],[0,-166],[0,-392],[0,-275]],[[13871,28757],[-105,1],[-140,1],[-319,6],[-40,-2],[-15,1],[-35,0],[-19,0],[-10,-1],[-21,-1],[-130,0],[-230,-1],[-166,0],[-117,-1],[-2,0],[-149,2],[-16,0],[-29,-1],[-5,0],[-31,-1],[-35,-1],[-23,0],[-29,1],[-8,0],[-9,0],[-7,0],[-83,-1],[-114,-1],[-54,0],[-22,0],[-32,3],[-14,0],[-13,0],[-16,1],[-18,0],[-16,1],[-17,0],[-15,0],[-15,0],[-13,0],[-15,0],[-16,0],[-14,0],[-15,0],[-14,0],[-14,0],[-17,1],[-35,0],[-49,0],[-16,0],[-17,0],[-17,0],[-17,0],[-16,0],[-18,1],[-18,0],[-14,0],[-17,0],[-131,3],[-92,-1],[-44,0],[-57,-1],[-54,1],[-47,-1],[-21,-1],[-275,-1],[-85,8],[-89,1],[-439,5],[-5,0],[-10,0],[-142,1],[-84,1],[-25,0],[-5,1],[-16,0],[-164,2],[-196,0],[-31,2],[-5,0],[-113,0],[-18,-1],[-30,-1],[-17,1],[-182,-4],[-69,-2],[-69,1],[-127,1],[-90,2],[-42,0],[-1,0],[-231,-1],[-24,-1],[-76,-1],[-60,-1],[-15,-1],[-288,2],[-89,0],[-57,0],[-13,0],[-37,1],[-144,0],[-153,1],[-9,0],[-5,0],[-46,-2],[-65,-3],[-41,0],[-182,-2],[-28,-1],[-83,0],[-222,-1],[-18,0],[-193,7],[-88,2],[-131,-1],[-55,0],[-72,1],[-59,0],[-116,0],[-82,0],[-102,1],[-108,0],[-60,2],[-49,0],[-113,1],[-28,1],[-79,0],[-90,-1],[-41,0],[-172,2],[-37,0],[-155,2],[-49,-1],[-66,1],[-9,0],[-8,0],[-68,0],[-131,0],[-387,-1],[-95,-1],[-68,2],[-65,-2],[-214,-5],[-66,0],[-4,0],[-40,0],[-53,0],[-2,0],[-1,0],[-90,-1],[-24,0],[-258,4],[-14,1],[-23,0],[-164,2],[-43,0],[-107,1],[-15,0],[-48,1],[-49,1],[-16,0],[-151,2],[-189,3],[-88,2],[-58,2],[-202,5],[-49,1],[-175,4],[-72,1],[-118,3],[-38,-1],[-56,-1],[-39,-1],[-1,0],[-95,-2],[-71,-2],[-69,-2],[-44,1],[-144,2],[-64,-1],[-68,-4],[-54,0],[-2,0],[-71,-2],[-17,0],[-46,-8],[-118,-1],[-7,0],[-55,0],[-126,-1],[-16,-1],[-31,-1],[-243,-3],[-116,-1]],[[39,28785],[-1,318],[0,107],[0,3],[0,88],[0,8],[0,64],[0,13],[0,38],[1,94],[0,104],[0,3],[0,204],[-1,346],[0,212],[-2,621],[0,45],[0,30],[0,34],[0,60],[1,117],[-1,57],[0,275],[2,89],[-1,124],[0,38],[0,41],[0,599],[0,180],[0,334],[-1,376],[0,199],[0,77],[0,102],[0,211],[0,326],[-1,522],[0,267],[0,72],[0,291],[-1,890],[0,194],[0,81],[0,236],[0,97],[0,37],[-1,241],[0,1],[0,71],[0,183],[-3,1756],[0,223],[0,141]],[[79925,39545],[-1,-39],[0,-45],[0,-57],[1,-97],[-1,-69],[-1,-65],[0,-103],[-3,-108],[-1,-97],[-1,-29],[-1,-31],[-2,-157],[-1,-77],[0,-70],[1,-30],[1,-69],[0,-35],[0,-32],[-1,-37],[0,-39],[0,-51],[0,-46],[-1,-73],[0,-34],[0,-38],[0,-42],[-1,-34],[0,-44],[0,-37],[0,-49],[-1,-63],[0,-80],[1,-208],[0,-53],[1,-58],[0,-25],[0,-200],[-1,-140],[2,-38],[0,-35],[1,-49],[0,-52],[0,-34],[0,-38],[1,-39],[0,-43],[0,-40],[-1,-42],[-1,-35],[5,-477],[0,-8],[2,-164],[1,-40],[0,-41],[0,-34],[0,-10],[1,-75],[2,-213],[1,-25],[0,-48],[0,-2],[1,-130],[0,-2],[1,-95],[0,-6],[1,-61],[1,-29],[1,-64],[0,-3],[0,-5],[0,-39],[0,-33],[3,-192],[1,-167],[2,-145],[1,-43],[0,-33],[0,-34],[0,-38],[0,-44],[-1,-41],[0,-43],[0,-48],[0,-34],[-1,-64],[0,-41],[0,-41],[0,-33],[-4,-57],[4,-40],[-1,-38],[0,-36],[0,-47],[-1,-47],[0,-39],[-1,-181],[0,-44],[0,-1],[-1,-197],[1,-63],[1,-68],[1,-32],[1,-43],[1,-31],[0,-31],[0,-30],[1,-60],[1,-57],[-4,-421],[3,-421],[0,-51],[1,-46],[0,-45],[1,-55],[0,-40],[0,-30],[1,-85],[0,-21],[1,-9],[0,-48],[1,-83],[0,-53],[2,-70],[1,-101],[0,-37],[0,-64],[1,-100],[5,-317],[0,-3],[0,-47],[0,-34],[1,-35],[0,-47],[0,-31],[1,-38],[0,-31],[0,-40],[1,-42],[0,-36],[0,-40],[0,-42],[0,-40],[0,-32],[0,-39],[0,-55],[0,-33],[1,-55],[0,-42],[0,-44],[0,-50],[0,-72],[0,-30],[0,-49],[2,-79],[-1,-52],[0,-53],[-2,-67]],[[79956,29397],[-57,0],[-100,-1],[-20,0],[-25,-1],[-51,0],[-9,0],[-7,0],[-57,-1],[-21,0],[-83,-1],[-22,0],[-6,0],[-9,-1],[-18,0],[-23,0],[-14,-1],[-26,0],[-40,0],[-59,-1],[-28,0],[-108,-1],[-63,-1],[-93,-1],[-34,0],[-24,-1],[-46,0],[-38,-1],[-115,-1],[-20,0],[-61,-1],[-27,0],[-19,0],[-25,-1],[-25,0],[-45,0],[-14,-1],[-22,0],[-53,0],[-19,-1],[-23,0],[-14,0],[-16,0],[-13,0],[-33,-1],[-23,0],[-38,-1],[-29,0],[-15,0],[-13,0],[-23,0],[-47,-1],[-59,0],[-21,-1],[-52,0],[-20,0]],[[77991,29376],[-23,0],[-18,-1],[-21,0],[-19,0],[-18,-1],[-15,0],[-20,0],[-19,0],[-20,0],[-18,-1],[-15,0],[-16,0],[-19,0],[-16,0],[-18,0],[-18,-1],[-20,0],[-16,0],[-16,0],[-18,-1],[-18,0],[-13,0],[-18,0],[-17,0],[-16,-1],[-19,0],[-20,0],[-15,0],[-18,0],[-13,0],[-15,0],[-16,-1],[-18,0],[-20,0],[-16,0],[-18,0],[-15,0],[-16,0],[-18,-1],[-15,0],[-16,0],[-20,0],[-23,0],[-14,0],[-13,0],[-17,-1],[-16,0],[-20,0],[-19,0],[-20,0],[-16,0],[-17,0],[-16,-1],[-15,0],[-17,0],[-23,0],[-18,0],[-4,0],[-11,0],[-18,0],[-16,0],[-17,-1],[-18,0],[-21,0],[-23,0],[-19,0],[-20,0],[-18,0],[-18,-1],[-17,0],[-15,0],[-17,0],[-17,0],[-19,0],[-18,0],[-18,0],[-16,0],[-20,0],[-23,0],[-19,0],[-20,1],[-16,0],[-19,0],[-15,0],[-16,1],[-15,0],[-14,0],[-17,0],[-16,1],[-15,0],[-13,1],[-15,1],[-15,0],[-16,1],[-18,1],[-16,1],[-13,0],[-15,1],[-15,1],[-15,0],[-15,1],[-14,1],[-14,1],[-16,0],[-16,1],[-17,1],[-14,1],[-18,0],[-18,1],[-14,1],[-14,1],[-16,1],[-18,0],[-16,1],[-13,1],[-14,0],[-15,0],[-17,0],[-15,0],[-18,0],[-14,0],[-17,0],[-18,0],[-17,0],[-15,0],[-18,0],[-15,0],[-17,0],[-15,0],[-18,1],[-16,0],[-15,0],[-17,0],[-16,0],[-16,0],[-15,0],[-18,0],[-18,0],[-14,0],[-15,0],[-18,0],[-15,0],[-21,0],[-13,0],[-15,0],[-18,0],[-13,0],[-15,0],[-18,0],[-17,-1],[-18,0],[-15,0],[-18,0],[-15,0],[-15,0],[-14,0],[-13,0],[-17,0],[-18,0],[-16,0],[-15,0],[-15,0]],[[84634,39498],[-1,-462],[0,-36],[0,-33],[0,-36],[0,-50],[0,-65],[0,-45],[-1,-32],[0,-35],[0,-53],[0,-38],[-1,-208],[0,-43],[0,-93],[0,-43],[1,-31],[0,-79],[-2,-158],[0,-30],[-1,-31],[0,-43],[0,-76],[-1,-60],[0,-59],[0,-41],[0,-36],[0,-32],[0,-33],[0,-30],[-1,-44],[0,-67],[0,-34],[0,-70],[0,-91],[0,-50],[1,-31],[0,-124],[0,-52],[1,-31],[4,-154],[3,-136],[2,-55],[1,-40],[1,-38],[3,-89],[3,-61],[1,-38],[3,-78],[2,-60],[2,-44],[1,-60],[1,-172],[0,-8],[0,-201],[0,-56],[0,-31],[0,-33],[1,-37],[0,-32],[0,-64],[-3,-29],[3,-12],[4,-18],[-3,-35],[0,-50],[0,-41],[0,-56],[0,-39],[1,-50],[0,-47],[0,-44],[0,-53],[0,-32],[1,-55],[0,-47],[0,-59],[0,-98],[1,-68],[0,-51],[0,-62],[0,-30],[0,-118],[-2,-116],[0,-3],[1,-145],[0,-43],[-1,-81],[0,-43],[0,-44],[0,-44],[-1,-44],[0,-188],[0,-60],[0,-46],[-1,-58],[0,-44],[0,-42],[0,-44],[0,-61],[0,-39],[0,-30],[1,-107],[0,-30],[-1,-30],[0,-39],[1,-66],[0,-53],[0,-63],[-2,-264],[0,-1],[-1,-156],[1,-95],[-1,-43],[0,-25],[1,-33],[0,-28],[0,-43],[-1,-41],[0,-110],[0,-47],[0,-148],[0,-56],[0,-39],[0,-128],[0,-61],[0,-40],[0,-142],[0,-38],[0,-89],[0,-49],[-1,-90],[0,-134],[0,-32],[0,-45],[0,-54],[0,-39],[0,-37],[0,-68],[0,-120],[0,-95],[1,-73],[0,-48],[0,-42],[1,-56],[0,-55],[0,-78],[1,-98],[0,-50],[0,-40],[0,-51],[-2,-250],[-1,-98]],[[84654,29420],[-58,0],[-95,0],[-27,0],[-32,0],[-21,0],[-32,0],[-20,0],[-49,0],[-58,1],[-33,0],[-30,0],[-67,0],[-16,0],[-14,0],[-84,0],[-39,0],[-40,0],[-50,0],[-3,0],[-16,0],[-17,0],[-39,0],[-42,1],[-55,-1],[-30,0],[-31,0],[-59,0],[-47,-1],[-56,1],[-40,0],[-68,0],[-4,0],[-18,-1],[-23,1],[-57,0],[-66,0],[-25,0],[-14,0],[-70,1],[-21,0],[-40,0],[-26,0],[-100,-1],[-67,0],[-28,0],[-25,0],[-28,0],[-16,0],[-38,0],[-32,0],[-40,0],[-17,0],[-28,-1],[-38,1],[-15,0],[-51,-1],[-81,0],[-16,0],[-18,0],[-79,-1],[-35,0],[-39,-1],[-109,-1],[-17,0],[-15,0],[-5,0],[-94,-1],[-20,0],[-29,2],[-14,-2],[-16,0],[-20,0],[-21,0],[-35,0],[-43,0],[-18,-1],[-45,0],[-71,0],[-43,-1],[-30,0],[-66,-1],[-29,1],[-26,-1],[-48,-1],[-25,0],[-22,0],[-16,0],[-26,-1],[-28,0],[-37,0],[-30,0],[-17,-1],[-15,0],[-17,0],[-23,0],[-27,0],[-13,0],[-17,0],[-22,-1],[-66,-1],[-13,0],[-18,0],[-13,-1],[-138,-1],[-48,0],[-49,-1],[-105,-1],[-43,0],[-17,0],[-20,-1],[-17,0],[-52,-1],[-16,0],[-28,0],[-21,0],[-70,-1],[-28,0],[-16,0],[-81,-1],[-33,0],[-59,-1],[-73,-1],[-62,-1],[-40,0]],[[97884,29437],[-3,0],[-14,1],[-44,0],[-26,0],[-41,-1],[-33,0],[-56,0],[-49,0],[-81,0],[-26,-1],[-18,1],[-16,0],[-20,0],[-53,-1],[-37,0],[-32,0],[-24,-1],[-18,0],[-36,0],[-37,0],[-5,0],[-15,0],[-24,0],[-32,0],[-53,0],[-21,0],[-34,0],[-53,0],[-15,0],[-22,-1],[-26,0],[-33,0],[-51,0],[-25,0],[-24,0],[-16,1],[-29,0],[-24,0],[-17,0],[-16,0],[-30,1],[-38,-1],[-7,0],[-7,0],[-13,0],[-22,0],[-13,0],[-15,0],[-14,0],[-15,1],[-14,-1],[-18,0],[-22,0],[-21,0],[-13,0],[-19,1],[-18,-1],[-26,0],[-24,0],[-14,0],[-18,0],[-18,1],[-15,-1],[-17,0],[-13,-1],[-18,1],[-14,0],[-31,-1],[-22,0],[-7,0],[-7,0],[-28,1],[-21,0],[-19,0],[-14,0],[-19,-1],[-21,0],[-14,0],[-19,1],[-46,0],[-14,0],[-18,0],[-16,0],[-29,0],[-14,0],[-17,0],[-18,-1],[-11,1],[-13,0],[-22,0],[-17,-1],[-20,0],[-35,1],[-17,0],[-18,0],[-18,0],[-19,0],[-29,0],[-18,0],[-18,-2],[-17,0],[-31,-1],[-24,0],[-16,1],[-13,0],[-23,0],[-28,0],[-4,0],[-39,0],[-21,0],[-14,0],[-17,1],[-32,0],[-32,0],[-17,0],[-22,0],[-25,0],[-16,0],[-14,0],[-16,0],[-16,0],[-20,0],[-22,1],[-23,-1],[-17,0],[-20,0],[-43,0],[-25,0],[-21,0],[-19,0],[-17,0],[-22,0],[-32,0],[-21,0],[-47,-1],[-28,0],[-15,0],[-16,-1],[-18,0],[-61,0],[-55,0],[-25,0],[-22,0],[-37,-1],[-83,0],[-41,-1],[-24,0],[-29,0],[-20,0],[-22,0],[-22,0],[-30,0],[-24,-1],[-23,0],[-26,0],[-31,0],[-14,-1],[-17,0],[-3,0],[-19,0],[-19,0],[-33,0],[-32,0],[-39,0],[-38,-1],[-24,1],[-3,0],[-17,-1],[-19,0],[-16,0],[-21,-1],[-32,1],[-31,-1],[-41,0],[-34,0],[-27,-1],[-38,0]],[[93605,29425],[-18,0],[-15,0],[-15,0],[-13,0],[-17,0],[-15,0],[-16,0],[-11,-1],[-6,0],[-14,0],[-15,0],[-14,0],[-19,0],[-17,0],[-16,-1],[-17,0],[-17,0],[-14,0],[-14,-1],[-14,0],[-14,0],[-16,0],[-14,0],[-14,0],[-16,0],[-18,-1],[-16,0],[-18,0],[-16,0],[-16,0],[-18,0],[-13,0],[-13,0],[-15,0],[-17,0],[-15,0],[-14,-1],[-15,0],[-18,0],[-17,0],[-14,0],[-16,-1],[-17,0],[-19,0],[-17,0],[-14,0],[-16,0],[-18,0],[-16,0],[-17,0],[-17,0],[-14,0],[-13,0],[-16,0],[-13,-1],[-14,0],[-17,0],[-15,1],[-14,0],[-17,0],[-18,0],[-17,0],[-16,0],[-18,0],[-16,0],[-17,0],[-17,1],[-16,0],[-14,0],[-17,0],[-14,0],[-16,0],[-16,0],[-1,0],[-14,0],[-13,0],[-14,0],[-16,0],[-13,0],[-15,0],[-16,-1],[-17,0],[-18,0],[-15,0],[-16,0],[-17,0],[-14,0],[-15,0],[-15,0],[-19,0],[-15,0],[-17,0],[-14,0],[-15,-1],[-15,0],[-18,0],[-16,0],[-14,1],[-16,-1],[-15,0],[-15,1],[-14,0],[-17,0],[-13,0],[-15,0],[-14,0],[-5,0],[-16,0],[-15,0],[-15,0],[-14,0],[-16,0],[-15,-1],[-16,0],[-14,0],[-18,0],[-16,0],[-17,0],[-13,0],[-16,0],[-18,0],[-13,0],[-16,0],[-16,0],[-18,0],[-16,0],[-17,0],[-14,0],[-17,0],[-18,0],[-14,0],[-18,-1],[-13,0],[-15,0],[-14,0],[-17,0],[-15,0],[-18,0],[-18,0],[-15,0],[-15,-1],[-15,0],[-17,0],[-16,0],[-14,0],[-17,0],[-14,0],[-14,0],[-16,0],[-16,0],[-13,0],[-18,0],[-18,0],[-13,0],[-15,0],[-18,0],[-3,0],[-15,0],[-16,0],[-16,0],[-17,0],[-15,0],[-17,0],[-16,-1],[-17,-6],[-4,-1],[-11,-1],[-14,9],[-18,0],[-14,0],[-16,0],[-14,0],[-17,0],[-13,0],[-14,0],[-15,0]],[[90921,29416],[1,209],[0,35],[0,37],[0,32],[1,30],[0,33],[0,46],[-1,35],[0,30],[0,36],[0,32],[0,33],[-1,36],[0,35],[0,38],[0,34],[0,35],[0,40],[0,33],[0,40],[0,34],[0,41],[0,43],[0,32],[0,37],[0,30],[0,36],[0,32],[0,31],[0,33],[0,30],[0,7],[0,30],[0,35],[0,29],[0,35],[1,37],[-1,38],[1,29],[-1,34],[0,34],[0,22],[0,12],[0,30],[0,34],[0,34],[0,31],[1,41],[0,36],[1,43],[0,41],[0,34],[0,32],[0,38],[0,39],[0,41],[1,112],[0,121],[0,86],[0,121],[1,275],[0,33],[0,41],[-1,36],[0,36],[0,35],[0,33],[1,31],[-1,31],[0,40],[0,30],[0,39],[0,41],[0,29],[0,34],[0,34],[0,30],[0,36],[0,40],[0,35],[0,33],[0,33],[0,33],[0,36],[0,31],[0,31],[0,34],[-1,33],[0,40],[0,36],[0,33],[0,31],[0,38],[0,29],[0,32],[0,44],[0,33],[0,37],[0,31],[0,34],[0,34],[0,37],[-1,34],[0,32],[0,34],[0,39],[0,30],[0,35],[0,40],[0,32],[0,34],[4,30],[-1,30],[-2,36],[-2,40],[0,33],[0,35],[0,38],[0,30],[3,29],[1,6],[-4,211],[0,15],[1,17],[0,39],[0,36],[0,33],[0,35],[0,32],[0,34],[0,37],[0,39],[0,37],[0,30],[-1,36],[1,30],[0,30],[0,39],[0,41],[0,30],[0,41],[0,35],[0,29],[0,35],[0,34],[0,31],[0,36],[0,38],[0,37],[0,37],[0,40],[0,35],[1,35],[0,33],[0,36],[0,41],[0,30],[0,33],[0,34],[1,35],[0,30],[0,37],[1,41],[0,40],[0,43],[0,31],[0,32],[0,30],[0,36],[1,35],[-4,357],[-1,75],[5,105],[0,115],[1,96],[0,49],[0,63],[-2,420],[0,38],[0,31],[0,244],[0,74],[0,29],[0,13],[0,20],[1,211],[2,56],[0,38],[-1,41],[-1,37],[1,52],[0,48],[0,116],[0,33],[0,33],[0,42],[0,38],[0,36],[0,41],[0,36],[0,32],[0,6],[0,34],[0,42],[0,40],[0,42],[0,39],[0,29],[0,37],[0,37],[-1,35],[0,31],[0,33],[0,37],[0,33],[0,34],[0,30],[0,208]],[[99795,39514],[0,-3],[-1,-1295],[0,-1089],[0,-125],[-1,-424],[1,-871],[2,-2737],[0,-396],[0,-356],[0,-82],[0,-168],[2,-2531],[-726,0],[-1188,0]],[[90921,29416],[-124,0],[-20,0],[-17,0],[-16,0],[-16,0],[-15,0],[-18,0],[-18,-1],[-17,0],[-15,0],[-17,0],[-17,0],[-17,0],[-15,0],[-17,0],[-9,0],[-9,0],[-14,0],[-17,0],[-15,0],[-14,0],[-19,0],[-19,0],[-15,0],[-14,0],[-16,0],[-19,0],[-16,0],[-14,0],[-13,0],[-15,0],[-18,0],[-16,0],[-16,0],[-16,0],[-15,0],[-14,0],[-15,1],[-14,0],[-18,0],[-14,0],[-20,0],[-14,0],[-14,0],[-18,0],[-18,0],[-14,0],[-18,0],[-16,0],[-16,1],[-14,0],[-14,0],[-20,0],[-13,0],[-18,0],[-20,0],[-14,0],[-16,0],[-14,0],[-14,0],[-13,0],[-23,0],[-16,0],[-19,0],[-15,0],[-16,0],[-14,0],[-15,0],[-16,0],[-16,0],[-13,0],[-18,0],[-17,0],[-14,0],[-13,1],[-18,0],[-15,0],[-19,0],[-21,0],[-18,0],[-14,0],[-16,0],[-19,0],[-15,0],[-19,0],[-13,0],[-18,0],[-19,0],[-18,0],[-18,0],[-14,0],[-16,0],[-22,0],[-18,0],[-16,0],[-16,0],[-16,0],[-16,0],[-22,0],[-14,0],[-20,0],[-17,0],[-50,0],[-18,0],[-17,0],[-19,0],[-18,0],[-21,0],[-19,0],[-15,0],[-14,0],[-14,0],[-17,0],[-15,0],[-18,0],[-14,0],[-15,0],[-17,0],[-18,0],[-14,0],[-13,0],[-15,0],[-16,0],[-16,0],[-20,1],[-15,0],[-16,0],[-18,0],[-14,0],[-15,0],[-15,0],[-14,0],[-18,0],[-17,0],[-17,0],[-14,0],[-15,0],[-19,0],[-14,0],[-14,0],[-19,0],[-15,0],[-17,0],[-17,0],[-16,0],[-18,0],[-15,0],[-14,0],[-20,0],[-17,0],[-15,0],[-15,0],[-55,0],[-21,0],[-2,0],[-14,0],[-13,0],[-16,0],[-18,0],[-18,0],[-15,0],[-16,0],[-14,0],[-17,0],[-19,-1],[-20,0],[-15,0],[-18,0],[-17,0],[-15,0],[-17,0],[-15,0],[-15,0],[-19,0],[-20,0],[-18,0],[-19,0],[-18,0],[-14,0],[-14,0],[-14,0],[-17,0],[-17,0],[-15,0],[-15,0],[-15,0],[-15,0],[-14,0],[-15,0],[-15,0],[-15,0],[-15,1],[-17,0],[-15,0],[-16,0],[-18,0],[-16,0],[-16,0],[-17,0],[-17,0],[-14,0],[-6,0],[-12,0],[-14,7],[-17,-5],[-16,-3],[-29,0],[-28,0],[-18,1]],[[87352,29419],[-58,0],[-25,0],[-49,0],[-17,0],[-14,0],[-10,-2],[-7,-2],[-9,2],[-8,2],[-64,0],[-66,0],[-21,1],[-154,0],[-20,0],[-65,0],[-22,0],[-163,1],[-93,0],[-45,0],[-64,-1],[-74,1],[-85,-1],[-22,0],[-108,0],[-23,0],[-22,0],[-81,0],[-119,0],[-52,0],[-261,-1],[-77,0],[-29,0],[-2,0],[-101,0],[-56,0],[-49,1],[-42,0],[-25,0],[-22,0],[-121,0],[-95,-1],[-168,1],[-27,0],[-22,0],[-41,0]],[[59370,29419],[-1,-93],[-3,-415],[-1,-123],[0,-122],[0,-35],[1,-111],[1,-125],[0,-56],[0,-124],[0,-44],[0,-201],[0,-35],[0,-51],[0,-89],[0,-115],[0,-91],[0,-140],[0,-68],[0,-211],[0,-207],[1,-201],[0,-215],[0,-215],[0,-201],[0,-3],[0,-416],[0,-417],[0,-213],[-1,-202],[0,-267],[0,-153],[0,-144],[0,-278],[0,-31],[-1,-39],[0,-44],[0,-59],[1,-48],[0,-43],[0,-32],[0,-40],[0,-31],[-1,-45],[1,-119],[-1,-118],[0,-20],[-1,-55],[0,-25],[0,-84],[0,-80],[0,-23],[-1,-310],[2,-309],[1,-109],[-1,-164],[1,-166],[0,-10],[0,-76],[0,-77],[0,-125],[0,-3],[0,-102],[-1,-79],[0,-32],[0,-418],[0,-17],[1,-400],[0,-332],[0,-86],[-1,-60],[0,-355],[0,-69],[0,-350],[0,-299],[0,-118],[0,-208],[0,-152],[0,-3],[-1,-56],[1,-35],[0,-34],[0,-35],[-1,-31],[0,-71],[0,-55],[1,-155],[-1,-418],[0,-223],[1,-196],[-1,-30],[0,-389],[0,-418],[0,-141],[0,-65],[0,-52],[0,-158],[0,-312],[0,-38],[0,-30],[-6,-29],[-5,-39],[5,-32],[5,-28],[1,-47],[-1,-126],[0,-116],[0,-45],[1,-117],[0,-73],[-1,-135],[0,-5]],[[59364,14939],[-133,1],[-442,1],[-657,1],[-107,0],[-187,1],[-773,1],[-778,2],[-1902,4],[-1158,3],[-1493,3],[-1087,2]],[[50647,14958],[0,5],[0,164],[1,42],[-1,112],[-2,47],[0,43],[1,38],[0,71],[0,200],[0,41],[0,407],[0,78],[0,8],[0,97],[1,41],[0,30],[0,35],[0,43],[-1,64],[-2,222],[-1,222],[0,49],[0,172],[2,200],[0,507],[-2,97],[3,117],[0,91],[-2,505],[-59,-1],[-37,-1],[-100,0],[-1,175],[-1,172],[-3,38],[2,86],[1,157],[1,104],[0,51],[1,2],[2,189],[-6,78],[0,45],[0,36],[0,47],[0,423],[-1,67],[-1,1182],[-2,693],[1,151],[0,185],[0,4],[2,395],[-2,36],[0,49],[-1,84],[1,70],[-1,108],[0,59],[0,35],[0,215],[0,87],[0,58],[0,166],[0,111],[-2,96],[2,99],[0,610],[-1,39],[-1,138],[0,116],[1,68],[1,164],[0,88],[0,346],[-1,256],[0,58],[0,6],[0,32],[0,51],[0,31]],[[25550,26248],[1,-358],[0,-56],[2,-127],[1,-69],[0,-93],[1,-75],[0,-55],[1,-106],[1,-262],[0,-52],[1,-139],[0,-50],[1,-109],[0,-97],[0,-110],[4,-819],[0,-3],[5,-758],[-2,-193],[1,-217],[1,-289],[-1,-130],[-1,-75],[1,-135],[-1,-99],[0,-29],[-1,-78],[1,-40],[1,-172],[3,-213],[-2,-422],[1,-105],[0,-5],[1,-307],[-1,-35],[2,-386],[0,-47],[0,-48],[-1,-103],[1,-30],[2,-192],[-1,-110],[2,-80],[1,-227],[0,-74],[-1,-42],[1,-91],[0,-111],[1,-78],[18,-21],[23,1],[1,0],[17,0],[22,1],[21,0],[22,0],[14,1],[3,0],[38,-3],[24,1],[30,1],[23,-1],[104,-3],[1,-127],[1,-103],[1,-45],[-2,-215],[-2,-36],[0,-3],[-1,-58],[0,-111],[-2,-210],[0,-94],[0,-18],[2,-289],[-3,-527],[-3,-523],[-1,-337],[-1,-911],[-1,-30],[-4,-109]],[[25921,14978],[-1729,3],[-1130,1],[-697,2],[-1090,2],[-1145,2],[-417,1],[-99,0],[-1630,4],[-1375,3],[-7,0],[-551,4],[-2182,18]],[[13869,15018],[0,145],[0,121],[0,218],[0,168],[0,84],[0,169],[0,307],[1,546],[0,207],[1,103],[-1,195],[0,4],[0,40],[0,31],[0,217],[0,51],[-1,45],[0,87],[1,207],[0,229],[0,45],[0,44],[1,322],[-1,137],[0,199],[-1,168],[0,363],[0,1],[-1,42],[0,55],[0,172],[3,546],[-1,144],[0,6],[0,70],[-1,109],[-2,152],[0,537],[0,12],[1,46],[-1,388],[0,12],[2,304],[0,147],[1,393],[0,153],[0,404],[0,116],[1,219],[0,8],[0,120],[0,314],[-1,57],[0,96],[0,105],[0,1],[0,33],[0,41],[0,33],[0,344],[1,231],[0,1],[0,182],[0,299],[1,326],[0,52],[-2,76],[-1,451],[0,96],[0,296],[1,468],[0,156],[0,159],[0,396],[0,357],[0,223],[1,122],[0,216]],[[97884,29437],[-1,-54],[-1,-73],[41,-64],[72,19],[71,-127],[29,-189],[4,-472],[0,-1],[-49,-62],[-100,-128],[-47,-59],[-23,-29],[-9,-137],[-3,-55],[-6,-82],[-2,-31],[93,-288],[12,-35],[11,-34],[55,-53],[3,0],[70,-15],[46,-8],[17,-6],[15,-6],[56,-54],[30,-43],[-9,-87],[73,-343],[101,-129],[45,-57],[61,-77],[98,-189],[121,-61],[110,-56],[8,-103],[15,-194],[31,-202],[-24,-210],[-51,-129],[11,-379],[3,-131],[-10,-59],[-24,-254],[-17,-175],[-10,-154],[-5,-73],[6,-69],[17,-174],[6,-109],[3,-69],[1,-23],[1,-18],[-8,-46],[-39,-99],[-154,-150],[-55,-42],[-62,-33],[-17,-7],[-2,0],[-35,4],[-78,8],[-81,9],[-76,98],[-40,51],[-1,0],[-26,-7],[-62,-16],[-54,-42],[-22,-59],[4,-44],[81,-106],[25,-360],[-7,-39],[-16,-24],[-24,-36],[0,-111],[39,-49],[62,-46],[202,-154],[44,-41],[28,7],[5,1],[2,0],[23,-20],[9,-39],[3,-100],[2,-46],[4,-52],[10,-114],[-79,-38],[-97,-37],[-62,-125],[3,-170],[22,-92],[10,-42],[91,-179],[45,8],[150,25],[93,-49],[122,-62],[80,-84],[72,-33],[109,41],[17,6],[49,52],[91,98],[125,5],[60,3],[93,-112],[21,-147],[5,-40],[8,-59],[25,-192],[2,-12],[53,-557],[14,-156],[36,-382],[0,-2],[-11,-123],[-15,-163],[0,-2],[19,-165],[23,-206],[117,-45],[37,-15],[111,-362],[17,-77],[23,-106],[7,-79],[0,-2],[-35,-187],[-213,-470],[-45,-114],[-2,-102],[0,-4],[64,-29],[10,-43],[8,-93],[0,-2]],[[99786,17402],[-1,0],[-51,2],[-32,1],[-49,0],[-19,0],[-25,1],[-36,0],[-92,0],[-27,1],[-8,0],[-9,0],[-23,0],[-26,0],[-24,0],[-45,0],[-32,1],[-21,0],[-20,1],[-45,2],[-15,0],[-20,0],[-37,1],[-52,0],[-24,0],[-33,-1],[-20,-1],[-22,0],[-14,0],[-47,-1],[-55,-1],[-15,-1],[-21,0],[-20,0],[-15,0],[-32,2],[-45,2],[-19,1],[-48,2],[-22,0],[-39,0],[-48,0],[-30,-2],[-9,-1],[-12,-1],[-17,-2],[-21,0],[-19,1],[-16,0],[-33,1],[-25,0],[-36,2],[-42,1],[-17,0],[-51,0],[-55,0],[-97,0],[-26,0],[-13,-1],[-19,0],[-15,0],[-30,-1],[-26,-1],[-25,-1],[-45,0],[-48,0],[-32,0],[-32,0],[-48,1],[-38,0],[-16,0],[-4,0],[-35,0],[-41,0],[-24,0],[-15,0],[-22,0],[-8,0],[-24,1],[-41,1],[-14,0],[-39,1],[-102,0],[-35,0],[-66,0],[-25,1],[-103,0],[-36,0],[-30,0],[-20,0],[-38,1],[-33,1],[-32,1],[-16,0],[-23,-2],[-41,-2],[-16,0],[-30,-2],[-14,0],[-34,1],[-39,1],[-29,1],[-34,0],[-13,0],[-1,0],[-80,0],[-24,0],[-25,0],[-22,0],[-37,0],[-19,0],[-18,0],[-35,0],[-43,2],[-32,1],[-29,0],[-21,-1],[-45,-2],[-16,0],[-38,-1],[-36,0],[-44,0],[-26,0],[-34,0],[-39,-1],[-23,0],[-52,0],[-22,0],[-19,0],[-70,0],[-14,0],[-13,0],[-16,0],[-33,0],[-26,0],[-14,-1],[-19,0],[-19,0],[-20,0],[-18,0],[-19,0],[-18,0],[-16,0],[-22,0],[-27,0],[-22,0],[-16,0],[-16,0],[-17,0],[-19,0],[-25,1],[-8,0],[-7,0],[-18,0],[-37,-1],[-17,0],[-19,0],[-19,0],[-15,0]],[[95170,17411],[-25,0],[-59,0],[-26,0],[-19,0],[-72,0],[-46,0],[-128,0],[-23,0],[-121,0],[-25,0],[-14,0],[-10,0],[-51,1],[-76,0],[-32,0],[-18,0],[-34,0],[-25,0],[-72,0],[-31,0],[-15,0],[-20,0],[-27,1],[-20,0],[-49,0],[-38,0],[-70,0],[-31,0],[-54,0],[-21,-1],[-33,1],[-13,0],[-14,-1],[-96,1],[-27,0],[-21,0],[-15,0],[-60,0],[-22,0]],[[93617,17413],[0,148],[1,44],[0,56],[0,48],[0,132],[0,42],[0,83],[0,35],[0,58],[-1,71],[0,1],[1,42],[0,38],[0,35],[0,38],[0,34],[0,307],[0,44],[0,41],[0,54],[0,33],[0,68],[0,39],[0,40],[0,29],[0,36],[0,58],[0,48],[0,89],[0,74],[0,153],[0,88],[0,39],[0,30],[0,58],[0,48],[0,41],[0,43],[0,34],[0,79],[0,36],[0,233],[0,35],[0,40],[0,43],[0,66],[0,2],[-2,74],[0,43],[0,30],[0,40],[0,63],[0,41],[0,40],[-1,46],[0,37],[0,41],[1,51],[-1,32],[0,49],[0,119],[0,32],[0,43],[-1,71],[0,48],[0,41],[0,33],[0,29],[-1,30],[0,41],[0,50],[0,29],[0,52],[0,30],[0,37],[-1,46],[0,35],[0,36],[0,38],[0,34],[0,39],[-1,79],[0,44],[0,52],[0,29],[-1,66],[0,53],[0,38],[0,34],[0,63],[0,65],[0,38],[0,32],[0,1],[0,49],[0,71],[0,32],[0,33],[0,64],[0,79],[0,38],[0,53],[0,35],[0,37],[1,63],[0,30],[0,59],[0,35],[0,43],[0,33],[0,47],[0,34],[0,29],[0,57],[0,85],[1,64],[0,35],[0,68],[0,49],[0,37],[0,36],[0,30],[0,38],[0,63],[0,39],[0,40],[0,34],[0,33],[0,56],[0,48],[0,36],[0,43],[-1,78],[0,39],[0,46],[0,49],[0,42],[0,55],[0,34],[0,37],[0,65],[0,105],[0,46],[0,41],[0,32],[0,37],[0,53],[0,41],[0,30],[0,41],[0,41],[0,51],[0,38],[0,35],[0,61],[0,40],[0,47],[0,1],[0,48],[0,54],[-1,3],[0,72],[1,42],[-1,26],[0,23],[1,31],[-1,34],[0,52],[0,43],[0,67],[1,74],[0,39],[0,61],[0,30],[0,93],[1,39],[-1,41],[0,61],[0,46],[0,38],[0,46],[0,37],[0,44],[0,55],[0,50],[-1,32],[0,32],[0,45],[0,44],[0,61],[0,40],[0,35],[0,39],[-1,32],[0,59],[0,54],[0,44],[0,34],[-1,65],[0,34],[0,37],[0,79],[-1,36],[0,53],[0,43],[0,61],[-1,64],[0,52],[0,29],[0,45],[0,108],[1,45],[0,42],[0,32],[0,42],[0,33],[0,34],[0,42],[1,40],[0,3],[-1,40],[0,33],[0,59],[0,55],[0,48],[0,39],[0,36],[0,29],[-1,50],[0,33],[0,45],[0,72],[0,79],[0,30],[0,46],[0,43],[1,67],[0,56],[0,30],[0,54],[0,74],[-1,44],[1,55],[-1,35],[0,36],[-1,38]],[[70235,29405],[0,-19],[-6,-331],[-2,-165],[-2,-142],[-2,-149],[-3,-200],[-3,-220],[1,-106],[-1,-92],[0,-219],[-1,-284],[0,-161],[0,-55],[0,-111],[0,-79],[1,-151],[1,-268],[0,-144],[1,-201],[0,-217],[1,-23],[-1,-45],[0,-41],[0,-33],[1,-63],[0,-96],[1,-114],[5,0],[21,2],[99,8],[150,13],[57,4],[11,4],[56,20],[43,-29],[3546,-2397],[177,-120],[577,-393],[208,-142],[619,-422],[420,-286],[4,-3],[56,-38],[555,-378],[555,-378],[54,-37],[626,-427]],[[78060,20677],[22,-14],[236,-153],[273,-178],[-11,-36],[-11,-34],[-84,-408]],[[78485,19854],[-124,-323],[-38,-263],[1,-76],[-18,-135],[-1,0],[0,-2],[-3,-13],[-5,-12],[-4,-8],[-6,-30],[-3,-57],[-3,-193],[2,-41],[1,-40],[-5,-141],[-3,-73],[-11,-35],[-25,-61],[-5,-10],[-13,-25],[-12,-20],[-12,-15],[-2,-2],[-24,-14],[-4,2],[-5,-2],[-18,-17],[-29,-99],[0,-8],[5,-65],[-25,-84],[-1,-1],[-12,-51],[0,-1],[-4,-80],[0,-13],[-1,-19],[0,-17],[3,-41],[-10,-135],[-11,-70],[0,-8],[-1,-29],[0,-69],[1,-83],[2,-80],[-3,-114],[-6,-49],[1,-10],[3,-23],[1,-10],[14,-41],[0,-1],[2,-70],[1,-60],[-4,-39],[0,-2],[0,-12],[33,-162],[29,-215],[15,-108],[8,-58],[3,-21],[-25,-23],[-4,-3],[17,-68],[3,-14],[14,-57],[0,-2],[27,-113],[1,0],[12,-63],[1,-9],[46,-70],[1,-5],[0,-15],[-4,-29],[-18,-54],[-19,-18],[-85,-16],[-14,-23],[-42,-68],[-3,-40],[-2,-33],[0,-7],[3,-48],[4,-32],[2,-10],[2,-15],[5,-55],[0,-7],[-2,-6],[-23,-39],[-5,-2],[-5,9],[-16,-20],[-1,-1],[-11,-58],[-19,-101],[-2,-13],[1,-3],[0,-2],[3,-15],[12,-103],[1,-4],[2,-28],[0,-5],[4,-13],[0,-2],[1,-1],[8,-12],[21,-13],[24,-14],[14,2],[3,-5],[2,-20],[4,-61],[6,-63],[4,-34],[7,-62],[2,-3],[27,-3],[0,-1],[8,-13],[11,-23],[1,-1],[4,-14],[9,-47],[1,-2],[5,-33],[0,-36],[73,-132],[1,-2],[4,-7],[4,-10],[0,-3],[16,-140],[-15,-54],[-6,-12],[-48,-89],[-8,-13],[8,-31],[14,-55],[-6,-126],[-4,-41],[-4,-13],[-35,-108],[-12,-18],[-19,-27],[-9,2],[-5,-6],[-47,-167],[-13,-126],[0,-1],[0,-11],[25,-53],[6,-11],[6,-2],[3,0],[3,3],[6,5],[6,1],[3,-9],[9,-55],[0,-15],[-2,-7],[-28,-22],[-6,0],[-51,2],[-14,-91],[-6,-33],[-11,-63],[-1,-9],[-12,-22],[17,-16],[47,-46],[23,-23],[3,-14],[5,-75],[-1,-13],[-6,-10],[0,-1],[-8,-6],[-8,-1],[-24,-54],[-2,-6],[-31,-69],[-2,-66],[6,-9],[9,-23],[5,-30],[0,-5],[-4,-5],[-13,-5],[-54,-13],[-4,-1],[-85,-52],[-3,-3],[0,-11],[8,-104],[6,-17],[0,-1],[1,0],[4,-7],[13,-10],[2,-1],[1,0],[11,5],[3,1],[12,-1],[30,-51],[2,-9],[2,-19],[1,-41],[-2,-7],[-5,-5],[-4,-34],[0,-5],[20,-76],[6,-10],[15,-11],[13,0],[0,-1],[1,0],[4,-7],[8,-47],[0,-19],[-2,-9],[-14,-75],[-14,-68],[-1,-7],[-7,-69],[0,-4],[0,-5],[4,-70],[0,-2],[6,-66],[5,-39],[0,-8],[-41,-155],[-7,-27],[-27,-58],[-4,10],[-6,4],[-38,4],[-7,-4],[-83,-53],[0,-1],[-17,-53],[-40,-47],[-13,-15],[-4,-1],[-36,-8],[-10,-6],[-6,-7],[-3,-9],[-15,-78],[0,-14],[5,-10],[12,-26],[6,-14],[-19,-94],[-23,3],[-3,-3],[-42,-74],[-9,-20],[-1,-2],[0,-17],[0,-17],[-1,-3],[-10,-51],[0,-1],[-1,-2],[0,-3],[-5,-5],[-11,-2],[-7,4],[-9,19],[-3,44],[-3,21],[-3,18],[-3,8],[-43,15],[-18,6],[-71,-62],[-27,-56],[-2,-6],[0,-8],[3,-6],[10,-2],[15,4],[19,-5],[1,-1],[8,-7],[60,-59],[0,-1],[6,-9],[2,-7],[1,-14],[0,-2],[-3,-76],[0,-1],[11,-94],[0,-4],[-2,-15],[-1,-4]],[[77488,10352],[-111,-47],[-66,-13],[-60,4],[-216,116],[-52,31],[-205,166],[-183,170],[-52,69],[-19,44],[-71,98],[-84,89],[-111,120],[-39,99],[-33,33],[-52,32],[-46,10],[-127,-6],[-15,2],[-64,9],[-60,11],[-38,25],[-125,80],[-130,71],[-38,17],[-59,27],[-109,48],[-24,14],[-54,34],[-44,40],[-51,71],[-15,21],[-35,104],[-19,59],[-74,129],[-49,52],[-25,27],[-17,17],[-136,109],[-77,62],[-140,103],[-40,41],[-31,32],[-45,48],[-21,22],[-70,48],[-23,16],[-80,62],[-13,10],[-69,54],[-51,52],[-86,88],[-32,33],[-26,27],[-84,3],[-50,-15],[-10,-13],[-36,-51],[-20,-14],[-18,-12],[-61,10],[-43,34],[-17,110],[-7,40],[-64,90],[-4,5],[-32,56],[-43,76],[-34,31],[-89,101],[-13,37],[-50,144],[-8,24],[-127,376],[-58,162],[-33,94],[-15,40],[-7,33],[-19,85],[-23,102],[-16,60],[-14,85],[-3,26],[-24,208]],[[72954,14959],[0,4],[-1,92],[-2,74],[-3,39],[-8,29],[-12,38],[-7,30],[-6,44],[-7,42],[-17,61],[-18,56],[-26,85],[-28,83],[-31,91],[-38,96],[-9,22],[-50,113],[-60,127],[-14,30],[-8,17],[-17,31],[-13,24],[-32,47],[-55,70],[-23,32],[-16,23],[-84,120],[-4,4],[-12,13],[-23,26],[-21,22],[-58,67],[-3,4],[-22,36],[-46,48],[-14,3],[-19,6],[-9,7],[-5,5],[-15,11],[-16,10],[-192,124],[-176,96],[-122,58],[-67,29],[-48,22],[-41,43],[-40,19],[-37,5],[-101,-21],[-17,-7],[-153,-37],[-86,-18],[-95,-1],[-21,3],[-117,16],[-22,7],[-118,37],[-50,16],[-67,22],[-79,42],[-17,10],[-225,218],[-253,464],[-260,717],[-21,68],[-15,31],[-1,2],[-11,29],[-68,125],[-26,50],[-104,164],[-49,68],[-56,65],[-39,26],[-93,47],[-91,48],[-134,34],[-124,19],[-182,10],[-1,0],[-22,2],[-171,17],[-195,49],[-36,21],[-49,30],[-38,48],[-35,43],[-40,69],[-1,2],[-84,333],[-8,69],[-11,85],[-16,130],[-1,14],[4,143],[17,568],[-1,162],[-18,361],[-48,260],[-26,92],[-9,32],[-49,94],[-64,68],[-54,39],[-75,20],[-93,11],[-263,12],[-272,12],[-159,103],[-4,3],[-136,87],[-192,236],[-2,2],[-13,28],[-18,36],[-86,171],[-96,192],[-98,162],[-33,54],[-73,121],[-21,22],[-163,175],[-1,2],[-83,120],[-48,69],[-236,342],[-50,72],[-90,186],[-76,168],[-62,134],[-43,126],[-46,230],[-31,155],[-6,30],[-125,374],[-27,56],[-49,100],[-13,27],[-179,177],[-18,18],[-47,86],[-11,20],[-36,100],[-55,152],[-7,18],[-33,137],[-2,5],[-14,59],[-10,150],[-9,134],[-13,48],[-11,39],[-6,34],[-16,52],[-12,39],[-11,39],[-13,52],[-17,57],[-19,49],[-12,29],[-18,41],[-9,21],[-12,24],[-23,34],[-25,35],[-11,16],[-20,19],[-11,17],[-15,15],[-13,17],[-26,31],[-14,15],[-18,16],[-16,13],[-19,16],[-18,10],[-21,11],[-22,14],[-20,7],[-21,7],[-23,0],[-10,0],[-12,-1],[-18,-2],[-14,-3],[-18,-13],[-21,-14],[-23,-11],[-21,-11],[-15,0],[-5,-1],[-22,6],[-37,8],[-29,6],[-29,3],[-28,2],[-73,1],[-14,1],[-24,0],[-33,-5],[-23,-5],[-63,-10],[-26,-6],[-143,7],[-246,12],[-18,1],[-10,6],[-87,51],[-88,53],[-42,25],[-12,7],[-93,56],[-84,125],[-94,140],[-1,3],[-149,202],[-27,38],[-5,14],[-47,139],[-19,183],[22,196],[14,54],[55,219],[9,38],[17,68],[37,147],[13,54],[1,2]],[[93617,17413],[-72,-1],[-100,-1],[-74,-2],[-22,0],[-49,-1],[-2,0],[-30,0],[-2,0],[-14,0],[-24,-1],[-18,1],[-1,0],[-41,-1],[-20,1],[-5,0],[-16,0],[-14,0],[-9,0],[-5,0],[-259,-1],[-45,-1],[-14,0],[-27,0],[-18,0],[-43,0],[-3,0],[-60,0],[-39,0],[-60,1],[-18,0],[-14,0],[-22,-1],[-14,0],[-15,0],[-23,-1],[-40,0],[-60,0],[-42,0],[-64,0],[-2,0],[-18,0],[-22,0],[-67,0],[-30,-1],[-14,1],[-25,-1],[-85,0],[-80,-1],[-69,0],[-52,0],[-207,-2],[-100,0],[-26,0],[-14,-1],[-42,-2],[-22,0],[-20,0],[-31,0],[-29,1],[-72,0],[-34,0],[-52,0],[-72,-1],[-14,0],[-34,0],[-16,0],[-41,-1],[-28,0],[-70,0],[-36,-1],[-25,0],[-58,0],[-21,0],[-16,0],[-23,0],[-21,0],[-29,-1],[-22,0],[-28,1],[-3,0],[-18,0],[-18,0]],[[90513,17396],[0,1],[1,52],[0,51],[0,48],[0,43],[0,114],[0,36],[0,67],[0,89],[0,63],[0,48],[0,39],[0,95],[0,56],[0,32],[0,36],[0,64],[0,45],[0,37],[0,55],[0,48],[0,56],[0,42],[0,35],[0,39],[0,32],[0,33],[0,54],[0,50],[0,45],[0,39],[0,34],[0,52],[0,36],[0,35],[0,29],[0,6],[0,29],[0,59],[0,34],[0,40],[0,34],[0,49],[0,44],[-1,62],[0,36],[1,101],[-1,81],[0,73],[0,50],[0,45],[0,33],[-53,-1],[-29,0],[-23,0],[-25,0],[-23,0],[-53,-1],[-30,0],[-23,0],[-28,-1],[-35,0],[-49,0],[-29,0],[-25,0],[-29,-1],[-35,0],[-26,0],[-19,0],[-44,-1],[-27,0],[-16,0],[-30,0],[-16,0],[-23,0],[-20,0],[-17,0],[-30,-1],[-34,0],[-71,-1],[-28,0],[-48,0],[-14,0],[-29,0],[-16,0],[-42,0],[-37,0],[-18,-1],[-29,0],[-64,0],[-22,0],[-13,-1],[-1,0],[-39,0],[-36,0],[-19,0],[-40,-1],[-29,0],[-41,-1],[-18,0],[-23,0],[-21,0],[-27,0],[-40,-1],[-24,0],[-45,-1],[-19,0],[-35,0],[-24,0],[-50,0],[-29,-1],[-29,0],[-17,0],[-40,0],[-23,0],[-34,0],[-48,1],[-15,0],[-36,0],[-47,1],[-51,0],[-41,-1],[-17,0],[-21,0],[-84,0],[-16,-1],[-42,0],[-24,0],[-26,0],[-16,0],[-16,0],[-24,0],[-17,0],[-57,1],[-27,0],[-26,0],[-26,0],[-14,0],[-24,-1],[-34,1],[-33,0],[-34,-1],[-17,0],[-27,0],[-65,0],[-24,-1],[-41,0],[-16,0],[-14,-1],[-35,0],[-7,0],[-15,0],[-18,0],[-55,-1],[-34,0],[-23,0]],[[87381,19885],[0,178],[0,189],[0,35],[0,6],[-1,54],[0,41],[-1,161],[0,79],[1,55],[-1,37],[0,78],[0,100],[0,31],[0,63],[0,30],[0,114],[0,63],[-1,109],[0,43],[0,135],[0,29],[0,39],[0,66],[0,83],[0,31],[0,84],[0,39],[0,72],[0,43],[0,3],[0,50],[0,57],[0,32],[-1,54],[0,93],[0,128],[-1,38],[0,54],[-3,188],[-2,140],[0,42],[0,49],[-1,46],[0,59],[-1,49],[0,46],[-1,123],[-1,113],[-1,98],[0,43],[0,30],[-1,135],[0,97],[0,43],[0,52],[-1,142],[0,38],[0,43],[0,29],[0,36],[0,34],[0,35],[0,66],[0,31],[0,30],[0,47],[0,34],[0,74],[-1,131],[0,77],[0,138],[-1,72],[0,110],[0,49],[0,54],[0,173],[0,31],[-2,167],[0,140],[0,110],[-1,36],[1,96],[-1,46],[1,132],[0,73],[0,37],[-1,183],[0,226],[0,13],[0,50],[0,50],[0,40],[0,133],[0,44],[0,65],[0,33],[0,43],[-1,52],[0,41],[0,32],[0,67],[0,48],[-1,47],[0,36],[0,30],[1,44],[0,138],[0,49],[-1,196],[0,36],[0,22],[-1,154],[0,44],[0,5],[0,149],[-1,72],[0,84],[0,32],[0,58],[-1,67],[0,81],[0,32],[-1,171],[0,128],[0,84],[-1,38],[1,147],[-1,97],[0,45],[0,3],[0,62],[0,3]],[[87381,19885],[-39,-1],[-13,-7],[-3,-2],[-15,4],[-17,4],[-15,0],[-27,1],[-20,0],[-39,0],[-46,-1],[-15,0],[-18,0],[-138,-1],[-18,0],[-95,-1],[-260,-2],[-112,0],[-148,-1],[-102,-1],[-34,0],[-123,-1],[-267,-2],[-42,-2],[-115,-6],[-45,0],[-14,1],[-25,-1],[-19,1],[-216,-2],[-8,0],[-23,0],[-39,-1],[-108,0],[-93,-1],[-35,-1],[-57,-2],[-109,3],[-91,3],[-67,0],[-159,0],[-12,0],[-79,0],[-29,-1],[-16,-2],[-162,4]],[[84254,19867],[-33,0],[-39,-1],[-14,1],[-66,0],[-20,1],[-23,0],[-10,0],[-13,1],[-41,4],[-27,2],[-19,0],[-17,0],[-127,-1],[-15,1],[-51,-1],[-29,0],[-37,2],[-47,1],[-28,0],[-107,2],[-20,0],[-39,0],[-29,1],[-17,0],[-28,0],[-23,1],[-82,1],[-34,0],[-2,0],[-107,2],[-27,0],[-42,0],[-18,0],[-27,2],[-39,0],[-48,1],[-22,0],[-17,1],[-155,4],[-20,0],[-67,-1],[-52,-1],[-79,-2],[-37,-1],[-14,-1],[-22,-1],[-8,-1],[-22,-1],[-43,-1],[-42,-2],[-23,0],[-19,-1],[-80,-3],[-206,-1],[-53,0],[-27,0],[-36,0],[-26,0],[-154,-1],[-13,0],[-38,0],[-49,-1],[-103,1],[-49,-1],[-20,0],[-50,0],[-56,0],[-43,0],[-44,0],[-40,0],[-19,0],[-23,-1],[-206,-1],[-18,0],[-13,0],[-31,0],[-22,0],[-19,0],[-54,0],[-53,-1],[-64,0],[-16,-1],[-27,1],[-149,-1],[-44,-1],[-32,0],[-51,0],[-81,0],[-64,-2],[-32,0],[-23,-1],[-18,0],[-23,0],[-17,-1],[-16,1],[-13,0],[-43,0],[-20,-1],[-117,-1],[-46,0],[-27,0],[-46,-1],[-16,0],[-23,-1],[-22,0],[-37,0],[-25,0],[-18,-1],[-19,0],[-17,0],[-48,0],[-31,0],[-43,0],[-95,-1],[-157,-1],[-21,-1],[-22,0],[-57,0],[-18,-1],[-51,-1],[-61,1],[-45,0],[-19,-1],[-66,-1],[-59,0],[-80,-1],[-18,0],[-50,1],[-27,-1],[-24,1],[-99,0]],[[78060,20677],[0,194],[0,41],[0,30],[0,65],[0,34],[0,49],[0,36],[0,32],[0,38],[0,44],[0,30],[0,43],[0,80],[0,29],[0,73],[0,182],[-1,34],[0,112],[0,73],[0,22],[0,21],[0,35],[0,75],[0,36],[0,5],[0,45],[-1,149],[0,35],[-1,130],[-1,57],[-1,61],[-1,70],[0,65],[0,37],[-2,429],[-1,152],[-2,259],[-3,417],[-1,82],[-1,58],[0,51],[-1,103],[-1,120],[0,81],[-2,197],[1,40],[-2,98],[0,52],[-2,363],[-1,51],[0,1],[-2,190],[-1,175],[0,42],[-1,35],[0,72],[-2,266],[0,1],[-1,50],[0,52],[0,37],[-1,43],[-1,177],[0,58],[-3,254],[-1,162],[-1,190],[-2,223],[-1,225],[-1,191],[-1,74],[0,30],[0,41],[0,46],[-1,51],[0,3],[0,91],[0,78],[0,79],[-2,245],[-2,88],[0,293],[-1,121],[-4,84],[-9,186],[-3,55],[-4,75]],[[72954,14959],[-45,0],[-39,0],[-29,-1],[-2859,-5],[-1,0],[-397,0],[-1710,-3],[-976,-2],[-1165,-2],[-1925,-4],[-412,0],[-376,0],[-542,-1],[-1061,0],[-754,-1],[-217,0],[-1010,-1],[-71,0],[-1,0]],[[13869,15018],[-924,0],[-1990,0],[-342,0],[-726,0],[-2618,1],[-1972,29],[-47,1],[-66,1],[-333,5],[-1808,27],[-134,2],[-252,3],[-19,1],[-65,1],[-98,1],[-21,0],[-39,1],[-220,3],[-45,1],[-54,1],[-512,7],[-40,1],[-80,1],[-73,1],[-122,2],[-211,3],[-369,6],[-628,9],[-1,274],[0,199],[0,50],[-1,197],[0,83],[0,4],[0,332],[0,135],[-1,282],[1,419],[0,300],[0,116],[0,415],[-1,418],[-2,249],[0,126],[-1,157],[0,13],[0,545],[-1,314],[-1,231],[0,58],[0,75],[0,68],[0,318],[-1,226],[-1,89],[0,52],[0,90],[0,13],[0,239],[0,53],[-1,194],[0,166],[0,265],[-1,179],[1,98],[0,37],[0,398],[1,262],[0,428],[0,64],[-2,61],[1,145],[0,19],[0,18],[-5,153],[0,27],[0,33],[0,129],[0,147],[0,100],[-1,79],[0,95],[0,36],[-1,195],[0,105],[0,123],[0,284],[-1,289],[0,242],[-1,172],[0,475],[0,108],[0,286],[-1,200],[0,137],[-1,75],[0,287],[0,68],[0,36],[0,6],[0,544],[-1,313],[0,359],[1,82]],[[37133,26227],[-1,-150],[0,-38],[0,-23],[0,-22],[0,-99],[0,-78],[1,-92],[0,-2],[0,-131],[1,-228],[0,-159],[1,-35],[-1,-98],[0,-38],[0,-42],[-1,-30],[0,-49],[0,-996],[0,-357],[1,-473],[0,-131],[0,-164],[2,-453],[0,-3],[2,-220],[0,-89],[-1,-351],[-1,-62],[0,-31],[1,-412],[0,-8],[0,-211],[0,-349],[0,-662],[0,-192],[-1,-225],[0,-74],[0,-98],[1,-247],[-1,-43],[0,-177],[0,-191],[0,-329],[0,-206],[-2,-74],[1,-189],[0,-11],[1,-139],[-2,-2175],[1,-312],[4,-202],[-4,-122]],[[37135,14935],[-150,0],[-349,0],[-5865,-11],[-1113,-1],[-665,9],[-1989,30],[-1083,16]],[[50647,14958],[-934,-1],[-358,-1],[-148,0],[-54,0],[-1916,-4],[-1510,2],[-1533,2],[-1109,2],[-2152,3],[-1372,2],[-98,-1],[-123,-2],[-2205,-25]],[[90513,17396],[0,-63],[1,-32],[0,-45],[0,-38],[0,-32],[0,-46],[0,-53],[1,-46],[0,-39],[0,-104],[0,-72],[0,-74],[0,-37],[0,-42],[0,-39],[0,-44],[0,-32],[0,-54],[0,-65],[0,-62],[-1,-59],[0,-123],[0,-53],[0,-41],[0,-51],[0,-75],[0,-54],[0,-47],[0,-47],[0,-56],[0,-46],[-1,-97],[0,-38],[0,-31],[0,-40],[0,-34],[0,-73],[0,-43],[0,-40],[0,-36],[0,-49],[0,-33],[-1,-38],[0,-40],[0,-35],[0,-37],[0,-94],[0,-32],[0,-45],[0,-44],[0,-56],[0,-39],[0,-42],[0,-53],[0,-59],[0,-32],[0,-68],[0,-66],[0,-47],[0,-35],[0,-41],[0,-33],[0,-93],[0,-58],[0,-45],[-1,-46],[0,-36],[0,-39],[0,-34],[0,-71],[0,-81],[0,-55],[0,-76],[0,-30],[0,-35],[0,-30],[0,-59],[0,-59],[0,-30],[0,-37],[1,-32],[0,-63],[0,-133],[0,-46],[0,-81],[0,-39],[0,-30],[-1,-36],[0,-47],[0,-34],[0,-30],[0,-43],[0,-40],[0,-76],[0,-35],[0,-67],[0,-36],[0,-71],[0,-36],[0,-39],[0,-60],[0,-35],[0,-32],[0,-71],[0,-50],[0,-55],[0,-75],[0,-44],[0,-116],[0,-34],[0,-63],[0,-30],[0,-8],[0,-40],[0,-40],[1,-32],[0,-2],[0,-70],[0,-62],[0,-112],[0,-54],[1,-44],[0,-47],[0,-38],[0,-71],[0,-62],[0,-71],[0,-31],[0,-38],[0,-30],[0,-30],[1,-41],[0,-44],[0,-81],[0,-23],[0,-18],[0,-36],[0,-35],[0,-40],[1,-57],[0,-103],[0,-38],[0,-33],[0,-30],[0,-30],[0,-51],[0,-39],[0,-40],[0,-35],[0,-39],[0,-61],[0,-42],[0,-59],[0,-40],[1,-31],[0,-38],[0,-32],[0,-37],[0,-48],[0,-33],[0,-32],[0,-48],[0,-29],[0,-35],[2,-100],[0,-8],[-1,-18],[-1,-79]],[[90516,9217],[-18,14],[-33,40],[-56,57],[-34,23],[-19,7],[-39,-1],[-43,-24],[-37,-1],[-29,19],[-46,19],[-73,-2],[-67,-1],[-76,37],[-22,33],[-24,36],[0,8],[-25,123],[1,136],[-20,42],[-27,42],[-44,146],[-9,155],[-8,128],[-6,9],[-16,25],[-25,19],[-29,46],[-30,84],[-8,58],[-118,211],[-25,39],[-11,18],[-56,19],[-2,0],[-33,-1],[-19,-1],[-43,-20],[-75,-13],[-65,-1],[-22,11],[-44,-2],[-37,-11],[-24,8],[-117,39],[-126,41],[-32,10],[-20,34],[-71,131],[-22,40],[-41,77],[-72,51],[-74,-82],[-30,-34],[-4,-5],[-19,-4],[-51,-11],[-73,-57],[-83,-81],[-36,-36],[-235,-45],[-23,-4],[-10,-2],[-40,-6],[-119,104],[-74,111],[-31,85],[-43,-25],[-28,-16],[-42,17],[-63,25],[-51,-4],[-32,-2],[-39,-3],[-18,34],[-19,34],[-25,10],[-41,15],[-12,4],[-2,1],[-81,-37],[-22,-26],[-37,-45],[-130,-293],[-91,-145],[-87,-81],[-17,-17],[-77,-6],[-47,14],[-21,23],[-36,37],[-27,4],[-302,49],[-31,5],[-1,3],[-107,189],[-83,147],[-89,8],[-127,-250],[-146,-73],[-55,21],[-82,61],[-266,-220],[-37,-31],[-228,-104],[-18,6],[-197,76],[-9,251],[-8,211],[-53,117],[-327,-139],[-143,-241]],[[84280,10711],[0,5],[0,214],[1,120],[0,5],[1,46],[1,216],[0,66],[2,169],[2,199],[-1,34],[0,44],[0,33],[0,78],[0,106],[0,313],[0,5],[-1,148],[-1,142],[0,72],[0,53],[0,55],[0,85],[0,163],[0,106],[0,124],[1,143],[0,57],[0,111],[4,365],[1,46],[-2,109],[0,6],[-1,148],[-2,156],[-2,426],[-1,95],[-2,149],[-1,165],[-1,88],[0,42],[-1,80],[0,33],[-1,52],[0,59],[0,65],[-3,415],[-1,134],[-2,266],[0,20],[-1,144],[-2,212],[0,57],[-3,238],[0,75],[-1,100],[0,4],[0,31],[-1,95],[-2,250],[0,37],[-1,154],[0,39],[-1,90],[0,121],[-3,381],[1,137],[0,359],[0,30],[0,10],[-1,343],[0,61],[0,143],[-1,60],[0,154]],[[84280,10711],[-103,5],[-104,-98],[-104,-99],[-118,-218],[-194,-211],[-170,72],[-60,293],[-6,28],[-167,329],[-219,57],[-200,-228],[-19,-43],[-59,-137],[-205,-218],[-407,242],[-196,419],[-7,11],[-172,272],[-98,23],[-352,-132],[-86,-132],[-6,-23],[-31,-137],[-36,-157],[-26,-110],[-34,-147],[-33,-145],[-5,-22],[-118,-512],[-210,-508],[-44,-109],[-150,-177],[-122,-214],[-92,-161],[-22,-20],[-89,-78],[-109,-96],[-56,-6],[-4,0],[-45,1],[-74,3],[-36,9],[-71,17],[-39,-3],[-23,-15],[-49,-31],[-76,-51],[-5,-4],[-44,-30],[-49,-29],[-44,-28],[-12,0],[-17,0],[-42,26],[-20,-11],[-13,-7],[-58,-34],[-39,1],[-126,31],[-33,4],[-28,2],[-58,12],[-57,65],[-44,27],[-52,25],[-25,6],[-49,11],[-75,70],[-33,45],[-13,73],[-9,93],[-19,75],[-44,65],[-15,40],[-50,58],[-3,1],[-17,7],[-23,52],[-28,44],[-61,79],[-32,42],[-64,44],[-17,17],[-11,11],[-10,12],[-60,84],[-41,94],[-57,97],[-4,7],[-12,34],[-39,62],[-38,40],[-23,39],[-35,18],[-26,28],[-5,5],[-84,99],[-13,38],[-36,6],[-21,33],[-48,136],[-52,148],[-39,96],[-16,26],[-80,130],[-14,5],[-45,-15],[-13,-5],[-6,-2]],[[99786,17402],[-16,-226],[-46,-314],[-39,-32],[-94,-46],[-52,46],[-14,-1],[-188,-251],[-11,-47],[-7,-33],[-4,-14],[-61,-27],[-118,-52],[-40,16],[-48,18],[-58,-133],[-1,-3],[-26,-61],[-7,-160],[3,-7],[77,-34],[13,-47],[-1,-3],[-11,-69],[-8,-54],[0,-1],[78,-279],[103,-191],[30,-51],[23,-113],[0,-3],[-3,-17],[-7,-52],[-16,-114],[-37,-78],[-3,-7],[-13,-26],[-22,-50],[-21,-49],[-176,-369],[19,-220],[40,-69],[108,-59],[14,-43],[9,-110],[10,-116],[7,-78],[-10,-35],[-34,-41],[-12,-13],[-50,-61],[12,-135],[-13,-66],[-57,-19],[-20,-34],[-57,-95],[-5,-21],[13,-71],[6,-32],[-2,-2],[-34,-51],[-20,13],[-46,19],[-22,-34],[-21,-33],[-37,-82],[-29,-65],[-52,-61],[-20,-24],[-16,-91],[0,-3],[31,-244],[2,-59],[2,-64],[0,-2],[0,-3],[-2,-26],[-1,-4],[22,-41],[-3,-34],[-38,-16],[-24,14],[-14,-10],[0,-4],[4,-31],[17,-27],[11,-43],[35,-47],[40,-56],[60,-81],[52,-70],[-1,-4],[-2,-17],[-8,-53],[-4,0],[-129,-5],[-22,13],[-17,-7],[-13,-56],[-7,-36],[-15,-71],[-8,-25],[12,-23],[35,-42],[26,-52],[-8,-35],[-51,-66],[-28,-37],[-23,-1],[-12,-22],[-13,-54],[-3,-7],[-3,-131],[12,-160],[7,-105],[28,-17],[12,-8],[15,-9],[7,-34],[-10,-63],[-21,-64],[-8,-21],[-21,-15],[-22,31],[-15,2],[-32,-18],[-29,-72],[-5,-72],[0,-11],[9,-42],[27,-52],[43,-32],[-32,-120],[-35,-17],[-58,-52],[-34,-30],[-17,-138],[-50,-9],[-6,41],[-12,99],[-4,46],[-9,81],[-3,16],[-2,0],[-67,-1],[-4,0],[-29,0],[-32,-51],[-10,-61],[-9,-58],[21,-62],[0,-1],[1,-4],[8,-38],[-2,-7],[-10,-31],[-49,-61],[-45,-30],[-6,-39],[5,-34],[17,-31],[1,-18],[-15,-45],[-18,-8],[-27,18],[-19,-80],[-14,-7],[-32,15],[-16,-7],[-6,-45],[6,-65],[4,-43],[54,-26],[0,-109],[-23,-99],[-21,-91],[-36,-55],[2,-40],[23,-46],[-10,-44],[-67,-21],[-26,15],[-19,-7],[-7,-35],[10,-23],[21,-32],[4,-34],[-16,-81],[-11,-55],[-20,5],[-19,29],[-67,12],[-16,1],[-105,-201],[-81,-193],[-35,-140],[-4,-126],[-1,-41],[1,-3],[60,-118],[2,0],[17,1],[23,2],[2,0],[22,-39],[1,-43],[-47,-20],[-48,-99],[-20,-96],[3,-73],[-5,-145],[-9,-4],[-77,-36],[-4,-2],[-11,-69],[24,-51],[65,-120],[60,-82],[24,-268],[6,-69],[-1,-201],[143,-223],[102,-28],[67,-18],[33,-50],[18,-27],[20,-30],[7,-21],[27,-77],[7,-43],[9,-16],[90,-42],[50,-126],[24,-53],[68,-74],[16,-33],[9,-62],[-25,-76],[2,-78],[60,-39],[41,80],[13,19],[29,42],[23,-2],[58,-129],[38,-85],[-2,-169],[24,-56],[209,26],[36,-161],[12,-165],[39,-110],[193,-236],[30,-70],[33,-75],[-44,-128],[-25,-70],[-131,-126],[-14,-46],[-23,-75],[24,-101],[67,-41],[183,143],[72,-134],[32,-125],[55,-340],[64,-148],[5,-205],[93,-181],[-128,-202],[1,-101],[-91,-135],[0,-4],[12,-80],[101,-60],[87,-36],[87,-93],[-4,-117],[-10,-287],[-4,-117],[-5,-146],[-8,-19],[-25,-59],[-3,-7],[-31,-74],[-9,-8],[-97,-82],[-20,-67],[7,-72],[65,-103],[60,-28],[35,9],[35,-11],[68,-74],[10,-152],[-28,-84],[-19,-57],[-21,-61],[-5,-17],[5,-55],[6,-63],[36,-38],[25,10],[19,8],[68,26],[110,44],[53,-16],[43,-27],[16,-29],[2,0],[18,-2],[-133,-74],[-18,-11],[-24,-15],[-65,-62],[-111,-90],[-45,-24],[-32,0],[-137,10],[-10,0],[-99,42],[-9,8],[-15,13],[-46,44],[-26,35],[-37,42],[-8,15],[-13,20],[-61,119],[-56,155],[-7,65],[-8,82],[-7,35],[-8,27],[-29,85],[-53,104],[-85,119],[-60,52],[-5,5],[-6,4],[-50,27],[-82,22],[-38,4],[-26,-2],[-52,-3],[-40,-16],[-10,-4],[-58,-43],[-103,-93],[-5,-5],[-2,-2],[-46,-64],[-57,-93],[-36,-43],[-65,-51],[-99,-36],[-34,0],[-65,11],[-48,18],[-32,23],[-87,88],[-61,102],[-2,2],[-1,1],[-24,26],[-42,143],[-8,25],[-3,9],[-5,27],[-22,118],[-7,34],[-17,160],[-1,14],[-4,321],[-14,112],[-30,116],[-17,50],[-63,139],[-73,115],[-56,77],[-80,104],[-51,8],[-12,3],[-38,22],[-107,77],[-25,26],[-17,18],[-33,36],[-54,89],[-24,50],[-54,138],[-32,105],[-63,150],[-83,158],[-10,42],[10,54],[0,62],[-13,54],[-7,20],[-24,38],[-27,81],[-8,39],[-3,108],[19,66],[31,51],[39,120],[1,121],[36,58],[39,35],[36,51],[11,101],[-17,83],[-35,329],[-151,264],[-109,60],[-119,65],[-486,-53],[-73,4],[-16,1],[-4,0],[-19,8],[-52,19],[-71,27],[-122,46],[-125,117],[-18,73],[7,96],[12,156],[-20,140],[-8,61],[5,129],[14,139],[2,15],[-2,66],[-18,35],[-29,43],[-16,41]],[[95163,6459],[0,51],[0,27],[1,292],[-3,212],[-1,30],[-1,42],[0,32],[0,44],[0,153],[0,37],[0,51],[0,11],[1,341],[0,37],[-1,56],[0,57],[0,175],[0,58],[0,37],[1,43],[0,36],[-1,68],[0,43],[0,61],[1,57],[0,70],[0,41],[0,65],[0,142],[0,85],[1,59],[0,70],[0,44],[0,33],[0,130],[0,72],[0,141],[0,91],[0,34],[0,59],[1,31],[0,71],[0,103],[0,32],[0,109],[0,34],[1,94],[0,39],[0,36],[0,63],[0,42],[0,40],[0,56],[0,69],[0,34],[1,32],[0,56],[0,62],[0,69],[1,92],[0,31],[0,34],[0,36],[0,35],[0,34],[1,34],[0,68],[0,34],[0,29],[0,73],[1,68],[0,34],[0,35],[0,73],[0,33],[1,63],[0,29],[0,92],[0,29],[0,87],[0,57],[1,31],[0,58],[0,29],[0,35],[0,56],[1,62],[0,83],[1,118],[0,34],[0,76],[1,100],[0,87],[0,35],[1,79],[0,62],[0,56],[0,81],[1,115],[0,43],[0,30],[0,141],[-1,84],[0,58],[0,60],[0,58],[0,35],[0,81],[0,50],[0,90],[0,31],[0,97],[0,34],[0,42],[0,41],[0,82],[0,35],[0,59],[0,63],[0,51],[-1,58],[1,89],[0,65],[0,53],[-1,86],[0,57],[0,59],[0,81],[0,35],[0,36],[0,81],[0,37],[0,34],[0,51],[-1,57],[0,58],[1,87],[-1,58],[1,29],[-1,58],[0,31],[0,113],[0,29],[0,30],[0,41],[0,44],[0,117],[0,29],[0,57],[0,46],[0,55],[0,114],[0,46],[0,144],[0,87],[0,30],[0,71],[0,42],[0,58],[0,59],[0,58],[0,46],[0,49],[0,62],[0,61],[0,37],[0,70],[-1,144],[0,57],[0,27],[0,8],[0,43],[0,49],[0,8]],[[95163,6459],[-84,-8],[-107,44],[-57,30],[-41,81],[-20,27],[-63,26],[-80,54],[-54,80],[-7,19],[-5,43],[-7,27],[-13,27],[-22,31],[-46,18],[-46,0],[-53,-9],[-19,-17],[-12,-10],[-17,-8],[-41,-1],[-44,46],[-51,74],[-24,37],[-8,15],[-2,20],[-42,65],[-44,57],[-84,-5],[-21,33],[-52,36],[-27,15],[-123,6],[-3,0],[-159,-72],[-26,-43],[-7,-39],[-26,-43],[-10,-8],[-16,-44],[-16,-38],[-28,-29],[-59,-36],[-32,-51],[-40,-52],[-34,-23],[-47,-10],[-71,49],[-10,5],[-13,6],[-46,3],[-78,22],[-14,8],[-20,30],[-19,92],[0,1],[1,58],[7,66],[19,39],[17,74],[2,80],[2,44],[-1,93],[-9,65],[-31,217],[-41,69],[-18,71],[-72,80],[-78,87],[-99,-17],[-158,14],[-66,6],[-145,31],[-109,24],[-103,97],[-102,64],[-22,7],[-29,0],[-29,11],[-54,80],[-9,8],[-123,-6],[-32,-1],[-24,3],[-35,21],[-4,2],[-49,-1],[-72,-13],[-39,-8],[-34,-16],[-4,-5],[-32,-31],[-48,-9],[-109,-5],[-63,14],[-57,-3],[-52,-3],[-11,-8],[-1,0],[-1,0],[-39,-1],[-8,0],[-29,13],[-73,32],[-27,1],[-21,2],[-22,7],[-39,19],[-12,15],[-37,57],[-15,35],[-58,84],[-23,65],[-52,189],[-20,101],[-52,80],[-17,19],[-63,103],[0,8],[-6,23],[-27,26]]],"transform":{"scale":[0.00007620086682866827,0.000034653963129630115],"translate":[-104.05772848299989,42.48030137500018]}} diff --git a/src/js/config/mapconfig/mapfiles/county/tn-counties.json b/src/js/config/mapconfig/mapfiles/county/tn-counties.json new file mode 100644 index 00000000..a49ce391 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/tn-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-90.30996733099994,34.9830133530001,-81.6468965659999,36.678111119000164],"geometries":[{"type":"Polygon","properties":{"name":"TN"},"id":"47161","arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47147","arcs":[[5,6,7,8,9]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47165","arcs":[[10,11,12,13,-10,14]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47125","arcs":[[-8,15,16,17,-1,18]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47111","arcs":[[19,20,21,-11,22,23]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47137","arcs":[[24,25,26,27,28]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47027","arcs":[[29,30,-24,31,-28]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47163","arcs":[[32,33,34,35,36]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47091","arcs":[[37,-37,38]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47151","arcs":[[39,40,41,42,-25,43]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47025","arcs":[[44,45,46,47,48]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47067","arcs":[[49,50,-45,51]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47013","arcs":[[52,53,-40,54,-48]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47073","arcs":[[-35,55,56,57,58,-50,59]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47049","arcs":[[-43,60,61,62,63,-26]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47133","arcs":[[-64,64,65,-30,-27]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47087","arcs":[[-66,66,67,-20,-31]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47019","arcs":[[68,69,70,-33,-38]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47131","arcs":[[71,72,73,74,75]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47183","arcs":[[76,77,78,-72,79]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47095","arcs":[[80,81,-75]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47079","arcs":[[-4,82,83,-77,84]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47169","arcs":[[-22,85,86,-12]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47021","arcs":[[87,88,89,-16,-7],[90]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47179","arcs":[[-71,91,92,-56,-34]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47173","arcs":[[93,94,95,-53,-47]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47159","arcs":[[-68,96,97,98,-86,-21]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47057","arcs":[[-51,-59,99,100,101,-94,-46]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47037","arcs":[[-14,102,103,104,-88,-6]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47059","arcs":[[105,106,107,108,-57,-93]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47129","arcs":[[-42,109,110,111,-61]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47083","arcs":[[-18,112,113,114,-2]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47005","arcs":[[-115,115,116,117,118,-83,-3]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47189","arcs":[[-87,-99,119,120,121,-103,-13]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47063","arcs":[[-109,122,123,-100,-58]]},{"type":"MultiPolygon","properties":{"name":"TN"},"id":"47043","arcs":[[[-91]],[[-90,124,125,126,-113,-17]]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47141","arcs":[[-63,127,128,129,-97,-67,-65]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47001","arcs":[[-96,130,131,-110,-41,-54]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47171","arcs":[[132,-106,-92,-70]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47085","arcs":[[-127,133,134,-116,-114]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47053","arcs":[[135,136,137,138,-73,-79]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47045","arcs":[[139,140,141,-81,-74,-139]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47089","arcs":[[-124,142,143,144,-101]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47093","arcs":[[-145,145,146,147,148,-131,-95,-102]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47029","arcs":[[149,150,-143,-123,-108]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47035","arcs":[[-112,151,152,153,154,155,156,157,-128,-62]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47017","arcs":[[-119,158,159,160,-136,-78,-84]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47041","arcs":[[161,162,163,-120,-98,-130]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47149","arcs":[[164,165,166,167,168,-104,-122]]},{"type":"MultiPolygon","properties":{"name":"TN"},"id":"47185","arcs":[[[-156,169]],[[-158,170,171,-162,-129]]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47187","arcs":[[-169,172,173,174,-125,-89,-105]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47145","arcs":[[175,176,177,178,179,-152,-111,-132,-149,180]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47155","arcs":[[-151,181,182,-146,-144]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47033","arcs":[[183,184,185,-140,-138]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47081","arcs":[[-175,186,187,188,-134,-126]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47015","arcs":[[189,190,-165,-121,-164]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47097","arcs":[[-186,191,192,193,-141]]},{"type":"MultiPolygon","properties":{"name":"TN"},"id":"47105","arcs":[[[194,195]],[[-176]],[[-181,-148,196,197,198,-177]]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47009","arcs":[[199,200,-197,-147,-183]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47177","arcs":[[-172,201,202,203,204,-190,-163]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47119","arcs":[[205,206,207,208,-187,-174]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47039","arcs":[[209,210,211,212,-159,-118]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47135","arcs":[[-189,213,214,-210,-117,-135]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47143","arcs":[[215,216,217,-153,-180]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47175","arcs":[[-157,-170,-155,218,219,-202,-171]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47077","arcs":[[-213,220,221,222,-160]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47075","arcs":[[223,224,225,226,-192,-185]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47113","arcs":[[-161,-223,227,228,-224,-184,-137]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47007","arcs":[[-218,229,230,-219,-154]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47121","arcs":[[231,232,233,-216,-179]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47117","arcs":[[234,235,236,-206,-173,-168]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47031","arcs":[[-191,-205,237,238,239,240,-166]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47003","arcs":[[-241,241,242,-235,-167]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47123","arcs":[[-201,243,244,245,-196,246,-198]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47101","arcs":[[-209,247,248,-214,-188]]},{"type":"MultiPolygon","properties":{"name":"TN"},"id":"47167","arcs":[[[249,250]],[[-227,251,252,253,-193]]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47107","arcs":[[-199,-247,-195,-246,254,255,-232,-178]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47023","arcs":[[256,257,258,-228,-222]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47153","arcs":[[259,260,261,-203,-220,-231]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47061","arcs":[[262,263,-238,-204,-262]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47181","arcs":[[264,265,266,-211,-215,-249]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47099","arcs":[[-208,267,268,-265,-248]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47065","arcs":[[-234,269,270,271,-260,-230,-217]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47055","arcs":[[-237,272,273,-268,-207]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47069","arcs":[[-229,-259,274,275,276,-225]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47071","arcs":[[-267,277,278,-257,-221,-212]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47127","arcs":[[279,280,-242,-240]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47157","arcs":[[281,282,-250,283,-253]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47047","arcs":[[-277,284,-282,-252,-226]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47109","arcs":[[-279,285,-275,-258]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47103","arcs":[[-281,286,287,-273,-236,-243]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47051","arcs":[[-264,288,289,-287,-280,-239]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47011","arcs":[[290,291,-270,-233,-256]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47115","arcs":[[-272,292,-289,-263,-261]]},{"type":"Polygon","properties":{"name":"TN"},"id":"47139","arcs":[[293,-291,-255,-245]]}]},"states":{"type":"GeometryCollection","bbox":[-90.30996733099994,34.9830133530001,-81.6468965659999,36.678111119000164],"geometries":[{"type":"Polygon","properties":{"name":"Tennessee"},"id":"47","arcs":[[18,8,14,22,31,28,43,54,48,51,59,35,38,68,132,106,149,181,199,243,293,291,270,292,289,287,273,268,265,277,285,275,284,282,250,283,253,193,141,81,75,79,84,4]]}]}},"arcs":[[[30807,97634],[16,-521],[7,-245],[7,-185],[7,-231],[4,-141],[3,-100],[10,-318],[11,-355],[11,-362],[7,-231],[6,-171],[1,-28],[6,-206],[7,-242],[7,-211],[9,-317],[7,-219],[4,-120],[7,-219],[4,-156],[3,-94],[10,-319],[4,-124],[9,-301],[6,-193],[1,-13],[12,-388],[11,-298],[11,-297],[14,-382],[11,-304],[11,-313],[20,-536],[3,-78],[6,-163],[7,-177],[7,-194],[30,-772],[18,-476],[6,-161],[5,-130],[0,-5],[2,-52],[2,-43],[2,-68],[12,-302],[35,-924],[31,-828],[4,-98],[3,-110],[2,-63],[4,-86],[1,-45],[3,-63],[15,-410],[1,-27],[21,-538],[4,-93],[0,-3],[2,-75],[12,-300],[12,-329],[3,-64],[3,-80],[3,-67],[20,-550],[20,-436]],[[31370,81684],[-71,3],[-110,7],[-45,2],[-33,3],[-26,1],[-33,1],[-59,0],[-96,-3],[-7,0],[-18,0],[-58,1],[-65,1],[-1,0],[-65,1],[-12,0],[-18,0],[-26,1],[-73,2],[-11,0],[-32,1],[-42,1],[-17,-1],[-55,9],[-14,-3],[-34,-1],[-19,0],[-113,3],[-55,1],[-28,0],[-121,3],[-12,0],[-53,1],[-70,-389],[-11,-61],[-126,-396],[-31,-94],[-11,-34],[-149,-361],[-25,-53],[-17,-37],[-13,-28],[-17,-37],[0,-1],[-13,-23],[-12,-21],[-48,-86],[-71,-128],[-32,-45],[-89,-123],[-34,-53],[-26,-42],[-63,-62],[-43,-43],[-27,-21],[-3,-4],[-15,-19],[-102,-77],[-86,-36],[-25,-15],[-40,-19],[-28,-23],[-48,8],[-75,0],[-47,0],[-35,4],[-78,1],[-67,16],[-35,8],[-43,18],[-31,13],[-74,53],[-81,53],[-206,179],[-41,54],[-39,49],[-38,53],[-8,10],[-40,49],[-29,43],[-17,27],[-13,25],[-38,71],[-23,44],[-3,5],[-45,83],[-54,96],[-29,68],[-27,65],[-27,63],[-60,144],[-36,84],[-35,114],[-26,-50],[-21,-11],[-6,-24],[-6,-18],[-138,33],[-131,29],[-2,0],[-88,18]],[[26881,80864],[-25,139],[-27,111],[-28,100],[-25,64]],[[26776,81278],[-15,37],[-25,59],[-16,52],[-18,73],[-20,83],[-18,101],[-9,56],[-9,57],[-9,71],[-11,94],[-9,96],[-7,63],[-19,202],[-8,105],[-15,122],[-19,152],[-12,110],[-19,164],[-19,147],[-9,81],[-12,87],[-13,61],[-11,39],[-11,28],[-26,35],[-34,95],[-12,58],[-23,125],[-12,70],[-14,95],[-31,189],[-10,69],[-8,71],[-7,63],[-5,69],[-3,85],[-4,78],[-3,101],[-1,124],[-4,68],[-16,92],[-3,14],[-7,39],[-13,63],[-16,89],[-31,128],[-22,92],[-19,83],[-31,111],[-17,65],[-20,65],[-26,83],[-20,87],[-16,82],[-12,77],[-10,86],[-11,116],[-1,2],[-4,110],[-2,66],[0,69],[3,84],[7,115],[10,102],[14,123],[16,128],[15,114],[14,114],[13,117],[8,105],[6,77],[3,70],[3,85],[2,62],[1,68],[-1,89],[-2,71],[-3,72],[-5,71],[-7,93],[-12,125],[-12,134],[-8,121],[-4,134],[-2,88],[-1,76],[3,97],[4,68],[6,67],[8,79],[16,176]],[[26044,89357],[165,748],[25,791],[36,430],[19,564],[-39,1291],[-43,604],[-23,778],[-41,1001],[-61,845],[-54,680],[-6,408],[-16,285],[-101,759],[-36,573],[-19,885],[143,-24],[637,-106],[59,-10],[437,-181],[490,-204],[170,-71],[28,-12],[587,-243],[-42,-1796],[370,46],[586,72],[881,109],[208,19],[125,11],[38,4],[240,21]],[[41038,83916],[-3,-60],[-2,-119],[-16,-119],[-17,-34],[-29,50],[-15,-35],[-23,-31],[-1,-77],[7,-70],[-8,-76],[-3,-87],[-1,-1],[-17,-20],[-20,-16],[-13,-7],[-42,-21],[-5,-25],[-4,-23],[-39,-58],[-12,-14],[-28,-39],[-14,-146],[-28,-272],[-6,-57],[-23,-229],[-17,-101],[-37,-6],[-3,-88],[-10,-256],[-4,-86],[15,-33],[12,-17],[11,-61],[7,-85],[12,-371],[-115,-35],[-70,-230],[-27,12],[-38,-18],[-18,-29],[-20,-71],[-154,-236],[-4,-6],[-10,-17],[-30,59],[-5,15],[-13,86],[-34,265],[0,46],[1,3],[2,17],[-7,1],[-22,4],[-4,12],[-26,100],[-4,25],[-7,69],[-10,86],[-1,1],[-1,3],[-4,18],[-40,140],[-15,21],[-62,88],[-3,54],[-10,50],[-18,36],[-1,2],[9,441],[5,192],[-67,23],[-45,18],[3,-533],[1,-106],[-15,-15],[-26,61],[-20,64],[-41,110],[-5,14],[-10,8],[-11,-7],[-9,-16],[-4,-16],[-1,-24],[-2,-15],[-4,-22],[-4,-22],[-7,-8],[-5,0],[-3,7],[-2,4],[-7,31],[-9,56],[-2,10],[-2,29],[0,15],[-2,73],[0,28],[0,7],[2,21],[0,17],[-2,78],[-10,67],[-4,16],[-13,55],[-2,2],[-6,-12],[-11,-32],[-4,2],[-6,13],[-19,64],[-6,30],[-9,64],[0,60],[-18,83],[-14,62],[-6,19],[-2,4],[-8,16],[-87,165],[-7,-12],[-26,-45],[-6,3],[-32,27],[-4,7],[-2,0],[-39,44],[-3,-1],[-6,-10],[-3,-4],[-5,-20],[-9,-72],[-22,-231],[-10,-118]],[[39208,82566],[-47,202],[-26,55],[-5,-2],[-9,-18],[-23,-70],[-34,-123],[-20,-49],[-5,-7],[-4,-1],[-32,55],[-15,41],[-9,36],[-1,4],[-37,-41],[-2,-2],[-1,-73],[-2,-72],[-4,-46],[-13,-60],[-7,-21],[-26,-58],[-7,-8],[-17,-4],[-9,5],[-33,42],[-25,18],[-7,-2],[-7,-4],[-31,-17],[-10,-6],[-5,-7],[-13,-38],[-24,-69],[-1,-4],[-79,-30],[-3,-1],[0,-7],[1,-63],[-1,-10],[-1,-11],[-2,-15],[-4,-9],[-1,-3],[-18,-4],[-37,-40],[-7,-13],[-3,-25],[-4,-98],[5,-8],[1,-2],[8,-14],[-13,-145],[-4,-43],[-3,-38],[-4,-33],[-4,-29],[-12,21],[-69,116],[-6,28],[-25,132],[-15,12],[-13,-15],[-13,-26],[-4,-89],[-22,12],[-8,89],[-21,142],[-17,117],[-10,65],[-13,94],[-23,155],[-46,298],[-45,305],[-1,9],[-15,97],[-59,108],[-2,6],[-105,195],[-90,168],[0,1],[-25,70],[-40,120],[-32,98],[-27,80],[-14,42],[-57,173],[-219,658],[-116,348],[-1,4],[-89,271],[-17,53],[-107,322],[-3,10],[-33,98],[6,281],[-23,7],[-16,25],[-4,-192],[-37,111],[-3,11],[-51,153],[-57,175],[-14,41],[-35,107],[-20,59],[-39,118]],[[36817,86864],[2,76],[8,257],[-62,31],[-43,19],[7,205],[0,2],[5,168],[3,88],[3,91],[1,41],[4,94],[6,191],[2,71],[12,353],[9,265],[-5,114],[4,77],[9,83],[6,146],[8,258],[7,263],[5,174],[7,206],[34,-26],[22,316],[29,424],[-62,36],[26,904],[-9,-6],[-23,-2],[-9,3],[-11,23],[-8,28],[-4,30],[0,1],[-1,2],[-3,44],[1,38],[0,3],[0,9],[2,44],[8,90],[2,22],[1,8],[5,43],[8,43],[12,62],[5,30],[6,74],[0,3],[0,31],[-2,12],[-4,21],[-1,1],[-11,19],[-16,0],[-14,-19],[-20,-62],[-13,-53],[-14,-42],[-10,-23],[-17,-28],[-11,-1],[-9,14],[-13,50],[-7,52],[0,56],[11,166],[3,39],[-3,-5],[-58,-97],[-2,-3],[-2,-2],[-2,-2],[-1,0],[-11,-6],[-1,0],[-22,143],[-7,51],[-9,59],[-16,108],[2,4],[2,3],[2,4],[1,2],[3,2],[2,1],[2,0],[2,0],[2,-1],[2,-2],[2,-2],[2,-4],[9,-19],[1,-2],[0,-1],[7,20],[11,53],[0,1],[8,63],[0,49],[-2,28],[-14,103],[-19,38],[-17,35],[-1,1],[-5,6],[-23,-25],[-4,-4],[-14,-4],[-29,10],[-1,0],[-10,16],[-10,32],[-1,1],[-1,11],[-1,22],[-1,31],[0,15],[-1,91],[0,26],[2,23],[1,14],[6,36],[1,0],[0,1],[5,7],[6,-1],[12,-22],[2,-2],[41,-87],[10,-33],[15,-64],[8,-22],[38,-76],[2,-5],[27,-48],[14,0],[8,12],[5,24],[2,39],[0,79],[0,3],[-3,86],[0,5],[-2,36],[-11,87],[0,4],[-3,46],[-2,34],[0,55],[2,37],[6,51],[3,19],[1,4],[8,19],[14,-16],[1,0],[21,-55],[19,460],[25,599],[6,153],[5,113],[34,862],[8,203],[0,2],[2,50],[-13,54],[-31,133],[-23,95],[2,176],[0,1],[3,211],[7,233],[98,-52],[28,844]],[[36880,97893],[321,23],[305,22],[850,83],[59,6],[86,8],[527,52],[25,2],[836,82],[127,13],[924,90],[742,75],[233,24],[1024,103],[215,-746],[89,-313],[7,-23]],[[43250,97394],[-14,-60],[-1,-4],[-15,-128],[-26,-220],[-7,-59],[-6,-55],[-9,-71],[-8,-73],[-15,-131],[0,-1],[-7,-58],[-7,-55],[-15,-111],[-32,-241],[-12,-87],[-12,-94],[-14,-100],[-12,-92],[-30,-207],[-7,-53],[-41,-319],[-7,-50],[-2,-20],[-11,-78],[-11,-77],[-4,-27],[-9,-60],[-8,-63],[0,-1],[-10,-95],[-18,-165],[-17,-154],[-11,-100],[-15,-136],[-30,-245],[-19,-139],[-16,-96],[-23,-102],[-11,-52],[-17,-76],[-27,-128],[-14,-78],[-51,-319],[-24,-150],[-6,-40],[-19,-131],[-27,-166],[-17,-108],[-3,-19],[-9,-57],[-9,-50],[-16,-111],[-7,-51],[-9,-52],[-15,-96],[-19,-132],[-7,-51],[-6,-45],[-2,-13],[-6,-72],[-10,-100],[-5,-96],[-5,-88],[-3,-43],[-1,-29],[-7,-103],[-2,-33],[0,-3],[-1,-15],[-12,-220],[-4,-56],[-8,-124],[-8,-137],[-3,-41],[-1,-23],[-3,-45],[-10,-184],[-8,-154],[-2,-89],[1,-104],[7,-205],[3,-83],[3,-101],[3,-96],[1,-10],[0,-21],[1,-58],[-3,-90],[-1,-7],[0,-3],[-18,-168],[-2,-23],[-6,-54],[-8,-81],[-7,-72],[-4,-60],[-2,-149],[-1,-76],[-2,-114],[-7,-90],[-9,-91],[-8,-70],[-12,-107],[-8,-76],[-6,-53],[-11,-101],[-8,-59],[-3,-18],[-4,-35],[-3,-14],[-9,-39],[-4,-14],[-6,-27],[-13,-49],[-12,-42],[-18,-70],[-13,-48],[-9,-36],[-23,-95],[-11,-46],[-3,-11],[-12,-51],[-16,-74],[-2,-12],[-12,-56],[-19,-88],[-9,-45],[-23,-117],[-20,-92],[-24,-103],[-10,-49],[-7,-49],[-5,-53],[-5,-59],[-6,-71],[-10,-123],[-11,-161],[-6,-68],[-6,-51],[-9,-61],[-11,-64],[-13,-61],[-13,-60],[-14,-64],[-10,-53],[-9,-44],[-10,-52],[-8,-49],[-20,-121],[-16,-95],[-10,-56],[-7,-60],[-9,-89],[-5,-62],[-3,-80],[2,-107],[3,-68],[5,-68],[6,-68],[8,-99],[9,-117],[16,-105],[-1,-19],[-3,-45],[-12,-46],[-13,-60],[-2,-7],[-29,-22],[-14,7],[-21,46],[-48,105],[-50,140],[-30,86],[-16,44],[-29,-4],[-35,-6],[-28,72],[-1,4],[-24,62],[-86,-163],[-35,118],[-18,60],[-9,30],[-15,47],[-9,30],[-98,21],[-6,-35],[-28,-154],[0,-170],[0,-117],[-66,-249],[-15,-55]],[[47391,97741],[-31,-584],[-13,-289],[-12,-602],[-6,-169],[-5,-148],[-3,-91],[-4,-114],[-9,-255],[-7,-204],[-4,-116],[-17,-451],[-11,-330],[-7,-185],[-4,-110],[-3,-93],[-2,-44],[-1,-22],[-6,-167],[-7,-192],[-2,-72],[-7,-148],[-5,-187],[-6,-143],[-10,-259],[-1,-44],[-6,-173],[-3,-97],[0,-2],[-3,-76],[-3,-91],[-6,-137],[-11,-276],[-17,-477],[-4,-131],[-3,-73],[21,6],[62,18],[-8,-238],[44,-14],[-9,-510],[0,-4],[-2,-62],[-9,-482],[-24,-77],[-3,-208],[0,-124],[-1,-116],[-27,-1],[-12,-418],[-19,-12],[-23,-14],[11,-117],[-26,4],[-7,1],[-8,27],[2,-96]],[[47114,88752],[-22,-4],[-36,43],[-1,45],[-8,16],[-18,-90],[6,-119],[-31,-30],[-3,93],[-21,-18],[4,-128],[5,-131],[17,-14],[11,33],[18,28],[0,1],[1,-74],[19,-16],[-7,-288],[-3,-144],[-7,-261],[-6,-254],[-2,-96],[-14,-550],[-4,-139],[-109,22],[-38,7],[0,-82],[-31,17],[-54,27],[-87,44],[-26,13],[-19,10],[-1,-142],[-4,-504],[0,-173],[0,-114],[-8,-908],[-1,-123],[-4,-499],[-4,-473],[-6,-568],[-3,-385],[0,-3],[-1,-113],[-3,-438],[0,-200],[0,-81],[-8,-831],[-25,8],[-17,7],[-6,37],[-10,73],[-12,15],[-21,16],[-17,-13],[-8,-90],[-8,-101],[-4,-57],[-3,-69],[-6,-59],[-10,-71],[-1,-85],[-1,-37],[2,-40],[4,1],[11,-27],[4,-78],[4,-93]],[[46481,80495],[0,-1],[-47,-77],[-21,-76],[-18,-82],[-2,-7],[-1,-3],[-9,-61],[-3,-15],[-11,-68],[-18,-111],[-1,-12],[-9,-76],[-7,-61],[-1,-21],[0,-1],[-1,-17],[-1,-34],[-2,-36],[-1,-149],[0,-31],[0,-104],[-1,-340],[-7,-239],[-9,-195],[-4,-79],[-1,-49],[0,-33],[-1,-20],[-12,-53],[-12,-3],[-5,-2],[-5,-1],[-5,-2],[-19,-3],[-41,20],[-41,62],[-61,86],[-56,90],[-61,62],[-51,47],[-39,-14],[-30,-39],[-39,-81],[-49,-112],[-7,-19],[-12,-32],[-33,-85],[-10,-21],[-62,-131],[-21,-14],[-22,-14],[-22,34],[-1,1],[-1,7],[-14,79],[-2,12],[0,11],[1,104],[0,10],[1,9],[4,63],[2,35],[12,85],[46,317],[16,77],[19,74],[13,27],[3,7],[24,65],[1,3],[16,70],[17,66],[7,49],[5,492],[2,170],[-10,249],[-51,423],[-17,18],[-7,6],[-27,103],[-39,121],[-30,71],[-24,17],[-16,-6],[-19,-8],[-25,-51],[-16,-33],[-5,-11],[-1,-3],[-46,-186],[-13,-41],[-10,-52],[-1,-6],[-7,-45],[-11,-91],[-7,-52],[-7,-60],[-6,-56],[-7,-53],[0,-2],[-8,-53],[-13,-70],[-11,-69],[-9,-53],[-9,-71],[-10,-71],[-7,-58],[-6,-68],[-6,-66],[-7,-99],[-5,-72],[-3,-58],[-4,-67],[-6,-98],[-4,-97],[-3,-72],[-1,-22],[-1,-41],[-2,-71],[1,-71],[3,-75],[5,-83],[3,-62],[3,-68],[1,-75],[0,-72],[-1,-62],[-2,-70],[-7,-85],[-6,-61],[0,-3],[-1,-2],[-2,-12],[-10,-51],[-14,-70],[-15,-37],[-18,-36],[-14,-17],[-49,-29],[-20,3],[-12,9],[-13,9],[-14,31],[-19,55],[-25,92],[-22,98],[-15,72],[-22,68],[-13,121],[-12,133],[-10,134],[-5,130],[3,114],[6,141],[1,46],[0,22],[-8,312],[-15,73],[-33,99],[-33,91],[-30,69],[-34,57],[-31,34],[-15,4],[-26,-25],[-12,-13],[-43,-88],[-8,-14],[-24,-49],[-30,-34],[-27,-15],[-24,-24],[-24,-58],[-37,-106],[-83,-283],[-114,-390],[-18,-25],[-26,-61],[-37,-114],[-20,-58],[-24,-73],[-17,-49],[-47,-145],[-44,-109],[-19,-30],[-7,-11],[-6,-11],[-27,-51],[-21,-31],[-19,-61],[-16,-66],[-14,-50],[-19,-68],[-17,-51],[-16,-56],[-15,-61],[-10,-56],[-12,-90],[-7,-102],[-5,-88],[-7,-121],[-11,-235],[-14,-268],[-8,-94],[-9,-85],[-8,-69],[-4,-35],[-13,-82],[-12,-51],[-17,-7],[-16,4],[-13,13],[-15,37],[-20,53],[-20,55],[-11,54],[-13,65],[-12,73],[-9,65],[-9,67],[-10,76],[-12,97],[-10,93],[-7,99],[-7,102],[-6,93],[-4,98],[-3,120],[-2,98],[1,116],[2,93],[0,112],[2,98],[0,63],[0,65],[-3,89],[-5,105],[-5,109],[-2,39],[-2,48],[-6,80],[-5,60],[-12,75],[-18,34],[-14,7],[-22,-17],[-14,-20],[-18,-36],[-13,-33],[-23,-76],[-20,-93],[-15,-88],[-17,-90],[-10,-58],[-9,-38],[-15,-113],[-15,-102],[-13,-109],[-6,-73],[-2,-72],[3,-74],[4,-56],[2,-41],[4,-125],[1,-107],[3,-90],[8,-60],[7,-84],[11,-160],[12,-182],[-13,-149],[-46,-516],[-16,-179],[-40,-444],[-16,-181],[-35,-128],[-3,-10],[-15,-58],[-11,-38],[-33,-123],[-113,-413],[-59,-215],[2,-44]],[[42891,74454],[-182,-53],[-58,53],[-14,39],[-55,161],[-20,48],[-160,290],[-29,52],[-24,586],[-16,364],[5,587],[0,65],[2,351],[-150,490],[-5,15],[-2,7],[-29,42],[0,2],[-65,138],[-41,11],[-14,4],[6,8],[5,5],[14,17],[-5,141],[-1,15],[-1,30],[-5,126],[-15,-17],[-4,-5],[-10,81],[-7,53],[-10,87],[-10,94],[-3,22],[-4,43],[0,1],[-19,181],[-5,41],[-2,9],[-5,4],[-34,18],[-8,1],[-4,-8],[-9,-6],[-10,3],[-78,168],[-6,49],[-6,6],[-3,13],[-6,15],[-27,30],[-29,10],[-23,23],[-3,9],[-2,9],[-4,28],[-2,25],[0,33],[9,139],[3,20],[2,15],[-28,76],[-27,76],[-6,-35],[-10,-40],[-50,333],[-6,66],[-50,151],[-64,197],[-15,45],[-14,42],[-1,3],[-30,90],[-9,126],[-33,432],[-8,114],[20,178],[1,16],[16,142],[-1,6],[-1,8],[-1,6],[-10,50],[0,2],[-1,7],[-1,5],[-5,20],[-8,166],[-18,419],[-10,158],[-22,376],[-3,28],[-29,229],[-28,162],[-16,65],[-23,52],[-4,9],[-8,36],[-5,39],[-11,112],[-4,143],[-2,41],[-1,45],[0,12],[-25,43],[-1,1],[-2,7],[-19,84],[0,7],[-1,15],[1,56],[3,112],[-7,20],[-25,74],[-63,-24],[-10,71]],[[43250,97394],[141,236],[12,404],[46,-32],[32,-22],[-4,-205],[414,693],[13,21],[1096,-95],[1,0],[827,-160],[383,-74],[79,-118],[408,-112],[231,-63],[462,-126]],[[36817,86864],[-26,15],[-26,-120],[-10,-39],[0,-1],[-25,-105],[-82,-116],[-139,-196],[-26,-39],[-12,-16],[6,-77],[1,-77],[-5,-87],[-1,-85],[1,-127],[-10,-116],[-5,-57],[-1,-163],[-3,-193],[-4,-99],[6,-57],[8,-90],[21,-56],[10,-74],[-1,-147],[-4,-76],[-11,-57],[-12,-29],[-13,-12],[-125,-195],[-7,142],[-4,71],[4,73],[3,101],[-1,69],[-12,109],[-25,84],[2,29],[-14,25],[7,129],[-13,27],[-9,-73],[-21,44],[-11,21],[-12,-55],[-13,-50],[-11,-34],[-31,-41],[-26,-37],[12,-245],[-15,-132],[-29,-265],[0,-74],[10,-61],[12,-32],[10,-39],[6,-54],[0,-77],[-4,-46],[-42,-8],[-115,72],[-30,53],[-57,116],[3,73],[-19,15],[-22,22],[-18,-2],[-16,-270],[-40,-289],[-39,-289],[-17,-122],[-39,-49],[-39,-49],[-111,-330],[-20,-63],[-81,-237],[-33,-97],[-80,-239],[12,-88],[-12,-34],[-13,-47],[-18,-51],[-12,-39],[-2,-6],[-10,-28],[-2,-131],[5,-108],[0,-17],[0,-41],[-3,-54],[0,-9],[0,-5],[-10,-199],[-16,-160],[-1,-12],[-3,-17],[-7,-41],[-53,-250],[-5,-26],[-3,-10],[-6,-24],[-10,-20],[-1,0],[-6,0],[-3,14],[0,1],[-11,128],[-9,1],[-43,-89],[-8,-42],[-20,-48],[-24,5],[-5,11],[-4,37],[-4,78],[-3,18],[-7,-4],[-17,-28],[-1,-2],[-10,-19],[-8,-15],[0,-36],[0,-2],[2,-158],[0,-4],[6,-120],[0,-6],[0,-41],[-22,-300],[-1,-16],[-16,-352],[-4,-105],[-13,-311],[-21,-480]],[[34900,78987],[10,-33],[0,-16],[-2,-30],[-5,-25],[-1,-1],[0,-1],[-4,-17],[-32,-99],[-8,-25],[-1,-3],[-9,-19],[-8,-4],[-1,-1],[-31,-10],[-19,25],[-8,5],[-5,3],[-6,-7],[-2,-7],[-2,-4],[-24,-183],[-1,-8],[0,-1],[-14,-103],[-5,-8],[-7,2],[-6,13],[-2,4],[-13,56],[-15,34],[5,260],[-9,57],[-12,14],[-77,97],[-14,-52],[2,-186],[-9,-122],[-20,-19],[-53,87],[2,89],[6,212],[3,99],[-58,24],[-20,-382],[-13,-60],[-77,40],[-46,24],[-143,74],[-84,44],[-73,38],[-76,40],[-61,32],[-286,151],[-156,83],[-39,15],[-21,14],[-59,32],[-34,16],[-61,30],[-119,58],[-54,26],[-23,11],[-14,7],[-26,13],[-80,41],[-83,39],[-97,54],[-74,33],[-27,14],[-25,13],[-58,28],[-57,27],[-23,20],[-62,39],[-94,42]],[[32280,79740],[-71,33],[-19,8],[-40,19],[-68,36],[-67,37],[-47,22],[-42,20],[-19,9],[-29,14],[-1,1],[-12,6],[-27,13],[-143,70],[-1,0],[-83,41],[-43,21],[-29,14],[-43,22],[-64,32],[-12,327],[-3,90],[-17,427],[-3,70],[-24,530],[-3,82]],[[30807,97634],[934,66],[262,19],[1171,61],[114,6],[138,7],[669,35],[188,10],[48,2],[1423,30],[107,2],[357,7],[141,3],[75,2],[446,9]],[[51899,89460],[-9,-302],[-6,-189],[-10,-263],[-32,-1075],[0,-3],[-24,-737],[-12,-350],[-4,-148],[-12,-381],[-48,-1537],[-3,-102],[-1,-18],[-2,-65]],[[51736,84290],[-34,24],[-15,11],[-63,44],[-73,51],[-83,59],[-16,1],[-170,24],[-14,1],[-74,5],[-34,5],[-167,117],[-26,22],[-5,69],[-9,61],[-14,-59],[-17,-66],[-1,-65],[1,-85],[-64,14],[1,156],[-57,24],[-91,49],[-98,53],[-5,3],[-86,46],[-103,59],[-14,-54],[-25,-42],[-11,-40],[-14,61],[-20,105],[-105,48],[-24,11],[-22,10],[-59,27],[-131,91]],[[49994,85130],[-130,92],[-113,60],[-30,20],[-162,75],[-230,106],[-61,28],[-315,146],[-34,18],[-1,0],[-42,19],[-24,11],[-15,8],[-10,4],[-56,26],[-15,6],[-18,8],[-259,133],[-90,47],[-52,26],[-29,11],[-177,79],[-229,103],[-94,49],[-40,259],[-14,99],[-23,163],[-9,64],[-11,90],[-8,62],[-28,235],[-9,76],[-32,292],[-30,325],[-26,311],[-21,291],[-61,30],[-28,13],[-102,50],[-153,75],[-21,9],[-15,8],[-67,33],[2,15],[1,28],[1,19]],[[47391,97741],[75,-19],[965,-240],[229,-57],[1379,-342],[28,-5],[598,-136],[1090,-247],[420,-15],[17,-1]],[[52192,96679],[0,-194],[1,-58],[2,-42],[0,-18],[3,-70],[-28,-39],[-1,0],[0,-1],[-14,-18],[-10,-32],[-45,-18],[-9,-275],[-3,-153],[-2,-115],[-8,-255],[-4,-117],[-3,-113],[-8,-293],[-9,-291],[-6,-222],[-10,-336],[-2,-69],[-33,-773],[-15,-369],[-11,-202],[0,-17],[-9,-331],[-5,-264],[-11,-492],[-4,-224],[-3,-117],[-14,-530],[-4,-165],[-1,-25],[-11,-215],[-5,-173],[-1,-61],[-3,-164],[-7,-368]],[[63772,95589],[22,-163],[1,-5],[22,-161],[84,-601],[12,-91],[1,-5],[34,-243],[0,-1],[24,-173],[32,-228],[26,-192],[23,-161],[23,-170],[38,-269],[66,-477],[133,-1085],[55,-447],[21,-170]],[[64389,90947],[-13,0],[-169,5],[-27,1],[-15,0],[-151,5],[-105,3],[-46,1],[-64,2],[-12,1],[-25,92],[-79,298],[-65,245],[-34,130],[-4,12],[-80,303],[-42,159],[-64,241],[-11,25],[-181,414],[-157,358],[-141,322],[-21,49],[-27,37],[-19,26],[-25,34],[-75,104],[-17,11],[-13,12],[-19,18],[-12,18],[-18,23],[-26,30],[-24,29],[-37,30],[-20,14],[-23,15],[-23,24],[-18,23],[-13,18],[-24,30],[-28,23],[-25,24],[-29,18],[-28,17],[-26,12],[-23,6],[-28,12],[-27,11],[-22,12],[-16,6],[-22,6],[-17,6],[-27,12],[-35,6],[-32,5],[-22,1],[-13,0],[-23,0],[-32,0],[-14,0],[-8,-4],[-14,-6],[-146,-120],[-35,-42],[-25,-23],[-24,-24],[-26,-35],[-14,-12],[-11,-18],[-19,-23],[-23,-36],[-24,-35],[-22,-30],[-18,-29],[-19,-30],[-23,-53],[-21,-37],[-14,-25],[-11,-21],[-18,-32],[-26,-44],[-18,-41],[-18,-30],[-18,-35],[-19,-35],[-18,-42],[-19,-35],[-11,-30],[-27,88],[-13,43],[-11,53],[-10,37],[-21,18],[-13,48],[-8,-69],[-8,6],[3,72],[15,31],[11,30],[-8,40],[-23,58],[-16,47],[-19,-151],[-8,-67],[20,-94],[-17,-185],[-21,32],[-13,16],[-3,-1],[-36,-12],[-41,-416],[-57,7],[-16,71],[-1,3],[-6,-60],[-15,37],[-91,-356],[-21,199],[2,58],[-40,18],[-34,-291],[-19,-32],[-31,-63],[-15,-255],[25,-66],[18,-43],[13,-69],[5,-60],[0,-95],[-7,-64],[-5,-58],[0,-50],[-1,-15],[5,2],[41,21],[-4,-39],[-4,-41],[-7,-50],[-11,-36],[-14,-7],[-3,-22],[-7,-49],[5,-114],[1,-80],[-6,-79],[-14,-83],[-8,-64],[-8,-114],[-14,-70],[-13,-103],[-22,36],[-13,41],[-29,50],[-63,125],[-37,-145],[-24,-94],[-15,-71],[-25,-125],[-17,-95],[-18,-103],[-16,-104],[-10,-68],[-12,-85],[-8,-52],[-10,-79],[-14,-99],[-10,-71],[-20,-147],[-14,-110],[-25,-180],[-17,-452],[-9,-236],[-33,-1077],[-5,-185],[-25,-806],[-1,-29],[-6,-221],[-3,-91],[-10,-315],[-41,-1348],[0,-2],[-2,-67],[-4,-160],[-10,-328],[-204,-163]],[[59903,84015],[-52,-54],[-45,-38],[-20,27],[-19,-8],[-23,40],[-7,71],[-3,79],[-2,65],[3,79],[8,54],[-1,62],[-18,74],[-8,55],[-3,59],[4,57],[3,58],[-2,17],[-99,817],[-21,174],[-3,334],[-2,151],[-2,277],[-1,34],[0,51],[-1,60],[-3,295],[-30,-20],[3,147],[1,108],[-10,92],[-13,30],[-24,-11],[-11,26],[-7,-62],[-19,-21],[-11,-23],[-9,188],[8,64],[9,108],[-19,86],[-96,434],[-53,219],[-26,14],[-5,61],[3,37],[-45,200],[-15,63],[-28,125],[-4,17],[-31,136],[-157,572],[-17,66],[-1,3],[-10,39],[-16,63],[-29,104],[-39,137],[-34,108],[-14,42],[-64,191],[-25,58],[-27,60],[-84,153],[-36,59],[-24,39],[-52,88],[-62,93],[-17,21],[-24,29],[-14,7],[-70,233],[-13,36],[-42,117],[-14,-1],[-32,91],[-7,20],[9,64],[9,-44],[7,-5],[2,-17],[5,-12],[14,-35],[12,-1],[4,13],[2,16],[3,23],[2,18],[1,15],[11,64],[-125,417],[-33,-112],[-24,-47],[-50,-78],[-53,-204],[-22,-88]],[[58004,91338],[-3,59],[-2,117],[6,74],[22,28],[15,-17],[9,177],[-21,71],[-21,72],[24,65],[0,72],[6,181],[3,81],[8,74],[38,191],[-16,36],[12,145],[18,63],[8,2],[7,52],[0,44],[-4,28],[9,73],[6,57],[29,266],[18,156],[32,275],[1,2],[3,30],[-8,51],[-7,47],[-45,281],[-60,382],[1,137],[1,237],[0,42],[0,58],[1,152],[0,1],[1,210],[1,213],[0,110],[1,88],[-41,47],[-10,210],[25,139],[8,5],[-15,161],[36,56],[1,267],[1,139],[12,109]],[[58114,96954],[114,-11],[209,-19],[102,-10],[67,-7],[51,-4],[78,-8],[45,-4],[33,-3],[17,-3],[51,-7],[215,-31],[15,-2],[36,-5],[168,-25],[18,-2],[17,-3],[162,-23],[781,-130],[644,-108],[650,-242],[428,-172],[662,-267],[1,0],[371,-94],[41,-75],[15,-6],[68,-13],[17,-3],[62,45],[520,-133]],[[58004,91338],[-27,12],[-49,10],[-9,-41],[0,-3],[-3,-105],[-81,-120],[7,-284],[-69,115],[-72,113],[-56,84],[-2,0],[-53,4],[-117,8],[-40,0],[-40,3],[-99,-179],[-129,-232],[-66,-198],[-88,-261],[-14,-38],[-19,-57],[-28,-76],[-6,-17],[-11,-31],[-20,-57],[-21,-60],[-32,-508],[7,-365],[-9,-238],[-32,22],[-51,10],[-4,0],[-114,23],[1,342],[-61,465],[-74,-35],[-12,-6],[-57,-31],[-20,-7],[-27,-10],[-196,-71],[-148,-489],[-9,-136],[-33,-473],[-146,-705],[-13,-75],[-19,-98],[-15,-115],[-18,-117],[-21,-116],[-48,-340],[-11,-100],[-4,-59],[-1,-12],[-12,-179],[-5,-68],[-7,-91],[-6,-89],[-8,-119],[-19,-270],[-40,-593],[-4,-61],[-4,-90],[-3,-90],[-18,-460],[-2,-64],[-7,-164],[-9,-172],[-6,-393]],[[55575,83781],[-15,39],[-9,47],[-13,14],[-16,43],[-12,12],[-9,57],[-12,36],[-12,18],[-18,39],[-2,109],[-11,43],[-11,28],[-17,60],[-10,38],[-8,53],[-5,69],[-14,82],[-4,106],[-16,52],[-8,57],[-11,39],[-25,62],[-10,48],[0,70],[9,43],[17,63],[-13,10],[-24,34],[-21,93],[-8,72],[-17,47],[-12,57],[-8,104],[-8,119],[-11,-30],[-11,-13],[-12,21],[2,89],[-14,106],[-167,446],[-26,121],[-64,299],[-98,444],[-42,903],[-30,66],[-72,-197],[-40,-83],[-13,31],[-16,30],[-17,10],[-3,2],[-76,123],[-34,47],[-29,14],[-20,11],[-42,20],[-72,114],[-25,40],[-15,23],[-1,14],[-12,126],[-40,-77],[-3,-7],[-1,-63],[-21,16],[-6,51],[-2,64],[0,1],[-12,25],[-18,6],[-14,3],[-65,101],[-178,379],[-14,15],[-182,196],[-83,91],[-17,17],[-18,18],[-78,-3],[-212,-11],[-18,2],[-29,50],[-25,92],[10,79],[13,29],[2,73],[4,66],[-12,61],[-17,22],[-13,49],[-12,69],[8,40],[17,36],[3,62],[-19,51],[2,73],[9,34],[-10,30],[-12,35],[-11,52],[-4,71],[-10,49],[-8,444],[-44,-24],[-107,-58],[-222,-122],[7,-31],[174,-862],[31,-152],[8,-68],[18,-150],[-189,40],[-99,21],[-19,7],[-31,7],[-56,13],[-42,2],[-8,60],[-137,988],[-8,61],[-8,-47],[-365,-707],[-1,-1],[-83,-162],[-68,-132],[-18,-35]],[[52192,96679],[14,-2],[1080,-134],[182,-23],[120,-15],[319,-40],[409,-50],[32,-4],[76,-10],[66,-8],[20,-3],[37,-4],[71,-9],[10,-1],[295,-37],[316,-39],[83,-4],[101,30],[74,-16],[128,-27],[33,-7],[149,120],[446,82],[281,77],[482,131],[11,3],[198,54],[25,7],[231,63],[55,15],[71,20],[27,7],[196,54],[41,11],[5,1],[234,33],[4,0]],[[96110,89982],[-10,35],[-10,30],[-9,53],[-7,17],[-6,-47],[-6,-53],[-10,-47],[-12,-30],[-4,-70],[-13,-12],[-10,-47],[-12,-53],[-21,-54],[-15,-41],[-14,-53],[-9,-41],[-9,-36],[-9,-41],[-12,-29],[1,-71],[10,-47],[11,-38],[10,-35],[4,-88],[-1,-123],[-13,-44],[-13,-12],[-12,39],[-15,-6],[-22,-47],[-17,-54],[-22,-41],[-13,-23],[-15,13],[-21,16],[-14,-18],[-17,-35],[-15,-12],[-23,-12],[-15,0],[-13,12],[-20,-6],[-13,36],[-15,-18],[-23,-59],[-14,-39],[-12,-36],[-9,-43],[-12,-35],[-16,0],[-16,35],[-20,22],[-13,-4],[-17,-12],[-17,-18],[-11,-47],[-22,-30],[-22,-53],[-12,-43],[-11,-34],[-18,-35],[-19,-47],[-14,-18],[-12,-23],[-12,-77],[-10,-65],[-3,-82],[4,-71],[-5,-71],[-11,-35],[-18,-77],[-6,-54],[-7,-58],[-17,-53],[-13,-53],[-7,-47],[-10,-61],[-12,-40],[-11,-12],[-19,-5],[-4,-95],[-15,-65],[-7,-47],[-30,-29],[-14,-12],[-36,-65],[-9,-50],[-4,-56],[-19,-30],[-13,-29],[-15,53],[-15,29],[-17,-5],[-11,-11],[-12,15],[-16,35],[-13,24],[-16,11],[-13,-4],[-15,-12],[-17,-6],[-15,-6],[-17,0],[-12,-20],[-13,-8],[-24,-13],[-12,-29],[-14,-42],[-9,-35],[-10,-44],[-13,-40],[-9,-122],[-12,-60],[-7,-76],[-10,-100],[-15,-36],[-13,12],[-12,-17],[-22,-41],[-30,-63],[-14,-42],[-10,-44],[-3,-59],[-2,-123],[-9,-58],[-24,-54],[-24,-42],[-15,-10],[-11,10],[-11,-27],[-12,-8],[-9,-53],[-9,-53],[-13,-18],[-11,-18],[-13,-29],[-11,-36],[-13,-51],[-11,-37],[-12,-47],[-9,-42],[-8,-71],[-10,-41],[-17,-53],[-18,-59],[-18,-71],[-12,-59],[-11,-35],[-12,-30],[-11,-47],[-14,-12],[-12,-23],[-14,-30],[-18,-53],[-9,-35],[-10,-36],[-13,-19],[-11,-45],[-12,-50],[-18,-62],[-16,-58],[-24,-61],[-16,-35],[-13,0],[-13,-41],[-10,-59],[-8,-49],[-16,-4],[-14,-42],[-16,-41],[-15,-65],[-9,-65],[-13,-41],[-10,-29],[-13,-65],[-14,-42],[-15,-76],[-17,-30],[-12,-12],[-11,-29],[-13,-69],[-10,-49],[-13,-12],[-17,-41],[-18,-65],[-13,-12],[-15,24],[-13,17],[-12,24],[-19,12],[-13,-15],[-17,-27],[-21,-35],[-30,35],[-48,101],[-28,57],[-58,117],[-111,222],[-21,42],[-13,28],[-10,41],[-15,47],[-21,30],[-12,6],[-16,-24],[-14,41],[-9,53],[-6,77],[-6,65],[-7,65],[-14,29],[-10,65],[-11,59],[-5,51],[-9,52],[-20,28],[-20,-18],[-29,-35],[-12,-57],[-12,-59],[-11,-18],[-12,17],[-14,10],[-4,11],[-7,18],[-119,-413],[-48,-169],[-42,-148],[-85,-296],[-109,-384],[-14,-46],[-23,-1],[-13,12],[-9,5],[-90,54]],[[92462,83386],[-273,153],[-11,-34],[-13,-42],[-12,-21],[-13,-3],[-19,-26],[-11,44],[-26,110],[-30,-1],[-12,26],[-5,65],[-10,47],[-7,-47],[-22,-74],[-14,-50],[-56,-112],[-2,107],[-20,122],[-6,35],[-2,9],[-28,10],[-88,32],[-33,11],[-24,7],[-16,3],[-14,6],[-17,4],[-12,8],[-23,-65],[-14,-82],[-13,-71],[-30,-55],[-24,-81],[-5,-29],[-15,-87],[-42,-135],[-23,-27],[-13,8],[-12,63],[2,158],[23,165],[8,56],[41,152],[13,40],[40,120],[3,23],[1,19],[1,51],[-8,53],[-20,43],[-9,6],[-28,64],[-5,28],[-6,35],[2,70],[39,209],[11,30],[39,108],[7,84],[-13,71],[-13,8],[-17,-42],[-7,-16],[-23,-34],[-33,11],[-28,40],[-16,80],[-21,109],[-10,110],[3,65],[9,215],[-11,71],[-1,1],[-23,37],[-13,15],[-16,19],[-3,-2],[-25,-64],[-13,-47],[-1,-65],[5,-42],[8,-62],[3,-15],[0,-6],[0,-46],[-13,-100],[-24,-88],[-30,-30],[-35,38],[-25,80],[-2,109],[8,81],[12,64],[11,84],[9,105],[0,2],[3,83],[0,41],[-3,2],[-18,98],[-22,53],[-1,0],[-18,11],[-18,10],[-37,-34],[-34,20],[-17,89],[-5,27],[2,223],[-14,78],[-4,20],[-25,22],[-28,-79],[-34,-116],[-7,-36],[-4,-69],[-8,-51],[-25,-82],[-47,-60],[-14,8],[-12,87],[-3,42],[-1,34],[0,30],[1,37],[7,218],[-4,81],[-14,6],[-28,-18],[-11,-6],[-33,-18],[-4,-3],[-24,-15],[-32,-23],[-42,-30],[-42,-29],[-4,-3],[-37,-25],[-20,-14],[-35,-23],[-17,-12],[-60,-41],[-35,-24],[-17,-11],[-38,-24],[-12,-6],[-46,-30],[-80,-59],[-1,-1],[-60,-37],[-23,-15],[-15,-10],[-21,-16],[-35,-25],[-23,-17],[-17,-12],[-30,-22],[-92,-67],[-20,-15],[-1,0],[-14,-10],[-84,-61],[-22,-16],[-28,-21],[-25,-19],[-13,-9],[-13,-9],[-19,-14],[-64,-47],[-31,-23],[-1,0],[-50,-38],[-18,-13],[-148,-108],[-36,-26],[-1,0],[-20,-15],[-19,-13],[-143,-103],[-24,-17],[-39,-28],[-62,-43],[-47,-25],[-92,370],[-27,27],[-51,50],[-98,97],[-25,24],[-10,9],[-18,17],[-81,77],[-248,236],[-57,224],[-36,-118],[-10,-41],[-11,-24],[-13,-29],[-13,0],[-10,-47],[-12,-24],[-12,-35],[-11,-30],[-10,-35],[-9,-53],[-11,-48],[-12,-35],[-11,-35],[-12,-36],[-12,-41]],[[88066,85468],[-12,-18],[-12,-23],[-12,17],[-9,48],[-10,29],[-7,53],[-15,36],[-6,56],[3,73],[6,124],[-5,65],[-8,47],[-5,53],[-3,59],[-3,59],[-9,42],[-12,-24],[-14,24],[-12,15],[-2,2],[-5,59],[-5,65],[-10,30],[-12,0],[-9,59],[-1,65],[-4,59],[-4,64],[-3,65],[-11,36],[-12,47],[-9,47],[-10,41],[5,59],[12,24],[13,30],[13,35],[12,35],[13,24],[12,35],[11,47],[10,71],[7,53],[10,45],[11,32],[11,18],[13,12],[15,29],[14,47],[14,53],[10,42],[11,29],[9,47],[9,36],[13,35],[12,53],[14,36],[13,29],[12,35],[16,48],[11,23],[14,30],[14,6],[10,29],[14,24],[16,35],[13,30],[16,41],[14,35],[13,42],[12,17],[12,36],[9,35],[13,36],[18,41],[12,35],[14,12],[11,-24],[11,30],[7,49],[9,45],[13,12],[12,30],[13,35],[13,24],[10,29],[19,36],[12,23],[11,30],[15,35],[10,30],[13,47],[12,41],[12,41],[12,42],[12,47],[15,47],[15,35],[12,18],[18,41],[16,36],[13,41],[10,30],[-1,64],[-9,48],[-20,84],[-17,63],[5,66],[13,10],[13,-5],[-12,65],[4,58],[-6,54],[-3,81],[-5,58],[-15,-12],[7,59],[8,59],[5,67],[5,58],[5,83],[7,49],[9,59],[10,40],[17,36],[24,6],[14,19],[16,19],[16,10],[14,18],[13,27],[15,49],[20,42],[23,31],[12,32],[-1,262],[-3,211],[0,9],[-1,91],[-3,170],[0,7],[-2,142],[-3,177],[-3,188],[-2,290],[-1,94],[-3,27],[-10,106],[-1,8],[-17,248],[-2,19],[-4,52],[-7,65],[-5,62],[4,83],[4,15],[10,43],[2,5],[14,42],[10,78],[1,73],[-5,71],[-10,73],[-23,125],[-15,78],[-6,67],[-2,115],[0,68],[3,71],[2,74],[8,219],[2,4],[9,16],[9,16],[12,-24],[2,-5],[1,-1],[2,-10],[8,-40],[1,-3],[0,-3],[8,-104],[0,-2],[9,-113],[9,-94],[2,-20],[1,-4],[13,-51],[12,2],[12,38],[18,92],[13,23],[30,47],[12,50],[7,51],[-4,75],[-7,64],[-9,57],[-8,49],[-6,76],[-7,68],[-8,62],[-5,66],[0,1],[-5,78],[-5,86],[-5,46],[-2,15],[-8,76],[-9,66],[-10,67],[-2,10],[-7,52]],[[88891,95042],[2,0],[5,1],[8,0],[85,3],[42,2],[44,5],[15,1],[34,3],[13,2],[17,0],[43,4],[26,1],[10,1],[15,1],[6,1],[14,1],[47,4],[3,0],[3,0],[4,0],[18,2],[21,3],[17,1],[15,2],[12,1],[14,1],[13,0],[5,-4],[1,-2],[4,4],[8,4],[3,1],[3,1],[2,1],[9,-2],[13,-1],[16,-1],[6,0],[20,2],[23,2],[34,6],[29,2],[12,0],[36,4],[33,2],[26,2],[14,1],[20,2],[34,2],[42,4],[62,1],[27,2],[21,1],[13,3],[1,0],[26,-1],[22,1],[36,2],[36,-1],[17,0],[16,1],[23,2],[12,2],[44,4],[8,0],[2,1],[17,0],[21,1],[14,2],[20,3],[14,4],[20,4],[21,0],[15,-1],[27,-3],[27,-8],[12,-5],[31,-18],[41,-23],[38,-14],[28,-7],[21,0],[13,1],[40,5],[19,3],[85,8],[94,7],[131,5],[38,2],[138,0],[67,1],[32,-1],[16,0],[56,0],[24,0],[137,-1],[3,1],[1,1],[73,-1],[66,0],[71,0],[142,10],[15,1],[56,2],[26,2],[106,5],[85,5],[57,3],[23,1],[99,5],[43,1],[13,1],[16,0],[67,2],[54,2],[62,1],[13,0],[3,0],[23,0],[23,-1],[20,0],[12,0],[40,0],[48,0],[20,-1],[20,0],[22,-1],[16,0],[14,-1],[22,0],[14,0],[14,0],[4,0],[21,1],[17,0],[14,-1],[28,-1],[41,-2],[13,0],[24,0],[12,1],[40,1],[37,2],[6,0],[2,0],[3,0],[14,0],[45,1],[25,0],[15,0],[19,0],[16,1],[28,0],[3,0],[18,2],[4,3],[2,5],[3,2],[4,0],[1,-2],[1,-2],[7,-5],[15,-1],[4,14],[2,1],[3,1],[11,1],[3,-3],[2,-4],[4,-4],[30,0],[16,1],[15,0],[9,0],[7,0],[11,0],[12,1],[15,0],[6,0],[4,-1],[2,-1],[4,-3],[4,-2],[14,-3],[8,-1],[1,0],[6,-1],[15,-2],[27,-4],[1,0],[20,-3],[23,-3],[21,-3],[6,-1],[1,0],[4,-1],[24,-3],[3,-1],[19,-2],[2,0],[18,-3],[6,-1],[9,-1],[3,-1],[2,-1],[6,0],[5,-1],[1,0],[9,-1],[1,0],[10,-2],[9,-1],[9,-1],[17,-4],[7,-1],[16,-1],[1,0],[11,-2],[9,-1],[5,-1],[8,-1],[5,-1],[12,-1],[13,-2],[1,0],[1,0],[22,-4],[1,-2],[1,-1],[2,-3],[21,-1],[25,0],[13,-1],[18,0],[68,2],[12,1],[6,0],[4,1],[20,2],[13,1],[23,2],[11,1],[16,-2],[19,0],[10,3],[10,-3],[6,1],[25,-1],[1,0],[20,1],[16,0],[42,0],[6,0],[57,1],[24,1],[9,0],[1,0],[2,0],[2,0],[29,0],[3,0],[2,0],[26,-6],[6,-1],[3,-8],[1,0],[27,1],[36,2],[1,0],[20,0],[6,0],[25,1],[10,1],[8,1],[26,2],[8,1],[14,2],[13,1],[68,3],[3,0],[20,-1],[9,0],[39,-2],[25,-1],[71,-1],[45,0],[22,-1],[27,0],[22,-1],[1,0],[5,0],[92,-2],[53,-2],[77,-6],[8,-1],[10,-1],[6,-1],[4,0],[17,0],[17,-1],[16,-1],[40,0],[9,0],[72,1],[83,1],[1,0],[2,0],[2,0],[41,1],[8,0],[12,0],[26,0],[1,0],[23,0],[27,0],[16,1],[32,-16],[5,3],[3,7],[2,2],[3,4],[12,0],[4,0],[18,0],[15,-1],[10,0],[13,-1],[24,0],[1,0],[2,-1],[10,0],[34,0],[37,0],[13,3],[172,-4],[59,-1],[13,0],[13,-1],[63,-1],[26,0],[44,-1],[14,0],[25,-1],[21,0],[54,-1],[15,0],[13,-1],[14,0],[57,-1],[16,0],[18,-1],[22,0],[11,0],[75,-2],[10,91],[12,119],[8,81],[16,158],[7,69],[40,387],[8,78],[16,159],[16,156],[21,-2],[7,0],[80,-8],[31,-3],[33,-4],[132,-12],[22,-3],[32,-3],[147,-16],[5,-1],[17,-2],[25,-2],[46,-4],[17,-1],[16,-1],[20,-2],[15,-1],[12,-1],[16,-1],[13,-1],[54,-4],[34,-3],[26,-1],[33,-3],[34,-3],[10,0],[0,-6],[20,-2],[54,-5],[60,-5],[75,-18]],[[97923,96229],[-10,-58],[-8,-59],[-6,-53],[2,-63],[-6,-59],[-18,-47],[-12,-30],[-13,11],[-12,46],[-15,23],[-15,-36],[-9,-50],[-14,-20],[-13,-36],[-10,-39],[-31,-61],[-28,-53],[-20,-41],[-11,-18],[-18,-12],[-17,24],[-16,29],[-14,6],[-16,0],[-12,0],[-10,48],[-10,41],[-11,35],[-25,-12],[-13,-17],[-15,-36],[-14,-23],[-14,-26],[-32,-69],[-14,-29],[-16,-36],[-10,-35],[-10,-41],[-10,-53],[-6,-53],[1,-77],[1,-69],[3,-61],[-4,-65],[-12,-28],[-11,-31],[11,-47],[8,-66],[-2,-60],[-2,-61],[1,-64],[-8,-50],[-16,-59],[-9,-47],[-7,-47],[-13,-42],[-12,-35],[-14,-18],[-12,-59],[-11,0],[-20,-47],[-19,-12],[-19,12],[-11,12],[-20,0],[-14,-6],[-14,-24],[-15,-29],[-19,-30],[-17,-17],[-24,41],[-11,6],[-12,46],[-11,4],[-14,-56],[-8,-71],[-15,-48],[-13,-5],[-14,-35],[-9,-42],[-13,-35],[-14,-53],[-18,-24],[-13,-38],[-16,-32],[-10,-36],[-17,-47],[-11,-12],[-16,-12],[-16,-59],[-11,-33],[-13,-26],[-16,-47],[-11,-59],[-12,-24],[-10,-47],[-11,-47],[-11,-59],[-8,-53],[-11,-82],[-9,-42],[13,-53],[4,-65],[-3,-82],[6,-65],[4,-65],[5,-77],[12,-35],[-10,-65],[-10,-59],[-14,-59],[-14,-47],[-11,-36],[-18,-41],[-16,-29],[-10,-48],[-1,-76],[-13,-36],[-12,-12],[-13,-53],[-9,-59],[-10,-29],[-9,-41],[-14,-32],[-10,-33],[-6,-53],[-9,-71],[-6,-83],[-1,-3],[-8,-50],[-17,-18],[-10,-29],[-13,-18],[-11,-6],[-11,-29],[-11,-36],[-12,-17],[-13,-12],[-12,-35],[-16,5],[-12,-59],[-11,-23],[-16,-36],[-17,-23],[-8,-65],[-7,-77],[-8,-76],[-5,-124],[-13,-30],[-16,0],[-12,-53],[-14,-59],[-11,-41],[-3,-62],[-2,-64],[1,-92],[-2,-59],[-3,-95],[-10,-71],[-9,-53],[-13,-47],[-17,-35],[-10,-47],[-11,-59],[-7,-48],[-5,-88],[-14,-36],[-23,-17]],[[96702,75659],[-5,-38],[-16,-9],[-33,-41],[-49,54],[-39,-127],[-26,-24],[-25,-23],[-16,-12],[-32,132],[4,84],[-6,119],[-9,222],[-14,77],[-13,31],[-8,53],[-23,18],[-24,34],[-23,1],[-27,51],[-16,50],[-14,19],[-13,10],[-4,111],[1,73],[-5,114],[-6,76],[-7,42],[-13,80],[-15,-15],[-15,63],[-10,51],[-12,16],[-19,5],[-12,14],[-21,17],[-12,2],[5,60],[14,25],[6,50],[2,89],[-10,33],[-10,73],[-9,67],[-2,92],[4,89],[18,177],[-23,183],[-16,-28],[-14,0],[1,63],[-16,86],[-26,35],[-20,81],[0,90],[7,62],[11,59],[1,72],[3,74],[-6,57],[-17,51],[-1,6],[-1,0],[-10,44],[-23,43],[-9,19],[-15,30],[-13,17],[-16,24],[-10,52],[1,59],[3,112],[-1,76],[-2,87],[9,79],[10,57],[11,47],[0,65],[-13,23],[-22,81],[-15,43],[-8,53],[-39,-59],[-12,-23],[-11,-18],[-1,0],[-19,0],[-23,18],[-16,17],[-14,24],[-8,15],[-8,15],[-12,11],[-22,-47],[-11,-47],[-9,-47],[-2,-5],[-9,-42],[-14,-24],[-14,30],[-10,64],[-8,71],[-10,59],[-14,12],[-13,0],[-12,18],[-21,0],[9,41],[1,6],[17,72],[12,52],[1,40],[7,184],[-46,147],[-11,-11],[-1,-1],[-30,95],[26,118],[-25,153],[-34,145],[-10,-27],[-23,-57],[-10,37],[-12,64],[-20,104],[-11,71],[30,171],[7,-59],[7,-48],[10,-40],[35,31],[12,13],[-11,55],[-22,39],[-11,45],[-7,67],[-8,50],[-9,47],[-4,77],[-14,47],[-12,35],[-17,0],[-16,12],[-14,-17],[-15,11],[-13,6],[-20,24],[-15,35],[-8,59],[-21,53],[-13,12],[-15,12],[10,59],[15,59],[13,65],[10,76],[14,42],[13,53],[12,59],[10,29],[13,43],[10,46],[11,65],[10,59],[11,41],[5,71],[14,6],[15,35],[12,30],[11,41],[11,41],[11,53],[18,77],[11,47],[13,83],[8,53],[16,59],[7,77],[3,59],[8,53],[13,70],[9,65],[8,53],[18,77],[11,41],[11,48],[4,82],[12,59],[7,77],[8,71],[10,53],[14,41],[6,94],[11,24],[12,6],[50,202],[11,34],[9,41],[11,53],[8,59],[11,53],[10,42],[9,41],[13,53],[9,71],[7,71],[-7,76],[1,83],[6,71],[12,59],[10,47],[11,29],[13,12],[14,6],[25,-11],[17,27],[9,56],[5,71],[2,110],[5,62],[17,50],[0,80],[-11,80],[7,50],[9,39],[18,26],[14,46],[30,102],[12,15],[12,28],[10,40],[15,53],[8,64],[4,97],[7,83],[10,95],[12,40],[5,60],[14,36],[5,60],[10,38],[22,130],[6,60],[16,32],[6,76],[12,66],[13,92],[10,45],[7,57],[12,58],[10,53],[13,43],[15,20],[15,44],[11,29],[9,40],[17,64],[22,54],[18,12],[11,54],[13,69],[19,8],[7,51],[1,72],[15,29],[-5,62],[-32,55],[-14,63],[-21,46],[-15,158],[-15,74],[-18,56],[-25,67],[-11,57],[-16,76],[-9,48],[-20,89],[-30,84],[-10,77],[-11,69],[-19,87],[-9,54],[-11,87],[-19,56],[-15,34],[-11,55],[-19,69],[-14,54],[-13,40],[-7,52],[-11,6],[-19,-85],[-11,2],[0,66],[3,59],[12,17],[6,68],[3,74],[-1,59],[11,41],[5,59],[6,89]],[[97923,96229],[1,0],[115,-14],[34,-4],[48,-6],[49,-6],[11,-1],[5,-1],[4,-1],[27,-3],[82,-9],[46,-5],[13,-2],[22,-2],[14,-2],[168,-19],[13,-1],[28,-3],[25,-1],[37,-3],[17,-2],[66,-4],[16,-2],[5,0],[8,-1],[12,0],[22,-2],[21,-2],[60,-6],[51,-5],[18,-1],[23,0],[28,-1],[54,-1],[138,-2],[23,0],[69,-2],[45,-2],[110,-8],[16,-1],[44,2],[2,0],[21,2],[13,0],[48,-2],[3,0],[82,-2],[93,-3],[99,-3],[26,-1],[23,-1],[40,-1],[38,-1],[-14,-56],[-26,-104],[-65,-256],[-20,-81],[-36,-145],[-50,-197],[-37,-149],[-47,-186],[-57,-228],[-13,-55],[-13,-52],[-2,-42],[5,-20],[9,-43],[1,-8],[4,-40],[1,-6],[-3,-88],[-3,-85],[-1,-54],[-1,-13],[-3,-19],[2,-136],[11,-88],[9,-59],[-5,-77],[1,-1],[7,-30],[-2,-60],[-6,-45],[-4,-24],[-2,-15],[-4,-15],[-2,-11],[-8,-46],[-1,-1],[-4,-8],[-11,-4],[-18,0],[-15,-5],[-18,-14],[-22,-10],[-32,24],[-3,-7],[-1,-2],[-9,-34],[-10,-77],[-1,-6],[8,-87],[1,-16],[0,-11],[5,-97],[12,-76],[0,-30],[-6,-88],[-4,-108],[-3,-24],[-6,-63],[0,-65],[4,-94],[0,-2],[7,-96],[-12,-34],[-15,-2],[-8,-19],[0,-5],[-4,-152],[-5,-39],[-7,-29],[-3,-16],[-6,-34],[-7,-38],[-1,-1],[-1,-8],[-17,-104],[-5,-80],[-8,-73],[-2,-17],[-4,-26],[-5,-69],[0,-104],[1,-43],[0,-1],[-11,-21],[-4,-2],[-16,-5],[-2,-1],[-12,0],[-16,4],[-8,-4],[-19,-25],[-8,-69],[0,-70],[-4,-89],[7,-107],[8,-96],[-2,-25],[-2,-106],[0,-21],[-2,-26],[-2,-29],[10,-86],[12,-34],[6,-17],[17,-44],[0,-1],[1,-3],[10,-37],[0,-2],[2,-10],[4,-66],[0,-6],[5,-47],[1,-6],[1,-7],[1,-27],[1,-12],[0,-11],[2,-108],[1,-7],[8,-34],[4,-20],[1,-23],[-1,-57],[6,-48],[5,-36],[3,-46],[0,-11],[9,-91],[0,-12],[4,-58],[1,-85],[9,-61],[4,-21],[-1,-62],[-9,-45],[1,-72],[-11,-73],[-1,-3],[-1,-5],[-1,-2],[-9,-44],[-3,-16],[-1,-8],[-2,-53],[1,-35],[18,-89],[1,-1],[10,-50],[5,-33],[0,-29],[0,-17],[4,-91],[8,-90],[-4,-49],[-7,-43],[-8,-49],[1,-83],[1,-44],[0,-61],[2,-74],[0,-23],[5,-119],[2,-30],[8,-100],[2,-25],[0,-2],[0,-5],[-1,-52],[-3,-33],[-5,-77],[0,-17],[3,-75],[13,-65],[6,-22],[1,-35],[-1,-90],[-8,-42],[-6,-75],[3,-119],[0,-68],[-13,-55],[-10,-56],[-6,-35],[-7,-29],[-2,-34],[-28,2],[1,28],[-3,-2],[-9,-8],[-7,-9],[-8,-12],[-5,-10],[-11,-24],[-1,-1],[-3,-5],[-18,-7],[-3,-4],[-6,-11],[-8,-66],[-9,-78],[-11,-44],[-19,-14],[-3,0],[-14,-26],[-11,-21],[-13,-30],[-7,-25],[-5,-22],[10,-70],[1,-4],[1,-5],[4,-55],[-1,-39],[-1,-41],[-5,-73],[0,-10],[7,-41],[2,-4],[6,-15],[1,-8],[1,-93],[5,-107],[-4,-29],[0,-3],[-10,-30],[-6,-15],[-7,-19],[-14,-22],[-1,-5],[8,-97],[14,-53],[11,-48],[3,-34],[-8,-118],[-4,-59],[6,-55],[-11,-52],[-14,-40],[-12,-34],[-18,-23],[-17,-41],[-3,-9],[21,-88],[17,-89],[1,-20],[4,-22],[-1,-19],[1,-10],[-3,-65],[-3,-59],[-5,-64],[-6,-59],[0,-4],[-2,-10],[-10,-82],[-6,-50],[-3,-31],[-1,-6],[-15,-12],[-11,0],[-3,0],[-1,-2],[-6,-82],[-7,-22],[-4,-3],[-18,-31],[-9,-38],[-8,-68],[-4,-12],[-6,-12],[-5,-65],[-11,-72],[-7,-18],[-23,-12],[-13,-35],[-4,-62],[-14,-40],[-17,48],[-6,17],[-19,-27],[-13,3],[-1,-1],[-6,-8],[-5,-15],[-1,-6],[-1,-22],[-1,-18],[-2,-30],[0,-1],[1,-57],[1,-15],[11,-86],[5,-69],[0,-2],[-7,-174],[0,-124],[0,-12],[10,-47],[16,-31],[-4,-90],[-3,-44],[0,-5],[3,-71],[2,-40],[-3,-25],[2,-77],[2,-9],[19,-10],[18,-24],[21,14],[6,11],[4,4],[7,0],[2,-3],[2,-8],[12,-48],[13,-55],[3,-30],[6,-52],[1,-6],[4,-10],[-6,-53],[-7,-25],[-7,-63],[-3,-95],[11,-91],[-7,-61],[-6,-75],[-2,-26],[0,-1],[-13,-14],[-13,-21],[-2,-4],[-2,-6],[-14,-160],[1,-2],[23,-80],[5,-50],[5,-96],[2,-39],[17,-81],[9,4],[1,-1],[3,-56],[0,-71],[12,-53],[9,-33],[9,-54],[3,-19],[0,-13],[-7,-96],[-3,-46],[0,-7],[21,-143],[1,-7],[11,-31],[4,-17],[7,-57],[3,-36],[1,-3],[0,-20],[1,-58],[3,-59],[-2,-5],[0,-11],[-16,-23],[-3,-40],[1,-23],[8,-121],[5,-34],[2,-19],[0,-3],[5,-81],[5,-36],[10,-68],[7,-23],[6,-30],[1,-6],[9,-47],[14,-59],[38,-77],[15,-6],[16,0],[25,-9],[13,-8],[14,-48],[20,-147],[3,-62],[1,-22],[1,-7],[0,-1],[-2,-55],[-2,-22],[-4,-92],[-8,-55],[-8,-74],[-2,-76],[-17,-2],[-8,7],[-41,46],[-1,1],[-23,3],[-23,4],[-14,0],[-6,21],[-8,35],[-9,61],[-1,12],[-17,24],[-3,1],[-12,11],[-14,53],[-2,8],[-2,7],[-15,29],[0,3],[-15,33],[-31,4],[-18,28],[-22,18],[-15,27],[-16,6],[-9,-32],[-12,-45],[-3,-16],[-1,-3],[-9,-61],[-11,-25],[-2,-3],[-1,-3],[-5,-12],[-19,-48],[-13,-12],[-14,-27],[-18,-12],[-16,-12],[-9,18],[-9,7],[-8,4],[-7,-17],[-16,-26],[-17,-3],[-20,65],[-17,44],[-1,5],[-14,51],[-15,12],[-20,11],[-15,-10],[-14,-40],[-18,-26],[0,2],[-16,44],[-12,31],[-16,87],[-5,48],[-12,12],[-10,37],[-9,10],[-18,10],[-16,82],[-3,22],[-10,57],[-17,59],[-10,49],[-5,21],[-17,-44],[-10,-13],[-19,-1],[-21,-12],[-13,0],[-14,28],[-13,18],[-1,1],[-1,0],[-22,71],[-1,61],[-3,23],[-5,75],[3,87],[1,5],[1,11],[0,14],[-1,78],[-1,4],[0,32],[-14,24],[-8,46],[-8,74],[-1,26],[-2,89],[1,63],[-7,34],[-15,-37],[-5,-57],[-4,-33],[-4,-27],[-8,-54],[-1,-1],[-8,-6],[-20,-6],[-13,-22],[-1,-3],[-5,-39],[-27,-97],[-17,-29],[-18,-38],[-13,-16],[-5,-13],[-16,-101],[-2,-5],[0,-3],[-1,-2],[-9,-23],[-11,-8],[-3,-2],[-19,-8],[-9,-2],[-30,-32],[-7,-8],[-11,-15],[-5,-15],[-7,-29],[-12,-27],[-21,-25],[-35,-2],[-10,6],[-16,-22],[-12,-29],[-3,-6],[-16,-19],[-10,-15],[-21,0],[-10,-43],[-2,-9],[-6,-17],[-14,-28],[-15,-30],[-10,-33],[-17,-30],[-13,-32],[-22,-73],[-15,-40],[-9,-35],[-20,-57],[-17,-57],[-14,-11],[-4,0],[-11,-36],[-10,-34],[-10,-41],[-7,-18],[-21,17],[-4,10],[0,1],[-18,-95],[-15,-91],[-22,-82],[-14,-33],[-4,-22],[-14,-68],[-26,-55],[-13,-68],[-5,-33],[-2,-48],[-10,-81],[-5,-21],[-19,-101],[-15,-57],[-16,-79],[-12,-61],[-5,-29],[-8,-38],[-29,-215],[-14,-31],[-2,-6],[0,-2],[-7,-34],[-6,-29],[0,-1],[-16,-23],[0,-1],[-24,-41],[-9,-22],[-15,-53],[-6,-42],[0,-3],[-8,-46],[-14,-44],[-45,-42],[-11,-11],[-14,-30],[-9,-25],[-15,-6],[-14,17],[-13,-6],[-16,-28],[-5,-10],[-2,-4],[-4,-23],[-4,-21],[-1,-2],[-19,-28],[-3,-6],[-1,-3],[-11,-62],[-10,-33],[-12,-12],[-13,-46],[-9,-37],[-18,-66],[-106,-834],[0,-5],[-22,-136],[-9,-71],[-4,-31],[-91,-689],[-42,-326]],[[69820,94918],[-2,-577],[-2,-586],[-13,-47],[1,-71],[-7,-53],[-14,-23],[6,-71],[4,-65],[84,-58],[75,-51],[2,-68],[-9,-59],[0,-77],[0,-65],[-9,-70],[-8,-59],[-2,-65],[-1,-71],[11,-30],[14,-5],[3,-59],[-8,-65],[0,-71],[7,-65],[7,-47],[-4,-65],[-9,-77],[-14,-53],[-12,-71],[-2,-71],[6,-82],[8,-47],[-3,-65],[-6,-59],[7,-83],[2,-59],[1,-82],[5,-83],[-1,-59],[-2,-59],[-4,-59],[-6,-65],[-7,-47],[-13,-35],[-15,-36],[-14,-14],[-13,-15],[-10,-30],[-12,-41],[-7,-59],[6,-59],[3,-59],[11,-59],[3,-59],[0,-71],[1,-59],[-4,-65],[-4,-59],[-1,-65],[-2,-59],[-7,-53],[-5,-65],[-11,-47],[-8,-47],[-15,-29],[-17,-30],[-12,6],[-15,35],[-12,12],[-14,-12],[-13,6],[-14,-6],[-13,-59],[-13,-35],[-9,-41],[-16,-30],[-14,-35],[-15,-42],[-12,-53],[-13,-29],[-11,-36],[-14,-41],[-12,-12],[-15,0],[-12,-29],[-13,0],[-12,18],[-12,23],[-11,12],[-13,0],[-12,35],[-13,36],[-13,29],[-14,-6],[-13,-23],[-17,6],[-17,29],[-12,12],[-16,0],[-12,12],[-16,-6],[-14,-12],[-13,-29],[-13,-30],[-12,-12],[-15,-6],[-12,6],[-18,-6],[-11,48],[-6,59],[-13,11],[-17,-11],[-14,-6],[-11,11],[-12,6],[-14,18],[-14,0],[-15,30],[-14,53],[-11,-6],[-14,-6],[-11,6],[-14,17],[-12,-17],[-3,-65],[-4,-65],[-1,-71],[14,-59],[8,-53],[-9,-47],[-13,-18],[-10,-29],[-15,-36],[-13,-23],[-7,-53],[-18,-52],[-13,12],[-15,2],[-4,-81],[14,-62],[9,-38],[9,-66],[12,-50],[9,-38],[5,-58],[-20,-87],[-16,-97],[-5,-54],[-4,-59],[2,-60],[12,-21],[17,-72],[-8,-53],[-6,-66],[-8,-97],[-14,-83],[2,-93],[3,-64],[8,-57],[4,-59],[-7,-71],[-18,-88],[-7,-50],[-14,-23],[-5,-103],[5,-65],[3,-75],[8,-73],[-9,-58],[-36,32],[-12,-34],[-20,41],[-14,-7],[-16,12],[-12,-24],[-14,-41],[-10,-35],[-11,-69],[-2,-73],[-9,-81],[-7,-72],[-3,-109],[-1,-65],[20,-14],[12,-48],[13,-57],[19,-16],[14,-32],[7,-47],[13,-91],[7,-51],[6,-73],[7,-89],[5,-99],[8,-84],[7,-65],[6,-89],[-4,-78],[-11,-61],[-16,-60],[3,-190],[2,-356],[3,-170],[3,-283],[4,-366],[35,-86],[40,-87],[19,-59],[63,-320],[23,-99],[20,-89],[35,-423],[5,-26],[8,-37],[65,-317],[15,-60],[18,-84],[14,-68],[12,-59],[4,-19],[-21,-105],[-5,-21],[-77,83],[-45,413],[-70,-112],[-27,-37],[-13,-16],[26,-295],[16,-472],[-31,-130],[49,-260],[27,-83],[13,-40],[-30,-213],[-55,95],[10,-1069],[3,-371],[6,-779],[1,-120],[4,-534],[5,-605],[1,-154],[1,-167],[1,-113],[1,-137],[4,-592],[0,-61],[-13,-66],[-27,-135],[-6,-194],[-17,-5],[-42,-11],[-12,-3],[-20,-5],[-30,-10],[-23,-8],[-13,-26],[-11,-21],[-29,-59],[-76,-94],[-58,-165],[-6,-65],[-14,-71],[-9,-41],[-11,-6],[-62,-124],[-10,-63],[-24,-138],[-13,-106],[-7,-59],[6,-236],[-2,-71],[-9,-53],[-1,-59],[10,-65],[8,-47],[3,-65],[7,-47],[1,-65],[1,-71],[-1,-82],[-3,-65],[-1,-77],[-5,-83],[-1,-236],[10,-135],[48,-248],[15,-130],[-11,-59],[-8,-53],[-7,-59],[-13,-47],[-8,-47],[-3,-59],[1,-83],[2,-76],[-2,-89],[-1,-59],[3,-65]],[[68534,72783],[-10,-29],[-8,-65],[-5,-71],[-8,-71],[-14,-47],[-11,-18],[-13,-41],[-17,-71],[-14,-82],[-15,-65],[-15,-30],[-19,-6],[-8,-47],[-11,-29],[-16,-42],[-14,-17],[-13,-30],[-10,-59],[-6,-71],[10,-88],[7,-47],[1,-95],[0,-76],[-22,-153],[-13,-89],[-15,-47],[-17,-54],[-9,-82],[-17,-59],[-16,-59],[-11,-30],[-15,-23],[-9,-83],[-2,-59],[7,-77],[3,-76],[9,-59],[10,-42],[2,-70],[-8,-71],[-6,-71],[-11,-29],[-7,-48],[-22,6],[-16,-11],[-18,-48],[-9,-53],[-14,-100],[-8,-47],[-14,-36],[-15,-17],[-12,-71],[-17,-12],[-12,30],[-14,5],[-20,30],[-17,0],[-12,-12],[-11,-23],[-21,-201],[-12,-35],[-12,11],[-19,12],[-19,0],[-13,18],[-15,-18],[-14,-23],[-16,-12],[-12,-18],[-19,-12],[-14,-17],[-15,-12]],[[67746,69639],[-10,35],[-11,36],[-14,6],[-5,70],[6,59],[2,77],[-7,83],[-5,70],[-10,53],[-10,59],[-15,24],[-16,18],[-14,41],[-5,71],[-12,53],[-18,24],[-10,64],[-17,54],[-15,76],[-11,30],[-12,65],[3,141],[7,77],[-1,71],[0,76],[-2,77],[-10,30],[-15,17],[-12,12],[-16,6],[-13,-24],[-16,48],[-15,41],[-14,23],[-6,71],[-3,65],[-4,83],[-7,47],[-10,65],[-11,23],[-5,65],[3,71],[3,71],[1,65],[6,82],[-49,96],[-111,207],[-163,313],[-11,21],[-39,70],[-111,201],[-52,97],[-80,146],[-100,183],[-95,190],[-126,246],[-3,6],[-2,-65],[-4,-77],[-15,-17],[-7,-53],[-5,-70],[-26,-84],[-11,-6],[-15,-11],[-18,17],[-12,-23],[-18,-59],[-12,17],[-12,-6],[-14,-8],[-6,56],[-64,153],[-6,18],[11,78],[14,99],[13,89],[0,1],[21,146],[1,76],[-4,71],[-1,77],[1,59],[-5,71],[-6,94],[-1,71],[-1,94],[-6,65],[-10,45],[-3,61],[-2,152],[-5,286],[-8,518],[-37,1],[-1,0],[-127,5],[-21,231],[-31,335],[-16,6],[-15,6],[-12,-41],[-15,6],[-12,-36],[-13,-6],[-17,6],[-16,-18],[-10,-47],[-15,-23],[-10,-48],[-12,-23],[-11,-6],[-22,-35],[-15,-36],[-10,-53],[-22,118],[-16,83],[-13,69],[-20,109],[-28,150],[-48,258],[-14,77],[-33,189],[-79,460],[-11,66],[-4,18],[-15,90],[-5,31],[-31,175],[-24,139],[-41,238],[-63,366],[-25,143],[-18,106],[-42,240],[-16,93],[0,1],[-51,296],[-86,500],[-18,102],[-30,171],[-43,252],[-7,42],[-5,25],[-14,83],[-52,298],[0,1],[-33,196],[-62,355],[-41,237],[-26,154]],[[64748,81876],[1,0],[65,64],[1,1],[3,6],[48,119],[12,126],[4,45],[-15,215],[2,164],[31,163],[17,85],[1,6],[0,1],[38,49],[49,65],[2,2],[16,21],[37,50],[17,21],[41,64],[110,169],[1,1],[-33,203],[-30,187],[-43,271],[-66,419],[-32,174],[-95,582],[-61,377],[-8,48],[-12,74],[-7,55],[-1,0],[-81,1171],[-13,189],[-42,598],[-20,282],[0,1],[-28,404],[-10,141],[-11,162],[-27,379],[-8,125],[-6,81],[-12,177],[-11,83],[-77,609],[0,4],[-48,375],[-58,463]],[[63772,95589],[83,-5],[1,0],[439,-51],[215,-24],[1339,-220],[722,-118],[253,-20],[3,1],[167,60],[56,22],[492,-54],[178,-19],[50,-5],[352,-39],[1595,-187],[103,-12]],[[78930,95230],[75,-233],[22,-69],[49,-152],[35,-110],[10,-31],[133,-413],[11,-35],[86,-273],[35,-110],[20,-108],[22,-125],[15,-82],[21,-117],[37,-203],[87,-478],[11,-56],[33,-195],[11,-63],[8,-50],[3,-14],[61,-363],[69,-423],[10,-107],[34,-369],[7,-75],[13,-138],[9,-103],[40,-435],[28,-304],[0,-6],[17,-324],[9,-170],[25,-354],[8,-47],[6,-59],[8,-73],[5,-60],[3,-61],[5,-70],[0,-1],[9,-78],[6,-126],[9,-71],[5,-72],[12,-334],[19,-299],[4,-73],[22,-331],[8,-130],[11,-173],[-5,-480],[-1,-85],[-1,-176],[-11,-453],[-7,-298],[-18,-180],[-11,26],[-12,3],[-12,3],[-5,-5],[-12,-49],[-1,-17],[-2,-16],[-3,-28],[-3,-102],[3,-223],[1,-65],[0,-16],[-5,-42],[-2,-15],[-1,-11],[-2,-3],[-13,-35],[-5,-15],[-13,-2],[-44,-7],[-11,-20],[-12,-23],[-3,-15],[0,-19],[0,-40],[0,-12],[2,-18],[16,-112],[4,-67],[-1,-46],[-11,-51]],[[79915,84370],[-13,-6],[-13,-6],[-15,0],[-14,12],[-12,23],[-8,24],[-2,71],[-11,5],[-36,15],[-77,17],[11,56],[-11,107],[-9,-17],[-17,-12],[-15,18],[-1,1],[-3,1],[-24,45],[-21,52],[-6,17],[-3,12],[-3,1],[-2,1],[-22,12],[-6,-9],[0,-2],[0,-1],[-12,-58],[-2,-33],[-2,-84],[7,-92],[1,-8],[19,-109],[4,-23],[-2,-63],[0,-1],[-4,-26],[-1,-2],[-15,-40],[-7,4],[-8,4],[-6,3],[-1,5],[-8,20],[-2,5],[-2,13],[-8,41],[0,1],[-1,7],[-26,159],[-46,125],[-4,12],[-4,-7],[-32,-64],[-3,-4],[1,-152],[5,-138],[9,-98],[3,-27],[0,-27],[-1,-16],[0,-30],[0,-7],[-3,-11],[-8,-28],[-4,-16],[-5,4],[-2,1],[-16,15],[-13,39],[-6,32],[-3,12],[-25,132],[-10,47],[-7,12],[-31,8],[-12,-41],[0,-8],[-5,-118],[-2,-53],[3,-123],[-1,-235],[-2,-62],[-1,-18],[-14,-65],[-1,-2],[-72,-227],[-54,221],[-5,17],[-34,129],[-4,13],[-8,27],[-15,-141],[-15,-148],[50,-184],[33,-124],[14,-80],[12,-67],[4,-59],[4,-54],[2,-117],[-31,-54],[0,-1],[-21,11],[-14,79],[2,77],[1,57],[-2,129],[-28,60],[-13,-34],[-4,-65],[0,-71],[7,-100],[12,-94],[59,-439],[36,-190],[0,-2],[11,-97],[-9,-35],[-4,-13],[-15,-32],[-112,-195],[-35,-45],[-30,0],[-17,49],[-12,35],[-8,24],[-17,75],[-16,70],[-4,9],[-1,2],[-2,10],[-23,118],[-6,27],[-4,21],[-30,160],[-3,11],[-9,21],[-19,10],[-6,-4],[-28,-73],[-11,-34],[-31,-50],[-2,-4],[-20,10],[-36,99],[-14,18],[-8,11],[-11,-19],[-4,-15],[-12,-50],[-2,-5],[0,-23],[-3,-74],[0,-5],[0,-48],[1,-6],[5,-60],[5,-37],[10,-75],[2,-17],[2,-14],[10,-112],[8,-124],[0,-104],[-4,-125],[-8,-60],[-17,-54],[-14,-8],[-14,7],[-21,59],[-7,32],[-10,49],[-16,105],[-1,48],[-1,25],[-2,30],[-7,108],[-4,59],[-5,24],[-14,66],[-29,16],[-21,-78],[-6,-20],[-21,-187],[-15,-88],[-18,-54],[-6,-13],[-21,12],[-13,23],[-5,26],[-19,10],[-5,-15],[-11,-32],[-4,-77],[10,-61],[44,-16],[2,-9],[19,-82],[1,-73],[-2,-68],[-1,-34],[0,-4],[-3,-18],[-19,-61],[-29,15],[-18,50],[-19,97],[-3,90],[-8,100],[-10,69],[-22,107],[-11,6],[-8,4],[-6,4],[-17,-47],[-6,-172],[13,-349],[-6,-117],[-5,-29],[-18,-55],[-14,-16],[-31,17],[-5,11],[-19,41],[-7,28],[-1,9],[-42,262],[-4,48],[0,10],[-1,9],[-1,8],[-20,185],[0,2],[-2,8],[-1,9],[-1,8],[-1,8],[-1,1],[-8,39],[-1,6],[-1,7],[-2,6],[-2,5],[-1,3],[0,2],[-4,74],[-5,101],[-18,2],[-9,-35],[-4,-14],[-4,-83],[-1,-23],[-2,-159],[-1,-54],[-1,-105],[-9,-2],[-12,1],[-2,1],[-2,2],[-2,2],[-11,15],[-2,3],[-2,4],[-1,2],[-9,20],[-1,2],[-2,5],[-1,6],[-2,6],[-2,6],[-1,5],[-7,34],[0,2],[-1,8],[-2,8],[-1,8],[-1,9],[-1,9],[-1,10],[0,10],[-1,10],[-1,10],[0,10],[0,2],[-3,131],[-4,83],[-2,37],[-2,19],[-4,24],[-31,137],[-40,4],[-7,-44],[-6,-236],[-5,-53],[-2,-5],[-20,-63],[-18,-22],[-36,-13],[-37,20],[-17,81],[-14,39],[-17,25],[-17,25],[-30,32],[-43,15],[-18,-26],[-28,-109],[-6,-198],[-1,-37],[-17,-150],[-46,-143],[-7,12],[-41,-50],[-19,-30],[-27,-49],[-22,-69],[-16,-63],[-12,-73],[-6,-180],[-7,-52],[-7,-20],[-13,-41],[-23,-44],[-23,-35],[-32,-31],[-48,-86],[-33,-94],[-31,-111],[-32,-87],[-27,-41],[-16,-16],[-31,17],[-17,80],[-29,56],[-24,12],[-1,-2],[-17,-28],[-20,-61],[-15,-103],[-17,-95],[-7,-36],[-24,-67],[-22,-20],[-23,12],[-7,12],[-6,26],[-18,106],[-2,97],[8,53],[1,65],[-8,65],[-23,106],[-8,47],[-8,59],[-10,29],[-2,7]],[[76676,80311],[-72,382],[-3,17],[-46,224],[-19,66],[-11,20],[-15,26],[-22,11],[-21,11],[-24,45],[-16,85],[-28,145],[-25,125],[-9,4],[-37,20],[-23,-20],[-32,-102],[-7,-20],[-30,-192],[-5,-101],[-9,-58],[-24,-243],[-2,-84],[-3,-136],[-18,-83],[-3,-10],[-45,-120],[-46,-23],[-42,22],[-30,40],[-21,35],[-35,18],[-17,-6],[-18,-56],[-10,68],[-28,208],[-3,35],[-2,36],[-16,65],[-13,30],[-17,16],[-27,9],[-14,18],[-14,43],[15,37],[-27,272],[18,62],[13,87],[-3,58],[-7,170],[26,158],[-7,56],[-11,39],[-13,24],[-11,21],[-16,24],[-13,31],[-10,68],[0,134],[2,60],[-6,94],[-12,76],[-2,87],[-29,37],[-6,104],[-3,61],[-45,2],[-1,92],[-3,59],[-1,59],[-15,148],[8,6],[-15,118],[-22,95],[-32,135],[-6,6],[8,80],[7,79],[-19,24],[-72,212],[-13,-6],[-12,-12],[-12,-17],[-9,-18],[-18,77],[20,64],[7,12],[7,24],[-61,41],[-5,21],[-5,7],[-7,65],[-8,96],[-16,-18],[-15,-6],[-25,18],[-35,150],[-20,43],[-15,16],[-26,61],[-10,61],[1,15],[1,55],[29,178],[8,50],[4,125],[-6,67],[-10,53],[-23,20],[-20,-21],[-32,-88],[-2,-65],[-2,-71],[-3,-89],[-13,-23],[-12,-41],[-11,-42],[-13,18],[-6,59],[-13,163],[-6,120],[13,24],[10,47],[8,53],[12,41],[10,47],[13,30],[12,47],[14,24],[11,41],[1,65],[-10,47],[-6,53],[-2,65],[-13,24],[-18,-18],[-12,6],[-5,71],[-7,59],[-6,65],[-18,-55],[-66,-205],[-88,-183],[-14,-37],[-10,-48],[-82,-286],[-43,-144],[-9,96],[-5,65],[-8,65],[-10,41],[-12,18],[-9,65],[-31,132],[10,84],[-108,-57],[-33,-17],[-13,161],[-5,69],[-20,-24],[-26,47],[-7,47],[-27,53],[-14,33],[-25,-49],[-33,-63],[-48,-92],[-36,-11],[-11,-15],[-10,-15],[-5,30],[-4,-24],[5,-88],[1,-18],[-1,-30],[0,-17],[-1,-18],[1,-12],[0,-6],[1,-12],[-6,-21],[-93,-321],[-20,183],[-21,260],[-16,-6],[-11,153],[-4,-22],[-21,-113],[15,-36],[10,-47],[8,-58],[8,-84],[-5,-70],[-23,-102],[-9,-46],[-16,-106],[-6,12],[-50,-42],[-16,12],[-13,18],[-13,12],[-40,6]],[[73926,84771],[5,32],[14,1],[15,2],[22,51],[13,110],[-6,56],[-7,65],[-9,53],[-16,72],[-50,94],[-33,-129],[-15,-36],[-24,0],[-1,36],[-20,-6],[-10,53],[-14,-36],[-9,65],[-17,-23],[-6,41],[-11,-35],[-17,-6],[2,59],[5,71],[-3,70],[-2,71],[-3,59],[-15,188],[-7,55],[-35,211],[8,77],[-9,71],[0,1],[-7,110],[-15,-23],[-8,89],[-11,124],[0,1],[-7,82],[-16,188],[16,53],[-1,59],[24,24],[-2,113],[-3,146],[-71,6],[-77,796],[-35,364],[-80,837],[-20,199],[-8,87],[-7,77],[-9,87],[-42,399],[-6,75],[-154,1697],[-20,213],[-40,450],[-4,45],[-10,80],[-2,12],[-19,118],[-9,61],[-8,51],[-35,228],[-10,71],[-18,116],[-23,156],[-33,217],[-21,139],[-39,262],[-4,26],[-40,267],[-65,434],[-13,110]],[[72719,94810],[118,-19],[797,-126],[3,-1],[300,-43],[81,-12],[36,-5],[459,-66],[1550,-148],[66,-2],[281,-7],[19,88],[11,136],[14,72],[17,87],[3,59],[21,89],[17,82],[24,47],[20,118],[18,99],[1,8],[6,53],[8,119],[16,0],[38,-2],[2,0],[3,-1],[2,0],[14,0],[62,-17],[13,-3],[7,0],[15,-1],[17,-2],[3,0],[1,0],[30,-4],[2,-1],[66,-9],[19,-3],[35,-7],[37,-15],[1,-1],[3,-1],[48,-20],[52,-19],[12,-6],[17,-8],[14,-6],[24,-10],[21,-7],[23,-14],[12,-8],[1,-1],[64,-3],[43,-1],[47,-2],[5,0],[56,-3],[24,-1],[23,-1],[21,-1],[12,-1],[17,-1],[1,0],[33,-2],[1,0],[61,-3],[41,-2],[40,-2],[1,0],[61,-3],[28,-1],[18,-1],[17,-1],[14,-1],[7,0],[64,-3],[14,-1],[39,-2],[61,-1],[59,0],[23,-1],[36,0],[16,0],[48,-1],[13,0],[16,0],[106,-2],[19,0],[25,0],[155,-2],[15,-1],[66,-1],[36,1],[44,0],[50,1],[35,0],[39,0],[23,0],[94,1]],[[86337,95023],[-15,-28],[-12,-20],[-17,-22],[-12,-31],[-15,-30],[-20,-31],[-13,-30],[-15,-26],[-17,-42],[-11,-21],[-14,-12],[-11,-37],[-20,-54],[-15,-13],[-16,-36],[-13,-28],[-15,-38],[-17,-34],[-16,-25],[-12,-28],[-16,-31],[-11,-18],[-13,-35],[-13,-32],[-14,-30],[-18,-25],[-18,-36],[-19,-41],[-12,-11],[-15,-29],[-25,-44],[-20,-42],[-23,-34],[-10,-32],[-14,-23],[-16,-29],[-12,-24],[-21,-56],[-24,-40],[-17,-46],[-26,-72],[-14,-35],[-16,-29],[-17,-27],[-12,-29],[-16,-38],[-14,-37],[-21,-47],[-10,-36],[-12,-19],[-16,-57],[-12,-24],[-16,-38],[-23,-53],[-20,-40],[-17,-44],[-20,-48],[-25,-62],[-22,-70],[-14,-13],[-20,-54],[-12,-19],[-19,-17],[-9,-44],[-17,-28],[-22,-55],[-12,-21],[-27,-47],[-30,-75],[-15,-40],[-17,-29],[-16,-35],[-14,-29],[-12,-41],[-13,-36],[-12,-21],[-16,-37],[-12,-13],[-16,-51],[-17,-52],[-20,-46],[-14,-40],[-12,-18],[-11,-27],[-15,-30],[-16,-28],[-29,180],[-14,79],[-19,109],[-30,190],[-7,64],[-14,61],[-4,34],[-9,-16],[-29,-57],[-19,-24],[-25,-34],[-17,-29],[-16,-27],[-9,-45],[-11,-38],[-10,-55],[-20,-76],[-12,-22],[-11,-27],[-15,-34],[-11,-31],[-13,-21],[-18,-11],[-13,-33],[-10,-49],[-42,602],[-30,418],[-66,-87],[-29,-60],[-22,153],[-50,124],[-15,-12],[-15,-5],[-12,0],[-17,0],[-13,0],[-49,-162],[-94,-310],[-9,-48],[-45,-232],[-3,-3],[-69,-113],[-73,171],[-114,-277],[-140,-340],[-81,-199],[-40,-97],[-67,-163],[-84,-205],[-205,-500],[5,-136],[-11,-47],[-14,-47],[-16,-42],[-20,-23],[-11,-6],[-14,-41],[-21,-36],[-8,-53],[-11,-12],[-15,-35],[-25,6],[-11,18],[-13,13],[-13,-33],[-7,-61],[-13,-32],[-17,17],[-14,-44],[-6,-91],[11,-53],[17,-105],[-13,-63],[-8,-39],[-12,-88],[-14,-112],[-12,-23],[-18,-95],[-12,-37],[-11,-40],[-30,-95],[-24,-84],[-21,-23],[-24,-34],[-10,-37],[-14,-35],[-10,-15],[-5,-7],[-8,-51],[6,-68],[-7,-65],[-10,-54],[-14,-39],[-24,-47],[-22,-67],[-9,-36],[-13,-53],[-10,-64],[-14,-1],[-14,-15],[-9,-53],[-13,29],[5,-82],[-2,-67],[-12,-39],[12,-42],[-20,-47],[-12,-18],[-31,-35],[4,-227],[1,-27],[-13,-33],[-23,-62],[-14,-54],[6,-63],[8,-53],[5,-71],[8,-59],[11,-18],[4,-65],[3,-59],[9,-106],[4,-65],[-17,0],[-11,-59],[-18,-88],[-23,29],[-13,6],[-12,-59],[-94,-183],[-21,6],[5,-55],[3,-58],[5,-70],[-3,-76],[-13,12],[-12,23],[-24,53],[-15,-12],[-16,6],[-13,-11],[-12,-65],[-19,6],[-22,-54],[-12,-70],[-9,-53],[-21,-30],[-12,12],[-13,-12],[-14,-6],[-13,30],[-34,-150],[11,-120],[-21,-57],[-34,-75],[49,-395],[11,-29],[4,-71],[9,-53],[16,6],[14,-24],[11,-59],[2,-77],[11,-64],[-6,-65],[2,-71],[15,-77],[12,-41],[-21,-41],[-15,-18],[-18,-65],[-18,-41],[-17,0],[-14,-24],[-9,-41],[-11,-41],[-11,-30],[-19,-71],[-10,-36],[-10,-46],[-11,-30],[-22,-53],[-12,-24],[-11,-41],[-12,-23],[-17,-18],[-49,-124],[-1,-1],[-32,-52],[-15,-18],[-15,-23],[-19,-18],[-14,0],[-14,-12],[-14,-35],[-15,-12],[-12,-18],[-12,-17],[-6,-71],[-12,-24],[-13,-6],[-15,-12],[-17,-17],[-22,-42],[-18,-35],[-14,-29],[-16,-30],[-11,-12],[-12,-23],[-13,-24],[-12,-12],[-12,-71],[-19,-11],[-25,-12],[-19,-41],[-12,-18],[-11,-24],[-20,-17],[-11,-12],[-46,-65],[-16,-18],[-11,-23],[-15,-12],[-13,-12],[-20,-30],[-13,-17],[-19,-6],[-11,-18],[-12,-18],[-15,-23],[-14,-12],[-16,24]],[[81141,83279],[-13,-12],[-19,-12],[-12,-12],[-16,-6],[-17,-6],[-25,-29],[-11,-18],[-13,-17],[-17,-18],[-10,-36],[-12,-17],[-19,-30],[-18,-53],[-13,0],[-15,-53],[-19,-35],[-12,-18],[-11,-12],[-11,65],[-9,65],[-7,59],[-8,53],[-7,83],[-3,59],[-3,76],[-2,83],[1,116],[-2,14],[-78,-48],[-1,18],[-28,285],[0,6],[-7,75],[-14,-11],[-20,-1],[-11,-24],[-13,-13],[-3,40],[-3,29],[1,64],[-11,24],[-8,57],[-13,41],[-13,48],[-11,-18],[-7,-59],[-12,-18],[-15,-6],[-11,24],[-13,-6],[-12,-24],[-11,42],[-4,35],[-5,21],[-2,24],[-5,-33],[-34,-56],[-10,3],[-89,464],[-39,208],[-12,-41],[-14,12],[-12,-12],[-19,-53],[-14,-59],[-19,12],[-11,-30],[-16,-18],[-13,-41],[-12,-23],[-13,-30],[-12,-6],[-11,-12],[-14,-35],[-17,-18],[-18,-41],[-11,6],[-26,-30],[-18,-32],[-20,-40],[-21,-9],[-8,-32],[-12,-110],[-11,22],[-7,22],[-13,-6],[-18,-32],[-14,4],[-15,-23],[-10,-31],[-8,181],[-2,28],[34,57],[8,25],[-2,6]],[[78930,95230],[145,2],[47,0],[33,0],[65,1],[27,0],[26,0],[21,1],[42,0],[130,1],[3,0],[119,1],[105,0],[1,0],[4,0],[230,0],[21,0],[90,0],[13,0],[45,2],[6,1],[101,4],[63,3],[109,5],[1,0],[1,0],[61,3],[35,2],[14,1],[27,1],[45,2],[72,3],[110,4],[50,2],[27,1],[4,0],[19,1],[41,1],[65,3],[21,0],[40,2],[31,1],[57,2],[8,0],[86,4],[31,-46],[141,-203],[73,-3],[34,0],[9,1],[12,0],[1,-1],[1,0],[14,-6],[12,1],[40,2],[12,0],[18,1],[21,1],[31,1],[104,0],[34,0],[18,0],[14,0],[19,0],[76,0],[32,-1],[12,0],[121,0],[86,0],[60,-1],[31,0],[95,0],[22,0],[110,3],[21,0],[44,1],[29,1],[15,0],[78,1],[26,1],[7,0],[22,0],[53,1],[9,1],[35,0],[124,3],[85,-1],[12,0],[52,-1],[46,0],[50,-1],[17,0],[301,-3],[59,-1],[45,0],[4,0],[76,-1],[16,0],[32,0],[53,-1],[156,-2],[18,0],[37,0],[56,-1],[24,0],[26,0],[66,-1],[107,-1],[43,0],[62,-4],[21,-4],[29,0],[12,0],[31,0],[12,0],[20,0],[26,0],[14,1],[6,0],[35,0],[16,1],[62,1],[89,1],[14,1],[26,-1],[27,0],[52,-1],[15,0],[17,0],[26,0],[64,-1],[73,-2],[86,-2],[37,-1],[37,0],[37,0],[29,0],[13,0],[62,-2],[3,0],[51,-1],[47,-2],[101,-3],[75,-3],[7,-1],[4,0],[16,0],[34,0],[76,1],[27,1],[14,0],[44,2],[150,7],[39,2],[28,1],[42,2],[37,0],[18,1],[29,0],[33,1],[45,1],[48,-1]],[[73926,84771],[-33,0],[60,-101],[-8,-77],[-21,-218],[-58,6],[51,-183],[11,-72],[31,-217],[-17,-41],[-6,-83],[-5,-88],[-6,-58],[-13,-78],[-21,-82],[-78,-232],[-46,-200],[-6,-53],[-24,-75],[-14,-24],[-27,14],[-18,57],[-32,176],[-11,12],[-17,18],[-13,31],[-58,30],[-10,27],[-1,2],[-25,74],[-58,168],[-3,16],[-22,117],[-12,6],[-9,5],[-22,-68],[0,-1],[-18,-126],[-19,-189],[-5,-169],[3,-102],[0,-4],[16,-218],[-2,-118],[-10,-51],[-28,-89],[-5,-109],[3,-15],[30,-159],[26,-135],[9,-77],[-3,-102],[-13,-41],[-4,-13],[-44,-2],[-23,12],[-29,150],[-32,17],[-29,-25],[-17,-55],[-3,-30],[8,-370],[0,-367],[1,-88],[7,-163],[1,-23],[3,-42],[40,-213],[13,-86],[0,-15],[-2,-99],[-21,-65],[-9,-17],[-11,12],[-21,30],[-12,12],[-18,-231],[0,-11],[3,-76],[14,-456],[-20,-277],[-13,-961],[-20,-71],[16,-147],[-14,-6],[4,-130],[-27,-35],[-18,-6],[4,-58],[15,-226],[26,-153],[-40,-137],[-20,-75],[9,-65],[-8,-89],[-20,-94],[-26,-83],[14,-177],[10,-65],[-32,30],[-15,-153],[0,-3],[-13,-62],[-15,41],[-25,41],[-12,12],[-12,12],[-21,0],[-17,-6],[-18,-24],[-12,-23],[-10,-39],[-9,-38],[-4,-59],[-2,-84],[-2,-78],[0,-13],[-3,-65],[0,-69],[0,-98],[-5,-108],[-17,-60],[-25,-15]],[[72787,75945],[-37,52],[-39,54],[-13,-6],[-16,-5],[-13,-18],[-10,-16],[-6,-8],[-16,-12],[-13,0],[-17,18],[-10,30],[-14,47],[-10,71],[-5,59],[-10,53],[-9,66],[-4,34],[-5,59],[-1,112],[2,65],[4,100],[1,118],[-1,65],[-3,59],[-4,85],[-1,21],[0,95],[1,81],[1,19],[1,77],[-1,47],[-1,59],[-3,43],[-2,22],[-3,27],[-6,49],[-16,101],[-12,47],[-10,35],[-25,48],[-13,0],[-12,-12],[-13,-18],[-11,-35],[-9,-77],[47,-298],[6,-32],[2,-95],[-5,-65],[-5,-53],[-7,-53],[-15,-77],[-14,-41],[-12,-35],[-17,-53],[-14,-42],[-8,-76],[-6,-46],[-3,-25],[-1,-100],[4,-83],[1,-11],[5,-66],[4,-70],[-3,-59],[-9,-83],[-16,-94],[-9,-48],[-13,-59],[-20,-70],[-12,-48],[-14,-53],[-13,-41],[-10,-41],[-14,-53],[-13,-53],[-22,-83],[-4,-22],[-4,-25],[-10,-89],[-5,-88],[-6,-106],[-3,-77],[0,-89],[1,-59],[2,-82],[3,-39],[2,-32],[5,-65],[-5,-65],[-12,-71],[-13,-35],[-14,-24],[-15,-17],[-20,12],[-13,23],[-12,36],[-10,53],[-11,59],[-8,30],[-5,17],[-10,47],[-14,29],[-12,6],[-13,-35],[-3,-7],[-8,-23],[-9,-47],[-5,-65],[-7,-82],[-2,-71],[-1,-77],[0,-76],[2,-95],[6,-53],[14,-65],[15,-53],[8,-23],[6,-18],[12,-41],[8,-59],[6,-83],[4,-88],[1,-77],[-2,-83],[-6,-71],[-14,-70],[-10,-36],[-20,-41],[-21,-12],[-15,0],[-17,12],[-18,18],[-9,16],[-4,7],[-15,30],[-13,23],[-19,12],[-23,12],[-15,0],[-12,-12],[-4,-44],[-19,-62],[-1,-7],[0,-1],[-14,-185],[0,-12],[0,-26],[9,-92],[-10,0],[-61,51],[-14,23],[-12,20],[-10,15],[-24,39],[1,40],[3,170],[-19,213],[-68,106],[-54,0],[-121,31],[-87,22],[-43,-35],[-38,-30],[-18,59],[-8,16],[-4,8],[-13,20],[-21,33],[-53,82],[-23,1],[-76,4],[-26,1],[-21,31],[-30,43],[-3,4],[-58,82],[-26,-6],[-6,-1],[-15,-4],[-31,-6],[-45,-9],[-17,-4],[-74,44],[-14,8],[-13,8],[-109,64],[-305,183],[-11,-71],[2,-71],[14,-29],[12,-30],[-2,-65],[-13,-29],[-12,-6],[-3,-59],[7,-130],[-11,-124],[17,-94],[-6,-116],[-20,-344],[8,-53],[40,-272],[-1,-124],[-24,-94],[-53,-77],[-6,-94],[0,-77],[-3,-70],[-8,-83],[-2,-59],[37,-224],[13,-154],[-6,-118],[-3,-70],[8,-53],[-2,-136],[-13,-130],[-5,-77],[26,-112],[7,-189],[-20,-279],[-70,-150],[-44,-96],[-12,-11],[-100,194],[-36,235],[6,200],[-33,104],[-108,-36],[-7,75],[-8,65],[-9,53],[-13,65],[-18,47],[-15,54],[-9,64],[-2,59],[-1,89],[-8,71],[-127,389],[-13,18],[-14,53],[-7,65],[-9,71],[-10,47],[-15,47],[-12,77],[-1,65],[-35,141],[-28,118],[-38,99],[-12,31],[-42,-124],[-17,-29],[-15,-18],[-21,-59],[-27,-49],[-3,-5],[-35,-63],[-30,-55],[-33,-58],[-32,23],[-15,-40],[-12,-32],[14,-71],[26,-37],[-18,-39],[-24,-52],[-6,-4],[-22,-15],[-32,-22],[-20,11],[-23,107],[-12,35],[-40,59],[-65,125],[-24,46],[-50,6],[-46,-37],[-130,-105],[-14,24],[-14,41],[-13,48],[-15,35],[-10,53],[-15,53]],[[69820,94918],[399,5],[1083,-42],[41,-2],[34,-1],[250,-10],[69,-2],[1,0],[146,-8],[876,-48]],[[88066,85468],[5,-71],[8,-53],[8,-53],[8,-47],[7,-53],[4,-65],[7,-47],[4,-65],[-4,-65],[-14,-18],[-12,-35],[-12,-24],[-10,-41],[-15,0],[-12,0],[-11,-6],[-13,-35],[-12,-18],[-10,-36],[-9,-53],[-8,-47],[-13,-41],[-14,-18],[-9,-47],[-15,-24],[-23,-65],[-13,-23],[-14,-36],[-14,-29],[-10,-30],[-10,-29],[-14,-47],[-13,-41]],[[87813,84206],[-9,-36],[-13,-35],[-15,-30],[-11,-23],[-13,-42],[-13,-65],[-8,-59],[-12,-29],[-12,-30],[-12,-17],[-10,-36],[-9,-59],[-12,-47],[-14,12],[-11,41],[-9,36],[-15,17],[-15,18],[-13,0],[-14,6],[-13,12],[-13,12],[-13,5],[-11,-41],[-12,-35],[-12,-24],[-13,-53],[-10,-41],[-11,-42],[-11,-41],[-13,-59],[-20,-65],[-10,-47],[-12,-47],[-11,-41],[-11,-54],[-13,-29],[-14,-59],[-11,-47],[-12,-41],[-11,-54],[-8,-47],[-10,-35],[-12,-47],[-10,-42],[-10,-35],[-10,-47],[-11,-36],[-10,-35],[-11,-30],[-11,-23],[-13,-30],[-14,-23],[-16,-6],[-16,23],[-12,12],[-16,-17],[-14,-30],[-12,-12],[-13,-35],[-18,-18],[-11,41],[-15,-11],[-11,29],[-12,12],[-15,12],[-28,35],[-7,58],[-30,66],[-17,132],[-11,-38],[-16,-56],[-14,-53],[-12,-60],[-11,-66],[-10,-82],[-9,-64],[-24,-102],[-15,-50],[-12,-57],[-14,-56],[-24,-91],[-10,-53],[-16,-41],[-13,-48],[-13,-23],[-17,-65],[-14,-59],[-15,-41],[-10,-36],[-21,-65],[-11,-35],[-17,-53],[-13,-41],[-19,-42],[-17,-41],[-10,-47],[-19,29],[-14,65],[-12,36],[-10,35],[-15,47],[-10,65],[-12,0],[-16,12],[-13,12],[-13,0],[-26,-65],[-11,-30],[-8,-47],[-11,-29],[-24,100],[-17,47],[-10,35],[-11,-29],[-12,-36],[-10,-29],[-13,47],[-6,59],[-5,59],[-11,41],[-32,-82],[-10,-47],[-10,-36],[-10,-29],[-14,-59],[-35,-148],[-10,-35],[-11,-35],[-11,-48],[-11,-29],[-10,-36],[-12,-5],[-13,53],[-2,70],[-5,65],[-10,47],[-21,-17],[-8,-60],[-7,-63],[-3,-64],[-10,-55],[-13,-53],[-14,-24],[-11,12],[-13,0],[-16,-47],[-10,-47],[-13,-30],[-12,-59],[-9,-77],[-13,-41],[-9,-35],[-14,-24],[-15,30],[-11,17],[-12,12],[-15,6],[-19,-35],[-17,-53],[-10,-30],[-12,53],[-17,-6],[-14,-53],[-18,-65],[-18,-71],[-11,-41],[-13,-41],[-12,-35],[-14,-47],[-12,-48],[-10,-71],[-12,-76],[-11,-53],[-19,-48],[-9,-47],[-10,-77],[-18,-59],[-12,-53],[-12,-53],[-8,-82],[-12,-48],[-5,-76],[-13,-71],[-29,-106],[-15,-6],[-17,-47],[-16,-53],[-19,11],[-13,36],[-15,53],[-12,53],[-12,22],[-14,7],[-10,-47],[-14,-12],[-7,48],[-4,70],[-13,42],[-11,29],[-19,-35],[-4,-16],[-7,-25],[-9,-48],[3,-65],[-17,-35],[-12,23],[1,70],[6,76],[-27,74],[-15,34],[-24,-59],[-15,-35],[-12,-35],[-15,-48],[-10,-47],[-39,-177],[-15,-53],[-14,-47],[-18,-89],[-16,-76],[-17,-77],[-19,-94],[-12,-59],[-13,-53],[-11,-36],[-13,-53],[-13,-41],[-13,-30],[-15,-29],[-18,-12],[-15,18],[-12,29],[-12,-12],[-8,-47],[-13,-59],[2,-75],[-18,-85],[-10,-88],[-3,-59],[5,-55],[2,-75],[-18,-41],[-11,-27],[-18,-11],[-12,-46],[-3,-61],[-9,-52],[11,-27],[-8,-82],[-16,-65],[-18,-65],[-9,-42],[-10,-47],[-14,-65],[-8,-47],[-9,-53],[-10,-47],[-10,-35],[-15,-83],[-15,-53],[-10,-36],[-11,-29],[-8,-47],[-17,-77],[-13,-41],[-18,-71],[-12,-30],[-13,-47],[-11,-35],[-12,-38],[-14,-5],[-10,-51],[-13,-65],[-13,-48],[-13,-41],[-12,-41],[-10,-30],[-15,-59],[-12,-35],[-13,-47],[-14,-42],[-20,-82],[-15,-59],[-16,-47],[-20,-53],[-11,-18],[-13,-36],[-13,-29],[-8,55],[-13,66],[2,84],[-14,59],[-14,-1],[-17,-14],[-15,-19],[-15,12],[-11,88],[-11,47],[-8,47],[-16,-83],[-26,-79],[-37,-156],[-10,-60],[-11,-103],[-18,-75],[-17,-4],[-14,0],[-16,-6],[-22,-47],[-12,-47],[5,-65],[5,-71],[4,-82],[-7,-65],[-8,-65],[-14,-41],[-15,-59],[-10,-53],[-10,-48],[-12,-47],[-14,-23],[-17,-54],[-13,-41],[-32,-77],[3,-100],[-10,-44],[5,-82],[-10,-74],[-17,-12],[-13,-7],[-19,-19],[-16,36],[-17,-52],[-10,-39],[-12,-49],[-14,-67],[-11,-60],[-12,-38],[-14,35],[-17,28],[-7,-9],[-10,-12],[-15,-14],[-8,-3],[-19,-7]],[[83430,74289],[6,54],[0,65],[1,25],[-14,103],[-1,6],[-8,29],[-21,68],[-13,44],[-12,44],[-1,2],[-21,66],[-30,95],[-29,-88],[5,116],[-10,165],[-10,68],[-40,235],[-3,14],[-4,24],[-5,27],[-24,-12],[-2,85],[0,18],[-2,136],[0,22],[21,-22],[1,6],[10,67],[10,-17],[3,177],[-35,17],[2,195],[-14,75],[-18,97],[14,41],[-1,76],[-17,-11],[-3,-2],[-8,-120],[-22,97],[-28,-14],[7,222],[2,70],[-54,98],[-2,-29],[-59,3],[0,41],[-23,4],[5,282],[-14,26],[-12,12],[-19,23],[-17,12],[-16,22],[-65,272],[-1,7],[-6,24],[-4,16],[-24,153],[-74,477],[-11,71],[-7,43],[-16,-53],[-28,255],[-40,353],[-1,124],[11,53],[25,6],[44,-130],[-7,277],[-36,-47],[-8,77],[-11,47],[-8,47],[-11,24],[-14,49],[-33,143],[-20,87],[-26,110],[5,109],[3,86],[18,59],[3,12],[-14,123],[50,166],[-96,177],[-33,-183],[-102,-195],[-22,154],[-15,1],[-14,-56],[-9,-131],[0,-13],[-2,-61],[1,-6],[2,-87],[3,-67],[0,-4],[1,-3],[12,-120],[5,-62],[4,-68],[-1,-3],[-4,-8],[-3,5],[-7,66],[-11,90],[-8,68],[-8,57],[-4,59],[-4,24],[-4,6],[-8,0],[0,-70],[1,-66],[2,-71],[2,-65],[5,-82],[5,-101],[4,-88],[3,-77],[0,-59],[4,-76],[9,-83],[13,-59],[19,-53],[15,-71],[7,-53],[3,-59],[0,-112],[-2,-65],[-8,-65],[-11,-35],[-16,-30],[-18,-6],[-16,24],[-15,47],[-6,20],[-10,33],[-15,48],[-14,47],[-13,47],[-13,53],[-15,47],[-12,41],[-14,54],[-35,106],[-13,35],[-20,30],[-16,6],[-15,-6],[-14,-30],[-8,-53],[0,-77],[5,-59],[10,-59],[15,-59],[11,-41],[13,-71],[8,-71],[4,-70],[2,-65],[-1,-23],[-1,-36],[-10,-59],[-10,-47],[-13,-53],[-10,-36],[-13,-12],[-12,-11],[-17,-12],[-18,0],[-14,-18],[-13,-12],[-22,-23],[-11,-48],[-7,-47],[-9,-65],[-6,-65],[0,-76],[-2,-95],[-3,-88],[-5,-83],[-7,-53],[-12,-65],[-11,-29],[-17,-6],[-15,12],[-16,23],[-11,24],[-14,29],[-12,24],[-11,24],[-18,17],[-11,12],[-12,18],[-16,12],[-14,6],[-15,0],[-15,-12],[-11,-12],[-20,-30],[-21,-35],[-13,-47],[-10,-53],[-5,-95],[11,-53],[14,-17],[14,-12],[13,-12],[16,-41],[17,-53],[9,-71],[5,-106],[-1,-95],[-6,-65],[-7,-53],[-12,-17],[-16,11],[-12,18],[-18,30],[-16,5],[-15,6],[-16,24],[-16,41],[-13,24],[-11,23],[-13,42],[-17,53],[-12,23],[-12,42],[-10,41],[-11,18],[-12,11],[-13,6],[-16,12]],[[81433,77049],[-7,74],[-5,50],[-26,247],[-7,71],[-11,108],[-14,133],[-12,124],[-6,52],[-8,81],[-20,149],[-7,48],[-39,279],[-28,178],[-1,8],[-11,79],[-7,64],[-3,237],[53,175],[40,129],[5,381],[1,159],[5,255],[1,118],[1,115],[0,1],[-4,263],[-1,86],[-26,112],[-47,587],[-13,161],[-11,260],[-113,77],[-32,136],[-19,76],[-13,184],[4,58],[20,47],[12,30],[10,41],[12,42],[13,29],[19,24],[20,17],[18,30],[16,23],[16,30],[9,47],[-9,65],[-14,0],[-11,64],[-7,54],[-1,65],[1,59],[-10,71],[-9,65],[-7,70],[-9,42]],[[86337,95023],[15,-1],[94,-2],[23,-1],[20,0],[24,-1],[22,1],[13,0],[25,1],[114,3],[15,-1],[24,0],[25,0],[23,1],[24,-1],[41,0],[19,0],[52,-1],[14,0],[81,0],[41,1],[20,0],[32,0],[46,-2],[53,-2],[12,-1],[21,-1],[15,0],[26,-1],[69,-1],[30,-1],[17,0],[23,0],[57,1],[65,1],[62,0],[18,1],[55,0],[20,1],[6,0],[44,0],[15,1],[56,0],[44,1],[46,0],[27,1],[11,1],[29,-1],[12,2],[6,1],[12,1],[21,-3],[9,-1],[22,0],[15,0],[14,-1],[45,0],[56,1],[82,-4],[22,6],[61,3],[13,0],[16,0],[5,0],[10,0],[26,0],[2,0],[47,0],[16,0],[11,0],[37,-1],[53,0],[28,0],[14,1],[23,0],[1,0],[66,0],[21,0],[19,2],[6,2],[9,2],[10,3],[54,3],[43,2],[16,-2],[3,4],[0,1]],[[64748,81876],[-22,-27],[-3,-10],[-9,-33],[-21,-88],[-1,-3],[-20,-12],[-27,23],[-20,65],[-26,56],[-13,35],[-4,13],[-13,67],[-9,54],[-10,45],[-2,8],[-10,28],[-11,25],[-19,40],[-24,45],[-15,-20],[-1,-65],[1,-22],[5,-67],[15,-137],[-1,-73],[-9,-41],[0,-1],[-14,-11],[-37,8],[-10,-15],[-10,-13],[-14,-36],[0,-1],[-4,-39],[-5,-50],[-4,-61],[0,-123],[-2,-55],[0,-5],[0,-6],[2,-54],[0,-66],[-2,-73],[3,-59],[8,-72],[8,-48],[2,-5],[12,-49],[10,-19],[4,-9],[21,-56],[-3,-75],[-14,-58],[-27,-38],[-11,-20],[-4,-6],[-11,-3],[-16,17],[-15,32],[-15,33],[-6,18],[-25,82],[-1,3],[-11,18],[-2,-1],[-32,-17],[-15,-76],[-6,-92],[13,-39],[9,-77],[0,-1],[0,-2],[0,-90],[-1,-81],[0,-4],[0,-70],[0,-1],[8,-94],[15,-62],[2,-7],[10,-54],[1,-7],[1,-16],[3,-71],[5,-65],[0,-6],[-1,-68],[0,-1],[-10,-45],[-31,-35],[-1,-1],[-15,-4],[-19,-23],[-11,-31],[-3,-13],[-9,-38],[-27,-92],[-12,25],[-16,72],[0,3],[-16,56],[-15,-15],[-12,-32],[-15,-58],[-13,-115],[-2,-76],[0,-64],[0,-1],[-13,-51],[0,-1],[-3,7],[-14,35],[0,1],[-14,62],[-3,15],[-7,31],[-14,57],[-8,32],[-19,67],[-16,43],[-37,65],[-24,-7],[-5,-39],[-2,-16],[0,-21],[-2,-58],[0,-6],[-5,-163],[-17,-101],[-15,-53],[-2,-5],[-21,-22],[-8,-8],[-10,-8],[0,-1],[-47,-13],[-10,-43],[-1,-5],[0,-7],[3,-70],[0,-1],[5,-25],[6,-25],[-1,-1],[-43,-314],[0,-1],[-7,-67],[-4,-58],[-3,-35],[-2,-27],[-5,-73],[-9,-84],[-11,-59],[0,-1],[-29,-117],[0,-1],[0,-4],[3,-76],[1,-1],[13,-87],[15,-63],[4,-56],[0,-2],[9,-55],[-2,-60],[-14,-99],[-12,-46],[-13,-67],[0,-1],[-10,-40],[-2,-2],[-17,-34],[-2,-4],[-13,-5],[-13,1],[-1,2],[-15,18],[-2,2],[-21,24],[-18,-28],[-17,-40],[-27,-73],[-13,-40],[-3,-7],[0,-2],[-24,-33],[-18,-20],[-1,1],[-16,8],[-1,0],[-3,64],[-1,30],[-1,22],[-9,83],[-10,50],[-17,48],[-32,49],[-17,-19],[-13,-29],[0,-1],[-1,0],[-9,-32],[-16,-64],[-11,-32],[-39,-86],[-11,-135],[0,-1],[-11,-41],[-1,-2],[-11,-12],[-22,-9],[-16,-25],[-11,-78],[-4,-62],[-24,-68],[-1,-4],[-5,-7],[-18,-25],[-16,16],[-2,9],[-21,100],[-2,6],[-18,71],[-28,35],[-10,23],[-1,2],[-1,2],[-16,51],[-5,14],[-33,58],[-43,-6],[-56,-9],[-19,-398],[-67,-189],[-65,-79],[-10,-103],[7,-52],[4,-65],[5,-104],[14,-299],[-12,-157],[-9,-124],[-3,-37],[-9,-119],[-46,-606],[-6,-57],[-5,-142],[-6,-145],[9,-88],[9,-80],[-6,-166],[0,-23],[-5,-142],[-7,-50],[-24,6],[-49,49],[-24,-146],[5,-210],[-2,-82],[-20,-142],[-12,-89],[-4,-146],[-21,-91],[-14,-8],[-43,-72],[-20,-134],[-9,-251],[-37,-96],[-22,-108],[-16,-77],[-6,-31],[-21,-104],[15,-351],[11,-274],[4,-83],[-5,-336],[4,-99],[4,-96],[7,-63],[10,-102],[58,-106],[45,-584],[7,-81],[-13,-116],[-11,-58],[-3,-76],[-33,-451],[-31,-250]],[[62361,69220],[-23,-120],[-1,-2],[-6,-28],[-61,-171],[-7,-18],[-1,-3],[-11,-20],[-10,-8],[-60,-100],[-16,-69],[-9,-14],[-33,-25],[-47,-21],[-15,-5],[-7,12],[-5,24],[0,30],[8,47],[3,6],[6,51],[3,22],[2,79],[-7,55],[-9,38],[-25,108],[-9,39],[-12,-14],[-74,-21],[-26,-7],[-58,-17],[-37,-10],[-21,-159],[-25,-187],[-19,92],[-13,62],[-35,161],[-62,287],[28,186],[-41,-47],[-19,-35],[-87,-110],[-15,-5],[-7,15],[-23,70],[-17,120],[-17,-38],[-9,-7],[-65,-29],[-14,27],[-6,-3],[-1,-1],[-3,-15],[0,-1],[-1,-2],[-1,-18],[-18,-251],[5,-101],[0,-1],[1,-3],[1,-25],[-1,-39],[-5,-34],[-8,-16],[-8,-10],[-14,-16],[-2,-2],[-5,-5],[-10,5],[-9,31],[-24,81],[-7,23],[-53,267],[-21,105],[-16,116],[0,83],[-4,71],[-2,22],[-5,24],[-9,14],[-5,0],[-4,-2],[-8,-14],[-10,-37],[-3,-35],[0,-17],[2,-11],[3,-4],[22,12],[7,-7],[3,-15],[0,-24],[-2,-21],[-6,-32],[-11,-66],[-5,-15],[-6,-9],[-22,4],[-6,12],[-66,293],[-11,140],[-1,25],[-30,99],[-3,10],[-23,78],[-2,-12],[-1,-2],[-1,-9],[-1,-8],[-1,-10],[-1,-9],[0,-10],[-1,-10],[0,-10],[-1,-5],[-22,-28],[-4,-9],[-1,-9],[-12,-228],[-1,-84],[0,-20],[-2,-24],[-6,-38],[-4,-11],[-1,-1],[0,-1],[-6,-5],[-8,15],[0,1],[0,1],[-4,21],[-2,22],[-3,97],[-1,115],[0,7],[-3,24],[-5,12],[-4,-1],[-5,-2],[-2,-9],[-10,-128],[-2,-21],[0,-14],[7,-31],[9,-44],[0,-30],[-55,-539],[-3,-18],[-52,-225],[-4,-15],[-8,-8],[-6,6],[-10,176],[0,6],[-1,5],[-9,39],[-59,12],[-89,-212],[-7,-17],[-19,-127],[-4,-44],[3,-35],[9,-49],[6,-47],[0,-40],[-6,-43],[-33,-170],[-3,-12],[-8,-8],[-86,-86],[-7,-6],[-4,-21],[-26,-128],[-11,-45],[-24,-95],[-188,299]],[[60137,68169],[-30,47],[0,1],[-75,119],[-9,14],[-21,35],[-89,147]],[[59913,68532],[113,795],[14,104],[20,145],[14,95],[45,320],[34,244],[54,382],[29,202],[92,653],[13,96],[-31,402],[-36,473],[-17,217],[-9,124],[-49,628],[-65,841],[0,1],[-38,493],[-29,380],[-53,708],[-47,753],[-1,15],[-34,551],[-12,195],[-11,185],[-5,85],[-15,242],[-6,150],[1,174],[1,311],[0,176],[3,716],[0,1],[3,665],[1,187],[5,1179],[3,701],[2,821],[0,241],[1,397],[0,113],[0,322]],[[59913,68532],[-41,13],[-21,15],[-71,35],[-76,36],[-119,56],[-52,24],[-57,26],[-41,20],[-48,22],[-61,30],[-46,22],[-98,46],[-132,63],[-47,22],[-23,10],[-31,13],[-12,5],[-31,62],[-14,30],[-72,149],[-76,158],[-44,89],[-23,50],[-272,589],[-222,480],[-54,114],[-118,251],[-35,76],[-22,46],[-20,41],[-40,87],[-37,75],[0,2],[-21,52],[-71,118],[-29,42],[-178,286],[-39,64],[33,136],[6,36],[-4,68],[-4,122],[-3,66],[-9,83],[-4,66],[-5,99],[-5,154],[-2,100],[1,66],[-162,58],[-93,33],[-195,70],[3,182],[2,149],[-38,-2],[-12,2],[-32,-110],[-21,-70],[-16,44],[-12,36],[-9,26],[-14,167],[-84,-106],[-18,32],[-22,40],[-79,122],[-38,93],[-72,104],[-135,195],[-24,55],[0,274],[-43,11],[6,212],[-27,11],[-89,14],[-23,56],[-13,30],[2,172],[-3,94],[-6,73],[6,67],[14,57],[16,11],[5,60],[-8,85],[-3,64],[-6,66],[-5,65],[-9,78],[-52,-76],[-4,-86],[-29,9],[-1,-38],[-71,22],[-8,109],[-35,12],[1,185],[2,176],[-18,4],[-29,8],[-1,233],[6,0],[0,5],[21,-9],[0,22],[4,207],[2,78],[-47,14],[0,-47],[-11,6],[-52,29],[0,129],[-8,5],[-22,13],[3,126],[40,-12],[3,-1],[42,-13],[52,-16],[4,113],[2,131],[-42,158],[12,72],[-86,273],[1,66],[9,48],[30,108],[8,46],[-5,19],[-2,4],[-24,88],[-4,-31],[0,-1],[-1,2],[-5,41],[0,6],[-4,39],[0,31],[-12,133],[-6,-13],[-36,93],[-43,-169],[-26,14],[-20,12],[-34,17],[-14,9],[-43,40],[-9,-50],[0,-136],[-32,-33],[-33,-30],[-10,121],[0,105],[-25,3],[0,-64],[-26,1]],[[55578,77827],[-1,214],[-1,127],[-1,276],[-1,77],[-1,258],[-2,224],[0,13],[-4,779],[-4,529],[0,2],[-1,197],[-1,177],[-2,383],[-2,325],[-1,180],[-1,96],[-2,272],[-3,165],[6,395],[3,231],[6,375],[2,91],[1,100],[0,8],[3,162],[4,298]],[[55578,77827],[-30,4],[13,-83],[-1,-153],[-1,-119],[25,16],[-1,-355],[13,-24],[12,-38],[9,-70],[18,-51],[-7,-56],[-20,57],[-17,-30],[-3,-65],[0,-85],[-10,-59],[-11,47],[-13,-43],[0,-61],[39,-67],[-2,-90],[-49,-26],[-20,-10],[-64,-27],[1,-38],[-22,-28],[-11,5],[-10,-384],[-3,-110],[0,-210],[0,-72],[-24,-1],[-2,-163],[-4,-170],[-6,-119],[-88,38],[3,89],[1,89],[-41,4],[-83,35],[-2,-145],[-36,0],[-7,-140],[-3,-239],[-1,-82],[57,-30],[-3,-162],[-32,15],[-9,-314],[16,20],[50,-36],[24,3],[-3,-163],[-144,72],[-9,-167],[-5,-118],[-53,-27],[-2,-75],[-69,-34],[-58,18],[-3,-129],[10,-31],[34,-14],[11,-5],[0,-82],[-40,11],[-22,83],[-12,-17],[-9,-39],[-1,-140],[-9,-46],[-5,-57],[24,-60],[0,-113],[-76,-42],[-47,-89],[-14,17],[-39,61],[3,145],[3,97],[-9,41],[-22,0],[-2,160],[0,42],[-31,-10],[-20,-9],[-14,16],[-14,8],[-23,-12],[-16,-51],[-48,13],[-2,-102],[-5,-99],[0,-1],[-36,-130],[-21,106],[-59,16],[1,-60],[15,-96],[-23,2],[-38,-22],[-3,-147],[-100,18],[-4,-131],[1,-69],[3,-89],[-8,-40],[-1,0],[-26,-46],[-31,39],[-23,-267],[-149,124],[-238,196],[-901,747],[-31,25],[-50,-92],[-4,11],[-11,57],[-11,74],[-1,7],[-1,7],[-2,8],[-1,6],[-1,3],[-19,69],[-1,3],[0,1],[-22,74],[-2,5],[-1,5],[-2,4],[-1,2],[-25,50],[-1,2],[-2,3],[-2,2],[-2,2],[-2,1],[-3,0],[-17,-2],[-14,30],[-23,59],[-45,156],[0,1],[-1,2],[-105,339],[-1,3],[-2,4],[-1,4],[-16,35],[-1,0],[0,1],[-1,3],[-1,1],[-4,28],[0,5],[-1,0],[-8,6],[-9,-5],[-2,-3],[-18,-19],[-9,7],[-4,23],[-38,174],[-16,9],[-13,-29],[-1,-10],[-11,-111],[-5,-218],[4,-110],[8,-173]],[[52288,74036],[-21,67],[-20,39],[0,65],[2,80],[-8,81],[-13,61],[-20,62],[-4,56],[-12,43],[-13,13],[-6,63],[-8,80],[-7,51],[-10,46],[-12,29],[-19,38],[-12,32],[-13,33],[-37,51],[-6,7],[-28,39],[-11,14],[-3,-57],[-8,-87],[-3,-26],[-6,-66],[-5,-31],[-3,-21],[-18,-72],[-20,-39],[-19,-11],[-21,-3],[-19,7],[-22,13],[-19,16],[-36,54],[-25,55],[-14,66],[-13,79],[-16,91],[-25,196],[-22,147],[-19,154],[-14,192],[-3,166],[-1,141],[-2,146],[-5,148],[-5,85],[-10,103],[-3,28],[-10,58],[-27,99],[-37,145],[-33,178],[1,14],[22,683],[4,125],[57,1776],[20,517],[14,-51],[38,70],[3,86],[31,-62],[15,-11],[-8,89],[-5,266],[0,15],[-22,3],[5,153],[-53,39],[8,267],[27,922],[2,92],[3,87],[24,950],[3,138],[13,620],[7,345],[3,117]],[[96702,75659],[-12,-87],[-61,-472],[-14,-90],[-12,-77],[-24,-151],[-38,-253],[-46,-303],[-11,-77],[-16,-117],[-35,-241],[-8,-53],[-20,-139],[-21,-146],[-69,-519],[-11,-86],[-19,-149],[-23,-167],[-56,-423],[-6,-53],[-1,-3],[-10,-73],[-27,-205],[-80,-601],[-38,-293],[-16,-122],[-20,-158],[-7,-55],[-38,-295],[-9,-64],[-20,-153],[-3,-17],[-16,-121],[-26,-182],[-22,-164],[-39,-292],[-35,-260],[-19,-138],[-4,-31],[-7,-53],[-33,-253],[-29,-213],[-82,-606],[-3,-26],[3,-36],[-1,-32],[-1,-15],[-20,-219],[-4,-29],[0,-4],[-10,-65],[-4,-19],[-2,-12],[-5,-16],[-1,-6],[-5,-16],[-8,-28],[-13,-59],[-2,-9],[-5,-3],[-7,-3],[-22,17],[-14,6],[-3,2],[-10,22],[-9,35],[-11,71],[-16,41],[-16,53],[-5,13],[-6,15],[-2,4],[-9,22],[-12,5],[-19,6],[-25,24],[-16,-18],[0,1],[-17,15],[-14,29],[-4,5],[-9,-48],[-1,-4],[-5,-47],[-10,-70],[-1,-70],[2,-71],[0,-21],[0,-16],[-15,-94],[-1,-7],[-17,-96],[-10,-86],[-5,-59],[-7,-65],[-7,-53],[-16,-18],[-23,-6],[-21,-29],[-14,-30],[-16,-40],[-13,-48],[0,-1],[-9,-52],[-17,-18],[-15,-23],[-20,-26],[-1,-2],[-21,-35],[-16,-37],[-14,-62],[-3,-49],[-3,-106],[-11,18],[-19,47],[-16,45],[-13,46],[-4,7],[-21,8],[-12,0],[-14,-6],[-19,0],[-11,0],[-14,0],[-13,0],[-11,-6],[-17,-6],[-12,-5],[-18,11],[-18,18],[-17,41],[-11,36],[-16,35],[-17,-12],[-14,-23],[-12,-18],[-17,-35],[-1,-3],[-25,-62],[-18,-36],[-17,-23],[-26,6],[-6,0],[-11,0],[-12,-8],[-21,-12],[-7,3],[-15,7],[-6,3],[-20,-7],[-8,-12],[-19,-4],[-17,41],[-2,93],[-2,48],[-4,66],[-4,33],[-1,18],[-2,7],[-2,19],[-9,66],[-8,71],[-1,9],[-6,64],[-2,20],[-17,100],[-4,83],[-8,49],[-4,60],[-10,62],[6,102],[7,56],[0,14],[3,77],[-2,82],[1,31],[1,110],[-2,95],[-4,33],[-9,55],[-8,72],[-11,114],[-9,97],[-6,64],[0,75],[-1,11],[0,33],[-4,19],[-1,14],[-4,8],[-3,12],[-13,23],[-11,32],[1,60],[-3,78],[0,54],[0,6],[0,27],[-6,24],[-2,14],[-15,77],[-7,53],[-9,88],[-8,59],[-9,-3],[-18,-34],[-11,-18],[-12,-43],[-4,25],[-2,0],[-2,-3],[-12,6],[-15,-12],[-17,-45],[-11,-52],[-12,-41],[-2,8],[-12,47],[-11,0],[-21,-23],[-6,1],[-68,16],[-8,-3],[-23,-11],[-12,-32],[-4,-14],[-2,-8],[-7,-70],[-8,-47],[-13,-53],[-3,0],[-13,0],[-2,8],[-12,30],[-19,41],[-17,-12],[-19,42],[-11,45],[-4,33],[-3,40],[-3,25],[-2,19],[-6,40],[-7,54],[-3,71],[-4,57],[-3,7],[-12,-28],[-4,-5],[-2,-4],[-4,-4],[-8,-11],[-15,-49],[-1,-4],[-23,9],[-8,14],[-3,7],[-11,22],[-10,63],[-13,53],[-14,12],[-10,39],[-3,35],[-3,38],[-11,130],[-31,58],[-5,-2],[-42,-12],[-9,4],[-13,61],[-3,7],[-5,19],[-11,18],[-15,6],[-15,0],[-21,-36],[-18,-59],[-11,-29],[0,-1],[-18,-17],[-13,9],[-13,4],[-1,-4]],[[93360,69251],[-7,136],[-2,94],[-7,65],[1,101],[-13,41],[5,88],[11,42],[8,47],[-8,71],[-12,29],[-7,53],[-11,337],[-1,76],[-8,65],[-15,30],[-8,65],[2,106],[6,76],[-8,59],[9,65],[-5,71],[-7,77],[3,82],[-2,59],[-11,77],[-16,41],[-9,42],[-8,94],[-14,35],[-13,77],[-16,59],[-16,53],[-5,71],[-15,53],[-9,80],[-2,14],[-9,48],[-13,41],[-13,59],[-17,41],[-9,47],[-14,59],[-19,-2],[-26,2],[-13,-6],[-10,36],[-16,-6],[-15,6],[-15,32],[-10,40],[-15,31],[-17,17],[-15,15],[-25,9],[-19,-43],[-18,44],[-13,32],[17,65],[5,65],[16,41],[14,59],[6,65],[7,53],[2,59],[-2,71],[30,124],[13,53],[10,76],[9,53],[15,24],[9,77],[-10,53],[-9,65],[-12,135],[7,42],[6,53],[-4,70],[6,65],[-29,67],[-132,307],[-41,94],[-20,46],[-24,56],[-20,81],[-44,346],[-14,112],[-2,0],[-219,278],[-14,17],[-35,44],[-136,169],[-20,-47],[-10,-22],[-3,-7],[-28,-66],[-17,-41],[-6,-13],[-12,-28],[-95,-195],[-19,-4],[-15,-25],[-16,-12]],[[91993,74909],[-8,90],[4,64],[10,70],[4,69],[3,66],[-18,91],[-7,54],[-7,75],[4,96],[11,49],[8,64],[15,82],[4,62],[10,55],[20,222],[8,94],[11,112],[5,54],[17,165],[10,118],[8,82],[6,59],[6,65],[5,59],[10,95],[10,123],[6,65],[7,77],[2,59],[5,71],[2,40],[2,42],[7,79],[7,87],[17,264],[4,60],[6,85],[14,204],[4,65],[3,45],[4,49],[4,64],[6,87],[7,101],[6,96],[14,219],[16,236],[2,21],[3,38],[31,489],[13,177],[31,466],[10,136],[8,109],[6,109],[7,106],[6,83],[10,159],[1,9],[7,103],[20,289],[15,277],[1,12],[5,77],[0,17],[0,45],[0,134],[0,66],[0,59],[0,175],[0,430],[1,431],[0,65],[0,65]],[[17122,89667],[-4,-67],[1,-105],[-5,-143],[2,-112],[12,-147],[13,-124],[12,-91],[11,-81],[5,-66],[7,-182],[6,-91],[7,-51],[9,-121],[7,-81],[17,-5],[11,-40],[10,-80],[4,-69],[13,-198],[8,-79],[-4,-607],[-4,-659],[-2,-365],[-3,-523],[-1,-230],[0,-24],[-2,-409],[-9,-447],[-3,-262],[-14,12],[-19,17],[-35,31],[-25,21],[-15,14],[-3,2],[-21,18],[-4,4],[-75,65],[-35,-13],[-7,-3],[-20,-7],[-21,-8],[-5,-2],[-20,-8],[-61,-104],[-24,-25],[-47,-52],[-15,-16],[-13,-135],[-20,-31],[-21,-2],[-21,-6],[-21,-7],[2,-135],[0,-42],[-12,-80],[-16,-11],[-40,-29],[-11,-60],[-17,-94],[-7,-40],[-36,-102],[-15,-28],[-23,-42],[-7,-13],[-14,-26],[-15,-27],[-53,-10],[-76,-6],[-72,205],[-30,19],[-10,47],[-13,21],[-23,39],[-7,45],[-10,57],[-6,32],[-4,24],[-7,42],[-7,65],[-5,44],[-11,45],[-18,75],[-48,13],[-37,10],[-34,50],[-11,17],[-15,23],[-42,66],[-17,27],[-16,-36],[-28,-60],[-34,143],[-30,-65],[-14,-56],[-15,-63],[-20,107],[-9,50],[-18,68],[-30,-141],[-3,-203],[0,-2],[-6,-658],[-3,-353],[-1,-23],[-3,-408],[0,-3],[-4,-370],[-3,-189],[-2,-173],[-4,-471],[-7,-715],[-2,-232],[-3,-342],[-1,-135],[-4,-474],[-1,-139],[-1,-118],[-4,-358],[0,-21],[-1,-94],[-7,-733],[-1,-99],[-5,-500],[0,-3],[-2,-258],[-2,-147],[-2,-286],[-1,-66],[-1,-60],[-1,-132],[-1,-153],[-4,-324],[-4,-287],[0,-136],[-1,-75],[-2,-160],[-2,-237],[0,-1],[-3,-256],[-19,-1535],[-1,-71]],[[15585,73141],[-2,-179],[-9,-744],[-4,-328],[-49,3],[-85,8],[-59,5],[-150,12],[-41,3],[-43,4],[-23,-7],[-43,3],[-34,3],[-18,1],[-13,1],[-12,1],[-15,0],[-1,0],[-20,0],[-13,3],[-92,6],[-1,0],[-18,0],[-14,1],[-20,2],[-36,2],[-32,3],[-44,3],[-130,9],[-15,1],[-110,8],[-15,1],[-37,3],[-22,1],[-25,2],[-99,10],[-183,5],[-99,14],[-19,2],[-28,4],[-107,14],[-127,18],[-41,2],[-68,8],[-152,13],[-79,7]],[[13338,72069],[-82,8],[-67,6],[-4,0],[-75,10],[-10,1],[-21,1],[-20,0],[-11,5],[-37,13],[-18,6],[-20,2],[-18,1],[-29,1],[-19,0],[-23,2],[-48,5],[-31,3],[-32,4],[-74,8],[-20,4],[-1,0],[-17,5],[-106,15],[-163,23],[-28,4],[-36,6],[-33,4],[-60,4],[-112,6],[-51,3],[-22,8],[-2,0],[-53,9],[-151,25],[-207,24],[-31,3],[-164,19],[-224,25],[-86,7],[-117,15],[-42,5],[-22,0],[-100,14],[-59,6],[-39,6],[-76,12],[-32,5],[-109,17],[-68,11],[-48,7],[-40,6],[-46,7],[-64,11],[-188,28],[-123,13],[-12,1],[-105,9],[-18,2],[-68,6],[-28,3],[-116,13],[-14,3],[-50,6]],[[9548,72545],[-1,8],[-8,67],[-12,222],[-3,30],[-9,140],[0,4],[148,275],[4,8],[3,3],[16,17],[125,54],[34,14],[21,18],[14,23],[14,38],[25,95],[1,5],[56,256],[5,22],[9,45],[9,56],[15,114],[4,36],[31,253],[3,42],[1,9],[22,180],[24,169],[18,131],[0,3],[38,282],[12,99],[7,70],[33,382],[0,11],[5,44],[14,154],[24,285],[22,303],[10,169],[1,16],[10,153],[10,133],[12,188],[6,83],[26,236],[8,78],[12,100],[1,6],[22,195],[57,532],[1,17],[12,317],[1,15],[1,22],[1,43],[3,24],[24,244],[0,5],[0,2],[6,275],[1,120],[1,83],[-9,234],[-44,956],[0,3],[13,-10],[16,93],[8,44],[103,576],[81,453],[37,204],[16,79],[8,41],[11,87],[54,431],[18,149],[53,427],[2,14],[8,65],[6,51],[21,168],[46,360],[18,147],[-43,444],[-9,74],[-14,125],[-11,106],[-12,141],[-7,114],[-7,133],[-3,92],[0,81],[-1,93],[2,72],[18,337],[14,263],[2,44],[5,70],[5,70],[16,138],[19,172],[17,135],[11,79],[14,68],[18,90],[13,61],[26,124],[37,177],[15,69],[10,45],[1,5],[12,58],[25,118],[3,19],[12,65],[9,54],[31,198],[3,70],[-6,83],[-12,145],[-16,181],[-5,70],[-3,73],[-6,288],[-3,148],[-5,363],[-2,69],[-10,117]],[[11127,89681],[16,8],[306,110],[77,27],[135,48],[86,31],[1556,-123],[437,-26],[437,-27],[271,-17],[274,-16],[279,-17],[26,-2],[1255,-15],[77,-1],[46,-1],[113,-1],[12,0],[22,0],[44,-1],[433,-5],[93,14]],[[20695,89592],[9,-84],[-9,-803],[-1,-138],[-2,-425],[-1,-75],[-1,-184],[-3,-532],[-1,-194],[-2,-303],[-1,-308],[-2,-416],[-1,-135],[-2,-326],[-2,-540],[-1,-191],[-5,-790],[-2,-181],[-1,-155],[-2,-251],[-4,-585],[-1,-111],[-4,-492],[-1,-144],[0,-60],[0,-4],[-8,-420],[-3,-502],[-1,-192],[-2,-318],[-3,-521],[-1,-274],[-2,-312],[-3,-392],[0,-85],[-5,-822],[-2,-191],[-1,-243],[2,-87],[-3,-139],[-2,-175],[0,-131],[0,-4],[-3,-248],[0,-68],[-2,-123],[-3,-325],[-7,-813],[-1,-60],[-4,-483],[-1,-100],[-1,-117],[-2,-273],[-1,-394],[-2,-233],[-6,-604],[-5,-563],[-8,-814],[-5,-443],[-3,-402],[-1,-101],[-6,-546],[-5,-524],[-2,-89],[0,-1],[-10,-1066]],[[20543,68967],[-1,-88],[-2,-161],[-1,-104],[-3,-235],[-1,-94],[0,-45],[0,-20],[-2,-124],[0,-76],[0,-4],[-1,-78],[-1,-65],[0,-62],[0,-133],[-1,-88],[-1,-218],[-5,-155],[-1,-136],[-1,-88],[0,-7],[-1,-183],[-33,3],[-1,0],[-16,2],[-97,8],[-19,1],[-139,7],[-37,2],[-132,9],[-2,0],[-43,3],[-63,4],[-158,11],[-27,2],[-188,13],[-117,24],[-103,7],[-29,2],[-172,13],[-47,3],[1,-170],[4,-603],[2,-460],[0,-1],[1,-89],[3,-497],[5,-862],[3,-447],[-46,22],[-26,-94],[-11,-40],[-22,131],[-26,56],[-27,-60],[-18,-41],[-14,53],[-17,65],[-11,-126],[-9,-70],[-20,-34],[-7,112],[-26,124],[-52,-18],[-19,-28],[-41,-60],[-17,-26],[-4,-6],[-36,-52]],[[18668,63696],[0,60],[-18,76],[-13,59],[-23,-59],[-13,-36],[-65,194],[-10,28],[-5,17],[-23,66],[-24,110],[-54,246],[-21,98],[-49,78],[-14,22],[-13,20],[-53,44],[-10,9],[-96,275],[-18,80],[-59,273],[-24,22],[-4,4],[-9,8],[-11,9],[-9,40],[-9,37],[32,73],[11,26],[-29,119],[-19,134],[-9,69],[-28,206],[-12,87],[-11,39],[-36,129],[-21,51],[-87,214],[-103,-178],[-148,197],[-47,61],[-51,59],[-2,8],[-44,57],[-1,2],[-84,108],[-8,0],[-20,-1],[-35,-3],[-17,21],[-27,35],[-57,72],[-27,35],[-6,7],[-25,32],[-44,56],[-20,26],[-45,70],[-43,69],[-13,21],[-13,56],[-6,33],[-11,49],[-4,18],[-18,86],[-7,140],[-1,25],[-8,175],[-34,53],[-28,43],[-28,-14],[-30,-17],[-16,24],[-28,43],[-20,29],[-8,53],[-64,429],[-15,91],[-73,453],[-13,291],[-19,110],[-6,29],[-35,200],[-20,110],[-27,149],[-10,58],[-12,36],[-32,97],[-37,256],[-54,108],[-30,45],[-31,46],[-36,185],[-25,128],[-16,20],[-37,45],[-27,31],[-29,210],[-57,46],[-58,47],[-12,87],[-13,96],[-10,48],[-67,352],[-53,196],[-60,223],[-14,54],[-11,42],[-16,223],[-7,95],[-4,63],[-31,127],[-21,85],[-18,57]],[[17122,89667],[114,-12],[1167,-16],[162,-108],[65,104],[189,-4],[1876,-39]],[[9548,72545],[6,-51],[3,-27],[-15,-82],[-10,-124],[-1,-117],[-2,-133],[-21,-192],[-4,-63],[0,-2],[0,-3],[7,-161],[0,-13],[7,-117],[-4,-59],[0,-13],[0,-79],[-24,-239],[-88,-9],[-8,0],[-45,-2],[-129,-11],[-250,-21],[-148,-13],[-4,0],[-408,-34],[-48,-4],[-84,-5],[-13,-1],[-41,-3],[-49,-4],[-96,-8],[-98,-8],[-5,0],[-70,-5],[-51,-11]],[[7855,70931],[-136,427],[-102,323],[-202,622],[-56,208],[-78,290],[-171,636],[-89,334],[-44,272],[31,372],[88,491],[208,101],[81,-171],[54,-115],[147,133],[81,73],[148,134],[83,-136],[216,-354],[273,117],[61,26],[75,32],[137,58],[1,-2],[103,-128],[115,12],[70,332],[-9,937],[-24,211],[-22,192],[-102,220],[-209,404],[-63,123],[-207,400],[-63,187],[-204,617],[-79,1127],[31,215],[29,199],[15,97],[20,40],[80,152],[47,89],[120,-20],[98,-17],[421,-326],[154,143],[6,23],[86,320],[56,209],[68,666],[41,895],[-50,580],[-11,70],[-231,1520],[-108,698],[-10,663],[27,199],[52,385],[14,109],[55,162],[120,357],[19,294],[6,387],[4,349],[-6,244],[-32,250],[-155,799],[-38,198],[4,0],[110,-3],[462,-13],[55,-2],[-7,-74],[-78,-880],[-15,-163],[-8,-159],[1,-160],[24,-333],[29,-197],[37,-145],[58,-132],[52,-87],[184,17],[49,108],[30,65],[4,10],[3,12],[44,216],[66,207],[230,1200],[65,562],[29,5],[71,11],[338,52],[228,104],[40,18],[122,55],[5,2]],[[26776,81278],[-19,-105],[-93,9],[-9,0],[-75,7],[-26,2],[-30,3],[-77,8],[-23,3],[-72,11],[-43,4],[-13,1],[-32,-2],[-60,-4],[-119,-11],[-35,-3],[-162,-13],[-48,-4],[-53,-5],[-19,0],[-55,3],[-61,1],[-25,19],[-35,36],[-9,9],[-12,-119],[-7,-72],[-13,-136],[3,-160],[19,-20],[11,-62],[-8,-50],[-1,-2],[-4,-23],[-14,-87],[9,-139],[34,-111],[0,-140],[0,-32],[-6,-19],[-18,-51],[-43,-186],[12,-48],[7,-46],[-3,-57],[-13,-10],[-15,6],[-6,-54],[11,-60],[15,14],[14,9],[7,-43],[2,-14],[-4,-49],[-2,-15],[-16,-59],[-23,-62],[-17,-43],[-15,-16],[-4,-66],[10,-68],[7,-45],[-2,-60],[-3,-102],[36,-189],[-12,-50],[-23,-89],[6,-233],[-9,-53],[-9,-51],[4,-55],[6,-13],[5,-70],[14,2],[17,4],[19,-373],[7,-135],[33,-50],[19,-107],[12,-67],[-20,-117],[-1,-126],[26,-104],[4,-96],[-41,-13],[4,-85],[3,-84],[7,-95],[13,-176],[4,-60],[-3,-115],[-3,-85],[-3,-87],[6,-60],[2,-59],[40,-275],[32,-276],[15,-127],[0,-12],[0,-164],[-1,-65],[-27,-102],[-24,-92],[-38,-21],[-22,-13],[-15,-8],[-28,11],[-44,17],[-13,-11],[-12,-48],[-3,-61],[4,-57],[1,-9],[23,-104],[2,-7],[26,-117],[-4,-66],[-4,-81],[-6,-109],[-17,-109],[-5,-32],[-16,-101],[-11,-23],[2,-42],[1,-15],[6,-54],[21,-55],[-28,-171],[-13,-24],[-25,-49],[-13,-26],[-11,-22],[-21,-40],[-10,-110],[-6,-68],[-10,-114],[-1,-13],[-12,-7],[-22,-13],[-84,-48],[-12,-21],[-21,-39],[-17,-99],[-7,-39],[-20,8],[-12,5],[-40,16],[-14,-26],[-11,-140],[-19,-195],[2,-69],[5,-171],[1,-123],[3,-183],[-14,-112],[-6,-48],[-12,-95],[-21,33],[-17,26],[-26,-261],[-5,-39],[-8,-78],[-16,-24],[-26,-38],[-34,-174],[-11,-179],[-11,-174],[-62,-277],[-13,-59],[-20,-89],[-9,-21],[-76,-173],[-2,-194],[-8,-198],[31,-90],[1,-2],[1,-160],[1,-101],[-19,-71],[-30,-52],[-22,-38],[-18,-138],[9,-82],[8,-75],[-12,-85],[-13,-94],[-44,-316],[-9,4],[-11,4],[-47,21],[-25,-172],[-21,-176],[6,-55],[-1,-92],[-14,-94],[-4,-23],[-27,-184],[-10,-29],[-19,-57],[-5,-65],[-21,0],[-47,-146],[-19,-178],[-6,-66],[-4,0],[-10,-2],[-24,-4],[-6,-115],[-44,-41]],[[24211,67102],[0,270],[2,280],[1,63],[0,77],[5,653],[1,94],[1,67],[-23,3],[-16,2],[-38,5],[-69,8],[-52,5],[-24,2],[-12,-2],[-12,6],[-32,-1],[-39,9],[-79,12],[-47,0],[-43,5],[-8,1],[-83,9],[-20,2],[-58,5],[-31,3],[-75,12],[-100,8],[-211,19],[-33,-1],[-75,6],[-111,5],[-37,2],[-75,3],[-107,5],[-36,2],[-40,3],[-29,2],[-113,4],[-105,6],[-53,15],[-72,5],[-202,13],[-54,3],[-16,2],[-123,8],[-214,10],[-65,5],[-184,9],[-186,11],[-15,1],[-1,48],[0,4],[-177,11],[-26,2],[-74,4],[-13,2],[-81,9],[0,1],[-22,2],[-14,2],[-14,1],[-100,24],[-12,2],[-78,11],[-49,6]],[[20695,89592],[271,-26],[52,-5],[5,0],[1250,-59],[595,-29],[32,-1],[192,-9],[1455,-69],[28,-1],[44,-2],[836,-40],[214,-10],[294,-14],[41,-2],[6,0],[27,-2],[7,34]],[[49994,85130],[-10,-80],[5,-85],[6,-70],[16,-8],[14,12],[14,23],[11,-18],[16,-56],[12,-83],[4,-60],[-26,-97],[-32,-107],[-8,-71],[1,-73],[5,-67],[8,-45],[-6,-55],[1,-121],[-2,-82],[-9,-96],[-16,-111],[-16,-103],[-13,-75],[-4,-78],[-11,-53],[-2,-79],[-16,-79],[-13,-20],[-40,24],[-22,0],[-14,-18],[-16,-21],[-23,-30],[-37,-46],[-20,-14],[-27,-9],[-43,-68],[-18,-29],[-47,-75],[-79,-98],[-31,-158],[-47,-61],[-33,-43],[-43,-58],[-34,-41],[-15,-19],[-38,-89],[-20,-44],[-13,-32],[-16,-39],[-47,-122],[-33,-83],[-39,-103],[-43,-123],[-27,-79],[-58,-200],[-21,-54],[-13,-45],[-15,-53],[0,-3],[-30,-117],[-23,-74],[-25,-90],[-24,-93],[-18,-71],[-15,-59],[-61,-267],[-18,-84],[-20,-95],[-36,-168],[-24,-127],[-9,-54],[-3,-13],[-16,-92],[-29,-157],[-17,-93],[-54,-340],[-56,-388],[-12,-96],[-16,-126],[-16,-126],[-10,-91],[-28,-234],[-31,-294],[-14,-152],[-12,-136],[-26,-306],[-14,-173],[-63,19],[-60,85]],[[48171,77448],[-59,332],[-31,178],[-66,277],[-22,97],[-37,164],[-47,202],[-52,228],[-120,411],[-17,57],[-3,-72],[-10,-98],[-13,-92],[-6,-25],[-15,-104],[-2,-11],[-8,-40],[-29,-99],[-5,-6],[-13,-18],[-1,0],[-15,6],[-47,99],[-16,53],[-3,11],[-17,55],[-30,123],[-7,27],[-73,357],[-27,174],[-3,21],[-8,67],[-3,65],[1,215],[-1,116],[-14,3],[-18,35],[-30,63],[-69,-171],[-33,17],[-17,4],[-29,19],[-14,8],[-12,15],[2,75],[7,295],[-22,12],[-16,9],[-3,-15],[-84,-402],[-37,-143],[-22,-86],[-32,-170],[-25,-291],[1,-28],[-6,-33],[-5,-197],[5,-49],[5,-114],[2,-350],[1,-207],[-11,-345],[-14,-121],[-3,-15],[0,-1],[-2,-14],[-1,-11],[-4,-18],[-3,-15],[-8,-37],[-4,-12],[-33,-111],[-6,-18],[-16,-32],[-31,-61],[-6,-11],[-14,-31],[-10,6],[-22,14],[-21,13],[-10,6],[-26,145],[-25,138],[-15,94],[-17,118],[-5,66],[0,8],[1,76],[4,139],[1,29],[2,27],[8,132],[9,127],[22,197],[10,75],[35,216],[10,99],[2,81],[0,5],[-2,67],[-6,171],[-1,28],[0,2],[-3,23],[-2,102],[0,26],[-12,156],[-1,12],[-26,253],[-13,76],[-4,19],[-29,99],[-26,43],[-43,10],[-6,-13],[-17,-33],[-21,-15],[-4,-5],[-1,-1]],[[39208,82566],[14,-91],[14,-60],[11,-57],[-10,-57],[-44,-27],[4,-249],[2,-146],[58,-35],[23,-303],[-29,-107],[-7,-160],[-9,-213],[-15,-200],[-37,-499],[-13,-185],[-10,-128],[-3,-48],[-6,-85],[-29,-409],[0,-3],[-33,-319],[-113,-1034],[-82,-748],[-1,-8],[-26,-238],[-9,-86],[-48,-415],[-100,-343],[-14,-49],[-28,-224],[-38,-294],[-128,-1020],[-12,-159],[-99,-1286],[32,-379],[8,-72],[0,-1],[3,-53],[-3,-43],[-10,-37],[-3,-15],[-5,-72],[-4,17],[-29,31],[-32,52],[-2,-14],[-1,-9],[-1,-41],[7,-10],[3,31],[24,-31],[3,-7],[6,-14],[-11,-230],[21,-24],[0,-5],[-2,-32],[-13,-366],[-54,-1474],[-10,-284],[-4,-91],[-18,-509],[-22,-735],[-20,-642],[-7,-239],[-8,-260],[-7,-156],[-112,-522],[-87,-366],[-44,-181],[-22,-91],[-96,-413],[-24,-108],[-9,-37],[-14,-63],[-45,-206],[-9,-49],[-1,-78],[-1,-64],[-3,-238],[31,-14],[-5,-150],[-4,-116],[-24,6],[0,-17],[0,-17],[-3,-136],[0,-58],[0,-10],[-3,-83],[-14,-1368],[-3,-235],[-5,-421],[-12,4],[-3,13],[-17,65],[-10,148],[-2,34],[-69,97],[-28,17],[-20,12],[9,-241]],[[37583,62681],[-155,-63],[-54,-12],[-72,-12],[-19,-3],[-38,-7],[-6,-1],[-17,-4],[-88,27],[-58,23],[-92,30],[-54,18],[-149,48],[-17,20],[-81,36],[-30,13],[-59,23],[-17,6],[-13,5],[-16,3],[-13,3],[-55,11],[-33,7],[-22,4],[-32,9],[-15,4],[-22,5],[-32,7],[-52,16],[-29,-1],[-143,32]],[[36100,62928],[9,220],[23,538],[9,196],[3,74],[4,21],[5,27],[18,42],[13,56],[24,56],[-4,109],[0,1],[-8,128],[-4,121],[0,4],[-12,124],[-2,20],[-10,75],[0,8],[-3,79],[7,55],[15,-9],[1,-1],[22,-54],[1,167],[0,379],[0,253],[0,9],[1,550],[2,278],[1,55],[4,135],[25,757],[7,255],[4,111],[9,316],[4,160],[2,66],[3,75],[1,64],[3,76],[9,324],[4,130],[1,43],[-24,139],[0,2],[-10,45],[-15,89],[-14,90],[0,5],[-1,3],[-6,51],[-2,30],[0,2],[1,116],[4,84],[1,7],[8,98],[5,34],[0,3],[1,5],[17,86],[9,33],[1,1],[4,12],[6,22],[109,193],[11,18],[18,40],[22,58],[10,35],[1,3],[15,54],[5,30],[0,1],[1,2],[6,51],[0,26],[0,1],[0,2],[-4,70],[-11,98],[-2,16],[-33,261],[-4,28],[-1,2],[-15,85],[-9,71],[-1,15],[-14,99],[-6,34],[-5,13],[0,2],[-14,16],[-29,36],[-12,8],[-5,4],[-4,0],[-27,-5],[-5,-3],[-24,-12],[-7,4],[-6,18],[-12,93],[-2,151],[2,15],[14,90],[4,33],[4,74],[0,38],[-4,46],[-13,107],[-41,187],[-16,70],[-30,127],[-8,25],[-2,3],[-4,7],[-4,2],[-17,-8],[-3,-3],[-40,-43],[-9,0],[-9,20],[-4,17],[-3,30],[0,103],[3,108],[4,73],[8,120],[9,85],[2,15],[3,22],[33,269],[28,192],[5,21],[6,16],[9,2],[80,-104],[28,65],[1,3],[15,52],[8,36],[1,3],[6,61],[3,34],[9,135],[4,134],[-24,209],[-3,3],[-37,190],[-7,50],[0,34],[1,11],[3,9],[16,3],[-1,6],[-4,44],[-5,42],[-1,5],[-10,49],[-2,4],[-10,31],[-8,17],[-2,2],[-14,16],[-5,1],[-7,2],[-12,-11],[-11,-22],[-8,-16],[-38,-92],[-3,-10],[-8,-24],[-18,-39],[-1,-9],[0,-2],[-28,-115],[-5,-6],[-52,91],[-6,26],[0,5],[0,10],[-24,89],[13,221],[1,23],[3,18],[20,108],[14,73],[48,172],[32,130],[7,30],[28,108],[7,19],[77,219],[50,84],[38,82],[6,21],[43,174],[0,2],[7,17],[22,66],[16,74],[4,97],[-2,28],[3,15],[-7,34],[1,73],[5,194],[16,159],[0,20],[-12,5],[-16,9],[-29,14],[-79,39],[-32,15],[2,50],[9,289],[11,29],[56,-55],[16,-1],[12,5],[26,25],[17,29],[9,54],[5,79],[-3,74],[10,40],[13,17],[15,27],[15,172],[0,2],[-3,43],[-7,84],[-16,221],[-17,66],[-12,37],[-10,29],[-2,7],[-1,2],[-13,22],[-21,28],[-18,22],[-17,14],[-2,2],[-21,20],[-16,22],[-11,8],[-5,4],[-18,34],[0,1],[-9,17],[-11,35],[-11,38],[-11,38],[-17,31],[-15,26],[-12,11],[-18,0],[-1,0],[-27,-11],[-13,-1],[-19,0],[-26,4],[-16,3],[-37,8],[-6,1],[-15,2],[-31,32],[-30,26],[-34,33],[-1,1],[-22,18],[-18,1],[-13,0],[-14,-16],[-6,-5],[-22,-19],[-30,-33],[-1,0],[-16,-5],[-2,0],[-18,9],[-9,18],[-4,9],[-11,21],[-5,12],[-22,67],[-13,47],[-23,85],[-13,16],[-3,4],[-28,155],[-2,13],[-40,206],[-6,36],[-14,87],[-1,3],[-11,108],[-2,32],[-2,47],[-13,-4],[-4,-17],[-7,-83],[5,-65],[-3,-97],[-16,-68],[-14,-16],[-12,-16],[-15,7],[-18,-5],[-21,-101],[-11,-11],[-21,-21],[-64,-60],[-3,70],[-130,-96],[-48,-35],[-231,69]],[[36565,77375],[-23,-148],[-30,73],[-20,-78],[-23,-105],[-7,-28],[4,-46],[0,-2],[1,1],[2,2],[25,27],[47,50],[23,22],[35,102],[-25,120],[-9,10]],[[91993,74909],[-122,-289],[-59,-325],[-10,-216],[-6,-120],[3,-124],[6,-207],[0,-64],[-9,-65],[-15,-48],[-16,-32],[-12,-41],[-11,-69],[-18,-87],[-7,-46],[-17,-160],[-50,-204],[11,-216],[6,-51],[-9,-91],[-10,-53],[-10,-53],[-14,12],[-11,-29],[-13,-12],[-17,-47],[-20,-57],[-80,-227],[-47,-115],[-53,-134],[-9,-22],[-22,-55],[-38,-92],[-26,-116],[-89,-392],[-89,-749],[8,-342],[1,-77],[-11,-88],[-19,-71],[-11,-53],[-11,-59],[-12,12],[-13,11],[-15,48],[-14,0],[-14,-6],[-19,-36],[-12,18],[-14,-35],[-6,-83],[-10,-29],[0,-71],[-1,-65],[-5,-89],[-14,-59],[-11,-65],[-15,-41],[-16,-12],[-37,4],[-2,0],[-10,1],[-22,1],[-135,12],[-389,27],[-209,15],[-240,-402],[-252,-1002],[-99,-390],[-251,-1013],[-121,-484],[-55,-220]],[[89054,65670],[-20,102],[-80,406],[-124,629],[-31,160],[-52,262],[-29,146],[-21,85],[-10,50],[-96,461],[-89,405],[-30,137],[-26,119],[7,722],[6,599],[4,351],[1,120],[5,525],[2,116],[9,660],[-26,109],[-31,130],[-1,214],[-1,172],[12,88],[56,-13],[1,84],[1,67],[3,232],[2,194],[4,308],[2,148],[2,120],[1,59],[0,4],[1,28],[3,219],[6,396],[1,108],[1,69],[2,98],[1,40],[1,83],[1,67],[7,426],[6,311],[10,805],[4,266],[5,392],[8,560],[0,19],[2,151],[5,366],[5,353],[8,789],[26,2743],[3,321],[-1,1168],[0,69],[-1,179],[0,166],[-1,853],[-77,-46],[-44,-27],[-241,-145],[-19,-12],[-40,-24],[-124,-75],[-250,-151]],[[76676,80311],[-8,-89],[-19,-224],[-15,47],[-11,-17],[-16,-47],[42,-54],[-13,-141],[-18,6],[-10,65],[-9,41],[-12,-12],[-10,-35],[-9,-42],[-22,-88],[-13,-35],[-13,-36],[-9,-47],[-7,-59],[9,-53],[11,-36],[12,-47],[13,-35],[9,-59],[12,-47],[11,-24],[-21,-240],[-7,-88],[-21,-236],[-32,-370],[-45,-518],[-29,-335],[70,76],[13,-180],[-2,-79],[-8,-62],[-11,-20],[-23,-56],[-7,-32],[-1,-21],[-1,-12],[-11,-122],[0,-2],[-5,-35],[-3,-24],[12,-139],[-11,-193],[-3,-18],[-2,-9],[-1,-2],[-40,-138],[-20,-42],[-4,-8],[-6,-21],[-7,-31],[-39,-30],[-5,-14],[-11,-32],[-2,-6],[-3,-9],[-9,-33],[-16,-51],[-1,0],[-11,-708],[-2,-143],[-1,-18],[-7,-488],[11,47],[15,29],[13,36],[12,35],[13,30],[13,29],[12,18],[14,24],[6,-201],[2,-84],[12,-567],[2,-132],[0,-43],[-1,-22],[-7,-170],[-22,-511],[-25,-564],[-16,-368],[-5,-99],[-5,-77],[-12,-35],[-15,-42],[-16,-23],[-12,-18],[-16,-18],[-11,-23],[-11,-47],[-16,-24],[-11,-24],[-14,-29],[-13,-24],[-10,-41],[-20,-24],[-14,-35],[-15,-53],[-7,-47],[-3,-65],[0,-65],[43,-83],[4,-88],[-14,-59],[-15,-53],[-12,-36],[-11,-35],[-10,-35],[-12,-36],[-12,-12],[-14,-17],[-12,-6],[-13,-12],[-11,0],[-12,-6],[-13,-24],[-7,-53],[12,-29],[10,-41],[1,-59],[-3,-59],[-1,-59],[12,-36],[14,-12],[10,-35],[12,-24],[9,-41],[9,-59],[3,-65],[12,-41],[27,-65],[13,-29],[14,-12],[14,-12],[7,-47],[-11,-47],[-14,-48],[-13,-35],[-16,-12],[-13,-41],[-16,-47],[-13,-48],[-17,0],[-13,-35],[-12,-29],[-14,-24],[-19,-41],[-14,-59],[-23,-77]],[[75922,69704],[-46,5],[-114,14],[-38,5],[-33,4],[-141,19],[-1,0],[-14,2],[-55,7],[-24,3],[-37,5],[-130,17],[-100,13],[-23,4],[-18,2],[-143,20],[-29,4],[-10,2],[-21,3],[-15,2],[-22,3],[-26,4],[-155,22],[-70,9],[-120,16],[-108,14],[-64,9],[-26,2],[-58,8],[-82,11],[-33,5],[-56,8],[-101,12],[-64,5],[-30,2],[-1,0],[-45,5],[-79,10],[-61,7],[-40,167],[-10,41],[-71,293],[-98,502]],[[73510,70990],[-55,289],[-12,48],[-2,4],[-22,84],[-10,36],[-53,200],[-63,241],[-7,35],[-69,342],[-18,90],[-8,54],[-12,130],[-24,253],[-21,221],[-16,168],[-20,212],[-87,384],[-15,70],[-16,71],[-4,24],[-8,58],[-11,69],[-5,39],[-18,130],[-27,205],[-30,224],[-15,65],[-5,68],[9,52],[13,80],[-25,247],[-6,66],[-11,35],[-17,54],[-7,49],[-14,98],[-7,47],[-11,47],[-12,48],[-8,29],[-2,93],[18,133],[0,1],[10,62]],[[52288,74036],[3,-73],[-6,-74],[-11,-29],[-11,-24],[-17,-97],[-19,-101],[3,-143],[45,-198],[16,-138],[-15,-163],[-15,-163],[8,-98],[4,-97],[-17,-171],[-18,-2],[-20,-41],[-57,11],[-96,19],[-9,2],[-24,5],[-29,-35],[-44,-225],[0,-76],[2,-9],[21,-90],[31,17],[18,62],[16,59],[19,2],[-1,-151],[9,-94],[-11,-229],[-4,-99],[-7,-158],[5,-67],[6,-61],[48,-1],[0,-59],[-2,-77],[-1,-65],[-3,-70],[-19,-15],[-12,-47],[-8,-56],[-6,-67],[-6,-61],[-50,4],[0,-2],[-1,-101],[-4,-81],[19,-7],[4,-203],[2,-96],[37,-20],[-6,-140],[18,-19],[12,60],[23,87],[18,-39],[14,-2],[1,282],[-8,46],[8,38],[19,-10],[7,56],[33,-13],[11,-4],[-4,-223],[35,-24],[5,-70],[-3,-102],[-16,-11],[-20,-46],[-13,-10],[-127,-101],[-51,6],[-8,-237],[-2,-67],[-9,-2],[-22,-1024],[8,-52],[9,-52],[19,-62],[-4,-66],[-7,-46],[4,-35],[14,-15],[-1,-40],[-2,-116],[-6,-277],[0,-3],[0,-10],[-4,-182],[-32,-1]],[[51974,67757],[-7,-79],[-110,-241],[-39,-116],[-17,-30],[-26,-44],[-2,-4],[-21,-36],[-19,8],[-7,19],[-18,88],[-3,15],[-1,0],[-25,11],[-1,1],[-2,1],[-2,3],[-2,3],[-2,3],[-2,5],[-2,5],[-1,4],[-36,121],[-4,8],[-6,-2],[-7,-11],[-3,-5],[-6,-16],[-1,-2],[-1,-14],[-7,-85],[1,-1],[1,-6],[2,-7],[0,-1],[-9,-111],[-8,-90],[-11,-104],[-14,5],[-108,39],[-17,-41],[-4,-64],[-4,-83],[18,-99],[14,-27],[-3,-176],[-9,-87],[-16,-48],[-14,-86],[-5,-94],[-13,-24],[-19,-40],[-25,-202],[-2,-89],[-9,-101],[-20,-74],[6,-179],[-12,-57],[-26,35],[-39,70],[-10,104],[-45,14],[-23,3],[-33,0],[-46,32],[-36,403],[0,1],[-45,-68],[-32,51],[10,166],[7,57],[-11,139],[3,168],[-17,40],[-15,12],[-11,102],[-18,-9],[-18,-17],[-12,-19],[-17,-39],[-20,5],[-2,79],[-34,30],[-36,16],[-6,-53],[1,-183],[-44,-42],[-2,-70],[-7,-53],[-8,-90],[15,-75],[12,-84],[4,-66],[-2,-87],[20,-236],[4,-108],[-44,-22],[0,73],[-6,93],[-9,74],[-12,71],[-71,24],[-15,-53],[-26,72],[-14,53],[-21,162],[-3,110],[-7,29],[-12,-35],[-68,31],[10,-115],[18,-12],[-1,-113],[-20,-47],[-7,-17],[-6,-13],[-18,126],[-50,-116],[-47,-111],[-16,42],[-10,43],[-10,43],[-7,54],[-8,58],[-15,50],[-14,48],[-16,7],[-11,35],[-9,60],[-9,69],[-24,6],[-3,-124],[-35,12],[-5,-72],[-5,-67],[-11,-53],[-10,-34],[-1,-69],[-3,-123],[-13,-73],[-5,-84],[-20,-56],[-15,-34],[-13,-13],[-18,2],[-23,37],[-12,36],[-10,-63],[-4,-64],[-8,-62],[-16,-37],[-13,-31],[-10,-57],[-2,-96],[-15,-87],[-16,-182],[-70,26],[9,329],[-23,48],[-36,-406],[-40,16],[-26,14],[2,-133],[5,-59],[-38,-135],[-18,41],[3,83],[2,63],[3,234],[-27,6],[-13,-30],[-17,27],[-7,51],[-12,-17],[-5,-110],[-3,-102],[-4,-162],[-33,6],[-12,17],[-23,30],[-33,16],[-16,4],[-11,1],[-2,0],[-12,-36],[-1,0],[-16,0],[-10,-46],[-25,43],[0,1],[-16,30],[-26,54],[-22,43],[-41,83],[-3,-93],[-39,21],[3,171],[-153,69],[-44,-261]],[[49061,65070],[-54,942],[-4,74],[-4,66],[-7,126],[-12,204],[-4,82],[-28,-73],[1,252],[28,-12],[1,60],[1,49],[8,478],[-45,15],[1,72],[0,63],[-21,162],[-11,72],[-21,10],[4,148],[3,85],[-38,22],[-27,380],[-8,111],[-7,96],[-78,1100],[-22,318],[-5,69],[0,4],[-7,96],[-17,243],[0,1],[-52,735],[0,23],[0,45],[-14,95],[-2,59],[0,14],[-18,10],[-2,0],[0,2],[-5,82],[7,65],[6,14],[12,27],[31,66],[1,1],[14,34],[12,13],[20,5],[-10,252],[-5,70],[-1,5],[-13,13],[-1,0],[-14,15],[0,5],[10,93],[-20,26],[-14,19],[-6,-51],[-31,-21],[-29,-4],[-39,556],[-24,332],[-9,135],[-26,358],[-65,33],[-1,-39],[-43,80],[1,0],[16,7],[0,90],[-24,-4],[4,143],[5,174],[35,70],[35,-17],[-12,176],[28,77],[5,13],[-2,0],[-3,-2],[-3,3],[1,55],[-14,4],[-22,5],[-19,256],[-10,144],[-4,56],[0,2],[-43,588],[44,52],[2,162],[0,21],[15,6],[3,99],[15,-7],[6,132],[-52,73],[-12,-65],[-5,-27],[-5,-10],[-7,-11],[-8,-165],[-15,2],[-4,63],[-10,178],[-3,61],[-37,436],[-25,340],[-6,80],[-6,83],[-18,233],[-18,246],[-14,74]],[[81433,77049],[-11,6],[-12,-6],[-20,-6],[-17,-6],[-20,-17],[-12,-6],[-15,-47],[-12,-42],[-10,-59],[-9,-59],[1,-59],[6,-59],[5,-53],[3,-65],[2,-65],[2,-70],[1,-77],[-3,-65],[-6,-77],[-9,-41],[-16,-18],[-19,-6],[-15,0],[-17,18],[-15,47],[-10,48],[-2,5],[-16,48],[-16,-12],[-10,-77],[-1,-82],[1,-95],[2,-65],[0,-6],[0,-70],[1,-107],[2,-76],[2,-89],[-4,-71],[-9,-47],[-12,-35],[-13,-24],[-12,-6],[-19,-6],[-1,0],[-15,0],[-16,12],[-17,6],[-24,41],[-11,48],[-6,76],[-2,65],[2,59],[6,77],[3,59],[4,65],[2,82],[-2,71],[-3,89],[-7,82],[-9,53],[-11,36],[-16,23],[-14,-17],[-15,-42],[-18,-53],[-11,-53],[-9,-65],[-9,-47],[-8,-65],[-5,-59],[-7,-77],[-9,-59],[-13,-41],[-11,-6],[-13,12],[-12,18],[-12,41],[-12,47],[4,65],[-3,71],[-7,88],[-4,59],[-8,71],[-13,24],[-11,-6],[-14,23],[-12,54],[-10,53],[-8,59],[-7,47],[-10,77],[-4,59],[-5,59],[1,21],[0,43],[6,54],[9,59],[7,64],[-7,183],[-7,53],[-9,53],[-10,54],[-13,70],[-10,30],[-22,41],[-17,30],[-19,11],[-12,-32],[-14,-27],[-12,-59],[-10,-88],[-7,-94],[-2,-83],[0,-77],[-1,-59],[-1,-82],[-2,-59],[-4,-83],[-9,-59],[-11,-29],[-13,-18],[-13,-30],[-17,-53],[-13,-47],[-10,-35],[-14,-12],[-17,-6],[-13,12],[-17,41],[-17,41],[-13,24],[-19,18],[-18,23],[-14,24],[-14,12],[-18,0],[-15,-6],[-15,-24],[-13,-29],[-13,-53],[-15,-53],[-11,-59],[-6,-59],[-6,-65],[-1,-65],[1,-59],[5,-71],[9,-59],[9,-53],[4,-59],[1,-83],[-12,-100],[-14,-35],[-22,-53],[-15,-12],[-17,-6],[-14,-6],[-12,6],[-17,6],[-13,6],[-12,0],[-12,0],[-11,-12],[-16,-12],[-13,0],[-14,6],[-14,2],[-14,4],[-17,12],[-13,-12],[-17,-24],[-10,-29],[-9,-42],[-17,-70],[-9,-42],[-11,-71],[-11,-59],[-6,-100],[-8,-82],[-8,-71],[-9,-53],[-12,-53],[-19,-48],[-21,-35],[-23,-41],[-17,-30],[-12,-23],[-17,-34],[-12,-19],[-15,-24],[-16,-35],[-11,-48],[-10,-41],[-11,-77],[-8,-47],[-10,-53],[-10,-59],[-9,-65],[-9,-53],[-14,-100],[-13,-89],[-7,-53],[-8,-53],[-7,-77],[-6,-59],[-5,-76],[-1,-27],[-2,-32],[3,-89],[7,-88],[12,-95],[13,-76],[11,-77],[12,-83],[7,-100],[2,-71],[-8,-70],[-10,-42],[-20,-76],[-9,-42],[-14,-53],[-13,-47],[-12,-53],[-19,-77],[-18,-53],[-27,-35],[-18,-30],[-21,-29],[-13,0],[-19,17],[-17,36],[-12,41],[-15,71],[-3,71],[4,94],[6,77],[3,100],[-7,106],[-14,83],[-15,47],[-16,18],[-16,-36],[-17,-65],[-13,-41],[-10,-29],[-18,-71],[-11,-83],[-6,-71],[-3,-94],[-2,-71],[0,-59],[2,-70],[1,-130],[-3,-71],[-1,-65],[-3,-77],[0,-124],[4,-70],[6,-83],[14,-94],[8,-53],[7,-53],[6,-54],[4,-82],[0,-83],[-9,-100],[-16,-89],[-29,-59],[-23,-23],[-17,-12],[-18,-6],[-12,-12],[-14,-6],[-16,-11],[-16,0],[-14,17],[-35,30],[-16,-47],[-13,-77],[-3,-83],[8,-88],[9,-77],[6,-65],[8,-94],[3,-83],[-2,-59],[-8,-112],[-6,-53]],[[78988,70300],[-15,-41],[-18,-59],[-14,-41],[-14,-36],[-20,-41],[-16,-36],[-14,-29],[-19,-41],[-24,-53],[-18,-36],[-17,-35],[-19,-18],[-12,6],[-16,0],[-14,0],[-22,-18],[-13,-17],[-17,-6],[-15,23],[-3,5],[-12,-16],[-33,-33],[0,2],[0,1],[-15,87],[-12,22],[-2,4],[-37,56],[-7,9],[-11,31],[-3,9],[-26,109],[-7,38],[-29,155],[-17,91],[-10,53],[-22,67],[-6,6],[-7,-6],[-25,-19],[-2,-2],[-1,-12],[-33,-316],[0,-1],[-9,-180],[0,-2],[-11,-173],[0,-3],[-11,-120],[-21,-60],[-21,-21],[-1,2],[-30,63],[-45,250],[-4,19],[-2,108],[-1,30],[-3,140],[4,80],[3,60],[-4,140],[-3,84],[-1,27],[-11,70],[-16,48],[-33,18],[-20,-5],[-6,-13],[-12,-2],[-31,-92],[-3,-9],[-3,-2],[-22,-24],[-12,-10],[-29,8],[-4,-14],[-6,-2],[-12,-4],[-14,-1],[-3,3],[-16,15],[-8,35],[-2,11],[-3,41],[0,19],[0,107],[-1,138],[-4,129],[-2,18],[-23,163],[-17,53],[-18,2],[-9,0],[-15,-40],[-7,-44],[-5,-156],[7,-195],[4,-36],[21,-199],[1,-10],[15,-128],[2,-12],[3,-18],[13,-83],[6,-75],[2,-105],[-5,-156],[-6,-61],[-1,-8],[-23,-138],[-16,-51],[-4,-10],[-10,-11],[-9,3],[-32,12],[-3,1],[-12,16],[-29,44],[-10,15],[-3,10],[-3,13],[-23,40],[-11,6],[-6,3],[-2,1],[-5,-5],[-13,-13],[-3,-3],[0,-1],[-1,-2],[-7,-24],[-4,-27],[-2,-10],[-1,-13],[-2,-17],[0,-31],[0,-41],[17,-213],[6,-81],[5,-63],[1,-81],[-3,-109],[-3,-15],[-5,-34],[0,-3],[-1,-4],[-10,-30],[-26,-26],[-29,16],[-20,42],[-8,53],[-2,16],[0,6],[-1,67],[8,212],[5,131],[0,3],[-5,88],[-4,25],[-5,29],[-6,33],[-5,5],[-10,9],[-6,5],[-22,-27],[-11,-27],[-8,-23],[-26,-83],[-3,-9],[-3,-30],[-5,-40],[-3,-36],[-3,-44],[-8,-112],[-4,-59],[-9,-253],[-5,-133],[-2,-36],[3,-62],[0,-18],[2,-34],[18,-344],[2,-15],[1,-11],[-2,-18],[-12,-117],[-3,-31],[-20,-69],[-10,-19],[-18,10],[-11,6],[-13,30],[-10,37],[-9,37],[-16,33],[-3,-1],[-14,-6],[-2,-2],[-4,-11],[-2,-36],[-2,-41],[-1,-8],[17,-152],[22,-100],[2,-5],[24,-115],[6,-33],[-1,-47],[-1,-32],[-1,-22],[-2,-8],[-11,-33],[-2,-7],[-3,2],[-24,20],[-39,215],[-4,23],[-2,29],[-27,394],[-5,42],[-2,10],[-7,33],[-3,11],[-9,13],[-1,0],[-14,2],[-7,1],[-8,-25],[-2,-7],[-12,-36],[-28,-160],[-23,-65],[-3,-9],[-2,1],[-13,7],[0,1],[-14,63],[-2,22],[-14,161],[0,3],[-16,94],[-1,3],[-10,26],[-21,20],[-10,-19],[-18,-54],[-18,-461],[1,-109],[4,-304],[10,-73],[14,-67],[3,-14],[8,-11],[22,-29],[39,-20],[5,-12],[11,-19],[12,-79],[6,-41],[1,-5],[0,-26],[0,-81],[0,-14],[-1,-66],[1,-67],[0,-9],[0,-29],[-3,-210],[-1,-60],[-1,-112],[-7,-139],[0,-132],[-2,-60],[0,-83],[-12,-192],[-13,-61],[-12,-27],[-21,-27],[-24,-30],[-4,-9],[-11,-21],[-7,-12],[-4,-6],[-6,-9],[-29,-46],[-18,-3],[-27,15],[-36,65],[-13,24],[-1,6],[-20,61],[-19,104],[-1,3],[-1,6],[-13,139],[-2,23],[0,15],[2,111],[6,38],[2,14],[0,1],[21,55],[9,23],[24,83],[6,39],[4,28],[3,101],[-1,19],[-8,94],[-6,87],[-8,60],[-5,26],[-3,18],[-6,11],[-17,25],[-14,39],[-35,27],[-25,45],[-17,16],[-4,3],[-11,-3],[-9,-2],[-6,3],[-25,13],[-6,3],[-49,114],[-3,18],[-19,34],[-11,6],[-23,-28],[-4,-19],[0,-3],[-8,-123],[-4,-133],[0,-216],[2,-136],[7,-76],[9,-44],[21,-83],[7,-12],[13,-86],[5,-35],[9,-124],[1,-48],[3,-118],[1,-60],[9,-77],[23,-133],[13,-77],[9,-37],[7,-7],[17,-105],[29,-179],[2,-23],[7,-85],[1,-69],[0,-25],[0,-34],[-2,-78],[-1,-17],[0,-15],[-6,-45],[0,-4],[-3,-32],[-21,-96],[-26,-61],[-13,-20],[-1,-1],[-23,-15]],[[76675,64749],[3,162],[2,171],[-59,420],[-41,282],[-42,36],[-22,182],[-69,31],[0,371],[-6,4],[7,183],[-6,35],[-18,4],[0,-38],[-62,-33],[-35,-111],[-20,5],[1,84],[2,75],[11,45],[6,26],[2,45],[28,100],[4,-1],[2,70],[3,96],[0,132],[32,14],[1,54],[-100,45],[-1,-29],[-3,-73],[-15,12],[0,-71],[-26,35],[5,84],[-13,15],[-28,138],[3,25],[-4,189],[-63,29],[-59,245],[-1,3],[-22,137],[-8,49],[-8,44],[-9,10],[-11,71],[-16,421],[-8,189],[0,9],[-7,70],[-23,242],[-17,178],[-4,15],[-16,69],[-23,360]],[[42891,74454],[9,-116],[1,-27],[2,-62],[-4,-15],[0,-37],[-17,1],[0,-75],[16,16],[2,-157],[28,-6],[7,-100],[18,-247],[11,-155],[7,-103],[4,-58],[5,-70],[4,-60],[5,-68],[9,-116],[11,-161],[5,-57],[0,-2],[4,-56],[5,-68],[4,-65],[11,-148],[4,-65],[7,-100],[5,-74],[10,-130],[19,-273],[1,-18],[9,-138],[4,-52],[9,-122],[3,-61],[4,-91],[4,-86],[17,-387],[12,-274],[8,-168],[13,-193],[0,-3],[22,-204],[7,-56],[55,-470],[76,-817],[56,-106],[9,-37],[-5,-71],[-47,-38],[-1,-47],[-2,-44],[-11,-342],[26,-60],[21,118],[37,100],[32,-23],[44,181],[4,13],[4,-20],[20,-98],[3,-100],[17,-76],[12,65],[11,58],[10,38],[15,15],[15,-7],[61,131],[32,-22],[14,-9],[-6,-128],[-27,1],[-8,-218],[18,-11],[-7,-435],[-27,11],[0,-5],[-5,-135],[-4,-131],[-2,-63],[-16,-527],[-44,12],[-6,-139],[-5,-121],[95,-64],[49,-24],[12,-51],[78,-321]],[[43799,65930],[-15,-660],[-1,-79],[-5,-209],[-1,-31],[-22,0],[-1,-66],[-7,-274],[-1,-35],[-3,-124],[-5,-166],[0,-13],[-28,-89],[-17,-107],[-2,-17],[7,-583],[-16,-101],[-33,-23],[-25,41],[-25,141],[51,669],[12,157],[-23,207],[-18,-9],[-92,-44],[-20,59],[-40,420],[-10,111],[-21,70],[-18,-80],[-6,-32],[0,-24],[5,-293],[0,-19],[19,-107],[9,-52],[-5,-649],[-46,-71],[-79,24],[-47,148],[-3,11],[-17,-133],[10,-59],[-3,-73],[-20,-21],[5,-98],[24,-215],[4,-36],[-7,-203],[-15,-57],[-20,-80],[-10,-193],[11,-141],[0,-2],[50,-390],[-2,-54],[0,-3],[-2,-37],[-9,-102],[-8,-54],[-5,-14],[-18,-9],[-29,-22],[-24,-35],[-30,-102],[-76,-316],[-3,-14],[-2,0],[-35,-3],[-31,-18],[-30,-23],[-6,-18],[-14,-42],[-45,-192],[-6,-18],[-19,-71],[-58,-245],[-6,-100],[11,-41],[-12,-96],[-2,-16],[-21,-34],[-42,-47],[-30,5],[-23,-12],[-11,-10],[-2,10],[-7,-15],[2,-14],[-1,0],[-5,-147],[-1,-10],[-2,-73],[-13,-343],[-4,-125],[-2,-69],[-11,-300],[69,-42],[-5,-165],[-1,-140],[33,-16],[-4,-108],[-1,-116],[-4,-113],[-18,3],[-10,-256],[-37,4],[0,-186],[-9,-272],[-51,26]],[[42607,58120],[3,184],[-105,46],[3,113],[-57,11],[-21,8],[-18,7],[-113,44],[-30,20],[-2,51],[-44,87],[-31,62],[-21,42],[-284,558],[-11,59],[-10,51],[-6,32],[-21,109],[-10,39],[-18,76],[-22,-24],[-18,-22],[-10,34],[-9,41],[-52,165],[-26,82],[-2,6],[-39,123],[-111,350],[-73,29],[-21,14],[-18,9],[-30,13],[-26,12],[-54,26],[-23,60],[-50,131],[-12,32],[-18,50],[-62,163],[-46,124],[-62,169],[-55,149],[-23,61],[-19,52],[-37,98],[-126,293],[-36,61],[-21,35],[0,1],[-13,17],[-21,30],[-4,4],[-9,13],[-25,17],[-15,9],[-11,6],[-37,21],[-80,43],[-169,93],[-39,22],[-38,21],[-21,12],[-76,43],[-13,8],[-30,17],[-15,9],[-19,11],[-33,19],[-12,7],[-59,34],[-29,17],[-16,9],[-50,30],[-29,17],[-81,45],[-5,3],[-80,51],[-3,2],[-110,70],[-20,12],[-20,13],[-99,63],[-39,24],[-68,48],[-29,19],[-10,6],[-29,18],[-41,26],[-10,6],[-62,39],[-4,1],[-12,3],[-23,14],[-12,7],[-13,8],[-20,13],[-10,8],[-16,14],[-6,7],[-30,-95],[-55,-178],[-11,-38],[-20,-64],[-64,-209],[-20,-64],[-11,-37],[-28,-90],[-14,-46],[-10,-33],[-13,-42],[-111,-361],[-67,-220],[-44,-141],[-11,-34],[-18,-57],[-54,-172],[-5,-19],[-5,-15],[-5,-17],[-240,-766],[-129,-412],[-33,-105],[-4,-15],[-5,-20],[-75,-278],[-56,-206],[-146,-12],[-14,254],[-8,179],[-2,50],[-8,153],[-9,204],[-23,482],[-1,35],[-23,487],[-60,1278],[-10,200]],[[89054,65670],[206,-1051],[-85,-655],[-30,-233],[-47,-379],[-11,-81],[-13,-104],[-110,-822]],[[88964,62345],[-8,19],[-19,27],[-2,4],[-13,57],[-8,47],[-13,83],[-13,59],[-7,2],[-2,7],[-12,15],[-9,41],[-17,29],[-17,0],[-13,24],[-1,3],[-1,0],[-1,3],[-16,5],[-2,9],[-2,68],[2,59],[0,128],[2,39],[0,6],[2,41],[1,28],[2,49],[-7,54],[-4,32],[-10,48],[-3,4],[-3,16],[-5,12],[-43,121],[-1,5],[-11,58],[-1,2],[-19,48],[-14,59],[-16,41],[-6,17],[-6,21],[-5,9],[-2,6],[-9,27],[-2,15],[-48,88],[-10,-1],[-4,-5],[-14,-50],[-5,-13],[-15,-40],[-7,-12],[-65,-187],[-3,-17],[-12,-56],[-15,-50],[-3,-8],[-11,-36],[-14,-25],[-25,-25],[-2,-5],[-39,-13],[-4,6],[-83,-181],[-5,-1],[-56,-15],[-8,-37],[-2,-9],[-10,-47],[-12,-54],[-3,-31],[-11,-55],[-6,-15],[-16,-33],[-5,3],[-19,0],[-3,-2],[-6,-4],[-2,-1],[-3,-8],[-5,-26],[-9,-47],[-6,-25],[-2,-8],[-1,-4],[-4,-14],[-2,-4],[-8,-12],[-14,5],[-14,-67],[-6,-128],[-9,-92],[-4,-25],[0,-1],[-1,-2],[-7,-42],[-10,-53],[-11,-36],[-16,-41],[-6,-5],[-1,-4],[-13,-9],[-9,-22],[-12,-25],[-12,-4],[-8,-21],[-24,-51],[-2,-42],[-14,-28],[-9,13],[-12,-5],[-3,-5],[0,-7],[-3,-47],[-9,-63],[-12,0],[-13,-31],[-5,-15],[-4,-14],[-14,-19],[-44,-75],[-4,1],[0,-2],[-16,-28],[-1,-3],[-19,-8],[-12,-14],[-10,-101],[1,-59],[0,-84],[1,-14],[0,-25],[-4,-63],[-11,-36],[-6,-7],[-2,-7],[-3,-1],[-6,-8],[-12,-6],[-12,-30],[-5,-22],[-52,-161],[-2,-5],[-43,-11],[-25,-6],[-4,-18],[-9,-38],[-6,-51],[-2,-7],[0,-2],[-1,-1],[-8,-32],[-13,-17],[-17,12],[-14,5],[-15,-24],[-5,-61],[1,-20],[0,-24],[-2,-6],[-21,-40],[-24,-82],[-22,-79],[-2,-6],[-6,-3],[-4,-2],[-14,26],[-16,0],[-12,-44],[0,-1],[-2,-5],[0,-2],[-2,-4],[0,-54],[2,-60],[1,-35],[1,-34],[-58,-115],[-25,20],[-32,26],[-3,10],[-20,-6],[-2,-2],[-8,-10],[-4,-11],[-15,-48],[-12,-35],[-15,-30],[-15,-11],[-15,-30],[-18,-27],[-5,-10],[-14,-33],[-27,8],[-11,-6],[0,-38],[0,-58],[-17,-13],[-15,-103],[4,-62],[-7,-63],[-4,-81],[-3,-61],[-16,-71],[-16,-57],[-11,-30],[-21,-47],[-7,-25],[5,-89],[1,-11],[0,-60],[1,-156],[2,-26],[8,-58],[-8,-65],[-4,-59],[-4,-82],[16,-105],[9,-55],[18,-64],[18,-10],[18,27],[20,-46],[8,-24],[10,-61],[5,-40],[-9,-35],[-13,-71],[-5,-118],[-5,-70],[-18,-36],[-20,-36],[-33,-80],[-15,-94],[-2,-109],[2,-100],[-8,-81],[-9,-78],[-5,-95],[-2,-119],[-14,-86],[-13,14],[-12,-33],[-14,-53],[-11,-64],[-14,-71],[-9,-58],[-3,-19],[-12,-8],[-20,-49],[-7,-17],[-22,-69],[-3,-18],[-13,-104],[-25,-151],[-5,-56],[-15,-35],[-3,-7],[-1,-105],[1,-21],[6,-82],[0,-4],[13,-94],[8,-83],[9,-71],[-2,-66],[-13,-34],[-13,-77],[-20,-9],[-12,4],[-13,11],[-22,-26],[-28,-85],[-20,17],[-9,-87],[-24,-38],[-28,-85],[-10,-9],[-15,36],[-4,89],[-7,70],[-13,48],[-4,19],[-15,76],[-1,46],[4,75],[-8,45],[-6,39],[-11,59],[-16,48],[-7,-3],[-19,3],[-13,35],[-3,88],[-7,48],[-17,53],[-12,35],[-17,0],[-12,6],[0,10],[-4,90],[-7,43],[-2,17],[-1,4],[-5,37],[-13,60],[-20,10],[-7,0],[-6,1],[-3,39],[0,100],[-13,112],[-16,-10],[-3,0],[-16,53],[-10,39],[-1,3],[-8,65],[-10,34],[-12,-12],[-14,-21],[-13,-16],[-12,-15],[-19,-13],[-19,-15],[-12,-17],[-15,10],[-4,12],[-9,26],[-4,9],[-7,18],[-12,11],[-22,36],[-1,0],[-7,47],[-7,2],[-3,10],[-13,-5],[-4,12],[-22,80],[-5,5],[-13,14],[-18,3],[-15,-44],[-25,-76],[-5,-5],[-28,-22],[-18,-11],[-17,-38],[-14,-15],[-7,-7],[-21,-4],[-13,-15],[-10,-42],[-3,-16],[0,-1],[-11,-61],[-10,-32],[-5,-17],[-19,-45],[-29,-6],[-1,1],[-23,15],[-2,4]],[[85552,56756],[-12,55],[-3,17],[-3,13],[-124,603],[-124,599],[-10,44],[0,1],[-98,467],[-40,195],[-32,152],[-50,238],[-56,271],[-55,264],[-39,182],[-31,138],[-1,6],[-112,450],[-11,45],[-2,9],[-8,33],[-92,377],[-29,119],[-66,268],[-173,704],[-16,71],[-14,53],[-22,82],[-1,2],[-16,64],[-16,65],[-16,70],[-23,107],[-22,88],[-9,42],[-28,123],[-16,65],[-20,106],[-10,42],[-10,47],[-11,50],[-10,50],[-13,57],[-12,7],[-24,131],[-13,53],[-14,69],[-38,58],[10,58],[-21,98],[-11,58],[-13,60],[-21,89],[-13,47],[-13,53],[-13,59],[-17,65],[-15,65],[-13,59],[-12,53],[-13,53],[-12,59],[-12,59],[-16,76],[-14,42],[-10,29],[-8,71],[-6,77],[-5,76],[-3,59],[-5,83],[-3,59],[-4,77],[0,33],[-1,37],[2,89],[0,48],[-1,23],[-2,3],[-12,20],[-12,-47],[-16,12],[-17,71],[-17,59],[-13,23],[-20,46],[-4,0],[-2,18],[2,31],[5,65],[2,12],[-1,4],[-13,7],[-9,18],[-8,17],[0,1],[-1,-107],[-2,-80],[-13,-47],[-8,-20],[-1,-3],[-4,2],[-10,6],[-7,4],[-17,33],[-6,41],[-11,68],[-4,23],[-11,146],[-5,70],[-18,114],[-13,75],[-3,21],[-4,18],[-26,107],[-3,13],[-9,18],[-24,48],[-60,185],[-66,180],[-1,2],[-14,39],[-4,24],[-7,34],[-4,22],[0,2],[0,214],[-6,74],[-3,16],[-4,25],[-3,13],[-24,65],[-10,10],[-7,-9],[0,-1],[-2,-2],[-1,-3],[-39,-115],[-3,-9],[-9,-45],[-19,-106],[-3,-15],[-3,-27],[-5,-40],[-8,-108],[-7,-51],[-2,-4],[-21,-49],[-5,-12],[-3,0],[-4,-1],[-17,-2],[-10,11],[-7,6],[-2,2],[0,3],[-6,25],[-4,17],[1,255],[1,27],[2,75],[1,23],[23,115],[-2,77],[-30,-38],[-35,7],[-9,25],[-12,52],[-23,-5],[-52,29],[-22,59],[-31,185],[-1,9],[-6,22],[-6,23],[-6,20],[-11,22],[-5,12],[-21,18],[-2,2],[-4,18],[-5,24],[-6,30],[-4,58],[-1,104],[2,33],[3,37],[-6,32],[-17,108],[-46,217],[-4,16],[-30,118],[-38,153],[-100,234],[-49,71],[-7,20],[-14,56],[-22,116],[-13,71],[-13,85],[-8,54],[3,142],[21,227],[29,200],[2,79],[1,23],[0,5],[-2,49],[-2,75],[0,4],[-5,23],[-3,73],[5,141],[12,72],[20,118],[0,7],[3,83],[0,12],[-3,19],[-4,43]],[[82463,70666],[7,19],[12,34],[12,42],[13,41],[14,18],[12,6],[13,35],[15,-12],[12,30],[13,6],[14,29],[12,-18],[11,-41],[12,6],[16,0],[15,41],[1,59],[13,12],[15,30],[4,59],[13,35],[13,-41],[14,-6],[15,47],[10,29],[11,45],[3,62],[-3,59],[2,59],[3,70],[1,65],[10,53],[4,89],[12,12],[14,35],[15,24],[14,17],[6,53],[1,17],[1,60],[1,65],[0,83],[9,41],[14,12],[15,-36],[11,-47],[5,-65],[14,-17],[11,0],[-2,64],[2,62],[13,74],[7,53],[8,59],[11,65],[9,83],[12,88],[7,65],[10,65],[12,65],[8,59],[6,65],[9,59],[10,59],[10,59],[13,59],[9,47],[13,47],[15,53],[15,24],[12,47],[13,47],[13,47],[8,48],[16,70],[20,60],[13,47],[10,56],[1,77],[7,52],[12,39],[14,-15],[15,-6],[12,-24],[12,24],[9,38],[8,54],[4,70],[2,71],[5,71],[14,18],[6,53],[9,47],[12,41],[10,42],[12,41],[11,12],[15,6]],[[67746,69639],[-1,-59],[-7,-65],[-9,-65],[-2,-65],[7,-77],[12,-64],[0,-65],[-11,-25],[-14,-93],[-10,-41],[-10,-42],[-12,-2],[-16,8],[-15,-15],[-14,-64],[0,-270],[0,-2],[0,-74],[0,-71],[0,-76],[2,-59],[4,-71],[5,-65],[26,-47],[13,-6],[13,0],[12,77],[10,-130],[1,-65],[3,-59],[12,-12],[14,0],[35,-53],[13,-24],[17,-70],[17,-42],[32,-11],[52,-402],[0,-41],[0,-48],[3,-67],[41,-422],[9,-263],[6,-144],[46,-6],[11,-29],[13,0],[9,-36],[14,-29],[18,-35],[13,-24],[18,-35],[11,-59],[13,-30],[13,12],[18,6],[12,17],[11,18],[14,12],[12,0],[11,0],[12,6],[11,18],[13,-42],[12,-71],[8,-64],[-2,-71],[14,-47],[13,-48],[12,6],[11,-23],[11,-17],[14,11],[14,-18],[12,-41],[14,-36],[11,-23],[14,-24],[13,-23],[11,-36],[50,-354],[154,-1113],[10,-63],[22,-120],[57,-317],[55,-308],[9,-50],[9,-50],[9,-52],[8,-44],[11,-57],[19,-105],[19,-110]],[[68891,62884],[-21,20],[-13,-11],[-14,-4],[-21,-46],[-1,-2],[-14,-28],[-12,-12],[-11,-17],[-15,-30],[-21,-53],[-13,-35],[-15,-30],[-10,-35],[-13,0],[-13,-6],[-13,-24],[-17,-41],[-9,-35],[-9,-36],[-12,-41],[-8,-53],[-12,-64],[-12,-42],[-10,-36],[-8,-59],[-8,-47],[-13,-29],[-11,-53],[-10,-30],[-9,-41],[-11,-47],[-11,-65],[-13,-71],[-12,-47],[-9,-48],[-11,-64],[-12,-59],[-8,-53],[-8,-48],[-12,-47],[-12,-23],[-28,-101],[-10,-53],[-12,-18],[-10,-35],[-10,-47],[-14,-36],[-12,-29],[-15,-41],[-14,-12],[-18,-53],[-17,-59],[-11,-47],[-11,-48],[-7,-47],[-12,-41],[-13,-47],[-10,-47],[-12,-36],[-9,-59],[-10,-47],[-14,-35],[-13,-30],[-11,-47],[-11,-36],[-12,-35],[-20,-29],[-15,-24],[-17,-12],[-14,-47],[-15,-53],[-9,-36],[-12,-41],[-15,-35],[-10,-30],[-2,-4],[-31,-86],[-36,-101],[-13,-28],[-11,-29],[-14,-32],[-14,-46],[-11,-31],[-11,-41],[-14,-65],[-11,-42],[-10,-45],[-9,-41],[-13,-46],[-10,-36],[-18,-54],[-14,-35],[-31,-69],[-15,-11],[-17,-2],[-13,-3],[-17,-20],[-11,-7],[-12,-6],[-11,-23],[-13,-20],[-13,-19],[-12,12],[-13,23],[-14,37],[-12,3],[-14,-7],[-15,-19],[-13,-28],[-16,-30],[-12,-12],[-17,-8],[-23,-2],[-17,11],[-21,23],[-16,26],[-14,3],[-12,-20],[-13,-16],[-12,-20],[-16,5],[-8,1],[-10,1],[-18,24],[-5,11],[-7,14],[-11,21],[-16,3],[-15,-24],[-19,-6],[-12,0],[-15,-13],[-18,-9],[-6,-54],[-11,-43],[-14,-12],[-13,-17],[-12,-40],[-14,-27],[-11,-37],[-14,10],[-14,-31],[-27,-59],[-38,-70],[-28,-36],[-34,-41],[-15,-25],[-15,-12],[-14,-17],[-10,-26],[-23,-7],[-17,1],[-15,-23],[-23,-22],[-7,-52],[-18,-39],[-20,3],[-21,16],[-15,-48],[-20,-19],[-12,-5],[-19,-50],[-16,-1],[-13,-21],[-17,-7],[-10,-45],[-13,-14],[-23,-32],[-17,-36],[-13,-39],[-29,-77],[-27,-73],[-13,-77],[-12,-87],[-5,-130],[7,-93],[5,-148],[-1,-60],[0,-89],[6,-69],[-5,-67],[-12,-50],[-31,-13],[-27,-12],[-34,-20],[-28,7],[-49,-1],[-49,10],[-2,0],[-15,21],[-16,24],[-15,22],[-18,35],[-12,-7],[-13,-38],[-22,-11],[-19,2],[17,-135],[-13,-54],[-27,-9],[-18,37],[-10,94],[-17,27],[-17,14],[-8,-91],[-6,-58],[-8,-56],[-17,28],[15,63],[0,85],[-14,30],[-21,-3],[-6,92],[-14,-13],[-26,51],[15,49],[1,68],[-18,-2],[-15,-27],[-5,-56],[-8,-60],[-16,-40],[0,-82],[-2,-74],[5,-111],[4,-81],[-7,-84],[-13,-39],[-25,-36],[-2,-99],[-23,27],[-14,-36],[-30,-19],[-1,-65],[-6,-56],[-15,-15],[-10,-47],[0,-67],[-12,-131],[0,-76],[-12,-26],[-24,26],[-16,17],[-20,42],[-9,41],[-13,-10],[-11,-52],[7,-108],[-7,-57],[-22,5],[-13,41],[-17,-11],[-6,-61],[-19,44],[-14,9],[-11,28],[-13,-2],[-25,-56],[-13,-36],[-12,-77],[2,-72],[-14,18],[-15,-12],[-18,19],[-12,-34],[-15,14],[-27,67],[-6,-73],[1,-69],[-8,-49],[-2,-60],[-11,-21],[-12,19],[-6,-79],[-8,-74],[0,-105],[-14,-15],[-13,24],[-23,18],[-3,-92],[-7,-58],[-6,-118],[-12,38],[-25,6],[-13,-41],[-21,34],[-11,46],[-17,20],[-29,-53],[-14,-50],[2,-68],[18,-46],[-7,-76],[-19,-72],[-12,-40],[-11,-23],[-8,-63],[-16,-2],[-12,-19],[-11,-28]],[[64980,54594],[-33,364],[-20,219],[-29,329],[-18,190],[-68,752],[-31,344],[0,5],[-6,62],[-9,104],[-17,182],[-48,532],[-125,1379],[-11,112],[-28,315],[-20,211],[-65,297],[-1,4],[-123,568],[-10,50],[-26,117],[0,1],[-112,525],[-36,167],[-58,268],[-82,379],[-44,206],[-206,950],[-21,96],[-25,119],[-11,47],[-2,12],[-38,434],[-32,368],[-26,302],[-49,562],[-9,137],[-12,20],[-11,-31],[-7,-19],[-5,-29],[-8,-76],[-4,-26],[-6,-19],[-9,-4],[-6,9],[-26,90],[-14,86],[0,2],[0,4],[-1,27],[2,18],[9,120],[-1,20],[-5,49],[-5,27],[-6,12],[0,1],[-1,2],[-26,41],[-5,-2],[-9,-6],[-64,-37],[-4,-13],[-8,-33],[-10,-102],[0,-4],[-1,-7],[-10,-115],[-2,-81],[-43,-225],[-6,-26],[-4,-21],[-4,-4],[-134,929],[-6,42],[-120,829],[-72,501],[-17,115],[-23,174],[-41,286],[-7,53],[-9,71],[-11,83],[-9,54],[0,1],[-20,6],[-23,7],[-8,11],[-2,3],[-11,28],[-20,73],[-24,204],[-1,6],[-5,29],[-9,33],[-2,11],[-1,2],[-12,37],[-3,10],[-23,39],[-2,4],[-8,8],[-8,-2],[-41,-12],[-70,64],[-7,12],[0,1],[-18,140],[-35,104],[-5,13],[-15,26],[-46,274]],[[32280,79740],[-6,-275],[-13,-572],[-9,-398],[-5,-215],[-4,-168],[-4,-153],[-3,-91],[-3,-103],[-15,-572],[-7,-281],[-11,-444],[19,-1],[-2,-107],[-2,-72],[-4,-207],[-20,0],[-13,-508],[-3,-121],[-5,-225],[-7,-285],[-3,-126],[3,-70],[0,-68],[-91,47],[-2,-40],[-8,-112],[0,-15],[4,-226],[32,-155],[-12,-441],[-32,-274],[-59,-451],[-22,-174],[-15,-112],[-5,-34],[-27,-211],[-101,-780],[-49,-374],[-15,-114],[-94,-720]],[[31667,70492],[-17,14],[-48,39],[-16,98],[-2,103],[-23,61],[-30,-12],[21,369],[-15,92],[-15,3],[-11,-16],[-17,8],[-42,90],[-18,81],[4,93],[9,64],[-4,79],[-155,33],[-170,36],[-25,5],[-100,21],[-110,28],[-17,4],[-99,27],[-101,29],[-69,17],[-33,8],[-23,82],[-60,222],[-16,52],[-18,62],[-42,143],[-55,175],[-75,223],[-120,311],[-56,132],[-16,35],[-28,60],[-13,32],[0,1],[-52,102],[-12,23],[-113,197],[-97,169],[-71,97],[-147,176],[-33,31],[-59,52],[-138,90],[-13,7],[-46,24],[-74,41],[-12,5],[-101,13],[-10,1],[-74,10],[-178,-319],[-19,-35],[-112,-193],[-41,-71],[-38,-56],[-38,-58],[-70,31],[-72,23],[-39,14],[-21,17],[-178,82],[-77,23],[-35,8],[-112,61],[-444,242],[-28,16],[-5,2],[-163,89],[-42,23],[-15,-3],[-17,10]],[[27246,74340],[9,108],[5,62],[4,68],[3,67],[2,101],[4,120],[7,71],[2,86],[-1,96],[2,14],[7,58],[6,80],[4,98],[4,98],[3,112],[-9,79],[-2,67],[1,67],[0,136],[-4,236],[-6,192],[-8,238],[-10,232],[-12,201],[-13,205],[-14,197],[-13,219],[-7,117],[-4,86],[-10,183],[-8,166],[-14,214],[-15,165],[-22,215],[-17,151],[-14,85],[-14,44],[-21,43],[-21,66],[-16,66],[-8,50],[-6,80],[-3,108],[-1,90],[2,78],[0,67],[-4,115],[-11,134],[-13,113],[-14,97],[-7,49],[-8,51],[-20,126],[-13,108],[-19,162],[-17,118],[-11,69]],[[27246,74340],[-5,-80],[-4,-85],[-5,-97],[-2,-96],[-1,-84],[1,-101],[-4,-88],[-4,-107],[-2,-73],[1,-94],[0,-109],[0,-105],[1,-111],[4,-72],[7,-76],[8,-75],[13,-104],[12,-69],[11,-56],[14,-69],[17,-98],[11,-81],[9,-60],[8,-73],[8,-84],[7,-82],[7,-150],[2,-78],[-2,-93],[2,-76],[2,-61],[4,-64],[6,-93],[9,-87],[4,-65],[4,-56],[8,-104],[11,-133],[9,-88],[9,-74],[7,-50],[22,-113],[13,-57],[22,-91],[24,-87],[9,-35],[5,-17],[11,-40],[17,-82],[17,-102],[15,-85],[7,-69],[6,-58],[7,-64],[5,-55],[1,-5],[11,-116],[4,-74],[6,-111],[3,-100],[0,-113],[-2,-127],[-2,-110],[-4,-154],[-7,-141],[-8,-168],[-1,-67],[-4,-119],[-2,-111],[-2,-104],[0,-92],[2,-127],[-2,-126],[-2,-63],[-3,-129],[-2,-60],[-21,-295],[-7,-65],[-12,-95],[-11,-47],[-21,-109],[-38,-157],[-55,-240],[-20,-94],[-23,-87],[-11,-61],[-7,-118],[-6,-90],[-4,-81],[-5,-93],[-17,-127],[-20,-141],[-29,-156],[-22,-119],[-21,-114],[-22,-117],[-24,-172],[-21,-155],[-11,-86],[-6,-61],[-14,-143],[-9,-82],[-13,-92],[-15,-84],[-15,-77],[-7,-38],[-20,-97],[-24,-96],[-25,-94],[-13,-57],[-21,-102],[-20,-97],[-30,-149],[-22,-102],[-19,-106],[-21,-113],[-19,-106],[-20,-103],[-12,-62],[-8,-54],[-16,-96],[-12,-88],[-6,-53],[-6,-62],[-8,-78],[-8,-91],[-9,-83],[-17,-142],[-13,-93],[-13,-84],[-13,-97],[-16,-107],[-17,-140],[-9,-67],[-3,-62],[-4,-69],[-1,-50],[-1,-11],[0,-90],[1,-93],[4,-98],[0,-16],[5,-120],[1,-40],[2,-32],[8,-115],[2,-89],[5,-244],[-1,-135],[1,-126],[-2,-127],[-8,-137],[0,-3],[-7,-77],[-2,-27],[-1,-15],[-45,-318],[-40,-153],[-53,-125],[-56,-247],[-19,-119],[-12,-101],[-15,-242],[-4,-145],[-7,-231],[3,-217],[16,-273],[32,-318],[30,-303],[31,-237],[45,-121],[44,-87],[49,-98],[11,-37],[72,-83],[26,-11],[3,-15],[143,-136],[29,-10],[77,44],[78,5],[48,7],[107,66],[6,22],[72,30],[49,-1],[11,-11],[11,-68],[-1,-15],[13,-60],[20,-39],[23,-8],[19,41],[25,-8],[15,-64],[1,-5],[13,-116],[-4,-171],[-9,-443],[-9,-140],[-4,-197],[4,-25],[-15,-613],[-4,-88],[-3,-61],[-21,-357],[-36,-503],[-7,-231],[0,-5],[0,-1],[-7,-52],[-4,-133],[-2,-148],[0,-26],[-2,-26],[-7,-114],[-2,-115],[0,-11],[-6,-109],[-14,-185],[-13,-163],[-12,-148],[-3,-20],[-21,-168],[-19,-120],[-8,-52],[-18,-114],[-13,-69],[-33,-171],[-54,-288],[-35,-170],[-49,-222]],[[27094,50610],[-5,-45],[-1,-9],[-4,-45],[-25,-154],[-6,-33],[-20,-208],[-19,-342],[-12,-651]],[[27002,49123],[-25,11],[-34,17],[-8,4],[-6,3],[-84,39],[-34,-33],[-23,-11],[-10,-42],[-9,-40],[-8,-50],[-9,-45],[-17,-35],[-15,-23],[-25,-43],[-25,61],[-15,35],[-11,28],[-14,44],[6,65],[-9,52],[-12,-5],[-17,-16],[-19,-12],[-53,-34],[-15,-50],[-5,-61],[4,-36],[-10,-35],[-9,-5],[-5,-3],[-41,-23],[-21,-7],[-12,-4],[-73,-23],[2,126],[2,149],[3,134],[7,469],[1,65],[3,154],[-1,157],[-21,34],[-1,261],[-13,86],[-12,81],[-13,91],[-19,119],[-19,25],[-8,-62],[-13,-23],[-52,17],[-21,7],[-8,87],[-22,70],[-27,87],[-13,15],[-25,27],[-1,6],[-1,45],[1,68],[-1,4],[-94,19],[-18,1],[-3,-123],[-3,-185],[0,-3],[-121,-1],[-30,0],[0,-9],[-14,-113],[-4,-23],[-25,-80],[-1,0],[-47,-145],[-10,-31],[-7,21],[1,93],[1,73],[0,21],[0,54],[-15,-2],[-5,-2],[-18,-6],[-12,1],[-82,24],[-156,47],[-106,32],[-77,32],[-17,-2],[-133,30],[-136,7],[-22,2],[-14,2],[-110,7],[-124,18],[-54,-4]],[[24611,50900],[-42,9],[-126,20],[-82,-5],[-54,5],[-69,7],[-84,8],[-1,71],[0,26],[3,243],[1,191],[0,201],[1,447],[0,77],[1,281],[2,143],[1,124],[-74,1],[-21,1],[0,151],[2,292],[1,100],[66,-12],[28,-3],[1,340],[0,110],[0,62],[1,146],[2,348],[0,94],[3,576],[2,435],[1,191],[1,125],[1,170],[1,113],[1,212],[0,93],[2,458],[1,251],[1,232],[2,347],[1,186],[2,725],[2,498],[1,161],[0,163],[1,385],[1,130],[0,166],[0,3],[2,251],[1,185],[0,88],[2,270],[0,132],[2,373],[0,121],[1,187],[0,290],[2,163],[0,3],[-1,161],[0,38],[0,30],[1,189],[1,612],[0,164],[1,274],[2,565],[0,74],[0,190],[0,216],[1,307],[2,1252],[0,193],[0,137],[1,268],[0,1],[0,60],[1,310]],[[49061,65070],[0,-77],[0,-16],[-24,-78],[-3,-66],[13,6],[-11,-209],[0,-139],[18,-1],[10,-153],[-9,-124],[-29,-18],[-7,-67],[10,-56],[37,-17],[22,211],[31,-13],[8,-99],[-4,-92],[-2,-53],[-11,-59],[-14,-67],[-3,-223],[6,-168],[30,-6],[30,-7],[-1,-73],[13,-5],[33,-15],[-2,-102],[-4,-160],[-4,-179],[-14,-25],[-20,-27],[-17,6],[-9,-321],[59,-34],[2,-70],[24,-1],[4,-327],[35,-230],[52,-42],[26,-57],[3,-71],[-7,-55],[0,-142],[21,-8],[-8,-583],[-26,-261],[-28,-163],[-11,-22],[-4,-139],[30,-123],[17,-18],[13,4],[25,32],[66,-205],[23,-50],[-1,-18],[-1,-75],[-1,-29],[-3,-154],[0,-9],[0,-93],[0,-76],[0,-1],[10,-136],[0,-1],[8,-110],[35,-475],[43,-588],[5,-75],[34,-475]],[[49579,57698],[-90,213],[-609,15],[-14,0],[-18,1],[-49,1],[-12,24],[-21,45],[-35,73],[10,395],[-35,23],[-11,-379],[-5,-148],[-3,-17],[-40,-198],[-1,-59],[-151,-54],[-124,-47],[-63,40],[-178,89],[-68,33],[-80,-443]],[[47982,57305],[-39,8],[0,49],[-217,294],[-123,46],[-190,72],[-77,29],[-13,8],[-162,99],[-319,195],[-45,42],[-361,335],[-268,248],[1,137],[4,310],[-92,35],[-26,-27],[-70,-75],[-270,885],[-117,384],[-11,98],[-33,274],[-10,88],[-14,40],[-2,7],[-1,1],[-57,168],[-15,45],[-16,-33],[-2,-12],[-6,-33],[-2,-9],[-2,-60],[-1,-35],[-1,-11],[-1,-35],[-7,-78],[-8,-55],[-10,-34],[-82,560],[-49,334],[52,-29],[7,204],[-15,312],[-111,59],[-11,-320],[-13,32],[-58,138],[-8,19],[-68,164],[-60,144],[-38,97],[-21,51],[-37,121],[-57,186],[-7,19],[-4,10],[-21,68],[-40,130],[-5,-22],[-7,-58],[-2,2],[-15,12],[-14,55],[-17,20],[-24,14],[0,26],[17,-4],[12,133],[-42,134],[-15,45],[-16,45],[-98,279],[1,8],[-90,240],[-44,116],[5,84],[-29,26],[-41,19],[2,74],[-32,21],[-2,-26],[-18,60],[-15,53],[-23,78],[-82,282],[-32,107],[-72,243],[-81,257],[-10,32],[-16,49],[-92,307],[-25,87],[-37,128]],[[82463,70666],[-9,36],[-15,47],[-1,0],[-16,-45],[-10,-43],[-34,-99],[-6,-17],[-1,-1],[-1,-4],[-1,-2],[-25,-48],[-1,-1],[-2,-3],[-1,-1],[-55,-68],[-53,-62],[-21,-192],[-1,-14],[1,-18],[3,-32],[16,-56],[18,-98],[14,-111],[11,-134],[3,-99],[5,-61],[3,-45],[2,-36],[24,-354],[8,-172],[5,-381],[1,-44],[5,-242],[5,-43],[0,-6],[5,-78],[18,-264],[4,-208],[0,-10],[13,-57],[-15,-81],[-1,-6],[-6,-30],[-5,-25],[-4,-24],[-12,-64],[-9,30],[-3,10],[-26,-30],[-7,-7],[-37,12],[-2,4],[-75,166],[-30,25],[-28,60],[-1,4],[-13,46],[-25,134],[-32,201],[-10,45],[-15,32],[-12,63],[-10,85],[-44,248],[-16,96],[-57,263],[-24,61],[-25,13],[-14,-37],[-17,-45],[-6,-17],[0,-8],[-1,-203],[2,-46],[15,-203],[0,-6],[1,-10],[0,-10],[1,-10],[0,-10],[0,-11],[0,-4],[0,-73],[10,-114],[21,-236],[3,-49],[-3,-254],[-5,-93],[-19,-157],[-19,-93],[-17,-46],[-12,-10],[-19,11],[-40,46],[-39,61],[-18,62],[-23,33],[-18,28],[-13,-30],[-36,-87],[-8,-25],[-3,-21],[-2,-11],[-2,-22],[-4,-105],[-1,-19],[16,-110],[11,-83],[11,-79],[28,-274],[9,-84],[17,-201],[54,-532],[43,-240],[4,0],[13,-111],[-20,-50],[-3,-94],[10,-77],[3,-58],[-3,-110],[3,-213],[-30,95],[-27,82],[-11,47]],[[81672,65015],[-11,118],[0,3],[-12,96],[-15,117],[-8,75],[-7,51],[-8,106],[-7,89],[-5,82],[-4,77],[-5,82],[-4,64],[-68,403],[0,3],[-25,141],[-22,136],[-19,95],[-25,158],[-17,92],[-21,108],[-24,88],[-21,77],[-17,63],[-20,35],[-15,51],[-1,5],[-69,245],[-11,36],[-17,23],[-51,63],[-12,14],[-6,8],[-13,16],[4,58],[-11,23],[-5,11],[-27,55],[-2,3],[-13,26],[-36,73],[-36,67],[-35,32],[-23,24],[-14,14],[-15,16],[-88,94],[-25,26],[-25,26],[-18,19],[-11,12],[-164,174],[-13,13],[-5,-124],[-44,55],[-26,31],[-19,24],[-18,23],[-43,53],[-27,33],[-18,23],[-79,99],[-108,137],[-94,112],[-21,-6],[-119,-4],[-36,-2],[51,-271],[4,71],[20,-83],[36,-112],[-29,-106],[-38,118],[-22,-277],[-14,18],[-27,171],[-12,5],[0,296],[0,62],[-34,203],[-88,-35],[-54,-21],[-22,-9],[-10,1],[-2,1],[-23,3],[-67,8],[-106,14],[-6,1],[-6,1],[-22,3],[-38,5],[-21,2],[-25,4],[-41,5],[-39,5],[-122,16],[-13,2],[-43,0],[-23,277],[-20,250],[-9,101],[-7,85],[-5,68],[-14,158],[-3,39],[-16,166]],[[36100,62928],[-19,-441],[-3,-77],[-6,-133],[-11,-268],[-4,-97],[-7,-160],[-3,-56],[-1,-46],[-8,-179],[-3,-76],[-1,-36],[-3,-85],[-10,-266],[-3,-71],[-13,-366],[-20,-576],[-20,-597],[26,-11],[-6,-258],[-49,15],[-7,-331],[80,-49],[-2,-167],[-101,-17],[-5,-255],[-55,9],[-50,8],[-15,-10],[-7,-21],[-1,-172],[6,-33],[22,-4],[-6,-306],[58,-24],[-3,-185]],[[35850,57587],[-239,129],[-805,436],[-47,51],[-182,202],[-62,68],[-173,192],[-1270,488],[-503,194],[-5,2],[-220,84],[-105,60],[-203,114]],[[32036,59607],[-2,107],[-11,27],[-11,31],[-18,14],[-14,-14],[-6,63],[-10,160],[-2,25],[6,121],[-25,153],[-5,212],[-13,23],[-19,88],[-3,16],[-50,229],[-29,102],[32,100],[19,172],[9,82],[12,-8],[10,36],[0,80],[-8,110],[-1,70],[-2,95],[-10,40],[-12,37],[-9,64],[-14,79],[2,131],[3,79],[13,120],[12,58],[1,178],[1,84],[0,78],[16,32],[12,29],[2,89],[-7,167],[4,165],[3,141],[-13,47],[-19,-3],[-9,52],[-4,60],[-2,65],[4,60],[8,297],[2,81],[15,554],[2,80],[5,202],[5,167],[14,545],[1,23],[1,54],[-4,108],[-16,457],[-2,68],[-21,577],[-15,466],[-1,23],[-3,117],[-20,564],[-9,221],[-8,120],[-19,275],[-25,346],[-11,161],[-42,608],[-8,106],[-51,719]],[[60137,68169],[-44,-177],[-24,-98],[-40,-50],[-27,-34],[-22,-27],[-37,-47],[-17,-21],[-31,-40],[-12,-15],[-19,-23],[-27,-34],[-16,-12],[-11,35],[-10,48],[-21,6],[-6,-120],[-28,-187],[-15,-111],[-12,-88],[-130,-906],[-6,-38],[-46,-321],[-5,-42],[-118,45],[-52,20],[-162,62],[-298,114],[-126,48],[-180,69],[-12,5],[-12,4],[0,-109],[-3,-77],[-3,-81],[-1,-1],[-8,-15],[-22,-42],[-84,26],[-21,-948],[8,-43],[12,-85],[9,-59],[12,-62],[5,-68],[-1,-85],[1,-68],[3,-28],[10,-110],[1,-13],[-18,-199],[-16,-192],[-12,-219],[3,-105],[2,-79],[9,-64],[29,-215],[-12,-292],[-10,-50],[-15,-228],[-22,-124],[-33,-197],[-1,-6],[-41,-1005],[-22,-554],[-18,-440],[-11,-280],[-3,-63],[-2,-59],[-7,-164],[63,-43],[-5,-193],[-20,-869],[-83,39]],[[58244,58765],[-196,299],[-24,36],[-124,190],[-33,50],[-85,129],[-82,113],[0,217],[-1,196],[0,27],[-1,447],[-1,477],[-1,352],[0,28],[12,0],[2,75],[8,460],[-53,25],[-127,59],[-11,-167],[-48,123],[-24,60],[-8,21],[-10,28],[-9,25],[-116,307],[-117,314],[-18,46],[-64,79],[-120,148],[-197,242],[-242,297],[-392,481],[-137,176],[-146,183],[-91,99],[-180,238],[-21,26],[-65,59],[-8,7],[-5,5],[-39,61],[-13,12],[-1,1],[-5,5],[-1,0],[-20,8],[-5,2],[-17,-7],[-66,-38],[-17,-10],[-3,-2],[-26,-15],[-4,-2],[-25,-15],[-80,-47],[-69,-40],[-96,-57],[-24,-14],[-33,-119],[-13,-20],[-10,-52],[-5,-54],[-12,-20],[-15,-5],[-22,25],[-20,12],[-13,-2],[-15,-12],[-16,-8],[-33,-256],[-24,-181],[-56,-427],[-4,11],[0,6],[-1,10],[-6,19],[-10,10],[-10,2],[-9,-10],[-3,-11],[-2,-19],[-8,-182],[-3,-18],[-5,-8],[-5,1],[-13,26],[-3,10],[-10,45],[-1,8],[-1,20],[-2,18],[1,35],[0,3],[2,25],[10,182],[-1,53],[-1,17],[-3,15],[-4,1],[-5,-8],[-6,-17],[-33,-137],[0,-7],[1,-68],[1,-45],[5,-22],[5,-44],[0,-31],[-1,-8],[0,-10],[-4,-5],[-3,-6],[-10,-2],[-16,12],[-8,-28],[-2,-79],[10,-203],[6,-74],[4,-42],[-3,-118],[-11,-122],[-15,-49],[-50,-41],[22,-104],[5,-62],[6,-58],[9,-54],[11,-42],[11,-21],[4,-60],[-16,33],[-14,21],[-11,26],[-8,59],[-4,66],[-12,42],[-12,22],[-12,24],[-13,19],[-12,29],[-3,99],[-17,1],[-13,-56],[-17,78],[-14,43],[-4,1],[-15,-49],[-3,-30],[-11,-35],[-3,-3],[-3,-2],[-6,4],[-19,13],[-9,6],[-4,8],[-7,13],[-18,55],[-9,29],[-19,8],[-7,-21],[-2,-63],[-8,-41],[-12,-53],[-21,-62],[-30,-34],[-7,-24],[-4,-11],[0,-5],[-5,-120],[-3,-35],[-1,-11],[-4,-46],[-1,-3],[-10,-32],[-10,5],[-15,6],[-9,-29],[-2,-5],[0,-19],[-2,-54],[0,-22],[7,-98],[-5,-26],[-2,-11],[-6,-17],[-8,-23],[-16,-42],[-17,-12],[-10,-8],[-27,-36],[-6,-13],[-12,-31],[-9,-23],[-9,0],[-26,0],[-6,-13],[-17,-56],[-55,-206],[0,-19],[0,-11],[-14,-496]],[[53853,60883],[-4,-103],[-30,32],[-13,-19],[-10,-32],[-17,-39],[-28,32],[2,59],[6,169],[-31,43],[-93,461],[-55,269],[-29,288],[-28,272],[-21,208],[-32,313],[-7,64],[-27,270],[-6,63],[-16,151],[-47,434],[-9,125],[-10,153],[-19,-49],[-63,70],[-9,10],[-9,10],[-32,36],[-38,99],[-31,76],[-24,59],[-77,190],[-76,186],[-18,48],[-24,-1],[-1,-1],[-14,-49],[-16,-13],[-12,-30],[-11,-28],[-4,-11],[-1,60],[-11,3],[-2,53],[-126,-171],[4,-53],[12,-11],[5,-123],[-19,-33],[-48,108],[-15,32],[-18,-147],[-14,-116],[-36,-295],[-27,-33],[-18,-19],[-89,135],[-18,27],[-11,27],[0,2],[0,7],[-10,257],[-6,147],[-85,61],[18,309],[22,85],[7,101],[8,114],[9,50],[2,138],[1,30],[3,155],[-42,2],[15,120],[-6,66],[-11,49],[-14,45],[-17,58],[-3,75],[-17,7],[-10,-43],[-9,-45],[-15,19],[-16,23],[-12,27],[-14,21],[-13,3],[-17,39],[-14,55],[1,61],[-5,128],[-12,45],[-19,-8],[-11,63],[-12,55],[-5,85],[-1,106],[-12,12],[-15,26],[-6,56],[0,61],[-11,67],[3,187],[1,105],[-31,18],[-14,19],[-14,20],[27,147],[-11,24],[-12,41],[-15,39],[-23,16],[-3,21],[-5,38],[0,60],[-3,70],[-10,76]],[[73510,70990],[-40,-43],[-7,-36],[-35,-180],[-53,-36],[-74,-234],[-26,-94],[-25,-92],[-34,-120],[-1,-9],[-7,-17],[-10,-59],[0,-13],[-34,-179],[-30,-160],[-54,-216],[0,-1],[-97,-459],[-41,-93],[-7,-24],[-14,-27],[-16,-68],[-19,-94],[-11,-73],[-7,-50],[-7,-58],[-21,-40],[1,-66],[6,-89],[1,-111],[-10,-38],[-1,-2],[-11,-21],[-12,0],[-14,-18],[-14,-30],[-12,-35],[-12,-47],[-11,-55],[-1,-4],[-9,-41],[-13,-30],[-14,18],[-14,-6],[-11,23],[-13,6],[-12,12],[-7,-47],[-2,-71],[-2,-59],[-3,-59],[2,-65],[6,-53],[-13,-47],[-11,6],[-13,35],[-13,-11],[-13,-30],[-8,-53],[-10,-59],[-9,-47],[-11,-62],[-18,-27],[-16,-31],[-17,-74],[-6,-109],[14,-52],[-1,-73],[-17,-114],[-1,-7],[-11,-48],[-16,-57],[-21,-78],[-11,-41],[-13,-30],[-12,-34],[-20,1],[-17,-26],[-19,-21],[-24,39],[-8,-52],[10,-135],[-18,-126],[1,-80],[-12,-63],[-21,-23],[-19,-44],[-18,-22],[-5,-67],[-13,-41],[-15,-48],[-10,-38],[-15,-33],[-12,-31],[-10,-30],[-14,-69],[-10,-45],[-24,-60],[-13,-48],[-8,-49],[-17,-146],[-6,-17],[-24,-185],[-3,-29],[-1,-2],[-38,-140],[-11,-38],[-41,-106],[-10,-19],[-15,-49],[-19,-69],[-10,-69],[-8,-43],[-14,-60],[-19,-54],[-13,-16],[-15,35],[-11,31],[-12,26],[-21,-133],[-24,-75],[14,-77],[0,-4],[1,-59],[-17,-59],[-11,-56],[40,-183],[21,-98],[9,-43],[11,-50],[31,-138],[45,-217],[12,-53],[43,-203],[15,-70],[4,-20],[5,-27],[11,-45],[11,-54],[32,-153],[113,-541],[-2,-42],[-6,-8],[-9,-41],[-11,-43],[-12,-62],[-10,-36],[-16,-19],[-15,-22],[-13,-25],[-16,-36],[-10,-51],[-6,-56],[1,-23],[0,-53],[1,-64],[-11,-41],[-13,-13],[-14,-13],[-13,-24],[-13,-56],[-11,-42],[-1,-59],[-3,-70],[4,-70],[-9,-39],[-16,16],[-16,27],[-18,-41],[-14,-49],[-8,-45],[-15,-61],[-16,-36],[-19,-31],[-17,-16],[-16,-26],[-17,-24],[-22,-17],[-25,-48],[-16,-27],[-18,-31],[-13,-35],[-10,-25],[-14,-4],[-6,0],[-11,-55],[1,-24],[1,-86],[-8,-59],[-13,-13],[-9,-48],[-1,-65],[-11,-41],[-15,-57],[-15,-36],[-14,-11],[-11,-45],[-10,-51],[-3,-59],[-10,-39],[-1,-5],[-11,-26],[-10,29],[-2,2],[-10,10],[-17,3],[-12,21],[-13,-15],[-6,-19],[-7,-23],[-12,-31],[-15,-40],[-13,-6],[-9,-9],[-14,-59],[-6,-7],[-6,-13],[-10,-12],[-7,-36],[-1,-48],[-11,-59],[-18,9],[-17,-15],[-15,-34],[-11,-8],[-15,11],[-5,-16],[-3,-68],[0,-15],[1,-59],[-13,-50],[-16,-14],[-22,7],[-19,27],[-13,-26],[-8,-43],[-11,-54],[-9,-76],[-13,-5],[-21,16],[-14,35],[-18,39],[-15,35],[-4,11],[-13,37],[-13,48],[-3,12],[-12,106],[-3,24],[-30,-76],[-31,-31],[-26,2],[-35,74],[-22,35],[-32,48],[-41,61],[-37,19],[-6,-21],[-1,-6],[-11,-14],[-40,-49],[-4,-6],[-8,23],[-15,23],[-21,22],[-10,20],[-5,4],[-14,15],[-11,-30],[-9,-36],[-8,-50],[-6,-59],[-3,-50],[-1,-22],[-1,-59],[2,-64],[2,-41],[1,-28],[4,-83],[3,-68],[-2,-7],[-9,-234],[-11,-90],[-19,-70],[-19,-30],[-20,-14],[-38,20],[-41,-51],[-9,-28],[-1,-30],[0,-6],[-1,-35],[-1,-23],[-40,-99],[-5,-164],[-18,-160],[-10,0],[-4,1],[-1,-3],[-10,-32],[-35,-212],[-2,-63],[3,-17],[1,-6],[7,-34],[37,-222],[0,-4],[0,-18],[1,-41],[13,-96],[2,-47],[1,-10],[4,-158],[1,-44],[-4,-141],[-10,-75],[-13,-41],[-13,-17],[-12,-10],[-25,13],[-14,23],[-20,35],[-19,11],[-16,10],[-12,8],[-11,7],[-41,189],[-47,119],[-27,21],[-45,-120],[-2,-79],[10,-53],[17,-36],[17,-75],[0,-20],[7,-273],[0,-7],[4,-105],[-3,-15],[10,-140],[15,-135],[10,-124],[-1,-40],[-6,-18],[-1,-10],[-11,-90],[-15,-48],[-20,-22],[-30,23],[-26,69],[-30,159],[-6,-1],[-6,-1],[-4,27],[-12,99],[-15,92],[-15,61],[-18,56],[-24,52],[-23,48],[-40,68],[-18,35],[-16,26],[-18,11],[-23,5],[-20,-36],[-24,-96],[-11,-66],[-7,-72],[1,-73],[6,-80],[14,-59],[17,-42],[12,-20],[17,-44],[10,-33],[11,-36],[24,-86],[19,-47],[13,-25],[1,-1],[12,-10],[12,-11],[9,-23],[0,-1],[15,-101],[42,-475],[-2,-63],[-5,-29],[-19,-62],[-27,-58],[-25,-28],[-19,2],[-18,-30],[-5,-14],[0,-14],[-1,-5],[-13,-61],[-25,-67],[-22,-69],[-7,-52],[-25,-1]],[[69702,54695],[-99,742],[-17,129],[-17,125],[-19,140],[-6,51],[-7,69],[-66,597],[-17,149],[-18,159],[-7,68],[-33,295],[-30,277],[-19,166],[-86,772],[-13,118],[-55,490],[-19,170],[-21,188],[-10,107],[-5,43],[-14,177],[-8,104],[-11,164],[-1,15],[-7,97],[-6,77],[-6,78],[-4,57],[-7,95],[-22,298],[-21,291],[-20,275],[-5,67],[0,3],[-7,94],[-15,204],[-7,95],[-2,20],[-4,50],[-13,179],[-5,67],[-16,218],[-6,85],[-9,123],[-6,77],[-6,88],[-1,6],[-1,15],[-3,34],[-14,181]],[[93360,69251],[2,-65],[-19,-129],[-2,-74],[-7,-112],[-15,-60],[-5,-40],[-76,-299],[-97,-377],[-12,-46],[-10,-102],[-6,-63],[-8,-82],[-4,-44],[-19,9],[-54,24],[-42,227],[-42,-88],[-47,-207],[-11,-51],[-44,-185],[-81,139],[-54,-47],[-84,275],[-43,144],[-15,-21],[-203,-510],[-35,-86],[-34,-84],[-91,-224],[-43,-69],[-61,-97],[-11,-19],[-65,-103],[-49,27],[-15,9],[-61,33],[-57,-10],[-82,-328],[-7,-30],[-7,-29],[-24,-95],[-23,-23],[-52,-50],[-33,-32],[-71,-336],[-34,-70],[-14,-29],[-11,-22],[-69,-143],[-46,-158],[-31,-107],[-19,-65],[-82,-284],[-38,-128],[-5,-24],[-2,-12],[-77,-598],[-3,-28],[-8,-71],[-7,-60],[-11,-105],[-5,-30],[0,-1],[-27,-171],[-15,-118],[-67,-501],[-42,-321],[-7,-53],[-8,-69],[-8,-57],[-20,-147],[-19,-144],[-18,-136],[-15,-118],[0,-2],[-19,-134],[-8,-56],[-3,-23],[-60,-451],[-70,-529],[-50,-371],[-17,-130],[-3,-4],[-1,-5],[-3,-3],[-6,-11],[-6,-3],[-13,-18],[-4,-9],[-9,-23],[-16,-59],[-16,-53],[-15,-71],[-25,-38],[-4,-17],[-9,-51],[-2,-11],[-4,-22],[-4,-11],[-1,-4],[-15,-40],[-1,-7],[-1,-10],[-17,-88],[-12,1],[-18,17],[-22,-5],[-13,-24],[-10,-19],[-13,-93],[-4,-71],[1,-71],[-14,-64],[-11,-25],[-18,-42],[-24,-76],[-8,-28],[-8,-44],[-12,-33],[-10,-42],[-9,-49],[-27,-90],[-18,-55],[-2,-7],[-12,-46],[-16,-53],[-10,-36],[-13,-5],[-19,-4],[0,-9],[-4,-71],[-5,-112],[-10,-64],[-20,-12],[-15,2],[-34,-44],[-12,-43],[-10,-45],[-37,41],[-22,-32],[-27,-46],[-15,-34],[0,-2],[-13,-121],[-1,-1],[-19,-40],[-25,35],[-2,11],[-26,15],[-29,-42],[-4,-13],[-17,-54],[-22,-50],[-23,-22],[-19,-7],[-15,-23],[-25,-56],[-11,-73],[-6,-21],[-9,-40],[-16,-37],[-21,-24],[-18,-25],[-4,-62],[-16,-87],[-19,-51],[-10,-95],[-13,-70],[-10,-68],[-7,-50],[-14,-113],[-7,0],[-6,8],[-19,46],[-2,1],[-12,10],[-19,29],[-15,-6],[-14,-11],[-21,27],[-19,81],[-12,24],[-12,13],[-4,2],[-7,7],[-13,5],[-22,36],[-13,41],[-4,97],[-1,52],[-2,63],[-6,83],[-11,30],[-12,20],[-15,27],[-2,-1],[-18,-11],[-28,12],[-1,0],[-19,6],[-15,0],[-8,3],[-10,15],[-20,21],[-19,-10],[-19,-47],[-2,-2],[-26,-16],[-17,6],[-19,-29],[-52,111],[-4,1],[-14,0],[-15,-30],[-12,38],[-6,27],[-18,18],[-1,77],[-5,108],[0,85],[0,1],[1,15],[5,127],[11,88],[6,71],[5,64],[2,11],[11,73],[2,94],[4,65],[2,65],[4,58],[2,8],[16,69],[8,64],[3,30],[-7,66],[-13,129],[-12,91],[-21,39],[-15,12],[-21,18],[-10,27],[-2,13],[0,45],[-3,92],[-5,59],[-6,59],[-6,97],[-2,27],[1,59],[5,75],[0,18],[8,104],[16,51],[3,21],[2,10],[7,20],[6,17],[5,20],[1,5],[2,6],[10,27],[12,65],[2,25],[-4,70],[0,1],[-9,79],[5,47],[2,88],[3,69],[19,69],[1,1],[30,50],[3,3],[9,40],[-6,97],[0,12],[-3,125],[9,78],[8,33],[9,26],[12,58],[14,68],[1,5],[0,1],[10,35],[1,3],[76,251],[10,32],[-3,91],[-4,37],[-1,13],[-6,67],[-5,12],[-18,19],[-19,27],[-4,2],[-12,0],[-16,0],[-15,-12],[-14,-17],[-11,-6],[0,14],[1,100],[-1,17],[-13,93],[0,2]],[[32036,59607],[8,-58],[4,-102],[9,-252],[19,-398],[9,-201],[5,-67],[-20,-229],[0,-6],[-9,-101],[-17,-85],[-31,-87],[-19,-33],[-21,15],[-2,2],[-25,-6],[-89,-317],[-6,-65],[-38,-306],[-17,-135],[-15,-49],[-42,-143],[-17,-13],[-32,-24],[-21,-16],[-23,-17],[-22,38],[-96,166],[-19,32],[-19,-85],[-6,-65],[-12,-51],[-6,-13],[-13,16],[-3,28],[-14,85],[-1,69],[-8,58],[-13,21],[-68,10],[-23,-27],[-6,-7],[-135,-157],[-14,-196],[-12,-169],[-84,-205],[-37,-177],[-32,-156],[-56,-219],[-42,-12],[-22,-95],[-11,-49],[-31,-99],[-17,-54],[-12,-36],[-27,-84],[-35,-58],[-16,7],[-16,-16],[-53,-52],[-42,-55],[-9,-166],[-5,-90],[-53,-45],[-55,131],[-84,-49],[-34,-19],[-11,-7],[-21,-12],[-21,-12],[-11,13],[-14,-108],[-11,-76],[-7,-50],[-5,-68],[-23,23],[-31,7],[-28,5],[-27,6],[-51,-146],[-75,-219],[-1,-7],[-10,-410],[-12,-395],[-27,-970],[-3,-61],[-2,-37],[0,-36],[-5,-154],[-2,-79],[-4,-125],[-12,-435],[0,-2],[-18,-625],[-10,-359],[-7,-248]],[[29934,50482],[-144,-12],[-60,-6],[-53,-4],[-32,-3],[-95,-13],[-514,-51],[-1,0],[-17,-2],[-41,-4],[-216,-21],[-4,-1],[-1,-199],[0,-160],[-36,-133],[-33,-241],[-48,5],[-72,-62],[-71,-100],[-25,-34],[-19,-170],[-13,-116],[-2,-164],[-3,-232],[-15,-222],[-4,-55],[-28,-55],[-22,-7],[-16,33],[-8,61],[-58,179],[-43,24],[-20,127],[-53,104],[-44,15],[-26,172],[-31,134],[-51,31],[-7,57],[-11,89],[-6,52],[-83,141],[-31,6],[-40,8],[-40,37],[-29,178],[-37,90],[-37,91],[5,105],[0,127],[1,177],[-113,9],[-79,6],[-110,9],[-106,45],[-18,7],[-14,6],[-19,7],[-22,12],[-44,16],[-3,1],[-13,5],[-23,10],[-42,19]],[[18668,63696],[0,-35],[-7,-820],[0,-1],[-2,-207],[-5,-275],[-1,-63],[-2,-239],[-7,-650],[-7,-1299],[-4,-108],[0,-4],[-2,-379],[-1,-89],[-1,-275],[-1,-164],[-1,-75],[-2,-366],[-1,-267],[0,-61],[-2,-434],[-1,-75],[-1,-182],[0,-6],[-7,-607],[0,-64],[-4,-362],[-1,-154],[-3,-216],[-5,-425],[-5,-383],[-2,-224],[-2,-113],[-1,-111],[-1,-136],[0,-4],[-1,-90],[-8,-612],[-2,-227],[-1,-87],[-2,-195],[-1,-93],[-1,-90],[-3,-177],[-1,-101],[-1,-114],[-2,-138],[-3,-244],[1,-424],[-1,-101],[-2,-254],[-2,-71],[-9,-356],[-10,-383],[-1,-90],[0,-141],[-1,-83],[-1,-59],[-3,-191],[-1,-93],[-5,-366],[-2,-150],[-2,-239],[-7,-576],[-1,-144],[-2,-153],[-7,-702],[4,-114],[-3,-73],[-2,-222]],[[18506,47670],[-65,6],[-1,0],[-38,6],[-123,17],[-34,5],[-96,14],[-143,12],[-20,2],[-86,12],[-22,3],[-28,4],[-184,31],[-18,3],[-25,4],[-60,10],[-14,2],[-1,1],[-40,6],[-210,34],[-37,5],[-25,4],[-29,5],[-133,21],[-240,37],[-119,19],[-13,1],[-53,8],[-86,14],[-22,1],[-25,2],[-1,0],[-67,15],[-29,6],[-19,4],[-21,5],[-12,2],[-15,4],[-82,17],[0,1],[-67,14],[-59,13],[-55,0]],[[16089,48040],[-75,161],[-1,8],[-59,197],[0,7],[-29,92],[-24,79],[-4,-20],[-55,-215],[1,272],[24,91],[-22,75],[-6,19],[-7,27],[-8,25],[-12,42],[-11,39],[-16,55],[-18,55],[0,1],[-1,-2],[-19,-52],[-1,-4],[-8,-14],[-12,-4],[-12,22],[-1,10],[-7,75],[-1,52],[2,23],[0,12],[-76,303],[-12,38],[-45,148],[-35,116],[-14,-10],[-12,2],[-4,2],[-2,8],[-8,136],[-3,128],[-11,31],[-5,15],[-15,0],[-35,-16],[-1,0],[-1,-71],[-31,-39],[-32,42],[-17,-160],[-42,-5],[-28,-3],[-20,-14],[0,97],[0,174],[0,1],[-24,2],[-5,1],[-1,-164],[-33,-7],[0,175],[-1,0],[-11,4],[-40,10],[-23,-3],[-17,1],[-10,1],[-50,3],[0,1],[1,249],[-1,135],[-61,13],[-73,13],[-13,9],[0,86],[-10,110],[-2,69],[-6,83],[-6,101],[-1,72],[3,63],[-3,143],[1,99],[-17,39],[-35,-38],[-7,-66],[-22,-20],[-17,-29],[-15,-9],[-20,11],[-17,-20],[-15,-29],[-12,-57],[-16,-48],[-14,-22],[-12,2],[-27,-6],[-10,-3],[-23,-5],[-5,42],[-51,-92],[-65,-131],[-13,5],[-14,27],[-29,79],[-34,94],[-28,78],[-29,79],[-77,218],[-46,135],[-6,14],[0,1],[-10,27],[-1,0],[-52,146],[0,1],[-38,29],[-8,6],[-17,-32],[-12,1],[-5,0],[-26,34],[-30,39],[-1,-4],[-16,-47],[-5,-62],[-65,80],[-11,32],[-41,1],[0,1],[-1,0],[-3,10],[-13,87],[-1,14],[2,118],[4,82],[-5,65],[-27,12],[15,376],[-3,62],[-2,91],[-7,58],[-14,20],[-6,60],[-9,40],[2,60],[-5,59],[-9,46],[0,88],[6,50],[-18,6],[-18,10],[-10,28],[-11,129],[-2,29],[-7,82],[-5,60],[-6,77],[2,61],[-9,44],[-12,33],[-11,-10],[-11,78],[-17,44],[-4,56],[-8,62],[-12,45],[-1,71],[-1,64],[-3,80],[4,60],[16,54],[10,44],[6,61],[-12,65],[-12,28],[-10,50],[3,79],[-6,72],[0,59],[-2,67],[10,39],[3,57],[14,34],[2,7],[-4,96],[-35,890],[-8,241],[-16,500],[-7,199],[-10,339],[0,3],[-3,61],[0,5],[-3,26],[-3,19],[0,60],[-3,330],[0,2],[0,222],[-9,68],[-11,20],[-14,-5],[-15,19],[-7,-62],[-11,40],[-9,62],[-18,-104],[-13,-32],[-13,15],[-11,56],[-13,4],[-5,87],[-15,112],[-13,-7],[0,64],[-2,73],[-27,-8],[-17,40],[-6,-85],[-12,38],[-8,62],[-16,-5],[-6,62],[-13,49],[-16,3],[-8,52],[-12,22],[-15,-47],[-12,-22],[-13,-29],[-11,27],[-10,43],[-10,31],[-10,26],[-15,29],[-7,70],[-19,75],[-17,7],[-8,59],[-12,3],[-12,-17],[-4,61],[-6,67],[9,50],[-13,23],[-11,31],[-7,-68],[-11,-18],[3,68],[-13,23],[-11,24],[-4,59],[1,63],[8,73],[2,13],[5,49],[-12,30],[-7,61],[-1,75],[12,42],[-8,49],[-12,23],[-1,11],[-7,47],[8,74],[-13,74],[-27,-6]],[[12941,59970],[-4,25],[-13,95],[-14,14],[-15,63],[9,45],[-13,45],[-2,61],[-12,43],[-2,24],[-2,34],[-11,-6],[-2,-1],[-15,16],[-6,38],[-4,33],[-11,4],[-1,0],[-11,12],[-9,39],[-15,-11],[-5,57],[-12,-9],[-3,58],[-13,12],[-12,6],[0,16],[-2,90],[17,-37],[15,22],[0,74],[6,96],[10,68],[12,21],[9,-47],[11,42],[12,12],[5,59],[12,34],[12,-25],[9,-87],[18,131],[15,69],[15,-22],[16,14],[4,70],[13,-43],[12,-4],[1,59],[11,25],[1,-100],[12,-14],[17,45],[1,60],[20,-44],[20,66],[15,-16],[13,24],[29,66],[17,-19],[5,16],[7,18],[9,46],[15,68],[12,32],[13,-13],[13,10],[15,6],[12,-7],[13,-17],[3,329],[0,60],[7,707],[1,125],[7,655],[7,856],[13,1342],[2,264],[4,266],[25,-1],[2,232],[7,215],[-29,55],[3,340],[2,397],[1,81],[2,335],[3,244],[5,400],[2,182],[2,192],[5,506],[8,676],[4,434],[3,256],[4,438],[3,297],[7,655]],[[12941,59970],[-14,-252],[-5,-92],[-6,-114],[-1,-8],[-5,-92],[-35,-413],[-17,-191],[-20,-235],[-6,-336],[-24,9],[1,78],[-45,-395],[-8,-70],[-28,-212],[-41,-286],[-30,-213],[-8,-48],[-27,-171],[-48,-273],[-15,-85],[-19,-114],[-45,-215],[-44,-210],[-17,-80],[-12,-60],[-12,4],[-17,4],[-17,8],[13,-138],[-9,-72],[-20,-87],[-125,-492],[-87,-98],[-111,-127],[-2,-13],[-13,-143],[-16,-167],[-41,-445],[-13,-142],[-9,-93],[-25,-262],[-10,-116],[-21,-218],[0,-1],[-45,-16],[-118,-52],[-56,-25],[-45,-20],[-78,-29],[-28,-14],[-16,-7],[-78,-37],[-87,-39],[-28,-13],[-141,-70]],[[11167,52972],[-17,131],[-14,30],[-13,90],[11,27],[5,101],[-17,14],[-9,40],[-10,107],[-26,107],[-5,3],[2,52],[6,20],[12,39],[13,43],[-19,180],[-12,0],[-9,-44],[-11,-104],[-21,51],[1,19],[2,59],[-4,166],[-2,111],[0,30],[-2,115],[-15,33],[-18,35],[1,-81],[-17,-21],[-7,54],[-4,56],[-5,64],[-10,74],[-17,0],[-15,-69],[-13,47],[-23,168],[-49,54],[-8,3],[-5,4],[-31,167],[-19,102],[-16,92],[-8,45],[-20,126],[-32,202],[-2,12],[-16,120],[1,27],[-3,7],[-27,77],[-19,52],[-24,180],[-31,76],[-3,70],[2,60],[6,153],[-11,59],[-17,-9],[-13,5],[-4,82],[-13,52],[-13,-31],[7,-69],[-7,-68],[-23,-40],[0,1],[-8,39],[-8,51],[-9,57],[-10,65],[-21,114],[-10,100],[5,25],[-7,53],[-2,11],[-23,1],[-1,0],[-231,14],[-45,3],[-32,2],[-35,2],[-36,3],[-32,2],[-25,2],[-43,5],[-30,5],[-38,2],[-116,9],[-33,2],[-40,2],[-215,-17],[-23,-12],[-10,-41],[-5,-55],[9,-77],[16,-34],[15,-6],[13,7],[25,2],[9,-75],[-10,-28],[-14,-29],[-12,-11],[-12,-27],[-8,-62],[2,-79],[8,-82],[10,-92],[5,-65],[-2,-61],[-18,-45],[-20,-18],[-14,-7],[-17,9],[-18,18],[-17,-5],[-16,-28],[-12,-45],[-14,-81],[-18,-170],[-9,-109],[-11,-41],[-23,17],[-9,62],[0,95],[9,68],[18,97],[7,128],[-4,100],[-12,18],[-36,-161],[-1,-8],[-18,-93],[-3,-12],[-36,-99],[-11,-20],[-12,-8],[-4,8],[-3,14],[-3,24],[-1,31],[1,30],[-19,163],[-8,66],[0,1],[-5,39],[-4,6],[-3,-6],[-23,-89],[0,-2],[-42,-139],[-8,-16],[-1,-1],[-21,-10],[-52,32],[-2,1],[-13,9],[0,1],[-39,48],[-74,260],[-19,-17],[-2,-2],[-26,-54],[-3,-6],[0,1],[-7,1],[-65,149],[-3,9],[-2,41],[0,1],[-12,5],[0,-3],[0,-114],[0,-2],[0,-3],[-2,-15],[-44,-217],[0,-1],[-8,-32],[-43,-181],[-2,-10],[-7,-50],[-4,-26],[-12,-36],[-1,-3],[-10,-4],[-4,9],[-6,24],[-4,31],[-4,57],[0,3],[-2,16],[-5,25],[-1,3],[-1,3],[-26,76],[-9,8],[-10,-8],[-5,-18],[-3,-24],[-5,-54],[-5,-85],[-4,-114],[-13,-30],[-1,-1],[-12,83],[-1,1],[-7,34],[-10,22],[0,1],[-8,9],[-11,-10],[0,-1],[-9,-14],[-10,12],[-23,116],[-29,-89],[-1,-1],[-13,-49],[-2,-7],[-33,-97],[-3,-8],[-8,-24],[-16,-43],[-1,1],[-16,4],[-1,0],[-2,-1],[-1,0],[-14,-6],[-1,-1],[-1,0],[-37,-30],[0,-1],[-92,-83],[-14,-13],[-73,-66],[-12,-11],[-53,30],[-10,27],[-9,25],[-7,30],[-4,14],[-3,11],[-9,26],[-20,42],[-6,12],[-17,25],[-17,9],[-14,-1],[-4,-4],[-18,-14],[-11,-12],[-11,-24],[-8,-25],[-13,-67],[-11,-92],[-7,-78],[0,-5],[0,-30],[2,-38],[17,-122],[4,-35],[6,-79],[2,-35],[0,-3],[0,-62],[0,-2],[-1,-85],[-3,-123],[-4,-64],[-3,-10],[-9,-21],[-59,-135]],[[7678,54352],[-73,809],[-28,222],[-74,353],[-29,111],[-72,242],[-67,240],[-66,306],[-1,9],[-25,153],[-37,173],[-23,21],[-36,54],[-47,131],[-48,117],[-29,58],[-10,19],[-38,113],[-11,38],[-42,137],[-16,44],[-50,231],[-39,185],[-18,145],[-4,90],[-2,89],[8,493],[21,386],[24,348],[22,157],[60,26],[20,143],[15,111],[28,273],[22,153],[15,100],[91,679],[54,409],[51,1708],[25,834],[36,726],[74,425],[68,233],[272,462],[184,236],[23,30],[142,384],[10,29],[14,32],[111,268],[7,17],[3,22],[77,428],[19,1153],[-12,120],[0,71],[1,70],[-9,112],[-9,86],[-12,94],[-14,108],[-24,96],[-25,239],[-159,749],[-171,479]],[[81672,65015],[-11,41],[-13,41],[-10,36],[-11,35],[-11,35],[-12,30],[-13,24],[-19,0],[-19,-12],[-19,-30],[-19,-47],[-11,-35],[-6,-5],[-7,-7],[-19,-59],[-9,-59],[-7,-59],[-4,-59],[-3,-89],[7,-100],[7,-94],[12,-77],[9,-59],[12,-62],[8,-80],[8,-64],[10,-107],[7,-88],[7,-77],[3,-82],[4,-77],[4,-94],[7,-71],[12,-71],[8,-47],[10,-65],[12,-59],[12,-41],[4,-83],[1,-65],[-3,-82],[-5,-65],[-10,-89],[-7,-48],[-1,-11],[-12,-82],[-10,-65],[-14,-42],[-16,-35],[-12,-18],[-16,-23],[-11,-18],[-13,6],[-13,-6],[-13,-12],[-12,-6],[-16,-12],[-12,-16],[-1,-6],[-19,-217],[-3,-37],[-14,-162],[-17,-193],[6,-94],[2,-59],[4,-100],[5,-59],[8,-95],[7,-53],[6,-53],[5,-65],[0,-94],[-3,-59],[-6,-89],[-4,-59],[-5,-65],[-6,-76],[-3,-59],[0,-71],[3,-83],[4,-88],[2,-65],[5,-83],[2,-65],[4,-106],[2,-73],[-1,-80],[-1,-71],[-2,-27],[-3,-50],[-4,-58],[0,-10],[-13,-84],[-22,-58],[-25,-12],[-14,17],[-12,9],[-18,45],[-22,65],[-6,22],[-2,6],[-2,5],[-9,36],[-38,230],[-8,94],[-13,86],[-10,-278],[-4,-100],[-1,-20],[-1,-53],[-4,-146],[-3,-90],[-3,-78],[-15,-429],[-2,-77],[-4,-115],[-2,-61],[-1,-32],[-6,-151],[-14,-418],[-10,-290],[-14,24],[-11,14],[-10,-43],[-12,-4],[-14,-52],[-15,-29],[-5,-155],[15,38],[15,0],[21,12],[15,11],[3,-3],[5,-15],[-11,-335],[-4,-110],[0,-6],[-3,-86],[-3,-67],[-3,-94],[-34,-1002],[-3,-84],[-4,-128],[-14,-394],[-8,-227],[-22,-651],[-9,-85],[-12,-82],[-8,-141],[-5,-77],[-8,-63],[-7,-102],[-12,-37],[-29,-55],[-7,-67],[-8,-61],[-16,22],[-9,76],[-9,55],[-10,-60],[-13,-64],[-18,-54],[-17,-77]],[[80793,53850],[-22,95],[-9,76],[-15,105],[-19,70],[-9,46],[-13,84],[-10,28],[-15,87],[-10,35],[-16,57],[-45,105],[-13,46],[-15,29],[-12,51],[-13,28],[-20,-4],[-18,22],[-26,-12],[-12,-2],[-9,45],[-21,50],[-17,13],[-25,54],[-6,87],[-13,24],[-15,8],[-24,53],[-14,23],[0,2],[-31,72],[-16,34],[-21,4],[-49,-53],[-19,-85],[-15,-60],[-19,-37],[-27,-23],[-22,0],[-26,-74],[-18,57],[-21,-21],[-12,6],[-14,19],[-11,22],[-19,10],[-17,-16],[-35,-55],[-21,-32],[-16,-24],[-22,41],[-15,25],[-10,48],[-3,78],[6,89],[-10,86],[10,104],[12,83],[-5,84],[3,62],[4,78],[-6,58],[16,25],[-7,56],[-7,61],[-11,68],[-12,21],[-16,57],[-19,24],[-14,-48],[-12,10],[-9,33],[-12,-27],[-11,-43],[-1,-68],[-14,-33],[-14,15],[-11,24],[-8,-129],[-30,20],[-105,256],[-10,-84],[1,-87],[-12,-53],[-11,-26],[-17,14],[-5,60],[-13,4],[-14,-79],[-8,-46],[-11,-32],[-10,-36],[-15,-64],[-12,-15],[-11,-43],[-12,55],[-9,57],[-18,27],[-14,-101],[-20,-113],[-12,16],[-4,79],[-10,77],[-11,50],[-9,85],[-22,0],[-22,9],[-13,-10],[0,-75],[-6,-82],[-13,-95],[-11,-52],[-7,-54],[-12,23],[-12,12],[-10,52],[8,68],[-2,85],[2,84],[-9,80],[-1,4],[-1,-3],[-11,-41],[-18,-9],[4,-68],[-10,-39],[-7,-72],[0,-78],[-8,-43],[-7,-51],[-18,-31],[-17,16],[-18,28],[0,84],[-14,100],[-11,41],[4,75],[3,76],[-17,15],[-12,-18],[-6,-71],[3,-58],[-4,-70],[-2,-81],[-10,-43],[-12,-25],[-19,14],[-8,-49],[-16,0],[-8,76],[-12,22],[-16,-24],[-10,-33],[-10,43],[1,67],[-5,97],[-11,21],[-3,99],[-5,62],[-14,-13],[-10,42],[-10,-35],[-12,-66],[-14,-14],[-10,-47],[-12,17],[-13,14],[-16,-5],[-17,-50],[-13,15],[-7,56],[6,60],[6,72],[11,27],[12,-2],[3,86],[-1,72],[-8,60],[-17,27],[-12,22],[-12,12],[-13,-6],[-10,-30],[-9,41],[-12,14],[-14,-41],[-12,41],[5,91],[-19,-13],[-13,-9],[-14,17],[-14,11],[-12,-18],[-15,14],[-2,83],[-16,-17],[-11,-26],[-5,12],[-11,22],[-1,42],[-1,35],[3,74],[-17,107],[-15,39],[-2,60],[-13,57],[-13,41],[-13,37],[-15,43],[-9,36],[-8,58],[-8,55],[8,66],[1,16],[9,59],[2,80],[-7,86],[-16,112],[-1,6],[-9,69],[-2,87],[-11,66],[-12,63],[-18,40],[-19,38],[-13,30],[-12,37],[-8,28],[-10,30],[-59,189],[-16,53],[-20,63],[-19,63],[-1,1],[-127,408],[-63,202],[-127,408],[-18,60],[-3,8],[-18,58],[-5,17],[-9,28],[-29,92],[-103,332],[-2,5],[-19,64],[-54,170],[-11,37],[-6,17],[-9,23],[-106,334],[-51,159],[-28,88],[-14,20],[-13,-30],[-12,-18],[-21,-44],[-21,-24],[-12,130],[-16,41],[3,71],[-7,65],[-22,26],[-6,6],[-24,76],[-45,146],[-70,233],[-17,56],[-38,127],[-16,53],[-39,130],[-34,115],[-145,457],[-11,-45],[7,-453],[-12,65],[-15,48],[-29,-61],[-34,-29],[-10,94],[-96,118]],[[76608,62265],[-11,69],[3,79],[4,88],[-7,56],[-12,61],[1,221],[45,43],[2,245],[-157,85],[-8,176],[-72,28],[-1,0],[-19,9],[-14,6],[13,45],[9,57],[9,60],[-2,54],[1,22],[-1,14],[-1,3],[-1,18],[-6,57],[-5,27],[-41,198],[-29,138],[-5,22],[-3,28],[-12,100],[-11,93],[-9,127],[-3,39],[-12,110],[-20,162],[-2,7],[-27,143],[-5,23],[-8,73],[-6,78],[-4,120],[1,47],[-1,38],[3,87],[2,12],[11,78],[2,13],[5,17],[14,45],[36,61],[10,18],[22,-3],[42,-7],[14,-3],[13,-4],[38,-51],[23,-61],[18,-65],[4,-24],[16,-82],[6,-31],[45,-160],[1,-4],[2,-8],[23,-121],[9,-49],[3,-17],[14,-55],[20,-66],[4,-8],[25,-40],[44,-55],[25,-2]],[[76608,62265],[-1,-124],[-10,-43],[-3,-156],[-4,-202],[-10,-71],[-17,-55],[5,-110],[39,-6],[39,-423],[0,-4],[6,-268],[1,-76],[5,-218],[40,-414],[8,-95],[0,-5],[20,-294],[9,-147],[4,-60],[21,-28],[23,-22],[24,-43],[18,-6],[38,-53],[3,-84],[1,-63],[-3,-5],[-9,-17],[-63,41],[-30,-57],[24,-321],[24,-320],[1,-2],[13,-175],[-28,-100],[-62,-224],[-18,-116],[-21,-145],[-15,-48],[-10,-66],[-44,-224],[-34,-149],[-15,-47],[-19,-38],[-63,-78],[-19,-38],[-17,-55],[-5,-37],[-3,-126],[12,-118],[35,-202],[8,-100],[-1,-111],[-7,-44],[-11,-34],[-14,0],[-58,198],[-53,246],[-14,-48],[-9,-50],[-5,-66],[-9,-78],[-12,-27],[-19,-2],[-19,-32],[-42,-129],[-26,-143],[-12,-24],[-14,-46],[-25,-49],[-18,-62],[-17,-47],[-13,-36],[-24,-91],[-17,-24],[-14,-30],[-13,-46],[-27,-78],[-43,-138],[-59,-216],[-56,-125],[-10,67],[-10,87],[-13,75],[-18,-4],[-13,-13],[-40,-69],[-16,-21],[-11,-21],[-25,-18],[-15,-40],[-13,-63],[-12,-27],[-17,-39],[-12,-44],[-12,-13],[-24,-14],[-11,-22],[-17,-25],[-16,-37],[-13,-27],[-16,-43],[2,-68],[2,-73],[-11,-61],[-16,-46],[-12,-29],[-19,-22],[-21,-62],[-1,-69],[-5,-73],[-13,-49],[-20,-51],[0,-68],[-14,-73],[-6,-73],[3,-72],[-25,-98],[-16,-14],[-7,-78],[-9,-46],[-12,-35],[-13,-29],[-16,-19],[-11,-24],[-15,-36],[-24,-52],[-19,-83],[-12,-47]],[[75211,53335],[-3,-7],[-13,-31],[-22,-67],[-18,-36],[-21,9],[-10,-50],[-13,-56],[-15,-39],[-20,-38],[-11,-30],[-11,-34],[-9,-77],[-12,2],[-14,-21],[-10,-39],[-1,-74],[-6,-67],[2,-80],[-43,-98],[-8,-65],[-19,-99],[-13,-25],[-18,-52],[-20,-70],[-17,-48],[-19,-120],[-16,-53],[-18,-105],[-22,-65],[-4,-67],[-20,-86],[-14,-66],[-11,-77],[-12,-12],[-4,-79],[-11,-47],[-11,-63],[-16,-54],[-15,-88],[-21,-108],[-10,-88],[-22,-70],[-15,-59],[-12,12],[-13,-32],[-1,-77],[-12,-64],[-22,-40],[-17,-12],[-41,20],[-14,7],[-146,72],[-27,18],[-19,12],[-56,25],[-89,40],[-54,131],[-38,102],[-15,6],[-14,-21],[-18,29],[-26,-33],[-12,17],[-18,-39],[-13,-25],[-24,-37],[-1,221],[-1,217],[-15,89],[-20,51],[-59,159],[-32,88],[-34,93],[-85,231],[-38,102],[-25,14],[-3,61],[-17,-16],[-9,-18],[-25,-57],[-2,9],[-11,39],[-7,80],[-9,7],[-12,9],[-9,79],[-3,17],[0,4],[-8,51],[-10,50],[0,3],[-1,27],[-2,68],[-1,45],[-1,14],[-3,5],[-2,2],[-7,10],[-10,-32],[-8,-41],[0,-1],[-2,-4],[-8,-25],[-9,43],[-11,-8],[-40,-65],[-3,-6],[-9,-14],[-19,-26],[-4,0],[-19,0],[-6,10],[-5,9],[-2,0],[-15,-5],[-1,-15],[-5,-43],[-3,-85],[-11,-75],[-9,-45],[-9,-49],[-8,-44],[-17,-39],[-12,18],[-9,-24],[-10,-28],[-16,-71],[-18,-65],[-15,-43],[-13,-4],[-19,88],[-17,73],[-19,95],[-5,15],[-17,59],[-15,119],[-2,22],[1,93],[1,8],[-12,129],[-8,51],[-6,22],[-7,30],[-7,23],[-7,25],[-3,7],[-9,14],[-7,9],[-15,4],[-13,24],[-12,41],[-3,18],[-6,42],[0,27],[0,38],[-6,74],[-6,29],[-1,5],[-6,30],[-5,8],[-8,13],[-12,0],[-7,-6],[-8,-8],[-18,-40],[-5,-24],[-6,-26],[-11,-74],[-11,-107],[-6,-51],[-13,-56],[-10,-37],[-11,-34],[-14,-33],[-11,-22],[-10,5],[-4,13],[-7,24],[-24,-11],[-44,23],[-77,103],[-32,9],[-15,-16],[-21,-61],[-5,-37],[-4,-118],[8,-131],[22,-115],[40,-164],[5,-3],[10,-5],[95,-320],[24,-124],[27,-189],[0,-56],[-3,-13],[-4,-16],[-1,-39],[22,-130],[4,-98],[-1,-46],[-2,-64],[-22,-188],[-16,-103],[-46,-152],[-31,-55],[-31,8],[-24,36],[-15,80],[-6,66],[-14,183],[-9,132],[-16,112],[-17,88],[-8,4],[-4,-10],[-5,8],[-27,37],[-13,15],[-23,12],[-54,-36],[-38,-52],[-25,-35],[-19,-38],[-19,-62],[-11,-50],[-9,-91],[-2,-63],[5,-82],[11,-149],[7,-83],[12,-62],[14,-135],[-5,-197],[-19,-61],[-10,3],[-2,1],[-21,6],[-34,-95],[-43,-81],[-21,18],[-30,63],[-12,39],[-12,61],[-6,227],[5,172],[-6,195],[-3,33],[-10,53],[-5,2],[-24,93],[-7,3],[-10,53],[-4,50],[-32,160],[-31,24],[-10,-33],[-5,-15],[-1,-4],[-91,-84],[-63,-159],[-42,-82],[-18,-7],[-34,-38],[-46,-104],[-15,-48],[-38,-163],[-34,-150],[-13,-81],[-33,-63],[-5,3],[-6,3],[-35,-110],[-11,6],[-4,20],[-20,40],[-10,53],[4,133],[16,56],[12,97],[9,227],[-3,33],[-3,18],[-5,2],[-30,105],[-26,139],[-20,146],[-22,115],[-23,91],[-16,56],[-47,40],[-33,9],[-15,-48],[-1,-19],[-1,-45],[0,-15],[-33,-110],[-2,-62],[-1,-37],[0,-5],[-9,-97],[-6,-181],[3,-41],[22,-107],[19,-17],[28,-87],[9,-44],[-3,-53],[0,-9],[-2,-39],[32,-159],[9,-100],[-4,-118],[-8,-76],[-32,-143],[-36,-228],[-10,-130],[-4,-134],[1,-88],[7,-107],[18,-176],[27,-309],[-3,-118],[-13,-264],[-19,-197],[-24,-84],[-22,-20],[-40,-83],[-40,-28],[-36,19],[-33,72],[-22,115],[-5,202],[-6,59],[-12,62],[-8,4],[-3,-9],[-7,4],[-13,9],[-13,68]],[[70918,48497],[7,110],[0,2],[-36,175],[-25,124],[-26,121],[-10,50],[-11,47],[-14,71],[-50,233],[-70,331],[-102,488],[-1,3],[-30,142],[-52,247],[-14,45],[-10,63],[-10,35],[-82,392],[-93,443],[-37,174],[-1,4],[-23,112],[-36,170],[-21,97],[-6,32],[-15,70],[-12,58],[-34,159],[-30,155],[-15,62],[-4,18],[-110,528],[-88,429],[-5,24],[-19,48],[-11,95],[-25,61]],[[69797,53915],[-11,114],[1,24],[-33,184],[1,47],[0,2],[5,35],[-8,44],[-22,186],[-28,144]],[[85552,56756],[-1,-3],[-4,-55],[-4,-51],[-1,-12],[-16,-182],[-11,-141],[2,-109],[1,-22],[10,-55],[3,-31],[0,-12],[7,-68],[2,-10],[-1,-37],[0,-13],[6,-80],[-15,-77],[-14,-82],[-6,-37],[-20,-35],[-20,-2],[-11,17],[-11,27],[-14,21],[-17,8],[-2,5],[-9,20],[-8,59],[0,2],[-2,22],[-28,24],[-17,-30],[-31,-18],[-16,-13],[-2,-56],[4,-68],[2,-17],[19,-67],[13,-58],[2,2],[10,11],[18,5],[7,-8],[3,-12],[-1,-68],[2,-101],[1,-7],[16,-76],[-1,-48],[-1,-72],[0,-20],[-1,-62],[-21,-51],[-4,-9],[-1,-4],[16,-103],[1,-2],[25,-44],[0,-3],[19,-97],[5,2],[2,-1],[3,-40],[5,-108],[3,-28],[6,-42],[-7,-61],[-7,-108],[5,-42],[14,-28],[9,-72],[10,-210],[2,-66],[9,-61],[5,-37],[4,-29],[22,-136],[-10,-93],[1,-65],[-9,-100],[-14,-67],[0,-3],[-1,-3],[-12,-59],[-9,-49],[-4,-19],[0,-1],[-2,-76],[9,-61],[6,-21],[9,-66],[9,-63],[12,17],[21,15],[9,17],[8,-9],[12,12],[3,0],[19,-53],[0,-4],[1,-65],[-1,-9],[-11,-70],[-11,-47],[-13,-67],[-2,-49],[-3,-37],[-7,-67],[-11,-43],[-16,-19],[-9,-20],[-24,-50],[-6,-25],[-15,-40],[-5,-16],[-1,-3],[-27,-47],[-16,-9],[-3,-5],[-9,-8],[-17,8],[-15,7],[-5,0],[-35,-3],[-7,-3],[-8,-6],[-5,-10],[-1,-8],[-1,-28],[0,-22],[-3,-97],[2,-58],[-4,-60],[3,-83],[2,-13],[16,-75],[9,-44],[1,-63],[0,-8],[-9,-45],[-9,-103],[2,-90],[-1,-56],[0,-85],[-5,-48],[-3,-60],[9,-46],[1,-91],[1,-14],[4,-29],[3,-19],[1,-4],[2,-35],[9,-74],[10,-53],[3,-71],[5,-60],[-10,-65],[-22,-27],[-4,-25],[-5,-46],[0,-1],[-21,-14],[-19,-7],[-20,-12],[-12,-9],[-30,-34],[-22,-28],[-4,-3],[-16,-23],[-6,-16],[-2,-3],[-3,-64],[5,-35],[1,-12],[2,-27],[1,-66],[-9,-42],[-3,-50],[0,-14],[7,-64],[-16,-87],[-2,-33],[-4,-51],[-8,-95],[-12,-43],[-21,29],[-3,0],[-24,0],[-17,-6],[-16,-6],[-19,-56],[0,-4],[-2,-9],[-13,-89],[0,-2],[0,-34],[1,-23],[-4,-20],[-15,-90],[3,-109],[-7,-59],[-8,-40],[-6,-18],[-1,0],[-11,26],[-4,6],[-2,-3],[-6,-38],[-5,-54],[-5,-32],[-5,-28],[-7,-88],[-9,-64],[-3,-53],[-7,-39],[-5,-69],[0,-44],[-1,-8],[-9,-56],[-6,-34],[-7,-70],[-10,-110],[-9,-54],[-1,-7],[-7,-30],[-7,-26],[-10,-72],[-1,-34],[-1,-9],[1,-76],[0,-18],[2,-50],[-4,-27],[-3,-21],[-2,-15],[-2,-145],[11,-85],[0,-6],[1,-45],[0,-10],[-1,-3],[-9,-33],[-7,-24],[-17,16],[-7,0],[-6,0],[-20,-26],[-13,-6],[-15,-14],[-13,-36],[-5,-21],[-14,-47],[-15,-38],[-8,-48],[-6,-39],[-3,-12],[-11,-30],[-21,-125],[-23,-60],[-8,-42],[-7,-63],[-19,-74],[-8,-37],[-9,-12],[-2,-3],[-1,-2],[-25,-63],[-10,-37],[-11,-3],[-20,-43],[-4,-13],[-3,-12],[-2,-12],[-8,-47],[-5,-5],[-1,-2],[-11,-12],[-21,-22],[-2,0],[-16,-1],[-9,1],[-2,0],[-19,32],[-6,4],[-19,41],[-2,11],[-13,50],[-8,66],[-8,23],[-20,76],[-7,7],[-23,20],[-4,-3],[-13,-2],[-3,0],[-20,59],[-20,77],[-20,28],[-6,23],[-1,1],[-9,-11],[-18,-42],[-5,-15],[-13,-31],[-1,1],[-22,82],[-4,20],[-9,46],[-2,9],[-6,22],[-2,4],[-12,10],[-18,40],[-1,4],[-8,29],[-5,6],[-14,14],[-4,9],[-8,13],[-3,-5],[-11,-15],[-11,53],[-13,36],[-4,10],[-27,31],[-4,4],[-2,-4],[-8,-30],[-12,0],[-9,0],[-3,-4],[-15,-26],[-11,-24],[-6,-14],[-19,-19],[-6,2],[-16,14],[-13,37],[-3,9],[-19,82],[-3,5],[-18,31],[-17,48],[-2,9],[-1,3],[-10,0],[-16,-21],[-2,-3],[-7,-5],[-25,-30],[-4,-7],[-8,-13],[-22,-42],[-2,-8],[-11,-29],[-1,-1],[-17,-3],[-5,-3],[-16,25],[-10,2],[-2,2],[-5,0],[-28,37],[-10,7],[-9,4],[-3,1],[-18,28],[-19,89],[-4,3],[-13,-18],[-8,-17],[-23,5],[-3,3],[-26,-125],[-10,-28],[-2,-1],[0,-2],[-17,-6],[-12,-34],[-14,-49],[-1,-12],[-5,-85],[-6,-10],[-19,-57],[-4,-14],[-8,-49],[-8,-24],[-2,-6],[-34,-82],[-11,-6],[-20,-101],[-12,-82],[-10,-35],[-5,-11],[-13,-27],[-13,-27],[-2,2],[-21,15],[-4,-4],[-3,-9],[-5,-15],[-1,-1],[-10,-13],[-6,-30],[-12,-34],[-12,-32],[-5,-15],[-1,-6],[-13,-20],[-9,-18],[-4,-25],[-3,-7],[-10,-16],[-9,-8],[-1,0],[-11,0],[-8,-21],[-17,-24],[-6,-1],[-1,-1],[-17,0],[-3,0],[-2,-2],[-4,-7],[-15,-68],[-15,-141],[-15,31],[-4,5],[-18,11],[-17,11],[-15,30],[-18,24],[-24,-36],[-19,-12],[-32,-37],[-26,-86],[-6,6],[-5,5],[-17,-12],[-26,42],[-16,-18],[-1,0],[-22,-7],[-29,-24],[-12,-49],[-37,7],[-44,3],[-31,35],[-17,-6],[-20,-76],[-13,-46],[-33,-173],[-5,-101],[1,-100],[6,-112],[-6,-50],[-10,-74],[-19,-65],[-10,-77],[-17,-235],[-13,-8],[-38,-53],[-34,-72],[-8,-89],[-12,-73],[-9,-65],[-9,-71],[-6,-71],[-3,-78],[-2,-22],[-45,-354],[-35,-17],[-22,-42],[-57,-121],[-4,-10],[-28,-73],[-21,-10],[-42,72],[-70,-82],[-15,-11],[-39,-32],[-29,78],[-34,50],[-31,-27],[-109,-3],[-96,38],[-8,-52],[-10,-107],[-18,-89],[-16,-43],[-60,-78],[-10,-24],[-7,-29],[-14,-61],[-4,-21],[-9,-55],[-13,-45],[-3,-15]],[[81433,43255],[-2,-75],[-19,12],[-38,15],[-28,-36],[-43,-70],[-49,-38],[-47,12],[-18,24],[-1,90],[7,104],[6,55],[6,59],[0,105],[-1,79],[-8,116],[-11,182],[-2,127],[-13,102],[-29,107],[-4,123],[4,136],[-5,309],[6,312],[2,95],[-7,52],[10,88],[11,98],[0,82],[2,131],[3,99],[4,81],[6,75],[1,66],[6,64],[6,64],[3,59],[2,116],[10,89],[0,11],[0,55],[-7,67],[14,24],[-7,54],[-10,34],[-15,21],[5,55],[-1,75],[2,67],[17,115],[-11,29],[-12,9],[-17,-9],[-27,-13],[-9,-44],[-15,0],[-11,40],[-7,58],[-10,43],[6,51],[-8,63],[-11,61],[18,84],[-3,65],[-14,82],[6,84],[3,134],[-8,95],[-7,80],[-2,63],[6,55],[15,53],[9,60],[16,28],[6,54],[8,41],[1,115],[18,17],[-2,66],[28,172],[-10,142],[2,60],[-6,70],[-3,57],[-11,31],[-1,64],[13,13],[-4,57],[1,60],[-10,34],[5,71],[0,69],[9,39],[3,56],[4,72],[0,93],[19,-46],[13,-64],[13,-37],[13,-28],[7,-69],[-4,-61],[-15,-109],[6,-86],[16,-23],[11,16],[13,19],[13,42],[14,7],[12,20],[10,33],[8,52],[10,34],[19,49],[7,48],[1,63],[10,63],[-3,43],[-2,22],[8,83],[-2,69],[-15,3],[-17,32],[-11,21],[-55,20],[-14,-21],[-3,142],[9,73],[13,19],[5,71],[-16,74],[-15,-7],[-14,-1],[-12,6],[-10,40],[-11,66],[-2,77],[-13,52],[-14,-20],[-13,55],[-14,45],[-13,-10],[-12,-3],[-10,57],[8,58],[19,61],[-10,86],[-16,164],[1,65],[-1,71],[-33,167],[6,64],[-10,119],[-13,-17],[-13,-6],[-16,63],[-31,23],[10,57],[1,64],[12,29],[15,40],[-7,75],[1,62],[7,57],[6,75],[4,87],[7,111],[-7,85],[-18,108],[-18,-40],[-20,-19],[-64,71],[-14,9],[-89,139],[5,201],[8,61],[-10,65],[3,63],[-5,56],[-11,78],[0,96],[3,113],[12,74],[4,95],[-23,33],[-28,17],[-12,30],[-26,57],[-11,38],[-3,77],[8,50],[10,72],[13,25],[15,45],[15,32],[10,47]],[[64980,54594],[-9,-85],[-9,-105],[-6,-64],[-16,-15],[-9,-52],[-14,-26],[-17,-2],[-18,-16],[-19,-44],[-13,-2],[-12,-25],[-20,-14],[-14,-33],[-15,-21],[-18,-76],[-19,-85],[-12,-51],[-6,-23],[-7,-32],[-20,-85],[-22,125],[-22,-206],[-112,-1032],[-12,-85],[-74,-500],[-24,-75],[-18,-195],[2,-56],[0,-12],[-2,-23],[-4,-22],[-1,-1],[0,-1],[-13,-44],[-10,-10],[-8,13],[-7,16],[-7,8],[0,1],[-14,-19],[-6,-59],[-9,-79],[-4,-32],[-12,-109],[-15,-138],[-8,22],[0,2],[-11,29],[-2,6],[-3,8],[-2,-21],[-5,-60],[-3,-13],[-5,-2],[-8,20],[-4,8],[-7,3],[-9,-7],[-60,-84],[-6,-17],[-24,-131],[-22,-205],[-1,-15],[-71,-127],[-5,-7],[-5,-6],[-2,-20],[-8,-104],[-10,-213],[-5,-70],[-5,-23],[-17,-7],[-4,-1],[-6,-11],[-9,-32],[-24,-140],[-4,-20],[-77,-199],[-10,-19],[-50,-11],[-9,-65]],[[63812,49671],[-87,4],[-49,3],[-27,1],[-31,-26],[-185,-517],[-95,-266],[-94,-263],[-11,-31],[-35,-100],[-260,-726],[-201,-567],[-29,-81],[-40,-112],[-14,-38],[-3,-7],[-51,-58],[-3,-4],[-39,-45],[-36,-40],[-13,-15],[-43,-49],[-77,-87],[-63,-349],[-16,-84],[-51,-281]],[[62259,45933],[-27,-11],[-14,8],[7,144],[-12,85],[-15,13],[-24,22],[-27,-29],[-27,58],[-1,118],[-14,-16],[-16,-17],[-56,-64],[-24,-27],[-127,-145],[-362,-410],[-156,-177],[-70,-61],[-122,-154],[-16,-20],[-29,-32],[-129,-148],[-8,-9],[-19,-23],[-10,-11],[-25,24],[-19,16],[-6,122],[-5,67],[-8,149],[10,73],[15,122],[-6,194],[-83,621],[-14,104],[0,1],[-6,-27],[-3,-13],[-4,-17],[-77,-187],[-31,7],[-56,2],[-55,1],[-147,-422],[-88,3],[-5,0],[-35,2],[-22,50],[-39,90],[-37,101],[-11,31],[-95,256],[-53,28],[-16,-2],[-21,-1],[-135,-15],[-5,0],[-28,-8],[-92,-15],[-33,-2],[-34,0],[-42,-8],[-63,-16],[-2,-1],[-117,-18],[-44,-7],[-30,-5],[-2,0],[-150,-24],[-110,-17],[-65,-10],[-100,-16],[-84,-13],[-168,-26],[-35,-6],[-1,0],[-102,-16],[-146,-25],[-18,-1],[-5,-1],[0,-12],[-12,4],[-34,4]],[[58362,46168],[5,79]],[[58367,46247],[24,357],[17,263],[4,124],[16,295],[6,123],[-26,7],[-50,13],[-36,10],[-34,-271],[-142,303]],[[58146,47471],[-7,17],[32,213],[15,102]],[[58186,47803],[72,-166],[4,115],[11,-7],[15,449],[17,-10],[103,-56],[18,-6],[1,173],[7,314],[3,177],[70,-30],[7,106],[11,197],[16,291],[13,273],[14,243],[49,868],[26,444],[10,171],[8,153],[19,349],[11,200],[26,489],[6,128],[2,92],[-7,64],[-9,83],[-8,70],[0,2],[-40,357],[-20,173],[-21,185],[79,-3],[5,190],[5,199],[21,-8],[19,-7],[26,-1],[43,-31],[2,179],[12,424],[2,72],[-13,6],[-16,7],[-69,33],[-71,29],[-63,30],[-49,23],[-28,13],[-33,16],[-10,146],[-32,462],[-27,408],[-15,190],[-81,863],[-15,165],[-44,465],[-39,414],[0,1],[13,674],[2,112]],[[24611,50900],[0,-65],[-1,-102],[-2,-182],[-1,-137],[-6,-861],[-2,-208],[-1,-30],[0,-34],[-2,-95]],[[24596,49186],[-38,4],[-90,10],[-23,3],[-4,0],[-69,8],[-57,7],[-17,2],[-13,2],[-44,5],[-43,5],[-55,7],[-49,6],[-45,6],[-38,5],[-48,5],[-14,2],[-77,8],[-34,7],[-46,7],[-14,2],[-27,0],[-7,1],[-25,2],[-17,2],[-18,9],[-62,4],[-19,2],[-17,1],[-30,0],[-17,1],[-15,1],[-28,5],[-84,14],[-30,5],[-18,4],[-12,1],[-20,2],[-12,0],[-107,10],[-42,3],[-54,6],[-129,15],[-122,15],[-44,5],[-168,20],[-13,3],[-107,9],[-139,10],[-60,5],[-33,7],[-41,1],[-17,0],[-28,1],[-16,5],[-21,0],[-7,0],[-29,4],[-173,21],[-251,26],[-81,9],[-46,7],[-55,4],[-79,9],[-86,10],[-118,16],[-82,11],[-19,3],[-97,11],[-127,14],[-42,-21],[-77,8],[-21,2],[-39,4],[-292,30],[-28,0],[-121,14],[-137,13],[-82,10],[-3,-5],[-12,-58],[-8,-41],[0,-60],[3,-105],[3,-83],[-1,-62],[-6,-137],[-11,30],[-16,-2],[-12,11],[-12,41],[-23,21],[-11,-11],[-11,-25],[-12,16],[-9,-53],[-13,-15],[-10,-29],[-8,-40],[-23,-28],[-8,-61],[-11,-1],[-7,-20],[-5,-14],[-7,-77],[3,-81],[-9,-51],[-15,0],[-10,-53],[-10,-51],[-14,-23],[7,-52],[8,-58],[-20,-44],[-4,-57],[-15,-61],[-10,35],[-13,-5],[-12,-35],[-2,-565],[0,-75],[-1,-78],[0,-42],[-21,4],[-29,3],[-31,4]],[[19659,47568],[-30,4],[-145,8],[-35,11],[-101,15],[-22,2],[-34,4],[-69,5],[-2,1],[-143,15],[-35,3],[-52,4],[-40,0],[-16,-1],[-15,1],[-78,6],[-191,15],[-60,0],[-85,9]],[[53853,60883],[0,-88],[30,-126],[1,-7],[3,-63],[1,-4],[3,-70],[7,-52],[15,-44],[11,-52],[16,-36],[19,46],[17,61],[12,9],[12,-13],[11,-79],[-21,-51],[-2,-101],[-86,-5],[-1,-83],[-43,-3],[-1,-127],[0,-9],[-4,-142],[-23,-517],[-100,-551],[-51,-276],[-8,-73],[-14,-52],[-15,-65],[-2,-218],[0,-3],[1,-91],[1,-132],[4,-711],[4,-215],[17,-230],[4,-82],[8,-94],[6,-99],[8,-101],[5,-63],[7,-96],[7,-97],[5,-77],[11,-134],[7,-119],[5,-77],[-2,-73],[0,-59],[-1,-113],[-1,-61],[-14,12],[-12,18],[-15,-347],[21,-17],[12,-16],[18,-46],[11,-20],[15,-43],[0,-441],[4,-83],[2,-1],[22,-49],[13,-46],[7,-41],[6,-33],[2,-12],[-1,-26],[-4,-111],[-1,-27],[-30,-146],[-14,-48],[-22,-71],[-25,-84],[-18,-35],[-21,-43],[-44,-84],[-50,-57],[-28,-99],[0,-42],[-1,-85],[12,-61],[29,-12],[39,14],[106,104],[6,10],[22,36],[12,20],[17,27],[19,54],[13,36],[26,44],[31,-22],[34,-87],[14,-70],[5,-105],[-1,-34],[-1,-31],[-1,-30],[-2,-23],[-3,-23],[-7,-59],[-5,-19],[-11,-44],[-39,-159],[-5,-19],[-45,-145],[-7,-23],[0,-2],[-18,-72],[-5,-38],[-15,-120],[-20,-102],[-52,-144],[-29,-67],[-3,-6],[-33,-73],[-38,-132],[-58,-199],[-13,-57],[-17,-112],[-3,-103],[-1,-39],[7,-98],[9,-43],[1,-4],[14,-75],[26,-44],[35,-15],[29,12],[26,11],[44,51],[0,1],[4,12],[37,113],[24,52],[5,8],[23,32],[11,15],[24,-11],[41,-18],[58,21],[11,4],[7,-4],[10,-4],[19,-40],[10,-60],[2,-50],[2,-24],[-5,-165],[-2,-21],[-4,-35],[-1,-12],[-29,-130],[-3,-23],[-61,-193],[-39,-120],[-2,-13],[-97,-578],[-2,-8],[-27,-101],[-1,-5],[-3,-5],[-22,-40],[-22,-29],[-10,-12],[-11,7],[-23,15],[-8,5],[-8,23],[-6,18],[-11,34],[-69,269],[-12,32],[-3,6],[-24,35],[-37,16],[-3,2],[-9,-13],[-4,-14],[-17,-60],[-5,-29],[-1,-13]],[[53420,50040],[-2,2],[-29,35],[-30,37],[-24,25],[-173,183],[-106,146],[-12,14],[-57,239],[-174,67],[-115,270],[-29,50],[-32,35],[-21,7],[2,-140],[1,-145],[-67,-3],[1,91],[2,105],[-49,5],[-1,0],[-12,2],[-3,-3],[-40,7],[-19,3],[-95,-189],[2,-13],[0,-7],[16,-147],[-151,19],[5,199],[-18,7],[2,323],[-40,10],[0,-9],[-4,-80],[-14,5],[-26,11],[-11,0],[-1,0],[-69,-19],[-47,-12],[-54,-14],[0,-1],[1,-4],[0,-5],[3,-67],[-1,-19],[-27,-158],[-1,-5],[-123,94],[-1,0],[-1,0],[-202,-27],[-1,-10],[0,-1],[-3,-103],[-2,-104],[-5,-165],[-12,22],[-30,10],[5,266],[-148,71],[-55,-31],[-5,-88],[-4,2],[-23,13],[-5,-1],[-5,-1],[-1,-2],[1,51],[1,37],[-1,0],[-64,6],[-2,-37],[-32,-2],[0,-76],[10,-12],[1,-2],[18,-21],[0,-126],[0,-79],[-58,-56],[-78,11]],[[51076,50536],[-1,91],[-6,96],[-44,-4],[-16,12],[-28,44],[-15,61],[-7,80],[-22,42],[4,100],[3,78],[5,77],[31,-71],[32,165],[17,85],[0,199],[-16,0],[-5,67],[-16,24],[-17,-206],[-40,230],[-108,676],[-15,91],[-13,55],[-23,96],[-53,227],[-4,19],[-59,256],[-13,59],[-13,51],[-17,73],[-67,288],[-17,74],[-34,144],[-38,159],[-34,143],[-30,127],[-12,61],[-98,483],[-60,294],[-36,181],[-206,1011],[-144,709],[-20,82],[-4,19],[-30,123],[-36,75],[-133,322],[-39,94]],[[47982,57305],[4,-1],[1,-241],[1,-92],[-9,-349],[-15,-371],[0,-15],[-6,-220],[77,-532],[15,-102],[64,-439],[-20,-110],[-16,-81],[-8,-152],[-84,34],[-16,-562],[-19,-667],[-22,-33],[-1,-71],[-8,-340],[-28,10],[-22,8],[2,152],[-50,32],[-18,10],[-1,-67],[0,-106],[-1,-78],[-4,-134],[25,-8],[0,-21],[-67,-258],[-21,-708],[-6,-200],[-3,-89],[-2,-95],[-26,24],[1,-117],[22,-62],[-2,-60],[-3,-34],[-14,-539],[-12,-428],[-2,-73],[-1,-65],[-4,-118],[-7,-225],[-2,-72],[5,-71],[9,-93],[8,-51],[6,-129],[-9,-251],[-6,-216],[-2,-104],[-2,-68],[-1,-23],[-3,-124],[-8,-46],[-18,-151],[-5,-74],[2,-119],[-9,-93],[-8,-109],[-59,38],[-3,-34],[3,-57],[-3,-121],[8,-66],[2,-78],[-3,-141],[-26,-23],[4,-184],[4,-174],[15,-221],[-16,-327],[21,-132],[32,-11],[28,-54],[-7,-293],[-42,16],[-5,-138],[-9,-138],[-18,-128],[9,-87],[9,-81],[-28,-108],[-16,-26],[-4,-99],[-11,-179],[-22,-327],[-103,-252],[-42,-291],[4,-142],[10,-42],[20,-48],[9,-17],[3,-31],[-9,-79],[-11,-52],[-9,-56],[1,-146],[-3,-291],[-18,-81],[-7,-189],[10,-253],[14,-169],[-6,-86]],[[47359,42520],[-8,-62],[-28,18],[-11,-34],[-12,-2],[-21,-74],[-16,-14],[-13,50],[-16,84],[1,75],[-9,41],[-10,59],[-24,15],[-11,-80],[-3,-70],[-10,-113],[-18,-70],[-10,-38],[-7,-53],[-6,-91],[20,-118],[-6,-57],[-21,5],[-18,-12],[-12,-21],[-14,-39],[-14,-86],[-8,-58],[-15,-17],[-11,-26],[-21,-18],[-12,-12],[-13,26],[-15,23],[-14,-64],[-25,-11],[-10,-34],[-5,-57],[-10,-103],[7,-78],[16,-18],[2,-64],[8,-72],[-7,-65],[-13,-84],[8,-52],[11,-79],[1,-110],[12,-57],[5,-84],[3,-93],[3,-122],[2,-68],[-10,-52],[-12,-44],[-20,-28],[-19,1],[-21,-34],[3,-113],[7,-87],[22,-9],[16,-27],[10,-98],[11,-32],[17,-61],[7,-68],[-14,-114],[-10,-85],[-2,-85],[-10,-102],[2,-66],[-15,-58],[-9,-133],[10,-102],[8,-73],[5,-139],[15,-132],[12,-111],[-30,-208],[-13,-96]],[[46921,38280],[-13,13],[-130,127],[-32,196],[-37,91],[-11,27],[-47,114],[-19,48],[-20,31],[-61,101],[-43,237],[-36,28],[-41,-49],[2,-98],[11,-85],[-4,-66],[-21,-40],[-18,74],[-21,85],[-18,72],[-20,11],[-82,-75],[-33,11],[-11,249],[40,47],[7,85],[1,69],[15,22],[5,81],[-10,49],[-23,73],[-11,103],[-40,-21],[-20,19],[-11,46],[-1,76],[-17,-1],[-24,-23],[-15,-2],[-23,-20],[-19,72],[-23,2],[-52,-11],[-11,45],[-18,-15],[-20,-90],[-27,-75],[-25,-90],[-18,8],[-14,51],[7,105],[3,77],[-12,26],[-14,30],[-25,4],[-17,64],[-28,-35],[3,-88],[3,-74],[-20,-84],[-20,-45],[-16,36],[-23,78],[-24,-10],[-24,-150],[5,-141],[34,-46],[8,-90],[-17,-178],[-42,6],[-26,3],[-17,56],[0,1],[-12,37],[-32,-32],[-36,-137],[-29,-109],[-41,-73],[-45,59],[-12,-67],[-9,-97],[-4,-84],[10,-79],[17,-74],[15,-62],[7,-68],[-3,-75],[-11,-51],[0,-64],[12,-51],[7,-54],[8,-75],[4,-64],[-16,-35],[-23,4],[-13,-1],[-18,-15],[-30,-64],[-12,-13],[1,-79],[-13,-45],[-6,-2],[-8,-3],[-13,-15],[-20,-2],[-12,45],[-21,9],[-45,-153],[-36,-120],[-19,-62],[-24,-91],[-5,-69],[-18,15],[-15,151],[-16,71],[-32,26],[-14,-2],[-16,-20],[-16,27],[-24,46],[-17,66],[-11,68],[-4,76],[2,72],[2,99],[10,57],[7,49],[5,90],[0,71],[9,70],[4,29],[0,23],[4,2],[5,177],[-63,35],[8,387],[16,3],[2,9],[1,133],[-96,8],[-40,34],[-34,-122],[-34,-121],[-93,-2],[-26,-1],[-5,-153],[-46,23],[-46,23],[-24,12],[-3,-121],[-9,-317],[-68,41],[9,429],[-33,19],[-87,40],[1,605],[-167,-11],[-21,12],[-1,63],[-29,16],[-29,11],[-13,-2],[4,175],[-66,36],[-5,2],[4,182],[-6,0],[-22,25],[3,127],[-41,26],[5,176],[-21,27],[-31,23],[7,241],[1,4],[-43,27],[-10,6],[1,51],[-73,44],[4,184],[28,-16],[8,325],[3,0],[2,135],[-54,8],[-3,-155],[-27,7],[-4,8],[-1,52],[1,77],[-2,90],[-10,-9],[-26,11],[-2,11],[0,67],[-3,10],[-90,35],[-33,15],[2,60],[-73,61],[7,195],[-617,211],[-243,83],[-22,6],[-1,-95],[-27,-4],[-3,-1],[0,16],[3,91],[-20,2],[-2,0],[-183,21],[2,-1020]],[[42369,41465],[-34,20],[5,165],[-13,8],[-8,4],[-28,16],[-39,23],[-21,11],[3,88],[-106,56],[-15,8],[4,129],[-67,25],[3,64],[-37,20],[-48,16],[6,374],[-10,15],[-52,16],[-26,8],[-14,4],[0,78],[6,78],[6,49],[10,121],[-64,29]],[[41830,42890],[3,208],[-7,0],[-14,-22],[-16,3],[7,301],[-41,10],[-25,15],[-3,-5],[-2,-63],[-2,-4],[-15,3],[-20,6],[-1,0],[-14,7],[-4,95],[-6,153],[-1,72],[6,178],[13,372],[3,294],[5,440],[0,74],[3,59],[2,75],[2,89],[2,130],[19,32],[13,-1],[10,-2],[3,0],[11,-39],[-2,-60],[121,-60],[11,33],[16,333],[16,559],[37,-4],[0,14],[1,182],[29,-15],[4,11],[2,25],[5,143],[4,5],[63,-31],[23,-11],[2,-7],[-1,-86],[11,-30],[1,-70],[2,-10],[12,-8],[7,344],[4,122],[4,94],[0,60],[0,6],[5,104],[1,35],[-3,74],[-1,10],[-17,34],[-16,-25],[-13,21],[-3,56],[15,84],[13,49],[0,2],[2,68],[-7,66],[-13,89],[-1,2],[1,4],[4,79],[4,-2],[26,-10],[100,-43],[18,-8],[4,-1],[0,45],[21,-5],[1,53],[5,171],[3,73],[51,-18],[56,-21],[2,-7],[27,-11],[37,-8],[0,59],[82,-33],[12,-11],[3,-36],[-1,-41],[2,-131],[118,-44],[30,824],[-7,24],[-10,58],[-4,69],[-2,102],[-6,34],[-3,34],[-22,-27],[-42,-44],[-6,-55],[1,-118],[-34,-29],[-3,90],[-10,35],[-19,52],[2,62],[5,54],[9,138],[2,68],[4,122],[7,-3],[2,36],[9,-1],[9,-50],[25,7],[1,34],[19,5],[1,-161],[46,2],[5,148],[3,43],[0,41],[-2,0],[-3,109],[2,64],[6,162],[2,67],[0,13],[0,4],[-9,11],[-7,-5],[-33,28],[-43,36],[-60,41],[-12,5],[0,21],[2,150],[4,166],[6,-3],[30,-12],[28,-20],[31,-21],[11,443],[92,-4],[57,-2],[4,86],[11,39],[10,62],[1,5],[0,10],[-3,73],[5,82],[0,9],[-5,235],[16,65],[-2,86],[0,3],[-3,101],[-53,54],[0,45],[-8,20],[-15,37],[10,184],[-67,59],[-16,94],[-17,19],[-10,41],[-11,59],[-11,53],[2,70],[-2,77],[-4,56],[8,53],[0,83],[-16,100],[-5,100],[-4,85],[-22,443],[21,68],[47,-56],[20,58],[-16,330],[-29,620],[-85,365],[-10,40],[-8,60],[-12,88],[-4,55],[11,293],[6,98],[12,131],[5,79],[99,1175],[17,203],[-116,599],[7,189],[2,59],[22,-3],[2,85],[-1,188],[3,83],[-12,-2],[-11,28],[-12,131],[34,80],[2,10],[34,-31],[1,30]],[[58367,46247],[0,26],[-4,55],[-3,11],[-3,2],[-13,-6],[-3,-2],[-6,29],[-10,94],[0,7],[0,4],[4,142],[9,54],[1,6],[0,1],[2,20],[0,31],[-1,11],[-7,15],[-9,-2],[-5,-8],[-5,-8],[-4,-1],[-2,0],[-1,4],[-2,7],[-4,30],[0,34],[0,5],[5,59],[0,1],[5,15],[5,4],[5,4],[1,0],[3,-3],[15,-13],[6,9],[2,17],[-2,23],[-14,154],[-1,11],[-2,14],[-4,15],[-5,-1],[-8,-22],[-3,-13],[-1,-1],[-2,-27],[-11,-45],[-8,-20],[-14,-23],[-4,-6],[-1,0],[-6,1],[-57,36],[-7,15],[-5,24],[-2,6],[-1,12],[-5,31],[-4,51],[0,5],[-3,21],[-5,15],[-29,37],[-1,2],[-7,18],[-2,5],[-4,23],[-1,4],[0,38],[4,72],[1,27],[4,27],[3,25],[4,14],[1,2]],[[58186,47803],[14,182],[0,24],[-7,31],[-1,8],[-3,7],[-13,40],[-9,14],[-2,3],[0,1],[-14,-7],[-13,-16],[-7,2],[-9,17],[-12,49],[-1,8],[-4,28],[-1,31],[-2,62],[-9,334],[2,84],[26,100],[4,9],[34,126],[12,74],[29,185],[26,190],[9,82],[1,5],[0,28],[-8,-9],[-52,-71],[-63,-92],[-57,-82],[-62,-80],[-70,-94],[-34,-46],[-42,-55],[-64,-83],[-68,-92],[-27,-31],[-14,-21],[-22,-28],[-126,-167],[-200,-263],[-122,-163],[-93,-121],[-94,113],[-54,67],[-9,14],[-32,50],[-453,722],[-31,72],[-15,34],[-29,69],[-1,3],[-52,122],[-9,8],[-33,27],[-1,0],[-5,-5],[0,-1],[-13,-41],[-2,-7],[-13,-57],[-1,-12],[0,-4],[-2,-8],[-12,-38],[-5,-17],[-6,3],[-4,2],[-2,0],[-4,-6],[-4,-6],[-61,179],[-39,147],[-1,7],[-8,9],[-4,4],[-11,5],[-4,-7],[-19,-38],[-26,-20],[-21,10],[-5,12],[-2,7],[-27,31],[-2,0],[-30,8],[-32,8],[-6,-21],[-2,-5],[-3,-61],[-1,-24],[0,-1],[1,-5],[8,-82],[3,-27],[5,-45],[0,-27],[-1,-61],[0,-15],[-5,-16],[-5,-18],[-1,0],[-10,-12],[-1,1],[-12,5],[-13,6],[-11,29],[-6,28],[-7,35],[-1,7],[-3,33],[0,12],[1,28],[-4,43],[-9,114],[-8,67],[-15,58],[-1,5],[-1,0],[-10,5],[-9,-12],[-40,-128],[-8,-25],[-6,-5],[-8,-23],[-11,-32],[-56,-182],[-9,-29],[-2,-6],[-2,-3],[-9,-13],[-23,-32],[-4,2],[-4,2],[-3,-10],[-3,-11],[-19,-24],[-9,-11],[-11,-22],[-3,-8],[-5,-9],[-2,-7],[-18,-72],[-2,-7],[0,-14],[-4,-73],[0,-6],[1,-17],[5,-57],[-3,-95],[-2,-7],[-4,-14],[-6,0],[-3,-1],[-5,0],[-40,187],[-1,6],[-4,12],[-21,79],[-42,116],[-27,74],[-11,16],[-17,24],[-13,19],[-17,7],[-8,4],[-13,-9],[-1,-1],[-1,-4],[-10,-32],[-4,-13],[-84,-431],[0,-9],[-3,-61],[2,-53],[0,-3],[1,-5],[6,-31],[2,-8],[8,-21],[19,-47],[4,-21],[10,-43],[8,-42],[6,-87],[-2,-14],[-3,-40],[-2,-37],[-3,-58],[0,-34],[4,-63],[8,-39],[1,-3],[6,-26],[5,-18],[8,-34],[1,-7],[1,-23],[1,-14],[0,-25],[-6,-18],[-10,-29],[-3,-8],[-3,-2],[-19,-9],[-4,-2],[-1,1],[-13,6],[-5,2],[-10,4],[-20,41],[-7,27],[-4,24],[-6,34],[-40,217],[-2,12],[-11,33],[-13,45],[-1,4],[-1,1],[-27,5],[-3,0],[-10,-17],[-1,-1],[-4,-7],[-5,-17],[-5,-18],[-25,-60],[-5,1],[-13,2],[-11,2],[-9,53],[-2,7],[-3,18],[-5,143],[0,18],[-10,53],[-16,14],[-6,-21],[-5,-45],[-5,-189],[-1,-15],[-5,-38],[-1,-3],[-17,-46],[-2,-5],[-4,-2],[-25,-16],[-1,0],[-2,5],[-23,70],[-35,71],[-16,43],[-15,42],[-28,111],[-14,56],[-17,66],[-9,36],[-6,24],[-21,78],[-7,17],[-87,24],[-59,2],[-9,-10],[-2,-2],[-5,-5],[-6,-19],[-4,-12],[-6,-17],[-23,-202],[0,-2],[-1,0],[-5,-19],[-9,-30],[-13,-18],[-1,0],[-23,11],[-10,20],[-9,28],[-17,71],[-29,118],[-2,-3],[-2,-3],[-2,-1],[-2,-1],[-15,-6],[-7,-8],[-5,-12],[8,-150],[1,-20],[4,-22],[5,-22],[10,-95],[12,-113],[4,-34],[1,-16],[3,-58],[-3,-93],[0,-1],[-10,-34],[0,-1],[-5,2],[-14,7],[-33,62]],[[54335,47899],[-15,47],[-14,101],[-7,51],[1,90],[-12,23],[-35,74],[-31,63],[-9,19],[-20,41],[-15,-78],[-35,5],[-24,47],[-12,26],[-13,41],[-1,4],[-1,3],[-23,61],[-1,2],[-1,5],[-2,3],[-2,3],[-2,3],[-2,1],[-2,1],[-4,0],[-24,-6],[-10,-1],[-7,17],[-24,91],[-18,86],[-1,5],[-1,6],[-1,102],[-9,123],[-1,7],[-5,26],[-2,11],[-9,10],[-14,16],[-23,74],[-18,79],[-22,10],[-32,14],[-27,-27],[-13,-26],[-7,3],[-32,15],[-1,0],[-23,26],[-32,58],[-25,47],[-17,18],[-21,23],[-8,18],[-9,21],[-48,22],[-15,6],[-2,4],[-15,23],[-11,18],[-31,85],[-50,170],[-14,49],[-18,82],[-1,6],[1,22],[4,128],[3,44]],[[41830,42890],[-108,48],[0,-86],[-5,-121],[-4,1],[-20,3],[5,-116],[-15,3],[-372,74],[-1,-169],[-20,-4],[-16,-294],[-21,6],[-19,71],[-33,24],[0,66],[-21,122],[-3,21],[-7,13],[3,84],[15,25],[2,83],[-54,17],[-1,-46],[-2,-67],[2,-7],[-4,-158],[-38,20],[-1,1],[-1,-27],[-1,-45],[-4,-143],[-3,-3],[-2,-16],[-3,-27],[-4,-156],[-13,6],[6,253],[1,54],[-5,1],[-9,2],[-8,1],[1,-21],[-4,1],[-73,18],[7,379],[-90,28],[6,-373],[-22,6],[-3,-128],[-42,9],[3,132],[3,184],[-20,6],[-4,-181],[-87,32],[3,189],[0,15]],[[40724,42700],[-17,9],[-78,25],[-58,18],[-31,16],[-14,34],[-2,72],[20,10],[2,88],[-7,3],[-86,49],[-17,9],[7,189],[-57,15],[-66,353],[-120,156],[-93,122],[-15,23],[-138,215],[-5,27],[-3,23],[-33,103],[-20,60],[-11,19],[-206,345],[-590,991],[-134,225],[81,998],[-3,3],[-148,160],[-2,-70],[-6,-260],[-24,-147],[-34,18],[-57,32],[3,79],[12,343],[2,58],[-135,73],[3,-302],[0,-20],[-4,-120],[-17,-162],[-3,-15],[-68,-27],[-304,600],[-11,-211],[-30,4],[-48,57],[-70,83],[-43,337],[-350,560],[-117,190],[-231,378],[-591,968],[-639,1044],[-44,73],[-71,117],[-115,185],[-34,54],[-116,184],[-13,21]],[[35725,51184],[21,612],[12,369],[2,76],[14,383],[5,199],[22,758],[2,99],[4,199],[21,734],[8,215],[3,95],[2,73],[25,931],[8,259],[1,39],[7,264],[-49,23],[13,519],[1,40],[3,141],[-7,4],[5,249],[2,122]],[[66604,40554],[1,179],[1,99],[0,99],[-51,3],[-1,-214],[-3,-5],[-49,2],[0,-158],[83,-4],[19,-1]],[[66604,40554],[-1,-257],[0,-12],[-3,-2],[-9,3],[-16,2],[-73,7],[-1,-216],[-22,0],[-30,0],[0,-211],[-138,1],[-115,2],[-2,-121],[0,-306],[-43,-1],[-60,-1],[0,-92],[0,-101],[-1,-154],[0,-77]],[[66090,39018],[-32,3],[-19,-1],[-42,1],[-21,0],[-17,0],[-24,-2],[-39,3],[-13,1],[-38,-2],[-42,3],[-36,2],[-28,3],[-57,3]],[[65682,39032],[-1,79],[0,656],[1,103],[-57,-4],[-12,3],[-11,81],[-15,120],[0,178],[0,378],[0,1056],[13,26],[16,55],[13,59],[17,24],[12,23],[36,135],[-18,91],[-19,39],[-14,143],[49,206],[-1,241],[-45,-1],[-1,268],[-22,84],[-101,326],[-5,16],[-23,74],[-5,15],[3,151],[0,73],[-59,3],[-42,5],[-2,-372],[-1,-61],[-41,5],[-44,5],[-19,2],[-1,-429],[-16,1],[-86,10],[-1,-172],[-2,-263],[-30,3],[-55,3],[-16,1],[2,226],[1,131],[0,80],[-52,7],[0,285],[-1,129],[-89,8],[-5,0],[-135,12],[-27,2],[2,422],[37,-6],[1,107],[1,249],[1,102],[-38,1],[0,438],[0,100],[-41,2],[-17,1],[-15,1],[-53,3],[-54,3],[-17,190],[-15,76],[-34,211],[-9,63],[-10,54],[-16,47],[-13,2]],[[64481,45417],[-68,2],[-57,-91],[-18,-23],[-25,12],[-7,3],[-37,18],[-38,50],[-35,81],[-33,56],[-15,23],[-56,292],[-8,42],[-6,122],[5,165],[27,90],[14,9],[23,37],[3,9],[33,108],[3,23],[9,51],[43,138],[5,38],[5,46],[6,52],[7,188],[18,94],[16,98],[10,64],[1,0],[2,74],[0,13],[-7,139],[-1,10],[-1,14],[-22,127],[-1,5],[-13,58],[-18,21],[-4,7],[-23,39],[-4,5],[0,2],[-4,20],[0,33],[0,3],[0,2],[-5,75],[-3,-15],[-4,-23],[-33,50],[-13,22],[-20,30],[-33,51],[-9,-50],[0,-1],[-3,4],[-4,7],[-7,13],[-46,155],[-2,4],[-7,17],[-12,5],[-3,1],[-5,27],[-23,203],[-8,78],[-3,25],[-17,119],[-8,41],[-2,9],[-9,38],[-3,7],[-2,3],[-10,17],[-6,9],[-3,13],[-10,38],[-28,50],[-3,6],[-7,16],[-3,33],[0,1],[0,9],[-23,89],[-1,2],[-1,2],[-7,14],[-8,-3],[-1,-1],[-17,-21],[-12,-30],[-12,-8],[-30,70],[-18,56],[-1,23],[1,39],[0,1],[0,1],[2,18],[15,61],[2,8],[1,3],[7,16],[4,-1],[1,-1],[8,-12],[15,7],[16,28],[7,35],[1,60],[-1,0],[0,8],[-3,43],[-3,28],[-1,4],[-1,11],[-19,108],[-2,9],[3,10],[16,56],[18,65]],[[69797,53915],[-18,-50],[-13,-41],[-13,7],[-15,31],[-21,75],[-21,130],[-36,152],[-4,-10],[-10,-22],[-4,-9],[-36,14],[-16,-24],[-18,-55],[-12,-81],[-3,-181],[7,-211],[7,-83],[8,-52],[31,-271],[11,-123],[-5,-21],[-6,-27],[-5,-18],[2,-112],[-4,-125],[-6,-53],[-25,-75],[-21,11],[-11,29],[-23,76],[-14,18],[-5,8],[-9,12],[-27,141],[-21,74],[-20,58],[-49,104],[-18,73],[-1,3],[-21,40],[-43,62],[-15,7],[-6,3],[-24,-4],[-37,-46],[-46,-55],[-53,43],[-13,15],[-11,12],[0,1],[-1,3],[-23,112],[-32,197],[-7,-147],[-4,-89],[-23,-481],[-3,-82],[-2,-34],[-1,-33],[-3,-61],[-6,-125],[-10,-215],[-4,-116],[-4,-121],[-3,-109],[-4,-104],[-2,-71],[-3,-96],[-2,-62],[-5,-164],[-4,-90],[-18,-427],[-32,-774],[-4,-96],[-4,-97],[-12,3],[-24,6],[-20,14],[-15,-32],[-17,-36],[-32,-67],[-16,-33],[-115,-239],[-96,-201],[-24,-90],[-55,-183],[-12,-488],[-5,-210],[11,-346],[4,-114],[-24,-75],[12,-74],[22,-142],[19,-109],[-5,-74],[-122,-441],[27,-78],[17,-52],[23,-71],[21,-62],[-61,-372],[-9,-58],[0,-2],[-14,-83],[-1,7],[-101,281],[-25,69],[-31,55],[-46,47],[-7,4],[-31,15],[-15,8],[-16,-12],[-34,-27],[-25,-43],[-24,-76],[-20,-93],[-24,-163],[-13,-153],[-7,-251],[5,-210],[-4,-221],[-22,-212],[-17,-95],[-34,-118],[-23,-41],[-12,-13],[-29,14],[-2,3],[-9,17],[-7,13],[-2,4],[-40,113],[-41,172],[-15,79],[-8,67],[-2,81],[-6,58],[-5,42],[-40,-154],[-84,-390],[-104,-499],[-37,-176],[-11,-53],[-110,-535],[-1,-5],[-13,-63],[-71,-343],[-65,-315],[-63,3],[-122,2],[-19,-68],[-55,-192],[-48,-374],[-6,-124],[-3,-520],[-49,1],[-1,-204],[0,-10],[-13,0],[-38,0],[-2,-210],[-12,0],[-1,-196],[0,-18],[40,-4],[11,-1],[4,1],[8,-2],[53,-9],[0,-151],[-1,-269],[-37,0],[-65,0],[-2,-367],[-104,4]],[[81433,43255],[-2,-76],[17,-65],[5,-89],[2,-24],[7,-36],[15,-70],[10,-46],[-15,-65],[-28,-71],[-16,-36],[-21,-60],[7,-58],[0,-8],[14,-98],[7,-66],[-5,-90],[14,-193],[0,-4],[2,-42],[-1,-6],[-2,-11],[-15,-24],[-9,-41],[-17,-118],[-9,-77],[-4,-65],[-12,-30],[-33,-68],[-18,36],[-48,-130],[-9,-39],[-1,-4],[-6,-71],[-5,-66],[-9,-141],[-47,-118],[-18,-33],[-17,-34],[-32,-31],[-15,-82],[0,-3],[-12,-89],[-45,6],[-23,-44],[-14,-91],[-3,-183],[-1,-142],[-9,-46],[-15,-29],[-9,-143],[3,-89],[-11,-64],[-22,-118],[-10,-70],[-16,-40],[-23,-12],[-13,-31],[-18,-23],[-25,-19],[-16,17],[-8,11],[-18,-29],[-15,-64],[-31,72],[-2,9],[-16,55],[-10,29],[-27,106],[-9,65],[-19,95],[-8,58],[-1,4],[-10,14],[-13,11],[-12,5],[-1,0],[-18,8],[-17,18],[-35,53],[-24,27],[-30,21],[-41,-142],[-23,82],[-11,-18],[-27,-135],[-16,-24],[-25,-53],[-21,17],[-27,-58],[-25,-142],[-17,-135],[-4,-33],[-1,-182],[-7,-89],[-11,-37],[-1,-3],[-11,-48],[0,-37],[-7,-73],[-21,-77],[-21,-116],[-27,-87],[-6,-50],[-16,-116],[-16,-50],[-26,0],[-15,42],[-11,0],[-13,-2],[-15,-71],[-4,-17],[-15,-45],[-15,-125],[-26,12],[-89,-59],[-9,-56],[-7,-96],[-9,-85],[-10,-126],[-19,-148],[-46,-140],[-42,-57],[-38,-26],[-12,-26],[-17,-42],[-17,-50],[-9,-43],[-25,-59],[-18,-79],[-12,-16],[-1,-2],[-12,-42],[-47,-78],[-26,-55],[-10,-99],[-11,-12],[-20,-8],[-15,13],[-5,5],[-7,-17],[-5,-13],[-8,0],[-11,-1],[-8,-24],[-37,-22],[-28,41],[-35,25],[-29,17],[-63,29],[-9,-141],[-1,-14],[-5,-31],[-3,-11],[-13,-37],[-26,-85],[-1,-48],[-4,-84],[-1,-17],[-13,-59],[-12,-30],[-19,-27],[-1,-142],[-6,-89],[-24,-92],[-11,-31],[-24,-22],[-3,-5],[-15,-131],[-3,-37],[-59,-88],[-35,-39],[-7,-11],[-15,-68],[1,-139],[-2,-17],[-13,-57],[-26,-65],[-12,-22],[-21,-41],[4,-215],[-13,-114],[-12,-73],[-3,-37],[-7,-67],[-6,-65],[-7,-95],[-1,-8],[-13,-72],[-12,-116],[-2,-4],[-1,-14],[-34,-54],[-12,-14],[-6,-12],[-13,-9],[-11,0],[-17,-12],[-15,-40],[-13,-42],[-17,-78],[-12,-61],[-9,3],[-76,3],[-78,-3],[-59,-11],[-33,164],[-40,-23],[-52,0],[-53,-28],[-23,0],[-68,57],[-20,-17],[-47,-40],[-9,-8],[-54,-17],[-13,14],[-24,29],[-15,-6],[-30,-8],[-53,30],[-26,37],[-15,-79],[-23,-9],[-3,-1],[-33,64],[-20,-42],[-25,-47],[-28,-28],[-14,-13],[-24,-42],[-25,11],[-15,7],[-18,65],[-5,105],[-3,67],[-21,93],[-24,107],[-29,153],[-26,106],[-29,24],[-33,183],[-35,65],[-46,5],[-5,-30],[-35,-155],[-35,-135],[-35,-71],[-27,-29],[-13,-8],[-35,-126],[-13,-29],[-23,-56],[-22,-39],[-1,0],[-27,71],[-27,66],[-19,-145],[-10,-43],[-29,-27],[-13,-47],[-22,11],[-9,-1],[-22,-9],[-14,59],[-13,-10],[-1,-1],[-19,47],[-15,23],[-12,6],[-15,24],[-8,71],[-24,20],[-10,-1],[-14,-40],[-24,-29],[-6,-12],[-28,37],[0,1]],[[76727,34578],[-1,543],[0,460],[-2,1153],[0,632],[5,512],[0,191],[0,303],[0,165],[0,368],[0,153],[0,304],[0,769],[0,174],[0,139],[0,89],[0,18],[0,207],[1,18],[-1,151],[0,188],[0,314],[0,314],[-13,-61],[-10,-59],[-7,-51],[-27,-68],[-26,-30],[-27,-30],[-22,-3],[-28,86],[-19,46],[-9,37],[-6,144],[-5,84],[2,62],[-8,134],[-8,74],[5,55],[-11,47],[0,5],[-8,122],[4,108],[10,93],[12,92],[-3,131],[-10,57],[-9,55],[-28,-9],[-25,17],[-17,-22],[-22,-25],[-14,-46],[-30,-3],[-17,-45],[-15,37],[-23,-2],[-20,56],[-20,10],[-14,65],[-13,28],[-9,46],[24,86],[4,82],[10,50],[0,71],[6,95],[1,70],[-18,12],[-15,10],[-18,20],[-19,13],[-16,187],[5,102],[7,93],[-14,33],[-29,-18],[-17,-7],[-15,37],[-25,103],[-3,93],[-26,1000],[-33,23],[-15,50],[-17,50],[1,74],[3,98],[-19,-19],[-17,17],[-14,13],[-13,60],[-1,90],[2,63],[-6,74],[7,77],[13,29],[5,83],[16,64],[7,62],[-18,-14],[-13,-27],[-12,79],[-16,36],[-10,118],[2,89],[-28,282],[-44,446],[-9,91],[-17,165],[-26,259],[-10,100],[-45,458],[5,156],[6,53],[48,184],[31,103],[-3,69],[11,161],[-12,44],[-8,-57],[-13,6],[-12,-26],[-3,-66],[-12,-39],[-15,21],[-20,39],[-10,-34],[-13,-8],[-27,141],[-31,258],[-22,186],[-14,-58],[-49,456],[-27,257],[-72,701],[-12,111],[-14,134],[37,105],[-17,106],[-36,214],[-11,22],[-36,-84],[-5,54],[-7,54],[-6,46],[-9,48],[-33,-30],[-13,91],[13,62],[25,67],[-11,100],[26,-55],[-7,68],[-5,54],[-6,52],[-10,94],[-12,109],[-15,149],[2,83],[-6,70],[1,253],[1,72],[2,171],[-14,50],[-30,160],[-1,7],[-7,73],[-24,-1],[-16,15],[-9,36],[-8,51],[-8,75]],[[16089,48040],[28,-186],[8,-71],[3,-21],[17,-145],[0,-1],[1,2],[4,44],[3,8],[2,0],[7,-55],[3,-14],[2,-4],[7,7],[3,11],[1,6],[2,18],[2,-1],[68,-231],[3,-1],[54,-151],[21,17],[5,7],[7,9],[0,1],[17,-46],[-14,-64],[-28,-126],[-69,-312],[-78,-352],[-34,-153],[-10,-44],[-15,-66],[-11,-53],[-48,-215],[-133,-607],[-87,-392],[-40,-175],[-84,-376],[-82,-365],[-18,-81],[-17,-81],[-102,-453],[-35,-163],[-59,-260],[-91,-412],[-44,-195],[-50,-224],[-27,-124],[-22,-93],[-12,-51],[0,-1],[-27,-124],[-83,-375],[-17,-75],[-31,-138],[-27,-124],[-31,-143],[-29,-128],[-7,-34],[-11,-54],[-24,23],[-15,16],[-46,200],[-86,204],[-56,-53],[-48,115],[-11,27],[-70,88],[-67,-57],[-26,-23],[-12,-11],[-16,210],[-13,140],[-3,57],[-1,45],[-4,93],[-2,82],[-46,73],[-20,30]],[[14318,41869],[-12,-17],[-24,76],[-39,0],[-36,212],[-46,-24],[3,-64],[-11,-51],[-12,-20],[-12,20],[-19,21],[-10,62],[-9,100],[-70,101],[-39,55],[-14,21],[-27,7],[-1,-65],[-64,-31],[-21,111],[-47,-82],[-34,-59],[-11,57],[-16,85],[-10,51],[-24,119],[-23,98],[-12,55],[-18,78],[-23,98],[-11,44],[-26,92],[-11,40],[-46,172],[-18,67],[-46,168],[-12,35],[-76,231],[-80,242],[-19,46],[-65,163],[-11,27],[-87,214],[-11,24],[-58,119],[-42,90],[-38,72],[-29,55],[-17,30],[-8,12],[-30,47],[-66,100],[-75,112],[-30,33],[-20,21],[-111,112],[-14,14],[-14,15],[-25,19],[-14,8],[-21,14],[-30,20],[-13,7],[-14,8],[-46,28],[-56,33],[-80,25],[-32,9],[-86,32],[-119,42],[-51,201],[-9,61],[-39,164],[-25,106],[-11,108],[-11,102],[0,1],[-11,104],[-21,51],[-48,185],[-57,3],[-11,-61],[-14,-46],[-13,26],[0,107],[-18,18],[-9,-45],[1,-79],[-13,22],[-32,113],[-16,6],[-13,-42],[4,-84],[-19,-21],[-12,75],[-12,58],[-11,-46],[-14,-10],[-9,35],[-22,86],[-55,215],[-21,83],[-18,89],[-23,106],[-14,86],[-15,88],[1,71],[-14,38],[-7,-7],[-38,-36],[-15,35],[-25,45],[-3,6],[-48,84],[-20,48],[-34,79],[0,1],[-15,73],[-3,19],[-21,111],[-5,35],[-2,10],[20,93],[13,5],[11,53],[-8,58],[-11,57],[-1,77],[-20,74],[-14,51],[0,73],[1,92],[-11,34],[-8,52],[-12,74],[-10,67],[1,14],[-12,11],[-20,20],[-13,49],[-14,113],[0,161]],[[11011,49230],[0,1],[2,103],[-13,27],[-49,186],[5,100],[7,132],[21,142],[4,24],[16,105],[1,83],[-10,52],[-1,67],[-4,73],[10,30],[5,73],[-18,51],[-8,19],[0,19],[26,132],[11,-20],[2,-92],[15,-7],[0,96],[4,83],[1,66],[14,8],[11,50],[-3,7],[-11,82],[-4,35],[1,60],[7,54],[15,46],[4,5],[6,-1],[5,135],[0,1],[22,-5],[9,54],[14,92],[22,151],[-5,59],[-8,41],[6,79],[14,45],[21,27],[18,28],[9,71],[-19,75],[-7,82],[0,99],[3,105],[5,83],[9,145],[0,7],[1,9],[-9,102],[-11,41],[-19,-3],[-11,13],[11,52],[11,89],[1,97],[-3,77]],[[35725,51184],[-12,-438],[-4,-153],[0,-1],[-14,-477],[-5,-172],[-8,-306],[-5,-233],[-3,-91],[0,-2],[-21,-725],[-2,-61],[-7,-243],[-15,-518],[-11,-396],[-13,-538],[-4,-121],[-17,-639],[-3,-90],[-4,-141],[-6,-154],[-9,-345],[-2,-89],[-33,-880],[-18,-486],[-4,-132],[-13,-10],[-14,-12],[-12,-10],[-29,-20],[-17,-28],[-20,-96],[-17,-54],[-14,-10],[-15,-2],[-2,-4],[-19,-22],[-19,-26],[-29,23],[-15,4],[-44,3],[-14,-8],[-17,3],[-13,-6],[-6,-9],[-19,-33],[-2,-10],[-9,-40],[8,-43],[11,-25],[10,-25],[3,-5],[14,-25],[39,-46],[4,-5],[39,-43],[4,-4],[1,-4],[18,-59],[10,-102],[8,-110],[1,-98],[0,-31],[0,-1],[-5,-113],[-25,-100],[-9,-54],[-18,-186],[-9,-47],[-9,-48],[-13,-51],[-5,-18],[-18,-66],[-1,-2],[-1,-2],[-20,-29],[-4,-3],[-40,-27],[-13,3],[-52,38],[-4,0],[-21,0],[-29,2],[-18,6],[-17,-10],[-9,16],[-23,38],[-31,10],[-39,-16],[-28,-23],[-16,-23],[-24,-46],[-17,-30],[-5,-27],[-7,-38],[-5,-42],[-6,-51],[-4,-77],[-2,-34],[-1,0],[-5,-25],[-4,-21],[-12,-22],[-10,-57],[-16,8],[-13,-43],[-8,-48],[-12,0],[-13,9],[-20,-44],[-7,-97],[-6,-79],[-10,-150],[-50,-168],[-59,-193],[9,-114],[7,-49],[-1,-91],[-1,-7],[-7,-56],[-7,-49],[-2,-113],[-2,-73],[-7,-53],[-7,-84],[-3,-45],[-7,-57],[-32,-143],[-13,-40],[-14,0],[-13,20],[-14,51],[-18,-14],[-41,-60],[-23,-9],[-14,26],[-9,41],[-12,24]],[[34292,39885],[-87,37],[-19,-34],[-27,-47],[-7,-33],[-14,-35],[-40,-7],[-4,11],[-1,12],[-11,119],[-53,-3],[-72,-197],[-156,-607],[-95,-267],[-30,-94],[-114,-329],[-23,-65],[-11,-33],[-50,-142],[-104,-306],[-108,-98],[-241,-215],[-34,-74],[-8,-17],[-45,-96],[-21,-44],[-15,-31],[-29,39],[-20,28],[-190,271],[-177,249],[-35,60],[-15,12],[-34,46],[-62,76],[-46,-24],[-42,-21],[-33,-17],[-15,-7],[-71,-37],[-2,-1],[-41,-21],[3,90],[-90,37],[-16,7],[-34,15],[-44,47],[-50,117],[-63,406],[-85,153],[-15,139],[-16,145],[-20,219],[-24,165],[-100,115],[-103,-56],[-92,-403],[-58,-70],[-17,-58],[-41,-138],[-17,-197],[-14,-175],[-18,-55],[-110,-88],[-42,-23],[-4,-20],[-7,-37],[9,-49],[27,-65],[15,-45],[11,-60],[3,-183],[-6,-264],[0,-68],[-52,9],[-39,-193],[-2,-4],[-9,13],[9,265],[-14,12],[-18,0],[-35,-92],[-8,-41],[-2,-143],[-24,-115],[-35,37],[-11,-20],[-70,-194],[-39,-111],[-46,-7],[-67,-11]],[[30610,36949],[-30,238],[-70,288],[-111,460],[-25,84],[-224,629],[-118,436],[-206,501],[-23,55],[-51,151],[-75,219],[-1,2],[-54,158],[25,813],[5,160],[24,809],[0,1],[4,135],[11,347],[137,-50],[23,163],[153,-38],[5,285],[3,99],[-60,-1],[-19,-1],[-2,24],[-2,24],[-12,152],[-19,247],[-51,668],[-29,19],[-3,-92],[-4,-125],[-64,37],[14,501],[3,79],[4,158],[15,528],[3,138],[20,705],[17,609],[18,626],[14,500],[5,166],[27,983],[20,697],[6,203],[9,313],[5,186],[0,2],[7,242]],[[51076,50536],[-4,-196],[-1,-342],[-116,-51],[-13,6],[-13,25],[-40,-100],[-36,-86],[-98,-239],[-17,-69],[-42,-276],[-44,-283],[0,-2],[-11,-67],[-7,-49],[-61,-391],[-48,-312],[-101,-687],[12,-23],[19,-6],[38,-12],[-1,-44],[0,-40],[13,0],[0,-2],[-1,-185],[-16,18],[-39,0],[-6,-59],[-11,-32],[-10,37],[-15,10],[-236,-1164],[-33,-215],[-41,-245],[-1,-3],[-28,-180],[-3,-21],[-52,-347],[-77,-496],[-11,-73],[-34,19],[-6,-196],[23,-31],[-5,-160],[-10,-297],[-23,-703],[-22,9],[-54,24],[-14,5],[-3,-123],[50,-46],[-3,-196],[41,-57],[22,-31],[16,-21],[-1,-99],[-1,-309],[-49,21],[-3,-53],[-15,-142],[26,-189],[0,-187],[0,-410],[5,-67],[9,-115],[26,-344],[18,-234],[5,-77],[-17,6],[-4,-121],[19,-13],[-3,-132],[5,-123]],[[49923,39943],[-102,21],[-58,-386],[-130,-150],[-255,-14],[-25,-138],[-113,-14],[-24,-12],[-86,-41],[-150,-71],[-98,-47],[-157,69],[-364,831],[-53,15],[-85,29],[-17,10],[-24,-4],[-69,-13],[-20,14],[-53,154],[-33,152],[-120,563],[-51,241],[-19,93],[-134,373],[-18,324],[-11,43],[-31,20],[-19,-267],[-30,64],[-14,137],[-6,87],[-7,104],[-4,130],[-3,65],[-17,100],[-34,40],[-22,25],[-37,-83],[-20,60],[-21,67],[-30,-14]],[[11011,49230],[-34,32],[-48,54],[-13,12],[-124,53],[-102,45],[-61,22],[-27,18],[-120,67],[-3,-119],[-3,-100],[-3,-73],[-3,-79],[-21,-118],[-7,-148],[-1,-108],[-11,-142],[-7,-68],[-34,-129],[-23,-87],[-22,-12],[-17,-38],[-8,-64],[-31,-96],[-12,-97],[-15,-164],[2,-135],[2,-62],[-7,-86],[2,-60],[-7,-54],[-16,-55],[-21,-18],[-16,-13],[-11,-50],[-8,-68],[-32,-91],[-12,-95],[-7,-61],[-2,-58],[3,-62],[3,-78],[4,-62],[1,-9],[-2,-67],[-9,-81],[-1,-77],[3,-74],[-8,-50],[-11,-42],[-16,-38],[-17,-34],[-14,3],[-18,-124],[2,-193],[0,-70],[-2,-179],[-1,-133],[-1,-289],[-1,-75],[0,-74],[-2,-65],[12,-14],[134,-6],[-3,-428],[-26,-1],[-23,-1],[-3,-68],[0,-80],[-2,-349],[0,-106],[-22,-251],[-18,-222],[-21,-240],[-15,-174],[-7,-94],[-13,-166],[-1,-1],[-19,-231],[-28,-338],[-11,-123],[-52,-631],[-28,-321],[-61,1],[-37,1],[-32,7],[-24,0],[-3,-76],[-6,-803],[-2,-351],[-2,-282],[0,-109],[-1,-101],[-3,-330],[-2,-329],[-2,-152],[0,-277],[-2,-222],[-2,-367],[-5,-153],[-2,-214],[-4,-416],[-5,-525],[-4,-458],[-47,-12],[-47,-38],[-7,-3],[-1,0],[-11,12],[-15,-10],[-9,-6],[-12,-16],[-1,-2],[-1,-2],[-5,-12],[-10,-31],[-1,-5],[-9,-42],[-41,-182],[0,-3],[-1,-1],[-48,-187],[-6,-3],[-5,-11],[-1,-1],[-4,-27],[-5,-55],[0,-11],[2,-7],[1,-2],[6,-10],[-4,-61],[-48,-45],[-35,-41],[-3,-4],[-8,-28]],[[9320,35265],[-34,2],[-53,-7],[-5,3],[-7,15],[-9,58],[-4,55],[0,30],[4,30],[6,33],[3,32],[0,1],[0,63],[-2,89],[-3,18],[-13,23],[-6,1],[-36,5],[-2,1],[-2,0],[-26,9],[-10,17],[-10,35],[-4,32],[-1,22],[0,25],[3,21],[5,21],[11,27],[3,16],[1,16],[1,3],[0,27],[-1,33],[-5,42],[-3,20],[-18,63],[-4,7],[-20,-22],[-29,-34],[-10,1],[7,140],[0,10],[0,32],[-1,22],[-8,34],[-9,11],[-8,-10],[-5,-13],[-9,-55],[-4,-24],[-4,-13],[-48,-81],[-7,-5],[-6,19],[0,18],[23,198],[6,31],[0,1],[0,1],[-11,135],[-42,106],[-14,35],[-4,-3],[-23,-31],[-13,-85],[0,-5],[-4,-12],[-4,4],[-14,36],[-9,38],[-4,27],[-1,14],[-1,43],[5,42],[10,62],[2,29],[0,27],[-1,22],[-13,60],[-3,9],[-26,22],[-3,-7],[-3,-14],[0,-58],[3,-16],[1,-19],[-4,-52],[-1,-2],[-5,-23],[-6,-20],[0,-1],[-13,-20],[-9,-10],[-6,14],[-5,32],[-1,23],[4,77],[-5,23],[-3,1],[-6,-11],[-7,-47],[-1,-55],[7,-101],[1,-13],[-4,-28],[-3,-9],[-5,2],[-7,15],[-9,38],[0,15],[2,65],[0,75],[0,122],[-3,27],[-3,17],[-5,10],[-8,3],[-2,1],[-12,-5],[-7,-18],[-5,47],[-11,115],[-14,31],[-6,0],[-7,-11],[-16,-40],[-10,-12],[-7,0],[-71,58],[-2,3],[-1,1],[-6,12],[-7,27],[-5,44],[-9,72],[-19,-60],[-12,-43],[-33,118],[-1,3],[-26,72],[-47,281],[-29,203],[0,2],[-17,24],[-24,60],[-16,47],[-42,100],[-4,5],[-10,-8],[-3,-22],[-3,-16],[-1,-5],[-10,-25],[-16,13],[-4,-36],[-13,-136],[11,-21],[4,-18],[1,-3],[1,-25],[1,-30],[-2,-17],[-2,-10],[-4,-8],[-6,-3],[-10,23],[-26,138],[-23,122],[15,157],[3,26],[-22,38],[-10,34],[-4,39],[16,118],[0,1],[-21,63],[-6,18],[-26,81],[-6,-43],[-7,-50],[-6,-44],[-8,-6],[-7,23],[-1,12],[-6,220],[1,17],[3,18],[3,5],[1,2],[18,-10],[5,13],[7,52],[2,41],[0,27],[-3,17],[-5,4],[-13,-9],[-12,2],[-16,29],[-3,21],[-2,76],[-4,11],[-7,3],[-21,9],[-9,13],[-6,17],[-2,13],[-1,23],[4,15],[3,5],[19,2],[2,2],[4,6],[-1,24],[-9,20],[-5,11],[-16,28],[-19,98],[-31,9],[-56,-11],[-22,-39],[-7,-12],[6,-64],[19,-202],[-10,-1],[-21,1],[-7,3],[-23,12],[-19,32],[-16,54],[-21,-96],[-30,56],[-10,13],[-38,50],[0,3],[-1,2],[-25,58],[-1,-89],[0,-48],[-4,-35],[-6,-26],[-6,-15],[-5,-7],[-4,10],[-6,31],[-1,5],[-4,7],[-5,-7],[1,-31],[0,-51],[9,-157],[9,-51],[11,-27],[3,-18],[0,-18],[-5,-33],[-5,-12],[-16,-26],[0,-46],[-12,-73],[-8,-36],[-15,-37],[-10,-33],[-3,-29],[-44,-114],[-3,-7],[-5,0],[-4,8],[-4,24],[-9,72],[-5,63],[0,12],[-5,27],[-9,29],[-17,23],[-9,-5],[-1,-10],[0,-17],[-29,-34],[-5,-6],[-4,17],[-6,44],[-2,70],[-2,66],[-3,35],[-7,28],[-10,26],[-1,2],[-13,20],[-8,6],[-16,-1],[-4,-7],[-18,-161],[0,-2],[0,-37],[1,-43],[-11,-12],[-14,173],[-8,94],[-25,-67],[0,-1],[-1,-64],[-1,-16],[-6,-14],[-28,-39],[-19,-25],[-37,97],[-8,22],[-5,14],[-1,12],[0,14],[0,1],[5,90],[2,22],[2,2],[1,38],[0,53],[-9,61],[-7,45],[-6,23],[-8,11],[-6,3],[-96,-165],[-11,-31],[-24,-127],[-10,1],[-6,4],[-24,53],[-9,12],[-7,-3],[-7,-14],[-15,-68],[-1,-4],[-7,-14],[-14,-5],[-20,-28],[-6,3],[-5,11],[-45,98],[-8,8],[-15,-1],[-27,-18],[-7,-13],[-3,-12],[-1,-15],[0,-52],[5,-81],[-2,-40],[-3,-15],[-5,1],[-5,12],[-25,91],[-6,31],[0,25],[14,110],[3,15],[4,1],[14,-5],[0,43],[-3,80],[-4,101],[-7,117],[-45,46],[-10,-54],[-40,-181],[-26,-223],[0,-23],[-4,-11],[-9,-1],[-3,12],[-5,40],[-4,49],[0,40],[8,126],[-3,90],[-3,21],[-4,6],[-12,8],[-43,14],[-8,0],[-8,1],[-32,7],[-13,6],[-4,10],[-2,16],[0,15],[0,10],[5,16],[0,1],[6,13],[1,9],[-1,22],[-2,11],[-21,53],[-12,9],[-44,41],[-6,0],[-3,-7],[-3,-17],[0,-22],[4,-54],[4,-76],[0,-36],[-2,-62],[-8,-128],[-5,-45],[-3,-12],[-5,-5],[-5,20],[-9,89],[-20,93],[-6,19],[-7,-5],[-3,-159],[-1,-36],[-14,-145],[-44,-99],[-11,-10],[-33,-7],[-37,-13],[-5,-4],[-11,-31],[-6,-29],[-10,-88],[-5,-10],[-29,-15],[-64,-31],[-8,0],[0,2],[-12,41],[-30,131],[0,2],[-2,92],[1,40],[-33,-184],[-5,-26],[0,-2],[0,-38],[-20,-163],[0,-1],[-50,-219],[0,-1],[-19,-42],[-15,-24],[-21,-19],[-8,-28],[-4,-21],[-4,-40],[1,-51],[3,-17],[5,-16],[25,-31],[1,-1],[5,-21],[2,-31],[-1,-17],[0,-1],[-1,-18],[-3,-24],[-29,-115],[-1,-4],[0,-1],[-4,-10],[-4,-5],[-5,5],[0,2],[-21,110],[-55,179],[-4,8],[-9,-8],[-13,-34],[-5,-19],[-6,-38],[-7,-60],[-4,-44],[0,-1],[0,-2],[0,-90],[2,-31],[5,-31],[5,-24],[-34,-123],[-61,-109],[-6,-19],[1,-126],[12,-264],[2,-23],[0,-4],[18,-146],[1,-69],[-1,-16],[-2,-14],[-7,-15],[-33,-32],[-13,-3],[-6,14],[-11,40],[-36,-21],[-51,-85],[-5,-11],[-5,-1],[-3,12],[-2,19],[1,120],[-5,9],[-39,23],[-21,13],[-7,-2],[-3,-11],[2,-80],[1,-95],[1,-22],[1,-9],[0,-14],[2,-31],[5,-37],[7,-56],[1,-11],[2,-12],[9,-33],[2,-13],[0,-21],[-112,-347],[-7,-18],[-17,-2],[-2,4],[-2,4],[-9,43],[-10,11],[-6,-2],[-6,-10],[-7,-30],[-26,-197],[0,-22],[2,-26],[6,-72],[0,-43],[-3,-19],[-6,-10],[-8,-1],[-19,31],[-25,130],[0,3],[-13,55],[-4,6],[-22,-10],[-7,-19],[-4,-21],[-3,-29],[-2,-19],[-7,-106],[0,-128],[-4,-65],[-4,-13],[-5,-5],[-9,0],[-4,5],[-7,30],[-3,40],[2,119],[-1,13],[-8,30],[-4,7],[-41,42],[-27,9],[-28,-36],[-33,-69],[-13,-80],[5,-56],[18,-45],[19,-66],[7,-54],[5,-97],[-6,-66],[-13,-46],[-25,-49],[-27,-90],[-9,-68],[-9,-107],[4,-64],[7,-51],[5,-72],[-1,-75],[-5,-74],[-10,-116],[-52,-665],[-3,-47],[-3,-44],[-9,-83],[-19,-141],[-17,-101],[-20,-91],[-1,-5],[-11,-44],[-11,-36],[-25,-74],[-16,-42],[-36,-90],[-6,-15]],[[4626,32735],[-33,-26],[-7,45],[11,95],[21,247],[-10,205],[-42,133],[-91,39],[-83,81],[-60,138],[-77,143],[-64,414],[-42,368],[-64,607],[-16,234],[-5,188],[20,234],[46,311],[78,302],[83,191],[301,720],[152,-67],[54,-23],[24,80],[124,319],[20,44],[40,87],[64,100],[9,14],[12,88],[22,43],[7,5],[27,-25],[29,43],[20,67],[24,87],[4,20],[1,13],[3,26],[12,145],[42,488],[18,401],[-9,526],[-45,389],[-47,182],[-38,58],[-22,36],[-107,-195],[-135,-743],[-12,-31],[-23,-61],[-71,-60],[-71,-60],[-147,142],[-126,180],[-162,663],[-50,464],[-39,172],[-9,40],[-98,683],[-36,1959],[56,727],[139,363],[113,404],[256,604],[37,15],[262,-293],[49,-624],[8,-98],[119,101],[147,100],[59,304],[54,279],[136,-52],[140,90],[139,411],[37,231],[54,285],[37,197],[26,426],[32,700],[152,642],[180,242],[88,54],[190,-280],[79,24],[113,172],[16,23],[119,341],[69,194],[31,189],[16,136],[6,102],[2,361],[-67,314],[-21,80],[-108,266],[-14,50],[-19,69],[-23,81],[-53,169],[-62,120],[-18,20],[-56,104],[-73,197],[-159,457],[-38,178],[-24,112],[-7,135],[-3,170],[8,486],[11,212],[21,208],[15,107],[19,91],[24,102],[29,121],[144,530],[2,2],[59,70],[67,-116],[29,-51],[138,-129],[80,-76],[190,-528],[88,-316],[58,227],[17,-89],[38,-193],[40,-82],[46,-62],[33,1],[12,0],[91,145],[39,105],[4,12],[60,323],[19,101],[28,556]],[[66806,36857],[-35,1],[-6,0],[4,234],[-82,-1],[-87,-1],[0,276],[-1,178],[46,-1],[110,-2],[1,-42],[32,-2],[19,-1]],[[66807,37496],[1,-88],[0,-98],[-1,-272],[0,-2],[-1,-179]],[[70918,48497],[-28,-64],[-6,-4],[-23,-76],[-25,-145],[-5,-18],[-7,-25],[-7,-283],[0,-56],[4,-265],[22,-418],[-2,-70],[-15,-160],[-55,-354],[-7,-84],[1,-140],[29,-7],[3,-4],[14,-16],[13,-23],[15,-25],[72,-73],[40,-48],[45,-151],[17,-59],[17,-58],[53,-179],[-24,-214],[-58,-227],[-40,-157],[-15,1],[-34,-236],[-7,-52],[-7,-57],[-7,-98],[-13,-149],[-7,-74],[0,-4],[-9,-107],[-7,-72],[-5,-58],[3,-74],[7,-191],[3,-126],[-9,-291],[-8,-60],[-2,-176],[-2,-221],[43,-312],[48,-341],[27,-198],[23,-167],[-6,-167],[-11,-309],[15,-243],[8,-59],[10,-63],[14,-97],[48,-338],[21,-80],[51,-199],[22,0],[28,-1],[17,0],[26,-87],[9,-27],[10,-31],[13,-40],[20,-70],[4,-13],[15,-172],[2,-69],[-19,-56],[-31,-66],[32,-368],[-5,-57],[5,-134],[0,-5],[4,-85],[-39,-81],[-46,-109],[-10,-35],[-11,-47],[-15,-71],[-6,-340],[-72,-492],[-47,-143],[-23,-64],[-27,-64],[-11,-28],[-174,-415],[-74,-178],[-33,-80],[-11,-9],[-4,-3],[-19,-16]],[[70663,37020],[-16,145],[-15,138],[-8,82],[-10,91],[-29,-15],[-12,-6],[-37,-20],[-15,-7],[-4,-3],[-38,-20],[-107,-55],[-46,-25],[-22,-11],[-7,-4],[-16,-9],[-91,29],[-54,27],[-28,-41],[-72,-59],[-41,4],[-27,6],[-11,105],[-4,40],[-4,34],[-18,119],[4,126],[16,342],[11,98],[12,228],[2,52],[-6,72],[-8,92],[-13,15],[-7,-10],[-38,-70],[-19,-122],[-4,-52],[-14,-8],[-13,43],[-33,106],[-2,0],[-12,1],[-131,10],[-93,7],[1,332],[0,43],[-11,-1],[-93,-1],[0,61],[-1,0],[-77,1],[25,388],[2,39],[8,3],[40,17],[3,74],[0,175],[-6,17],[-8,0],[-3,-6],[-3,0],[-84,3],[1,158],[-103,8],[-4,6],[-12,81],[-38,28],[-48,35],[1,425],[0,270],[-104,3],[0,-253],[0,-74],[-1,-97],[-5,0],[-33,2],[-60,3],[-37,3],[-13,2],[-55,2],[-40,1],[-19,-1],[-71,0],[-26,0],[0,-156],[1,-266],[33,-3],[16,0],[0,-118],[0,-92],[-35,1],[-67,2],[0,-151],[-1,-211],[0,-61],[-1,-6],[-36,-2],[-29,-7],[-18,0],[-21,0],[0,-211],[-36,0],[0,-103],[-38,-10],[-28,-7],[0,-91],[-95,9],[-111,11],[1,259],[0,59],[0,318],[-99,11],[0,204],[49,3],[-26,339],[9,24],[-3,30],[-29,252],[-29,-1],[0,11],[-15,47],[-2,4],[-1,3],[-23,69],[-3,5],[-2,-16],[-17,-146],[-21,-180],[-10,1],[-9,12],[-20,58],[-3,8],[-38,68],[-37,-3],[-1,452],[-11,1],[-2,-16],[-3,-5],[-63,2],[-6,-11],[-16,-46],[-31,-3],[1,-181],[25,-1],[-1,-113],[-11,0],[-131,-1],[-15,-4],[-18,-5],[-15,0],[-5,0],[-11,1],[-42,-1],[0,-349],[0,-32],[0,-30],[-5,-2],[-4,-1],[-24,-8],[-15,-8],[-16,-2],[-26,-2],[-30,-1],[-44,1],[-71,1],[-14,-18],[-3,-1],[-25,10],[-3,1],[-20,5],[-14,-1],[-27,0],[-7,-169],[-95,-4],[1,173],[-42,9],[0,102],[-12,3],[1,321],[-48,7],[-1,-169],[-1,-259],[-2,-433],[-25,2],[-18,0],[-50,2],[-44,-1],[-66,4],[-4,-437],[106,3],[0,-106],[15,0],[20,-1],[5,0],[8,-4],[0,-158],[-49,1],[0,-17],[-1,-152],[35,6],[21,-11],[1,-422],[52,0],[25,0],[10,0],[9,0],[0,-15],[-1,-99],[-6,-60],[-15,-58],[1,-65],[-11,-78],[-1,-106],[0,-47],[-15,-52],[-16,-1],[-91,-3],[0,78],[-4,23],[-23,113],[-15,-4],[0,68],[-98,-1]],[[66767,37824],[-2,232],[-59,0],[0,78],[-33,7],[-16,244],[-42,242],[-12,-65],[-17,52],[-55,172],[-15,50],[-17,-13],[0,-61],[-2,-186],[-12,0],[-88,3],[0,-344],[0,-88],[-19,1],[-85,6],[0,204],[-26,-1],[-128,-6],[-47,-2],[0,84],[-1,193],[0,194],[-1,198]],[[76727,34578],[-25,19],[-12,-7],[-13,0],[-16,-7],[-20,4],[-20,-13],[-11,-6],[-19,28],[-11,30],[-14,6],[-29,5],[-15,-40],[-2,-8],[-36,-35],[-17,0],[-24,-23],[-1,-1],[-12,-29],[-17,54],[-12,-7],[-21,-5],[-25,106],[-17,-7],[-3,-24],[-10,-87],[-33,-44],[-22,14],[-15,37],[-18,1],[-24,-11],[-24,-92],[-36,-28],[-5,-29],[-16,-91],[-30,-23],[-22,12],[-12,-25],[-41,-98],[-12,35],[-12,0],[-13,8],[-34,86],[-1,-1],[-16,-24],[-17,-32],[-19,86],[-15,47],[-3,-4],[-16,-21],[-33,-72],[-10,-45],[-11,-26],[-34,-19],[-22,-120],[-13,-22],[-1,-1],[-7,71],[-13,6],[-82,147],[-32,-64],[-17,-12],[-17,24],[-4,5],[-19,-77],[-84,-2],[-13,-239],[-87,-411],[-15,-1],[-24,-37],[-27,-102],[-6,-54],[-23,-39],[-11,-17],[-16,-21],[-36,-34],[-20,-65],[-33,-187],[-13,9],[-34,4],[-67,-287],[-6,-61],[-7,-62],[-153,-512],[-17,-62],[-11,-43],[-22,47],[-12,1],[-40,5],[-28,-39],[-18,-42],[-50,-108],[-39,-3],[-57,-132],[-27,46],[-34,59],[-21,24],[-17,18],[-14,3],[-10,2],[-2,-2],[-13,-25],[-17,-9],[-18,1],[-21,-5],[-12,-15],[-25,-31],[-21,26],[-9,14],[-4,1],[-13,4],[-26,-82],[-39,-42],[-20,-18],[-29,-94],[-9,-82],[-11,-177],[-12,-78],[-33,-208],[-23,-145],[-22,-142],[-11,-43],[-5,-7],[-25,-20],[-16,-114],[-10,-22],[-12,-43],[-8,-43],[-18,-74],[-4,-38],[12,-101],[0,-3],[1,-76],[0,-3],[-1,-12],[-4,-38],[-13,-82],[-11,-28],[-11,-34],[-2,-4],[-22,-70],[-4,-54],[-6,-68],[-4,-36],[-3,-27],[-5,-41],[-5,-26],[-7,-55],[-2,-34],[1,-60],[0,-67],[-1,-12],[-3,-41],[-9,-60],[-12,-98],[-8,-58],[-20,-29],[-9,-36],[-21,-66],[-20,3],[-4,3],[-15,-33],[-1,-1],[-14,40],[0,1],[-12,23],[-13,-4],[-5,-1],[-13,-2],[-13,-39],[-29,-36],[-26,7],[-14,-14],[-13,-13],[-13,-17],[-25,-36],[-11,-18],[-10,-71],[-22,-80],[-23,-82],[-7,-77],[-6,-85],[-11,-28],[-13,0],[-15,-34],[-14,-65],[-5,-28],[-3,-9],[-11,-31],[-24,-51],[-19,0],[0,-1],[-37,137],[-18,42],[-19,10],[-17,-1]],[[73290,28364],[-12,9],[-17,16],[-21,90],[-2,34],[-1,15],[-2,72],[-1,42],[1,36],[3,89],[1,40],[7,44],[1,1],[21,67],[44,49],[35,69],[106,239],[47,112],[22,157],[2,13],[1,4],[13,61],[5,52],[1,53],[0,43],[-15,79],[-27,46],[-11,38],[-51,27],[-11,-1],[-15,-2],[-8,-25],[-15,-42],[-22,-21],[-54,20],[-16,25],[-20,90],[-5,23],[-1,4],[-3,16],[-10,52],[-73,362],[-8,42],[-22,43],[-4,2],[-21,11],[-17,-56],[-4,-13],[-2,-10],[-15,-100],[-9,-99],[-9,-230],[-1,-16],[-11,-245],[-7,-26],[-1,-3],[-12,-41],[-22,-12],[-25,5],[-14,39],[-4,22],[-11,61],[-8,41],[-3,33],[3,286],[-13,150],[-31,157],[0,1],[-7,37],[-9,44],[-38,68],[-21,35],[-3,7],[-1,4],[-7,18],[-9,27],[-4,12],[-22,78],[-19,71],[-1,5],[-12,42],[-14,52],[0,2],[-14,63],[-12,75],[-9,96],[-4,73],[-1,73],[2,63],[7,81],[11,72],[3,25],[13,78],[15,68],[22,85],[1,6],[30,68],[24,39],[1,1],[3,3],[46,82],[2,25],[2,25],[0,9],[1,9],[1,10],[1,8],[0,1],[4,32],[2,8],[1,7],[10,60],[0,2],[0,23],[0,13],[-9,137],[-2,21],[-5,71],[-5,41],[-15,95],[0,1],[-1,6],[-10,78],[-1,3],[-1,9],[0,1],[-3,25],[0,7],[-1,9],[-1,10],[0,10],[-1,4],[-1,34],[-1,7],[0,10],[0,10],[0,11],[0,10],[0,10],[0,11],[1,7],[2,38],[0,3],[0,10],[1,10],[1,9],[1,8],[3,33],[0,1],[2,9],[1,8],[1,8],[1,8],[1,1],[11,57],[1,6],[1,2],[8,34],[4,18],[5,30],[4,30],[2,22],[2,34],[-2,39],[-1,5],[-12,98],[-2,68],[0,66],[-6,39],[-36,81],[-10,24],[-1,0],[-43,6],[-21,-3],[-15,-20],[-13,-36],[-10,-28],[-15,-103],[0,-10],[-7,3],[-24,13],[-38,-107],[-11,-35],[-45,-51],[-1,-1],[-2,-1],[-1,0],[-21,-2],[-2,1],[-2,1],[-1,0],[-31,24],[-16,-7],[-6,-7],[-4,-9],[-4,-12],[-18,-95],[-2,-8],[-21,-93],[-1,-7],[-2,-6],[-1,-2],[-46,-150],[-1,-3],[-2,-5],[-2,-4],[-13,-29],[-2,-4],[-2,-3],[-1,0],[-17,-23],[-2,-2],[-2,-2],[-8,-5],[-2,-1],[-2,-1],[-2,1],[-2,1],[-9,6],[-1,1],[-2,3],[-2,3],[-2,3],[-2,5],[-2,5],[-1,2],[-4,13],[-1,3],[-2,6],[-1,7],[-2,7],[-1,7],[-1,9],[-1,8],[-1,7],[-6,46],[-1,11],[-4,20],[-5,15],[-1,2],[-25,47],[-6,6],[-6,0],[-8,1],[-43,-11],[-55,-37],[-1,-1],[-8,-3],[-1,-1],[-2,0],[-2,0],[-1,1],[-26,11],[-30,31],[-26,7],[-13,2],[-7,-9],[-72,-108],[-5,-13],[-36,-136],[-1,-4],[-2,-5],[-1,-5],[-1,-3],[-13,-28],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-1],[-2,-1],[0,-1],[-10,-1],[-3,0],[-2,1],[-1,0],[-18,15],[-2,1],[-2,2],[-1,3],[-2,4],[-2,3],[-15,37],[-1,2],[-2,5],[-2,5],[0,1],[-9,32],[-2,6],[-1,6],[7,58],[-12,40],[-12,84],[-4,63],[-5,77],[-13,127],[-7,70],[-7,41],[-9,58],[-20,87],[11,69],[3,17],[46,297],[22,6],[-45,215],[-1,5],[-14,74],[-38,182],[0,20],[0,46],[1,136],[0,240],[-95,-20],[-8,-62],[-12,-39],[-12,17],[-38,227],[-15,-47],[-7,58],[34,115],[-8,193],[3,83],[-29,181],[-58,-187],[-18,-59],[-2,-25],[-7,-90],[-14,59],[-50,1],[0,-75],[-8,-69],[-13,-68],[-6,-52],[-11,-38],[-25,-75],[-25,182],[1,69],[-63,-5],[-11,34],[-6,5],[2,54],[-5,114],[-101,9],[0,59],[-2,382],[-24,12],[-99,50],[-110,56],[-21,11],[-53,135],[-26,65],[-34,86],[-13,35],[-17,153],[-8,75],[-6,57],[-3,22],[-7,71],[-14,130],[-11,96],[-9,84]],[[54335,47899],[3,-81],[21,-115],[3,-15],[3,-17],[-1,-17],[-2,-42],[-1,-11],[-47,-168],[-1,-5],[-1,-4],[-9,-1],[-28,-6],[-9,-10],[-11,-13],[-5,-6],[-5,-15],[-3,-10],[-6,-20],[0,-12],[-2,-63],[3,-16],[4,-18],[23,-51],[7,-3],[3,-1],[4,13],[2,8],[2,49],[0,22],[7,21],[2,7],[42,44],[3,-1],[1,-1],[7,-3],[2,-9],[4,-17],[0,-1],[-2,-38],[-9,-213],[-1,-24],[0,-13],[-3,-9],[-2,-2],[-3,-5],[-6,5],[-16,16],[-3,-18],[-4,-21],[3,2],[11,5],[-1,-56],[-2,-105],[0,-42],[-2,-119],[-31,-14],[-1,0],[-1,-21],[-2,-75],[-1,-29],[6,-68],[14,-36],[14,-37],[5,-9],[2,-3],[11,-18],[14,-7],[5,-7],[3,-5],[1,-24],[1,-21],[2,-26],[2,-70],[-1,-35],[-4,-18],[-3,2],[-1,1],[-4,3],[-7,45],[-6,66],[-7,51],[-3,8],[-7,16],[-15,-36],[-9,-37],[-3,-82],[2,-5],[8,-33],[5,-19],[9,-12],[2,-3],[21,8],[3,-4],[3,-16],[1,-23],[-1,-28],[-3,-11],[-33,-78],[-27,-49],[-23,-24],[-17,-3],[-31,41],[-5,-4],[-3,-18],[-2,-27],[0,-2],[2,-22],[1,-5],[6,-55],[3,-19],[21,-98],[8,-32],[4,-17],[11,-8],[2,7],[1,0],[0,1],[5,28],[41,80],[1,1],[41,75],[8,10],[8,4],[50,-97],[13,-38],[44,-179],[4,-27],[-1,-21],[-6,-33],[0,-1],[-29,-52],[-13,-31],[-7,-31],[-3,-29],[0,-39],[3,-69],[0,-16],[6,-59],[2,-23],[0,-1],[1,-45],[-2,-39],[0,-1],[-10,-99],[-4,-33],[-3,-18],[-6,-21],[-4,-8],[-14,-27],[-5,-20],[-1,-23],[1,-11],[0,-2],[25,-100],[24,-67],[5,-39],[9,-72],[1,0],[10,1],[1,-83],[2,-76],[0,-17],[3,-141],[-15,-2],[-4,-22],[-18,-94],[-2,-12],[-26,-90],[0,-1],[1,-73],[0,-1],[6,-65],[8,-81],[7,-53],[-11,-148],[-11,-68],[-11,-112],[-2,-126],[-7,-82],[-23,-139],[-9,-72],[-16,-67],[-10,-40],[9,-384],[11,-488],[5,-214],[2,-108],[2,-60],[3,-135],[2,-99],[11,-435],[9,-360],[6,-229],[13,-517],[11,-433],[5,-179],[12,-489],[8,-287],[14,-500],[-2,-423],[46,-525],[16,-186],[49,-560],[45,-515],[7,-90],[27,-320],[1,-12],[39,-456],[29,-348],[50,-586],[10,-120],[5,-64],[6,-67],[31,-366],[17,-200],[50,-593]],[[54858,32445],[0,-1],[-182,-25],[-29,-4],[-13,-2],[-175,-24],[-176,-24]],[[54283,32365],[-203,-36],[-38,-5],[-167,-23],[-185,-31],[-55,-7],[-63,-9],[-124,-17],[-21,-7],[-32,-6],[-41,-9],[-56,-12],[-19,-22],[-21,29],[-11,-3],[-71,-18],[-138,-82],[-42,-19],[-26,-11],[-25,-12],[-158,-71],[-52,-24],[-77,-37],[-21,8],[-684,-610],[-84,-34],[-4,-131],[7,-176],[8,-152],[-25,-27],[-31,-43],[-140,609],[-282,329],[-24,-81],[-26,52],[-14,10],[-11,46],[-10,58],[-23,-45],[-34,164],[-21,110],[-34,186],[-11,-39],[-11,-35],[-12,-211]],[[51171,31921],[-35,186],[-55,351],[54,129],[-28,213],[-66,-67],[-30,-30],[8,117],[-167,115],[2,239],[2,120],[2,237],[-48,8],[-1,60],[-4,96],[-51,8],[-2,-76],[-53,-17],[-12,63],[-11,27],[-8,15],[-10,16],[-23,73],[-6,38],[-3,23],[-11,54],[-13,54],[-18,41],[-12,20],[-21,38],[-12,35],[-10,50],[-21,43],[-33,219],[-4,58],[0,2],[1,58],[0,2],[-1,77],[0,2],[-2,11],[-10,70],[6,63],[-1,0],[-18,13],[-37,25],[-60,30],[4,276],[30,19],[7,137],[-14,11],[-1,0],[4,226],[-82,35],[-1,0],[-23,11],[-14,39],[8,211],[4,116],[6,145],[20,-3],[4,137],[19,1],[27,-4],[13,-2],[-10,60],[-1,4],[-5,50],[-33,65],[3,218],[12,398],[-46,19],[5,226],[-34,18],[-2,199],[0,16],[-17,63],[0,3],[-80,80],[4,74],[10,174],[-16,25],[-16,13],[-30,26],[21,190],[-48,30],[1,79],[3,73],[39,-22],[-32,308],[-17,168],[-42,404],[-26,248],[-55,26],[-11,-37],[-1,0],[-74,1],[14,46],[58,164],[0,95],[-11,254]],[[40724,42700],[0,-17],[-66,-200],[-58,-113],[1,-18],[-1,-21],[0,-1],[-9,-55],[-11,-58],[-8,-30],[-16,-271],[-2,-123],[-70,34],[6,302],[-13,3],[2,130],[-71,-126],[-29,-51],[-8,-317],[-8,-290],[-9,-360],[-4,-165],[-1,-43],[-6,-230],[-15,-547],[-8,-294],[-21,-788],[-20,-760],[-9,-357],[-1,-4],[-2,-54],[-3,-107],[-9,-299],[0,-18],[-3,-93],[-2,-76],[7,-296],[1,-50],[1,-12],[-1,0],[-16,-19],[-7,-255],[-4,-148],[-11,-117],[-32,-210],[-63,-116],[-21,14],[-6,-48],[-7,-52],[-23,-63],[-12,-18],[-10,-484],[80,-35],[27,-11],[47,-21],[-1,-76],[-27,-382],[-1,-14],[-74,79],[-1,1],[-5,-68],[0,-42],[2,-32],[0,-2],[9,-101],[12,-142],[5,-99],[1,-2],[0,-2],[2,-20],[-1,0],[-72,28],[-14,-454],[33,-15],[7,-2],[-10,-428],[12,-70],[-29,-334],[-15,-163],[-25,-282],[-32,-354],[-20,-230],[-12,-133],[-74,-401],[-176,-956],[1,49],[-19,8],[24,954],[2,68],[-29,15],[-29,12],[-18,-683],[-9,2],[-8,-344],[-12,3],[-1,-26],[-4,-143],[-9,0],[-1,-53],[-4,-66],[7,-22],[3,-7],[0,-102],[-1,-124],[0,-39],[-90,-397],[-7,-28],[-9,-38],[-45,-197],[-11,-46],[-12,-54],[-104,-326],[-28,-84],[-61,-186],[-39,-121],[-49,-151],[-5,-15],[-48,-150],[58,-343],[1,0],[3,-64],[-8,-50],[-26,-62],[-66,-35],[-24,16],[-4,9],[-22,52],[-4,49],[-3,37],[-39,61],[-3,59],[-210,-437],[-5,-9],[-13,-640],[-2,-76],[-17,-426],[-3,-70],[-7,-180],[-13,-343],[-12,-300]],[[38660,25603],[-1,-157],[1,-64],[-13,-30],[-14,-14],[-15,-26],[-15,-1],[-18,0],[-12,18],[-9,53],[-13,41],[-5,65],[-8,59],[-10,-59],[-12,-23],[-17,6],[-12,76],[-12,-6],[-11,-17],[-16,35],[-12,41],[-12,6],[-12,18],[-1,77],[-6,76],[-18,6],[-8,-88],[-22,-36],[3,-59],[8,-53],[1,-65],[2,-88],[-4,-65],[1,-59],[-7,-118],[-12,-6],[-16,-35],[-18,-30],[-6,53],[-7,47],[-16,-17],[-2,-1],[-14,-5],[-12,-12],[-14,12],[-16,-6],[-10,59],[-11,65],[-16,59],[-12,15],[-34,34],[-30,-13],[-14,-7],[-10,35],[-15,35],[-13,-7],[-12,11],[-8,44],[-20,38],[-13,7],[-8,47],[0,62],[12,28],[6,65],[-16,15],[-12,17],[-1,82],[3,83],[-7,52],[-11,23],[-17,-62],[-4,75],[-15,18],[-13,41],[-5,93],[-8,80],[-1,81],[-13,57],[-21,68],[-11,30],[-15,-1],[-23,-11],[-21,-52],[-10,-42],[-9,-43],[-10,-34],[0,-1],[-15,-22],[-15,1],[-13,-6],[-12,20],[-15,14],[-16,-3],[-69,81],[-16,19],[-14,17],[-26,29],[-57,66],[-64,147],[-14,54],[-35,140],[-11,74],[-9,52],[-47,44],[-22,-10],[-16,-7],[-67,121],[-13,-8],[-79,-48],[-15,-9],[-1,2],[-76,198],[-12,95],[4,122],[-20,94],[-31,-52],[-37,-34],[-10,87],[-15,40],[-26,72],[-13,-37],[-29,-1],[-9,39],[-14,115],[-20,64],[-26,4],[-50,-16],[-62,-104],[-26,-56],[-12,-64],[-9,-80],[-2,-60],[-13,-40],[-15,28],[-7,11],[-29,-73],[-14,-15],[-17,5],[-28,-30],[-32,-60],[-15,-28],[-6,-67],[-12,-77],[-17,-103],[-17,-105],[-8,-53],[-11,-67],[-20,-123],[-5,-3],[-40,-25],[-24,110],[-137,-150],[-49,-54],[-40,-45],[-19,-23],[-72,-83],[-14,14],[-14,12],[-38,33],[-31,27],[-28,24],[-29,26]],[[35823,26558],[-12,29],[-71,176],[-41,101],[-19,24],[-50,59],[-31,36],[-3,4],[6,-389],[-9,-86],[-11,-128],[-8,-53],[-228,216],[-15,24],[-37,43],[-293,282],[-18,16],[0,1],[-15,13],[-12,11],[-24,24],[-50,42],[-83,81],[9,154]],[[34808,27238],[10,404],[44,-20],[10,481],[86,-44],[23,593],[2,76],[29,7],[2,63],[22,721],[-58,30],[5,284],[29,106],[3,82],[-34,70],[-19,102],[-18,90],[-9,52],[5,74],[6,66],[41,112],[84,-39],[14,-7],[3,83],[9,219],[-96,57],[-53,-115],[0,60],[0,61],[0,224],[0,551],[0,47],[-15,4],[0,299],[-22,-8],[2,67],[8,232],[-19,17],[9,445],[-4,201],[-54,18],[8,328],[-269,54],[-52,11],[10,1214],[-60,-37],[-6,-4],[-58,-35],[2,240],[-126,16],[-2,533],[0,154],[-51,4],[-50,4],[-58,5],[-9,295],[-2,69],[-11,346],[-2,57],[11,749],[6,447],[13,2],[0,83],[26,-2],[31,166],[62,434],[44,308],[23,1],[32,0],[3,63],[10,160],[-10,110],[-2,28],[-7,71],[2,281],[8,0],[4,220],[7,341],[-93,29],[5,137]],[[27002,49123],[-10,-150],[-11,-528],[-5,-193],[-3,-82],[-4,-139],[0,-2],[-17,-248],[-42,-664],[-4,-66],[-4,-32],[-25,-235],[-12,-158],[-2,-20],[-2,-17],[-18,-127],[-35,-344],[-1,-16],[-1,-39],[-48,-253],[-30,-125],[-41,-143],[-3,-8],[-20,-79],[-25,-152],[-79,-258],[-4,1],[-49,-110],[-21,-72],[-47,-214],[-93,-491],[-24,-130],[-31,-227],[-1,-12],[-3,-45],[-18,-321],[-4,-205],[5,-208],[5,-62],[16,-223],[17,-243],[11,-305],[12,-140],[16,-156],[31,-201],[12,-56],[8,-38],[21,-79],[4,-1],[37,-163],[4,-33],[7,-196],[0,-5],[3,-239],[-5,-244],[-6,-212],[-6,-70],[-8,-280],[-4,-120],[0,-32],[-4,-41],[-12,-163],[0,-4],[-4,-63],[2,-24],[-14,-98],[-67,-731],[-26,-300],[-27,-311],[-16,-142],[-15,-144],[-6,-73],[-2,-18],[0,-21],[0,-328],[0,-51],[29,-359],[18,-157],[6,-29],[6,-31],[40,-346],[25,-262],[10,-108],[15,-100],[19,-125],[12,-146],[2,-18],[7,-35],[37,-198],[39,-335],[2,-104],[22,-158],[0,-64],[4,-48],[1,-9],[1,-4],[38,-255],[26,-239],[7,-85],[9,-64],[20,-219],[1,-10],[4,-32],[10,-83],[5,-45],[12,-113],[8,-58],[50,-239],[39,-165],[17,-109],[45,-245],[15,-101],[44,-332],[39,-363],[1,-16],[3,-33],[4,-71],[3,-58],[9,-233],[4,-97],[-2,-129],[-1,-68],[-2,-142],[-18,-269],[-21,-326],[-4,-63],[-32,-546],[-2,-32],[-1,-7],[-1,-4],[-10,-63],[-64,-295],[-46,-175],[-36,-75],[-50,-56],[-4,-4],[-4,-3],[-35,-23],[-75,-93],[-11,-11],[-7,-7],[-8,-16],[-28,-59],[-67,-72],[-24,-23],[-15,-7],[-5,-2],[-22,-40],[-8,-29],[-2,-7],[-3,-12],[-30,-112],[-12,-12],[-12,-19],[-21,-72],[-21,-88],[-43,-200],[-34,-417],[-2,-46],[1,-22],[0,-2],[-9,-123],[-4,-47],[-1,-31],[-3,-182],[-2,-55],[14,-187],[16,-121],[23,-162],[5,-48],[25,-249],[24,-142],[9,-51],[0,-13],[1,-27],[9,-59],[29,-153],[26,-81],[7,-22],[13,-40],[16,-27],[12,-20],[20,-33],[35,-4],[10,8],[17,14],[19,-14],[39,2],[25,23],[20,-30]],[[26575,25978],[89,-141],[21,-24],[24,-40],[32,-51],[37,-69],[40,-14],[34,44],[8,13],[17,-14],[68,-174],[22,-119],[9,-122],[2,-223],[-3,-110],[-16,-256],[-72,-415],[-1,-1],[-2,-1],[-2,-3],[-2,-3],[-1,-1],[-3,-6],[-8,-15],[-1,-2],[-2,-4],[-1,-2],[-22,-62],[-17,-39],[-3,1],[-1,0],[-2,0],[-2,0],[-2,-1],[-2,-2],[-11,-12],[-2,-2],[-2,-3],[-2,-4],[-2,-4],[-2,-5],[-2,-5],[-1,-6],[-2,-6],[-6,-28],[-39,-33],[-1,0],[0,-1],[-24,-21],[-31,-42],[-22,-30],[-51,-38],[-15,-1],[-13,-1],[-43,-37],[-18,-14],[-2,1],[-12,4],[-28,10],[-19,22],[-25,65],[-44,142],[-15,72]],[[26379,24145],[-34,143],[-28,104],[-5,21],[-18,67],[-74,240],[-8,24],[-1,3],[-29,89],[-15,56],[-60,224],[-4,10],[-29,73],[-10,34],[-29,93],[-41,138],[-30,97],[-8,27],[-9,27],[-15,29],[-27,9],[-10,-26],[-9,-21],[-17,-43],[-129,-353],[-100,-283],[-26,-122],[-10,-48],[-14,-49],[-39,-147],[-76,-331],[-34,-170],[-50,-169],[-16,-55],[-21,-56],[-38,-74],[-46,-72],[-41,20],[-12,6],[-10,19],[-46,16],[-36,28],[-89,15],[-1,0],[-1,1],[-63,100],[-33,83],[-22,39],[-34,43],[-2,1],[-18,2],[-11,54],[-2,10],[-22,55],[-27,33],[-26,9],[-40,-26],[-21,-32],[-43,-81],[-18,-64],[-17,-59],[-11,-4],[-1,0],[-35,-28],[-87,-137],[-49,-102],[-51,-173],[-22,7],[-4,1],[-14,105],[-2,51],[0,1],[23,130],[3,20],[4,98],[0,3],[0,34],[-10,235],[-9,23],[-45,122],[-10,28],[-20,109],[-31,262],[-18,159],[-5,46],[-7,53],[-11,61],[-6,36],[-19,104],[-11,58],[-26,37],[-46,63],[-6,9],[-34,1],[-12,35],[-10,51],[-14,-13],[-23,12],[-11,23],[-19,13],[-5,22],[-3,30],[1,254],[-27,6],[0,22],[-21,3],[-36,5],[-7,3],[0,60],[1,3],[0,6],[1,16],[0,99],[-15,3]],[[23875,25971],[-29,6],[-44,9],[2,236],[0,1],[2,200],[6,663],[3,383],[5,503],[3,331],[2,235],[8,797],[5,623],[2,186],[3,359],[0,67],[5,545],[2,216],[1,74],[1,71],[2,191],[2,196],[2,244],[0,46],[0,47],[17,110],[4,43],[7,59],[45,360],[25,199],[40,316],[84,-9],[0,3],[2,50],[36,-4],[1,60],[0,1],[12,-2],[31,-5],[1,92],[1,88],[1,121],[-17,2],[-98,16],[32,244],[66,518],[55,426],[21,165],[8,58],[36,283],[59,461],[8,62],[10,78],[27,207],[17,131],[77,601],[4,364],[0,12],[1,52],[1,78],[0,1],[2,147],[2,238],[-57,5],[-39,4],[-2,43],[2,314],[70,-6],[2,57],[31,-8],[1,98],[1,92],[2,249],[0,4],[2,168],[4,442],[1,191],[2,155],[2,191],[4,369],[2,223],[2,187],[2,156],[3,302],[7,593],[2,126],[2,171],[6,513],[1,146],[1,97],[7,572],[1,124],[5,369],[1,124],[1,68],[11,969],[4,341],[6,646],[1,92],[2,255],[0,62],[1,24],[3,412],[1,102],[-15,-13],[-11,14],[-14,30],[-9,70],[4,25],[1,29],[2,126],[-3,40],[30,2],[5,135],[14,0],[6,729],[5,570],[7,561]],[[30610,36949],[6,-186],[1,-34],[7,-210],[15,-148],[10,-91],[21,-121],[12,-67],[38,-212],[-21,-229],[-12,-134],[10,-211],[11,-211],[-12,-424],[-5,-70],[-2,-29],[-9,-125],[-10,-134],[-13,-43],[-11,-35],[-20,-68],[-20,-75],[-17,-60],[-13,-49],[-28,-181],[-8,-49],[-12,-38],[-22,-70],[-52,-122],[-33,117],[-42,163],[-43,6],[-38,-159],[-8,-24],[-2,-423],[-8,-344],[-4,-198],[-6,-271],[-15,-663],[-1,-60],[-12,-513],[0,-31],[-7,-314],[-235,1],[-8,-307],[-3,-150],[-46,13],[-2,-108],[-5,-236],[0,-2],[-5,-202],[-6,-302]],[[29925,29516],[-110,290],[-1,3],[-77,199],[-94,4],[-41,2],[-20,-37],[-32,-55],[-26,-54],[-142,-62],[-187,-83],[-38,-17],[-225,-95],[-43,-325],[-23,30],[-30,73],[-25,-194],[-1,-3],[-20,-65],[-32,-42],[-9,-28],[-1,-3],[-2,-5],[-1,-4],[-18,-37],[-2,-4],[-2,-3],[-1,-1],[-18,-19],[-13,-4],[-2,-1],[-2,1],[-14,-142],[-27,-122],[0,-1],[-13,-32],[-69,-73],[-121,-132],[-23,-1],[-63,-3],[-62,83],[-8,158],[-12,136],[-8,98],[-14,42],[-24,79],[-11,-2],[-17,-47],[-7,-22],[-20,-55],[-33,-37],[-42,-180],[-13,-55],[-14,32],[-11,24],[-15,31],[-17,13],[-13,11],[-40,-134],[-80,-204],[-32,-30],[-30,-30],[-17,-16],[-64,-62],[-20,61],[-37,112],[-11,19],[-22,-31],[-14,-18],[-47,-64],[-11,-32],[-9,-134],[-8,-59],[-12,-15],[-26,25],[-25,79],[-1,2],[-31,97],[-19,59],[-18,49],[-15,5],[-9,-46],[-11,-20],[-14,-27],[-30,24],[-11,17],[-21,-15],[-2,-64],[-7,-90],[-40,-141],[-53,-65],[-22,72],[-50,14],[-24,-17],[-6,-4],[-22,-14],[-11,-68],[-18,-19],[-29,-33],[-45,108],[-28,65],[-59,-77],[-29,-88],[-8,-71],[-10,-87],[-13,-116],[-25,34],[0,2],[-23,31],[-34,-253],[-35,-194],[-25,-87],[-35,-118],[-36,-137],[-66,-250],[-12,-114],[-10,-91],[-23,23],[-3,-86],[-3,-87],[-4,-123],[-2,-80],[15,-2],[16,-18],[13,-26],[12,-68],[0,-75]],[[64481,45417],[10,-60],[35,-192],[2,-121],[14,-141],[44,-348],[12,-62],[17,-200],[9,-171],[-1,-37],[-1,-34],[-13,-34],[-6,-55],[-6,-49],[-10,-139],[-9,-51],[-25,-155],[-34,-175],[-28,-90],[-32,-183],[-14,-137],[-9,-240],[-25,-512],[-57,-850],[-32,-186],[-45,-263],[-38,82],[-36,76],[-12,362],[24,339],[28,314],[0,268],[-40,221],[-14,-43],[-10,0],[-5,0],[-97,63],[-26,-83],[-2,-80],[-4,-52],[-6,-77],[-19,-110],[-11,-321],[3,-97],[-2,-206],[-5,-117],[-25,-171],[-58,-179],[-23,-944],[-39,-124],[-13,6],[-14,-2],[-13,-2],[-25,6],[-41,-132],[-6,-196],[12,-117],[10,-61],[9,-155],[-11,-321],[-11,-122],[-12,-90],[-6,-61],[-17,-238],[-6,-133],[-1,-190],[4,-177],[14,-71],[35,-58],[3,-5],[52,-100],[16,-138],[2,-15],[1,-6],[32,-272],[5,-325],[0,-299],[-2,-65],[-4,-131],[-2,-61],[-3,-69],[-20,-177],[-9,-76],[-53,-206],[-23,-47],[-23,-52],[-33,-36],[-1,-1],[-2,-2],[-1,-3],[-2,-4],[-1,0],[-1,-4],[-2,-5],[-2,-5],[-1,-6],[-2,-7],[-1,-7],[-2,-8],[0,-3],[-3,-15],[-81,-104],[-16,-12],[-12,-9],[-9,-8],[-10,-33],[-60,-212],[-27,-242],[-3,-189],[-2,-103],[13,-102],[22,-170],[2,-17],[2,-5],[34,-121],[7,-24],[48,-110],[28,-92],[31,-166],[2,-28],[15,-182],[5,-60],[-4,-49],[-13,-176],[0,-2],[-1,-2],[-38,-189],[-5,-24],[-6,-13],[-43,-97],[-14,-31],[-78,-41],[-69,-10],[-40,58],[-29,43],[-34,50],[-15,22],[-87,90],[-53,50],[-47,44],[-24,23],[-81,99],[-32,41],[-1,0],[-109,18],[-25,-37],[-40,-62],[0,-1],[-50,-222],[-8,-33],[-8,-75],[-31,-279],[-8,-64],[-6,-219],[0,-6],[-5,-173],[15,-343],[17,-82],[29,-142],[80,-292],[17,-75],[31,-133],[36,-169],[11,-50],[14,-63],[10,-148],[4,-53],[8,-102],[2,-228],[-10,-102],[-3,-40],[-1,-8],[-10,-69],[-15,-104],[-37,-209],[-5,-31],[-10,-27],[-45,-139],[-27,-46],[-43,-74],[-74,-72],[-104,-106],[-73,-151],[-13,-47],[-13,-56],[-23,-106],[-20,-94],[-11,-106],[-4,-40],[-2,-74],[-5,-147],[0,-2],[2,-315],[4,-289],[-1,-158],[-1,-157],[-8,-219],[-2,-54],[-12,-86],[-10,-75],[-11,-75],[-58,-274],[-48,-130],[-19,-52],[-63,-80],[-93,-33],[-102,85],[-97,161],[0,1],[-71,224],[-1,4],[-1,1],[-33,156],[-25,118],[-31,251],[-5,41],[-9,72],[-18,233],[-12,166],[-2,23],[-2,27],[0,6],[-2,8],[-28,192],[-46,136],[-46,24],[-30,-24],[-4,-3],[-7,-26],[-14,-52],[-7,-27],[-8,-80],[-6,-56],[-7,-75],[-6,-228],[10,-170],[3,-49],[11,-110],[10,-106],[1,-9],[23,-188],[6,-48],[2,-48],[10,-222],[-7,-238],[-14,-134],[-14,-133],[-51,-285],[-59,-213],[-4,-12],[-27,-76],[-16,-45],[-4,-17],[-33,-128],[-10,-36],[-44,-217],[-13,-63],[-33,-159],[-3,-14],[-8,-26],[-66,-205],[-6,-17],[-16,-49]],[[61105,25147],[-23,62],[-36,101],[-17,49],[-20,54],[-3,9],[-23,62],[-54,149],[-27,70],[-110,309],[-12,31],[-16,46],[-20,56],[-225,625],[-77,-429],[-13,36],[-45,122],[-20,-176],[-16,14],[0,94],[-12,41],[-1,1],[-48,166],[-45,-147],[-1,-2],[-42,-58],[-73,-101],[-12,-54],[-48,215],[23,26],[0,6],[-3,26],[-2,7],[-4,23],[-9,48],[-28,22],[-12,66],[-15,80],[81,439],[4,50],[-42,168],[-30,112],[26,125],[-17,100],[-19,113],[-11,69],[-42,-10],[-29,-25],[-26,76],[-33,-29],[-2,-61],[-1,-81],[-22,11],[0,66],[-2,170],[-14,0],[-9,-50],[-25,-3],[-17,-7],[-16,-14],[-14,6],[-23,38]],[[59733,28059],[87,387],[31,142],[104,472],[-4,7],[-1,2],[-63,157],[-4,10],[-1,4],[-28,50],[-60,110],[-10,14],[-4,12],[-46,180],[-1,15],[3,27],[3,10],[8,227],[1,46],[-1,10],[-2,38],[-1,17],[-3,-12],[-17,-72],[-3,-12],[-39,-90],[-9,-21],[-4,-5],[-5,7],[-5,23],[0,2],[-7,56],[0,3],[-1,21],[8,64],[1,9],[-2,62],[-6,29],[-3,12],[-9,4],[-32,-60],[29,239],[27,247],[28,207],[7,49],[23,195],[14,117],[21,177],[8,64],[62,400],[24,160],[27,165],[39,173],[43,-173],[-35,-151],[35,-127],[40,173],[25,111],[24,99],[19,85],[-16,96],[-14,52],[-3,217],[19,59],[27,-76],[10,-154],[46,51],[13,14],[-7,117],[-13,233],[49,331],[-65,130],[-39,80],[-49,-427],[9,694],[2,92],[1,130],[6,397],[4,336],[0,13],[2,91],[150,611],[65,266],[25,96],[35,143],[87,349],[94,377],[64,258],[16,62],[1,4],[125,502],[0,1],[32,127],[62,378],[17,94],[31,170],[33,183],[44,243],[61,334],[43,236],[24,136],[75,413],[36,195],[0,4],[91,500],[33,188],[18,108],[34,187],[64,356],[31,166],[18,97],[69,388],[99,547],[51,286],[19,104],[15,74],[21,120],[117,647],[85,469],[54,304],[129,714],[17,112],[124,682]],[[58362,46168],[-71,-298],[0,-187],[0,-108],[-14,-70],[-29,-148],[-60,-139],[-12,-207],[28,-201],[-13,-375],[-32,-273],[-3,-217],[21,-202],[-3,-318],[-32,-378],[-55,-311],[-54,-306],[-23,-128],[-25,-142],[-54,-299],[-47,-270],[-1,-3],[-54,-271],[-58,-288],[-49,-245],[-13,-60],[-62,-304],[-12,-63],[-11,-54],[-66,-322],[-76,-376],[-24,-117],[-16,-76],[0,-3],[-76,-377],[-5,-22],[-29,-145],[-51,-251],[0,-1],[-124,-610],[-16,-77],[-31,-140],[-65,-302],[-37,-172],[-35,-157],[-6,-37],[-73,-344],[-51,-235],[-214,-1004],[-24,-112],[-14,-66],[-58,-274],[-90,-413],[-42,-196]],[[56401,34474],[-116,-184],[-74,-119],[-152,-244],[-17,-318],[-10,-41],[-19,-24],[-10,-25],[-9,-26],[-7,-8],[-5,-10],[6,-134],[1,-34],[-1,-46],[-15,9],[-55,18],[-18,5],[-14,4],[-4,2],[-16,0],[-18,5],[-30,3],[-11,-2],[-20,-3],[-18,0],[-19,-24],[-19,17],[-4,0],[-10,-2],[-39,-18],[-2,0],[-60,29],[-14,6],[-24,5],[-7,-8],[-11,-24],[-37,-66],[-24,-37],[-18,-27],[-14,49],[-11,-11],[-17,-18],[-21,-21],[-9,-9],[-5,-4],[-18,-15],[-17,-14],[-2,-2],[-33,-17],[-9,-4],[-2,-2],[-30,-32],[-18,-18],[-24,-26],[-2,-2],[-34,-46],[-2,-3],[-20,-58],[-16,-22],[-38,84],[-118,52],[-14,-10],[-16,-353],[-43,-42],[-41,-32],[-41,68],[-8,-200]],[[23875,25971],[-2,-152],[0,-5],[-2,-115],[-47,10],[-2,-148],[-37,9],[-122,16],[-68,8],[-4,0],[-50,6],[-133,15],[-13,2],[-37,4],[-21,2],[-24,3],[-100,11],[-21,2],[-60,7],[-109,12],[-28,3],[-34,4],[-55,7],[-37,4],[-83,9],[-89,10],[-36,5],[-32,3],[-16,2],[-17,2],[-97,11]],[[22499,25718],[-3,271],[-3,220],[-4,585],[-2,322],[-3,357],[-2,239],[-3,379],[-7,845],[-2,297],[-5,611],[-1,102],[-1,129],[-128,31],[-15,1],[-12,-20],[-35,-61],[-97,-168],[-33,-56],[-33,-56],[-73,-124],[-19,-33],[-117,-125],[-22,-8],[-21,303],[-57,92],[-28,9],[-4,1],[-57,19],[-94,30],[-39,13],[-67,65],[-46,49],[-102,106],[-26,30],[-89,82],[4,48],[-16,46],[-22,67],[-1,-31],[-2,-48],[-36,81],[-24,55],[-2,4],[-11,26],[-148,343],[-94,214],[-66,148],[-10,33],[-11,40],[-20,70],[-116,459],[-104,480],[-19,86],[-51,283],[-37,203],[-67,406],[-20,124],[-50,378],[-14,104],[-8,60],[-28,243],[-22,187],[-13,108],[-25,261],[-22,212],[-13,134],[-16,200],[-29,354],[-51,47],[-35,32],[-36,33],[-1,1],[-28,13],[-1,0],[-15,10],[-126,60],[-39,14],[-14,-12],[-106,-189],[-16,-33],[-15,-46],[-8,-19],[-12,-12],[-11,-2],[-13,54],[-8,34],[-20,84]],[[19581,35702],[6,391],[2,158],[5,381],[6,510],[2,118],[7,497],[2,120],[2,80],[67,-16],[17,-5],[-1,197],[-2,428],[1,63],[1,130],[1,73],[-1,44],[0,145],[-2,6],[-9,11],[-4,16],[-55,-1],[-1,27],[-10,60],[0,89],[1,174],[1,234],[4,725],[1,207],[4,645],[0,60],[1,142],[1,314],[3,421],[1,273],[1,68],[0,112],[1,117],[1,91],[0,3],[0,92],[5,929],[0,5],[3,541],[1,110],[0,98],[1,105],[2,459],[0,101],[3,611],[1,155],[2,318],[1,195],[1,272],[4,767]],[[14318,41869],[-1,-237],[-1,-330],[0,-266],[-1,-158],[0,-68],[-1,-85],[0,-210],[-2,-66],[-1,-97],[-3,-675],[0,-96],[-1,-221],[-2,-271],[-3,-370],[-1,-78],[0,-108],[-3,-88],[-2,-231],[-1,-337],[-1,-175],[-4,-433],[-1,-64],[-2,-314],[-1,-178],[-5,-840],[0,-6],[-1,-186],[-1,-78],[-1,-208],[0,-4],[-5,-635],[-5,-749],[-1,-107],[-1,-147],[-1,-315],[-2,-326],[-1,-177],[-4,-626],[-1,-194],[-2,-408],[-1,-141],[-6,-907],[0,-156],[-4,-236],[-1,-75],[-5,-594],[-4,-427],[-3,-317],[-1,-114],[-2,-303],[-8,-913],[-4,-407],[-2,-285],[-1,-111],[0,-1],[-2,-246],[0,-21]],[[14211,26453],[-21,2],[-25,2],[-16,1],[-92,7],[-33,3],[-10,1],[-146,12],[-74,5],[-101,8],[-15,-4],[-46,3],[-111,8],[-31,2],[-70,5],[-60,4],[-102,8],[-15,1],[-64,4],[-20,1],[-145,9],[-6,-775],[-6,-745],[0,-8],[-1,-196],[-2,-292],[-1,-90]],[[12998,24429],[-26,3],[-58,6],[-129,13],[-102,11],[-107,6],[-144,13],[-24,2],[-116,10],[-27,2],[-30,18],[-14,-3],[-115,20],[-19,2],[-51,5],[-134,-2],[-18,2],[-21,2],[-197,21],[-1,0],[-49,5],[-74,8],[-118,12],[-212,23],[-102,11],[-103,-46],[-26,3],[-22,3],[-90,10],[-77,6],[-77,7],[-34,5],[-86,8],[-75,6],[-2,0],[-82,7],[-65,6],[-74,6],[-35,3],[-136,12],[-14,1],[-41,6],[-13,-1],[1,63],[-17,3],[-228,19],[-90,17],[-76,15]],[[9648,24778],[2,315],[8,1543],[1,21],[0,160],[0,6],[6,879],[2,424],[2,420],[3,485],[0,147],[1,137],[1,99],[2,292],[1,797],[0,22],[3,330],[2,301],[1,102],[1,175],[2,161],[2,351],[1,47],[4,667],[3,424],[1,96],[0,60],[-10,-99],[-8,-15],[-29,124],[-32,135],[1,152],[-12,282],[-7,175],[0,2],[-9,298],[0,1],[-3,10],[-28,92],[-13,-27],[-12,102],[-4,32],[0,3],[-6,43],[-11,94],[-1,-3],[-16,120],[35,74],[7,26],[0,11],[-6,19],[-94,127],[0,1],[-6,7],[-19,-9],[-30,-60],[-4,-6],[-5,1],[-4,11],[-2,10],[0,2],[-6,83],[-5,41],[-24,129],[-2,11],[-12,27]],[[19581,35702],[-1,-121],[-2,-394],[-1,-213],[-3,-396],[-37,-282],[0,-1],[-88,-778],[-45,-374],[-18,-148],[-6,-50],[-8,-68],[-26,-213],[-11,-81],[-67,-382],[-50,-289],[-55,-311],[-33,-192],[-48,-271],[-45,-257],[-10,-59],[-24,-132],[-30,-187],[-16,-93],[-15,-89],[-67,-391],[-10,-59],[-14,-38],[0,-1],[-19,-42],[-9,-19],[-64,-144],[-16,-36],[-19,-43],[-98,-220],[-16,-35],[-29,-67],[-18,-39],[-19,-44],[-13,-28],[-18,-40],[-21,-46],[-86,-197],[-90,-201],[-45,-102],[-70,-159],[-100,-225],[-49,-110],[-46,-95],[-35,-82],[-18,-40],[-65,-149],[-11,-26],[-1,-1],[-112,-251],[-247,-559],[-129,-297],[-115,-261],[-26,-56],[-20,2],[-187,14],[-1,0],[-1,0],[-13,1],[-75,5]],[[16950,26240],[-84,7],[-51,4],[-29,2],[-110,8],[-82,6],[-26,2],[-24,6],[-1,1],[-21,0],[-144,13],[-16,1],[-21,0],[-151,9],[-24,4],[-80,6],[-45,3],[-124,9],[-136,13],[-17,1],[-177,13],[-88,7],[-118,9],[-34,2],[-70,5],[-104,8],[-53,4],[-108,6],[-30,2],[-70,6],[-1,0],[-68,5],[-139,11],[-192,16],[-17,1],[-82,7],[-62,5],[-10,0],[-51,5],[-2,0],[-44,3],[-33,3]],[[59733,28059],[-12,-56],[-11,-47],[-17,-75],[-23,-104],[-54,-241],[-19,-122],[-14,-81],[-7,-45],[-34,-17],[-12,62],[-14,49],[-21,11],[-16,12],[-15,4],[-16,3],[-10,36],[-21,19],[-11,61],[-5,75],[-10,87],[-11,35],[-11,62],[-9,45],[-8,56],[-73,-617],[-64,-594],[-46,-418],[-43,-457],[-6,-69],[-7,-72],[0,-1],[-44,-458],[-37,-391],[-80,-678],[-1,-5],[-98,-820],[-22,-180],[-36,-307],[-63,-530],[-22,-185],[-24,-204]],[[58686,21902],[-44,148],[-67,254],[-31,113],[-28,97],[-53,189],[-41,148],[-14,52],[-64,225],[-26,93],[-48,179],[-2,5],[-54,198],[-15,55],[-39,144],[-14,54],[-50,178],[0,1],[-50,181],[-77,284],[-63,231],[-166,609],[-48,176],[-11,40],[-16,61],[-50,217],[-191,818],[-23,99],[-12,53],[-20,85],[-15,66],[-10,42],[-28,119],[0,1],[-14,62],[-18,78],[-118,505],[-14,62],[-83,344],[-65,286],[-39,170],[-78,341],[-49,213],[-49,211],[-147,659],[-2,17],[11,57],[-13,11],[-4,7],[-15,52],[-4,22],[-13,84],[-1,12],[8,111],[-1,18],[0,5],[0,3],[-8,56],[-1,19],[-1,5],[0,16],[-18,173],[-3,25],[-14,53],[0,1],[-9,19],[-7,22],[-2,35],[1,262],[3,40],[27,188],[12,79],[10,70],[0,27],[-17,71],[-70,184],[-48,140],[-41,134],[-43,112],[-10,-32],[-27,33],[-20,37],[-6,27],[-33,357],[0,1],[-10,244],[-2,74],[2,79],[15,136],[1,7],[6,26],[7,8],[5,165],[0,14],[3,199],[7,50],[13,74],[11,53],[0,1],[0,1],[9,44],[25,135],[16,180],[7,269],[3,114]],[[65682,39032],[-17,-43],[-38,-94],[-14,-35],[-42,-88],[-50,-403],[-6,-217],[-94,-231],[-12,-105],[-12,-101],[-11,-97],[-38,-329],[-11,-99],[-11,-69],[-20,-123],[-2,-14],[-19,-113],[-6,-62],[-3,-31],[-20,-193],[-30,-210],[-13,-182],[-73,-205],[-4,-108],[-6,-155],[-102,-322],[-22,-68],[-33,-103],[-50,-52],[-31,-32],[-16,-177],[14,-224],[-11,-156],[-11,-171],[-18,-261],[-65,-359],[-70,-384],[-9,-51],[-8,-49],[-3,-89],[-13,-143],[-12,-196],[-45,-261],[-28,-129],[-75,-396],[-19,-105],[-23,-116],[-7,-35],[-25,-124],[-15,-37],[-46,33],[-13,-36],[-65,-216],[-59,-317],[-20,-6],[-16,-5],[-27,-235],[-10,-87],[2,-124],[2,-97],[1,-69],[-13,-38],[-31,-89],[-33,-95],[-61,-191],[-5,-102],[-2,-38],[38,44],[13,-82],[-36,-264],[-19,-10],[-55,-26],[-13,-82],[-32,-195],[-1,-65],[8,-94],[-2,-154],[-11,-125],[-8,-99],[-35,-235],[-12,-77],[-18,-42],[-43,-100],[-19,35],[-24,42],[-11,5],[-13,-29],[-78,-507],[-11,-24],[-24,65],[-25,-12],[-17,-88],[-7,-53],[3,-89],[11,-50],[6,-68],[-9,-59],[-21,-53],[-19,-12],[-15,-6],[-11,-141],[15,-112],[37,-85],[15,-33],[-5,-89],[-4,-88],[-5,-89],[-10,-47],[-12,-24],[-14,-11],[-51,20],[-49,21],[-32,-194],[-46,-283],[-31,-497],[11,-82],[11,-36],[12,-17],[19,0],[18,-12],[-2,-65],[-80,-696],[-26,47],[-41,-41],[-10,-44],[-22,-120],[-82,-433],[-182,-1733],[-43,-747],[-10,-179]],[[62908,21654],[-18,63],[-12,24],[-34,70],[-61,193],[-46,68],[-30,42],[-9,-108],[-7,-84],[-6,-75],[0,-2],[-10,-121],[82,-135],[-19,-154],[-4,-37],[-33,-319],[-69,-658],[-17,-71],[-59,-289],[-59,-278],[-30,-144],[-9,-41],[-36,-174],[-108,-502],[-10,-44],[-92,-434],[-62,-295],[-19,-106],[-18,35],[-16,174],[-12,139],[-29,41],[-39,72],[-32,58],[-14,-113],[-14,-121],[-26,-247],[-7,-59],[-12,-55]],[[61912,17967],[-1,18],[-4,58],[-1,20],[-6,60],[-10,56],[-21,126],[-8,49],[-45,196],[-23,101],[-13,73],[-11,84],[0,1],[-12,68],[-12,92],[-9,69],[-9,64],[-5,98],[-7,70],[-11,42],[-22,50],[-8,73],[-2,65],[-1,19],[3,81],[3,96],[2,27],[3,92],[0,78],[-5,63],[-1,21],[-1,2],[0,2],[-6,54],[-13,134],[-4,37],[-2,23],[-8,80],[-2,13],[-6,40],[-6,42],[-5,52],[-1,2],[0,9],[-1,50],[1,76],[0,120],[-1,59],[-2,82],[8,95],[-1,10],[-2,89],[-1,2],[-4,63],[-9,52],[-7,35],[-17,88],[-2,34],[-5,65],[-7,81],[-1,62],[1,59],[-1,76],[3,78],[2,70],[2,71],[4,129],[-3,101],[-11,94],[-7,47],[-10,47],[-12,59],[-13,42],[-16,29],[-23,47],[-22,58],[-26,46],[-12,18],[-14,39],[-21,56],[-10,46],[-8,48],[-9,56],[-11,69],[-4,25],[-5,32],[-5,33],[-4,30],[-6,53],[-8,96],[-10,74],[-7,62],[-4,20],[-24,122],[-23,45],[-35,70],[-22,33],[-11,-96],[-37,-329],[-10,-89],[-20,-156],[-4,6],[-52,90],[-41,70],[0,21],[2,28],[4,19],[3,18],[1,4],[-11,21],[-11,22],[-1,1],[-52,101],[-25,47],[16,177],[7,115],[1,140],[2,273],[2,219],[23,297],[20,117],[27,164],[1,2],[15,88],[15,43],[44,124]],[[42369,41465],[-2,-409],[4,-62],[0,-1],[-1,-71],[-2,-151],[-11,-411],[-8,-326],[-15,-551],[-18,-709],[-6,-227],[-17,-671],[-10,-412],[-2,-108],[0,-3],[-11,-439],[-6,-263],[-7,-296],[0,-3],[-27,-567],[1,-38],[-5,0],[-2,-31],[-2,-75],[-21,12],[-13,6],[2,44],[-1,13],[-12,0],[-2,-29],[-46,13],[-8,12],[-1,-5],[-19,-149],[-9,-139],[-1,-37],[-2,-70],[0,-4],[0,-1],[2,-21],[0,-2],[1,-7],[9,-44],[2,-9],[18,-40],[45,-73],[13,-6],[54,58],[2,11],[3,13],[4,20],[2,49],[2,21],[4,19],[6,32],[35,50],[1,1],[13,17],[7,-3],[19,-7],[0,-1],[5,-46],[10,-97],[3,-23],[0,-1],[5,-25],[64,-128],[-25,-117],[-25,74],[-25,-180],[-40,3],[-28,-2],[-64,28],[-10,-370],[-22,-850],[-5,-159],[-25,-950],[-10,-389],[-29,-1101],[-3,-105],[-9,-366],[-2,-79],[-10,-410],[-2,-79],[0,-3],[5,-417],[0,-6],[4,-379],[3,-208],[-3,-90],[-12,-414],[-11,-497],[-2,-84],[85,-13],[-2,-149],[2,-399],[2,-128],[-3,-546],[29,-231],[23,-218],[21,-195],[10,-98],[18,-171],[51,-473],[44,-413],[2,-27],[17,-159],[27,-255],[27,-246],[7,-71],[27,-133],[71,-163],[8,-190],[-13,-93],[1,-172],[21,-132],[26,-171],[23,-193],[11,-95],[6,-55],[0,-2],[21,-69],[72,-11],[40,10],[40,-153],[12,-18],[15,26],[22,22]],[[42831,22531],[-23,-603],[-3,-74],[-7,-116],[-2,-102],[-8,-59],[1,-83],[0,-69],[-4,-82],[-14,-48],[-12,-34],[0,-78],[15,-107],[-2,-174],[26,-207],[-1,-98],[0,-106],[-1,-130],[-1,-68],[-103,-90],[-74,-66],[-82,-76],[-26,-23],[-26,-22],[-55,-48],[-29,-25],[-11,-14],[-1,-1],[-12,-21],[-15,-27],[-12,-20],[-2,-88],[-18,-90],[-1,-2],[-25,-126],[-55,-278],[-8,59],[-15,24],[-12,12],[-10,29],[-15,-29],[1,160],[-34,-11],[-114,-208],[-26,-69],[-35,-90],[2,159],[-51,17],[-22,-80],[-8,-69],[-1,-212],[-9,-45],[-179,-455],[-18,-47],[-102,-382],[-52,-194],[-62,-235],[-90,-339],[-12,-60],[-1,-8],[-25,-127],[-12,-67],[-9,-43],[-13,-65],[-20,-105],[-29,-145],[-18,-96],[-3,-11],[-3,-81],[0,-65],[0,-12],[-26,5],[-17,-91],[-15,-79],[-56,-301],[-36,29],[-91,62],[-106,72],[-186,125],[-32,21],[-40,27],[-13,9],[-79,53],[-35,24],[-99,66],[-77,51],[-23,16],[-108,72],[-15,10]],[[40189,16557],[0,118],[0,257],[-1,470],[0,124],[0,444],[-1,339],[-38,65],[-2,-71],[-2,-40],[-6,-5],[-2,211],[8,23],[3,99],[-8,3],[-6,13],[-8,51],[-7,53],[7,158],[-57,136],[6,85],[6,109],[-68,48],[2,117],[11,472],[-14,26],[-13,39],[-30,8],[-2,0],[-34,9],[-19,-197],[-3,-29],[-2,-18],[-30,-74],[1,-88],[-1,-85],[-7,-198],[-18,-7],[-20,-106],[-10,-20],[-1,-13],[0,-114],[1,-147],[0,-127],[2,-55],[-13,5],[-2,7],[-1,21],[-2,9],[-3,10],[-14,8],[-14,16],[-6,79],[5,192],[-46,16],[-80,29],[-72,22],[-13,4],[0,1],[-5,1],[-11,3],[-31,17],[-8,138],[-3,65],[-14,7],[7,304],[-123,51],[-41,15],[-11,-136],[-19,9],[-19,-6],[-11,65],[-10,47],[-13,64],[-13,68],[-9,112],[-6,92],[7,63],[23,130],[70,-7],[6,412],[1,138],[3,199],[6,0],[0,30],[0,29],[-28,6],[-4,-35],[-34,12],[-1,29],[-29,0],[1,77],[-23,12],[4,112],[0,18],[0,31],[5,-3],[3,-3],[3,117],[3,129],[21,-12],[9,85],[-1,40],[-5,39],[2,33],[-34,27],[-57,52],[-42,40],[-8,7],[3,116],[14,151],[3,78],[-3,81],[-4,35],[1,131],[16,94],[-1,9],[-48,-14],[-6,-25],[-23,-16],[6,455],[1,66],[-15,33],[-2,4],[4,75],[2,7],[-1,5],[0,4],[-19,34],[-10,29],[4,32],[6,69],[16,666],[-19,24],[2,69],[2,86],[9,324],[-11,11],[9,236],[3,94],[9,41],[10,77],[-2,65],[11,35],[-4,77],[-11,71],[-9,53],[-17,12],[-12,5],[-8,54],[-18,47],[-12,29],[-12,-29],[-14,-118],[-14,-64],[-14,-7],[-9,53],[-12,30],[-2,76],[-10,74],[-13,44],[1,59],[-3,83],[-14,12],[-18,-77],[-12,-59],[-18,18],[-15,59],[-12,41],[-16,6],[-13,35],[-11,30],[-14,59],[-7,53],[-17,41],[-15,6],[-14,7],[-12,-59],[-13,-59],[-19,-22]],[[51171,31921],[-15,-39],[-11,-23],[-16,-62],[1,-69],[-5,-62],[-15,-44],[-8,-79],[-15,-35],[-1,-32],[3,-7],[22,-16],[44,-116],[-11,-70],[-34,-128],[-10,-174],[71,3],[7,-40],[-13,-327],[-24,-589],[-14,1],[-45,2],[-11,-137],[-2,-280],[-10,-992],[-12,-392],[-4,-131],[-2,-147],[-12,-744],[3,-134],[16,-889],[8,-444],[13,-714],[8,-462],[7,-364],[-22,-490],[-3,-63],[-2,-63],[-6,-115],[25,-1],[38,-2],[80,-3],[60,-3],[-26,-354],[-3,-58],[-4,-67],[-13,-132],[-14,-127],[-63,-430],[-8,-698],[-28,-111],[-164,-647],[-51,-524],[16,-303],[-1,-4],[-54,-253],[-32,-652],[-1,-67],[-5,-367],[2,-161],[0,-49],[-13,-75],[-10,-78],[-7,-74],[-15,-112],[-9,-45],[-3,-15]],[[50748,18042],[-21,60],[-33,37],[-14,38],[-35,-20],[-4,-2],[-3,0],[-8,-73],[-27,34],[-27,119],[-8,38],[-37,172],[-9,169],[0,1],[-9,64],[-6,10],[-34,25],[-26,-7],[-5,-5],[-24,-42],[-6,-16],[-3,-22],[-1,-4],[-6,-9],[-61,43],[-1,9],[0,41],[5,66],[6,42],[13,59],[1,2],[37,93],[7,43],[0,33],[-4,21],[-17,46],[-12,31],[-13,35],[-39,31],[-44,-1],[-24,-17],[-9,-13],[-3,-19],[2,-61],[0,-105],[-4,-87],[-3,-36],[-6,-77],[-3,18],[-17,125],[-1,8],[-2,103],[-1,79],[-3,315],[0,1],[-2,69],[-1,14],[-6,20],[-12,27],[-6,-4],[-2,-22],[-2,-44],[-4,-23],[-1,-6],[-3,-14],[-23,-129],[-1,-5],[-3,-7],[-8,-14],[-4,-2],[-11,44],[-20,58],[-9,16],[-9,8],[-38,-11],[-3,-1],[-18,23],[-8,16],[-7,30],[-3,26],[-1,17],[0,54],[3,50],[-9,110],[-1,13],[0,5],[-8,18],[-7,1],[-6,-3],[-25,-16],[-5,-4],[-15,-27],[-30,-132],[-7,-30],[0,-1],[-10,-18],[0,-4],[-4,-28],[0,-6],[-5,-8],[-12,-22],[-26,-47],[-10,60],[-6,19],[-46,131],[-21,108],[-42,79],[-11,44],[-2,6],[-17,67],[-68,261],[-59,230],[-37,146],[-44,152],[-79,271],[-58,202],[-27,94],[-822,662],[-544,437],[-14,7],[-1,-39],[-2,-92],[-3,-147],[-2,-82],[-5,-240],[-2,-78],[-2,-125],[-15,20],[-133,184],[0,130],[3,161],[-114,-345],[-23,-72],[-61,-184],[-29,-87],[-1,-2],[-26,-81],[-1,-4],[-1,-8],[33,-181],[24,-133],[-3,-9],[-16,-54],[-77,-261],[-6,91],[-20,127],[-3,21],[-31,5],[-49,13],[-6,14],[-3,9],[-15,253],[-1,11],[-3,12],[-1,6],[-26,34],[-2,6],[-2,15],[-1,54],[-1,6],[-3,43],[-12,66],[-15,81],[-30,-24],[-10,-7],[-13,-10],[0,-19],[0,-17],[-23,9],[-56,21],[-13,6],[-4,-143],[-3,-99],[-49,17],[-2,-142],[-12,-2],[-73,21],[-1,172],[-70,8],[-48,0],[-2,-158],[-1,-115],[-4,-185],[-6,3],[-48,15],[-58,18],[-12,-230]],[[46732,20681],[-10,27],[-26,67],[-19,203],[30,244],[211,273],[4,178],[9,335],[-87,59],[-77,53],[-28,214],[-1,5],[-14,105],[3,130],[-127,43],[0,33],[0,2],[6,211],[-26,0],[4,97],[180,-65],[5,-2],[9,-14],[1,152],[3,322],[0,105],[8,-11],[32,-7],[3,205],[1,87],[-32,7],[-60,13],[-4,1],[-19,2],[-1,32],[-54,20],[-97,37],[2,130],[176,495],[17,363],[4,74],[10,230],[9,199]],[[46777,25335],[22,11],[59,32],[2,96],[5,363],[1,97],[0,5],[3,194],[3,87],[19,744],[1,60],[2,77],[10,400],[102,-38],[6,204],[25,-3],[6,61],[-25,121],[-59,174],[-23,68],[-3,9],[-4,13],[-6,18],[-15,139],[-3,65],[-4,78],[0,59],[-1,28],[1,2],[13,38],[14,32],[3,61],[0,2],[-12,50],[-12,33],[-1,85],[12,65],[12,21],[1,59],[-5,127],[-1,33],[-1,26],[-3,82],[10,369],[5,208],[5,179],[7,287],[6,247],[5,122],[2,120],[20,35],[14,4],[24,59],[-7,74],[-22,221],[-30,305],[-10,107],[-2,424],[1,202],[-3,236],[0,101],[1,293],[2,66],[0,312],[3,625],[3,863],[1,257],[-2,163],[-17,1504],[-1,361],[0,121],[-16,30],[0,2],[0,60],[0,110],[0,51],[0,51],[0,1],[10,30],[1,189],[0,1],[-44,12],[5,193],[0,17],[19,46],[20,50],[9,-5],[11,-6],[10,80],[-14,117],[-15,83],[-11,90]],[[46777,25335],[-131,-67],[-51,-26],[-1,-1],[-59,-30],[-58,-97],[-51,-86],[-57,-701],[-15,-195],[-45,-88],[-85,-165],[-15,-28],[-55,-109],[-53,-189],[-27,-53],[-127,-259],[-17,-112],[-39,-178],[-21,-100],[16,-30],[57,-105],[12,-260],[-105,-65],[-12,289],[-12,-42],[-66,-229],[-18,-65],[-18,2],[-16,2],[-39,5],[-15,1],[-42,5],[-19,0],[-56,-621],[-10,-40],[-10,30],[-14,64],[-23,123],[-30,78],[-23,-54],[-5,-96],[26,-67],[46,-118],[-5,-180],[-7,-9],[-60,102],[-20,9],[-24,12],[-52,25],[-14,6],[-43,21],[-17,-15],[-61,-52],[-20,-10],[-11,-24],[-46,-96],[-88,0],[-4,-135],[-1,-144],[0,-250],[-27,-383],[-17,-227],[-11,-161],[-26,-56],[-43,-95],[-12,-59],[-3,-73],[-7,-53],[-14,-1],[-19,17],[-12,31],[-10,59],[-21,17],[-60,45],[-20,20],[-17,18],[-52,-66],[-21,-27],[-31,106],[-33,87],[-19,54],[-27,41],[-27,42],[-48,111],[1,81],[-17,112],[-27,154],[-2,11],[-29,164],[-49,54],[-57,7],[-8,47],[-6,70],[1,61],[8,83],[2,104],[-15,36],[-28,39],[-10,40],[-7,91],[-7,82],[8,71],[-8,162],[-21,209],[-11,104],[-43,158],[-57,13],[-18,-29],[-49,-22],[-20,-17],[-51,-41],[-35,44],[-9,59],[0,103],[-11,-18],[-8,-56],[-23,-187],[-10,-40],[-12,-27],[-14,-18],[-30,-13],[-31,-22],[-42,-91],[-8,-15],[-4,3],[-1,0]],[[43686,21931],[-10,19],[-2,0],[-29,-7],[-29,-6],[-5,-190],[-12,-2],[-26,100],[-43,166],[-14,211],[-41,201],[-48,13],[-29,-77],[-9,-58],[-12,-61],[-12,14],[-9,58],[-25,82],[-31,101],[-34,53],[-19,30],[-30,46],[-2,3],[-53,83],[-16,2],[-36,-38],[-10,39],[-15,87],[-27,34],[-26,-44],[-7,71],[-11,25],[-13,-35],[-11,-23],[-52,-147],[-65,-184],[-32,-12],[-10,46]],[[73290,28364],[-3,-98],[-22,-219],[0,-6],[-8,-74],[-11,-114],[-50,8],[-25,5],[-3,-122],[-10,-342],[-24,9],[-6,2],[-48,18],[-10,4],[-40,-349],[-87,-103],[-21,-106],[-57,-284],[-15,-74],[-13,-407],[-5,-136],[-1,-3],[-9,-16],[-20,-53],[-8,-27],[-4,-8],[-20,-74],[-5,-37],[-1,-6],[-6,-35],[-14,-41],[-5,-21],[-3,-14],[-13,-47],[-9,-43],[-5,-27],[-10,-31],[-4,-30],[-8,-63],[-14,-73],[-2,-6],[-8,-21],[-8,-17],[-4,-7],[-22,-11],[-9,11],[-20,30],[-3,-2],[-19,-12],[-3,-4],[-7,-18],[1,-65],[7,-101],[9,-64],[8,-85],[-2,-35],[-2,-42],[0,-36],[4,-21],[3,-20],[5,-39],[10,-107],[12,-88],[8,-25],[9,-14],[8,-10],[3,-1],[7,-8],[18,-65],[5,-88],[3,-71],[1,-33],[3,-69],[10,-57],[12,-2],[3,-3],[18,-39],[6,-26],[1,-91],[-9,-59],[-8,-66],[-3,-28],[7,-271],[3,-105],[8,-250],[7,-240],[1,-59],[-96,-478],[-12,-64],[-118,-492],[-63,-103],[-34,-56],[-4,-131],[-3,-134],[18,-274],[-4,-77],[-3,-47],[-5,-110],[59,-99],[-9,-407],[-8,-167],[-7,-149],[-10,-197],[-17,-464],[104,-224],[15,-204],[24,-348],[-65,-406],[-5,-25],[-26,-59],[-82,-341],[-19,-279],[-25,-117],[-13,-59],[-12,-54],[-17,-77],[-65,-128],[-11,-126],[-6,-76],[-79,-136],[-17,-29],[-61,-95],[-82,-129],[-68,-106],[-3,-23],[-35,-306],[-62,-168],[-118,-323],[-1,0],[-14,40],[-74,177],[-8,19],[-100,-48],[-17,59],[-10,21],[-7,8],[-25,-32],[-6,-56],[-13,-26],[-10,-18],[-7,-9],[-23,-50],[-1,-7],[-3,-43],[-1,-19],[-5,-104],[0,-1],[9,-100],[-1,-64],[1,-10],[-4,-85],[0,-1],[-6,-19],[-28,27],[-10,11],[-68,151],[-15,34],[-166,70],[-37,16],[-60,-121],[-21,-43],[-5,9],[-44,74],[-2,4],[-90,-61],[-105,-232],[-103,160],[-60,81],[-8,-11],[-6,-9],[-11,4],[-4,18],[-7,52],[-1,10],[-7,65],[-6,143],[-3,79],[-7,179],[-3,74],[-59,425],[-10,40],[-61,229],[-67,94],[-35,48],[-67,-77],[-26,-132],[-30,-155],[-25,-127],[-32,-166],[-4,-20],[-47,-238],[-25,-44],[-39,-70],[-40,-71],[-84,-359],[-8,-86],[-6,-35],[-4,-8],[-52,-127],[-35,-84],[-29,-69],[-23,-57],[-60,-254],[-10,-46],[-43,-183],[-84,-183],[-4,35],[-11,-414],[-15,-688]],[[69462,13194],[-94,183],[-291,566],[-51,-440],[-26,-221],[-2,-17],[0,-5],[-91,182],[-11,-101],[-11,-95],[-1,-7],[-22,-186],[-50,95],[-1,2],[-38,71],[-1,3],[0,6],[0,1],[85,771],[-48,96],[-14,28],[-124,248],[26,235],[9,79],[11,99],[-90,168],[-118,218],[-55,106],[-42,81],[-40,78],[-83,159],[-35,67],[-47,90],[-59,113],[-155,297],[-72,123],[-11,24],[-15,18],[-42,103],[-1,4],[-68,130],[-66,126],[-41,78],[-392,750],[-15,30],[-86,165],[-67,128]],[[67117,17843],[9,41],[13,59],[13,41],[11,47],[9,48],[7,47],[11,41],[11,49],[14,78],[28,133],[6,59],[3,32],[91,439],[27,92],[218,743],[13,27],[139,192],[17,23],[38,53],[247,340],[56,76],[110,-11],[1,276],[3,391],[0,153],[-100,0],[2,554],[27,0],[-1,47],[0,77],[-27,6],[0,131],[0,7],[1,278],[0,515],[-2,202],[1,182],[-1,620],[0,265],[1,307],[-19,-2],[-8,0],[-22,0],[-7,0],[-2,100],[-9,109],[-29,81],[-1,-163],[-26,7],[1,74],[-75,0],[0,273],[0,111],[-52,-6],[0,207],[-1,5],[52,8],[-3,362],[0,18],[-25,191],[-9,62],[-17,-3],[-53,3],[-10,3],[-1,22],[1,30],[1,152],[-10,67],[-10,62],[13,57],[5,64],[-3,63],[-1,110],[0,18],[-25,-5],[-52,-9],[1,123],[49,0],[6,167],[6,60],[10,39],[30,6],[9,91],[-4,235],[-5,12],[-10,22],[-5,10],[-33,316],[-17,84],[-3,20],[-23,119],[-8,-6],[-23,-3],[-66,-8],[-1,0],[-12,-1],[-1,271],[67,5],[16,1],[22,91],[0,67],[-78,764],[-159,1558],[-91,896],[-113,1106],[-19,184],[-178,1666],[-15,141],[-8,72],[-46,436],[-1,462],[-209,-2],[0,76],[0,228],[0,4],[0,88],[5,69],[10,102],[7,155],[3,51],[0,7],[4,63],[-9,2],[-8,0],[-12,0],[1,74],[1,360]],[[66807,37496],[-2,215],[-37,2],[-1,111]],[[34808,27238],[-38,15],[-2,-1],[-3,-2],[-30,15],[-163,80],[-39,19],[-40,20],[-1,0],[-32,16],[-27,13],[6,219],[0,2],[4,139],[2,86],[3,68],[-79,-15],[-27,-5],[-38,-7],[-34,-6],[-20,-4],[-37,-8],[-32,-5],[-34,-11],[-46,-16],[-1,1],[-21,14],[-47,28],[-53,58],[-26,29],[-16,8],[-18,13],[-19,9],[-21,2],[-235,0],[-390,-1],[-75,0],[-62,0],[-25,0],[-61,0],[0,-63],[0,-469],[1,-404],[1,-180],[-1,-355],[-1,-269],[-1,-206],[0,-82],[0,-81],[0,-87],[-36,1],[-119,2],[-2,91],[-31,4],[-73,11],[-70,10],[-14,2],[1,-469],[-80,1],[-170,-10],[-111,7],[-8,-18],[-50,-124],[-9,-31],[-16,-797],[-27,0],[-18,14],[-92,5],[-7,0],[-12,1],[-51,3],[-23,1],[-136,-3],[-237,-6],[-73,-2]],[[31566,24508],[1,314],[0,149],[-25,6],[-27,64],[-15,30],[-43,67],[-68,143],[-21,1],[-25,2],[-29,7],[-47,406],[-44,47],[-40,450],[3,85],[8,237],[4,217],[-37,16],[-168,78],[-88,34],[0,159],[-31,-2],[-70,-4],[-48,70],[-11,16],[2,537],[1,336],[0,85],[1,411],[1,153],[2,265],[-2,1],[-31,1],[-105,2],[-45,1],[-34,0],[-102,1],[-113,1],[-35,19],[-49,139],[-93,264],[-66,61],[-100,91],[-12,11],[-40,37]],[[2951,23966],[-97,-195],[-35,-31],[-41,-35],[-66,-41]],[[2712,23664],[-79,214],[-68,180],[-67,148],[-152,590],[-52,353],[-109,178],[-113,83],[-29,-45],[-57,-87],[-77,-401],[-17,-448],[44,-686],[78,-520],[-29,-33],[-80,-88],[-227,0],[-69,124],[-90,316],[-7,232],[96,1419],[1,378],[18,317],[296,777],[36,95],[125,313],[29,427],[54,772],[63,471],[113,397],[96,95],[124,29],[68,-74],[91,-311],[81,-455],[-1,-229],[-39,-519],[-40,-740],[0,-332],[41,-631],[98,-479],[-85,-414],[16,-108],[15,-96],[2,-11],[53,-338],[44,-285],[14,-84],[30,-192]],[[9648,24778],[-163,18],[-103,11],[-33,36],[-13,1],[-270,20],[-24,1],[-79,6],[-14,3],[-65,5],[-28,2],[-14,-20],[-27,-38],[-2,-3],[-49,-69],[-46,-63],[-24,-25],[-18,-18],[-13,-12],[-17,-18],[-33,-100],[-27,-41],[-21,-32],[-12,-18],[-24,-25],[-25,-26],[-50,80],[-18,-61],[-2,-9],[-18,-64],[-30,31],[-5,5],[-12,13],[-32,-27],[-43,-86],[-65,22],[-40,-115],[-17,-47],[-51,-30],[-6,-120],[-14,-6],[-73,-27],[-5,5],[-25,-39],[-3,-53],[-7,-121],[-8,-131],[-46,-28],[-28,-18],[-36,-66],[-23,-164],[-9,-56],[-21,-91]],[[7817,23170],[-27,14],[-27,-95],[-83,-163],[-7,-13],[-5,74],[-4,55],[7,62],[5,48],[7,64],[-1,126],[0,16],[-1,90],[73,464],[-63,-5],[-83,-7],[-69,4],[-105,10],[-131,6],[-213,23],[-83,12],[1,120],[2,198],[4,555],[-15,6],[12,238],[1,33],[-19,12],[-59,41],[-11,-300],[-72,73],[-3,3],[-46,53],[-98,11],[-14,1],[12,-47],[-41,-12],[22,-283],[-70,24],[-57,25],[-106,32],[-31,9],[-12,3],[-13,4],[-35,11],[-86,25],[-12,3],[-25,8],[-18,6],[-43,12],[-22,7],[-5,-181],[-12,-590],[-7,-316],[-47,29],[-155,86],[-41,21],[-109,5],[-3,0],[-14,1],[-37,-2],[-64,-4],[-56,6],[-73,-4],[-98,4],[-97,-4],[-49,5],[-7,0],[-27,3],[-22,5],[-26,7],[-77,31],[-211,92],[-63,44],[-103,66],[-129,44],[-97,13],[-104,28],[-158,0],[-79,0],[-90,5],[-197,0],[-107,18],[-120,44],[-91,24],[-1,1],[-130,20],[-182,32],[-52,16],[-37,5],[-77,19]],[[3099,24399],[-69,125],[-5,9],[-102,294],[38,180],[79,357],[18,236],[10,133],[42,218],[95,243],[10,68],[9,305],[38,267],[10,289],[-1,295],[90,1005],[-2,176],[-16,145],[-148,497],[-119,803],[-58,711],[-17,841],[100,1232],[15,461],[132,469],[114,48],[216,256],[34,40],[89,-62],[129,-302],[218,-739],[30,-212],[10,-329],[-21,-349],[-1,-7],[96,-375],[88,-175],[34,-9],[22,24],[43,-11],[43,-70],[12,-4],[77,-20],[38,20],[42,26],[23,22],[33,108],[40,382],[29,443],[-11,175],[-44,87],[-5,10]],[[67117,17843],[-16,-59],[-23,-109],[-14,-67],[-21,-101],[-20,-96],[-15,-70],[-23,-111],[-106,-508],[-319,17],[-41,2],[-105,6],[-86,4],[-159,9],[-597,32],[-33,2],[-104,6],[-51,2],[-50,3],[-190,10],[-7,1],[-4,-2],[-3,-24],[-31,-221],[-84,-600],[-39,-1],[-35,-1],[-17,0],[0,-229],[0,-182],[-2,-1],[-15,0],[-88,-41],[-48,-108],[-57,-186]],[[64714,15220],[-14,112],[-6,25],[-3,11],[-11,6],[-27,-13],[-15,-7],[-4,16],[-4,17],[-4,13],[-17,215],[1,87],[9,36],[3,1],[8,3],[47,15],[13,-10],[14,-11],[16,-32],[6,-3],[11,-5],[14,-7],[6,5],[14,48],[5,30],[1,8],[5,136],[1,12],[-5,29],[-30,171],[-13,71],[-9,51],[-16,31],[-30,56],[-36,101],[-14,21],[-6,9],[-26,13],[-24,-33],[-6,-9],[-17,-23],[-68,-173],[-38,-121],[-16,-52],[-22,-45],[-18,-15],[-6,3],[-17,8],[-21,11],[-33,48],[-15,39],[-7,19],[-18,110],[-2,11],[-6,93],[-4,72],[-16,156],[-1,11],[0,9],[-2,48],[-5,53],[0,1],[-10,97],[-3,18],[-11,62],[-1,7],[-1,1],[-20,44],[-23,51],[-3,6],[-7,33],[-4,18],[-3,12],[-3,25],[1,41],[1,24],[1,29],[5,38],[7,23],[8,26],[2,6],[5,8],[3,4],[8,8],[62,62],[11,2],[55,-27],[34,-41],[3,-17],[55,-20],[5,-1],[14,25],[25,43],[26,99],[6,92],[7,228],[-1,90],[0,39],[-2,10],[-6,22],[0,1],[-2,7],[-1,7],[-2,7],[0,5],[-14,89],[-2,7],[-6,29],[-7,21],[-7,12],[-13,7],[-30,-18],[-50,-37],[-9,-7],[-4,-2],[-28,-33],[-6,-9],[-39,-63],[-1,-2],[-2,-2],[0,-1],[-28,-25],[-2,-1],[-2,-1],[-2,-1],[-16,0],[-2,1],[-2,1],[-1,1],[-21,18],[-8,8],[-26,95],[-20,76],[-2,6],[-3,14],[-19,69],[-22,80],[-4,16],[-25,204],[-12,59],[-56,236],[-40,139],[-95,254],[-20,105],[-9,84],[-11,101],[-4,20],[-8,41],[-2,6],[-8,24],[-3,1],[-12,6],[-10,5],[-18,-11],[-12,-7],[-5,3],[-13,6],[-25,13],[-25,38],[-11,17],[-1,-3],[-4,-11],[-22,42],[-14,25],[-33,59],[-3,7],[-5,25],[-5,23],[-4,22],[-7,147],[1,58],[3,147],[-2,81],[-26,128],[-10,17],[-23,11],[-12,-18],[-9,-29],[-17,-54],[-4,-10],[-32,-81],[-4,-9],[-20,-38],[-27,-11],[-16,11],[-10,7],[-16,11],[-13,30],[-65,254],[-18,73],[-13,86],[-6,57],[-3,31],[-12,129],[-44,254],[-1,7],[-6,16],[-21,52],[-34,17],[-29,149],[-46,23],[-23,74],[-22,43],[-12,66],[-15,74],[-16,48],[-26,6]],[[22499,25718],[-2,-98],[-1,-34],[-3,-302],[-2,-161],[113,-122],[-2,-226],[-39,5],[-2,-283],[0,-75],[-74,3],[-1,-93],[-3,-329],[-2,-318],[-2,-191]],[[22479,23494],[-39,3],[-1,0],[-19,-4],[-32,-5],[-1,-237],[-1,-138],[-154,16],[3,153],[0,66],[2,127],[-461,84],[0,-107],[-4,0],[-59,8],[3,59],[-3,60],[-74,18],[-9,2],[-41,9],[-318,75],[-467,26],[-165,11],[-512,-179],[-72,-26],[-33,-11],[-177,-161],[-31,-28],[-120,-108],[-377,-800],[-50,-124],[-13,-33],[-234,-1128],[0,-195],[1,-721],[-22,0],[-15,0],[0,-130],[0,-244],[42,0],[-1,81],[57,3],[34,1],[0,-181],[-47,0],[-24,-300],[-90,-1],[-56,-1],[0,101],[0,286],[-25,0],[0,260],[-50,1],[-13,-86],[-89,-599],[-14,-94],[-41,-481],[-15,-161],[-41,-465],[-5,-57],[-13,-135],[-26,-469],[-30,-442],[-21,-384],[-3,-62],[-12,-426],[-102,8],[-3,-54],[-1,-28],[-17,-273],[-9,-119],[-13,-150],[-31,1],[-83,1],[-69,2],[-65,1],[-102,3],[-55,-1],[-64,-1],[-106,-1],[-88,-2],[-53,0]],[[17640,15608],[-4,147],[-22,606],[-33,902],[-5,147],[-4,98],[-24,699],[-2,69],[-19,543],[-5,151],[-5,144],[-15,434],[-19,562],[31,2],[0,92],[0,206],[-1,21],[-27,6],[-2,-8],[-21,335],[-5,81],[-3,60],[-5,73],[-49,287],[-27,159],[-9,56],[-8,47],[-15,89],[-1,11],[-29,166],[-25,150],[-22,129],[-8,50],[-16,106],[-16,106],[-28,164],[-30,159],[-23,116],[-12,58],[-12,61],[-23,98],[-26,83],[-5,64],[-28,122],[-36,165],[-1,5],[-41,183],[-15,69],[-2,178],[2,287],[0,226],[0,78],[1,262],[2,803],[1,580],[0,11],[1,134]],[[58686,21902],[-17,-141],[-41,-370],[-6,-54],[-15,-127],[-11,-105],[-104,-937],[-26,-229],[-12,-114],[-24,-143],[-4,-18],[-18,-99],[-12,-84],[-37,-240],[-40,-225],[-14,-81],[-43,-276],[-36,-224],[-22,-135],[-17,-103],[-23,-142],[-7,-46],[-36,-230],[-16,-94],[-49,-309],[-19,-110],[-84,-529],[-2,-9],[-32,-205],[-123,-769],[-23,-143],[-43,-273],[-1,-1],[-8,-56],[0,-1],[-35,-221],[-30,-190],[-106,-664],[-44,-274],[-58,-353],[0,-1],[-115,-721],[-16,-96],[-43,-272],[-14,-89],[-14,-87],[-27,-165],[-1,-4],[-12,-73],[-7,-49],[-11,-82],[-10,-66],[-64,-397],[-56,-345],[-59,-385],[-50,-305],[-34,-206],[-89,-539]],[[56826,9696],[4,222],[-3,81],[0,81],[1,98],[-16,192],[-25,120],[-9,67],[-18,116],[-26,237],[11,40],[0,106],[5,151],[2,72],[10,61],[5,97],[17,104],[16,38],[13,50],[-6,122],[-9,90],[-10,98],[-19,85],[-8,43],[-21,144],[-5,61],[-4,86],[-5,93],[1,60],[3,62],[8,43],[12,46],[11,35],[16,127],[-2,86],[-7,103],[-8,62],[-6,69],[-8,45],[-21,61],[-16,82],[-12,112],[-6,76],[-10,66],[-4,61],[-14,107],[-2,81],[4,79],[-2,88],[-15,96],[-4,64],[-9,55],[-12,30],[-33,63],[-38,179],[-75,375],[-9,45],[-85,425],[9,79],[-11,90],[-14,53],[-11,30],[-14,9],[-11,28],[-19,75],[-12,35],[-6,127],[-33,40],[-12,35],[-13,18],[-13,-1],[-5,56],[-15,53],[0,228],[-15,61],[-8,51],[-5,28],[-10,64],[-95,168],[-5,22],[-19,99],[-14,17],[-10,-34],[-6,-3],[-17,-9],[-17,12],[-15,23],[-12,-21],[-13,26],[-12,20],[-12,18],[-18,31],[-19,28],[-22,-2],[-17,-17],[-18,0],[-19,-32],[-13,34],[-11,4],[-13,51],[-11,39],[-11,-28],[-24,12],[-14,36],[-13,61],[-12,13],[-16,-2],[-17,-4],[-15,44],[-21,49],[-9,63],[-2,112],[-9,71],[-11,114],[-14,48],[-35,85],[-11,25],[-42,95],[-51,119],[-33,79],[-20,46],[-18,42],[-37,91],[-48,106],[-69,161],[-53,121],[-19,45],[-36,83],[-53,122],[-30,67],[-56,126],[-16,35],[-75,185],[-4,121],[-17,528]],[[54846,19838],[17,102],[45,302],[23,144],[14,92],[9,68],[21,143],[30,221],[11,152],[10,48],[18,62],[26,66],[15,22],[23,15],[13,-7],[13,-18],[16,-7],[13,-9],[24,-8],[3,102],[16,-13],[12,241],[35,26],[30,124],[38,109],[27,122],[9,-62],[47,103],[12,34],[28,72],[-5,57],[8,206],[21,51],[9,54],[11,108],[-26,67],[-4,74],[-2,67],[19,-11],[10,56],[5,76],[18,57],[10,34],[10,35],[-3,67],[9,85],[6,68],[28,95],[10,88],[10,46],[19,20],[40,141],[-25,67],[-37,104],[5,315],[-20,94],[14,24],[1,67],[13,4],[15,12],[2,72],[3,76],[8,62],[28,175],[9,73],[13,102],[12,106],[-165,35],[-109,25],[-41,10],[4,200],[10,594],[-7,111],[-57,46],[-17,-30],[-12,-96],[-44,142],[-18,50],[-29,80],[-50,139],[-44,173],[-10,293],[-3,138],[-12,379],[-25,814],[-14,140],[4,83],[48,1079],[2,354],[-41,211],[-25,68],[-42,114],[-12,31],[-23,54],[-20,51],[-40,109],[-28,105],[-15,35],[-25,62],[-48,113],[-13,32],[-35,86],[-13,31],[-26,111],[-23,127],[-36,158],[-41,140],[-11,24],[-18,23],[-12,15],[-14,47],[-25,100],[-33,188],[-14,28],[-10,52],[-11,28],[-34,88],[-16,66],[-12,51],[-20,56],[-21,33],[-15,46],[-12,14],[-15,61],[-17,70]],[[54846,19838],[-20,-38],[0,-1],[-19,-19],[-67,-68],[-53,-61],[-77,-78],[-62,-74],[-68,-64],[-103,-110],[-65,-67],[-76,-83],[-69,-71],[-45,-46],[-42,-47],[-22,-19],[-71,-75],[-82,-56],[-45,-10],[-28,-6],[-49,-11],[-18,90],[-10,45],[-33,19],[-9,-15],[-32,-50],[-41,-66],[-75,-82],[-28,-173],[-6,-154],[-6,-148],[-49,-78],[-48,-76],[-26,-36],[-14,-33],[-12,-15],[-14,-34],[-4,-31],[-31,-18],[-127,236],[-37,-23],[-23,-13],[-36,-117],[20,-316],[9,-151],[33,-517],[6,-96],[10,-162],[22,-331],[4,-66],[24,-378],[18,-290],[14,-240],[8,-137],[0,-5],[16,-257],[-260,-693],[-62,-166],[-59,-139],[-97,-260],[-27,-69],[-32,-86],[-38,14],[-4,1],[-72,20],[-122,74],[-86,52],[-21,13],[-21,14],[-22,15],[-74,127],[-63,107],[-123,335],[-184,496],[-26,70],[-18,48],[-56,149],[-17,44],[-4,9],[-57,-126],[-13,-17],[-12,0],[-16,6],[-28,11],[-35,7],[-30,8],[-34,38],[-23,8],[-14,0],[-14,-20],[-23,-30],[-1,-2],[-18,-49],[-11,-55],[-12,-54],[-54,-302],[-22,-93],[-55,-177],[-23,-71],[-19,-40],[-66,-147],[-4,-7]],[[51216,14179],[0,7],[-17,160],[-5,64],[-45,399],[-101,862],[-7,50],[-18,138],[-11,79],[-7,57],[-24,188],[-33,224],[-30,198],[-37,241],[-37,243],[-21,143],[-10,64],[-19,211],[-16,180],[-25,295],[-4,44],[-1,16]],[[31566,24508],[-1,-522],[-3,-857],[-2,-223],[-2,-368],[-2,-666],[-1,-181],[0,-150],[-1,-134],[-1,-352],[-1,-226],[0,-8],[-1,-191],[-1,-175],[0,-107],[-1,-125],[-2,-393],[0,-1],[-2,-331],[-3,-518],[-1,-163],[-3,-736],[-3,-534],[-3,-467],[-1,-179],[0,-126],[-1,-150],[0,-150],[0,-99],[-1,-621],[-1,-311],[-1,-690],[0,-479],[0,-171],[-1,-362],[0,-202],[0,-729],[0,-81],[-1,-127],[0,-171],[0,-402],[3,9],[16,18],[9,18],[3,14],[4,93],[4,49],[0,19],[0,1],[4,-2],[10,-6],[19,-7],[-6,-215],[-5,-193],[-30,-1001],[12,-52],[8,-64],[-13,-119],[-1,-5],[-21,-129],[-1,-7],[0,-1],[-2,-69],[-1,-11],[1,-76],[1,-3],[2,-32],[3,-22],[1,-9],[3,-8],[5,-60],[0,-14],[-5,-85],[0,-57],[0,-2],[-5,4],[-5,20],[-4,46],[-5,61],[-4,19],[-16,34],[-12,2],[-13,-9],[-7,-11],[-3,0],[-1,-3],[0,-32],[0,-285],[0,-404],[-32,-6],[-48,-15],[1,-466],[2,-576],[5,-1234],[2,-669],[7,-2029],[63,-1],[-2,-264],[57,-7],[16,-2],[-2,-162],[55,-8],[-1,-110],[-51,5],[-48,5],[0,-247],[18,-5],[2,-331],[0,-3],[0,-99],[12,-10],[-1,-151],[-16,0],[-2,0],[-28,0],[-11,0],[-11,-10],[-9,-9],[-1,1],[-4,0],[-93,29],[-138,47],[-5,-198],[0,-9],[-15,-590],[-6,-11],[-16,-54],[-23,-74],[-2,-25],[-1,-85],[4,-66],[12,-111],[6,-59],[0,-42],[-6,-89],[1,-81],[1,-31],[4,-53],[6,-65],[10,-89],[10,-161],[1,-17]],[[31196,1207],[-3,0],[-152,5],[-583,20],[-196,7],[-390,13],[-187,7],[-862,28],[-62,2],[-32,1],[-1220,40],[-671,22]],[[26838,1352],[0,127],[0,198],[0,214],[0,17],[0,29],[0,275],[1,1069],[1,856],[1,235],[0,558],[1,608],[1,710],[1,806],[1,288],[0,75],[0,2],[1,782],[-1,180],[1,419],[0,116],[3,899],[1,246],[1,499],[1,210],[1,293],[1,571],[3,909],[1,296],[2,807],[0,70],[1,169],[0,21],[0,92],[2,536],[5,1221],[2,626],[2,341],[2,775],[2,463],[0,4],[0,63],[1,418],[-12,-2],[-16,-19],[-12,6],[-15,36],[-10,43],[-21,15],[-17,8],[-11,20],[-15,39],[-9,43],[-6,51],[-9,54],[-12,56],[-17,39],[-17,-22],[-14,-17],[-16,-27],[-13,4],[-16,-31],[-22,15],[-12,13],[-13,-28],[-11,25],[-14,11],[-15,-21],[-11,-64],[-13,-18],[-13,-34],[-16,23],[-17,11],[9,53],[1,59],[3,109],[-11,25],[-1,102],[3,70],[21,115],[18,40],[-4,97],[1,114],[-3,78],[-17,85],[-12,45],[-6,56],[10,78],[3,67],[3,58],[1,60],[0,34],[0,58],[4,68],[9,101],[3,65],[5,62],[-13,54],[-13,3],[-12,36],[-7,63],[11,156],[7,65],[13,-2],[19,168],[14,28],[12,30],[12,2],[5,92],[6,62],[7,71],[7,47],[4,70],[16,102],[8,101],[4,69],[6,113],[-17,95],[-1,59],[-17,28],[-10,62],[-6,58],[-6,85],[-3,70],[-18,79],[-21,83],[-19,81],[2,94],[-24,59],[-1,60],[9,51],[15,71],[9,49],[11,52],[-16,71],[-16,15],[-8,-57],[-12,-29],[-12,-17],[-5,-67],[-8,-48],[-15,35],[-15,5],[-8,53],[-16,5],[0,134],[-1,190],[0,13],[0,177],[0,147],[0,96],[0,143],[0,75],[0,125],[0,82],[0,158]],[[35823,26558],[-3,-58],[-20,-475],[-6,-152],[-7,-176],[-1,-18],[-19,-535],[-6,-133],[-20,-694],[-5,-188],[-6,-396],[-4,-237],[4,-367],[2,-75],[3,-113],[-1,-135],[-1,-266],[0,-65],[1,-59],[3,-988],[0,-69],[-2,-445],[-2,-166],[0,-91],[-4,-430],[0,-431],[0,-431],[-2,-460],[-1,-105],[0,-5],[0,-70],[-1,-275],[-85,15],[-5,-211],[-106,15],[-5,-297],[57,-13],[67,-15],[74,-33],[-7,-996],[-1,-68],[-4,-541],[-3,-397],[-2,-154],[-2,-244],[-3,-136],[-2,-98],[-6,-246],[-2,-81],[-6,-271],[-5,-253],[34,-19],[1,35],[31,-15],[-6,-354],[-12,-81],[-54,20],[-1,-93],[-1,-6],[0,-9],[23,-43],[5,-5],[10,-3],[-3,-96],[-12,-387],[24,-17],[2,35],[1,0],[68,-48],[-17,-367],[-100,41],[-4,-123],[-3,-116],[14,-19],[28,-30],[-1,-191],[-2,-169],[-11,-325],[-10,-288],[-31,13],[3,-128],[9,-3],[-15,-405],[21,-18],[-7,-248],[45,-24],[25,-13],[-6,-161],[93,-39],[-2,8],[-1,12],[-2,23],[38,-13],[-2,-130],[67,-32],[-2,-75],[-3,-99],[16,-14],[-6,-194],[-9,-264],[-73,40],[-40,-940],[-5,-132],[66,-44],[35,-24],[-4,-110],[-14,-358],[-8,-158],[-2,-45],[-71,51],[-17,15],[-44,32],[-18,-559],[-3,-142],[-4,-170],[-7,-235],[13,-8],[16,-8],[35,-21],[-11,-329],[-7,-198],[-61,15],[-2,-96],[-6,-208],[-25,-869],[-2,-88],[-9,-341],[-13,-471],[-3,-91],[-11,-368],[-5,-204],[-2,-104],[1,-98],[0,-51],[3,-318],[0,-4],[1,-114],[1,-84],[2,-70],[0,-3],[0,-25],[-1,-53],[0,-8],[1,-96],[0,-90],[0,-23],[0,-144],[2,-183],[1,-239],[4,-442],[0,-132],[0,-208],[0,-216],[-6,-215]],[[35621,965],[-865,79],[-591,54],[-48,4],[-55,2],[-1171,42],[-579,21],[-769,28],[-318,11],[-29,1]],[[61912,17967],[26,-221],[0,-6],[-11,-142],[-53,-99],[-18,-34],[-19,-257],[-5,-144],[-21,-100],[-17,-68],[-22,-86],[-23,-324],[-15,-18],[-14,41],[-14,12],[-15,-41],[-3,-59],[-5,-59],[3,-65],[8,-53],[10,-36],[17,-41],[11,-65],[7,-53],[-4,-71],[-3,-59],[-10,-54],[-23,-120],[-43,-227],[-76,-626],[-33,-430],[-7,-99],[-34,-455],[-87,-549],[-7,-136],[-13,-76],[-11,-59],[-13,-65],[-9,-71],[-9,-41],[-14,29],[-14,30],[-22,12],[-13,-98],[-24,-214],[-13,-97],[-10,-223],[-28,-201],[-6,-81],[-2,-70],[-8,-87],[-10,-73],[-1,-138],[-5,-98],[-2,-89],[2,-88],[-2,-71],[-9,-48],[22,-14],[11,-6],[23,-12],[-3,-131],[-3,-104],[-8,-178],[-3,-55],[-18,-272],[-14,-217],[-44,-169],[8,-120],[-7,-65],[-26,18],[-12,-62],[1,-76],[-2,-68],[-9,-38],[-17,18],[-37,40],[-16,8],[-11,-251],[-1,-20],[-9,-218],[-7,-642],[-4,-142],[9,-45],[1,-8],[21,-97],[58,-540],[27,-267],[26,-227],[8,-80],[25,-228],[10,-87],[5,-95],[6,-144],[3,-79],[7,-161],[1,-21],[2,-64],[2,-67],[5,-91],[2,-46],[-29,-239],[12,-143],[67,-202],[92,-163],[-79,-746],[87,-215],[-57,-536],[-25,-239],[57,-391],[41,-286],[74,-217],[174,-511],[120,-398],[-40,-304],[-176,-1320]],[[61526,273],[-4,0],[-1336,-61],[-675,-31],[-245,-11],[-143,-7],[-88,-4],[-67,-3],[-740,-33],[-250,-23],[-33,-3],[-177,-15],[-64,-6],[-57,-5],[-131,-12],[-36,-3],[-34,-3],[-262,-23],[-101,-9],[-154,-3],[-150,-2],[-43,-1],[-51,-1],[-94,-1],[-35,-1],[-139,-2],[-97,-2],[-306,-5],[-74,-1],[-119,-2]],[[55821,0],[-9,233],[13,-8],[13,-3],[14,1],[22,1],[12,5],[13,38],[8,39],[3,15],[11,67],[12,20],[17,-2],[11,30],[14,39],[17,61],[17,55],[7,52],[6,50],[12,48],[11,13],[15,27],[15,12],[11,-24],[21,-19],[8,58],[14,7],[13,13],[16,-3],[20,26],[-5,70],[8,42],[1,75],[15,-3],[17,25],[15,74],[20,46],[13,-38],[14,11],[15,58],[15,89],[17,24],[13,34],[11,16],[14,59],[3,66],[11,66],[13,57],[7,51],[12,51],[20,63],[10,61],[6,83],[9,88],[-4,81],[5,56],[14,55],[-9,54],[-3,81],[-1,68],[6,100],[-11,38],[3,66],[15,30],[15,26],[13,-16],[11,38],[8,48],[-4,61],[7,72],[9,70],[12,81],[7,52],[1,3],[4,53],[4,60],[4,64],[4,71],[7,71],[14,38],[15,-5],[18,51],[20,1],[12,-16],[55,1],[62,-175],[78,134],[-1,112],[46,242],[37,477],[8,107],[48,221],[37,176],[49,365],[7,76],[6,75],[11,213],[25,685],[-27,81],[-33,102],[-12,100],[4,160],[-34,152],[-16,71],[-10,61],[-14,21],[-12,3],[-17,46],[-14,48],[-19,70],[-18,35],[-12,51],[-13,58],[-17,10],[-30,-16],[-17,3],[-20,-11],[-16,21],[-17,-28],[-14,4],[-12,12],[23,420],[21,438],[0,5],[11,151],[3,73],[4,30],[5,51],[4,62],[12,67],[8,91],[-2,81],[0,3],[3,70],[2,20],[7,60],[5,77],[3,79],[4,59],[-2,84],[4,110],[-6,69],[-12,81],[-5,84],[-7,75],[5,58],[10,64]],[[40189,16557],[0,-311],[0,-491],[-1,-155],[-3,-409],[-1,-89],[0,-49],[-3,-423],[-1,-160],[-1,-268],[-4,-488],[-5,-832],[-3,-479],[-1,-76],[0,-2],[-1,-195],[-8,-1333],[-1,-161],[0,-2],[-1,-128],[0,-33],[-2,-383],[-1,-70],[0,-104],[-5,-657],[0,-62],[-1,-155],[-3,-471],[-1,-190],[-2,-349],[-5,-690],[-2,-395],[-1,-67],[0,-8],[0,-136],[-2,-323],[0,-101],[-1,-98],[0,-10],[-2,-340],[0,-2],[-4,-751],[-1,-267],[-1,-242],[-4,-673],[-2,-445],[-1,-81],[-1,-130],[0,-60],[-1,-207],[-1,-176],[-2,-246],[0,-105],[-5,-711],[-1,-164],[-3,-215],[-2,-64],[1,-318],[-1,-345],[0,-2],[8,-135]],[[40106,525],[-62,6],[-65,7],[-9,1],[-32,3],[-66,6],[-268,27],[-1051,104],[-691,66],[-141,13],[-1739,166],[-207,20],[-67,9],[-87,12]],[[17640,15608],[-1,-189],[-4,-475],[-4,-443],[-4,-592],[0,-6],[-1,-110],[-8,-916],[0,-70],[-1,-150],[-4,-435],[-1,-145],[0,-14],[0,-63],[-1,-165],[-5,-531],[-4,-443],[-1,-152],[0,-96],[-2,-113],[0,-87],[-2,-234],[-6,-743],[-1,-117],[-5,-677],[-1,-104],[-1,-157],[-2,-554],[1,-289],[1,-323],[1,-220],[0,-411],[0,-281],[-3,-271],[1,-299],[0,-1046],[0,-6],[0,-588],[0,-26],[0,-126],[0,-10],[1,-112],[1,-154],[1,-216],[0,-80],[0,-64],[1,-549],[1,-332],[0,-3],[0,-1],[0,-61],[0,-86],[1,-278],[1,-563],[0,-142],[1,-250],[0,-33],[-6,-285]],[[17584,722],[-68,-1],[-351,-1],[-409,-3],[-378,-2],[-31,-1],[-1043,-6],[-381,-3],[-323,-4],[-626,-9],[-1142,-16]],[[12832,676],[1,128],[0,1],[2,202],[4,662],[2,318],[3,351],[1,201],[3,117],[0,135],[3,355],[1,174],[0,8],[1,85],[1,69],[0,78],[1,100],[0,95],[1,59],[0,27],[1,136],[1,84],[1,63],[-1,108],[1,109],[2,159],[1,138],[3,265],[0,16],[3,434],[2,204],[0,73],[1,169],[1,240],[0,70],[1,86],[1,101],[1,125],[1,72],[1,79],[4,117],[-1,131],[0,111],[1,102],[0,148],[1,141],[2,288],[0,68],[3,382],[-1,285],[6,303],[2,386],[1,225],[3,510],[1,90],[1,165],[1,186],[2,258],[1,252],[2,117],[4,628],[5,721],[2,424],[2,255],[2,316],[2,265],[0,5],[0,77],[1,176],[1,187],[2,359],[2,217],[5,911],[3,377],[0,63],[1,68],[3,327],[0,166],[0,1],[1,131],[1,81],[1,251],[1,152],[3,602],[2,173],[2,179],[4,722],[1,99],[0,1],[3,437],[0,6],[1,121],[1,176],[3,653],[1,158],[4,618],[3,374],[4,679],[1,114],[1,169],[3,442],[1,89],[2,223],[3,99],[4,548],[2,233],[4,519]],[[26838,1352],[-103,4],[-71,2],[-872,34],[-1227,69],[-166,10],[-73,4],[-4,0],[0,-13],[33,-718],[-57,0],[-43,0],[-502,-3],[-857,-4],[-72,0],[-345,-2],[-207,8]],[[22272,743],[4,264],[2,222],[11,1186],[1,225],[12,1327],[2,194],[1,119],[0,55],[0,4],[2,175],[4,500],[1,73],[5,559],[1,116],[1,136],[4,403],[1,154],[2,172],[2,240],[3,320],[0,6],[3,238],[1,156],[4,372],[4,422],[1,136],[2,229],[1,114],[3,406],[1,185],[4,429],[3,477],[2,243],[4,433],[1,197],[5,578],[1,177],[2,258],[0,1],[8,1021],[1,105],[1,99],[1,124],[1,137],[3,431],[1,151],[2,240],[1,90],[1,70],[0,5],[1,159],[1,165],[3,411],[2,66],[2,91],[0,81],[0,65],[5,205],[1,69],[2,62],[2,89],[2,607],[0,106],[3,339],[1,123],[1,84],[1,103],[1,120],[2,265],[1,76],[1,165],[-88,8],[0,761],[6,5],[13,49],[8,51],[1,109],[-1,478],[59,-2],[22,0],[1,155],[4,459],[1,170],[3,396],[3,261],[3,369],[6,488],[0,3],[2,160],[2,222],[0,1],[1,93],[0,65],[0,174],[1,79],[0,109],[1,60],[2,136],[1,102],[2,214],[1,151]],[[46732,20681],[-2,-205],[17,-70],[0,-75],[55,8],[24,-84],[27,-77],[12,-24],[15,-10],[21,-10],[12,-7],[5,-6],[0,-56],[-9,-299],[6,-65],[12,-124],[-62,9],[-22,7],[-6,-245],[-2,-78],[-8,-4],[-6,-213],[33,-10],[-3,-47],[-4,-53],[-8,-75],[-13,-112],[-21,-200],[-9,-109],[-25,15],[-28,19],[-11,-4],[-2,74],[-53,11],[5,-292],[3,-59],[-2,-69],[-10,-34],[-6,-251],[-72,25],[-6,-261],[-1,-68],[-15,-20],[-10,-32],[-2,-81],[6,-52],[8,50],[13,-6],[24,0],[14,-11],[18,-24],[19,-53],[-2,-91],[-5,-210],[-36,68],[-14,26],[-26,-41],[-13,-12],[-26,-6],[-12,14],[-6,-88],[-9,-11],[5,-115],[-17,-24],[-10,-29],[-18,6],[-3,-148],[5,-88],[75,-59],[-5,-169],[-25,23],[-31,51],[-10,0],[-5,-106],[-33,4],[-6,3],[-2,-165],[11,-7],[12,-57],[13,-52],[12,-49],[13,-21],[3,-62],[14,14],[23,9],[-2,-177],[-11,-160],[-4,-75],[-13,-256],[-13,6],[-33,14],[-6,0],[-10,-179],[-1,-18],[13,-95],[-37,76],[-19,22],[-19,-35],[-48,-109],[-9,-21],[-11,-21],[33,-141],[-8,-56],[-1,-42],[-24,116],[-25,55],[-18,43],[-16,-14],[-22,-166],[-13,-57],[21,-13],[21,10],[36,-21],[-6,-266],[8,-11],[9,-180],[9,-52],[-102,14],[-23,0],[-2,-137],[-14,-46],[-7,31],[-40,0],[-15,-1],[-12,-3],[8,-46],[5,-140],[4,-78],[55,1],[-3,102],[21,0],[0,18],[8,0],[1,17],[25,-14],[5,-32],[30,4],[36,20],[11,30],[15,15],[13,2],[-3,-94],[14,-5],[-4,-54],[-4,-72],[0,-112],[5,-74],[10,-91],[6,-134],[-52,6],[0,-136],[-18,24],[-13,35],[-10,30],[-20,-118],[21,-266],[0,-65],[-14,-58],[-1,-6],[-7,-36],[-55,41],[-7,-71],[-11,-8],[-6,-3],[-4,-1],[-7,-16],[-4,-21],[-1,-13],[1,-33],[4,-29],[5,-46],[6,-70],[1,-21],[3,-65],[48,-234],[0,-2],[0,-42],[-5,-41],[0,-2],[-13,-56],[-15,-42],[-6,-16],[-1,-3],[-10,-41],[-7,-50],[-1,-19],[3,-39],[7,-34],[1,-1],[40,-112],[7,-18],[0,-1],[2,-3],[14,-25],[33,-26],[4,-2],[-1,-61],[3,-72],[4,-59],[-1,-65],[-55,13],[1,-53],[-3,-44],[-17,2],[-4,12],[-10,-6],[-39,33],[-8,-1],[-10,-17],[-1,-1],[-6,-19],[-34,-182],[-5,-46],[-2,-18],[-2,-23],[-7,-118],[-10,-127],[-2,-14],[0,-24],[3,-237],[3,-2],[11,-79],[14,-343],[0,-61],[0,-1],[0,-186],[0,-1],[-48,14],[-6,1],[-49,79],[-19,46],[-14,8],[-11,-15],[-24,-54],[-19,-77],[-1,-12],[0,-23],[8,-43],[22,-89],[100,-382],[81,-124],[6,-10],[8,-17],[1,-3],[1,-2],[9,-30],[1,-2],[0,-10],[-1,-13],[0,-2],[-19,-146],[-38,-243],[-3,-22]],[[46078,8504],[0,-1],[-64,-147],[-1,-5],[-1,-12],[-28,-75],[-2,-6],[-1,-1],[-8,-19],[-4,-4],[-2,-3],[-12,-2],[-2,8],[-43,88],[-17,40],[-6,15],[-3,27],[-20,168],[-9,36],[-8,9],[0,1],[-1,0],[-1,0],[-26,7],[-3,1],[-1,-2],[0,-2],[-20,-5],[-5,-2],[-9,7],[-9,17],[-3,15],[-7,45],[0,2],[0,10],[-27,195],[-1,9],[-1,7],[-7,66],[-4,43],[-2,96],[0,26],[0,19],[0,44],[4,84],[3,68],[0,28],[0,42],[0,35],[-2,88],[-8,44],[-1,3],[-8,42],[-5,4],[-8,-7],[-11,-27],[-10,-34],[0,-2],[-1,0],[-10,-45],[-9,-63],[-12,-128],[-5,-81],[0,-4],[1,-34],[3,-60],[0,-86],[-8,-85],[0,-1],[-2,-392],[0,-3],[-23,-245],[-1,-15],[-16,-76],[-1,-9],[-2,-1],[-8,-11],[-11,-3],[-9,7],[-12,27],[0,2],[-17,48],[-10,42],[-2,10],[-6,37],[-15,87],[-1,7],[-3,24],[-4,42],[-2,28],[-7,196],[-3,123],[-1,19],[0,11],[1,61],[8,183],[8,75],[8,36],[0,2],[0,37],[-1,18],[-27,147],[-8,1471],[-27,762],[-4,86],[-66,801],[-20,697],[-39,351],[-87,796],[0,410],[-30,11],[-23,37],[-32,51],[-52,83],[-2,-1],[-48,-19],[0,-1],[-23,-91],[0,-1],[-1,-23],[-4,-68],[-1,-21],[6,-90],[20,-268],[-23,-57],[-5,-13],[-19,-47],[-2,10],[-19,124],[-27,192],[-42,300],[-37,4],[-1,199],[46,-24],[0,98],[32,110],[13,93],[38,0],[-16,184],[-43,-13],[-16,22],[-19,27],[4,283],[24,6],[28,-47],[13,-125],[36,42],[8,454],[-21,14],[-56,35],[-13,-2],[14,-100],[-41,-93],[7,158],[-64,-6],[1,143],[0,217],[-77,-77],[-20,-12],[-41,183],[13,100],[14,119],[1,83],[-19,140],[-4,24],[-91,2],[-17,32],[0,14],[31,116],[5,19],[13,48],[-68,325],[-143,-1],[-6,0],[0,86],[18,157],[0,172],[-5,12],[-12,31],[-6,17],[-23,60],[-76,123],[-275,596],[-133,153],[-110,127],[-19,7],[-118,41],[-2,19],[-41,354],[-2,31],[14,149],[-3,79],[-12,98],[-4,32],[-6,46],[-9,-5],[-5,-2],[-9,67],[-1,72],[0,1],[0,4],[0,1],[-7,10],[-5,7],[1,68],[1,57],[-8,3],[-12,4],[0,86],[1,53],[-8,4],[-4,3],[0,32],[1,246],[4,61],[23,385],[104,349],[7,167],[3,78]],[[7817,23170],[-6,-554],[-1,-107],[-4,-466],[-6,-652],[-1,-122],[-1,-114],[-12,-1136],[-3,-230],[-1,-115],[0,-19],[0,-42],[0,-115],[0,-20],[-1,-86],[-4,-233],[-1,-86],[-5,-551],[0,-65],[-12,-1109],[0,-46],[-1,-285],[-1,-85],[0,-61],[-1,-82],[-1,-125],[-3,-377],[-3,-131],[11,-6],[-2,-560],[-1,-359],[-1,-526],[-1,-244],[-3,-706],[0,-1],[6,-358],[0,-12],[4,-295],[5,-403],[-3,-470],[-1,-171],[-3,-366],[0,-98],[-5,-806],[-4,-583],[-4,-763],[-1,-96],[-3,-493],[0,-5],[0,-78],[-1,-134],[-5,-427],[-2,-210],[-2,-749],[-4,-597],[-6,-822],[0,-9],[-7,-774],[-2,-221],[-1,-106],[-5,-297],[-1,-131],[-6,-630],[0,-7],[0,-137],[0,-21],[0,-78],[-1,-79],[-2,-244],[-2,-307],[-4,-689],[-2,-288],[0,-85],[-2,-325],[-4,-666]],[[7684,724],[-851,-27],[-73,-3],[-1629,9],[-159,1],[-1169,6],[-225,2],[-24,0],[-263,3],[-76,1],[-748,7],[-343,4],[-124,1],[-86,1],[-130,1],[-549,5],[-178,2],[-865,9],[-73,1],[-111,1],[-8,260],[0,11],[1,558],[80,891],[65,769],[33,165],[29,65],[48,0],[66,-75],[194,-13],[33,-230],[191,-172],[26,-23],[142,-110],[44,-35],[82,-134],[84,-139],[4,7],[74,174],[64,235],[37,168],[19,99],[14,125],[15,366],[2,46],[-6,767],[-1,115],[138,1682],[3,207],[13,248],[12,118],[22,221],[16,388],[32,347],[26,156],[27,119],[43,159],[15,41],[37,94],[40,145],[17,40],[16,25],[48,55],[66,101],[73,-18],[30,-15],[23,-28],[69,-84],[35,-68],[22,-65],[80,-161],[128,-196],[157,-47],[49,68],[32,81],[85,315],[6,24],[19,90],[29,134],[30,185],[36,257],[1,81],[5,263],[3,149],[-17,191],[-21,92],[-8,34],[-28,25],[-243,214],[-115,320],[-67,353],[-7,396],[-57,346],[-37,366],[3,347],[39,159],[68,140],[121,-239],[15,23],[32,478],[25,283],[20,172],[9,81],[34,-76],[23,-53],[61,242],[30,120],[29,350],[-21,205],[-46,270],[-78,376],[-34,186],[-7,98],[-24,42],[-59,373],[-54,185],[-44,155],[-95,79],[-93,-23],[-220,-174],[-135,218],[-78,389],[-114,974],[-1,172],[58,832],[30,168],[90,214],[52,27],[109,-249],[138,220],[44,117],[88,-66],[29,75],[52,18],[30,474],[12,126],[1,11],[16,78],[2,36],[9,256],[-19,358],[4,322],[-4,31],[-24,192],[-41,346],[59,263],[51,227],[35,128],[50,180],[27,173],[15,130],[68,507],[28,170],[24,246],[3,64],[4,59],[13,130],[30,163]],[[2951,23966],[113,224],[35,209]],[[12832,676],[-69,-1],[-287,-6],[-51,-1],[-226,-5],[-1149,-23],[-1628,29],[-1433,45],[-102,4],[-61,2],[-142,4]],[[22272,743],[-712,2],[-238,0],[-482,1],[-165,1],[-111,0],[-486,1],[-319,-3],[-1054,-11],[-283,-3],[-4,0],[-78,-1],[-31,-1],[-41,0],[-57,-1],[-31,0],[-596,-6]],[[46078,8504],[1,-123],[-2,-382],[1,-451],[0,-293],[1,-508],[0,-62],[1,-160],[1,-836],[0,-416],[1,-538],[0,-14],[-1,-87],[-5,-379],[-3,-218],[-14,-624],[-3,-197],[0,-5],[-3,-275],[1,-118],[4,-480],[1,-141],[1,-61],[3,-377],[5,-752],[3,-526]],[[46071,481],[-23,0],[-805,26],[-77,3],[-1393,-48],[-62,1],[-561,12],[-1195,25],[-537,12],[-81,1],[-632,14],[-599,-2]],[[51216,14179],[0,-92],[1,-83],[94,-6],[17,-1],[0,-544],[0,-144],[1,-440],[0,-439],[0,-59],[0,-105],[0,-134],[0,-173],[0,-101],[0,-15],[0,-119],[0,-386],[0,-239],[-1,-555],[0,-117],[-1,-252],[0,-76],[0,-21],[-1,-346],[-1,-555],[-1,-567],[-1,-313],[0,-187],[0,-19],[-1,-270],[2,-1217],[0,-125],[0,-71],[0,-2],[1,-274],[0,-102],[1,-1592],[1,-1587],[0,-382],[1,-790],[-3,-328],[-4,-771],[0,-271]],[[51321,309],[-413,13],[-31,1],[-22,1],[-1880,60],[-256,8],[-728,23],[-781,25],[-313,11],[-37,2],[-689,24],[-100,4]],[[64714,15220],[-29,-199],[-4,-12],[-7,-23],[-16,-24],[-13,-5],[-17,-6],[-8,-3],[-17,-7],[-6,-13],[0,-1],[-12,-38],[-1,-2],[-7,-44],[-2,-50],[-3,-76],[-1,-31],[4,-57],[3,-11],[16,-70],[7,-28],[32,-23],[37,5],[4,6],[115,-50],[-31,-290],[-26,-243],[4,-193],[2,-168],[-11,-118],[15,-54],[13,-56],[7,-54],[4,-67],[0,-192],[14,-195],[-9,-111],[-6,-66],[-5,-231],[-1,-70],[-25,-267],[-15,-191],[11,-148],[5,-66],[7,-142],[12,-153],[3,-89],[2,-64],[1,-65],[-3,-77],[-47,-437],[-109,-1010],[-22,-204],[-85,-785],[-8,-71],[-1,-5],[-11,-105],[-10,-91],[-12,-107],[-21,-182],[-28,-248],[-91,-817],[-20,-187],[-82,-759],[88,-184],[24,-42],[27,-53],[-26,-234],[-40,-360],[-23,-172],[-64,-566],[-10,-134],[-6,-52],[-6,-99],[-11,-171],[-32,-512],[-63,-1002],[-15,-147],[-19,-195],[-18,-172],[-28,-299],[-61,-627],[-6,-53],[-11,-199],[-20,-367],[-9,-153]],[[63881,287],[-2,0],[-53,-2],[-316,-12],[-16,0],[-16,-1],[-19,-1],[-856,1],[-508,0],[-155,1],[-414,0]],[[55821,0],[-1513,98],[-71,5],[-518,36],[-446,32],[-66,5],[-17,1],[-213,15],[-16,1],[-544,38],[-1096,78]],[[69462,13194],[1,0],[-13,-515],[-5,-235],[-5,-258],[-6,-265],[-4,-135],[0,-9],[-6,-141],[-3,-95],[-2,-65],[-10,-234],[0,-2],[-9,-247],[-2,-62],[0,-27],[-7,-233],[-31,-1123],[-4,-138],[-11,-435],[-15,-503],[-3,-93],[-8,-198],[-1,-11],[-9,-325],[-6,-225],[-6,-223],[-3,-133],[-3,-125],[-2,-64],[-1,-112],[-2,-82],[-3,-121],[-3,-133],[-3,-142],[-18,-820],[-10,-383],[-6,-236],[-14,-560],[-8,-295],[-8,-313],[-11,-460],[-9,-314],[-1,-52],[-1,-36],[-2,-69],[-14,-555],[-2,-89],[0,-6],[-3,-89],[-25,-1014],[-6,-201],[-9,-353],[-4,-157],[-2,-83],[-3,-82],[-480,-6],[-77,-1],[-67,-1],[-73,-1],[-719,-9],[-2042,13],[-150,-2],[-26,0],[-335,-5],[-85,-2],[-50,0],[-58,-1],[-617,-9],[-32,-1],[-429,-6]]],"transform":{"scale":[0.0000866315739657401,0.000016951147171472316],"translate":[-90.30996733099994,34.9830133530001]}} diff --git a/src/js/config/mapconfig/mapfiles/county/tx-counties.json b/src/js/config/mapconfig/mapfiles/county/tx-counties.json new file mode 100644 index 00000000..908fb0e0 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/tx-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-106.64546828199985,25.837048983000045,-93.50803251699989,36.500568855000154],"geometries":[{"type":"Polygon","properties":{"name":"TX"},"id":"48421","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48195","arcs":[[4,5,-4,6,7]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48111","arcs":[[-2,8,9]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48357","arcs":[[10,11,-8,12]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48295","arcs":[[13,14,-11,15]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48393","arcs":[[-15,16,17,18,19,-5,-12]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48211","arcs":[[-14,20,21,-17]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48233","arcs":[[-6,-20,22,23]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48205","arcs":[[24,25,26,-9]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48341","arcs":[[-24,27,28,29,-25,-1]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48359","arcs":[[-30,30,31,32,-26]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48065","arcs":[[-19,33,34,35,-28,-23]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48179","arcs":[[36,37,-34,-18]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48483","arcs":[[38,39,-37,-22]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48375","arcs":[[-36,40,-31,-29]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48117","arcs":[[41,42,43,44,-32]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48129","arcs":[[45,46,47,48,-38]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48087","arcs":[[49,50,51,-46,-40]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48381","arcs":[[52,53,54,-42,-41]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48011","arcs":[[-49,55,56,-53,-35]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48437","arcs":[[-57,57,58,59,60,-54]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48045","arcs":[[-48,61,62,63,-58,-56]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48069","arcs":[[-61,64,65,66,-43,-55]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48191","arcs":[[-52,67,68,69,-62,-47]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48075","arcs":[[70,71,72,-68,-51]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48369","arcs":[[-67,73,74,75,-44]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48197","arcs":[[76,77,78,-72,79]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48487","arcs":[[80,81,82,-77,83]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48345","arcs":[[84,85,86,-63,-70]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48101","arcs":[[-73,-79,87,88,-85,-69]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48153","arcs":[[-87,89,90,-59,-64]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48189","arcs":[[-65,-60,-91,91,92]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48279","arcs":[[-93,93,94,-74,-66]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48017","arcs":[[-95,95,96,-75]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48155","arcs":[[-78,-83,97,98,99,-88]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48485","arcs":[[100,101,-81,102]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48077","arcs":[[103,104,105,-101,106]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48337","arcs":[[107,108,109,-104,110]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48387","arcs":[[111,112,113,114,115,116,117]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48181","arcs":[[118,119,120,121,122]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48097","arcs":[[-122,123,124,-108,125]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48277","arcs":[[-117,126,127,128]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48147","arcs":[[-128,129,130,131,-119,132]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48269","arcs":[[-100,133,134,135,-89]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48275","arcs":[[136,137,-134,-99]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48009","arcs":[[-106,138,139,140,-102]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48125","arcs":[[-136,141,142,-86]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48107","arcs":[[-143,143,144,-90]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48023","arcs":[[-141,145,-137,-98,-82]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48303","arcs":[[-145,146,147,-92]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48079","arcs":[[148,149,150,-96]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48219","arcs":[[-148,151,-149,-94]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48037","arcs":[[152,153,-112,154]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48119","arcs":[[-116,155,156,157,-130,-127]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48237","arcs":[[-110,158,159,160,161,-139,-105]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48497","arcs":[[-125,162,163,164,-159,-109]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48121","arcs":[[165,166,167,-163,-124,-121]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48231","arcs":[[168,169,170,171,172,-131,-158,173]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48085","arcs":[[-132,-173,174,175,-166,-120]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48263","arcs":[[176,177,178,179,-142]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48433","arcs":[[180,181,182,-177,-135]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48449","arcs":[[183,184,185,-114]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48169","arcs":[[-180,186,187,188,-144]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48447","arcs":[[189,190,191,192,-146]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48503","arcs":[[-162,193,194,-190,-140]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48207","arcs":[[-193,195,196,-181,-138]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48305","arcs":[[-189,197,198,199,-147]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48501","arcs":[[200,201,202,-150]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48445","arcs":[[-200,203,204,-201,-152]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48159","arcs":[[-186,205,206,207,-156,-115]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48223","arcs":[[-208,208,209,-174,-157]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48343","arcs":[[-154,210,211,212,213,-184,-113]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48067","arcs":[[214,215,-211,-153]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48063","arcs":[[-214,216,217,-206,-185]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48499","arcs":[[218,219,220,221,-209,-207,-218]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48363","arcs":[[222,223,224,225,226,-194,-161]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48367","arcs":[[227,228,229,-223,-160,-165]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48439","arcs":[[-164,-168,230,231,232,-228]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48113","arcs":[[-176,233,234,235,-231,-167]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48397","arcs":[[-172,236,-234,-175]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48379","arcs":[[-222,237,-169,-210]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48415","arcs":[[238,239,240,-187,-179]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48151","arcs":[[-183,241,242,-239,-178]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48033","arcs":[[-241,243,244,245,-198,-188]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48115","arcs":[[-246,246,247,-204,-199]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48165","arcs":[[-205,-248,248,249,250,-202]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48253","arcs":[[-197,251,252,253,-242,-182]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48417","arcs":[[254,255,256,-252,-196,-192]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48429","arcs":[[-227,257,-255,-191,-195]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48459","arcs":[[-213,258,259,260,261,-219,-217]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48315","arcs":[[262,263,-259,-212,-216]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48257","arcs":[[264,265,266,-235,-237,-171]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48467","arcs":[[-238,-221,267,268,-265,-170]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48203","arcs":[[269,270,271,272,-260,-264]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48423","arcs":[[-262,273,274,275,276,-268,-220]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48183","arcs":[[-273,277,-274,-261]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48221","arcs":[[278,279,280,-224,-230]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48251","arcs":[[281,282,283,284,-279,-229,-233]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48139","arcs":[[-236,-267,285,286,287,-282,-232]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48227","arcs":[[288,289,290,291,-245]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48335","arcs":[[292,293,294,-289,-244,-240]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48353","arcs":[[295,296,297,-293,-243]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48317","arcs":[[-292,298,299,300,-249,-247]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48003","arcs":[[-301,301,302,303,304,-250]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48441","arcs":[[305,306,307,-296,-254]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48133","arcs":[[-226,308,309,310,311,-256,-258]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48143","arcs":[[-225,-281,312,313,314,315,-309]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48059","arcs":[[-312,316,317,-306,-253,-257]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48401","arcs":[[318,319,320,321,-275,-278,-272]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48365","arcs":[[322,323,-319,-271]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48213","arcs":[[-269,-277,324,325,326,327,-286,-266]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48349","arcs":[[328,329,330,-287,-328]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48425","arcs":[[-285,331,-313,-280]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48217","arcs":[[-331,332,333,334,-283,-288]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48093","arcs":[[335,336,337,-310,-316]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48035","arcs":[[-284,-335,338,339,340,-314,-332]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48073","arcs":[[-322,341,342,343,344,-325,-276]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48431","arcs":[[-295,345,346,347,348,-290]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48173","arcs":[[-349,349,350,-299,-291]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48329","arcs":[[-351,351,352,-302,-300]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48135","arcs":[[-353,353,354,355,356,-303]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48495","arcs":[[-357,357,358,359,-304]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48081","arcs":[[-298,360,361,-346,-294]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48001","arcs":[[362,363,364,-326,-345]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48083","arcs":[[-318,365,366,367,368,-307]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48399","arcs":[[-369,369,370,-361,-297,-308]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48049","arcs":[[-338,371,372,373,-366,-317,-311]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48193","arcs":[[374,-336,-315,-341,375,376]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48161","arcs":[[377,378,-329,-327,-365]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48109","arcs":[[379,380,381,382]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48229","arcs":[[383,384,385,386,-382]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48141","arcs":[[387,-386]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48301","arcs":[[388,389,390,-359]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48389","arcs":[[391,392,393,-380,394,-390]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48419","arcs":[[395,396,397,-320,-324,398]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48309","arcs":[[399,-339,-334,400,401,402]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48347","arcs":[[-398,403,404,-342,-321]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48293","arcs":[[405,-401,-333,-330,-379,406,407]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48333","arcs":[[408,409,-372,-337,-375]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48099","arcs":[[410,-376,-340,-400,411]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48451","arcs":[[-371,412,413,414,415,-347,-362]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48289","arcs":[[416,417,418,-407,-378,-364]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48461","arcs":[[419,420,421,-354,-352]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48103","arcs":[[-422,422,423,424,-355]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48405","arcs":[[425,426,427,-404,-397]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48383","arcs":[[-348,-416,428,429,-420,-350]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48475","arcs":[[-389,-358,-356,-425,430,-392]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48403","arcs":[[431,432,433,-426,-396]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48225","arcs":[[434,435,436,437,-417,-363,-344]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48095","arcs":[[-368,438,439,-413,-370]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48235","arcs":[[440,441,-429,-415]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48005","arcs":[[-428,442,443,444,445,-435,-343,-405]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48145","arcs":[[446,447,-402,-406,448]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48307","arcs":[[-374,449,450,451,-439,-367]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48411","arcs":[[-410,452,453,454,455,-450,-373]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48281","arcs":[[456,457,-453,-409,-377,-411]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48455","arcs":[[458,459,460,-436,-446]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48371","arcs":[[-424,461,462,463,464,-393,-431]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48395","arcs":[[465,466,467,-449,-408,-419]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48027","arcs":[[-448,468,469,470,-457,-412,-403]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48351","arcs":[[471,472,-433,473]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48241","arcs":[[474,475,476,-443,-427,-434,-473]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48373","arcs":[[477,478,479,480,-459,-445]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48331","arcs":[[481,482,483,-469,-447,-468]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48243","arcs":[[484,-384,-381,-394,-465,485]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48313","arcs":[[486,487,488,-418,-438]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48327","arcs":[[-452,489,490,491,-440]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48413","arcs":[[-492,492,493,-441,-414]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48105","arcs":[[-421,-430,-442,-494,494,495,496,-462,-423]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48457","arcs":[[-477,497,-478,-444]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48471","arcs":[[498,499,500,-487,-437,-461]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48053","arcs":[[-471,501,502,503,504,-454,-458]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48041","arcs":[[505,506,507,-466,-489]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48319","arcs":[[-456,508,509,510,-490,-451]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48299","arcs":[[-505,511,512,-509,-455]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48491","arcs":[[513,514,515,-502,-470,-484]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48407","arcs":[[-481,516,517,-499,-460]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48185","arcs":[[-501,518,519,520,-506,-488]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48051","arcs":[[-508,521,522,-482,-467]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48267","arcs":[[523,524,525,526,-491,-511]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48435","arcs":[[-527,527,528,-495,-493]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48043","arcs":[[529,-486,-464,530,531]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48443","arcs":[[532,533,-531,-463,-497]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48377","arcs":[[-530,534,-485]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48339","arcs":[[-518,535,536,537,-519,-500]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48453","arcs":[[538,539,540,541,-503,-516]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48287","arcs":[[542,543,544,-514,-483,-523]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48199","arcs":[[-476,545,546,547,-479,-498]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48171","arcs":[[-513,548,549,550,-524,-510]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48031","arcs":[[-504,-542,551,552,553,-549,-512]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48291","arcs":[[-548,554,555,556,-536,-517,-480]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48021","arcs":[[557,558,-539,-515,-545]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48477","arcs":[[-521,559,560,561,-543,-522,-507]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48209","arcs":[[562,563,-552,-541,564]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48465","arcs":[[-529,565,566,567,-533,-496]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48137","arcs":[[568,569,570,571,-566,-528,-526]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48265","arcs":[[572,573,574,-569,-525,-551]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48361","arcs":[[575,576,-546,-475,-472]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48473","arcs":[[577,578,579,-560,-520,-538]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48245","arcs":[[-577,580,581,-555,-547]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48201","arcs":[[[582,583]],[[584]],[[585]],[[586]],[[587]],[[-557,588,589,590,591,592,-578,-537]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48149","arcs":[[593,594,595,596,597,-558,-544,-562]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48259","arcs":[[-554,598,599,600,-573,-550]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48015","arcs":[[-580,601,602,603,-594,-561]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48385","arcs":[[-575,604,605,-570]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48055","arcs":[[-559,-598,606,607,-565,-540]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48091","arcs":[[608,609,-599,-553,-564]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48089","arcs":[[610,611,612,-595,-604]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48019","arcs":[[613,-605,-574,-601,614,615]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48071","arcs":[[[616]],[[-583,617]],[[-582,618,619,620,-589,-556]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48187","arcs":[[621,622,623,-609,-563,-608]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48157","arcs":[[624,625,-602,-579,-593]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48177","arcs":[[626,627,628,629,-622,-607,-597]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48029","arcs":[[-624,630,631,632,-615,-600,-610]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48325","arcs":[[633,634,635,-616,-633]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48481","arcs":[[-626,636,637,638,-611,-603]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48285","arcs":[[639,640,641,-627,-596,-613]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48463","arcs":[[-636,642,643,-571,-606,-614]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48271","arcs":[[-644,644,645,-567,-572]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48167","arcs":[[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653,654,-591,655]],[[656,-620]]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48039","arcs":[[[657]],[[-655,658,659,-637,-625,-592]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48493","arcs":[[-630,660,661,-631,-623]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48123","arcs":[[662,663,-628,-642,664]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48239","arcs":[[665,666,667,668,669,670,671,672,-640,-612,-639]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48013","arcs":[[673,674,-634,-632,-662,675,676]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48321","arcs":[[[677]],[[678]],[[679]],[[680,681,-666,-638,-660,682]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48255","arcs":[[683,684,-676,-661,-629,-664,685]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48469","arcs":[[[-671,686]],[[-673,687,688,689,690,-665,-641]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48163","arcs":[[-675,691,692,693,-635]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48507","arcs":[[-694,694,695,-643]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48323","arcs":[[-696,696,697,698,-645]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48175","arcs":[[-691,699,700,-686,-663]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48297","arcs":[[701,702,703,-677,-685,704,705,706,707]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48057","arcs":[[[708]],[[709]],[[710]],[[711,712,713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720,721,722]],[[723]],[[724]],[[725]],[[726]],[[-682,727,-667]],[[728,-689,729]],[[730,-669,731]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48025","arcs":[[-701,732,733,-705,-684]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48283","arcs":[[734,735,736,-692]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48311","arcs":[[-704,737,-735,-674]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48127","arcs":[[-693,-737,738,-697,-695]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48391","arcs":[[-729,739,740,741,742,743,-733,-700,-690]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48007","arcs":[[[744,745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755,756,-743]],[[757]],[[758,759]],[[760]],[[-722,761]],[[762]],[[763]],[[764]],[[765]],[[766,767]],[[768,-741,769,-713,770]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48479","arcs":[[771,772,773,774,-698,-739,-736]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48409","arcs":[[-757,775,-759,776,777,778,779,780,-708,706,-706,-734,-744]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48131","arcs":[[781,782,783,-772,-738,-703]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48249","arcs":[[-781,784,785,786,-782,-702]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48355","arcs":[[[787,788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[-745,805]],[[806]],[[807]],[[-778,808]],[[809]],[[810,811,-785,-780,812]]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48273","arcs":[[[813]],[[814,815,-788,816]],[[817,818,819,-786,-812]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48247","arcs":[[820,821,822,-773,-784]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48505","arcs":[[-823,823,824,-774]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48261","arcs":[[[825,826]],[[827,828,829,830]],[[831]],[[832]],[[833,834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845,846,847,848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855,856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864,865,-815,866]],[[867,868,869,870,871,-819,872]]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48047","arcs":[[-787,-820,-872,873,874,-821,-783]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48427","arcs":[[-875,875,876,-824,-822]]},{"type":"Polygon","properties":{"name":"TX"},"id":"48215","arcs":[[-871,877,878,879,-876,-874]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48489","arcs":[[[880]],[[881]],[[882]],[[883,884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[-826,899]],[[900,901,902,-829,903]],[[904,905,906,907,-878,-870,908]]]},{"type":"MultiPolygon","properties":{"name":"TX"},"id":"48061","arcs":[[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[921]],[[922,923]],[[924]],[[925]],[[926]],[[927,-879,-908,928]],[[-884,929]]]}]},"states":{"type":"GeometryCollection","bbox":[-106.64546828199985,25.837048983000045,-93.50803251699989,36.500568855000154],"geometries":[{"type":"MultiPolygon","properties":{"name":"Texas"},"id":"48","arcs":[[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[921]],[[922,923]],[[924]],[[925]],[[926]],[[880]],[[881]],[[882]],[[929,884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[826,899]],[[827,903,900,901,902,829,830]],[[831]],[[832]],[[833,834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845,846,847,848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855,856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[813]],[[864,865,815,788,816,866]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[805,745]],[[806]],[[807]],[[809]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[757]],[[760]],[[762]],[[763]],[[764]],[[765]],[[766,767]],[[708]],[[709]],[[710]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720,761,722]],[[723]],[[724]],[[677]],[[678]],[[679]],[[725]],[[726]],[[657]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[616]],[[583,617]],[[584]],[[585]],[[586]],[[587]],[[653,658,682,680,727,667,731,730,669,686,671,687,729,739,769,713,711,770,768,741,755,775,759,776,808,778,812,810,817,872,867,868,908,904,905,906,928,927,879,876,824,774,698,645,567,533,531,534,384,387,386,382,394,390,359,304,250,202,150,96,75,44,32,26,9,2,6,12,15,20,38,49,70,79,83,102,106,110,125,122,132,128,117,154,214,262,269,322,398,431,473,575,580,618,656,620,589,655]]]}]}},"arcs":[[[38226,95824],[-15,0],[-53,0],[-37,0],[-30,0],[-68,0],[-32,0],[-36,0],[-68,1],[-51,0],[-82,0],[-31,0],[-29,0],[-40,0],[-45,-1],[-40,1],[-62,0],[-35,0],[-23,0],[-26,0],[-80,0],[-18,0],[-65,0],[-55,0],[-11,0],[-9,0],[-84,0],[-9,0],[-15,0],[-17,0],[-55,0],[-51,0],[-146,0],[-18,-1],[-42,0],[-20,0],[-32,0],[-14,0],[-19,0],[-37,0],[-42,0],[-57,0],[-78,0],[-20,0],[-22,1],[-16,0],[-16,0],[-67,0],[-34,-1],[-8,0],[-14,1],[-47,0],[-9,0],[-15,0],[-17,0],[-19,0],[-41,0],[-14,0],[-4,0],[-48,0],[-144,0],[-169,0],[-18,0],[-56,0],[-32,0],[-2,0],[-23,0],[-52,0],[-23,0],[-22,-1],[-15,0],[-24,0],[-17,0],[-74,1],[-7,0],[-3,0],[-9,0],[-19,-1],[-10,0],[-9,0],[-2,0],[-6,0],[-12,0],[-3,0],[-127,-2],[-9,0],[-11,0],[-11,0],[-12,0],[-11,0],[-24,1],[-22,0],[-13,1],[-21,0],[-136,0],[-56,1],[-135,0],[-57,0],[-1,0],[-26,0],[-52,0],[-107,0],[-7,0],[-29,1],[-15,-3],[-121,-1],[-25,1],[-16,0],[-124,0]],[[34119,95823],[0,23],[0,2],[0,107],[-1,454],[2,68],[0,272],[0,150],[0,10],[-1,164],[0,84],[0,81],[0,10],[0,180],[0,95],[0,21],[1,105],[-1,56],[0,89],[0,43],[-1,60],[0,21],[0,3],[0,26],[-1,200],[2,97],[0,163],[0,7],[0,102],[1,199],[0,21],[0,13],[0,73],[0,51],[0,10],[0,41],[0,138],[0,168],[1,22],[0,27],[0,10],[0,57],[0,215],[0,43],[0,137],[0,30],[0,106],[1,78],[-1,19],[3,23]],[[34124,99997],[141,0],[849,2],[246,-1],[581,-2],[649,-2],[352,-1],[34,0],[1247,-4]],[[38223,99989],[0,-227],[0,-96],[0,-38],[0,-39],[0,-96],[0,-147],[1,-93],[0,-41],[0,-24],[0,-251],[0,-115],[0,-60],[0,-24],[0,-72],[1,-39],[-1,-209],[0,-70],[0,-16],[0,-34],[0,-13],[0,-120],[0,-13],[0,-5],[0,-35],[1,-22],[0,-1],[0,-11],[0,-80],[0,-86],[0,-11],[0,-97],[0,-39],[0,-116],[-1,-87],[1,-279],[0,-65],[0,-138],[0,-68],[1,-162],[0,-1],[0,-94],[0,-15],[0,-59],[0,-76],[0,-126],[0,-43],[0,-25],[0,-153],[0,-26],[0,-26],[0,-50],[0,-22],[0,-7],[0,-76],[0,-23],[0,-94],[0,-37],[0,-73]],[[42320,95845],[-1,-22]],[[42319,95823],[-22,0],[-15,0],[-42,1],[-61,-1],[-26,0],[-36,0],[-16,0],[-90,-1],[-51,0],[-86,0],[-54,0],[-48,0],[-74,0],[-63,0],[-32,0],[-34,0],[-45,0],[-62,-1],[-53,0],[-83,0],[-60,0],[-30,0],[-46,0],[-125,1],[-57,0],[-71,0],[-20,0],[-19,0],[-92,1],[-139,0],[-25,0],[-15,0],[-64,0],[-45,0],[-123,0],[-23,0],[-25,0],[-72,0],[-8,0],[-135,0],[-18,0],[-49,0],[-105,0],[-28,0],[-75,0],[-38,0],[-167,0],[-23,0],[-39,0],[-29,0],[-80,0],[-1,0],[-25,0],[-27,0],[-37,0],[-2,0],[-18,0],[-11,0],[-13,0],[-29,0],[-37,0],[-118,1],[-18,0],[-31,0],[-15,0],[-117,0],[-29,0],[-87,0],[-36,0],[-48,0],[-79,0],[-9,0],[-158,0],[-18,0],[-35,0],[-53,0],[-48,0],[-88,0],[-16,0],[-52,0]],[[38223,99989],[550,0],[566,-1],[502,0],[401,0],[1125,-1],[957,0]],[[42324,99987],[0,-101],[1,-200],[0,-10],[0,-66],[0,-108],[0,-150],[0,-18],[0,-94],[1,-161],[0,-17],[0,-27],[1,-213],[-4,-16],[-1,-92],[0,-45],[0,-125],[0,-10],[0,-83],[0,-51],[0,-59],[-1,-147],[0,-74],[0,-129],[0,-68],[0,-24],[0,-44],[-1,-53],[0,-23],[0,-31],[0,-29],[0,-70],[0,-65],[0,-138],[0,-136],[0,-137],[0,-87],[0,-66],[0,-119],[0,-68],[0,-12],[0,-11],[0,-46],[0,-91],[-1,-113],[0,-68],[0,-15],[0,-20],[0,-14],[0,-41],[0,-14],[1,-89],[0,-76],[0,-73],[0,-65],[0,-1],[0,-23],[0,-60],[0,-70],[0,-86]],[[34119,95823],[-101,0],[-160,-2],[-43,-1],[-66,2],[-44,0],[-228,1],[-28,-1],[-109,1],[-138,1],[-67,1],[-58,-1],[-11,0],[-117,1],[-19,0],[-200,1],[-55,0],[-56,1],[-80,-1],[-23,0],[-14,-2],[-167,0],[-69,1],[-34,0],[-34,0],[-67,0],[-136,0],[-68,0],[-152,0],[-17,0],[-35,-2],[-140,0],[-37,-1],[-18,0],[-16,0],[-6,0],[-2,0],[-8,0],[-28,0],[-8,0],[-16,0],[-10,0],[-9,0],[-9,0],[-9,0],[-9,0],[-10,0],[-10,0],[-10,0],[-9,0],[-9,0],[-10,0],[-9,0],[-15,0],[-58,0],[-10,0],[-11,0],[-13,0],[-262,0],[-10,0],[-48,1],[-272,0],[-34,0],[-372,0],[-40,0],[-234,-1],[-59,0],[-60,0],[-11,3],[-31,-2],[-143,-1],[-156,0],[-325,0],[-220,0],[-193,0],[-60,1],[-264,-1],[-73,0],[-62,0],[-262,-1],[-150,0],[-138,0],[-38,1],[-144,1],[-125,0]],[[27438,95823],[-2,832],[-1,794],[-3,1252],[0,208],[0,34],[-1,777],[-1,70],[-1,208],[301,-1],[1484,0],[590,1],[1472,0],[10,0],[2184,-1],[24,0],[630,0]],[[46427,99987],[0,-99],[0,-36],[0,-56],[0,-10],[0,-103],[0,-32],[0,-46],[0,-6],[0,-15],[0,-12],[0,-5],[0,-20],[0,-10],[0,-10],[0,-12],[0,-21],[0,-107],[0,-28],[0,-93],[0,-23],[1,-78],[-1,-99],[1,-86],[0,-10],[0,-62],[0,-74],[0,-12],[-1,-43],[0,-5],[1,-78],[-1,-126],[0,-281],[0,-272],[0,-83],[0,-28],[-1,-26],[0,-67],[1,-24],[0,-46],[0,-50],[0,-43],[0,-326],[0,-15],[0,-79],[0,-4],[0,-10],[0,-34],[0,-38],[0,-15],[0,-263],[-1,-389],[0,-63],[-1,-172],[-1,-65],[0,-19],[0,-32],[0,-42],[0,-10],[0,-20],[-1,-55],[0,-13],[-1,-151]],[[46422,95835],[-22,0],[-71,1],[-119,0],[-13,0],[-67,0],[-65,1],[-2,0],[-188,1],[-52,-3],[-50,1],[-87,1],[-93,1],[-34,0],[-45,1],[-13,0],[-91,1],[-141,-1],[-51,-1],[-69,-1],[-9,0],[-54,1],[-62,1],[-44,0],[-35,0],[-40,1],[-20,0],[-13,0],[-31,0],[-58,1],[-18,0],[-104,0],[-23,0],[-26,0],[-94,1],[-35,0],[-27,0],[-55,0],[-25,0],[-91,0],[-53,1],[-103,0],[-2,0],[-21,0],[-53,1],[-36,0],[-10,0],[-1,0],[-17,0],[-69,1],[-27,0],[-83,0],[-17,0],[-76,0],[-49,1],[-40,0],[-16,0],[-13,0],[-77,0],[-81,0],[-25,0],[-19,0],[-21,0],[-62,0],[-38,0],[-54,0],[-49,0],[-17,0],[-134,1],[-53,0],[-75,0],[-66,0],[-77,0],[-60,1],[-20,0],[-33,0],[-30,0],[-52,0],[-38,0],[-100,-1],[-82,-2],[-16,0]],[[42324,99987],[11,0],[832,3],[153,0],[1128,-1],[1918,-2],[61,0]],[[50581,95827],[-61,0],[-68,0],[-195,1],[-160,-2],[-94,0],[-18,0],[-52,0],[-41,-1],[-122,0],[-117,0],[-24,-1],[-100,0],[-123,1],[-69,0],[-36,0],[-19,0],[-7,0],[-27,1],[-17,0],[-1,0],[-157,0],[-182,1],[-96,0],[-87,0],[-30,1],[-96,-1],[-100,0],[-3,0],[-13,0],[-43,0],[-83,0],[-59,0],[-95,0],[-8,0],[-43,0],[-204,0],[-140,0],[-52,2],[-10,1],[-40,0],[-43,0],[-84,0],[-40,1],[-10,0],[-131,0],[-77,3],[-236,-1],[-29,0],[-37,0],[-82,1],[-74,0],[-19,0],[-52,-2],[-28,1],[-1,0],[-59,0],[-52,0],[-163,2]],[[46472,95835],[-50,0]],[[46427,99987],[120,1],[310,0],[1008,1],[19,0],[65,0],[706,0],[433,1],[1466,1],[27,0],[0,-623],[0,-398],[0,-172],[0,-47],[0,-838],[0,-169],[0,-681],[0,-7],[0,-523],[0,-48],[0,-551],[0,-107]],[[46472,95835],[0,-89],[0,-10],[0,-20],[0,-27],[0,-35],[0,-13],[0,-63],[1,-184],[0,-89],[1,-20],[1,-176],[1,-92],[0,-65],[0,-1],[1,-75],[0,-67],[0,-141],[0,-23],[-2,-92],[-2,-173],[0,-24],[-1,-65],[0,-24],[-1,-47],[-1,-69],[0,-18],[-2,-177],[-1,-25],[0,-44],[-1,-71],[0,-61],[0,-101],[0,-64],[0,-91],[-1,-81],[0,-19],[0,-166],[0,-59],[-1,-26],[0,-106],[0,-48],[0,-20],[0,-4],[2,-22],[0,-2],[0,-10],[0,-36],[0,-76],[0,-28],[-1,-24],[0,-49],[0,-13],[0,-34],[1,-30],[1,-22],[2,-60],[0,-10],[0,-2],[-1,-31],[-2,-22],[0,-23],[1,-44],[1,-60],[1,-84],[1,-75],[0,-19],[1,-51],[1,-94],[0,-36],[0,-41],[0,-12],[1,-88],[0,-83],[1,-36],[-2,-18]],[[46472,91735],[-50,-1],[-29,0],[-73,1],[-17,0],[-136,2],[-27,0],[-108,2],[-208,-2],[-65,1],[-253,2],[-20,1],[-45,0],[-53,2],[-93,-2],[-102,-1],[-61,0],[-80,-1],[-4,0],[-67,0],[-43,0],[-66,4],[-51,0],[-63,1],[-23,0],[-21,1],[-117,1],[-28,-1],[-5,0],[-49,-2],[-4,0],[-17,-1],[-22,1],[-39,0],[-20,0],[-44,0],[-48,1],[-50,-1],[-11,0],[-35,-1],[-39,1],[-63,-2],[-27,-1],[-63,-1],[-41,0],[-9,-1],[-63,-5],[-156,0],[-63,0],[-64,0],[-48,0],[-155,1],[-113,0],[-1,0],[-95,1],[-59,0],[-94,0],[-22,0],[-81,-1],[-195,-1],[-71,0],[-69,0],[-75,0],[-100,0],[-74,0],[-30,0],[-8,0],[-29,0]],[[42318,91733],[-1,58]],[[42317,91791],[0,14],[0,13],[0,85],[0,25],[0,127],[0,27],[0,48],[0,45],[0,113],[0,264],[-1,340],[2,69],[-1,125],[0,153],[0,391],[0,18],[0,292],[0,42],[0,104],[0,47],[0,156],[0,22],[1,39],[0,19],[0,13],[0,8],[0,125],[0,47],[0,129],[0,19],[0,26],[0,3],[0,21],[0,111],[0,95],[0,77],[0,110],[0,42],[0,15],[0,44],[0,20],[0,31],[0,86],[0,13],[1,143],[0,25],[0,45],[0,69],[0,29],[0,97],[0,11]],[[50581,95827],[0,-404],[0,-118],[0,-1117],[0,-4],[0,-633],[0,-636],[0,-857],[0,-325]],[[50581,91733],[-1,0],[-33,0],[-34,1],[-45,-1],[-15,0],[-15,0],[-17,0],[-15,0],[-12,0],[-12,0],[-8,0],[-21,0],[-27,0],[-50,0],[-20,1],[-16,0],[-20,0],[-8,0],[-28,0],[-11,0],[-17,0],[-10,0],[-20,0],[-13,0],[-12,0],[-11,0],[-15,0],[-15,0],[-17,0],[-10,0],[-13,0],[-13,0],[-8,0],[-14,0],[-22,0],[-17,0],[-8,0],[-10,0],[-18,0],[-13,0],[-19,1],[-12,0],[-13,0],[-12,0],[-17,0],[-20,0],[-8,0],[-13,0],[-8,0],[-11,0],[-12,0],[-16,0],[-9,0],[-9,0],[-10,0],[-15,0],[-26,0],[-8,0],[-7,0],[-10,0],[-1,0],[-31,0],[-13,0],[-38,0],[-8,0],[-10,0],[-9,0],[-19,0],[-19,0],[-13,0],[-13,0],[-10,0],[-33,1],[-13,0],[-7,0],[-10,0],[-9,0],[-13,0],[-10,-1],[-16,1],[-11,0],[-13,0],[-56,0],[-11,0],[-36,0],[-8,0],[-9,0],[-13,0],[-8,0],[-12,0],[-11,0],[-14,0],[-16,0],[-8,0],[-23,0],[-34,0],[-10,0],[-9,0],[-9,0],[-12,0],[-9,0],[-9,0],[-10,0],[-9,0],[-11,0],[-14,0],[-37,0],[-10,0],[-35,0],[-24,0],[-13,0],[-22,0],[-14,0],[-16,0],[-8,0],[-12,0],[-8,0],[-16,0],[-8,0],[-9,0],[-10,0],[-44,1],[-15,0],[-13,0],[-13,-1],[-28,1],[-13,0],[-10,-1],[-10,0],[-13,0],[-16,1],[-10,-1],[-9,1],[-13,0],[-9,0],[-32,0],[-8,0],[-8,0],[-9,0],[-4,0],[-10,0],[-8,0],[-18,0],[-25,0],[-8,0],[-8,0],[-17,0],[-10,0],[-8,0],[-13,0],[-10,0],[-10,0],[-24,0],[-34,-1],[-11,0],[-15,0],[-16,0],[-8,0],[-9,0],[-9,0],[-9,0],[-13,0],[-9,0],[-10,0],[-13,0],[-8,0],[-9,0],[-17,0],[-11,0],[-13,0],[-22,0],[-11,0],[-10,0],[-19,0],[-3,0],[-12,0],[-54,0],[-10,0],[-8,0],[-11,0],[-16,0],[-8,0],[-9,0],[-13,0],[-20,0],[-8,0],[-18,0],[-13,0],[-12,0],[-11,0],[-11,0],[-10,0],[-13,0],[-12,0],[-31,0],[-18,1],[-47,1],[-31,0],[-18,0],[-26,1],[-29,0],[-89,1],[-14,0],[-30,0],[-20,0],[-18,0],[-90,-1],[-71,-1],[-28,-1],[-16,0],[-39,0],[-79,0],[-19,1],[-20,0],[-6,0],[-8,0],[-12,0],[-7,0],[-3,0],[-13,0],[-10,-1],[-15,0],[-1,0],[-10,0],[-92,-1],[-11,1],[-30,1],[-32,-2],[-11,0],[-11,0],[-8,0],[-8,0],[-40,0],[-26,0],[-16,-1],[-19,0],[-55,-1],[-77,1]],[[42317,91791],[-118,-1],[-133,0],[-1,0],[-48,1],[-107,0],[-144,0],[-58,0],[-17,-1],[-42,0],[-9,0],[-14,0],[-34,0],[-10,0],[-7,0],[-9,0],[-24,0],[-11,0],[-27,0],[-16,0],[-20,0],[-38,0],[-27,0],[-53,-1],[-46,0],[-10,0],[-8,0],[-44,0],[-24,0],[-14,0],[-11,0],[-1,0],[-16,0],[-17,0],[-17,0],[-21,0],[-21,0],[-16,0],[-18,0],[-12,0],[-15,0],[-21,0],[-35,0],[-63,-1],[-15,0],[-13,0],[-11,-1],[-2,0],[-50,0],[-52,0],[-18,0],[-17,-1],[-24,0],[-17,1],[-22,0],[-10,-1],[-10,0],[-18,0],[-32,0],[-19,0],[-9,0],[-33,0],[-7,0],[-43,0],[-16,1],[-9,0],[-45,0],[-8,0],[-36,-1],[-44,0],[-20,0],[-40,0],[-1,0],[-9,0],[-8,0],[-23,0],[-44,-1],[-18,0],[-18,0],[-45,-1],[-34,0],[-14,0],[-23,0],[-8,0],[-16,0],[-90,0],[-2,0],[-12,0],[-7,0],[-6,0],[-27,0],[-8,0],[-12,0],[-16,0],[-27,-1],[-21,0],[-27,0],[-19,0],[-21,0],[-7,0],[-53,0],[-8,0],[-11,0],[-27,0],[-15,-1],[-21,0],[-38,0],[-61,0],[-32,0],[-129,-1],[-40,0],[-43,0],[-30,0],[-14,0],[-32,0],[-46,0],[-8,0],[-28,0],[-39,0],[-57,0],[-58,-1],[-30,0],[-13,0],[-2,0],[-22,0],[-35,0],[-41,0],[-18,0],[-52,0],[-10,0],[-9,0],[-19,0],[-15,0],[-9,0],[-12,0],[-27,0],[-19,0],[-11,0],[-8,0],[-9,0],[-15,0],[-31,1],[-12,0],[-10,0],[-9,-1],[-8,0],[-8,0],[-12,0],[-14,0],[-69,0],[-10,0],[-9,0],[-80,0],[-42,-1],[-6,0]],[[38231,91779],[1,24],[0,52],[1,11],[0,12],[0,10],[0,11],[0,11],[0,11],[-1,9],[0,13],[0,10],[0,11],[0,16],[0,11],[0,14],[-1,12],[0,17],[0,24],[0,25],[0,25],[0,3],[0,99],[0,10],[0,34],[0,34],[0,45],[0,61],[0,22],[0,12],[0,15],[-1,26],[1,58],[0,19],[0,13],[0,86],[0,64],[0,21],[0,61],[0,129],[0,31],[-1,10],[0,114],[0,94],[0,10],[0,12],[0,62],[0,34],[0,186],[0,61],[-1,119],[0,30],[0,79],[0,119],[0,165],[0,45],[0,22],[0,20],[0,97],[0,50],[0,46],[0,55],[0,42],[0,86],[0,51],[0,188],[0,32],[0,164],[0,25],[0,10],[0,77],[0,36],[0,13],[0,61],[0,48],[-1,49],[0,13],[0,11],[0,11],[0,7],[0,8],[0,25],[0,9],[-1,43],[0,15],[0,124],[0,101],[0,7],[0,4],[0,20],[0,2],[0,55],[0,11],[-1,57],[0,12],[0,26]],[[34119,95823],[1,-110],[0,-165],[0,-11],[0,-102],[0,-23],[0,-27],[0,-38],[0,-42],[2,-141],[0,-161],[0,-137],[-1,-133],[0,-112],[0,-3],[0,-63],[0,-78],[-1,-318],[1,-26],[1,-81],[-1,-271],[0,-138],[-1,-103],[0,-31],[0,-24],[0,-113],[-1,-271],[0,-140],[1,-113],[0,-87],[0,-148],[1,-133],[0,-69],[0,-6],[0,-83],[0,-25],[0,-125],[0,-220],[0,-120],[0,-20]],[[34121,91812],[-93,-1],[-86,0],[-92,0],[-50,-1],[-49,0],[-28,0],[-81,0],[-48,0],[-140,-5],[-67,-1],[-65,0],[-8,0],[-19,0],[-14,0],[-29,0],[-42,-1],[-32,0],[-13,0],[-32,0],[-105,-1],[-4,0],[-34,0],[-216,-1],[-32,0],[-4,0],[-32,0],[-23,0],[-78,0],[-103,-2],[-10,0],[-8,0],[-163,-1],[-11,0],[-89,0],[-61,-1],[-145,0],[-1,0],[-20,0],[-23,-1],[-32,0],[-52,0],[-2,0],[-12,0],[-218,-1],[-104,-1],[-42,0],[-134,-2],[-7,0],[-3,0],[-146,-2],[-52,0],[-63,-1],[-48,0],[-53,0],[-25,-1],[-29,-1],[-75,0],[-187,-2],[-88,-6],[-77,0],[-3,0],[-40,0],[-106,0],[-112,0],[-23,0],[-38,0],[-37,0],[-99,-1],[-102,0],[-111,1],[-54,0],[-111,0],[-22,0],[-13,-1],[-9,0],[-12,0],[-32,0],[-87,-1],[-9,0],[-10,0],[-44,0],[-88,0],[-8,0],[-88,0],[-128,0],[-10,0],[-104,-1],[-23,0],[-117,0],[-20,0],[-21,0],[-22,0],[-48,0],[-17,0],[-58,-6],[-53,0],[-7,0],[-38,0],[-21,0],[-1,0],[-111,0],[-129,-1],[-14,0],[-34,0],[-187,0],[-136,0],[-27,0],[-193,-1],[-172,-3],[-99,0],[-34,0],[-8,-2]],[[27432,91763],[0,240],[0,29],[0,30],[1,799],[1,424],[1,498],[1,1188],[1,334],[1,518]],[[38231,91779],[0,-26],[0,-10]],[[38231,91743],[-1,0],[-8,0],[-17,-1],[-97,0],[-57,0],[-10,0],[-35,0],[-25,0],[-26,0],[-14,0],[-40,0],[-46,0],[-2,0],[-88,0],[-9,0],[-35,-1],[-34,0],[-21,0],[-28,0],[-111,0],[-16,0],[-38,0],[-27,0],[-186,1],[-13,0],[-9,0],[-16,0],[-10,-1],[-13,0],[-53,0],[-51,0],[-9,0],[-17,0],[-81,0],[-16,0],[-25,0],[-215,0],[-19,0],[-55,0],[-50,0],[-109,0],[-124,0],[-67,0],[-57,0],[-20,0],[-35,0],[-116,0],[-60,0],[-39,0],[-56,0],[-70,0],[-181,1],[-6,0],[-4,0],[-31,0],[-10,0],[-3,0],[-39,0],[-10,0],[-41,0],[-48,0],[-10,0],[-40,0],[-10,0],[-39,0],[-23,1],[-3,0],[-34,0],[-39,0],[-41,0],[-95,0],[-104,0],[-70,0],[-35,0],[-28,0],[-79,0],[-55,0],[-39,0],[-8,0],[-143,0],[-11,0],[-11,0],[-1,0],[-15,0],[-41,0],[-107,-1],[-41,0],[-24,0],[-75,0],[-15,0],[-8,0],[-108,0],[-9,0]],[[34121,91742],[0,37],[0,10],[0,11],[0,12]],[[34121,91742],[0,-29],[-1,-101],[-1,-216],[-4,-465],[-1,-134],[-1,-181],[-4,-21],[-1,-6],[0,-19],[0,-1],[0,-26],[-1,-38],[-1,-90],[-1,-177],[0,-60],[-1,-41],[0,-49],[-1,-58],[-2,-299],[0,-17],[0,-60],[0,-15],[0,-79],[0,-1],[0,-27],[0,-67],[0,-21],[1,-22],[1,-2],[-1,-53],[0,-23],[-1,-56],[0,-66],[-3,-354],[0,-10],[-2,-211],[0,-11],[-1,-40],[0,-28],[-2,-235],[-1,-61],[-1,-31],[-1,-188],[-1,-49],[0,-28],[-1,-82],[0,-11],[0,-3],[0,-10],[0,-19],[-2,-150],[0,-45],[0,-11]],[[34086,87645],[-135,0],[-15,0],[-46,0],[-74,0],[-134,-1],[-68,0],[-13,0],[-31,0],[-12,0],[-10,0],[-36,0],[-58,6],[-30,0],[-1,0],[-19,0],[-17,0],[-64,1],[-22,0],[-12,0],[-166,9],[-269,2],[-268,2],[-84,1],[-51,1],[-41,0],[-43,0],[-51,1],[-26,0],[-4,0],[-37,0],[-203,2],[-133,1],[-136,1],[-227,4],[-42,0],[-202,1],[-79,1],[-122,0],[-150,1],[-119,1],[-133,0],[-104,4],[-230,-6],[-5,0],[-269,-6],[-119,-3],[-81,-2],[-203,-5],[-44,1],[-90,-2],[-159,-2],[-263,-5],[-141,-2],[-12,0],[-287,0],[-12,0],[-81,0],[-54,0],[-29,0],[-59,0],[-47,0],[-32,0],[-21,0],[-3,0],[-81,-1],[-88,0],[-181,0],[-90,0],[-15,0],[-66,-3],[-92,-4],[-14,1],[-19,0],[-15,0],[-3,0],[-5,0],[-12,1],[-9,0],[-18,-1],[-144,0],[-9,0],[-15,0],[-8,0],[-21,0],[-28,1]],[[27425,87645],[0,28],[1,303],[0,182],[0,32],[3,1442],[1,944],[2,1186],[0,1]],[[42318,91733],[0,-55],[0,-78],[0,-56],[0,-80],[0,-60],[-1,-49],[0,-36],[0,-25],[0,-36],[0,-13],[0,-9],[0,-16],[0,-23],[1,-26],[-1,-10],[0,-12],[0,-14],[1,-13],[0,-36],[0,-41],[0,-61],[0,-10],[-1,-57],[0,-1],[0,-33],[0,-103],[0,-58],[0,-10],[0,-96],[0,-42],[1,-29],[-1,-39],[0,-11],[0,-19],[0,-15],[0,-28],[0,-12],[0,-7],[0,-26],[0,-3],[1,-154],[-1,-54],[1,-83],[0,-136],[0,-25],[0,-11],[0,-33],[0,-68],[-1,-84],[0,-33],[0,-155],[0,-68],[0,-37],[0,-30],[0,-137],[-1,-210],[0,-63],[-1,-271],[0,-138],[-1,-198],[0,-37],[0,-50],[0,-1],[0,-38],[1,-82],[1,-162],[-1,-61],[1,-21],[0,-10],[0,-45],[0,-52],[0,-33],[0,-4],[0,-9],[0,-17],[0,-11],[-1,-129]],[[42315,87635],[-165,-3],[-133,-1],[-15,0],[-55,0],[-265,0],[-40,0],[-50,0],[-42,0],[-72,0],[-41,0],[-55,1],[-32,0],[-23,0],[-69,1],[-31,0],[-16,0],[-16,0],[-12,0],[-71,0],[-47,-1],[-14,0],[-41,0],[-79,0],[-77,1],[-48,0],[-54,1],[-14,0],[-17,0],[-17,0],[-8,0],[-19,0],[-50,0],[-26,1],[-110,0],[-9,0],[-12,-1],[-28,0],[-164,-1],[-75,0],[-3,0],[-86,2],[-51,0],[-51,0],[-83,1],[-136,1],[-24,1],[-45,0],[-189,2],[-60,0],[-224,3],[-88,-2],[-49,-1],[-138,2],[-82,1],[-54,-1],[-14,2],[-41,0],[-80,-1],[-136,1],[-113,0],[-43,0],[-71,1],[-23,0],[-21,0],[-9,0],[-1,0],[-23,-1],[-35,0]],[[38230,87644],[0,11],[0,4],[0,22],[0,63],[0,12],[0,110],[0,2],[0,9],[0,43],[0,16],[0,20],[0,21],[0,31],[0,15],[0,168],[0,3],[0,8],[0,37],[0,23],[1,12],[0,100],[0,4],[0,10],[0,13],[0,15],[1,221],[0,31],[0,22],[0,10],[-1,60],[1,65],[0,138],[-1,206],[0,70],[0,177],[0,28],[-5,117],[1,53],[4,179],[0,71],[1,68],[0,19],[0,34],[0,76],[0,18],[0,32],[-1,165],[-1,93],[0,98],[1,68],[0,81],[0,277],[-1,103],[0,24],[0,61],[0,20],[1,75],[0,61],[0,31],[0,50],[1,42],[0,13],[0,33],[-1,101],[0,52],[0,31],[0,132],[0,21]],[[46472,91735],[0,-34],[0,-16],[0,-11],[0,-10],[1,-16],[0,-13],[0,-18],[0,-11],[0,-11],[0,-24],[0,-13],[1,-31],[0,-100],[0,-6],[0,-50],[-1,-45],[0,-89],[0,-46],[-1,-18],[0,-45],[0,-21],[1,-76],[4,-107],[0,-10],[-1,-9],[0,-16],[0,-16],[0,-22],[0,-16],[0,-17],[0,-16],[0,-18],[0,-6],[0,-4],[1,-13],[0,-14],[0,-11],[0,-11],[0,-10],[0,-9],[0,-22],[0,-43],[0,-10],[1,-14],[0,-42],[0,-24],[0,-48],[0,-20],[0,-21],[0,-16],[1,-16],[-1,-68],[0,-74],[1,-137],[0,-19],[1,-68],[0,-93],[0,-16],[3,-333],[0,-27],[0,-10],[0,-16],[0,-50],[1,-75],[-1,-11],[0,-17],[1,-30],[0,-12],[0,-27],[0,-14],[0,-15],[0,-15],[0,-13],[0,-10],[0,-32],[0,-18],[0,-12],[0,-10],[0,-32],[0,-14],[0,-17],[0,-22],[0,-11],[0,-37],[0,-12],[1,-23],[0,-20],[0,-13],[0,-16],[0,-18],[1,-35],[0,-13],[0,-14],[0,-11],[1,-44],[0,-13],[0,-10],[0,-46],[0,-28],[0,-38],[0,-23],[1,-15],[-1,-20],[0,-13],[0,-11],[0,-24],[0,-24],[0,-21],[-1,-42],[0,-6],[0,-17],[0,-16],[0,-29],[-1,-24],[0,-41],[0,-13],[0,-25],[0,-14],[0,-19],[0,-12],[-1,-20],[0,-19],[0,-18],[0,-16],[0,-17],[0,-15],[0,-19],[0,-18],[0,-28],[0,-32],[0,-22],[0,-14],[0,-22],[0,-20],[0,-9],[0,-48],[0,-44],[0,-19],[-1,-12],[0,-13],[1,-19],[0,-13],[-1,-11],[0,-10],[0,-18],[0,-11],[0,-20],[0,-14],[0,-24],[0,-15],[0,-15],[0,-10],[-1,-15],[1,-17],[-1,-11],[0,-9],[1,-12]],[[46483,87643],[-16,0],[-46,0],[-53,0],[-21,0],[-27,-1],[-10,0],[-11,0],[-18,0],[-25,1],[-9,0],[-10,0],[-25,0],[-22,1],[-52,0],[-61,0],[-9,0],[-17,0],[-98,0],[-8,-1],[-2,0],[-20,0],[-31,0],[-30,0],[-31,0],[-54,1],[-37,0],[-71,0],[-49,0],[-55,0],[-18,0],[-81,0],[-23,0],[-39,0],[-40,0],[-21,0],[-8,0],[-63,0],[-21,0],[-39,0],[-74,0],[-63,1],[-43,0],[-58,0],[-40,0],[-15,1],[-16,0],[-25,0],[-52,-1],[-40,0],[-19,0],[-73,0],[-51,0],[-37,-1],[-18,0],[-24,1],[-2,0],[-72,0],[-19,0],[-85,0],[-47,1],[-2,0],[-21,0],[-37,0],[-17,0],[-13,0],[-30,0],[-52,0],[-12,0],[-16,0],[-13,0],[-33,0],[-23,0],[-19,0],[-12,0],[-5,-1],[-12,0],[-29,-1],[-17,1],[-9,0],[-6,0],[-5,0],[-25,0],[-10,1],[-69,-2],[-29,0],[-60,0],[-20,0],[-42,0],[-12,1],[-17,0],[-2,0],[-7,-1],[-13,1],[-18,0],[-12,0],[-22,0],[-17,0],[-67,0],[-80,0],[-61,0],[-17,0],[-67,0],[-13,0],[-8,0],[-8,0],[-14,0],[-36,0],[-10,0],[-10,0],[-2,0],[-17,0],[-11,-1],[-20,1],[-7,0],[-17,0],[-45,-1],[-79,-1],[-23,0],[-8,-1],[-8,0],[-16,0],[-10,-1],[-9,0],[-11,0],[-16,0],[-18,0],[-13,0],[-15,0],[-87,-1],[-271,-3],[-93,-1],[-29,0],[-50,-1]],[[50581,91733],[0,-286],[0,-1331],[0,-156],[0,-72],[0,-1128],[0,-32],[0,-4],[0,-669],[0,-415]],[[50581,87640],[-1,0],[-21,1],[-54,-1],[-79,0],[-87,0],[-46,0],[-27,0],[-55,-1],[-13,0],[-187,0],[-143,0],[-77,-1],[-60,0],[-8,0],[-135,3],[-43,0],[-50,0],[-50,0],[-22,0],[-40,0],[-96,0],[-5,0],[-74,0],[-40,1],[-118,0],[-47,1],[-23,0],[-50,-1],[-12,0],[-100,1],[-40,-1],[-34,-1],[-35,1],[-32,0],[-10,0],[-5,0],[-13,1],[-10,0],[-18,-1],[-15,0],[-9,0],[-8,0],[-12,1],[-32,0],[-9,-1],[-23,1],[-13,-1],[-35,1],[-13,0],[-12,0],[-23,0],[-21,0],[-12,0],[-9,0],[-69,-1],[-9,0],[-1,0],[-64,0],[-83,1],[-124,0],[-18,0],[-12,-1],[-12,0],[-15,1],[-9,0],[-19,0],[-19,0],[-10,0],[-16,0],[-19,0],[-22,-1],[-16,0],[-25,0],[-9,0],[-78,0],[-66,0],[-34,0],[-82,0],[-24,0],[-133,1],[-93,0],[-96,1],[-27,-1],[-12,0],[-9,0],[-13,0],[-18,0],[-12,0],[-11,0],[-8,0],[-10,0],[-10,0],[-20,0],[-16,0],[-9,0],[-10,0],[-10,0],[-19,0],[-8,0],[-10,0],[-14,0],[-11,0],[-11,0],[-11,0],[-9,0],[-8,0],[-11,0],[-11,0],[-8,0],[-8,0],[-9,0],[-13,0],[-9,0],[-10,0],[-14,0],[-12,0],[-20,0],[-11,0],[-12,0],[-11,0],[-8,0],[-40,0],[-18,0],[-14,0],[-14,0],[-12,0],[-14,0],[-11,0],[-10,0],[-9,-1],[-9,1],[-27,0],[-19,0],[-55,0]],[[38230,87644],[-19,0],[-81,-1],[-134,1],[-272,-1],[-14,1],[-65,0],[-8,0],[-47,0],[-69,1],[-65,0],[-15,0],[-17,0],[-12,0],[-41,0],[-49,0],[-3,0],[-133,2],[-70,-4],[-23,0],[-24,0],[-22,1],[-8,0],[-8,0],[-8,0],[-8,0],[-8,0],[-8,0],[-8,0],[-12,0],[-13,0],[-8,0],[-8,0],[-7,0],[-26,0],[-8,0],[-8,0],[-8,0],[-8,0],[-9,0],[-9,0],[-8,-1],[-9,0],[-9,0],[-8,0],[-16,0],[-15,0],[-10,0],[-10,0],[-14,0],[-8,0],[-9,0],[-10,0],[-8,0],[-9,0],[-9,0],[-9,0],[-9,0],[-10,1],[-8,0],[-10,0],[-12,0],[-11,-1],[-27,-1],[-11,0],[-8,0],[-8,0],[-2,0],[-9,0],[-10,0],[-10,0],[-9,0],[-10,0],[-10,0],[-9,0],[-9,0],[-10,0],[-9,0],[-9,0],[-9,0],[-11,0],[-9,0],[-9,-1],[-8,0],[-9,1],[-17,-1],[-17,0],[-19,0],[-11,0],[-11,0],[-20,1],[-27,-1],[-8,1],[-8,-1],[-14,1],[-11,0],[-8,-1],[-8,1],[-9,-1],[-25,1],[-9,0],[-14,0],[-13,0],[-10,0],[-17,0],[-15,1],[-19,0],[-18,1],[-20,-1],[-10,0],[-12,0],[-14,0],[-13,0],[-15,0],[-14,0],[-22,0],[-21,0],[-8,0],[-10,1],[-10,0],[-52,-1],[-8,0],[-8,0],[-13,0],[-21,0],[-2,0],[-19,0],[-8,0],[-9,0],[-10,0],[-40,1],[-25,0],[-26,1],[-102,0],[-20,0],[-15,0],[-111,0],[-85,0],[-11,0],[-67,0],[-117,0],[-61,0],[-96,0],[-135,0],[-12,0],[-20,0],[-62,0],[-102,0],[-73,0],[-116,0],[-67,0],[-16,2],[-50,-1],[-135,0],[-101,0],[-33,-1]],[[34086,87645],[-1,-78],[-1,-68],[0,-74],[0,-108],[0,-10],[1,-11],[0,-137],[0,-59],[0,-58],[0,-158],[0,-69],[0,-63],[-1,-137],[0,-21],[0,-115],[0,-116],[0,-20],[0,-5],[0,-97],[0,-27],[0,-6],[-1,-138],[3,-142],[0,-131],[0,-81],[-1,-19],[0,-38],[0,-139],[0,-229],[0,-62],[0,-8],[0,-21],[0,-28],[0,-136],[0,-63],[0,-60],[0,-76],[0,-82],[-7,-204],[0,-63],[0,-3],[0,-47],[0,-11],[0,-124],[-1,-270],[-1,-72],[-1,-378],[0,-25]],[[34075,83558],[-17,-7],[-21,0],[-20,1],[-19,0],[-79,1],[-8,0],[-11,1],[-112,1],[-63,0],[-21,1],[-76,0],[-19,0],[-156,-2],[-99,-1],[-134,-2],[-70,0],[-70,-1],[-138,-1],[-137,-1],[-83,-1],[-32,0],[-20,-1],[-68,0],[-13,0],[-2,0],[-39,-1],[-11,0],[-35,1],[-34,0],[-67,1],[-29,0],[-9,0],[-1,0],[-96,1],[-67,0],[-10,0],[-59,0],[-68,1],[-68,0],[-65,1],[-69,0],[-67,1],[-67,1],[-20,-1],[-55,1],[-11,0],[-17,0],[-13,0],[-1,0],[-58,0],[-36,1],[-58,0],[-94,1]],[[31363,83554],[-96,0],[-69,1],[-145,1],[-133,0],[-44,0],[-90,0],[-46,0],[-39,0],[-107,1],[-84,1],[-137,0],[-134,0],[-66,0],[-68,0],[-44,0],[-90,0],[-134,0],[-65,0],[-68,0],[-56,1],[-79,0],[-21,0],[-49,0],[-198,0],[-130,0],[-3,0],[-135,0],[-134,0],[-118,1],[-13,0],[-72,0],[-54,0],[-10,0],[-12,0],[-656,1],[-133,0],[-65,0],[-11,0],[-10,-1],[-26,0],[-22,0],[-30,0],[-37,-1],[-37,0],[-30,-1],[-27,0],[-46,0],[-66,0]],[[27424,83558],[0,163],[0,528],[-1,1248],[0,23],[2,1843],[0,266],[0,16]],[[46483,87643],[-2,-69],[0,-213],[0,-14],[0,-56],[0,-35],[0,-23],[-1,-87],[1,-45],[-1,-111],[-2,-378],[0,-37],[0,-52],[1,-42],[0,-36],[1,-29],[0,-38],[-1,-42],[0,-62],[-2,-147],[0,-59],[-1,-48],[0,-92],[0,-22],[0,-12],[0,-21],[0,-3],[0,-19],[0,-2],[-1,-69],[0,-39],[-1,-17],[1,-56],[0,-29],[0,-18],[0,-10],[0,-11],[0,-15],[0,-11],[0,-14],[0,-17],[0,-11],[0,-25],[0,-14],[0,-10],[0,-14],[0,-9],[0,-10],[0,-14],[0,-10],[0,-28],[0,-55],[-1,-14],[0,-42],[0,-10],[0,-17],[0,-13],[0,-26],[0,-15],[0,-13],[0,-17],[-1,-25],[0,-22],[0,-12],[0,-14],[0,-4],[-3,-121],[0,-15],[0,-38],[0,-50],[0,-45],[0,-16],[0,-31],[0,-28],[-1,-55],[3,-9],[-1,-23],[0,-17],[0,-97],[0,-11],[0,-84],[0,-41],[-1,-54],[0,-22],[0,-37],[0,-15],[0,-17],[0,-59],[0,-12],[0,-21],[0,-13],[0,-11],[0,-48],[1,-41],[-1,-149],[0,-1],[0,-10],[-1,-63],[-3,-262],[2,-22]],[[46468,83561],[-19,0],[-8,0],[-46,1],[-15,0],[-22,0],[-7,0],[-2,0],[-108,1],[-17,0],[-25,0],[-17,0],[-13,0],[-44,0],[-28,0],[-29,0],[-12,0],[-45,1],[-13,0],[-96,0],[-17,0],[-31,-1],[-31,1],[-8,0],[-52,0],[-64,0],[-103,0],[-21,1],[-17,0],[-26,0],[-21,-1],[-9,0],[-56,0],[-15,0],[-11,0],[-12,0],[-63,0],[-12,0],[-10,1],[-20,0],[-23,0],[-19,0],[-8,0],[-8,0],[-9,0],[-36,0],[-39,0],[-31,0],[-11,0],[-26,0],[-26,0],[-17,0],[-13,0],[-12,0],[-32,0],[-26,0],[-23,-1],[-24,1],[-15,0],[-15,0],[-18,1],[-34,0],[-14,0],[-14,0],[-11,0],[-11,0],[-9,0],[-34,0],[-9,0],[-56,0],[-10,1],[-12,0],[-29,0],[-12,0],[-16,0],[-8,0],[-41,0],[-19,0],[-18,0],[-9,0],[-8,0],[-42,0],[-42,0],[-10,0],[-1,0],[-8,0],[-17,0],[-26,0],[-24,0],[-47,0],[-50,0],[-47,0],[-40,0],[-14,0],[-16,0],[-17,0],[-12,0],[-7,0],[-12,0],[-43,0],[-34,0],[-37,-1],[-34,0],[-31,0],[-19,0],[-20,0],[-11,1],[-18,0],[-15,-1],[-37,0],[-14,0],[-22,0],[-11,0],[-4,0],[-9,0],[-11,0],[-12,0],[-8,0],[-13,0],[-26,0],[-27,0],[-123,0],[-12,0],[-11,0],[-33,0],[-40,1]],[[43391,83567],[-52,-1],[-57,0],[-8,0],[-21,0],[-17,0],[-33,0],[-12,0],[-21,0],[-8,0],[-56,0],[-1,0],[-16,1],[-16,0],[-8,0],[-2,0],[-23,0],[-72,-1],[-11,1],[-69,0],[-24,0],[-63,0],[-41,0],[-24,0],[-25,0],[-15,0],[-14,-1],[-62,1],[-68,0],[-60,0],[-128,-1],[-10,0],[-38,0],[-35,0]],[[42281,83566],[0,15],[1,119],[1,68],[2,199],[0,33],[2,148],[0,57],[1,145],[1,53],[1,81],[0,28],[1,102],[1,87],[1,47],[0,147],[1,29],[0,37],[1,82],[0,28],[0,31],[1,53],[1,141],[0,76],[1,139],[1,21],[0,17],[0,30],[0,24],[0,30],[1,81],[0,41],[2,173],[5,189],[0,3],[1,62],[0,1],[0,10],[0,18],[1,105],[1,236],[0,4],[0,73],[1,20],[0,14],[0,15],[1,128],[0,63],[0,13],[0,15],[0,38],[0,33],[1,46],[-2,86],[1,103],[0,37],[2,237],[0,52],[1,39],[0,47],[0,20]],[[50581,87640],[0,-377],[0,-507],[0,-334],[0,-201],[0,-614],[0,-615],[0,-435],[0,-12],[0,-996]],[[50581,83549],[-1,0],[-79,1],[-140,0],[-135,5],[-11,0],[-13,0],[-17,0],[-10,0],[-16,0],[-13,0],[-16,0],[-11,0],[-10,0],[-10,0],[-22,1],[-32,-1],[-12,0],[-11,0],[-14,0],[-19,0],[-23,0],[-8,0],[-11,0],[-19,0],[-10,0],[-14,0],[-8,0],[-8,0],[-9,0],[-20,0],[-14,1],[-14,-1],[-12,0],[-8,0],[-10,0],[-15,0],[-19,0],[-13,0],[-10,0],[-10,0],[-11,0],[-14,0],[-11,0],[-8,0],[-11,0],[-9,0],[-2,0],[-8,0],[-9,0],[-12,0],[-12,0],[-9,0],[-22,0],[-11,0],[-14,0],[-26,0],[-12,0],[-10,0],[-15,0],[-17,0],[-13,0],[-17,0],[-13,0],[-20,0],[-7,0],[-13,0],[-17,0],[-22,0],[-15,0],[-11,0],[-22,0],[-10,0],[-15,0],[-9,0],[-20,0],[-12,0],[-15,0],[-21,0],[-44,0],[-22,0],[-1,0],[-10,0],[-18,0],[-38,0],[-50,0],[-17,0],[-13,0],[-9,0],[-11,0],[-19,0],[-14,0],[-30,0],[-10,0],[-9,0],[-13,0],[-9,0],[-142,0],[-1,0],[-36,1],[-24,-1],[-36,0],[-30,1],[-66,0],[-56,0],[-9,0],[-99,0],[-8,0],[-64,0],[-31,0],[-59,0],[-9,0],[-17,0],[-9,0],[-11,0],[-24,0],[-73,0],[-23,0],[-136,0],[-50,0],[-49,0],[-9,0],[-9,0],[-42,0],[-34,0],[-15,1],[-19,1],[-18,1],[-15,0],[-17,0],[-83,0],[-27,1],[-13,-1],[-34,0],[-10,0],[-57,0]],[[47418,83559],[-12,0],[-26,0],[-26,0],[-4,0],[-62,0],[-33,0],[-27,1],[-45,0],[-16,0],[-26,0],[-8,0],[-11,-1],[-8,0],[-8,0],[-8,0],[-8,1],[-23,0],[-34,1],[-14,0],[-11,-1],[-16,0],[-23,0],[-22,0],[-9,0],[-107,1],[-56,-1],[-39,0],[-38,0],[-2,0],[-38,0],[-11,0],[-4,0],[-8,0],[-9,0],[-1,0],[-23,1],[-36,0],[-69,0],[-20,0],[-9,0]],[[38230,87644],[-2,-194],[-2,-220],[0,-18],[-1,-41],[-1,-71],[-1,-207],[-1,-108],[0,-20],[-1,-19],[0,-15],[-1,-115],[-2,-110],[0,-51],[-1,-113],[-2,-184],[0,-89],[-1,-129],[0,-10],[0,-11],[-1,-51],[-2,-28],[-2,-34],[-1,-11],[0,-53],[0,-19],[-1,-61],[0,-12],[1,-115],[-2,-143],[0,-13],[0,-19],[-1,-29],[0,-36],[-1,-23],[0,-4],[-2,-113],[-1,-61],[-1,-22],[-4,-198],[0,-2],[-1,-40],[-2,-77],[2,-74],[1,-11],[-2,-104],[-1,-117],[-1,-79],[-1,-21],[0,-33],[-2,-156],[0,-40],[-1,-75],[-1,-61],[-1,-73],[0,-26],[-1,-38],[-1,-92],[-3,-172],[1,-10],[0,-12]],[[38182,83561],[-109,0],[-67,-1],[-70,0],[-21,0],[-44,0],[-158,0],[-110,0],[-135,0],[-105,-1],[-9,0],[-9,0],[-11,1],[-34,1],[-40,2],[-61,0],[-137,1],[-36,0],[-40,0],[-29,0],[-28,0],[-11,0],[-122,1],[-70,0],[-22,-1],[-20,1],[-15,0],[-14,0],[-14,0],[-115,0],[-5,0],[-2,0],[-8,0],[-23,1],[-11,-1],[-17,0],[-8,0],[-8,0],[-3,0],[-7,0],[-8,0],[-19,0],[-9,0],[-26,1],[-63,0],[-77,0],[-8,0],[-26,0],[-8,0],[-12,0],[-78,0],[-8,0],[-54,1],[-42,0],[-30,-1],[-54,0],[-56,0],[-23,0],[-64,0],[-13,0],[-20,0],[-18,0],[-25,0],[-30,0],[-30,0],[-34,0],[-33,0],[-136,0],[-58,0]],[[35372,83566],[-12,-1],[-3,0],[-28,0],[-28,-1],[-143,1],[-130,-2],[-44,0],[-25,0],[-57,-1],[-41,0],[-10,-1],[-265,0],[-2,0],[-141,0],[-38,0],[-273,-2],[-46,0],[-11,-1]],[[42281,83566],[-30,0],[-19,0],[-16,1],[-9,-1],[-48,0],[-130,-4],[-12,-1],[-28,0],[-29,0],[-35,0],[-57,0],[-8,0],[-53,0],[-54,0],[-33,0],[-109,0],[-161,0],[-49,0],[-157,0],[-24,1],[-14,0],[-11,1],[-18,0],[-40,1],[-71,2],[-17,0],[-43,1],[-53,0],[-8,-1],[-67,0],[-34,0],[-53,0],[-43,0],[-40,0],[-21,0],[-27,0],[-15,0],[-26,0],[-49,0],[-14,0],[-35,0],[-17,0],[-35,0],[-5,0],[-71,0],[-6,0],[-36,0],[-8,0],[-129,0],[-63,1],[-42,-1],[-74,1],[-82,-2],[-249,-5],[-13,0],[-29,-2],[-43,0],[-5,0],[-138,1],[-93,0]],[[39383,83559],[-79,0],[-71,0],[-10,0],[-11,0],[-49,1],[-87,0],[-53,0],[-3,0],[-166,-1],[-31,0],[-12,0],[-72,0],[-128,0],[-67,0],[-67,0],[-66,1],[-109,0],[-27,0],[-67,1],[-26,0]],[[39383,83559],[0,-261],[0,-74],[0,-10],[0,-79],[0,-90],[0,-27],[0,-49],[0,-58],[1,-26],[0,-10],[0,-61],[-1,-84],[0,-44],[1,-12],[0,-33],[0,-74],[0,-38],[0,-73],[0,-43],[-2,-30],[0,-90],[0,-42],[-1,-134],[0,-77],[0,-62],[0,-143],[0,-26],[0,-21],[-1,-50],[0,-45],[0,-11],[0,-17],[0,-38],[0,-13],[0,-20],[1,-31],[1,-44],[0,-29],[-1,-30],[0,-27],[0,-25],[-1,-65],[-1,-42],[-1,-11],[0,-37],[0,-40],[-1,-11],[1,-37],[1,-135],[0,-110],[0,-26],[0,-41],[0,-95],[0,-33],[0,-58],[0,-40],[0,-10],[0,-61],[0,-48],[0,-16],[0,-67],[0,-13],[0,-16],[1,-44],[0,-30],[0,-18],[0,-24],[0,-31],[0,-173],[1,-34],[0,-26],[1,-211],[0,-137],[0,-70],[0,-65],[0,-55]],[[39382,79478],[-59,0],[-63,0],[-92,0],[-41,-1],[-66,1],[-67,0],[-31,0],[-31,0],[-12,0],[-13,1],[-19,0],[-19,0],[-63,0],[-34,0],[-20,1],[-17,0],[-63,0]],[[38672,79480],[-69,0],[-134,1],[-142,1],[-67,0],[-49,1],[-83,0],[-67,0],[-39,0],[-39,0],[-28,0],[-28,0],[-66,0],[-30,0],[-37,0],[-48,0],[-85,0],[-133,0],[-94,0],[-13,0],[-15,0],[-8,0],[-1,0],[-63,0],[-74,1],[-9,0],[-44,0],[-38,0],[-51,0],[-42,0],[-47,1],[-59,0],[-46,0],[-133,0],[-44,0],[-34,0],[-30,0],[-92,0],[-67,0],[-35,0],[-27,1],[-78,0],[-64,0],[-11,-1],[-80,0],[-78,0],[-33,0],[-83,0],[-79,0],[-133,0],[-13,0],[-120,0],[-49,0],[-7,0],[-39,0],[-9,0],[-29,0],[-74,0],[-59,0],[-49,0]],[[35375,79485],[0,82],[0,33],[0,27],[0,77],[0,105],[0,48],[0,13],[0,11],[0,14],[0,58],[0,47],[0,11],[0,10],[0,31],[1,15],[-1,22],[0,63],[0,80],[0,31],[0,24],[0,87],[0,14],[-1,96],[0,72],[0,97],[0,35],[0,77],[0,24],[0,41],[0,98],[0,39],[-1,109],[0,1],[0,67],[0,24],[0,10],[1,61],[-1,60],[-1,84],[0,87],[0,45],[0,4],[1,64],[0,73],[0,36],[0,26],[0,75],[1,84],[0,1],[-1,17],[0,173],[-2,81],[2,56],[-1,137],[0,11],[0,58],[0,17],[0,48],[0,141],[0,53],[0,25],[0,11],[0,48],[0,137],[1,34],[0,4],[-1,52],[0,47],[0,69],[0,205],[0,137],[0,127]],[[43391,83567],[0,-40],[0,-19],[0,-34],[0,-72],[0,-38],[0,-10],[0,-13],[0,-13],[0,-50],[0,-51],[-1,-92],[0,-56],[0,-10],[1,-10],[0,-35],[-1,-66],[0,-45],[0,-127],[0,-40],[0,-92],[0,-20],[0,-54],[0,-11],[0,-3],[0,-14],[0,-3],[1,-10],[0,-14],[-1,-15],[0,-41],[0,-12],[0,-1],[-1,-19],[1,-27],[0,-28],[0,-3],[-1,-36],[-1,-35],[0,-11],[0,-10],[1,-22],[0,-38],[0,-41],[0,-60],[0,-43],[0,-9],[0,-86],[0,-12],[-1,-26],[0,-17],[0,-55],[0,-43],[0,-28],[0,-29],[0,-10],[0,-9],[0,-16],[0,-15],[0,-11],[0,-25],[0,-10],[0,-11],[0,-13],[0,-14],[0,-10],[0,-12],[0,-29],[0,-30],[0,-10],[0,-11],[0,-59],[0,-25],[0,-13],[0,-25],[0,-34],[-1,-46],[0,-11],[0,-23],[0,-23],[0,-16],[0,-17],[0,-9],[1,-53],[0,-5],[-1,-6],[-1,-16],[0,-20],[-1,-23],[1,-12],[1,-13],[0,-11],[0,-60],[0,-34],[0,-36],[0,-12],[-1,-60],[0,-17],[0,-34],[0,-21],[0,-12],[0,-80],[0,-31],[-1,-55],[0,-41],[0,-20],[-1,-20],[1,-43],[0,-61],[0,-64],[-1,-62],[0,-29],[0,-121],[-1,-60],[0,-1],[1,-41],[-3,-34],[-1,-14],[1,-45],[0,-129],[0,-1],[0,-17],[0,-10],[1,-92],[0,-45],[0,-20],[0,-24],[0,-35],[0,-35],[0,-69],[0,-15]],[[43382,79482],[-69,0],[-66,0],[-24,0],[-174,-1],[-81,0],[-52,0],[-123,-1],[-10,0],[-127,-1]],[[42656,79479],[-104,0],[-31,0],[-112,-1],[-1,0],[-37,0],[-11,0],[-15,0],[-62,0],[-12,0],[-90,0],[-54,0],[-11,0],[-98,0],[-79,0],[-46,0],[-9,0],[-10,0],[-54,0],[-9,0],[-12,0],[-18,0],[-19,0],[-9,0],[-40,0],[-46,0],[-8,-1],[-58,1],[-16,0],[-11,0],[-21,0],[-26,0],[-27,0],[-26,0],[-14,0],[-11,0],[-23,0],[-16,0],[-12,-1],[-96,1],[-30,0],[-10,0],[-11,0],[-43,0],[-23,0],[-13,0],[-40,0],[-21,-1],[-10,0],[-9,0],[-16,0],[-10,0],[-26,0],[-39,0],[-69,3],[-52,-2],[-137,0],[-11,0],[-53,0],[-78,1],[-3,0],[-132,2],[-14,-1],[-13,1],[-23,-1],[-69,-1],[-15,1],[-35,-1],[-55,0],[-43,-1],[-67,0],[-38,0],[-28,0],[-82,0],[-51,0],[-68,0],[-30,0],[-35,0],[-58,0],[-11,0],[-64,0],[-67,0],[-66,0],[-133,0],[-19,0]],[[35375,79485],[-15,0],[-3,0],[-66,1],[-49,0],[-84,-1],[-52,1],[-27,0],[-1,0],[-55,0],[-74,0],[-60,0],[-93,0],[-66,0],[-58,0]],[[34672,79486],[-12,0],[-68,0],[-68,0],[-119,-1],[-59,0],[-1,0],[-74,-2],[-20,1],[-140,1],[-35,1],[-36,-4],[-61,3],[-136,1],[-171,1],[-8,0],[-93,0],[-59,0],[-27,0],[-35,-1],[-13,-1],[-40,1],[-90,0],[-66,0],[-67,0],[-67,0],[-63,0],[-3,0],[-66,0],[-67,0],[-25,0],[-42,0],[-66,0],[-133,0],[-9,0],[-57,0],[-73,0],[-67,0],[-13,0],[-12,0],[-35,0],[-67,0],[-66,1],[-68,0],[-68,0],[-65,-1],[-65,0],[-31,0],[-28,1],[-9,0],[-66,0],[-66,0],[-67,-1],[-21,0],[-45,1],[-67,0],[-26,-1],[-20,0],[-82,-1],[-31,0],[-59,0]],[[31359,79485],[0,36],[0,16],[0,16],[-1,67],[0,115],[1,31],[-1,105],[0,137],[1,58],[-1,77],[0,82],[1,53],[0,47],[0,1],[0,12],[-1,78],[0,68],[0,68],[0,135],[0,92],[0,45],[1,94],[-1,42],[1,35],[-1,58],[0,47],[0,58],[0,10],[4,71],[0,60],[0,91],[0,78],[0,59],[0,2],[0,112],[0,78],[0,65],[0,68],[1,139],[0,74],[0,66],[0,69],[0,72],[0,113],[0,12],[-1,14],[0,70],[0,71],[1,61],[-1,61],[1,167],[0,2],[0,65],[0,62],[0,168],[0,12],[0,50],[0,36],[0,47],[0,32],[0,9],[0,34],[0,22],[0,7],[0,3],[0,67],[0,63],[0,34]],[[47418,83559],[0,-124],[0,-46],[0,-6],[0,-13],[0,-18],[0,-4],[0,-26],[0,-3],[0,-18],[0,-6],[0,-26],[0,-30],[0,-45],[0,-101],[0,-13],[0,-54],[0,-153],[1,-137],[0,-10],[0,-126],[0,-17],[0,-5],[0,-8],[0,-27],[0,-11],[0,-68],[0,-53],[0,-16],[-1,-22],[0,-18],[0,-27],[0,-51],[0,-82],[0,-93],[0,-14],[0,-10],[0,-45],[0,-51],[0,-64],[1,-56],[0,-16],[0,-29],[0,-10],[0,-9],[0,-11],[-1,-22],[1,-11],[0,-31],[0,-14],[0,-14],[0,-3],[0,-7],[0,-16],[0,-11],[0,-7],[0,-9],[0,-10],[0,-16],[0,-10],[-1,-96],[0,-2],[0,-98],[0,-10],[0,-15],[0,-35],[0,-13],[0,-37],[0,-61],[-1,-62],[0,-16],[-1,-17],[0,-17],[0,-85],[-1,-96],[-1,-89],[-1,-37],[0,-34],[0,-32],[0,-53],[-1,-20],[0,-28],[0,-33],[0,-24],[-1,-65],[0,-18],[0,-17],[-1,-31],[0,-30],[-1,-68],[-1,-138],[-2,-147],[0,-15],[-2,-120],[0,-74],[0,-64],[0,-18],[0,-42],[0,-70],[0,-69],[0,-34],[0,-34],[0,-52]],[[47404,79490],[-24,0],[-24,0],[-28,0],[-28,0],[-19,0],[-10,0],[-9,-1],[-30,0],[-24,1],[-13,0],[-37,0],[-29,0],[-22,0],[-33,0],[-61,0],[-10,0],[-28,0],[-29,0],[-14,0],[-8,0],[-8,0],[-9,0],[-14,0],[-21,0],[-22,0],[-33,1],[-12,-1],[-7,0],[-23,5],[-23,0],[-10,0],[-11,0],[-18,0],[-17,0],[-1,0],[-25,0],[-24,0]],[[46646,79495],[-14,0],[-8,0],[-8,0],[-30,0],[-22,0],[-25,0],[-34,0],[-36,0],[-44,0],[-17,0],[-18,0],[-17,0],[-46,0],[-47,0],[-9,0],[-12,0],[-8,0],[-13,0],[-52,0],[-10,0],[-10,0],[-14,0],[-83,0],[-24,1],[-8,0],[-10,0],[-12,0],[-17,0],[-10,0],[-4,0],[-5,0],[-12,0],[-71,0],[-8,0],[-38,0],[-8,0],[-8,0],[-13,-6],[-5,-2],[-7,0],[-1,0],[-9,0],[-27,0],[-10,0],[-11,0],[-63,0],[-63,0],[-25,0],[-13,0],[-30,-1],[-25,0],[-26,0],[-10,0],[-19,0],[-15,2],[-32,0],[-34,-1],[-9,0],[-35,0],[-49,-1],[-22,0],[-25,0],[-24,0],[-37,0],[-14,0],[-20,0],[-20,0],[-22,1],[-21,0],[-11,0],[-9,0],[-42,0],[-11,0],[-14,0],[-9,0],[-8,0],[-18,0],[-10,0],[-17,0],[-16,0],[-16,0],[-20,0],[-25,0],[-40,0],[-13,0],[-13,0],[-49,-1],[-8,0],[-25,0],[-9,0],[-8,0],[-24,0],[-26,-1],[-10,0],[-9,0],[-11,0],[-24,0],[-14,0],[-20,0],[-9,0],[-46,-1],[-9,0],[-26,0],[-14,0],[-7,0],[-18,1],[-47,1],[-71,-1],[-67,-1],[-38,0],[-31,0],[-188,-1],[-36,1],[-42,0],[-50,0],[-100,-1],[-14,0],[-4,0],[-5,0],[-10,0],[-17,0],[-23,0],[-8,-1],[-24,0],[-84,1],[-32,-1],[-35,0],[-70,0],[-62,-1]],[[50581,83549],[0,-581],[0,-25],[0,-655],[1,-132],[3,-247],[2,-105],[0,-1],[16,3]],[[50603,81806],[0,-30],[0,-16],[0,-16],[0,-10],[-1,-45],[0,-10],[0,-64],[0,-72],[0,-103],[-1,-201],[0,-71],[0,-17],[0,-18],[0,-44],[0,-48],[0,-34],[0,-31],[0,-31],[-1,-13],[0,-37],[0,-20],[0,-54],[0,-61],[0,-44],[0,-22],[0,-71],[0,-71],[0,-65],[0,-54],[1,-39],[0,-30],[-1,-11],[0,-12],[1,-21],[0,-3],[-1,-8],[-1,-38],[1,-57],[1,-72],[-1,-32],[0,-33],[0,-10],[1,-33],[0,-45],[0,-5],[0,-13],[0,-11],[-1,-56],[1,-18],[0,-22],[0,-20],[0,-43],[0,-137],[2,-86],[-2,-45],[0,-59]],[[50601,79474],[-20,1],[-45,0],[-137,0],[-10,0],[-10,0],[-13,1],[-14,0],[-24,0],[-24,0],[-10,0],[-13,0],[-12,1],[-133,-1],[-91,1],[-21,0],[-21,0],[-12,0],[-12,0],[-56,0],[-23,0],[-17,0],[-17,0],[-83,0],[-9,0],[-23,0],[-22,0],[-57,1],[-13,0],[-13,0],[-16,-1],[-31,0],[-11,0],[-14,-1],[-9,0],[-13,-1],[-34,1],[-34,0],[-27,0],[-27,0],[-88,0],[-10,0],[-28,0],[-27,0],[-31,0],[-31,-1],[-9,0],[-57,2],[-18,0],[-91,0],[-30,0],[-29,0],[-20,0],[-21,0],[-22,0],[-22,0],[-20,0],[-24,0],[-13,0],[-14,0],[-27,0],[-28,0],[-11,0],[-14,0],[-14,0],[-10,0],[-10,0],[-35,0],[-25,0],[-5,0],[-59,1],[-23,0],[-49,0],[-20,0],[-63,1],[-26,0],[-17,0],[-2,0],[-34,0],[-46,1],[-64,0],[-61,0],[-60,1],[-37,0],[-36,0],[-22,0],[-11,0],[-17,1],[-55,0],[-9,0],[-21,-1],[-18,0],[-18,0],[-16,0],[-15,0],[-26,0],[-15,0],[-41,2],[-7,-1],[-32,0],[-54,2],[-61,2],[-34,2],[-35,2],[-138,0]],[[31359,79485],[-80,0],[-20,0],[-17,0],[-18,1],[-9,0],[-28,-1],[-28,0],[-37,-1],[-30,0],[-85,0],[-47,0],[-133,0],[-83,0],[-51,0],[-15,0]],[[30678,79484],[-79,1],[-12,0],[-14,0],[-14,0],[-33,0],[-34,0],[-65,0],[-83,-1],[-52,0],[-30,0],[-66,0],[-66,0],[-67,0],[-67,0],[-67,0],[-31,0],[-31,0],[-1,0],[-7,0],[-128,0],[-67,0],[-16,-1],[-23,0],[-13,0],[-13,0],[-68,0],[-67,0],[-67,0],[-67,0],[-65,0],[-67,0],[-57,0],[-10,0],[-10,0],[-57,0],[-65,0],[-67,0],[-68,0],[-66,0],[-66,0],[-36,0],[-31,0],[-8,0],[-27,0],[-7,0],[-3,0],[-12,0],[-9,0],[-66,-1],[-67,0],[-66,0],[-66,-1],[-66,0],[-68,-1],[-65,0],[-68,0],[-66,-1],[-66,0],[-68,-1],[-66,0],[-67,0],[-134,2],[-132,1],[-44,1],[-9,0]],[[27415,79482],[0,42],[2,670],[0,17],[2,1009],[3,1441],[2,828],[0,69]],[[54579,80262],[0,-2],[0,-34],[-1,-45],[-1,-115],[1,-53],[0,-44],[0,-60],[0,-35],[0,-29],[0,-52],[0,-37],[0,-11],[-1,-57],[0,-59],[0,-84],[0,-88],[0,-26],[0,-27],[0,-88],[0,-84],[0,-5],[0,-33],[0,-75],[1,-71],[-1,-71],[0,-21],[1,-37],[2,-27],[0,-1],[-2,-84],[-1,-10],[0,-16],[0,-17],[0,-72],[0,-52],[0,-122],[0,-17],[0,-140],[0,-139],[0,-128],[0,-13],[0,-139],[0,-40],[0,-101],[0,-77],[0,-198],[0,-1],[1,-173]],[[54578,77352],[-8,-12],[-1,-10],[-4,-12],[-4,-9],[1,-11],[-4,-8],[-3,-13],[-3,-11],[-4,-7],[-10,-18],[-9,-13],[-1,-2],[-11,-10],[-15,-8],[-16,-13],[-5,-5],[-4,-11],[-5,-8],[-1,-1],[-4,-4],[-4,-2],[0,-1],[-1,0],[-5,0],[-13,8],[-1,0],[-63,58],[-8,8],[-3,5],[-2,7],[-1,1],[-3,6],[-7,9],[-7,7],[-8,2],[-11,0],[-7,-2],[-8,-4],[-30,-23],[-6,-2],[-11,0],[-1,0],[-10,1],[-12,4],[-14,3],[-13,2],[-1,0],[-59,0],[-13,-1],[-14,-5],[-7,-4],[-9,-9],[-1,0],[0,-1],[-2,-3],[-2,-5],[-1,-1],[-4,-55],[0,-3],[0,-6],[-3,-15],[-2,-3],[-4,-5],[-1,0],[-49,-49],[-10,-9],[-1,-1],[-7,-4],[-8,-1],[-7,0],[-3,1],[-1,1],[-2,3],[-2,8],[-10,25],[-7,10],[-2,2],[-6,2],[-23,2],[-14,-1],[-23,-6],[-14,-2],[-20,0],[-8,0],[-1,0],[-2,1],[-12,4],[-9,4],[-13,9],[-8,10],[-2,4],[-1,14],[-1,1],[-13,36],[-29,47],[-14,19],[-4,7],[-4,5],[-9,8],[-12,8],[-16,7],[-51,21],[-4,2],[-15,1],[-11,1],[-12,0],[-3,1],[-10,-3],[-8,2],[-13,1],[-10,1],[-12,-2],[-18,2],[-5,0],[-8,0],[-22,-3],[-9,-1],[-5,0],[-8,1],[-2,0],[-9,5],[-1,21],[0,11],[-7,15],[-8,30],[-7,12],[-1,1],[-3,5],[-5,7],[-1,2],[-7,12],[-7,7],[-2,0],[-6,0],[-3,0],[-2,-15],[-1,-7],[-2,-10],[-4,-3],[-5,-4],[-5,-1],[-6,-1],[-11,3],[-5,3],[-6,3],[-6,7],[-4,4],[-1,1],[-28,23],[-8,5],[-10,4],[-34,9],[-28,3],[-22,1],[-22,-1],[-11,-6],[-10,-9],[-2,-2],[-8,-6],[-23,-19],[-1,0],[-13,-8],[-13,-3],[-13,-6],[-17,-17],[-6,-2],[-21,-9],[-11,-7],[-9,-5],[-7,0],[-5,1],[-1,1],[-6,4],[-3,3],[0,1],[-4,7],[-3,8],[-1,3],[0,1],[-7,16],[-6,6],[-13,2],[-11,3],[-51,1],[-16,-2],[-21,-6],[-10,-3],[-9,-2],[-2,-1],[-7,-1],[-14,0],[-19,1],[0,1],[-7,2],[-1,0],[-5,8],[1,11],[2,11],[-1,12],[-8,7],[-14,0],[-20,-8],[-8,-2],[-11,0],[-19,8],[-1,0],[-16,4],[-21,0],[-23,-5],[-11,-4],[-7,-4],[-20,-13],[-13,-10],[-2,-1],[-7,-4],[-2,-1],[-11,-4],[-4,-2],[-9,-2],[-1,1],[-9,1],[-2,0],[-8,5],[-9,11],[-2,1],[-6,13],[-15,17],[-9,9],[-12,10],[-12,6],[-17,-3],[0,-1],[-8,-5],[-2,-2],[-17,-11],[-44,-24],[-9,-7],[-13,-5],[-10,-5],[-23,-8],[-12,-6],[-31,-5],[-12,2],[-8,3],[-18,10],[-17,11],[-10,11],[-151,108],[-12,8],[-22,16],[-65,46],[-10,7],[-17,12],[-37,27],[-20,14],[-39,29],[-53,38],[-72,52],[-36,25],[-70,51],[-33,24],[-7,5],[-88,63],[-13,8],[-48,35],[-83,59],[-31,22],[-15,11],[-4,2],[-92,66],[-126,91],[-35,25],[-40,28],[-73,52],[-5,4],[-4,3],[-1,0],[-69,50],[-98,70],[-113,81],[-93,66]],[[50602,78653],[0,5],[0,114],[0,119],[-1,207],[0,16],[0,58],[0,10],[-1,21],[1,12],[0,16],[0,1],[0,55],[0,60],[0,70],[0,57]],[[50603,81806],[11,2],[9,-5],[6,-1],[8,-6],[5,-1],[4,2],[9,6],[7,0],[15,-2],[10,1],[5,0],[10,3],[15,3],[8,-1],[10,2],[19,6],[6,0],[10,-2],[12,4],[6,2],[4,1],[4,0],[9,4],[7,10],[3,9],[31,13],[16,17],[6,4],[5,10],[8,5],[10,9],[7,8],[4,5],[5,6],[0,10],[2,12],[2,7],[2,7],[7,8],[9,7],[1,1],[19,2],[12,4],[23,-1],[9,4],[12,-1],[23,-6],[9,-4],[8,-1],[16,-4],[14,-5],[12,-2],[12,0],[14,1],[10,-2],[14,-5],[10,-5],[20,-9],[1,0],[0,-1],[11,-39],[0,-1],[17,-15],[29,-25],[26,-19],[18,-17],[27,-18],[16,-12],[6,-5],[10,-6],[8,-3],[12,-10],[5,-5],[10,-2],[8,1],[12,-7],[11,-9],[24,-23],[23,-22],[19,-22],[1,-1],[15,-21],[14,-21],[0,-1],[12,-10],[6,-5],[10,-4],[1,0],[1,0],[0,-1],[2,-8],[4,-12],[9,-11],[11,-11],[1,-1],[8,-32],[1,-3],[7,-8],[4,-2],[0,-1],[1,0],[7,-17],[3,-5],[0,-1],[15,-12],[0,-1],[1,0],[8,-13],[5,-14],[4,-7],[1,0],[0,-1],[9,-9],[11,-14],[9,-5],[7,-10],[12,-17],[1,-1],[11,-9],[4,-4],[1,-1],[8,-13],[6,-11],[0,-1],[1,0],[12,-13],[14,-7],[8,-6],[12,-8],[7,-3],[6,-4],[11,-11],[6,-4],[9,-7],[6,-4],[9,-6],[39,-26],[6,-3],[7,-6],[8,-7],[5,-4],[9,-5],[9,-4],[4,-2],[17,-5],[12,-7],[12,-1],[12,4],[8,-2],[0,-1],[15,-19],[1,-1],[0,-1],[1,-1],[2,-3],[0,-1],[13,-27],[1,-4],[1,-1],[2,-8],[1,-3],[1,-3],[1,-3],[-11,-35],[-3,-6],[0,-1],[-1,-3],[0,-1],[0,-1],[1,-2],[4,-8],[3,-4],[1,-1],[0,-1],[2,-2],[3,-5],[5,-9],[9,-26],[4,-17],[0,-1],[8,-11],[0,-1],[12,-13],[1,-1],[4,-7],[7,-8],[1,-2],[5,-4],[8,-6],[4,-3],[3,-4],[12,-14],[22,-27],[1,-1],[0,-1],[10,-15],[3,-15],[0,-1],[19,-20],[1,-1],[7,-14],[2,-3],[1,-3],[1,-3],[2,-2],[0,-1],[1,0],[11,-11],[55,-39],[0,-1],[2,-1],[7,-6],[8,-8],[1,-1],[7,-18],[6,-25],[0,-1],[7,-9],[1,-1],[14,-3],[15,2],[16,1],[10,-2],[10,-8],[1,-1],[5,-10],[0,-1],[7,-7],[17,-12],[18,-10],[1,-1],[1,0],[13,-10],[1,0],[2,-3],[1,0],[4,-4],[2,-6],[-1,-11],[-3,-8],[-9,-9],[-5,-6],[-4,-9],[0,-2],[0,-1],[0,-2],[2,-4],[0,-1],[1,-1],[0,-1],[1,0],[7,-8],[17,-13],[7,-4],[19,-7],[8,-4],[0,-1],[1,-1],[3,-4],[2,-2],[0,-1],[2,-4],[8,-12],[2,-3],[7,-10],[15,-13],[6,-4],[8,-3],[8,-2],[3,0],[5,0],[2,0],[10,-5],[1,0],[38,-21],[1,0],[1,-1],[2,-1],[3,-2],[1,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-2],[1,-1],[2,-4],[2,-5],[1,-1],[1,-1],[3,-3],[17,-8],[3,-1],[1,-1],[18,-7],[1,-1],[1,0],[3,-1],[6,-3],[12,-4],[18,-7],[40,-24],[1,0],[27,-17],[1,0],[4,-3],[3,-2],[1,0],[1,-1],[1,-1],[3,-3],[0,-1],[1,0],[23,-27],[2,-2],[1,-2],[0,-1],[6,-11],[1,-3],[1,-2],[3,-10],[0,-1],[3,-15],[0,-6],[0,-1],[-4,-10],[-2,-5],[0,-1],[0,-1],[1,-7],[3,-5],[2,-5],[0,-1],[2,-5],[1,-2],[4,-8],[4,-6],[1,-2],[23,-20],[1,0],[0,-1],[7,-6],[1,-1],[3,-2],[1,-1],[27,-14],[3,-1],[2,0],[3,-1],[1,-1],[5,-2],[1,0],[9,-3],[2,-1],[1,-1],[3,-3],[15,-15],[1,0],[13,-18],[1,-1],[3,-5],[2,-12],[1,0],[0,-1],[2,-4],[3,-3],[1,-1],[3,-1],[28,0],[2,0],[3,1],[23,3],[4,1],[10,3],[0,1],[7,3],[15,3],[15,1],[17,-1],[16,-4],[23,-8],[13,-7],[1,-1],[2,-2],[1,-1],[2,-2],[2,-3],[1,-2],[1,0],[1,-1],[0,-2],[2,-4],[2,-2],[16,-8],[10,-6],[2,0],[7,-3],[7,-1],[9,0],[18,3],[8,3],[6,4],[3,3],[8,7],[7,1],[7,1],[8,4],[12,9],[1,2],[7,7],[16,18],[5,12],[8,8],[9,1],[6,-3],[10,-5],[13,-1],[10,-6],[14,-10],[9,-3],[9,-1],[16,-3],[10,-4],[11,-6],[8,-8],[0,-1],[1,-1],[2,-8],[0,-1],[0,-1],[9,-4],[23,-11],[19,-7],[13,0],[9,2],[13,6],[22,9],[22,-1],[13,2],[4,1],[17,11],[16,1],[11,-2],[19,-8],[14,-7],[11,-4],[1,0],[27,23],[1,15],[0,3],[8,12],[17,19],[3,3],[0,1],[4,4],[9,7],[9,8],[7,4],[3,0],[6,6],[6,7],[4,7],[6,14],[7,22],[0,8],[-3,20],[0,2],[-1,8],[0,3],[-1,16],[0,2],[-1,6],[6,34],[8,19],[-1,12],[-5,12],[-1,12],[1,5],[7,8],[2,5],[22,60],[1,3],[0,4],[2,2],[1,0],[21,8],[20,5],[9,-1],[2,1],[24,1],[1,0],[18,-1],[1,0],[1,0],[13,-3],[1,0],[4,-2],[3,-2],[1,0],[0,-1],[27,-6],[1,-1],[10,-6],[2,-1],[7,-4],[1,-1],[4,-2],[8,-5],[1,0],[42,-16],[10,-2],[18,-1],[7,1],[24,4],[18,-2],[27,-2],[2,0],[2,-1],[28,-9],[2,-1],[20,-1],[15,1],[32,6],[11,4],[10,5],[2,2],[1,1],[12,8],[9,1],[17,-1],[2,-1],[1,0],[6,-2],[1,0],[7,-4],[16,-8],[1,-1],[8,-6],[2,-2],[3,-3],[4,-5],[1,0],[6,-7],[2,-3],[5,-3],[7,-2],[22,0],[8,1],[13,2],[3,0],[1,0],[0,-1],[1,0],[5,-3],[14,-13],[1,-1],[22,-28],[1,-1],[1,-1],[0,-1],[15,-23],[6,-13],[1,-2],[1,0],[0,-1],[3,-5],[10,-8],[15,-9],[3,-1],[44,-10],[1,0],[10,0],[14,-4],[11,0],[9,-4]],[[58558,78542],[1,-103],[-4,-106],[-2,-102],[0,-110],[0,-1],[0,-26],[0,-137],[0,-45],[0,-90],[0,-137],[0,-137],[0,-126],[0,-10],[0,-10],[0,-2],[0,-24],[0,-20],[0,-168],[0,-74],[0,-64],[0,-10],[0,-11],[2,-13],[0,-13],[0,-12],[0,-11],[0,-8],[0,-4],[0,-12],[0,-11],[0,-8],[0,-3],[0,-9],[0,-10],[0,-10],[0,-10],[-1,-10],[-1,-20],[0,-29],[0,-66],[0,-23],[0,-9],[0,-35],[0,-16],[0,-19],[0,-15],[0,-15],[0,-16],[0,-18],[0,-17],[0,-27],[0,-26],[0,-25],[0,-18],[0,-29],[0,-17],[0,-23],[0,-15],[0,-74],[0,-21],[0,-14],[0,-24],[0,-20],[0,-10],[0,-15],[0,-132],[0,-20],[0,-7],[0,-11],[0,-39],[0,-14],[0,-3],[0,-11],[0,-79],[0,-92],[0,-3],[0,-42],[0,-11],[0,-160],[0,-33],[0,-57],[0,-2],[0,-46],[0,-12],[0,-147],[0,-58],[0,-67],[0,-41],[0,-99],[0,-50]],[[58553,74993],[-37,2],[-12,-1],[-13,0],[-10,1],[-97,-1],[-58,0],[-49,0],[-15,0],[-69,-1],[-137,1],[-43,0],[-51,1],[-21,-1],[-38,0],[-8,0],[-11,0],[-34,0],[-30,0],[-24,0],[-13,0],[-36,0],[-35,0],[-28,0],[-29,0],[-13,1],[-107,-1],[-58,0],[-16,0],[-15,0],[-204,0],[-92,0],[-31,0],[-92,0],[-67,0],[-1,0],[-83,0],[-54,0],[-58,0],[-40,0],[-12,0],[-135,0],[-30,1],[-47,-1],[-115,0],[-45,0],[-23,-1],[-27,0],[-144,-1],[-8,0],[-13,0],[-60,0],[-11,0],[-33,0],[-47,0],[-48,0],[-32,1],[-56,-1],[-35,1],[-36,-2],[-21,1],[-8,0],[-25,-1],[-22,1],[-53,0],[-27,0],[-37,0],[-14,0],[-32,0],[-24,0],[-30,0],[-20,0],[-13,0],[-86,0],[-17,-1],[-25,1],[-11,0],[-9,0],[-15,0],[-44,0],[-96,0],[-9,0],[-28,0],[-10,0],[-35,0],[-9,0],[-105,-1],[-65,0],[-69,0],[-24,0],[-18,0],[-68,1],[-74,0],[-24,1],[-25,0]],[[54575,74993],[0,11],[0,16],[0,1],[0,12],[2,176],[1,49],[0,21],[2,67],[0,31],[-1,165],[0,39],[0,35],[0,3],[-1,13],[0,14],[0,25],[0,18],[0,54],[0,55],[0,40],[-1,123],[0,39],[0,106],[0,56],[-1,16],[1,43],[0,187],[0,53],[0,10],[0,32],[0,47],[0,26],[0,25],[0,14],[0,131],[0,140],[0,2],[0,98],[0,20],[0,12],[0,14],[0,59],[0,75],[-1,72],[2,113],[0,1]],[[54579,80262],[6,-3],[6,-1],[1,0],[5,0],[6,2],[38,5],[1,0],[2,0],[4,-2],[4,-4],[14,-17],[12,-24],[1,-7],[3,-29],[1,-10],[-1,-5],[-1,-12],[0,-9],[2,-14],[6,-12],[1,-1],[1,-1],[1,0],[7,-2],[2,-1],[14,0],[7,2],[2,0],[6,4],[4,5],[1,6],[-2,18],[-1,5],[-1,16],[6,22],[1,2],[1,0],[1,1],[4,-1],[6,-5],[11,-11],[6,-7],[3,-6],[1,-5],[2,-1],[6,-6],[29,-42],[10,-20],[3,-8],[0,-3],[10,-10],[10,-13],[1,-3],[2,-6],[3,-5],[6,-6],[9,-6],[18,-6],[5,-2],[7,-2],[14,-5],[13,1],[25,5],[5,4],[4,5],[2,4],[0,4],[0,3],[-5,8],[-14,16],[-6,8],[-4,9],[-2,7],[-1,11],[0,9],[2,12],[6,17],[9,16],[4,6],[13,5],[7,1],[3,0],[2,0],[4,-1],[13,-14],[4,-8],[2,-9],[1,-15],[2,-4],[4,-3],[4,-1],[29,-16],[1,0],[4,-3],[12,-7],[1,-1],[1,0],[8,-5],[22,-14],[11,-9],[1,-1],[20,-6],[7,0],[5,2],[2,0],[5,2],[8,3],[2,1],[7,4],[5,4],[7,7],[4,6],[7,13],[4,15],[3,17],[2,12],[0,9],[-3,7],[-1,1],[0,4],[0,3],[1,19],[-1,28],[7,66],[1,9],[8,11],[3,8],[8,24],[4,14],[6,12],[18,24],[11,14],[2,5],[2,7],[1,6],[-1,1],[-4,6],[-1,0],[-22,19],[-13,7],[-1,1],[-22,12],[-1,1],[-2,2],[0,1],[-7,11],[1,23],[-1,11],[-3,16],[4,13],[24,23],[1,24],[4,21],[-1,1],[-1,0],[-5,4],[-9,5],[0,1],[0,1],[-5,18],[-2,21],[6,44],[46,45],[56,87],[1,1],[5,6],[3,2],[3,2],[8,4],[1,0],[8,4],[8,4],[12,2],[11,0],[12,-1],[21,-3],[12,-3],[15,-12],[35,-5],[12,-2],[13,-7],[18,-20],[1,-1],[8,-23],[-1,-9],[-3,-7],[-4,-3],[-1,-1],[-5,-9],[-1,-5],[-1,-4],[-2,-14],[-1,-1],[0,-1],[1,-18],[2,-7],[4,-5],[44,-43],[14,-11],[25,-17],[22,-20],[1,-2],[1,-1],[4,-3],[12,-10],[0,-1],[1,0],[3,-2],[25,-12],[10,-6],[1,-1],[4,-2],[1,-1],[1,0],[1,-1],[19,-6],[34,-19],[12,-10],[19,-21],[6,-8],[8,-11],[10,-17],[2,-5],[3,-17],[4,-16],[11,-23],[5,-11],[7,-7],[11,-1],[1,0],[20,3],[15,2],[8,3],[0,1],[19,9],[40,22],[11,7],[0,1],[9,4],[1,1],[16,5],[7,1],[1,0],[15,-3],[2,0],[12,-2],[1,0],[6,-1],[0,-1],[1,0],[5,-2],[2,-1],[2,-1],[1,0],[4,-2],[5,-4],[7,-7],[1,0],[3,-3],[1,-2],[1,0],[1,-1],[7,-11],[4,-8],[7,-21],[1,-5],[-1,-31],[-1,-10],[0,-1],[9,-8],[15,-13],[24,-6],[35,7],[23,14],[7,12],[3,10],[12,8],[17,-3],[21,-15],[0,-1],[1,-1],[2,-3],[0,-6],[1,-2],[-1,-5],[0,-2],[-1,-4],[-1,-8],[-5,-14],[0,-31],[0,-3],[2,-5],[3,-4],[9,-10],[8,-8],[1,-1],[-18,-23],[0,-1],[-11,-6],[-6,-4],[-3,-2],[-1,0],[-4,-1],[-16,0],[-7,0],[-10,-1],[-3,-1],[-7,0],[-31,-5],[-8,-7],[3,-15],[0,-1],[14,-12],[1,0],[0,-1],[1,-2],[4,-8],[1,-1],[18,-14],[37,-20],[34,-6],[8,-9],[1,0],[1,-1],[-1,-32],[4,-7],[0,-1],[1,-1],[22,-3],[8,1],[26,25],[18,8],[17,-12],[22,-14],[1,0],[6,-13],[-5,-10],[-21,-8],[-8,-6],[-6,-14],[3,-11],[5,-13],[4,-6],[1,-1],[15,-7],[32,15],[20,13],[7,-7],[1,0],[0,-1],[3,-13],[-8,-23],[3,-25],[6,-12],[9,-22],[5,-20],[0,-1],[12,-9],[4,-2],[24,-12],[1,0],[6,-14],[-5,-9],[-26,-28],[-6,-12],[-6,-11],[-5,-21],[12,-17],[1,-2],[24,-10],[18,0],[40,21],[17,13],[18,1],[20,-6],[14,-9],[1,0],[14,-29],[0,-22],[0,-39],[5,-27],[4,-23],[0,-1],[7,-9],[5,-7],[15,-23],[1,-1],[2,-13],[-4,-13],[-14,-16],[-11,-8],[-11,-8],[-17,-31],[-1,-17],[6,-24],[14,-41],[7,-33],[1,-10],[-4,-21],[-7,-25],[1,-30],[0,-1],[11,-30],[12,-23],[1,-1],[26,-13],[33,-12],[22,1],[8,2],[5,-11],[1,-36],[6,-27],[1,-11],[-1,-2],[-5,-13],[-11,-21],[-1,-22],[-10,-33],[-7,-14],[0,-1],[10,-3],[13,1],[20,-8],[12,-13],[1,-2],[-1,-19],[-5,-11],[-10,-14],[-2,-4],[-14,-30],[-8,-36],[0,-18],[11,-36],[3,-12],[15,-27],[16,-37],[3,-10],[5,-25],[0,-13],[-11,-33],[-9,-27],[-2,-28],[3,-11],[13,-16],[1,-1],[17,-10],[24,-5],[48,-6],[30,-7],[33,-11],[35,-12],[14,-5],[25,2],[13,-2],[18,-16],[24,1],[28,6],[21,18],[21,32],[2,11],[13,8],[7,12],[16,7],[11,17],[35,4],[32,-4],[13,-10],[1,-1],[7,-25],[-7,-14],[-17,-10],[-11,-24],[-7,-19],[6,-22],[0,-1],[25,-21],[19,-5],[21,-7],[20,-4],[17,6],[6,12],[15,10],[3,2],[14,7],[16,1],[8,-3],[2,-1],[-7,-10],[-1,-1],[13,0],[9,-4],[9,8],[23,3],[9,4],[14,32],[25,24],[16,2],[11,-4],[7,-9],[1,-1],[20,-15],[24,2],[22,9],[14,10],[6,5],[21,1],[19,-2],[23,-9],[35,-14],[22,-8],[35,-25],[8,-11],[1,0],[1,-1],[6,-24],[0,-1],[18,-12],[71,-19],[27,2],[16,18],[17,37],[13,22],[9,5],[14,-4],[27,-7],[21,-5],[25,-8],[18,1],[13,2],[17,10],[8,6],[0,1],[19,16],[17,7],[28,1],[29,-4],[7,0],[5,3],[12,13],[1,0],[0,1],[-11,7],[-6,7],[-1,1],[-2,11],[0,11],[13,8],[10,3],[15,23],[17,6],[16,11],[17,10],[10,5],[18,-1],[16,-2],[25,-17],[15,-13],[4,-4],[1,0],[4,-16],[7,-22],[10,-31],[4,-8],[1,-1],[7,-8],[1,0],[1,-1],[0,-16],[7,-11],[1,-1],[18,-21],[23,-13],[19,-5],[9,0],[18,17],[10,9],[6,15],[1,8],[-1,39],[4,14],[14,13],[11,2],[33,-6],[12,-4]],[[46646,79495],[0,-58],[0,-43],[-1,-19],[0,-221],[-1,-181],[0,-79],[-2,-29],[0,-136],[-1,-66],[0,-32],[0,-92],[-2,-87],[0,-10],[0,-21],[1,-20],[-1,-38],[1,-42],[0,-26],[0,-11],[-2,-160],[0,-16],[1,-386],[0,-45],[1,-361],[0,-15],[0,-114],[0,-68],[1,-15],[0,-23],[0,-115],[0,-74],[-1,-180],[0,-64],[0,-40],[0,-23],[1,-35],[0,-13],[-1,-186],[0,-22],[0,-10],[0,-5],[-1,-58],[0,-45],[0,-52],[0,-19],[0,-80],[0,-42],[0,-50],[0,-40],[0,-26],[0,-39],[0,-28],[0,-41],[0,-11],[-1,-25],[0,-51],[0,-27],[0,-54],[-1,-52],[0,-17],[0,-1],[0,-54],[0,-12],[0,-108],[-1,-148],[0,-11],[0,-44],[0,-16],[0,-42],[0,-11],[0,-102]],[[46636,75008],[-25,0],[-53,0],[-38,0],[-9,0],[-38,0],[-43,0],[-17,0],[-43,0],[-29,0],[-23,0],[-32,0],[-65,0],[-34,0],[-50,0],[-129,-1],[-165,0],[-12,0],[-67,0],[-58,-1],[-33,0],[-49,0],[-99,0],[-54,-1],[-86,0],[-20,0],[-50,0],[-40,-1],[-27,0],[-38,0],[-45,0],[-42,0],[-11,0],[-3,0],[-48,-1],[-14,0],[-47,0],[-23,0],[-37,0],[-51,-1],[-17,0],[-9,0],[-22,-1],[-18,0],[-58,0],[-40,0],[-35,-1],[-35,0],[-123,0],[-9,0],[-13,0],[-110,-1],[-132,-1],[-67,0],[-64,0],[-4,0],[-73,-1],[-51,0],[-35,0],[-53,0],[-37,0],[-30,-1],[-47,0],[-45,0],[-35,0],[-35,-1],[-35,0],[-28,0],[-56,0],[-28,0],[-25,0],[-23,-1],[-82,0],[-47,-1],[-51,0],[-10,0],[-8,0],[-19,0],[-47,-1],[-25,0],[-12,0],[-13,0],[-59,-1],[-12,0],[-38,0],[-53,-1],[-9,0],[-25,0],[-10,0],[-8,0],[-310,-1]],[[42659,74989],[-2,271],[0,70],[0,48],[0,98],[0,37],[0,119],[0,29],[0,79],[0,37],[0,104],[0,16],[0,117],[-1,64],[0,78],[0,9],[-1,13],[-1,18],[1,63],[0,1],[2,65],[0,12],[-1,112],[0,101],[0,18],[0,88],[0,23],[0,69],[0,16],[0,60],[0,16],[0,33],[0,29],[0,41],[0,31],[0,15],[0,47],[0,33],[0,11],[0,52],[0,16],[0,66],[0,73],[0,77],[0,110],[0,31],[0,36],[1,100],[-1,33],[0,37],[0,11],[1,131],[0,74],[0,86],[0,51],[0,85],[0,30],[0,37],[0,49],[0,18],[0,46],[0,87],[0,71],[0,87],[0,82],[0,139],[-1,99],[0,59],[0,29],[0,67],[0,69],[0,192],[0,20],[0,9],[0,53],[0,16],[0,40],[0,31]],[[50602,78653],[-10,0],[-2,0],[-6,-1],[-3,-1],[-9,1],[-7,0],[-3,0],[-9,2],[-15,12],[-2,17],[0,3],[-1,6],[-4,11],[-3,11],[0,2],[0,2],[2,30],[1,16],[0,2],[1,6],[1,6],[-4,14],[-2,4],[-1,5],[-1,1],[-9,12],[-1,1],[-11,4],[-8,-1],[-8,-3],[-18,-5],[-10,-1],[-7,-3],[-16,-4],[-7,-5],[-1,-1],[-18,-5],[-11,1],[-14,-3],[-12,0],[-11,-2],[-1,0],[-28,4],[-12,-2],[-18,0],[-8,-4],[-21,-48],[-4,-10],[-1,-10],[-4,-10],[-8,-20],[-8,-1],[-16,11],[-6,5],[-2,2],[0,-1],[0,-37],[0,-104],[0,-14],[0,-10],[-1,-60],[0,-77],[-1,-142],[0,-53],[0,-53],[0,-22],[0,-17],[0,-11],[0,-40],[0,-24],[-1,-12],[0,-76],[0,-16],[0,-140],[-1,-73],[0,-13],[0,-42],[0,-27],[0,-23],[0,-22],[0,-17],[0,-14],[0,-4],[0,-55],[-1,-106],[0,-30],[0,-1],[0,-93],[0,-57],[0,-93],[0,-2],[-1,-55],[0,-23],[0,-11],[0,-74],[0,-9],[0,-21],[-1,-143],[0,-22],[0,-16],[0,-25],[0,-37],[0,-38],[0,-6],[0,-35],[0,-39],[0,-19],[0,-62],[0,-26],[0,-108],[0,-48],[0,-32],[-1,-96],[0,-51],[0,-12],[0,-11],[0,-47],[0,-81],[0,-1],[0,-18],[-1,-91],[0,-12],[0,-32],[0,-33],[0,-13],[0,-25],[0,-22],[0,-40],[-1,-53],[0,-32],[0,-102],[0,-12],[0,-12],[0,-32],[0,-23],[0,-46],[0,-35],[0,-45],[-1,-85],[0,-46],[0,-97],[0,-58]],[[50215,75011],[-42,1],[-17,0],[-23,0],[-15,0],[-9,0],[-15,0],[-22,0],[-20,1],[-11,0],[-14,0],[-11,0],[-12,0],[-28,0],[-76,-1],[-91,0],[-8,0],[-99,-1],[-10,0],[-8,0],[-15,0],[-18,0],[-22,-1],[-85,0],[-43,0],[-21,0],[-83,0],[-108,0],[-147,1],[-202,0],[-59,0],[-67,0],[-24,0],[-112,-1],[-112,0],[-39,0],[-95,0],[-120,1],[-4,0],[-8,0],[-171,0],[-18,0],[-12,0],[-31,0],[-9,0],[-13,0],[-106,0],[-18,0],[-102,0],[-52,0],[-42,0],[-51,0],[-10,0],[-18,0],[-52,0],[-41,0],[-86,0],[-54,-1],[-113,0],[-115,0],[-96,0],[-60,0],[-31,0],[-60,-1],[-29,0],[-65,0],[-23,0],[-47,-1],[-65,0],[-38,0],[-20,0],[-16,0]],[[42659,74989],[-108,0],[-102,-1],[-133,-1],[-74,0],[-59,0],[-132,-1],[-34,0],[-182,-1],[-73,-1],[-135,-1],[-125,0],[-94,-1],[-131,-1],[-60,0],[-72,0],[-79,1],[-10,1],[-142,-1],[-52,0],[-137,-2],[-22,-1],[-20,0],[-15,0],[-12,0],[-10,0],[-28,0],[-42,-1],[-159,-2],[-263,-3],[-40,1],[-58,1],[-4,0],[-32,-1],[-67,0],[-148,-2],[-116,-2],[-3,0],[-129,-1],[-132,-2],[-132,-1],[-130,-1],[-69,-1],[-131,-1],[-65,-1],[-67,-1],[-149,-2]],[[38682,74959],[-1,107],[0,99],[0,15],[0,93],[0,106],[0,55],[0,24],[0,116],[-1,132],[0,35],[0,44],[0,15],[0,42],[0,20],[-1,66],[0,33],[0,18],[0,106],[-1,29],[0,118],[0,20],[0,115],[-1,28],[0,45],[0,56],[0,32],[-1,22],[-1,199],[0,60],[0,11],[0,40],[1,82],[-1,11],[0,18],[0,138],[0,136],[-1,69],[0,67],[-1,137],[0,136],[0,68],[0,34],[-1,25],[0,33],[0,56],[0,68],[0,64],[0,4],[0,23],[0,95],[0,18],[-1,136],[0,51],[0,88],[0,68],[0,64],[0,115],[0,23],[1,136],[1,71],[0,62],[0,58],[0,79],[0,91],[0,98],[-1,108],[0,90]],[[38682,74959],[-50,0],[-65,-1],[-134,-1],[-131,-2],[-91,-1],[-42,1],[-66,-1],[-67,-1],[-65,-1],[-154,-2],[-120,-2],[-58,-1],[-262,-4],[-117,-2],[-19,-1],[-32,0],[-44,-1],[-39,0],[-16,-1],[-24,0],[-107,-2],[-63,-1],[-61,-1],[-51,-1],[-68,-1],[-67,-1],[-64,-1],[-1,0],[-13,0],[-8,0],[-12,0],[-11,0],[-8,-1],[-8,0],[-9,0],[-8,0],[-9,0],[-9,0],[-9,0],[-9,0],[-9,-1],[-11,0],[-19,0],[-48,-1],[-65,-1],[-17,1],[-14,0],[-52,0],[-59,-1],[-20,-1],[-24,0],[-19,0],[-32,-1],[-27,0],[-23,-1],[-56,0],[-89,-2],[-25,0],[-145,-1],[-60,-1],[-67,-1],[-10,0],[-47,-1],[-119,-2],[-19,-1],[-55,-1],[-3,0],[-8,1],[-67,-1],[-14,-1],[-33,0],[-19,0],[-69,-1],[-29,-1],[-100,-1],[-47,-1],[-35,0],[-50,-1],[-38,0],[-30,-1],[-62,0],[-48,-1]],[[34708,74905],[-1,34],[0,30],[0,39],[0,18],[0,57],[-1,51],[0,15],[-1,140],[0,67],[-1,28],[-1,46],[0,16],[-1,38],[0,12],[0,75],[-1,53],[0,87],[-1,37],[0,31],[0,45],[0,22],[-1,59],[0,43],[0,32],[0,29],[-1,38],[0,45],[0,22],[0,49],[-1,86],[0,10],[-1,123],[0,70],[-1,22],[0,34],[0,1],[0,41],[0,108],[-1,71],[-1,70],[-1,137],[-1,78],[0,24],[-1,92],[-1,79],[0,27],[-1,108],[-1,152],[-1,138],[-1,88],[-1,117],[0,68],[-1,135],[-1,86],[0,26],[0,24],[-1,136],[0,1],[-1,136],[-1,135],[-1,137],[-1,136],[-1,36],[-1,130],[-1,118],[0,84],[0,1],[-1,83],[0,96],[-1,79]],[[34708,74905],[-34,0],[-97,0],[-62,0],[-70,0],[-40,0],[-27,0],[-67,0],[-28,0],[-104,0],[-42,0],[-94,0],[-10,0],[-56,0],[-28,0],[-34,0],[-3,0],[-23,0],[-10,0],[-100,0],[-55,1],[-84,-1],[-102,0],[-37,0],[-47,3],[-44,0],[-49,0],[-70,0],[-18,0],[-59,0],[-58,0],[-16,0],[-65,0],[-21,0],[-49,0],[-27,0],[-42,0],[-18,0],[-48,0],[-4,0],[-70,0],[-10,0],[-21,0],[-107,0],[-71,0],[-26,0],[-44,0],[-15,1],[-55,0],[-48,0],[-18,0],[-73,0],[-71,0],[-59,0],[-8,0],[-21,0],[-10,0],[-79,0],[-17,0],[-11,0],[-26,0],[-54,0],[-22,0],[-30,0],[-48,0],[-16,0],[-13,0],[-56,0],[-19,0],[-9,0],[-39,0],[-36,0],[-13,0],[-100,-1],[-20,0],[-9,0],[-40,0],[-20,0],[-12,0],[-58,0],[-27,0],[-42,0],[-70,1],[-20,0],[-54,0],[-70,0],[-11,0],[-13,0],[-45,0],[-70,0],[-50,0],[-20,0],[-75,0],[-40,0],[-99,0],[-10,0]],[[30676,74909],[0,88],[-1,72],[0,71],[0,72],[0,72],[0,53],[0,24],[0,17],[0,55],[0,58],[0,84],[0,28],[0,43],[-1,73],[0,9],[0,61],[0,72],[1,39],[0,18],[0,70],[0,16],[0,144],[0,72],[0,71],[0,145],[1,71],[0,43],[0,30],[0,71],[0,71],[0,72],[0,72],[0,83],[0,11],[0,49],[0,144],[0,71],[1,72],[0,71],[0,71],[0,71],[0,73],[0,70],[-1,45],[0,25],[0,125],[0,16],[0,3],[0,35],[0,95],[0,52],[0,166],[0,12],[0,64],[0,62],[0,66],[0,61],[0,62],[0,29],[0,171],[0,2],[0,69],[0,69],[0,3],[1,11],[0,20],[0,34],[0,68],[0,169],[0,35],[0,30],[1,38],[0,68],[0,127]],[[30676,74909],[-46,1],[-13,0],[-18,-1],[-32,0],[-20,0],[-28,0],[-43,-1],[-17,0],[-3,0],[-7,0],[-33,0],[-35,0],[-10,0],[-14,0],[-25,0],[-39,0],[-71,0],[-30,0],[-37,0],[-31,0],[-22,0],[-48,-1],[-38,0],[-33,0],[-51,0],[-11,0],[-10,0],[-12,0],[-55,0],[-54,0],[-15,0],[-70,0],[-57,-1],[-13,0],[-39,1],[-26,0],[-4,0],[-92,0],[-85,0],[-59,0],[-32,-1],[-36,1],[-52,0],[-13,0],[-69,0],[-70,-1],[-74,0],[-65,0],[-43,0],[-27,0],[-69,0],[-49,0],[-16,0],[-19,1],[-11,0],[-29,-1],[-11,-1],[-38,0],[-10,0],[-51,0],[-34,0],[-61,0],[-43,0],[-25,0],[-49,0],[-82,0],[-19,0],[-134,0],[-17,0],[-22,0],[-10,0],[-36,0],[-13,0],[-19,0],[-39,0],[-101,0],[-36,0],[-61,1],[-11,0],[-138,0],[-162,-1],[-46,4]],[[27388,74909],[4,509],[9,208],[0,42],[6,371],[0,4],[0,1],[1,49],[2,81],[0,63],[1,30],[3,45],[2,238],[0,33],[1,65],[0,26],[0,18],[0,26],[1,24],[-1,114],[-1,11],[0,23],[0,28],[0,28],[0,21],[0,11],[0,17],[0,11],[0,12],[0,123],[1,140],[0,13],[0,80],[0,46],[1,139],[0,48],[0,15],[1,93],[-3,75],[1,192],[0,12],[-7,165],[4,677],[2,310],[-2,241],[1,83],[0,12]],[[54575,74993],[0,-34],[0,-38],[0,-17],[0,-17],[0,-10],[0,-100],[0,-14],[1,-26],[4,-176],[0,-39],[1,-24],[0,-20],[0,-37],[0,-29],[0,-89],[0,-22],[1,-70],[0,-25],[1,-57],[1,-95]],[[54584,74054],[-5,14],[-2,10],[-4,8],[-4,12],[-9,23],[-5,12],[-1,7],[0,16],[2,14],[2,1],[13,35],[1,5],[0,12],[-4,8],[-4,4],[-4,1],[-8,1],[-9,-16],[-6,-10],[-5,-5],[-5,-4],[-4,0],[-1,0],[-8,3],[-1,1],[-1,1],[-4,4],[-3,6],[-18,48],[-1,2],[-8,19],[-28,67],[-4,10],[-4,6],[-7,6],[-2,1],[-3,-1],[-1,0],[-4,-4],[-1,-3],[-5,-8],[-8,-11],[-1,-1],[-14,-11],[-9,-3],[-3,0],[-6,1],[-1,0],[-4,3],[-2,2],[-3,6],[0,5],[-1,1],[0,14],[2,9],[0,1],[-1,7],[-3,6],[-4,8],[-2,5],[-2,2],[-8,6],[-9,4],[-8,2],[-9,1],[-11,-1],[-10,0],[-4,-1],[-11,-2],[-7,-3],[-4,-4],[-8,-11],[-1,-1],[-17,-14],[-6,-2],[-5,-1],[-2,1],[-1,0],[-4,4],[-1,2],[-3,10],[-2,3],[-7,36],[0,6],[0,6],[0,6],[0,6],[0,7],[0,8],[2,10],[0,2],[0,1],[1,9],[-1,6],[-4,9],[-4,4],[-1,1],[-2,1],[-4,4],[-2,1],[-6,2],[-2,1],[-4,1],[-5,2],[-8,1],[-10,-2],[-10,-4],[-14,-4],[-14,-5],[-17,-7],[-16,-9],[-5,-3],[-1,0],[-19,-6],[-9,0],[-11,2],[-1,0],[-2,0],[-6,3],[-7,6],[-2,9],[0,2],[0,9],[5,20],[19,48],[11,29],[1,4],[-10,8],[-4,2],[-1,0],[-8,4],[-9,1],[-26,-1],[-23,-3],[-5,1],[-4,2],[-3,4],[-2,13],[-3,4],[-3,4],[-5,1],[-5,0],[-4,-2],[0,-1],[-6,-6],[-4,-4],[-2,-3],[-6,-9],[0,-3],[2,-4],[1,-1],[0,-3],[-1,-1],[-6,-14],[-7,-10],[-14,-16],[-4,-2],[-1,-1],[-1,0],[-2,0],[-1,0],[-3,2],[-4,2],[-10,8],[-6,3],[-5,3],[-5,3],[-6,0],[-16,-1],[-1,0],[-5,0],[-5,1],[-3,2],[-8,9],[-3,5],[-1,3],[0,2],[1,4],[3,6],[1,4],[2,27],[0,10],[0,1],[-1,1],[-1,5],[-5,7],[-6,5],[-9,5],[-8,1],[-7,0],[-4,-2],[-2,-2],[-1,-4],[0,-6],[1,-7],[3,-10],[7,-11],[1,-6],[-1,-20],[-1,-3],[-3,-24],[-1,-1],[-13,-40],[-5,-12],[-4,-7],[0,-1],[-7,-12],[-3,-3],[-6,0],[-6,2],[-8,8],[-1,1],[-8,5],[-1,0],[-6,2],[-10,1],[-24,0],[-4,0],[-49,10],[-4,2],[-2,2],[-4,11],[-1,4],[1,9],[5,21],[5,11],[6,13],[2,12],[-1,1],[0,2],[-2,1],[-2,0],[-6,0],[-14,-5],[-14,-4],[-17,-4],[-4,-1],[-12,-1],[-7,0],[-4,1],[-2,0],[-4,3],[-4,4],[-3,6],[-4,5],[-7,5],[-1,2],[-1,0],[-5,2],[-21,5],[-41,11],[-8,18],[-3,5],[-5,5],[-10,6],[-16,5],[-3,1],[-3,0],[-5,-1],[-2,0],[-1,-1],[-5,-3],[-10,-11],[-1,-1],[-3,-2],[-2,-1],[-5,-1],[-13,0],[-5,3],[-6,8],[-3,13],[1,9],[10,19],[0,1],[1,0],[4,13],[0,5],[1,6],[0,18],[0,12],[-2,8],[-1,3],[0,1],[-5,7],[-13,14],[-4,4],[-6,3],[-1,1],[-1,0],[-13,5],[-17,2],[-11,0],[-63,-2],[-4,0],[-8,-2],[-4,-2],[-6,-7],[-5,-9],[-8,-21],[0,-2],[-23,-30],[-5,-5],[-3,-1],[-15,-10],[-9,-4],[-7,-2],[-3,1],[-2,1],[-4,3],[-3,3],[-3,9],[-8,16],[-25,52],[-3,6],[-6,10],[-9,10],[-34,37],[-1,1],[-4,4],[-1,1],[-13,9],[-16,8],[-17,5],[-16,4],[-15,1],[-36,-1],[-3,0],[-14,-2],[-1,0],[-6,-3],[-1,-1],[-5,-3],[-1,0],[-3,-4],[-1,-2],[-19,-67],[0,-1],[-1,-5],[0,-5],[1,-4],[1,0],[1,-9],[1,-14],[0,-11],[-5,-29],[-4,-30],[0,-9],[1,-3],[2,-11],[4,-18],[0,-14],[1,-4],[-1,-1],[-1,-3],[-1,0],[-3,-2],[-2,-1],[-3,0],[-5,-1],[-14,4],[-1,0],[-6,2],[-5,-1],[-6,-3],[-2,0],[-3,-3],[-9,-6],[-4,-5],[-6,-6],[-4,-2],[-7,0],[-6,2],[-3,3],[-3,8],[0,14],[2,10],[1,3],[5,11],[0,1],[12,34],[0,1],[6,25],[1,2],[0,6],[-1,4],[-3,2],[-4,1],[-14,-4],[-5,0],[-4,0],[-4,1],[-10,4],[-12,5],[-3,1],[-3,3],[-2,6],[-2,2],[-8,5],[-22,5],[-9,-1],[-6,-2],[-3,-3],[-3,-10],[1,-10],[0,-1],[6,-6],[5,-12],[8,-22],[2,-22],[1,-13],[0,-14],[0,-7],[-2,-6],[-1,-4],[-22,-18],[-3,-2],[-2,-2],[-2,-1],[-3,-1],[-2,0],[-1,0],[-1,0],[-2,3],[3,5],[3,7],[1,3],[1,1],[0,2],[-1,2],[-1,1],[-2,2],[-5,4],[-14,11],[-4,4],[-13,6],[-4,1],[-3,4],[-16,18],[-2,4],[-8,11],[-1,1],[-1,6],[-2,4],[-2,4],[-9,11],[0,1],[-1,1],[-7,7],[-6,4],[-10,3],[-11,1],[-12,0],[-5,-2],[-3,-1],[-1,-1],[-1,-3],[-5,-13],[-3,-6],[0,-2],[0,-3],[0,-1],[1,-11],[0,-6],[-6,-16],[-8,-13],[-4,-4],[-1,0],[-3,-1],[-1,0],[-4,0],[-13,1],[-3,1],[-4,1],[-3,1],[-24,-1],[-14,-2],[-3,0],[-2,1],[-2,1],[-4,1],[-3,3],[-3,6],[0,11],[1,7],[2,3],[8,4],[1,0],[21,2],[7,2],[7,5],[4,2],[2,4],[1,5],[-1,8],[0,1],[-3,2],[-4,3],[-11,6],[0,1],[-3,3],[-3,5],[0,6],[0,4],[-1,5],[2,33],[3,27],[-1,8],[0,5],[-1,3],[-3,5],[-9,10],[-8,4],[-8,2],[-8,1],[-12,-1],[-17,-4],[-5,-4],[-4,-3],[-3,-7],[-2,-6],[0,-5],[-3,-9],[-1,-3],[-7,-7],[-5,-4],[-8,-5],[-5,-3],[-10,-1],[-6,0],[-2,1],[-4,2],[-2,1],[-4,5],[0,2],[0,9],[-2,4],[-9,10],[-2,1],[-2,1],[-5,1],[-8,-1],[-2,-1],[-5,-1],[-5,-4],[-11,-20],[0,-2],[-16,-5],[-4,0],[-8,3],[-8,7],[-4,2],[-12,11],[-2,2],[-17,16],[-22,19],[-2,2],[-4,2],[-1,-1],[-1,0],[-21,-4],[-1,0],[-6,-2],[-6,-3],[-2,-2],[-1,-7],[5,-6],[2,-1],[6,-4],[8,-2],[5,-1],[5,3],[14,1],[3,-1],[6,-6],[2,-3],[1,-5],[-1,-3],[-4,-7],[-7,-8],[-13,-10],[-9,-3],[-5,0],[-2,1],[-6,2],[-11,7],[-3,1],[-11,9],[-21,23],[-3,2],[-1,1],[-2,8],[-8,12],[-8,10],[-1,1],[-31,19],[-3,3],[-4,2],[-2,-1],[-4,0],[-8,-3],[-12,-4],[-2,-2],[-5,-10],[-5,-10],[-5,-8],[-5,-6],[-17,-21],[-6,-3],[-4,0],[-1,0],[-1,0],[-7,2],[-7,4],[0,2],[-4,3],[-5,0],[-7,-2],[-4,-1],[-3,-2],[-6,-2],[-11,-7],[-11,-9],[-11,-12],[-4,-2],[-4,-1],[-4,1],[-7,2],[-5,8],[-1,1],[-1,2],[-1,1],[0,1],[-1,4],[0,4],[1,3],[2,1],[6,8],[4,6],[3,6],[0,3],[1,2],[0,3],[1,4],[0,6],[-1,3],[-2,2],[-2,1],[-1,1],[-7,2],[-2,2],[-4,5],[-10,12],[-5,9],[-6,13],[0,5],[9,24],[5,11],[0,1],[1,1],[0,3],[0,7],[-1,2],[-1,4],[-39,-1],[-54,0],[-82,0],[-34,0],[-20,0],[-12,0],[-55,2],[-119,0],[-68,0],[-23,0],[-10,0],[-9,0],[-27,0],[-12,0],[-36,0],[-26,0],[-62,0],[-15,0],[-17,0],[-59,1],[-17,0],[-9,0],[-64,-1],[-22,0],[-20,0],[-80,0],[-21,0],[-22,0],[-20,0],[-27,0],[-7,1],[-3,0],[-13,-1],[-49,0],[-26,0],[-33,0],[-15,0]],[[50611,75011],[-12,0],[-17,0],[-45,0],[-13,0],[-39,0],[-28,0],[-39,0],[-18,0],[-36,0],[-81,1],[-26,-1],[-42,0]],[[62583,77326],[0,-104],[0,-97],[0,-65],[0,-143],[0,-28],[0,-111],[0,-54],[2,-153],[0,-45],[1,-26],[0,-37],[1,-55],[0,-61],[0,-40],[1,-36],[0,-80],[0,-9],[-1,-79],[0,-69],[0,-9],[0,-2],[0,-9],[0,-56],[0,-35],[0,-13],[0,-15],[0,-86],[0,-59],[0,-31],[0,-2],[0,-82],[0,-152],[0,-4],[0,-1],[0,-6],[0,-10],[0,-16],[0,-2],[1,-43],[0,-73],[0,-46],[0,-36],[0,-13],[0,-10],[0,-36],[0,-49],[0,-4],[0,-19],[0,-78],[-1,-25],[-4,0]],[[62583,75012],[-55,0],[-119,0],[-122,0],[-11,0],[-38,0],[-38,-1],[-31,0],[-9,0],[-8,0],[-53,0],[-9,0],[-4,0],[-5,0],[-53,0],[-31,0],[-76,-2],[-34,0],[-20,-1],[-6,0],[-46,0],[-7,0],[-9,0],[-70,-1],[-11,0],[-92,0],[-66,-1],[-22,0],[-133,-1],[-56,0],[-13,0],[-68,-1],[-5,0],[-13,0],[-58,0],[-111,-1],[-115,0],[-12,-1],[-233,-1],[-4,0],[-87,-1],[-12,0],[-30,0],[-58,0],[-16,0],[-12,0],[-36,-1],[-11,0],[-33,0],[-12,0],[-32,0],[-52,0],[-16,0],[-23,0],[-8,0],[-13,-1],[-23,0],[-55,0],[-7,0],[-24,0],[-61,0],[-126,-1],[-53,-1],[-85,0],[-145,-1],[-34,0],[-54,-1],[-16,0],[-34,0],[-15,1],[-9,0],[-17,0],[-12,-1],[-14,0],[-14,0],[-40,-1],[-1,0],[-31,0],[-14,0],[-56,0],[-47,0],[-52,0],[-115,0],[-70,0],[-33,0],[-1,0],[-67,0],[-9,0],[-2,0],[-3,0],[-93,0],[-61,0],[-24,0],[-117,0],[-79,0]],[[58558,78542],[8,-3],[6,-5],[1,0],[4,-12],[0,-1],[9,-9],[12,-4],[13,-15],[23,-21],[16,-12],[1,0],[31,-42],[1,-1],[3,-8],[0,-1],[1,0],[6,-6],[10,-2],[31,-35],[7,-7],[1,-1],[0,-1],[6,-14],[14,-18],[8,-15],[0,-1],[17,-22],[1,-1],[22,-24],[30,-15],[32,-21],[10,-10],[30,-4],[27,-10],[43,-15],[12,-9],[23,-14],[11,-14],[1,-2],[20,-14],[6,-6],[20,-6],[39,-3],[25,4],[15,-5],[14,-11],[1,-1],[7,-22],[-5,-21],[-11,-22],[-13,-18],[1,-13],[11,-18],[1,-1],[31,-32],[8,-5],[19,-4],[24,-1],[20,10],[10,19],[1,30],[2,15],[2,24],[5,14],[21,6],[22,-13],[15,-6],[15,2],[19,-6],[15,-11],[47,-15],[23,17],[8,17],[6,16],[8,3],[46,-16],[63,-17],[12,-5],[17,3],[24,-11],[28,-17],[12,-13],[1,-1],[36,-57],[6,-18],[2,-3],[14,-21],[1,-1],[11,-4],[19,5],[8,7],[13,11],[7,11],[9,-1],[20,-20],[17,-18],[38,-26],[14,-2],[34,-10],[47,-18],[28,-24],[1,0],[8,-12],[1,-1],[8,-33],[0,-9],[4,-13],[0,-1],[15,-17],[15,0],[12,0],[16,-4],[16,0],[23,13],[14,-1],[23,5],[12,10],[20,37],[3,20],[10,19],[19,7],[15,1],[11,-5],[8,-2],[18,2],[27,0],[30,9],[19,-5],[8,-9],[1,0],[0,-1],[6,-14],[1,-11],[7,-8],[18,-1],[17,14],[18,21],[23,7],[23,1],[28,-21],[12,-1],[19,2],[11,-6],[39,28],[3,11],[14,18],[26,19],[23,13],[26,31],[6,15],[15,18],[20,10],[19,11],[32,28],[20,18],[34,24],[17,19],[1,0],[28,29],[10,2],[7,1],[23,0],[27,-10],[24,-13],[24,-11],[33,-10],[43,-19],[31,-10],[39,-3],[18,2],[13,5],[17,9],[9,9],[12,6],[23,8],[18,0],[17,-13],[35,-17],[21,-19],[13,-8],[17,-15],[5,-5],[18,-12],[31,-13],[31,-22],[22,-25],[1,-1],[0,-1],[9,-14],[0,-1],[24,-31],[1,-1],[7,-18],[0,-1],[44,-35],[5,-4],[25,1],[34,0],[11,-7],[1,0],[5,-23],[-3,-16],[-9,-12],[-19,-5],[-15,10],[-18,5],[-7,-5],[-10,-34],[0,-1],[-1,0],[13,-5],[9,-5],[1,0],[8,-16],[1,-1],[8,-9],[14,-6],[18,-2],[116,-111],[0,-1],[1,-1],[6,-11],[13,-25],[0,-1],[18,-23],[5,-9],[18,-45],[1,-1],[27,-22],[17,-21],[8,-10],[33,-31],[1,0],[15,-22],[1,-1],[7,-14],[73,-90],[1,-2],[16,-2],[16,-10],[14,-6],[15,-3],[17,-4],[11,-11],[13,-12],[18,-15],[4,-16],[11,-9],[32,-4],[37,11],[28,12],[20,15],[20,26],[13,28],[11,15],[16,1],[22,-2],[19,-6],[22,-3],[36,5],[23,16],[9,18],[1,22],[12,24],[10,14],[28,13],[34,6],[30,4],[30,3],[20,-11],[0,-1],[4,-17],[1,0],[0,-2]],[[65976,75517],[0,-26],[-1,-20],[-1,-34],[-1,-9],[0,-12],[2,-32],[0,-11],[0,-32],[0,-11],[0,-66],[1,-46],[0,-34],[0,-77],[0,-49],[0,-30],[0,-84],[0,-12],[0,-107],[0,-1],[0,-17],[-1,-84],[0,-1],[0,-63],[-1,-50],[0,-31],[-1,-147],[-1,-54],[0,-35],[0,-10],[0,-52],[-1,-19],[0,-24],[0,-31],[-2,-212],[0,-111],[0,-134],[0,-63],[-1,-151],[0,-87],[0,-25],[0,-71],[0,-200],[0,-58],[0,-60],[0,-25],[-1,-29],[0,-1],[0,-15],[0,-54],[0,-54],[0,-9],[0,-11],[0,-58],[0,-14],[1,-39],[0,-27],[-1,-127],[0,-23],[0,-48],[0,-73],[0,-45],[1,-50],[0,-37],[0,-30],[0,-21],[0,-51],[0,-32],[0,-15],[0,-2],[0,-19],[0,-29],[0,-57],[0,-23],[0,-26],[0,-85],[0,-33],[0,-14],[0,-2],[0,-56],[0,-14],[0,-69],[0,-45],[0,-30],[0,-21],[0,-33],[0,-17],[0,-19]],[[65968,71552],[-40,0],[-39,-1],[-23,0],[-39,0],[-21,0],[-20,0],[-65,-1],[-21,0],[-11,0],[-13,0],[-11,0],[-1,0],[-7,0],[-10,0],[-8,0],[-70,-1],[-80,0],[-12,0],[-14,0],[-42,-1],[-26,0],[-24,0],[-57,0],[-74,-1],[-37,0],[-12,0],[-8,0],[-19,0],[-8,0],[-21,0],[-19,0],[-37,-1],[-90,-1],[-56,0],[-8,0],[-62,-1],[-10,0],[-8,0],[-17,0],[-9,0],[-11,0],[-34,0],[-4,0],[-19,0],[-23,0],[-19,0],[-14,0],[-85,0],[-33,0],[-22,0],[-25,0],[-36,0],[-34,0],[-55,0],[-39,0],[-55,1],[-3,0],[-26,0],[-81,-1],[-15,0],[-14,0],[-24,1],[-181,0],[-11,0],[-45,0],[-9,0],[-58,-1],[-9,0],[-19,1],[-8,0],[-17,0],[-28,0],[-37,0],[-23,0],[-10,0],[-8,0],[-24,0],[-15,0],[-20,0],[-1,0],[-28,0],[-27,0],[-13,0],[-13,0],[-34,0],[-26,0],[-12,0],[-15,0],[-10,0],[-11,0],[-10,1],[-8,-1],[-31,1],[-41,0],[-7,0],[-216,0],[-24,0],[-15,0],[-24,0],[-74,2],[-42,0],[-70,1],[-55,0],[-39,0],[-25,0],[-34,0],[-9,0],[-18,0],[-9,0],[-42,0],[-24,0],[-10,0],[-9,0]],[[62600,71549],[-1,75],[0,44],[-1,43],[-1,95],[0,21],[0,35],[-1,124],[-2,170],[0,53],[-1,53],[0,27],[0,10],[-1,20],[0,23],[0,36],[0,10],[0,10],[0,10],[-1,14],[0,10],[0,38],[0,70],[-1,29],[0,17],[-1,19],[0,44],[-1,44],[0,51],[-1,51],[0,21],[0,16],[-1,62],[0,74],[0,33],[1,30],[0,34],[0,53],[0,12],[0,28],[0,84],[0,50],[0,34],[0,11],[0,57],[0,8],[0,30],[0,34],[0,17],[0,13],[0,16],[0,33],[0,15],[0,32],[0,24],[-1,12],[0,12],[0,3],[0,9],[0,13],[0,94],[0,14],[0,100],[0,41],[0,29],[0,32],[0,66],[-1,118],[-2,47],[0,15],[0,12],[-1,118],[0,5],[-1,68],[0,23],[1,24],[-1,10],[1,11],[-1,16],[1,19],[0,42],[0,15],[0,14],[0,25],[0,12],[0,17],[0,29],[0,14],[0,12],[1,21],[0,137],[0,100],[0,47]],[[62583,77326],[7,-2],[10,-3],[11,2],[8,2],[11,7],[16,10],[7,5],[14,21],[13,15],[1,10],[7,22],[1,20],[-8,19],[-6,20],[1,16],[16,10],[19,-2],[27,-20],[8,-3],[13,3],[5,9],[4,15],[2,9],[4,12],[0,3],[1,25],[0,8],[1,34],[-3,42],[3,47],[-1,0],[0,1],[-16,9],[-2,14],[4,10],[10,17],[3,21],[15,12],[19,20],[23,10],[12,3],[21,-6],[10,-8],[1,0],[10,-16],[1,-1],[11,-3],[20,15],[-3,21],[-1,1],[-15,16],[-14,9],[-13,10],[-1,1],[-7,14],[2,26],[13,20],[0,2],[3,22],[9,14],[16,14],[14,4],[18,7],[22,4],[21,7],[9,9],[15,26],[15,13],[16,3],[50,-10],[34,-8],[32,-7],[27,-1],[16,-2],[10,-8],[42,-8],[37,-10],[23,2],[23,-5],[22,-13],[29,-30],[21,-15],[18,-16],[12,-6],[17,-14],[13,-13],[40,-32],[13,-7],[7,-9],[26,-3],[11,-7],[46,-12],[48,-8],[21,-5],[26,2],[29,11],[11,1],[17,-5],[13,1],[11,2],[34,-5],[29,-16],[11,-3],[47,7],[18,4],[27,12],[40,24],[17,2],[34,-1],[17,-12],[34,-37],[2,-19],[5,-9],[1,-1],[0,-1],[18,-17],[22,-9],[11,-8],[21,-9],[46,-6],[9,-4],[22,-20],[11,-7],[19,-7],[106,-15],[139,-10],[1,0],[20,19],[31,19],[36,20],[23,21],[53,75],[1,12],[18,24],[17,17],[13,25],[7,19],[18,21],[17,18],[22,37],[39,23],[31,28],[81,-1],[15,-6],[22,-9],[44,-55],[32,-31],[31,-46],[10,-40],[0,-17],[0,-1],[1,-4],[0,-2],[3,0],[12,-15],[1,-1],[1,-1],[3,-18],[-7,-29],[-5,-45],[-38,-104],[-47,-86],[-71,-81],[-35,-40],[-16,-15],[-14,-33],[-2,-26],[3,-67],[17,-48],[25,-43],[0,-1],[1,-1],[28,-22],[86,-97],[92,-51],[27,-22],[1,0],[11,-29],[-7,-14],[-37,-28],[-27,-5],[-17,15],[-27,31],[-32,5],[-25,-14],[-9,-25],[19,-53],[1,0],[0,-1],[54,-61],[1,-2],[55,-36],[38,-39],[1,-1],[10,-33],[-12,-22],[-30,-5],[0,-22],[0,-1],[26,-18],[15,-11],[4,-1],[78,-17],[41,-14],[115,-36],[25,-4],[79,-12],[160,8],[115,21],[14,4],[28,7],[48,13],[63,34],[26,25],[31,12],[18,-11],[1,-1],[31,-51],[15,-25],[1,-1],[26,-36],[1,-1],[40,-28],[44,1],[25,7],[13,-11],[1,0],[0,-1],[-7,-26],[-5,-19],[-41,-145],[-13,-29],[-10,-40],[-9,-33],[-23,-55],[-18,-23],[-38,-32],[-31,-17],[-20,-21],[-2,-19],[13,-26],[1,-2],[61,-16],[45,14],[30,1],[1,0],[11,-49],[-2,-25],[-3,-52],[-17,-52],[-18,-55],[-26,-33],[-46,-28],[-28,5],[-2,1],[-27,35],[-1,1],[-15,17],[-18,-8],[-33,-88],[-4,-32],[20,-35],[30,-49],[0,-1],[1,-1]],[[69735,75758],[-1,-22],[0,-56],[0,-33],[0,-70],[-1,-48],[0,-53],[0,-27],[-1,-71],[0,-117],[0,-69],[-1,-82],[0,-64],[0,-125],[-1,-69],[0,-49],[0,-18],[0,-35],[0,-55],[0,-68],[-1,-82],[0,-10],[0,-3],[0,-80],[0,-59],[0,-25],[-1,-20],[0,-14],[0,-101],[0,-27],[-1,-34],[0,-86],[0,-24],[-2,-147],[1,-65],[0,-46],[1,-85],[0,-23],[0,-30],[0,-70],[0,-50],[0,-1],[-1,-10],[0,-83],[-1,-97],[0,-29],[-1,-63],[0,-3],[0,-85],[0,-82],[-1,-49],[0,-10],[-1,-109],[0,-12],[-1,-145],[-1,-93],[0,-31],[-1,-114],[0,-18],[0,-3],[-1,-37],[0,-72],[-1,-105],[-1,-42],[0,-62],[-1,-57],[0,-26],[0,-11],[0,-32],[0,-17],[0,-59],[0,-33],[0,-12],[0,-78],[0,-15],[0,-19],[0,-16],[-1,-15],[0,-65],[0,-56],[0,-23],[0,-21],[0,-29],[-1,-21],[0,-108],[-1,-72],[0,-2],[0,-26],[0,-76],[0,-62]],[[69712,71240],[-28,1],[-73,0],[-14,0],[-52,0],[-56,0],[-71,0],[-33,0],[-17,0],[-14,0],[-13,0],[-40,0],[-141,0],[-13,0],[-20,0],[-23,1],[-10,0],[-61,0],[-42,0],[-100,0],[-39,0],[-46,0],[-29,0],[-40,0],[-36,0],[-46,-2],[-51,0],[-40,0],[-29,0],[-42,0],[-18,0],[-9,0],[-210,0],[-28,0],[-20,0],[-82,0],[-28,1],[-19,0],[-74,0],[-36,0],[-39,0],[-96,0],[-104,0],[-1,0],[-21,0],[-18,0],[-29,0],[-17,0],[-9,0],[-3,0],[-20,0],[-24,0],[-19,0],[-8,0],[-24,0],[-20,0],[-19,0],[-9,0],[-62,0],[-29,-1],[-19,0],[-1,0],[-36,0],[-2,0],[-69,0],[-55,0],[-20,0],[-13,0],[-11,0],[-50,0],[-6,0],[-21,0],[-9,0],[-27,0],[-33,0],[-10,0],[-34,0],[-44,0],[-84,0],[-98,2],[-61,-1],[-61,0],[-77,0],[-49,0],[-78,-1]],[[66430,71240],[-33,0],[-62,0],[-12,0],[-15,0],[-77,0],[-15,0],[-53,0],[-29,0],[-47,0],[-63,-1],[-39,0],[-18,0],[0,74],[0,10],[0,39],[0,27],[0,12],[0,65],[1,13],[0,31],[0,17],[0,25]],[[65976,75517],[63,-60],[51,-27],[58,-19],[31,-2],[21,4],[42,6],[26,5],[29,-12],[10,-8],[32,-26],[41,-22],[79,-38],[34,-14],[29,-25],[21,-19],[29,-26],[35,-23],[47,-5],[36,-20],[32,-20],[11,-17],[67,-13],[45,9],[29,9],[27,11],[14,3],[1,0],[12,3],[45,24],[7,3],[32,5],[64,19],[32,42],[20,15],[12,9],[1,1],[3,2],[3,3],[13,15],[15,24],[5,16],[2,15],[1,7],[0,2],[1,7],[4,48],[35,16],[18,-18],[0,-1],[10,-19],[1,0],[20,-16],[25,25],[19,59],[1,25],[3,29],[-3,29],[3,24],[31,27],[25,2],[20,-18],[1,-1],[15,-26],[7,-12],[0,-14],[1,-1],[20,-12],[31,34],[8,32],[4,14],[-3,45],[-22,50],[-24,38],[14,37],[29,22],[28,-7],[1,-2],[26,-36],[1,-1],[60,-13],[25,17],[21,32],[-4,60],[-21,53],[-3,31],[33,11],[38,15],[30,-4],[59,9],[42,-8],[30,1],[2,0],[47,36],[42,39],[12,12],[51,55],[19,30],[23,36],[32,82],[26,76],[30,49],[16,26],[23,12],[18,20],[37,11],[40,13],[48,17],[64,-8],[36,-14],[59,-23],[42,-17],[53,-22],[50,-25],[64,-56],[47,-36],[47,-15],[12,-4],[34,-37],[15,-21],[11,-9],[1,-1],[11,-41],[1,0],[24,-12],[12,-6],[27,-1],[16,-16],[-11,-29],[-10,-27],[-18,-19],[-10,-29],[3,-38],[13,-33],[3,-5],[7,-10],[6,-10],[-3,-28],[-35,-58],[-7,-39],[4,-30],[19,-37],[21,-8],[1,-1],[10,-16],[5,-30],[13,-23],[1,0],[1,-1],[48,-20],[22,3],[22,3],[45,18],[43,-10],[18,-17],[3,-3],[1,-1],[7,-17],[0,-2],[38,-3],[5,2],[20,8],[17,7],[2,1],[28,11],[29,18],[10,7],[18,12],[18,10],[22,11],[57,49],[54,21],[70,27],[20,7],[16,7],[3,1],[34,12],[34,-5],[64,-21],[17,-12],[2,-1]],[[90575,73763],[0,-84],[0,-126],[0,-222],[0,-22],[0,-73],[0,-49],[0,-1],[0,-42],[0,-42],[0,-43],[0,-9],[0,-12],[0,-22],[-1,-17],[0,-49],[0,-37],[0,-9],[0,-29],[0,-95],[1,-30],[-1,-92],[0,-44],[-1,-52],[0,-88],[0,-43],[1,-45],[0,-15],[0,-1],[0,-16],[0,-66],[0,-28],[0,-11],[0,-136],[0,-90],[1,-77],[-1,-2],[-1,-56],[1,-12],[-1,-14],[-3,-407],[-1,-60],[2,-79],[-2,-127],[0,-261],[0,-2],[1,-229],[0,-55],[0,-15],[0,-15],[-1,-51],[0,-14],[0,-23],[-1,-82],[1,-186]],[[90569,70256],[-16,-12],[-4,-5],[-10,-27],[-6,-14],[-6,-31],[-2,-3],[-5,-7],[-7,-3],[-9,-3],[-6,-1],[-39,-2],[-2,1],[-4,3],[-1,7],[0,1],[1,2],[2,3],[11,7],[3,4],[0,4],[-1,2],[-2,4],[-4,5],[-7,5],[-5,2],[-11,2],[-57,-20],[-9,-5],[-2,-2],[0,-11],[-2,-2],[-4,-3],[-7,-1],[-52,5],[-2,1],[0,5],[3,7],[6,4],[4,1],[4,0],[14,-6],[1,0],[5,0],[3,2],[2,3],[1,4],[0,4],[-2,4],[-1,2],[-6,2],[-6,2],[-34,0],[-5,2],[-3,4],[-3,4],[0,2],[0,7],[2,4],[12,23],[3,2],[34,38],[3,3],[1,4],[-1,3],[-2,2],[-20,10],[-19,10],[-40,15],[-6,1],[-5,5],[-3,5],[0,5],[11,38],[2,3],[4,2],[9,9],[9,15],[0,2],[0,2],[-3,23],[0,4],[-1,2],[-3,4],[-1,1],[-49,-7],[-16,-3],[-4,-1],[-8,-4],[-5,-1],[-4,2],[-2,3],[-1,2],[0,5],[15,31],[3,2],[4,3],[4,0],[10,-5],[3,-2],[5,0],[2,2],[1,3],[2,24],[-1,6],[-33,49],[-3,3],[-28,15],[-12,22],[-9,-4],[0,-1],[-3,-1],[-13,-1],[-1,0],[-8,1],[-24,-11]],[[90098,70582],[-8,4],[-12,-6],[-15,-7],[-7,0],[-5,2],[-1,2],[-2,61],[0,1],[15,19],[7,-1],[4,1],[3,4],[1,3],[-1,7],[-3,13],[-2,5],[-4,4],[-5,3],[-82,32],[-6,-1],[-12,-5],[-7,1],[-7,2],[-4,5],[-1,3],[-7,22],[-2,5],[-21,-2],[-34,-4],[-44,-12],[-2,-2],[-21,-17],[-5,1],[-3,3],[-2,5],[-7,22],[-1,1],[-12,6],[-54,-12],[-3,0],[0,-1],[0,-9],[-1,-7],[1,-3],[9,-16],[0,-3],[-1,-5],[-3,-2],[-4,0],[-85,63],[-3,3],[-1,0],[-2,4],[-1,2],[-4,20],[1,5],[3,8],[-50,62],[-3,2],[-60,20],[-4,0],[-4,2],[-24,12],[-10,-5],[-21,-10],[-23,-30],[-29,-22],[-23,-16],[-17,-9],[-14,-7],[-35,0],[-26,-28],[-57,-5],[-12,0],[-20,1],[-20,0],[-31,30],[-17,4],[-15,4],[-28,7],[-20,5],[-10,10],[1,11],[-3,0],[-6,0],[-25,-3],[-5,-1],[-3,2],[-20,16],[-3,3],[-23,-3],[-11,-3],[-22,-4],[-2,-1],[-3,-3],[0,-4],[0,-1],[1,-2],[2,-5],[-1,-5],[-1,-4],[-3,-2],[-37,-17],[-85,0],[-11,-7],[-2,-1],[-20,1],[-35,15],[-16,8],[-38,6],[-19,4],[-13,2],[-14,-3],[-14,-2],[-10,-2],[-63,0],[-22,1],[-18,-24],[-3,-4],[-10,-13],[1,-17],[-11,-26],[-3,-3],[-2,-1],[-6,-1],[-5,3],[-25,13],[-1,0],[-21,10],[-56,-3],[-26,9],[-17,5],[-3,1],[-2,0],[-3,-1],[-1,-2],[-1,-3],[-4,-16],[-2,-9],[-3,0],[-29,4],[-19,10],[-44,24],[-26,3],[-4,2],[-2,3],[-1,6],[0,5],[-55,6],[-23,-4],[1,-3],[0,-3],[-2,-4],[-3,-2],[-29,-7],[-5,1],[-12,2],[-2,1],[-2,3],[0,3],[-1,2],[-2,4],[-3,3],[-5,2],[-22,9],[-7,2],[-4,4],[-14,12],[-7,6],[-5,5],[-12,15],[-1,1],[-7,9],[-22,11],[-4,3],[-14,9],[-5,-6],[-7,-7],[1,-11],[-14,-7],[-12,-7],[-6,6],[-28,1],[-14,-7],[-19,-11],[-7,-1],[-32,-14],[-39,-16],[-18,9],[-23,-2],[-16,0]],[[87688,70824],[-4,-2],[-2,-2],[-7,-6],[-3,-3],[-39,-16],[-5,-2],[-46,-7],[-6,-1],[-24,11],[-24,-34],[-58,-7],[-22,13],[-6,3],[-32,9],[-28,7],[-4,0],[-3,-4],[-1,-4],[-19,-16],[-12,-5],[-42,-19],[-13,-5],[-1,3],[-5,5],[-3,-2],[-24,-11],[-23,-5],[-10,-2],[-14,-3],[-67,-23],[-6,-2],[-6,-3],[-34,-11],[-44,46],[-31,-1],[-38,0],[-22,-8],[-6,-9],[-2,-4],[0,-3],[1,-12],[-42,-39],[-8,-3],[-11,-3],[-12,-1],[-31,-5],[-5,-2],[-24,-11],[-8,-3],[-8,-1],[-5,1],[-5,4],[-3,2],[-66,9],[-34,-4],[-23,-2],[-23,-3],[-82,46],[-6,2],[-5,1],[-13,3],[-19,5],[-36,4],[-13,1],[-37,4],[-25,-14],[-35,22],[-27,18],[-34,-1],[-1,0],[-4,-2]],[[86308,70717],[-6,25],[-9,-1]],[[86293,70741],[0,169],[-1,53],[0,3],[-1,215],[0,24],[0,46],[0,18],[-1,112],[0,36],[0,17],[0,84],[0,10],[0,16],[-1,30],[0,88],[-1,153],[-4,47],[-1,62],[0,19],[-1,15],[-1,98],[0,4],[-1,24],[0,20],[-1,23],[0,19],[0,13],[0,82],[1,99],[1,73],[0,110],[0,82],[-1,77],[-1,96],[0,29],[0,14],[0,55],[0,1],[0,157],[1,112],[0,11],[-1,30],[0,30],[0,17],[0,14],[1,15],[0,11],[-1,14],[-1,30],[0,15],[-1,21],[1,26],[0,11],[0,84],[1,100],[0,17],[0,5],[0,110],[-1,126],[0,28],[0,27],[0,31],[-1,88],[0,88],[1,33],[0,13],[-3,65],[0,11],[0,44],[0,45],[1,64],[0,58],[0,12],[0,10],[0,22],[0,27],[0,26],[0,29],[0,18],[0,47],[1,40],[0,97],[0,61],[0,14],[0,150],[0,11],[1,20],[0,30],[0,115],[0,46],[1,45],[0,14],[0,13],[0,1],[-6,130]],[[86273,75406],[72,-20],[8,-4],[43,-17],[29,2],[5,-1],[23,5],[38,18],[11,10],[6,11],[2,8],[0,19],[-6,50],[-4,16],[-17,37],[-18,38],[-1,38],[3,15],[3,9],[0,1],[7,13],[6,12],[7,14],[6,6],[9,9],[1,1],[37,31],[11,7],[18,0],[10,-3],[15,-15],[7,-11],[3,-10],[5,-22],[2,-23],[0,-80],[-3,-11],[0,-9],[-1,-26],[9,-9],[9,-6],[8,-2],[24,1],[4,0],[12,11],[7,9],[23,30],[0,1],[9,16],[0,2],[9,28],[14,60],[6,53],[0,33],[-3,34],[-6,26],[-18,40],[-7,11],[-8,27],[0,20],[12,34],[11,16],[73,70],[43,24],[12,9],[12,17],[10,20],[9,17],[1,24],[3,45],[4,4],[5,5],[18,6],[58,-3],[49,-21],[22,-15],[8,-4],[89,-26],[34,-17],[14,-3],[5,2],[32,-9],[29,-13],[46,-31],[30,-26],[33,-27],[15,-16],[27,-13],[17,-5],[33,-18],[43,8],[41,0],[14,0],[29,5],[31,1],[63,-4],[8,-7],[11,-12],[8,-21],[16,-26],[-4,-46],[-66,-77],[-9,-34],[44,-69],[15,-7],[13,-6],[14,-6],[12,6],[5,1],[46,24],[35,22],[21,17],[64,64],[34,23],[16,6],[51,0],[6,-2],[38,-39],[5,-16],[-4,-28],[-10,-22],[-23,-34],[-35,-35],[-49,-26],[-33,-8],[-18,-11],[-12,-28],[3,-25],[18,-28],[19,-16],[37,-61],[24,-11],[39,0],[13,39],[4,12],[9,166],[1,10],[7,18],[15,11],[5,9],[1,4],[7,56],[4,9],[26,14],[14,0],[12,-3],[14,-14],[13,-22],[-3,-20],[-11,-17],[-15,-9],[-17,0],[-19,-2],[-17,-7],[-1,0],[-11,-14],[-6,-18],[5,-20],[11,-21],[1,-9],[10,-13],[3,-14],[8,-2],[-2,15],[-12,31],[-5,12],[21,13],[18,3],[49,2],[17,-17],[6,-35],[3,-35],[-1,-35],[-1,-16],[2,-17],[8,-13],[5,-6],[-1,-6],[0,-17],[3,-13],[15,-29],[20,-19],[10,-6],[-2,-13],[5,-56],[4,-16],[8,-22],[15,-11],[20,-10],[30,-9],[24,-6],[40,-2],[6,-1],[14,0],[45,3],[15,3],[23,6],[21,12],[57,34],[9,-3],[40,-21],[17,-14],[13,-15],[6,-13],[18,-26],[7,-15],[4,-13],[5,-8],[7,-5],[25,-9],[27,2],[15,3],[1,1],[12,10],[26,39],[8,15],[7,16],[17,13],[11,4],[17,-3],[8,-6],[3,-22],[1,-4],[1,-15],[8,-26],[7,-35],[3,-16],[1,-30],[2,-25],[7,-46],[9,-7],[16,-8],[22,-8],[6,-2],[40,0],[26,-16],[21,-12],[12,-9],[6,-8],[1,-10],[1,-7],[-10,-24],[-15,-16],[-10,-11],[-11,-15],[-5,-9],[-12,-18],[-10,-14],[-2,-7],[8,-17],[12,-19],[13,-23],[9,-15],[32,-19],[11,-5],[30,1],[10,4],[14,3],[5,-9],[5,-5],[24,1],[21,7],[35,28],[-7,34],[9,27],[-6,35],[-10,36],[-11,31],[0,11],[4,9],[12,6],[17,2],[14,-6],[19,-19],[25,-33],[11,-15],[2,-21],[8,-4],[4,-2],[3,-18],[0,-16],[-7,-15],[-7,-14],[-2,-4],[-9,-23],[-1,-4],[-18,3],[-6,-22],[0,-8],[-8,-26],[-6,-19],[-8,-13],[-7,-11],[0,-12],[-2,-11],[-4,-12],[-1,-11],[4,-23],[10,-13],[24,-36],[26,-45],[10,-17],[3,-3],[4,5],[8,-6],[4,-4],[2,-1],[5,-13],[9,-10],[44,-32],[35,-5],[14,0],[2,-1],[15,-10],[101,-49],[48,-65],[9,-12],[29,-39],[25,-39],[7,-30],[6,-8],[18,-10],[1,-1],[19,-7],[59,-16],[48,-8],[43,0],[11,6],[49,2],[26,-2],[-4,-53],[8,-11],[34,-14],[19,10],[-1,42],[-13,60],[0,2],[-23,54],[-42,70],[3,30],[7,26],[47,48],[20,-2],[17,-12],[16,-35],[4,-39],[-7,-52],[12,-27],[16,10],[6,-24],[1,-4],[-5,-38],[-27,-37],[-5,-14],[38,-44],[46,-19],[29,-4],[49,45],[20,6],[19,8],[44,62],[3,12],[19,76],[38,73],[63,-18],[69,-33],[17,-30],[-9,-51],[-42,-23],[-65,-43],[-56,19],[-21,-24],[4,-12],[-1,-42],[-2,-6],[-1,-26],[9,-16],[4,-7],[50,-19],[44,-6],[38,1],[9,0],[18,43],[6,10],[13,13],[16,9],[22,-4],[9,-7],[5,-22],[2,-27],[18,-29],[-1,-9],[-33,-28],[-29,-27],[-9,-9],[5,-16],[9,-10],[34,-14],[29,11],[13,14],[7,23],[-1,40],[7,16],[18,21],[18,1],[24,1],[22,-18],[6,-10],[0,-30],[-5,-16],[-33,-38],[-17,-12],[-45,-13],[-61,-47],[11,-21],[40,-19],[7,-3]],[[78143,73978],[-1,-42],[0,-8],[-3,-151],[-2,-103],[0,-49],[-1,-11],[1,-104],[-2,-108],[-1,-97],[-1,-20],[-2,-98],[-2,-52],[0,-1],[-2,-77],[0,-10],[-1,-13],[-1,-46],[0,-13],[0,-2],[-3,-121],[0,-1],[-1,-35],[0,-4],[0,-8],[0,-21],[-1,-14],[0,-60],[0,-3],[0,-30],[-1,-97],[0,-57],[0,-53],[0,-20],[-1,-31],[0,-2],[0,-85],[-2,-30],[1,-12],[-1,-43],[0,-34],[0,-33],[0,-20],[0,-20],[1,-48],[0,-15],[0,-1],[-1,-88],[0,-9],[0,-37],[0,-46],[1,-33],[-1,-31],[0,-1],[-1,-35],[0,-1],[0,-12],[-2,-74],[-1,-110],[0,-12],[0,-17],[-1,-13],[-1,-45],[-1,-28],[0,-44],[0,-27],[-1,-41],[0,-23],[-1,-33],[0,-10],[0,-38],[0,-13],[0,-9],[0,-26],[0,-17],[-1,-26],[-1,-11],[0,-45],[0,-25],[-1,-67],[-1,-55],[1,-11],[-1,-60]],[[78103,70902],[-8,2],[-9,1],[-32,1],[-11,1],[-10,1],[-19,-1],[-44,-2],[-2,0],[-8,1],[-11,1],[-18,-1],[-13,0],[-9,0],[-10,0],[-37,1],[-11,-1],[-44,0],[-9,0],[-35,2],[-9,0],[-2,0],[-98,3],[-15,0],[-20,1],[-19,0],[-29,0],[-21,0],[-21,1],[-72,-2],[-22,0],[-22,0],[-90,1],[-11,1],[-8,0],[-81,1],[-14,0],[-18,0],[-24,1],[-27,0],[-12,1],[-26,0],[-34,1],[-6,0],[-39,0],[-14,0],[-38,1],[-41,1],[-8,0],[-9,0],[-13,0],[-68,2],[-9,-2],[-14,1],[-14,1],[-12,0],[-12,0],[-7,1],[-26,0],[-2,0],[-13,0],[-8,0],[-20,0],[-44,1],[-9,0],[-11,1],[-14,0],[-1,0],[-17,1],[-9,-1],[-19,1],[-30,0],[-143,2],[-11,0],[-81,2],[-33,0],[-17,0],[-4,0],[-88,3],[-9,0],[-101,3],[-19,0],[-1,0],[-41,1],[-26,1],[-15,1],[-9,0],[-110,3],[-92,2],[-8,1],[-10,0],[-22,0],[-26,1],[-12,1],[-28,0],[-27,1],[-41,1],[-11,1],[-41,1],[-10,0],[-9,0],[-2,0],[-8,0],[-9,1],[-15,0],[-8,0],[-19,1],[-18,0],[-24,1],[-16,0],[-17,0],[-9,1],[-26,1],[-11,0],[-18,0],[-8,1],[-15,0],[-24,1],[-9,0],[-5,0],[-11,0],[-8,1],[-7,0],[-9,0],[-11,0],[-12,0],[-24,2],[-49,2],[-49,1],[-26,1],[-26,1],[-1,0],[-19,1],[-89,2],[-42,2],[-23,0],[-17,1],[-39,1],[-22,0],[-28,1],[-27,1],[-13,0]],[[74683,70974],[-55,1],[0,54],[1,18],[-14,3],[-165,5],[-29,1],[-30,-3],[-23,-3],[-9,0],[-65,3],[-9,0],[-14,1],[-27,1],[-12,1],[-21,0],[-38,2],[-7,1],[-14,0],[-19,1],[-7,0],[-4,0],[-33,1],[-9,0],[-17,1],[-26,1],[-149,12],[-7,0],[-1,0],[-34,2]],[[73846,71077],[1,116],[0,17],[0,16],[0,36],[1,13],[0,19],[0,25],[0,7],[0,6],[0,7],[0,8],[0,32],[0,4],[0,17],[0,23],[0,1],[1,46],[0,4],[0,58],[0,14],[0,4],[0,31],[0,4],[0,24],[0,88],[0,12],[0,12],[0,6],[1,9],[0,31],[0,16],[0,10],[0,26],[0,9],[0,18],[0,16],[0,11],[0,19],[0,23],[0,77],[0,67],[0,61],[0,20],[0,59],[0,24],[0,54],[0,7],[0,4],[0,5],[0,10],[0,12],[0,64],[0,37],[0,93],[0,86],[0,61],[0,79],[0,27],[0,21],[0,25],[0,47],[0,131],[0,26],[0,22],[0,24],[-1,60],[0,12],[0,49],[0,72],[0,19],[0,36],[0,2],[-1,32],[0,10],[0,88],[0,23],[-1,69],[0,12],[0,19],[0,41],[0,33],[-1,119],[0,1],[0,66],[0,38],[-1,12],[0,16],[0,21],[0,16],[0,141],[-1,36],[0,13],[0,92],[-2,54],[1,42],[-2,169],[0,11],[-1,98],[0,75],[0,70],[0,2],[-1,66],[0,34],[0,80],[0,60],[0,34],[0,26],[0,14],[-1,13],[0,16],[-1,45],[0,211],[2,52],[0,89],[0,110],[1,61],[0,81],[0,79],[0,60],[0,25],[0,69],[1,21],[0,55],[0,11],[0,13],[0,20]],[[73841,76072],[73,49],[1,0],[42,-19],[1,-1],[36,-16],[130,-62],[38,-17],[9,-42],[19,-86],[81,-366],[5,-22],[58,-124],[22,-45],[17,-37],[3,-5],[6,-13],[36,-76],[35,15],[81,36],[36,15],[54,24],[9,4],[55,18],[89,30],[67,23],[35,-41],[186,-219],[74,-87],[11,-13],[193,43],[194,85],[136,59],[161,314],[65,75],[104,121],[42,49],[28,-20],[207,-155],[133,-1],[23,0],[115,0],[25,-46],[-10,-39],[-27,-50],[-67,-59],[-74,-38],[-23,-10],[-41,-48],[-60,-68],[-33,-50],[-2,-2],[-4,-35],[1,-2],[13,-25],[1,-1],[60,-39],[60,-21],[192,-95],[91,-71],[9,-4],[19,-7],[2,-1],[6,-2],[12,0],[21,0],[61,0],[13,0],[8,1],[20,2],[43,6],[28,8],[1,0],[1,0],[20,5],[14,4],[6,2],[2,0],[37,8],[5,1],[17,-7],[0,-1],[12,-5],[5,-2],[2,-2],[7,-7],[9,-10],[9,-10],[1,-1],[30,-64],[26,-76],[5,-58],[0,-87],[19,-33],[12,-22],[5,-8],[0,-1],[1,-1],[7,-8],[60,-61],[23,-7],[8,0],[50,3],[58,3],[71,18],[17,2],[13,1],[18,2],[10,0],[43,-2],[28,-1],[27,20],[41,31],[24,-1],[40,-2],[122,-36],[28,-27],[0,-1],[1,0],[28,-60],[24,-76],[19,-42],[0,-1],[110,-138],[1,-1],[119,-116],[12,-16]],[[73846,71077],[-111,4],[-5,0],[-32,2],[-12,0],[-39,2],[-17,0],[-11,1],[-67,3],[-5,0],[-3,0],[-8,0],[-15,1],[-21,1],[-24,0],[-24,1],[-24,1],[-11,1],[-74,3],[-20,1],[-52,2],[-77,3],[-11,0],[-46,2],[-3,1],[-7,0],[-98,4],[-10,0],[-18,1],[-6,1],[-4,0],[-17,1],[-1,0],[-146,6],[-31,1],[-64,3],[-40,2],[-18,0],[-29,2],[-3,0],[-5,0],[-8,0],[-36,2],[-1,0],[-24,1],[-18,1],[-18,0],[-34,2],[-29,1],[-11,0],[-24,2],[-16,0],[-11,0],[-13,0],[-77,3],[-52,1],[-44,2],[-13,0],[-8,1],[-13,0],[-3,1],[-93,3],[-12,0],[-11,1],[-52,1],[-43,2],[-18,0],[-75,3],[-79,2],[-57,2],[-24,1],[-78,3],[-10,0],[-21,1],[-12,1],[-36,2],[-48,2],[-10,0],[-30,1],[-21,1],[-22,1],[-72,3],[-9,0],[-69,3],[-11,0],[-9,1],[-38,1],[-50,2],[-74,3],[-28,1],[-35,1],[-24,1],[-17,1],[-48,2],[-53,2],[-10,0],[-16,1],[-8,0],[-11,1],[-5,0],[-35,1],[-7,1],[-39,1],[-65,3],[-19,1],[-15,0],[-55,3],[-20,0],[-18,0],[-9,2],[-49,2],[-11,0]],[[70503,71208],[1,23],[-22,1],[-71,0],[-27,1],[-61,0],[-76,1],[-74,0],[-17,1],[-9,0],[-135,1],[-95,1],[-14,0],[-11,0],[-22,0],[-9,5],[-34,-1],[-18,0],[-50,-2],[-9,0],[-20,1],[-18,0]],[[69735,75758],[26,-16],[153,-89],[1,0],[1,0],[44,-86],[24,-45],[0,-22],[-1,-161],[-19,-40],[-6,-22],[-9,-33],[-13,-53],[-30,-52],[-3,-42],[-3,-45],[53,-81],[1,-1],[46,-44],[37,-19],[36,-19],[39,-13],[53,-17],[106,-3],[23,-1],[31,1],[40,1],[78,-4],[137,4],[32,19],[76,78],[30,69],[40,51],[18,24],[22,60],[22,56],[17,43],[13,106],[8,59],[21,22],[24,26],[35,-8],[1,0],[19,-45],[-36,-83],[-41,-58],[-10,-47],[4,-26],[0,-1],[25,-11],[24,8],[74,72],[27,37],[16,22],[18,43],[1,80],[-10,33],[16,21],[31,2],[17,-27],[42,-69],[1,-1],[20,-22],[70,-75],[76,-47],[67,-5],[83,9],[19,40],[30,67],[1,52],[5,31],[7,49],[6,76],[11,50],[24,35],[21,15],[66,27],[27,33],[13,2],[17,2],[31,4],[50,7],[34,-8],[37,-27],[0,-1],[1,0],[11,-18],[0,-1],[0,-1],[51,-38],[64,-41],[29,-35],[1,-1],[0,-1],[7,-17],[18,-44],[7,-81],[14,-62],[6,-17],[14,-43],[5,-16],[25,-75],[14,-60],[7,-26],[1,-80],[-1,-4],[-20,-43],[-24,-16],[-53,-34],[-104,-4],[-53,-52],[-35,-101],[3,-69],[3,-60],[67,-123],[12,-23],[24,-68],[17,-48],[7,-33],[-37,-72],[-5,-10],[4,-4],[1,-2],[1,-1],[18,-22],[3,-3],[33,-19],[27,3],[42,-76],[18,-43],[0,-8],[2,-25],[1,0],[35,-48],[1,-2],[49,-48],[14,-13],[4,-4],[4,-2],[35,-23],[20,-12],[22,-14],[48,-17],[42,-14],[87,-16],[60,6],[31,13],[39,15],[14,5],[19,15],[45,38],[29,36],[20,25],[36,71],[3,15],[9,40],[4,19],[7,106],[-7,36],[-12,65],[-4,23],[-37,113],[-14,55],[-7,28],[3,35],[1,6],[27,63],[48,46],[48,25],[149,34],[29,1],[1,0],[20,1],[20,1],[1,0],[15,25],[-3,56],[-14,46],[-1,1],[-51,51],[-22,9],[-19,8],[-20,8],[-7,3],[-70,5],[-19,2],[-22,1],[-53,1],[-17,8],[-1,2],[-5,7],[4,15],[-6,10],[4,37],[22,54],[78,40],[45,20],[73,-14],[48,-41],[1,0],[30,-72],[45,-71],[0,-1],[27,-5],[20,-3],[19,10],[39,20],[1,1],[19,10],[18,10],[1,0],[9,5],[21,18],[16,15],[14,19],[65,88],[60,81],[26,38],[1,3],[12,17],[36,53],[56,87],[1,94],[-12,100],[-25,93],[-1,3],[-10,26],[-24,59],[-16,115],[5,57],[27,39],[23,25],[15,6],[40,15],[15,-1],[2,-1],[-10,-40],[1,-14],[2,-60],[25,-60],[0,-1],[24,-17],[14,9],[35,23],[41,15],[7,3],[27,13],[11,5],[88,58]],[[86293,70741],[-28,-9],[-57,-9],[-11,2],[-35,9],[-6,3],[-3,1],[-3,4],[-11,16],[-2,5],[-1,3],[0,3],[-2,2],[-5,5],[-4,2],[-23,1],[-15,0],[-16,1],[-12,2],[-1,0],[-42,8],[-23,11],[-11,4],[-17,8],[-17,10],[-14,14],[-11,6],[-51,23],[-9,2],[-14,3],[-16,3],[-47,6],[-7,1],[-6,0],[-13,14],[-3,20],[-7,4],[-4,-9],[-10,-2],[-7,-6],[-34,21],[-21,13],[-27,-4],[-32,20],[-9,12],[-4,9],[4,9],[6,15],[-4,7],[-13,12],[-23,-3],[-7,-6],[-16,4],[-14,3],[-9,13],[-11,1],[-34,1],[-12,35],[-22,12],[-18,18],[-30,3],[-20,24],[-17,28],[-21,28],[-1,0],[-24,6],[-25,13],[-12,7],[-32,32],[-26,14],[-36,-3],[-11,5],[-22,9],[-53,28],[-30,16],[-14,8],[-2,1],[0,1],[0,14],[-5,17],[-1,3],[-10,29],[-58,36],[-4,2],[-3,-1],[-23,2],[-5,0],[-9,3],[-10,2],[-15,10],[-3,2],[-6,5],[-1,1],[-4,2],[-7,3],[-1,0],[-1,-1],[-3,-24],[0,-2],[2,-5],[1,-2],[5,-11],[-14,8],[-3,1],[-32,16],[-8,2],[-6,1],[-16,0],[-43,-7],[-34,-2],[-85,-2],[-6,0],[-7,0],[-36,-10],[-19,14],[-4,9],[-1,13],[-9,6],[-21,17],[-13,12],[-7,7],[-16,17],[-30,36],[-14,19],[-9,13],[-5,8],[-1,1],[-10,5],[-52,26],[-12,2],[-14,2],[-26,1],[-48,0],[-52,-1],[-72,-1],[-26,0],[-8,1],[-1,0],[-11,16],[-1,3],[-13,12],[-11,32],[-1,4],[-2,6],[-1,-5],[0,-1],[-2,-56],[-3,1],[-22,13],[-35,30],[-14,9],[-16,10],[-9,4],[-9,4],[-25,8],[-10,19],[0,1],[-28,14],[-4,1],[-6,0],[-1,1],[-11,0],[-37,-14],[-3,-1],[-4,-2],[-5,-2],[-2,-2],[-1,-5],[-1,-4],[-14,-1],[-7,-1],[-33,3],[-34,14],[-14,4],[-5,0],[-24,1],[-10,-4],[-5,-3],[-41,-27],[-73,-51],[-2,-2],[-23,-10],[-26,-9],[-18,-2],[-18,0],[-20,1],[-11,2],[-20,9],[-3,2],[-6,3],[-9,6],[-16,10],[-3,1],[-67,46],[-60,31],[-20,8],[-9,4],[-2,1],[-20,8],[-18,4],[-21,2],[-26,-1],[-19,-2],[-55,0],[-13,2],[-12,1],[-33,0],[-13,1],[-18,10],[-31,7],[-3,1],[-8,2],[-2,1],[-6,2],[-13,7],[-2,1],[-3,1],[-3,1],[-1,0],[-6,3],[-2,0],[-37,2],[-5,2],[-10,5],[-24,13],[-21,-8],[-3,-1],[-20,2],[-4,0],[-11,-2],[-19,-6],[-62,-24],[-8,-5],[-1,-1],[0,-3],[0,-2],[6,-6],[-1,-5],[-3,-9],[-2,-7],[-3,-6],[-2,-3],[-12,-4],[-3,-1],[-1,2],[-1,5],[-2,2],[-3,1],[-2,0],[-11,-1],[-8,-2],[-8,-3],[-2,-1],[-45,-39],[0,-5],[1,-2],[2,-8],[1,-3],[-3,0],[-12,3],[-15,-21],[-27,-15],[-13,-8],[-7,0],[-20,-2],[-2,0],[-4,-1],[-3,-2],[-12,-17],[0,-12],[0,-4],[-5,0],[-1,-1],[-18,-1],[-32,-7],[-23,-8],[-145,-69],[-8,-2],[-7,-2],[-41,0],[-56,3],[-31,-5]],[[82114,71502],[0,10],[0,12],[1,45],[0,14],[1,57],[1,58],[1,68],[0,56],[-1,39],[0,32],[1,78],[0,16],[1,41],[0,15],[0,14],[0,5],[0,17],[1,64],[0,60],[1,49],[0,19],[0,44],[1,44],[1,65],[0,73],[1,76],[0,13],[0,43],[-1,64],[0,12],[0,2],[0,36],[-1,32],[0,1],[0,38],[-1,58],[0,29],[0,30],[0,14],[0,14],[0,18],[-1,18],[0,19],[0,20],[8,0],[0,61],[0,11],[1,60],[0,53],[0,75],[0,16],[0,3],[0,22],[1,36],[0,101],[0,79],[0,19],[0,12],[1,30],[0,26],[0,19],[0,52],[0,60],[1,45],[1,15],[0,42],[-1,96],[0,23],[0,25],[0,42],[1,10],[0,11],[0,15],[0,9],[1,10],[-1,13],[0,14],[1,10],[0,10],[0,11],[1,11],[-1,8],[0,3],[0,14],[0,20],[0,11],[0,10],[0,11],[0,10],[0,10],[0,15],[0,15],[0,24],[0,84],[2,212],[1,52],[0,47],[0,13],[0,13],[0,14],[1,15],[0,9],[0,18],[0,26],[1,29],[0,16],[-1,16],[3,10],[-2,11],[-7,13],[1,1],[12,20],[4,7],[1,3],[8,25],[4,9],[7,12],[5,5],[7,14],[8,11],[8,12]],[[82197,75049],[62,-32],[17,-6],[13,-2],[27,0],[7,3],[14,5],[42,25],[10,10],[12,21],[3,13],[0,27],[-14,42],[-8,29],[0,19],[6,15],[8,8],[13,5],[13,2],[8,0],[6,0],[17,4],[1,0],[35,9],[8,2],[19,7],[33,0],[64,-26],[52,-25],[9,-7],[9,-13],[0,-7],[6,-6],[12,-7],[45,-18],[38,-2],[37,-16],[24,3],[10,4],[7,4],[12,12],[22,33],[6,15],[0,20],[-6,20],[-22,70],[-13,16],[-5,2],[-1,14],[2,25],[-16,63],[-4,15],[1,11],[11,27],[10,30],[0,2],[11,20],[10,9],[61,33],[7,3],[15,2],[28,1],[28,-1],[24,-2],[17,-4],[25,-6],[33,-14],[4,-3],[21,-16],[13,-10],[23,-24],[22,-17],[15,-8],[14,-5],[69,3],[31,3],[15,2],[49,23],[7,7],[4,4],[0,9],[14,20],[7,7],[8,5],[11,4],[7,0],[5,4],[45,46],[16,25],[0,2],[21,34],[6,5],[39,21],[17,3],[12,2],[24,-1],[9,-3],[30,-8],[42,-18],[7,3],[12,0],[33,2],[21,6],[11,3],[8,5],[16,15],[39,53],[3,7],[0,6],[4,9],[14,15],[7,4],[22,6],[17,4],[41,22],[31,7],[8,4],[32,29],[9,14],[4,8],[7,14],[0,12],[-2,2],[0,7],[3,17],[15,50],[4,4],[3,4],[7,2],[14,3],[19,-8],[12,-7],[12,-13],[23,-30],[13,-13],[5,-2],[29,-6],[2,0],[59,1],[41,-4],[11,-1],[16,-4],[2,-1],[10,-2],[11,-6],[7,-7],[12,-13],[10,-15],[13,-32],[11,-32],[4,-23],[9,-18],[10,-10],[1,-1],[2,-5],[12,-39],[3,-23],[0,-7],[1,-33],[0,-33],[-21,-64],[-4,-35],[1,-15],[28,-54],[19,-20],[7,-4],[8,1],[13,0],[28,0],[8,3],[13,3],[35,15],[8,4],[3,2],[13,11],[17,16],[24,31],[19,24],[30,31],[35,21],[12,0],[13,-3],[8,-7],[4,-5],[4,-4],[6,-11],[2,-4],[1,-5],[1,-40],[1,-22],[0,-19],[-1,-13],[-5,-17],[-7,-18],[0,-20],[2,-4],[1,-4],[1,-2],[3,-4],[1,-1],[2,-1],[8,-4],[12,0],[21,0],[41,0],[35,9],[48,17],[17,8],[30,21],[16,14],[26,20],[7,4],[34,27],[21,11],[23,2],[6,-3],[8,-10],[19,-45],[9,-26],[1,-46],[-4,-10],[0,-18],[5,-9],[5,-4],[21,-11],[24,-7],[39,2],[30,9],[51,2],[51,-10],[10,-4],[8,-8],[2,-2],[9,-2],[54,-8],[54,0],[7,0],[15,0],[66,11],[72,14],[27,0],[26,-6],[31,-1],[31,10],[9,2],[34,2],[32,8],[45,7],[16,7],[23,5],[49,2],[4,-2],[12,0],[14,0],[16,4],[11,13],[5,5],[5,16],[1,50],[-2,9],[0,34],[3,7],[6,6],[6,2],[30,8],[35,1],[10,-3],[15,-10],[17,-16],[11,-20],[25,-31],[13,-7],[11,-27]],[[82114,71502],[-2,-112],[-1,-24],[0,-43],[-1,-20],[0,-14],[0,-15],[0,-33],[-1,-34],[0,-32],[-1,-44],[-1,-41],[0,-14],[-1,-48],[0,-13]],[[82106,71015],[-126,-23],[-28,-4],[-29,-5],[-1,0],[-164,-27],[-20,-3],[-91,-15],[-43,-7],[-43,-7],[-42,-6],[-1,-1],[-23,-3],[-2,-1],[-95,-15],[-27,-4],[-134,-22],[-37,-6],[-46,-7],[-62,-11],[-61,-9],[-1,-1],[-1,0],[-60,-9],[-15,-2],[-15,-2],[-46,-8],[-2,0],[-65,-11],[-68,-11],[-107,-17],[-21,-4],[-27,-4],[-44,-7],[-51,-9],[-6,-1],[-38,-6],[-61,-10],[-19,-3],[-15,-2],[-61,-10],[-130,-22],[-1,0],[-65,-11],[-10,-1],[-26,-5],[-85,-14],[-77,-12],[-38,-6],[-8,-2],[-35,-5],[-70,-12],[-86,-14],[-63,-10],[-30,-5],[-1,0],[-47,-8],[-33,-5],[-35,-6],[-58,-9],[-10,-2],[-80,-13],[-27,-4],[-2,0],[-84,-14],[-16,-3],[-65,-12],[-13,-2],[-189,-30],[-2,0],[-14,-2],[-24,-4],[-82,-14],[-20,-3]],[[78782,70472],[-75,-10],[-16,-3],[-15,-2],[-18,-4],[-24,-3],[-9,-2],[-15,-2],[-18,-3],[-17,-2],[-25,-4],[-14,-3],[-32,-4],[-22,-4],[-25,-4],[-25,-3],[-10,-2],[-18,-3],[-2,0],[-35,-5],[-27,-4],[-9,-1],[-10,-2],[-22,-3],[-57,-9],[-11,-2],[-57,-8],[-70,-9],[0,9],[0,14],[1,9],[0,12],[0,29],[0,12],[-1,15],[0,11],[0,11],[0,20],[0,19],[0,27],[0,13],[0,12],[0,34],[-1,29],[0,42],[0,8],[0,3],[1,70],[-1,45],[0,22],[0,12],[0,14],[0,23],[0,2],[0,14]],[[78143,73978],[57,-73],[0,-1],[35,-56],[1,0],[5,-43],[26,-71],[0,-54],[31,-44],[1,-2],[46,-22],[16,0],[2,0],[23,-2],[17,-1],[32,16],[24,12],[13,18],[118,38],[9,14],[44,66],[28,89],[8,24],[0,2],[10,32],[1,17],[0,1],[1,5],[0,28],[0,7],[0,5],[-7,27],[-5,13],[-6,43],[0,39],[8,18],[21,50],[10,30],[7,31],[4,17],[10,20],[13,15],[17,18],[9,15],[2,25],[9,9],[13,7],[2,1],[2,1],[2,1],[2,1],[15,-1],[5,-4],[2,-2],[2,-1],[6,0],[6,0],[11,2],[5,1],[4,2],[23,10],[11,8],[2,2],[10,8],[1,0],[5,3],[7,7],[28,-4],[55,-13],[17,-5],[10,-4],[16,-13],[24,-17],[40,-18],[58,-31],[26,-17],[35,-21],[32,-17],[13,-9],[31,-2],[9,4],[25,3],[83,-1],[37,-7],[8,-4],[15,1],[7,0],[15,1],[6,5],[3,3],[1,1],[13,6],[2,-1],[5,3],[15,7],[45,16],[2,0],[43,21],[23,16],[1,0],[5,4],[35,38],[4,6],[19,29],[9,19],[7,25],[1,35],[-7,30],[-7,27],[-3,9],[-6,7],[-6,28],[0,13],[10,71],[11,28],[6,12],[20,29],[32,57],[5,7],[21,27],[7,8],[8,0],[16,4],[25,25],[20,14],[3,1],[0,1],[1,0],[31,16],[14,7],[40,31],[47,7],[34,-8],[48,17],[42,34],[21,33],[0,1],[13,20],[13,18],[18,12],[17,0],[19,-3],[21,-7],[7,-4],[1,0],[10,-6],[10,-6],[24,-7],[12,5],[14,11],[6,12],[-3,36],[-6,25],[-8,14],[-1,1],[-4,7],[-33,44],[-2,16],[4,21],[17,9],[27,0],[51,-60],[4,-7],[14,-23],[17,-14],[14,-5],[12,-14],[1,-2],[2,-2],[14,-9],[30,-34],[26,-10],[46,15],[1,0],[2,1],[80,-29],[63,38],[33,18],[31,47],[1,53],[33,38],[34,-4],[22,-33],[-6,-37],[-21,-51],[3,-27],[0,-2],[35,2],[14,9],[89,45],[13,12],[0,1],[5,2],[16,15],[1,1],[17,17],[22,91],[-37,6],[-2,5],[-1,2],[-33,61],[12,36],[20,-10],[1,0],[1,-1],[60,-33],[32,-9],[23,-20],[6,-53],[-15,-30],[32,-39],[12,8],[26,14],[11,5],[11,2],[8,7],[19,8],[41,7],[63,9],[8,0],[7,-3],[10,-9],[6,-4],[1,0],[2,0],[13,0],[33,17],[14,7],[9,6],[2,1],[3,3],[7,7],[30,71],[7,17],[1,4],[8,46],[0,22],[-2,10],[-12,27],[0,27],[5,10],[11,8],[20,-3],[94,-37],[12,-5],[21,-11],[35,-37],[6,-3],[16,-5],[11,0],[15,-7],[68,-56],[16,-9],[36,-26],[15,-12],[15,-17],[22,-16],[27,-19],[19,-6],[51,-18],[18,-13],[13,-12],[14,-8],[28,-2],[16,-10],[22,-22],[10,-17],[6,-11],[8,-8],[3,-2],[2,-1],[10,-1],[25,-53]],[[50611,75011],[0,-18],[1,-62],[1,-28],[0,-16],[0,-19],[1,-130],[0,-43],[1,-15],[-1,-46],[0,-18],[1,-27],[1,-12],[0,-32],[0,-19],[1,-83],[1,-25],[0,-49],[0,-21],[0,-48],[1,-46],[1,-48],[0,-72],[0,-48],[1,-62],[0,-52],[1,-15],[0,-69],[0,-19],[2,-114],[0,-60],[1,-27],[0,-86],[1,-30],[0,-74],[1,-26],[0,-59],[1,-36],[1,-105],[0,-28],[0,-32],[0,-38],[0,-3],[1,-13],[0,-27],[0,-54],[0,-23],[2,-16],[0,-22],[1,-37],[0,-32],[1,-22],[0,-26],[1,-59],[0,-10],[1,-130],[1,-9],[-1,-18],[1,-41],[0,-1],[0,-22],[1,-70],[0,-39],[-1,-10],[1,-16],[0,-10],[0,-12],[0,-24],[1,-68],[1,-31],[0,-62],[0,-29],[0,-14],[0,-26],[0,-10],[0,-6],[1,-87],[1,-33],[0,-72],[0,-25],[0,-84],[0,-34],[0,-21],[3,-250],[0,-22],[1,-55],[0,-27],[1,-80],[0,-21],[0,-20],[1,-53],[1,-22],[0,-48],[1,-74],[0,-34],[0,-25],[0,-17],[0,-18],[0,-12],[1,-34],[0,-15],[1,-25],[0,-2],[0,-25],[0,-10],[0,-19]],[[50652,70898],[-23,0],[-11,0],[-40,-1],[-25,3],[-2,1],[-8,0],[-31,0],[-14,0],[-36,0],[-22,0],[-102,0],[-15,0],[-44,0],[-35,1],[-27,0],[-16,0],[-87,0],[-28,0],[-90,0],[-22,0],[-46,0],[-74,0],[-31,0],[-1,0],[-23,0],[-29,0],[-46,1],[-20,-1],[-29,-2],[-46,-2],[-34,1],[-126,0],[-18,0],[-36,1],[-43,0],[-28,0],[-69,1],[-17,0],[-44,0],[-27,0],[-33,0],[-20,1],[-37,0],[-22,0],[-31,0],[-10,0],[-16,1],[-108,0],[-164,1],[-22,1],[-46,-1],[-26,-2],[-23,-1],[-9,-1],[-22,0],[-266,-5],[-92,1],[-18,0],[-56,1],[-51,1],[-48,1],[-36,1],[-33,0],[-3,0],[-14,0],[-8,0],[-30,-1],[-10,0],[-15,0],[-25,0],[-45,1],[-79,1],[-20,0],[-23,0],[-118,0],[-55,-1],[-65,0],[-19,0],[-31,0],[-97,0],[-8,0],[-44,0],[-47,0],[-52,0],[-8,0],[-23,0],[-49,0],[-10,0],[-11,0],[-34,0],[-33,0],[-17,0],[-230,1],[-31,1],[-34,0],[-51,1],[-14,0]],[[46645,70903],[0,28],[0,56],[0,12],[0,43],[0,16],[0,76],[0,71],[0,53],[0,50],[0,49],[0,18],[0,10],[0,15],[-1,68],[0,20],[0,122],[0,14],[0,31],[0,91],[0,17],[0,12],[0,22],[0,64],[-2,29],[0,11],[0,78],[0,79],[0,18],[0,2],[0,33],[0,17],[0,47],[-1,20],[0,56],[0,27],[0,26],[0,36],[0,17],[0,82],[0,23],[0,60],[0,16],[0,62],[0,32],[0,86],[0,2],[0,13],[0,39],[0,45],[0,1],[0,9],[-1,26],[0,78],[0,14],[0,48],[0,19],[0,22],[0,63],[0,28],[0,150],[0,46],[0,46],[0,30],[0,20],[0,75],[0,47],[0,44],[0,59],[0,42],[0,97],[-1,53],[0,55],[0,25],[0,17],[0,28],[0,66],[-1,33],[0,50],[0,51],[-1,47],[0,56],[0,60],[0,108],[0,27],[0,38],[0,33],[0,35],[-1,153],[0,11],[0,39],[0,30],[0,1],[0,95],[0,14],[0,19],[0,40],[0,17],[0,26]],[[54584,74054],[0,-3],[0,-26],[0,-1],[0,-31],[0,-1],[0,-51],[0,-31],[0,-1],[0,-11],[0,-25],[0,-15],[1,-12],[0,-43],[0,-40],[0,-21],[0,-86],[0,-87],[0,-20],[0,-75],[0,-57],[1,-140],[0,-26],[2,-217],[0,-36],[0,-26],[0,-74],[1,-37],[0,-79],[1,-63],[0,-50],[0,-33],[0,-14],[0,-13],[0,-4],[0,-27],[1,-27],[0,-31],[0,-37],[-1,-46],[0,-25],[1,-75],[0,-22],[1,-19],[0,-92],[0,-23],[1,-50],[0,-12],[0,-27],[0,-1],[0,-33],[0,-19],[0,-19],[1,-44],[-1,-11],[0,-15],[1,-18],[0,-29],[0,-42],[0,-98],[0,-2],[0,-27],[1,-70],[0,-75],[0,-12],[0,-56],[1,-103],[0,-13],[2,-27],[1,-29],[0,-11],[0,-34],[0,-101],[0,-18],[0,-12],[0,-21],[0,-22],[0,-36],[0,-14],[0,-23],[0,-17],[0,-126]],[[54599,70914],[-20,0],[-77,0],[-115,-2],[-122,0],[-89,0],[-50,0],[-39,-1],[-1,0],[-105,0],[-162,0],[-44,0],[-118,-1],[-20,1],[-67,0],[-21,0],[-114,-1],[-60,0],[-39,0],[-20,0],[-3,0],[-71,-1],[-33,0],[-62,0],[-36,0],[-35,0],[-61,0],[-35,0],[-25,0],[-41,-1],[-30,0],[-37,0],[-131,0],[-29,0],[-71,0],[-82,-1],[-16,0],[-34,1],[-31,-1],[-66,0],[-64,-1],[-9,0],[-132,-1],[-84,-1],[-63,0],[-42,0],[-29,0],[-82,0],[-3,0],[-17,-1],[-25,1],[-134,-1],[-52,0],[-50,-1],[-17,0],[-52,-2],[-17,0],[-71,0],[-20,0],[-162,0],[-120,0],[-27,0],[-29,0],[-70,0],[-110,-1],[-71,0],[-19,0],[-164,-1]],[[62600,71549],[0,-10],[0,-23],[0,-37],[0,-26],[1,-18],[0,-13],[0,-10],[0,-11],[1,-83],[0,-20],[0,-18],[0,-23],[0,-20],[0,-6],[1,-45],[0,-15],[0,-20],[0,-54],[0,-2],[1,-28],[0,-13],[0,-23],[0,-39],[1,-36],[0,-31],[0,-38]],[[62605,70887],[-25,0],[-11,0],[-105,0],[-14,0],[-12,1],[-61,-1],[-6,0],[-3,0],[-21,0],[-3,0],[-55,-1],[-31,0],[-20,0],[-20,0],[-61,0],[-106,-1],[-32,0],[-20,1],[-85,-1],[-35,0],[-10,0],[-8,0],[-9,0],[-19,0],[-20,0],[-13,-1],[-25,0],[-41,0],[-14,0],[-10,0],[-9,0],[-15,0],[-16,0],[-40,-1],[-76,0],[-13,0],[-13,0],[-16,0],[-8,0],[-42,-1],[-7,0],[-42,0],[-33,0],[-68,-1],[-8,0],[-13,0],[-23,0],[-9,0],[-95,-1],[-13,0],[-19,0],[-27,0],[-40,0],[-18,2],[-33,0],[-34,0],[-8,0],[-32,0],[-23,0],[-13,0],[-17,0],[-2,0],[-11,0],[-38,0],[-17,0],[-49,0],[-11,0],[-22,0],[-47,0],[-11,0],[-29,0],[-8,0],[-90,0],[-170,0],[-43,0],[-27,0],[-27,0],[-23,0],[-32,0],[-125,0],[-9,2],[-10,0],[-3,0],[-22,0],[-64,1],[-8,0],[-25,1],[-86,1],[-19,0],[-108,2],[-80,1],[-11,0],[-17,0],[-49,1],[-13,1],[-33,0],[-12,1],[-63,1],[-47,1],[-43,0],[-3,0],[-20,0],[-12,0],[-28,1],[-74,0],[-19,0],[-49,0],[-9,0],[-9,0],[-16,1],[-11,0],[-1,0],[-56,0],[-39,1],[-126,0],[-30,0],[-14,0],[-94,1],[-17,0],[-29,0],[-64,0],[-8,0],[-7,0],[-9,0],[-9,0],[-12,0],[-72,1]],[[58546,70900],[0,65],[0,74],[0,28],[0,22],[0,20],[0,45],[1,23],[0,75],[0,50],[0,15],[0,130],[0,13],[0,2],[0,83],[0,1],[0,28],[0,10],[0,40],[0,68],[0,45],[0,26],[0,39],[0,29],[0,11],[0,10],[0,10],[-1,11],[0,10],[1,71],[0,15],[0,72],[0,12],[0,27],[0,41],[0,24],[0,11],[1,73],[0,8],[0,15],[0,11],[0,85],[0,79],[1,28],[0,74],[0,16],[0,25],[0,33],[0,11],[1,97],[0,76],[0,3],[0,91],[0,69],[0,84],[0,27],[0,49],[0,15],[0,3],[0,27],[0,53],[0,60],[1,107],[0,270],[0,19],[0,55],[0,79],[0,30],[0,2],[1,185],[0,35],[0,41],[0,19],[1,96],[0,187],[0,97],[0,22],[1,24],[0,13],[-1,78],[0,131],[0,74],[0,7],[0,16],[0,11],[0,10],[0,26],[0,13],[0,12],[0,66]],[[46645,70903],[-83,1],[-15,0],[-67,1],[-9,0],[-12,0],[-127,2],[-15,0],[-50,1],[-50,1],[-29,0],[-13,0],[-103,2],[-50,0],[-97,2],[-30,0],[-59,1],[-13,0],[-52,0],[-56,0],[-21,0],[-24,0],[-14,0],[-84,0],[-54,0],[-152,0],[-1,0],[-35,0],[-23,0],[-45,0],[-30,0],[-10,0],[-23,0],[-16,-1],[-9,0],[-145,0],[-12,0],[-10,0],[-13,0],[-122,-6],[-14,0],[-96,-1],[-29,0],[-10,0],[-69,0],[-66,0],[-3,0],[-140,0],[-90,0],[-46,-1],[-119,0],[-17,0],[-20,0],[-9,0],[-103,0],[-19,0],[-107,-1],[-26,0],[-55,-1],[-8,0],[-9,0],[-28,0],[-120,-1],[-19,0],[-18,0],[-16,0],[-94,-1],[-109,-1],[-58,-1],[-132,0],[-23,0],[-11,0],[-43,0],[-122,1],[-55,-2],[-10,-2],[-24,0],[-47,1],[-34,0],[-167,0],[-10,0]],[[42677,70897],[0,11],[0,54],[0,29],[0,19],[0,16],[0,19],[0,10],[0,16],[0,40],[0,27],[0,12],[0,165],[0,196],[0,61],[-1,90],[0,99],[0,36],[0,63],[-2,131],[0,15],[0,53],[0,42],[0,19],[0,66],[-1,84],[0,46],[0,98],[0,13],[-1,47],[0,82],[-1,65],[-1,208],[0,15],[0,13],[0,17],[-1,158],[-1,61],[-1,39],[1,32],[-3,419],[0,3],[-1,48],[0,32],[1,103],[0,50],[-1,154],[-1,69],[0,67],[0,97],[0,39],[-1,69],[0,105],[-1,86],[0,97],[0,22],[-1,30],[0,67],[0,112],[-1,98],[0,58]],[[42677,70897],[-41,0],[-16,0],[-26,0],[-10,0],[-1,0],[-10,0],[-135,-1],[-16,0],[-9,0],[-26,0],[-119,0],[-27,0],[-27,0],[-13,0],[-102,0],[-58,0],[-24,0],[-27,0],[-24,0],[-60,0],[-15,0],[-49,-1],[-73,0],[-30,0],[-35,0],[-72,0],[-57,-1],[-129,0],[-18,0],[-46,0],[-47,-1],[-46,0],[-50,0],[-56,0],[-17,0],[-91,0],[-9,0],[-17,0],[-50,0],[-13,0],[-16,0],[-50,-1],[-37,0],[-120,-1],[-8,0],[-87,0],[-168,0],[-68,-1],[-66,0],[-18,0],[-119,0],[-25,0],[-10,0],[-22,0],[-58,-5],[-31,0],[-44,-1],[-4,0],[-85,0],[-48,0],[-139,-2],[-53,0],[-66,-1],[-20,0],[-14,0],[-32,0],[-37,0],[-20,0],[-9,0],[-135,-1],[-46,0],[-38,0],[-12,0],[-21,-1],[-97,-4],[-20,0],[-51,0],[-91,-1],[-139,0],[-121,0],[-8,0]],[[38733,70874],[-1,79],[-1,137],[-1,142],[-1,29],[0,21],[-1,139],[0,27],[-1,113],[-3,212],[0,76],[-2,12],[-1,58],[-1,136],[-1,75],[-1,17],[0,43],[-1,69],[-1,13],[-2,191],[-2,155],[-2,135],[-2,136],[-2,145],[-2,127],[-1,136],[-2,130],[0,1],[0,11],[-1,38],[-1,91],[-2,136],[-2,136],[-4,340],[0,26],[0,21],[-1,80],[-2,123],[-1,90],[0,88],[-1,48],[-2,137],[0,13],[-1,122],[-1,31]],[[58546,70900],[-19,0],[-24,0],[-13,0],[-9,0],[-6,0],[-13,0],[-155,1],[-114,1],[-24,0],[-10,0],[-17,0],[-18,0],[-33,0],[-13,0],[-50,0],[-64,0],[-130,1],[-9,0],[-27,0],[-13,0],[-3,0],[-83,1],[-34,0],[-83,0],[-53,0],[-70,1],[-144,0],[-77,1],[-19,0],[-11,0],[-27,0],[-16,0],[-110,1],[-32,0],[-21,0],[-8,0],[-2,0],[-39,0],[-48,0],[-11,0],[-63,0],[-18,0],[-9,0],[-42,0],[-61,0],[-44,0],[-22,1],[-23,0],[-24,0],[-7,0],[-1,0],[-15,0],[-155,0],[-77,1],[-31,0],[-16,0],[-35,0],[-64,0],[-124,1],[-37,0],[-75,0],[-73,0],[-73,1],[-81,0],[-44,0],[-154,0],[-118,0],[-40,1],[-13,-1],[-17,0],[-24,0],[-15,0],[-21,0],[-36,0],[-13,0],[-1,0],[-39,1],[-1,0],[-6,0],[-10,0],[-2,0],[-17,0],[-43,0],[-22,0],[-29,0],[-83,0],[-49,0],[-38,1],[-21,0],[-24,0],[-28,0],[-65,0],[-15,0],[-78,0],[-24,1],[-35,0]],[[38733,70874],[-124,-1],[-61,0],[-3,0],[-74,0],[-78,0],[-25,0],[-2,0],[-105,0],[-50,0],[-82,-1],[-125,-2],[-6,0],[-133,-1],[-138,-2],[-18,0],[-154,-2],[-131,-1],[-65,-1],[-99,-2],[-39,-1],[-138,-2],[-125,-2],[-66,-1],[-67,-1],[-31,0],[-2,0],[-224,-3],[-206,-3],[-54,-3],[-13,0],[-132,-2],[-131,-1],[-91,-1],[-46,0],[-238,-4],[-23,0],[-132,-2],[-131,-3],[-11,-3],[-3,-1],[-117,-1],[-1,0],[-133,0],[-131,-1],[-129,-1],[-64,0]],[[34782,70825],[-1,74],[-2,73],[-2,80],[-3,137],[-2,69],[-1,69],[-1,37],[-1,36],[-1,32],[-1,68],[-2,62],[0,3],[0,25],[1,46],[-2,39],[1,32],[0,66],[-1,88],[-1,57],[-4,124],[-1,46],[-1,36],[-1,80],[-1,64],[-1,41],[-3,181],[-2,101],[-1,13],[0,8],[0,21],[0,5],[-1,52],[-2,154],[0,31],[-3,159],[-1,99],[-1,12],[0,22],[-2,103],[-2,90],[-2,142],[-1,34],[-2,96],[-2,129],[-1,18],[-2,130],[-1,41],[-2,97],[-1,53],[-1,68],[-1,38],[0,30],[-1,14],[0,5],[0,26],[-1,37],[0,40],[-1,51],[-1,27],[-1,57],[0,11],[-2,109],[0,17],[-2,96],[-1,40],[0,33],[-2,76],[0,30]],[[30676,74909],[1,-34],[1,-26],[0,-20],[2,-54],[2,-54],[1,-9],[0,-16],[1,-19],[2,-39],[0,-13],[2,-58],[1,-10],[3,-72],[1,-24],[1,-47],[3,-72],[1,-17],[2,-54],[2,-65],[-1,-11],[3,-71],[3,-72],[1,-30],[2,-41],[4,-112],[2,-34],[3,-71],[2,-72],[3,-71],[3,-71],[3,-74],[2,-37],[1,-34],[2,-54],[1,-18],[1,-28],[2,-44],[3,-52],[0,-19],[3,-72],[2,-37],[1,-25],[1,-22],[2,-49],[1,-22],[1,-49],[2,-28],[1,-37],[1,-18],[2,-69],[0,-1],[1,-14],[2,-40],[0,-11],[0,-12],[2,-41],[1,-11],[2,-73],[3,-55],[2,-65],[1,-35],[8,-197],[3,-80],[2,-42],[1,-23],[2,-52],[1,-75],[2,-65],[-1,-12],[2,-40],[1,-17],[0,-13],[2,-47],[2,-35],[2,-69],[1,-29],[1,-21],[1,-24],[3,-60],[0,-21],[1,-16],[4,-84],[0,-11],[2,-48],[1,-31],[1,-29],[1,-13],[1,-32],[2,-60],[2,-48],[1,-9],[1,-34],[1,-21],[1,-43],[4,-107],[1,-15],[1,-25],[2,-41]],[[30833,70815],[-126,0],[-37,0],[-71,-2],[-212,-1],[-158,0],[-111,0],[-186,-1],[-65,2],[-35,0],[-28,0],[-66,0],[-53,0],[-41,0],[-10,0],[-118,0],[-98,0],[-284,0],[-4,0],[-140,0],[-22,0],[-193,0],[-39,0],[-44,1],[-27,0],[-21,0],[-42,0],[-36,0],[-37,0],[-15,0],[-42,0],[-58,0],[-53,0],[-67,0],[-87,0],[-204,0],[-41,0],[-42,0],[-64,0],[-52,0],[-59,0],[-180,0],[-133,0],[-107,0],[-7,0],[-1,0]],[[27317,70814],[30,1648],[1,42],[0,19],[9,528],[21,1232],[5,330],[5,296]],[[34782,70825],[-31,0],[-88,0],[-81,-1],[-123,0],[-54,-5],[-117,1],[-84,1],[-15,0],[-63,1],[-111,1],[-3,0],[-8,0],[-16,0],[-36,0],[-74,-2],[-85,-1],[-59,0],[-73,0],[-72,0],[-72,0],[-63,1],[-11,0],[-70,-1],[-22,0],[-51,0],[-34,0],[-109,-1],[-71,0],[-51,0],[-97,-1],[-8,0],[-83,0],[-2,0],[-75,-1],[-82,0],[-103,-1],[-31,0],[-35,0],[-17,1],[-44,-1],[-45,0],[-45,0],[-18,0],[-2,0],[-82,0],[-17,0],[-224,-1],[-37,0],[-9,0],[-29,0],[-10,-1],[-34,0],[-33,0],[-16,0],[-9,0],[-37,0],[-38,0],[-32,0],[-42,0],[-36,0],[-11,0],[-11,0],[-70,-1],[-20,3],[-23,0],[-93,-1],[-9,0],[-136,0],[-56,0],[-13,0],[-22,0],[-171,0],[-195,0]],[[95927,69715],[-20,7],[-1,1],[-2,1],[-2,2],[-7,20],[-12,38],[-11,44],[-4,41],[-3,4],[-18,24],[0,1],[-6,5],[-5,2],[-8,1],[-6,2],[-7,4],[-7,7],[-3,4],[-1,6],[2,3],[5,2],[8,-3],[7,-6],[6,-3],[1,0],[6,0],[2,1],[1,2],[0,9],[-14,29],[-2,4],[-3,1],[-36,13],[-1,0],[-3,-1],[-4,-1],[-17,0],[-3,-1],[0,-1],[-4,-4],[-11,0],[-13,13],[-4,1],[-7,3],[-3,0],[-3,-1],[-4,-4],[-2,-4],[0,-4],[5,-6],[11,-8],[7,-6],[1,-1],[0,-4],[-1,-4],[-2,-1],[-12,-11],[-3,-2],[-15,-12],[-11,1],[-4,1],[-10,12],[-2,6],[-2,10],[-2,3],[-2,4],[-5,5],[-7,5],[-7,5],[-4,2],[-2,0],[-5,0],[-1,-2],[-1,-1],[0,-4],[0,-1],[1,-2],[7,-12],[-1,-6],[-5,-17],[-4,-7],[-3,-4],[-4,-2],[-4,0],[-4,2],[-32,21],[-5,4],[-2,3],[-1,2],[0,3],[0,6],[3,2],[3,1],[6,-1],[5,-1],[6,0],[3,3],[25,40],[3,6],[0,8],[-2,5],[-4,5],[-5,1],[-46,6],[-7,0],[-2,0],[-2,-1],[-1,0],[-2,-5],[0,-6],[0,-1],[0,-1],[2,-8],[3,-6],[3,-7],[2,-5],[-1,-4],[0,-1],[-4,-10],[-4,-5],[-6,-4],[-5,-2],[-5,0],[-5,2],[-4,4],[-5,9],[-15,39],[-1,5],[-1,4],[-2,7],[-2,2],[-1,1],[-2,0],[-2,1],[-3,0],[-2,-2],[-2,-2],[-2,-4],[-1,-6],[-1,-14],[2,-8],[3,-3],[1,-1],[8,-7],[2,-2],[2,-5],[0,-3],[-4,-10],[-3,-5],[-5,-7],[-3,-1],[-4,1],[-4,2],[-3,4],[-19,40],[-2,4],[-1,5],[1,5],[0,1],[3,9],[0,7],[-2,2],[-4,3],[-5,3],[-31,18],[-8,5],[-3,1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-2],[-2,-2],[-22,-33],[0,-1],[-13,-6],[1,-8],[1,-4],[9,-30],[3,-5],[1,-1],[2,-2],[4,-26],[0,-3],[0,-16],[-3,-3],[-3,-1],[-10,0],[-3,1],[-5,5],[-2,4],[-2,6],[-3,10],[1,6],[3,4],[7,8],[3,8],[0,4],[0,2],[-2,1],[-7,0],[-2,0],[-3,0],[-26,-9],[-21,-7],[-6,-3],[-2,-2],[-1,-2],[0,-3],[2,-3],[1,-1],[9,-10],[4,-5],[9,-5],[17,-1],[5,-2],[2,-2],[1,-3],[-4,-7],[-3,-3],[-5,-3],[-5,-1],[-3,0],[-8,-1],[-65,2],[-10,2],[-4,0],[-20,6],[-25,-1],[-9,3],[-5,3],[-3,3],[-1,4],[-5,11],[-1,2],[-27,44],[-3,3],[-4,0],[-12,1],[-8,4],[-4,3],[-7,9],[-3,2],[0,1],[-10,7],[-13,8],[-7,5],[-4,8],[-5,10],[-11,3],[-10,2],[-9,2],[-10,5],[-4,3],[-5,3],[-4,10],[-6,14],[-10,2],[-8,-2],[-7,-6],[-7,-9],[-4,-9],[-4,-10],[-2,-6],[0,-2],[-4,-9],[-5,-8],[-13,-13],[-31,4],[-18,0],[-12,0],[-2,0],[-22,-1],[-22,10],[-10,-13],[-27,-3],[-8,-14],[-9,-5],[0,-19],[-26,-11],[-10,4],[-14,5],[-18,11],[-16,-12],[-5,-21],[-12,-1],[-43,-2],[-40,-1],[-9,-18],[-1,-27],[-1,-13],[13,-31],[8,-15],[-19,-8],[-20,2],[-19,-12],[-16,-18],[3,-11],[10,-19],[2,-10],[-10,-4],[-19,-1],[-8,3],[-2,10],[-6,8],[-9,2],[-10,-8],[-6,-10],[2,-10],[-9,-3],[-9,1],[-12,0],[-11,0],[-8,-3],[-8,-13],[-4,-9],[8,-3],[23,-1],[10,-14],[7,-9],[1,-29],[-7,-15],[-11,-15],[-5,-13],[-6,-18],[-12,-15],[0,-12],[8,1],[4,-5],[2,-3],[5,-8],[2,-9],[19,-18],[11,-12],[4,-12],[4,-17],[14,-17],[-25,5],[-11,-14],[13,-18],[18,-8],[-4,-18],[-26,-8],[-12,-3],[-19,4],[-41,13],[-42,-6],[-12,3],[-25,6],[-21,-20],[-9,-29],[-13,2],[-4,10],[-5,10],[-10,18],[-11,18],[-18,13],[-17,11],[-12,1],[-53,2],[-6,6],[-24,26],[-15,5],[-28,-3],[-22,-6],[-5,-7],[-8,-1],[-7,6],[-8,5],[-15,17],[5,11],[-4,10],[-16,10],[-7,4],[-10,-4],[0,-12],[12,-6],[2,-12],[-8,-9],[-11,-3],[-10,-1],[-25,-2],[-21,0],[-8,-3],[-8,-2],[-7,-3],[-5,-2],[-4,-3],[-10,-1],[-4,5],[-1,1],[-10,3],[-10,1],[-11,1],[-7,2],[-10,6],[-9,13],[-9,6],[-20,23],[-30,-10],[-22,9],[-10,0],[-19,0],[-41,-7],[-15,6],[-28,-2],[-18,4],[-15,21],[-2,0],[-17,8],[-24,12],[-15,16],[-10,10],[-10,8],[-6,3],[-13,0],[-1,-1],[-1,-12],[7,-14],[-3,-11],[-9,1],[1,12],[-10,8],[-10,8],[-7,-9],[-9,-21],[1,-15],[-5,-8],[-9,-1],[0,12],[-1,13],[-8,7],[-10,-6],[-8,-9],[-9,-3],[-21,-2],[-8,-11],[-5,-13],[-7,3],[-110,53],[-10,9],[-22,23],[-10,19],[5,14],[8,4],[11,1],[1,12],[-11,2],[-8,-5],[-8,-3],[-7,-5],[-7,5],[-4,9],[-11,4],[-19,-2],[-22,-2],[-24,41],[-2,4],[-4,6],[0,5],[6,6],[1,2],[1,5],[0,10],[0,4],[-12,32],[-1,1],[-8,8],[-39,2],[-21,5],[-12,2],[-8,1],[-8,1],[-12,3],[-7,-9],[-7,-10],[-16,-8],[-8,7],[0,11],[4,8],[7,9],[-5,10],[-9,1],[-13,-5],[-10,-9],[-4,-16],[11,-23],[-6,-9],[-10,1],[-6,12],[-6,9],[-7,-5],[-3,-12],[-14,-3],[-8,1],[-47,20],[-4,1],[-14,4],[-43,12],[-3,3],[-8,13],[-12,18],[-11,14],[-5,6],[-6,8],[-7,8],[-7,7],[-10,7],[-2,2],[-5,0],[-1,0],[-5,0],[-3,-4],[-3,-3],[-7,-13],[-3,-12],[-4,1],[-31,3],[-23,0],[-48,-32],[-53,-17],[-27,-13],[-7,-5],[-3,1],[-4,0],[-46,-16],[-2,-3],[-17,-4],[-56,8],[-11,0],[-23,-6],[-3,-1],[-3,-3],[-2,-4],[-2,-5],[-1,-7],[0,-4],[1,-5],[3,-3],[10,-4],[3,-2],[0,-2],[1,-2],[0,-5],[-8,-21],[-2,-4],[-1,-1],[-5,-1],[-2,0],[-5,4],[-2,3],[-26,-5],[-3,-5],[-19,-27],[-26,-34],[-1,-1],[-24,-9],[-7,-1],[-4,2],[-3,3],[-1,7],[1,6],[4,10],[0,3],[-1,1],[-41,0],[-1,0],[-4,-2],[-3,-3],[-2,-4],[0,-3],[2,-2],[4,0],[5,2],[4,-4],[1,-3],[1,-17],[0,-1],[-3,-7],[-3,-3],[-4,0],[-31,7],[-4,2],[-3,5],[-1,5],[0,9],[0,6],[-1,0],[-10,-3],[-13,-3],[-41,14],[-2,1],[-4,-1],[-12,-12],[-2,-3],[-1,-2],[8,-10],[1,-1],[-1,-5],[-18,-38],[-2,-3],[-6,-1],[-18,7],[-7,3],[-2,2],[-3,4],[-18,13],[-1,0],[-22,1],[-3,0],[-3,-6],[-1,0],[-1,-2],[-10,-24],[0,-6],[0,-1],[8,-23],[2,-36],[-1,-3],[-17,-29],[-1,-1],[-2,-3],[-3,0],[-8,-1],[-6,2],[-3,2],[-2,9],[-2,3],[-2,0],[-3,-1],[-15,0],[-5,-1],[-4,-2],[-2,-3],[0,-4],[2,-3],[5,-5],[1,-3],[0,-1],[3,-9],[0,-2],[-1,-2],[-5,0],[-19,7],[-35,12],[-2,3],[0,2],[-22,10],[-37,29],[-36,11],[-23,17],[-17,-2],[-4,-2],[-5,-4],[-21,-19],[-7,-5],[-20,-13],[-18,-12],[-22,-11],[-27,-1],[-1,2],[-28,6],[-1,0],[-68,4],[-2,0],[-8,2],[-5,1],[-1,0],[0,1],[-1,2],[-4,4],[-9,3],[-10,4],[-17,2],[-5,2],[-59,48],[-4,5],[-3,34],[0,9],[1,1],[3,6],[0,5],[-5,27],[-4,6],[-6,4],[-6,-2]],[[91289,69693],[-5,2],[0,6],[5,50],[-1,6],[-2,2],[-16,4],[-1,0],[-23,2],[-18,20],[-4,4],[2,4],[6,10],[0,1],[-5,16],[-5,6],[-7,3],[-13,4],[-7,-1],[-6,-3],[-9,-1],[-8,2],[-28,10],[-7,2],[-22,14],[-1,3],[0,27],[6,19],[6,6],[1,5],[-1,4],[-21,16],[-2,1],[-10,-2],[-4,-4],[-26,-5],[-1,0],[-24,-2],[-20,24],[-17,31],[-3,9],[-6,45],[0,25],[8,8],[1,3],[1,5],[-1,4],[-3,9],[-4,8],[-6,6],[-3,0],[-5,-1],[-5,-6],[-1,-3],[-1,0],[-7,-18],[0,-7],[2,-8],[-1,-2],[-3,-3],[-1,-1],[-5,1],[-4,2],[-5,4],[-1,1],[-5,8],[-5,11],[-4,8],[-4,8],[-20,38],[-5,0],[-8,-2],[-1,-3],[-1,-3],[3,-4],[6,-5],[0,-4],[-19,-12],[-33,-19],[-5,-16],[-3,0],[-22,25],[0,1],[-3,3],[-5,3],[-20,-3],[-3,-2],[-2,-2],[0,-1],[0,-8],[3,-5],[7,-12],[1,-3],[-3,-7],[-2,-2],[-21,-6],[-45,6],[-22,10],[-12,6],[-13,25],[-1,4],[0,1],[0,22],[1,9],[-18,12],[-3,-1],[-13,-1],[-4,1],[-4,2],[-1,2],[-8,63],[-4,18],[-5,16],[-3,0],[-4,0],[-1,0],[-12,6],[-6,4],[0,1],[-3,5],[-5,4],[-1,0],[-5,4],[-3,1],[-3,-1],[-7,-9]],[[90575,73763],[30,-14],[11,-11],[18,-48],[15,-29],[13,-7],[60,-3],[21,-12],[7,-1],[27,-6],[20,101],[-14,31],[-7,9],[-47,12],[-7,45],[6,44],[19,-7],[46,-26],[89,-8],[49,-37],[-17,-33],[-13,-48],[-44,-6],[-23,-86],[23,4],[31,-3],[29,-6],[12,-5],[18,-6],[21,-4],[4,0],[9,-1],[28,-9],[29,-3],[55,32],[14,15],[13,18],[1,0],[11,5],[22,16],[7,4],[14,5],[18,-3],[32,-15],[16,-8],[12,-18],[55,-60],[10,-13],[7,-16],[-1,-70],[6,-13],[1,-2],[15,-18],[29,-17],[14,0],[5,2],[10,-1],[26,3],[14,8],[11,10],[9,15],[8,18],[5,28],[14,53],[13,2],[9,-2],[7,4],[9,-3],[22,-7],[13,-11],[9,-14],[12,-27],[6,-15],[5,-16],[2,-17],[6,-13],[17,-18],[15,-20],[25,-20],[22,-3],[7,-1],[23,0],[11,5],[17,15],[10,29],[0,21],[-2,22],[4,10],[8,7],[2,14],[-2,17],[-20,49],[-1,10],[6,13],[13,8],[10,0],[12,-1],[3,-3],[5,-4],[2,-3],[4,-4],[4,-5],[5,-8],[4,-10],[1,-3],[14,-15],[2,0],[12,-13],[5,-12],[-1,-17],[-11,-20],[14,-20],[1,-15],[-11,-33],[22,-7],[8,2],[9,5],[30,15],[9,3],[15,3],[23,5],[14,1],[11,-3],[8,-4],[5,-10],[0,-13],[-10,-19],[-17,-18],[-13,-6],[-20,-5],[-19,-3],[-36,-12],[-21,-18],[-16,-18],[-33,-33],[-22,-26],[-24,-34],[11,-10],[11,-13],[11,-9],[24,-7],[12,2],[32,22],[28,28],[30,50],[5,9],[23,28],[15,15],[36,23],[21,8],[20,5],[15,3],[21,-1],[10,-1],[15,-10],[7,-7],[27,-33],[2,-5],[-1,-43],[-5,-23],[-6,-9],[-10,-11],[-4,-4],[-10,-10],[-28,-8],[-22,-9],[-70,-39],[-45,-27],[-8,-7],[-4,-4],[-14,-22],[0,-11],[4,-19],[13,-21],[28,-9],[18,-1],[45,5],[1,0],[0,13],[12,13],[21,12],[18,8],[25,14],[53,39],[52,22],[12,5],[34,8],[29,-1],[20,-12],[16,-21],[-19,-25],[-49,-39],[-22,-20],[-24,-17],[-12,-16],[-4,-26],[9,-20],[46,-40],[37,-1],[20,11],[8,10],[15,49],[-8,23],[-9,35],[20,33],[36,-79],[17,-21],[17,-11],[28,-5],[18,8],[16,17],[10,6],[32,3],[24,8],[19,15],[11,25],[-7,28],[-22,34],[11,14],[11,-1],[19,4],[5,1],[21,6],[14,3],[28,5],[103,3],[2,-1],[11,32],[6,9],[18,12],[29,-4],[47,-20],[13,-20],[0,-21],[-9,-27],[-5,-11],[-52,-13],[-5,-1],[-26,-6],[-18,-9],[8,-21],[-2,-22],[1,-11],[5,-8],[18,-10],[34,-7],[0,-1],[-1,-4],[0,-27],[-2,-30],[0,-2],[-5,-8],[-28,-20],[-15,-11],[1,-1],[-1,-2],[-2,-5],[-4,-5],[-9,-10],[-2,-1],[-3,1],[-4,1],[-3,0],[-6,-3],[-13,-10],[-5,-5],[-12,-17],[-9,-2],[-7,-6],[-2,-19],[5,-10],[16,-17],[5,-2],[0,-4],[-1,-2],[-7,-15],[11,-7],[4,3],[7,3],[7,1],[11,4],[12,6],[19,15],[8,3],[6,-1],[-6,-18],[8,-12],[5,-7],[3,-11],[12,-21],[12,-11],[11,-5],[19,-4],[40,2],[6,1],[1,0],[21,13],[13,5],[6,2],[10,-3],[26,-12],[22,-6],[19,-17],[7,-17],[17,-29],[16,-26],[0,-2],[2,-10],[7,-12],[12,-13],[4,-4],[26,-22],[15,-17],[12,-16],[7,-8],[7,-6],[11,-8],[12,-3],[32,-1],[8,4],[29,17],[15,15],[6,7],[3,3],[28,38],[37,38],[25,14],[26,-23],[12,-34],[3,-23],[-10,-36],[-8,-17],[-18,-18],[-42,-14],[-22,-3],[-11,0],[-14,11],[-8,-1],[-5,-10],[-20,-7],[-15,-14],[-7,-21],[-1,-11],[14,-26],[6,-9],[1,-14],[4,-12],[11,-12],[16,-9],[26,-8],[10,-22],[17,-20],[7,-4],[19,-2],[20,-7],[36,2],[27,2],[21,11],[23,-4],[13,-3],[28,-1],[15,-8],[10,-7],[23,0],[16,7],[18,17],[26,35],[6,25],[-12,24],[-25,48],[-4,12],[4,13],[21,51],[6,6],[24,21],[23,16],[7,3],[28,-2],[10,-2],[9,-6],[13,-14],[13,-29],[6,-29],[1,-30],[12,-68],[20,-23],[4,-5],[12,-9],[24,-10],[22,0],[17,4],[6,3],[26,16],[17,14],[19,19],[4,4],[10,13],[12,20],[3,9],[1,37],[-5,22],[-1,2],[10,29],[19,43],[16,23],[26,28],[25,19],[19,9],[29,0],[14,-2],[7,-9],[11,-26],[1,-36],[-9,-13],[-18,-14],[-41,-31],[-2,-21],[-6,-15],[-6,-5],[-3,-6],[0,-16],[2,-10],[7,-16],[21,-19],[15,-4],[63,-1],[16,5],[11,10],[43,76],[9,17],[8,25],[4,24],[3,16],[12,40],[22,31],[12,10],[108,73],[26,7],[25,0],[11,-3],[12,-14],[4,-16],[3,-19],[3,-39],[0,-16],[-4,-19],[-16,-28],[-13,-12],[-22,-18],[-19,-10],[-7,-7],[-12,-20],[-7,-12],[-1,-19],[13,-25],[8,-19],[2,-14],[0,-15],[-4,-18],[0,-15],[6,-8],[19,-6],[10,0],[23,7],[9,2],[29,5],[2,0],[62,19],[14,8],[36,22],[12,12],[1,11],[16,15],[-4,79],[-14,27],[-15,38],[-1,20],[10,10],[10,8],[5,5],[4,2],[4,1],[10,2],[67,-32],[16,-1],[19,5],[21,9],[14,14],[5,10],[1,1],[5,11],[19,24],[112,10],[76,7],[56,3],[4,1],[1,-5],[3,-42],[-22,-59],[-19,-51],[0,-51],[38,-31],[7,-6],[57,25],[56,1],[27,0],[37,1],[51,1],[47,2],[61,0],[30,11],[28,14],[3,1],[13,5],[18,16],[9,6],[17,10],[64,15],[6,0],[44,4],[36,-17],[87,-49],[20,-1],[16,-16],[31,-20],[5,-1],[2,-35],[-18,-11],[-7,-5],[-10,-1],[-14,5],[-20,8],[-8,4],[-10,0],[-23,-7],[-9,-7],[-13,-16],[0,-14],[11,-19],[17,-4],[19,-13],[15,-12],[11,-3],[7,4],[9,-4],[5,-8],[26,4],[28,11],[19,10],[8,-10],[12,-3],[15,4],[13,-1],[5,2],[12,5],[0,-13],[0,-378],[1,-379],[0,-90],[0,-303],[0,-86],[0,-27],[1,-285],[0,-316],[1,-759]],[[86308,70717],[-8,-3],[-6,-5],[-1,-20]],[[86293,70689],[-10,-9],[-9,-4],[-9,-2],[-10,-2],[-8,1],[-8,-2],[3,-3],[3,-4],[11,-7],[3,-11],[-2,-23],[-21,-1],[-15,4],[-14,-7],[-13,-2],[-7,-1],[-2,0],[-19,-12],[-5,-3],[-9,-5],[-19,-4],[-31,-11],[-15,-3],[-16,-3],[-13,-1],[-30,-3],[-30,1],[-27,-7],[-8,9],[-15,16],[-11,15],[-9,1],[-28,10],[-10,-7],[-32,13],[-18,13],[-25,-4],[-18,-4],[-16,-3],[-10,-1],[-19,-5],[-13,-3],[-28,-7],[-20,14],[-23,1],[-25,1],[-28,2],[-31,25],[-36,-5],[-11,-5],[-24,-10],[-15,12],[-18,8],[-46,-10],[-35,-14],[-14,-4],[-23,-7],[-7,-7],[-15,-13],[-14,-5],[-34,1],[-23,3],[-9,0],[-16,0],[-33,11],[-20,11],[-12,6],[-9,4],[-5,-11],[-10,-11],[-6,-8],[2,-13],[3,-14],[-12,-11],[-8,-1],[-4,-10],[-1,-14],[-8,-4],[-12,2],[-7,-4],[-2,-10],[-7,3],[-9,2],[-9,2],[-9,2],[-7,-6],[-10,-3],[-6,-6],[3,-10],[-6,-7],[-9,0],[-8,6],[-5,8],[-9,5],[-8,-5],[-2,-10],[-5,-9],[4,-10],[-8,-5],[-5,-6],[-9,-4],[-9,-3],[-9,-4],[-7,-4],[-8,6],[-12,2],[-6,6],[3,10],[-4,9],[-10,-1],[-6,2],[-45,-15],[-3,-1],[-55,-18],[-5,-3],[-3,-3],[-1,-2],[-3,-10],[-29,10],[-1,1],[-16,-9],[-17,-19],[-5,0],[-19,-1],[-18,7],[-52,20],[-3,3],[-1,2],[-11,21],[-1,1],[-12,32],[0,1],[-42,31],[-2,-1],[-1,0],[-1,0],[-5,-1],[-2,0],[-10,2],[-4,3],[-11,10],[-1,1],[0,-1],[-1,-2],[-12,-11],[-8,-7],[-9,-7],[-11,-9],[-1,-1],[-3,-2],[-1,-1],[-2,0],[-4,-1],[-3,1],[-2,1],[-2,1],[-1,1],[-6,3],[-2,2],[-1,2],[3,4],[0,3],[0,2],[-1,1],[-1,1],[-2,1],[-2,0],[-15,-6],[-2,-1],[-2,-2],[0,-1],[0,-2],[-1,-27],[0,-2],[-33,-14],[-12,12],[-25,14],[-12,6],[-13,5],[-17,8],[-3,1],[-2,-1],[-1,-1],[-24,-16],[-7,-11],[-2,-2],[-9,-2],[-5,0],[-1,0],[-7,8],[-6,5],[-39,35],[-4,3],[-10,1],[-6,0],[-1,0],[-3,-1],[-11,-4],[-18,-8],[-10,-4],[-38,-17],[-10,-4],[-2,-2],[0,-2],[-5,-11],[-51,-42],[-4,0],[-2,3],[-4,8],[-1,1],[0,2],[-5,2],[-26,-8],[-2,0],[-4,-2],[-2,-1],[-30,-35],[-3,-3],[-4,-4],[0,-3],[0,-21],[0,-2],[1,-12],[5,-7],[0,-4],[-3,-6],[-37,-37],[-3,-3],[-21,-20],[-2,-2],[-18,-12],[-8,-6],[-7,-5],[-1,-1],[-1,-1],[-10,-7],[-4,-4],[-6,-5],[-20,-24],[-3,0],[-4,4],[-3,1],[-3,-1],[-33,-27],[-2,-3],[-15,-14],[-9,-15],[-1,-1],[-16,-50],[4,-9],[1,-4],[-3,-5],[-2,-3],[-21,-10],[-21,-8],[-10,1],[-17,3],[-10,6],[-10,5],[-44,-5],[-20,-12],[-10,-11],[-9,-10],[-12,-14],[-22,-25],[-4,-4],[-6,-5],[-8,-6],[-5,-1],[-11,1],[-2,0],[-26,-1],[-3,-1],[-10,-6],[-17,-9],[-15,5],[-3,10],[-14,12],[-21,-19],[-12,12],[-3,4],[0,4],[2,3],[0,1],[6,3],[2,2],[1,1],[-1,5],[-1,8],[-1,2],[-11,12],[-3,1],[-25,5],[-10,4],[-3,1],[-46,-10],[-23,-16],[-3,-4],[-1,-4],[-4,-19],[-17,-4],[-22,-5],[-32,-5],[-14,2],[-6,5],[-17,18],[-27,8],[-24,6],[-6,2],[-7,-2],[-2,-2],[0,-3],[3,-2],[7,-5],[2,-2],[0,-3],[-8,-15],[-2,-3],[-3,-2],[-4,1],[-5,1],[-2,2],[-14,11],[4,-11],[0,-1],[0,-2],[0,-2],[-3,-2],[-4,-1],[-13,4],[-1,0],[-19,5],[-2,0],[-13,-17],[-3,-4],[0,-2],[1,-3],[1,-1],[8,-2],[1,-2],[0,-2],[-1,-1],[-13,-13],[-10,-3],[-14,-3],[-3,0],[-15,2],[-1,3],[0,4],[2,4],[1,1],[0,3],[-2,1],[-1,1],[-22,-1],[-16,-9],[-5,-4],[-1,0],[-3,-3],[-2,-1],[-6,-1],[-1,0],[-6,1],[-8,1],[-2,0],[-1,0],[-4,3],[-2,-28],[8,-18],[3,-5],[1,-29],[-1,-1],[-1,-3],[-7,-8],[-9,-12],[-30,-2],[-14,-9],[-15,-8],[-14,-22],[-15,-23],[-19,-36],[-28,-46],[-11,-19],[-1,-23],[-1,-21],[0,-1],[-4,-19],[-4,-13],[-1,-2],[-5,-2],[-4,-1],[-26,-19],[-1,-1],[0,-3],[0,-1],[1,0],[0,-3],[0,-2],[-24,-23],[-3,-2],[-5,0],[-22,3],[-37,1],[-3,1],[-59,-21],[-12,-19],[-12,-18],[-3,-10],[-5,-20],[1,-1],[-1,-4],[-2,-2],[-55,-44],[-14,0],[-1,0],[-2,3],[-3,9],[-1,2],[-2,0],[-2,1],[-8,2],[-2,0],[-9,-2],[-1,-1],[-4,-2],[-14,-11],[-2,-11],[-1,-8],[-6,-16],[-1,-1],[-5,0],[-36,-2],[-11,4],[3,-7],[2,-5],[3,-4],[1,-4],[0,-3],[-2,-2],[-21,-9],[-3,-1],[-9,1],[-1,1],[0,4],[3,3],[3,5],[0,6],[0,2],[0,2],[-1,3],[-2,1],[-32,-4],[-15,-2],[-2,0],[-2,0],[-18,-7],[-2,-2],[-15,-25],[-1,-2],[1,-19],[2,-4],[1,-2],[1,0],[-1,-2],[-1,-7],[-8,-14],[-1,-3],[-2,-1],[-28,-8],[-2,-1],[-6,-1],[-23,-10],[-10,-5],[-11,-8],[-26,-21]],[[82083,69229],[0,21],[1,61],[0,12],[0,69],[1,20],[0,29],[0,15],[0,20],[0,16],[0,25],[0,24],[0,41],[1,69],[0,79],[0,10],[0,2],[0,43],[0,12],[2,55],[1,33],[2,34],[0,2],[0,10],[0,1],[1,9],[0,16],[0,18],[0,14],[0,10],[0,19],[0,18],[1,56],[0,10],[1,57],[0,21],[1,15],[0,31],[1,17],[0,14],[-1,18],[0,23],[2,80],[1,63],[1,52],[2,23],[1,12],[0,13],[0,16],[0,25],[0,21],[1,28],[0,12],[0,22],[-1,4],[0,8],[2,12],[-1,17],[0,10],[0,13],[1,10],[0,35],[0,11],[1,13],[0,16],[0,19],[1,15],[0,37],[0,31],[0,33],[1,28],[-1,27],[0,11]],[[66430,71240],[0,-13],[0,-62],[0,-29],[-1,-69],[0,-14],[0,-126],[0,-21],[-1,-46],[0,-16],[0,-83],[0,-40],[0,-12],[0,-20],[0,-15],[0,-81],[0,-47],[0,-20],[-1,-51],[0,-104],[-1,-59],[0,-10],[-1,-55],[0,-46],[0,-11],[0,-12],[0,-37],[-1,-37],[-1,-45],[0,-4],[0,-1],[0,-32],[1,-84],[-1,-11],[0,-59],[0,-56],[1,-15],[0,-15],[0,-11],[0,-28],[1,-39],[1,-57],[0,-34],[0,-12],[0,-18],[0,-27],[0,-47],[-1,-32],[0,-10],[0,-33],[0,-15],[0,-25],[-1,-12],[0,-15],[0,-45],[0,-15],[0,-19],[-1,-117],[-1,-86],[0,-14],[0,-11],[0,-37],[-1,-34],[0,-22],[0,-19],[0,-34],[-1,-57],[0,-22],[0,-22],[0,-12],[-1,-11],[0,-1],[0,-13],[0,-49],[0,-42],[-2,-72],[0,-13],[0,-53],[-1,-12],[0,-20],[0,-33],[0,-50],[0,-18],[0,-16],[0,-53],[-1,-21],[0,-27],[0,-40],[0,-15],[-1,-28],[0,-15],[0,-26],[0,-33],[-1,-36],[0,-34],[-1,-61],[0,-35],[0,-22],[0,-16],[-1,-39],[0,-22],[-1,-27],[0,-19],[0,-17],[0,-20],[0,-19],[0,-31],[0,-24],[-1,-10],[0,-12],[0,-16],[0,-20],[0,-18],[0,-14],[-1,-21],[0,-27],[0,-12],[-1,-77],[0,-35],[0,-17],[0,-10],[-1,-32],[0,-25],[0,-20],[-1,-17],[0,-11],[0,-64],[0,-11],[-1,-65]],[[66404,67184],[-31,0],[-30,1],[-52,1],[-23,1],[-40,0],[-25,1],[-37,1],[-25,0],[-25,1],[-31,1],[-44,1],[-8,0],[-8,0],[-11,0],[-58,1],[-9,0],[-32,1],[-9,0],[-10,0],[-35,1],[-56,2],[-23,0],[-66,1],[-85,1],[-30,1],[-34,0],[-66,1],[-89,2],[-8,0],[-24,0]],[[65380,67203],[-58,1],[-4,0],[-14,0],[-120,2],[-28,0],[-179,3],[-32,1],[-43,1],[-8,0],[-41,2],[-53,0],[-3,0],[-29,0],[-33,1],[-62,0],[-8,0],[-54,0],[-9,0],[-33,1],[-11,0],[-11,1],[-31,0],[-9,0],[-23,0],[-24,0],[-15,0],[-32,1],[-31,0],[-16,0],[-16,0],[-26,0],[-11,1],[-14,0],[-13,0],[-18,0],[-18,0],[-11,0],[-11,0],[-19,0],[-19,1],[-20,0],[-26,0],[-16,0],[-35,0],[-33,1],[-63,1],[-54,0],[-8,0],[-21,0],[-4,1],[-8,0],[-83,1],[-10,1],[-20,0],[-41,1],[-37,0],[-10,0],[-18,1],[-16,0],[-92,2],[-26,0],[-12,0],[-55,1],[-47,1],[-8,0],[-15,0],[-11,0],[-12,1],[-37,0],[-47,1],[-13,0],[-13,1],[-49,1],[-52,0],[-53,1],[-66,2],[-112,5],[-9,0],[-50,0],[-55,1],[-10,0],[-72,1],[-54,1],[-44,0],[-9,0],[-25,0],[-1,0],[-58,1]],[[62560,67246],[1,36],[1,72],[0,38],[0,18],[0,12],[1,43],[1,61],[1,153],[1,42],[0,19],[1,40],[0,12],[1,91],[0,56],[1,21],[0,11],[0,53],[1,22],[0,27],[0,26],[1,59],[1,67],[0,22],[0,21],[1,85],[1,49],[0,15],[0,22],[0,31],[1,42],[0,36],[0,31],[1,17],[1,30],[0,7],[2,108],[0,13],[1,28],[1,58],[1,20],[1,64],[1,45],[1,13],[1,41],[2,68],[2,105],[1,19],[0,14],[1,39],[0,16],[1,16],[1,29],[0,28],[1,13],[0,13],[1,38],[1,46],[1,34],[1,25],[2,40],[0,13],[0,13],[1,16],[0,18],[0,8],[0,16],[0,2],[2,50],[0,89],[0,13],[0,12],[0,50],[-1,44],[0,33],[0,10],[0,12],[0,15],[0,57],[0,95],[0,16],[0,75],[0,66],[1,42],[0,28],[0,15],[0,39],[0,34],[0,61],[0,17],[0,29],[0,21],[0,33],[0,16],[0,9],[2,31],[1,25],[0,21],[0,71],[-1,54],[0,13],[-1,25],[0,14]],[[70503,71208],[-2,-84],[-4,-125],[0,-31],[-2,-38],[-2,-41],[-1,-54],[-1,-40],[-4,-106],[0,-29],[-1,-11],[-1,-55],[-1,-18],[-1,-1],[-2,-56],[-1,-30],[-2,-77],[-5,-112],[0,-11],[-2,-90],[-1,-84],[-1,-10],[-1,-48],[0,-44],[-4,-75],[-7,-161],[-2,-80],[-1,-10],[-2,-40],[-1,-10],[0,-22],[-1,-12],[-5,-86],[-1,-25],[0,-12],[0,-1],[-1,-37],[0,-12],[0,-5],[-3,-111],[-2,-89],[0,-15],[-1,-26],[-1,-38],[0,-24],[-2,-69],[-1,-29],[-1,-59],[-2,-72],[-1,-49],[0,-2],[-1,-38],[-1,-16],[0,-13],[-2,-84],[-1,-59],[-1,-35],[0,-11],[-2,-66],[-1,-46],[0,-19],[-1,-16],[-1,-32],[-1,-46],[0,-16],[0,-11],[-1,-30],[0,-12],[0,-9],[-1,-14],[0,-31],[-1,-33],[-1,-25],[0,-20],[-1,-22],[-1,-45],[-1,-11],[-1,-25],[0,-15],[0,-18],[-1,-26],[-1,-59],[-2,-51],[-1,-36],[-1,-49],[-1,-41],[-2,-72],[-1,-42],[-1,-50],[-1,-32],[0,-13],[0,-13],[-1,-13],[0,-13],[0,-2],[-1,-34],[0,-4],[-1,-39],[-1,-42],[-2,-45],[-1,-63],[-1,-22],[-1,-49],[0,-41],[-1,-13],[0,-15],[-1,-65]],[[70386,67080],[-15,1],[-17,1],[-20,1],[-11,0],[-58,3],[-1,1],[-6,0],[-116,6],[-1,0],[-67,4],[-35,1],[-11,1],[-35,1],[-8,0],[-14,1],[-9,0],[-12,1],[-23,0],[-15,1],[-9,0],[-40,3],[-9,0],[-1,0],[-10,1],[-115,3],[-11,0],[-84,2],[-7,0],[-36,1],[-1,0],[-11,0],[-8,1],[-9,0],[-14,0],[-3,0],[-19,1],[-8,0],[-5,0],[-13,0],[-39,1],[-1,0],[-35,1],[-22,0],[-27,-1],[-28,0],[-28,0],[-42,1]],[[69277,67117],[-21,6],[-17,1],[-22,0],[-66,1],[-37,0],[-18,0],[-23,0],[-21,0],[-11,1],[-14,0],[-10,0],[-8,0],[-16,0],[-23,0],[-17,0],[-26,1],[-75,2],[-31,0],[-76,1],[-30,0],[-13,0],[-12,0],[-31,0],[-70,1],[-34,1],[-139,4],[-88,1],[-15,0],[-67,1],[-52,2],[-29,1],[-2,0],[-7,0],[-51,1],[-24,1],[-144,4],[-51,0],[-24,0],[-64,2],[-53,2],[-37,0],[-42,1],[-45,1],[-41,1],[-14,0],[-16,1],[-82,2],[-129,4],[-119,3],[-62,2],[-38,1],[-41,1],[-42,1],[-15,1],[-45,1],[-14,0],[-32,1],[-31,1],[-12,0],[-33,1],[-41,0],[-22,1],[-28,1],[-17,0],[-31,1],[-70,2],[-16,0],[-45,1],[-38,1],[-42,0],[-16,1],[-30,0],[-44,2],[-11,0]],[[74683,70974],[-2,-50],[0,-45],[-2,-47],[0,-23],[0,-10],[0,-10],[-1,-32],[-1,-24],[1,-19],[1,-22],[-1,-18],[-1,-13],[-2,-36],[-3,-121],[0,-5],[0,-7],[0,-26],[-1,-44],[-1,-31],[-1,-42],[-2,-79],[0,-17],[0,-10],[-1,-29],[0,-24],[-2,-89],[-1,-14],[0,-11],[0,-15],[0,-11],[-1,-10],[-1,-28],[0,-32],[-1,-13],[-1,-20],[1,-19],[0,-20],[-1,-17],[-1,-56],[0,-25],[-1,-19],[0,-11],[0,-10],[0,-18],[0,-25],[0,-16],[-2,-58],[0,-16],[0,-9],[-1,-21],[0,-17],[0,-16],[-1,-16],[0,-17],[0,-12],[-1,-13],[0,-10],[0,-11],[-1,-13],[0,-10],[0,-18],[0,-22],[-2,-84],[0,-14],[-3,-104],[0,-2],[-1,-23],[0,-21],[-2,-44],[-1,-29],[0,-11],[-1,-34],[0,-12],[-1,-15],[-1,-26],[0,-62],[-2,-67],[-1,-43],[0,-26],[0,-68],[-1,-89],[-1,-21],[0,-19],[0,-14],[-2,-60],[-1,-38],[-2,-109],[0,-21],[-1,-10],[0,-8],[0,-12],[0,-13],[-1,-12],[0,-10],[0,-10],[0,-12],[-1,-11],[0,-12],[0,-16],[0,-11],[0,-20],[0,-11],[0,-12],[0,-11],[0,-12],[-1,-30],[0,-25],[0,-20],[0,-16],[0,-11],[-1,-21],[0,-12],[0,-18],[-1,-23],[0,-15],[0,-5],[-1,-26],[0,-14],[-1,-13],[0,-9],[0,-11],[-1,-10],[0,-11],[0,-14],[0,-10],[0,-11],[0,-10],[-1,-17],[0,-14],[0,-17],[0,-13],[0,-9],[0,-10],[0,-13],[-1,-22],[0,-17],[-1,-13],[0,-11],[0,-12],[-1,-13],[0,-9],[0,-12],[0,-12],[0,-11],[0,-11],[-1,-23],[0,-9],[0,-10],[0,-12],[-1,-14],[0,-40],[0,-24],[-1,-11],[-1,-9],[0,-16],[0,-17],[0,-14],[0,-18],[-1,-16],[0,-17],[0,-10],[0,-3],[-1,-11],[-1,-12],[0,-10],[0,-10],[0,-1],[0,-10],[-1,-12],[0,-14],[0,-12],[0,-15],[0,-12],[0,-11],[0,-21],[-1,-12],[0,-10],[0,-15],[0,-12],[0,-12],[0,-10],[0,-14],[0,-11],[0,-9],[0,-10],[0,-18]],[[74607,67055],[-25,0],[-32,1],[-25,1],[-18,0],[-10,0],[-9,1],[-13,-1],[-13,1],[-8,-1],[-12,1],[-3,0],[-9,0],[-9,0],[-47,1],[-4,0],[-4,0],[-8,0],[-21,0],[-35,0],[-14,0],[-13,0],[-10,0],[-12,0],[-19,1],[-8,0],[-12,0],[-21,0],[-10,1],[-8,0],[-19,0],[-28,1],[-22,0],[-26,0],[-18,1],[-15,0],[-15,0],[-49,1],[-8,0],[-9,0],[-13,1],[-11,0],[-14,0],[-38,2],[-8,0],[-5,0],[-5,0],[-8,0],[-29,0],[-86,1],[-11,1],[-10,0],[-22,0],[-14,0],[-15,0],[-8,0],[-10,1],[-11,0],[-28,0],[-9,0],[-8,0],[-27,0],[-5,1],[-5,0],[-9,0],[-46,0],[-17,0],[-23,1],[-39,0],[-21,0],[-5,0],[-7,0],[-48,0],[-7,0],[-3,0],[-7,0],[-31,0],[-8,0],[-11,0],[-7,0],[-1,0],[-10,0],[-12,0],[-8,0],[-20,0],[-22,0],[-14,-1],[-17,1],[0,-25],[0,-19]],[[73173,67028],[-62,-1],[-2,0],[-9,-1],[-35,0],[-10,0],[-127,1],[-18,0],[-11,0],[-6,0],[-23,0],[-40,1],[-46,0],[-41,0],[-5,0],[-48,1],[-18,0],[-27,0],[-23,0],[-16,1],[-15,0],[-11,0],[-38,1],[-2,0],[-22,1],[-13,0],[-9,0],[-14,-1],[-7,0],[-8,0],[-8,0],[-9,0],[-8,0],[-7,0],[-13,0],[-21,1],[-21,1],[-11,1],[-9,0],[-12,0],[-13,0],[-25,0],[-8,0],[-13,0],[-9,1],[-9,0],[-15,0],[-19,0],[-12,0],[-19,0],[-23,1],[-18,-1],[-16,0],[-13,1],[-11,0],[-2,0],[-6,0],[-40,1],[-30,1],[-19,0],[-17,1],[-10,0],[-31,1],[-18,0],[-8,1],[-22,0],[-17,1],[-38,1],[-52,2],[-50,1],[-44,1],[-14,0],[-23,0],[-10,0],[-2,0],[-10,0],[-37,2],[-5,0],[-4,0],[-8,0],[-16,1],[-57,2],[-31,1],[-9,0],[-11,1],[-20,1],[-31,1],[-21,0],[-13,0],[-42,2],[-18,0],[-20,1],[-18,0],[-21,1],[-11,0],[-10,0],[-10,1],[-19,0],[-18,0],[-8,1],[-13,0],[-62,1],[-4,0],[-8,0],[-28,1],[-30,1],[-16,0],[-17,0],[-16,1],[-40,0],[-17,1],[-31,0],[-3,0],[-13,1],[-9,0],[-48,1],[-89,-2],[-20,0],[-12,1],[-8,0],[-11,0],[-9,1],[-8,0],[-11,0],[-17,1],[-14,0],[-59,2],[-51,2],[-10,0],[-15,1],[-8,0],[-18,1],[-15,1],[-12,0],[-10,0],[-21,1],[-23,1],[-12,0],[-10,1]],[[82077,66980],[-43,-1],[-32,-1],[-22,1],[-55,1],[-109,0],[-10,2],[-42,-1],[-140,1],[-11,0],[-1,0],[-12,0],[-44,1],[-33,0],[-35,1],[-5,0],[-36,-1],[-9,-31],[-6,-22],[-8,-28],[-15,-52],[-6,-23],[-20,-69],[-21,-73],[-6,-21],[-31,-111],[-14,-52],[-4,-14],[-14,-46],[-6,-20],[-9,-32],[-4,-15],[-3,-14],[-15,-52],[-18,-60],[0,-10],[-5,-10],[6,-7],[-6,-9],[-8,-3],[1,-15],[-4,-8],[-9,-1],[-10,-9],[-1,-13],[8,-8],[-7,-8],[4,-12],[-3,-10],[-4,-13],[-8,-9],[-7,4],[-15,-5],[-7,-3],[-5,-10],[4,-15],[0,-11],[-7,-5],[-23,-15],[5,-20],[-8,-18],[5,-11],[-2,-9],[5,-9],[9,-2],[6,-6],[8,-7],[3,-9],[8,-2],[4,-9],[8,-5],[-1,-13],[11,-8],[5,-9],[25,-21],[4,-10],[8,-2],[8,-6],[8,-3],[3,-10],[-2,-9],[7,-5],[9,2],[6,-12],[-5,-8],[11,-7],[7,-11],[10,1],[9,-1],[18,-17],[4,-9],[13,-4],[7,-12],[-1,-1],[-2,-8],[6,-9],[-1,-12],[7,-6],[9,-8],[12,4],[9,2],[10,2],[6,-9],[9,2],[5,-15],[4,-10],[11,7],[7,8],[-1,3],[0,6],[11,-2],[7,4],[6,-7],[2,-10],[-1,-8],[0,-3],[6,-6],[5,2],[3,1],[2,-4],[1,-5],[3,1],[6,4],[8,9],[5,5],[7,-10],[0,-9],[1,-1],[1,0],[9,-2],[7,-11],[-1,-3],[-3,-10],[7,-8]],[[81530,65645],[-5,0],[-40,1],[-15,0],[-260,3],[-7,0],[-5,0],[-8,0],[-22,1],[-29,0],[-17,0],[-9,1],[-10,-1],[-11,1],[-19,0],[-22,0],[-20,1],[-1,0],[-1,0],[-55,0],[-47,1],[-9,0],[-31,0],[-39,1],[-17,0],[-20,0],[-35,1],[-133,1],[-19,0],[-30,0],[-35,1],[-4,0],[-9,0],[-2,0],[-5,0],[-18,0],[-32,0],[-43,0]],[[80446,65657],[-13,1],[-10,0],[-13,0],[-14,1],[-14,0],[-34,1],[-15,0],[-10,0],[-10,0],[-14,1],[-16,0],[-20,0],[-20,1],[-29,0],[-48,1],[-15,0],[-10,0],[-63,2],[-13,0],[-29,1],[-24,1],[-30,0],[-26,1],[-12,0],[-9,1],[-99,2],[-20,0],[-29,1],[-12,0],[-19,0],[-1,0],[-47,1],[-29,1],[-72,1],[-30,1],[-27,0],[-33,1],[-12,0],[-21,1],[-22,0],[-108,1],[-43,2],[-49,1],[-18,0],[-121,-2],[-20,0],[-8,1],[-11,0],[-36,0],[-13,1],[-22,0],[-39,1],[-41,1],[-26,1],[-31,1],[-34,0],[-35,1],[-10,0],[-29,0]],[[78768,65687],[0,64],[0,15],[0,76],[0,63],[-1,20],[1,50],[0,18],[0,10],[0,20],[1,57],[0,13],[0,27],[0,36],[0,19],[0,15],[0,25],[0,22],[-1,16],[0,59],[0,15],[0,2],[0,36],[0,18],[0,69],[0,11],[0,91],[0,66],[0,12],[0,52],[0,38],[0,77],[0,44],[0,17],[0,23],[0,20],[0,54],[0,37],[0,7]],[[78768,67001],[2,62],[0,14],[0,23],[0,33],[1,43],[0,11],[1,25],[0,5],[0,67],[0,74],[0,35],[0,29],[0,35],[1,48],[0,35],[0,11],[0,60],[0,17],[1,27],[0,27],[0,27],[0,27],[0,12],[0,10],[0,27],[1,32],[1,32],[0,15],[0,15],[0,12],[0,13],[0,99],[0,77],[0,14],[0,14],[1,20],[0,34],[0,36],[0,88],[0,24],[-1,57],[1,32],[1,24],[0,16],[0,47],[0,19],[0,13],[1,16],[0,17],[0,10],[0,15],[0,26],[1,12],[0,1],[0,26],[0,24],[0,33],[1,46],[0,15],[0,75],[1,94],[0,36],[0,14],[0,64],[0,22],[1,41],[0,20],[1,18],[0,21],[1,34],[0,15],[-1,14],[-1,72],[-1,29],[1,29],[0,37],[0,13],[0,42],[2,15],[0,13],[0,19],[0,21],[-1,27],[0,57],[-1,102],[0,112],[0,28],[0,53],[0,19],[0,18],[0,10],[0,27],[0,29],[0,32],[0,16],[0,63],[-1,122],[0,57],[0,71],[0,15],[0,97]],[[82083,69229],[0,-2],[0,-13],[0,-14],[-1,-22],[0,-15],[0,-34],[0,-12],[-1,-52],[0,-30],[0,-12],[0,-10],[-1,-63],[0,-51],[0,-16],[-1,-60],[0,-20],[-1,-83],[0,-25],[0,-42],[-1,-22],[1,-13],[-1,-24],[0,-34],[0,-30],[-1,-95],[0,-18],[0,-1],[-1,-27],[0,-4],[0,-40],[0,-126],[0,-116],[-1,-99],[0,-200],[-1,-15],[0,-29],[0,-60],[-2,-29],[0,-31],[0,-16],[0,-29],[0,-56],[0,-61],[0,-57],[0,-72],[0,-83],[0,-93],[3,-50],[2,-96],[1,-47]],[[78768,67001],[-11,0],[-20,0],[-11,-2],[-10,0],[-38,0],[-33,0],[-2,0],[-30,1],[-10,0],[-16,0],[-4,0],[-9,1],[-5,0],[-3,-1],[-11,0],[-10,0],[-13,1],[-11,0],[-11,0],[-12,0],[-11,0],[-9,0],[-9,0],[-8,1],[-32,1],[-75,0],[-44,0],[-32,0],[-31,1],[-38,0],[-11,0],[-29,0],[-28,0],[-28,0],[-21,0],[-10,1],[-10,0],[-21,0],[-10,0],[-13,0],[-10,0],[-9,-3],[-8,0],[-61,0],[-19,0],[-10,0],[-12,1],[-14,0],[-40,0],[-12,0],[-13,0],[-42,1],[-12,0],[-10,0],[-16,0],[-8,0],[-15,0],[-20,0],[-12,0],[-26,0],[-8,0],[-35,-1],[-37,0],[-9,0],[-66,0],[-10,0],[-15,0],[-5,0],[-62,-1],[-16,0],[-8,0],[-19,0],[-12,0],[-33,0],[-21,0],[-1,0],[-13,0],[-22,0],[-44,0],[-22,-1],[-3,1],[-9,0],[-11,1],[-12,1],[-12,0],[-12,1],[-9,0],[-16,0],[-20,1]],[[77097,67006],[-23,1],[-11,0],[-10,0],[-25,1],[-11,0],[-13,0],[-17,1],[-19,0],[-8,0],[-8,0],[-29,1],[-82,2],[-41,1],[-11,0],[-14,0],[-7,0],[-2,1],[-8,0],[-15,0],[-13,0],[-8,1],[-9,0],[-10,0],[-22,1],[-27,0],[-10,0],[-10,1],[-11,0],[-11,0],[-15,0],[-7,1],[-9,0],[-23,0],[-8,0],[-33,1],[-17,1],[-8,0],[-28,0],[-8,0],[-8,1],[-11,0],[-8,0],[-8,0],[-10,0],[-11,1],[-8,0],[-11,0],[-21,0],[-10,0],[-29,1],[-9,0],[-8,0],[-9,0],[-11,1],[-9,0],[-22,0],[-6,0],[-13,0],[-14,0],[-8,1],[-8,0],[-36,1],[-14,0],[-8,0],[-9,0],[-16,1],[-9,0],[-12,1],[-29,1],[-68,3],[-8,0],[-28,1],[-3,0],[-5,0],[-8,0],[-12,0],[-8,0],[-14,0],[-9,0],[-8,1],[-10,0],[-9,0],[-17,0],[-13,0],[-15,0],[-14,0],[-11,0],[-17,0],[-11,0],[-1,0],[-11,0],[-13,0],[-8,0],[-8,1],[-9,0],[-10,0],[-19,0],[-16,1],[-17,0],[-10,0],[-22,1],[-2,0],[-16,1],[-2,0],[-6,0],[-40,1],[-8,0],[-8,0],[-12,0],[-19,0],[-13,1],[-9,0],[-7,0],[-15,0],[-9,0],[-14,1],[-11,0],[-20,0],[-13,1],[-9,0],[-22,0],[-13,0],[-9,1],[-9,0],[-11,0],[-13,0],[-15,0],[-10,1],[-12,0],[-9,0],[-10,0],[-19,1],[-22,0],[-49,0],[-40,1],[-39,1],[-24,0],[-15,0],[-1,0],[-7,1],[-12,0],[-15,0],[-24,0],[-9,1],[-9,0],[-10,0],[-17,0],[-11,0],[-8,0],[-24,1],[-7,0],[-12,0],[-9,0],[-55,1],[-5,0],[-5,0],[-15,1],[-13,0],[-8,0],[-10,0],[-11,0],[-31,1],[-15,0],[-9,1],[-14,0],[-19,0],[-10,0],[-8,0],[-11,1],[-8,0],[-8,0],[-16,0],[-12,0]],[[46645,70903],[0,-10],[0,-48],[0,-66],[0,-72],[0,-18],[1,-76],[1,-76],[0,-12],[0,-262],[0,-50],[0,-174],[0,-45],[0,-65],[1,-85],[0,-83],[-1,-20],[1,-139],[0,-23],[0,-62],[0,-103],[0,-87],[0,-36],[0,-70],[0,-1],[-3,-347],[0,-90],[0,-117],[0,-63],[0,-22],[-1,-40],[0,-29],[0,-54],[0,-4],[0,-58],[0,-51],[0,-167],[0,-67],[0,-22],[0,-11],[0,-109],[-1,-102],[-3,-202],[0,-64],[0,-16],[-1,-66],[0,-107],[0,-9],[0,-98],[0,-48],[1,-66],[0,-18],[-7,-61],[0,-58],[-1,-178],[0,-52]],[[46632,66824],[-9,0],[-46,0],[-3,0],[-51,0],[-21,0],[-85,0],[-27,0],[-122,0],[-143,0],[-50,0],[-15,0],[-11,0],[-200,0],[-26,0],[-12,1],[-54,1],[-166,3]],[[45591,66829],[-122,3],[-22,0],[-96,2],[-67,0],[-83,0],[-61,-1],[-162,0],[-106,2],[-91,0],[-17,0],[-123,0],[-280,1],[-78,0],[-21,0],[-20,0],[-38,0],[-67,1],[-46,0],[-14,0],[-39,0],[-19,0],[-99,2],[-36,0],[-31,1],[-11,0],[-33,1],[-16,1],[-14,0],[-26,0],[-60,0],[-4,0],[-41,0],[-88,0],[-125,1],[-63,0],[-21,0],[-49,0],[-133,0],[-122,1],[-78,11],[-27,6],[-151,29],[-75,2],[-38,1]],[[42678,66893],[1,38],[0,67],[0,21],[0,10],[0,112],[0,32],[0,116],[0,52],[0,74],[0,20],[0,41],[0,36],[-1,81],[0,46],[0,30],[0,19],[0,18],[0,26],[0,18],[0,15],[0,56],[0,1],[0,55],[0,10],[0,63],[0,103],[0,47],[0,18],[0,94],[1,133],[0,13],[0,22],[0,40],[0,19],[0,13],[-1,30],[0,29],[0,13],[0,14],[0,1],[0,21],[0,279],[0,1],[0,130],[0,82],[-1,189],[0,42],[0,37],[0,27],[0,165],[-1,25],[0,1],[0,101],[0,167],[0,54],[0,34],[0,27],[0,95],[0,23],[0,112],[0,106],[0,99],[0,74],[0,34],[0,69],[0,26],[0,37],[0,11],[1,82],[0,55],[0,91],[0,62]],[[50652,70898],[1,-55],[1,-55],[0,-49],[0,-50],[0,-19],[-4,-90],[0,-17],[1,-36],[1,-87],[1,-72],[0,-52],[2,-106],[1,-96],[2,-107],[0,-44],[1,-28],[0,-13],[1,-81],[1,-97],[1,-65],[0,-15],[2,-113],[0,-34],[0,-30],[0,-60],[0,-57],[1,-17],[-1,-14],[0,-66],[0,-9],[0,-51],[0,-42],[1,-64],[0,-140],[0,-111],[0,-4],[0,-16],[0,-24],[0,-3],[0,-55],[0,-131],[0,-52],[0,-172],[0,-12],[0,-34],[-3,-117],[0,-48],[1,-164],[0,-70],[1,-95],[0,-68],[1,-182],[0,-71],[1,-261],[1,-57],[0,-47],[1,-123],[-1,-16],[1,-12],[0,-128],[0,-22],[1,-74]],[[50669,66798],[-54,0],[-1,0],[-10,0],[-11,0],[-12,0],[-122,1],[-11,0],[-14,0],[-24,0],[-182,-1],[-201,-1],[-131,-1],[-85,0],[-47,0],[-85,-1],[-50,0],[-50,0],[-80,1],[-13,0]],[[49486,66796],[-11,1],[-47,0],[-3,0],[-20,0],[-65,1],[-173,2],[-29,0],[-157,2],[-41,0],[-78,1],[-103,1],[-77,1],[-91,1],[-34,0],[-30,1],[-32,0],[-42,0],[-107,1],[-138,2],[-76,1],[-60,0],[-90,1],[-29,0],[-16,1],[-56,0],[-106,1],[-49,0],[-203,3],[-10,0],[-40,1],[-186,2],[-33,0],[-8,0],[-114,1],[-95,1],[-1,0],[-100,2],[-149,1],[-12,0],[-21,0],[-10,0],[-112,-1]],[[90098,70582],[-3,-179],[-1,-135],[-1,-60],[-2,-112],[-2,-71],[0,-22],[0,-10],[-1,-10],[0,-25],[0,-11],[-1,-70],[0,-11],[0,-30],[0,-10],[0,-2],[0,-14],[-1,-13],[0,-23],[0,-14],[-1,-11],[0,-12],[0,-7],[0,-5],[-2,-27],[-3,-181],[-1,-9],[0,-13],[-1,-36],[-1,-10],[-1,-26],[-1,-59],[-1,-37],[-1,-16],[0,-16],[-2,-53],[-1,-52],[-1,-30],[0,-15],[-1,-53],[-1,-52],[0,-28],[0,-11],[0,-10],[-1,-23],[0,-10],[-1,-4],[0,-12],[-1,-12],[0,-3],[0,-32],[0,-1],[-1,-44],[-1,-46],[0,-13],[-1,-9],[0,-21],[0,-15],[0,-10],[-1,-10],[0,-29],[-1,-50],[-1,-42],[0,-11],[-1,-15],[0,-25],[-1,-25],[0,-25],[-1,-24],[0,-23],[-2,-77],[-1,-33],[-1,-10],[-1,-9],[-1,-22],[0,-12],[-1,-17],[0,-15],[-1,-35],[0,-24],[-4,-98],[-2,-50],[0,-1],[0,-15],[-1,-15],[0,-10],[-2,-61],[-2,-86],[-2,-110],[-2,-111],[-1,-24],[0,-25],[0,-10],[-1,-24],[1,-13],[-1,-27],[0,-1],[-1,-18],[0,-8],[-1,-42],[-1,-33],[-1,-14],[0,-13],[-3,-98],[-4,-99],[0,-15],[-1,-38],[-1,-28],[0,-13],[-1,-19],[-1,-36],[-1,-37]],[[90014,67011],[-18,7],[-23,20],[-3,-2],[-5,-2],[-2,-2],[-17,7],[-3,1],[-28,14],[-16,14],[-2,2],[1,4],[4,4],[1,2],[-2,4],[-12,13],[-14,8],[-3,2],[-22,14],[-3,2],[-19,7],[-3,2],[-27,16],[-2,4],[-9,13],[-2,2],[-4,2],[-5,3],[-3,1],[-9,8],[-1,1],[-33,5],[-2,-1],[-3,0],[-4,3],[-8,16],[0,1],[-10,27],[12,15],[9,32],[0,3],[0,2],[-1,2],[-3,5],[-1,3],[-4,2],[0,1],[-7,2],[-8,3],[-5,-2],[-5,-2],[-7,-1],[-5,2],[-2,1],[-2,3],[-5,9],[0,1],[-11,-5],[-9,-4],[-13,-4],[-2,0],[-15,5],[-6,2],[-3,1],[-4,1],[-7,4],[-7,2],[-1,1],[-2,2],[-2,3],[-7,16],[-2,1],[-18,13],[-1,1],[-19,13],[-1,0],[-18,10],[-6,4],[-16,8],[-3,2],[-1,1],[-4,3],[-16,15],[-2,2],[0,4],[0,2],[2,2],[4,0],[4,1],[2,2],[1,3],[3,27],[0,1],[0,2],[-3,1],[-6,1],[-8,2],[-18,3],[-1,0],[-15,19],[-17,35],[-1,0],[-19,23],[-4,5],[-8,10],[-2,1],[0,7],[-1,1],[-1,1],[-22,13],[-4,3],[-5,3],[-6,3],[-11,7],[-1,0],[-25,-2],[-2,-1],[-1,0],[-11,0],[-1,0],[-4,1],[-7,1],[-9,4],[-8,7],[-29,48],[1,11],[1,1],[0,5],[0,1],[-2,9],[0,1],[-8,14],[-4,10],[-2,4],[0,1],[-4,12],[-1,7],[-7,27],[-1,3],[5,34],[3,11],[0,3],[-25,27],[-2,2],[-14,-2],[-8,4],[-14,6],[-8,3],[-50,22],[-4,2],[-3,4],[-1,2],[-2,-2],[-11,-5],[-2,0],[-22,2],[-2,0],[-8,-1],[-3,0],[-9,-1],[-3,0],[-2,0],[-6,-1],[-7,0],[-11,-2],[-13,-1],[-2,0],[-11,-4],[-25,-9],[-36,2],[-9,1],[-8,1],[-1,1],[-13,1],[-2,0],[-2,1],[-12,1],[-1,0],[-2,-1],[-15,-5],[-4,-1],[-8,3],[-7,4],[-13,6],[-3,2],[-7,11],[-1,2],[1,3],[-5,5],[0,1],[-5,6],[-2,1],[-7,0],[-3,-1],[-9,0],[-17,0],[-2,-8],[-1,-3],[-19,-23],[-3,-2],[-8,-2],[-5,-1],[-2,-1],[-27,3],[-10,1],[-5,0],[-18,12],[-9,5],[-11,7],[0,2],[-6,-1],[-7,-9],[-4,-3],[-4,-2],[-7,-9],[5,-10],[-15,-4],[-5,-8],[-10,0],[6,14],[-10,-1],[-10,2],[-9,4],[6,6],[-5,11],[-9,-4],[-1,11],[-17,2],[-2,-1],[-2,0],[-26,-5],[-27,-4],[-33,-6],[-1,0],[-29,-4],[-7,-2],[-3,-1],[-21,-6],[-17,-11],[-9,-6],[-11,-7],[-69,-45],[-25,-16],[-138,-89],[-63,-41],[-18,-11],[1,-6],[-8,-14],[-8,1],[-5,-7],[-15,-1],[-5,-9],[-4,-11],[-9,-4],[-7,-3],[-12,3],[-8,-3],[-7,-6],[-6,-9],[2,-13],[-11,-3],[-5,-8],[-7,-10],[-10,1],[-7,5],[0,-14],[-11,3],[-7,-3],[5,-7],[-1,-11],[-5,12],[-2,-10],[-7,6],[0,-12],[-9,0],[0,9],[-8,-3],[-6,-6],[2,-11],[-7,-7],[-7,9],[0,-11],[-11,-2],[-8,10],[0,-12],[-10,7],[-7,-16],[-6,7],[-12,-3],[-8,-8],[-10,1],[-6,9],[9,1],[7,8],[-8,2],[-6,7],[-7,4],[-7,5],[-9,-3],[-14,2],[-9,-2],[-1,5],[-39,-2]],[[87682,67496],[1,18],[0,17],[0,14],[0,12],[0,10],[0,14],[0,15],[1,12],[0,13],[0,13],[0,17],[0,4],[0,10],[0,4],[0,18],[0,18],[0,12],[0,6],[0,5],[0,29],[0,11],[0,10],[0,14],[0,10],[0,20],[0,2],[1,52],[0,45],[0,9],[0,29],[0,31],[0,35],[1,32],[0,35],[0,13],[0,20],[1,157],[0,21],[0,17],[0,12],[1,11],[0,28],[0,11],[1,80],[1,18],[0,2],[-1,20],[1,27],[0,24],[1,53],[0,11],[0,53],[1,9],[0,2],[0,30],[0,24],[0,1],[0,50],[0,1],[0,10],[0,9],[0,22],[0,41],[0,16],[0,13],[0,24],[0,9],[1,78],[0,10],[0,27],[0,60],[0,31],[0,23],[0,10],[0,12],[0,13],[0,19],[0,10],[0,28],[1,57],[0,10],[0,12],[0,22],[0,28],[1,82],[0,54],[0,66],[-1,104],[0,67],[0,14],[0,25],[-1,166],[0,9],[-1,129],[0,1],[0,26],[0,11],[0,98],[0,12],[0,20],[0,29],[0,21],[-1,118],[0,26],[0,25],[0,14],[-1,12],[0,16],[0,14],[0,14],[0,135],[-1,60],[0,1],[-1,74]],[[42678,66893],[-52,-4],[-114,-6],[-105,-7],[-60,-3],[-34,-2],[-13,-1],[-56,-3],[-10,-1],[-16,-1],[-9,0],[-11,-1],[-41,-3],[-15,0],[-128,-8],[-85,-6],[-127,-8],[-20,-1],[-34,-2],[-14,-1],[-33,-2],[-49,-3]],[[41652,66830],[-20,1],[-50,-1],[-115,-1],[-25,0],[-113,0],[-9,-1],[-89,0],[-30,0],[-103,0],[-32,0],[-11,-1],[-14,0],[-70,0],[-41,0],[-30,-1],[-64,-1],[-44,0],[-15,0],[-64,-1],[-33,0],[-101,-1],[-33,0],[-35,-1],[-37,0],[-57,-1],[-14,0],[-35,0],[-18,0],[-142,-1],[-71,0],[-23,-1],[-20,0],[-153,-1],[-139,-1],[-20,0],[-22,-1],[-155,-1],[-1,0],[-124,-2],[-28,0],[-24,0],[-57,-1],[-46,0],[-30,0],[-15,0],[-114,-1],[-102,-1],[-44,-1],[-36,0],[-29,0],[-93,-1],[-35,-1],[-39,0],[-33,-1],[-26,0]],[[38729,66806],[0,11],[0,147],[0,147],[0,62],[-1,180],[0,86],[0,50],[0,14],[0,39],[0,40],[0,89],[0,46],[0,22],[0,215],[0,1],[0,73],[0,44],[0,99],[1,140],[-1,34],[0,34],[0,70],[0,69],[0,71],[1,70],[0,70],[0,106],[0,3],[0,37],[0,136],[1,141],[0,82],[0,83],[1,43],[0,10],[0,63],[0,84],[1,61],[0,32],[0,40],[0,71],[0,92],[0,53],[0,10],[0,89],[1,37],[0,135],[0,18],[0,51],[0,68],[0,95],[0,41],[1,136],[0,4],[0,35],[0,77],[0,3],[0,8],[1,16],[-1,100],[-1,85]],[[58546,70900],[0,-47],[0,-53],[0,-23],[0,-24],[0,-4],[0,-60],[-1,-58],[1,-177],[0,-3],[0,-71],[0,-25],[1,-33],[0,-36],[1,-161],[0,-1],[0,-32],[0,-4],[0,-43],[0,-20],[0,-10],[0,-40],[1,-13],[0,-5],[0,-12],[0,-21],[0,-60],[0,-1],[0,-6],[0,-5],[1,-91],[0,-21],[0,-56],[0,-1],[1,-80],[0,-12],[0,-12],[0,-14],[0,-38],[1,-10],[-1,-21],[0,-11],[0,-62],[1,-48],[1,-47],[0,-54],[0,-59],[0,-35],[1,-36],[0,-101],[1,-47],[0,-10],[0,-67],[0,-15],[1,-12],[0,-4],[0,-149],[0,-31],[1,-10],[0,-104],[1,-56],[0,-64],[0,-20],[0,-45],[0,-19],[1,-45],[1,-88],[0,-16],[0,-9],[0,-20],[0,-31],[0,-26],[0,-9],[0,-10],[1,-19],[0,-9],[0,-21],[0,-21],[0,-34],[0,-34],[1,-84],[0,-16],[1,-109],[1,-103],[0,-21],[0,-18],[0,-25],[0,-24],[1,-115],[0,-24],[0,-40],[1,-39],[0,-56],[0,-18],[1,-39],[0,-11],[0,-21],[0,-21],[0,-11],[0,-20],[0,-10],[0,-36],[0,-10],[0,-55],[1,-54],[0,-75],[0,-40],[1,-35],[0,-45],[0,-10],[0,-4],[0,-19],[0,-22]],[[58569,66768],[-38,0],[-33,-1],[-19,0],[-58,0],[-11,0],[-13,0],[-94,-1],[-110,0],[-35,0],[-27,1],[-43,0],[-56,0],[-2,0],[-132,0],[-30,0],[-15,0],[-33,0],[-18,0],[-11,1],[-17,0],[-111,0],[-106,0],[-74,1],[-18,0]],[[57465,66769],[-9,0],[-14,0],[-138,0],[-22,0],[-41,-6],[-15,0],[-82,1],[-104,0],[-47,1],[-1,0],[-26,0],[-106,1],[-61,0],[-37,0],[-12,1],[-4,0],[-57,0],[-37,0],[-58,1],[-85,0],[-8,0],[-50,1],[-13,0],[-30,0],[-43,0],[-17,0],[-58,0],[-40,0],[-59,0],[-46,0],[-88,0],[-21,0],[-17,0],[-25,0],[-8,0],[-49,0],[-27,0],[-90,0],[-21,0],[-35,0],[-17,0],[-30,1],[-20,0],[-37,0],[-71,0],[-25,-1],[-55,0],[-22,0],[-70,0],[-29,0],[-50,-1],[-46,0],[-57,0],[-42,0],[-17,0],[-169,0],[-23,0],[-107,0],[-20,0],[-40,0],[-14,0],[-39,1],[-58,0],[-37,0],[-61,0]],[[54608,66769],[0,50],[0,36],[0,13],[0,76],[0,31],[0,21],[0,45],[-1,132],[0,11],[0,30],[0,89],[0,48],[0,17],[0,61],[0,16],[0,100],[0,49],[0,33],[0,34],[-1,120],[0,79],[0,43],[0,126],[0,44],[0,46],[-1,130],[0,78],[-1,18],[0,359],[-1,27],[0,111],[0,51],[0,2],[0,98],[0,18],[-1,271],[0,104],[0,44],[0,37],[-1,50],[0,453],[0,176],[0,40],[0,1],[0,98],[0,1],[0,21],[0,93],[0,17],[-1,117],[0,12],[0,89],[0,54],[0,81],[-1,144]],[[62560,67246],[0,-40],[0,-8],[-1,-25],[0,-10],[0,-11],[-2,-44],[0,-11],[-1,-21],[0,-52],[0,-36],[0,-13],[0,-47],[0,-12],[0,-11],[0,-13],[0,-2],[0,-18],[0,-20],[0,-7],[0,-38],[0,-7],[0,-38],[0,-17],[-1,-2],[0,-19],[-10,1],[-9,0],[-1,0],[-41,1],[-16,0],[-20,0],[-18,0],[-15,1],[-124,3],[-8,0],[-96,2],[-8,0],[-19,1],[-36,0],[-53,1],[-9,1],[-61,1],[-13,1],[-22,0],[-52,1],[-67,0],[-16,-1],[-20,0],[-67,2],[-56,1],[-14,0],[-69,1],[-98,2],[-39,0],[-13,0],[-39,1]],[[61426,66744],[-32,0],[-10,0],[-23,0],[-134,3],[-29,1],[-102,3],[-14,1],[-35,0],[-18,0],[-31,1],[-38,1],[-19,0],[-12,1],[-60,0],[-33,1],[-27,0],[-28,1],[-8,0],[-10,0],[-23,1],[-23,-1],[-26,1],[-32,0],[-8,1],[-18,0],[-4,0],[-10,0],[-16,1],[-55,0],[-41,1],[-25,1],[-48,1],[-10,0],[-12,0],[-13,1],[-20,0],[-17,0],[-42,0],[-17,1],[-7,0],[-16,0],[-24,0],[-8,0],[-10,0],[-22,1],[-24,0],[-24,1],[-72,1],[-35,0],[-19,0],[-21,0],[-11,0],[-14,0],[-40,1],[-9,-1],[-32,1],[-1,0],[-7,0],[-32,0],[-22,0],[-36,0],[-10,0],[-11,0],[-12,0],[-29,0],[-28,0],[-54,0],[-19,0],[-19,1],[-11,0],[-10,0],[-9,0],[-10,0],[-10,0],[-10,0],[-16,0],[-17,0],[-8,0],[-8,0],[-8,0],[-38,0],[-18,0],[-10,0],[-45,0],[-14,0],[-42,0],[-38,0],[-21,0],[-18,0],[-64,1],[-42,0],[-9,0],[-9,0],[-66,0],[-14,0],[-44,0],[-107,-1],[-14,0],[-16,0],[-10,0],[-68,-1],[-44,0],[-45,0],[-15,0],[-30,0],[-8,-1],[-3,0],[-97,0]],[[54608,66769],[-26,0],[-17,0],[-32,0],[-92,0],[-54,0],[-35,0],[-148,0],[-20,0],[-25,0],[-14,0],[-9,0],[-48,0],[-8,0],[-40,0],[-58,0],[-21,-1],[-27,0],[-25,0],[-13,0],[-57,0],[-286,0],[-16,0]],[[53537,66768],[-11,0],[-18,0],[-38,0],[-35,0],[-17,1],[-71,1],[-84,1],[-13,0],[-150,1],[-39,1],[-43,0],[-192,3],[-18,0],[-30,1],[-9,0],[-9,-1],[-12,0],[-26,0],[-22,0],[-105,1],[-22,0],[-16,1],[-73,1],[-40,0],[-38,0],[-75,1],[-46,0],[-32,0],[-22,1],[-14,0],[-10,0],[-54,0],[-8,0],[-11,1],[-9,0],[-10,0],[-10,0],[-21,0],[-10,0],[-11,0],[-10,1],[-3,0],[-17,0],[-15,0],[-60,0],[-20,1],[-52,0],[-19,1],[-105,1],[-60,1],[-40,0],[-58,0],[-72,1],[-32,1],[-16,0],[-37,1],[-61,1],[-18,0],[-56,0],[-55,1],[-37,0],[-148,2],[-63,1],[-53,0],[-28,1],[-115,1],[-45,0],[-75,1],[-24,0]],[[38729,66806],[-77,1],[-161,2],[-198,2],[-29,-1],[-53,1],[-51,1],[-134,0],[-64,1],[-66,0],[-132,0],[-43,1],[-11,0]],[[37710,66814],[-76,1],[-66,0],[-67,1],[-64,-4],[-77,-1],[-66,0],[-34,-2],[-33,0],[-32,0],[-16,0],[-20,-1],[-64,0],[-14,0],[-52,0],[-66,1],[-67,1],[-66,-1],[-30,0],[-35,-1],[-17,0],[-41,0],[-8,0],[-32,0],[-14,-1],[-9,0],[-9,0],[-28,0],[-20,0],[-3,0],[-11,0],[-36,0],[-3,0],[-35,-1],[-68,0],[-67,-1],[-28,0],[-28,-1],[-11,0],[-52,0],[-79,-1],[-95,0],[-43,0],[-132,-1],[-130,0],[-131,-1],[-12,0],[-54,0],[-65,-1],[-66,0],[-30,0],[-32,0],[-16,0],[-3,0],[-10,0],[-59,-1],[-16,0],[-15,0],[-15,0],[-2,0],[-32,-1],[-58,0],[-41,-1],[-66,0],[-40,-1],[-90,-1],[-66,0],[-67,-1]],[[34780,66794],[1,38],[0,138],[0,27],[1,109],[4,67],[0,69],[0,113],[0,25],[0,67],[0,68],[0,136],[0,136],[-1,69],[0,67],[0,213],[0,54],[-2,141],[1,14],[1,123],[-3,133],[1,66],[0,68],[0,15],[0,15],[0,1],[-1,107],[1,135],[0,80],[-1,60],[0,23],[0,41],[0,22],[0,47],[0,2],[0,133],[0,12],[0,7],[0,10],[1,72],[0,33],[0,80],[-1,61],[0,84],[0,51],[0,71],[0,33],[0,19],[0,14],[0,57],[0,21],[0,58],[0,69],[0,14],[0,60],[0,44],[0,87],[0,14],[0,23],[0,47],[0,19],[0,54],[0,16],[0,30],[0,38],[0,75],[-1,33],[1,103]],[[30833,70815],[0,-14],[2,-59],[2,-53],[-3,-297],[0,-340],[1,-73],[0,-140],[0,-58],[0,-1],[0,-65],[0,-14],[0,-19],[0,-71],[0,-32],[0,-16],[1,-32],[0,-14],[-1,-93],[-1,-321],[0,-17],[0,-73],[0,-135],[0,-1],[-1,-137],[0,-67],[0,-68],[0,-69],[0,-50],[0,-37],[0,-56],[0,-48],[0,-20],[0,-122],[2,-124],[-1,-21],[0,-134],[0,-137],[0,-135],[0,-69],[0,-68],[0,-20],[0,-48],[-1,-68],[-1,-50],[0,-87],[0,-69],[0,-68],[-1,-136],[0,-34],[-1,-34],[0,-68],[1,-47]],[[30831,66786],[-85,0],[-128,-1],[-19,0],[-167,0],[-34,0],[-24,0],[-20,0],[-123,0],[-191,1],[-209,0],[-47,0],[-39,0],[-28,0],[-64,0],[-14,1],[-66,-1],[-27,-1],[-14,0],[-8,0],[-11,0],[-16,0],[-59,-1],[-56,0],[-9,0],[-55,-1],[-16,1],[-67,0],[-102,0],[-3,0],[-43,0],[-15,0],[-9,0],[-15,-1],[-20,1],[-8,0],[-16,0],[-8,0],[-41,1],[-8,0],[-9,0],[-12,0],[-8,0],[-26,0],[-13,0],[-23,0],[-32,0],[-40,1],[-20,0],[-37,0],[-31,1],[-89,0],[-87,0],[-135,1],[-53,-1],[-69,-1],[-34,0],[-99,1],[-30,0],[-101,1],[-66,0],[-83,1],[-44,0],[-35,0],[-26,3],[-107,-1],[-27,0],[-19,0],[-42,-1],[-43,0],[-94,-1],[-37,0],[-60,0],[-60,-1]],[[27256,66788],[1,49],[17,1133],[1,44],[24,1569],[13,901],[5,312],[0,18]],[[34780,66794],[-22,0],[-40,-1],[-110,-1],[-24,0],[-47,-1],[-15,0],[-68,-1],[-41,0],[-42,1],[-21,0],[-61,0],[-3,0],[-47,-1],[-21,0],[-27,0],[-19,0],[-64,0],[-37,0],[-93,-1],[-66,-1],[-17,0],[-49,-1],[-73,0]],[[33773,66787],[-11,0],[-117,0],[-14,-1],[-1,0],[-64,-3],[-64,0],[-13,1],[-35,0],[-15,1],[-66,1],[-10,0],[-139,-1],[-37,1],[-51,0],[-27,0],[-132,0],[-131,1],[-64,-2],[-67,0],[-213,-1],[-49,-1],[-66,1],[-65,0],[-45,1],[-86,0],[-119,-1],[-12,0],[-9,1],[-253,1],[-131,-1],[-116,-1],[-144,0],[-122,0],[-5,0],[-16,0],[-2,0],[-8,0],[-19,0],[-11,0],[-16,0],[-45,0],[-20,0],[-35,0],[-96,1],[-131,-1],[-19,2],[-31,0]],[[87682,67496],[-22,-30],[-10,-5],[-16,-7],[-1,-1],[-45,-31],[-2,-2],[-16,-11],[1,-7],[-2,-1],[-7,-4],[-7,-4],[-23,-17],[-7,-5],[0,-1],[-2,-2],[-39,-70]],[[87484,67298],[-9,-13],[-2,-8],[-2,-8],[-2,-6],[-2,-7],[0,-4],[0,-1],[2,-5],[1,-1],[1,0],[9,2],[7,-6],[1,-2],[1,0],[4,-5],[1,-1],[-1,-4],[-7,-31],[-1,-2],[-3,0],[-3,2],[-8,0],[-2,-1],[-5,-4],[-5,-6],[-3,-2],[-3,-3],[0,-2],[0,-1],[1,-1],[-1,-5],[0,-2],[-2,-6],[0,-1],[-7,-13],[-1,-2],[-2,0],[-1,0],[-3,2],[2,-11],[1,-2],[1,-10],[1,-5],[-21,-3],[-12,-22],[0,-1],[2,-14],[0,-1],[1,-11],[0,-1],[-6,-1],[-8,-3],[-2,-1],[-1,-2],[7,-14],[1,0],[4,1],[1,0],[1,-1],[2,-2],[0,-1],[0,-2],[-1,-8],[-4,-8],[-1,-1],[-5,-1],[-1,-4],[6,-6],[4,-9],[-1,-10],[-2,-11],[-8,-1],[-4,-10],[0,-9],[0,-10],[-6,-7],[-3,-10],[-8,1],[-9,-6],[-2,-9],[-1,0],[-7,-3],[-8,-6],[-7,-2],[-9,-2],[0,-10],[-5,-8],[-3,-9],[-7,-2],[-2,-10],[-2,-9],[-6,-5],[0,-11],[-5,-7],[8,-3],[6,-7],[8,-2],[1,-9],[-7,-5],[-63,0],[-15,0],[-64,0],[-20,0],[-41,1],[-27,0],[-177,1],[-24,0],[-6,0],[-145,1],[-25,0],[-52,0],[-10,0],[-17,0],[-16,0],[-8,1],[-17,0],[-10,0],[-10,0],[-35,0],[-29,0],[-19,0],[-8,0],[-12,0],[-9,1],[-11,0],[-2,0],[-9,0],[-9,0],[-18,0],[-9,0],[-9,1],[-9,0],[-18,0],[-1,0],[-16,0],[-35,0],[-10,0],[-1,0],[-13,0]],[[86291,66821],[0,25],[0,4],[0,33],[0,31],[1,40],[0,1],[0,10],[0,18],[0,77],[0,11],[0,16],[1,21],[0,13],[0,52],[1,46],[0,67],[1,87],[0,29],[0,49],[0,32],[0,17],[0,11],[0,10],[0,24],[0,18],[0,12],[0,18],[0,10],[0,10],[0,17],[1,13],[0,10],[0,15],[0,10],[0,14],[0,15],[0,10],[0,16],[0,10],[0,13],[0,13],[1,33],[1,41],[0,62],[0,27],[0,27],[0,30],[0,30],[0,16],[0,71],[0,23],[-1,40],[1,24],[2,148],[0,5],[0,41],[0,7],[0,3],[0,20],[0,14],[0,13],[0,9],[0,11],[0,11],[-1,60],[0,11],[0,12],[0,10],[0,17],[0,55],[-1,29],[0,54],[0,7],[0,7],[0,78],[0,29],[0,15],[0,11],[0,45],[0,1],[0,24],[0,8],[0,26],[1,10],[0,37],[0,40],[0,31],[0,22],[0,56],[0,12],[0,122],[0,70],[0,17],[0,10],[0,15],[0,70],[0,32],[0,35],[0,19],[0,29],[0,10],[0,36],[0,74],[0,11],[0,16],[1,13],[0,38],[0,4],[1,58],[0,33],[0,9],[-2,91],[0,14],[-1,12],[0,27],[0,9],[-1,49],[0,14],[0,27],[0,34],[-1,13],[0,18],[0,22],[0,31],[-1,183],[0,57],[-1,86],[0,76],[-1,23]],[[86291,66821],[-64,-1],[-44,0],[-72,-1],[-44,0],[-6,0],[-63,0],[-106,-1],[-19,0],[-15,-1],[-11,1],[-12,0],[-49,-1],[-46,0],[-58,-1],[-68,0],[-79,0],[-18,0],[-46,-2],[-8,0],[-55,0],[-16,0],[-61,1],[-77,-1],[-57,-1],[-2,0],[-10,0],[-31,0],[-21,0],[-58,-1],[-28,0],[-36,0],[-99,-1],[-21,0],[-4,0],[-10,1],[-42,-1],[-39,0],[-37,-1],[-78,-1],[-1,0],[-113,0],[-70,-1],[-70,-1],[-72,0],[-38,0],[-96,-1],[-1,0],[-138,-2],[-69,0],[-12,0],[-31,-1],[-18,0],[-40,0],[-13,0],[-17,0],[-2,0],[-24,0],[-5,0],[-66,-1],[-146,-1],[-61,0]],[[83578,66801],[-5,43],[-3,35],[-2,10],[-2,22],[-1,16],[-5,42],[0,11],[-14,0],[-71,0],[-1,0],[-31,1],[-52,0],[-75,0],[-16,0],[-10,0],[-35,0],[-35,-1],[-33,1],[-32,1],[-4,0],[-18,0],[-32,1],[-73,1],[-43,1],[-37,0],[-4,0],[-12,1],[-40,0],[-38,-1],[-11,-1],[-40,0],[-12,0],[-57,-1],[-8,0],[-33,-1],[-40,-1],[-66,0],[-28,0],[-66,0],[-60,-1],[-11,0],[-1,0],[-23,0],[-74,0],[-76,-1],[-42,0],[-49,0],[-26,1],[-25,0],[-29,0]],[[91289,69693],[1,-37],[0,-2],[0,-137],[-6,-24],[0,-50],[0,-56],[1,-27],[0,-37],[0,-4],[0,-8],[0,-12],[0,-16],[0,-36],[0,-2],[0,-161],[0,-1],[0,-54],[1,-55],[0,-22],[0,-48],[0,-103],[0,-27],[0,-50],[0,-11],[1,-10],[1,-58],[0,-15],[0,-12],[0,-40],[-1,-56],[-3,-102],[0,-26],[-2,-49],[-2,-173],[0,-15],[-1,-101],[-2,-199],[0,-10],[0,-15],[0,-22],[0,-13],[1,-13],[-1,-9],[-1,-25],[0,-28],[0,-2],[1,-76],[0,-22],[1,-33],[0,-12],[0,-74],[0,-66],[0,-30],[1,-103],[0,-24],[0,-14],[0,-18],[0,-17],[0,-4],[0,-7],[0,-20],[1,-2],[0,-26],[0,-14],[0,-17],[-1,-92],[0,-29],[0,-15],[0,-75],[0,-32],[0,-33],[-1,-99],[1,-23],[-1,-141],[0,-73],[0,-16],[0,-15],[0,-33],[-1,-71],[0,-40],[0,-48],[0,-76],[0,-60],[0,-33],[-1,-95]],[[91276,66042],[-28,0],[-30,-1],[-16,0],[-81,0],[-18,-1],[-9,0],[-10,0],[-17,0],[-70,0],[-15,-1],[-10,0],[-17,0],[-12,0],[-9,0],[-11,0],[-9,0],[-16,0],[-17,0]],[[90881,66039],[-11,11],[-1,11],[-4,22],[3,7],[9,3],[7,12],[-2,9],[3,9],[4,15],[-4,8],[2,14],[-7,6],[-2,3],[-1,3],[-2,3],[-2,3],[-4,6],[-4,5],[-10,11],[-5,1],[-10,1],[-9,11],[-7,0],[-1,0],[-11,0],[-1,0],[-4,4],[0,1],[0,2],[0,8],[-3,3],[-7,0],[-1,0],[-5,0],[0,1],[-2,2],[-2,1],[-1,10],[-7,-5],[-8,3],[-3,10],[-10,-1],[-2,5],[1,3],[1,3],[16,13]],[[90774,66276],[-6,9],[-1,1],[-11,10],[-3,3],[-8,20],[-21,38],[-1,1],[-4,2],[-2,0],[-22,3],[-26,-1],[-13,2],[0,5],[-1,14],[-18,21],[-5,2],[-2,1],[-19,8],[-48,8],[-2,0],[-17,-7],[-5,-2],[1,-4],[0,-4],[-3,-3],[-3,-2],[-13,-4],[-3,1],[-13,8],[-2,1],[-2,2],[-13,9],[-31,21],[-5,3],[-1,1],[0,1],[-19,22],[-7,7],[-11,7],[-1,0],[-2,0],[-4,-1],[-15,28],[-7,13],[0,12],[-6,24],[-1,2],[-1,0],[-3,0],[-6,-1],[-15,-1],[-1,0],[-2,4],[-4,24],[-1,8],[0,1],[0,3],[3,-1],[2,0],[7,1],[1,0],[1,1],[8,3],[0,3],[-9,8],[-7,4],[0,1],[6,5],[0,1],[-4,23],[0,2],[-6,18],[-6,5],[-17,7],[-5,1],[-9,2],[-2,1],[-1,1],[-1,3],[-14,34],[-17,41],[3,3],[3,4],[0,2],[-1,0],[-1,3],[-4,7],[-6,8],[-2,3],[-4,5],[-22,21],[-4,2],[-1,0],[-10,2],[-3,-10],[-2,-2],[-26,5],[-9,2],[-3,9],[-1,2],[-5,15],[-46,44],[-2,2],[-36,18],[-16,19],[-8,10],[-8,10],[-11,14],[-4,6],[-15,20],[-1,1],[-16,26]],[[95927,69715],[0,-154],[0,-1371],[0,-502],[0,-336],[0,-3],[0,-103],[0,-13],[0,-58],[0,-82],[0,-11],[0,-172],[-1,-59],[0,-3],[0,-25],[1,-69],[0,-16],[0,-20],[-1,-16],[0,-18],[1,-10],[0,-6],[-1,-14],[0,-15],[0,-16],[1,-11],[-1,-15],[0,-9],[0,-49],[1,-210],[0,-7],[0,-27],[0,-14],[0,-10],[0,-19],[0,-4],[-1,-24],[0,-6],[0,-29],[1,-21],[0,-6],[0,-4],[0,-9],[0,-43],[0,-18],[-1,-28],[0,-3]],[[95926,66057],[-22,-2],[-33,0],[-8,0],[-13,0],[-15,0],[-21,0],[-26,0],[-17,0],[-83,0],[-120,0],[-34,0],[-38,0],[-30,0],[-41,0],[-30,0],[-45,0],[-4,0],[-17,0],[-1,0],[-22,-1],[-5,0],[-235,0],[-1,0],[-40,0],[-32,0],[-20,0],[-99,-1],[-1,0],[-39,-1],[-8,0],[-18,1],[-18,0],[-31,0],[-36,0],[-78,-1],[-55,0],[-36,0],[-14,0],[-63,0],[-18,0],[-32,0],[-30,0],[-24,0],[-23,-1],[-12,0],[-39,0],[-93,0],[-55,0],[-8,0],[-2,0],[-9,0],[-47,0],[-23,0],[-169,0],[-9,0],[-71,-1],[-184,0],[-116,0],[-60,-1],[-54,-1],[-31,0],[-18,0],[-102,0],[-23,0],[-99,-1],[-13,0],[-75,0],[-62,0],[-5,0],[-95,0],[-88,0],[-109,0],[-27,0],[-59,0],[-137,0],[-9,-1],[-44,-1],[-97,0],[-47,0],[-26,0],[-31,0],[-32,0],[-9,0],[-21,0],[-62,-1],[-21,0],[-30,0],[-2,0],[-40,0],[-65,0],[-26,0],[-54,0],[-22,0],[-92,-1],[-8,0],[-12,0],[-103,0],[-20,0],[-1,0],[-9,0],[-25,0],[-51,-1],[-15,0],[-61,1],[-74,-1],[-47,0],[-24,0]],[[90774,66276],[-23,0],[-3,-1],[-18,0],[-8,0],[-76,-3],[-35,-1],[-67,0],[-64,-1],[-23,0],[-29,1],[-22,-1],[-30,-1],[-63,-1],[-28,0],[-108,-1],[-19,-1],[-154,-2],[-88,-1],[-101,-1],[-72,-1],[-43,0],[-45,-1],[-63,-2],[-74,0],[-117,0],[-38,0],[-33,0],[-35,0],[-10,0],[-57,0],[-36,1],[-9,0],[-62,2],[-116,0],[-2,0],[-14,0],[-62,-2],[-40,0],[-7,0],[-93,0],[-11,-1],[-19,1],[-50,0],[-19,0],[-47,1],[-67,0],[-108,-1],[-34,0],[-38,0],[-9,0],[-34,0],[-27,0],[-10,0],[-16,0],[-106,0],[-56,0],[-138,0],[-8,0],[-150,0],[-33,0],[-98,-1],[-20,0],[-26,0],[-107,-1],[-9,0],[-62,0]],[[87485,66257],[0,51],[-1,10],[0,66],[0,46],[0,27],[0,21],[0,39],[0,18],[-1,23],[0,63],[0,71],[1,12],[0,23],[0,6],[0,66],[0,62],[0,32],[0,41],[0,5],[0,88],[0,11],[0,20],[1,29],[11,71],[2,15],[3,55],[-1,15],[-1,21],[-2,15],[-13,19]],[[87485,66257],[0,-42],[0,-15],[0,-28],[0,-38],[0,-40],[0,-19],[0,-74],[-2,-94],[0,-43],[0,-78],[1,-28],[0,-1],[0,-140],[0,-40],[0,-36],[0,-64],[0,-22],[0,-16],[0,-18],[0,-17],[-1,-33],[0,-20],[0,-87],[0,-37],[0,-14],[-1,-47],[0,-57],[0,-124],[0,-68],[0,-1],[0,-39],[0,-35],[0,-13],[0,-203],[-1,-176],[0,-63],[0,-32],[0,-34],[-1,-92],[0,-15],[0,-76],[0,-21],[0,-27],[0,-13],[0,-75],[0,-56],[-1,-49],[1,-19],[0,-13],[0,-49],[-1,-31],[0,-2],[0,-39],[0,-88],[0,-87],[0,-46],[-1,-19],[0,-15],[-1,-186],[-1,-27],[0,-2],[1,-9],[-1,-16],[0,-3],[0,-49],[-1,-56]],[[87475,63141],[-14,-8],[-8,-5],[-7,-7],[-6,-8],[-9,-17],[0,-1],[-2,-8],[-3,-18],[0,-2],[-4,-22],[-1,-6],[-10,-33],[-6,-11],[0,-1],[1,-5],[2,-3],[12,-7],[-12,-32],[-20,-37],[-22,-16],[-6,7],[0,1],[-2,3],[-9,30],[0,1],[-21,38],[-3,6],[-13,21],[-4,3],[-4,-1],[-2,-1],[-3,-4],[-2,-3],[-1,-1],[-1,-3],[-1,-2],[-4,-16],[-2,-9],[-1,-9],[-3,-6],[-8,-9],[-17,-15],[-2,-3],[-1,-3],[1,-5],[0,-1],[6,-23],[1,-3],[0,-8],[-3,-4],[-11,-7],[-2,-1],[-6,1],[-7,5],[-8,5],[-6,1],[-7,0],[-9,-2],[-4,0],[-2,1],[-3,5],[0,6],[1,4],[0,1],[7,18],[0,4],[-1,3],[-4,4],[-22,15],[-25,21],[-16,16],[-1,0],[-13,7],[-7,3],[-6,6],[-7,12],[-3,7],[-3,4],[-23,9],[0,1],[-2,3],[-3,8],[-1,5],[1,2],[0,1],[2,3],[18,22],[1,2],[6,4],[7,9],[0,8],[-7,36],[-9,24],[-4,8],[-4,2],[-4,-1],[-4,-4],[-2,-4],[0,-1],[-3,-12],[-5,-10],[-4,-3],[-4,-2],[-8,0],[-13,4],[-16,3],[0,-1],[-5,-1],[-3,-2],[-1,-2],[0,-12],[0,-1],[-1,-9],[-2,-4],[-4,-4],[-23,-18],[-3,-1],[-2,1],[-33,4],[-22,-25],[-5,-4],[0,-1],[-4,-1],[-5,-1],[-1,0],[-16,2],[-3,2],[-14,3],[-18,1],[-5,0],[-14,-6],[-2,1],[-20,17],[-6,7],[0,1],[-11,17],[-5,9],[-4,7],[-15,24],[1,13],[1,7],[-6,12],[-8,14],[-9,16],[-1,1],[-5,4],[-2,1],[-1,6],[-2,2],[-2,2],[-3,1],[-7,2],[-23,0],[-5,-2],[-2,-1],[0,-4],[2,-2],[7,-3],[4,-2],[-1,-4],[-1,-2],[-1,-5],[-9,2],[-12,2],[-10,0],[-27,-3],[-11,-3],[-4,-2],[-2,-3],[-5,-9],[-4,-8],[0,-1],[-3,-2],[-7,-1],[-1,0],[-1,0],[-19,0],[-1,0],[-7,0],[-3,4],[-1,3],[-5,7],[-5,1],[-11,-2],[-15,-9],[-16,-10],[-4,18],[-6,24],[0,3],[-1,5],[-12,23],[-2,4],[-3,3],[-12,7],[-4,1],[-5,-2],[-7,-4],[-3,-1],[-14,-1],[-4,0],[-15,6],[-1,1],[-2,1],[-2,11],[1,4],[2,3],[-23,23],[-1,0],[-6,4],[-10,8],[-8,7],[-13,10],[-5,4],[-2,2],[-21,12],[-3,2],[-26,16],[-1,2],[-1,1],[-5,27],[-1,7],[-1,1],[-5,2],[-34,-2],[-25,-1],[-15,-3],[-4,-2],[-2,-2],[-3,0],[-1,0],[-3,1],[-4,4],[0,1],[-8,14],[-11,14],[-3,2],[-1,0],[-21,7],[-32,24],[-21,14],[-16,-2],[-6,-1],[-3,0],[-11,0],[-15,0],[-35,0],[-3,0],[-2,2],[-10,13],[-1,3],[-2,4],[0,21],[0,5],[-11,-16],[-13,-9],[-17,-11],[-5,-1],[-1,0],[-3,1],[-7,3],[-2,1],[-1,0],[-17,10],[-1,1],[-19,3],[-2,-1],[-12,0],[-4,0],[-3,0],[-2,-6],[-4,-9],[-2,-4],[-8,-12],[-3,-1],[-8,2],[-17,4],[-20,6],[-4,-1],[-30,-17],[-2,-2],[0,-9],[2,-4],[0,-2],[3,-14],[-3,-14],[-2,-2],[-1,-3],[-1,-1],[-2,-2],[-50,10],[-1,0],[-1,3],[-1,3],[-2,13],[-1,3],[0,1],[4,7],[-6,4],[-10,0],[-4,-2],[-21,-12],[-21,-2],[-2,1],[-20,9],[-7,3],[-14,19],[0,4],[-1,3],[-4,2],[-21,14],[-2,1],[-17,-1],[0,-1],[2,-20],[0,-4],[-2,-2],[-26,3],[-41,8],[-9,9],[0,1],[-3,3],[-36,-5],[-7,-1],[-2,0],[-4,0],[-6,2],[-2,2],[0,10],[0,1],[9,13],[0,3],[-2,2],[-3,1],[-17,1],[-9,-1],[-3,-3],[0,-3],[-9,-8],[-2,0],[-5,-1],[-33,-8],[-1,0],[-14,-6],[-3,0],[-1,0],[-26,10],[-12,19],[-1,0],[0,4],[1,4],[4,10],[2,2],[5,4],[1,0],[0,5],[-2,2],[-13,0],[-2,-1],[-2,-3],[1,-7],[1,-5],[-1,-1],[-6,0],[-6,2],[-15,6],[-18,7],[-10,5],[-1,0],[-2,-15],[18,-27],[0,-3],[-3,-2],[-30,-11],[-5,-1],[-25,0],[-17,1],[-1,0],[-20,6],[-3,2],[-4,1],[-2,1],[-20,18],[-6,2],[-7,0],[-5,-1],[-17,-8],[0,-1],[-4,-9],[0,-6],[-1,-3],[-2,-1],[-23,-6],[-4,-1],[-42,4],[-1,0],[-2,1],[1,3],[1,31],[-1,5],[-2,3],[-4,4],[-3,2],[-20,8],[-5,2],[-12,3],[-1,0],[-5,-6],[-4,-2],[-3,-1],[-1,0],[-11,2],[-9,5],[-34,14],[0,1],[-1,0],[-2,1],[-5,5],[0,1],[-4,5],[-2,8],[0,1],[2,3],[-5,8],[-7,6],[-8,5],[-37,9],[-21,4],[-54,8],[-6,-1],[-10,-3],[-2,-1],[-2,4],[-3,4],[-7,12],[-2,2],[-7,13],[4,25],[2,16],[2,5],[8,31],[0,4],[-3,4],[-4,1],[-12,4],[-6,1],[-4,0],[-13,13],[-19,17],[-6,11],[-1,2],[-9,25],[-1,3],[-15,19],[-8,8],[-39,31],[-44,-4],[-4,0],[-3,0],[-3,-1],[-1,-1],[-7,-4],[-4,-1],[-6,0],[-17,3],[-3,2],[-1,1],[-9,17],[-1,3],[0,18],[2,3],[4,0],[10,-6],[1,0],[4,0],[2,1],[1,2],[-1,3],[0,2],[-10,27],[0,1],[-1,3],[-2,2],[-13,1],[-6,3],[-47,36],[-11,9],[-1,-1],[-10,-6],[-11,2],[-21,11],[-17,10],[-3,1],[-2,5],[-2,7],[0,5],[-8,12],[-2,3],[-3,3],[-4,11],[-2,10],[-1,2],[-21,23],[-5,6],[-11,13],[-7,8],[-9,10],[-1,0],[-1,0],[-10,7],[-2,0],[-14,1],[-1,0],[-1,0],[-9,-6],[-4,-3],[-1,-1],[-9,-6],[-23,-4],[-4,0],[-10,5],[-6,6],[-3,14],[-6,26],[-1,4],[7,8],[0,2],[-2,10],[-1,3],[-2,3],[-9,7],[-4,1],[-17,-1],[-12,-2],[-12,-3],[-5,4],[-1,7],[-4,23],[-11,10]],[[84117,64237],[11,7],[2,2],[-1,4],[-15,22],[-15,20],[-2,1],[-23,14],[-14,18],[-13,16],[-7,9],[-20,44],[-3,0],[-38,12],[-18,7],[-5,4],[-1,4],[0,14],[-13,-5],[-4,0],[-38,3],[-19,3],[-6,5],[-4,4],[-3,5],[-2,3],[0,6],[5,17],[1,11],[-4,8],[-16,18],[-4,4],[-11,3],[-4,0],[-1,-2],[0,-6],[1,-2],[-1,-2],[-1,-1],[-15,4],[-1,0],[-3,3],[-1,4],[-1,8],[-1,11],[0,4],[-2,8]],[[83807,64549],[-5,76],[-9,82],[-3,29],[-3,33],[-3,15],[-3,45],[-12,117],[-2,22],[-2,21],[-9,84],[-1,9],[-1,11],[-6,58],[-2,12],[-4,48],[-3,21],[-4,38],[0,1],[-5,47],[-11,113],[-2,19],[-2,10],[-1,14],[-2,14],[-3,38],[-3,32],[-2,20],[-5,49],[-3,30],[-6,54],[-12,119],[-1,3],[-2,23],[0,3],[-14,138],[-3,26],[-4,44],[-3,21],[0,1],[-13,129],[-1,6],[-1,10],[-4,40],[0,3],[-1,7],[-2,17],[-5,46],[-6,63],[-10,101],[-3,22],[-2,27],[-11,106],[-6,55],[-8,80]],[[65380,67203],[0,-29],[0,-48],[-1,-44],[-2,-82],[0,-10],[0,-15],[-1,-68],[-3,-192],[-1,-49],[-1,-28],[0,-20],[-2,-116],[-1,-24],[-1,-33],[0,-20],[0,-12],[0,-12],[-2,-80],[-1,-88],[-1,-16],[-1,-82],[-1,-36],[0,-32],[-2,-55],[0,-30],[0,-22],[-1,-49],[0,-14],[-1,-44],[-1,-44],[0,-11],[-1,-45],[-1,-58],[0,-14],[0,-34],[-1,-27],[-1,-10],[0,-31],[-1,-13],[0,-10],[0,-26],[-1,-30],[-1,-18],[1,-10],[-1,-10],[0,-11],[-1,-37],[0,-17],[0,-2],[0,-8],[-1,-22],[0,-12],[0,-11],[0,-9],[0,-29],[-1,-14],[0,-11],[-2,-74],[0,-14],[0,-10],[-1,-16],[0,-15],[0,-11],[-1,-43],[0,-13],[-1,-24],[0,-35],[-1,-32],[-1,-54],[-1,-49],[0,-9],[-1,-42],[2,-18],[0,-129],[-1,-31],[-5,-134],[-1,-27],[-1,-40],[0,-1],[0,-12],[0,-11],[0,-2],[-1,-28],[-1,-44],[0,-10],[0,-12],[0,-5],[0,-6],[-1,-25],[-1,-36],[-2,-107],[0,-4],[0,-9],[-4,-183],[-1,-61],[0,-17],[-2,-97],[-1,-11],[0,-1],[0,-39],[-2,-81],[0,-22],[-1,-30],[0,-13],[-2,-53],[-2,-85],[-2,-88],[-2,-69],[-1,-13],[0,-1],[0,-21],[-2,-71],[-1,-22],[-1,-46],[-2,-55],[0,-33]],[[65299,63035],[-1,-24],[-2,-75],[-3,-97],[-1,-35],[-2,-77],[-1,-25],[0,-10],[0,-2],[-1,-26],[-1,-13],[-1,-59]],[[65286,62592],[-63,0],[-9,0],[-2,0],[-33,0],[-56,1],[-45,1],[-59,0],[-36,1],[-23,0],[-15,0],[-22,0],[-19,0],[-51,0],[-12,0],[-17,1],[-2,0],[-2,0],[-4,0],[-19,0],[-45,0],[-10,0],[-102,1],[-15,0],[-17,0],[-16,0],[-102,1],[-9,0],[-7,0],[-39,1],[-39,0],[-146,1],[-26,0],[-8,0],[-63,1],[-47,0],[-70,0],[-21,1],[-22,0],[-12,0],[-71,0],[-11,0],[-46,1],[-35,0],[-16,0],[-11,0],[-72,0],[-36,0],[-56,0],[-27,0],[-36,0],[-5,0],[-14,0],[-20,0],[-32,0],[-111,1],[-35,0],[-23,0],[-45,0],[-15,0],[-43,0],[-4,0],[-60,0],[-33,0],[-52,0],[-57,0],[-2,0],[-15,0],[-7,0],[-18,0],[-14,0],[-1,0],[-18,0],[-20,0],[-32,0],[-58,-1],[-11,1],[-11,0],[-8,0],[-42,0],[-2,0],[-92,0],[-25,0],[-21,1],[-10,0],[-57,0],[-45,0],[-79,0],[-9,0],[-15,0],[-109,0],[-67,0],[-37,0]],[[62190,62605],[-27,0],[-3,0],[-30,0],[-9,0],[-43,0],[-44,0],[-36,3],[-41,1],[-13,0],[-3,0],[-21,1],[-15,1],[-18,0],[-24,1],[-192,6],[-60,1],[-143,6],[-20,1],[-3,0],[-6,0],[-3,0],[-15,-1]],[[61421,62625],[0,17],[0,2],[1,98],[0,26],[0,10],[0,16],[0,2],[1,124],[0,21],[-1,48],[1,29],[-1,28],[0,28],[0,39],[0,13],[0,39],[-1,77],[1,133],[0,87],[0,34],[0,11],[0,17],[0,70],[1,52],[0,17],[0,44],[0,107],[0,88],[0,39],[0,1],[0,131],[0,97],[0,159],[0,123],[0,30],[0,150],[0,39],[0,5],[0,122],[0,17],[0,7],[1,16],[0,96],[0,18],[0,94],[0,21],[0,63],[1,32],[0,3],[0,213],[0,55],[0,49],[0,55],[0,35],[0,28],[0,111],[0,14],[0,69],[0,40],[1,73],[0,18],[-1,76],[0,15],[0,10],[0,2],[0,13],[0,14],[0,14],[0,24],[0,6],[1,98],[0,16],[-1,29],[0,45],[1,34],[-1,124],[1,96],[0,95],[0,33],[0,75]],[[69277,67117],[0,-14],[-1,-28],[0,-29],[0,-41],[-1,-25],[1,-18],[-1,-26],[0,-52],[0,-11],[0,-44],[-1,-39],[-1,-59],[-1,-55],[0,-13],[-1,-10],[0,-40],[-1,-17],[0,-30],[0,-11],[0,-13],[-1,-27],[0,-16],[0,-19],[0,-21],[-1,-9],[0,-3],[0,-11],[0,-9],[-1,-54],[0,-18],[-1,-19],[-1,-32],[0,-11],[0,-10],[0,-10],[-1,-38],[0,-10],[0,-10],[-1,-13],[0,-21],[-1,-45],[-1,-25],[0,-19],[0,-12],[-1,-22],[0,-39],[-1,-45],[-1,-52],[-2,-32],[-1,-61],[-1,-21],[0,-17],[-1,-18],[0,-26],[-1,-72],[-1,-129],[-1,-45],[0,-5],[0,-12],[0,-19],[0,-17],[-1,-25],[0,-13],[0,-50],[-1,-55],[0,-27],[-2,-207],[0,-15],[-2,-176],[-1,-104],[0,-46],[-1,-16],[0,-6],[0,-27],[-1,-72],[0,-10],[-1,-45],[-1,-11],[0,-60],[1,-29],[0,-31],[0,-37],[0,-2],[-1,-36],[-3,-99],[0,-22],[0,-36],[0,-9],[0,-1],[0,-14],[0,-25],[-1,-36],[0,-49],[-1,-105],[-1,-107],[-1,-105],[0,-37],[-1,-75],[0,-1],[0,-37],[1,-22],[0,-47],[0,-2],[-1,-7],[0,-12],[0,-13],[0,-17],[0,-23],[-1,-28],[0,-24],[0,-66],[0,-14],[0,-78],[0,-1],[0,-28],[0,-29],[-1,-111],[-1,-57],[0,-9]],[[69228,63002],[-49,0],[-5,0],[-28,0],[-78,0],[-40,0],[-39,0],[-22,-1],[-73,1],[-10,0],[-20,0],[-12,0],[-42,0],[-3,0],[-5,1],[-80,0]],[[68722,63003],[-63,1],[-24,0],[-27,1],[-12,0],[-72,1],[-17,0],[-126,2],[-16,0],[-2,0],[-40,1],[-53,0],[-3,0],[-14,1],[-85,1],[-15,1],[-9,0],[-11,0],[-9,0],[-14,1],[-8,0],[-9,0],[-7,0],[-15,0],[-12,-1],[-9,0],[-12,0],[-73,2],[-56,0],[-61,0],[-62,1],[-78,2],[-15,0],[-4,0],[-43,0],[-6,0],[-68,0],[-9,0],[-8,0],[-101,1],[-10,0],[-37,-1],[-20,0],[-19,0],[-12,0],[-13,0],[-5,0],[-6,0],[-41,0],[-12,0],[-12,0],[-66,0],[-14,1],[-13,0],[-27,0],[-94,2],[-41,0],[-12,0],[-33,0],[-13,0],[-72,0],[-11,0],[-93,1],[-22,0],[-15,-1],[-102,-1],[-57,0],[-15,0],[-77,0],[-69,-1],[-190,2],[-31,0],[-114,1],[-18,0],[-19,0],[-36,0],[-80,-1],[-37,2],[-54,3],[-18,1],[-19,3],[-134,2],[-31,0],[-19,0],[-19,1],[-60,0],[-148,2],[-43,0],[-52,1]],[[73173,67028],[0,-28],[-1,-11],[0,-6],[-1,-66],[1,-34],[0,-2],[0,-11],[0,-12],[-1,-71],[0,-37],[0,-54],[0,-6],[0,-7],[0,-22],[0,-5],[0,-10],[0,-28],[0,-96],[0,-6],[-1,-32],[0,-57],[0,-16],[0,-29],[-1,-48],[-1,-75],[0,-71],[-1,-75],[0,-15],[0,-14],[0,-25],[0,-27],[0,-18],[0,-11],[0,-20],[-2,-65],[0,-39],[-1,-87],[-2,-137],[0,-11],[0,-2],[0,-8],[-1,-16],[0,-1],[-1,-59],[0,-10],[0,-35],[0,-10],[0,-17],[0,-20],[0,-14],[0,-2],[-1,-46],[-4,-173],[0,-41],[0,-3],[-1,-29],[-1,-13],[1,-10],[-1,-10],[0,-17],[-1,-57],[0,-11],[0,-47],[0,-22],[-1,-15],[0,-12],[0,-18],[0,-10],[0,-13],[-1,-31],[0,-15],[0,-9],[-1,-15],[0,-15],[0,-17],[-1,-24],[0,-12],[1,-11],[-1,-11],[0,-12],[0,-2],[0,-13],[0,-10],[0,-3],[0,-7],[-1,-17],[0,-10],[-1,-37],[0,-17],[0,-15],[-1,-23],[0,-11],[-1,-14],[0,-40],[-1,-49],[0,-4],[1,-12],[0,-15],[-1,-16],[-1,-72],[0,-16],[0,-9],[0,-13],[0,-11],[-1,-17],[0,-14],[-1,-50],[0,-75],[0,-7],[0,-3],[-1,-69],[0,-16],[0,-34],[0,-12],[0,-1],[0,-18],[0,-10],[-1,-11],[0,-20],[-1,-69],[0,-17],[-1,-52],[0,-19],[-1,-21],[0,-13],[0,-11],[0,-15],[0,-10],[0,-4],[0,-30],[-1,-42],[0,-11],[0,-1],[0,-28],[0,-1],[0,-14],[0,-32],[0,-76],[-1,-85],[-2,-94],[0,-29],[0,-14],[0,-19],[0,-12],[0,-3],[0,-40],[0,-3],[-1,-14],[-1,-32],[0,-18],[0,-17],[0,-3],[0,-14],[0,-15],[0,-2],[-1,-9],[-1,-42],[0,-68]],[[73127,62939],[-29,1],[-28,1],[-20,0],[-1,0],[-5,0],[-3,0],[-14,0],[-8,1],[-35,0],[-8,0],[-19,1],[-31,0],[-6,0],[-10,0],[-9,0],[-76,2],[-19,0],[-8,1],[-29,0],[-11,0]],[[72758,62946],[-16,1],[-46,1],[-35,1],[-57,-1],[-12,0],[-2,0],[-86,1],[-19,0],[-46,1],[-7,0],[-1,0],[-14,0],[-33,1],[-36,1],[-32,1],[-11,0],[-20,1],[-25,0],[-27,1],[-39,0],[-20,1],[-32,0],[-45,1],[-25,1],[-1,0],[-59,1],[-13,0],[-81,1],[-13,0],[-22,1],[-29,0],[-40,1],[-25,1],[-24,0],[-18,1],[-8,0],[-8,0],[-13,0],[-22,1],[-49,1],[-16,0],[-13,0],[-22,1],[-14,0],[-58,1],[-12,0],[-13,0],[-53,2],[-9,0],[-12,0],[-14,1],[-12,0],[-27,0],[-11,1],[-54,0],[-79,2],[-2,0],[-43,0],[-5,0],[-10,0],[-32,1],[-10,0],[-22,0],[-30,1],[-56,1],[-21,0],[-2,0],[-1,0],[-7,0],[-15,0],[-1,0],[-40,1],[-9,0],[-11,1],[-17,0],[-13,0],[-12,0],[-10,1],[-24,0],[-10,0],[-24,0],[-21,0],[-8,1],[-10,0],[-11,1],[-11,0],[-8,1],[-20,0],[-40,0],[-22,0],[-2,0],[-37,1],[-13,0],[-29,0],[-35,1],[-53,0],[-46,1],[-33,0],[-21,0],[-11,0],[-60,1],[-33,1],[-48,1],[-11,0],[-18,0],[-16,1],[-46,0],[-66,1],[-27,1],[-2,0],[-87,2],[-38,1],[-53,3],[-13,0],[-28,1],[-12,0],[-43,1],[-22,1],[-8,0],[-81,1],[-1,0],[-70,1],[-126,0],[-104,0],[-102,-1],[-27,0]],[[77097,67006],[0,-31],[-1,-10],[0,-18],[0,-14],[-1,-13],[0,-27],[0,-34],[1,-33],[0,-11],[0,-11],[0,-10],[0,-11],[0,-22],[0,-2],[-1,-20],[0,-13],[0,-11],[0,-10],[-1,-15],[0,-7],[0,-3],[0,-12],[0,-10],[0,-11],[-1,-28],[0,-13],[0,-16],[0,-11],[0,-13],[0,-10],[0,-11],[-1,-14],[0,-12],[-1,-16],[0,-10],[-1,-9],[0,-12],[0,-18],[-1,-13],[0,-12],[0,-11],[0,-10],[0,-12],[0,-1],[-1,-9],[0,-12],[0,-10],[0,-10],[0,-13],[0,-10],[0,-11],[0,-12],[-1,-16],[0,-11],[0,-19],[0,-12],[0,-10],[0,-10],[0,-12],[-1,-14],[0,-21],[0,-11],[0,-10],[0,-13],[0,-13],[0,-15],[0,-10],[0,-10],[0,-12],[0,-10],[0,-14],[0,-13],[0,-4],[-1,-6],[0,-15],[0,-11],[-1,-7],[0,-4],[0,-10],[-1,-11],[1,-15],[0,-30],[0,-15],[0,-3],[-1,-93],[0,-47],[-1,-20],[-1,-158],[0,-90],[0,-89]],[[77081,65424],[-1,-78],[0,-6],[-2,-81],[0,-3],[0,-9],[0,-20],[0,-35],[-1,-105],[0,-2],[-3,-205],[0,-12],[-1,-21],[1,-13],[0,-10],[-1,-13],[1,-26],[-1,-28],[0,-10],[-1,-19],[-1,-71],[0,-4],[-3,-190],[0,-15],[-2,-76],[0,-12],[0,-2],[-1,-58],[0,-50],[0,-41],[1,-48],[0,-11],[-1,-85],[-2,-15],[-1,-54],[0,-7],[-2,-148],[0,-2],[-1,-13],[0,-63],[-1,-75],[-1,-114],[0,-60],[0,-43],[-1,-27],[0,-20],[-1,-16],[-1,-44],[0,-18],[0,-28],[0,-45],[-1,-57],[-1,-10],[-1,-21],[1,-13],[0,-10],[0,-15],[0,-10],[-1,-24],[0,-14],[0,-11],[-1,-54],[-1,-16],[0,-16],[0,-95],[-52,1]],[[76997,62908],[-26,0],[-102,0],[-48,1],[-55,0],[-49,1],[-55,0],[-32,0],[-36,0],[-34,1],[-35,0],[-45,0],[-22,0],[-49,1],[-8,0],[-35,0],[-9,0],[-32,0],[-59,1],[-11,0],[-33,0],[-81,1],[-27,0],[-98,1],[-5,0],[-3,0],[-39,0],[-7,0],[-9,1],[-46,0],[-71,0],[-35,1],[-17,0],[-9,0],[-13,0],[-12,0],[-116,2],[-95,1],[-13,0],[-96,1],[-58,0],[-61,1],[-14,0],[-33,0],[-22,0],[-63,0],[-8,1],[-65,1],[-17,0],[-3,0],[-9,-1],[-1,0],[-12,0],[-27,0],[-66,1],[-37,0],[-33,0],[-44,1],[-8,0],[-64,0],[-11,0],[-1,0],[-8,0],[-20,0],[-105,1],[-20,1],[-29,-1],[-28,1],[-12,0],[-8,0],[-9,0],[-13,0],[-12,1],[-19,-1],[-9,0],[-80,2],[-19,1],[-4,0],[-29,0],[-48,0],[-52,0],[-8,0],[-18,0],[-17,0],[-23,1],[-18,0],[-24,0],[-23,1],[-51,0],[-18,-1],[-10,0],[-10,1],[-14,0],[-29,0],[-14,0],[-8,0],[-8,1],[-38,0],[-54,0],[-41,0],[-9,0],[-52,0],[-8,0],[-73,1],[-18,0],[-3,0],[-38,0],[-20,0],[-6,0],[-9,-1],[-29,0],[-34,1],[-44,1],[-78,0],[-8,0],[-48,0],[-10,1],[-11,0],[-8,0],[-47,0],[-83,3],[-38,0],[-11,0],[-11,0]],[[78768,65687],[0,-47],[0,-37],[0,-16],[0,-58],[0,-15],[-1,-41],[0,-44],[-45,0],[-34,0],[-33,0],[-76,0],[-12,0],[-31,0],[-48,-1],[-14,0],[-16,0],[-17,0],[-22,0],[-30,0],[-25,0],[-2,0],[-17,0],[-22,-1],[-25,0],[-111,-1],[-12,0],[-29,-1],[-14,0],[-32,4],[-62,-1],[-47,0],[-80,-1],[-67,-1],[-51,0],[-18,-1],[-39,0],[-14,0],[-26,0],[-13,0],[-22,-1],[-44,-1],[-14,0],[-24,0],[-77,-1],[-22,0],[-112,-1],[-44,0],[-11,-1],[-12,1],[-9,0],[-28,1],[-80,2],[-13,0],[-90,0]],[[83807,64549],[-1,5],[-11,33],[-3,2],[-3,1],[-8,-1],[-8,-3],[0,-2],[-1,-23],[0,-3],[-1,-1],[-7,-26],[-3,-3],[-3,0],[-34,-1],[-1,0],[-3,0],[-17,0],[-13,-7],[-1,0],[-11,-10],[0,-2],[-23,-20],[-1,-1],[-30,-21],[-18,-1],[-1,0],[-5,1],[-2,2],[-1,2],[2,1],[4,4],[2,4],[1,3],[-1,4],[-17,17],[-4,1],[0,1],[-10,0],[-2,-2],[-5,-15],[-4,-3],[-2,-1],[-4,0],[-4,3],[-39,47],[-5,30],[-19,12],[0,3],[-3,15],[0,4],[-3,22],[-3,-1],[-14,-3],[-28,3],[-14,2],[-18,2],[-5,0],[-1,13],[-2,15],[-1,11],[-4,21],[-2,8],[-5,9],[-6,7],[-4,2],[-61,8],[-10,11],[-6,6],[0,1],[-3,16],[-1,3],[-2,0],[-51,17],[-25,0],[-2,-2],[-2,-1],[0,-1],[-8,0],[-9,1],[-8,2],[-18,8],[-6,3],[-25,22],[-5,5],[-15,1],[-41,8],[-1,0],[-4,-10],[-3,-11],[-8,-3],[-4,0],[-3,2],[-16,40],[0,4],[2,2],[3,1],[-4,19],[-19,22],[-5,6],[-3,1],[-4,-1],[-3,-2],[2,-10],[0,-4],[-2,-2],[-10,-2],[-37,-5],[-3,0],[-10,5],[-9,17],[-2,0],[-11,0],[-32,-19],[-2,-1],[-5,1],[-1,0],[-45,12],[-3,2],[-2,2],[-7,18],[-4,10],[-5,47],[0,1],[0,5],[1,2],[12,17],[1,2],[14,19],[0,3],[0,7],[-1,4],[-2,2],[-3,0],[-6,-1],[-7,-5],[-1,0],[-4,0],[-15,11],[0,1],[0,4],[-5,1],[-4,2],[-21,8],[-7,-6],[-10,5],[-2,-10],[-6,-8],[-10,6],[-8,-3],[-5,13],[-7,6],[-11,6],[-8,-9],[8,-9],[-3,-9],[-5,9],[-8,3],[-14,-3],[-2,-15],[-10,-1],[-6,6],[-4,13],[-7,11],[-9,1],[-13,-5],[-10,-5],[-2,11],[11,1],[-5,11],[-19,3],[-12,8],[-8,0],[-2,-11],[6,-14],[-8,-3],[-11,-2],[-6,6],[-4,2],[-6,2],[-8,0],[-13,-2],[-8,-13],[-9,-2],[-6,7],[-8,3],[-5,8],[-6,-10],[4,-20],[4,-11],[-8,-2],[0,-13],[-12,-6],[-11,-2],[-12,-5],[-11,-7],[-9,-2],[-10,9],[9,3],[11,0],[4,10],[-7,7],[5,11],[-7,8],[-20,-22],[-2,-2],[-23,-9],[-62,-3],[-4,0],[-3,2],[-31,32],[-11,11],[-8,1],[-9,-5],[-9,-7],[-10,0],[-8,-5],[-8,2],[-10,-3],[-7,-5],[-6,9],[-3,-8],[-8,1],[-10,4],[-6,13],[-8,-2],[-7,-4],[-7,6],[-8,9],[4,9],[-7,12],[-8,0],[-8,2],[-9,11],[-4,8],[8,9],[4,8],[-13,0],[-8,-3],[-5,-4],[-1,-4],[0,-2],[-3,-2],[-18,-5],[-8,0],[-6,3],[-1,0],[-4,2],[-66,80],[-2,4],[0,3],[2,4],[1,5],[-1,7],[-3,3],[-18,9],[-3,0],[-1,-1],[-17,-12],[-4,3],[9,5],[-1,10],[-2,13],[-13,2],[4,-12],[-8,-5],[-17,16],[-2,2],[-13,10],[-36,20],[-11,11],[0,1],[-3,4],[-2,6],[0,1],[1,10],[-1,4],[-11,16],[-17,9],[-12,7],[-20,0],[-3,0],[-1,1],[-13,11],[-25,25],[-14,14],[9,4],[0,13],[-12,10],[-19,5],[-15,2],[-14,3],[-6,-6],[-14,1],[-2,3],[-3,4],[-3,16],[-8,0],[-13,15],[-12,0],[-10,5],[0,10],[7,5],[-7,9],[-9,-4],[-2,1],[-6,6],[4,10],[14,5],[-6,10],[-9,-1],[-4,9],[-5,5],[-2,3],[-8,-6],[-7,6],[7,26],[-8,5],[5,12],[1,0],[11,-1],[-3,9],[2,10],[-6,7],[-8,10],[-6,4],[-3,1],[-7,9],[-4,5],[-6,8],[-8,11],[-2,1],[-5,2],[-5,11],[-7,5]],[[45591,66829],[0,-61],[-2,-169],[-2,-206],[-1,-75],[0,-46],[0,-28],[-1,-48],[0,-32],[-1,-122],[-1,-41],[-1,-72],[0,-25],[-1,-21],[1,-15],[-1,-29],[0,-23],[0,-29],[-1,-25],[0,-19],[-1,-74],[0,-43],[-1,-56],[-1,-90],[-1,-75],[-1,-26],[-1,-108],[-1,-67],[-1,-52],[0,-53],[-2,-111],[-2,-160],[-1,-116],[0,-37],[0,-7],[1,-95],[0,-51],[0,-41],[0,-38],[-1,-29],[0,-11],[-2,-112],[1,-72],[1,-18],[0,-20],[-2,-32],[-1,-11],[-1,-36],[-2,-144],[0,-18],[0,-27],[-1,-82],[0,-2],[-2,-99],[-1,-74],[0,-86],[-1,-126],[0,-84],[0,-60],[0,-72],[0,-12],[0,-58],[0,-184],[0,-37],[0,-33],[-1,-78],[0,-23],[0,-83]],[[45555,62720],[-17,0],[-23,0],[-2,0],[-109,0],[-132,0],[-66,0],[-151,0],[-49,0],[-107,-1],[-27,0],[-24,0],[-1,0],[-33,1],[-194,1],[-131,2],[-122,1],[-9,0],[-82,0],[-49,1],[-13,0],[-25,0],[-17,0],[-19,0],[-154,2],[-36,0],[-24,0],[-3,0],[-16,0],[-169,3],[-50,1],[-22,0],[-116,2],[-36,1],[-48,1],[-14,0],[-14,0],[-74,1],[-13,1],[-19,0],[-139,2],[-30,1],[-18,0],[-25,0],[-12,1],[-8,0],[-16,0],[-8,0],[-49,1],[-60,1],[-11,1],[-33,0],[-30,0],[-26,0],[-63,1],[-38,0],[-38,0],[-18,0],[-1,0],[-12,0],[-10,0],[-79,0],[-68,0],[-92,1],[-22,0],[-6,0],[-44,0],[-32,0],[-67,0],[-120,0],[-40,0],[-54,1],[-58,-1],[-22,0],[-13,0],[-21,0],[-17,-1],[-29,0],[-107,-1],[-60,0],[-57,-1],[-14,0],[-23,0],[-12,0]],[[41643,62743],[0,107],[1,49],[0,91],[0,14],[0,42],[0,67],[0,19],[0,15],[0,52],[0,22],[0,28],[0,28],[0,46],[0,4],[0,14],[0,24],[0,12],[0,66],[0,76],[0,12],[1,77],[-3,10],[0,15],[1,23],[1,14],[0,12],[0,11],[0,35],[0,49],[0,17],[0,29],[0,11],[0,35],[1,40],[0,29],[0,84],[0,44],[0,11],[0,21],[0,129],[0,116],[0,31],[0,61],[0,12],[0,80],[0,35],[0,100],[0,38],[0,42],[0,1],[0,40],[1,45],[0,26],[0,47],[0,24],[0,37],[1,72],[0,11],[0,47],[0,39],[0,75],[0,16],[1,50],[0,45],[0,24],[0,12],[0,44],[0,58],[0,28],[1,92],[0,18],[0,68],[1,88],[0,48],[0,51],[0,17],[0,76],[0,60],[0,142],[0,204],[0,12],[0,28],[0,27],[0,84],[0,54],[0,45],[0,25],[0,46],[0,70],[0,32],[0,17],[2,43]],[[49486,66796],[0,-10],[-1,-37],[0,-35],[-1,-106],[0,-11],[-1,-136],[0,-129],[0,-10],[-1,-76],[0,-34],[0,-31],[-1,-52],[0,-23],[0,-2],[0,-40],[0,-18],[0,-10],[0,-35],[0,-56],[0,-152],[0,-104],[0,-136],[0,-66],[0,-12],[0,-18],[1,-97],[-1,-51],[0,-33],[-1,-83],[0,-30],[-2,-192],[-1,-67],[-1,-35],[0,-41],[-1,-27],[0,-184],[-1,-10],[0,-15],[0,-17],[2,-30],[2,-41],[-3,-18],[-1,-17],[0,-23],[-1,-20],[0,-19],[2,-149],[-1,-62],[0,-37],[0,-98],[0,-58],[0,-37],[0,-3],[0,-60],[0,-18],[0,-21],[0,-36],[0,-25],[1,-10],[1,-11],[-1,-15],[-1,-11],[0,-37],[0,-18],[0,-13],[0,-32],[-1,-17],[0,-81],[-1,-48],[0,-80],[0,-56],[-1,-14],[0,-27],[0,-49],[-1,-113],[-1,-214],[0,-30],[0,-27],[-1,-203]],[[49468,62697],[-21,0],[-115,1],[-71,1],[-70,1],[-32,0],[-10,1],[-18,0],[-13,0],[-31,1],[-97,1],[-98,1],[-22,0],[-9,0],[-9,0],[-18,1],[-100,1],[-18,0],[-7,1],[-8,0],[-23,0],[-55,0],[-9,0],[-11,0],[-92,-1],[-30,0],[-13,0],[-18,0],[-8,0],[-6,0],[-80,1],[-18,0],[-46,0],[-83,0],[-8,0],[-46,0],[-49,0],[-51,0],[-121,0],[-15,0],[-35,-1],[-28,1],[-17,0],[-8,0],[-105,-1],[-25,0],[-3,0],[-41,0],[-39,1],[-35,0],[-19,0],[-38,0],[-45,0],[-20,0],[-69,1],[-25,0],[-21,0],[-1,0],[-9,0],[-21,0],[-13,0],[-11,0],[-93,1],[-11,0],[-23,0],[-158,1],[-11,0],[-67,1],[-153,1],[-185,1],[-31,1],[-8,0],[-87,0],[-66,1],[-18,0],[-48,0],[-45,1],[-6,0],[-171,1],[-43,0],[-99,1],[-35,0],[-110,3],[-20,0],[-133,-1],[-115,0]],[[41643,62743],[0,-14],[0,-14],[0,-6]],[[41643,62709],[-8,0],[-10,0],[-24,0],[-5,0],[-81,0],[-115,-1],[-10,0],[-93,0],[-38,0],[-65,0],[-65,0],[-51,0],[-12,1],[-8,0],[-56,0],[-158,1],[-11,0],[-170,0],[-22,0],[-6,0],[-139,1],[-24,0],[-16,0],[-67,0],[-14,0],[-23,0],[-22,0],[-42,0],[-43,1],[-88,0],[-5,0],[-8,0],[-29,1],[-57,0],[-16,0],[-137,1],[-12,0],[-46,0],[-54,0],[-19,1],[-21,0],[-57,0],[-84,1],[-18,0],[-56,0],[-17,0],[-31,0],[-83,0],[-93,1],[-84,0],[-21,0],[-15,0],[-2,0],[-29,-1],[-11,0],[-57,0],[-62,1],[-21,0],[-14,0],[-13,0],[-48,0],[-22,0],[-9,0],[-29,0],[-106,0],[-23,0],[-51,0],[-22,0],[-46,0],[-40,0],[-23,0],[-11,0],[-71,0],[-18,0],[-55,0],[-62,0],[-35,0],[-63,0],[-39,1],[-21,0],[-103,0],[-167,1],[-135,1],[-42,-1],[-15,0]],[[37729,62719],[1,17],[-1,40],[0,100],[0,57],[-1,66],[0,17],[0,23],[0,63],[0,12],[0,44],[-1,47],[0,15],[0,104],[0,31],[0,46],[-1,10],[0,109],[0,60],[0,30],[0,46],[-1,56],[0,2],[0,27],[0,72],[-1,50],[0,47],[0,39],[0,36],[0,24],[-1,91],[0,61],[-1,57],[0,29],[-1,166],[-1,51],[0,40],[0,57],[0,20],[0,64],[-1,120],[0,63],[0,13],[0,1],[-1,38],[0,62],[-1,77],[0,16],[0,1],[-1,156],[-1,57],[0,15],[0,144],[-1,73],[0,76],[0,11],[0,12],[0,21],[0,17],[-1,70],[0,172],[0,100],[-1,40],[0,106],[-1,71],[0,71],[0,35],[0,106],[0,85],[-1,69],[0,135],[0,68],[0,68]],[[37729,62719],[-13,1],[-34,0],[-11,0],[-21,0],[-43,0],[-2,0],[-35,0],[-11,0],[-9,0],[-9,-1],[-9,0],[-9,0],[-9,0],[-25,0],[-9,0],[-15,0],[-51,0],[-32,0],[-69,0],[-56,0],[-18,0],[-30,0],[-32,-1],[-23,0],[-17,0],[-10,0],[-19,0],[-18,0],[-116,-1],[-103,-1],[-32,0],[-10,0],[-125,-2],[-47,0],[-51,0],[-35,0],[-135,-1],[-24,-1],[-93,0],[-1,0],[-15,0],[-133,-1],[-3,0],[-110,-1],[-23,0],[-21,0],[-114,0],[-46,-1],[-88,0],[-67,0],[-68,-1],[-67,0],[-50,0],[-17,0],[-136,-1],[-3,0],[-113,0],[-94,0],[-56,0],[-3,0],[-82,-1],[-29,0],[-41,0],[-73,-1],[-69,0],[-71,0],[-74,0],[-206,-1],[-41,0],[-102,-1],[-60,0],[-152,-1],[-8,0],[-133,0],[-133,-1]],[[33817,62701],[0,4],[0,9],[0,32],[-1,75],[0,49],[-1,74],[-1,36],[0,100],[-1,78],[-1,79],[0,37],[-1,101],[-1,79],[-1,69],[0,1],[-1,132],[0,18],[-1,74],[0,11],[-1,78],[-1,48],[-1,134],[0,5],[-2,168],[-1,72],[-1,116],[0,1],[-1,107],[-1,46],[-1,100],[-1,70],[-1,71],[1,53],[-1,86],[0,107],[0,32],[0,23],[0,19],[-1,206],[0,16],[-1,101],[0,27],[0,29],[0,39],[-1,30],[0,18],[-1,74],[0,65],[-1,54],[-2,101],[-4,145],[-1,35],[0,16],[-1,35],[-1,34],[0,36],[-1,38],[-1,106],[-2,74],[0,1],[-1,14],[-1,139],[0,56],[-1,55],[0,8],[0,76],[-1,43],[0,21]],[[33817,62701],[-18,0],[-8,0],[-37,0]],[[33754,62701],[-131,-1],[-18,0],[-78,0],[-73,0],[-127,0],[-153,1],[-147,0],[-100,0],[-259,1],[-29,0],[-27,0],[-39,0],[-18,0],[-23,0],[-30,-2],[-146,-1],[-121,0],[-69,-1],[-195,0],[-124,0],[-89,0],[-23,4],[-55,-2],[-24,-1],[-63,1],[-30,-2],[-12,1],[-117,0],[-94,0],[-98,0],[-33,0],[-106,0],[-12,0],[-182,0],[-63,1],[-100,0],[-54,0],[-4,0],[-32,0],[-24,0],[-33,-1],[-44,0],[-271,0],[-47,0],[-89,0],[-238,0],[-11,0],[-23,0],[-136,0],[-92,1],[-48,0],[-334,0],[-149,0],[-194,0],[-38,0],[-14,0],[-63,0],[-1,0],[-22,0],[-89,0],[-96,1],[-317,-1],[-31,0],[-139,0],[-162,0],[-174,0],[-32,-3],[-146,-1],[-26,-1],[-57,-1],[-260,-3]],[[27256,62691],[0,366],[0,1521],[0,31],[0,468],[0,1711]],[[53537,66768],[0,-49],[-1,-196],[-1,-148],[0,-106],[0,-44],[0,-108],[0,-32],[0,-84],[1,-43],[0,-10],[0,-138],[0,-138],[1,-137],[0,-135],[0,-10],[0,-11],[0,-49],[0,-44],[0,-9],[0,-50],[0,-2],[0,-12],[0,-9],[1,-274],[0,-47],[0,-2],[0,-20],[0,-16],[-1,-17],[0,-57],[0,-70],[0,-49],[0,-98],[-1,-58],[1,-10],[-1,-33],[0,-57],[0,-21],[0,-34],[1,-42],[0,-10],[0,-51],[0,-55],[0,-1],[0,-20],[0,-13],[0,-19],[0,-18],[0,-1],[0,-11],[0,-18],[0,-80],[0,-92],[0,-116],[0,-5],[0,-21],[0,-30],[0,-82],[-1,-35],[0,-60],[0,-101],[0,-92],[1,-27],[0,-72],[0,-57],[0,-23],[0,-142],[0,-50],[0,-91],[0,-41],[0,-30],[0,-61],[0,-85],[0,-3],[0,-30],[0,-36]],[[53537,62620],[-97,0],[-5,0],[-17,0],[-6,0],[-9,0]],[[53403,62620],[0,30],[0,13],[0,14],[-6,0],[-3,0],[-197,-1],[-172,0],[-60,0],[-28,0],[-50,0],[-63,1],[-11,0],[-56,-1],[-20,0],[-8,0],[-1,0],[-40,1],[-35,0],[-44,0],[-82,0],[-22,1],[-2,0],[-20,-1],[-14,0],[-3,0],[-4,0],[-15,1],[-124,0],[-8,0],[-8,0],[-27,0],[-44,0],[-48,0],[-70,1],[-58,0],[-53,0],[-109,0],[-110,0],[-8,0],[-11,0],[-174,0],[-6,0],[-61,0],[-116,1],[-112,1],[-49,1],[-180,2],[-79,0],[-20,0],[-157,2],[-31,1],[-74,0],[-29,0],[-100,0],[-21,-2],[-27,3],[-14,0],[-31,1],[-42,-1],[-155,2],[-10,0],[-46,1],[-3,0],[-20,0],[-134,2],[-136,2],[-83,1],[-50,1],[-80,1],[-53,1],[-47,-5],[-87,2],[-49,0],[-25,1]],[[57465,66769],[0,-20],[0,-102],[-1,-136],[1,-34],[0,-89],[0,-35],[0,-3],[0,-47],[0,-27],[0,-56],[0,-76],[0,-39],[0,-12],[0,-42],[0,-33],[0,-17],[0,-70],[0,-20],[0,-47],[0,-30],[0,-36],[0,-106],[0,-18],[1,-71],[0,-84],[0,-98],[0,-39],[0,-25],[0,-33],[0,-88],[0,-18],[0,-85],[0,-82],[1,-99],[0,-23],[0,-2],[0,-11],[0,-1],[0,-20],[0,-28],[0,-39],[-2,-79],[0,-13],[0,-38],[0,-15],[0,-46],[0,-18],[0,-189],[0,-145],[0,-55],[0,-92],[0,-74],[0,-44],[0,-17],[0,-138],[0,-143],[0,-66],[-1,-136],[1,-13],[-1,-118],[0,-68],[0,-10],[1,-28],[0,-32],[0,-39],[0,-79],[0,-93],[0,-69],[-1,-126],[0,-54],[0,-36],[0,-117],[0,-17]],[[57464,62621],[-13,0],[-19,0],[-49,1],[-57,0]],[[57326,62622],[-70,0],[-2,0],[-13,2],[-31,0],[-8,0],[-12,0],[-23,0],[-13,0],[-54,0],[-4,0],[-108,0],[-85,-1],[-95,0],[-72,1],[-10,0],[-10,0],[-25,0],[-16,0],[-1,0],[-97,0],[-34,0],[-34,0],[-141,1],[-51,0],[-27,1],[-40,0],[-38,0],[-67,0],[-84,-1],[-78,0],[-15,0],[-36,0],[-43,0],[-91,-1],[-197,0],[-8,0],[-45,0],[-10,0],[-7,0],[-119,-1],[-19,0],[-55,0],[-57,1],[-3,0],[-105,1],[-43,-2],[-46,0],[-159,0],[-25,0],[-66,0],[-54,0],[-74,0],[-75,0],[-36,0],[-168,0],[-16,0],[-24,-1],[-39,0],[-29,0],[-5,0],[-31,-1],[-47,0],[-24,0],[-30,0],[-25,0],[-50,0],[-62,0],[-49,0],[-70,0],[-131,0],[-23,-1],[-30,0],[-10,0],[-68,0],[-127,0]],[[61421,62625],[-23,0],[-51,0],[-121,0],[-43,0],[-83,0],[-53,1],[-10,0],[-15,0],[-30,0],[-79,0],[-9,0],[-42,0],[-17,0],[-3,0],[-10,0],[-14,0],[-55,0],[-136,0],[-34,0],[-14,0],[-63,0],[-41,0],[-23,0],[-23,0],[-10,0],[-63,0],[-64,0],[-137,0],[-7,0],[-6,0],[-46,3],[-21,0],[-50,-1],[-8,0],[-45,-1],[-8,0],[-10,-1],[-8,0],[-19,0],[-27,0],[-11,0],[-80,0],[-17,0],[-15,0],[-25,0],[-8,0],[-103,-1],[-35,0],[-87,-1],[-33,1],[-152,1],[-14,0],[-19,0],[-9,-1],[-23,0],[-19,0],[-16,0],[-8,0],[-38,0],[-44,0],[-18,0],[-53,-1],[-3,0],[-77,-2],[-47,1],[-45,1],[-66,0],[-40,0],[-30,0],[-40,0],[-20,0],[-14,0],[-16,0],[-25,0],[-33,0],[-92,0],[-18,0],[-4,0],[-27,0],[-61,0],[-47,0],[-67,0],[-108,0],[-72,-3],[-34,0],[-35,0],[-63,0],[-147,0],[-14,0],[-34,0],[-40,0],[-82,0],[-63,0],[-34,0],[-12,0],[-23,0],[-24,0],[-8,0],[-12,0],[-32,0]],[[90881,66039],[-3,-10],[-7,-10],[-4,-9],[-2,-9],[3,-15],[-3,-9],[-11,-12],[1,-13],[11,11],[4,-11],[-1,-11],[5,-13],[4,-32],[0,-15],[0,-9],[7,-7],[8,6],[10,-6],[-3,10],[9,9],[7,-4],[10,-3],[13,-17],[2,-9],[-7,-8],[5,-12],[-7,-7],[-4,-8],[0,-12],[0,-11],[-3,-12],[5,-13],[3,-9],[8,-12],[-5,-10],[-2,-14],[3,-10],[5,-10],[14,1],[8,1],[34,-5],[26,-3],[1,-13],[-8,-3],[-6,-11],[21,-17],[-1,13],[9,12],[14,4],[5,-4],[6,-6],[24,-26],[27,-28],[2,-5],[-41,-26],[-48,-28],[-9,-5],[-29,-17],[-8,-5],[-20,-12],[-7,-4],[-46,-27],[0,-21],[0,-48],[0,-23],[0,-2],[0,-72],[0,-15],[0,-22],[0,-14],[0,-9],[0,-14],[0,-18]],[[90910,65231],[0,-38],[0,-19],[0,-84],[0,-12],[0,-18],[0,-48],[0,-64],[0,-48],[0,-48],[0,-23],[-1,-54],[0,-20],[1,-19],[0,-29],[0,-121],[0,-70],[0,-26],[0,-51],[0,-112],[0,-40],[0,-34],[0,-1],[0,-161],[2,-178]],[[90912,63913],[-6,7],[-2,11],[-1,10],[-1,4],[-1,2],[-1,6],[-3,11],[-9,-7],[-3,-4],[-3,-2],[-27,-5],[-7,6],[-8,1],[-7,4],[-8,6],[-8,-3],[-1,-1],[-6,-5],[-6,-5],[-8,-1],[-7,-3],[-2,-4],[-3,-5],[-8,-4],[-7,6],[-1,0],[-7,5],[-7,-7],[-8,-3],[-9,-1],[-8,2],[-7,2],[-2,0],[-8,4],[-8,-1],[-49,2],[-39,0],[-34,13],[-1,16],[-19,23],[-10,-7],[-18,16],[-5,-9],[-7,-5],[-9,1],[-8,0],[-8,-2],[-8,-4],[-9,-3],[-35,-48],[-24,-33],[-13,-18],[-9,-12],[-29,-41],[-14,-19],[-25,-34],[-23,-32],[-33,-45],[-8,-12],[-15,-20],[-8,-11],[-8,-12],[-14,-19],[-18,-25],[-12,-16],[-47,-65],[-16,-22],[-19,-27],[-7,-10],[-14,-19],[-22,-30],[-6,-9],[-10,-14],[-10,-12],[-8,-12],[-10,-13],[-5,-8],[-5,-7],[-1,0],[-33,-14],[-12,-5],[-17,-6],[-11,-4],[-20,-9],[-8,-3],[-9,-4],[-12,-5],[-27,-11],[-8,-4],[-4,-2],[-13,-5],[-19,-9],[-17,-7],[-10,-4],[-7,-3],[-9,-4],[-12,-5],[-14,-6],[-12,-6],[-17,-9],[-8,-4],[-8,-4],[-14,-5],[-20,-9],[-9,-4],[-9,-4],[-10,-4],[-33,-17],[-8,-3],[-12,-5],[-9,-2],[-8,-2],[-8,-5],[-11,-5],[-8,-3],[-14,-6],[-19,-6],[-16,-7],[-14,-6],[-18,-8],[-21,-9],[-24,-12],[-13,-6],[-11,-5],[-8,-4],[-12,-5],[-8,-3],[-16,-6],[-16,-7],[-9,-3],[-8,-4],[-15,-6],[-16,-7],[-39,-16],[-16,-7],[-12,-5],[-8,-3],[-15,-6],[-28,-12],[-1,-1],[-8,-3],[-12,-5],[-9,-4],[-19,-8],[-7,-3],[-8,-3],[-13,-6],[-8,-3],[-20,-8],[-7,-3],[-22,-11],[-13,-7],[-8,-4],[-10,-4],[-12,-5],[-10,-4],[-9,-4],[-1,0],[-9,-4],[-8,-3],[-2,-1],[-6,-3],[-11,-5],[-15,-7],[-1,0],[-8,-4],[-8,-4],[-7,-3],[-7,-4],[-20,-9],[-8,-4],[-7,-3],[-7,2],[-7,-5],[-4,-8],[-24,5],[-4,2],[-18,3],[-1,0],[-1,0],[-13,2],[-9,1],[-15,-1],[-11,-3]],[[88742,62833],[-7,-4],[-1,0],[-9,-12],[-11,-25],[-6,-21],[-5,-12],[-1,-3],[-1,-2],[-13,-20],[-9,-13],[-27,-32],[-4,-3],[-7,-1],[-19,-2],[-10,-3],[-7,-3],[-8,-6],[-6,-8],[-6,-12],[-5,-8],[-3,-1],[-6,-4],[-5,-1],[-13,0],[-10,3],[-15,5],[-17,9],[-11,9],[-27,23],[-1,2],[0,5],[2,2],[31,33],[1,2],[1,3],[15,52],[1,4],[0,4],[1,6],[-12,51],[-1,2],[-12,34],[-2,2],[-1,1],[-3,3],[-3,12],[-4,11],[-1,5],[-2,1],[-13,4],[-16,3],[-4,-1],[-3,-3],[-4,-4],[-1,-1],[-2,-3],[-1,-4],[0,-4],[-7,-28],[-3,-9],[0,-6],[1,-1],[0,-3],[2,-2],[7,-6],[16,-10],[3,-1],[0,-2],[-1,-3],[-5,-6],[-7,-5],[-7,-3],[-16,-1],[-11,-4],[-8,-4],[-22,-7],[-24,-11],[-27,-10],[-4,-2],[-7,1],[-4,2],[-1,1],[-1,2],[-2,7],[-4,35],[-3,26],[-7,-2],[-22,-6],[-9,-6],[-12,-3],[-8,0],[-10,2],[-64,-3],[-29,-3],[-4,0],[-46,9],[-17,-12],[-3,-2],[-6,0],[-4,3],[1,6],[0,5],[0,1],[0,1],[-3,5],[-5,5],[-7,5],[-6,3],[-22,8],[-13,1],[-2,3],[-1,3],[-1,1],[0,17],[2,15],[3,7],[4,9],[7,9],[13,23],[7,17],[1,4],[1,21],[0,3],[-4,2],[-2,0],[-13,-3],[-4,2],[-25,9],[-8,3],[-3,0],[-45,2],[-8,0],[-7,-2],[-6,-7],[-10,-11],[-9,-9],[-1,-4],[-8,-30],[-2,0],[-28,5],[-7,0],[-17,2],[-4,1],[-16,1],[-14,1],[-6,-1],[-7,-5],[-5,-4],[-10,-15],[0,-5],[2,-2],[4,-2],[2,-2],[0,-2],[-1,-3],[-10,-21],[-24,-22],[-4,-2],[-6,-1],[-4,2],[-3,3],[-1,1],[-1,3],[-3,6],[-2,6],[-4,11],[-3,7],[0,6],[2,12],[0,7],[-2,3],[-3,1],[-2,1],[-16,-2],[-44,-5],[-3,0],[-13,-3],[-6,-2],[-11,-4],[-3,0],[-4,1],[-9,6],[-1,0],[-14,7],[-9,2],[-2,4],[-2,3],[-1,3],[-2,4],[-1,3],[0,2],[-1,4],[-2,12],[-1,21],[2,12],[1,4],[1,16],[0,8],[-2,3],[-4,5],[-9,12],[-6,3],[-1,9],[-3,26],[-1,7],[-4,8],[-7,15],[-3,2],[-4,-1],[-10,-6],[-4,0],[-6,2],[-5,4],[-5,5],[0,1],[0,4],[3,8],[2,6],[-4,-3],[-21,-16]],[[95926,66057],[0,-8],[0,-16],[0,-6],[0,-12],[0,-3],[0,-9],[1,-10],[0,-4],[0,-14],[0,-17],[0,-17],[-1,-14],[0,-7],[0,-5],[1,-7],[0,-11],[0,-27],[0,-83],[-1,-28],[1,-13],[0,-50],[-1,-34],[0,-75],[0,-8],[0,-3],[0,-23],[0,-9],[0,-64],[0,-6],[0,-69],[1,-38],[0,-18],[-1,-25],[0,-51],[0,-5],[0,-28],[0,-6],[1,-5],[0,-5],[0,-5],[0,-5],[-1,-8],[1,-3],[1,-8],[0,-19],[0,-3],[0,-2],[-1,-11],[0,-6],[0,-39],[0,-5],[-1,-31],[1,-16],[0,-6],[0,-4],[0,-7],[0,-4],[-1,-8],[0,-9],[0,-8],[1,-22],[0,-10],[-1,-53],[0,-8],[0,-26],[0,-11],[0,-3],[0,-5],[0,-6],[0,-5],[0,-1],[0,-21],[0,-9],[0,-80],[0,-6],[0,-5],[0,-8],[0,-9],[0,-23],[0,-13],[0,-8],[0,-94],[0,-3],[0,-10],[1,-58],[-1,-16],[0,-12],[0,-55],[0,-85],[0,-59]],[[95926,64293],[-10,-1],[-14,-6],[-12,-4],[-14,-2],[-6,-5],[-47,-35],[-68,1],[-6,-5],[-59,1],[-3,1],[-8,1],[-16,4],[-11,2],[-11,12],[-19,8],[-23,-2],[-13,-7],[-22,1],[-12,10],[-5,16],[-1,23],[0,17],[-5,15],[-6,19],[-8,10],[-5,13],[-8,6],[-7,16],[-9,9],[-14,-1],[-16,-6],[-7,-7],[-12,-9],[-14,-3],[-18,2],[-16,6],[-13,9],[-11,11],[-15,13],[-5,14],[4,20],[8,16],[9,14],[16,10],[16,3],[6,-6],[4,-12],[19,2],[6,5],[6,-7],[8,-2],[8,-1],[21,0],[11,-12],[3,0],[18,2],[5,4],[3,2],[-2,10],[-6,11],[3,9],[10,-1],[14,-1],[6,9],[-4,13],[5,8],[8,5],[12,6],[7,5],[5,13],[-5,7],[-9,2],[-7,2],[-4,11],[-2,7],[-22,6],[-11,-2],[-11,-7],[-7,-7],[-11,-3],[-8,2],[-10,0],[-4,9],[6,9],[44,28],[13,2],[9,-6],[11,8],[-2,13],[0,10],[-6,7],[-1,12],[-7,5],[-7,-5],[-5,-9],[-12,-1],[-14,5],[-10,10],[-4,10],[-2,17],[-3,9],[-14,-2],[-12,-7],[-7,-4],[-5,-8],[-4,-12],[-4,-7],[-8,2],[-9,6],[-7,6],[-4,12],[-4,8],[-13,7],[-11,0],[-7,-4],[-8,-4],[-10,-1],[-7,4],[-15,6],[-8,5],[-8,6],[-8,2],[-11,3],[-21,-2],[-18,-9],[-8,-3],[-12,5],[-7,4],[-10,4],[-2,1],[-16,1],[-13,-3],[-2,0],[-12,13],[-1,1],[-5,2],[-10,-1],[-2,0],[-7,-3],[-1,-2],[-9,-9],[-4,-4],[0,-7],[3,-13],[6,-9],[3,-7],[5,-13],[-1,-13],[-8,-10],[-8,-1],[-12,-7],[-15,-16],[0,-2],[-1,-10],[-1,-17],[-8,-3],[-19,6],[-15,-8],[-4,-3],[-1,0],[-26,-22],[-2,-1],[-12,-13],[-3,-4],[-2,-4],[0,-1],[-2,-41],[0,-1],[-1,-5],[-3,-16],[-5,-5],[-21,-22],[-17,-30],[-18,-55],[-1,-7],[-1,-12],[-5,-20],[-1,-5],[-2,-4],[-1,-5],[-6,-7],[-1,-2],[-2,-1],[-9,-5],[-15,1],[-5,1],[-3,3],[-1,0],[-7,2],[-28,9],[-3,1],[-12,1],[-12,2],[-6,1],[-9,1],[-9,2],[-17,3],[-23,10],[-9,8],[-1,1],[-35,19],[-15,8],[-2,0],[-13,3],[-3,4],[-1,1],[-6,2],[-1,1],[-8,0],[-10,0],[-14,-3],[-8,-2],[-6,-1],[-13,-9],[-4,-3],[-9,2],[-5,0],[-26,5],[-13,3],[-3,0],[-6,2],[-4,5],[-4,8],[0,3],[-2,19],[-2,12],[-2,5],[-1,6],[-1,1],[-9,11],[-3,3],[-10,6],[-3,0],[-6,2],[-11,4],[-2,1],[-1,0],[-17,8],[-7,5],[-12,13],[-6,7],[-1,1],[-2,4],[0,11],[4,8],[11,7],[10,-5],[3,-12],[8,-5],[9,9],[-3,15],[-5,9],[-12,1],[-6,8],[8,5],[10,-1],[12,-3],[8,0],[5,7],[6,8],[-6,13],[4,4],[7,5],[3,2],[1,1],[2,2],[4,11],[0,6],[-4,5],[-39,21],[-2,2],[-2,1],[-13,15],[-2,19],[3,14],[5,18],[-1,16],[-3,10],[-4,10],[-4,11],[-4,7],[-9,7],[-7,3],[-8,3],[-8,5],[-9,5],[-13,22],[-6,19],[-16,7],[-8,-3],[-7,-9],[-4,-16],[0,-11],[6,-15],[-1,-13],[-8,-3],[-4,5],[-10,5],[-1,0],[-7,6],[0,1],[-2,9],[7,4],[2,0],[7,-4],[-2,17],[-3,13],[-1,1],[-6,6],[-11,2],[-7,5],[-13,1],[-7,3],[-9,4],[1,-10],[-8,-1],[-7,-7],[-7,-4],[-8,2],[0,-4],[-1,-7],[5,-11],[1,-10],[-4,-9],[-7,6],[-6,5],[-15,11],[-10,-1],[-5,-4],[0,-1],[-7,-6],[-2,-1],[-2,-2],[-3,-1],[-1,0],[-1,0],[-6,-1],[-8,3],[-20,7],[-3,1],[-2,1],[-1,2],[-1,1],[-2,8],[2,3],[0,3],[-2,1],[-5,6],[-1,1],[-4,4],[-3,1],[-3,2],[-3,-1],[-34,-5],[-4,-2],[-6,-4],[-6,-5],[-8,-17],[-10,-32],[-3,-23],[-1,-4],[-1,-9],[-1,-10],[-2,-3],[-6,-7],[-12,-12],[0,-5],[-1,-4],[0,-3],[0,-1],[0,-13],[2,-8],[2,-2],[4,-5],[4,-7],[0,-1],[2,-3],[0,-5],[-2,-4],[0,-1],[-3,-1],[-31,-16],[-7,-4],[-1,0],[-31,-10],[-26,-8],[-1,0],[-24,-4],[-1,0],[-1,0],[-4,-1],[-48,16],[-10,3],[-11,7],[-7,6],[-23,9],[-8,-11],[-15,-15],[-5,-5],[-3,-3],[-1,-1],[-10,-8],[-18,-15],[-17,0],[-1,0],[-9,-44],[0,-1],[-1,-9],[-5,-12],[0,-1],[-2,-3],[-4,-1],[0,-1],[-1,0],[-16,-6],[-5,0],[-8,5],[-5,3],[-3,2],[-3,1],[-15,4],[-12,1],[-3,0],[-2,-1],[-18,-14],[-4,-2],[-21,-13],[-1,-1],[-4,-5],[-8,-13],[-1,0],[-11,-16],[-9,-13],[-4,-5],[-10,-8],[-2,-2],[-18,-10],[-17,3],[-8,-3],[-27,-15],[-8,-4],[-4,-10],[-2,-9],[0,-1],[-1,-2],[-3,-3],[-5,-3],[-6,0],[-14,2],[-1,0],[-5,3],[-1,3],[-1,11],[-1,9],[-1,2],[-5,6],[-1,0],[-4,1],[-24,-3],[-3,0],[0,-1],[-2,-3],[0,-3],[1,-4],[1,0],[3,-1],[2,-1],[1,-1],[0,-4],[-6,-19],[-12,-19],[-2,-2],[-28,-23],[-8,-4],[-33,-14],[-8,-4],[-3,-1],[-9,1],[-1,0],[-35,11],[-12,0],[-43,0],[-246,-2],[-42,1],[-82,-1],[-160,-1],[-142,-1],[-8,0],[-30,0],[-68,-1],[-28,0],[-14,0],[-12,0],[-84,52],[-10,6],[-206,129],[-73,46],[-9,6],[-8,5],[-12,9],[-22,14],[-22,13],[-15,9],[-29,19],[-17,10],[-16,11],[-56,35],[-32,20],[-94,59],[-71,46],[-54,34],[-10,6],[-58,36],[-8,6],[-2,1],[-5,3],[-26,16],[-61,38],[-219,137],[-21,14],[-23,14],[-25,15],[-71,45],[-102,64],[-8,4],[-7,5],[-7,4]],[[80446,65657],[0,-17],[1,-30],[1,-82],[0,-10],[0,-71],[0,-2],[0,-14],[0,-24],[0,-14],[0,-15],[0,-11],[0,-35],[0,-15],[0,-60],[0,-10],[1,-15],[0,-12],[0,-102],[0,-13],[0,-25],[0,-64],[0,-127],[0,-1],[0,-21],[1,-39],[0,-10],[0,-137],[0,-58],[0,-31],[1,-20],[0,-54],[0,-17],[0,-11],[0,-15],[0,-1],[0,-48],[0,-38],[0,-27],[0,-45],[0,-62],[1,-100],[0,-60],[0,-12],[0,-37],[1,-109],[0,-40],[0,-8],[0,-8],[0,-24],[-1,-27],[1,-85],[-1,-177],[0,-60],[1,-31],[0,-140],[0,-7],[0,-12],[0,-66],[1,-152],[0,-20],[0,-60],[0,-22],[1,-67],[0,-6],[0,-34],[0,-142],[0,-37],[1,-101],[0,-62],[-1,-24],[-2,-40],[0,-128],[0,-63],[0,-29],[0,-29],[0,-84],[0,-47],[0,-103],[0,-52],[0,-23],[0,-47],[0,-27],[1,-121],[0,-90],[0,-29],[0,-44],[0,-34],[0,-48],[0,-23],[0,-44],[0,-51],[0,-56],[-1,-61],[0,-57],[0,-47]],[[80453,61147],[-20,0],[-21,0],[-8,0],[-2,0],[-11,0],[-4,0],[-5,0],[-21,0],[-35,0],[-41,0],[-26,0],[-19,0],[-11,0],[-31,0],[-9,0],[-16,0],[-19,0],[-31,0],[-13,0],[-35,1],[-26,0],[-56,1],[-65,1],[-10,0],[-27,0],[-43,0],[-66,1],[-27,0],[-9,0],[-33,1],[-15,0],[-72,0],[-85,1],[-29,2],[-21,1],[-3,0],[-10,1],[-11,1],[-19,1],[-13,1],[-10,0],[-14,0],[-13,0],[-13,-1],[-19,0],[-27,0],[-68,0],[-18,0],[-25,-1],[-14,0],[-8,0],[-2,0],[-9,0],[-32,0],[-11,0],[-21,0],[-10,0],[-21,0],[-13,0],[-16,0],[-9,0],[-19,0],[-38,-2],[-12,1],[-21,0],[-13,0],[-9,1],[-12,0],[-132,1],[-66,1],[-21,0],[-17,0],[-72,0],[-21,-1],[-83,0],[-10,0],[-93,0],[-82,0],[-18,0],[-149,-5],[-12,1],[-1,0],[-39,1],[-9,0],[-97,1],[-98,-1],[-192,1],[-123,0],[-14,0]],[[77589,61157],[-6,14],[-9,5],[-3,8],[6,7],[12,7],[14,7],[2,10],[-6,11],[-11,6],[-9,2],[-2,10],[4,9],[6,7],[1,11],[9,2],[6,-10],[-7,-6],[2,-11],[5,-8],[13,-7],[10,5],[3,9],[-6,10],[-4,8],[9,-4],[8,-5],[9,0],[7,5],[1,10],[-7,8],[-9,4],[-9,4],[-5,12],[-3,13],[-3,9],[8,0],[6,-6],[10,-1],[5,9],[-3,12],[5,9],[9,2],[11,3],[8,-2],[7,-4],[12,0],[8,7],[-3,13],[-5,11],[-5,9],[1,10],[6,8],[10,8],[6,8],[0,10],[-8,5],[-10,4],[-2,10],[8,2],[15,-11],[7,4],[-2,16],[-5,14],[-8,9],[-7,9],[-2,9],[-2,10],[-1,14],[-4,13],[-7,9],[3,15],[5,7],[6,7],[7,9],[4,10],[-5,12],[-7,6],[5,11],[11,6],[9,11],[2,11],[-6,10],[-10,2],[-8,-3],[-10,7],[-7,10],[-5,15],[-4,10],[-13,9],[-23,20],[-7,7],[-12,10],[-7,6],[-5,17],[-5,9],[-7,2],[-7,-7],[-11,-2],[-13,3],[-11,1],[-23,13],[-12,5],[-10,4],[-1,0],[-13,9],[-8,7],[-7,6],[-7,5],[-13,9],[-14,13],[-11,6],[-10,5],[-17,8],[-11,7],[-9,11],[-9,12],[-4,9],[-2,13],[-5,10],[-5,8],[-10,12],[-5,8],[1,12],[7,15],[-4,30],[-8,18],[-12,4],[-9,-5],[-9,-1],[-10,6],[-12,2],[-9,5],[-15,6],[-14,1],[-9,-3],[-5,9],[6,8],[10,5],[7,4],[10,4],[4,7],[-2,13],[-6,10],[-2,10],[0,18],[4,10],[6,8],[4,12],[-6,13],[-7,6],[-11,5],[-12,7],[-16,2],[-12,6],[-5,7],[-4,9],[-9,22],[-4,13],[-1,11],[-3,11],[-6,8],[-7,8],[-7,6],[-7,4],[-9,5],[-8,9],[0,10],[5,8],[9,8],[8,8],[8,8],[8,4],[7,1],[8,0],[8,4],[3,10],[-2,10],[-10,5],[-9,-1],[-9,1],[-7,3],[-12,9],[-4,9],[-1,10],[1,12],[6,9],[7,11],[4,9],[8,4],[8,-6],[-4,-9],[4,-11],[5,-10],[8,-6],[10,2],[7,9],[-2,15],[-4,8],[-6,7],[-6,9],[-4,7],[-3,12],[-6,7],[-10,5],[-8,-4],[-7,-6],[-8,4],[-2,14],[0,2],[-2,10],[-4,8],[-3,10],[-4,8],[-2,15],[-3,9],[-11,14],[-2,14],[6,6],[16,-17],[9,-3],[9,11],[7,8],[9,-2],[6,-9],[8,-4],[8,-2],[9,4],[2,10],[-5,7],[-9,16],[-9,4],[-10,2],[-9,4],[-4,8],[7,6],[9,-1],[4,14],[1,12],[4,9],[2,13],[1,11],[6,11],[-2,12],[-6,5],[-8,-6],[-1,-9],[-9,-2],[-11,9],[-11,2],[-4,11],[-2,13],[-1,12],[9,7],[10,1],[4,11],[-6,10],[-7,5],[-8,5],[-5,8],[-8,6],[-10,4],[-10,-4],[-1,-12],[-2,-10],[-3,-9],[-7,-7],[-8,0],[-15,-3],[-8,3],[-4,10],[2,14],[-4,9],[-8,1],[-9,3],[-9,5],[-2,11],[3,15],[4,14],[-6,8],[-11,-5],[-4,-8],[-7,-6],[-10,1],[-3,18],[0,13],[-2,10],[-4,13]],[[84117,64237],[0,-24],[0,-66],[0,-54],[0,-12],[0,-1],[0,-9],[0,-16],[0,-32],[1,-33],[0,-36],[0,-1],[1,-61],[0,-43],[0,-14],[0,-51],[0,-111],[0,-17],[0,-33],[0,-203],[0,-21],[0,-18],[0,-94],[0,-16],[1,-36],[0,-87],[0,-57],[0,-74],[0,-24],[0,-170],[0,-37],[-1,-68],[0,-1],[0,-44],[0,-23],[0,-101],[0,-65],[0,-8],[0,-25],[0,-94],[0,-63],[61,-64],[34,-36],[49,-50],[3,-16],[3,-2],[28,-10],[30,-10],[10,-2],[8,-3],[11,-8],[12,-9],[0,-1],[1,0],[1,-8],[1,-3],[0,-1],[-5,-7],[-1,-1],[1,-3],[2,-3],[5,-2],[4,0],[25,2],[17,-4],[0,-1],[18,-36],[1,-4],[5,-9],[11,-13],[1,0],[19,-23],[12,-15],[1,-1],[-3,0],[0,-3],[6,-12],[44,-74],[2,-3],[3,-1],[13,-3],[9,-2],[8,-4],[2,-1],[15,-11],[10,-9],[11,-9],[9,-13],[7,-11],[23,-33],[0,-15],[4,-2],[3,0],[8,2],[10,0],[33,-8],[8,-3],[1,0],[1,-1],[3,-15],[3,-4],[7,-10],[12,-9],[18,-3],[2,-1],[21,-3],[4,-2],[12,-9],[4,-5],[5,-24],[1,-1],[3,-6],[2,-3],[1,0],[6,-5],[5,-5],[2,-4],[2,-6],[1,-8],[-1,-23],[-4,-14],[-1,-12],[0,-1],[3,-5],[7,-13],[1,-2],[13,-11],[3,-2],[4,-3],[1,0],[6,-3],[2,-1],[6,-16],[2,-9],[-1,-9],[1,-4],[5,-13],[8,-21],[1,-3],[2,-2],[1,-1],[9,-6],[7,-4],[15,-10],[4,-3],[19,-10],[2,-1],[29,-26],[18,-30],[2,-2],[17,-27],[1,-1],[13,-21],[29,-44],[3,-3],[6,-4],[2,-2],[2,-1],[48,-19],[1,-1],[25,3],[9,11],[2,2],[15,1],[3,-1],[11,-10],[1,-1],[2,-2],[8,-9],[20,-33],[10,-18],[3,-47]],[[85223,61125],[-119,-1],[-79,0],[-190,0],[-9,0],[-58,0],[-27,0],[-26,1],[-89,0],[-23,0],[-103,1],[-35,0],[-45,0],[-30,-1],[-65,1],[-41,0],[-41,0],[-39,0],[-34,0],[-49,1],[-11,0],[-12,-1],[-11,0],[-38,0],[-9,0],[-24,0],[-33,1],[-42,0],[-9,0],[-22,0],[-27,0],[-46,1],[-21,0],[-48,1],[-107,2],[-32,0],[-31,0],[-62,1],[-30,0],[-30,0],[-12,0],[-31,0],[-61,0],[-26,0],[-25,0],[-16,-1],[-27,0],[-33,0],[-110,2],[-21,0],[-18,0],[-115,0],[-49,-1],[-17,1],[-12,0],[-37,-1],[-27,1],[-16,0],[-53,1],[-20,1],[-24,0],[-16,1],[-83,0],[-9,0],[-22,0],[-4,0],[-88,2],[-33,0],[-20,1],[-137,1],[-113,0],[-12,1],[-1,0],[-62,1],[-48,0],[-36,0],[-62,-1],[-20,0],[-68,0],[-36,0],[-65,1],[-45,0],[-64,0],[-11,0],[-84,0],[-97,1],[-59,0],[-107,0],[-9,0],[-12,0],[-18,0],[-46,0],[-16,0],[-42,0],[-146,0],[-3,0],[-1,0],[-1,0],[-23,1],[-48,0],[-25,0],[-22,0],[-89,1],[-27,0],[-44,0],[-1,0],[-18,0],[-69,0],[-57,1],[-15,0],[-10,0],[-17,0],[-53,0],[-59,1]],[[95926,64293],[0,-34],[0,-8],[1,-27],[0,-26],[0,-47],[0,-48],[0,-2],[0,-14],[0,-15],[0,-14],[0,-41],[0,-13],[0,-23],[0,-43],[0,-6],[0,-7],[0,-8],[0,-10],[0,-12],[-1,-10],[0,-10],[0,-13],[0,-9],[0,-12],[0,-12],[0,-11],[0,-6],[-1,-8],[1,-11],[0,-10],[0,-11],[0,-13],[0,-8],[0,-10],[1,-21],[0,-8],[0,-11],[0,-5],[0,-13],[0,-12],[0,-10],[0,-10],[0,-12],[0,-12],[1,-24],[-1,-11],[0,-7],[-1,-16],[0,-8],[0,-8],[0,-10],[0,-8],[0,-8],[0,-5],[1,-7],[0,-1],[1,-51],[0,-23],[0,-34],[0,-22],[0,-27],[0,-19],[0,-22],[0,-41],[0,-37],[0,-27],[0,-21],[0,-8],[0,-4],[0,-9],[0,-11],[-1,-17],[0,-29],[0,-12],[0,-4],[0,-10],[0,-15],[0,-13],[0,-13],[0,-3],[-1,-17],[1,-37],[0,-18],[0,-8],[0,-11],[-1,-7],[0,-11],[0,-11],[0,-28],[0,-3],[0,-12],[0,-24],[-1,-31],[0,-49],[0,-51],[-1,-34],[1,-39],[0,-11],[0,-5],[0,-1],[1,-17],[1,-14],[0,-9],[-1,-11],[0,-9],[0,-7],[0,-4],[0,-7],[1,-5],[0,-4],[0,-6],[0,-7],[0,-3],[-1,-14],[1,-23],[0,-10],[0,-4],[0,-13],[0,-15],[1,-25],[-1,-11],[0,-3],[0,-9],[0,-13],[0,-27],[0,-10],[0,-10],[0,-10],[0,-17],[1,-10],[-1,-9],[-1,-12],[1,-10],[1,-41],[0,-7],[0,-14],[0,-9],[0,-58],[0,-18],[0,-11],[0,-44],[0,-41],[0,-3],[0,-32],[0,-26],[0,-32],[0,-21],[-1,-41],[0,-47],[0,-21],[0,-8],[0,-18],[0,-19],[0,-20],[0,-19],[0,-8],[1,-109],[0,-57],[0,-8],[0,-71]],[[95928,61473],[-18,-5],[-35,-9],[-15,-3],[-63,-16],[-8,-2],[-14,-3],[-58,-15],[-19,-5],[-34,-8],[-22,-6],[-47,-11],[-24,-6],[-16,-4],[-49,-12],[-34,-9],[-11,-2],[-87,-22],[-42,-11],[-10,-3],[-21,-4],[-16,-5],[-34,-8],[-70,-18],[-106,-27],[-16,-3],[-10,-3],[-26,-6],[-70,-18],[-74,-18],[-60,-15],[-16,-4],[-81,-20],[-41,-11],[-38,-9],[-101,-26],[-57,-14],[-46,-12],[-13,-3],[-42,-10],[-34,-8],[-16,-4],[-85,-20],[-30,-8],[-13,-3],[-62,-15],[-41,-11],[-19,-4],[-19,-5],[-62,-15],[-80,-21],[-64,-15],[-29,-8],[-221,-53],[-2,14],[-9,-2],[-4,-9],[-3,-17],[2,-4],[2,-3],[1,-3],[0,-1],[0,-6],[-1,-3],[-1,-1],[-6,-5],[-2,0],[0,-1],[-4,2],[-5,4],[-15,15],[-6,6],[-2,2],[-8,11],[0,1],[-2,4],[1,9],[-2,8],[-2,5],[-3,7],[-3,4],[-3,5],[-4,3],[-13,2],[-3,2],[-2,2],[-2,6],[0,7],[-1,0],[-1,23],[0,2],[-4,2],[-27,10],[-5,3],[-4,4],[-1,16],[-1,6],[0,1],[-5,8],[-6,6],[-15,1],[-8,-3],[-7,-4],[-2,-3],[-2,-4],[1,-5],[3,-6],[3,-17],[0,-4],[-3,-3],[-7,1],[-35,8],[-7,2],[-3,2],[-23,25],[-5,5],[0,1],[-6,9],[0,2],[-1,5],[1,3],[1,2],[4,2],[8,-2],[5,-1],[7,1],[2,2],[2,2],[1,3],[-1,4],[-14,36],[-1,1],[-8,11],[-2,5],[-1,0],[-2,13],[-4,54],[-1,8],[2,11],[4,15],[0,2],[-3,3],[-10,4],[-45,17],[-32,2],[-5,0],[-2,-4],[-7,-10],[-3,-4],[-4,-3],[-5,0],[-1,0],[-8,1],[-6,3],[-1,1],[-3,2],[-1,5],[0,1],[-4,8],[-4,2],[-7,4],[-9,3],[-16,2],[-14,-1],[-25,-2],[-42,-10],[-2,-1],[-1,0],[-3,-4],[-1,-4],[6,-8],[3,-9],[0,-6],[-3,-3],[-6,0],[-9,1],[-8,3],[-4,2],[-5,5],[-5,8],[0,2],[0,9],[2,10],[-1,2],[-2,1],[-3,0],[-16,-7],[-2,-1],[-18,-10],[-6,-3],[-3,-3],[-1,-1],[0,-4],[2,-5],[0,-1],[0,-8],[-1,-5],[-6,-11],[-5,-5],[-3,-1],[-1,0],[-52,-7],[-6,-1],[-1,0],[-15,3],[-5,3],[-1,3],[-1,0],[-1,8],[0,1],[0,6],[-1,3],[-3,4],[-5,4],[-5,3],[-2,1],[-3,0],[-13,8],[-2,1],[-1,0],[-5,3],[-3,3],[0,1],[0,1],[-2,5],[0,4],[8,11],[1,2],[-2,11],[-4,7],[-3,3],[-6,2],[-5,-1],[-1,0],[-16,-9],[-2,-1],[-7,-7],[-10,-5],[-18,-6],[-5,0],[-9,2],[-5,3],[-38,25],[-2,4],[0,15],[-6,21],[-2,3],[-5,3],[-18,2],[-71,11],[-4,3],[-3,5],[1,8],[2,7],[4,2],[4,-1],[3,-3],[1,-3],[0,-2],[3,-4],[0,-1],[1,0],[4,0],[3,2],[1,2],[0,6],[-1,3],[-11,29],[-25,51],[-3,3],[-6,6],[-1,0],[-5,-1],[-8,-8],[-5,-3],[-5,0],[-6,2],[-6,3],[-7,7],[-47,33]],[[92511,61492],[-1,1],[-25,7],[-4,-1],[-6,-3],[-4,-3],[-4,1],[-4,1],[-3,3],[-1,4],[0,6],[0,1],[3,13],[-22,4],[-4,0],[-2,-1],[-38,-27],[-2,-2],[-1,-2],[0,-15],[2,-8],[4,-8],[1,-4],[-1,-6],[-1,-5],[-4,-5],[-1,-1],[-2,-1],[-5,0],[-2,2],[-2,1],[1,4],[1,10],[0,4],[-3,2],[-6,2],[-7,-2],[-17,-8],[-4,-4],[-3,-5],[-2,-4],[-2,-13],[-2,-2],[-3,-1],[-4,0],[-10,3],[-1,1],[-4,2],[-4,4],[-20,25],[-34,16],[-4,0],[-4,1],[-3,2],[-4,4],[-3,8],[-2,14],[0,6],[1,3],[1,0],[4,5],[2,1],[4,-1],[1,0],[6,13],[-2,26],[-1,5],[-1,0],[-2,3],[-5,2],[-1,0],[-5,2],[-7,0],[-1,0],[-24,5],[0,1],[-1,0],[-6,-1],[-4,-2],[-1,0],[-13,-12],[-14,-8],[-20,-10],[-13,-3],[-5,0],[-3,1],[-3,4],[-3,2],[-3,12],[-13,12],[-45,39],[-3,3],[-16,1],[-9,0],[-8,-1],[-8,-4],[0,-1],[-15,-12],[-5,-5],[-7,-11],[-6,-11],[-9,-13],[-17,-15],[-8,-4],[-6,-1],[-16,-2],[-14,-4],[-43,-17],[-27,-22]],[[91844,61493],[-34,-12],[-31,-11],[-11,-2],[-8,5],[-12,15],[-4,7],[-21,32],[-6,7],[-8,6],[-6,3],[-9,2],[-18,1],[-6,0],[-12,-4],[-1,0],[-14,-8],[-24,-8],[-16,-1],[-44,-2],[-6,1],[-19,7],[-16,4],[-14,1],[-42,2],[-20,-1],[-40,-8],[-19,2],[-7,1],[-34,14],[-57,26],[-3,1],[-1,3],[-7,30],[-13,0],[-4,2],[-4,5],[-3,6],[-6,12],[-5,6],[-6,6],[-7,4],[-18,3],[-13,-1],[-31,-7],[7,18],[0,6],[-1,2],[-5,3],[-5,0],[-6,-8],[-4,-1],[-6,0],[-7,3],[-7,7],[-2,5],[-2,12],[-4,19],[-1,5],[17,24],[3,7],[0,2],[-1,2],[0,1],[-2,4],[-5,5],[-26,19],[-11,5],[-58,23],[-5,-1],[-11,-6],[-11,-6],[-8,-2],[-4,0],[-5,2],[0,1],[-5,7],[-1,1],[-3,3],[-4,0],[-20,-11],[-16,-9],[-22,-15],[-10,-18],[-2,10],[0,43],[0,64],[0,11],[0,16],[0,38],[-1,67],[0,12],[-1,17],[0,7],[0,4],[0,11],[1,18],[0,21],[0,21],[0,20],[1,18],[0,31],[-1,35],[0,12],[0,11],[1,17],[0,31],[0,18],[0,1],[0,97],[0,25],[0,56],[0,1],[0,35],[0,1],[0,18],[0,67],[0,9],[0,34],[0,15],[0,12],[0,16],[0,13],[0,30],[0,11],[0,6],[0,5],[0,10],[0,11],[0,34],[0,32],[1,20],[0,14],[0,11],[0,13],[0,26],[0,21],[0,39],[0,12],[0,19],[0,12],[0,60],[0,15],[0,14],[0,66],[0,30],[0,58],[0,43],[0,178],[0,61],[0,42],[0,51],[0,23],[0,21],[0,34],[0,39],[0,42],[0,77],[0,29]],[[88742,62833],[0,-53],[0,-23],[0,-11],[1,-111],[0,-10],[0,-9],[0,-2],[0,-11],[0,-12],[0,-10],[0,-18],[0,-16],[0,-10],[0,-11],[0,-38],[0,-17],[0,-18],[0,-27],[0,-11],[0,-43],[0,-15],[0,-9],[0,-18],[0,-41],[0,-25],[0,-2],[0,-19],[0,-26],[0,-12],[0,-11],[0,-24],[0,-50],[1,-24],[0,-14],[0,-15],[0,-12],[0,-11],[0,-27],[-2,-58],[0,-43],[0,-14],[0,-10],[0,-7],[0,-4],[0,-32],[0,-27],[0,-24],[1,-16],[0,-12],[0,-26],[0,-14],[0,-10],[0,-13],[0,-12],[0,-29],[0,-24],[0,-15],[1,-61],[1,-73],[0,-12],[0,-19],[0,-46],[0,-14],[0,-76],[0,-2],[1,-48],[8,-4]],[[88754,61272],[-1,-11],[-4,-53],[1,-32],[0,-96],[0,-18],[0,-35],[1,-163],[0,-47],[1,-52],[0,-38],[0,-23],[0,-5],[0,-115],[0,-10],[0,-80],[0,-34],[0,-24],[0,-38],[1,-10],[0,-17],[0,-12],[0,-11],[0,-12],[0,-37],[0,-13],[0,-11],[0,-11],[1,-10],[0,-37],[0,-18],[0,-59],[-1,-25],[0,-1],[0,-96],[0,-66],[0,-11],[0,-32],[0,-45],[0,-107],[0,-54],[0,-15],[1,-16],[0,-18],[0,-10],[0,-10],[0,-33],[0,-21],[0,-38],[0,-41],[0,-118],[1,-72],[0,-42],[0,-30],[0,-44],[0,-32],[0,-28],[0,-47]],[[88755,59088],[-17,0],[-64,0],[-33,-2],[-56,-3],[-8,0],[-42,0],[-29,-1],[-95,-1],[-86,1],[-13,0],[-156,0],[-123,0],[-106,-1],[-34,0],[-39,2],[-12,0],[-22,0],[-17,0],[-85,-2],[-3,0],[-24,0],[-4,0],[-15,0],[-16,0],[-1,0],[-35,0],[-17,-1],[-64,-1],[-16,0],[-81,0],[-8,0],[-66,-1],[-37,0],[-29,0],[-82,-1],[-147,-1],[-39,-2],[-25,-1],[-62,1],[-30,-1],[-12,0],[-2,0],[-10,0],[-78,-1],[-258,1],[-43,-2],[-101,-1],[-117,-2],[-5,0],[-39,-1],[-14,0],[-9,0],[-42,0],[-11,0],[-11,0],[-9,-1],[-38,-1],[-73,1],[-23,0],[-13,1],[-105,-2],[-146,-1],[-125,0],[-79,0],[-196,0],[-9,1],[-17,0],[-57,-1],[-9,0],[-29,0],[-8,0],[-9,0],[-78,1]],[[85142,59065],[-41,57],[-38,42],[-26,28],[-12,24],[-9,19],[-11,21],[2,9],[-5,10],[-6,7],[7,8],[6,7],[4,11],[6,5],[7,13],[1,13],[-2,11],[5,9],[4,7],[2,12],[9,-2],[8,-1],[1,16],[8,2],[8,-1],[-6,7],[-9,6],[1,12],[8,9],[-2,13],[2,10],[4,12],[-10,3],[5,7],[6,7],[4,8],[10,-8],[10,-6],[6,10],[7,4],[8,-5],[5,16],[8,6],[2,10],[-8,5],[-10,-5],[-8,5],[3,13],[-9,5],[-9,11],[-8,7],[1,14],[-3,12],[9,7],[9,-8],[8,0],[-1,12],[-7,5],[2,9],[13,6],[6,12],[-4,9],[-10,10],[4,13],[3,9],[5,10],[7,10],[-11,1],[-4,8],[-3,12],[-11,5],[-9,4],[-12,-6],[-11,0],[0,13],[11,0],[8,3],[-1,13],[-9,11],[-5,8],[6,11],[-2,12],[-12,6],[-18,-2],[-8,-4],[-9,-4],[-8,5],[-6,5],[-8,-2],[-9,11],[-4,11],[0,14],[7,8],[6,7],[-6,7],[-6,7],[-9,8],[-13,14],[-10,12],[-9,14],[-6,11],[-3,14],[-1,11],[0,15],[2,14],[-8,7],[-9,5],[8,6],[3,9],[-6,9],[5,11],[10,8],[13,-7],[11,-3],[11,6],[-9,9],[-3,14],[2,9],[9,14],[8,2],[7,5],[13,1],[11,2],[7,5],[3,1],[8,3],[9,4],[8,7],[5,6],[11,2],[9,8],[8,3],[-1,11],[-9,8],[-3,11],[3,11],[-5,7],[4,12],[-6,8],[3,11],[4,10],[-7,10],[0,14],[1,11],[0,14],[8,17],[6,7],[9,10],[7,11],[7,7],[6,7],[5,12],[7,4],[5,10],[13,-4],[4,11],[8,2],[5,9],[5,7],[3,11],[3,10],[0,12],[8,2],[0,10],[1,10],[6,9],[8,2],[-4,11],[3,10],[5,10],[3,14],[-2,10],[8,3],[2,10],[-1,11],[-1,7],[15,23],[5,31],[3,22],[-1,13],[-1,5],[-1,11],[-1,2],[-34,53],[-1,3],[-1,1],[-29,60],[-1,1],[7,44],[13,2],[9,9],[1,7],[0,2],[0,2],[-1,4],[-11,32],[-4,12],[-9,17],[0,1],[8,38],[14,61],[0,1],[0,6],[5,45],[0,2],[20,20],[3,4],[17,16],[1,1],[1,28],[0,3],[0,2],[-2,9],[-6,25]],[[91844,61493],[-17,-50],[-4,-11],[0,-1],[-4,-10],[-3,-11],[-5,-13],[-5,-16],[-7,-22],[-4,-12],[-20,-57],[-3,-9],[-3,-10],[-15,-44],[-1,-2],[-1,0],[-10,-1],[-2,0],[-16,-2],[-12,-20],[-3,-6],[-4,-4],[0,-1],[-5,-9],[-4,4],[-2,2],[-6,2],[-8,6],[-33,4],[-12,5],[-11,4],[-14,3],[-7,-11],[-26,0],[-2,-1],[-60,3],[-16,5],[-9,6],[-10,9],[-5,6],[-39,27],[-44,18],[-27,0],[-29,-9],[-21,-6],[-15,-4],[-23,1],[-21,10],[-43,9],[-50,1],[-47,-6],[-29,-2],[-3,0],[-36,0],[-10,0],[-6,0],[-11,0],[-26,0],[-35,0],[-54,0],[-36,-1],[-39,0],[-16,0],[-22,0],[-26,0],[-2,0],[-16,0],[-12,0],[-19,0],[-38,0],[-12,0],[-28,0],[-33,0],[-37,0],[-21,0],[-9,0],[-27,1],[-22,0],[-17,0],[-25,0],[-9,0],[-13,0],[-17,0],[-11,0],[-31,0],[-54,1],[-22,0],[-55,0],[-18,1],[-10,0],[-16,0],[-36,0],[-9,0],[-15,0],[-29,0],[-14,0],[-30,1],[-32,0],[-23,0],[-63,0],[-13,0],[-8,0],[-17,1],[-24,0],[-8,0],[-8,0],[-13,0],[-27,0],[-14,0],[-11,0],[-9,1],[-10,-2],[-13,0],[-24,0],[-11,0],[-12,0],[-15,0],[-8,0],[-8,0],[-9,0],[-10,-1],[-12,0],[-12,0],[-6,0],[-2,0],[-9,0],[-10,0],[-11,0],[-8,-1],[-8,0],[-9,-1],[-11,0],[-24,-2],[-23,-1],[-14,-1],[-10,0],[-13,-1],[-8,0],[-33,-2],[-13,-1],[-15,0],[-12,1],[-1,0],[-7,0],[-8,0],[-20,0],[-26,1],[-12,0],[-18,0],[-28,1],[-13,0],[-13,1],[-25,0],[-16,1],[-3,0],[-6,0],[-41,1],[-13,0],[-10,0],[-12,1],[-9,0],[-9,0],[-38,0],[-18,1],[-27,0],[-15,0],[-95,1],[-35,1],[-40,0],[-95,2]],[[68722,63003],[1,-87],[-1,-60],[0,-39],[0,-3],[1,-21],[0,-1],[0,-9],[1,-17],[0,-18],[0,-11],[0,-25],[1,-30],[0,-9],[2,-71],[1,-46],[1,-29],[3,-60],[1,-27],[-1,-21],[-1,-25],[-2,-58],[-1,-47],[-6,-72],[2,-82],[0,-38],[1,-81],[1,-65],[0,-21],[1,-64],[0,-51],[1,-13],[-1,-15],[3,-117],[0,-29],[1,-33],[0,-13],[0,-55],[1,-55],[1,-89],[1,-202],[0,-4],[0,-6],[0,-14],[1,-44],[0,-52],[0,-21],[0,-4],[0,-36],[1,-49],[0,-20],[-1,-84],[0,-36],[1,-42]],[[68736,60782],[-16,0],[-61,0],[-10,-1],[-19,0],[-112,-2],[-56,-1],[-57,0],[-32,-1],[-22,-1],[-11,0],[-20,0],[-111,-2],[-1,0],[-8,0],[-24,-1],[-10,0],[-35,-1],[-13,0],[-73,-1],[-16,-1],[-5,0],[-26,0],[-26,-1],[-26,0],[-42,-1],[-24,0],[-5,0],[-4,0],[-12,0],[-31,-1],[-9,0],[-9,0],[-50,-1],[-2,0],[-35,0],[-8,-1],[-12,0],[-25,0],[-41,0],[-2,0],[-7,-1],[-20,0],[-1,0],[-33,0],[-3,0],[-18,-1],[-18,0],[-38,-1],[-43,-4],[-15,-10],[-2,-1],[-22,-14],[-7,-4],[-37,-23],[-12,-8],[-16,-10],[-65,-41],[-15,-10],[-57,-35],[-7,-5],[-8,-5],[-12,-7],[-45,-28],[-10,-6],[-65,-41],[-94,-58],[-78,-49],[-42,-27],[-11,-7],[-12,-7],[-23,-15],[-36,-23],[-7,-4],[-17,-12],[-19,-12],[-50,-31],[-92,-57],[0,-1],[-38,-23],[-37,-24],[-36,-22],[-34,-22],[-9,-5],[-8,-5],[-8,-5],[-14,-9],[-7,-4],[-51,-33],[-8,-5],[-14,-9],[-22,-13],[-30,-19],[-32,-20],[-9,-6]],[[66221,59983],[-20,57],[-4,10],[-9,25],[-2,10],[-7,17],[-14,38],[-32,87],[-15,43],[-22,67],[-10,25],[-4,11],[-4,11],[-4,11],[-16,47],[-9,27],[-4,11],[-20,56],[-36,104],[-36,104],[-29,84],[-18,53],[-1,2],[-46,133],[-1,3],[-19,53],[-7,22],[-8,22],[-11,33],[-1,1],[-7,21],[-7,21],[-5,10],[-14,33],[-18,38],[-4,10],[-7,16],[-5,10],[-5,15],[-5,12],[-5,15],[-16,42],[-7,20],[-23,63],[-6,15],[-5,15],[-5,12],[-9,26],[-7,20],[-44,122],[-17,47],[-4,12],[-19,52],[-19,54],[-27,76],[-33,92],[-17,48],[-14,38],[-8,23],[-31,86],[-29,81],[-28,79],[-6,17],[-4,10],[-4,10],[-5,14],[-6,18],[-7,19],[-3,9],[-3,11],[-3,10],[-35,100]],[[72758,62946],[0,-30],[1,-66],[0,-31],[0,-92],[0,-10],[0,-9],[-1,-72],[0,-10],[1,-68],[0,-2],[0,-9],[0,-67],[0,-15],[0,-177],[0,-48],[1,-46],[0,-61],[-1,-14],[0,-10],[0,-10],[0,-71],[0,-86],[0,-10],[0,-1],[0,-27],[-1,-30],[0,-29],[-1,-110],[0,-28],[0,-29],[0,-10],[0,-29],[-1,-61],[-1,-34],[-1,-47],[0,-27],[-1,-30],[1,-84],[0,-13],[0,-11],[1,-12],[0,-14],[2,-26],[0,-23],[1,-24],[0,-12],[2,-41],[-1,-13],[1,-35],[0,-13],[0,-37],[0,-32],[1,-105],[-1,-39],[1,-17],[1,-35],[0,-56],[0,-3],[0,-12],[1,-9],[0,-25],[0,-55],[0,-5],[0,-66],[0,-80],[0,-11],[0,-20],[0,-14],[0,-20],[0,-1],[0,-18],[0,-25],[0,-61],[0,-90]],[[72763,60283],[-48,-13],[-27,-8],[-71,-19],[-64,-18],[-26,-8],[-123,-34],[-4,-1],[-103,-22],[-12,-2],[-19,-2],[-7,-1],[-63,-12],[-9,-2],[-9,-3],[-82,-22],[-18,-4],[-17,-5],[-21,-6],[-2,0],[-19,-5],[-96,-26],[-135,-36],[-80,-21],[-25,-6],[-33,-9],[-82,-22],[-54,-15],[-110,-28],[-43,-12],[-1,0],[-26,-7],[-3,-1],[-51,-14],[-113,-30],[-14,-3],[-37,-10],[-104,-28],[-17,-4],[-96,-26],[-203,-54],[-29,-7],[-31,-8],[-72,-20],[-2,0],[-17,-5],[-3,-1],[-8,-2],[-35,-9],[-15,-4],[-14,-4],[-61,-17],[-111,-30],[-38,-11],[-130,-36],[-74,-20],[-115,-32],[-45,-12],[-25,-7],[-75,-21],[8,-15],[5,-9],[13,-24],[6,-10],[-14,-8],[-10,-6],[-9,-5]],[[69795,59421],[-37,-7],[-18,-3],[-13,-4],[-12,-4],[-4,-3],[-9,-7],[-13,-15],[-7,-9],[-7,-12],[-7,-9],[-13,-11],[-14,-5],[-30,-8],[-12,-3],[-8,-2],[-15,2],[-13,3],[-14,1],[-7,-2],[-8,-4],[-9,-7],[-6,-12],[-3,-11],[-2,-14],[-3,-22],[1,-5],[1,-23],[3,-22],[2,-16],[3,-18],[8,-27],[11,-20],[6,-8],[4,-10],[0,-15],[-6,-12],[-6,-9],[-11,-10],[-12,-8],[-14,-3],[-11,0],[-17,4],[-29,7],[-22,9],[-14,7],[-29,13],[-31,13],[-24,12],[-29,19],[-27,19],[-25,18],[-12,9],[-18,11],[-11,5],[-9,2],[-14,0],[-8,-3],[-8,0],[-9,1],[-10,2],[-20,2],[-21,4],[-3,0],[-5,1],[-8,7],[-6,8],[-4,10],[-2,12],[3,9],[7,10],[12,13],[6,8],[8,10],[9,11],[2,13],[-3,10],[-15,15],[-5,8],[-4,12],[-1,11],[1,17],[1,18],[2,11],[0,14],[-6,20],[-7,12],[-3,3],[-6,6],[-14,9],[-8,6],[-8,5],[-11,2],[-12,-1],[-8,-2],[-13,-5],[-14,-6],[-12,-8],[-14,-6],[-27,-17],[-16,-11],[-13,-7],[-12,-1],[-10,-1],[-13,1],[-15,5],[-11,5],[-9,8],[-4,13],[1,12],[5,8],[5,7],[9,7],[27,13],[18,12],[13,9],[8,9],[9,20],[2,13],[2,15],[-1,21],[-5,25],[-9,24],[-6,12],[-14,19],[-10,9],[-16,11],[-8,3],[-9,2],[-26,0],[-16,-1],[-20,1],[-21,-2],[-15,-3],[-18,-2]],[[68737,59703],[0,19],[0,12],[0,33],[0,48],[0,12],[0,21],[-1,92],[0,15],[1,14],[0,19],[1,20],[1,43],[2,77],[0,13],[2,56],[0,20],[0,28],[-1,38],[-1,116],[0,33],[0,3],[-1,25],[-1,75],[-1,98],[0,4],[-1,53],[-1,78],[0,14]],[[77589,61157],[-11,-13],[14,-16],[10,-7],[14,2],[0,-10],[-5,-9],[1,-15],[-6,-7],[-10,8],[-8,8],[-9,2],[-5,-8],[4,-13],[2,-14],[6,-6],[9,-13],[4,-16],[8,-2],[9,5],[2,1],[7,4],[8,1],[4,1],[9,-2],[11,-2],[9,5],[5,-8],[0,-13],[8,0],[5,8],[6,8],[12,2],[8,-7],[-3,-13],[-3,-13],[5,-13],[8,-2],[15,-7],[4,-7],[18,1],[5,-13],[-6,-10],[2,-24],[7,-19],[7,4],[7,12],[8,10],[6,11],[13,-5],[6,-11],[3,-5],[9,-13],[8,3],[1,11],[5,13],[14,2],[8,-1],[6,-9],[1,-11],[9,-6],[10,-2],[10,0],[10,-7],[11,-17],[10,-15],[9,-6],[14,0],[9,5],[9,3],[10,-2],[8,2],[5,4],[15,11],[9,4],[10,11],[8,5],[13,5],[11,8],[9,-4],[19,-10],[8,-2],[9,-2],[8,-9],[4,-11],[4,-9]],[[78115,60878],[-21,-14],[-11,-5],[-59,-30],[-88,-57],[-7,-4],[-10,-7],[-9,-5],[-19,-13],[-10,-6],[-30,-19],[-43,-28],[-37,-23],[-8,-6],[-27,-18],[-52,-33],[-20,-13],[-124,-79],[-48,-31],[-11,-7],[-50,-31],[-76,-49],[-5,-3],[-7,-4],[-10,-7],[-22,-12],[-15,-10],[-9,-5],[-7,-4],[-87,-51],[-12,-6],[-12,-7],[-4,-2],[-6,-4],[-14,-9],[-8,-5],[-1,-1],[-8,-5],[-7,-5],[-16,-10],[-25,-16],[-10,-6],[-33,-21],[-21,-13],[-31,-19],[-10,-6],[-10,-6],[-31,-18],[-10,-6],[-60,-38],[-3,-1],[-18,-11],[-7,-5],[-32,-20],[-13,-8],[-16,-10],[-78,-49],[-66,-41],[-21,-13],[-16,-10],[-78,-48],[-29,-18],[-23,-14],[-1,-1],[-36,-22],[-11,-7],[-4,-3],[-16,-10],[-1,-1],[-2,-1],[-21,-13],[-11,-7],[-9,-5],[-39,-25],[-17,-10],[-25,-17],[-40,-24],[-39,-23],[-37,-22],[-55,-33],[-40,-23],[-29,-18],[-30,-17],[-29,-18],[-11,-6],[-39,-23],[-24,-15],[-24,-14],[-32,-19],[-67,-40],[-3,-1],[-62,-37],[-15,-9],[-1,-1],[-7,-4],[-7,-4],[-91,-54],[-25,-15],[-11,-7],[-12,-6],[-20,-12],[-36,-21],[-63,-38],[-42,-25],[-57,-34],[-41,-25],[-12,-8],[-20,-12],[-92,-56],[-38,-23],[-123,-76],[-26,-16],[-86,-52],[-8,-5],[-61,-37],[-75,-45],[-127,-78],[-140,-85],[-96,-60],[-10,-5],[-34,-21],[-12,-8],[-14,-8],[-99,-60]],[[74209,58488],[-7,-5],[-62,-37],[-91,-55],[-2,-1],[-103,-63],[-48,-29],[-25,-15],[-9,16],[-86,154],[-66,118],[-5,9],[-25,45],[-38,68],[0,2],[-44,78],[-13,23],[-56,101],[-1,2],[-25,45],[-8,14],[-6,10],[-16,27],[-44,78],[-15,27],[-77,141],[-24,44],[-163,298],[-5,9],[-6,11],[-58,105],[-21,40],[-1,1],[-11,20],[-12,23],[-17,31],[-5,8],[-8,14],[-16,31],[-15,25],[-6,11],[-25,46],[-7,13],[-51,91],[-5,11],[-26,46],[-13,25],[-6,9],[-34,60],[-6,11],[-13,22],[-20,37]],[[41643,62709],[0,-106],[0,-13],[0,-17],[0,-50],[1,-39],[-1,-46],[-1,-20],[0,-3],[-1,-34],[-2,-82],[1,-16],[0,-35],[-1,-49],[-1,-65],[-1,-54],[-1,-56],[-2,-122],[-1,-29],[0,-16],[-1,-50],[-2,-118],[-3,-152],[0,-36],[-1,-55],[-3,-134],[-2,-50],[0,-11],[-2,-87],[-3,-142],[-2,-61],[-2,-91],[0,-7],[0,-4],[0,-22],[-1,-23],[-1,-47],[-1,-39],[-1,-69],[-1,-40],[-1,-64],[-2,-57],[-2,-97],[0,-28],[-2,-103],[-3,-105],[0,-25],[0,-55],[-1,-97],[-4,-178],[0,-7],[-1,-15],[0,-14],[-2,-148],[0,-29],[0,-20],[-1,-30],[0,-14],[-1,-50],[0,-12],[-1,-23],[-1,-90],[-1,-65],[0,-11],[-1,-46],[0,-6],[0,-7],[0,-20],[-1,-10],[0,-20],[0,-20],[-1,-21],[0,-24],[-2,-110],[0,-20],[-1,-11],[-2,-70],[0,-39],[-1,-35],[-2,-87],[0,-16],[-2,-108]],[[41571,58612],[-8,0],[-18,0],[-18,0],[-85,0],[-27,0],[-12,0],[-10,1],[-51,0],[-24,0],[-9,0],[-84,0],[-24,0],[-48,0],[-56,-1],[-14,0],[-17,0],[-30,-1],[-40,1],[-24,-1],[-11,0]],[[40961,58611],[-9,0],[-38,0],[-11,1],[-44,0],[-11,0],[-77,1],[-60,-1],[-9,0],[-12,0],[-47,0],[-41,0],[-60,0],[-34,0],[-37,0],[-52,-1],[-43,0],[-19,0],[-30,0],[-66,0],[-23,0],[-18,0],[-43,0],[-62,0],[-21,0],[-61,1],[-14,0],[-36,0],[-2,0],[-19,0],[-33,0],[-25,0],[-16,0],[-9,0],[-71,0],[-12,0],[-15,0],[-1,0],[-8,0],[-28,0],[-14,0],[-48,0],[-25,0],[-64,-1],[-50,0],[-10,1],[-14,0],[-8,0],[-27,0],[-36,0],[-12,0],[-15,0],[-51,0],[-51,0],[-38,0],[-27,0],[-10,0],[-47,-1],[-34,1],[-24,0],[-35,0],[-147,-1],[-97,0],[-12,0],[-73,0],[-70,0],[-24,0],[-1,0],[-19,0],[-78,0],[-21,0],[-83,1],[-109,1],[-127,0],[-31,0],[-46,0],[-34,1],[-83,0],[-17,0],[-239,1],[-29,0],[-82,0]],[[37682,58615],[1,156],[0,24],[1,125],[1,33],[0,14],[1,76],[2,108],[1,95],[0,14],[0,14],[0,10],[0,14],[0,7],[1,16],[0,10],[0,2],[0,7],[1,139],[1,60],[2,94],[1,64],[0,16],[0,27],[0,12],[1,57],[1,99],[1,52],[1,85],[1,44],[1,51],[1,127],[0,14],[0,22],[1,33],[0,1],[0,38],[0,6],[1,74],[0,11],[1,59],[1,75],[0,14],[0,45],[1,38],[2,176],[0,33],[4,276],[2,130],[0,11],[2,120],[0,22],[1,34],[1,106],[2,127],[0,15],[1,147],[1,49],[1,47],[0,40],[4,283],[1,112],[0,30],[1,29],[0,80],[0,18],[0,2],[0,12],[-1,70],[0,11],[0,42]],[[45555,62720],[0,-45],[0,-10],[0,-42],[0,-139],[-1,-140],[-2,-137],[-1,-141],[-1,-58],[0,-25],[-1,-59],[-1,-94],[0,-18],[0,-1],[0,-51],[-1,-23],[-1,-87],[0,-8],[0,-3],[-2,-206],[0,-47],[-1,-23],[0,-22],[-1,-29],[0,-87],[-2,-141],[0,-23],[-2,-127],[0,-17],[-1,-122],[-1,-101],[-1,-13],[0,-18],[-1,-141],[0,-21],[-2,-99],[-1,-79],[0,-23],[-1,-77],[0,-83],[-1,-65],[1,-122],[-2,-131],[1,-76],[0,-196],[0,-17],[0,-211],[0,-20],[0,-22],[1,-31],[0,-65],[-1,-151],[0,-18],[0,-47],[-6,-12],[0,-12],[-1,-74],[0,-22],[-1,-80],[0,-36],[0,-20],[-2,-117]],[[45519,58595],[-55,0],[-56,0],[-17,0],[-27,0],[-52,0],[-2,0],[-29,0],[-12,0],[-158,0],[-8,0],[-17,0],[-33,0],[-81,1],[-100,7],[-29,1],[-15,0],[-32,0],[-61,-1],[-68,2],[-103,1],[-145,1],[-39,-1],[-32,0],[-18,0]],[[44330,58606],[-219,1],[-63,0],[-28,-2],[-106,4],[-82,0],[-10,0],[-76,0],[-27,0],[-52,0],[-51,0],[-53,-1],[-57,0],[-18,-1],[-31,0],[-82,0],[-6,0],[-28,1],[-23,-1],[-72,0],[-61,0],[-14,1],[-31,0],[-125,1],[-23,-2],[-1,0],[-22,0],[-11,0],[-129,0],[-2,0],[-123,0],[-28,0],[-103,0],[-33,0],[-29,1],[-173,0],[-33,0],[-84,0],[-23,0],[-180,0],[-41,1],[-63,1],[-9,0],[-22,1],[-101,-1],[-24,1],[-27,0],[-89,0],[-71,1]],[[49468,62697],[0,-123],[-2,-90],[-1,-53],[0,-4],[0,-3],[0,-7],[0,-32],[-1,-51],[-1,-42],[-1,-52],[-2,-57],[0,-30],[-2,-92],[-1,-48],[0,-12],[0,-2],[0,-8],[-3,-200],[0,-53],[0,-18],[-2,-196],[0,-34],[-1,-39],[-1,-107],[0,-11],[0,-112],[-1,-112],[0,-68],[0,-31],[-2,-268],[0,-97],[-1,-17],[0,-20],[1,-16],[-1,-108],[-1,-49],[0,-9],[-1,-204],[-1,-65],[0,-17],[0,-30],[0,-17],[-1,-30],[-1,-131],[1,-14],[0,-27],[-1,-19],[-3,-14],[3,-10],[0,-16],[-1,-157],[-2,-203],[-1,-93],[0,-33],[-2,-285],[-1,-47],[0,-46],[-5,-71],[0,-14],[1,-50],[0,-1],[-1,-48],[0,-103],[-1,-39],[0,-15],[0,-20],[0,-11],[-1,-13],[0,-3],[0,-11]],[[49427,58569],[-52,0],[-7,0],[-10,0],[-149,-1],[-14,0],[-72,-1],[-64,0],[-52,0],[-61,0],[-102,0],[-36,0],[-14,0]],[[48794,58567],[-36,-3],[-42,-3],[-38,-2],[-54,0],[-85,-1],[-23,0],[-41,-1],[-19,0],[-19,0],[-49,0],[-27,0],[-33,0],[-60,0],[-25,0],[-50,0],[-11,0],[-3,0],[-16,0],[-9,0],[-11,0],[-22,1],[-10,0],[-93,0],[-4,0],[-18,1],[-23,0],[-77,1],[-43,0],[-13,0],[-22,0],[-92,3],[-14,0],[-57,1],[-21,0],[-99,1],[-73,1],[-10,0],[-131,1],[-88,1],[-13,1],[-2,0],[-14,0],[-95,1],[-54,0],[-160,2],[-120,2],[-60,1],[-32,0],[-35,1],[-28,1],[-35,0],[-33,0],[-10,0],[-15,1],[-44,0],[-132,3],[-228,3],[-51,2],[-13,0],[-22,0],[-131,3],[-15,0],[-16,0],[-51,6],[-102,0],[-120,0],[-26,0],[-57,0]],[[37682,58615],[-12,0],[-40,-1],[-100,0],[-33,-1],[-143,-1],[-75,0],[-19,-1],[-131,-2],[-35,0],[-29,0]],[[37065,58609],[-103,0],[-37,0],[-35,0],[-51,0],[-15,0],[-16,0],[-117,0],[-69,0],[-16,0],[-25,0],[-9,0],[-16,0],[-79,0],[-45,0],[-13,0],[-44,0],[-45,0],[-24,0],[-1,0],[-21,0],[-64,0],[-31,0],[-38,0],[-6,0],[-2,0],[-10,0],[-21,0],[-22,0],[-19,0],[-19,0],[-19,0],[-19,0],[-12,0],[-37,0],[-29,0],[-66,0],[-9,0],[-21,-1],[-69,0],[-37,0],[-22,0],[-83,0],[-12,0],[-16,0],[-12,0],[-55,0],[-66,0],[-9,0],[-62,0],[-32,0],[-5,0],[-31,0],[-133,0],[-8,0],[-40,0],[-20,0],[-34,0],[-9,0],[-10,0],[-98,0],[-133,2],[-114,-1],[-76,0],[-3,0],[-21,0],[-119,0],[-22,0],[-108,0],[-49,0],[-87,0],[-104,0],[-33,0],[-120,0],[-14,0],[-33,-1],[-39,0],[-8,0],[-58,0],[-84,0]],[[33752,58608],[0,31],[0,38],[1,247],[0,43],[1,191],[0,106],[0,190],[0,87],[0,18],[0,54],[0,34],[0,37],[0,65],[0,42],[0,34],[0,35],[0,22],[0,13],[0,36],[0,36],[0,49],[0,22],[0,36],[0,66],[0,42],[0,16],[0,12],[0,42],[0,257],[0,21],[-1,141],[0,13],[0,145],[0,14],[0,16],[1,16],[-1,196],[1,93],[0,105],[-1,43],[1,457],[0,22],[0,1],[0,216],[0,160],[0,12],[1,148],[0,116],[0,25],[0,15],[-1,124],[0,81],[0,2],[0,10]],[[33752,58608],[-50,0],[-10,0],[-46,0],[-34,1],[-32,0],[-11,0],[-90,0],[-51,0],[-52,0],[-14,0],[-29,0],[-38,1],[-95,0],[-25,0]],[[33175,58610],[-88,1],[-70,0],[-67,1],[-207,0],[-240,-1],[-46,-1],[-89,-1],[-159,1],[-215,0],[-62,0],[-5,0],[-29,0],[-34,-1],[-95,0],[-151,1],[-60,0],[-28,0],[-32,0],[-59,0],[-27,0],[-16,0],[-19,0],[-47,0],[-24,0],[-37,0],[-70,0],[-34,0],[-22,0],[-8,0],[-33,0],[-34,0],[-44,0],[-173,0],[-82,0],[-35,0],[-231,-1],[-24,0],[-79,0],[-16,0],[-174,-1],[-29,0],[-202,-1],[-51,2],[-35,0],[-37,0],[-78,-2],[-18,0],[-16,0],[-25,-1],[-13,0],[-44,-1],[-384,-6]],[[29278,58599],[-19,12],[-409,-1],[-73,1],[-9,0],[-5,0],[-66,0],[-169,1],[-236,0],[-547,0],[-361,-2],[-38,0],[-87,0]],[[27259,58610],[0,339],[-2,2858],[-1,838],[0,46]],[[53403,62620],[0,-21],[0,-3],[0,-78],[0,-40],[0,-96],[0,-35],[-1,-34],[-1,-69],[1,-39],[0,-3],[0,-95],[0,-68],[0,-64],[0,-80],[0,-7],[0,-2],[0,-52],[-1,-13],[0,-1],[0,-16],[0,-26],[0,-17],[-1,-201],[-1,-138],[-1,-78],[-1,-57],[-2,-139],[-1,-105],[0,-31],[0,-17],[0,-12],[1,-46],[0,-22],[1,-13],[0,-4],[0,-23],[0,-137],[-2,-40],[0,-14],[0,-38],[0,-45],[-1,-60],[-1,-45],[0,-120],[0,-51],[0,-82],[0,-11],[0,-24],[1,-68],[2,-10],[0,-14],[0,-68],[0,-37],[0,-46],[0,-23],[-1,-70],[0,-76],[0,-26],[-1,-98],[0,-34],[-1,-122],[0,-90],[0,-155],[-1,-117],[-1,-67],[0,-17],[0,-80],[0,-23],[-1,-119],[-1,-174],[1,-49],[0,-12],[0,-11],[0,-1],[0,-35],[0,-10]],[[53389,58556],[-12,0],[-47,1],[-50,1],[-97,1],[-28,0],[-17,1],[-12,0],[-59,1],[-21,0],[-115,1],[-23,1],[-15,0],[-11,0],[-52,0],[-1,0],[-68,1]],[[52761,58564],[-55,0],[-58,-1],[-47,0],[-117,-2],[-96,-1],[-64,-1],[-129,-1],[-60,-2],[-85,0],[-10,0],[-33,0],[-14,1],[-12,1],[-79,-1],[-25,0],[-41,-1],[-15,1],[-2,0],[-56,1],[-58,0],[-39,0],[-95,1],[-38,0],[-24,0],[-24,0],[-40,1],[-7,0],[-16,0],[-9,0],[-23,0],[-54,1],[-15,0],[-64,1],[-10,0],[-21,-1],[-31,1],[-9,0],[-30,0],[-15,0],[-29,0],[-26,1],[-9,0],[-25,0],[-51,0],[-74,0],[-9,1],[-50,0],[-30,0],[-40,0],[-37,1],[-81,0],[-100,1],[-31,-1],[-13,1],[-12,0],[-8,0],[-98,-1],[-103,1],[-23,1],[-8,0],[-3,0],[-68,0],[-31,0],[-89,0],[-156,1],[-59,0],[-18,1],[-18,-1],[-25,1],[-2,0],[-64,0],[-8,0],[-12,0],[-101,0],[-40,0],[-130,0],[-33,0]],[[62190,62605],[1,-90],[0,-1],[0,-30],[0,-115],[0,-10],[0,-71],[0,-140],[0,-37],[-1,-10],[-1,-17],[0,-32],[-1,-109],[0,-38],[0,-22],[0,-18],[-1,-17],[1,-30],[0,-43],[0,-17],[0,-59],[1,-82],[1,-139],[-1,-23],[0,-22],[-1,-110],[-1,-11],[3,-16],[0,-87],[1,-62],[0,-51],[0,-19],[1,-160],[1,-28],[0,-10],[0,-147],[1,-16],[0,-74],[0,-23],[0,-20],[-3,-2],[-16,-9],[-89,-54],[-8,-5],[-16,-10],[-11,-7],[-26,-15],[-31,-18],[-33,-21],[-71,-43],[-10,-6],[-8,-5],[-16,-10],[-18,-11],[-14,-8],[-38,-24],[-33,-20],[-14,-8],[-25,-15],[-15,-9],[-27,-17],[-16,-10],[-44,-26]],[[61612,60246],[-25,-15],[-3,-3],[-13,-8],[-25,-16],[-25,-17],[-3,-3],[-42,-28],[-13,-9],[-11,-7],[-102,-64],[-25,-15],[-144,-91],[-108,-70],[-26,-14],[-25,-17],[-23,-15],[-19,-12],[-135,-89],[-60,-39],[-1,-1],[-7,-4],[-13,-8],[-18,-11],[-96,-56],[-97,-57],[-78,-46],[-9,-5],[-28,-17],[-31,-18],[-13,-8],[-48,-28],[-45,-26],[-8,-5],[-45,-26],[-70,-42],[-39,-22],[-43,-25],[-18,-12],[-28,-19],[-34,-21],[-12,-7],[-42,-25],[-103,-62],[-46,-28],[-72,-44],[-20,-11],[-19,-10],[-57,-32],[-16,-9],[-98,-61],[-8,-5],[-52,-28],[-24,-13],[-90,-50],[-32,-17],[-68,-37],[-113,-71],[-20,-12],[-32,-19],[-28,-17],[-10,-5],[-5,-3],[-22,-13],[-1,-1],[-31,-18],[-102,-61],[-17,-10],[-11,-6],[-94,-56]],[[58771,58526],[-37,1],[-46,1],[-67,1],[-81,2],[-63,1],[-5,0],[-59,2],[-58,1],[-88,2],[-47,1],[-27,-1],[-8,-5],[-8,0],[-2,0],[-61,1],[-198,2],[-96,0],[-40,1],[-68,0],[-33,1],[-51,0],[-5,0],[-24,0],[-50,1],[-50,0],[-207,2]],[[57292,58540],[0,15],[0,16],[2,251],[0,16],[0,39],[0,16],[0,1],[0,29],[0,28],[0,12],[0,15],[0,18],[0,3],[1,12],[0,40],[2,163],[2,209],[0,17],[0,41],[1,35],[0,5],[0,28],[0,47],[0,10],[1,42],[0,136],[1,114],[0,31],[0,21],[0,55],[0,21],[1,105],[-2,12],[0,25],[0,13],[1,85],[1,52],[0,13],[0,72],[1,33],[1,146],[0,26],[0,24],[0,37],[0,87],[0,72],[1,28],[0,31],[0,26],[1,46],[1,24],[0,11],[0,38],[0,22],[1,121],[0,26],[0,16],[1,39],[1,52],[-1,22],[1,3],[1,30],[0,18],[1,25],[0,12],[2,131],[1,55],[1,27],[0,27],[0,27],[1,44],[0,53],[0,14],[1,88],[1,19],[0,60],[0,67],[0,5],[0,65],[0,29],[0,80],[1,109],[1,14],[1,103],[0,4],[4,45],[0,9],[0,2],[0,48],[-1,30],[0,20],[0,29]],[[66221,59983],[29,-79],[4,-13],[6,-18],[6,-12],[27,-60],[33,-73],[31,-66],[37,-83],[6,-13],[14,-31],[14,-31],[5,-10],[6,-13],[54,-118],[38,-83],[1,-3],[15,-31],[4,-10],[7,-15],[5,-11],[33,-73],[11,-25],[12,-24],[13,-29],[13,-28],[13,-32],[5,-11],[10,-20],[22,-45],[31,-68],[31,-69],[29,-63],[4,-9],[11,-25],[1,-1],[8,-19],[8,-16],[2,-4],[16,-36]],[[66836,58613],[-1,-1],[-19,-11],[-9,-6],[-11,-6],[-8,-5],[-30,-18],[-66,-41],[-95,-57],[-16,-10],[-3,-2],[-97,-58],[-84,-51],[-25,-15],[-17,-11],[-116,-70],[-38,-23],[-138,-84],[-69,-42],[-29,-18],[-45,-27],[-25,-16],[-26,-15],[-9,-6],[-1,-1],[-54,-33],[-8,-5],[-17,-11],[-14,-8]],[[65766,57962],[-71,-44],[-15,-9],[-18,-11],[-1,-1],[-30,-19],[-18,-11],[-47,-28],[-14,-8],[-62,-35],[-3,-2],[-1,-1],[-13,-8],[-11,-6],[-19,-12],[-50,-30],[-60,-37],[-1,-1],[-109,-66],[-139,-84],[-6,-4],[-41,-25],[-14,-8],[-111,-68],[-56,-35],[-81,-49],[-13,-8],[-7,-5],[-122,-74],[-122,-75],[-53,-32],[-10,-7],[-47,-29],[-97,-59],[-83,-50]],[[64221,57021],[-18,32],[-26,47],[-32,58],[-4,7],[-31,55],[-25,46],[-44,79],[-44,80],[-7,12],[-7,13],[-67,120],[-14,27],[-7,11],[-21,-13],[-20,-13],[-111,-70],[-94,-58],[-96,-61],[-38,-24],[-3,-2],[-80,-50],[-17,-11],[-7,-4],[-94,-59],[-15,28],[-52,94],[-28,51],[-12,21],[-12,22],[-5,8],[-13,23],[-13,25],[-10,18],[-7,13],[-15,27],[-29,51],[-56,103],[-5,8],[-13,23],[-17,36],[-1,1],[0,1],[-61,106],[-19,34],[-6,11],[-39,69],[-15,26],[-8,14],[-23,40],[-6,11],[-1,2],[-15,26],[-11,18],[-6,10],[-6,10],[-7,14],[-1,0],[-9,14],[-7,10],[-8,12],[-6,9],[-15,23],[-14,23],[-33,58],[-9,15],[-10,18],[-5,9],[-17,29],[-23,40],[-3,5],[-2,3],[-10,17],[-18,30],[-8,15],[-21,37],[-11,18],[-1,1],[-9,17],[-14,24],[-1,1],[-14,25],[-15,25],[-4,8],[-5,8],[-35,61],[-37,64],[-20,35],[-32,54],[-23,40],[-28,52],[-7,12],[-6,10],[-2,4],[-22,39],[-16,29],[-24,43],[-47,84],[-44,77],[-26,47],[-17,29],[-34,61],[-9,16],[-27,49],[-12,20],[-28,48],[-16,29],[-38,67],[-2,4],[-6,9],[-33,58],[-21,39],[-35,61],[-14,25],[-86,153],[-13,23],[-25,44],[-8,15],[-16,28],[-7,14],[-7,16],[-6,11],[-12,21],[-9,15],[-4,8],[-29,51]],[[57292,58540],[-11,1],[-40,-4],[-144,0],[-23,0],[-60,2],[-3,0],[-45,0],[-22,0],[-23,0],[-39,0],[-1,0],[-138,-2],[-2,0],[-36,0]],[[56705,58537],[-113,-1],[-52,0],[-12,1],[-77,0],[-70,1],[-64,0],[-27,7],[-41,0],[-1,0],[-15,0],[-38,0],[-48,0],[-44,0],[-19,0],[-72,0],[-197,0],[-80,0],[-22,0],[-2,0],[-34,0],[-21,0],[-30,0],[-47,0],[-81,0],[-29,0],[-3,0],[-29,0],[-1,0],[-98,0],[-237,1],[-61,0],[-10,0],[-18,0],[-35,0],[-2,0],[-192,-1],[-68,0],[-37,0],[-56,0],[-67,0],[-16,0],[-52,0],[-39,0],[-61,-2],[-42,1],[-37,0],[-76,1],[-17,1],[-28,0],[-49,1],[-28,0],[-33,0],[-15,1],[-14,0],[-9,0],[-36,1],[-153,2],[-2,0],[-177,2],[-31,1],[-29,0],[-100,1],[-11,1],[-13,0],[-52,1],[-46,-1]],[[92511,61492],[0,-45],[0,-33],[0,-54],[0,-48],[0,-20],[-7,-15],[2,-16],[-4,-8],[0,-25],[0,-27],[0,-41],[-3,-23],[-19,-43],[-9,-20],[-24,-52],[-7,-21],[-4,-21],[-5,-23],[-4,-9],[-34,-45],[-5,-9],[-12,-35],[-4,-9],[-8,-13],[-3,-21],[0,-24],[1,-15],[1,-13],[0,-6],[0,-5],[-5,-5],[-1,-2],[-6,-7],[-8,-10],[-6,-9],[-3,-9],[-6,-10],[-1,-1],[-7,-11],[-17,-24],[-7,-12],[-5,-12],[-7,-25],[-3,-11],[-14,-33],[-4,-11],[-3,-1],[-2,-2],[-8,-12],[0,-12],[-2,-6],[-3,-5],[4,-14],[0,-7],[1,-4],[2,-10],[3,-35],[0,-14],[-5,-28],[-3,-9],[-6,-13],[-10,-16],[-10,-15],[-6,-14],[-15,-18],[-9,-6],[-27,-29],[-6,-8],[-13,-13],[-17,-18],[-2,-2],[-46,-47],[-41,-42],[-19,-21],[-1,-2],[0,-1],[-4,-7],[-4,-12],[-10,-30],[-17,-42],[-3,-9],[-20,-60],[-17,-39],[0,-2],[-3,-6],[-5,-11],[-6,-12],[-13,-31],[-11,-24],[-8,-19],[-5,-9],[-11,-24],[-7,-12],[-11,-14],[-1,-13],[-2,-14],[-7,-23],[-11,-21],[-4,-10],[-2,-11],[0,-17],[0,-27],[-3,-27],[5,-58],[-2,-20],[1,-30],[1,-11],[-1,-77],[-1,-11],[-3,-24],[-3,-23],[3,-69],[-4,-23],[-7,-33],[-2,-36],[0,-2],[-5,-9],[-39,-95],[-4,-17],[-1,-58],[-2,-10],[0,-20],[-3,-17],[-3,-19],[-11,-23],[-8,-21],[-7,-22],[-6,-26],[-7,-18],[-7,-44],[-2,-13],[-1,-4],[-2,-22],[-2,-40],[-11,-73],[-14,-64],[-10,-35],[-2,-93],[0,-16],[0,-106],[2,-17],[0,-58],[1,-55],[1,-102],[0,-8],[1,-36],[0,-3],[0,-32],[1,-20],[2,-112],[0,-21],[-1,-12],[1,-57],[0,-2],[3,-105],[1,-53],[0,-27],[1,-66],[69,1],[125,2],[71,0],[122,1],[84,1],[50,0],[153,2]],[[92361,57550],[1,-120],[0,-50],[0,-36],[0,-31],[0,-60],[0,-171],[0,-2],[5,-8],[8,-3],[6,-5],[8,1],[7,-4],[2,-10],[7,4],[7,-12],[5,-8],[0,-10],[4,-11],[-4,-9],[8,-2],[-5,-9],[10,2],[5,8],[2,-13],[7,-3],[8,6],[9,2],[-5,-8],[-3,-9],[8,1],[8,-5],[1,-12],[9,1],[7,-5],[6,-7],[8,-2],[7,5],[8,1],[3,-12],[0,-9],[-8,-2],[2,-9],[11,2],[-2,-11],[8,-7],[6,5],[8,-8],[1,-10],[7,-6],[10,-1],[6,7],[7,-5],[4,-12],[14,-7],[-6,-10],[2,-12],[2,-11],[7,-3],[6,10],[3,-9],[4,-9],[-2,-13],[-8,0],[0,-11],[2,-9],[7,-6],[-1,-10],[8,-8],[9,4],[4,-9],[2,-10],[0,-10],[-7,-7],[-5,-10],[7,3],[7,-10],[10,-8],[1,-11],[10,0],[-8,-6],[7,-4],[8,-2],[11,-4],[6,-6],[-2,-12],[6,-6],[8,1],[8,-4],[8,1],[2,-11],[1,-10],[4,-9],[10,-12],[6,-10],[4,-12],[6,-10],[-5,-8],[3,-17],[3,-9],[8,-6],[-3,-12],[1,-13],[0,-9],[9,-2],[-10,-5],[4,-5],[2,-4],[-2,-11],[-6,-6],[-8,-4],[-9,-3],[8,-5],[-7,-1],[-6,-8],[4,-10],[1,-2],[8,-7],[1,-11],[8,1],[-2,-10],[9,1],[6,-9],[10,3],[11,-5],[-2,-10],[-1,-10],[7,3],[-2,-9],[7,-14],[6,7],[11,2],[-2,-10],[6,-5],[-3,-12],[1,-11],[7,-6]],[[92812,56334],[-8,0],[-123,-1],[-47,0],[-3,0],[-78,0],[-37,0],[-37,0],[-32,1],[-74,0],[-37,0],[-33,0],[-74,0],[-55,0],[-122,-1],[-20,0],[-37,0],[-49,0],[-100,0],[-21,0],[-164,-1],[-52,0],[-73,0],[-41,0],[-31,0],[-1,0],[-36,-1],[-65,0],[-37,1],[-79,-1],[-33,0],[-124,0],[-20,0],[-2,0],[-30,0],[-21,0],[-127,-1],[-26,0],[-147,-1],[-46,0],[-126,0],[-18,0],[-22,0],[-7,0],[-73,1],[-27,0],[-23,0],[-35,1],[-52,0],[-32,0],[-36,-1],[-43,1],[-13,0],[-15,0],[-139,1],[-32,1],[-129,1],[-68,1],[-54,0],[-73,1],[-57,1],[-4,3],[-80,1],[-20,0],[-79,1],[-86,1],[-14,0],[-20,1],[-23,0],[-9,0],[-40,0],[-41,1],[-59,1]],[[89121,56346],[-242,4],[-3,0],[-17,0],[-46,1],[-57,1],[0,32],[0,26],[0,46],[0,20],[0,9],[0,3],[0,2],[0,9],[0,17],[0,15],[-1,92],[0,27],[1,27],[0,20],[-1,77],[-1,115],[-1,68],[0,42],[0,121],[1,35],[0,11],[0,8],[0,1],[0,101],[0,180],[0,38],[0,29],[0,5],[0,54],[-1,39],[0,17],[0,48],[0,68],[0,40],[0,2],[0,22],[0,15],[0,3],[0,64],[0,52],[0,63],[0,73],[0,13],[0,9],[-1,90],[0,67],[-1,33],[0,18],[0,5],[1,67],[0,88],[0,26],[0,32],[1,18],[0,29],[0,21],[0,7],[1,19],[1,21],[1,47],[0,13],[0,36],[0,10],[-1,57],[0,26],[1,34],[1,41],[-1,10],[-1,43],[0,33],[0,87]],[[95928,61473],[0,-11],[0,-31],[0,-29],[1,-90],[-2,-16],[0,-1],[0,-10],[1,-13],[0,-3],[0,-6],[0,-5],[0,-9],[0,-12],[0,-20],[-1,-13],[0,-3],[1,-10],[-1,-10],[1,-12],[0,-7],[0,-5],[0,-9],[0,-6],[0,-5],[0,-10],[0,-11],[0,-3],[0,-23],[0,-11],[0,-9],[0,-9],[0,-3],[0,-25],[0,-13],[0,-11],[0,-10],[-1,-11],[1,-22],[0,-5],[0,-26],[0,-6],[0,-12],[0,-50],[0,-7],[0,-26],[0,-10],[0,-14],[0,-12],[0,-4],[0,-52],[0,-18],[0,-3],[0,-12],[0,-11],[0,-10],[0,-15],[0,-8],[0,-15],[0,-29],[0,-18],[0,-11],[0,-15],[0,-11],[1,-22],[0,-12],[0,-13],[0,-14],[0,-38],[0,-35],[0,-15],[0,-7],[0,-6],[0,-9],[0,-72],[0,-1],[1,-61],[-2,-111],[0,-10],[2,-235],[0,-38],[0,-27],[0,-119],[0,-89],[0,-102],[0,-32],[0,-139],[0,-43],[0,-5],[0,-34],[0,-22],[0,-28],[0,-45],[-1,-94],[0,-120],[3,-49],[-1,-98],[0,-46],[0,-84],[-1,-13],[-1,-75],[0,-60],[0,-91],[0,-50],[0,-13],[0,-63],[0,-7],[0,-36],[1,-80],[-1,-64],[0,-32],[0,-48],[0,-16],[0,-16],[0,-14],[0,-4],[0,-12],[0,-12],[0,-23],[0,-4],[0,-7],[0,-11],[0,-10],[0,-8],[0,-8],[0,-55],[0,-8],[0,-3],[0,-11],[0,-24],[0,-17],[1,-2],[3,-8],[0,-2],[2,-10],[3,-9],[0,-10],[-2,-3],[-3,-6],[-1,-3],[-1,-10],[2,-5],[6,-4],[15,-3],[8,2],[10,6],[8,4],[20,10],[19,10],[12,2],[11,-1],[2,-4],[3,-1],[10,-22],[14,-17],[9,-5],[14,3],[8,12],[7,4],[3,-4],[3,0],[-1,-4],[-3,-24],[5,-9],[7,-20],[2,-12],[2,-8],[1,-15],[1,-10],[6,-13]],[[96135,57605],[-26,0],[-9,0],[-19,-1],[-68,-1],[-10,0],[-38,0],[-32,-1],[-119,-2],[-17,0],[-21,-1],[-48,1],[-186,0],[-47,-1],[-17,0],[-31,-1],[-65,-1],[-42,-1],[-39,-2],[-10,-1],[-35,0],[-29,-1],[-14,0],[-61,-1],[-34,0],[-38,0],[-128,-2],[-53,-1],[-50,-1],[-70,-1],[-243,-3],[-27,0],[-39,1],[-1,0],[-16,-1],[-103,-3],[-44,-1],[-272,-7],[-18,1],[-180,-1],[-4,0],[-15,0],[-60,-3],[-27,0],[-77,-1],[-38,-1],[-13,0],[-36,1],[-140,-3],[-28,0],[-44,0],[-58,-2],[-65,-1],[-43,0],[-89,-2],[-51,-1],[-82,-1],[-40,0],[-44,-1],[-124,-2],[-27,-1],[-35,0],[-113,-2],[-16,0],[-3,0],[-60,-1],[-57,0],[-65,-1],[-21,0]],[[85142,59065],[-7,-6],[-9,-10],[6,-10],[1,-3],[2,-11],[0,-12],[-2,-9],[-9,0],[7,-11],[0,-15],[-1,-10],[0,-14],[14,-14],[3,-14],[-2,-13],[-1,-9],[8,-6],[9,-17],[0,-10],[-1,-10],[1,-11],[10,1],[10,-3],[3,-11],[-1,-10],[8,-5],[8,-1],[-2,-11],[11,-11],[7,5],[8,-6],[10,2],[6,-7],[8,-14],[7,-14],[9,-3],[10,-8],[1,-12],[-6,-12],[-1,-4],[7,-3],[8,-3],[58,-22],[7,-17],[18,-41],[16,-54]],[[85381,58586],[-69,-12],[-1,0],[-10,-2],[-58,-10],[-61,-11],[-17,-3],[-43,-8],[-80,-14],[-14,-2],[-159,-28],[-25,-5],[-2,0],[-17,1],[-49,-8],[-90,-14],[-61,-10],[-67,-11],[-47,-7],[-9,-2],[-113,-18],[-25,-4],[-58,-9],[-2,0],[-12,-2],[-22,-4],[-46,-7],[-23,-4],[-48,-8],[-69,-11],[-18,-3],[-106,-17],[-12,-2],[-42,-6],[-16,-3],[-107,-17],[-59,-9],[-48,-8],[-42,-7],[-14,-2],[-22,-3],[-83,-14],[-31,-4],[-39,-6],[-32,-4],[-60,-9],[-68,-11],[-11,-1],[-7,-2],[-32,-5],[-67,-11],[-23,-3],[-20,-3],[-10,-1],[-16,-3],[-28,-4],[-20,-6],[-14,-2],[-16,-2],[-14,-3],[-15,-2],[-10,-1],[-9,0],[-41,-7],[-9,-1],[-13,-3],[-50,-9],[-35,-5],[-17,-2],[-16,-3],[-14,-2],[-10,-2],[-13,-2],[-22,-3],[-46,-7],[-27,-4],[-11,-3],[-11,-1],[-1,0],[-32,-5],[-26,-4],[-68,-9],[-6,-1],[-101,-16],[-28,-4],[-35,-5],[-146,-21],[-92,-13],[-17,-3],[-48,-7],[-58,-9],[-55,-8],[-83,-12],[-23,-3],[-23,-3],[-13,-2],[-37,-6],[-27,-4],[-89,-13],[-28,-4],[-27,-4],[-79,-11],[-36,-6],[-44,-6],[-129,-19],[-23,-5],[-30,-6],[-55,-7],[-1,0],[-59,-8],[-29,-4],[-59,-8],[-1,0],[-1,0],[-34,-5],[-31,-4],[-10,-2],[-194,-29],[-50,-8],[-37,-5],[-43,-7]],[[80630,57849],[-1,16],[-6,26],[-5,11],[-5,9]],[[80613,57911],[-5,16],[3,11],[8,4],[7,-1],[8,-1],[8,5],[0,10],[0,2],[-6,6],[-8,5],[-8,5],[-25,11],[-6,7],[-4,12],[-5,9],[-7,7],[-12,11],[-6,8],[-3,8],[-3,10],[-3,11],[2,11],[6,6],[2,10],[-5,8],[-6,14],[-8,10],[-7,9],[-2,11],[0,10],[0,11],[1,14],[3,10],[8,23],[-1,10],[-6,10],[-5,8],[0,10],[4,8],[8,8],[4,10],[-4,10],[-6,12],[-3,8],[-6,27],[-3,10],[2,10],[6,8],[21,6],[5,8],[-1,11],[-5,9],[-3,3],[-2,4],[-8,4],[-7,2],[-9,2],[-9,2],[-5,9],[4,8],[4,10],[3,13],[4,7],[-4,10],[-17,11],[-4,9],[0,10],[3,10],[7,5],[10,3],[11,-1],[9,-6],[10,0],[7,7],[1,9],[0,11],[-4,17],[-6,7],[-7,9],[-3,10],[-2,11],[-6,6],[-9,1],[-8,-3],[-9,-4],[-13,-7],[-9,-7],[-9,-3],[-9,-1],[-8,-1],[-17,-4],[-11,-5],[-9,-4],[-7,-3],[-8,-2],[-12,2],[-9,2],[-11,0],[-11,1],[-10,1],[-11,0],[-8,0],[-8,-3],[-9,-4],[-9,-1],[-1,0],[-15,5],[-8,1],[-7,-5],[-3,-9],[-1,-10],[-2,-13],[-9,-7],[-8,-4],[-10,-6],[-10,-5],[-9,1],[-9,3],[-8,5],[-4,9],[2,10],[3,11],[3,12],[2,12],[-1,12],[-3,12],[-3,10],[-6,11],[-5,10],[-6,15],[-1,1],[-6,10],[-8,0],[-11,4],[-5,9],[-5,8],[-7,8],[-7,8],[-2,11],[-1,9],[1,14],[3,10],[2,12],[-1,12],[0,9],[2,12],[3,12],[5,11],[5,13],[5,12],[5,15],[4,8],[12,25],[3,13],[-3,9],[-9,9],[-5,10],[-4,14],[0,9],[2,16],[-1,18],[-3,12],[1,10],[4,11],[5,11],[5,8],[13,19],[14,11],[4,4],[7,3],[9,5],[6,8],[7,15],[10,25],[8,21],[1,4],[0,10],[-2,14],[0,11],[0,14],[0,2],[-1,20],[-5,9],[-5,9],[-6,8],[-8,4],[-8,2],[-9,6],[-12,10],[-13,8],[-8,4],[-4,9],[-3,31],[-16,-2],[-9,-3],[-3,-2],[-9,-7],[-6,-13],[-7,-9],[-9,-7],[-10,-4],[-10,-2],[-8,-3],[-9,-7],[-9,-1],[-15,-4],[-8,-5],[-9,-5],[-11,-3],[-17,0],[-8,0],[-8,-4],[-9,-7],[-7,-1],[-6,9],[-8,9],[-8,0],[-8,-3],[-8,-4],[-11,4],[-6,6],[-8,10],[-7,5],[-8,8],[-5,8],[-6,8],[-7,5],[-14,-2],[-23,-14],[-8,-11],[-11,-6],[-7,6],[-6,6],[-9,0],[-10,1],[-9,6],[-9,9],[-7,13],[7,18],[2,10],[-1,15],[-3,9],[-1,10],[-5,8],[-8,-1],[-9,3],[-12,12],[-6,4],[-11,0],[-18,-5],[-3,9],[7,4],[12,7],[1,10],[-5,7],[-7,5],[-5,11],[0,26],[-6,16],[-5,12],[3,16],[7,11],[6,5],[1,1],[2,2],[4,5],[11,8],[9,6],[9,-1],[6,-7],[5,-8],[7,-6],[9,3],[2,11],[-4,9],[-8,3],[-4,9],[8,9],[10,1],[15,3],[-6,8],[2,10],[12,5],[11,-3],[9,0],[17,10],[5,12],[4,9],[6,16],[-3,11],[-7,16],[8,8],[4,9],[-2,10],[-24,0],[-11,8],[0,14],[3,9],[7,9],[7,4],[11,3],[15,0],[19,4],[20,2],[15,4],[6,8],[3,15],[3,11],[-2,11],[-7,6],[-8,6],[-7,6],[-8,4],[-10,-1],[-11,1],[-17,8],[-8,-2],[-5,-8],[-18,-9],[-13,-9],[-12,-5],[-11,-2],[-9,-3],[-9,-3],[-10,-11],[-9,-9],[-4,-5],[-12,-9],[-10,-1],[-10,-3],[-11,-2],[1,-13],[-4,-9],[-8,0],[-9,0],[-8,-3],[-12,6],[-8,-2],[-5,-12],[-8,-9],[-8,2],[-8,6],[-9,2],[-9,-3],[-11,-2],[-8,2],[-18,9],[-11,10],[-12,11],[-10,12],[-1,13],[-1,9],[6,8],[14,15],[-13,11],[6,15],[9,6],[4,11],[-9,10],[-5,12],[-7,12],[-8,-2],[2,-10],[-2,-11],[1,-10],[0,-11],[-7,-6],[-9,-3],[-21,-1],[-11,7],[-3,17],[-3,13],[-12,1],[-8,3],[-13,0],[-6,10],[3,10],[8,4],[2,10],[-6,17],[-6,7],[-7,11],[-6,5],[-8,-7],[-5,-7],[-7,-6],[-10,-3],[-8,7],[2,13],[3,12],[-1,9],[-5,11],[-2,10],[-1,22],[-7,6],[-9,0],[-13,-5],[-8,1],[-5,9],[-8,7],[-13,4],[-13,1],[-10,2],[-7,4],[-6,11],[-1,15],[-8,4],[-8,11],[-8,9],[-19,4],[-3,10],[8,5],[13,0],[3,9],[-4,11],[-4,10],[-4,10],[-1,12],[1,10],[-7,8],[-10,-2],[-13,-3],[-9,2],[-8,0],[-17,-2],[-10,1],[-11,-1],[-26,5],[-10,-1],[-19,-1],[-9,-2],[-10,-13],[10,-6],[15,-2],[6,-8],[-5,-10],[-18,-4],[-12,-5],[-7,-3],[-8,7],[2,14],[-5,7],[-11,19],[1,10],[-9,4],[1,-14],[-10,-5],[-2,2],[-4,3],[-7,9],[-3,3],[-1,2],[-2,3],[-3,6],[-6,9],[-3,10],[-3,9],[-1,1],[0,1],[-4,14],[-1,11],[-9,5],[-8,-11],[-18,-16],[-7,-13],[4,-11],[-4,-10],[-9,3],[-8,9],[-12,19],[-5,13],[0,12],[1,11],[-6,8],[-9,-3],[-8,-6],[-15,-16],[-1,-10],[6,-7],[5,-7],[-1,-12],[-8,-1],[-11,3],[-12,3],[-5,8],[-1,7],[-1,3],[1,12],[1,8],[0,7],[1,11],[1,4],[3,12],[2,14],[-1,18],[-6,11],[-9,2],[-14,3],[-7,6],[-3,14],[8,12],[8,8],[10,2],[9,-2],[7,7],[2,10],[3,21],[-1,18],[-1,19],[-7,5],[-3,10],[-4,12],[-4,14],[-5,14],[-10,18],[-8,8],[-15,11],[-17,5],[6,8],[12,6],[8,3],[8,4],[1,11],[-12,1],[-8,0],[-10,2],[-7,0],[-9,-1],[-9,-2],[-10,0],[-8,3],[-9,2],[-5,11],[7,7],[19,14],[2,11],[-5,7],[-6,9],[-3,9],[-8,4],[-8,-5],[-5,-17],[-2,-11],[-7,-5],[-7,0],[-6,9],[-4,9],[3,9],[1,12],[-8,4],[-8,-5],[-9,-8],[3,-10],[-5,-10],[-8,-1],[-9,-1],[-7,6],[9,5],[-2,10],[-7,6],[-4,8],[-6,7],[-8,1],[-7,-5],[-2,-12],[-8,-8],[-9,2],[-2,11],[9,9],[-6,7],[-7,-1],[-10,2],[-11,6],[-8,10],[-8,6],[-10,4],[-5,-8],[7,-14],[-6,-7],[-15,-1],[-20,0],[-13,2],[-7,4],[-22,10],[-10,6],[-21,7],[-8,7],[3,12],[-7,4],[-11,-8],[-11,3],[-12,7],[-2,9],[7,7],[-5,8],[-4,10],[-7,7],[-9,1],[-10,3],[-8,-3],[-6,-6],[-8,-3],[-9,-4],[-8,0],[-4,8],[-6,7],[-5,7],[-6,8],[-6,5],[-8,4],[-7,3],[-1,0],[-6,6],[-8,1],[-10,-3],[-8,-1],[-11,0],[-7,5],[-8,4],[-7,4],[-5,7],[-8,9],[-9,10],[-6,7],[-6,6],[-5,7],[-6,6],[-9,12],[-9,4],[-9,5],[-8,3],[-8,4],[-8,4],[-9,4],[-13,13]],[[80613,57911],[-18,-11],[-151,-89],[-26,-15],[-1,0],[-2,-2],[-51,-30],[-51,-31],[-16,-9],[-26,-16],[-7,-4],[-16,-9],[-9,-6],[-11,-7],[-85,-51],[-18,-10],[-7,-4],[-4,-3],[-37,-22],[-26,-15],[-32,-20],[-47,-28],[-30,-18],[-74,-44],[-6,-3],[-11,-7],[-12,-7],[-31,-19],[-8,-4],[-18,-11],[-10,-6],[-48,-29],[-92,-55],[-24,-14],[-6,-4],[-20,-11],[-53,-32],[-23,-14],[-15,-9],[-26,-15],[-17,-10],[-12,-8],[-48,-29],[-9,-5],[-10,-6],[-15,-9],[-47,-29],[-63,-38],[-69,-42],[-36,-21],[-13,-9],[-12,-7],[-20,-11],[-18,-11],[-48,-28],[-70,-42],[-12,-8],[-19,-11],[-78,-48],[-12,-7],[-30,-18],[-31,-19],[-29,-17],[-12,-7],[-8,-5],[-18,-11],[-44,-26],[-9,-5],[-8,-5],[-28,-17],[-17,-10],[-28,-17],[-13,-8],[-12,-7],[-13,-8],[-1,-1],[-21,-12],[-9,-6],[-10,-6],[-8,-5],[-12,-7],[-12,-8],[-19,-11],[-24,-14],[-41,-26],[-17,-10],[-37,-23],[-75,-46],[-25,-15],[-52,-33],[-20,-12],[-77,-47],[-14,-9],[-58,-35],[-129,-79],[-121,-73],[-26,-16],[-8,-5],[-9,-5],[-19,-11],[-7,-5],[-40,-24],[-12,-8],[-13,-7],[-28,-17],[-22,-14],[-2,-1],[-110,-67],[-54,-32],[-37,-23],[-58,-35],[-27,-17],[-22,-13],[-11,-7]],[[77250,55883],[-27,5],[-56,5],[-207,22],[-34,4],[-21,2],[-44,4],[-27,3],[-21,2],[-34,3],[-23,3],[-19,2],[-8,0],[-63,7],[-17,2],[-3,0],[-59,6],[-16,2],[-9,1],[-26,3],[-26,2],[-8,1],[-8,1],[-9,1],[-8,1],[-9,0],[-2,1],[-158,16],[-37,3],[-41,4],[-80,9],[-158,16],[-111,11],[-70,7],[-25,3],[-74,7],[-19,2],[-17,2],[-32,3],[-35,4],[-52,5]],[[75557,56058],[-6,10],[-13,24],[-7,13],[-40,73],[-40,72],[-14,24],[-25,44],[-30,55],[-36,65],[-12,20],[-14,26],[-5,10],[-5,9],[-5,8],[-14,27],[-33,59],[-4,6],[-4,8],[-4,7],[-1,2],[-20,36],[-9,15],[-24,42],[-17,31],[-37,66],[-25,45],[-17,30],[-6,12],[-13,23],[-10,18],[-15,26],[-23,42],[-13,21],[-9,14],[-15,27],[-12,24],[-7,13],[-2,4],[-9,15],[-5,10],[-5,9],[-9,15],[-3,6],[-16,29],[-9,15],[-7,11],[-19,35],[-6,12],[-5,9],[-9,16],[-41,75],[-18,32],[-12,19],[-42,76],[-18,31],[-7,14],[-5,8],[-17,31],[-12,21],[-9,17],[-30,53],[-10,17],[-5,10],[-12,21],[-9,17],[-13,23],[-11,19],[-7,14],[-3,5],[-1,2],[-3,7],[-14,25],[-8,15],[-25,45],[-33,60],[-40,75],[-77,140],[-13,24],[-6,11],[-16,30],[-17,30],[-7,13],[-19,34],[-33,62],[-2,2],[-7,14],[-58,105]],[[68737,59703],[-14,2],[-17,3],[-52,-1],[-9,6],[-14,11],[-14,15],[-2,-1],[-84,-56],[-18,-12],[-12,-8],[-29,-20],[-11,-7],[-7,-4],[-40,-23],[-37,-24],[-8,-4],[-8,-6],[-14,-10],[-9,-5],[-5,-3],[-48,-30],[-13,-8],[-32,-20],[-87,-57],[-25,-16],[-15,-10],[-12,-7],[-5,-8],[-8,-4],[-9,-3],[-9,-5],[-7,-5],[-13,-9],[-10,-6],[-16,-10],[-9,-5],[-7,-5],[-6,-6],[-9,-5],[-9,-5],[-17,-10],[-14,-9],[-23,-13],[-24,-15],[-20,-12],[-7,-5],[-14,-9],[-18,-11],[-29,-18],[-33,-21],[-46,-26],[-20,-15],[-2,-2],[-10,-6],[-13,-9],[-18,-12],[-29,-18],[-13,-5],[-97,-61],[-32,-20],[-1,-1],[-8,-5],[-7,-6],[-35,-21],[-31,-19],[-7,-4],[-7,-5],[-11,-6],[-69,-44],[-13,-8],[-9,-6],[-67,-42],[-42,-27],[-61,-39],[-61,-38],[-11,-7],[-28,-18],[-24,-15],[-15,-10],[-15,-9],[-7,-5],[-7,-4],[-9,-6],[-9,-5],[-12,-9],[-10,-6],[-13,-8],[-33,-20],[-47,-29]],[[75557,56058],[-19,-11],[-106,-66],[-13,-8],[-54,-34],[-7,-4],[-38,-27],[-20,-12],[-14,-9],[-168,-102],[-47,-28],[-73,-45],[-63,-38],[-23,-14],[-58,-35],[-78,-48],[-80,-48],[-14,-9],[-36,-22],[-3,-2],[-75,-45],[-65,-39],[-23,-15],[-21,-12],[-80,-48],[-22,-17],[-185,-112],[-17,-10],[-60,-37],[-10,-6],[-7,-4],[-46,-28],[-10,-6],[-21,-13],[-66,-40]],[[73935,55064],[-18,32],[-2,3],[-26,45],[-16,29],[-11,21],[-14,23],[-38,68],[-96,167],[-28,52],[-24,42],[-28,53],[-9,16],[-27,50],[-20,35],[-8,15],[-29,52],[-59,109],[-61,110],[-20,36],[-7,13],[-15,29],[-34,63],[-83,152],[-119,216],[-8,15],[-56,-34],[-18,-9],[-9,-5],[-10,-6],[-9,-5],[-11,-7],[-24,-14],[-11,-7],[-22,-13],[-14,-8],[-13,-8],[-30,-18],[-12,-8],[-22,-13],[-22,-13],[-38,-23],[-9,-5],[-3,-2],[-35,-21],[-9,-5],[-8,-6],[-10,-7],[-6,-2],[-4,-2],[-8,-3],[-8,-5],[-8,-6],[-9,-5],[-20,-12],[-14,-9],[-26,-16],[-8,-4],[-11,-7],[-12,-8],[-11,-6],[-10,-6],[-14,-8],[-14,-9],[-8,-5],[-13,-7],[-12,-7],[-7,-5],[-11,-7],[-12,-6],[-16,-10],[-32,-19],[-42,-26],[-58,-34],[-80,-48],[-77,-45],[-34,-22],[-63,-37],[-32,-20],[-62,-39],[-5,-2],[-35,-21],[-9,-6],[-13,-8],[-32,-20],[-11,-7],[-11,-6],[-22,-15],[-11,-6],[-21,-13],[-118,-72],[-25,-15],[-8,-5],[-7,-5],[-11,-7],[-8,-5],[-12,-7],[-12,-8],[-8,-4],[-11,-7],[-8,-5],[-49,-30],[-29,-18],[-7,-4],[-8,-5],[-20,-13],[-79,-49],[-17,-8],[-67,-41],[-15,-8]],[[71309,55408],[-8,5],[-10,4],[-7,6],[-21,11],[-8,4],[-16,8],[-11,11],[-18,13],[-20,14],[-16,10],[-16,10],[-10,4],[-20,9],[-20,10],[-18,9],[-12,8],[-10,6],[-11,11],[-5,7],[-7,14],[-9,14],[-6,8],[-4,8],[-5,12],[-8,14],[-7,8],[-5,9],[-19,25],[-12,15],[-7,11],[-5,8],[-4,8],[-5,15],[-5,18],[-2,14],[-5,26],[-3,17],[0,11],[3,9],[7,8],[16,6],[9,4],[15,10],[7,6],[15,11],[8,6],[7,6],[13,8],[8,6],[9,7],[11,8],[9,8],[7,6],[10,12],[10,12],[11,17],[7,8],[7,7],[6,7],[5,7],[11,13],[7,8],[17,23],[10,15],[6,8],[12,12],[8,8],[10,7],[7,4],[7,5],[16,10],[8,6],[11,8],[9,8],[10,12],[10,14],[4,8],[5,9],[4,9],[5,16],[2,12],[0,16],[-1,12],[-3,17],[-5,15],[-4,14],[-5,11],[-7,8],[-9,7],[-9,5],[-18,6],[-8,2],[-14,4],[-15,5],[-12,3],[-8,3],[-11,4],[-9,2],[-8,3],[-16,6],[-10,1],[-15,3],[-14,3],[-11,2],[-13,-1],[-9,-1],[-10,-1],[-13,-2],[-8,-3],[-18,-8],[-14,-8],[-18,-8],[-23,-11],[-19,-10],[-15,-5],[-11,-2],[-10,2],[-11,2],[-9,5],[-11,13],[-6,11],[-4,11],[-6,12],[-7,10],[-7,10],[-13,12],[-28,24],[-13,9],[-9,6],[-12,10],[-8,7],[-9,5],[-10,7],[-17,13],[-12,8],[-7,7],[-14,9],[-13,8],[-11,7],[-13,6],[-10,5],[-11,4],[-9,2],[-7,2],[-11,-1],[-9,-4],[-1,0],[-2,0],[-8,5],[-8,4],[-2,0],[-18,8],[-12,5],[-19,8],[-22,11],[-16,10],[-8,10],[-5,13],[-3,18],[-2,15],[-2,18],[3,15],[6,14],[9,14],[10,10],[9,2],[9,2],[31,-1],[25,-1],[17,-1],[28,5],[27,12],[7,6],[15,14],[3,12],[-8,10],[-18,11],[-41,23],[-28,20],[-20,14],[-101,56],[-8,7],[-33,24],[-11,7],[-29,17],[-29,1],[-17,-7],[-26,-12],[-12,4],[-24,15],[-16,23],[-11,23],[-29,48],[-15,23],[-7,8],[-27,6],[-30,7],[-16,4],[-39,29],[-15,16],[-2,9],[7,26],[34,24],[19,17],[37,44],[10,6],[76,45],[16,9],[71,44],[35,29],[8,8],[71,79],[40,27],[31,35],[21,43],[-1,21],[-3,9],[-8,20],[-9,14],[-10,14],[-22,2],[-83,3],[-64,3],[-17,10],[-15,24],[-18,34],[-20,25],[-23,26],[-12,8],[-2,2],[-2,1],[-6,5],[-2,3],[-23,34],[-7,29],[-1,31],[0,83],[-4,34],[-16,40],[-7,6],[-18,1],[-9,-1],[-15,-10],[-13,-9],[-13,-15],[-6,-21],[0,-1],[-4,-13],[-1,-3],[-22,-31],[-17,-30],[-44,-18],[-51,-8],[-50,-6],[-16,-2],[-6,0],[-84,-6],[-9,3],[-13,5],[-43,36],[-19,26],[-7,39],[0,17],[1,18],[0,32],[4,34],[4,36],[3,29],[-2,28],[-6,24],[-17,50],[-5,18],[-12,39],[-10,31],[6,26],[4,9],[33,43],[9,17],[18,31],[44,70],[49,57],[7,28],[-1,19],[-7,23],[-3,11],[-9,21],[-11,16],[-9,12],[-23,22],[-22,28],[-2,2],[-20,25],[-18,27],[-17,38],[-15,41],[-17,32],[-9,16],[-5,9],[-1,2],[-9,17],[-4,10],[-2,7],[-4,21],[0,20],[1,8],[2,9],[3,11],[6,12],[11,10],[22,8],[15,7],[14,7],[19,8],[31,11],[22,8],[14,5],[13,7],[15,7],[15,8],[10,5],[8,11],[6,20],[4,11],[6,16],[5,9],[14,11],[10,8],[8,9],[8,14],[9,11],[7,7],[6,8],[4,10],[2,15],[-4,16],[-10,22],[-11,14],[-12,9],[-9,5],[-29,7],[-25,4],[-33,0],[-17,-1]],[[64221,57021],[35,-63],[12,-22],[54,-98],[12,-22],[16,-28],[11,-20],[26,-47],[37,-66],[11,-20],[6,-12],[24,-43],[32,-57],[58,-104],[17,-31],[44,-78],[-97,-62],[-78,-49],[-84,-53],[-69,-44],[-18,-11],[-47,-29],[-89,-57],[-8,-4],[-1,-1],[-9,-6],[-2,-1],[-21,-12],[-20,-14],[-94,-59],[-77,-47],[-35,-23],[-41,-26],[-44,-28],[-31,-20],[-29,-18],[-36,-23],[-17,-11],[-33,-21],[-103,-65],[-9,-6],[-181,-116],[-18,-11],[-12,-8],[-20,-12],[-34,-22],[-29,-17],[-215,-136],[-42,-26],[-23,-13],[-19,-13],[-121,-76],[-39,-25],[-100,-63],[-19,-13],[-182,-115],[-69,-44],[-63,-40],[-61,-39]],[[62277,54831],[-52,88],[-12,20],[-11,18],[-6,10],[-114,190],[-26,45],[-57,-3],[-8,-2],[-9,-2],[-11,-2],[-72,-12],[-26,-5],[-31,-5],[-2,-1],[-45,-7],[-33,-5],[-14,-2],[-41,-6],[-43,-7],[-1,0],[-50,-8],[-56,-8],[-16,-3],[-58,-9],[-92,-14],[-70,-10],[-49,-8],[-145,-25],[-28,-4],[-43,-11],[-9,-2],[-32,-5],[-14,-2],[-19,-3],[-71,-13],[-1,0],[-20,-3],[-94,-16],[-77,-13]],[[60719,54986],[-11,20],[-59,108],[-12,22],[-5,9],[-28,51],[-17,30],[-56,102],[-21,40],[-17,30],[-28,53],[-9,17],[-6,10],[-31,58],[-9,15],[-10,19],[-27,48],[-76,137],[-14,27],[-41,73],[-19,36],[-39,70],[-7,14],[-11,19],[-40,72],[-7,14],[-21,36],[-7,15],[-44,81],[-30,53],[-8,16],[-9,15],[-13,25],[-2,2],[-16,30],[-4,8],[-2,2],[-5,10],[-77,139],[-37,67],[-20,44],[-16,29],[-7,12],[-94,169],[-26,47],[-37,65],[-28,50],[-58,104],[-9,16],[-19,35],[-5,8],[-21,38],[-44,81],[-12,20],[-59,106],[-31,56],[-5,10],[-58,103],[-25,46],[-7,12],[-8,15],[-10,17],[-70,132],[-1,1],[0,1],[-30,51],[-49,90],[-54,99],[-23,41],[-87,158],[-20,35],[-49,90],[-13,23],[-35,65],[-43,78]],[[71309,55408],[-223,-133],[-38,-22],[-20,-12],[-16,-10],[-54,-32],[-14,-8],[-13,-8],[-9,-5],[-16,-9],[-11,-7],[-23,-14],[-14,-8],[-1,0],[-130,-79],[-30,-19],[-95,-56],[-64,-37],[-61,-38],[-14,-6],[-65,-38],[-39,-23],[-27,-16],[-39,-23],[-82,-49],[-95,-54],[-141,-82],[-63,-38],[-9,-6],[-8,-5],[-7,-3],[-11,-7],[-18,-10],[-16,-10],[-5,-3],[-5,-3],[-11,-6],[-16,-9],[-7,-5],[-31,-24],[-8,-5],[-17,-10],[-20,-12],[-229,-137],[-22,-13],[-6,-3],[-50,-30],[-56,-33],[-12,-7],[-84,-49],[-258,-158],[-4,-2],[-30,-17],[-28,-15],[-61,-33],[-71,-39]],[[68812,53928],[-27,47],[-72,128],[-54,100],[-45,81],[-31,56],[-24,43],[-13,23],[-88,159],[-4,7],[-3,4],[-23,42],[-121,217],[-111,199],[-12,21],[-16,29],[-31,-19],[-74,-46],[-42,-26],[-113,-71],[-59,-36],[-145,-89],[-17,-11],[-79,-49],[-23,-14]],[[67585,54723],[-48,84],[-8,15],[-37,67],[-47,84],[-26,44],[-5,10],[-23,41],[-36,64],[-41,74],[-45,80],[-12,20],[-20,37],[-61,108],[-47,83],[-49,88],[-1,2],[-18,32],[-26,45],[-10,19],[-59,106],[-36,63],[0,1],[-22,38],[-64,114],[-46,82],[-35,63],[-7,9],[-37,67],[-28,49],[-9,16],[-114,205],[-31,54],[-8,14],[-13,22],[-41,75],[-9,17],[-25,47],[-26,47],[-16,29],[-15,19],[-21,39],[-21,40],[-16,27],[-43,77],[-35,63],[-42,74],[-35,61],[-13,23],[-76,139],[-17,31],[-28,50],[-44,78],[-41,72],[0,2],[-28,50],[-19,33],[-15,26],[-21,38],[-8,14],[-1,1],[0,1],[-20,37],[-36,66],[-38,63]],[[89121,56346],[3,-18],[0,-12],[-2,-10],[9,1],[-6,-14],[6,-9],[-3,-10],[-11,3],[10,-15],[5,-7],[-7,-6],[13,-14],[-5,-17],[-10,-12],[-8,-9],[-10,-8],[-1,-1],[-1,-2],[-7,-11],[-8,-1],[-6,15],[-7,-11],[-12,-10],[-1,-9],[-8,-1],[-5,12],[-10,1],[-3,-13],[10,-1],[6,-11],[-1,-6],[-1,-5],[11,-6],[10,-23],[8,-9],[-1,-18],[-7,-5],[-5,-10],[-4,-10],[-8,-3],[2,-11],[-3,-12],[-7,-10],[4,-11],[1,-11],[-4,-12],[-10,3],[-9,-2],[-8,3],[-8,-2],[0,-12],[-10,5],[-7,-11],[0,-11],[9,-2],[0,-10],[-6,-8],[9,-11],[-24,-5],[6,-6],[11,-4],[-8,-3],[-6,-8],[8,-9],[-8,-4],[-15,-3],[-1,0],[-17,-6],[-12,6],[-2,10],[-7,-6],[-13,-2],[-11,-2],[-9,4],[-10,-6],[-6,-7],[-11,5],[-5,9],[-4,-10],[-8,4],[-1,-12],[-5,8],[-7,-7],[-11,1],[-6,-7],[-9,-6],[-5,-9],[5,-13],[1,-18],[5,-9],[5,-8],[-6,-6],[10,-8],[5,-9],[-1,-13],[5,-9],[-4,-8],[9,-1],[12,3],[6,-8],[10,4],[9,-3],[11,-5],[9,-2],[8,-4],[9,4],[11,-3],[7,-9],[-6,-11],[9,-1],[8,5],[8,2],[8,-11],[3,-13],[6,-7],[4,-8],[8,-15],[4,-6],[3,-4],[11,-17],[6,-8],[8,4],[-4,14],[-1,9],[7,6],[6,11],[7,4],[5,-8],[6,-10],[-3,-10],[8,3],[16,16],[10,-3],[8,-8],[17,-2],[10,1],[9,-8],[5,-21],[12,-5],[8,-2],[8,-4],[2,-13],[11,2],[10,-2],[10,-4],[4,-16],[2,-10],[5,-8],[9,-6],[-2,-11],[1,-11],[-6,-8],[-7,2],[-5,-8],[2,-10],[-4,-11],[-8,-6],[-12,-5],[-11,2],[-9,12],[-7,-5],[-8,-3],[-5,9],[-10,1],[-7,-11],[-4,-9],[-13,-7],[-9,1],[-3,12],[-3,-9],[-2,-12],[-15,-4],[-24,6],[-10,8],[-7,-1],[-11,2],[-15,6],[-8,3],[-14,-7],[-8,-5],[-7,7],[-8,-9],[-9,1],[-10,9],[-18,3],[-9,0],[5,12],[-9,-7],[-2,-9],[2,-15],[1,-11],[-3,-17],[-12,-16],[-6,-19],[-2,-8],[-2,-6],[-5,-17],[2,-15],[-3,-9],[-14,-7],[-3,-9],[6,-9],[11,4],[6,-11],[9,-1],[7,2],[6,-9],[6,-9],[4,10],[8,3],[3,-9],[9,-10],[6,-8],[6,-16],[6,-19],[9,-26],[5,-21],[1,0],[7,-7],[11,3],[12,-5],[2,-11],[-5,-13],[-8,-6],[-6,-5],[-8,-10],[-4,-10],[-4,-14],[-8,-2],[-12,-5],[-8,1],[-1,-19],[9,-6],[8,-10],[3,-15],[3,-13],[-6,-16],[-6,-13],[1,-14],[-8,-1],[-6,6],[-6,-5],[2,-13],[7,-12],[11,-10],[6,-7],[-1,-14],[-12,0],[-17,-5],[-9,4],[1,-10],[3,-9],[-1,-11],[3,-15],[5,-8],[6,-10],[6,-13],[11,-13],[6,-11],[8,-18],[8,1],[8,10],[4,-9],[4,-15],[5,-25],[8,-7],[12,7],[10,-3],[-2,-9],[9,-3],[-4,-10],[-9,-4],[-7,-11],[0,-11],[-9,-1],[7,-9],[5,-11],[1,-11],[-13,-3],[-7,-3],[-5,-9],[-7,-7],[1,-2],[3,-8],[8,-5],[10,0],[0,13],[8,1],[7,4],[2,-10],[-3,-11],[6,-11],[-1,-13],[5,-16],[-1,-12],[-1,-18],[-7,-11],[7,-5],[5,-9],[10,1],[-4,-10],[11,-2],[2,-11],[-6,-6],[-8,-6],[10,-1],[-1,-13],[-7,-6],[-12,-8],[-10,5],[5,-9],[6,-8],[15,-12],[2,-9],[-8,-5],[-8,-4],[-8,-3],[2,-17],[7,5],[-2,-11],[-2,-20],[-9,3],[3,-8],[-5,-10],[-9,-9],[11,-6],[8,7],[9,-4],[1,-13],[5,-14],[13,0],[1,11],[7,4],[11,-7],[25,11],[4,-9],[2,-13],[0,-12],[-1,-11],[-3,-9],[3,-13],[9,-10],[7,4],[-2,-11],[-18,-4],[5,-9],[0,-10],[6,-7],[13,-18],[16,-16],[5,-11],[10,-7],[5,7],[9,-6],[-1,-11],[-8,-6],[4,-8],[8,-3],[8,2],[1,-11],[-5,-11],[4,-10],[6,-5],[3,-9],[7,-5],[-8,-9],[8,-8],[11,-7],[12,-9],[-1,-15],[4,-10],[4,-10],[2,-13],[-3,-12],[-9,3],[3,-9],[-10,4],[-1,-10],[4,-11],[0,-15],[-7,-5],[12,-3],[5,-8],[-1,-14],[-3,-16],[4,-11],[12,-7],[-4,-14],[10,-8],[8,-5],[14,-8],[7,-6],[1,-11],[-8,-7],[-8,-7],[-6,-10],[-10,-6],[-8,-9],[9,-1],[2,-12],[-4,-8],[2,-10],[12,-10],[7,-7],[4,-17],[0,-11],[8,-5],[4,-10],[6,-5],[9,-4],[9,-13],[10,-7],[11,-4],[14,0],[19,10],[14,7],[11,11],[13,13],[12,7],[17,5],[23,9],[14,7],[13,13],[12,2],[4,-9],[4,-17],[4,-10],[0,-10],[-1,-14],[-1,-9],[2,-16],[7,-15],[-1,-11],[-15,-38],[-7,-9],[-10,-9],[-9,-14],[-5,-14],[-2,-20],[-12,-3],[-7,4],[-6,-6],[-8,-14],[4,-9],[9,4],[5,7],[8,-7],[7,-16],[-2,-12],[9,3],[12,-2],[-1,-9],[-12,-16],[-8,-8],[3,-13],[6,-10],[8,-12],[3,-12],[8,7],[7,4],[9,-2],[1,-10],[8,3],[12,4],[9,4],[7,-10],[8,-3],[-4,-9],[3,-20],[-5,-9],[12,3],[2,-11],[-16,-5],[3,-9],[12,-8],[8,-6],[-3,-10],[-13,4],[1,-10],[4,-15],[10,2],[9,2],[11,-6],[-6,-9],[16,0],[12,2],[8,-7],[9,1],[8,1],[-4,-9],[7,-6],[7,10],[-1,10],[7,4],[18,-7],[-3,-16],[13,1],[10,5],[7,-4]],[[89664,53358],[-72,-63],[-28,-26],[-64,-60],[-19,-17],[-37,-33],[-56,-52],[-8,-7],[-105,-95],[-39,-35],[-36,-32],[0,-1],[-9,-8],[-8,-7],[-24,-22],[-54,-48],[-15,-14],[-84,-76],[-29,-26],[-17,-15],[-9,-9],[-33,-30],[-25,-22],[-14,-12],[-37,-34],[-21,-19],[-24,-21],[-7,-6],[-42,-38],[-3,-3],[-104,-95],[-23,-20]],[[88618,52412],[-1,15],[-8,12],[-15,9],[-7,12],[-1,14],[3,9],[-8,4],[-17,6],[-7,7],[-3,10],[6,20],[8,2],[8,5],[9,4],[16,1],[5,10],[5,11],[-9,-1],[-6,10],[-6,7],[4,10],[-8,3],[-18,0],[-14,-3],[-30,16],[-10,-4],[2,-12],[-17,-7],[-13,-2],[-8,-3],[-12,-9],[-13,1],[-12,5],[-17,5],[-12,9],[-9,5],[-7,-7],[8,-13],[-8,-1],[-25,8],[2,11],[-17,6],[-8,5],[-11,2],[-12,-6],[-7,-5],[-10,-4],[-12,4],[5,10],[-7,4],[-14,15],[-6,6],[-6,8],[2,12],[-13,8],[-8,8],[1,10],[1,13],[1,14],[-11,21],[-14,7],[-9,4],[5,9],[-3,10],[-7,4],[-13,12],[3,12],[-8,11],[-6,7],[-12,6],[-9,0],[-1,16],[-12,13],[-8,4],[-10,-2],[-8,-5],[-12,-4],[6,-7],[9,8],[5,-8],[-4,-12],[-1,-9],[-5,-12],[-20,-11],[-6,-7],[-9,-5],[-8,2],[-2,11],[-1,10],[-5,8],[-9,1],[-8,3],[-14,2],[-4,10],[-20,11],[5,-8],[-5,-7],[-30,-12],[-16,-5],[-12,-1],[-16,10],[-3,10],[-6,11],[-10,-3],[-12,-7],[-7,0],[-12,1],[-16,-2],[-9,7],[0,15],[3,10],[10,12],[10,6],[6,9],[-1,14],[-6,7],[-4,-9],[3,-11],[-9,-2],[-12,-5],[-11,2],[-7,6],[8,4],[-6,6],[2,12],[-2,20],[-9,7],[-14,4],[-3,9],[3,17],[-29,2],[-7,5],[8,10],[5,7],[1,12],[-3,12],[6,11],[14,7],[13,14],[4,17],[-3,12],[15,-1],[7,-8],[6,6],[1,12],[8,-2],[9,-9],[2,-10],[7,5],[0,12],[1,17],[4,11],[12,-6],[8,14],[-10,2],[7,7],[-5,8],[4,10],[10,10],[-4,9],[-11,-3],[-10,1],[-9,10],[7,10],[-10,9],[-15,19],[0,14],[9,1],[10,-12],[10,-1],[1,12],[-6,8],[-16,3],[-1,10],[7,17],[-2,19],[-7,11],[0,11],[-9,8],[-7,13],[-8,7],[-1,15],[-9,-4],[-11,11],[-6,-6],[-10,-5],[-7,6],[-10,7],[6,7],[6,14],[-14,14],[-9,2],[-7,9],[-11,2],[-10,10],[-14,9],[-26,15],[4,9],[-5,8],[-16,-3],[-4,-13],[4,-15],[-8,-2],[-4,11],[-9,3],[-6,19],[5,28],[-7,4],[-12,-6],[-8,6],[-28,12],[-15,6],[-16,2],[-9,-1],[-27,-8],[-16,3],[-10,16],[-6,14],[13,-8],[6,10],[1,10],[-5,15],[-8,17],[-12,18],[-5,9],[-2,12],[0,13],[3,10],[12,16],[8,6],[21,14],[3,11],[14,20],[-3,16],[-10,6],[-8,2],[-11,2],[-2,-14],[-9,3],[-13,8],[-6,-6],[-13,12],[-13,10],[2,12],[8,23],[-10,4],[-10,3],[-14,6],[-9,2],[-14,0],[-2,12],[-8,-6],[-6,6],[-8,7],[-11,8],[1,9],[-6,7],[4,8],[-3,12],[-10,4],[-8,8],[-7,2],[-3,1],[-12,7],[-14,5],[-12,3],[3,9],[11,4],[6,10],[-9,2],[-9,0],[2,10],[-12,3],[-9,2],[-14,-2],[-15,-7],[-7,-17],[-8,-12],[-4,-8],[-15,-2],[-10,-8],[-20,-11],[-6,8],[-16,-3],[-14,-6],[-11,-9],[-10,-12],[-1,-11],[-3,-13],[-6,7],[-5,7],[-13,-4],[-9,-1],[-7,-7],[11,-11],[-8,-6],[-8,4],[-13,2],[-7,9],[-8,1],[-13,-6],[-9,-8],[-14,-12],[-9,-1],[-1,9],[6,7],[-7,9],[-6,-8],[-10,-1],[-1,11],[-12,-5],[-9,0],[-13,4],[-22,6],[-7,7],[-8,2],[-4,10],[-11,2],[-9,6],[-11,1],[-7,6],[-6,-7],[-8,-3],[-12,7],[-9,1],[-2,-10],[8,-6],[14,-7],[-6,-7],[-9,-5],[-12,3],[-10,10],[-11,3],[-11,1],[-12,5],[-22,8],[0,-11],[-4,-8],[-17,2],[-17,2],[-11,3],[-28,2],[-5,6],[-11,0],[-7,-7],[-12,-7],[-7,10],[-9,6],[-12,2],[-13,8],[0,11],[-2,9],[-12,16],[-9,2],[-6,11],[-5,11],[-11,1],[-6,10],[-6,7],[0,9],[-9,6],[2,11],[-5,11],[-2,12],[-7,3],[-6,-7],[-11,0],[-6,12],[4,8]],[[86561,53976],[-8,2],[-6,14],[10,15],[7,-11],[23,1],[-1,10],[3,9],[3,15],[18,26],[10,9],[13,1],[9,1],[4,8],[-1,11],[10,13],[10,22],[5,11],[0,9],[-10,-13],[-4,13],[2,11],[1,9],[-15,22],[-3,11],[4,11],[3,9],[-1,13],[-13,9],[-4,18],[-4,15],[-18,4],[-9,0],[-10,0],[-8,3],[-8,-2],[-9,-1],[-5,-7],[-8,2],[-8,-3],[4,10],[-5,8],[-7,-5],[-7,3],[-9,-6],[-10,6],[-13,2],[2,10],[-8,1],[-9,13],[-4,8],[-9,3],[-1,2],[-5,9],[-5,13],[-5,8],[24,-4],[7,-1],[8,3],[4,23],[2,9],[1,19],[-9,12],[-18,22],[9,6],[-14,12],[-7,6],[4,16],[1,14],[7,10],[7,-5],[-7,-8],[13,-12],[7,4],[2,18],[-9,12],[9,11],[-1,10],[23,0],[-5,10],[-7,10],[3,13],[11,-15],[5,9],[8,5],[8,8],[3,14],[-3,11],[-5,9],[-7,11],[-6,-8],[-10,5],[-7,11],[6,6],[-19,3],[-7,8],[11,3],[2,10],[-8,2],[-7,11],[-9,11],[-4,22],[-1,14],[16,4],[7,7],[-2,19],[-2,18],[-10,-2],[-10,5],[-3,13],[-9,8],[-6,9],[5,8],[-10,4],[-8,9],[3,16],[-15,6],[-9,-1],[-4,8],[-8,6],[-22,2],[-14,10],[-9,6],[-23,9],[-8,8],[-4,10],[10,-2],[5,8],[-5,7],[10,9],[6,6],[-11,6],[-10,-5],[-10,-3],[-12,4],[-14,10],[-20,18],[-4,8],[0,27],[-1,9],[6,8],[6,6],[-5,16],[0,12],[-8,3],[-12,-2],[-8,0],[-11,2],[-32,-14],[-16,-6],[-12,-3],[-9,0],[10,10],[-8,3],[-13,8],[-7,7],[-5,9],[6,7],[13,4],[9,7],[2,12],[-6,14],[-3,10],[-5,10],[-3,10],[-7,9],[-11,8],[-14,9],[-8,0],[-8,-8],[-12,-15],[12,-2],[2,-10],[9,-14],[-16,-9],[-7,7],[-4,9],[-11,8],[-8,12],[-30,15],[-7,8],[1,22],[2,12],[16,12],[6,-11],[-7,-4],[-1,-12],[15,7],[4,9],[-1,11],[7,9],[13,17],[-10,5],[4,8],[16,0],[9,4],[-1,11],[0,14],[-2,21],[-11,9],[-16,10],[-8,4],[-10,-3],[-4,-12],[-8,-3],[1,10],[-10,6],[-11,-7],[-15,-6],[-13,-3],[-6,-7],[-7,-6],[-20,-4],[-13,-2],[-1,-12],[-6,-15],[-10,-8],[-11,2],[-24,9],[-13,-1],[-6,-9],[-17,-7],[-12,-1],[4,10],[-5,10],[-12,-1],[7,11],[-3,13],[-9,9],[-11,2],[-5,12],[7,7],[8,0],[-11,6],[-15,6],[9,15],[13,9],[8,8],[8,4],[8,0],[8,2],[5,-9],[-4,-12],[3,-10],[9,0],[13,18],[19,21],[-2,11],[-9,-3],[-8,2],[-5,9],[5,10],[11,1],[-1,12],[5,8],[7,6],[5,8],[1,9],[-7,9],[-9,-4],[-9,4],[-4,11],[-4,11],[-7,4],[-12,-6],[-7,5],[-17,-1],[-12,2],[-10,1],[-6,-6],[-9,-2],[-6,10],[-3,10],[-10,1],[-11,-1],[-1,21],[-11,3],[-8,-8],[-4,-11],[3,-10],[-12,-4],[-5,10],[-2,10],[-8,-3],[-4,9],[-4,13],[3,9],[-7,7],[-3,-13],[-10,5],[-9,7],[-9,-2],[-2,-10],[-7,11],[-17,12],[2,13],[-4,10],[-10,9],[-7,4],[-13,-10],[-11,-5],[-7,-11],[-12,-2],[-6,6],[-7,5],[14,12],[-5,14],[8,4],[-1,9],[7,7],[5,-8],[9,-5],[4,9],[-3,13],[-8,10],[4,8],[6,12],[0,10],[-8,-5],[-8,5],[7,9],[-9,9],[-2,10],[9,-8],[7,4],[-4,9],[8,6],[0,2],[0,8],[5,8],[-1,10],[5,10],[5,9],[-9,10],[-2,9],[9,9],[8,5],[-6,15],[5,9],[-6,11],[1,11],[0,9],[-9,6],[3,12],[3,12],[-9,1],[-11,5],[-7,-3],[10,15],[-11,8],[-3,16],[0,11],[8,3],[-5,8],[-4,10],[-12,3],[-13,-11],[-4,9],[-5,10],[2,14],[10,9],[-10,15],[7,7],[2,11],[-9,-1],[-3,10],[5,15],[5,10],[7,4],[12,6],[-7,4],[1,12],[-3,12],[-1,10],[5,9],[-12,3],[-6,10],[-1,12],[-16,14],[-19,6],[2,11],[-10,6],[-7,2],[-10,1],[-9,6],[2,13],[10,-1],[3,9],[-10,7],[7,11],[-2,9],[-4,8],[10,15],[-15,-10],[-3,10],[2,10],[-10,9],[-8,2],[-8,9],[-8,4],[0,-11],[-11,7],[-6,-8],[-9,2],[-5,9],[-8,2],[-8,15],[-11,19],[-16,7],[-4,-9],[-17,6],[-7,0],[2,-11],[3,-9],[-27,12],[-8,2],[-17,18],[-7,7],[-12,-8],[-5,-7],[-10,-2],[-18,8],[5,9],[-9,7],[-3,-9],[-8,3],[-11,-2],[3,15],[16,6],[-4,16],[-9,6],[2,10],[5,11],[7,8],[-5,16],[2,9],[-8,4],[9,9],[-6,14],[-1,11],[14,1],[2,20],[2,9],[4,12],[7,6],[10,10],[9,3],[6,8],[8,2],[8,0],[6,6],[4,11],[-6,16],[-5,8],[-6,7],[-9,0],[5,7],[-11,5],[-3,12],[7,6],[7,4],[-6,10],[-5,8],[17,1],[0,-12],[13,-14],[10,4],[-2,10],[6,7],[-5,8],[12,0],[4,11],[-8,6],[6,9],[7,7],[-6,9],[-2,18],[8,7],[-4,17],[-7,8],[-4,13],[4,12],[-2,10],[9,11],[4,10],[0,1],[-9,13],[-12,4],[-10,4],[-10,-2],[-5,10],[10,5],[6,-8],[2,21],[-11,-1],[-9,4],[1,2],[2,22],[-3,12],[12,2],[4,8],[7,2],[8,-2],[9,5],[8,-4],[4,-12],[10,-2],[-1,17],[-8,11],[10,7],[7,6],[-3,11],[-11,13],[3,9],[-7,16],[-5,19],[14,2],[1,14],[-3,10],[11,6],[8,2],[7,1],[-2,14],[-1,11],[9,3],[9,-2],[0,9],[0,14],[12,26],[13,0],[6,16],[-20,4],[-2,10],[-5,15],[2,21],[-6,7],[-17,-6],[-12,8],[-16,5],[-8,1],[-8,7],[-12,11],[-15,11],[-8,12],[-7,13],[-10,6],[-12,12],[-5,8],[-5,13],[-14,16],[-4,9],[-13,10],[-9,20],[-7,21],[-1,16],[3,19],[-9,-3],[-9,9],[-16,26],[-8,17],[1,10],[15,20],[9,5],[9,-8],[5,-11],[7,6],[4,8],[7,-2],[7,7],[8,-6],[3,36],[-8,5],[-9,1],[-5,9],[-9,2],[-12,-6],[-4,12],[-9,13],[5,17],[-2,11],[-3,16],[-12,8],[1,13],[7,10],[6,10],[-2,9],[3,12],[9,12],[8,13],[-3,9],[-9,4],[-4,13],[7,10],[1,27],[4,11],[9,7],[11,6],[4,12],[-2,16],[-1,10],[4,12],[5,5],[2,2],[0,1],[8,15],[15,19],[4,2],[6,-1],[10,-6],[1,0],[5,1],[5,2],[7,6],[5,4],[3,7],[2,6],[0,2],[0,5],[1,4],[1,1],[5,10],[4,3],[4,0],[20,-10],[2,-2],[-1,-2],[-1,-2],[-3,-2],[-2,-2],[-1,-2],[3,-3],[2,-1],[3,1],[1,0],[3,2],[7,6],[15,55],[20,59],[-8,11],[-2,3],[-20,40],[0,1],[-21,33],[-1,2],[-25,19],[-29,13],[-1,1],[0,5],[2,25],[14,37],[1,1],[1,3],[3,5],[9,8],[8,2],[18,-8],[15,-8],[8,-4],[7,-4],[4,1],[1,0],[3,2],[26,25],[1,3],[1,4],[-1,11],[-1,4],[-2,9],[0,1],[1,3],[6,8],[2,4],[-1,8],[-1,2],[-12,9],[-1,1],[-8,5],[-3,2],[-1,1],[-7,4],[-12,5],[-13,-5],[-3,0],[-2,1],[-4,1],[-8,3],[-3,1],[-10,7],[-7,7],[-6,6],[-1,1],[-3,5],[-1,4],[-7,20],[0,1],[-1,5],[0,3],[6,56],[7,63],[6,2],[7,10],[9,-2],[8,7],[-4,17],[6,14],[8,5],[3,13],[21,-3],[7,9],[4,10],[6,12],[4,8],[2,14],[-1,11],[-13,4],[-8,5],[-14,0]],[[44330,58606],[0,-162],[0,-15],[0,-70],[0,-66],[0,-2],[0,-83],[0,-191],[-1,-105],[0,-23],[0,-37],[-1,-56],[0,-1],[0,-1],[-2,-17],[0,-44],[-1,-124],[-2,-195],[0,-9],[-1,-129],[-1,-65],[0,-49],[-1,-37],[-1,-108],[0,-78],[0,-1],[-1,-101],[0,-34],[-1,-27],[0,-4],[-1,-89],[0,-33],[0,-27],[0,-97],[-1,-68],[-1,-70],[-2,-95],[-1,-66],[0,-24],[-1,-104],[0,-14],[-1,-13],[2,-15],[0,-12],[0,-11],[-1,-41],[0,-91],[-1,-118],[0,-15],[-1,-83],[0,-17],[-1,-80],[0,-83],[-2,-55],[-1,-34],[0,-8],[0,-3],[0,-27],[-1,-78],[0,-139],[0,-10],[-1,-9],[0,-101],[0,-13],[0,-12],[-1,-53],[0,-19]],[[44301,54945],[-28,9],[-94,30],[-150,48],[-2,-73],[-3,-144],[-2,-67],[0,-7],[0,-10],[-1,-27],[-1,-48],[-1,-35],[-1,-17],[-1,-68],[-1,-24],[-5,-234],[-2,-89],[-2,-75],[-2,-78],[0,-19],[0,-18],[-1,-17],[-3,-165],[-3,-95],[0,-33],[-21,0],[-14,-1],[-42,-1],[-405,-6],[-116,-2],[-79,-2],[-13,-1],[-72,-2],[-267,-2],[-15,0],[-71,-1],[-109,-2],[-34,-1],[-9,0],[-46,-1],[-90,-1],[-96,-1],[-72,-2],[-49,-1],[-23,0],[-3,-1],[-18,0],[-61,-1],[-25,-1],[-41,0],[-59,-2],[-46,0],[-2,0],[-24,-1],[-15,0],[-43,0],[-76,-2],[-7,0],[-8,0],[-21,0],[-260,-5],[-95,-2],[-122,-3],[-14,0],[-126,-3],[-191,-3],[-29,-1],[-1,0],[-8,0],[-66,-1],[-18,-1],[-41,0]],[[40935,53635],[0,22],[0,20],[0,28],[0,38],[1,97],[0,12],[1,149],[1,115],[1,107],[-1,56],[0,27],[0,88],[0,63],[1,63]],[[40939,54520],[0,51],[0,17],[0,42],[1,25],[0,59],[0,34],[0,35],[0,27],[1,66],[0,154],[0,23],[0,16],[1,52],[0,103],[0,51],[1,17],[0,35],[0,101],[1,23],[0,31],[1,83],[0,46],[0,10],[0,40],[0,79],[0,65],[0,17],[1,70],[0,28],[0,6],[0,7],[0,108],[1,83],[0,31],[0,48],[1,147],[1,157],[0,25],[1,45],[0,46],[2,493],[0,19],[2,334],[0,84],[1,46],[0,3],[0,82],[0,1],[1,109],[0,1],[0,1],[1,47],[0,47],[-1,44],[1,39],[0,32],[-1,37],[1,50],[0,47],[1,67],[0,59],[0,10],[1,72],[0,64],[0,16],[0,39],[1,44],[0,22],[1,79]],[[40939,54520],[-39,0],[-18,0],[-105,1],[-17,0],[-98,0],[-14,0],[-18,0],[-10,0],[-147,1],[-38,0],[-33,1],[-40,0],[-14,0],[-45,0],[-50,0],[-91,1],[-47,-2],[-27,0],[-31,0],[-114,1],[-102,0],[-90,0],[-13,0],[-14,0],[-172,1],[-13,0],[-86,0],[-29,0],[-72,0],[-15,0],[-31,0],[-88,0],[-39,0],[-16,2],[-36,0],[-67,0],[-25,0],[-55,0],[-78,0],[-116,0],[-53,0],[-52,0],[-236,0],[-15,0],[-18,0],[-35,0],[-8,0],[-37,0],[-51,0],[-24,0],[-45,-1],[-66,0],[-2,0],[-20,0],[-13,0],[-15,0],[-28,0],[-39,0],[-64,0],[-22,0],[-44,0],[-25,-1],[-44,0],[-42,0],[-25,0],[-25,0],[-105,0],[-30,0],[-81,0],[-101,0],[-66,-1],[-14,1],[-20,0],[-33,0],[-35,0],[-54,0],[-13,0],[-100,0],[-19,0]],[[37067,54524],[0,14],[0,33],[0,23],[0,12],[0,26],[0,12],[0,18],[0,13],[0,13],[-1,32],[0,55],[0,50],[0,54],[0,34],[0,51],[0,92],[0,12],[0,77],[-1,50],[0,13],[0,34],[0,23],[0,42],[0,30],[0,14],[0,33],[0,94],[1,95],[0,44],[0,57],[0,3],[0,14],[0,48],[0,19],[0,34],[0,19],[0,8],[0,35],[0,21],[0,24],[0,32],[0,53],[0,36],[0,20],[0,12],[0,72],[0,41],[0,24],[0,13],[0,87],[0,35],[0,53],[0,55],[0,34],[0,134],[0,14],[0,2],[0,48],[0,57],[0,31],[0,32],[0,12],[0,8],[0,8],[0,35],[0,47],[0,32],[0,1],[0,57],[0,9],[0,3],[0,39],[0,95],[0,14],[0,34],[0,20],[0,122],[0,71],[0,12],[0,59],[0,71],[0,72],[0,66],[0,78],[0,45],[0,2],[0,23],[0,35],[0,35],[0,73],[0,71],[-1,61],[0,10],[0,71],[0,30],[0,2],[0,111],[0,3],[0,288]],[[37067,54524],[-45,0],[-9,0],[-28,0],[-35,0],[-15,0],[-27,0],[-9,0],[-31,0],[-43,0],[-24,0],[-15,0],[-9,0],[-12,0],[-14,0],[-18,0],[-20,0],[-27,0],[-23,1],[-13,0],[-52,0],[-66,0],[-28,0],[-45,0],[-13,0],[-51,0],[-15,0],[-70,0],[-10,0],[-36,0],[-28,0],[-54,0],[-58,0],[-68,0],[-70,1],[-15,0],[-39,0],[-14,0],[-31,0],[-37,0],[-134,0],[-17,0],[-60,0],[-68,1],[-118,0],[-10,0],[-6,0],[-77,0],[-60,0],[-85,0],[-14,0],[-8,0],[-14,0],[-10,0],[-48,0],[-9,0],[-56,0],[-24,0],[-139,0],[-8,0],[-127,0],[-32,0],[-46,0],[-45,0],[-10,0],[-115,0],[-19,0],[-45,0],[-72,0],[-20,0],[-13,0],[-33,0],[-35,0],[-23,0],[-9,0],[-21,0],[-19,0],[-62,0],[-17,0],[-36,0],[-27,0],[-82,0],[-28,0],[-136,0],[-38,0],[-99,0],[-39,0],[-96,0],[-134,-1],[-109,-1],[-9,0],[-18,0],[-98,-1]],[[33173,54524],[0,110],[0,71],[0,35],[0,10],[0,25],[0,12],[0,33],[0,25],[0,21],[0,12],[0,19],[0,10],[0,10],[0,112],[-1,28],[0,12],[0,42],[0,15],[0,74],[0,144],[0,74],[0,65],[1,144],[0,139],[0,125],[0,3],[0,16],[0,32],[0,110],[0,141],[0,144],[0,70],[-1,42],[0,14],[0,15],[0,130],[0,2],[0,8],[1,76],[0,25],[0,4],[0,6],[0,32],[0,21],[0,45],[0,53],[0,22],[0,15],[1,17],[0,14],[-1,13],[0,13],[0,11],[0,10],[0,3],[0,9],[0,31],[0,47],[0,5],[0,5],[0,30],[0,39],[0,18],[0,23],[0,123],[-1,143],[0,34],[0,78],[0,32],[0,61],[0,11],[0,16],[0,59],[0,32],[1,109],[0,16],[0,10],[0,10],[0,15],[0,10],[0,12],[0,12],[0,11],[0,10],[0,9],[0,11],[0,15],[1,22],[0,31],[0,12],[0,11],[0,12],[0,12],[0,18],[0,12],[0,14],[0,20],[0,14],[0,35],[0,16],[1,9],[0,3],[0,12],[0,34],[0,92],[0,45],[0,77],[0,26],[0,39]],[[33173,54524],[-11,1],[-28,0],[-12,0],[-48,-1],[-18,0],[-61,0],[-11,0],[-45,0]],[[32939,54524],[-82,0],[-4,0],[-260,-1],[-29,0],[-61,0],[-55,0],[-136,0],[-110,0],[-117,0],[-375,1],[-18,0],[-32,0],[-17,0],[-15,0],[-19,0],[-19,0],[-12,0],[-29,0],[-59,0],[-25,0],[-11,0],[-155,0],[-95,0],[-59,0],[-22,0],[-64,0],[-36,-1],[-72,0],[-17,0],[-19,0],[-10,0],[-12,0],[-82,-1],[-14,0],[-61,0],[-34,0],[-99,1],[-26,0],[-40,0],[-314,2],[-123,0],[-77,1],[-111,0],[-84,0],[-135,0],[-6,0],[-12,0],[-13,0],[-11,1],[-116,1],[-15,0]],[[29520,54528],[-51,0],[-190,1]],[[29279,54529],[3,283],[0,11],[0,25],[0,44],[7,752],[0,19],[-1,131],[-2,280],[-1,116],[-2,168],[0,108],[0,49],[0,26],[0,15],[0,52],[0,29],[0,60],[0,34],[0,55],[0,127],[0,1],[-1,476],[0,35],[0,34],[0,128],[0,11],[0,40],[-1,135],[0,21],[-1,318],[0,90],[0,18],[0,121],[0,9],[-2,211],[0,38]],[[29279,54529],[-22,-5],[-19,0],[-94,1],[-272,0],[-10,0],[-11,0],[-74,0],[-61,0],[-17,0],[-41,0],[-35,0],[-34,0],[-68,0],[-30,0],[-38,0],[-36,0],[-22,0],[-44,0],[-33,0],[-72,0],[-49,0],[-18,0],[-17,0],[-35,0],[-29,0],[-81,0],[-48,0],[-176,0],[-20,0],[-28,0],[-17,0],[-7,0],[-2,0],[-10,0],[-28,0],[-10,0],[-36,0],[-22,0],[-27,0],[-26,0],[-16,0],[-36,0],[-11,0],[-24,0],[-19,0],[-117,0],[-34,0],[-10,0],[-53,0],[-8,0],[-68,0],[-51,1],[-13,0],[-269,0],[-37,0],[-13,0],[-83,0],[-3,0],[-19,0],[-49,0],[-32,0],[-19,0],[-93,0],[-122,0],[-220,-1],[-146,0],[-67,0],[-61,0],[-25,0],[-191,0],[-279,0],[-37,0],[-80,0]],[[25255,54525],[1,93],[0,107],[0,163],[1,190],[0,76],[0,18],[0,77],[0,202],[1,187],[0,17],[0,27],[0,21],[0,43],[0,3],[0,234],[0,141],[0,14],[1,123],[0,244],[0,41],[0,77],[0,114],[0,129],[0,90],[0,22],[1,38],[0,164],[0,370],[0,76],[3,168],[0,4]],[[25263,57798],[1456,1],[17,0],[230,0],[101,0],[31,0],[160,0],[1,811]],[[48794,58567],[-1,-128],[0,-106],[0,-46],[0,-4],[-1,-20],[0,-42],[0,-15],[0,-25],[0,-15],[0,-32],[-1,-29],[0,-111],[0,-47],[0,-22],[-1,-57],[0,-54],[0,-6],[0,-12],[0,-1],[0,-1],[-1,-27],[0,-10],[0,-39],[0,-19],[0,-93],[0,-32],[0,-64],[0,-126],[-1,-243],[0,-22],[0,-19],[0,-152],[0,-30],[0,-67],[0,-228],[0,-88],[0,-135],[-1,-151],[0,-18],[0,-62],[0,-1],[0,-151],[0,-12],[0,-163],[0,-72],[0,-10],[0,-97],[0,-31],[0,-27],[0,-52],[0,-68],[-1,-34],[0,-17],[0,-79],[1,-125],[0,-17],[0,-108],[1,-54],[0,-21],[1,-68],[0,-47]],[[48789,54915],[-111,0],[-18,-1],[-92,0],[-136,-1],[-121,-1],[-69,0],[-33,0],[-5,0],[-10,0],[-15,0],[-116,0],[-22,0],[-83,0],[-41,0],[-60,-1],[-80,1],[-50,0],[-9,-1],[-37,0],[-17,0],[-50,-1],[-73,1],[-5,0],[-126,2],[-60,1],[-59,1],[-18,0],[-16,0],[-31,1],[-8,0],[-73,1],[-74,1],[-55,0],[-36,0],[-99,1],[-14,0],[-3,0],[-89,0],[-45,0],[-105,0],[-105,1],[-18,0],[-81,0],[-54,1],[-70,0],[-17,0],[-47,0],[-15,1],[-109,0],[-8,0],[-19,0],[-103,1],[-89,1],[-12,0],[-19,0],[-35,0],[-213,2],[-111,1],[-58,1],[-74,0],[-33,1],[-16,0],[-149,2],[-36,1],[-34,0],[-31,0],[-26,0],[-48,1],[-81,1],[-11,0],[-16,1],[-8,0],[-11,0],[-50,1],[-15,1],[-43,0],[-43,1],[-19,1],[-2,0],[-8,0],[-130,2],[-19,0],[-3,0],[-10,0],[-29,0],[-6,0],[-48,0],[-4,0],[-13,1],[-29,0],[-16,0],[-16,1],[-64,2]],[[86561,53976],[-84,-13],[-98,-16],[-227,-35],[-31,-5],[-55,-9],[-60,-9],[-70,-11],[-16,-2],[-61,-9],[-73,-16],[-9,-1],[-38,-6],[-48,-7],[-136,-21],[-41,-6],[-34,-5],[-121,-18],[-153,-23],[-8,-1],[-49,-8],[-29,-4],[-28,-4],[-123,-20],[-75,-12],[-6,-1],[-14,-4],[-28,-7],[-11,-2],[-40,-6],[-107,-21],[-12,-2],[-87,-15],[-119,-22],[-59,-10],[-62,-12],[-11,0],[-120,-21],[-127,-21],[-108,-19],[-20,-4],[-80,-15],[-36,-6],[-11,-2],[-140,-25],[-15,-3],[15,-59],[16,-64],[4,-15],[-21,-7],[-64,-19],[-95,-30],[-68,-21],[-34,-10],[-141,-43],[-10,-3],[-10,-3],[-9,-3],[-12,-4],[-117,-36],[-124,-38]],[[83011,53142],[12,12],[13,8],[18,22],[2,12],[-2,9],[-5,10],[-9,35],[-7,29],[-8,13],[-18,12],[-3,10],[-11,9],[-37,15],[-2,30],[-12,11],[-10,2],[-13,3],[-35,13],[-10,9],[-8,23],[11,13],[5,9],[3,4],[4,4],[10,7],[20,14],[7,15],[-2,11],[-7,11],[-7,6],[-9,13],[0,13],[9,18],[1,10],[4,11],[8,6],[16,4],[9,1],[11,7],[15,5],[12,2],[16,0],[28,-16],[12,-6],[14,-4],[10,-1],[15,1],[11,3],[9,12],[7,9],[8,9],[13,8],[13,0],[14,-7],[10,-7],[12,-4],[9,3],[10,5],[-3,14],[-5,9],[-4,13],[-1,9],[-1,24],[1,30],[-3,31],[-7,5],[-7,-1],[-15,3],[-6,7],[5,9],[10,1],[14,8],[3,12],[-4,9],[-9,8],[-5,8],[-8,17],[-7,9],[-14,10],[-12,7],[-11,13],[-15,12],[0,11],[12,4],[17,2],[16,7],[10,10],[7,13],[4,17],[5,29],[9,7],[20,3],[1,12],[-6,14],[2,16],[11,20],[14,18],[13,12],[1,5],[1,8],[-7,13],[-3,20],[15,57],[0,12],[-14,32],[-7,14],[-8,16],[-7,12],[-6,10],[-11,22],[-1,13],[-1,10],[-4,16],[-9,17],[-15,19],[-14,21],[-7,10],[-9,19],[-13,29],[-5,8],[-7,7],[-23,21],[-13,21],[-12,29],[-8,7],[-10,2],[-12,0],[-9,-5],[-11,-10],[-12,-7],[-13,1],[-10,-4],[-19,-10],[-13,-4],[-26,-6],[-10,-11],[-11,-16],[-4,-8],[-3,-13],[4,-13],[8,-10],[5,-7],[5,-12],[8,-26],[3,-32],[-3,-13],[-1,-22],[3,-10],[14,-33],[8,-21],[9,-20],[4,-14],[-3,-16],[-16,-13],[-8,-9],[-9,-11],[-3,-14],[6,-22],[0,-13],[-6,-14],[-8,-9],[-20,-12],[-24,-10],[-7,-10],[-1,-11],[4,-15],[-5,-8],[-12,4],[-12,-4],[-14,-13],[-12,-5],[-11,5],[-11,5],[-9,4],[-7,4],[-11,9],[-10,7],[-13,12],[-23,26],[-7,12],[-13,22],[-16,27],[-3,17],[-1,13],[-3,17],[-8,16]],[[82649,54215],[-7,18],[-5,22],[0,13],[4,17],[-2,10],[-6,8],[-8,2],[-27,6],[-5,1],[-8,4],[-4,9],[-3,16],[1,20],[4,15],[7,28],[6,15],[7,17],[16,25],[11,15],[2,15],[-1,6],[0,4],[-1,11],[-7,29],[-10,21],[-6,19],[-4,12],[-5,14],[3,13],[21,16],[5,9],[-1,19],[-1,14],[0,11],[4,16],[12,19],[27,29],[7,10],[7,13],[25,55],[-3,9],[-12,7],[-51,21],[0,9],[10,29],[-11,5],[-7,-7],[-9,-19],[-6,-20],[0,-16],[-6,-28],[-12,-22],[-8,-14],[-1,-10],[-4,-27],[-10,-3],[-18,3],[-13,0],[-8,-4],[-13,-18],[-7,-11],[-8,-3],[-14,1],[-11,5],[-6,8],[-17,24],[-8,14],[-10,19],[-10,14],[-6,11],[-5,11],[-4,9],[-7,9],[-8,16],[-5,7],[-8,0],[-12,-3],[-13,5],[-10,11],[-32,38],[-14,18],[-18,11],[-17,5],[-16,-2],[-21,2],[-5,0],[-16,0],[-10,1],[-10,4],[-10,6],[-12,5],[-11,1],[-12,0],[-12,-4],[-8,-9],[-9,-20],[-8,-15],[-15,-36],[-9,-7],[-7,-9],[-8,7],[-5,17],[-7,13],[-8,8],[-16,5],[-44,7],[-7,5],[-9,8],[-6,14],[-3,10],[-5,10],[-9,8],[-13,6],[-6,9],[0,12],[4,12],[9,2],[11,-7],[13,-5],[8,7],[-3,12],[-7,14],[-12,24],[2,10],[9,13],[3,9],[2,5],[-3,29],[1,19],[5,12],[10,8],[9,2],[10,0],[16,-1],[9,-8],[8,-4],[7,8],[-6,15],[3,10],[-5,15],[-8,8],[-2,14],[7,9],[5,14],[-2,13],[-12,28],[-4,11],[-2,9],[-2,33],[-4,10],[-12,1],[-11,-6],[-8,-2],[-6,-10],[0,-11],[-3,-9],[-3,-9],[-4,-12],[-9,-6],[-12,3],[-8,10],[-4,13],[-1,17],[1,12],[5,22],[13,11],[14,7],[11,9],[10,2],[9,0],[8,-3],[17,-17],[14,-2],[6,7],[0,14],[-6,11],[-12,11],[-8,0],[-9,-6],[-9,3],[-5,9],[-2,10],[-1,21],[-2,29],[-2,11],[-8,8],[-13,8],[-12,3],[-12,1],[-22,3],[-18,9],[-10,1],[-18,-10],[-13,1],[-10,11],[-6,6],[-13,1],[-12,-5],[-7,-8],[-5,-10],[-6,-26],[-7,-9],[-10,1],[-5,8],[-4,23],[5,11],[6,10],[-2,9],[-5,11],[-11,23],[8,-2],[7,-5],[13,-3],[7,5],[7,15],[5,19],[-5,10],[-7,3],[-18,3],[-21,0],[-34,-17],[-9,-1],[-18,7],[-10,-1],[-9,-2],[-16,0],[-18,11],[-7,8],[-9,6],[-5,-10],[-8,-10],[-11,-5],[-10,2],[-7,7],[-17,24],[-8,10],[-9,16],[-3,19],[-10,1],[-6,-13],[0,-12],[-9,-18],[-11,0],[-7,6],[-5,11],[-3,15],[-10,13],[-8,2],[-2,1],[-23,2],[-33,1],[-27,1],[-15,8],[-4,13],[0,10],[1,12],[-5,9],[-13,9],[-30,2],[-10,10],[0,14],[2,20],[-6,16],[-9,9],[-12,-1],[-26,-12],[-9,-1],[-23,6],[-8,0],[-15,-5],[-6,-6],[-8,-11],[-4,-11],[-8,-8],[-9,-2],[-11,9],[-5,10],[-4,8],[-12,12],[1,10],[6,19],[9,14],[14,14],[9,15],[6,18],[5,20],[5,16],[3,11],[0,15],[4,21],[1,13],[1,27],[0,17],[-4,8],[-8,14],[6,13],[9,11],[12,13],[1,10],[-5,6],[-15,6],[-9,9],[-3,9],[-5,24],[0,10],[0,13],[-1,35],[-1,18],[-7,7],[-9,4],[-7,5],[-10,5],[-17,9],[-9,20],[-13,9],[-12,-2],[-12,-5],[-9,2],[-7,8],[-10,26],[2,16],[6,10],[16,18],[5,9],[20,72],[4,22],[10,13],[11,8],[8,5],[8,0],[9,0],[10,5],[4,17],[21,61],[8,5],[6,6],[11,1],[8,-2],[8,-3],[15,-8],[10,7],[-1,10],[-4,8],[-10,12],[-1,12],[0,12],[-11,2],[-13,-2],[-35,5],[-9,-6],[-11,-5],[-18,-14],[-7,-4],[-11,-3],[-18,-9],[-7,5],[-5,17],[-13,4],[-5,-10],[2,-11],[9,-10],[14,-14],[-6,-9],[-1,-15],[-10,-5],[-13,6],[-4,-11],[-4,-8],[-8,-3],[-12,5],[-11,10],[-9,3],[-11,0],[-2,0],[-8,4],[-1,15],[-4,17],[-11,-2],[-10,4],[-4,10],[1,14],[5,11],[1,10],[-5,8],[-5,12],[-4,8],[-10,7],[-7,-4],[-14,-22],[-13,-18],[-14,-12],[-28,-23],[-17,-9],[-13,1],[-9,4],[-10,8],[-8,11],[-7,14],[-8,11],[-7,18],[2,19],[8,23],[-3,13],[1,10],[4,15],[8,24],[1,13],[0,10],[18,44],[8,12],[3,10],[5,11],[8,28],[12,1],[7,-7],[9,0],[-2,9],[0,10],[5,10],[6,10],[3,13],[1,13],[8,12],[11,-2],[7,-12],[4,-8],[6,-26],[8,-8],[9,9],[-1,17],[8,4],[8,-3],[12,-12],[11,-4],[4,11],[-3,18],[-6,15],[-2,19],[-8,15],[-4,13],[-1,11],[-1,17],[-8,-8],[-10,-3],[-8,9],[1,9],[13,33],[-2,15],[-15,19],[-9,10],[-13,10],[-12,8],[0,9],[19,22],[-3,10],[-16,4],[-18,-2],[-10,3],[-8,5],[-21,22],[-1,11],[4,9],[8,8],[15,11],[9,15],[11,22],[-2,12],[-5,9],[-7,5],[-16,4],[-11,7],[-6,13],[0,9],[8,12],[1,17],[-10,9],[-8,8],[-10,3],[-9,0],[-15,-2],[-13,4],[-13,4],[-16,5],[-10,-1],[-6,-6],[3,-10],[10,-2],[9,3],[11,-4],[1,-11],[-8,-10],[-9,-6],[-12,-5],[-15,-5],[-19,1],[-16,-2],[-8,-6],[4,-10],[12,-2],[12,-15],[-5,-7],[-16,-11],[-7,-11],[-8,-7],[-6,6],[-2,15],[-4,15],[-3,11],[-7,10],[-9,6],[-11,-1],[-7,-8],[-17,-18],[-11,-8],[-10,-1],[-10,5],[-4,12],[-9,24],[-4,8],[-7,7],[-20,5],[-10,11],[-2,15],[2,14],[5,14],[9,3],[9,-3],[11,-5],[3,11],[1,11],[9,15],[9,2],[10,1],[17,-6],[6,-21],[7,-4],[11,-3],[13,-4],[15,0],[4,10],[3,9],[0,15],[-7,6],[-15,10],[-7,8],[-1,10],[0,2],[8,14],[-5,13],[-19,-5],[-11,-1],[-11,2],[-10,5],[-7,8],[-8,17],[4,11],[6,7],[-7,5],[-9,-4],[-10,-1],[-10,2],[-13,3],[-7,5],[-3,19],[-20,22],[-1,13],[13,4],[5,10],[4,15],[5,13],[10,10],[7,0],[17,0],[3,17],[-3,11],[6,13],[10,5],[12,14],[8,15],[15,11],[7,7],[-2,15],[-9,12],[-1,2],[-7,11],[-6,16],[-2,26]],[[56705,58537],[-1,-38],[0,-1],[-1,-29],[-1,-52],[0,-22],[-1,-19],[0,-12],[-2,-73],[-1,-48],[-1,-76],[0,-13],[-1,-13],[0,-33],[-1,-31],[-2,-81],[-2,-86],[-2,-114],[0,-1],[0,-1],[-1,-60],[-1,-44],[-1,-69],[-1,-35],[0,-15],[-2,-55],[-1,-49],[0,-19],[0,-14],[-1,-22],[0,-43],[-3,-121],[0,-22],[0,-14],[-2,-59],[-3,-183],[-3,-140],[-1,-44],[0,-28],[-1,-67],[-1,-50],[-1,-18],[-4,-151],[0,-3],[-1,-59],[-1,-21],[0,-49],[0,-1],[-1,-62],[-1,-30],[-1,-112],[-1,-36],[0,-31],[0,-10],[-3,-152],[-1,-76],[-1,-43],[0,-21],[-2,-110],[-1,-110],[-1,-21],[0,-14],[0,-25],[-1,-35],[0,-14],[0,-102],[0,-12],[1,-93],[0,-1],[0,-93],[0,-17],[0,-46],[0,-2],[0,-37],[0,-52],[0,-38],[0,-20],[0,-17],[0,-13],[1,-32],[0,-66],[0,-31],[0,-26],[0,-47],[0,-75],[0,-75],[1,-76],[0,-73],[0,-19],[0,-73],[0,-22],[0,-22],[0,-12],[1,-207],[0,-102],[1,-69],[0,-33],[0,-63],[0,-48],[1,-75],[0,-56],[0,-12],[0,-56],[0,-38],[1,-160],[0,-55],[0,-101],[0,-17],[0,-38],[-2,-42],[1,-73],[0,-43],[0,-88],[0,-73]],[[56652,52796],[-12,-7],[-13,-5],[-14,-4],[-13,2],[-8,10],[-7,9],[-10,10],[-12,12],[-12,21],[-5,10],[-6,7],[-11,9],[-14,10],[-11,5],[-24,4],[-21,6],[-12,0],[-16,1],[-14,4],[-11,17],[0,18],[-8,8],[-9,3],[-10,-1],[-13,-3],[-16,-8],[-31,-17],[-11,-9],[-8,-5],[-10,-7],[-10,-8],[-6,-9],[-6,-14],[-7,-24],[-3,-12],[-6,-11],[-18,-18],[-9,-12],[-17,-21],[-9,-10],[-12,-17],[-12,-6],[-13,-12],[-20,-16],[-13,-15],[-6,-21],[5,-9],[5,-14],[3,-15],[0,-16],[-7,-9],[-13,-8],[-18,-5],[-15,2],[-21,11],[-15,3],[-7,-4],[-10,-6],[-11,0],[-12,-10],[-10,-9],[-8,-18],[2,-18],[7,-17],[8,-16],[3,-11],[5,-11],[2,-13],[0,-16],[-7,-15],[-5,-8],[-8,-3],[-15,1],[-9,3],[-25,14],[-9,8],[-13,8],[-8,2],[-17,3],[-12,-5],[-11,-15],[-7,-11],[-8,-22],[2,-13],[8,-9],[12,-25],[-3,-12],[-6,-11],[-10,-11],[-8,-10],[-8,-8],[1,-11],[-5,-8],[-11,-19],[-11,-12],[-12,-10],[-9,-4],[-10,9],[-10,11],[-5,9],[-8,12],[-8,9],[-9,4],[-23,-2],[-37,-5],[-10,2],[-11,8],[-8,4],[-29,4],[-11,3],[-23,12],[-34,29],[-8,10],[-4,25],[20,18],[13,17],[8,15],[3,13],[2,14],[-1,13],[2,10],[-5,26],[-5,20],[-8,20],[-6,7],[-11,1],[-8,-7],[-10,-21],[-14,-15],[-3,-12],[-5,-9],[-10,-13],[-8,-11],[-8,-17],[-16,-12],[-9,0],[-16,11],[-12,8],[-13,17],[-27,26],[-12,3],[-13,2],[-33,10],[-7,1],[-3,0],[-37,6],[-13,14],[-6,7],[-5,10],[-8,5],[-8,-1],[-25,-7],[-8,2],[-16,10],[-12,2],[-16,4],[-14,5],[-9,-2],[-12,3],[-9,3],[-12,6],[-10,7],[-4,7],[-7,11],[4,11],[7,8],[6,8],[8,12],[5,11],[9,1],[7,5],[5,20],[4,13],[-3,14],[-15,1],[-12,-2],[-14,-5],[-9,2],[-12,9],[-6,7],[-11,6],[-7,-6],[-8,-6],[-8,3],[-15,-1],[-15,3],[-13,5],[-22,10],[-15,5],[-32,14],[-7,7],[-8,12],[-5,8],[-8,3],[-13,5],[-6,6],[-13,7],[-7,8],[-8,10],[-9,16],[-9,6],[-16,7],[-19,-2],[-12,-5],[-17,-17],[-6,-7],[-8,-16],[-2,-17],[-2,-24],[-1,-25],[-1,-30],[2,-13],[3,-13],[3,-13],[6,-12],[5,-11],[6,-7],[2,-14],[5,-9],[21,-5],[16,4],[10,0],[13,-2],[10,0],[8,-1],[6,-7],[-1,-10],[-14,-17],[-11,-8],[-8,-4],[-13,-4],[-14,-2],[-18,-4],[-10,-6],[-9,-4],[-16,-9],[-10,-6],[-9,-3],[-9,-3],[-6,-9],[-9,-5],[-8,-10],[-9,-16],[-14,-10],[-8,-6],[-9,-13],[-9,-6],[-11,3],[-9,0],[-18,-16],[-10,-8],[-3,-17],[4,-10],[5,-9],[2,-11],[-4,-9],[-10,-13],[-8,-11],[-10,0],[-12,10],[-8,4],[-12,9],[-8,9],[-4,10],[-3,10],[1,14],[-2,13],[-1,21],[-5,9],[-3,9],[-11,4],[-11,6],[-15,12],[-8,13],[-12,19],[-15,15],[-22,21],[-6,6],[-15,4],[-8,-1],[-13,-7],[-10,-8],[-9,-10],[-13,-16],[-16,-17],[-4,-10],[0,-15],[-3,-16],[-9,-25],[-1,-20],[-3,-11],[-4,-10],[-22,-23],[-15,-3],[-11,10],[-6,12],[-7,17],[-8,29],[-4,18],[-2,29],[-3,26],[-2,10],[-4,16],[-4,17],[-5,23],[-3,8],[-28,34],[-6,10],[-5,7],[-3,17],[-3,10],[-8,9],[-10,17],[-9,15],[-4,13],[-4,12],[-3,9],[-5,16],[-6,11],[-1,12],[-5,17],[-6,14],[-1,13],[1,14],[-1,13],[-3,12],[0,11],[-1,22],[-4,13],[-5,9],[-9,10],[-14,-1],[-8,0],[-15,3],[-9,-1],[-9,1],[-7,7],[-12,5],[-29,5],[-12,7],[-11,11],[-10,10],[-7,5],[-11,-1],[-10,4],[-11,-1],[-15,4],[-16,10],[-7,7],[-7,7],[-11,-1],[-13,5],[-17,5],[-15,5],[-8,-2],[-13,-3],[-10,-4],[-15,-8],[-8,-5],[-14,-4],[-13,-3],[-11,-4],[-15,-6],[-11,-1],[-14,-7],[-9,5],[-17,6],[-20,4],[-16,4],[-13,5],[-12,8]],[[53614,53032],[-6,6],[-13,15],[-9,10],[-7,6],[-45,42],[-19,12],[-8,3],[-10,2],[-8,-1],[-27,-9],[-8,-11],[-1,-13],[-3,-10],[-4,-18],[-5,-13],[1,-13],[5,-9],[6,-8],[10,-9],[15,-13],[9,-6],[18,-6],[21,-7],[11,-11],[21,-29],[8,-11],[2,-13],[0,-17],[-1,-10],[-4,-14],[-9,-26],[-13,-23],[-14,-12],[-8,-4],[-16,-6],[-15,0],[-19,-2],[-25,-3],[-8,0],[-12,3],[-6,7],[-7,15],[-6,9],[-18,11],[-10,5],[-11,12],[-6,6],[-4,10],[-7,15],[0,16],[-10,21],[-11,15],[-5,12],[-8,13],[-10,16],[-22,29],[-6,8],[-9,10],[-12,12],[-14,13],[-15,14],[-12,6],[-30,8],[-30,4],[-11,-6],[-30,-9],[-12,-2],[-3,0],[-7,1],[-21,3],[-23,4],[-7,3],[-6,8],[1,14],[5,18],[7,12],[11,20],[6,7],[13,18],[7,16],[7,10],[32,16],[34,23],[17,15],[16,16],[7,9],[13,20],[6,12],[12,38],[-2,10],[-5,14],[-4,16],[-5,10],[-10,11],[-22,13],[-14,0],[-16,-3],[-23,-2],[-17,-3],[-15,-4],[-16,-2],[-33,1],[-31,-3],[-19,-3],[-29,-8],[-15,0],[-18,4],[-7,6],[-11,16],[-3,9],[0,11],[7,14],[8,6],[12,4],[55,12],[12,7],[22,17],[26,25],[15,15],[9,13],[4,13],[1,17],[-2,11],[-6,11],[-7,9],[-13,7],[-7,3],[-14,0],[-12,-10],[-11,-6],[-12,-2],[-20,-8],[-10,-3],[-17,0],[-18,7],[-7,6],[-8,13],[-5,14],[-10,14],[-4,15],[-1,17],[5,9],[3,9],[-3,16],[-5,14],[-5,8],[-10,10],[-24,17],[-7,12],[-11,20],[-8,10],[-12,10],[-14,2],[-15,-3],[-6,-7],[-6,-11],[-4,-18],[-2,-18],[-1,-22],[-4,-14],[2,-19],[7,-18],[4,-18],[-8,-4],[-10,-3],[-12,-2],[-12,0],[-8,1],[-10,4],[-10,7],[-15,11],[-1,0],[2,62],[1,69]],[[52702,53825],[0,3],[1,24],[0,19],[1,41],[0,38],[0,11],[3,146],[1,44],[1,128],[2,121],[2,207],[1,15],[1,74],[1,51],[3,207],[1,84],[0,17],[0,25],[1,66],[1,56],[2,160],[0,2],[1,34],[1,53],[0,13],[0,19],[1,17],[0,28],[1,50],[0,74],[-1,10],[1,17],[0,10],[0,21],[2,88],[0,21],[0,16],[0,28],[1,21],[0,58],[2,159],[1,24],[0,19],[0,33],[2,89],[0,42],[1,42],[0,28],[0,5],[2,162],[0,11],[2,76],[3,175],[0,40],[0,31],[2,115],[0,17],[1,12],[-1,30],[1,52],[0,22],[0,22],[1,35],[0,28],[1,45],[1,19],[0,26],[1,25],[-1,32],[1,12],[0,28],[1,52],[1,116],[1,53],[1,86],[1,89],[0,1],[0,1],[0,25],[0,71],[1,39],[1,69],[0,135],[1,30],[0,21],[0,51],[0,45],[0,25],[0,18],[0,11],[1,44],[0,40],[0,26],[1,66],[0,38],[0,14]],[[52702,53825],[-20,0],[-45,0],[-5,0],[-9,0],[-55,0],[-30,0],[-16,0],[-13,0],[-25,-1],[-11,0],[-10,1],[-42,0],[-1,0],[-13,0],[-19,0],[-13,0],[-229,2],[-14,0],[-8,0],[-26,1],[-45,0],[-170,2],[-54,0],[-84,1],[-30,0],[-58,1],[-124,2],[-192,1],[-140,1],[-13,0],[-5,0],[-3,0],[-107,1],[-417,4],[-75,2],[-51,2],[-28,0],[-39,1],[-72,1],[-4,0],[-28,1],[-51,1],[-43,1],[-22,0],[-107,2],[-43,1],[-86,2],[-10,-2],[-42,0],[-79,1],[-130,4],[-9,0]],[[49737,53858],[-36,1],[-44,1],[-33,2],[-10,0],[-65,1],[-64,0],[-20,1],[-68,1],[-34,-1],[-8,0],[-114,1],[-17,0],[-246,2],[-19,0],[-30,1],[-3,0],[-6,-1],[-11,1],[-17,0],[-12,0],[-11,0],[-13,0],[-58,1],[0,45],[0,24],[-2,131],[0,68],[-1,40],[-1,102],[-1,12],[-1,68],[0,54],[0,33],[0,63],[-1,43],[0,77],[0,47],[-1,99],[0,5],[0,10],[-1,125]],[[60719,54986],[-83,-15],[-52,-8],[-104,-18],[-37,-6],[-82,-14],[-67,-11],[-42,-8],[-54,-9],[-35,-6],[-10,-1],[-57,-10],[-38,-7],[-8,-1],[-9,-1],[-19,-4],[-12,-54],[-13,-67],[-2,-9],[-21,-96],[-6,-33],[-6,-27],[-11,-50],[-36,-171],[-5,-25],[-2,-7],[-10,-49],[-7,-34],[-16,-81],[-6,-21],[-51,-39],[-43,-31],[-21,-16],[-12,-9],[-43,-32],[-155,-116],[-63,-46],[-29,-22],[-45,-33],[-15,-11],[-23,-18],[-35,-25],[-24,-18],[-35,-26],[-26,-20],[-20,-14],[-12,-9],[-19,-15],[-45,-33],[-8,-8],[-36,-26],[-22,-16],[-31,-23],[-18,-14],[-46,-34],[-33,-25],[-59,-44],[-8,-6],[-45,-34],[-11,-9],[-22,-16],[-28,-21],[-140,-105],[-16,-11],[-22,-15],[-9,-7],[-126,-89],[-55,-32],[-53,-31],[-106,-87]],[[58259,52957],[-13,-8],[-18,-10],[-9,-8],[-11,-5],[-20,-4],[-10,-1],[-15,4],[-10,-4],[-5,-10],[-7,-15],[-5,-13],[-12,-39],[-6,-6],[-11,-3],[-16,-7],[-18,-3],[-11,-4],[-12,2],[-5,16],[-5,14],[-5,9],[-4,9],[-7,8],[-16,15],[-7,15],[-10,5],[-6,8],[-19,23],[-9,12],[-5,9],[-12,17],[-7,7],[-12,9],[-18,13],[-22,5],[-8,-8],[-5,-7],[-6,-6],[-9,-6],[-27,-18],[-13,-11],[-5,-10],[-7,-21],[-8,-20],[-3,-11],[-12,-29],[-12,-11],[-19,-4],[-12,-8],[-9,-8],[-4,-15],[5,-9],[11,-23],[-1,-16],[-11,-10],[-15,-12],[-10,3],[-10,9],[-11,17],[-9,5],[-13,3],[-16,5],[-23,-36],[-13,-8],[-22,-16],[-9,-9],[-21,-13],[-6,-6],[2,-9],[-7,-7],[-8,1],[-8,6],[3,16],[0,10],[-9,13],[-15,0]],[[57506,52738],[-12,-9],[-7,-7],[-12,-9],[-14,-11],[-3,-13],[3,-13],[6,-17],[9,-16],[-2,-15],[-10,-8],[-11,-1],[-10,4],[-7,5],[-9,10],[-12,16],[-13,15],[-9,5],[-10,2],[-9,5],[-8,13],[0,12],[4,12],[2,20],[4,14],[3,13],[-7,11],[-6,7],[-9,7],[-28,6],[-14,10],[-9,1],[-18,-4],[-7,-9],[0,-22],[3,-11],[7,-13],[-1,-12],[-11,-8],[-8,-7],[-10,-7],[-7,-9],[-6,-7],[-10,6],[-6,9],[-6,12],[-8,10],[-14,16],[-9,11],[-6,8],[-10,7],[-11,6],[-15,5],[-34,9],[-19,-2],[-20,-9],[-18,-4],[-17,3],[-6,8],[-10,11],[-9,0],[-11,2],[-27,1],[-14,-1],[-3,-1],[-8,-3],[-10,-7],[-22,-14],[-18,-10],[-20,-17],[-2,-10],[-25,-36],[-11,-9],[-34,-18],[-9,-2],[-11,-8],[-5,11],[0,12],[1,18],[2,15],[-9,21],[-4,13],[-4,15],[-3,13],[-1,14],[-4,9],[-9,16],[-11,6],[-8,6],[-11,6],[-10,8],[-8,1],[-12,-3],[-7,-9],[-14,-21],[-7,-11],[-9,-10],[-10,-5]],[[63744,52321],[-7,11],[-31,53],[-44,75],[-15,25],[-10,18],[-8,13],[-61,106],[-34,58],[-27,46],[-55,94],[-25,42],[-1,2],[-54,94],[-26,43],[-62,106],[-7,13],[-9,15],[-18,31],[-16,28],[-25,43],[-20,32],[-10,19],[-5,9],[-46,80],[-37,65],[-37,63],[-5,8],[-7,12],[-22,39],[-39,66],[-31,52],[-26,47],[-11,17],[-23,41],[-94,164],[-41,71],[-8,14],[-50,87],[-17,30],[-37,64],[-6,10],[-30,52],[-13,21],[-10,17],[-107,179],[-20,33],[-64,108],[-26,43],[-23,39],[-9,15],[-8,14],[-15,24],[0,1],[-24,40],[-11,18]],[[67585,54723],[-188,-118],[-20,-12],[-28,-18],[-22,-13],[-101,-64],[-46,-29],[-189,-117],[-117,-73],[-48,-31],[-59,-36],[-11,-5],[-21,-14],[-11,-6],[-1,-1],[-16,-10],[-32,-20],[-49,-30],[-14,-9],[-8,-5],[-31,-19],[-195,-122],[-39,-24],[-154,-96],[-62,-39],[-37,-22],[-33,-21],[-74,-46],[-56,-35],[-92,-57],[0,-1],[-9,-5],[-17,-11],[-145,-91],[-44,-27],[-204,-126],[-18,-11],[-51,-31],[-117,-72],[-49,-30],[-9,-6],[-183,-113],[-93,-57],[-39,-23],[-137,-86],[-27,-17],[-12,-8],[-2,-1],[-7,-5],[-11,-6],[-3,-2],[-10,-7],[-8,-5],[-11,-6],[-41,-27],[-147,-92]],[[64437,52765],[-114,-72],[-97,-61],[-65,-41],[-20,-13],[-90,-56],[-2,-1],[-107,-68],[-40,-29],[-7,-4],[-15,-10],[-81,-53],[-55,-36]],[[82649,54215],[-27,-15],[-87,-49],[-132,-74],[-7,-4],[-18,-10],[-140,-78],[-3,-2],[-26,-14],[-26,-14],[-10,-6],[-13,-8],[-8,-4],[-7,-4],[-10,-5],[-8,-5],[-41,-23],[-21,-12],[-85,-44],[-53,-30],[-22,-13],[-38,-21],[-4,-2],[-28,-16],[-62,-34],[-81,-46],[-39,-21],[-10,-6],[-80,-45],[-10,-5],[-54,-31],[-69,-39],[-66,-36],[-109,-62],[-68,-38],[-11,-6],[-88,-49],[-37,-21],[-20,-11],[-6,-4],[-204,-116],[-65,-37],[-14,-8],[-37,-20],[0,-1],[-34,-19],[-8,-4],[-78,-44],[-96,-54],[-1,-1],[-17,-9],[-48,-28],[-24,-13],[-30,-17],[-29,-17],[-1,0],[-7,-5],[-154,-87],[-2,-1],[-47,-27],[-18,-10],[-16,-9],[-18,-9],[-7,-4],[-24,-14],[-15,-8],[-68,-38],[-19,-11],[-28,-16],[-30,-17],[-65,-36],[-46,-26],[-9,-5],[-34,-20],[-118,-66],[-8,-5],[-46,-27],[-66,-37],[-1,-1],[-14,-8],[-72,-41],[-53,-29],[-44,-25],[-80,-45]],[[79230,52293],[-28,50],[-27,52],[-19,36],[-17,36],[-4,11],[-4,11],[-5,10],[-6,13],[-28,50],[-32,56],[-28,47],[-30,52],[-41,73],[-18,31],[-24,41],[-15,29],[-81,148],[-34,63],[-3,5],[-35,63],[-86,156],[-16,29],[-27,51],[-46,82],[0,2],[-83,149],[-6,11],[-4,7],[-5,9],[-13,25],[-7,12],[-13,24],[-78,141],[-48,88],[-11,21],[-28,51],[-12,21],[-20,36],[-20,36],[-5,10],[-18,33],[-14,25],[-21,34],[-21,40],[-10,16],[-16,30],[-19,35],[-49,87],[-28,52],[-27,48],[-37,66],[-51,93],[-33,60],[-56,101],[-1,1],[-14,27],[-7,12],[-12,22],[-34,62],[-12,21],[-18,33],[-24,43],[-35,62],[-16,29],[-49,90],[-12,22],[-14,24],[-11,21],[-17,31],[-7,11],[-16,30],[-11,19],[0,1],[-18,31],[-4,8],[-18,33],[-14,25],[-13,22],[-2,4],[-14,25],[-40,73],[-13,22],[-107,192],[-9,16],[-11,20]],[[19950,57794],[-1,-17],[-1,-15],[-3,-43],[-1,-5],[-23,-322],[-5,-61],[-5,-76],[-2,-21],[-6,-92],[-2,-23],[-1,-15],[-3,-40],[-1,-11],[-5,-76],[-5,-62],[-1,-22],[-4,-50],[-16,-220],[-4,-51],[-24,-343],[-4,-50],[-3,-48],[-1,-8],[-6,-94],[-2,-22],[-9,-126],[-3,-43],[-2,-30],[0,-4],[-13,-182],[-6,-86],[-6,-85],[-4,-55],[-1,-21],[-3,-33],[-1,-12],[-6,-85],[-12,-178],[-17,-236],[-17,-242],[-7,-105],[-11,-154],[-4,-51],[-10,-153],[-3,-45],[-28,-396],[-16,-228],[-6,-93],[0,-1],[-3,-40],[-15,-217],[-4,-64],[-14,-196],[-2,-33],[-16,-224],[0,-2],[-14,-192],[-3,-53],[-5,-59],[-2,-34],[-1,-16],[-9,-121],[-14,-178],[-10,-151],[-10,-134],[-3,-55],[-2,-19],[-3,-43],[-5,-72],[-6,-85],[-25,-368],[-2,-22],[-2,-41],[-9,-118],[-3,-49],[-1,-15],[-9,-92],[-7,-98],[-5,-75],[-8,-126],[-12,-166],[0,-11],[-5,-66],[-5,-74],[-12,-159],[-11,-162],[-1,-10],[-2,-21],[-1,-25],[-1,-7],[0,-3],[0,-22],[-1,-38],[0,-17],[-5,-4],[-3,-43],[-1,-26],[-1,-9],[-1,-23],[-4,-82]],[[19358,49403],[-17,-12],[-38,-24],[-2,-2],[-68,-45],[-6,-4],[-9,-5],[-36,-25],[-28,-19],[-17,-11],[-14,-9],[-53,-35],[-43,-29],[-23,-15],[-13,-9],[-47,-31],[-61,-41],[-90,-60],[-3,-2],[-22,-14],[-8,-6],[-2,0],[-25,-17],[-85,-57],[-26,-17],[-39,-26],[-54,-36],[-4,-3],[-47,-30],[-81,-51],[-109,-67],[-16,-10],[-42,-26],[-32,-20],[-19,-12],[-50,-32],[-34,-22],[-89,-56],[-33,-21],[-44,-29],[-10,-6],[-17,-11],[-52,-38],[-33,-22],[-44,-30],[-13,-8],[-128,-85],[-10,-8],[-282,-188],[-16,-10],[-45,-31],[-62,-41],[-29,-20],[-124,-83],[-63,-41],[-99,-67],[-66,-44],[-66,-44],[-48,-32],[-60,-40],[-19,-13],[-266,-177],[-50,-34],[-128,-87],[-2,-2],[-55,-37],[-41,-29],[-15,-11],[-180,-121],[-130,-87],[-52,-35],[-148,-100],[-105,-70],[-31,-21],[-64,-45],[-53,-35],[-72,-49],[-4,-2],[-6,-5],[-47,-31],[-43,-29],[-78,-52],[-134,-90],[-238,-160],[-25,-16],[-38,-26],[-19,-13],[-2,-2],[-14,-9],[-32,-21],[-2,-1],[-51,-34],[-43,-29],[-40,-27],[-11,-7],[-64,-44],[-15,-9],[-23,-15],[-14,-9],[-16,-11],[-49,-33],[-22,-15],[-15,-10],[-28,-19],[-11,-8],[-8,-5],[-23,-16],[-10,-6],[-32,-22],[-19,-13],[-13,-8],[-17,-12],[-67,-45],[-64,-43],[-10,-6],[-63,-43],[-27,-18],[-120,-81],[-61,-41],[-26,-18],[-26,-18],[-43,-29],[-10,-6],[-55,-38],[-90,-60],[-22,-15],[-69,-47],[-31,-21],[-105,-71]],[[13156,45262],[0,73],[0,33],[0,163],[1,24],[0,72],[1,128],[0,10],[0,91],[1,31],[-1,20],[0,17],[1,91],[0,11],[0,43],[-1,11],[0,96],[1,108],[0,44],[0,86],[1,155],[0,50],[1,108],[0,45],[0,84],[0,22],[67,0],[-5,950],[-4,705],[-53,0],[8,229],[2,70],[3,90],[1,26],[22,689],[15,460],[0,141],[0,121],[0,122],[0,20],[0,192],[0,36],[-1,35],[-2,179],[-1,12],[0,10],[-3,195],[0,14],[0,13],[-1,14],[0,12],[0,39],[-1,40],[-2,110],[-3,233],[-2,99],[0,20],[-1,95],[0,85],[-1,45],[-4,435],[-3,401],[-3,297],[0,190],[-1,218],[-2,400],[2,359],[-7,333],[-4,196],[-4,159],[-3,160],[-1,36],[-1,80],[-1,33],[-1,33],[-1,69],[-1,16],[-1,57],[-3,127],[0,1],[-1,16],[0,8],[0,6],[-12,434],[0,131],[0,302],[0,99],[0,48],[-2,95],[7,8],[-1,17],[0,26],[0,23],[0,41],[-2,205],[-1,161],[-1,63],[-1,123],[1,409],[0,5]],[[13147,57799],[299,0],[238,0],[104,0],[23,0],[2272,-2],[535,0],[2789,-2],[422,-1],[67,0],[4,0],[50,0]],[[13156,45262],[-198,-133],[-121,-81],[-25,-17],[-89,-61],[-44,-30]],[[12679,44940],[-2,2],[-2,2],[-2,2],[-3,1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-11,40],[-2,14],[-2,24],[-10,110],[0,5],[0,3],[2,21],[5,20],[0,2],[-4,27],[-4,21],[-2,16],[-1,1],[-1,1],[-2,1],[-2,1],[-7,1],[-6,0],[-5,-1],[-3,1],[-4,1],[-3,1],[-20,14],[-1,1],[0,1],[-2,4],[0,2],[0,2],[0,2],[0,3],[-25,38],[-8,0],[-6,2],[-3,1],[-1,1],[-1,1],[-1,1],[-13,13],[-1,20],[-4,37],[-2,20],[-1,1],[-2,3],[-31,44],[0,1],[-2,1],[-1,1],[-2,1],[-1,0],[-2,0],[-3,-2],[-35,-24],[-31,-1],[-75,-29],[0,-1],[0,-1],[-2,-7],[0,-1],[-4,-4],[-1,0],[-32,17],[-3,3],[-16,23],[-2,6],[-4,8],[-1,3],[-5,8],[-1,2],[-2,2],[-2,2],[-3,3],[-2,1],[-1,2],[-9,6],[-20,9],[-35,0],[-1,0],[-9,-5],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,-3],[1,-2],[7,-10],[7,-8],[2,-3],[1,-2],[1,-1],[1,-3],[0,-2],[1,-6],[0,-2],[0,-2],[-6,-25],[-1,-2],[0,-1],[-1,-2],[-2,-1],[-2,0],[-2,0],[-14,2],[-1,0],[-54,20],[-1,1],[0,1],[0,2],[1,3],[3,5],[1,16],[-13,23],[-1,1],[-2,1],[-8,2],[-1,0],[-5,-1],[-3,0],[-7,-6],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-11,-4],[-1,-1],[-1,1],[-2,0],[-1,1],[-1,1],[-2,3],[-2,2],[0,1],[-4,10],[-1,3],[-1,5],[-1,2],[0,5],[0,2],[1,1],[1,7],[2,8],[0,2],[5,13],[1,3],[2,8],[1,3],[1,7],[0,1],[-1,5],[-6,26],[0,1],[-1,0],[-57,30],[-34,2],[-7,0],[-1,0],[-2,-2],[-5,-4],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-1,-3],[-2,-3],[-1,0],[-6,-2],[-3,-1],[-11,0],[-2,1],[-2,0],[-2,1],[-13,16],[0,2],[-1,1],[0,2],[1,1],[1,2],[1,2],[3,3],[2,1],[1,0],[2,0],[3,0],[3,0],[2,2],[2,1],[2,3],[2,3],[1,3],[1,4],[0,1],[0,2],[0,2],[-1,2],[-6,21],[-1,1],[-2,4],[-2,1],[-18,15],[-28,40],[0,2],[-1,1],[0,1],[-4,7],[-1,2],[-19,12],[-3,1],[-6,2],[-1,0],[-4,0],[-20,0],[-2,0],[-28,15],[-37,71],[-12,17],[-15,19],[-2,-1],[-2,-2],[-4,0],[-3,0],[-3,1],[-2,1],[-1,1],[-4,5],[-4,4],[-12,16],[0,1],[-1,2],[0,3],[1,17],[0,3],[6,28],[-1,36],[-1,12],[-18,21],[-2,0],[-3,-1],[-1,0],[-1,-1],[-1,-1],[-3,-3],[-4,-5],[-2,-8],[0,-2],[0,-1],[-1,-2],[-2,-1],[-2,-2],[-2,-1],[-3,-1],[-2,0],[-16,2],[-3,1],[-1,1],[-1,1],[-2,3],[-1,2],[-1,3],[-1,3],[0,4],[-1,2],[1,4],[0,3],[10,19],[7,6],[3,2],[1,0],[1,2],[0,2],[0,1],[-1,2],[-1,1],[-1,1],[-3,1],[-12,2],[-21,-6],[-9,-4],[-2,-1],[-29,-8],[-43,26],[-64,36],[-3,1],[-3,1],[-2,1],[-3,0],[-2,-1],[-4,-1],[-18,-11],[-2,-1],[-4,-5],[-2,-3],[-5,-5],[-23,-7],[-2,0],[-69,5],[-1,0],[-2,2],[-1,1],[-1,2],[-1,4],[-1,3],[0,2],[4,24],[1,2],[0,2],[2,4],[1,4],[2,3],[3,4],[2,2],[3,3],[3,4],[3,2],[1,1],[1,2],[4,11],[1,3],[1,3],[0,2],[12,74],[0,1],[-1,2],[-1,1],[-8,5],[-5,3],[-2,1],[-2,0],[-2,1],[-1,-1],[-2,-2],[-6,-3],[-3,0],[-3,0],[-13,3],[-2,1],[-1,1],[-6,6],[-10,12],[-4,7],[-3,8],[-16,-5],[-11,-3],[-1,-3],[-8,-14],[0,-1],[-25,-39],[-1,-1],[-2,0],[-4,0],[-3,1],[-8,4],[-3,2],[-1,1],[-55,77],[-7,51],[-4,19],[-1,3],[-2,3],[0,1],[-2,1],[-2,0],[-2,0],[-3,0],[-1,0],[-5,1],[-14,4],[-5,3],[-2,1],[-4,5],[-1,2],[-1,4],[-5,15],[-1,3],[-1,5],[0,3],[-1,2],[-1,2],[-18,20],[-1,1],[-1,0],[-2,-1],[-60,-40],[-26,-28],[0,-2],[0,-3],[-1,-2],[-2,-2],[-2,-3],[-6,-6],[-4,-3],[-20,-9],[-2,0],[-13,5],[-5,3],[-35,25],[-2,2],[-5,8],[-1,1],[-1,2],[-2,9],[0,2],[1,7],[0,2],[13,28],[13,13],[2,-1],[2,-1],[3,-1],[2,0],[3,0],[3,0],[11,3],[2,1],[9,7],[2,3],[0,1],[13,26],[1,2],[0,2],[0,2],[0,1],[-9,17],[-31,57],[-1,1],[-2,0],[-17,0],[-2,0],[-1,0],[-2,-1],[-2,-2],[-11,-12],[-5,-8],[-2,-3],[-1,-2],[-2,-4],[-5,-5],[-10,-11],[-20,-13],[-4,-1],[-3,-1],[-7,-1],[-1,0],[-7,5],[-1,2],[-1,1],[-27,27],[-36,4],[-30,-10],[-6,-2],[-44,-17],[-4,-2],[-14,-8],[-1,0],[-1,-2],[-1,-3],[-4,-7],[-4,-6],[-9,-13],[-1,-1],[-21,-7],[-18,-2],[-45,49],[-1,2],[-4,8],[-7,13],[0,2],[-1,2],[0,7],[0,5],[0,9],[-1,13],[-1,2],[-5,14],[-1,1],[-1,1],[-14,8],[-2,0],[-6,1],[-4,0],[-11,0],[-2,0],[-2,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[-2,-1],[-2,-2],[-19,-12],[-1,0],[-2,0],[-1,1],[-2,3],[-1,2],[-1,4],[-2,3],[-1,4],[-1,4],[0,4],[-1,4],[0,3],[-1,4],[-1,4],[-16,42],[-2,2],[-17,20],[-1,1],[-6,2],[-4,1],[-4,1],[-9,1],[-3,0],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-2,-2],[-2,-2],[-3,0],[-3,0],[-2,0],[-2,1],[-2,3],[-2,3],[-2,5],[-1,4],[-4,17],[-1,3],[0,10],[0,2],[1,2],[1,3],[0,1],[0,2],[-1,2],[-7,15],[-1,2],[-3,1],[-8,4],[-3,1],[-3,0],[-7,1],[-4,0],[-3,-1],[-3,-1],[-23,-6],[-8,-2],[-3,-2],[-3,-2],[-2,-1],[-1,-1],[-5,-12],[-1,-3],[0,-3],[-1,-6],[1,-13],[2,-10],[1,-6],[-23,-50],[-19,-36],[-1,-1],[-2,-1],[-2,0],[-6,3],[-3,1],[-2,2],[-2,1],[-2,3],[-1,3],[-1,2],[0,5],[0,7],[0,4],[1,4],[1,2],[-21,4],[-25,-25],[-1,-1],[-8,-5],[-2,0],[-2,0],[-2,0],[-7,4],[-1,1],[-5,7],[-1,8],[3,18],[5,17],[2,40],[-5,60],[-1,2],[-1,2],[-3,5],[-2,4],[-2,3],[-2,1],[-2,0],[-36,-7],[-26,21],[0,3],[-1,2],[-1,2],[-1,1],[-37,16],[-19,2],[-2,0],[-9,0],[-1,1],[-1,0],[-1,2],[-5,33],[0,1],[0,2],[1,2],[-1,2],[-6,19],[-1,2],[-1,1],[-1,1],[-26,4],[-16,-1],[-4,0],[-2,-1],[-2,-1],[-11,-8],[-1,-1],[0,-1],[-13,-19],[-17,-16],[-2,-2],[-3,0],[-7,3],[-3,3],[-6,11],[-1,2],[-1,2],[0,3],[1,3],[2,2],[2,3],[1,5],[3,16],[0,3],[0,2],[-1,3],[-1,2],[-2,3],[-1,2],[-5,5],[-24,20],[-21,28],[-8,19],[-1,1],[-2,0],[-1,0],[-16,-9],[-6,-3],[-3,-2],[-2,-1],[-7,-6],[-4,-3],[-2,-1],[-2,-2],[-3,0],[-15,-2],[-3,0],[-6,1],[-6,0],[-1,0],[-44,19],[-31,14],[-39,23],[-2,1],[-2,1],[-1,0],[-2,-1],[-48,-24],[-2,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-2],[-14,2],[-23,18],[-4,4],[-2,2],[-1,2],[-3,7],[-2,6],[-1,1],[0,1],[0,2],[2,2],[2,5],[1,2],[1,1],[10,13],[2,2],[2,1],[2,1],[25,5],[2,1],[3,2],[2,12],[0,1],[-2,26],[-5,12],[1,41],[0,2],[0,23],[0,2],[2,2],[2,3],[2,2],[2,1],[4,1],[2,1],[13,11],[1,1],[0,2],[0,3],[-1,2],[-10,15],[-6,4],[-2,1],[-2,0],[-2,0],[-4,-1],[-4,0],[-6,-1],[-9,0],[-11,2],[-7,2],[-4,2],[-30,25],[-1,1],[0,2],[1,1],[1,2],[1,1],[3,4],[5,5],[4,4],[2,1],[1,1],[3,3],[3,1],[7,4],[2,2],[4,6],[2,4],[1,2],[1,4],[1,4],[0,1],[-4,29],[-1,2],[-2,4],[-1,2],[-1,1],[-2,2],[-5,5],[-20,19],[-1,1],[-1,0],[-2,-1],[-2,-1],[-11,-9],[-8,-7],[-6,-6],[-3,-2],[-1,-1],[-27,-6],[-2,-1],[-1,1],[-1,1],[0,1],[0,12],[0,1],[1,3],[1,2],[-1,28],[-10,50],[-1,2],[-1,2],[-2,1],[-7,3],[-4,1],[-4,2],[-61,6],[-37,36],[-3,3],[-1,1],[-5,4],[-3,2],[-3,1],[-25,11],[-46,14],[-2,-1],[-1,-1],[-2,0],[-2,0],[-3,2],[-5,4],[-3,6],[-3,4],[-14,28],[-1,2],[-1,5],[-5,19],[-44,-1],[-14,38],[5,1],[2,0],[2,2],[1,1],[3,7],[1,2],[0,1],[1,5],[1,2],[-1,17],[0,2],[-1,4],[0,2],[-1,1],[-1,1],[-2,0],[-4,1],[-3,1],[-2,0],[-66,0],[-27,-2],[-15,18],[0,2],[0,3],[-1,14],[-1,6],[0,1],[-1,2],[-23,30],[-25,11],[-31,36],[0,1],[-10,12],[-2,2],[-3,1],[-61,37],[-2,3],[-5,9],[-9,14],[-1,1],[-26,27],[-2,1],[-1,0],[-3,-1],[-6,-1],[-5,-1],[-2,0],[-2,1],[-16,7],[-1,1],[-1,1],[-2,4],[1,2],[18,34],[15,11],[1,-3],[0,-1],[1,0],[2,0],[0,2],[1,2],[0,3],[0,3],[0,4],[-1,4],[-2,5],[-1,3],[-42,73],[-1,2],[-1,2],[-2,3],[-3,3],[-8,9],[-2,0],[-7,2],[-1,0],[-2,0],[-3,-2],[-4,-2],[-7,-5],[-9,-5],[-1,0],[-3,-1],[-7,-1],[-2,0],[-44,-1],[-21,27],[0,2],[-8,17],[-31,50],[-2,1],[-3,2],[-3,1],[-4,1],[-7,1],[-5,1],[-4,2],[-4,2],[-4,2],[-4,3],[-2,3],[-23,31],[-8,11],[-3,5],[-1,2],[0,2],[-1,3],[-1,2],[-2,2],[-2,1],[-3,1],[-34,8],[-3,0],[-4,-1],[-3,-1],[-3,-1],[-3,-2],[-3,-3],[-3,-2],[-3,-1],[-4,0],[-4,0],[-5,0],[-4,1],[-8,3],[-80,31],[-6,3],[-4,3],[-4,2],[-4,5],[-5,7],[-43,64],[-13,25],[-20,41],[-17,36],[-1,3],[-1,4],[0,3],[1,4],[7,26],[2,8],[2,7],[0,4],[0,3],[-1,4],[-1,5],[-2,3],[-13,22],[-2,3],[-2,1],[-3,1],[-3,1],[-17,2],[-8,1],[-4,1],[-4,0],[-4,1],[-2,1],[-1,1],[-5,6],[-2,3],[-2,3],[-3,9],[-5,11],[-11,33],[-1,3],[0,2],[2,6],[0,1],[4,9],[1,4],[2,5],[2,6],[0,3],[1,3],[1,17],[1,12],[0,4],[0,5],[0,5],[-23,110],[-19,88],[-1,4],[-1,2],[-11,14],[-6,7],[-4,4],[-3,2],[-6,4],[-8,5],[-21,14],[-8,6],[-5,4],[-5,5],[-2,4],[-4,6],[-2,6],[-1,6],[-5,23],[-4,20],[-4,22],[-1,5],[-1,3],[-3,7],[-26,56],[-3,5],[-2,4],[-5,7],[-6,6],[-5,7],[-7,5],[-11,9],[-13,11],[-22,17],[-58,45],[-23,18],[-17,14],[-10,8],[-4,3],[-4,2],[-5,2],[-6,0],[-6,-1],[-13,-1],[-12,-1],[-24,-3],[-26,-3],[-3,-1],[-5,1],[-4,1],[-4,2],[-3,4],[-3,4],[-2,3],[-1,5],[-7,29],[-8,32],[-9,42],[-3,10],[-1,6],[-1,7],[-1,4],[-2,4],[-3,5],[-3,5],[-3,3],[-3,3],[-2,1],[-6,2],[-15,7],[-86,39],[-19,8],[-11,5],[-17,7],[-16,5],[-17,6],[-16,5],[-22,8],[-16,7],[-98,40],[-30,13],[-77,33],[-10,4],[-6,3],[-9,6],[-5,4],[-35,27],[-3,3],[-2,2],[-3,4],[-2,4],[-2,4],[-1,3],[-1,10],[0,6],[0,5],[0,2],[-1,8],[-2,8],[-3,10],[-1,3],[-1,4],[-2,3],[-3,3],[-2,2],[-5,5],[-14,12],[-20,17],[-109,92],[-8,7],[-12,10],[-4,3],[-5,2],[-5,2],[-7,1],[-5,1],[-4,0],[-26,-3],[-25,-2],[-51,-5],[-22,-2],[-3,0],[-6,0],[-6,1],[-41,5],[-3,1],[-6,4],[-9,5],[-7,5],[-3,4],[-3,3],[-1,4],[-2,5],[-3,8],[-5,31],[-3,19],[-33,70],[-1,2],[-1,2],[-1,6],[-1,5],[-1,9],[0,9],[2,8],[1,5],[2,8],[0,4],[1,3],[0,6],[1,8],[-2,10],[-2,8],[-2,8],[-4,10],[-12,28],[-5,10],[-2,3],[-2,3],[-3,2],[-5,3],[-3,2],[-5,3],[-3,1],[-30,10],[-8,3],[-8,3],[-6,2],[-4,2],[-3,2],[-4,3],[-2,3],[-117,168],[-7,10],[-38,54],[-16,23],[-8,11],[-22,26],[-11,15],[-27,32],[-40,45],[-19,23],[-3,3],[-1,1],[-6,7],[-6,10],[-7,9],[-31,49],[-41,61],[-9,14],[-12,17],[-5,8],[-2,4],[-1,3],[-2,4],[-6,20],[-4,13],[-4,13],[-3,6],[-2,3],[-2,4],[-2,4],[-3,2],[-5,5],[-6,4],[-3,3],[-4,3],[-4,3],[-2,2],[-3,3],[-4,5],[-4,6],[-2,3],[-43,64],[-31,46],[-3,3],[-4,4],[-2,2],[-3,2],[-5,2],[-5,3],[-19,8],[-6,2],[-3,1],[-4,1],[-4,0],[-5,-1],[-7,0],[-26,-4],[-30,-4],[-24,-4],[-6,-1],[-5,-1],[-3,0],[-5,0],[-2,0],[-3,0],[-6,2],[-2,0],[-5,2],[-2,1],[-3,1],[-2,2],[-7,6],[-4,4],[-2,4],[-2,3],[-2,5],[-3,5],[-36,87],[0,2],[-2,5],[-5,14],[-34,62],[-1,3],[-1,1],[-2,1],[-2,1],[-3,1],[-3,0],[-13,2],[-5,1],[-14,0],[-8,0],[-4,0],[-4,-1],[-27,-4],[-18,-3],[-7,-2],[-11,1],[-1,0],[-52,5],[-3,1],[-4,0],[-5,2],[-3,2],[-4,3],[-1,1],[-36,41],[-8,15],[-68,187],[-1,3],[0,4],[0,13],[1,4],[2,12],[1,5],[2,7],[5,25],[4,18],[2,8],[1,6],[0,5],[0,7],[0,3],[-1,3],[-2,6],[-3,6],[-7,13],[-5,9],[-43,78],[-3,3],[-3,2],[-3,2],[-2,0],[-8,0],[-9,1],[-40,2],[-34,1],[-10,0],[-5,-1],[-5,1],[-3,2],[-4,2],[-14,13],[-3,4],[-3,4],[-6,7],[-20,21],[-34,34],[-3,3],[-9,10],[-33,30],[-78,72]],[[4935,52048],[25,26],[7,7],[4,4],[74,78],[2,2],[77,80],[2,2],[135,141],[-32,-1],[-1,33],[0,18],[0,56],[-2,199],[-3,210],[-8,0],[-250,0],[4,203],[-1,111],[-1,51],[-4,450],[-1,145],[-2,243],[-3,161],[0,75],[-1,53],[-1,123],[-1,153],[0,30],[-1,89],[0,31],[0,31],[-1,133],[-1,95],[-3,349],[-3,22],[0,61],[0,94],[0,60],[-1,115],[0,114],[-1,21],[-1,275],[0,3],[0,190],[-1,48],[0,36],[-1,185],[-1,10],[0,12],[0,26],[0,56],[0,21],[0,9],[0,12],[-1,15],[0,31],[0,28],[-1,89],[-2,206],[0,11],[0,23],[-2,201],[0,22],[-1,115],[0,22],[-2,188],[0,10],[0,34],[0,1],[-1,10],[-1,11]],[[4928,57816],[1302,-1],[4004,-9],[800,-2],[1522,-4],[37,0],[554,-1]],[[4935,52048],[-47,43],[-4,2],[-7,4],[-4,1],[-2,1],[-4,0],[-140,13],[-57,5],[-89,8],[-34,4],[-94,8],[-21,2],[-35,3],[-75,7],[-12,2],[-6,2],[-4,2],[-8,4],[-6,4],[-11,8],[-3,4],[-4,4],[-110,128],[-43,51],[-3,3],[-4,4],[-8,7],[-7,5],[-11,6],[-3,2],[-3,1],[-2,1],[-5,1],[-3,1],[-6,2],[-3,0],[-10,1],[-18,1],[-12,0],[-36,0],[-20,0],[-4,0],[-8,0],[-6,0],[-3,0],[-4,0],[-5,1],[-5,1],[-4,1],[-5,1],[-2,1],[-6,2],[-4,2],[-6,3],[-6,4],[-13,8],[-76,47],[-9,6],[-26,16],[-23,15],[-19,12],[-5,3],[-4,3],[-3,2],[-4,4],[-3,3],[-5,7],[-8,10],[-6,9],[-44,61],[-13,19],[-4,7],[-3,4],[-17,18],[-2,2],[-1,2],[-12,10],[-3,2],[-17,12],[-10,5],[-11,6],[-20,6],[-14,5],[-19,6],[-51,16],[-55,17],[-1,1],[-19,11],[-11,7],[-5,3],[-4,3],[-13,12],[-4,4],[-14,17],[-3,4],[-16,22],[-48,67],[-5,8],[-7,16],[-2,7],[-1,3],[-6,30],[-16,82],[-5,30],[-3,12],[-2,8],[-2,6],[-2,5],[-5,10],[-5,8],[-2,2],[-10,12],[-23,27],[-20,23],[-13,14],[-3,3],[-5,6],[-4,7],[-2,3],[-2,5],[-2,4],[-2,4],[0,2],[-3,8],[-22,88],[-23,89],[-6,28],[-4,15],[-1,3],[-1,5],[-4,10],[-2,4],[-2,3],[-1,3],[-1,1],[-9,13],[-2,2],[-2,2],[-3,3],[-19,16],[-22,19],[-9,7],[-5,4],[-105,68],[-69,44],[-6,3],[-3,2],[-2,2],[-2,4],[-3,4],[-3,6],[-1,3],[-1,5],[-18,74],[-18,75],[-17,63],[-2,7],[-2,6],[-21,44],[-34,69],[-32,64],[-17,64],[0,20],[0,40],[-1,4],[0,5],[-1,3],[-1,4],[-2,5],[-33,65],[-3,6],[-3,4],[-76,117],[-19,27],[-6,9],[-30,49],[-28,57],[-3,6],[-18,25],[-3,4],[-1,2],[-6,6],[-20,45],[-56,153],[-34,96],[-4,9],[-2,6],[-3,7],[-4,6],[-4,6],[-4,4],[-5,5],[-4,4],[-22,19],[-23,19],[-11,8],[-28,21],[-55,45],[-12,12],[-5,5],[-8,13],[-3,5],[-2,5],[-2,8],[-2,8],[-9,38],[-13,57],[-2,6],[-1,4],[-2,5],[-8,16],[-3,5],[-3,5],[-5,4],[-5,5],[-6,6],[-15,10],[-3,2],[-2,2],[-31,20],[-58,37],[-41,28],[-35,24],[-24,17],[-34,22],[-4,3],[-6,4],[-10,5],[-8,4],[-10,4],[-17,6],[-4,1],[-13,2],[-22,3],[-12,2],[-14,1],[-11,2],[-10,3],[-10,3],[-9,4],[-7,4],[-9,5],[-9,6],[-12,10],[-20,16],[-19,14],[-24,19],[-6,4],[-5,3],[-4,3],[-4,2],[-3,1],[-4,1],[-4,1],[-4,0],[-6,0],[-4,0],[-4,-1],[-5,-2],[-6,-2],[-49,-23],[-19,-9],[-8,-4],[-4,-2],[-4,-3],[-3,-3],[-3,-3],[-4,-5],[-3,-4],[-2,-6],[-2,-6],[-3,-8],[-1,-6],[-3,-10],[-2,-8],[-1,-4],[-2,-4],[-3,-5],[-4,-5],[-3,-4],[-5,-3],[-6,-3],[-8,-2],[-74,-22],[-5,-1],[-6,0],[-6,0],[-3,0],[-2,0],[-5,2],[-4,1],[-3,1],[-2,0],[-4,3],[-2,1],[-3,2],[-4,3],[-3,2],[-65,56],[-22,23],[-20,18],[-21,14],[-3,-1],[-2,0],[-4,0],[-2,-1],[-2,0],[-3,3],[-1,1],[-2,3],[-1,3],[-1,4],[-2,5],[-1,4],[-2,13],[-1,7],[-1,4],[-2,17],[-2,7],[-1,2],[0,2],[-2,5],[-3,4],[-6,8],[-1,1],[-1,2],[-2,1],[-2,2],[-2,2],[-2,0],[-2,0],[-3,1],[-1,-1],[-2,0],[-3,0],[-2,0],[-2,0],[-3,2],[-2,1],[-2,1],[-18,14],[-6,4],[-5,4],[-3,3],[-2,3],[-7,9],[-40,51],[-1,3],[0,2],[0,1],[3,9],[1,3],[1,5],[1,0],[-4,27],[-3,19],[-4,4],[-4,2],[0,1],[-14,8],[-1,1],[-6,5],[-1,0],[-1,1],[-1,1],[-5,6],[-1,1],[-1,1],[-3,5],[-1,0],[0,1],[-1,1],[-1,2],[-3,6],[0,1],[0,1],[-3,8],[-4,8],[-4,10],[-4,5],[-1,2],[-19,26],[-33,-22],[-10,23],[-10,22],[-56,-34],[-16,0],[-93,5],[-23,5],[-22,9],[-28,12],[-20,13],[-28,45],[-23,46],[-13,13],[-44,47],[-10,8],[-25,18],[-21,18],[-2,4],[-1,1],[-16,19],[-1,1],[-3,4],[-6,8],[-14,18],[-4,21],[7,20],[7,12],[9,29],[5,22],[-18,24],[2,21],[0,1],[-6,1],[-7,1],[-11,1],[-9,0],[-11,-1],[-1,0],[-10,-1],[-9,2],[-45,50],[-6,8],[-28,29],[-14,37],[-1,2],[0,1],[-5,9],[-8,6],[-24,21],[-27,20],[0,1],[0,45],[4,19],[3,10],[6,12],[11,13],[10,18],[0,1],[5,8],[5,12],[3,9],[4,16],[-8,20],[-2,2],[-1,4],[-11,11],[-7,8],[-7,7],[-10,7],[-2,2],[-1,0],[-9,7],[-10,7],[-6,3],[-4,1],[-16,5],[-9,2],[-10,9],[-9,13],[-1,1],[-1,32],[12,21],[4,7],[2,3],[13,18],[8,10],[6,6],[12,10],[5,4],[1,1],[9,8],[10,8],[0,1],[11,8],[33,11],[12,5],[11,6],[1,1],[2,1],[2,3],[1,0],[3,3],[10,9],[9,9],[8,7],[7,7],[1,1],[6,6],[5,3],[4,2],[15,-4],[9,4],[15,12],[1,1],[7,7],[1,1],[-10,4],[-11,5],[-7,3],[-13,6],[-9,3],[-7,6],[-9,7],[-8,7],[-10,6],[-8,3],[-3,0],[-7,-2],[-9,-5],[-8,-4],[-4,-2],[-5,-3],[-7,23],[-1,4],[9,11],[18,17],[6,5],[5,7],[0,1],[5,9],[5,9],[3,10],[1,1],[3,8],[2,11],[0,3],[1,3],[-1,5],[0,1],[-1,34],[-9,38],[32,19],[1,0],[7,3],[16,11],[7,4],[4,11],[3,13],[0,12],[0,20],[0,10],[-22,1],[-6,-2],[-3,-1],[-34,-27],[-17,15],[0,1],[-3,28],[9,33],[16,10],[3,3],[2,2],[8,7],[4,5],[5,8],[4,20],[-4,38],[-1,1],[-1,4],[0,1],[-17,12],[-10,0],[-22,-17],[-8,-3],[-23,5],[-11,10],[-17,16],[-14,11],[0,1],[-14,10],[-7,9],[0,1],[-3,9],[-1,4],[-1,2],[0,19],[1,2],[4,8],[13,29],[24,26],[1,0],[15,15],[8,3],[4,1],[1,0],[7,1],[14,3],[26,5],[9,10],[15,17],[7,8],[3,23],[2,17],[2,8],[0,1],[0,4],[90,1],[25,0],[157,0],[1058,5],[507,2],[13,0],[388,2],[27,0],[2423,8],[35,0]],[[25255,54525],[-17,0],[-61,0],[-84,0],[-163,0],[-39,-1],[-112,0],[-44,0],[-186,0],[-74,0],[-173,0],[-27,0],[-142,1],[-11,0],[-30,0],[-45,0],[-24,0],[-25,0],[-59,1],[-8,0],[-182,1],[-13,0],[-176,0],[-154,1],[-233,1],[-14,0],[-18,-1],[-41,1]],[[23100,54529],[-2,20],[-8,1],[-5,-11],[-8,-10],[-8,-12],[-8,0],[-5,13],[4,16],[2,14],[-10,5],[-8,-10],[-8,-2],[-5,6],[3,10],[8,16],[-4,8],[-8,0],[-9,1],[-2,11],[6,11],[5,7],[1,11],[2,10],[-6,6],[-15,0],[-8,3],[4,15],[4,18],[-9,1],[-10,-2],[-8,1],[-4,0],[-10,8],[-12,12],[5,9],[-4,11],[-15,2],[-9,6],[3,12],[-4,15],[-6,7],[-4,7],[-2,3],[1,12],[-4,15],[-2,11],[-4,9],[-3,12],[4,11],[9,6],[-2,10],[-16,19],[6,7],[12,3],[10,-3],[7,-5],[18,-14],[12,-1],[17,7],[10,4],[7,-5],[10,-6],[6,8],[0,13],[-9,10],[-5,10],[-3,16],[-2,10],[-5,17],[4,23],[-3,13],[-8,14],[0,18],[-7,9],[-15,8],[-7,-3],[-8,-8],[-8,-4],[-9,0],[-17,11],[-7,9],[-18,5],[-6,7],[-9,-1],[-20,1],[-8,4],[-19,7],[-24,7],[-15,13],[-9,1],[-13,-9],[-11,6],[-20,-3],[-9,-5],[-11,9],[-15,8],[-6,7],[-3,8],[-9,0],[-9,2],[-11,11],[-11,4],[-7,10],[-7,9],[-5,12],[-2,16],[-7,8],[-8,12],[-10,0],[-8,2],[-5,11],[-4,15],[-2,20],[-4,11],[-6,16],[-12,1],[-5,9],[-1,10],[-2,12],[-8,16],[-11,4],[-13,8],[3,11],[6,6],[-3,11],[-2,14],[-7,7],[-10,0],[-11,6],[-2,11],[-6,17],[-6,13],[-8,5],[-9,-3],[-13,2],[-25,-1],[-17,6],[-12,-2],[-10,-3],[-6,-7],[-6,-6],[-9,1],[-13,-2],[2,-10],[-9,-3],[-17,9],[-9,1],[-8,-8],[-7,-7],[-20,-2],[-15,-10],[-8,0],[-10,9],[-8,11],[-10,3],[-13,-5],[-5,-11],[11,-7],[12,-1],[13,-10],[-4,-13],[-12,-10],[-9,-1],[-10,4],[-4,10],[-9,7],[-9,-1],[-7,-11],[-11,-13],[-10,-3],[-31,8],[-12,2],[-37,0],[-13,0],[-9,-7],[-9,4],[-1,10],[7,10],[3,10],[-3,12],[-8,2],[-12,-8],[-5,-15],[-6,-7],[-10,-3],[-17,2],[-13,9],[-9,17],[-13,10],[-7,11],[4,15],[10,12],[1,15],[0,10],[-9,-4],[-9,-10],[-8,-4],[-13,-6],[-7,4],[-1,10],[5,9],[8,12],[-1,12],[-8,3],[-9,0],[-9,-2],[-9,0],[-6,8],[3,18],[6,10],[1,14],[-8,15],[-12,-10],[-19,-19],[-6,6],[2,17],[5,10],[1,12],[-10,2],[-11,-1],[-14,-3],[-8,-1],[-6,10],[-11,3],[-14,2],[-13,7],[-5,14],[6,10],[12,2],[7,7],[8,3],[-3,9],[-6,12],[-7,6],[-10,4],[-11,8],[3,12],[-9,9],[-16,-3],[-9,-8],[-13,-9],[-6,-5],[-6,8],[2,17],[-9,8],[-6,-6],[-7,-28],[-5,-7],[-10,0],[-7,-6],[-9,-2],[-6,9],[-4,20],[-6,19],[1,19],[-11,6],[-6,8],[-12,1],[-2,10],[3,11],[-2,10],[-2,9],[-2,12],[2,12],[-4,14],[-8,13],[-4,12],[-9,9],[-4,13],[-14,10],[-4,13],[2,19],[-3,11],[5,11],[-6,9],[5,10],[5,12],[4,15],[-3,18],[-2,16],[5,12],[1,18],[0,13],[-11,21],[-2,12],[1,10],[9,10],[7,24],[-1,16],[-6,13],[-3,14],[0,17],[-4,8],[-7,6],[-8,5],[-18,13],[-6,13],[-7,12],[-7,7],[-8,5],[-10,1],[-11,6],[-5,10],[-6,9],[5,20],[18,7],[6,7],[8,14],[14,17],[3,10],[8,9],[3,18],[-6,14],[-9,7],[-4,14],[7,7],[9,4],[4,11],[-7,6],[-9,2],[-18,0],[-14,3],[-8,6],[-5,13],[-10,10],[-2,10],[7,6],[-3,9],[-7,5],[-7,2],[-26,-1],[-8,2],[-5,8],[0,11],[4,8],[6,11],[-2,11],[-5,12],[-9,4],[-8,3],[-7,12],[-2,12],[0,7],[0,3],[1,11],[5,19],[7,13],[2,15],[-1,12],[-3,9],[6,28],[6,16],[-3,9],[0,1],[-5,9],[-6,7],[-12,8],[-10,6],[-1,0],[-17,0],[-12,-2],[-9,-2],[-14,-6],[-12,-11],[-13,-11],[-19,-20],[-10,-12],[-1,0],[-8,-13],[-8,-1],[-2,0],[-11,3],[-15,2],[-16,4],[-1,0],[-7,-1],[-1,0],[-1,-1],[-16,-13],[-10,-15],[-2,-10],[-6,-12],[-19,-19],[-20,-10],[-12,2],[-18,0],[-14,-4],[-7,-18],[-1,-31],[-1,-1],[-10,-15],[-6,-8],[-1,-1],[-14,-11],[-8,-2],[-11,-1],[-11,4],[-14,8],[-7,8],[-7,10],[-4,9],[-3,10],[2,10],[10,20],[4,13],[3,8],[0,7],[1,6],[-1,24],[1,13],[0,14],[2,11],[5,18],[3,14],[9,22],[-1,10],[-8,13],[-7,7],[-9,3],[-8,3],[-20,3],[-9,5],[-11,3],[-20,2],[-7,2],[-10,4],[-18,5],[-29,11],[-9,5],[-18,18],[-23,17],[-8,3],[-16,3],[-8,10],[-8,22],[-4,24],[-10,22],[-3,8],[-10,30],[-14,31],[-2,16],[6,25],[0,24],[1,15],[13,19],[7,11],[-3,20],[-13,9],[-15,8],[-6,7],[-3,33],[0,25],[-14,27],[-20,18],[-22,13],[-23,13],[-20,5],[-20,-9],[-10,-11],[-13,-11],[-12,1],[-9,26],[-15,25],[-19,19],[-16,23],[5,12],[23,24],[19,16],[10,13],[-3,28],[-15,12],[-14,11],[-12,15],[-9,19],[-4,21],[-1,14],[-4,18],[7,12],[6,16],[-2,24],[-5,14],[-6,20],[-6,15],[-14,5],[-18,-7],[-16,-8],[-19,-10],[-15,-13],[-8,-13],[-9,-12],[-9,2],[-12,-4],[-15,-7],[-10,0],[-4,0],[-10,1],[-9,0],[-18,-6],[-14,8],[-8,13],[-8,15],[-6,11],[-9,10],[-8,20],[-6,16],[-7,16],[-5,14],[-1,17],[8,9],[9,8],[6,12],[2,12],[1,6],[2,8],[1,1]],[[20288,57795],[9,0],[1949,1],[22,0],[2995,2]],[[23100,54529],[12,-15],[10,5],[11,2],[9,-9],[1,-12],[5,-8],[8,-1],[11,7],[1,12],[8,-4],[-1,-12],[10,-13],[11,-4],[8,0],[16,-2],[1,-14],[-15,-8],[6,-9],[15,13],[9,4],[9,0],[0,-11],[-5,-11],[6,-8],[14,-10],[5,-7],[5,-9],[7,-8],[9,-2],[11,2],[12,-7],[11,-3],[5,-7],[-3,-10],[17,-6],[8,-4],[14,-9],[12,-1],[13,-4],[9,1],[14,5],[24,1],[7,6],[9,2],[7,-2],[10,-7],[5,10],[10,13],[4,8],[3,11],[0,15],[5,12],[7,5],[11,-3],[17,-7],[6,14],[9,0],[8,8],[0,13],[-2,11],[9,-3],[8,0],[10,-1],[13,-7],[8,-6],[12,-6],[21,6],[8,-11],[9,0],[14,-4],[12,8],[11,-4],[14,-5],[2,10],[8,-3],[5,-15],[11,-18],[-5,-8],[-9,-5],[-1,-11],[5,-8],[6,-5],[13,-1],[8,-2],[-9,-4],[-9,-5],[-8,-6],[17,-1],[11,-3],[14,3],[6,-6],[10,-6],[8,-9],[1,-15],[9,7],[7,2],[6,-8],[-1,-10],[11,9],[2,-10],[-4,-19],[14,7],[12,-3],[8,-2],[10,0],[2,-13],[8,-2],[5,10],[1,-12],[-5,-13],[-11,6],[-10,2],[-2,-10],[2,-10],[16,-6],[-2,-10],[-10,-1],[-3,-12],[8,-8],[-11,-16],[6,-7],[7,5],[10,-4],[-6,-9],[-12,1],[-13,-9],[7,-5],[6,-7],[4,-13],[0,-9],[2,-16],[8,-5],[8,-5],[9,-8],[6,-10],[-8,-4],[-1,-10],[3,-11],[12,2],[8,-4],[8,-24],[-9,-6],[3,-13],[7,-6],[-7,-8],[-13,-5],[1,-12],[9,-9],[3,-9],[-9,1],[-8,-3],[-9,3],[6,-7],[8,-6],[4,-8],[-11,0],[-10,-4],[-9,4],[3,11],[-8,-2],[-5,-18],[8,-5],[5,-10],[7,-5],[11,2],[-6,-7],[-10,-1],[-9,-3],[6,-11],[-4,-15],[-7,-22],[4,-14],[-7,11],[-10,10],[-6,10],[-4,-11],[0,-12],[-2,-15],[12,-7],[-11,-14],[5,-8],[3,-13],[-1,-18],[3,-10],[2,-14],[8,-11],[1,-14],[8,-3],[7,6],[-3,9],[-8,3],[5,8],[7,-4],[10,-1],[8,-1],[-9,-8],[-1,-10],[4,-9],[7,-5],[-11,-6],[5,-8],[16,-5],[3,-11],[13,10],[8,3],[1,-13],[-8,-4],[-11,-1],[-1,-10],[10,-3],[11,4],[8,-3],[-2,-12],[-8,-3],[-10,-4],[6,-6],[9,-4],[10,4],[-7,-8],[-1,-10],[8,-4],[6,8],[-3,8],[9,-4],[2,-15],[-7,-7],[-11,-2],[4,-11],[3,-10],[16,-11],[4,-11],[10,7],[8,-5],[-4,-12],[-3,-12],[1,-12],[-2,-10],[-1,-13],[1,-15],[0,-11],[4,-12],[-12,-27],[-7,-6],[-4,-8],[3,-12],[8,-8],[-1,-10],[-8,2],[-10,-5],[1,-10],[1,-14],[-9,-5],[-11,0],[-1,-10],[7,-4],[12,5],[4,-10],[9,-8],[8,-11],[-15,-4],[-4,-11],[14,-7],[8,1],[9,-7],[-10,-7],[-9,-3],[-13,-9],[-1,-10],[9,-12],[-7,-8],[-8,4],[-8,-9],[-13,-2],[-5,-10],[0,-10],[8,-11],[2,-12],[-7,-10],[1,-21],[1,-17],[9,-8],[9,-4],[6,-6],[4,-10],[-8,-3],[4,-9],[8,-7],[8,-5],[11,-3],[6,-9],[-6,-9],[3,-9],[2,-15],[-2,-19],[7,-7],[9,4],[6,-6],[4,-13],[-14,-7],[-3,-11],[7,-10],[4,-8],[10,-7],[7,6],[9,1],[3,-11],[-2,-16],[1,-13],[10,-3],[12,0],[9,-6],[-3,-10],[3,-9],[4,-15],[20,-4],[9,-9],[4,-19],[-11,-9],[0,-17],[-6,-11],[-4,-17],[-13,2],[-18,2],[-7,-9],[7,-6],[9,-1],[2,-12],[-12,-2],[-7,-10],[2,-13],[8,-8],[5,-10],[-7,0],[-8,-9],[-6,-8],[2,-9],[0,-11],[5,-16],[9,-9],[10,-7],[-2,-14],[6,-9],[5,-11],[9,-3],[-2,-10],[10,-14],[2,-9],[10,-4],[13,-5],[2,-9],[13,0],[11,-5],[-6,-10],[-2,-11],[5,-9],[4,-12],[11,-4],[9,1],[12,1],[-2,-9],[8,-8],[3,-3],[7,-4],[8,4],[8,-2],[4,-10],[0,-1],[3,-11],[-5,-11],[12,-1],[9,-4],[-5,-8],[6,-7],[11,-1],[6,-8],[0,-11],[12,-2],[14,-1],[2,-10],[8,0],[10,1],[6,-9],[8,-7],[6,-9],[10,0],[10,4],[10,2],[1,-10],[8,6],[10,-9],[9,-5],[6,9],[14,4],[4,8],[-7,7],[-10,4],[9,5],[13,2],[-8,8],[7,7],[-11,5],[9,4],[13,5],[-10,8],[-7,6],[7,5],[9,-3],[10,-10],[15,-4],[9,-9],[18,-5],[10,4],[16,6],[10,-4],[19,-20],[6,-7],[13,-7],[11,-2],[10,4],[8,-5],[12,-2],[4,-8],[11,3],[4,9],[10,3],[6,7],[10,5],[8,9],[11,0],[7,-9],[6,5],[14,8],[-9,12],[8,2],[13,-4],[7,5],[11,-4],[9,-4],[7,6],[3,12],[7,7],[8,-3],[-3,-19],[7,-3],[9,4],[9,-3],[9,-1],[10,1],[10,-11],[9,-8],[4,-13],[9,-9],[2,-3],[4,-5],[2,-17],[10,-3],[21,-12],[4,-10],[-7,-10],[-1,-12],[5,-10],[11,-4],[12,-5],[5,7],[-4,9],[7,5],[23,-11],[12,3],[8,-4],[5,-8],[8,10],[7,5],[10,-8],[8,-2],[8,4],[2,-9],[-9,-3],[-11,2],[-6,-6],[4,-9],[15,-5],[0,-10],[7,7],[10,11],[7,3],[9,-10],[7,5],[3,11],[9,11],[4,11],[8,-10],[7,-10],[-8,-5],[-10,-3],[5,-11],[14,2],[10,1],[5,11],[-6,9],[19,19],[9,14],[8,6],[16,2],[12,15],[10,-4],[1,-16],[9,-2],[3,9],[7,7],[11,-5],[-2,-12],[5,-10],[8,3],[8,0],[5,-11],[7,-22],[8,2],[14,8],[1,-11],[2,-13],[10,-3],[0,-11],[8,0],[7,6],[1,-11],[10,1],[5,8],[7,-7],[6,-7],[7,9],[10,-3],[11,6],[8,2],[5,7],[9,0],[9,8],[11,3],[7,7],[13,1],[8,6],[18,5],[13,-1],[6,-8],[15,-5],[1,10],[3,-11],[7,4],[4,9],[10,3],[-4,9],[5,11],[11,2],[20,7],[12,-4],[10,-7],[8,-2],[8,8],[8,2],[8,1],[16,6],[9,-1],[12,-1],[8,2],[18,-4],[10,-4],[8,-7],[9,-1],[5,-7],[-9,-10],[10,0],[5,-8],[12,13],[2,-14],[1,-13],[12,-2],[0,-10],[11,4],[4,14],[1,10],[8,4],[7,-3],[-3,9],[3,12],[-4,9],[-9,-1],[-1,9],[6,6],[8,-7],[4,7],[5,10],[-10,2],[10,5],[10,8],[9,6],[9,4],[4,10],[9,-4],[7,-11],[6,7],[-3,12],[9,-2],[13,-4],[10,6],[8,-1],[6,-12],[1,-14],[11,6],[5,-11],[8,-7],[5,-12],[13,-12],[-4,-11],[-16,-11],[-6,-8],[0,-10],[-3,-18],[-4,-14],[4,-11],[9,-5],[5,-8],[-1,-23],[0,-11],[10,-7],[-2,-12],[6,-15],[9,-14],[9,-5],[17,-1],[4,-16],[7,-6],[5,-9],[2,-18],[6,-8],[-1,-10],[2,-12],[7,-7],[15,-16],[-1,-10],[10,-1],[10,-3],[12,1],[9,-1],[8,3],[11,-2],[5,-11],[8,-4],[12,-6],[10,2],[8,-1],[15,-3],[2,-13],[20,-9],[21,-1],[9,1],[13,0],[10,-4],[12,-7],[9,-6],[13,-2],[10,1],[10,-3],[12,-10],[6,-12],[8,-2],[15,-8],[8,-7],[13,-5],[15,-5],[11,-5],[15,-4],[5,-7],[10,-4],[12,-7],[3,-16],[10,-5],[18,3],[16,-2],[10,-1],[13,-2],[8,-6],[14,1],[8,-5],[11,0],[11,6],[11,-6],[9,5],[9,3],[12,1],[7,6],[11,-3],[13,0],[7,7],[10,0],[13,-1],[7,4],[12,0],[7,-3],[18,1],[13,-1],[12,-7],[12,-4],[8,-10],[12,-3],[7,-6],[9,-3],[13,-13],[20,-4],[11,-1],[7,-6],[9,-7],[10,-2],[12,-3],[9,4],[8,-6],[9,-1],[8,-3],[9,8],[9,-6],[13,-5],[10,-2],[8,8],[-3,13],[4,12],[9,-1],[7,-8],[10,-4],[9,-4],[14,-3],[13,4],[17,-6],[9,-6],[18,1],[12,5],[4,-11],[14,-1],[12,4],[15,-10],[-1,-11],[6,-8],[3,9],[4,14],[14,7],[15,7],[10,1],[11,-2],[7,-5],[15,-4],[10,3],[11,-4],[11,3],[9,9],[1,0],[12,3],[7,-4],[11,0],[13,-2],[20,-3],[31,-1],[9,4],[8,-2],[23,3],[7,3],[14,3],[14,-5],[7,2],[9,5],[9,3],[7,7],[10,9],[-3,12],[-9,-2],[-8,11],[-8,-2],[-10,10],[5,17],[3,16],[10,6],[-9,7],[4,12],[6,10],[6,-8],[4,11],[-2,9],[8,0],[12,3],[16,17],[6,10],[14,5],[1,10],[-4,8],[10,-5],[8,0],[8,3],[14,2],[-1,-13],[8,6],[9,-5],[6,-7],[6,11],[8,-6],[10,-1],[8,-6],[9,-9],[9,4],[11,-8],[6,-8],[8,-6],[15,6],[-1,12],[8,1],[1,-11],[5,-12],[4,-11],[10,3],[10,3],[12,-1],[10,6],[10,0],[5,-9],[9,-4],[15,10],[12,1],[6,-5],[8,-13],[11,-3],[13,-2],[11,-8],[7,-2],[1,0],[18,5],[1,2],[8,8],[10,-5],[-1,-21],[0,-1],[1,-12],[-2,-19]],[[27664,51898],[-29,-35],[-40,-53],[-50,-64],[-12,-16],[-14,-18],[-9,-11],[-7,-9],[-29,-38],[-47,-61],[-27,-35],[-45,-57],[-84,-108],[-49,-63],[-58,-75],[-34,-43],[-52,-67],[-9,-12],[-13,-17],[-44,-56],[-50,-65],[-8,-11],[-55,-70],[-8,-11],[-1,-1],[-44,-57],[-27,-34],[-25,-33],[-12,-16],[-67,-85],[-9,-13],[-116,-149],[-59,-76],[-65,-84],[-22,-29],[-19,-24],[-104,-134],[-58,-76],[-22,-28],[-26,-35],[-101,-130],[-11,-14],[-9,-12],[-24,-32],[-9,-10],[-133,-173],[-39,-50],[-14,-18],[-10,-13],[-23,-32],[-21,-28],[-1,-1],[-32,-42],[-104,-135],[-111,-145],[-144,-187],[-7,-10],[-52,-67],[-53,-69],[-16,-20],[-92,-121],[-47,-61],[-157,-205],[-26,-36],[-31,-41],[-57,-80],[-20,-26],[-21,-27],[-128,-166],[-47,-61],[-34,-44],[-3,-4],[-2,-3],[-27,-34],[-22,-30],[-148,-191],[-63,-82],[-6,-8],[-96,-124],[-2,-3],[-5,-7],[-12,-15],[-5,-6],[-1,-1],[-32,-42],[-8,-11],[-61,-78],[-28,-36],[-40,-52],[-84,-108],[-8,-10],[-7,-9],[-42,-51],[-50,-66],[-93,-122],[-80,-104],[-65,-84],[-66,-87],[-79,-103],[-33,-42],[-3,-4],[-29,-39],[-146,-191]],[[23295,46226],[-146,121],[-37,31],[-124,102],[-86,69],[-150,122],[-26,20],[-9,7],[-144,116],[-94,75],[-21,17],[-90,72],[-78,64],[-58,46],[-181,146],[-11,8],[-116,99],[-98,78],[-20,16],[-45,36],[-20,16],[-8,6],[-3,3],[-125,100],[-41,33],[0,1],[-95,75],[-61,50],[-70,56],[-7,5],[-41,33],[-150,120],[-4,4],[-51,42],[-77,60],[-116,92],[-25,19],[-101,80],[-1,0],[-75,60],[-5,3],[-36,29],[-22,17],[-54,43],[-84,68],[-66,54],[-7,5],[-106,87],[-119,96],[-58,47],[-19,16],[-22,17],[-10,8],[-25,21],[-23,18],[-12,10],[-28,23],[-43,35],[-20,16],[-73,59],[-8,6],[-84,68],[-10,8],[-14,12],[-42,33],[-13,11],[-11,9],[-1,1],[-56,45],[-7,5],[-6,6],[-3,2],[-28,23],[-51,41],[-166,135]],[[19950,57794],[335,1],[3,0]],[[97511,53914],[-11,-5],[-16,12],[7,5],[-7,4],[-14,9],[1,-11],[-7,-2],[-14,11],[-6,-10],[-13,9],[-13,0],[-9,10],[1,12],[-17,8],[0,18],[-9,4],[-1,-6],[-7,1],[0,-6],[-4,1],[-4,-6],[-4,3],[-7,-2],[-5,4],[-40,-5],[-21,17],[-4,3],[4,11],[6,7],[-12,5],[-10,7],[-8,-8],[-6,12],[-11,2],[-5,8],[-7,-4],[-9,1],[-9,-2],[4,-15],[-6,-6],[-10,-2],[-7,5],[-8,3],[3,9],[-5,8],[-9,2],[-5,8],[-10,-5],[-9,3],[-8,4],[-5,8],[-4,8],[-6,-6],[-10,3],[-6,8],[4,10],[-9,2],[-8,6],[-7,1],[-9,6],[-3,9],[-5,11],[-13,2],[-16,2],[-4,9],[-12,4],[-1,10],[5,7],[-2,9],[-13,0],[-7,-8],[-8,-8],[-12,-9],[-13,-5],[-14,-7],[-13,-12],[-17,-12],[-9,-3],[-16,-7],[-10,-7],[-6,-11],[-12,-10],[-20,-11],[-12,-9],[-6,-10],[-6,-9],[-6,-14],[-7,-9],[-3,-15],[-4,-14],[-8,-9],[-10,4],[-6,0],[-10,1],[-8,-2],[-7,-4],[-12,0],[-10,2],[-13,1],[-10,2],[-12,-3],[-12,-4],[-9,-20],[-18,-11],[-11,-9],[-15,-3],[-8,-2],[-10,-3],[-15,-6],[-9,-3],[-20,-14],[-33,-24],[-41,-42],[-7,-4],[-10,-13],[-6,-6],[-10,-8],[-11,-6],[-26,-7],[-12,-2],[-8,-9],[-8,0],[-10,1],[-25,-3],[-12,-2]],[[96373,53756],[-76,46],[-44,26],[-13,4],[-47,28],[-19,11],[-13,7],[-112,67],[-14,9],[-209,126],[-41,23],[-11,6],[-33,20],[-24,14],[-87,52],[-6,4],[-60,37],[-2,0],[-55,7],[-17,2],[-96,13],[-17,3],[-47,6],[-9,1],[-1,0],[-19,1],[-62,10],[-90,12],[-19,2],[-19,3],[-2,0],[-200,26],[-143,17],[-55,7],[-83,11],[-82,11],[-30,5],[-65,9],[-35,4],[-58,8],[-8,3],[-9,1],[-24,3],[-91,12],[-7,1],[-54,7],[-165,22],[-63,8],[-49,7],[-36,5],[-59,7],[-52,7],[-40,5],[-41,5],[-74,10],[-41,6],[-15,2],[-54,7],[-22,3],[-56,7],[-46,7],[-31,3],[-37,5],[-24,3],[-3,0],[-39,5]],[[93218,54545],[8,7],[2,10],[-6,6],[-8,-6],[-10,5],[-8,1],[4,9],[-8,2],[-7,9],[-2,10],[9,3],[11,9],[9,-4],[7,6],[-8,2],[-1,11],[-8,-2],[-16,2],[-8,4],[-9,3],[-8,12],[-3,9],[7,8],[-2,12],[8,7],[0,10],[-8,6],[2,12],[7,-6],[8,1],[0,10],[-12,0],[-1,9],[5,9],[-4,9],[7,5],[6,8],[-1,10],[-10,2],[-1,11],[0,12],[0,10],[6,8],[7,7],[-7,8],[1,11],[-8,1],[-8,7],[1,13],[-10,1],[6,10],[-10,5],[6,9],[-6,6],[-2,10],[-9,-1],[2,10],[8,4],[5,11],[7,8],[0,11],[-10,4],[-1,10],[-9,4],[-12,2],[-7,4],[-4,12],[16,5],[-5,8],[1,10],[-8,-4],[-6,5],[-7,7],[-7,6],[6,6],[-2,11],[-8,-2],[-8,6],[-6,7],[4,10],[7,8],[-3,10],[2,13],[8,3],[-7,12],[7,7],[3,11],[-6,12],[7,-4],[9,4],[-9,10],[1,10],[5,12],[-5,12],[1,0],[7,8],[-7,3],[-3,11],[-7,4],[9,3],[-9,8],[-2,12],[4,9],[8,7],[6,7],[-4,8],[-9,5],[-1,11],[5,8],[0,10],[9,11],[1,15],[-4,11],[-3,11],[-2,11],[10,5],[6,11],[-8,-7],[-5,10],[-5,9],[1,12],[5,8],[-6,5],[8,2],[6,14],[-9,2],[-8,2],[-4,9],[7,13],[-7,-6],[-7,9],[5,8],[-6,8],[8,2],[7,8],[-7,11],[-10,-6],[3,11],[-7,-4],[-8,14],[6,8],[7,11],[-5,10],[-8,-1],[-2,10],[-8,4],[-8,0],[-4,9],[8,10],[-12,-2],[1,10],[8,7],[1,10],[1,11],[-8,-7],[-6,8],[6,8],[-8,-2],[2,10],[-8,2],[-9,3],[-10,3],[-5,8],[-3,9],[-13,8],[-7,6],[-14,13],[4,8],[-8,6],[-5,9],[8,1],[6,5],[1,10],[7,-6],[8,6],[4,10],[-4,9],[-6,6],[4,8],[-1,9],[-1,5],[0,12],[7,7],[-7,6],[2,10],[8,-3],[4,10],[-4,16],[-5,10],[-1,10],[0,10],[6,10],[-2,9],[2,10],[7,8],[8,6],[-4,12],[11,4],[1,11],[-7,4],[4,2],[6,3],[-8,5],[7,3],[-4,8],[-4,9],[-10,3],[-7,6],[6,10],[-10,2],[-1,12],[-7,6],[-7,-5],[-2,10],[8,3],[4,11],[3,9],[-9,0],[-7,9],[4,8],[-7,3],[5,9],[-7,4],[-10,4],[5,11],[-8,7],[6,8],[2,11],[-3,11],[-5,9],[-1,11],[-8,1],[7,6],[3,9],[-7,10],[-8,2],[4,13],[-13,-5],[-7,6],[7,7],[-5,11],[-7,7],[-5,8],[-7,8],[-9,-1],[-2,18],[-9,2],[-8,-1],[4,9],[-9,0],[-6,7],[-5,11],[-9,0],[4,9],[-9,0],[4,10],[-10,6],[-1,10],[-8,10],[-8,7],[-7,6],[-9,-1],[-4,12],[-7,6],[9,3],[3,14],[-4,4],[-2,3]],[[96135,57605],[8,-5],[7,-5],[10,-6],[7,-8],[9,-7],[8,-9],[10,-9],[9,-11],[2,-6],[2,-4],[2,-6],[5,-13],[2,-3],[6,-17],[3,-9],[5,-12],[9,-18],[4,-10],[4,-11],[6,-12],[5,-7],[7,-9],[5,-9],[6,-11],[4,-10],[4,-7],[3,-7],[4,-7],[5,-7],[5,-4],[11,-11],[13,-12],[8,-9],[3,-10],[2,-7],[5,-15],[4,-10],[6,-10],[12,-12],[11,-8],[8,-8],[5,-5],[4,-10],[3,-10],[2,-10],[5,-15],[4,-11],[2,-5],[5,-18],[3,-14],[4,-19],[5,-13],[7,-13],[9,-13],[6,-6],[8,-9],[7,-9],[7,-7],[13,-4],[12,5],[9,8],[11,12],[7,6],[7,5],[7,4],[9,-2],[10,-3],[10,-11],[4,-9],[4,-10],[4,-10],[4,-8],[5,-7],[3,-7],[1,-5],[0,-13],[1,-14],[1,-8],[3,-6],[3,-5],[6,-7],[11,-3],[7,2],[7,1],[7,0],[5,-1],[13,-2],[12,-2],[8,0],[9,0],[8,0],[8,-1],[13,-3],[9,-4],[9,-2],[11,4],[9,4],[9,2],[13,5],[7,5],[7,11],[2,1],[6,1],[3,-1],[4,-8],[9,-16],[4,-3],[3,-2],[4,-4],[5,-4],[2,-4],[4,-7],[2,-4],[3,-5],[5,-6],[5,-7],[3,-3],[-1,-3],[2,-4],[-3,-3],[-4,-2],[-9,-3],[-11,-8],[-4,-7],[-5,-11],[-5,-12],[-3,-9],[-9,-14],[-7,-9],[-9,-10],[-11,-11],[2,-12],[6,-7],[7,4],[5,4],[4,3],[4,2],[3,2],[6,6],[11,8],[6,-6],[1,-8],[1,-4],[-10,-5],[-8,-6],[2,-14],[5,-13],[7,-9],[8,-7],[8,-4],[8,-5],[9,-1],[5,1],[3,2],[0,5],[1,4],[-2,6],[-2,8],[-3,10],[4,8],[8,3],[10,-8],[10,0],[3,12],[-1,11],[9,4],[9,-2],[10,-3],[2,-2],[-4,-9],[2,-9],[6,6],[7,8],[9,4],[11,2],[8,1],[5,0],[-1,-5],[3,-4],[-3,-4],[-2,-3],[4,-6],[4,0],[4,4],[3,5],[4,7],[4,8],[3,6],[3,5],[-2,4],[1,3],[-2,9],[8,10],[5,3],[4,1],[2,-2],[3,-1],[5,-9],[5,-8],[6,-8],[3,-9],[4,-13],[0,-1],[3,-12],[2,-10],[1,-8],[1,-7],[0,-4],[1,-9],[-3,-12],[-8,-5],[-10,-11],[-4,-11],[-8,-10],[-8,-10],[0,-12],[5,-9],[2,-10],[-6,-9],[1,-11],[8,-7],[9,0],[8,7],[6,9],[1,2],[10,4],[9,1],[11,-2],[11,-3],[4,-11],[-6,-6],[-8,-10],[0,-3],[5,-13],[13,-13],[9,-1],[8,-2],[20,-37],[10,-1],[2,15],[-4,15],[7,10],[8,-3],[11,-7],[2,-10],[0,-14],[-2,-7],[-2,-4],[-55,-76],[2,-16],[12,0],[26,-1],[8,-3],[3,-9],[3,-13],[-4,-4],[-1,-3],[-11,-7],[-4,-13],[4,-17],[7,-5],[12,-3],[20,-15],[-1,-9],[-16,1],[-9,-7],[4,-13],[10,-6],[11,4],[8,0],[7,-1],[11,-6],[7,-6],[0,-5],[0,-4],[1,-6],[0,-5],[2,-2],[8,-11],[3,-10],[-9,-4],[-8,-5],[-7,-7],[-6,-10],[-1,-3],[-1,-6],[4,-9],[8,-7],[3,-3],[4,-3],[0,-5],[2,-3],[-1,-22],[0,-10],[-1,-19],[-1,-12],[6,-12],[13,-3],[8,-5],[0,-5],[3,-3],[-1,-18],[-6,-9],[-9,-2],[-2,-13],[10,-9],[8,-1],[12,8],[6,6],[9,0],[45,-28],[7,-7],[6,-15],[1,-3],[8,-11],[12,-4],[18,-13],[9,-11],[0,-5],[-1,-14],[7,-22],[9,-9],[12,-4],[18,0],[7,12],[8,8],[9,-7],[11,-4],[10,0],[13,-2],[4,-1],[3,-11],[5,-12],[10,-10],[8,-11],[3,-11],[-4,-13],[-5,-11],[-6,-20],[2,-25],[5,-8],[6,-5],[-1,-4],[-2,-4],[-1,-3],[-11,-8],[-3,-15],[4,-12],[11,-3],[14,3],[12,4],[8,-3],[7,-10],[-2,-3],[2,-4],[-11,-5],[-4,-7],[10,-9],[20,4],[11,4],[14,-8],[16,-17],[7,-14],[-4,-14],[-11,-16],[-4,-11],[0,-10],[-2,-9],[-3,-2],[-2,-5],[-12,-5],[-10,-3],[-6,-13],[4,-9],[9,5],[9,0],[4,-14],[1,-23],[-9,-4],[-2,14],[-5,-1],[-12,-2],[-3,-9],[1,-16],[-7,-21],[-5,-10],[-18,-10],[-13,-13],[-4,-7],[-1,-18],[1,-3],[4,-10],[8,-11],[5,-2],[4,-2],[13,-9],[10,-18],[9,-22],[18,-35],[18,-30],[10,-9],[8,-7],[14,-6],[18,-10],[16,-9],[3,-2],[4,-10],[1,-16],[4,-48],[7,-29],[4,-19],[3,-9],[-2,-13],[-11,-17],[-17,-28],[-4,-8],[5,-12],[7,0],[24,1],[3,-3],[2,-1],[2,-5],[1,-5],[2,-21],[8,-7],[13,-3],[8,0],[17,6],[56,20],[9,-2],[9,-4],[3,-8],[1,-7],[0,-13],[-67,-133],[-6,-3],[-6,-7],[0,-6],[4,-4],[0,-3],[1,-3],[-1,-2],[0,-6],[-8,-4],[-7,-6],[-2,-10],[-8,-8],[-8,-3],[-8,-3],[-4,-3],[-2,-2],[-4,-5],[-1,-5],[-2,-7],[-4,-5],[-4,-6],[-7,-3],[-11,-1],[-7,-6],[-2,-11],[9,-12],[18,-15],[1,-6],[0,-4],[0,-5],[-3,-3],[-2,-3],[-7,-4],[-17,-9],[-5,1],[-2,4],[2,21],[-1,3],[0,3],[-2,2],[-1,3],[-3,0],[-2,2],[-8,-1],[-11,6],[-7,8],[-2,0],[-6,-2],[-2,-3],[-28,-59],[0,-14],[1,-10],[1,-13],[1,-8],[3,-11],[7,-7],[17,-20],[9,-14],[4,-12],[4,-13],[6,-12],[8,-11],[11,-5],[8,-1],[10,1],[8,0],[6,-5],[4,-5],[5,-6],[0,-6],[2,-4],[-1,-2],[0,-5],[-4,-4],[-5,-3],[-7,1],[-6,8],[-13,12],[-9,-3],[-6,-7],[0,-16],[5,-24],[-1,-7],[0,-6],[1,-7],[7,-11],[-1,-6],[2,-4],[-2,-4],[-8,-13],[-3,-17],[6,-9],[5,-9],[3,-7],[2,-6],[-4,-4],[-8,-3],[-19,-9],[-4,-10],[-1,-16],[8,-12],[11,-4],[7,-7],[2,-2],[-2,-13],[3,-12],[-6,-8],[-23,-2],[-13,-5],[-10,-2],[-16,7],[-6,-7],[5,-11],[29,-9],[26,-18],[0,-19],[-5,-1],[-25,0],[-10,-3],[-15,-10],[-8,-2],[-6,6],[4,8],[8,5],[3,9],[-15,6],[-38,-54],[-2,-16],[-25,-10],[-13,-11],[-8,-31],[11,-16],[-11,-22],[6,-45],[19,-30],[4,-19],[3,-30]],[[70233,51419],[-50,88],[-5,9],[-65,115],[-117,209],[-6,10],[-1,1],[-80,141],[-4,8],[-7,8],[-8,9],[-8,14],[-6,12],[-3,4],[-74,139],[-7,13],[-9,16],[-6,10],[-6,11],[-5,9],[-5,7],[-4,9],[-7,12],[-51,89],[-4,8],[-9,16],[-19,34],[-29,49],[-14,24],[-12,20],[-37,67],[-21,37],[-23,42],[-4,8],[-47,85],[-50,87],[-31,56],[-33,58],[-4,8],[-14,26],[-59,104],[-22,39],[-21,36],[-83,149],[-8,13],[-9,16],[-8,15],[-69,123],[-61,108],[-22,39],[-30,53],[-57,103],[-87,143]],[[73935,55064],[26,-47],[57,-98],[10,-17],[6,-10],[7,-13],[31,-53],[49,-87],[68,-120],[1,-1],[42,-73],[16,-28],[15,-26],[5,-8],[26,-46],[1,-2],[18,-29],[24,-43],[5,-10],[18,-33],[1,-1],[18,-28],[97,-176],[2,-3],[34,-61],[61,-107],[53,-93],[55,-95],[44,-78],[28,-48],[27,-48],[9,-15],[1,-2],[12,-20],[10,-18],[5,-8],[12,-20],[4,-8],[34,-62],[28,-50],[38,-65]],[[74933,53314],[-81,-51],[-64,-40],[-11,-7],[-19,-12],[-64,-42],[-41,-25],[-82,-51],[-17,-10],[-8,-5],[-43,-28],[-18,-12],[-77,-50],[-2,0],[-73,-50],[-56,-36],[-63,-41],[-104,-66],[-56,-36],[-57,-36],[-6,-4],[-16,-10],[-45,-29],[-243,-153],[-106,-67],[-7,-5],[-9,-5],[-21,-12],[-31,-20],[-17,-11],[-15,-9],[-90,-55],[-67,-42],[-35,-21],[-4,-3],[-5,-3],[-69,-41],[-16,-11],[-77,-47],[-26,-16],[-20,-13],[-8,-5],[-69,-42],[-14,-9],[-41,-25],[-21,-13],[-13,-8],[-8,-5],[-17,-12],[-21,-10],[-11,-7],[-10,-7],[-52,-32],[-1,0],[-75,-47],[-22,-14],[-58,-36],[-29,-18],[-8,-5],[-9,-5],[-26,-17],[-14,-9],[-17,-10],[-8,-6],[-35,-22],[-67,-43],[-60,-37],[-88,-54],[-82,-51],[-18,-11],[-21,-13],[-37,-23],[-1,0],[-22,-14],[-76,-49],[-60,-36],[-29,-18],[-9,-5],[-1,-1],[-105,-68],[-26,-16],[-86,-55],[-10,-7],[-43,-24],[-51,-29],[-12,-7],[-9,-6],[-40,-24],[-5,-3],[-10,-6],[-7,-5],[-12,-7],[-7,-5],[-2,-1],[-8,-5],[-16,-8],[-11,-9],[-16,-10],[-124,-77],[-11,-7],[-1,-1]],[[71302,51040],[-52,-34],[-112,-77],[-37,-24],[-13,-9],[-58,-39],[-120,-79],[-4,-3],[-19,-13],[-82,-55],[-19,23],[-25,32],[-10,13],[-34,43],[-31,36],[-34,44],[-19,24],[-3,2],[-32,40],[-15,18],[-2,3],[-77,97],[-98,120],[-49,61],[-41,51],[-10,12],[-73,93]],[[93218,54545],[2,-19],[-1,-11],[-5,-9],[13,0],[4,-10],[0,-1],[1,-10],[8,0],[6,6],[1,-11],[-2,-14],[-9,-7],[-7,-5],[8,-4],[3,-11],[8,-1],[-5,-8],[12,-5],[-7,-16],[6,-5],[8,4],[8,1],[0,9],[9,-5],[10,1],[3,-8],[-1,-10],[9,1],[2,11],[6,11],[3,-12],[10,-1],[4,11],[11,-12],[-6,-7],[7,-8],[11,-3],[9,1],[7,-7],[7,-2],[8,5],[9,0],[7,7],[-1,9],[4,9],[9,-2],[-4,-11],[3,-9],[5,-10],[11,-8],[10,2],[7,6],[2,-17],[6,-8],[7,11],[2,-19],[6,5],[1,11],[8,-11],[-5,-9],[6,-7],[3,9],[4,-17],[-11,-4],[-8,-1],[-4,-13],[6,-8],[7,-8],[9,-4],[-10,-1],[-8,-7],[2,-10],[11,1],[7,5],[5,-7],[7,3],[15,-6],[10,-7],[6,-9],[8,2],[6,7],[4,-9],[0,-12],[-12,-7],[5,-8],[4,-9],[7,4],[7,-4],[3,-10],[-5,-8],[-6,-8],[16,-3],[12,-10],[1,-10],[-3,-10],[9,-2],[-6,-7],[4,-10],[6,-14],[4,-14],[7,-7],[8,-6],[7,10],[2,11],[7,6],[6,-8],[9,-5],[-1,-11],[8,2],[4,9],[7,-9],[7,9],[3,10],[9,1],[-6,-10],[3,-12],[8,1],[1,-9],[8,1],[3,-10],[10,-13],[-6,-11],[9,-9],[3,9],[9,9],[-1,-11],[3,-8],[7,-7],[5,8],[6,9],[5,-9],[-5,-13],[8,2],[-4,-9],[9,-3],[-4,-8],[9,-2],[10,-2],[-2,-10],[-8,-7],[7,-7],[8,4],[5,-10],[-9,-2],[-3,-11],[10,-2],[9,-5],[9,8],[9,3],[6,-7],[-2,-10],[9,-2],[11,-3],[8,1],[12,-1],[6,-8],[6,-8],[7,12],[11,-4],[1,-10],[8,6],[9,3],[2,-17],[2,-10],[-5,-7],[-9,-4],[4,-15],[-8,-7],[2,-13],[4,-10],[9,-9],[-8,1],[-8,-2],[-7,-9],[4,-15],[0,-10],[8,0],[7,10],[5,-7],[4,-12],[-3,-9],[10,2],[8,-1],[8,0],[-5,-10],[-10,-13],[9,0],[8,5],[-2,-10],[-8,-11],[7,-5],[3,-9],[-8,-8],[9,-2],[7,4],[7,-4],[-5,-12],[2,-12],[5,-9],[-7,-10],[-7,-11],[-3,-9],[-4,-10],[4,-12],[0,-14],[0,-13],[-13,-9],[6,-9],[8,-5],[-5,-9],[-8,-1],[8,-7],[12,-1],[-3,-8],[8,-2],[-2,-11],[9,2],[-2,-5],[-2,-4],[8,-11],[-10,1],[-9,0],[5,-8],[-1,-11],[0,-6],[0,-5],[-8,-3],[3,-9],[5,-15],[4,-10],[-3,-9],[-13,-6],[10,-4],[6,-8],[8,1],[-4,-12],[-1,-11],[10,1],[4,-4],[3,-3],[-8,-5],[-7,4],[-5,-10],[4,-10],[-16,-7],[10,-2],[13,-6],[8,1],[4,-9],[8,-16],[8,-4],[-8,-5],[-11,0],[-7,3],[-9,-2],[-13,-13],[-8,-1],[2,-11],[-9,0],[-8,4],[-3,-14],[8,-3],[8,-1],[5,-9],[4,-9],[-8,-1],[-8,-1],[-2,-11],[-6,-7],[4,-9],[9,9],[10,-2],[5,9],[-2,-12],[-4,-9],[-8,4],[-5,-8],[-9,1],[-6,-8],[8,-4],[11,-3],[11,-1],[9,2],[10,-1],[5,-13],[-2,-9],[7,-9],[-3,-11],[6,-8],[-6,-7],[1,-11],[1,-13],[5,-8],[-10,2],[-8,-3],[1,-9],[1,-5],[-5,-13],[4,-12],[-5,-12],[-3,-11],[-8,-8],[4,-10],[-12,3],[4,-11],[-14,-5],[-6,6],[-2,-13],[-9,-6],[14,-5],[14,2],[-3,-14],[-16,5],[-16,11],[-10,7],[-7,13],[-12,-5],[8,-9],[7,-16],[-4,-10],[-9,-15],[2,-12],[11,-18],[-5,-10],[-13,-2],[-6,-7],[-1,-10],[-5,-8],[7,-5],[-13,-10],[-2,-15],[0,-7],[-1,-4],[3,-16],[1,-4],[3,-11],[12,-1],[6,-10],[8,-4],[4,-8],[-2,-10],[-12,-2],[-9,-1],[7,-10],[10,-7],[13,-1],[7,-10],[-12,-8],[11,-3],[-9,-13],[-4,-11],[-7,-7],[11,-10],[-2,-11],[4,-13],[-7,-6],[-8,-20],[8,-2],[-2,-18],[-9,10],[-9,-2],[4,-10],[4,-7],[-1,-10],[-15,-5],[10,-7],[10,1],[-8,-8],[4,-12],[-8,2],[-9,1],[4,-11],[12,-7],[2,-9],[-8,-6],[-7,-12],[-9,-6],[-16,0],[1,-11],[-7,-6],[-1,-13],[2,-14],[-10,0],[-9,-1],[-6,-7],[10,1],[8,-5],[11,5],[2,-11],[8,7],[8,-1],[-5,-10],[-1,-13],[8,-3],[9,5],[9,-7],[9,-6],[-9,-8],[-2,-11],[9,-8],[8,-3],[4,-8],[-11,4],[-7,2],[-3,-11],[7,-7],[12,-6],[5,9],[8,-7],[10,-6],[7,-6],[3,-12],[-3,-13],[7,-4],[9,5],[-5,-10],[-2,-11],[9,4],[12,-16],[6,-6],[-7,-18],[-5,-16],[-10,-6],[-7,-11],[7,-8],[-5,-7],[-8,1],[4,-10],[-6,-6],[-6,-7],[-8,-4],[-2,-2],[-5,-6],[-10,2],[7,-13],[-9,5],[-1,-3],[-2,-6],[7,-9],[3,-4],[4,-6],[-1,-11],[5,-9],[-6,-10],[-18,-8],[9,-6],[-23,-6],[-5,7],[0,13],[5,9],[-8,4],[-9,-2],[-3,-6],[-1,-2],[-6,-10],[-8,4],[-7,-4],[-5,-9],[9,-2],[-13,-1],[-8,0],[-7,-15],[-8,-12],[5,-14],[7,-6],[9,2],[-9,-10],[-6,-6],[8,-22],[5,-11],[10,-3],[-3,-11],[-13,1],[-1,-19],[7,1],[9,2],[5,-10],[-10,-19],[6,-8],[-9,-2],[-11,8],[-10,-9],[-3,-16],[3,-7],[1,-3],[4,-9],[4,-11],[8,3],[9,7],[-1,-10],[-9,-5],[-6,-13],[1,-14],[9,0],[-4,-8],[-6,-9],[4,-8],[-2,-10],[-17,-4],[9,-3],[8,-9],[-7,-10],[6,-7],[-14,1],[-1,-10],[11,-8],[-8,0],[-9,-2],[-8,5],[4,-10],[8,-4],[-1,-9],[-4,-10],[-8,-1],[-8,1],[-3,-12],[8,-12],[8,1],[3,-9],[-12,-8],[13,-4],[13,-11],[7,-8],[3,-17],[-6,-7],[-4,-9],[6,-18],[9,-7],[5,12],[1,-10],[12,-1],[-1,-11],[-9,-9],[14,-4],[6,-9],[-10,-4],[8,-9],[11,-7],[-8,-8],[9,-3],[8,5],[-1,-10],[5,-8],[1,15],[6,-7],[2,-16],[-9,1],[-9,1],[6,-11],[11,-2],[11,-4],[-6,-11],[7,-7],[10,-4],[7,-8],[-9,-6],[-8,-7],[-6,-12],[-8,-3],[2,-10],[-1,-11],[-11,3],[10,-11],[6,-7],[4,-9],[7,-13],[-1,-12],[-13,-2],[-2,-13],[-1,-13],[-9,10],[-11,-8],[4,-12],[-10,-1],[-9,6],[-3,-17],[3,-13],[8,-5],[11,-3],[5,-9],[-1,-10],[-5,-13],[-9,2],[7,-10],[13,-8],[10,0],[-1,-13],[-8,-4],[3,-12],[12,-5],[5,-11],[-6,-6],[-17,4],[5,-18],[9,-1],[5,11],[9,-5],[-5,-9],[1,-3],[1,-8],[-4,-13],[-9,1],[-9,-5],[-4,-9],[10,0],[-6,-10],[-12,-2],[-11,-3],[5,-14],[-8,-13],[-8,-15],[-1,-10],[-10,-3],[-6,-13],[13,1],[15,6],[9,-4],[-6,-8],[-7,-8],[-10,-5],[-11,-3],[-14,0],[-3,-12],[18,-1],[7,-17],[10,-19],[-4,-13],[-9,3],[-9,-4],[2,-16],[7,-6],[-8,-3],[-16,0],[-3,-12],[-10,6],[-6,-11],[-5,-12],[-3,-7],[-6,-13],[-8,3],[5,-11],[5,-9],[-2,-15],[-12,-2],[0,-15],[-18,-13],[-6,-8],[-10,-9],[3,-8],[-11,-21],[-5,-14],[-4,-11],[10,-4],[-6,-9],[-3,-9],[10,-7],[9,4],[7,-7],[15,-18],[-3,-18],[1,-18],[7,-9],[12,-5],[-9,-4],[8,-5],[8,2],[13,-14],[-15,7],[-3,-8],[-8,-5],[-2,-10],[-8,-2],[1,-11],[-6,-7],[6,-6],[-8,0],[-9,-2],[-9,2],[-7,-5],[5,-11],[3,-10],[-8,0],[-4,-8],[-8,-13],[10,-3],[12,-5],[7,6],[8,-1],[5,-8],[-1,-13],[-1,-12],[-3,-12],[8,4],[9,4],[7,-8],[8,-4],[4,-9],[7,-8],[6,-14],[7,-6],[4,-9],[7,11],[10,-6],[3,-12],[-9,-5],[-1,-11],[-6,-9],[1,-10],[-2,-11]],[[93768,50524],[-7,8],[-11,-3],[-8,-8],[12,-6],[-6,-6],[-10,3],[-9,1],[-12,-6],[-8,-1],[-8,13],[1,13],[10,6],[-7,7],[-10,9],[5,12],[-7,11],[-7,4],[-9,3],[2,-13],[-9,4],[-7,6],[-9,9],[0,14],[-10,10],[-4,16],[-6,8],[-10,-3],[-8,-2],[-8,5],[-5,8],[-7,14],[-2,15],[9,6],[8,6],[1,10],[-7,8],[-11,-2],[-8,2],[-5,10],[-9,5],[-1,10],[9,-1],[7,6],[-10,3],[-9,7],[-10,2],[-7,-5],[-8,-10],[-8,2],[3,9],[9,20],[8,6],[-11,2],[1,10],[0,10],[-3,10],[-19,-4],[-5,12],[4,14],[-2,9],[10,9],[2,10],[-11,6],[-8,2],[-20,4],[-9,-4],[-8,0],[-7,5],[-9,2],[-10,13],[-6,14],[-8,7],[-7,-5],[-9,-5],[-2,9],[-6,6],[-6,7],[-1,13],[-1,13],[-4,13],[-5,11],[-5,24],[-13,-11],[-14,14],[-7,12],[-6,-10],[-11,-4],[-2,24],[8,21],[-3,20],[-8,9],[-14,-5],[-8,-2],[-7,17],[6,16],[-1,13],[5,20],[5,9],[-9,7],[2,17],[-7,6],[-8,0],[-10,10],[-14,25],[-5,12],[-9,3],[4,11],[-8,6],[-9,1],[-3,13],[-4,12],[-10,-8],[-26,-8],[0,12],[-6,9],[-10,10],[-10,2],[-13,-1],[5,17],[-13,1],[7,13],[-20,1],[-8,-2],[-8,17],[-38,-2],[-7,6],[-14,2],[-15,-13],[-7,-7],[-9,8],[7,12],[-7,9],[-9,3],[-8,-1],[-7,13],[-13,1],[-6,10],[-6,-10],[-9,0],[-9,9],[-3,11],[-7,-11],[-2,-13],[-6,8],[-23,2],[-10,-4],[-7,4],[1,19],[-4,19],[-4,11],[-7,6],[-5,-11],[1,-10],[-9,6],[-10,12],[-4,8],[-7,4],[-5,-9],[-6,-12],[-7,10],[-7,16],[-7,9],[4,9],[-2,15],[0,10],[-7,16],[-7,10],[7,4],[3,12],[-9,9],[-8,-4],[-2,14],[-7,13],[-12,14],[-4,19],[5,12],[14,1],[4,21],[-10,7],[-6,-11],[-11,-4],[-13,6],[-5,13],[-2,14],[-2,10],[10,7],[-2,27],[5,14],[-5,10],[11,11],[0,11],[-14,-3],[-11,6],[-6,8],[-4,11],[-10,3],[5,17],[1,26],[-11,7],[-10,2],[-7,14],[-6,16],[-10,13],[-8,9],[-5,15],[2,14],[-7,1],[4,11],[1,16],[-15,2],[-2,3],[-3,10],[9,12],[8,-3],[16,1],[6,7],[-10,4],[-12,4],[-6,9],[1,9],[24,-3],[-7,20],[-10,-1],[1,11],[-3,21],[-18,-1],[-3,-11],[-9,-7],[-6,9],[-1,11],[18,12],[-17,21],[-2,-10],[-8,5],[-8,4],[-3,-11],[5,-10],[-8,-5],[-4,10],[-3,11],[-20,14],[-13,-2],[-9,5],[-1,12],[-7,10],[-9,-3],[-6,-6],[-5,11],[3,9],[2,9],[1,15],[-9,8],[-10,-13],[-12,9],[-11,-1],[-10,23],[8,5],[11,-2],[10,11],[-30,3],[12,11],[-2,15],[-4,8],[-11,-3],[-8,20],[-6,13],[-9,4],[-3,-11],[-9,4],[-2,4],[-2,6],[-4,10],[-9,9],[-6,11],[-4,8],[-10,3],[-10,-3],[-3,-9],[-1,-1],[8,-12],[5,-12],[-7,-5],[-13,9],[-7,10],[-3,9],[1,15],[-22,6],[-10,0],[4,-12],[-9,-5],[-26,-4],[-9,-6],[11,-11],[-5,-9],[-9,-2],[-9,1],[-9,-10],[3,-10],[8,1],[11,3],[-1,-13],[0,-12],[-10,-6],[-8,-4],[-11,-1],[-2,11],[-11,-1],[-9,-5],[-7,-8],[-8,0],[-10,1],[-16,-20],[-8,8],[-6,-8],[-9,3],[-4,9],[-12,1],[-11,-4],[-12,-9],[-7,5],[-4,10],[-12,2],[-10,14],[-3,10],[-3,15],[-1,11],[8,9],[3,14],[3,18],[-9,2],[0,11],[2,12],[-4,11],[-4,11],[-7,9],[1,13],[8,12],[-8,11],[-9,5],[-9,0],[-6,13],[2,11],[11,11],[-7,10],[2,9],[-10,2],[-2,12],[1,12],[6,10],[8,10],[-6,7],[-10,-6],[-7,-9],[-11,2],[-10,4],[1,12],[1,11],[-10,0],[-7,5],[-12,9],[-8,3],[-7,-7],[-7,-1],[-16,9],[-10,0],[-9,0],[-6,-7],[-14,-9],[-12,-5],[-12,2],[-8,-1],[-7,-2],[-8,-2],[-12,-2],[-10,2],[-11,4],[-8,1],[-9,2],[-10,0],[-13,-2],[-10,0],[-11,8],[-10,4],[2,10],[5,8],[-3,9],[13,15],[-7,1],[6,8],[-8,5],[-2,10],[6,13],[-5,11],[-11,-2],[-6,-12],[-9,-1],[-7,7],[7,8],[-7,7],[-5,7],[12,8],[-8,1],[-4,10],[-7,-10],[-1,-10],[0,-12],[-7,-5],[-10,6],[-10,4],[-12,-2],[-8,3],[7,10],[7,14],[8,-2],[9,-2],[-18,22],[-7,-2],[-9,-9],[-2,-10],[-9,1],[-10,3],[-24,-18],[-1,-10],[-1,-14],[0,-9],[-7,4],[-8,9],[-10,-1],[5,-8],[7,-4],[1,-11],[-8,-3],[-9,-4],[-10,-1],[4,11],[2,11],[-6,-11],[-10,-9],[-10,4],[-7,15],[-12,-3],[-9,-3],[-5,-10],[-7,3],[-7,-6],[-8,9],[-12,1],[3,-11],[-4,-10],[-15,7],[-5,12],[-4,10],[-4,-9],[-3,-9],[-2,-10],[-9,6],[-8,4],[-7,-6],[-8,-7],[-12,13],[7,5],[7,5],[3,10],[-12,6],[-8,3],[-7,7],[-14,6],[-7,-8],[2,-20],[-5,-7],[-9,-2],[-9,1],[-1,13],[8,11],[-9,7],[-15,-4],[-12,0],[-2,0],[-10,1],[-11,6],[-18,14],[-32,20],[-21,7],[-20,12],[-13,8],[-8,4],[-21,8],[-1,0],[7,13],[-9,6],[-6,11],[-4,12],[-5,8],[-5,8],[-5,6],[-8,1],[-1,1],[-5,-9],[-8,-7],[-12,-6],[-5,-2],[-13,1],[-5,-14],[-10,1],[-6,9],[1,-14],[-3,-14],[-7,-18],[1,11],[-4,13],[-7,5],[-8,4],[4,-11],[-8,-2],[-7,-9],[-9,-5],[-10,1],[-13,-1],[-22,-8],[-9,-5],[-12,5],[-11,5],[-9,1],[-10,9],[-8,4],[-7,-1],[-9,-11],[-16,4],[-8,3],[-12,5],[-10,4],[-7,9],[-4,10],[-10,1],[-6,10],[-9,0],[-8,-1],[-9,2],[-7,6],[-13,-4],[-2,-1],[-13,-1],[-16,3],[-8,-6],[-9,-2],[3,9],[-6,5],[-21,9],[-9,-2],[6,-15],[-3,-9],[-6,7],[-13,-1],[-10,-1],[-8,3],[-2,1],[-13,1],[-7,5],[0,12],[-1,12],[4,8],[-6,7],[-6,4],[-8,4],[-8,7],[-9,12],[-9,-3],[-5,-8],[-3,-10],[-8,12],[-8,-6],[-8,-1],[0,13],[-5,8],[-13,14],[1,-14],[-8,5],[-7,-4],[-13,5],[-5,6],[-8,12],[-8,-5],[-11,1],[-10,12],[-9,3],[-10,9],[-8,3],[-13,1],[-2,11],[-6,-10],[-9,-2],[-8,4],[-7,-7],[-9,2],[-4,9],[-9,-5],[-4,-12],[-13,-1],[-5,11],[3,9],[-8,4],[-8,-2],[-5,8],[-10,9],[-5,10],[-8,-8],[-10,7],[15,11],[-2,10],[-10,-6],[5,11],[-15,2],[-9,2],[-9,14],[-13,11],[-13,-2],[-11,3],[-10,8],[-8,-2],[-10,-4],[-7,-5],[-8,5],[-14,-11],[-7,0],[-4,9],[-13,0],[-7,-5],[-6,-7],[-3,9],[-5,8],[-9,0],[-9,-8],[2,12],[-1,12],[-10,2],[2,-11],[-17,1],[7,6],[-8,7],[6,13],[5,10],[-8,-1],[-7,-5],[-2,10],[-18,6],[-10,6],[13,7],[3,9],[-8,-2],[-7,11],[-4,-1],[-5,-1],[-2,-10],[-8,1],[-9,6],[-10,0],[-8,-11],[-14,-7],[-3,-11],[10,-8],[-7,-11],[-9,-1],[-19,10],[-6,15],[-23,2],[-7,-3],[-4,-14],[1,-15],[-11,3],[-10,3],[-6,6],[1,7],[1,4],[-8,12],[-9,9],[1,10],[2,10],[-6,5],[-8,-5],[-9,-1],[-1,10],[-8,13],[-9,5],[-11,-4],[-2,10],[-10,-1],[-15,14],[-1,11],[10,4],[8,9],[1,20],[0,10],[-6,12],[-9,-4],[-10,0],[-12,-6],[-3,8],[-8,-2],[-1,13],[6,7],[-9,10],[1,14],[0,9],[-8,0],[-12,-5],[-6,-9],[-11,1],[-11,8],[-12,6],[-10,-3],[-7,-20],[-10,3],[-5,11],[2,12],[-7,5],[4,11],[6,8],[-8,4],[-11,3],[-6,-11],[-12,6],[-7,10],[5,8],[-11,0],[-12,9],[-9,8],[-3,9],[0,9],[-9,3],[5,14],[14,9],[-8,9],[-7,7],[-9,1],[-7,-6],[-6,9],[5,10],[0,16],[1,14],[-13,11]],[[76488,50488],[-110,198],[-41,77],[-28,51],[-37,69],[-9,15],[-46,84],[-7,12],[-12,23],[-4,7],[-9,16],[-4,8],[-1,1],[-83,151],[-17,32],[-47,85],[-2,4],[-93,168],[-15,27],[-64,118],[-13,23],[-3,4],[-25,46],[-108,198],[-12,21],[-6,9],[-78,145],[-6,12],[-40,74],[-31,57],[-1,2],[-28,51],[-43,81],[-8,14],[-19,35],[-11,22],[-9,15],[-1,3],[-79,147],[-9,17],[-7,12],[-58,101],[0,1],[-7,10],[-12,23],[-9,16],[-7,13],[-80,143],[-42,76],[-5,9],[-7,10],[-12,23],[-11,19],[-18,33],[-55,96],[-7,11],[-59,108]],[[79230,52293],[-104,-60],[-24,-13],[-116,-65],[-44,-25],[-23,-13],[-14,-8],[-7,-3],[-92,-52],[-6,-4],[-13,-7],[-2,0],[-30,-17],[-40,-23],[-121,-68],[-21,-11],[0,-14],[3,-12],[8,-9],[4,-10],[8,-10],[7,-6],[-2,-15],[4,-11],[8,-3],[1,-19],[-5,-16],[-2,-11],[0,-1],[-1,-2],[-2,-7],[-3,-13]],[[78601,51765],[-87,-52],[-2,-2],[-20,-12],[-13,-8],[-18,-11],[-17,-10],[-13,-8],[-13,-8],[-11,-7],[-4,-2],[-33,-20],[-16,-10],[-66,-40],[-89,-54],[-24,-15],[-59,-35],[-211,-128],[-19,-11],[-1,-1],[-143,-87],[-122,-74],[-109,-66],[-38,-23],[-63,-39],[-23,-13],[-2,-1],[-59,-36],[-103,-63],[-111,-68],[-109,-67],[-51,-31],[-32,-20],[-2,-1],[-171,-96],[-136,-83],[-55,-33],[-12,-8],[-21,-13],[-35,-21]],[[63744,52321],[32,-53],[1,-2],[-60,-45],[-53,-40],[-42,-32],[-59,-45],[-120,-90],[-65,-49],[-40,-30],[-139,-102],[-17,-12],[-120,-90],[-15,-11],[-7,-5],[-90,-66],[-46,-35],[-32,-24],[-12,-10],[-34,-25],[-14,-10],[-44,-34],[-22,-16],[-62,-47],[-61,-45],[-37,-28],[-11,-8],[-197,-149],[-85,-64],[-10,-7],[-9,-6],[0,-1],[-65,-49],[-138,-104],[-69,-52],[-20,-12],[-28,-22],[-182,-139],[-68,-50],[-52,-38],[-45,-34],[-18,-13],[-3,-2],[-62,-46]],[[61524,50579],[-1,24],[-1,18],[0,1],[-3,20],[-4,13],[-8,21],[-4,12],[-3,7],[-11,9],[-7,8],[-20,30],[-1,1],[-11,19],[-11,21],[-10,17],[-3,11],[-4,25],[-12,19],[-4,9],[0,19],[-4,14],[-8,8],[-30,7],[-14,7],[-22,7],[-17,-8],[-15,-6],[-8,-18],[-7,-19],[0,-10],[7,-24],[0,-12],[-1,-22],[-4,-11],[-15,-4],[-7,2],[-11,9],[-6,8],[-7,11],[-24,23],[-16,15],[-10,5],[-20,7],[-13,4],[-16,8],[-15,13],[-11,10],[-12,13],[-21,9],[-21,14],[-10,3],[-7,7],[-6,13],[-5,9],[-6,13],[0,9],[3,15],[2,15],[3,13],[4,14],[8,9],[7,4],[16,21],[8,2],[12,-2],[15,-9],[21,-14],[9,-7],[17,6],[14,4],[12,5],[15,4],[15,6],[17,7],[15,11],[10,4],[6,6],[3,9],[-1,12],[-2,14],[0,13],[2,13],[2,17],[4,18],[1,23],[1,20],[4,18],[2,15],[6,23],[4,13],[1,9],[5,10],[6,9],[21,25],[1,12],[4,10],[23,16],[6,13],[0,17],[-4,12],[-4,10],[-5,10],[-8,4],[-27,6],[-8,0],[-8,-6],[-7,-13],[2,-10],[-2,-22],[-12,-25],[-10,-12],[-13,-15],[-7,-8],[-11,-9],[-12,-11],[-13,-6],[-8,-1],[-10,-3],[-21,-3],[-15,-4],[-9,0],[-22,-5],[-14,-2],[-24,-6],[-8,-2],[-8,-1],[-10,0],[-12,0],[-10,2],[-10,3],[-14,6],[-2,11],[4,34],[6,8],[12,6],[8,2],[9,4],[15,2],[12,15],[4,13],[10,7],[14,0],[9,8],[-2,12],[-10,9],[-16,8],[-13,1],[-15,-1],[-17,1],[-18,5],[-9,-2],[-10,-4],[-15,-21],[-4,-10],[-19,-28],[-10,-11],[-19,-20],[-16,-14],[-12,-2],[-14,3],[-11,8],[-4,9],[-3,15],[0,23],[2,10],[2,20],[8,8],[21,11],[7,8],[5,9],[8,5],[9,19],[7,15],[2,13],[-7,7],[-15,7],[-16,11],[-5,8],[-10,31],[1,13],[8,10],[5,9],[5,7],[12,13],[11,10],[11,-1],[9,4],[5,14],[10,31],[1,14],[-6,8],[-8,5],[-11,6],[-16,10],[-9,7],[-6,13],[-12,13],[-11,4],[-13,-3],[-7,-10],[-7,-10],[-12,-3],[-10,3],[-11,14],[3,14],[10,11],[11,16],[8,17],[3,16],[-5,11],[-6,9],[-12,8],[-9,2],[-9,-4],[-9,-5],[-21,-21],[-10,-8],[-18,-18],[-9,0],[-8,1],[-11,-6],[-9,-8],[-8,-9],[-10,-16],[0,-10],[3,-16],[-1,-22],[-6,-11],[-4,-3],[-6,-4],[-19,-2],[-13,-6],[-6,-11],[-10,-11],[-11,-15],[-18,-17],[-7,-5],[-10,-4],[-11,-2],[-12,-6],[-12,-3],[-7,-4],[-13,-15],[-23,-19],[-12,-8],[-15,-6],[-10,1],[-11,1],[-12,3],[-11,23],[-5,7],[-6,15],[-9,29],[-9,3],[-8,-1],[-21,-3],[-9,9],[-2,12],[2,10],[2,25],[1,14],[2,11],[13,7],[10,1],[20,-8],[9,6],[6,10],[8,21],[4,26],[4,17],[-1,9],[-3,9],[-8,17],[-6,9],[-3,13],[6,22],[3,33],[-4,12],[1,19],[4,11],[17,19],[10,10],[12,13],[10,7],[10,5],[16,6],[10,7],[1,15],[-5,12],[-16,21],[-4,21],[3,16],[2,21],[0,19],[0,28],[-4,21],[-4,8],[-7,5],[-14,-3],[-20,-3],[-16,2],[-15,3],[-9,-1],[-12,-4],[-10,-6],[-9,-6],[-26,-11],[-11,-1],[-19,-4],[-10,7],[-9,12],[-9,6],[-14,6],[-17,13],[-11,14],[-7,10],[-3,11],[0,10],[6,10],[20,13],[1,21],[1,12],[7,30],[1,31],[-3,12],[-8,9],[-13,5],[-20,6],[-14,2],[-16,4],[-9,0],[-17,3],[-12,-3],[-14,-8],[-11,-7],[-3,-14],[17,-18],[11,-14],[10,-17],[4,-10],[1,-10],[2,-19],[-12,-27],[-3,-18],[-1,-11],[-6,-18],[-5,-20],[-10,-12],[-5,-8],[-7,-6],[-11,-6],[-13,-3],[-13,1],[-17,-2],[-10,-4],[-25,-20],[-8,-17],[0,-10],[1,-14],[9,-26],[7,-10],[3,-13],[4,-10],[8,-29],[-9,-21],[-8,-9],[-9,-8],[-9,-8],[-8,-9],[-7,-11],[-15,-28],[-16,-17],[-10,-4],[-33,3],[-5,9],[-10,23],[-8,15],[-12,0],[-22,-25],[-12,-9],[-11,3],[-6,10],[0,13],[10,20],[7,12],[4,10],[7,30],[0,16],[-2,14],[0,11],[3,11],[6,17],[0,46],[0,16],[1,29],[5,7],[3,15],[5,17],[-2,27],[-8,11],[-14,8],[-15,3],[-9,-6],[-7,-5],[-16,-15],[-15,-10],[-16,-12],[-17,-10],[-9,0],[-14,3],[-8,3],[-11,8],[-29,10],[-14,3],[-11,-5],[-7,-9],[-6,-8],[-24,-15],[-9,-6],[-15,-6],[-20,-5],[-21,3],[-8,7],[-10,14],[3,14],[6,12],[11,29],[0,11],[-6,20],[-9,4],[-9,-1],[-10,-3],[-13,-6],[-19,-14],[-9,-6],[-8,-8],[-8,-9],[-7,-5],[-8,-3],[-7,-5],[-10,-4],[-11,-1],[-23,4],[-53,1],[-18,-1],[-12,0],[-11,4],[-12,12],[-7,5],[-10,1],[-8,0],[-11,7],[-10,5],[1,13],[17,32],[2,9],[-3,10],[-4,13],[-10,14],[-8,14],[-3,15],[-5,12],[-4,15],[-5,16],[-3,17],[-4,8],[-10,14],[-11,12],[-10,7],[-10,10],[-6,8],[-16,15],[-19,16],[-24,14],[-20,2],[-21,-4],[-10,-4],[-13,0],[-11,-4],[-19,-4],[-9,-7],[-7,-16],[-7,-8],[-9,-10],[-14,-14],[-8,-10],[-7,-7],[-14,-13],[-11,-2],[-9,3],[-8,7],[-25,12],[-11,4],[-9,-1],[-12,-7],[-14,-8],[-15,-5],[-15,0],[-10,2],[-19,11],[-13,4],[-12,-2],[-9,-6],[-22,-11],[-16,1],[-22,8],[-8,2],[-10,5],[-15,8],[-9,11],[-4,14],[-1,11],[-2,11],[-3,12],[-3,15],[-2,12],[-1,18],[-2,12],[1,14],[3,20],[-3,26],[-10,14],[-8,5],[-13,9],[-12,4],[-11,0],[-21,-1],[-20,-8],[-12,-6],[-7,-5],[-6,-7],[-7,-5],[-8,-8],[-11,-14],[-7,-14],[3,-10],[13,-8],[7,-11],[-1,-11],[-11,-11],[-10,-11],[-17,-19],[-16,-24],[-7,-12],[-3,-10],[-4,-10],[-9,-11],[-8,-7],[-8,0],[-10,3],[-8,12],[-1,15],[1,10],[8,30],[-5,9],[4,10],[10,3],[8,7],[4,9],[-2,12],[-2,12],[-2,28],[-2,9],[-9,9],[-33,6],[-20,3],[-9,2],[-15,5],[-12,5],[-26,18],[-15,12],[-12,13],[-8,12],[-10,7],[-25,15],[-9,3],[-23,13],[-5,10],[3,34],[1,10],[11,21],[8,3],[7,5],[10,13],[5,8],[16,22],[0,10],[-2,12],[-7,7],[-11,12],[-15,4]],[[66514,49067],[-63,116],[-42,77],[-28,51],[-5,9],[-7,15],[-1,0],[-14,25],[-27,45],[-17,31],[-8,16],[-5,8],[-12,22],[-16,33],[-8,14],[-9,15],[-12,20],[-22,39],[-28,50],[-3,4],[-6,13],[-14,23],[-35,60],[-40,71],[-35,61],[-7,12],[-86,157],[-11,19],[-15,28],[-31,55],[-31,53],[-71,129],[-39,69],[-67,118],[-22,38],[-28,49],[-21,37],[-29,50],[-23,41],[-13,22],[-19,34],[-27,48],[-44,79],[-12,22],[-10,17],[-21,39],[-32,56],[-22,41],[-53,94],[-17,31],[-43,77],[-39,70],[-6,9],[-65,118],[-13,23],[-6,11],[-47,83],[-11,20],[-35,63],[-31,56],[-57,101],[-46,81],[-54,96],[-171,303],[-12,20],[-78,138],[-82,144],[-2,3],[-4,8],[-11,19],[-56,99]],[[70233,51419],[-147,-93],[-51,-33],[-43,-27],[-18,-11],[-135,-86],[-34,-21],[-6,-4],[-10,-6],[-3,-2],[-5,-3],[-7,-5],[-18,-12],[-13,-8],[-7,-5],[-15,-9],[-14,-9],[-16,-10],[-15,-9],[-65,-40],[-99,-62],[-17,-11],[-1,-1],[-47,-29],[-38,-24],[-116,-74],[-16,-10],[-23,-14],[-11,-8],[-49,-31],[-11,-7],[-35,-21],[-72,-46],[-1,0],[-57,-37],[-29,-18],[-36,-23],[-104,-65],[-25,-16],[-33,-21],[-16,-10],[-14,-9],[-32,-20],[-21,-13],[-49,-30],[-59,-35],[-14,-9],[-23,-13],[-31,-20],[-3,-2],[-105,-69],[-36,-23],[-91,-58],[-31,-21],[-39,-24],[-167,-106],[-26,-17],[-133,-84],[-120,-76],[-59,-37],[-12,-7],[-50,-31],[-19,-11],[-9,-7],[-8,-5],[-18,-10],[-10,-6],[-6,-5],[-10,-6],[-9,-6],[-7,-4],[-8,-5],[-10,-7],[-31,-19],[-11,-7],[-19,-11],[-31,-20],[-25,-16],[-8,-6],[-10,-6],[-7,-4],[-8,-6],[-7,-4],[-20,-14],[-31,-21],[-4,-3],[-21,-13],[-11,-7],[-5,-4],[-4,-2],[-51,-32],[-11,-6],[-12,-9],[-10,-6],[-7,-5],[-35,-22],[-9,-1],[-7,-9],[-16,-10],[-105,-65],[-54,-34],[-194,-124],[-22,-14],[-44,-27],[-26,-16],[-67,-43],[-13,-9],[-25,-15],[-71,-45]],[[49737,53858],[0,-17],[-1,-106],[-1,-145],[-2,-60],[-2,-163],[0,-4],[0,-174],[-1,-54],[0,-13],[2,-15],[0,-41],[-1,-62],[0,-32],[0,-1],[-1,-43],[0,-52],[-1,-154],[-1,-118],[0,-20],[-1,-70],[-1,-69],[0,-37],[-1,-106],[-1,-141],[-1,-137],[0,-89],[1,-86],[-1,-226],[0,-1],[0,-68],[0,-68],[-1,-248],[0,-27],[-1,-125],[0,-159],[-1,-156],[-2,-64],[-1,-52],[0,-36],[0,-18],[-1,-134],[-2,-138],[0,-19],[-1,-23],[0,-58],[-1,-88],[-1,-106],[-2,-150],[0,-74],[0,-13],[-1,-115],[-1,-93],[0,-138],[0,-47],[0,-141],[0,-22]],[[49707,49242],[-20,0],[-14,0],[-40,0],[-59,1],[-52,0],[-101,1],[-16,0],[-102,1],[-113,0],[-55,1],[-143,1],[-87,0],[-40,1],[-138,0],[-7,0],[-10,0],[-17,1],[-15,-3],[-78,0],[-144,0],[-11,0],[-35,0],[-233,-2],[-211,-1],[-93,0],[-92,-1],[-54,1],[-43,0],[-25,0],[-15,0],[-119,-1],[-22,0],[-93,0],[-54,0],[-189,-1],[-25,0],[-299,-2],[-68,-1],[-16,0],[-15,0],[-13,0],[-12,-1],[-8,0],[-22,0],[-3,0],[-61,0],[-211,-2],[-202,-2],[-14,0],[-11,0],[-119,-1],[-99,-1],[-9,0],[-15,0],[-121,0],[-22,-1],[-105,-2],[-141,-2],[-63,-1],[-58,-1],[-43,1],[-8,1],[-8,1],[-35,1]],[[45341,49228],[-1,107],[0,33],[0,62],[-1,79],[0,78],[0,144],[-1,123],[-1,56],[0,23],[-1,87],[0,48],[0,17],[-1,73],[0,59],[0,46],[-1,138],[0,39],[0,13],[0,27],[-1,63],[0,19],[0,21],[0,22],[-1,134],[-1,23],[0,32],[0,69],[-1,10],[0,13],[0,26],[0,20],[-1,48],[-1,37],[0,112],[-1,37],[0,33],[-1,78],[-1,30],[0,24],[0,46],[0,32],[0,41],[0,70],[0,30],[0,33],[0,5],[-1,14],[0,33],[0,25],[0,2],[0,11],[0,14],[-1,75],[-1,91],[0,19],[-1,32],[0,31],[0,50],[-1,14],[-1,151],[-1,31],[-1,111],[0,47],[-1,36],[0,1],[0,57],[-1,91],[-3,177],[0,39],[0,10],[0,10],[-1,18],[0,13],[0,63],[0,26],[0,81],[0,27],[0,33],[0,10],[0,18],[0,58],[-1,40],[0,41],[-1,58],[0,48],[-1,36],[-23,0],[-302,4],[-111,2],[-39,1],[-37,1],[-26,0],[-125,0],[-31,0],[-15,0],[-229,5],[-44,0],[-20,1],[-111,2],[-44,0],[-189,4],[-41,0],[-53,1],[-36,-1],[-61,1],[-104,2],[-231,4],[-193,4],[-15,0],[-57,1],[-130,2],[-72,1],[-40,-1],[-36,0],[-26,0],[-64,1],[-32,0],[-63,0],[-17,0],[-16,0],[-41,0],[-45,0],[-12,0],[-12,0],[-12,0],[-66,1],[-23,0],[-34,0],[-40,0],[-9,1],[-15,0],[-10,0],[-19,0],[-26,0],[-2,0],[-6,0],[-19,0],[-20,0],[-42,0],[-29,0],[-76,1],[-18,0],[-29,0],[-52,2],[-47,0],[-1,0],[-168,1],[-33,0],[-23,0],[-15,0],[-47,1],[-145,0],[-222,2],[-40,0],[-55,0],[-32,0],[-75,1],[-28,-1],[-21,-1],[-108,1],[-10,0],[-16,0]],[[40932,53374],[1,88],[1,29],[0,18],[0,17],[0,53],[1,41],[0,15]],[[83011,53142],[-8,-6],[-12,-16],[-7,-13],[3,-19],[10,-10],[9,-3],[-1,-11],[-10,-6],[-9,-7],[-10,-10],[-5,-12],[0,-11],[4,-11],[9,-11],[4,-10],[9,-11],[17,-10],[15,-2],[10,3],[12,14],[17,23],[7,7],[9,0],[7,-13],[3,-10],[5,-12],[2,-11],[4,-21],[18,-27],[10,-12],[5,-12],[3,-12],[1,-11],[5,-15],[0,-12],[-7,-11],[-17,-7],[-15,1],[-8,4],[-6,7],[-8,11],[-10,8],[-12,6],[-14,1],[-17,-7],[-12,-7],[-9,-10],[-9,-23],[-10,-13],[-9,-5],[-20,-8],[-7,-32],[-1,-13],[-1,-13],[0,-10],[3,-11],[8,-5],[8,6],[16,15],[9,5],[13,-7],[11,-4],[11,0],[13,5],[7,7],[14,5],[41,11],[21,4],[18,1],[14,-4],[13,-7],[7,-4],[13,-14],[18,-25],[8,-12],[8,-12],[1,-19],[-1,-27],[-3,-34],[-2,-9],[-8,-19],[0,-17],[4,-21],[3,-9],[4,-10],[3,-20],[-1,-30],[-5,-30],[0,-44],[3,-16],[3,-13],[8,-19],[7,-11],[6,-14],[5,-12],[4,-9],[4,-8],[17,-16],[26,-15],[6,-5],[10,-9],[3,-12],[-12,-12],[-9,-10],[-4,-9],[-3,-21],[3,-13],[1,-26],[3,-20],[7,-12],[11,-7],[18,-1],[20,-3],[5,-16],[-9,-18],[2,-10],[14,-8],[7,-5],[1,-16],[-10,-17],[8,-14],[8,-5],[7,-6],[0,-11],[-17,-6],[-6,-4],[1,-12],[6,-10],[7,-7],[11,-8],[11,-4],[15,-3],[9,-6],[5,-11],[3,-11],[18,-11],[15,-3],[12,5],[9,0],[6,-7],[-1,-19],[8,-7],[16,5],[23,3],[15,3],[8,1],[11,-9],[4,-10],[2,-16],[-1,-15],[8,-11],[10,-5],[8,-3],[3,-9],[-7,-10],[-15,-2],[-18,1],[-22,-5],[-16,0],[-12,-5],[-5,-8],[-5,-35],[-6,-13],[-5,-8],[-16,-11],[-2,-11],[4,-8],[14,-10],[19,-4],[22,1],[24,3],[32,1],[15,2],[17,-10],[7,-10],[1,-10],[-3,-15],[0,-21],[2,-10],[5,-13],[0,-3],[5,-26],[2,-16],[1,-41],[-1,-11],[0,-9],[-3,-22],[-1,-14],[-5,-19],[-12,-21],[-7,-6],[-9,0],[-3,12],[3,10],[-5,16],[-11,7],[-15,-3],[-8,-6],[-19,-2],[-9,-4],[-8,-6],[-5,-8],[-3,-12],[4,-10],[7,-7],[5,-7],[-2,-22],[3,-13],[8,-9],[-10,-19],[-14,-27],[-10,-11],[-10,-5],[-10,0],[-12,9],[-10,0],[-5,-9],[2,-14],[7,-6],[9,-1],[19,-9],[8,-8],[14,-16],[-3,-12],[-22,-10],[-9,-8],[-14,-9],[-10,-9],[-7,-8],[-7,-19],[-8,-5],[-22,18],[-20,24],[-9,16],[-8,17],[-9,10],[-8,3],[-15,-1],[-9,-4],[-12,-9],[-12,-8],[-19,-11],[-15,-10],[-14,-17],[-9,-12],[-6,-13],[-6,-10],[-4,-10],[4,-10],[8,-7],[10,-7],[9,-11],[0,-10],[-6,-8],[-15,-6],[-17,0],[-10,-7],[-17,-24],[-13,-13],[-10,-4],[-15,-6],[-29,-14],[-8,-4],[-18,-4],[-6,-5],[-8,-28],[-9,-26],[0,-20],[-2,-15],[-10,-14],[8,-15],[19,-10],[11,-9],[10,-9],[2,-13],[-7,-6],[-20,-7],[-10,-3],[-7,-7],[6,-16],[4,-9],[7,-10],[8,-10],[6,-9],[2,-12],[-6,-7],[-13,-19],[-4,-8],[-2,-25],[4,-32],[5,-25],[2,-10],[4,-9],[-1,-11],[-3,-9],[-13,-27],[-7,-11],[-22,-24],[-10,-7],[-8,-5],[-22,-7],[-12,-5],[-8,-5],[-9,-7],[-6,-7],[-13,-19],[-7,-23],[-15,-15],[-7,-7],[-5,-8],[-4,-12],[-3,-33],[1,-23],[3,-30],[4,-14],[3,-10],[2,-9],[4,-15],[3,-13],[2,-10],[0,-32],[0,-14],[-2,-13],[-1,-33],[7,-19],[3,-12],[3,-8],[7,-16],[5,-8],[13,-14],[6,-9],[16,-13],[8,-11],[10,-11],[11,-14],[12,-11],[21,-13],[6,-7],[4,-14],[-10,-18],[-14,-14],[-8,-6],[-9,1],[-5,9],[-15,2],[-13,-5],[-6,-7],[-14,-26],[-5,-12],[-10,-20],[-5,-2],[-5,-1],[-8,2],[-9,20],[-10,-3],[-11,-14],[-10,-12],[-20,-14],[-11,-10],[-4,-10],[-2,-10],[-3,-10],[-3,-22],[-2,-10],[-7,-9],[-9,1],[-9,6],[-19,16],[-10,3],[-8,-7],[-7,-18],[-7,-6],[-7,-3],[-9,-2],[-23,-2],[-10,-3],[-12,-9],[-4,-9],[-9,-18],[2,-16],[4,-10],[4,-10],[5,-11],[7,-13],[1,-15],[-10,-14],[-3,-9],[-1,-19],[-6,-11],[-8,-8],[3,-10],[9,-8],[9,-5],[8,-13],[-2,-18],[-1,-12],[5,-12],[7,-7],[6,-6],[4,-11],[5,-14],[7,-18],[4,-17],[3,-12],[6,-7],[4,-9],[1,-10],[-3,-13],[1,-9],[8,-12],[8,-29]],[[82824,49300],[-96,-1],[-12,0],[-45,-1],[-41,0],[-36,-1],[-20,0],[-60,-1],[-38,0],[-97,-1],[-228,-3],[-35,0],[-65,-1],[-70,-2],[-37,-1],[-59,0],[-9,0],[-25,0],[-27,-1],[-25,0],[-52,0],[-62,1],[-11,0],[-8,-1],[-53,-1],[-31,-2],[-1,0],[-20,0],[-36,0],[-71,0],[-60,-2],[-13,3],[-4,0],[-4,0],[-16,0],[-15,-1],[-15,-1],[-1,0],[-14,-1],[-72,-1],[-16,-1],[-11,-3],[-8,-3],[-10,-5],[-80,-45],[-10,-8],[-46,-38],[-24,-21],[-4,-4],[-2,-2],[-13,-10],[-15,-15],[-14,-11],[-14,-13],[-36,-14],[-14,-6],[-15,-6],[-11,-1],[-28,-1],[-14,8],[-17,10],[-12,-1],[-10,-6],[-13,-7],[-15,-9],[-12,-3],[-31,2],[-35,2],[-19,0],[-12,-4],[-12,-6],[-8,-5],[-19,-17],[-4,-4],[-2,-2],[-22,-21],[-12,-11],[-34,-34],[-8,-6],[-6,-5],[-16,-13],[-36,-29],[-15,-12],[-7,-5],[-15,-12],[-31,-23],[-11,-8],[-9,-7],[-29,-20],[-19,-14],[-8,-5],[-22,-12],[-9,-4],[-10,-6],[-27,-18],[-23,-16],[-8,-5],[-8,-6],[-36,-26],[-7,-6],[-8,-6],[-7,-8],[-16,-16],[-7,-6],[-1,-1],[-10,-9],[-11,-8],[-7,-6],[-11,-8],[-24,-17],[-26,-19],[-30,-21],[-63,-43],[-28,-17],[-37,-22],[-3,-1],[-29,-23],[-53,-36],[-31,-23],[-12,-11],[-38,-26],[-16,-11],[-14,-8],[-16,-4],[-29,-1],[-9,-1],[-60,-14],[-18,-3],[-33,-6],[-45,-26],[-28,-19],[-7,-4],[-22,-14],[-9,-6],[-21,-9],[-14,-6],[-26,-8],[-41,-4],[-35,-4],[-17,-2],[-7,-1],[-8,-4],[-7,-6],[-13,-15],[-13,-15],[-27,-12],[-23,-8]],[[79196,48170],[-5,12],[-3,12],[2,14],[9,-5],[4,7],[-2,10],[-8,5],[4,11],[5,12],[-2,10],[8,6],[-4,10],[8,5],[5,9],[-7,7],[-4,11],[5,14],[8,-2],[-1,13],[-2,10],[0,17],[8,6],[9,-6],[7,7],[-1,13],[-8,5],[-14,13],[-9,2],[-12,-2],[-9,3],[-9,9],[-9,6],[-4,-10],[-8,-5],[-1,11],[2,17],[-4,9],[4,20],[-1,14],[-10,3],[-6,-9],[-8,4],[-10,1],[-13,-1],[-11,8],[-14,2],[-12,-1],[-14,8],[-1,-10],[-11,-1],[-2,12],[1,20],[2,20],[2,13],[4,23],[10,2],[-1,15],[2,11],[-1,12],[8,9],[3,9],[-6,7],[-1,9],[9,1],[6,9],[3,24],[0,13],[8,-7],[5,10],[8,13],[0,11],[8,7],[8,7],[8,-3],[6,11],[1,16],[10,10],[-3,10],[-11,7],[7,6],[-5,9],[4,15],[10,1],[2,19],[9,3],[9,6],[9,5],[5,-9],[8,10],[1,11],[0,12],[10,0],[-7,9],[-7,7],[-11,3],[-8,8],[-13,11],[7,9],[2,13],[13,6],[-2,9],[-4,9],[10,2],[10,2],[-7,8],[-11,10],[-2,12],[7,11],[-10,5],[-18,0],[1,-11],[-10,1],[-7,10],[-7,16],[-10,-2],[0,10],[-5,7],[-5,-9],[-7,4],[1,16],[-8,-2],[-7,-7],[-2,20],[-8,5],[-4,12],[5,8],[16,19],[9,-5],[1,10],[-13,12],[-12,0],[-8,10],[-6,7],[-9,3],[-6,7],[-6,-7],[2,-16],[-9,13],[-3,14],[-5,-8],[-9,9],[-8,9],[-10,3],[-5,-7],[-8,1],[-10,0],[-4,9],[-8,17],[-7,4],[3,13],[-6,16],[-5,7],[-9,4],[-7,7],[-8,1],[-6,8],[-5,8],[-3,19],[2,13],[-2,10],[-6,7],[-10,8],[-4,11],[4,11],[5,16],[-2,10],[0,10],[0,1],[3,10],[8,14],[-7,3],[-1,9],[8,9],[1,12],[-2,9],[-2,13],[4,9],[8,2],[1,18],[-11,12],[3,9],[6,9],[-4,13],[-11,8],[-6,6],[-11,8],[-11,5],[-3,15],[3,14],[-3,9],[-5,7],[-4,13],[-10,-1],[-2,10],[-1,11],[-14,12],[-10,19],[-9,6],[-8,3],[-2,11],[-7,0],[1,11],[-4,9],[9,2],[-6,9],[-4,14],[-7,4],[0,11],[2,14],[-9,-1],[-4,-9],[-6,7],[2,11],[-6,10],[-4,13],[-4,9],[-1,16],[-8,8],[0,10],[6,7],[-6,9],[4,18],[-3,9],[7,5],[3,9],[-1,10],[-12,4],[-4,12],[-5,10],[6,7],[-5,8],[-2,2],[2,10],[-2,13],[-7,4],[3,9],[9,-6],[3,10],[4,12],[-4,12],[4,9],[1,8],[0,1],[0,11],[1,17],[14,26],[-8,3],[-12,-1],[6,6],[-3,11],[-9,8],[-6,11],[9,4],[10,-1],[-1,12],[11,5],[-7,7],[-3,13],[-10,9],[-14,6],[-5,9],[2,10],[-1,13],[-3,11],[-6,13],[-11,9],[3,8],[-5,8],[-2,15],[-8,7],[-9,2],[0,10],[-8,2],[-10,-5],[-13,9],[2,14],[7,3],[4,9],[1,10],[0,10],[6,15],[-8,3],[-7,-1],[4,11],[-3,8],[2,12],[-7,5],[3,14],[5,13],[-2,15],[6,10],[-5,9],[2,11],[-1,11],[-10,9],[-19,9],[-1,-13],[-12,6],[-8,13],[-10,0],[3,18],[-8,8],[10,3],[1,9],[4,9],[2,12],[12,10],[9,16],[-5,8],[-3,8],[-8,5],[-5,9],[4,10],[-6,6],[-3,9],[-7,9],[-10,8],[3,15],[-7,12],[2,14],[-5,6],[-1,10],[-13,-1],[-12,11],[-8,5],[-11,3],[-8,8],[-6,10],[2,14],[-5,8],[-9,1],[3,10],[1,12],[-3,9],[-7,7],[3,9],[0,1],[3,10],[5,9],[1,11],[7,5],[7,13],[9,4],[4,8],[10,6],[3,-9],[-6,-10],[6,-10],[6,-5],[14,0],[9,8],[5,19],[9,0],[3,12],[9,20],[-2,10],[17,10],[-4,11],[8,5],[2,13],[-5,12],[6,6],[-5,6],[-9,3],[-12,4],[1,11],[0,12],[4,13],[4,12],[-16,13],[-11,16],[-8,11],[-13,8],[-9,-3],[-7,0],[-7,7],[-5,14],[-9,4],[-2,10],[-2,9],[4,18],[-3,11],[-2,12],[11,9],[-3,14],[-2,19],[-9,0],[3,12],[1,17],[8,6],[9,11],[11,-6],[7,-9],[14,-3],[1,-10],[7,5],[-2,12],[7,1],[9,15],[11,5],[-6,8],[-11,14],[-11,2],[-4,9],[-8,7],[-6,14],[-3,11],[-8,5],[-7,9],[-1,14],[4,11],[8,-5],[8,4],[6,9],[10,3],[-9,9],[9,8],[2,9],[-10,3],[3,11],[6,6],[8,6],[7,7],[6,9],[8,21],[-2,15],[0,2],[-12,0],[-10,8],[6,7],[9,6],[-4,12],[-6,8],[-6,10],[2,11],[9,5],[1,11],[-3,12],[0,13],[7,7],[9,3],[9,9],[-3,11],[7,8],[0,12],[3,10],[-10,-1],[0,11],[-3,8],[5,7],[-2,13],[-9,1],[-9,-1],[-1,14],[-5,10],[-4,9],[1,11],[-2,11],[8,7],[1,12],[-4,11],[1,10]],[[37067,54524],[0,-36],[0,-141],[0,-68],[0,-27],[0,-86],[0,-71],[0,-55],[0,-30],[0,-165],[0,-15],[0,-65],[0,-18],[0,-43],[0,-98],[0,-13],[0,-116],[0,-46],[0,-61],[0,-62],[0,-134],[0,-67],[2,-15],[0,-157],[0,-24],[0,-122],[0,-70],[1,-34],[-1,-87],[0,-143],[0,-1],[0,-32],[0,-33],[0,-55],[0,-108],[0,-254],[0,-38],[-1,-110],[2,-26],[0,-14],[0,-16],[0,-18],[0,-12],[0,-32],[0,-27],[2,-108],[0,-93],[0,-54],[0,-1],[0,-21],[0,-109],[0,-18],[0,-117],[0,-63],[0,-68],[0,-248],[0,-17],[-1,-46],[0,-131],[0,-1],[0,-36],[0,-4],[2,-78],[0,-105],[0,-43],[0,-57],[-1,-87],[0,-20],[0,-38],[0,-46],[0,-30],[-1,-79],[-1,-189],[0,-1],[0,-28],[-1,-153],[-2,-21],[-3,-329],[0,-75]],[[37064,49165],[-156,-1],[-74,0],[-120,0],[-6,0],[-15,0],[-20,0],[-5,0],[-19,1],[-202,-1],[-38,0],[-304,14],[-50,1],[-85,2],[-10,0],[-242,4],[-32,1],[-32,0],[-185,0],[-16,1],[-93,2],[-3,0],[-66,3],[-3,0],[-85,1],[-5,0],[-15,0],[-62,1],[-28,1],[-53,1],[-144,2],[-142,2],[-79,1],[-231,4],[-38,1],[-76,1],[-117,2],[-36,0],[-85,2],[-64,1],[-69,0],[-48,1],[-3,0],[-58,1],[-17,0],[-89,1],[-290,4],[-13,0],[-33,1],[-112,2],[-94,1],[-12,0],[-21,0],[-26,1],[-60,1],[-16,0]],[[33067,49225],[1,17],[0,31],[0,45],[0,66],[0,28],[0,3],[0,40],[0,3],[0,43],[0,19],[0,40],[2,30],[0,11],[-1,15],[-2,37],[-4,70],[-1,22],[-2,24],[-7,97],[-5,58],[-1,13],[-1,10],[-2,27],[-2,27],[-4,54],[-1,13],[-2,24],[-1,16],[-3,43],[-5,57],[0,12],[-2,19],[0,3],[-2,23],[-2,62],[-4,124],[0,20],[-1,18],[0,24],[-2,66],[-2,77],[0,18],[-1,38],[-1,18],[-2,32],[-1,55],[-2,68],[0,17],[-1,11],[-1,22],[-2,84],[-2,71],[0,10],[-1,34],[-3,95],[0,25],[-3,113],[-1,16],[-1,76],[-1,18],[-5,194],[0,23],[-1,24],[-1,27],[0,18],[-1,17],[0,18],[-1,28],[-1,25],[0,18],[-1,19],[0,10],[-1,31],[0,25],[0,20],[0,24],[-1,42],[-1,27],[-1,69],[-1,52],[0,20],[-1,12],[0,2],[0,32],[-1,24],[-1,37],[-1,34],[0,42],[-1,27],[0,38],[-1,27],[-1,49],[-1,41],[0,10],[0,20],[-1,35],[-1,40],[-1,84],[-1,39],[-1,92],[-1,14],[0,21],[0,11],[-1,20],[0,40],[-1,28],[-1,80],[-2,78],[-3,124],[0,43],[-3,70],[2,17],[-1,118],[-2,171],[-1,83],[-1,114],[-2,224],[-1,70],[0,17],[0,29],[0,14],[-2,142],[0,14],[1,12],[0,42],[-1,35]],[[33067,49225],[-41,0],[-84,2],[-190,2],[-31,0],[-13,1],[-12,0],[-18,0],[-38,1],[-10,0],[-9,0],[-18,0],[-14,0],[-16,1],[-59,0],[-11,1],[-30,0],[-8,0],[-67,1]],[[32398,49234],[-16,6],[-18,2],[-13,-10],[-10,5],[-7,2],[-11,3],[-4,-14],[-8,3],[-8,0],[-5,8],[-15,-2],[-11,0],[0,10],[10,9],[-4,8],[-8,-9],[-2,12],[0,10],[-9,-2],[4,9],[-2,11],[5,11],[-9,4],[-16,-1],[-6,9],[1,11],[-8,6],[2,17],[1,10],[-9,7],[-6,10],[-7,9],[5,8],[-9,7],[-6,10],[-2,18],[15,1],[-4,9],[-12,11],[-3,13],[-8,-4],[-4,8],[0,11],[-5,11],[-5,6],[-7,8],[-5,16],[-10,-6],[0,15],[-7,5],[-10,-1],[-10,3],[-2,10],[0,10],[-11,7],[-8,32],[10,3],[-2,11],[-9,12],[-13,9],[11,5],[7,7],[0,10],[5,11],[11,11],[-8,9],[7,12],[3,10],[-9,4],[-3,-9],[-8,4],[-14,8],[2,10],[7,-3],[9,4],[-1,9],[-6,12],[6,11],[-10,4],[-3,9],[-4,9],[0,12],[8,1],[13,-5],[8,4],[2,13],[11,-2],[8,8],[-1,10],[-7,6],[-3,14],[-7,8],[6,7],[1,11],[5,10],[5,12],[0,10],[-8,18],[-10,0],[0,14],[7,8],[10,12],[-10,2],[-7,8],[-3,22],[-13,0],[1,10],[6,15],[7,13],[-1,14],[-9,-6],[-6,12],[-9,9],[-1,12],[11,-3],[2,14],[11,11],[4,9],[0,10],[-8,3],[-6,12],[-7,5],[-3,11],[-2,9],[6,18],[-1,22],[-6,25],[-7,9],[-6,7],[8,6],[-7,6],[-16,7],[7,11],[-5,8],[-7,-9],[-6,7],[-14,8],[-15,5],[3,15],[0,12],[5,16],[-5,16],[-6,12],[-9,6],[-2,13],[5,12],[-8,2],[0,10],[-8,0],[-4,9],[-4,18],[-12,1],[-14,14],[-12,-1],[8,-10],[-9,-5],[-3,9],[-8,0],[-9,-3],[-6,9],[-5,9],[-1,9],[-7,11],[-6,10],[-6,7],[8,10],[-9,10],[-10,10],[-7,4],[-10,4],[-7,-9],[-12,1],[-7,-7],[-13,-2],[4,-9],[-4,-15],[-11,-8],[-7,9],[-8,-2],[-8,2],[-11,14],[9,-2],[13,-7],[4,12],[-10,4],[0,11],[-11,9],[19,23],[-5,9],[-12,3],[-7,10],[-9,-3],[-15,2],[-8,-10],[0,10],[-5,10],[-10,3],[-13,1],[0,11],[-5,10],[-9,5],[-6,9],[-7,3],[-9,3],[2,14],[-9,3],[-11,2],[0,13],[-11,-2],[-4,-14],[-11,1],[-4,-10],[-8,-1],[-2,12],[-6,-6],[-7,7],[4,8],[6,11],[-6,17],[-8,9],[-10,-4],[-10,4],[-2,10],[-8,6],[-3,8],[-9,9],[0,9],[-7,-5],[-1,10],[-8,3],[-7,-10],[-9,0],[-2,9],[13,8],[10,18],[-7,-7],[-8,-4],[-5,8],[-7,12],[-1,10],[-6,8],[4,10],[-6,7],[-9,-4],[-12,6],[-7,14],[-2,16],[-11,4],[-4,10],[-8,0],[-7,3],[-6,9],[-14,-6],[-9,1],[-2,14],[-12,4],[-14,0],[-8,10],[-8,8],[-6,-7],[-3,-10],[-10,1],[-4,14],[-11,-2],[-11,-4],[-11,2],[-8,-3],[-8,1],[-11,-10],[-15,2],[-3,10],[-9,7],[-8,8],[0,14],[-9,-5],[-8,-6],[2,12],[-9,2],[-12,4],[2,10],[-8,0],[-5,-12],[-8,-5],[-5,8],[-4,8],[-10,-8],[-7,3],[-9,7],[-13,-13],[-7,6],[1,13],[7,2],[-1,10],[-10,-5],[-12,-1],[-11,0],[-11,-3],[-13,1],[-4,-2],[-6,-3],[-18,1],[-13,11],[-10,-1],[-4,8],[2,12],[-9,0],[-7,8],[-10,1],[5,-8],[1,-13],[-9,3],[-14,5],[-10,-7],[-3,9],[-8,5],[-17,6],[-10,-10],[1,-10],[10,-9],[-5,-8],[-11,3],[-5,9],[0,15],[-10,6],[-6,-15],[-4,-21],[-10,-4],[-5,-8],[3,-10],[9,-6],[2,-12],[-8,-2],[-6,8],[-6,10],[-8,-4],[-2,-16],[-17,-2],[-8,-17],[-11,2],[-1,11],[0,13],[-21,9],[-4,13],[-14,11],[-8,-7],[-2,-18],[-9,-1],[-4,22],[-7,-6],[-10,2],[-9,9],[4,9],[10,3],[2,12],[-9,3],[-10,-3],[-3,8],[-2,12],[-17,-11],[-2,12],[-2,9],[8,10],[5,11],[-3,9],[-12,6],[0,11],[-3,9],[-14,2],[-7,12],[6,9],[-18,1],[-7,13],[7,7],[10,-3],[-1,10],[-1,11],[-8,-1],[-13,-6],[-9,-2],[-9,5],[-17,0],[-8,12],[0,13],[2,10],[-10,3],[-12,2],[-13,-2],[-5,7],[-3,11],[-9,7],[-8,0],[-14,-4],[-8,0],[-21,-2],[-2,12],[-10,1],[-4,9],[-11,0],[-9,-3],[-7,7],[-4,11],[-11,11],[10,10],[6,6],[-8,8],[-4,13],[1,13],[3,10],[10,22],[-8,0],[-15,-2],[-12,16],[-4,10],[-12,-5],[-1,10],[7,18],[-9,0],[-7,11],[-9,7],[-14,11],[-8,-5],[-5,8],[3,9],[-8,7],[-5,-13],[-8,-7],[-3,-10],[-8,1],[-7,5],[2,11],[-8,-1],[-7,11],[-9,0],[-7,-12],[-9,2],[-12,6],[-14,-1],[-5,11],[-10,-2],[-7,-8],[-8,-8],[-2,10],[4,14],[6,13],[-3,12],[0,10],[1,14],[-7,14],[-5,7],[-3,12],[-8,11],[-9,7],[-15,1],[-11,9],[-11,1],[-9,6],[-13,8],[-7,-7],[2,-12],[4,-9],[-18,-4],[-11,-8],[-8,-2],[-15,-15],[-22,-8],[-8,-5],[-12,-4],[-7,-12],[-7,-4],[-30,-9],[-13,-5],[-12,-10],[-8,-11],[-15,-12],[-10,-4],[-8,0],[-10,-8],[-21,-18],[-12,-5],[-7,9],[-6,5],[-7,-6],[-4,-15],[-10,-1],[-9,-3],[-9,0],[-7,6],[-8,-1],[-7,-14],[-9,2],[-12,3],[-7,-5],[0,-16],[-7,-4],[-9,13],[-6,-8],[-3,-14],[-5,-15],[-18,-11],[-4,-10],[7,-9],[11,-8],[-4,-8],[-9,2],[-6,9],[-7,3],[-1,-14],[6,-12],[-7,-5],[-11,-2],[1,-14],[5,-8],[15,-11],[-9,-8],[-16,-10],[3,-11],[10,-20],[2,-14],[-8,-6],[-10,-4],[-15,-6],[-20,-4],[-3,-14],[-9,-8],[-10,0],[-12,4],[-4,13],[-7,-4],[-7,-12],[7,-6],[-5,-9],[-9,5],[-11,6],[-8,-5],[-12,-2],[-10,-11],[-9,-6],[-17,-8],[-6,10],[-8,15],[-2,12],[-7,7],[5,14],[9,-4],[2,12],[-13,13],[2,11],[1,14],[-9,4],[10,9],[-14,3],[-15,9],[-17,8],[-7,-8],[-9,9],[-13,-2],[-12,0]],[[29519,51171],[0,37],[0,21],[0,243],[0,15],[0,27],[0,23],[0,12],[0,11],[0,75],[0,28],[-1,58],[0,84],[0,2],[0,16],[-1,111],[1,128],[0,47],[0,264],[0,47],[0,48],[0,16],[1,71],[0,11],[0,18],[0,15],[0,11],[0,72],[0,36],[0,15],[0,19],[0,61],[0,55],[0,31],[1,68],[0,36],[0,33],[0,55],[0,17],[-1,71],[0,73],[0,34],[0,104],[0,46],[0,27],[0,35],[-1,23],[0,20],[1,28],[0,35],[0,27],[0,53],[0,133],[-1,209],[0,253],[-1,121],[0,11],[0,12],[0,8],[3,97]],[[96373,53756],[0,-17],[0,-51],[0,-33],[1,-61],[0,-56],[2,-84],[1,-140],[1,-7],[1,-18],[-1,-11],[1,-17],[0,-14],[0,-99],[0,-29],[0,-12],[3,-191],[0,-1],[0,-114],[0,-3],[0,-11],[-49,-62],[-71,-89],[-3,-4],[-6,-11],[-12,-12],[-12,-14],[-26,-28],[-36,-38],[-28,-30],[-7,-9],[-28,-29],[-36,-39],[-22,-24],[-17,-18],[-57,-61],[-50,-54],[-4,-4],[12,-22],[1,-2],[12,-24],[1,-1],[5,-10],[7,-10],[6,-9],[5,-9],[5,-10],[9,-19],[10,-16],[8,-13],[5,-10],[5,-15],[5,-15],[2,-14],[3,-13],[8,-15],[6,-8],[14,-20],[8,-12],[5,-30],[4,-12],[4,-10],[9,-22],[6,-21],[3,-21],[2,-13],[1,-18],[-4,-13],[-8,-11],[-7,-5],[-10,-8],[-1,0],[-8,-5],[-19,-11],[-6,-7],[-6,-10],[-5,-8],[-4,-8],[-5,-9],[-2,-19],[-4,-9],[-9,-9],[-5,-17],[-1,-15],[-5,-14],[-7,-13],[-12,-15],[-6,-8],[-14,-18],[-2,-13],[6,-17],[5,-8],[7,-7],[8,-17],[5,-12],[0,-14],[-17,-29],[-16,-24],[-10,-14],[-6,-16],[-1,-16],[2,-11],[4,-13],[9,-11],[2,-16],[0,-10],[-4,-12],[-7,-15],[-7,-14],[-3,-10],[-6,-21],[1,-11],[2,-11],[3,-10],[3,-13],[-2,-9],[-7,-5],[-7,-7],[-8,-11],[-1,-14],[2,-13],[6,-10],[11,-16],[16,-24],[8,-9],[15,-9],[7,-7],[3,-9],[2,-13],[2,-10],[2,-11],[4,-26],[-1,-9],[-3,-12],[-2,-13],[-1,-12],[1,-14],[4,-21],[4,-15],[8,-18],[8,-21],[-2,-15],[1,-15],[12,-20],[24,-36],[4,-19],[4,-34],[1,-10],[-5,-19],[2,-35],[1,-11],[-3,-26],[-9,-18],[-10,-22],[-9,-16],[-9,-32],[-31,-126],[4,-54],[1,-14],[0,-10],[-1,-14],[0,-86],[-1,-89],[0,-60],[-9,-23],[-1,-10],[5,-26],[-1,-9],[-21,-33],[-1,-11],[-1,-12],[-4,-10],[-2,-14],[-18,-56],[-2,-9],[-8,-13],[-6,-8],[0,-16],[3,-11],[-2,-11],[-5,-9],[-6,-9],[-2,-15],[-1,-14],[3,-19],[1,-11],[3,-10],[5,-8],[8,-12],[9,-9],[7,-10],[6,-10],[2,-10],[3,-13],[5,-10],[8,-9],[15,-5]],[[95957,49676],[-6,-8],[10,-1],[-9,-3],[7,-5],[-4,-9],[-4,-10],[9,-1],[6,-7],[-7,-12],[1,-11],[-19,-14],[6,-8],[1,-13],[-9,-5],[-6,-15],[-2,-10],[-3,-14],[-8,-3],[-10,1],[2,-12],[-9,-5],[-4,8],[-10,-5],[-1,-10],[-9,-5],[-3,8],[-8,-8],[-4,-9],[-9,1],[-10,-2],[-8,2],[-3,-11],[-9,4],[-11,-1],[13,-9],[-2,-9],[-5,7],[-4,-8],[-6,7],[-6,7],[-7,-4],[-6,10],[-7,-7],[-4,10],[-8,0],[-6,-18],[-465,-114],[-33,-8]],[[95268,49347],[-15,13],[-3,11],[7,12],[6,10],[-4,15],[-10,6],[-8,11],[-13,-1],[-12,-6],[-6,-12],[-10,-5],[-13,-4],[2,10],[7,9],[-3,10],[-9,-4],[-8,-4],[-7,5],[6,9],[4,10],[-2,14],[-9,1],[-10,4],[-6,8],[3,9],[5,10],[-4,8],[-7,-1],[-10,-3],[-15,3],[-8,1],[-11,-3],[-8,0],[-15,9],[-9,2],[-7,-8],[-7,-4],[-7,3],[1,12],[6,11],[-2,12],[-9,4],[-9,5],[-7,17],[-7,8],[-12,4],[-13,7],[-13,6],[-10,-9],[-7,-7],[-9,0],[-6,5],[-12,11],[-1,9],[-4,9],[-14,-4],[-12,-9],[-6,-8],[-8,-1],[-6,7],[-4,11],[-8,21],[-9,17],[-10,5],[-12,6],[-13,6],[-12,13],[-6,5],[-7,5],[-2,11],[7,10],[5,9],[-11,1],[-10,-12],[-4,-9],[-9,4],[6,13],[6,8],[11,6],[0,12],[-10,5],[-9,3],[-14,-8],[-8,2],[-10,7],[-15,10],[-4,7],[-11,6],[-6,11],[8,0],[10,1],[-3,12],[-8,6],[-7,6],[-7,7],[-8,3],[-12,7],[-7,6],[-11,10],[-3,14],[14,-1],[9,-9],[9,7],[2,10],[1,12],[-12,5],[-9,10],[-10,9],[-11,2],[-10,-1],[-10,2],[-9,8],[3,11],[6,9],[-23,3],[-11,-1],[-7,6],[3,9],[-1,10],[-14,8],[-9,5],[-4,8],[-2,9],[0,11],[-1,10],[3,8],[0,11],[-7,9],[7,7],[7,8],[-11,8],[-16,1],[-12,4],[-2,15],[-10,-1],[-7,-6],[-10,4],[-9,9],[-8,-1],[-9,-3],[-11,-8],[-8,5],[5,9],[1,10],[-10,0],[-10,1],[-10,0],[-8,2],[-5,11],[-2,12],[-9,-5],[-7,-7],[-8,-6],[-12,-7],[-7,-5],[-7,-5],[-14,3],[-9,1],[-8,10],[6,6],[14,3],[7,9],[-5,13],[-2,10],[1,12],[-9,9],[-18,-7],[-10,-2],[-2,10],[7,11],[8,8],[-3,11],[-9,-1],[-8,-6],[-11,-5],[-6,-7],[-5,-8],[-2,-19],[-4,-10],[-13,6],[-9,-1],[-8,3],[-10,-4],[3,-9],[4,-11],[-14,0],[-6,7],[-3,13],[-6,8],[-9,11],[-5,22],[-1,13],[13,15],[-8,14],[-11,15],[-12,18],[-10,13],[-10,7],[-10,7],[-9,11],[-10,2],[-8,-5],[-12,-3],[-6,6],[8,7],[7,5],[-8,8],[-9,2],[-9,-4],[-7,-3],[-6,13],[-8,2],[-13,-2],[-10,0],[-8,-3],[-9,-3],[-12,9],[-7,16],[-5,13],[-1,10],[6,11],[-12,0],[-11,6],[-5,12],[-2,11],[0,13],[-4,8],[-9,-6],[-9,-1],[-10,4],[-15,-3],[-8,-4],[-7,-4],[-5,9],[-11,3],[-12,2],[8,6],[12,3],[1,10],[-15,0],[-9,-4],[-10,6],[-6,7],[1,12],[-13,8],[-12,-2],[-6,8],[12,6],[-13,15],[7,12],[-6,15],[-12,0],[-11,-2],[-9,-1],[-9,-1],[-12,-6],[-10,-9],[0,13],[-4,13],[-11,-3],[-11,-4],[-2,0],[-8,3],[-8,6]],[[40932,53374],[0,-36],[-1,-70],[0,-8],[0,-15],[-1,-84],[0,-4],[0,-24],[0,-14],[0,-12],[-1,-169],[0,-28],[-1,-44],[-1,-170],[-1,-37],[0,-12],[0,-26],[-1,-54],[-3,-145],[-1,-40],[0,-49],[-1,-57],[-1,-69],[-1,-68],[0,-25],[-1,-73],[0,-13],[-1,-43],[-1,-51],[-3,-207],[0,-23],[-1,-28],[-2,-40],[-2,-182],[-1,-138],[-1,-62],[-3,-83],[-1,-119],[0,-33],[-1,-103],[-1,-154],[-1,-73],[-1,-10],[0,-37],[-1,-109],[-1,-92],[0,-30],[-2,-111],[0,-42],[-2,-137],[-1,-101],[0,-39],[0,-26],[-1,-21],[-1,-103],[0,-36],[0,-1],[-1,-21],[0,-34],[-1,-32],[0,-2],[0,-27],[-1,-88],[-1,-51],[-2,-214],[0,-3],[0,-30],[-1,-108],[-1,-23]],[[40880,49161],[-28,0],[-47,0],[-1,0],[-197,-1],[-150,0],[-42,0],[-71,0],[-84,0],[-21,0],[-42,0],[-34,0],[-48,2],[-80,0],[-28,-1],[-32,0],[-28,0],[-50,0],[-13,0],[-45,0],[-17,0],[-10,0],[-16,0],[-69,0],[-11,0],[-9,0],[-29,0],[-21,-1],[-29,0],[-58,0],[-52,0],[-19,0],[-38,0],[-51,0],[-126,0],[-11,0],[-16,0],[-94,0],[-233,0],[-113,0],[-167,0],[-11,0],[-367,1],[-42,0],[-227,1],[-259,1],[-123,0],[-26,0],[-2,0],[-79,0],[-206,1],[-2,0],[-46,1],[-8,0],[-188,0]],[[29519,51171],[-4,10],[-7,5],[-5,-8],[-8,-4],[-12,-5],[-10,12],[-8,0],[-9,-17],[0,-10],[-9,-3],[-9,9],[-7,-14],[-9,-7],[-14,-11],[-5,-11],[-21,-22],[-14,-10],[-16,-3],[-19,-10],[-7,-9],[-11,1],[-7,5],[-12,-12],[-13,-3],[-11,-5],[1,13],[-7,7],[-9,1],[-2,-9],[-17,-23],[-11,-10],[-7,-11],[-8,-4],[-10,-2],[-4,-9],[0,-13],[-8,-4],[-6,9],[-6,-9],[-2,-9],[-6,7],[-8,2],[-8,-9],[-12,8],[0,-16],[-16,-14],[-12,-4],[8,-3],[-6,-9],[-7,-8],[-7,13],[-9,8],[-5,-9],[6,-8],[-7,-9],[-20,-3],[3,9],[8,4],[-10,3],[2,10],[-7,5],[-9,11],[-17,15],[7,7],[3,11],[-5,9],[-9,4],[-7,9],[-6,10],[-14,10],[-6,12],[-4,10],[-7,8],[0,12],[-8,13],[-21,2],[-10,4],[-17,9],[-16,13],[-7,12],[-10,8],[-9,-1],[-12,-4],[-6,10],[-12,4],[-10,-4],[-8,-4],[2,11],[1,10],[-8,1],[-9,6],[-3,12],[-7,8],[-18,5],[-11,2],[-9,-2],[-5,12],[-6,13],[-15,3],[-7,5],[-9,7],[-13,-3],[-7,8],[-3,16],[-7,3],[-5,7],[-7,6],[-13,7],[-2,12],[-5,13],[6,8],[5,18],[9,6],[11,-4],[8,6],[-1,12],[-7,11],[-8,2],[-1,15],[-6,7],[-16,11],[-7,3],[-17,1],[-7,9],[-11,0],[-14,2],[-12,6],[-11,1],[-13,2],[-8,4],[-7,4],[-7,2],[-14,5],[-10,9],[-21,10],[-7,8],[1,11],[-1,13],[-1,12],[-8,13],[-14,16],[-11,4],[-10,17],[-11,6],[-11,8],[-8,4],[-10,4],[-8,2],[-10,17],[-8,3],[-10,-2],[-10,-5],[-3,10],[-11,-7],[-14,4],[-11,-2],[-10,-8],[-8,9],[-5,-10],[-9,5],[-8,-3],[-9,8],[-9,9],[-5,15],[-13,22],[-1,10],[7,7],[-11,14],[-8,8],[-3,13],[3,9],[-13,-1],[-8,-6],[-7,-5],[-8,1],[-9,5],[-8,-4],[-5,10],[-10,-1],[-7,-6],[-7,9],[-6,12],[-4,10],[-11,5],[-9,-5],[-15,1],[-13,-1],[-8,-2],[-4,-8],[-9,5],[-13,-4],[-7,-6],[1,10],[-4,12],[-5,10],[-10,1],[-13,-10],[-7,-5],[-2,-11],[-16,-4],[-8,0],[-8,4],[-8,7],[2,10],[-6,9],[-9,0],[-6,7],[-8,7],[-3,11],[3,10],[-7,7],[-8,-8],[2,-16],[-12,6],[-7,6],[-12,1],[10,-17],[-7,-10],[-8,-13],[-14,-4],[-3,14],[-1,12],[-10,2],[-8,-4],[-11,-1],[-7,3],[-6,8],[-4,9],[-11,-7],[-9,-7],[-15,3],[-17,11],[-10,-6],[-11,-2],[1,11],[-5,8],[-11,-1],[-8,5],[8,5],[8,-1],[4,14],[-16,19],[-15,11],[-8,6],[-16,2],[-7,5],[-13,22],[-10,9],[-9,5],[-9,-2],[-3,10],[-6,7]],[[97511,53914],[19,-36],[12,-22],[4,-7],[4,-1],[20,-7],[15,-17],[14,-16],[23,-19],[14,-18],[1,-13],[-6,-6],[-20,-1],[-9,-7],[0,-21],[5,-13],[11,-8],[16,1],[10,3],[4,-9],[-1,-13],[-10,-15],[-15,3],[-3,-21],[16,-32],[17,-21],[18,-19],[29,-6],[6,-19],[8,-14],[21,-13],[17,-13],[22,-1],[7,-5],[-3,-10],[-18,-11],[-7,-8],[-1,-10],[20,-4],[12,-3],[3,-14],[0,-16],[8,-8],[6,-3],[24,-13],[27,-14],[8,-14],[11,-18],[21,-13],[32,-6],[33,0],[21,-5],[48,-7],[56,-1],[39,8],[8,5],[-2,10],[-27,11],[-4,11],[1,10],[12,7],[13,-7],[10,-15],[14,-2],[8,10],[3,4],[3,2],[5,4],[6,3],[4,2],[2,-5],[3,-2],[-1,-6],[3,-13],[4,-3],[3,-1],[4,-1],[5,0],[4,-1],[6,0],[5,-4],[1,-3],[1,-8],[-1,-5],[1,-6],[2,-15],[2,-6],[2,-5],[2,-9],[3,-6],[2,-5],[1,-6],[1,-5],[-1,-5],[-2,-3],[-7,-3],[-2,1],[-8,4],[-9,1],[1,-10],[7,-7],[9,-6],[8,-2],[3,-1],[4,-2],[6,-2],[4,-3],[5,-2],[6,-2],[5,-2],[6,-1],[6,-1],[17,-1],[10,3],[11,2],[14,1],[12,0],[10,-1],[18,-1],[13,0],[13,1],[17,2],[12,1],[9,-1],[6,-2],[7,-4],[4,-2],[6,-5],[2,-3],[3,-10],[-7,-12],[-7,-7],[-9,-7],[-5,-4],[-9,-1],[-11,0],[-8,-2],[-2,-1],[-7,-8],[-1,-5],[4,-11],[7,-8],[4,-4],[4,-8],[1,-11],[-8,-7],[-12,0],[-9,7],[-10,1],[-7,-7],[-3,-4],[-1,-15],[-2,-11],[-1,-10],[14,-19],[2,-12],[-5,-9],[-9,-5],[-11,-7],[-7,-8],[-8,-9],[-11,-9],[-8,-7],[-4,-3],[-9,-3],[-12,7],[-8,5],[-4,3],[-5,0],[-7,-17],[-3,-13],[-5,-10],[-9,-3],[-19,-5],[-8,-2],[-8,2],[-9,8],[-5,7],[-16,-1],[-12,-1],[-13,-10],[-9,-6],[-8,-7],[-4,-9],[3,-12],[9,-13],[9,2],[16,22],[12,2],[7,-14],[1,-21],[-13,-15],[-10,-16],[-9,-44],[1,-13],[9,-4],[29,-14],[20,-9],[29,-28],[50,-51],[37,-24],[40,-10],[12,12],[16,19],[7,4],[9,-4],[8,-12],[7,-13],[15,-13],[13,-3],[7,6],[1,10],[-1,16],[8,8],[10,-2],[12,-6],[9,-6],[1,-5],[0,-5],[0,-6],[-42,-105],[3,-8],[5,-1],[114,-15],[1,-4],[4,0],[1,-13],[-1,-8],[0,-2],[-1,-1],[-6,-12],[-57,-105],[-11,-30],[-4,-9],[-13,-22],[-1,-13],[3,-16],[-3,-19],[-1,-12],[7,-10],[10,-7],[9,-5],[12,3],[16,0],[15,-2],[21,-15],[7,-4],[14,-8],[17,-17],[22,-30],[19,-23],[5,-7],[7,-3],[7,1],[12,4],[16,2],[9,-4],[10,-6],[4,-9],[10,-20],[5,-12],[2,-17],[9,-41],[2,-39],[3,-54],[1,-19],[3,-24],[0,-12],[-8,-8],[-9,2],[-9,4],[-9,-2],[-2,-10],[4,-11],[8,-11],[10,-12],[6,-5],[8,-3],[14,0],[15,3],[13,4],[15,3],[14,2],[11,2],[13,4],[15,9],[20,7],[16,10],[13,7],[8,3],[18,-5],[11,3],[9,8],[10,7],[10,0],[2,-9],[-6,-13],[-5,-11],[-3,-8],[-10,-14],[-8,-6],[-8,-12],[-1,-6],[-2,-11],[0,-11],[0,-15],[-7,-11],[-8,-5],[-6,-3],[-25,-7],[-15,-3],[-24,-9],[-13,-5],[-47,-12],[-7,-2],[-9,-3],[-10,-3],[-11,-11],[-4,-10],[3,-42],[2,-26],[0,-14],[-1,-15],[0,-13],[-2,-6],[-4,-7],[-16,-22],[-5,-9],[-4,-5],[-12,-15],[-9,-6],[-7,-5],[-5,-11],[6,-12],[15,-20],[6,-12],[1,-10],[-5,-12],[-9,-11],[-3,-5],[-4,-2],[-7,-3],[-8,-3],[-18,-4],[-11,-6],[-6,-6],[-4,-8],[-2,-11],[0,-14],[-5,-11],[-17,-21],[-7,-12],[-3,-9],[0,-12],[2,-11],[1,-6],[2,-6],[3,-9],[5,-11],[13,-16],[3,-4],[4,-3],[5,0],[19,1],[12,-1],[14,-3],[3,0],[9,-2],[14,-6],[14,-7],[15,-9],[6,-6],[3,-8],[2,-10],[5,-10],[5,-6],[5,-7],[6,-9],[6,-13],[5,-15],[8,-14],[9,-15],[6,-13],[6,-12],[5,-11],[3,-6],[2,-1],[7,-4],[4,1],[4,0],[7,5],[4,3],[4,3],[22,12],[8,3],[8,2],[11,-4],[6,-12],[6,-17],[7,-11],[7,-11],[4,-10],[3,-11],[1,-21],[1,-17],[3,-16],[8,-12],[9,-4],[13,1],[12,2],[11,2],[11,3],[18,1],[16,2],[16,2],[12,2],[11,1],[3,1],[10,3],[8,1],[8,0],[7,0],[7,-9],[-1,-38],[1,-11],[7,-9],[8,-8],[12,-7],[8,-7],[10,-18],[-1,-12],[-9,-24],[-2,-9],[7,-15],[6,-11],[-9,-10],[-21,-7],[-13,-3],[-13,-9],[-3,-6],[3,-5],[3,-4],[14,-12],[5,-3],[5,-3],[5,-4],[4,-5],[2,-2],[-1,-10],[-5,-16],[0,-3],[0,-12],[4,-13],[3,-12],[-3,-13],[-4,-9],[-4,-8],[-3,-6],[-1,-9],[2,-2],[11,-5],[25,5],[10,0],[5,-2],[4,-2],[1,-4],[3,-8],[1,-8],[4,-12],[2,-2],[8,-6],[5,0],[3,1],[41,15],[30,13],[3,1],[3,-4],[3,-5],[2,-5],[0,-6],[-1,-4],[-3,-4],[-10,-14],[-4,-7],[-4,-6],[1,-6],[3,-6],[8,-7],[11,-6],[7,-6],[1,-10],[-4,-9],[-57,-26],[-5,-12],[0,-15],[1,-8],[2,-19],[-3,-13],[-6,-12],[-3,-5],[-7,-10],[-5,-7],[-4,-10],[1,-9],[4,-5],[21,-24],[13,-12],[1,-11],[0,-29],[-1,-26],[3,-50],[-2,-20],[-3,-11],[-1,-9],[0,-7],[1,-7],[2,-9],[3,-7],[2,-9],[2,-9],[2,-6],[0,-1],[4,-12]],[[99297,50068],[-78,-5],[-2,0],[-19,-2],[-11,0],[-9,-1],[-71,-5],[-154,-11],[-31,-2],[-14,-1],[-79,-6],[-17,-1],[-9,0],[-13,-2],[-17,0],[-22,-2],[-32,-3],[-11,0],[-35,-3],[-83,-6],[-8,-1],[-15,-1],[-112,-8],[-39,-3],[-79,-6],[-39,-3],[-15,-1],[-8,-1],[-62,-3],[-57,-3],[-53,-4],[-60,-5],[-42,-3],[-32,-2],[-17,-2],[-46,-3],[-76,-6],[-16,-1],[-22,-2],[-134,-9],[-20,-1],[-21,-2],[-26,-1],[-14,-1],[-32,-3],[-1,0],[-28,-2],[-10,-1],[-13,-1],[-19,-1],[-2,0],[-15,-1],[-3,-1],[-6,0],[-1,0],[-12,-1],[-10,-1],[-11,-1],[-10,-1],[-15,-1],[-32,-2],[-12,0],[-17,-2],[-14,0],[-40,-3],[-57,-4],[-13,-2],[-36,-2],[-24,-2],[-29,-2],[-184,-13]],[[96931,49899],[-31,-7],[-8,-2],[-24,-6],[-58,-13],[-85,-19],[-41,-10],[-16,-3],[-12,-3],[-9,-2],[-60,-14],[-4,-1],[-54,-13],[-8,-1],[-13,-3],[-21,-5],[-1,-1],[-25,-5],[-16,-4],[-56,-13],[-13,-3],[-4,-1],[-16,-4],[-23,-5],[-21,-5],[-22,-5],[-24,-6],[-13,-2],[-31,-7],[-55,-13],[-1,0],[-14,-3],[-9,-2],[-4,-1],[-14,-4],[-23,-5],[-14,-3],[-32,-7],[-56,-13],[-43,-9]],[[88618,52412],[-13,-18],[-2,-16],[-2,-14],[8,-7],[10,-9],[8,-6],[14,-9],[5,15],[-2,12],[8,2],[7,-11],[0,-13],[4,-10],[9,3],[8,4],[8,1],[-4,-16],[0,-9],[7,-9],[13,-3],[9,-4],[11,6],[14,3],[17,-3],[9,-5],[8,-8],[0,-12],[6,-6],[11,-6],[11,-3],[5,-8],[9,2],[10,-7],[0,-10],[-23,-12],[2,-10],[12,2],[8,-2],[2,-12],[0,-15],[-10,-8],[-6,-8],[3,-11],[23,4],[8,1],[25,-21],[13,-4],[11,2],[11,-7],[2,-2],[7,-8],[-7,-14],[-4,-8],[-2,-9],[1,-11],[13,-6],[15,-4],[12,-4],[9,-4],[2,-1],[9,-7],[-7,-8],[9,-5]],[[88962,52046],[-32,-29],[-93,-82],[-102,-89],[-12,-11],[-15,-13],[-67,-58],[-32,-27],[-13,-11],[-20,-17],[-75,-64],[-25,-21],[-4,-3],[-103,-87],[-187,-160],[-65,-54],[-59,-51],[-31,-26],[-53,-45],[-60,-51],[-151,-128],[-28,-24],[-46,-40],[-52,-45],[-64,-54],[-16,-12],[-79,-70],[-17,-11],[-76,-64],[-1,-1],[-120,-101],[-64,-55],[-48,-40],[-77,-65],[-18,-15],[-167,-141],[-60,-50],[-29,-25],[-1,0],[-24,-21],[-22,-19],[-16,-13],[-106,-89],[-20,-18],[-47,-40],[-100,-85],[-197,-166],[-32,-28],[-20,-17],[-22,-18],[-47,-40],[-25,-21],[-16,-13],[-32,-28],[-88,-74],[-63,-53],[-110,-93],[-22,-20],[-5,-4],[-14,-12],[-48,-42],[-87,-74],[-116,-98],[-13,-11],[-40,-34],[-47,-40],[-8,-6],[-7,-6],[-9,-8],[-10,-8],[-42,-36],[-12,-10]],[[85333,48961],[-35,-29],[-41,-36],[-19,-16],[-13,-11],[-64,-56],[-14,-12],[-41,-35],[-33,-29],[-45,-39],[-8,-7],[-72,-62],[-84,-72],[-29,-23],[-31,-27],[-42,-36],[-61,-53],[-15,-13],[-43,-37],[-28,-23],[-7,-6],[-67,-57],[-13,-11],[-31,-27],[-23,-20],[-20,-16],[-46,-40],[-13,-12],[-57,-49],[-23,-19],[-75,-65],[-10,-9],[-10,-9],[-18,-15],[-4,-3],[-55,-48],[-41,-35],[-30,-26],[-34,-29],[-92,-79],[-7,-6]],[[83939,47764],[-10,-5],[-7,-4],[-18,-9],[-13,-12],[-7,-2],[-22,-7],[-22,-4],[-11,2],[-9,0],[-11,4],[-9,-2],[-9,0],[-10,4],[-9,9],[-8,9],[-3,13],[-3,16],[-4,12],[-7,12],[-7,5],[-13,1],[-14,2],[-16,8],[-2,10],[1,20],[0,27],[0,18],[-1,11],[-4,20],[-7,9],[-10,9],[-13,9],[-6,12],[1,10],[-6,12],[-10,8],[-16,15],[-6,9],[-7,16],[-3,15],[-9,21],[-2,13],[-1,16],[-4,11],[-5,13],[-3,11],[-3,12],[-9,14],[-9,5],[-14,7],[-18,14],[-8,11],[-3,12],[-3,12],[-2,28],[-4,17],[-9,17],[-10,5],[-12,4],[-11,2],[-11,3],[1,12],[6,9],[10,12],[16,10],[23,11],[10,2],[11,3],[8,9],[1,17],[-2,16],[6,10],[9,6],[8,7],[3,7],[3,5],[3,6],[9,14],[5,15],[4,15],[4,13],[5,14],[8,19],[11,19],[11,24],[-2,10],[-10,6],[-21,8],[-29,10],[-8,8],[-9,14],[-5,30],[4,13],[28,33],[8,16],[13,16],[14,5],[37,1],[19,2],[10,2],[11,5],[9,3],[16,4],[12,9],[12,12],[8,14],[9,19],[11,6],[9,-1],[10,-3],[6,-11],[5,-19],[6,-8],[14,-9],[10,-3],[11,4],[0,12],[-5,10],[4,12],[12,7],[8,8],[1,17],[-6,21],[-4,30],[-2,20],[-10,11],[-19,9],[-22,3],[-64,4],[-18,7],[-1,15],[0,10],[-5,9],[-22,25],[-8,12],[-14,27],[-6,14],[5,8],[11,3],[31,5],[-2,13],[-35,24],[-7,10],[-3,13],[-4,14],[-4,11],[-9,16],[-10,2],[-12,0],[-13,9],[-3,15],[-3,9],[-12,2],[-9,-7],[-26,-23],[-18,-14],[-15,-15],[-12,-11],[-15,-4],[-8,6],[-8,11],[-6,8],[-9,-3],[-15,-10],[-14,-3],[-9,2],[-17,29],[-14,12],[-27,3],[-10,-7],[-4,-12],[-7,-20],[-9,-5],[-10,-3],[-8,6],[-2,1],[-9,20],[-13,19],[-13,6],[-3,-19],[-3,-13],[-6,-6],[-13,0],[-6,12],[-8,11],[-6,6],[-11,4],[-27,-13],[-21,-3],[-17,-2],[-14,-1],[-10,1],[-19,20],[-5,16],[-2,16],[-5,14],[-7,9],[-11,-1],[-13,-12],[-5,-11],[-17,-16],[-14,2],[-14,7],[-10,13],[-1,14],[-4,17],[-11,15],[-8,1],[-11,-2],[-10,-1],[-11,2],[-10,6],[-16,7],[-18,-5],[-14,-10],[-7,-9],[-10,-10],[-12,3],[-10,-2],[-8,2],[-8,7],[-7,12],[-11,19],[-3,12]],[[53614,53032],[0,-113],[0,-29],[-1,-150],[0,-11],[-2,-216],[0,-57],[0,-68],[-1,-150],[0,-65],[-1,-73],[0,-43],[1,-43],[0,-51],[0,-28],[-1,-117],[2,-209],[0,-147],[1,-18],[0,-76],[0,-25],[0,-33],[1,-49],[1,-208],[1,-253],[0,-22],[1,-16],[0,-47],[0,-5],[1,-251],[0,-26],[0,-52],[0,-1],[0,-16],[0,-14],[0,-30],[0,-27],[0,-114],[0,-139],[0,-175],[0,-50],[0,-71],[0,-19],[0,-69],[0,-28],[0,-23],[0,-15],[-1,-12],[-2,-21],[-2,-62],[-8,-260]],[[53604,49235],[-50,0],[-118,-3],[-51,0],[-21,0],[-110,0],[-103,0],[-10,0],[-37,0],[-72,1],[-148,0],[-235,0],[-110,1],[-55,-1],[-351,1],[-11,0],[-6,0],[-58,0],[-117,0],[-2,0],[-142,1],[-21,0],[-89,0],[-25,0],[-67,0],[-37,0],[-25,-1],[-51,0],[-190,1],[-55,0],[-11,0],[-136,0],[-64,0],[-20,0],[-55,0],[-52,1],[-63,0],[-115,0],[-42,0],[-98,0],[-32,0],[-172,2],[-63,0],[-80,0],[-42,1],[-131,0],[-329,2],[-25,1]],[[45341,49228],[-8,0],[-48,-1],[-99,-3],[-28,0],[-73,-2],[-40,-1],[-15,-1],[-11,0],[-64,-1],[-56,0],[-18,0],[-9,-1],[-9,0],[-123,-2],[-16,0],[-71,-1],[-91,-2],[-262,-4],[-172,-3],[-23,0],[-110,-2],[-8,0],[-66,-1],[-181,-3],[-100,-2],[-25,-1],[-17,0],[-37,-1],[-273,-5],[-28,-1]],[[43260,49190],[-90,-2],[-107,-2],[-94,-2],[-191,-3],[-266,-3],[-22,0],[-282,-3],[-104,-2],[-70,-1],[-16,0],[-142,-2],[-175,-2],[-3,0],[-19,0],[-52,0],[-35,-1],[-39,0],[-158,-2],[-120,-1],[-58,0],[-44,-1],[-70,0],[-37,-2],[-186,0]],[[95268,49347],[-329,-79],[-2,-1],[-14,-3],[-76,-18],[-67,-16],[-55,-14],[-111,-27],[-51,-13],[-87,-21],[-40,-10],[-7,-2],[-71,-17],[-8,-2],[-27,-6],[-53,-13],[-30,-8],[-26,-6],[-14,-4],[-42,-10],[-9,-3],[-38,-9],[-17,-4],[-57,-14],[-86,-21],[-42,-11],[-42,-10],[-30,-8],[-43,-11],[-19,-4],[-58,-15],[-78,-19],[-151,-38],[-21,-5],[-69,-20],[-66,-17],[-1,0],[-23,-6],[-8,-2],[-41,-10],[-49,-12],[-33,-8],[-1,0],[-87,-22],[-42,-10],[-54,-13],[-38,-8],[-78,-20],[-29,-7],[-78,-20]],[[92770,48730],[-11,-2],[-11,0],[-11,0],[-4,-1],[-6,-3],[-4,-2],[-10,-3],[-3,-1],[-6,-6],[-11,-15],[-10,-16],[-4,-6],[-12,-9],[-11,-3],[-7,9],[-9,4],[-12,0],[-10,3],[-7,6],[-12,8],[-11,0],[-9,4],[-7,7],[-12,6],[-3,9],[6,7],[4,16],[-7,14],[0,16],[-2,9],[-18,4],[-18,3],[3,9],[-7,5],[2,11],[1,12],[-3,9],[-8,6],[-10,-6],[-6,-11],[-4,-9],[-13,-3],[-9,7],[-12,-1],[-15,4],[-13,13],[-1,-10],[-8,0],[-4,13],[-9,5],[-10,-1],[-1,-11],[-6,-7],[-11,5],[-4,9],[-3,15],[-7,6],[-6,-7],[-7,5],[-4,12],[-9,3],[-11,4],[-5,11],[-4,10],[-10,3],[-6,-5],[-8,0],[-9,-1],[5,-10],[-5,-12],[-12,3],[-1,18],[-2,11],[6,9],[-8,1],[-9,-7],[-5,-7],[-7,6],[4,18],[-11,15],[-7,-16],[-9,1],[-8,5],[-3,11],[-11,8],[-13,-1],[3,-11],[2,-13],[-7,-6],[-5,-8],[-7,-4],[-9,9],[5,8],[-9,1],[-7,4],[-11,-8],[-12,0],[-7,2],[-9,8],[-8,12],[-5,9],[-8,14],[-7,7],[-8,-2],[-5,-12],[6,-6],[-1,-15],[7,-8],[-5,-10],[-8,9],[-12,6],[-7,-3],[-10,-1],[-8,1],[-8,7],[6,13],[-4,8],[-19,-8],[-7,4],[-1,19],[-8,-3],[-9,-6],[-8,7]],[[91979,48970],[5,20],[-4,17],[-9,5],[-2,-12],[-8,3],[-10,16],[-7,4],[-11,-8],[-5,-19],[-8,14],[-2,11],[-5,-7],[-8,-1],[-4,14],[-13,7],[-4,9],[8,13],[-9,2],[-7,-9],[-13,7],[-17,8],[-8,-5],[-16,-8],[3,-17],[-5,-9],[-5,9],[-11,5],[-13,0],[-17,-3],[-10,3],[-8,9],[-9,11],[8,8],[2,10],[-4,15],[-17,9],[-11,-3],[-3,-10],[-2,-11],[-9,-3],[-8,-6],[-11,-3],[-6,7],[-9,12],[-8,8],[3,12],[-2,11],[-14,18],[-7,14],[-4,-11],[7,-13],[-9,-6],[-6,10],[-2,12],[-5,8],[-11,-3],[-14,0],[-10,3],[0,10],[12,10],[6,9],[0,14],[-8,0],[-7,-5],[-6,-11],[-8,1],[-4,8],[6,6],[-6,6],[-2,9],[-1,11],[-11,-5],[-5,-8],[-14,5],[5,9],[-12,7],[-12,-6],[-7,6],[-5,13],[-7,-5],[-4,-12],[-5,7],[-8,2],[-24,-26],[-10,2],[-6,6],[-8,3],[-6,14],[-1,12],[-9,3],[0,13],[-11,3],[-8,-8],[-6,-8],[-9,-1],[-11,-7],[-9,1],[-14,9],[-9,13],[-8,13],[-13,16],[-4,13],[-2,14],[1,20],[-3,11],[-4,1],[-4,1],[-9,-5],[-13,-13],[-7,-9],[-12,-13],[-2,-11],[3,-14],[0,-14],[-9,0],[2,-11],[2,-11],[-11,-12],[-7,-13],[-7,-5],[-7,6],[-11,1],[-9,-1],[-10,4],[-4,10],[1,10],[-9,0],[-27,5],[-8,-1],[-11,-2],[-6,10],[-6,6],[7,4],[-10,12],[7,8],[9,-1],[5,9],[-2,11],[-6,7],[-11,2],[-11,-8],[-14,-9],[-21,-7],[-7,9],[3,11],[-2,3],[-5,5],[-24,-2],[-21,3],[-17,7],[-8,6],[-10,0],[-1,-12],[-9,-3],[-7,-3],[-9,5],[-3,11],[-9,0],[-8,0],[-2,10],[-7,-5],[6,-8],[-8,-9],[-11,8],[-3,9],[2,13],[-8,2],[-6,10],[-7,9],[-9,1],[-1,-11],[-4,-12],[-1,-3],[-9,2],[-6,12],[-2,18],[-7,-5],[-13,-6],[1,11],[-3,13],[11,4],[-5,8],[-11,5],[-11,0],[-6,-8],[-8,-9],[-11,7],[-7,-9],[-6,9],[4,10],[-17,13],[-9,0],[-21,-4],[-6,7],[-9,5],[-9,-15],[-11,-4],[-11,-2],[-4,0],[-7,-5],[-8,-1],[-23,-3],[-3,-1],[-7,-1],[-7,4],[-9,-6],[-4,-3],[-4,-3],[-9,8],[-9,-1],[-10,2],[-14,8],[-14,11],[-9,-2],[-8,3],[-6,-10],[-16,4],[-10,3],[-8,7],[-4,12],[-8,9],[-11,6],[-9,3],[-27,10],[-10,9],[-9,13],[-7,6],[-9,5],[-13,1],[-9,0],[-8,12],[-5,11],[-13,0],[-10,-3],[-8,2],[-10,7],[-10,8],[-5,11],[-8,3],[-16,13],[-6,16],[-7,-6],[-7,-4],[-16,7],[-10,-1],[-6,9],[-11,6],[-12,-2],[-4,10],[-15,9],[-13,4],[-5,9],[5,9],[-5,10],[-16,14],[-11,-3],[-12,2],[-22,5],[0,-15],[-14,7],[-19,8],[-11,7],[-9,5],[-9,5],[-6,0],[-3,0],[-6,-15],[-3,-12],[-20,11],[-19,10],[-3,6],[-1,3],[-4,17],[-5,9],[-6,9],[-8,10],[1,12],[-7,1],[-6,-9],[-8,-9],[-10,1],[-6,8],[-8,6],[-10,-8],[-8,9],[-6,12],[-9,7],[-24,-4],[-11,8],[-5,10],[-18,1],[-11,2],[0,9],[-7,9],[-3,9]],[[89839,49792],[-3,10],[-4,17],[-10,-3],[-5,-11],[-10,11],[-11,2],[-15,-4],[-9,-9],[-5,10],[-7,9],[-12,2],[-13,4],[5,11],[-1,15],[11,6],[8,1],[14,2],[13,6],[-4,9],[-6,9],[9,13],[3,15],[-10,18],[-1,11],[-11,8],[-9,16],[-1,13],[4,12],[-2,15],[-9,15],[-2,13],[6,8],[10,-2],[0,-13],[14,-6],[8,0],[-10,13],[1,15],[-4,9],[-5,13],[5,10],[10,2],[0,10],[-9,19],[-3,15],[-5,10],[-11,11],[8,5],[-2,21],[-2,14],[-9,6],[-8,2],[-14,2],[-4,14],[-5,10],[-11,28],[12,-2],[3,10],[-5,17],[-6,8],[-22,14],[2,12],[5,12],[-11,0],[-4,12],[-8,24],[-10,9],[-1,11],[7,10],[8,0],[4,-1],[7,8],[-15,10],[11,2],[14,5],[-15,11],[-5,7],[2,11],[7,5],[12,-1],[17,-7],[2,11],[-1,16],[-8,0],[-15,-2],[-7,12],[8,4],[13,2],[12,8],[-10,7],[-21,5],[-4,11],[5,8],[-15,13],[12,13],[-1,14],[-6,15],[-2,19],[11,-1],[11,3],[6,20],[-8,4],[-9,-3],[-8,2],[-17,26],[-8,6],[-8,21],[-1,14],[0,11],[-5,12],[-9,-3],[-7,-7],[-7,10],[-9,7],[-5,19],[-6,20],[-9,9],[-2,-9],[-6,-10],[-22,-1],[-6,-8],[-10,0],[-9,10],[2,10],[0,11],[-2,7],[-4,13],[-5,18],[-12,6],[-6,-7],[-11,2],[-10,5],[-9,-5],[-7,-10],[-7,2],[-6,11],[-8,4],[-7,11],[-11,6],[-10,5],[0,13],[-1,13],[-6,10],[9,3],[8,7],[-7,15],[8,11],[14,9],[16,16],[11,19],[4,17],[7,16],[4,11],[10,16],[22,2],[11,7],[7,9],[14,20],[8,4],[8,1],[12,13],[-1,10],[-6,14],[-1,20],[-9,12],[-9,5],[-9,-3],[-9,-14],[-9,-1],[-1,10],[-1,2],[0,25],[-3,10],[-16,28],[-7,-4],[-4,-10],[-2,-18],[-11,8],[-1,11],[2,12],[-9,6],[-3,-12],[-1,-11],[-7,-14],[-11,-5],[-10,7],[2,15],[-8,15],[-5,9],[8,0],[5,14],[0,12],[-6,8],[-9,8],[5,7],[-14,7],[1,13],[-1,13],[7,13],[-7,3],[-6,13],[-7,14],[-6,6],[-2,19],[-5,9],[6,9],[6,17],[10,11],[10,20],[-8,5],[-2,10],[7,13],[1,10],[-12,9],[1,10],[-3,13],[-8,9],[-14,8],[-14,8],[5,8],[7,13],[-12,0],[-14,11],[-16,-3],[-5,10],[-4,20],[-4,9],[-10,-7],[-6,8],[-6,6],[-16,0],[-13,7],[-12,4],[10,-23],[-10,-1],[-6,8],[-17,5],[-12,1],[-7,5],[-13,8],[-19,9],[-9,4],[-8,0],[1,-11],[2,-10],[-10,0],[-14,6],[2,11],[-8,2],[-8,10],[-9,4],[-10,-1],[-8,1],[-8,7],[-8,1],[-6,-21],[-9,12],[-9,-7],[-3,-14],[-10,-11],[-3,9],[-3,15],[-11,-5],[-4,-16],[-16,14],[-8,0],[-14,9],[-5,8],[-8,10],[-1,10],[-15,-7],[-9,-3],[-3,15],[7,5],[7,-2],[7,9],[-5,14],[-2,10],[4,10],[-7,8],[-9,-4],[-9,-8],[-9,-1],[-9,3],[3,38],[10,5],[6,-9],[13,4],[-5,9],[-6,9],[2,12],[6,6],[5,-8],[0,-10],[9,-3],[-1,14],[9,6],[4,3],[13,8],[9,-4],[6,11],[-3,13],[-14,-10],[-10,20],[-8,-2],[-3,9],[6,10],[-6,8],[-7,-7],[-11,-6],[-8,8],[2,23],[14,14],[-3,18],[8,13],[0,12],[0,6],[1,14],[-12,9],[-2,12],[3,12],[0,14],[12,1],[5,14],[9,-2],[7,-7],[22,1],[5,9],[-7,14],[-11,-1],[-5,9],[-5,11],[-9,6],[-11,-3],[-12,8],[3,10],[-8,3]],[[74720,49409],[-3,45],[-18,-13],[-212,-132],[-81,-52],[-19,-9],[-18,-12],[-7,-4],[-2,-1],[-31,-20],[-44,-29],[-25,-16],[-62,-39],[-12,-8],[-26,-16],[-67,-39],[-7,-5],[-67,-46],[-31,-21],[-47,-31],[-87,-59],[-46,-32],[-116,-74],[-1,0],[-135,-87],[-42,-27],[-3,-2],[-17,-10],[-4,-3],[-73,-45],[-24,-15],[-83,-52],[-50,-32],[-53,-34],[-112,-71],[-32,-20],[-21,-12],[-102,-64],[-13,-9],[-42,-26]],[[72885,48287],[-74,131],[-65,115],[-18,30],[-56,99],[-103,180],[-68,119],[-36,62],[-29,52],[-1,1],[-23,40],[-8,14],[-2,2],[-8,14],[-2,4],[-3,5],[-2,3],[-6,11],[-11,19],[-69,119],[-17,30],[-33,56],[-23,40],[-78,136],[-12,21],[-37,65],[-7,11],[-11,20],[-14,23],[-7,12],[-28,50],[-17,29],[-42,72],[-27,47],[-34,58],[-28,49],[-36,63],[-15,25],[-1,1],[-37,65],[-37,63],[-34,60],[-11,16],[-32,57],[-2,2],[-28,54],[-18,27],[-10,15],[-7,10],[-13,27],[-11,20],[-12,22],[-5,8],[-7,15],[-5,9],[-31,53],[-20,34],[-27,47],[-4,7],[-12,20],[-9,16],[-1,3],[-8,14],[-28,46],[-2,3],[-5,9],[-30,54],[-5,8],[-5,10],[-3,5],[-1,2],[-4,7],[-14,24],[-17,30],[-31,55],[-4,5],[-2,3]],[[76488,50488],[-39,-24],[-41,-25],[-68,-41],[-35,-21],[-33,-24],[-31,-19],[-38,-24],[-178,-110],[-15,-10],[-12,-7],[-13,-9],[-17,-10],[-16,-10],[-3,-2],[-24,-14],[-17,-11],[-26,-16],[-15,-10],[-99,-58],[-21,-12],[-21,-13],[-13,-9],[-9,-6],[-33,-23],[-192,-120],[-11,-5],[-12,-8],[-1,0],[-12,-8],[-45,-28],[-38,-24],[-40,-25],[-13,-8],[-68,-40],[-103,-61],[-57,-34],[-55,-32],[-17,-10],[-8,-3],[-44,-26],[-58,-35],[-33,-19],[-31,-18],[-1,-1],[-104,-61],[-8,-5]],[[57506,52738],[0,-44],[0,-23],[-1,-135],[0,-73],[-1,-29],[0,-16],[0,-24],[0,-56],[0,-30],[-1,-98],[0,-19],[0,-133],[-1,-16],[0,-24],[0,-83],[0,-21],[0,-103],[-1,-59],[0,-51],[0,-19],[-1,-146],[0,-50],[0,-38],[0,-47],[-1,-66],[0,-27],[-1,-157],[0,-18],[0,-36],[-1,-214],[0,-11],[0,-11],[0,-1],[0,-22],[0,-19],[0,-15],[1,-50],[-1,-44],[0,-47],[0,-2],[0,-18],[0,-62],[0,-83],[0,-11],[0,-24],[-1,-19],[1,-89],[0,-33],[0,-37],[0,-76],[0,-49],[0,-117],[0,-88],[0,-192],[0,-13],[0,-80],[0,-54],[0,-26],[-1,-54],[0,-77],[0,-154],[0,-52],[0,-74],[-1,-78],[0,-210],[0,-15],[0,-33],[0,-39],[0,-76],[-1,-69],[0,-36],[0,-205],[0,-181],[-1,-102],[0,-272]],[[57493,47863],[-195,0],[-3,0],[-10,0],[-43,-1],[-77,1],[-1,0],[-30,1],[-30,-1],[-102,1],[-64,0],[-35,0],[-72,0],[-62,0],[-24,0],[-34,0],[-13,0],[-19,0],[-36,0],[-141,0],[-92,0],[-82,0],[-22,0],[-16,1],[-16,0],[-29,0],[-198,-2],[-2,0],[-63,0],[-69,0],[-96,-1],[-25,0],[-8,0],[-89,0],[-10,-1],[-52,0],[-95,2],[-59,0],[-130,0],[-10,-3],[-9,0],[-44,0],[-1,0],[-36,0],[-133,0],[-42,0],[-82,0],[-32,-1],[-145,0],[-48,0],[-23,0],[-52,0],[-72,0],[-31,0],[-9,0],[-32,0],[-42,0]],[[54506,47859],[-43,0],[-76,1],[-41,0],[-37,0],[-27,0],[-43,0],[-88,0],[-42,0],[-14,0],[-88,0],[-32,0],[-40,0],[-16,0],[-65,0],[-75,0],[-86,0],[-73,1],[-19,0],[0,30],[0,51],[0,24],[0,79],[0,68],[-1,123],[0,3],[0,22],[0,18],[0,122],[3,17],[0,44],[0,116],[0,91],[0,181],[0,19],[0,19],[0,38],[0,13],[1,235],[0,1],[0,28],[0,32]],[[61524,50579],[-1,-23],[0,-14],[-1,-18],[-2,-19],[-4,-17],[-4,-16],[-2,-8],[-1,-4],[-8,-26],[-8,-19],[-5,-12],[-2,-17],[-3,-12],[-3,-16],[-4,-13],[-4,-12],[1,-22],[2,-19],[0,-9],[6,-11],[34,-21],[7,-7],[14,-9],[12,-9],[15,-7],[10,-2],[15,-1],[15,3],[15,4],[19,8],[15,6],[10,4],[8,1],[9,-2],[6,-4],[9,-8],[7,-8],[5,-9],[3,-10],[10,-16],[8,-6],[4,-11],[-2,-10],[-6,-8],[-13,-11],[-38,-29],[-8,-11],[-3,-10],[1,-11],[7,-16],[13,-9],[11,-2],[64,-5],[13,-2],[7,-4],[10,-6],[14,-18],[22,-26],[18,-21],[7,-5],[16,-4],[19,0],[12,1],[9,3],[9,3],[13,6],[12,4],[8,6],[14,0],[11,-11],[1,-23],[-7,-17],[-11,-16],[-10,-14],[-12,-16],[-9,-10],[-10,-6],[-16,-4],[-12,-1],[-15,1],[-32,5],[-9,2],[-9,4],[-12,1],[-10,0],[-7,-5],[-8,-9],[-4,-9],[-1,-20],[2,-18],[3,-20],[2,-16],[7,-17],[2,-11],[2,-20],[0,-12],[-5,-15],[-7,-9],[-15,-11],[-7,-6],[-22,-13],[-36,-18],[-22,-9],[-19,-3],[-9,-3],[-8,-4],[-6,-7],[-4,-14],[-2,-12],[-1,-14],[15,-28],[13,-18],[14,-11],[16,-19],[13,-16],[7,-11],[5,-10],[2,-9],[2,-10],[10,-17],[8,-12],[10,-16],[11,-16],[6,-10],[6,-36],[5,-32],[2,-13],[11,-23],[7,-11],[7,-9],[10,-7],[11,1],[9,5],[12,12],[15,16],[10,14],[7,15],[8,20],[3,13],[4,11],[7,18],[5,16],[4,16],[9,8],[8,5],[10,4],[10,2],[8,3],[12,10],[8,18],[11,27],[9,30],[6,7],[9,6],[19,3],[8,-1],[15,-3],[14,-18],[11,-15],[8,-6],[14,-1],[12,10],[6,11],[7,11],[9,11],[11,4],[12,-4],[15,-28],[9,-21],[8,-14],[16,-24],[12,-15],[8,-6],[8,-3],[13,-1],[12,4],[7,4],[11,12],[15,16],[8,6],[11,7],[14,2],[13,-4],[7,-14],[1,-18],[-7,-14],[-7,-7],[-9,-13],[-10,-14],[-7,-9],[-10,-9],[-12,-11],[-12,-10],[-15,-9],[-17,-12],[-6,-7],[-4,-14],[3,-13],[6,-7],[14,-7],[22,-7],[22,-7],[14,-4],[8,-4],[10,-9],[7,-19],[2,-12],[2,-20],[0,-17],[0,-13],[-6,-13],[-15,-11],[-11,-5],[-10,-3],[-9,-2],[-13,0],[-20,4],[-17,2],[-13,1],[-11,-4],[-8,-18],[-8,-18],[-9,-15],[-7,-6],[-13,-6],[-12,-4],[-16,-5],[-10,-7],[-5,-8],[-1,-23],[1,-15],[2,-14],[3,-9],[10,-15],[7,-5],[8,-8],[11,-15],[8,-10],[12,-13],[16,-13],[43,-25],[14,-9],[13,-9],[18,-7],[19,-7],[14,-4],[21,-7],[20,-8],[18,-9],[16,-13],[13,-13],[10,-13],[6,-13],[4,-11],[4,-13],[8,-14],[14,-22],[5,-15]],[[62460,48693],[3,-12],[0,-16],[-1,-13],[-6,-18],[-7,-13],[-9,-13],[-12,-11],[-13,-11],[-20,-13],[-26,-12],[-17,-9],[-23,-12],[-7,-7],[-7,-8],[-3,-11],[-1,-12],[1,-13],[5,-15],[15,-24],[16,-24],[6,-8],[18,-21],[10,-12],[10,-12],[8,-10],[11,-13],[28,-63],[5,-18],[-2,-17],[-8,-26],[-58,-76],[-11,-13],[-5,-14],[1,-40],[17,-54],[18,-45],[8,-20],[9,-10],[11,-5],[19,-5],[59,-7],[51,-2],[14,-1],[8,-2],[13,-4],[24,-10],[17,-10],[12,-9],[8,-13],[3,-12],[-2,-19],[-4,-16],[-7,-41],[-4,-20],[-3,-22],[-5,-16],[-7,-15],[-7,-9],[-9,-6],[-11,-4],[-22,7],[-14,7],[-17,7],[-14,2],[-18,3],[-13,1],[-17,-1],[-21,-5],[-13,-6],[-21,-26],[-8,-13],[-1,-2]],[[62414,47680],[-8,0],[-9,1],[-8,0],[-65,0],[-3,0],[-39,0],[-15,0],[-15,0],[-58,1],[-8,0],[-5,0],[-13,0],[-13,0],[-40,0],[-39,1],[-12,0],[-13,0],[-16,0],[-16,1],[-20,0],[-116,-1],[-9,2],[-10,0],[-16,1],[-9,0],[-18,0],[-43,-3],[-36,1],[-20,-2],[-62,2],[-12,0],[-84,1],[-77,0],[-16,0],[-107,0],[-23,0],[-33,0],[-97,-1],[-11,-1],[-69,0],[-62,0],[-14,0],[-11,1],[-1,0],[-239,-3],[-205,-2],[-2,0],[-18,0],[-63,0],[-172,-2],[-22,0],[-89,-1],[-81,-1],[-31,-1],[-25,-5],[-49,1],[-24,0],[-13,0],[-29,0],[-16,0],[-22,0],[-33,1],[-72,0],[-9,0],[-23,1],[-28,0],[-48,0],[-284,2],[-98,1],[-55,0],[-15,1],[-56,0],[-3,0],[-36,0],[-14,-1],[-25,-2],[-151,2],[-16,0],[-27,0],[-44,0],[-59,1],[-64,0],[-16,1],[-9,0],[-8,0],[-11,0],[-10,0],[-8,0],[-20,0],[-25,0],[-37,1],[-17,0],[-15,0],[-8,0],[-16,0],[-21,0],[-10,0],[-15,1],[-29,0],[-12,0],[-23,0],[-8,0]],[[58465,47679],[-102,1],[-69,1],[-101,1],[-63,0],[-41,0],[-27,0],[-18,0],[-34,0],[-37,1],[-32,0],[-14,0],[-1,0],[-19,0],[-14,1],[-57,0],[-78,0],[-100,0],[-20,0],[-70,0],[-8,0],[-11,0],[-57,1],[0,10],[0,13],[0,13],[0,49],[0,1],[1,92]],[[66514,49067],[-51,-33],[0,-20],[2,-10],[6,-96],[1,-14],[4,-69],[0,-13],[4,-68]],[[66480,48744],[-46,-1],[-30,0],[-95,-1],[-27,-1],[-32,0],[-62,-1],[-119,-1],[-92,-1],[-25,-1],[-18,0],[-20,0],[-50,-1],[-6,0],[-27,0],[-26,0],[-144,-6],[-40,0],[-39,-1],[-164,-3],[-27,0],[-37,0],[-59,-1],[-36,-1],[-10,0],[-26,0],[-9,0],[-33,0],[-34,-1],[-106,-1],[-188,-1],[-103,-2],[-2,0],[-70,-1],[-26,0],[-25,0],[-68,-1],[-71,-1],[-41,0],[-22,-1],[-4,0],[-35,0],[-45,-1],[-126,-1],[-22,0],[-40,-1],[-34,0],[-25,0],[-122,-2],[-20,0],[-14,0],[-14,-1],[-22,0],[-126,-2],[-19,0],[-33,0],[-60,-1],[-33,0],[-33,-1],[-11,0],[-18,0],[-79,-1],[-42,0],[-68,-1],[-27,0],[-54,-1],[-74,-1],[-47,0],[-16,-1],[-91,-1],[-20,0],[-8,0],[-74,-1],[-18,-1],[-132,-1],[-9,-1],[-35,0],[-30,-1],[-9,0],[-13,0],[-49,0],[-47,-1],[-34,0],[-11,-1],[-76,1],[-46,0]],[[89839,49792],[-150,-202],[-21,-27],[-30,-40],[-46,-60],[-14,-20],[-76,-102],[-44,-59],[-24,-32],[-39,-53],[-35,-46],[-22,-30],[-59,-79],[-13,-18],[-45,-58],[-28,-38],[-28,-38],[-8,-10],[-32,-44],[-12,-16],[-7,-9],[-2,-2],[-94,-93],[-18,-18],[-40,-40],[-46,-46],[-49,-49],[-7,-6],[-49,-50],[-38,-38],[-2,-2],[-41,-41],[-8,-8],[-21,-22],[-13,-14],[-25,-25],[-9,-9],[-49,-51],[-31,-32],[-17,-18],[-7,-7],[-13,-14],[-51,-52],[-102,-105],[-89,-93],[-16,-16],[-92,-94],[-13,-14],[-118,-122],[-68,-70],[-46,-47],[-1,0],[-7,-7],[-22,-24],[-127,-130],[-86,-90],[-52,-55],[-37,-39],[-19,-19],[-206,-214],[-1,0],[-50,-52],[-14,-14],[-31,-32],[-50,-52],[-110,-114]],[[87119,46771],[-7,8],[-11,17],[-7,16],[-9,12],[-10,9],[-13,12],[-12,4],[-25,2],[-9,1],[-22,5],[-48,24],[-62,46],[-8,15],[-9,28],[-4,15],[-9,37],[-7,32],[0,13],[0,11],[-11,25],[-13,21],[-15,13],[-8,9],[-8,14],[5,17],[8,12],[7,8],[7,8],[14,26],[6,15],[6,16],[6,13],[12,27],[10,21],[4,10],[7,10],[3,11],[-5,8],[-5,8],[-15,17],[-15,17],[-16,17],[-12,14],[-9,13],[-8,16],[-12,19],[-6,9],[-9,14],[-7,10],[-8,6],[-7,5],[-5,3],[-10,7],[-8,3],[-9,2],[-10,-1],[-9,-1],[-68,-12],[-9,-1],[-26,-6],[-5,-1],[-24,-5],[-19,-6],[-14,-5],[-16,-8],[-11,-5],[-18,1],[-23,4],[-18,5],[-10,4],[-12,1],[-12,-2],[-20,-1],[-26,0],[-18,-3],[-15,-5],[-18,-6],[-17,-6],[-16,-10],[-21,-12],[-11,-10],[-5,-16],[5,-13],[10,-13],[9,-11],[2,-10],[2,-7],[-1,-11],[-4,-24],[-8,-18],[-10,-10],[-12,-13],[-8,-7],[-4,-8],[1,-12],[3,-7],[2,-5],[9,-13],[7,-18],[-2,-16],[-6,-11],[-6,-7],[-11,-9],[-14,-7],[-8,-4],[-10,-4],[-7,-10],[-2,-2],[-5,-10],[-3,-16],[-2,-10],[-5,-12],[-6,-7],[-6,-4],[-2,-2],[-7,-4],[-1,-1]],[[86150,47099],[-11,-2],[-11,9],[-5,7],[-11,22],[-4,11],[-9,18],[-6,12],[-9,23],[-6,14],[-5,7],[-9,11],[-9,8],[-10,7],[-10,4],[-11,2],[-11,-6],[-6,-12],[-8,-14],[-6,-11],[-4,-11],[-7,-9],[-9,-12],[-3,-20],[10,-43],[-1,-11],[-8,-13],[-8,-15],[-15,-7],[-14,-4],[-15,-3],[-15,-3],[-15,-1],[-14,-3],[-11,1],[-21,8],[-18,3],[-9,1],[-9,-1],[-11,-2],[-10,-1],[-14,-3],[-7,-2],[-11,-3],[-12,-6],[-10,-4],[-14,-7],[-9,6],[-10,9],[-15,12],[-11,5],[-11,3],[-13,4],[-13,4],[-7,0],[-6,1],[-10,12],[-2,6],[-1,2],[-3,14],[-2,11],[1,20],[1,12],[3,12],[8,18],[10,14],[6,8],[12,13],[9,9],[5,7],[2,13],[-5,14],[-11,9],[-13,6],[-9,3],[-21,7],[-1,13],[10,11],[7,6],[9,-5],[13,-14],[14,-11],[11,-4],[18,-6],[17,-3],[24,1],[15,5],[8,7],[-2,16],[-2,14],[-1,22],[-2,13],[-21,15],[-15,6],[-19,-2],[-8,1],[-11,6],[-11,6],[-24,9],[-20,5],[-21,20],[-29,37],[-12,32],[-2,25],[2,12],[-5,14],[-11,2],[-18,-5],[-16,-1],[-14,5],[-6,8],[3,16],[8,5],[13,7],[8,7],[3,10],[0,10],[-16,24],[-8,17],[0,12],[6,19],[8,18],[10,29],[5,9],[1,15],[-10,17],[-13,15],[-14,12],[-19,11],[-16,9],[-12,6],[-28,9],[-12,0],[-19,2],[-15,-3],[-14,-1],[-10,2],[-2,0],[-1,1],[0,15],[0,12],[0,13],[0,20],[0,56],[0,64],[0,14],[0,58],[0,78],[-1,100],[0,9],[0,65],[0,36],[0,48],[0,43],[-1,60],[0,30],[0,101],[0,48],[0,35],[0,119],[-1,71],[0,36]],[[32398,49234],[-11,-12],[13,4],[12,-1],[7,-3],[11,-4],[14,8],[8,2],[7,-7],[4,-12],[4,10],[7,7],[7,-3],[6,-10],[16,4],[3,-14],[9,12],[11,1],[9,0],[6,-10],[11,-10],[9,5],[8,-3],[1,-4],[2,-7],[8,-1],[11,8],[8,0],[7,-9],[9,-3],[-12,-11],[0,-11],[9,-1],[4,-2],[10,-4],[6,-9],[7,-7],[3,-10],[4,-9],[10,6],[6,-12],[8,2],[9,4],[5,-9],[7,-7],[8,-4],[12,10],[-1,-16],[-7,-9],[18,-9],[10,1],[13,-5],[8,-2],[9,-7],[13,-9],[19,0],[7,-2],[15,-12],[8,2],[8,6],[8,-3],[7,11],[10,-7],[3,-11],[8,1],[1,-13],[8,-5],[4,-10],[20,-4],[4,-11],[8,-11],[3,11],[19,-5],[-7,-10],[3,-10],[3,-13],[6,-11],[-6,-7],[6,-6],[-1,-11],[8,-12],[10,3],[9,-3],[10,-3],[4,10],[10,-3],[8,7],[7,-4],[10,-3],[10,-1],[8,-7],[14,-3],[-5,-10],[5,-9],[8,-1],[2,-17],[7,-11],[-1,-14],[6,-7],[12,-4],[0,-15],[13,0],[-2,-10],[8,-8],[7,5],[5,-11],[8,-2],[4,-12],[9,-10],[7,-8],[12,-3],[8,-3],[3,10],[13,-5],[10,-7],[5,-9],[7,-2],[11,5],[5,-7],[10,3],[8,-6],[6,-7],[15,4],[11,8],[10,4],[10,5],[25,7],[8,-5],[18,-12],[5,10],[-5,8],[11,2],[13,11],[6,6],[8,4],[14,-2],[8,12],[7,5],[8,4],[8,1],[11,1],[6,-5],[10,-1],[10,0],[8,4],[1,13],[19,2],[0,-12],[13,2],[11,-5],[10,-6],[25,-5],[-2,-10],[8,-11],[13,1],[16,-2],[7,-3],[11,1],[0,-12],[18,-4],[15,-8],[8,3],[6,-12],[8,-1],[6,8],[4,-10],[11,8],[19,1],[8,-4],[1,-11],[10,1],[7,5],[7,-6],[21,3],[20,5],[15,-6],[10,-7],[9,-8],[7,-1],[17,-2],[4,-9],[-8,-8],[9,-9],[3,-9],[-10,-9],[11,-11],[8,-8],[4,-15],[-12,0],[-9,0],[3,-12],[12,-5],[1,-12],[10,-14],[6,-7],[12,0],[-4,-10],[0,-11],[7,-9],[9,-3],[2,-17],[6,-10],[0,-13],[-7,-16],[2,-12],[9,-4],[1,-10],[7,-10],[10,-3],[10,-2],[7,10],[1,11],[9,4],[9,-1],[5,8],[2,13],[1,17],[-1,12],[-7,5],[7,7],[-3,12],[-2,10],[11,11],[7,6],[13,0],[11,0],[9,-8],[12,-5],[7,-17],[9,-13],[-5,-12],[0,-10],[7,-16],[9,-7],[14,-4],[0,9],[-7,5],[8,3],[7,-4],[3,-11],[5,-8],[17,-2],[4,12],[9,-5],[6,-8],[9,-2],[8,2],[12,12],[8,0],[3,-10],[11,7],[15,0],[1,9],[9,-9],[6,9],[14,-6],[10,-1],[7,-11],[7,-8],[1,-13],[12,-6],[11,-11],[11,-5],[2,-10],[-4,-10],[11,-3],[3,-10],[2,-10],[9,-2],[12,-8],[8,-7],[14,2],[15,4],[8,2],[15,7],[3,14],[14,7],[8,10],[10,10],[1,1],[7,4],[12,-5],[7,-5],[8,-5],[4,-10],[9,-2],[6,-9],[12,-11],[8,0],[-2,-13],[1,-10],[9,3],[7,6],[7,-3],[3,-15],[4,-10],[11,2],[13,5],[4,-11],[5,-9],[8,1],[7,7],[9,2],[4,11],[5,11],[10,4],[8,4],[11,-4],[5,-10],[9,3],[14,13],[10,5],[9,-5],[15,0],[11,-10],[5,-7],[7,-8],[11,-18],[4,-10],[14,-1],[9,3],[7,-7],[8,4],[6,-13],[6,-9],[21,1],[8,2],[12,6],[12,9],[12,3],[7,5],[9,3],[8,6],[10,6],[7,7],[8,5],[-12,9],[-7,7],[23,11],[6,-7],[6,-7],[17,17],[15,11],[16,18],[8,3],[5,-15],[7,2],[12,8],[8,11],[7,13],[11,2],[1,14],[10,8],[9,-2],[7,-7],[-10,-16],[11,-8],[7,-5],[3,12],[7,10],[9,-17],[8,-9],[10,-2],[8,4],[14,-5],[18,-3],[7,5],[10,-3],[3,-15],[10,-3],[-1,13],[8,5],[2,-10],[20,2],[7,-4],[7,-7],[4,-10],[-2,-10],[-4,-11],[4,-10],[5,-9],[8,-4],[3,-10],[12,1],[7,-8],[-1,-11],[5,-11],[6,-2],[12,-3],[8,-5],[4,-16],[10,-5],[7,-8],[11,0],[3,-14],[13,-15],[8,-2],[-2,13],[10,-6],[15,7],[8,3],[-3,16],[4,13],[8,5],[1,1],[6,5],[9,-1],[7,9],[9,2],[7,-8],[3,-2],[8,-6],[10,11],[2,11],[6,6],[9,2],[7,5],[13,5],[22,-6],[10,-4],[7,-7],[7,-2],[13,0],[8,2],[14,-9],[11,-14],[8,-17],[8,-6],[9,-1],[12,-9],[6,-10],[5,0],[7,0],[7,-5],[6,-7],[7,-6],[6,-10],[0,-10],[10,-5],[13,-7],[6,-8],[1,-12],[7,-7],[10,-9],[13,0],[10,-6],[6,-15],[5,-17],[11,-18],[10,-12],[3,-13],[-2,-13],[11,-2],[7,-11],[2,-13],[8,-12],[2,-10],[10,1],[7,5],[11,5],[7,1],[16,-5],[10,-2],[10,4],[10,2],[9,2],[8,5],[12,-2],[10,2],[7,-5],[7,-11],[2,-11],[-10,-16],[-5,-8],[-8,-5],[-2,-10],[8,-5],[9,1],[9,1],[12,-9],[13,-2],[8,7],[8,2],[8,-6],[10,-15],[12,1],[19,-5],[10,-9],[6,-8],[6,-8],[7,-20],[8,-13],[-5,-15],[0,-15],[-8,-21],[9,-17],[11,-5],[12,-1],[10,5],[7,-7],[1,-10],[4,-10],[18,-10],[10,-3],[4,-15],[10,-3],[14,-3],[24,-4],[8,3],[13,12],[8,5],[10,-2],[8,-5],[7,5],[8,0],[7,-5],[8,-13],[10,-2],[10,3],[6,-7],[6,-8],[8,0],[11,-4],[8,4],[14,-10],[4,-9],[14,-13],[7,-4],[11,-14],[0,-25],[3,-10],[10,-13],[1,-13],[10,-15],[-4,-19],[-7,-6],[-7,5],[-9,-5],[-8,-7],[-12,-5],[-7,-6],[8,-6],[5,-9],[-3,-4],[-6,-7],[-9,-4],[-5,-15],[-4,-9],[-10,-18],[-21,-23],[-5,-8],[-4,-15],[-7,-10],[-4,-12],[-8,-16],[1,-10],[8,-8],[4,-11],[5,-8],[0,-11],[11,-4],[15,-1],[13,4],[-3,-9],[28,-17],[10,3],[9,-13],[9,-10],[10,-2],[9,0],[7,-8],[3,-9],[9,-3],[10,-4],[9,3],[6,-15],[13,-7],[13,3],[10,-5],[6,-10],[11,-6],[9,-4],[-1,-15],[15,-14],[5,-10],[-3,-17],[8,-9],[9,-2],[1,-11],[0,-10],[7,-9],[-5,-9],[11,-16],[9,-13],[12,-17],[8,-4],[-7,-13],[-3,-11],[-5,-9],[-4,-20],[7,-10],[3,-29],[2,-9],[11,-11],[10,-5],[11,-11],[6,-12],[8,-9],[0,-11],[-7,-14],[-4,-10],[-1,-14],[-6,-11],[4,-13],[-3,-16],[0,-14],[-1,-9],[3,-10],[7,-5],[-2,-14],[7,-11],[16,0],[8,-4],[2,-16],[11,1],[4,-9],[3,-12],[-1,-10],[9,-3],[5,-7],[4,-13],[2,-10],[-5,-8],[6,-8],[15,-5],[-1,-12],[-1,-11],[8,-3],[5,-14],[-9,-7],[0,-10],[8,2],[3,-19],[7,-6],[-2,-15],[4,-10],[6,-10],[1,-12],[-1,-30],[-1,-13],[-8,6],[-4,11],[-7,-11],[-3,-12],[5,-13],[9,-8],[-3,-12],[-5,-10],[-6,-9],[-2,-10],[-8,5],[-7,-5],[2,-12],[-12,-14],[-9,-2],[-5,-8],[0,-17],[6,-7],[8,7],[8,-8],[9,-5],[5,-10],[-8,-5],[-5,-13],[3,-13],[7,-6],[4,-13],[3,-16],[0,-9],[-4,-14],[-6,-10],[-1,-12],[-4,-9],[-11,-4],[-7,-20],[1,-12],[9,-11],[8,-5],[3,-15],[7,-9],[12,-18],[10,-5],[-4,10],[-5,8],[19,-12],[7,-14],[10,-7],[7,7],[17,4],[11,7],[18,-11],[11,-11],[6,-9],[13,-3],[7,-5],[9,-14],[-1,-14],[0,-14],[3,-9],[8,-7],[3,-28],[1,-11],[-4,-9],[-8,-11],[4,-14],[11,-19],[-4,-9],[4,-18],[13,-19],[3,-10],[6,-10],[6,-10],[-1,-15],[8,-8],[6,-10],[-3,-16],[-2,-9],[1,-11],[7,-7],[-1,-14],[-8,-7],[-4,-8],[-2,-5],[4,-20],[-1,-12],[5,-11],[1,-14],[-6,-8],[-3,-9],[0,-10],[5,-11],[4,-24],[-6,-13],[-6,-8],[10,-3],[8,-5],[2,-17],[14,-10],[9,-7],[17,-9],[9,-4],[16,4],[5,-7],[9,-4],[9,5],[8,6],[10,-3],[3,-20],[-1,-11],[-8,-11],[1,-10],[8,-3],[10,1],[9,-4],[16,-1],[9,-13],[8,-8],[11,-6],[15,-1],[12,0],[11,-12],[6,-12],[5,-13],[6,-9],[5,-7],[8,-4],[2,-11],[2,-11],[-4,-12],[3,-13],[6,-8],[10,-17],[0,-19],[-2,-14],[10,-19],[6,-9],[7,-14],[3,-12],[-4,-10],[2,-11],[3,-13],[1,-11],[1,-2],[6,-13],[-2,-11],[-1,-16],[3,-5],[4,-8],[2,-3]],[[37123,45166],[-73,-1],[-246,1],[-119,1],[-9,0],[-10,0],[-133,1],[-8,0],[-44,0],[-172,0],[-9,0],[-12,1],[-234,1],[-4,0],[-49,0],[-57,0],[-77,0],[-10,0],[-134,1],[-20,0],[-135,1],[-190,1],[-18,6],[-3,1],[-48,2],[-10,0],[-11,0],[-70,0],[-21,0],[-22,0],[-21,1],[-37,2],[-18,-1],[-24,1],[-117,1],[-326,3],[-44,0],[-182,0],[-94,1],[-1,-36],[-1,-253],[-2,-98],[-1,-25],[0,-6],[0,-130],[-406,3],[-15,0],[-73,1],[-41,0],[-14,0],[-26,1],[-26,0],[-252,1],[-102,1],[-18,0],[-22,0],[-1,0],[-39,0],[-37,1],[-257,2],[-66,0],[-25,1],[-137,1],[-1,-42],[1,-183],[0,-36],[0,-37],[0,-168],[0,-160],[0,-26],[0,-61],[0,-116],[0,-96],[0,-45],[0,-77],[0,-30],[0,-169],[1,-61],[-1,-88],[0,-70],[0,-62],[0,-54],[0,-42],[0,-52],[0,-136],[0,-62],[0,-25],[0,-46],[0,-65],[0,-18],[0,-73],[0,-27],[0,-16],[0,-57],[0,-10],[0,-14],[-1,-77],[0,-126],[0,-65],[0,-58],[0,-27],[0,-147],[0,-41],[0,-22],[0,-56],[0,-96],[0,-12],[-72,0],[-12,0],[-63,1],[-65,0],[-34,-1],[-40,0],[-15,0],[-1,0],[-29,-1],[-87,1],[-82,-1],[-60,0],[-24,0],[-4,0],[-54,-1],[-1,0],[-48,0],[-46,0],[-3,0],[-64,-1],[-148,-1],[-17,0],[-38,0],[-80,0],[-34,0],[-66,0],[-11,1],[-181,-1],[-65,-1],[-38,0],[-147,-2],[-15,0],[-60,-1],[0,-94],[0,-18],[0,-60],[0,-12],[0,-30],[0,-34],[0,-46],[0,-16],[0,-52],[0,-315],[-1,-176],[0,-30],[1,-11],[0,-32],[0,-45],[0,-222],[0,-175],[0,-30],[0,-1],[0,-24],[0,-2],[0,-57],[1,-191],[-1,-318],[1,-42],[0,-34],[0,-95]],[[31046,39533],[-46,39],[-144,126],[-53,47],[-9,8],[-188,165],[-282,245],[-45,40],[-10,10],[-26,22],[-174,152],[-2,2],[-22,19],[-23,20],[-180,156],[-93,81],[-2,2],[-36,31],[-14,13],[-46,39],[-106,91],[-14,11],[-9,8],[-38,33],[-96,84],[-49,43],[-64,56],[-76,67],[-114,99],[-117,103],[-47,40],[-46,40],[-71,61],[-9,8],[-61,53],[-37,33],[-17,15],[-31,27],[-29,25],[-7,6],[-56,49],[-33,28],[-41,35],[-42,37],[-113,98],[-68,58],[-12,11],[-13,11],[-11,9],[-50,44],[-82,71],[-93,80],[-11,9],[-31,27],[-18,16],[-75,65],[-46,39],[-36,32],[-15,13],[-22,19],[-109,95],[-56,48],[-2,2],[-9,8],[-107,93],[-30,26],[-12,10],[-22,19],[-104,89],[-10,9],[-166,144],[-28,24],[-12,11],[-81,69],[-28,25],[-8,6],[-103,88],[-64,56],[-77,66],[-39,34],[-1,1],[-16,13],[-18,16],[-86,74],[-56,49],[-12,9],[-7,7],[-29,24],[-21,19],[-14,12],[-39,33],[-57,50],[-28,24],[-35,29],[-29,29],[-7,6],[-7,8],[-15,12],[-16,14],[-157,134],[-43,37],[-60,51],[-26,22],[-43,37],[-14,11],[-66,56],[-42,37],[-14,11],[-33,29],[-90,78],[-21,17],[-140,121],[-22,18],[0,1],[-61,52],[-63,53],[-16,13],[-2,1],[-35,31],[-22,20],[-14,11],[-11,10],[-16,12],[-10,13],[-36,30],[-10,9],[-63,52],[-52,43],[-10,9],[-1,1],[-23,20],[-7,6],[-71,61],[-45,39],[-74,63],[-54,46],[-31,26],[-59,51],[-53,46],[-175,151]],[[24400,45284],[-163,141],[-27,23],[-133,114],[-73,62],[-7,7],[-58,47],[-36,31],[-12,10],[-94,81],[-93,80],[-62,53],[-23,20],[-19,17],[-1,1],[-119,102],[-105,87],[-80,66]],[[79196,48170],[-10,-5],[-10,-4],[-20,-8],[-11,-5],[-9,-4],[-10,-6],[-11,-6],[-18,-10],[-32,-19],[-12,-7],[-18,-10],[-8,-6],[-9,-8],[-21,-19],[-7,-6],[-11,-7],[-10,-8],[-30,-22],[-10,-8],[-8,-6],[-10,-7],[-23,-17],[-8,-5],[-17,-10],[-15,-10],[-30,-18],[-27,-17],[-10,-6],[-8,-5],[-14,-8],[-18,-11],[-9,-6],[-10,-7],[-10,-6],[-10,-7],[-10,-8],[-30,-24],[-10,-7],[-20,-16],[-9,-7],[-12,-8],[-34,-23],[-9,-6],[-9,-6],[-7,-5],[-10,-8],[-10,-8],[-17,-13],[-16,-13],[-19,-15],[-8,-7],[-29,-26],[-31,-30],[-10,-10],[-17,-16],[-11,-11],[-6,-8],[-10,-18],[-5,-10],[-5,-10],[-10,-14],[-6,-8],[-6,-8],[-19,-24],[-12,-16],[-15,-19],[-6,-10],[-4,-12],[-6,-41],[-3,-17],[-2,-14],[-3,-10],[-5,-11],[-8,-11],[-7,-8],[-7,-8],[-34,-35],[-17,-16],[-14,-14],[-8,-9],[-25,-25],[-7,-6],[-10,-13],[-16,-26],[-7,-11],[-9,-16],[-6,-18],[-5,-16],[-8,-27],[-5,-16],[-4,-12],[-14,-33],[-10,-22],[-4,-12],[-2,-4],[-9,-20],[-12,-27],[-5,-13],[-8,-12],[-29,-38],[-6,-8],[-27,-46],[-7,-11],[-7,-11],[-4,-9],[-8,-22],[-7,-19],[-8,-22],[-8,-22],[-4,-10],[-7,-21],[-8,-23],[-11,-30],[-5,-13],[-3,-11],[-4,-14],[-3,-16],[-3,-12],[-3,-11],[-3,-14],[-2,-10],[-2,-10],[-4,-13],[-5,-13],[-12,-18],[-11,-15],[-7,-10],[-6,-8],[-13,-18],[-10,-13],[-7,-12],[-23,-37],[-18,-29],[-14,-23],[-6,-11],[-4,-9],[-6,-14],[-6,-11],[-16,-35],[-4,-8],[-18,-30],[-21,-34],[-7,-12],[-7,-10],[-7,-11],[-5,-11],[-7,-15],[-5,-11],[-7,-15],[-3,-8],[-4,-9],[-2,-4],[-3,-7],[-5,-10],[-6,-5],[-6,-5],[-14,-7],[-10,-9],[-7,-3],[-21,-12],[-1,0],[-14,-8],[-8,-5],[-15,-8],[-48,-26],[-7,-4],[-90,-45],[-11,-6],[-67,-37],[-7,-4],[-16,-10],[-25,-13],[-19,-10],[-19,-11],[-18,-9],[-14,-9],[-13,-6],[-16,-9],[-53,-29],[-13,-7],[-1,-1],[-12,-7],[-32,-17],[-15,-8],[-48,-27],[-61,-34],[-23,-12],[-50,-27],[0,-1],[-25,-13],[-19,-11],[-15,-8]],[[76709,45559],[-1,17],[-2,10],[-5,12],[-7,16],[-9,15],[-8,10],[-11,9],[-14,9],[-18,11],[-17,9],[-12,5],[-17,7],[-14,8],[-11,7],[-11,8],[-13,10],[-14,11],[-14,6],[-15,6],[-8,11],[-1,11],[1,9],[1,10],[3,12],[1,18],[0,10],[-2,13],[-7,16],[-7,10],[-9,7],[-16,3],[-12,2],[-22,1],[-10,1],[-8,-1],[-23,-3],[-22,-3],[-16,-2],[-14,2],[-11,5],[-14,14]],[[76300,45891],[-6,12],[-11,13],[-11,11],[-14,13],[-11,6],[-17,23],[-12,14],[-6,9],[4,9],[4,7],[11,14],[8,10],[6,10],[5,9],[8,10],[10,13],[8,3],[12,-3],[9,-2],[15,-3],[9,-1],[14,1],[7,5],[11,10],[7,7],[7,10],[3,12],[2,15],[0,15],[-1,12],[-10,15],[-9,9],[-10,12],[-7,9],[-6,8],[-2,13],[-10,20],[-10,15],[-11,25],[-7,38],[-6,20],[-5,14],[-6,8],[-13,8],[-10,3],[-8,1],[-11,1],[-9,3],[-12,3],[-13,-8],[-12,-16],[-10,-8],[-13,-7],[-9,-1],[-10,-1],[-16,3],[-8,4],[-7,7],[-11,15],[-6,16],[-5,24],[2,10],[6,13],[5,10],[10,13],[9,9],[8,5],[11,5],[13,8],[18,13],[7,7],[8,11],[5,34],[-1,35],[-7,30],[-8,35],[-15,41],[-10,23],[-20,31],[-12,18],[-20,18],[-22,15],[-3,1],[-24,10],[-31,9],[-15,4],[-2,2],[-8,9],[-17,7],[-31,14],[-16,12],[-2,11],[5,21],[5,12],[1,12],[-9,22],[-8,6],[-26,-3],[-18,2],[-12,7],[-6,11],[-5,18],[-16,48],[-12,20],[-16,20],[-14,11],[-27,23],[-17,25],[-10,20],[-2,4],[-3,10],[-1,11],[1,12],[1,11],[-3,16],[-1,16],[0,15],[3,23],[4,9],[11,12],[23,4],[23,1],[10,0],[9,-1],[11,7],[2,9],[-1,14],[-3,10],[-6,12],[-10,13],[-8,8],[-9,1],[-22,12],[-11,7],[-14,12],[-6,8],[-9,22],[-6,23],[-2,10],[5,11],[10,-1],[19,-10],[10,-5],[12,-5],[13,-1],[9,0],[9,5],[7,6],[6,10],[4,13],[2,10],[-1,17],[-3,12],[-8,18],[-15,13],[-19,10],[-11,3],[-11,3],[-14,0],[-19,-3],[-14,-2],[-13,-5],[-21,-10],[-24,-14],[-26,-18],[-11,-11],[-10,-18],[-10,-13],[-9,-10],[-11,-7],[-8,-1],[-22,0],[-24,7],[-23,5],[-13,6],[-12,8],[-14,8],[-12,11],[-6,11],[-4,11],[-1,17],[10,21],[14,16],[6,8],[5,10],[3,8],[-1,14],[-4,9],[-6,10],[-10,3],[-27,-13],[-26,-4],[-15,-2],[-10,3],[-9,5],[-9,13],[-8,12],[-8,13],[-7,9],[-18,15],[-10,12],[-13,11],[-13,12],[-10,11],[-9,18],[0,15],[5,22],[5,24],[2,16],[3,28],[1,17],[0,13],[-4,19],[-4,11],[-7,13],[-8,14],[-6,12],[-5,15],[-1,9],[-2,11],[-6,13],[-16,16],[-10,8],[-16,-1],[-16,1],[-12,8],[-7,10],[-6,15],[-3,14],[-2,30],[2,21],[3,14],[4,10],[8,9],[25,12],[7,4],[28,18],[12,9],[6,6],[7,11],[3,12],[4,23],[4,15],[4,20],[0,10],[7,13],[11,5],[9,0],[10,-2],[8,0],[8,1],[9,3],[9,8],[8,16],[3,9],[2,10],[2,16],[-3,14],[-2,14],[-1,12],[-6,12],[-15,12],[-10,7],[-9,6],[-9,3],[-11,2],[-5,6],[-11,-4],[-20,-10],[-19,-11],[-12,-11],[-15,-12],[-9,-6],[-14,1],[-9,2],[-10,18],[-6,17],[-5,30],[-2,13],[0,1],[-3,20],[-2,17],[-2,26],[-2,13],[-3,11],[2,18],[16,12],[10,14],[5,17],[1,9],[-2,13],[-4,8],[-16,4],[-17,3],[-11,1],[-9,3],[-9,10],[-7,17],[-1,11],[5,23],[20,19],[18,8],[16,9],[12,12],[13,14],[12,10],[8,19],[2,20],[-7,14],[-9,11],[-13,4],[-13,0],[-11,-2],[-10,-2],[-9,-6],[-16,-4],[-9,-3],[-30,-2],[-11,5],[-8,9],[-6,15],[-5,11],[1,10],[2,25],[-1,15],[1,23],[-1,15],[-13,19],[-11,6],[-11,6],[-8,4],[-11,2],[-12,0],[-15,-4],[-11,-9],[-14,-10],[-13,-11],[-15,-12],[-14,-9],[-17,-5],[-14,-5],[-12,-2],[-10,1],[-12,2],[-13,3],[-16,4],[-11,7],[-7,8],[-6,14],[-1,16],[4,22],[5,18],[6,15],[6,10],[7,13],[7,10],[11,9],[13,12],[7,9],[7,9],[6,8],[10,10],[2,11],[-7,13],[-10,17],[-8,12],[-9,15],[-10,16],[-13,17],[-17,14],[-17,14],[-16,11],[-15,14],[-14,14],[-21,20],[-6,7],[-2,12],[6,18],[5,10],[3,11]],[[72885,48287],[-30,-18],[-9,-6],[-79,-50],[-25,-15],[-66,-41],[-63,-40],[-10,-6],[-24,-15],[-73,-45],[-1,-1],[-39,-26],[-34,-21],[-36,-22],[-35,-22],[-19,-11],[-109,-68],[0,-1],[-103,-63],[-57,-36],[-19,-12],[-13,-8],[-28,-17],[-47,-29],[-41,-26],[-16,-10],[-24,-14],[-1,-1],[-10,-7],[-41,-25],[-14,-8],[-12,-8],[-72,-45],[-71,-44],[-15,-9],[-72,-45],[-55,-34],[-8,-5],[-24,-18],[-43,-34],[-36,-107],[-5,-17],[-2,-5],[-3,-10],[-34,-101],[-7,-21],[-7,-24],[-10,-29],[-5,-14],[-55,-159],[-4,-10],[-2,-9],[-61,-175],[-3,-7],[-29,-84],[-13,-41],[-3,-9],[-10,-30],[-17,-55],[-4,-12],[-16,-49],[-24,-74],[-30,-92],[-8,-25],[-18,-57],[-6,-15],[-2,-9],[-16,-47]],[[71017,46094],[-7,4],[-42,19],[-42,19],[-11,5],[-15,8],[-31,14],[-77,35],[-40,18],[-49,23],[-17,9],[-28,13],[-85,40],[-11,8],[-24,11],[-1,1],[-8,4],[-40,18],[-26,13],[-1,0],[-83,39],[-24,11],[-100,47],[-11,5],[-10,5],[-7,3],[-16,8],[-9,4],[-16,8],[-7,3],[-2,1],[-9,4],[-10,5],[-2,2],[-9,3],[-9,4],[-8,4],[-9,4],[-8,4],[-8,4],[-19,9],[-15,7],[-39,17],[-79,38],[-39,18],[-14,7],[-81,38],[-78,36],[-130,61],[-79,37],[-21,10],[-38,18],[-57,27],[-70,33],[-37,17],[-13,6],[-9,4],[-50,24],[-17,8],[-30,14],[-16,7],[-42,20],[-36,17],[-15,7],[-29,14],[-30,14],[-26,12],[-61,28],[-5,3],[-77,36],[-15,7],[-80,38],[-52,24],[-31,15],[-13,5],[-3,1],[-104,26],[-82,19],[-9,2],[-28,7],[-36,9],[-40,10],[-13,3],[-41,11],[-37,9],[-36,8],[-25,7],[-34,8],[-18,4],[-104,26],[-8,2],[-21,5],[-20,5],[-19,5],[-26,6],[-24,6],[-28,7],[-30,8],[-80,20],[-54,13],[-34,11],[-10,2],[-86,20],[-15,4],[-21,3],[-15,2],[-21,3],[-10,2],[-46,7],[-66,10],[-13,1],[-15,2],[-28,4],[-39,6],[-2,0],[-25,4],[-18,3],[-17,3],[-18,2],[-23,4],[-19,3],[-11,2],[-16,2],[-29,5],[-32,5]],[[67113,47537],[-11,31],[-82,190],[-18,35],[-13,26],[-17,35],[-20,39],[-21,43],[-15,30],[-28,52],[-30,55],[-8,15],[-24,45],[-29,54],[-13,24],[-28,49],[-13,28],[-19,36],[-9,16],[-14,24],[-5,8],[-36,62],[-8,14],[-14,24],[-61,104],[-18,31],[-5,9],[-24,41],[-13,23],[-37,64]],[[98468,41329],[1,-3],[-25,1],[-11,1],[-21,2],[-9,0],[-248,-5],[-36,1],[-73,-1],[-30,-1],[-9,0],[-9,0],[-16,0],[-131,0],[-4,0],[-200,-2],[-7,0],[-30,0],[-3,-1],[-136,-1],[-67,0],[-26,-1],[-23,0],[-133,-2],[-17,0],[-129,-2],[-4,0],[-12,0],[-8,0],[-48,-1]],[[97004,41314],[1,71],[-1,26],[5,53],[0,4],[1,11],[1,17],[3,40],[5,59],[3,46],[3,95],[1,14],[1,12],[1,13],[18,315],[7,141],[2,37],[7,151],[1,17],[1,19],[1,22],[5,80],[2,56],[4,71],[1,38],[5,100],[1,25],[3,46],[6,135],[1,31],[5,91],[8,158],[1,19],[1,22],[0,15],[5,92],[1,17],[1,29],[1,20],[3,60],[2,33],[4,61],[1,53],[5,98],[6,122],[4,78],[1,5],[0,13],[3,55],[0,13],[1,13],[3,78],[1,10],[4,89],[4,77],[2,49],[1,22],[3,52],[7,146],[1,34],[2,39],[1,23],[0,3],[2,35],[1,18],[2,35],[2,41],[0,25],[5,89],[2,51],[2,32],[3,53],[1,30],[0,3],[3,58],[3,50],[1,28],[2,45],[0,10],[1,15],[0,3],[5,123],[0,25],[3,58],[1,40],[1,35],[1,36],[2,42],[5,138],[1,12],[0,1],[1,31],[1,12],[1,34],[0,3],[0,13],[2,49],[1,53],[2,98],[0,10],[1,13],[1,46],[2,47],[2,58],[0,53],[1,42],[1,1],[2,109],[1,47],[1,20],[0,23],[1,47],[2,62],[0,14],[1,39],[0,11],[1,18],[3,102],[1,16],[1,35],[3,118],[4,134],[3,150],[0,16],[1,20],[0,31],[3,102],[0,23],[0,1],[1,39],[1,20],[0,22],[2,57],[1,44],[3,159],[-21,125],[-7,34],[-2,16],[-1,3],[-7,38],[-6,35],[-8,45],[-10,58],[-3,18],[-4,23],[-3,20],[-2,11],[-13,71],[-19,118],[-10,57],[-26,148],[-8,43],[-5,30],[-9,48],[-8,46],[-4,25],[-8,45],[-17,96],[-6,32],[-8,49],[-15,84],[-14,75],[-37,209],[-10,67],[-17,94],[-18,102],[-6,35],[-4,26],[-3,15],[-6,37]],[[99297,50068],[5,-7],[6,-7],[8,-8],[66,-74],[8,-3],[10,3],[11,5],[13,4],[24,3],[9,2],[8,5],[8,6],[4,9],[8,11],[7,11],[14,25],[7,10],[9,10],[9,9],[14,9],[3,2],[8,4],[5,3],[6,4],[6,4],[7,5],[4,4],[6,5],[7,5],[5,3],[9,5],[7,3],[11,5],[16,7],[15,7],[10,1],[5,6],[12,2],[3,-1],[11,-9],[8,-10],[6,-6],[10,-4],[12,-3],[3,0],[7,1],[3,1],[11,3],[7,5],[3,2],[12,9],[9,3],[7,-2],[2,-2],[6,-7],[5,-11],[2,-6],[2,-5],[2,-9],[1,-3],[2,-6],[-1,-7],[1,-7],[-2,-7],[-3,-19],[-5,-11],[-3,-3],[-2,-4],[-9,-6],[-11,-8],[-11,-2],[-39,-9],[-3,-6],[0,-3],[4,-18],[4,-7],[2,-3],[4,-3],[2,-3],[3,-6],[9,-10],[8,-16],[11,-25],[2,-3],[1,-7],[-1,-7],[-1,-3],[-5,-6],[-4,-3],[-5,-4],[-12,-8],[-12,-2],[-36,5],[-10,-3],[-7,-4],[0,-20],[0,-25],[1,-24],[1,-3],[9,-23],[3,-8],[5,-14],[3,-16],[3,-19],[3,-20],[2,-14],[3,-9],[5,-9],[7,-8],[4,-8],[14,-23],[17,-29],[1,-5],[1,-11],[-1,-4],[-1,-8],[-1,-9],[-6,-47],[-2,-25],[-4,-10],[-7,-5],[-17,-7],[-11,-5],[-5,-4],[-6,-6],[-22,-49],[-4,-16],[1,-10],[3,-19],[-2,-10],[-10,-5],[-8,-2],[-10,0],[-14,-6],[-13,-3],[-17,-11],[-2,-4],[-5,7],[-7,1],[-7,0],[-3,-1],[-8,-4],[-7,-11],[-2,-13],[5,-11],[9,-6],[7,-5],[7,-3],[2,-1],[5,-3],[6,-5],[4,-3],[3,-11],[2,-9],[9,-12],[11,-4],[8,5],[10,9],[7,11],[5,13],[9,-2],[4,-9],[2,-13],[-10,-12],[-10,-12],[-8,-26],[-1,-12],[2,-18],[7,-12],[11,1],[6,0],[23,0],[13,-1],[8,-1],[3,0],[8,-2],[8,-1],[6,-2],[7,-2],[11,-4],[11,-8],[8,-5],[10,-7],[10,-6],[8,1],[8,0],[11,0],[10,-1],[4,-11],[-3,-12],[-5,-11],[-3,-6],[-1,-7],[7,-8],[7,-8],[6,-5],[8,-6],[6,-2],[9,-2],[15,1],[9,-6],[3,-9],[1,-3],[0,-2],[4,-10],[0,-10],[-1,-5],[-8,-22],[-8,-18],[-4,-2],[-5,-2],[-4,-1],[-42,5],[-14,-3],[-8,-6],[-7,-9],[4,-15],[3,-8],[4,-10],[6,-9],[8,-11],[8,-10],[6,-7],[6,-5],[16,-10],[28,-8],[7,-7],[5,-8],[-2,-10],[-6,-8],[-19,-4],[-13,-2],[-6,-9],[1,-12],[11,-13],[12,-11],[12,-4],[15,-1],[9,-4],[17,-6],[16,-6],[6,-3],[14,-4],[8,-5],[8,-13],[-1,-12],[-8,-12],[-21,-15],[-22,-16],[-6,-4],[-28,-26],[-23,-22],[-6,-1],[-6,-2],[-24,2],[-16,2],[-13,2],[-2,-1],[-10,-6],[-8,-6],[-11,-21],[-14,-29],[-5,-15],[-3,-8],[-3,-12],[-2,-5],[-4,-10],[-2,-1],[-8,-1],[-10,-2],[-10,6],[-21,13],[-3,1],[-11,3],[-14,-3],[-9,-3],[-11,-11],[-5,-10],[-18,-31],[-9,-1],[-38,34],[-10,10],[-7,11],[-5,14],[-5,8],[-7,9],[-13,-6],[-9,-8],[-6,-7],[-16,-14],[-5,-7],[-6,-12],[-1,-26],[-7,-12],[-5,-8],[-3,-5],[-20,-15],[-3,-8],[1,-7],[2,-7],[5,-10],[3,-6],[7,-11],[3,-7],[3,-7],[12,-18],[9,-6],[2,-1],[11,-3],[11,-1],[11,1],[7,0],[3,-1],[6,-1],[2,-1],[4,-5],[3,-4],[0,-9],[-1,-5],[-1,-6],[-8,-10],[-2,-10],[-1,-9],[-1,-9],[-1,-7],[-2,-7],[-3,-11],[0,-13],[-5,-8],[-5,-12],[-8,-7],[-6,-6],[-8,-4],[-12,-5],[-11,-10],[0,-14],[4,-9],[8,-7],[3,-2],[25,-10],[3,-1],[6,-1],[7,0],[10,2],[11,6],[13,10],[4,2],[4,1],[7,-1],[1,0],[7,-3],[3,-1],[21,-20],[9,-4],[6,-6],[10,-3],[11,1],[9,0],[5,-1],[5,-6],[2,-3],[8,-14],[3,-11],[1,-14],[1,-18],[1,-14],[5,-10],[24,-8],[13,-2],[5,0],[11,0],[19,5],[21,9],[7,1],[4,0],[3,0],[4,-1],[3,-8],[2,-5],[1,-9],[0,-10],[-2,-8],[-2,-5],[-7,-12],[-3,-12],[2,-16],[3,-13],[8,-28],[5,-15],[2,-4],[5,-8],[8,-8],[8,-8],[6,-7],[4,-13],[0,-3],[-11,-18],[-2,-10],[-2,-13],[3,-10],[6,-27],[-5,-7],[-2,-4],[-15,-6],[-2,-3],[-12,-24],[-1,-3],[-8,-4],[-11,2],[-14,-4],[-6,-3],[-10,-5],[-15,-14],[-10,-7],[-4,-2],[-4,-1],[-7,1],[-2,4],[4,23],[0,4],[3,6],[4,13],[0,4],[-5,5],[-3,2],[-5,2],[-6,2],[-5,0],[-5,-2],[-6,-3],[-2,-1],[-12,-12],[-8,-13],[-8,-21],[-3,-10],[-3,-7],[-7,-14],[-5,-8],[-6,-7],[-6,-5],[-9,-6],[-10,-9],[-1,-1],[-9,-10],[-3,-10],[1,-10],[6,-6],[12,-10],[14,-6],[2,-2],[7,-5],[5,-9],[-1,-5],[-3,-13],[-4,-11],[-2,-8],[1,-11],[4,-10],[9,-5],[3,-1],[10,-2],[12,-2],[1,-11],[-2,-10],[-9,-5],[-11,-3],[-7,-2],[-19,-2],[-22,2],[-5,-1],[-7,-3],[-4,-1],[-13,-5],[-9,0],[-14,-4],[-7,-2],[-6,-2],[-6,-4],[-7,-7],[-5,-15],[-1,-3],[-5,-7],[-6,-9],[-4,-6],[-9,-7],[-7,-10],[-5,-9],[-4,-19],[5,-22],[5,-9],[7,-18],[1,-10],[3,-12],[3,-10],[7,-10],[5,-2],[7,-1],[5,0],[4,2],[5,2],[7,4],[3,1],[7,-1],[2,-1],[7,-6],[1,-10],[0,-12],[-11,-19],[3,-14],[4,-4],[6,-1],[13,7],[9,5],[6,3],[4,-10],[-10,-38],[-11,-26],[-6,-25],[2,-9],[17,-26],[13,-12],[1,-4],[2,-3],[-1,-10],[-38,-44],[-11,-10],[-13,-5],[-10,-3],[-8,-4],[-4,-12],[6,-9],[17,-9],[17,-2],[28,-10],[12,-9],[17,-21],[11,-17],[7,-8],[3,-12],[-5,-18],[-13,-11],[-4,-5],[-10,-14],[7,-14],[16,-14],[0,-4],[3,-3],[-6,-13],[-14,-11],[-11,-10],[-18,-12],[-11,-5],[-11,-10],[-6,-9],[-3,-10],[6,-27],[12,-17],[8,-11],[0,-4],[-1,-10],[0,-4],[-3,-9],[-12,-14],[-20,-16],[-26,-14],[-24,-5],[-17,-7],[-29,3],[-16,9],[-13,1],[-9,-9],[-1,-11],[-4,-17],[-1,-23],[6,-25],[16,-23],[-1,-10],[-4,-11],[-14,-11],[-23,-3],[-15,-9],[2,-18],[10,-16],[3,-3],[18,-17],[4,-7],[1,-2],[4,-7],[-1,-3],[1,-4],[-7,-9],[-21,-1],[-12,3],[-10,-2],[-8,-6],[-9,-7],[-4,-11],[-7,-27],[6,-25],[9,-22],[-1,-9],[-1,-10],[-7,-12],[-18,-9],[-22,-3],[-19,-6],[-12,-12],[-12,-4],[-5,3],[-8,23],[1,12],[-4,-1],[-3,0],[-2,-4],[-2,-14],[3,-11],[2,-10],[-2,-9],[-4,-9],[-7,-5],[-13,-2],[-9,2],[-6,16],[-4,9],[-7,6],[-9,-8],[-3,-12],[-3,-18],[0,-4],[2,-8],[5,-6],[6,-5],[3,-2],[4,-3],[2,-6],[2,-9],[6,-11],[8,-9],[5,-10],[6,-10],[1,-10],[-5,-9],[-8,-8],[-4,-1],[-23,-4],[-13,-4],[-3,-1],[-16,-8],[-11,-12],[1,-15],[1,-1],[9,-17],[13,-8],[15,-5],[9,-4],[7,-10],[6,-17],[7,-16],[6,-9],[2,-10],[-4,-8],[-8,-4],[-10,-1],[-13,5],[-12,6],[-10,-3],[-2,-12],[7,-4],[8,-5],[11,0],[11,0],[7,0],[6,1],[6,1],[1,-16],[3,-11],[0,-3],[-2,-6],[-2,-5],[-4,-4],[-2,-2],[-9,-2],[-5,2],[-4,2],[-4,-3],[1,-6],[3,-2],[7,-3],[2,-1],[7,-3],[3,-3],[4,-2],[4,-4],[4,-5],[4,-3],[5,-3],[7,-3],[6,-2],[1,-11],[-7,-5],[-9,-7],[-4,-3],[-3,0],[-6,13],[-1,10],[-8,3],[-10,-7],[-7,-5],[-6,9],[-1,14],[-9,4],[-7,-6],[-7,-4],[-1,-6],[-1,-5],[5,-20],[2,-13],[-5,-14],[-11,-17],[-11,-16],[-3,-18],[0,-10],[-3,-10],[-2,-7],[-9,-11],[-12,-11],[-7,-7],[-2,-11],[2,-12],[9,-11],[13,-7],[3,-14],[-6,-16],[-13,-15],[-12,-18],[-11,-15],[-4,-9],[-2,-13],[-2,-11],[-1,-5],[-1,-5],[-15,-36],[-11,-19],[-16,-7],[-11,-4],[-8,-4],[-7,-17],[-10,-14],[-10,-1],[-31,6],[-13,-1],[-7,-13],[-2,-15],[-3,-16],[-10,-1],[-25,12],[-15,5],[-11,-2],[-8,-14],[-18,-43],[-11,-20],[-11,-5],[-18,4],[-16,-3],[-12,-9],[-7,-5],[-17,-19],[-1,-9],[-1,-6],[5,-23],[-4,-9],[-17,-9],[-8,-8],[0,-15],[-2,-3],[0,-6],[-12,-16],[-15,-18],[-7,-8],[-19,-10],[-10,-10],[-6,-12],[2,-14],[10,-13],[6,-11],[3,-12],[0,-1],[-2,-3],[-4,-9],[-8,-6],[-6,-4],[-7,-8],[-1,-9],[1,-9],[1,-6],[0,-8],[-5,-10],[-5,-11],[0,-12],[23,-41],[1,-4],[1,-6],[-3,-3],[-1,-6],[-17,-15],[-10,-11],[-8,-22],[-3,-3],[-12,-9],[-4,-11],[6,-5],[10,-8],[14,-3],[9,-4],[3,-2],[4,-8],[4,-14],[1,-15],[2,-6],[3,-10],[19,-28],[3,-5],[2,-5],[1,-6],[1,-42],[-7,-7],[-24,3],[-3,-1],[-4,-4],[-7,-10],[-3,-15],[0,-22],[-1,-14],[-10,-8],[-39,-3],[-5,9],[28,32],[1,11],[-4,9],[-4,7],[-13,8],[-7,5],[-2,1],[-4,2],[-8,-2],[-14,-6],[-9,-5],[-12,-5],[-12,-5],[-14,-16],[-10,-14],[-9,-4],[-10,0],[-37,5],[-6,0],[-8,-4],[-6,-7],[-3,-17],[-6,-52],[-5,-12],[-7,-7],[-12,-1],[-14,12],[-8,8],[-11,-1],[-37,-49],[-8,-9],[-1,-4],[-1,-10],[14,-25],[-1,-4],[1,-3],[-7,-9],[-3,-9],[1,-15],[19,-25],[5,-9],[3,-14],[-1,-12],[-5,-10],[-9,-11],[-20,-16],[-13,-10],[-6,-7],[-4,-13],[3,-16],[14,-28],[4,-10],[-3,-14],[-20,-13],[-10,-8],[-13,-8],[-4,-1],[-32,-10],[-3,-4],[0,-13],[13,-11],[37,-7],[6,-6],[0,-3],[-6,-28],[-3,-12],[7,-15],[14,-14],[14,-16],[11,-11],[8,-4],[14,-4],[12,0],[14,-2],[12,-8],[4,-13],[5,-14],[5,-7],[11,-8],[20,-5],[14,5],[11,11],[8,10],[9,0],[1,-12],[-8,-12],[-7,-8],[-4,-8],[5,-27],[1,-9],[-8,-5],[-4,-8],[-1,-3],[3,-9],[4,-1],[5,0],[4,1],[4,1],[4,2],[7,-4],[7,-6],[1,-5],[2,-5],[-2,-12],[-1,-5],[-5,-3],[-6,-1],[-7,0],[-4,-1],[-4,-2],[-2,-3],[-9,-18],[-16,-11],[-7,-12],[1,-3],[2,-4],[6,-2],[9,1],[13,5],[9,-4],[3,-10],[2,-4],[-2,-3],[-2,-6],[-2,-3],[-6,-4],[-6,-2],[-10,0],[-10,2],[-4,0],[-4,-2],[-2,-3],[-9,-19],[-2,-15],[9,-15],[6,-8],[6,-17],[3,-4],[19,-25],[5,-9],[4,-12],[1,-3],[-2,-6],[-2,-4],[-4,-3],[-3,-1],[-6,1],[-3,1],[-14,19],[-5,3],[-5,1],[-10,-3],[-2,-3],[-3,-9],[4,-17],[7,-10],[19,-17],[2,-3],[16,-19],[1,-4],[2,-3],[1,-11],[-3,-9],[-11,-25],[3,-11],[6,-6],[21,-10],[4,-2],[6,-9],[7,-11],[11,-9],[5,-5],[5,-11],[3,-5],[5,-7],[18,-13],[5,-9],[-1,-3],[-2,-4],[-2,-5],[-3,0],[-25,1],[-9,0],[-9,-2],[-3,-2],[-3,-5],[-1,-4],[1,-12],[10,-17],[2,-2],[15,-19],[2,-3],[1,-12],[-8,-13],[-12,-7],[-6,-4],[-6,-6],[-3,-5],[0,-5],[0,-5],[2,-2],[4,-7],[12,-5],[11,6],[15,9],[9,4],[11,0],[6,-8],[1,-3],[1,-3],[1,-31],[-3,-11],[-2,-6],[-2,-3],[-1,-4],[-5,-4],[-29,-20],[-4,-5],[-3,-7],[1,-10],[4,-6],[9,-10],[0,-4],[2,-5],[-4,-1],[0,-3],[-13,-1],[-10,2],[-18,1],[-7,4],[-6,8],[-7,11],[-7,7],[-8,-2],[-4,-15],[-5,-11],[-10,-9],[-9,-4],[-4,-10],[1,-22],[-2,-18],[0,-2],[-4,-2],[-8,-4],[-3,-1],[-3,5],[-3,28],[-2,3],[-11,17],[-7,14],[-1,3],[-2,16],[-9,2],[-9,-3],[-7,-8],[-6,-11],[-4,-15],[-1,-22],[2,-12],[8,-12],[9,-4],[11,-8],[7,-5],[-1,-3],[3,-4],[-7,-8],[-9,-1],[-12,2],[-9,-8],[-3,-15],[0,-4],[0,-6],[-3,-17],[-8,-11],[-11,-3],[-8,7],[-6,10],[-8,2],[-6,-7],[-4,-12],[-2,-18],[1,-14],[1,-11],[-4,-11],[-12,-14],[-5,-6],[-7,-9],[-2,-1],[-6,-1],[-6,0],[-6,-1],[-5,-12],[-1,-4],[-1,-9],[-1,-7],[-7,-7],[-8,-4],[-9,-4],[-1,-12],[-4,-10],[-14,2],[-5,0],[-2,0],[-12,-3],[-9,-2],[-7,-11],[0,-16],[-8,-11],[-13,-7],[-13,-3],[-7,-8],[-5,-14],[-2,-16],[5,-9],[16,3],[9,-4],[-1,-12],[-10,-6],[-8,2],[-8,1],[-6,-6],[13,-14],[8,-9],[5,-10],[3,-13],[0,-35],[1,-21],[0,-12],[-2,-15],[-1,-10],[5,-17],[-1,-10],[-3,-2],[-2,0],[-5,2],[-5,10],[-3,7],[-2,7],[-1,5],[-3,5],[-2,-2],[-4,-4],[-2,-8],[3,-17],[2,-5],[3,-9],[6,-6],[14,-5],[4,-3],[16,-16],[8,-6],[5,-8],[-2,-2],[1,-4],[-7,-2],[-15,3],[-11,-4],[-3,-8],[0,-9],[0,-4],[-2,-5],[-1,-3],[-2,-1],[-12,5],[-9,23],[-1,10],[-8,2],[-5,-11],[0,-14],[3,-9],[6,-6],[7,-6],[1,-8],[1,-4],[-18,-2],[-7,-8],[4,-8],[6,-4],[8,-3],[11,-6],[0,-5],[4,-3],[-3,-4],[-4,-2],[-9,-5],[-9,-11],[-6,-8],[-4,-3],[-5,-3],[7,-6],[7,-6],[4,-5],[5,-10],[3,-9],[-2,-1],[-4,-3],[-6,2],[-9,10],[-12,10],[-8,2],[-5,-10],[2,-9],[11,-22],[7,-6],[2,-1],[11,-2],[6,1],[6,2],[4,1],[1,-3],[3,-2],[-2,-4],[-11,-12],[-5,-6],[-8,-5],[-8,-11],[-7,-9],[-3,-2],[-7,-3],[-2,-10],[5,-9],[2,-3],[1,-2],[8,-11],[5,-2],[6,0],[14,4],[9,5],[5,9],[8,8],[10,-4],[5,-13],[-1,-15],[8,-6],[11,7],[10,3],[-1,-4],[1,-5],[-5,-7],[-3,-2],[-6,-1],[-10,-2],[-9,-3],[0,-10],[12,-11],[7,-7],[2,-3],[3,-5],[10,-6],[7,-6],[-3,-12],[7,-8],[14,-8],[0,-5],[-3,-2],[-8,-6],[-1,-6],[2,-5],[10,-1],[5,-1],[4,-3],[3,-3],[-2,-10],[-6,-20],[7,-3],[9,0],[8,-7],[3,-3],[11,-20],[7,-5],[7,-7],[-3,-9],[-12,-4],[-8,-3],[-2,-7],[2,-8],[1,-3],[6,-17],[10,-5],[6,6],[9,15],[9,2],[7,-12],[9,-5],[10,-2],[-3,-7],[-10,-10],[8,-5],[3,0],[9,-5],[10,2],[8,-6],[11,-3],[4,-2],[3,-4],[8,-7],[3,2],[4,1],[6,8],[10,3],[6,-6],[3,-22],[5,-2],[16,3],[7,5],[8,3],[4,1],[3,-3],[2,-1],[3,-8],[6,-13],[7,-5],[9,-1],[-1,13],[0,5],[7,-3],[14,-19],[0,-3],[2,-4],[-3,-8],[-3,-5],[-4,-15],[1,-3],[16,-6],[8,5],[4,10],[1,23],[9,8],[10,-3],[7,-6],[7,-8],[4,-11],[0,-4],[0,-7],[-1,-5],[-4,-18],[-4,-8],[-3,-1],[-3,-4],[-10,-3],[-8,-6],[-3,-9],[2,-13],[13,-6],[15,1],[10,-7],[-1,-12],[-9,-10],[-1,-11],[-4,-9],[-2,-14],[-5,-10],[-9,-1],[-7,5],[-9,0],[0,-3],[1,-8],[4,-3],[4,-2],[8,-1],[2,-1],[-3,-12],[-4,-15],[4,-9],[17,1],[-2,-6],[-14,-3],[-6,-7],[2,-9],[8,1],[8,3],[1,-3],[1,-3],[-2,-2],[-2,-5],[-10,-5],[4,-8],[1,-3],[3,-11],[15,-7],[9,4],[8,-4],[-5,-12],[-10,-13],[-4,-8],[-3,-11],[1,-10],[-1,-11],[-8,-12],[-11,-13],[2,-3],[1,-2],[2,-4],[2,-4],[-3,-2],[-2,-3],[-7,-2],[1,-11],[8,-1],[10,-11],[-7,0],[-8,-2],[-6,-19]],[[97004,41314],[-18,1],[-14,-1],[-53,0],[-131,-1],[-123,-1],[-82,-1],[-145,-1],[-103,0],[-70,-1],[-12,0],[-25,0],[-49,0],[-28,0],[-62,0],[-18,0],[-46,0],[-20,0],[-10,0],[-49,-1],[-3,0],[-69,0],[-60,0],[-9,0],[-10,0],[-17,-1],[-27,0],[-51,0],[-13,0],[-19,0],[-19,-1],[-101,0],[-132,0],[-5,0],[-40,-1],[-12,0]],[[95359,41305],[-5,7],[-4,10],[4,8],[7,3],[10,4],[10,1],[8,4],[6,6],[9,4],[7,5],[5,8],[3,12],[5,8],[2,11],[7,6],[4,10],[7,8],[7,3],[8,5],[11,8],[7,5],[8,1],[8,-3],[11,-3],[8,3],[5,10],[3,11],[-5,12],[-9,9],[-8,8],[-9,3],[-8,7],[-5,7],[-5,8],[-2,6],[-2,4],[-4,10],[-9,0],[3,-9],[6,-7],[-7,-4],[-11,4],[-7,-6],[1,-12],[-3,-9],[-8,2],[-7,8],[-10,1],[-8,1],[-8,0],[-8,6],[2,10],[9,3],[9,-4],[8,5],[-6,11],[-3,13],[0,9],[-7,12],[-1,10],[2,9],[3,11],[-7,6],[-8,7],[-3,9],[-7,10],[-5,8],[-6,13],[-6,7],[-3,-9],[-5,-9],[-8,0],[2,11],[-8,14],[-3,9],[9,1],[8,0],[-10,13],[-6,9],[2,9],[9,6],[-5,17],[0,12],[9,-3],[12,-12],[7,-10],[10,1],[4,8],[-3,10],[-7,10],[-3,10],[-4,10],[-5,10],[-1,9],[0,14],[-2,21],[-1,11],[-1,12],[0,10],[2,9],[7,5],[5,3],[9,5],[4,8],[0,12],[5,8],[8,2],[9,6],[11,3],[11,0],[7,4],[7,6],[8,4],[9,-2],[4,10],[-7,4],[-10,1],[-6,5],[3,12],[8,7],[6,5],[11,-10],[7,-8],[5,13],[-3,10],[-13,-5],[-8,4],[-1,10],[10,3],[7,-5],[9,3],[5,15],[2,9],[5,8],[1,11],[-6,7],[-10,1],[-13,0],[-10,7],[-7,9],[-2,14],[8,2],[10,-7],[8,-8],[8,-1],[9,4],[9,4],[6,6],[2,10],[-6,9],[-12,-1],[-6,-6],[-11,7],[0,11],[6,7],[9,10],[3,11],[8,9],[7,7],[6,6],[4,11],[2,10],[4,16],[2,13],[-4,12],[2,11],[10,3],[9,-8],[6,-5],[7,-5],[14,1],[10,6],[7,8],[6,8],[9,6],[8,3],[7,5],[6,8],[2,10],[1,22],[-2,13],[-2,8],[0,2],[-5,11],[-2,10],[0,11],[-2,15],[-8,4],[-7,-7],[0,-10],[7,-9],[8,-5],[-2,-9],[-7,-3],[-8,2],[-9,7],[-12,1],[-9,3],[5,15],[4,8],[-4,13],[-5,9],[-12,4],[-5,5],[-3,2],[-1,1],[-5,11],[-3,9],[2,10],[4,11],[-8,2],[-1,-11],[-8,2],[-8,7],[-9,3],[-8,6],[-3,10],[2,10],[-4,7],[-7,6],[0,11],[5,7],[0,9],[-10,-1],[-8,6],[6,11],[10,-1],[9,-3],[-1,10],[-8,6],[-9,3],[7,10],[3,9],[-4,10],[-9,6],[2,10],[8,2],[-8,16],[-6,11],[6,15],[0,15],[-1,17],[-4,10],[-8,0],[-6,-8],[-7,7],[-7,6],[-7,5],[-8,4],[2,9],[8,-10],[8,4],[-5,13],[0,9],[10,0],[9,11],[6,9],[-1,13],[-5,11],[-8,-1],[-10,-1],[-13,0],[-9,-1],[-7,8],[-5,11],[-6,8],[-11,11],[-10,0],[-13,-8],[-6,6],[3,14],[0,14],[-2,10],[5,8],[8,1],[8,-3],[7,4],[0,12],[-1,10],[-2,12],[-7,6],[-7,-2],[-1,-11],[-5,-9],[-16,11],[-4,10],[4,8],[12,3],[3,10],[-11,3],[-9,-1],[-7,5],[-3,10],[9,2],[7,-5],[8,2],[-1,12],[-6,6],[-5,8],[4,9],[10,-3],[19,3],[7,-1],[1,11],[-7,3],[-11,-2],[-11,0],[-3,9],[8,7],[15,6],[5,10],[-3,11],[-2,18],[1,9],[-6,10],[-14,2],[-12,4],[-7,11],[5,13],[8,3],[11,1],[10,5],[4,11],[-7,9],[-9,17],[0,13],[7,0],[14,0],[9,4],[10,12],[7,10],[9,4],[13,0],[6,9],[-4,15],[-1,15],[3,11],[1,11],[-3,12],[-3,11],[0,14],[0,8],[0,4],[1,9],[3,9],[14,-4],[4,2],[4,2],[-4,17],[2,10],[9,9],[9,8],[5,9],[3,12],[7,5],[8,1],[6,8],[-1,11],[-5,8],[-8,5],[-3,12],[10,6],[9,-11],[4,-8],[8,-1],[2,10],[4,13],[4,8],[5,9],[-7,8],[-11,-6],[-7,-6],[-8,2],[-7,8],[-5,9],[-9,2],[-12,-1],[0,4],[0,7],[6,6],[6,6],[10,5],[13,-6],[8,2],[4,10],[-6,7],[-3,11],[7,7],[12,-2],[13,0],[5,9],[-1,11],[-2,9],[1,12],[7,6],[7,9],[0,13],[6,13],[5,7],[3,9],[2,10],[3,8],[7,7],[9,6],[6,7],[6,17],[8,1],[7,-8],[6,-6],[7,-1],[11,4],[6,4],[5,11],[-12,2],[-10,5],[-6,9],[4,10],[8,3],[8,7],[3,9],[-3,16],[1,12],[2,12],[0,11],[0,11],[-4,11],[-7,6],[-13,4],[-10,7],[1,11],[4,9],[4,7],[2,13],[-3,8],[6,8],[6,-6],[10,-3],[8,3],[6,8],[1,11],[0,13],[5,9],[9,8],[10,9],[3,10],[2,12],[5,9],[8,4],[8,5],[3,9],[-1,10],[-11,8],[-7,5],[0,12],[15,7]],[[95709,43972],[12,5],[8,8],[5,8],[4,20],[6,14],[-4,17],[-9,2],[-9,-1],[-13,0],[-8,4],[-8,13],[5,11],[9,8],[9,10],[2,11],[-1,10],[-5,8],[-11,10],[-16,10],[-16,20],[-8,8],[-3,3],[-11,-1],[-19,-7],[-11,0],[-9,2],[-9,12],[2,13],[4,24],[-6,9],[-9,14],[-5,8],[1,18],[10,11],[-1,14],[-7,8],[-10,10],[-9,13],[-8,11],[-11,7],[-8,10],[-2,12],[6,10],[15,13],[11,-3],[7,-4],[7,-7],[10,0],[4,13],[-8,7],[-11,16],[4,16],[-2,6],[-3,8],[-2,0],[-29,2],[-13,3],[-9,1],[0,16],[6,6],[10,10],[2,12],[1,35],[10,4],[2,1],[20,-5],[10,0],[8,9],[-1,10],[-4,19],[1,10],[5,4],[3,3],[18,6],[9,17],[-8,9],[-13,10],[-5,11],[3,15],[7,7],[8,1],[12,-7],[9,-1],[11,5],[3,27],[4,15],[-6,14],[-10,9],[-8,8],[2,13],[3,2],[9,6],[15,-1],[26,-7],[14,2],[13,11],[8,20],[1,14],[-6,9],[-20,10],[-15,4],[-12,11],[0,11],[5,10],[12,6],[13,2],[15,11],[7,7],[14,2],[30,-1],[7,5],[2,14],[7,17],[20,-2],[10,6],[-4,14],[-1,15],[8,7],[9,0],[13,-2],[7,1],[5,8],[-6,7],[-8,8],[-8,9],[4,12],[12,8],[8,6],[10,16],[3,16],[0,14],[-4,16],[-7,17],[-7,14],[-3,3],[-7,10],[-6,-8],[-4,-14],[-5,-8],[-11,0],[-7,9],[-4,10],[-2,20],[5,9],[11,6],[8,-2],[13,-14],[9,-2],[4,8],[-1,14],[-6,10],[-4,14],[-8,22],[-1,3],[-9,9],[-10,3],[-10,5],[-6,5],[-6,7],[-9,12],[-15,18],[-3,13],[-8,7],[-8,0],[-20,0],[-15,9],[-9,14],[-6,15],[-8,6],[-10,-5],[-8,-10],[-5,-9],[-5,-16],[-7,-13],[-3,-12],[10,-11],[10,2],[5,7],[11,8],[9,-1],[2,-11],[-4,-17],[4,-12],[1,-11],[-8,0],[-12,14],[-7,6],[-9,4],[-12,3],[-9,1],[-9,-4],[-10,-9],[-12,-10],[-9,3],[-4,7],[-1,2],[1,11],[5,8],[9,10],[5,10],[4,13],[4,20],[4,10],[0,11],[-8,10],[-12,6],[-13,7],[-4,2],[-6,11],[-8,16],[-4,14],[-4,18],[-5,20],[-4,25],[1,16],[7,12],[7,9],[1,11],[-6,10],[-10,5],[-10,3],[-5,2],[-23,5],[-8,-2],[-17,-8],[-9,-3],[-11,-1],[-13,1],[-29,5],[-10,-3],[-9,-4],[-11,-8],[-11,-9],[-15,-12],[-9,3],[-9,1],[-12,-1],[-12,-4],[-7,-5],[-10,-9],[-10,-1],[-10,9],[-5,10],[1,17],[6,10],[2,2],[7,9],[4,11],[-3,17],[-3,14],[4,13],[3,18],[4,19],[-4,28],[-6,8],[-8,5],[-16,12],[-14,14],[-5,10],[-8,14],[-7,10],[-11,13],[-29,27],[-3,10],[5,8],[8,9],[23,9],[4,2],[20,11],[-3,11],[-2,4],[-5,14],[-2,26],[-4,9],[-13,12],[-25,21],[-10,9],[-2,15],[4,10],[10,12],[7,9],[3,13],[5,25],[13,17],[34,41],[0,10],[-10,41],[-7,10],[-12,-4],[-8,-3],[-9,0],[-14,5],[-11,11],[-9,13],[-4,6],[-2,3],[-3,14],[5,9],[8,6],[14,12],[15,18],[10,18],[2,11],[-4,12],[-7,7],[-10,11],[-11,25],[-10,3],[-10,2],[-10,3],[-9,6],[-4,11],[3,8],[6,7],[7,8],[7,14],[2,10],[-3,8],[0,3],[-6,15],[-3,8],[-4,9],[-4,9],[-6,7],[-6,7],[-23,21],[-13,12],[-13,14],[-9,5],[-10,-1],[-19,-6],[-16,-4],[-12,0],[-9,3],[-14,5],[-16,0],[-13,7],[-14,16],[-15,7],[-16,1],[-20,-1],[-14,2],[-15,5],[-11,6],[-7,6],[-1,4],[-7,14],[-1,2],[1,1],[7,4],[12,11],[0,14],[-7,9],[-12,5],[-5,7],[0,10],[3,15],[2,12],[1,3],[5,10],[11,5],[8,7],[3,13],[-4,12],[-7,-7],[-8,-10],[-9,-3],[-8,4],[-10,7],[-7,11],[0,18],[1,13],[-8,5],[-13,1],[-11,5],[-3,9],[3,14],[2,16],[1,12],[2,14],[7,3],[12,-3],[9,-5],[10,-3],[9,-4],[9,-4],[11,0],[8,11],[-7,8],[-11,2],[-14,11],[5,12],[11,8],[6,15],[-9,6],[-26,2],[-11,3],[-3,12],[4,11],[5,9],[11,3],[10,-5],[9,-4],[4,10],[-8,9],[-19,9],[-16,2],[-36,4],[-5,9],[-1,11],[-3,12],[-14,9],[1,12],[8,6],[6,10],[-2,9],[-9,11],[-9,10],[-11,14],[-9,16],[-6,17],[-1,3],[-2,7],[0,11],[1,12],[6,20],[3,13],[-4,10],[-7,7],[-12,6],[-7,8],[3,11],[11,1],[10,1],[12,-3],[14,-3],[9,1],[-1,11],[-7,7],[-8,14],[2,15],[7,11],[7,4],[14,6],[9,5],[-3,9],[-17,0],[-13,-2],[-9,1],[-16,9],[-9,6],[0,12],[8,2],[17,3],[10,7],[4,9],[-1,10],[-4,8],[-5,8],[-6,6],[-10,6],[-9,4],[-14,6],[-11,7],[-5,4],[-5,4],[-8,10],[-11,17],[-1,12],[8,7],[16,1],[8,0],[9,8],[2,11],[-4,11],[-9,9],[-8,6],[-9,8],[-13,9],[-12,7],[-6,6],[-7,14],[-11,5],[-14,4],[-12,2],[-8,2],[-7,5],[-2,11],[3,10],[5,11],[3,13],[2,11],[1,6],[1,5],[3,9],[10,15],[8,3],[9,-4],[10,-6],[10,-2],[3,9],[0,14],[9,12],[6,13],[3,13],[-3,15],[-1,3],[-2,2],[-9,11],[-6,12],[-5,8],[-1,11],[12,7],[8,6],[5,9],[3,5],[8,11],[3,1],[7,4],[17,5],[3,10],[-7,4],[-12,0],[-18,1],[-7,2],[-10,8],[-7,15],[3,8],[12,4],[9,3],[7,8],[-6,7],[-9,6],[-11,7],[-11,4],[-9,5],[-11,2],[-4,-11],[-3,-10],[-6,-7],[-15,-4],[-15,0],[-13,3],[-14,1],[-7,5],[-5,8],[-4,17],[8,8],[4,11],[-4,13],[-5,14],[-1,10],[-2,18],[-8,16],[-10,-4],[-2,-11],[2,-12],[3,-26],[-5,-13],[-6,-7],[-18,-4],[-7,7],[2,13],[5,24],[-7,5],[-11,6],[-7,11],[3,12],[7,6],[17,9],[6,11],[-5,7],[-9,3],[-8,0],[-22,-3],[-7,5],[1,10],[4,8],[11,18],[12,6],[16,7],[-2,10],[-13,6],[-17,5],[-13,4],[-9,1],[-8,0],[-18,3],[-8,5],[-9,7],[-8,8],[-15,17],[-8,18],[-3,16],[7,9],[25,12],[7,7],[2,11],[3,10],[-3,17],[-8,21],[-6,18],[-6,8],[-6,7],[-6,14],[0,9],[1,10],[3,16],[4,19],[4,15],[6,7],[-1,19],[9,6],[8,-7],[-4,-11],[-10,-11],[4,-9],[13,-9],[11,-5],[14,-4],[11,-8],[9,4],[0,10],[-1,12],[1,18],[-2,10],[-11,36],[-6,17],[-4,9],[-11,22],[-20,28],[-3,15],[-2,17],[2,21],[7,16],[12,24],[-7,2],[-13,-8],[-28,-14],[-10,0],[-7,9],[-6,16],[-15,25],[-6,6],[-11,5],[-11,11],[-13,-1],[-12,-3],[-14,3],[-10,9],[-10,1],[-18,-4],[-18,-2],[-10,-6],[-8,-1],[-13,4],[-13,-4],[-17,-16],[-8,0],[-12,3],[-15,2],[-23,11],[-7,11],[-8,13],[-4,21],[-16,24],[-2,19],[2,14],[5,12],[17,39],[-1,14],[-4,8],[-11,17],[-6,8],[-9,7],[-18,6],[-13,6],[-9,6],[-7,2],[-10,-6],[-8,-4],[-9,-1],[-9,2],[-10,-4],[0,-10],[8,-29],[1,-10],[-5,-14],[-11,-12],[-42,-35],[-15,-14],[-15,-9],[-7,-8],[-11,-13],[-13,-11],[-8,-4],[-9,-2],[-11,-1],[-14,-6],[-24,-14],[-8,-3],[-7,-2],[-9,0],[-8,5],[-18,15],[-5,11],[-9,12],[-15,8],[-10,13],[-3,9],[-7,8],[-15,10],[2,16],[4,11],[0,13],[-3,14],[-7,10],[-9,5],[-10,-2],[-12,-8],[-12,-7],[-8,2],[-2,9],[6,7],[8,7],[-1,10],[-9,3],[-10,-2],[-8,-3],[-9,-8],[-12,-2],[-11,5],[-15,6],[-9,-1],[-8,-15],[3,-16],[12,-14],[-5,-9],[-9,-11],[-8,2],[-4,10],[-7,8],[-10,0],[-17,-8],[-7,-4],[-16,-2],[-16,-7],[-9,-3],[-2,0],[-6,-3],[-4,-2],[-7,-3],[-9,-3],[-30,10],[1,13],[5,15],[-9,4],[-9,-4],[-13,-12],[-8,-9],[-4,-11],[-3,-15],[-2,-12],[-9,-11],[-9,-9],[-6,9],[0,13],[-8,6],[-8,2],[-6,-7],[5,-20],[-9,-3],[-13,6],[-17,3],[-6,6],[-9,8],[-7,1],[-25,-3],[7,-22],[-10,-7],[-15,-3],[-2,0],[-10,1],[-3,3],[-6,8],[-6,5],[-8,2],[-36,-1],[-17,-3],[-20,-2],[-9,-6],[-10,-9],[-16,-4],[-3,-12],[-7,-10],[-33,-1],[-17,-12],[-5,-9],[-3,-14],[-2,-16],[-6,-7],[-9,-1],[-15,-9],[-18,-1],[-15,-4],[-6,-10],[7,-9],[12,8],[9,1],[4,-9],[-5,-9],[-21,-3],[1,-10],[10,-15],[-3,-11],[-30,-11],[-16,-3],[-19,-1],[-17,-5],[-8,-5],[-17,-9],[-9,-3],[-8,7],[4,9],[-6,13],[-12,-7],[-2,9],[12,18],[7,19],[3,15],[-3,15],[-2,11],[1,24],[3,10],[5,11],[9,12],[15,13],[6,12],[4,12],[4,10],[4,11],[9,13],[4,15],[-12,22],[-1,12],[-8,8],[-10,-10],[-9,-2],[-13,4],[-10,-2],[0,-13],[-7,-5],[-30,0],[-10,-7],[-16,-4],[-10,7],[6,6],[12,6],[1,10]],[[91979,48970],[-39,-23],[-106,-64],[-14,-8],[-11,-7],[-9,-5],[-9,-6],[-77,-46],[-28,-17],[-86,-52],[-19,-11],[-10,-6],[-52,-31],[-24,-15],[-13,-9],[-96,-57],[-20,-12],[-41,-24],[-70,-42],[-9,-6],[19,-115],[31,-151],[9,-49],[13,-69],[10,-53],[8,-44],[8,-38],[6,-37],[1,-1],[35,-189],[0,-1],[6,-30],[3,-17],[11,-60],[12,-65],[21,-112],[9,-47],[11,-63],[5,-26],[4,-20],[7,-36],[12,-68],[8,-43],[4,-18],[18,-95],[6,-33],[7,-38],[8,-44],[27,-144],[8,-39],[15,-81],[6,-29],[7,-40],[19,-101],[13,-70],[8,-45],[20,-102],[12,-66],[0,-14],[6,-31],[5,-25],[11,-61],[5,-27],[0,-2],[3,-16],[6,-25],[6,-31],[3,-15],[9,-51],[7,-37],[3,-13],[15,-80],[8,-40],[8,-47],[13,-63],[18,-97],[6,-33],[6,-29],[2,-13],[14,-69],[11,-60],[5,-25],[21,-111],[1,-2],[11,-58],[6,-32],[14,-77],[9,-47],[23,-117],[-1,-12],[30,-159],[12,-63],[8,-43],[16,-84],[18,-94],[1,-5],[37,-192],[51,-269]],[[92100,43981],[2,-8],[1,-4],[5,-26],[5,-29],[12,-60],[3,-20],[5,-23],[13,-69],[2,-12],[2,-11],[2,-15],[4,-38],[2,-11],[0,-2],[2,-9],[-13,0],[-63,-1],[-21,0],[-22,0],[-67,-1],[-15,0],[-9,0],[-10,0],[-8,0],[-24,0],[-9,0],[-13,0],[-40,0],[-9,0],[-14,0],[-26,-1],[-9,0],[-21,0],[-55,0],[-18,0],[-32,-1],[-96,0],[-31,-1],[-13,1],[-26,0],[-13,0],[-13,0],[-9,0],[-9,0],[-12,-1],[-23,0],[-8,0],[-16,0],[-13,0],[-28,0],[-9,0],[-12,0],[-17,-1],[-8,0],[-5,0],[-20,0],[-18,0],[-36,0],[-12,0],[-12,0],[-21,-1],[-39,0],[-15,0],[-18,0],[-21,0],[-62,0],[-20,0],[-1,0],[-23,0],[-16,0],[-32,0],[-8,0],[-20,0],[-21,0],[-52,0],[-17,0],[-12,0],[-25,0],[-10,-1],[-12,0],[-26,0],[-15,-1],[-22,0],[-9,0],[-9,-1]],[[90677,43634],[-80,-1],[-53,-2],[-24,-1],[-58,-2],[-8,0],[-54,-1],[-9,-1],[-13,0],[-15,-1],[-10,0],[-12,0],[-27,2],[-16,1],[-10,1],[-1,0],[-36,3],[-71,6],[-22,2],[-13,1],[-27,3],[-1,0],[-82,7],[-13,1],[-14,1],[-18,1],[-37,2],[-19,1],[-8,0],[-1,0],[-76,4],[-69,12]],[[89780,43673],[-23,7],[-22,-4],[-32,-4],[-28,4],[-9,5],[-1,4],[-2,5],[-2,39],[-1,25],[-3,10],[-3,13],[-4,33],[4,25],[9,10],[16,14],[16,6],[14,7],[11,8],[8,8],[1,1],[5,8],[4,12],[7,25],[9,14],[11,8],[19,9],[29,8],[24,8],[40,15],[23,10],[4,3],[7,5],[1,2],[2,8],[4,14],[2,6],[2,6],[9,27],[5,11],[2,18],[0,2],[-5,10],[-12,7],[-14,5],[-2,1],[-19,10],[-25,14],[-22,5],[-10,-3],[-22,-6],[-14,-7],[-14,-3],[-9,2],[-5,3],[-8,4],[-13,7],[-7,4],[-9,3],[-9,2],[-11,1],[-8,-2],[-25,-2],[-27,-2],[-21,0],[-16,0],[-19,-1],[-6,7],[-5,8],[-10,18],[-8,8],[-11,5],[-35,17],[-3,1],[-9,9],[-13,16],[-9,7],[-15,5],[-10,0],[-18,-4],[-14,1],[-13,3],[-17,5],[-7,6],[-13,12],[-13,9],[-10,4],[-29,7],[-10,-1],[-14,-3],[-23,-8],[-27,-5],[-18,-5],[-36,-11],[-24,-2],[-29,-1],[-15,1],[-8,2],[-11,7],[-12,7],[-11,12],[-8,10],[-10,18],[-9,21],[-14,21],[-12,16],[-6,6],[-3,3],[-8,3],[-10,2],[-10,2],[-10,2],[-8,1],[-15,3],[-13,13],[-14,12],[-23,11],[-10,5],[-20,3],[-15,0],[-16,-1],[-46,-3],[-26,-2],[-14,0],[-12,-1],[-13,1],[-8,4],[-17,7],[-17,9],[-16,7],[-18,4],[-24,4],[-12,-1],[-13,2],[-11,0],[-10,-1],[-7,-2],[-11,-3],[-9,-4],[-9,-6],[-11,-4],[-11,-4],[-14,-1],[-17,-1],[-13,0],[-9,0],[-13,-1],[-16,2],[-11,3],[-8,3],[-11,4],[-9,6],[-9,10],[-7,12],[-8,10],[-4,8],[-10,13],[-6,8],[-2,15],[3,10],[13,6],[10,4],[14,8],[12,7],[-3,14],[-6,9],[-7,15],[-3,10],[-1,14],[7,5],[8,-2],[7,-4],[9,-6],[12,-1],[8,7],[6,9],[4,9],[8,8],[13,4],[10,-2],[9,-1],[9,1],[9,5],[6,9],[3,13],[6,10],[9,8],[11,4],[22,4],[10,8],[2,10],[-2,16],[-9,13],[-3,26],[-1,12],[-2,23],[-2,23],[0,29],[0,19],[0,13],[-4,13],[-9,1],[-9,-5],[-12,-5],[-15,0],[-4,13],[2,11],[5,18],[0,4],[0,6],[-3,3],[-33,26],[-6,7],[-6,18],[-4,28],[-2,11],[-3,10],[-4,9],[-6,13],[-4,24],[1,12],[5,8],[8,3],[19,-5],[10,-9],[10,-5],[11,-4],[14,-3],[10,4],[7,5],[8,8],[9,12],[5,10],[3,11],[-1,10],[-4,10],[-5,10],[-6,10],[-11,5],[-10,-5],[-7,-5],[-8,-6],[-8,-6],[-14,-8],[-9,-6],[-13,4],[-2,15],[0,15],[-7,16],[-12,7],[-16,1],[-14,1],[-13,3],[-8,2],[-12,6],[-9,2],[-10,3],[-9,2],[-12,1],[-8,1],[-16,8],[-3,11],[4,10],[5,8],[7,7],[11,10],[9,4],[8,1],[12,7],[5,8],[5,10],[-5,13],[-6,9],[-10,8],[-13,6],[-10,1],[-19,-8],[-9,-7],[-6,-8],[-5,-7],[-11,-6],[-11,-4],[-12,-2],[-18,0],[-14,0],[-17,1],[-4,8],[3,15],[4,10],[3,10],[3,13],[-1,16],[-8,10],[-8,1],[-11,-2],[-9,-4],[-8,-5],[-10,-7],[-14,-13],[-5,-11],[-7,-6],[-16,-11],[-10,-4],[-13,1],[-11,-1],[-13,-3],[-12,-6],[-15,-10],[-13,-9],[-13,-11],[-9,1],[-8,5],[-8,5],[-10,6],[-7,3],[-9,2],[-10,2],[-8,1],[-12,-2],[-8,-10],[-1,-19],[0,-14],[-2,-16],[0,-1],[-2,-12],[0,-1],[-8,-13],[-10,-10],[-12,-9],[-14,-4],[-11,-4],[-8,-4],[-2,0],[-12,-7],[-15,-4],[-2,-1],[-6,-2],[-12,0],[-20,2],[-16,7],[-11,6],[-9,6],[-1,0],[-9,8],[-8,19],[0,19],[6,9],[6,9],[14,16],[14,20],[-1,18],[-7,10],[-8,3],[-13,3],[-15,2],[-9,4],[-13,13],[2,17],[3,9],[4,10],[8,16],[5,13],[3,16],[2,10],[3,11],[4,9],[6,8],[9,12],[11,11],[9,5],[8,11],[-4,9],[-6,7],[-9,3],[-15,4],[-16,4],[-13,3],[-12,1],[-18,-2],[-17,-3],[-15,-4],[-15,-6],[-9,-2],[-11,-5],[-17,-8],[-17,-1],[-5,12],[1,14],[3,19],[-2,11],[-16,54],[-9,21],[-15,18],[-25,29],[-7,8],[-5,7],[-8,13],[-5,20],[0,23],[5,18],[7,14],[7,8],[9,11],[6,17],[3,15],[0,10],[-3,22],[-10,31],[-6,15],[-4,14],[-6,19],[-1,12],[4,11],[7,10],[9,5],[12,4],[11,4],[9,3],[11,7],[8,5],[14,18],[7,12],[3,10],[5,18],[6,20],[5,21],[2,17],[-5,29],[-7,16],[-10,24],[-7,16],[-11,14],[-19,35],[-4,11],[2,13],[8,8],[18,9],[13,9],[23,25],[-6,14],[-8,6],[-28,1],[-10,3],[-15,28],[-7,16],[-8,5],[-7,4],[-7,4],[-15,7],[-13,7],[-11,7],[-11,16],[-9,14],[-18,24],[-14,13],[-2,1],[-6,6],[-18,4],[-14,4],[-19,6],[-16,5],[-15,5],[-11,11],[-8,9],[-15,10],[-15,13],[-18,25],[-16,25],[-6,10],[-4,16],[-3,18],[-1,8],[-6,2],[-4,2],[-15,-2],[-29,-6],[-8,1],[-6,6],[-6,12],[-7,16],[-4,5],[-4,6],[-8,8],[-8,2],[-7,1],[-28,1],[-11,3]],[[76300,45891],[-23,-16],[-8,-4],[-7,-5],[-12,-7],[-7,-4],[-8,-6],[-11,-7],[-16,-10],[-9,-6],[-66,-42],[-19,-11],[-75,-48],[-55,-35],[-23,-15],[-125,-79],[-27,-16],[-50,-31],[-62,-39],[-31,-19],[-32,-20],[-26,-16],[-27,-17],[-16,-10],[-33,-20],[-66,-41],[-27,-16],[-3,-2],[-7,-4],[-48,-31],[-18,-11],[-21,-13],[-22,-13],[-19,-11],[-140,-86],[-20,-12],[-86,-53],[-97,-60],[-16,-9],[-3,-2],[-6,-3],[-14,-9],[-21,-14],[-27,-16],[-41,-25],[-22,-14],[-18,-11],[-66,-43],[-12,-7],[-49,-31],[-46,-29],[-47,-29],[-52,-33],[-13,-8],[-1,-1],[-17,-11],[-101,-63],[-17,-12],[-20,-13],[-31,-19],[-12,-7],[-19,-13],[-21,-12],[-59,-38],[-83,-51],[-30,-19],[-18,-11],[-11,-7],[-46,-29],[-22,-14],[-31,-20],[-39,-24],[-66,-41],[-27,-17],[-52,-33],[-8,-5],[-67,-42],[-12,-7]],[[73695,44263],[-68,-43],[-11,-7],[-17,-10],[-23,-15],[-81,-52],[-45,-29],[-3,-1],[-30,-20],[-32,-18],[-19,-12],[-16,-11],[-13,-9],[-40,-27],[-34,-21],[-2,-1],[-136,-87],[-78,-50],[-17,-11],[-60,-41],[-88,-58],[-19,-10],[-36,-23],[-17,-11],[-32,-20],[-40,-25],[-21,-14],[-20,-13],[-22,-14],[-42,-27],[-40,-26],[-9,-6],[-41,-27],[-44,-27],[-2,-2],[-27,-16],[-75,-49],[-53,-35],[-11,-7],[-7,-5],[-70,-45],[-16,-10]],[[72238,43328],[-24,71],[-17,50],[-8,24],[-4,12],[-15,46],[-6,19],[-31,91],[-7,21],[-17,52],[-6,17],[-5,14],[-13,38],[-9,26],[-6,18],[-6,18],[-25,79],[-14,42],[-3,9],[-12,35],[-4,14],[-27,81],[-13,38],[-12,37],[-20,61],[-13,37],[-6,20],[-4,11],[-9,28],[-15,46],[-23,66],[-15,45],[-15,46],[-2,6],[-25,75],[-23,66],[-10,24],[-6,16],[-2,9],[-3,7],[-2,9],[-3,9],[-1,4],[-4,12],[-9,28],[-9,27],[-3,11],[-3,9],[-17,50],[-14,42],[-1,1],[-3,11],[-35,99],[-27,77],[-16,47],[-4,12],[-8,24],[-19,55],[-22,64],[-10,28],[-39,114],[-11,31],[-11,32],[-1,2],[-20,57],[-4,12],[-4,13],[-42,119],[-5,16],[-10,27],[-36,106],[-6,15],[-16,34],[-16,7],[-3,2],[-89,42],[-75,35],[-22,10],[-9,5],[-18,8],[-32,15],[-8,4],[-12,6],[-9,4],[-38,16]],[[21654,42907],[-472,1],[-70,0],[-27,-1],[-84,-1],[-28,0],[-83,-2],[-31,8],[-87,21],[-30,7],[-132,32],[-104,25],[-25,6],[-33,8],[-42,11],[-76,18],[-68,17],[-17,4],[-4,1],[-9,2],[-63,15],[-36,13],[-104,26],[-70,18],[-8,1],[-2,1],[-17,4],[-228,57],[-56,14],[-13,3],[-117,29],[-36,9],[-34,8],[-25,7],[-38,9],[-1,0],[-21,5],[-69,18],[-32,8],[-17,4],[-27,7],[-36,9],[-88,22],[-27,6],[-38,10],[-84,21],[-157,39],[-140,35],[-14,4],[-149,37],[-22,6],[-61,16],[-7,1],[-171,43],[-24,6],[-60,15],[-52,13],[-53,13],[-74,18],[-40,10],[-181,45],[-10,3],[-150,37],[-71,17],[-230,57],[-61,15],[-117,29],[-3,1],[-20,4],[-13,4],[-12,3],[-2,0],[-121,30],[-129,32],[-194,48],[-64,15],[-107,27],[-24,6],[-85,20],[-40,10],[-130,32],[-104,26],[-102,26],[-21,5],[-12,3],[-19,5],[-56,14],[-1,0],[-10,2],[-37,10],[-53,13],[-63,15],[-43,11],[-26,7],[-81,20],[-39,10],[-114,28],[-116,29],[-92,24],[-43,10],[-19,5],[-24,6],[-320,80],[-210,52],[-44,10],[-84,21],[-18,4],[-153,38],[-48,12],[-8,2],[-2,0],[-17,5],[-176,43],[-170,42],[-179,44],[-71,18],[-25,6],[-84,21],[-163,38],[-54,15],[-36,9],[-9,2],[-66,17],[-111,27],[-21,5],[-23,6],[-20,5],[-15,4],[-84,20],[-21,5],[-9,2],[-140,35],[-17,3],[-5,1]],[[24400,45284],[-120,-104],[-146,-125],[-112,-97],[-44,-38],[-9,-8],[-13,-11],[-17,-15],[-136,-117],[-12,-10],[-36,-32],[-89,-78],[-8,-6],[-18,-16],[-116,-100],[-29,-24],[-7,-7],[-52,-45],[-69,-59],[-67,-57],[-10,-9],[-81,-70],[-126,-109],[-95,-82],[-8,-7],[-103,-89],[-4,-4],[-10,-9],[-107,-92],[-7,-6],[-1,-1],[-13,-11],[-134,-117],[-18,-18],[-19,-16],[-60,-50],[-120,-107],[-112,-96],[-26,-19],[-2,-2],[-489,-426],[-101,-88]],[[83939,47764],[-1,-10],[-3,-14],[-6,-9],[-10,-3],[-10,-7],[2,-9],[11,-3],[6,-8],[5,-11],[12,-4],[7,-4],[14,-12],[7,-7],[12,-13],[-4,-9],[-9,-1],[-8,3],[-7,-7],[-2,-14],[8,-4],[7,-5],[-2,-13],[-6,-9],[-7,-7],[-6,-10],[-7,7],[-5,8],[-1,11],[-7,7],[-10,0],[-4,-11],[-4,-9],[-8,2],[-10,-2],[-7,-12],[-7,-8],[-9,6],[-8,4],[-5,-10],[-6,-9],[3,-10],[-2,-11],[-2,-11],[0,-10],[6,-6],[7,-11],[-8,-4],[-4,-11],[-7,-6],[-15,2],[-6,-7],[-16,18],[-8,-5],[-6,-13],[-9,3],[-7,11],[-6,-9],[-16,0],[-11,2],[-8,-14],[-7,-10],[-9,-5],[-10,0],[-8,-1],[-2,-10],[-5,-10],[-22,-6],[-8,-7],[-10,-2],[-7,5],[2,10],[7,2],[-5,13],[-12,-1],[-4,11],[-8,-6],[-13,-2],[-8,3],[8,13],[7,7],[-11,10],[-8,10],[-7,-5],[2,11],[-5,12],[-10,9],[-3,-11],[-8,4],[-1,10],[-6,5],[-17,-10],[-8,-4],[-12,1],[-5,8],[-9,8],[-19,5],[-12,2],[-12,-4],[-20,-7],[-7,8],[-8,-7],[-8,-12],[-5,-8],[0,-14],[-13,-3],[-9,4],[-11,6],[-7,-8],[-8,0],[-4,4],[-5,6],[-6,9],[-17,8],[-10,3],[4,9],[8,6],[0,12],[-13,3],[-8,-3],[-11,-4],[-8,6],[-5,-8],[-8,-1],[-10,12],[-11,-3],[-10,-5],[-7,-6],[-9,2],[-6,-7],[-5,12],[-8,1],[-7,6],[5,11],[-8,6],[6,5],[-10,2],[-9,3],[-4,-8],[-9,3],[-3,9],[-6,-5],[-5,-7],[-9,-12],[-7,5],[-9,-1],[-6,-9],[-11,1],[3,-9],[-8,-3],[-12,-3],[-8,-8],[-4,-8],[-8,-11],[-9,-6],[-10,-3],[-11,1],[3,-11],[-8,-1],[-4,-13],[-10,4],[-11,-6],[-8,0],[-13,-3],[1,14],[-12,-1],[-17,11],[-9,-3],[3,-9],[-8,2],[-12,7],[-9,-5],[-10,0],[-7,3],[-11,-5],[-6,-8],[-8,2],[-4,-8],[-8,-1],[-20,-5],[-7,10],[-5,-14],[-9,1],[-9,-7],[-9,-5],[0,-12],[-12,4],[-8,-3],[-5,-7],[8,-4],[-5,-8],[-10,-1],[2,-10],[-7,-6],[-8,6],[-5,-10],[-3,-9],[-2,-12],[-10,-8],[-9,-2],[-2,-2],[-5,-7],[-9,-7],[-9,-1],[-7,-7],[-6,-5],[-7,-8],[0,-1],[-9,-8],[-5,-9],[-8,7],[-7,-2],[-8,-11],[-8,-3],[-5,-8],[-1,-10],[-7,-6],[-8,-4],[-9,1],[-6,-6],[-10,-2],[-8,3],[-9,2],[-11,-1],[-7,0],[-10,-3],[-7,-5],[-13,-7],[-10,-9],[-9,-1],[-12,-2],[-7,-9],[-10,-10],[-7,-4],[-8,-4],[-21,-6],[-8,-4],[-8,-14],[-3,-10],[-7,-11],[-7,-3],[-8,-4],[-7,8],[-8,-3],[-3,10],[-6,7],[-8,-7],[-13,-2],[-7,-7],[-11,-3],[-10,-7],[-11,-10],[-13,0],[-7,-5],[8,-3],[0,-14],[-6,-5],[-7,-6],[-9,-1],[-8,11],[-11,0],[2,14],[-9,2],[-10,-5],[-9,0],[-8,-2],[-9,0],[-12,-4],[-10,-5],[-7,-4],[-8,-6],[-10,6],[-20,0],[-10,2],[-10,8],[2,11],[-1,11],[-4,9],[-9,0],[-8,-5],[-10,-4],[-9,-8],[-8,-3],[-14,-7],[-11,6],[-6,5],[-9,-4],[-7,-1],[-6,-8]],[[82073,47142],[-9,-2],[-12,-2],[-19,-3],[-22,-4],[-14,-3],[-16,1],[-55,-11],[-49,-9],[-50,-9],[-69,-14],[-4,0],[-51,-10],[-11,-2],[-15,-3],[-116,-20],[-12,-2],[-26,-5],[-71,-12],[-1,0],[-86,-15],[-87,-16],[-17,-3],[-44,-8],[-58,-10],[-93,-16],[-24,-4],[-11,-2],[-2,0],[-32,-5],[-39,-7],[-28,-5],[-1,0],[-93,-17],[-39,-6],[-58,-10],[-47,-8],[-158,-28],[-27,-5],[-98,-17],[-15,-3],[-77,-13],[-5,-1],[-59,-11],[-2,0],[-61,-11],[-57,-10],[-31,-2],[-24,-1],[-9,-9],[-15,-1],[-131,-14],[-14,-1],[-159,-16]],[[79750,46757],[-5,7],[-8,-3],[-3,8],[-6,8],[7,9],[-2,9],[-5,9],[-10,0],[-6,-9],[-7,-5],[-3,9],[7,8],[8,4],[9,3],[-6,8],[-8,1],[-8,-3],[-7,7],[-1,11],[10,-8],[3,10],[-4,12],[-6,10],[-4,9],[-1,10],[0,12],[-1,10],[2,9],[-5,10],[7,7],[2,5],[2,5],[-2,10],[7,6],[-3,8],[-5,9],[7,4],[8,-4],[6,6],[-6,6],[-7,7],[-8,1],[-7,5],[-3,8],[5,7],[-1,9],[6,7],[8,1],[-1,10],[-6,5],[-11,1],[-8,5],[6,7],[-9,13],[8,0],[0,11],[-7,5],[-5,9],[-9,3],[-6,6],[-9,1],[-5,8],[-8,1],[-7,4],[5,9],[6,6],[-7,6],[-8,-2],[-7,3],[6,6],[-8,10],[1,12],[-6,7],[-6,-6],[-10,-4],[-9,0],[-6,8],[5,8],[3,9],[-9,-2],[-6,-8],[-6,7],[-2,4],[-3,5],[0,10],[-8,-3],[-8,-2],[-5,7],[-3,9],[1,11],[-3,10],[-2,13],[7,10],[9,2],[8,8],[3,12],[-1,11],[-3,19],[-6,6],[-9,2],[0,12],[-8,10],[-9,2],[-6,8],[-5,-8],[-8,0],[-3,10],[1,11],[9,1],[10,1],[-12,8],[-1,9],[4,9],[-8,0],[-8,-1],[2,10],[-7,3],[-6,10],[-1,10],[-6,8],[-3,10],[7,6],[-8,5],[1,10],[6,7],[1,10],[-3,9],[-7,-4],[-8,-2],[-8,2],[1,10],[-8,5],[-8,0],[-9,5],[-3,9],[-9,5],[-9,3],[1,12],[4,9],[-3,14],[0,10],[2,9],[-7,6],[2,11],[5,9],[8,7],[5,7],[1,12],[2,9],[9,1],[10,3],[6,8],[-1,10],[-8,6],[5,7],[8,4],[-6,10],[0,11],[7,5],[8,-4],[1,11],[7,-3],[7,7],[8,3],[-4,10],[-7,9],[-7,5],[6,6],[4,22],[-1,11],[2,9],[11,-12],[6,-8],[8,-2],[8,7],[-6,13],[-8,2],[-5,10],[-4,25],[-3,9],[-5,8],[-8,5],[-10,5],[-5,8],[-5,16],[-6,14],[2,9],[0,10],[-5,11],[-9,4],[-7,-4],[-8,6],[-6,8],[-8,6],[-7,3],[-8,2],[-8,3],[-8,2],[-7,1],[-9,3],[-4,9],[-7,3],[-13,-3],[-11,-2],[-8,-1],[-9,0],[-10,2],[-7,4],[-6,7],[-8,8],[-9,5],[-8,7],[-7,9],[-5,11],[-4,9],[-3,10],[-10,6],[-8,4],[-7,4],[-2,16],[-1,10],[-10,5],[-7,5],[-1,11],[5,8],[7,6],[6,12],[2,12],[-8,8],[-6,6],[-8,15],[-4,10]],[[54506,47859],[0,-37],[0,-59],[0,-23],[0,-79],[0,-93],[0,-90],[0,-25],[0,-121],[0,-19],[0,-67],[1,-57],[0,-2],[0,-62],[1,-126],[0,-32],[0,-109],[1,-81],[0,-16],[0,-39],[0,-128],[1,-237],[1,-107],[0,-62],[0,-57],[1,-50],[0,-2],[1,-91],[-1,-155],[0,-129]],[[54512,45704],[-344,0],[-169,0],[-1138,-1],[-535,-1],[-681,0],[-1946,-2]],[[49699,45700],[-1,426],[0,58],[0,19],[-1,77],[0,11],[-1,179],[0,37],[0,106],[0,20],[1,124],[1,66],[0,3],[0,93],[0,19],[0,34],[1,124],[0,26],[0,17],[-1,107],[0,19],[2,141],[0,12],[0,15],[0,94],[0,91],[0,31],[0,140],[0,46],[1,40],[0,18],[0,14],[0,19],[1,60],[0,13],[2,363],[0,56],[0,70],[1,31],[0,91],[0,144],[1,137],[1,269],[0,82]],[[49699,45700],[-69,0],[-347,-2],[-2,0],[-160,-2],[-105,0],[-189,-2],[-149,-2],[-138,-1],[-53,0],[-60,0],[-74,0],[-15,0],[-14,0],[-38,-1],[-10,0],[-51,0],[-227,-2],[-11,0],[-113,-1],[-62,0],[-85,-1],[-117,-1],[-40,0],[-63,0],[-235,-2],[-64,0],[-13,1],[-23,-1],[-84,0],[-39,0],[-169,-2],[-105,-2],[-24,0],[-53,-1],[-61,0],[-36,-1],[-7,0],[-155,-1],[-161,-1],[-48,-1],[-12,0],[-12,0],[-13,0],[-121,-1],[-20,0],[-13,0],[-35,-1],[-82,0],[-67,-1],[-31,-1],[-8,-1],[-90,0],[-3,0],[-222,-2],[-129,-1],[-31,0],[-1,0],[-11,0],[-85,-1],[-372,-2],[-217,0],[-191,0],[-18,-1],[-29,0],[-45,0],[-10,0],[-1,0],[-48,0],[-193,-1],[-18,0],[-27,0],[-77,0],[-23,1],[-33,0],[-9,0],[-19,-1],[-159,0],[-124,0],[-156,-1],[-49,0],[-36,0],[-118,0]],[[43272,45660],[0,33],[0,274],[0,107],[0,130],[0,164],[0,90],[0,157],[0,21],[0,109],[1,87],[0,2],[0,21],[0,234],[0,10],[-8,147],[-3,93],[0,237],[0,1],[0,11],[0,131],[0,105],[0,155],[-1,73],[0,61],[-3,223],[2,82],[0,34],[0,230],[0,166],[0,157],[0,185]],[[43272,45660],[0,-187],[0,-26],[0,-62],[0,-93],[0,-12],[0,-18],[0,-4],[-1,-44],[0,-54],[0,-32],[1,-55],[-1,-172],[0,-105],[0,-113],[0,-66],[0,-69],[0,-140],[0,-77],[0,-40],[0,-16],[-1,-10],[0,-236],[1,-204],[0,-75],[1,-21],[0,-64],[0,-11],[0,-22],[0,-121],[0,-164],[0,-23],[0,-52],[0,-57],[0,-11],[0,-66],[0,-15],[0,-88],[0,-109],[-1,-75],[0,-10],[0,-4],[0,-33],[0,-16],[1,-66],[0,-14],[0,-14],[0,-12],[0,-24],[0,-31],[-1,-70],[-1,-11],[1,-19],[1,-30],[-1,-45],[0,-71],[1,-10],[-1,-27],[0,-12],[1,-18],[0,-22],[-1,-24],[0,-11],[0,-29],[1,-9],[0,-31],[0,-42],[-1,-24],[1,-23],[0,-39],[0,-33],[0,-16],[0,-34],[0,-148],[0,-92]],[[43272,41737],[-18,0],[-69,-1],[-12,0],[-24,1],[-21,0],[-11,0],[-29,1],[-30,1],[-69,1],[-11,0],[-9,0],[-37,-7],[-25,0],[-82,1],[-49,0],[-30,0],[-18,1],[-16,0],[-132,1],[-88,0],[-32,0],[-8,0],[-10,0],[-12,1],[-1,0],[-23,0],[-97,0],[-291,3],[-45,0],[-46,0],[-65,0],[-68,0],[-93,0],[-30,-1],[-54,1],[-9,0],[-21,0],[-100,0],[-18,0],[-16,0],[-87,0],[-64,0],[-108,0],[-14,0],[-12,0],[-24,0],[-48,0],[-30,2],[-7,0],[-25,0],[-122,0],[-94,0],[-51,0],[-23,0],[-185,0],[-195,-1],[-65,0],[-80,0],[-15,0],[-8,0],[-45,0],[-24,0],[-12,-1],[-44,0],[-43,0],[-22,0],[-80,0],[-113,1],[-83,0],[-32,0],[-118,0],[-54,0],[-81,0],[-61,0],[-38,0],[-31,0],[-46,0],[-38,0],[-68,0],[-19,0],[-38,0],[-137,0],[-39,0],[-12,0],[-45,0],[-52,0],[-11,0],[-8,0],[-10,0],[-1,0],[-14,0],[-120,0],[-90,0],[-73,0],[-56,-1],[-30,0],[-60,0],[-27,0],[-14,0],[-69,0],[-9,0],[-17,0],[-59,0],[-28,1],[-48,2],[-40,1],[-15,0],[-16,-1],[-78,-4],[-99,1],[-102,0],[-60,0],[-56,0],[-48,0],[-83,0],[-88,0],[-66,0],[-36,0],[-30,0],[-61,0]],[[37199,41740],[2,17],[7,12],[6,12],[7,6],[15,17],[9,16],[8,-3],[13,6],[16,3],[13,17],[5,11],[7,21],[-1,12],[3,13],[3,9],[6,32],[6,11],[8,17],[-2,16],[-2,16],[3,9],[5,17],[-5,9],[1,13],[6,9],[7,5],[6,10],[3,14],[4,11],[12,9],[12,0],[12,4],[15,14],[9,14],[10,10],[13,8],[18,5],[6,13],[7,5],[12,3],[25,23],[6,8],[13,10],[9,-1],[11,1],[10,5],[6,8],[7,3],[8,13],[14,7],[10,1],[13,6],[16,12],[8,2],[14,3],[15,1],[14,4],[9,1],[9,-2],[13,-3],[11,-10],[6,-6],[10,-10],[11,-6],[17,-5],[8,-9],[12,-2],[13,1],[12,-4],[10,-9],[32,-5],[17,0],[13,8],[14,7],[9,-1],[10,0],[10,1],[11,3],[10,8],[6,7],[0,13],[4,8],[3,22],[-1,22],[-3,14],[-3,17],[-2,17],[6,11],[0,10],[-8,14],[-19,10],[-7,9],[-14,18],[-6,6],[-8,5],[-18,5],[-11,0],[-23,7],[-6,6],[-13,11],[-11,6],[-16,-1],[-19,10],[-12,3],[-10,8],[-9,8],[-10,19],[-8,5],[-8,12],[-7,9],[-3,9],[-4,17],[-18,3],[-8,3],[-14,9],[-9,11],[-3,10],[-5,12],[4,11],[8,-1],[11,2],[3,10],[-3,15],[7,35],[1,20],[-2,19],[-6,11],[-7,13],[-10,9],[-8,6],[-6,17],[-7,8],[-8,5],[-12,1],[-8,5],[-7,9],[-35,12],[-9,-1],[-19,-6],[-9,1],[-14,9],[-9,7],[-9,3],[-10,-2],[-14,-5],[-13,3],[-5,8],[-6,9],[-9,6],[-11,-3],[-10,5],[-8,8],[-4,12],[-7,7],[-8,9],[-15,14],[-6,8],[-3,10],[-7,23],[-15,15],[-8,2],[-3,9],[-3,10],[9,11],[6,11],[-1,10],[9,16],[7,7],[21,11],[14,15],[5,11],[5,10],[11,9],[6,7],[7,10],[4,10],[8,9],[15,12],[18,10],[5,12],[7,10],[-1,13],[-2,10],[-6,21],[1,8],[1,2],[12,35],[4,19],[-6,10],[-14,3],[-8,2],[-19,10],[-10,12],[-7,4],[-7,7],[-6,6],[-13,-4],[-8,8],[8,12],[-1,11],[3,11],[-1,12],[-8,14],[4,11],[9,7],[6,11],[10,9],[16,9],[19,-5],[13,-5],[4,-13],[7,-9],[8,-9],[5,-8],[12,-3],[7,6],[8,1],[4,-11],[6,-17],[6,-16],[7,-11],[17,-17],[13,-5],[14,-4],[10,-9],[13,-2],[12,1],[10,3],[5,11],[1,13],[7,8],[4,10],[3,11],[9,9],[6,9],[9,3],[8,0],[13,5],[8,3],[6,4],[6,7],[0,12],[-3,15],[9,21],[12,12],[-7,6],[-8,6],[-12,20],[-6,15],[-1,17],[8,3],[1,10],[-5,9],[-6,11],[1,14],[-3,9],[1,19],[-2,12],[-1,14],[12,11],[2,10],[2,11],[7,5],[8,-2],[13,-2],[10,3],[7,7],[14,11],[2,15],[25,0],[11,4],[5,8],[9,18],[-5,11],[-7,13],[2,17],[-2,17],[-5,9],[-8,8],[-5,8],[-4,14],[0,24],[-2,10],[-2,16],[5,12],[1,10],[-4,8],[2,12],[5,11],[12,10],[12,1],[17,-2],[8,5],[9,11],[8,10],[12,2],[7,9],[-1,14],[8,14],[17,9],[14,6],[6,11],[3,15],[-4,8],[6,8],[12,7],[5,6],[1,2],[3,1],[7,2],[7,10],[1,13],[4,11],[10,17],[8,12],[7,11],[8,19],[12,-4],[10,3],[13,23],[-5,9],[-4,14],[0,12],[2,17],[9,-2],[5,10],[1,21],[-7,14],[-7,11],[-4,12],[3,15],[-4,9],[-11,8],[-7,3],[-3,15],[-1,20],[-5,13],[-9,7],[-4,11],[-6,12],[-9,6],[-1,12],[7,11],[-4,19],[-4,10],[-4,9],[-7,12],[-10,-2],[-9,1],[-7,8],[-2,13],[-14,13],[-2,10],[6,18],[-2,10],[3,10],[20,11],[6,13],[6,5],[0,17],[1,16],[7,12],[1,11],[5,9],[-2,15],[-9,7],[-8,10],[-2,12],[8,12],[1,13],[-9,12],[-7,10],[9,7],[14,8],[9,5],[-6,8],[-8,-3],[-7,2],[2,9],[6,9],[9,2],[17,13],[11,-1],[1,10],[-10,17],[-8,9],[-15,1],[-9,7],[-17,11],[-7,12],[-20,11],[-11,5],[-8,8],[1,11],[-1,15],[-8,11],[-10,4],[-5,12],[-8,18],[4,9],[-6,9],[-11,4],[-13,5],[-7,-9],[-7,-8],[-11,-1],[-15,-2],[-34,5],[-13,4],[-10,0],[-17,7],[-8,4],[-6,8],[-9,23],[-6,27],[-7,6],[-8,5],[-6,6],[-23,12],[-9,-4],[-10,-3],[-6,-8],[-6,-8],[-8,5],[-12,6],[-15,6],[-5,10],[-8,12],[-1,17],[-7,4],[-8,5],[-1,13],[-9,-2],[-10,-16],[-14,-4],[-16,-8],[-11,-8],[-9,3],[-11,-3],[-6,-7],[-8,1],[-9,12],[-10,1],[-8,2],[-15,-2],[-14,8],[-9,2],[-9,4],[-14,8],[-7,5],[-11,-3],[-17,-14],[-27,0],[-14,-4],[-6,-12],[-14,-1],[-8,7],[-9,-6],[-7,-7],[-13,1],[-7,9],[-2,17],[0,20],[-8,10],[-7,10],[-12,5],[-10,0],[-7,2],[-8,5],[-13,-6],[6,-19],[-8,-14],[-8,5],[1,18],[-7,6],[-7,-7],[-6,-7],[-8,-7],[-9,-5],[-1,-7],[0,-3]],[[95709,43972],[-10,0],[-10,0],[-15,0],[-8,0],[-10,0],[-8,0],[-16,0],[-10,0],[-17,0],[-9,0],[-13,0],[-10,0],[-18,1],[-12,0],[-14,0],[-10,0],[-15,0],[-14,0],[-12,0],[-18,0],[-23,0],[-50,1],[-17,0],[-20,0],[-13,0],[-25,0],[-9,0],[-10,0],[-31,1],[-11,0],[-27,0],[-10,0],[-9,0],[-28,0],[-9,0],[-24,0],[-11,0],[-13,0],[-8,0],[-13,0],[-12,0],[-23,0],[-9,0],[-9,0],[-14,0],[-34,0],[-12,0],[-14,1],[-10,0],[-14,0],[-34,0],[-11,0],[-20,0],[-13,0],[-23,0],[-8,0],[-11,0],[-12,1],[-8,0],[-9,0],[-9,0],[-12,0],[-24,0],[-8,0],[-8,0],[-13,0],[-35,0],[-12,0],[-10,0],[-28,0],[-9,0],[-20,0],[-61,1],[-20,0],[-15,0],[-43,0],[-14,0],[-9,0],[-28,0],[-9,0],[-9,0],[-25,0],[-9,0],[-20,0],[-12,0],[-8,0],[-25,0],[-9,0],[-9,0],[-13,0],[-16,0],[-11,0],[-41,0],[-116,0],[-39,0],[-9,0],[-27,1],[-10,0],[-27,0],[-25,0],[-54,0],[-17,0],[-9,0],[-25,0],[-8,0],[-14,0],[-39,0],[-13,0],[-15,0],[-37,0],[-13,0],[-8,0],[-17,0],[-10,0],[-8,0],[-35,0],[-11,0],[-12,0],[-22,0],[-53,0],[-18,0],[-9,0],[-8,0],[-11,0],[-14,0],[-18,0],[-41,1],[-13,0],[-20,-1],[-12,0],[-19,1],[-19,0],[-38,0],[-12,0],[-14,0],[-42,0],[-11,0],[-3,0],[-20,0],[-45,1],[-15,0],[-14,0],[-8,0],[-9,0],[-9,0],[-11,0],[-34,0],[-11,0],[-12,0],[-19,0],[-47,0],[-15,0],[-11,0],[-8,0],[-9,0],[-8,0],[-20,0],[-9,0],[-8,0],[-12,0],[-13,0],[-7,0],[-1,0],[-8,0],[-8,0],[-9,0],[-11,0],[-17,0],[-8,0],[-9,0],[-15,0],[-22,0],[-14,0],[-19,0],[-12,0],[-17,0],[-8,0],[-9,1],[-13,0],[-22,-1],[-9,0],[-8,0],[-9,0],[-8,0],[-8,0],[-15,0],[-11,0],[-17,0],[-15,0],[-28,0],[-9,0],[-20,0],[-10,-2],[-8,0],[-37,0],[-13,0],[-11,0],[-26,0],[-68,1],[-23,0],[-13,0],[-15,0],[-21,0],[-6,0],[-3,0],[-8,0],[-10,0],[-10,0],[-9,0],[-22,0],[-9,0],[-5,0],[-30,1]],[[86150,47099],[-4,-47],[-7,-102],[-1,-16],[-5,-72],[-1,-2],[-1,-21],[0,-1],[-3,-31],[-1,-16],[-20,-282],[-4,-48],[-6,-83],[-9,-131],[-1,-2],[-3,-46],[-9,-125],[-5,-33],[-5,-83],[0,-3],[-4,-55],[-1,-19],[-13,-217],[-3,-44],[0,-4],[-1,-20],[-4,-60],[-1,-35],[-4,-57],[-3,-55],[-3,-50],[-2,-35],[-1,-31],[-2,-32],[-1,-16],[-2,-44],[-1,-10],[0,-10],[-4,-60],[-2,-53],[-3,-53],[-1,-30],[-4,-63],[-8,-88],[-12,-148],[-2,-32],[-9,-100],[-1,-14],[-2,-29],[-3,-27],[-1,-10],[-5,-67],[-1,-11],[-1,-14],[-2,-22],[-5,-53],[-4,-52],[-9,-109],[-2,-13],[-2,-31],[-4,-45],[-2,-19],[-2,-19],[0,-3],[-1,-21],[-3,-29],[0,-5],[-12,-145],[-1,-10],[-2,-16]],[[85909,43770],[-12,20],[-5,12],[-4,9],[-8,1],[-8,-1],[-10,0],[-11,0],[-66,0],[-42,0],[-87,0],[-27,-1],[-22,0],[-34,1],[-59,0],[-76,0],[-39,-1],[-7,0],[-66,1],[-31,0],[-57,0],[-10,0],[-34,0],[-23,0],[-35,0],[-41,0],[-55,0],[-39,0],[-16,0],[-4,0],[-15,0],[-2,0],[-8,0],[-11,0],[-2,0],[-37,-1],[-3,0],[-15,1],[-41,0],[-12,0],[-31,0],[-36,0],[-19,0],[-90,0],[-19,0],[-56,0],[-18,0],[-15,0],[-42,0],[-36,0],[-55,0],[-59,0],[-26,0],[-16,0],[-62,0],[-39,0],[-51,0],[-29,1],[-1,0],[-45,0],[-11,3],[-9,6],[-32,21],[-46,29],[-7,5],[-7,4],[-14,10],[-22,14],[-30,20],[-20,12],[-8,6],[-12,8],[-16,10],[-17,11],[-67,44],[-35,22],[-64,42],[-28,19],[-46,29],[-9,6],[-20,12],[-40,26],[-15,10],[-87,56],[-40,26],[-13,8],[-22,14],[-32,21],[-94,61],[-82,54],[-48,31],[-33,22],[-22,14],[-21,13],[-47,31],[-10,7],[-32,21],[-47,32],[-39,25],[-7,4],[-12,8],[-17,10],[-30,20],[-32,20],[-43,27],[-17,12],[-58,37],[-8,5],[-72,46],[-19,11],[-27,18],[-11,7],[-11,7],[-21,13],[-51,33],[-10,7],[-10,5],[-34,21],[-11,8],[-22,13]],[[82323,44949],[-3,28],[-6,47],[-6,53],[-3,23],[0,3],[-4,33],[-3,29],[-5,40],[0,2],[-6,57],[-6,51],[-1,6],[-4,37],[-2,15],[-6,54],[-7,60],[-4,34],[-7,64],[-2,14],[-9,82],[-6,45],[-1,10],[-5,45],[-6,48],[-4,33],[-1,13],[-3,23],[-7,54],[-3,28],[-9,94],[-12,103],[-2,20],[-28,248],[-4,34],[-14,124],[-9,84],[-6,47],[-10,94],[-17,145],[-1,14],[-4,30],[-1,11],[-2,16],[-11,98]],[[67113,47537],[-40,-41],[-12,-14],[-6,-7],[-93,-104],[-22,-24],[-11,-13],[-40,-45],[-6,-7],[-12,-14],[-22,-24],[-28,-31],[-13,-15],[-11,-12],[-12,-13],[-28,-30],[-29,-31],[-5,-6],[-1,-1],[-47,-51],[-16,-18],[-31,-32],[-17,-19],[-33,-36],[-28,-30],[-8,-8],[0,-1],[-18,-19],[-14,-15],[-15,-16],[-17,-18],[-111,-120],[-10,-10],[-20,-22],[-13,-15],[-9,-10],[-18,-21],[-31,-36],[-4,-5],[-46,-53],[-56,-65],[-7,-7],[-12,-13],[-13,-14],[-16,-19],[-20,-22],[-4,-8],[-6,-14],[-17,-38],[-29,-66],[-12,-27],[-22,-49],[-35,-78],[-6,-14],[-6,-14],[-14,-30],[-12,-30],[-5,-12],[-5,-11],[-7,-16],[-12,-29],[-9,-20],[-31,-74],[-4,-9],[-9,-22],[-5,-11],[-5,-11],[-8,-18],[-7,-17],[-2,-4],[-7,-17],[-9,-18],[-16,-38],[-7,-17],[0,-1],[-7,-15],[-12,-29],[-6,-13],[-17,-38],[0,-1],[-21,-47],[-8,-19],[-8,-17],[-7,-17],[-34,-75],[-5,-11],[-14,-33],[-7,-14],[-6,-15],[-8,-17],[-25,-58],[-20,-46],[-9,-21],[-23,-53],[-4,-10],[-15,-34],[-4,-9],[-7,-15],[-35,-80],[-34,-76],[-11,-32],[-6,-10]],[[65428,44892],[-10,-22],[-9,-22],[-7,-16],[-12,-26],[-27,-63],[-6,-14],[-4,-9],[-14,-32],[-38,-87],[-4,-9],[-1,-1],[-4,-11],[-5,-10],[-4,-9],[-3,-9],[-11,-24],[-4,-10],[-5,-11],[-8,-17],[-6,-14],[-6,-15],[-10,-22],[-24,-56],[-7,-15],[-4,-10],[-12,-26],[-11,-26],[-9,-20],[-36,-84],[-9,-20],[-22,-51],[-8,-18],[-6,-13],[-14,-32],[-18,-42],[-13,-31],[-18,-42],[-13,-30],[-11,-24],[-7,-17],[-36,-82],[-5,-12],[-16,-36],[-10,-23],[-3,-14],[-5,-17],[-7,-27],[-5,-19],[-5,-20],[-3,-9],[1,-10],[1,-13],[0,-1],[2,-13],[11,1],[18,2],[16,1],[2,0],[14,5],[4,9],[5,12],[5,12],[8,15],[5,9],[4,7],[2,1],[8,9],[7,6],[9,7],[10,7],[8,5],[10,3],[9,4],[12,3],[11,2],[0,-25],[0,-1],[0,-68],[0,-10],[1,-32],[0,-55],[0,-12],[0,-2],[-2,-17],[-1,-15],[-2,-11],[0,-5],[-2,-12],[-2,-20],[-4,-8],[-6,-7],[-5,-7],[-9,-35],[-9,-18],[-7,-13],[-6,-10],[-11,-20],[-12,-23],[-5,-9],[-49,-92],[-92,-144]],[[64852,43035],[-46,15],[-53,17],[-29,10],[-72,23],[-70,23],[-15,5],[-40,13],[-8,3],[-69,22],[-78,25],[-464,151],[-6,5],[-72,22],[-10,3],[-16,5],[-34,11],[-54,18],[-6,1],[-208,69],[-13,4],[-1,1],[-82,27],[-16,5],[-20,7],[-3,1],[-6,2],[-42,14],[-28,9],[-36,12],[-18,6],[-45,15],[-48,15]],[[63144,43594],[-1,77],[0,58],[-1,158],[0,4],[0,133],[0,30],[0,10],[0,13],[0,9],[0,29],[0,13],[1,12],[0,11],[0,12],[0,11],[0,29],[0,34],[0,9],[0,22],[1,8],[-7,7],[-30,34],[-27,31],[-6,7],[-16,18],[-12,15],[-16,17],[-15,10],[-16,8],[-10,3],[-10,2],[-14,-1],[-16,-5],[-9,-5],[-10,-6],[-7,-6],[-12,-7],[-6,-5],[-8,-4],[-14,-7],[-8,-4],[-8,-5],[-12,-5],[-17,-6],[-8,-2],[-8,-5],[-13,-8],[-18,-13],[-10,-5],[-9,-4],[-11,-1],[-16,2],[-9,5],[-8,9],[-6,8],[-9,14],[-13,19],[-6,13],[-7,17],[-6,9],[-3,10],[-3,9],[-5,19],[-1,11],[-4,17],[-4,13],[-3,14],[0,20],[7,15],[7,7],[14,10],[15,11],[12,7],[15,9],[9,5],[7,4],[7,7],[6,7],[5,15],[1,10],[-2,11],[-4,12],[-4,9],[-7,15],[-8,13],[-11,16],[-10,14],[-9,14],[-4,8],[-6,11],[-9,18],[-8,17],[-6,12],[-5,13],[-6,14],[-4,10],[-3,9],[-10,23],[-6,13],[-4,10],[-10,20],[-3,16],[-2,19],[0,12],[2,11],[5,25],[4,28],[1,13],[-1,11],[-1,2],[-3,14],[-5,16],[-5,9],[-9,11],[-3,4],[-9,10],[-9,9],[-8,8],[-21,21],[-11,11],[-2,2],[-5,9],[0,12],[2,7],[1,6],[3,16],[-3,12],[-6,8],[-7,3],[-10,4],[-16,4],[-8,1],[-11,-2],[-12,-4],[-12,2],[-6,9],[-9,15],[-3,12],[-1,11],[1,12],[2,11],[5,12],[5,7],[6,8],[11,9],[12,2],[12,3],[13,1],[18,5],[8,2],[11,-1],[9,-1],[11,-5],[10,-3],[12,0],[12,-1],[9,3],[8,2],[19,7],[9,3],[13,2],[12,-1],[8,-2],[16,-3],[11,-2],[12,4],[8,2],[7,6],[7,12],[5,10],[0,18],[-2,11],[-5,15],[-11,32],[-3,10],[-3,18],[-3,9],[-5,11],[-5,10],[-7,15],[-9,16],[-7,9],[-9,13],[-25,41],[4,12],[5,7],[7,7],[7,9],[10,13],[9,20],[2,15],[0,12],[1,10],[2,12],[14,27],[10,15],[9,12],[7,4],[7,3],[13,-2],[16,-3],[17,0],[19,-1],[10,2],[6,6],[21,32],[5,8],[11,18],[6,11],[3,10],[7,6],[1,0],[38,33],[6,6],[18,16],[11,7],[10,8],[6,8],[10,17],[-1,15],[-5,8],[-6,7],[-5,7],[-12,12],[-27,6],[-8,1],[-11,-3],[-11,-5],[-15,-4],[-10,-1],[-9,0],[-15,1],[-17,0],[-16,2],[-10,3],[-13,7],[-12,11],[-1,1],[-12,12],[-10,5],[-10,1],[-8,3],[-9,3],[-8,2],[-19,2],[-9,0],[-9,-1],[-9,0],[-8,2],[-15,3],[-7,-2],[-10,-1],[-2,-1],[-5,-1],[-3,0],[-7,-1],[-9,-2],[-16,-6],[-11,0],[-21,10],[-15,20],[-6,14],[-5,14],[-1,0],[-3,20],[7,47],[7,11],[22,38],[22,31],[5,30],[-13,23],[-59,69],[0,2],[-6,25],[5,20],[28,35],[25,14],[13,-1],[3,0],[19,-1],[40,-14],[14,6],[20,29],[6,21],[4,16],[2,11],[1,15],[1,28],[12,34],[16,43],[0,2],[5,11],[4,7],[8,5],[8,6],[2,0],[27,-4],[17,-2],[43,3],[29,20],[18,15],[49,68],[5,24],[0,3],[2,9],[-7,21],[-31,24],[-9,4],[-37,15],[-23,13],[-7,4],[-7,4],[-15,9],[-19,2],[-33,3],[-11,0],[-5,-1],[-11,0],[-6,-8],[-7,-27],[-2,-10],[-15,-23],[-35,-15],[-24,-1],[-37,-2],[-5,6],[-2,19],[2,13],[16,105],[3,44],[0,5],[2,27],[-6,26],[-4,9],[-1,1],[-5,11],[-11,11],[-7,7],[-8,7],[-15,15],[-16,9],[-10,5],[-16,8],[-32,8],[-43,-1],[-27,0],[-16,0],[-35,18],[-21,27],[-8,13],[-5,11],[-4,11],[-1,13],[2,9],[1,4],[3,11],[7,13],[7,11],[8,8],[8,7],[11,10],[8,7],[8,9],[5,10],[1,11],[0,14],[-3,11],[-3,14],[-1,15],[-1,13],[0,24],[1,27],[0,11],[2,21],[2,13],[2,11],[1,10],[3,17],[3,17],[3,14],[2,15],[2,7],[3,10],[5,12]],[[79750,46757],[-5,-13],[-5,-8],[-1,-9],[-6,-8],[-6,-6],[-7,-5],[-6,-7],[-5,-16],[7,-7],[-5,-11],[-7,-7],[-1,-10],[-8,-6],[-1,-9],[4,-8],[8,-4],[12,-7],[-1,-9],[8,-2],[2,-9],[-8,0],[-10,-6],[0,-11],[10,-4],[-3,-8],[-8,1],[-5,-8],[5,-11],[-13,-1],[-7,-3],[-4,-13],[-3,9],[-8,4],[-7,-7],[-3,-10],[-3,-9],[-9,1],[-8,-2],[-7,-6],[-1,-9],[-2,-11],[7,-8],[7,-8],[-5,-8],[10,-2],[9,-4],[2,-9],[2,-13],[6,-9],[7,-11],[7,-7],[8,-3],[3,-8],[7,-5],[12,-3],[8,3],[-2,-10],[7,-6],[-1,-18],[8,-10],[8,-1],[4,-8],[5,-13],[8,-9],[7,-5],[-5,-8],[-8,0],[-4,-9],[5,-7],[2,-9],[8,-4],[6,7],[-8,5],[4,9],[8,-3],[4,-10],[0,-11],[5,-9],[8,-13],[-5,-8],[-1,-10],[-2,-14],[-5,-7],[-4,-9],[8,-1],[8,-7],[-4,-8],[-7,-3],[-1,-10],[0,-9],[-8,-3],[-9,-1],[2,-10],[-8,-3],[-9,0],[-7,-7],[1,-10],[8,-2],[-8,-7],[2,-9],[7,-7],[-4,-9],[-8,-1],[-6,-7],[1,-10],[-1,-9],[2,-10],[3,-9],[6,-8],[6,-6],[11,-11],[10,-7],[-2,-9],[-2,-10],[4,-10],[4,-10],[12,-5],[7,-6],[2,-9],[-3,-9],[8,-5],[-4,-9],[6,-6],[8,-2],[-7,-4],[-7,-6],[3,-9],[-4,-9],[-1,-10],[2,-9],[0,-10],[0,-13],[-2,-10],[-6,-11],[-4,-8],[-6,-6],[1,-10],[-4,-10],[-7,-4],[-9,-2],[-7,-9],[-5,-8],[-5,-8],[-2,-12],[-9,5],[-5,-8],[4,-8],[-9,-9],[1,-14],[-2,-13],[-6,-4],[-8,-1],[-8,-2],[2,-9],[3,-11],[-8,-2],[-13,8],[-5,-8],[4,-8],[2,-11],[3,-10],[-8,0],[5,-9],[-3,-9],[3,-9],[8,3],[5,-7],[0,-10],[-9,-1],[-7,-4],[5,-8],[7,-6],[5,-7],[-1,-10],[-8,-2],[2,-9],[7,-1],[2,-10],[5,-9],[8,-9],[8,1],[-3,-9],[1,-10],[5,-9],[5,-8],[9,-1],[5,-8],[-4,-9],[-6,-7],[1,-10],[-1,-10],[-4,-11],[-1,-11],[3,-12],[4,-9],[-7,-2],[-9,-1],[0,-10],[3,-10],[2,-19],[4,-8],[7,-8],[1,-10],[-3,-9],[7,3],[7,-6],[3,-12],[-3,-9],[4,-9],[-4,-9],[1,-10],[2,-9],[5,-9],[-7,-6],[1,-10],[10,-3],[9,4],[8,-2],[5,-10],[-4,-8],[-4,-9],[6,-7],[-1,-10],[-5,-7],[-2,-11],[-1,-10],[-4,-10],[-7,3],[0,-12],[-1,-11],[-6,-10],[-8,0],[1,-11],[11,-1],[1,-10],[-1,-12],[7,-4],[8,-2],[-3,-10],[-2,-12],[0,-10],[-8,-1],[-7,-8],[-6,-7],[2,-10],[-6,-8],[1,-10],[-8,-3],[-9,-2],[-6,-8],[-3,-10],[5,-8],[9,5],[-2,-9],[-1,-9],[5,-10],[2,-10],[0,-10],[6,-8],[-11,-2],[-8,-2],[-6,-5],[-2,-11],[-5,-9],[-2,-11],[3,-9],[-2,-10],[2,-11],[-7,3],[-13,4],[-8,-2],[-4,-9],[-8,-2],[-8,-5],[1,-13],[1,-9],[5,-8],[-6,-6],[-7,4],[-2,-10],[2,-13],[-5,-10],[-2,-12],[-5,-9],[8,-8],[0,-11],[-1,-10],[0,-10],[-2,-3],[-3,-7],[-12,-3],[-10,-1],[-9,-2],[0,-10],[2,-11],[-6,-8],[-7,-4],[-3,-1],[2,-3],[3,-5],[0,-5],[-1,-4],[-4,-9],[2,-8],[1,-2],[9,0],[10,1],[1,-9],[3,-9],[8,-11],[8,-5],[0,-10],[2,-12],[-2,-9],[-5,-9],[-2,-12],[-2,-10],[-4,-8],[7,-9],[11,-5],[9,-3],[8,-4],[8,-3],[9,-2],[8,-8],[7,-6],[4,-11],[-2,-10],[6,-6],[9,-3],[8,1],[3,-9],[-3,-10],[5,-7],[9,-2],[6,-7],[4,-8],[8,-3],[2,-9],[8,0],[5,-8],[3,-8],[-8,-4],[-9,-1],[2,-9],[8,-4],[9,-5],[8,4],[7,-1],[10,-2],[1,-11],[-3,-9],[8,-1],[8,-5],[2,-9],[-9,-3],[-2,-10],[2,-10],[-1,-12],[1,-10],[4,-9],[3,-11],[7,-8],[6,-7],[-5,-7],[-9,-10],[0,-10],[3,-12],[2,-10],[1,-12],[-3,-10],[-3,-11],[-1,-10],[-7,-7],[-1,-10],[5,-11],[-5,-7],[4,-9],[-2,-9],[3,-13],[5,-8],[-1,-10],[-1,-9],[2,-12],[-3,-9],[-4,-13],[-1,-9],[7,-3],[9,1],[9,12],[14,-10],[3,-10],[-4,-9],[-6,-9],[5,-7],[10,5],[3,9],[7,5],[8,-1],[6,-9],[4,-8],[9,-6],[8,-3],[6,-7],[-2,-10],[-6,-7],[-1,-9],[-3,-10],[5,-8],[-8,-2],[-11,-2],[1,-11],[-7,-6],[0,-10],[7,-6],[8,5],[8,3],[5,-7],[-7,-7],[0,-11],[9,-7],[6,-10],[7,-6],[6,-6],[8,-6],[12,-8],[-3,-11],[-6,-6],[1,-10],[8,2],[7,-6],[8,-10],[9,0],[-1,-10],[-4,-9],[-3,-10],[-7,-7],[-1,-15],[-7,4],[-8,-1],[-1,-10],[8,-4],[5,-7],[6,-13],[14,1],[8,0],[8,5],[6,-7],[7,-6],[-2,-9],[-6,-9],[-3,-14],[2,-9],[11,-1],[2,-9],[-1,-11],[10,-2],[3,-10],[9,5],[6,-6],[2,-10],[-4,-12],[-1,-12],[0,-10],[-1,-10],[0,-12],[-4,-13],[-15,-2],[-7,-7],[-5,-9],[4,-8],[8,-5],[-3,-10],[-8,-5],[7,-7],[2,-10],[-6,-7],[-6,6],[-3,11],[-1,10],[-7,6],[-6,-5],[3,-9],[-1,-10],[-4,-11],[-7,-6],[8,-3],[7,-5],[-5,-10],[-4,-9],[7,-6],[9,-6],[5,-8],[10,-6],[-1,-11],[-3,-9],[3,-9],[8,2],[4,9],[9,0],[8,-3],[6,-6],[9,1],[6,-6],[-3,-9],[-2,-12],[5,-8],[5,-8],[-3,-9],[-2,-9],[5,-7],[5,-9],[7,-4],[8,-5],[-4,-9],[-16,-6],[-6,-9],[-2,-11],[3,-14],[6,9],[8,4],[10,2],[8,2],[2,9],[7,5],[6,-8],[-3,-10],[-5,-21],[-7,3],[-8,1],[2,-10],[-3,-10],[5,-9],[8,-3],[8,-7],[4,-8],[8,-20],[4,-9],[6,-10],[8,-5],[17,-6],[9,-2],[10,0],[8,2],[9,4],[10,7],[7,6],[8,2],[18,4],[10,4],[8,-6],[0,-9],[-2,-15],[-6,-6],[-5,-8],[1,-12],[6,-8],[7,-1],[7,5],[9,10],[6,8],[6,5],[8,1],[9,-9],[7,-9],[10,-9],[6,6],[7,8],[7,6],[9,0],[6,-8],[8,-6],[16,-9],[10,-5],[7,-9],[3,-11],[-2,-10],[-4,-13],[-3,-8],[3,-9],[9,0],[11,2],[10,5],[9,1],[7,-4],[4,-9],[-5,-8],[-9,-9],[-5,-7],[-4,-10],[-2,-10],[3,-9],[-1,-10],[-3,-9],[-5,-11],[-6,-10],[-7,-9],[-9,-8],[-9,-5],[-11,-4],[-8,-2],[-9,-1],[-11,0],[-8,4],[-7,5],[-1,10],[-9,8],[-8,-2],[-9,-8],[-12,-11],[-7,3],[-7,7],[-3,10],[-2,9],[-5,7],[-10,6],[-7,-5],[0,-11],[-3,-9],[-1,-4],[-3,-6],[-7,-7],[-7,-4],[-1,0],[-12,-5],[-8,-4],[-7,-6],[-5,-8],[-3,-11],[-1,-11],[2,-10],[3,-11],[4,-11],[5,-8],[8,-3],[8,1],[8,-3],[7,-5],[-4,-9],[-6,-7],[-8,-7],[-11,-9],[-9,-12],[-4,-19],[14,-26],[2,-11],[-5,-9],[-1,0],[-7,-1],[-6,8],[-7,9],[-5,10],[-6,8],[-7,5],[-7,-5],[-2,-10],[1,-9],[3,-12],[5,-17],[0,-12],[-7,-5],[-9,3],[-8,0],[-8,-4],[-3,-11],[4,-11],[5,-7],[1,-11],[-3,-9],[-3,-9],[-2,-10],[-7,-4],[-7,6],[-12,11],[-4,9],[-8,10],[-10,2],[-10,1],[-14,-1],[-8,-2],[-9,-7],[-5,-10],[-2,-12],[-6,-6],[-10,-5],[-11,-5],[-11,0],[-10,1],[-9,5],[-8,1],[-8,4],[-9,3],[-8,-4],[-7,-6],[-4,-8],[-1,-11],[2,-11],[5,-7],[6,-10],[6,-10],[2,-12],[1,-10],[-2,-10],[-4,-9],[-3,-12],[2,-11],[5,-9],[8,-7],[10,-8],[4,-9],[1,-9],[1,-10],[0,-2],[-2,-9],[-3,-13],[-1,-12],[-2,-12],[0,-16],[3,-12],[2,-11],[1,-10],[-1,-12],[-5,-9],[-6,-5],[-9,0],[-11,5],[-10,3],[-10,2],[-6,-8],[-2,-11],[1,-12],[1,-12],[2,-10],[3,-14],[4,-10],[7,-9],[7,-4],[10,-3],[8,-1],[7,-1],[8,-2],[8,-5],[6,-7],[-1,-10],[-5,-8],[-6,-7],[-7,-7],[-6,-4],[-8,-4],[-8,-4],[-11,-6],[-8,-3],[-8,-2],[-7,-2],[-10,-3],[-12,-5],[-9,-7],[-2,-10],[0,-11],[-5,-7]],[[79851,42141],[-1,2],[-11,20],[-8,19],[-5,9],[-7,10],[-8,12],[-2,15],[3,15],[6,10],[15,23],[20,31],[11,15],[4,11],[2,15],[-2,20],[-5,23],[-11,26],[-2,10],[-1,1],[-2,12],[5,11],[6,7],[25,33],[1,21],[-5,10],[-7,4],[-8,5],[-20,19],[-10,13],[-12,8],[-7,7],[-7,4],[-9,3],[-9,-1],[-15,-10],[-11,-11],[-6,-5],[-8,-4],[-10,-5],[-8,-3],[-12,-2],[-11,3],[-8,4],[-11,9],[-4,15],[2,12],[5,17],[6,17],[5,23],[4,9],[3,10],[1,11],[-2,15],[-3,8],[-9,14],[-6,8],[-9,11],[-12,10],[-8,2],[-12,-1],[-9,-3],[-17,3],[-14,11],[-9,3],[-7,2],[-9,1],[-7,4],[-9,7],[-7,5],[-15,0],[-10,-4],[-9,-9],[-5,-9],[-3,-17],[-2,-14],[0,-10],[-2,-14],[-1,-17],[-2,-15],[0,-13],[-1,-16],[-5,-12],[-11,-11],[-10,-8],[-9,-6],[-8,-2],[-11,-4],[-7,-10],[-6,-10],[-7,-10],[-14,-14],[-10,-5],[-8,-1],[-11,6],[-11,8],[-9,5],[-9,4],[-8,2],[-15,-1],[-7,-3],[-18,-9],[-10,-6],[-33,-20],[-10,-8],[-25,-15],[-13,-4],[-17,-3],[-9,-2],[-8,1],[-11,2],[-8,1],[-10,-1],[-11,-5],[-6,-7],[-22,-16],[-17,-6],[-15,2],[-12,3],[-9,4],[-8,4],[-12,10],[-8,8],[-8,5],[-9,-1],[-3,-9],[2,-13],[7,-24],[-3,-11],[-7,-7],[-22,-21],[-9,-8],[-7,-6],[-8,-2],[-12,-1],[-9,1],[-11,5],[-17,8],[-15,11],[-7,6],[-6,9],[-10,18],[-6,7],[-12,4],[-11,4],[-11,4],[-15,10],[-6,7],[-12,18],[-10,22],[-6,11],[-8,14],[-5,9],[-38,12],[-3,12],[4,12]],[[78752,42603],[15,9],[1,1],[2,1],[2,1],[4,1],[2,3],[8,7],[0,2],[2,10],[-2,11],[-1,1],[-2,4],[-1,3],[-8,5],[-16,10],[-8,5],[-37,25],[-6,5],[-9,11],[0,9],[0,1],[-3,11],[2,5],[11,20],[10,10],[10,10],[9,4],[10,3],[18,3],[6,5],[0,10],[-14,33],[-4,14],[-1,12],[8,25],[13,11],[17,1],[8,-2],[9,-1],[11,2],[10,2],[11,-2],[10,-5],[17,-9],[12,-8],[18,-14],[10,-7],[8,-5],[9,0],[7,2],[13,7],[11,10],[4,10],[-1,18],[-3,17],[-5,12],[-6,10],[-9,16],[-8,8],[-9,-1],[-17,-3],[-21,-5],[-11,-1],[-13,4],[-8,6],[-4,9],[-4,14],[6,8],[8,8],[9,7],[7,10],[5,11],[6,6],[-4,9],[-10,21],[-7,16],[-9,21],[-4,19],[1,26],[3,26],[3,15],[8,22],[3,9],[-2,16],[-7,6],[-14,0],[-8,-8],[-6,-11],[-4,-13],[-6,-11],[-7,-5],[-9,1],[-15,9],[-7,8],[-16,13],[-17,5],[-12,6],[-15,7],[-15,13],[-9,10],[-18,19],[-19,11],[-8,0],[-24,-7],[-9,-12],[-9,-9],[-10,-8],[-13,-3],[-8,1],[-14,11],[-4,9],[0,11],[3,21],[2,10],[1,25],[-5,10],[-10,7],[-7,3],[-13,5],[-20,12],[-14,14],[-23,28],[-10,13],[-8,14],[-9,12],[-5,8],[-4,9],[-1,13],[2,12],[7,10],[8,8],[9,4],[13,-4],[18,-12],[13,-2],[8,5],[0,14],[-4,8],[-6,9],[-6,8],[-12,18],[-3,6],[-8,17],[-6,16],[-16,35],[-20,43],[-11,19],[-9,9],[-8,3],[-9,3],[-7,2],[-2,0],[-11,3],[-8,3],[-7,5],[-9,4],[-8,4],[-6,7],[-6,9],[-4,10],[-3,11],[-1,11],[0,10],[1,12],[2,11],[4,12],[2,12],[-2,9],[-8,6],[-9,2],[-9,-4],[-14,-9],[-8,-7],[-8,-5],[-10,-5],[-15,0],[-10,4],[-7,5],[-4,10],[-3,9],[-1,13],[3,13],[10,8],[8,3],[8,0],[9,-2],[9,1],[9,1],[8,2],[9,2],[10,6],[7,3],[7,8],[5,10],[5,13],[2,9],[2,19],[-1,11],[-5,20],[-3,12],[-3,10],[-3,17],[-4,16],[0,10],[-3,9],[-3,9],[-4,10],[-1,9],[-4,12],[-7,9],[-8,2],[-9,-1],[-10,-1],[-10,2],[-12,3],[-9,3],[-10,2],[-8,3],[-8,3],[-10,6],[-11,6],[-7,5],[-8,2],[-8,-5],[-5,-10],[0,-11],[6,-9],[10,-16],[3,-12],[-1,-23],[-5,-8],[-7,-4],[-9,-1],[-7,4],[-4,9],[-3,11],[-1,16],[-3,11],[-4,11],[-5,7],[-8,4],[-18,2],[-8,-3],[-8,-7],[-4,-8],[-1,-11],[1,-9],[5,-11],[5,-8],[9,-8],[5,-8],[3,-11],[-2,-10],[-6,-7],[-6,-5],[-8,-2],[-8,-1],[-8,0],[-8,2],[-9,0],[-17,3],[-18,6],[-10,5],[-9,4],[-7,4],[-9,3],[-19,7],[-5,7],[-5,7],[-7,11],[-2,6],[-3,5],[-5,8],[-8,3],[-10,2],[-9,0],[-7,-2],[-10,-1],[-10,0],[-10,2],[-7,5],[-9,9],[-7,7],[-6,6],[-5,8],[-5,14],[-4,10],[-3,11],[-3,9],[-5,13],[-3,12],[-4,12],[-2,16],[-2,13],[-3,15],[-2,10],[-2,16],[-1,20],[3,11],[4,15],[1,10],[2,13],[0,17],[1,12],[0,11],[-2,10],[-5,18],[-2,11],[-1,12],[2,11],[6,8],[6,8],[7,5],[8,11],[0,10],[-4,10],[-5,9],[-7,10],[-9,8],[-7,7],[-6,8],[-12,9],[-10,5],[-9,1],[-8,0],[-7,-4],[-6,-9],[2,-11],[4,-10],[5,-10],[3,-8],[3,-9],[4,-9],[3,-10],[4,-11],[0,-10],[0,-18],[-2,-12],[-4,-13],[-7,-9],[-11,-4],[-10,-3],[-11,-1],[-10,4],[-11,4],[-9,8],[-6,6],[-6,12],[-4,14],[-4,11],[-5,14],[-5,9],[-5,8],[-10,14],[-10,10],[-7,10],[-9,8],[-11,11],[-7,10],[-5,10],[-2,9],[-2,10],[-1,12],[-2,11],[-7,9],[-9,5],[-9,3],[-14,5],[-14,4],[-9,2],[-8,2],[-9,3],[-7,4],[-8,7],[-7,10],[-5,7],[-5,8],[-7,15],[-5,7],[-7,8],[-9,6],[-10,3],[-10,-1],[-10,-3],[-11,-4],[-7,-4],[-11,-7],[-8,-3],[-8,0],[-14,-1],[-24,-3],[-8,0],[-8,1],[-9,7],[-6,8],[-4,12],[-1,10],[1,10],[4,16],[4,15],[8,28],[1,11],[0,12],[-4,9],[-7,8],[-7,5],[-12,4],[-7,0],[-8,-3],[-8,-8],[-7,-7],[-8,-10],[-9,-10],[-11,-12],[-9,-8],[-8,-8],[-8,-6],[-9,2],[-9,4],[-9,11],[-10,15],[-7,12],[-7,14],[-4,11],[-2,10],[-2,16],[-3,12],[-3,11],[-1,12],[-2,13],[-8,9],[-7,-4],[-13,-15],[-17,-9],[-16,-2],[-12,3],[-14,3],[-13,4],[-16,3],[-26,5],[-29,2],[-25,0],[-22,1],[-17,-2],[-13,-1],[-8,-1],[-6,-1],[-17,0],[-8,-1],[-13,6],[-5,7],[-6,7],[-8,8],[-8,7],[-9,7],[-11,1],[-18,-2],[-13,-2],[-17,-7],[-7,-5],[-17,-10],[-10,-2],[-8,0],[-9,6],[-3,13],[0,11],[1,19],[-9,14],[-10,6],[-12,4],[-11,1],[-17,-2],[-15,-1],[-18,1],[-18,3],[-21,8],[-12,6],[-18,6],[-12,2],[-9,1],[-13,-1],[-11,-2],[-12,-2],[-8,-1],[-12,3],[-8,6],[-2,11],[1,13],[7,10],[7,7],[7,5],[7,6],[7,6],[10,12],[4,10],[3,15],[3,12],[6,15],[9,6],[11,5],[11,8],[15,10],[10,9],[9,11],[5,9],[5,12],[4,14],[2,17],[0,15],[-1,17],[-1,17],[-1,12],[0,12],[-1,18],[0,12],[-1,11],[-2,16],[-2,16],[-1,15],[0,10],[1,9],[4,16],[3,9],[5,13],[4,9],[8,10],[7,3],[14,0],[19,-1],[11,1],[9,2],[8,3],[13,7],[11,12],[7,19],[2,11]],[[58465,47679],[0,-26],[0,-109],[1,-74],[1,-224],[0,-47],[1,-130],[1,-117],[0,-161],[1,-174],[1,-120],[0,-48],[0,-130],[1,-17],[0,-91],[0,-60],[0,-20],[0,-57],[-1,-107],[0,-8],[-1,-56],[0,-88],[0,-18],[0,-40],[0,-23],[0,-72],[-1,-10],[0,-8],[0,-10],[1,-14],[-1,-13],[0,-18],[1,-122],[0,-41],[-1,-33],[0,-23],[0,-12],[-1,-76],[0,-25],[0,-44],[-2,-221],[0,-55],[0,-36],[1,-38],[0,-28],[0,-110],[0,-10],[0,-75],[0,-43],[0,-58],[0,-24],[0,-49],[0,-55],[0,-16],[1,-43],[0,-56],[0,-103],[0,-83],[0,-87],[1,-205],[0,-55],[0,-28],[-1,-22]],[[58468,43713],[-49,0],[-23,0],[-50,0],[-10,0],[-108,-1],[-35,-2],[-65,0],[-15,0],[-2,0],[-59,0],[-23,1],[-33,0],[-10,0],[-46,0],[-19,0],[-46,1],[-15,0],[-197,1],[-9,0],[-57,0],[-64,1],[-23,0],[-87,1],[-181,1],[-41,0],[-66,0],[-40,0],[-21,1],[-35,0],[-77,0],[-18,-1],[-24,0],[-11,0],[-129,0],[-60,0],[-17,0],[-309,1],[-104,4],[-25,0],[-73,1],[-41,1],[-28,0],[-35,0],[-38,0],[-12,1],[-19,1],[-72,1],[-21,1],[-44,-1]],[[55882,43726],[-32,0],[-79,-1],[-36,-1],[-32,0],[-35,0],[-99,1],[-46,1],[-110,-1],[-74,-1],[-40,0],[-122,-1],[-42,0],[-24,0],[-3,0],[-73,-1],[-11,0],[-37,0],[-55,2],[-39,0],[-87,0],[-96,0],[-99,0],[-23,0],[-80,0],[0,50],[-1,104],[0,36],[0,88],[1,49],[-1,43],[1,95],[1,44],[0,79],[0,223],[0,77],[1,54],[0,119],[0,18],[0,67],[1,32],[0,175],[0,1],[1,197],[0,42],[0,45],[0,13],[0,109],[0,103],[0,85],[0,32]],[[63144,43594],[-123,41],[-71,24],[-14,4],[-5,2],[-20,7],[-12,4],[-115,38],[-28,9],[-81,24],[-28,0],[-62,-1],[-78,-1],[-15,0],[-26,0],[-15,0],[-20,0],[-18,0],[-10,0],[-15,0],[-30,-1],[-26,0],[-56,-1],[-24,0],[-9,0],[-8,0],[-176,-2],[-26,0],[-9,0],[-25,-1],[-11,0],[-49,-1],[-28,-1],[-15,0],[-23,0],[-40,-1],[-44,-1],[-65,-1],[-22,0],[-46,-1],[-19,-1],[-45,0],[-41,-1],[-1,0],[-55,-1],[-41,-1],[-29,-1],[-121,-3]],[[61304,43726],[-25,0],[-41,-1],[-10,0],[-2,0],[-47,-1],[-11,0],[-48,-1],[-17,-1],[-13,0],[-10,0],[-16,-1],[-16,0],[-47,0],[-42,0],[-54,-1],[-10,0],[-78,0],[-30,0],[-19,0],[-17,0],[-13,0],[-53,-1],[-70,0],[-12,0],[-25,0],[-19,0],[-19,0],[-104,0],[-4,0],[-10,0],[-10,0],[-8,0],[-12,0],[-122,-1],[-10,0],[-8,0],[-104,-1],[-10,0],[-37,0],[-27,-1],[-32,1],[-1,0],[-36,1],[-31,0],[-23,0],[-36,1],[-48,1],[-44,0],[-75,0],[-41,0],[-108,1],[-14,-1],[-8,0],[-101,-1],[-64,1],[-11,0],[-26,0],[-23,0],[-36,1],[-24,0],[-18,0],[-14,0],[-85,-1],[-23,0],[-7,0],[-25,0],[-18,0],[-11,-1],[-11,0],[-37,0],[-23,0],[-107,-2],[-54,0],[-45,-1],[-34,0],[-90,-2],[-42,0],[-11,0],[-67,0],[-19,0],[-83,-1]],[[72238,43328],[-701,-261],[-346,-129],[-33,-12],[-284,-106]],[[70874,42820],[-18,6],[-38,23],[-10,6],[-9,5],[-11,7],[-26,15],[-19,12],[-31,18],[-8,4],[-7,5],[-11,6],[-12,7],[-19,12],[-14,8],[-10,5],[-23,14]],[[70608,42973],[-9,-4],[-6,-8],[-7,-6],[-10,-6],[-27,4],[-2,0],[-2,6],[-1,5],[-1,16],[-4,14],[-7,18],[-2,6],[-10,-1],[-8,-2],[-1,-1],[-7,-3],[-5,6],[-1,10],[-1,12],[-4,10],[-8,9],[-11,7],[-7,33],[-7,4],[-14,2],[-10,2],[2,19],[-7,15],[-9,4],[-8,-4],[-12,0],[-8,5],[-8,3],[-19,11],[-14,7],[-10,7],[-7,8],[-7,-11],[-5,-12],[-6,-6],[-7,-13],[-11,-3],[-46,5],[-12,11],[-10,12],[-9,10],[-34,38],[-9,8],[-3,10],[-3,10],[-7,31],[-23,3],[-8,-1],[-11,5],[-5,8],[-4,9],[1,9],[-2,18],[-2,12],[-4,10],[-11,4],[-10,1],[-8,0],[-8,-16],[-4,-13],[-7,-14],[-10,-4],[-12,2],[-8,6],[-3,24],[-3,10],[2,12],[0,10],[-24,-2],[-20,-2],[-14,-2],[-44,-22],[-8,-4],[-10,-4],[-16,16],[-8,5],[-18,40],[-12,8],[-8,5],[-9,5],[-9,3],[-14,2],[-14,5],[-6,7],[-3,15],[-8,2],[-19,4],[-12,-4],[-26,18],[-9,7],[-18,16],[-11,4],[-10,3],[-15,2],[-21,10],[-20,7],[-10,3],[-8,2],[-14,25],[-8,6],[-12,6],[-21,18],[-14,9],[-14,10],[-33,-30],[-26,-25],[-17,-15],[-8,-8],[-10,-30],[-13,2],[-6,7],[-8,7],[-83,27],[-10,3],[-12,4],[-7,2],[-10,3],[-16,-24],[-7,-10],[-29,8],[3,29],[0,13],[-12,31],[-3,12],[-7,23],[-3,20],[-17,3],[-11,2],[-52,9],[-7,37],[-20,2],[-11,1],[-5,24],[-6,8],[-14,1],[-8,4],[-6,6],[-13,9],[-11,-10],[-6,-7],[-17,0],[-5,0],[-5,0],[-8,-1],[-13,-3],[-10,-4],[-15,-7],[-9,-6],[-8,-5],[-6,15],[-1,12],[-2,10],[-9,-4],[-8,-3],[-9,3],[-7,5],[-8,1],[-16,-11],[-45,-28],[-18,-19],[-2,-11],[-1,-10],[-2,-10],[-2,-13],[-15,-2],[-40,-6],[-16,-2],[-8,-1],[-6,6],[-9,0],[-8,-5],[-7,-5],[-11,-7],[-6,-4],[-2,-1],[-16,-11],[-7,-4],[-7,-5],[-32,-10],[-11,-4],[-20,-12],[-30,-14],[-7,-12],[-10,-19],[-11,-8],[-9,-4],[-7,-3],[-8,-3],[-19,-4],[-9,-1],[-8,0],[-9,5],[-11,7],[-7,4],[-15,9],[-9,5],[-7,4],[-9,6],[-8,5],[-9,5],[-10,6],[-39,-21],[-16,7],[-4,1],[-4,1],[-1,1],[-6,5],[-10,-1],[-12,-1],[-17,-2],[-8,-1],[-8,-1],[-9,0],[-2,-4],[-9,-29],[-2,-12],[-5,-16],[-2,-11],[-10,-39],[-4,-13],[-10,-39],[-3,-12],[-26,1],[-18,0],[-9,0],[-26,-11],[-37,-18],[-18,0],[-35,-2],[-30,-1],[-23,-11],[-3,-1],[-11,-6],[-10,-4],[-10,-6],[-6,-3],[-60,-36],[-20,-12],[-42,-1],[-26,-1],[-10,0],[-17,-1],[-19,-10],[-11,-8],[-3,-12],[-6,-11],[-11,-19],[-6,-7],[-5,-7],[-7,-9],[-6,-9],[17,-58],[-41,-6],[-9,0],[-11,-1],[-14,-1],[-11,-1],[-8,0],[-9,0],[-9,1],[-8,-2],[-16,-8],[-8,-5],[-8,-3],[-11,-6],[-8,6],[-5,10],[-10,26],[-9,37],[-18,10],[-16,4],[-11,11],[-13,14],[-6,6],[-8,9],[-10,0],[-20,4],[-11,3],[-15,7],[-10,6],[-15,8],[-7,1],[-14,0],[-14,0],[-8,0],[-13,0],[-8,0],[-12,0],[-11,-2],[-8,0],[-8,2],[-10,9],[-6,9],[-9,4],[-7,7],[-6,8],[-14,8],[-8,4],[-9,5],[-8,4],[-13,7],[-7,5],[-4,2],[-5,24],[-50,43],[-29,27],[-11,10],[-7,6],[-7,5],[-6,6],[-8,6],[-27,23],[-17,14],[-1,19],[2,21],[0,11],[-3,10],[-4,12],[-3,9],[-5,17],[-4,11],[-5,16],[-16,47],[-6,20],[-4,11],[-11,34],[-7,22],[-4,14],[11,11],[0,11],[1,18],[1,14],[-10,15],[-14,22],[-6,9],[-39,32],[-18,15],[-15,24],[-17,27],[2,18],[3,25],[3,24],[2,15],[1,10],[3,19],[4,38],[3,28],[3,21],[3,25],[-7,4],[-19,12],[-16,10],[-8,5],[-10,6],[-11,7],[-12,8],[-12,7],[-9,6],[-14,-5],[-33,34],[-1,15],[-5,45],[-1,12],[-13,16],[-8,5],[-11,-12],[-24,-6],[-19,24],[-9,13],[-21,26],[-11,-5],[-15,-3],[-41,-19],[-62,-30],[-19,-9],[-39,32],[40,53],[21,28],[29,40],[-7,11],[-8,11],[-25,36],[-11,38],[6,23],[7,26],[8,29],[8,26],[3,13],[5,15],[-37,14],[-98,37],[-27,26],[-17,16],[-19,22],[-10,11],[-41,46],[-16,19],[-22,18],[-15,10],[-45,-28],[-28,-15],[-50,-8],[-38,-6],[-7,-9],[-22,-25],[-24,-27],[-9,-10],[-9,-10],[-27,-32],[-13,-6],[-42,33],[-18,45],[-13,34],[-13,23],[-4,13],[-15,21],[-11,-21],[-7,-15],[-13,-27],[-19,-37],[-20,-2],[-12,-1],[-16,-2],[-9,-2],[-72,-13],[-52,-28],[-23,64],[-38,21],[-22,18],[-18,14]],[[89780,43673],[22,-15],[18,-20],[17,-23],[3,-5],[-6,-4],[-205,-116],[-21,-11],[-16,-8],[-95,-53],[-19,-11],[-91,-51],[-13,-7],[-7,-4],[-1,0],[-110,-62],[-9,-5],[-53,-29],[-47,-26],[-21,-12],[-20,-10],[-11,-6],[-18,-9],[-19,-10],[-15,-7],[-38,-22],[-18,-10],[-33,-19],[-122,-65],[-191,-105],[-49,-25],[-135,-67],[-75,-34],[-106,-62],[-7,-4],[-56,-32],[-31,-18],[-2,-2],[-10,-5],[-68,-40],[-17,-10],[-63,-34],[-14,-7],[-114,-56],[-91,-51],[-2,-1],[-52,-28],[-32,-17],[-58,-31],[-7,-4],[-14,-8],[-16,-10],[-33,-19],[-87,-47],[-122,-62]],[[87380,42274],[-7,-5],[-17,-10],[-50,-25],[-17,-9],[-8,-4],[-12,-7],[-16,-7],[-81,-48],[-40,-20],[-78,-39],[-10,-4],[-2,-1],[-72,-36],[-45,-24],[-6,6],[6,7],[1,10],[-1,10],[-4,9],[-6,7],[-3,9],[2,10],[1,3],[4,5],[7,5],[4,8],[3,10],[7,7],[6,12],[8,10],[4,11],[0,9],[10,2],[5,8],[11,14],[10,-5],[8,3],[10,-1],[8,2],[6,7],[8,5],[8,7],[6,12],[4,11],[3,10],[7,12],[0,12],[10,-1],[12,9],[7,4],[6,9],[1,11],[0,11],[-7,10],[-7,6],[-9,5],[-9,2],[-7,7],[-9,-3],[-10,5],[-5,8],[-7,-9],[-5,-7],[-11,5],[-6,8],[-8,1],[-7,7],[-6,6],[-1,15],[-6,9],[-1,14],[-5,8],[-8,6],[-9,5],[-8,2],[-9,1],[-8,5],[-8,2],[-7,7],[2,10],[-5,13],[-6,7],[0,10],[-8,3],[-2,15],[-6,9],[-10,5],[-8,0],[-5,11],[-4,9],[-1,14],[-5,11],[-5,13],[-3,10],[-9,7],[-11,3],[-5,1],[-9,-1],[-15,5],[-9,8],[-9,4],[-23,9],[-12,-1],[-9,9],[-13,-1],[-17,-4],[-11,3],[-11,3],[-13,3],[-8,-1],[-10,-3],[-10,5],[-8,3],[-8,4],[-6,7],[-10,4],[-10,5],[-8,4],[-3,10],[-10,8],[-10,7],[-18,11],[-11,7],[-5,10],[-4,9],[-10,4],[-11,3],[-7,6],[-11,4],[-12,0],[-17,2],[-15,-2],[-11,7],[-7,4],[-12,11],[-10,4],[-8,6],[-11,8],[-8,2],[-8,6],[-9,7],[-8,6],[-8,2],[-9,3],[-8,-1],[-6,7],[-6,9],[-7,6],[-8,5],[-9,3],[-9,13],[-2,10],[-4,9],[-6,11],[-6,8],[-9,7],[-9,7],[-2,17],[-5,10],[-7,14],[-5,11],[-4,13],[-6,11],[-7,5],[-4,12],[-8,7],[-4,8],[-7,7],[-10,10],[-6,9],[-3,10],[-11,11],[-3,8],[-12,16],[-6,7],[-8,8],[-3,11],[-4,11],[-4,9],[-2,10],[2,19],[3,11],[1,13],[1,11],[-5,8],[-5,8],[-5,10],[-7,5],[-9,9],[-6,8],[-5,10],[-6,12],[-4,10],[-3,10],[-4,9],[-4,14],[1,10],[-6,7],[-8,20],[0,9],[-3,14],[0,13],[-7,15],[-10,14],[-6,9],[-7,6],[-6,7],[-5,8],[-8,11],[-2,9],[-4,11],[-2,14],[-5,8],[-7,4],[-8,7],[2,11],[0,17],[1,9],[-6,6],[-5,18],[-5,11],[-1,10],[-4,15],[-3,19],[-1,11],[2,12],[1,12],[1,11],[-1,13],[-4,9],[-4,10],[-5,12],[-5,8],[-11,13],[2,12],[-6,10],[-5,10],[-7,8]],[[82323,44949],[1,-11],[1,-15],[2,-21],[5,-66],[5,-58],[5,-58],[3,-37],[3,-53],[2,-18],[1,-13],[2,-33],[1,-10],[4,-50],[5,-65],[2,-24],[9,-121],[2,-31],[3,-29],[2,-26],[2,-25],[2,-35],[7,-88],[4,-51],[3,-40],[4,-41],[6,-81],[7,-93],[4,-26],[1,-14],[3,-40],[1,-17],[1,-22],[3,-35],[5,-76],[8,-120],[2,-29],[0,-11],[1,-9],[3,-13],[-1,-31],[4,-69],[2,-24],[4,-59],[0,-4],[2,-23],[2,-27],[1,-21],[2,-27],[3,-42],[4,-68],[7,-99],[3,-46],[7,-108],[1,-18],[7,-110],[1,-11],[2,-36],[1,-17],[1,-12],[1,-10],[4,-62],[4,-55],[0,-2],[1,-12],[2,-27],[0,-5],[1,-14],[4,-61],[1,-26],[1,-6],[0,-5],[0,-30],[0,-35],[0,-52],[0,-49],[0,-35],[0,-18],[0,-21],[0,-12],[0,-37],[0,-47],[1,-33],[-1,-53],[0,-39],[1,-38],[-1,-40],[1,-59],[0,-46],[0,-13],[0,-28],[0,-31],[0,-34],[0,-31],[0,-9],[0,-18],[0,-15],[-1,-42]],[[82520,41342],[-4,-1],[-80,-6],[-27,-1],[-14,0],[-13,-1],[-5,-1],[-19,-1],[-26,-2],[-99,-7],[-76,-10],[-28,-2],[-88,-7],[-8,-1],[-85,-8],[-70,-6],[-12,-2],[-63,-5],[-22,-2],[-49,-4],[-25,-2],[-59,-5],[-33,-4],[-24,0],[-14,0],[-44,-1],[-23,1],[-57,-3],[-34,-1],[-8,0],[-28,1],[-303,-24],[-21,-2],[-28,-2],[-9,0],[-75,-6],[-110,-8],[-124,-9],[-13,-1],[-23,-2],[-49,-3],[-13,-1],[-2,0],[-15,-1],[-95,-7],[-15,-2],[-2,-1],[-10,-1],[-12,-1],[-29,-1],[-10,-1],[-5,0],[-66,-4],[-8,-12],[-11,-14],[-16,-9]],[[80319,41149],[-1,1],[-4,18],[-11,16],[-20,16],[-22,9],[-30,9],[0,12],[10,23],[26,42],[20,16],[11,4],[14,-3],[11,-10],[10,-8],[13,-9],[12,-4],[24,-5],[8,-2],[13,-1],[8,3],[8,9],[3,12],[-2,16],[-5,18],[-10,22],[-23,38],[-8,9],[-14,10],[-10,6],[-8,3],[-10,-1],[-13,-1],[-13,-1],[-13,0],[-9,3],[-8,13],[-1,12],[0,15],[3,15],[7,19],[6,14],[6,11],[7,11],[2,12],[3,14],[1,12],[1,10],[2,19],[4,15],[4,11],[6,13],[6,11],[8,10],[11,8],[16,17],[8,11],[4,8],[3,11],[-1,13],[-2,14],[-11,13],[-11,4],[-11,0],[-14,-2],[-17,-1],[-21,2],[-10,4],[-14,11],[-5,16],[1,18],[2,18],[6,17],[4,10],[13,20],[9,14],[13,21],[2,11],[-2,13],[-4,11],[-9,11],[-10,7],[-11,-1],[-10,-3],[-14,-8],[-17,-9],[-63,-21],[-31,-8],[-21,-6],[-13,1],[-8,7],[-13,29],[-13,23],[-6,5],[-15,4],[-25,8],[-35,11],[-8,6],[-6,15],[-1,24],[-2,15],[-4,11],[-4,7],[-14,6],[-12,3],[-17,3],[-15,5],[-17,7],[-11,6],[-6,7],[-11,12],[-9,12],[-8,14]],[[78752,42603],[-9,9],[-8,9],[-10,6],[-9,5],[-10,-2],[-3,-12],[-9,-1],[-14,6],[-10,11],[-7,5],[-8,3],[-12,-4],[-4,-16],[-9,-13],[-18,-12],[-14,-2],[-18,-2],[-11,2],[-11,-4],[-7,-7],[-14,-19],[-3,-14],[-10,-13],[-7,-2],[-12,1],[-11,4],[-11,0],[-9,-8],[-11,-5],[-6,-12],[-2,-12],[-6,-7],[-8,-6],[-9,-2],[-16,3],[-15,-2],[-8,3],[-12,5],[-9,6],[-10,10],[-11,1],[-9,9],[-3,10],[-9,5],[-9,-2],[-8,-4],[-9,-6],[-6,-7],[-13,-32],[-9,-6],[-20,-1],[-10,-3],[-1,0],[-11,-10],[-11,-4],[-10,-13],[4,-10],[-9,4],[-13,0],[-20,1],[-3,-10],[7,-11],[0,-16],[-4,-14],[-16,3],[-1,-12],[-6,-12],[-7,8],[-9,1],[-8,-3],[-7,12],[-10,3],[-10,-1],[-9,-6],[-20,-7],[-28,-8],[-22,-4],[-12,-7],[-13,-9],[-15,1],[-11,-8],[-10,-4],[-8,3],[-11,-7],[-9,2],[-11,27],[-9,26],[-10,6],[-9,-5],[-6,-12],[-3,-9],[5,-9],[-6,-6],[-8,0],[-10,2],[-10,-4],[-6,-5],[-7,-9],[-9,-21],[8,-8],[-1,-15],[0,-9],[-5,-10],[-7,-8],[-9,-12],[-6,-2],[-4,-1],[-10,3],[-9,5],[-8,0],[-17,-4],[-43,-9],[-18,-1],[-11,2],[-7,-5],[-15,-6],[-9,-1],[-22,8],[-5,-9],[-28,0],[-7,8],[-5,9],[-13,8],[-19,3],[-8,-3],[-9,-6],[-4,-8],[7,-8],[5,-10],[-3,-18],[-19,1],[-13,-9],[-10,-14],[-8,1],[-11,-2],[-6,6],[-9,7],[-12,2],[-10,-4],[-8,-3],[-10,-11],[-11,-2],[-8,-8],[-4,-10],[0,-1],[-21,-1],[-35,-2],[-6,5],[-7,18],[0,12],[-7,9],[-9,-1],[-11,-7],[-10,-11],[-18,-24],[0,-18],[-8,-15],[-6,-9],[-7,-13],[-8,-15],[-1,-12],[-14,-12],[-9,-4],[-5,8],[-8,-2],[-10,-5],[-24,-4],[-11,-6],[-10,-2],[-1,0],[-20,-1],[-6,7],[-2,7],[-4,10],[-3,8],[-6,8],[-10,-2],[-9,0],[-7,-4],[-13,-6],[-10,-2],[-4,-9],[-9,-6],[-10,-4],[-7,10],[-10,1],[-4,-6],[-4,-6],[-1,-7],[-1,-3],[-8,5],[-7,-7],[-8,-4],[-13,-2],[-12,4],[-22,-8],[-9,4],[-7,7],[-9,1],[-9,-1],[-6,-12],[-8,-7],[-1,-12],[-13,7],[-12,4],[-8,1],[-7,15],[-8,-1],[-8,8],[-4,-10],[-8,0],[-11,3],[-3,9],[-9,-3],[-2,10],[-12,-1],[-8,4],[-5,9],[-12,2],[-10,-5],[-8,-4],[-9,-3],[3,-9],[4,-12],[3,-9],[-12,0],[-8,-5],[-8,-2],[-7,-7],[-11,-5],[-11,-4],[-7,-10],[4,-8],[7,-4],[-9,-7],[5,-8],[-10,-2],[-9,-7],[-13,-7],[-13,-2],[-9,5],[-11,-3],[-2,9],[-8,-2],[-8,-9],[-12,-7],[-7,-6],[-8,-1],[-1,-9],[-12,2],[-7,-6],[-12,7],[-8,1],[-5,-8],[-7,-3],[-8,-5],[-8,-4],[-7,-5],[-6,13],[-8,2],[-9,-5],[-13,6],[-13,1],[-10,3],[-9,0],[-9,-8],[-4,-8],[-5,-10],[-7,-7],[-3,-13],[-3,-9],[-5,-7],[-9,2],[-10,1],[-8,-4],[-7,-4],[-17,2],[-10,-2],[-7,-6],[-8,3],[-9,-5],[-10,-8],[-11,-4],[-11,-4],[-9,-6],[-22,0],[-3,10],[-10,3],[-10,6],[-5,9],[-7,-5],[1,-10],[-12,-2],[-10,2],[-8,-6],[-5,-9],[-7,5],[-7,-6],[-7,-4],[-6,-6],[-10,5],[-8,-5]],[[76153,41822],[-13,4],[-7,6],[-5,-9],[-9,5],[-9,4],[-7,2],[-8,4],[2,10],[-7,3],[-6,-7],[-7,3],[-4,10],[-8,-3],[2,-9],[-10,1],[-3,1],[-5,1],[-8,3],[-9,-2],[-8,-3],[-1,0],[-8,0],[0,-10],[-7,-4],[-8,1],[-5,-7],[-3,-5],[-7,-6],[-8,-4],[-6,8],[-10,7],[-8,1],[-9,2],[0,10],[-8,4],[1,10],[-9,-1],[0,10],[5,9],[-3,9],[-9,0],[-5,8],[-8,7],[-6,-6],[-6,7],[-4,8],[8,2],[5,10],[-5,9],[-18,2],[-12,16],[-9,-1],[-8,2],[-9,-3],[-9,4],[-11,7],[-9,8],[0,10],[-5,14],[-4,9],[-2,13],[-3,9],[-10,7],[-8,1],[-21,7],[-12,6],[-9,6],[-2,0],[-7,-2],[-4,3],[-4,2],[-19,0],[-13,-7],[-13,3],[-7,-7],[-13,-4],[-12,-11],[-8,3],[-14,6],[-10,-5],[-6,6],[-8,4],[-12,6],[-15,1],[-8,-4],[-8,-8],[-13,0],[-7,7],[-7,3],[-2,10],[-7,1],[-8,7],[-5,11],[-8,3],[-10,4],[-11,2],[-13,3],[-6,-8],[-8,7],[-1,-10],[-8,6],[-6,-8],[-1,-9],[-7,-4],[-13,-7],[7,-9],[-11,-1],[-5,7],[-9,-9],[-6,-6],[-10,10],[-8,0],[-8,2],[-3,9],[2,10],[-8,2],[5,8],[2,9],[-8,-1],[-7,4],[-4,10],[-6,7],[-2,13],[-9,2],[-6,6],[-8,2],[-7,11],[-10,0],[-9,-6],[-3,10],[6,8],[4,18],[-3,10],[6,7],[0,10],[-2,26],[-2,15],[-9,4],[-11,-1],[-8,0],[-11,-4],[-9,2],[-7,6],[-2,13],[4,8],[-4,11],[-8,10],[-5,8],[-8,5],[-5,8],[1,12],[-4,12],[-12,13],[-1,10],[0,12],[8,4],[-7,9],[-6,11],[-8,11],[-4,11],[-1,17],[-6,17],[-2,22],[-6,11],[-8,5],[-8,7],[-17,16],[-8,2],[4,8],[-7,3],[-4,11],[-7,-6],[-8,0],[-7,7],[-8,11],[-1,10],[4,18],[-13,4],[-13,17],[-2,9],[-9,-4],[-8,12],[-8,4],[1,16],[-8,5],[-4,12],[5,11],[0,10],[9,12],[-6,6],[3,9],[-8,4],[-9,9],[-9,3],[-8,1],[-5,1],[-6,1],[-16,2],[-10,-5],[-10,-1],[-6,6],[-15,12],[-9,4],[-1,12],[-7,8],[-7,9],[-19,0],[-9,2],[-6,9],[-4,13],[-4,12],[-8,6],[6,13],[7,6],[-3,12],[-7,5],[-8,3],[-8,3],[-9,4],[-11,-1],[-18,9],[-3,2],[-11,9],[-6,7],[-4,14],[-13,7],[1,11],[7,5],[-3,8],[-22,10],[-6,10],[7,7],[-7,5],[-13,1],[-10,8],[-6,7],[-10,-1],[-11,8],[0,10],[-9,0],[-7,-9],[-6,7],[4,16],[-3,10],[-13,-5],[-1,-10],[-11,5],[-7,-4],[-9,2],[-6,10],[4,8],[-5,11],[-12,8],[1,10],[-8,-4],[-7,6],[-10,9],[5,8],[5,11],[-11,-1],[-2,13],[-6,7],[-7,-7],[-8,2],[-13,-7],[-10,11],[-10,0],[-3,9],[-15,4],[-8,4],[-14,6],[-9,-2],[-9,1],[-11,-4],[-9,-2],[-15,3],[4,8],[-8,3],[-15,-9],[-6,7],[-11,7],[-9,9],[-5,13],[-3,14],[6,8],[1,23],[-4,11],[-8,12],[-8,8],[-9,5],[-6,6],[-6,6],[-4,9],[2,11],[9,-6],[9,8],[-7,5],[-12,7],[5,10],[7,12],[-1,12],[4,10],[3,10],[-4,9],[-11,-1],[-8,-3],[-9,2],[-5,7],[1,11],[-10,1],[1,9],[-8,7],[-8,4],[-8,-7],[-6,-5],[-14,-3],[-4,9],[-6,8],[-17,-8],[-26,-7],[-10,-3],[-15,4],[-9,-6],[-9,0],[-3,10],[9,5],[-8,3],[-6,5],[-5,14],[-6,8],[-5,24],[-8,0],[-7,-4],[-3,9],[8,8],[11,0],[0,10],[-8,2],[-13,-1],[-6,12],[4,13],[4,9],[5,8],[1,14],[4,14],[4,25],[7,21],[8,0],[11,11],[20,18],[3,17],[-2,12],[1,12],[-11,8],[-2,15],[-7,8],[-2,13],[-5,16],[2,14],[-5,8],[-5,7],[-9,10],[-8,2],[-13,7],[-12,1],[-8,3],[-6,10],[10,3],[9,10],[1,10],[3,10],[7,17],[-1,11],[-3,9],[-4,12],[-5,9],[6,5],[9,-1],[8,-1],[2,9],[2,12],[-8,-1],[-9,-3],[-13,1],[2,11],[10,2],[4,8],[2,12],[-3,10],[-10,-6],[-4,-11],[-10,1],[-4,9],[-5,19],[5,8],[-4,9],[-7,6],[-10,0],[-8,4],[1,10],[0,14],[0,11],[-5,12],[-7,4],[2,13],[-9,6],[-1,10],[-7,16],[-4,9],[-3,10],[-7,6],[-6,9],[-3,11],[-7,11],[-11,5],[-14,-1],[-6,11],[-7,7],[-4,10],[-11,5],[-5,-10],[-6,7],[-5,9],[-9,2],[-3,-11],[-9,3],[-8,0],[-10,-3],[-7,8],[-10,4],[-11,6],[-16,4],[-4,11],[-17,4],[-7,-5],[-3,-12],[-7,-9],[-8,-8],[-8,10],[-11,4],[-6,8],[4,12],[-6,8],[-9,1],[-12,2],[-7,8],[-12,2],[-6,6],[-6,8],[-4,14],[-8,0],[-16,-4],[-16,2],[-5,9],[-3,9],[-4,12],[-1,9],[-3,9]],[[55882,43726],[-1,-15],[1,-82],[1,-65],[0,-62],[0,-22],[0,-13],[1,-115],[1,-59],[1,-173],[1,-105],[2,-212],[0,-13],[3,-227],[2,-168],[0,-79],[1,-243],[1,-166],[0,-50],[0,-2],[3,-128]],[[55899,41727],[-152,1],[-6,1],[-21,0],[-19,0],[-19,0],[-106,1],[-105,1],[-267,3],[-49,1],[-45,0],[-9,0],[-8,1],[-96,1],[-27,0],[-38,0],[-15,0],[-21,1],[-42,0],[-162,2],[-94,1],[-31,0],[-148,2],[-34,0],[-14,0],[-64,1],[-45,1],[-41,0],[-5,0],[-4,0],[-43,1],[-23,0],[-102,1],[-248,3],[-17,0],[-11,0],[-41,0],[-47,1],[-15,0],[-1,0],[-61,1],[-72,1],[-153,1],[-8,0],[-28,1],[-82,0],[-34,1],[-37,0],[-109,1],[-71,1],[-20,0],[-8,0],[-90,1],[-110,2],[-3,0],[-65,0],[-125,1],[-89,2],[-12,0],[-32,1]],[[52455,41765],[-77,-1],[-289,-1],[-137,-1],[-82,0],[-12,0],[-84,0],[-14,1],[-91,0],[-8,0],[-102,-2],[-26,-1],[-73,3],[-4,0],[-21,0],[-82,-1],[-64,0],[-9,0],[-15,0],[-4,0],[-29,-1],[-52,2],[-115,-1],[-36,-1],[-10,-2],[-11,0],[-108,-1],[-10,2],[-78,0],[-83,0],[-148,2],[-65,0],[-110,0],[-84,0],[-20,0],[-97,0],[-21,0],[-114,0],[-55,0],[-30,0],[-149,0],[-83,-1],[-35,0],[-21,0]],[[49697,41761],[0,146],[0,34],[-1,22],[0,91],[0,18],[0,28],[-1,172],[0,26],[0,33],[0,46],[0,116],[1,43],[-1,21],[-1,13],[1,40],[0,11],[0,12],[-1,10],[0,41],[0,34],[1,43],[0,52],[0,12],[0,37],[1,85],[0,153],[0,11],[0,26],[-1,92],[0,16],[0,102],[0,26],[1,40],[0,10],[0,6],[0,7],[1,63],[0,36],[0,39],[0,158],[0,63],[0,14],[1,355],[0,97],[0,1],[0,34],[0,105],[1,12],[1,488],[0,88],[0,154],[-1,230],[0,327]],[[49697,41761],[-56,1],[-11,0],[-20,0],[-45,-1],[-162,-1],[-96,-1],[-55,0],[-11,0],[-178,0],[-38,0],[-178,-2],[-49,0],[-50,0],[-27,0],[-43,-2],[-43,0],[-38,-1],[-116,0],[-26,0],[-26,0],[-30,0],[-21,0],[-18,-1],[-24,0],[-78,0],[-89,-1],[-10,0],[-23,0],[-67,0],[-67,-1],[-70,0],[-86,-1],[-31,0],[-45,0],[-13,-1],[-30,0],[-46,0],[-119,-2],[-11,-1],[-80,0],[-14,0],[-106,-2],[-80,0],[-23,0],[-15,0],[-44,-1],[-44,-1],[-61,-1],[-15,0],[-29,0],[-37,0],[-62,-1],[-36,0],[-24,0],[-106,-2],[-32,1],[-9,0],[-126,1],[-102,0],[-21,0],[-5,0],[-13,0],[-66,0],[-31,0],[-44,0],[-32,0],[-27,0],[-75,0],[-8,0],[-76,0],[-27,1],[-120,0],[-47,0],[-38,0],[-26,0],[-26,0],[-152,0],[-1,0],[-30,0],[-132,1],[-11,0],[-46,0],[-22,0],[-97,0],[-13,0],[-67,0]],[[45253,41742],[-15,0],[-11,0],[-46,0],[-18,0],[-23,0],[-13,0],[-36,0],[-30,0],[-27,0],[-70,-1],[-12,1],[-80,-2],[-118,1],[-18,0],[-42,0],[-15,0],[-41,0],[-86,-1],[-18,0],[-43,0],[-15,0],[-13,0],[-19,0],[-28,0],[-22,0],[-35,0],[-26,0],[-32,1],[-28,-1],[-104,-1],[-24,0],[-55,1],[-8,0],[-38,-1],[-38,0],[-90,0],[-28,0],[-79,0],[-8,-1],[-72,-1],[-66,-2],[-38,0],[-14,0],[-80,1],[-53,1],[-1,0],[-14,0],[-22,1],[-11,0],[-40,0],[-6,0],[-1,0],[-4,0],[-16,0],[-51,-1],[-40,0]],[[21715,32125],[0,19],[-1,15],[0,58],[0,148],[0,188],[0,79],[0,14],[0,91],[0,148],[0,14],[-1,58],[1,39],[0,111],[0,75],[0,49],[0,917],[0,37],[0,32],[0,109],[0,26],[0,10],[-1,19],[-2,144],[0,33],[-2,149],[-2,132],[0,47],[-1,48],[0,162],[0,4],[0,58],[-1,98],[0,25],[-1,49],[-2,102],[0,13],[-1,79],[-1,45],[-2,242],[-1,67],[-1,84],[-1,128],[-3,309],[0,12],[-1,45],[-1,42],[-1,198],[-1,35],[0,45],[0,41],[-1,36],[0,14],[0,45],[-1,22],[0,1],[0,18],[0,69],[-1,34],[0,33],[-1,63],[0,41],[0,21],[-1,69],[-1,95],[-1,122],[0,41],[-2,115],[0,12],[0,69],[0,14],[0,19],[-1,37],[0,38],[0,23],[0,10],[0,102],[0,122],[0,1],[0,40],[0,161],[0,23],[0,158],[0,133],[0,12],[-2,175],[-3,235],[0,148],[0,83],[0,134],[0,162],[0,556],[0,89],[0,101],[0,138],[0,84],[0,45],[0,1],[0,133],[0,99],[0,144],[0,177],[0,51],[0,39],[0,36],[0,125],[0,41],[0,21],[0,56],[0,21],[-1,39],[0,63],[0,5],[0,7],[0,25],[0,16],[0,18],[0,40],[0,49],[0,2],[-1,97],[-1,59],[0,12],[0,13],[0,4],[-1,30],[0,34],[-2,97],[-1,26],[-2,143],[-1,16],[0,1],[0,38],[-1,57],[-1,34],[0,31],[-1,77],[-4,256],[-2,94]],[[31046,39533],[57,-51],[69,-61],[13,-11],[158,-138],[127,-113],[66,-58],[15,-13],[54,-47],[86,-72],[10,-11],[6,-7],[20,-13],[114,-98],[149,-130],[82,-71],[53,-46],[14,-13],[91,-79],[13,-11],[54,-47],[111,-97],[34,-30],[61,-53],[179,-154],[88,-77],[102,-89],[1,0],[31,-27],[16,-11]],[[32920,37905],[-4,-3],[-3,-4],[-11,-22],[-6,-12],[-4,-10],[-3,-6],[-1,-5],[0,-6],[2,-7],[4,-14],[4,-13],[3,-8],[3,-10],[1,-6],[-1,-7],[-3,-5],[-2,-3],[-11,-9],[-7,-2],[-8,-2],[-8,0],[-10,0],[-20,1],[-3,2],[-2,3],[-2,5],[-1,16],[1,10],[0,4],[-1,4],[-2,4],[-2,2],[-3,2],[-4,1],[-36,9],[-3,1],[-4,0],[-5,0],[-3,-1],[-5,-2],[-3,-3],[-2,-4],[0,-4],[0,-3],[-34,-38],[-27,-44],[1,-16],[-4,-21],[-3,-4],[-2,-5],[-3,-6],[-3,-4],[-3,-4],[-3,-2],[-12,-9],[-5,-3],[-6,-2],[-5,-2],[-6,-1],[-8,-1],[-4,-1],[-4,-1],[-5,-4],[-5,-3],[-4,-3],[-12,-13],[-2,-4],[-10,-17],[-1,-3],[-1,-4],[0,-4],[1,-10],[5,-27],[5,-21],[5,-18],[1,-3],[0,-8],[0,-7],[-1,-7],[-2,-17],[-2,-7],[-20,-50],[-2,-4],[-6,-12],[-4,-5],[-5,-7],[-4,-5],[-5,-11],[-8,-23],[-14,-46],[-1,-3],[-3,-16],[-1,-7],[-11,-39],[-10,-25],[-10,-24],[-2,-6],[-2,-4],[-1,-5],[-2,-23],[-1,-4],[2,-10],[2,-13],[1,-41],[0,-3],[-2,-2],[-13,-16],[-2,-2],[-7,-4],[-9,-4],[-10,-3],[-5,-2],[-12,-4],[-18,-15],[-17,-16],[-1,-4],[-1,-3],[1,-5],[2,-6],[3,-3],[4,-4],[3,-3],[5,-7],[4,-7],[3,-5],[2,-4],[9,-40],[1,-8],[2,-10],[-1,-3],[-11,-79],[-2,-4],[-3,-3],[-4,-2],[-5,-1],[-4,1],[-4,2],[-2,3],[-3,4],[-3,4],[-2,7],[-4,12],[-3,9],[-3,7],[-6,10],[-4,7],[-4,5],[-2,1],[-3,2],[-4,1],[-5,2],[-4,1],[-3,1],[-14,2],[-3,-1],[-3,-1],[-3,-3],[-3,-3],[-9,-10],[-23,-23],[-3,-3],[-3,-1],[-30,-5],[-2,0],[-2,1],[-4,2],[-4,3],[-3,4],[-2,4],[-3,6],[0,2],[0,3],[-3,8],[0,1],[-3,1],[-24,12],[-5,1],[-7,1],[-5,-1],[-4,-1],[-5,-3],[-5,-2],[-3,0],[-11,4],[-5,1],[-6,3],[-3,2],[-2,2],[-2,3],[-3,6],[-4,5],[-3,4],[-7,8],[-3,2],[-3,3],[-52,30],[-3,1],[-3,1],[-4,-2],[-5,-1],[-2,-1],[-3,-2],[-3,-5],[-1,-3],[-1,-7],[-2,-3],[-7,-7],[-4,-3],[-4,-1],[-3,1],[-4,1],[-5,2],[-5,4],[-5,5],[-5,5],[-3,3],[-4,5],[-5,6],[-4,2],[-3,2],[-3,2],[-4,1],[-2,0],[-9,1],[-5,1],[-6,0],[-5,-1],[-4,-1],[-4,-3],[-12,-8],[-4,-2],[-3,-3],[-4,-3],[-5,-4],[-3,-1],[-3,-1],[-15,-1],[-5,0],[-3,1],[-3,2],[-2,3],[-8,14],[-3,6],[-1,3],[-1,4],[-4,11],[-2,4],[-6,13],[-2,3],[-2,3],[-2,2],[-13,10],[-4,3],[-2,1],[-3,0],[-3,0],[-3,-1],[-6,-4],[-2,-1],[-2,-2],[-2,-2],[-17,-23],[-3,-4],[-1,-3],[0,-3],[0,-5],[-1,-6],[-1,-4],[-2,-3],[-3,-4],[-2,-2],[-2,-1],[-4,-1],[-6,-1],[-5,0],[-20,-1],[-10,0],[-16,1],[-3,0],[-1,1],[-1,2],[-8,10],[-1,3],[-1,2],[0,3],[1,3],[1,3],[3,6],[2,6],[1,4],[0,2],[0,8],[-2,6],[-1,3],[-4,7],[-9,11],[-3,3],[-21,16],[-2,1],[-2,0],[-3,-1],[-18,-10],[-3,-2],[-10,-8],[-15,-12],[-35,-20],[-4,0],[-3,0],[-4,0],[-65,16],[-29,8],[-19,6],[-7,2],[-5,0],[-4,-2],[-7,-4],[-2,-3],[-1,-1],[-10,-22],[-1,-4],[0,-1],[7,-19],[2,-3],[5,-5],[4,-4],[4,-4],[13,-11],[5,-2],[3,-1],[3,-1],[4,-2],[6,-3],[5,-3],[3,-4],[3,-2],[0,-6],[0,-7],[-1,-6],[-2,-6],[-16,-41],[-4,-11],[-2,-2],[-33,-27],[-14,-11],[-20,-13],[-4,-2],[-6,-2],[-9,-4],[-8,-2],[-7,-2],[-5,-3],[-9,-3],[-25,-16],[-15,-11],[-7,-6],[-6,-7],[-4,-5],[-11,-15],[-17,-24],[-5,-6],[-4,-4],[-13,-8],[-5,-3],[-36,-18],[-4,0],[-6,2],[-5,1],[-3,2],[-7,6],[-25,28],[-1,2],[0,1],[-2,16],[0,2],[1,7],[2,5],[2,5],[1,4],[1,4],[-1,4],[-1,2],[-1,3],[-4,8],[-1,1],[-3,4],[-5,5],[-27,50],[-18,45],[-2,4],[-3,5],[-21,29],[-5,4],[-5,1],[-13,1],[-3,-1],[-8,-2],[-3,-2],[-23,-27],[-2,-5],[-5,-15],[0,-1],[6,-43],[1,-3],[8,-23],[-33,-34],[-22,0],[-5,-2],[-3,0],[-13,-13],[-7,-7],[-11,-11],[-4,-3],[-23,-15],[-4,-2],[-4,-1],[-4,0],[-19,5],[-14,9],[-4,3],[-3,2],[-3,1],[-3,1],[-13,2],[-2,0],[-38,-8],[-4,-1],[-8,-3],[-1,-2],[-2,-1],[-1,-2],[-1,-4],[-2,-3],[-3,-5],[-2,-2],[-28,-5],[-4,0],[-5,1],[-4,1],[-1,1],[-2,2],[-1,1],[-2,0],[-2,-1],[-2,-1],[-16,-14],[-2,-3],[-8,-11],[-1,-2],[-7,-17],[-21,-32],[-19,-31],[-2,-2],[-3,-1],[-62,-17],[-15,-4],[-4,-1],[-48,-1],[-4,0],[-34,2],[-6,0],[-103,15],[-24,7],[-3,1],[-5,2],[-3,2],[-7,5],[-3,2],[-11,13],[-3,4],[-2,5],[-1,4],[0,7],[0,21],[0,7],[1,2],[1,2],[0,2],[-1,4],[-1,2],[-3,3],[-4,4],[-1,1],[-2,0],[-36,-13],[-3,-2],[-4,-2],[-3,-3],[-4,-5],[-12,-19],[-1,-5],[-1,-7],[-1,-5],[-1,-9],[-11,-43],[-1,-5],[-17,-48],[-2,-3],[-45,-51],[-4,-2],[-4,-2],[-7,-2],[-1,0],[-1,1],[-10,-9],[5,-110],[1,-9],[1,-8],[1,-4],[4,-7],[2,-2],[2,-2],[1,-2],[0,-3],[-1,-3],[0,-1],[-7,-10],[-3,-3],[-34,-33],[-12,-11],[-19,-27],[-5,-94],[0,-3],[0,-3],[2,-4],[3,-4],[2,-3],[4,-2],[3,-4],[6,-7],[4,-6],[4,-6],[17,-37],[0,-2],[1,-5],[-23,-45],[-2,-2],[-4,-2],[-5,-2],[-3,0],[-3,2],[-4,2],[-3,3],[-2,2],[-3,1],[-3,0],[-3,-1],[-5,-1],[-14,-6],[-2,-2],[-36,-42],[-1,-3],[-1,-3],[-1,-6],[-1,-7],[-10,-27],[-4,-10],[-5,-11],[-3,-6],[-2,-3],[-7,-8],[-13,-14],[-22,-21],[-3,-3],[-4,-3],[-25,-15],[-20,-8],[-2,-17],[6,-6],[1,-2],[-2,-16],[-2,-10],[-6,-16],[-1,-4],[-2,-3],[-9,-9],[-20,-15],[-2,-1],[-53,-5],[-9,-15],[-26,-41],[-2,-4],[-3,-5],[-1,-5],[-1,-5],[0,-4],[0,-5],[0,-4],[1,-3],[1,-3],[2,-6],[4,-7],[3,-4],[1,-2],[9,-17],[3,-11],[2,-11],[2,-47],[0,-7],[-2,-87],[-1,-13],[0,-4],[-1,-4],[-1,-3],[-3,-4],[-3,-3],[-4,-5],[-3,-5],[-2,-6],[-2,-7],[-1,-7],[0,-2],[9,-15],[3,-4],[2,-2],[-1,-7],[-1,-4],[-1,-4],[-2,-4],[-2,-5],[-8,-11],[-20,-25],[-2,-2],[-4,-3],[-2,-1],[-5,-2],[-3,0],[-2,1],[-2,2],[-2,3],[-3,4],[-3,3],[-4,3],[-7,5],[-3,2],[-47,23],[-7,3],[-6,2],[-13,4],[-5,0],[-7,1],[-6,0],[-3,0],[-23,-8],[-2,-1],[-22,-24],[-1,-2],[0,-2],[0,-4],[0,-6],[1,-2],[1,-4],[2,-3],[6,-10],[18,-49],[20,-57],[1,-3],[-1,-3],[0,-2],[-12,-42],[-2,-6],[-3,-5],[-3,-5],[-2,-2],[-7,-6],[-2,-2],[-1,-1],[-8,-3],[-1,0],[-1,1],[-9,8],[-1,2],[0,3],[-2,2],[-2,1],[-2,1],[-10,2],[-5,0],[-4,0],[-4,-1],[-4,-2],[-2,-2],[-3,-1],[0,-3],[-1,-5],[2,-30],[1,-8],[1,-4],[1,-4],[1,-4],[0,-2],[-12,-28],[-2,-4],[-10,-15],[-1,-1],[-1,-1],[-2,0],[-2,0],[-2,-2],[-1,-2],[0,-3],[0,-5],[1,-47],[1,-3],[14,-29],[2,-6],[2,-2],[6,-4],[16,-12],[3,-2],[-53,-55],[-9,-7],[-3,-1],[-18,-4],[-5,-1],[-2,0],[-4,2],[-15,6],[-13,7],[-3,1],[-8,2],[-3,0],[-3,-1],[-3,-1],[-2,-2],[-5,-4],[-4,-5],[-3,-3],[-3,-6],[-2,-5],[-1,-6],[-1,-6],[1,-6],[1,-6],[3,-6],[4,-7],[3,-7],[0,-3],[-2,-22],[-1,-6],[-1,-1],[-54,-60],[-32,-21],[-30,-8],[-5,-1],[-2,-1],[-1,-2],[-1,-5],[-3,-9],[0,-4],[0,-5],[1,-7],[2,-5],[2,-9],[11,-75],[1,-30],[10,-41],[2,-1],[2,-3],[3,-6],[0,-3],[0,-4],[-1,-15],[-12,-29],[-2,-2],[-1,-1],[-2,-2],[-3,-7],[0,-2],[0,-3],[0,-2],[9,-20],[3,-5],[1,-3],[4,-6],[2,-2],[10,-10],[10,-7],[1,-1],[9,-15],[1,-2],[0,-1],[-1,-2],[-1,-2],[-2,-2],[-14,-13],[-9,-4],[-4,-1],[-21,-3],[-13,0],[-10,2],[-14,0],[-2,0],[-2,-2],[-4,-2],[-3,-3],[-3,-4],[-1,-1],[-10,-58],[1,-12],[1,-6],[2,-29],[-37,-47],[-5,-4],[-5,-5],[-5,-7],[-4,-5],[-4,-8],[-2,-4],[-17,-44],[-1,-4],[0,-3],[1,-16],[0,-3],[12,-29],[1,-1],[0,-30],[-38,-25],[-3,-2],[-5,-4],[-3,-4],[-3,-3],[-1,-3],[-1,-3],[-8,-98],[15,-57],[1,-3],[12,-37],[8,-35],[1,-5],[2,-5],[0,-6],[0,-4],[-2,-5],[-2,-3],[-2,-3],[-2,-4],[-4,-3],[-5,-5],[-7,-6],[-3,-3],[-21,-28],[0,-1],[-1,-6],[0,-8],[1,-2],[2,-6],[2,-2],[2,0],[3,-1],[6,-1],[6,0],[5,-1],[21,-4],[3,-1],[1,-1],[6,-27],[0,-3],[22,-7],[5,1],[3,0],[14,0],[8,0],[4,-1],[31,-9],[6,-3],[2,-2],[7,-4],[1,-2],[0,-2],[-1,-4],[-2,-9],[-1,-3],[-1,-3],[-2,-2],[-19,-19],[-2,0],[-1,0],[-12,4],[-7,3],[-1,1],[-1,1],[-2,2],[-3,2],[-3,0],[-3,0],[-27,-8],[-9,-2],[-3,-2],[-3,-3],[-3,-3],[-2,-3],[-1,-2],[-8,-17],[-11,-22],[-2,-4],[-3,-5],[-5,-5],[-3,-5],[-4,-2],[-5,-3],[-4,-2],[-2,-3],[-2,-3],[-1,-5],[-1,-7],[-5,-74],[-1,-2],[-1,-1],[-4,-4],[-15,-6],[-3,-1],[-3,0],[-12,-1],[-9,1],[-2,-1],[-1,0],[-18,-13],[-4,-2],[-3,-3],[-3,-3],[-5,-7],[-1,-3],[-1,-4],[0,-6],[-2,-58],[0,-7],[0,-8],[1,-5],[1,-1],[2,-4],[5,-4],[6,-6],[3,-3],[2,-1],[3,-2],[5,-3],[4,-2],[5,-3],[2,-3],[3,-3],[5,-18],[0,-2],[-1,-1],[-3,-2],[-3,-2],[-21,-6],[-4,-1],[-10,-1],[-61,-27],[-54,-28],[-10,-3],[-3,-1],[-6,0],[-6,0],[-65,6],[-6,2],[-6,2],[-6,2],[-3,1],[-4,3],[-6,5],[-4,3],[-1,2],[-1,1],[0,3],[-1,1],[-1,2],[-1,0],[-1,0],[-13,-8],[-4,-3],[-5,-4],[-6,-7],[-4,-5],[-3,-4],[-18,-32],[-1,-3],[0,-3],[1,-8],[0,-3],[1,-3],[2,-3],[3,-3],[4,-4],[6,-9],[4,-7],[4,-7],[3,-8],[3,-8],[2,-8],[0,-2],[0,-3],[0,-4],[-1,-5],[-8,-31],[-19,-77],[-10,-39],[-24,-68],[-18,-57],[-4,-54],[6,-10],[16,-82],[1,-5],[0,-3],[0,-4],[-14,-37],[-2,-3],[-6,-6],[-3,-3],[-4,-2],[-5,-2],[-11,-6],[-11,-7],[-4,-3],[-4,-3],[-49,-49],[-2,-3],[-2,-2],[-1,-4],[-1,-3],[0,-5],[4,-17],[2,-4],[3,-6],[2,-4],[5,-5],[6,-7],[2,-3],[1,-1],[3,-10],[5,-17],[0,-4],[-1,-5],[-4,-8],[-4,-6],[-10,-19],[-3,-3],[-2,-2],[-2,-2],[-3,0],[-3,-1],[-4,-3],[-9,-6],[-3,-2],[-2,-4],[-2,-4],[-2,-6],[0,-3],[-1,-8],[0,-7],[1,-5],[0,-6],[1,-4],[2,-3],[14,-27],[4,-5],[4,-4],[4,-2],[7,-1],[7,-1],[42,-16],[8,-15],[3,-3],[3,-4],[9,-10],[3,-3],[6,-5],[6,-5],[16,-13],[3,-2],[3,0],[2,1],[3,1],[10,1],[9,1],[19,1],[9,-2],[45,-23],[3,-2],[18,-16],[2,-2],[2,-4],[1,-4],[4,-35],[16,-64],[15,-25],[0,-6],[0,-6],[-3,-12],[-3,-9],[-2,-4],[-5,-6],[-26,-25],[-8,-7],[-74,-60],[-15,-8],[-2,-2],[-3,-5],[-14,-14],[-31,-7],[-25,-5],[-18,-2],[-18,2],[-3,0],[-1,1],[1,2],[1,2],[-1,2],[-10,23],[-3,4],[-11,14],[-43,52],[-4,3],[-1,2],[-4,1],[-1,0],[-12,-2],[-4,-1],[-5,-2],[-1,-1],[-17,-12],[-6,-7],[-2,-4],[-3,-6],[-1,-4],[-1,-5],[0,-4],[-1,-4],[0,-5],[1,-4],[2,-16],[1,-4],[2,-3],[3,-5],[4,-5],[8,-11],[2,-4],[3,-4],[1,-6],[1,-6],[-5,-38],[0,-4],[-7,-18],[-1,-2],[-1,-1],[-22,-8],[-2,1],[-2,0],[-1,1],[-3,1],[-2,1],[-1,-2],[-1,-4],[0,-5],[0,-5],[4,-37],[1,-6],[0,-2],[1,0],[2,-2],[3,-1],[2,-1],[1,-1],[1,-1],[0,-1],[-1,-2],[0,-2],[-3,-7],[-1,-1],[-2,-1],[-10,0],[-4,1],[-11,5],[-3,2],[-5,3],[-5,4],[-4,4],[-3,3],[-3,2],[-6,2],[-5,1],[-9,2],[-20,4],[-23,3],[-1,0],[-2,-3],[-10,-11],[-24,-32],[-29,9],[-32,-24],[-1,-8],[-2,-9],[-1,-6],[-9,-38],[-1,-5],[-1,-2],[-26,-43],[-19,-7],[-53,35],[-61,33],[-39,27],[-4,2],[-3,1],[-2,1],[-8,1],[-11,2],[-8,0],[-5,1],[-3,-1],[-2,0],[-2,-1],[-15,-7],[-3,-2],[-3,-3],[-4,-5],[-4,-3],[-6,-4],[-6,-3],[-4,-2],[-3,-1],[-13,-1],[-3,1],[-2,1],[-4,1],[-3,1],[-3,0],[-3,-1],[-43,-39],[-8,-13],[-8,-23],[-2,-12],[0,-3],[0,-2],[4,-9],[2,-7],[5,-27],[5,-35],[2,-11],[0,-10],[0,-6],[-1,-12],[-2,-7],[-2,-4],[-28,-57],[-2,-5],[-16,-31],[-1,-1],[-2,-1],[-4,-2],[-6,-1],[-6,-1],[-4,-1],[-4,-2],[-15,-6],[-1,-1],[0,-3],[-4,-19],[-1,-11],[-2,-28],[-22,-35],[-9,-21],[-14,-41],[-1,-4],[-1,-5],[0,-2],[-1,-3],[1,-5],[3,-9],[1,-7],[1,-6],[0,-6],[0,-1],[-2,-5],[-1,-3],[-2,-5],[-2,-1],[-3,-2],[-2,-1],[-7,-2],[-7,0],[-12,-2],[-6,-2],[-10,-3],[-5,-4],[-3,-3],[-6,-10],[-1,-3],[-1,-5],[-2,-3],[-2,-5],[-3,-5],[-6,-9],[-4,-5],[-6,-6],[-11,-10],[-5,-3],[-16,-11],[-6,-3],[-7,-2],[-7,-1],[-5,-1],[-13,-9],[2,-37],[0,-3],[1,-15],[1,-3],[4,-7],[2,-2],[7,-5],[8,-4],[2,-3],[1,-4],[-1,-4],[-3,-9],[-5,-11],[-1,-3],[-2,-2],[-21,-23],[-5,-5],[-13,-9],[-5,-4],[-9,-4],[-9,-3],[-22,-7],[-3,0],[-6,1],[-7,2],[-4,2],[-3,2],[-4,4],[-8,13],[-4,5],[-5,8],[-5,5],[-4,2],[-16,7],[-2,1],[-2,0],[-1,-1],[-1,-1],[-3,-3],[-3,-3],[-2,-3],[-1,-3],[-1,-3],[-1,-3],[-2,-4],[-13,-20],[-2,-4],[-43,-39],[-35,16],[-2,2],[-5,2],[-3,0],[-2,0],[-3,-2],[-37,-18],[-13,-12],[-21,-24],[-1,-2],[-1,-2],[1,-3],[1,-4],[5,-9],[5,-12],[11,-29],[4,-11],[1,-4],[0,-3],[-1,-25],[-1,-5],[-2,-5],[-1,-3],[-6,-7],[-10,-12],[-4,-3],[-6,-5],[-5,-3],[-6,-3],[-4,-3],[-4,-3],[-3,-3],[-25,-25],[-3,-3],[-1,-3],[-1,-3],[-1,-4],[1,-4],[1,-6],[6,-27],[3,-11],[2,-4],[2,-5],[1,-18],[0,-2],[-1,-37],[0,-2],[-1,-3],[-2,-2],[-2,-2],[-26,-3],[-1,0],[0,1],[-2,1],[-7,7],[-2,3],[-2,2],[-3,12],[-1,3],[1,38],[2,24],[-34,5],[-11,-9],[-22,-18],[-1,-1],[-6,-25],[-1,-2],[0,-6],[1,-3],[1,-5],[1,-4],[2,-4],[2,-4],[1,-2],[0,-5],[1,-21],[-1,-4],[-4,-18],[0,-2],[-2,-3],[-1,-1],[-5,-4],[-5,-5],[-4,-6],[-7,-10],[-6,-13],[-6,-17],[-1,-4],[-1,-3],[-1,-5],[-4,-31],[0,-1],[3,-10],[1,-6],[6,-14],[3,-6],[3,-7],[3,-5],[4,-4],[4,-3],[6,-3],[6,-6],[7,-6],[4,-6],[13,-22],[2,-4],[1,-2],[0,-3],[0,-4],[-2,-9],[-9,-30],[-16,-39],[-1,-3],[-3,-4],[-8,-9],[-4,-4],[-6,-3],[-6,-2],[-8,-5],[-6,-5],[-7,-6],[-3,-4],[-3,-5],[-18,-35],[-34,-57],[-5,-6],[-8,-18],[0,-4],[-1,-1],[-1,-20],[0,-2],[12,-43],[9,-21],[6,-13],[1,-4],[0,-3],[-2,-15],[0,-3],[-2,-3],[-2,-4],[-5,-12],[-2,-1],[-4,-2],[-20,-9],[-60,-13],[-2,-1],[-3,1],[-15,4],[-5,3],[-6,4],[-3,2],[-40,-12],[0,-3],[-5,-9],[-22,-17],[-2,-3],[-92,-57],[-28,0],[-44,4],[-11,-6],[-3,-2],[-2,-1],[-1,0],[-2,2],[-7,8],[-7,8],[-1,2],[0,2],[0,4],[0,6],[1,4],[1,2],[0,1],[1,3],[1,1],[0,3],[-1,5],[-1,3],[0,1],[-1,1],[-27,18],[-4,2],[-4,2],[-2,1],[-3,0],[-4,-2],[-16,-12],[-35,-16],[-4,0],[-3,3],[-2,7],[-2,7],[1,5],[-3,12],[-5,7],[-3,3],[-4,2],[-14,4],[-12,4],[-5,1],[-34,8],[-2,0],[-2,0],[-1,-1],[-1,-1],[-3,0],[-37,13],[-26,10],[-5,3],[-2,1],[-7,3],[-6,1],[-9,0],[-2,0],[-6,-2],[-8,-3],[-5,-1],[-2,0],[-2,-1],[-2,0],[-9,1],[-4,1],[-10,3],[-5,2],[-9,3],[-9,2],[-9,1],[-1,0],[-2,-1],[-2,-1],[-5,-3],[-24,-14],[-2,-2],[-47,38],[-31,2],[0,-1],[0,-2],[-2,-3],[-2,-4],[-6,-7],[-5,-5],[-53,-49],[-2,-1],[-3,-2],[-3,-2],[-6,-4],[-2,0],[-6,-2],[-68,-7],[-2,0],[-4,2],[-4,2],[-6,3],[-2,3],[0,2],[0,3],[1,4],[3,8],[2,6],[0,6],[-3,8],[-2,3],[-2,4],[-6,8],[-7,8],[-29,31],[-2,2],[-2,2],[-2,1],[-53,38],[-5,3],[-1,0],[-5,1],[-2,-1],[0,-1],[-1,-2],[-12,-22],[-2,-4],[-1,-4],[-2,-11],[0,-3],[0,-1],[0,-2],[2,-3],[0,-3],[-1,-4],[-1,-5],[0,-2],[0,-2],[-3,-7],[-5,-16],[-1,-3],[-6,-14],[-5,-7],[-14,-19],[-2,-2],[-43,-41],[-3,-3],[-2,-1],[-6,0],[-7,1],[-7,1],[-2,1],[-3,2],[-7,6],[-5,6],[-2,3],[-1,4],[-2,4],[-1,5],[0,15],[1,4],[2,1],[3,2],[7,2],[11,2],[4,1],[1,2],[1,3],[1,3],[3,11],[2,11],[1,6],[1,4],[0,5],[0,4],[0,7],[0,1],[-1,3],[-8,25],[-20,64],[-4,10],[-2,3],[-1,3],[-3,4],[-4,5],[-5,6],[-3,2],[-10,8],[-46,29],[-2,1],[-2,0],[-3,1],[-52,5],[-6,-2],[-5,-3],[-4,-5],[-2,-5],[-4,-6],[-2,-3],[-1,-1],[-2,-4],[-2,-3],[-4,-2],[-4,-1],[-2,0],[-2,0],[-4,1],[-4,3],[-3,2],[-9,8],[-12,12],[-7,7],[-3,3],[-3,5],[-2,5],[-11,22],[0,2],[-1,1],[0,2],[0,2],[1,1],[0,2],[1,1],[1,1],[3,2],[13,9],[9,5],[3,2],[4,3],[3,2],[4,3],[1,3],[12,18],[5,10],[3,7],[2,6],[7,22],[2,7],[0,4],[0,2],[-1,2],[-1,3],[-1,2],[-4,6],[-5,4],[-5,4],[-5,3],[-4,1],[-6,2],[-9,1],[-3,1],[-3,0],[-6,0],[-2,-1],[-3,0],[-4,-3],[-1,-1],[-2,-2],[-2,-4],[-9,-14],[-28,-37],[-2,-2],[-1,-2],[-29,-21],[-5,-3],[-3,-2],[-2,-1],[-9,-1],[-24,1],[-8,0],[-7,2],[-7,2],[-8,4],[-8,3],[-2,2],[-13,9],[-4,4],[-4,6],[-2,3],[-15,28],[-1,2],[-1,3],[0,1],[-9,34],[0,1],[-1,8],[0,1],[1,0],[8,3],[2,0],[3,0],[2,-1],[2,-1],[4,-4],[2,-2],[4,-2],[4,-2],[5,-1],[4,0],[2,0],[14,5],[8,4],[18,11],[19,21],[7,11],[2,6],[2,42],[1,6],[-1,3],[0,4],[-1,2],[-1,4],[-2,4],[-8,12],[-2,2],[-11,11],[-1,1],[-1,1],[-18,5],[-3,1],[-5,1],[-10,-1],[-9,-1],[-3,0],[-5,0],[-8,0],[-4,1],[-5,2],[-6,2],[-16,9],[-4,3],[-3,4],[-2,3],[-5,4],[-4,0],[-4,-3],[-18,-19],[-1,-6],[-7,-66],[-9,-61],[-1,-10],[-1,-2],[0,-2],[-33,-63],[-2,-3],[-2,-3],[-6,-8],[-16,-12],[-4,-4],[-6,-3],[-1,-1],[-2,0],[-5,0],[-4,0],[-3,1],[-3,1],[-29,12],[-21,10],[-17,10],[-24,14],[-3,1],[-7,1],[-2,1],[-51,6],[-2,1],[-3,-1],[-4,-1],[-3,0],[-3,-2],[-22,29],[-2,30],[0,2],[-5,14],[-2,4],[-3,7],[-5,6],[-2,2],[-4,3],[-8,3],[-4,1],[-4,1],[-2,-1],[-2,-1],[-3,-3],[-3,-5],[-3,-5],[-1,-3],[-1,-1],[-1,-2],[-3,-1],[-6,-3],[-29,-11],[-9,-2],[-2,0],[-2,0],[-2,0],[-1,1],[-2,1],[-2,2],[-1,1],[-6,7],[-2,4],[-2,4],[-8,33],[0,8],[0,5],[0,4],[0,1],[1,2],[0,1],[-1,2],[-1,3],[-1,0],[-1,1],[-3,0],[-8,-1],[-30,-7],[-6,-2],[-4,-1],[-2,-2],[-2,-1],[-6,-1],[-13,-1],[-1,1],[-19,13],[-1,2],[-8,7],[-8,9],[-10,8],[-4,2],[-20,5],[-3,0],[-11,0],[-2,-2],[-4,-2],[-5,-2],[-2,0],[-3,0],[-3,1],[-24,7],[-9,3],[-2,1],[-1,1],[-2,3],[-2,3],[-1,5],[-1,3],[2,3],[3,3],[8,3],[5,2],[3,3],[7,9],[3,4],[2,2],[-1,5],[-1,4],[-1,3],[-15,34],[-17,37],[-1,2],[-2,2],[-3,2],[-3,1],[-12,3],[-5,1],[-3,0],[-12,1],[-2,0],[-3,0],[-3,0],[-3,0],[-5,1],[-3,1],[-3,1],[-4,2],[-23,23],[-8,8],[-21,26],[-2,3],[-1,3],[-4,32],[0,2],[0,5],[0,1],[0,7],[1,3],[0,3],[1,2],[1,1],[-13,10],[-61,1],[-3,0],[-10,-1],[-1,0],[-1,-1],[-3,-3],[-1,-1],[0,-2],[0,-2],[1,-2],[2,-3],[5,-7],[2,-2],[2,-3],[3,-3],[3,-2],[1,-2],[2,-2],[1,-2],[-3,-8],[-2,-3],[-2,-2],[-8,-6],[-6,-4],[-2,-1],[-3,0],[-41,-1],[-5,0],[-8,2],[-2,0],[-2,2],[-5,3],[-11,10],[-2,4],[-7,17],[-1,1],[0,2],[1,2],[0,1],[4,7],[5,11],[3,6],[2,5],[3,6],[6,26],[6,27],[1,9],[1,5],[0,4],[0,10],[-1,16],[-1,3],[0,2],[-1,1],[-46,26],[-2,9],[-2,8],[-1,3],[-2,3],[-2,3],[-2,3],[-2,1],[-3,3],[-8,5],[-3,3],[-3,2],[-5,2],[-5,2],[-5,1],[-6,1],[-6,2],[-2,3],[-11,15],[-43,72],[-6,24],[-1,3],[-2,3],[-9,12],[-15,18],[-1,2],[-4,-1],[-5,-1],[-5,-5],[-3,-3],[-3,-6],[-3,-8],[-3,-7],[-1,-5],[-1,-3],[-4,-3],[-7,-1],[-6,3],[-8,5],[-20,19],[-7,7],[-3,8],[0,9],[1,5],[4,4],[8,6],[11,4],[11,6],[7,5],[2,7],[0,5],[0,4],[-1,3],[-1,4],[-2,4],[-7,18],[-2,3],[-3,4],[-5,4],[-5,2],[-3,0],[-4,-1],[-6,-4],[-6,-6],[-3,-2],[-4,-2],[-3,-1],[-4,0],[-5,0],[-5,1],[-7,3],[-7,5],[-5,5],[-5,3],[-4,2],[-4,3],[-6,3],[-4,1],[-4,1],[-5,0],[-45,0],[-15,-1],[-6,20],[9,15],[2,8],[2,26],[0,30],[0,10],[-2,16],[-1,2],[-2,11],[-3,8],[-2,5],[-27,20],[-1,1],[-12,7],[-66,40],[-6,1],[-16,1],[-4,0],[-9,0],[-4,-1],[-4,0],[-6,-2],[-7,-3],[-2,-1],[-2,-2],[-5,-5],[-3,-3],[0,-2],[0,-1],[-1,-1],[-1,-1],[-3,0],[-3,1],[-3,1],[-2,2],[-13,15],[-3,6],[-4,7],[-1,3],[-1,5],[-2,6],[-1,5],[-1,6],[0,6],[1,8],[1,7],[0,4],[1,3],[1,2],[2,2],[1,1],[6,8],[2,2],[4,4],[0,1],[0,2],[0,2],[-1,8],[0,3],[-2,4],[-4,7],[-1,1],[-21,19],[-2,2],[-3,1],[-4,-4],[-56,-31],[-23,-6],[-48,-15],[-29,-9],[-2,-2],[-13,-8],[-6,-3],[-4,-3],[-5,-2],[-6,-2],[-8,-1],[-12,0],[-14,0],[-9,0],[-49,5],[-1,0],[-3,1],[-15,9],[-6,4],[-16,20],[-3,3],[-2,3],[-1,2],[0,2],[0,3],[-2,3],[-3,5],[-10,16],[-1,1],[-1,1],[-20,8],[-20,13],[-3,3],[-1,1],[-1,3],[-2,6],[-3,7],[-1,2],[-2,3],[-15,20],[-2,2],[-3,2],[-3,1],[-4,0],[-5,-2],[-15,-7],[-16,-8],[-9,-5],[-5,-2],[-6,-1],[-22,1],[-20,1],[-23,2],[-5,-1],[-4,-2],[-4,-2],[-3,-2],[-4,-4],[-2,-6],[-6,-12],[-1,-3],[-10,-9],[-5,-3],[-9,-1],[-6,1],[-9,5],[-3,3],[-2,3],[0,3],[-24,12],[-2,0],[-3,-1],[-27,-12],[-4,-2],[-9,-7],[-3,-3],[-2,-3],[0,-3],[-2,-3],[-2,-5],[-5,-2],[-6,-1],[-15,-2],[-4,2],[-4,4],[-3,4],[0,6],[2,8],[1,3],[-18,42],[-21,48],[-2,2],[-4,4],[-18,9],[-5,3],[-52,16],[-35,4],[-8,0],[-38,8],[-37,19],[-48,22],[-4,2],[-4,0],[-5,-2],[-4,-3],[-5,-4],[-7,-3],[-4,-1],[-6,-1],[-9,-1],[-7,0],[-4,1],[-9,4],[-8,3],[-5,3],[-2,5],[-2,7],[-2,6],[-15,28],[-4,7],[-3,4],[-5,4],[-6,2],[-4,1],[-25,1],[-30,2],[-2,-1],[-4,-1],[-2,-1],[-2,-2],[-2,-3],[-2,-3],[-8,-20],[-1,-6],[-29,7],[-11,29],[-14,36],[-2,5],[-14,22],[-3,3],[-65,68],[-3,1],[-4,3],[-1,1],[-27,30],[-3,4],[-6,9],[-22,37],[-2,4],[0,2],[0,45],[9,27],[2,4],[1,2],[2,8],[0,4],[0,2],[-6,16],[-2,5],[-4,6],[-2,1],[-1,1],[-2,0],[-12,-4],[-3,-3],[-3,-1],[-5,-4],[-9,-6],[-6,-2],[-4,-1],[-4,-1],[-18,-2],[-9,-1],[-8,0],[-7,1],[-5,1],[-5,2],[-3,1],[-4,3],[-2,3],[-1,1],[-1,2],[-1,1],[-1,17],[0,1],[1,1],[2,2],[2,2],[6,5],[2,2],[1,1],[2,0],[2,2],[4,5],[1,2],[4,13],[0,1],[0,2],[-4,11],[-2,3],[-4,6],[-22,35],[-3,2],[-2,1],[-9,2],[-2,0],[-4,0],[-13,-5],[-1,-1],[-41,-47],[-1,-1],[-1,-3],[-1,-4],[0,-1],[1,-1],[1,-3],[3,-3],[1,-1],[1,-1],[1,0],[1,-1],[0,-2],[-1,-5],[-15,-40],[0,-1],[-1,0],[-43,1],[-49,58],[-1,3],[-1,4],[0,6],[2,7],[2,12],[2,11],[4,40],[-2,7],[-1,4],[-4,8],[-3,6],[0,3],[2,24],[1,4],[4,16],[1,1],[0,1],[1,1],[3,1],[4,0],[4,-2],[11,-2],[9,-2],[3,1],[2,1],[0,1],[1,1],[6,39],[0,3],[-1,3],[-10,27],[-45,114],[-4,8],[-5,9],[-2,1],[-4,1],[-6,0],[-11,1],[-8,-1],[-5,0],[-2,-2],[-2,-1],[-2,-1],[-26,-22]],[[37199,41740],[0,-11],[0,-9],[0,-13],[-2,-206],[0,-13],[1,-15],[0,-25],[0,-31],[0,-32],[0,-70],[0,-61],[0,-103],[0,-76],[-1,-203],[0,-42],[0,-57],[-1,-35],[0,-44],[0,-13],[0,-2],[0,-173],[0,-43],[0,-9],[0,-25],[-1,-113],[0,-103],[-2,-108],[0,-36],[0,-97],[0,-32],[0,-80],[0,-83],[0,-2],[0,-202],[-1,-118],[0,-27],[0,-191],[0,-100],[0,-62],[0,-34],[-3,-39],[-2,-78],[1,-64],[2,-82],[0,-20],[0,-11],[0,-1],[0,-95],[0,-53],[0,-117],[0,-55],[0,-47],[0,-111],[-1,-84],[-1,-91],[0,-40],[0,-1],[0,-19],[0,-37],[0,-16],[-1,-42],[0,-43],[0,-27],[-2,-29],[-1,-87],[1,-47],[-1,-72],[0,-21],[-1,-79],[0,-13],[0,-73],[-1,-77],[0,-47],[-1,-192],[-4,-144]],[[37177,36987],[-12,10],[-26,23],[-7,5],[-7,6],[-10,7],[-20,14],[-6,4],[-9,4],[-5,1],[-6,2],[-14,1],[-33,2],[-6,-1],[-7,-3],[-7,-3],[-7,-4],[-3,-4],[-2,-3],[0,-4],[2,-11],[-1,-20],[0,-8],[-2,-7],[-12,-21],[-4,-5],[-2,-2],[-3,0],[-68,-1],[-17,2],[-14,1],[-13,2],[-10,4],[-11,5],[-12,7],[-14,9],[-5,6],[-13,20],[-3,5],[-3,7],[-2,5],[-3,5],[-3,28],[-1,10],[1,11],[1,10],[1,4],[3,4],[5,4],[3,3],[2,2],[4,3],[3,2],[6,4],[7,5],[21,20],[2,3],[9,15],[9,13],[2,4],[0,3],[0,1],[-1,2],[-8,9],[-6,6],[-45,35],[-15,11],[-18,9],[-8,4],[-5,1],[-4,0],[-5,0],[-13,-4],[-10,-4],[-7,-5],[-6,-6],[-8,-8],[-4,-5],[-2,-2],[-1,-3],[-1,-7],[-1,-8],[-1,-6],[1,-9],[1,-5],[11,-31],[2,-4],[4,-4],[6,-6],[4,-6],[4,-5],[4,-8],[7,-17],[3,-8],[4,-9],[2,-8],[1,-6],[1,-6],[-1,-5],[-3,-6],[-4,-7],[-6,-6],[-8,-6],[-6,-4],[-7,-3],[-5,-1],[-5,0],[-5,1],[-3,1],[-36,18],[-23,13],[-9,5],[-8,6],[-11,8],[-5,5],[-8,9],[-6,7],[-57,69],[-2,3],[-1,3],[0,2],[1,3],[1,3],[-1,3],[-1,5],[-4,7],[-6,8],[-4,5],[-5,3],[-6,2],[-4,1],[-6,2],[-4,0],[-21,-4],[-3,0],[-4,-4],[-53,-59],[-3,-3],[-10,-11],[-6,-7],[-7,-5],[-7,-5],[-15,-11],[-7,-4],[-4,-2],[-26,-13],[-5,-2],[-4,-1],[-1,0],[-2,0],[-9,2],[-80,19],[-5,3],[-13,7],[-4,1],[-4,2],[-13,3],[-57,5],[-24,0],[-47,1],[-8,-2],[-11,-3],[-3,-1],[-7,-6],[-3,-2],[-10,-9],[-6,-6],[-8,-14],[-5,-8],[-12,-21],[-14,-24],[-13,-20],[-3,-5],[-6,-6],[-12,-10],[-15,-8],[-10,-4],[-2,-1],[-4,1],[-5,1],[-18,14],[-4,3],[-3,5],[-1,1],[-3,10],[-2,8],[0,7],[0,1],[0,7],[1,9],[2,5],[8,6],[1,5],[1,7],[-2,15],[-1,5],[-1,4],[0,1],[-4,15],[-1,6],[-4,9],[-11,16],[-3,3],[-9,4],[-24,3],[-14,0],[-21,7],[-3,2],[-1,0],[-3,0],[-2,-1],[-5,-3],[-4,-2],[-6,-6],[-2,-3],[-3,-6],[-2,-2],[-2,-2],[-13,-11],[-13,-10],[-6,-5],[-2,-1],[-11,-7],[-5,1],[-6,2],[-25,13],[-9,6],[-3,3],[-3,2],[-5,8],[-4,6],[0,1],[-1,0],[0,1],[-1,3],[-4,11],[-12,43],[4,19],[1,11],[-1,8],[0,1],[-2,4],[-3,8],[-4,6],[-2,2],[-7,7],[-46,24],[-19,2],[-5,0],[-29,-2],[-3,0],[-4,-2],[-2,-3],[-1,-3],[-8,-25],[-2,-6],[-1,-6],[0,-7],[0,-7],[1,-5],[1,-3],[3,-4],[2,-4],[2,-5],[1,-3],[0,-4],[0,-3],[-15,-54],[-3,-7],[-3,-6],[-4,-6],[-6,-6],[-5,-5],[-8,-3],[-7,-1],[-6,1],[-6,2],[-4,3],[-5,5],[-3,6],[-4,9],[-11,25],[-2,4],[0,5],[0,5],[-3,10],[-2,3],[-2,2],[-3,2],[-7,5],[-5,2],[-4,0],[-4,-1],[-7,-2],[-10,-3],[-1,-1],[-4,-2],[-6,-3],[-2,-2],[-49,-35],[-47,-30],[-6,-2],[-5,0],[-8,3],[-5,2],[-4,1],[-3,4],[-1,3],[-2,6],[-2,7],[-3,5],[-3,5],[-6,5],[-6,5],[-8,3],[-8,2],[-5,0],[-5,0],[-7,-2],[-4,-3],[-3,-2],[-5,-2],[-6,-1],[-7,1],[-7,3],[-6,3],[-4,4],[-3,3],[-3,3],[-3,1],[-6,2],[-8,2],[-5,0],[-4,0],[-6,-2],[-8,-3],[-5,-2],[-4,-3],[-2,-1],[-4,-5],[-5,-5],[-1,-2],[-3,-7],[-3,-8],[-1,-7],[-1,-5],[0,-4],[1,-5],[11,-31],[3,-6],[3,-3],[1,-4],[2,-6],[0,-4],[-2,-4],[-4,-5],[-5,-5],[-6,-5],[-7,-3],[-4,0],[-4,2],[-5,2],[-5,1],[-6,-1],[-7,-1],[-5,-1],[-3,-2],[-5,-5],[-9,-12],[-1,-2],[-33,-20],[-28,9],[-46,0],[-69,4],[-20,24],[-16,19],[-3,3],[-4,4],[-4,3],[-5,3],[-39,18],[-5,1],[-3,0],[-4,-1],[-43,-15],[-5,-4],[-5,-4],[-5,-6],[-5,-3],[-4,-2],[-5,0],[-5,0],[-8,3],[-7,2],[-10,4],[-6,4],[-4,3],[-4,3],[-4,2],[-3,1],[-3,0],[-38,-7],[-40,5],[-11,0],[-4,0],[-2,-2],[-1,-3],[-1,-3],[-3,-2],[-4,-1],[-4,2],[-4,3],[-2,4],[-3,10],[-4,13],[-1,5],[0,2],[-2,21],[7,13],[0,3],[-2,4],[-8,8],[-9,7],[-1,1],[-19,-3],[-5,-1],[-3,-1],[-3,-1],[-3,-3],[-5,-5],[-1,-2],[-3,-3],[-16,-15],[-4,-3],[-4,-2],[-4,1],[-5,1],[-5,2],[-4,4],[-7,6],[-6,5],[-7,4],[-7,3],[-19,8],[-7,1],[-7,1],[-6,0],[-8,1],[-6,1],[-8,4],[-7,3],[-5,3],[-2,3],[-4,7],[-13,22],[-19,30],[-2,3],[-4,5],[-4,3],[-7,5],[-4,2],[-3,1],[-3,-1],[-2,-2],[-4,-3],[-4,0],[-3,1],[-24,11],[-5,3],[-5,3],[-6,7],[-3,3],[-2,4],[0,6],[-1,5],[-2,10],[-2,8],[-4,8],[-41,63],[-6,4],[-6,2],[-7,0],[-6,-1],[-7,-2],[-12,-3],[-4,0],[-7,0],[-38,2],[-5,1],[-2,2],[-3,10],[-9,35],[1,4],[11,22],[9,21],[3,15],[-1,11],[-1,10],[-3,10],[-16,35],[-6,11],[-4,5],[-6,5],[-4,2],[-22,14],[-7,3],[-6,1],[-5,-1],[-5,-2],[-5,-4],[-5,-8],[-5,-7],[-4,-7],[-3,-6],[-7,-26],[-1,-5],[0,-4],[0,-5],[1,-5],[1,-4],[0,-4],[-1,-5],[-3,-5],[-3,-5],[-4,-4],[-4,-5],[-6,-5],[-4,-1],[-5,-1],[-4,1],[-6,1],[-6,2],[-4,2],[-4,4],[-3,3],[-2,7],[-5,7],[-3,3],[-33,34],[-8,6],[-8,3],[-8,3],[-9,1],[-7,0],[-10,-1],[-10,-2],[-5,-2],[-5,-2],[-4,-5],[-5,-5],[-4,-4],[-5,-4],[-14,-9],[-7,-3],[-7,-1],[-9,0],[-4,1],[-5,2],[-19,18],[-12,11],[-7,10],[-3,6],[-1,4],[-2,7],[-2,6],[-5,5],[-5,3],[-4,1],[-6,2],[-10,1],[-7,0],[-29,-3],[-5,-1],[-9,-2],[-4,-1],[-2,0],[-16,3],[-4,1],[-5,3],[-3,6],[-2,6],[-1,7],[0,6],[10,49],[3,6],[3,3],[1,3],[1,5],[-1,7],[-1,5],[0,2],[-16,34],[-2,3],[-2,2],[-3,2],[-3,1],[-4,1],[-3,1],[-3,0],[-4,-1],[-2,-2],[-3,-1],[-5,-6],[-11,-25],[-1,-4],[-1,-3],[-1,-5],[-1,-5],[0,-3],[0,-3],[0,-4],[2,-2],[1,-4],[1,-3],[1,-5],[1,-3],[-1,-3],[-3,-7],[-3,-7],[-3,-5],[-3,-3],[-3,-2],[-10,-4],[-10,-3],[-4,0],[-2,0],[-27,6],[-15,4],[-3,1],[-2,1],[-4,3],[-5,5],[-1,2],[-3,21],[0,3],[0,3],[10,35],[1,5],[2,1],[2,2],[2,2],[1,4],[3,4],[1,4],[0,3],[0,4],[-1,1],[-11,17],[-4,4],[-5,5],[-6,3],[-6,2],[-6,2],[-7,1],[-6,-2],[-6,-2],[-4,-3],[-3,-2],[-12,-10],[-13,-12],[-10,-10],[-3,-3],[-5,-2],[-7,-3],[-2,-1],[-21,-1],[-6,1],[-4,0],[-3,1],[-5,4],[-4,3],[-4,3],[-3,6],[-2,4],[-9,25],[-1,4],[-2,7],[-2,6],[-1,5],[-2,3],[-6,7],[-3,2],[-5,2],[-17,6],[-17,4],[-4,1],[-9,2],[-5,2],[-6,3],[-5,3],[-19,21],[-2,2],[-1,2],[-2,3],[-3,3],[-4,3],[-4,2],[-3,1],[-26,0],[-8,0],[-59,9],[-2,3],[-7,5],[-4,3],[-4,1],[-2,0],[-5,-1],[-22,-5],[-6,-2],[-3,-1]],[[21715,32125],[-4,-3],[-20,-25],[-2,-2],[-8,-4],[-10,-5],[-5,-2],[-3,0],[-4,2],[-34,14],[-3,2],[-6,3],[-3,1],[-2,2],[-5,6],[-12,34],[4,30],[2,6],[1,5],[0,3],[0,2],[-9,16],[-3,6],[-2,2],[-1,1],[-2,2],[-28,10],[-2,0],[-3,-1],[-14,-8],[-5,-3],[-4,-2],[-10,-7],[-5,-3],[-6,-4],[-45,-18],[-2,0],[-2,1],[-67,30],[-1,1],[-11,12],[-1,2],[-3,12],[-1,5],[0,3],[1,1],[3,5],[-12,13],[-38,11],[-15,4],[-3,1],[-65,14],[-4,0],[-2,1],[-8,1],[-5,0],[-2,0],[-3,0],[-2,-1],[-47,-14],[-26,11],[-19,9],[-19,8],[-3,3],[-4,1],[-44,13],[-9,3],[-31,-4],[-1,-1],[-9,-11],[-1,-2],[0,-2],[1,-4],[1,-1],[1,-2],[1,-2],[-1,-3],[-1,-3],[-7,-10],[-3,-4],[-2,-2],[-2,-3],[-12,-5],[-2,-1],[-2,1],[-3,2],[-6,5],[-3,2],[-33,35],[-6,6],[-13,17],[0,1],[0,1],[0,1],[1,1],[-4,6],[-1,2],[-6,2],[-4,0],[-12,1],[-4,0],[-9,-3],[-17,-7],[-6,-2],[-4,-3],[-4,-4],[-6,-4],[-2,-1],[-5,-3],[-6,-2],[-15,-5],[-5,-2],[-2,0],[-32,5],[-8,1],[-3,1],[-6,3],[-1,1],[-1,1],[0,2],[0,3],[1,4],[1,4],[2,5],[2,4],[2,1],[1,2],[1,2],[1,2],[0,2],[0,4],[-4,10],[-3,4],[-4,5],[-4,3],[-14,11],[-16,12],[-6,3],[-4,2],[-4,2],[-3,1],[-2,1],[-2,-1],[-6,-3],[-5,-2],[-5,-1],[-7,-2],[-8,-1],[-52,-7],[-3,0],[-20,10],[-39,12],[-65,17],[-70,14],[-20,4],[-8,-5],[-27,-15],[-14,-6],[-5,0],[-4,0],[-8,0],[-3,1],[-3,0],[-4,1],[-53,25],[-5,3],[-2,1],[-26,21],[-32,20],[-4,2],[-6,3],[-4,1],[-6,1],[-11,2],[-20,3],[-19,4],[-3,1],[-68,33],[-22,13],[-15,11],[-3,2],[-7,3],[-1,1],[-2,0],[-16,-1],[-1,0],[-1,0],[-14,3],[-33,16],[-32,17],[-44,28],[-26,17],[-1,1],[-1,1],[-1,4],[-3,3],[-55,38],[-27,17],[-2,1],[-2,0],[-2,-1],[-2,1],[-4,2],[-29,24],[-1,2],[-1,2],[-9,21],[0,2],[0,1],[0,5],[1,4],[3,19],[-12,14],[-31,12],[-37,16],[-3,3],[-4,3],[-9,7],[-1,1],[-7,10],[-12,16],[-5,6],[-2,3],[-3,1],[-4,3],[-2,0],[-2,0],[-2,-1],[-2,0],[-1,-3],[-1,-2],[-3,-3],[-2,-2],[-2,-1],[-2,-1],[-3,0],[-7,0],[-5,1],[-24,2],[-3,0],[-2,2],[-4,2],[-2,1],[-1,1],[-44,46],[-21,22],[-1,0],[0,1],[0,1],[9,33],[1,2],[1,1],[-37,36],[-25,38],[0,3],[-1,5],[-1,2],[-1,2],[-59,59],[-4,4],[-2,1],[-14,5],[-2,1],[-1,1],[-3,-1],[-28,-3],[-3,0],[-2,-1],[-5,-3],[-6,-3],[-5,-4],[-4,-4],[-3,-5],[-2,-4],[-3,-3],[-1,-1],[-2,0],[-2,0],[-26,6],[0,1],[-1,1],[0,1],[-1,3],[-2,21],[0,3],[0,1],[1,2],[1,4],[1,3],[-3,21],[0,4],[-3,10],[0,1],[-3,7],[-2,2],[-2,3],[-3,3],[-4,2],[-4,-1],[-4,-2],[-3,-5],[-3,-6],[-2,-2],[-4,-2],[-2,-2],[-5,1],[-4,2],[-4,1],[-4,2],[-3,1],[-11,6],[-6,3],[-7,5],[-2,5],[-1,6],[-1,3],[-1,4],[-1,2],[-3,3],[-5,3],[-1,0],[-1,1],[-3,-1],[-3,0],[-2,-1],[-18,-20],[-17,-17],[-4,-3],[-7,-1],[-2,-1],[-3,0],[-4,2],[-4,3],[-2,7],[-1,5],[5,8],[6,14],[0,1],[-6,38],[0,2],[-2,2],[-1,0],[-5,0],[-4,-1],[-6,-4],[-4,-3],[-4,-5],[-5,-5],[-3,-2],[-7,-1],[-7,0],[-9,10],[-3,8],[-1,3],[-1,4],[-1,10],[0,5],[0,4],[-1,3],[-1,3],[-1,4],[-2,5],[-1,1],[-13,14],[-6,5],[-1,1],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-8,-9],[-13,-12],[-3,-3],[-4,-2],[-4,0],[-4,2],[-2,1],[-44,34],[-1,2],[-7,12],[0,2],[0,1],[1,1],[0,2],[12,17],[2,2],[1,1],[1,0],[2,5],[0,3],[-2,10],[-1,5],[-1,5],[-23,42],[-14,25],[-7,5],[-3,2],[-3,1],[-2,1],[-25,9],[-5,0],[-4,-1],[-3,1],[-5,3],[-5,4],[-4,6],[-4,22],[-6,45],[-3,18],[0,2],[1,3],[0,5],[1,3],[1,5],[1,9],[1,2],[2,5],[1,1],[0,1],[0,1],[1,3],[-1,2],[-1,3],[-1,2],[-2,3],[-1,2],[-2,1],[-1,2],[-26,22],[-3,2],[-5,1],[-17,14],[-34,36],[-1,1],[-1,2],[-1,2],[-3,6],[0,5],[0,5],[-1,3],[0,5],[-1,6],[-1,4],[-2,6],[-5,18],[-2,4],[-5,3],[-5,3],[-31,11],[-41,24],[-3,2],[-23,20],[-7,6],[-8,7],[-39,44],[-7,8],[-1,3],[-6,17],[0,2],[2,2],[2,2],[1,1],[1,1],[2,1],[2,1],[3,1],[1,0],[2,1],[3,2],[3,2],[3,3],[8,8],[3,3],[0,1],[3,7],[19,101],[9,42],[6,29],[2,8],[0,3],[-29,31],[-4,3],[-4,2],[-5,1],[-5,0],[-5,-1],[-59,-31],[-37,-24],[-15,-9],[-3,-1],[-3,0],[-1,1],[-4,6],[-4,9],[-5,14],[-1,3],[-1,7],[-2,7],[-2,8],[-2,13],[-2,15],[0,4],[0,7],[2,7],[0,2],[1,3],[2,4],[0,4],[1,3],[0,2],[0,4],[-2,9],[-3,9],[-3,9],[-5,9],[0,1],[-6,7],[-4,4],[-5,4],[-3,3],[-3,1],[-1,1],[-2,0],[-2,0],[-1,0],[-6,-2],[-3,-2],[-2,-1],[-1,-1],[-2,0],[-1,1],[-2,1],[-8,6],[-17,14],[-4,3],[-2,2],[-14,15],[-5,7],[-8,9],[-24,19],[-8,4],[-6,5],[-5,2],[-2,1],[-2,1],[-1,-1],[-13,-3],[-10,-3],[-3,-1],[-2,0],[-1,0],[-2,0],[-4,2],[-4,1],[-4,2],[-2,1],[-2,2],[-3,4],[-2,4],[-2,2],[-1,3],[-2,8],[-2,10],[0,1],[0,1],[1,1],[1,1],[1,1],[2,1],[1,0],[1,0],[1,2],[1,0],[0,2],[-1,3],[-1,5],[-1,2],[-4,10],[-1,2],[-19,8],[-6,2],[-3,1],[-2,0],[-12,0],[-21,2],[-40,28],[-4,3],[-3,1],[-3,0],[-4,-1],[-4,-5],[-4,-3],[-6,-1],[-3,0],[-11,1],[-4,1],[-9,2],[-45,10],[-9,2],[-14,4],[-1,1],[-2,0],[-7,5],[-2,2],[-1,3],[0,4],[2,3],[2,3],[2,2],[1,3],[-1,0],[-2,3],[-4,4],[-5,3],[-5,3],[-5,2],[-6,2],[-5,1],[-5,1],[-2,0],[-6,1],[-12,0],[-10,0],[-8,-1],[-21,-3],[-12,-2],[-9,-2],[-3,-1],[-16,-2],[-4,0],[-1,0],[-2,1],[-1,1],[0,1],[-1,3],[0,4],[1,3],[0,2],[2,3],[2,4],[3,5],[1,1],[1,3],[0,2],[0,2],[0,4],[-1,5],[-1,7],[-1,3],[-1,1],[-6,11],[-4,6],[-2,3],[-2,3],[-2,3],[-2,1],[-1,2],[-4,2],[-7,3],[-2,1],[-2,1],[-1,0],[-3,0],[-2,0],[-1,0],[-5,-2],[-3,-1],[-2,-1],[-1,-1],[-2,-2],[-18,-19],[-2,-2],[-1,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[1,-2],[1,-6],[2,-4],[0,-3],[0,-2],[0,-2],[0,-21],[-1,-2],[0,-2],[0,-2],[-1,-4],[-2,-9],[-2,-3],[0,-2],[-1,-1],[-2,-1],[-1,0],[-2,1],[-2,0],[-1,1],[-2,2],[-2,2],[-3,2],[-1,0],[-1,1],[-1,1],[-9,3],[-5,1],[-4,1],[-1,-1],[-26,-3],[-4,0],[-2,-2],[-2,0],[-2,-2],[-9,-8],[-2,-2],[0,-1],[-2,-2],[0,-1],[1,-2],[0,-1],[0,-1],[-2,-3],[-4,-4],[-5,-2],[-2,-2],[-2,-1],[-4,-1],[-3,0],[-1,1],[-10,2],[-4,2],[-6,4],[-3,2],[-21,17],[-73,58],[-20,16],[-61,47],[-3,4],[-24,25],[-24,28],[-2,4],[-5,6],[-3,4],[-3,3],[-1,0],[-10,4],[-4,2],[-5,1],[-4,1],[-4,0],[-7,-1],[-3,0],[-3,-1],[-7,-5],[-7,-4],[-2,-1],[-5,-4],[-2,-1],[-2,0],[-3,-1],[-8,1],[-1,1],[-1,1],[-7,8],[-14,17],[-60,73],[-26,38],[-2,4],[3,31],[-3,13],[-15,63],[0,1],[-2,8],[-2,6],[-2,5],[-3,4],[-4,4],[-14,12],[-8,6],[-12,10],[-14,11],[-51,36],[-98,71],[-95,69],[-54,40],[-67,48],[0,1],[-1,1],[-15,15],[-1,1],[0,2],[-1,1],[-1,2],[-5,5],[-2,2],[-1,2],[-2,1],[-4,4],[-6,6],[-4,5],[-15,-1],[-42,1],[-1,1],[-3,0],[-1,1],[-1,0],[-1,2],[-1,1],[0,1],[-1,1],[-2,5],[-2,8],[-1,1],[1,16],[0,1],[0,2],[0,2],[0,1],[1,1],[0,1],[6,8],[0,1],[1,0],[2,1],[1,0],[1,0],[2,1],[1,1],[0,2],[1,3],[0,1],[1,22],[0,1],[-1,1],[0,1],[-2,2],[-2,1],[-2,2],[-2,1],[-3,0],[-4,1],[-8,0],[-2,0],[-19,-5],[-3,-1],[-19,28],[-1,8],[-12,50],[-1,2],[0,1],[-1,0],[-1,1],[-5,4],[-2,1],[-1,0],[-1,0],[-18,-2],[-12,-3],[-2,-1],[-3,-2],[-1,0],[-4,-1],[-2,-1],[-5,1],[-1,0],[-2,1],[-2,1],[-10,4],[-2,2],[-2,0],[0,1],[-1,0],[0,1],[-8,15],[0,1],[-1,3],[0,2],[-1,2],[0,2],[0,3],[1,1],[0,1],[0,1],[0,1],[2,4],[1,3],[0,2],[0,1],[-1,2],[0,2],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[-1,1],[-3,0],[-25,2],[-1,0],[-2,0],[-8,-2],[-10,-3],[-2,0],[-2,0],[-1,0],[-14,17],[0,1],[0,1],[0,13],[0,1],[0,2],[0,3],[1,1],[1,1],[1,1],[1,2],[1,2],[0,1],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[-11,5],[-1,0],[-1,0],[-54,-20],[-2,-1],[-9,-4],[-1,-1],[-1,-2],[0,-1],[0,-2],[1,-2],[0,-2],[1,-2],[1,-1],[2,-1],[1,-2],[5,-7],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[0,-1],[-7,-10],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-3,3],[-24,31],[-13,18],[-12,17],[4,11],[5,-3],[2,-1],[2,0],[2,1],[1,0],[3,4],[20,18],[1,1],[0,2],[1,2],[0,2],[0,1],[-3,6],[-3,7],[-1,1],[-29,13],[-2,1],[-17,29],[1,1],[0,1],[3,18],[0,1],[-1,0],[0,2],[-2,2],[-1,2],[0,1],[-48,49],[-11,56],[0,7],[-3,24],[-1,1],[-1,1],[-25,19],[-8,5],[-2,2],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-7,-3],[-2,-1],[-1,-2],[-3,-4],[-1,-1],[0,-1],[-3,-6],[0,-2],[0,-1],[0,-1],[1,-1],[3,-2],[0,-1],[1,0],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-7,-7],[-1,-1],[-1,-1],[-1,0],[-4,1],[-3,0],[-4,1],[-1,0],[-1,1],[-5,5],[0,1],[-1,3],[0,1],[-1,1],[0,1],[1,1],[0,2],[1,7],[0,1],[4,12],[2,8],[1,1],[0,2],[1,6],[0,2],[0,1],[-1,4],[0,1],[0,1],[0,2],[-1,2],[-3,7],[0,1],[-5,7],[-4,7],[-1,1],[0,2],[-6,8],[-2,2],[-3,3],[-1,2],[-11,10],[-1,0],[-16,10],[-11,4],[-1,1],[-1,2],[0,2],[-1,1],[0,1],[0,3],[1,1],[0,2],[1,2],[2,4],[2,4],[1,3],[2,2],[1,2],[3,4],[3,2],[3,2],[2,1],[7,3],[1,0],[2,0],[3,-1],[3,-1],[2,-1],[3,-1],[2,0],[1,0],[2,0],[2,1],[2,1],[24,11],[4,3],[5,4],[16,15],[1,1],[1,1],[1,1],[0,1],[1,1],[3,11],[0,1],[0,1],[0,1],[0,2],[-1,3],[-1,1],[-1,2],[-2,2],[-2,1],[-2,2],[-2,1],[-1,1],[-5,2],[-10,5],[-1,0],[-1,1],[-16,4],[-1,0],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-39,24],[-6,3],[-2,2],[-1,0],[-1,2],[-12,21],[0,1],[-4,7],[0,2],[0,1],[0,1],[0,1],[3,6],[12,93],[1,5],[-1,3],[-6,43],[0,1],[-2,2],[-4,7],[-1,1],[-11,5],[-1,0],[-1,0],[-2,0],[-1,0],[-5,-5],[-1,-2],[-2,-2],[-1,-1],[-3,-3],[-1,0],[-1,-1],[-3,0],[-1,0],[-10,1],[-1,1],[-1,0],[0,1],[-4,7],[0,1],[-2,57],[0,3],[3,14],[0,1],[0,1],[1,1],[5,3],[4,2],[7,3],[1,1],[1,1],[1,1],[3,3],[1,2],[0,1],[0,1],[0,6],[0,4],[-2,18],[-1,1],[0,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,1],[-2,1],[-18,6],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,1],[-1,1],[-1,0],[-5,4],[-31,31],[-1,1],[-1,1],[0,1],[0,2],[0,2],[1,3],[1,5],[0,1],[2,3],[6,7],[0,1],[1,1],[1,0],[1,1],[3,0],[3,-1],[4,0],[3,-1],[2,-1],[2,0],[2,-1],[1,0],[45,8],[1,0],[7,22],[-2,2],[-2,2],[-19,10],[-11,6],[-1,0],[-1,0],[-1,0],[-1,-2],[-1,0],[-71,54],[-28,20],[-10,6],[-1,0],[-2,2],[-1,1],[-3,5],[-2,2],[-1,2],[0,2],[-1,0],[0,5],[0,2],[0,2],[-1,2],[1,2],[3,24],[1,2],[1,1],[2,2],[1,1],[1,0],[0,-1],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[2,0],[3,0],[1,1],[2,1],[3,3],[1,1],[18,41],[-14,13],[-17,26],[0,1],[-1,1],[0,1],[1,1],[0,1],[3,7],[1,1],[0,1],[1,1],[1,0],[2,2],[3,2],[2,2],[3,2],[2,4],[2,3],[1,1],[1,2],[0,1],[0,1],[0,3],[-2,12],[0,1],[-1,1],[-35,64],[0,1],[-1,1],[-29,30],[-1,0],[-1,1],[-3,2],[-1,0],[-1,0],[-1,0],[-25,38],[0,18],[-3,17],[-16,48],[-1,0],[0,1],[-1,1],[-2,1],[-1,1],[-12,5],[-10,3],[-2,0],[-1,0],[-1,0],[-1,0],[-17,-1],[-12,2],[-11,15],[-1,2],[-1,1],[0,2],[1,7],[1,2],[1,2],[1,1],[1,1],[1,0],[1,1],[1,0],[3,-1],[3,-1],[1,0],[3,1],[3,1],[3,1],[2,1],[3,2],[3,2],[2,2],[2,2],[1,3],[1,3],[0,2],[0,6],[-1,3],[0,2],[-1,2],[-36,58],[-7,8],[-2,2],[-2,0],[-1,0],[-8,-7],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-3],[0,-1],[1,-1],[1,-2],[2,0],[2,0],[2,1],[1,2],[0,1],[1,1],[0,1],[0,1],[1,0],[2,1],[1,0],[1,-1],[1,-1],[3,-3],[1,-1],[0,-1],[-3,-13],[0,-1],[-1,-1],[-2,-3],[-1,-1],[-11,-9],[-1,0],[-2,0],[-2,0],[-2,0],[-1,1],[-1,1],[-27,48],[-5,10],[-38,40],[-1,0],[-1,0],[-1,0],[-2,0],[-2,1],[-10,7],[-1,1],[-22,18],[-1,1],[-1,1],[-1,1],[-1,1],[-1,3],[-1,2],[-1,3],[0,1],[0,1],[0,2],[0,1],[1,3],[5,21],[4,13],[-6,23],[-1,0],[-20,3],[-1,0],[-2,1],[-44,22],[-3,1],[-2,2],[-1,1],[0,1],[-1,2],[-1,4],[-1,2],[-1,5],[-1,10],[0,2],[0,1],[1,1],[1,0],[2,0],[5,1],[2,0],[2,0],[5,0],[10,0],[2,0],[3,1],[7,1],[3,1],[2,1],[2,1],[1,1],[10,7],[7,6],[9,8],[1,1],[3,27],[-2,11],[-27,53],[-1,2],[-1,1],[-10,3],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-5,-7],[-34,-33],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-18,8],[-1,0],[-1,1],[0,3],[-1,2],[1,1],[0,2],[2,10],[0,1],[1,1],[6,8],[4,2],[2,0],[1,1],[1,0],[2,1],[1,1],[1,2],[1,1],[1,1],[1,1],[2,7],[1,1],[-1,1],[-3,13],[-9,15],[-1,1],[-14,4],[-1,0],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-1,0],[-1,-1],[-1,1],[-2,0],[-2,1],[-2,0],[-2,2],[-3,1],[-3,2],[-5,3],[0,1],[-1,1],[-1,1],[-5,11],[-1,2],[-1,3],[-1,10],[-1,5],[0,5],[-1,8],[0,2],[2,19],[1,9],[1,16],[0,24],[-1,1],[-11,31],[-3,7],[-2,3],[-8,16],[-1,1],[-1,2],[-3,3],[-24,18],[-14,5],[-6,-1],[-2,0],[-2,0],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1],[-1,2],[-1,2],[-17,27],[-14,26],[-19,42],[-32,39],[-32,5],[0,1],[-1,0],[-5,5],[-2,3],[-4,5],[0,1],[-2,5],[0,2],[-1,2],[0,1],[-3,86],[0,1],[0,2],[0,1],[1,1],[1,1],[3,4],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[6,0],[2,0],[1,0],[1,1],[2,2],[2,2],[1,1],[0,1],[1,1],[1,2],[0,2],[0,1],[1,4],[0,4],[-1,5],[-1,3],[-1,3],[-2,2],[-2,1],[-1,1],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-39,-6],[-1,-1],[-2,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[1,-3],[1,-2],[3,-4],[2,-3],[2,-6],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-7,-4],[-2,0],[-2,-1],[-3,0],[-2,0],[-3,1],[-3,1],[-2,2],[-2,2],[-3,5],[-1,2],[0,2],[0,2],[1,31],[5,22],[0,1],[0,1],[-1,1],[-10,12],[-1,1],[-1,1],[-9,6],[-2,1],[-1,1],[-12,5],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,-2],[0,-1],[-1,-1],[-1,-1],[-4,-1],[-12,-4],[-1,0],[-1,0],[-5,0],[-1,1],[-1,1],[-2,2],[-14,15],[-1,2],[0,1],[-21,74],[0,2],[-1,6],[1,18],[0,2],[0,37],[0,28],[-11,28],[8,45],[2,-2],[6,-3],[2,0],[1,0],[2,1],[1,2],[1,2],[3,16],[0,3],[-1,20],[-6,12],[-3,2],[-7,6],[-2,3],[-2,2],[-1,2],[0,2],[5,14],[16,33],[17,7],[12,-6],[8,33],[0,1],[0,2],[-1,9],[-1,2],[-3,4],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-33,-7],[-37,0],[-2,0],[-7,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[24,102],[10,37],[8,28],[-29,13],[-2,-3],[-7,-6],[-2,-2],[-3,-2],[-3,-2],[-4,-2],[-4,-1],[-3,-1],[-1,-1],[-2,0],[-5,0],[-5,-1],[-2,1],[-15,2],[-6,2],[-7,9],[-1,1],[-1,2],[0,1],[4,3],[2,0],[1,1],[2,2],[2,1],[1,1],[40,80],[1,2],[1,5],[1,3],[0,2],[1,6],[1,3],[1,25],[0,3],[-1,1],[0,1],[-2,0],[-1,0],[-7,0],[-5,-1],[-4,-1],[-4,-1],[-5,0],[-7,0],[-21,9],[-5,4],[-4,3],[-4,5],[-1,2],[0,4],[1,5],[5,2],[4,2],[15,0],[5,0],[5,-3],[5,-1],[5,1],[5,5],[3,4],[3,5],[1,5],[0,4],[0,4],[0,3],[-1,7],[-12,41],[-1,2],[-6,8],[-1,1],[-2,1],[-2,0],[-9,-9],[-2,-3],[1,-2],[1,-1],[4,0],[3,-2],[1,-2],[-1,-2],[-1,-2],[-4,-2],[-2,1],[-10,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[0,2],[-1,6],[0,2],[5,37],[17,17],[7,0],[5,16],[1,3],[0,2],[-2,32],[-26,45],[-1,1],[-4,2],[-2,1],[-5,0],[-3,0],[-8,0],[-3,0],[-7,0],[-2,1],[-31,16],[-2,2],[-7,9],[-4,5],[-2,8],[-1,7],[1,6],[1,7],[26,78],[34,27],[1,2],[1,1],[0,1],[-1,1],[-13,30],[0,1],[-3,4],[-4,5],[-1,1],[-4,0],[-1,1],[-3,2],[-4,4],[-3,4],[-15,20],[-34,44],[0,3],[2,13],[2,3],[0,1],[8,15],[11,52],[1,39],[0,5],[0,1],[1,2],[1,2],[4,3],[4,1],[3,1],[4,0],[8,-1],[8,-1],[2,-1],[4,1],[3,1],[3,2],[3,2],[4,2],[4,3],[3,3],[4,4],[2,2],[21,28],[2,10],[-7,28],[18,40],[2,3],[3,3],[2,2],[2,2],[5,3],[3,3],[5,4],[3,2],[1,1],[2,2],[2,2],[6,8],[1,1],[0,1],[0,2],[0,24],[-1,7],[-2,11],[-1,1],[-1,2],[-2,2],[-2,1],[-1,0],[-4,0],[-1,0],[-1,-1],[0,-4],[0,-1],[1,-1],[2,0],[2,1],[2,-1],[0,-1],[1,-2],[-1,-1],[-1,-2],[0,-1],[-11,-5],[-2,-1],[-2,0],[-1,1],[-1,2],[-4,33],[0,4],[0,2],[1,1],[0,1],[2,2],[2,1],[2,0],[2,0],[3,0],[2,0],[1,0],[3,1],[1,1],[1,1],[2,2],[2,2],[2,2],[1,2],[1,3],[1,2],[4,11],[1,1],[4,47],[0,11],[-1,2],[-1,1],[-1,1],[-2,0],[-3,-1],[-3,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[-9,-19],[-1,-1],[-2,-2],[-3,-2],[-1,0],[-2,0],[-21,6],[-2,1],[-1,1],[0,1],[-1,2],[-11,42],[2,18],[8,35],[4,16],[0,2],[1,2],[1,1],[1,1],[1,-1],[1,-1],[9,-8],[1,-1],[0,-1],[-1,-1],[-3,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-2],[1,0],[1,-1],[3,-1],[7,-2],[3,0],[4,-1],[2,0],[2,0],[2,0],[2,1],[1,1],[2,2],[1,1],[1,2],[1,3],[3,6],[0,3],[1,3],[1,18],[0,2],[-1,1],[0,2],[-1,0],[-4,3],[-7,2],[-16,3],[-4,0],[-3,0],[-2,0],[-1,-1],[-11,35],[-15,52],[-7,39],[-4,72],[4,16],[19,23],[25,31],[19,13],[-1,39],[-3,-1],[-3,-1],[-3,0],[-3,0],[-3,0],[-2,1],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-3,30],[0,2],[5,45],[1,3],[0,3],[3,8],[4,14],[1,6],[2,3],[1,3],[1,2],[2,7],[0,2],[5,73],[3,50],[-4,60],[-1,1],[-1,2],[-34,52],[-40,59],[-1,2],[0,1],[-1,3],[1,2],[3,10],[1,3],[1,4],[2,3],[1,4],[0,2],[0,4],[0,1],[0,1],[-2,5],[-3,10],[-1,1],[-25,50],[-19,34],[0,46],[0,2],[2,2],[0,2],[0,2],[1,3],[-1,2],[0,1],[-1,2],[-3,6],[-17,31],[-1,0],[0,1],[-8,7],[-2,1],[-14,16],[-13,14],[-1,2],[-1,1],[-6,15],[-1,2],[0,2],[1,7],[1,1],[0,1],[1,2],[5,4],[1,1],[2,0],[5,3],[9,5],[1,2],[1,1],[13,70],[0,2],[-1,8],[-1,1],[-1,1],[-2,2],[-2,1],[-2,1],[-3,1],[-41,18],[-1,0],[0,1],[-1,2],[-1,4],[-1,3],[-1,5],[-2,7],[0,2],[-1,2],[-1,1],[-5,8],[-41,58],[-32,33],[-21,32],[-18,38],[-2,2],[-29,27],[-3,1],[-2,1],[-5,0],[-4,1],[-11,0],[-1,0],[-2,-1],[-1,-2],[0,-2],[3,-30],[-22,3],[-71,24],[-1,1],[-2,2],[-3,3],[-2,3],[-3,3],[-7,12],[-1,2],[0,1],[0,2],[1,2],[1,2],[2,2],[3,4],[3,4],[2,4],[2,3],[3,4],[2,5],[1,3],[1,4],[1,3],[6,39],[-4,9],[-21,5],[-1,0],[-2,0],[-11,-4],[-4,-6],[0,-1],[-13,-9],[-21,-4],[-1,0],[-12,2],[-2,1],[-1,0],[-1,2],[-8,39],[10,14],[16,35],[1,8],[1,7],[-2,32],[-11,68],[-12,62],[0,2],[-1,2],[-1,1],[-3,4],[-16,17],[-7,5],[-29,10],[-10,-6],[-19,-11],[-2,-1],[-3,0],[-1,1],[-2,0],[-22,16],[-7,23],[3,3],[2,3],[1,4],[1,4],[0,4],[0,3],[-1,4],[-1,2],[-1,3],[-1,3],[-18,24],[-2,2],[-7,8],[-18,19],[-1,1],[-7,3],[-7,0],[-2,0],[-1,0],[-2,-1],[-4,-1],[-1,0],[-1,0],[-2,2],[-2,1],[-8,7],[-2,1],[-1,2],[-4,5],[-3,3],[-1,2],[0,2],[-6,28],[-19,37],[-36,42],[-1,0],[-1,1],[-7,2],[-1,0],[-1,1],[-9,0],[-4,0],[-3,0],[-7,1],[-7,1],[-1,0],[-3,1],[-3,2],[-43,20],[-13,18],[7,41],[1,2],[0,5],[0,8],[-1,2],[-2,2],[-2,2],[-11,8],[-7,4],[-6,4],[-6,3],[-16,9],[-29,27],[-14,16],[-1,2],[-1,2],[0,2],[-1,7],[0,2],[1,2],[1,2],[2,1],[3,2],[3,1],[3,0],[3,-1],[3,0],[3,0],[4,-1],[5,0],[2,0],[1,1],[15,6],[3,1],[4,2],[2,1],[2,2],[4,4],[1,1],[23,82],[1,2],[0,3],[1,2],[-3,31],[-1,1],[-1,1],[-1,1],[-2,0],[-6,1],[-1,0],[-13,-5],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-3,0],[-2,0],[-2,1],[-2,1],[-2,2],[-16,14],[-2,1],[-1,1],[-3,7],[0,2],[3,14],[1,2],[1,2],[6,11],[1,1],[2,1],[1,1],[4,1],[2,2],[1,0],[2,2],[3,8],[1,1],[0,3],[-1,2],[-2,9],[-1,1],[0,1],[-2,1],[-2,0],[-3,1],[-1,0],[-43,-13],[-52,-15],[-2,0],[-40,9],[-17,11],[0,1],[-9,12],[-1,2],[-1,1],[-1,1],[-94,73],[-15,8],[-2,2],[-4,3],[-11,12],[-4,4],[-21,24],[-1,1],[-1,2],[0,2],[1,1],[1,4],[2,3],[1,2],[1,1],[2,3],[1,1],[3,4],[6,8],[3,5],[1,2],[2,3],[1,4],[4,8],[1,4],[1,5],[5,25],[-3,20],[-6,14],[-9,46],[0,2],[0,3],[0,3],[1,3],[2,4],[1,1],[1,2],[12,12],[26,23],[2,1],[2,1],[2,1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[3,-1],[10,0],[1,0],[1,0],[0,2],[1,1],[-1,54],[-3,7],[-1,3],[-1,2],[-2,2],[-2,2],[-2,1],[-2,0],[-2,-1],[-1,-1],[-1,-2],[0,-2],[1,-3],[1,-4],[0,-3],[-1,-3],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-11,-4],[-2,0],[-1,1],[-32,23],[-2,2],[-37,45],[0,2],[-1,1],[0,2],[0,2],[0,1],[5,16],[1,1],[2,5],[0,1],[2,1],[1,0],[1,1],[1,1],[10,14],[1,2],[1,5],[1,2],[0,9],[-1,35],[0,3],[-1,2],[0,2],[-1,2],[-2,3],[-11,16],[-1,0],[-33,13],[-1,0],[-1,0],[-2,-1],[-3,-2],[-14,24],[12,30],[10,27],[1,6],[0,2],[-2,14],[-1,2],[0,1],[-8,6],[-2,1],[-2,1],[-7,2],[-4,1],[-1,1],[-2,1],[-1,2],[-6,19],[0,3],[-4,23],[0,2],[1,10],[8,31],[2,3],[4,5],[0,1],[1,0],[1,1],[1,0],[1,-2],[1,0],[0,-1],[2,0],[1,0],[2,1],[1,0],[1,1],[1,2],[0,2],[1,14],[0,5],[0,4],[-1,3],[-1,4],[-1,6],[-2,7],[-20,60],[-16,37],[21,51],[8,23],[8,45],[0,2],[0,2],[-1,14],[-1,4],[-1,2],[-1,0],[-2,0],[-3,0],[-3,-1],[-4,-2],[-3,-1],[-7,-2],[-3,-1],[-3,0],[-20,6],[-2,0],[-4,5],[0,1],[0,2],[0,1],[2,3],[1,3],[2,3],[0,2],[1,2],[1,3],[2,10],[1,3],[3,22],[1,6],[2,81],[0,4],[-1,2],[0,3],[-10,20],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,-1],[0,-3],[-28,-5],[-57,49],[-1,1],[-1,2],[0,1],[0,1],[0,3],[21,52],[2,-1],[6,-2],[2,0],[1,0],[2,1],[1,0],[1,3],[1,2],[4,50],[-8,13],[-4,6],[-2,3],[-15,7],[-11,3],[-3,0],[-2,1],[-19,11],[-2,1],[-1,2],[-1,2],[0,2],[-1,5],[-2,7],[0,2],[-3,26],[-1,15],[5,3],[2,2],[2,2],[1,2],[1,2],[7,14],[2,3],[0,3],[0,1],[0,3],[0,12],[-1,2],[0,1],[-2,3],[-15,21],[-18,23],[-20,11],[-18,36],[4,2],[2,2],[3,6],[2,3],[2,6],[2,6],[1,1],[0,5],[0,1],[-1,9],[-1,4],[-9,30],[-2,4],[-18,43],[-22,35],[-1,2],[-22,26],[-20,54],[-1,4],[-2,4],[-2,5],[-2,4],[-7,12],[-1,0],[-17,6],[-3,1],[-3,0],[-18,-1],[-4,-1],[-1,-1],[-4,-2],[-5,-3],[-5,-1],[-1,0],[-5,2],[-1,1],[-1,1],[-9,16],[-9,23],[5,8],[2,2],[1,4],[1,3],[8,31],[1,21],[0,1],[-1,7],[-28,52],[0,1],[-2,2],[-14,12],[-1,1],[-2,1],[-4,1],[-5,0],[-1,-1],[-2,0],[-1,-1],[-2,-2],[-5,-8],[-4,-7],[-2,-4],[-2,-8],[-1,-6],[-1,-4],[-1,-4],[-1,-5],[-1,-3],[-2,-2],[0,-1],[-3,-2],[-3,-1],[-3,0],[-2,0],[-2,0],[-17,5],[-1,0],[-2,2],[-3,2],[-2,2],[-1,5],[0,8],[2,5],[0,7],[0,4],[-1,13],[-1,3],[-5,9],[-2,4],[-1,1],[-2,-1],[-14,-10],[-2,-3],[-28,-9],[-8,-1],[-55,1],[-4,0],[-5,3],[-19,19],[-1,5],[0,4],[0,1],[0,3],[0,2],[-1,1],[-1,3],[-4,7],[-1,1],[-1,1],[-1,1],[-35,11],[-1,0],[-1,0],[-26,-16],[-2,-2],[-1,-1],[-11,-3],[-9,-3],[-4,0],[-3,0],[-3,1],[-3,2],[-24,15],[-2,1],[-3,3],[-2,2],[-25,34],[-29,69],[-3,19],[1,4],[0,3],[2,33],[0,1],[0,4],[-4,9]],[[87380,42274],[24,-78],[3,-10],[13,-41],[8,-25],[3,-8],[0,-1],[9,-29],[4,-10],[4,-14],[8,-26],[15,-47],[4,-11],[5,-17],[66,-206],[6,-19],[13,-44],[7,-21],[4,-12],[4,-12],[5,-17],[3,-9],[8,-28],[3,-9],[1,-1],[8,-26],[1,-3],[3,-12],[10,-29],[9,-33],[5,-15],[14,-47],[7,-26],[9,-19],[9,-27],[12,-36],[22,-71],[9,-30],[11,-34],[7,-21],[14,-46],[5,-16],[5,-15],[6,-16],[3,-11],[9,-27],[9,-28],[6,-22],[17,-51],[0,-1],[7,-22],[3,-8],[1,-4],[18,-56],[12,-38],[1,-3],[24,-76],[17,-55],[3,-11],[10,-37]],[[87906,40607],[-142,-142],[-7,-7],[-12,-12],[-9,-9],[-23,-24],[-11,-11],[-6,-7],[-2,-2],[-4,-4],[-7,-7],[-8,-8],[-9,-10],[-14,-12],[-6,-7],[-6,-7],[-10,-9],[-12,-12],[-8,-7],[-225,-223],[-10,-10],[-48,-47],[-2,-2],[-57,-57],[-77,-76],[-8,-7],[-30,-30],[-7,-7],[-12,-12],[-44,-48],[-39,-37],[-19,-19],[-9,-9],[-12,-10],[-33,-33],[-8,-8],[-8,-8],[-10,-10],[-41,-41],[-14,-14],[-13,-13],[-23,-23],[-14,-15],[-7,-7],[-7,-7],[-8,-8],[-7,-7],[-7,-7],[-10,-10],[-14,-13],[-17,-17],[-25,-24],[-3,-3],[-7,-6],[-31,-30],[0,-1],[-9,-8],[-30,-31],[-7,-6],[-18,-18],[-4,-4],[-3,-3],[-10,0],[-27,-3],[-14,3],[-12,3],[-16,-6],[-15,-5],[-8,-2],[-11,-4],[-22,-4],[-12,-3],[-15,-4],[-12,-6],[-8,-2],[-13,-3],[-26,-5],[-3,10],[-5,8],[-8,5],[-10,6],[-7,5],[-48,-1],[-10,-19],[-7,9],[-8,9],[-7,5],[-10,8],[-8,2],[-9,4],[-6,9],[-2,10],[-1,29],[2,10],[4,10],[3,14],[15,11],[4,14],[-7,10],[-12,8],[-8,12],[-2,14],[-4,14],[-8,10],[-5,10],[-7,11],[-10,0],[-16,-10],[-6,-6],[-13,3],[-9,13],[0,15],[-7,6],[-11,3],[-12,10],[-6,10],[-4,12],[0,11],[-5,10],[-9,1],[-10,7],[-11,1],[-13,-6],[-9,-1],[-10,6],[-4,9],[0,11],[-6,9],[-18,5],[-9,3],[-8,6],[-4,13],[-1,10],[-2,11],[-9,8],[-16,3],[-15,3],[-6,11],[5,11],[-7,11],[-15,-4],[-15,3],[-10,9],[-8,0],[-4,0],[-11,-8],[-15,4],[-5,14],[-7,3],[-10,-5],[-4,-9],[-7,-6],[-8,4],[-12,9],[-13,-2],[-13,4],[-16,10],[-6,7],[-4,16],[0,9],[-1,11],[2,17],[-8,7],[-11,-5],[-9,7],[-7,7],[-8,3],[-8,-4],[-11,0],[-14,6],[-9,-7],[-3,-17],[-7,-4],[-17,-3],[-13,2],[-2,-16],[-9,-4],[-14,7],[-13,4],[-8,9],[-8,5],[-10,11],[0,9],[-6,12],[-4,13],[-12,12],[-8,3],[-18,2],[-10,5],[-8,6],[-12,-5],[-10,3],[-1,11],[-8,9],[-9,8],[7,8],[8,8],[1,10],[-5,7],[-8,6],[0,12],[-14,2],[-18,17],[-13,8],[-6,7],[6,7],[8,-3],[-2,10],[-10,1],[-1,12],[-2,9],[-8,-2],[-9,7],[-7,6],[-5,9],[-1,15],[-3,9],[-2,11],[-6,8],[-10,1],[-1,0],[-12,-7],[-18,-13],[-12,1],[-24,-4],[-10,-10],[-3,-12],[0,-2],[-5,-7],[-9,4],[-10,-1],[-2,-13],[-5,7],[-8,-4],[-13,-5],[-7,10],[-9,-3],[-12,-1],[-9,-3],[-13,1],[-6,-5],[-10,-6],[-6,-5],[-1,-12],[-9,3],[3,-9],[-7,-10],[-8,0],[-8,7],[-8,-5],[-13,8],[-9,0],[-5,-8],[-4,9],[-10,-4],[-8,-7],[-7,8],[-9,-5],[-3,-10],[-13,3],[-9,5],[-7,-6],[-9,1],[-4,12],[-7,-6],[-5,-8],[-12,-1],[-6,6],[-8,1],[-8,7],[-8,2],[-2,9],[-9,-6],[-4,8],[-8,6],[-8,2],[-10,5],[-12,0],[-8,-1],[-9,4],[-10,8],[-11,9],[3,9],[-7,5],[-4,13],[0,10],[4,9],[-8,7],[-1,12],[-6,9],[-7,4],[-6,9],[-7,4],[3,10],[-9,10],[-3,9],[4,12],[-1,12],[-2,10],[9,4],[-2,11],[-4,9],[5,9],[0,10],[2,11],[-8,6],[2,10],[-4,9],[0,12],[-3,10],[-7,7],[1,12],[-5,12],[-4,10],[0,17],[-8,4],[-11,6],[-7,2],[-7,4],[-13,1],[-10,11],[-7,5],[-8,5],[-5,9],[-8,3],[-14,8],[-6,10],[-8,5],[-10,7],[-5,12],[-6,8],[-7,-6],[-2,-4],[-2,-6],[-6,7],[-6,8],[-6,7],[-3,3],[-5,5],[-2,10],[-8,12],[4,8],[-11,0],[1,9],[4,11],[-3,4],[-3,5],[-8,5],[-9,0],[4,10],[-9,4],[-6,6],[-2,3],[-9,5],[-8,-2],[-8,-5],[-6,7],[-7,8],[-5,11],[-6,9],[-9,-2],[-7,8],[-14,-5],[-6,7],[-8,7],[-9,6],[-9,-2],[-8,-2],[-7,-8],[-8,2],[-10,-4],[-3,3],[-5,6],[-8,0],[-9,2],[-14,2],[-1,-4],[-2,-8],[-6,-9],[-10,-7],[-12,-7],[-2,-2],[-5,-5],[-1,-10],[-8,4],[1,-22],[1,-11],[12,-6],[-8,-2],[-7,-7],[-5,-8],[-6,-8],[-1,2],[-4,6],[-10,2],[-5,9],[-8,-2],[-11,3],[-10,-7],[-11,-5],[-4,-10],[-9,-7],[-2,-10],[-4,-11],[3,-17],[-11,-4],[-3,-9],[-10,-4],[-9,3],[-9,-4],[-6,-7],[-8,-5],[-11,-2],[-8,0],[-9,-4],[-5,-9],[-9,-11],[-9,-9],[-1,-9],[-5,-14],[-4,-16],[-9,-10],[-3,-13],[-8,-11],[-4,-10],[-8,-5],[-7,-8],[-8,4],[-4,-9],[-8,-3],[-9,-4],[-9,0],[-6,-5],[-8,-1],[-5,-9],[-22,-5],[-6,7],[-8,-7],[-4,9],[-7,0],[-10,6],[-8,-3],[-12,3],[-8,4],[-10,6],[-8,-4],[-7,3],[-8,-1],[-10,-3],[-9,2],[-8,4],[-10,-4],[-7,6],[-9,-1],[-4,0],[-9,4],[-6,-7],[-8,-9],[2,-12],[-3,-6],[-2,-5],[1,-11],[-7,-6],[4,-10],[7,-7],[1,-12],[-10,-4],[-8,1],[-7,7],[-8,2],[-6,1],[-7,1],[-14,-9],[-9,-2],[-10,-5],[-7,-5],[-8,7],[-8,-7],[-7,-5],[3,-10],[-8,-8],[-3,-9],[-11,-7],[-11,-11],[-7,-4],[-7,3],[-7,-7],[-5,-3],[-7,-4],[-6,-6],[-7,-5],[-5,-7],[-11,-17],[-11,-7],[-5,-7],[-2,-11],[-4,-10],[-11,-5],[7,-6],[-3,-9],[-7,-1],[-8,5],[-9,8],[-9,4],[3,10],[-7,5],[-9,-4],[-9,-4],[-5,-13],[7,-3],[-5,-10],[-7,-9],[-11,-4],[-11,-5],[-7,-11],[-7,-4],[-2,-11],[-1,-13],[-2,-10],[-8,-5],[-15,-2],[-9,3],[-13,8],[-9,3],[-10,8],[-8,6],[-15,9],[-9,10],[-12,2],[-10,6],[-9,1],[-8,-3],[-3,-2],[-5,-3],[-2,-12],[-6,-13],[8,0],[0,-10],[0,-10],[-6,-8],[-13,-6],[-9,-7],[-25,-5],[-8,4],[-18,-3],[-9,-3],[-8,-3],[-14,1],[-11,9],[-6,8],[-8,12],[-7,6],[-13,7],[-11,1],[-13,-3],[-11,-6],[-10,0],[-9,3],[-8,-1],[-5,-8],[-4,-9],[-6,-10],[-7,2],[-13,3],[-15,0],[-8,-1],[-5,-13],[-13,-11],[-7,-2],[-9,-7],[-11,-9],[-9,-1],[-9,-5],[-15,-3],[-11,-5],[-11,4],[-9,6],[-10,4],[-11,7],[-8,2],[-10,3],[-5,-8],[-11,-5],[-8,2],[-10,1],[-10,2],[-11,0],[-5,-9],[-12,-8],[-12,-2],[-8,-11],[-8,-3],[-9,-6],[-11,-7],[-15,-10],[3,-11],[-1,-12],[-7,-6],[-9,-1],[-14,7],[-5,8],[-6,6],[-16,-1],[-8,0],[-4,-9],[-18,0],[-5,14],[-6,9],[-12,10],[-15,-2],[-6,-7],[-10,-5],[-9,5],[-12,4],[-10,4],[-5,12],[-12,6],[-5,7],[-13,6],[-9,-3],[-9,2],[7,-13],[-6,-8],[-7,3],[-8,-7],[-8,0],[-12,3],[-17,-10],[-13,-1],[-13,-5],[-5,8],[-7,4],[-17,-11]],[[82528,39884],[-3,222],[0,18],[0,52],[0,13],[0,34],[-1,59],[0,7],[0,23],[0,25],[0,12],[0,29],[0,19],[0,303],[0,11],[-1,105],[0,10],[0,26],[0,53],[-1,82],[0,168],[0,9],[0,18],[-2,152],[0,8]],[[70608,42973],[-7,-10],[-8,-15],[-10,-22],[-6,-14],[-1,0],[-5,-10],[-4,-9],[-3,-5],[-1,-2],[-8,-14],[-7,-16],[-7,-13],[-4,-10],[-6,-12],[-10,-22],[-12,-24],[-7,-15],[-22,-46],[-4,-10],[-5,-10],[-8,-16],[-19,-40],[-6,-12],[-13,-29],[-13,-27],[-6,-13],[-4,-8],[-4,-9],[-16,-34],[-9,-18],[-15,-32],[-7,-14],[-8,-17],[-4,-8],[-18,-39],[-17,-34],[-3,-7],[-2,-4],[-4,-9],[-11,-22],[-4,-10],[-6,-12],[-6,-11],[-12,-25],[-8,-18],[-8,-15],[-6,-14],[-7,-15],[-4,-8],[-24,-51],[-12,-26],[-4,-8],[-4,-8],[-8,-17],[-8,-17],[-4,-8],[-22,-45],[-18,-38],[-7,-16],[-10,-20],[-6,-13],[-4,-8],[-6,-12],[-8,-18],[-16,-32],[-33,-69],[-6,-14],[-5,-9],[-3,-7],[-4,-9],[-4,-9],[-4,-8],[-4,-9],[-8,-16],[-16,-34],[-11,-22],[-6,-13],[-17,-36],[-30,-63],[-6,-13],[-2,-10],[-2,-9],[-5,-21],[-8,-14],[-12,-20],[-6,-8],[-7,-13],[-7,-15],[-6,-8],[-5,-9],[-4,-9],[-12,-25],[-9,-21],[-20,-42],[-4,-8],[-13,-28],[-21,-45],[-6,-13],[-9,-20],[-11,-21],[-8,-18],[-11,-22],[-10,-23],[-8,-15],[-11,-23],[-5,-10],[-2,-5],[-2,-4],[-9,-19],[-9,-10],[-6,-7],[-10,-11],[-26,-28],[-8,-11],[-40,-43],[-41,-47],[-32,-35],[-5,-7],[-3,-3],[-3,-4],[-7,-8],[-7,-8],[-10,-10],[-11,-12],[-7,-9],[-19,-20],[-12,-13],[-22,-26],[-2,-3],[-10,-9],[-21,-24],[-9,-10],[-14,-15],[-8,-10],[-7,-8],[-100,-111],[-34,-39],[-31,-35],[-18,-20],[-27,-30],[-14,-16],[-19,-21],[-22,-25],[-24,-28],[-23,-24],[-19,-21],[-6,-7],[-7,-8],[-7,-7],[-13,-15],[-7,-8],[-23,-25],[-16,-19],[-9,-11],[-25,-27],[-15,-17],[-16,-19],[-8,-8],[-15,-17],[-21,-23],[-22,-25],[-10,-6],[-15,-12],[-11,-12],[-47,-52],[-21,-22],[-15,-17],[-6,-6],[-59,-66],[-42,-44],[-11,-14],[-33,-43],[-34,-42]],[[68476,39675],[-13,16],[-11,10],[-7,7],[-8,9],[-6,5],[-5,-5],[-28,-30],[-17,-19],[-9,-9],[-7,-7],[-7,-7],[-7,-7],[-6,-7],[-8,-9],[-11,-13],[-14,-13],[-5,-6],[-23,-26],[-6,-7],[-8,-10],[-41,-47],[-8,-8],[-23,-17],[-8,-8],[-7,-8],[-13,-14],[-3,-3],[-4,-4],[-7,-9],[-10,-13],[-15,-19],[-5,-7],[-28,-29],[-14,-18],[-9,-8],[-7,-8],[-26,-29],[-17,-18],[-12,-12]],[[68013,39268],[-68,62],[-42,38],[-39,34],[-8,8],[-30,26],[-14,12],[-57,51],[-15,13],[-12,11],[-21,19],[-8,6],[-58,51],[-32,28],[-25,23],[-7,5],[-106,93],[-24,22],[-18,16],[-17,15],[-116,104],[-25,21],[-25,23],[-15,15],[-4,2],[-15,14],[-20,17],[-12,11],[-8,6],[0,1],[-5,7],[-23,26],[-35,31],[-12,10],[-17,16],[-2,2],[-7,6],[-15,13],[-38,34],[-11,9],[-19,16],[-7,7],[-11,11],[-33,28],[-18,17],[-11,9],[-13,12],[-59,52],[-18,16],[-8,7],[-27,23],[-12,11],[-7,5],[-20,10],[-7,4],[-3,12],[-18,15],[-7,7],[-53,46],[-25,23],[-15,13],[-19,17],[-20,17],[-31,28],[-10,9],[-33,28],[-77,67],[-18,16],[-13,11],[-30,27],[-12,11],[-10,9],[-9,8],[-56,50],[-49,44],[-23,21],[-13,11],[-9,8],[-7,7],[-17,14],[-20,17],[-79,68],[-16,14],[-1,1],[-32,28],[-21,17],[-22,19],[-34,30],[-11,11],[-13,18],[-20,27],[-33,27],[-17,15],[-7,6],[-13,11],[-23,21],[-18,15],[-34,30],[-9,7],[-6,5],[-9,8],[-16,14],[-8,6],[-48,43],[-26,19],[-15,13],[-63,55],[-18,16],[-16,14],[-9,8],[-12,11],[-7,6],[-41,30],[-6,5],[-7,6],[-9,7],[-6,6],[-10,9],[-3,10],[-9,7],[-7,7],[-8,5],[-8,3],[-7,5],[-4,9],[-6,7],[-9,8],[-6,6],[-8,6],[-8,7],[-8,7],[-8,7],[-6,6],[-11,10],[-6,6],[-12,10],[-7,7],[-9,8],[-8,6],[-8,8],[-14,13],[-7,6],[-8,7],[-6,5],[-8,7],[-15,9],[-19,10],[-9,13],[-6,9],[-8,9],[-11,11],[-6,7],[-8,6],[-7,7],[-11,10],[-10,8],[-46,38],[-7,6],[-27,21],[-34,28],[-67,56],[-29,24],[-22,18],[-21,18],[-18,15],[-13,12],[-12,10],[-14,12],[-14,13],[-12,10],[-11,10],[-4,4],[-3,2],[-16,14],[-7,7],[-7,6],[-8,7],[-81,70],[-20,19],[-37,32],[-38,33],[-27,24]],[[64491,42380],[16,29],[62,113],[7,12],[1,2],[11,21],[5,11],[20,36],[53,95],[51,93],[5,9],[5,9],[29,52],[4,8],[6,11],[14,25],[9,15],[27,50],[8,15],[8,14],[1,2],[19,33]],[[76153,41822],[-9,-12],[0,-1],[-2,-13],[-6,-7],[-9,-3],[-1,-1],[-5,-6],[-5,-7],[-8,5],[-9,-3],[-10,3],[-8,-5],[-6,-7],[-8,-7],[-8,-2],[-6,-11],[-2,-10],[-9,1],[-14,2],[-7,-3],[-4,-9],[-6,-8],[-5,-8],[5,-12],[-3,-3],[-3,-3],[-5,-9],[2,-9],[-8,-11],[1,-10],[-13,-6],[-12,-6],[-9,0],[-6,-7],[-10,-8],[-7,-7],[-5,-11],[-1,-15],[0,-7],[0,-6],[-9,-4],[1,-12],[-9,-2],[5,-7],[-9,-8],[-7,-10],[-8,2],[-16,-2],[-5,-13],[-4,-13],[-8,-8],[-1,-11],[-5,-18],[-8,-8],[-8,1],[-8,-1],[-9,-8],[-8,-22],[6,-11],[-2,-12],[-8,-8],[8,-4],[-4,-9],[2,-10],[-12,-7],[-5,-7],[-10,4],[-13,-1],[-13,2],[-10,4],[-6,8],[-7,1],[-8,-6],[-7,-1],[-9,0],[-15,-4],[-9,3],[-4,-11],[-3,-9],[-10,-3],[-11,-8],[-10,-4],[-6,-7],[-9,6],[-11,-2],[-11,0],[-10,11],[-6,10],[-10,0],[2,12],[-2,12],[-7,0],[-9,-2],[-9,2],[-12,-3],[-13,-12],[-8,-1],[-3,-13],[-10,-10],[-14,5],[-3,-10],[-3,-11],[-10,-5],[-8,1],[-7,-4],[-9,0],[-9,3],[-6,-6],[-6,-10],[-8,-6],[1,-12],[-6,-6],[6,-8],[-6,-12],[-8,-6],[-4,-9],[3,-9],[-6,-14],[-3,-12],[-9,2],[-1,-12],[-7,-12],[-14,-13],[-5,-14],[7,-6],[-2,-18],[6,-8],[7,4],[5,-10],[-2,-11],[-6,-7],[-8,-3],[-5,-9],[-12,-12],[-4,-10],[1,-4],[1,-6],[9,-17],[-1,-10],[7,-5],[8,-4],[-3,-10],[-4,-8],[7,-12],[-2,-13],[8,-10],[-6,-9],[5,-7],[0,-10],[-3,-11],[-1,-14],[-8,-14],[1,-13],[-2,-11],[-8,-5],[-55,-50],[-131,-112],[-13,-11],[-7,-6],[-10,-9],[-11,-9],[-16,-14],[-15,-12],[-11,-11],[-25,-20],[-98,-85]],[[74983,40544],[-18,-18],[-32,-34],[-5,-6],[-12,-13],[-22,-24],[-29,-31],[-4,-4],[-11,-12],[-20,-22],[-9,-9],[-15,-15],[-48,-52],[-86,-91],[-80,-86],[-46,-27],[-34,-19],[-15,-9],[-9,-5],[-16,-9],[-12,-7],[-91,-55],[-50,-29],[-23,-14],[-23,-14],[-29,-17],[-47,-28],[-40,-24],[-13,-8],[-7,-4],[-17,-10],[-16,-10],[-8,-5],[-10,-6],[-10,-6],[-10,-5],[-10,-7],[-5,-2],[-8,-6],[-18,-10],[-20,-12],[-14,-9],[-8,-4],[-15,-10],[-20,-11],[-15,-9],[-12,-7],[-29,-18],[-38,-22],[-22,-13],[-12,-8],[-7,-4],[-8,-5],[-17,-10],[-53,-32],[-28,-16],[-15,-10],[-17,-10],[-71,-42],[-48,-29],[-9,-6],[-3,-2],[-6,-5],[-21,-10],[-33,-20],[-11,-6],[-50,-30],[-89,-53],[-39,-25],[-14,-9],[-8,-5],[-4,18],[-3,13],[-13,58],[-15,72],[-5,21]],[[73233,39521],[-3,11],[-2,11],[-3,13],[-3,12],[-5,22],[-4,21],[-11,50],[-7,30],[-4,19],[-6,24],[-4,20],[-9,40],[-7,29],[-5,25],[-23,102],[-25,110],[-2,13],[-2,9],[-15,67],[-9,40],[-5,23],[-5,21],[-3,12],[-4,20],[-3,12],[-12,55],[-17,79],[-4,15],[-12,57],[-3,10],[-7,32],[-2,12],[-17,76],[-7,30],[-3,13],[-11,53],[-1,3],[-3,14],[-4,19],[-1,5],[-2,8],[-4,14],[-3,11],[-1,5],[-3,13],[-7,34],[-3,13],[0,1],[-19,81],[-16,69],[-1,6],[-5,23],[-5,24],[-3,13],[-14,63],[-13,57],[-2,6],[-6,27],[-2,10],[-11,50],[-8,36],[-1,3],[-8,41],[-7,27],[-5,21],[-2,10],[-3,12],[-10,43],[-68,56],[-13,10],[-12,10],[-11,9],[-12,10],[-10,8],[-13,11],[-18,15],[-7,5],[-13,11],[-7,6],[-20,16],[-26,22],[-7,6],[-8,7],[-59,48],[-7,6],[-15,12],[-8,6],[-19,16],[-19,15],[-14,12],[-11,9],[-9,7],[-8,7],[-6,5],[-76,62],[-14,12],[-23,19],[-44,36],[-9,7],[-35,29],[-24,20],[-24,20],[-15,12],[-11,9],[-22,18],[-13,11],[-72,59],[-11,9],[-23,19],[-38,31],[-14,12],[-8,6],[-32,19],[-30,17],[-20,12],[-11,6],[-17,11],[-13,7],[-18,11],[-14,8],[-31,19],[-28,16],[-34,20],[-65,39],[-66,38],[-7,5],[-11,6],[-20,12],[-10,6],[-61,36],[-19,11],[-12,7],[-11,6],[-7,5],[-8,5],[-12,6],[-8,6],[-17,9],[-12,7],[-18,11],[-6,4],[-1,1],[-12,8],[-9,5],[-15,9],[-7,4],[-7,4],[-8,4],[-8,5],[-11,6],[-11,8],[-19,11],[-8,5],[-15,9],[-26,15],[-13,8],[-15,9],[-19,11],[-7,4],[-33,20],[-12,7],[-8,5],[-12,7],[-11,6],[-7,4],[-14,9],[-20,12],[-8,5],[-12,7],[-60,40]],[[95359,41305],[7,-13],[0,-2],[3,-8],[-1,-3],[0,-12],[-3,-10],[-6,-9],[-2,-12],[2,-10],[5,-10],[2,-9],[2,-13],[1,-13],[0,-12],[-4,-11],[-5,-8],[3,-10],[6,-8],[3,-6],[3,-5],[-1,-12],[-3,-13],[-5,-10],[-7,-9],[-1,-6],[-2,-5],[7,-6],[7,3],[7,5],[10,0],[8,-5],[6,-9],[6,-8],[9,-7],[11,-6],[8,-7],[9,-7],[11,-3],[9,2],[7,6],[7,-10],[5,-8],[7,-5],[7,-12],[6,-6],[5,-8],[7,-6],[7,-9],[4,-10],[6,-7],[8,0],[5,8],[0,10],[6,11],[7,-5],[2,-9],[-4,-12],[-5,-8],[-8,-7],[-5,-9],[4,-10],[9,-3],[10,-10],[-5,-10],[-14,-6],[-12,4],[-4,7],[-3,11],[-9,3],[-7,-8],[-1,-11],[4,-11],[-2,-13],[-9,-9],[-2,-10],[4,-12],[11,-11],[3,-9],[-6,-8],[-13,-3],[-7,6],[-6,6],[-1,10],[-10,6],[-7,5],[-6,10],[-10,4],[-9,-2],[-4,-9],[6,-10],[10,-8],[4,-9],[-2,-13],[-9,-4],[-7,4],[-9,8],[-8,1],[-8,-9],[-5,-14],[-3,-22],[0,-23],[1,-13],[-2,-10],[-1,-8],[-2,-9],[0,-10],[-7,-14],[-11,-7],[-2,-11],[5,-8],[8,-5],[7,-7],[-2,-9],[8,-8],[7,-8],[2,-9],[-1,-11],[-5,-9],[-10,-3],[-9,-3],[-5,-7],[-3,-12],[-5,-10],[-6,-7]],[[95372,40542],[-2,18],[-7,9],[-2,3],[-4,5],[-8,7],[-6,5],[-12,6],[-3,1],[-5,1],[-9,-3],[-8,3],[-1,-7],[-1,-4],[-7,-2],[-6,-6],[-6,-6],[-3,10],[-4,9],[-9,2],[-4,-7],[-8,1],[0,11],[-5,8],[-8,4],[-5,-7],[-10,1],[-8,4],[-5,8],[-7,3],[-10,1],[-5,-9],[-2,-9],[0,-12],[-9,-3],[-5,9],[4,10],[-1,14],[-6,-6],[-5,-8],[-8,2],[-10,3],[-7,-5],[-7,-8],[-7,0],[-6,7],[-2,9],[3,9],[7,4],[7,6],[-9,-1],[-13,-1],[-8,0],[-8,6],[-8,3],[-7,-7],[-8,-1],[-8,3],[-11,1],[-9,2],[-9,7],[-8,5],[-8,5],[-9,-2],[-4,-3],[-4,-2],[-10,2],[-8,3],[-8,6],[-8,3],[-8,8],[11,5],[8,2],[8,8],[-4,9],[-12,5],[-27,10],[-9,3],[-6,14],[3,12],[2,22],[0,13],[-8,17],[-10,8],[-17,3],[-8,-1],[-8,-2],[-8,-6],[6,-6],[10,-6],[3,-16],[-7,-12],[-10,0],[-7,7],[-7,7],[-12,-3],[-5,-13],[-5,-16],[-4,-9],[-6,-4],[-4,-2],[-9,-2],[-9,5],[-3,10],[4,14],[0,16],[-7,8],[-8,5],[-7,5],[-10,9],[-3,11],[-8,11],[-8,-2],[-6,-7],[5,-12],[-2,-9],[-7,-6],[-14,-6],[-9,2],[-3,10],[-1,13],[-7,8],[-10,6],[-8,1],[-8,-1],[-8,-2],[-11,-3],[-9,-3],[-14,-5],[-2,-10],[7,-7],[8,0],[7,-10],[-6,-7],[-7,9],[-5,-9],[-6,-10],[-7,3],[2,-10],[-2,-15],[-3,9],[-5,10],[-8,-7],[-8,-2],[-9,5],[2,-11],[-7,-4],[-9,1],[-6,-7],[1,-10],[7,-5],[-3,-9],[-3,-10],[-8,1],[6,9],[-8,3],[-6,-7],[5,-7],[6,-8],[6,-9],[-5,-7],[-6,-6],[-4,-10],[-7,-8],[-6,6],[-8,4],[-5,8],[-4,7],[-10,-2],[-7,5],[-7,-9],[-8,-1],[-8,-4],[-7,2],[-8,-2],[-5,-7],[7,-2],[7,-8],[-8,-2],[4,-9],[-8,-3],[-7,2],[-8,1],[-8,4],[-4,-8],[1,-10],[-3,-10],[4,-9],[-8,-5],[-7,-4],[-7,3],[-6,9],[-8,-3],[-10,-2],[-6,8],[-3,9],[-8,4],[-5,8],[-7,5],[-7,-5],[1,-9],[-8,-1],[-7,-3],[-8,-7],[-8,6],[1,11],[-6,-6],[-8,-1],[-7,6],[-8,0],[-1,10],[4,9],[-9,1],[-6,7],[5,7],[-5,7],[-8,-3],[-8,-2],[-8,-4],[-3,-8],[-2,-10],[-6,-6],[-4,-8],[-5,-8],[-6,5],[-8,4],[-6,-5],[-5,7],[-7,-3],[-9,0],[0,10],[-6,-7],[-7,-4],[-8,5],[-7,7],[-4,8],[-7,3],[-6,-6],[-7,4],[-9,2],[-7,-2],[-6,-8],[-5,-8],[-2,-11],[-5,-7],[-3,-10],[2,-10],[-2,-10],[-3,-9],[4,-10],[-5,-9],[-7,-4],[5,-8],[4,-8],[-7,-7],[3,-11],[-1,-12],[-4,-14],[4,-9],[-6,-6],[0,-6],[0,-4],[6,-7],[1,-12],[7,-4],[6,-12],[2,-10],[-5,-8],[1,-12],[-7,-5],[-8,-7],[6,-10],[10,-4],[5,-9],[-8,-5],[-6,-7],[-7,-3],[-1,-12],[7,-4],[-2,-10],[-3,-8],[-1,-1],[-3,-10],[-1,-12],[1,-11],[-8,0],[-7,10],[-6,-7],[-1,-10],[-2,-10],[-8,0],[-7,-4],[-8,-1],[-10,0],[-5,-7],[-3,-10],[-5,-11],[-2,-10],[1,-10],[-4,-9],[-7,4],[-9,0],[4,-17],[-2,-11],[-10,-27],[-7,-4],[-8,2],[-9,0],[-7,-6],[-8,-3],[-8,0],[3,-8],[-5,-7],[-10,-7],[-8,3],[-7,9],[-9,-3],[-7,11],[-9,7],[-8,-2],[-10,3],[-9,-3],[0,-15],[-9,0],[-7,2],[-9,7],[-8,1],[-5,9],[-7,4],[-8,0],[-8,-6],[-5,-8],[5,-8],[-4,-8],[-9,-1],[-5,-9],[-8,3],[-7,-3],[-7,8],[-7,-3],[-3,-12],[-8,-5],[-5,-7],[-8,2],[2,10],[-9,2],[-5,8],[-2,9],[-8,2],[-10,-2],[-4,-13],[8,-9],[-9,-1],[-3,-3],[-4,-4],[2,-11],[-7,-6],[0,-10],[-9,0],[-4,9],[-11,0],[-7,-4],[7,-5],[2,-11],[1,-11],[-8,3],[-8,7],[-2,-12],[0,-10],[-7,-6],[-6,8],[-1,10],[-8,5],[-12,-1],[2,-9],[8,-2],[0,-10],[-2,-10],[-9,-2],[-9,1],[-7,7],[1,11],[-7,4],[-9,-1],[-5,-7],[-9,0],[-6,-10],[-8,7],[6,9],[4,8],[-2,11],[-6,8],[-5,8],[-6,-9],[-4,-10],[-8,1],[-7,-4],[-10,-10],[5,-12],[-9,-4],[-8,2],[-8,0],[-11,-3],[4,8],[4,8],[-9,2],[-5,-7],[-5,-14],[-5,-7],[-9,-1],[-8,-1],[-2,-10],[-9,1],[-4,10],[-8,2],[3,10],[-2,10],[-9,2],[-7,4],[-9,1],[-2,9],[-9,-1],[-8,-5],[-7,5],[7,6],[-9,2],[-5,8],[-7,5],[-9,-3],[-8,-6],[-7,2],[-8,3],[-9,0],[-7,-5],[3,-10],[-10,0],[-2,-11],[-8,5],[-9,-2],[-7,0],[-8,4],[-6,-7],[6,-6],[-7,-9],[-8,3],[-7,3],[-8,8],[-9,2],[-1,-12],[-6,-6],[6,-8],[-2,-9],[-7,6],[-7,-3],[-8,2],[-7,-10],[-7,-7],[-7,-7],[1,-10],[-7,-5],[-3,-10],[-9,0],[-8,-2],[-6,9],[-8,5],[-9,2],[-5,8],[-4,-1],[-4,-1],[-6,-6],[-7,3],[-8,1],[-7,-4],[-6,-7],[-7,6],[-8,-1],[-4,9],[-7,-5],[-7,2],[-5,8],[-9,1],[-9,3],[9,5],[-7,3],[-5,8],[-9,-2],[1,12],[0,10],[-8,-3],[-5,8],[-8,1],[-7,2],[-8,6],[-7,6],[-7,3],[0,-9],[-9,-1],[-8,-4],[-2,9],[-9,6],[3,10],[-8,2],[-8,5],[-7,8],[-8,5],[1,10],[9,5],[7,4],[1,10],[-7,4],[-10,3],[-7,5],[-8,3],[-7,-7],[-7,6],[-7,6],[-7,4],[-8,0],[-7,-8],[-8,-4],[0,-9],[-4,-9],[-6,6],[-7,5],[-5,-7]],[[92868,40099],[-15,-1],[-12,0],[-8,0],[-26,-1],[-8,0],[-8,0],[-25,0],[-10,0],[-10,-1],[-8,0],[-10,0],[-10,0],[-2,0],[-8,0],[-8,0],[-27,-1],[-23,0],[-68,-2],[-24,0],[-15,-1],[-46,-1],[-16,-1],[-8,0],[-23,-1],[-8,-1],[-11,0],[-33,0],[-11,0],[-11,0],[-33,0],[-11,0],[-8,0],[-24,0],[-8,0],[-19,0],[-58,0],[-19,0],[-10,0],[-31,0],[-10,0],[-9,0],[-27,0],[-9,0],[-8,0],[-9,0],[-25,1],[-8,0],[-13,0],[-39,0],[-13,0],[-16,0],[-47,0],[-20,0],[-5,0],[-5,0],[-20,0],[-61,1],[-20,0],[-8,0],[-23,0],[-8,0],[-15,0],[-22,0],[-8,27],[-7,22],[-6,21],[-3,9],[-8,27],[-2,9],[-3,12],[-11,37],[-4,12],[-3,11],[-10,33],[-3,11],[-3,11],[-2,9],[-1,1],[-1,4],[-1,6],[-6,20],[-15,52],[-3,11],[-7,21],[-6,23],[-21,71],[-8,28],[-12,40],[-14,47],[-21,73],[-12,40],[-3,11],[-10,33],[-2,6],[-4,10],[-2,10],[-5,16],[-16,50],[-6,19],[-1,4],[-2,10],[-5,15],[-4,13],[-7,25],[-4,14],[-3,12],[-9,27],[-7,24],[-19,67],[-25,89],[-7,23],[-10,34],[-7,25],[-22,73],[-6,24],[-1,1],[-4,16],[-14,47],[-6,22],[-3,10],[-8,25],[-5,19],[-17,59],[-6,19],[-4,15],[-13,44],[-6,22],[-7,23],[-26,88],[-9,34],[-6,18],[-5,20],[-3,10],[-3,9],[-8,29],[-3,10],[-10,36],[-32,106],[-10,35],[-4,12],[-2,9],[-3,10],[-16,55],[-55,187],[-19,62],[-6,21],[-20,72],[-4,13],[-8,27],[-24,81],[-8,27],[-4,14],[-13,45],[-4,14],[-9,32],[-28,93],[-9,31],[-3,9],[-5,17],[-16,54],[-5,18],[-8,26],[-24,85],[-6,19],[-2,8],[-6,20],[-2,5],[-2,8],[-8,29],[-10,33],[-20,68],[-10,33],[-2,7],[-1,2],[-4,13],[-3,12],[-3,9],[-4,16],[-4,11],[-8,29],[-4,13],[-3,10],[-4,13],[-2,9],[-3,10],[-4,12],[-3,10],[-3,10],[-3,12],[-3,10],[-3,10],[-3,9],[-4,13],[-2,9],[-3,9],[-3,10]],[[61304,43726],[0,-24],[1,-57],[2,-147],[0,-50],[1,-30],[1,-69],[1,-56],[2,-201],[1,-19],[0,-67],[2,-110],[1,-85],[1,-26],[0,-30],[0,-44],[2,-123],[0,-22],[2,-68],[0,-101],[1,-116],[0,-4],[1,-52],[0,-68],[1,-141],[0,-49],[0,-12],[0,-40],[0,-26],[1,-60],[1,-140],[0,-50],[0,-24],[0,-26],[1,-59],[1,-38],[1,-54],[1,-29],[0,-21],[1,-23],[1,-14],[0,-2],[0,-61],[0,-5],[0,-32],[1,-144],[0,-64],[0,-45],[0,-10],[0,-27],[0,-13],[-1,-10],[0,-12],[1,-17],[0,-19],[0,-62],[0,-45],[-1,-21],[0,-45],[0,-95],[1,-38],[-1,-116],[0,-126]],[[61332,40342],[-261,-1],[-23,1],[-158,-1],[-66,0],[-15,0],[-46,0],[-208,-1],[-64,-1],[-59,0],[-130,0],[-53,-1],[-133,0],[-4,-1],[-16,-2],[-21,0],[-59,-1],[-40,-1],[-45,0],[-23,-1],[-25,0],[-75,0],[-78,1],[-25,0],[-28,0],[-43,0],[-37,0],[-15,0],[-10,1],[-9,0],[-56,0],[-71,0],[-17,0],[-105,1],[-27,0],[-72,1],[-51,1],[-19,0],[-109,0],[-85,-1],[-38,0],[-5,0],[-3,0],[-102,0]],[[58803,40336],[-39,-1],[-39,0],[-115,-1],[-65,-1],[-35,0],[-13,-1],[-53,0],[-9,-1],[-47,0],[-36,-1],[-61,-1],[-92,-1],[-89,-1],[-41,-1],[-18,0],[-10,0],[-65,-1],[-15,0],[-10,-1],[-10,0],[-56,0],[-50,-1],[-74,-1],[-60,-1],[-5,0],[-19,0],[-54,-1],[-27,0],[-34,-1],[-69,-1],[-158,-2],[-46,-1],[-49,0],[-105,-2],[-31,0],[-8,0],[-15,-1],[-21,0],[-10,0],[-39,0],[-25,-1],[-19,0],[-15,0],[-40,-1],[-39,0],[-27,-1],[-9,0],[-75,-1],[-36,0],[-13,-1],[-15,0],[-11,0],[-9,0],[-51,-1],[-9,0],[-21,0],[-40,-1],[-32,0],[-43,-1],[-32,0],[-4,0],[-34,-1],[-21,0],[-13,0],[-21,0],[-20,-1],[-71,0],[-89,-1],[-141,-2],[-75,0],[-57,-1],[0,16],[-1,121],[0,51],[-1,64],[0,23],[0,18],[0,54],[0,37],[0,11],[-1,55],[0,7],[0,3],[0,33],[0,10],[0,32],[0,12],[0,17],[0,41],[0,19],[-1,106],[0,25],[0,23],[0,61],[-1,47],[0,43],[0,43],[0,9],[0,16],[0,17],[0,15],[0,84],[0,20],[0,21],[0,26],[0,27],[0,14],[0,14],[0,14],[0,40],[0,29],[0,59],[0,52]],[[64491,42380],[-14,-42],[-20,-60],[-3,-15],[-5,-10],[-3,-10],[-8,-27],[-17,-48],[-6,-18],[-4,-12],[-12,-38],[-15,-47],[-5,-16],[-15,-47],[-4,-15],[-16,-53],[-15,-45],[-32,-99],[-8,-26],[-8,-22],[-26,-80],[-2,-7],[0,-3],[-5,-14],[-3,-10],[-3,-10],[-5,-15],[-4,-15],[-8,-26],[-29,-89],[-24,-76],[-21,-63],[-4,-12],[-16,-56],[-10,-35],[-3,-11],[-17,-52],[-8,-26],[-4,-14],[-9,-25],[-6,-22],[-3,-9],[-7,-22],[-4,-13],[-41,-127],[-4,-14],[-10,-32],[-1,-3],[-13,-40],[-46,-146],[-4,-11],[-9,-29],[-12,-39],[-14,-43],[-4,-12],[-11,-35],[-5,-15],[-11,-35],[-7,-22],[-8,-22],[-18,-56],[-8,-25],[-5,-14],[-9,-29],[-13,-39],[-8,-24],[-17,-57],[-17,-56],[-6,-17],[-14,-45],[-3,-10],[-29,-93],[-14,-42],[-19,-61],[-8,-27],[-13,-41],[-4,-11],[-5,-16],[-29,-92],[-9,-28],[-20,-62],[-2,-10],[-2,-5],[-6,-18],[-1,-3],[-13,-41],[-1,-2],[-15,-50],[-10,-31]],[[63542,39395],[-19,-21],[-18,-18],[-2,-3],[-9,-10],[-6,-6],[-11,-11],[-6,-7],[-17,-18],[-120,-129],[-13,-15],[-34,-35],[-62,-66],[-15,-15],[-8,-9],[-14,-14],[-10,-11],[-13,-14],[-70,-74],[-24,-26],[-97,-104],[-23,-25],[-40,-41],[-41,-44],[-12,-13],[-16,-17],[-14,-14],[-12,-13],[-10,-11],[-15,-15],[-7,-8],[-8,-9],[-10,-10],[-9,-9],[-9,-10],[-10,-10],[-5,-6],[-4,-3],[-20,-21],[-10,-11],[-14,-14],[-1,-2],[-28,-30]],[[62656,38453],[-12,18],[-7,9],[-43,62],[-8,12],[-8,12],[-32,45],[-58,84],[-19,27],[-7,10],[-38,54],[-19,28],[-9,13],[-12,17],[-25,37],[-5,7],[-8,11],[-10,15],[-18,25],[-22,32],[-39,56],[-10,15],[-15,20],[-41,58],[-13,18],[-7,9],[-3,5],[-3,5],[-15,19],[-32,45],[-26,37],[-9,12],[-20,28],[-20,29],[-27,38],[-16,22],[-18,25],[-7,11],[-61,87],[-74,105],[-66,94],[-9,11],[-14,17],[-92,136],[-7,10],[-5,8],[-9,12],[-19,27],[-26,37],[-1,2],[-20,29],[-9,12],[-97,139],[-13,18],[-25,36],[-7,10],[-10,14],[-23,35],[-11,16],[-7,10],[-22,31],[-6,9],[-10,14]],[[92868,40099],[-2,-10],[0,-10],[0,-15],[1,-91],[0,-26],[1,-118],[1,-65],[0,-73],[0,-12],[0,-9],[2,-303],[1,-18],[0,-8],[0,-21],[1,-121],[0,-58],[0,-10],[0,-11],[1,-79],[0,-15],[1,-17],[0,-33],[0,-17],[0,-36],[1,-30],[0,-25],[1,-47],[1,-68],[1,-52],[0,-50],[1,-70],[1,-76],[3,-184],[0,-15],[0,-15],[1,-26],[1,-55],[0,-13],[0,-40],[0,-15],[1,-6],[0,-30],[0,-21],[1,-23],[0,-59]],[[92888,38003],[-39,0],[-70,0],[-7,0],[-60,0],[-195,0],[-1,0],[-67,3],[-2,1],[-46,-1],[-27,-1],[-38,0],[-19,0],[-16,-1],[-30,0],[-15,0],[-72,-1],[-67,-1],[-8,-1],[-27,0],[-52,-1],[-53,-1],[-24,0],[-19,0],[-36,-1],[-41,-1],[-37,0],[-37,-1],[-74,-1],[-33,0],[-14,0],[-17,0],[-42,-1],[-8,0],[-7,0],[-14,0],[-54,-1],[-25,1],[-66,-1],[-33,-1],[-94,-1],[-32,-1],[-41,0],[-23,-1],[-74,-1],[-11,0],[-40,0],[-39,-1],[-61,-1],[-24,-1],[-8,0],[-72,-1],[-26,0],[-44,-1],[-19,0],[-10,0],[-20,-1],[-53,0],[-12,0],[-9,0],[-10,0],[-15,0],[-25,-1],[-3,0],[-46,-1],[-41,0],[-63,-1],[-7,-1],[-28,0],[-60,-1],[-28,0],[-27,-1],[-9,0],[-2,0],[-9,0],[-10,0],[-12,0],[-17,0],[-28,0],[-7,-1],[-10,0],[-19,0],[-18,0],[-15,-1],[-14,0],[-21,0],[-24,-1],[-15,0],[-24,0],[-18,-1],[-14,0],[-27,0],[-13,-1],[-14,1],[-7,-1],[-18,0],[-13,-1],[-15,0],[-12,0],[-8,0],[-15,0],[-8,0],[-12,-1],[-57,0],[-71,-1],[-6,0],[-33,0],[-43,-1],[-43,-1],[-26,-1],[-12,0],[-12,1],[-23,-1],[-46,0],[-67,-1],[-117,-2],[-1,0],[-25,0],[-27,0],[-32,-1],[-100,-2],[-131,-2],[-23,0],[-29,-2],[-167,-2]],[[88792,37953],[-1,12],[-3,9],[-9,3],[-9,5],[-8,-4],[-7,9],[1,14],[7,10],[-8,1],[-6,10],[8,5],[-2,12],[7,6],[2,9],[-4,9],[0,17],[-8,-2],[-6,7],[-4,9],[2,10],[5,10],[0,11],[-5,10],[-9,-1],[3,9],[5,9],[3,10],[-9,7],[-3,10],[-6,-7],[-11,1],[-1,9],[-3,10],[-10,8],[-8,5],[4,10],[-9,9],[-3,10],[-10,6],[5,9],[-5,10],[-9,7],[1,10],[1,10],[-8,1],[-8,2],[3,9],[3,9],[7,8],[4,9],[9,4],[8,-1],[6,7],[-8,7],[13,8],[5,10],[1,10],[-6,8],[-8,-6],[-11,-5],[-1,10],[-8,16],[7,9],[2,10],[-2,10],[-5,10],[3,12],[7,13],[5,10],[9,4],[8,11],[5,8],[4,12],[9,9],[-6,9],[-11,2],[7,6],[-2,9],[6,7],[8,4],[8,2],[0,11],[-6,8],[3,11],[5,8],[-4,10],[12,6],[9,5],[12,3],[8,-5],[8,4],[3,9],[7,5],[10,8],[-8,10],[-2,13],[-8,-2],[-8,-2],[-7,6],[8,2],[3,11],[5,8],[3,11],[7,7],[-8,4],[-6,9],[-6,8],[-8,-1],[-7,3],[5,8],[0,11],[-6,37],[-2,6],[-2,4],[-6,9],[-7,4],[-1,1],[-7,5],[-10,5],[0,10],[-9,1],[-9,3],[-12,0],[-8,5],[-7,6],[-2,15],[-7,7],[-3,13],[2,10],[-6,11],[-3,11],[-4,11],[-3,13],[4,9],[-9,4],[-6,8],[5,9],[-6,7],[-31,7],[-19,1],[-14,4],[-10,3],[-8,-1],[-7,5],[4,9],[-7,3],[-7,-6],[-8,-4],[-4,9],[-3,10],[-8,4],[-9,-3],[-9,2],[-8,1],[-6,8],[-9,-3],[-10,0],[-10,5],[-7,-7],[-9,-2],[-9,-5],[-5,-10],[-7,-6],[-10,-4],[-3,-8],[-35,112],[-31,100],[-20,62],[-17,54],[-4,11],[-8,37],[-9,27],[-8,23],[-1,2],[-8,27],[-1,1],[-54,182],[-46,154],[-12,36],[-65,203],[-2,6],[-79,274],[-7,24],[-5,16],[-3,10],[-8,25],[-3,11],[-46,150],[-18,52],[-10,34]],[[73233,39521],[-14,-16],[-34,-38],[-7,-8],[-20,-23],[-38,-43],[-24,-26],[-139,-167],[-196,-234],[-129,-154],[-16,-19],[-109,-130],[-564,-608],[-74,-80],[-270,-290],[-89,-96],[-38,-42],[-20,-22],[-18,-20],[-21,-24],[-36,-40],[-9,-11],[-6,-6],[-41,-46],[-6,-7],[-11,-11],[-20,-23],[-8,-8],[-6,-7],[-18,-20],[-17,-20],[-24,-26],[-18,-21],[-10,-10],[-45,-50],[-22,-24],[-40,-45],[-7,-8],[-54,-61]],[[71015,37037],[-17,18],[-7,7],[-20,21],[-27,27],[-11,12],[-23,24],[-32,33],[-9,9],[-19,20],[-7,7],[-49,51],[-52,56],[-12,12],[-28,27],[-6,7],[-15,15],[-25,26],[-8,10],[-7,6],[-15,14],[-63,66],[-76,78],[-2,2],[-8,8],[-6,6],[-7,7],[-8,9],[-8,9],[-41,42],[-18,19],[-8,9],[-38,38],[-17,18],[-38,39],[-28,30],[-47,50],[-10,9],[-12,14],[-6,6],[-13,13],[-6,7],[-13,12],[-25,26],[-23,24],[-20,20],[-23,24],[-105,109],[-39,41],[-22,23],[-6,7],[-6,7],[-54,55],[-23,24],[-45,47],[-43,44],[-8,8],[-24,26],[-12,12],[-16,16],[-6,7],[-9,10],[-33,31],[-6,7],[-5,5],[-3,3],[-6,6],[-11,12],[-69,72],[-56,58],[-1,2],[-25,25],[-13,14],[-13,14],[-77,82],[-19,19],[-6,7],[-8,8],[-9,9],[-19,20],[-16,18],[-8,5],[-31,33],[-9,9],[-70,73],[-37,39],[-13,12],[-17,15],[-7,8],[-7,7],[-6,6],[-23,25],[-26,29],[-16,17],[-10,10],[-15,17],[-13,13],[-40,41],[-11,11],[-13,14],[-23,27],[-6,6],[-8,9],[-7,6],[-6,6],[-91,96],[-45,46],[-12,14],[-7,6],[-1,0],[-12,13],[-7,7],[-10,10],[-22,22],[-2,2],[-16,17],[-29,30],[-9,11],[-22,22],[-6,7],[-8,8],[-6,6],[-5,7],[-11,11],[-7,8],[-8,11],[-7,7],[-1,-1],[-7,5]],[[80319,41149],[0,-5],[0,-8],[0,-7],[0,-3],[0,-4],[-4,-14],[-6,-12],[-2,-9],[-7,-24],[-5,-9],[-4,-1],[-11,-2],[-10,6],[-8,4],[-18,9],[-17,8],[-11,5],[-12,9],[-6,8],[-5,15],[1,10],[0,20],[3,16],[-1,13],[-5,14],[-13,4],[-10,-5],[-11,-11],[-10,-16],[-12,-14],[-11,-19],[-15,-22],[-31,-48],[-7,-12],[-9,-13],[-15,-12],[-18,-5],[-18,-2],[-18,4],[-14,5],[-9,7],[-10,12],[-5,11],[-3,10],[-1,10],[-5,18],[-13,4],[-17,-14],[-8,-13],[-11,-17],[-10,-11],[-14,-13],[-16,-11],[-16,-9],[-8,-13],[1,-11],[4,-11],[9,-14],[5,-15],[-6,-11],[-11,-3],[-9,0],[-10,6],[-9,15],[-13,12],[-8,3],[-9,-6],[0,-21],[6,-13],[11,-13],[7,-2],[12,-7],[19,-18],[12,-13],[7,-10],[1,-12],[-2,-13],[-17,-12],[-20,-6],[-8,-4],[-8,-9],[-2,-11],[4,-17],[13,-15],[13,-12],[12,-10],[11,-16],[4,-11],[-1,-13],[-2,-12],[-10,-15],[-13,-17],[-12,-14],[-5,-9],[-6,-19],[2,-12],[5,-11],[6,-10],[9,-9],[9,-9],[8,-7],[9,-8],[7,-7],[11,-18],[3,-11],[4,-22],[4,-37],[1,-12],[1,-18],[-6,-23],[-10,-16],[-17,-13],[-13,-2],[-13,4],[-13,10],[-10,11],[-8,5],[-13,14],[-9,7],[-12,6],[-12,6],[-15,13],[-7,5],[-7,10],[-16,20],[-12,11],[-10,6],[-9,3],[-14,-15],[-11,-19],[-1,-15],[4,-23],[10,-15],[18,-15],[26,-9],[9,-14],[0,-15],[-3,-11],[-6,-6],[-19,-3],[-14,4],[-22,16],[-13,5],[-20,1],[-10,-3],[-17,-11],[-13,-20],[-4,-12],[5,-15],[10,-9],[13,-19],[5,-16],[4,-11],[0,-1],[5,-9],[13,-14],[17,-13],[13,-17],[6,-18],[0,-15],[-3,-10],[-21,-6],[-17,3],[-18,1],[-16,-1],[-11,-9],[-3,-22],[4,-12],[11,-20],[10,-10],[11,-6],[11,-1],[14,4],[34,18],[13,4],[10,1],[8,-4],[9,-10],[4,-13],[0,-13],[-5,-17],[-6,-24],[1,-14],[10,-18],[12,-7],[18,-2],[25,7],[13,10],[13,23],[11,27],[8,10],[8,1],[12,-3],[14,-9],[7,-14],[1,-15],[-7,-9],[-13,-10],[-6,-16],[1,-11],[12,-42],[3,-20],[-1,-19],[6,-23],[10,-11],[10,-3],[19,1],[18,1],[12,-3],[5,-7],[7,-14],[7,-16],[6,-16],[12,-16],[21,-21],[16,-17],[9,-14],[3,-13],[-2,-14],[-2,-9],[-12,-9],[-12,0],[-14,7],[-18,16],[-14,22],[-12,16],[-11,10],[-10,5],[-10,1],[-10,-9],[0,-10],[3,-12],[18,-17],[18,-9],[9,-4]],[[79924,39697],[-8,0],[-8,-2],[-7,-7],[-5,-8],[-12,-2],[-13,-6],[-12,-3],[-10,-2],[5,-11],[-4,-10],[-4,-15],[-8,-8],[-4,-9],[8,-16],[2,-12],[-6,-13],[-6,-15],[-9,-7],[-7,-7],[-14,3],[-11,-11],[-9,4],[-10,0],[-9,3],[-6,5],[-9,2],[1,15],[-13,-2],[-15,5],[-9,2],[-4,10],[-7,9],[-12,3],[-11,5],[0,9],[-10,2],[-7,14],[-9,6],[-13,-3],[-13,2],[-8,-1],[-9,6],[-18,10],[-9,6],[-19,3],[-13,-3],[-13,-1],[-14,4],[-12,6],[-8,7],[-14,-3],[-8,2],[-13,1],[-12,2],[-10,-13],[-2,-18],[-6,-11],[-12,15],[-8,7],[-6,9],[-7,4],[-2,21],[-5,11],[-9,2],[-14,9],[-8,3],[-2,11],[-7,4],[-28,0],[-8,-2],[-7,12],[-10,7],[-13,10],[-11,4],[-15,0],[-8,2],[-13,1],[-10,-6],[-27,-1],[-7,-6],[-2,-9],[-4,-9],[-16,-5],[-6,6],[-7,9],[-14,10],[-12,-1],[-8,-6],[-14,-1],[-9,7],[-8,7],[-5,-10],[-5,7],[-8,5],[-9,-1],[-9,3],[-10,-1],[-8,16],[-8,2],[-11,3],[-8,3],[-3,12],[0,15],[-9,7],[-11,3],[-3,14],[-3,11],[-4,8],[-3,16],[-6,12],[-2,10],[3,8],[-9,16],[-4,11],[-9,4],[-11,-3],[-7,-7],[-8,-7],[-11,5],[-11,10],[-12,0],[-8,-5],[-11,2],[-8,6],[-5,12],[-8,7],[-8,1],[-9,3],[-8,0],[-11,-6],[-5,0],[-16,-1],[-312,-51],[-16,-3],[-35,-7],[-16,-2],[-23,-4],[-35,-6],[-28,-4],[-20,-4],[-8,-1],[-28,-5],[-13,-2],[-86,-14],[-27,-7],[-9,-1],[-45,-7],[-70,-13],[-26,-5],[-108,-17],[-31,-5],[-18,-2],[-54,-10],[-18,-3],[-56,-10],[-7,-1],[-55,-9],[-80,-13],[-64,-11],[-18,-3],[-51,-9],[-36,-6],[-11,-2],[-18,-2],[-71,-11],[-21,-4],[-45,-7],[-8,-1],[-10,-2],[-11,-2],[-23,-4],[-107,-20],[-18,0],[-80,-1],[-45,0],[-27,-1],[-90,-1],[-110,-1],[-52,0],[-89,-1],[-10,7],[-4,10],[-16,14],[-1,9],[-10,4],[-7,10],[-2,4],[-12,3],[-1,-2],[-50,-60],[-20,-23],[-32,-38],[-23,-27],[-80,-96],[-7,-6]],[[76296,39454],[-2,36],[-4,64],[-5,66],[-1,19],[-2,25],[-7,5],[-10,6],[-36,23],[-26,51],[14,78],[-1,21],[-1,10],[0,11],[-2,14],[-2,27],[-1,52],[-2,54],[-1,19],[-11,28],[-13,33],[-8,20],[-4,12],[-9,23],[-7,17],[-28,27],[-20,18],[-46,44],[-2,1],[38,118],[6,18],[-43,21],[-33,11],[-11,4],[-23,7],[-46,5],[-39,5],[-28,3],[-7,0],[-12,2],[-15,1],[-16,2],[-13,54],[-8,34],[-4,18],[-4,16],[-26,-11],[-23,-12],[-9,-5],[-18,-10],[-30,-16],[-8,-4],[-7,-9],[-8,-10],[-8,-10],[-6,-7],[-58,-70],[-6,-8],[-6,-7],[-22,4],[-9,1],[-13,2],[-8,1],[-25,4],[-52,7],[-26,4],[-43,-15],[-21,-7],[-26,-8],[-23,-8],[-45,-15],[-10,-4],[-22,-7],[-5,-2],[-38,-13],[-15,16],[-2,4],[-4,9],[-32,69],[-59,25],[-80,60],[-9,7],[-8,6],[-8,6]],[[66759,37710],[-83,-76],[-18,-16],[-21,-19],[-108,-101],[-22,-20],[-85,-79],[-34,-32],[-14,-13],[-18,-17],[-10,-9],[-10,-9],[-18,-17],[-33,-29],[-34,-32],[-14,-13],[-5,-7],[-2,-2],[-56,-66],[-18,-22],[-12,-14],[-14,-18],[-10,-12],[-13,-16],[-9,-11],[-6,-7],[-6,-7],[-12,-15],[-8,-9],[-8,-11],[-7,-8],[-14,-17],[-13,-16],[-16,-19],[-11,-12],[-20,-25],[-29,-34],[-8,-10],[-25,-31],[-45,-54],[-9,-10],[-15,-18],[-24,-28],[-9,-12]],[[65813,36717],[-6,22],[-13,54],[-30,113],[-6,22],[-5,16],[-2,11],[-6,21],[-1,5],[-2,5],[-3,11],[-7,30],[-7,25],[-16,61],[-15,55],[-1,2],[-11,46],[-3,9],[-5,22],[-2,4],[-4,15],[-3,11],[-9,36],[-43,161],[-11,41],[-19,74],[-3,11],[-5,18],[-10,10],[-51,45],[-145,126],[-9,9],[-63,55],[-7,6],[-27,23],[-8,7],[-64,56],[-70,60],[-22,20],[-34,29],[-157,136],[-24,21],[-30,26],[-76,66],[-54,48],[-29,25],[-28,24],[-9,9],[-70,61],[-63,56],[-23,19],[-61,54],[-58,51],[-8,7],[-23,20],[-9,8],[-8,7],[-7,6],[-17,15],[-7,6],[-7,5],[-37,33],[-52,46],[-42,38],[-41,35],[-41,37],[-45,38],[-7,7],[-8,7],[-19,17],[-56,49],[-11,9],[-44,39],[-12,9],[-7,7],[-9,9],[-12,11],[-35,30],[-227,197],[-50,43]],[[68013,39268],[5,-5],[-8,-8],[-7,-8],[-1,-10],[-9,-8],[-13,-11],[-7,-6],[-9,-8],[-9,-8],[-6,-6],[-11,-10],[-11,-9],[-21,-19],[-10,-9],[-11,-10],[-10,-9],[-9,-8],[-14,-12],[-10,-9],[-12,-11],[-15,-13],[-16,-14],[-14,-13],[-14,-12],[-4,-4],[-6,-5],[-11,-10],[-9,-8],[-7,-6],[-5,-4],[-9,9],[-5,-3],[-7,-5],[-12,-7],[-10,-6],[-8,-9],[-6,-7],[-6,-7],[-9,-11],[-13,-8],[-7,-6],[-8,-8],[-5,-7],[-14,-36],[-3,-9],[-8,-17],[-4,-13],[-8,-11],[-19,-30],[-8,-12],[-12,-18],[-9,-14],[-10,-15],[-5,-7],[0,-5],[-1,-6],[-9,-16],[-9,-15],[-15,-14],[-12,-10],[-7,-6],[-15,-12],[-6,-6],[-8,-6],[-6,-8],[-6,-8],[-1,0],[-6,-11],[-6,-10],[-4,-13],[-5,-14],[-1,-9],[-2,-12],[-10,-21],[-7,-10],[-7,-5],[-7,-3],[-10,-5],[-7,-3],[-13,-6],[-8,-3],[-13,-7],[-9,-3],[-8,-5],[-8,-1],[-9,-6],[-7,-4],[-8,-4],[-10,-6],[-8,-5],[-18,-11],[-12,-6],[-9,-5],[-13,-8],[-10,-6],[-8,-5],[-7,-5],[-11,-7],[-5,-4],[-3,-2],[-18,-13],[-12,-8],[-9,-6],[-7,-7],[-12,-10],[-7,-8],[-11,-9],[-12,-12],[-12,-11],[-9,-7],[-7,-5],[-9,-5],[-8,-5],[-15,-9],[-7,-4],[-16,-10],[-13,-8],[-16,-10],[-13,-8],[-7,-6],[-7,-6],[-8,-7],[-7,-6],[-14,-13],[-8,-6],[-7,-7],[-9,-8],[-7,-6],[-11,-9],[-11,-10],[-8,-7],[-11,-9],[-9,-9],[-7,-5],[-11,-10],[-11,-9],[-9,-8],[-13,-12],[-8,-7],[-7,-6],[-7,-6],[-9,-8],[-18,-16],[-8,-8],[-9,-9],[-6,-6],[-11,-10],[-9,-9],[-12,-11],[-16,-16],[-8,-7],[-7,-6],[-13,-12],[-9,-8],[-1,-1],[-3,-9],[-1,-10],[-1,-3],[-2,-13],[-1,-11],[-2,-10],[-1,-10],[-1,-17],[-1,-11],[-1,-10],[-1,-11],[-2,-9],[0,-2],[-1,-11],[-4,-37],[-3,-12],[-3,-13],[-5,-17],[-5,-15],[-2,-11],[14,-4],[8,-1],[17,-2],[10,-5],[1,0],[7,0],[11,-2],[1,0],[2,1],[7,3],[1,0],[0,1],[7,7],[0,1],[1,2],[3,7],[1,4],[0,7],[0,1],[2,7],[0,1],[5,10],[1,0],[15,6],[7,-4],[4,-2],[1,-1],[7,-4],[0,-1],[7,-3],[14,-1],[15,-1],[5,-1],[3,0],[8,-5],[4,-8],[-4,-8]],[[45253,41742],[0,-11],[0,-47],[3,-158],[0,-25],[0,-10],[1,-14],[0,-1],[0,-13],[0,-78],[0,-14],[0,-90],[-1,-130],[0,-185],[-1,-17],[0,-40],[0,-280],[-1,-224],[0,-43],[0,-79],[0,-70],[0,-64],[0,-3],[0,-5],[0,-19],[0,-19],[0,-10],[0,-17],[0,-42],[0,-13],[0,-17],[0,-4],[-2,-308],[0,-67],[-1,-54],[0,-9],[0,-37],[0,-37],[0,-14],[0,-17],[-1,-24],[0,-14],[-1,-226],[4,-146],[0,-50],[1,-62],[0,-51],[0,-13],[0,-84],[0,-98],[0,-2],[0,-22],[0,-14],[0,-81],[1,-175],[1,-416],[0,-71],[0,-39],[0,-53],[0,-103],[0,-42],[0,-57],[0,-35],[0,-86],[0,-32],[1,-60],[0,-61],[0,-77],[0,-49],[0,-14],[0,-255],[0,-13],[0,-18],[0,-8],[1,-66],[0,-138],[0,-46],[0,-126],[-1,-69],[0,-59],[0,-85],[0,-17],[0,-91],[-1,-84],[0,-1],[0,-51],[0,-31],[0,-56],[0,-77],[0,-85],[-1,-103],[0,-66],[0,-30],[0,-17],[0,-84],[1,-12]],[[45256,35512],[0,-22],[0,-58],[0,-14],[0,-133],[0,-42],[0,-25],[0,-42],[0,-22],[0,-67],[1,-60],[0,-43],[0,-124],[0,-86],[0,-20],[0,-37],[0,-30],[-1,-65],[0,-40],[0,-16],[0,-75],[0,-45],[0,-59],[0,-35],[0,-61],[0,-11],[0,-63],[0,-25],[2,-194],[0,-60],[1,-136],[0,-13],[1,-33],[0,-22],[1,-85],[1,-32],[0,-17],[0,-3],[-5,-10],[0,-11],[-2,-16],[-10,-14],[2,-11],[-4,-30],[-1,-16],[3,-11],[-1,-12],[-5,-9],[-11,-12],[-9,-7],[-6,-8],[-10,-43],[-1,-31],[0,-13],[-3,-17],[-1,-8],[-1,-5],[-1,-11],[-1,-11],[2,-4],[2,-5],[4,-11],[2,-11],[-1,-10],[-1,-10],[-2,-20],[-2,-10],[-3,-12],[0,-17],[4,-8],[-5,-9],[-9,-3],[-10,-1],[-1,-13],[0,-12],[1,-11],[6,-6],[4,-9],[3,-11],[4,-7],[5,-8],[6,-6],[1,-13],[-3,-9],[-3,-11],[-5,-8],[-5,-10],[-3,-10],[2,-10],[3,-10],[0,-10],[-7,-7],[-7,-9],[-3,-9],[0,-14],[-2,-10],[2,-14],[5,-11],[-3,-9],[-2,-10],[-2,-10],[-1,-10],[-2,-9],[-4,-11],[-1,-14],[-4,-11],[-6,-6],[-11,-9],[-11,-7],[-10,-6],[-10,1],[-7,3],[-9,-3],[-8,-4],[-11,-3],[-7,-6],[-7,-4],[-9,-8],[-9,-4],[-9,1],[-10,-3],[-5,-8],[-9,-2],[-7,-2],[-9,-4],[-7,-3],[-19,-1],[-9,0],[-9,0],[-10,-1],[-7,5],[-7,-4],[-7,-5],[-7,-6],[-5,-9],[-5,-10],[-3,-9],[-1,-10],[1,-11],[1,-10],[2,-9],[9,-11],[4,-9],[1,-9],[4,-9],[2,-15],[-3,-12],[-3,-10],[-3,-10],[-3,-8],[-7,-5],[-4,-10],[-6,-8],[-3,-9],[-2,-12],[-4,-11],[1,-11],[0,-10],[4,-8],[3,-13],[7,-11],[7,-5],[3,-9],[2,-10],[1,-12],[4,-10],[7,-7],[7,-5],[10,-9],[5,-11],[7,-4],[6,-9],[1,-10],[1,-14],[1,-14],[-2,-12],[2,-10],[3,-9],[-4,-8],[-4,-8],[-8,-8],[-8,-5],[-11,-1],[-2,-10],[1,-10],[1,-12],[0,-11],[-1,-9],[-6,-9],[2,-12],[5,-8],[2,-9],[-5,-9],[-4,-11],[-5,-8],[-5,-9],[-5,-11],[-1,-12],[2,-9],[4,-10],[-2,-10],[-1,-12],[-4,-14],[1,-12],[-3,-9],[-7,-8],[-11,-4],[-9,1],[-8,3],[-1,0],[-7,2],[-8,3],[-9,7],[-7,4],[-12,-2],[-7,-4],[-13,-11],[-9,-9],[-10,-11],[-6,-7],[-3,-10],[-3,-15],[3,-11],[7,-6],[6,-7],[9,-9],[6,-6],[7,-11],[5,-13],[2,-13],[-1,-12],[-4,-9],[-9,-5],[-10,-1],[-10,-1],[-9,2],[-7,3],[-7,6],[-8,3],[-8,5],[-11,12],[-10,14],[-5,7],[-8,6],[-8,3],[-8,6],[-6,8],[-8,1],[-10,2],[-10,5],[-8,2],[-9,-1],[-7,-4],[-8,0],[-8,0],[-8,0],[-9,2],[-8,-2],[-8,-6],[-11,-5],[-8,3],[-6,-5],[-7,-8],[-6,-6],[-14,-12]],[[44538,31930],[-2,6],[-4,11],[-1,2],[-5,10],[-6,8],[-5,9],[-12,12],[-12,11],[-9,6],[-15,10],[-11,6],[-36,15],[-9,3],[-10,2],[-2,0],[-4,0],[-6,-1],[-6,-2],[-6,0],[-4,0],[-4,2],[-2,3],[0,5],[1,8],[3,9],[5,7],[6,9],[6,10],[3,7],[3,8],[2,8],[0,6],[-2,6],[-5,7],[-5,5],[-7,3],[-8,0],[-11,-1],[-10,-4],[-12,-7],[-11,-8],[-7,-4],[-17,-5],[-11,0],[-52,-1],[-7,1],[-13,6],[-17,11],[-13,9],[-9,8],[-2,5],[-1,5],[-3,6],[-4,5],[-4,5],[-38,36],[-52,38],[-5,2],[-6,1],[-25,0],[-25,-1],[-6,1],[-7,2],[-11,3],[-34,12],[-31,12],[-11,7],[-12,7],[-4,5],[-14,48],[-1,8],[1,13],[0,10],[-1,14],[-1,15],[-3,26],[-4,23],[-5,19],[-32,73],[-3,1],[-10,4],[-31,11],[-36,2],[-3,-2],[-6,0],[-10,3],[-15,7],[-40,26],[-2,2],[0,3],[1,4],[1,6],[0,5],[-3,6],[-7,7],[-5,5],[-5,1],[-7,1],[-10,0],[-6,0],[-7,2],[-19,8],[-5,2],[-4,3],[-3,3],[-1,4],[-1,7],[-1,4],[0,4],[0,7],[-1,5],[0,3],[1,6],[-1,5],[-4,5],[-5,5],[-6,6],[-3,1],[-4,2],[-17,5],[-11,3],[-16,4],[-3,1],[-6,1],[-1,1],[-18,4],[-1,1],[-4,3],[-11,8],[-13,8],[-12,7],[-7,4],[-5,0],[-4,0],[-1,0],[-8,2],[-6,4],[-5,5],[-3,5],[-2,8],[-1,14],[-3,16],[-3,13],[-4,12],[-5,14],[-6,13],[-8,12],[-6,6],[-5,6],[-11,9],[-10,7],[-8,5],[-5,3],[-7,1],[-7,-1],[-28,-5],[-36,-4],[-10,1],[-16,3],[-5,2],[-8,6],[-45,32],[-3,3],[-1,6],[-30,32],[-41,23],[-7,3],[-14,7],[-26,12],[-5,2],[-41,17],[-49,16],[-21,7],[-2,0],[-2,0],[-4,-1],[-2,-1],[-3,1],[-2,1],[-36,28],[-4,4],[-11,16],[-5,10],[-12,22],[-1,3],[0,4],[1,4],[1,8],[1,10],[3,33],[-1,5],[-18,44],[-8,17],[-17,29],[-9,15],[-5,5],[-6,4],[-4,2],[-6,1],[-4,2],[-6,5],[-32,32],[-11,14],[-11,13],[-40,53],[-3,4],[-2,3],[-1,4],[-9,29],[-1,6],[0,4],[2,33],[-5,21],[-6,30],[-3,13],[-19,68],[-3,7],[-4,5],[-16,15],[-8,7],[-6,4],[-3,2],[-9,7],[-29,26],[-4,4],[-3,3],[-19,23],[-4,6],[-3,7],[1,5],[2,6],[0,6],[-1,24],[-1,13],[-5,26],[-6,28],[-5,22],[-1,7],[-5,23],[-141,61],[-72,44],[-1,0],[-11,1],[-95,8],[-72,-15],[-28,-6],[-109,97],[0,1],[-52,-31],[-38,-23],[-1,0],[-41,27],[-38,24],[-79,118],[-32,54],[-18,31],[-4,7],[-16,28],[-20,100],[-52,22],[-98,28],[-69,6],[-46,3],[-47,4],[-23,2],[-66,5],[-22,5],[-16,4],[-34,8],[-30,-8],[-61,-17],[-5,-1],[-7,-2],[-35,-6],[-3,-1],[-47,95],[1,68],[41,106],[52,96],[55,55],[-18,70],[-26,99],[-8,46],[-3,16],[-3,14],[-14,73],[-10,53],[3,11],[34,117],[-32,65],[-12,13],[-16,12],[-26,12],[-31,13],[-11,3],[-9,0],[-10,-2],[-12,-7],[-11,-10],[-17,-19],[-43,-55],[-10,-15],[-7,-14],[-3,-17],[-1,-14],[2,-19],[6,-18],[5,-20],[5,-22],[4,-28],[2,-27],[-1,-32],[-4,-35],[-7,-35],[-5,-19],[-12,-23],[-60,-86],[-18,-18],[-11,-7],[-13,-2],[-10,0],[-11,3],[-19,9],[-19,15],[-13,14],[-11,17],[-11,18],[-9,21],[-19,50],[-9,29],[-5,30],[-5,28],[-2,33],[0,28],[4,49],[3,23],[8,31],[8,25],[12,28],[10,22],[10,17],[10,23],[7,19],[6,15],[5,14],[7,27],[6,32],[3,26],[-1,22],[-8,37],[-5,16],[-7,17],[-8,13],[-8,12],[-12,12],[-9,7],[-16,12],[-19,8],[-26,10],[-33,7],[-43,5],[-25,1],[-25,1],[-28,1],[-36,4],[-27,5],[-16,3],[-12,-1],[-7,-3],[-7,-6],[-6,-13],[-14,-35],[-13,-35],[-8,-13],[-9,-10],[-8,-5],[-9,-2],[-9,2],[-7,5],[-6,8],[-6,12],[-5,14],[-5,21],[-2,25],[-5,46],[-9,45],[-11,27],[-8,17],[-16,19],[-11,20],[-9,20],[-4,20],[-1,13],[0,19],[6,27],[5,25],[3,25],[1,25],[-4,23],[-10,19],[-7,8],[-9,10],[-21,16],[-28,14],[-54,29],[-34,27],[-17,16],[-13,17],[-5,10],[-4,12],[0,11],[1,11],[4,17],[3,10],[2,6],[4,12],[3,13],[2,15],[2,17],[2,14],[-1,15],[-2,15],[-4,15],[-5,10],[-5,7],[-17,15],[-4,2],[-5,1],[-4,-1],[-4,1],[-15,3],[-6,2],[-6,3],[-15,7],[-21,11],[-21,18],[-7,7],[-6,7],[-6,10],[-2,10],[-1,9],[-1,15],[2,10],[4,13],[3,6],[4,5],[6,3],[7,3],[7,1],[14,4],[21,8],[12,5],[11,6],[13,9],[8,6],[12,10],[5,6],[7,13],[5,12],[2,9],[1,9],[1,10],[-2,10],[-2,8],[-3,12],[-5,7],[-7,7],[-6,7],[-8,5],[-10,4],[-8,2],[-9,-1],[-7,-2],[-11,-4],[-9,-3],[-9,-5],[-9,-7],[-13,-9],[-63,-49],[-6,-5],[-14,-12],[-17,-15],[-40,-39],[-15,-19],[-12,-15],[-5,-6],[-5,-5],[-6,-4],[-8,-3],[-12,-5],[-28,-3],[-6,-1],[-8,0],[-9,1],[-10,2],[-12,8],[-5,3],[-4,5],[-4,4],[-1,5],[-3,10],[-1,6],[1,22],[1,17],[1,6],[0,3],[0,6],[0,5],[-1,9],[-3,12],[-2,5],[-3,5],[-4,6],[-3,5],[-14,34],[-5,14],[-1,5],[-1,6],[-1,10],[1,7],[2,12],[4,10],[5,11],[4,11],[9,22],[1,6],[2,14],[1,7],[0,5],[-1,6],[-2,9],[-4,10],[-5,7],[-5,7],[-4,4],[-5,3],[-7,5],[-6,4],[-4,2],[-12,3],[-3,0],[-5,1],[-9,-1],[-12,-3],[-12,-5],[-18,-6],[-63,-24],[-13,-5],[-12,-5],[-4,-3],[-5,-4],[-3,-3],[-4,-8],[-4,-9],[-3,-10],[-2,-8],[-1,-9],[-2,-8],[-3,-7],[-4,-7],[-4,-6],[-6,-7],[-7,-7],[-15,-12],[-11,-5],[-10,-5],[-10,-5],[-7,-5],[-8,-7],[-10,-8],[-14,-13],[-6,-7],[-14,-16],[-7,-5],[-9,-7],[-6,-3],[-8,-3],[-8,0],[-19,0],[-11,1],[-7,2],[-20,7],[-8,2],[-7,0],[-8,1],[-9,0],[-4,0],[-11,-1],[-15,-4],[-12,-4],[-8,-3],[-7,-5],[-7,-7],[-7,-8],[-5,-6],[-13,-12],[-6,-4],[-6,-5],[-6,-2],[-8,-2],[-25,-5],[-6,0],[-5,1],[-7,4],[-9,7],[-5,4],[-3,5],[-2,8],[-1,5],[0,9],[0,8],[7,55],[4,36],[2,21],[1,21],[0,12],[-1,9],[-3,16],[-1,7],[-2,21],[-1,11],[0,10],[1,11],[4,12],[4,11],[2,4],[5,10],[6,15],[5,13],[2,9],[1,8],[0,9],[-2,11],[-4,9],[-36,85],[-4,8],[-5,6],[-7,8],[-6,5],[-5,3],[-4,1],[-5,-1],[-6,-2],[-5,-3],[-8,-13],[-4,-8],[-5,-10],[-5,-9],[-5,-8],[-5,-10],[-7,-6],[-10,-7],[-11,-8],[-22,-14],[-8,-4],[-13,-2],[-15,-2],[-3,0],[-7,0],[-8,0],[-4,0],[-4,-2],[-6,-4],[-6,-6],[-7,-9],[-6,-10],[-6,-11],[-31,-59],[-5,-10],[-2,-3],[0,-6],[2,-7],[4,-9],[5,-9],[2,-8],[1,-9],[1,-17],[2,-62],[0,-8],[-1,-10],[-8,-21],[-4,-7],[-5,-4],[-6,-3],[-8,-1],[-22,0],[-13,2],[-30,6],[-21,4],[-10,1],[-31,7],[-5,1],[-5,3],[-7,5],[-7,4],[-8,4],[-8,3],[-9,2],[-15,3],[-10,1],[-10,1],[-6,0],[-8,-2],[-9,-3],[-10,-4],[-24,-13],[-26,-16],[-6,-3],[-7,-2],[-11,-1],[-11,2],[-10,2],[-10,4],[-8,3],[-8,1],[-3,0],[-5,1],[-7,-1],[-10,-2],[-5,-3],[-5,-4],[-5,-7],[-6,-10],[-17,-32],[-1,-5],[0,-4],[1,-6],[0,-6],[-1,-7],[-2,-7],[-3,-7],[-4,-5],[-6,-7],[-6,-6],[-4,-3],[-46,-29],[-6,-2],[-8,-3],[-7,-1],[-6,0],[-5,2],[-15,9],[-10,10],[-5,4],[-4,5],[-10,14],[-4,6],[-1,4],[-23,56],[-41,46],[-3,2],[-5,1],[-6,-1],[-14,-4],[-40,-13],[-4,-3],[-19,-18],[-4,-5],[-3,-5],[-3,-6],[-5,-14],[0,-2],[1,-8],[1,-3],[1,-3],[1,-2],[-2,-5],[-1,-2],[-6,-3],[-7,-3],[-9,-1],[-7,-1],[-4,0],[-5,1],[-6,2],[-4,4],[-4,5],[-6,8],[-6,9],[-11,18],[-5,7],[-1,3],[-1,2],[2,3],[-1,4],[0,4],[-1,4],[-3,4],[-18,19],[-4,2],[-3,2],[-2,0],[-16,-8],[-5,-3],[-8,-6],[-4,-4],[-12,-11],[-10,-10],[-2,-3],[-2,-3],[-5,-2],[-85,-38],[-4,0],[-5,3],[-5,3],[-4,4],[-4,4],[-2,3],[-2,3],[-1,5],[-1,8],[-2,5],[-3,12],[-2,5],[-3,8],[-10,19],[-23,45],[-3,2],[-4,3],[-12,5],[-4,0],[-4,0],[-7,0],[-8,-2],[-5,-2],[-2,-2],[-2,-5],[-1,-3],[-2,-4],[-7,-8],[-18,-13],[-6,-4],[-6,-2],[-18,-2],[-9,2],[-26,8],[-4,2],[-5,4],[-2,3],[-1,3],[-1,11],[-1,6],[-2,7],[-3,5],[-7,10],[-3,5],[-4,3],[-5,2],[-4,2],[-4,1],[-4,0],[-4,-2],[-4,-3],[-19,-6],[-23,-6],[-9,0],[-7,-1],[-9,1],[-3,1],[-12,4],[-3,2],[-11,6],[-26,23]],[[52455,41765],[0,-24],[-7,-462],[-2,-101],[-2,-113],[0,-36],[-2,-110],[-3,-173],[-3,-182],[0,-5],[0,-11],[0,-43],[-1,-118],[0,-14],[-3,-232],[0,-40],[0,-40],[-1,-25],[0,-25],[0,-26],[0,-27],[0,-28],[-1,-73],[-1,-72],[0,-25],[0,-26]],[[52429,39734],[-90,0],[-100,-1],[-18,0],[-137,0],[-326,-2],[-33,0],[-110,0],[-29,-1],[-53,-1],[-13,0],[-166,0],[-26,0],[-120,0],[1,20],[3,27],[-67,6],[-17,2],[-100,9],[-16,1],[-182,17],[-1,-19],[-2,-25],[-26,-346],[-12,-152],[-127,11],[-5,-71],[-3,-49],[-6,-86],[-2,-33],[-11,-124],[-44,-512],[0,-9],[-10,-110],[0,-41],[-4,-52],[-6,-62],[-5,-60],[-51,-6],[-6,-8],[-25,-18],[-13,-13],[-23,-19],[-12,-21],[-5,-11],[-7,-10],[-8,-9],[-7,-3],[-6,-7],[1,-15],[1,-12],[2,-12],[-3,-16],[3,-31],[5,-12],[7,-7],[8,-10],[3,-11],[-1,-10],[9,-13],[0,-18],[-3,-9],[-6,-7],[-9,-12],[0,-17],[-7,-26],[2,-20],[-2,-23],[-5,-15],[-2,-13],[-3,-11],[-11,-3],[-11,-4],[-9,-3],[-15,0],[-12,-3],[-8,-5],[-10,-8],[-5,-14],[0,-10],[7,-13],[11,-10],[-1,-17],[3,-9],[7,-22],[8,-8],[9,-2],[5,-10],[3,-18],[10,-20],[8,-17],[-3,-14],[-9,-1],[1,-25],[4,-8],[3,-10],[0,-11],[2,-9],[5,-8],[4,-9],[2,-14],[7,-9],[11,-3],[8,-1],[12,-3],[8,-14],[6,-17],[2,-11],[0,-13],[1,-22],[2,-14],[7,-7],[4,-17],[-8,-13],[2,-14],[5,-9],[5,-10],[5,-10],[10,-6],[-2,-11],[-6,-10],[-14,-11],[-7,-9],[-11,-5],[-7,7],[-11,-1],[-16,-10],[-23,-9],[-22,-6],[-7,-9],[-1,-12],[9,-7],[-4,-8],[-6,-17],[-5,-21],[-6,-6],[-14,-6],[-16,-5],[-8,-5],[-3,-16],[-1,-13],[5,-10],[4,-10],[7,-6],[6,-10],[11,-9],[5,-8],[3,-12],[2,-20],[5,-9],[5,-19],[1,-19],[-2,-10],[7,-13],[8,-2],[7,-5],[11,-21],[3,-10],[3,-9],[0,-11],[-3,-12],[-3,-20],[3,-13],[7,-6],[14,-11],[-1,-21],[-4,-10],[-8,-7],[-8,-5],[-11,-3],[-12,-5],[-9,-21],[-2,-13],[-1,-14],[2,-25],[11,-23],[7,-3],[9,-4],[3,-9],[-2,-12],[-5,-19],[3,-19],[-9,-10],[-30,-18],[-15,0],[-1,0],[-17,-1],[-20,0],[-6,-8],[-10,-13],[-86,-34],[-23,-9],[-74,-28],[-1,-1],[6,-2],[6,-2],[12,-2],[12,-4],[8,-3],[16,-8],[7,6],[11,2],[14,-5],[12,-7],[16,-6],[16,-6],[-1,-10],[-5,-11],[0,-22],[4,-11],[4,-10],[0,-15],[1,-10],[-1,-15],[6,-11],[9,-8],[10,-3],[10,-3],[7,-7],[4,-13],[5,-10],[13,-7],[12,1],[10,-3],[15,-2],[15,-9],[2,-16],[7,-14],[9,-8],[14,-5],[10,0],[0,-13],[5,-10],[14,-12],[11,-7],[7,-4],[21,-13],[1,-14],[-3,-10],[-9,-21],[-9,-13],[-9,-9],[-17,-12],[-9,-3],[-8,-4],[-10,-6],[-13,-4],[-9,-3],[-1,-16],[3,-21],[8,-15],[6,-6],[9,-12],[2,-9],[6,-9],[7,-8],[12,-6],[9,-8],[1,-11],[4,-10],[7,-8],[1,-11],[7,-9],[2,-10],[7,-12],[9,-13],[13,-13],[2,-11],[6,-13],[13,-9],[9,-1],[5,-11],[7,-13],[3,-20],[4,-9],[4,-10],[8,-15],[-4,-11],[-4,-11],[-8,-11],[-7,-7],[-6,-14],[-16,-1],[-5,-8],[-2,-12],[0,-9]],[[50476,35508],[-11,0],[-11,0],[-10,0],[-73,-1],[-10,0],[-13,0],[-10,0],[-92,0],[-12,0],[-11,0],[-13,0],[-59,0],[-9,0],[-19,0],[-10,0],[-9,0],[-10,0],[-16,0],[-13,0],[-22,0],[-16,0],[-12,0],[-12,0],[-19,0],[-31,0],[-17,-1],[-31,0],[-54,0],[-34,0],[-86,0]],[[49731,35506],[-101,2],[-147,0],[-34,0],[-27,-1],[-233,0],[-392,0],[-18,0],[-3,0],[-80,0],[-18,1],[-76,0],[-352,1],[-93,0],[-360,0],[-37,0],[-24,0],[-9,2],[-10,0],[-6,0],[-119,0],[-216,0],[-1,0],[-27,0],[-106,0],[-39,0],[-41,-1],[-119,0],[-14,0],[-14,0],[-6,0],[-8,0],[-125,0],[-101,0],[-79,0],[-177,-1],[-168,-1],[-11,0],[-39,0],[-86,0],[-12,0],[-38,0],[-63,-1],[-10,0],[-8,0],[-80,2],[-14,0],[-136,1],[-30,-1],[-53,1],[-104,0],[-106,0],[-24,1],[-2,0],[-49,0],[-101,0],[-129,1]],[[58803,40336],[0,-54],[-1,-163],[0,-126],[-1,-11],[0,-3],[0,-16],[0,-88],[0,-48],[0,-51],[-1,-2],[0,-13],[0,-17],[0,-10],[0,-60],[0,-4],[0,-48],[0,-9],[0,-12],[0,-15],[0,-14],[-1,-62],[0,-21],[0,-14],[0,-11],[0,-16],[0,-13],[-1,-88],[0,-14],[1,-64],[0,-71],[1,-260],[0,-20],[0,-3],[0,-23],[0,-19],[0,-15],[0,-11],[0,-24],[0,-16],[1,-22],[0,-28],[0,-4],[0,-30],[0,-29],[0,-29],[0,-1],[0,-65],[0,-2],[0,-10],[0,-5],[1,-35],[0,-6],[0,-5],[0,-12],[0,-138],[0,-23],[1,-51],[0,-38],[1,-210],[0,-17],[0,-31],[0,-41],[1,-33],[1,-48],[0,-42],[3,-147],[1,-63],[3,-182],[2,-80],[1,-99],[1,-40],[1,-28],[1,-79],[0,-1],[1,-53],[2,-91]],[[58822,36989],[-37,20],[-54,30],[-10,5],[-8,5],[-20,11],[-1,0],[-17,10],[-12,6],[-36,20],[-28,15],[-11,6],[-19,11],[-15,8],[-20,11],[-33,18],[-3,2],[-4,2],[-14,8],[-58,32],[-15,8],[-39,21],[-11,6],[-42,23],[-41,23],[-12,7],[-17,9],[-22,12],[-26,14],[-39,22],[-36,20],[-22,12],[-17,9],[-25,14],[-14,7],[-21,12],[-44,24],[-23,13],[-20,11],[-14,8],[-31,16],[-21,12],[-16,9],[-21,12],[-18,9],[-22,12],[-18,10],[-12,7],[-40,22],[-64,35],[-34,18],[-54,30],[-44,24],[-55,30],[-51,28],[-36,20],[-2,1],[-14,7],[-21,12],[-10,5],[-26,14],[-13,6],[-21,12],[-25,13],[-16,9],[-13,6],[-9,5],[-22,11],[-7,4],[-21,10],[-29,15],[-20,11],[-17,8],[-38,20],[-21,11],[-15,8],[-1,0],[-14,7],[-11,6],[-3,2],[-18,9],[-8,4],[-11,6],[-11,5],[-28,15],[-33,17],[-22,12],[-11,5],[-15,2],[-33,4],[-57,6],[-53,6],[-40,4],[-37,4],[-19,2],[-17,2],[-9,1],[-9,1],[-74,8],[-85,10],[-56,6],[-32,3],[-10,1],[-12,2],[-9,1],[-62,7],[-17,1],[-53,6],[-17,2],[-15,2],[-34,4],[-10,1],[-12,0],[-10,1],[-16,0],[-15,0],[-28,1],[-8,0],[-31,1],[-83,2],[-51,1],[-84,2],[-15,0],[-38,0],[-65,1],[-93,1],[-12,1],[-67,0],[-99,2],[-10,0],[-88,1],[-97,1],[-59,1],[-45,0],[-9,0],[-78,1],[-31,0],[-44,1],[-36,0],[-46,1],[-85,1],[-59,1],[-8,0],[-47,0],[-26,1],[-158,1],[-29,1],[-71,1],[-194,2],[-58,1],[-24,0],[-26,0],[-158,2],[-45,0],[-156,2],[-7,0],[-36,1]],[[53622,38173],[-13,0],[-170,1],[-41,0],[-8,1],[-145,1],[-8,0],[-52,1],[-73,1],[-16,0],[-56,2],[-106,1],[1,56],[0,130],[0,19],[0,45],[1,75],[0,99],[0,1],[1,38],[0,113],[0,19],[2,254],[2,157],[0,86],[0,10],[0,10],[0,34],[1,35],[0,97],[0,29],[2,108],[0,49],[0,36],[0,6],[0,45],[-26,0],[-2,0],[-123,1],[-78,1],[-70,0],[-21,1],[-22,0],[-46,0],[-16,0],[-35,0],[-35,-1],[-41,0]],[[98468,41329],[8,-2],[9,2],[6,-9],[5,-5],[4,-4],[2,-3],[3,-6],[6,-10],[2,-7],[1,-4],[-1,-8],[-3,-1],[-6,0],[-5,3],[-4,3],[-3,2],[-5,4],[-3,1],[-10,-2],[-6,-4],[-2,-5],[1,-9],[3,-5],[5,-8],[8,-1],[3,1],[4,3],[4,-7],[6,-8],[4,-8],[-5,-3],[-2,-2],[-8,2],[-4,1],[-7,1],[-4,-1],[-4,-1],[-6,2],[-3,5],[3,6],[-1,2],[-3,3],[-3,-1],[-3,-5],[1,-9],[-3,-15],[-2,-9],[-2,-3],[-5,-6],[-5,-5],[1,-4],[6,-3],[3,0],[5,-2],[4,-3],[4,-2],[-1,-3],[-4,-5],[-7,-3],[-2,-2],[-7,-6],[-2,-3],[-2,-5],[-1,-5],[2,-8],[9,-5],[6,-5],[0,-4],[1,-5],[-2,-2],[-5,-10],[-1,-4],[-2,-10],[-6,-6],[-8,5],[-5,10],[-8,7],[-9,-3],[-6,-4],[-3,-3],[-4,-5],[-3,-4],[-3,-8],[0,-11],[0,-15],[4,0],[3,1],[4,0],[-8,-4],[3,-9],[11,-8],[3,-11],[-5,-10],[-14,0],[-4,-1],[-7,-5],[-1,-11],[6,-10],[7,-5],[6,-7],[6,-4],[5,2],[4,1],[5,13],[7,8],[2,-1],[5,-2],[-1,-5],[-4,-24],[-1,-10],[1,-11],[-3,-9],[-4,4],[-3,-2],[-7,-7],[-3,-3],[-3,-8],[5,-10],[7,-6],[7,-7],[3,-10],[-5,0],[-4,-2],[-3,-4],[-3,-6],[-3,-4],[-2,-5],[-1,-9],[3,-5],[7,-3],[6,1],[5,1],[6,1],[8,1],[2,0],[2,3],[2,6],[5,9],[6,8],[6,7],[10,1],[4,-8],[0,-12],[8,-8],[9,-2],[4,-9],[-1,-11],[-11,-4],[-8,-2],[-7,-1],[-3,0],[-7,2],[-6,5],[-2,3],[-2,4],[-2,-2],[-5,-3],[0,-4],[0,-5],[0,-8],[0,-4],[-2,-9],[2,-10],[1,-3],[3,-7],[8,-4],[7,5],[8,0],[0,-5],[1,-3],[-1,-3],[-4,-5],[0,-3],[0,-7],[-1,-4],[0,-5],[-2,-7],[-1,-3],[-1,-6],[-2,-5],[-1,-4],[7,-8],[4,-1],[4,-1],[6,1],[4,1],[2,3],[5,7],[2,1],[4,0],[0,-5],[-1,-4],[-2,-6],[-3,-7],[-1,-7],[0,-4],[1,-5],[4,-8],[6,-8],[3,-4],[4,-2],[5,-1],[3,0],[4,3],[3,3],[3,4],[5,4],[2,2],[4,-2],[3,-1],[-1,-6],[-1,-3],[-6,-8],[-6,-6],[-5,-6],[-2,-4],[-2,-12],[0,-6],[0,-3],[1,-8],[0,-2],[2,-8],[1,-4],[4,-7],[3,-2],[6,-2],[-7,-6],[-5,-11],[-3,-26],[-8,-9],[-8,-6],[-8,-8],[-5,-8],[-3,-9],[-2,-9],[0,-1],[0,-11],[2,-9],[2,-8],[2,-6],[0,-3],[2,-8],[0,-5],[-2,-12],[-6,-7],[-7,-5],[-8,-7],[-3,-10],[9,0],[14,7],[8,6],[4,4],[4,3],[5,4],[5,7],[7,10],[2,5],[4,4],[3,3],[6,4],[10,3],[9,-1],[7,-5],[5,-9],[3,-24],[3,-9],[3,-9],[1,-4],[2,-8],[2,-7],[1,-5],[1,-6],[1,-6],[2,-6],[3,-5],[2,-3],[5,-3],[8,-1],[3,1],[5,2],[9,1],[7,-3],[-3,-7],[-4,-8],[-17,-30],[-6,-6],[-5,-6],[-14,1],[-4,2],[-6,6],[-1,1],[0,1],[-5,9],[-12,12],[-13,0],[-6,-4],[-3,-6],[0,-1],[-2,-17],[-4,-24],[0,-25],[0,-1],[0,-10],[1,-5],[0,-2],[4,-11],[4,-13],[0,-9],[0,-11],[0,-4],[-1,-3],[-1,-1],[-9,-8],[-29,-1],[-4,-2],[-4,-4],[-2,-2],[-2,-3],[0,-2],[2,-10],[5,-6],[14,-8],[16,-19],[1,-1],[2,-7],[0,-4],[-1,-15],[-6,-13],[-10,-11],[-15,-4],[-20,1],[-12,-4],[-2,-3],[-8,-7],[-2,-2],[-7,-16],[-5,-12],[-5,-24],[-8,-21],[-21,-22],[-30,-22],[-10,-10],[-2,-4],[-1,-20],[1,-1],[7,-26],[4,-16],[-1,-26],[-4,-7],[-9,-15],[0,-2],[-44,56],[-7,8],[-23,-28],[10,-33],[65,-49],[28,-41],[34,-37],[0,-2],[0,-5],[19,-1],[55,-1],[46,-1],[1,-23],[1,-10],[2,-32],[1,-26],[-11,-15],[-15,-20],[-24,-10],[-41,11],[-3,27],[-4,23],[-10,51],[-23,1],[-9,-20],[-2,-4],[-2,-47],[-5,-18],[-8,-18],[0,-5],[-11,-22],[-6,-5],[-7,-8],[-44,-36],[-4,-5],[-37,-47],[-8,-11],[-9,-11],[-5,-11],[-4,-10],[-2,-7],[-2,-7],[-1,-2],[-2,-7],[-2,-10],[-2,-12],[0,-10],[0,-8],[-2,-39],[-12,-21],[-15,-15],[-16,-9],[-77,-37],[-18,-32],[-6,-6],[-12,-16],[-14,-16],[-11,-15],[-13,-16],[-9,-13],[-7,-10],[-9,-15],[-3,-15],[-1,-8],[-1,-9],[-3,-6],[-3,-5],[-6,-5],[-7,-6],[-10,-4],[-17,0],[-13,-1],[-16,-5],[-14,-6],[-11,-6],[-5,-3],[-2,-1],[-41,-25],[3,-12],[-2,-2],[-3,-4],[-5,-8],[-5,-11],[-5,-20],[-6,-25],[-7,-25],[-7,-22],[-8,-19],[-13,-25],[-18,-29],[-12,-19],[-12,-18],[-7,-13],[-8,-13],[-10,-20],[-12,-25],[-1,-3],[-9,-24],[-10,-38],[-9,-30],[-8,-37],[-6,-24],[-4,-18],[-8,-36],[-4,-31],[-5,-37],[-5,-26],[-4,-25],[-3,-16],[-6,-21],[-13,-34],[-19,-44],[-5,-11],[-23,-49],[-21,-45],[-19,-43],[-23,-42],[-19,-33],[-18,-33],[-18,-27],[-17,-25],[-15,-20],[-6,-9],[-6,-8],[-7,-8],[-6,-10],[-9,-11],[-9,-12],[-9,-12],[-7,-9],[-14,-16]],[[97362,37773],[5,19],[3,15],[5,19],[7,27],[4,14],[19,81],[16,68],[17,74],[16,79],[5,27],[5,26],[5,35],[4,28],[3,22],[4,42],[2,29],[-1,69],[-2,27],[-5,38],[-6,27],[-7,24],[-10,30],[-3,9],[-5,13],[-4,6],[-7,13],[-8,15],[-8,15],[-9,14],[-8,11],[-1,2],[-8,9],[-9,10],[-9,9],[-6,6],[-13,12],[-1,5],[-4,15],[-3,9],[-2,9],[-4,16],[-4,14],[-2,4],[-2,4],[-9,11],[-18,8],[-9,3],[-9,5],[-31,10],[-14,6],[-2,1],[-6,3],[-20,2],[-26,3],[-37,5],[-14,2],[-13,4],[-14,4],[-30,7],[-34,8],[-11,1],[-20,3],[-17,3],[-8,1],[-15,15],[-16,17],[-16,37],[-23,22],[-8,7],[-12,0],[-12,0],[-9,0],[-13,-5],[-8,-4],[-8,-5],[-10,-6],[-9,-5],[-43,-17],[-8,-4],[-70,32],[-9,4],[-50,22],[-37,28],[-11,8],[-3,13],[-4,14],[-4,15],[-13,59],[-24,15],[-9,0],[-11,-1],[-8,0],[-14,-1],[-14,-1],[-10,-6],[-8,-4],[-8,-5],[-9,-5],[-24,-12],[-46,-8],[-11,18],[6,42],[14,44],[-19,17],[-23,-2],[-45,-48],[-36,-31],[-8,5],[-5,3],[-10,7],[-2,9],[0,2],[-6,22],[7,56],[6,13],[3,11],[1,9],[0,13],[-7,9],[-12,8],[-6,0],[-7,0],[-17,2],[-22,-15],[-23,-7],[-13,0],[-19,6],[-25,6],[-28,-6],[-14,-12],[-8,-9],[-18,-14],[-10,-1],[-12,4],[-6,6],[-2,4],[-5,8],[-7,56],[-3,10],[-1,3],[-2,8],[-6,15],[-3,7],[-8,27],[5,25],[18,24],[20,14],[12,35],[-7,30],[-4,11],[-9,18],[-3,5],[1,17],[15,14],[9,8],[9,8],[-2,22],[-18,11],[-24,-4],[-11,-11],[-8,-8],[-13,-9],[-9,-5],[-27,3],[-8,1],[-7,7],[-7,6],[-12,11],[0,2],[-7,20],[-6,18],[9,19],[1,15],[-20,20],[-6,14],[-11,8],[-20,-6],[-11,-3],[-3,-11],[-12,-15],[-3,1],[-8,1],[-33,16],[-15,5],[-15,3],[-13,2],[-10,1],[-13,-4],[-9,-3],[-9,-3],[-8,-3],[-13,-3],[-17,-1],[-19,0],[-12,7],[-6,7],[-5,14],[-7,9],[-12,5],[-7,3],[-8,4],[-5,2],[-3,1],[-23,19],[-3,9],[0,3],[1,9],[5,7],[9,3],[31,3],[9,11],[-4,25],[-15,4],[-22,-14],[-15,4],[21,35],[1,3],[4,10],[1,1],[3,10],[4,11],[10,22],[6,19],[2,13],[0,5],[0,6],[8,1],[9,-5],[1,-1],[6,-3],[9,1],[11,1],[12,8],[9,9],[4,10],[9,23],[20,23],[5,19],[-3,19],[-21,31],[-11,26],[-3,21],[-6,24],[-28,17],[-23,14],[-7,4],[-9,2],[-33,4],[-9,8],[-8,7],[-10,11],[-7,7],[-11,12],[-21,3],[-21,-9],[-9,-3],[-9,-2],[-11,4],[-6,6],[2,17],[14,6],[15,1],[15,4],[12,15],[1,22],[-14,14],[-31,11],[-23,1],[-11,8],[-16,16],[-2,13],[-2,15],[3,28],[-14,34],[-4,22]],[[82528,39884],[-10,-6],[-8,2],[-7,-7],[-7,-2],[-10,-3],[-5,-8],[4,-10],[-6,-8],[-11,-6],[-9,-4],[-10,1],[-8,3],[-9,1],[-4,-9],[1,-11],[-3,-9],[-8,1],[-6,6],[-10,3],[-7,-4],[-8,-4],[-11,2],[-9,-1],[-23,-2],[-11,-1],[-6,7],[-3,9],[-7,6],[-8,2],[-6,5],[-8,-3],[-8,-6],[-9,-4],[-9,-3],[-8,-3],[-6,7],[-1,10],[-9,4],[-11,6],[-9,7],[-9,9],[-3,9],[3,12],[2,10],[4,9],[4,9],[1,11],[0,10],[-5,8],[-7,7],[-10,4],[-2,9],[-2,9],[-3,13],[-9,-1],[-9,-1],[-7,4],[-3,10],[-8,3],[-13,-2],[-12,-1],[-10,3],[-8,2],[-2,15],[-10,6],[-11,5],[-11,3],[-8,6],[-5,7],[-3,9],[0,10],[3,13],[3,12],[-5,8],[-6,6],[-11,12],[-12,6],[-8,8],[-1,11],[-6,9],[-8,1],[-9,-1],[-11,3],[0,12],[4,11],[-6,7],[-6,6],[-10,-7],[-7,-4],[-7,-2],[-12,-3],[-9,7],[-2,10],[-4,8],[-7,-3],[-3,-10],[-5,-8],[-4,-10],[-12,0],[-8,6],[-11,1],[-10,-3],[-8,-5],[-8,-5],[-7,4],[-8,6],[-9,1],[-130,73],[0,10],[-5,8],[-6,9],[-8,3],[-8,0],[-9,-1],[-7,8],[-6,13],[-7,5],[-4,9],[-6,6],[-10,2],[-7,7],[-1,10],[1,11],[-8,1],[-9,4],[-3,10],[2,10],[-2,10],[-7,-4],[-8,-2],[-7,5],[-5,8],[-6,9],[-8,1],[-7,4],[-8,-5],[-7,-7],[-6,7],[-7,6],[-7,-6],[-6,5],[-7,6],[-8,-3],[-7,-6],[-8,-3],[-7,8],[2,9],[-7,5],[-6,6],[-8,7],[-9,6],[-5,9],[0,10],[-2,9],[-4,9],[-7,6],[2,10],[-7,5],[-5,9],[-9,1],[-8,5],[-8,3],[-6,6],[-2,9],[-8,5],[-2,10],[-6,6],[-7,8],[-7,5],[-9,5],[-7,7],[-7,4],[-9,0],[19,-67],[8,-25],[4,-14],[20,-70],[54,-185],[63,-215],[17,-58],[10,-35],[54,-180],[3,-10],[6,-20],[2,-10],[11,0],[0,-13],[1,-16],[1,-14],[15,0],[12,-1],[0,-11],[0,-10],[-1,-10],[2,-14],[-1,-13],[1,-15],[0,-11],[0,-1],[1,-9],[53,-179],[35,-119],[16,-54],[39,-131],[63,-206],[5,-15],[6,-17],[4,-14],[26,-84],[4,-10],[-9,-4],[11,-38],[39,-131],[73,-250],[33,-110],[0,-1],[13,-45],[39,-137],[37,-125],[3,-15],[41,-135],[39,-136],[23,-78],[17,-57],[8,-24],[29,-111],[21,-76],[2,-6],[1,-4],[16,-55],[1,-4],[2,-8],[6,-22],[1,-3],[5,-11],[2,-9],[3,-12],[3,-14],[3,-9],[3,-10],[3,-9],[3,-10],[1,-3]],[[82354,37053],[-22,-10],[-12,-5],[-10,-6],[-11,-5],[-1,0],[-21,-10],[-7,-3],[-11,-5],[-23,-12],[-29,-13],[-77,-36],[-11,-5],[-12,-7],[-93,-43],[-8,-4],[-11,-4],[-87,-42],[-128,-56],[-46,-21],[-97,-46],[-146,-70],[-64,-31],[-23,-11],[-70,-2],[-85,-1],[1,-25],[0,-10],[2,-67],[0,-5],[0,-5],[-12,1],[-38,-1],[-9,0],[-77,-1],[-85,-1],[-2,0],[-53,-2],[-11,0],[-91,-1],[-21,0],[-17,0],[-24,0],[-19,0],[-11,-1]],[[80782,36487],[-2,12],[-7,17],[-4,8],[-11,12],[-6,8],[-9,15],[-8,10],[-7,8],[-1,13],[11,14],[9,7],[8,7],[12,11],[9,8],[11,11],[8,9],[4,11],[4,10],[3,19],[2,22],[-2,19],[-17,49],[-22,67],[-10,35],[-1,4],[-3,11],[-6,11],[-1,2],[-9,9],[-15,11],[-11,13],[-8,18],[2,29],[7,34],[4,32],[0,29],[-7,27],[-14,21],[-22,32],[-15,19],[-7,7],[-10,1],[-11,-6],[-10,-11],[-7,-9],[-6,-9],[-14,-5],[-11,8],[-5,11],[-4,15],[-5,13],[-10,13],[-19,9],[-15,2],[-25,-2],[-15,-9],[-19,-8],[-21,-5],[-19,-1],[-20,3],[-38,15],[-43,21],[-22,4],[-18,3],[-26,1],[-7,2],[-5,10],[-2,16],[9,20],[6,15],[7,11],[13,27],[2,17],[1,11],[4,24],[-9,15],[-8,-4],[-20,-14],[-11,-10],[-10,-14],[-9,-6],[-11,-1],[-10,7],[-12,16],[-12,20],[-11,15],[-15,16],[-29,35],[-12,25],[0,2],[-6,26],[2,8],[4,16],[20,32],[7,8],[32,21],[17,10],[7,4],[8,-1],[15,0],[9,3],[13,2],[8,4],[10,7],[9,9],[-3,7],[-2,6],[-24,15],[-20,10],[-16,13],[-11,32],[-8,40],[-5,43],[3,16],[15,17],[16,4],[33,0],[8,0],[9,3],[11,4],[11,3],[-10,0],[10,4],[23,9],[21,25],[2,12],[2,12],[-13,19],[-30,-2],[-13,-5],[-10,-4],[-11,0],[-13,-1],[-11,10],[-12,23],[-8,13],[-5,9],[-25,9],[-23,8],[-24,10],[-32,25],[-8,7],[-11,16],[-6,11],[-2,11],[0,19],[0,12],[1,10],[3,10],[7,12],[5,11],[26,20],[32,19],[8,7],[12,11],[5,15],[-1,11],[-6,14],[-17,39],[-20,59],[-5,9],[-23,7],[-19,12],[-11,3],[-15,6],[-11,9],[-8,11],[-4,13],[-1,16],[5,19],[10,16],[11,13],[6,6],[6,9],[7,8],[5,15],[12,24],[16,7],[22,-13],[39,-38],[14,-13],[7,-5],[17,-11],[14,-3],[18,1],[9,0],[13,9],[5,20],[-12,16],[-6,8],[-4,20],[4,14],[-4,16],[-1,9],[-8,12],[-6,8],[-6,10],[-22,3],[-37,-3],[-29,-6],[-12,1],[-21,17],[-14,20],[-3,13],[-5,19],[-6,13],[-1,11],[4,13],[6,10],[17,12],[18,-13],[23,-22],[22,-19],[24,-11],[10,-2],[21,-4],[25,2],[9,0],[15,-1],[12,-1],[6,-5],[10,-7],[15,0],[17,16],[-2,16],[-13,10],[-25,8],[-18,7],[-16,9],[-3,9],[0,11],[18,32],[23,25],[10,13],[3,16],[-7,14],[-12,16],[-17,25],[-13,26],[-8,30],[-3,32],[-2,21],[-2,13],[11,30],[3,13],[2,9],[3,10],[9,5],[13,0],[11,-13],[8,-10],[9,-9],[11,-13],[13,-9],[9,1],[7,2],[13,6],[8,5],[14,21],[4,9],[1,11],[-6,20],[-8,15],[-15,25],[-19,38],[-10,30],[-11,41],[-8,29],[-9,14],[-6,7],[-17,4],[-8,1],[-8,-1],[-16,-10],[-12,-11],[-12,-7],[-16,-2],[-18,9],[-15,14],[-8,21],[-3,12],[12,13],[17,4],[16,9],[8,10],[1,14],[-3,23],[-16,36],[-5,9],[-1,1],[-6,13],[-7,13],[-20,24],[-13,10],[-11,6],[-15,0],[-16,3],[-25,16],[-12,7],[-24,9],[-36,10],[-18,7],[-15,8],[-28,26],[-12,12],[-3,17],[1,10],[1,11],[3,25],[-2,11],[-4,6],[-5,6]],[[97362,37773],[-5,-9],[-9,-10],[-8,-8],[-6,-6],[-6,-7],[-7,-8],[-7,-6],[-10,-8],[-11,-12],[-9,-7],[-6,-5],[-7,-5],[-6,-5],[-7,-5],[-8,-6],[-7,-5],[-7,-5],[-11,-8],[-8,-5],[-12,-6],[-45,-22],[-18,-10],[-22,-13],[-28,-20],[-6,-4],[-37,-27],[-25,-20],[-14,-11],[-22,-19],[-58,-55],[-19,-18],[-20,-21],[-49,-57],[-22,-39],[-18,-47],[-9,-63],[5,-63],[13,-50],[3,-13],[31,-42],[53,-38],[57,-39],[51,-35],[21,-14],[24,-27],[4,-4],[1,-2],[6,-8],[1,-1],[1,-1],[0,-1],[2,-3],[9,-13],[4,-13],[2,-8],[3,-8],[1,-4],[0,-3],[0,-1],[0,-2],[1,-2],[-3,-6],[-5,-13],[-2,-4],[-6,-14],[-4,-21],[-2,-11],[-1,-7],[0,-5],[1,-2],[1,-9],[1,-9],[3,-18],[0,-3],[1,-7],[3,-9],[5,-11],[6,-9],[9,-10],[8,-7],[9,-1],[12,-6],[4,-2],[11,-4],[16,-5],[6,-3],[19,-7],[19,-7],[17,-6],[15,-8],[8,-8],[7,-6],[2,-3],[7,-13],[3,-10],[1,-5],[5,-9],[7,-14],[2,-2],[9,-20],[9,-18],[7,-13],[3,-5],[7,-10],[9,-17],[13,-19],[13,-20],[4,-6],[6,-10],[6,-11],[12,-19],[10,-16],[15,-25],[7,-11],[9,-15],[13,-23],[15,-22],[12,-21],[4,-7],[11,-17],[8,-16],[5,-8],[-2,-48],[-1,-33],[10,-20],[-5,-25],[-28,-2],[-20,2],[-22,0],[-28,-5],[-35,-4],[-22,-3],[-19,-1],[-14,0],[-19,10],[-33,11],[-26,-17],[-23,0],[-25,1],[-19,4],[-25,3],[-34,4],[-22,3],[-17,-3],[-12,7],[-31,-2],[-35,2],[-31,3],[-17,1],[-21,1],[-19,2],[-22,2],[-28,3],[-27,0],[-35,2],[-17,2],[-16,1],[-17,0],[-25,2],[-37,2],[-14,0],[-21,0],[-23,0],[-21,0],[-17,7],[-11,-3],[-16,3],[-16,-1],[-34,0],[-26,-2],[-33,-3],[-19,-1],[-28,-3],[-31,-3],[-23,0],[-33,-2],[-40,-3],[-18,-1],[-29,-4],[-18,-3],[-24,-2],[-18,-1],[-22,-4],[-23,-6],[-37,-8],[-21,-6],[-28,-7],[-23,-5],[-32,-8],[-28,-7],[-18,-7],[-24,-6],[-31,-10],[-32,-9],[-18,-5],[-15,-5],[-18,-6],[-17,-5],[-20,-6],[-26,-9],[-14,-4],[-38,-14],[-44,-15],[-39,-15],[-35,-13],[-40,-17],[-21,-9],[-26,-10],[-18,-8],[-19,-8],[-27,-12],[-32,-14],[-41,-17],[-117,-37],[-23,-14],[-21,-9],[-20,-20],[-45,-23],[-19,-9],[-31,-15],[-14,-6],[-27,-13],[-21,-10],[-23,-11],[-25,-12],[-15,-7],[-6,-3],[-96,-46],[-46,-24],[-24,-12],[-23,6],[-14,-21],[-10,-1],[-13,-1],[-19,-21],[-11,-5],[-20,-9],[-21,-11],[-33,-16],[-24,-11],[-16,-8],[-20,-9],[-30,-14],[-24,-12],[-21,-10],[-22,-10],[-19,-9],[-18,-9],[-21,-10],[-20,-10],[-20,-10],[-25,-12],[-14,-7],[-18,-4],[-25,-1],[-4,-17],[-16,-7],[-18,-11],[-18,-7],[-20,-3],[-18,-15],[-21,-11],[-30,-14],[-38,-19],[-16,-8],[-17,-8],[-14,-7],[-32,-9],[-20,-14],[-11,-8],[-27,-13],[-27,-7],[-22,-17],[-27,-12],[-19,-9],[-26,-13],[-16,-7],[-18,-8],[-25,-12],[-35,-17],[-23,-10],[-21,-11],[-24,-11],[-24,-11],[-18,-8],[-26,-11],[-16,-5]],[[93558,34925],[3,43],[0,4],[1,39],[2,32],[0,48],[0,10],[0,18],[0,19],[-1,10],[0,20],[0,16],[0,35],[-1,20],[0,41],[-1,64],[-1,43],[0,9],[0,3],[-1,80],[1,45],[0,10],[-1,33],[-1,45],[0,13],[0,13],[0,27],[-1,46],[0,10],[0,16],[-1,51],[0,23],[-1,107],[-1,47],[-1,65],[0,19],[0,36],[-1,69],[-1,79],[-1,38],[0,81],[-1,33],[-1,94],[0,15],[0,22],[0,35],[-1,78],[-1,49],[0,18],[-1,24],[0,22],[-1,71],[-1,71],[0,22],[-1,78],[0,11],[0,46],[-1,35],[-2,90],[0,13],[0,20],[0,21],[0,44],[-1,68],[-1,25],[0,41],[0,2],[0,17],[-1,27],[-1,16],[0,21],[0,30],[0,23],[-1,14],[1,16],[0,13],[-1,34],[0,11],[0,59],[-1,9],[0,15],[0,3],[0,14],[-1,18],[-1,108],[-1,21],[0,26],[0,14],[0,45],[-1,29],[-37,0],[-19,0],[-15,1],[-25,0],[-26,0],[-9,0],[-24,0],[-14,-1],[-70,0],[-17,0],[-31,0],[-61,-1],[-13,0],[-70,-1],[-18,0],[-9,-1],[-20,0],[-30,0],[-39,-1],[-72,0],[-10,0],[-12,1],[0,23]],[[88862,36046],[-34,-22]],[[88828,36024],[-12,15],[-9,15],[-4,22],[17,11],[17,9],[17,-16],[18,-18],[-2,-11],[-8,-5]],[[88827,36118],[-27,-7],[-22,18],[-23,24],[-22,26],[-24,17],[22,12],[24,2],[21,-7],[19,-13],[26,-16],[20,-33],[-14,-23]],[[88385,36308],[-23,-4],[-25,8],[-12,23],[-12,19],[-5,22],[6,21],[10,20],[-11,20],[-1,28],[18,12],[21,4],[15,-1],[22,-1],[31,-6],[27,-14],[8,-24],[0,-23],[-1,-28],[0,-24],[-3,-34],[-17,-15],[-20,-2],[-28,-1]],[[88141,36847],[-35,-15],[-4,8],[-15,-9],[-16,-9],[-17,6],[0,11],[0,10],[14,6],[15,0],[9,5],[-5,10],[19,2],[11,1],[31,2],[13,-8],[-20,-20]],[[87973,36991],[60,-3],[28,1],[-13,-39],[-2,-57],[-18,-41],[-52,-10],[-42,31],[-22,-9],[-16,-15],[-13,72],[18,42],[50,20],[22,8]],[[88792,37953],[-9,-1],[-8,3],[-6,-7],[6,-10],[1,-9],[7,-4],[9,2],[5,9],[9,2],[9,1],[-3,-8],[-4,-10],[-4,-9],[10,1],[8,-2],[-7,-7],[-8,-2],[-1,-10],[7,-5],[8,2],[0,-11],[-1,-10],[5,-9],[1,-13],[0,-9],[-7,-5],[-2,-10],[5,-8],[-4,-9],[7,-6],[2,-9],[7,-7],[10,-4],[7,-7],[1,-2],[3,-6],[8,-4],[4,-11],[0,-11],[7,-5],[6,-9],[7,-6],[1,-1],[9,-6],[9,-4],[8,-4],[9,-3],[8,-3],[9,-3],[4,0],[5,0],[8,0],[6,-6],[8,2],[8,0],[10,-13],[7,-7],[8,3],[8,3],[8,-2],[6,-7],[3,-12],[5,-8],[7,-8],[7,-4],[1,-10],[4,-8],[2,-11],[0,-12],[8,-6],[10,-3],[-9,-5],[-4,-9],[10,-3],[10,0],[8,-4],[12,-1],[8,-4],[-3,-9],[-3,-9],[-9,0],[-1,-2],[-4,-8],[-1,-10],[-4,-8],[8,-6],[9,-2],[9,-1],[6,7],[2,1],[1,14],[8,4],[8,-6],[3,-13],[-3,-9],[-5,-7],[4,-9],[-11,-3],[2,-10],[8,-5],[7,-1],[6,8],[7,9],[8,7],[-2,9],[9,4],[7,-6],[7,-7],[1,-11],[3,-11],[8,7],[8,2],[-1,-10],[7,-5],[6,9],[8,6],[6,8],[7,-6],[6,-6],[1,-10],[-4,-8],[7,-4],[8,2],[5,-10],[9,-6],[6,7],[-4,10],[10,1],[10,-3],[1,-10],[10,-1],[7,8],[3,-10],[6,-8],[6,-7],[2,-1],[5,-4],[8,-6],[7,-8],[2,-9],[-10,3],[-3,-10],[-6,-8],[4,-8],[-1,-10],[-1,-4],[-1,-1],[-1,-5],[-5,-10],[-1,-10],[2,-11],[1,-11],[6,-7],[8,0],[-1,-11],[-9,-2],[-7,-2],[3,-10],[-8,-5],[0,11],[-9,2],[-4,-8],[6,-8],[2,-10],[-10,-1],[6,-11],[1,-9],[-9,-4],[-6,-6],[-6,-6],[-4,-9],[-8,-6],[2,-11],[-4,-8],[-8,1],[-8,-5],[-14,3],[-9,0],[-6,-8],[5,-11],[-1,-13],[-6,-7],[5,-11],[-4,-10],[-8,-7],[4,-9],[10,-3],[11,-4],[8,5],[2,-11],[-7,-8],[-7,-2],[10,-6],[7,-10],[6,-11],[6,-7],[-7,-9],[7,-8],[-3,-10],[0,-11],[-2,-10],[-9,-5],[-8,-2],[-6,-9],[10,-7],[2,-10],[-2,-11],[3,-10],[-4,-11],[0,-10],[8,-4],[9,0],[7,-5],[5,-9],[3,-12],[-5,-9],[-9,2],[4,-8],[7,-7],[9,-4],[8,-4],[7,-10],[-1,-13],[-9,-4],[-12,6],[-17,-10],[-5,-9],[4,-13],[5,-11],[1,-12],[-5,-12],[1,-26],[-2,-12],[-10,-6],[-25,1],[-18,-21],[-15,-10],[-8,-3],[-9,-10],[-3,-16],[0,-17],[7,-22],[3,-33],[2,-12],[2,-9],[-3,-10],[-8,-10],[-8,-5],[-7,-11],[-6,-8],[-9,-8],[-7,-5],[-9,-7],[-6,-7],[-3,-10],[-9,-15],[-9,-13],[-4,-10],[-6,-6],[-7,-6],[-5,-15],[1,-16],[-7,-14],[-10,-13],[-6,-7],[-3,-9],[5,-11],[8,-8],[6,-9],[8,-5],[14,4],[14,5],[14,4],[9,3],[10,-1],[8,-2],[4,-11],[-6,-11],[-9,-10],[-2,-12],[2,-9],[4,-12],[1,-9],[5,-13],[6,-8],[18,-2],[12,-1],[15,-1],[9,-11],[-5,-14],[-7,-5],[-7,-6],[-11,-1],[-6,-6],[-1,-15],[10,-8],[8,-2],[15,0],[7,5],[4,12],[7,7],[14,2],[10,-1],[7,-6],[9,-3],[9,4],[9,-1],[1,-12],[-5,-16],[-7,-7],[-7,-5],[-17,-5],[-7,-6],[-4,-8],[2,-16],[11,-16],[3,-9],[-2,-15],[-4,-10],[-9,-10],[-6,-8],[-13,-10],[-22,-14]],[[89198,36050],[8,34],[-15,10],[-25,-8],[5,-39],[-20,-19],[-18,6],[-13,10],[10,33],[-3,27],[2,21],[-1,24],[-12,23],[-17,9],[-13,12],[-10,14],[-28,7],[-22,1],[-39,0],[-16,0],[-24,5],[-38,7],[-26,3],[-25,9],[-22,16],[-9,27],[-27,26],[-29,7],[-20,-5],[-27,0],[4,28],[-11,13],[-2,2],[13,20],[8,24],[2,26],[-20,3],[-12,6],[-9,-19],[17,-21],[-8,-20],[-8,-20],[-3,-10],[-16,-20],[-7,28],[-19,-6],[-16,-13],[-11,5],[-12,6],[40,31],[-26,20],[-33,31],[-60,3],[-16,-26],[0,-44],[2,-23],[-18,-37],[-4,18],[-5,19],[4,30],[3,27],[8,25],[-15,21],[-10,26],[2,28],[-4,37],[-32,1],[-16,4],[-10,25],[-3,33],[11,21],[-20,42],[-17,18],[-22,20],[-28,4],[-32,-6],[-15,-9],[-14,-9],[-17,-23],[-12,-14],[-16,18],[-8,19],[3,22],[13,17],[12,20],[-7,29],[20,7],[33,23],[14,19],[-6,29],[8,29],[-2,25],[-7,25],[-13,33],[-16,10],[-12,-1],[-18,8],[-23,5],[-30,-11],[-34,-1],[1,20],[0,2],[-32,22],[20,20],[20,-3],[10,44],[-1,20],[2,2],[24,20],[0,46],[-39,56],[-29,29],[-5,39],[-17,13],[-33,-2],[-24,5],[-14,-10],[-26,-23],[4,54],[30,34],[-3,34],[21,20],[-1,3],[-3,5],[-35,-6],[-12,-46],[-10,3],[0,26],[-27,-9],[-7,-29],[-16,2],[-42,36],[-1,-31],[6,-27],[8,-27],[-19,-29],[6,-73],[33,-39],[9,-1],[45,-9],[56,-7],[70,-3],[20,-29],[1,-9],[4,-21],[-29,-34],[-31,20],[-37,4],[-57,-22],[-66,-21],[-56,-7],[-11,-66],[-4,-57],[-5,-29],[24,-44],[21,-12],[8,11],[24,2],[18,-11],[-17,-31],[-4,-29],[-4,-10],[-3,-8],[-15,-23],[-28,-12],[-20,-18],[-35,2],[22,-16],[-10,-26],[-27,-24],[-61,-19],[-50,-25],[-39,-20],[-37,0],[-18,20],[-33,0],[-46,3],[-13,0],[-18,4],[-25,0],[-20,17],[1,23],[-25,14],[-11,0],[-49,32],[-14,2],[-11,2],[2,-8],[4,-13],[27,-25],[32,-21],[59,-59],[41,5],[17,-3],[46,-9],[64,-13],[56,0],[37,27],[41,24],[47,3],[28,20],[24,39],[18,-13],[21,5],[-10,22],[1,31],[25,17],[19,26],[10,21],[10,37],[24,19],[27,5],[11,-3],[7,-1],[15,-10],[11,-9],[21,-14],[24,-29],[15,-24],[13,-34],[11,-27],[6,-39],[-28,-9],[9,-21],[21,-12],[17,-23],[17,-28],[21,-24],[-12,-17],[11,-8],[26,17],[19,-14],[-16,-26],[-8,-26],[-15,-21],[-14,-23],[-6,-24],[1,-30],[3,-23],[8,-20],[17,-12],[20,-7],[20,-3],[17,-4],[20,-2],[48,3],[21,2],[14,-5],[19,-24],[30,-19],[8,1],[10,-13],[8,-11],[-16,-18],[0,-81],[32,-27],[10,139],[-19,-2],[0,4],[0,15],[13,23],[16,-8],[8,-4],[25,-13],[26,-7],[19,-3],[33,-5],[31,-13],[15,-22],[17,-17],[15,-14],[21,-16],[16,-28],[-19,-21],[-25,-4],[-41,-7],[-12,22],[-25,14],[-30,-8],[7,-64],[55,19],[87,10],[18,-8],[16,1],[18,-7],[7,-28],[-27,-26],[-22,-19],[-19,-18],[-14,-11],[-8,-5],[-7,-8],[-6,-13],[-49,-40],[-4,-7],[-12,-17],[-8,-9],[-12,-20],[-5,-12],[-5,-9],[-7,-16],[-6,-10],[-4,-9],[-6,-10],[-4,-11],[-6,-15],[-5,-13],[-3,-11],[-2,-9],[-3,-14],[-4,-13],[-3,-10],[-4,-11],[-1,-13],[2,-15],[1,-10],[2,-11],[2,-11],[3,-11],[5,-9],[4,-10],[5,-7],[24,-31],[6,-11],[7,-9],[12,-10],[14,-14],[12,-11],[7,-5],[8,-8],[8,-3],[7,-6],[14,-12],[-136,-9],[-43,-2],[-31,-14],[0,-39],[40,-1],[18,-15],[-7,30],[16,15],[45,4],[51,1],[75,2],[18,-10],[19,-20],[5,-9],[12,-15],[7,-11],[5,-8],[14,-27],[-6,-22],[-5,-10],[-5,-13],[-11,-18],[-8,-14],[-7,-12],[-9,-17],[-19,-21],[-10,-10],[-7,-4],[-7,-9],[-7,-6],[-10,-9],[-6,-6],[-7,-7],[-6,-8],[-15,-20],[-8,-7],[-4,-8],[-6,-8],[-12,-13],[-7,-10],[-6,-8],[-6,-11],[-10,-18],[-7,-10],[-10,-21],[-6,-8],[-6,-20],[-17,-23],[-12,-32],[-7,-35],[-6,-9],[-11,-8],[-3,-9],[9,-9],[6,-5],[5,-22],[1,-5]],[[88504,34801],[-2,0],[-4,1],[-2,0],[-11,2],[-5,2],[-9,0],[-18,1],[-9,0],[-19,10],[-3,1],[0,14],[-7,7],[-10,0],[-3,1],[-1,0],[-7,3],[-11,6],[-6,6],[-24,0],[-14,0],[-28,8],[-10,11],[-26,27],[-51,3],[-6,0],[-4,0],[-22,-1],[-27,-1],[-3,0],[-2,0],[-13,-2],[-11,-3],[-5,-6],[-23,-25],[-3,-12],[0,-19],[-2,-7],[-6,-9],[-14,-15],[-4,-1],[-21,-23],[-5,-3],[-3,-1],[-5,-7],[-4,-5],[-1,-6],[-1,-8],[-1,-6],[-1,-13],[0,-12],[6,-10],[4,-10],[0,-9],[-8,-16],[-1,-1],[0,-1],[-2,-2],[-2,-2],[-23,-4],[-25,-4],[-37,-5],[-2,7],[-11,12],[-10,8],[-14,-1],[-5,-6],[0,-5],[2,-7],[3,-10],[9,-28],[8,-23],[4,-17],[0,-15],[-6,-7],[-5,-3],[-1,0],[-9,-7],[-1,-1],[-19,-16],[-6,-5],[-2,0],[-11,-4],[-16,-6],[-1,-1],[-12,-6],[-5,0],[-2,-1],[-2,-3],[-1,-4],[0,-6],[7,-12],[6,-14],[4,-9],[0,-7],[-2,-3],[-3,-4],[-6,-3],[-20,-6],[-9,0],[-4,2],[-1,1],[-6,4],[-6,3],[-5,1],[-11,-1],[-4,-3],[-6,-6],[-11,-12],[-6,-4],[-13,-10],[0,-1],[-1,1],[-6,4],[-1,1],[-4,7],[-1,2],[-5,12],[-4,3],[-5,3],[-8,1],[-13,-3],[-14,-6],[-7,-4],[-4,-5],[-5,-10],[-1,-19],[-13,-7],[-1,-1],[-12,7],[-2,3],[-7,2],[-9,2],[-41,2],[-7,0],[-8,-3],[-8,-6],[-1,-1],[0,-2],[0,-1],[-2,-3],[-7,-15],[-1,-1],[-2,-4],[-13,-4],[-5,-3],[-1,-2],[-3,-14],[-22,0],[-3,0],[-14,0],[-4,0],[-4,-5],[-12,-12],[-2,0],[-6,-2],[-5,-2],[-24,-6],[-4,-1],[-6,0],[-7,2],[-6,3],[-3,3],[-1,2],[0,5],[7,13],[-17,17],[-2,2],[-8,1],[-1,0],[-2,2],[-27,42],[-2,3],[0,1],[-2,8],[0,3],[-1,10],[1,3],[1,0],[4,5],[21,6],[-7,18],[-2,5],[-4,4],[-7,6],[-4,3],[-23,11],[-15,7],[-22,10],[-10,4],[-2,1],[-21,7],[0,2],[2,5],[0,2],[-1,1],[-15,13],[-2,1],[-9,15],[0,1],[-6,12],[-9,22],[-3,6],[-7,16],[-1,1],[9,32],[1,3],[0,12],[1,7],[-4,1],[-7,4],[-33,18],[-2,1],[1,1],[4,4],[2,1],[2,24],[-2,-1],[-7,1],[-1,0],[-20,9],[-3,1],[-3,1],[-1,1],[-1,2],[-4,6],[-5,12],[0,4],[0,4],[1,4],[1,3],[2,3],[2,0],[6,3],[3,3],[8,7],[-4,9],[-4,8],[-14,20],[-4,4],[-1,1],[1,7],[1,2],[0,1],[3,6],[9,-1],[3,0],[13,6],[11,16],[1,1],[0,1],[3,8],[2,5],[3,15],[-1,2],[-2,1],[-50,27],[-3,1],[-3,2],[0,-6],[-1,-3],[-1,-4],[-3,-4],[-16,-25],[-13,-9],[-4,-1],[-11,5],[-1,1],[1,2],[-1,7],[-5,6],[-1,2],[-2,0],[-18,-9],[-14,-7],[1,-13],[-1,-2],[0,-6],[-1,-1],[-1,-1],[-5,5],[-6,-7],[-9,-5],[-5,10]],[[86994,34876],[5,16],[-1,1],[0,1],[-5,6],[-3,3],[-4,17],[-6,-14],[-3,-7],[-9,-6],[-6,-7],[-5,-1],[-2,3],[-4,7],[-1,1],[-11,8],[-7,2],[-10,3],[-8,3],[-8,2],[-3,-2],[-9,-6],[-6,-8],[-4,-4],[-1,-1],[-1,-1],[-11,-5],[-14,9],[-2,1],[-1,3],[-1,3],[-8,6],[-1,1],[-3,5],[-17,10],[-11,10],[0,-16],[-6,-5],[-1,-3],[-5,-11],[-1,-5],[-2,-7],[0,-3],[2,-4],[1,-3],[-1,0],[-8,-12],[-6,-3],[-8,0],[-5,-1],[-16,1],[-17,6],[-6,2],[-17,20],[1,26],[0,3],[-13,23],[-10,29],[-12,32],[-8,22],[-5,15],[-6,9],[0,11],[3,7],[3,8],[1,0],[-1,6],[-2,6],[-8,10],[0,3],[0,37],[-6,8],[-7,15],[-2,4],[0,4],[6,15],[2,2],[7,7],[-1,3],[-5,19],[-3,5],[-6,7],[-11,4],[-20,5],[-4,0],[-16,-2],[-2,0],[-24,2],[-29,5],[-4,1],[-10,9],[-2,-4],[-2,-1],[-6,0],[-9,3],[-14,16],[-3,2],[-14,0],[-9,0],[-3,0],[-6,0],[-16,-1],[-26,1],[-4,-6],[-3,-4],[-2,-1],[-12,-2],[-12,-2],[-54,-9],[-40,-2],[-5,1],[-7,4],[-4,3],[-9,7],[-2,2],[-4,4],[-1,1],[-9,4],[-23,-1],[-17,0],[-6,-1],[-4,-3],[-6,-3],[-5,-1],[-6,3],[-7,4],[-20,-1],[-15,0],[-18,-1],[-14,0],[-10,-3],[-1,0],[-7,-10],[-17,-22],[-4,-1],[-14,-2],[-3,-1],[-1,-5],[-1,-3],[-5,-2],[-18,-21],[-2,-4],[-3,-7],[-1,-3],[2,-7],[0,-3],[-14,-15],[-7,-1],[-43,0],[-2,0],[-5,4],[-2,2],[-14,7],[-6,0],[-31,-18],[-56,-2],[-28,17],[-26,15],[-7,1],[-29,-8],[-1,0],[-5,-3],[-6,-2],[-6,0],[-13,0],[-4,-1],[-2,-1],[-10,-4],[-18,-6],[-5,-3],[-5,-5],[-17,-19],[-1,-2],[-4,-7],[-59,2],[-64,8],[-10,-1],[-18,3],[-1,0],[-12,1],[-8,-3],[-8,0],[-8,2],[-26,-14],[-26,-14]],[[85414,35102],[-21,12],[-5,4],[-25,14],[-2,2],[-34,19],[-12,7],[-7,5],[-16,10],[-52,28],[-28,18],[-11,6],[-12,7],[-10,5],[-11,7],[-17,9],[-16,10],[-34,20],[-29,15],[-24,14],[-7,4],[-7,5],[-15,9],[-20,10],[-45,27],[-27,17],[-36,20],[-16,7],[-41,24],[-8,5],[-51,29],[-13,7],[-27,15],[-8,5],[-10,6],[-15,9],[-8,4],[-14,8],[-3,2],[-23,13],[-66,37],[-9,5],[-9,5],[-11,7],[-7,3],[-7,5],[-21,11],[-7,5],[-15,8],[-17,9],[-13,9],[-11,5],[-13,8],[-19,11],[-13,7],[-19,11],[-14,9],[-30,16],[-13,6],[-10,7],[-8,4],[-15,9],[-10,6],[-38,22],[-18,11],[-10,4],[-10,7],[-17,8],[-28,19],[-13,8],[-13,6],[-7,4],[-14,8],[-18,11],[-14,7],[-22,12],[-10,6],[-65,39],[-15,11],[-32,22],[-20,13],[-19,13],[-13,9],[-9,7],[-11,7],[-13,9],[-7,5],[-13,10],[-7,5],[-8,4],[-19,14],[-8,6],[-10,7],[-9,6],[-14,10],[-14,9],[-9,7],[-5,3],[-2,2],[-29,21],[-12,8],[-13,10],[-6,5],[-9,4],[-12,5],[-9,7],[-8,5],[-13,10],[-13,8],[-6,5],[-9,6],[-8,5],[-7,6],[-8,5],[-8,5],[-6,5],[-13,9],[-12,8],[-10,6],[-8,6],[-9,6],[-7,5],[-7,5],[-52,36],[-12,9],[-16,10],[-7,5],[-10,8],[-9,5],[-94,64],[-31,22],[-20,14],[-19,13],[-3,2],[-126,88],[-14,9],[-8,5],[-13,10],[-19,14],[-11,9],[-20,14],[-12,7],[-7,4],[-7,5],[-12,8],[-6,5],[-18,13],[-20,14],[-13,10],[-7,5],[-7,5],[-10,7],[-10,6],[-12,8],[-11,8],[-7,5],[-10,7],[-10,6],[-9,7],[-8,6],[-11,7],[-8,5],[-10,6],[-8,7],[-11,8],[-16,10],[-30,20],[-5,3],[-69,49],[-28,20],[-18,12],[-25,17],[-9,6],[-13,9],[-21,15],[-19,13],[-13,9],[-16,11],[-24,16],[-7,5],[-1,0],[-6,5],[-45,30],[-8,6],[-9,7],[-10,6],[-8,5],[-8,6],[-11,8]],[[76296,39454],[36,-69],[12,-23],[4,-8],[22,-43],[14,-26],[42,-82],[17,-34],[54,-104],[9,-20],[5,-9],[8,-17],[5,-9],[23,-44],[15,-30],[8,-16],[20,-40],[30,-57],[1,-3],[9,-18],[6,-12],[6,-13],[7,-12],[27,-53],[11,-22],[6,-12]],[[76693,38678],[-27,-39],[-9,-13],[-7,-9],[-6,-9],[-6,-8],[-27,-37],[-16,-23],[-17,-24],[-18,-26],[-13,-18],[-39,-54],[-15,-21],[-6,-9],[-10,-13],[-18,-26],[-53,-74],[-1,-2],[-1,-1],[-5,-7],[-6,-9],[-38,-53],[-21,-30],[-10,-14],[-10,-14],[-6,-9],[-36,-48],[-15,-20],[-6,-10],[-6,-8],[-9,-13],[-35,-51],[-18,-26],[-28,-40],[-19,-27],[-17,-24],[-6,-14],[-8,-9],[-30,-37],[-23,-33],[-59,-86],[-9,-14],[-16,-23],[-7,-9],[-30,-44],[-22,-33],[-99,-142],[-25,-32],[-16,-22],[-7,-10],[-1,-1],[-91,-132],[-21,-27],[-6,-9],[-7,-8],[-5,-9],[-7,-8],[-21,-29],[-10,-12],[-6,-8],[-5,-10],[-9,-13],[-12,-15],[-14,-17],[-6,-8],[-12,-15],[-10,-13],[-2,-2],[-3,-4],[-141,-178],[-52,-65],[-8,-8],[-6,-6],[-14,-15],[-9,-9],[-10,-13],[-10,-13],[-7,-9],[-7,-9],[-6,-9],[-9,-11],[-13,-17],[-21,-26],[-10,-13],[-7,-8],[-12,-15],[-16,-21],[-11,-14],[-18,-22],[-7,-9],[-6,-7],[-6,-8],[-12,-15],[-9,-12],[-5,-6],[-10,-13],[-7,-9],[-7,-8],[-3,-4],[-8,-10],[-46,-58],[-32,-40],[-27,-34],[-6,-8],[-13,-16],[-10,-13],[-10,-13],[-10,-12],[-12,-15],[-25,-31],[-10,-14],[-5,-6],[-8,-9],[-8,-10],[-11,-14],[-10,-13],[-8,-10],[-6,-7],[-9,-13],[-8,-10],[-20,-25],[-6,-7],[-8,-10],[-7,-9],[-19,-23],[-15,-19],[-15,-19],[-14,-19],[-11,-13],[-11,-14],[-9,-11],[-9,-11],[-13,-17],[-14,-18],[-15,-18],[-14,-18],[-9,-12],[-7,-8],[-16,-21],[-6,-6],[-24,-31],[-8,-11],[-7,-8],[-26,-33],[-28,-34],[-26,-34],[-33,-41],[-7,-9]],[[74376,35594],[-7,0],[-15,0],[-11,0],[-9,-1],[-9,0],[-17,-1],[-8,0],[-13,-1],[-10,0],[-11,0],[-10,0],[-41,1],[-9,0],[-8,0],[-8,0],[-12,-1],[-8,0],[-29,-1],[-2,0],[-10,0],[-25,-1],[-17,-1],[-106,-3],[-8,3],[-15,-1],[-11,0],[-12,0],[-13,-1],[-16,0],[-13,0],[-17,-1],[-17,0],[-11,0],[-21,-1],[-8,0],[-20,0],[-8,-1],[-10,0],[-9,-1],[-10,1],[-8,0],[-8,0],[-17,0],[-35,0],[-8,-2],[-8,2],[-12,-1],[-13,0],[-12,0],[-21,-1],[-8,0],[-8,0],[-19,0],[-19,-1],[-11,0],[-8,0],[-8,0],[-10,0],[-9,0],[-8,-1],[-8,0],[-17,0],[-11,0],[-10,0],[-10,0],[-9,0],[-9,0],[-11,-1],[-8,0],[-9,-1],[-13,0],[-8,-1],[-9,0],[-12,0],[-12,0],[-9,0],[-9,-1],[-16,0],[-11,-1],[-17,0],[-10,-1],[-10,0],[-20,0],[-8,0],[-14,-1],[-9,0],[-17,0],[-9,0],[-9,0],[-12,0],[-15,-1],[-9,0],[-13,0],[-12,0],[-8,-2],[-16,0],[-9,-1],[-26,-2],[-8,-1],[-9,0],[-8,0],[-56,-1],[-112,-2],[-39,0],[-25,0],[-16,-1],[-18,0],[-5,0],[-8,-1],[-97,-2],[-55,-1],[-8,-1],[-114,-2],[-14,0],[-13,0],[-19,0],[-17,-1],[-1,0],[-82,-2],[-1,0],[-10,0]],[[72333,35551],[14,28],[3,4],[21,30],[5,8],[10,14],[11,17],[9,13],[7,11],[7,9],[0,13],[-22,23],[-1,1],[-7,5],[-8,8],[-30,27],[-41,37],[-31,30],[-7,6],[-9,9],[-6,6],[-9,8],[-22,21],[-17,16],[-6,6],[-8,6],[-96,89],[-11,10],[-18,17],[-9,8],[-1,1],[-8,7],[-15,15],[-28,27],[-40,38],[-17,16],[-17,16],[-3,2],[-47,46],[-8,7],[-53,48],[-7,7],[-13,11],[-7,7],[-13,12],[-68,63],[-9,9],[-10,9],[-55,51],[-18,16],[-17,15],[-32,30],[-28,25],[-34,33],[-27,24],[-9,9],[-118,110],[-17,11],[-29,28],[-82,77],[-7,6],[-9,8],[-141,133],[-76,71]],[[70999,37019],[16,18]],[[62656,38453],[-133,-141],[-92,-97],[-15,-16],[-71,-74],[-54,-56],[-20,-22],[-29,-31],[-8,-8],[-29,-30],[-10,-11],[-46,-48],[-40,-42],[-8,-8],[-83,-87],[-19,-19],[-54,-52],[-16,-16],[-27,-28],[-174,-176],[-11,-11],[-57,-58],[-21,-21],[-6,-7],[-54,-54],[-32,-32],[-25,-25],[-19,-19],[-8,-8],[-7,-8],[-26,-26],[-59,-59],[-7,-7],[-15,-15],[-10,-10],[-9,-9],[-7,-7],[-13,-13],[-5,-6],[-26,-25],[-18,-17],[-14,-14],[-23,-23],[-20,-20],[-26,-26],[-85,-85],[-38,-38],[-22,-22],[-17,-18],[-8,-7],[-24,-24],[-23,-22],[-23,-23],[-10,-10],[-12,-12],[-10,-10],[-25,-25],[-7,-7],[-6,-7],[-7,-6],[-3,-4],[-1,-1]],[[60889,36650],[5,21],[-3,9],[-7,7],[-9,9],[-4,11],[-3,11],[-7,10],[-12,3],[-11,-8],[-3,-14],[4,-13],[-2,-12],[-10,-6],[-7,-3],[-10,-1],[-9,2],[-5,10],[-9,-1],[-11,1],[-10,-7],[-10,-19],[2,-12],[10,-6],[9,-5],[7,-8],[2,-10],[-18,-9],[-8,0],[-7,4],[-9,6],[-8,6],[-9,6],[-8,1],[-8,0],[-8,-1],[-21,-9],[-8,-17],[-1,-15],[-3,-9],[-8,-5],[-12,1],[-13,2],[-12,4],[-9,6],[-10,5],[-15,-1],[-11,-2],[-6,-2],[-2,-1],[-15,-12],[-9,-11],[-5,-7],[-51,15],[-10,2],[-10,-5],[-1,-12],[3,-10],[4,-12],[-13,-7],[-10,5],[-13,1],[-14,-3],[-11,-4],[-15,-11],[-8,-9],[-6,-9],[-14,-20],[-7,-8],[-8,-5],[-12,-4],[-15,12],[-7,8],[-8,9],[-9,8],[-9,1],[-12,-12],[-15,-1],[-18,8],[-10,4],[-14,3],[-10,-2],[0,-10],[8,-7],[12,-12],[9,-12],[6,-9],[3,-9],[-7,-11],[-22,-4],[-8,-2],[-9,-10],[-5,-16],[-9,-12],[-9,-5],[-8,2],[-11,1],[-7,0],[-11,-3],[-8,-1],[-2,15],[-7,8],[-9,7],[-13,7],[-11,4],[-9,0],[-7,-6],[-8,4],[-12,5],[-22,6],[-9,-2],[-8,3],[-11,-1],[-11,0],[-9,-5],[-10,-3],[-9,-11],[-10,-1],[-3,9],[-9,4],[-10,2],[-7,-3],[-14,-8],[-12,-2],[-10,-1],[-12,2],[-12,-1]],[[59878,36413],[-16,8],[-28,16],[-23,13],[-28,15],[-19,10],[-31,17],[-55,30],[-100,55],[-8,4],[-66,36],[-1,1],[-22,12],[-31,17],[-13,8],[-13,7],[-34,18],[-9,5],[-14,8],[-29,16],[-21,11],[-49,27],[-10,5],[-52,29],[-20,11],[-8,4],[-33,18],[-67,36],[-2,1],[-10,6],[-78,42],[-48,27],[-8,4],[-9,5],[-12,7],[-89,47]],[[80782,36487],[0,-12],[-4,-13],[-3,-11],[-2,-11],[-2,-18],[-1,-13],[9,-12],[9,-3],[9,-3],[18,-2],[29,0],[15,3],[14,2],[11,3],[9,5],[12,6],[10,5],[12,3],[9,-2],[10,-4],[11,-7],[7,-11],[7,-12],[9,-30],[5,-12],[4,-10],[7,-26],[-4,-21],[-6,-7],[-9,-3],[-18,-4],[-11,0],[-9,3],[-19,10],[-6,6],[-13,9],[-15,0],[-11,-4],[-5,-10],[0,-12],[3,-11],[3,-11],[5,-9],[9,-16],[6,-9],[7,-9],[7,-9],[5,-12],[1,-10],[-1,-13],[-1,-25],[-1,-14],[2,-12],[3,-12],[3,-22],[-1,-13],[-8,-15],[-9,-6],[-8,-3],[-9,-2],[-9,5],[-16,20],[-10,10],[-18,14],[-20,10],[-20,8],[-18,4],[-10,3],[-11,0],[-9,2],[-10,-1],[-9,-4],[-8,-6],[-8,-6],[-9,-8],[-14,-6],[-16,-1],[-9,2],[-8,0],[-14,1],[-10,-7],[-7,-5],[-7,-8],[-12,-10],[-9,-4],[-8,-10],[-5,-10],[-3,-18],[5,-8],[5,-9],[12,-6],[5,-7],[5,-9],[6,-6],[6,-9],[5,-8],[7,-9],[6,-9],[7,-7],[6,-6],[6,-6],[15,-7],[11,-4],[11,4],[7,6],[8,8],[9,8],[14,14],[11,17],[9,10],[9,8],[10,8],[12,6],[10,3],[11,-1],[14,-5],[8,-5],[11,-15],[10,-7],[20,-4],[12,-5],[7,-9],[6,-9],[5,-13],[4,-12],[-1,-10],[-4,-10],[-4,-11],[-6,-12],[-5,-8],[-9,-4],[-9,-3],[-14,0],[-11,2],[-11,3],[-11,3],[-9,0],[-8,-2],[-8,-6],[-6,-9],[0,-14],[5,-12],[9,-13],[8,-8],[6,-9],[8,-7],[6,-8],[11,-13],[11,-12],[9,-7],[5,-4],[10,-5],[6,-5],[8,-5],[13,-11],[7,-11],[5,-9],[5,-16],[-2,-11],[-7,-8],[-12,-6],[-13,-13],[-2,-13],[5,-11],[5,-16],[1,-19],[2,-10],[4,-11],[5,-12],[-9,-7],[-4,-8],[-5,-11],[-7,5],[-9,-2],[-8,-1],[-9,-5],[-5,-11],[-2,-11],[4,-9],[-2,-7],[-2,-3],[-3,-9],[-4,-10],[-1,-1],[-1,-138],[-63,-1],[-66,-1],[-15,0],[-27,-1],[-53,-1],[-35,0],[-21,-1],[-11,0],[-36,-1],[-12,-1],[-49,0],[-96,-4]],[[80355,35303],[-6,3],[-8,3],[-8,5],[-15,12],[-1,13],[3,28],[0,17],[-4,14],[-12,10],[-24,6],[-8,5],[-8,10],[-12,7],[-11,8],[-8,7],[-18,24],[-9,14],[-8,8],[-14,7],[-25,4],[-16,-9],[-11,-13],[-4,-12],[-8,-12],[-9,-2],[-11,1],[-12,2],[-10,3],[-9,8],[-12,21],[-7,7],[-21,-4],[-12,-13],[-10,-5],[-9,-5],[-12,-1],[-24,-1],[-16,2],[-16,11],[-13,11],[-6,10],[-15,23],[-11,10],[-14,9],[-8,4],[-19,7],[-12,3],[-8,0],[-9,-4],[-7,-6],[-19,-12],[-10,-4],[-10,1],[-14,9],[-16,11],[-6,11],[-10,11],[-13,10],[-15,15]],[[79695,35605],[-2,3],[-6,4],[-8,8],[-8,11],[-4,9],[-1,11],[-5,11],[-7,9],[-8,6],[-7,3],[-12,1],[-11,1],[-15,5],[-6,8],[-6,8],[0,11],[-2,11],[-4,10],[-6,7],[-8,4],[-9,7],[-8,10],[-4,11],[-3,10],[-8,12],[-7,6],[-7,5],[-5,6],[-8,4],[-11,5],[-12,0],[-7,-4],[-11,-5],[-12,-2],[-7,5],[-8,1],[-8,4],[-6,7],[-6,11],[-7,8],[-5,7],[-7,4],[-7,4],[-9,2],[-8,2],[-11,2],[-6,7],[-10,0],[-5,8],[-7,6],[-19,7],[-10,-2],[-8,-4],[-7,-4],[-8,-4],[-7,-7],[-11,-10],[-8,-4],[-7,-4],[-11,0],[-13,-10],[-8,-3],[-5,-7],[-10,-8],[-10,4],[-10,12],[-7,9],[-8,9],[-4,10],[-9,10],[-8,7],[-9,5],[-10,3],[-10,4],[-8,5],[-8,0],[-8,0],[-9,4],[-13,6],[-10,9],[-6,6],[-7,6],[-5,9],[-3,11],[-7,11],[-4,9],[-3,9],[2,12],[3,10],[0,10],[0,9],[-4,9],[-6,7],[-1,10],[-7,7],[-6,7],[-2,9],[-2,11],[-3,10],[-6,7],[-7,4],[-5,8],[-7,2],[-6,6],[-6,6],[-5,9],[-5,9],[0,9],[-1,12],[-2,10],[-3,10],[-5,10],[-7,3],[-8,5],[-8,4],[-6,8],[-2,9],[5,11],[8,2],[7,4],[6,11],[9,7],[8,6],[11,8],[3,10],[-2,10],[-3,9],[-7,16],[1,10],[-1,11],[5,7],[6,9],[3,10],[-1,11],[-7,6],[-8,3],[-9,2],[-7,3],[-8,6],[-7,8],[-5,9],[0,12],[-5,10],[-5,9],[-8,11],[-8,8],[-7,5],[-6,6],[-8,4],[-12,2],[-8,2],[-9,1],[-10,-2],[-9,-2],[-10,0],[-7,5],[-4,9],[3,11],[4,8],[6,6],[2,9],[-2,9],[-6,10],[-7,4],[-9,5],[-8,1],[-9,0],[-7,3],[-8,6],[-7,4],[-3,15],[4,12],[6,8],[5,10],[3,10],[0,15],[-2,9],[-2,10],[2,11],[-1,4],[-1,6],[-4,9],[-6,6],[-6,6],[-8,5],[-12,3],[-7,4],[-9,0],[-13,9],[-12,3],[-11,5],[-7,5],[-8,4],[-5,7],[-5,10],[1,11],[-2,10],[-3,10],[-7,9],[-4,9],[-3,10],[0,12],[-3,9],[1,11],[2,11],[2,11],[-1,12],[-3,12],[-7,7],[-6,8],[-9,0],[-7,3],[-8,5],[-2,11],[1,10],[7,7],[8,5],[8,7],[7,7],[3,12],[-1,11],[-2,9],[-2,9],[4,10],[4,9],[-3,10],[-6,8],[-7,6],[-4,9],[-3,11],[-3,10],[-7,5],[-8,2],[-8,0],[-7,4],[-4,7],[-5,8],[-7,10],[-6,7],[-6,7],[-7,6],[-7,4],[-5,8],[-8,1],[-8,-7],[-8,-1],[-8,3],[-7,7],[-3,10],[-4,9],[-9,3],[-10,-2],[-5,7],[1,10],[11,5],[7,-2],[10,-3],[8,2],[6,7],[1,10],[-3,12],[0,9],[5,19],[1,13],[0,11],[0,10],[1,9],[0,11],[-9,5],[-7,6],[-7,7],[-8,7],[-6,10],[-5,9],[-4,11],[-4,8],[-6,7],[-8,7],[-7,6],[-8,5],[-7,4],[-3,9],[-2,10],[2,11],[0,9],[-4,9],[-9,4],[-11,-6],[-7,-6],[-8,-2],[-12,-2],[-11,-4],[-8,-5],[-5,-10],[-1,-12],[-4,-8],[-9,-3],[-5,-9],[-4,-11],[-5,-9],[-5,-8],[-5,-8],[-8,-2],[-9,-1],[-9,1],[-5,8],[-7,1],[-9,-10],[-8,4],[-5,11],[-8,2],[0,9],[-8,3],[-8,2],[-4,9],[-9,5],[-8,-3],[-8,2],[-9,1],[-9,1],[-7,4],[-9,-3],[-9,-4],[-7,5],[-2,10],[-7,4],[-11,-3],[-7,-2],[-6,-10],[-9,-3],[-15,-6],[-7,-4],[-8,0],[-3,-10],[-7,3],[-8,4],[-9,0],[-8,-4],[-6,8],[4,12],[-8,2],[-6,-10],[-8,-4],[-9,2],[-6,6],[-8,4],[-20,10],[-8,2],[-8,-1],[-7,5],[-9,-3],[-11,-12],[-8,1],[-4,11],[-8,2],[-7,-7],[-9,-2],[-8,5],[-11,15],[-5,12],[-9,3],[-8,1],[-8,6],[-11,4],[-8,1],[-1,9],[-7,4],[-1,14],[5,9],[-2,9],[-10,2],[-4,8],[-1,12],[-8,-2],[-2,10],[0,11],[-7,8],[-10,6],[-7,6],[-10,-1],[-7,5],[-8,2],[-8,-1],[-10,0],[-5,10],[4,9],[-6,10],[4,9],[-5,9],[4,8],[-4,9],[-7,8],[-7,5],[-7,-4],[-8,8],[-7,5],[-5,13],[-6,15],[-1,2],[-11,2],[-9,-2],[2,10],[-7,5],[-2,-10],[-8,0],[-4,8],[-8,2],[-10,6],[-8,4],[-10,-3],[-8,-1],[-8,4],[-8,-5],[-2,-9],[-8,0],[-10,0],[-8,5],[-11,-5],[-7,5],[-5,7],[-8,12],[-6,9],[-7,3],[-3,10],[-5,9],[-8,-1],[-9,2],[-7,1],[-7,5],[-6,7],[-7,6],[-6,9],[-6,6],[-5,12],[-3,11],[-11,5],[-7,3],[-8,8],[-9,1],[-7,3],[-10,-4],[-7,-1],[-8,-5],[-8,-4],[-7,-4],[-8,2],[-44,42],[-14,14],[-19,18],[-22,23],[-28,29],[-14,15],[-43,40],[-9,9],[-9,9],[-2,2],[-38,36],[-19,19],[-14,13],[-7,7],[-17,15],[-8,7],[-7,7],[-10,10],[-6,7],[-14,13],[-41,40],[-5,9],[-11,22],[-4,9],[-9,16],[-7,15],[-30,58],[-15,28],[-18,37],[-28,54],[-4,8],[-12,23],[-5,11],[-24,47],[-22,43],[-21,40],[-11,21],[-10,21],[-8,14],[-6,12],[-10,20]],[[53622,38173],[-15,-79],[0,-42],[0,-48],[0,-15],[1,-120],[0,-22],[0,-32],[0,-196],[-1,-160],[0,-59],[0,-187],[0,-40],[-1,-44],[0,-93],[0,-80],[0,-52],[0,-44],[0,-37],[0,-21],[-1,-52],[0,-54],[-2,-68],[0,-23],[0,-68],[0,-55],[1,-247],[0,-16],[0,-38],[0,-44],[0,-2],[0,-7],[0,-10],[0,-51],[0,-13],[0,-12],[0,-31],[0,-112],[0,-47],[0,-71],[0,-44],[0,-42],[1,-85],[0,-33],[0,-34]],[[53605,35543],[-13,-1],[-14,0],[-8,0],[-134,-3],[-88,-1],[-103,-2],[-12,0],[-16,0],[-104,-2],[-18,-1],[-57,0],[-103,-2],[-27,0],[-56,-1],[-37,-1],[-38,-1],[-37,0],[-89,-2],[-35,-1],[-14,0],[-14,0],[-9,-1],[-11,0],[-28,0],[-9,0],[-4,0],[-6,0],[-10,-1],[-27,-2],[-11,-1],[-7,0],[-11,0],[-7,0],[-2,0],[-9,0],[-145,-1],[-62,-1],[-61,0],[-21,0],[-20,0],[-32,0],[-55,-1],[-30,0],[-66,0],[-98,-1],[-28,0],[-46,0],[-8,0],[-20,0],[-19,-1],[-13,0],[-25,0],[-25,0],[-1,0],[-14,0],[-14,0],[-29,-1],[-28,0],[-26,1],[-18,1],[-18,0],[-163,-1],[-8,0],[-9,0],[-15,0],[-15,0],[-22,-1],[-11,0],[-12,0],[-30,0],[-17,0],[-12,0],[-15,0],[-25,-1],[-32,0],[-65,0],[-61,-1],[-38,0],[-15,0],[-26,-1],[-9,0],[-8,0],[-11,0],[-16,0],[-14,0],[-15,0],[-86,-1],[-15,0],[-12,0],[-19,-1],[-21,0],[-15,0],[-12,0],[-15,0],[-12,0],[-11,0],[-15,0],[-13,0],[-13,0],[-11,0],[-45,-1],[-3,0],[-14,0],[-8,1],[-8,0],[-8,-1],[-19,0]],[[70999,37019],[-16,-11],[-9,-6],[-10,-7],[-10,-6],[-13,-10],[-30,-19],[-35,-24],[-1,-1],[-8,-6],[-8,-5],[-10,-7],[-19,-12],[-12,-9],[-12,-8],[-22,-14],[-43,-29],[-27,-18],[-66,-46],[-25,-17],[-12,-7],[-13,-10],[-38,-26],[-15,-9],[-28,-18],[-28,-19],[-50,-34],[-38,-26],[-98,-66],[-3,-2],[-36,-25],[-29,-19],[-23,-16],[-33,-22],[-9,-6],[-27,-19],[-32,-21],[-20,-14],[-15,-10],[-93,-63],[-148,-100],[-2,-1],[-19,-13],[-32,-22],[-48,-32],[-67,-46],[-47,-32],[-39,-26],[-52,-35],[-47,-32],[-42,-29],[-59,-39],[-16,-11],[-15,-11],[-10,-7],[-9,-6],[-1,0],[-7,-5],[-2,-1],[-14,-9],[-24,-17],[-44,-29],[-22,-16],[-34,-23],[-3,-2],[-6,-4],[-10,-6],[-24,-17],[-27,-18],[-57,-39],[-81,-55],[-1,0],[-14,-10],[-15,-10],[-25,-18],[-51,-35],[-4,0],[-2,1],[-4,1],[-4,2],[-3,5],[0,6],[2,3],[4,3],[1,1],[2,3],[2,2],[0,2],[0,1],[1,6],[-2,5],[-8,19],[-2,4],[-28,40],[-4,0],[-5,-2],[-3,-2],[-8,-9],[-1,-2],[0,-5],[2,-3],[4,-4],[0,-1],[1,-3],[1,0],[6,-19],[-1,-4],[-1,-2],[-8,-7],[-3,1],[-1,0],[-9,2],[-3,2],[0,1],[-2,5],[-2,3],[-1,0],[-3,4],[-9,2],[-6,-1],[-7,-2],[-26,-15],[-7,-6],[-3,-4],[-6,-7],[-3,-1],[-2,0],[-3,4],[-2,12],[0,4],[1,3],[4,7],[1,2],[9,24],[2,4],[2,12],[0,1],[-1,6],[-3,26],[-1,2],[-2,2],[-2,1],[-11,-2],[-67,-21],[-2,-2],[-1,-2],[-1,-7],[1,-2],[1,-1],[4,-4],[0,-3],[-2,-2],[-6,-4],[-4,-1],[-3,1],[-1,2],[-18,63],[-2,0],[-8,5],[-5,10],[7,5],[0,3],[-1,7]],[[68600,35756],[5,10],[10,2],[-1,9],[1,10],[-7,5],[-10,1],[-9,1],[-8,2],[-3,10],[-8,-4],[-6,-8],[-4,-9],[-9,-2],[-5,-8],[-8,2],[-7,13],[-2,10],[-8,0],[0,1],[-1,-1],[-10,-2],[-8,-1],[-11,-1],[-12,3],[-7,7],[-8,-4],[-7,-1],[-5,9],[-9,6],[-3,8],[-1,11],[7,6],[-2,10],[5,7],[6,9],[8,-1],[9,-7],[3,-10],[1,-11],[3,-14],[7,7],[2,9],[1,13],[0,9],[-3,10],[-9,3],[-1,10],[-3,9],[-5,10],[-2,2],[-5,5],[-7,5],[-6,6],[-7,-6],[-11,-13],[-10,-6],[-2,-9],[-3,-12],[-12,9],[0,10],[-4,8],[-1,11],[-7,10],[-7,8],[-6,-7],[-6,-9],[-6,6],[-8,10],[-4,-8],[-4,-9],[-10,1],[-11,3],[-10,-1],[-7,-3],[-3,-10],[2,-10],[-4,-9],[-9,-5],[-8,5],[-2,9],[-4,16],[4,9],[-1,10],[-9,-4],[-8,2],[-8,-5],[2,-10],[-9,-2],[0,-10],[-2,-10],[-8,-3],[-8,-3],[-8,3],[-15,6],[6,7],[6,7],[-10,5],[-7,-8],[-12,-1],[-9,6],[6,7],[7,-7],[3,9],[-4,10],[-4,8],[-4,8],[-6,10],[-6,10],[-9,0],[-7,-5],[-6,9],[4,8],[-10,-4],[-9,0],[-13,-17],[-12,-10],[-7,-6],[-9,-11],[-7,-6],[-4,3],[-6,4],[-8,0],[-5,7],[-1,5],[-1,8],[-6,10],[1,10],[-2,11],[-9,11],[-3,12],[-3,11],[3,9],[5,8],[1,13],[5,10],[-8,9],[-8,0],[-9,3],[-8,2],[-12,-5],[-10,-10],[-7,-4],[-9,3],[-12,3],[-9,-1],[-10,-1],[-6,6],[-1,10],[-9,-3],[-10,-5],[-7,-5],[-9,7],[1,9],[1,10],[-5,7],[-8,1],[-10,0],[-10,7],[-8,6],[-2,9],[-7,4],[-31,18],[-7,4],[-8,3],[-5,8],[2,9],[-2,9],[-6,9],[-5,7],[-8,6],[-14,3],[-10,2],[-12,0],[-4,11],[7,8],[9,9],[13,6],[9,8],[12,10],[2,10],[5,17],[0,17],[-3,14],[-1,15],[-5,12],[-8,8],[-6,6],[-11,-3],[-8,-1],[-10,-2],[-11,-3],[-9,4],[-5,-6],[-10,-1],[0,10],[2,10],[-7,8],[-12,1],[-10,2],[-10,10],[-11,9],[-9,4],[-18,-1],[-4,-9],[-6,-9],[-5,-8],[-13,-6],[-11,-6],[-3,-1],[-8,4],[-6,13],[-7,9],[-5,15],[-14,9],[-4,13],[9,1],[5,8],[3,10],[13,-3],[11,3],[9,6],[7,7],[3,2],[4,2],[9,5],[-1,10],[-9,3],[-7,10],[0,12],[-9,1],[-12,-2],[-11,6],[-7,7],[-11,5],[-11,11],[-14,11],[-7,16],[9,-2],[3,9],[-1,10],[-3,9],[1,13],[4,9],[13,21],[-7,5],[-12,1],[-8,1],[-8,1],[-8,1],[2,10],[-5,11],[-7,4],[-5,8],[-7,7],[-9,5],[-26,7],[6,7],[8,0],[-2,10],[-4,14],[-2,19],[4,9],[1,10],[1,10],[-3,10],[-6,7],[3,9],[-8,7],[-11,3],[-13,5],[-10,2],[-9,-1],[-16,-6],[-8,-5],[-12,-1],[-7,-8],[0,-15],[1,-10],[0,-9],[0,-10],[-7,-7],[-7,-4],[-9,-2],[-11,-1],[-10,1],[-9,2],[-7,5],[-6,6],[-10,2],[-5,7],[3,13],[1,13],[3,11],[11,2],[7,7],[2,11],[2,14],[1,10],[-3,9],[0,10],[-5,11],[-8,2],[-11,0],[-15,6],[-5,8],[-7,6],[-5,7],[-6,9],[-5,9],[-6,11],[-9,13],[6,7],[10,-6],[14,-2],[13,-7],[0,11],[-6,14],[3,11],[3,12],[-16,2],[-12,10],[-11,0],[-10,-2],[-2,-11],[-8,1],[-6,9],[-7,10],[6,9],[4,10],[9,7],[-3,9],[-10,4],[-6,9],[-1,10],[-2,10],[-6,11],[-5,9],[-9,4],[-8,-4],[-6,-9],[-7,-14],[-3,-12],[-4,-15],[-2,-12],[-7,-4],[-13,6],[5,7],[4,9],[-9,-2],[-9,-8],[-5,-8],[6,-6],[8,-8],[-7,-6],[-9,1],[-11,2],[-4,-11],[3,-9],[-8,2],[-7,9],[-5,11],[-4,9],[-6,9],[-3,9],[4,9],[0,12],[5,11],[5,9],[5,12],[2,18],[1,17],[-3,9],[-8,7],[-8,-4],[-8,-1],[-8,-4],[-12,2],[-12,5],[-6,9],[-6,11],[-10,5],[-14,10],[-6,7],[-1,10],[5,10],[-1,11],[1,13],[3,13],[-2,10],[-6,12],[-8,-3],[-8,2],[-8,0],[-3,10],[6,12],[5,7],[12,8],[6,5],[6,13],[6,8],[2,10],[3,13],[1,11],[0,21],[-11,4],[-5,9],[0,14],[3,9],[9,3],[10,0],[12,3],[9,2],[-1,14],[-5,14],[-9,3],[-9,5],[-6,6],[-3,9],[-3,11],[-8,1],[-7,4],[-4,8],[-1,10],[0,9],[-4,21],[-2,11],[-6,8],[-4,7],[-4,10],[-7,9],[-8,6],[-11,1],[-9,-2],[-8,1],[-15,2],[-9,5],[-3,9],[1,10],[-1,17],[-2,10],[-6,8],[-11,12],[-5,8],[-8,10],[-7,15],[-7,7],[-8,5],[-11,3],[-18,-15],[-5,-8],[-1,-10],[-3,-10],[-7,-2],[-12,6],[-9,3],[-6,10],[-1,11],[-2,9],[-6,9],[-3,4],[-4,5],[-3,10]],[[65813,36717],[-13,-12],[-11,-9],[-52,-48],[-11,-9],[-10,-8],[-14,-12],[-31,-28],[-24,-22],[-40,-38],[-67,-64],[-10,-9],[-63,-59],[-7,-8],[-88,-83],[-8,-8],[-89,-85],[-8,-8],[-8,-7],[-8,-8],[-11,-11],[-11,-10],[-15,-14],[-7,-6],[-2,-2],[-5,-5],[-72,-69],[-8,-5],[-2,-1],[-6,-2],[-10,-6],[-22,-13],[-16,-8],[-21,-11],[-26,-13],[-9,-5],[-8,-5],[-20,-10],[-14,-8],[-10,-5],[-17,-9],[-15,-8],[-10,-5],[-10,-6],[-12,-6],[-8,-5],[-23,-12],[-7,-4],[-10,-5],[-8,-4],[-14,-7],[-32,-17],[-14,-8],[-58,-30],[-40,-20],[-22,-12],[-26,-13],[-110,-56],[-18,-10],[-17,-8],[-22,-11],[-33,-17],[-22,-11],[-9,-4],[-111,-57],[-13,-7],[-9,-5],[-18,-8],[-46,-21],[-18,-8],[-10,-5],[-39,-17],[-21,-9],[-26,-12],[-7,-3],[-11,-6],[-14,-6],[-15,-6],[-24,-11],[-14,-6],[-9,-4],[-10,-5],[-23,-10],[-26,-13],[-12,-6],[-43,-20],[-15,-7],[-35,-17],[-2,-1],[-19,-9],[-42,-20],[-81,-43],[-18,-10],[-9,-4],[-26,-13],[-9,-4],[-11,-6],[-13,-6],[-34,-15],[-15,-8],[-8,-3],[-32,-16],[-25,-11],[-44,-21]],[[63442,35236],[-1,29],[-17,42],[-1,2],[-32,-2],[-54,18],[-19,13],[-7,7],[-2,13],[-1,5],[-1,6],[-1,10],[-3,4],[-1,3],[-13,2],[-10,0],[-9,3],[-10,2],[-10,2],[-10,4],[-13,8],[-9,12],[-6,9],[-4,12],[-9,10],[-8,2],[-10,6],[-4,9],[3,12],[6,6],[9,6],[6,17],[-1,12],[6,11],[7,12],[2,10],[-1,13],[-4,13],[-5,13],[-4,11],[-6,10],[-9,17],[-7,10],[-5,13],[-6,18],[-7,22],[0,12],[31,56],[5,15],[0,12],[-8,7],[-53,23],[-37,14],[-7,5],[-20,31],[-4,11],[-3,11],[-6,10],[-13,9],[-11,4],[-15,-6],[-12,-5],[-14,-6],[-10,-6],[-8,-3],[-18,-6],[-21,-6],[-10,-1],[-5,8],[-3,9],[-1,10],[-1,11],[-3,11],[-4,13],[-2,13],[1,11],[-4,16],[-5,9],[-9,5],[-7,9],[-2,15],[3,11],[7,6],[25,12],[12,7],[10,10],[8,22],[1,14],[-2,12],[-3,10],[-7,16],[-8,15],[-9,12],[-6,14],[-3,19],[2,16],[-1,14],[0,23],[8,13],[18,16],[17,8],[21,-9],[15,-5],[27,8],[34,3],[8,-3],[18,-14],[16,-3],[10,1],[13,1],[16,9],[12,6],[13,10],[18,5],[16,10],[12,12],[10,17],[3,19],[-2,16],[8,15],[6,10],[2,13],[0,15],[-5,12],[-7,5],[-10,8],[-11,8],[-8,8],[-8,11],[-12,6],[-13,4],[-11,8],[-4,8],[-11,16],[-5,13],[-1,11],[-2,10],[-9,3],[-12,-1],[-7,-5],[-4,-9],[-7,-12],[-8,-13],[-5,-9],[-14,-15],[-9,-9],[-10,-11],[-8,-9],[-11,-13],[-8,-7],[-10,-6],[-14,-11],[-10,-2],[-10,1],[-8,-3],[-9,0],[-4,9],[0,13],[3,12],[5,9],[10,15],[2,12],[-1,10],[-3,18],[-9,12],[-8,4],[-13,7],[-13,5],[-17,7],[-12,8],[-8,0],[-12,-4],[-7,-6],[-9,-2],[-13,13],[-11,10],[-15,3],[-15,6],[-9,0],[-10,3],[-9,4],[-8,6],[4,17],[7,11],[0,11],[-5,8],[-10,13],[-6,8],[-8,10],[-4,16],[-7,6],[-12,-3],[-15,0],[-8,-2],[-9,-6],[-12,-3],[-8,-3],[-9,1],[-12,-3],[-8,-4],[-11,-8],[-8,-4],[-11,-11],[-8,-9],[-7,-11],[-1,-18],[1,-17],[3,-13],[2,-17],[3,-14],[8,-6],[8,-1],[9,-8],[-3,-19],[-8,-8],[-10,-3],[-26,-10],[-9,-4],[-10,-7],[-15,-13],[-7,-8],[-7,-5],[0,-17],[7,-10],[8,-10],[6,-16],[-4,-12],[-9,-6],[-10,-6],[-12,-3],[-14,4],[-15,1],[-14,-2],[-16,2],[-14,6],[-8,9],[-7,7],[-2,4],[-3,4],[-3,13],[-3,14],[0,11],[-1,9],[1,12],[1,10],[4,16],[4,13],[4,14],[1,11],[-3,9],[-5,11],[-7,8],[-8,4],[-10,3],[-12,-3],[-9,-3],[-11,-7],[-9,-8],[-6,-8],[-8,-4],[-8,-2],[-14,-2],[-8,-1],[-15,9],[-8,5],[-7,5],[-7,13],[-7,15],[-9,13],[-10,1],[-18,-6],[-8,-4],[-13,-6],[-9,-8],[-9,-11],[-12,-6],[-13,-2],[-13,4],[-10,4],[-9,0],[-8,0],[-8,2],[-10,2],[-12,2],[-9,0],[-8,-4],[-11,-1],[-11,4],[-8,10],[-8,4],[-17,9],[-8,1],[-9,1],[-13,-2],[-15,-3],[-10,1],[-11,5],[-10,9],[-7,1],[-7,7],[-10,5],[-13,6],[-16,7],[-8,3],[-11,4],[-7,4],[-7,4],[-8,4],[-8,4],[-10,2],[-12,1],[-10,-1],[-11,-8],[-5,-12],[7,-14],[-4,-9],[-7,-1],[-8,6],[-4,13],[0,10],[-5,9],[-15,8],[-16,10],[-10,9],[3,10],[2,12],[-2,17],[-3,10],[-7,6],[-13,-1],[-19,-8],[-14,-3],[-12,2],[-27,12],[-12,11],[-1,9],[8,15],[1,12],[-4,11],[-5,7],[-17,4],[-13,0],[-9,-3],[-11,-7],[-6,-13],[1,-13],[0,-12],[-12,-18],[-8,-10],[-7,-6],[-8,-2],[-8,-1],[-9,0],[-8,8],[-17,2],[-10,-3],[-8,-19],[-7,-17],[-9,-1],[-10,8],[-8,6],[-13,4],[-8,4],[-7,-12],[-4,-19],[-7,-6],[-9,-6],[-2,-10],[-6,-14],[-10,-3],[-11,-10],[-10,-7],[-9,4],[-13,5],[-2,13],[-5,17],[-3,11],[-6,9],[-13,-2],[-15,-3],[-5,-8],[-10,-1],[-13,7],[-8,5],[-6,6],[-12,12],[-8,6],[-12,0],[-13,-7],[-5,-10],[-1,-11],[16,-12],[10,-11],[4,-8],[0,-10],[-4,-11],[-8,-9],[-10,-4],[-6,0],[-15,1],[-9,2],[-13,1],[-16,-3],[-8,-1],[-4,-12],[-10,-7],[-9,0],[-11,8],[-6,7],[3,10],[-1,14],[-4,17],[-19,3],[-11,-4],[-14,2],[-12,3],[-18,-1],[-12,-2],[-11,-8],[-16,-10],[-17,-6],[-11,-5],[-9,-2],[-15,-2],[-15,-3],[-10,0],[-8,2],[-6,6],[-6,7],[-6,30],[-1,2]],[[79695,35605],[-6,-7],[-67,-74],[-8,-8],[-41,-47],[-44,-47],[-13,-14],[-17,-18],[-16,-18],[-12,-12],[-5,-9],[-8,-9],[-10,-12],[-8,-9],[-11,-11],[-6,-7],[-8,-10],[-11,-11],[-7,-9],[-10,-9],[-6,-7],[-8,-9],[-7,-8],[-26,-29],[-16,-18],[-11,-11],[-7,-9],[-6,-7],[-11,-14],[-8,-8],[-7,-8],[-33,-37],[-1,-1],[-11,-13],[-8,-8],[-13,-15],[-9,-10],[-18,-18],[-9,-10],[-10,-10],[-9,-12],[-9,-9],[-7,-8],[-5,-6],[-3,-2],[-9,-10],[0,-1],[-13,-15],[-6,-7],[-1,-2],[-8,-8],[-8,-8],[-12,-14],[-13,-14],[-8,-10],[-8,-8],[-11,-12],[-12,-15],[-22,-23],[-20,-22],[-12,-14],[-15,-16],[-8,-9],[-13,-15],[-13,-14],[-12,-14],[-11,-11],[-10,-12],[-11,-12],[-8,-8],[-46,-52],[-35,-40],[-9,-10],[-73,-80],[0,-1],[-13,-14],[-43,-135],[-13,-42],[-21,-65],[-6,-22],[-23,-72],[-24,-77],[-19,-65],[-9,-29],[-9,-28],[-22,-70],[-14,-47],[-22,-67],[-24,-79],[-14,-43],[-9,-30],[-21,-66],[-4,-11],[-4,-15],[-9,-33],[-209,-141],[-15,-10],[-36,-24],[-9,-6],[-12,-9],[-27,-18],[-47,-32],[-31,-22],[-18,-12],[-6,-5],[-8,-6],[-36,-25],[-21,-14],[-11,-8],[-41,-28],[-56,-39],[-64,-44],[-40,-27],[-16,-11],[-149,-102],[-6,-5],[-43,-29],[-79,-54],[-36,-25],[-62,-43],[-30,-20],[-21,-14],[-27,-20],[-37,-26],[-44,-30],[-17,-11],[-85,-59],[-7,-5],[-51,-34],[-23,-16],[-23,-16],[-105,-72],[-1,-1],[-41,-28],[-76,-52],[-27,-19],[-12,-8],[-11,-7],[-59,-41],[-12,-8],[-29,-20],[-64,-44],[-36,-25],[-32,-21],[-62,-35],[-39,-22],[-40,-24],[-18,-12],[-8,-5],[-11,-7],[-1,-1],[-17,-11],[-43,-29],[-35,-23]],[[76157,31985],[-15,17],[-8,6],[-22,25],[-24,26],[-69,77]],[[76019,32136],[18,16],[51,46],[46,41],[23,21],[36,32],[3,3],[22,20],[7,6],[8,7],[10,10],[15,13],[13,12],[63,54],[16,14],[48,44],[15,14],[65,59],[22,19],[49,45],[90,81],[29,27],[18,16],[32,29],[19,18],[1,0],[26,24],[-112,143],[-9,12],[-1,0],[-13,17],[-62,80],[-51,65],[-6,8],[-37,48],[-19,24],[-22,30],[-31,38],[-63,81],[-38,48],[-1,0],[-27,36],[-17,21],[-43,53],[-42,53],[-29,36],[-17,22],[-25,31],[-59,76],[-62,79],[-1,1],[-46,59],[-5,6],[-5,7],[-6,7],[-6,8],[-5,7],[-12,14],[-8,10],[-10,13],[-12,15],[-6,7],[-2,3],[-24,30],[-33,41],[-10,14],[-16,22],[-14,18],[-32,44],[-9,11],[-41,53],[-6,9],[-6,7],[-6,9],[-1,2],[-6,8],[-16,20],[-5,7],[-33,42],[-33,42],[-7,8],[-32,42],[-16,21],[-21,27],[-16,20],[-29,38],[-9,12],[-27,35],[-15,19],[-17,22],[-17,21],[-16,22],[-9,11],[-12,16],[-25,32],[-35,45],[-9,11],[-8,10],[-7,9],[-18,23],[-9,11],[-5,7],[-5,7],[-28,35],[-27,35],[-23,30],[-23,30],[-15,18],[-37,47],[-52,68],[-12,-1],[-24,0],[-10,0],[-18,0],[-60,-2],[-9,0],[-8,-1],[-14,0],[-15,0],[-10,0],[-43,-1],[-43,0],[-37,1],[-3,11],[-9,13],[-8,8],[-7,4],[-6,7],[-6,6],[-6,9],[1,30],[4,4],[16,36],[2,11],[3,15],[6,6],[7,8],[1,2],[0,7],[-3,8],[-1,0],[-29,59],[-3,6],[-4,4],[-6,3],[-1,1],[-4,9],[-3,6],[-2,4],[-4,8],[-19,12],[-2,3],[0,3],[0,2],[1,2],[8,17],[5,12],[0,6],[-4,23],[-3,4],[-1,0],[-3,3],[-2,0],[-5,1],[-3,-1],[-3,0],[-5,1],[-2,1],[-10,3],[-7,6],[-3,5],[0,3],[3,3],[9,7],[2,3],[1,3],[0,2],[-1,2],[-6,2],[-18,5],[-22,6],[-26,8],[-5,1],[-6,4],[-7,7],[-1,1],[0,10],[1,11],[-8,3],[-11,4],[-8,6],[-2,9],[-5,7],[-9,2],[-10,7],[3,10],[5,8],[-71,0]],[[55061,35546],[-57,0],[-32,0],[-8,0],[-38,0],[-10,0],[-42,0],[-8,0],[-51,0],[-8,0],[-49,0],[-76,1],[-61,0],[-51,0],[-10,0],[-75,0],[-23,0],[-34,0],[-41,0],[-168,-1],[-1,0],[-63,0],[-29,0],[-89,-1],[-74,0],[-140,-1],[-65,-1],[-79,0],[-17,0],[-57,0]],[[59878,36413],[-91,-119],[-9,-11],[-2,-3],[-61,-79],[-36,-50]],[[59679,36151],[-24,-31],[-1,0],[-11,-16],[-9,-11],[-8,-12],[-15,-19],[-30,-40],[-18,-25],[-13,-15],[-23,-33],[-27,-35],[-1,-1],[-7,-9],[-7,-9],[-9,-12],[-10,-13],[-11,-15],[-6,-8],[-7,-9],[-21,-28],[-37,-48],[-11,-14],[-11,-15],[-27,-35],[-14,-19],[-13,-18],[-13,-16],[-33,-43],[-8,-12],[-13,-14],[-40,-52],[-29,-37],[-16,-22],[-11,-16],[-50,-65],[-13,-16],[-18,-24],[-17,-22],[-64,-84],[-32,-42],[-5,-6],[-13,-18],[-17,-21],[-9,-13],[-15,-19],[-2,-3],[-6,-8],[-10,-13],[-15,-20],[-7,-8],[-49,-64],[-47,-61],[-6,-8],[-9,5],[-12,6],[-13,1],[-16,-4],[-13,-7],[-10,-9],[-4,-3],[-8,-10],[-14,-10],[-7,-5],[-10,-2],[-9,-2],[-13,-1],[-16,0],[-18,4],[-14,4],[-18,6],[-16,4],[-14,4],[-21,0],[-14,-4],[-17,-9],[-15,-16],[-8,-13],[-5,-16],[-1,-2],[-11,-13],[-11,-6],[-21,1],[-7,3],[-15,10],[-17,19],[-15,31],[-16,25],[-14,26],[-5,23],[0,5],[0,6],[0,7],[1,15],[11,15],[8,7],[1,0],[15,8],[9,11],[5,10],[4,14],[-3,11],[-5,9],[-10,8],[-12,3],[-2,0],[-10,6],[-15,15],[-5,13],[-1,15],[5,22],[3,10],[9,19],[6,7],[10,13],[7,9],[4,6],[2,4],[11,20],[7,15],[10,29],[6,28],[4,28],[3,17],[-1,11],[0,10],[-3,12],[-5,12],[-6,10],[-11,17],[-6,11],[-5,16],[-5,8],[0,1],[-10,11],[-10,10],[-12,0],[-7,0],[-22,0],[-35,0],[-50,-3],[-8,1],[-17,0],[-13,0],[-77,1],[-21,0],[-103,1],[-13,0],[-21,0],[-12,0],[-25,0],[-179,2],[-14,1],[-3,0],[-39,0],[-8,0],[-1,0],[-58,1],[-35,0],[-144,2],[-16,0],[-8,0],[-99,1],[-37,1],[-9,0],[-17,0],[-4,0],[-35,1],[-46,1],[-33,1],[-144,2],[-22,0],[-58,1],[-18,0],[-11,0],[-9,1],[-18,0],[-76,1],[-10,2],[-11,1],[-15,-1],[-29,0],[-17,0],[-68,1],[-62,1],[-17,0],[-37,1],[-22,0],[-54,-1],[-110,-1],[-84,2],[-14,0],[-2,0],[-81,1],[-90,3],[-14,0],[-12,0],[-7,1],[-105,3],[-34,1],[-10,0],[-28,1],[-29,0],[-76,0],[-35,1],[-12,0],[-8,-1],[-144,4],[-47,1],[-119,1],[-18,0],[-9,0],[-62,0],[-51,0],[-86,1],[-11,0],[-14,0],[-27,0]],[[89080,35477],[-2,-59],[-17,-8],[-15,0],[-19,32],[-5,-9],[-12,24],[-17,31],[0,30],[-2,24],[40,21],[23,-4],[26,-82]],[[88862,36046],[6,-15],[19,-42],[34,-84],[5,-42],[66,-108],[20,-45],[-11,-22],[-24,-16],[0,-48],[-9,-12],[-4,24],[-8,27],[-7,12],[-3,5],[3,31],[-25,40],[-18,34],[-12,53],[-3,64],[-21,31],[-21,42],[-9,22],[-15,25],[3,2]],[[93558,34925],[-105,-49],[-22,-6]],[[93431,34870],[0,38],[0,34],[-1,87],[-1,15],[-1,80],[-1,32],[-1,86],[-2,19],[-5,-7],[-6,7],[1,-14],[-7,6],[-11,1],[2,-10],[-11,-5],[-4,-10],[-8,6],[-1,11],[-7,2],[-7,-5],[-47,-8],[-5,2],[-12,5],[-6,3],[-8,3],[-41,17],[-11,5],[-40,-2],[-15,-4],[-3,-1],[-23,-5],[-2,-1],[0,-1],[-11,-7],[1,-4],[-20,-12],[-11,-13],[-7,-7],[-3,-8],[0,-3],[-1,-42],[-1,-5],[0,-1],[1,-4],[1,-5],[1,-11],[1,-7],[0,-6],[1,-3],[1,-4],[-3,-17],[-1,-3],[-1,-18],[0,-1],[-2,-4],[-6,-32],[-11,-26],[-7,-14],[-1,-3],[-1,-1],[-25,-17],[-28,-6],[-16,-7],[-1,0],[-25,-5],[-8,-2],[-3,0],[-9,-2],[-14,-2],[-1,0],[-3,0],[-8,0],[-24,-1],[-3,-1],[-15,-4],[-14,0],[-3,3],[-8,1],[-19,-1],[-5,-1],[-10,-4],[-8,-4],[-6,-1],[-14,-2],[-9,-5],[-17,-10],[-3,-2],[-9,-3],[-10,1],[-8,2],[-9,-7],[-8,-7],[-8,-4],[-7,-2],[-12,-3],[-11,-7],[-8,-5]],[[92678,34887],[-16,-2],[-13,8],[-8,5],[-8,-6],[-13,-10],[-10,-6],[-7,-5],[-22,-15],[-18,-3],[-17,-3],[-8,-2],[-8,-3],[-23,-13],[-20,-10],[-7,-5],[-8,-11],[-7,-15],[-6,-18],[-10,-5],[-35,-12],[-38,-7],[-29,-8],[-15,-4],[-25,-7],[-39,3],[-1,22],[1,26],[-1,11],[-3,19],[-6,17],[-10,15],[-20,27],[-10,10],[-10,8],[-8,7],[-15,7],[-11,10],[-9,9],[-8,8],[-7,7],[-6,7],[-3,11],[-3,11],[-3,9],[-2,8],[-8,15],[-17,17],[-8,8],[-11,6],[-2,1],[-26,6],[-6,3],[-7,3],[-11,2],[-4,0],[-11,0],[-16,-1],[-15,0],[-3,0],[-13,-1],[-20,-4],[-14,-4],[-25,-6],[-28,-23],[-9,-6],[-17,-10],[-30,-17],[-26,-10],[-1,-1],[-28,-16],[-37,-17],[-8,-4],[-2,-1],[-10,-3],[-12,-3],[-17,-9],[-39,-13],[-33,-11],[-7,-2],[-23,-8],[-20,-7],[-18,-5],[-13,-3],[-10,-2],[-45,-12],[-9,-2],[-10,2],[-8,-6],[-16,-1],[-9,-6],[-7,-4],[-13,-7],[-13,-5],[-20,-4],[-12,-1],[-14,-3],[-9,-2],[-30,-5],[-19,-4],[-19,-1],[-8,0],[-10,-6],[-24,-7],[-16,-2],[-10,-4],[-26,-17],[-8,-3],[-10,-2],[-13,-5],[-16,-5],[-19,-4],[-8,-3],[-10,-4],[-11,-3],[-23,-9],[-11,-5],[-8,-4],[-10,-8],[-36,0],[-17,1],[-10,1],[-21,-2],[-11,-1],[-22,-1],[-22,-1],[-11,-1],[-13,-1],[-20,-5],[-14,-5],[-2,-1],[-8,-5],[-12,-6],[-12,-8],[-22,3],[-13,-13],[-12,-3],[-8,-3],[-31,-12],[-10,-4],[-8,-4],[-21,-11],[-11,-4],[-14,-6],[-12,-5],[-7,-4],[-8,-4],[-18,-2],[-10,2],[-9,4],[-23,-3],[-22,-8],[-19,-3],[-30,-7],[-18,-2],[-39,2],[-8,3],[-10,4],[-8,1],[-26,7],[-8,5],[-7,4],[-10,4],[-12,3],[-17,9],[-14,10],[-11,17],[-4,10],[-5,12],[-6,9],[-2,10],[-2,10],[-1,1],[-5,12],[-3,6],[-3,5],[-3,5],[-9,12],[0,3],[-2,6],[-1,4],[-8,16],[9,25],[27,-1],[3,0],[3,-1],[24,-11],[15,-4],[17,-11],[8,-16],[1,-3],[6,-8],[11,-15],[7,1],[14,0],[27,8],[27,2],[13,19],[16,19],[19,12],[16,13],[15,19],[13,23],[10,22],[-4,26],[-18,-23],[-10,18],[-4,26],[-6,27],[19,18],[17,17],[22,10],[20,15],[21,22],[15,17],[20,23],[3,4],[14,25],[18,37],[20,43],[8,19],[6,15],[13,27],[13,30],[14,26],[12,21],[11,24],[1,2],[18,27],[7,16],[2,5],[14,28],[0,17],[0,5],[12,16],[10,25],[9,20],[15,32],[15,39],[16,53],[8,31],[8,29],[10,40],[0,35],[20,38],[0,1],[-1,65],[4,32],[-6,56],[-6,54],[3,36],[6,20],[22,26],[13,36],[12,20],[8,21],[7,29],[-1,37],[-3,32],[0,21],[3,21],[0,23],[-4,31],[-6,24],[-5,30],[-2,23],[-8,35],[-12,44],[-1,24],[1,26],[11,29],[11,24],[7,18],[3,26],[7,28],[2,21],[1,27],[-3,11],[-5,17],[-16,-60],[-6,-17],[-9,-30],[-3,25],[0,9],[-1,23],[-20,-6],[-22,-23],[2,10],[1,14],[12,14],[10,12],[17,27],[-14,21],[-24,-22],[-17,-14],[-3,-2],[-14,16],[10,15],[8,12],[-13,3],[-9,3],[-17,12],[-12,-10],[-12,-14],[-1,-2],[-19,-17],[-11,-7],[-4,-3],[-2,7],[-3,13],[-17,-12],[-12,11],[1,3],[3,13],[-13,2],[-25,1],[-16,14],[-3,3],[-10,23],[-2,22],[26,11],[15,22],[-4,26],[-9,36],[-19,6],[-20,-12],[1,17],[12,15],[5,11],[3,7],[1,23],[8,18],[6,16],[-18,12],[-23,0],[-16,-18],[-18,23],[-18,7],[4,-6],[6,-12],[-1,-10],[-2,-11],[-20,10],[-8,17],[-2,7],[-9,-11],[-10,-12],[-29,-14],[-17,-10],[-21,-15],[-4,-2],[-16,-7],[-22,-10],[-3,-1],[-11,-5],[-26,-13],[-8,-3],[-30,-13],[-14,-14],[-29,-13],[-24,-5],[-29,-16],[-26,-13],[-32,-14],[-39,-11],[-12,-20],[-24,-3],[-22,-7],[-13,-7],[-13,-5],[-27,2],[25,17],[18,12],[8,14],[16,28],[19,59],[-16,77],[-24,46],[-16,35],[-1,1],[2,45],[31,25],[8,37],[-12,13],[-45,1],[-48,-9],[-40,-40],[-7,-41],[13,-21],[4,-7],[-21,-1],[11,-44],[-17,-33],[-63,-44],[-42,-51],[-27,-63],[16,-86],[25,-48],[58,0],[17,13],[17,-9],[-15,-23],[-23,-29],[-14,-21],[-12,-15],[-15,-20],[-23,-29],[0,-21],[-23,-4],[-17,-32],[-27,-24],[-15,-18],[-20,-28],[-23,-28],[-23,-33],[-13,-25],[-13,-25],[6,-20],[-14,-22],[-12,-18],[-5,-23],[-29,-49],[-14,-31],[-9,-32],[0,-34],[-10,-43],[-4,-34],[-4,-31],[-11,-27],[-12,-22],[-11,-20],[-20,-17],[-26,-16],[-41,-25],[-27,-15],[-45,-26],[-36,-13],[-23,-11],[-88,-20],[-26,-1],[-44,17],[1,16],[17,10],[2,10],[-16,17],[-33,25],[-25,25],[-12,24],[23,7],[28,9],[-2,21],[-12,17],[-15,33]],[[68600,35756],[-4,-7],[-49,-78],[-34,-56],[-26,-43],[-12,-19],[-5,-8],[-12,-21],[-8,-13],[-5,-9],[-24,-38],[-23,-37],[-12,-18],[-4,-10],[-14,-22],[-8,-13],[-3,-4],[-19,-31],[-18,-29],[-9,-16],[-6,-9],[-6,-10],[-39,-64],[-22,-34],[-8,-14],[-9,-15],[-8,-12],[-22,-37],[-238,-386],[-33,-54],[-1,-1],[-32,-53],[-8,-12],[-17,-28],[-4,-6],[-14,-22],[-27,-43],[0,-1],[-8,-13],[-19,-31],[-13,-21],[-23,-36],[-16,-26],[-9,-17],[-17,-37],[-31,-59],[-18,-27],[-14,-23],[-43,-70],[-10,-16],[-31,-49],[-11,-17],[-10,-17],[-7,-10],[-15,-26],[-7,-10],[-6,-9],[-26,-43],[-9,-13],[-40,-63],[-1,0],[-36,-58],[-5,-9],[-48,-75],[-21,-35],[-23,-36],[-6,-9],[-15,-24],[-6,-11],[-14,-23],[-17,-25],[-10,-16],[-13,-21],[-33,-52],[-7,-12],[-4,-7],[-11,-17],[-8,-13],[-7,-11],[-7,-11],[-6,-10],[-7,-11],[-22,-34],[-22,-35],[-5,-9],[-11,-17],[-25,-40],[-22,-35]],[[67022,33194],[-58,1],[-85,1],[-89,1],[-19,0],[-14,0],[-89,2],[-53,1],[-13,0],[-17,0],[-14,0],[-43,1],[-57,2],[-15,0],[-67,2],[-65,2],[-2,0],[-24,0],[-34,1],[-17,0],[-60,1],[-44,1],[-1,0],[-11,1],[-9,-1],[-36,1],[-36,1],[-36,0],[-13,1],[-23,0],[-35,0],[-17,0],[-13,0],[-30,0],[-35,1],[-36,0],[-20,0],[-19,0],[-46,1],[-22,0],[-108,-1],[-43,0],[-86,0],[-76,2],[-51,1],[-53,1],[-125,3],[-6,-3],[-5,-3],[-20,-12],[-40,-23],[-47,-31],[-99,-60],[-1,13],[-11,11],[-5,14],[2,9],[-5,9],[-22,25],[-6,10],[1,14],[-17,24],[16,23],[-1,10],[-5,11],[-5,9],[-4,14],[-11,4],[-5,9],[-5,15],[-7,7],[-6,6],[0,10],[-3,9],[-1,11],[0,12],[-3,12],[-7,5],[-5,8],[-9,5],[-3,11],[8,-2],[9,0],[2,10],[3,9],[0,14],[-1,10],[-2,13],[-7,6],[-7,8],[4,9],[1,10],[3,15],[4,8],[2,12],[-8,4],[-7,2],[-8,-3],[-7,6],[-7,10],[-2,11],[6,8],[8,3],[4,8],[4,10],[0,10],[-2,11],[-2,12],[-6,7],[-6,6],[-5,12],[-4,11],[2,11],[-9,8],[-12,31],[4,9],[9,6],[10,2],[10,2],[1,13],[-5,10],[-5,9],[-5,9],[-5,6],[-6,8]],[[64784,33783],[9,5],[8,4],[0,11],[15,22],[9,6],[8,9],[10,3],[10,2],[9,1],[10,-3],[8,1],[9,6],[-4,8],[3,11],[4,9],[-9,3],[-7,7],[-8,11],[-7,10],[-6,6],[-7,6],[-4,14],[-2,9],[5,10],[9,1],[11,-3],[9,-1],[8,-2],[8,1],[7,6],[5,9],[10,9],[5,9],[0,14],[0,13],[-3,12],[-3,9],[-4,15],[-6,15],[-5,7],[-6,9],[-2,10],[0,10],[-9,0],[-8,-1],[-8,11],[-4,12],[5,7],[9,1],[5,8],[-6,11],[-6,7],[-6,8],[-7,8],[-4,10],[-6,14],[-9,2],[-9,-2],[-10,-7],[-7,-11],[-7,-5],[-9,-4],[-7,-8],[-8,2],[-6,5],[-5,11],[-1,12],[8,7],[7,8],[-7,8],[-9,-2],[-7,-7],[-6,-7],[-6,6],[3,11],[-1,9],[-9,6],[-11,4],[-8,-4],[3,-10],[-4,-9],[-7,-1],[-1,-11],[7,-3],[6,-7],[-1,-13],[-2,-11],[-6,-8],[-10,-6],[-9,-4],[-11,-8],[-13,-6],[-9,1],[1,12],[1,12],[1,12],[-7,7],[-7,-14],[-7,-8],[-10,-4],[-9,-1],[-12,6],[-13,3],[-6,-6],[-7,-4],[-13,1],[-11,1],[-9,1],[-9,5],[-5,7],[-3,12],[0,12],[-1,9],[-3,11],[-7,9],[-2,10],[2,10],[5,10],[6,12],[-5,10],[-5,9],[1,16],[-1,11],[0,10],[-2,11],[-7,7],[-14,-2],[-3,-14],[-5,-8],[-7,8],[-9,8],[-8,0],[-9,4],[-15,4],[-12,-2],[-11,1],[-9,-4],[-8,-8],[-3,-10],[-3,-14],[5,-8],[8,2],[11,0],[9,-2],[5,-8],[4,-9],[-4,-11],[4,-11],[9,-9],[5,-7],[4,-10],[-5,-9],[-10,-2],[-13,1],[-12,2],[-10,3],[-8,6],[-8,6],[-10,9],[-6,8],[-4,9],[-4,10],[-5,12],[-5,10],[-1,14],[0,14],[3,11],[5,12],[5,9],[5,7],[3,3],[5,10],[-2,12],[-5,10],[-8,6],[-7,5],[-3,9],[-3,12],[-3,8],[3,11],[-5,10],[-7,2],[-9,0],[-8,6],[-8,3],[-6,-8],[-7,-5],[-8,-3],[-8,1],[-7,6],[-3,12],[3,12],[3,11],[8,5],[10,3],[0,11],[-7,8],[-8,5],[-8,-4],[-9,0],[-9,6],[2,12],[6,8],[-8,6],[-7,8],[-6,6],[-7,6],[-12,0],[-8,0],[-9,6],[-9,4],[-10,-1],[-10,-2],[-12,0],[-6,6],[-10,5],[-6,-5],[-10,-3],[-8,8],[4,9],[2,15],[-3,11],[-5,9],[-6,6],[-5,8],[-2,14],[-5,10],[-3,17],[-2,10],[2,10],[-4,10],[-6,8],[-7,6],[-8,4],[-9,3],[-8,1],[-9,5],[-5,11],[3,9],[8,2],[8,0],[10,2],[7,-7],[8,2],[9,2],[7,4],[6,7],[0,11],[-2,11],[-7,12],[-8,6],[-8,3],[-9,2],[-8,-5],[-2,-10],[-4,-10],[-9,-4],[-7,-1],[-9,6],[-2,10],[0,10],[1,14],[-3,9],[-7,14],[-5,9],[-7,6],[-8,5],[-9,5],[-8,3],[-11,3],[-8,2],[-11,1],[-8,1],[-9,1],[-10,-1],[-9,-2],[-8,-5],[-11,-7],[-5,-12],[0,-15],[-4,-11],[-5,-8],[-8,-6],[-9,-1],[-10,1],[-9,5],[-6,8],[2,10],[3,11],[-6,8],[-8,4],[-11,1],[-9,-13],[-2,-10],[-3,-14],[-2,-10],[1,-10],[3,-9],[4,-8],[6,-11],[10,-7],[8,0],[11,-7],[5,-8],[2,-9],[-3,-10],[-5,-8],[-10,-2],[-8,0],[-11,3],[-10,3],[-8,9],[-7,5],[-8,4],[-9,5],[-8,4],[-10,-2],[-8,0],[-7,5],[-7,3],[-6,6],[-6,14],[-2,12],[-1,9],[-5,9],[-7,6],[-1,1],[-14,5],[-26,-1],[-3,-1],[-32,18],[-11,12],[-15,34],[-18,17],[-23,11],[-9,5],[-19,0],[-13,-4],[-12,4],[-1,9],[2,21],[-5,17],[-6,6],[-13,15],[-3,9],[-4,36],[-1,12],[-8,11],[-9,7],[-5,8],[-3,14],[17,45],[-3,10],[0,2],[-4,7],[-9,3],[-27,24],[-15,12],[2,13],[2,17],[0,13]],[[85414,35102],[-3,-15],[-8,-38],[-10,-43],[-9,-44],[-20,-95],[-2,-10],[-10,-42],[-9,-43],[-6,-31],[-4,-17],[-8,-33],[-9,-31],[-7,-37],[-7,-35],[-2,-11],[-3,-10],[-3,-10],[-4,-16],[-3,-14],[-10,-46],[-8,-35],[-22,-99],[0,-1],[-6,-27],[-5,-19],[0,-1],[-2,-9],[-3,-19],[-16,-68],[0,-2],[-33,-153],[-30,-137],[-16,-68],[-14,-63],[-52,-1],[-52,-1],[-9,0],[-13,0],[-6,0],[-178,-2],[-355,-3],[0,-19],[-5,-16],[-3,-10],[-3,-10],[-1,-14],[-1,-12],[-1,-10],[-4,-9],[-10,-1],[-7,-5],[-11,-6],[-4,-11],[0,-10],[8,-13],[8,-8],[6,-6],[8,-8],[5,-10],[3,-9],[3,-12],[4,-12],[7,-5],[5,-9],[4,-9],[11,-28],[3,-10],[2,-10],[-2,-13],[-1,-11],[-11,-10],[-7,-9],[-2,-12],[2,-11],[5,-11],[8,-13],[2,-16],[-6,-7],[-9,-7],[-10,-4],[-15,-6],[-11,-14],[-11,-9],[-7,-6],[-13,-6],[-7,-3],[-8,0],[-12,3],[-11,3],[-12,-1],[-8,-2],[-9,-6],[-10,-11],[-5,-8],[-6,-10],[-7,-9],[-15,-22],[-3,-12],[-5,-19],[-5,-17],[-7,-16],[-6,-16],[0,-10],[0,-14],[-2,-12],[-3,-10],[-1,-4],[-2,-10],[-5,-18],[-4,-17],[-6,-9],[-9,-6],[-6,-11],[1,-10],[6,-8],[11,-7],[10,-10],[12,-7],[7,-9],[9,-12],[-3,-10],[-6,-9],[-8,-5],[-7,-2],[-8,-1],[-7,-1],[-6,-1],[-15,-6],[-6,-9],[-2,-10],[1,-13],[8,-15],[5,-10],[6,-7],[7,-10],[4,-11],[-2,-15],[-6,-10],[-11,-10],[-8,-3],[-13,-6],[-14,-7],[-12,-6],[-8,-10],[-5,-14],[-2,-11],[-1,-18],[-12,-25],[-1,-3],[-5,-9],[-9,4],[-11,3],[-7,4],[-8,-4],[-9,-1],[-8,0],[-11,-2],[-17,2],[-11,9],[-2,9],[-3,9],[-8,-1],[-3,-10],[-13,-7],[-8,-15],[-13,-7],[-12,-13],[-11,-10],[-12,-7],[-2,-10],[-7,-12],[-4,-13],[-7,-6],[-19,-18],[-11,-5],[-7,-9],[-10,-11],[-9,-5],[-11,-9],[-10,-21],[-7,-10],[7,-4],[7,-5],[10,-6],[6,-9],[9,-7],[9,-15],[3,-21],[0,-12],[2,-13],[-6,-5],[-4,-10],[-6,-10],[-7,-12],[-9,-5],[-2,-10],[-8,-6],[-12,5],[-7,-8],[-9,1],[-9,-2],[-11,7],[-8,6],[-8,3],[-8,7],[-11,4],[1,11],[-9,1],[-7,-3],[-9,-2],[-6,-10],[-2,-10],[-10,-1],[-12,-4],[-10,1],[-8,1],[-10,-3],[-11,3],[-9,5],[-10,-1],[-8,-10],[-3,-12],[-5,-11],[-8,1],[-8,13],[-8,5],[-8,4],[-7,7],[-8,1],[-8,2],[-18,16],[-5,10],[-6,15],[-24,3],[-9,-3],[-9,5],[-14,0],[-12,5],[-88,34],[-16,6],[-50,19],[-48,19],[-45,17],[-6,2],[-50,19],[-17,7],[-3,0],[-146,57],[-71,27],[-13,5],[-1,0],[-23,8],[-20,9],[-27,-28],[-15,-17],[-29,-33],[-39,-44],[-21,-25],[-45,-49],[-9,-10],[-6,-7],[-47,-51],[-6,6],[-17,18],[-23,24],[-14,14],[-26,28],[-6,7],[-12,12],[-32,-35],[-43,-48],[-13,-15],[-26,-29],[-17,-19],[-1,-2],[-7,-8],[-23,-24],[-217,-245]],[[82191,32124],[-7,7],[-2,2],[-7,8],[-5,14],[-8,5],[-17,-3],[-12,5],[-9,9],[-4,3],[-10,2],[-9,-4],[-23,-1],[-16,-5],[-8,3],[-9,11],[-9,6],[-10,-2],[-16,-15],[-9,-6],[-10,-1],[-10,-4],[-10,-4],[-9,0],[-7,2],[-7,7],[-1,17],[-1,13],[-10,8],[-14,8],[-12,14],[-4,15],[-1,28],[1,13],[0,3],[-11,19],[-4,13],[-10,23],[-6,8],[-6,14],[-1,18],[-4,11],[-4,15],[-9,8],[-6,10],[-2,13],[-9,5],[-16,13],[-8,19],[6,9],[4,11],[4,24],[-3,16],[2,11],[8,12],[14,16],[3,11],[-2,11],[-5,9],[-3,9],[-6,8],[-11,0],[-7,-4],[-12,-4],[-8,7],[-7,6],[-11,3],[-16,9],[-8,1],[-10,-4],[-9,3],[-15,9],[-16,3],[-7,4],[-8,0],[-8,-1],[-8,5],[-8,2],[-4,12],[-3,9],[-8,18],[0,18],[-6,9],[-26,27],[-18,3],[-8,-2],[-10,-3],[-13,-1],[-18,-5],[-10,2],[-29,14],[-9,0],[-7,8],[-14,6],[-10,0],[-8,1],[-9,4],[-21,16],[-5,7],[-9,4],[-8,7],[-3,12],[7,11],[-2,14],[0,10],[-8,8],[-11,9],[-4,9],[-1,18],[6,12],[0,12],[9,-2],[7,3],[2,9],[0,13],[9,7],[6,-7],[6,-7],[5,8],[-1,14],[10,5],[6,-7],[8,0],[12,7],[10,-5],[7,6],[-1,10],[0,12],[8,10],[-3,9],[2,9],[8,3],[7,2],[-7,5],[-13,11],[-8,3],[-7,-11],[-6,8],[-5,9],[-12,6],[-2,11],[0,7],[0,7],[-3,9],[-1,12],[-7,13],[-4,9],[-6,16],[-4,11],[2,10],[-9,4],[-5,8],[-5,14],[-11,5],[-8,7],[-9,0],[-8,11],[1,11],[-12,6],[-8,-4],[-7,13],[-9,0],[-7,-5],[-9,1],[-10,1],[-10,-7],[-7,4],[-9,11],[-4,8],[-6,7],[-6,8],[7,5],[-2,9],[0,14],[5,9],[-4,13],[-2,11],[-5,7],[-6,8],[2,11],[-1,10],[-4,12],[7,5],[-6,7],[0,10],[-1,11],[-4,8],[-1,3],[-7,8],[-3,9],[-3,9],[-3,10],[4,10],[2,12],[8,9],[-2,10],[-10,9],[-3,12],[-8,7],[-9,-3],[-12,-1],[-15,-6],[-12,1],[-9,1],[-10,8],[-1,15],[-4,8],[-7,11],[-10,8],[0,13],[-11,2],[-8,7],[2,9],[1,16],[7,8],[4,11],[-7,11],[-5,8],[-3,10],[1,12],[-3,8],[-9,12],[-6,11],[-5,8],[-3,11],[-8,7],[-9,-1],[-8,-2],[-5,-7],[-8,-4],[-9,-6],[-9,-1],[-9,-1],[-2,0],[-9,0],[-12,-16],[-10,-6],[-11,3],[-13,-1],[-11,8],[-9,14],[-17,23],[-1,9],[-10,7],[-17,3],[-2,12],[-3,0],[-6,0],[-9,4],[-6,12],[2,11],[-8,9],[-10,3],[-20,-2],[-14,2],[-14,-1],[-16,2],[-13,-2],[-6,10],[-8,6],[-13,2],[-8,7],[-2,9],[1,10],[10,4],[10,4],[16,8],[6,10],[11,9],[-3,25],[-8,4],[-9,9],[-8,1],[-3,-9],[-32,4],[-8,9],[2,10],[6,8],[1,11],[-9,11],[-5,-9],[-9,-3],[-8,0],[-11,5],[-4,9],[3,10],[-1,11],[-9,6],[-12,2],[-10,0],[-8,5],[-4,28],[-1,10],[3,10],[-3,18],[-4,10],[-1,12],[-9,4],[-11,-1],[-9,8],[-14,1],[-9,4],[-13,0],[-11,5],[3,13],[-8,5],[-2,10],[7,19],[7,13],[8,9],[-2,9],[-11,5],[0,13],[6,9],[-2,11],[-8,7],[-2,9],[6,13],[-3,9],[2,13],[8,-3],[5,-13],[8,3],[6,6],[6,10],[6,8],[8,10],[9,-3],[8,-8],[8,-4],[20,-9],[8,1],[13,7],[9,-4],[9,-1],[10,7],[15,-4],[15,2],[21,2],[27,27],[13,-6],[7,4],[9,-3],[8,3],[-4,10],[3,11],[6,8],[1,9],[9,5],[6,8],[7,10],[-1,11],[-9,3],[-8,4],[0,12],[5,16],[-6,8],[-10,8],[-13,6],[-4,-9],[-14,-2],[-6,7],[-16,8],[-9,8],[-10,1],[-8,2],[-8,-1],[-9,-9],[-8,2],[-9,-1],[-8,5],[-20,-1],[-10,0],[-9,-3],[-12,7],[-7,5],[-13,4],[-10,5],[-7,0],[-1,12],[-1,9],[-5,9],[7,5],[4,9],[-5,8],[-10,3],[-5,11],[5,9],[8,3],[9,7],[11,17],[0,10],[-4,9],[-11,9],[0,9],[-10,4],[1,10],[-3,14],[2,9],[-5,9],[1,10],[0,11],[4,11],[0,3],[1,16],[-13,15],[6,9],[9,-2],[9,-5],[9,-7],[6,8],[1,12],[10,2],[7,-5],[5,-14],[8,6],[5,10],[12,1],[17,-1],[11,7],[1,10],[-10,14],[-10,0],[3,10],[10,13],[5,9],[-1,10],[1,13],[-6,8],[-6,7],[7,9],[2,11],[-7,9],[-7,15],[-5,12],[-5,10],[0,24],[1,15],[-19,4],[-6,9],[-19,8],[-9,5],[-19,5],[-14,9],[-12,8],[-5,8],[-8,0],[-6,17],[-3,11],[-3,9],[-6,13],[-5,14],[-2,17],[5,13],[-3,12],[2,15],[-5,10],[0,13],[9,9],[3,14],[8,6],[5,10],[-3,14],[-12,14],[-12,8],[-24,-1],[-12,-2],[-12,6],[-16,7],[-12,13],[-7,7],[-6,9],[-6,7],[-10,7],[-7,3],[-11,10],[-33,19],[-14,4],[-18,1],[-8,4]],[[72333,35551],[-11,-10],[-3,-3],[-9,-8],[-7,-6],[-14,-10],[-73,-71],[-18,-17],[-12,-11],[-40,-39],[-114,-110],[-10,-9],[-9,-9],[-15,-15],[-52,-49],[-25,-24],[-8,-9],[-15,-13],[-32,-41],[1,-72],[0,-35],[1,-84],[2,-88],[3,-106],[2,-116],[2,-66],[2,-110],[-19,-68],[-21,-92],[-1,-4],[-21,-86],[-4,-15],[-2,-9],[-8,-32],[-10,-39],[-9,-39],[-24,-98],[-9,-35],[-3,-13],[-1,-2],[-2,-9],[-6,-24],[-10,-39],[-3,-13],[-5,-17],[-2,-10],[-22,-90],[-13,-56],[-9,-37],[-5,-18],[-6,-20],[-3,-9],[-20,-82],[-18,-71],[-6,-25],[-15,-66],[-7,-26],[-4,-9]],[[71591,33267],[-45,-40],[-32,-30],[-10,-8],[-10,-9],[-6,-5],[-9,-8],[-14,-13],[-73,-66],[-21,-19],[-40,-36],[-94,-84],[-8,-8],[-9,-8],[-2,-2],[-89,-81],[-47,-41],[-89,-81],[-1,0],[-49,-44],[-50,-46],[-22,-19],[-3,-4],[-68,-60],[-50,-46],[-15,-13],[-30,-27],[-104,-94],[-18,-16],[-20,-18],[-29,-26],[-61,-55],[-5,-5],[-3,-2],[-34,-31],[-49,-44],[-50,-45],[-56,-51],[-30,-27],[-18,-16],[-35,-31],[-61,-55],[-30,-27],[-72,-65],[-40,-35],[-1,0],[-24,-22],[-42,-37],[-11,-11],[-32,-28],[-19,-17],[-63,-56],[-59,-53],[-74,-66],[-4,-4],[-5,-4],[-38,-35],[-7,-7],[-14,-13],[-15,-14],[-23,-21],[-12,-11],[-38,-35],[-24,-23],[-40,-37],[-49,-46],[-13,-12],[-46,-42],[-40,-37],[-15,-14],[-89,-82],[-10,-10],[-63,-58],[-10,-9],[-54,-50],[-19,-18],[-17,-15],[-11,-10],[-42,-40],[-58,-53],[-27,-25],[-38,-35],[-17,-14],[-59,-57],[-16,-15]],[[68752,30690],[-6,7],[-57,69],[-34,38],[-25,32],[-48,57],[-40,48],[-3,4],[-137,164],[-34,41],[-5,5],[-48,59],[-7,8],[-46,55],[-87,104],[-63,76],[-31,36],[-104,125],[-6,6],[-12,15],[-1,1],[-25,30],[-12,14],[-47,57]],[[67874,31741],[-14,17],[-29,34],[-123,147],[-50,61],[-6,8],[-33,42],[-14,18],[-6,7],[-11,15],[-7,8],[-14,19],[-17,18],[-6,10],[-2,3],[-5,7],[-16,20],[-38,49],[-21,27],[-13,17],[-25,31],[-15,20],[-19,24],[-10,12],[-25,32],[-94,116],[-54,66],[-35,45],[-45,55],[-23,28],[-7,8],[-14,17],[-14,18],[-7,8],[-29,37],[-34,41],[-44,55],[-8,9],[-23,28],[-18,23],[-24,29],[5,8],[27,44],[21,32],[46,74],[14,23],[18,29],[9,14]],[[64784,33783],[-55,-44],[-37,-54],[-8,-10],[-47,-70],[-32,-48],[-19,-27],[-10,-16],[-8,-12],[-10,-15],[-16,-25],[-11,-16],[-31,-46],[-30,-45],[-16,-24],[-19,-28],[-15,-23],[-9,-13],[-8,-12],[-17,-26],[-7,-13],[-6,-8],[-17,-28],[-53,-79],[-53,-81],[-1,-2],[-10,-13],[-42,-63],[-79,-118],[-17,-25],[-30,-46],[-14,-20],[-28,-44],[-11,-15],[-22,-33],[-18,-27],[-18,-28],[-6,-9],[-44,-66],[-8,-11],[-32,-50],[-7,-10],[-19,-28],[-58,-86],[-11,-17],[-6,-11],[-38,-57],[-9,-14],[-46,-68],[-11,-18],[-14,-21],[-29,-44],[-47,-68],[-20,-28],[-5,-6],[-31,-47],[-8,-12],[-11,-16],[-14,-19],[-13,-20],[-21,-31],[-7,-10],[-72,-106],[-26,-39],[-9,-13],[-13,-20],[-12,-17],[-20,-30],[-58,-86],[-13,-19],[-11,-15],[-6,-9],[-7,-11],[-18,-26],[-50,-73],[-20,-31],[-46,-68],[-6,-8],[-9,-13],[-40,-59],[-26,-38],[-37,-55],[-30,-46],[-13,-19],[-30,-46],[-1,0],[-72,-108],[-19,-28],[-74,-102]],[[62707,30734],[-26,10],[-25,12],[-32,12],[-61,26],[-9,4],[-26,10],[-1,1],[-35,16],[-16,6],[-10,5],[-18,7],[-56,24],[-56,24],[-134,56],[-75,32],[-2,1],[-77,33],[-11,4],[-2,1],[-14,7],[-22,8],[-30,13],[-16,7],[-11,5],[-32,13],[-11,5],[-19,8],[-8,3],[-30,13],[-15,6],[-7,3],[-13,5],[-10,5],[-26,11],[-79,33],[-30,12],[-11,5],[-11,5],[-41,17],[-34,14],[-15,7],[-56,23],[-55,24],[-12,5],[-73,30],[-9,4],[-15,7],[-18,7],[-31,13],[-37,16],[-8,3],[-9,4],[-30,13],[-7,3],[-46,19],[-44,19],[-23,10],[-29,13],[-9,4],[-80,33],[-10,4],[-15,7],[-57,24],[-54,23],[-27,11],[-12,5],[-63,26],[-60,26],[-12,5],[-32,13],[-49,21],[-9,3],[-47,20],[-8,4],[-14,5],[-9,4],[-33,14],[-53,22],[-61,26],[-49,21],[-16,7],[-60,25],[-85,36],[-28,10],[-77,33],[-65,27],[-26,11],[-19,8],[-2,1],[-7,3],[-5,2],[-9,4],[-14,6],[-12,5],[-51,21],[-30,13],[-57,24],[-20,9],[-13,6],[-7,4]],[[59682,32012],[0,31],[0,25],[0,23],[0,33],[0,33],[0,32],[0,87],[0,31],[0,75],[0,51],[-1,62],[0,15],[0,28],[1,36],[0,22],[0,6],[1,84],[0,4],[0,6],[0,13],[0,64],[-1,93],[0,134],[0,5],[0,82],[0,3],[-1,56],[0,34],[0,38],[-1,114],[0,66],[0,51],[0,10],[0,76],[0,45],[0,109],[0,61],[-1,31],[0,75],[0,83],[0,24],[0,40],[-1,3],[0,69],[0,10],[0,60],[-1,38],[-1,176],[0,36],[-1,167],[0,1],[0,54],[0,65],[0,2],[0,23],[0,19],[0,32],[0,31],[0,10],[-1,61],[0,111],[0,55],[-1,83],[0,9],[0,1],[1,10],[-1,10],[0,25],[0,45],[0,56],[0,68],[0,9],[0,33],[0,44],[0,27],[-1,78],[1,38],[0,22],[0,19],[0,48],[0,41],[-1,95],[5,135],[2,229]],[[59682,32012],[0,-15],[0,-35],[0,-29],[1,-11],[-1,-11],[0,-43],[0,-19],[0,-13],[0,-10],[0,-11],[0,-9],[0,-69],[0,-19],[0,-44],[0,-5],[0,-7],[0,-41],[0,-126],[0,-12],[0,-82],[0,-112],[0,-46],[0,-51],[-1,-72],[0,-36],[0,-8],[0,-12],[0,-20],[0,-142],[0,-66],[0,-171],[0,-66],[-1,-11],[1,-34],[-1,-26],[1,-19]],[[59681,30509],[-44,0],[-44,0],[-37,0],[-34,0],[-36,0],[-86,-1],[-56,0],[-44,0],[-22,0],[-9,0],[-31,0],[-16,0],[-53,-1],[-24,4],[-230,0],[-34,0],[-25,0],[-73,0],[-9,0],[-31,1],[-10,0],[-29,0],[-40,1],[-64,0],[-17,0],[-37,0],[-6,0],[-5,0],[-8,0],[-57,1],[-45,0],[-10,0],[-22,0],[-39,2],[-12,0],[-28,0],[-35,0],[-62,1],[-24,-1],[-72,-1],[-49,0],[-8,0],[-130,0],[-15,0],[-25,0],[-60,-1],[-51,0],[-33,0],[-27,0],[-18,0],[-40,0],[-38,0],[-23,0],[-97,0],[-6,0],[-95,0],[-81,0],[-48,1],[-35,-4],[-70,1],[-19,0],[-60,0],[-48,1],[-23,0],[-84,1],[-46,0],[-86,0],[-11,0],[-19,1],[-30,0],[-6,-1],[-10,-1],[-22,0],[-19,0],[-9,0],[-10,0],[-24,0],[-25,-1],[-28,1],[-11,0],[-96,1],[-9,0],[-16,0],[-16,0],[-26,0],[-111,1],[-18,5],[-8,-1],[-43,0],[-128,0],[-10,0],[-52,0],[-44,0],[-29,0],[-8,0],[-39,0],[-45,0],[-21,0],[-55,0],[-13,0],[-60,0],[-100,0],[-74,0],[-9,0],[-104,-1],[-3,0],[-19,0],[-58,0],[-29,0],[-23,0],[-22,0],[-33,0],[-68,0],[-18,0],[-53,0],[-12,0],[-28,0],[-21,0],[-16,0]],[[55045,30518],[0,15],[0,2],[1,49],[0,25],[1,84],[0,25],[1,15],[0,24],[0,18],[0,18],[3,43],[0,30],[0,19],[0,28],[0,15],[0,15],[0,33],[0,16],[0,16],[0,68],[0,80],[0,22],[0,20],[0,39],[0,13],[0,16],[0,63],[0,43],[0,52],[0,20],[0,12],[0,9],[0,13],[0,23],[0,28],[1,124],[0,13],[0,117],[0,17],[1,79],[0,134],[0,29],[0,1],[1,82],[0,29],[0,23],[0,10],[0,108],[1,52],[0,4],[0,15],[0,38],[0,1],[0,15],[0,9],[0,40],[1,89],[0,41],[0,4],[0,56],[0,93],[0,8],[0,7],[1,71],[0,19],[0,18],[1,21],[-1,26],[0,60],[0,14],[0,38],[0,29],[0,55],[-1,65],[0,58],[0,101],[0,156],[-1,54],[0,40],[0,74],[0,41],[0,95],[0,36],[1,28],[-1,76],[0,14],[0,22],[1,29],[0,44],[-1,40],[1,11],[0,17],[0,16],[0,40],[1,26],[-1,29],[-1,41],[-2,84],[2,30],[0,51],[0,59],[1,34],[1,58],[0,12],[0,31],[0,26],[0,48],[0,12],[1,90],[0,68],[0,19],[0,35],[0,28],[0,59],[0,51],[-1,135],[1,50],[1,22],[0,25],[0,12],[1,19],[1,65],[0,1],[1,12],[-1,46],[0,22],[0,50],[0,21]],[[82191,32124],[10,-12],[8,-5],[22,-11],[3,-9],[-8,-9],[-62,-70],[-8,-9],[-60,-64],[-74,-83],[-32,-37]],[[81990,31815],[-9,-11],[-47,-51],[-24,-29],[-11,-12],[-13,-14],[-15,-18],[-31,-34],[-42,-47],[-103,-115],[-35,-39],[0,-1],[-28,-30],[-35,-39],[-54,-60],[-77,-86],[-162,-181],[-8,-10],[-112,-76],[0,-1],[-18,-12],[-13,-9],[-2,-1],[-107,-74],[-13,-8],[-2,-1],[-21,-14],[-10,-6],[-47,-33],[-98,-65],[-54,-37],[-24,-16],[-39,-25],[-1,-1],[-28,-18],[-56,-37],[-18,-11],[-94,-62],[-66,-43],[-9,-7],[-50,-33],[-87,-57],[-43,-27],[-160,-104],[-46,-31],[-67,-43],[-42,-27],[-21,-14],[-40,-26],[-5,-3],[-9,-6],[-30,-20],[-29,-19],[-111,-73],[-22,-14],[-14,-10],[-41,-26],[-26,-17],[-45,-29],[-9,-6],[-46,-30],[-66,-43],[-1,-1],[-49,-32],[-37,-24],[-63,-41],[-17,-11],[-7,-5],[-69,-46],[-8,-5],[-78,-53],[-57,-37],[-12,-8],[-14,-9],[-36,-20],[-35,-23],[-59,-38],[-60,-39],[-9,-6],[-57,-37],[-24,-18],[-72,-45],[-14,-8]],[[78677,29317],[-37,40],[-47,51],[-3,2],[-55,60],[-7,7],[-13,14],[-8,9],[-37,38],[-18,18],[-51,55],[-17,19],[-16,17],[-15,16],[-140,148],[-38,40],[-15,15],[-130,138],[-23,25],[-196,208],[-20,21],[-33,35],[-7,8],[-6,7],[-42,44],[-85,89],[-1,2],[-18,19],[-30,32],[-19,20],[-8,8],[-68,72],[-62,66],[-37,38],[-67,71],[-61,67],[-13,13],[-11,11],[-212,226],[-29,30],[-71,76],[0,1],[-39,41],[-76,80],[-65,70],[-25,27],[-2,2],[-166,177],[-7,7],[-84,90],[-85,90],[-90,82],[-55,60],[-11,12],[-28,31],[-8,8],[-13,15]],[[76019,32136],[-32,-29],[-70,-63],[-41,-36],[-9,-8],[-46,-41],[-8,-6],[-94,-82],[-206,-181],[-42,-37],[-85,-74],[-66,-57],[-42,-37],[-41,-36],[-15,-13],[-16,-13],[-92,-81],[-9,-7],[-12,-11],[-62,-53],[-94,-83],[-27,-23],[-59,-51],[-108,-94],[-39,-34],[-46,-40],[-79,-69],[-40,-35],[-7,-6],[-78,-69],[-29,-24],[-24,-22],[-32,-28],[-32,-28],[-9,-8],[-28,-25],[-9,-9],[-20,-19],[-20,-18],[-6,-5],[-15,-14],[-63,-57],[-18,-16],[-61,-56],[-14,-12],[-160,-147],[-27,-25]],[[73887,30254],[-64,84],[-8,11],[-34,45],[-67,90],[-11,14],[-69,93],[-35,46]],[[73599,30637],[-18,24],[-17,22],[-47,63],[-1,1],[-13,17],[-49,66],[-6,6],[-27,35],[-8,13],[-35,47],[-30,40],[-29,38],[-73,98],[-5,7],[-30,40],[-47,64],[-32,42],[-10,13],[-51,68],[-23,32],[-107,144],[-110,147],[-64,85],[-8,11],[-11,15],[-32,43],[-102,136],[-39,54],[-70,89],[-32,39],[-7,11],[-29,36],[-49,63],[-13,17],[-8,10],[-6,7],[-26,34],[-9,12],[-12,16],[-1,0],[-10,14],[-9,11],[-5,7],[-1,1],[-5,7],[-7,8],[-6,9],[-7,8],[-7,9],[-9,12],[-5,7],[-6,7],[-8,10],[-5,7],[-6,7],[0,1],[-7,9],[-16,19],[-38,49],[-16,21],[-31,39],[-15,19],[-86,111],[-9,11],[-34,43],[-22,28],[-6,9],[-8,9],[-16,21],[-8,10],[-7,9],[-22,28],[-12,15],[-62,80],[-14,18],[-35,45],[-39,49],[-11,14],[-44,57],[-15,19],[-21,27],[-24,31],[-8,10]],[[55045,30518],[-19,-1],[-17,0],[-18,0],[-41,0],[-9,0],[-20,0],[-94,-1],[-8,0],[-1,0],[-10,0],[-53,0],[-32,0],[-46,-1],[-10,0],[-12,0],[-18,0],[-44,0],[-66,-1],[-16,0],[-42,0],[-78,0],[-67,-3],[-38,-1],[-66,0],[-128,-1],[-30,0],[-18,0],[-12,0],[-27,0],[-51,-1],[-83,1],[-35,0],[-27,-3],[-54,0],[-20,0],[-12,0],[-59,-1],[-14,0],[-32,0],[-66,-1],[-79,-1],[-37,-2],[-33,0],[-14,0],[-24,0],[-75,0],[-20,0],[-8,0],[-51,-1],[-12,-1],[-12,0],[-34,0],[-67,0],[-30,-1],[-13,0],[-58,0],[-72,4],[-25,0],[-25,-1],[-62,-1],[-39,0],[-64,-1],[-71,-1],[-27,0],[-14,0],[-3,0],[-22,0],[-25,1],[-24,-1],[-9,0],[-13,-1],[-2,0],[-7,0],[-8,0],[-8,1],[-8,0],[-21,0],[-17,0],[-11,0],[-13,0],[-10,0],[-6,0],[-2,0],[-8,1],[-15,0],[-16,-1],[-12,0],[-35,0],[-23,0],[-28,0],[-55,-1],[-29,-1],[-66,0],[-51,-1],[-62,0],[-27,0],[-34,0],[-77,-1],[-3,0],[-43,0],[-91,0],[-13,0],[-56,0],[-31,-1],[-15,0],[-8,0],[-81,-1],[-27,0],[-29,-2],[-30,-1],[-45,0],[-121,-3],[-9,0],[-35,0],[-8,-1],[-45,1],[-97,0],[-78,0],[-28,-1],[-12,0],[-53,-1],[-13,0],[-12,0],[-45,-1],[-28,0],[-88,0],[-30,-1],[-21,-1],[-12,-1],[-15,0],[-26,-1],[-10,-1],[-6,0],[-16,-1],[-15,0],[-188,-1],[-17,0],[-1,-1],[-15,0],[-19,0],[-13,0],[-37,0],[-64,0],[-17,-1],[-48,0],[-26,0],[-20,-1],[-12,0],[-8,0],[-43,0],[-32,0],[-33,-1],[-102,-1],[-12,0],[-49,0],[-38,0],[-14,0]],[[49736,30471],[0,44],[0,95],[1,136],[0,66],[0,26],[0,10],[0,66],[-1,96],[0,74],[0,9],[0,24],[0,2],[0,19],[0,1],[0,27],[0,3],[0,6],[-1,52],[0,53],[0,14],[0,10],[0,5],[0,85],[0,5],[-1,255],[-1,192],[0,25],[0,9],[0,23],[0,40],[0,4],[0,28],[0,23],[0,26],[0,34],[0,37],[0,14],[0,22],[0,15],[0,11],[0,11],[0,83],[-1,25],[0,101],[0,13],[0,24],[0,84],[0,13],[0,17],[0,44],[0,23],[0,10],[0,1],[0,40],[0,6],[0,11],[0,20],[-1,113],[0,2],[0,25],[0,15],[0,27],[0,35],[-1,22],[0,42],[0,124],[0,10],[0,15],[0,12],[0,17],[0,19],[0,20],[0,15],[0,13],[0,15],[0,12],[0,50],[0,11],[0,16],[0,10],[0,1],[0,9],[0,15],[0,14],[0,17],[0,13],[0,23],[0,19],[0,23],[-1,36],[0,95],[0,21],[0,82],[0,16],[0,14],[0,13],[0,37],[0,5],[0,12],[0,14],[0,21],[0,19],[0,19],[0,13],[0,12],[0,16],[0,17],[0,20],[0,18],[0,16],[0,15],[0,11],[0,14],[0,4],[0,10],[0,12],[0,19],[0,12],[0,14],[0,10],[0,12],[1,13],[0,2],[0,14],[-1,39],[0,9],[0,13],[0,22],[0,35],[0,24],[1,40],[0,18],[1,17],[0,93],[0,63],[0,313],[0,22],[0,131],[0,52],[0,102],[0,183],[0,84],[0,111]],[[49736,30471],[-33,-1],[-9,0],[-10,0],[-54,-1],[-44,0],[-286,-2],[-29,0],[-44,0],[-67,-1],[-98,0],[-18,0],[-118,-1],[-129,-1],[-101,0],[-18,-4],[-32,0],[-8,0],[-93,1],[-103,1],[-186,1],[-82,0],[-13,0],[-87,1],[-128,0],[-42,0],[-72,1],[-105,1],[-96,-1],[-89,-1],[-3,0],[-132,-1],[-10,0],[-236,-2],[-9,0],[-1,0],[-149,-1],[-3,0],[-224,-5],[-72,0],[-8,0],[-318,-1],[-63,-1],[-177,0],[-47,-1],[-123,0],[-22,0],[-11,0],[-19,0],[-32,-1],[-34,0],[-1,0],[-8,0],[-21,2],[-47,0],[-81,-1],[-2,0],[-11,0],[-20,0],[-13,0],[-27,0],[-76,0],[-8,0],[-29,0]],[[45505,30452],[-4,10],[-24,73],[-7,22],[-6,13],[-15,32],[-3,6],[-13,18],[-25,36],[-2,3],[-11,15],[-2,3],[-4,4],[-7,8],[-11,10],[-12,6],[-3,2],[-30,17],[-27,15],[-9,5],[-3,1],[-20,7],[-6,2],[-7,0],[-5,0],[-3,0],[-1,0],[-4,1],[-19,4],[-20,10],[-30,15],[-27,17],[-8,5],[-26,16],[-42,27],[-10,7],[-9,9],[-83,96],[-4,6],[-3,4],[-2,6],[0,6],[1,7],[3,11],[6,10],[3,10],[3,8],[0,8],[-2,7],[-6,11],[-14,14],[-22,18],[-13,9],[-13,7],[-56,20],[-31,11],[-5,1],[-3,-2],[-3,-4],[-4,-1],[-3,2],[-6,4],[-12,11],[-3,4],[-4,4],[-2,5],[0,6],[1,10],[1,12],[0,8],[-2,7],[-3,5],[-3,4],[-5,3],[-5,1],[-4,0],[-5,-2],[-6,-1],[-4,0],[-7,2],[-7,4],[-10,7],[-6,5],[-4,5],[-3,4],[-22,35],[-1,2],[1,5],[2,7],[3,5],[4,5],[8,10],[7,7],[5,6],[26,36],[10,14],[9,19],[3,7],[1,10],[1,7],[0,4],[-2,36],[-1,7],[-2,9],[-6,17],[-12,31],[-2,3],[-3,2],[-5,3],[-4,0],[-14,3],[-3,0],[-3,0],[-4,-1],[-7,-2],[-4,-1],[-5,2],[-3,3],[-3,5],[-2,6],[-1,12],[0,13],[2,10],[9,26],[0,1],[2,6],[-3,34],[-20,46],[-4,8],[-19,38],[-16,34],[-6,12],[-6,8],[-4,4],[-4,0],[-4,-1],[-8,-5],[-8,-7],[-4,-3],[-3,-2],[-3,-1],[-15,-2],[-5,0],[-5,3],[-6,4],[-5,5],[-6,9],[-5,10],[-3,10],[-3,16],[-1,15],[0,2],[-1,0],[1,6],[2,12],[2,7],[3,7],[3,6],[5,6],[0,2],[3,5],[1,6],[1,5],[0,8],[0,3],[0,6]],[[89309,32184],[-3,-1],[-13,16],[-1,29],[25,18],[25,-12],[3,-22],[-12,-19],[-3,-6],[-21,-3]],[[89245,32333],[-21,-5],[-30,0],[-22,11],[18,17],[20,3],[19,7],[21,-11],[-5,-22]],[[89368,32477],[-15,-20],[-19,-6],[-4,-18],[-15,0],[-7,-19],[-13,7],[-15,-10],[-26,7],[-6,22],[-27,3],[-15,-5],[-15,17],[16,11],[28,9],[23,11],[21,-10],[6,-20],[18,10],[26,18],[20,1],[19,-8]],[[90667,32823],[19,-6],[17,4],[19,-26],[21,-20],[-21,-4],[-19,-16],[-43,-31],[-29,-22],[-38,-29],[-43,-35],[-30,-25],[-28,-22],[-22,-18],[-23,-19],[-17,-13],[-34,-29],[-29,-26],[-15,-17],[-22,-19],[-20,-21],[-14,-14],[-15,-14],[-14,-14],[-17,-17],[-10,-13],[-20,-15],[-11,-17],[-16,-3],[-14,-12],[-17,-11],[-16,-14],[-26,-19],[-26,-18],[-20,-15],[-12,-7],[-16,-13],[-26,-17],[-17,-10],[-11,-9],[-29,-22],[-18,-11],[-23,-15],[-11,-8],[-15,-9],[-18,-12],[-13,-9],[-37,-27],[-46,-34],[-24,-18],[-20,-14],[-27,-20],[-31,-14],[-21,-24],[-19,-10],[-27,-13],[-25,-13],[-16,-17],[-20,3],[-4,-20],[-20,-16],[-18,-14],[-26,-18],[-20,-15],[-15,-11],[-21,-16],[-17,-13],[-33,-24],[-24,-18],[-19,-14],[-61,-45],[-17,-12],[-48,-36],[-23,-16],[-33,-25],[-35,-25],[-27,-20],[-31,-22],[-23,-17],[-32,-23],[-20,-14],[-15,-11],[-44,-32],[-48,-35],[-16,-13],[-20,-14],[-21,-4],[-9,-18],[-13,-9],[-17,-13],[-28,-21],[-18,-13],[-12,-9],[-25,-19],[-56,-42],[-52,-39],[-19,-14],[-31,-24],[-22,-16],[-17,-13],[-36,-27],[-26,-19],[-17,-12],[-19,-16],[-23,-17],[-20,-16],[-18,-13],[-18,-15],[-31,-24],[-17,-13],[-11,-9],[-21,-16],[-25,-20],[-19,-15],[-40,-32],[-31,-25],[-16,-12],[-16,-14],[-28,-24],[-17,-14],[-14,-13],[-16,-14],[-17,-15],[-15,-12],[-31,-29],[-20,-20],[-18,-19],[-17,-18],[-13,-15],[-19,-26],[-18,-26],[-11,-18],[-12,-20],[-18,-13],[-42,-18],[-46,0],[-28,16],[11,24],[48,14],[34,25],[4,20],[19,26],[14,23],[16,26],[10,32],[5,18],[12,10],[8,14],[6,24],[15,16],[8,20],[18,21],[15,17],[15,12],[13,7],[11,9],[36,9],[34,5],[16,19],[23,14],[17,19],[25,-3],[-7,31],[25,6],[14,1],[26,22],[22,10],[17,9],[-6,18],[18,9],[19,20],[17,17],[21,-1],[21,-10],[13,-5],[14,2],[-7,12],[-7,12],[17,10],[24,-6],[-6,20],[25,5],[-4,15],[23,8],[16,14],[21,6],[18,15],[-12,23],[-15,8],[-12,13],[8,25],[18,-10],[16,-13],[19,4],[-9,21],[18,10],[15,12],[18,15],[26,-1],[1,24],[17,1],[-8,17],[14,3],[8,9],[23,-8],[-10,27],[-4,38],[8,22],[22,-17],[24,-17],[23,4],[10,15],[7,13],[21,3],[15,18],[22,7],[17,-5],[-10,21],[0,25],[-19,20],[-5,32],[-9,23],[15,8],[19,3],[15,-18],[13,-23],[19,-31],[15,26],[24,20],[21,11],[19,3],[14,31],[1,42],[29,19],[29,-7],[11,19],[12,22],[15,12],[6,-31],[7,-14],[9,-15],[13,10],[-9,19],[1,23],[18,17],[3,19],[-24,-12],[-7,18],[30,24],[27,9],[16,-18],[7,13],[6,19],[9,18],[-16,13],[-20,35],[-23,8],[-18,8],[18,25],[19,5],[22,9],[23,-21],[27,-11],[13,27],[-21,25],[-19,20],[23,4],[21,-2],[19,-11],[18,-2],[22,-1],[18,14],[-14,8],[-8,18],[13,2],[12,-4],[13,-1],[-4,25],[2,24],[12,-5],[7,-15],[13,-28],[30,-9],[-13,23],[6,30],[-29,23],[21,0],[13,29],[-4,20],[-17,3],[-18,2],[22,25],[24,5],[29,7],[13,14],[31,25],[29,15],[22,22],[22,15],[19,2],[17,14],[15,8],[19,5],[16,7],[12,0],[14,-16],[18,17],[25,-1],[19,11],[18,10],[30,7],[19,13],[14,10],[15,5],[19,-14],[22,-6],[27,-4],[20,22],[24,8],[14,17],[19,4],[16,-18],[18,2],[-13,40],[-3,30],[-21,-15],[-17,6],[-14,11],[-30,5],[-21,-6],[-13,-4],[-19,-4],[-15,-6],[-16,-9],[-21,-11],[-17,-6],[-26,-12],[-27,-5],[-18,9],[-16,-11],[-21,-7],[-22,-7],[10,24],[20,20],[19,29],[-9,24],[-1,1],[-16,19],[18,-1],[16,-16],[23,-1],[19,5],[2,3],[16,27],[21,11],[33,0],[25,16],[21,16],[27,-11],[23,7],[31,7],[27,18],[18,9],[20,-8],[34,-1],[1,26],[11,25],[34,9],[11,20],[18,-5],[16,-4],[26,-12],[44,12],[14,0],[13,0],[22,1],[21,3],[28,8],[17,8],[20,15],[25,10],[9,17],[25,23],[21,-13],[26,26],[0,19],[7,24],[5,34],[1,5],[2,15],[-6,17],[13,23],[13,23],[22,12],[29,2],[21,-3],[28,-3],[29,-7],[22,-26],[39,18],[30,-4],[11,11],[21,9],[24,5]],[[90272,32810],[20,-11],[29,0],[-10,-17],[-7,-17],[2,-24],[-3,-19],[-1,-23],[-14,-15],[-15,-22],[-17,-23],[-18,-16],[-19,-11],[-16,15],[-14,-5],[-18,-21],[-18,-10],[-17,0],[-21,1],[-23,9],[-29,-8],[-24,1],[-26,4],[-13,9],[-11,31],[-4,27],[2,23],[5,29],[4,23],[-2,18],[1,21],[3,20],[10,31],[3,31],[-13,18],[4,19],[0,1],[21,22],[6,6],[11,8],[10,8],[8,6],[20,13],[30,-6],[21,-13],[22,-20],[24,-25],[19,-17],[15,-12],[20,-13],[22,-21],[21,-25]],[[90002,32935],[-12,-6],[-26,16],[1,17],[1,3],[10,18],[30,-10],[1,-2],[11,-28],[-16,-8]],[[92520,34594],[-19,-3],[-17,7],[27,15],[25,16],[6,25],[10,36],[16,20],[18,21],[23,17],[14,15],[10,15],[15,19],[3,-17],[-111,-177],[-20,-9]],[[89368,32477],[-8,33],[-8,28],[-12,17],[-29,17],[-28,4],[-21,3],[-13,2],[-10,1],[-32,8],[-26,9],[-19,4],[-20,12],[-22,-4],[-5,21],[-19,4],[-20,8],[-15,24],[0,-3],[1,-34],[13,-16],[11,-10],[-1,-21],[-2,-9],[-5,-16],[-10,-31],[-12,-22],[-13,-17],[-12,-24],[-13,-18],[-13,-35],[-20,-28],[-33,-14],[-10,-27],[-49,-6],[-21,-16],[-38,-20],[-24,-24],[-14,-33],[-21,-9],[-11,-13],[-18,-14],[-12,-11],[-19,-16],[0,26],[17,10],[14,9],[9,12],[-37,12],[-8,56],[-32,16],[-48,3],[-31,-25],[0,-16],[26,0],[32,4],[8,-4],[-3,-21],[-35,-25],[-23,-33],[1,-18],[12,-18],[21,-24],[8,-27],[21,-5],[-7,-20],[-5,-22],[-8,-31],[-16,-19],[-9,-17],[-52,-82],[-69,-42],[-67,-75],[-7,-9],[-7,-21],[-4,-25],[-6,-20],[-1,-20],[-21,-28],[-4,-33],[-24,-9],[-18,-10],[-20,-11],[-8,-16],[-15,2],[-19,-19],[-22,-12],[-18,-18],[-21,-11],[-8,-7]],[[88211,31538],[-5,10],[-5,10],[-2,4],[-2,4],[-55,107],[-5,7],[-1,2],[-7,11],[-32,60],[-16,32],[-11,23],[-13,26],[-23,43],[-24,47],[-6,8],[-11,20],[-1,3],[-21,39],[-1,1],[-5,10],[-14,24],[0,2],[-15,27],[-2,2],[-3,6],[-27,52],[-7,14],[-5,9],[-7,12],[-29,53],[-5,9],[-17,32],[-12,21],[-13,23],[-36,68],[-22,39],[-18,34],[-4,6],[-40,76],[-22,39],[-23,41],[-5,12],[-53,97],[-15,28],[-32,60],[-14,26],[-13,23],[-7,13],[-76,136],[-47,84],[-29,60],[-27,50],[-20,38],[-17,32],[-44,76],[0,1],[-5,10],[-20,37],[-8,15],[-13,25],[-7,13],[-12,23],[-7,11],[-2,5],[-7,11],[-8,12],[-5,9],[0,1],[-17,35],[-9,16],[-13,25],[-45,83],[-18,32],[-31,57],[-5,10],[-5,8],[-4,9],[-9,17],[-13,23],[-15,28],[-11,19],[-8,15],[-9,18],[-13,22],[-5,9],[-28,53],[-5,10],[-9,16],[-11,20],[2,10],[2,14],[6,42],[6,26],[7,33],[3,17],[12,72],[10,66],[5,28],[3,20],[2,11],[2,12],[1,10],[-2,47],[8,32],[3,20],[2,13],[2,16],[4,22],[2,19],[3,17],[3,25],[3,16],[2,9],[1,16],[3,20],[3,15],[2,10],[2,17],[3,15],[1,19],[0,1],[2,9],[2,15],[3,23],[4,23],[1,10],[2,18],[4,27],[2,10],[0,4]],[[88504,34801],[14,-32],[2,-13],[1,-11],[2,-10],[5,-12],[4,-8],[8,-10],[6,-6],[13,-13],[6,-9],[12,-15],[5,-11],[4,-9],[6,-9],[6,-10],[5,-8],[7,-9],[6,-8],[6,-7],[22,-20],[27,-25],[22,-18],[7,-6],[10,-5],[15,-10],[12,-8],[11,-8],[24,-13],[7,-5],[8,-3],[18,-7],[11,-6],[8,-3],[8,-3],[8,-3],[9,-3],[14,-4],[9,-3],[12,-5],[7,-3],[26,-6],[32,-19],[16,2],[11,-7],[13,5],[23,-7],[8,-2],[10,-3],[8,-3],[15,-5],[9,-4],[10,-2],[9,-3],[8,-3],[8,-2],[7,-3],[8,0],[8,-3],[15,-3],[8,-4],[9,-2],[7,-2],[8,-3],[11,-2],[21,-7],[8,-3],[8,-2],[7,-2],[8,-2],[9,-3],[12,-3],[10,-2],[14,-3],[11,-2],[8,-3],[18,-2],[14,2],[1,-17],[-8,-25],[-11,-21],[-8,-18],[-14,-25],[-16,-26],[-13,-22],[-16,-25],[-14,-25],[-22,-28],[-11,18],[2,30],[-14,28],[-24,10],[-18,-2],[-14,4],[-24,-12],[-18,-7],[-16,-10],[-14,-9],[-21,-17],[-21,-18],[-16,-15],[-14,-13],[-23,-18],[-24,0],[-11,-24],[-24,13],[-22,-4],[-16,-19],[-7,-8],[-16,-20],[-1,-1],[-16,-23],[-6,-29],[-15,-14],[-25,-10],[-25,-5],[-25,15],[-21,18],[-15,18],[-18,10],[-15,8],[8,-27],[14,-12],[-3,-28],[25,-14],[18,-17],[5,-19],[10,-18],[10,17],[16,8],[17,5],[20,10],[30,24],[19,34],[2,22],[1,9],[19,13],[9,-1],[13,-2],[18,8],[17,4],[21,5],[21,10],[21,14],[19,10],[20,-5],[15,-17],[14,-17],[38,-26],[56,-40],[18,-25],[39,-10],[44,-40],[-33,-16],[-64,28],[-20,0],[-10,-49],[18,-25],[-3,-42],[-20,-9],[-18,-17],[-19,-14],[-15,-8],[-19,-9],[-5,21],[-19,-26],[-18,-13],[-14,-15],[-10,-18],[15,-37],[20,9],[18,-2],[28,-11],[-11,-15],[6,-38],[34,3],[12,8],[11,12],[-4,33],[14,10],[19,-4],[22,5],[12,9],[13,0],[15,-18],[18,13],[20,-8],[10,-18],[-3,-28],[19,4],[16,8],[18,3],[22,8],[23,-1],[26,19],[3,1],[34,11],[1,23],[1,18],[1,10],[0,13],[5,9],[10,20],[-12,19],[-31,1],[-26,-11],[-40,-10],[-17,0],[-17,6],[8,34],[5,23],[-32,-15],[-5,12],[-5,19],[22,30],[-6,19],[13,-8],[30,-24],[32,-11],[24,-13],[14,-8],[18,-11],[14,-10],[24,-13],[23,-22],[5,-37],[6,-26],[8,-32],[10,-30],[-3,-27],[-12,-35],[12,-25],[4,-46],[2,-32],[1,-23],[2,-28],[3,-42],[13,-16],[-14,-28],[-9,-29],[-9,-24],[-10,-29],[-18,-5],[11,-22],[12,-21],[-15,-11],[-1,-29],[-5,-23],[-5,-24],[-15,-2],[-22,-1],[-41,-7],[42,-9],[30,0],[31,-5],[47,43],[0,84],[7,27],[78,-22],[48,-11],[18,-38],[-55,-49],[-81,-37],[-56,-38],[-15,-10],[-116,-3],[-11,-102],[12,-64],[65,-64],[7,-20],[15,-17],[12,-14],[5,-26],[1,-27],[2,-24],[-6,-38],[-13,-20],[-7,-26],[-12,-20],[-7,-25],[23,-23],[-21,0],[-19,7],[-16,-2],[-16,-14]],[[93431,34870],[-42,-1],[-6,-22],[-21,-9],[-30,-15],[-25,-11],[-22,-11],[-26,-12],[-24,-11],[-29,-13],[-35,-16],[-27,-12],[-28,-15],[-30,-13],[-24,-10],[-43,-17],[-25,-11],[-37,-17],[-50,-22],[-41,-19],[-32,-15],[-33,-16],[-24,-14],[-19,-10],[-18,-8],[-28,-12],[-35,-16],[-28,-13],[-34,-17],[-49,-23],[-26,-13],[-15,-7],[-17,-8],[-20,-9],[-37,-11],[-86,-44],[-66,-33],[-71,-35],[-64,-32],[-19,-10],[-42,-21],[-48,-24],[-106,-51],[-24,-13],[-22,-11],[-99,-50],[-83,-45],[-16,-9],[-26,-14],[-33,-18],[-42,-23],[-80,-44],[-44,-26],[-26,-16],[-22,-13],[-15,-9],[-45,-28],[-41,-25],[-74,-47],[-30,-21],[-59,-41],[-68,-50],[-34,-27],[-35,-28],[-18,-15],[-45,-42],[-29,-33],[-16,-17],[-20,-20],[-31,-39],[-22,-29],[-21,-31],[-17,-26],[-25,-42],[-13,-29],[-17,-36],[-17,-43],[-8,-25],[-8,-25],[-11,-24],[-17,-22],[-20,-7],[-20,10],[-18,10],[-5,25],[-18,-17],[-21,-11],[-4,29],[-28,-5],[-21,-17],[-25,-25],[-29,-38],[-31,-6],[-13,27],[-22,1],[-16,-4],[-20,-11],[-25,-14],[-34,-4],[-4,12],[-3,6],[-3,18],[18,27],[5,30],[-1,22],[5,22],[15,17],[16,18],[12,15],[15,20],[20,18],[17,30],[-39,-23],[8,28],[10,26],[12,11],[23,13],[18,2],[24,23],[26,25],[25,25],[28,24],[17,15],[12,15],[5,20],[25,8],[3,20],[20,4],[28,28],[17,29],[16,23],[25,8],[9,15],[19,16],[28,21],[27,14],[-11,-25],[18,9],[14,17],[20,19],[16,16],[13,11],[13,10],[20,24],[28,12],[19,29],[1,6],[4,21],[-22,-16],[-12,-10],[-14,-9],[4,18],[3,15],[14,31],[17,20],[6,31],[7,38],[34,10],[12,34],[21,33],[23,27],[16,14],[18,13],[21,10],[15,7],[26,6],[11,13],[24,3],[23,-9],[20,5],[23,-3],[25,-7],[24,-16],[30,-8],[24,-6],[12,8],[14,5],[16,4],[26,-1],[19,5],[24,8],[26,13],[16,9],[19,11],[21,8],[27,-5],[24,23],[30,12],[17,13],[10,21],[19,24],[19,5],[20,21],[-21,29],[5,29],[6,17],[9,23],[13,7],[7,13],[-20,3],[-1,22],[12,19],[15,24],[20,25],[16,23],[19,21],[20,23],[19,18],[17,19],[26,15],[24,18],[24,6],[17,4],[18,-2],[21,-5],[17,-8],[22,-9],[15,-18],[21,-9],[14,-16],[19,-8],[30,-20],[19,-10],[25,-13],[35,-10],[19,0],[19,0],[29,4],[33,-8],[-25,-31],[21,0],[22,9],[24,11],[22,-25],[19,-17],[3,-3],[18,-6],[17,-1],[19,13],[23,5],[22,11],[14,12],[13,14],[8,33],[-8,23],[5,17],[14,8],[10,10],[9,11],[11,19],[16,26],[15,25],[13,22],[6,12],[9,15],[8,13],[11,21],[12,13],[16,21],[11,17],[12,23],[8,23],[2,18],[1,5],[-22,-7],[-15,21]],[[87590,30385],[-2,-40],[-23,-19],[-43,0],[-43,19],[-12,22],[-9,4],[-9,5],[-25,0],[-26,0],[0,19],[3,28],[30,0],[0,31],[-7,3],[-13,6],[0,28],[2,9],[6,31],[6,38],[4,25],[15,9],[16,-9],[14,-7],[38,-31],[2,-11],[9,-12],[29,-38],[28,-26],[3,-34],[5,-37],[2,-13]],[[88211,31538],[-14,-13],[-31,-13],[-29,-19],[-14,-11],[-18,-10],[-22,-15],[-17,-12],[-19,-18],[-37,-31],[-62,-45],[-15,-2],[-1,10],[-11,74],[-28,31],[-16,-20],[-17,-21],[-15,-28],[-30,35],[-8,49],[-35,31],[-38,10],[-7,-4],[-44,1],[-10,-9],[-25,-22],[5,-8],[-19,-17],[-29,-14],[0,29],[-18,11],[-48,6],[-20,3],[-19,13],[-14,41],[-23,13],[-27,4],[-20,5],[-45,-24],[-10,10],[-19,10],[-14,11],[-9,32],[-14,16],[-17,6],[-19,9],[-23,9],[-26,10],[-45,-10],[-5,-25],[-18,16],[-19,32],[-29,-9],[-15,-14],[-22,4],[2,-2],[19,-19],[28,-4],[6,-17],[-4,-20],[19,-8],[17,13],[16,-4],[12,-9],[9,-15],[24,-15],[-1,-32],[10,-25],[9,-20],[11,-28],[18,-19],[30,1],[28,9],[16,15],[23,-3],[23,10],[21,18],[34,14],[6,-22],[-6,-22],[-1,-19],[18,-17],[33,-11],[8,-19],[8,-19],[-20,-77],[0,-19],[0,-38],[2,-36],[-3,-22],[-7,-20],[-10,-20],[0,-46],[-30,-47],[-2,-14],[-4,-25],[-32,-152],[-17,-57],[-9,-29],[3,-45],[45,-57],[2,-28],[-18,-34],[-32,31],[-18,9],[-10,50],[-23,27],[-65,-2],[-53,-30],[-7,-31],[-38,-2],[-8,-13],[-9,-15],[-3,-14],[-20,-86],[5,-10],[29,-65],[40,-40],[9,-7],[25,-13],[30,2],[16,-7],[-31,-16],[-36,-14],[-28,-33],[-34,-23],[-18,-22],[-12,-16],[-22,-24],[-21,-26],[-20,-23],[-24,-20],[-14,-12],[-20,-19],[-26,-28],[-13,-21],[-16,-16],[-1,-38],[9,-26],[8,-18],[39,-27],[0,-25],[49,-7],[-25,-42],[-38,25],[-46,46],[-20,-22],[-11,-18],[5,-25],[-19,-18],[-19,-17],[1,-32],[0,-11],[-14,-30],[-7,-23],[4,-11],[3,-7],[-11,-22],[-20,-22],[-7,-10],[-7,-10],[1,-12],[1,-7],[29,-2],[16,20],[71,97],[14,20],[21,12],[19,1],[12,11],[16,7],[14,12],[16,-12],[26,-6],[28,25],[16,22],[11,30],[6,34],[17,30],[22,17],[26,-26],[24,-1],[25,22],[20,21],[25,20],[13,20],[21,31],[26,14],[21,19],[12,20],[19,15],[20,-2],[12,23],[23,8],[17,14],[3,29],[-1,25],[-14,12],[-11,-24],[-17,-17],[-3,41],[-17,-6],[-10,12],[-25,8],[8,21],[18,10],[3,23],[16,14],[6,9],[38,-23],[36,-26],[44,-14],[38,17],[32,16],[11,28],[0,21],[-9,29],[19,36],[25,-4],[20,-21],[15,-9],[10,-5],[0,-59],[-69,-68],[-21,-14],[-37,-28],[-42,-36],[-62,-55],[-53,-45],[-22,-18],[-34,-33],[-31,-25],[-37,-32],[-35,-27],[-18,-16],[-26,-23],[-28,-20],[-34,-32],[-21,-16],[-14,-13],[-39,-33],[-40,-36],[-23,-20],[-38,-33],[-16,-14],[-21,-21],[-21,-17],[-36,-27],[-17,-15],[-18,-17],[-13,-11],[-2,21],[-34,0],[-10,4],[-11,4],[-20,-40],[-17,-14],[-27,-3],[-9,-30],[0,-33],[26,-2],[-14,-25],[-16,-15],[-18,-20],[-14,-14],[-14,-16],[-14,-12],[-13,-12],[-24,-25],[-19,-23],[-15,-18],[-11,-12],[-14,-15],[-22,-22],[-18,-23],[-38,-50],[-19,-25],[-14,-21],[-17,-25],[-11,-19],[-14,-28],[-24,28],[-31,32],[-25,18],[-28,-8],[-1,-26],[6,-13],[16,14],[10,-2],[46,-39],[10,-17],[-14,-7],[-14,-5],[-14,-10],[-28,-23],[-19,-16],[-28,-23],[-13,-13],[-7,-6],[-272,-244],[-6,-7],[-44,-41],[-25,-26],[-31,-29],[-23,-25],[-13,-14],[-24,-14],[-26,-31],[-24,29],[-13,32],[-3,18],[-8,6],[-11,7],[-9,-9],[20,-33],[21,-63],[-40,-100],[-70,0],[-49,-14],[-120,-46],[-11,0],[-234,-83],[-32,-11],[-33,-11],[-71,-27],[-23,-11],[-52,-27],[-16,-13],[-21,-14],[-18,-9],[-136,-82],[-39,-27]],[[84781,28028],[4,13],[10,7],[8,3],[-1,14],[0,17],[4,11],[0,8],[1,12],[0,10],[-1,5],[0,9],[-3,2],[-4,2],[-9,-2],[-9,-3],[-10,-2],[-9,-3],[-3,-1],[-8,-3],[-11,-4],[-3,-1],[-8,-2],[-6,-2],[-8,-3],[-20,-6],[-15,-5],[-10,-1],[-7,-6],[-8,-5],[-9,-6],[-9,-6],[-12,-8],[-5,-4],[-5,-2],[-6,-5],[-4,-3],[-11,5],[-13,3],[-5,3],[-7,7],[-4,9],[-2,3],[-2,4],[-10,2],[-6,-5],[-11,-6],[-10,-7],[-5,10],[-9,5],[-10,-2],[-8,-5],[-10,-7],[-7,-5],[-10,-6],[-10,-6],[-8,-1],[-10,7],[-15,5],[-22,2],[-8,-1],[-11,-5],[-10,0],[-13,0],[-8,-2],[-7,5],[-12,-2],[-8,-2],[-14,9],[-9,3],[-9,8],[-7,7],[-9,5],[-5,11],[-6,9],[-6,7],[-6,6],[-2,10],[-9,11],[-4,10],[-1,25],[4,10],[5,11],[3,10],[2,12],[4,13],[0,13],[3,12],[2,12],[-1,10],[-5,11],[-14,11],[-5,9],[-1,23],[-6,7],[-20,3],[-13,11],[-9,11],[-6,16],[-5,7],[-2,11],[-9,8],[-9,11],[-7,10],[-10,1],[-10,11],[-7,7],[-10,8],[-10,7],[-23,15],[-17,13],[-5,12],[-7,9],[-9,4],[-10,3],[-10,14],[-7,7],[-8,3],[-11,9],[-13,2],[-18,12],[-12,8],[-7,10],[-4,12],[-20,26],[-7,12],[-6,9],[-5,9],[-6,6],[-12,2],[-9,2],[-7,3],[-19,20],[-8,4],[-16,2],[-9,3],[-8,12],[-5,15],[-2,10],[-7,15],[-11,3],[-8,-3],[-8,-1],[-7,3],[-11,15],[-8,17],[-7,17],[-5,10],[4,16],[-2,9],[-5,14],[-7,16],[-8,14],[-9,8],[-13,10],[-7,11],[1,13],[0,11],[-2,11],[1,18],[4,15],[2,11],[5,9],[1,13],[7,19],[8,25],[5,9],[8,9],[5,8],[-6,12],[-7,6],[-11,13],[-6,12],[-5,10],[-3,13],[-9,14],[-9,17],[-11,11],[-2,9],[-13,10],[-8,6],[-12,2],[-11,6],[-7,2],[-9,6],[-10,-1],[-22,11],[-14,6],[-11,18],[-13,22],[-5,6],[-7,6],[-9,12],[-4,10],[-10,5],[-9,1],[-7,8],[-8,0],[-9,-5],[-6,-8],[-4,-7],[-6,-10],[-6,-14],[-9,1],[-13,15],[-8,7],[-13,6],[-6,7],[-11,0],[-8,2],[-24,4],[-9,6],[-4,17],[-7,11],[-3,0],[-15,3],[-8,-2],[-9,-2],[-98,-4],[-8,0],[-50,-1],[-37,-1],[-67,-5],[-77,-2],[-33,0],[-103,-2],[-8,9],[-9,8],[-7,8],[-11,17],[-3,10],[-1,26],[4,12],[7,9],[11,5],[12,7],[0,12],[-5,6],[-15,9],[-9,8],[-3,12],[-3,11],[8,8],[-5,12],[-1,10],[12,-3],[8,-2],[4,16],[0,11],[-3,11],[-9,-2],[-11,7],[-2,9],[-10,6],[-15,2],[-20,2],[-7,13],[-7,8],[1,10],[9,15],[7,5],[6,10],[4,9],[9,7],[7,16],[7,7],[8,-13],[7,-7],[9,-3],[6,10],[-16,18],[-10,3],[-12,-3],[-11,2],[-9,5],[-6,5],[-9,9],[-4,10],[-8,-4],[-5,-14],[-11,-1],[-15,-7],[-9,4],[-6,15],[-3,23],[2,11],[8,7],[4,-14],[-4,-9],[15,1],[8,0],[13,4],[3,9],[-6,9],[3,13],[-4,13],[1,10],[9,8],[12,1],[5,7],[-19,11],[-7,5],[-12,4],[-7,7],[7,12],[10,-3],[12,12],[2,15],[-4,8],[-3,11],[-7,4],[-1,0],[-10,9],[-16,-5],[-5,19],[6,7],[9,7],[5,9],[9,12],[6,6],[-10,8],[0,11],[-2,10],[-7,7],[-15,0],[-10,7],[3,11],[6,7],[3,19],[13,6],[16,0],[10,11],[8,-2],[5,15],[1,13],[-1,16],[2,12],[5,13],[10,7],[8,2],[11,-5],[12,-3],[10,2],[6,6],[7,7],[0,10],[5,11],[0,12],[6,11],[-9,4],[1,11],[15,3],[-2,9],[-9,7],[-15,7],[-8,10],[-3,17],[-7,9],[-8,-2],[-6,-10],[-24,-3],[-13,2],[-27,7],[-9,8],[-12,7],[-11,8],[-7,5],[-19,7],[-2,2],[-9,8],[-9,4],[-6,6],[-10,6],[-5,10],[-6,7],[-2,20],[-9,14],[-4,10],[-2,11],[-11,3],[-14,-3],[-8,3],[2,12],[-9,15],[-6,8],[-1,15],[0,10],[-2,12],[-9,10],[-7,13],[-11,6],[-13,0],[-6,-6],[-17,-5],[-14,2],[-12,-2],[-11,-1],[-17,1],[-6,6],[-8,0],[-30,-1],[-8,-2],[-6,-5],[-12,-1],[-6,-6],[-7,6],[-6,8],[-7,9],[-5,11],[-12,12],[-10,-7],[-11,-2],[-6,8],[-7,11],[-3,18],[-4,9],[-7,4],[-9,3],[-5,14],[9,6],[-5,10],[-7,4],[-5,23],[-4,9],[3,9],[-14,2],[-9,4],[4,10],[9,9],[6,11],[3,10],[-1,10],[10,15],[9,2],[-1,12],[-9,9],[6,8],[1,15],[6,10],[2,17],[-4,14],[6,18],[6,12],[6,15],[6,19],[-2,9],[1,16],[-5,37],[-4,8],[-3,12],[-5,14],[1,12],[-6,10],[-13,-3],[-9,3],[-1,10],[-4,9],[-10,6],[-17,5],[-3,10],[1,11],[-10,14],[-7,16],[-3,11],[5,10],[7,8],[-2,11],[-7,7],[3,12],[-3,13],[5,11],[10,-2],[3,16],[0,13],[-8,11],[4,9],[10,1],[4,10],[-2,10],[9,0],[16,11],[11,-2],[7,-4],[9,3],[6,8],[-4,10],[-6,10],[7,10],[-9,4],[-6,7],[23,25],[-11,17],[-13,13],[-10,11],[-76,81],[-14,15],[-22,23],[16,17],[48,51],[36,38],[-26,29],[-18,20],[-31,32],[-19,20],[-35,36],[-43,45],[-51,53]],[[67874,31741],[-18,-18],[-22,-20],[-30,-26],[-47,-43],[-3,-3],[-33,-30],[-3,-2],[-10,-8],[-28,-25],[-35,-32],[-110,-100],[-99,-90],[-9,-8],[-9,-8],[-70,-63],[-30,-27],[-12,-11],[-44,-40],[-40,-36],[-30,-27],[-2,-1],[-79,-72],[-2,-2],[-7,-6],[-25,-23],[-35,-31],[-142,-129],[-27,-24],[-76,-68],[-40,-37],[-41,-37],[-53,-48],[-73,-66],[-44,-40],[-12,-10],[-23,-21],[-14,-13],[-44,-39],[-32,-29],[-37,-34],[-27,-24],[-32,-29],[-21,-20],[-13,-11],[-1,-1],[-26,-24],[-11,-9],[-7,-6],[-18,-16],[-6,-6],[-79,-71],[-11,-10],[-17,-15],[-145,-132],[-24,-22],[-68,-61],[-35,-31],[-38,-34],[-80,-74],[-21,-18],[-123,-112],[-1,-2],[-37,-33],[-16,-15],[0,-1],[-28,-25],[-10,-7],[-21,-20],[-26,-24],[-39,-36],[-14,-12],[-31,-29],[-20,-18],[-31,-27],[-14,-13],[-6,-5],[-12,-10],[-23,-22],[-15,-14],[-11,-10],[-34,-30],[-6,-6],[-7,-6],[-28,-24],[-8,-8],[-23,-22],[-20,-19],[-125,-117],[-49,-45],[-72,-73],[-37,-32],[-22,-19],[-47,-41],[-13,-11],[-37,-33],[-27,-23],[-7,-7],[-58,-51],[-29,-25],[-17,-15],[-58,-51],[-82,-71],[-35,-31],[-31,-27]],[[64354,28558],[-20,25],[-61,80],[-21,28],[-26,34],[-15,20],[-22,29],[-19,26],[-12,16],[-67,88],[-57,76],[-20,25],[-33,45],[-41,54],[-18,23],[-20,26],[-16,18],[-18,24],[-116,173],[-1,1],[-46,60],[-107,139],[-73,95],[-26,37],[-21,28],[-9,11],[-15,20],[-8,11],[-60,78],[-10,13],[-6,7],[-46,61],[-24,33],[-9,10],[-1,3],[-15,19],[-5,7],[-10,12],[-20,27],[-74,95],[-54,72],[-17,21],[-52,68],[-6,7],[-11,15],[-24,32],[-27,35],[-24,31],[-13,17],[-48,62],[-42,55],[-62,81],[-25,33],[-21,27],[-8,9],[-5,7],[-1,1],[-19,26]],[[71090,28386],[-11,15],[-20,23],[-13,14],[-5,16],[-2,10],[7,11],[7,17],[4,12],[-4,11],[-12,7],[-16,-11],[-16,-9],[-12,-8],[-39,-3],[-13,-5],[-6,5],[-4,12],[2,12],[9,16],[5,15],[-1,13],[-7,9],[-7,9],[-8,13],[-12,8],[-9,8],[-12,9],[-9,9],[-22,17],[-20,20],[-5,8],[-8,13],[-10,2],[-24,-3],[-21,-5],[-11,-1],[-14,-2],[-6,-11],[-3,-10],[-10,-7],[-14,12],[-4,14],[4,28],[-1,0],[-7,2],[-14,-5],[-9,-4],[-11,-1],[-11,0],[-11,3],[-10,10],[-9,14],[-3,11],[-7,5],[-9,-2],[-7,-4],[-8,-6],[-15,-3],[-4,11],[-6,7],[0,12],[0,13],[-8,6],[-11,-1],[-20,4],[-13,7],[-14,8],[-9,3],[-6,12],[8,22],[3,10],[2,14],[2,12],[-2,11],[-16,11],[-11,4],[-13,-3],[-22,2],[-12,8],[-7,7],[-8,4],[-17,2],[-11,-8],[-4,-14],[-7,-9],[-11,-5],[-8,2],[-10,9],[-5,8],[-5,12],[-9,14],[-11,11],[-10,13],[-7,9],[-8,6],[-6,7],[-10,0],[-18,-1],[-8,0],[-12,1],[-9,-8],[-101,-89],[-176,-151],[-73,-63],[-74,-65],[-10,-8],[-11,-10],[-48,-41],[-30,-27],[-15,-12],[-13,-11],[-8,-7],[-39,-34],[-24,-21],[-19,-17],[-9,-8],[-12,-10],[-14,-13],[-28,-25],[-15,-13],[-25,-23],[-21,-18],[-12,-11],[-47,-41],[-8,-8],[-52,-46],[-11,-10],[-9,-8],[-21,-19],[-26,-22],[-9,-9],[-60,-54],[-38,-33],[-72,-64],[-27,-24],[-10,-8],[-21,-19]],[[69045,27910],[-57,76],[-32,43],[-42,56],[-32,43],[-7,9],[-12,15],[-8,11],[-29,38],[-12,17],[-24,32],[-6,7],[-8,12],[-13,16],[-1,1],[-6,9],[-14,19],[-49,64],[-19,26],[-15,18],[-31,41],[-21,29],[-23,29],[-48,63],[-30,40],[-15,20],[-9,11],[-19,25],[-10,14],[-19,25],[-13,17],[-16,22],[-22,29],[-20,26],[-2,3],[-39,51],[-23,31],[-6,8],[-40,52],[-52,70],[-12,15],[-35,46],[-28,39],[-6,7],[-40,52],[-58,77],[-58,77],[-26,34],[-11,15],[-33,43],[-6,8],[-69,91],[-2,2],[-19,26],[-15,20],[-39,52],[-25,33],[-11,13],[-8,12],[-24,42],[6,5],[7,6],[6,6],[13,11],[35,28],[62,56],[75,68],[7,7],[8,7],[12,11],[44,40],[16,14],[1,1],[14,13],[57,52],[24,21],[22,21],[19,17],[49,44],[74,67],[22,20],[28,26],[19,15],[21,19],[48,43],[20,17],[18,17],[7,7],[18,16],[38,35],[34,30],[78,71],[7,6],[37,34],[40,23],[12,12],[19,17],[24,23],[35,32]],[[73599,30637],[-17,-15],[-4,-4],[-2,-2],[-59,-53],[-1,-1],[-21,-19],[-13,-11],[-11,-11],[-6,-6],[-17,-14],[-17,-15],[-1,0],[-13,-12],[-28,-27],[-58,-52],[-43,-37],[-9,-11],[-30,-27],[-18,-16],[-11,-5],[-7,5],[-8,-6],[-25,-21],[-14,-13],[-40,-37],[-80,-72],[-52,-47],[-16,-14],[-89,-80],[-38,-34],[-23,-21],[-12,-11],[-5,-5],[-26,-23],[-36,-32],[-51,-47],[-29,-27],[-31,-27],[-38,-34],[-60,-53],[-7,-7],[-33,-30],[-34,-33],[-117,-105],[-29,-26],[-25,-22],[-11,-10],[-7,-6],[-24,-22],[-37,-33],[-19,-18],[-169,-151],[-30,-27],[-35,-32],[-64,-57],[-62,-56],[-18,-16],[-15,-15],[-21,-18],[-13,-12],[-82,-74],[-98,-88],[-78,-71],[-41,-37],[-64,-59],[-56,-52],[-49,-45],[-52,-47],[-43,-40],[-14,-11],[-16,-15],[-12,-11],[-7,-7],[-24,-21],[-15,-13],[-29,-27]],[[78677,29317],[-2,-111],[-4,-83],[0,-15],[0,-1],[-1,-9],[0,-18],[-2,-46],[-2,-28],[1,-36],[0,-13],[-1,-22],[-1,-21],[-3,-82],[0,-1],[-1,-23],[-2,-70],[-2,-54],[-2,-59],[-1,-14],[-4,-109],[-2,-11],[-2,-46],[-1,-21],[-1,-40],[-1,-25],[-3,-79],[-2,-30],[-1,-35],[-3,-77],[-2,-58],[-1,-12],[0,-9],[0,-1],[-3,-67],[-6,-140],[-2,-61],[-5,-98],[0,-6],[-1,-11],[-4,-89],[-1,-22],[-4,-85],[-2,-49],[-1,-10],[-1,-32],[-2,-34],[0,-1],[-1,-34],[-4,-86],[-1,-19],[-1,-17],[-6,-169],[-1,-2],[-5,-134],[-1,-21],[-11,-252]],[[78568,26619],[-78,-2],[-54,-1],[-118,-2],[-143,-2],[-45,1],[-33,-1],[-14,-1],[-27,-1]],[[78056,26610],[-11,7],[-14,17],[-9,17],[-4,21],[15,29],[17,18],[10,24],[4,23],[0,30],[-6,19],[-6,23],[-5,25],[23,8],[13,18],[16,17],[11,10],[-26,13],[-19,1],[-27,6],[-3,20],[17,6],[19,23],[11,34],[2,29],[-1,25],[-11,28],[-7,20],[-20,16],[-18,11],[-14,29],[-14,17],[-19,6],[-33,-8],[-24,-10],[-15,-7],[-32,-23],[-12,-16],[2,-20],[0,-21],[-2,-21],[-46,-39],[-24,-13],[-25,-3],[-32,-5],[0,21],[14,36],[15,30],[5,40],[-1,12],[-1,14],[2,28],[-13,38],[-15,18],[-51,-11],[-23,9],[-7,32],[-1,31],[-20,29],[-2,-26],[-8,-28],[-6,-18],[-10,25],[1,29],[-13,28],[-5,-25],[2,-23],[1,-22],[-1,-33],[-1,-21],[16,-23],[24,-8],[20,4],[34,9],[20,-4],[-2,-32],[5,-27],[0,-2],[-12,-23],[-4,-34],[-10,-16],[-5,-41],[9,-23],[-2,-21],[14,-16],[11,-13],[16,-17],[17,-18],[20,-3]],[[77770,26919],[0,-38],[-10,0],[-11,0],[-8,-1],[-13,0],[-10,0],[-7,0],[-21,-1],[-11,0],[-8,0],[-14,-1],[-10,0],[-15,0],[-10,-1],[-15,0],[-12,0],[-11,-1],[-115,-4],[-76,0],[15,13],[9,9],[2,10],[-7,7],[-10,0],[-88,-3],[-16,0],[-8,0],[-67,-2],[-111,-3],[-21,-1],[-81,-1],[-2,0],[-47,-1],[-56,-2],[-86,-2],[-2,0],[-10,0],[-12,0],[-12,-1],[-13,0],[-8,0],[-15,0],[-84,4]],[[76663,26899],[-7,-5],[-14,-33],[-1,-24],[-5,-20],[-19,6],[2,28],[5,19],[3,8],[2,12],[2,11],[0,11],[-5,12],[-3,12],[-1,11],[-6,10],[-1,23],[-2,10],[-2,13],[-7,10],[-5,13],[-7,14],[-4,11],[-12,21],[-2,10],[-11,2],[-12,-2],[-18,-2],[-9,1],[-17,-3],[-8,-2],[-20,-11],[-20,-3],[-24,-11],[-8,0],[-11,-2],[-11,-5],[-12,0],[-10,0],[-34,-21],[-14,1],[-11,-2],[-21,-8],[-31,-7],[-15,-7],[-27,-10],[-24,-14],[-18,-3],[-10,-1],[-13,-9],[-27,-5],[-3,1],[-6,3],[-19,7],[-8,3],[-12,12],[-9,9],[-4,18],[-1,3],[3,25],[7,5],[22,-20],[7,-4],[13,-11],[2,-1],[10,-1],[-4,8],[-3,13],[-9,12],[-7,6],[-4,-10],[-13,10],[-7,6],[-13,5],[-21,7],[-2,0],[-13,2],[-5,0],[-1,-29]],[[76038,27037],[-15,0],[-7,-4]],[[76016,27033],[-9,16]],[[76007,27049],[3,11],[3,13],[-3,12],[-5,9],[-7,12],[-6,23],[-5,21],[-7,9],[-19,13],[-15,9],[-6,7],[3,13],[9,6],[12,8],[1,1],[11,11],[6,17],[-3,21],[-10,19],[-13,14],[-17,10],[-16,11],[-5,8],[-2,12],[1,17],[4,17],[5,18],[4,11],[0,20],[-10,10],[-13,8],[-8,3],[-14,2],[-16,-1],[-36,-5],[-26,7],[-10,8],[-10,15],[-3,10],[3,12],[6,6],[12,3],[7,6],[1,9],[-6,10],[-11,4],[-8,0],[-9,-1],[-22,-2],[-10,1],[-9,1],[-11,6],[-7,11],[-6,13],[-6,19],[0,1],[2,9],[8,4],[9,4],[2,12],[-11,38],[-2,18],[4,8],[13,22],[7,18],[-2,11],[-6,32],[-7,6],[-12,0],[-9,-3],[-23,-13],[-12,-3],[-13,5],[-4,12],[10,10],[10,-2],[8,-7],[9,4],[1,12],[-6,12],[-11,12],[-16,15],[-6,11],[-2,18],[5,26],[5,24],[-1,14],[-3,18],[-7,6],[-11,-1],[-9,-1],[-11,0],[-12,2],[-17,6],[-16,0],[-12,4],[-7,6],[-8,19],[-6,6],[-7,5],[-4,13],[9,5],[17,3],[12,5],[17,1],[3,8],[-7,6],[-22,5],[-1,11],[0,13],[-1,14],[6,5],[12,0],[15,-2],[9,0],[8,3],[5,7],[-6,8],[-11,8],[-9,7],[-8,16],[-1,20],[3,15],[5,12],[11,18],[7,12],[-3,12],[4,9],[10,-2],[19,-2],[8,5],[10,3],[17,18],[4,12],[9,7],[3,12],[-7,11],[-8,2],[-8,7],[-12,5],[-17,-6],[-4,-16],[-11,1],[-13,16],[-8,6],[-7,10],[-3,13],[4,11],[-7,14],[-8,5],[-8,9],[-7,3],[-18,6],[-7,7],[-7,13],[-5,9],[0,12],[-6,16],[-6,7],[-4,14],[-11,7],[-14,1],[-6,7],[3,16],[-3,12],[-14,9],[-5,9],[2,14],[2,13],[3,22],[-4,17],[-2,10],[2,18],[-7,19],[-5,7],[-8,8],[-16,9],[-8,7],[-5,8],[-3,11],[-10,3],[-9,-7],[-3,-9],[-17,-11],[-13,0],[-7,16],[4,15],[-3,17],[-7,6],[-9,-3],[-6,-12],[-10,-3],[-11,4],[-13,2],[-12,7],[-16,1],[-12,4],[-9,8],[-9,7],[-8,8],[0,12],[9,9],[1,10],[-4,12],[-11,14],[-11,2],[-16,-3],[-29,1],[-8,3],[-7,6],[1,16],[-4,10],[-7,14],[2,12],[0,10],[0,5],[-4,10],[-7,8],[-14,4],[-9,2],[-15,-3],[-16,-6],[-13,1],[-7,6],[-7,14],[-11,6],[-12,-1],[-16,1],[-10,9],[0,12],[6,18],[-3,14],[-18,24],[1,11],[6,15],[-3,12],[-13,14],[-11,3],[-9,3],[-13,7],[-6,8],[-7,8],[-3,11],[5,12],[4,22],[-9,19],[-8,14],[-4,11],[-10,5],[2,12],[4,29],[-4,17],[-1,19],[-13,15],[-9,7],[-2,11],[2,12],[-6,15],[-3,11],[-3,26],[-1,13],[5,8],[2,14],[-2,12],[6,8],[3,9],[6,8],[5,18],[-9,0],[-9,0],[-13,6],[-6,12],[-1,12],[-10,17],[6,18],[0,13],[-6,15],[-7,7],[-10,7],[-12,3],[-5,7],[12,17],[-5,11],[-7,5],[-8,19],[8,9],[4,9],[-6,12],[-16,7],[-6,8],[-14,10],[0,17],[-5,16],[-9,13],[-9,15],[-4,9],[1,10],[-5,12],[-9,8],[1,9],[7,11],[-1,10],[-7,4],[-5,7],[-3,12],[-5,14],[-4,14],[-6,7],[-11,17],[-6,25],[-9,2],[-15,-4],[-8,7],[1,15],[-9,6],[-11,12],[-63,30],[-5,2],[-103,47],[-79,37],[-27,14],[-78,36],[-153,72],[-52,24],[-46,22],[-11,5],[-9,4],[-10,7],[-8,1],[-11,5],[-70,33],[-34,16]],[[63257,26029],[0,61],[0,10],[0,47],[0,27],[0,59],[0,33],[-4,55],[1,12],[-1,30],[-24,0],[-69,-1],[-29,0],[-42,0],[-36,0],[-16,0],[-65,0],[-89,0],[-65,0],[-99,0],[-163,0],[-108,0],[-70,0],[-65,0],[-8,0],[-201,0],[-104,0],[-96,0],[-125,0],[-69,0],[-11,0],[-12,0],[-2,0],[-69,1],[-234,0],[-21,0],[-63,0],[-56,0],[-24,0],[-21,0],[-53,0],[-19,0],[-25,0],[-19,0],[-35,0],[-112,1],[-1,0],[-41,-1],[-87,1],[-144,0],[-81,0],[-100,-1],[-43,-1],[-82,0],[-129,0],[-34,0],[-15,0],[-140,-3],[-135,-2],[-3,0],[-16,0],[-110,-2],[-19,0],[-43,-1]],[[59711,26354],[-1,142],[0,13],[0,13],[-1,49],[0,115],[-1,79],[-1,103],[0,9],[-1,88],[0,78],[-1,40],[-1,116],[0,72],[0,48],[0,18],[0,66],[-1,91],[-1,50],[0,61],[-1,92],[-1,55],[-1,161],[0,21],[-1,91],[0,28],[-1,33],[0,71],[0,21],[0,12],[-1,22],[0,69],[0,18],[-1,26],[0,82],[0,11],[-1,56],[0,17],[0,13],[-1,16],[0,30],[0,12],[0,49],[-1,59],[0,37],[0,21],[-1,42],[0,34],[0,57],[-1,82],[0,13],[-1,25],[0,1],[0,31],[0,71],[-1,39],[0,26],[0,26],[0,15],[0,13],[-1,69],[-1,62],[0,36],[-1,101],[0,13],[0,35],[-1,48],[0,14],[0,47],[0,16],[0,19],[-1,19],[0,27],[0,30],[0,17],[0,26],[-1,44],[0,10],[0,27],[-1,29],[1,29],[0,51],[0,12],[0,60],[0,78],[0,54],[0,59],[-1,26],[0,47],[0,15],[0,30],[0,12],[0,105],[0,39]],[[64354,28558],[7,-10],[35,-47],[8,-10],[45,-46],[7,-6],[9,-9],[49,-53],[0,-1],[12,-15],[60,-82],[24,-33],[14,-20],[9,-8],[8,-11],[5,-8],[24,-33],[10,-13],[9,-12],[6,-8],[8,-12],[20,-26],[21,-28],[9,-13],[74,-99],[6,-9],[21,-27],[160,-200],[45,-56]],[[65059,27663],[-49,-44],[-8,-7],[-20,-18],[-19,-17],[-9,-8],[-89,-88],[-11,-9],[-85,-76],[-29,-26],[-57,-51],[-11,-7],[-14,-14],[-42,-37],[-26,-24],[-23,-20],[-17,-16],[-14,-13],[-25,-22],[-16,-15],[-22,-20],[-47,-43],[-19,-16],[-46,-42],[-64,-58],[-18,-17],[-8,-6],[-89,-81],[-59,-54],[-19,-17],[-100,-91],[-71,-64],[-31,-28],[-25,-22],[-24,-22],[-2,-2],[-16,-15],[-7,-6],[-12,-11],[-22,-20],[-22,-20],[-10,-8],[-22,-20],[-58,-53],[-45,-41],[-22,-19],[-7,-7],[-1,-1],[-14,-12],[-53,-49],[-14,-13],[-51,-46],[-13,-12],[-18,-16],[-57,-52],[-13,-12],[-8,-7],[-43,-39],[-34,-31],[-32,-29]],[[78180,23961],[-50,-41],[-51,3],[-17,30],[20,13],[16,26],[52,47],[33,35],[34,39],[19,14],[21,27],[24,25],[12,13],[29,10],[16,21],[22,16],[25,34],[16,21],[14,21],[15,22],[20,7],[14,-2],[58,-60],[6,-24],[-13,-8],[-32,-17],[-20,-13],[-39,-28],[-41,-36],[-36,-37],[-23,-21],[-20,-17],[-33,-21],[-13,-10],[-47,-54],[-31,-35]],[[80680,25763],[-16,12],[7,17],[3,18],[36,-36],[-30,-11]],[[79412,25931],[-17,-31],[3,-24],[16,6],[16,10],[18,-3],[29,0],[18,32],[13,35],[24,6],[13,-21],[21,6],[18,-1],[21,5],[51,19],[29,9],[28,6],[-37,-61],[-33,-69],[-19,-10],[-48,-29],[-28,-15],[-21,-15],[-22,-8],[-60,-32],[-33,-14],[-31,-11],[-33,-10],[-30,-4],[-24,8],[10,19],[5,23],[-7,27],[-12,23],[-19,22],[-2,2],[0,21],[-31,61],[0,19],[10,-4],[24,7],[36,17],[35,21],[36,31],[27,28],[32,-16],[16,-35],[-13,-22],[-29,-28]],[[80680,25763],[34,-19],[14,-25],[15,-34],[22,9],[-11,31],[-1,28],[18,-3],[-3,17],[1,18],[18,16],[32,-25],[-2,29],[15,-10],[14,12],[11,25],[-1,23],[20,14],[5,18],[20,-20],[14,-33],[15,18],[17,10],[-10,32],[30,15],[21,-5],[1,-29],[23,12],[19,10],[1,1],[21,0],[28,5],[9,19],[14,9],[-19,26],[25,-2],[20,-2],[18,23],[22,25],[7,39],[-11,12],[-6,34],[-17,-6],[-10,34],[17,1],[2,23],[14,-1],[7,19],[-3,20],[-1,22],[-18,22],[-19,9],[15,19],[21,1],[19,2],[11,15],[-11,14],[-13,-1],[-13,10],[-22,16],[5,26],[13,14],[14,25],[16,22],[34,45],[-29,1],[-24,-13],[-17,-1],[-24,2],[-24,-11],[-16,17],[-12,38],[-13,-19],[-21,-21],[-10,3],[-15,4],[-20,12],[-6,-25],[5,-13],[2,-7],[14,-6],[3,-28],[-4,-19],[-1,-5],[-23,-8],[-25,-18],[-21,22],[-10,-21],[-14,34],[-8,1],[-5,1],[-16,7],[-26,2],[-22,17],[-16,15],[-20,8],[-24,-3],[-17,0],[-5,-1],[-16,-2],[-11,-16],[-11,-14],[-19,6],[-24,-8],[-24,-8],[-23,-15],[-17,-15],[-22,-15],[-26,-9],[-19,-5],[-17,-16],[-43,-37],[-23,-14],[-23,-9],[-19,-6],[-27,-10],[-41,-23],[-22,-16],[-28,-17],[-26,-3],[-22,-4],[-21,-6],[-42,-22],[-23,-5],[-21,-5],[-26,-8],[-22,-7],[-19,-8],[-17,-6],[-16,-7],[-20,-7],[-29,-13],[-39,-15],[-21,-9],[-14,-5],[-18,-12],[-52,-27],[-38,-19],[-31,-6],[-19,-24],[-41,-33],[-19,-21],[-28,-12],[26,58],[21,34],[13,15],[20,28],[1,1],[4,29],[25,3],[-5,-22],[32,5],[21,7],[24,20],[0,1],[15,29],[-15,-3],[-6,-1],[-20,-5],[-21,5],[-1,0],[-11,12],[-10,11],[0,1],[-17,19],[-21,11],[-26,14],[-17,19],[-16,-5],[-12,16],[-11,28],[-18,8],[-4,-24],[-18,-19],[-15,-14],[-22,-16],[-22,-13],[-16,-17],[-25,-16],[-7,-5],[-9,-5],[-16,-9],[-26,-10],[-27,-6],[-24,13],[-5,32],[-8,24],[-16,33],[-28,28],[-17,16],[-10,14],[-12,18],[-27,34],[-20,14],[-21,21],[28,19],[23,30],[15,8],[25,12],[31,21],[21,30],[10,17],[4,18],[10,15],[11,23],[-19,2],[-12,9],[-20,12],[5,17],[25,22],[20,16],[21,17],[16,23],[16,13],[11,26],[12,13],[11,16],[16,17],[26,28],[15,31],[0,22],[-6,20],[7,26],[21,25],[16,18],[22,31],[9,33],[-6,30],[4,21],[-6,20],[-12,25],[-32,30],[-10,19],[14,29],[10,38],[19,32],[20,12],[15,13],[15,34],[30,19],[25,25],[17,38],[-6,32],[-3,26],[-13,21],[11,14],[17,3],[35,4],[21,7],[18,-2],[16,11],[-14,11],[-18,1],[-32,-4],[-30,-2],[-28,-13],[-13,-18],[-10,-23],[-20,17],[21,27],[-16,5],[-25,-16],[0,-27],[7,-27],[6,-30],[8,-16],[-20,-10],[-23,-2],[-19,-7],[-27,-9],[-21,-15],[-14,-22],[-11,-19],[-7,-26],[-12,-33],[-20,-15],[-19,-18],[-19,-34],[11,-45],[6,-26],[16,-33],[4,-33],[-26,-7],[-23,-11],[-24,-12],[0,-24],[13,-54],[1,-36],[-21,-1],[-36,8],[-19,2],[-16,-11],[-16,6],[-19,3],[-18,19],[-7,-24],[-28,-23],[-16,1],[-21,-10],[-28,-15],[-19,-14],[-23,-11],[-25,-22],[-28,-21],[-25,-19],[-25,-19],[-37,-18],[16,23],[5,18],[13,17],[3,17],[4,24],[-3,35],[-3,23],[-19,23],[16,13],[25,2],[11,12],[2,17],[-8,17],[2,23],[-10,24],[5,31],[2,25],[-3,23],[-24,7],[-23,-11],[-19,-1],[-3,-10],[-4,-12],[14,-12],[23,10],[-3,-27],[1,-19],[3,-27],[-2,-22],[-12,-18],[-25,-22],[-13,-26],[-1,-21],[19,-11],[17,-15],[-15,-14],[-18,-9],[-27,-16],[-26,-20],[-3,-1],[-18,-5],[-19,-3],[-4,2],[-12,8],[-4,-4],[-12,-13],[-15,-10],[-4,-2],[-3,-3],[-27,-20],[-22,-18],[-25,-14],[-12,-9],[-16,-18],[-20,-14],[-4,-2],[-4,-24],[-2,-8],[-6,-18],[0,-23],[-1,-17],[-4,-19],[-13,-16],[7,-19],[4,-12],[-1,-2],[-4,-23],[1,-1],[5,-30],[11,-41],[-21,-10],[-64,-16],[-25,-7],[-31,0]],[[78574,26315],[-1,47],[-2,122],[-1,39],[-2,96]],[[84781,28028],[-16,-12],[-75,-49],[-30,-21],[-590,-377],[-119,-72],[-135,-88],[-41,-25],[-22,-13],[-92,-54],[-15,-4],[-4,6],[-4,5],[0,19],[-5,13],[-1,-1],[-7,-8],[1,-4],[2,-7],[-1,-9],[0,-7],[-1,-12],[0,-7],[-1,-4],[-1,-4],[-4,-13],[-51,-35],[-75,-59],[-25,-19],[-5,-2],[-86,-48],[-11,17],[9,41],[15,-13],[21,25],[30,14],[15,8],[21,16],[33,28],[11,9],[12,9],[18,23],[14,4],[13,-3],[-4,25],[15,27],[-8,31],[17,25],[26,-1],[-3,-32],[17,20],[16,-13],[19,-13],[2,17],[-15,16],[-8,23],[-3,8],[-27,11],[-22,6],[-58,-36],[-48,-30],[-118,-60],[-24,-12],[-23,-2],[-17,-7],[-19,-8],[-22,-10],[-31,-10],[-37,-15],[-65,-25],[-34,-10],[-12,-8],[-10,-7],[-18,-6],[-21,-5],[-21,-3],[-19,-4],[-25,6],[-6,39],[-19,20],[6,36],[-15,14],[-21,11],[-17,-13],[-65,-53],[-20,16],[-20,5],[-24,8],[-43,1],[-51,-6],[-36,12],[-8,3],[-27,-8],[-24,-8],[-25,-6],[-22,-13],[-24,0],[-28,-14],[-22,-5],[3,-30],[-111,-49],[-12,30],[-14,-1],[-5,-13],[8,-26],[-280,-119],[-77,-33],[-50,-23],[-12,23],[-14,-14],[-34,-4],[10,-20],[-15,-7],[-15,20],[-27,-11],[-83,-37],[-26,-19],[-20,-14],[-22,-10],[-23,3],[-22,-6],[-24,-9],[-27,-15],[-25,-17],[-25,-19],[-11,-13],[-17,-30],[-20,-30],[-24,-21],[0,-27],[-14,-24],[12,-12],[10,-8],[29,-16],[14,-17],[3,-30],[-8,-38],[-10,-39],[-5,-14],[-19,4],[-14,11],[-17,-6],[-24,-1],[11,-30],[21,-7],[-12,-14],[-16,-13],[-17,-12],[-20,-1],[-6,-19],[20,-9],[-11,-32],[8,-23],[0,-21],[9,-35],[-10,-23],[5,-21],[-16,-20],[-2,-19],[-17,3],[-7,13],[-15,-22],[-20,-9],[15,-19],[-6,-21],[20,5],[23,8],[30,12],[10,3],[12,6],[16,7],[20,7],[30,4],[29,0],[20,-5],[14,13],[15,-7],[14,19],[16,15],[19,15],[22,-2],[16,22],[21,4],[28,16],[29,1],[20,-7],[11,-16],[11,18],[12,2],[23,-3],[28,13],[-11,20],[22,5],[17,4],[17,7],[-7,16],[23,19],[17,17],[23,7],[18,-15],[13,22],[25,-18],[23,1],[14,3],[-17,34],[13,25],[21,7],[32,22],[25,4],[23,4],[20,10],[14,16],[21,7],[14,2],[27,12],[25,14],[23,5],[21,1],[12,10],[-15,7],[-9,17],[-6,20],[18,14],[17,8],[23,11],[22,18],[18,-2],[30,28],[20,6],[18,16],[20,7],[22,10],[31,8],[17,4],[25,7],[20,-3],[25,16],[14,24],[22,9],[-7,21],[23,14],[28,0],[22,8],[15,4],[27,-2],[27,0],[20,14],[0,29],[15,7],[25,2],[28,6],[8,11],[17,6],[16,20],[16,15],[25,4],[19,-8],[13,17],[14,10],[11,11],[17,9],[25,12],[17,18],[23,10],[30,12],[18,7],[16,16],[17,6],[26,1],[17,16],[16,0],[17,3],[11,8],[25,15],[18,1],[13,-9],[16,9],[6,2],[9,-29],[-15,-14],[-39,-27],[-28,-18],[-40,-25],[-20,-15],[-27,-15],[-39,-29],[-50,-30],[-59,-31],[-19,-21],[-30,-17],[-35,-22],[-47,-29],[-24,-17],[-26,-14],[-19,-13],[-38,-21],[-18,-13],[-54,-36],[-42,-25],[-19,-5],[-36,-29],[-30,-19],[-22,-13],[-27,-18],[-15,0],[-20,-21],[-37,-23],[-39,-19],[-69,-41],[-28,-6],[-20,-20],[-14,-12],[-33,-16],[-32,-9],[-27,-23],[-45,0],[-29,-29],[-61,-42],[-42,-22],[-32,-20],[-24,-13],[-24,-12],[-33,-17],[-43,-20],[-28,-14],[-45,-23],[-24,-12],[-46,-22],[-30,-14],[-26,-11],[-17,-7],[-64,-35],[-40,-20],[-49,-12],[-43,-29],[-47,-24],[-21,-8],[-18,-8],[-44,-24],[-23,-8],[-48,-23],[-52,-28],[-24,-10],[-17,9],[-11,-26],[-9,-37],[-51,9],[-28,-10],[-27,-10],[-4,-1],[-54,-21],[-22,-15],[-19,-9],[-20,-8],[-38,-22],[-27,-14],[-26,-13],[-50,-29],[-37,-10],[-15,-2],[-32,-25],[-29,-17],[-32,-17],[-27,-6],[-37,-24],[-55,-31],[-19,-8],[-21,-13],[-32,-15],[-32,-18],[-29,-15],[-34,-18],[-15,-9],[-61,-33],[-41,-23],[-41,-23],[-25,-15],[-26,-13],[-57,-34],[-31,-17],[-26,-15],[-47,-27],[-24,-12],[-13,-9],[-23,-13],[-39,-8],[-14,-20],[-33,-21],[-28,-16],[-29,-20],[-18,3],[-14,-21],[-41,-26],[-28,-16],[-26,-15],[-35,-20],[-24,-17],[-22,-10],[-27,-15],[-15,-9],[-23,-12],[-21,-10],[-23,-13],[-15,-9],[-16,-9],[-7,-3],[-90,-62],[-269,-199],[-230,-168],[-159,-139],[-68,-98],[-107,132],[21,10],[76,33],[77,91],[93,70],[73,72],[373,227],[14,91],[98,65],[81,16],[3,1],[15,-1],[22,-10],[15,-19],[13,-15],[21,-4],[-1,18],[-17,39],[22,20],[23,6],[-19,27],[14,9],[23,-6],[2,20],[15,5],[18,21],[18,7],[32,4],[28,-3],[14,-6],[-1,43],[35,23],[19,12],[20,16],[22,14],[22,11],[18,4],[17,16],[11,13],[15,6],[21,12],[21,15],[18,7],[19,-5],[14,24],[25,3],[18,6],[16,14],[19,-2],[12,-9],[-2,20],[20,-4],[6,21],[24,2],[18,10],[24,11],[31,1],[12,25],[26,2],[20,12],[12,11],[13,4],[24,5],[18,10],[24,9],[28,22],[-10,32],[25,-4],[12,-10],[13,-11],[18,-24],[3,23],[6,27],[27,-2],[25,11],[22,-13],[-7,27],[24,6],[22,12],[18,16],[-11,16],[-1,21],[-8,21],[24,-8],[31,-23],[9,-25],[10,-32],[16,-13],[-4,32],[1,23],[-3,27],[20,8],[17,5],[6,-31],[24,26],[28,7],[-22,23],[18,4],[21,6],[-9,28]],[[67492,26548],[-10,13],[-7,6],[-12,1],[-8,2],[-8,4],[-4,13],[-3,10],[-7,5],[-4,10],[-6,6],[-1,0],[-9,1],[-8,9],[-7,2],[-8,0],[-7,-5],[-7,-7],[-4,-8],[-4,-10],[-79,-11],[-24,-3],[-15,-3],[-27,-2],[-8,-2],[-26,-3],[-31,-4],[-4,0],[-17,-2],[-3,7],[-3,8],[3,11],[-3,15],[-8,8],[-9,12],[-12,10],[-8,-6],[-3,-12],[-10,-5],[-10,1],[1,16],[-9,5],[-1,5],[-2,11],[-4,4],[-4,4],[-8,-8],[-9,0],[0,11],[-17,-4],[-6,8],[-8,3],[-8,1],[-6,7],[-15,7],[-9,3],[-20,2],[-13,11],[-13,3],[-9,0],[-14,-9],[-10,0],[-11,9],[-7,4],[-10,2],[-10,6],[-12,11],[-9,12],[-10,4],[-9,2],[-14,-2],[-12,6],[-9,5],[-12,8],[-10,4],[-7,8],[-4,10],[-8,-2],[-8,2],[2,12],[-5,8],[-5,-10],[-5,7],[-3,11],[-8,-8],[-9,-3],[-5,17],[-2,10],[-8,-1],[-7,5],[-18,10],[-12,-3],[-14,1],[-8,4],[5,10],[6,14],[-3,8],[-3,9],[-11,2],[-6,-7],[-6,6],[-8,6],[-6,5],[-2,13],[-3,12],[-6,10],[-9,8],[-2,10],[-9,11],[-13,4],[-12,3],[-11,-1],[-10,3],[-13,9],[-13,19],[-7,11],[-12,5],[-4,9],[-11,2],[-6,-7],[-16,2],[-29,-11],[-23,-10],[-59,-24],[-73,-31],[-9,-2],[-8,-5],[-23,-10],[-19,-8],[-64,-24],[-9,-3],[-28,-12],[-84,-33],[-15,-6],[-6,-3],[-64,-26],[-94,-40],[-3,-1],[-12,-4],[-11,-4],[-27,-11]],[[65767,26756],[-9,13],[-24,30],[-10,12],[-43,54],[-35,45],[-12,15],[-16,20],[-32,41],[-16,21],[-10,12],[-50,63],[-43,55],[-24,30],[-31,40],[-9,11],[-25,32],[-7,9],[-31,40],[-1,2],[-15,18],[-83,108],[-92,121],[-57,74],[-33,41]],[[69045,27910],[-15,-13],[-80,-70],[-1,0],[-10,-9],[-14,-12],[-106,-94],[-18,-16],[-35,-30],[-22,-20],[-18,-15],[-28,-25],[-12,-10],[-10,-9],[-17,-15],[-13,-12],[-91,-79],[-37,-32],[-75,-66],[-1,-1],[-10,-9],[-39,-35],[-22,-19],[-31,-26],[-47,-41],[-25,-23],[-33,-28],[-20,-18],[-8,-7],[-1,-1],[-19,-16],[-35,-31],[-15,-13],[-7,-6],[-11,-10],[-12,-11],[-18,-15],[-51,-44],[-15,-14],[-17,-16],[-14,-12],[-19,-16],[-49,-44],[-15,-12],[-11,-10],[-7,-7],[-46,-39],[-24,-22],[-13,-11],[-3,-3],[-46,-41],[-12,-10],[-7,-6],[-26,-23],[-11,-10],[-9,-8],[-19,-16],[-14,-12],[-31,-28],[-7,-7],[-26,-22],[-13,-12],[-17,-15],[-10,-8],[-9,-9],[-15,-12],[-41,-36]],[[76038,27037],[2,-11],[4,-13],[-4,-13],[-4,-12],[-12,-12],[-11,26],[2,16],[1,15]],[[76007,27049],[-9,10],[-6,7],[-7,-3],[-4,-1],[-2,-1],[-3,-1],[1,-1],[7,-14],[2,-6],[8,-18],[10,-35],[-17,0],[10,-20],[16,-16],[17,-30],[7,-27],[-14,-28],[-5,-2],[-7,-3]],[[76011,26860],[-9,3],[-2,0],[-5,14],[-8,8],[-16,7],[-9,8],[-14,-11],[-44,-34],[-121,-94],[-104,-81],[-101,-79],[-49,-37],[-35,-11],[-58,-19],[-104,-34],[-12,-4],[-58,-20],[-97,-32],[-22,-7],[-6,-2],[-5,-1],[-230,-75],[-16,-5],[-20,-6],[-34,-11],[-1,0],[-57,-19],[-32,-10],[-9,-3],[-15,-5],[-105,-34],[-33,-11],[-43,-13],[-23,-16],[-14,-10],[-58,-46],[-31,-23],[-12,-10],[-15,-12],[-10,-8],[-9,-7],[-93,-72],[-54,-43],[-52,-40],[-9,-7],[-1,-1],[-57,-44],[-21,-17],[-7,-6],[-92,-71],[-27,-21],[10,-13],[13,-12],[7,-7],[4,-16],[6,-7],[7,-3],[11,-9],[7,-13],[4,-9],[11,-17],[13,-25],[4,-11],[5,-13],[11,-9],[14,-5],[10,-2],[7,5],[-3,10],[11,11],[6,10],[14,-2],[10,-7],[-3,-13],[-6,-15],[-6,-8],[2,-12],[9,-2],[17,5],[12,-3],[4,-18],[9,-10],[-9,-14],[-6,-9],[2,-9],[15,3],[12,0],[6,-6],[-7,-18],[-7,-7],[-7,-7],[-5,-8],[2,-13],[12,-12],[21,-4],[6,-14],[7,-10],[2,-14],[-6,-13],[-12,-21],[-19,-18],[-6,-23],[-5,-11],[0,-12],[-2,-14],[-10,-11],[-6,-12],[-10,-8],[-3,-12],[5,-9],[7,-4],[8,-15],[13,-10],[6,-7],[-13,-19],[5,-11],[14,-2],[8,4],[7,-4],[5,-30],[-10,-14],[-4,-10],[14,-18],[4,-9],[3,-11],[9,-3],[12,4],[5,-19],[9,-17],[-2,-10],[7,-17]],[[74249,25040],[-4,-12],[-8,-1],[-7,5],[-8,4],[-5,9],[-7,4],[-7,7],[-10,-2],[-8,3],[-8,0],[-8,5],[-10,-5],[7,-4],[-3,-9],[-5,-9],[-18,-2],[-10,-6],[-9,-10],[-11,-9],[-13,-10],[-7,-10],[-11,-12],[-17,-12],[-4,-9],[1,-13],[12,-8],[7,-7],[9,-6],[6,-6],[-1,-11],[7,-12],[6,-9],[-1,-12],[-8,-2],[-7,5],[0,-10],[-10,-11],[-10,-2],[-5,-12],[-10,9],[1,10],[-9,-7],[-10,3],[-7,-2],[-8,5],[-5,6],[-10,-1],[-11,2],[-12,5],[-9,8],[-7,9],[-7,6],[-4,9],[-10,3],[-3,10],[-12,3],[-8,10],[-10,12],[-5,9],[-8,3],[-18,4],[-8,5],[-10,5],[-8,4],[-9,-4],[-11,6],[-7,6],[-7,6],[-18,0],[-9,-2],[-3,13],[-9,0],[-2,10],[-7,4],[-8,-5],[-8,9],[-8,1],[-7,-6],[-10,1],[-17,-4],[-14,-5],[-6,11],[-14,5],[-9,3],[-8,0],[-11,3],[-13,-4],[-15,-3],[-11,-4],[-9,-2],[-9,-5],[-10,-3],[-11,0],[0,-11],[-6,-8],[-9,-4],[-5,-8],[-9,2],[-11,3],[-10,-2],[-8,7],[-15,8],[-10,5],[-7,7],[-8,2],[-9,4],[-7,11],[-4,10],[0,9],[-3,9],[5,10],[-11,1],[-11,0],[-12,-1],[-10,-1],[-8,0],[-13,3],[-9,1],[-8,6],[-10,10],[-7,10],[-5,12],[-4,8],[-4,8],[-7,4],[-7,5],[-7,5],[-5,10],[-10,-1],[-8,-2],[-7,6],[-7,6],[-8,4],[-7,7],[-6,7],[-7,-6],[2,-13],[-7,-12],[-9,0],[-3,9],[-1,11],[0,11],[-2,10],[-3,11],[-5,7],[4,10],[6,6],[3,9],[-6,9],[-4,8],[-3,10],[-7,16],[-7,9],[-6,7],[-2,16],[-1,11],[-1,10],[10,4],[7,-5],[8,1],[7,6],[-4,9],[-4,8],[-17,14],[-15,8],[-8,3],[-8,3],[-8,0],[0,-11],[0,-10],[-7,-5],[-10,-2],[-10,-5],[-5,-7],[-4,-9],[-5,-7],[-4,-7],[-12,-12],[-2,-4],[-3,-5],[-8,-8],[-7,-2],[-8,0],[-14,3],[-4,8],[1,12],[-4,10],[-9,3],[-7,-2],[-11,0],[-10,-2],[-8,2],[-1,14],[14,0],[8,-1],[8,3],[3,10],[-8,8],[-4,10],[7,5],[5,-8],[6,7],[2,12],[11,-1],[6,7],[-4,9],[-3,10],[-14,8],[-8,10],[-3,11],[12,8],[11,6],[3,9],[-8,0],[-5,-9],[-10,8],[-10,3],[3,-11],[-6,-8],[-2,-14],[-7,-7],[-11,2],[-2,10],[5,11],[-6,7],[-7,-5],[-7,6],[-8,9],[-8,2],[1,-12],[-5,-11],[-6,-5],[-13,-2],[-11,5],[-9,-1],[7,-17],[11,-1],[5,-7],[-8,-8],[7,-8],[-6,-11],[-14,-10],[-10,1],[-1,13],[10,10],[-10,4],[-7,-4],[-5,-8],[-8,1],[-3,10],[-8,7],[-9,-8],[-9,-8],[-8,-2],[-8,3],[10,7],[6,9],[-7,10],[-7,11],[-10,-5],[-11,-6],[-9,-11],[-1,-11],[8,-4],[2,-11],[-6,-9],[-9,-4],[-8,0],[-6,7],[3,11],[10,9],[-5,12],[-11,9],[-8,1],[-4,-9],[-2,-11],[-13,-2],[-5,-8],[7,-12],[8,-10],[8,-7],[-2,-17],[9,-4],[9,5],[2,-14],[0,-18],[-6,-7],[-9,2],[-3,15],[-8,-8],[-5,-16],[-9,-1],[-2,19],[-10,-1],[-7,-10],[-7,-7],[-8,1],[0,9],[5,9],[0,10],[-10,9],[-8,2],[-6,-6],[6,-17],[-7,-6],[-8,7],[-4,11],[5,15],[-1,19],[-6,7],[-8,-3],[4,-10],[-10,-10],[-12,8],[-1,11],[-3,10],[-3,10],[0,12],[11,7],[-3,9],[-9,-3],[-10,-7],[-8,7],[4,9],[7,7],[4,11],[-7,2],[-30,-5],[-10,4],[-1,10],[10,5],[11,-1],[7,6],[-5,7],[-7,-4],[-10,0],[-10,3],[-5,7],[4,12],[2,15],[-6,7],[-9,2],[-14,-4],[-9,-1],[-9,-3],[-21,-15],[-9,-5],[-6,-8],[-5,-9],[-4,-10],[-20,0],[-6,-10],[-1,-9],[-7,-6],[-2,15],[-6,7],[-11,6],[-8,-3],[-2,-11],[7,-9],[-1,-11],[-11,-3],[-9,2],[1,14],[1,9],[-4,9],[-8,-6],[-2,-19],[-5,-8],[-8,3],[-3,10],[-10,6],[-7,7],[4,12],[-7,14],[-9,3],[-10,-5],[-4,-10],[-8,0],[-5,9],[-7,6],[-3,11],[-4,8],[-7,7],[-9,-2],[-5,-14],[-8,-12],[-3,-14],[-3,-9],[-8,-2],[-12,10],[-7,3],[-3,-9],[0,-11],[-4,-10],[-10,0],[-9,9],[-4,9],[-9,7],[-1,11],[8,-1],[11,-7],[7,4],[1,12],[-2,15],[-8,4],[-7,-7],[-6,-12],[-6,-7],[-16,-13],[-8,-10],[-9,-1],[-3,15],[3,10],[-6,8],[-10,-4],[-8,-6],[-8,-1],[-3,12],[0,18]],[[72195,25474],[-7,13],[-8,9],[-1,12],[8,6],[-1,12],[-11,1],[-7,3],[-3,10],[14,5],[8,4],[10,5],[-2,14],[-15,0],[-9,4],[-2,10],[9,6],[7,-2],[10,0],[8,-9],[10,-2],[5,9],[-2,12],[-5,8],[6,7],[12,-3],[13,-4],[7,10],[0,13],[-7,8],[-12,6],[-9,4],[1,18],[-4,9],[-16,-14],[-7,-16],[-9,-3],[-6,9],[-1,15],[-1,14],[-4,11],[-7,10],[-8,6],[-9,-3],[-3,-10],[-9,-2],[-8,4],[-7,6],[-3,11],[2,10],[9,6],[9,1],[13,1],[4,10],[-16,19],[-10,1],[-9,8],[-7,5],[-1,11],[9,5],[12,-5],[16,-7],[7,-4],[2,-9],[10,-3],[10,5],[6,6],[-6,10],[-19,11],[-9,6],[-21,12],[-8,9],[-4,11],[1,10],[-7,11],[-10,4],[-10,-3],[-10,3],[-5,11],[6,22],[1,11],[-5,14],[-6,6],[-8,8],[-5,7],[-9,13],[-8,17],[-8,30],[-5,16],[1,15],[4,44],[6,61],[2,17],[1,11],[2,18],[4,43],[9,90],[5,49],[2,15],[3,35],[2,18],[21,202],[6,64],[2,11],[1,19],[5,44],[4,36],[11,109],[0,3],[3,24],[1,9],[0,2],[2,16],[4,47],[2,14],[2,20],[1,7],[0,5],[2,22],[3,29],[-2,13],[-3,11],[-2,5],[-4,11],[-1,12],[-1,10],[-3,12],[-6,12],[-10,5],[-17,-2],[-11,-3],[-13,-1],[-8,7],[1,12],[5,12],[5,8],[10,11],[7,5],[8,4],[8,4],[7,6],[6,7],[8,9],[10,12],[6,7],[6,17],[3,12],[3,11],[-1,14],[-4,12],[-5,13],[-3,12],[0,12],[5,11],[5,11],[5,10],[6,9],[5,9],[5,13],[3,9],[5,15],[4,19],[-1,11],[2,13],[10,14],[7,6],[7,12],[-2,9],[-6,14],[-2,9],[-2,11],[0,10],[-2,11],[-20,9],[-15,6],[-14,2],[-9,3],[-11,5],[-14,10],[-12,9],[-6,7],[-10,11],[-7,11],[-4,15],[-2,6],[-3,11],[-5,15],[-5,11],[-5,10],[-7,12],[-7,11],[-7,11],[-7,12],[-5,10],[-8,21],[-5,14],[-4,12],[-5,8],[-9,9],[-7,4],[-9,8],[-4,12],[-3,14],[2,12],[4,9],[5,11],[5,10],[1,13],[-3,16],[-1,18],[3,17],[3,11],[7,17],[6,15],[3,12],[0,12],[-7,13],[-11,11],[-7,9],[-8,5],[-12,3],[-11,5],[-8,3],[-10,13],[-16,35],[-7,21],[-5,8],[-11,24],[-2,15],[-2,10],[-8,18],[-11,8],[-17,4],[-25,1],[-8,4],[-7,6],[-12,13],[-6,9],[-9,10],[-10,8],[-12,4],[-8,3],[-17,3],[-21,4],[-11,4],[-19,7],[-11,5],[-10,6],[-9,8],[-11,1],[-11,-3],[-10,-2],[-7,-9],[-1,-13],[7,-12],[19,-19],[5,-11],[0,-14],[-7,-16],[-7,-7],[-15,-2],[-14,-1],[-15,6],[-14,7],[-34,13],[-8,4],[-16,5],[-9,3],[-14,-1],[-9,-4],[-5,-15],[1,-23],[1,-15],[-2,-11],[-1,-12],[-5,-7],[-9,-4],[-12,-4],[-12,-4],[-12,6],[-29,6],[-11,2],[-13,-5],[-13,-4],[-32,-6],[-19,0],[-29,3],[-16,-3],[-8,-1],[-15,-12],[-9,-6],[-9,3],[-8,4],[-22,12],[-8,3],[-19,-15],[-8,-5],[-11,-6],[-15,-5],[-8,5],[-12,4],[-6,9],[-6,13],[-1,21],[-1,10],[16,8],[19,2],[13,6],[7,12],[-5,10],[-9,8],[-1,11],[7,8],[8,17],[1,10],[-5,10],[-9,7],[-16,4],[-14,5],[-11,2],[-9,5]],[[59711,26354],[-107,1],[-52,-1],[-40,0],[-14,0],[-36,-1],[-129,0],[-39,-1],[-104,-1],[-9,0],[-28,-1],[-8,1],[-37,0],[-178,-2],[-90,-1],[-41,-1],[-40,0],[-66,-1],[-98,-1],[-48,0],[-36,-1],[-43,0],[-43,-1],[-12,0],[-39,0],[-16,0],[-56,-1],[-7,0],[-102,-4],[-37,0],[-13,0],[-249,-3],[-61,-1],[-23,0],[-23,-1],[-3,0],[-20,0],[-137,-1],[-29,0],[-58,-1],[-108,-1],[-45,-1],[-85,-1],[-46,0],[-14,0],[-94,0],[-39,0],[-22,-1],[-21,0],[-42,0],[-10,-1],[-46,-2],[-53,1],[-18,0],[-32,-1],[-6,0],[-11,0],[-8,0],[-1,0],[-10,0],[-43,0],[-209,-1],[-13,0],[-123,-3],[-16,0],[-84,-3],[-51,-1],[-8,0],[-108,-2],[-104,-3],[-147,-3],[-22,0],[-59,-1],[-49,-1],[-83,-2],[-30,-1],[-156,-3],[-95,-2],[-1,0],[-29,-1],[-38,-1],[-22,0],[-52,-1],[-104,-3]],[[55183,26292],[-88,-1],[-4,0],[-9,-1]],[[55082,26290],[1,52],[1,38],[0,15],[0,32],[0,8],[0,39],[-1,57],[0,85],[-1,51],[-1,68],[0,18],[-1,95],[0,33],[-3,35],[0,12],[0,12],[0,20],[-1,11],[-2,12],[0,13],[2,7],[1,3],[-1,15],[-10,298],[-1,202],[0,118],[0,2],[-1,60],[0,15],[0,17],[0,61],[-1,130],[0,42],[-1,120],[0,49],[-1,28],[-1,192],[0,40],[0,42],[0,23],[0,31],[0,44],[-1,84],[0,25],[0,35],[-2,88],[0,20],[1,22],[-1,40],[0,22],[0,46],[0,13],[0,22],[-1,25],[0,33],[-1,126],[0,1],[-1,162],[0,27],[0,33],[-1,45],[0,22],[0,92],[-1,24],[0,10],[0,60],[0,17],[0,28],[0,27],[-1,50],[0,12],[-1,59],[0,17],[0,22],[0,4],[0,21],[-1,103],[0,55],[-2,144],[-1,52],[1,97],[-1,64],[0,32],[0,16],[0,11],[0,12],[-1,11],[0,31],[1,10],[-1,11]],[[55082,26290],[-25,0],[-20,0],[-41,1],[-53,0],[-92,1],[-111,1],[-14,0],[-27,1],[-46,0],[-12,1],[-26,0],[-80,1],[-10,1],[-84,1],[-1,0],[-21,0],[-38,0],[-21,-1],[-72,5],[-29,2],[-80,5],[-60,0],[-51,0],[-30,0],[-20,0],[-90,0],[-53,-1],[-21,1],[-62,1],[-21,0],[-1,0],[-37,0],[-13,0],[-21,1],[-52,0],[-119,0],[-41,1],[-40,0],[-11,1],[-88,1],[-78,2],[-20,0],[-12,1],[-13,1],[-17,0],[-19,0],[-37,0],[-62,-1],[-38,0],[-35,0],[-20,0],[-2,0],[-28,0],[-10,0],[-81,1],[-28,0],[-105,1],[-259,2],[-39,0],[-16,0],[-12,0],[-22,0],[-24,0],[-13,0],[-23,0],[-41,0],[-42,0],[-8,0],[-56,0],[-66,0],[-109,1],[-19,0],[-14,0],[-83,0],[-24,0],[-2,0],[-63,0],[-42,0],[-2,0],[-23,0],[-27,0],[-21,0],[-53,0],[-97,0],[-10,0],[-59,4],[-53,5],[-162,16],[-13,1],[-9,0],[-20,0],[-9,0],[-86,-1],[-20,-1],[-31,0],[-148,3],[-36,1],[-15,0],[-12,0],[-30,1],[-25,0],[-93,2],[-131,1],[-23,0],[-35,0],[-17,0],[-61,1],[-14,0],[-69,0],[-24,1],[-70,0],[-53,1],[-23,0],[-103,1],[-201,2],[-54,0],[-86,1],[-9,0],[-11,0],[-13,0],[-2,0]],[[49713,26361],[0,14],[1,14],[0,14],[0,17],[1,96],[1,60],[0,19],[1,53],[0,75],[1,267],[0,13],[0,11],[0,11],[1,24],[0,70],[0,102],[1,29],[0,74],[0,20],[1,33],[0,32],[0,9],[0,15],[0,12],[2,118],[-2,23],[1,88],[0,12],[1,93],[0,15],[0,28],[0,31],[0,63],[1,78],[0,37],[0,23],[0,30],[0,20],[1,42],[0,48],[0,11],[0,35],[0,54],[0,33],[1,140],[1,24],[0,126],[0,76],[1,38],[0,91],[0,71],[0,19],[1,51],[0,11],[0,5],[0,47],[0,66],[0,17],[0,12],[0,14],[1,103],[0,36],[0,85],[1,304],[1,126],[0,20],[1,162],[0,26],[0,7],[0,18],[1,121],[1,156],[0,19],[0,27],[0,12],[0,3],[0,51],[1,34],[0,26]],[[49713,26361],[0,-4],[0,-11],[1,-75],[0,-83],[0,-1],[0,-40],[1,-64],[0,-111],[0,-60],[1,-147],[0,-330],[0,-42],[0,-192],[0,-128],[0,-98],[0,-98],[0,-73],[0,-66],[0,-96],[0,-80],[0,-104],[1,-289],[0,-114],[0,-31],[0,-34],[0,-85],[0,-63],[0,-39],[-1,-242],[0,-24],[0,-10],[1,-15],[0,-22],[-1,0],[1,-112],[0,-42],[0,-95],[0,-60],[0,-156],[1,-228],[0,-69],[0,-98],[0,-76],[0,-38],[0,-167],[0,-194],[0,-17]],[[49718,22138],[-19,0],[-69,0],[-30,0],[-121,-2],[-154,-2],[-8,0],[-94,-1],[-88,-2],[-61,0],[-56,-1],[-50,-1]],[[48968,22129],[-3,15],[-3,15],[-2,10],[-1,15],[-2,21],[1,13],[-2,32],[-1,17],[-15,83],[-2,9],[-3,15],[-3,17],[-4,17],[-4,14],[-9,25],[-6,10],[-7,11],[-1,1],[-9,10],[-7,8],[-6,3],[-6,2],[-7,2],[-7,1],[-15,1],[-14,0],[-15,1],[-4,0],[-5,-2],[-5,-4],[-4,-3],[-4,-1],[-8,-1],[-58,-6],[-8,0],[-23,5],[-10,4],[-3,2],[-23,13],[-7,4],[-10,8],[-10,9],[-8,8],[-13,16],[-19,24],[-17,22],[-26,35],[-8,11],[-5,7],[-21,30],[-6,8],[-6,8],[-8,13],[-7,10],[-3,6],[-16,27],[-12,22],[-2,7],[-2,8],[-3,6],[-3,5],[-20,28],[-2,2],[-4,3],[-9,4],[-10,3],[-7,2],[-9,6],[-12,11],[-14,17],[-9,15],[-6,18],[-2,16],[0,10],[2,19],[3,10],[8,27],[12,45],[17,45],[1,1],[3,6],[2,7],[3,18],[5,24],[4,23],[3,16],[0,10],[0,8],[-3,16],[-2,7],[-7,20],[-5,13],[-7,12],[-16,24],[-6,6],[-7,4],[-4,4],[-10,15],[-16,25],[-3,4],[-8,12],[-8,13],[-14,22],[-3,7],[-2,6],[-6,7],[-7,6],[-5,3],[-9,4],[-5,5],[-20,28],[-41,69],[-3,4],[-3,10],[-5,20],[-4,16],[-2,10],[-1,7],[-1,7],[-2,18],[-2,11],[-6,18],[-7,12],[-22,36],[-16,22],[-40,55],[-15,18],[-7,8],[-7,8],[-24,32],[-16,20],[-16,23],[-14,24],[-10,19],[-8,20],[-25,65],[-4,10],[-4,13],[-4,16],[-2,10],[0,8],[2,9],[3,7],[4,7],[6,8],[6,5],[5,4],[5,5],[4,7],[12,24],[8,17],[3,7],[23,74],[5,18],[5,16],[10,37],[2,7],[0,4],[-1,3],[-2,5],[-2,6],[-5,24],[-1,20],[0,8],[-1,15],[0,10],[2,7],[0,8],[-1,7],[-2,9],[-6,13],[-10,22],[-7,14],[-8,12],[-54,64],[-35,40],[-10,7],[-19,18],[-8,8],[-15,18],[-4,5],[-4,6],[-10,14],[-15,22],[-24,32],[-3,7],[-1,6],[-1,10],[0,8],[2,8],[5,8],[10,8],[10,7],[12,4],[8,2],[9,1],[8,-1],[8,-3],[7,0],[9,-1],[13,3],[11,4],[14,6],[55,27],[7,4],[27,26],[14,13],[6,6],[4,6],[19,30],[4,12],[2,12],[0,11],[-1,5],[-2,4],[-2,2],[-2,2],[-6,5],[-11,4],[-19,9],[-15,6],[-18,5],[-15,3],[-19,4],[-7,1],[-5,0],[-5,-1],[-5,-1],[-7,0],[-19,3],[-17,7],[-5,6],[-3,6],[-3,4],[-3,3],[-9,5],[-10,4],[-15,5],[-68,22],[-29,9],[-5,2],[-5,1],[-8,0],[-10,-1],[-7,0],[-8,2],[-16,6],[-15,7],[-12,7],[-7,4],[-4,4],[-3,6],[-15,42],[-8,24],[-17,44],[-4,6],[-8,11],[-2,3],[-7,4],[-4,2],[-3,0],[-4,0],[-3,0],[-4,1],[-6,5],[-16,16],[-7,7],[-7,11],[-13,25],[-17,36],[-4,10],[-9,24],[-1,5],[-8,37],[-1,8],[0,9],[2,13],[4,13],[8,24],[4,8],[7,11],[4,5],[4,4],[6,5],[2,3],[1,2],[13,28],[34,72],[7,15],[4,11],[4,9],[1,8],[4,51],[-1,4],[-13,33],[-2,4],[-4,3],[-7,7],[-9,5],[-14,5],[-14,4],[-9,2],[-38,17],[-40,21],[-13,6],[-47,17],[-10,3],[-8,1],[-16,7],[-10,5],[-7,6],[-3,2],[-2,3],[-2,3],[0,2],[-5,34],[-4,34],[-1,6],[-2,3],[-4,2],[-5,2],[-20,4],[-6,1],[-14,1],[-23,2],[-4,1],[-26,12],[-2,3],[-3,9],[-4,21],[-3,31],[0,10],[2,10],[4,37],[6,47],[11,96],[-1,32],[-1,3],[-2,4],[-3,4],[-2,3],[-3,1],[-19,4],[-36,3],[-6,0],[-3,-1],[-2,-1],[-4,-5],[-6,-6],[-8,-5],[-6,-3],[-4,0],[-9,0],[-9,3],[-14,8],[-71,40],[-9,7],[-8,10],[-6,10],[-10,25],[-8,19],[-4,12],[-3,4],[-3,2],[-6,0],[-5,-1],[-5,-1],[-4,-1],[-4,1],[-10,6],[-17,10],[-25,10],[-3,1],[-5,-2],[-6,-2],[-5,-1],[-5,1],[-27,7],[-6,3],[-5,4],[-7,7],[-6,7],[-4,5],[-2,4],[-2,4],[-1,10],[-2,15],[-5,22],[-6,18],[-18,58],[-18,55],[-7,30],[-12,50],[-3,12],[-2,12],[-1,12],[0,8],[1,10],[0,8],[-2,29],[-3,17],[-2,18],[-3,15],[-3,10],[-1,7],[1,5],[3,6],[3,5],[12,18],[1,1],[9,13],[3,8],[7,27],[2,8],[1,7],[0,5],[-1,6],[-3,6],[-2,6],[-2,8],[-1,9],[-1,9],[2,44],[3,13],[2,4],[1,6],[1,7],[0,7],[1,7],[0,6],[-1,12],[0,30],[-1,11],[-3,17],[-2,9],[-1,2],[-1,2],[-1,1],[-2,0],[-2,1],[-3,0],[-1,1],[-1,-1],[-3,0],[-5,0],[-3,-1],[-3,0],[-7,0],[-2,0],[-4,0],[-3,1],[-3,1],[-1,0],[-2,2],[-3,2],[-3,3],[-2,3],[-1,3],[-1,2],[-1,3],[0,3],[-1,3],[1,4],[0,3],[1,2],[0,2],[1,2],[1,3],[3,9],[2,7],[0,2],[1,8],[0,3],[0,8],[0,2],[0,1],[-1,7],[-2,7],[-1,2],[-6,11],[-3,4],[-4,4],[-5,6],[-11,11],[-9,9],[-7,6],[-6,5],[-4,2],[-3,0],[-4,0],[-3,-2],[-5,-3],[-5,-5],[-16,-9],[-6,-1],[-5,-1],[-5,1],[-7,3],[-9,6],[-13,10],[-6,7],[-3,7],[-1,7],[1,9],[2,12],[3,10],[4,7],[5,7],[6,7],[6,8],[3,8],[2,8],[0,12],[-1,6],[-4,14],[-6,12],[-5,8],[-3,2],[-5,1],[-7,2],[-4,4],[-6,8],[-7,11],[-10,21],[-3,7],[-2,6],[0,7],[1,10],[3,11],[3,8],[4,4],[8,6],[7,7],[4,5],[4,6],[4,12],[2,10],[2,12],[0,16],[-2,22],[-2,25],[-3,24],[-2,13],[-12,35],[-3,5],[-2,3],[-3,1],[-4,1],[-6,1],[-3,0],[-6,2],[-16,10],[-4,3],[-30,39],[-4,6],[-1,5],[-1,6],[0,15],[1,6],[2,4],[1,5],[1,6],[1,5],[0,7],[-1,10],[-7,46],[-1,3],[-1,3],[-4,5],[-4,3],[-2,1],[-2,0],[-23,8],[-22,8],[-7,1],[-37,7],[-6,1],[-6,0],[-4,0],[-4,-1],[-1,0],[-35,-12],[-4,-1],[-2,-2],[-4,-5],[-2,-3],[-12,-7],[-3,0],[-2,0],[-4,1],[-6,3],[-5,6],[-6,6],[-4,5],[-3,6],[-3,9],[-13,39],[-2,7],[-1,6],[1,4],[2,8],[2,8],[4,13],[6,21],[3,8],[4,5],[2,4],[2,5],[9,41],[0,3],[-1,3],[-3,7],[-7,9],[-10,13],[-23,26],[-12,13],[-7,7],[-6,6],[-17,11],[-11,7],[-4,2],[-5,2],[-6,3],[-10,7],[-5,6],[-5,7],[-8,12],[-2,5],[-1,4],[0,3],[1,4],[6,19],[5,26],[1,6],[1,7],[-3,10],[-3,5],[-4,4],[-5,2],[-5,1],[-16,2],[-4,0],[-3,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-5,1],[-5,3],[-5,5],[-3,4],[-2,6],[0,1],[-1,5],[-1,11],[-1,11],[3,12],[5,10],[7,8],[7,6],[7,3],[6,1],[6,1],[5,0],[6,1],[7,4],[7,6],[6,8],[2,5],[2,8],[-1,10],[-1,6],[-3,5],[-5,8],[-3,4],[-2,2],[-2,1],[-3,0],[-3,0],[-2,-1],[-4,0],[-3,-1],[-2,0],[-2,0],[-2,-2],[-4,-5],[-2,-2],[-2,-3],[-2,-2],[-6,-3],[-24,-10],[-4,-2],[-5,0],[-2,0],[-4,0],[-5,1],[-4,1],[-2,4],[-5,9],[-1,2],[-2,3],[-1,5],[0,5],[0,5],[2,12],[3,19],[2,13],[1,8],[2,8],[2,7],[1,4],[4,4],[4,3],[1,1],[3,5],[2,4],[1,7],[-1,6],[-2,6],[-1,2],[-2,1],[-3,2],[-1,1],[-5,2],[-2,0],[-5,2],[-6,1],[-3,0],[-6,1],[-5,1],[-2,0],[-3,0],[-14,-2],[-4,-1],[-4,-1],[-2,-2],[-4,-4],[-1,-2],[0,-2],[1,-3],[0,-1],[-1,-1],[-2,-1],[-3,-1],[-2,0],[-3,0],[-4,1],[-2,1],[-9,4],[-1,1],[-3,2],[-5,4],[-2,2],[-2,2],[-3,3],[-2,4],[-2,5],[-1,3],[1,3],[1,2],[0,3],[0,1],[1,1],[0,5],[0,3],[-1,3],[-1,4],[-2,5],[-2,3],[-3,3],[-3,4],[-2,3],[-2,1],[-2,1],[-5,3],[-9,4],[-4,2],[-2,1],[-3,1],[-7,1],[-7,0],[-4,-1],[-4,-2],[-3,-4],[-2,-4],[0,-5],[1,-7],[1,-8],[-1,-5],[-7,-15],[-4,-5],[-6,-4],[-5,-4],[-5,-3],[-3,0],[-25,5],[-3,1],[-2,2],[-3,4],[-2,8],[-2,7],[-2,9],[-3,10],[-5,12],[-8,15],[-6,9],[-3,2],[-3,1],[-3,1],[-4,1],[-4,3],[-5,5],[-4,5],[-3,5],[-2,4],[-1,3],[1,3],[1,3],[4,4],[6,3],[7,3],[5,0],[18,-1],[13,-2],[7,0],[6,2],[6,3],[5,5],[5,8],[3,8],[0,8],[0,25],[-2,5],[-5,8],[-6,6],[-7,4],[-9,3],[-6,2],[-5,1],[-1,0],[-4,0],[-4,0],[-4,2],[-6,5],[-6,6],[-7,10],[-6,7],[-7,15],[-12,25],[-1,6],[-2,12],[-2,10],[-3,9],[-2,5],[-2,4],[-11,17],[-3,3],[-3,2],[-1,0],[-3,0],[-3,1],[-5,2],[-7,3],[-13,6],[-3,3],[-3,3],[-2,6],[-2,7],[0,5],[1,9],[1,7],[4,17],[2,10],[10,30],[2,6],[4,4],[4,4],[2,5],[3,9],[3,17],[0,8],[0,6],[-5,18],[9,70],[1,12],[-1,10],[0,10],[-1,7],[-2,7],[-3,7],[-1,2],[-3,2],[-2,2],[-1,2],[-4,18],[-1,3],[0,4],[2,61],[1,5],[1,4],[4,4],[6,5],[4,4],[3,3],[2,4],[0,8],[0,8],[0,3],[0,2],[-2,5],[-3,11],[-3,7],[-4,8],[-4,6],[-3,6],[-4,9],[-1,6],[-1,2],[-1,7],[0,6],[1,8],[2,6],[1,3],[0,1],[0,3],[1,2],[0,2],[0,10],[-3,12],[-8,37],[-6,21],[-12,40],[-3,9],[-11,29],[-2,3],[-3,2],[-4,1],[-3,3],[-2,4],[-3,5],[-2,9],[-13,57],[-22,102],[-4,18],[-3,20],[-9,80],[0,7],[1,41],[0,27],[0,6],[1,2],[3,2],[2,1],[2,1],[1,8],[0,1],[-1,10],[-2,10],[-1,5],[-1,15],[-3,37],[-4,43],[-2,30],[0,4],[-3,14],[-2,5],[-21,69]],[[72195,25474],[-6,-7],[-41,-39],[-19,-18],[-3,-2],[-98,-93],[-110,-104],[-26,-24],[-8,-7],[-3,-4],[-24,-22],[-51,-48],[-16,-15],[-123,-116],[-45,-42],[-1,-1],[-107,-102],[-135,-127],[-2,-2],[-37,-35],[-111,-105],[-15,-15],[-101,-96],[-36,-34],[-110,-104],[-2,-1],[-23,-22],[-36,-34],[-83,-78],[-52,-49],[-60,-57],[-31,-28],[-69,-66],[-38,-36],[-14,-14]],[[70559,23927],[-8,13],[-10,6],[-12,2],[-30,-9],[-18,2],[-9,3],[-11,8],[-4,10],[1,10],[7,14],[-4,10],[-5,8],[-7,5],[-10,-1],[-7,-7],[-7,-12],[-7,-15],[-9,-10],[-12,-3],[-12,1],[-14,6],[-9,13],[-1,21],[7,28],[2,9],[15,18],[4,9],[-8,11],[-11,8],[-10,2],[-10,2],[-26,3],[-11,3],[-10,9],[-9,4],[-9,-1],[-9,-2],[-20,-12],[-8,-4],[-12,-3],[-9,-10],[-11,2],[-10,7],[-10,10],[-10,15],[-8,16],[-4,8],[-12,16],[-17,5],[-9,0],[-8,-4],[-12,-10],[-30,-13],[-25,-6],[-8,-3],[-8,-7],[-4,-11],[-2,-22],[-2,-10],[-8,-6],[-11,1],[-9,12],[-5,14],[-4,11],[-5,11],[-8,10],[-9,1],[-12,-10],[-8,-5],[-10,-3],[-11,0],[-20,4],[-8,6],[-13,14],[-8,12],[-5,11],[-1,19],[-10,22],[-16,9],[-8,4],[-7,10],[4,26],[0,12],[-3,10],[-12,11],[-21,9],[-12,11],[-14,26],[-6,8],[-18,25],[-12,9],[-18,8],[-14,7],[-22,7],[-17,9],[-14,5],[-31,-4],[-14,-5],[-13,-3],[-9,2],[-9,-2],[-8,-13],[-5,-10],[-13,-14],[-11,-6],[-12,-4],[-9,-2],[-17,1],[-8,-1],[-12,-4],[-7,0],[-17,5],[-6,5],[-6,15],[-1,13],[-4,15],[-5,8],[-8,9],[-8,9],[5,17],[6,10],[13,6],[3,14],[-3,9],[-27,10],[-14,-1],[-13,-5],[-17,-5],[-14,4],[-6,6],[-8,5],[-12,2],[-15,-13],[-9,-4],[-24,7],[-16,17],[-5,11],[-15,4],[-10,7],[-12,3],[-11,-7],[-16,20],[-4,9],[-3,12],[1,24],[-2,15],[-1,18],[-2,10],[0,18],[3,11],[15,15],[4,19],[-1,29],[-8,12],[-4,9],[3,10],[7,12],[0,11],[-2,20],[-2,19],[-7,12],[-6,8],[-7,10],[2,13],[5,8],[-1,15],[-4,12],[0,12],[3,9],[11,15],[1,11],[-12,20],[-1,10],[6,17],[2,15],[-14,15],[-6,7],[-4,19],[-4,15],[-7,38],[0,14],[-4,8],[-11,-5],[-8,12],[-10,11],[-14,-4],[-10,-6],[-11,-1],[-8,2],[-7,4],[-1,13],[-10,17],[-19,17],[-13,7],[-10,7],[-10,4],[-28,-1],[-14,1],[-9,2],[-14,15],[-9,1],[-13,-4],[-11,-1],[-24,9],[-9,1],[-9,-1],[-29,-13],[-17,-1],[-9,4],[-12,3],[-1,0],[-7,8],[-2,13],[-9,3],[-9,-2],[0,-14],[0,-10],[-7,-8],[-8,1],[-11,12],[-7,5],[-7,5],[-16,7],[-6,6],[-6,11],[-10,-5],[-8,-5],[-11,8],[-7,11],[-7,6],[-2,-12],[-9,-5],[-7,4],[-10,-3],[-6,-7],[-9,-3],[-15,-1],[-7,-4],[-15,-14],[-17,-1],[-7,1],[-8,-9],[-7,-4],[-8,4],[-17,4],[-9,-5],[7,-9],[-7,-12],[-9,-4],[-11,-6],[-13,6],[-17,18],[-18,5],[-10,6],[-6,8],[2,15],[-11,18],[-8,-2],[-14,-9],[-21,3],[-10,1],[-7,3],[-15,10],[-19,10],[-6,8],[2,10],[-2,13],[-4,12],[-10,7],[-20,0],[-32,-4],[-12,-1],[-8,3],[-4,9],[-21,-1],[-7,3],[-9,9],[2,10],[-6,11],[-17,3],[-12,3],[-13,5],[-11,5],[-12,5],[-12,-5],[-10,6],[-5,11],[-6,20],[-1,16],[-10,12],[-5,8],[-2,13],[9,-2],[7,4],[-6,21],[-1,13],[-17,8],[-5,11],[-5,10],[3,10],[5,10],[4,11],[-15,0],[-9,2],[0,9],[9,10],[-2,9],[-3,16],[-6,10],[-7,6],[3,15],[-13,-5],[-8,-3],[-8,9],[2,11],[0,12],[6,12],[0,16],[-11,1],[-18,10],[-4,8],[8,12],[-5,9],[-2,9],[1,15],[-3,11],[-9,7],[6,11],[2,13],[-5,11],[-14,11],[-3,13],[-3,11],[-20,17],[-4,10],[-9,6],[-7,7],[12,17],[-3,15],[-1,15],[-8,16],[-8,6],[-8,12],[-8,6],[-7,7],[-4,9],[-5,8],[-2,12],[-8,13],[-5,11],[-6,12],[2,11],[1,22],[4,11],[-1,12],[1,9],[3,16],[-6,9],[-3,11],[-9,-3],[-8,5],[4,20],[1,12],[-5,14],[-6,8],[-12,1],[-14,6],[-12,5],[-7,6],[-3,11],[-9,5],[-10,11],[-2,10],[-7,8],[-15,10],[-10,-2],[-9,2],[-9,5],[-6,10],[-8,6],[-13,12],[-3,10],[-8,8],[-5,13],[2,10],[1,14],[8,9],[-4,9],[2,11],[-4,11],[-3,11],[-8,5],[-1,14],[-7,11],[-13,7],[-11,5],[-8,8],[-9,7],[-13,3],[-5,8],[8,9],[-10,6],[-9,8],[-7,5],[-2,10],[-1,11],[-6,8],[-10,0],[-13,-3],[-9,3],[0,11],[-4,11],[-3,10],[-8,-5],[-5,8],[-7,-1],[-10,-1],[-14,-6],[-8,3]],[[66697,20817],[-74,-1],[-1,0],[-17,0],[-11,0],[-10,0],[-10,0],[-22,-1],[-27,0],[-13,0],[-11,0],[-17,0],[-88,1],[-34,0],[-178,1],[-14,0],[-40,0],[-42,1],[-78,0],[-20,0],[-15,-1],[-112,1],[-58,0],[-62,0],[-21,0],[-84,1],[-70,0],[-121,1],[-95,1],[-34,0],[-110,1],[-38,0],[-33,1],[-69,0],[-2,0],[-42,0],[-1,0],[-21,0],[-77,0],[-71,1],[-32,0],[-31,0],[-10,0],[-9,0],[-35,0],[-9,0],[-68,1],[-114,0],[-14,0],[-100,1],[-159,0],[-58,0],[-17,0],[-92,1],[-14,0],[-45,0],[-32,0]],[[64015,20827],[-53,0],[-36,0],[-24,0],[-120,0],[-82,-1],[-169,0],[-17,0],[-9,0],[-80,0],[-72,0],[-91,-1]],[[63262,20825],[1,137],[0,21],[-1,83],[0,16],[0,38],[0,6],[0,140],[0,17],[0,17],[0,27],[0,16],[0,115],[0,66],[0,42],[0,120],[0,59],[1,53],[0,136],[0,305],[0,91],[0,48],[0,33],[0,32],[0,79],[0,12],[-1,10],[1,86],[0,41],[0,33],[0,15],[0,31],[0,28],[0,32],[0,53],[0,19],[0,70],[0,29],[0,72],[0,134],[-1,16],[0,142],[0,85],[0,136],[1,19],[0,65],[0,153],[0,13],[0,69],[0,9],[0,22],[0,115],[0,301],[-1,151],[0,3],[0,45],[0,14],[0,315],[0,115],[0,42],[0,94],[-1,143],[0,2],[-1,123],[0,23],[-1,101],[0,25],[0,102],[0,15],[0,60],[0,18],[0,73],[-1,64],[0,22],[0,15],[0,16],[0,19],[-1,54],[0,30],[0,13]],[[65767,26756],[-65,-25],[-25,-11],[-74,-29],[-19,-8],[-27,-10],[-12,-5],[-25,-10],[-12,-4],[-91,-37],[-1,0],[-9,-3],[-79,-32],[-36,-14],[-18,-7],[-8,-4],[-51,-20],[-8,-3],[-17,-7],[-9,-4],[-8,-3],[-49,-19],[25,-51],[29,-62],[9,-19],[38,-79],[7,-14],[20,-41],[30,-63],[11,-25],[17,-32],[16,-35],[5,-9],[2,-6],[16,-34],[13,-27],[16,-31],[21,-44],[23,-49],[29,-60],[9,-19],[13,-27],[23,-47],[10,-20],[22,-47],[15,-30],[7,-16],[9,-18],[21,-44],[15,-30],[31,-65],[19,-40],[13,-28],[14,-28],[10,-21],[37,-78],[33,-68],[6,-11],[19,-40],[16,-33],[12,-24],[4,-9],[11,-23],[38,-79],[15,-32],[0,-2],[21,-44],[27,-58],[25,-54],[28,-60],[10,-21],[26,-57],[34,-72],[43,-91],[17,-37],[39,-84],[14,-31],[7,-15],[18,-39],[11,-22],[17,-37],[34,-70],[12,-26],[19,-39],[17,-35],[14,-32],[13,-27],[13,-26],[7,-16],[4,-8],[1,-2],[17,-36],[17,-35],[30,-64],[37,-78],[14,-29],[12,-25],[21,-44],[76,-162],[2,-2],[46,-99],[24,-50],[5,-10],[72,-152],[39,-80],[74,-161],[21,-42],[11,-24],[63,-135],[12,-25],[26,-55],[12,-25],[8,-10],[6,-11],[7,-17],[5,-9],[37,-79],[62,-136],[35,-74],[26,-54],[5,-9],[86,-180],[11,-23],[-15,-13],[-9,-8],[-15,-14],[-14,-12],[-7,-7],[-9,-8]],[[67194,21941],[-13,-12],[-15,-12],[-11,-11],[-38,-34],[-29,-25],[-9,-8],[-25,-23],[-17,-12],[-98,-90],[-26,-23],[-45,-42],[-48,-43],[-2,-2],[-7,-6],[-10,-9],[-8,-7],[-11,-10],[-13,-12],[-12,-10],[-45,-40],[-7,-6],[-40,-36],[-11,-10],[-26,-23],[-5,-4],[-26,-24],[-59,-52]],[[66538,21355],[-1,0],[1,0]],[[66538,21355],[2,-1],[7,0],[10,-1],[12,-3],[10,2],[6,-6],[-2,-10],[-2,-10],[2,-12],[1,-15],[-2,-14],[-5,-12],[-3,-20],[4,-12],[11,1],[6,-11],[-4,-12],[-8,-3],[-25,0],[-20,-4],[-10,-7],[-12,-4],[-4,-9],[4,-8],[-3,-14],[-6,-10],[-5,-15],[2,-21],[2,-16],[4,-11],[7,-2],[14,8],[8,-7],[6,-11],[11,-24],[11,-3],[8,-10],[5,-14],[7,-16],[12,-17],[4,-7],[-7,-8],[-8,-4],[-8,8],[-15,7],[-7,-6],[2,-11],[-3,-12],[-5,-10],[3,-10],[7,-7],[1,-11],[-4,-10],[8,-13],[3,-11],[8,-2],[7,-6],[6,-9],[8,-14],[5,-8],[8,-4],[9,3],[5,9],[6,10],[10,3],[11,-9],[-7,-7],[4,-10],[8,-4],[14,-1],[12,-1],[9,-3],[-2,-9],[-3,-14],[9,-3]],[[75717,22278],[-25,-7],[-13,33],[19,11],[32,-7],[-13,-30]],[[74963,22394],[30,24],[46,36],[29,25],[-16,-41],[-30,-19],[-22,-16],[-37,-9]],[[75099,22572],[2,-11],[-2,-4],[-13,-21],[-25,-24],[-10,-10],[-3,-9],[-22,-9],[-8,45],[-1,4],[10,19],[5,9],[13,2],[12,1],[16,-1],[13,6],[13,3]],[[74963,22394],[-23,-2],[-13,-4],[-5,-1],[-7,-4],[-12,-8],[-16,-16],[-17,-9]],[[74870,22350],[3,22],[2,12],[2,10],[10,69],[5,32],[5,28],[17,107],[5,36],[8,50],[7,43],[10,60],[5,35],[2,16]],[[74951,22870],[0,-31],[2,-20],[14,-24],[16,-30],[23,-32],[25,-36],[-7,-22],[16,-17],[-6,-45],[-27,-10],[-10,-24],[1,-19],[-12,-19],[-7,-30],[-14,-29],[-4,-34],[21,-9],[-2,-3],[-11,-12],[-6,-30]],[[76364,22877],[-24,-21],[-23,3],[14,17],[9,8],[4,3],[21,25],[16,-14],[-8,-13],[-9,-8]],[[76478,22956],[-23,-5],[-18,-15],[-18,-3],[-20,-14],[-22,5],[13,12],[19,17],[18,22],[17,-6],[14,2],[20,-15]],[[76522,23038],[-4,-1],[-12,3],[-16,4],[25,23],[27,18],[32,15],[-9,-29],[-3,-14],[-1,-6],[-16,-9],[-23,-4]],[[76342,23167],[-9,-23],[-15,15],[-16,17],[-20,5],[-12,11],[12,29],[18,3],[19,-18],[10,-16],[13,-23]],[[76218,23269],[-27,-9],[-21,8],[-25,-3],[-38,6],[12,27],[30,13],[26,9],[25,6],[7,-33],[11,-24]],[[77668,23843],[-9,-17],[-25,3],[-18,-3],[-3,0],[-12,-7],[-40,-23],[-43,-26],[-3,-6],[-5,-11],[-10,-15],[-12,-10],[-43,-5],[-5,-1],[1,2],[2,4],[11,26],[3,5],[9,5],[2,2],[10,18],[37,18],[22,11],[2,1],[8,5],[48,28],[53,27],[16,-6],[2,-7],[4,-14],[-2,-4]],[[76478,22956],[21,18],[13,4],[3,1],[7,3],[16,6],[15,11],[15,5],[2,4],[10,16],[32,14],[12,13],[2,16],[24,8],[3,20],[2,4],[8,15],[6,2],[11,4],[22,-2],[-5,-26],[-2,-12],[6,3],[20,9],[12,11],[6,6],[17,-3],[12,7],[5,2],[25,-2],[17,0],[19,11],[24,17],[25,16],[0,53],[23,27],[4,6],[10,16],[20,14],[23,15],[7,5],[21,-4],[28,22],[29,8],[14,-5],[36,12],[33,4],[41,-5],[27,13],[26,11],[29,-3],[16,0],[10,13],[30,-2],[22,2],[26,2],[10,18],[28,-3],[18,-7],[31,23],[18,0],[10,15],[23,0],[18,17],[57,11],[17,7],[23,9],[26,18],[13,6],[25,18],[23,15],[28,17],[20,12],[-1,23],[-63,0],[11,56],[8,41],[54,85],[-101,19],[91,92],[3,9],[12,30],[15,35],[14,36],[11,10],[9,7],[53,45],[5,0],[26,-3],[41,-4],[25,-113],[-8,-70],[-2,-18],[2,-18],[8,-79],[-14,-16],[-6,-7],[-8,-10],[9,-5],[43,-24],[18,58],[-2,74],[-13,62],[5,69],[47,-43],[38,-47],[-13,-81],[-34,-76],[-37,-52],[-23,-41],[-19,-33],[-65,-80],[-72,-79],[-39,-39],[-111,-89],[-13,-7],[-44,-26],[-40,-27],[-49,-29],[-33,-17],[-21,-9],[-22,-12],[-44,-20],[-22,-12],[-26,-16],[-95,-48],[-36,-20],[-36,-17],[-56,-32],[-14,-8],[-25,-11],[-42,-24],[-32,-18],[-34,-20],[-34,-22],[-35,-16],[-22,-15],[-27,-12],[-19,-13],[-20,-10],[-37,-23],[-20,-14],[-27,-20],[-21,-14],[-51,-36],[-29,-22],[-18,-13],[-20,-12],[-22,-16],[-26,-16],[-23,-16],[-35,-27],[-24,-20],[-25,-17],[-11,-10],[-30,-18],[-29,-20],[-30,-16],[-35,-28],[-24,-17],[-18,-14],[-31,-26],[-17,-11],[-22,-17],[-20,-15],[-29,-25],[-27,-19],[-18,-16],[-29,-21],[-32,-26],[-19,-15],[-40,-31],[-48,-38],[-20,-18],[-23,-19],[-29,-22],[-16,-15],[-26,-19],[-19,-17],[-23,-21],[-15,-13],[-21,-16],[-21,-16],[-21,-21],[-24,-20],[-17,-13],[-17,-15],[-30,-26],[-19,-18],[-39,-32],[-22,-19],[-15,-16],[-14,-11],[-33,-32],[-21,-18],[-47,-43],[-18,-13],[-28,-25],[-31,-28],[-33,-31],[-38,-32],[-25,-22],[-18,-18],[-19,-18],[-22,-19],[-24,-21],[-34,-31],[-25,-26],[-21,-19],[-23,-25],[-17,-17],[-16,-16],[-31,-30],[-48,-45],[-12,-13],[-33,-29],[-29,-28],[-20,-19],[-40,-43],[-38,-37],[-23,-24],[-25,-24],[-23,-22],[-43,-47],[-23,-24],[-30,-29],[-26,-22],[-13,7],[12,11],[12,17],[15,28],[3,45],[6,30],[8,34],[13,31],[8,28]],[[74631,21125],[5,8],[7,12],[12,26],[-1,15],[-2,16],[2,14],[4,9],[10,9],[5,8],[8,10],[14,25],[5,9],[6,9],[3,15]],[[74709,21310],[8,12],[19,9],[13,12],[22,27],[22,18],[27,22],[20,19],[13,14],[9,29],[2,4],[-4,31],[-4,22],[18,6],[1,1],[37,20],[12,40],[-7,31],[-1,1],[-16,10],[-4,0],[-25,3],[-22,-12],[-13,-15],[-18,-3],[-23,17],[7,11],[7,9],[1,25],[1,13],[1,14],[1,5],[3,12],[4,13],[-1,19],[0,10],[-10,20],[-7,12],[-8,17],[-5,8],[-2,3],[2,12],[4,25],[8,16],[6,10],[2,20],[9,23],[15,-2],[13,-1],[19,14],[10,5],[9,6],[10,8],[10,8],[15,17],[19,6],[7,25],[1,4],[24,19],[22,14],[24,6],[3,1],[1,0],[32,2],[20,-2],[27,1],[30,-4],[17,-2],[13,-1],[15,3],[9,2],[21,2],[23,-1],[20,-3],[4,-1],[26,-16],[16,8],[20,-13],[16,26],[15,-7],[5,-2],[15,13],[28,8],[20,2],[7,1],[29,1],[16,5],[11,4],[17,-15],[21,22],[18,7],[1,0],[30,6],[20,8],[9,1],[11,1],[26,5],[5,1],[24,20],[28,9],[29,30],[10,31],[20,2],[11,12],[21,4],[-6,14],[-5,11],[0,6],[-2,23],[10,25],[-12,10],[23,9],[23,1],[24,15],[17,9],[25,18],[16,14],[8,7],[3,1],[20,4],[1,0],[14,-1],[10,14],[21,5],[20,2],[22,5],[25,4],[17,2],[-8,6],[-19,14],[-17,16],[-1,0],[-27,-4],[10,26],[3,7],[10,22],[6,9],[15,20],[16,37],[17,21],[12,14],[9,32],[20,4],[11,1],[17,18],[5,5],[12,12],[6,6],[4,3],[14,12],[16,15],[13,7],[17,4],[4,1],[17,1],[25,11],[20,4],[23,2],[14,2],[7,0],[5,1],[16,4],[-19,23],[-3,2],[-14,6],[-15,12],[21,12],[10,5],[18,9],[19,4],[18,5],[3,1],[-1,2],[-8,13],[22,3],[7,2],[16,7],[-1,3],[-2,19],[16,0],[7,-5],[12,-7],[6,3],[22,10],[32,4],[18,24],[17,23],[-27,11],[-38,9]],[[77748,23972],[-7,-19],[-14,1],[-17,3],[-6,1],[4,11],[6,14],[4,14],[3,9],[30,15],[12,2],[12,15],[16,12],[17,15],[1,1],[16,10],[14,-14],[-15,-10],[-8,-23],[-17,-13],[-14,-8],[-13,-12],[-13,-12],[-11,-12]],[[77946,24058],[-9,-6],[-74,1],[-21,46],[0,1],[19,44],[0,37],[8,38],[31,33],[29,0],[30,-47],[5,-7],[11,-19],[-7,-38],[-5,-23],[-10,-55],[-7,-5]],[[76849,26298],[-17,-14],[-23,-11],[-25,-19],[-17,-19],[-19,3],[7,24],[21,22],[22,14],[19,0],[32,0]],[[76695,26256],[-11,-16],[-23,17],[-14,24],[-10,31],[18,19],[-8,27],[1,23],[12,29],[3,35],[17,1],[14,-7],[6,-26],[17,-15],[5,-18],[-6,-21],[-10,-20],[-19,-17],[0,-42],[8,-24]],[[78574,26315],[-28,-17],[-16,-2],[-25,-11],[-29,-9],[-22,-10],[-20,-10],[-17,-11],[-24,-12],[-28,-23],[-18,-14],[-16,-6],[-19,-17],[-28,-18],[-22,8],[-17,9],[20,15],[22,18],[20,19],[12,23],[3,34],[3,38],[-2,41],[-12,29],[-13,39],[-4,31],[-10,20],[-20,9],[-14,9],[-29,15],[-13,3],[-14,4],[-19,9],[-20,-13],[-22,5],[-24,0],[-21,-1],[-1,23],[-6,25],[-16,28],[-9,15]],[[75051,24481],[-12,0],[-11,-3],[-9,-3],[-16,-15],[-15,-11],[-13,-7],[-14,-10],[-9,-9],[-8,-23],[-8,-7],[-11,-10],[-1,-2],[-8,-11],[-7,-5],[-6,-6],[-26,-27],[-11,-8],[-15,1],[-12,-4],[-10,4],[-9,12],[-6,15],[-5,10],[-6,8],[-5,11],[-6,16],[-7,24],[-2,10],[-7,13],[-7,10],[-8,10],[-14,9],[-19,6],[-11,7],[-9,10],[-13,32],[-8,12],[-11,9],[-25,19],[-6,7],[-5,8],[-3,14],[1,17],[-1,22],[-10,30],[-4,11],[-5,8],[-6,9],[-13,11],[-20,6],[-8,5],[0,12],[2,13],[-5,11],[-8,2],[-8,-9],[-6,-7],[-9,-4],[-26,-3],[-14,4],[-19,11],[-11,14],[-2,7],[-1,3],[-2,12],[3,11],[1,24],[-5,36],[-4,14],[-13,17],[-7,4],[-23,6],[-13,9],[-17,11],[-15,6],[-11,4],[-25,17],[-5,11],[0,12],[1,11],[2,19],[-2,10],[-10,12],[-10,6],[-8,4],[-15,4],[-17,4],[-20,6]],[[76011,26860],[-6,-3],[-9,-4],[-7,-9],[-7,-11],[-5,-7],[-5,-22],[22,-26],[21,-23],[5,-20],[15,-14],[19,-10],[19,-19],[25,-23],[32,-29],[17,-16],[14,-23],[19,-17],[3,-23],[8,-18],[5,-23],[3,-25],[4,-33],[9,-37],[21,-27],[30,-19],[23,-8],[26,-15],[20,-9],[14,-17],[14,-26],[16,-16],[3,-3],[-2,-32],[-24,-30],[-16,-13],[-21,-11],[-11,-33],[2,-26],[-24,-14],[21,-42],[-6,-19],[15,-14],[13,-11],[-11,-19],[9,-19],[9,-23],[12,-23],[17,-31],[9,-31],[15,-19],[-10,-20],[-13,-15],[18,-7],[-1,-23],[-11,-25],[-9,12],[-18,12],[-17,-4],[-10,-10],[0,-39],[-1,-37],[-23,-3],[-23,3],[-34,-5],[-26,-8],[-26,2],[5,30],[-15,16],[-16,30],[-23,-12],[-5,-22],[2,-27],[4,-20],[13,-19],[13,-15],[6,-18],[23,1],[22,4],[23,-11],[21,7],[16,-3],[20,-16],[26,2],[12,-22],[21,0],[27,4],[12,11],[22,2],[13,17],[17,6],[22,-6],[-5,-27],[38,-4],[21,-14],[5,27],[-25,19],[14,14],[15,18],[1,58],[-8,17],[13,5],[33,-2],[23,1],[26,0],[19,-1],[19,1],[17,1],[13,-1],[33,-9],[11,-31],[6,-23],[9,-23],[11,-19],[17,-20],[15,-14],[21,-13],[13,-7],[21,-10],[38,-21],[27,-13],[16,-6],[19,-9],[46,-25],[30,-8],[28,-6],[7,-25],[12,-36],[8,-24],[10,-22],[13,-18],[11,-28],[8,-30],[8,-15],[22,-47],[28,-41],[33,-25],[18,-17],[22,-10],[25,-15],[15,-15],[15,-24],[22,-10],[18,-16],[-20,-9],[-20,-13],[-30,-13],[-21,0],[4,15],[-2,18],[-24,2],[-16,-6],[-13,-14],[-19,-6],[-27,-14],[-15,-9],[-14,-13],[-32,-15],[-12,-39],[-11,-20],[-11,-17],[-11,-24],[-74,-31],[-19,-12],[-15,-1],[-25,-5],[-26,1],[-34,12],[-17,1],[-17,5],[-8,2],[-11,0],[-7,0],[-4,9],[-7,17],[-23,-15],[3,-40],[-2,-6],[-6,-16],[0,-24],[13,-9],[16,-8],[21,-10],[11,3],[5,2],[3,1],[2,0],[26,3],[14,-1],[3,0],[6,0],[20,1],[6,-3],[10,-5],[2,-1],[16,-4],[18,-5],[41,-7],[21,-1],[18,-16],[13,-16],[4,-6],[19,-36],[2,10],[3,15],[6,24],[3,10],[19,14],[19,22],[19,3],[8,25],[2,32],[10,24],[13,25],[15,16],[12,6],[11,11],[9,3],[7,3],[2,1],[19,8],[36,15],[19,5],[34,8],[16,8],[32,22],[-21,5],[-19,1],[-15,25],[2,26],[19,6],[18,2],[22,-17],[22,-19],[22,-16],[22,-8],[17,-11],[31,-21],[28,-20],[50,-44],[22,-31],[14,7],[20,-21],[17,-10],[18,-18],[15,-26],[15,-17],[18,-14],[-6,-27],[3,-24],[17,-9],[18,-10],[28,14],[27,-12],[25,-28],[15,-25],[-9,-22],[-3,-21],[8,-25],[9,-25],[15,18],[3,45],[27,-14],[17,-23],[16,-22],[18,-26],[18,-36],[5,-21],[4,-27],[-6,-24],[4,-2],[16,-7],[26,11],[0,-29],[-18,-15],[5,-22],[-14,-12],[4,-39],[-12,-19],[-26,-14],[-21,7],[-21,-15],[-25,-5],[20,26],[12,30],[22,19],[-21,8],[-21,6],[-23,-7],[-26,-6],[-31,-9],[-21,-9],[-15,-7],[-25,-13],[-12,-6],[-13,-9],[-15,-9],[-22,-18],[-28,-17],[-28,-13],[-32,-19],[-29,-19],[-55,-36],[-14,-13],[-36,-21],[-19,-20],[-17,3],[-27,-16],[-27,-25],[-3,32],[-15,-45],[-34,-27],[-6,-18],[-17,-12],[-17,6],[8,32],[-20,1],[-20,-16],[-15,-5],[-18,-9],[-16,-4],[-37,-20],[-20,-11],[-24,-15],[-36,-19],[-35,-20],[-17,-11],[-25,-17],[-17,-6],[-23,-11],[-13,-17],[-24,-6],[-26,-14],[-22,-12],[-19,-14],[-21,-7],[-27,-13],[-34,-22],[-35,-21],[-15,-10],[-18,-9],[-16,-15],[-28,-17],[-22,-16],[-15,-11],[-25,-10],[-19,-11],[-11,-9],[-39,-20],[-16,-14],[-16,-4],[-34,-22],[-32,-22],[-39,-15],[-18,-23],[-37,-23],[-20,-20],[-27,-15],[-19,-14],[-46,-18],[-11,-20],[-30,-5],[-11,-21],[-18,-10],[-25,-23],[-22,-20],[-23,-13],[-9,-9],[-25,-4],[-20,-21],[-14,-6],[-19,-17],[-31,-16],[-23,0],[22,26],[25,16],[47,33],[32,22],[41,25],[12,21],[-14,-2],[-10,0],[-34,-17],[-38,-2],[-30,-16],[-36,-23],[-30,7],[13,12],[6,20],[2,24],[26,3],[26,6],[30,5],[36,0],[20,11],[11,20],[-6,23],[-29,4],[-22,8],[17,28],[6,27],[-22,8],[-29,-8],[-26,-21],[-20,-34],[-21,-8],[-21,-17],[-16,-17],[-23,-3],[-13,22],[-15,18],[-15,16],[-25,9],[-11,35],[-13,17],[-19,13],[-18,5],[-25,-20],[-10,-32],[-20,-8],[-16,-23],[-19,47],[-21,12],[-19,0],[9,23],[17,43],[10,22],[13,30],[5,28],[4,28],[7,33],[1,37],[-2,25],[1,25],[-5,30],[-12,25],[-10,14],[-15,14],[-32,14],[-12,9],[22,8],[11,20],[2,40],[6,24],[0,22],[-11,31],[-11,19],[-20,-8],[-10,12],[-29,7],[-17,2],[-53,6],[-31,-3],[-29,0],[-23,2],[-17,7],[-21,11],[-33,10],[-4,-26],[-12,10],[2,31],[-13,27],[-13,20],[-10,33],[6,33],[-3,31],[-2,35],[-13,31],[-16,28],[-22,20],[-14,19],[-17,10],[-24,19],[-19,6],[-22,16],[-21,9],[-17,19],[-22,18],[-34,20],[-16,26],[-30,23],[-13,33],[-18,20],[13,47],[10,37],[0,19],[-10,31],[-1,27],[-16,-2],[-16,-9],[-23,-8],[-24,-11],[-16,-12],[-30,-10],[-20,-15],[-3,-2],[-19,-14],[-18,-15],[-42,-25],[-21,-14],[-11,-20],[0,-10],[-2,-21],[-2,-29],[-24,0],[13,-14],[1,-9],[2,-14],[2,-20],[1,-7],[18,-20],[9,12],[14,1],[15,-20],[2,-17],[2,-21],[21,-15],[0,1],[-1,27],[-11,45],[2,14],[1,12],[13,18],[3,0],[26,6],[5,-15],[14,-9],[10,7],[9,7],[24,18],[10,3],[6,2],[6,11],[6,13],[19,-15],[18,-9],[10,-6],[10,-12],[7,-7],[6,-14],[4,-12],[5,-9],[5,-10],[9,-13],[4,-6],[16,-25]],[[76849,26298],[-1,32],[-23,4],[-24,0],[-20,-2],[-18,-12],[-13,-8],[-11,6],[13,25],[-10,30],[-6,42],[-6,19],[-12,24],[-7,36],[-14,-4],[-4,23],[-19,14],[-45,-22],[-27,-16],[-2,-1],[11,26],[26,24],[18,14],[28,16],[11,29],[-7,15],[24,13],[16,18],[15,29],[18,28],[10,27],[9,36],[-3,24],[-14,4],[-1,20],[-18,19],[-23,12],[-21,23],[-1,-27],[10,-27],[-12,-28],[-22,-1],[-18,12],[-1,20],[1,32],[4,19],[3,34]],[[77770,26919],[31,6],[20,5],[22,4],[15,13],[11,19],[21,25],[14,31],[14,28],[10,-55],[0,-44],[-4,-34],[1,-28],[-9,-39],[2,-28],[-1,-28],[-20,-16],[-30,-25],[-22,-17],[-30,-37],[-3,-27],[2,-25],[7,-23],[15,-15],[17,-18],[27,-14],[33,-19],[26,-21],[-2,-19],[-17,-16],[-21,-24],[-12,-18],[-15,-23],[-21,-40],[-9,-28],[-5,-38],[17,-38],[15,-9],[3,-1],[19,-10],[22,-21],[20,-10],[20,-11],[25,1],[20,-4],[27,-14],[-23,-29],[-2,-8],[-3,-9],[-2,-4],[-5,-16],[-4,-22],[2,-25],[21,-32],[13,-16],[30,8],[-1,25],[35,6],[18,7],[25,5],[19,12],[10,14],[-13,18],[-15,9],[-24,10],[-20,36],[27,3],[27,-25],[28,-19],[15,-12],[-11,-13],[0,-27],[-54,-41],[-21,-9],[-29,-9],[-16,-17],[-27,-15],[-28,-14],[-28,-16],[-47,-29],[-43,-22],[-38,-23],[-23,-13],[-19,-12],[-46,-30],[-25,-16],[-38,-24],[-25,-14],[-19,-14],[-17,-11],[-21,-13],[-22,-15],[-30,-16],[-23,-11],[-21,-14],[-19,-15],[-27,-14],[-25,-15],[-32,-16],[-31,-10],[-33,-10],[-21,0],[16,26],[12,32],[7,41],[-1,23],[-8,37],[7,22],[8,18],[10,33],[18,12],[21,-6],[15,-17],[7,-20],[0,-24],[10,-44],[27,-4],[31,-6],[20,5],[13,20],[15,5],[13,10],[6,-22],[16,21],[24,13],[31,26],[19,20],[26,28],[16,28],[15,31],[-1,43],[-24,30],[-22,31],[-9,32],[-8,22],[-20,29],[-25,16],[-3,32],[1,42],[4,27],[-10,24],[-20,-12],[-36,-5],[-7,23],[-7,24],[-5,26],[0,33],[-11,21],[7,22],[15,29],[4,32],[1,36],[-17,23],[-6,24],[-19,10],[-6,-1],[-18,0],[1,-5],[3,-13],[0,-1],[10,-20],[13,-33],[-3,-42],[-12,-11],[-10,-18],[8,-36],[5,-22],[-19,-22],[-1,-23],[11,-15],[22,-16],[7,-19],[-2,-23],[-17,-20],[-42,-35],[-27,-27],[-17,-49],[-13,-19],[-13,-16],[-21,-36],[-8,-24],[-1,-35],[-23,20],[-24,22],[-27,21],[-28,10],[-32,3],[-32,-3],[-25,7],[-28,7],[11,10],[19,10],[26,13],[19,14],[20,17],[21,19],[12,26],[-5,26],[-10,21],[-8,18],[-17,17],[-30,20],[-22,9],[-12,16],[0,29],[-5,23],[0,4],[-1,10],[0,16],[-10,26],[-16,11],[-23,4],[-1,0],[-4,-20],[-2,-5],[-7,-15],[4,-30],[16,-23],[-4,-20],[-14,-15],[-33,2],[-40,19],[-35,4],[-52,11],[-15,3],[-27,1],[-16,-5],[-9,-15],[-12,-13]],[[70559,23927],[-38,-65],[-1,-1],[-35,-58],[-21,-34],[-58,-96],[0,-1],[-30,-51],[-35,-59],[-29,-47],[-31,-53],[-83,-138],[-11,-19],[-49,-80],[-48,-78],[-6,-10],[-8,-13],[-1,-2],[-4,-7],[-25,-41],[-26,-43],[-65,-108],[-42,-71],[-42,-70],[-1,-1],[-90,-151],[-9,-18],[-10,-18],[-6,-10],[-39,-63],[-48,-82],[-13,-24],[-12,-20],[-17,-31],[-15,-17],[-66,-109],[-19,-32],[-14,-24],[-78,-130],[-59,-101],[-14,-22],[-35,-59],[-10,-17],[-14,-24],[-1,-1]],[[69301,21828],[-1,-1],[-9,-14],[-29,-48],[-10,-15],[-160,-249],[-55,13],[-1,0],[-186,44],[-33,7],[-124,30],[-33,7],[-28,7],[-67,15],[-24,5],[-40,9],[-53,12],[-31,7],[-26,6],[-73,18],[-13,3],[-27,6],[-18,4],[-11,3],[-132,31],[-11,2],[-12,3],[-20,4],[-26,6],[-99,24],[-120,28],[-121,28],[-8,2],[-27,6],[-26,6],[-12,3],[-4,1],[-106,24],[-81,19],[-24,6],[-34,8],[-18,4],[-81,18],[-3,1],[-24,5],[-59,13],[-7,2]],[[59711,26354],[-2,-87],[-2,-76],[-1,-10],[-1,-34],[4,-244],[1,-180],[-1,-103],[-2,-180],[0,-2],[0,-53],[0,-14],[0,-43],[3,-332],[0,-21],[0,-35],[0,-14],[2,-64],[0,-42],[0,-84],[0,-20],[0,-2],[0,-39],[0,-88],[-1,-128],[0,-9],[0,-110],[0,-27],[0,-35],[-1,-244],[0,-33],[0,-9],[0,-109],[-1,-61],[-1,-23],[0,-167],[0,-51],[1,-349],[0,-168],[0,-131],[0,-174],[0,-100],[0,-29],[5,-112],[2,-160],[1,-176],[0,-15],[-3,-180],[-2,-116],[-7,-366],[-1,-47],[-3,-86],[-1,-25],[0,-5],[-1,-65],[0,-7],[0,-20],[-1,-30],[0,-46],[-4,-229],[-1,-77],[0,-24],[0,-22]],[[59693,20822],[-91,-4],[-9,-1],[-17,-1],[-22,-1],[-53,-3],[-61,-4],[-5,0],[-79,-4],[-49,-3],[-19,-1],[-27,-2],[-17,-1],[-99,-3],[-29,-1],[-55,-2],[-29,-2],[-14,0],[-23,-1],[-164,-7],[-50,-3],[-212,-9],[-10,0],[-52,-3],[-55,-1],[-106,-3],[-113,-3],[-40,-2],[-117,-10],[-20,-1],[-80,-7],[-42,-3],[-27,-2],[-140,-12],[-59,-5],[-97,-8],[-13,-1],[-15,-1],[-15,-1],[-44,-4],[-23,-2],[-83,-6],[-11,-1],[-28,-2],[-17,-1],[-40,-2],[-80,-5],[-26,-1],[-11,-1],[-35,-2],[-19,-1],[-20,-1],[-3,0],[-9,-1],[-21,-1],[-43,-2],[-79,-5],[-228,-12],[-8,-1],[-283,-16],[-36,-2],[-24,-1],[-82,-5],[-25,-1],[-84,-4],[-20,0],[-70,-4],[-2,-1],[-133,-8],[-24,-1],[-34,-2],[-50,-3],[-60,-4],[-46,-3],[-170,-10],[-45,-3],[-68,-4],[-3,0],[-13,-1],[-15,-1],[-37,-2],[-12,-1],[-16,-1],[-30,-2],[-19,0],[-27,-1],[-77,-5],[-2,83],[-2,59],[0,3],[-2,87],[0,17],[-4,155],[-2,69],[0,26],[-2,77],[-2,52],[-4,174],[-1,70],[-2,17],[0,22],[-1,33],[-1,46],[-4,179],[-1,51],[-4,154],[-1,43],[-1,48],[0,19],[-1,34],[-2,82],[-1,33]],[[55195,22202],[0,24],[-1,22],[-5,227],[-1,23],[-4,132],[0,17],[1,159],[2,131],[0,38],[1,72],[0,49],[1,37],[1,133],[1,84],[0,27],[2,137],[0,50],[-6,133],[-2,106],[0,24],[0,30],[-1,112],[0,28],[0,11],[-1,39],[0,21],[0,45],[0,16],[-1,93],[0,39],[0,18],[0,2],[0,9],[-1,41],[0,50],[0,25],[-1,52],[0,17],[-1,145],[0,65],[-1,70],[0,14],[-1,123],[0,11],[-1,71],[6,7],[-1,26],[-2,151],[0,58],[0,24],[0,41],[0,14],[0,90],[0,70],[2,246],[0,48],[0,92],[0,209],[1,35],[0,15],[1,22],[0,19],[0,11],[0,62],[0,78]],[[63262,20825],[-51,0],[-47,0],[-18,0],[-195,-1],[-13,0],[-5,0],[-42,1],[-15,0],[-375,-2],[-48,0],[-63,0],[-20,0],[-33,0],[-69,0],[-98,0],[-31,0],[-110,0],[-21,0],[-9,-1],[-143,0],[-56,0],[-106,-1],[-112,-1],[-27,0],[-11,0],[-13,-1],[-33,0],[-194,1],[-32,0],[-2,0],[-30,0],[-145,1],[-2,0],[-45,0],[-176,0],[-27,1],[-138,0],[-42,0],[-6,0],[-72,0],[-40,0],[-69,0],[-17,0],[-70,0],[-125,0],[-57,0],[-58,0],[-55,0],[-19,0],[-38,0],[-28,0],[-25,0],[-14,0],[-101,0],[-8,0],[-99,1],[-71,-1]],[[55195,22202],[-17,0],[-36,0],[-46,-1],[-208,-2],[-197,-2],[-156,-2],[-148,-6],[-185,-2],[-169,-2],[-199,-2],[-65,-1],[-86,-1],[-34,-1],[-38,0],[-30,-1],[-60,0],[-3,0],[-82,-1],[-18,0],[-152,-2],[-8,0],[-16,0],[-17,0],[-103,-2],[-52,0],[-49,-1],[-8,0],[-111,-1],[-45,-1],[-42,0],[-8,0],[-134,-2],[-25,0],[-21,0],[-143,-1],[-109,-1],[-100,-1],[-19,0],[-97,-2],[-52,0],[-91,-1],[-70,-1],[-64,-1],[-18,0],[-41,0],[-18,-1],[-19,0],[-65,-1],[-44,0],[-72,-1],[-72,2],[-65,-1],[-52,-1],[-87,-1],[-76,-1],[-58,-1],[-171,-2],[-203,-3],[-163,-2],[-10,0],[-67,-1],[-169,0],[-32,-1],[-210,-2],[-25,-1],[-85,-1],[-24,1],[-17,-1],[-16,0],[-74,-1],[-99,-1],[-3,0],[-109,-2]],[[75051,24481],[3,-2],[15,-8],[2,-1],[11,-21],[5,-12],[0,-10],[9,-18],[7,-14],[4,-8],[11,-20],[5,-7],[8,-10],[10,-7],[13,-17],[6,-8],[-1,-3],[-1,-8],[9,-2],[7,-7],[13,0],[9,0],[17,-22],[-8,-40],[-2,-5],[-2,-7],[4,-10],[0,-2],[5,-14],[1,-10],[3,-17],[2,-18],[-8,-9],[-9,-11],[-8,-5],[-7,-4],[-7,-4],[-14,-9],[-8,-6],[-25,-16],[-13,-13],[-7,-12],[-4,-12],[-3,-6],[-1,-3],[-7,-3],[-22,-10],[-22,18],[-24,14],[-29,22],[-17,16],[-21,18],[-3,3],[-14,14],[-21,19],[-29,37],[-23,14],[-19,13],[-14,14],[-5,3],[-8,5],[-6,14],[-3,5],[-30,22],[-32,13],[-28,-2],[-5,12],[-3,8],[-18,3],[-21,9],[-3,1],[-14,33],[-11,-15],[-13,-8],[-10,-5],[-7,-4],[-15,-6],[-6,-2],[-18,-12],[-27,-31],[-1,-18],[-27,-13],[-2,-3],[-7,-6],[-3,-3],[-16,-27],[-9,-31],[11,-36],[20,-41],[19,-15],[17,-15],[18,-24],[20,-21],[22,-26],[22,-38],[13,-8],[7,-22],[14,-6],[12,-23],[13,-20],[22,-21],[37,-30],[34,-30],[55,-31],[20,-17],[30,-17],[52,-27],[27,-3],[6,-23],[22,-22],[3,-28],[-8,-24],[-9,-21],[-3,-15],[3,-10],[-5,-19],[2,-10],[-3,-16],[1,-11],[3,-14],[3,-14],[5,-16],[6,-16],[3,-9],[3,-19],[0,-20],[3,-18],[3,-22],[1,-16],[2,-25],[-1,-22],[-1,-17]],[[75013,23276],[-196,-33],[-77,-13],[-34,-6],[-42,-8],[-94,-18],[-23,-4],[-118,-20],[-12,-1],[-49,-8],[-60,-11],[-124,-22],[-155,-27],[-9,-2],[-4,-1],[-4,-1],[-50,-9],[-18,-3],[-112,-19],[-3,-1],[-155,-26],[-64,-11],[-62,-10],[-43,-8],[-88,-15],[-13,-2],[-137,-23],[-29,-5],[-173,-29],[-30,-6],[-46,-7],[-132,-22],[-36,-7],[-37,-6],[-26,-4],[-112,-19],[-75,-13],[-1,0],[-25,-4],[-19,-3],[-19,-3],[-19,-3],[-9,-2],[-5,-8],[4,-11],[21,-8],[-3,-13],[-2,-10],[2,-13],[3,-15],[13,-10],[7,-12],[4,-10],[3,-10],[-4,-14],[-7,-11],[-4,-8],[-8,-5],[-10,1],[-12,2],[-8,-2],[-7,-8],[-4,-10],[7,-8],[12,-3],[15,-6],[12,-11],[6,-8],[8,-30],[8,-5],[10,-1],[8,-1],[14,-3],[4,-19],[-3,-11],[8,-9],[11,-8],[9,-5],[3,-24],[3,-9],[11,-4],[10,0],[8,-16],[2,-10],[7,-5],[7,5],[8,1],[9,-10],[10,-3],[4,-13],[-5,-10],[-6,-7],[-19,-10],[-4,-11],[16,-11],[12,-1],[18,-5],[19,-9],[13,-7],[9,-10],[11,-8],[9,-8],[13,0],[17,2],[9,-1],[15,-6],[11,-3],[10,-1],[13,-1],[13,0],[8,-7],[5,-10],[4,-9],[8,-3],[6,-10],[2,-10],[18,-2],[16,5],[9,-1],[2,-9],[2,-12],[-4,-9],[6,-14],[3,-12],[5,-8],[7,-7],[4,-8],[13,-5],[11,2],[6,-3],[6,-3],[9,-2],[6,-8],[9,0],[12,10],[12,3],[8,10],[13,-2],[8,-3],[-7,16],[9,1],[10,1],[8,-5],[5,12],[12,-3],[10,-6],[8,-3],[8,-7],[1,-11],[-2,-15],[11,-25],[68,18],[83,-4]],[[73285,22185],[-20,-18],[-14,-30],[-1,-1],[-22,-31],[-16,-23],[-9,-10],[-25,-19],[-21,-7],[-22,-5],[-28,-13],[-19,-7],[-42,-13],[-19,-8],[-27,-14],[-17,-9],[-22,-7],[-35,-17],[-34,-16],[-17,-8],[-27,-13],[-33,-17],[-31,-10],[-23,-14],[-11,-10],[-46,-26],[-22,-12],[-27,-16],[-34,-18],[-17,-4],[-18,5],[-18,9],[-17,-6],[-16,-11],[-22,-18],[28,-2],[16,-20],[-24,-15],[-34,-29],[-28,-25],[-16,-16],[-22,-20],[-25,-1],[-38,-11],[-14,-7],[-33,3],[36,17],[8,20],[9,23],[-6,39],[-1,24],[-9,33],[-15,34],[-2,33],[-8,23],[-28,28],[-33,13],[-19,-4],[-12,-4],[-36,-13],[-16,-8],[-6,-3],[-10,-5],[-15,-9],[-19,-13],[-7,-6],[-8,-8],[-17,-4],[-8,-22],[-23,3],[-7,-3],[-5,-1],[-15,-7],[-10,-5],[-13,-5],[-4,-25],[0,-1],[-4,-19],[-10,-18],[3,-32],[1,-18],[4,-19],[16,-22],[14,-26],[14,-20],[19,-18],[30,-30],[22,-8],[20,-3],[12,0],[11,11],[15,-9],[21,1],[-10,-15],[-13,-12],[1,-17],[-8,-16],[-18,-3],[-8,13],[-11,2],[-8,16],[-13,-11],[-14,-23],[-16,-21],[-24,-12],[19,-23],[-28,-9],[-9,-27],[-14,-6],[-19,-15],[-16,-16],[-21,-17],[-24,-22],[-25,-26],[-29,-22],[-18,-20],[-18,-14],[-21,-21],[-19,-20],[-15,-27],[-12,-20],[-14,-19],[-12,-19],[-13,-29],[-11,-11],[-10,-31],[-15,-20],[-23,-4],[-30,13],[-21,24],[-28,-10],[-22,-8],[-23,-2],[0,-20],[-1,-9],[7,0],[17,-1],[5,-3],[11,-9],[6,-3],[26,-8],[13,-20],[-14,-15],[-9,7],[-12,9],[-2,-27],[-12,-5],[-3,-1],[1,-18],[1,-5],[1,-1],[16,-6],[-21,-16],[-17,3],[-2,0],[-1,0],[-14,2]],[[71575,20873],[-7,6],[-8,7],[-14,13],[-8,7],[-14,12],[-10,8],[-22,15],[-17,12],[-3,2],[-11,7],[-6,12],[-21,20]],[[71434,20994],[-11,25],[-4,20],[-1,11],[15,13],[3,13],[-3,13],[-6,13],[-9,6],[-12,7],[-10,2],[-17,5],[-16,3],[-8,2],[-7,1],[-12,2],[-27,1],[-9,0],[-7,-1],[-9,-3],[-15,5],[-11,12],[-2,13],[-2,20],[0,11],[1,10],[0,17],[-8,25],[-7,30],[-6,36],[-6,23],[-9,20],[-7,7],[-12,8],[-12,2],[-11,-6],[-6,-10],[0,-11],[-1,-12],[5,-21],[-2,-18],[-5,-12],[-9,-7],[-12,-7],[-20,-6],[-10,1],[-16,3],[-11,7],[-17,14],[-8,8],[-12,9],[-11,5],[-11,0],[-9,2],[-12,8],[-6,7],[-5,10],[-2,12],[5,18],[7,10],[7,4],[8,-2],[15,-6],[9,0],[11,7],[6,13],[3,13],[-3,13],[-6,15],[-7,16],[-5,15],[-3,9],[-2,11],[-3,16],[-5,17],[-9,24],[-9,18],[-7,15],[-9,5],[-16,-3],[-25,-11],[-21,-11],[-9,-8],[-2,-11],[4,-9],[11,-3],[18,6],[14,11],[12,0],[12,-6],[4,-15],[-1,-12],[-3,-19],[-14,-24],[-9,-13],[-11,-13],[-9,-13],[-10,-12],[-10,-9],[-10,-3],[-18,4],[-5,10],[5,11],[6,7],[31,19],[4,12],[-4,10],[-6,6],[-17,7],[-47,11],[-15,5],[-10,6],[-8,7],[-8,9],[-9,3],[-8,-2],[-6,-7],[-3,-12],[-1,-24],[-1,-19],[0,-22],[-1,-12],[-3,-13],[-7,-14],[-7,-2],[-8,8],[-10,17],[-15,15],[-13,5],[-16,-1],[-22,1],[-10,5],[-7,5],[-12,14],[-7,5],[-25,10],[-14,9],[-19,13],[-14,15],[-11,11],[-11,10],[-7,7],[-6,9],[-4,11],[-4,10],[-6,9],[-9,2],[-7,-7],[-3,-16],[-1,-11],[-2,-13],[-4,-33],[-4,-12],[-3,-12],[-3,-17],[-7,-12],[-14,-6],[-9,2],[-7,10],[-3,22],[-2,10],[-8,6],[-10,4],[-22,5],[-28,-3],[-10,1],[-8,1],[-8,2],[-13,6],[-10,-2],[-6,-8],[-2,-16],[-3,-17],[-6,-11],[-3,-10],[6,-14],[9,-10],[14,-8],[14,-3],[12,-1],[16,-10],[-3,-12],[-9,5],[-9,11],[-8,2],[-7,-10],[1,-15],[3,-16],[0,-23],[-3,-10],[-4,-10],[-6,-7],[-17,-13],[-8,7],[0,12],[2,12],[-1,22],[0,11],[3,25],[-8,10],[-11,0],[-15,4],[-19,8],[-13,3],[-11,1],[-10,7],[-8,2],[-8,-1],[-13,-6],[-5,-9],[-7,-17],[-9,-9],[-15,-1],[-7,-5],[-9,8],[2,26],[0,25],[-1,9],[-2,10],[-3,15],[0,1],[-4,11],[-9,3],[-28,0],[-15,7],[1,11],[11,4],[25,3],[7,7],[8,11],[8,7],[15,8],[7,3],[8,9],[-6,10],[3,19],[10,19],[-5,17],[-8,-2],[-16,-19],[-17,-11],[-24,-5],[-9,-5],[-12,-3],[-13,2],[-12,6],[-9,-3],[-10,-10],[-2,-12],[0,-23],[-2,-10],[-5,-8],[-10,-1],[-8,2],[-11,7],[-13,2],[-6,10],[1,17],[6,19],[5,12],[7,10],[17,14],[4,14],[-1,21],[-2,13],[2,14],[7,12],[2,17],[-4,16],[-8,11],[-10,-4],[-9,-14],[-5,-25],[-10,-11],[-15,-5],[-9,1],[-8,5],[-3,10],[-3,10],[-4,12],[-9,19],[-9,3],[-16,5],[-6,8],[2,12],[5,10],[6,20],[-12,1],[-12,-5],[-12,-11],[-14,-7],[-12,-7],[-13,-4],[-9,-5],[-13,-15],[-10,-1],[-12,6],[-10,14],[-6,11],[-6,32],[-2,17],[0,15],[2,11],[1,26],[3,19],[1,14],[1,10],[3,24],[0,12],[-3,12],[-12,8],[-12,-4],[-7,-10],[-3,-10],[-3,-12],[-1,-10],[-2,-12],[-6,-14],[-2,-11],[-9,-12],[-12,-7],[-9,-1],[-13,2],[-9,-1],[-13,-3],[-9,-3],[-16,-9],[-20,-9],[-11,-7],[-31,-21],[-22,-13],[-20,-11],[-16,-8],[-8,-6],[-13,-18],[-6,-8],[-8,-10],[-10,-10],[-12,-7],[-28,-9],[-9,-4],[-13,-2],[-11,8],[-6,11],[-1,13],[-4,17],[-10,20],[-5,10],[-12,12],[-8,6],[-9,4],[-27,3],[-34,7],[-12,7],[-4,5],[-2,2]],[[72937,18877],[-14,19],[31,63],[22,47],[8,15],[-6,18],[-7,19]],[[72971,19058],[16,11],[3,15],[-2,26],[6,25],[15,13],[23,8],[-2,-33],[-2,-16],[-2,-16],[-6,-24],[-8,-33],[-16,-33],[-11,-28],[-11,-24],[-13,-34],[-13,-21],[-11,-17]],[[73007,19338],[5,-45],[-14,16],[-29,11],[16,23],[2,36],[16,-16],[4,-25]],[[73100,19640],[-20,-16],[-2,16],[8,22],[9,16],[25,28],[23,6],[-13,-26],[-21,-18],[-9,-28]],[[73224,19711],[-25,-17],[-2,22],[-17,1],[-18,12],[10,12],[30,13],[26,3],[32,-7],[-18,-21],[-18,-18]],[[72839,19681],[-15,-26],[0,39],[-6,28],[8,27],[8,40],[10,32],[26,13],[-8,-28],[-6,-35],[-5,-36],[-11,-28],[-1,-26]],[[72895,20027],[2,-20],[-7,-16],[-11,21],[-18,-14],[-19,-30],[-27,-17],[6,33],[16,22],[20,40],[23,0],[15,-19]],[[73885,20528],[25,-4],[32,2],[-6,-34],[-28,6],[-23,3],[-15,-1],[-6,15],[21,13]],[[74102,20881],[-16,-15],[-23,5],[-12,22],[22,15],[30,-4],[-1,-23]],[[74202,20910],[-15,-16],[-27,-15],[-20,-11],[-25,-2],[9,34],[22,-1],[32,21],[19,6],[18,-4],[-13,-12]],[[74382,20941],[24,-18],[26,-31],[24,-24],[18,-8],[3,4],[27,1],[4,-23],[-13,-26],[-3,-8],[-16,-14],[-14,-13],[-19,-24],[-17,-22],[-30,-34],[-23,-23],[-22,-25],[-18,-18],[-29,-34],[-20,-30],[-23,-28],[-27,-30],[-37,-45],[-39,-42],[-18,-18],[-18,-19],[-16,-18],[-23,-23],[-17,-20],[-26,-35],[-8,-10],[-14,-17],[-16,-20],[-23,-31],[-26,-29],[-30,-38],[-27,-31],[-19,-28],[-17,-23],[-19,-23],[-22,-29],[-16,-21],[-19,-25],[-21,-25],[-13,-16],[-15,-22],[-20,-26],[-22,-31],[-23,-29],[-16,-22],[-16,-23],[-22,-31],[-23,-31],[-24,-34],[-23,-32],[-24,-33],[-14,-21],[-16,-22],[-14,-23],[-24,-34],[-18,-28],[-27,-25],[0,-27],[-182,-308],[-140,-252],[-16,-86],[-69,76],[50,130],[46,120],[-35,132],[26,32],[33,-7],[0,30],[3,50],[15,64],[22,40],[48,16],[47,6],[33,46],[11,16],[10,12],[22,14],[31,25],[22,28],[10,21],[7,19],[12,22],[13,21],[9,17],[5,18],[16,24],[-11,32],[-11,-17],[-5,-15],[-8,-13],[-7,24],[-16,-7],[-15,-7],[-15,-6],[-4,22],[-20,-5],[-13,1],[-16,2],[15,14],[21,1],[13,3],[13,-6],[16,6],[17,13],[18,5],[16,6],[17,2],[2,-27],[25,16],[12,16],[11,24],[16,14],[-1,19],[3,21],[6,33],[11,35],[20,21],[8,26],[9,24],[14,24],[6,31],[1,23],[27,9],[20,16],[-9,22],[-29,-3],[-26,-14],[-18,-18],[-6,35],[-25,-32],[-8,19],[13,30],[3,19],[15,22],[14,22],[1,18],[2,22],[1,2],[16,20],[23,-7],[23,6],[18,23],[-5,21],[15,8],[22,0],[-14,-27],[13,-28],[23,8],[-2,27],[6,27],[15,10],[30,-36],[19,-15],[22,22],[25,0],[15,-13],[22,11],[-20,19],[-20,14],[14,18],[-20,13],[3,25],[21,-7],[24,-10],[11,-2],[27,-32],[11,-18],[5,-16],[8,-31],[14,14],[-6,19],[12,25],[14,19],[23,27],[24,19],[-18,9],[20,23],[-18,4],[-26,-5],[-10,30],[13,27],[-20,24],[-17,13],[3,17],[18,1],[18,1],[7,-15],[22,3],[22,10],[7,-18],[22,-4],[-8,22],[-17,20],[-13,24],[11,13],[17,-16],[11,-12],[13,-15],[24,-31],[21,-15],[8,19],[-3,28],[27,0],[-14,36],[-7,32],[-7,35],[-9,33],[9,15],[18,13],[34,-10],[14,25],[-21,6],[-16,0],[-26,-3],[7,20],[24,12],[15,-1],[12,16],[13,-7],[6,17],[14,9],[16,6],[-19,17],[14,29],[14,16],[14,12],[20,18],[12,-4],[37,17],[18,1],[28,-4],[16,-8]],[[71575,20873],[21,-36],[47,21],[36,9],[25,4],[31,-7],[19,21],[0,28],[-7,25],[-15,7],[14,16],[18,3],[20,4],[29,-3],[37,-11],[16,-11],[6,-17],[0,-2],[11,-4],[4,-1],[8,-2],[14,3],[14,-10],[17,-9],[22,-16],[32,-16],[20,-11],[25,-9],[19,-11],[14,-10],[-37,-26],[8,-24],[13,-25],[5,-9],[23,-14],[22,0],[2,0],[25,2],[20,-1],[22,8],[26,1],[18,-12],[-14,-22],[-6,-39],[15,-25],[20,-10],[22,-13],[10,-22],[-17,-22],[-6,-32],[1,-48],[-24,-4],[-17,-11],[-3,-32],[4,-27],[13,-24],[4,-16],[2,-17],[-1,-33],[-27,1],[-23,-7],[-16,-19],[-12,-23],[-18,-27],[-29,-13],[-9,-20],[4,-34],[-19,-29],[-6,-22],[-20,-15],[-8,-22],[-11,-19],[-25,-29],[-10,-8]],[[71993,20045],[-22,38],[-2,3],[-117,197],[-1,3],[-11,18],[-13,22],[-2,3],[-7,12],[-14,24],[-5,8],[-11,19],[-20,32],[-19,32],[-12,21],[-26,44],[-8,13],[-49,85],[-10,17],[-11,21],[-7,11],[-9,14],[-27,44],[-8,14],[-17,27],[-15,27],[-6,10],[-22,36],[-2,4],[-6,9],[-17,29],[-29,48],[-11,20],[-18,33],[-5,11]],[[74268,20999],[27,-7],[-29,-15],[-29,-2],[-27,-7],[-20,2],[-35,6],[-12,12],[18,13],[13,2],[16,2],[15,-8],[30,19],[12,-13],[21,-4]],[[72382,19385],[-6,12],[-5,10],[-6,8],[-2,4],[-6,10],[-8,13],[-1,1],[-4,9],[0,1],[-7,10],[-6,9],[-5,10],[-6,10],[-5,8],[-5,9],[-6,10],[-9,16],[-6,9],[-8,15],[-5,8],[-17,28],[-7,12],[-7,11],[-1,2],[-36,62],[-11,18],[-24,42],[-19,31],[-7,11],[-19,33],[-48,82],[-6,10],[-12,19],[-17,30],[-30,50]],[[72015,20008],[34,7],[29,36],[12,26],[-2,21],[25,30],[14,27],[7,19],[-3,20],[-8,11],[21,25],[21,-12],[20,14],[25,14],[23,9],[18,5],[30,11],[18,10],[1,2],[6,17],[1,39],[-3,35],[7,29],[19,38],[26,42],[-2,49],[22,9],[24,8],[28,7],[18,-7],[15,-14],[10,19],[5,7],[6,10],[9,10],[8,10],[19,8],[8,24],[-16,20],[-17,6],[-16,2],[-2,0],[-14,-1],[-25,-1],[-15,23],[-6,31],[-17,23],[8,19],[21,12],[20,11],[13,13],[29,-11],[17,-30],[8,-4],[10,-5],[-6,23],[-1,5],[-15,37],[17,39],[-21,-15],[-10,25],[28,12],[25,7],[20,14],[11,14],[-10,29],[18,-2],[16,11],[17,5],[17,5],[19,5],[10,-19],[15,-25],[28,13],[11,11],[27,-17],[18,10],[29,14],[20,20],[-9,37],[-15,-7],[-19,2],[-11,27],[-24,7],[23,8],[38,8],[29,18],[26,22],[32,5],[19,6],[24,4],[15,9],[12,14],[21,9],[14,16],[16,16],[18,31],[11,9],[9,19],[14,2],[3,20],[11,13],[-7,15],[-2,30],[3,51],[-2,22],[-15,14],[-28,6],[23,11],[25,0],[26,0],[22,-1],[22,-4],[21,-13],[20,-15],[14,-12],[17,-6],[25,5],[1,-3],[6,-25],[8,-20],[5,-24],[19,-12],[-35,-26],[-35,-26],[-14,-25],[-10,-17],[-7,-27],[-4,-32],[-4,-39],[-11,-28],[-5,-43],[3,-35],[3,-25],[1,-19],[6,-16],[12,-24],[0,-28],[-4,-20],[5,-42],[6,-21],[15,-30],[10,-31],[15,-27],[-5,-23],[9,-25],[-2,-23],[-5,-17],[-30,-6],[-24,-17],[-16,4],[-20,-7],[-27,-6],[-10,-15],[-11,-20],[-22,-19],[-5,-22],[-9,-26],[-14,-25],[-6,-27],[-12,-22],[-11,-24],[-8,-31],[-1,-21],[-13,-17],[-8,-13],[-10,-18],[-19,-23],[-12,-19],[-20,-3],[-25,-6],[-15,-13],[-30,-4],[21,-17],[-14,-20],[-12,-21],[-26,-8],[-16,-17],[-4,-26],[5,-15],[-2,-31],[-17,-12],[-9,-14],[-9,-16],[-20,-22],[-13,-29],[-15,-24],[-15,-35],[-21,-24],[-28,-40],[-11,-37],[-10,-21],[-12,-20],[-9,-18],[-11,-19],[-14,-21],[-20,21],[-9,-29],[-9,-20],[-13,-23],[-14,2],[2,-39],[-7,-33],[-14,-30],[-15,8],[-18,22],[-19,-27],[-13,-23],[-12,-13],[-7,-16],[23,-27],[-4,-43],[-8,-19],[-4,-20],[-8,-21],[-10,11],[-7,9],[-3,5]],[[74083,21426],[-13,-10],[-14,5],[-15,-11],[-12,-29],[-24,5],[11,23],[13,17],[12,20],[20,-1],[22,-19]],[[74631,21125],[-17,-12],[-16,-31],[-19,-34],[-11,-48],[-6,-38],[-5,-24],[-17,-23],[-17,-15],[-6,-23],[-22,4],[-29,19],[-10,22],[-8,26],[23,13],[16,0],[-11,17],[-25,3],[-27,11],[-16,8],[-15,10],[-17,15],[-47,18],[-17,32],[41,-4],[-20,31],[-16,26],[0,24],[-19,-16],[-4,20],[-8,18],[-10,16],[18,1],[21,-7],[-12,30],[-24,-2],[-10,15],[-17,4],[14,25],[20,5],[24,-19],[0,24],[12,9],[9,7],[5,3],[10,15],[-15,14],[-11,-2],[-6,-1],[-4,6],[-9,12],[-16,-1],[-3,-1],[-13,-5],[-7,16],[-17,2],[-4,16],[23,13],[11,3],[10,2],[8,14],[3,6],[7,26],[11,10],[4,5],[-3,7],[-4,9],[20,2],[14,22],[-12,15],[0,1],[2,24],[17,2],[19,12],[15,-6],[17,-14],[20,-27],[20,-9],[7,-11],[13,-39],[-33,-20],[-5,0],[-16,1],[-7,-4],[-12,-7],[-3,-2],[-22,-14],[1,-27],[25,3],[28,-4],[-7,-21],[-1,-5],[-4,-13],[-21,-14],[-7,-26],[13,4],[11,-12],[1,-15],[1,-12],[-12,-17],[-25,-3],[10,-20],[24,-12],[19,-14],[9,-13],[17,-15],[-4,29],[-5,45],[5,13],[4,11],[14,23],[6,16],[8,14],[15,9],[3,28],[-13,20],[26,11],[10,-4],[8,-3],[22,1],[16,-8],[12,-21],[17,-15],[20,-4],[31,17],[22,10],[5,2],[14,13],[2,2],[5,3],[9,5],[4,-25],[6,-23]],[[74077,21464],[-12,-3],[11,32],[23,29],[85,115],[-3,-25],[-15,-35],[-23,-56],[-26,-28],[-16,-15],[-24,-14]],[[74297,21678],[-16,-9],[-16,2],[-17,-4],[-20,15],[19,45],[36,18],[-8,-47],[22,-20]],[[74368,21837],[-25,-25],[-1,24],[9,19],[16,13],[23,16],[17,5],[17,12],[34,19],[21,6],[-4,-18],[-16,-14],[-28,-17],[-23,-12],[-23,-14],[-17,-14]],[[74586,21950],[12,-17],[-32,-12],[-48,-14],[41,35],[27,8]],[[74586,21950],[-14,12],[-8,19],[-15,-19],[-19,-16],[-23,-2],[16,27],[22,20],[16,15],[17,12],[20,21],[28,8]],[[74626,22047],[-9,-25],[16,-12],[-19,-19],[-17,-22],[-11,-19]],[[74626,22047],[18,27],[19,20],[16,15],[7,19],[-20,10],[-16,6],[-5,-8],[-18,-32],[-25,-19],[-25,-3],[-7,-8],[-5,-6],[-6,-5],[-14,-11],[-21,-19],[-3,-3],[-11,-10],[-17,-15],[-25,-20],[-12,-8],[-24,-18],[-7,-5],[-19,-12],[-7,-6],[-11,-9],[-17,-13],[-15,-17],[-30,-26],[-14,-20],[-25,-16],[-3,-14],[-6,-25],[-20,-25],[-11,-13],[-16,-13],[-4,-3],[-21,-16],[-19,-18],[-1,-1],[-13,-14],[-6,-15],[-3,-7],[-10,-26],[-5,-13],[-6,-9],[-15,-20],[-12,-18],[-20,-24],[-18,8],[10,19],[10,15],[3,6],[28,40],[2,35],[-6,13],[0,1],[-4,-4],[-18,-17],[-22,-35],[-23,-24],[-24,-30],[-2,-3],[-15,-20],[-6,-5],[-26,-21],[-5,-22],[-10,-24],[-3,-9],[-21,-31],[-29,-16],[-19,10],[-16,-4],[-11,-12],[-28,1],[-1,0],[-20,1],[-23,-1],[-26,3],[-27,-5],[-17,12],[12,18],[-11,14],[3,35],[-15,-1],[-21,9],[20,25],[31,4],[34,27],[5,19],[7,24],[20,33],[27,25],[-12,18],[-9,31],[-3,24],[2,23],[-5,24],[1,27],[-5,21],[-13,22],[19,2],[25,10],[18,8],[38,12],[26,3],[-14,28],[-19,14],[9,22],[8,17],[5,32],[29,18],[20,12],[18,19],[6,17],[2,24],[4,26],[21,31],[-27,4],[-19,10],[-4,24],[-2,31],[-6,21],[-26,18],[-20,12],[-21,11],[-20,13],[-11,18],[4,20],[8,26],[13,20],[15,14],[11,18],[9,29],[2,27],[22,9],[29,2],[5,41],[0,25],[24,32],[14,22],[14,21],[3,22],[-8,25],[31,20],[16,31],[14,26],[1,4],[0,5],[0,21],[-18,27],[-19,-1],[-5,0],[-9,-20],[-6,-4],[-12,-9],[-26,-17],[-24,-21],[-2,-22],[-7,-37],[-16,-25],[-25,-14],[-5,2],[-14,7],[-4,-3],[-12,-7],[-1,5],[0,15],[-3,23],[-8,17],[-2,-4],[-3,-7],[-5,-12],[-8,-19],[-8,-32],[-9,-15],[-6,-10],[-22,-19],[-16,-33],[3,-22],[2,-21],[-9,-39],[-14,-17],[-7,-8],[-24,-12],[-2,-3],[-11,-13],[-19,-21],[-21,-22],[-26,-22],[-19,3],[-32,-9],[-22,-10],[-29,-22],[-19,-1],[7,-29],[24,-1],[31,26],[32,2],[24,11],[25,-9],[25,-33],[38,-46],[1,0],[3,-3],[8,-7],[24,-25],[18,-24],[3,-4],[4,-3],[16,-21],[11,-20],[-10,-23],[-15,-40],[-7,-33],[-15,-23],[-22,-12],[-17,-10],[-14,-12],[-18,-21],[-25,-34],[-12,-10],[-14,-11],[-8,-6],[7,-18],[4,-12],[6,-29],[5,-35],[-12,-7],[-10,-7],[-8,-6],[-2,-1],[-19,-15],[-1,-11],[-2,-16],[1,-26],[12,-27],[-10,-27],[-26,-22],[-7,-31],[-2,-15],[13,-25],[-2,-34],[-22,-19],[-21,-1],[-23,-4],[-14,-12],[-24,-5],[-20,6],[21,13],[-18,14],[-7,15],[-16,20],[-17,15],[-17,4],[-23,4],[-12,-13],[-7,-16],[-15,9],[-19,1],[1,6],[6,23],[-18,20],[-28,16],[-7,3],[-16,7],[-13,11],[-9,7],[-8,10],[-8,11],[-16,14],[-21,9],[24,14],[12,-4],[10,-3],[3,0],[18,5],[23,25],[9,33],[0,12],[0,9],[-11,14],[-3,3],[-1,1],[-19,11],[4,27],[6,30],[1,26],[-6,39],[6,27],[-2,37],[24,14],[29,13],[17,22],[8,22],[2,26],[-11,34],[-19,15],[21,34],[-26,13],[-26,0],[-3,0],[-17,-4]],[[75013,23276],[-5,-24],[-3,-21],[-20,-18],[1,-18],[-5,-19],[-13,-21],[-15,-19],[-14,-24],[-21,-18],[-20,-22],[-19,-23],[-8,-20],[-3,-22],[5,-29],[14,-29],[15,-21],[30,-31],[19,-27]],[[74870,22350],[-20,-18],[-13,-13],[-9,-15],[-8,-15],[-9,-29],[-22,-10],[-20,-17],[-25,-12],[0,-13],[-1,-17],[-14,-24],[26,5],[-3,-21],[-22,-22],[-26,-28],[-23,-35],[-16,-5],[-15,-8],[-24,-6]],[[59693,20822],[0,-56],[0,-100],[1,-50],[0,-61],[0,-12],[1,-141],[0,-14],[0,-46],[0,-1],[0,-55],[0,-3],[1,-427],[0,-83],[0,-51],[0,-19],[0,-19],[0,-2],[1,-148],[0,-38],[0,-242],[1,-20],[0,-120],[0,-24],[1,-154],[1,-392],[0,-137],[0,-21],[0,-43],[1,-4],[0,-17],[0,-128],[0,-19],[0,-55],[2,-178],[0,-269],[0,-48],[1,-43],[0,-23],[1,-45],[0,-14],[0,-56],[2,-164],[1,-112],[2,-121],[0,-91],[1,-69],[0,-33],[1,-84],[0,-79],[1,-101],[0,-43],[1,-34],[0,-50],[1,-78],[0,-18],[0,-9],[0,-5],[1,-19],[0,-62],[2,-133],[1,-133],[2,-113],[1,-92],[0,-49],[2,-117],[0,-38],[1,-216],[1,-57],[0,-80],[0,-62],[0,-28],[1,-53],[1,-169],[0,-2],[0,-30],[0,-34],[0,-48],[0,-51],[0,-22],[1,-64],[0,-30],[0,-32],[0,-19],[0,-20],[0,-7],[0,-10],[0,-24],[1,-8],[0,-106],[0,-106],[1,-93]],[[59731,14226],[0,-208],[1,-65],[-1,-128],[1,-215],[0,-17],[0,-1],[0,-10],[0,-83],[0,-80],[-35,0],[-194,2],[-170,2],[-21,0],[-28,0],[-139,3],[-75,1],[-83,1],[-16,0],[-62,1],[-18,-1],[-1,0],[-206,3],[-21,0],[-122,1]],[[58541,13432],[-14,0],[-322,4],[-12,0],[-17,0],[-38,0],[-9,0],[-135,4],[-120,-2],[-29,0],[-222,3],[-17,0],[-366,7],[-132,2],[-21,0],[-50,1],[-95,1],[-45,1],[-18,0],[-30,1],[-66,1],[-97,1],[-23,1],[-40,0],[-41,0],[-25,0],[-9,1],[-8,0],[-196,2],[-38,1],[-16,1],[-237,3],[-100,1],[-127,1],[-1,0],[-131,0],[-38,1],[-14,21],[-22,34],[-29,45],[-2,2],[-6,9],[-12,20],[-29,45],[-30,46],[-17,25],[-41,63],[-79,121],[-36,-28],[-15,-11],[-73,-59],[-101,-82],[-98,-78],[-27,-22],[-9,-8],[-55,-44],[-5,-3],[-86,-69],[-116,-93],[-13,-10]],[[54741,13392],[-11,9],[-2,2],[-46,19],[-8,1],[-10,0],[-12,-5],[-14,-8],[-17,-11],[-18,-12],[-66,-44],[-5,-1],[-9,-2],[-4,-1],[-4,0],[-9,1],[-9,3],[-9,4],[-23,17],[-10,10],[-19,25],[-5,8],[-6,17],[-7,19],[-2,10],[0,11],[1,6],[7,20],[5,14],[5,9],[18,36],[6,10],[8,12],[6,13],[7,17],[3,7],[1,7],[1,8],[1,7],[0,4],[0,23],[-2,13],[-15,24],[-21,35],[-15,23],[-8,8],[-13,8],[-11,4],[-11,3],[-11,2],[-13,0],[-14,-1],[-7,-2],[-8,-2],[-11,-6],[-38,-9],[-40,-1],[-31,0],[-36,7],[-7,4],[-10,7],[-28,32],[-22,26],[-1,3],[-11,32],[-1,5],[0,5],[0,3],[2,3],[21,28],[22,29],[4,3],[6,3],[12,0],[9,-2],[12,-1],[15,1],[19,6],[5,2],[27,22],[15,13],[12,11],[39,37],[21,24],[10,14],[4,10],[2,4],[0,6],[-3,9],[-10,31],[-6,14],[-5,21],[-2,14],[1,21],[11,49],[2,9],[17,67],[6,11],[9,20],[10,20],[15,30],[18,17],[22,34],[3,5],[2,5],[3,10],[2,10],[1,9],[-1,10],[-3,9],[-2,5],[-2,4],[-1,51],[1,7],[1,5],[2,4],[7,15],[7,16],[6,16],[2,9],[13,99],[1,3],[0,26],[-3,7],[-3,8],[-11,35],[-2,12],[-2,13],[-1,14],[-2,12],[-2,5],[-6,22],[-5,19],[-9,31],[-8,26],[-1,6],[-6,28],[-2,9],[0,16],[3,45],[2,10],[9,40],[5,17],[8,20],[3,6],[11,12],[5,7],[5,6],[6,8],[5,9],[6,8],[23,46],[3,7],[2,6],[2,5],[1,12],[0,19],[1,15],[1,18],[1,6],[3,7],[2,3],[2,3],[11,7],[3,3],[3,2],[2,3],[2,4],[0,3],[1,4],[-5,34],[-1,5],[-4,20],[-1,3],[-2,10],[-2,6],[-1,3],[-2,4],[-6,9],[-4,7],[-18,21],[-17,15],[-15,14],[-4,2],[-7,5],[-17,9],[-9,4],[-41,16],[-19,7],[-2,1],[-5,0],[-2,0],[-1,0],[-34,-4],[-51,-5],[-5,-2],[-11,-6],[-2,-1],[-3,-1],[-6,-5],[-4,-2],[-18,-7],[-19,-2],[-14,-1],[-8,2],[-8,6],[-6,4],[-1,2],[-1,2],[-1,7],[0,7],[1,8],[2,15],[4,20],[5,19],[9,36],[2,8],[1,7],[1,8],[0,6],[-1,13],[-2,36],[-1,12],[0,17],[1,9],[3,10],[1,6],[5,19],[13,63],[1,10],[3,41],[-1,23],[0,11],[0,18],[1,5],[15,57],[5,19],[2,4],[2,4],[6,6],[17,14],[8,6],[3,3],[2,2],[1,3],[3,5],[13,51],[2,10],[1,4],[0,6],[-1,6],[-3,7],[-10,22],[-4,7],[-9,15],[-5,5],[-8,4],[-9,4],[-19,10],[-7,5],[-26,17],[-11,9],[-18,16],[-4,4],[-2,4],[-6,12],[-14,27],[-12,31],[-13,34],[-3,9],[-3,17],[-3,18],[-4,16],[-7,23],[-5,14],[-5,17],[-4,7],[-7,13],[-10,11],[-7,6],[-86,68],[-5,4],[-3,1],[-2,1],[-2,-1],[-2,-1],[-5,-4],[-5,-7],[-4,-7],[-4,-8],[-1,-7],[-1,-4],[1,-5],[0,-2],[1,-3],[-1,-3],[-1,-3],[-2,-3],[-6,-4],[-13,-7],[-7,-2],[-5,-2],[-14,-3],[-39,-11],[-13,-5],[-8,-5],[-7,-4],[-37,-16],[-3,-1],[-5,0],[-6,1],[-10,2],[-10,3],[-5,3],[-2,3],[-1,4],[0,4],[3,5],[4,4],[6,6],[9,7],[11,10],[6,6],[9,16],[4,9],[2,7],[1,28],[-1,14],[-2,12],[-1,11],[-5,8],[-3,2],[-9,1],[-8,2],[-6,1],[-7,4],[-7,4],[-47,46],[-15,15],[-5,5],[-3,8],[-1,18],[0,14],[0,8],[0,16],[-1,6],[-13,29],[-5,6],[-8,5],[-26,14],[-7,3],[-19,4],[-4,1],[-50,-10],[-7,-4],[-5,-6],[-2,-4],[-2,-5],[-4,-6],[-4,-3],[-4,-2],[-5,-2],[-4,-1],[-6,0],[-5,2],[-6,3],[-5,4],[-3,3],[-4,7],[-3,7],[-1,6],[-3,13],[-1,5],[-2,4],[-3,3],[-2,2],[-8,4],[-10,1],[-10,-1],[-6,-2],[-4,-3],[-4,-6],[-4,-8],[-5,-16],[-1,-5],[0,-6],[2,-8],[4,-5],[5,-4],[5,-1],[4,-2],[4,-3],[4,-5],[1,-3],[2,-3],[2,-5],[1,-5],[-1,-4],[0,-4],[-3,-7],[-4,-5],[-5,-7],[-6,-6],[-7,-6],[-6,-4],[-9,-5],[-75,-26],[-4,0],[-3,1],[-9,3],[-25,14],[-13,7],[-18,8],[-9,3],[-8,1],[-6,-2],[-5,-5],[-6,-4],[-4,-2],[-6,0],[-15,1],[-5,2],[-4,2],[-68,53],[-5,5],[-2,8],[0,11],[4,14],[3,9],[8,7],[14,6],[7,5],[8,11],[6,9],[5,10],[3,6],[3,8],[2,7],[0,8],[0,11],[-4,9],[-35,58],[-5,5],[-10,9],[-14,8],[-15,7],[-6,1],[-5,0],[-21,0],[-8,-2],[-7,-4],[-6,-3],[-12,-4],[-4,0],[-4,0],[-9,2],[-16,7],[-36,17],[-6,3],[-2,2],[-5,7],[-6,10],[-2,6],[-1,7],[0,12],[1,9],[-1,8],[-1,2],[-1,2],[-4,3],[-4,-1],[-5,-4],[-9,-8],[-8,-8],[-5,-7],[-16,-23],[-4,-9],[-3,-7],[-9,-32],[-1,-7],[-2,-7],[0,-5],[0,-4],[-1,-3],[-3,-2],[-10,-2],[-21,-2],[-7,0],[-8,3],[-38,21],[-7,6],[-46,39],[-6,7],[-23,25],[-11,15],[-3,6],[-2,7],[-3,23],[-1,20],[0,1],[-5,13],[-5,10],[-57,93],[-9,15],[-27,45],[-9,11],[-10,10],[-18,17],[-26,31],[-16,19],[-13,20],[-10,14],[-2,5],[-4,12],[-2,9],[-2,9],[-7,18],[-24,45],[-22,34],[-40,61],[-19,26],[-18,21],[-11,11],[-9,6],[-12,6],[-6,2],[-4,0],[-4,-1],[-11,-4],[-13,-4],[-12,-6],[-10,-5],[-8,-4],[-16,-4],[-13,-2],[-4,-1],[-6,2],[-5,2],[-16,7],[-11,6],[-9,6],[-9,8],[-17,19],[-6,8],[-20,27],[-13,21],[-2,5],[-2,5],[-1,8],[0,7],[-1,15],[-3,15],[-9,43],[-5,27],[-15,59],[-15,46],[-11,27],[-15,33],[-3,5],[-5,9],[-3,4],[-20,13],[-5,3],[-6,2],[-9,1],[-2,-1],[-1,-2],[-2,-4],[-13,-39],[-1,-5],[-1,-6],[-1,-6],[-5,-16],[-2,-5],[-50,-33],[-10,-4],[-14,-4],[-6,-2],[-8,-1],[-7,0],[-10,2],[-9,5],[-8,5],[-10,7],[-7,6],[-5,5],[-4,5],[-8,16],[-4,9],[-1,7],[-1,7],[1,6],[2,5],[1,6],[0,12],[-3,16],[-10,36],[-3,11],[-6,13],[-5,10],[-5,9],[-4,6],[-2,6],[-4,11],[-3,9],[-1,9],[-2,16],[-1,10],[0,3],[-1,5],[-2,5],[-1,3],[-5,10],[-3,3],[-5,3],[-4,1],[-6,0],[-22,2],[-3,0],[-3,-1],[-13,-6],[-24,-1],[-38,2],[-12,1],[-17,4],[-5,1],[-10,4],[-19,10],[-3,2],[-13,14],[-3,6],[-3,8],[-2,5],[-1,5],[1,6],[6,25],[4,14],[2,6],[2,3],[3,3],[2,4],[0,2],[6,26],[5,23],[0,4],[1,6],[0,6],[0,5],[-2,5],[-7,17],[-3,5],[-2,6],[-5,15],[-6,24],[-1,5],[-6,34],[1,12],[1,10],[1,11],[3,14],[1,4],[2,4],[3,6],[2,4],[0,2],[3,22],[0,5],[0,7],[-1,5],[-7,35],[-3,10],[-10,20],[-19,39],[-2,3],[-3,3],[-7,6],[-13,8],[-9,5],[-10,6],[-28,19],[-7,5],[-12,10],[-9,8],[-51,64],[-3,5],[-2,7],[-14,59],[-6,27],[-1,6],[1,11],[1,6],[6,39],[2,6],[4,10],[10,18],[8,10],[6,6],[6,6],[7,7],[9,14],[6,11],[8,17],[4,12],[2,8],[2,14],[2,17],[0,10],[-1,7],[0,3],[-16,44],[-1,1],[-2,8],[-8,22],[-2,4],[-12,23],[-11,19],[-3,2],[-21,10],[-7,3],[-14,3],[-12,3],[-16,5],[-15,6],[-26,13],[-20,11],[-10,10],[-8,10],[-8,10],[-34,52],[-1,3],[2,3],[4,4],[5,7],[1,3],[1,3],[1,5],[0,4],[0,5],[-1,5],[-2,5],[-2,6],[-12,27],[-5,6],[-2,2],[-2,1],[-6,2],[-8,1],[-14,2],[-8,1],[-5,1],[-5,3],[-4,3],[-5,3],[-8,8],[-5,6],[-5,6],[-2,6],[-1,5],[-8,41],[-1,9],[-1,9],[-1,13],[0,20],[1,10],[1,10],[3,8],[3,8],[3,7],[4,11],[7,15],[5,8],[4,8],[5,12],[4,11],[2,8],[3,13],[3,16],[2,10],[1,8],[1,8],[2,9],[4,40],[1,13],[1,33],[-1,4],[-2,5],[-3,3],[-3,3],[-5,2],[-5,2],[-41,6],[-23,2],[-62,7],[-19,-1],[-46,1],[-11,0],[-6,1],[-4,0],[-5,1],[-44,14],[-21,10],[-7,4],[-18,10],[-43,12],[-4,-1],[-4,2],[-48,24],[-13,7],[-5,3],[-6,5],[-2,3],[-3,3],[-35,58],[-6,11],[-4,8],[-13,37],[-1,4],[-4,12],[-2,7],[-5,14],[-1,5],[0,1],[-4,8],[-3,5],[-9,13],[-7,8],[-11,18],[-15,26],[-6,12],[-7,26],[-1,3],[-10,34],[-7,29],[-10,37],[-1,5],[-4,16],[-1,6],[-1,2],[-2,9],[-6,54],[-2,26],[-10,35],[-2,8],[-3,23],[-2,13],[-1,8],[-1,22],[0,11],[0,8],[-5,30],[-2,7],[-4,9],[-7,12],[-7,10],[-9,10],[-9,7],[-9,8],[-19,14],[-19,13],[-6,5],[-6,3],[-10,5],[-9,4],[-18,7],[-16,6],[-13,4],[-9,2],[-10,3],[-10,4],[-17,9],[-8,5],[-7,5],[-6,5],[-19,18],[-8,8],[-11,12],[-3,4],[-10,20],[-5,13],[-6,15],[-2,9],[-3,9],[-2,7],[-2,13],[-2,7],[0,7],[1,7],[1,4],[5,15],[2,9],[1,8],[2,13],[0,3],[-1,4],[-2,9],[-2,7],[-5,10],[-4,7],[-11,14],[-10,10],[-13,12],[-6,5],[-6,5],[-5,3],[-4,3],[-4,3],[-3,3],[-7,8],[-11,13],[-2,4],[-14,32],[-2,4],[-1,2],[-12,20],[-23,39],[-3,4],[-20,36],[-6,15],[-5,12],[-1,5],[-9,28],[-10,34],[-8,33],[0,7],[-1,2],[-1,2],[-1,2],[-7,9],[-14,13],[-10,10],[-8,6],[-17,7],[-6,2],[-17,5],[-102,35],[-30,7],[-5,2],[-13,3],[-42,11],[-5,2],[-5,2],[-9,6],[-9,6],[-10,6],[-8,6],[-17,16],[-2,1],[-19,16],[-5,4],[-18,12],[-57,39],[-7,3],[-6,1],[-3,0],[-4,0],[-5,0],[-38,-4],[-10,-2],[-7,-2],[-6,-1],[-6,0],[-38,1],[-8,1],[-9,3],[-8,4],[-49,23],[-3,2],[-5,5],[-3,5],[-5,11],[-5,10],[-11,19],[-7,13],[-6,7],[-7,7],[-7,6],[-9,6],[-45,31],[-10,7],[-17,11],[-7,4],[-20,10],[-44,22],[-5,3],[-5,1],[-22,3],[-9,1],[-7,1],[-5,0],[-4,-1],[-3,-1],[-7,-1],[-5,0],[-8,0],[-12,2],[-6,2],[-6,4],[-9,8],[-7,8],[-3,6],[-4,13],[-4,19]],[[71993,20045],[-12,-10],[-13,-25],[19,1],[28,-3]],[[72382,19385],[-8,-14]],[[72374,19371],[-11,-21],[-7,-14],[-4,-7],[-21,-37]],[[72331,19292],[-26,0],[-4,-24],[0,-27],[-2,-9],[-8,-15],[-17,-23],[-26,1],[-12,-9],[12,-10],[-10,-20],[-2,-27],[-7,-25],[-11,-18],[-13,-16],[-15,-23],[-31,-54],[-7,-12],[-5,-7],[-5,-11],[-5,-11],[-11,-21],[-10,-18],[-6,-22],[-11,-18],[-6,-9],[-4,-11],[-5,-21],[-12,-18],[-7,-13],[-5,-9],[-26,-52],[-7,-11],[-9,-15],[-7,-12],[-9,-14],[-7,-8],[-6,-7],[3,-11],[3,-18],[-8,-8],[-7,-6],[-14,-8],[-15,2],[-24,-9],[-28,-6],[-11,-3],[-52,7],[-23,5],[-29,5],[-13,3],[-11,2],[-34,19],[-18,16],[-22,12],[-22,-3],[-19,5],[-17,14],[-5,10],[-9,7],[-12,8],[-25,14],[-22,17],[26,4],[8,-3],[7,-3],[13,-5],[10,4],[9,1],[18,-11],[12,-7],[16,-10],[15,-15],[7,-8],[12,6],[7,6],[9,1],[1,11],[2,17],[3,9],[10,9],[-3,9],[-3,11],[-13,16],[-6,7],[-10,25],[5,10],[30,41],[3,8],[-3,11],[-4,7],[-4,11],[0,10],[-7,-8],[-2,-11],[5,-8],[3,-11],[-17,-8],[-13,-11],[-18,-12],[-28,14],[-8,7],[-18,16],[-5,13],[-5,12],[-7,14],[-15,24],[-11,7],[-7,6],[-11,3],[-11,1],[2,10],[6,6],[6,16],[-2,37],[-5,9],[-4,15],[-25,41],[-7,8],[-11,12],[-7,6],[-17,6],[-37,10],[-17,9],[-18,8],[-9,5],[-18,0],[-10,2],[-10,3],[-13,1],[-25,1],[-43,-6],[-8,-1],[-15,-3],[-19,-6],[-11,-3],[-9,-5],[-19,-10],[-12,-6],[-13,2],[-9,3],[-8,-1],[-20,-8],[-7,-2],[-16,-6],[-10,-2],[-8,-3],[-25,-9],[-15,-6],[-9,-5],[-8,-2],[-20,-10],[-44,-21],[-46,-21],[-9,-7],[-8,-3],[-22,-13],[-7,-4],[-24,-15],[-104,-68],[-17,-10],[-7,-5],[-12,-22],[-8,-7],[-33,5],[4,12],[6,16],[7,9],[-8,5],[27,37],[8,1],[23,21],[20,3],[5,-8],[3,11],[10,7],[6,6],[6,15],[7,23],[0,11],[2,12],[10,2],[8,-1],[5,10],[17,-11],[8,-5],[9,7],[7,7],[7,8],[5,9],[0,11],[-3,9],[-10,6],[-18,35],[-2,11],[-3,10],[-8,7],[-9,3],[-10,0],[-11,-2],[-32,-6],[-9,5],[-9,-2],[-8,-3],[-18,-10],[-11,-4],[-8,-3],[-17,2],[-22,-7],[-17,-5],[-12,-6],[-8,-10],[-10,-10],[-15,4],[-25,-8],[-15,-5],[-9,-3],[-18,-4],[-15,-2],[-25,1],[-8,2],[-22,0],[-14,0],[-23,1],[-52,3],[-21,3],[-22,-4],[-14,-4],[-18,-6],[-13,-3],[-13,-10],[-13,-6],[-7,-3],[-29,-15],[-17,-3],[-8,1],[-8,0],[-9,-4],[-27,1],[-10,4],[-8,4],[-17,2],[-8,3],[-10,-1],[-12,-3],[-12,-2],[-36,2],[-9,2],[-8,-2],[-8,-3],[-8,3],[1,-11],[-12,-23],[-19,6],[-7,7],[-7,4],[-17,16],[-3,10],[-5,9],[-5,11],[-2,10],[-1,10],[-1,10],[-10,2],[-6,6],[-10,-5],[-6,5],[-6,-7],[-4,-8],[-3,-10],[3,-9],[4,-9],[6,-8],[4,-11],[7,-15],[6,-31],[-13,-14],[-7,-1],[-5,-29],[-15,-6],[-5,8],[-5,9],[-4,8],[-5,9],[-4,8],[-5,11],[-5,8],[-4,9],[-2,10],[-5,7],[-7,-4],[-6,-8],[-6,-6],[-1,-10],[6,-11],[2,-9],[-4,-9],[-4,-10],[-8,-7],[-16,-9],[-8,-3],[-10,-5],[-41,-7],[-21,13],[0,28],[5,8],[3,9],[4,10],[-1,10],[1,9],[-2,11],[-5,8],[-4,11],[-5,8],[-21,16],[-5,8],[-5,8],[-1,10],[-4,8],[-4,10],[-6,8],[-12,25],[-46,-32],[-9,3],[-11,-8],[-24,-18],[-8,1],[-12,2],[-1,-11],[-21,-36],[-22,-13],[-21,0],[3,-8],[2,-4],[-6,-15],[-7,-15],[-8,-14],[-7,-10],[-5,-6],[-8,-9],[5,-24],[13,-15],[9,-23],[6,-10],[8,-5],[-1,-26],[9,-3],[10,0],[9,1],[5,1],[2,1],[9,1],[7,2],[6,2],[8,-1],[25,-2],[8,-3],[9,-2],[18,-5],[13,-6],[8,-4],[0,-1],[12,-9],[9,-6],[8,-7],[6,-7],[3,-2],[4,-4],[2,-2],[4,-4],[9,-19],[3,-8],[-2,-20],[-16,-6]],[[69686,18782],[-4,8],[-1,2],[-5,9],[-3,6],[-20,20],[-19,6],[-20,7],[-1,1],[-15,2],[-10,-11],[-7,-12],[-9,-9],[-3,-1],[-5,-1],[-10,0],[-24,11],[-24,21],[-13,3],[-19,0],[-15,5],[-11,-1],[-7,-2],[-26,-1],[-9,2],[-10,4],[-14,5],[-1,0],[-10,4],[-20,9],[-28,18],[-7,5],[-4,6],[-1,2],[-2,5],[-3,6],[-7,30],[-11,14],[-1,1],[-16,7],[-35,5],[-6,0],[-6,0],[-12,3],[-2,1],[-1,0],[-23,0],[-20,0],[-4,0],[-5,-1],[-26,-3],[-5,0],[-17,-1],[-8,0],[-25,7],[-14,4],[-17,0],[-17,-4],[-11,-4],[-1,-1],[-8,-5],[-19,-15],[-4,-3],[-8,-4],[-11,-6],[-8,-2],[-23,-1],[-12,3],[-9,6],[-4,5],[-12,14],[-9,18],[-3,8],[-1,5],[-6,15],[-13,20],[-1,2],[-2,2],[-14,15],[-10,6],[-17,4],[-25,7],[-9,9],[-4,8],[-1,2],[-5,10],[-4,15],[-1,12],[0,3],[1,4],[3,42],[3,24],[1,6],[0,41],[0,17],[-2,6],[-17,15],[-13,5],[-26,-2],[-23,-6],[-6,0],[-10,1],[-6,1],[-5,3],[-6,4],[-15,23],[-9,-3],[-11,-3],[-20,-6],[0,-4],[-1,-12],[4,-9],[7,-8],[2,-8],[27,-91],[0,-11],[1,-20],[-4,-29],[-2,-8],[-4,-9],[-12,-15],[-10,-9],[-40,-35],[-10,-5],[-5,-1],[-6,1],[-4,12],[0,1],[-4,10],[-4,12],[-5,9],[-7,7],[-14,10],[-12,3],[-22,-1],[-28,-4],[-18,1],[-5,0],[-34,12],[-62,36],[-58,42],[-7,9],[-6,12],[0,8],[4,6],[7,5],[8,3],[4,5],[4,14],[9,29],[2,8],[0,4],[-3,4],[-23,14],[-9,9],[-10,11],[-16,17],[-5,5],[-15,16],[-3,-4],[-9,-8],[-3,0],[-42,7],[-4,2],[-1,4],[1,6],[-7,22],[-7,11],[2,1],[25,28],[6,16],[0,2],[0,10],[-3,11],[-6,14],[-1,4],[-4,9],[-7,15],[-4,4],[-2,0],[-12,0],[-7,-26],[-2,-10],[-5,-10],[-5,-6],[-10,-7],[-9,-4],[-23,-6],[-4,-1],[-39,26],[-4,3],[-2,6],[2,8],[0,8],[-5,5],[-16,11],[-5,3],[-5,1],[-26,1],[-5,-1],[-5,-2],[-3,-3],[-2,-2],[-1,-2],[9,-4],[0,-1],[3,-3],[3,-8],[-1,-8],[-1,-11],[-3,-7],[-2,-1],[-6,-1],[-5,3],[-1,1],[-6,6],[-1,1],[-3,5],[-4,4],[-3,3],[-1,0],[-10,8],[-21,11],[-5,1],[-6,0],[-8,-3],[-10,-6],[0,-1],[-16,-3],[-9,8],[-2,2],[-8,0],[-15,-4],[0,-2],[7,-7],[4,-7],[3,-6],[-1,-2],[-2,-3],[-5,-4],[-9,-4],[-6,0],[-4,1],[-4,2],[-3,4],[-2,9],[0,6],[-1,8],[2,14],[8,9],[9,6],[11,4],[-3,9],[4,8],[8,-4],[8,-1],[6,11],[6,14],[-6,11],[-7,6],[-10,7],[-6,6],[-22,5],[-8,0],[-9,-1],[-11,2],[-7,4],[-8,4],[-9,3],[-8,4],[-14,-6],[-5,11],[-3,11],[-4,12],[-3,13],[-6,8],[-13,-6],[-5,-8],[-5,-8],[-18,-10],[-15,-1],[8,-15],[-1,-12],[-7,-7],[-10,-8],[-5,-12],[-13,-1],[-8,-6],[-4,5],[-2,2],[-14,6],[9,11],[-28,12],[19,44],[0,1],[9,10],[3,7],[-1,7],[-15,37],[-6,8],[-3,2],[-12,0],[-3,-3],[-1,-4],[0,-13],[-1,-2],[-3,-3],[-2,-1],[-1,0],[-4,1],[-53,18],[-2,2],[-5,7],[-1,1],[-4,9],[-10,37],[1,20],[0,6],[0,4],[-1,2],[-3,3],[-3,2],[-4,0],[-1,0],[-9,0],[-13,-5],[-3,-1],[-11,-13],[-1,-1],[-9,-6],[-4,-3],[-29,-8],[-12,-1],[-11,-1],[-4,-2],[-13,-9],[-6,-8],[-1,0],[-3,-6],[-2,-7],[0,-8],[8,-16],[-1,-4],[-7,-10],[-2,-2],[-7,-8],[-30,-9],[-3,0],[-2,1],[-10,12],[-9,10],[-14,23],[-2,4],[-4,12],[12,1],[3,2],[1,3],[1,27],[-2,6],[-4,4],[-2,1],[-4,0],[-14,1],[-1,4],[-9,47],[1,35],[0,4],[3,13],[1,9],[-6,18],[-1,10],[-12,38],[0,1],[-2,4],[-6,7],[-1,0],[-19,22],[-2,1],[-5,27],[0,2],[6,15],[2,1],[30,13],[3,0],[2,-2],[5,-16],[2,-4],[4,-4],[7,0],[3,2],[7,6],[7,12],[31,53],[2,5],[1,6],[1,9],[1,9],[4,24],[19,54],[1,1],[0,28],[0,1],[1,12]],[[67341,20243],[-1,11],[0,1],[5,20],[4,8],[1,3],[5,13],[5,9],[-1,11],[-3,15],[0,30],[-2,17],[8,5],[7,4],[4,19],[6,8],[10,4],[6,-11],[-5,-9],[0,-10],[8,-1],[3,12],[10,11],[-4,12],[-8,9],[-2,10],[6,18],[-5,10],[-6,17],[-8,16],[-5,8],[-5,12],[-5,20],[-8,25],[-6,7],[-11,-5],[-13,15],[7,8],[-7,13],[-7,9],[-6,9],[3,11],[-18,15],[-17,18],[-31,3],[-10,0],[-4,-6],[-3,-6],[-9,-12],[0,-1],[-12,-3],[-11,8],[-10,7],[-10,5],[-8,-2],[2,-11],[-7,-4],[-12,0],[-8,3],[-12,-4],[-1,-1],[-8,-6],[0,-1],[5,-12],[9,-1],[9,3],[-8,-12],[-8,-1],[-10,3],[-10,7],[-1,0],[-24,2],[-23,5],[-1,0],[-3,-10],[-12,-5],[-9,-8],[-17,-2],[-5,9],[-12,5],[-1,0],[-14,0],[-3,1],[-10,4],[-6,-2],[-3,-1],[-5,-1],[-11,0],[-1,2],[-5,9],[-12,0],[-9,-5],[-1,0],[-11,0],[-1,2],[-5,11],[-17,-2],[-9,-1],[-7,1],[-8,1],[-4,2],[-7,2],[-9,10],[-6,8],[-8,7],[-11,1],[-10,-3],[-9,6],[-1,4],[-4,9],[-7,8],[-8,7],[-4,12],[-7,4],[-11,-8],[-10,-1],[-9,4],[-8,4],[-7,5],[4,11],[7,3],[8,3],[7,5],[0,12],[-11,16],[-8,8],[-8,7],[-9,5],[-12,-6],[-7,-5],[-10,6],[-8,8],[3,11],[8,11]],[[64015,20827],[0,-155],[0,-11],[0,-10],[0,-3],[0,-74],[0,-52],[0,-24],[1,-58],[0,-154],[0,-3],[-1,-39],[1,-111],[0,-67],[0,-87],[1,-32],[0,-11],[0,-114],[0,-11],[0,-57],[0,-1],[1,-36],[0,-100],[0,-110],[0,-25],[1,-101],[0,-34],[0,-59],[0,-50],[0,-26],[0,-1],[1,-97],[-1,-43],[1,-12],[0,-18],[0,-139],[0,-35],[0,-37],[0,-55],[1,-84],[1,-25],[0,-68],[1,-153],[0,-145],[-1,-102],[0,-26],[1,-40],[0,-11],[0,-9],[0,-10],[0,-10],[0,-4],[0,-9],[0,-16],[0,-2],[0,-10],[0,-19],[0,-9],[0,-10],[0,-14],[0,-11],[0,-3],[0,-25],[1,-18],[1,-32],[0,-30],[0,-12],[-1,-34],[0,-29],[0,-52],[-1,-17],[0,-7],[1,-8],[0,-17],[1,-32],[2,-64],[1,-35],[0,-1],[0,-15],[0,-41],[0,-52],[1,-119],[-1,-125],[0,-52],[0,-37],[0,-69],[0,-9],[0,-11],[0,-87],[0,-13],[0,-27],[0,-50],[0,-68],[0,-27],[0,-16],[0,-62],[0,-52],[0,-17],[0,-27],[0,-10],[1,-95],[0,-85],[0,-10],[0,-69],[0,-12],[0,-32],[0,-48],[0,-12],[0,-27],[1,-52],[0,-16],[0,-53],[0,-63],[0,-26],[0,-77],[1,-35],[0,-16],[0,-19],[0,-33],[0,-20],[0,-56],[1,-69],[0,-48],[0,-16],[0,-25],[0,-71],[1,-22],[0,-3],[0,-34],[0,-212],[0,-90],[0,-1],[0,-14],[0,-5],[0,-1],[1,-142],[0,-185],[1,-253],[0,-7],[0,-28],[0,-79],[0,-102],[0,-90],[0,-48],[1,-78],[0,-60],[0,-28],[0,-110],[0,-35],[1,-87],[0,-38],[0,-1],[0,-114],[0,-104],[1,-163]],[[64038,13367],[-58,1],[-78,1],[-68,0],[-10,1],[-17,0],[-77,1],[-208,2],[-30,1],[-12,0],[-65,1],[-14,0],[-47,0],[-46,1],[-16,0],[-93,1],[-45,1],[-6,0],[-39,0],[-69,1],[-89,0],[-48,0],[-30,1],[-1,0],[-8,0],[-116,1],[-40,0],[-52,1],[-51,0],[-204,3],[-68,0],[-334,5],[-178,2]],[[61821,13392],[8,290],[0,69],[-3,138],[1,30],[2,75],[0,30],[2,101],[-11,0],[-218,4],[-1,77],[0,67],[-173,-2],[-108,-2],[0,-191],[-98,-1],[-30,0],[-3,0],[-139,-1],[0,26],[0,4],[0,154],[-26,0],[-155,-2],[-166,-2],[-3,0],[-57,-1],[-4,0],[-20,0],[-25,0],[-70,-2],[-31,0],[-274,-2],[-20,1],[-36,-1],[-60,-1],[0,-7],[0,-13],[-15,-1],[-139,-1],[-218,-2]],[[67341,20243],[-1,-1],[-112,-112],[-10,-10],[-44,-43],[-14,-13],[-18,-17],[-14,-15],[-53,-54],[-20,-20],[-24,-23],[-25,-25],[-7,-8],[-24,-24],[-24,-24],[-9,-9],[-36,-36],[-28,-29],[-114,-116],[-4,-3],[-6,-6],[-1,-1],[-85,-84],[-12,-12],[-79,-78],[-27,-29],[-1,0],[-44,-45],[-41,-41],[-55,-56],[-66,-66],[-35,-36],[1,-101],[0,-69],[1,-46],[0,-2],[0,-18],[0,-20],[0,-16],[1,-34],[0,-6],[0,-40],[1,-78],[-1,-60],[0,-88],[1,-31],[-1,-16],[1,-136],[0,-136],[0,-84],[0,-28],[0,-8],[0,-5],[-1,-24],[-2,-38],[-8,-181],[-2,-19],[0,-1],[-2,-48],[-8,-169],[-3,-58],[-4,-89],[-3,-48],[-3,-67],[-1,-15],[0,-12],[-2,-25],[-3,-59],[-1,-29],[-1,-19],[-2,-33],[-3,-55],[-2,-43],[0,-1],[-3,-61],[-2,-41],[-2,-46],[-1,-23],[-5,-112]],[[66248,16869],[-20,0],[-9,0],[-77,0],[-9,0],[-77,0],[-19,0],[-232,-2],[-9,0],[-19,0],[-66,1],[-15,0],[-26,0],[-60,0],[-30,0],[-124,0],[-39,0],[-42,0],[-23,1],[0,-99],[1,-109],[0,-12],[0,-30],[1,-84],[0,-50],[0,-1],[0,-32],[0,-33],[0,-14],[0,-53],[0,-3],[0,-10],[0,-14],[0,-44],[0,-16],[0,-65],[1,-31],[0,-26],[0,-34],[0,-17],[0,-33],[0,-27],[0,-10],[0,-4],[0,-23],[1,-44],[0,-33],[0,-51],[0,-45],[0,-24],[0,-40],[1,-67],[0,-31],[0,-62],[0,-40],[0,-25],[0,-57],[1,-166],[0,-75],[0,-10],[0,-14],[0,-78],[1,-121],[0,-3],[0,-160],[1,-216],[0,-27],[0,-26],[0,-28],[1,-34],[0,-81],[0,-12],[0,-90],[0,-34],[0,-35],[0,-32],[1,-27],[0,-21],[0,-30],[0,-23],[0,-86],[0,-45],[1,-22],[0,-104],[0,-79],[0,-23],[1,-70],[0,-16],[0,-1],[0,-21],[1,-136],[0,-18],[0,-18],[0,-78],[0,-20],[0,-43]],[[65365,13353],[-81,1],[-108,2],[-94,1],[-38,0],[-69,1],[-38,1],[-48,0],[-35,0],[-18,1],[-63,0],[-2,1],[-21,0],[-62,1],[-70,0],[-138,1],[-43,0],[-1,0],[-21,0],[-121,1],[-63,1],[-63,1],[-63,0],[-67,1]],[[71727,16311],[-47,19],[-36,15],[-65,26],[-45,-13]],[[71534,16358],[20,21],[-12,40],[-6,25],[-2,43],[-29,2],[-9,26],[22,-4],[23,3],[19,-2],[14,-14],[23,-8],[9,20],[18,6],[14,-5],[30,16],[-23,13],[-22,2],[-17,9],[0,-21],[-20,4],[-23,6],[-10,24],[25,6],[-13,31],[30,-2],[-9,28],[8,18],[1,24],[6,20],[16,3],[7,36],[8,21],[5,21],[-4,19],[-25,6],[-10,-13],[-17,-12],[3,33],[19,15],[-3,23],[-10,19],[0,1],[19,9],[17,16],[9,-16],[-12,-14],[25,-22],[29,1],[30,7],[25,7],[18,-17],[18,-34],[10,-30],[10,-35],[-6,-12],[0,-11],[0,-4],[5,-18],[9,-24],[79,-12],[-14,-32],[-17,-42],[-22,-48],[-13,-35],[-11,-23],[-16,-31],[-11,-27],[-7,-23],[-9,-24],[-12,-23],[-16,-33]],[[71835,16873],[-20,-6],[-4,38],[-20,22],[19,8],[19,-10],[6,-52]],[[71678,17038],[-27,-19],[7,25],[8,23],[9,25],[9,-30],[-6,-24]],[[71579,17223],[-16,-9],[-4,30],[-12,22],[0,29],[21,15],[22,-9],[5,-23],[-4,-36],[-12,-19]],[[71713,17199],[-5,-52],[-22,9],[0,75],[23,64],[18,35],[23,-8],[5,-28],[-42,-95]],[[70902,17634],[24,-3],[24,-10],[19,-8],[36,-18],[16,-16],[-20,-6],[-19,-13],[-25,-19],[-16,11],[-10,13],[-21,21],[0,23],[-8,25]],[[72141,17698],[-4,17],[7,24],[7,21],[6,18],[24,10],[27,-6],[-19,-20],[-22,-14],[-6,-23],[-10,-9],[-10,-18]],[[72276,17959],[25,-6],[20,0],[-11,-25],[-3,-16],[-14,-5],[-3,23],[-14,29]],[[72298,18018],[-17,-8],[6,26],[1,25],[20,11],[5,-30],[-11,-11],[-4,-13]],[[72123,17982],[-16,-10],[-17,11],[10,14],[-11,21],[14,10],[11,22],[27,26],[12,-2],[-9,-12],[10,-14],[-2,-14],[-13,-11],[-6,-13],[-10,-28]],[[72580,18408],[-15,-10],[-10,14],[5,33],[34,0],[-2,-22],[-12,-15]],[[71783,18506],[-20,-7],[-33,4],[14,17],[20,7],[20,1],[20,-1],[-21,-21]],[[72054,18580],[4,-17],[-9,-14],[-18,-17],[-26,-10],[-28,-1],[-24,6],[-15,6],[-14,-1],[-19,-1],[-18,-2],[-20,6],[28,17],[34,4],[24,5],[26,4],[22,2],[19,4],[17,-1],[17,10]],[[72254,18604],[-16,-28],[-21,-9],[-26,8],[-18,14],[-9,14],[18,5],[20,-3],[18,-5],[34,4]],[[72254,18604],[19,12],[41,4],[13,-13],[-2,-38],[-10,-22],[-19,-6],[-25,7],[-6,26],[-11,30]],[[72141,17698],[7,-19],[26,-4],[15,26],[26,3],[-1,24],[24,-8],[12,-28],[13,41],[6,15],[13,13],[11,27],[13,6],[4,21],[8,26],[-19,21],[15,18],[19,6],[14,7],[14,-5],[18,1],[16,27],[29,36],[19,34],[-2,46],[24,26],[11,19],[13,17],[16,11],[13,15],[-15,13],[17,9],[11,18],[16,11],[12,21],[9,22],[23,11],[15,29],[-10,11],[8,12],[15,16],[21,5],[4,27],[-22,-9],[15,31],[27,5],[-16,14],[-4,19],[12,27],[-19,3],[-18,-14],[7,29],[-8,21],[13,8],[32,14],[14,8],[26,7],[6,25],[25,1],[23,14],[12,-16],[12,-16],[18,10],[-5,21],[11,16],[-10,21],[-21,14],[32,18],[21,-6],[2,24],[-16,23],[8,38],[-26,5],[-21,-10],[-23,-23],[-14,-11],[-28,9],[-17,22],[-20,-14],[-19,-14],[-26,-3],[-7,19],[-14,16],[-7,-21],[-15,-7],[-13,5],[-12,-8],[-13,-16],[-27,-9],[-24,-5],[-23,-7],[-26,-1],[-31,14],[-17,26],[15,22],[20,6],[27,9],[24,2],[31,8],[21,10],[23,0],[18,4],[13,-5],[28,11],[16,-21],[11,22],[9,15],[27,4],[54,6],[18,-5],[17,19],[20,0],[21,9],[42,15],[28,3],[13,-2],[5,0],[18,18],[20,-3],[-18,-21],[32,2],[12,13],[16,12],[28,-21],[25,-13],[21,-15],[16,-13],[-13,-20],[-18,-17],[-19,-21],[-15,-17],[-20,-25],[-16,-21],[-16,-20],[-11,-16],[-17,-23],[-23,-27],[-22,-31],[-16,-25],[-15,-20],[-12,-18],[-17,-25],[-16,-24],[-13,-13],[-19,-22],[-18,-29],[-14,-21],[-17,-26],[-16,-25],[-24,-38],[-14,-23],[-11,-14],[-18,-33],[-19,-33],[-24,-38],[-11,-19],[-20,-34],[-13,-22],[-15,-24],[-20,-34],[-9,-20],[-15,-26],[-17,-28],[-8,-18],[-35,-62],[-25,-50],[-48,-86],[-16,-27],[-11,-22],[-12,-21],[-71,-131],[-44,-88],[-9,-21],[-11,-20],[-35,-63],[-73,-164],[-49,-128],[-17,-18],[-16,-20],[-43,-91],[-10,-21],[-27,-59],[-11,-27],[-22,-50],[-19,12],[-25,8],[-11,17],[-13,-16],[-13,22],[1,1],[11,28],[24,21],[6,30],[-18,22],[1,25],[25,-15],[18,8],[20,34],[-2,27],[-4,27],[18,21],[7,19],[6,21],[-24,21],[-10,19],[-6,24],[19,1],[12,-26],[17,38],[0,41],[4,30],[-4,43],[0,28],[1,21],[-4,29],[6,19],[-5,29],[61,92],[28,23],[8,22],[1,3],[44,104],[17,31],[8,14],[6,15],[16,29],[10,-12],[14,7],[-1,30],[8,37]],[[72699,18780],[-30,-5],[-22,3],[20,21],[29,20],[19,12],[22,14],[29,-15],[16,-24],[-15,-12],[-20,-2],[-24,-4],[-24,-8]],[[72937,18877],[12,-29],[-12,-19],[-17,-4],[-34,-3],[-4,-1],[-22,-10],[-24,6],[-15,-8],[-20,22],[-12,26],[-7,34],[8,26],[-1,36],[2,29],[6,2],[18,6],[12,-9],[18,-2],[8,-23],[17,-19],[10,-10],[10,-17],[14,-15],[19,-6],[-8,17],[-26,34],[18,18],[24,3],[12,8],[-19,15],[2,23],[0,31],[21,17],[16,-3],[8,6]],[[72781,19019],[-9,-4],[-28,18],[-29,25],[-33,55],[-35,54],[6,-1],[12,-2],[21,-23],[18,-22],[23,-23],[15,-16],[22,-28],[15,-15],[9,-15],[-7,-3]],[[72541,19214],[-16,-1],[13,31],[-21,24],[6,1],[23,2],[18,-16],[8,-8],[-31,-33]],[[72374,19371],[-4,-37],[13,-16],[-1,-3],[-4,-11],[-8,-18],[-25,6],[-14,0]],[[72636,19334],[-19,-6],[-1,19],[6,14],[15,14],[35,-1],[-20,-21],[-16,-19]],[[70902,17634],[-10,-25],[-22,-18],[0,-27],[-8,-30],[16,-26],[14,-37],[11,-66],[20,-22],[20,-15],[37,26],[31,-15],[11,-24],[-17,-50],[-1,-1],[-14,-25],[-19,-15],[-7,-46],[8,-45],[-2,-25],[-23,9],[-22,-22],[-15,8],[-34,-7],[-24,-22],[-18,-17],[-19,19],[-20,-25],[-8,-16],[-8,-74],[12,-44],[3,-25],[0,-17],[-4,-36],[-1,-30],[-12,-9],[-19,3],[-42,5],[-45,16],[-27,5],[-22,-5],[17,-12],[16,-6],[21,-11],[30,-10],[33,-14],[19,0],[13,-2],[49,14],[10,19],[20,23],[-36,13],[-3,33],[10,30],[9,19],[12,39],[34,29],[14,10],[4,22],[19,15],[38,-2],[30,-7],[32,21],[12,27],[-20,20],[27,16],[26,17],[9,15],[1,30],[8,19],[7,20],[-16,16],[-10,9],[19,4],[33,-12],[33,22],[8,23],[-11,34],[-3,24],[20,30],[-10,24],[-16,10],[-21,19],[-10,46],[0,32],[-19,14],[20,13],[19,-7],[106,-32],[23,-5],[17,-5],[22,5],[25,-15],[34,-11],[20,-7],[120,-44],[13,18],[12,-22],[38,-24],[17,-43],[-34,16],[-61,9],[-8,-31],[-8,-27],[-10,-23],[-15,-31],[-27,-14],[-25,-7],[-7,-50],[-8,-14],[0,-17],[-19,-25],[-3,-16],[-5,-6],[-13,-17],[-9,-83],[-16,-24],[-7,-18],[-1,-19],[-17,-24],[-7,-22],[-12,-8],[-21,-49],[-6,-21],[-15,-28],[-12,-29],[-7,-39],[-12,-33],[-21,-32],[-2,-23],[-8,-38],[-7,-23],[-2,-19],[-2,-29],[4,-30],[14,-22],[16,-15],[4,-18],[-17,-14],[-22,-23],[-12,-18],[-26,-21],[-18,-22],[-17,-19],[-27,-27],[-22,-8],[-17,-18],[-2,-16],[-17,-21],[-15,-26],[-6,-32],[-4,-21],[-14,-16]],[[70941,16166],[-10,-1],[-225,-3],[-133,-2],[-10,-1],[-17,-2],[-2,0],[-96,0],[-89,1],[-23,0],[-125,0],[-122,0],[-125,1],[-87,0],[-34,0],[-126,2],[-106,1],[-18,-1],[-123,0],[-250,0],[-162,-1],[-3,0],[-17,0],[-45,0],[-33,0],[-57,1],[-16,0],[-87,-1],[-140,-3],[-131,-5],[-158,-1],[-122,0],[-43,-1],[-53,0],[-108,-1],[-146,0],[-1,0],[-44,-1],[-128,-1],[-18,0],[-324,-3],[-24,0],[-27,0],[-6,0],[-234,-2],[-1,0],[-18,0],[-46,0],[-14,0],[5,2],[6,2],[8,-1],[1,9],[-7,7],[7,8],[-7,8],[7,9],[-3,9],[-5,8],[-12,-1],[-3,10],[-13,1],[-8,6],[-9,1],[-7,0],[6,7],[-4,9],[-8,3],[-5,13],[-8,1],[-3,10],[4,13],[-11,4],[-6,13],[-4,3],[-6,3],[-5,12],[-10,4],[-8,-1],[-8,7],[-11,9],[1,11],[0,10],[-12,4],[-8,6],[-11,-5],[-15,11],[-9,0],[-18,22],[-7,6],[-1,1],[-7,4],[-2,10],[-14,-1],[-7,2],[-1,0],[-8,7],[0,1],[-3,8],[0,10],[-8,14],[-5,11],[1,17],[-9,9],[-2,11],[9,11],[2,4],[0,20],[-1,12],[-3,12],[-7,6],[0,11],[0,11],[5,8],[-1,15],[-17,10],[-7,9],[3,9],[1,2],[-6,6],[-4,3],[-6,3],[-6,9],[-13,6],[-12,5],[-16,13],[2,13],[-8,13],[0,9],[-17,10],[-14,-5],[-9,4],[-10,-3],[-15,5],[-13,8],[-12,6],[-9,0],[-9,-7],[-15,4],[-10,2],[-6,11],[-10,4],[-8,-5],[-3,-4],[-3,-5],[-13,0],[-5,4],[-3,3],[-8,0],[-15,-2],[-13,-2],[-18,1],[-14,3],[-14,10],[-11,3],[-2,1],[1,12],[1,9],[-4,9],[-1,0],[0,1],[-8,6],[-10,16],[-1,0],[-13,7],[-1,0],[-12,12],[-2,17],[-4,11],[-1,0],[-16,4],[-37,0],[-22,0]],[[69686,18782],[2,-28],[8,-19],[4,-9],[15,-26],[53,-42],[72,-28],[79,1],[72,32],[40,48],[74,0],[16,-15],[26,-12],[29,-20],[40,-11],[7,-31],[27,12],[22,20],[32,71],[42,4],[60,23],[38,-11],[28,45],[47,-29],[4,-6],[10,-14],[-3,-27],[-12,-23],[-11,-20],[-25,-43],[-17,-28],[-13,-23],[-5,-19],[-12,-21],[-20,9],[-16,7],[-63,-1],[-71,0],[-64,27],[-42,39],[-53,19],[-49,7],[-37,-3],[-12,-27],[-34,-12],[2,-19],[32,12],[65,23],[29,-1],[18,-14],[30,-32],[21,3],[46,-26],[56,-27],[88,-2],[41,-4],[26,-2],[7,-27],[7,-48],[3,-30],[0,-28],[-4,-21],[-4,-23],[-6,-25],[-3,-28],[-5,-26],[8,-21],[12,-18],[-2,-25],[17,-23],[15,-12],[-9,-20],[35,-41],[39,-45],[15,-24],[2,-23],[1,-32],[4,-27],[13,-22],[52,-78],[19,-19],[26,-26],[22,-15],[23,-21],[15,-14],[44,-29],[29,-21],[51,-30],[22,-11],[26,-22]],[[71382,16268],[-27,-24],[1,23],[6,19],[13,21],[10,2],[15,5],[-11,-24],[-7,-22]],[[70773,13512],[-89,1],[-11,0]],[[70673,13513],[-8,0],[-17,0],[-15,28],[-13,-12],[-3,-15],[-10,0],[-11,2],[20,36],[9,29],[-5,24],[1,24],[4,25],[-9,20],[8,34],[6,27],[19,3],[21,5],[27,22],[27,2],[9,14],[3,25],[-24,5],[-15,25],[-2,29],[-11,22],[-12,24],[-3,52],[-18,12],[-19,20],[1,31],[29,19],[-9,29],[-5,20],[4,28],[16,39],[8,24],[1,20],[-16,38],[5,29],[1,25],[12,29],[14,23],[3,27],[0,27],[20,23],[22,15],[13,22],[13,34],[6,26],[8,20],[7,27],[15,26],[20,17],[15,32],[15,22],[12,15],[6,31],[10,34],[17,32],[7,29],[7,32],[-2,17],[-6,32],[3,57],[0,42],[15,25],[11,26],[15,27],[10,39],[20,55],[3,20],[10,22],[20,44],[19,45],[7,23],[5,21],[29,5],[-5,24],[14,41],[40,38],[14,20],[5,23],[11,19],[30,57],[9,42],[20,30],[9,29],[10,33],[8,18],[16,22],[8,31],[11,35],[15,21],[10,28],[20,32],[20,36],[17,17],[32,16],[11,16],[1,41],[8,13],[17,7],[3,24],[-21,-3],[0,28],[13,18],[11,25],[10,19],[21,32],[-23,15],[4,39],[15,45],[31,42],[23,18],[17,4],[11,23]],[[71727,16311],[-51,-127],[-11,-25],[-10,-22],[-9,-20],[-28,-63],[-9,-22],[-16,-39],[-21,-47],[-16,-35],[-10,-23],[-10,-22],[-7,-20],[-13,-27],[-15,-36],[-19,-45],[-11,-27],[-12,-24],[-11,-29],[-8,-19],[-15,-35],[-22,-55],[-10,-24],[-75,-192],[-78,-209],[-21,-53],[-40,-114],[-78,-228],[-16,-49],[-34,-109],[-43,-146],[-14,-47],[-60,-212],[-28,-108],[-30,-111],[-34,-139],[-12,-52],[-19,-80],[-18,-81],[-20,-83]],[[70941,16166],[-7,-27],[-1,-25],[-4,-28],[-18,-26],[-8,-23],[-8,-20],[-3,-20],[-6,-29],[-2,-22],[-11,-23],[-8,-28],[-13,-25],[-9,-20],[-5,-19],[-6,-28],[-11,-21],[-11,-20],[-8,-28],[-5,-21],[-6,-28],[-6,-26],[-5,-34],[-10,-27],[-4,-23],[-6,-22],[-14,-13],[9,-39],[-3,-26],[6,-31],[-12,-51],[-41,-61],[-13,-26],[-2,-23],[-3,-32],[-15,-38],[-5,-33],[-18,-17],[-9,-25],[-8,-35],[-14,-2],[-3,-30],[7,-27],[3,-37],[-10,-30],[-10,-29],[0,-34],[-3,-26],[5,-30],[0,-20],[5,-26],[-1,-24],[-1,-30],[-12,-25],[-12,-20],[-3,-22],[-15,-14],[-5,-26],[-21,-56],[-23,-51],[-17,-35],[-5,-38],[-13,-38],[-19,-10],[-11,-17],[3,-19],[-3,-33],[-20,-32],[-13,-32],[-2,-48],[-9,-29],[-14,-22],[-18,-13],[-1,-26],[-7,-22],[-10,-19],[-3,-16],[1,-25],[-14,-37],[-12,-36],[-19,-24],[-11,-23],[-14,-17],[-32,-22],[-21,2],[4,25],[-21,14],[-6,-24],[-26,17],[9,-31],[-19,-16],[13,-16],[-34,-10],[-18,-13],[-24,0],[-30,-14],[-30,1],[-46,-3],[-21,4],[-20,-5],[-17,-5],[-9,-18],[-27,-15],[-44,-25],[-33,-19],[-18,-14],[-51,-34],[-25,-11],[-60,-47],[-14,-24],[-27,-40],[-32,-35],[-28,-27],[-10,-24],[-20,-22],[-21,28],[-19,5],[-17,11],[-20,-3],[-21,4],[-26,2],[-33,-1],[-17,-8],[-26,17],[-27,6],[-17,0],[-18,29],[-14,20],[2,35],[17,-32],[32,1],[29,4],[11,9],[32,22],[24,1],[-6,17],[-3,18],[19,35],[32,25],[13,16],[6,24],[27,-7],[18,2],[20,14],[20,-3],[24,-24],[28,2],[-8,19],[25,36],[-5,31],[4,26],[7,19],[-18,10],[-15,19],[-24,29],[11,8],[24,0],[-10,28],[20,-5],[11,14],[12,29],[15,16],[20,9],[7,-24],[5,-21],[23,-5],[16,11],[-26,23],[13,30],[-4,19],[21,11],[14,14],[6,33],[-13,14],[13,18],[12,23],[-13,23],[-32,-4],[-5,20],[7,28],[7,19],[13,0],[17,3],[-6,21],[-18,6],[-15,22],[9,21],[9,20],[17,5],[17,0],[-9,24],[-7,17],[-28,23],[-8,23],[-13,18],[2,27],[22,21],[12,18],[12,9],[23,9],[28,9],[17,17],[10,23],[3,17],[11,13],[1,19],[7,26],[-4,28],[-11,19],[-8,32],[-22,23],[-37,9],[-22,19],[-11,16],[-4,17],[12,8],[17,6],[27,-4],[25,12],[-5,36],[-20,-7],[-19,1],[-21,28],[-6,19],[-9,19],[23,30],[2,23],[-11,29],[-26,-6],[-16,27],[7,20],[26,0],[18,7],[18,4],[15,5],[22,2],[10,14],[-15,23],[-17,-3],[-15,6],[-19,-19],[-23,-6],[-37,-2],[-12,10],[9,17],[-21,7],[13,9],[15,11],[9,16],[-13,24],[-6,-26],[-27,4],[-40,22],[14,32],[16,25],[-13,9],[-2,22],[-13,-28],[-9,-30],[-15,-16],[-2,-27],[-14,-28],[25,-29],[19,12],[13,-55],[-2,-47],[-7,-23],[23,1],[16,-19],[2,-34],[-6,-22],[-13,-24],[-24,-1],[-17,5],[-17,6],[-21,4],[-29,4],[-20,-3],[-29,-11],[-19,-13],[-30,-11],[-25,1],[-13,12],[6,26],[-15,-11],[-15,-1],[-14,11],[-5,33],[-17,26],[-3,27],[-22,35],[9,31],[-6,33],[-11,25],[-14,20],[-10,27],[21,22],[14,17],[8,39],[-10,31],[-10,33],[18,23],[17,32],[22,-3],[-2,26],[-14,4],[-18,10],[-19,2],[-6,19],[7,33],[23,10],[16,17],[16,12],[13,15],[0,29],[-13,13],[-6,6],[-1,-32],[-12,-23],[-18,-19],[-26,4],[-14,-18],[-4,-43],[3,-44],[3,-24],[9,-15],[-8,-19],[-19,-5],[1,-2],[8,-28],[3,-57],[-13,-35],[-13,-18],[-12,-35],[4,-28],[7,-20],[14,-36],[38,-120],[16,-56],[14,-29],[14,-29],[-3,-27],[-19,-33],[-23,-17],[-18,4],[-9,-21],[-11,-27],[12,-19],[7,-19],[23,-15],[16,-26],[20,6],[-6,24],[-22,20],[-16,13],[33,5],[19,21],[46,-2],[13,11],[20,8],[-20,18],[17,19],[26,13],[32,15],[42,7],[19,-3],[2,22],[-2,25],[27,7],[4,-24],[0,-26],[-2,-19],[-1,-47],[-9,-35],[21,9],[20,-15],[21,-10],[28,-4],[25,-16],[13,-39],[14,19],[13,23],[12,14],[22,-3],[27,-29],[3,-26],[-7,-29],[-24,-25],[-33,-1],[-26,-1],[-28,-12],[-25,-18],[-32,-38],[-17,-35],[2,-24],[-7,-32],[-22,-31],[-13,-19],[-7,23],[-9,28],[6,34],[-32,-28],[7,-24],[-4,-25],[-8,-41],[-13,41],[-17,-2],[-14,-13],[17,-12],[2,-18],[-33,-2],[-6,-29],[13,-33],[29,-4],[-73,-83],[-15,-8],[-14,-7],[-16,3],[-19,11],[-10,37],[-17,-37],[-14,-12],[-17,-17],[-28,-12],[-19,-15],[9,-18],[13,-7],[8,15],[25,9],[23,-1],[19,9],[17,19],[15,-13],[-20,-38],[-17,-29],[-25,-19],[-24,-16],[-25,-26],[-27,-22],[-19,-20],[-17,-10],[-30,-30],[-25,-16],[-27,-24],[-42,-17],[10,23],[-29,10],[17,46],[24,20],[-4,19],[-9,22],[-15,11],[5,-32],[-31,-19],[-31,-11],[-15,3],[-11,15],[-7,20],[-15,-24],[-30,-17],[33,-7],[18,-11],[0,-31],[-17,-23],[-25,-2],[-25,0],[-8,-63],[-42,-1],[4,34],[-27,2],[-38,-25],[-19,-11],[-15,6],[-4,34],[-29,-15],[-19,17],[-4,29],[-2,33],[-1,26],[-11,20],[-28,21],[-33,15],[-17,19],[-17,18],[22,10],[1,28],[16,10],[20,12],[-14,14],[-17,10],[-26,6],[9,20],[11,31],[-7,33],[-11,-22],[-19,-1],[12,-18],[-8,-29],[-4,-34],[0,-49],[-10,-38],[7,-26],[39,-47],[11,-23],[9,-21],[15,-12],[16,-23],[6,-28],[29,-27],[25,-18],[15,-39],[33,-3],[18,-6],[17,-34],[16,-24],[13,-12],[-6,-30],[-13,-17],[-35,-42],[-13,-16],[-31,-26],[-32,2],[-24,8],[-18,14],[-16,10],[-19,14],[-14,16],[-5,30],[-17,14],[-30,8],[-20,10],[-16,15],[29,20],[17,14],[3,33],[-14,29],[-20,19],[19,11],[2,20],[-3,36],[-3,34],[-20,6],[-20,0],[-25,1],[-36,-2],[-21,1],[-17,8],[-20,5],[-5,18],[7,20],[26,10],[-5,35],[-16,14],[-23,5],[-24,10],[-19,13],[-12,10],[-3,17],[-19,14],[-17,27],[13,10],[7,14],[12,32],[12,19],[15,19],[0,18],[-12,21],[-24,18],[-20,8],[-29,24],[-28,-2],[-16,24],[2,33],[-12,29],[-11,17],[-20,19],[-21,8],[-23,19],[12,26],[-8,23],[8,39],[-17,-19],[-9,-30],[-9,-34],[-36,4],[-18,6],[-13,16],[-16,7],[12,12],[18,15],[17,13],[-2,29],[-24,-13],[-15,21],[-30,17],[-17,16],[-12,14],[-15,13],[-4,32],[-32,36],[-22,3],[-24,0],[-23,8],[-1,17],[-1,28],[-3,47],[-19,33],[-19,-2],[-22,16],[0,22],[-1,22],[-16,18],[-3,-44],[-31,12],[-32,16],[-52,35],[-42,5],[-38,8],[-21,9],[-15,27],[0,-33],[24,-24],[18,-1],[21,-7],[20,-20],[29,-12],[10,-14],[42,-28],[31,-13],[20,-4],[16,-7],[19,-28],[-11,-31],[1,-20],[3,-26],[15,-28],[15,-29],[16,-14],[18,-16],[2,-24],[20,-7],[4,-46],[-3,-24],[1,-33],[28,-2],[17,-30],[-11,-26],[-27,3],[-35,-11],[-25,2],[-14,27],[-26,-1],[-14,18],[-23,8],[-6,39],[-13,22],[-15,16],[-17,-3],[-20,-1],[11,-20],[16,-6],[15,-15],[12,-22],[-2,-27],[13,-7],[8,-17],[-8,-21],[0,-23],[25,22],[17,-9],[9,-26],[14,-21],[17,17],[14,8],[32,-26],[31,0],[23,18],[26,2],[19,-11],[22,11],[15,-17],[19,-48],[8,-27],[16,-13],[21,-19],[15,-30],[1,-41],[7,-23],[17,-22],[7,-22],[12,-23],[2,-20],[-13,-35],[3,-25],[20,-23],[25,-32],[13,-27],[-1,-23],[6,-27],[23,-7],[20,-11],[14,-15],[4,-39],[19,-21],[18,-4],[17,1],[22,-9],[27,-5],[36,-18],[14,-16],[-24,-47],[1,-35],[-13,-36],[-18,-34],[-21,-19],[-20,-12],[-25,-5],[-26,-6],[-14,-6],[-30,-1],[-29,5],[-26,-10],[-32,-14],[-14,-13],[-15,-21],[-22,-8],[-21,-13],[-23,1],[-24,10],[-18,7],[-23,-2],[-23,-13],[-19,-17],[-9,-15],[-20,-15],[-27,-10],[-27,22],[-40,15],[0,36],[-3,49],[-29,10],[-18,-5],[-21,-18],[-22,-11],[-23,6],[-21,8],[-6,38],[-19,6],[-36,-11],[-19,-15],[-17,-31],[-20,9],[-2,29],[-16,-10],[-18,7],[-37,-2]],[[67504,13564],[-5,1],[-18,4],[-9,-1],[-19,-1],[-10,-1],[-17,-9],[-12,-7],[-15,-3],[-10,-2],[-11,-8],[-5,-13],[-2,-5],[-4,-10],[-4,-26],[-8,-21],[-5,-8],[-7,-3],[-8,1],[-1,1],[-7,7],[-3,2],[-8,5],[-6,-1],[-1,0],[-8,-7],[-5,-9],[-5,-7],[-8,-3],[-3,0],[-10,1],[-6,8],[-10,6],[-12,1],[-3,0],[-15,1],[-8,-2],[-8,-4],[-7,-12],[-2,-12],[5,-9],[9,-15],[2,-19],[0,-1],[-1,-12],[-1,-30],[0,-15],[-3,-24],[0,-1],[-5,-12],[-7,-6],[-16,-1],[-12,-6],[-7,-9],[-8,-9],[-4,-4],[-3,-4],[-6,-1],[-3,-1],[-24,1],[-9,-1],[-4,-3],[-27,-23],[-26,-5],[-8,-2],[-11,-6],[-7,-11],[-9,-3],[-8,2],[-16,6],[-5,11],[-1,10],[0,1],[-11,14],[-1,0],[-12,8],[-21,1],[-8,5],[-16,17],[-8,1],[-7,-9],[0,-13],[6,-11],[9,-7],[1,-2],[-8,-26],[-6,-9],[-1,0],[-8,-7],[0,-1],[-1,0],[-11,4],[5,12],[-5,10],[-7,4],[-10,-3],[-11,-10],[-19,-23],[-12,-11],[-2,-2],[-9,-6],[-17,0],[-2,14],[-16,1],[-17,0],[-2,0],[-11,-1],[-9,-2],[-8,-7],[-7,-16],[-11,-9],[-11,-7],[-13,-13],[-9,-2],[-11,9],[-5,9],[-3,18],[-4,8],[-1,1],[-27,-8],[-11,-7],[-1,0],[-8,3],[-2,15],[-5,10],[-10,2],[-8,-8],[-9,-13],[-13,-15],[-11,1],[-9,8],[-9,7],[-8,4],[-17,2],[-12,-5],[-8,-6],[-10,-16],[-1,0],[-6,-6],[-30,8],[-1,20],[-2,15],[0,1],[-11,7],[-8,-2],[-8,-9],[-5,-13],[-5,-17],[-1,-11],[-12,3],[-10,2],[-1,0],[-7,0],[-10,-2],[-18,5],[-8,1],[-1,0],[-9,1],[-9,-9],[-2,-18],[-9,-6],[-11,0],[-14,4],[-19,2],[-1,-1],[-8,-1],[-1,-1],[-6,-7],[-1,0],[-7,-7],[-17,-9],[-3,-1],[-4,-2],[-8,0],[-1,0],[-8,1],[-1,0],[-1,1],[-9,7],[0,1],[-11,-9],[0,-1],[-1,-6],[-3,-20],[0,-21],[0,-1],[-1,0],[-4,-10],[-6,-14],[-1,-2],[-12,-5],[-9,-7],[3,-6],[4,-6],[11,-7],[-5,-15],[-7,-5],[-11,2],[-7,-5],[-5,-14],[1,-7],[1,-5],[7,-12],[-4,-12],[-8,-3],[-6,9],[-7,7],[0,1],[-12,3],[-7,-20],[-1,-1],[-6,-7],[-3,1],[-5,2],[-15,5],[-9,-8],[-4,-12],[-13,-6],[-24,6],[-16,-4],[-9,-2],[-10,-1],[-13,3],[-12,8],[-10,-6],[-1,-3],[-5,-10],[-11,-3]],[[65915,12866],[0,13],[0,1],[0,16],[0,87],[0,17],[0,144],[0,36],[0,73],[-1,60],[0,1],[-1,35],[-22,0],[-24,0],[-6,0],[-56,1],[-73,-1],[-196,2],[-21,0],[-141,2],[-9,0]],[[61821,13392],[-10,0],[-2,0],[-86,1],[-1,0],[10,-17],[7,-14],[7,-16],[-1,-17],[2,-11],[8,-18],[6,-7],[10,-6],[14,-3],[12,-4],[12,3],[13,7],[1,0],[12,-4],[6,-7],[5,-9],[5,-12],[11,-2],[24,8],[9,2],[2,0],[8,-2],[1,-1],[5,-4],[2,-1],[2,-3],[4,-11],[3,-12],[0,-14],[0,-13],[4,-10],[11,-26],[12,-17],[7,-9],[10,-5],[13,-1],[9,-2],[11,-1],[9,1],[7,-2],[16,-5],[1,0],[11,-7],[12,-15],[0,-22],[0,-191],[0,-49],[0,-81],[0,-219],[0,-138],[0,-168],[195,-1],[1,-18],[1,-135],[0,-113],[1,-120],[1,-167],[0,-47],[2,-218],[27,0],[103,2],[240,3],[-1,-99],[0,-49],[-2,-101],[0,-33],[0,-31],[-6,-202],[-4,-340],[-4,-288],[-3,-205],[-1,-93],[-1,-73],[-3,-157],[-2,-16],[-3,-163],[0,-181],[-1,-56],[-1,-156],[0,-31],[-1,-125],[0,-13],[0,-11],[0,-14],[-2,-67],[0,-13],[-1,-31]],[[62590,8876],[-24,0],[-19,0],[-32,0],[-28,0],[-21,0],[-78,0],[-30,0],[-179,1],[-55,1],[-14,0],[-61,0],[-50,-1],[-16,0],[-51,0],[-100,-1],[-21,0],[-16,1],[-81,0],[-9,0],[-13,0],[-230,1],[-87,1],[-64,0],[-72,0],[-48,0],[-143,2],[-38,0],[-2,0],[-31,0],[-64,0],[-33,1],[-114,0],[-51,0],[-234,1],[-114,1],[-8,0],[-36,1],[-92,1],[-135,1],[-148,1],[-80,1],[-30,0],[-43,0],[-39,1],[-20,0],[-78,1],[-10,-2],[-19,-1],[-19,-1],[-32,2],[-45,2],[-99,1],[-15,0],[-9,0],[-83,1],[-1,0],[-13,0],[-119,1],[-24,0],[-3,0],[-18,0],[-12,-1],[-58,1],[-203,0],[-120,1],[-16,0],[-80,0],[-35,1],[-81,0]],[[58544,8896],[0,25],[0,188],[0,108],[-1,79],[0,55],[0,15],[0,206],[1,165],[0,23],[0,21],[-2,266],[-1,50],[-1,157],[0,42],[0,54],[0,42],[0,60],[1,31],[0,160],[1,107],[0,12],[0,36],[0,24],[0,26],[0,61],[1,22],[0,21],[0,61],[0,92],[0,60],[0,18],[0,14],[0,114],[0,75],[0,63],[0,152],[0,50],[0,66],[0,16],[0,2],[0,19],[0,42],[-1,158],[0,80],[1,47],[0,236],[-1,24],[0,122],[0,66],[0,114],[0,58],[0,107],[0,10],[0,33],[0,136],[0,18],[0,135],[0,113],[-1,88],[0,91]],[[58544,8896],[-11,-25],[-127,-307],[-29,-66],[-72,-173],[-5,-12],[-25,-60],[-13,-33],[-23,-55],[-37,-88],[-9,-25],[-23,-53],[-21,-50],[-38,-91],[-20,-18],[-20,-19],[-45,-37],[-45,-32],[-41,-30],[-92,-77],[-45,-38],[-51,-43],[-111,-89],[-51,-40],[-59,-43],[-30,-23],[-1,-1],[-70,-56],[-188,-153],[-56,-45],[-35,-28],[-22,-18],[-10,-8],[-28,-22],[-1,-1],[-20,-16],[-12,-10],[-13,-10],[-2,-2],[-75,-61],[-60,-49]],[[56908,6889],[-32,217],[-36,241],[-81,162],[-87,170],[-75,358],[9,288],[-238,197],[-18,396],[-151,260],[-47,257],[-90,139],[-114,70],[-114,-3],[-50,8],[-54,74],[-36,44],[-3,12],[19,44],[5,53],[11,55],[12,51],[9,48],[-8,50],[-14,35],[-35,28],[-60,33],[-73,22],[-35,26],[-72,10],[-42,1],[-52,21],[-43,31],[-47,57],[-23,33],[-21,71],[-20,55],[-4,33],[7,28],[19,24],[47,28],[25,15],[27,28],[4,16],[2,18],[-8,14],[-7,12],[-44,6],[-23,15],[-38,49],[-53,56],[-1,1],[-30,32],[-10,27],[-20,53],[-41,78],[-22,30],[-10,5],[-11,3],[-10,-1],[-11,-4],[-10,-11],[-8,-12],[-7,-16],[-10,-11],[-10,-5],[-13,-5],[-11,-1],[-14,0],[-8,2],[-10,5],[-10,4],[-14,12],[-3,2],[-13,13],[-23,24],[-8,8],[-7,8],[-3,6],[-4,7],[-2,9],[0,11],[1,12],[2,10],[6,33],[2,12],[2,8],[2,10],[0,8],[-1,19],[-1,15],[-1,13],[-2,12],[-2,16],[-3,16],[-3,13],[-5,16],[-7,16],[-7,15],[-9,20],[-6,16],[-7,17],[-5,20],[-3,12],[-2,10],[-2,11],[-3,29],[1,4],[0,5],[3,9],[4,10],[6,9],[12,17],[6,9],[8,8],[8,7],[9,8],[12,7],[15,10],[10,6],[13,11],[7,6],[7,8],[5,6],[6,8],[6,11],[3,6],[9,20],[19,46],[14,33],[2,5],[0,5],[-1,4],[-1,3],[-2,4],[-5,7],[-6,6],[-14,14],[-71,78],[-4,7],[-2,3],[0,3],[0,6],[1,9],[1,4],[1,4],[5,9],[8,14],[10,13],[10,14],[7,10],[9,12],[5,8],[8,12],[9,16],[5,9],[3,8],[3,8],[1,7],[1,4],[1,10],[0,5],[0,6],[0,81],[0,14],[-1,7],[-1,5],[-3,4],[-5,4],[-5,4],[-5,5],[-3,4],[-4,5],[-26,35],[-4,6],[-4,7],[-3,8],[-3,12],[-3,11],[0,5],[0,5],[0,6],[0,5],[1,4],[2,6],[1,4],[3,5],[4,5],[5,5],[5,4],[2,2],[6,4],[6,2],[8,4],[10,5],[5,3],[3,3],[7,6],[3,3],[2,5],[2,4],[2,3],[1,5],[2,5],[2,8],[14,70],[5,34],[5,32],[0,7],[0,7],[-1,8],[-3,15],[-5,27],[-4,21],[-19,97],[-3,13],[-3,10],[-4,14],[-3,10],[-2,5],[-2,6],[-2,13],[-1,7],[0,6],[0,10],[0,11],[1,4],[1,6],[1,4],[2,7],[1,5],[-1,4],[-2,6],[-2,6],[-5,6],[-5,4],[-5,5],[-7,6],[-19,18],[-24,23],[-6,6],[-3,3],[-2,4],[-3,6],[-3,6],[-6,11],[-5,16],[-1,9],[0,9],[1,5],[1,5],[1,4],[1,4],[4,14],[4,11],[5,12],[2,10],[3,11],[5,17],[2,11],[1,9],[0,6],[2,49],[0,22],[-1,16],[-1,10],[-1,10],[-1,10],[-1,6],[-3,5],[-30,52],[-4,7],[-5,7],[-4,5],[-36,50],[-5,6],[-5,4]],[[71038,7157],[-32,0]],[[71006,7157],[-24,23],[8,16],[13,5],[14,-22],[20,-10],[1,-12]],[[71087,7621],[12,-18],[11,-40],[11,-40],[6,-22],[4,-18],[8,-28],[14,-47],[10,-32],[8,-32],[10,-35],[11,-36],[12,-41],[8,-23],[7,-23],[8,-28]],[[71227,7158],[-22,0],[-71,0],[-56,-1]],[[71078,7157],[-17,20],[-19,32],[13,10],[-23,13],[-18,16],[-14,22],[-23,3],[12,23],[10,20],[20,21],[-30,20],[-23,21],[-16,-23],[-27,-12],[-14,9],[6,18],[-20,11],[-12,9],[10,22],[18,2],[21,17],[-21,8],[-13,21],[-24,17],[20,12],[-6,21],[-18,17],[-18,22],[19,28],[18,28],[-11,12],[-18,9],[-11,-6],[-21,-8],[-31,19],[2,25],[-6,18],[12,21],[12,24],[22,-7],[15,17],[6,22],[-4,23],[-19,13],[20,10],[-3,20],[11,16],[14,25]],[[70879,7858],[5,-23],[16,0],[18,-7],[-8,-26],[21,-28],[15,-31],[18,-28],[13,-33],[20,-12],[13,-28],[-30,6],[0,-42],[3,-30],[7,-24],[15,-36],[15,-15],[20,-2],[15,-15],[-2,-23],[-4,-25],[6,-34],[15,-22],[6,-25],[12,-28],[16,-19],[13,-23],[14,-30],[6,22],[-1,26],[2,43],[10,23],[-15,15],[-13,14],[4,26],[-13,30],[-16,27],[-25,27],[-9,30],[-1,35],[2,24],[25,24]],[[70771,7862],[-4,-26],[-18,18],[-4,28],[0,21],[-10,24],[28,-12],[12,-31],[-4,-22]],[[70879,7858],[-21,2],[-17,-11],[-13,25],[-4,36],[-15,19],[9,31],[-17,23],[14,12],[-12,29],[-4,23],[32,1],[18,-18],[8,-31],[9,-17],[-6,-22],[18,-7],[17,-20],[-18,-4],[15,-31],[20,-17],[-10,-18],[-23,-5]],[[70702,8323],[27,-6],[19,-2],[18,-28],[-2,-26],[-24,-9],[26,-12],[10,-36],[17,-24],[27,-12],[13,-38],[-13,-26],[-30,-1],[-27,20],[-20,24],[5,23],[-7,19],[-20,16],[-32,11],[5,-26],[-14,-23],[-5,-26],[-17,11],[-2,25],[-7,29],[14,18],[-23,7],[-11,12],[13,11],[-4,15],[-25,17],[23,3],[-12,15],[-24,23],[9,23],[13,24]],[[70622,8374],[22,-13],[15,-19],[8,-19],[6,-21],[23,-29],[-2,28],[8,22]],[[70622,8374],[-16,1],[-10,26],[-5,35],[25,-19],[17,-32],[-11,-11]],[[70611,8482],[-28,-4],[-22,14],[-6,28],[-11,33],[21,10],[17,-16],[13,-25],[21,-19],[-5,-21]],[[70548,8858],[-10,-14],[-26,2],[-8,23],[4,26],[-6,31],[15,40],[26,24],[21,-13],[-4,-17],[3,-22],[-3,-25],[3,-37],[-15,-18]],[[70479,8970],[-4,-34],[-32,8],[-6,30],[-6,25],[4,27],[6,24],[16,7],[19,-1],[14,-23],[-4,-31],[-7,-32]],[[69333,9554],[-25,-12],[-21,11],[-25,9],[-17,6],[-19,4],[-10,11],[19,10],[21,-10],[22,-6],[20,-6],[14,-7],[21,-10]],[[69842,9478],[-18,-12],[-18,3],[4,34],[-16,11],[12,25],[14,23],[-6,32],[-3,18],[-8,26],[18,-6],[13,-18],[8,-22],[0,-28],[14,-22],[3,-24],[-4,-19],[-13,-21]],[[69814,9673],[-22,-9],[-13,15],[-5,21],[19,14],[-13,19],[1,21],[12,2],[19,-16],[-2,-27],[6,-16],[-2,-24]],[[69558,9862],[23,-6],[18,1],[9,-25],[16,4],[13,-14],[22,-15],[6,-28],[14,-13],[1,-34],[1,-20],[-20,1],[17,-27],[0,-22],[-7,-17],[17,-15],[21,-8],[6,-24],[-31,1],[-30,-1],[-17,18],[-32,-2],[-14,16],[-13,-14],[-8,23],[-18,16],[-10,24],[-16,17],[-16,0],[-12,14],[-14,5],[-17,8],[0,-29],[-14,5],[-13,16],[-13,23],[-11,20],[12,20],[-24,11],[-23,6],[-10,33],[19,-5],[0,24],[27,-20],[19,-26],[13,-9],[18,-4],[15,-2],[16,-9],[16,-18],[29,-15],[-13,-21],[35,-4],[35,10],[24,-2],[14,10],[-15,26],[-15,17],[-15,11],[-26,1],[-15,14],[-7,29],[-20,7],[7,17],[26,1]],[[69863,9793],[-16,-26],[-27,5],[-15,26],[9,30],[1,30],[-8,26],[15,-2],[21,-25],[16,-34],[4,-30]],[[70523,9847],[-20,9],[-16,12],[10,21],[21,8],[17,0],[1,-34],[-13,-16]],[[71087,7621],[-19,6],[-8,19],[-13,17],[-20,-5],[-5,30],[-4,22],[6,25],[-28,-7],[-22,30],[-8,22],[-3,20],[-4,25],[-10,32],[-3,26],[-7,21],[23,2],[-20,17],[-14,26],[-14,50],[-8,29],[-2,35],[18,-16],[-7,34],[-35,2],[-21,42],[-9,24],[1,19],[-7,19],[-18,25],[-15,31],[-19,31],[-4,40],[-1,19],[-9,18],[-19,5],[-22,-16],[-35,-17]],[[70702,8323],[-11,16],[-7,18],[20,8],[-27,18],[-11,26],[-14,15],[17,21],[-11,20],[16,12],[-25,15],[-5,39],[-9,33],[-6,27],[24,22],[26,-6],[15,-13],[14,34],[-3,31],[-39,19],[-11,29],[2,49],[-22,20],[-20,-5],[1,39],[-7,28],[-6,22],[17,30],[-11,35],[7,27],[-7,34],[-9,35],[-7,24],[-4,29],[-7,19],[2,19],[-28,19],[-10,30],[-20,10],[-20,23],[-22,16],[-6,26],[-5,22],[0,30],[-3,26],[0,25],[5,28],[1,27],[2,31],[28,-14],[22,-5],[-8,36],[-2,21],[5,19],[9,32],[-16,21],[-18,23],[-25,6],[-26,19],[-19,32],[17,23],[29,-1],[12,-20],[6,-19],[14,-14],[2,26],[4,22],[-18,26],[1,29],[2,23],[7,27],[-5,28],[-1,17],[10,21],[4,27],[11,17]],[[70523,9847],[18,-7],[14,4],[7,34],[-7,30],[18,-7],[13,10],[10,12],[13,13]],[[70609,9936],[13,-68],[3,-29],[4,-27],[9,-75],[7,-44],[4,-28],[5,-30],[7,-45],[7,-51],[5,-27],[6,-29],[7,-45],[4,-26],[12,-62],[9,-48],[8,-49],[7,-44],[6,-33],[7,-33],[4,-25],[13,-65],[7,-37],[10,-48],[7,-34],[4,-23],[3,-22],[6,-29],[6,-26],[8,-34],[4,-19],[4,-23],[8,-38],[11,-61],[10,-44],[4,-18],[5,-27],[10,-38],[5,-23],[10,-44],[7,-34],[7,-26],[7,-28],[7,-26],[4,-17],[10,-34],[8,-33],[6,-23],[9,-39],[5,-21],[6,-25],[12,-44],[25,-92],[8,-37],[5,-20],[10,-44],[10,-40],[5,-22],[9,-32],[5,-21],[6,-19],[13,-52],[8,-32],[6,-22],[7,-23],[4,-38]],[[69724,9945],[3,-36],[-31,20],[-15,16],[-5,16],[-19,15],[-7,21],[17,5],[16,-20],[14,-29],[27,-8]],[[69482,10056],[-21,-2],[-27,18],[-30,3],[-16,32],[-13,20],[18,0],[31,-20],[24,-7],[17,-8],[17,-36]],[[69861,10346],[20,-31],[16,-18],[1,-30],[-18,-27],[-25,-8],[-22,8],[-32,16],[-18,29],[-17,4],[-8,25],[-4,21],[17,2],[18,-17],[23,5],[29,-8],[-6,27],[13,-10],[13,12]],[[69184,10663],[27,-14],[12,-25],[15,-26],[-24,-23],[-17,-1],[-16,12],[-14,26],[24,6],[-7,45]],[[69758,10750],[17,-36],[3,-27],[3,-28],[-27,-12],[-21,17],[-8,34],[7,33],[26,19]],[[69639,10720],[-22,-3],[-21,27],[21,16],[19,-10],[10,-7],[-7,-23]],[[69758,10750],[15,29],[38,15]],[[69811,10794],[-9,-33],[-20,-23],[-24,12]],[[69811,10794],[15,28],[28,16],[15,34],[22,6],[8,24],[37,16],[29,1],[16,-11],[7,-30],[-6,-36],[-15,-43],[-15,-23],[-15,-26],[-14,-18],[-16,-19],[-23,-37],[-10,-30],[-22,-21],[-25,-5],[-19,22],[-3,38],[21,30],[2,37],[-1,24],[12,21],[-28,2]],[[69920,11255],[13,-48],[5,-59],[6,-31],[3,-27],[3,-29],[2,-69],[1,-42],[-63,-5],[-15,36],[-2,25],[-11,19],[-10,25],[4,29],[3,23],[-4,32],[-4,24],[1,17],[-1,14],[-4,19],[-14,0],[6,30],[-23,16],[21,17],[68,11],[15,-27]],[[69893,11314],[-19,-9],[-36,6],[-22,-14],[-15,-9],[1,40],[7,28],[16,1],[-4,21],[-15,39],[9,43],[-2,27],[1,24],[3,19],[8,25],[27,-16],[19,-33],[8,-21],[5,-33],[10,-42],[1,-35],[1,-20],[0,-23],[-3,-18]],[[69974,11425],[-20,-6],[-10,18],[0,34],[2,23],[5,24],[3,23],[2,20],[4,19],[1,20],[4,35],[2,37],[0,18],[4,15],[20,-8],[1,-35],[-5,-45],[-1,-34],[2,-27],[-2,-41],[-2,-26],[-1,-39],[-9,-25]],[[69813,11751],[-22,-5],[-19,2],[-19,28],[19,3],[27,-1],[39,-15],[-25,-12]],[[70003,11992],[19,-24],[2,-50],[-1,-42],[-4,-37],[-7,-42],[-8,-34],[-14,-16],[-18,11],[3,29],[4,36],[4,29],[3,20],[4,19],[3,45],[0,32],[10,24]],[[70588,13193],[-19,-11],[9,-25],[-25,-20],[-33,10],[8,26],[12,29],[10,16],[14,1],[24,-26]],[[70609,9936],[-13,10],[-19,14],[-26,7],[-14,28],[-15,20],[-6,-34],[-9,-34],[-27,-9],[9,30],[-22,23],[-4,38],[-9,25],[-2,32],[22,6],[-6,18],[-11,5],[-12,16],[17,19],[-12,20],[22,12],[-30,17],[14,22],[17,18],[-11,18],[-11,25],[-11,27],[12,23],[22,16],[-21,33],[20,21],[2,-23],[15,1],[21,4],[-12,25],[7,22],[-19,16],[17,20],[-15,27],[-12,36],[-4,24],[-9,34],[-9,23],[10,16],[13,20],[-2,31],[-7,18],[-7,15],[9,20],[12,34],[-8,18],[-16,45],[0,35],[-2,31],[0,20],[-5,34],[1,31],[5,24],[8,13],[0,18],[-10,41],[11,19],[1,17],[-14,47],[5,20],[-2,33],[4,36],[-2,32],[-4,29],[-8,29],[8,29],[0,27],[19,7],[-11,31],[0,27],[-6,17],[3,31],[-3,38],[11,31],[-1,42],[-2,23],[4,26],[12,25],[-6,37],[-6,29],[-14,18],[1,28],[0,37],[-1,33],[5,29],[-13,30],[13,28],[7,13],[15,2],[-6,21],[-2,19],[-3,27],[-4,16],[-16,27],[3,19],[27,-17],[16,28],[-6,28],[-29,2],[-3,45],[5,36],[18,35],[-5,33],[-7,33],[-5,26],[-15,1],[2,30],[18,30],[2,22],[7,28],[1,21],[20,28],[4,33],[8,31],[-4,28],[5,27],[1,25],[-5,24],[1,29],[26,26],[14,41],[-2,30],[-17,13],[-37,7],[19,22],[-16,22],[3,37],[18,4],[-11,33],[25,-10],[25,11],[-4,29],[-29,-4],[5,26],[-3,19],[-1,23],[-9,21],[23,12],[0,-23],[24,11],[10,10],[6,26],[1,23],[8,12],[6,22],[-6,40]],[[70588,13193],[18,14],[2,36],[-18,12],[-14,-19],[-8,21],[20,29],[-8,26],[12,29],[-18,-1],[-9,24],[9,7],[7,31],[-11,18],[8,23],[5,23],[23,2],[14,-15],[8,-30],[25,-4],[17,24],[-4,19],[12,8],[5,22],[-10,21]],[[70773,13512],[-22,-99],[-32,-160],[-27,-143],[-14,-81],[-25,-151],[-16,-106],[-6,-41],[-17,-143],[-20,-186],[-11,-107],[-2,-33],[-7,-79],[-9,-102],[-2,-38],[-4,-51],[-3,-34],[-4,-69],[-3,-36],[-4,-93],[-1,-18],[-6,-188],[-5,-196],[0,-160],[3,-289],[3,-70],[4,-67],[6,-111],[2,-51],[2,-37],[2,-40],[3,-28],[5,-67],[3,-28],[-4,-17],[11,-60],[3,-24],[5,-51],[3,-37],[3,-42],[-5,-28],[11,-28],[4,-64],[7,-53],[4,-28],[1,-42]],[[70003,11992],[-18,12],[19,17],[13,23],[-5,23],[-26,2],[-6,-26],[-17,-7],[-15,-10],[19,-18],[-18,-6],[16,-21],[-12,-22],[-16,-15],[7,-24],[-12,-23],[8,-17],[-20,-3],[-30,3],[17,-20],[12,-9],[14,-6],[-11,-19],[-18,-10],[-21,4],[-13,-7],[-20,6],[-20,4],[-13,8],[-19,17],[-27,15],[-21,9],[-11,28],[-23,4],[0,-24],[-23,-17],[-25,-21],[7,-37],[-8,-33],[-25,6],[10,-22],[4,-19],[3,-33],[-2,-21],[-19,4],[-6,28],[-24,-25],[9,-20],[15,-19],[16,-19],[17,-12],[27,-22],[14,-17],[14,-3],[14,-10],[8,-9],[14,-19],[21,-18],[0,-26],[18,-17],[-4,-23],[-19,-31],[-33,-12],[-19,35],[-10,-17],[-12,19],[-22,-3],[4,-33],[20,-4],[20,-33],[8,-27],[0,-26],[-21,-25],[-11,-34],[10,-17],[12,-18],[23,-15],[16,-5],[19,-7],[18,1],[12,-9],[0,-23],[-1,-29],[11,-26],[10,-30],[7,-24],[-16,-3],[-21,4],[9,-34],[-25,0],[-7,-26],[-23,-16],[12,-24],[4,-25],[5,-28],[-2,-20],[-17,3],[-13,18],[-15,18],[-8,-15],[-17,-27],[-17,-16],[-18,24],[-31,8],[-34,-5],[-31,-14],[-35,16],[-25,-28],[-20,-8],[-14,22],[-37,-9],[-16,-20],[-28,5],[-10,17],[-15,14],[-16,5],[-22,7],[-17,-10],[-29,-16],[-23,-4],[-19,-9],[-14,-17],[25,0],[-24,-31],[-25,-19],[-18,4],[-13,-25],[31,-12],[9,-20],[7,-32],[2,-28],[-22,5],[-21,8],[-17,5],[0,-24],[22,-18]],[[69184,10663],[-22,-19],[-19,-19],[-13,-11],[17,-18],[11,-18],[14,-16],[-17,-7],[11,-16],[12,-1],[18,7],[11,-14],[0,-16],[0,-17],[-25,18],[7,-33],[2,-21],[-26,26],[-24,18],[9,-43],[16,-12],[8,-22],[14,-14],[-5,-26],[5,-31],[-21,-23],[17,-17],[21,-21],[11,-27],[-5,-33],[1,-24],[17,-44],[16,-1],[3,-25],[-3,-26],[8,-11],[11,-7],[11,-13],[12,-31],[1,-26],[15,-9],[-31,-19],[9,-18],[-16,-22],[6,-22],[-18,2],[-10,17],[-31,-10],[12,-20],[9,-27],[-5,-16],[-16,-5],[-18,3],[3,-23],[5,-29],[1,-28],[16,-19],[-7,-30],[-22,8],[-25,21],[-28,-1],[-2,-30],[19,-9],[24,-4],[23,-21],[16,-24],[-8,-28],[-27,-17],[-34,-6],[17,-25],[11,-16],[-9,-30],[20,-30],[7,-22],[20,-6],[-36,-21],[-25,-17],[4,-29],[-28,13],[6,-25],[-15,-21],[13,-17],[16,-2],[3,-24],[19,-8],[9,-20],[14,-8],[11,-21],[-13,-10],[11,-27],[21,13],[10,-21],[12,-10],[29,-3],[27,-14],[21,6],[23,-5],[17,-12],[15,-21],[19,-18],[28,-1],[25,-35],[14,-32],[19,-24],[16,-23],[14,-17],[18,-5],[21,-2],[11,-34],[11,-26],[18,-14],[-17,-17],[-5,-21],[11,-10],[-5,-19],[17,-18],[20,1],[-7,21],[21,-6],[9,-23],[10,-13],[11,-12],[8,-18],[-26,0],[18,-31],[21,-24],[-2,27],[21,6],[8,-20],[12,-16],[-5,-21],[16,-9],[-6,-27],[19,5],[-2,-20],[-13,-16],[17,-15],[18,-16],[-3,-20],[16,-14],[24,-7],[25,-1],[5,-41],[6,-22],[5,-23],[3,-26],[6,-24],[1,-21],[1,-27],[5,-36],[-3,-25],[5,-27],[5,-51],[-7,-35],[10,-40],[-8,-40],[16,-33],[1,-29],[3,-42],[7,-44],[13,-32],[7,-21],[10,-31],[4,-32],[11,-33],[7,-24],[5,-25],[3,-28],[0,-29],[11,-28],[3,-21],[11,-28],[5,-30],[8,-18],[8,-37],[9,-31],[9,-23],[-9,-24],[6,-16],[17,-3],[8,-33],[2,-33],[-5,-27],[-8,-22],[-1,-22],[2,-21],[1,-29],[3,-31],[5,-31],[-3,-19],[5,-28],[13,-19],[9,-26],[-16,-30]],[[70037,7154],[-17,0],[-52,-1],[-159,0],[-93,5],[-105,6],[-10,0],[-60,-1],[-126,-2],[-100,-1],[-253,-4],[-92,-1],[-219,-3],[-12,-1],[-36,0],[-10,0],[-14,0],[-19,-4],[-33,0],[-156,-1],[-24,0],[-18,0],[-84,-1],[-44,-1],[-73,0],[-11,-1],[-19,0],[-90,-1],[-24,-1],[-376,-4],[-107,0],[-17,0],[-9,0],[-13,0],[-49,-1],[-93,0],[-64,0],[-90,0],[-117,0],[-91,0],[-125,0],[-73,0],[-32,5],[-22,5],[-49,8],[-31,5],[-35,6],[-9,2],[-55,10],[-17,3],[-110,20],[-35,6],[-59,10],[-34,6],[-10,2],[-30,5],[-87,16],[-71,12],[-42,8]],[[66132,7265],[-26,5],[-20,3],[-32,6],[-71,13],[-55,9],[-9,2],[-1,89],[0,51],[0,66],[0,66],[0,324],[0,110],[0,127],[0,19],[1,96],[0,80],[-1,74],[0,10],[0,17],[0,74],[0,55],[0,290]],[[65918,8851],[0,121],[0,59],[0,84],[0,100],[0,9],[0,18],[0,119],[0,72],[-1,224],[0,80],[-1,247],[0,31],[0,16],[0,11],[0,123],[0,43],[1,159],[0,22],[0,27],[-1,183],[0,30],[-1,163],[0,103],[1,14],[0,74],[0,26],[0,38],[0,97],[0,109],[0,115],[0,198],[0,45],[0,26],[0,57],[0,22],[0,33],[0,73],[-1,259],[0,130],[0,104],[0,133],[0,45],[0,17],[1,85],[-1,71],[0,53],[0,147]],[[67504,13564],[3,-2],[27,-19],[19,-11],[21,-20],[-28,-3],[23,-16],[20,5],[9,10],[17,20],[18,20],[20,1],[14,-9],[13,-24],[38,-23],[28,-19],[18,-13],[18,2],[6,-20],[-3,-19],[21,-25],[33,-15],[27,-14],[21,-12],[28,12],[20,8],[28,11],[23,-10],[24,16],[11,22],[25,-1],[17,5],[25,-3],[27,0],[29,-8],[22,9],[25,4],[31,1],[64,25],[20,4],[26,9],[29,4],[40,4],[16,5],[20,7],[25,11],[26,3],[17,-10],[16,-13],[23,-32],[0,-22],[2,-18],[-2,-17],[-3,-36],[1,-27],[10,-45],[13,-28],[24,-41],[16,-17],[25,-11],[30,-2],[21,-1],[35,-3],[31,6],[62,6],[34,-1],[39,1],[21,-6],[21,-25],[16,5],[19,6],[26,-6],[27,-1],[30,-7],[23,-9],[16,-22],[29,-8],[28,-6],[25,-17],[34,-14],[26,-7],[42,-11],[16,-1],[18,-2],[21,1],[49,2],[27,3],[34,7],[26,6],[35,13],[24,11],[25,20],[21,13],[31,30],[9,17],[17,23],[23,10],[21,12],[31,6],[18,11],[12,13],[14,6],[28,2],[34,5],[18,6],[22,6],[17,-16],[-2,19],[17,20],[29,21],[24,9],[23,0],[27,6],[20,-12],[1,19],[-7,20],[13,9],[41,7],[28,0],[30,-7],[17,-4],[23,4],[21,-5],[31,5],[9,-22],[0,-36],[-10,-28],[-5,-20],[-2,-18],[-4,-29],[-4,-31],[-7,-31],[-10,-59],[-6,-38],[-4,-27],[-6,-31],[-5,-39],[-5,-37],[-16,-45],[1,-23],[-5,-41],[-5,-31],[-2,-16],[-3,-31],[-6,-26],[-3,-41],[-13,-12],[-7,-24],[-6,-30],[-12,-20],[-19,-12],[0,-29],[-14,-12],[-4,-31],[-4,-37],[10,-34],[-25,-9],[0,-30],[17,-26],[-11,-38],[2,-41],[6,-31],[18,17],[2,-20],[-5,-29],[7,-36],[-3,-45],[0,-22],[2,-51],[4,-42],[-3,-34],[-33,-2]],[[65918,8851],[-113,2],[-105,1],[-48,0],[-129,2],[-308,4],[-88,0],[-36,1],[-47,0],[-22,0],[-7,0],[-161,0],[-79,1],[-89,0],[-116,2],[-19,0],[-35,0],[-3,0],[-27,0],[-150,1],[-234,2],[-156,1],[-44,0],[-103,1],[-15,0],[-43,0],[-34,0],[-104,1],[-105,1],[-132,1]],[[63366,8872],[-87,0],[-125,1],[-20,0],[-183,1],[-61,0],[-116,0],[-24,1],[-82,0],[-13,0],[-36,0],[-28,1],[-1,0]],[[63366,8872],[-41,-107],[-79,-201],[-86,-218],[-20,-50],[-31,-81],[-68,-173],[-11,-27],[-22,-56],[-23,-62],[-11,-30],[-2,-5],[-21,-51],[-44,-112],[-11,-28],[-63,-162],[-4,-9],[-42,-108],[-89,-204],[-11,-26],[-78,-179],[-16,-38],[-50,-116],[-35,-80],[-56,-131],[-49,-114],[-49,-113],[-73,-171],[-23,-55],[-47,-118],[-13,-36],[-9,-20],[-22,-57],[-58,-112],[-13,-32],[-9,-24],[-18,-44],[-6,-17],[-15,-40],[-1,-3],[-12,-26],[-13,-32],[-4,-10],[-8,-19],[-11,-26],[-26,-63],[-13,-33],[-13,-31],[-15,-37],[-18,-46],[-32,-77],[-4,-11],[-8,-20],[-48,-117],[-24,-60],[-7,-21],[-8,-19],[-21,-52],[-30,-75],[-16,-40],[-7,-16],[-32,-77],[-7,-17],[-15,-38],[-36,-88],[-14,-33],[-17,-41],[-51,-121],[-17,-43],[-23,-56],[-10,-24],[-4,-10],[-9,-20],[-5,-13],[-6,-14],[-19,-46],[-9,-22],[-1,-2],[-5,-12],[-6,-15],[-4,-9],[-7,-16],[-7,-18],[-7,-16],[-13,-31],[-4,-11],[-9,-20],[-4,-10],[0,-1],[-9,-20],[-7,-18],[-6,-14],[-3,-10]],[[61343,3945],[-8,1],[-67,2],[-3,0],[-3,0],[-4,0],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-74,-38],[-30,-35],[0,-3],[-1,-4],[-1,-5],[-2,-5],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-2,-1],[-2,-2],[-3,-1],[-3,-1],[-3,0],[-2,1],[-2,1],[-3,3],[-1,1],[-3,4],[-1,2],[-1,4],[0,4],[-1,5],[0,5],[0,3],[0,4],[0,5],[0,4],[-1,6],[-1,5],[-3,13],[-1,4],[-16,44],[-1,2],[-1,1],[-1,1],[-2,2],[-2,1],[-2,1],[-3,1],[-2,-1],[-3,0],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[-14,-17],[-20,-23],[-16,-18],[-2,-3],[-2,-3],[-2,-3],[-2,-6],[-2,-3],[-2,-5],[0,-4],[0,-3],[-1,-12],[-1,-6],[1,-10],[1,-18],[0,-3],[0,-1],[0,-5],[-1,-2],[-2,-5],[-3,-3],[-1,-3],[-3,-2],[-2,-1],[-3,-2],[-3,-1],[-4,-1],[-6,-1],[-4,0],[-5,0],[-3,0],[-5,1],[-5,0],[-10,0],[-7,-1],[-6,-1],[-4,-1],[-4,-1],[-4,-1],[-6,-2],[-4,-2],[-4,-1],[-8,-4],[-4,-2],[-3,-3],[-10,-8],[-3,-3],[-5,-6],[-7,-6],[-6,-5],[-7,-4],[-4,-2],[-4,-2],[-9,-2],[-5,-1],[-6,-1],[-33,-3],[-6,0],[-16,-1],[-6,1],[-5,0],[-8,2],[-5,1],[-4,1],[-7,3],[-7,3],[-5,3],[-5,3],[-5,4],[-13,9],[-5,4],[-5,4],[-5,6],[-4,4],[-4,7],[-5,7],[-4,5],[-3,5],[-1,3],[-3,4],[-2,6],[-1,3],[-2,4],[-2,14],[-1,4],[-2,12],[0,5],[0,3],[0,3],[1,5],[1,5],[2,7],[2,5],[2,7],[2,5],[2,6],[1,5],[1,5],[0,5],[0,4],[0,3],[0,6],[-1,4],[-1,4],[0,4],[-2,5],[-1,5],[-2,4],[-3,9],[-2,6],[-2,3],[-2,3],[-2,3],[-2,3],[-3,2],[-3,3],[-5,3],[-10,8],[-3,2],[-3,2],[-4,1],[-4,2],[-3,1],[-3,1],[-7,2],[-5,1],[-6,0],[-3,0],[-4,-1],[-3,-1],[-3,0],[-9,-2],[-6,0],[-5,0],[-8,0],[-6,1],[-5,0],[-11,2],[-13,1],[-5,1],[-6,2],[-12,3],[-67,21],[-7,2],[-4,2],[-4,1],[-42,21],[-7,4],[-3,2],[-3,3],[-4,4],[-2,2],[-1,2],[-1,2],[-1,5],[-1,4],[0,4],[0,4],[1,4],[1,4],[1,3],[2,4],[3,4],[3,3],[3,3],[5,3],[4,3],[7,2],[6,2],[21,4],[4,1],[4,0],[5,0],[4,-1],[7,-1],[6,-2],[3,-1],[4,-2],[8,-4],[5,-3],[5,-1],[5,-1],[10,-1],[4,0],[6,1],[2,1],[3,1],[2,1],[4,3],[2,3],[2,5],[2,3],[1,5],[1,4],[0,4],[0,4],[0,3],[0,2],[-1,3],[-3,16],[0,4],[-1,3],[-2,5],[-2,5],[-2,3],[-2,3],[-2,3],[-3,3],[-2,3],[-3,3],[-4,3],[-4,2],[-23,12],[-3,1],[-2,1],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-3,-3],[-4,-4],[-4,-3],[-4,-4],[-5,-4],[-6,-3],[-4,-2],[-4,-1],[-3,-1],[-8,-2],[-3,-1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,2],[-1,2],[-3,3],[-2,2],[-3,4],[-2,6],[-1,3],[-2,3],[-1,5],[-1,5],[-2,8],[-5,19],[-2,4],[-2,4],[-2,5],[-2,4],[-3,4],[-3,5],[-4,4],[-4,4],[-5,5],[-5,3],[-9,5],[-13,8],[-3,1],[-4,1],[-6,1],[-6,1],[-6,0],[-4,0],[-5,-1],[-4,-1],[-5,-1],[-5,-1],[-6,-3],[-17,-11],[-2,-2],[-2,-2],[0,-3],[-1,-3],[-3,-4],[-11,-9],[-3,-3],[-5,-2],[-5,-2],[-5,-1],[-4,0],[-9,-1],[-7,0],[-3,1],[-29,8],[-5,2],[-3,2],[-3,1],[-2,1],[-2,3],[-3,3],[-34,53],[-6,11],[-1,3],[-1,3],[1,5],[0,4],[6,21],[1,3],[1,3],[2,3],[3,3],[4,2],[4,1],[4,1],[4,-1],[5,-1],[3,-1],[6,-3],[4,-2],[2,-2],[3,-3],[19,-16],[3,-2],[3,-3],[2,-4],[4,-4],[4,-4],[5,-4],[4,-2],[5,-2],[9,0],[6,0],[6,1],[5,1],[4,2],[4,3],[3,3],[3,4],[2,3],[2,3],[2,5],[4,10],[2,5],[2,5],[0,9],[0,5],[-1,5],[-1,6],[-1,4],[-1,4],[-1,3],[-2,4],[-2,4],[-1,3],[-2,3],[-5,5],[-3,3],[-2,1],[-4,1],[-3,1],[-2,1],[-3,0],[-6,1],[-5,0],[-4,1],[-4,1],[-3,1],[-4,3],[-3,2],[-2,2],[-3,2],[-1,2],[-2,3],[-6,9],[-3,5],[-6,12],[-1,3],[-8,21],[-3,7],[-2,9],[-4,14],[0,3],[0,10],[0,3],[2,6],[1,3],[1,3],[0,4],[1,3],[0,4],[-1,2],[-1,3],[-2,5],[-2,5],[-1,2],[-3,3],[-4,3],[-3,2],[-2,1],[-6,1],[-2,0],[-3,0],[-3,0],[-5,-1],[-4,-1],[-5,-2],[-3,-1],[-3,-2],[-3,-2],[-6,-5],[-5,-3],[-5,-4],[-5,-5],[-5,-4],[-7,-5],[-4,-3],[-5,-4],[-8,-6],[-4,-2],[-4,-2],[-5,-2],[-5,-1],[-6,-2],[-7,-2],[-9,-2],[-6,-1],[-4,-1],[-6,0],[-30,0],[-3,0],[-6,1],[-20,8],[-12,6],[-7,3],[-8,4],[-47,23],[-2,2],[-4,3],[-2,2],[-3,3],[-1,4],[0,3],[-1,3],[1,3],[1,3],[3,6],[3,4],[2,4],[1,5],[1,5],[0,9],[0,4],[-1,5],[-1,5],[-1,4],[-1,4],[-2,3],[-5,9],[-5,7],[-7,8],[-4,4],[-4,6],[-3,3],[-10,17],[-5,9],[-5,11],[-4,9],[-2,4],[-2,4],[-1,5],[-8,27],[-2,11],[0,7],[-1,4],[0,12],[0,9],[-1,6],[0,8],[-2,10],[-1,7],[0,3],[-1,3],[-2,3],[-1,4],[-15,25],[-7,11],[-3,3],[-4,6],[-8,10],[-2,1],[-1,2],[-3,2],[-3,2],[-2,1],[-2,2],[-2,0],[-2,1],[-2,0],[-2,-1],[-2,-1],[-3,-1],[-11,-5],[-4,-3],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-5,-1],[-6,-2],[-3,0],[-3,0],[-2,0],[-2,0],[-3,1],[-3,1],[-2,1],[-3,2],[-2,2],[-2,3],[-1,3],[-3,5],[-2,4],[-2,4],[-5,7],[-2,3],[-2,3],[-4,4],[-4,3],[-4,2],[-4,2],[-4,0],[-3,1],[-4,0],[-6,0],[-4,-1],[-6,-1],[-5,-1],[-4,-1],[-3,-2],[-4,-2],[-3,-3],[-2,-1],[-2,-2],[-3,-3],[-2,-3],[-3,-5],[-5,-8],[-4,-5],[-3,-6],[-1,-2],[-4,-4],[-3,-5],[-2,-2],[-2,-2],[-8,-10],[-2,-1],[-8,-7],[-18,-12],[-19,-12],[-4,-3],[-18,-11],[-7,-3],[-3,-1],[-4,-1],[-3,0],[-4,-1],[-4,1],[-4,0],[-8,1],[-4,1],[-3,0],[-3,1],[-3,2],[-2,2],[-3,2],[-2,3],[-2,4],[-1,3],[-2,5],[-1,3],[-1,3],[-3,7],[-1,3],[-2,5],[-2,3],[-1,3],[-2,2],[-1,1],[-2,1],[-2,1],[-2,2],[-15,6],[-3,2],[-3,1],[-3,1],[-7,2],[-8,1],[-4,1],[-14,1],[-5,0],[-5,0],[-5,0],[-2,-1],[-3,-1],[-4,-1],[-15,-5],[-5,-2],[-106,-43],[-72,-31],[-4,-2],[-4,-2],[-27,-17],[-2,-2],[-3,-2],[-6,-4],[-2,-2],[-3,-2],[-2,-2],[-2,-2],[-2,-1],[-1,-1],[-2,0],[-2,1],[-2,0],[-2,2],[-2,1],[-1,2],[-4,4],[-4,9],[-14,31],[-2,4],[-1,5],[-1,3],[-1,5],[0,3],[0,4],[0,4],[0,6],[1,6],[0,1],[1,2],[1,1],[2,3],[2,3],[3,4],[1,3],[1,2],[1,3],[0,1],[0,2],[0,4],[0,2],[-1,3],[-10,34],[-1,3],[0,2],[-2,2],[-1,2],[-1,2],[-3,2],[-2,2],[-2,1],[-2,1],[-4,2],[-1,0],[-1,1],[-2,0],[-3,0],[-12,-1],[-4,0],[-3,-1],[-7,-1],[-6,-1],[-5,0],[-7,0],[-5,0],[-4,1],[-3,1],[-4,0],[-5,1],[-5,2],[-4,1],[-4,2],[-3,2],[-4,3],[-9,7],[-3,2],[-9,9],[-35,40],[-3,3],[-2,3],[-1,3],[-4,12],[-1,5],[0,1],[0,5],[0,19],[0,18],[2,33],[0,5],[1,4],[1,8],[-1,4],[-1,1],[-1,2],[-10,10],[-4,3],[-4,3],[-3,1],[-3,0],[-3,0],[-3,-2],[-3,-1],[-6,-5],[-3,-3],[-28,-37],[-3,-4],[-4,-7],[-2,-4],[-5,-11],[-1,-3],[-1,-3],[-2,-5],[-1,-3],[-1,-4],[-1,-4],[0,-3],[0,-3],[0,-5],[1,-3],[3,-10],[2,-8],[1,-4],[1,-3],[2,-12],[1,-6],[1,-6],[0,-5],[1,-5],[-1,-6],[0,-3],[0,-4],[-1,-4],[-3,-9],[-3,-7],[-1,-3],[-2,-4],[-2,-4],[-2,-3],[-3,-3],[-2,-2],[-4,-3],[-2,-2],[-2,-1],[-2,-1],[-4,-1],[-4,-1],[-3,-1],[-10,-2],[-4,-1],[-4,0],[-4,-1],[-9,0],[-7,0],[-7,2],[-3,1],[-4,1],[-6,3],[-6,4],[-6,5],[-5,4],[-6,5],[-44,46],[-1,1],[-1,2],[-1,3],[0,5],[0,5],[0,4],[1,2],[0,3],[1,2],[2,3],[1,3],[3,4],[3,4],[5,10],[2,3],[0,3],[1,3],[2,5],[1,6],[2,10],[1,43],[0,5],[0,5],[-1,8],[-1,4],[-1,3],[-1,3],[-3,4],[-2,3],[-4,6],[-4,3],[-2,2],[-3,2],[-4,3],[-27,17],[-2,2],[-5,2],[-3,2],[-3,2],[-5,2],[-4,1],[-16,5],[-67,19],[-3,1],[-3,0],[-3,0],[-11,-2],[-4,-1],[-4,-2],[-4,-2],[-3,-3],[-2,-3],[-21,-27],[-3,-5],[-6,-8],[-3,-5],[-18,-19],[-3,-3],[-7,-6],[-5,-2],[-5,-2],[-6,-2],[-6,0],[-4,0],[-7,0],[-36,4],[-17,2],[-11,2],[-10,2],[-8,3],[-3,1],[-4,2],[-4,2],[-3,1],[-6,1],[-7,-2],[-7,-3],[-7,-3],[-3,-2],[-3,-1],[-6,-1],[-7,-1],[-6,0],[-5,1],[-3,1],[-3,1],[-3,3],[-3,3],[-6,8],[-5,8],[-3,6],[-2,7],[-1,7],[-4,13],[-3,7],[-2,5],[-5,11],[-6,12],[-11,17],[-12,20],[-2,2],[-42,33],[-29,21],[-2,2],[-5,2],[-4,1],[-29,8],[-4,1],[-4,0],[-5,0],[-5,-1],[-3,0],[-3,-1],[-5,-1],[-3,-1],[-4,-2],[-6,-3],[-4,-2],[-16,-11],[-11,-8],[-3,-3],[-3,-3],[-2,-2],[-2,-4],[-16,-21],[-6,-8],[-30,-34],[-4,-4],[-4,-3],[-13,-10],[-22,-14],[-22,-13],[-3,-2],[-4,-1],[-7,-1],[-3,0],[-5,-1],[-3,0],[-4,1],[-7,1],[-7,1],[-7,1],[-7,0],[-6,0],[-12,-1],[-42,-4],[-10,-1],[-22,-3],[-1,0],[-1,0],[-2,1],[-1,0],[-8,3],[-5,3],[-4,3],[-4,3],[-2,3],[-3,5],[-2,5],[-3,9],[-4,16],[-3,8],[-11,33],[-2,5],[-2,5],[-3,4],[-2,2],[-4,6],[-6,4],[-12,9],[-3,2],[-7,3],[-10,4],[-6,5],[-6,7],[-4,6],[-3,6],[-7,14],[-12,24],[-46,55],[-18,16],[-12,8],[-2,1],[-4,1],[-2,1],[-1,4],[-9,24],[-4,11],[-4,13],[-1,6],[-1,3],[0,7],[0,3],[0,2],[0,2],[1,2],[2,2],[1,2],[2,1],[2,1],[3,2],[2,2],[3,1],[4,1],[2,1],[2,1],[3,1],[3,2],[3,1],[8,5],[5,4],[4,2],[3,3],[4,2],[4,4],[4,3],[1,2],[2,2],[4,6],[4,4],[2,4],[1,2],[3,6],[2,3],[0,4],[2,5],[17,89],[1,6],[0,9],[-1,7],[-1,4],[-1,3],[-1,3],[-1,2],[0,3],[0,5],[-1,3],[1,3],[0,3],[1,3],[1,7],[1,3],[6,17],[1,1],[1,3],[4,7],[7,11],[2,4],[6,7],[3,3],[3,5],[8,11],[5,7],[3,6],[2,4],[3,8],[3,7],[2,5],[1,5],[5,32],[1,10],[0,3],[-1,4],[-2,5],[-3,8],[-2,3],[-2,3],[-2,3],[-10,16],[-21,42],[-3,9],[-12,30],[-14,37],[-20,47],[-5,11],[-4,7],[-5,8],[-7,12],[-6,8],[-5,5],[-3,3],[-6,7],[-12,14],[-4,5],[-4,6],[-7,12],[-3,5],[-8,13],[-6,12],[-47,60],[-14,19],[-20,26],[-14,17],[-2,3],[-2,2],[-2,2],[-3,1],[-2,1],[-19,2],[-33,5],[-56,14],[-6,1],[-9,4],[-30,12],[-18,7],[-4,5],[-5,4],[-6,3],[-55,25],[-5,1],[-3,0],[-4,-2],[-4,-1],[-3,0],[-2,0],[-30,19],[-2,2],[-4,3],[-2,3],[-2,3],[-2,2],[-1,3],[-3,4],[-1,3],[-2,3],[-2,5],[-4,8],[-7,18],[-2,8],[-2,12],[-1,3],[0,6],[1,7],[0,3],[0,10],[2,9],[1,11],[2,6],[5,16],[11,28],[6,13],[10,30],[-16,113]],[[66132,7265],[-11,-77],[-4,-32],[-5,-36],[-4,-24],[-3,-29],[-13,-90],[-8,-63],[-7,-52],[-27,1],[-4,-63],[3,-19],[-4,-58],[-10,-16],[9,-9],[29,-125],[4,-41],[-122,23],[-16,3],[-13,2],[-17,-118],[-5,-38],[-6,-40],[-21,-144],[-7,-63],[-4,-23],[-23,4],[-10,2],[0,-3],[-19,-132],[-9,-65],[-11,-70],[-9,-67],[-10,-67],[17,-4],[14,-1],[82,-15],[12,-2],[26,-5],[93,-16],[59,-11],[60,-10],[110,-20],[15,-1],[58,-11],[21,-4],[10,-1],[15,-3],[9,-1],[10,-2],[10,-1],[109,-22],[3,-16],[67,1],[73,2],[14,0],[72,0],[23,0],[101,1],[0,-38],[0,-56],[1,-13],[0,-136],[0,-69],[0,-69],[0,-67],[0,-98],[0,-25],[0,-15],[0,-69],[0,-98],[0,-49]],[[66859,4792],[0,-29],[0,-26],[0,-68],[0,-30],[0,-39],[0,-28],[0,-13],[0,-14],[0,-25],[0,-18],[0,-9],[0,-38],[0,-45],[0,-45],[0,-67],[1,-13],[0,-56],[0,-32],[0,-94],[-1,-29],[0,-117],[0,-2],[0,-65],[1,-35],[0,-34],[0,-33],[0,-58],[-1,-33],[0,-13],[0,-33],[1,-73],[-1,-29],[0,-35],[0,-67],[0,-34],[0,-34],[0,-36],[0,-53],[0,-13],[-1,-139],[1,-57],[0,-12],[0,-31],[0,-18],[0,-12],[0,-12],[0,-10],[0,-14],[0,-10],[0,-13],[0,-21],[0,-8],[0,-19],[0,-40],[0,-63],[0,-34],[0,-17],[0,-2],[0,-41],[0,-47],[0,-79],[0,-24],[0,-15],[0,-19],[0,-22],[0,-108],[0,-73],[0,-4],[0,-17],[0,-11],[2,-99]],[[66861,2186],[-4,-1],[-3,-1],[-3,-2],[-3,-2],[-2,-3],[-1,-2],[-3,-6],[-22,-65],[-11,-38],[-1,-2],[-1,-2],[-3,-1],[-2,0],[-2,1],[-3,1],[-2,2],[-3,3],[-2,4],[-3,4],[-4,8],[-3,8],[-2,4],[-4,6],[-1,4],[-3,4],[-3,4],[-8,9],[-3,3],[-3,2],[-3,3],[-3,2],[-7,4],[-4,1],[-3,1],[-16,4],[-46,10],[-3,0],[-2,0],[-2,0],[-2,-1],[-1,-1],[-2,-4],[-1,-2],[-1,-3],[0,-3],[1,-5],[0,-4],[1,-4],[0,-5],[0,-7],[-1,-2],[-2,-4],[-2,-2],[-3,-4],[-2,-1],[-2,-2],[-3,-1],[-2,-2],[-2,-1],[-3,-1],[-4,-1],[-5,-1],[-5,0],[-6,1],[-5,1],[-7,2],[-11,4],[-4,1],[-3,1],[-3,0],[-5,1],[-5,1],[-5,0],[-6,-1],[-4,-1],[-5,-1],[-6,-2],[-5,-2],[-5,-3],[-7,-4],[-20,-17],[-3,-4],[-4,-3],[-6,-3],[-2,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-4,0],[-3,-1],[-4,0],[-3,0],[-4,1],[-4,1],[-3,1],[-5,3],[-4,2],[-4,2],[-9,4],[-3,2],[-4,1],[-3,1],[-3,0],[-3,0],[-4,-1],[-5,-2],[-5,-2],[-3,-2],[-5,-3],[-4,-3],[-6,-4],[-3,-2],[-20,-11],[-3,-1],[-2,0],[-2,2],[-1,2],[-2,2],[-1,3],[-1,3],[-5,13],[-1,6],[-2,6],[-3,17],[-1,7],[-1,6],[0,4],[-5,17],[-1,3],[-1,2],[-3,3],[-3,2],[-4,2],[-5,1],[-5,0],[-5,-2],[-3,-1],[-3,-2],[-3,-2],[-3,-4],[-3,-3],[-3,-3],[-3,-4],[-2,-4],[-1,-3],[0,-3],[0,-4],[1,-2],[1,-3],[3,-2],[4,-3],[4,-3],[5,-3],[4,-2],[3,-2],[4,-3],[4,-4],[3,-2],[3,-3],[2,-2],[1,-2],[2,-3],[1,-3],[1,-3],[0,-4],[1,-3],[-1,-3],[0,-4],[-2,-6],[-1,-3],[-2,-4],[-3,-4],[-2,-3],[-3,-3],[-3,-2],[-4,-2],[-5,-1],[-5,-1],[-4,0],[-6,2],[-4,2],[-4,2],[-3,3],[-4,4],[-2,3],[-2,4],[-7,11],[-3,5],[-3,5],[-3,4],[-3,4],[-5,5],[-4,4],[-2,2],[-6,5],[-5,4],[-8,5],[-9,6],[-4,2],[-3,2],[-5,3],[-3,1],[-3,1],[-3,0],[-15,1],[-3,0],[-4,0],[-5,-1],[-6,-2],[-6,-2],[-4,-1],[-3,-2],[-2,-2],[-2,-2],[-40,-47],[-1,-5],[-2,-5],[-1,-4],[-1,-4],[-1,-2],[-1,-3],[-2,-3],[-2,-3],[-4,-3],[-3,-2],[-6,-4],[-4,-1],[-5,0],[-5,0],[-5,0],[-4,1],[-4,2],[-4,2],[-5,3],[-72,57],[-2,2],[-2,3],[-1,3],[-2,4],[-1,4],[-1,8],[-1,12],[0,3],[0,7],[0,4],[1,8],[2,12],[0,3],[-1,3],[-1,2],[-1,2],[-2,1],[-2,1],[-3,1],[-3,0],[-7,-2],[-14,-3],[-21,-5],[-5,-2],[-3,-2],[-2,-2],[-2,-1],[-2,-5],[-1,-3],[-1,-3],[-1,-3],[0,-4],[0,-6],[1,-9],[1,-3],[0,-4],[-1,-3],[-1,-3],[-1,-4],[-1,-2],[-2,-4],[-3,-3],[-8,-7],[-2,-2],[-3,-1],[-3,-1],[-2,1],[-3,1],[-3,2],[-2,3],[-1,2],[-1,3],[-4,11],[-4,10],[-2,4],[-1,4],[-3,5],[-3,3],[-1,3],[-4,4],[-4,4],[-3,2],[-2,1],[-4,1],[-3,2],[-4,1],[-4,0],[-4,0],[-4,0],[-4,-1],[-5,-1],[-4,-1],[-8,-3],[-5,-2],[-13,-9],[-7,-5],[-3,-2],[-4,-3],[-2,-3],[-3,-4],[-2,-4],[-2,-4],[-3,-6],[-1,-7],[-1,-3],[-1,-3],[-1,-4],[-2,-5],[-3,-5],[-3,-4],[-3,-3],[-1,-2],[-2,-1],[-2,-1],[-2,-1],[-3,0],[-1,2],[-1,2],[-1,2],[-1,3],[0,3],[1,3],[1,5],[4,8],[5,9],[1,3],[2,3],[1,4],[0,3],[1,5],[0,5],[0,3],[0,4],[0,5],[-2,8],[-2,7],[-3,5],[-3,2],[-3,2],[-4,1],[-3,1],[-3,-1],[-3,-2],[-1,-1],[-1,-5],[-1,-2],[1,-2],[0,-4],[-1,-3],[-1,-4],[-1,-5],[-2,-5],[-2,-5],[-2,-4],[-2,-3],[-3,-4],[-4,-4],[-2,-2],[-3,-2],[-21,-15],[-2,-1],[-3,0],[-2,1],[-4,2],[-2,2],[-5,10],[-1,3],[-2,7],[-3,11],[-2,5],[-1,4],[-9,21],[-3,3],[-2,2],[-4,3],[-3,2],[-5,2],[-3,0],[-3,0],[-3,-1],[-3,-2],[-3,-2],[-3,-2],[-4,-3],[-3,-4],[-3,-3],[-3,-4],[-3,-4],[-2,-4],[-6,-12],[-1,-3],[-1,-3],[-2,-5],[-1,-4],[-2,-10],[-3,-10],[0,-5],[-1,-5],[-1,-5],[-1,-10],[0,-7],[0,-2],[0,-9],[1,-8],[0,-3],[0,-6],[-1,-16],[-1,-3],[-1,-4],[-2,-4],[-1,-4],[-16,-45],[-10,-25],[-1,-2],[-1,-2],[-3,0],[-2,0],[-3,1],[-2,2],[-4,2],[-3,2],[-5,4],[-5,4],[-3,3],[-4,2],[-4,2],[-9,4],[-4,2],[-5,1],[-4,1],[-3,1],[-4,0],[-6,0],[-5,0],[-6,0],[-4,0],[-27,1],[-5,0],[-5,1],[-5,1],[-5,1],[-6,2],[-6,3],[-4,3],[-5,2],[-5,2],[-6,1],[-3,0],[-2,0],[-3,-1],[-5,-1],[-5,-1],[-4,-2],[-4,-3],[-4,-3],[-3,-3],[-3,-3],[-9,-13],[-5,-8],[-4,-8],[-9,-17],[-7,-14],[-2,-4],[-3,-4],[-2,-3],[-4,-2],[-3,-1],[-3,-1],[-4,-1],[-4,0],[-25,-2],[-2,0],[-3,1],[-2,2],[-2,2],[-2,3],[-2,5],[-2,3],[-10,28],[-2,5],[-1,2],[1,3],[3,2],[4,1],[4,0],[6,0],[7,0],[3,0],[4,1],[4,1],[5,1],[5,2],[3,2],[4,3],[4,3],[4,5],[4,4],[3,5],[1,3],[1,3],[2,5],[2,6],[1,3],[1,4],[1,7],[0,8],[0,11],[0,6],[-2,10],[-1,5],[-1,6],[-3,8],[-4,9],[-2,4],[-1,3],[-1,1],[-7,6],[-3,4],[-2,3],[-3,3],[-2,3],[-1,3],[-2,2],[-2,5],[-1,5],[-2,4],[-3,14],[0,4],[-1,4],[1,3],[0,6],[1,3],[0,5],[0,6],[-1,5],[-1,5],[-2,8],[-1,4],[-1,3],[-3,4],[-2,5],[-6,9],[-2,3],[-2,3],[-4,3],[-2,1],[-5,3],[-4,2],[-5,1],[-8,1],[-5,0],[-4,-1],[-6,-1],[-4,-1],[-4,-3],[-2,-2],[-2,-1],[-1,-3],[-2,-6],[0,-2],[1,-2],[1,-3],[1,-2],[3,-3],[3,-1],[4,-1],[3,-1],[5,-1],[3,-1],[3,-2],[3,-2],[2,-2],[2,-3],[1,-2],[1,-3],[1,-2],[1,-3],[0,-3],[0,-3],[-1,-2],[-1,-3],[-3,-3],[-3,-3],[-4,-3],[-4,-3],[-4,-3],[-32,-22],[-4,-3],[-21,-10],[-3,-2],[-4,-1],[-3,-1],[-4,-1],[-5,1],[-2,0],[-4,1],[-4,1],[-4,1],[-4,2],[-4,2],[-3,2],[-6,5],[-3,2],[-2,2],[-2,3],[-6,8],[-2,4],[-1,3],[-1,3],[-1,3],[-2,4],[-3,5],[-3,4],[-22,25],[-3,3],[-3,1],[-3,1],[-4,0],[-5,-1],[-82,-24],[-11,-4],[-22,-6],[-4,-2],[-3,-2],[-3,-3],[-4,-4],[-2,-3],[-3,-2],[-2,-2],[-2,-1],[-4,-1],[-3,0],[-3,0],[-5,0],[-4,1],[-3,1],[-3,2],[-12,6],[-5,2],[-3,2],[-2,2],[-2,3],[-1,4],[-1,4],[-1,3],[0,4],[0,3],[1,5],[0,3],[1,3],[1,5],[2,3],[1,4],[2,3],[3,4],[2,3],[4,5],[2,3],[1,3],[2,4],[1,5],[0,5],[0,6],[-1,5],[-2,4],[-2,3],[-2,1],[-2,2],[-3,1],[-2,0],[-4,1],[-3,0],[-4,-1],[-4,-1],[-4,-2],[-4,-2],[-5,-3],[-4,-4],[-8,-7],[-3,-3],[-2,-4],[-3,-4],[-2,-3],[-2,-7],[-1,-6],[-1,-5],[0,-4],[1,-4],[0,-4],[3,-22],[1,-6],[-1,-6],[-2,-14],[-3,-10],[-2,-5],[-1,-4],[-2,-3],[-5,-14],[-8,-18],[-3,-6],[-23,-48],[-2,-3],[-4,-4],[-3,-3],[-4,-3],[-4,-3],[-2,-1],[-2,0],[-2,-1],[-3,0],[-2,1],[-2,0],[-2,1],[-3,2],[-2,2],[-3,3],[-3,3],[-2,3],[-2,3],[-1,2],[-1,6],[0,3],[0,3],[1,5],[1,3],[0,3],[1,4],[-1,9],[-1,5],[0,3],[-2,5],[-1,4],[-2,4],[-2,3],[-2,2],[-2,2],[-3,1],[-3,1],[-4,1],[-3,0],[-2,-1],[-4,-1],[-2,-2],[-2,-2],[-4,-3],[-12,-13],[-4,-4],[-3,-4],[-4,-5],[-4,-5],[-3,-3],[-4,-3],[-2,-1],[-2,0],[-3,-1],[-2,0],[-4,0],[-3,1],[-2,2],[-2,1],[-2,3],[-2,2],[-1,2],[-1,3],[-1,2],[0,3],[0,3],[0,3],[1,3],[0,2],[1,2],[3,5],[3,3],[4,5],[5,5],[8,8],[3,2],[2,3],[1,3],[4,5],[1,4],[0,3],[1,5],[0,4],[-1,4],[-2,5],[-3,4],[-4,3],[-7,3],[-7,0],[-7,-1],[-7,-2],[-2,-1],[-4,-1],[-3,-3],[-2,-1],[-4,-3],[-4,-2],[-3,-2],[-2,-1],[-3,0],[-3,-1],[-4,1],[-5,2],[-2,1],[-2,1],[-2,3],[-2,2],[-1,3],[-1,3],[-2,3],[-1,4],[-2,11],[-2,7],[-2,6],[-3,8],[-2,5],[-2,5],[-2,5],[-1,3],[-6,10],[-2,4],[-7,9],[-5,5],[-12,14],[-2,2],[-2,1],[-3,1],[-1,0],[-3,-1],[-3,0],[-4,-2],[-2,-1],[-2,-2],[-4,-2],[-1,-3],[-2,-2],[-1,-2],[-1,-3],[-2,-5],[-1,-8],[0,-3],[-4,-51],[0,-3],[1,-3],[3,-6],[2,-2],[2,-2],[5,-3],[5,-3],[3,-1],[3,-2],[4,-3],[2,-4],[1,-2],[0,-2],[0,-3],[0,-4],[-1,-3],[-1,-3],[-1,-2],[-2,-3],[-1,-1],[-2,-2],[-3,-1],[-2,-1],[-2,0],[-3,0],[-2,2],[-3,1],[-2,2],[-2,3],[-2,3],[-2,3],[-2,2],[-3,4],[-2,3],[-1,2],[-4,4],[-4,3],[-5,4],[-3,2],[-12,4],[-3,1],[-3,0],[-3,0],[-3,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[0,-2],[-1,-3],[0,-3],[-1,-5],[-1,-5],[0,-4],[0,-5],[0,-7],[-1,-2],[-1,-6],[-1,-3],[-1,-5],[-1,-3],[-8,-18],[-7,-17],[-3,-1],[-3,-1],[-6,1],[-4,1],[-4,1],[-4,2],[-4,2],[-7,4],[-3,1],[-4,4],[-2,2],[-3,2],[-1,2],[-2,3],[-2,2],[-5,9],[-3,7],[-5,15],[-6,16],[-2,6],[-2,6],[-8,18],[-2,5],[-2,4],[-2,4],[-2,3],[-4,5],[-2,3],[-2,1],[-1,1],[-2,2],[-4,3],[-3,1],[-2,1],[-3,1],[-3,1],[-4,1],[-4,1],[-5,0],[-5,1],[-4,0],[-9,3],[-3,1],[-3,2],[-3,2],[-3,3],[-3,2],[-2,4],[-5,7],[-3,8],[-1,4],[-3,6],[-4,7],[-3,4],[-3,4],[-2,3],[-4,4],[-3,2],[-2,1],[-3,2],[-2,2],[-3,2],[-4,1],[-3,2],[-4,2],[-6,2],[-6,1],[-4,1],[-4,1],[-10,2],[-5,0],[-5,1],[-5,0],[-4,0],[-4,0],[-8,0],[-10,-1],[-4,-1],[-4,-1],[-4,-1],[-62,-16],[-5,-2],[-5,-1],[-5,-2],[-4,-2],[-4,-2],[-3,-3],[-4,-3],[-7,-6],[-3,-3],[-2,-1],[-3,-2],[-2,-1],[-3,-1],[-2,-1],[-8,-2],[-2,0],[-4,1],[-3,0],[-2,2],[-2,1],[-2,2],[-2,1],[-2,3],[-2,3],[-4,6],[-2,4],[-1,3],[0,3],[0,5],[-1,4],[1,4],[0,4],[0,4],[1,4],[0,4],[0,2],[-1,3],[-1,2],[-2,2],[-3,3],[-3,3],[-6,4],[-2,1],[-7,5],[-27,14],[-20,10],[-9,5],[-5,2],[-7,5],[-3,2],[-4,4],[-3,4],[-3,4],[-2,4],[-1,3],[-1,4],[0,3],[0,4],[0,5],[0,4],[-1,5],[0,3],[-1,4],[-2,5],[-4,8],[-3,4],[-2,4],[-3,2],[-25,22],[-6,5],[-28,25],[-23,11],[-5,2],[-17,4],[-7,2],[-6,2],[-3,2],[-3,1],[-2,2],[-2,2],[-3,2],[-2,2],[-22,25],[-1,2],[-1,1],[-2,4],[-1,2],[0,1],[0,1],[0,2],[1,2],[1,2],[2,1],[2,2],[2,1],[5,3],[3,1],[4,2],[23,6],[3,1],[4,0],[4,0],[3,1],[3,-1],[4,0],[8,-1],[5,-1],[7,-3],[4,-1],[4,-3],[6,-2],[4,-1],[4,-1],[7,-2],[7,-1],[4,0],[3,0],[2,0],[3,1],[3,0],[2,2],[2,1],[1,1],[1,2],[0,2],[0,2],[0,3],[-2,3],[-2,4],[-2,3],[-2,3],[-1,3],[-1,3],[-2,4],[-1,8],[-2,14],[0,3],[1,4],[0,3],[1,3],[1,2],[1,3],[2,2],[2,3],[3,3],[3,2],[3,2],[3,1],[3,1],[3,1],[3,0],[3,0],[3,1],[5,2],[4,2],[2,2],[1,2],[2,3],[1,2],[1,4],[0,2],[0,3],[1,5],[0,3],[-1,3],[0,3],[-1,3],[-1,2],[-1,2],[-2,2],[-2,1],[-3,0],[-3,1],[-3,-1],[-3,0],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-2],[-2,-2],[-2,-5],[-2,-3],[-2,-4],[-1,-3],[-1,-4],[-3,-4],[-3,-4],[-4,-3],[-4,-3],[-4,-2],[-2,-1],[-3,-1],[-2,-1],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-4,1],[-5,2],[-15,6],[-20,7],[-19,8],[-21,8],[-9,5],[-5,2],[-5,3],[-4,2],[-3,2],[-3,1],[-4,0],[-3,1],[-9,0],[-3,0],[-5,0],[-6,-1],[-4,-1],[-4,-1],[-3,-2],[-4,-1],[-3,-2],[-2,-2],[-2,-1],[-2,-2],[-9,-8],[-3,-4],[-1,-1],[-1,-3],[-2,-2],[-17,-40],[-8,-18],[-1,-2],[-1,-3],[0,-2],[0,-3],[-1,-3],[1,-4],[0,-3],[1,-3],[1,-3],[4,-11],[2,-3],[2,-3],[2,-3],[3,-2],[3,-2],[2,-1],[3,-1],[2,-1],[2,0],[2,0],[3,0],[3,1],[1,0],[1,0],[1,0],[2,-1],[4,-3],[1,-2],[1,-2],[1,-3],[0,-2],[0,-3],[0,-3],[-2,-3],[-1,-2],[0,-2],[-2,-3],[-2,-2],[-1,-2],[-2,-1],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-5,0],[-3,0],[-4,0],[-5,0],[-4,0],[-3,1],[-3,0],[-3,1],[-5,2],[-5,4],[-5,3],[-3,4],[-4,6],[-3,5],[-2,6],[-1,3],[-1,4],[0,3],[-5,25],[-7,34],[0,2],[-1,3],[-1,2],[-1,2],[-1,3],[-2,3],[-3,2],[-4,5],[-4,2],[-3,2],[-3,2],[-2,1],[-3,0],[-2,1],[-3,0],[-4,0],[-3,0],[-10,1],[-3,0],[-4,0],[-4,1],[-3,1],[-3,1],[-3,2],[-2,1],[-3,2],[-3,2],[-7,6],[-7,6],[-4,4],[-2,2],[-2,2],[-7,11],[-5,9],[-60,105],[-22,41],[-4,8],[-2,3],[-1,3],[-1,2],[0,2],[0,2],[0,3],[0,2],[1,3],[0,2],[1,2],[1,2],[2,2],[1,3],[2,1],[2,2],[3,1],[3,1],[4,1],[3,0],[5,0],[5,0],[5,0],[7,0],[5,0],[2,0],[4,1],[3,1],[4,1],[1,1],[2,2],[1,2],[1,3],[0,3],[-1,2],[0,2],[-1,2],[-3,4],[-2,2],[-2,1],[-3,2],[-4,1],[-3,1],[-4,0],[-8,1],[-5,1],[-6,0],[-4,0],[-4,1],[-3,1],[-3,2],[-4,2],[-2,1],[-6,5],[-3,3],[-4,4],[-2,3],[-2,3],[-2,3],[-1,3],[-2,5],[-1,4],[-3,8],[-2,8],[-1,4],[0,3],[0,2],[1,2],[1,2],[1,2],[1,3],[4,5],[5,5],[3,2],[2,2],[2,2],[2,1],[2,3],[2,3],[3,3],[3,7],[3,4],[2,5],[2,5],[2,7],[1,5],[0,6],[0,6],[0,6],[0,4],[-1,5],[-1,5],[-1,5],[-1,4],[-2,4],[-2,3],[-2,3],[-1,2],[-3,3],[-2,2],[-1,1],[-2,2],[-3,2],[-3,1],[-4,2],[-7,2],[-4,0],[-32,5],[-3,0],[-2,0],[-3,0],[-3,-1],[-3,-1],[-2,-1],[-4,-2],[-3,-3],[-4,-3],[-3,-4],[-3,-5],[-3,-5],[-1,-3],[-1,-3],[-1,-3],[-2,-6],[-1,-3],[-2,-6],[-1,-3],[-1,-17],[0,-5],[0,-4],[0,-16],[0,-4],[0,-9],[0,-4],[0,-1],[1,-2],[0,-4],[0,-4],[-1,-5],[-1,-3],[-4,-7],[-2,-5],[-3,-2],[-3,-3],[-4,-2],[-4,-1],[-2,0],[-3,-1],[-3,0],[-2,1],[-1,1],[-4,4],[-3,3],[-3,5],[-24,42],[-2,3],[-1,3],[-2,3],[-1,3],[-2,5],[-1,4],[0,4],[0,9],[0,4],[0,7],[1,4],[1,8],[2,9],[2,4],[1,5],[2,10],[0,6],[0,5],[0,4],[0,5],[-1,4],[0,4],[-1,4],[-1,4],[-1,3],[-2,5],[-1,3],[-2,4],[-2,3],[-2,3],[-2,2],[-2,1],[-3,0],[-3,0],[-4,-1],[-2,-1],[-3,-1],[-4,-3],[-31,-22],[-4,-2],[-2,-2],[-1,-3],[-1,-2],[-1,-2],[0,-2],[0,-3],[0,-3],[1,-4],[1,-3],[2,-3],[3,-4],[2,-3],[3,-3],[3,-3],[1,-2],[2,-3],[1,-3],[1,-2],[1,-2],[1,-3],[0,-2],[2,-9],[0,-2],[0,-5],[0,-4],[0,-3],[-1,-4],[0,-3],[-2,-6],[-1,-4],[-1,-2],[-2,-3],[-2,-2],[-2,-1],[-3,-2],[-3,-2],[-2,0],[-5,-1],[-6,-1],[-4,-1],[-62,-4],[-33,-2],[-6,0],[-11,0],[-4,0],[-3,1],[-4,2],[-5,1],[-8,5],[-2,2],[-3,2],[-2,4],[-3,3],[-2,3],[-3,6],[-2,6],[-2,5],[-2,3],[-6,18],[-3,7],[-1,4],[-2,3],[-3,6],[-6,10],[-6,7],[-5,6],[-12,11],[-7,6],[-7,5],[-3,2],[-2,1],[-1,0],[-2,0],[-3,0],[-3,-1],[-2,-1],[-3,-2],[-2,-1],[-3,-1],[-2,0],[-2,0],[-2,1],[-2,2],[-2,2],[-2,3],[-2,4],[-2,4],[-2,3],[-1,4],[-1,3],[-1,11],[0,2],[0,8],[0,5],[1,3],[1,3],[1,4],[2,4],[1,2],[0,3],[4,10],[0,4],[0,3],[0,4],[0,2],[-1,2],[-2,4],[-2,3],[-1,3],[-2,2],[-3,2],[-3,3],[-4,3],[-3,1],[-5,3],[-3,1],[-3,2],[-6,1],[-7,2],[-7,1],[-14,0],[-7,1],[-6,-1],[-4,-1],[-4,-1],[-6,0],[-6,0],[-2,0],[-3,0],[-2,1],[-4,1],[-2,2],[-3,1],[-4,3],[-8,6],[-4,3],[-6,6],[-3,3],[-3,5],[-6,10],[-2,2],[-3,4],[-7,10],[-3,4],[-4,4],[-7,7],[-3,3],[-7,6],[-10,8],[-4,3],[-8,6],[-7,5],[-5,3],[-4,2],[-3,2],[-22,9],[-6,2],[-10,4],[-10,3],[-30,13],[-2,2],[-1,1],[-4,3],[-13,16],[-4,8],[0,2],[-1,1],[0,2],[0,1],[0,3],[0,2],[0,3],[1,3],[1,5],[1,3],[2,7],[2,5],[3,4],[8,12],[4,6],[4,3],[2,2],[3,2],[3,3],[2,2],[1,1],[1,2],[3,3],[1,2],[1,2],[0,3],[1,2],[2,7],[0,3],[0,3],[0,6],[0,4],[0,3],[0,3],[-1,4],[0,5],[-2,10],[0,4],[-2,7],[-1,7],[-2,4],[-1,3],[-1,3],[-1,4],[-2,5],[-4,8],[-6,13],[-5,11],[-3,3],[-2,2],[-2,2],[-3,2],[-2,1],[-1,1],[-2,1],[-2,0],[-2,1],[-2,0],[-2,0],[-3,0],[-7,-1],[-6,-1],[-4,-2],[-4,-1],[-3,-2],[-3,-2],[-5,-5],[-4,-3],[-2,-2],[-3,-3],[-2,-2],[-2,-3],[-41,24],[-4,8],[-1,1],[-1,1],[0,1],[-7,5],[-3,2],[-2,1],[-3,1],[-3,0],[-3,0],[-5,0],[-4,-2],[-4,-1],[-4,-3],[-4,-3],[-4,-3],[-3,-4],[-3,-4],[-3,-3],[-5,-5],[-3,-2],[-7,-6],[-4,-3],[-4,-2],[-4,-2],[-5,-2],[-5,-3],[-5,-2],[-7,-3],[-5,-1],[-3,-1],[-4,-1],[-5,-1],[-5,0],[-4,0],[-4,0],[-5,1],[-4,0],[-6,0],[-5,0],[-5,0],[-5,0],[-4,-1],[-4,0],[-3,-2],[-3,-1],[-2,-2],[-3,-3],[-2,-2],[-1,-2],[-4,-6],[-1,-2],[-1,-5],[-1,-3],[0,-3],[0,-3],[0,-4],[0,-5],[0,-3],[1,-3],[1,-3],[1,-3],[2,-3],[3,-4],[3,-4],[3,-2],[8,-12],[2,-3],[2,-4],[2,-3],[4,-7],[1,-3],[1,-4],[2,-5],[0,-2],[1,-4],[1,-6],[6,-33],[0,-3],[-1,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-3,-4],[-3,-1],[-2,-2],[-4,-2],[-3,-1],[-3,0],[-4,0],[-3,1],[-8,2],[-3,1],[-2,2],[-1,3],[0,1],[0,3],[0,3],[1,2],[1,2],[1,2],[2,2],[2,2],[2,2],[2,3],[1,2],[2,4],[1,4],[1,4],[0,5],[1,3],[-1,5],[0,5],[0,4],[-1,3],[-1,4],[-1,3],[-2,6],[-6,12],[-3,5],[-1,2],[-2,3],[-3,2],[-2,1],[-2,2],[-5,2],[-6,2],[-4,1],[-6,1],[-4,1],[-3,0],[-5,0],[-5,0],[-5,0],[-5,-1],[-5,-2],[-11,-4],[-9,-3],[-8,-4],[-7,-4],[-6,-4],[-5,-2],[-5,-3],[-6,-3],[-16,-8],[-4,-1],[-3,-2],[-3,0],[-13,-3],[-2,-1],[-2,0],[-3,1],[-2,0],[-6,2],[-2,0],[-1,1],[-2,1],[-1,2],[-1,2],[-1,2],[-1,3],[0,2],[-1,2],[1,4],[0,4],[1,5],[2,6],[2,6],[2,4],[2,4],[19,39],[3,5],[4,7],[2,2],[1,9],[1,21],[-20,12],[-20,12],[-4,3],[-18,11],[-4,1],[-3,1],[-3,1],[-8,1],[-3,0],[-4,0],[-4,-1],[-4,-1],[-5,-2],[-4,-2],[-5,-3],[-16,-12],[-4,-4],[-3,-4],[-5,-5],[-2,-3],[-1,-5],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[-2,-4],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-2,1],[-3,1],[-2,1],[-3,1],[-2,2],[-4,4],[-4,6],[-4,6],[-3,5],[-3,4],[-2,6],[-2,6],[-1,4],[0,4],[0,5],[0,4],[1,4],[1,3],[2,6],[3,4],[2,4],[3,2],[2,2],[2,1],[2,2],[5,3],[6,4],[5,4],[4,7],[2,3],[1,2],[1,2],[0,3],[1,3],[0,3],[1,3],[-1,4],[0,3],[0,3],[-1,4],[-1,2],[-1,1],[-2,2],[-2,0],[-2,1],[-4,0],[-2,-1],[-3,-1],[-4,-3],[-3,-2],[-4,-5],[-3,-4],[-3,-4],[-2,-3],[-1,-3],[-1,-4],[-2,-5],[-1,-5],[-1,-3],[-4,-11],[-1,-3],[-2,-2],[-2,-5],[-1,-2],[-1,-3],[-2,-2],[-2,-2],[-2,-2],[-5,-5],[-2,-2],[-3,-2],[-7,-4],[-14,-8],[-3,-1],[-2,-1],[-2,0],[-2,0],[-2,1],[-2,1],[-2,1],[-2,3],[-2,2],[-2,2],[-3,5],[-2,4],[-1,3],[-2,5],[-2,9],[-5,19],[-7,24],[-3,9],[-28,76],[-3,6],[-1,2],[-1,2],[-1,1],[-2,2],[-4,3],[-5,2],[-3,3],[-66,27],[-3,0],[-3,1],[-2,1],[-3,0],[-2,0],[-3,-1],[-5,-3],[-3,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-3],[0,-2],[0,-3],[0,-3],[0,-2],[1,-2],[2,-2],[1,-2],[2,-3],[3,-3],[3,-2],[4,-2],[18,-12],[4,-2],[4,-1],[3,-1],[3,-1],[3,1],[3,0],[5,2],[12,3],[5,0],[4,1],[3,-1],[3,-2],[3,-1],[2,-2],[2,-2],[2,-3],[2,-4],[1,-3],[1,-4],[1,-5],[1,-3],[0,-4],[0,-4],[-1,-4],[0,-5],[-1,-4],[-1,-3],[-4,-10],[-1,-2],[-1,-2],[-2,-1],[-2,-2],[-2,-2],[-4,-3],[-2,-1],[-3,-2],[-3,-1],[-4,-1],[-4,-1],[-3,-1],[-6,-1],[-6,-1],[-7,-2],[-5,-1],[-5,-2],[-4,-2],[-4,-2],[-4,-3],[-4,-4],[-3,-3],[-1,-3],[-4,-7],[-2,-4],[-2,-5],[-1,-4],[0,-3],[-3,-14],[-1,-4],[-1,-4],[-2,-4],[-3,-5],[-2,-4],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-3,0],[-5,0],[-2,0],[-2,1],[-2,1],[-1,1],[-2,1],[-2,2],[-1,2],[-4,5],[-2,4],[-2,5],[-2,6],[0,5],[-1,6],[0,5],[2,20],[0,5],[2,10],[1,8],[1,10],[0,6],[0,4],[0,5],[-1,4],[-8,36],[0,2],[-1,3],[-1,2],[-2,2],[-1,2],[-2,1],[-3,1],[-2,1],[-2,1],[-2,0],[-3,0],[-2,0],[-3,0],[-3,-1],[-4,-2],[-7,-4],[-9,-6],[-5,-4],[-6,-4],[-3,-2],[-2,-3],[-3,-3],[-2,-3],[-2,-4],[-2,-4],[-1,-4],[0,-3],[-1,-3],[-3,-10],[-4,-8],[-5,-7],[-2,-2],[-3,-1],[-2,0],[-2,0],[-2,0],[-3,1],[-2,2],[-2,1],[-2,2],[-2,3],[-3,3],[-2,3],[-26,57],[-10,21],[-2,4],[0,3],[-1,3],[1,3],[0,3],[1,4],[3,5],[2,3],[3,2],[2,2],[3,2],[3,1],[9,7],[1,1],[2,2],[4,4],[4,5],[1,2],[2,3],[1,3],[3,9],[1,3],[-1,3],[0,5],[-2,9],[-1,3],[-1,2],[-2,2],[-2,3],[-2,3],[-4,5],[-10,10],[-3,2],[-2,2],[-4,3],[-3,2],[-8,3],[-5,2],[-6,0]],[[70020,5379],[17,6],[21,-2],[22,4],[-3,-16],[18,-5],[-33,-18],[-42,31]],[[71503,5456],[-12,-27],[-17,18],[-5,23],[5,17],[-5,28],[18,7],[16,-18],[5,-23],[-5,-25]],[[70441,5557],[-4,-27],[-31,7],[-9,27],[29,35],[9,-24],[6,-18]],[[71678,5387],[-103,0]],[[71575,5387],[-4,32],[5,28],[-12,25],[-2,24],[6,31],[15,30],[4,32],[17,6],[8,22],[22,12],[21,2],[15,-37],[7,-32],[7,-33],[15,-58],[11,-51],[2,-33],[-11,15],[-7,21],[-16,-36]],[[70175,5666],[27,-14],[24,-5],[26,10],[-26,28],[-10,21],[25,2],[0,29],[21,-1],[23,-18],[-7,-30],[-4,-28],[-9,-27],[-26,-6],[-28,-3],[-17,-2],[-20,-7],[-18,4],[17,24],[2,23]],[[71616,5775],[17,-65],[-7,-44],[-20,-2],[-9,-16],[-26,-14],[-27,40],[-1,35],[9,25],[0,27],[23,6],[22,-3],[19,11]],[[70245,5773],[-7,-13],[-24,1],[-14,-25],[2,-19],[-13,10],[-3,27],[-14,21],[32,10],[26,0],[15,-12]],[[70342,5781],[-5,-34],[-26,15],[-11,7],[12,23],[16,20],[0,14],[-9,12],[-1,18],[16,-5],[10,-26],[-2,-44]],[[70075,5861],[15,-18],[14,11],[19,-21],[15,-11],[-9,-16],[-18,-9],[-36,25],[-35,14],[24,10],[11,15]],[[70355,5901],[-1,-15],[-26,7],[3,10],[7,19],[12,22],[12,-3],[-5,-22],[-2,-18]],[[70237,5944],[-3,-20],[-12,-5],[-9,-10],[-31,-6],[-16,-26],[-44,8],[28,12],[-18,18],[15,10],[7,15],[27,-9],[23,12],[10,6],[9,9],[14,-14]],[[71526,5998],[16,-16],[15,20],[13,-27],[7,-32],[8,-20],[3,-31],[-15,1],[-10,-36],[3,-35],[7,-23],[-20,2],[-21,7],[3,26],[-8,21],[-22,12],[-6,25],[-4,18],[1,26],[4,25],[5,33],[9,11],[12,-7]],[[71478,6283],[16,-25],[5,-44],[13,-27],[32,-125],[-17,12],[-17,-29],[-19,6],[-17,0],[6,-22],[-35,6],[-16,23],[23,3],[0,34],[-18,40],[-10,-10],[-23,7],[19,11],[13,23],[19,12],[16,12],[12,26],[-21,-9],[-31,-1],[-19,15],[19,17],[7,24],[23,11],[20,10]],[[71411,6347],[-10,-24],[-8,-30],[-30,0],[-7,30],[4,27],[31,14],[20,-17]],[[70179,6358],[18,11],[20,13],[23,5],[10,-30],[-9,-35],[0,-36],[-25,7],[-21,7],[-16,8],[6,19],[13,15],[-19,16]],[[70580,6762],[-20,-29],[-19,6],[-8,27],[27,4],[20,-8]],[[70800,6748],[-15,-9],[-18,26],[17,13],[26,2],[5,-22],[-15,-10]],[[70898,6781],[-12,-23],[-24,5],[-22,-5],[-8,21],[25,6],[27,3],[14,-7]],[[71038,7157],[3,-21],[3,-26],[4,-26],[6,-23],[18,-23],[21,-20],[-1,-28],[12,-30],[-6,-46],[-24,1],[-14,23],[-6,18],[-7,20],[-10,22],[-9,23],[-2,20],[-10,26],[-2,27],[-14,19],[0,22],[6,22]],[[71478,6283],[-10,22],[-26,4],[-31,38]],[[71411,6347],[-6,45],[-30,10],[-17,-6],[-21,16],[-10,20],[-14,26],[5,22],[16,20],[-9,14],[-16,5],[-22,14],[-10,29],[-16,-18],[-4,-22],[-16,-14],[2,-23],[12,-33],[-13,-8],[-15,7],[-18,9],[-15,17],[-6,24],[-9,31],[-21,36],[-24,34],[-11,18],[-15,26],[-6,21],[-10,24],[-20,29],[-15,28],[-30,9],[-19,-4],[-25,1],[-30,11],[-15,-11],[-27,7],[-13,20]],[[70898,6781],[16,10],[23,-5],[39,8],[22,1],[26,1],[26,2],[20,0],[31,3],[44,1],[34,7],[-24,9],[-28,-1],[-20,7],[-21,0],[-17,3],[-2,30],[33,0],[19,28],[16,-4],[28,-1],[-9,26],[-6,23],[22,15],[-19,30],[-23,28],[19,16],[-32,24],[2,17],[-7,15],[-11,14],[-6,19],[-7,13],[-4,13],[-4,24]],[[71227,7158],[5,-16],[14,-44],[8,-27],[5,-18],[7,-23],[12,-43],[12,-36],[10,-34],[9,-28],[10,-32],[4,-23],[-27,-10],[-36,-9],[25,-8],[34,-2],[17,-3],[30,2],[0,-50],[2,-24],[8,-45],[10,-33],[13,-48],[6,-25],[-1,-25],[13,-15],[12,-40],[12,-43],[4,-37],[24,-69],[8,-30],[7,-25],[-6,-12]],[[70179,6358],[-10,-19],[-19,-8],[-7,-16],[15,-4],[6,-24],[-29,8],[-35,-15],[-32,0],[-8,-23],[28,-13],[16,5],[21,9],[26,-10],[13,-9],[-5,-20],[-11,-19],[4,-13],[-14,-33],[-20,-20],[-26,-3],[-13,5],[-18,3],[-10,-13],[-6,-26],[1,-35],[-26,-12],[-32,17],[-19,0],[-11,4],[-11,13],[-18,9],[-20,0],[-25,4],[-9,34],[12,23],[-21,15],[-16,-4],[-16,-25],[-13,-19],[-8,28],[-31,28],[-14,12],[-38,11],[-2,-22],[17,-3],[15,-5],[12,-15],[20,-26],[6,-30],[20,-8],[18,3],[15,3],[20,-22],[34,-18],[25,3],[14,-17],[34,0],[30,-14],[18,-5],[20,9],[15,25],[3,30],[5,17],[17,-4],[18,-5],[26,-22],[11,10],[25,-1],[-1,-25],[-20,-26],[-5,-38],[-15,-8],[-3,-21],[-21,-15],[-1,-22],[-29,-18],[-21,-5],[-23,4],[6,-36],[-32,-1],[-18,15],[-15,16],[-21,-18],[-15,-29],[-6,-21],[-7,-25],[-20,-8],[-18,-25],[-17,9],[1,25],[17,28],[12,31],[15,18],[8,21],[-3,21],[-24,22],[-27,-21],[-19,-34],[-16,-33],[-15,-27],[-19,-27],[10,-19],[22,-29],[13,-5],[-11,-22],[20,3],[9,17],[17,-15],[32,23],[16,0],[12,9],[2,-21],[-14,-13],[14,-18],[0,-22],[20,-6],[21,0],[15,29],[21,0],[2,28],[-11,37],[23,-22],[14,2],[19,18],[17,-18],[8,-20],[23,-19],[25,-9],[32,15],[13,-35],[-3,-35]],[[70175,5666],[-12,7],[-20,9],[-20,7],[-23,-5],[-13,-19],[1,-37],[12,-16],[19,2],[15,2],[5,-31],[-5,-25],[5,-22],[14,-3],[20,-2],[33,-17],[2,33],[26,16],[23,-10],[-1,-23],[-10,-15],[-13,-20],[-11,-12],[-15,5],[-45,3],[-20,-1],[-26,-5],[-24,12],[-24,-12],[-21,-10],[-16,-15],[-15,-5],[-15,-13],[26,-14],[-23,-12],[10,-17],[6,-22]],[[70020,5379],[-18,-12],[-8,-30],[26,-28],[21,-4],[19,12],[21,10],[17,-5],[19,-7],[1,23],[-10,16],[14,13],[15,2],[19,3],[20,17],[8,26],[-7,24],[12,4],[29,-15],[0,-22],[35,-6],[19,3],[19,11],[13,-36],[8,-17],[39,4],[23,6],[25,19],[19,24],[-4,22],[21,-1],[3,-28],[-4,-11],[12,-19]],[[70446,5377],[-16,-15],[-11,-18],[-7,-17],[0,-17],[0,-13],[-9,-18],[-10,-18],[-8,-29],[-9,-39],[-8,-40],[-7,-10],[-26,-30],[-9,-12],[-16,-20],[-27,-39],[-19,-28],[-6,-9],[-23,-10],[-27,-30],[-9,-11],[-1,-1],[-8,-3],[-5,0],[-6,0],[-8,0],[-15,0],[-10,-5],[-2,-3],[-5,-7],[-7,-16],[-2,-9],[-1,-20],[1,-12],[0,-11],[-2,-10],[-2,-11],[-3,-13],[-13,-43],[-6,-22],[-1,-19],[-2,-21],[-4,-16],[-3,-9],[-3,-12],[-5,-9],[-1,-2],[-16,-18],[-2,-3],[-11,-14],[-2,-4],[-6,-9],[-2,-3],[-2,-4],[-3,-5],[-3,-7],[-1,-9],[-2,-12],[-2,-3],[-4,-6],[-12,-8],[-12,-4],[-18,-1],[-10,1],[-15,5],[-9,4],[-7,12],[-1,14],[-6,16],[-7,10],[-7,7],[-5,1],[-9,1],[-2,1],[-9,-1],[-6,-1],[-6,0],[-5,-1],[-9,6],[-6,15],[2,18],[5,8],[4,14],[3,11],[1,10],[-4,10],[-6,7],[-15,6],[-10,-1],[-12,-1],[-13,-1],[-10,-4],[-9,-8],[0,-10],[11,-13],[16,-11],[6,-6],[5,-10],[6,-13],[7,-19],[0,-12],[-4,-5],[-4,-5],[-8,-5],[-10,6],[-1,1],[-6,7],[-3,3],[-5,6],[-6,7],[-14,13],[-10,7],[-10,5],[-4,3],[-3,1],[-22,7],[-21,3],[-18,0],[-6,0],[-5,0],[-17,-2],[-9,-1],[-22,-7],[-21,-10],[-9,-7],[-23,-14],[-9,0],[-20,14],[-10,5],[-11,-11],[5,-13],[13,-15],[1,-1],[7,-10],[4,-10],[0,-10],[5,-22],[6,-12],[13,-10],[8,-10],[1,-25],[-15,-27],[-12,-15],[-10,-10],[-10,-6],[-15,-1],[-25,4],[-14,8],[-5,14],[5,10],[7,3],[13,0],[15,-1],[12,4],[9,10],[4,11],[-3,15],[-8,11],[-19,20],[-24,19],[-13,7],[-5,-1],[-8,0],[-9,-1],[-21,-7],[-5,-1],[-4,-4],[-11,-12],[-6,-6],[-13,-29],[-7,-20],[-2,-11],[-1,-5],[1,-8],[2,-22],[0,-21],[0,-19],[2,-15],[3,-12],[1,-16],[0,-16],[0,-1],[-6,-18],[-2,-5],[-4,-8],[-1,-1],[-8,1],[-52,10],[-42,7],[-17,3],[-31,6],[-20,3],[-91,16],[-67,12],[-39,7],[-62,11],[-61,10],[-49,9],[-42,8],[-9,1],[-105,19],[-9,1],[-39,8],[-217,38],[-63,11],[-21,4],[-80,14],[-56,10],[-37,8],[-1,0],[-15,3],[-26,4],[-32,6],[-39,6],[-36,8],[-33,6],[-9,1],[-17,3],[-35,6],[-56,10],[-31,6],[-37,6],[-20,3],[-9,2],[-32,6],[-44,7],[-15,3],[-44,9],[-18,2],[-64,13],[-61,10],[-9,2],[-24,4],[-23,5],[-5,1],[-45,7],[-1,1],[-7,1],[-13,2],[-2,1],[-19,3],[-11,2],[-11,2],[-19,4],[-145,27],[-9,2],[-18,2],[-40,8],[-52,9],[-95,18],[-11,2],[-57,10],[-37,7]],[[70037,7154],[21,-11],[26,-16],[7,-18],[8,-24],[-10,-16],[24,-7],[1,-26],[-18,5],[-12,-23],[-12,-26],[1,-22],[15,0],[17,7],[11,22],[19,-31],[-23,-12],[9,-23],[-7,-28],[-19,4],[-27,-3],[-18,-24],[6,-17],[15,6],[20,13],[22,-5],[19,-5],[22,7],[6,-39],[5,-24],[6,-24],[6,-38],[22,-24],[34,6],[16,-28],[-16,-25],[4,-30],[-4,-36],[-8,-22],[-4,-28],[-5,-28],[6,-39],[10,-69],[-20,-19],[-18,5],[-29,-17],[3,-28],[11,-16]],[[71699,1287],[-38,-6],[-31,1],[2,10],[23,18],[25,17],[20,-1],[17,-24],[-18,-15]],[[71728,1366],[-11,-4],[-9,13],[7,17],[14,47],[15,13],[12,-11],[4,-24],[-27,-43],[-5,-8]],[[71755,1511],[-10,-12],[-20,3],[-21,4],[-13,-11],[0,18],[15,12],[23,6],[6,8],[7,13],[16,-12],[-3,-29]],[[71789,1636],[-15,-37],[-39,13],[11,34],[30,12],[13,-22]],[[71700,1667],[-1,-36],[-41,0],[-7,20],[5,26],[44,-10]],[[72155,1803],[-26,-7],[3,25],[10,44],[1,64],[20,27],[-3,16],[23,14],[10,-14],[4,-26],[5,-25],[-6,-21],[-7,-19],[-13,-23],[-11,-26],[-10,-29]],[[72086,1974],[-15,-18],[-16,6],[-4,20],[-12,13],[-9,30],[12,14],[13,11],[22,16],[16,10],[18,5],[-8,-39],[28,-13],[-10,-24],[-22,-20],[-13,-11]],[[72211,2094],[-27,4],[-24,-23],[-28,12],[29,35],[31,4],[19,-32]],[[72211,2094],[22,18],[29,17],[0,-19],[-4,-18],[-2,-27],[-1,-23],[-7,-27],[-32,2],[-14,19],[8,22],[-15,19],[16,17]],[[71827,2123],[24,23],[26,23],[25,27],[9,-13],[19,3],[34,6],[-37,-28],[-17,-16],[2,-44],[1,-65],[1,-29],[-1,-18],[-17,-11],[-32,0],[-19,24],[-17,51],[-1,35],[0,32]],[[71134,3903],[-35,-23],[-30,-9],[-23,3],[-16,-28],[-13,-7],[-23,11],[19,7],[13,29],[13,16],[32,-3],[24,13],[16,17],[20,8],[14,9],[27,6],[-13,-26],[-25,-23]],[[71981,4102],[19,-43],[4,-26],[5,-37],[11,-73],[7,-39],[4,-45],[8,-51],[4,-39],[2,-20],[5,-44],[15,-96],[4,-26],[2,-35],[12,-76],[9,-55],[2,-24],[7,-50],[1,-44],[3,-39],[4,-32],[7,-65],[3,-37],[6,-40],[3,-38],[2,-26],[1,-19],[2,-39],[3,-41],[4,-49],[3,-31],[7,-61],[5,-43],[0,-22],[1,-21],[7,-58],[3,-25],[3,-28],[1,-25],[5,-47],[4,-41],[4,-25],[4,-38],[3,-29],[5,-27],[8,-27],[3,-22],[9,-32],[11,-39],[8,-26],[5,-20],[-17,5],[-19,8],[-15,-18],[-14,20],[-12,20],[-8,14],[6,24],[-19,12],[-13,9],[20,19],[9,13],[2,20],[0,24],[-2,16],[0,40],[-11,29],[-15,24],[1,21],[-3,22],[-9,25],[-9,28],[-5,30],[-7,27],[5,24],[6,19],[-2,18],[-4,23],[-14,23],[10,33],[-24,25],[-3,29],[-1,24],[-15,82],[-2,23],[-4,55],[3,74],[16,13],[34,1],[-4,19],[-4,43],[-3,41],[-2,29],[-15,10],[1,20],[6,38],[-21,-6],[-11,21],[7,22],[-15,20],[6,31],[-4,31],[-8,46],[-7,24],[7,26],[0,33],[-5,19],[-9,9],[-19,24],[17,30],[5,38],[-27,3],[-7,27],[17,13],[17,-6],[-4,22],[6,17],[-15,10],[-18,-4],[-11,30],[-7,38],[0,22],[-6,27],[-15,-20],[-9,14],[10,25],[13,21],[4,36],[12,29],[-26,-12],[5,21],[11,14],[-18,6],[-16,24],[4,30],[4,29],[5,22],[26,31]],[[71117,4236],[-19,-16],[9,41],[15,31],[-16,33],[27,-15],[8,-13],[-4,-23],[-6,-22],[-14,-16]],[[71981,4102],[-12,30],[-19,-6],[-18,4],[-14,28],[-7,34],[-12,29],[7,21],[-5,19],[6,28],[-12,31],[30,18],[5,20],[-6,27],[-7,21],[4,22]],[[71921,4428],[19,-37],[14,-82],[8,-51],[9,-53],[5,-21],[6,-42],[-1,-40]],[[71921,4428],[-19,17],[-14,14],[-18,21],[14,14],[16,23],[14,-13],[10,-47],[-3,-29]],[[70911,4579],[-31,-16],[15,23],[17,20],[22,21],[2,-31],[-25,-17]],[[71724,5335],[29,-98],[10,-73],[23,-72],[7,-44],[14,-53],[8,-32],[8,-39],[7,-31],[5,-27],[19,-98],[11,-47],[11,-53],[6,-20],[8,-37],[3,-21],[8,-30],[-5,-21],[-20,-3],[6,41],[-10,28],[-11,-35],[-18,-7],[-15,19],[-5,20],[11,16],[14,24],[-23,-6],[-15,31],[25,35],[7,23],[3,19],[-11,27],[-1,28],[-16,10],[-11,29],[-21,1],[13,23],[21,4],[-4,16],[-18,19],[10,24],[-10,22],[-13,5],[-7,15],[-11,16],[19,4],[-20,17],[-16,8],[9,25],[2,25],[-9,20],[-10,42],[-14,-26],[-22,27],[-5,33],[-19,19],[7,22],[18,-10],[21,37],[-1,27],[-19,0],[-16,-24],[-8,23],[-18,-9],[-3,22],[12,24],[10,15],[21,14],[19,17]],[[71827,2123],[-17,-19],[-20,14],[-2,-34],[12,-27],[25,-59],[6,-27],[-7,-25],[-18,-31],[-6,-1],[-293,-189],[-26,-14],[-74,-52],[-34,-19],[-21,-13],[2,-5],[-168,-113],[-210,-140],[-47,-53],[20,3],[19,15],[20,12],[175,110],[114,74],[59,53],[31,21],[18,19],[36,15],[30,18],[15,19],[27,23],[13,-7],[36,21],[90,55],[57,39],[48,29],[65,41],[106,78],[35,22],[32,14],[17,6],[6,-9],[11,-12],[-43,-45],[-35,-26],[-4,-3],[-106,-76],[-78,-55],[-52,-26],[-1,-25],[-39,1],[-32,-16],[-8,-14],[-19,-29],[-35,-1],[-55,6],[-3,-21],[-13,-16],[-5,-19],[9,-22],[-17,-19],[-4,-30],[11,-21],[17,23],[22,14],[16,17],[42,15],[-17,-31],[-11,-18],[10,-28],[18,-2],[12,23],[8,22],[21,6],[16,3],[17,8],[6,-29],[-5,-30],[-29,-26],[-34,-20],[0,-25],[-21,-29],[-38,-37],[16,-62],[-36,20],[-10,-44],[-5,-50],[23,-24],[36,-2],[43,16],[26,26],[28,-11],[52,9],[19,-7],[46,17],[39,43],[4,75],[19,72],[30,15],[21,12],[31,-13],[25,2],[27,12],[26,4],[49,33],[26,10],[29,7],[21,26],[16,21],[21,16],[33,-1],[24,-27],[11,-35],[27,-9],[-2,25],[-3,21],[-5,16],[-9,26],[-13,31],[33,17],[-1,25],[-22,31],[8,26],[-14,17],[-7,33],[-3,19],[12,30],[-31,-8],[21,34],[6,24],[0,39],[1,29],[19,20],[17,-28],[-1,-59],[3,-57],[3,-34],[0,-25],[4,-83],[2,-29],[3,-38],[2,-23],[6,-39],[2,-48],[5,-31],[4,-37],[7,-38],[4,-23],[6,-31],[6,-54],[1,-27],[-5,-19],[-5,-12],[2,-17],[2,-51],[-2,-30],[4,-21],[-5,-7],[-5,-9],[-3,-10],[-4,-9],[-5,-5],[-9,-8],[-5,-3],[-17,-10],[-9,-5],[-16,-9],[-7,-2],[-6,-1],[-6,1],[-4,1],[-3,3],[-3,5],[-1,4],[-1,5],[1,9],[3,9],[5,17],[5,21],[4,25],[1,10],[-1,7],[-1,4],[-5,3],[-5,1],[-4,0],[-4,-3],[-4,-3],[-4,-3],[-6,-3],[-6,-2],[-5,-1],[-10,-2],[-7,-1],[-5,1],[-15,5],[-10,4],[-8,7],[-4,4],[-4,5],[-2,6],[-4,9],[-4,4],[-4,4],[-6,4],[-5,1],[-5,-1],[-5,-4],[-2,-5],[-1,-5],[-1,-6],[0,-6],[-1,-5],[-3,-5],[-4,-4],[-5,-4],[-10,-3],[-9,-2],[-10,-3],[-22,-8],[-6,-5],[-4,-3],[-2,-6],[1,-7],[0,-4],[1,-5],[1,-9],[-1,-5],[-3,-4],[-2,-2],[-3,-1],[-3,-1],[-4,0],[-4,0],[-3,1],[-19,7],[-5,3],[-4,3],[-4,4],[-5,5],[-4,4],[-4,5],[-4,3],[-5,3],[-7,2],[-7,1],[-5,1],[-4,0],[-7,-1],[-6,-1],[-5,-1],[-6,-3],[-5,-1],[-6,3],[-4,1],[-2,2],[-3,3],[-1,3],[-1,7],[-2,9],[0,10],[0,6],[0,6],[-3,5],[-3,2],[-7,2],[-6,0],[-5,-2],[-3,-3],[-8,-8],[-6,-7],[-7,-7],[-8,-6],[-6,-5],[-11,-8],[-5,-2],[-32,-16],[-5,0],[-6,2],[-3,3],[-3,3],[-5,5],[-6,4],[-5,3],[-9,1],[-3,0],[-5,-1],[-5,-2],[-69,-26],[-7,-3],[-5,-2],[-5,-2],[-3,-2],[-14,-8],[-5,-4],[-3,-3],[-5,-4],[-6,-8],[-3,-4],[-2,-4],[-1,-7],[1,-4],[0,-4],[-1,-3],[-1,-4],[-2,-2],[-2,-2],[-4,-3],[-4,-2],[-6,-1],[-35,0],[-6,1],[-5,1],[-5,1],[-2,1],[-4,2],[-4,2],[-5,3],[-3,3],[-4,2],[-5,3],[-9,3],[-5,2],[-4,1],[-9,2],[-12,2],[-7,1],[-45,3],[-40,1],[-5,1],[-4,1],[-4,1],[-5,2],[-4,3],[-5,4],[-4,5],[-3,4],[-4,5],[-3,4],[-2,4],[-5,12],[-4,15],[-4,5],[-3,4],[-4,2],[-4,0],[-4,0],[-4,-2],[-3,-2],[-4,-3],[-31,-31],[-1,-3],[0,-3],[1,-4],[1,-3],[1,-3],[3,-5],[20,-24],[10,-9],[6,-5],[6,-3],[5,-2],[14,-4],[1,-3],[4,-10],[8,-25],[4,-9],[9,-28],[2,-5],[4,-11],[2,-9],[1,-7],[0,-6],[0,-2],[-1,-3],[-2,-3],[-3,-2],[-4,-1],[-5,0],[-8,1],[-9,2],[-5,1],[-13,3],[-94,11],[-43,6],[-5,0],[-4,0],[-3,-1],[-4,-1],[-3,-2],[-3,-2],[-1,-3],[-2,-3],[-2,-6],[-1,-4],[0,-5],[-1,-7],[1,-4],[0,-4],[1,-4],[3,-20],[0,-4],[0,-4],[-1,-4],[-1,-3],[-2,-4],[-3,-3],[-3,-4],[-4,-4],[-4,-2],[-4,-3],[-9,-3],[-5,-1],[-5,-1],[-4,2],[-6,3],[-4,5],[-1,3],[-1,4],[0,3],[-1,4],[-1,4],[-1,3],[-2,3],[-3,3],[-1,2],[-2,2],[-5,4],[-7,4],[-6,2],[-5,1],[-4,0],[-6,-1],[-5,-3],[-5,-3],[-4,-3],[-4,-3],[-3,-4],[-4,-3],[-5,-7],[-12,-14],[-5,-8],[-3,-4],[-3,-4],[-2,-5],[-2,-4],[-2,-5],[-1,-5],[0,-11],[0,-4],[2,-10],[0,-5],[1,-6],[1,-4],[1,-5],[0,-2],[-1,-3],[-1,-3],[-4,-2],[-3,-1],[-3,-1],[-3,0],[-26,1],[-3,0],[-2,1],[-2,2],[-3,4],[-2,4],[-2,7],[0,6],[0,5],[0,6],[0,7],[-3,19],[-2,10],[-2,6],[-2,2],[-2,1],[-3,-1],[-2,-3],[-2,-4],[-1,-4],[0,-5],[0,-5],[1,-7],[1,-5],[0,-11],[-1,-5],[-2,-6],[0,-2],[-2,-2],[-2,-1],[-3,-1],[-3,0],[-3,0],[-4,2],[-5,1],[-3,2],[-2,2],[-1,3],[-1,2],[-1,3],[0,5],[0,3],[1,3],[1,4],[7,27],[3,14],[3,12],[0,3],[0,3],[-1,3],[-3,2],[-2,1],[-3,1],[-54,-4],[-38,-26],[-2,-5],[-1,-3],[-1,-5],[-3,-6],[-2,-4],[-3,-5],[-3,-4],[-2,-4],[-2,-3],[-4,-6],[-5,-7],[-5,-7],[-3,-3],[-9,-8],[-5,-4],[-31,-22],[-8,-5],[-3,-1],[-3,-1],[-3,0],[-3,1],[-5,1],[-3,1],[-4,1],[-3,0],[-5,0],[-19,-4],[-2,-1],[-2,-1],[-3,-1],[-8,-12],[-15,-22],[-22,-30],[-1,-4],[-2,-3],[0,-3],[0,-3],[0,-3],[2,-3],[2,-3],[3,-3],[3,-2],[4,-3],[13,-6],[11,-4],[11,-5],[4,-1],[2,-1],[7,-2],[3,-2],[3,-2],[2,-2],[1,-2],[0,-4],[0,-11],[0,-7],[-2,-6],[-1,-4],[-2,-8],[-3,-12],[-3,-17],[-1,-4],[0,-4],[0,-4],[1,-9],[1,-9],[1,-3],[2,-3],[2,-4],[1,-2],[2,-1],[3,-3],[4,-2],[5,-2],[4,-1],[4,0],[4,0],[4,1],[8,1],[9,1],[6,0],[5,0],[4,-2],[5,-3],[3,-3],[2,-2],[2,-2],[1,-2],[1,-2],[0,-2],[0,-2],[0,-2],[-2,-3],[-1,-2],[-3,-3],[-3,-2],[-4,-3],[-4,-1],[-4,-1],[-5,-1],[-4,-1],[-3,0],[-5,1],[-9,0],[-8,0],[-5,-1],[-4,-1],[-5,-1],[-11,-4],[-3,-3],[-6,-3],[-10,-7],[-11,-6],[-3,-3],[-6,-5],[-3,-3],[-4,-3],[-3,-3],[-2,-3],[-2,-2],[-1,-3],[-1,-3],[-1,-7],[0,-2],[0,-2],[0,-2],[2,-2],[1,-1],[2,-1],[2,0],[4,-1],[62,-4],[7,-1],[3,1],[3,1],[3,0],[2,2],[2,1],[2,2],[2,4],[1,5],[1,2],[4,3],[4,1],[4,0],[3,-2],[2,-4],[2,-4],[2,-5],[0,-4],[0,-6],[-3,-34],[-2,-19],[-4,-19],[-4,1],[-2,0],[-4,-2],[-4,-1],[-4,-5],[-3,-4],[-12,-19],[-1,-1],[-13,-21],[-2,-2],[-1,-2],[-6,-16],[-2,-3],[-1,-4],[-1,-5],[-4,-11],[-1,-2],[-1,-3],[-2,-2],[-2,-4],[-4,-3],[-3,-3],[-5,-2],[-3,-1],[-4,-1],[-2,-1],[-2,0],[-4,0],[-3,0],[-8,-1],[-4,0],[-3,-2],[-3,-1],[-3,-2],[-2,-3],[-1,-3],[-2,-3],[-3,-7],[0,-1],[0,-1],[1,-2],[1,-2],[4,-2],[3,0],[4,-1],[4,1],[5,0],[7,2],[7,2],[6,1],[6,0],[3,0],[5,-1],[4,-1],[4,-1],[5,-2],[11,-5],[3,-2],[3,-3],[2,-3],[5,-8],[1,-3],[1,-2],[1,-4],[1,-3],[0,-3],[0,-2],[-1,-1],[-2,-1],[-3,0],[-2,0],[-2,2],[-4,2],[-4,3],[-4,1],[-3,2],[-4,0],[-4,0],[-5,-1],[-3,-1],[-4,-2],[-5,-3],[-3,-3],[-1,-2],[-2,-2],[-1,-2],[-2,-3],[-1,-4],[-1,-4],[-1,-3],[-1,-3],[0,-4],[0,-9],[0,-5],[1,-5],[2,-11],[1,-11],[0,-2],[0,-3],[-1,-3],[-2,-5],[-5,-8],[0,-2],[-1,-1],[-2,-1],[-2,-1],[-19,0],[-40,-2],[-3,0],[-4,1],[-56,-3],[-6,-5],[-4,-3],[-7,-4],[-13,-7],[-4,-1],[-3,-1],[-5,0],[-29,2],[-7,1],[-15,1],[-28,1],[-2,0],[-2,1],[-4,2],[-2,2],[-1,2],[-2,5],[-1,4],[0,2],[0,3],[1,2],[4,3],[5,1],[6,1],[6,-2],[3,-1],[4,-1],[3,0],[3,0],[2,1],[2,1],[4,2],[4,5],[3,3],[2,4],[1,2],[0,3],[11,71],[0,3],[0,3],[-1,2],[-1,2],[-2,4],[-5,4],[-4,3],[-2,2],[-3,0],[-3,0],[-2,-1],[-4,-3],[-4,-2],[-2,-2],[-3,-3],[-3,-4],[-2,-3],[-2,-5],[-2,-4],[-2,-5],[-1,-5],[-1,-5],[-1,-3],[0,-7],[0,-5],[0,-3],[-1,-2],[0,-2],[-1,-3],[-3,-3],[-3,-2],[-1,-1],[-2,0],[-3,1],[-3,2],[-4,3],[-2,3],[-2,4],[-3,4],[-7,13],[-3,8],[-1,4],[-1,4],[0,3],[-1,3],[2,5],[1,3],[2,5],[3,5],[3,4],[8,15],[1,3],[1,3],[0,3],[1,31],[0,25],[-1,4],[-2,4],[-3,2],[-3,1],[-5,0],[-3,0],[-4,-3],[-3,-2],[-3,-3],[-3,-4],[-2,-4],[-4,-4],[-2,-4],[-2,-5],[-4,-9],[-1,-5],[-3,-10],[0,-3],[-5,-78],[1,-6],[6,-28],[1,-3],[1,-3],[1,-3],[-26,-20],[-40,-9],[-2,-1],[-3,0],[-2,0],[-4,1],[-14,3],[-3,1],[-3,2],[-2,1],[-3,3],[-22,23],[-4,4],[-3,4],[-12,14],[-4,5],[-43,24],[-6,-4],[-4,-2],[-2,-2],[-3,-1],[-3,0],[-3,-1],[-4,-1],[-4,0],[-5,0],[-3,0],[-2,2],[-3,1],[-1,2],[-3,3],[-2,3],[-5,8],[-2,5],[-1,3],[-1,3],[0,2],[0,5],[3,4],[1,4],[3,4],[3,4],[2,3],[1,1],[0,2],[1,2],[0,3],[-1,6],[-1,2],[-2,2],[-1,2],[-4,2],[-5,1],[-6,0],[-3,0],[-4,-1],[-6,-3],[-4,-3],[-10,-6],[-5,-4],[-3,-3],[-1,-2],[-2,-1],[-4,-2],[-3,-1],[-2,0],[-3,0],[-3,1],[-2,1],[-1,2],[-1,2],[0,3],[0,2],[1,4],[1,8],[1,4],[3,5],[2,3],[5,8],[3,4],[2,3],[2,0],[26,24],[19,31],[2,2],[2,5],[2,7],[1,4],[1,6],[-1,5],[0,2],[-2,3],[-16,27],[-1,3],[-2,1],[-3,2],[-3,2],[-4,0],[-5,0],[-4,-1],[-2,-2],[-2,-2],[-2,-3],[-1,-2],[-2,-6],[-2,-5],[-3,-7],[-3,-5],[-6,-9],[-4,-4],[-4,-2],[-3,0],[-4,0],[-4,2],[-3,2],[-3,3],[-3,5],[-2,4],[-1,4],[0,4],[0,6],[2,5],[7,29],[7,36],[1,9],[0,5],[1,8],[0,18],[-3,13],[-2,5],[-2,2],[-2,1],[-4,1],[-5,-1],[-5,0],[-6,-2],[-10,-3],[-7,-3],[-5,-3],[-15,-7],[-5,-3],[-8,-7],[-4,-5],[-2,-4],[-3,-5],[-2,-4],[-2,-4],[-5,-7],[-3,-4],[-15,-21],[-3,-2],[-6,0],[-4,0],[-5,1],[-8,5],[-6,4],[-2,1],[-1,3],[-2,5],[-1,4],[-1,5],[1,11],[0,3],[1,1],[5,4],[6,4],[5,3],[6,2],[8,4],[6,5],[4,4],[5,7],[3,6],[2,6],[1,4],[0,5],[1,11],[0,3],[-1,5],[-1,4],[-2,5],[-4,2],[-4,0],[-5,-1],[-5,-2],[-2,-2],[-9,-10],[-22,-24],[-10,-11],[-2,-3],[-4,-4],[-32,-25],[-5,-4],[-5,-3],[-11,-5],[-6,-3],[-5,-1],[-4,-1],[-3,1],[-3,1],[-6,3],[-1,2],[-1,3],[1,4],[1,3],[2,5],[4,5],[2,4],[1,5],[2,5],[0,8],[-1,6],[-2,5],[-2,4],[-4,2],[-3,1],[-5,-2],[-3,-3],[-3,-3],[-2,-4],[-6,-8],[-5,-8],[-3,-4],[-2,-3],[-4,-4],[-3,-2],[-14,-11],[-5,-2],[-3,0],[-4,-1],[-2,0],[-4,1],[-3,1],[-2,4],[-1,4],[-1,49],[0,12],[1,6],[4,22],[4,32],[0,5],[0,4],[0,7],[1,7],[-1,6],[-2,4],[-6,14],[-2,3],[-3,2],[-3,-1],[-3,-2],[-8,-13],[-6,-9],[-2,-5],[-4,-7],[-4,-6],[-4,-5],[-4,-5],[-12,-15],[-5,-7],[-4,-4],[-6,-5],[-16,-13],[-12,-10],[-4,-2],[-3,-1],[-35,-7],[-28,-5],[-5,-1],[-3,1],[-3,1],[-3,1],[-6,6],[-3,5],[-2,4],[-1,4],[-2,7],[-1,5],[-1,6],[0,5],[2,6],[2,13],[1,9],[0,10],[0,5],[0,4],[-1,9],[-2,6],[-2,11],[-2,4],[-2,5],[-19,31],[-12,18],[-18,15],[-13,9],[-4,1],[-3,3],[-1,5],[-4,26],[-1,5],[1,3],[0,2],[3,6],[4,6],[3,4],[6,8],[6,7],[2,2],[3,7],[2,4],[1,3],[0,3],[1,9],[0,6],[-2,4],[-1,5],[-3,3],[-5,2],[-4,0],[-5,1],[-10,-1],[-4,-1],[-10,-2],[-5,-2],[-5,-1],[-4,-2],[-5,-1],[-7,-2],[-5,0],[-4,-1],[-4,0],[-7,-1],[-3,1],[-3,1],[-3,2],[-2,4],[-1,4],[0,4],[1,5],[2,4],[2,3],[4,5],[2,3],[4,4],[4,4],[5,5],[2,3],[7,8],[9,11],[2,3],[1,3],[1,4],[1,12],[0,9],[0,3],[-2,4],[-3,1],[-3,-1],[-3,-3],[-2,-4],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-7,-15],[-3,-6],[-8,-14],[-3,-4],[-2,-2],[-4,-2],[-4,0],[-4,1],[-3,2],[-3,3],[-1,5],[-1,6],[0,5],[0,10],[1,9],[0,7],[-1,29],[0,5],[-1,5],[-1,5],[-3,5],[-2,4],[-2,3],[-3,4],[-4,3],[-19,10],[-5,2],[-7,3],[-5,2],[-5,1],[-4,1],[-11,1],[-6,-1],[-4,-3],[-3,-3],[-3,-4],[-3,-3],[-2,-4],[-3,-6],[-1,-3],[-6,-14],[-1,-5],[-2,-5],[-1,-9],[0,-5],[0,-6],[0,-7],[1,-6],[0,-8],[0,-4],[0,-3],[-1,-3],[-3,-3],[-3,-2],[-2,-1],[-8,-2],[-6,0],[-8,0],[-4,1],[-4,0],[-14,7],[-4,3],[-3,2],[-3,2],[-3,3],[-2,3],[1,5],[1,5],[2,4],[5,6],[4,4],[2,5],[2,3],[1,3],[0,6],[0,4],[-2,4],[-4,4],[-4,2],[-4,1],[-45,11],[-4,0],[-3,1],[-7,-2],[-17,-9],[-18,-11],[-6,-2],[-6,-1],[-6,2],[-4,3],[-3,4],[-4,6],[-2,3],[0,3],[0,2],[1,6],[1,4],[1,4],[2,6],[2,3],[1,3],[3,4],[2,2],[2,2],[4,3],[27,17],[24,15],[7,4],[6,4],[5,2],[5,1],[18,2],[6,0],[2,1],[2,1],[8,3],[2,1],[2,2],[3,4],[1,2],[1,2],[1,3],[0,11],[0,6],[0,6],[-2,6],[-2,6],[-6,14],[-3,8],[-3,6],[-2,3],[-3,2],[-6,3],[-6,1],[-27,6],[-3,1],[-3,-2],[-1,-3],[0,-5],[2,-6],[2,-5],[2,-4],[2,-5],[2,-5],[1,-6],[2,-6],[1,-5],[1,-7],[0,-7],[-1,-6],[-2,-6],[-1,-5],[-2,-5],[-3,-4],[-2,-4],[-3,-3],[-3,-3],[-1,-2],[-2,-1],[-3,-2],[-3,-1],[-3,-2],[-3,-1],[-4,-1],[-2,-1],[-3,0],[-2,1],[-2,1],[-2,3],[-2,2],[-4,7],[-1,7],[-22,84],[-3,12],[-1,3],[0,5],[0,3],[1,5],[1,5],[3,11],[1,4],[1,5],[2,4],[2,6],[1,3],[0,3],[0,2],[0,2],[0,4],[-1,3],[-1,2],[-2,4],[-3,2],[-3,0],[-30,-3],[-44,-4],[-5,-1],[-4,-1],[-6,-3],[-5,-4],[-4,-5],[-3,-5],[-3,-5],[-2,-5],[-2,-5],[-2,-5],[-1,-2],[-1,-3],[-4,-3],[-5,-2],[-6,-1],[-4,0],[-3,1],[-3,1],[-2,1],[-2,1],[-3,2],[-3,4],[-3,5],[-4,10],[-8,15],[-2,4],[-4,4],[-2,2],[-4,3],[-4,3],[-6,3],[-5,3],[-5,5],[-4,4],[-10,14],[-2,3],[-1,2],[0,2],[0,3],[1,2],[4,8],[3,5],[3,4],[3,5],[2,4],[2,5],[2,5],[0,3],[2,7],[0,5],[1,5],[1,27],[0,5],[-2,4],[-3,3],[-4,3],[-4,2],[-5,1],[-5,1],[-5,-1],[-13,2],[-7,1],[-5,1],[-6,3],[-3,1],[-4,2],[-3,4],[-6,6],[-7,9],[-2,4],[-12,32],[-1,3],[0,3],[-1,3],[1,2],[1,5],[3,5],[0,4],[-1,4],[-2,4],[-4,5],[-8,5],[-6,3],[-5,1],[-5,0],[-6,-2],[-3,-1],[-4,-2],[-4,-2],[-4,-1],[-4,-2],[-14,-4],[-4,-1],[-3,0],[-3,-1],[-5,1],[-4,0],[-5,1],[-5,2],[-5,3],[-3,3],[-2,3],[-2,3],[-2,7],[-1,6],[2,8],[1,5],[2,5],[6,17],[3,5],[3,5],[5,4],[6,2],[4,0],[5,0],[6,-2],[7,-2],[16,-7],[4,-3],[2,-2],[2,-3],[2,-2],[2,-4],[1,-5],[2,-5],[0,-2],[0,-2],[2,-2],[1,-3],[4,-2],[3,-1],[3,0],[3,1],[5,3],[4,2],[6,5],[3,5],[4,5],[2,6],[2,3],[1,4],[1,6],[2,12],[0,4],[3,22],[0,2],[0,3],[0,5],[-2,5],[-1,3],[-2,5],[-3,4],[-1,2],[-2,2],[-3,0],[-2,-2],[-1,-1],[-1,-1],[-2,-2],[-3,-12],[-1,-3],[-1,-5],[-2,-5],[-2,-4],[-3,-5],[-3,-5],[-2,-3],[-5,-6],[-6,-4],[-3,-2],[-2,-1],[-3,-1],[-2,0],[-6,0],[-4,0],[-4,1],[-3,0],[-3,2],[-2,3],[-2,2],[0,3],[0,3],[2,5],[1,5],[3,8],[2,4],[1,3],[1,3],[2,3],[1,3],[2,6],[1,5],[0,5],[1,13],[0,3],[-2,5],[-3,4],[-4,2],[-5,2],[-5,-1],[-4,-2],[-4,-2],[-4,-4],[-4,-4],[-3,-5],[-3,-4],[-1,-3],[-2,-4],[0,-5],[1,-5],[0,-2],[0,-2],[-1,-2],[-1,-2],[-3,-3],[-4,-3],[-11,-6],[-4,-1],[-1,0],[-3,1],[-4,3],[-84,69],[-2,3],[-3,3],[-3,5],[-3,4],[-3,6],[-3,5],[-1,3],[-1,3],[0,5],[2,5],[3,3],[4,1],[4,1],[4,0],[4,-1],[4,-1],[7,-2],[6,-2],[6,-2],[7,-1],[6,-1],[4,0],[5,1],[3,1],[3,1],[5,2],[4,4],[4,3],[2,4],[4,5],[2,5],[2,4],[2,4],[1,5],[0,5],[1,6],[-1,8],[-1,8],[-3,12],[-1,5],[-2,4],[-2,5],[-5,9],[-4,6],[-4,6],[-6,6],[-6,7],[-3,2],[-25,23],[-2,0],[-3,0],[-4,-2],[-2,-2],[-3,-2],[-10,-10],[-15,-16],[-1,-3],[-3,-4],[-1,-6],[-1,-4],[-2,-15],[-36,-17],[-4,2],[-5,3],[-5,2],[-5,2],[-3,0],[-3,1],[-4,0],[-4,0],[-4,-1],[-10,-3],[-17,-5],[-3,-1],[-9,-2],[-4,0],[-4,0],[-5,1],[-3,0],[-1,2],[-1,2],[-1,5],[3,31],[1,2],[0,3],[2,5],[2,3],[2,3],[3,5],[3,4],[4,3],[7,4],[8,6],[4,3],[4,4],[3,4],[3,3],[2,4],[2,4],[1,4],[3,6],[1,6],[2,6],[0,4],[0,6],[-1,6],[-14,37],[-1,2],[-1,2],[-3,0],[-2,-1],[-2,-1],[-2,-3],[-2,-3],[-1,-4],[0,-2],[0,-6],[0,-5],[0,-7],[1,-6],[0,-6],[-1,-5],[0,-3],[-1,-4],[-1,-3],[-1,-3],[-1,-4],[-2,-4],[-2,-3],[-3,-3],[-12,-9],[-3,-3],[-2,0],[-2,0],[-3,0],[-2,2],[-2,2],[-1,3],[-2,6],[-1,5],[-1,7],[-3,13],[-2,4],[-3,5],[-2,2],[-4,2],[-4,0],[-4,-1],[-4,-2],[-5,-2],[-4,-3],[-4,-4],[-4,-4],[-2,-4],[-3,-6],[-1,-4],[-1,-6],[0,-3],[0,-3],[2,-2],[3,-2],[3,-1],[4,-3],[7,-2],[2,-2],[1,-2],[0,-4],[-1,-4],[-1,-3],[-2,-2],[-2,-3],[-3,-3],[-4,-2],[-4,-1],[-5,0],[-30,0],[-6,1],[-6,1],[-8,1],[-7,1],[-6,1],[-22,8],[-2,1],[-3,2],[-5,5],[-7,10],[-2,3],[-8,12],[-9,15],[-2,1],[-1,0],[-2,1],[-1,0],[-2,-1],[-2,-2],[-2,-2],[-1,-2],[-1,-4],[-1,-5],[0,-5],[0,-5],[0,-6],[1,-4],[0,-3],[1,-6],[1,-7],[1,-5],[6,-14],[2,-3],[2,-2],[4,-4],[2,-2],[3,-2],[3,-3],[2,-4],[2,-3],[1,-3],[0,-3],[0,-5],[-4,-16],[-1,-3],[-1,-2],[-2,-1],[-2,-1],[-2,-1],[-4,0],[-2,1],[-3,1],[-2,2],[-1,2],[-33,39],[-1,3],[-1,3],[-1,5],[0,4],[0,4],[0,5],[1,6],[0,4],[1,4],[2,6],[2,7],[0,5],[0,5],[0,4],[-1,3],[-1,1],[-2,1],[-2,1],[-3,0],[-3,0],[-4,-1],[-2,0],[-8,-2],[-6,-1],[-3,0],[-2,0],[-2,1],[-2,2],[-3,2],[-2,4],[-2,6],[-1,6],[-1,6],[-1,6],[-1,4],[-1,3],[-1,3],[-1,4],[-3,4],[-2,3],[-5,5],[-4,3],[-4,2],[-4,2],[-3,-1],[-2,-2],[-2,-3],[-2,-3],[-2,-4],[-2,-5],[0,-3],[-2,-4],[-1,-5],[-1,-5],[-1,-5],[0,-6],[2,-26],[0,-34],[0,-1],[-1,-2],[-2,-1],[-3,-2],[-71,-23],[-3,-1],[-3,0],[-4,-1],[-3,1],[-2,1],[-1,2],[0,2],[1,4],[1,4],[4,6],[6,7],[4,5],[4,5],[2,4],[1,4],[1,3],[1,4],[0,3],[0,4],[-1,2],[-2,3],[-2,4],[-2,2],[-2,2],[-2,2],[-2,1],[-4,1],[-4,0],[-105,7],[-2,0],[-1,-1],[-1,-1],[-1,-2],[0,-2],[-1,-2],[1,-3],[0,-3],[1,-4],[1,-3],[1,-4],[1,-2],[0,-2],[0,-2],[-1,-1],[-2,-1],[-2,0],[-2,0],[-68,5],[-30,10],[-1,2],[-2,2],[-1,2],[-2,2],[-2,2],[-4,2],[-2,0],[-3,1],[-3,1],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-3,-2],[-5,-3],[-2,-2],[-17,-20],[-6,-7],[-5,-6],[-2,-3],[-2,-3],[-3,-2],[-6,-3],[-3,-2],[-6,-2],[-2,-1],[-2,0],[-3,1],[-3,1],[-3,3],[-3,2],[-4,4],[-2,2],[-2,2],[-2,3],[-1,3],[0,2],[-1,3],[0,1],[0,3],[0,5],[1,5],[1,4],[2,9],[1,8],[1,5],[3,23],[0,3],[3,30],[0,3],[1,13],[0,3],[0,4],[-1,3],[-2,5],[-1,5],[-3,7],[-5,9],[-4,4],[-21,23],[-2,3],[-2,1],[-5,1],[-2,0],[-2,0],[-3,0],[-47,-20],[-2,-1],[-2,-1],[-2,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-6],[-1,-10],[1,-5],[1,-4],[1,-4],[1,-5],[2,-3],[3,-3],[3,-3],[2,-3],[3,-2],[2,-1],[4,-2],[3,-1],[4,-2],[5,-1],[5,-2],[7,-4],[4,-4],[4,-3],[3,-3],[2,-4],[0,-4],[-1,-2],[-1,-1],[-1,-2],[-2,-1],[-24,-14],[-19,-11],[-44,9],[-43,-1],[-4,-1],[-4,0],[-5,0],[-4,0],[-4,0],[-5,2],[-5,2],[-4,1],[-4,2],[-5,4],[-2,2],[-2,2],[-3,2],[-3,4],[-5,7],[-21,31],[-2,4],[-1,3],[0,4],[0,7],[0,6],[0,4],[1,5],[1,4],[16,34],[1,1],[2,2],[3,1],[3,0],[4,1],[4,-2],[4,-1],[4,-1],[8,0],[3,0],[5,0],[4,1],[1,1],[2,2],[2,4],[2,5],[0,5],[-1,4],[-1,4],[-2,5],[-3,5],[-6,6],[-10,10],[-2,2],[-8,4],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-3,-2],[-3,-1],[-6,-2],[-3,-1],[-3,0],[-3,0],[-4,0],[-2,1],[-4,1],[-3,2],[-2,3],[-2,2],[-1,3],[-2,3],[-1,4],[-1,5],[0,6],[0,4],[0,2],[1,4],[-1,3],[0,3],[-1,18],[-1,3],[-2,3],[-1,1],[-4,3],[-3,1],[-3,0],[-2,0],[-3,-1],[-3,-1],[-5,-2],[-32,-16],[-4,-2],[-3,-2],[-3,-2],[-5,-5],[-3,-4],[-2,-3],[-3,-4],[-3,-4],[-2,-5],[-2,-4],[-1,-4],[-2,-7],[-1,-8],[-1,-4],[0,-5],[-1,-15],[0,-5],[1,-5],[1,-3],[1,-3],[0,-2],[2,-2],[1,-2],[3,-2],[2,-5],[1,-9],[0,-3],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-1],[-5,-3],[-3,-1],[-3,-1],[-4,0],[-3,0],[-2,1],[-2,0],[-4,2],[-4,3],[-3,6],[-3,5],[-1,7],[2,5],[2,5],[3,9],[3,5],[2,8],[3,17],[1,3],[0,5],[0,4],[-1,4],[-1,4],[-1,4],[-3,4],[-2,3],[-2,3],[-3,3],[-4,2],[-2,2],[-5,3],[-4,1],[-3,0],[-5,1],[-3,-1],[-42,-4],[-3,0],[-2,-1],[-3,-4],[-1,-2],[-2,-4],[-3,-7],[-2,-7],[-1,-3],[-1,-5],[-1,-2],[0,-3],[-3,-6],[-1,-3],[-4,-8],[-2,-2],[-2,-3],[-25,-34],[-3,-2],[-2,-1],[-2,-1],[-2,0],[-2,0],[-3,1],[-3,1],[-2,3],[-3,4],[-2,5],[-1,3],[0,3],[0,5],[1,3],[0,6],[-1,5],[0,4],[-1,4],[-2,4],[-2,4],[-2,2],[-4,5],[-2,2],[-2,2],[-4,2],[-2,1],[-3,1],[-4,1],[-6,2],[-9,2],[-4,0],[-4,0],[-4,-1],[-3,-1],[-5,-1],[-4,-1],[-5,-2],[-8,-4],[-8,-2],[-11,-2],[-5,-2],[-3,0],[-3,0],[-4,0],[-52,5],[-20,1],[-2,1],[-1,1],[-1,2],[-2,2],[-2,9],[-1,3],[-5,42],[-1,5],[0,4],[0,5],[1,3],[1,9],[2,3],[1,3],[4,6],[3,2],[2,3],[2,2],[2,3],[1,2],[1,3],[1,2],[1,3],[1,4],[0,3],[0,3],[0,4],[-1,3],[-3,14],[-2,6],[-2,3],[-3,4],[-3,1],[-2,1],[-1,0]],[[70446,5377],[32,8],[51,0],[31,-88],[6,-40],[-24,2],[-26,-11],[-27,18],[-9,18],[-38,-9],[-6,-34],[128,-22],[33,13],[0,-47],[-33,-54],[20,-58],[-8,-1],[-47,-8],[-34,-52],[0,-33],[-59,-7],[4,-25],[24,-16],[51,-49],[107,25],[37,-27],[40,31],[71,25],[3,-49],[-346,-70],[5,-12],[10,-1],[15,-1],[-20,-18],[-53,-47],[-38,-34],[-8,0],[-24,-12],[13,-30],[30,13],[26,4],[25,-4],[5,23],[25,25],[-2,-22],[26,-3],[27,20],[57,91],[34,17],[77,16],[26,5],[118,26],[50,-11],[20,-4],[22,-16],[6,-24],[-7,-21],[-10,-42],[-6,-37],[-2,-43],[3,-25],[-17,-11],[-13,-13],[-22,-30],[-25,-12],[-10,-17],[-37,-50],[-23,-2],[-9,-23],[0,-25],[15,-17],[27,-4],[12,-30],[0,-31],[-3,-53],[3,-37],[0,-21],[-5,-20],[-11,-22],[28,-15],[9,-31],[13,-20],[-1,-32],[-10,-52],[-4,-35],[1,-34],[25,11],[18,-1],[25,-4],[26,-3],[19,14],[20,21],[20,15],[17,10],[20,-10],[21,-1],[17,8],[6,15],[13,8],[-2,-29],[-7,-25],[-25,-21],[-18,-30],[-18,-5],[5,24],[-25,-4],[-16,-26],[-27,-44],[-9,-19],[-11,-24],[18,-25],[13,-33],[33,-13],[-35,-20],[25,-3],[28,4],[25,-16],[-31,-18],[-19,-7],[-21,-4],[-17,-11],[-22,-31],[12,-17],[9,-35],[18,-16],[-16,-11],[-31,-16],[-8,-25],[-7,-48],[18,-77],[-25,-28],[-37,-39],[-14,-77],[51,-15],[46,80],[7,69],[-21,68],[-7,49],[17,21],[16,5],[18,13],[23,8],[20,12],[3,26],[26,-52],[16,-25],[18,-13],[5,-22],[4,-19],[6,-22],[13,-22],[7,-16],[27,-47],[19,-13],[31,-4],[22,-49],[-1,-43],[-5,-46],[-10,-58],[-6,-20],[-8,-16],[-34,-35],[-2,-33],[3,-25],[25,-22],[-24,-16],[14,-20],[21,-2],[26,-24],[-3,-23],[-16,6],[-16,6],[-38,4],[4,-36],[20,-14],[18,-14],[8,-28],[8,-20],[7,-21],[13,-22],[17,-21],[12,-28],[17,-22],[15,-23],[12,-15],[8,-39],[2,-26],[8,-12],[-10,-25],[-28,5],[-11,11],[21,11],[-31,26],[-18,23],[11,18],[-18,18],[-13,-22],[-15,-13],[-38,-11],[-30,7],[-5,29],[-25,-30],[-8,-14],[-1,-20],[8,-22],[25,1],[35,-13],[22,20],[20,-5],[7,-17],[2,-31],[5,-30],[-4,-26],[7,-17],[15,-7],[17,-11],[17,-24],[13,-19],[9,-20],[18,-19],[19,-26],[26,-19],[28,-21],[27,-19],[58,-25],[26,-7],[15,-7],[15,-6],[25,-6],[18,-4],[17,-5],[38,-6],[21,-2],[34,-2],[40,-3],[15,-1],[18,-1],[44,-12],[10,13],[20,4],[49,-1],[19,0],[7,-7],[8,-6],[26,-12],[3,-27],[-20,-22],[-21,-19],[-16,-14],[-6,-38]],[[71678,5387],[-30,-6],[-24,-19],[-22,-8],[-18,4],[-9,29]]],"transform":{"scale":[0.00013137567140671368,0.00010663626508265191],"translate":[-106.64546828199985,25.837048983000045]}} diff --git a/src/js/config/mapconfig/mapfiles/county/ut-counties.json b/src/js/config/mapconfig/mapfiles/county/ut-counties.json new file mode 100644 index 00000000..14f94780 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/ut-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-114.05298629899988,36.99789925500016,-109.04104727499993,42.001560718000064],"geometries":[{"type":"Polygon","properties":{"name":"UT"},"id":"49005","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49033","arcs":[[4,5,6,-1,7]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49003","arcs":[[8,9,10,-3]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49057","arcs":[[-2,-7,11,12,-9]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49029","arcs":[[13,14,15,-12,-6]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49043","arcs":[[16,17,18,19,20,-14,-5]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49011","arcs":[[-16,21,22,-13]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49045","arcs":[[23,24,25,26,-10,-23]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49009","arcs":[[27,28,-18,29]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49035","arcs":[[-15,-21,30,31,-24,-22]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49047","arcs":[[32,33,34,35,36,-28]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49013","arcs":[[-29,-37,37,38,39,-19]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49051","arcs":[[-40,40,-31,-20]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49049","arcs":[[-39,41,42,43,-25,-32,-41]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49023","arcs":[[-44,44,45,46,-26]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49007","arcs":[[-38,-36,47,48,-42]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49039","arcs":[[-49,49,50,51,-45,-43]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49015","arcs":[[-35,52,53,54,-50,-48]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49027","arcs":[[-52,55,56,57,-46]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49019","arcs":[[58,59,-53,-34]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49041","arcs":[[-55,60,61,62,-56,-51]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49001","arcs":[[-63,63,64,65,66,-57]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49031","arcs":[[67,68,-64,-62]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49055","arcs":[[-54,69,70,-68,-61]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49037","arcs":[[71,72,73,-70,-60]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49017","arcs":[[-74,74,75,-65,-69,-71]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49021","arcs":[[-76,76,77,78,-66]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49053","arcs":[[79,80,-78]]},{"type":"Polygon","properties":{"name":"UT"},"id":"49025","arcs":[[-75,-73,81,-80,-77]]}]},"states":{"type":"GeometryCollection","bbox":[-114.05298629899988,36.99789925500016,-109.04104727499993,42.001560718000064],"geometries":[{"type":"Polygon","properties":{"name":"Utah"},"id":"49","arcs":[[16,29,32,58,71,81,80,78,66,57,46,26,10,3,7]]}]}},"arcs":[[[50778,99957],[5,-103],[-14,-37],[0,-38],[9,-19],[7,-45],[27,-1],[25,6],[25,-1],[20,-7],[41,-20],[23,-6],[23,-11],[22,-13],[14,-16],[18,-16],[20,-21],[5,-19],[3,-21],[22,-23],[31,-17],[17,-20],[30,-13],[24,-7],[22,1],[40,-5],[13,-28],[0,-38],[10,-27],[8,-24],[-10,-31],[-3,-38],[3,-23],[12,-21],[7,-20],[20,-1],[26,-6],[30,-25],[4,-25],[26,-22],[22,-17],[14,-18],[8,-26],[-13,-17],[-23,-14],[-4,-27],[8,-23],[14,-30],[15,-17],[6,-20],[19,-21],[23,-8],[-4,-36],[-20,-9],[-11,-25],[-7,-29],[-3,-34],[5,-22],[-5,-30],[-21,-24],[-4,-27],[19,-21],[19,-6],[0,-20],[18,-27],[17,-14],[15,-15],[9,-29],[11,-18],[-18,-27],[-14,-18],[-3,-4],[-12,-24],[10,-20],[-17,-12],[-22,2],[-14,-17],[-10,-27],[-13,-17],[-16,-22],[-6,-24],[-3,-25],[3,-35],[5,-23],[-20,-18],[-29,-10],[-34,-18],[-32,-5],[-27,-2],[-27,-7],[-23,3],[-34,2],[-38,-5],[-25,13],[-5,21],[-23,-5],[-28,-9],[-28,12],[-20,18],[-20,-5],[-26,0],[-23,-6],[-39,20],[-27,-14],[-7,-20],[-19,-15],[-25,4],[-25,5],[-25,-7],[-21,-29],[-25,-40],[14,-25],[-10,-32],[28,-6],[41,-3],[21,-20],[36,-10],[23,-10],[18,-19],[26,-26],[28,-39],[-7,-28],[0,-26],[12,-17],[4,-31],[-7,-23],[-9,-22],[-17,-18],[-11,-19],[-12,-25],[30,-3],[23,-5],[24,7],[30,-1],[31,-11],[29,4],[24,-13],[10,-22],[8,-49],[-13,-36],[6,-22],[6,-26],[-12,-20],[-7,-31],[1,-27],[-18,-24],[-77,-42],[-25,-4],[-23,-16],[-18,-16],[-28,-36],[-45,-6],[-59,11],[-27,11],[5,-29],[17,-10],[17,-25],[9,-21],[98,-71],[-11,-39],[-47,-50],[-1,-29],[-42,-26],[-12,-33],[29,-1],[40,-29],[41,-4],[27,-19],[27,-21],[15,-21],[24,-8],[15,-21],[23,-24],[22,-11],[15,-24],[27,-14],[32,-28],[53,-26],[45,-27],[34,-29],[68,-49],[22,-33],[28,-23],[19,-23],[21,-25],[31,-18],[65,-48],[24,-9],[22,-12],[24,-2],[24,-22],[43,-39],[45,-51],[32,-34],[-13,-28],[-9,-35],[-3,-25],[11,-17],[23,-26],[0,-31],[13,-29],[25,-18],[16,-20],[33,-9],[38,-34],[3,-42],[34,-70],[-7,-38],[30,-69],[-16,-32],[-38,-14],[-13,-49],[15,-23],[9,-26],[-15,-21],[-20,-8],[-6,-30],[14,-37],[-5,-24],[22,-16],[44,-2],[-19,-20],[-4,-25],[23,-20],[24,-35],[16,-37],[36,13],[20,12],[61,-28],[4,-36],[-20,-20],[-11,-30],[3,-28],[15,-15],[-27,-22],[4,-21],[-8,-51],[19,-31],[33,-18],[23,-15],[15,-31],[-9,-36],[9,-22],[-8,-30],[-19,-8],[-10,-21],[17,-40],[-15,-19],[-31,-13],[-18,-25],[7,-24],[17,-22],[31,-3],[33,-17],[3,-31],[-17,-21],[-9,-27],[7,-20],[-6,-24],[27,-8],[19,-15],[24,-6],[19,-14],[20,-15],[27,-30],[32,-17],[33,-21],[20,-19],[33,-20],[13,-17],[29,-6],[49,-12],[37,-16],[47,-4],[6,-20],[15,-21],[28,-17],[8,-33],[-1,-28],[-9,-33],[5,-21],[-2,-23],[10,-29],[5,-29],[-16,-21],[-7,-38],[-26,-25],[-27,-21],[-4,-23],[-1,-30],[0,-30],[-5,-21],[-4,-26],[31,-37],[4,-29],[-23,5],[-41,3],[-23,-6],[-20,-10],[-28,-23],[-6,-20],[29,-20],[17,-15],[13,-19],[-8,-23],[3,-35],[-12,-30],[-26,-26],[15,-29],[-1,-20],[-14,-23],[9,-25],[-10,-31],[-10,-25],[8,-19],[15,-14],[14,-15],[41,-31],[31,-3],[26,11],[26,9],[22,7],[42,13],[27,-30],[-18,-24],[10,-24],[10,-60],[-14,-19],[5,-19],[11,-18],[30,-10],[34,1],[30,1],[21,9],[22,5],[22,-21],[0,-25],[-13,-31],[34,-30],[24,-15],[20,-17],[12,-24],[0,-22],[3,-33],[6,-22],[-8,-22],[-18,-13],[-18,-28],[-26,-9],[-38,-22],[-25,-13],[-4,-37],[-3,-22],[0,-29],[-19,-14],[-20,-10],[-25,-20],[-22,-13],[-24,-8],[-17,-17],[-33,-32],[9,-24],[21,-33],[27,-28],[10,-21],[24,-31],[4,-26],[2,-28],[5,-28],[7,-28],[-11,-17],[-20,-11],[-23,-10],[-26,-20],[-17,-15],[-21,-11],[-28,1],[-48,25],[-44,-6],[-26,-14],[-18,-12],[-23,-21],[-29,-11],[-30,-28],[-1,-34],[18,-28],[22,-38],[-2,-25],[11,-25],[-1,-39],[-15,-22],[5,-45],[-5,-29],[5,-28],[-9,-25],[7,-28],[11,-23],[-1,-26],[-12,-16],[-4,-41],[3,-35],[3,-28],[-16,-15],[-15,-42],[21,-58],[23,-26],[-2,-33],[-2,-53],[-14,-56],[-20,-7],[-29,-23],[-7,-37],[7,-105],[-10,-25],[22,-14],[-6,-34],[-16,-48],[-16,-27],[14,-44],[-22,-11],[-5,-21],[-8,-28],[-2,-24],[-7,-33],[-5,-22],[-54,-52],[-120,-33],[-13,-23],[-3,-44],[-26,-11],[-18,-16],[-2,-28],[18,-28],[18,-23],[13,-30],[4,-24],[3,-23],[13,-41],[-10,-40],[-14,-23],[-127,-3],[-38,-14],[-35,-12],[-36,13],[-19,20],[-23,14],[-35,-9],[-12,-20],[13,-40],[25,-22],[15,-28],[-17,-17],[-2,-34],[5,-23],[18,-31],[-17,-16],[-16,-17],[-43,-13],[-21,-24],[-35,-35],[-32,-16],[-18,-40],[-10,-19],[-7,-29],[-14,-25],[-30,-8],[-23,-21],[-32,-28],[-38,-10],[-35,-24],[1,-36],[15,-29],[5,-31],[-7,-51],[-21,-11],[-18,-22],[26,-17],[-9,-110],[-17,-25],[-18,-9],[-24,-20],[-10,-22],[-22,-41],[-8,-34],[-18,-21],[-13,-55],[10,-23],[-35,-19],[-18,-12],[-3,-2],[-32,-19],[-29,-7],[-18,-5],[-26,-49],[-5,-9],[18,-28],[-2,-26],[-9,-18],[-22,-23],[-22,-1],[-27,-13],[-31,-2],[-15,-1],[-50,-36],[-50,-39],[-19,-16],[-29,-44],[5,-24],[26,-46],[0,-35],[-15,-49],[2,-24],[-12,-20],[-20,-20],[-28,-43],[-23,-30],[12,-24],[1,-1],[15,-13],[20,-14],[12,-13],[2,-2],[14,-15],[14,-14],[2,-3],[12,-25],[-16,-10],[-3,-2],[-27,-6],[-29,-19],[-9,-19],[-16,-17],[-16,-16],[-7,-24],[-7,-24],[2,-5],[7,-22],[-22,-16],[-8,-2],[-19,-3],[-25,-10],[-2,-23],[3,-16],[3,-13],[1,-22],[-12,-23]],[[50721,88437],[-25,-3],[-18,-9],[-21,-14],[-31,0],[-27,1],[-28,-19],[-19,-16],[-17,-16],[-13,-20],[-7,-21],[-5,-25],[-25,1],[-11,0],[-15,1],[-23,-6],[-18,-9],[-22,-10],[-21,-4],[-22,2],[-24,-2],[-27,-1],[-17,-20],[-9,-24],[-3,-4],[-12,-17],[-20,-4],[-33,2],[-23,-8],[-20,-14],[-2,-2],[-19,-16],[-16,-12],[0,-31],[3,-20],[-16,-18],[-31,-1],[-20,9],[0,23],[-13,18],[-5,22],[-14,23],[-26,8],[-32,13],[-22,22],[-16,13],[-20,17],[-15,24],[-12,30],[-3,23],[-2,26],[-12,30],[-5,21],[-7,36],[-15,22],[-27,11],[-24,3],[-27,-5],[-15,-13],[-52,-12],[-29,-3],[-23,0],[-20,16],[-18,9],[-38,0],[-33,4],[-24,7],[-9,24],[-18,14],[-14,23],[-20,13],[-23,1],[-24,-35],[-24,-27],[-26,-32],[-16,-23],[-30,-32],[-16,-19],[-15,-21],[-15,-16],[-30,-3],[-30,3],[-27,2],[-36,4],[-26,10],[-27,9],[-44,0],[-30,9],[-28,12],[-27,12],[-40,-13],[-24,-8],[-27,-14],[-24,-4],[-24,-1],[-27,-3],[-21,-6],[-36,1],[-25,12],[-14,18],[-1,21],[-34,5],[-32,9],[-39,1],[-28,-3],[-33,-11],[-21,-18],[-22,-8],[-5,-20],[-29,-5],[-16,-16],[-24,-12],[-20,2],[-27,1],[-26,-1],[-24,11],[-26,-20],[-24,-13],[-23,-14],[-27,-12],[-23,-10],[-31,-4],[-23,-3],[-46,-61],[-16,-27],[-3,-49],[-7,-30],[-20,-9],[-21,2],[-33,-5],[-14,15],[-37,20],[-33,8],[-6,41],[-17,34],[-18,13],[-31,20],[-18,12],[-17,21],[-4,19],[-16,32],[-19,9],[-17,12],[-19,24],[-8,31],[-12,24],[-21,11],[-24,16],[-17,33],[-6,22],[-10,27],[-14,21],[-34,-5],[-45,-11],[-42,-6],[-44,-6],[-33,-1],[-28,-1],[-25,1],[-16,-25],[-30,-15],[-21,-5],[-17,-11],[-18,-12],[-26,-11],[-2,-27],[-24,-12],[-21,-4],[-21,-11],[-10,-26],[-26,-19],[-22,2],[-33,-7],[-21,-13],[-21,-7],[-29,6],[-19,13],[-28,7],[-28,14],[-24,21],[-32,14],[-20,7],[-11,20],[-22,13],[-14,18],[-8,29],[-21,-2],[-22,-11],[-36,-23],[-26,6],[-18,19],[-22,10],[-19,-6],[-30,-4],[-22,-2],[-24,11],[-21,16],[-13,19],[-23,-10],[-1,-30],[-12,-23],[6,-24],[10,-24],[27,-15],[16,-13],[18,-44],[17,-29],[15,-14],[22,10],[22,-6],[21,-11],[16,-13],[13,-18],[23,-4],[32,-8],[21,-7],[22,-3],[18,9],[7,-22],[7,-21],[-13,-22],[-1,-23],[8,-36],[1,-28],[-10,-23],[-22,-18],[-27,-15],[-14,-18],[-15,-26],[-19,-14],[-15,-15],[15,-14],[21,-9],[2,-21],[-12,-17],[-24,-20],[-21,1],[-25,1],[-24,-1],[-15,-16],[-19,-26],[-26,-19],[-23,-4],[-20,-12],[-19,-11],[-17,-16],[-10,-33],[-19,-19],[-29,-22],[-21,-20],[-5,-27],[-4,-31],[9,-31],[21,-25],[12,-23],[-1,-22],[-18,-22],[-27,-8],[-21,-5],[-20,-5],[-26,-3],[-26,-1],[-20,-5],[-38,-1],[-27,0],[-25,-6],[-25,-17],[-21,-12],[-34,-9],[-24,-9],[-38,-22],[-27,-15],[-23,-4],[-22,-1],[-21,3],[-26,0],[-27,14],[-20,-3],[-38,-16],[-31,-10],[-22,0],[-31,0],[-22,-6],[-35,3],[-44,6],[-38,12],[-36,26],[-13,17],[-13,20],[-22,23],[-17,14],[-10,18],[-27,9],[-25,3],[-32,6],[-22,7],[-21,8],[-31,12],[-23,11],[-7,19],[-19,14],[-20,11],[-9,21],[-28,12],[-27,6],[-21,18],[-17,11],[-20,11],[-8,34],[-9,20],[-12,23],[-17,19],[-14,14],[-22,20],[-20,3],[-24,7],[-25,5],[-25,0],[-28,-15],[-25,-13],[-28,2],[-30,-4],[-23,2],[-24,-22],[-28,-14],[-35,-2],[-25,-4],[-27,-7],[-28,-6],[-28,5],[-26,18],[-33,13],[-22,16],[-18,15],[-19,9],[-26,2],[-25,-4],[-36,0],[-26,4],[-25,14],[-17,-12],[-4,-22],[-10,-20],[-20,-13],[-23,0],[-24,6],[-19,7],[-25,-9],[-18,-22],[-19,-9],[-24,3],[-24,9],[-6,26],[-24,5],[-19,8],[-23,29],[-24,9],[-24,5],[-36,5],[-33,13],[-23,3],[-30,-3],[-25,1],[-19,10],[-22,2],[-27,7],[-15,14],[-11,24],[-26,7],[-25,-11],[-24,-2],[-13,10],[-7,5],[-2,20],[-6,23],[-22,13],[-21,-5],[-32,-9],[-27,-2],[-25,-7],[-16,12],[-13,21],[-6,21],[-22,18],[-44,29],[-20,15],[-16,16],[5,27],[1,26],[-13,19],[2,22],[-15,19],[-24,13],[-23,13],[-17,16],[-10,22],[2,23],[9,24],[22,16],[27,11],[26,11],[18,17],[17,18],[25,19],[-9,25],[-25,13],[-21,12],[-31,1],[-19,8],[-20,12],[-30,9],[-28,1],[-29,3],[-26,9],[-17,18]],[[43247,88505],[24,10],[11,20],[9,26],[9,31],[6,20],[11,35],[7,19],[2,35],[2,20],[1,36],[-9,25],[4,21],[-29,12],[-37,4],[-22,-1],[-27,-1],[-21,-5],[-23,-2],[-32,3],[-35,19],[-25,25],[-22,15],[-24,4],[-34,17],[-19,23],[-38,46],[3,26],[12,23],[5,29],[-12,17],[-29,0],[-30,12],[-29,4],[-37,8],[-24,16],[-15,19],[-17,11],[-29,17],[-19,11],[-21,11],[-24,2],[-29,11],[-20,6],[10,21],[4,21],[-14,24],[26,54],[16,15],[22,5],[24,3],[-17,14],[5,28],[29,2],[34,13],[35,6],[19,13],[19,13],[20,-4],[26,-7],[30,-5],[26,-7],[45,-10],[20,-1],[29,-11],[23,-7],[68,15],[22,7],[10,19],[16,12],[23,18],[30,1],[39,2],[27,7],[17,18],[25,-1],[25,-13],[20,4],[19,9],[-4,24],[11,23],[6,29],[20,18],[-1,23],[-9,18],[-14,17],[9,23],[19,11],[26,10],[23,5],[12,23],[-19,16],[-16,15],[-11,22],[0,26],[-20,18],[-22,3],[-34,6],[-19,15],[-2,20],[-17,19],[-9,23],[-36,18],[-29,11],[-40,0],[-34,4],[-40,-5],[-32,-7],[-23,2],[-25,7],[-28,14],[-30,-8],[-36,5],[-24,12],[-26,-4],[-29,0],[-22,-1],[-24,5],[-11,22],[-5,29],[-6,19],[0,23],[16,14],[-24,27],[-20,25],[-11,21],[-12,34],[13,30],[17,30],[-4,27],[25,28],[19,14],[-27,19],[-25,32],[-20,14],[-30,9],[-19,5],[-7,33],[7,32],[-1,20],[-18,13],[-13,15],[-4,22],[1,33],[-9,36],[-3,22],[10,18],[-7,29],[-20,24],[-2,28],[-17,28],[-16,29],[-4,24],[-22,8],[-25,-1],[-37,-10],[-22,-9],[-33,-11],[-27,2],[-23,-16],[-44,28],[-15,20],[-18,11],[-21,17],[-32,8],[-16,27],[-20,31],[1,25],[14,25],[-28,22],[-24,38],[-5,27],[-23,8],[-42,18],[-33,15],[-31,9],[-34,-3],[-34,-7],[-29,-12],[-22,-10],[-26,-5],[-31,-8],[-8,-4],[-15,-8],[-45,-20],[-25,-24],[-26,-20],[-26,-11],[-17,-41],[-22,-19],[-44,-11],[-27,1],[-27,5],[-33,10],[-44,-3],[-26,-5],[-39,-11],[-29,-18],[-24,-24],[-9,-20],[-9,-42],[-7,-22],[-3,-27],[-26,-13],[-33,-8],[-32,-8],[-20,24],[-16,14],[-7,32],[-6,19],[-28,30],[-15,40],[-21,24],[-10,17],[-9,27],[-9,21],[-10,30],[-17,14],[-21,18],[5,26],[-15,20],[-4,21],[-8,28],[-22,34],[-36,18],[-21,14],[2,33],[1,30],[8,20],[34,16],[-5,35],[8,34],[-12,26],[-15,28],[-26,28],[-24,19],[-18,16],[-3,27],[-4,34],[-2,21],[-16,21],[9,22],[-8,22],[-12,16],[-19,26],[-5,21],[-5,24],[-6,26],[-11,18],[-15,34],[-12,31],[-21,32],[-24,27],[5,35],[0,34],[0,24],[-10,46],[-14,24],[6,28],[15,21],[17,28],[13,18],[12,22],[11,30],[5,40],[1,33],[-1,30],[-19,17],[-26,20],[2,32],[-1,21],[-4,24],[-2,25],[-5,25],[-12,25],[-11,25],[7,32],[-4,31],[11,31],[23,13],[21,15],[-14,33],[-20,22],[-16,16],[-31,7],[-29,10],[-32,16],[-25,16],[4,29],[-12,34],[-17,23],[-17,20],[-5,39],[16,14],[18,22],[-4,22],[18,32],[3,30],[-11,26],[-8,24],[-6,22],[-2,22],[-11,18],[-13,17],[-9,29],[0,36],[-13,36],[-17,18],[-6,25],[-11,18],[-22,18],[-21,7],[-23,24],[-19,22],[-29,21],[-20,18],[-11,19],[-17,18],[-23,27],[5,31],[-3,26],[-15,15],[-8,30],[-11,20],[-12,21],[-10,25],[-8,28],[-25,5],[-28,9],[-20,6],[-33,0],[-33,20],[-42,26],[-31,13],[-23,3],[-35,15],[-26,16],[-20,23],[-12,33],[-7,27],[-1,26],[-19,21],[-16,18],[3,27],[-13,21],[-21,27],[-14,16],[-5,22],[11,31],[-8,35],[6,22],[16,22],[29,21],[94,45],[17,12],[0,50],[-10,22],[-12,24],[-16,69],[1,34],[15,55],[-1,29],[0,32],[-10,31],[14,31],[15,26],[14,15],[1,32],[-9,25],[-8,22],[7,33],[50,63],[11,25],[58,55],[6,42],[22,36],[20,19],[17,20],[14,33],[11,39],[9,40],[0,29],[4,32],[11,20],[-4,21],[-19,22],[-5,21],[-11,37],[10,38],[6,21],[10,25],[20,26],[23,13],[23,10],[23,12],[21,13],[11,24],[2,36],[9,31],[38,18],[37,24],[12,6],[48,24],[49,9],[41,3],[15,24],[32,47],[6,23],[16,33],[11,22],[17,39],[-4,37],[10,22],[13,20],[-12,31],[-23,25],[-31,29],[-26,37],[-33,38],[-49,38],[-34,20],[-36,13],[-20,-2],[-22,0],[-17,13],[-28,8],[-35,5],[-32,15],[-23,24],[-13,23],[21,40],[-11,24],[-17,23],[-3,22],[17,29],[22,25],[16,19],[-31,38],[-28,13],[-34,25],[-27,14],[-19,26],[-2,23],[-4,24],[-44,8],[-14,18],[-1,23],[-13,26],[-16,21],[-27,33],[-22,35],[-14,23],[-4,7],[-11,18],[-17,31],[-34,55],[9,29],[-16,26],[-5,22],[-10,23],[-12,32],[15,25],[5,36],[-21,30],[-12,18],[-11,32],[-21,35],[9,21],[-26,25],[-17,29],[-15,23],[1,23],[19,15],[-12,19],[-27,20],[-25,-5],[-37,16],[-26,18],[-18,12],[-25,0],[-32,-2],[-22,-6],[-28,14],[-2,24],[-7,21],[9,23],[1,34],[12,22],[-14,26],[-23,10],[-1,25],[-20,27],[-18,30],[-15,26],[-21,21],[-42,32],[-17,28],[-26,4],[-12,22],[-15,14],[-9,45],[-14,17],[-38,24],[-23,31],[-3,36],[-21,22],[-19,36],[-33,24],[-23,32],[-28,35],[-52,30],[-21,2],[-26,14],[-25,6],[-26,22],[-66,8],[-22,14],[-37,15],[-20,17],[-21,5],[-41,9],[-23,-1],[-16,13],[-13,15],[-20,21],[-8,20],[-24,47],[-54,16],[-26,17],[-37,27],[-15,17],[-18,26],[-15,16],[-30,27],[-29,51],[-21,21],[-11,18],[-23,27],[3,30],[-10,27],[-26,46],[6,34],[-12,43],[7,19],[-2,31],[-16,22],[-1,22],[-13,18],[-11,20],[-16,18],[-24,24],[-15,20],[6,29],[-9,26],[-19,11],[-23,30],[-18,18],[-13,38],[-20,24],[2,25],[-27,28],[-19,27],[-17,23],[-8,18],[-18,21],[-36,0],[-30,-4],[-22,-9],[-9,19],[-13,28],[-15,24],[-26,20],[-25,6],[-34,10],[-15,17],[-20,9],[-4,25],[0,24],[-22,38],[0,38],[-8,23],[-27,32],[-4,30],[-2,29],[-3,20],[6,20],[-4,22],[-19,26],[-12,21],[-14,27],[-20,23],[-11,17],[-20,19],[-26,15],[-28,6],[-20,4],[-70,93]],[[37650,99919],[1111,-1],[501,1],[2594,9],[54,0],[426,1],[1689,6],[196,0],[434,2],[61,0],[5840,19],[222,1]],[[59989,85013],[-47,1],[-48,0],[-38,-1],[-44,-2],[-101,0],[-41,-7],[-32,-6],[-22,-11],[-15,-14],[-22,-10],[-38,-26],[-23,-18],[-27,-18],[-26,-9],[-1,0],[-27,-17],[-20,-19],[-23,-27],[-16,-25],[-1,-3],[-21,-34],[-10,-20],[-20,-14],[-19,-28],[-61,-67],[-25,-27],[-29,-29],[-40,-41],[-44,-49],[-44,-63],[-44,-75],[-20,-60],[-12,-37],[-21,-37],[-14,-22],[-32,-39],[-31,-25],[-22,18],[0,1],[-154,120],[-50,-25],[-90,-43],[-78,-47],[-91,-15],[-99,-18],[-50,-9],[23,-56],[52,-128],[-24,-13],[-24,-9],[-22,-19],[-17,-12],[-17,-11],[-24,-14],[-23,-4],[-17,-16],[-22,-8],[-15,-17],[-19,-9],[-21,-11],[8,-19],[13,-16],[-5,-32],[-44,-27],[-47,-5],[-30,-22],[-34,-22],[-22,-9],[-33,-7],[-21,-19],[-25,-22],[-19,-8],[-28,-10],[-15,-26],[-18,-15],[-16,-12],[-27,-2],[-22,-14],[-34,-9],[-60,6],[-29,6],[-33,-12],[-15,-16],[-33,-13],[-15,-26],[-26,-12],[-20,-13],[-27,-28],[-30,1],[-20,-2],[-31,-15],[-38,7],[-27,5],[-26,12],[-22,-8],[-36,-6],[-24,-8],[-51,-29],[-29,-7],[-22,-13],[-21,-13],[-24,-12],[-26,-2],[-41,-6],[-21,-13],[-21,-7],[-48,-17],[-54,-26],[-23,-15],[-41,-28],[-27,-19],[-22,-14],[-27,-5],[-32,-15],[-32,-27],[-49,-47],[-20,-5],[-22,-11],[-14,-18],[-25,-5],[-16,-22],[-16,-17],[-2,-23],[-23,-21],[-26,-9],[-21,-1],[-3,-23],[-21,-20],[-33,-8],[-12,-19],[-55,-21],[-24,-2],[-32,-1],[-33,0],[-42,-10],[-31,16],[-7,20],[-13,15],[-20,10],[-18,-18],[-30,1],[-24,1],[-38,2],[-21,-9],[-22,-7],[-26,-7],[-58,-13],[-32,-7],[-65,-21],[-26,-1],[-17,18],[-22,25],[-4,20]],[[55630,82865],[9,27],[24,9],[29,4],[22,16],[17,34],[11,19],[18,13],[13,16],[20,21],[13,17],[23,10],[15,14],[38,51],[29,17],[64,47],[13,19],[49,63],[31,4],[14,25],[11,19],[13,22],[13,18],[23,20],[29,19],[22,36],[13,24],[24,21],[8,23],[14,18],[11,18],[-7,21],[-26,17],[-15,28],[-12,22],[6,35],[29,15],[20,0],[32,20],[21,7],[18,9],[24,24],[8,30],[15,21],[19,15],[16,16],[-20,7],[-18,12],[-16,16],[-14,22],[-17,9],[-12,17],[-13,28],[-13,18],[17,31],[16,29],[-15,25],[-4,21],[26,23],[32,6],[23,15],[17,32],[-19,19],[38,35],[14,14],[30,22],[30,20],[-1,24],[0,21],[-49,23],[-26,3],[-17,19],[-54,10],[-33,0],[-31,5],[-19,8],[-22,1],[-23,-14],[-47,-13],[-19,-9],[-47,-9],[-23,-6],[-41,-3],[-38,2],[-23,-2],[-26,-7],[-29,-13],[-43,2],[-32,30],[-16,14],[-36,15],[18,29],[16,17],[12,17],[11,26],[14,19],[4,34],[1,30],[-12,29],[-5,20],[-22,12],[-38,-12],[-33,-3],[-24,0],[-19,-10],[-25,-11],[-22,2],[-21,1],[-21,-8],[-80,-5],[-34,6],[-38,-10],[-20,-11],[-69,-7],[-33,5],[-34,-19],[-25,-3],[-18,23],[-6,24],[7,19],[13,21],[10,22],[42,31],[28,8],[26,14],[13,24],[62,24],[27,13],[31,11],[9,25],[-28,50],[-34,17],[-55,54],[-31,6],[-15,40],[-3,24],[8,22],[3,21],[-20,26],[13,29],[16,16],[-8,30],[-11,18],[15,18],[-20,30],[-27,18],[-18,20],[-19,30],[28,11],[29,12],[25,9],[32,13],[21,16],[-2,27],[-18,20],[-19,46],[-4,31],[11,18],[-9,29],[-15,18],[-2,30],[-6,24],[13,23],[22,14],[29,21],[13,22],[15,14],[17,16],[38,26],[41,13],[49,3],[30,14],[19,17],[19,18],[19,11],[5,33],[19,21],[13,19],[-12,30],[-6,27],[-21,46],[-25,18],[-46,6],[-20,8],[-29,11],[-27,9],[-46,-2],[-29,6],[-34,5],[-10,19],[1,25],[-39,15],[-25,11],[-21,10],[-29,2],[-35,10],[-32,18],[-22,7],[-26,4],[10,27],[25,19],[7,21],[-14,16],[-26,1],[-24,-4],[-24,-12],[-31,-6],[-21,5],[-31,23],[-24,30],[-19,38],[-6,23],[-3,23],[-2,26],[-17,23],[-19,13],[20,14],[28,6],[20,21],[-11,29],[-7,64],[1,22],[-3,23],[-10,22],[5,20],[-19,20],[-34,3],[-32,21],[-21,3],[-32,5],[-18,13],[-44,13],[-60,40],[-25,23],[-24,17],[-25,10],[-25,12],[-19,5],[-19,13],[-20,14],[-25,34],[-27,34],[-37,9],[-35,10],[-25,-1],[-39,9],[-34,3],[-18,21],[7,29],[-8,45],[10,34],[-17,52],[-23,22],[-22,5],[-16,25],[-23,4],[-21,-2],[-23,-10],[-24,-1],[-23,-10],[-20,1],[-20,-5],[-27,3],[-15,21],[-20,14],[-30,9],[-38,17],[-23,11],[2,35],[-28,24],[-45,5],[-57,3],[-23,-2],[-42,0],[-27,0],[-26,-5],[-48,-10],[-23,-2],[-33,-2],[-24,-2],[-22,-5],[-18,13],[-8,20],[-2,25],[-8,22],[-24,27],[-18,12],[-22,9],[-29,2],[-25,13],[-11,25],[-21,3],[-41,15],[-44,22],[-21,18],[-24,19],[-37,7],[-29,0],[-42,-6],[-62,-2],[-27,-7],[-49,-2],[-22,3],[-32,-16],[-44,-26],[-21,-26],[-36,-7],[-21,-2],[-12,-24],[-1,-23],[0,-30],[-10,-26],[5,-30],[-18,-10],[-31,4],[-21,-3],[-22,-10],[-29,-2],[-73,13],[-38,1],[-34,-2],[-21,-9],[-38,-6]],[[52522,87206],[-28,13],[-21,18],[-9,20],[-21,9],[-30,-13],[-28,-16],[-20,-4],[-34,-14],[-21,-2],[-26,2],[-30,4],[-27,14],[-23,26],[-10,21],[-10,20],[-27,6],[-28,-12],[-30,3],[-29,6],[-54,4],[-17,17],[7,19],[12,35],[12,19],[-35,14],[-23,19],[-32,1],[-33,4],[-26,-4],[-53,-1],[-21,7],[-42,2],[-24,4],[-19,10],[-14,19],[-16,32],[9,26],[-18,32],[-20,13],[-41,20],[-21,5],[-69,9],[-25,9],[-29,19],[-39,13],[-21,2],[-20,0],[-19,19],[-1,27],[-5,23],[-3,67],[16,59],[2,21],[7,23],[10,21],[11,19],[13,24],[-16,18],[-36,8],[-51,11],[-22,3],[-35,37],[-18,34],[-24,1],[-43,1],[-35,-1],[-21,-1],[-29,7],[-44,14],[-36,23],[-30,14],[-30,8],[-18,19],[-10,25],[-3,25],[-22,18],[-22,12],[-21,11],[-29,1],[-31,3],[-22,3],[2,23],[16,17],[6,22],[7,24],[-19,12],[-20,8],[-20,9],[-19,13],[-11,24],[-2,32]],[[50778,99957],[1950,9],[55,0],[1372,6],[811,4],[707,3],[4309,20],[6,-2762],[1,-455],[0,-49],[0,-24],[0,-43],[0,-59],[1,-285],[1,-754],[0,-55],[8,-3942],[-1,-1168],[-4,-2183],[-5,-3169],[0,-38]],[[43247,88505],[-21,-11],[-22,-11],[-20,-7],[-33,-19],[-14,-15],[-21,-27],[-6,-26],[-8,-27],[-7,-23],[-36,6],[-36,-2],[-22,-7],[-19,12],[-18,9],[-24,7],[-23,-1],[-32,-8],[-27,-15],[-10,-25],[-1,-28],[-25,-4],[-19,9],[-23,-1],[-22,-11],[-24,-8],[-27,-3],[-20,-11],[-25,-19],[-23,-2],[-25,-2],[-16,-13],[-31,6],[-28,0],[-23,6],[-19,6],[-23,-5],[-20,-5],[-34,-3],[-28,24],[-25,21],[-28,17],[-28,12],[-26,-4],[-30,-3],[-22,-2],[-39,0],[2,22],[-11,24],[-21,15],[-9,21],[-22,16],[-30,17],[-23,13],[-5,23],[-31,16],[-26,11],[-24,17],[-22,12],[-22,21],[-20,5],[-21,8],[-22,16],[-8,21],[-13,19],[-1,21],[-25,19],[-28,18],[-27,6],[-3,-22],[-11,-26],[-10,-19],[-28,-36],[-16,-22],[-18,-28],[-17,-24],[-30,-16],[-15,-14],[-18,-14],[-21,-16],[-23,-16],[-34,-13],[-30,-13],[5,-28],[-1,-22],[13,-23],[3,-28],[13,-23],[18,-14],[10,-20],[21,-27],[14,-20],[2,-26],[1,-33],[5,-34],[-1,-28],[-3,-26],[-4,-20],[3,-30],[-2,-24],[-1,-29],[4,-27],[-9,-29],[-5,-27],[-11,-21],[-14,-16],[-27,-31],[-19,-20],[-21,-11],[-5,-25],[-12,-23],[-23,-7],[-19,-11],[10,-24],[15,-21],[3,-23],[-7,-24],[-13,-28],[2,-26],[18,-17],[22,-12],[28,-20],[14,-16],[14,-15],[19,-18],[21,-20],[17,-27],[19,-25],[49,-48],[17,-19],[-37,-24],[-142,-46],[-104,-76],[-142,-60],[-30,-14],[-143,-48],[-60,-56],[-114,6],[-34,-26],[0,-42],[-67,-34],[-20,-16],[-94,-12],[-32,14],[-132,0],[-36,-12],[-26,-42],[-74,-81],[-11,-13],[-26,-2],[-12,0],[-16,-2],[-49,0],[-1,0],[-78,0],[-126,0],[-379,0],[-16,0],[-58,2],[-133,10],[-192,2],[-277,2],[-33,1],[-456,3],[-53,1],[-39,1],[-116,-12],[-32,0],[-82,0],[-309,0],[-156,0],[-30,0],[-33,0],[-154,0],[-53,0],[-170,0],[-281,0],[-36,0],[-68,0],[-30,0],[-273,0],[-413,0],[-258,-255],[-19,-20],[-147,-150],[-142,-143],[-193,-197],[-77,-78],[-135,-137],[-36,-37],[-115,-117],[-146,-148],[-142,-145],[-16,-16],[-286,-291],[-307,-311],[-14,-15],[-3,-3],[-315,-319],[-217,-224],[-184,-189],[-1409,-1438],[-938,-963]],[[31117,81516],[-147,-33],[-718,-181],[-455,-114],[-517,-130],[-407,-102],[-397,-99],[-583,-146],[-171,-43],[-910,-229],[-787,-198],[-43,-15],[-348,-86],[-620,-153],[-123,-1],[-417,-5],[-403,0],[-47,0],[-226,0],[-311,0],[-518,0],[-296,0],[-672,0],[-940,0],[-68,0],[-121,0],[-212,0],[-364,0],[-121,0],[-344,0],[-288,0],[-184,0],[-698,0],[-162,0],[-70,0],[-692,0],[-618,0],[-128,0],[-987,0],[-308,0],[-1535,0],[-7,0],[-274,0],[-369,0],[-107,0],[-123,0],[-196,0],[-2068,0],[-1544,0],[-847,0],[-103,0],[-2120,0],[-374,0],[-694,0],[-61,0],[-147,0],[-798,0],[-7,0],[-787,0],[-228,0],[-1484,0],[-116,0],[-128,0],[-59,0],[-79,0],[-46,0],[-143,0],[-195,0],[-16,0],[-254,0],[-29,0],[-273,0],[-267,1]],[[218,79982],[1,198],[0,160],[0,31],[0,103],[1,250],[0,366],[1,220],[2,966],[0,36],[0,56],[0,77],[5,34],[0,50],[0,176],[0,137],[1,421],[0,119],[0,120],[1,294],[0,245],[0,68],[0,25],[-21,61],[22,183],[1,47],[0,181],[0,81],[0,181],[-1,93],[4,90],[0,128],[1,109],[0,103],[2,155],[0,157],[1,113],[1,222],[2,368],[1,166],[1,87],[1,151],[0,7],[2,357],[0,24],[0,2],[0,33],[1,88],[0,21],[0,38],[1,95],[0,327],[1,146],[0,180],[0,50],[0,279],[1,33],[2,542],[0,233],[1,142],[0,151],[0,133],[1,118],[-5,53],[-9,112],[2,513],[1,162],[3,738],[0,31],[0,58],[1,135],[0,185],[1,219],[2,249],[9,208],[0,231],[0,242],[-1,56],[0,189],[-1,783],[0,50],[0,35],[1,82],[1,175],[0,139],[1,146],[0,2],[0,44],[1,165],[0,159],[-1,77],[-2,189],[-1,83],[-2,121],[-14,1130],[-5,412],[12,181],[15,305],[1,106],[1,55],[0,37],[-2,130],[-4,290],[-7,394],[-1,67],[-3,202],[-1,59],[-2,108],[-7,333],[0,31],[-1,33],[-1,67],[0,25],[-4,181],[-2,133],[-8,121],[834,1],[128,1],[186,0],[4467,6],[2424,3],[1450,2],[4585,6],[1078,12],[1843,20],[2397,26],[573,6],[789,9],[3410,-3],[2484,-2],[8999,-7],[593,0],[159,0],[414,-1],[525,0],[89,0]],[[52522,87206],[3,-35],[-29,-24],[-16,-16],[-19,-25],[-5,-20],[5,-22],[3,-40],[4,-33],[-11,-18],[-10,-18],[14,-15],[-6,-30],[-27,-20],[-13,-23],[-4,-24],[-29,-16],[-21,-13],[-32,-5],[-30,11],[-20,-1],[-29,2],[-19,-8],[-10,-18],[-14,-36],[-26,-25],[19,-24],[2,-20],[-20,-44],[14,-23],[8,-31],[-15,-18],[10,-30],[3,-27],[-20,-26],[10,-22],[7,-22],[-17,-11],[-24,-4],[-28,1],[-27,-6],[-30,-5],[-17,-18],[-7,-19],[-3,-32],[-15,-20],[-16,-15],[-29,-15],[-31,-7],[-4,-24],[25,-14],[8,-25],[-8,-28],[-8,-18],[20,-3],[18,-16],[26,-28],[14,-22],[12,-25],[-8,-26],[5,-30],[17,-20],[12,-24],[17,-16],[-12,-23],[7,-25],[22,-16],[30,-27],[2,-21],[-12,-16],[-34,-11],[-23,-12],[21,-19],[30,-20],[9,-18],[-43,-20],[-28,-11],[-19,-24],[-21,-18],[-14,-17],[-24,-17],[-3,-34],[20,-22],[13,-18],[10,-19],[4,-33],[-29,-10],[-28,-15],[-27,-15],[-22,-2],[-19,-14],[-25,-10],[-28,7],[-23,-6],[-33,-17],[-21,-4],[-4,-23],[4,-25],[13,-21],[-3,-25],[-15,-22],[-32,-2],[-23,-11],[-33,-18],[-5,-23],[-29,-24],[-20,-10],[-23,-15],[-7,-26],[18,-17],[18,-9],[12,-28],[-20,-14],[-31,-12],[-21,1],[-34,-15],[-21,-12],[-12,-19],[6,-28],[5,-23],[-16,-20],[-35,-6],[-23,-13],[-60,7],[-19,-19],[-4,-24],[7,-25],[18,-21],[-6,-25],[-40,5],[-62,3],[-18,-22],[-19,-17],[-22,-1],[-33,4],[-17,-16],[-35,-11],[-67,-22],[-28,-9],[12,-21],[20,-9],[19,-11],[17,-27],[-11,-20],[-36,-46],[-18,-14],[-31,-35],[-14,-23],[-6,-33],[8,-41],[-82,30],[-71,20],[-18,16],[-25,16],[-22,3],[-32,3],[-31,-1],[-20,-17],[-26,-19],[-34,0],[-43,7],[-30,0],[-27,-1],[-50,4],[-32,-1],[-21,-12],[-36,-3],[-27,4],[-23,12],[-11,24],[-15,37],[-36,25],[-38,26],[-21,13],[-24,6],[-39,6],[-44,-5],[-33,3],[-24,-1],[-22,5],[-70,10],[-94,5],[-51,5],[-38,15],[-28,17],[-21,15],[-39,1],[-37,-9],[-48,-8],[-48,-9],[-32,-2],[-41,-2],[-31,6],[-35,8],[-33,3],[-41,-13],[-35,-12],[-39,0],[-35,7],[-28,11],[-24,16],[-34,18],[-23,0],[-42,-14],[-41,-8],[-35,-15],[-37,-26],[-50,-32],[-23,-13],[-37,-28],[-27,-22],[-28,-26],[-40,-37],[-33,-18],[2,-23],[17,-16],[23,-22],[14,-42],[-5,-27],[-19,-43],[-15,-45],[-6,-45],[-30,-83],[-23,-34],[-14,-15],[-157,-37],[-40,-18],[-26,-20],[-14,-34],[3,-39],[-12,-27],[-19,-13],[-31,-10],[-20,-7],[-39,-3],[-28,-2],[-37,-2],[-54,7],[-48,2],[-30,-2],[-25,-5],[-27,-23],[-16,-17],[-31,-29],[-23,-35],[-22,-24],[-26,-13],[-52,-22],[-31,-11],[-31,-18],[-18,-18],[-19,-25],[-26,-21],[-36,8],[-23,10],[-30,14],[-34,6],[-42,1],[-36,-6],[-23,-17],[-17,-13],[-14,-15],[-52,-1],[-4,-27],[8,-19],[-20,5],[-20,4],[-23,-4],[-21,-14],[-25,-31],[-36,9],[-28,6],[-22,-5],[-31,-14],[-25,-5],[-21,4],[-24,13],[-29,2],[-33,0],[-30,-1],[-30,12],[-30,3],[-27,1],[-25,-4],[-24,-10],[-30,16],[-18,12],[-30,4],[-37,3],[-42,0],[-16,13],[-31,20],[-33,13],[-29,10],[-29,5],[-38,1],[-27,2],[-17,36],[-11,16],[-25,7],[-22,26],[-27,20],[-36,25],[-40,11],[-28,16],[-3,35],[-30,18],[-41,7],[-20,6],[-33,23],[-27,15],[-20,13],[-23,12],[-19,10],[-31,6],[-21,0],[-31,20],[-20,2],[-37,15],[-13,21],[-10,25],[-1,24],[4,28],[7,35],[2,31],[-9,22],[-24,13],[-15,22],[-33,-3],[-39,-13],[-21,9],[-15,14],[-27,-6],[-16,-17],[-19,-13],[-12,-27],[-18,-25],[-22,-10],[-35,-11],[-22,-21],[-31,-1],[-23,-6],[13,26],[12,22],[-21,20],[-26,15],[-19,10],[-24,9],[-24,18],[-18,8],[-17,20],[-13,23],[-21,16],[-16,14],[-20,-2],[-21,-9],[-25,-11],[-28,-8],[-15,15],[-16,18],[-28,9],[-18,-12],[-23,-9],[-26,2],[-20,-4],[-25,11],[-21,-4],[-24,13],[-21,0],[-18,-13],[-27,-14],[-13,-24],[-22,4],[-25,4],[-22,-14],[-24,5],[-16,16],[-22,2],[-24,-4],[-13,-2],[-57,-15],[-31,-3],[-26,-36],[-33,-30],[-22,-9],[-29,6],[-20,-10],[-2,-28],[-6,-11],[-14,-24],[-18,-19],[-22,-23],[-21,-16],[-20,-18],[-23,-3],[-24,-3],[-23,-1],[-25,13],[-24,6],[-23,1],[-30,-10],[-23,2],[-22,0],[-19,-11],[-24,-21],[-25,-2],[-20,-2],[-22,-10],[-29,-8],[-18,-16],[-1,-24],[-32,-9],[-22,-8],[-40,-5],[-34,5],[-32,-12],[-25,-4],[-31,-5],[-21,-4],[-23,-4],[-21,2],[-25,-7],[-25,0],[-34,-4],[-29,1],[-33,2],[-15,-17],[-12,-23],[-10,-26],[-18,-14],[-27,-14],[-27,-12],[-26,-11],[-29,-15],[-31,-12],[-18,-10],[-40,-14],[-19,-14],[-22,-10],[-5,-22],[6,-22],[20,-25],[2,-26],[16,-14],[24,-20],[7,-24],[-16,-16],[-17,-24],[-8,-22],[-2,-26],[-23,-18],[-21,-18],[-17,-11],[-14,-17],[-26,-22],[-9,-25],[17,-16],[20,-26],[17,-14],[14,-24],[18,-14],[18,-17],[0,-25],[12,-17],[5,-26],[19,-16],[24,-10],[21,-17],[22,-8],[25,-2],[23,-6],[20,-10],[21,3],[23,-8],[30,-10],[26,-10],[18,-10],[23,-20],[19,-10],[7,-22],[0,-32],[-3,-27],[-18,-18],[-19,-14],[-19,-18],[7,-26],[-8,-24],[1,-35],[18,-19],[4,-31],[-2,-18],[-1,-5],[2,-9],[2,-17]],[[43829,82761],[-20,-4],[-19,2],[-9,0],[-2,2],[-17,14],[-21,-6],[0,-6],[-1,-28],[-1,0],[-20,-5],[-11,0],[-11,-1],[-6,1],[-13,2],[-13,2],[-9,2],[-18,4],[-20,2],[-32,2],[-25,0],[-18,-2],[-6,-1],[-10,1],[-23,2],[-15,2],[-5,1],[-9,-1],[-19,-2],[-24,-7],[-14,-5],[-10,-3],[-23,1],[-3,0],[-26,0],[-17,-2],[-28,-3],[-54,0],[-24,5],[-25,4],[-24,1],[-26,-7],[-2,-1],[-44,-11],[-24,-6],[-25,-9],[-28,-7],[-45,-1],[-30,6],[-20,5],[-22,3],[-25,1],[-23,-5],[-28,-5],[-30,-6],[-26,-15],[-24,-3],[-5,-1],[-6,0],[-20,1],[-5,1],[-25,1],[-24,5],[-27,5],[-50,13],[-9,2],[-16,17],[-1,1],[-5,6],[-19,21],[-21,10],[-2,0],[-27,7],[-27,-1],[-25,-2],[-29,3],[-55,-13],[-26,-19],[-6,-3],[-19,-4],[-28,19],[-20,16],[-23,1],[-26,-4],[-25,-12],[-29,-7],[-42,0],[-20,-3],[-49,2],[-25,-5],[-24,16],[-10,24],[-30,1],[-22,-7],[-23,4],[-20,23],[-11,16],[-2,2],[-51,33],[-10,31],[-11,23],[-17,11],[-20,8],[-6,7],[-3,4],[-11,13],[-8,21],[-1,2],[-22,9],[-30,8],[-20,7],[-20,9],[-41,10],[-17,11],[-19,7],[-34,0],[-23,2],[-36,11],[-27,3],[-58,7],[-88,3],[-38,1],[-74,2],[-5,0],[-25,0],[-69,-2],[-27,1],[-105,1],[-24,-2],[-36,-2],[-46,-2],[-35,-1],[-50,-3],[-64,-3],[-22,-2],[-30,-1],[-25,-2],[-38,-2],[-29,-2],[-29,0],[-19,-1],[-6,0],[-37,-2],[-4,0],[-20,-1],[-28,0],[-30,2],[-44,-2],[-36,4],[-21,2],[-34,-2],[-19,0],[-17,0],[-34,0],[-29,-2],[-23,-1],[-33,-1],[-24,2],[-13,0],[-11,0],[-45,0],[-39,0],[-34,0],[-22,0],[-50,-2],[-107,0],[-26,0],[-47,-1],[-12,-1],[-173,3],[-52,1],[-27,0],[-22,0],[-52,-1],[-59,-1],[-34,0],[-25,1],[-39,0],[-74,1],[-72,0],[-83,0],[-49,0],[-40,0],[-68,2],[-81,-2],[-20,2],[-189,0],[-7,0],[-196,2],[-117,0],[-80,0],[-117,0],[-39,0],[-46,2],[-109,0],[-140,0],[-86,0],[-13,0],[-15,0],[-22,0],[-22,0],[-41,2],[-7,-2],[-42,4],[-37,2],[-7,-1],[-8,-4],[-38,1],[-91,2],[-24,-1],[-27,-1],[-5,0],[-3,-2],[-19,-5],[-89,-19],[-94,-20],[-23,-5],[-29,-7],[-29,-6],[-25,-6],[-25,-5],[-164,-38],[-164,-37],[-76,-17],[-21,-5],[-97,-22],[-182,-42],[-183,-41],[-210,-62],[-456,-132],[-253,-68],[-33,-9],[-34,-9],[-622,-158],[-487,-118],[-399,-100],[-1501,-376],[-846,-212]],[[55630,82865],[-21,-7],[-78,-14],[-27,4],[-27,-6],[-33,-11],[-34,-1],[-25,8],[-20,-1],[-28,-3],[-34,-3],[-32,1],[-25,5],[-30,2],[-21,-1],[-22,0],[-40,8],[-20,-2],[-26,-18],[-17,-23],[-34,-47],[-54,-19],[-38,-9],[-29,-13],[-10,-24],[-14,-28],[-50,-10],[-23,-19],[-8,-23],[-20,-12],[-76,2],[-22,13],[-30,7],[-25,5],[-27,-6],[-41,7],[-21,16],[-21,27],[-18,13],[-29,19],[-33,26],[-24,-7],[-28,-5],[-37,9],[-48,7],[-35,6],[-26,-18],[-30,-50],[-31,-19],[-20,-12],[-59,-11],[-27,-17],[-12,-21],[-21,-23],[-28,-10],[-34,0],[-19,8],[-19,13],[-37,-1],[-23,12],[-20,-6],[-31,-18],[-38,-3],[-21,2],[-33,4],[-24,-7],[-22,-12],[-20,-7],[-30,3],[-16,21],[-17,13],[-29,-8],[-2,-31],[-16,-60],[4,-37],[-17,-20],[4,-31],[10,-28],[-16,-14],[-34,-22],[8,-26],[-13,-16],[-51,-32],[-17,-23],[-29,-14],[-1,-30],[-1,-28],[-16,-13],[-20,-21],[8,-41],[-20,-20],[-2,-49],[4,-24],[-4,-33],[-13,-15],[-37,-5],[-15,-24],[5,-29],[21,-20],[-7,-23],[-13,-18],[4,-23],[12,-18],[5,-25],[-6,-19],[-6,-21],[-20,-5],[-25,-1],[-24,-1],[-20,-8],[-34,-22],[-24,9],[-25,-1],[-30,-12],[-19,-25],[-11,-19],[1,-22],[-21,2],[-20,-6],[-23,-18],[-31,-4],[-21,7],[-24,10],[-27,-1],[-16,-17],[-19,-22],[-26,-8],[-19,3],[-23,-21],[-8,-30],[-20,-9],[-15,-15],[-31,-5],[-28,7],[-16,-16],[-19,-9],[-41,9],[-30,-3],[-24,-1],[-34,19],[-73,33],[4,26],[-4,25],[-24,15],[-23,3],[-26,5],[-41,1],[-23,10],[-28,1],[-21,-12],[-34,-1],[-24,8],[-22,12],[-23,-4],[-24,-1],[-24,-9],[-30,5],[-27,9],[-20,-2],[-24,6],[-25,11],[-30,-6],[-24,-14],[-16,-21],[-19,-11],[-22,-24],[-20,-30],[-18,-22],[-23,-26],[-18,-10],[-35,-11],[-22,-15],[-28,-4],[-32,-3],[-35,5],[-25,-11],[-17,-12],[-31,-11],[-22,-25],[-14,-22],[-12,-23],[-25,-20],[-21,-16],[-29,-15],[-18,-10],[-30,11],[-23,-12],[-26,-4],[-31,-7],[-39,-9],[-22,-21],[-33,-8],[-23,1],[-26,-2],[-22,-6],[-21,-5],[-49,12],[-17,19],[-17,16],[-35,12],[-28,-7],[-42,-20],[-16,-15],[-33,-10],[-64,17],[-24,6],[-75,2],[-9,-23],[-29,-18],[-18,-23],[-35,-25],[-21,-2],[-24,-3],[-30,-8],[-26,-6],[-24,2],[-37,-11],[-51,-15],[-48,-27],[-9,-5],[-47,-27],[-11,-7],[-30,-17],[-9,-5],[-32,-20],[-20,-25],[-24,-11],[-18,-25],[-22,-14],[-32,-10],[-36,-20],[-18,-20],[-6,-27],[-16,-22],[-22,-31],[-37,-22],[8,-44],[-29,-14],[-38,-5],[-23,-9],[-33,-9],[-18,-28],[-32,-18],[-27,-26],[15,-18],[30,-25],[-17,-17],[-29,-17],[-19,-10],[-3,-22],[5,-26],[-28,-19],[11,-31],[60,-16],[18,-23],[-29,-50],[3,-27],[-25,-27],[-13,-33],[-39,-26],[-3,-26],[-47,-15],[-59,-46],[-14,-16],[-46,-48],[-37,-36],[5,-20],[36,-30],[-44,-9],[-28,10],[-22,8],[-43,-21],[-27,-28],[-23,-12],[-30,-11],[-9,-19],[-45,-10],[-22,5],[-34,-1],[-48,8],[-22,2],[-26,-15],[-21,-13],[-21,-10],[-13,-19],[-28,-8],[-19,-15],[-5,-26],[-3,-44],[-2,-29],[0,-25],[15,-15],[21,-19],[15,-24],[6,-21],[11,-20],[15,-17],[14,-20],[22,-21],[-9,-40],[-2,-39],[5,-23],[5,-39],[-6,-28],[-3,-20],[17,-28],[-6,-44],[27,-14],[16,-16],[9,-21],[13,-22],[23,-14],[28,1],[23,-2],[35,-32],[30,-21],[61,46],[19,6],[25,-9],[22,-1],[26,3],[26,-5],[27,-15],[24,0],[34,6],[23,3],[31,-2],[28,-5],[27,-10],[40,-21],[6,-26],[20,-8],[26,-8],[36,-35],[21,-10],[27,0],[8,2],[16,3],[31,13],[22,3],[30,-3],[43,-5],[21,2],[43,13],[19,8],[20,8],[22,14],[22,18],[21,5],[30,-2],[26,-12],[26,-16],[16,-20],[24,-13],[24,-13],[20,-3],[16,-14],[-12,-42],[0,-21],[8,-25],[16,-23],[15,-37],[-12,-19],[-8,-19],[-4,-28],[-11,-19],[-8,-37],[-19,-34],[11,-22],[-4,-45],[-15,-19],[4,-26],[9,-21],[-1,-24],[-6,-25],[-7,-22],[-8,-22],[5,-21],[5,-34],[-13,-18],[-17,-22],[2,-23],[-7,-20],[12,-22],[32,4],[30,1],[31,5],[24,-6],[20,-11],[33,4],[20,-8],[27,-2],[22,-7],[27,-33],[18,-33],[4,-19],[13,-17],[20,-6],[30,-7],[20,-12],[11,-26],[6,-24],[-7,-27],[-18,-19],[-8,-41],[15,-22],[-3,-25],[-16,-34],[0,-38],[28,-23],[46,-6],[16,-20],[2,-26],[21,-14],[38,-4],[19,-16],[16,-29],[9,-26],[20,-16],[4,-21],[0,-23],[6,-26],[9,-24],[18,-20],[22,-15],[17,-17],[10,-20],[10,-18],[12,-26],[20,-16],[28,-20],[20,-17],[23,-17],[12,-30],[71,-35],[8,-27],[28,-17],[-2,-32],[17,-27],[31,-68],[0,-25],[15,-25],[17,-32],[5,-26],[-19,-38],[3,-21],[-10,-19],[-28,-12],[-33,-11],[-35,7],[-26,2],[-26,-2],[-10,-26],[-25,-24],[-34,-24],[-12,-19],[-9,-24],[-12,-17],[6,-24],[-21,-7],[-25,-33],[3,-21],[-6,-21],[-30,-20],[-4,-27],[-12,-17],[-13,-18],[-1,-24],[-7,-22],[-17,-17],[-2,-21],[-1,-23],[-27,-16],[-13,-26],[-14,-16],[-27,-28],[-30,-29],[-14,-34],[-22,-11],[-8,-20],[-36,-40],[-24,-11],[-44,-10],[-28,-9],[-40,-3],[-17,-19],[11,-23],[9,-23],[1,-31],[-9,-19],[16,-21],[28,-10],[27,-35],[43,-15],[-4,-27],[-19,-19],[-31,-23],[-20,-29],[8,-25],[3,-33],[-3,-23],[-16,-20],[-33,-19],[-18,-24],[-1,-22],[-17,-25],[0,-22],[-11,-23],[-12,-25],[-25,-5],[-19,-15],[-27,-5],[-19,-9],[-19,-24],[-33,-20],[-13,-22],[-11,-24],[-33,-11],[-36,-6],[-29,5],[-32,-13],[-29,-14],[-29,-2],[-35,-6],[-20,-1],[-31,-6],[-41,-12],[-30,-4],[-49,-11],[-22,-16],[-30,-1],[-25,-2],[-58,-12],[-23,7],[-39,4],[-1,23],[2,27],[-20,5],[-8,24],[-25,8],[-33,-4],[-52,-4],[-28,6],[-20,14],[-39,-1],[-52,2],[-19,12],[-29,14],[-24,27],[-23,4],[-38,0],[-26,4],[-18,10],[-29,3],[-5,26],[-3,26],[-32,14],[-25,2],[-26,6],[-33,25],[-2,30],[-1,39],[-29,18],[-28,24],[-3,21],[-22,24],[-11,17],[-11,26],[-14,19],[-23,2],[-19,3],[-32,14],[-14,5],[-10,3],[-26,11],[-27,15],[-33,16],[-26,12],[-32,8],[-39,14],[-29,7],[-24,8],[-32,2],[-32,0],[-27,-8],[-29,-2],[-22,-12],[-22,-14],[-24,-19],[-17,-10],[-17,-14],[-16,-17],[-38,-32],[-22,0],[-23,-5],[-22,-3],[-20,-17],[-36,-12],[-40,-6],[-40,-8],[-26,-7],[-23,-7],[-30,-22],[-15,-20],[-31,-5]],[[48124,75967],[-5,48],[0,43],[4,34],[-27,17],[16,26],[29,19],[21,16],[0,26],[-11,18],[-16,22],[-2,23],[2,37],[-23,31],[-7,25],[-26,17],[-20,10],[-28,28],[1,20],[-3,35],[-23,9],[-22,4],[-26,3],[-22,-6],[-22,-8],[-11,21],[-1,22],[-12,29],[-29,18],[-1,0],[-16,22],[-20,12],[-21,7],[-34,0],[-47,-2],[-34,-8],[-45,5],[-19,26],[-1,28],[11,49],[14,22],[7,24],[6,32],[7,32],[13,33],[17,21],[20,15],[17,24],[-11,23],[-16,27],[-18,25],[-24,20],[-26,5],[-23,15],[-21,9],[-18,11],[-25,23],[-24,1],[-21,1],[-30,18],[-20,20],[-20,-2],[-22,1],[-24,9],[-31,7],[-27,0],[-38,1],[-33,16],[-18,11],[-33,22],[-22,2],[-54,-1],[-18,11],[-26,14],[-23,19],[-36,19],[-34,-8],[-32,-1],[-28,5],[-19,-8],[-12,-21],[-13,-24],[-10,-21],[-10,-23],[-15,-24],[-20,-21],[-14,-20],[-14,-17],[-26,-1],[-20,1],[-47,-12],[-27,3],[-30,14],[-22,9],[-29,-2],[-30,5],[-20,12],[-28,32],[-20,-5],[-47,-13],[-25,0],[-28,13],[-37,13],[-21,11],[-18,15],[-21,19],[-20,15],[-38,14],[-30,9],[-32,5],[-18,9]],[[46178,77206],[-17,32],[-18,34],[-4,21],[-30,22],[-28,29],[-16,31],[-23,12],[-16,14],[-44,9],[-25,5],[-23,5],[-27,10],[-26,2],[-20,8],[-29,1],[-43,-10],[-48,8],[-22,9],[-44,11],[-34,-5],[-26,-14],[-30,-5],[2,23],[1,21],[8,24],[21,22],[17,17],[15,17],[33,88],[22,25],[13,27],[0,20],[-14,29],[-43,9],[-31,-4],[-26,-4],[-23,-2],[-34,6],[-20,20],[-3,41],[-8,19],[-15,17],[-16,18],[-15,13],[-29,17],[-30,1],[-41,6],[-26,-6],[-21,-1],[13,24],[15,21],[32,0],[26,8],[23,36],[-14,28],[-18,17],[-14,16],[-7,25],[3,20],[-10,19],[-18,16],[-14,19],[-17,23],[0,25],[-5,22],[-20,24],[-40,6],[-23,5],[-21,10],[-28,12],[-35,6],[-21,6],[-22,-4],[-25,19],[-4,21],[-6,30],[9,23],[17,26],[1,22],[-11,30],[11,32],[17,19],[15,20],[-3,25],[-26,30],[-19,14],[-36,25],[-3,21],[-9,24],[-19,17],[-22,14],[-32,16],[-27,21],[-15,24],[-24,19],[-16,21],[-13,23],[4,20],[4,22],[-16,20],[-18,21],[0,20],[-16,16],[-8,21],[-30,9],[-35,1],[-20,8],[-10,24],[-8,27],[-17,34],[-12,17],[-21,24],[-15,32],[7,27],[16,19],[22,-2],[19,-16],[20,-14],[23,-13],[27,-6],[26,8],[18,12],[35,14],[25,8],[27,7],[23,2],[31,-6],[26,-3],[29,5],[18,10],[21,9],[26,6],[31,-2],[24,-9],[33,-19],[25,-5],[32,-14],[25,-14],[19,-9],[22,-8],[28,9],[27,16],[39,-1],[32,2],[22,15],[6,25],[-20,24],[-17,17],[-23,30],[-24,33],[-23,27],[-19,18],[-20,22],[-17,19],[-9,26],[-10,24],[-19,12],[-5,23],[-4,23],[-14,22],[-19,28],[-16,27],[-18,26],[-24,24],[-28,23],[-14,21],[-9,23],[-12,23],[-24,19],[-23,20],[-17,10],[-30,10],[-18,10],[-24,23],[-22,18],[-12,23],[-23,9],[-19,13],[-23,24],[-17,22],[-10,20],[-26,34],[-10,24],[28,2],[13,28],[-24,24],[-17,12],[-21,18],[-25,18],[-28,4],[-38,12],[-51,1],[-28,10],[-26,-2],[-20,3],[-21,11],[-16,13],[15,42],[7,28],[-20,22],[-12,36],[-14,16],[-29,28],[-8,21],[-13,24],[-27,15],[-19,17],[-19,14],[-23,0],[-24,6],[-21,-10],[-26,-4],[-26,2],[-20,9],[-23,12],[-26,26],[3,20],[14,28],[-13,29],[-5,24],[-8,33],[-15,19],[12,28],[9,26],[26,41],[11,19],[26,9],[31,6],[-22,14],[-22,22],[-27,24],[-43,12],[14,27],[6,28],[-6,27],[-20,13],[-25,9],[-20,27],[-17,24],[-20,27],[-1,29],[-4,25],[-1,23],[4,26],[-1,25],[-12,16],[-3,28],[8,22],[-18,12],[-17,24],[-32,9],[-25,16],[-20,32],[-17,23],[-12,19],[-7,24],[6,25],[10,20],[7,28],[14,23],[16,33],[16,27],[-10,22],[-11,19],[-20,14],[-9,38],[1,35],[-23,19],[0,23],[9,29],[2,29],[10,29],[-34,19],[-17,16],[-18,26],[-14,20],[4,26],[11,20],[29,31],[13,16],[-10,26],[-22,19],[-26,26],[-18,28],[-10,28],[6,30],[15,31],[20,31],[13,20],[-7,18],[-15,14],[-20,24],[6,21],[20,24],[13,15],[32,7],[27,8],[25,5],[16,29],[11,18],[21,16],[23,15],[8,22],[17,12],[5,20],[-3,29],[-10,18],[-20,28],[-11,23],[8,31],[-8,23],[-14,25],[-18,31],[-8,23],[-20,13],[-20,12],[-28,12],[-27,10],[-25,5],[-18,7],[-22,6],[8,14],[4,7],[-1,22]],[[59989,85013],[0,-18],[0,-59],[-2,-1684],[-2,-889],[-3,-2229],[0,-192],[367,-2],[1250,-4],[1862,-7],[134,-1],[366,-1],[1877,-7],[1654,-6],[1741,-6],[2083,-8],[1886,-7],[100,0],[368,2],[1477,8],[1961,11],[579,4],[16,0],[2196,17],[0,1],[47,0],[450,0],[456,0]],[[80852,79936],[0,-80],[0,-396],[0,-70],[0,-173],[0,-65],[0,-149],[0,-135],[0,-32],[0,-267],[0,-54],[0,-125],[0,-46],[0,-454],[0,-29],[0,-289],[0,-89],[0,-393],[0,-122],[0,-132],[0,-42],[0,-27],[0,-22],[0,-24],[0,-461]],[[80852,76260],[-103,4],[-80,5],[-67,1],[-88,23],[-40,40],[-37,36],[-62,30],[-35,12],[-43,-16],[-48,-19],[-71,-10],[-64,-3],[-121,13],[-49,5],[-27,-50],[-40,-46],[-32,-28],[-32,-14],[-49,4],[-118,17],[-103,16],[-37,-17],[-56,-22],[-52,-24],[-46,-16],[-92,-6],[-73,6],[-70,7],[-111,-26],[-91,-24],[-52,-11],[-61,-4],[-43,10],[-43,20],[-49,31],[-34,11],[-62,-3],[-50,-8],[-89,-1],[-24,14],[-34,22],[-17,-10],[-93,33],[-375,-13],[-21,-1],[-348,-11],[-146,89],[-338,131],[-26,6],[-145,-59],[-343,110],[-54,-32],[-245,46],[-20,4],[-20,4],[-26,4],[-30,4],[-24,4],[-24,6],[-22,6],[-20,4],[-20,2],[-23,6],[-20,8],[-20,7],[-22,7],[-20,6],[-48,13],[-2,30],[-26,-2],[-35,8],[-24,4],[-24,5],[-28,8],[-24,17],[-33,11],[-25,1],[-34,-9],[-37,-12],[-33,-10],[-42,-11],[-23,-2],[-38,-10],[-24,-9],[-20,-11],[-25,-12],[-28,-10],[-19,-8],[-23,-9],[-17,-14],[-27,-7],[-41,-4],[-21,0],[-29,2],[-31,0],[-46,7],[-25,16],[-8,20],[-10,28],[-3,20],[-36,18],[-30,-4],[-29,-19],[-18,-15],[-12,-28],[-20,-21],[-18,-11],[-6,-25],[-19,-20],[-28,-8],[-27,-11],[-22,5],[-22,-4],[-23,-3],[-24,-12],[-27,-5],[-21,0],[-27,-4],[-30,-11],[-20,-8],[-27,-30],[-29,-12],[-21,-3],[-35,-13],[-31,-5],[-31,-4],[-36,-9],[-29,-4],[-32,7],[-26,0],[-30,0],[-50,15],[-30,15],[-19,8],[-30,14],[-27,9],[-17,17],[-20,-4],[-27,1],[-21,-2],[-12,-25],[-25,-22],[-16,-23],[-17,-12],[-16,-18],[-17,-16],[-17,-16],[-20,-14],[-19,-9],[-10,-22],[9,-32],[20,-19],[11,-18],[10,-20],[9,-20],[-16,-25],[-21,-18],[-24,-17],[-4,-20],[-11,-23],[-2,-22],[-17,-19],[-20,-17],[-17,-27],[-20,-15],[-27,-7],[-22,-18],[-21,-24],[-25,-9],[-21,-5],[-21,-10],[-28,4],[-19,-12],[-7,-29],[-14,-21],[-20,-14],[-20,-3],[-21,-8],[-28,-17],[-31,-13],[-12,-26],[-31,-12],[-23,13],[-25,-13],[-25,-17],[-43,-8],[-36,4],[-23,0],[-37,4],[-24,5],[-34,3],[-28,5],[-43,-14],[-20,-3],[-14,14],[-33,16],[-20,-6],[-15,-22],[-25,-8],[-17,-11],[-20,-19],[-42,-7],[-23,-4],[-23,-8],[-23,5],[-27,-7],[-23,5],[-32,-1],[-22,-4],[-22,6],[-16,17],[-19,13],[-23,14],[-10,23],[-20,12],[-30,6],[-40,17],[-32,12],[-27,15],[-14,15],[-20,-7],[-28,-29],[-34,-18],[-8,-26],[-3,-33],[-23,-20],[-6,-34],[-13,-31],[-13,-33],[-13,-17],[-11,-17],[-19,-10],[-26,-4],[-27,-3],[-34,-1],[-21,0],[-15,25],[-29,8],[-21,6],[-48,19],[-34,16],[-23,-3],[-24,5],[-42,0],[-22,-1],[-21,1],[-33,-2],[-23,17],[-27,13],[-19,-10],[-19,-17],[-22,-13],[-23,-12],[-12,-19],[6,-25],[6,-21],[-19,-26],[-31,-10],[-28,-16],[-28,-17],[-41,-18],[-28,-10],[-24,-7],[-27,-4],[-36,6],[-15,21],[-19,7],[-26,10],[-30,8],[-36,6],[-21,10],[-13,17],[-19,22],[-20,29],[-23,16],[-16,16],[-25,5],[-31,-48],[-25,-35],[-20,-23],[-26,-26],[-32,-15],[-39,-26],[-25,-20],[-19,-17],[-20,-14],[-27,-29],[-70,-22],[-58,-15],[-20,-5],[-69,1],[-110,-30],[-91,-32],[-60,-18],[-38,13],[-40,43],[-34,53],[-53,55],[-31,37],[-43,5],[-66,-8],[-70,17],[-35,10],[-36,20],[-33,-10],[-11,-47],[-14,-62],[-55,-68],[-76,-38],[-63,-37],[-35,-48],[-142,-27],[-91,3],[-71,3],[-56,25],[-40,37],[-30,31],[-6,26],[-56,-9],[-56,-6],[-33,-12],[-43,-30],[-46,-40],[-51,-15],[-56,-5],[-90,9],[-50,-4],[-23,48],[-69,41],[-68,25],[-53,28],[-33,37],[-45,51],[-47,18],[-28,-8],[-37,-18],[-36,-20],[-34,-5],[-26,-19],[-21,-14],[-19,-14],[-12,-20],[-2,-38],[-52,-62],[-50,-47],[-33,-30],[-30,-21],[-43,-9],[-29,-5],[-10,-19],[-5,-21],[2,-32],[-5,-21],[-18,-18],[-19,-22],[-17,-15],[-18,-20],[-20,-16],[-29,-18],[-11,-17],[-31,-25],[-29,-15],[-29,6],[-33,15],[-21,10],[-23,5],[-35,-3],[-33,-2],[-37,-2],[-27,-6],[-32,-13],[-24,-10],[-22,-6],[-28,-11],[-22,-8],[-32,-3],[-21,2],[-24,2],[-12,22],[-30,3],[-17,13],[-24,4],[-21,1],[-28,1],[-34,3],[-34,2],[-21,-3],[-21,20],[-24,21],[-26,13],[-28,18],[-19,15],[-20,25],[-20,0],[-28,6],[-35,14],[-23,11],[-38,16],[-21,6],[-24,8],[-23,6],[-26,14],[-25,22],[-23,9],[-25,2],[-13,-22],[-20,-16],[-28,-17],[-56,-6],[-26,-9],[-17,-23],[-20,-20],[-4,-22],[-31,-4],[-45,-14],[-20,5],[-21,5],[-23,4],[-22,8],[-27,7],[-23,4],[-30,0],[-26,-5],[-40,-18],[-32,-14],[-31,-6],[-30,5],[-35,0],[-29,3],[-31,15],[-25,14],[-27,11],[-25,8],[-21,-14],[-19,-17],[-27,-13],[-23,-14],[-17,-18],[-29,-22],[-40,-12],[-21,-4],[-36,1],[-24,3],[-30,-3],[-23,-6],[8,-28],[7,-21],[4,-21],[6,-20],[-15,-16],[-27,-6],[-27,-16],[-21,-14],[-31,-19],[-22,-14],[-26,-23],[-15,-14],[-22,6],[-27,3],[-23,-1],[-30,-8],[-26,-4],[-23,8],[-23,-2],[-30,9],[-24,7],[-507,-288],[-264,-149],[-475,307],[-35,-15],[-21,-13],[-20,-13],[-23,-14],[-20,-10],[-36,-4],[-40,-3],[-34,-3],[-26,-3],[-31,-6],[-25,-1],[-19,38],[-11,4],[-37,15],[-21,14],[-8,22],[-27,16],[-30,2],[-35,-4],[-14,18],[-16,17],[-31,3],[-21,1],[-31,1],[-21,-5],[-48,-15],[-31,-7],[-31,-3],[-32,0],[-50,-2],[-32,6],[-32,-1],[-11,-27],[-12,-18],[-16,-22],[8,-23],[26,-15],[23,-13],[5,-24],[32,-5],[20,5],[23,-7],[-2,-22],[26,-21],[17,-14],[2,-26],[-17,-17],[-41,-2],[-38,3],[-34,0],[-17,-11],[-22,-8],[-19,-5],[-33,-3],[-18,-17],[-18,-18],[-22,-33],[0,-22],[-18,-23],[-26,-13],[-29,-10],[1,-25],[4,-31],[-12,-32],[-5,-29],[9,-24],[3,-21],[98,-191],[1,-1],[99,-184],[-162,-31]],[[62871,73551],[-756,-147],[1,-10],[17,-14],[16,-42],[-1,-30],[-6,-13],[-8,-20],[-17,-21],[-10,-46],[-1,-24],[-3,-24],[-17,-37],[-27,-13],[-25,3],[-25,1],[-25,-17],[-8,-19],[2,-30],[8,-28],[-10,-45],[2,-20],[1,-13],[21,-21],[-6,-24],[-15,-14],[-11,-10],[-8,-18],[-3,-7],[-4,-27],[-20,-21],[-20,-7],[-7,-28],[-18,-26],[-4,-27],[-1,-25],[-22,-17],[-9,-29],[-30,-27],[-31,-29],[-15,-18],[-36,-20],[3,-27],[-16,-14],[-19,-19],[-23,-24],[3,-26],[-9,-24],[-14,-36],[-3,-30],[-21,-36],[9,-49],[12,-16],[24,-36],[-2,-7],[-5,-18],[-1,-47],[-20,-43],[-19,-18],[-26,-34],[-30,-17],[-16,-24],[-30,-13],[-16,-13],[-31,-19],[-16,-19],[-20,-8],[-24,-17],[-9,-20],[-21,-28],[-19,-15],[-29,-11],[-25,1],[-23,-12],[-18,-11],[-20,-5],[-34,3],[-32,-2],[-26,11],[-37,-2],[-38,5],[-20,2],[-30,13],[-27,-5],[-32,-2],[-23,8],[-18,-11],[-24,1],[-26,-6],[-36,0],[-28,1],[-23,7],[-22,4],[-34,-17],[-30,2],[-22,-1],[-24,-13],[-15,-14],[-35,-16],[-25,-10],[-6,-23],[-13,-21],[-23,-25],[4,-22],[-20,-28],[-17,-13],[-17,-24],[-14,-16],[-5,-5],[-27,-22],[-29,-20],[-3,-2],[-40,-16],[-28,-12],[-24,-7],[-48,-7],[-27,0],[-24,7],[-28,6],[-29,19],[-81,-1],[-26,8],[-47,14],[-23,13],[-32,5],[-21,20],[-20,7],[-41,6],[-41,-1],[-15,7],[-7,3],[-32,12],[-20,14],[-24,13],[-21,6],[-4,3],[-16,14],[-23,11],[-17,14],[-28,9],[-36,8],[-14,18],[-18,13],[-38,16],[-19,7],[-19,15],[-25,16],[-25,18],[-22,15],[-15,13],[-22,3],[-22,9],[-30,12],[-24,-2],[-20,-9],[-41,-13],[-20,-8],[-30,-10],[-55,-9],[-26,5],[-29,13],[-29,0],[-62,16],[-34,2],[-38,2],[-1,0],[-33,5],[-46,-7],[-23,-5],[-24,2],[-4,1],[-22,4],[-13,-9],[-8,-4],[-39,-13],[-33,-3],[-54,-12],[-24,-4],[-20,-10],[-40,-6],[-44,-7],[-22,-23],[-32,-14],[5,-20],[0,-1],[-9,-20],[-18,-11],[10,-19],[1,0],[-1,-1],[-15,-14],[-4,-19],[-17,-29],[-28,-8],[-24,-1],[-8,-22],[-1,-3],[-28,-23],[-23,-20],[-2,-22],[-16,-18],[-9,-21],[-7,-30],[0,-4],[0,-24],[-18,-21],[-5,-21],[-7,-26],[-18,-20],[1,-24],[2,-25],[-22,-13],[-6,-21],[-1,-26],[-14,-15],[0,-1],[3,-34],[0,-1],[1,-34],[0,-1],[-16,-18],[-12,-17],[-24,-14],[-11,-15],[-3,-3],[-14,-11],[-3,-2],[-2,-2],[-21,-16],[-20,-13],[-22,-23],[-32,-12],[-1,0],[-12,-22],[-37,-10],[-45,-11],[-1,-1],[-2,1],[-36,10],[-25,-1],[-23,-1],[-41,11],[-5,1],[-22,8],[-32,10],[-22,9],[-3,3],[-22,15],[-16,17],[-1,3],[-12,24],[-8,21],[-11,23],[-26,14],[-26,13],[-25,-1],[-28,-4],[-30,13],[-43,17],[-39,0],[-30,-7],[-22,5],[-31,-3],[-23,4],[-27,15],[-35,24],[-16,12],[-15,28],[-35,21],[-29,8],[-14,25],[-18,9],[-24,8],[-27,14],[-33,-7],[-41,-13],[-18,-6],[-15,14],[-26,7],[-1,5],[-4,19],[-30,14],[-31,11],[-116,39],[-16,13],[-26,29],[-23,14],[-24,3],[-26,5],[-7,-1],[-21,-5],[-63,-1],[-35,10],[-38,12],[-40,12],[-21,17],[-4,3],[-13,9],[-28,17],[-1,0],[-21,-1],[-27,5],[-34,-7],[-33,-6],[-8,0],[-25,2],[-23,-1],[-6,0],[-20,3],[-53,10],[-21,13],[-24,-5],[-22,5],[-20,5],[-19,2],[-2,0],[-26,8],[-1,0],[-38,22],[-12,4],[-8,3],[-28,7],[-17,13],[-21,23],[-20,12],[-25,4],[-15,21],[-24,8],[-20,-1],[-41,5],[-15,15],[-22,9],[-5,2],[-45,12],[-21,11],[-30,19],[-39,22],[-16,14],[-24,15],[-13,22],[-21,0],[-18,8],[-33,23],[-22,13],[-18,13],[-22,-2],[-29,4],[-25,15],[-31,11],[-26,1],[0,1],[-22,15],[-7,2],[-20,6],[-14,17],[-4,5],[-34,24],[-2,1],[-25,20],[-12,31],[-11,18],[0,1],[2,25],[-1,35],[-15,16],[-20,9],[-36,0],[-20,4],[-37,-8],[-17,-14],[-32,-10],[-20,-15],[-5,0],[-12,-1],[-3,0],[-1,0],[-53,60],[-3,3],[-49,43],[-25,14],[-18,22],[-21,25],[-20,19],[-24,16],[-31,12],[-21,4],[-49,14],[-45,12],[-28,11],[-32,18],[-19,18],[-4,25],[-3,21],[-25,4],[-41,-4],[-32,-3],[-28,-1],[-20,-1],[-34,4],[-70,10],[-27,6],[-24,7],[-34,3],[-33,15],[-45,7],[-57,-1],[-33,-1],[-23,4],[-44,22],[-24,13],[-33,31],[-12,21],[-30,-3],[-28,-2],[-31,10],[-14,16],[-31,0],[-35,-9],[-21,-17],[-27,-11],[-25,19],[-12,19],[-18,19],[-23,3],[-37,13],[-10,19],[1,12],[2,20],[11,26],[-5,29],[-14,46],[-23,12],[-5,41],[-14,17],[-24,25],[-30,8],[-25,15],[-7,28],[-6,22],[12,25],[2,21],[-16,18],[-27,5],[-33,8],[-22,11],[-11,35],[-9,34],[-3,33],[-28,12],[-24,24],[-6,27],[-5,51],[2,26],[13,30],[3,23],[10,20],[9,37],[-21,13],[-34,-7],[6,28],[0,20],[-3,36],[15,27],[14,38],[-22,40],[-18,31],[-18,11],[-20,14],[-6,25],[27,60],[-2,24],[-18,35],[-26,0],[-25,-5],[-19,15],[-23,-4],[-23,-7],[-12,-17],[-13,-18],[-25,-22],[-14,-15],[-32,-19],[-20,-8],[-27,-15],[-23,-22],[-38,-16],[-24,-21],[-32,-14],[-28,3],[-64,15],[-25,-5],[-20,-7],[-24,3],[-37,2],[-26,-1],[-55,31],[-9,20],[-11,25],[-21,-3],[-25,-3],[-29,-9],[-26,-1],[-28,1],[-29,18],[-30,8],[-7,-21],[2,-25],[3,-37],[4,-18],[5,-16],[11,-26],[-1,-27],[-12,-19],[6,-27],[20,-41],[29,-43],[13,-22],[9,-18],[34,-38],[16,-30],[-11,-18],[-28,-18],[-27,-29],[-26,-30],[-27,-5],[-36,0],[-37,-1],[-23,-5],[-25,-9],[-34,-7],[-22,-1],[-6,-20],[-26,-39],[-16,-19],[-16,-20],[-45,-19],[-30,-7],[-23,9],[-22,0],[-27,-6],[-22,-5],[-56,-8],[-17,-16],[-14,-30],[-9,-25],[-21,-26],[-10,-37],[-20,-19],[-22,12],[-33,12],[-34,-9],[-42,-11],[-39,-17],[-16,-21],[-11,-31],[-12,-48],[-14,-37],[-9,-38],[-3,-30],[21,-17],[11,-22],[-25,-25],[-20,-18],[-20,-15],[-15,-24],[-14,-21],[-17,-29],[-10,-22],[-29,-18],[-46,-14],[-23,-14],[-27,-27],[-4,-27],[8,-44],[-2,-25],[9,-23],[52,-82],[15,-30],[-12,-23],[-24,-29],[-10,-31],[-2,-33],[-9,-30],[-36,-21],[-42,-32],[-43,44],[-24,15],[-29,4],[-34,10],[-18,9],[-31,19],[-19,23],[-16,13],[-22,5],[-26,4],[-24,1],[-15,-16],[-24,-6],[-37,11],[-29,3],[-37,4],[-20,9],[-18,16],[-21,1],[-30,2],[-30,10],[-27,10],[-30,10],[-21,1],[-33,-6],[-31,-2],[-36,10],[-17,18],[-16,23],[-28,7],[-21,0],[-26,1],[-23,5],[-29,4],[-23,-2],[-45,0],[-22,7],[-25,9],[-30,-5],[-36,-18],[-37,-20],[-25,-11],[-25,-4],[-26,-4],[-33,-2],[-32,-6],[-24,-2]],[[49878,72176],[-3,23],[-24,19],[-29,6],[-22,13],[-20,11],[-18,18],[5,35],[9,24],[9,34],[2,21],[-37,18],[-44,17],[-35,11],[-42,8],[-23,11],[-17,18],[-1,24],[-3,29],[-3,22],[-14,27],[-23,15],[-34,13],[-19,9],[-39,21],[-25,17],[-18,21],[2,41],[3,23],[-16,20],[-15,28],[6,21],[2,23],[-1,32],[-22,30],[-22,17],[-22,10],[-18,8],[-23,9],[-20,7],[-35,19],[-17,14],[-28,18],[-38,4],[-25,4],[-22,11],[-31,20],[-7,33],[-16,44],[-10,29],[-7,24],[-22,38],[-21,20],[-18,15],[-14,21],[-20,29],[-32,20],[-37,15],[-9,28],[-3,20],[11,22],[18,12],[20,14],[-10,25],[2,31],[3,28],[2,24],[-14,22],[18,26],[9,32],[-8,20],[12,30],[-5,22],[-2,34],[12,35],[8,30],[21,24],[7,24],[12,25],[17,15],[19,20],[29,29],[17,14],[13,24],[19,23],[3,23],[-6,22],[-9,25],[-21,28],[-25,18],[-24,12],[-21,18],[-17,17],[-14,19],[-13,18],[-28,15],[-16,12],[-13,17],[-13,18],[-20,8],[-27,16],[-26,32],[-20,16],[-25,23],[-32,19],[-10,23],[-21,11],[-22,2],[-18,10],[3,31],[-14,19],[-12,22],[13,18],[19,22],[7,22],[14,21],[-22,22],[-25,8],[-34,6],[-28,5],[-35,3],[-28,4],[-23,24],[-6,24],[14,36],[13,25],[6,23],[-3,30],[-21,19],[-28,9],[7,33],[21,17],[21,6],[42,17],[24,25],[18,36],[-3,31],[-19,26],[-24,12],[-23,17],[-20,16],[-12,25],[-8,15],[-1,3],[-1,25],[8,36],[18,14],[18,17],[-39,29],[-18,20],[-21,8],[-27,0],[-33,-7],[-36,7],[-33,9],[-25,11],[-25,8],[-38,10],[-22,12],[-5,23],[6,20],[3,32],[-10,21],[-17,19],[-18,14],[-20,18],[-31,11],[-28,-3],[-27,1],[-20,15],[-19,8],[-32,4],[-20,17],[6,33],[22,31],[17,13],[22,15],[9,18],[-7,23],[-8,25],[-2,20],[11,18],[25,23],[19,26],[-4,21],[-12,21],[-27,14],[-17,14],[-25,27],[-15,22],[6,39],[8,19],[7,20],[18,36],[32,18],[38,11],[36,6]],[[46178,77206],[-49,-12],[-30,1],[-24,2],[-21,1],[-24,-6],[-21,-7],[-20,-21],[-6,-30],[-17,-31],[-18,-23],[-19,-15],[-23,-10],[-21,2],[-33,9],[-21,-4],[-23,-13],[-42,-12],[-24,-5],[-18,-13],[-28,-16],[-37,-12],[-47,-20],[-36,-11],[-27,3],[-35,-1],[-23,-8],[-24,-9],[-48,-37],[-25,-20],[-31,-11],[-27,-7],[-21,-2],[-37,7],[-33,11],[-35,12],[-43,0],[-26,-7],[-32,-9],[-24,-12],[-32,-14],[-30,-14],[-32,-22],[-36,-20],[-20,-5],[-37,-19],[-20,-12],[-29,-2],[-24,5],[-24,8],[-27,0],[-27,4],[-23,9],[-24,2],[-19,-6],[-35,-16],[-27,-3],[-19,-8],[-20,-23],[-9,-19],[-32,-22],[-22,-12],[-34,-8],[-43,-5],[-42,-3],[-23,-18],[-21,-10],[-39,-4],[-35,-9],[-27,-13],[-25,-3],[-23,1],[-22,1],[-24,13],[-16,14],[-38,-3],[-35,-8],[-29,-32],[-21,-7],[-21,6],[-27,-5],[-27,-10],[-29,-7],[-31,-1],[-8,-22],[-24,-8],[-18,-8],[-14,-17],[-18,-27],[-6,-10],[-18,8],[-25,5],[-21,-3],[-6,-3],[-23,-11],[-13,-3],[-15,3],[-34,6],[-6,-6],[-11,-2],[-33,-3],[-11,-4],[-7,-4],[-4,-3],[-4,-5],[-5,-9],[-3,-10],[-2,-8],[-99,0],[-88,0],[-249,0],[-230,0],[-134,-2],[-114,2],[-11,1],[-17,1],[-30,0],[-21,-2],[-1,0],[-39,0],[-40,0],[-58,1],[-55,0],[-167,1],[-21,1],[-15,2],[-21,-1],[-13,0],[3,9],[2,8],[6,4],[10,0],[17,-1],[5,-1],[9,3],[4,1],[3,5],[1,1],[2,8],[1,40],[1,14],[-7,20],[-11,21],[-15,7],[-5,3],[0,6],[1,19],[-18,13],[-7,1],[-24,5],[-24,6],[-10,4],[-9,5],[1,30],[2,13],[1,7],[-16,15],[-16,22],[-14,19],[-21,16],[-19,13],[-9,29],[-25,16],[-4,21],[20,23],[-19,18],[-32,6],[-30,11],[-9,31],[-18,23],[16,18],[-28,7],[-39,-16],[-39,-12],[-21,-10],[-27,4],[-17,12],[1,22],[-1,3],[-11,20],[-3,20],[-21,3],[-22,16],[5,22],[-16,18],[-4,23],[3,33],[-3,4],[-10,13],[11,12],[4,4],[17,28],[-10,18],[0,27],[16,17],[21,15],[-24,22],[-5,24],[0,4],[-3,26],[17,19],[1,1],[0,1],[-6,20],[7,15],[2,4],[-2,3],[-10,16],[-20,9],[-11,0],[-19,1],[-20,-5],[-5,-1],[-19,-3],[-6,10],[-5,8],[9,27],[-13,17],[-2,1],[-24,17],[7,30],[29,23],[24,27],[14,18],[-10,23],[5,22],[-20,23],[16,24],[-23,9],[-2,1],[12,30],[16,17],[22,19],[20,12],[2,27],[5,26],[21,7],[12,19],[21,15],[17,22],[-2,21],[23,9],[26,16],[6,20],[5,27],[17,14],[1,28],[2,43],[-1,108],[0,67],[0,4],[-1,28],[0,40],[0,25],[-1,80],[-248,0],[-70,0],[-83,-1],[-267,-1],[-21,0],[-115,0],[-37,0],[-114,-2],[-70,-36],[-241,-127],[-241,-127],[-25,-12],[-32,-19],[-32,-18],[-19,-10],[-18,-11],[-176,-95],[-177,-94],[-69,-38],[-77,-41],[-76,-41],[-7,-4],[-69,-36],[-8,-5],[-20,-11],[-29,-15],[-76,-41],[-75,-40],[-41,-22],[-42,-22],[-45,-25],[-45,-24],[-22,-12],[-22,-12],[-123,-65],[-503,-249],[-174,-94],[-173,-94],[-153,-93],[-34,-21],[-220,-151],[-97,-63],[-72,-47],[-227,-140],[-255,-162],[-124,-82],[-124,-83],[-82,-49],[-111,-67],[-218,-146],[-215,-142],[-215,-132],[-253,-149]],[[35705,75454],[-347,463],[-401,534],[-308,409],[-260,339],[-214,284],[-711,942],[-1182,1556],[-55,73],[-55,72],[-527,695],[-145,191],[-383,504]],[[35705,75454],[66,-87],[187,-249],[98,-133],[361,-487],[10,-7],[14,-10],[29,-20],[6,-4],[13,-9],[18,-11],[8,-5],[20,-12],[5,-3],[36,-24],[61,-38],[30,-6],[18,-13],[15,-18],[21,0],[27,-4],[39,-8],[28,-5],[20,-28],[22,-30],[17,-27],[7,-23],[25,-24],[13,-26],[18,-27],[11,-31],[5,-23],[17,-33],[10,-36],[23,-81],[-5,-40],[6,-20],[-14,-18],[-9,-23],[-11,-24],[-15,-32],[-14,-45],[-26,-26],[-21,-20],[6,-29],[4,-24],[-14,-32],[-3,-35],[13,-32],[17,-32],[18,-36],[4,-32],[-1,-37],[0,-38],[0,-22],[5,-83],[-24,-39],[-7,-42],[-1,-39],[5,-46],[25,-51],[45,-46],[30,-26],[-2,-47],[2,-33],[12,-39],[30,-25],[16,-30],[-7,-30],[24,-42],[-16,-23],[-17,-34],[-12,-54],[0,-37],[-18,-28],[-7,-32],[26,-28],[0,-23],[4,-21],[31,-19],[19,-6],[10,-20],[14,-15],[21,-14],[20,-17],[13,-17],[24,-34],[46,-8],[22,2],[20,-12],[17,-13],[23,-9],[14,-19],[27,-44],[10,-23],[20,-25],[1,-26],[39,-12],[19,-8],[3,-25],[-3,-25],[-5,-21],[-12,-27],[1,-28],[-11,-19],[-12,-35],[15,-26],[9,-27],[9,-42],[-9,-22],[-6,-23],[9,-18],[9,-19],[12,-24],[-21,-17],[-20,-5],[-26,-25],[-28,-30],[-21,-11],[-8,-20],[15,-35],[3,-21],[-25,-18],[-22,-31],[-18,-31],[20,-30],[14,-18],[-5,-26],[3,-28],[3,-32],[-24,-24],[1,-25],[5,-34],[13,-27],[26,-35],[17,-25],[17,-18],[19,-17],[-13,-25],[4,-33],[-8,-29],[-3,-28],[-9,-22],[-4,-24],[4,-27],[-9,-20],[-17,-18],[-20,-28],[-8,-25],[-8,-27],[2,-20],[-3,-23],[17,-20],[9,-23],[2,-23],[11,-20],[13,-32],[21,-26],[-6,-41],[-1,-20],[16,-26],[-6,-22],[4,-25],[-3,-20],[0,-22],[6,-21],[-51,-26],[-37,-28],[-20,-14],[-38,-33],[-13,-23],[-18,-34],[18,-30],[11,-21],[14,-17],[21,-42],[17,-26],[12,-16],[13,-16],[22,-32],[17,-23],[18,-9],[23,-10],[20,-9],[20,-15],[-13,-21],[-26,-14],[-16,-12],[-28,-8],[-12,-28],[-12,-22],[0,-22],[0,-22],[4,-24],[20,-24],[14,-15],[18,-29],[12,-22],[10,-24],[12,-16],[-9,-27],[-14,-21],[-5,-20],[25,-20],[15,-28],[8,-25],[-6,-24],[7,-20],[23,0],[19,-8],[33,-67],[4,-20],[-2,-24],[-7,-28],[-15,-36]],[[37507,69329],[-35,-1],[-27,7],[-22,8],[-32,6],[-35,-2],[-26,0],[-20,3],[-31,4],[-29,2],[-29,2],[-27,2],[-29,-1],[-13,-18],[-13,-17],[-16,-25],[-15,-16],[-22,-16],[-19,-23],[-19,-10],[-29,-3],[-20,-4],[-20,-4],[-23,-6],[-21,-4],[-33,-10],[-24,0],[-30,-3],[-20,-11],[-25,-11],[-27,-4],[-24,0],[-27,-9],[-1,-22],[-2,-24],[-15,-26],[-4,-20],[-8,-22],[-4,-26],[12,-30],[10,-21],[0,-21],[2,-24],[0,-23],[-6,-22],[7,-29],[10,-24],[11,-18],[16,-14],[4,-22],[5,-25],[8,-27],[8,-21],[5,-23],[1,-23],[0,-25],[25,-10],[121,-81],[22,-16],[22,-13],[24,-12],[4,-24],[13,-27],[25,-18],[24,-15],[7,-21],[-1,-28],[-7,-23],[-17,-23],[-18,-19],[-15,-18],[3,-30],[-7,-23],[-10,-24],[-1,-27],[6,-25],[-6,-23],[-11,-21],[-7,-27],[-4,-22],[10,-25],[14,-26],[-2,-23],[-13,-19],[-13,-20],[6,-32],[10,-24],[-3,-21],[-5,-23],[0,-28],[-2,-26],[-11,-17],[-19,-13],[-6,-20],[0,-21],[8,-22],[13,-24],[12,-16],[15,-20],[22,-9],[17,-12],[28,-26],[22,-10],[17,-21],[13,-18],[17,-21],[12,-20],[10,-19],[16,-19],[16,-14],[10,-18],[-13,-20],[-14,-14],[-19,-10],[-20,-13],[-16,-13],[-10,-21],[3,-24],[-1,-28],[-11,-18],[-11,-19],[-3,-22],[11,-22],[5,-19],[19,-16],[27,-19],[17,-14],[20,-16],[9,-22],[19,-14],[17,-16],[2,-22],[13,-27],[16,-17],[7,-22],[10,-29],[16,-15],[26,-13],[20,-10],[16,-16],[9,-28],[11,-20],[11,-18],[12,-18],[4,-22],[12,-17],[14,-21],[10,-19],[16,-17],[16,-16],[-13,-20],[-16,-16],[-19,-12],[-23,-12],[-32,-14],[-34,-1],[-33,-12],[-36,-10],[-28,-11],[-24,-7],[-21,-4],[-24,-7],[-20,-9],[-20,-11],[-20,-17],[-16,-19],[-20,-7],[-5,-22],[19,-12],[29,-18],[14,-22],[-10,-24],[-8,-33],[0,-23],[-14,-16],[-30,-4],[-23,-17],[-12,-18],[-4,-22],[-11,-21],[-5,-22],[5,-24],[12,-19],[4,-26],[-6,-21],[-16,-23],[20,-7],[24,-4],[26,-10],[23,-15],[17,-14],[21,-18],[5,-20],[17,-19],[13,-16],[9,-28],[7,-19],[-6,-22],[-8,-28],[16,-16],[15,-17],[13,-16],[3,-21],[-1,-20],[-11,-24],[13,-25],[10,-23],[14,-21],[-21,-11],[-17,-12],[6,-23],[-7,-32],[-12,-20],[0,-24],[12,-24],[-6,-29],[-4,-28],[2,-21],[-5,-26],[-2,-20],[-21,-18],[-19,-9],[-8,-24],[-7,-20],[-15,-20],[4,-32],[11,-29],[-2,-26],[19,-22],[16,-12],[11,-17],[14,-15],[21,-18],[20,-14],[18,-11],[23,-5],[23,-12],[3,-26],[-9,-24],[7,-21],[10,-28],[-17,-18],[-8,-22],[11,-23],[20,-6],[23,-1],[25,-4],[22,0],[-2,-21],[1,-22],[4,-25],[3,-20],[3,-23],[3,-29],[-4,-29],[-3,-24],[1,-26],[-2,-27],[-2,-30],[-6,-31],[0,-20],[2,-21],[24,-17],[19,-13],[12,-27],[4,-30],[16,-14],[23,-7],[21,-2],[25,-9],[28,-3],[11,-22],[4,-24],[14,-15],[17,-17],[5,-23],[-11,-25],[20,-13],[21,-16],[30,-3],[29,8],[26,-12],[17,-13],[22,4],[21,8],[30,15],[21,14],[21,-5],[32,-9],[20,-25],[-15,-21],[-12,-24],[21,-6],[20,-7],[23,-11],[28,-22],[15,-14],[-17,-12],[-16,-14],[-28,-8],[-25,-12],[-25,-11],[-25,-15],[-21,-22],[-15,-24],[13,-37],[3,-24],[-18,-19],[-21,-22],[-10,-18],[-14,-20],[12,-20],[21,-11],[26,-8],[21,-5],[22,10],[27,-5],[25,-3],[28,-9],[28,-14],[20,-1],[5,-21],[-1,-26],[-5,-19],[10,-21],[7,-23],[12,-28],[-23,-7],[-22,-9],[-16,-20],[-2,-23],[-17,-18],[-20,-14],[-10,-21],[-6,-21],[7,-26],[4,-20],[8,-20],[23,0],[31,-6],[34,-9],[23,-2],[2,-20],[9,-24],[5,-22],[14,-20],[18,-14],[-6,-20],[-13,-19],[-19,-6],[-22,10],[-27,4],[-27,2],[-38,-4],[-21,-9],[-30,-7],[-25,-11],[10,-18],[1,-21],[-10,-22],[-18,-13],[-23,-20],[-9,-24],[-17,-25],[-26,-6],[-47,-11],[-33,-5],[-20,-15],[-32,-25],[-24,-21],[-19,-12],[-50,-33],[-17,-12],[-18,-13],[-9,-19],[6,-23],[14,-27],[16,-22],[6,-26],[19,-17],[27,-10],[23,-13],[7,-26],[-11,-17],[-21,-16],[-14,-32],[-21,-17],[-22,-25],[-6,-20],[-1,-28],[-8,-21],[8,-28],[-12,-23],[-21,-15],[-14,-15],[-9,-22],[-14,-18],[17,-17],[14,-24],[20,-19],[24,-18],[20,-4],[24,-4],[36,-7],[20,-11],[19,-14],[23,-18],[19,-13],[14,-18],[-9,-19],[-2,-25],[1,-25],[8,-20],[19,-8],[19,-9],[15,-20],[3,-27],[5,-21],[21,-1],[26,0],[20,-1],[22,-14],[10,-22],[-1,-25],[7,-20],[10,-19],[16,-15],[22,-4],[27,-8],[20,-7],[-6,-20],[0,-22],[-16,-14],[-18,-16],[-22,-14],[-8,-19],[-2,-20],[-12,-29],[-15,-14],[-25,-7],[-5,-20],[0,-22],[-6,-20],[-1,-21],[0,-28],[-4,-22],[-1,-25],[2,-27],[-20,-15],[-23,-11],[-20,-7],[-24,-2],[-21,-1],[-23,4],[-22,-6],[-17,-16],[-18,-13],[-27,-7],[-22,-3],[-22,-3],[-27,-6],[-22,-26],[-14,-23],[-18,-22],[7,-21],[5,-20],[-21,-15],[-13,-15],[5,-22],[11,-21],[11,-22],[6,-28],[1,-26],[4,-20],[21,-16],[14,-16],[0,-27],[-12,-17],[-12,-22],[-26,0],[-20,-2],[-24,2],[-18,16],[-25,8],[-26,-11],[-6,-24],[-10,-25],[-6,-23],[-9,-18],[-13,-15],[-16,-18],[3,-23],[20,-17],[3,-20],[8,-25],[11,-20],[13,-15],[16,-13],[21,-18],[17,-32],[3,-21],[-9,-19],[-1,-24],[9,-18],[11,-20],[15,-21],[13,-25],[10,-18],[22,-24],[14,-20],[18,-14],[9,-23],[-15,-19],[-7,-19],[-8,-26],[-25,-6],[2,-20],[9,-19],[-2,-24],[-25,-15],[-19,-18],[-15,-13],[-4,-20],[7,-26],[-16,-23],[4,-22],[2,-26],[-2,-22],[3,-21],[14,-19],[-1,-26],[-3,-28],[-10,-31],[-2,-22],[-9,-23],[-13,-18],[-9,-20],[-9,-24]],[[37376,60229],[-22,-4],[-20,-10],[-16,-14],[-15,-18],[-21,-22],[-11,-22],[-16,-12],[-22,-14],[-26,-4],[-20,-8],[-28,-8],[-18,-10],[-20,0],[-24,2],[-27,-11],[-20,-6],[-20,0],[-22,6],[-20,2],[-21,1],[-14,-16],[-7,-21],[-6,-26],[-8,-17],[-2,-4],[-29,-6],[-24,-8],[-20,-10],[-14,-17],[-21,-12],[-24,-11],[-17,-14],[-15,-14],[-19,-17],[-21,-8],[-21,-7],[-20,-16],[-21,-10],[-26,-3],[-27,-17],[-18,-10],[-20,-9],[-26,-12],[-24,-11],[-22,-3],[-24,-16],[-17,-17],[-9,-28],[5,-21],[16,-21],[4,-20],[-32,-46],[-25,-37],[0,-24],[-18,-19],[-16,-17],[-14,-15],[-44,-29],[-27,-33],[-26,-21],[-8,-18],[1,-30],[-17,-23],[-12,-17],[3,-22],[3,-21],[7,-24],[-2,-26],[-12,-23],[-18,-15],[-23,-20],[-20,-16],[-26,-12],[-24,-4],[-2,0],[-22,-4],[-22,0],[-28,-16],[-11,-20],[-3,-6],[-12,-28],[-10,-26],[-20,-20],[-20,-14],[-18,-12],[-16,14],[-24,-6],[-28,2],[-24,-24],[-22,-16],[-10,-28],[-22,-34],[-16,-20],[-15,-20],[-16,-12],[-20,-8],[-26,-2],[-22,0],[-34,-6],[-28,-4],[-28,-32],[-22,-16],[-20,-10],[-38,14],[-28,4],[-26,6],[-24,-12],[-22,-6],[-22,4],[-22,20],[-17,14],[-24,2],[-7,-22],[-21,0],[-30,14],[-34,8],[-32,-11],[-36,-7],[-26,-2],[-28,-2],[-36,-10],[-26,-12],[-22,-2],[-26,-2],[-32,-12],[-26,-18],[-17,-14],[-20,8],[-20,0],[-14,24],[-16,16],[-4,24],[-2,24],[0,20],[-8,26],[-8,28],[-20,4],[-34,-9],[-10,25],[-2,28],[-16,16],[-30,-10],[-55,-28],[-31,-20],[-24,4],[-34,6],[-24,2],[-36,-18],[-15,-14],[-26,16],[-32,20],[-28,8],[-20,20],[-22,36],[-24,32],[-16,18],[-10,18],[-28,-16],[-12,-20],[-9,-24],[-5,-24],[0,-30],[-2,-22],[-20,-4],[-24,4],[-36,-12],[-16,-12],[-12,-34],[6,-26],[16,-30],[10,-40],[22,-22],[-2,-20],[-6,-22],[18,-18],[10,-34],[10,-24],[4,-20],[-16,-26],[-8,-22],[-4,-26],[3,-22],[11,-22],[16,-14],[-24,-18],[-14,-18],[-4,-34],[4,-23],[-22,-18],[-20,-12],[-6,-20],[-3,-28],[-15,-30],[-20,-16],[2,-22],[-2,-6],[-8,2],[-16,-2],[-6,-22],[8,-28],[15,-24],[1,-2],[0,-10],[-8,-22],[14,-22],[-4,-12],[-175,1],[-33,0],[-222,1],[-26,0],[-49,0],[-171,0],[-150,-2],[-32,0],[-356,-4],[-376,-4],[-34,1],[-21,0],[-298,1],[-228,1],[-22,0],[-112,0],[-93,1],[-139,-1],[-269,-1],[-25,0],[-339,-2],[-251,-2],[-28,0],[-197,0],[-129,0],[-119,0],[-30,0],[-150,-1],[-304,-2],[-206,-1],[-10,0],[-23,0],[-101,0],[-81,0],[-136,0],[-224,0],[-12,0],[-55,0],[-432,1],[-475,-1],[-33,0],[-7,0],[-333,0],[-365,2],[-246,-4],[-287,2],[-247,0],[-30,0],[-228,-2],[-249,0],[-376,-2],[-25,0],[-169,-1],[-370,-1],[-277,15],[-104,0],[-22,-1],[-45,1],[-45,1],[-876,8],[-185,2],[-27,0],[-397,2],[-193,1],[-66,0],[-350,1],[-127,1],[-1,0],[-197,1],[-185,0],[-189,1],[-26,0],[-288,-1],[-346,3],[-102,1],[-257,-2],[-1,0],[-224,-1],[-28,0],[-24,0],[-80,0],[-63,0],[-46,0],[-62,0],[-113,0],[-759,-2],[-463,0],[-157,-1],[-218,2],[-806,0],[-142,-1],[-348,0],[-401,0],[-466,0],[-287,0],[-44,9],[-52,0],[-1042,1],[-6,0],[-250,0],[-208,0],[-19,0],[-1,0],[-294,1],[-12,0],[-148,0],[-7,0],[-128,0],[-327,-1],[-207,0],[-48,1],[-205,0],[-421,1],[-3,0],[-23,0],[-6,0],[-75,0],[-133,0],[-233,1],[-594,1],[-152,0],[-93,0],[-301,1],[-1289,-2],[-215,0],[-990,-5],[-1506,4],[-185,1],[-290,0],[-8,0],[-17,0],[-488,1],[-741,1],[-378,1],[-1375,3],[-44,0],[-933,1],[-434,1],[-666,1],[-179,1],[-13,0],[-43,0],[-79,0],[-85,0],[-2,0],[-166,1],[-244,0],[-119,0],[-146,0],[-69,0],[-113,0],[-83,0]],[[117,58119],[1,113],[1,234],[2,354],[1,123],[2,338],[1,158],[1,170],[2,260],[1,67],[0,3],[-1,57],[0,1],[-1,37],[0,23],[-1,5],[0,44],[-1,33],[0,30],[-1,105],[-1,134],[0,60],[0,71],[0,65],[0,93],[0,47],[1,150],[1,79],[0,110],[1,32],[-1,36],[0,55],[0,23],[1,53],[0,118],[0,61],[0,64],[0,38],[1,37],[0,149],[4,173],[1,32],[-2,35],[-2,40],[-3,52],[0,39],[0,78],[1,136],[0,48],[4,112],[-1,33],[1,201],[1,132],[-3,216],[2,29],[0,25],[1,43],[0,352],[0,52],[-2,88],[4,344],[0,149],[3,222],[1,253],[-2,215],[-1,33],[-1,111],[1,101],[-1,200],[2,381],[1,94],[0,37],[0,55],[0,204],[0,379],[1,190],[0,186],[0,136],[1,175],[0,48],[0,24],[1,234],[-6,54],[3,152],[0,27],[0,106],[0,183],[2,263],[5,231],[0,36],[7,70],[5,31],[-2,383],[0,29],[-1,137],[-2,321],[1,276],[-1,82],[-1,63],[-1,26],[0,42],[0,27],[4,106],[2,41],[2,51],[-1,77],[0,11],[12,1502],[5,724],[1,66],[1,67],[1,159],[2,586],[6,590],[1,141],[-1,30],[1,28],[0,29],[0,24],[2,76],[3,169],[0,55],[0,49],[0,33],[0,20],[0,10],[0,77],[0,26],[1,23],[0,4],[0,32],[0,22],[0,22],[0,74],[-2,25],[-4,61],[1,100],[-2,74],[8,161],[5,99],[0,175],[3,276],[2,233],[1,149],[0,22],[2,294],[2,330],[1,585],[1,334],[0,1],[1,106],[1,396],[1,117],[0,176],[1,73],[0,45],[0,94],[1,75],[0,88],[0,86],[1,331],[1,117],[1,357],[2,103]],[[99856,73060],[-162,0],[-915,2],[-287,1],[-138,0],[1,247],[0,291],[0,31],[-3,38],[-41,-1],[-706,-5],[-1,132],[0,69],[0,41],[-1,175],[-1,134],[0,67],[0,35],[-1,65],[0,21],[-2,443],[0,75],[-1,64],[-7,188],[1,41],[0,22],[-7,179],[-25,0],[0,152],[0,38],[-6,98],[-126,2],[-41,2],[-111,-4],[-44,0],[-451,-1],[-1,67],[-1,53],[-16,1335],[-60,1],[-665,-3],[-222,-8],[-126,0],[-24,0],[-450,0],[-639,1],[-718,0],[-350,0],[-187,0],[-375,-2],[4,-982],[0,-6],[-1,-355],[-421,-91],[-15,-16],[-20,-8],[-28,-9],[-30,-3],[-34,-13],[-20,-19],[-34,-10],[-26,-11],[-26,-13],[-37,-26],[-43,-26],[-31,-17],[-34,-14],[-2,-22],[-8,-23],[-19,-18],[-13,-37],[1,-21],[-12,-29],[-17,-11],[-14,-19],[-13,-16],[-17,-16],[-25,-31],[30,-23],[22,-13],[24,-13],[16,-19],[-5,-30],[2,-20],[12,-26],[-31,-16],[-40,-5],[-34,1],[-49,2],[-39,-1],[-33,5],[-26,-1],[-57,-22],[-32,-14],[-36,-21],[-23,-7],[-21,4],[-24,9],[-30,25],[-22,0],[-28,-2],[-25,-1],[-47,4],[-36,0],[-26,-10],[-21,-17],[-9,-25],[-5,-24],[-6,-39],[-8,-34],[-9,-41],[-12,-21],[-30,-47],[-60,-36],[-58,-21],[-74,-9],[-81,41],[-131,66],[-126,47],[-28,26],[-24,8],[-36,7],[-27,9],[-30,8],[-20,5],[-26,5],[-24,6],[-19,8],[-24,13],[-19,18],[-14,15],[-19,22],[19,18],[11,18],[7,24],[4,40],[-23,21],[-5,33],[6,22],[1,27],[-18,30],[23,36],[6,22],[0,24],[4,28],[-8,34],[-10,46],[-3,29],[-25,28],[-18,35],[-22,36],[27,14],[6,25],[-5,26],[20,12],[30,11],[30,16],[3,29],[15,24],[6,22],[2,35],[17,31],[-6,32],[-15,32],[-3,21],[-3,23],[-4,30],[-4,29],[-5,26],[2,26],[-7,27],[-6,23],[11,33],[-10,30],[-20,8],[-18,11],[-26,25],[-35,29],[-28,32],[-16,20],[-14,20],[-28,46],[-8,40],[-4,30],[-10,25],[-24,19],[-45,18],[-30,6],[-45,-12],[-67,-17],[-51,-20],[-27,-19],[-45,-14],[-44,-12],[-48,-10],[-41,-7],[-33,-1],[-27,-1],[-40,-5],[-20,-5],[-6,-9],[0,-21],[-8,-10],[-46,-12],[-23,-6],[-37,-9],[-50,-20],[-35,-18],[-29,-9],[-50,-12],[-38,-14],[-39,-20],[9,18],[15,26],[4,31],[-14,29],[-25,27],[-31,24],[-21,4],[-36,15],[-31,25],[-16,20],[-29,19],[-21,-7],[-32,-2],[-39,-6],[-26,-6],[-18,-18],[-11,-26],[-18,-24],[-22,-20],[-23,-17],[-29,-27],[-31,-6],[-32,-7],[-51,-24],[-47,-10],[-34,-5],[-45,12],[-38,6],[-34,7],[-48,13],[-29,11],[-27,10],[-34,-5],[-19,-14],[-23,-32],[-25,-27],[-21,-25],[-21,-8],[-30,2],[-43,5],[-29,12],[-30,17],[-23,13],[-27,10],[-48,5],[-24,-26],[-19,-25],[-15,-20],[-1,-27],[-34,-16],[-25,-6],[-45,-5],[-39,-5],[-42,-8],[-25,-13],[-29,-20],[-23,-6],[-19,-11],[-20,-16],[-14,-24],[-13,-35],[-9,-40],[-17,-16],[-31,-11],[-34,2],[-24,0],[-41,10],[-30,5],[-46,13],[-20,-5],[-28,-7],[-57,-22],[-22,-33],[-32,-16],[-41,-14],[-72,-19],[-58,7],[-55,26],[-42,23],[-29,14],[-23,6],[-44,11],[-34,20],[-38,33],[-20,1],[-34,-5],[-32,7],[-34,23],[-31,5],[-44,2],[-27,-4],[-21,-21],[-51,1],[-40,-5],[-67,-7],[-69,-6],[-43,3],[-25,5],[-28,-12],[-16,-27],[-22,-23],[-28,-25],[-70,-49],[-68,-12],[-32,11],[-21,5],[-32,5],[-38,13],[-21,11],[-47,15],[-36,16],[-50,27],[-31,23],[-31,17],[-24,13],[-25,8],[-30,5],[-20,-6],[-24,-10],[-20,-14],[-16,-22],[2,-29],[6,-35],[2,-20],[3,-38],[-16,-16],[-25,-19],[-22,-12],[-21,-17],[-27,-32],[-19,-31],[-3,-33],[-13,-30],[-14,-21],[-16,-22],[-20,-3],[-27,9],[-30,7],[-17,-22],[-17,-14],[-27,-3],[-32,0],[-25,-2],[-34,-1],[-21,1],[-26,9],[-32,9],[-22,1],[-98,0],[-71,4],[-60,-10],[-42,-11],[-31,-11],[-27,-11],[-26,-5],[-33,1],[-30,4],[-39,2],[-43,3],[-41,4],[-22,-3],[-32,-4],[-20,-7],[-36,-5],[-47,-5],[-27,-11],[-30,-15],[-29,-17],[-31,-11],[-27,-10],[-20,-10],[-22,-8],[-127,9],[-24,-36],[-14,-59],[-7,-54],[-35,-1],[-40,-5],[-72,-4],[-43,-3],[-71,-9],[-61,-18],[-46,-14],[-42,-14],[-40,-3],[-42,2],[-38,8],[-31,4],[-30,-11],[-38,-12],[-45,-8],[-45,0],[-40,21],[-22,17],[-48,25],[-21,11],[-23,36],[-7,33],[-21,7],[-20,17],[-19,18],[-36,35],[-36,-17],[-65,-24],[-54,-7],[-33,4],[-24,11],[-3,63],[-8,24],[-51,88],[-77,-2],[-96,-2],[-102,-8],[-72,24],[-35,104],[2,15],[-30,21],[-8,12],[-18,14],[-12,-2],[-32,-19],[-35,-4],[-30,8],[-161,131],[-190,-28],[-47,59],[-31,-3],[-90,2],[-69,33],[-19,43],[-71,-4],[-29,6],[-79,41],[-25,30],[-20,9],[-16,22],[-13,20],[-22,9],[-17,23],[-9,18],[-13,4],[-23,-8],[-100,-14],[-21,3]],[[81315,76182],[-26,3],[-27,-14],[-20,5],[-20,-8],[-89,-25],[-20,-5],[-24,12],[-97,139],[-60,-8],[-32,-24],[-24,-1],[-24,4]],[[80852,79936],[3176,10],[3305,10],[334,1],[148,1],[207,1],[700,2],[1064,3],[218,1],[2206,7],[4038,12],[3571,12],[2,-22],[1,-93],[1,-207],[2,-234],[2,-192],[0,-82],[2,-234],[1,-94],[5,-616],[0,-12],[2,-354],[0,-1],[0,-35],[1,-156],[1,-180],[0,-40],[6,-124],[1,-44],[-3,-51],[0,-25],[0,-38],[0,-81],[1,-243],[0,-22],[0,-75],[4,-35],[0,-26],[0,-21],[2,-32],[1,-120],[0,-121],[-4,-547],[-1,-200],[1,-268],[-2,-386],[-6,-707],[2,-589],[7,-279],[0,-12],[2,-57],[0,-37],[5,-206],[1,-38]],[[49878,72176],[-23,-23],[-13,-29],[-12,-26],[-20,-20],[-18,-11],[-17,-14],[-18,-33],[11,-26],[-3,-24],[-8,-31],[-8,-32],[-21,-51],[5,-33],[-2,-33],[-20,-17],[-10,-18],[-11,-17],[-22,-38],[-17,-16],[-23,-4],[-25,-2],[-21,-3],[-25,-19],[-23,-15],[-40,-8],[-20,5],[-26,6],[-20,7],[-21,4],[-31,-5],[-22,-16],[-31,-11],[-29,-9],[-31,-1],[-28,1],[-30,1],[-27,-6],[-27,-10],[-27,-15],[-19,-15],[-15,-15],[-22,-24]],[[49068,71530],[-27,6],[-23,5],[-24,5],[-22,1],[-27,-14],[-21,-13],[-26,-25],[-10,-24],[3,-28],[12,-24],[4,-25],[-9,-27],[-8,-19],[-18,-22],[-19,-19],[-28,-29],[-23,9],[-33,4],[-56,12],[-26,-8],[-43,2],[-28,-3],[-28,-1],[-64,4],[-36,3],[-22,3],[-24,5],[-28,3],[-27,4],[-26,12],[-30,0],[-23,4],[-21,5],[-19,6],[-23,12],[-28,-2],[-31,-4],[-14,-27],[-12,-20],[-23,-30],[-17,-21],[-16,-20],[-31,-14],[-20,-7],[-17,-18],[-6,-20],[-5,-35],[-6,-21],[-23,-20],[-34,-36],[-13,-21],[-23,-27],[-41,11],[-41,2],[-38,1],[-31,-10],[-22,-8],[-33,-16],[-7,-24],[8,-31],[-11,-26],[-15,-29],[-11,-22],[-10,-18],[-8,-25],[-44,-14],[-30,-13],[-29,-16],[-26,-13],[-21,-8],[-27,-8],[-15,-21],[-15,-36],[-39,-46],[-21,-7],[-22,-10],[-46,20],[-24,-1],[-25,-18],[-28,-9],[-46,9],[-21,7],[-61,25],[-28,6],[-23,5],[-21,8],[-25,12],[-23,9],[-30,-1],[-23,-19],[-41,-16],[-25,0],[-46,2],[-20,-6],[-45,-8],[-24,-5],[-32,-5],[-35,4],[-18,-19],[-10,-21],[-20,-39],[-11,-18],[-25,-20],[-20,-8],[-27,-19],[-30,-5],[-22,11],[-23,8],[-21,14],[-18,20],[-23,24],[-20,8],[-29,8],[-22,-3],[-26,4],[-23,11],[-13,19],[-18,20],[-31,-3],[-14,-16],[-6,-21],[-1,-30],[-16,-17],[-21,-23],[-1,-22],[-12,-21],[-18,-18],[-28,-7],[-20,-12],[-37,-4],[-34,20],[-28,13],[-37,-1],[-27,2],[-28,10],[-20,16],[-56,26],[-13,18],[-31,11],[-28,3],[-23,12],[-20,1],[-20,-7],[-10,-19],[-17,-21],[-20,-10],[-19,-14],[-13,-21],[-18,-10],[-17,-15],[-24,-16],[-22,-7],[-22,-3],[-27,-4],[-23,-10],[-23,-2],[-24,-11],[-26,-11],[-27,-16],[-29,-10],[-5,-24],[-10,-19],[-21,-9],[-13,-22],[-23,-11],[-28,-6],[-22,-6],[-22,-11],[-13,-30],[-9,-21],[0,-39],[-15,-19],[-14,-20],[-11,-21],[-8,-18],[8,-22],[42,-61],[-3,-22],[-9,-42],[-19,-5],[-22,-8],[-25,-6],[-26,-8],[-26,-8],[-23,-5],[-26,-8],[-23,-14],[-19,-11],[-23,-4],[-22,-4],[-18,-13],[-8,-22],[-27,-4],[-19,-20],[-14,-15],[-13,-15],[-29,-11],[-24,-5],[-41,-4],[-34,7],[-36,11],[-26,-5],[-38,-18],[-21,-18],[-34,-16],[-1,-24],[-33,-2],[-23,-1],[-24,-2],[-24,-1],[-32,-16],[-19,-25],[-40,0],[-27,-28],[-28,14],[-2,-27],[4,-28],[-23,-29],[-7,-22],[2,-30],[-41,-8],[-25,3],[-24,7],[-28,-18],[-32,3],[-16,25],[-10,19],[-34,4],[-32,-15],[-58,-26],[-20,-9],[17,-30],[10,-19],[-24,-11],[-22,-10],[-30,-14],[-25,-9],[4,-45],[-107,26],[-52,8],[-34,20],[-33,19],[-19,11],[-21,14],[-10,31],[-12,24],[-18,24],[-39,5],[-17,13],[-26,-15],[-20,-14],[-26,-14],[-28,-11],[-22,-10],[-20,-6],[-22,-15],[-21,-7],[-17,-23],[-24,-8],[-22,-18],[-18,-19],[-15,-23],[-21,-10],[-19,-15],[-38,-21],[-5,-21],[-22,-16],[-22,-6],[-28,-1],[-25,2],[-30,-5],[-31,-1],[-25,0],[-20,-17],[-79,-119],[-26,-40],[-16,-24],[-28,-3],[-27,-3],[-2,0],[-53,-11],[-12,-3],[-23,-5],[-10,-19],[-10,-22],[-22,-47],[-18,-37],[-26,-55],[-29,-24],[-11,-9],[-17,-13],[-16,-14],[-16,-13],[-20,-16],[-19,-15],[-25,-19],[-33,-28],[-14,-10],[-10,-8],[-17,-12],[-18,-11],[-140,-80],[-25,-15],[-34,-19],[-18,-10],[-74,-45],[-27,-14],[-36,-12],[-23,-10],[-33,-1],[-25,-9],[-15,-22],[-22,-8],[-23,2],[-22,11],[-15,-20],[-6,-23],[-16,-19],[-24,-11],[-27,8],[-27,6],[-23,0],[-18,8],[-27,8],[-20,-1],[-23,-7],[-26,-19],[-26,-7],[-27,-11],[-26,-7],[-24,-2],[-21,-1],[-20,2],[-30,-4],[-7,-20],[-22,-9],[-22,-14],[-25,-5],[-11,20],[-19,13],[-10,17],[-16,14],[-21,10],[-28,5],[-21,1],[-28,7],[-23,16],[-22,10],[-1,23],[-1,22],[-1,27],[-16,13],[-23,2],[-20,0],[-23,-7],[-29,2],[-21,-4],[-20,13],[-15,17],[-14,19],[-40,11],[-24,-7],[-30,-6],[-2,20],[-4,24],[-17,17],[-10,22],[-14,15],[-6,22],[15,16],[21,4],[13,16],[-13,21],[-20,6],[-25,2],[-18,24],[-23,-1],[-22,-5],[-21,-9],[-20,-20],[-28,-3],[-22,17],[-22,7],[-22,21],[-17,15],[-17,13],[-8,20],[-6,22],[-13,17],[-21,16],[-21,22],[2,30],[27,7],[19,11],[19,16],[16,12],[-27,7],[-23,16],[-19,23],[-15,14],[-22,-1],[-29,-4],[-37,0],[-21,3],[-28,5],[7,22],[10,30],[0,28],[-14,27],[-13,16],[-11,21],[0,24],[2,31],[-8,21],[-10,23],[-26,10],[-23,19],[-30,6],[-25,1],[-16,-14],[-15,-19],[-14,-18],[-17,-23],[-23,-19],[-24,-7],[-23,-10],[-3,-25],[-20,-14],[-24,-10],[-35,-8],[-25,-7],[-23,-6],[-27,-5],[-30,-7],[-18,-8],[-24,-6],[-29,-15],[-24,-9],[-9,-21],[-14,-22],[-17,-12],[-23,-9],[-35,-7],[-20,-14],[-8,-20],[-14,-22],[-21,-8],[-25,1],[-24,-3],[-22,-6],[-15,15],[-25,9],[-24,-3],[-27,3],[-23,0],[-22,-7],[-25,0],[-22,6],[-19,18],[-20,1],[-20,-5],[-26,-1],[-28,3],[-21,8],[-20,3],[-22,-11],[-25,2],[-25,-2],[-21,-1],[-32,-3],[-21,-10],[-26,1],[-27,-7],[-26,-9],[-22,-7],[-20,-10],[-18,-14],[-21,-19],[-23,-13],[-18,-9],[-20,-8],[-24,-12],[-21,-11],[-31,-14],[-28,-24],[-24,1],[-14,17],[-20,16],[-4,21],[0,23],[2,24],[6,22],[8,19],[8,25],[-12,26],[-3,22],[-16,16],[-30,10],[-22,13],[-29,11],[-20,10],[-16,15],[-18,23],[-15,24],[-20,28],[-19,19],[-19,7],[-24,15],[-17,18],[-21,14],[-24,12],[-21,16],[-12,18],[-12,18],[-27,5],[-19,16],[-15,15],[-20,6],[-44,18],[-14,20],[-22,3],[-27,1],[-17,19],[-21,16],[-21,-3],[-28,3],[-20,-6],[-21,-10],[-23,-4],[-19,-15],[-17,-13],[-24,3],[-30,4],[-20,-6],[-21,-13],[-4,-23],[-7,-20],[-10,-25],[-20,-14],[-21,-20],[-19,-17],[-25,-6],[-26,11],[-22,7],[-25,8],[-25,-2],[-19,10],[-27,8],[-28,10],[-18,12],[-18,13],[-21,19],[-18,20]],[[99856,73060],[2,-365],[1,-129],[0,-79],[1,-114],[-8,-433],[-7,-334],[-1,-53],[-10,-343],[-14,-400],[1,-11],[0,-12],[-3,-406],[-7,-235],[-4,-157],[7,-97],[-3,-226],[-1,-75],[-2,-169],[-2,-215],[-2,-144],[-2,-185],[0,-54],[0,-85],[0,-22],[0,-39],[1,-381],[0,-176],[1,-265],[0,-30],[0,-188],[1,-147],[-2,-111],[0,-10],[0,-17],[0,-65],[0,-163],[0,-91],[0,-228],[0,-90],[0,-156],[-1,-259],[0,-124],[0,-177],[0,-5],[0,-45],[0,-99],[0,-63],[0,-44],[0,-53],[0,-96],[0,-114],[0,-20],[0,-5],[0,-113],[0,-310],[0,-40],[0,-138],[2,-198],[0,-41],[0,-169],[0,-67],[-1,-429],[0,-158],[0,-146],[-2,-37],[1,-154],[-1,-81],[0,-179],[0,-164],[0,-76],[4,-263],[-2,-198],[-3,-36],[0,-66],[1,-32],[1,-56],[0,-25],[-2,-72],[3,-363],[-2,-241],[2,-57],[1,-231],[0,-128],[0,-63],[-2,-582],[1,-3],[0,-53],[-2,-490],[2,-557],[1,-73],[0,-213],[1,-187],[0,-133],[1,-30],[0,-127],[0,-37],[1,-299],[0,-340],[0,-5],[1,-331],[0,-166],[0,-119],[0,-116],[0,-113],[-1,-113],[0,-310],[-1,-317],[0,-228],[-1,-159],[0,-8],[0,-41],[0,-227],[-1,-413],[-1,-314],[0,-17],[0,-4],[0,-76],[0,-173],[-1,-196],[0,-53],[-1,-261],[0,-28],[-4,-1001],[-1,-332],[-1,-357],[0,-21],[0,-165],[0,-72],[0,-124],[0,-83],[0,-211],[0,-71],[-1,-257],[0,-158],[0,-138],[0,-94],[0,-103],[-1,-236],[0,-444],[0,-27],[-1,-315],[1,-46]],[[99793,49958],[-22,-8],[-21,-2],[-15,14],[-17,17],[-23,10],[-20,9],[-20,-9],[-23,-7],[-36,0],[-25,6],[-32,-34],[-21,0],[-20,-4],[-19,-13],[-16,-20],[-21,-3],[-15,20],[-13,22],[-20,18],[-12,19],[-22,6],[0,-25],[-13,-16],[-18,-9],[-9,-23],[-7,-20],[11,-37],[-7,-19],[-16,-26],[-9,-19],[-17,-11],[-22,13],[-24,5],[-20,-14],[-30,-8],[-22,-3],[-24,16],[-32,22],[-26,17],[-15,-25],[-22,-15],[-11,-22],[-6,-22],[4,-23],[-5,-25],[-12,-29],[-8,-21],[-12,-22],[-19,-14],[-30,-15],[-18,-12],[-18,-10],[7,-29],[7,-33],[-15,-38],[-5,-24],[4,-22],[-15,-18],[-24,-15],[-19,-11],[-28,12],[-21,-16],[-60,-2],[-8,-22],[-6,-25],[-2,-21],[6,-20],[11,-27],[-19,-16],[-32,-15],[-47,0],[-279,2],[-47,0],[-769,0],[-176,1],[-594,0],[-373,0],[-391,1],[-181,0],[-184,0],[-51,0],[-129,1],[-75,0],[-124,0],[-83,1],[-31,0],[-249,-1],[-467,-1],[-213,0],[-531,2],[-130,0],[-11,0],[-180,1],[-46,1],[-214,0],[-195,0],[-359,0],[-168,0],[-174,0],[-324,1],[-205,0],[-233,1],[-285,1],[-337,1],[-373,-1],[-567,-1],[-32,0],[-22,0],[-490,-1],[-40,0],[-479,-1],[-134,0],[-183,0],[-35,0],[-140,0],[-805,-2],[-378,0],[-208,-1],[-318,0],[-442,-1],[-24,0],[-91,0],[-228,0],[-441,-3],[-399,-3],[-1,0],[-424,-2],[-95,0],[-443,1],[-174,1],[-91,0],[-293,1],[-133,1],[-576,2],[-506,1],[-59,1],[-316,-2],[-364,-1],[-673,-3],[-417,-4],[-25,0],[-23,0],[-2,0]],[[80385,49239],[-3,22],[-6,33],[0,1],[-8,41],[2,22],[7,16],[6,6],[2,5]],[[80385,49385],[8,5],[19,13],[7,5],[16,8],[3,4],[11,13],[-5,22],[-48,34],[-2,1],[-2,9],[-10,38],[-1,7],[0,15],[1,2],[4,9],[2,5],[4,4],[7,7],[5,6],[95,67],[28,20],[27,28],[10,19],[14,65],[2,20],[-5,30],[-54,87],[-3,2],[-52,41],[-43,33],[-17,53],[3,5],[-1,43],[0,9],[-1,24],[-21,31],[-7,11],[-4,13],[-8,31],[-9,32],[3,79],[1,19],[5,9],[-5,32],[-2,14],[-4,26],[-13,31],[-9,6],[-11,7],[-6,4],[-9,0],[-22,-2],[-12,0],[-2,-2],[-4,-4],[-22,-5],[-74,-8],[-4,1],[-1,0],[-59,17],[-7,4],[-12,7],[-10,6],[-10,13],[-1,1],[-3,4],[-6,33],[-1,2],[-52,47],[-85,54],[-6,4],[0,17],[6,6],[10,11],[10,3],[56,17],[120,12],[40,4],[28,8],[43,15],[18,10],[2,2],[14,14],[9,9],[2,6],[2,10],[3,16],[0,1],[-7,18],[-3,35],[3,15],[21,37],[19,33],[-11,105],[-2,9],[0,5],[-4,18],[-19,21],[-6,7],[-1,1],[-48,46],[-26,15],[-39,8],[-10,7],[-12,8],[-9,12],[-5,25],[-6,81],[-2,23],[0,6],[3,5],[32,52],[8,26],[6,18],[9,22],[55,61],[5,5],[18,13],[153,15],[15,7],[16,22],[62,105],[5,11],[-5,24],[-6,11],[-9,16],[-5,9],[-5,3],[-59,35],[-17,9],[-2,2],[-46,19],[-1,1],[-11,6],[-33,49],[-15,24],[-2,6],[-3,10],[-10,27],[1,31],[16,19],[7,1],[19,2],[12,9],[24,23],[20,20],[3,3],[4,13],[79,70],[6,5],[14,3],[15,3],[16,17],[88,121],[2,3],[10,13],[21,63],[-4,27],[-6,40],[4,11],[18,22],[21,26],[4,5],[8,2],[8,2],[19,5],[76,-18],[52,0],[26,0],[26,11],[36,15],[-37,53],[-25,38],[-70,44],[-50,31],[-21,14],[-16,7],[-9,4],[-41,18],[-3,1],[-2,6],[-7,21],[0,38],[1,12],[13,83],[1,2],[3,9],[3,7],[10,11],[2,2],[2,1],[33,14],[23,3],[15,-2],[42,-4],[4,0],[1,0],[53,-18],[13,-4],[9,-1],[31,0],[36,6],[9,7],[17,11],[25,26],[17,17],[1,2],[8,17],[13,27],[6,13],[28,28],[23,17],[23,16],[11,14],[2,7],[1,2],[7,22],[-3,28],[-4,27],[7,14],[18,17],[16,14],[4,7],[20,36],[3,6],[-10,21],[-18,38],[-18,57],[-17,88],[-1,5],[3,10],[3,11],[19,23],[12,16],[12,14],[-1,9],[-1,2],[-3,29],[-14,24],[-17,15],[-38,24],[-17,5],[-48,5],[-81,-9],[-71,-17],[-5,-2],[-8,-8],[-9,1],[-20,-9],[-19,-3],[-6,3],[-27,11],[-9,14],[-7,33],[-1,7],[6,13],[1,3],[10,19],[7,3],[65,36],[64,29],[20,13],[3,2],[12,12],[11,11],[14,29],[3,13],[9,37],[1,2],[2,21],[0,8],[0,16],[-7,66],[29,23],[46,13],[17,4],[19,3],[75,8],[4,0],[8,-1],[35,-4],[11,-4],[8,-4],[34,-6],[16,1],[10,1],[20,1],[26,9],[34,11],[5,2],[30,19],[22,22],[1,2],[14,40],[-6,22],[-3,8],[-53,37],[-52,29],[-4,2],[-8,6],[-10,7],[-6,5],[-34,36],[-1,3],[-24,47],[-7,15],[-3,17],[-8,37],[-42,61],[-45,28],[-51,18],[-28,11],[-7,4],[-26,15],[-11,9],[-17,15],[-11,37],[3,31],[3,43],[6,12],[13,25],[14,14],[74,31],[38,7],[309,38],[33,1],[48,-7],[52,-30],[6,-6],[4,-4],[23,-22],[5,-9],[8,-13],[2,-4],[11,-24],[4,-21],[4,-21],[0,-9],[-3,-26],[-4,-14],[-10,-31],[-8,-61],[-2,-26],[6,-30],[1,-7],[9,-8],[25,-27],[4,-3],[26,-15],[117,-55],[42,5],[25,25],[1,1],[19,34],[-1,5],[-1,6],[-2,11],[-51,51],[-36,38],[-28,37],[-6,32],[1,5],[2,16],[2,8],[19,35],[20,19],[6,5],[11,10],[19,10],[29,16],[10,10],[0,1],[20,22],[16,38],[10,39],[3,10],[10,39],[-5,26],[-3,13],[1,31],[7,7],[12,13],[36,4],[48,-8],[34,-14],[45,-19],[19,-9],[25,-9],[16,-3],[5,0],[18,2],[27,3],[5,5],[28,31],[2,5],[6,22],[36,155],[9,82],[4,41],[30,53],[33,42],[20,25],[9,15],[17,26],[17,31],[5,9],[0,6],[5,53],[-9,44],[-12,29],[-18,26],[-37,36],[-18,15],[-22,18],[-35,24],[-18,28],[-10,23],[-3,6],[-22,116],[24,28],[21,13],[19,10],[14,9],[38,9],[9,1],[17,0],[17,1],[18,-5],[31,-22],[4,-24],[5,-26],[4,-22],[-16,-86],[-3,-17],[0,-8],[1,-14],[8,-25],[8,-9],[24,-14],[6,-3],[45,-10],[70,-6],[5,-1],[1,0],[17,-8],[13,3],[27,5],[21,4],[23,14],[33,20],[50,36],[60,34],[31,12],[33,3],[27,-4],[20,-12],[71,-42],[14,-8],[34,-24],[43,-30],[38,-21],[35,-14],[1,0],[14,-3],[27,-5],[21,2],[29,4],[12,1],[27,13],[25,26],[13,21],[-10,52],[-30,83],[-40,20],[-187,45],[-2,0],[-60,21],[-6,4],[-33,23],[-8,6],[-8,11],[-2,5],[-5,19],[-4,15],[1,8],[17,17],[30,19],[43,15],[34,7],[27,7],[15,9],[4,2],[-54,1],[-151,7],[-29,0],[-111,0],[-463,-4],[-204,-1],[-588,1],[-52,1]],[[81512,56120],[-6,248],[-1,11],[-2,87],[-6,233],[-8,282],[-1,27],[-1,28],[-15,577],[-12,427],[-15,559],[-11,406],[-4,126],[0,18],[-5,163],[-3,119],[-1,40],[-4,137],[-7,389],[-1,15],[0,6],[0,24],[-11,422],[-3,86],[-1,88],[-2,65],[-1,68],[-3,148],[0,34],[0,85],[0,24],[-1,34],[-6,355],[-1,3],[-4,228],[-2,128],[-1,45],[-1,80],[-1,61],[-1,32],[-2,78],[0,23],[0,24],[-2,83],[0,22],[-2,72],[-1,64],[0,36],[-1,59],[-2,112],[-1,23],[-1,47],[-4,156],[-2,34],[-7,230],[-1,47],[-1,31],[0,104],[0,281],[0,84],[0,171],[0,5],[1,102],[0,81],[0,250],[-1,227],[0,100],[0,141],[-1,163],[-1,85],[-1,43],[-2,89],[-1,63],[0,296],[0,21],[0,15],[0,115],[0,143],[0,125],[-1,83],[0,28],[0,51],[0,3],[-1,28],[1,22],[-1,37],[0,117],[0,87],[-1,108],[0,75],[0,21],[0,21],[0,63],[0,108],[0,36],[0,64],[0,39],[-1,42],[0,27],[0,32],[-2,155],[-1,34],[-2,186],[0,24],[-1,68],[0,29],[-1,58],[0,36],[-2,188],[-2,319],[0,42],[-2,248],[-2,297],[-3,185],[-1,103],[-2,146],[0,97],[0,484],[0,33],[0,4],[1,89],[0,35],[0,25],[0,117],[1,22],[0,475],[0,139],[0,126],[0,160],[0,68],[0,342],[0,139],[2,555],[0,3],[-9,491],[2,392],[0,39],[4,480],[1,130],[0,186],[1,150],[0,67],[0,462],[1,231],[-9,361],[0,40],[1,35],[1,214],[0,62],[6,846]],[[81512,56120],[-209,4],[-96,-1],[-355,-1],[-286,3],[-303,2],[-508,0],[-152,0],[-247,0],[-26,1],[-82,0],[-213,-1],[-52,1],[-62,-1],[-563,-1],[-110,1],[-927,2],[-657,2],[-414,2],[-2,0],[-34,0],[-159,1],[-191,0],[-140,0],[-10,0],[-45,0],[-140,0],[-83,0],[-101,0],[-249,0],[-765,1],[-75,0],[-101,0],[-44,0],[-62,0],[-315,0],[-37,0],[-327,0],[-1940,-1],[-500,-1],[-54,1],[-349,-1],[2,99],[-390,4],[-427,4],[-261,3],[-528,4],[-147,2],[-22,0],[-136,-1],[-3,0],[-20,-1],[-126,1],[-5,0],[-24,0],[-1,0],[-57,0],[-268,1],[-350,0],[-342,0],[-90,1],[-66,0],[-135,0],[-661,1],[-243,-1],[-339,1],[-26,0],[-543,4],[-15,0],[-33,0],[-8,0],[-217,2],[-436,3],[-327,2],[-103,1],[-58,1],[-191,1],[-152,-16],[-30,0]],[[63749,56249],[0,51],[1,132],[3,345],[1,106],[0,100],[0,2],[2,258],[1,135],[0,44],[1,32],[0,52],[0,34],[0,31],[1,206],[2,201],[-30,0],[-137,1],[-134,0],[-389,3]],[[63071,57982],[2,417],[-1,602],[0,328],[-1,398],[0,269],[0,1],[-2,40],[0,104],[1,196],[0,190],[0,325],[0,193],[0,16],[-6,587],[-83,0],[0,83],[0,444],[-1,320],[0,97],[0,1],[0,25],[-2,505],[-1,187],[0,64],[0,146],[0,143],[-1,68],[1,121],[-1,66],[0,17],[0,36],[0,2],[0,136],[0,133],[0,61],[0,290],[0,229],[0,23],[-1,109],[1,39],[0,70],[0,292],[-1,146],[0,565],[0,6],[0,223],[0,249],[-1,130],[0,176],[0,67],[0,199],[2,375],[0,150],[0,49],[1,56],[0,1],[1,274],[0,79],[1,66],[0,75],[1,100],[-1,20],[-2,254],[-126,0],[0,345],[0,4],[0,175],[1,247],[0,1],[0,96],[0,429],[0,77],[1,180],[0,31],[1,264],[1,176],[-1,38],[0,23],[-4,371],[0,32],[-1,118],[-2,503],[0,72],[5,622],[1,68],[1,66],[0,36],[3,134],[0,24],[5,280],[0,30],[3,182],[1,64],[5,248]],[[63071,57982],[-156,1],[-100,0],[-152,1],[-103,1],[-78,0],[-92,1],[-84,0],[-146,1],[-62,0],[-287,2],[-41,0],[-35,0],[-295,1],[-203,1],[-249,1],[-235,1],[-163,0],[-51,0],[-208,1],[-204,0],[-147,0],[-98,0],[-5,0],[-19,0],[-45,0],[-18,1],[-45,0],[-58,0],[-22,0],[-29,0],[-57,1],[-58,1],[-33,1],[-106,2],[-118,2],[-2,100],[-3,115],[-1,46],[-1,27],[0,28],[-1,65],[0,22],[-1,52],[-1,47],[0,18],[0,8],[-1,25],[0,28],[0,14],[0,33],[-1,29],[0,203],[-33,0],[-101,-1],[-56,-1],[-276,4],[-101,1],[-57,1],[-83,3],[-12,22],[-22,13],[-20,5],[-27,2],[-27,1],[-26,-3],[-21,-2],[-19,17],[-17,12],[-26,2],[-33,6],[-11,17],[5,23],[21,17],[14,15],[16,18],[23,9],[23,16],[22,13],[26,11],[15,18],[15,20],[22,8],[25,12],[-4,25],[-11,20],[22,17],[18,11],[17,21],[-19,35],[-4,22],[5,22],[3,26],[-8,20],[-36,17],[-29,14],[-24,14],[-25,3],[-22,1],[-28,-2],[-20,-2],[-25,4],[-4,19],[-3,25],[-29,9],[-22,7],[-21,15],[-18,23],[-12,17],[11,25],[18,17],[-10,20],[-17,14],[-20,20],[-23,8],[-17,12],[-16,14],[-23,11],[-19,10],[-17,14],[-14,18],[-7,20],[-20,8],[-30,-15],[-23,-15],[-25,-2],[-33,-1],[-24,-2],[-24,-3],[-20,11],[-12,17],[-18,20],[-19,19],[-14,15],[-11,19],[-34,22],[-22,11],[-22,7],[-23,-7],[-23,-18],[-21,-8],[-26,-8],[-24,5],[-25,7],[-3,26],[5,23],[-9,18],[-15,20],[-11,22],[-3,22],[5,24],[-12,23],[2,10],[3,13],[14,17],[12,23],[-9,20],[-14,17],[0,26],[-8,24],[-18,12],[-7,21],[-8,29],[-14,23],[-20,7],[-23,7],[-17,16],[-9,29],[-14,21],[-13,16],[-26,9],[-23,9],[-22,9],[-25,10],[-26,13],[-22,10],[-26,8],[-19,8],[-25,25],[-20,23],[-18,16],[-6,23],[-10,27],[-12,25],[-5,22],[2,21],[-15,22],[-22,7],[-23,14],[-20,9],[-21,-3],[-20,-5],[-16,16],[-1,20],[-14,22],[-14,14],[-13,24],[-6,26],[-16,16],[18,10],[24,4],[8,21],[-13,16],[-17,18],[-15,20],[-19,16],[-8,19],[-14,18],[-17,18],[1,22],[1,23],[-21,-7],[-20,-12],[-23,-9],[-28,-13],[-24,-10],[-21,-7],[-21,-15],[-29,-17],[-17,-21],[-22,2],[-28,-6],[-25,-1],[-19,-9],[-25,-20],[-23,-9],[-21,1],[-21,-4],[-5,-23],[-1,-21],[-19,-20],[-18,-19],[-24,-12],[-24,10],[-27,4],[-25,8],[-28,10],[-21,-3],[-25,7],[-29,7],[-19,14],[-25,4],[-17,14],[-24,48],[-13,22],[-18,11],[-24,15],[-19,12],[-17,12],[-18,15],[-16,20],[-5,22],[-1,22],[1,21],[0,23],[-12,35],[-15,16],[-21,12],[0,32],[14,20],[10,22],[17,19],[18,15],[21,14],[18,11],[21,17],[21,14],[1,30],[10,26],[21,19],[22,12],[16,14],[26,11],[17,12],[-9,21],[-21,23],[-12,20],[-22,9],[-21,4],[-9,23],[9,20],[10,17],[18,24],[8,22],[9,20],[0,24],[-14,19],[-14,28],[-13,20],[-18,13],[-21,17],[-6,23],[4,24],[3,22],[1,24],[8,30],[21,15],[21,16],[16,14],[21,14],[13,23],[15,20],[12,21],[11,24],[8,21],[6,23],[-5,24],[-4,32],[16,14],[21,13],[19,10],[21,11],[21,11],[10,22],[3,22],[2,24],[13,16],[17,21],[7,19],[5,25],[5,20],[9,24],[5,22],[11,44],[27,13],[19,16],[3,28],[-3,22],[25,11],[2,23],[-7,21],[5,20],[-1,21],[-16,20],[0,23],[-6,26],[-15,14],[-4,23],[-2,22],[0,23],[5,22],[4,26],[-9,19],[-15,20],[-13,19],[13,20],[-9,24],[-9,25],[-20,9],[-24,13],[-22,11],[-23,9],[-21,12],[0,21],[6,25],[16,18],[16,19],[22,14],[11,22],[5,21],[14,19],[-1,22],[-12,22],[-21,7],[0,24],[15,15],[6,21],[2,21],[18,20],[16,18],[7,24],[1,20],[-5,21],[-16,14],[-19,13],[-22,17],[-28,13],[-18,15],[-4,22],[-10,20],[-19,12],[-17,11],[-18,12],[-19,21],[-7,20],[0,22],[10,22],[-7,24],[-13,16],[-17,13],[-21,10],[-22,9],[-7,22],[-13,20],[-18,17],[-19,10],[-14,20],[-16,22],[-15,17],[-16,13],[-21,15],[-17,15],[-13,21],[-8,23],[-16,15],[-24,6],[-20,4],[-18,18],[-16,15],[-23,9],[-26,9],[-20,7],[-20,7],[-20,-1],[3,25],[16,16],[12,18],[-17,25],[-17,15],[-21,15],[-18,19],[-18,9],[-25,4],[-22,10],[-6,20],[-12,20],[-12,26],[14,17],[28,10],[-4,21],[-21,5],[-19,8],[-32,12],[-18,16],[-24,36],[-37,34],[-13,22],[-13,17],[-9,30],[-7,19],[-17,13],[1,25],[1,25],[5,22],[9,20],[12,18],[1,22],[-3,24],[-3,20],[-9,22],[-21,15],[-2,22],[0,26],[4,25],[24,7],[21,6],[23,2],[21,-1],[27,1],[18,15],[20,15],[11,21],[6,20],[6,22],[-13,23],[-20,27],[-14,17],[-13,15],[-17,12],[-9,23],[-11,21],[-17,18],[-19,20],[-22,13],[-51,17],[-23,5],[-15,25],[-18,21],[-11,20],[-12,23],[0,21],[6,21],[-23,12],[-23,12],[-20,7],[-19,14],[-15,21],[-24,18],[-28,16],[-15,19],[-22,11],[-19,11],[-22,10],[-20,-1],[-25,-6],[-28,-10],[-12,20],[-1,22],[5,25],[0,23],[-20,19],[-19,6],[-12,20],[-16,15],[-23,4],[-24,2],[-51,-7],[-26,17],[-20,8],[-28,7],[-24,-2],[-15,14],[-14,22],[17,24],[11,25],[11,25],[1,20],[-2,22],[-4,20],[-12,17],[-19,11],[-18,16],[-18,13],[-23,11],[-23,12],[-24,6],[-20,5],[-22,-3],[-23,-5],[-29,-1],[-28,1],[-22,3],[-20,-7],[-15,-18],[-14,-18],[-14,-21],[-15,-27],[-25,-9],[-20,-4],[-26,5],[-18,23],[-15,16],[-20,12],[-24,8],[-19,8],[-16,16],[-18,20],[-23,12],[-23,6],[-21,3],[-26,0],[-21,-4],[-23,-3],[-20,-10],[-19,-10],[-41,-2],[-20,16],[-24,5],[-27,12],[-20,9],[-23,7],[-27,-3],[-19,-8],[-20,-7],[-28,-11],[-36,7],[-24,-1],[-22,6],[-32,14],[-26,13],[-23,14],[-22,11],[-21,5],[-22,5],[-19,12],[-17,12],[-13,17],[-19,20],[-26,27],[-19,10],[-19,7],[-22,2],[-21,5],[-24,-2],[-20,-7],[-21,-15],[-9,-18],[-16,-18],[-30,4],[-22,7],[-23,9],[-23,3],[-25,-6],[-22,1],[-20,5],[-23,4],[-26,7],[-25,-7],[-22,-10],[-9,-19],[-12,-19],[-17,-19],[-26,4],[-24,9],[-20,11],[-6,20],[-28,18],[-31,7],[-29,-6],[-28,1],[-26,-1],[-20,-10],[-29,0],[-23,-11],[-15,-22],[-1,-21],[-12,-17],[-12,-21],[3,-21],[-25,-1],[-25,-10],[-21,4],[-20,2],[-23,-8],[-17,-11],[-22,-2],[-25,-5],[-24,3],[-24,-6],[-25,-8],[-25,-8],[-26,10],[-22,10],[-17,22],[-21,10],[-17,12],[-16,14],[-15,16],[-33,0],[-22,-3],[-25,-5],[-22,-6],[-21,-14],[-26,-6],[-26,-3],[-28,2],[-22,13],[-16,18],[-22,2],[-27,11],[-19,11],[-22,1],[-21,6],[-20,12],[-6,20],[-8,22],[1,25],[-17,12],[-26,15],[-15,15],[-18,13],[-20,17],[21,9],[15,13],[18,13],[16,15],[25,22],[27,13],[23,15],[3,23],[14,15],[13,22],[17,19],[21,15],[19,14],[20,18],[12,25],[22,11],[12,16],[-3,25],[-4,27],[11,18],[12,24],[12,20],[36,2],[23,5],[4,24],[-15,15],[-20,13],[-21,7],[-21,17],[-23,16],[-18,16],[-21,11],[8,24],[-3,22],[-19,20],[-19,9],[-21,10],[-22,11],[-24,14],[-19,23],[-22,23],[-27,0],[1,61],[1,36],[1,23],[-87,1],[-99,0],[1,49],[1,25],[1,47],[0,22],[-76,1],[-21,0],[-21,0],[-67,1],[2,72],[-56,0],[-33,0],[0,30],[2,43],[-42,1],[-52,1],[1,28],[3,116],[-75,2],[-112,2],[-115,-3],[-22,-1],[-180,-5],[-56,-2],[-53,0],[-133,-1],[-162,-1],[-24,0],[-62,1],[-131,2],[-182,4],[-39,13],[-129,0],[-19,27],[-1,25],[0,5],[0,3],[0,14],[0,30],[0,40],[-29,0],[-57,-1],[-10,101],[1,41],[-1,74],[0,70],[0,24],[0,48],[-32,0],[-25,0],[-38,0],[0,73],[-187,-1],[0,147],[1,90],[0,53],[-2,140],[-30,0],[-38,0],[-43,0],[-77,2],[0,38],[-2,96],[-27,11],[-36,11],[-23,6],[-9,25],[-8,25],[-20,26],[-28,22],[-13,30],[-9,23],[0,21],[-10,23],[-46,35],[-36,20],[-50,23],[-24,-4],[-21,-9],[-32,-8],[-27,-10],[-36,-24],[-21,-9],[-25,-5],[-24,-6],[-25,4],[-25,19],[-12,20],[-19,13],[-2,2],[-14,21],[-11,17],[-9,13],[-22,20],[-5,5],[-1,1],[-11,28],[12,38],[25,30],[7,22],[-10,20],[-13,22],[-9,18],[-25,48],[-35,8],[-10,25],[21,35],[4,24],[-16,20],[16,23],[26,12],[24,1],[20,14],[22,6],[6,30],[23,21],[30,21],[13,23],[25,15],[4,34],[4,23],[28,20],[20,6],[31,4],[27,-4],[30,-7],[23,8],[27,4],[28,-6],[29,-4],[30,7],[23,10],[15,15],[20,13],[18,23],[27,17],[17,15],[21,9],[9,19],[23,16],[11,21],[45,29],[13,29],[2,24],[26,14],[22,6],[29,22],[19,8],[11,21],[6,20],[16,14],[12,17],[15,15],[21,11],[3,20],[5,45],[1,38],[1,22],[-19,35],[-12,20],[-35,21],[-11,19],[-15,37],[7,24],[21,12],[21,18],[22,17],[-3,27],[1,36],[9,27],[3,24],[-8,19],[-2,34],[3,21],[-4,22],[3,32],[-1,25],[18,15],[21,21],[17,17],[16,13],[11,27],[-2,25],[6,20],[6,26],[20,30],[-4,23],[-9,23],[-7,21],[5,26],[-3,21],[-5,24],[9,17],[-5,20],[-18,14],[-10,18],[-10,17],[28,34],[10,27],[-11,32],[0,26],[18,28],[18,14],[26,16],[9,20],[-24,39],[-15,20],[-16,18],[-20,3],[-21,14],[-23,21],[-15,13],[-15,15],[-14,22],[-15,27],[-12,18],[-17,15],[-17,27],[-10,21],[-7,23],[-11,30],[-5,23],[-18,27],[-13,17],[-30,25],[-20,7],[-20,3],[-20,13],[-20,20],[-20,9],[-38,23],[-18,14],[-9,19],[1,22],[-20,27],[-17,22]],[[63749,56249],[-187,2],[-33,0],[-145,2],[-40,0],[-72,1],[-108,2],[-74,1],[-49,0],[-217,3],[-125,2],[-61,0],[-79,1],[-51,1],[-193,2],[-40,1],[-41,0],[-50,1],[-22,0],[-2,0],[-36,0],[-28,1],[-84,1],[-178,2],[-59,1],[-26,0],[-71,1],[-78,0],[-28,1],[-71,0],[-94,1],[-61,0],[-50,0],[-82,1],[-5,0],[-73,0],[-173,1],[-32,1],[-212,0],[-7,0],[-47,0],[-58,1],[-156,0],[-23,0],[-25,0],[-40,0],[-81,0],[-31,0],[-42,0],[-37,0],[-43,0],[-24,0],[-116,1],[-148,2],[-49,0],[-136,1],[-24,0],[-32,0],[-154,1],[-111,-1],[-1,-38],[-375,10],[-101,1],[-74,1],[-34,0],[-41,0],[-60,0],[-43,0],[-194,1],[-155,1],[-27,0],[-14,0],[-26,1],[-24,0],[-6,0],[-23,0],[-112,1],[-69,1],[-51,0],[-107,1],[-138,1],[-58,1],[-231,2],[-198,1],[-74,1],[-169,-1],[-105,0],[-39,0],[-337,-2],[-59,0],[-103,0],[-23,0],[-242,-1],[-46,0]],[[55976,56266],[-91,-1],[-64,0],[-528,-2],[-160,-1],[-23,0],[-48,0],[-38,-1],[-170,0],[-65,-1],[-48,-13],[-117,0],[-15,0],[-15,0],[-313,0],[-291,0],[-36,0],[-47,0],[-116,0],[-193,0],[-332,0],[-408,0],[-5,0],[-22,0],[-44,0],[-106,0],[-77,0],[-61,0],[-33,0],[-200,1],[-43,0],[-153,-1],[-60,0],[-10,0],[-140,0],[-21,-2],[-20,-1],[-9,0],[-39,2],[-27,0],[-39,0],[-123,-2],[-294,1],[-40,0],[-34,0],[-26,-1],[-45,0],[-24,0],[-103,-1],[-93,0],[-97,0],[-30,-1],[-16,0],[-42,0],[-7,0],[-56,0],[-29,0],[-74,-1],[-243,-1],[0,18],[-75,0],[-112,-1],[-35,1],[-64,2],[-79,2],[-42,0],[-114,-2],[-33,0],[-84,-1],[-53,-1],[-57,-1],[-183,0],[-66,2],[-25,1],[-26,1],[-30,1],[-45,2],[-75,-1],[-45,-1],[-30,0],[-224,-3],[-136,3],[-84,1],[-150,2],[-33,0],[-89,-1],[-251,-4]],[[48133,56260],[-29,0],[0,-13],[-102,0],[-104,0],[-171,0],[-84,0],[-107,0],[-115,0],[-146,1],[-98,0],[-69,0],[-69,0],[-185,0],[-167,0],[-30,0],[-23,0],[-81,0],[-69,0],[-12,0],[-62,0],[-83,0],[-100,0],[-289,0],[-75,0],[-50,-13],[-26,-3],[-110,-14],[-54,-7],[18,44],[10,15],[7,11],[9,17],[2,15],[-2,9],[5,10],[7,14],[9,12],[10,12],[9,15],[13,10],[8,12],[15,24],[14,26],[9,12],[16,22],[23,25],[12,13],[15,22],[11,7],[18,12],[13,15],[14,12],[13,4],[35,20],[18,18],[21,24],[6,22],[-15,25],[-1,21],[-4,21],[-1,26],[-6,22],[-8,23],[16,19],[12,16],[8,23],[13,17],[9,18],[7,22],[-1,20],[3,22],[4,20],[21,12],[35,11],[31,3],[26,-1],[22,1],[23,-2],[21,3],[19,16],[21,6],[20,16],[8,19],[-8,21],[1,23],[-12,20],[-8,18],[-19,13],[-4,22],[-7,19],[-11,19],[-10,21],[4,22],[-16,12],[-17,13],[-21,15],[-19,11],[-20,8],[-29,14],[-27,15],[-22,9],[-13,19],[-22,14],[-32,11],[-21,9],[-11,23],[-10,23],[-19,7],[-23,5],[-24,6],[-24,9],[-17,13],[-12,22],[-3,26],[-4,30],[-5,21],[-13,21],[-15,15],[-21,21],[8,23],[16,20],[15,22],[13,17],[17,11],[6,22],[-13,18],[-34,17],[-25,13],[-13,24],[-19,25],[-18,15],[-17,12],[-41,22],[-17,13],[-19,9],[-21,10],[-21,-4],[-39,7],[-28,3],[-20,11],[-28,-1],[-32,0],[-25,10],[-24,10],[-24,18],[-13,19],[-11,26],[-13,21],[10,21],[12,29],[-20,12],[-21,5],[-26,16],[-21,5],[-17,12],[0,26],[2,27],[-5,23],[-13,24],[-17,14],[10,20],[18,13],[9,19],[3,29],[4,23],[8,19],[-11,34],[-12,24],[-17,22],[-19,16],[-24,7],[-20,8],[-18,14],[-11,23],[-16,13],[-8,26],[-38,18],[-29,11],[-20,1],[-27,6],[-38,15],[-21,16],[-29,9],[-24,9],[-11,22],[-24,15],[-16,18],[-22,23],[-20,9],[-5,3],[-15,6],[-29,20],[-34,17],[-22,5],[-14,3],[-5,2],[-30,11],[-29,8],[-26,7],[-15,14],[-15,18],[-15,16],[-16,22],[-16,16],[-24,-1],[-20,-7],[-18,-18],[-16,-30],[-13,-25],[-10,-24],[-12,-16],[-7,-19],[-2,-21],[-13,-20],[-14,-17],[-15,-21],[0,-25],[7,-22],[9,-26],[0,-22],[-1,-23],[-6,-30],[-12,-18],[-3,-41],[-2,-24],[-5,-21],[-22,-3],[-31,4],[-22,-3],[-21,-15],[-25,-1],[-21,10],[-25,-10],[-22,-14],[-25,-4],[-23,-16],[-15,-20],[-1,-27],[-19,-9],[-19,-8],[-19,-16],[-26,-18],[-19,-11],[-28,-8],[-22,-8],[-22,-2],[-24,-10],[-25,3],[-20,9],[-14,-19],[11,-36],[7,-25],[-15,-22],[-27,-8],[-25,-1],[-25,-9],[-18,-11],[-19,-14],[-19,-18],[-11,-23],[-22,5],[-33,11],[-27,3],[-32,2],[-29,5],[-24,-1],[-22,-10],[-24,-1],[-20,-9],[-23,4],[-24,13],[-18,9],[-20,-20],[-12,-23],[-22,-18],[-18,-15],[-21,-6],[-20,-9],[-25,-4],[-27,-17],[-23,-13],[-11,-21],[1,-11],[1,-16],[-15,-16],[-23,-1],[-26,-1],[-29,-4],[-26,-7],[-29,13],[-27,8],[-23,4],[-30,-3],[-28,-10],[-11,-23],[-17,-16],[-25,-7],[-29,-6],[-18,-13],[-18,-13],[1,-28],[-17,-20],[-13,-19],[-16,-20],[-17,-12],[-8,-23],[-14,-25],[-9,-22],[-18,-19],[-8,-23],[-19,-7],[-21,-13],[-29,-19],[-22,-16],[-19,-14],[0,-26],[-11,-18],[-4,-21],[-7,-19],[9,-23],[-20,-13],[-20,-5],[-20,-5],[-28,-8],[-6,-21],[9,-23],[0,-24],[-5,-25],[-21,-11],[-12,-17],[0,-25],[-23,-19],[-24,-5],[-28,-6],[-20,-14],[-16,-17],[-12,-21],[-23,-20],[-14,-18],[-19,-16],[-19,-11],[-9,-20],[16,-15],[6,-24],[-24,-9],[-21,-19],[-25,-15],[-21,-9],[-19,-12],[-21,-13],[-43,-11],[-21,-12],[-29,-29],[4,-23],[3,-41],[-3,-32],[-7,-26],[-2,-24],[-13,-17],[-5,-21],[-6,-21],[13,-22],[3,-20],[-10,-18],[-17,-21],[-39,-3],[-28,14],[-24,5],[-26,15],[-20,11],[-20,-21],[-9,-23],[-11,-23],[-13,-20],[-14,-31],[-13,-25],[-13,-16],[-18,-19],[-20,-10],[-20,-34],[16,-27],[18,-22],[-11,-23],[-6,-27],[7,-19],[6,-22],[-12,-19],[12,-20],[8,-18],[-22,-11],[-10,-23],[-29,-40],[-34,-44],[-18,-12],[-20,-21],[1,-25],[-37,-7],[-31,1],[-44,4],[-31,2],[-57,14],[-51,35],[-78,20],[-31,6],[-23,13],[-21,2],[-2,-37],[-1,-35],[0,-21],[-9,-26],[-12,-18],[-22,-12],[-20,-14],[-39,-39],[-26,2],[-27,-13],[-25,-1],[-24,0],[-21,0],[-18,-12],[-24,-6],[1,-25],[-5,-25],[-11,-24],[-17,-18],[-31,-13],[-24,-7],[-15,14],[-24,5],[-25,-14],[-29,-20],[-18,-25],[-28,-9],[-22,0],[-20,-22],[-31,-18],[-14,-24],[-20,-35],[-20,-11],[-21,-2],[-21,-1],[-29,3],[-22,-17],[-7,-28],[1,-26],[-21,-8],[-41,-5],[-24,-20],[-23,-4],[-61,23],[-20,5],[-33,13],[-62,4],[-21,2],[-41,-28],[-23,-10],[-3,-27],[-27,-32],[-14,-25],[-46,-13],[-23,-4],[-20,0],[-20,9],[-21,4],[-24,0],[-28,4],[-23,15],[-19,12],[-18,18],[-27,18],[-2,22],[-35,12],[-28,-6],[-23,-10],[-30,-25],[-13,-28],[-17,-18],[-29,-9],[-20,7],[-30,6],[-22,3],[-16,17],[-24,-1],[-43,-10],[-42,8],[-15,17],[-21,34],[-51,-4],[-29,7],[-34,-2],[-25,5],[-44,2],[16,30],[17,28],[15,26],[4,20],[10,24],[-11,42],[22,14],[22,10],[32,22],[20,24],[48,44],[15,15],[7,19],[18,14],[22,26],[-5,27],[-25,9],[-26,0],[-4,22],[15,24],[9,19],[13,20],[11,25],[-6,23],[13,32],[24,8],[14,22],[20,0],[34,18],[26,46],[7,25],[-8,23],[-2,24],[10,26],[19,8],[12,53],[4,20],[11,18],[8,65],[13,19],[36,22],[2,20],[-18,20],[-16,18],[-19,16],[-19,8],[-13,22],[4,37],[-10,23],[-30,11],[-22,17],[-19,6],[-29,4],[1,29],[5,29],[1,31],[12,42],[5,20],[-16,19],[-7,33],[-38,61],[-35,-5],[-36,13],[12,29],[3,23],[8,21],[-21,41],[-1,34],[-15,25],[0,31],[4,32],[25,7],[23,9],[25,-2],[28,7],[8,21],[21,15],[24,25],[20,11],[22,-5],[20,10],[8,19],[17,16],[33,34],[7,25],[9,19],[21,10],[22,4],[25,7],[11,25],[13,15],[31,10],[28,19],[-13,18],[2,27],[-10,20],[1,22],[13,18],[5,26],[6,20],[17,19],[20,6],[7,24],[23,12],[21,16],[12,16],[7,21],[-19,10],[-30,1],[-21,4],[-22,14],[-17,18],[-11,18],[-17,18],[-17,12],[-11,32],[-8,20],[-3,24],[3,24],[-7,27],[-18,10],[-28,16],[-25,9],[-17,22],[-22,9],[-19,9],[-18,13],[-9,17],[-26,23],[-26,7],[-28,-3],[-24,2],[-23,-2],[-22,4],[-20,4],[-24,16],[-22,13],[-4,22],[-10,21],[20,19],[3,23],[-18,10],[-19,4],[-21,13],[13,17],[3,22],[-3,24],[-15,14],[-28,10],[-2,29],[0,20],[-25,0],[-23,-2],[-21,19],[-17,11],[-29,7],[-22,8],[-9,24],[-5,23],[-31,-2],[-23,-7],[-28,-12],[-24,-14],[-30,0],[-30,0],[-27,5],[-20,5],[-9,19],[-9,23],[14,20],[13,16],[-7,22],[12,17],[-6,22],[-20,16],[-17,12],[-17,12],[-9,28],[7,26],[17,26],[21,9],[16,13],[-11,21],[3,22],[-2,28],[11,19],[14,20],[19,7],[21,11],[22,13],[19,15],[21,17],[10,21],[15,20],[24,2],[10,22],[-14,24],[-17,19],[-31,1],[-24,7],[-22,7],[-28,13],[-24,10],[-4,7],[-7,11],[-2,29],[-4,23],[-9,20],[-4,24],[-8,23],[-23,14],[-12,23],[-23,14],[-13,17],[-18,14],[-17,13],[-1,29],[-1,21],[-5,20],[-29,-5],[-20,1],[-22,6],[-36,-2],[-26,-4],[-29,-1],[-30,3],[-33,3],[-26,1],[-22,2],[-22,4],[-16,15],[-29,5],[-25,2],[-26,11],[-23,13],[-18,8],[-18,9],[-20,15],[-18,12],[-17,16],[-12,26],[-4,24],[-15,17],[-21,13],[-20,14],[-24,10],[-17,17],[-16,12],[-10,27],[2,24],[-6,20],[-23,4],[-21,14],[-20,18],[-22,12],[-20,2],[-18,13],[-23,3],[-20,6],[-8,20],[2,27],[8,21],[2,25],[-16,15],[-22,13],[-19,11],[-3,1],[-16,7],[-19,20],[-8,20],[-20,12],[-12,22],[-20,16],[-16,16],[-19,22],[-19,12],[-22,8],[-29,8],[-22,-5],[-27,-7],[-25,-2],[-30,4],[-29,2],[-20,14],[-18,12],[-24,8],[-16,22],[-19,8],[-29,7],[-21,-1],[-43,7]],[[48133,56260],[-22,-278],[239,-14],[79,0],[64,-1],[-4,-292],[206,2],[266,1],[25,-1],[234,-1],[25,0],[-2,-244],[-2,-222],[0,-90],[-1,-74],[2,-46],[-1,-74],[0,-37],[0,-85],[-48,-1],[-55,0],[-165,-2],[-73,-1],[-360,-4],[-111,0],[-136,-1],[-204,-2],[0,-21],[2,-169],[2,-97],[-84,0],[-292,-2],[2,-148],[-376,-4],[-1,-150],[-187,-5],[2,-289],[-36,-1],[-18,-1],[-167,-3],[-146,-4],[-108,-2],[-106,-3],[5,-163],[14,-387],[20,-604],[24,-1],[0,-46],[0,-204],[0,-134],[1,-254],[0,-24],[-1,-41],[-1,-303],[-1,-31],[-5,-262],[2,-473],[48,-1],[0,-113],[3,-171],[-3,-120],[0,-29],[0,-158],[1,-116],[0,-46],[3,-109],[-4,-100],[0,-131],[1,-200],[0,-3],[0,-81],[0,-3],[0,-47],[0,-251],[1,-80],[-499,-3],[-50,0],[-82,-1],[-59,0],[3,-201],[1,-87],[1,-72],[1,-83],[3,-281],[2,-113],[2,-193],[-3,-100],[4,-100],[0,-269],[0,-42],[-73,2],[-89,-5],[-183,-4],[-245,-2],[-75,0],[-194,-1],[-51,4],[-37,-2],[-328,-5],[-308,0],[-523,-9],[-317,-4],[-144,-5],[-37,0],[-595,2],[-210,1],[-66,0],[-24,1],[1,-130],[3,-6],[3,-39],[9,-118],[-38,0],[-36,-1],[-5,1],[-5,0],[-23,-1],[-32,0],[-8,0],[-15,-1],[-30,0],[-33,-1],[-21,0],[-96,-1],[-36,-1],[-79,-2],[-64,-2],[-210,-6],[1,-79],[0,-5],[0,-21],[1,-33],[0,-39],[1,-22],[0,-8],[3,-115],[1,-98],[1,-29],[2,-135],[-161,0],[-268,-1],[-123,0],[-306,0],[-296,0],[-1,-446]],[[40649,46297],[-1031,8],[-95,1],[0,27],[-2,267],[-190,-1],[-9,0],[-15,0],[-23,0],[-152,0],[-496,-2],[-184,8],[-203,-1],[-36,-1],[-366,-2],[-187,0],[-600,-2],[8,12],[21,12],[44,28],[20,5],[26,4],[22,17],[30,27],[-12,27],[-11,31],[1,24],[-21,19],[6,24],[-24,14],[-28,21],[-17,21],[0,25],[16,16],[19,18],[0,37],[-16,16],[-18,22],[-4,22],[4,29],[21,43],[-10,30],[-8,29],[-1,25],[10,23],[-5,21],[4,31],[-30,17],[-28,23],[1,45],[-1,25],[-6,38],[2,26],[0,28],[23,15],[21,17],[-2,23],[14,20],[13,26],[11,31],[14,18],[-33,-2],[-34,15],[-20,28],[-26,14],[-7,23],[-31,17],[-24,11],[-28,23],[-23,23],[-33,16],[-75,49],[-10,17],[-19,18],[1,22],[20,6],[36,0],[34,8],[23,-8],[26,1],[21,-1],[6,20],[14,22],[5,20],[23,18],[27,-3],[27,-1],[25,3],[29,9],[22,0],[9,20],[29,26],[6,24],[0,24],[-13,27],[-11,17],[-2,23],[-10,22],[3,21],[43,18],[20,19],[-6,28],[-7,28],[-10,29],[-18,13],[-28,18],[11,21],[-12,27],[-10,28],[-4,20],[9,19],[-18,21],[-9,27],[15,19],[-29,36],[10,18],[7,23],[-6,23],[7,29],[17,21],[9,37],[7,31],[-6,33],[6,42],[-19,22],[-9,20],[-34,60],[-18,15],[-25,8],[-15,17],[-6,20],[-12,30],[-30,16],[-24,0],[-23,17],[-24,7],[8,23],[14,16],[19,38],[-10,22],[-12,17],[-14,15],[-25,17],[17,28],[28,15],[28,-1],[16,18],[12,24],[24,39],[19,11],[34,16],[31,13],[27,-3],[7,19],[10,30],[-10,27],[-21,21],[-8,27],[15,32],[6,38],[9,26],[32,42],[20,28],[6,20],[19,10],[23,8],[-17,45],[-23,1],[-22,-7],[-28,-4],[-17,13],[-22,3],[-56,7],[-23,-8],[-49,-4],[-22,13],[-26,16],[10,26],[-9,24],[13,18],[19,28],[-23,-3],[-22,11],[-29,11],[-15,17],[-9,19],[-7,25],[-5,48],[3,27],[4,26],[6,20],[-10,22],[-2,28],[-4,26],[-5,13],[-7,15],[2,28],[-2,20],[-14,26],[-28,4],[-24,2],[-20,20],[-21,9],[-23,21],[-27,-4],[-24,-4],[-24,14],[-10,22],[-22,22],[-10,18],[20,2],[28,12],[38,22],[21,28],[20,12],[24,4],[28,-2],[18,10],[16,11],[26,12],[34,20],[24,12],[18,10],[26,2],[22,-5],[28,-1],[22,4],[32,14],[24,-4],[18,10],[24,20],[5,26],[8,28],[-15,12],[-2,26],[9,20],[0,20],[-7,32],[-24,4],[-16,16],[-46,22],[6,22],[4,22],[18,20],[-12,30],[-22,8],[-22,12],[-32,0],[-32,14],[-36,18],[-18,10],[-20,10],[-28,18],[-24,20],[-24,20],[-8,20],[-4,10],[-16,8],[-47,12],[-12,7],[-2,2],[-6,6],[-6,9],[-16,14],[-11,14],[-6,11],[-3,7],[24,14],[10,18],[6,8],[-5,12],[-11,2],[-4,0],[-2,-1],[-14,-7],[1,-3],[-1,-3],[0,-4],[-11,-10],[-29,-6],[-22,-6],[-6,-4],[-4,-14],[-4,-6],[14,-10],[2,-4],[-58,1],[-271,3],[3,-16],[-299,5],[-199,2],[-195,2],[-384,3],[-119,0],[-349,-1],[-223,-1],[-259,-1],[-260,0],[-65,-1],[-29,0],[-33,0],[-100,0],[-61,-1],[-66,0],[-47,1],[-47,0],[-58,0],[-44,1],[-98,0],[-26,0],[-964,-1],[-127,0],[-459,4],[-4,-32],[-365,2],[-407,-3],[-521,1],[-197,0],[-293,-1],[-455,1],[-356,0],[-672,1],[-73,0],[-398,1],[-369,2],[-379,-4],[-121,0],[-362,2],[-38,0],[-2,0],[-236,2],[-110,0],[-270,-1],[-42,-1],[-94,0],[-376,1],[-3,0],[-127,1],[-83,0],[-140,0],[-314,0],[-314,0],[-27,1],[-360,-4],[-187,-1],[-26,0],[-537,1],[-109,0],[-434,-1],[-43,0],[-68,0],[-28,0],[-35,0],[-238,-1],[-510,-1],[-746,2],[-283,8],[-452,-8],[-355,2],[-167,1],[-68,0],[-193,1],[-17,0],[-677,2],[-194,1],[-371,-3],[-459,2],[-184,0],[-198,-1],[-33,0],[-202,-1],[-33,0],[-719,0],[-175,0],[-492,-4],[-245,0],[-195,-1],[-22,0],[-55,0],[-249,-2],[-149,-1],[-2,0],[-233,-1],[-24,0],[-218,-1],[-412,2],[-690,1],[-2494,-2],[-918,0],[-466,0],[-781,-1],[-329,9],[-190,0],[-87,0],[-1054,1],[-587,0],[-479,1],[-21,-1],[-76,0],[-570,0],[-722,0],[-4,-171],[-22,0],[-86,0],[-131,0],[-29,0],[-429,-1],[-359,-1],[-98,0],[-44,-1],[-412,-4],[-102,-1],[-273,-2],[-644,-5],[-15,-1],[-245,-2],[-276,-2],[-511,-4],[-16,0],[-740,-2],[-196,-1]],[[105,50859],[0,25],[1,60],[0,90],[0,59],[0,23],[0,43],[0,44],[0,73],[0,53],[0,61],[1,98],[0,58],[0,142],[0,132],[1,271],[0,145],[1,108],[0,158],[0,36],[0,111],[0,123],[0,89],[1,51],[0,67],[0,45],[0,57],[0,48],[0,43],[0,96],[0,21],[0,52],[1,40],[0,82],[0,83],[0,84],[0,37],[0,32],[0,53],[0,29],[0,39],[1,81],[0,40],[0,70],[0,199],[1,113],[0,174],[0,141],[1,112],[0,37],[0,37],[0,176],[0,80],[0,105],[0,4],[-3,137],[-3,132],[-2,131],[-1,119],[0,34],[-1,61],[0,81],[3,200],[3,83],[2,61],[0,102],[3,90],[1,203],[0,317],[0,125],[0,274],[0,44],[0,72],[0,33],[1,133],[0,47],[0,157],[0,85],[0,209]],[[80385,49385],[-25,0],[-814,5],[-688,5],[-500,3],[-252,0],[-141,1],[-277,0],[-428,0],[-497,1],[-464,0],[-225,0],[-8,0],[-17,0],[-185,1],[-868,-1],[-181,0],[-53,0],[-70,0],[-97,-1],[-615,0],[-29,0],[-581,10],[-294,-4],[-121,-1],[-263,-2],[-216,-2],[-550,-1],[-424,3],[-13,0],[-504,1],[-9,0],[-15,0],[-85,1],[-45,-1],[-107,-1],[-338,-2],[-69,-1],[-113,0],[-154,-2],[-122,0],[-212,1],[-4,0],[-216,1],[-14,0],[-50,0],[-27,0],[-229,2],[-75,0],[-284,0],[-201,0],[-15,0],[-25,0],[-97,0],[-97,1],[-30,-13],[-20,2],[-316,0],[-1,0],[-423,2],[-156,0],[-590,0],[-29,0],[-185,0],[-156,-1],[-38,0],[-207,0],[-26,0],[-87,0],[-230,0],[-154,0],[-411,1],[-172,-1],[-309,-1],[-207,0],[-423,1],[-31,0],[-149,1],[-246,1],[-14,0],[-323,2],[-55,1],[-688,1],[-583,1],[-1,0],[-483,1],[-24,0],[-185,1],[-75,0],[-411,0],[-17,1],[-26,-1],[-340,-1],[-644,-2],[-166,0],[-37,0],[-127,-1],[-218,0],[0,-45],[-74,11],[6,24],[-2,25],[-10,28],[-6,20],[7,29],[18,26],[26,21],[31,15],[23,13],[18,14],[12,24],[-8,27],[-14,18],[-23,27],[3,26],[26,23],[26,17],[17,28],[-9,34],[-12,29],[-22,24],[-32,18],[-22,11],[-19,14],[-15,14],[-11,17],[-9,23],[-8,23],[-10,29],[-9,41],[-5,32],[3,27],[-19,22],[-26,33],[-10,25],[15,30],[7,26],[-20,13],[-25,28],[-4,40],[1,21],[2,24],[4,22],[8,34],[-5,30],[-20,13],[-19,11],[-14,35],[-21,29],[-18,25],[-29,18],[-24,8],[-29,25],[-15,17],[-13,20],[-14,39],[-10,18],[-28,17],[-32,12],[-33,-7],[-31,-3],[-30,4],[-37,21],[-12,17],[-7,19],[1,30],[-3,22],[-8,21],[3,31],[19,17],[15,26],[-29,35],[-17,13],[-23,11],[-24,12],[-25,4],[-23,11],[-20,8],[-26,19],[13,16],[4,26],[18,26],[-21,28],[-27,19],[-8,24],[-5,33],[-26,27],[-2,25],[13,41],[23,14],[24,11],[21,22],[19,23],[-22,21],[-37,6],[-25,15],[-28,15],[-21,16],[-6,24],[-4,24],[10,28],[7,27],[-19,5],[-25,14],[-15,29],[0,28],[-8,24],[-3,32],[-16,24],[-5,26],[-1,30],[-9,18],[-3,28],[-14,21],[-23,17],[-9,27],[-9,29],[5,30],[5,23],[-16,24],[-18,32],[-6,26],[-7,34],[-9,22],[-18,24],[-1,21],[20,17],[7,20],[-18,29],[-18,23],[-6,20],[-3,23],[-22,4],[-22,5],[-27,13],[-21,5],[-20,-4],[-3,-24],[-2,-29],[-16,-29],[-13,-30],[-40,-25],[-26,-1],[-24,-2],[-48,-6],[-26,-10],[-17,-16],[2,-23],[8,-28],[10,-25],[6,-24],[-18,-23],[-34,6],[-29,-4],[-18,-15],[-13,-27],[-26,-24],[-32,-15],[-22,-6],[-43,-2],[-36,8],[-26,15],[-32,20],[-15,19],[-10,21],[-13,28],[-22,16],[-20,5],[-32,8],[-23,15],[-9,20],[-4,23],[-6,29],[-22,26],[-27,17],[-5,20],[-14,34],[-12,37],[-32,21],[-21,5],[-31,8],[-20,9],[-34,9],[-31,18],[-20,21],[-24,19],[-9,28],[3,33],[5,23],[-2,25],[-14,31],[-19,16],[-23,5],[-18,16],[-22,20],[-8,31],[-5,22],[11,22],[16,18],[-8,20],[-12,17],[-4,27],[-15,13],[-5,22],[-3,32],[-2,20],[-19,8],[-22,9],[-29,7],[-16,14],[-22,15],[-25,2],[-21,9],[-23,11],[-6,20],[7,50],[6,26],[-9,26],[4,26],[3,25],[7,21],[9,27],[-22,24],[-25,6],[-21,7],[-25,16],[-34,23],[-27,16],[-17,15],[-9,22],[-11,30],[-1,31],[-5,22],[-42,39],[-28,12],[-27,8],[-27,-2],[-17,18],[-1,29],[-18,15],[-13,21],[-23,10],[-29,23],[-10,24],[5,23],[6,22],[3,8],[16,17],[16,15],[-23,14],[-12,21],[4,22],[0,32],[-10,20],[4,23],[3,31],[12,16],[-1,24],[-20,28],[-23,10],[-19,5],[-22,0],[-48,-7],[-34,12],[-6,24],[4,27],[-6,37],[0,28],[-22,3],[-27,-2],[-50,12],[-18,15],[-18,39],[-20,8],[-38,6],[-26,4],[-25,-4],[-27,1],[-42,8],[-34,12]],[[55978,54093],[0,48],[3,172],[0,161],[0,45],[-1,136],[0,52],[-2,293],[0,153],[-1,238],[0,216],[0,17],[0,12],[-1,269],[0,122],[0,239]],[[55978,54093],[0,-40],[-3,-219],[-1,-77],[0,-46],[0,-3],[0,-37],[-1,-29],[1,-37],[0,-37],[1,-206],[-1,-108],[0,-39],[-2,-290],[0,-43],[-2,-380],[10,-205],[4,-84],[-2,-173],[-1,-42],[-3,-85],[4,-258],[0,-8],[0,-72],[1,-35],[0,-9],[0,-39],[1,-31],[0,-34],[0,-122],[0,-40],[0,-80],[1,-88],[0,-61],[-1,-161],[0,-13],[-1,-165],[-1,-7],[-2,-273],[-4,-298],[0,-30],[-1,-45],[1,-40],[0,-20],[3,-462],[1,-50],[0,-90],[0,-34],[-62,1],[-36,1],[-137,0],[-385,1],[-86,0],[-27,0],[-1,0],[-342,0],[0,-27],[0,-119],[2,-389],[1,-264],[3,-705],[0,-50],[2,-291],[6,-166],[-3,-194],[-5,-443],[-6,-516],[3,-88],[0,-24],[4,-142],[1,-35],[22,1],[1,-348],[0,-23],[-2,-217],[-3,-303],[5,-432],[0,-83],[0,-196],[0,-60],[0,-155],[1,-84],[-3,-881],[0,-5],[-1,-124],[-1,-345],[0,-133],[2,-66],[0,-77],[10,-25],[0,-124],[-1,-258],[0,-121],[0,-32],[0,-568],[-1,-582]],[[54941,40657],[-425,0],[-221,1],[-611,0],[-267,-3],[-488,3],[-269,-4],[-718,7],[-265,3],[-25,1],[-84,1],[-645,-10],[-96,-3],[-127,0],[-609,4],[-69,1],[-25,0],[-3,0],[-85,0],[-66,0],[-605,1],[-820,2],[-298,-2],[-150,5],[-341,6],[-116,-4],[-939,3],[-417,0],[-130,0],[-3,0],[-89,-2],[-421,4],[-615,1],[-261,1],[-248,1],[-15,0],[-26,-1],[-198,-1],[-202,-1],[-65,0],[-1,6],[-5,74],[1,7],[9,64],[0,2],[1,0],[56,27],[23,5],[52,6],[7,1],[-6,3],[-45,30],[-1,0],[-1,1],[-9,7],[-15,17],[-271,0],[-46,1],[-27,2],[-165,-2],[-33,0],[-119,0],[-168,1],[-24,0],[-494,-17],[-1105,17],[-116,0],[-107,0],[-27,0],[-203,0],[-99,-1],[-71,-3],[-197,-2]],[[40678,40917],[0,93],[-1,186],[0,259],[-2,345],[0,96],[-3,614],[0,152],[0,35],[-5,112],[-1,178],[-5,114],[-1,67],[-1,111],[-3,112],[-5,179],[-1,29],[-4,82],[-5,176],[-2,87],[-1,26],[2,108],[0,69],[-2,112],[1,94],[1,82],[-1,109],[2,184],[0,71],[0,40],[6,169],[0,120],[0,24],[1,711],[1,434]],[[80385,49239],[3,-6],[4,-7],[5,-7],[9,-4],[27,-13],[19,-19],[5,-3],[1,-1],[16,-11],[27,-13],[5,-2],[0,-80],[0,-2],[-29,-6],[-13,-14],[-9,-17],[-58,-119],[-8,-74],[2,-19],[5,-36],[1,-5],[2,-2],[36,-24],[9,-9],[4,-22],[6,-164],[0,-3],[0,-2],[-3,-3],[-41,-42],[-3,-3],[-8,-8],[-4,-14],[3,-17],[1,0],[9,-8],[3,-3],[16,-8],[9,-4],[3,0],[43,0],[24,-8],[34,-11],[34,-11],[42,-28],[30,-32],[2,-12],[9,-46],[6,-34],[-3,-13],[-15,-62],[-15,-16],[-18,-18],[-16,-21],[-13,-17],[-89,-139],[-21,-61],[1,-11],[6,-12],[7,-15],[-1,-6],[-3,-17],[0,-6],[-3,-3],[-7,-7],[-1,-1],[-4,-1],[-13,-1],[-11,-11],[2,-11],[4,-19],[1,-2],[1,-2],[65,-69],[2,-10],[3,-14],[4,-18],[-11,-13],[-3,-4],[0,-14],[0,-25],[-6,-14],[-12,-22],[-1,-1],[-8,-8],[-8,-8],[-44,-9],[-10,-2],[-58,-7],[-11,-11],[7,-35],[4,-12],[3,-7],[2,-28],[0,-2],[14,-47],[5,-15],[1,-4],[8,-6],[15,-12],[21,-25],[14,-36],[8,-25],[-11,-26],[-30,-31],[-26,-59],[1,-2],[8,-26],[1,-1],[4,-4],[31,-27],[4,-38],[-8,-14],[-1,0],[-111,-32],[-23,2],[-34,-5],[-24,-4],[-3,0],[-21,-10],[-13,-13],[-15,-15],[-10,-20],[-2,-5],[-6,-51],[15,-64],[-21,-22],[-23,-23],[2,-19],[0,-7],[1,-4],[-22,-23],[-35,-6],[-1,-1],[-37,-24],[-22,-20],[-12,-11],[-55,-57],[-23,-42],[-4,-6],[0,-5],[-2,-21],[-4,-4],[-25,-30],[-10,-3],[-33,-2],[-3,0],[-1,1],[-35,16],[-4,1],[-32,47],[-4,20],[-2,12],[-4,3],[-10,5],[-8,5],[-6,-1],[-3,0],[-14,-2],[-21,-10],[-10,-9],[-7,-8],[-3,-2],[-11,-25],[1,-9],[4,-33],[0,-2],[33,-67],[20,-27],[15,-20],[3,-15],[1,-3],[1,-4],[-10,-34],[-5,-5],[-1,-1],[-5,-5],[-14,-3],[-7,-2],[-8,-1],[-38,-25],[-19,-19],[-3,-6],[-6,-12],[-10,-20],[-1,-28],[1,-9],[2,-9],[0,-2],[2,-1],[41,-29],[29,-14],[21,1],[7,0],[7,5],[6,3],[12,1],[11,0],[10,1],[17,-6],[23,-15],[13,-8],[17,-11],[26,-30],[3,-16],[1,-4],[6,-30],[-1,-10],[0,-6],[-1,-9],[-6,-7],[-3,-3],[-5,-4],[-38,-22],[-9,-3],[-13,-5],[-100,-35],[-61,-21],[-100,-34],[-12,-4],[-15,-7],[-2,-1],[-36,-23],[-31,-27],[-4,-6],[-38,-67],[-9,-23],[7,-21],[4,-10],[5,-18],[-5,-23],[-3,-3],[-9,-10],[-4,-4],[-22,-4],[-20,-3],[-1,-2],[-16,-19],[-7,-7],[-9,-57],[0,-1],[1,-3],[5,-28],[11,-7],[13,-8],[1,-5],[14,-41],[6,-10],[9,-13],[3,-6],[10,-5],[11,-6],[35,-20],[61,-17],[37,-10],[71,-27],[7,-5],[3,-2],[17,-10],[7,-14],[10,-22],[1,-8],[0,-4],[-1,-5],[0,-4],[3,-18],[2,-15],[6,-38],[0,-13],[-10,-56],[-2,-13],[-2,-10],[-2,-4],[-5,-13],[-11,-21],[-7,-7],[-6,-7],[-16,-32],[-1,-11],[0,-13],[-1,-4],[11,-19],[21,-23],[42,-31],[5,-9],[5,-8],[11,-21],[6,-33],[2,-11],[-7,-16],[8,-55],[30,-38],[11,-13],[20,-25],[5,-8],[16,-25],[3,-5],[6,-32],[-3,-33],[-4,-4],[-28,-27],[-21,-20],[-67,-48],[-20,-9],[-12,-5],[-11,-4],[-2,0],[-18,-2],[-5,-1],[-5,1],[-22,3],[-11,2],[-3,2],[-30,14],[-2,3],[-10,9],[-2,7],[-18,46],[-11,7],[-3,3],[-5,3],[-25,7],[-38,8],[-22,-2],[-61,-30],[-13,-14],[-3,-3],[-8,-14],[-2,-2],[0,-6],[0,-9],[6,-32],[4,-7],[9,-16],[6,-10],[-4,-26],[-7,-10],[-11,-17],[5,-28],[35,-74],[31,-45],[5,-9],[29,-60],[8,-42],[-5,-17],[-3,-26],[-5,-12],[-6,-15],[-42,-73],[-9,-8],[-33,-34],[-17,-37],[-1,-1],[-9,-24],[-13,-9],[-7,-6],[-6,0],[-82,-6],[-39,-3],[-11,3],[-42,11],[-42,0],[-149,-70],[-3,-3],[-61,-60],[-7,-8],[-19,-22],[-30,-49],[-2,-5],[-18,-43],[-7,-18],[6,-14],[5,-10],[41,-41],[36,-49],[39,-64],[3,-11],[10,-36],[0,-2],[-2,-7],[-13,-13],[-17,-16],[-12,-16],[-4,-6],[-5,-5],[-27,-22],[-33,-28],[-15,-3],[-85,-11],[-31,-9],[-5,-3],[-12,-6],[-13,-7],[-22,-23],[0,-1],[-11,-18],[-1,-2],[0,-1],[0,-1],[0,-7],[-14,-15],[-15,-15],[-16,-32],[-2,-8],[6,-32],[8,-4],[18,-11],[16,-10],[14,-9],[13,-16],[4,-17],[-7,-7],[-10,-11],[3,-12],[10,-14],[3,-5],[3,-2],[25,-16],[41,-26],[7,-5],[11,-3],[13,-4],[7,-2],[14,-1],[47,-5],[13,-7],[4,-2],[16,-10],[20,-35],[10,-21],[3,-5],[4,-8],[16,-18],[8,-39],[-1,-1],[-21,-21],[-17,-16],[-26,-15],[-5,-1],[-76,-11],[-14,-5],[-21,-9],[-38,-15],[-42,-37],[-3,-18],[-23,-53],[-23,-66],[5,-24],[12,-48],[2,-12],[21,-53],[5,-2],[7,-3],[2,-1],[44,-23],[8,-9],[8,-24],[-13,-14],[-9,-3],[-13,-5],[-16,-16],[-4,-5],[-2,-1],[-12,-14],[-39,-46],[-13,-16],[-3,-6],[-34,-76],[-16,-17],[-3,-18],[-2,-11],[2,-8],[11,-76],[-2,-3],[-11,-16],[-5,-6],[-21,-14],[-22,-16],[-19,-14],[-13,-4],[-56,-21],[-17,-6],[-8,-3],[-136,-31],[-54,-10],[-104,-21],[-16,-5],[-6,-2],[-16,-17],[-8,-29],[9,-15],[6,-11],[40,-63],[1,-1],[-13,-14],[-7,-3],[-8,-3],[-3,-1],[-54,-41],[-15,-17],[-4,-6],[-1,-2],[-3,-11],[3,-17],[1,-4],[1,-6],[5,-4],[12,-9],[3,-2],[19,-4],[14,0],[33,-16],[28,-40],[12,-198],[-9,-69],[-40,-53],[-16,-41],[-1,-4],[-22,-38],[-13,-21],[-6,-20],[-8,-22],[1,-8],[-24,-42],[-13,-24],[-24,-42],[-23,-33],[-28,-61],[-7,-31],[6,-32],[10,-14],[9,-12],[22,-12],[-117,-16],[-8,-1],[66,-26],[67,-13],[13,-3],[19,-10],[70,-38],[36,-20],[19,-11],[4,-7],[1,-2],[0,-4],[-2,-35],[-60,-67],[-41,-25],[-39,-15],[-1,0],[-3,0],[-47,-5],[-4,-1],[-4,1],[-17,4],[-29,-3],[-15,-9],[-14,-15],[-1,-7],[8,-42],[13,-19],[1,-5],[15,-12],[21,-17],[44,-25],[21,-6],[14,-5],[55,-11],[68,-13],[23,-12],[11,-8],[4,-3],[6,-11],[2,-3],[2,-3],[0,-2],[7,-36],[1,-5],[-17,-19],[-29,-17],[-18,-10],[-20,-12],[-20,-6],[-20,-2],[-40,8],[-28,12],[-34,8],[-19,-11],[5,-54],[41,0],[-1,-33],[33,-3],[27,-3],[33,-6],[38,-10],[10,-2],[27,-8],[26,-12],[90,-1],[-1,105],[0,23],[422,4],[302,6],[-1,-233],[0,-26],[0,-66],[0,-4],[16,0],[581,-3],[2,0],[164,-1],[0,156],[371,-2],[-2,-264],[0,-1],[-1,-36],[358,-5],[-1,-50],[-4,-222],[362,-4],[-1,-38],[0,-1],[-5,-234],[-458,-1],[-14,0],[-255,-1],[3,148],[-204,0],[2,137],[-347,5],[9,144],[0,6],[6,91],[0,7],[2,35],[-109,2],[-30,1],[-21,0],[-19,1],[-43,1],[-12,0],[-15,0],[-182,4],[-18,0],[-22,1],[-267,5],[12,58],[-103,1],[-186,2],[4,-34],[-57,-2],[-48,0],[-25,4],[-60,0],[-98,0],[-22,0],[-124,0],[-48,1],[-56,0],[-35,0],[-39,-1],[0,-1],[2,-19],[-12,-9],[-9,-21],[0,-4],[8,-71],[10,-35],[1,-2],[4,-4],[39,-39],[22,-22],[12,-7],[39,-20],[70,-55],[3,-5],[31,-67],[8,-42],[1,-3],[-25,-25],[-54,-24],[-60,-14],[-7,-1],[-48,-6],[-24,-8],[-8,-6],[-12,-11],[-22,-20],[-21,-31],[-4,-6],[-1,-2],[1,-11],[3,-26],[11,-10],[5,-6],[34,-19],[1,0],[24,-8],[115,-36],[18,-10],[14,-8],[5,-3],[63,-89],[10,-16],[31,-55],[22,-45],[10,-70],[-8,-12],[-7,-12],[5,-42],[0,-3],[-12,-19],[-12,-10],[-8,-8],[-61,-24],[-13,-2],[-26,-3],[-54,-6],[-89,2],[-1,1],[-91,29],[-12,2],[-118,15],[-59,7],[-86,5],[-16,-2],[-110,-12],[-12,-2],[-6,-2],[-10,-5],[-11,-6],[-16,-16],[-9,-10],[-25,-57],[-16,-36],[1,-4],[7,-53],[2,-12],[4,-5],[9,-9],[11,-24],[10,-49],[-13,-12],[-10,-8],[-7,-8],[-12,-12],[-1,-3],[-10,-15],[-4,-7],[2,-9],[3,-15],[7,-5],[12,-6],[13,-1],[56,-19],[19,-12],[65,-43],[68,-46],[36,-34],[100,-144],[2,-10],[4,-18],[5,-27],[-2,-23],[-8,-20],[-10,-25],[-17,-71],[-14,-56],[13,-62],[2,-62],[-10,-37],[-18,-70],[-2,-41],[4,-24],[2,-4],[7,-13],[2,-2],[17,-11],[16,-10],[8,-5],[31,-9],[14,2],[4,1],[100,16],[22,11],[6,3],[23,12],[13,14],[25,28],[39,35],[36,19],[16,2],[37,6],[17,3],[31,-9],[19,-11],[17,-21],[29,-83],[8,-39],[-21,-63],[-11,-29],[-25,-38],[-4,-5],[-23,-32],[-9,-13],[-1,-1],[-51,-55],[-30,-53],[-6,-10],[-10,-18],[-10,-36],[-2,-6],[-1,-11],[-2,-24],[5,-43],[12,-11],[84,-48],[27,-15],[15,-8],[22,-5],[34,-7],[12,-3],[37,0],[55,0],[72,-12],[22,-12],[136,-78],[2,-11],[3,-11],[-7,-19],[-16,-17],[-14,-7],[-28,-15],[-11,-13],[-28,-30],[-1,-2],[-9,-7],[-1,-9],[3,-18],[9,-11],[6,-3],[12,-7],[1,-1],[20,-5],[22,-1],[72,-6],[93,-22],[41,-28],[25,-25],[58,-79],[9,-27],[2,-5],[18,-51],[12,-76],[-2,-19],[-1,-9],[-2,-16],[-14,-32],[-21,-22],[-218,-131],[-48,-21],[-8,-9],[3,-19],[4,-7],[35,-57],[23,-31],[3,-5],[1,-1],[30,-28],[30,-26],[89,-71],[8,-6],[85,-47],[18,-10],[40,-13],[33,-11],[99,-37],[54,-24],[13,-7],[31,-18],[4,-2],[14,-19],[1,-7],[15,-59],[4,-9],[7,-15],[4,-7],[6,-12],[13,-14],[5,-6],[15,-16],[61,-77],[11,-19],[5,-9],[2,-3],[9,-8],[-1,-23],[-4,-17],[-1,-8],[0,-1],[-1,-1],[-25,-25],[-2,-3],[-12,-6],[-1,0],[-8,-4],[-50,-10],[-2,-1],[-88,-6],[-31,-3],[-12,-1],[-69,-15],[-29,-12],[-22,-9],[-24,-13],[-6,-6],[-5,-5],[-4,-12],[-4,-15],[-23,-50],[-54,-77],[-47,-51],[-83,-90],[-5,-11],[-22,-43],[-1,-2],[0,-2],[4,-36],[16,-36],[18,-38],[8,-10],[87,-110],[2,-8],[7,-24],[1,-3],[-1,-4],[-3,-14],[-1,-5],[-9,-11],[-17,-21],[-3,-4],[-6,-3],[-11,-6],[-40,-20],[-7,-1],[-1,0],[-37,-4],[-14,1],[-36,5],[-53,2],[-11,-2],[-28,-5],[-9,-1],[-17,-10],[-26,-31],[-6,-8],[-1,-10],[1,-6],[3,-19],[2,-5],[5,-14],[7,-3],[37,-20],[4,-2],[29,-1],[17,-1],[3,0],[48,6],[22,9],[46,20],[44,19],[21,12],[5,5],[39,38],[58,37],[18,7],[19,6],[40,14],[43,5],[3,0],[44,5],[86,-5],[25,-7],[29,-17],[2,-2],[17,-16],[2,-3],[13,-18],[11,-54],[-17,-68],[-23,-23],[-25,-25],[-37,-37],[-55,-40],[-10,-4],[-38,-16],[-18,-11],[-17,-11],[-35,-39],[-11,-25],[-3,-7],[1,-4],[3,-28],[0,-6],[5,-11],[3,-7],[5,-10],[9,-15],[17,-16],[15,-15],[9,-7],[45,-35],[68,-48],[15,-8],[33,-19],[12,-13],[1,-1],[21,-22],[2,-15],[3,-16],[2,-9],[-1,-25],[-2,-4],[-1,-3],[-4,-9],[-10,-17],[-7,-7],[-31,-33],[-14,-13],[-18,-14],[-13,-10],[-26,-27],[-34,-36],[6,-33],[1,-4],[8,-9],[6,-4],[17,-10],[11,-7],[27,-4],[1,0],[2,0],[48,8],[75,36],[10,8],[5,4],[27,21],[36,34],[57,36],[16,10],[34,14],[48,6],[13,-4],[45,-25],[21,-23],[2,-10],[8,-30],[2,-6],[1,-25],[-16,-35],[-55,-54],[-33,-32],[-8,-21],[-1,-3],[1,-2],[3,-19],[1,-1],[4,-4],[25,-28],[33,-19],[16,-2],[1,-1],[4,1],[34,6],[13,2],[44,25],[24,21],[7,5],[49,36],[9,5],[19,10],[1,1],[32,4],[26,-15],[21,-25],[3,-20],[2,-23],[-44,-78],[-17,-30],[-2,-6],[-14,-36],[-1,-2],[0,-2],[9,-26],[6,-16],[15,-23],[1,0],[2,-1],[11,-6],[6,-2],[22,-8],[10,-3],[37,-3],[33,3],[2,1],[33,16],[9,11],[14,15],[9,11],[18,45],[8,118],[1,19],[4,4],[13,13],[2,3],[5,2],[16,8],[26,3],[19,2],[41,-10],[59,-34],[17,-18],[9,-14],[2,-14],[4,-25],[2,-21],[-9,-34],[-50,-66],[-1,-2],[-29,-29],[-27,-22],[-30,-23],[-38,-46],[-19,-20],[-7,-7],[-23,-37],[-7,-12],[-16,-52],[-6,-18],[0,-3],[9,-44],[0,-3],[18,-43],[2,-3],[18,-30],[70,-91],[25,-45],[3,-16],[4,-23],[2,-8],[-4,-15],[-13,-18],[-10,-13],[-1,0],[-23,-15],[-4,-1],[-32,-4],[-34,-5],[-16,2],[-65,10],[-3,1],[-13,4],[-156,57],[-70,7],[-32,-4],[-15,-6],[-21,-18],[-5,-5],[-8,-7],[-12,-21],[0,-1],[-3,-19],[-1,-11],[1,-4],[8,-40],[26,-41],[1,-2],[29,-29],[1,-1],[15,-12],[47,-28],[15,-8],[5,-2],[49,-15],[27,-9],[17,-1],[36,-3],[16,-1],[30,3],[12,2],[6,1],[69,15],[3,1],[150,55],[7,0],[37,3],[50,5],[51,-6],[16,-2],[111,0],[42,5],[33,12],[27,13],[13,15],[16,19],[9,10],[23,51],[1,8],[13,66],[6,30],[4,22],[9,22],[14,14],[1,1],[2,2],[18,7],[4,0],[19,2],[15,2],[120,-24],[28,-12],[58,-31],[36,-3],[-1,-3],[-8,-11],[22,-28],[23,-20],[13,-29],[3,-6],[7,-15],[3,-16],[14,-58],[9,-16],[1,-3],[1,-6],[6,-41],[4,-25],[7,-22],[-8,-37],[-6,-25],[14,-119],[1,-8],[-2,-9],[-10,-38],[-3,-10],[-18,-30],[0,-1],[-29,-30],[-1,0],[-29,-13],[-21,-10],[-10,-4],[-67,-23],[-39,-6],[-31,-4],[-20,-3],[-38,4],[-8,1],[-43,12],[-6,2],[-4,3],[-40,23],[-36,33],[-28,39],[-5,11],[0,5],[-46,83],[-3,17],[-32,47],[-9,8],[-11,10],[-12,11],[-44,25],[-10,3],[-15,5],[-20,7],[-24,2],[-13,-1],[-9,-1],[-5,-1],[-8,-1],[-5,-2],[-10,-4],[-38,-28],[-275,-198],[-5,-4],[-27,-29],[-7,-6],[-100,-123],[-22,-51],[-5,-13],[0,-3],[6,-29],[13,-16],[35,-18],[1,0],[1,0],[40,-2],[38,-2],[23,1],[62,4],[50,-5],[7,-5],[18,-12],[23,-15],[28,-34],[2,-3],[3,-2],[51,-37],[19,-16],[18,-4],[16,-4],[17,3],[16,2],[12,2],[18,10],[16,17],[14,14],[27,19],[14,10],[2,1],[17,10],[54,29],[3,0],[16,2],[36,-19],[3,-2],[7,-8],[11,-12],[24,-58],[28,-131],[5,-22],[2,-3],[19,-29],[2,-3],[3,-2],[38,-21],[35,-8],[9,-2],[6,0],[24,3],[5,1],[40,17],[21,12],[41,23],[6,2],[9,2],[97,58],[12,7],[11,7],[41,12],[54,6],[38,-8],[40,-21],[37,-38],[7,-15],[12,-22],[1,-4],[0,-7],[0,-12],[0,-11],[-2,-6],[-8,-21],[-1,-2],[-2,-4],[-32,-45],[-5,-6],[-3,-3],[-31,-30],[-4,-4],[-2,-1],[-7,-5],[-97,-67],[-59,-47],[-26,-13],[-1,-2],[-37,-50],[-1,-1],[0,-1],[-18,-39],[-11,-29],[-3,-53],[4,-21],[1,-1],[6,-12],[4,-7],[18,-26],[64,-66],[10,-11],[29,-26],[18,-18],[7,-8],[33,-29],[51,-37],[-12,-14],[0,-18],[-4,-6],[-14,-18],[-68,-39],[-21,-7],[-29,-3],[-6,-1],[-119,37],[-1,0],[-48,19],[-41,11],[-19,-2],[-10,-12],[-6,-6],[-3,-5],[-4,-15],[1,-26],[0,-42],[3,-18],[-12,-41],[-22,-38],[-5,-6],[-14,-17],[-5,-5],[-29,-8],[-2,-1],[-43,-5],[-5,0],[-6,0],[-57,7],[-1,0],[-14,6],[-51,24],[-6,3],[-119,68],[-10,5],[-69,2],[-3,0],[-7,-1],[-22,-2],[-22,-7],[-17,-6],[-19,-7],[-15,-8],[-32,-17],[-13,-7],[-13,-14],[-3,-5],[-9,-19],[-4,-46],[10,-54],[10,-19],[1,0],[7,-8],[13,-13],[4,-4],[33,-19],[9,-4],[53,-22],[62,-25],[28,-6],[133,-29],[32,-16],[2,-3],[6,-2],[6,-10]],[[80359,30019],[-2,0],[-5,0],[-1994,0],[-498,0],[-323,0],[-732,0],[-4,0],[-937,0],[-186,0],[-36,0],[-334,0],[-2,0],[-302,0],[-1634,0],[-71,0],[-628,0],[-53,0],[-137,0],[-224,0],[-354,0],[-359,0],[-519,0],[-89,0],[-60,0],[-297,0],[-393,0],[-208,0],[-200,0],[-894,0],[-1,0],[-297,0],[-204,0],[-466,0],[-10,0],[-543,0],[-788,0],[-305,0],[-268,0],[-114,0],[-408,0],[-293,0],[-3,0],[-497,0],[-449,0],[-1,0],[-843,0],[-992,0],[-400,0],[-391,0],[-539,0],[-172,0],[-504,0],[-302,0],[-397,0],[-60,0],[-619,0],[-493,0],[-14,0],[-105,0],[-138,0],[-1159,0],[-1103,0],[-35,0],[-15,0],[-45,0],[-60,0],[-35,0],[-460,0],[-20,0],[-525,0],[1,83],[0,26],[0,95]],[[54812,30223],[1,269],[0,66],[1,73],[0,84],[0,150],[2,403],[1,355],[1,42],[0,69],[-30,0],[-1,783],[0,107],[0,203],[-1,239],[0,139],[0,258],[29,0],[30,0],[43,-1],[33,0],[20,1],[3,21],[-1,459],[0,329],[0,15],[0,17],[-1,27],[0,9],[0,19],[0,421],[0,126],[14,120],[0,68],[1,186],[0,94],[1,73],[-3,143],[-1,44],[0,22],[-1,55],[-1,63],[-1,14],[-1,87],[-3,198],[-2,159],[-1,84],[0,1],[0,31],[0,25],[0,63],[3,280],[1,76],[0,111],[0,233],[0,67],[0,77],[0,21],[1,231],[2,172],[0,11],[0,32],[1,58],[0,94],[3,577],[0,1],[1,64],[6,251],[6,236],[-2,529],[0,55],[-1,400],[0,318],[0,10],[-1,27],[-23,1],[0,289]],[[40678,40917],[1,-233],[1,-188],[-100,-2],[1,-94],[0,-67],[2,-192],[2,-130],[-1,-44],[0,-8],[-2,-27],[-56,0],[-423,0],[-76,1],[-201,-2],[0,-139],[-183,-2],[3,-69],[8,-179],[6,-135],[-2,-241],[-79,0],[-368,-4],[-139,-1],[-227,-3],[-273,-3],[-129,-7],[-119,-1],[0,-123],[0,-52],[0,-28],[0,-154],[-8,-41],[0,-27],[-25,-1],[-134,1],[-1,0],[-204,2],[0,-231],[1,-255],[0,-93],[-35,1],[-333,3],[-2,-143],[-2,-212],[-3,-133],[-1,-67],[-129,1],[-241,2],[-1,-84],[-2,-31],[3,-24],[-1,-140],[-224,0],[-258,-1],[-229,-1],[-20,1],[0,-185],[2,-22],[-1,-340],[-47,0],[-33,0],[0,-123],[-1,-137],[-1,-57],[2,-740],[1,-289],[0,-122],[186,0],[-2,-48],[1,-216],[0,-23],[9,-18],[30,-1],[-20,-177],[-11,-90],[3,-46],[6,-113],[-189,-6],[-168,-5],[1,-75],[1,-30],[0,-39],[-68,-2],[-32,-1],[0,-29],[-3,-117],[-191,-6],[-87,3],[-1,-77],[-1,-69],[-55,1],[-62,0],[-249,0],[-2,-73],[-182,1],[-1,-25],[-3,-237],[0,-29],[-153,1],[0,-73],[-61,0],[-315,3],[2,-105],[0,-39],[-27,-1],[-162,-2],[-154,-1],[-62,3],[-528,6],[2,145],[-339,2],[-46,-5],[-169,0],[-143,-22],[-190,-28],[-475,8],[-459,-7],[-1,-147],[-211,0],[-162,0],[0,-297],[-179,0],[8,-260],[1,-26],[-27,0],[-150,0],[1,-185],[-3,-64],[-7,-144],[-4,-79],[0,-25],[0,-60],[0,-328],[-324,-7],[-42,0],[-1,-132],[-1,-7],[-1,-129],[0,-63],[-2,-254],[-186,3],[-55,29]],[[30682,31465],[1,28],[-106,0],[-515,3],[-216,2],[-79,0],[-84,1],[1,-26],[-144,0],[-135,1],[-228,0],[-123,0],[-95,1],[-24,0],[-15,0],[-64,0],[-34,0],[-70,0],[-276,-11],[-320,-9],[-127,1],[-465,2],[-492,2],[-646,2],[-444,9],[-26,-1],[-63,0],[-289,0],[-183,0],[-20,0],[-461,0],[0,41],[-259,0],[-445,0],[-343,0],[-405,1],[-104,1],[-152,-1],[-112,1],[-81,0],[-419,0],[-2,36],[-460,0],[-239,0],[-67,0],[-423,0],[-107,0],[-16,0],[-68,0],[-16,0],[-152,0],[-1,0],[-75,0],[-453,-48],[-111,6],[-45,1],[-50,3],[-563,10],[-331,0],[-416,0],[-168,1],[-111,1],[-98,0],[-148,-8],[-249,1],[-65,0],[-329,4],[-297,3],[-196,0],[-197,0],[-552,1],[-149,2],[-62,0],[-49,-1],[-349,2],[-317,-8],[-217,-6],[-83,1],[-406,-2],[-60,0],[-395,-4],[-427,-5],[-123,0],[-137,0],[-210,0],[-38,0],[-81,11],[-371,6],[-83,0],[-245,2],[-315,3],[-166,-1],[-561,-5],[-101,1],[-70,1],[-31,0],[-24,0],[-528,-1],[-213,0],[-139,0],[-259,-1],[-341,-1],[-229,-2],[-424,-2],[-381,0],[-26,0],[-423,-7],[-59,-9],[-361,0],[-178,0],[-108,0],[-72,0],[-87,1],[-48,0],[-487,1],[-219,1],[-617,2],[-28,0],[-108,-1],[-181,0],[-688,-4],[-176,-1],[-17,0],[-351,-4],[-157,1],[-135,0],[-48,0],[-184,-1],[-454,-3],[-1,0],[-283,2],[-112,-1],[-168,1],[-158,1],[-180,1],[-97,-4],[-203,-7],[-205,-1],[-47,0],[-192,0],[-259,-2],[-25,-4],[-314,-2],[-518,5],[-16,0],[-847,-2],[-137,0]],[[57,31477],[0,21],[1,172],[0,188],[2,338],[0,113],[0,9],[0,49],[1,83],[0,67],[0,157],[1,97],[0,121],[0,157],[0,174],[1,174],[0,41],[0,86],[0,40],[0,108],[0,27],[1,140],[0,134],[0,28],[0,48],[0,92],[0,41],[0,169],[1,69],[0,160],[0,20],[2,66],[2,97],[4,145],[1,24],[2,81],[0,45],[1,62],[0,197],[0,59],[0,28],[0,11],[0,78],[0,77],[0,37],[0,163],[0,86],[1,90],[0,68],[0,87],[0,77],[0,38],[0,197],[-2,174],[-1,62],[0,108],[0,43],[0,65],[0,115],[-1,80],[0,38],[-3,99],[0,58],[0,90],[0,49],[0,61],[0,55],[28,3],[0,75],[-1,70],[0,33],[0,2],[0,31],[0,191],[-1,71],[0,34],[-3,84],[-1,20],[-2,217],[-1,84],[0,33],[-1,149],[0,9],[0,34],[0,20],[0,28],[-1,126],[0,51],[-1,53],[0,25],[0,33],[0,13],[-2,218],[-2,211],[-3,310],[-2,273],[0,111],[0,24],[0,114],[0,90],[1,49],[0,19],[0,11],[0,52],[0,77],[0,64],[1,238],[0,23],[0,94],[0,48],[1,113],[0,5],[0,78],[1,75],[0,172],[0,120],[1,366],[1,26],[0,30],[0,248],[1,241],[0,53],[0,107],[0,26],[0,27],[1,113],[0,84],[0,65],[0,87],[1,73],[0,62],[0,11],[0,91],[0,45],[1,80],[0,61],[0,170],[0,30],[0,65],[1,22],[0,129],[0,66],[0,72],[1,58],[-1,41],[1,31],[0,28],[0,36],[0,70],[0,40],[0,44],[1,119],[0,100],[0,31],[0,93],[1,50],[0,67],[0,38],[0,72],[0,51],[0,38],[1,29],[0,49],[0,92],[1,142],[0,27],[0,36],[1,60],[0,78],[0,70],[1,110],[0,79],[0,37],[1,70],[0,54],[1,139],[0,84],[0,56],[1,118],[0,85],[1,140],[1,49],[1,159],[0,29],[0,1],[-1,24],[1,84],[1,107],[0,62],[0,22],[1,72],[0,71],[0,38],[0,56],[1,69],[0,21],[0,44],[1,66],[0,59],[0,43],[0,58],[1,47],[0,46],[0,33],[0,78],[1,58],[0,39],[0,37],[1,70],[0,118],[1,179],[1,73],[0,73],[0,62],[0,2],[2,253],[0,33],[0,22],[1,102],[0,55],[0,41],[0,1],[0,53],[0,23],[2,483],[1,70],[0,57],[1,85],[0,58],[0,41],[-2,108],[-1,85],[-2,128],[-4,226],[0,6],[-1,86],[-1,90],[-1,54],[-1,50]],[[99793,49958],[1,-241],[2,-473],[1,-232],[3,-600],[2,-489],[1,-417],[2,-166],[0,-244],[-1,-122],[0,-38],[-1,-312],[-1,-470],[-1,-413],[-2,-644],[-1,-89],[0,-177],[0,-22],[0,-49],[-1,-61],[0,-93],[0,-25],[-1,-441],[-1,-33],[0,-188],[0,-22],[0,-2],[0,-43],[-1,-110],[-2,-673],[-1,-209],[-1,-328],[0,-22],[0,-108],[-1,-5],[0,-36],[0,-22],[0,-16],[-1,-79],[-2,-272],[-2,-286],[-3,-359],[-5,-646],[0,-94],[0,-25],[-1,-112],[-1,-45],[0,-12],[0,-74],[-1,-149],[-1,-158],[-2,-141],[-4,-327],[-4,-248],[-4,-206],[0,-8],[-2,-85],[-1,-126],[-5,-158],[-4,-239],[-1,-72],[-2,-87],[1,-38],[0,-93],[0,-67],[-2,-138],[-2,-171],[-3,-294],[-19,-494],[-1,-43],[-9,-272],[-3,-67],[0,-11],[-15,-326],[-9,-194],[-4,-97],[-4,-86],[-21,-692],[-4,-146],[-2,-70],[0,-2],[-2,-27],[-6,-255],[-5,-202],[-3,-116],[-6,-924],[0,-24],[1,-405],[0,-70],[-2,-214],[-2,-260],[0,-68],[-3,-245],[0,-53],[-2,-146],[1,-728],[0,-92],[1,-521],[4,-607],[0,-38]],[[99622,30019],[-175,0],[-87,0],[-340,0],[-146,0],[-7,0],[-333,0],[-223,0],[-265,0],[-148,0],[-372,0],[-1066,0],[-643,0],[-452,0],[-24,0],[-636,0],[-2,0],[-126,0],[-229,0],[-70,0],[-116,0],[-234,0],[-113,0],[-492,0],[-488,0],[-178,0],[-194,0],[-1,0],[-659,0],[-125,0],[-40,0],[-55,0],[-23,0],[-126,0],[-1,0],[-83,0],[-17,0],[-53,0],[-91,0],[-210,0],[-150,0],[-464,0],[-91,0],[-456,0],[-40,0],[-623,0],[-475,0],[-1,0],[-344,0],[-125,0],[-260,0],[-126,0],[-12,0],[-20,0],[-52,0],[-290,0],[-237,0],[-542,0],[-461,0],[-325,0],[-44,0],[-96,0],[-255,0],[-24,0],[-108,0],[-83,0],[-38,0],[-33,0],[-62,0],[-61,0],[-78,0],[-28,0],[-252,0],[-318,0],[-523,0],[-250,0],[-285,0],[-646,0],[-20,0],[-63,0],[-375,0],[-544,0],[-352,0],[-495,0],[-468,0],[-25,0]],[[54812,30223],[-228,0],[-208,0],[-25,0],[-218,0],[-29,-1],[-24,0],[-339,0],[-291,0],[-33,-1],[-458,0],[-788,0],[-308,0],[-369,0],[-28,0],[-123,0],[-226,0],[-194,1],[-458,-1],[-33,0],[-31,0],[-54,0],[-206,0],[-51,0],[-364,0],[-42,0],[-36,0],[-42,1],[-324,1],[-35,0],[-265,-1],[-164,-1],[-389,0],[-130,0],[-217,-1],[-216,0],[-421,-1],[-120,1],[-321,1],[-45,0],[-308,-2],[-190,0],[-77,0],[-238,2],[-211,-1],[-79,-1],[-31,0],[-103,-79],[-68,-52],[-38,-29]],[[45616,30059],[-199,0],[-61,0],[-161,1],[-216,0],[-669,1],[-14,0],[-448,1],[-89,0],[-7,0],[-304,0],[-27,0],[-47,1],[-30,0],[-9,0],[-99,0],[-155,0],[-109,0],[-281,0],[-396,0],[-144,0],[-141,0],[-204,0],[-43,0],[-161,0],[-218,1],[-198,0],[-239,0],[-36,-5],[-131,-1],[-231,-1],[-76,0],[-39,0],[-1,0],[-404,1],[-110,0],[-204,1],[-1,168],[0,1],[-8,0],[-67,3],[-124,3],[-39,1],[-43,1],[-62,2],[-140,4],[-154,5],[-418,12],[-206,3],[-430,1],[-60,0],[-108,0],[-506,0],[-64,0],[-120,0],[-92,0],[-169,0],[-37,0],[-61,0],[-73,-3],[-64,0],[-427,1],[-283,-1],[-79,0],[-62,0],[-9,0],[-30,0],[-26,0],[-21,-1],[-23,0],[-56,-1],[-77,-1],[-86,-1],[-103,-1],[-88,0],[-94,-1],[-24,-11],[-35,0],[-108,-2],[-121,-4],[-72,-3],[-52,-1],[-154,-3],[-43,-2],[-76,-4],[-121,-1],[-49,0],[-93,-1],[-125,-3],[-85,1],[-139,-1],[-179,-1],[-27,0],[-101,1],[-137,0],[-101,0],[-181,0],[-27,0],[-70,0],[-271,0],[-346,0],[-465,-1],[-202,-1],[-260,1],[-364,-1],[-37,0],[-170,-5],[-37,-1],[-317,6]],[[30616,30217],[8,33],[-17,30],[-6,38],[-48,36],[-15,46],[4,32],[19,30],[56,28],[23,42],[27,68],[5,46],[-10,74],[5,86],[2,47],[-20,40],[-20,13],[3,32],[3,56],[-1,61],[-4,43],[12,25],[26,14],[-5,45],[-11,33],[-25,64],[-18,49],[0,39],[26,38],[23,25],[24,35]],[[30616,30217],[3,-22],[18,-40],[21,-38],[10,-31],[37,-22],[-16,-14],[-47,-12],[13,-19],[4,-34],[-7,-37],[-4,-29],[9,-20],[15,-18],[21,-17],[29,-21],[31,-34],[28,-27],[8,-31],[-8,-36],[-16,-20],[-32,-20],[-29,-18],[-32,-19],[-23,-12],[-15,-24],[17,-14],[25,-23],[19,-21],[12,-22],[1,-33],[0,-37],[5,-23],[20,-35],[32,-27],[41,-21],[40,-13],[50,0],[22,6],[15,-15],[37,-41],[30,-44],[6,-20],[14,-21],[27,-16],[2,-34],[2,-29],[27,-23],[16,-15],[26,-30],[19,14],[34,13],[22,0],[32,-25],[-2,-34],[23,-21],[22,5],[26,-3],[34,-1],[32,-11],[37,-4],[19,-25],[14,-18],[32,-15],[22,-7],[47,-20],[16,-24],[11,-16],[12,-18],[23,-19],[19,-10],[26,7],[10,-22],[27,-10],[21,-12],[19,-10],[19,-12],[28,-13],[12,-23],[35,-8],[26,-23],[19,-25],[62,-50],[20,-26],[2,-22],[-1,-23],[-10,-24],[12,-25],[-2,-29],[8,-19],[6,-29],[14,-29],[36,-74],[12,-21],[10,-25],[13,-19],[21,-33],[5,-22],[18,-30],[23,-25],[24,-13],[27,-10],[22,-13],[26,-12],[31,-4],[23,-21],[20,-1],[19,-4],[19,10],[15,17],[21,11],[39,24],[27,6],[22,8],[23,13],[22,29],[5,21],[30,26],[21,4],[20,11],[8,21],[4,26],[15,30],[11,30],[12,17],[15,18],[16,31],[22,-1],[23,-3],[21,-1],[39,-1],[30,-12],[38,-22],[20,-10],[28,-11],[32,-7],[23,-25],[12,-21],[7,-20],[5,-30],[14,-33],[11,-25],[32,-31],[25,-4],[1,-20],[-8,-41],[-17,-14],[-20,-7],[-32,-10],[-16,-15],[-29,-22],[6,-28],[-1,-27],[-4,-23],[-1,-20],[12,-21],[16,-14],[32,-19],[13,-16],[14,-20],[7,-20],[17,-20],[2,-26],[4,-20],[19,-16],[21,-10],[19,-19],[20,-15],[11,-22],[24,-20],[15,-14],[26,-8],[30,-10],[29,3],[27,-3],[38,-4],[28,5],[34,1],[22,-2],[23,-17],[28,-17],[19,-15],[20,-8],[24,11],[16,-19],[7,-22],[-23,-17],[15,-25],[9,-26],[18,-24],[10,-19],[24,-25],[32,-12],[28,-18],[20,-24],[13,-27],[14,-18],[27,-21],[13,-25],[-18,-31],[8,-27],[21,-36],[18,-22],[35,-24],[36,-22],[27,-10],[20,-8],[52,-31],[13,-31],[37,-6],[30,5],[33,-2],[32,-15],[27,-9],[28,-30],[14,-23],[18,-23],[29,-30],[9,-22],[20,-30],[-1,-23],[17,-32],[21,-34],[17,-32],[-2,-37],[-23,-11],[-32,-13],[-18,-33],[-14,-36],[-9,-37],[6,-25],[2,-29],[-15,-32],[-11,-33],[7,-28],[9,-37],[-13,-24],[6,-20],[19,-15],[20,-7],[6,-25],[-24,-22],[-21,-13],[-24,-27],[-22,-8],[-27,-15],[-39,-17],[-19,-18],[-13,-18],[-7,-20],[-8,-26],[-5,-21],[0,-25],[17,-27],[19,-45],[3,-23],[8,-34],[-1,-34],[-6,-21],[-9,-30],[-6,-23],[-5,-34],[-11,-33],[-15,-34],[-18,-30],[-22,-28],[-19,-23],[-20,-18],[-43,-31],[-24,-13],[-33,-21],[-34,-21],[-31,-25],[-15,-23],[-17,-32],[-23,-33],[-19,-22],[-23,-32],[-2,-27],[-6,-24],[-7,-35],[-12,-29],[-29,-12],[-22,-17],[-7,-20],[-20,-2],[-27,-1],[-26,-18],[-23,-20],[-19,-15],[-2,-2],[-19,-17],[-18,-16],[-20,-17],[-21,-18],[-6,-24],[10,-36],[1,-22],[8,-22],[5,-21],[9,-22],[31,-22],[26,-5],[25,-6],[-1,-22],[9,-25],[15,-17],[27,-6],[27,-12],[4,-23],[-13,-23],[18,-33],[19,-14],[34,-21],[25,-21],[13,-16],[21,-25],[20,-27],[19,-20],[31,-13],[35,-12],[41,-10],[19,-15],[-16,-15],[-22,-21],[-27,-25],[-12,-18],[-26,-37],[-28,-19],[-16,-19],[-3,-26],[-21,-8],[-32,-1],[-30,-16],[-24,-19],[-18,-16],[-16,-13],[-21,-1],[-19,-11],[-42,-18],[-35,2],[-37,12],[-34,5],[-24,-5],[-23,-5],[-22,-11],[-16,-12],[-30,-24],[-32,-11],[-16,-15],[-32,-19],[-43,-5],[-42,2],[-7,-32],[-12,-21],[-9,-25],[-12,-17],[-9,-20],[-7,-21],[-31,-7],[-28,-11],[-12,-21],[-18,-14],[-22,-3],[-32,-22],[-16,-23],[-28,-4],[-21,-6],[-24,-25],[-7,-33],[-13,-45],[-29,-2],[-30,-20],[-25,-11],[-21,-12],[-19,-12],[-27,-27],[-29,-8],[-37,-4],[-24,-9],[-31,-57],[6,-31],[16,-58],[4,-22],[7,-24],[1,-30],[-8,-33],[-18,-17],[-38,-45],[-26,-17],[-22,1],[-24,-13],[-30,-7],[-32,-7],[-26,-9],[-15,-20],[-9,-20],[24,-24],[5,-40],[10,-19],[6,-22],[5,-22],[0,-26],[-14,-20],[-16,-17],[-21,1],[-31,-7],[-23,-4],[-23,-5],[-15,-8],[-12,-9],[-7,-7],[-10,-2],[-20,2],[-22,0],[-17,-2],[4,-10],[0,-3],[0,-7],[0,-6]],[[32107,23024],[-366,-1],[-115,-12],[-73,-6],[-35,-5],[2,-28],[-109,0]],[[31411,22972],[-441,-3],[-323,4],[-298,3],[-505,6],[-301,3],[-34,0],[-293,3],[-385,-1],[-32,0],[-44,1],[-30,0],[-16,0],[-233,-5],[-1199,0],[-124,-1],[-647,-2],[-20,0],[-292,-1],[-213,11],[-161,3],[-94,0],[-283,2],[-1114,11],[-191,-1],[-558,4],[-92,-3],[-268,-19],[-189,1],[-90,0],[-344,2],[-506,0],[-269,1],[-16,0],[-252,1],[-155,0],[-117,1],[-35,0],[-253,0],[-21,-5],[-123,0],[-90,1],[-190,0],[-179,0],[-121,1],[-293,0],[-127,0],[-71,1],[-189,0],[-184,0],[-46,0],[-87,1],[-56,0],[-369,0],[-348,-2],[-302,4],[-45,0],[-117,0],[-219,1],[-529,1],[-412,1],[-562,1],[-137,1],[-171,0],[-87,0],[-15,0],[-434,-1],[-32,0],[-119,0],[-296,0],[-234,0],[-21,0],[-207,0],[-46,1],[-27,0],[-223,2],[-95,0],[-102,1],[-289,-1],[-68,-1],[-151,-1],[-48,0],[-72,0],[-375,1],[-23,0],[-233,-1],[-118,-1],[-86,0],[-213,0],[-52,0],[-337,0],[-36,0],[-366,0],[-583,1],[-23,0],[-570,1],[-343,1],[-69,0],[-153,0],[-94,0],[-39,1],[-53,0],[-76,0],[-165,0],[-149,0],[-1,0],[-409,-1],[-351,-1],[-188,0],[-212,0],[-178,0],[-350,-1],[-371,-1],[-105,0],[-170,0],[-110,1],[-56,-2],[-120,0],[-76,1],[-76,1],[-73,-1],[-32,0],[-197,1],[-64,1],[-116,0],[-520,0],[-330,-1],[-37,0],[-358,0],[-174,0],[-59,0],[-129,-1],[-834,0],[-53,0],[-30,0],[-323,-4],[-26,0],[-203,2],[-194,2],[-212,-2],[-151,-2],[-286,0],[-83,0],[-181,1],[-81,0],[-30,1],[-84,0],[-1,0],[-575,3],[-18,0],[-16,0],[-356,-3],[-149,0],[-427,1],[-47,0]],[[62,22997],[-1,218],[0,288],[-1,215],[1,149],[0,57],[0,114],[-2,513],[0,58],[0,153],[-2,261],[5,109],[4,70],[5,115],[0,134],[0,91],[-1,108],[0,115],[-1,57],[-1,295],[-1,276],[0,32],[-1,335],[-1,238],[-1,118],[-1,205],[0,1],[0,22],[-1,177],[-1,94],[-4,106],[1,157],[0,235],[-4,207],[1,191],[1,27],[-1,43],[-1,196],[-2,28],[-1,39],[-2,54],[4,65],[-2,147],[0,149],[2,590],[-3,170],[1,265],[1,79],[0,56],[0,3],[0,115],[1,32],[6,188],[4,138],[0,67],[-2,72],[-5,268],[1,175]],[[45616,30059],[-29,-21],[-25,-19],[-11,-9],[-98,-79],[-170,-132],[-41,-32],[-76,-59],[-73,-57],[-112,-86],[-43,-36],[-25,-21],[-140,-110],[-74,-55],[-192,-153],[-29,-22],[-48,-123],[-1,-3],[0,-22],[12,-23],[-19,-38],[-8,-10],[-5,-17],[-6,-10],[-7,-18],[-7,-25],[-32,-20],[-13,-16],[-13,-7],[-9,-4],[-9,-1],[-20,-1],[-20,-20],[-3,-32],[-3,-18],[2,-16],[-16,-12],[-12,-5],[-13,-5],[-9,-4],[-4,-18],[12,-37],[-12,-28],[-1,-27],[-4,-16],[-26,3],[-33,-2],[-71,-4],[-9,-1],[-94,-70],[0,-84],[0,-11],[3,-32],[3,-68],[2,-114],[1,-59],[13,-381],[3,-99],[0,-90],[0,-59],[-2,-47],[8,-240],[3,-72],[19,-565],[2,-83],[2,-46],[0,-9],[3,-93],[5,-164],[2,-62],[1,-28],[1,-50],[3,-99],[5,-154],[10,-370],[12,-416],[14,-76],[3,-92],[2,-73],[2,-87],[0,-128],[0,-50],[1,-143],[0,-51],[0,-64],[4,-820],[0,-106],[-4,-283]],[[44098,23050],[-66,1],[-23,-1],[-336,-2],[-39,0],[-29,-1],[-164,-1],[-245,0],[-301,0],[-468,0],[-98,0],[-355,0],[-44,0],[2,-101],[-320,0],[-25,0],[-363,-6],[-147,0],[-72,0],[-4,0],[-54,2],[-40,0],[-59,0],[-273,0],[-2,0],[-827,-5],[0,74],[-849,5],[-388,2],[-56,-1],[-547,2],[-230,1],[-1,0],[-195,1],[-410,1],[-28,0],[-36,0],[-330,1],[-35,1],[-378,2],[-70,0],[-125,0],[-109,-1],[-276,-1],[-95,0],[-23,0],[-54,-1],[-55,1],[-50,0],[-97,0],[-59,0],[-53,-1],[-44,0],[-4,0],[-22,0],[-17,0],[-123,0],[-22,0],[-124,0],[-120,-1],[-195,-2],[-84,0],[-82,0],[-70,0],[-61,2],[-78,2],[-67,3],[-201,0],[-142,-1],[-265,0],[-42,1],[-151,0],[-223,-1],[-214,0],[-171,0],[-16,0],[-442,-1],[-110,0]],[[80359,30019],[-1,-1],[0,-1],[10,-10],[7,-5],[8,-7],[9,-8],[6,-6],[12,-12],[8,-8],[17,-22],[9,-11],[3,-5],[6,-6],[10,-12],[25,-26],[1,-2],[16,-16],[16,-16],[14,-10],[2,-2],[6,-5],[12,-11],[20,-12],[24,-12],[22,-12],[38,-14],[22,-10],[20,-10],[12,-6],[21,-12],[3,-2],[18,-12],[18,-12],[15,-9],[5,-3],[4,-5],[8,-11],[6,-6],[9,-11],[3,-11],[4,-14],[2,-8],[-1,-7],[-4,-30],[-1,-22],[0,-24],[-4,-30],[-6,-32],[-8,-20],[-8,-24],[-8,-22],[-8,-19],[-2,-5],[-12,-19],[-16,-21],[-18,-22],[-16,-21],[-20,-29],[-14,-18],[-14,-20],[-12,-16],[-10,-13],[-12,-15],[-6,-26],[10,-28],[6,-26],[2,-28],[2,-39],[-3,-41],[0,-6],[-5,-8],[-13,-19],[-1,-2],[-3,-2],[-14,-9],[-12,-7],[-12,-6],[-23,-3],[-39,-4],[-26,3],[-24,7],[-18,9],[-9,6],[-9,6],[-15,10],[-42,38],[-6,7],[-15,18],[-19,17],[-7,7],[-20,12],[-8,32],[-20,22],[-20,20],[-22,22],[-32,28],[-94,-2],[-24,-10],[-26,-8],[-32,-16],[-26,-18],[-17,-26],[-12,-34],[-2,-20],[2,-26],[8,-29],[15,-23],[13,-11],[17,-17],[18,-12],[22,-8],[32,-2],[34,4],[38,8],[38,2],[27,7],[3,1],[26,4],[15,1],[7,1],[20,1],[25,-16],[18,-23],[34,-37],[2,-2],[15,-13],[15,-26],[18,-22],[16,-22],[14,-26],[16,-20],[12,-18],[2,-4],[18,-22],[12,-18],[14,-22],[14,-20],[14,-18],[14,-18],[16,-16],[16,-14],[20,-18],[22,-26],[17,-26],[1,-2],[13,-36],[9,-23],[1,-2],[4,-6],[15,-22],[2,-2],[16,-16],[27,-23],[5,-4],[10,-16],[10,-14],[14,-35],[0,-26],[-16,-24],[-16,-14],[-24,-18],[-24,-14],[-30,-18],[-26,-14],[-22,-10],[-33,-16],[-38,-19],[-27,-12],[-19,-12],[-17,-13],[-26,-33],[-2,-1],[-22,-36],[-16,-30],[-18,-30],[-17,-28],[-24,-36],[-19,-15],[-37,-13],[-12,-2],[-16,-3],[-25,-2],[-23,-7],[-29,-17],[-7,-4],[-4,-5],[-4,-6],[-6,-10],[-2,-16],[-3,-23],[1,-3],[1,-17],[7,-23],[4,-10],[2,-5],[2,-4],[5,-5],[15,-17],[4,-4],[13,-3],[30,-7],[31,-5],[39,-7],[10,-2],[28,-3],[37,-3],[34,-6],[57,-15],[32,-12],[36,-13],[12,-5],[11,-7],[18,-13],[2,-1],[38,-39],[13,-25],[3,-18],[1,-5],[-9,-43],[0,-1],[-22,-34],[-18,-18],[-6,-5],[-20,-16],[-21,-24],[-5,-5],[-20,-23],[-2,-9],[-3,-11],[12,-25],[31,-2],[10,1],[32,4],[35,12],[1,0],[58,31],[2,2],[27,17],[14,8],[17,15],[20,17],[7,5],[25,17],[15,16],[27,29],[22,22],[20,20],[22,27],[17,21],[23,34],[22,29],[1,1],[27,34],[27,36],[1,1],[28,32],[10,8],[18,14],[7,6],[5,3],[33,21],[3,2],[3,0],[32,6],[19,3],[29,1],[29,2],[47,-13],[7,-2],[12,-10],[8,-6],[12,-11],[28,-37],[12,-29],[0,-7],[1,-32],[-3,-40],[-8,-30],[-14,-40],[-9,-17],[-4,-7],[-2,-1],[-16,-11],[-21,-28],[-12,-30],[-4,-8],[-21,-23],[-18,-15],[-7,-7],[0,-1],[-18,-26],[-15,-16],[-5,-6],[-10,-11],[-9,-17],[-7,-13],[-13,-23],[-17,-19],[-3,-4],[2,-27],[6,-34],[-15,-37],[-1,-28],[0,-22],[0,-15],[11,-20],[4,-7],[17,-20],[17,-12],[31,-21],[96,-62],[90,-60],[70,-51],[47,-22],[26,-7],[22,0],[30,6],[11,3],[8,3],[16,5],[12,5],[10,5],[2,1],[14,9],[8,5],[18,16],[15,15],[12,18],[9,12],[2,8],[6,30],[7,30],[7,30],[3,13],[6,23],[6,32],[7,23],[23,10],[9,4],[41,5],[6,0],[29,3],[31,0],[26,-1],[23,-9],[22,-13],[10,-11],[3,-4],[7,-31],[0,-1],[0,-1],[-2,-25],[-19,-26],[-22,-25],[-19,-29],[-8,-14],[-3,-3],[-1,-2],[-12,-14],[-11,-35],[-1,-21],[-10,-22],[-6,-20],[-9,-12],[-3,-5],[-18,-18],[-2,-2],[-13,-9],[-6,-5],[-20,-10],[-7,-4],[-49,-16],[-66,-18],[-15,-4],[-75,-18],[-28,-6],[-21,-11],[-12,-7],[-7,-5],[-13,-17],[-3,-11],[-4,-12],[-1,-25],[13,-82],[9,-45],[10,-47],[13,-26],[10,-16],[4,-5],[3,-2],[15,-11],[11,-7],[6,-2],[48,-17],[1,-1],[41,-11],[65,-20],[9,-4],[19,-8],[24,-16],[6,-4],[18,-14],[17,-17],[16,-21],[11,-18],[7,-21],[1,-1],[4,-22],[-2,-8],[-9,-34],[-2,-5],[-22,-47],[-17,-42],[-21,-61],[-9,-34],[-4,-27],[0,-5],[3,-25],[6,-22],[1,-2],[17,-29],[7,-7],[18,-19],[28,-17],[14,-6],[27,-12],[6,-3],[4,-1],[4,0],[43,-9],[38,-5],[47,-11],[51,-13],[55,-19],[29,-19],[2,-2],[15,-13],[12,-17],[12,-16],[8,-22],[3,-10],[1,-10],[0,-23],[-10,-33],[0,-1],[-2,-3],[-14,-20],[-32,-43],[-16,-20],[-12,-14],[-18,-23],[-16,-21],[-21,-25],[-9,-14],[-2,-3],[-2,-6],[-7,-13],[1,-20],[0,-2],[0,-1],[4,-19],[1,-2],[16,-19],[0,-1],[16,-12],[5,-5],[21,-12],[1,0],[17,-8],[6,-2],[26,-9],[10,-1],[8,-2],[9,-1],[27,-1],[23,3],[11,5],[15,6],[20,9],[35,20],[37,27],[39,33],[43,36],[19,16],[17,16],[12,10],[14,11],[8,5],[15,8],[6,4],[22,11],[11,5],[5,1],[3,2],[3,-1],[21,-3],[7,-1],[9,-7],[14,-11],[1,-1],[6,-6],[23,-26],[21,-27],[2,-2],[1,-2],[14,-32],[1,-3],[9,-22],[2,-9],[5,-14],[9,-31],[1,-4],[6,-30],[0,-5],[0,-20],[0,-27],[-4,-17],[-1,-5],[-10,-18],[-2,-2],[-12,-19],[0,-1],[-2,-1],[-34,-31],[-29,-20],[-2,-1],[-12,-6],[-44,-20],[-25,-12],[-25,-11],[-2,-1],[-26,-9],[-21,-8],[-7,-2],[-13,-6],[-13,-6],[-18,-13],[-8,-7],[-4,-7],[-9,-15],[-1,-2],[-4,-28],[1,-5],[4,-25],[12,-16],[8,-11],[12,-9],[14,-11],[2,-1],[5,-3],[18,-9],[3,-2],[28,-7],[4,0],[23,-1],[1,0],[0,1],[26,7],[26,11],[30,15],[17,8],[51,25],[30,10],[36,7],[30,-5],[29,-16],[22,-18],[25,-25],[15,-19],[22,-26],[13,-19],[4,-5],[14,-16],[17,-22],[19,-26],[16,-19],[1,-2],[14,-23],[5,-17],[1,-4],[-1,-2],[-7,-13],[-3,-6],[-3,-2],[-22,-12],[-3,-1],[-35,-5],[-23,1],[-1,0],[-1,1],[-126,18],[-39,6],[-22,3],[-33,0],[-24,0],[-1,0],[-4,-1],[-21,-3],[-29,-3],[-27,-5],[-30,-7],[-26,-9],[-30,-8],[-32,-11],[-2,0],[-3,-2],[-22,-10],[-15,-9],[-14,-7],[-25,-24],[-1,-5],[-7,-25],[-1,-29],[2,-9],[4,-22],[5,-12],[3,-8],[2,-5],[17,-30],[11,-18],[1,-1],[19,-20],[45,-25],[50,-24],[50,-22],[61,-27],[22,-10],[22,-9],[46,-19],[64,-26],[20,-7],[22,-3],[24,4],[8,3],[9,3],[6,2],[20,8],[59,20],[29,1],[1,0],[16,-15],[3,-3],[1,-11],[1,-17],[-12,-25],[-3,-6],[-11,-15],[-20,-22],[-3,-2],[-29,-23],[-39,-26],[-131,-91],[-22,-16],[-25,-22],[-13,-15],[-12,-33],[0,-2],[0,-1],[0,-5],[1,-14],[3,-4],[14,-23],[3,-4],[30,-14],[9,0],[9,-1],[3,0],[20,2],[16,3],[5,1],[53,16],[30,7],[7,2],[28,6],[18,4],[9,2],[26,4],[16,0],[5,0],[25,0],[3,-1],[1,0],[13,-8],[14,-8],[4,-3],[1,-16],[0,-18],[-4,-30],[0,-1],[-12,-30],[-13,-16],[-26,-28],[-1,-2],[-8,-5],[-24,-14],[-8,-4],[-11,-5],[-15,-2],[-10,-2],[-22,-3],[-11,-1],[-2,0],[-29,-2],[-39,-5],[-31,-4],[-25,-4],[-9,-2],[-11,-3],[-4,-1],[-20,-8],[-5,-2],[-16,-9],[-21,-15],[-19,-17],[-15,-14],[-3,-2],[-2,-3],[-40,-47],[-5,-6],[-15,-19],[-14,-16],[-21,-19],[-10,-13],[-5,-6],[-15,-17],[-22,-21],[-10,-9],[-7,-6],[-19,-14],[-10,-7],[-15,-11],[-25,-17],[-10,-7],[-15,-10],[-22,-9],[-25,-12],[-11,-4],[-27,-11],[-9,-4],[-25,-10],[-22,-11],[-19,-10],[-13,-9],[-11,-7],[-9,-4],[-24,-11],[-17,-8],[-17,-19],[0,-2],[-1,-8],[1,-3],[3,-6],[0,-1],[34,-27],[22,-21],[1,0],[0,-1],[22,-36]],[[82305,23062],[-434,0],[-859,-1],[-160,-1],[-215,0],[-699,0],[-105,0],[-171,0],[-120,0],[-33,0],[-347,0],[-201,1],[-79,0],[-2,0],[-395,1],[-71,0],[-56,0],[-193,0],[-531,1],[-130,0],[-664,1],[-238,0],[-738,-3],[-199,1],[-150,1],[-516,2],[-58,0],[-56,0],[-629,2],[-160,1],[-261,0],[-43,0],[-1,0],[-88,0],[-333,-2],[-68,0],[-262,-1],[-456,-2],[-278,-1],[-7,0],[-280,-2],[-300,0],[-575,0],[-268,-1],[-345,2],[-991,3],[-561,2],[-204,0],[-82,0],[-184,-1],[-14,0],[-71,-1],[-42,0],[-118,-1],[-142,-2],[-246,-2],[-400,-4],[-67,0],[-53,-1],[-205,-2],[-348,3],[-601,4],[-125,1],[-63,1],[-1,0],[-125,0],[-240,1],[-145,0],[-449,1],[-170,0],[-505,1],[-65,0],[-316,1],[-78,0],[-313,0],[-213,0],[-178,1],[-316,0],[-133,0],[-1,0],[-158,0],[-68,0],[-278,0],[-36,0],[-413,2],[-395,2],[-98,1],[-4,0],[-416,1],[-64,0],[-788,-2],[-421,0],[-2,0],[-378,0],[-618,0],[-102,0],[-121,-2],[-65,0],[-872,7],[-281,-4],[-521,4],[-130,1],[-12,0],[-22,0],[-132,1],[-130,2],[-330,2],[-855,6],[-567,3],[-34,1],[-183,2],[-155,1],[-295,4],[-405,4],[-38,0],[-726,2],[-8,-78],[-814,4],[-660,4],[-142,-1],[-106,-1],[-846,-2],[-235,0],[-39,0],[-90,0],[-144,-1],[-259,0],[-43,-1],[-375,0],[-54,0],[-1,0],[-208,0],[-200,-1],[-36,0],[-149,-1],[0,22],[-281,0],[-38,0],[-188,0],[-212,0],[-226,0],[-5,0],[-102,0],[-182,0],[-208,0],[-315,0],[-322,0],[-68,0],[-119,0],[-43,0],[-113,0],[-195,0],[-187,0],[-138,0],[-115,0],[-379,0],[-78,0],[-143,1],[-85,0],[-5,0],[-281,1],[-118,0]],[[99622,30019],[-6,-134],[0,-86],[0,-499],[1,-166],[0,-26],[0,-475],[0,-32],[0,-206],[0,-117],[1,-194],[0,-32],[0,-81],[0,-36],[0,-70],[0,-37],[0,-27],[0,-209],[0,-71],[0,-377],[1,-222],[0,-80],[0,-83],[0,-43],[0,-66],[0,-67],[0,-1],[0,-187],[0,-440],[1,-422],[9,-51],[69,-385],[12,-53],[3,-21],[15,-101],[9,-57],[88,-548],[4,-29],[8,-48],[39,-244],[28,-175],[11,-65],[42,-264],[28,-174],[-2,-70],[-3,-92],[-1,-21],[0,-50],[-2,-294],[0,-128],[-1,-138],[-2,-311],[0,-65],[0,-72],[-1,-183],[0,-29],[-2,-354],[-1,-324],[-4,-809],[-1,-124],[-1,-182],[0,-45],[0,-59],[-2,-309],[-2,-90],[2,-52],[2,-232],[19,-478],[4,-284],[12,-350],[-9,-521],[-2,-123],[-6,-25],[2,-193],[0,-51],[1,-67],[0,-323],[0,-124],[1,-153],[2,-237],[0,-1],[2,-155],[0,-84],[1,-84],[-3,-258],[-3,-242],[-1,-87],[-1,-57],[-4,-270],[-1,-87],[5,-92],[4,-104],[0,-290],[-1,-189],[-1,-61],[1,-39],[-6,-465],[-2,-160],[-3,-241],[0,-37],[1,-324],[2,-351],[1,-146],[-1,-24],[2,-54],[-2,-68],[6,-160],[0,-110],[-1,-340],[0,-1],[-1,-361],[1,-217],[1,-229],[-2,-320],[-24,-614],[-7,-306],[-2,-77],[-1,-52],[0,-13],[-3,-97],[0,-5],[0,-46],[-1,-23],[-9,-428],[-6,-272],[-6,-233],[-11,-549],[-8,-397],[0,-305],[-1,-607],[0,-48],[0,-1],[0,-50],[0,-70],[-1,-190],[-1,-375],[0,-171],[-1,-334],[0,-347],[9,-202],[0,-60],[0,-11],[1,-254],[0,-77],[0,-44],[1,-109],[0,-25],[-3,-52],[-4,-77],[-3,-52],[0,-42],[0,-403],[-1,-45],[6,-409],[0,-33],[0,-1],[1,-24],[0,-41],[0,-31],[3,-214],[2,-153],[2,-139],[1,-96],[-1,-33],[3,-130],[0,-51],[-1,-240],[1,-24],[-2,-59],[5,-137],[0,-28],[-1,-208],[-2,-38],[-1,-534],[0,-83],[0,-152],[0,-15],[0,-207],[-1,-23],[0,-5],[0,-38],[-1,-85],[0,-2],[-1,-60],[0,-45],[-1,-31],[0,-29],[0,-10],[-1,-69],[-1,-66],[6,-16],[0,-2],[-170,0],[-1,0],[-1326,5],[-108,1],[-515,-1],[-153,0],[-38,0],[-402,-2],[-103,-1],[-107,3],[-221,-2],[-62,0],[-208,0],[-350,0],[-185,1],[-2,0],[-28,1],[-45,0],[-75,-1],[-254,-1],[-96,0],[-36,0],[-30,1],[-226,0],[-229,0],[-232,0],[-213,0],[-59,0],[-107,0],[-53,0],[-266,0],[-137,0],[-128,0],[-27,0],[-140,0],[-261,-4],[-47,1],[-64,0],[-27,0],[-101,0],[-34,-1],[-92,0],[-84,0],[-308,0],[-264,0],[-127,0],[-53,0],[-198,0],[-22,0],[-119,0],[-147,0],[-145,0],[-81,0],[-146,0],[-168,0],[-161,0],[-106,-1],[-599,-3],[-147,-1],[-559,-4],[-182,-2],[-100,0],[-20,0],[-204,-1],[-43,-1],[-308,-2],[-5,0],[-327,-1],[-21,0],[-52,0],[-84,0],[-370,1],[-180,0],[-373,0],[-162,0],[-226,1],[-218,0],[-85,0],[-576,1],[-147,-6],[-571,1],[-295,1],[-815,1],[-118,0],[-138,0],[-276,1],[-1,0],[-120,0],[-160,3],[-311,-3],[-270,0],[-81,0],[-178,0],[-136,1],[-178,1],[-1,0],[-102,1],[-112,-5],[-54,-2],[-66,1],[-162,-1],[-67,0],[-25,-2],[-198,-3],[-314,1],[-239,0],[-421,13],[-249,0],[-422,-1],[-51,0],[-83,0],[-280,-1],[-176,0],[-100,0],[-82,0],[-350,0],[-217,-1],[-64,0],[-39,0],[-216,0],[-59,0],[-107,0],[-84,0],[-73,-1],[-33,0],[-37,0],[-127,0],[-128,0],[-76,0],[-25,0],[-175,0],[-298,-1],[-229,0],[-155,0],[-184,-1],[-28,0],[-352,0],[-68,0],[-314,0],[-112,-1],[-78,0],[-702,0],[-365,-1],[-33,0],[-12,0],[-293,0],[-29,0],[-557,-1],[-83,0],[-70,0],[-363,-1],[-40,0],[-342,-1],[-315,0],[-37,0],[-584,-1],[-2,0],[-49,0],[-57,16],[-85,24],[-23,0],[-181,52],[-68,19],[-58,4],[-28,2],[-109,8],[-166,-5],[-34,-1],[-391,-1],[-271,-1],[-2,0],[-77,0],[-51,-1],[-67,0],[-66,-1],[-64,0],[-63,0],[-54,-1],[-45,0],[-33,0],[-64,-1],[-52,-1],[-40,0],[-49,0],[-47,0],[-62,-1],[-47,0],[-47,-1],[-93,-1],[-46,0],[-41,0],[-69,1],[-65,0],[-72,0],[-75,0],[-79,-1],[-48,0],[-49,-1],[-27,0],[-36,0],[-156,6],[-380,-2],[-411,-2],[-578,-2],[-1,0],[-170,-1],[-171,-1],[-199,0],[-31,-1],[-142,0],[-257,-1],[-131,1],[-677,-2],[-206,-1],[-40,0],[-64,-1],[-33,0],[-1343,-5],[-694,-3],[-133,-1],[-661,-2],[-81,-1],[-662,-2],[-67,0],[-12,-1],[-184,0],[-193,1],[-82,1],[-371,1],[-231,0],[-154,0],[-77,0],[-80,-1],[-125,0],[-145,-2],[-154,-1],[-379,-10],[-26,-1],[-477,-17],[-160,-2],[-132,1],[-25,0],[-17,0],[-436,0],[-375,2],[-136,1],[-479,1],[-395,2],[-26,0],[-313,-2],[-46,0],[-1,0],[-36,1],[-194,-2],[-246,-9],[-28,-1],[-382,4],[-4,0],[-133,2],[-30,0],[-29,1],[-82,1],[-27,1],[-4,0],[-61,0],[-4,0],[-785,6],[-43,1],[-109,1],[-6,0],[-244,1],[-225,2],[-83,1],[-25,0],[-45,-1],[-51,0],[-21,0],[-27,1],[-52,0],[-47,0],[-29,-1],[-10,1],[-101,0],[-24,0]],[[52678,72],[24,31],[33,17],[42,18],[51,7],[41,0],[50,-5],[59,-7],[96,0],[40,-2],[68,-9],[47,-5],[43,-11],[21,-7],[28,-11],[33,-6],[39,-5],[25,2],[33,-2],[36,-3],[15,-1],[17,1],[16,1],[47,9],[48,19],[18,12],[12,9],[21,7],[25,16],[46,22],[54,17],[52,12],[38,5],[32,-2],[42,1],[37,6],[37,13],[44,25],[24,14],[34,33],[28,35],[36,52],[16,16],[35,24],[41,24],[27,12],[28,6],[46,-1],[24,-8],[22,-11],[26,-15],[24,-23],[42,-45],[20,-22],[33,-24],[38,-29],[34,-11],[40,-5],[30,1],[35,7],[32,13],[26,20],[18,22],[10,20],[3,29],[-57,95],[-15,33],[-5,33],[13,19],[27,28],[33,25],[26,16],[42,20],[99,39],[43,12],[51,21],[36,21],[37,23],[25,16],[24,17],[25,20],[12,20],[12,19],[9,23],[-26,35],[-32,15],[-59,7],[-46,-4],[-43,-9],[-61,-14],[-47,-1],[-35,6],[-38,17],[-23,21],[-17,23],[-21,44],[-11,31],[-9,38],[-8,39],[-7,21],[-2,22],[5,27],[4,27],[2,28],[3,27],[9,28],[16,27],[18,16],[25,18],[34,6],[42,-5],[43,-19],[50,-23],[47,-30],[38,-28],[36,-26],[18,-12],[33,-3],[28,-7],[34,-11],[41,-6],[35,-7],[27,-11],[20,-13],[30,-15],[71,-24],[30,-10],[20,-12],[28,-26],[41,-48],[20,-20],[30,-50],[22,-43],[21,-42],[29,-54],[41,-86],[33,-75],[41,-69],[35,-56],[64,-70],[53,-13],[61,-3],[52,23],[28,30],[41,63],[55,99],[28,56],[32,84],[-11,47],[-32,34],[-45,10],[-41,8],[-41,11],[-22,8],[-42,3],[-2,1],[-42,4],[-28,10],[-28,20],[-13,26],[-9,26],[-6,22],[2,29],[12,37],[19,29],[14,25],[28,41],[11,50],[28,73],[30,55],[37,42],[42,18],[30,-4],[44,-3],[49,-47],[30,-52],[25,-41],[24,-59],[18,-49],[25,-14],[18,-11],[30,-6],[36,11],[31,6],[44,19],[39,40],[35,41],[41,47],[30,31],[19,22],[27,24],[40,43],[52,52],[37,43],[35,45],[46,57],[66,60],[41,33],[39,37],[24,32],[27,30],[16,35],[27,38],[19,33],[12,29],[16,37],[17,30],[12,17],[28,31],[19,14],[44,13],[23,7],[42,5],[25,7],[31,5],[32,8],[19,9],[34,3],[22,-4],[24,-21],[27,-16],[44,-30],[32,-33],[33,-40],[1,-2],[27,-46],[33,-46],[27,-31],[19,-15],[35,-21],[43,-12],[62,-16],[72,-7],[56,3],[36,13],[16,14],[23,21],[10,23],[17,29],[24,47],[11,24],[30,67],[33,56],[24,34],[20,17],[30,14],[35,22],[30,7],[26,-2],[20,-7],[40,-22],[27,-13],[30,-9],[61,-9],[27,-2],[51,-11],[96,-29],[32,-5],[22,1],[27,6],[64,34],[20,8],[27,3],[33,-1],[176,-43],[30,-3],[49,-3],[37,3],[27,12],[31,21],[39,32],[39,21],[29,11],[7,2],[19,4],[64,-9],[26,-10],[20,-13],[1,-4],[19,-72],[29,-44],[17,-20],[35,-8],[89,2],[37,9],[38,13],[23,15],[17,19],[15,19],[13,37],[14,38],[18,20],[31,15],[37,14],[51,9],[65,4],[71,6],[33,9],[38,7],[65,7],[53,8],[25,7],[21,9],[25,20],[13,16],[26,18],[25,13],[22,3],[31,-7],[38,-18],[54,-27],[32,-16],[35,-9],[47,-6],[26,2],[26,-6],[22,0],[34,-2],[31,-4],[26,-2],[38,2],[36,10],[22,10],[24,14],[15,7],[11,5],[22,10],[18,10],[20,22],[16,18],[2,32],[-20,42],[-15,25],[-5,9],[-8,24],[-12,26],[-8,19],[23,30],[27,13],[26,10],[38,-9],[85,-22],[22,-5],[28,-7],[59,-6],[50,-31],[50,-10],[53,-4],[38,13],[25,10],[28,29],[22,33],[4,7],[13,46],[26,38],[35,20],[25,37],[-19,46],[-31,63],[-36,71],[-26,71],[28,78],[35,27],[66,-3],[71,-41],[25,-16],[42,-30],[63,0],[69,3],[36,20],[21,24],[29,45],[23,36],[13,45],[21,35],[11,43],[10,39],[7,28],[5,29],[9,35],[10,48],[4,21],[5,21],[16,38],[11,24],[10,19],[16,19],[19,27],[28,6],[39,2],[27,-1],[24,-6],[30,-6],[11,-3],[45,-11],[37,-15],[25,-8],[45,-11],[39,-9],[41,-2],[33,2],[21,11],[24,26],[5,19],[3,12],[2,23],[-3,38],[-3,41],[-4,43],[-1,22],[16,29],[10,19],[29,28],[21,16],[21,20],[19,18],[18,28],[35,40],[16,21],[9,22],[12,26],[3,32],[0,33],[-5,20],[-4,10],[-6,10],[-15,24],[-11,17],[-11,16],[-17,17],[-18,17],[-18,16],[-21,17],[-19,14],[-12,17],[4,30],[9,21],[13,20],[13,15],[23,13],[24,10],[31,11],[32,12],[23,9],[23,10],[30,10],[25,12],[27,12],[23,13],[18,15],[21,14],[22,16],[16,15],[19,17],[19,25],[2,32],[-4,24],[-9,19],[0,20],[-3,20],[-8,32],[-3,10],[-10,27],[-15,30],[-13,19],[-14,18],[-6,6],[-19,16],[-21,12],[-33,20],[-28,23],[-16,17],[-20,32],[-3,33],[-4,24],[99,60],[74,20],[15,4],[37,8],[48,12],[94,6],[73,20],[52,42],[28,34],[8,34],[-14,50],[-32,40],[-36,27],[-14,11],[-67,58],[-62,64],[-34,54],[-16,84],[12,111],[49,42],[76,24],[118,10],[122,6],[110,18],[89,30],[88,50],[60,44],[16,22],[16,98],[-4,124],[-34,96],[-46,72],[-50,36],[-72,42],[-51,22],[-72,12],[-64,6],[-66,8],[-54,12],[-70,26],[-40,30],[-31,38],[-14,18],[-54,104],[-22,76],[6,72],[26,52],[46,44],[49,27],[18,3],[14,3],[4,0],[3,0],[77,-10],[136,-41],[74,-36],[58,-36],[67,-46],[60,-34],[76,-46],[48,-26],[52,-24],[40,-22],[74,-30],[65,-28],[72,-24],[20,-4],[42,-20],[26,-30],[36,-28],[32,-22],[76,-40],[76,-28],[83,-6],[86,16],[70,24],[74,20],[94,-10],[77,-12],[56,-4],[50,14],[32,28],[26,36],[32,58],[32,36],[50,26],[70,-2],[51,-2],[50,18],[32,30],[14,50],[4,64],[6,72],[1,22],[3,52],[10,36],[18,29],[30,12],[9,3],[21,4],[22,-5],[24,-14],[20,-19],[12,-18],[2,-30],[20,-32],[32,-24],[38,-16],[39,-4],[60,8],[22,12],[20,22],[18,28],[2,38],[-10,33],[-18,42],[-12,38],[4,42],[24,34],[32,20],[46,30],[36,24],[34,24],[38,34],[22,28],[30,36],[14,52],[-4,34],[-24,30],[-21,7],[-23,7],[-50,24],[-18,10],[-38,28],[-40,34],[-42,24],[-56,36],[-53,38],[-34,34],[-42,40],[-34,36],[-32,30],[-34,40],[-16,22],[-28,28],[-12,16],[-16,26],[-8,46],[-6,38],[-2,22],[18,28],[16,12],[29,4],[37,14],[44,10],[10,0],[22,2],[22,-2],[20,-4],[22,-2],[24,-6],[25,-8],[30,-10],[142,-72],[38,-28],[50,-20],[48,-10],[34,-2],[46,14],[49,18],[34,16],[30,22],[7,7],[21,25],[18,18],[18,18],[27,28],[1,2],[20,28],[14,30],[20,40],[4,26],[0,22],[4,34],[12,31],[20,30],[22,40],[12,34],[12,38],[8,24],[42,46],[18,36],[-6,48],[-22,30],[-38,24],[-40,12],[-46,10],[-38,10],[-19,1],[-51,3],[-44,-12],[-32,-16],[-48,-22],[-33,-6],[-62,2],[-46,14],[-22,14],[-24,30],[-32,24],[-6,4],[-10,5],[-34,15],[-46,30],[-36,36],[-28,42],[-28,34],[-31,32],[-36,28],[-24,12],[-52,36],[-18,26],[-11,17],[-3,23],[0,26],[94,68],[31,-4],[1,0],[39,-11],[12,-3],[44,-14],[60,-20],[36,-6],[58,10],[32,12],[20,12],[18,30],[6,24],[-6,42],[2,26],[-2,32],[-8,28],[-6,28],[8,28],[15,25],[9,25],[-2,20],[10,26],[34,28],[14,26],[26,30],[21,20],[66,-4],[46,4],[48,2],[70,-6],[74,-6],[8,0],[70,6],[71,8],[96,-16],[68,-20],[88,-12],[112,-16],[127,-18],[112,0],[80,14],[56,20],[48,26],[47,24],[52,20],[64,10],[68,10],[54,16],[28,10],[10,4],[36,37],[4,40],[-30,30],[-50,30],[-56,18],[-42,14],[-32,5],[-24,3],[-64,2],[-73,-4],[-58,-2],[-100,14],[-38,22],[-10,30],[10,36],[0,20],[6,36],[14,37],[8,20],[10,22],[1,30],[0,2],[0,1],[1,20],[0,15],[-3,39],[15,51],[9,34],[10,36],[11,44],[10,36],[27,66],[34,57],[34,32],[41,19],[31,24],[6,5],[13,24],[35,39],[21,13],[22,28],[4,5],[15,33],[16,22],[26,31]],[[67969,10855],[19,28],[30,31],[34,42],[33,42],[37,45],[17,29],[32,46],[40,30],[28,16],[143,77],[11,4],[69,27],[166,49],[195,138],[57,96],[20,81],[8,30],[-27,180],[-10,110],[4,109],[63,49],[54,41],[214,51],[269,76],[66,50],[27,19],[5,181],[35,0],[0,26],[0,20],[1,62],[2,32],[4,47],[16,70],[43,58],[44,25],[71,7],[48,-17],[11,-9],[45,-43],[53,-52],[59,-29],[62,-28],[64,-11],[74,18],[50,44],[25,47],[14,27],[25,68],[31,62],[49,57],[41,39],[68,49],[69,44],[36,20],[55,3],[32,-29],[43,-38],[27,-21],[40,-18],[17,-20],[31,-10],[48,14],[30,30],[27,49],[-6,40],[-11,35],[5,20],[17,33],[20,29],[12,32],[3,30],[24,45],[40,33],[33,30],[40,31],[22,27],[16,26],[-3,31],[-4,46],[19,28],[17,24],[-7,171],[3,30],[11,35],[8,24],[-1,40],[-25,27],[-41,36],[-25,28],[21,47],[60,19],[62,12],[69,20],[59,43],[44,48],[42,40],[20,26],[7,29],[-12,70],[-2,53],[26,64],[52,40],[90,43],[83,18],[57,25],[55,39],[45,42],[17,42],[7,49],[7,57],[-1,33],[-1,19],[-6,44],[0,53],[8,65],[1,55],[18,51],[39,52],[46,41],[83,43],[60,40],[50,25],[22,11],[41,34],[34,47],[17,46],[-2,44],[-24,25],[-57,-2],[-62,-19],[-54,-28],[-32,-32],[-62,-29],[-46,-10],[-83,-12],[-61,-6],[-42,1],[-46,-3],[-66,-20],[-19,-6],[-33,10],[-34,15],[-27,28],[-17,25],[-14,18],[-7,26],[-23,20],[-32,18],[-18,27],[-12,24],[-14,38],[-3,6],[-12,29],[-6,34],[4,34],[-1,39],[-6,36],[-12,31],[-18,28],[-28,14],[-30,13],[-7,22],[14,68],[27,47],[31,43],[18,31],[21,32],[27,12],[26,-4],[32,-6],[33,4],[4,-1],[36,-6],[53,8],[74,8],[47,4],[58,11],[50,-7],[36,-13],[31,2],[53,-26],[63,-14],[47,-11],[11,7],[18,55],[14,60],[11,34],[-9,86],[12,39],[2,5],[7,38],[7,42],[1,54],[1,45],[14,48],[20,47],[28,45],[38,41],[47,41],[48,32],[60,33],[19,5],[40,10],[44,3],[37,15],[41,16],[49,10],[51,10],[35,14],[24,24],[28,32],[15,22],[1,38],[-13,49],[-10,32],[-9,20],[-1,24],[21,44],[-3,50],[-16,49],[-2,9],[-12,39],[-6,45],[-5,56],[-4,39],[0,31],[14,28],[57,37],[28,21],[24,14],[47,17],[8,3],[46,20],[18,1],[33,11],[39,32],[25,5],[19,3],[13,-8],[21,4],[18,3],[53,13],[132,25],[40,7],[33,7],[21,2],[54,6],[16,7],[12,5],[17,2],[13,2],[29,0],[5,4],[20,3],[40,7],[95,1],[2,0],[45,-5],[11,-1],[38,-11],[51,-17],[9,-8],[126,-13],[48,3],[21,-5],[222,-9],[107,-3],[38,1],[26,-8],[226,21],[66,-9],[90,-28],[33,-19],[24,-22],[9,-14],[9,-44],[8,-6],[19,-19],[2,-1],[9,-5],[11,-75],[10,-64],[42,-86],[32,-32],[19,-10],[59,-23],[30,-4],[62,38],[30,96],[-16,59],[-13,84],[14,80],[67,154],[12,20],[41,42],[39,33],[17,12],[69,26],[118,11],[89,-7],[157,-38],[76,-8],[75,-4],[71,6],[78,-4],[14,-6],[1,-4],[8,-9],[1,-1],[7,-6],[70,-10],[269,-67],[64,8],[82,27],[29,34],[17,12],[20,30],[10,32],[-1,55],[6,39],[12,54],[37,62],[40,61],[24,43],[-6,12],[1,31],[0,17],[-21,93],[-38,59],[-23,23],[-3,3],[-10,10],[3,6],[3,6],[3,7],[-3,17],[-31,60],[-11,59],[2,86],[18,78],[14,29],[37,40],[23,15],[51,21],[38,10],[34,6],[24,11],[8,12],[7,6],[44,35],[145,85],[88,47],[38,20],[86,45],[47,31],[13,9],[67,71],[30,63],[10,20],[-4,8],[-2,5],[8,76],[17,65],[21,42],[32,37],[17,10],[56,29],[9,0],[3,1],[27,1],[14,12],[24,10],[76,27],[4,10],[1,1],[30,23],[47,43],[35,55],[-4,12],[37,85],[10,13],[34,43],[21,27],[22,23],[26,16],[68,17],[24,8],[3,1],[21,2],[15,2],[27,8],[73,9],[89,10],[81,5],[46,-3],[37,-10],[55,-32],[9,-5],[12,-8],[27,-17],[43,-35],[14,-22],[9,-13],[8,-5],[12,-7],[17,-14],[164,-92],[13,3],[84,5],[22,-2],[38,4],[66,28],[41,23],[30,28],[0,3],[91,88],[16,15],[9,19],[0,33],[-7,37],[-16,66],[-24,58],[-15,20],[-2,3],[-2,8],[-7,28],[-7,28],[1,30],[11,29],[42,47],[11,12],[46,99],[14,32],[1,4],[3,9],[37,56],[16,23],[19,51],[5,10],[6,7],[50,55],[5,6],[10,7],[51,34],[37,26],[56,29],[28,3],[18,2],[5,1],[26,0],[2,-1],[5,-3],[17,2],[61,7],[11,1],[6,7],[17,18],[4,4],[27,48],[8,27],[17,80],[1,12],[-23,101],[-6,32],[-25,24],[-11,10],[-15,26],[0,1],[-8,28],[-1,3],[4,15],[29,52],[54,74],[7,7],[25,23],[23,22],[20,45],[25,26],[12,6],[34,7],[44,38],[2,1],[1,1],[101,153],[2,14],[3,15],[25,35],[11,10],[2,2],[7,6],[39,24],[10,7],[25,25],[21,21],[11,11],[10,14],[3,5],[18,9],[9,4],[5,6],[3,3],[11,11],[0,13],[0,2],[8,9],[14,9],[23,17],[32,22],[14,6],[28,12],[15,6],[55,4],[14,-2],[22,-3],[4,0],[16,-8],[42,-18],[5,-2],[39,-34],[19,-25],[7,-15],[27,-30],[24,-22],[2,-10],[0,-5],[2,-1],[10,-5],[10,-6],[44,-8],[4,1],[46,7],[10,-1],[1,0],[32,1],[20,3],[10,1],[14,1],[27,13],[11,12],[5,23],[23,42],[9,15],[26,28],[9,9],[48,35],[39,20],[51,19],[23,3],[1,0],[49,7],[44,6],[18,3],[47,17],[2,2],[26,21],[6,21],[1,46],[0,2],[11,26],[29,41],[33,45],[7,26],[6,21],[3,4],[23,45],[0,2],[3,3],[22,22],[8,9],[35,21],[22,7],[42,13],[91,38],[40,17],[6,0],[30,5],[10,1],[21,-2],[23,-3],[13,2],[25,2],[4,1],[77,16],[3,1],[35,25],[5,4],[10,11],[39,40],[2,8],[40,131],[4,28],[-4,25],[-2,7],[-10,36]],[[67969,10855],[-87,-1],[-57,0],[-22,0],[-33,0],[-48,-1],[-134,-1],[-29,0],[-372,-3],[-219,-2],[-99,1],[-52,0],[-24,0],[-14,0],[-408,2],[-476,-2],[-23,-4],[-25,0],[-31,0],[-37,0],[-243,0],[-292,1],[-69,0],[-461,1],[-731,1],[-163,0],[-426,1],[-720,0],[-683,1],[-715,0],[-376,0],[-227,-11],[-555,3],[-41,-1],[-433,-5],[-33,-1],[-95,5],[-1,0],[-125,0],[-984,-1],[-1307,-1],[-1187,-4],[-1454,4],[-192,1],[-189,0],[-366,1],[-303,0],[-634,9],[-430,-3],[-1421,0],[-291,2],[-5,-21],[-37,1],[-615,0],[-30,0],[-15,0],[-640,6],[-181,-1],[-66,0],[-460,-1],[-154,-8],[-41,1],[-114,1],[-54,0],[-69,0],[-257,0],[-47,2],[-40,0],[-1128,-4],[-107,2],[-295,1],[-62,0],[-280,3],[-159,0],[-267,0],[-335,1],[-13,0],[-130,0],[-714,0],[-179,2],[-2,-24],[-3,-58],[-211,-4],[-37,-1],[-368,4],[-76,3],[-202,0],[-409,-1],[-75,0],[-75,0],[-583,1],[-91,0],[-398,2],[-308,-1],[-155,-1],[-109,0],[-89,-1],[-78,-1],[-144,0],[-55,0],[-539,0],[-192,0],[-76,0],[-33,3],[-26,-2],[-46,-1],[-64,0],[-37,0],[-349,1],[-389,1],[-77,0],[-152,0],[-51,1],[-121,1],[-852,-2],[-3,14],[-178,0],[-612,0],[-341,-1],[-176,0],[-41,0],[-99,0],[-113,0],[-144,2],[-191,0],[-15,0],[-156,0],[-103,-1],[-65,0],[-77,0],[-4,0],[-52,0],[-779,-2],[-8,0],[-42,0],[-272,0],[-34,0],[-212,0],[-37,0],[-157,0],[0,132],[-28,1],[-40,1],[-222,-6],[-123,-1],[-283,0],[-180,0],[-39,0],[-318,-1],[-60,0],[-32,1],[-89,0],[-180,0],[-84,0],[-34,-1],[-29,0],[-241,-1],[-148,-1],[-226,0],[-122,0],[-25,0],[-15,0],[-154,-1],[-79,0],[-40,3],[-174,1],[-320,0],[-89,0],[-298,1],[-7,0],[-271,0],[-28,0],[-430,1],[-45,0],[-78,1],[-748,-1],[-105,0],[-58,0],[-208,1],[-32,0],[-172,0],[-44,1],[-527,3]],[[27330,10898],[-4,1066],[-1,14],[-1,236],[0,174],[-2,144],[0,37],[0,34],[0,66],[-33,29],[-2,31],[0,20],[-2,60],[-1,46],[-1,28],[0,6],[-2,59],[-4,74],[-4,79],[0,1],[-2,48],[-2,34],[-3,55],[4,30],[1,90],[2,80],[1,40],[5,174],[1,62],[1,63],[-2,51],[-1,27],[0,44],[-1,41],[-1,94],[-2,69],[0,81],[-1,71],[1,123],[-59,-3],[0,128],[0,52],[0,45],[0,71],[-1,164],[-3,194],[0,105],[0,37],[0,130],[0,229],[0,46],[0,41],[0,24],[0,180],[0,72],[-1,252],[152,-1],[33,-1],[156,-1],[313,11],[267,10],[74,-2],[59,-2],[92,-3],[55,-2],[65,-2],[358,-11],[7,-1],[175,-6],[332,-12],[70,-2],[1,183],[0,61],[1,398],[0,408],[0,40],[1,69],[0,122],[2,44],[-2,63],[0,163],[-200,1],[1,164],[398,0],[566,0],[78,0],[196,0],[181,0],[183,0],[146,0],[651,1],[2,146],[5,257],[3,139],[3,178],[3,154],[2,129],[2,91],[4,192],[0,42],[0,109],[0,27],[0,28],[0,1],[0,250],[-240,0],[1,188],[1,94],[5,164],[-1,430],[0,469],[0,99],[-1,701],[0,47],[0,2],[-2,421],[4,243],[0,86],[0,238],[0,7],[-1,202]],[[27330,10898],[-619,3],[-729,-9],[-367,-2],[-287,2],[-16,0],[-233,1],[-42,0],[-879,6],[-26,0],[-644,2],[-85,-2],[-5,0],[-97,-2],[-276,5],[-44,0],[-1,-85],[-5,-396],[10,-392]],[[22985,10029],[-195,0],[-271,0],[-263,0],[-49,0],[-187,0],[-226,0],[-495,0],[-71,0],[-196,0],[-38,0],[-295,-9],[-222,-7],[-145,-5],[-60,-2],[0,-54],[1,-309],[1,-117],[-124,1],[-369,0],[-245,0],[-188,0],[-137,0],[-315,0],[-113,0],[-87,0],[-196,-4],[-296,-4],[-113,-3],[-7,101],[-1,35],[-682,3],[-255,2],[-97,0],[-167,2],[-200,0],[-1,17],[-52,0],[-10,0],[-30,-1],[-63,1],[-67,0],[-31,0],[-30,0],[-139,1],[-101,1],[-21,0],[-131,1],[-58,1],[2,100],[1,25],[5,229],[2,532],[0,46],[-97,0],[-390,1],[-266,1],[-212,1],[-70,0],[-97,0],[-370,1],[-38,1],[-39,0],[-3,0],[-532,1],[-332,2],[-91,0],[-200,0],[-406,-2],[-114,0],[-21,0],[-46,0],[-122,0],[-173,2],[-48,0],[-24,0],[-21,0],[-68,1],[-93,1],[-150,-3],[-391,-5],[0,191],[-1,31],[0,100],[-1,89],[0,29],[0,48],[-2,363],[-2,186],[0,66],[-1,342],[-5,339],[-153,-1],[-361,3],[-125,1],[-111,1],[-1,0],[-175,-1],[-404,-2],[-427,1],[-495,0],[-1,-113],[-1,-159],[-274,1],[-34,0],[-131,0],[-246,0],[-69,0],[-125,-1],[-36,0],[-139,-1],[-48,-1],[-109,1],[-48,0],[-189,0],[-15,0],[-182,-1],[-37,0],[-164,1],[-48,0],[-137,1],[-71,-2],[-109,0],[-84,0],[-32,0],[-29,0],[-127,1],[-456,-1],[-310,3],[-216,1],[-592,0],[-377,0],[-213,-1],[-23,0],[-129,-1],[-309,0],[-352,-1],[-71,-1],[-213,-1],[-183,0],[-271,0],[-7,0],[-155,0],[-182,-1],[-58,0],[-33,0],[-109,2],[-665,6],[-370,-1],[-192,-1],[-22,0],[-217,-2],[-13,1],[-16,1],[-150,0],[-130,-1],[-67,0],[-166,0],[-35,0],[-137,0],[-51,0],[-58,0],[-236,0]],[[11,12129],[-1,34],[0,24],[2,345],[1,145],[0,29],[-1,51],[1,33],[1,144],[1,54],[0,59],[1,69],[3,182],[1,29],[0,253],[-2,35],[1,301],[0,115],[1,146],[0,22],[1,84],[0,9],[0,12],[2,166],[0,24],[0,17],[1,81],[1,60],[1,109],[0,102],[-1,90],[1,77],[1,22],[2,28],[7,48],[3,21],[5,58],[17,135],[6,151],[5,106],[1,32],[1,50],[2,172],[1,77],[5,108],[5,83],[4,97],[-15,169],[-10,116],[1,45],[0,21],[1,54],[0,2],[2,172],[-6,190],[-3,92],[0,300],[2,149],[4,128],[-2,209],[0,53],[0,94],[-2,252],[-1,207],[-1,41],[-2,355],[-2,260],[0,96],[0,2],[-3,386],[-2,343],[-1,72],[4,31],[0,48],[0,179],[-1,602],[0,155],[1,187],[1,308],[0,156],[0,131],[1,274],[1,213],[-1,84],[1,130],[2,239],[0,22],[2,212]],[[22985,10029],[-1,-470],[0,-2],[-3,-788],[0,-166],[0,-2],[-1,-249],[-1,-375],[-2,-441],[13,-75],[0,-3],[0,-28],[-7,-1062],[0,-71],[-7,-332],[2,-160],[1,-42],[0,-96],[20,-1],[0,-271],[1,-358],[3,-515],[0,-15],[0,-26],[0,-25],[3,-771],[0,-3],[3,-613],[1,-200],[0,-103],[1,-226],[1,-374],[1,-493],[3,-865],[1,-758]],[[23017,50],[-70,-1],[-440,-1],[-65,0],[-145,0],[-43,0],[-315,-1],[-119,0],[-37,-1],[-45,0],[-25,0],[-10,0],[-13,0],[-53,0],[-56,0],[-64,0],[-26,0],[-71,0],[-45,-1],[-21,0],[-24,0],[-33,0],[-55,0],[-44,0],[-35,0],[-34,0],[-41,0],[-30,0],[-1,0],[-21,0],[-42,0],[-20,-1],[-45,-2],[-21,0],[-104,0],[-71,0],[-45,0],[-50,0],[-564,0],[-112,0],[-155,0],[-38,0],[-32,0],[-297,0],[-20,0],[-61,0],[-175,0],[-105,0],[-489,0],[-66,0],[-24,0],[-27,0],[-23,0],[-567,0],[-229,0],[-107,0],[-67,0],[-95,0],[-65,0],[-47,0],[-51,0],[-83,0],[-144,0],[-71,0],[-63,0],[-149,0],[-192,0],[-128,0],[-22,0],[-110,0],[-88,0],[-120,0],[-46,0],[-473,0],[-68,0],[-283,0],[-290,0],[-286,0],[-234,0],[-99,0],[-641,0],[-22,0],[-98,0],[-131,0],[-3,0],[-239,0],[-210,0],[-100,0],[-438,0],[-89,0],[-13,0],[-4,0],[-195,0],[-250,0],[-27,0],[-7,0],[-44,0],[-48,0],[-67,0],[-196,0],[-119,0],[-2,0],[-202,0],[-110,0],[-426,0],[-69,0],[-103,0],[-250,-1],[-577,0],[-167,0],[-66,0],[-178,0],[-168,0],[-44,0],[-363,0],[-4,0],[-54,0],[-25,0],[-498,0],[-339,0],[-100,0],[-105,0],[-517,0],[-2,0],[-38,0],[-564,0],[-41,0],[-290,0],[-101,0],[-179,0],[-293,0],[-1335,0],[-549,0],[-37,0],[-440,0],[-32,0],[-28,0],[-219,0],[-68,0],[-18,0],[-112,0],[-273,0],[-30,0],[-164,0],[-178,0],[-141,0],[-95,1],[-596,7],[-1,0],[-37,0],[-47,1],[-16,1],[-28,-1],[-48,0],[-258,1],[-31,-1],[-31,2],[-72,1],[-506,-3],[-11,0],[-8,0],[-3,267],[-3,184],[0,150],[-8,270],[-3,427],[-3,294],[-3,167],[0,43],[-9,133],[-13,135],[6,171],[6,248],[1,32],[7,155],[-2,141],[-5,115],[5,267],[1,37],[1,57],[4,136],[-5,240],[0,6],[2,216],[5,696],[3,78],[-7,323],[1,154],[-2,287],[0,22],[-4,215],[1,54],[3,130],[4,160],[-1,32],[-1,256],[-1,101],[-2,188],[0,25],[0,290],[0,32],[-1,136],[0,33],[1,87],[-2,208],[2,31],[0,57],[1,218],[1,67],[0,285],[0,83],[0,208],[-7,132],[-3,58],[-4,77],[-1,229],[-1,61],[0,202],[0,88],[-2,201],[0,26],[0,12],[0,52],[0,115],[0,174],[-1,51],[1,159],[-1,51],[0,133],[0,131],[0,30],[-2,276],[-1,25],[-1,121],[-2,220],[0,134],[1,177],[0,7],[0,174],[0,218],[0,65],[0,93],[8,202],[2,38]],[[52678,72],[-38,0],[-68,0],[-53,0],[-19,0],[-156,1],[-309,0],[-23,0],[-111,0],[-54,0],[-289,0],[-128,0],[-424,1],[-27,0],[-5,0],[-50,-1],[-103,2],[-643,1],[-687,-1],[-12,0],[-278,0],[-98,0],[-369,0],[-116,0],[-189,-5],[-188,0],[-98,0],[-770,-1],[-108,0],[-164,0],[-1166,-2],[-476,-1],[-1725,0],[-90,-1],[-1,0],[-202,0],[-2494,-4],[-581,3],[-61,0],[-1430,0],[-275,0],[-147,3],[-911,-2],[-148,-1],[-678,0],[-319,0],[-90,0],[-34,0],[-1,0],[-204,0],[-111,0],[-132,-1],[-2,0],[-1203,0],[-313,0],[-82,0],[-93,-1],[-190,0],[-117,0],[-223,2],[-79,-2],[-51,0],[-77,0],[-51,0],[-239,0],[-1671,-1],[-52,0],[-58,0],[-140,0],[-213,0],[-564,-1],[-15,0],[-96,-3],[-79,-2],[-35,0],[-2,0],[-94,2],[-56,0],[-221,-1],[-1014,1],[-122,0],[-197,-3],[-116,0],[-67,0],[-31,0],[-1760,0],[-521,-2],[-376,0],[-782,0],[-298,0],[-114,0],[-639,0],[-284,1],[-171,-2],[-300,-1]]],"transform":{"scale":[0.000050119891438913964,0.00005003711500114902],"translate":[-114.05298629899988,36.99789925500016]}} diff --git a/src/js/config/mapconfig/mapfiles/county/va-counties.json b/src/js/config/mapconfig/mapfiles/county/va-counties.json new file mode 100644 index 00000000..c1f2939c --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/va-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-83.67494333699983,36.540748535000034,-75.24196685499993,39.46600416300015],"geometries":[{"type":"Polygon","properties":{"name":"VA"},"id":"51069","arcs":[[0,1,2,3],[4]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51107","arcs":[[5,6,7,8,9]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51043","arcs":[[-9,10,11,-1,12]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51840","arcs":[[-5]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51171","arcs":[[13,14,15,16,-3]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51059","arcs":[[[17,18,19,20,21,22,-6,23],[24]],[[25]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51187","arcs":[[26,27,28,-14,-2,-12]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51061","arcs":[[29,30,31,32,-27,-11,-8]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51153","arcs":[[-23,33,34,-30,-7],[35,36]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51013","arcs":[[37,-20,38,-18,39]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51610","arcs":[[-19,-39]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51600","arcs":[[-25],[-26]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51157","arcs":[[40,41,42,-28,-33]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51165","arcs":[[-16,43,44,45,46,47],[48]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51510","arcs":[[49,-21,-38]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51139","arcs":[[-43,50,51,-44,-15,-29]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51685","arcs":[[52,-36]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51683","arcs":[[-53,-37]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51047","arcs":[[53,54,55,56,-41,-32]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51113","arcs":[[-57,57,58,-51,-42]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51091","arcs":[[59,60,61]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51179","arcs":[[62,63,64,65,66,67,-54,-31,-35]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51660","arcs":[[-49]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51079","arcs":[[68,69,-45,-52,-59]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51015","arcs":[[70,71,72,73,-60,74,-47],[75],[76]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51099","arcs":[[77,78,79,80,-64,81]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51137","arcs":[[82,83,84,-69,-58,-56]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51177","arcs":[[-68,85,-66,86,87,88,-83,-55]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51630","arcs":[[-86,-67]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51003","arcs":[[-85,89,90,91,92,-71,-46,-70],[93]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51193","arcs":[[[94]],[[95,96,97,-78,98]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51017","arcs":[[-61,-74,99,100,101]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51033","arcs":[[-81,102,103,104,105,-87,-65]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51790","arcs":[[-76]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51057","arcs":[[106,107,-103,-80,108]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51109","arcs":[[-89,109,110,111,-90,-84]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51159","arcs":[[112,113,114,-97]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51820","arcs":[[-77]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51163","arcs":[[115,116,117,118,-100,-73,119],[120],[121]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51540","arcs":[[-94]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51125","arcs":[[122,123,124,-120,-72,-93]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51001","arcs":[[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147,148,149,150]],[[151]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51133","arcs":[[152,-113,-96,153]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51085","arcs":[[-106,154,155,156,157,-110,-88]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51065","arcs":[[158,159,-91,-112,160]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51097","arcs":[[-108,161,162,163,164,-104]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51005","arcs":[[-119,165,166,167,-101],[168]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51101","arcs":[[-165,169,170,-155,-105]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51075","arcs":[[171,172,173,-161,-111,-158]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51103","arcs":[[[174]],[[175,-114,-153,176]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51580","arcs":[[-169]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51009","arcs":[[177,178,179,180,-116,-125]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51023","arcs":[[181,182,183,-166,-118]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51678","arcs":[[-121]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51029","arcs":[[184,185,186,-123,-92,-160]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51119","arcs":[[[187]],[[188,-162,-107,189]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51530","arcs":[[-122]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51049","arcs":[[-174,190,191,192,-185,-159]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51087","arcs":[[193,194,195,196,197,198,-172,-157]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51145","arcs":[[199,200,-191,-173]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51045","arcs":[[201,202,203,204,-167,-184]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51127","arcs":[[205,206,207,-194,-156,-171]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51019","arcs":[[208,209,210,211,212,-182,-117,-181],[213]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51760","arcs":[[214,-198]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51073","arcs":[[[215]],[[216,217,218,-163,-189]]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51041","arcs":[[[219]],[[-215,-197,220,221,222,223,224,225,226,227,-200,-199]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51011","arcs":[[228,229,230,-178,-124,-187]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51131","arcs":[[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259,-149]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51027","arcs":[[260,261,262,263]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51115","arcs":[[[264]],[[-218,265]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51007","arcs":[[-228,266,267,268,-192,-201]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51036","arcs":[[269,270,-195,-208]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51071","arcs":[[-204,271,272,273,274]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51680","arcs":[[-180,275,-209]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51095","arcs":[[[276]],[[277,278,279,280,-270,-207,281,282,283]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51031","arcs":[[-231,284,285,286,-210,-276,-179]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51161","arcs":[[-213,287,288,289,-202,-183],[290,291]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51147","arcs":[[-193,-269,292,293,294,-229,-186]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51199","arcs":[[[295]],[[296,297,298,299,-279,300,-283]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51121","arcs":[[301,302,303,304,-272,-203,-290]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51515","arcs":[[-214]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51770","arcs":[[305,-292]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51185","arcs":[[306,307,308,-261,309]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51775","arcs":[[-306,-291]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51670","arcs":[[310,-222,311]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51149","arcs":[[312,313,314,315,316,-223,-311]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51830","arcs":[[317,-284,-301,-278]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51051","arcs":[[318,319,320,-263]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51021","arcs":[[321,322,323,-307,324,-274]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51570","arcs":[[325,-225]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51135","arcs":[[326,327,-293,-268,328]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51053","arcs":[[329,-316,330,331,332,-329,-267,-227]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51037","arcs":[[333,334,335,-285,-230,-295]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51155","arcs":[[336,-303,337,338,339,-322,-273,-305]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51730","arcs":[[-330,-226,-326,-224,-317]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51181","arcs":[[340,341,342,-314,343]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51067","arcs":[[344,345,346,347,-288,-212]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51700","arcs":[[348,349,-280,-300]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51195","arcs":[[350,351,352,353,-320],[354]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51735","arcs":[[[355]],[[356,357,-298,358]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51750","arcs":[[-337,-304]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51093","arcs":[[359,360,361,362,-341,363]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51167","arcs":[[364,365,366,-351,-319,-262,-309]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51143","arcs":[[367,368,369,370,371,-345,-211,-287]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51063","arcs":[[-348,372,373,-338,-302,-289]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51111","arcs":[[-328,374,375,-334,-294]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51650","arcs":[[-349,-299,-358,376]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51183","arcs":[[377,378,-331,-315,-343]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51197","arcs":[[379,380,381,-323,-340]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51083","arcs":[[-336,382,383,-368,-286]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51025","arcs":[[-333,384,385,386,-375,-327]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51173","arcs":[[-324,-382,387,388,-365,-308]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51175","arcs":[[389,-361,390,391,392,-378,-342,-363]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51710","arcs":[[[393,394,395]],[[396,397]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51720","arcs":[[-355]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51810","arcs":[[[398]],[[399]],[[400]],[[401]],[[402]],[[403,404,-397,405]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51035","arcs":[[406,407,408,409,410,-380,-339,-374]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51191","arcs":[[411,412,413,414,-366,-389,415,416,417]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51740","arcs":[[[-395,418,419]],[[420,421,422]]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51800","arcs":[[-422,423,424,-391,-360,425]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51081","arcs":[[-379,-393,426,-385,-332],[427]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51105","arcs":[[428,429,-353]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51117","arcs":[[-387,430,-383,-335,-376]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51169","arcs":[[-367,-415,431,-429,-352]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51141","arcs":[[432,433,-407,-373,-347]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51550","arcs":[[434,-419,-394,435,-404,436,-424,-421]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51089","arcs":[[437,-433,-346,-372],[438]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51077","arcs":[[-411,439,-409,440,-416,-388,-381]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51595","arcs":[[-428]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51690","arcs":[[-439]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51620","arcs":[[-390,-362]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51640","arcs":[[-440,-410]]},{"type":"Polygon","properties":{"name":"VA"},"id":"51590","arcs":[[441,-370]]},{"type":"MultiPolygon","properties":{"name":"VA"},"id":"51520","arcs":[[[-412]],[[-418,442,-413]]]}]},"states":{"type":"GeometryCollection","bbox":[-83.67494333699989,36.540748535000034,-75.24196685499993,39.46600416300015],"geometries":[{"type":"MultiPolygon","properties":{"name":"Virginia"},"id":"51","arcs":[[[398]],[[399]],[[400]],[[401]],[[402]],[[231]],[[232]],[[233]],[[234]],[[355]],[[235]],[[236]],[[237]],[[238]],[[239]],[[295]],[[240]],[[241]],[[215]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[219]],[[254]],[[255]],[[256]],[[257]],[[258]],[[125]],[[126]],[[264]],[[127]],[[187]],[[128]],[[174]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147,259,149,150]],[[151]],[[94]],[[175,114,97,78,108,189,216,265,218,163,169,205,281,296,358,356,376,349,280,270,195,220,311,312,343,363,425,422,434,419,395,435,404,397,405,436,424,391,426,385,430,383,368,441,370,437,433,407,440,416,442,413,431,429,353,320,263,309,324,274,204,167,101,61,74,47,16,3,12,9,23,39,49,21,33,62,81,98,153,176]]]}]}},"arcs":[[[66902,93112],[-14,-69],[-7,-11],[-25,-53],[-4,-11],[-8,-51],[1,-20],[5,-22],[-1,-34],[-8,-121],[-6,-57],[-12,-108],[-1,-10],[-7,-80],[-4,-51],[-22,-33],[-11,-13],[-9,-12],[-5,-8],[-5,-13],[-1,-3],[0,-14],[0,-2],[2,-11],[10,-25],[5,-17],[1,-38],[-8,-49],[-11,-24],[-8,-19],[-5,-5],[-15,-28],[-8,-14],[-3,-6],[-3,-30],[-1,-13],[-4,-51],[-3,-31],[-6,-76],[-13,-10],[-1,-1],[-17,-14],[-18,10],[-18,-3],[-12,-6],[-17,-28],[-4,-13],[-12,-43],[-12,-42],[0,-2],[-2,-11],[2,-10],[8,-58],[6,-62],[2,-42],[-2,-16],[-2,-8],[-13,-15],[-42,-34],[-3,-6],[-3,-10],[0,-28],[1,-15],[1,-4],[1,-3],[20,-59],[3,-9],[6,-7],[2,-2],[2,-6],[0,-18],[-4,-54],[-3,-10],[-6,-1],[-51,43],[-4,5],[-15,5],[-10,0],[-3,-4],[-1,-5],[-1,-4],[-1,-23],[8,-39],[1,-1],[13,-44],[3,-10],[5,-23],[3,-14],[0,-11],[-9,-41],[-3,-6],[-11,-1],[-20,13],[-17,5],[-16,2],[-3,-1],[-6,-13],[-1,-2],[0,-12],[1,-8],[17,-50],[1,-1],[24,-49],[8,-19],[3,-17],[1,-13],[0,-4],[0,-6],[0,-3],[0,-27],[-2,-8],[-6,-7],[-9,1],[-32,23],[-8,0],[-3,-3],[-4,-11],[-4,-14],[0,-1],[-1,-23],[3,-11],[4,-13],[43,-105],[5,-10],[-22,-14],[-33,-91],[-1,-3],[-1,-40],[-1,-52],[16,-206],[28,-31],[-8,-88],[-9,-89],[-15,16],[-2,-2],[-31,-37],[-6,-8],[-10,-6],[-8,-12],[-6,-13],[-6,-23],[-8,-34],[-3,-12],[2,-30],[5,-42],[4,-13],[16,-48],[6,-21],[0,-5],[1,-7],[-3,-10],[-7,-17],[-20,-8],[-21,9],[-4,-2],[-10,-11],[-15,-20],[-9,-19],[-5,-14],[-2,-11],[-1,-11],[2,-18],[7,-52],[1,-2],[1,-2],[26,-30],[5,-4],[5,-8],[4,-4],[9,-28],[1,-21],[-5,-12],[-7,-1],[-27,5],[-9,7],[-3,6],[-4,7],[-1,0],[-2,0],[-13,-20],[-4,-11],[-8,-54],[0,-13],[0,-3],[9,-17],[4,-8],[14,-44],[11,-33],[2,-8],[1,-3],[0,-16],[-1,-7],[-42,-122],[-21,-46],[11,-86],[1,-24],[-5,-22],[-18,-45],[-4,-6],[-20,-8],[-8,-11],[-4,-9],[-3,-17],[-1,-17],[1,-4],[1,-12],[7,-96],[0,-105],[0,-18],[-5,-56],[-1,-5],[-5,-11],[-57,-123],[-9,-31],[-9,-28],[-4,-16],[-10,-70],[0,-1],[-37,-79],[-2,-4],[-9,0],[-4,-4],[-7,-12],[-2,-8],[-6,-21],[0,-12],[0,-6],[0,-6],[2,-15],[4,-18],[9,-19],[12,-13],[5,-6],[8,-9],[2,-1],[7,-13],[1,-5],[1,-19],[23,-288],[0,-21],[-1,-12],[-74,-285],[-22,-86],[-22,-87],[-5,-10],[-7,-10],[-9,-3],[-3,1],[-22,13],[-12,40],[-13,4],[-13,-7],[-9,-22],[-12,-25],[-8,-29],[-12,-13],[-13,-7],[-9,-25],[-12,-22],[-7,-29],[-9,-27],[-8,-40],[-5,-34],[-5,-37],[-10,-27],[-1,-38],[-3,-39],[-11,-36],[-9,-26],[-3,-40],[-9,-26],[-9,-21],[-12,-20],[-10,-23],[-10,-23],[-13,0],[-7,-42],[-5,-36],[-6,-47],[-8,-59],[-5,-38],[-12,-90],[-4,-31],[-1,-7],[-6,-48],[-5,-32],[-2,-21],[-4,-27],[-13,-97],[-4,-32],[-6,-39],[-16,-119],[-5,-39],[-9,-68],[-5,-35],[-7,-52],[-6,-40],[-9,-70],[-5,-36],[-5,-35],[-6,-45],[-8,-59],[-5,-38],[-6,-30]],[[65492,85309],[-11,-51],[-5,-32],[1,-20],[1,-19],[-5,-36],[-14,-36],[-9,-23],[-6,-16],[-10,-25],[-8,-26],[-10,-37],[-41,-149],[-7,-29],[-5,-35],[-3,-41],[-16,-55],[-40,-6],[-21,-3],[-14,-2],[-137,-24],[-49,-9],[-66,-13],[-100,-21],[-45,-9],[-60,-13],[-50,-10],[-42,-8],[-29,-6],[-18,-4],[-16,-3],[-75,-15],[-27,-6],[-100,-20],[-28,-5],[-92,-19],[-29,-6],[-27,-5],[-17,-3],[-38,-8],[-20,-4],[-25,-5],[-55,-11],[-36,-7],[-34,-7],[-15,-3],[-13,-2],[-17,-4],[-18,-3],[-37,-6],[-57,-11],[-18,-4],[-20,-4],[-18,-3],[-18,-4],[-19,-4],[-13,-3],[-14,-3],[-5,-1],[-17,-3],[-12,-2],[-34,-5],[-18,-4],[-60,-12],[-17,-3],[-2,0],[-13,-3],[-12,-2],[-21,0]],[[63566,84338],[12,20],[11,48],[-10,1],[-7,1],[-13,21],[-13,70],[-3,13],[-6,7],[-8,10],[-16,46],[7,40],[4,41],[-1,8],[-4,25],[-15,25],[6,31],[12,18],[15,-8],[14,3],[14,15],[9,26],[-8,16],[-3,5],[-13,12],[7,27],[11,44],[1,5],[-3,41],[-11,39],[-10,27],[-18,35],[-29,46],[-10,19],[2,41],[13,23],[14,-23],[13,-28],[15,0],[13,24],[17,24],[23,15],[15,13],[8,38],[-24,23],[-17,16],[-36,14],[-22,3],[-11,15],[0,4],[-4,29],[-5,59],[-6,50],[-1,7],[-1,4],[-10,32],[-2,5],[-9,20],[-16,38],[-10,17],[-16,27],[-9,-29],[-6,-37],[-20,-52],[-4,-9],[-6,-2],[-9,-3],[-8,-4],[-4,5],[-2,2],[-9,10],[0,10],[-1,11],[-2,17],[2,21],[0,4],[6,71],[6,31],[1,6],[6,32],[3,46],[4,33],[-7,29],[-19,-1],[-1,-15],[0,-30],[-6,-40],[-12,-6],[-8,28],[-8,37],[-5,31],[0,1],[-13,25],[-10,25],[-13,28],[-13,24],[-8,10],[-6,7],[-4,13],[-17,51],[-4,10],[-1,51],[-10,30],[-6,5],[-11,11],[-12,5],[-7,32],[7,37],[2,9],[13,5],[22,-14],[11,-15],[20,-20],[6,-6],[2,0],[25,-11],[23,9],[1,0],[0,1],[8,27],[2,4],[-10,23],[-13,13],[-18,19],[-11,14],[-15,15],[-2,1],[0,4],[-2,42],[0,20],[-1,20],[-5,35],[3,47],[-2,39],[13,21],[16,-11],[4,-6],[11,-19],[13,-5],[8,3],[10,3],[22,37],[-10,25],[-13,51],[-2,6],[-1,37],[-1,5],[13,1],[7,-1],[9,-1],[4,4],[13,14],[16,2],[10,-11],[1,-1],[4,3],[21,14],[15,10],[19,27],[-5,44],[-9,27],[-1,2],[-10,27],[-6,10],[-11,19],[-14,49],[-8,18],[-7,14],[-5,4],[-12,7],[-12,28],[-6,7],[-8,12],[-14,6],[-14,19],[-2,3],[5,41],[24,44],[16,23],[14,1],[10,25],[9,19],[7,15],[4,46],[-11,43],[-3,-1],[-6,-2],[-7,-2],[-8,-20],[-1,-2],[-1,-1],[-19,-7],[-10,24],[-1,7],[-5,25],[-4,40],[4,36],[6,47],[5,45],[4,54],[-8,31],[-9,39],[-1,5],[-7,14],[-3,8],[-2,3],[-2,0],[-21,8],[-8,14],[-3,4],[-14,3],[-8,-11],[-3,-4],[-6,0],[-7,-1],[1,-9],[1,-18],[1,-19],[8,-48],[-4,-50],[-7,-33],[-4,-38],[-14,-5],[-16,22],[0,1],[-14,19],[-14,15],[-2,4],[-13,18],[-17,3],[-30,-4],[-6,-2],[-14,-5],[-16,-11],[-10,-16],[-6,-10],[-7,-13],[-18,-27],[-23,21],[-8,18],[-5,11],[-6,-9],[-7,-12],[-5,-5],[-13,-14],[-37,-41],[-23,-39],[-16,-19],[-29,-15],[-12,-13],[-16,-10],[-17,9],[-8,26],[-15,18],[-13,-5],[-16,14],[-6,5],[-3,47],[-7,32],[-19,40],[-8,18],[-3,8],[-3,4],[-13,24],[-5,14],[-14,37],[-16,20],[-9,12],[-4,4],[-7,9],[-16,-12],[0,-6],[3,-30],[1,-4],[9,-28],[12,-61],[9,-48],[0,-1],[-1,-26],[0,-13],[-4,-34],[0,-1],[-9,-40],[-14,-16],[0,-1],[-15,13],[-7,16],[-3,6],[-7,11],[-4,5],[-21,43],[0,1],[-19,-1],[-3,0],[-4,-6],[-14,-18],[-10,-1],[-2,0],[-12,-11],[-2,-1],[-10,-9],[-22,-29],[-26,-49],[-5,-8],[-2,-5],[-12,-32],[-6,-34],[-17,-49],[-10,-22],[-10,-24],[-9,-44],[-18,-7],[-13,27],[-16,10],[-18,-23],[-1,-36],[11,-31],[-7,-33],[-16,-33],[-14,-10],[-9,22],[-16,4],[-12,-9],[-1,-1],[-6,-37],[-2,-39],[3,-16],[6,-23],[-4,-33],[-10,-38],[-13,-25],[-11,-18],[-7,-14],[-3,-7],[-9,-29],[-2,-3],[-6,-8],[-6,-10],[-12,-31],[-6,-31],[8,-27],[11,-25],[-1,-43],[1,-43],[-5,-39],[-12,-11],[-11,-2],[-3,0],[-18,-6],[-16,-13],[-5,-7],[-8,-13],[-1,-2],[-1,-1],[-11,-25],[-12,-14],[-4,-4],[-12,-9],[-4,-33],[-6,-32],[3,-18],[1,-5],[3,-11],[5,-41],[-12,-9],[-12,-21],[-12,-36],[-12,-8],[-14,-8],[-13,-6],[-13,-1],[-3,-34],[-2,-53],[7,-41],[11,-8],[0,-1],[1,0],[1,0],[12,4],[2,-3],[7,-12],[2,-2],[11,-25],[0,-10],[0,-25],[-5,-43],[1,-36],[-9,-24],[-17,-43],[-10,-24],[-12,-20],[-8,-27],[-11,-18],[-12,-22],[4,-36],[8,-22],[1,-4],[3,-30],[1,-10],[3,-33],[5,-8],[6,-10],[1,-4],[5,-26],[3,-36],[3,-27],[0,-10],[-2,-2],[-9,-12],[-22,-5],[-12,-15],[-5,-34],[-2,-21],[-1,-13],[-10,-3],[-4,-1],[-10,-20],[-1,0],[-8,-15],[-2,-4],[2,-4],[1,-5],[8,-21],[-1,-36],[-4,-33],[-62,61],[-46,45],[-34,26],[-132,122],[-65,58],[-51,45],[-34,30],[-24,22],[-38,32],[-52,52],[-296,286],[-58,53],[-26,26],[-146,131]],[[60842,86005],[46,136],[61,78],[26,87],[45,72],[57,74],[32,127],[41,92],[21,92],[10,119],[25,59],[32,40],[5,20],[26,97],[57,149],[54,130],[33,75],[26,89],[182,282],[22,-41],[40,-17],[43,105],[68,71],[53,34],[236,611],[20,157],[13,169],[111,377],[158,195],[51,128],[71,181],[-25,60],[-40,89],[-47,62],[-15,92],[-49,36],[-37,83],[-45,99],[-18,98],[-3,110],[35,115],[-21,68],[-31,-51],[-31,124],[-30,13],[-45,12],[13,103],[221,598],[141,456],[2,88],[7,23],[12,45],[-9,75],[9,123],[54,91],[-63,156],[-79,188],[-36,62],[-25,-8],[-28,52],[25,131],[143,430],[37,113],[-12,64],[43,99],[14,-30],[25,55],[37,61],[7,24],[41,131],[19,118],[25,125],[72,155],[50,169],[61,125],[33,72],[31,147],[-2,109],[52,-11],[42,193],[35,181],[40,175],[38,138],[10,124],[-8,84],[50,86],[21,-25],[22,131],[-7,32],[-7,84],[-1,11],[-74,32],[-51,22],[-100,73],[-91,68],[75,202],[33,109],[28,89],[39,140],[12,88],[11,50],[25,76],[57,255],[-17,10],[-14,41],[-64,37],[15,50],[8,127],[-21,76],[-92,234],[-8,214],[36,121],[-7,41],[56,108],[36,127],[27,117],[-11,135],[-40,127],[-12,104],[54,101],[17,119],[-12,123],[4,88],[14,111],[0,83],[5,136],[-44,64],[24,145],[465,-847],[60,-108],[373,-680],[505,-921],[264,-526],[1,-3],[418,-775],[551,-1022],[511,-943],[32,-58],[52,-98],[492,-906]],[[64981,90733],[-9,-40],[-6,-36],[-6,-37],[-5,-31],[-5,-40],[14,-1],[22,-1],[-26,-119],[-27,-117],[-18,-75],[8,-27],[16,-24],[25,-35],[15,-25],[5,-9],[43,-43],[11,-11],[13,-13],[-1,-5],[-47,-271],[-9,-45],[-2,-35],[0,-48],[-16,-277],[-51,-73],[9,-46],[6,-36],[5,-32],[1,-34],[-3,-42],[2,-34],[7,-62],[-1,-40],[11,-28],[12,-9],[11,-22],[19,-28],[16,-10],[17,7],[46,-57],[1,-2],[9,-18],[21,-26],[13,-40],[-1,-95],[-10,-63],[10,-43],[11,25],[23,69],[48,162],[35,110],[25,77],[11,49],[8,54],[24,128],[6,34],[18,92],[13,66],[8,33],[23,59],[13,32],[12,25],[14,34],[9,22],[5,14],[18,65],[0,1],[11,50],[7,45],[11,65],[9,55],[6,30],[12,48],[10,30],[12,29],[16,33],[22,46],[35,76],[14,28],[10,21],[12,34],[12,41],[6,12],[20,39],[-6,10],[-7,11],[-15,29],[-16,23],[-24,41],[-33,53],[-29,50],[-39,66],[-11,17],[-16,28],[-15,26],[-15,24],[-4,7],[-7,12],[-12,22],[20,93],[11,56],[-6,7],[-42,47],[-12,13],[-26,-61],[-10,-25],[-6,-31],[-2,-18],[-6,3],[-1,1],[-121,90],[-27,12],[-34,26],[-16,10],[-14,11],[-67,46],[-8,-29],[-8,-35],[-10,-37],[-9,-37],[-8,-34],[-12,-49],[-10,-34],[-12,-47],[-9,-32]],[[75284,86017],[-28,-49],[-13,-22],[-11,-21],[-13,-23],[-19,-33],[-11,-19],[-10,-30],[-9,-26],[-13,-37],[-11,-34],[-16,-46],[-9,-25],[-9,-27],[-12,-36],[-42,-122],[-33,-96],[-11,-33],[-9,-29],[-10,-25],[-15,-43],[-21,-62],[-12,-35],[-19,-53],[-10,-29],[-9,-27],[-9,-26],[-9,-25],[-11,-29],[-10,-25],[-10,-30],[-9,-26],[-17,-52],[-11,-34],[-10,-28],[-7,-30],[-18,-57],[-10,-32],[-3,-10],[-10,-43],[-10,-29],[-3,-10],[-24,-70],[-31,-74],[-15,-42],[-16,-50],[-14,-40],[-10,-28],[-41,-121],[-21,-63],[-15,-46],[-22,-62],[-28,-82],[-22,-58],[-8,-26],[-9,-24],[-23,-66],[-9,-26],[-17,-51],[-28,-81],[-16,-48],[-9,-27],[-67,-193],[-20,-60],[-14,-39],[-10,-29],[-15,-44],[-10,-29],[-14,-43],[-14,-44],[-20,-61],[-22,-60],[-19,-51],[-8,-25],[-2,-6],[-11,-34],[-24,-67],[-8,-25],[-21,-59],[-11,-34],[-6,-15],[-3,-10],[-21,-62],[-10,-30],[-7,-21],[-3,-10],[-22,-64],[-9,-27],[-26,-72],[-9,-27],[-8,-25],[-10,-29],[-12,-37],[-45,-137],[-8,-26],[-11,-31],[-14,-41],[-27,-80],[-10,-29],[-12,-34],[-12,-35],[-10,-26],[-34,-96],[-10,-25],[-10,-30],[-12,-33],[-20,-55],[-10,-29],[-12,-35],[-13,-40],[-19,-53],[-10,-27],[-10,-31],[-27,-72],[-31,-98],[-11,-33],[-2,-7],[-25,-74],[-17,-51],[-24,-75],[-27,-79],[-42,-114],[-85,-254],[-43,-128],[-15,-42],[-62,-183],[-11,-35],[-15,-38],[-21,-62],[-33,-98],[-12,-34],[-28,-76],[-31,-89],[-12,-39],[-20,-64],[-9,-30],[-11,-31],[-25,-73],[-130,-387],[-42,-125]],[[72798,78848],[-18,16],[-13,-2],[-13,11],[-10,19],[-15,13],[-14,24],[-14,19],[-12,-2],[-10,-25],[-9,-23],[-11,-18],[12,-8],[13,-26],[-8,-26],[-12,-8],[-10,24],[-12,-12],[-7,30],[-11,46],[7,29],[11,32],[12,53],[8,35],[-7,34],[-15,20],[-12,16],[-19,22],[-9,23],[6,30],[5,35],[6,34],[11,26],[11,30],[6,31],[6,34],[-20,31],[-11,16],[-12,0],[-12,4],[6,35],[13,29],[11,22],[8,39],[-7,28],[-5,38],[-5,36],[1,37],[4,42],[-7,40],[-7,31],[7,29],[7,29],[10,25],[1,34],[-7,49],[-7,29],[-7,35],[-5,45],[0,42],[-10,30],[-4,45],[-13,15],[-12,13],[-9,28],[-14,-2],[-11,-20],[-18,-19],[-11,-22],[-11,14],[-13,-16],[-12,-13],[-12,12],[-12,8],[-10,20],[-12,-7],[-12,16],[-6,33],[-9,24],[-11,14],[-22,23],[-10,18],[-16,-13],[-11,-10],[-12,8],[-15,21],[-12,11],[-12,-14],[-14,-4],[-12,31],[-10,31],[-12,14],[-9,24],[-8,32],[-11,16],[-11,17],[-14,16],[-13,2],[-13,4],[-12,10],[1,38],[0,48],[-12,27],[-12,20],[-13,8],[-12,9],[-10,20],[-9,27],[-7,29],[-9,24],[-7,27],[-6,30],[-10,24],[-6,32],[-7,34],[-7,31],[-8,32],[-8,31],[-16,16],[-14,7],[-14,4],[-8,28],[-12,23],[-4,34],[-9,26],[-1,40],[-9,23],[-7,28],[0,39],[-1,39],[-1,38],[-8,28],[-6,31],[2,41],[-10,19],[-10,22],[-13,23],[-5,42],[-12,11],[-3,39],[-2,35],[-6,36],[-12,21],[-12,-1],[-11,-16],[-13,3],[-12,0],[-13,5],[-11,22],[-1,3],[-9,21],[-8,26],[-13,3],[-12,10],[-13,9],[-9,21],[-12,13],[-8,27],[-8,28],[-9,26],[-11,18],[-5,33],[-10,24],[-7,28],[-8,27],[-10,22],[-12,8],[-13,5],[-12,4],[-10,19],[-14,-1],[-12,-6],[-11,-12],[-10,-21],[-13,-4],[-12,11],[-11,16],[-12,15],[-12,2],[-12,1],[-12,-16],[-26,12]],[[71384,82108],[-30,20],[-30,21],[-30,20],[-20,14],[-29,20],[-44,29],[-15,10],[-19,12],[-88,60],[-32,22],[-22,14],[-21,14],[-111,75],[-14,9],[-14,10],[-16,11],[-31,21],[-69,46],[-54,36],[-4,3],[-30,20],[-34,23],[-12,8],[-38,26],[-24,16],[-12,9],[-25,16],[-16,12],[-24,16],[-14,9],[-12,9],[-22,14],[-14,9],[-17,11],[-21,14],[-29,21],[-35,21],[-11,7],[-39,19],[-25,17],[-23,17],[-26,17],[-36,23],[-13,9],[-65,45],[-27,18],[-13,8],[-27,17],[-20,13],[-14,11],[-17,11],[-24,16],[-18,11],[-17,11],[-17,11],[-18,12],[-11,8],[-36,23],[-15,10],[-27,18],[-7,4],[-12,8],[-23,15],[-33,23],[-12,7],[-13,9],[-29,19],[-19,14],[-44,29],[-12,9],[-48,33],[-17,11],[-17,11],[-15,9],[-17,10],[-32,22],[0,1],[-21,14],[-67,43],[-12,7],[0,1],[-24,17],[-24,16],[-18,12],[-29,20],[-14,9],[-36,25],[-23,15],[-29,19],[-23,16],[-15,10],[-12,8],[-6,4],[-14,10],[-58,39],[-21,15],[-58,38],[-41,28],[-58,39],[-37,25],[-12,10],[-32,19],[-12,8],[-21,15],[-30,21],[-29,19],[-20,13],[-22,14],[-26,18],[-18,12],[-33,21],[-14,9],[-20,13],[-13,8],[-42,27],[-12,9],[-24,17],[-78,55],[-15,10],[-25,16],[-15,12],[-48,30],[-19,12],[-12,9],[-17,11],[-31,19],[-13,10],[-21,15],[-57,37],[-13,11],[-22,13],[-13,8],[-13,7],[-25,17],[-13,9],[-16,10],[-32,22],[-15,10],[-12,8],[-13,9],[-14,9],[-12,8],[-44,31],[-30,20],[-22,9]],[[67743,84535],[14,45],[39,12],[13,71],[5,44],[6,51],[13,19],[14,4],[13,2],[14,16],[14,13],[15,9],[18,15],[11,8],[13,5],[14,12],[12,12],[18,6],[15,-8],[21,-5],[13,-21],[11,62],[4,42],[12,82],[11,30],[13,13],[19,24],[14,9],[13,27],[11,26],[8,29],[-13,10],[3,36],[12,23],[10,24],[16,12],[11,13],[13,21],[15,14],[20,21],[15,20],[11,11],[11,19],[23,34],[17,34],[12,6],[13,28],[14,43],[14,16],[14,21],[9,32],[2,44],[4,33],[19,17],[16,6],[11,23],[11,23],[19,27],[8,26],[4,35],[5,32],[17,28],[16,-8],[18,-4],[12,33],[14,48],[9,25],[8,43],[0,41],[15,76],[1,45],[6,30],[7,41],[16,36],[7,41],[10,41],[17,59],[7,29],[9,35],[7,29],[13,42],[12,35],[10,31],[19,61],[9,27],[13,20],[15,19],[15,7],[13,6],[13,-3],[12,1],[16,1],[14,-3],[16,11],[38,11],[11,21],[3,38],[2,39],[10,25],[14,34],[14,51],[3,53],[1,36],[5,39],[11,44],[11,38],[7,37],[8,38],[4,36],[0,37],[1,38],[8,38],[-1,35],[5,55],[7,34],[7,40],[12,50],[9,50],[7,39],[7,33],[8,53],[9,46],[5,34],[7,37],[7,35],[1,3],[6,31],[7,30],[13,21],[9,22],[19,44],[14,31],[9,21],[14,53],[9,35],[8,26],[20,49],[13,23],[17,29],[11,27],[16,47],[10,30],[17,60]],[[69332,88592],[10,103],[56,137],[-5,209],[20,185],[27,124],[37,222],[51,196],[77,256],[46,392],[39,244],[-6,231],[38,173],[19,188],[68,243],[15,126],[59,231],[43,55],[46,157],[37,190],[45,339],[-39,40],[2,178],[28,65],[62,54],[3,34],[9,96],[27,70],[18,-10],[-5,206],[32,129],[31,94],[0,153],[22,172],[31,201],[78,301],[63,283],[54,147],[88,115],[70,100],[5,7],[10,15],[76,2],[14,-2],[60,-9],[93,-73],[60,-5],[47,40],[37,68],[31,58],[64,42],[57,-79],[102,-212],[74,-67],[96,-126],[80,-58],[62,-14],[69,-15],[1,-1],[41,-64],[114,-92],[85,-29],[71,26],[103,-56],[99,8],[63,49],[87,68],[112,11],[49,-165],[0,-138],[-12,-70],[12,-58],[0,-155],[44,-169],[52,-96],[14,-59],[30,-128],[42,-116],[23,-64],[33,-139],[95,-123],[54,-46],[88,-74],[135,-195],[143,-76],[63,-33],[88,-132],[28,-66],[36,-86],[20,-47],[43,-101],[175,-308],[29,-159],[-13,-111],[-62,-146],[-74,-142],[-48,-157],[-3,-64],[-12,-67],[-3,-111],[8,-81],[3,-26],[-8,-103],[-19,-97],[-51,-117],[-51,-60],[-171,-97],[-76,-53],[-50,-100],[-55,-211],[-46,-229],[-26,-165],[-26,-290],[-17,-140],[-28,-70],[3,-195],[5,-184],[16,-137],[4,-73],[23,-132],[27,-122],[29,-66],[48,-53],[24,-5],[48,-49],[49,-48],[72,-54],[37,-27],[40,-31],[70,-85],[58,-137],[37,-125],[8,-35],[17,-79],[20,-128],[30,-102],[21,-58],[1,0],[11,-24],[4,-36],[-8,-47],[0,-46],[40,-139],[25,-102],[15,-85],[15,-34],[74,-78],[45,-16],[40,-16],[29,-22],[40,3],[90,-42],[40,-28],[27,-35],[45,-30],[46,-31],[40,0],[33,-6],[44,-26],[42,-25],[50,-10],[50,7],[50,-28],[66,-43],[40,-17],[32,5],[28,12],[75,-30],[51,-5],[50,17],[103,18],[88,-8],[104,20],[25,-12],[48,-37],[11,-15],[9,-61],[42,-36],[41,-43]],[[67743,84535],[-3,-9],[-11,-38],[-9,-49],[-11,-55],[-12,-27],[-11,-21],[-34,-58],[-20,-19],[-14,-24],[-11,-37],[-15,-32],[-14,-16],[-20,9],[-19,-2],[-12,-2],[-11,-14],[-12,-11],[-35,-72],[-15,-29],[-13,-26],[-12,-12],[-14,-29],[-11,-36],[5,-37],[3,-49],[-16,-23],[-11,-27],[-11,-22],[-12,-32],[-7,-30],[-12,-46],[-10,-38],[-15,-39],[-14,-24],[-10,-17],[-2,-3],[-12,-9],[-9,-28],[-2,-59],[-8,-29],[-16,-47]],[[67245,83367],[-14,30],[-46,98],[-52,111],[-102,217],[-69,147],[-15,31],[-38,73],[-12,25],[-35,75],[-11,21],[-19,41],[-25,52],[-28,59],[-24,50],[-21,44],[-11,22],[-11,23],[-11,24],[-14,28],[-11,21],[-56,111],[-19,37],[-2,2],[-11,6],[-12,-5],[-29,-13],[-30,-13],[-32,-14],[-21,-10],[-13,-6],[-29,-13],[-22,-10],[-23,-11],[-22,-11],[-15,-6],[-14,-7],[-12,-9],[-13,-8],[-11,-8],[-39,-25],[-32,-13],[-29,-13],[-17,-7],[-36,-1],[-18,22],[-15,20],[-24,29],[-49,61],[-31,38],[-27,33],[-16,20],[-14,17],[-11,14],[-34,43],[-84,105],[-16,19],[-2,3],[-100,122],[-126,155],[-73,89],[-5,7]],[[66902,93112],[389,-722],[3,-6],[477,-884],[379,-705],[98,-182],[317,-588],[380,-704],[184,-342],[203,-387]],[[63566,84338],[-15,-25],[-11,-15],[-3,-4],[-17,-12],[-12,-6],[-11,-18],[-10,-31],[-7,-20],[-3,-11],[-7,-44],[-9,-29],[-9,-30],[-1,-6],[-11,-22],[-16,-5],[-14,13],[-1,1],[-3,2],[-12,22],[-17,13],[-17,2],[-17,-28],[-2,-35],[0,-5],[3,-9],[5,-16],[12,-35],[11,-28],[22,-49],[5,-36],[-13,-14],[-3,-24],[0,-9],[7,-30],[8,-25],[1,-2],[11,-23],[13,-6],[12,-13],[7,-14],[8,-16],[11,-20],[19,-54],[12,-17],[16,-23],[4,-6],[10,-24],[1,-3],[12,-64],[-17,-34],[-12,-30],[-2,-38],[8,-33],[0,-7],[0,-27],[-5,-21],[-1,-6],[-5,-20],[-10,-40],[-3,-34],[-12,-21],[-22,12],[-13,32],[-15,36],[-3,9],[-5,15],[-11,24],[-10,23],[-20,54],[-9,15],[-4,5],[-26,40],[-1,3],[-14,5],[-5,-2],[-5,-2],[-14,-6],[-22,-39],[-1,-44],[10,-32],[5,-16],[8,-20],[5,-13],[9,-56],[3,-8],[6,-23],[10,-25],[13,-34],[18,-46],[11,-28],[30,-77],[27,-69],[54,-138],[24,-64],[14,-35],[22,-57],[45,-114],[35,-91],[73,-186],[1,-4],[31,-80],[-10,-43],[-10,-48],[-13,-46],[-12,-41],[-11,-56],[-5,-31],[-1,-40],[-7,-31],[-10,-46],[-1,-36],[-8,-50],[-7,-54],[1,-41],[-11,-31],[-8,-32],[-9,-27],[-12,-23],[-15,-20],[-8,-27],[-13,-28],[-12,-16],[-15,-24],[-20,-18],[-18,-22],[-14,-32],[-3,-33],[-18,-85],[-4,-32],[-6,-53],[-7,-40],[-15,-105],[-6,-54],[-6,-36],[-3,-34],[-8,-30],[-15,-62],[-11,-25],[-8,-26],[-8,-36],[-10,-24],[-3,-39],[-11,-29],[-6,-34],[-10,-27],[-15,-28],[-7,-33],[-15,-46],[-5,-36],[-2,-66],[44,1],[15,4],[15,0],[7,-43],[-5,-39],[-4,-43],[-7,-26],[-6,-46],[-6,-30],[-6,-37],[-10,-36],[-10,-42],[-11,-27],[-14,-60],[-7,-29],[-9,-24],[-8,-29],[-7,-40],[-19,-37],[-18,-50],[-9,-23],[-7,-41],[-24,-37],[-27,-32],[-8,-25],[-9,-26],[-18,-28],[-11,-19],[-26,-61],[-18,-39],[-14,-37],[-11,-48],[-12,-13],[-15,-32],[-7,-34],[-21,-44],[-10,-35],[-13,-39],[-13,-54],[-21,-43],[-7,-30],[-11,-39],[-20,-55],[-11,-20],[-11,-20],[-9,-49],[-8,-32],[-15,-39],[-12,-33],[-16,-61],[-10,-25],[-16,-39],[-6,-36],[-14,-41],[-11,-40],[-10,-28],[-13,-42],[-10,-28]],[[62709,78262],[-10,-21],[-12,-35],[-16,-29],[-12,-25],[-9,-26],[-12,-44],[-13,-39],[-12,-34],[-9,-23],[-13,-22],[-15,-30],[-12,-19],[-11,-22],[-15,-37],[-16,-40],[-13,-24],[-16,-24],[-11,-21],[-9,-29],[-10,-22],[-13,-22],[-10,-37],[-15,-33],[-11,-19],[-9,-22],[-7,-33],[-12,-31],[-13,-26],[-10,-24],[-12,-25],[-7,-33],[-14,-35],[-12,-21],[-9,-24],[-15,-41],[-13,-40],[-19,-35],[-10,-31],[-19,-52],[-15,-56],[-11,-46],[-9,-34],[-11,-15],[-12,-31],[-13,-71],[-17,-48],[-24,-56],[-25,-66],[-10,-27],[-11,-38],[-9,-39],[-19,-42],[-28,-57],[-10,-35],[-9,-26],[-12,-22],[-12,-16],[-15,-43],[-9,-31],[-8,-39],[-8,-35],[-10,-37],[-12,-28],[-13,-23],[-13,-37],[-6,-43],[-14,-35],[-12,-26],[-15,-21],[-11,-30],[-16,-37],[-10,-37],[-10,-39],[-10,-39],[-8,-30],[-17,-47],[-17,-30],[-12,-39],[-10,-50],[-11,-19],[-11,-16],[-12,-28],[-17,-22],[-10,-24],[-10,-19],[-13,-24],[-15,-33],[-14,-23],[-12,-27],[-16,-21],[-12,-18],[-12,-16],[-20,-27],[-22,-43],[-32,-15],[-31,-2],[-14,-13],[-21,-48],[-22,-48],[-12,-34],[-13,-37],[-33,-106],[-18,-48],[-22,-86],[-40,-125],[-91,90],[-33,29],[-63,60],[-29,28],[-1,1],[-99,93],[-100,95],[-25,23],[-28,27],[-16,-80],[-14,-102],[-4,-81],[-8,-27],[-14,-30],[-7,-54],[-9,-25],[-15,-43],[-16,-74],[-13,-51],[-31,-103],[-52,-142],[-28,-81],[-17,-61],[-8,-28],[-13,-22],[-15,-66],[-15,-32],[-13,-58],[-15,-23],[-36,-150],[-34,-116],[-34,-129],[-20,-73],[-5,-36],[-35,-100],[-37,-179],[-8,-68],[-13,-52],[-6,-40],[-12,-46],[-38,-197],[-23,-156],[-13,-60],[-10,-75],[-11,-44],[-10,-74],[-12,-68],[-8,-69],[-16,-78],[-9,-54],[-5,-34],[-13,-38],[-13,-83],[-1,-48],[-5,-19],[-6,-19],[-17,-75],[-15,-63],[-16,-71],[-8,-49],[-11,-96],[-8,-43],[-17,-61],[-7,-57],[-18,-79],[-7,-52],[-20,-32],[-11,-53],[-10,-50],[-2,-47],[-9,-48],[-32,-69],[-11,-24],[-11,-36],[-19,-29],[-23,-55],[-22,-60],[-17,-28],[-12,-22],[-12,-31],[-11,-61]],[[59684,70556],[-91,185],[-27,56],[-54,110],[-11,22],[-60,122],[-23,48],[-13,25],[-38,77],[-28,52],[-8,16],[-19,40],[-26,51],[-15,32],[-16,32],[-43,87],[-13,25],[0,1],[-14,27],[-23,46],[-4,7],[-8,16],[-27,54],[-52,102],[-51,100],[-24,46],[-23,44],[0,1],[-17,34],[-13,25],[-12,22],[-3,5],[-38,76],[-20,39],[-25,47],[-13,26],[-1,0],[-130,250],[-36,70],[-56,108],[-41,79],[-18,33],[-13,25],[-29,56],[-34,75],[-11,22],[-10,22],[-10,23],[-22,40],[-17,36],[-11,15],[-1,1],[-13,23],[-15,31],[-22,45],[-89,182],[-38,77],[-14,27],[-24,51],[-23,53],[-12,26],[-15,31],[-29,60],[-14,27],[-12,19],[-25,51],[-46,90],[-56,112],[-32,65],[-38,78],[-12,25],[-15,29],[-43,88],[-34,69],[-12,24],[-117,239],[-75,152],[-37,76],[-27,53],[-31,65],[-37,75],[-16,32],[-41,83],[-31,63],[-52,108],[-26,50],[-24,50],[-43,85],[-92,189],[-81,166],[-43,88]],[[56986,75966],[123,554],[138,560],[185,661],[379,1857],[80,262],[82,352],[116,200],[172,226],[66,152],[18,119],[51,140],[-2,149],[112,320],[42,60],[12,17],[154,119],[73,155],[-6,-118],[-31,-702],[7,-191],[33,-61],[54,149],[95,218],[72,-12],[35,100],[87,245],[92,18],[126,333],[128,422],[95,499],[53,210],[97,-45],[53,202],[25,186],[48,124],[87,28],[20,-258],[52,27],[38,10],[11,-194],[102,-201],[17,123],[82,128],[87,374],[65,263],[144,440],[78,190],[63,174],[71,136],[-82,114],[-71,169],[-38,23],[-64,170],[16,33],[194,516],[56,152],[64,142]],[[77732,81824],[-14,-30],[-3,-5],[-10,-24],[-13,-30],[-1,-2],[-9,-21],[-10,-21],[-15,-34],[-16,-36],[-10,-22],[-18,-41],[-12,-28],[-21,-48],[-11,-23],[-12,-28],[-10,-22],[-48,-110],[-10,-23],[-23,-51],[-16,-37],[-12,-27],[-12,-25],[-12,-28],[-20,-44],[-11,-25],[-11,-25],[-22,-51],[-15,-34],[-15,-34],[-15,-33],[-14,-31],[-10,-23],[-22,-50],[-14,-33],[-13,-28],[-11,-25],[-14,-32],[-21,-47],[-24,-55],[-11,-24],[-15,-34],[0,-1],[-25,-57]],[[77111,80422],[-22,8],[-23,12],[-13,7],[-14,7],[-18,9],[-17,10],[-13,6],[-30,16],[-17,9],[-32,14],[-7,-38],[-6,-34],[-4,-20],[-6,-35],[-6,-32],[-9,-49],[-10,-51],[-5,-31],[-10,-62],[6,-31],[8,-34],[6,-30],[6,-32],[9,-45],[10,-53],[8,-41],[16,16],[13,7],[19,3],[4,0],[10,1],[12,2],[12,2],[14,2],[13,2],[6,4],[9,7],[4,-2],[8,-4],[19,-7],[37,-16],[13,-14],[18,-19],[16,-17],[12,-12],[12,-13],[19,-20],[14,-16],[13,-13],[20,-21],[25,-27],[24,-2],[9,-3],[10,-28],[11,-14],[12,14],[22,24],[13,4],[15,-3],[1,77]],[[77377,79816],[13,-28],[17,-40],[23,-51],[10,-23],[12,-26],[14,-32],[17,-39],[32,-71],[5,-11],[5,-12],[11,-25],[11,-23],[42,-94],[10,-23],[23,-51],[20,-44],[13,-29],[12,-27],[9,-21],[12,-29],[13,-30],[11,-25],[4,-10],[11,-23],[10,-23],[12,-28],[14,-32],[11,-23],[10,-21],[12,-27],[11,-24],[17,-40],[14,-31],[1,-61],[0,-2]],[[77839,78717],[-21,-18],[-34,-31],[-30,-26],[-12,-11],[-13,-10],[-16,-6],[-6,29],[-34,1],[-8,-36],[-6,-32],[7,-31],[6,-30],[-37,-22],[-28,-86],[-13,-37],[-12,-11],[-13,-11],[-20,-24],[3,-32],[-9,-22],[-18,-34],[-24,-49],[-11,-20],[-11,-29],[-8,-27],[0,-34],[6,-32],[33,0],[12,-87],[-10,-23],[-13,-39],[12,-25],[-9,-24],[-10,-34],[-3,3],[-8,12],[-1,-1],[-8,-24],[-15,-58],[-8,-32],[0,-21],[-1,-18],[0,-42],[-8,-47],[4,-43],[5,-62],[3,-38],[12,-15],[14,-91],[9,-56],[7,-43],[25,12],[1,-43],[1,-38],[43,18],[22,9],[19,8],[26,10],[25,13],[28,11],[20,8],[13,4],[13,7],[23,16],[14,11],[18,18],[23,26],[11,-9],[4,-28],[1,-6],[13,11],[15,10],[14,8],[13,7],[16,6],[13,3],[16,2],[11,1],[9,0],[12,-1],[16,-2],[14,-4],[31,-10],[3,-1],[11,-4],[46,-15],[14,-5],[15,-6],[13,-4],[12,-4],[15,-5],[12,-5],[15,-5],[8,-2],[5,-2],[14,-5],[16,-6],[12,-4],[4,-1],[8,-2],[12,-6],[15,-8],[18,-11],[4,-3],[15,-12],[15,-14],[12,-13],[19,-20],[21,-25],[30,-39],[8,-27],[22,-22],[18,-20],[22,-31],[10,-15],[3,-4],[11,-16],[13,-18],[14,-14],[13,-19],[8,-15],[4,-7]],[[78547,76881],[-20,-78],[-15,-34],[-17,-40],[10,-43],[7,-31],[17,-60],[27,-65],[18,-89],[-15,-87],[5,-87],[29,-57],[-27,-37],[24,-51],[-11,-89],[3,-71],[-9,-60],[2,-59],[22,-58],[-10,-78],[10,-58],[-3,-73],[-6,-71],[17,-79],[27,-98],[17,-78],[-5,-68],[-7,-27],[7,-29],[12,-67],[1,-35],[1,-49],[-1,-35],[1,-67],[0,-55],[0,-41],[0,-37],[0,-43],[-3,-34],[-4,-33],[-5,-87],[-8,-77],[-22,-105],[-34,-102],[-22,-33],[-11,-17],[-12,-17],[-12,-27],[-28,-10],[-12,6],[-22,-5],[-12,-1],[-33,-6],[-21,1],[-13,2],[-14,0],[-15,2],[-19,2],[-31,4],[-32,84],[-14,4],[-12,9],[-12,10],[-12,3],[-11,-13],[-7,-31],[-10,-27],[-1,-35],[-16,-86],[-30,-32],[-13,-11],[-13,-16],[-12,-17],[-13,-15],[-10,-20],[-21,-38],[-15,-17],[-10,-20],[-12,-19],[-9,-22],[-10,-20],[-28,-54],[-33,-27],[-12,-1],[-13,-9],[-27,-19],[-30,15],[-25,10],[-31,18],[-36,26],[-22,40],[-26,43],[-23,76],[-18,42],[-29,-4],[-22,8],[-26,21],[4,-105],[27,-37],[11,-99],[25,-102],[14,-90],[5,-75],[10,-91],[-2,-73],[-12,-58],[-9,-46],[-17,-72],[-8,-25],[-8,-31],[-26,-78],[-10,-25],[-29,-68],[-61,-27],[-39,19],[-30,11],[-29,66],[-28,41],[-23,12],[-22,29],[-23,45],[-25,75],[-9,73],[21,58],[3,124],[-28,131],[-23,30],[-7,-22],[-16,-48],[-10,-91],[-23,-65],[-2,-78],[-18,-61],[-15,58],[-33,-16],[-45,-17],[-40,-1],[-26,20],[-36,-22],[-48,-13],[-30,36],[-4,-116],[39,-42],[42,-15],[29,0],[22,-50],[35,17],[32,-33],[28,-31],[34,-59],[30,-101],[35,-55],[32,-12],[18,-66],[33,-56],[36,-36],[0,-99],[10,-102],[13,-102],[31,-14],[27,-35],[19,-56],[21,-58],[32,-44],[23,-55],[1,-35],[-2,-36],[8,-30],[13,-25],[17,-72],[-4,-33],[5,-32],[4,-34],[15,-87],[4,-39],[7,-57],[-32,-11],[-25,2],[-40,4],[-55,7],[-27,-3],[-42,-11],[-44,17],[-41,60],[-18,98],[-48,-17],[-27,-36],[-13,-89],[27,-27],[21,-66],[-36,-53],[-18,-122],[-34,-83],[-37,-39],[-33,-14],[-13,-6],[-13,-6],[-22,-13],[-12,-6],[-12,-14],[-12,-17],[-37,-28],[-12,-4],[-11,-7],[-14,-13],[-17,-10],[-9,-22],[-39,-21],[-13,2],[-12,2],[-14,1],[-14,-4],[-12,-7],[-12,-9],[-13,-16],[-13,-20],[-21,14],[-14,80],[21,101],[-35,95],[-33,73],[-30,78],[-22,101],[-18,102],[33,27],[42,-3],[46,33],[22,66],[22,63],[19,46],[15,89],[19,56],[19,32],[27,50],[-20,148],[-27,19],[-20,51],[-32,50],[-26,9],[-34,-21],[-32,-24],[-37,-15],[-21,38],[-36,-12],[-31,13],[-28,3],[-26,35],[26,86],[4,126],[-20,-34],[-18,-65],[-19,-54],[-23,9],[-19,35],[-32,35],[-38,67],[-31,62],[-1,2],[-17,41],[-2,7],[-33,85],[6,-40]],[[76281,72766],[-23,68],[-10,18],[-2,3],[-12,15],[-12,-5],[-12,5],[-11,15],[-12,14],[-12,9],[-11,22],[-12,42],[0,35],[-5,41],[-12,64],[-9,25],[-9,24],[-9,27],[-10,20],[-9,24],[0,1],[-9,50],[-12,18],[-13,16],[-17,17],[-16,16],[-12,18],[-13,24],[-10,29],[-10,21],[-13,12],[-12,9],[-16,31],[-16,29],[-9,29],[-12,32],[-10,22],[-14,27],[-2,3],[-9,10],[-14,6],[-14,-4],[-12,2],[-12,19],[-13,17],[-14,18],[-16,35],[-10,26],[-12,24],[-15,24],[-11,15],[-13,14],[-23,23],[-15,21],[-15,17],[-13,14],[-17,13],[-13,14],[-13,24],[-7,27],[-6,40],[-7,36],[-9,16],[-2,4],[-4,0],[-8,1],[-12,-8],[-30,-18],[-17,-12],[-11,-14],[-12,-23],[-9,-28],[-6,-34],[-6,-46],[-12,-20],[-11,-9],[-15,-12],[-13,-4],[-15,2],[-14,-3],[-13,-11],[-14,-10],[-13,0],[-13,5],[-12,8],[-18,13],[-11,15],[-9,32],[1,37],[7,33],[8,25],[10,22],[12,23],[12,19],[14,19],[11,15],[14,19],[2,34],[-3,39],[-10,31],[-11,15],[-13,1],[-11,-11],[-13,-18],[-15,-12],[-15,-7],[-18,-9],[-26,-13],[-13,4],[-10,21],[-1,38],[4,37],[7,33],[9,55],[-1,36],[-7,31],[-11,18],[-12,15],[-12,12],[-14,9],[-14,6],[-14,2],[-15,0],[-14,3],[-14,7],[-13,16],[-13,14],[-14,5],[-18,-3],[-15,0],[-19,7],[-13,9],[-12,15],[-11,25],[-9,32],[-19,48],[-12,12],[-11,-16],[-12,-24],[-12,-28],[-9,-30],[-8,-41],[-7,-35],[-5,-34],[-6,-45],[-4,-34],[-9,-57],[-11,-18],[-12,-8],[-12,-7],[-13,-21],[-7,-35],[-1,-40],[-6,-31],[-12,-14],[-15,4],[-13,14],[-22,34],[-10,28],[-26,86],[-6,21],[-10,38],[-9,37],[-7,39],[-6,40],[-3,44],[-1,42],[0,35],[3,46],[5,34],[7,34],[13,43],[7,32],[-1,37],[-2,53],[-2,44],[-4,33],[-5,33],[-7,31],[-10,33],[-11,26],[-13,25],[-11,30],[-12,31],[-11,18],[-35,41],[-12,14],[-11,27],[1,35],[6,33],[9,33],[5,34],[2,38],[-9,25],[-14,2],[-14,0],[-15,5],[-15,15],[-13,0],[-14,0],[-16,-15],[-13,7],[-9,35],[-11,27],[-14,28],[-14,2],[-11,-14],[-10,-26],[-5,-31],[-1,-35],[4,-34],[6,-34],[0,-37],[-14,-1],[-14,4],[-15,-3],[-10,-26],[-12,-12],[-13,-3],[-17,6],[-3,34],[2,38],[6,31],[6,36],[10,30],[12,28],[12,29],[10,20],[9,31],[-6,36],[-11,14],[-14,17],[-14,18],[-13,21],[-13,18],[-13,17],[-13,18],[-14,10],[-7,33],[-6,38],[-3,40],[11,17],[12,15],[13,-9],[12,11],[4,40],[0,36],[-4,37],[-15,31],[-13,6],[-5,32],[6,60],[8,30],[15,23],[9,30],[-11,22],[-12,21],[-17,26],[-15,24],[-15,18],[-14,8],[-11,20],[-13,18],[-7,29],[0,1],[-12,16],[-13,10],[-11,12],[-17,22],[-11,25],[-10,19],[-12,23],[-14,2],[-9,-24],[-11,-17],[-12,9],[-1,39],[2,46],[0,49],[1,37],[4,43],[-4,40],[-10,28],[-10,23],[-11,26],[-8,33],[0,42],[0,36],[-8,34],[-9,49],[-3,33],[-6,32],[-7,58],[-9,27],[-7,27],[-16,49],[-7,40],[-10,22],[-42,2],[-13,-6],[-11,-18],[-4,-8],[-7,-12],[-8,-30],[7,-54],[-6,-30],[-7,-37],[-3,-35],[-9,-25],[-12,-12],[-21,-4],[-13,4],[-13,-1],[-7,39],[-14,15],[-13,-12],[-7,-34],[-11,-21],[-14,-5],[-11,14],[-12,14],[-20,6],[-13,-6],[-15,-15],[-13,-1],[-12,0],[-12,14],[-15,2],[-13,4],[-12,27],[-10,26],[-1,38],[-14,5],[-13,-5],[-18,-11],[-5,-40],[-5,-41],[-13,9],[-11,11],[-13,1],[-13,2],[-10,-19],[-12,-2],[-12,12],[-12,4],[-14,11],[-14,9],[-15,2],[-14,-2],[-7,31],[-1,38],[3,38],[9,25],[18,55],[13,43],[9,38],[4,37],[2,40],[3,35],[-6,28],[-6,22],[-3,12],[-12,33],[-13,12],[-11,14],[-14,7],[-12,8],[-29,25],[-12,1],[-16,9],[-11,15],[-12,16],[-10,19],[-11,20],[-11,20],[-3,37],[-1,40],[-6,31],[-5,31],[3,35],[9,30],[9,29],[8,32],[1,0],[4,39],[-11,18],[-12,13],[-11,17],[-12,20],[-12,17],[-13,19],[-25,46],[-9,27],[5,38],[9,22],[7,37],[1,38],[-5,57],[10,22],[13,-2],[12,7],[4,34],[-9,27],[-5,32],[6,36],[-9,24],[-13,7],[-13,-5],[-10,-22],[-17,-13],[-18,-11],[-15,-17],[-13,-18],[-12,-13],[-15,-14],[-14,-17],[-13,-15],[-13,-8],[-14,1],[-17,6],[-14,4],[-13,3],[-15,-11],[-13,10],[-10,18],[-19,32],[-12,10],[-14,11],[-14,41],[-5,31],[-5,36],[5,49],[6,31],[7,32],[7,36],[-11,11]],[[75284,86017],[20,-38],[24,-24],[21,-45],[12,-17],[12,5],[34,-39],[49,-20],[38,15],[26,-10],[61,-82],[43,-48],[5,-5],[47,-50],[39,-71],[3,-5],[17,-40],[7,-17],[25,-57],[46,-80],[5,-10],[3,-5],[62,-122],[44,-40],[6,-5],[10,-8],[58,-41],[23,-13],[64,-39],[50,-31],[2,-2],[5,-9],[36,-59],[33,-43],[18,-59],[14,-90],[2,-9],[-1,-10],[-4,-95],[0,-3],[-1,-17],[-1,-19],[-13,-63],[-7,-31],[-21,-44],[-2,-3],[-21,-37],[-9,-30],[-16,-59],[-13,-75],[-8,-46],[-5,-56],[-2,-23],[-3,-32],[-1,-36],[8,-26],[7,-74],[8,-27],[9,-64],[15,-31],[13,-11],[17,-48],[7,-30],[8,-82],[26,-175],[8,-70],[10,-24],[3,-2],[23,-16],[23,-31],[19,-51],[17,-54],[14,-35],[6,-16],[14,13],[8,30],[14,59],[23,16],[15,-23],[20,-90],[10,-71],[27,-65],[27,-29],[24,-6],[52,-28],[24,-28],[24,-15],[23,27],[12,5],[26,-19],[20,-39],[13,-13],[1,-2],[23,-22],[40,-22],[24,6],[22,32],[28,5],[36,-22],[12,9],[38,1],[22,30],[25,-7],[12,-5],[24,-11],[25,5],[37,-22],[11,-19],[28,-21],[9,23],[36,26],[13,-1],[34,-40],[25,-20],[25,-6],[27,1],[27,-5],[25,-3],[23,-20],[24,-33],[29,-64],[25,-79],[19,-61],[10,-18],[11,-28],[28,-68],[16,-57],[13,-66],[13,-69],[13,-58],[12,-63],[21,-125],[7,-29],[10,-20],[22,-39],[28,-69],[42,-102]],[[75556,79584],[-8,-84],[-3,-42],[-7,-60],[-19,-4],[-17,1],[-2,0],[-5,35],[-8,29],[-11,22],[-11,20],[-11,12],[-12,6],[-13,2],[-13,1],[-12,0],[-14,-3],[-16,-9],[-38,-19],[-12,-7],[-29,-14],[-42,-54],[-17,-79],[-11,-51],[-16,-76],[-9,-47],[0,-2],[-11,-54],[-8,-38],[-2,-37],[11,-38],[2,-5],[12,4],[12,4],[9,-24],[4,-36],[5,-35],[0,-35],[9,-21],[10,-2],[33,-6],[9,-24],[31,-106],[30,-26],[16,-29],[0,-35],[1,-83],[0,-35],[0,-39],[0,-27],[5,-7],[9,18],[15,31],[27,-13],[12,10],[5,-7],[5,14],[4,9],[17,-5],[27,8],[9,-37],[39,10],[10,-112],[22,10],[-9,62],[22,4],[36,-1],[6,42],[0,37],[31,-12],[20,-7],[12,-5],[14,-2],[21,-10],[14,-5],[-1,86],[10,0],[5,106],[17,-7],[30,-12],[15,-6],[27,-11],[0,43],[0,4],[4,-1],[17,-7],[14,-5],[47,-18],[13,-5],[7,80],[-8,69],[-13,107],[15,98],[17,33],[2,72],[-11,48],[5,46],[5,57],[4,37],[-1,36],[-1,23],[-2,39],[-6,36],[-4,29],[-5,33],[-12,16],[-14,2],[-21,4],[-12,3],[-25,5],[-14,2],[-12,3],[-21,4],[-18,3],[-7,2],[-27,5],[-15,3],[-15,3],[-11,2],[-30,6],[11,120],[-14,3],[-19,11],[-17,-13],[-20,-15],[-12,-7],[-13,-6],[-22,-12],[-15,-10],[-17,-26]],[[75516,78813],[-5,-42],[-8,-27],[-13,-49],[0,1],[-20,17],[-14,13],[-14,10],[-14,11],[-13,11],[-16,12],[0,39],[19,-23],[12,1],[22,0],[4,37],[14,8],[28,-5],[15,-12],[3,-2]],[[67245,83367],[-11,-32],[-11,-21],[-10,-38],[-11,-19],[-17,-22],[-6,-30],[-19,-35],[-11,-22],[-12,-28],[-17,-33],[-18,-8],[-13,-28],[-6,-41],[1,-35],[4,-51],[-7,-41],[-15,-25],[-12,-16],[-3,-35],[-5,-46],[-6,-36],[-6,-31],[-15,-54],[-6,-37],[-11,-28],[-5,-38],[-14,-32],[-9,-35],[-2,-39],[-10,-24],[-8,-28],[-12,-11],[-15,4],[-18,6],[-11,-16],[-13,-19],[-7,-31],[-15,-48],[-14,-36],[-7,-64],[-7,-35],[-3,-46],[-3,-45],[-4,-37],[-8,-26],[-12,-19],[-13,-7],[-14,8],[-18,-18],[-15,-22],[-23,-5],[-12,-5],[-14,-20],[-25,-44],[-13,-26],[-8,-26],[-17,-19],[-14,-6],[-14,-4],[-14,-5],[-16,5],[-13,-13],[0,-36],[-5,-40],[-9,-26],[-13,-29],[-8,-34],[1,-40],[4,-33],[5,-32],[-6,-32],[-18,-54],[-10,-21],[-9,-38],[-9,-27],[-9,-34],[-6,-33],[-14,-11],[-13,-30],[-9,-43],[-24,-44],[-3,-47],[-2,-18],[-1,-16],[0,-34],[-4,-36],[-4,-37],[7,-15],[7,-14],[16,-32],[13,-34],[1,-51],[99,-72],[0,-40],[14,-3],[9,-23],[-7,-60],[-2,-34],[12,-17],[-3,-40],[-5,-181],[-16,-1],[-20,12],[-19,18],[-12,22],[-61,-64],[-9,-104],[-26,-23],[-19,48],[-21,-47],[-15,2],[-12,-1],[-49,-1],[-32,-1],[-18,-4],[-14,-3],[-12,-12],[-8,-44],[-13,-99],[-8,-35],[-80,-37],[-15,3],[-43,9],[-18,7],[-52,26],[-1,-45],[-23,-75],[-31,-10],[-43,-34],[-42,-30],[-22,-39],[-12,-26],[-9,-36],[-17,-33],[-18,-34],[-5,-81],[4,-35],[0,-52]],[[65746,79449],[6,-43],[-2,-50],[-8,-11],[-3,-4],[-22,10],[-25,-38],[-38,-43],[-25,-8],[-22,15],[-7,-105],[-15,-84],[-5,-37],[-8,-50],[-6,-41],[-31,-7],[-9,-26],[-20,-25],[-28,-80],[-22,-23],[-26,-32],[-17,-62],[-6,-39],[4,-39],[-27,-64],[17,-67],[-35,-20],[-21,-18],[-21,-51],[-26,-15],[-7,-71],[-5,-39],[-10,-28],[-3,-44],[6,-45],[3,-43],[-11,-61],[-2,-22],[-1,-13],[4,-36],[1,-41],[-1,-58],[-24,-14],[-29,12],[-35,-8],[-25,-34],[6,-31],[12,-41],[-4,-53],[-5,-107],[-11,-71],[-7,-70],[-9,-68],[-6,-47],[1,-41],[-4,-51],[10,-30],[-13,-36],[-12,-45],[-7,-62],[-2,-73],[-18,-52],[-16,-39],[-17,-20],[0,-30],[0,-24],[-20,-25],[-33,-22],[-11,-70],[-10,-99],[-8,-71],[-31,-54],[-22,-69],[-26,-36],[-29,-33],[-24,-31],[-14,9],[-29,16],[-22,-2],[-4,-3],[-35,-21],[-34,-36],[-21,-37],[-17,-45],[-12,-40],[-20,-47],[-29,-2],[-17,18],[-12,13],[-15,2],[-12,-17],[-13,-13],[-9,-11],[-7,-10],[-13,-21],[-4,-39],[-11,-16],[-6,-30],[-10,-30],[-4,-41],[-15,-12],[-12,5],[-14,2],[-4,6],[-12,18],[-13,6],[-2,-4],[-8,-17],[-14,-25],[-10,-43],[-9,-25],[-17,-21],[-18,-9],[-7,-11],[-4,-4],[-12,-31],[-11,-17],[-15,13],[-13,22],[-10,33],[-15,15],[-19,-4],[-13,-7],[-20,-16],[-1,-1],[-16,-7],[-16,5],[-2,2],[-13,12],[-12,34],[-11,22],[-15,10],[-12,14],[-12,13],[-22,9],[-13,2],[-12,1],[-15,6],[-16,-8],[-2,0],[-10,1],[-19,-17],[-12,-13],[0,-1],[-17,-22],[-11,-18],[-11,-23]],[[63916,75838],[-16,65],[-26,104],[-22,95],[-8,43],[-3,47],[-5,37],[0,36],[9,45],[8,35],[5,34],[4,50],[-3,52],[-2,37],[-11,49],[-12,24],[-11,17],[-13,23],[-8,32],[-9,29],[-18,-13],[-32,26],[-14,-11],[-13,-14],[-11,8],[-12,15],[-13,17],[-28,23],[-18,5],[-11,27],[-14,3],[-12,18],[-13,9],[-12,10],[-13,10],[-13,16],[-12,23],[-13,9],[-12,-2],[-18,-2],[-12,14],[-9,24],[-10,20],[-12,19],[-18,1],[-13,-3],[-13,27],[-11,8],[-12,14],[-19,51],[-10,28],[-16,14],[-10,23],[-9,23],[-11,18],[-3,38],[-7,27],[-10,33],[-5,35],[-12,20],[-6,33],[-10,31],[-11,17],[-11,23],[-11,21],[-18,7],[-9,-3],[-4,-1],[-13,-4],[-13,9],[-4,8],[-8,13],[-10,20],[-10,16],[-8,16],[-98,179],[-74,135],[-11,19],[-135,246],[-96,174]],[[71384,82108],[-14,-65],[-6,-38],[-2,-53],[1,-43],[-7,-36],[-5,-42],[-11,-11],[-14,-29],[-10,-44],[-12,-48],[-9,-45],[-6,-34],[-7,-34],[5,-40],[6,-36],[-8,-39],[-6,-54],[4,-36],[-3,-33],[-13,-47],[-8,-49],[1,-36],[-10,-56],[-9,-28],[-11,-45],[-5,-33],[-13,-62],[-6,-32],[-11,-45],[-23,-89],[-19,-81],[-16,-77],[-9,-36],[-13,-57],[-8,-39],[-9,-37],[-11,-41],[-5,-40],[-102,-136],[-42,-55],[-9,-87],[-11,-46],[-14,-56],[-8,-50],[-2,-36],[-4,-34],[-7,-31],[-6,-44],[-5,-37],[-1,-36],[2,-70],[-4,-43],[-4,-40],[-6,-34],[-4,-34],[1,-51],[-1,-41],[-3,-63],[-7,-54],[-4,-41],[-2,-50],[0,-47],[-9,-87],[1,-41],[1,-49],[-6,-53],[-3,-54],[-12,-75],[-18,-126],[-56,1],[-70,0],[0,-57],[0,-91],[1,-84],[1,-153],[42,-184],[23,-98],[0,-1],[6,-30],[16,-72],[16,-65],[29,-126],[9,-36],[73,-326],[2,-7],[62,-276],[2,-7],[21,-88],[9,-43],[10,-44],[8,-37],[16,-74],[19,-86],[25,-105],[2,-11],[3,-11],[7,-30],[7,-30],[11,-53],[1,-3],[13,-56],[15,-61],[8,-33],[10,-45],[9,-41],[34,-154],[31,-180],[68,-257],[10,-41],[4,-14],[19,-85],[13,-50],[13,-56],[10,-43],[36,-159],[14,-62],[7,-32],[17,-73],[21,-91],[35,-155],[9,-40],[30,-131],[12,-50],[13,-55],[12,-54],[36,-158],[13,-58],[12,-51],[17,-74],[10,-45],[14,-59],[10,-46],[16,-67],[29,-123],[7,-31],[10,-44],[14,-66],[8,-41],[34,-159],[14,-60],[2,-7],[36,-150],[9,-34],[29,-126],[0,-1],[61,-269],[16,-63],[7,-30],[12,-51],[51,-230],[56,-243],[10,-41],[12,-50],[18,-76],[6,-28],[0,-1],[37,-163],[13,-52],[28,-120],[2,-8],[25,-116],[45,-186],[3,-12],[4,-17],[13,-52],[28,-116],[12,-47],[40,-160],[8,-37],[13,-53],[10,-39],[20,-93],[14,-60],[39,-165],[16,-68],[28,-122],[7,-32],[40,-171],[15,-66],[16,-71],[10,-43],[63,-274],[20,-87],[18,-77],[7,-33],[81,-352],[12,-36],[46,-161]],[[72853,68901],[-61,-177],[-33,-95],[-50,-146],[-37,-106],[-32,-91],[-64,-178],[-75,-207],[-17,-49],[-39,-101],[-32,-85],[-34,-73],[-19,-41],[-48,-105],[-11,-24],[-13,-28],[-10,-21],[-11,-25],[-13,-32],[-16,-36],[-70,-164],[0,-1],[-46,-111],[-24,-57],[-14,-35],[-41,-97],[-11,-26],[-11,-26],[-9,-22],[-75,-178],[-31,-75],[-21,-49],[-27,-64],[-44,-105],[-58,-137],[-26,4],[-9,-86],[-12,-93],[-50,-15],[-8,-28],[1,-40],[-8,-24],[-10,-43],[0,-37],[1,-35],[11,-23],[11,-11],[-3,-37],[-13,-30],[11,-18],[11,-19],[1,-4],[0,-1],[3,-31],[-4,-40],[-3,-35],[3,-36],[8,-28],[9,-25],[4,-12],[4,-16],[9,-22],[0,-2],[1,-3],[0,-35],[5,-33],[1,-12],[-11,-14],[-10,-18],[-3,-44],[5,-38],[-4,-16],[0,-1],[-5,-12],[-7,-10],[-10,-3],[-19,6],[-4,-10],[-3,-69],[0,-21],[28,-70],[4,-9],[2,-5],[13,-21],[11,-25],[0,-3],[4,-102],[2,-39],[2,-51],[-15,-87],[-3,-21],[-13,-78],[-1,-5],[1,-35],[3,-57],[0,-16],[1,-1],[11,-46],[0,-13],[-1,-3],[-4,-41],[-7,-20],[-4,-4],[-25,-18],[-10,-16],[-2,-11],[-13,-126],[7,-201]],[[71624,63890],[-12,-7],[-14,-10],[-33,10],[-13,16],[-14,20],[-14,20],[-16,14],[-19,26],[-10,15],[-12,13],[-13,16],[-12,19],[-10,20],[-13,19],[-12,21],[-12,12],[-14,14],[-13,14],[-14,14],[-13,17],[-13,8],[-11,14],[-16,5],[-11,9],[-12,5],[-15,-4],[-11,16],[-12,8],[-11,17],[-18,8],[-14,27],[-13,23],[-15,30],[-24,31],[-14,10],[-13,-1],[-54,11],[-15,19],[-19,33],[-13,17],[-26,15],[-21,4],[-17,-2],[-19,-13],[-12,-10],[-17,-26],[-13,8],[-12,10],[-14,-30],[-3,-45],[-9,-36],[-16,-37],[-10,-22],[-12,5],[-15,6],[-12,5],[-14,6],[-15,11],[-18,23],[-18,6],[-12,-2],[-14,-9],[-23,-14],[-12,-8],[-14,-15],[-19,-11],[-18,-16],[-23,-26],[-22,-16],[-16,-22],[-17,-74],[-8,-28],[-9,-29],[-10,-31],[-10,-23],[-15,-16],[-14,1],[-17,-3],[-16,4],[-10,24],[-8,43],[-2,36],[-1,35],[-7,30],[-10,41],[-5,38],[-3,44],[1,37],[-4,37],[-6,32],[-10,24],[-16,18],[-41,17],[-15,11],[-25,1],[-14,-2],[-14,7],[-11,14],[-19,33],[-16,41],[-9,30],[-6,36],[-2,36],[-8,43],[-11,37],[-14,23],[-11,26],[-6,38],[-8,49],[-6,81],[6,79],[11,73],[-4,67],[-5,39],[-4,49],[-2,36],[3,60],[2,57],[1,68],[4,40],[-6,38],[-13,17],[-13,8],[-12,16],[-12,12],[-13,10],[-17,18],[-16,17],[-13,12],[-14,3],[-15,8],[-11,13],[-17,49],[-11,31],[-6,30],[-11,53],[-3,40],[-1,39],[9,27],[15,22],[12,36],[-2,43],[-9,28],[-14,38],[-13,17],[-16,9],[-11,34],[-3,36],[1,53],[-1,40],[-1,51],[-8,61],[-7,37],[4,41],[3,37],[-4,40],[-13,7],[-17,-5],[-22,-24],[-18,2],[-7,25],[5,58],[5,31],[-1,38],[-11,29],[-20,19],[-11,16],[-24,50],[-11,22],[-14,35],[-12,20],[-12,20],[-11,37],[-16,52],[-14,44],[-7,46],[-2,53],[2,57],[2,38],[6,63],[1,47],[-9,43],[-20,69],[-9,25],[-14,38],[-18,58],[-22,107],[-10,31],[-9,25],[-18,55],[-2,43],[-5,42],[-6,28],[-3,34],[-9,36],[-16,16],[-15,-12],[-15,-25],[-11,-15],[-18,0],[-1,0],[-14,24],[-12,48],[-11,44],[-27,63],[-10,32],[-10,24],[-24,32],[-22,44],[-12,22],[-12,-2],[-16,-17],[-22,0],[-16,16],[-11,26],[-19,49],[-18,49],[-11,37],[-14,56],[-3,51],[-6,37],[-10,39],[-5,31],[-10,25],[-14,23],[-2,46],[-5,51],[-9,30],[-12,27],[-10,26],[-13,9],[-19,-19],[-12,5],[-15,16],[-9,27],[0,47],[4,35],[-9,24],[-20,-10],[-12,26],[-11,41],[-9,44],[-11,38],[-4,41],[0,36],[-3,36],[1,62],[-6,30],[-4,49],[-11,46],[-10,38],[-7,31],[-21,69],[-18,26],[-14,17],[-15,28],[-11,27],[-18,50],[-10,27],[-19,57],[-3,40],[8,27],[4,49],[-1,37],[10,58],[9,23],[15,22],[14,20],[12,12],[15,16],[16,13],[24,-13],[10,27],[7,42],[6,40],[16,35],[8,41],[-7,33],[-14,30],[-24,14],[-12,22],[-16,28],[-16,18],[-9,37],[-4,52],[-15,14],[-21,37],[4,51],[3,47],[6,36],[13,32],[15,24],[29,45],[20,-10],[18,26],[18,-12],[15,-1],[10,23],[-2,46],[8,46],[2,34],[2,39],[6,38],[-9,44],[-16,17],[-16,-14],[-17,3],[-14,31],[-19,17],[-19,27],[-12,75],[-4,42],[-4,50],[-8,33],[12,20],[11,29],[-5,34],[-27,-4],[-17,-17],[-15,-5],[-21,-24],[-11,23],[-2,50],[4,41],[-19,28],[-12,28],[-5,31],[18,53],[21,18],[12,15],[15,7],[13,5],[9,45],[2,47],[-11,44],[6,31],[15,4],[6,41],[-2,51],[4,35],[-11,34],[-16,52],[-10,37],[-5,45],[-7,31],[-8,34],[-11,37],[-9,25],[-8,27],[-7,43],[-9,42],[-5,45],[-10,39],[-18,34],[-10,31],[-2,42],[-10,30],[-13,-8],[-15,-34],[-5,-48],[-13,-17],[-22,18],[-15,1],[-20,-8],[-14,-35],[-16,-28],[-12,3],[-12,31],[-12,37],[-15,24],[-13,22],[-11,69],[-6,35],[-9,51],[12,22],[9,25],[-5,34],[-2,35],[-4,39],[14,11],[15,6],[12,31],[28,47],[32,62],[11,15],[14,30],[-7,34],[-15,-4],[-19,17],[-11,22],[-22,16],[-11,21],[-20,18],[-17,3],[-12,-1],[-1,0],[-6,34],[-4,38],[12,77],[11,39],[0,44],[-17,46],[-14,29],[0,55],[-15,34],[-12,9],[-22,5],[-14,12],[-12,10],[-13,0],[-17,28],[-26,10],[-14,3],[-16,-2],[-22,-16],[-15,11],[-18,-10],[-18,6],[-19,13],[-14,22],[-12,6],[-23,-19],[-13,-5],[6,-64],[-9,-33],[-15,-10],[-13,6],[-17,21]],[[68059,73671],[-29,37],[-11,24],[-11,16],[-12,9],[-14,15],[-13,-22],[-7,-44],[-10,-28],[-24,-16],[-13,20],[-3,36],[-12,24],[-12,5],[-15,6],[-10,-17],[-9,-52],[-6,-47],[-12,-4],[-20,16],[-12,13],[-9,26],[-11,18],[-13,18],[-12,4],[-13,34],[-11,16],[-15,-4],[-12,11],[-14,11],[-14,16],[-17,14],[-14,14],[-16,22],[-8,44],[-10,26],[-14,-1],[-19,-8],[-10,24],[-25,5],[-16,33],[-19,28],[-12,5],[-14,35],[-12,27],[-15,10],[-13,13],[-14,5],[-21,12],[-11,16],[-19,12],[-29,12],[-10,23],[-1,21],[-1,24],[-8,33],[-7,28],[-6,34],[-12,17],[-13,15],[-11,33],[-7,36],[-14,4],[-12,4],[-34,35],[-4,5],[-54,176],[1,2],[11,19],[36,64],[6,2],[4,9],[2,11],[2,10],[2,13],[-1,20],[-2,10],[-19,69],[-14,53],[-36,1],[-7,4],[-3,5],[-1,10],[-4,56],[0,22],[2,5],[6,13],[9,20],[2,4],[0,1],[0,14],[-8,32],[-15,52],[-7,2],[-20,0],[-11,-3],[-12,-13],[-8,10],[-7,19],[-1,21],[3,32],[2,10],[5,11],[1,1],[18,24],[5,12],[1,14],[4,35],[1,32],[2,42],[0,6],[-1,12],[-2,6],[-2,-2],[-10,-6],[-5,0],[-15,30],[-2,12],[0,16],[5,35],[15,82],[0,1],[5,30],[1,11],[0,11],[0,2],[-2,7],[-9,25],[-4,10],[-1,2],[-5,4],[-4,-3],[-12,-32],[-9,-9],[-17,-2],[-33,17],[-1,1],[-14,22],[-3,10],[-1,3],[-7,37],[-7,44],[-2,6],[-1,12],[-2,36],[0,5],[0,7],[4,22],[9,71],[1,6],[50,251],[-1,11],[0,1],[-1,7],[-7,31],[-3,9],[-6,7],[-6,7],[-12,31],[-9,23],[-2,14],[1,48],[4,26],[12,24],[9,-4],[1,-4],[-1,-18],[6,-23],[3,-5],[15,15],[1,0],[15,16],[12,43],[0,7],[0,1],[-1,4],[-23,99],[-4,11],[-19,3],[-6,1],[-11,3],[-18,6],[-2,0],[-4,3],[-1,4],[-1,6],[-2,11],[-19,125],[-3,17],[0,1],[-20,203],[-1,11],[48,52],[10,10],[3,10],[2,6],[-1,16],[-4,8],[-20,31],[-2,3],[-55,84],[-19,17],[-3,2],[-10,6],[-1,0],[-15,-2],[-2,-1],[-8,-5],[-3,-5],[-1,-1],[-12,-33],[-3,-6],[-1,-1],[-4,-3],[-37,-34],[-3,-2],[-2,-2],[-6,10],[0,12],[0,6],[4,35],[5,34],[-1,2],[-3,5],[-6,7],[-33,36],[-6,6],[-1,1],[-2,1],[-6,-3],[-1,-2],[-3,-8],[-1,-30],[0,-19],[4,-27],[2,-11],[-1,-11],[-3,-5],[-3,-2],[-33,25],[-5,8],[-1,14],[-1,39],[6,25],[6,17],[2,5],[3,16],[3,37],[-3,26],[-3,16],[-1,2],[-6,13],[-14,30],[-21,45],[-3,6],[-13,26],[-20,41],[-8,15],[-19,36],[-89,162],[-26,38],[-5,5],[-2,3],[-31,6],[-4,3],[-5,10],[-1,1],[-3,6],[-38,97],[-1,2],[-8,32],[-7,31],[-7,21],[-25,39],[-2,4],[-5,3],[-5,3],[-5,-2],[-1,-4],[-9,-23],[-4,-5],[-3,1],[-7,8],[-29,40],[-4,7],[-3,5],[-18,43],[-8,20],[-5,14],[-3,7],[-4,2],[-1,1],[-23,0],[-6,3],[-16,6],[-1,0],[-63,71],[-8,22],[-25,75],[-1,5],[-10,39],[-26,101],[-9,41],[-43,160],[-31,61],[-12,26],[-5,13],[-1,3],[-14,51],[-5,19],[-5,26],[-4,30],[-10,71],[-7,29],[-4,13],[-2,3],[-4,5],[-11,15],[-9,16],[-14,58],[-5,30],[-7,38],[-2,20],[-1,3],[-5,45],[-1,7],[-1,48],[-1,26],[0,27],[0,40],[1,4],[-82,-1]],[[76281,72766],[11,-80],[1,-1],[16,-64],[12,-48],[35,-154],[29,-116],[66,-151],[41,-123],[-3,-95],[-47,-219],[-71,-75],[-86,105],[-58,-146],[-25,-120],[-1,-92],[45,-284],[-12,-195],[2,-107],[-43,-34],[19,-105],[-7,-58],[-19,-48],[-46,-50],[-16,-73],[-15,-15],[-7,-8],[4,-27],[19,-114],[49,-89],[52,6],[-3,-112],[-110,-169],[-22,-73],[-16,47],[-51,13],[-2,3],[-27,46],[-47,17],[-54,19],[-14,76],[-48,-36],[9,-23],[21,-55],[63,-139],[28,-34],[49,42],[11,9],[-7,-95],[16,-118],[10,-103],[3,-87],[15,-131],[7,-71],[21,-78],[19,-92],[-13,-8],[-19,-12],[-12,-15],[-6,-58],[-3,-40],[-27,-43],[-12,-9],[-14,-20],[-17,-23],[-16,-20],[-13,-16],[-12,-17],[-12,-16],[-11,-26],[-9,-27],[-15,-63],[-8,-27],[-8,-27],[-2,-40],[2,-37],[6,-36],[-1,-91],[-8,-59],[-16,-62],[-10,-25],[-4,-33],[0,-34],[-41,-55],[-29,-51],[-13,-25],[10,96],[27,175],[-17,70],[-18,83],[-3,109],[-52,5],[-26,16],[-17,88],[-22,31],[-24,32],[-45,141],[-29,78],[-15,33],[-12,27],[-28,-15],[-27,-66],[17,-57],[27,-16],[3,-86],[45,-41],[-13,-81],[50,-121],[21,-104],[40,-74],[23,-50],[51,-198],[-19,-102],[17,-84],[19,11],[12,7],[50,-14],[-8,-71],[-41,-113],[-7,-36],[-5,-31],[-24,-73],[-14,-82],[-42,-82],[-49,-51],[2,-35],[-11,-32],[9,-41],[-8,-34],[-11,-101]],[[75590,67138],[-20,-6],[-18,18],[-20,25],[-12,7],[-14,-3],[-11,-11],[-5,0],[-8,0],[-12,-11],[-5,-36],[10,-51],[5,-8],[9,-14],[9,-37],[-15,1],[-7,-1],[-6,0],[-18,0],[-13,-1],[-32,39],[-14,13],[-15,24],[-10,20],[-11,22],[-11,17],[-35,-7],[-13,6],[-14,9],[-16,4],[-14,28],[-6,65],[-8,26],[-23,48],[-7,34],[15,-8],[13,2],[13,5],[13,11],[-13,22],[-12,21],[-12,3],[-12,14],[-17,18],[-9,27],[-13,14],[-17,7],[-3,-2],[-12,-7],[-14,-23],[-13,5],[-14,9],[-14,13],[-10,9],[-18,12],[-13,-1],[-12,16],[-14,9],[-13,25],[-13,5],[-2,0],[-13,-3],[-13,-4],[-11,-10],[-14,0],[-13,8],[-10,29],[-13,10],[-4,14],[-4,16],[-16,21],[-10,24],[-2,2],[-10,14],[-13,6],[-15,-11],[-9,-26],[-12,-16],[-18,-5],[-16,4],[-15,18],[-9,35],[-10,26],[-2,4],[-11,19],[-8,29],[-1,35],[-7,40],[-13,16],[-11,21],[-12,10],[-11,-17],[-15,5],[-12,0],[-13,-3],[-11,22],[1,41],[15,49],[-11,13],[-14,12],[-13,11],[-11,29],[10,34],[-8,28],[-12,2],[-14,-5],[-12,2],[-5,31],[-5,38],[-15,22],[-13,18],[-2,37],[-10,30],[6,33],[0,37],[-16,1],[-13,15],[-9,20],[-4,58],[14,3],[10,29],[-9,26],[-5,42],[-11,6],[-9,28],[-14,20],[-12,13],[-12,-1],[-14,6],[6,31],[-9,27],[-11,14],[-10,27],[-12,27],[-11,19],[-19,32],[-11,19],[-13,-1],[-14,-6],[-4,41],[-13,35],[-13,20],[-12,-10],[-15,-7],[-12,31],[-8,37],[-12,4],[-10,20],[-11,17],[-8,32],[-5,34],[-12,16],[-14,8],[7,29],[4,35],[-12,-7],[-15,0],[-3,37],[-14,0],[-12,15],[-11,-10],[-12,12],[-12,22],[-21,14],[-9,25],[-10,33],[-4,33],[-7,42],[-12,16],[-14,-6],[-6,35],[-7,31],[-8,27],[-14,6],[-12,3],[-13,10],[-10,24],[-11,14],[-11,16],[-12,3],[-12,17],[-8,29],[-10,29],[-1,45],[-4,38],[-10,23],[-12,21],[-12,-13],[-15,5],[-14,-11],[-13,-6],[-15,11],[-12,4],[-11,-19],[-13,-4],[-12,-9],[-10,-19],[-14,-12],[-12,10],[-14,-7],[-11,-17],[-8,28],[-6,30],[-8,28],[-11,15],[-2,36],[-8,28],[-12,25],[-5,38],[-13,13],[-6,31],[-6,33],[2,34],[-6,31],[-11,10],[-14,15],[-13,12],[-9,29],[-12,18],[-12,4],[-13,-10],[-12,1],[-13,18],[-13,-8],[-11,-17],[-12,-10],[-12,20],[-12,3],[-14,0],[-14,-11],[-11,-13],[-17,-9],[-17,-22],[-11,-38],[-12,-22],[-14,-20],[-12,-28],[-8,-27],[-1,-43],[-2,-38],[-8,-39],[-76,-156],[-10,-25],[-108,-274],[-23,-52],[-19,-44],[-92,-215],[-26,-61],[-14,-32],[-27,-64],[-4,13]],[[73706,76295],[57,-79],[-6,-21],[5,-9],[4,-2],[4,-6],[12,-18],[9,-14],[15,-25],[12,-20],[16,-22],[11,44],[22,-37],[-7,-28],[18,-23],[-5,-20],[11,-39],[2,-7],[0,-77],[6,-5],[33,-29],[31,-35],[11,-20],[13,-14],[11,-31],[13,-20],[17,-17],[24,2],[38,-83],[9,31],[13,31],[9,28],[10,37],[8,31],[7,33],[0,37],[3,35],[11,21],[8,12],[5,10],[2,4],[0,7],[-5,29],[-4,79],[-10,99],[-90,116],[-26,230],[-1,13],[-17,-24],[-14,-19],[-12,31],[-23,51],[-39,75],[-20,-76],[-10,-37],[12,-85],[0,-34],[-37,-174],[-11,24],[-11,24],[-10,20],[-17,20],[-15,11],[-12,-9],[-6,16],[-9,23],[-76,124],[-1,8],[3,95],[1,39],[2,50],[2,63],[2,42],[-15,11],[-67,16],[-54,13],[-36,10],[-68,-194],[37,-48]],[[73511,76589],[-36,-93],[-15,-33],[-19,-46],[-17,-65],[-19,-56],[-12,-29],[-26,-81],[-7,6],[-22,-4],[-32,16],[-10,4],[-11,4],[-7,11],[-5,9],[-1,-3],[-1,-9],[-29,-128],[-22,-98],[-6,-32],[-8,-33],[-17,-74],[-5,-24],[-58,-192],[-8,-30],[-22,-74],[-13,-51],[-9,-41],[-10,-37],[-11,-41],[-23,-63],[-15,-26],[-1,-2],[-15,-16],[-7,-7],[-37,-38],[2,-23],[7,-42],[9,-61],[7,-46],[11,-28],[-35,-4],[-36,-12],[2,-60],[-13,-15],[0,-2],[4,-77],[-1,-3],[-1,-2],[1,-15],[0,-1],[-5,-9],[12,-52],[1,-44],[2,-61],[0,-4],[1,-5],[5,-1],[0,-13],[5,-1],[6,-2],[18,-9],[12,-20],[4,-9],[-1,-36],[-8,-47],[-14,-55],[-1,-7],[-4,-29],[11,6],[4,1],[13,-5],[19,-30],[15,-35],[14,-12],[10,-4],[9,1],[7,9],[6,6],[9,5],[4,4],[2,-6],[80,-242],[8,-27],[2,-6],[7,28],[2,7],[13,42],[7,38],[1,3],[7,26],[3,34],[1,49],[-3,41],[-8,31],[-12,29],[-1,3],[-19,49],[1,9],[0,2],[6,15],[0,11],[-3,9],[-3,3],[-11,0],[-4,-7],[-5,-15],[-21,55],[14,52],[-4,16],[-7,23],[6,17],[-1,9],[-5,19],[-43,179],[-14,63],[1,2],[7,9],[-11,75],[-7,48],[15,25],[1,1],[69,114],[43,-44],[16,-17],[14,-18],[9,-26],[6,-63],[4,-42],[12,-53],[7,-32],[8,-35],[25,-111],[16,-73],[3,-5],[1,5],[12,35],[20,54],[0,9],[3,48],[6,73],[6,0],[7,5],[4,4],[3,-8],[13,23],[12,20],[8,-9],[15,-22],[14,-10],[16,0],[15,-9],[8,-32],[14,-15],[13,-4],[11,-11],[13,-10],[22,-20],[6,-8],[4,-29],[16,9],[4,2],[14,16],[11,12],[79,88],[22,27],[57,65],[16,17],[14,14],[9,107],[1,16],[7,-2],[1,9],[3,35],[1,9],[13,145],[8,109],[3,43],[-4,100],[-6,39],[10,21],[6,77],[14,177],[0,1],[-49,68],[-56,92],[-2,3],[16,49],[2,6],[-1,0],[-11,19],[-6,12],[4,10],[-7,14],[-11,-24],[-29,43],[-5,9],[-1,14],[1,11],[16,66]],[[78583,78642],[-8,-1],[-13,-2],[-4,-1],[-12,-2],[-15,-2],[-6,-1],[-6,-1],[-15,2],[-15,13],[-11,12],[-11,14],[-13,15],[-11,18],[-16,24],[-15,24],[-14,16],[-14,-4],[-12,-16],[-13,-11],[-22,-4],[-13,7],[-12,5],[-14,-8],[-12,-7],[-17,-5],[-18,-4],[-14,7],[-12,3],[-11,-11],[-14,-10],[-14,9],[-10,6],[-39,9],[-1,-39],[3,-34],[3,-39],[0,-4],[2,-37],[4,-34],[0,-40],[-2,-39],[-5,-40],[-1,-34],[0,-39],[1,-36],[0,-42],[-6,-35],[-6,-32],[-8,-29],[-9,-10],[-3,-3],[-27,59],[-30,66],[-8,18],[-22,50],[-27,52],[-2,4],[-10,18],[-21,65],[-14,27],[-11,25],[-7,33],[-12,15],[-11,22],[-15,-5],[-4,39],[-11,20],[-12,6],[-11,17],[-11,12],[-4,4]],[[77377,79816],[-17,49],[-20,41],[-14,27],[-15,35],[-22,50],[-17,41],[-12,29],[-11,23],[-24,54],[-10,24],[-4,8],[-15,34],[-13,29],[-10,23],[-20,44],[-15,33],[-10,24],[-17,38]],[[77732,81824],[12,-29],[12,-47],[13,-85],[1,-11],[13,-57],[17,-51],[35,-86],[29,-71],[32,-104],[13,-58],[12,-58],[4,-32],[1,-35],[38,-84],[36,-90],[10,-20],[11,-15],[10,-17],[11,-16],[10,-17],[11,-14],[12,-14],[10,-17],[11,-15],[11,-15],[11,-7],[12,-10],[12,-8],[12,-1],[12,-6],[12,-2],[12,-2],[12,-1],[12,1],[12,-1],[12,-7],[12,-10],[12,-10],[12,-7],[12,-8],[12,-1],[12,3],[11,-9],[1,0],[11,-13],[10,-19],[8,-28],[0,-34],[4,-33],[6,-30],[5,-31],[7,-31],[6,-29],[5,-34],[2,-28],[0,-7],[2,-7],[1,-38],[-1,-15],[0,-33],[0,-3],[1,-14],[7,-28],[10,-49],[12,-43],[3,-11],[11,-51],[9,-50],[9,-35],[9,-15],[11,-5],[10,6],[17,-8],[8,-14],[3,-6],[1,-9],[4,-9],[7,-17],[14,-43],[5,-31],[0,-27],[-1,-28],[1,-6],[0,-14],[6,-33],[7,-33],[10,-20],[11,-2],[12,8],[12,7],[5,31],[0,35],[-8,26],[5,27],[1,4],[12,2],[10,-21],[10,-20],[2,-6],[7,-16],[10,-26],[9,-24],[6,-16],[3,-7],[8,-27],[6,-29],[6,-31],[5,-31],[5,-31],[4,-33],[2,-34],[-3,-34],[-12,-9],[-12,-5],[-12,-4],[-12,2],[8,-26],[10,-19],[8,26],[12,6],[10,-20],[2,-34],[10,-21],[8,-25],[10,-21],[6,-30],[5,-31],[6,-31],[6,-30],[6,-30],[3,-34],[2,-34],[3,-33],[1,-35],[1,-35],[-2,-34],[0,-34],[-2,-34],[-2,-34],[-3,-34],[-3,-34],[-5,-31],[-4,-32],[-85,-49],[0,-51],[-12,-1],[-12,8],[-11,13],[-11,8],[-10,20],[-12,9],[-14,-1]],[[68059,73671],[-50,-94],[-17,-32],[-13,-26],[-26,-47],[-11,-20],[-10,-19],[-39,-72],[-18,-33],[-21,-37],[-16,-31],[-68,-126],[-11,-20],[-22,-41],[-22,-41],[-21,-38],[-21,-39],[-15,-29],[-24,-44],[-13,-22],[-10,-20],[-24,-42],[-28,-53],[-17,-31],[-16,-30],[-71,-131],[-15,-27],[-18,-33],[-14,-25],[-18,-33],[-14,-26],[-51,-93],[-19,-36],[-12,-25],[-5,-10],[-23,-43],[-19,-35],[-14,-25],[-15,-28],[-60,-115],[-12,-22],[-25,-45],[-11,-21],[-60,-110],[-32,-58],[-13,-25],[-19,-36],[-52,-95],[-25,-48],[-34,-61],[-62,-114],[-16,-29],[-17,-30],[-30,-52],[-18,-33],[-1,-3],[-45,-80],[-43,-81],[-23,-42],[-102,-187],[-35,-65],[-23,-44],[-14,-25],[-15,-28],[-26,-47],[-53,-99],[-19,-34],[-29,-55],[-8,-15],[-33,-61],[-22,-40],[-4,-7],[-10,-20],[-11,-27],[-15,-36],[-11,-41],[-10,-25],[-14,-37],[-1,-3],[-43,-115],[-49,-129],[-61,-172],[-8,-24],[-10,-25],[-11,-21],[-98,-265],[-26,-74],[-24,-64],[-20,-56],[-55,-145],[-27,-72],[-49,-130],[-10,-26],[-29,-78],[-3,-6],[-12,-32],[-37,-98],[-44,-117],[-10,-26],[-15,-41],[-28,-72],[-9,-24],[-72,-193],[-33,-85],[-19,-50],[-17,-46],[-53,-140],[-2,-1],[-9,-9],[-8,-27],[-8,-9],[-5,-5],[-52,-51],[-3,2],[-1,2],[-7,12],[-6,38],[0,6],[-1,9],[-1,14],[-3,39],[0,11],[0,15],[-1,6],[0,4],[-6,29],[-3,8],[-5,5],[-9,3],[-81,14],[-1,-1],[-40,-69],[-7,-20],[-5,-8],[-2,0],[-3,0],[-10,10],[-23,32],[-39,57],[-7,10],[-9,16],[-2,7],[-4,36],[-4,31],[-2,22],[0,1],[-18,55],[-1,2],[-5,13],[-9,6],[-3,0],[-11,-2],[-8,-5],[-8,-10],[-6,-7],[-11,-20],[-10,-29],[-6,-7],[0,-1],[-6,3],[-1,1],[-13,27],[-3,5],[-4,12],[-1,4],[-1,4],[-5,18],[-3,15],[-3,13],[-9,46],[-2,11],[-1,3],[-6,65],[-1,6],[-19,28],[-1,0],[-4,1],[-1,1],[-1,-1],[-23,-46],[-44,-82],[-5,-2],[-10,-6],[-39,-21],[-11,-1],[-28,8],[-4,0],[-5,-30],[-11,-17],[-20,-2]],[[64543,68089],[-22,58],[-67,173],[-44,115],[-36,95],[-1,1],[-40,111],[-38,98],[-13,38],[-1,3],[-15,43],[0,1],[-30,86],[-13,35],[-8,24],[-47,123],[-36,60],[-40,101],[-23,59],[-12,30],[-71,180],[-16,42],[-20,50],[-25,64],[-15,35],[-37,95],[-321,826],[-13,34],[-229,584],[-24,64],[-4,10]],[[63282,71327],[14,14],[11,24],[12,12],[25,-12],[22,-14],[21,1],[22,26],[21,67],[6,51],[17,78],[5,38],[7,45],[10,56],[-1,56],[10,47],[19,56],[-5,45],[6,65],[8,39],[10,44],[10,36],[20,56],[-16,81],[-13,87],[-22,45],[-3,60],[2,16],[3,20],[0,1],[7,71],[13,87],[7,68],[-1,62],[-16,47],[-14,24],[-27,28],[-18,5],[2,61],[11,64],[15,44],[8,38],[27,50],[23,31],[19,43],[5,50],[-6,41],[-10,47],[4,60],[-9,102],[-16,88],[-8,60],[-10,26],[-2,8],[-9,26],[1,30],[1,9],[-4,15],[-4,16],[-10,27],[-20,36],[-17,20],[-50,54],[-34,-2],[-6,103],[17,48],[1,3],[6,52],[5,96],[14,78],[5,27],[12,78],[22,83],[18,69],[3,77],[24,126],[-6,71],[13,126],[7,68],[18,100],[48,-19],[13,-5],[12,12],[15,5],[22,10],[18,5],[28,1],[25,26],[9,88],[9,32],[26,71],[2,59],[2,74],[24,59],[12,29],[15,6],[13,-10],[14,3],[12,-11],[13,-11],[2,19],[2,21],[7,28],[9,59],[18,55],[9,30],[11,33],[12,61]],[[59684,70556],[-13,-41],[-12,-13],[-14,-12],[-12,-1],[-12,-25],[-10,-33],[-8,-28],[-11,-30],[-6,-34],[-14,-53],[-9,-44],[-17,-87],[-8,-28],[-12,-67],[-8,-49],[-10,-73],[-2,-38],[-18,-70],[-8,-52],[-7,-37],[-3,-39],[-7,-46],[-7,-56],[-8,-30],[-5,-64],[-12,-62],[-2,-49],[-4,-44],[-6,-30],[-9,-62],[-4,-66],[-6,-44],[-7,-32],[-4,-37],[0,-47],[-3,-39],[-3,-39],[-5,-70],[-5,-53],[-8,-58],[-8,-68],[-6,-43],[-9,-88],[-3,-47],[-5,-31],[-7,-45],[-4,-42],[-6,-30],[-6,-47],[-8,-29],[-5,-33],[-7,-47],[-8,-29],[-2,-57],[-11,-34],[-6,-32],[-14,-55],[-8,-28],[-4,-33],[-10,-47],[-3,-36],[-9,-41],[-10,-39],[-14,-29],[-16,-46],[-5,-62],[-5,-38],[-10,-29],[-9,-41],[-9,-25],[-9,-46],[-10,-49],[-10,-30],[-9,-33],[-4,-47],[23,-26],[40,-50],[46,-57],[130,-160],[26,-32],[35,-45],[49,-60],[49,-60],[59,-73],[14,-18],[13,14],[13,-21],[13,5],[13,-19],[18,3],[13,5],[14,21],[7,29],[11,14],[18,8],[15,19],[14,23],[13,18],[8,26],[18,7],[12,-14],[11,-16],[8,-25],[11,-25],[3,-6],[7,-15],[-3,-34],[-7,-42],[-17,-70],[-4,-46],[2,-50],[2,-41],[15,-60],[8,-22],[13,-40],[11,-28],[18,-21],[14,-32],[5,-7],[9,-14],[12,-11],[10,-22],[11,-19],[14,-21],[17,-37],[10,-25],[8,-37],[2,-42],[-4,-49],[-8,-29],[-17,-41],[-15,-51],[-9,-37],[-9,-27],[0,-1],[5,-30],[16,-15],[7,-4],[7,-5],[12,-5],[12,-7],[1,0],[12,-13],[14,-13],[18,-10],[13,-2],[14,-3],[8,-25],[1,-34],[11,-19],[12,6],[15,14],[12,7],[14,0],[12,-11],[12,-16],[12,-10],[15,-5],[12,-8],[14,-14],[11,-22],[9,-30],[5,-34],[7,-32],[9,-25],[12,-14],[13,-2],[14,-4],[14,-5],[17,0],[14,4],[13,7],[14,8],[14,-2],[14,-7],[15,-5],[13,-15],[14,-14],[13,-17],[15,-12],[13,-5],[13,-15],[11,-21],[8,-30],[7,-31],[11,-18],[15,-11],[11,-11],[12,-13],[13,-12],[13,-9],[11,-14],[12,-15],[16,-1],[14,-8],[14,-10],[14,0],[13,6],[12,-10],[9,-41],[8,-28],[8,-26],[11,-20],[9,-24],[3,-36],[0,-37],[5,-41],[3,-34],[3,-46],[4,-38],[8,-31],[8,-29],[0,-36],[9,-30],[7,-42],[3,-36],[4,-44],[6,-31],[6,-39],[12,-21],[14,-1],[15,6],[14,2],[12,-8],[13,-2],[14,16],[13,19],[10,36],[11,53],[169,-76],[28,-13],[90,-41],[31,-13],[20,-11],[56,-24],[30,-14],[14,-6],[16,-7],[137,-64],[3,-1],[23,-10]],[[61531,64292],[-11,-30],[0,-34],[3,-39],[1,-60],[-2,-34],[-15,-8],[-11,-13],[-3,-3],[-12,-32],[-12,-54],[-14,-34],[-11,-27],[-11,-51],[7,-39],[4,-23],[5,-30],[-13,-1],[-20,-42],[0,-1],[-16,-30],[-13,-17],[-7,-56],[-1,-41],[-11,-63],[-16,-38],[-10,-33],[-12,-19],[-18,-21],[-16,-28],[-12,-30],[-12,-23],[-3,-6],[-14,-13],[-30,18],[-16,22],[-15,11],[-11,-24],[-7,-29],[-8,-52],[-4,-47],[-2,-36],[0,-41],[1,-58],[-8,-41],[-8,-27],[-4,-33],[0,-2],[3,-39],[-8,-26],[-16,-12],[-14,-17],[-12,-31],[-7,-46],[-8,-30],[-10,-40],[-12,-75],[-7,-37],[7,-62],[12,-24],[25,-19],[-27,-8],[-17,-50],[-67,-58],[-32,2],[-16,2],[-28,-10],[-26,-20],[-25,-18],[-16,-49],[-12,-39],[0,-41],[3,-37],[14,-50],[-16,-32],[-6,-16],[-2,-5],[-4,-13],[-11,-70],[2,-66],[-23,-30],[-22,-31],[-25,-39],[-19,-26],[2,-37],[2,-40],[8,-49],[2,-27],[4,-52],[1,-40],[-2,-70],[4,-63],[12,-59],[-32,-68],[-44,-83],[-18,-23],[-29,-1],[-27,0],[-12,-7],[-6,-67],[-23,-24],[-13,-9],[-22,-4],[-22,1],[-18,27],[-5,0],[-13,0],[-25,-18],[-26,-1],[-7,-58],[-10,-25],[-33,-7],[-46,-25],[-32,-63],[-1,-4],[-12,-45],[-11,-22],[-34,-8],[2,-54],[-32,-95],[-19,-14],[-19,-38],[-13,-66],[-1,-151],[-1,-43],[-12,-21],[-18,-11],[-64,-26],[-75,-67],[-43,-6],[-15,-27],[-9,-17],[-2,-4],[-18,-20],[-21,-13],[-11,-9],[-16,-20],[-15,-21],[-9,-65],[-7,-35],[-10,-42],[-10,-34],[-10,-51],[-12,-21],[-13,-19],[-11,-12],[-11,-13],[-24,-15],[-13,3],[-18,26],[-6,14],[-5,10],[-18,8],[-14,2],[-12,-1],[-24,13],[-17,25],[-14,10],[-15,-18],[-13,-45],[-12,-23],[-11,-30],[-9,-43],[-16,-40],[-11,-24],[-7,-43],[0,-35],[0,-1],[-6,-41],[-6,-40],[-11,-36],[-2,-6],[-11,-27],[-4,-41],[-9,-49]],[[59430,59385],[-9,-42],[4,-33],[10,-76],[6,-33],[6,-35],[2,-7],[11,-29],[-4,-34],[-14,-39],[-13,-25],[-10,-21],[-14,-20],[-13,-14],[12,-18],[16,-15],[16,-8],[5,-33],[11,-16],[11,-20],[2,-6],[12,-23],[11,-31],[16,-18],[16,2],[-6,-41],[-13,-22],[-17,-17],[-8,-27],[-5,-50],[-12,-37],[-14,-32],[-11,-28],[-16,-25],[-13,-18],[-16,-15],[-18,-19],[-10,-25],[-7,-39],[-4,-33],[-15,-13],[-13,23],[-11,30],[-11,31],[-12,40],[-8,42],[-10,26],[-11,16],[-12,20],[-16,13],[-14,6],[-17,-12],[-14,-27],[-15,-28],[-10,-31],[-10,-25],[-14,-23],[-18,-29],[-4,-27],[-1,-7],[-38,-53],[-42,-41],[-14,-10],[-12,3],[-6,1],[-19,2],[-17,9],[-25,29],[-26,-19],[-2,-42],[-23,-70],[-16,-27],[-8,-36],[1,-35],[-1,-1],[-8,-62],[-16,-30],[-35,-58],[-20,-12],[-30,-33],[-14,-9],[-17,-45],[-7,-2],[-4,-1],[-15,-6],[-20,-31],[-6,-31],[4,-36],[0,-1],[-5,-35],[-12,-18],[-1,-2],[-22,-47],[-10,-47],[-11,-31],[-16,-40],[-14,-30],[-10,-30],[-17,-55],[-15,-28],[-12,6],[-21,-19],[-10,-23],[-11,-22],[-12,-44],[-21,-67],[-7,-48],[-8,-46],[-11,-52],[-5,-24],[-2,-9],[-16,-79]],[[58409,56951],[-8,15],[-36,64],[-114,221],[-10,19],[-58,114],[-62,118],[-103,199],[-32,61],[-41,79],[-44,86],[-39,75],[-23,45],[-56,106],[-14,30],[-59,112],[-23,44],[-22,42],[-12,22],[-17,31],[-15,32],[-20,41],[-13,25],[-11,23],[-13,27],[-10,21],[-2,5],[-16,31],[-10,20],[0,1],[-17,35],[-25,51],[-16,32],[-14,28],[-9,20],[-39,79],[-20,43],[-1,1],[-8,17],[-2,3],[-10,19],[-35,73],[-99,202],[-11,21],[-53,107],[0,1],[-8,10],[-6,9],[-15,26],[-31,67],[-24,62],[-13,39],[-11,26],[-11,24],[-16,32],[-34,39],[-13,11],[-22,9],[-1,1],[-10,19],[-6,40],[-8,32],[-8,28],[-17,49],[-16,48],[-5,30],[-10,55],[-11,28],[-18,15],[-25,22],[-18,17],[-11,27],[-16,55],[-10,28],[-37,64],[-19,29],[-14,28],[-2,1],[-10,6],[-7,-10],[-10,-11],[0,-1],[-2,0],[-28,-7],[-32,0],[-14,-1],[-12,-5],[-19,-24],[-14,-23],[-24,-17],[-26,-12],[-10,-2],[-2,-1],[-17,4],[-13,17],[-12,15],[-12,16],[-33,57],[-13,22],[-43,74],[-25,42],[-23,37],[-25,41],[-11,17],[-4,5],[-63,102],[-6,10],[-18,30],[-10,16],[-70,114],[-14,22],[-18,30],[-49,78],[-48,76],[-50,86],[-12,18],[-13,23],[-32,52],[-17,25],[-15,25],[-31,49],[-95,153],[-14,24],[-15,23],[-49,81],[-29,47],[-24,39],[-16,25],[-24,40],[-22,34],[-27,47],[-24,43],[-16,28],[-33,48],[-14,20],[-14,23],[-70,111],[-16,25],[-35,55],[-21,34],[-1,2],[-35,56],[-19,31],[-17,28],[-19,30],[-183,303],[-19,31],[-42,69],[-13,20],[-73,116],[-23,37],[-73,117],[-20,32],[-13,21],[-19,31],[-12,18],[-1,2],[-18,30],[-18,27],[-18,31],[-31,50],[-43,69],[-39,62],[-11,17],[-12,19],[-102,164],[-16,26],[-55,88],[-42,68],[-136,218],[-131,213],[-25,40],[-11,17],[-13,21],[-42,67],[-26,42],[-20,33],[-15,24],[-20,33],[-74,118],[-62,100],[-85,138],[-108,172],[-40,65],[-108,173],[-31,50],[-34,55],[-20,31],[-33,53],[-23,37],[-24,38],[-33,54],[-47,76],[-26,40],[-56,91],[-41,65],[-4,6],[-32,51],[-47,75],[-11,18],[-95,153]],[[52776,66219],[40,94],[1,32],[8,160],[57,91],[57,138],[39,339],[-38,140],[52,581],[60,174],[25,175],[54,218],[95,322],[52,225],[31,164],[32,144],[71,120],[-6,143],[38,198],[5,28],[44,89],[63,352],[-7,116],[-2,154],[54,178],[-8,112],[52,400],[78,322],[84,304],[74,394],[16,149],[60,21],[29,143],[41,0],[66,0],[73,-116],[168,106],[3,212],[42,205],[21,147],[29,277],[0,120],[-69,167],[-25,305],[70,461],[-4,178],[61,318],[36,266],[51,137],[25,137],[35,140],[21,85],[91,195],[35,151],[20,307],[50,120],[-3,96],[-19,85],[-28,113],[44,174],[64,137],[145,-31],[84,31],[50,222],[-15,164],[7,219],[46,65],[0,126],[15,117],[70,44],[72,123],[25,259],[32,199],[34,116],[-10,194],[71,131],[197,-397],[950,-1914],[329,-664]],[[56780,65696],[-18,-236],[-1,-2],[-12,7],[-20,11],[-25,20],[-19,15],[-11,13],[-17,14],[-43,31],[-3,-18],[-17,-47],[-11,-31],[-2,-5],[-12,-35],[-16,-43],[-13,-18],[-12,-9],[-19,-95],[-11,-60],[-10,-65],[-10,-69],[-16,-104],[-6,-35],[-7,-38],[-8,-28],[-9,-46],[18,-17],[25,-22],[21,-14],[7,-29],[6,1],[5,-14],[11,-40],[15,-59],[2,-8],[5,-23],[12,-58],[6,-26],[27,-132],[-9,-18],[-9,0],[-22,-37],[0,-51],[8,3],[11,8],[0,-5],[-1,-24],[-3,-9],[-2,-62],[-14,-77],[26,-59],[-39,-111],[-12,-34],[-21,-58],[1,-13],[-16,-38],[-2,-7],[-18,-81],[3,-11],[-20,-104],[-19,-88],[-11,-52],[-6,-43],[-3,-39],[-7,-31],[16,-24],[1,0],[30,-60],[-2,-25],[-3,-25],[6,-1],[3,-1],[30,-11],[68,100],[5,-1],[34,-2],[30,-27],[32,-5],[3,-1],[67,-4],[25,-1],[5,92],[3,53],[2,47],[4,57],[2,39],[4,66],[4,77],[18,-16],[35,-32],[3,51],[4,117],[4,90],[-12,32],[-4,23],[7,11],[1,-4],[47,9],[13,2],[13,3],[16,3],[26,5],[89,17],[13,2],[32,7],[10,23],[11,20],[9,21],[12,25],[30,-23],[14,-11],[40,-33],[75,64],[24,20],[17,13],[17,15],[14,13],[18,16],[22,20],[23,19],[28,21],[26,19],[13,11],[-31,99],[32,217],[7,-1],[0,8],[9,55],[5,37],[8,60],[6,44],[-12,26],[1,43],[-3,54],[-16,41],[-16,36],[-19,43],[-25,20],[-23,12],[-1,4],[-7,22],[6,44],[4,62],[3,57],[3,59],[-5,49],[-5,38],[-4,34],[-14,27],[-34,-1],[-19,-8],[-39,-17],[-49,-53],[-13,-3],[5,47],[5,47],[7,68],[6,70],[-39,121],[3,18],[7,34],[-23,78],[-11,35],[-17,57],[-58,194],[-28,33],[-43,46],[-25,27],[-14,16],[-4,3],[-16,15],[-2,-2],[-1,-1],[-17,18],[-2,1],[2,31],[2,72],[1,45],[1,37],[2,65],[-3,33],[-8,36],[-21,-26],[-16,-36],[-12,-34],[-9,-50],[-18,-110],[-34,-205],[-7,-54],[-11,-58],[-13,-53],[-5,-45],[-8,-36],[-13,-65],[-12,-76],[-4,-65]],[[78583,78642],[12,-21],[12,-11],[-3,-34],[10,-22],[1,-35],[1,-34],[2,-36],[3,-33],[5,-33],[8,-27],[3,-34],[11,-23],[4,32],[-5,33],[19,3],[12,-21],[11,-19],[8,-27],[7,-29],[0,-35],[-3,-34],[-3,-33],[-2,-37],[-2,-44],[-5,-31],[-11,-14],[-12,-12],[1,-36],[12,-15],[0,-35],[3,-33],[9,-22],[0,-35],[3,-33],[2,-35],[6,-48],[-14,-137],[10,-85],[-5,-70],[-6,-69],[0,-64],[-14,-100],[5,-82],[7,-88],[0,-37],[-1,-52],[-16,-53],[-24,30],[-27,37],[-42,-53],[-28,-35]],[[63282,71327],[-11,-17],[-22,-38],[-7,-28],[-10,-24],[-11,-31],[-14,-20],[3,-52],[-1,-36],[-9,-43],[-10,-30],[-15,-29],[-17,-29],[-21,-15],[-12,-6],[-12,-7],[-6,-21],[-2,-6],[-5,-33],[-11,-26],[-6,-33],[-13,18],[-10,20],[-17,15],[-3,3],[-12,7],[-10,-20],[-3,-10],[-5,-22],[-14,-23],[-5,-33],[-15,-21],[-8,-33],[-9,-32],[-7,-49],[-3,-18],[-3,-21],[-2,-35],[-9,-27],[-3,-43],[-11,-31],[-14,-37],[-8,-27],[-7,-35],[-8,-37],[-15,-27],[-7,-31],[-6,-49],[-24,-54],[-33,-71],[-18,-19],[-33,-67],[-29,-193],[12,-136],[18,-21],[3,-36],[1,-13],[4,-42],[-4,-35],[-7,-28],[-2,-10],[-6,-64],[5,-49],[7,-33],[14,-17],[9,-25],[0,-34],[4,-51],[0,-4],[2,-109],[-12,-42],[-12,-16],[-15,-41],[-1,-3],[-15,-48],[-10,-23],[-34,-69],[-12,-8],[-24,10],[-28,25],[-25,-28],[-17,-18],[-36,-32],[-16,-12],[-11,-15],[-16,-21],[-16,-10],[-18,0],[-10,-51],[-8,-33],[-14,-21],[-1,0],[-19,-16],[-11,-9],[-12,-24],[-5,-51],[-9,-74],[-5,-32],[-6,-33],[-13,-56],[-5,-41],[-8,-30],[-1,-4],[-1,-3],[-8,-20],[-1,-9],[-3,-45],[-6,-40],[-10,-19],[-12,-6],[-2,-1],[-16,-23],[-11,-21],[-10,-32],[-11,-22],[-13,-9],[-14,-15],[-10,-38],[-4,-38],[-11,-32],[-13,-16],[-17,1],[-18,29],[-11,29],[-14,35],[-10,28],[-7,29],[-14,-18],[-18,-40],[-12,-17],[-13,-26],[14,-44],[52,-130],[11,-38],[-4,-63],[-8,-32],[-12,-20],[-8,-40],[0,-1],[-11,-23],[-13,0],[-1,-35],[6,-53],[-19,-45],[-11,-31],[2,-44],[3,-21],[3,-22],[1,-51],[-2,-55],[-6,-47],[-12,-32],[-16,-30],[-2,-45],[-5,-47],[-11,-29],[3,-28],[2,-17],[15,-62],[10,-35],[13,-1],[11,-24],[0,-39],[6,-65],[3,-34],[-15,-26],[-20,-5],[-9,-34],[-5,-33],[-7,-50],[-7,-46],[-4,-40],[-12,-16],[-12,-29],[-11,-50],[-9,-55],[-13,-50],[-11,-73]],[[61923,66139],[-11,-49],[-14,-40],[-11,-42],[-4,-38],[-6,-39],[-5,-37],[-3,-23],[-2,-9],[0,-65],[-4,-38],[-17,-23],[-3,-13],[-5,-21],[-5,-31],[-11,-34],[-2,-5],[-8,-20],[-4,-40],[0,-10],[2,-26],[7,-54],[0,-40],[-10,-29],[-10,-22],[-13,-37],[-6,-47],[-3,-79],[3,-51],[-20,7],[-15,-2],[-15,-2],[-4,-1],[-23,-3],[-12,4],[-9,-33],[-11,-31],[2,-44],[-8,-33],[-11,-35],[0,-6],[-1,-46],[-13,-35],[-7,-32],[-1,-46],[0,-35],[-4,-35],[3,-43],[11,-45],[-5,-35],[-12,-3],[-17,-9],[-23,-30],[-6,-24],[-6,-23],[-7,-53],[-8,-61],[-2,-30],[-1,-26],[-5,-44],[-17,-51]],[[73706,76295],[-18,36],[-11,20],[-27,43],[-14,20],[-41,65],[-21,34],[-51,83],[-12,-7]],[[71624,63890],[27,-80],[1,-3],[-1,-8],[0,-3],[-10,-86],[-4,-33],[-4,-80],[0,-3],[-2,-32],[1,-35],[1,-21],[10,-130],[2,-29],[11,-31],[34,-15],[66,-46],[9,-12],[18,-61],[12,-66],[14,-45],[1,-59],[-14,-22],[-7,-50],[4,-80],[8,-187],[2,-26],[2,-36],[4,-50],[2,-16],[5,-73],[-1,-14]],[[71815,62458],[-9,-1],[-54,20],[-3,1],[-24,15],[-9,2],[-12,-15],[-4,-10],[-20,-85],[-1,-4],[0,-4],[-8,-31],[-39,-159],[-31,-22],[-1,-1],[-5,-2],[-8,-4],[-10,0],[-15,10],[-2,3],[-8,11],[-3,4],[-28,47],[-5,14],[-6,14],[-2,19],[0,82],[4,44],[2,16],[5,28],[8,31],[12,32],[7,15],[4,8],[12,13],[22,13],[3,3],[4,5],[5,19],[0,5],[0,5],[0,9],[-21,88],[-1,3],[-2,8],[-11,32],[-12,34],[-6,15],[-11,12],[-23,15],[-43,-15],[-20,-22],[-28,-41],[-16,-14],[-15,-4],[-4,2],[-6,-1],[-1,-2],[-32,-31],[-10,-10],[-14,-18],[-84,-104],[-35,2],[-11,-4],[-9,-9],[-8,-18],[-50,-150],[-4,-17],[-1,-9],[-2,-11],[-3,-50],[-6,-77],[-3,-13],[-4,-7],[-6,-6],[-4,0],[-6,-1],[-12,-1],[-29,-3],[-22,-3],[-3,0],[-62,-27],[-31,-64],[-8,-12],[-6,-5],[-1,0],[-9,1],[-4,3],[-9,7],[-4,5],[-3,4],[-13,30],[-14,34],[-15,39],[-11,10],[-14,8]],[[70814,62211],[-20,28],[-10,25],[-11,19],[-15,38],[-8,22],[-10,24],[-16,40],[-6,13],[-9,17],[-19,30],[-30,40],[-90,75],[0,6],[-39,47],[-39,34],[-2,-1],[-19,30],[-7,9],[0,6],[-5,12],[-3,8],[-7,7],[-74,34],[-16,-5],[-6,-2],[-31,-45],[-7,-7],[-6,0],[-14,14],[-9,11],[-31,39],[-6,8],[-2,2],[-4,10],[-1,7],[2,20],[7,12],[7,7],[4,1],[27,7],[27,33],[2,5],[5,9],[1,18],[1,33],[-1,18],[-3,16],[-12,27],[-14,23],[-11,10],[-15,2],[-7,-7],[-19,-23],[-7,0],[-10,6],[-26,36],[-12,12],[-23,16],[-19,20],[-3,3],[-1,5],[0,1],[-34,116],[-8,20],[-8,11],[-33,30],[-28,22],[-16,5],[-17,-2],[-9,-7],[-19,-21],[-14,-23],[-7,-16],[-70,-164],[-7,-19],[-18,-117],[-23,-93],[-5,-19],[-13,-53],[-5,-20],[4,-8],[88,-193],[2,-3],[2,-1],[12,-10],[7,-1],[7,5],[14,3],[8,-7],[5,-13],[4,-15],[4,-38],[5,-35],[0,-42],[-3,-20],[-9,-16],[-18,-11],[-27,-11],[-3,-1],[-26,-10],[-14,13],[-1,0],[0,2],[0,4],[-56,148],[-8,7],[-10,-1],[-9,-6],[-7,2],[-11,8],[-36,42],[-1,0],[-1,2],[-11,22],[-4,7],[-20,36],[-36,83],[-23,48],[-12,17],[-19,21],[-33,23],[-43,27],[-14,8],[-14,0],[-23,-23],[-7,1],[-7,4],[-2,1],[0,1],[-14,14],[-2,0],[-28,23],[-1,0],[0,1],[-25,34],[-36,34],[-13,8],[-8,1],[-80,1],[-10,-4],[-9,-8],[-4,-21],[-3,-22],[-1,-3],[-2,-13],[-11,-36],[-11,-25],[-7,-10],[-12,-10],[-16,-4],[-15,15],[-16,21],[-34,66],[-11,35],[-6,13],[-6,5],[-11,0],[-45,4],[-81,-26],[-109,-33],[-16,-6],[-17,-12],[-22,-30],[-15,-16],[-7,-4],[-1,0],[-37,-2],[-29,-1],[-6,2],[-11,6],[-7,5],[-1,1],[-1,1],[-7,14],[-3,11],[0,12],[-2,4],[-5,83],[1,53],[3,55],[-1,18],[-8,35],[-1,3],[-10,25],[-2,3],[-7,6],[-11,11],[-22,11],[-13,1],[-7,-3],[-15,-23],[-21,-39],[-35,-64],[-55,-41],[-23,0],[-17,-11],[-5,-7],[-20,-54],[-5,-21],[-8,-87],[-4,-97],[0,-21],[-1,-7],[-6,-60],[-15,-80],[-6,-26],[-7,-19],[-22,-38],[-43,-74],[-7,-12],[-11,-19],[-37,-41],[-13,-9],[-1,-1],[-57,-20],[-46,-17],[-32,-9],[-18,1],[-4,-1],[-56,-12],[-4,0],[-4,-2],[-14,-5],[-2,0],[-4,-3],[-2,-2],[-75,-57],[-10,-13],[-16,-30],[-13,-30],[-9,-31],[-2,-15],[-3,-18],[-3,-13],[-1,-9],[-6,-18],[-5,-13],[-7,-18],[-1,0],[-8,-14],[0,-1],[-1,0],[-8,-3],[-15,7],[-12,13],[-3,4],[0,3],[0,1],[-6,10],[-18,36],[-11,20],[-3,5],[-10,15],[-9,14],[-40,35],[-9,54],[-23,-39],[-6,-9],[-30,-49],[-7,-10],[-1,-24],[-6,-115],[2,-22],[3,-20],[9,-21],[9,-33],[2,-16],[0,-1],[-1,-18],[0,-4],[-8,-38],[-4,-13],[0,-1],[-4,-3],[-3,-4],[-10,-5],[-16,13],[-14,7],[-10,0],[-44,-18],[-21,-4],[-7,4],[-5,8],[-10,22],[-23,34],[-13,14],[-22,6],[-11,-4],[-16,-14],[-13,-23],[-17,-37],[-13,-37],[0,-1],[-14,-42],[-3,-11],[-2,-3],[-9,-10],[-16,-17],[-11,-18],[-27,-52],[-9,-23],[-46,-85],[-17,-45],[-5,-16],[-43,-128],[-2,-8],[-3,-13],[-8,-19],[-10,-15],[-1,-1],[-11,-14],[-26,-26],[-43,-43],[-11,-10],[-18,-11],[-25,-1],[-10,-5],[-7,-10],[-4,-13],[-7,-67],[0,-1],[-2,-14],[-2,-14],[-14,-37],[0,-2],[-11,-27],[-4,-10],[-8,-25],[-5,-18],[-5,-36],[0,-39],[1,-16],[14,-74],[3,-10],[5,-33],[0,-24],[0,-5],[0,-13],[-4,-18],[-5,-15],[-10,-10],[-35,-28],[-4,-2],[-7,-3],[-6,-3],[-1,1],[-25,16],[-52,33],[-31,19],[-24,100],[-6,17],[-6,12],[-6,7],[-2,1],[-2,1],[-6,3],[-3,-1],[-7,-2],[-7,-6],[0,-1],[-1,-1],[-5,-10],[-23,-64],[-15,-32],[-4,-4],[-12,-12],[-2,-3],[-1,0],[-19,-8],[-2,-1],[-37,-36],[-5,-8],[-8,-25],[-12,-50],[-7,-32],[-12,-19],[-12,6],[-11,50],[-3,14],[-5,39],[-8,28],[-5,11],[-27,73],[-10,16],[-1,1],[-9,9],[-10,5],[-33,6],[-9,2],[-13,-2],[-14,-8],[-9,-10],[-4,-7],[-15,-30],[0,-1],[-13,-37],[-13,-49],[-10,-22],[-5,-5],[-8,-4],[-17,-5],[-29,-17],[-17,33]],[[66173,60528],[-2,14],[-1,14],[-6,6],[-7,-3],[-2,-3],[-21,-32],[-5,-4],[-4,0],[-10,0],[-3,1],[-40,11],[-1,0],[-2,1],[-14,5],[0,1],[-5,9],[-4,10],[-1,9],[2,4],[37,77],[63,219],[26,129],[8,24],[2,5],[8,19],[21,25],[1,1],[6,5],[4,3],[11,4],[18,-7],[19,-7],[24,-9],[4,0],[6,0],[6,7],[2,7],[-2,17],[-1,6],[-42,113],[-3,6],[-2,6],[-1,9],[0,4],[2,67],[-10,14],[-25,36],[-7,15],[-1,6],[-4,19],[-1,46],[-1,7],[-5,11],[-2,4],[-12,22],[-70,126],[-8,10],[-19,16],[-19,8],[-9,-4],[-6,-2],[-2,3],[-43,75],[6,32],[4,44],[-14,15],[-18,27],[-16,32],[-9,36],[-11,36],[-9,30],[-1,2],[-11,41],[-5,32],[1,38],[-9,25],[-11,36],[-3,35],[7,47],[-1,49],[-13,10],[-9,23],[1,43],[-3,35],[5,34],[-10,23],[3,36],[8,41],[7,29],[9,29],[8,35],[9,36],[7,43],[1,37],[5,38],[13,2],[9,24],[-1,37],[1,55],[8,31],[-8,29],[-15,5],[-10,19],[-7,28],[11,13],[14,1],[10,-18],[13,-18],[13,-10],[13,-7],[13,6],[12,11],[12,20],[10,35],[12,10],[13,-10],[10,17],[9,30],[8,28],[8,26],[13,-4],[9,-25],[12,-19],[12,29],[11,27],[10,25],[8,33],[7,44],[-11,12],[-11,17],[-10,31],[-10,27],[2,34],[-2,37],[5,32],[8,28],[-3,34],[3,46],[-11,26],[2,37],[1,37],[-7,43],[-8,41],[-18,20],[-12,16],[-13,15],[-11,16],[-12,19],[-11,16],[-14,16],[-10,16],[-15,15],[-11,12],[11,30],[10,19],[16,17],[0,36],[-9,25],[-12,13],[-15,-5],[0,-37],[-13,-9],[-6,29],[-10,39],[-13,-14],[-16,-15],[-8,25],[-7,29],[-14,9],[-11,23],[-7,30],[-13,0],[-13,-6],[-3,35],[5,34],[7,-30],[10,31],[1,35],[-17,25],[10,25],[20,17],[6,34],[-13,11],[-13,6],[-13,-3],[-12,-5],[-15,12],[-12,19],[-6,41],[-7,29],[-11,13],[-11,-7],[-14,-2],[-13,17],[9,29],[9,23],[13,28],[-5,33],[9,24],[4,40],[13,21],[14,3],[11,14],[9,24],[7,31],[-3,34],[-12,39],[-12,36],[-8,44],[-9,47],[-11,22],[-14,7],[-18,-3],[-14,-1],[-14,-1],[-15,10],[-10,23],[-4,36],[-3,34],[-1,5],[-5,27],[-12,4],[-12,4],[-12,10],[-7,31],[-8,30],[-19,19],[-9,31],[-14,26],[-3,37],[8,28],[5,32],[-7,34],[-12,10],[-11,10],[-15,-1],[-10,20],[-5,34],[-10,32],[-13,30],[-9,22],[-10,23],[-10,21],[-10,23],[-8,26],[-18,29],[-14,14],[-15,17],[-35,90],[-76,197],[-87,226],[-53,138],[-51,131],[-32,83],[-17,44],[-44,112],[-18,48],[-10,24],[-29,78],[-9,25],[-26,67],[-14,38],[-36,92],[-66,169],[-9,24],[-9,24],[-80,208],[-72,188],[-47,123],[-78,205],[-30,76]],[[66173,60528],[-17,-19],[0,-44],[5,-72],[2,-48],[2,-30],[0,-43],[-3,-20],[-8,-35],[-31,-103],[-7,-21],[-6,-9],[-14,-5],[-19,9],[-7,-2],[-10,-12],[-5,-11],[-6,-23],[-25,-119],[-47,-149],[-8,-22],[-7,-11],[-13,-6],[-17,-2],[-7,0],[-21,-2],[-13,-3],[-5,-2],[-3,0],[-9,-4],[-6,-9],[-4,-9],[-8,-35],[-3,-11],[0,-2],[-13,-59],[-3,-25],[0,-18],[0,-7],[5,-77],[-1,-10],[-2,-7],[-3,-14],[-4,-19],[-6,-15],[-11,-9],[-4,2],[-8,12],[0,1],[-2,5],[0,1],[0,4],[-3,29],[0,50],[-1,11],[0,2],[-4,12],[-6,10],[-6,1],[-6,0],[-6,0],[-90,-2],[-3,0],[-3,0],[-11,-5],[-2,-4],[-9,-12],[-7,-17],[-3,-10],[-4,-10],[-23,-89],[-11,-26],[-12,-15],[-11,-10],[-11,-6],[-8,9],[-8,17],[-4,28],[-4,44],[0,32],[1,5],[3,27],[1,4],[0,1],[5,12],[20,35],[2,11],[0,14],[-4,8],[-2,5],[-30,17],[-4,-1],[-9,-6],[-48,-62],[-11,-26],[-42,-198],[-9,-49],[-3,-40],[3,-23],[4,-24],[9,-28],[8,-18],[7,-11],[22,-22],[13,-19],[7,-15],[4,-14],[2,-9],[0,-1],[0,-18],[-1,-13],[-1,-6],[-3,-11],[-6,-9],[-10,-2],[-37,2],[-36,13],[-10,6],[-1,1],[-11,19],[-4,6],[-18,48],[-6,8],[-2,3],[-1,2],[-4,4],[-5,0],[-25,3],[-7,-6],[-6,-9],[-4,-18],[-3,-26],[-1,-3],[-27,-61],[-20,98],[-5,11],[-4,3],[-4,-6],[-20,-10],[-27,-14],[-1,-1],[-6,-2],[-10,-5],[-13,0],[-23,-1],[-3,-3],[-2,-1],[-4,-3],[-6,-14],[-4,-17],[-1,-21],[1,-2],[1,-6],[16,-124],[1,-8],[1,-2],[1,-8],[7,-11],[8,-9],[4,0],[1,0],[2,2],[1,1],[3,8],[5,17],[0,1],[4,25],[6,18],[5,6],[4,0],[10,2],[5,-3],[6,-16],[1,-6],[0,-26],[-23,-214],[-3,-4],[-35,-44],[-16,-9],[-11,-19],[0,-1],[-42,-70],[-3,-7],[-13,-34],[-10,-35],[-16,-78],[-14,-38],[-2,0],[-100,-26],[-7,-11],[-48,-79],[-3,-7],[-2,-6],[-5,-12],[-3,-5],[-3,0],[-4,0],[-7,8],[-8,18],[-16,23],[-19,6],[-61,-20],[-11,-11],[-8,-16],[-6,-23],[-1,-11],[-9,-131],[-1,-5],[-17,-99],[-18,-107],[-65,-2],[-53,-1],[-19,23],[-1,3],[-13,42],[-36,56],[-3,3],[-1,1],[-21,3],[-12,7],[-45,25],[-9,-6],[-9,-13],[-6,-10],[-12,-15],[-5,-1],[-6,-1],[-23,1],[-8,8],[0,1],[-10,28],[-1,26],[10,12],[2,2],[2,6],[1,3],[2,20],[-1,33],[0,2],[-7,31],[-6,18],[-8,10],[-13,11],[-53,29],[-17,16],[-16,22],[-11,23],[-3,13],[0,49],[-2,15],[-13,53],[-13,53],[-10,26],[-2,3],[-9,20],[-16,17],[-20,10],[-7,64],[-1,5],[-6,91],[1,18],[2,9],[1,3],[12,24],[18,38],[1,2],[8,56],[0,8],[0,6],[0,8],[-1,6],[-19,75],[-15,55],[-6,7],[-49,57],[-16,19],[-17,11],[-28,34],[-30,38],[-19,32],[-10,20],[-27,35]],[[63891,59166],[-18,42],[-25,27],[-18,31],[-31,67],[0,1],[-23,23],[-6,-42],[-3,-19],[-5,-20],[-4,-5],[-11,-1],[-18,8],[-16,2],[-28,-7],[-7,-8],[-3,-11],[0,-1],[-1,-16],[9,-74],[4,-21],[6,-15],[1,-1],[2,-8],[0,-9],[-2,-7],[-3,-8],[-13,-1],[-27,8],[-1,0],[-13,7],[-29,44],[-13,21],[-31,23],[-6,2],[-4,-4],[-10,-15],[-6,-19],[-3,-81],[0,-2],[-20,-7],[-21,11],[-20,24],[0,1],[-1,1],[-15,29],[-50,10],[-8,-9],[-12,-1],[-23,17],[-17,27],[-4,13],[-1,2],[-18,88],[-19,99],[-1,3],[-1,2],[-6,15],[-33,52],[-4,5],[-8,9],[-1,10],[-4,27],[-15,51],[-33,-106],[-38,-71],[-20,29],[-3,5],[0,32],[4,27],[8,22],[1,3],[3,12],[3,26],[-1,15],[-2,16],[-1,9],[-2,7],[-2,21],[1,25],[10,54],[4,18],[0,22],[-2,10],[-3,8],[-1,0],[-9,13],[-26,22],[-11,-6],[-16,-20],[-1,-1],[-8,-5],[-7,0],[-1,0],[-1,0],[-8,5],[-25,35],[-4,7],[-4,18],[0,3],[0,26],[-3,14],[-1,1],[-2,6],[-7,15],[-8,13],[-3,6],[-7,6],[-8,-7],[-5,-9],[-8,-8],[-14,0],[-7,3],[-5,11],[-10,119],[-2,60],[18,93],[4,11],[45,-9],[1,0],[30,-18],[6,3],[3,13],[0,36],[0,1],[-3,26],[-45,206],[-7,13],[-1,2],[-2,4],[-5,6],[-11,12],[-5,6],[-13,22],[-5,14],[-4,20],[0,28],[6,35],[0,1],[16,49],[4,25],[-1,9],[-4,16],[-7,18],[-1,5],[-12,24],[-15,1],[-47,4],[-23,-20],[-20,-2],[-30,7],[-18,15],[-35,17],[-13,22],[-6,70],[-19,54],[-8,44],[-17,36],[-21,24],[-13,19],[-13,32],[-10,24],[-15,18],[-11,66],[-15,30],[-12,16],[-17,30],[0,1],[-24,21],[-10,32],[-10,26],[-26,37],[-10,49],[-12,24],[-5,33],[-8,31],[-11,12],[-6,75],[-5,54],[-9,46],[-10,22],[-5,53],[-18,21],[-5,44],[8,39],[-26,37],[-12,47],[-12,57],[-5,59],[-19,46],[-14,31],[-26,16],[-11,23],[-7,29],[-14,68],[-35,36],[-9,34],[-11,51],[-6,39],[7,41],[9,42],[2,40],[-5,37],[-2,49],[9,60],[13,64],[18,101],[10,56],[3,47],[-9,36],[-10,39],[-7,63],[-2,38],[-19,58],[-6,31],[-12,56],[-22,29],[-16,10],[-13,7],[-15,20],[-18,51],[-8,46],[0,90],[-7,39],[-2,80],[-13,43],[-2,38],[2,65],[-6,37],[-11,21],[0,47],[7,29],[12,33],[4,73],[-1,39],[11,36],[14,36],[16,28],[8,34],[-2,89],[1,52],[9,83],[6,53],[-4,51],[-6,49],[0,40],[0,58],[-7,50],[-1,53],[-6,41],[-20,51],[4,55],[2,40],[-3,55],[-2,43],[-3,64],[9,64],[9,34],[4,37],[-12,125],[-26,75],[-28,73],[-16,10],[-12,8],[-16,30],[-8,39],[-8,55],[-10,64],[-8,38],[-2,56],[-8,51],[-8,46],[-11,46],[-10,30],[-17,64],[-10,40]],[[51693,63973],[-18,-68],[-10,-21],[-10,-28],[-9,-49],[-17,-31],[-6,-54],[-13,-38],[-1,-44],[1,-38],[40,12],[9,-37],[15,-16],[11,-20],[23,-17],[12,-21],[10,-30],[16,-56],[13,-30],[13,-28],[6,-31],[-3,-36],[-5,-89],[2,-106],[9,-39],[-3,-83],[-10,-25],[-20,-25],[-28,-25],[-26,-63],[-15,-3],[-48,65],[-19,-2],[-20,21],[-13,1],[-16,-26],[-3,-39],[-7,-29],[-8,-37],[-19,-15],[-14,-2],[-15,7],[-14,-6],[-4,-33],[-6,-32],[-10,-34],[-5,-45],[-9,-48],[-12,-14],[-12,-29],[0,-44],[-8,-36],[-16,-41],[14,-76],[12,-14],[9,-47],[-1,-39],[2,-36],[-26,-61],[-18,-13],[-17,-36],[-14,-29],[-19,-19],[-19,-17],[-16,-4],[-17,-2],[-15,3],[-10,-29],[-14,-29],[-12,-21],[-12,-48],[-3,-36],[-17,-43],[6,-106],[-4,-40],[-17,-3],[-48,-54],[0,-43],[-12,-27],[-10,-33],[-4,-36],[-13,-45],[-10,-24],[-11,-28],[-9,-30],[8,-42],[24,-7],[16,-80],[-1,-36],[-14,-29],[-14,-19],[-35,38],[-13,0],[-24,-51],[-8,-35],[-3,-35],[-20,-48],[-12,-61],[-14,-41],[-13,-25],[-11,-46],[-13,-22],[-12,-26],[-6,-42],[-5,-36],[-4,-84],[-5,-42],[-10,-23],[-8,-34],[-3,-7],[-9,-21],[-14,-13],[-9,-28],[-5,-32],[-1,-38],[1,-43],[-11,-23],[3,-61],[-5,-33],[-5,-41],[-2,-36],[5,-41],[0,-41],[-8,-30],[-13,-60],[-1,-34],[-5,-58],[-13,-20],[-14,2],[-20,14],[-22,7],[-14,1],[-15,22],[-13,0],[-9,-53],[-6,-51],[-4,-38],[4,-47],[-1,-36],[-13,-6],[-13,-13],[-11,-33],[-8,-37],[-8,-59],[-1,-38],[-17,-36],[-7,-46],[3,-42],[8,-40],[12,-23],[6,-34],[-3,-40],[2,-63],[-10,-76],[8,-34],[8,-32],[7,-46],[12,-27],[11,-22],[6,-32],[13,-11],[8,-44],[8,-29],[6,-32],[-12,-13],[-16,-58],[-10,-33],[5,-54],[-8,-41],[-7,-39],[0,-71],[-11,-31],[-12,-20],[-3,-44],[-8,-38],[-14,-36],[-16,-25],[-7,-40],[2,-47],[-26,-20],[-19,-12],[-11,-18],[-8,-33],[-12,0],[-21,-13],[-12,-19],[-5,-33],[2,-42],[-7,-39],[-12,-31],[-14,-17],[-6,-30],[-4,-48],[-9,-23],[-13,3],[-14,13],[-11,-18],[-7,-35],[-9,-24],[-23,-13],[-12,2],[-12,5],[-10,-23],[-14,-16],[-5,-51],[-5,-33],[4,-36],[-7,-47],[-11,-27],[-12,-52],[-3,-49],[7,-56],[-16,-82],[-16,-3],[-16,1],[-14,-11],[-15,7],[-19,12],[-12,1],[-17,30],[-19,5],[-15,9],[-36,18],[-15,6],[-16,17],[-17,38],[-11,19],[-26,22],[-19,3],[-12,5],[-11,9],[-13,9],[-13,-6],[-21,2],[-14,-2],[-14,-18],[-17,-6],[-16,-37],[-6,-30],[-16,-30],[-18,-12],[-16,-4],[-42,-45],[10,-44],[18,-59],[9,-26],[9,-34],[-3,-38],[-12,-24],[-8,-32],[-13,-31],[-13,-11],[-23,-76],[-13,-10],[-19,3],[-13,-7],[-13,-24],[-20,-29],[-16,-4],[-17,-16],[-19,-40],[-18,-34],[4,-43],[12,-22],[10,-64],[15,-53],[-5,-39],[-13,-45],[-14,-37],[-25,19],[-31,-5],[-27,-30],[-11,-19],[-3,-60],[-8,-32],[-1,-52],[-4,-33],[-13,-25],[-14,-21],[-17,-22],[-13,-6],[-10,-20],[-23,-31],[-3,-66]],[[49363,56051],[-53,57],[-132,139],[-17,19],[-52,55],[-167,178],[-17,18],[-43,45],[-21,23],[-1,1],[-25,27],[-49,51],[-15,16],[-40,18],[-36,17],[-31,14],[-17,8],[-22,11],[-7,4],[-11,5],[-90,42],[-100,48],[-84,40],[-104,49],[-126,59],[-53,26],[-23,10],[-154,66],[-16,7],[-29,12],[-27,12],[-21,9],[-29,12],[-56,24],[-125,53],[-24,11],[-34,14],[-70,31],[-15,5],[-12,8],[-12,8],[-26,6],[-13,4],[-48,20],[-34,15],[-37,16],[-102,48],[-17,8],[-15,6],[-30,12],[-12,4],[-14,12],[-4,6],[-14,18],[-55,72],[-25,33],[-16,20],[-14,19],[-27,36],[-74,96],[-72,97],[-40,54],[-24,32],[-64,81],[-81,103],[-36,45],[-12,14],[-43,62],[-14,16],[-42,66],[-3,5],[-18,28],[-11,19],[-22,38],[-12,20],[-10,17],[-311,534]],[[46011,58985],[66,74],[17,150],[11,77],[-37,79],[1,97],[-21,153],[-34,117],[-37,134],[-55,-6],[-10,66],[-2,19],[-8,147],[-42,105],[-28,102],[5,111],[43,135],[42,150],[22,14],[26,78],[19,149],[28,39],[52,131],[35,5],[12,84],[19,31],[60,-6],[57,93],[24,101],[19,77],[19,104],[19,76],[-32,102],[52,147],[-15,37],[33,114],[81,36],[48,-49],[66,-51],[69,-47],[82,68],[34,119],[14,67],[49,53],[13,34],[2,99],[-11,161],[-11,29],[-16,11],[-29,34],[9,98],[10,153],[31,101],[11,129],[44,83],[6,53],[13,84],[-1,47],[16,53],[26,138],[2,37],[11,25],[34,78],[15,97],[29,28],[11,45],[-4,58],[32,153],[24,50],[21,74],[27,33],[9,53],[53,62],[-15,98],[52,117],[30,51],[-21,150],[-2,120],[26,77],[-25,160],[39,137],[1,138],[-5,121],[-25,138],[-29,107],[-21,111],[-24,46],[-24,55],[-8,93],[11,26],[51,118],[5,34],[5,71],[-20,6],[-26,151],[12,73],[3,91],[19,123],[18,23],[20,64],[38,-16],[54,158],[12,64],[-5,38],[16,20],[6,35],[-6,61],[15,113],[12,-7],[40,-3],[30,-7],[29,-73],[12,9],[15,119],[32,66],[13,13],[20,7],[2,6],[11,27],[-5,104],[-11,47],[-36,164],[-26,31],[-10,58],[-14,11],[-21,47],[-3,20],[21,76],[15,61],[12,31],[5,31],[9,82],[8,27],[-11,38],[-11,20],[-14,7],[-6,7],[-2,61],[8,31],[3,48],[6,41],[-5,38],[8,41],[-2,37],[-7,31],[3,34],[12,17],[13,38],[3,40],[-1,38],[3,35],[11,34],[0,44],[8,75],[17,11],[15,-7],[27,34],[12,31],[-2,37],[-9,39],[-2,75],[-20,44],[-3,42],[-1,47],[19,51],[12,14],[19,13],[3,41],[5,31],[11,24],[9,38],[5,82],[-4,37],[-1,34],[6,44],[21,83],[28,72],[12,85],[29,45],[594,-617],[40,-42],[267,-295],[154,-75],[267,-380],[426,-1905],[32,-144],[249,-1116],[552,-445],[725,-586],[632,-510]],[[75590,67138],[-11,-110],[-20,-62],[-24,-46],[-32,-32],[-23,-56],[-7,-45],[-4,-105],[-12,-78],[-23,-128],[-17,-102],[-9,-61],[-11,-101],[-14,-82],[-8,-28],[-23,-110],[-24,-117],[-9,-109],[-5,-109],[-10,-114],[6,-116],[-7,-117],[-11,-94],[8,-76],[-7,-67],[-5,-86],[18,-4],[17,-68],[8,-109],[-10,-103],[7,-120],[17,-132],[9,-93],[3,-77],[8,-83],[14,-97],[16,-93],[19,-106],[8,-95],[10,-97],[10,-76],[21,-72],[-10,-102],[-59,-50],[-26,56],[-19,86],[-11,97],[-12,107],[-26,58],[-33,-20],[-20,-24],[-19,1],[6,91],[8,76],[-7,108],[-29,2],[-33,16],[-26,57],[21,113],[-3,79],[-33,23],[-37,-8],[-27,-11],[-29,-37],[-22,45],[-35,26],[-24,43],[-3,5],[22,103],[38,75],[-23,60],[-38,34],[-4,74],[-22,58],[-33,79],[-49,2],[-45,13],[-31,-48],[-19,-59],[7,-81],[29,-76],[32,-53],[25,11],[31,-16],[6,-101],[9,-106],[29,-63],[2,-8],[17,-70],[36,-88],[-8,-122],[9,-99],[32,-69],[35,-25],[19,-62],[25,-62],[23,-53],[30,-50],[23,-89],[14,-69],[24,-25],[39,-27],[35,-22],[37,-45],[-11,-70],[14,-99],[36,-16],[24,58],[35,-2],[-22,-92],[5,-112],[29,-73],[36,-75],[23,-46],[26,-41],[30,-38],[33,-47],[25,-48],[9,-23],[34,-68],[17,-78],[8,-37],[6,-40],[11,-31],[9,-25],[15,-50],[8,-29],[9,-28],[14,-68],[-4,-41],[7,-38],[1,-36],[-1,-96],[-26,64],[-27,17],[-36,-95],[-37,-49],[-29,-17],[2,78],[-14,50],[39,26],[1,101],[5,92],[-27,84],[0,-1],[-22,-70],[-18,-11],[-7,-4],[1,-3],[24,-73],[-40,-38],[-10,-73],[-3,-76],[-26,-74],[-29,-11],[-21,4],[-35,38],[-45,-32],[-37,-50],[-20,6],[-19,46],[-19,35],[-25,38],[-20,6],[-24,43],[-38,55],[-32,-50],[-35,-56],[-17,-15],[-23,-54],[-36,-32],[-50,22],[-25,3],[-31,43],[-27,20],[-24,7],[-22,12],[-18,-3],[0,-1],[-8,-68],[6,-7],[24,-30],[19,-71],[18,-44],[0,-1],[34,-4],[44,-71],[37,45],[16,-71],[21,-7],[30,69],[31,22],[35,43],[18,79],[14,-97],[25,-79],[19,-1],[29,38],[12,-51],[1,-75],[-5,-97],[27,19],[23,-9],[15,-54]],[[75300,61411],[-12,-11],[-14,-13],[-14,-14],[-10,-24],[-12,-11],[-5,-36],[3,-40],[11,-34],[8,-38],[5,-43],[5,-32],[-2,-38],[-4,-35],[9,-37],[0,-43],[-1,-60],[0,-34],[6,-60],[-2,-43],[-14,-38],[-12,-22],[-12,-20],[-13,-14],[-14,-28],[-10,-19],[-8,-27],[-6,-32],[3,-36],[6,-40],[1,-34],[4,-38],[-4,-37],[-8,-24],[-8,-32],[-1,-39],[-8,-55],[-12,4],[-14,13],[-12,-15],[-1,-42],[-5,-46],[9,-38],[0,-11],[-1,-25],[-3,-41],[-5,-46],[-5,-38],[-3,-41],[8,-34],[3,-39],[5,-44],[-2,-64],[-4,-46],[-5,-45],[-3,-34],[-3,-34],[-10,-31],[-11,-38],[-11,-27],[-6,-31],[3,-38],[-3,-35],[-7,-35],[-16,-32],[-11,-28],[-5,-36],[-5,-35],[1,-50],[9,-26],[12,-24],[14,-10],[10,-26],[3,-28],[1,-8],[1,-43],[-7,-34],[-6,-37],[-5,-36],[-7,-32],[-3,-35],[11,-20],[15,5],[12,8],[8,-7],[4,-4],[6,-33],[11,-18],[14,9],[11,-27],[12,-39],[7,-30],[13,-14],[12,-2],[9,-25],[8,-28],[13,-7],[14,-10],[9,-22],[10,-19],[11,-24],[-3,-37],[4,-53],[6,-42],[-2,-37],[8,-69]],[[75278,58264],[-12,-4],[-59,39],[-13,24],[-11,35],[-14,76],[-16,46],[-29,44],[-29,21],[-18,-5],[-21,-12],[-21,-21],[-25,-37],[-67,-140],[-41,-108],[-23,-34],[-22,-12],[-30,13],[-21,27],[-45,97]],[[74761,58313],[-10,40],[-18,35],[-30,39],[-37,17],[-21,-13],[-11,-17],[-10,-26],[-14,-64],[-11,-34],[-6,-10],[-27,-10],[-34,11],[-23,23],[-33,45],[-21,35],[-16,34],[-50,96],[-29,52],[-28,30],[-135,64],[-19,34],[-9,30],[-21,125],[-17,127],[-15,50],[-27,51],[-19,26],[-47,21],[-13,27],[-21,70],[-14,67],[-13,180],[-15,55],[-15,24],[-35,2],[-21,9],[-9,22],[-16,30]],[[73851,59610],[-31,71],[-7,116],[0,1],[-8,118],[-36,204],[-3,18],[-18,86],[-5,59],[-4,32],[-2,10],[-10,84],[-37,45],[-13,82],[-21,90],[-6,59],[0,26],[-14,54],[-29,34],[-39,41],[-32,35],[-35,-24],[-14,-42],[-9,-57],[-16,-28],[-40,13],[-45,102],[-54,99],[-82,86],[-36,27],[-40,31],[-39,-53],[-14,-3],[-31,9],[-20,-12],[-15,-29],[-29,-40],[-16,-10],[-29,0],[-21,-8],[-19,-18],[-18,-27],[-27,-62],[-3,-16],[-2,-47],[2,-18],[21,-71],[7,-146],[-5,-46],[-17,-23],[-26,-9]],[[72864,60453],[-3,31],[-58,29],[-33,54],[-24,54],[-28,104],[-8,64],[-7,121],[-10,69],[-12,40],[-30,57],[-27,68],[-40,61],[-26,59],[-25,46],[-56,29],[-10,-4],[-32,14],[-14,19],[-16,64],[-4,62],[5,55],[16,54],[4,28],[3,26],[5,36],[-14,45],[-22,40],[-41,18],[-99,-18],[-33,-20],[-25,-41],[-14,-42],[-20,-95],[-48,-141],[-17,-44],[-44,-94],[-16,-28],[-10,-9],[-28,17],[-18,38],[-22,73],[-5,48],[4,42],[8,48],[9,57],[3,4],[6,10],[4,24],[19,170],[-2,27],[-11,66],[-37,112],[-36,146],[-30,174],[-15,50],[-44,58],[-10,18],[-11,12]],[[63891,59166],[-19,-51],[-39,-103],[-48,-128],[-12,-32],[-10,-29],[-25,-78],[-11,-30],[-52,-148],[-45,-136],[-56,-172],[-34,-103],[-11,-31],[-68,-206],[-64,-196],[-61,-185],[-21,-63],[-20,-64],[-14,-42],[-49,-151],[-1,-6],[-41,-125],[-42,-132],[-46,-141],[-9,-27],[-26,-82],[-22,-69],[-23,-72],[-21,-67],[-28,-90],[-47,-152],[-17,-55]],[[62909,56200],[-23,17],[-36,29],[-27,26],[-28,25],[-13,11],[-25,22],[-49,43],[-23,21],[-45,39],[-22,20],[-18,15],[-2,2],[-14,12],[-29,24],[-32,27],[-85,72],[-78,67],[-46,42],[-11,10],[-35,32],[-13,11],[-64,59],[-25,23],[-42,37],[-12,12],[-16,15],[-25,21],[-25,23],[-20,19],[-72,65],[-76,69],[-62,55],[-40,35],[-26,23],[-51,44],[-24,21],[-3,2],[-86,77],[-31,26],[-175,141],[-16,13],[-47,41],[-110,95],[-46,39],[-15,17],[-77,73],[-164,148],[-40,36],[-23,21],[-78,71],[-45,41],[-24,22],[-44,40],[-55,50],[-38,35],[-30,27],[-49,44],[-13,12],[-25,22],[-35,31],[-12,11],[-12,11],[-27,27],[-135,136],[-288,287],[-46,48],[-137,136],[-134,132],[-28,28],[-49,50],[-19,18],[-89,89]],[[58409,56951],[-8,-34],[-7,-29],[-7,-43],[-8,-33],[-5,-44],[1,-36],[12,-43],[-19,-64],[3,-37],[1,-42],[-6,-34],[-14,-18],[-10,-26],[-10,-31],[-8,-40],[-3,-34],[-1,-4],[3,-39],[-5,-42],[-20,-44],[-10,-29],[-7,-32],[-14,-26],[-8,-25],[0,-62],[-11,-51],[-7,-31],[-15,-10],[-4,-26],[-2,-9],[-8,-30],[-12,-14],[-6,-34],[-9,-31],[-6,-42],[1,-35],[-1,-41],[-4,-27],[-1,-12],[-6,-30],[-10,-31],[-11,-31],[-4,-39],[7,-44],[6,-30],[0,-4],[2,-40],[-1,-36],[-5,-38],[-4,-32],[-1,-6],[-4,-45],[-3,-37],[5,-35],[-4,-49],[-7,-28],[-2,-6],[-3,-12],[-8,-30],[-6,-50],[0,-1],[-1,-74],[-1,-40],[1,-40],[-8,-78],[-5,-35],[-1,-36],[-11,-23],[-13,0],[-19,-17],[-4,-32],[-2,-67],[0,-75],[1,-49],[-1,-42],[-13,-35],[-12,-30],[-20,-32],[-12,-9],[-8,1],[-5,1],[-28,-69],[0,-45],[5,-49],[4,-36],[-3,-50],[12,-33],[11,-48],[-13,-30],[-10,-20],[5,-32],[11,-33],[1,-47],[17,-15],[2,-4],[11,-17],[10,-20],[21,-14],[2,-40],[1,-39],[4,-32],[-8,-34],[2,-40],[16,-18],[0,-36],[-6,-28],[0,-2],[-8,-32],[-10,-26],[-12,-16],[-7,-28],[-9,-25],[-3,-35],[8,-27],[13,-6],[13,-5],[-2,-43],[0,-1],[3,-32],[10,-32],[11,-20],[11,-18],[8,-33],[4,-34],[-2,-35],[-7,-29],[-12,-31],[-4,-34],[3,-61],[3,-59],[1,-40],[-6,-31],[-12,-20],[-7,-30],[-3,-43],[-14,0],[-18,16],[-14,12],[-12,2],[-11,-16],[-13,-5],[-6,-34],[-12,-18],[-26,-44],[-19,-10],[-9,-28],[14,-36],[-1,-43],[-1,-35],[-1,-28],[0,-11],[7,-34],[4,-41],[-8,-31],[-22,-29],[-11,-27],[-12,-21],[-20,-22],[-12,-5],[-12,-5],[-16,-12],[-12,-22],[-16,-13],[-11,-11],[-8,-29],[-13,-22],[-14,-1],[-8,-37],[-12,-6],[-12,-13],[-16,8],[-14,-19],[-12,-12],[-12,-12],[-12,-5],[-11,-21],[-1,0],[-11,4],[-13,1],[-19,-14],[-15,-16],[-1,-35],[-11,-13],[-10,-22],[-15,-31],[-8,-37],[-27,-28],[-14,3],[-10,-21],[-10,-23],[-11,-26],[-11,-30],[-9,-26],[-15,-18],[-12,-26],[-13,-21],[-16,-12],[-9,-23]],[[57343,51510],[-18,-44],[-7,-31],[-10,-35],[-12,-24],[-12,-29],[-20,-35],[-15,-24],[-13,-38],[-11,-42],[-14,-32],[-20,-14],[-16,-13],[-12,-19],[-10,-23],[-8,-27],[-4,-14],[-7,-32],[-1,-5],[-7,-37],[-3,-34],[-1,-20],[-1,-18],[-5,-32],[-13,-20],[-11,-11],[-10,10],[-1,1],[-12,-13],[-11,-21],[-13,18],[-13,10],[-12,1],[-12,-9],[-14,-10],[-12,-4],[-12,8],[-14,23],[-13,6],[-13,-24],[-9,-30],[-15,-47],[-11,-38],[-8,-63],[-5,-52],[-8,-30],[-12,-32],[-12,-17],[-14,-39],[-4,-42],[-1,-53],[0,-41],[1,-23],[0,-18],[2,-36],[4,-51],[0,-41],[-4,-43],[-16,-54],[-11,-41],[-9,-40],[-6,-30],[-7,-58],[-11,-29],[-11,-36],[2,-51],[1,-39],[-8,-26],[-10,-28],[-14,-21],[-15,-8],[-14,2],[-11,8],[-12,10],[-6,4],[-7,5],[-12,-5],[-15,-22],[-12,-30],[-8,-27],[-3,-14],[-4,-17],[-9,-32],[-12,-28],[-11,-19],[-13,-22],[-5,-8],[-6,-9],[-15,-24],[-5,-36],[6,-30],[4,-36],[1,-14],[-6,-34],[-7,-41],[-1,-23],[0,-13],[-2,-35],[-5,-34],[-2,-36],[1,-49],[9,-23],[14,-2],[12,-18],[14,-21],[12,4],[14,13],[9,8],[8,8],[18,12],[21,14],[16,9],[24,0],[5,-34],[6,-37],[-5,-41],[-11,-33],[-4,-44],[-9,-32],[-11,-21],[-5,-33],[-7,-29],[-7,-28],[-11,-39],[-7,-31],[-11,-27],[4,-34],[0,-44],[-11,-15],[0,-38],[-8,-33],[-10,-32],[-3,-34],[10,-31],[5,-34],[-3,-46],[-10,-48],[-2,-38],[6,-32],[11,-17],[5,-33],[9,-22],[-12,-13],[-15,-12],[-13,-26],[-12,-8],[-15,-1],[-11,-19],[-12,-16],[-14,-12],[-21,-12],[-12,4],[-14,18],[-11,-11],[-16,-7],[-14,2],[-11,17],[-12,3],[-13,-1],[-13,-10],[-8,-26],[-7,-30],[1,-40],[-10,-25],[-11,-20],[-16,-24],[-16,-19],[-12,-8],[-15,4],[-15,-10],[-12,2],[-13,3],[-13,2],[-15,-6],[-16,1],[-22,1],[-12,0],[-16,12],[-15,9],[-12,-1],[-9,-25],[-5,-34],[-11,-24],[-15,-17],[-12,-16],[-5,-34],[-9,-24],[-13,-20],[-9,-25],[-10,-23],[-10,-22],[-9,-22],[-9,-29],[-6,-37],[-6,-41],[-10,-29],[-10,-24],[-10,-23],[-11,-22],[-4,-33],[0,-35],[-6,-30],[-8,-28],[-7,-35],[-4,-35],[6,-32],[8,-26],[12,-35],[9,-23],[10,-23],[-13,4],[-13,-2],[-13,-9],[-12,-13],[-13,-9],[-14,-10],[-13,-10],[-13,-16],[-22,-40],[-16,-8],[-16,0],[-15,-10],[-11,-14],[-9,-24],[-9,-26],[-10,-20],[-21,-24],[-16,-22],[-19,-34],[-10,-21],[-11,-19],[-17,-30],[-9,-38],[-9,-27],[-8,-26],[-17,-30],[-10,-32],[-12,-71],[-8,-36],[1,-46],[-3,-39],[-12,-15],[-11,-25],[-11,-18],[-14,-40],[-8,-29],[-7,-30],[-9,-25],[-14,-33],[-15,-20],[-11,-13],[-13,-9],[-11,-28],[-10,-29],[-12,-53],[-14,-13],[-13,-21],[-19,-62],[-14,-25],[-11,24],[-16,8],[-10,28],[-9,7],[-5,5],[-12,14],[-20,32],[-19,40],[-25,74],[2,52],[-8,55],[-7,27],[0,42],[-14,-1],[-17,-15],[-18,-23],[-12,-10],[-17,-3],[-16,1],[-7,4],[-12,6],[-13,2],[-28,-9],[-12,0],[-8,1],[-13,-3],[-18,14],[-23,-2],[-12,-18],[-21,-8],[-25,-2],[-15,-4],[-20,-8],[2,60],[-1,52],[-1,18],[-3,28],[-7,51],[-11,27],[-14,21],[-19,26],[-11,15],[6,93],[-1,38],[-1,44],[-9,74],[-9,28],[-5,38],[-5,32],[-2,77],[-9,21],[-15,-4],[-29,-8],[-8,26],[-10,26],[-20,34],[-14,41],[-15,43],[-16,-16],[-10,-21],[-11,-29],[-16,-40],[-18,-26],[-11,-13],[-17,13],[-19,7],[-14,-3],[-3,-1],[-14,9],[-7,17],[-9,18],[-7,-11],[-7,-12],[-19,-26],[-14,-9],[-13,-11],[-7,-7],[-29,-38],[-22,-4],[-12,6],[-15,-4],[-16,-20],[-15,-7],[-22,-25],[-12,-14],[-26,-29],[-23,-33],[-7,-21],[-5,-19],[-6,-41],[-6,-47],[-23,-20],[-16,-19],[-12,-18],[-18,-1],[-13,31],[-1,1],[-17,3],[-18,-13],[-17,-11],[-39,-30],[-16,0],[-13,-16],[-16,-32],[-5,-15],[-6,-18],[-16,-61],[-8,-32],[-6,-31],[-13,-6],[-17,-1],[-14,4],[-17,-4],[-13,-9],[-9,-1],[-5,0],[-3,-10],[-7,-25],[-31,-33],[-22,-26],[-14,-15],[-10,-25],[-16,-7],[-2,0],[-12,-1],[-20,-9],[-13,-9],[-24,-34],[-20,-32],[-14,4],[-4,41],[-12,4],[-12,17],[-6,36],[-7,26],[-14,-10],[-16,-13],[-19,-15],[-16,-7],[-16,-10]],[[53569,46158],[-315,793],[-29,48],[-4,6],[-28,47],[-6,10],[-47,78],[-42,69],[-31,50],[-16,28],[-4,5],[-19,31],[0,1],[-18,25],[-18,29],[-50,78],[-20,30],[-16,26],[-16,31],[-11,20],[-94,154],[-11,17],[-77,126],[-113,178],[-34,53],[-74,118],[-17,27],[-53,87],[-51,80],[-17,29],[-85,136],[-34,54],[-27,42],[-102,165],[-96,155],[-36,61],[-98,157],[-29,46],[-30,48],[-3,5],[-154,246],[-20,32],[-13,21],[-47,76],[-131,213],[-45,77],[-26,48],[-43,72],[-18,31],[-50,83],[-176,302],[-83,144],[-139,236],[-28,47],[-23,43],[-92,144],[-52,98],[-12,22],[-43,72],[-6,10],[-99,170],[-11,20],[-16,27],[-6,10],[-25,44],[-7,12],[-10,16],[-30,50],[-21,36],[-10,17],[-12,20],[-60,102],[-78,134],[-22,38],[-78,133],[-40,69],[-76,132],[-29,47],[-43,72],[-1,3],[-16,26],[-11,18],[-40,70],[-28,48],[-18,33],[-94,162]],[[49716,52827],[-19,47],[-13,32],[-19,48],[-10,23],[-27,70],[-41,97],[4,18],[3,4],[2,13],[15,40],[11,39],[8,39],[14,55],[9,25],[8,24],[11,36],[9,32],[8,27],[8,39],[9,32],[14,48],[9,25],[9,29],[16,51],[11,40],[11,40],[11,37],[10,29],[10,39],[9,34],[19,70],[9,40],[12,44],[15,42],[10,26],[9,22],[13,34],[10,20],[19,53],[13,34],[11,27],[14,25],[16,38],[13,47],[10,32],[17,43],[16,44],[10,27],[15,57],[11,28],[20,54],[15,56],[21,51],[24,75],[13,60],[7,31],[12,40],[6,38],[21,98],[11,77],[6,44],[8,36],[16,73],[-3,39],[-30,54],[-27,52],[-29,23],[-10,23],[-15,20],[-12,-32],[-16,-34],[-16,-7],[-16,-23],[-8,-27],[-13,-3],[-11,23],[-18,-2],[-43,-64],[-24,51],[-11,27],[-27,24],[-1,0],[-24,-3],[-13,-20],[-16,-12],[-14,-3],[-9,27],[-13,15],[-12,23],[-34,48],[-17,9],[-31,35],[-20,18],[-17,1],[-16,-6],[-13,-17],[-16,-4],[-11,-17],[-11,-16],[-14,-15],[-8,-27],[-12,-4],[-11,-21],[-13,-11],[-12,-23],[-12,-16],[-21,-27],[-7,-38],[-13,-13],[-8,-34],[-12,-18],[-9,-35],[-12,-19],[-8,-38],[-11,-27],[-13,-24],[-47,-77],[-17,-8],[-19,6],[-31,6],[-24,1],[-15,-12],[-11,-31],[-14,4],[-11,-10],[-14,-28],[-16,-10],[-21,-4],[-12,-12],[-12,-8],[-20,13],[-16,2],[-16,9],[-10,45],[-7,32],[0,47],[7,30],[13,11],[22,15],[9,23],[15,10],[12,19],[11,16],[13,18],[14,32],[20,37],[2,43],[-9,45],[-12,34],[-10,26],[-5,50],[-9,27],[-17,5],[-6,30],[4,35],[14,17],[13,25],[13,26],[17,23],[12,6],[14,0],[10,16],[15,26],[14,-1],[13,0],[19,24],[13,19],[15,27],[-1,37],[-4,33],[0,45]],[[51693,63973],[27,-21],[28,32],[52,69],[66,13],[40,53],[53,99],[75,43],[40,-86],[38,79],[4,168],[-30,227],[124,186],[48,23],[63,259],[50,130],[47,223],[53,-45],[84,-21],[11,352],[28,206],[182,257]],[[54971,56470],[-11,-23],[-29,-21],[-28,-47],[-7,-37],[-37,-21],[-55,-27],[-47,-25],[-14,-7],[-16,-12],[-1,0],[-12,-3],[-64,-3],[-33,-2],[-32,-1],[-35,-2],[-54,-3],[-14,9],[-22,53],[-14,7],[-2,2],[-14,-17],[-11,5],[-11,0],[-14,-2],[-21,-12],[-46,-18],[-19,-21],[-13,-16],[-11,-26],[-9,-29],[-10,-36],[-32,-123],[-13,-48],[-8,-31],[-6,-30],[-8,-45],[-9,-46],[-7,-41],[-11,-56],[-21,-136],[-3,-21],[-10,-86],[-7,-60],[-16,-109],[-16,-109],[-7,-44],[-1,-14],[0,-19],[-1,-2],[1,-11],[0,-3],[2,-10],[1,-8],[10,-67],[17,-110],[11,-58],[8,-45],[6,-37],[0,-1],[7,-31],[10,-59],[4,-23],[3,-15],[9,-12],[19,-23],[12,-14],[26,-31],[41,-49],[26,-33],[31,-34],[9,-10],[1,-7],[5,-19],[1,-4],[6,-2],[3,-1],[0,-23],[-1,-15],[4,-15],[4,-13],[3,-10],[23,-52],[11,-18],[22,-25],[26,-11],[70,4],[18,15],[23,19],[25,20],[14,34],[10,24],[2,41],[9,-13],[20,-27],[16,-23],[25,-37],[0,-1],[11,-15],[15,-22],[16,-24],[30,-48],[22,-36],[25,-39],[22,-32],[23,-32],[13,32],[22,61],[42,60],[6,9],[12,0],[4,7],[4,7],[15,26],[3,6],[5,8],[12,19],[4,29],[2,8],[2,3],[2,3],[13,15],[4,5],[12,4],[39,66],[40,65],[5,8],[10,17],[13,37],[9,32],[10,33],[44,155],[10,37],[7,30],[12,72],[4,32],[-3,6],[-15,29],[1,1],[1,4],[0,1],[19,28],[4,6],[11,110],[16,160],[6,57],[6,58],[5,56],[6,63],[4,44],[3,40],[-7,36],[-5,34],[-14,27],[-2,4],[-28,54],[-34,65],[-11,22],[-55,105],[41,147],[49,57],[37,14],[24,9],[-14,22],[-22,35],[-25,44],[-19,32],[-13,22],[-9,16],[-4,8],[-22,34],[-3,5],[-11,21],[-17,27],[21,85],[-21,20],[-70,72],[-11,12],[-25,31],[-12,-40],[-11,-33],[-9,-33],[-17,-57]],[[56572,53273],[-49,-170],[-20,49],[-67,-143],[-7,-18],[-9,19],[-22,36],[-1,-2],[-24,-67],[-28,-76],[-41,73],[-19,29],[-4,1],[-5,-53],[-3,-26],[-17,-6],[-6,2],[-5,-5],[5,-75],[4,-45],[-13,-48],[0,-1],[-9,-29],[-9,-28],[-13,-41],[-15,-47],[-8,-27],[-10,-30],[-9,-28],[-8,-27],[-72,-135],[-7,13],[-19,-37],[-2,3],[-35,-71],[5,-14],[9,-30],[-11,-51],[-17,-77],[47,-41],[54,-45],[0,-11],[-3,-41],[-29,-39],[-21,-28],[2,-4],[0,-1],[0,-6],[-27,-37],[30,-72],[-20,-46],[15,-39],[-5,-11],[64,-30],[32,-13],[4,61],[32,-63],[16,-89],[5,0],[12,8],[5,5],[31,23],[13,10],[1,-17],[1,-9],[4,-16],[2,-23],[3,-18],[7,-49],[12,-84],[3,-21],[2,0],[3,0],[14,8],[0,-11],[4,-33],[1,-22],[0,-8],[2,-24],[2,-17],[6,-69],[10,-127],[5,-30],[7,-33],[8,-29],[17,21],[21,34],[2,49],[5,33],[5,37],[26,48],[86,158],[83,-20],[19,44],[6,-12],[35,-70],[15,-22],[13,-15],[3,-2],[9,-7],[1,-2],[13,-7],[1,0],[12,-4],[11,-2],[14,1],[12,4],[1,0],[11,6],[3,2],[16,14],[16,15],[41,41],[11,8],[13,4],[14,-1],[14,-7],[15,-15],[12,-20],[11,-26],[52,185],[17,60],[1,4],[-4,9],[-8,16],[-2,9],[2,2],[14,15],[4,3],[4,6],[3,1],[4,6],[-17,81],[-7,135],[2,51],[1,14],[14,180],[20,34],[16,27],[54,119],[15,40],[9,31],[-17,21],[-15,18],[3,7],[9,37],[9,35],[11,43],[9,30],[-6,6],[-13,17],[-17,20],[-14,19],[-14,17],[-13,16],[-8,9],[1,5],[13,55],[-11,14],[-28,32],[-10,12],[3,22],[6,54],[5,47],[4,40],[4,37],[5,45],[4,41],[-21,39],[-12,22],[-18,9],[-2,-6],[-3,2],[30,125],[-39,8],[-10,-61],[-27,15],[-12,-86],[-32,-1],[-23,7],[0,-1],[-4,-10],[-10,-26],[-6,10],[-9,27],[-10,79],[-11,24],[-16,1],[-12,-15],[-13,1],[-12,20],[-14,23],[-19,32],[-12,19],[-13,21],[-2,9],[-12,-59],[-19,-1],[-18,6],[-3,0],[-17,19],[-5,3],[-13,11],[-6,-2],[-1,1],[-42,36],[-3,-19],[-23,27]],[[78813,59041],[-5,-36],[-10,-28],[-23,-23],[-12,-13],[-10,-20],[10,-20],[5,-31],[-2,-43],[-10,-17],[-15,-6],[5,-38],[-4,-41],[-12,-1],[-13,14],[-16,38],[-9,24],[-20,-7],[-13,11],[-13,3],[-11,-15],[-2,-4],[-12,-16],[-1,-137],[1,-98],[-2,-44],[-2,-59],[-2,-85],[-2,-93],[-6,-363],[-1,-85],[-6,-351],[-2,-120],[-4,-226],[-3,-164],[-1,-43],[-1,-51],[0,-4],[-1,-82],[-1,-38],[0,-46],[-1,-36],[-5,-267],[-1,-58],[-1,-59],[2,-66],[0,-3],[-4,-75],[-12,-7],[-15,-27],[-9,-37],[2,-40],[12,-61],[-10,-28],[-12,-15],[-29,6],[-15,-2],[-18,-25],[-13,-18],[-11,-13],[-14,-2],[-19,-26],[-8,-40],[-10,-30],[-3,-56],[0,-81],[-4,-34],[0,-35],[12,-36],[14,1],[6,-44]],[[78421,55469],[-34,-49]],[[78387,55420],[-14,-7],[-13,-14],[-9,-25],[-8,-35],[-8,-34],[-3,-39],[4,-48],[5,-41],[5,-35],[5,-51],[2,-48],[3,-37],[3,-41],[-1,-41],[-6,-45],[-11,-48],[-11,-34],[-14,-31],[-16,-23],[-17,-21],[-13,-10],[-13,-4],[-17,11],[-15,24],[-12,34],[-11,27],[-10,31],[-11,34],[-8,34],[-4,41],[-2,48],[-1,44],[-2,48],[0,52],[0,54],[-2,41],[-2,52],[-4,51],[-7,27],[-12,11],[-13,13],[-17,10],[-13,11],[-11,3],[-15,0],[-19,0],[-14,0],[-16,-7],[-18,-20],[-22,-28],[-21,-30],[-22,-38],[-21,-41],[-10,-24],[-18,-34],[-17,-34],[-19,-38],[-14,-34],[-17,-31],[-16,-24],[-14,-13],[-13,-4]],[[77777,55009],[-55,45],[-12,24],[-10,30],[-8,28],[-6,41],[-7,37],[-6,53],[-7,57],[-9,37],[-17,45],[-16,34],[-18,31],[-17,17],[-13,13],[-18,14],[-20,14],[-16,10],[-15,7],[-11,7],[-15,17],[-15,20],[-14,21],[-15,24],[-19,27],[-14,13],[-19,18],[-16,7],[-19,0],[-18,-7],[-13,-10],[-21,-24],[-14,-21],[-18,-24],[-19,-27],[-14,-17],[-18,-28],[-15,-17],[-14,-7],[-12,4],[-14,6],[-30,21],[-21,14],[-15,20],[-21,32],[-13,16],[-15,24],[-13,21],[-16,20],[-11,14],[-22,31],[-14,24],[-21,34],[-13,27],[-12,17],[-6,18],[-8,23],[-9,28],[-26,82],[-13,41],[-7,27],[-11,27],[-13,31],[-21,38],[-12,27],[-16,27],[-12,24],[-17,45],[-13,24],[-14,30],[-11,18],[-17,25],[-14,19],[-13,17],[-13,38],[-12,38],[-12,47],[-9,34],[-9,35],[-11,27],[-12,20],[-19,24],[-19,24],[-17,8],[-62,16],[-1,0],[-36,-10],[-12,-18],[-8,-12],[-13,-38],[-4,-41],[1,-47],[1,-33],[7,-20],[28,-91],[1,-31],[-7,-58],[-3,-7],[-9,-22],[-29,-40],[-15,-11],[-42,-9],[-77,54],[-19,0],[-56,25],[-30,24],[-15,40],[-7,51],[9,126],[6,34],[2,10],[24,86],[9,31],[11,40],[17,69],[6,45],[33,129],[6,15],[13,31],[7,11],[1,1],[10,47],[5,55],[-4,67],[-7,37],[-16,82],[-35,111],[-25,64],[-23,75],[-7,39],[-2,9],[-2,21],[-2,16],[0,4],[0,7],[2,37],[1,15],[6,18],[1,2],[4,10],[20,31],[74,62],[35,2],[17,10],[8,2],[82,23],[33,26],[9,8],[11,16],[1,2],[17,43],[1,3],[2,9],[6,84],[-3,40],[-6,22],[-9,30],[-6,19],[-4,6],[-16,22],[-11,16],[-4,3],[-17,16],[-10,8],[-43,19],[-22,-3],[-66,-21],[-8,-3],[-41,19],[-7,11],[-15,51],[-8,64],[-6,19],[-6,17],[-2,5],[-4,2],[-16,7],[-1,0],[-17,-4],[-14,-3],[-22,-17],[-19,-17],[-34,-18],[-25,-13],[-22,-3],[-18,7],[-3,1],[-36,13],[-15,-2],[-23,-16],[-23,-33],[-12,-47],[-13,-147],[-1,-52],[4,-71],[1,-13],[8,-78],[4,-85],[-4,-111],[-5,-59],[-9,-52],[-6,-28],[-15,-37],[-20,-26],[-20,-8],[-54,13],[-11,3],[-31,-27],[-3,-2],[-6,-6],[-21,9],[-12,41],[-9,52],[2,16],[7,50],[9,73],[21,126],[9,79],[0,10],[-1,60],[-5,50],[-13,43],[-1,3],[-12,22],[-3,4],[-5,9],[-19,8],[-21,-13],[-11,-17],[-4,-7],[-27,-42],[-2,-14],[-48,-101],[-14,-23],[-19,-30],[-3,-4],[-20,-18],[-16,11],[0,1],[-1,3],[-2,10],[-21,82],[-2,9],[-12,43],[-1,5],[-13,24],[-50,95],[-1,1],[-21,26],[-11,8],[-6,4],[-44,29]],[[75300,61411],[16,7],[11,13],[12,12],[11,43],[11,70],[22,32],[18,-62],[32,-27],[32,19],[46,62],[50,47],[39,-17],[47,0],[45,16],[43,-7],[34,-14],[22,-14],[19,-43],[20,-48],[32,-51],[44,-64],[38,-47],[27,-40],[38,-37],[50,-18],[50,-16],[32,-9],[45,-6],[39,-12],[72,6],[67,29],[38,24],[75,65],[57,61],[36,20],[58,58],[40,29],[28,5],[35,28],[57,-10],[47,11],[31,-3],[34,3],[98,26],[36,4],[34,28],[69,69],[33,23],[30,16],[33,26],[36,59],[35,75],[42,109],[55,177],[73,210],[17,53],[22,43],[54,0],[45,-35],[57,21],[14,1],[13,3],[21,3],[27,15],[14,8],[36,22],[24,13],[26,11],[31,13],[28,1],[41,-8],[27,-13],[24,-17],[36,-47],[47,-21],[34,36],[41,38],[29,40],[23,34],[32,55],[20,44],[17,32],[44,97],[24,90],[27,79],[19,71],[38,124],[39,200],[18,62],[54,104],[24,-4],[43,39],[41,19],[43,-70],[31,-77],[45,-115],[43,-110],[28,-41],[31,-86],[28,-86],[22,-37],[23,-54],[28,-77],[17,-69],[23,-53],[-28,-71],[-8,-26],[-8,-35],[-1,-39],[8,-77],[3,-61],[4,-95],[1,-121],[0,-3],[-3,-59],[1,-85],[-9,-124],[-5,-90],[-4,-123],[-7,-108],[7,-84],[18,-69],[0,-75],[-3,-39],[-26,-122],[-22,-13],[-19,-38],[-7,-102],[-4,-79],[-22,-58],[-41,-31],[-33,-67],[-23,-21],[-22,30],[-56,-18],[-24,32],[-25,79],[-36,6],[-41,-11],[-24,26],[-17,94],[-22,107],[-22,76],[-8,68],[-22,49],[5,-117],[20,-87],[6,-84],[18,-108],[-20,-70],[-47,30],[-36,5],[2,-158],[-15,-83],[-22,-105],[-30,-64],[-31,-95],[31,-52],[29,-45],[4,-92],[48,-17],[37,-11],[-8,19],[-20,53],[-32,34],[6,81],[48,24],[19,85],[-10,87],[-3,61],[-17,51],[22,29],[33,-15],[44,-35],[34,-54],[44,-71],[26,-64],[43,1],[48,45],[23,-5],[35,28],[25,-178],[12,-69],[18,-59],[31,-52],[36,-43],[20,-53],[31,-50],[22,-84],[33,-72],[19,-108],[27,-69],[21,-51],[28,-85],[20,-66],[5,-94],[-23,27],[-41,10],[-22,-24],[-12,-97],[-20,-20],[-20,-26],[-28,-69],[-37,-36],[-24,-13],[-23,-8],[-32,-33],[-33,0],[-11,-60]],[[70814,62211],[-11,-23],[6,-38],[-11,-6],[-12,-8],[-14,12],[-13,-7],[13,-46],[17,-4],[1,-43],[-4,-34],[-12,5],[-12,12],[-24,-8],[15,-30],[6,-34],[-6,-34],[-12,7],[-16,-23],[-4,-32],[-12,11],[-13,6],[0,-39],[-11,-16],[-7,-26],[6,-37],[14,-27],[7,-44],[-6,-31],[-11,-29],[-15,4],[-10,-21],[-11,-17],[-7,-30],[-15,-20],[-1,-40],[8,-33],[12,-25],[14,-30],[10,-24],[3,-37],[-15,-20],[-12,3],[-14,-3],[-19,-6],[-3,-35],[-12,-8],[-5,-35],[-5,-36],[-8,-31],[-8,-29],[-7,-31],[-11,-46],[-5,-31],[-8,-32],[-2,-19],[-2,-16],[-5,-41],[-10,-24],[-21,-56],[-11,-28],[-19,-47],[-57,-144],[-28,-72],[-18,-46],[-18,-43],[-32,-80],[-23,-59],[-21,-53],[-15,-42],[-19,-52],[-70,-188],[-16,-45],[-32,-86],[-59,-160],[-38,-103],[-33,-89],[-13,-34],[-54,-146],[-31,-85],[-36,-97],[-34,-83],[-37,-86],[-53,-128],[-54,-135],[-36,-86],[-53,-128],[-17,-42],[-22,-55],[-35,-85],[-21,-48],[-22,-53],[-23,-55],[-15,-37],[-11,-27],[-80,-192],[-10,-23],[-27,-64],[-50,-121],[-19,-56],[-15,-43],[-36,-104],[-66,-189],[-16,-45],[-63,-184],[-16,-44],[-29,-85],[-24,-68],[-83,-241],[-18,-50],[-38,-107],[-28,-81],[-31,-86],[-17,-44],[-61,-156],[-43,-111],[-56,-146],[-41,-106],[-34,-87],[-38,-97],[-39,-103],[-4,-11],[-25,-63],[-22,-57],[-2,-6],[-17,-43],[-79,-205],[-21,-55],[-12,-31],[-49,-124],[-22,-58],[-10,-25],[-13,-33],[-2,-6],[-8,-20],[-3,-8],[-31,-79],[-16,-41],[-21,-52],[0,-2],[-29,-72],[-44,-113],[-69,-176],[-24,-63],[-11,-28],[-35,-92],[-22,-59],[-14,-37],[-15,-39]],[[67830,53898],[-13,4],[-16,3],[-16,13],[-15,8],[-14,6],[-12,15],[-11,20],[-16,12],[-12,19],[-15,29],[-11,21],[-13,25],[-10,-16],[-12,-12],[-12,-19],[-12,-18],[-12,-3],[-12,15],[-12,9],[-14,-18],[-6,-29],[-12,16],[-13,2],[-9,-26],[-11,12],[-13,13],[-15,10],[-15,26],[-2,36],[-14,15],[-9,32],[-12,28],[-17,-9],[-14,25],[5,31],[2,60],[-9,22],[-12,14],[-12,16],[-11,23],[-9,24],[-11,16],[-23,61],[-25,69],[-6,14],[-3,8],[-1,3],[-7,18],[-10,29],[-6,36],[-14,5],[-13,6],[-8,26],[-17,-6],[-13,-8],[-11,16],[-43,6],[-3,1],[-61,61],[-3,3],[-10,13],[-12,1],[-22,1],[-7,-5],[-1,-1],[-1,-2],[-2,-4],[-2,-13],[-6,-47],[-1,-8],[-1,-6],[-15,-86],[-4,-13],[-4,1],[-42,72],[-7,14],[-30,-54],[-8,-15],[-5,-10],[-3,-5],[-8,-10],[-25,-21],[-10,-8],[-3,-3],[-24,-11],[-1,0],[-2,1],[-99,31],[-17,21],[-4,5],[-12,17],[-20,28],[-7,10],[-17,22],[-4,2],[-7,5],[-2,-3],[-5,0],[-3,0],[-1,0],[-4,4],[-17,35],[-13,12],[-7,0],[-16,-8],[-34,-6],[-5,5],[-7,26],[-6,11],[-26,24],[-4,2],[-3,8],[-16,16],[-12,-2],[-21,-18],[-5,-4],[-21,-23],[-9,-2],[-10,13],[-12,20],[-44,79],[-4,16],[1,41],[-1,14],[-4,7],[-7,7],[-108,120],[-12,20],[-12,14],[-13,-8],[-11,-18],[-11,11],[-13,-5],[-12,-3],[-11,16],[-18,16],[-11,15],[-17,-8],[-12,-8],[-11,-11],[-11,-26],[-11,-16],[-12,-21],[-12,-26],[-12,-10],[-11,-13],[-13,-9],[-8,-25],[8,-27],[-2,-35],[-3,-34],[-9,-30],[-9,-27],[-13,-44],[-14,-12],[-9,-25],[-12,-6],[-15,-9],[-14,-9],[-13,1],[-12,13],[-11,-18],[-17,-10],[-18,-2],[-12,-2],[-12,-12],[-12,5],[-15,4],[-12,-11],[-14,-5],[-13,-3],[-16,37],[-11,18],[-7,29],[-13,12],[-20,11],[-13,-10],[-18,-12],[-11,20],[-8,35],[-16,2],[-12,-23],[-6,-31],[-5,-37],[-12,-31],[-16,-21],[-18,-18],[-12,3],[-13,-19],[-11,-14],[-13,-10],[-14,6],[-23,5],[-14,6],[-13,3],[-13,-2],[-12,-3],[-12,-16],[-16,-24],[-10,-20],[-16,-34],[-11,-25],[-10,-42],[-6,-34],[-9,-25],[-13,-27],[-17,2],[-19,5],[-13,-1],[-22,-5],[-18,-1],[-13,5],[-12,3],[-28,-53],[-13,-9],[-11,-8],[-25,-17],[-1,1],[-19,13],[-41,29],[-27,19],[-12,9],[-17,14],[-12,9],[-1,1],[-25,20],[-45,36],[-12,8],[-30,23],[-6,5]],[[64826,54436],[-16,13],[-36,27],[-92,92],[-33,32],[-106,86],[-55,46],[-26,21],[-19,16],[-111,87],[-13,14],[-59,58],[-72,73],[-45,45],[-47,48],[-39,40],[-19,18],[-28,28],[-50,50],[-32,32],[-55,55],[-6,6],[-47,46],[-77,77],[-13,12],[-56,56],[-26,25],[-31,30],[-125,124],[-18,18],[-13,12],[-80,76],[-26,26],[-2,1],[-34,34],[-32,32],[-16,14],[-16,15],[-42,41],[-95,75],[-40,32],[-60,46],[-29,23],[-66,51],[-14,11]],[[72864,60453],[-24,-23],[15,-3],[17,-1],[13,-12],[17,-19],[12,-13],[15,-3],[19,-8],[15,-6],[16,3],[15,-1],[13,-4],[14,-3],[7,-29],[19,-4],[-5,-101],[-10,-86],[-12,-53],[-9,-53],[13,-61],[15,15],[23,25],[3,-13],[13,-51],[18,-28],[14,-13],[13,-20],[10,-17],[-7,-60],[-14,-119],[-29,-238],[5,3],[14,8],[15,8],[18,-1],[13,-6],[11,-6],[13,-1],[13,-5],[11,-17],[13,-12],[13,19],[13,6],[6,34],[6,31],[1,40],[14,-5],[12,-20],[14,6],[2,-66],[5,-31],[13,-24],[-22,-170],[31,-7],[2,0],[38,-7],[18,-4],[30,-6],[21,-12],[4,-2],[34,-27],[12,-9],[15,-12],[23,-18],[25,-19],[11,40],[17,65],[11,53],[7,35],[11,50],[17,83],[14,0],[11,-28],[12,-13],[21,-24],[14,-3],[2,-35],[8,-58],[16,-76],[2,-10],[10,-49],[12,16],[33,47],[22,32],[19,32],[-15,46],[-6,30],[-2,8],[-3,14],[-3,33],[-2,20],[-5,51],[-4,38],[-6,64],[14,10],[21,13],[11,-16],[9,-28],[18,11],[-3,24],[18,13]],[[74761,58313],[-12,-28],[-40,-91],[-9,-26],[-19,-51],[-27,-71],[-4,-10],[-62,-176],[-55,-149],[-110,-312],[-11,-24],[-25,-58],[-13,-36],[-9,-24],[-20,-55],[-15,-41],[-10,-26],[-13,-38],[-6,-36],[-10,-24],[-16,-39],[-33,-83],[-24,-61],[-21,-51],[-21,-57],[-18,-47],[-61,-168],[-32,-88],[-20,-54],[-22,-61],[-11,-31],[-21,-55],[-18,-52],[-111,-306],[-75,-205],[-55,-150],[-11,-31],[-3,-8],[-21,-58],[-11,-29],[-26,-73],[-21,-56],[-24,-68],[-29,-78],[-20,-55],[-24,-67],[-13,-36],[-2,-5],[-6,-17],[-37,-101],[-34,-94],[-20,-54],[-4,-11],[-51,-142],[-19,-52],[-14,-38],[-76,-209],[-2,-5],[-9,-26],[-12,-32],[-77,-213],[-19,-49],[-67,-176],[-4,-9],[-59,-156],[-6,-17],[-4,-9],[-35,-93],[-24,-64],[-28,-76],[-25,-71],[-6,-16],[-53,-145],[-85,-236],[-17,-47],[-69,-188],[-39,-106],[-18,-50],[-75,-202],[-44,-120],[-25,-67],[-49,-135],[-59,-159],[-17,-47],[-30,-81],[-29,-79],[-20,-57],[-70,-189],[-17,-45],[-30,-83],[-25,-68],[-26,-69],[-92,-249],[-28,-77],[-10,-28],[-30,-81],[-18,-48],[-19,-52],[-54,-146],[-51,-151],[-26,-77],[-15,-44],[-17,-45],[-56,-148],[-7,-27],[-56,-132],[-51,-121],[-25,-54]],[[71537,49582],[-2,38],[-16,24],[-16,11],[-25,22],[-24,7],[-30,-8],[-13,-5],[-26,-17],[-23,-26],[-12,-22],[-16,2],[-12,37],[-1,62],[-3,44],[1,35],[-14,23],[-24,-16],[-12,-15],[-19,-3],[-13,17],[-6,36],[1,60],[-6,34],[-29,91],[-24,32],[-23,29],[-21,29],[-15,15],[-32,25],[-22,10],[-20,14],[-13,-12],[-14,-1],[-13,4]],[[71000,50158],[-14,4],[-40,-7],[-14,-13],[-11,-15],[-17,6],[-17,40],[-14,51],[-8,41],[-10,39],[-14,13],[-15,3],[-14,-2],[-23,28],[-17,-4],[-17,0],[-21,-23],[-13,-5],[-12,15],[-7,34],[-2,7],[-6,21],[-17,21],[-12,17],[-15,17],[-19,0],[-14,20],[-3,38],[10,55],[-7,37],[-14,38],[-9,34],[-20,17],[-26,-10],[-18,-17],[-13,-24],[-12,-21],[-17,-17],[-10,24],[2,34],[3,45],[1,34],[10,17],[15,17],[9,21],[-1,37],[-16,35],[-9,34],[-8,51],[-16,20],[-13,4],[-16,3],[-18,7],[-16,14],[-15,17],[-15,-10],[-6,-48],[0,-55],[-10,-41],[-9,-34],[-15,-38],[-8,-27],[-2,-41],[-12,-24],[-18,0],[-9,22],[0,36],[1,34],[-8,72],[-3,38],[5,51],[6,65],[-8,44],[-6,31],[0,55],[10,30],[16,21],[13,7],[18,20],[12,-2],[1,-35],[7,-28],[12,4],[4,34],[-8,48],[-15,37],[-19,4],[-15,3],[-11,17],[-16,21],[-5,37],[4,45],[7,37],[-1,52],[-1,44],[13,41],[16,45],[-12,20],[-13,28],[-15,20],[-13,-5],[-12,-12],[-11,-34],[-14,-24],[-15,-24],[-14,-34],[-2,-4],[-13,-13],[-13,13],[-14,7],[-11,17],[-33,34],[-9,24],[0,38],[-9,27],[-13,11],[-12,-4],[-14,-24],[-9,-31],[-20,28],[-11,20],[-12,38],[4,34],[5,36],[1,2],[-3,7],[-7,24],[-20,20],[-29,14],[-13,6],[-19,11],[-20,54],[-10,41],[-8,38],[-10,21],[-19,-4],[-5,38],[0,48],[14,20],[10,31],[0,48],[-10,42],[-6,23],[-8,37],[-6,58],[-8,45],[-6,31],[-13,30],[-12,-10],[-19,4],[-8,27],[-11,17],[-25,38],[-20,6],[-12,-6],[-14,5],[-14,1],[-13,-14],[-3,-3],[-14,0],[-15,3],[-2,1],[-13,7],[-20,-4],[-12,4],[-13,13],[-20,11],[-15,6],[-17,31],[-7,31],[-1,55],[3,51],[-5,33],[-1,2],[-15,30],[-12,20],[-10,-30],[-18,-11],[-18,55],[-11,45],[-2,39],[1,36],[7,37],[-13,34],[-16,18],[-12,6],[-7,38],[-7,37],[-10,28],[-18,20],[-16,4],[-12,0],[-13,10],[-7,48],[-17,31],[-14,20],[-25,14],[-14,31],[3,46],[-1,43],[-13,23],[-4,35],[-11,-11],[-12,11],[-15,-11],[-14,-20],[-15,-3],[-12,-7],[-13,-17],[7,-35],[12,-24],[12,-41],[-5,-37],[-18,-45],[-16,-24],[-15,14],[-4,36],[-4,53],[-13,24],[-17,24],[-10,24],[0,34],[-13,3],[-18,-10],[-8,-29],[4,-32],[0,-52],[-17,-34],[-15,3],[-12,11],[-8,34],[4,41],[-5,41],[-6,34],[-14,28],[-20,0],[-17,10],[-16,12],[-14,2],[-20,-11],[-14,-10],[-12,10],[-17,18],[-18,-4],[-13,3],[-11,34],[-12,0],[-14,18],[-16,13],[-13,4],[-13,7],[-15,6],[-7,28],[-14,27],[-14,0],[-10,27],[-5,35],[-13,6],[-12,24],[-15,-13],[-10,-24],[-10,-21],[-15,0],[-14,-13],[-12,-11],[-9,-24],[-13,11],[-1,37],[-15,0],[-3,-41],[-7,-31],[-12,4],[-11,-31],[-12,-14],[-14,11],[-3,34],[-10,24],[-11,17],[-13,10],[-12,7],[-10,27],[-14,0],[-14,11],[-11,-11],[-15,-13],[-6,37],[-3,45],[-1,37],[-2,27],[-1,7],[-4,35],[-11,17],[-12,20],[-12,7],[-12,-17],[-13,-17],[-13,-9],[-9,-32],[-11,-24],[-11,-17],[-11,-14],[-12,11],[-16,7],[-16,-14],[-12,-7],[-11,-24],[-13,6],[-14,0],[-13,0],[-16,7],[-14,16],[-9,45],[-11,20],[-12,10],[-11,24],[-12,17],[-8,30],[-13,-7],[-13,7],[-12,10],[-12,7],[-13,-7],[-11,23],[-14,-3],[-3,-34],[-6,-31],[-17,-7],[-12,13],[-13,10],[-13,7],[-17,-37]],[[64826,54436],[-23,-113],[-3,-13],[-6,-28],[-9,-39],[-6,-31],[-9,-50],[-17,-66],[-11,-43],[-71,-306],[-10,-43],[-13,-52],[-8,-35],[-7,-28],[-41,-176],[-3,-13],[-63,-272],[-47,-199],[-57,-246],[-20,-83],[-10,-43],[-7,-34],[-25,-112],[-15,-70],[-13,-57],[-31,-129],[-7,-28],[-8,-30],[-7,-27],[-4,-15],[-42,-135],[-11,-35],[-8,-26],[-12,-39],[-17,-50],[-13,-42],[-13,-40],[-17,-55],[-42,-131],[-10,-32],[-13,-43],[-32,-101],[-16,-51],[-12,-38],[-14,-44],[-14,-43],[-22,-71],[-12,-38],[-25,-78],[-14,-44],[-9,-31],[-23,-71],[-9,-27],[-15,-49],[-12,-39],[-16,-50],[-13,-41],[-12,-38],[-12,-38],[-13,-40],[-9,-28],[-21,-66],[-12,-39],[-39,-124],[-10,-31],[-10,-30],[-9,-31],[-14,-43]],[[63658,50103],[-11,-36],[-8,-27],[-14,-43],[-10,-20],[-18,-60],[-8,-32],[-9,-31],[-16,-50],[-10,-35],[-6,-17],[-3,-10],[-12,-41],[-29,-95],[-12,-38],[-46,-149],[-4,-16],[-4,-10],[-16,-55],[-10,-33],[-12,-38],[-11,-38],[-9,-29],[-42,-138],[-30,-99],[-18,-61],[-12,-37],[-48,-159],[-12,-40],[-10,-33],[-12,-39],[-44,-144],[-9,-29],[-15,-48],[0,-1],[-30,-97],[-23,-75],[-32,-106],[-26,-85],[-71,-234],[-10,-35],[-12,-40],[-33,-112],[-14,-50],[-9,-30],[-18,-59],[-41,-140],[-7,-26],[-13,-42],[-21,-73],[-19,-63],[-13,-46],[-21,-69],[-7,-27],[-13,-42],[-9,-31],[-10,-34],[-8,-28],[-80,-274],[-9,-29],[-24,-78],[-24,-80],[-56,-188],[-10,-31],[-9,-30],[-9,-31],[-18,-61],[-22,-71],[-10,-35],[-10,-33],[-14,-44],[-33,-112],[-15,-49],[-10,-32],[-10,-35],[-46,-146],[-14,-44],[-27,-85],[-22,-71],[-8,-26],[-9,-27],[-24,-76],[-30,-98],[-9,-28],[-23,-72],[-10,-32],[-61,-193],[-54,-174],[-27,-86],[-14,-47],[-23,-74],[-9,-27],[-21,-68],[-10,-32],[-12,-40],[-14,-46],[-88,-282],[-5,-18],[-10,-30],[-14,-45],[-35,-112],[-31,-99],[-10,-34],[-53,-167],[-44,-137],[-10,-32],[-17,-56],[-13,-40],[-5,-17],[-3,-9],[-8,-26],[-9,-28],[-3,-10],[-7,-20],[-8,-27]],[[61465,42934],[-21,-17],[-5,-6],[-8,-11],[-13,-26],[-12,-33],[-8,-33],[-8,-41],[-6,-36],[0,-4],[-4,-44],[0,-62],[2,-37],[2,-38],[3,-69],[4,-47],[3,-45],[7,-74],[5,-45],[7,-72],[6,-55],[3,-41],[0,-65],[-2,-51],[-3,-51],[-4,-42],[-6,-37],[-9,-45],[-13,-41],[-17,-26],[-15,-25],[-17,-22],[-17,-21],[-17,-18],[-14,-12],[-13,-15],[-22,-26],[-1,-2],[-1,-2],[-21,-21],[-2,-2],[-3,-2],[-2,0],[-2,-1],[-2,0],[-37,0],[-2,0],[-2,1],[-3,0],[-2,2],[-2,2],[-26,27],[-48,21],[-16,1],[-17,1],[-45,28],[-47,54],[-41,41],[-35,12],[-7,2],[-23,6],[-12,10],[-11,19],[-27,16],[-25,-7],[-18,-4],[-28,-16],[-35,-18],[-11,-5],[-36,-31],[-84,-70],[-9,-11],[-33,-37],[-1,-2],[-24,-24],[-1,0],[-2,-2],[-2,-1],[-1,-1],[-8,-3],[-2,-1],[-2,0],[-2,0],[-1,0],[-18,5],[-21,5],[-25,-25],[-10,-10],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-3,0],[-2,0],[-2,1],[-1,0],[-2,1],[-22,11],[-67,-23],[-17,0],[-54,0],[-17,0],[-15,1],[-32,2],[-53,4],[-17,-11],[-1,0],[-2,-1],[-1,-1],[-48,-10],[-36,-32],[-1,0],[-2,-2],[-1,0],[-6,-3],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-21,-8],[-8,-2],[-10,-24],[-18,-69],[-26,-99],[-1,-5],[-1,-4],[-2,-5],[0,-1],[-2,-4],[-1,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-3],[-63,-72],[-10,-18],[-24,-85],[-1,-2],[-1,-4],[-16,-46],[-1,-4],[-2,-4],[-2,-3],[-2,-3],[-1,-3],[-2,-2],[-43,-55],[-7,-15],[-27,-63],[-22,11],[-7,-38],[-7,-41],[-7,-38]],[[59657,40761],[-21,-9],[-24,-6],[-9,-2],[-34,-22],[-10,-7],[-3,-5],[-51,-76],[-2,-2],[-4,-7],[-12,-83],[1,-51],[-2,-67],[-2,-15],[0,-1],[-3,-7],[-25,-3],[-18,8],[-40,39],[-34,29],[-8,9],[-15,26],[-4,19],[-1,6],[-10,25],[-27,69],[-15,20],[-3,4],[-4,0],[-6,0],[-9,11],[-71,133],[-26,76],[-8,50],[1,68],[1,9],[3,45],[1,1],[1,1],[2,13],[10,57],[4,42],[1,6],[1,188],[0,14],[-12,152],[3,59],[12,82],[6,20],[5,3],[1,0],[2,2],[4,-1],[20,-4],[7,-1],[4,0],[14,-5],[6,-4],[13,-8],[5,-6],[1,-3],[4,-14],[2,-9],[4,-8],[25,-31],[22,-17],[16,5],[3,1],[17,10],[6,7],[3,13],[2,19],[-1,36],[-2,8],[-1,1],[-7,15],[-26,51],[-5,5],[-11,13],[-12,19],[-28,60],[-24,68],[-19,76],[-3,8],[-2,2],[-1,0],[-19,32],[-5,15],[-12,37],[-1,7],[0,17],[-5,28],[-5,11],[-6,9],[-13,7],[-25,3],[-1,0],[-8,-9],[-15,-36],[-2,-7],[-6,-16],[-12,-29],[-15,-1],[-14,10],[2,37],[5,35],[7,49],[11,29],[12,32],[6,36],[10,27],[11,15],[11,16],[13,2],[12,3],[12,9],[13,26],[3,36],[-10,18],[-12,16],[-9,26],[-9,24],[-13,8],[-5,32],[-5,32],[-6,36],[2,37],[-8,24],[-7,60],[-23,203],[-23,116],[-14,68],[-7,34],[-18,91],[-16,80],[-9,46],[-24,118],[-16,79],[-52,255],[-16,82],[0,1],[-7,34],[-6,31],[-13,61],[-24,121],[-42,209],[-18,82],[-43,205],[-12,61],[-28,133],[-12,53],[-6,32],[-1,4],[-8,36],[-28,135],[-12,60],[-9,40],[-16,79],[-1,3],[-32,157],[-8,37],[-27,138],[-64,327],[-46,217],[-32,154],[-9,47],[-5,26],[-3,15],[-33,174],[-22,104],[-4,22],[-35,169],[-9,47],[-7,36],[-24,120],[-40,188],[-36,178],[-23,110],[-6,30],[-59,285],[-13,62],[-13,63],[-23,111],[-16,81],[-6,31],[-18,84],[-21,108],[-7,32],[-8,42],[-10,46],[-9,43],[-55,263],[-14,70],[-37,188],[-29,148],[-17,76],[-7,37],[-9,43],[-39,182],[-8,40],[-17,80],[-21,103],[-18,89],[-16,85],[-7,36],[-21,103],[-13,63],[-32,153],[-7,34],[-8,40],[-25,122],[-1,9],[-8,38],[-7,36],[-31,150],[-35,170],[-7,30],[-7,29],[-12,57],[-6,34],[-2,10],[-6,35],[-6,32],[0,2],[-10,46],[-6,29],[-8,36],[-1,4],[-28,137],[-21,102]],[[61672,52250],[-13,-24],[1,-4],[8,-33],[-11,-20],[-13,-24],[-8,-48],[-18,28],[-14,7],[-13,-2],[-2,35],[-20,35],[-28,43],[-13,-39],[-10,-35],[-13,-38],[-12,-40],[-9,-28],[-3,-9],[-9,-29],[-6,-22],[-1,-1],[-12,56],[-18,35],[-11,24],[-5,-15],[-20,-38],[-54,-89],[-9,-14],[6,-34],[8,-35],[-1,-35],[0,-1],[-10,-7],[-26,-18],[-27,-18],[-12,-6],[-26,-146],[-4,-32],[19,-40],[34,-73],[7,-43],[-13,-45],[-17,-10],[-18,-9],[-6,-3],[-14,-7],[-13,-11],[-21,5],[-3,1],[-21,-15],[-21,-82],[14,-36],[-6,-14],[6,-46],[10,-61],[14,8],[12,5],[16,-11],[24,-18],[22,-15],[5,41],[10,79],[1,0],[7,3],[1,3],[2,21],[8,31],[-6,8],[5,29],[0,1],[11,25],[1,0],[8,-23],[19,-34],[-1,-5],[5,-11],[3,-7],[2,-5],[-2,-8],[-4,-19],[-1,-5],[-12,-59],[-6,-30],[-1,-4],[22,-22],[8,-28],[11,-35],[13,-21],[13,-13],[-16,-14],[-13,-11],[-21,-14],[-15,-2],[-15,-1],[-13,0],[-18,2],[-12,-4],[-3,2],[-9,6],[-11,-19],[-11,-28],[-16,-32],[-13,-22],[-24,-22],[-5,1],[-4,2],[-6,-3],[-12,-1],[-6,43],[-18,0],[2,-30],[-4,-22],[-4,-1],[1,-22],[2,-53],[0,-2],[-9,2],[-14,4],[-7,2],[-6,2],[0,-1],[-1,-37],[-2,-63],[-1,-29],[-1,-36],[1,-65],[16,-40],[6,7],[4,10],[9,-40],[11,-16],[4,-33],[2,-41],[2,-37],[1,-38],[0,-37],[-4,-34],[12,-9],[12,-12],[13,-7],[15,-3],[14,-8],[16,-1],[12,1],[13,9],[8,32],[11,15],[11,-12],[14,-11],[13,-10],[14,-8],[12,5],[13,20],[10,26],[8,26],[11,19],[12,0],[21,21],[12,23],[12,8],[19,28],[9,22],[9,23],[11,22],[12,-13],[17,-8],[12,-2],[13,-16],[13,-7],[11,-16],[10,-32],[2,-34],[0,-52],[5,-5],[4,-3],[5,1],[6,7],[6,17],[8,30],[13,6],[13,21],[17,8],[12,13],[9,-14],[2,-3],[-5,-25],[8,-18],[21,-20],[0,-1],[4,-5],[31,-27],[9,49],[3,23],[3,17],[-9,24],[24,106],[12,34],[11,20],[14,26],[11,25],[7,36],[8,17],[3,6],[27,-7],[32,-44],[17,23],[9,28],[6,39],[7,36],[9,55],[2,54],[-9,33],[-11,22],[-5,3],[-11,6],[-11,-13],[-1,-2],[-12,-21],[-2,-4],[-5,-19],[-2,-8],[-13,-18],[-13,4],[-8,34],[3,33],[6,34],[0,1],[0,38],[2,40],[8,31],[13,28],[4,9],[2,4],[12,28],[13,35],[10,29],[9,69],[1,79],[-4,38],[-1,21],[-3,32],[3,16],[2,8],[4,15],[13,1],[13,1],[13,-5],[19,-13],[1,0],[14,15],[9,35],[4,35],[0,9],[4,61],[-9,45],[-2,49],[-3,57],[1,35],[0,1],[0,40],[-7,43],[0,3],[-1,1],[-4,14],[-4,10],[-2,7],[-1,-2],[-31,-64],[-20,-41],[-8,-14],[-7,-15],[1,-3],[7,-18],[-5,-11],[-1,0],[2,-6],[2,-2],[3,-4],[-3,-7],[-5,10],[-2,4],[-5,16],[-8,18],[-12,13],[-22,-141],[10,-9],[9,-12],[-2,-27],[-6,1],[-25,-1],[-24,-1],[-11,-1],[-14,3],[-15,-48],[-1,-34],[-8,-48],[-26,21],[-8,10],[-11,14],[-8,58],[-11,3],[-8,31],[9,24],[-9,69],[-1,6],[8,28],[3,10],[8,30],[12,42],[6,33],[16,81],[38,176],[3,11],[-2,6],[-12,32],[-8,37],[-3,13],[-5,21],[-31,17],[-18,4],[-10,-4],[13,48],[-8,29],[-19,-16],[-13,-31]],[[82023,55562],[31,-44],[10,1],[27,-38],[38,-68],[7,-17],[43,-52],[78,-391],[-6,-67],[-12,-18],[-19,60],[-34,211],[-30,87],[-22,44],[-32,80],[-15,49],[-28,54],[-22,26],[-16,1],[-14,75],[6,1],[10,6]],[[84153,50431],[-16,-44],[-10,-24],[-11,-24],[2,-38],[-10,-26],[-12,-13],[-17,-38],[3,-39],[-10,-35],[-17,-29],[-7,-13],[-6,-9],[-6,-40],[-19,-22],[-14,-26],[-18,1],[-17,-10],[-12,-5],[-11,-17],[-11,28],[-16,-16],[-12,3],[-16,-20],[-12,-4],[-13,-16],[-16,-12],[-19,-2],[-15,-6],[-19,8],[-15,2],[-12,9],[-23,-1],[-14,-1],[-12,11],[-13,-13],[-7,-30],[-14,-16],[-3,-34],[-6,-37],[-10,-20],[-4,-49],[-6,-33],[-7,-46],[-9,-25],[-7,-33],[-9,-26],[2,-36],[-5,-42],[-12,-26],[-16,-58],[-13,-37],[-15,-43],[-2,-42],[-2,-38],[-4,-37],[-7,-30],[-9,-27],[-11,-18],[-14,-42],[-5,-189],[-6,-65],[-13,-28],[-7,-35],[3,-65]],[[83489,48743],[-13,1],[-34,-37],[-23,22],[-16,15],[-16,4],[-11,16],[-25,25],[-24,10],[-5,37],[1,50],[-8,40],[-11,21],[-4,50],[-6,54],[-11,43],[-6,38],[-21,46],[-10,30],[-6,41],[-12,25],[-62,29],[-13,23],[-15,10],[-22,2],[-12,16],[-13,-3],[-31,13],[-13,7],[-14,-17],[-40,1],[-23,-13],[-20,-26],[-16,-18],[-8,-50],[-11,21],[-14,28],[-26,20],[-14,-6],[-12,16],[-12,42],[-50,-5],[-84,-9],[-203,302],[-59,100],[-10,13],[-2,2],[-58,77],[-12,7],[-1,1],[-44,-6],[-121,-11],[-5,-52],[-21,-18],[-27,-29],[-10,-32],[-19,16],[-16,18],[-15,22],[-18,12],[-19,16],[-11,21],[-14,1],[-14,26],[-13,27],[-17,21],[-10,18],[-19,41],[-18,-11],[10,36],[3,37],[42,64],[12,35],[7,62],[2,47],[9,29],[-7,41],[-10,62],[2,43],[4,37],[-2,66],[-3,41],[8,31],[10,17],[8,46],[12,40],[8,30],[4,42],[-4,44],[-9,22],[-5,43],[7,33],[-5,47],[-20,46],[-18,17],[-14,0],[-19,21],[-13,5],[-18,7],[-26,37],[-3,37],[-13,59],[-9,34],[-7,27],[-29,56],[-21,34],[-15,28],[-15,13],[-11,31],[-21,9],[-16,61],[-11,28],[-7,35],[-22,36],[-14,10],[-20,31],[-13,33],[-8,28],[-15,2],[-20,27],[-14,32],[-8,27],[-8,36],[-11,49],[-10,29],[-9,29],[-30,25],[-21,11],[-20,22],[-13,-8],[-14,0],[-13,-12],[-12,-32],[-12,-9],[-16,8],[-28,-4],[-18,14],[-2,35],[-6,32],[-10,56],[-10,32],[-11,17],[-15,14],[-17,-17],[-15,13],[-16,29],[-30,78],[-46,121],[-46,120],[-10,26],[-22,59],[-47,123],[-37,97],[-81,211],[-11,27],[-10,28],[-7,41],[-16,25],[-11,22],[-12,18],[-8,51],[-3,39],[-9,48],[-11,28],[-19,23],[-10,23],[-22,39],[-13,33],[-11,56],[-7,74],[-12,42],[-5,36],[-7,50],[-1,46],[5,52],[-17,49],[-1,36],[-1,36],[-15,48],[-23,10],[-9,53],[-8,47],[-11,55],[-31,37],[-7,14],[-1,2],[-143,-301],[-14,-30],[-36,-77],[-17,-35],[-51,-106],[-32,-76],[-26,-28],[-22,-36],[-11,-51],[-18,-54],[-9,-30],[-7,-32],[-12,-31],[-9,-33],[-24,-10],[-13,7],[-19,-53],[-8,-25],[-16,-25],[-20,-25],[-17,-8],[-15,-27],[-11,-36],[-10,-58],[-16,-12],[-39,-40],[-16,-39],[-11,-21],[-14,0],[-14,-15],[-13,-9],[-15,-26],[-24,-7],[1,-34],[5,-42],[21,-4],[11,-15],[-8,-25]],[[79918,52666],[-28,-11],[-33,6],[-23,19],[-39,22],[-39,33],[-34,15],[-58,80],[-4,61],[-36,41],[-32,40],[-19,-71],[-32,7],[-46,29],[-41,16],[-38,5],[-38,-11],[-35,-24],[-17,39],[21,64],[-12,62],[-9,73],[20,127],[2,80],[-11,64],[-38,105],[-31,64],[-38,66],[-38,5],[-36,10],[-35,-6],[-41,-57],[-46,-96],[-51,-70],[0,-1],[1,-126],[-5,-83],[0,-26],[-2,-68],[-33,-42],[-1,-1],[-20,-8],[-34,-5],[-39,-15],[-54,-33],[-15,29],[23,73],[9,26],[5,33],[9,57],[-1,45],[-1,36],[-2,49],[-1,34],[-25,24],[-18,64],[-30,35],[-1,1],[-28,46],[-28,11],[-49,71],[-24,72],[-32,43],[13,82],[5,159],[-1,144],[10,89],[-31,-24],[-15,135],[1,106],[2,201],[-3,131],[-12,109],[-18,57],[-37,245],[-17,87],[-20,62],[-28,46],[-15,46]],[[78813,59041],[36,-6],[23,2],[30,-6],[37,18],[29,-8],[26,13],[15,70],[23,5],[18,-38],[12,46],[23,104],[48,13],[39,-18],[27,-40],[2,-3],[12,1],[29,2],[25,54],[31,-17],[29,28],[50,-11],[12,-28],[23,-52],[9,-33],[11,-19],[10,-27],[10,-24],[10,-27],[9,-29],[10,-20],[25,-59],[9,-35],[16,-48],[9,-29],[12,-18],[12,-26],[22,-59],[20,-94],[2,-38],[4,-49],[0,-35],[2,-39],[5,-50],[4,-32],[17,-86],[10,-71],[10,-103],[3,-88],[-4,-83],[-24,-107],[-10,-30],[-15,-42],[-7,7],[1,74],[-21,87],[19,78],[-22,100],[3,69],[-41,46],[8,146],[-26,64],[-31,-142],[6,-146],[32,-46],[-30,-132],[-21,-115],[13,-119],[53,-55],[-3,-10],[1,-86],[11,-66],[19,-93],[18,-79],[7,-100],[2,-53],[-8,-61],[-31,7],[-38,41],[-32,47],[-25,24],[-20,51],[-28,-13],[-13,-87],[-18,-32],[-38,-31],[-22,-77],[12,-87],[-50,-55],[-31,58],[-32,-35],[-41,-17],[-16,-49],[25,-7],[27,-39],[36,37],[13,-108],[37,-10],[29,62],[46,-30],[9,133],[-14,67],[20,63],[20,4],[17,50],[17,-36],[4,-78],[28,-60],[31,-71],[35,36],[27,6],[31,-9],[37,21],[49,52],[37,77],[25,-29],[43,-56],[12,-15],[12,-14],[15,-26],[31,-48],[12,-25],[12,-19],[14,-12],[15,-8],[28,-15],[30,-58],[41,34],[19,-1],[18,0],[25,-10],[16,-12],[19,-8],[34,-25],[11,-29],[11,-15],[20,-10],[23,-37],[15,-31],[14,-24],[-24,-66],[-22,-3],[-19,-50],[2,-65],[-29,-82],[-12,-95],[-16,-79],[-35,-87],[5,-91],[39,-11],[42,17],[5,97],[39,18],[27,158],[29,78],[-4,73],[7,32],[12,52],[12,-40],[11,-22],[9,-22],[15,-25],[10,-21],[12,-24],[16,-26],[16,-23],[12,-17],[10,-18],[12,-20],[25,-45],[29,-70],[11,-28],[34,-81],[9,-25],[10,-28],[12,-23],[12,-24],[10,-16],[12,-21],[12,-15],[11,-14],[13,-13],[18,-18],[14,-12],[13,-6],[13,-4],[19,-4],[13,0],[12,1],[33,2],[19,-6],[16,-11],[12,2],[29,-39],[6,-34],[14,-24],[11,-16],[11,-13],[15,-7],[15,-3],[38,-8],[36,-33],[12,-18],[13,-14],[12,-13],[12,-10],[13,-11],[15,-11],[13,-2],[20,-2],[19,-1],[15,-2],[25,-30],[18,29],[13,-1],[17,4],[13,2],[12,3],[15,5],[16,8],[13,8],[15,10],[12,8],[12,10],[16,14],[13,9],[44,29],[14,0],[12,9],[12,6],[14,7],[35,26],[14,4],[12,8],[26,19],[26,-11],[14,-7],[16,0],[12,6],[13,6],[12,5],[28,11],[43,-4],[14,-9],[18,-8],[15,-5],[16,-5],[14,-6],[30,-14],[26,-26],[6,-63],[27,-71],[10,-92],[-16,-88],[4,-85],[21,-32],[2,4],[6,101],[36,9],[35,-34],[28,-63],[14,-42],[-7,-55],[-11,-104],[-21,-54],[-3,-27],[13,-32],[16,22],[16,50],[26,26],[35,-27],[34,-40],[25,-34],[20,-48],[36,-122],[0,-4],[12,-50],[0,-58],[-21,0],[-31,111],[-16,34],[-27,15],[-6,0],[-10,-34],[20,-34],[34,-70],[5,-64],[-32,-22],[12,-87],[30,-12],[36,99],[53,-9],[29,-84],[27,-10],[38,-22],[76,42],[13,-59],[21,-25],[6,-71],[-28,-30],[23,-64],[-17,-170],[8,-67],[8,-53],[-26,-62],[33,-16],[18,-89],[29,-37],[7,-79],[-18,-64],[-36,16],[-22,-70],[-32,63],[-29,13],[-24,-55],[-25,-50],[-31,6],[-21,-24],[-36,19],[-47,-28],[-43,9],[-38,-15],[20,-67],[31,-21],[41,10],[26,-14],[36,-21],[29,1],[25,-67],[0,-3],[-27,-83],[13,-89],[7,-75],[21,-97],[26,-83],[23,-23],[18,-66],[27,-75],[-42,-85],[47,-3],[35,-3],[-2,72],[-9,62],[-32,65],[-11,97],[-25,61],[-14,62],[-30,39],[-9,82],[11,57],[3,79],[2,6],[13,70],[15,88],[38,-42],[22,-37],[25,27],[22,56],[38,-106],[19,55],[17,13],[8,86],[25,95],[7,86],[-2,113],[31,14],[24,158],[0,87],[-24,57],[-28,16],[-27,12],[-27,44],[-19,105],[21,54],[-15,92],[26,95],[11,73],[23,-26],[13,-45],[6,-77],[14,-82],[26,-28],[36,-40],[22,30],[50,-35],[49,18],[-15,77],[-22,55],[-48,22],[-31,-35],[-32,18],[3,75],[11,77],[-28,49],[-30,-23],[-11,57],[-14,20],[-20,-42],[-40,-6],[-32,-122],[-25,26],[-17,89],[159,253],[68,166],[8,35],[11,66],[3,101],[-4,104],[18,27],[46,-8],[44,-1],[37,-30],[52,-68],[25,-38],[34,-33],[24,-46],[30,-25],[29,-47],[43,-47],[38,-59],[19,-137],[27,7],[6,-144],[32,-85],[26,-49],[40,-89],[40,-44],[45,-65],[24,-109],[16,-65],[18,-86],[-2,-68],[8,-68],[12,-69],[1,-97],[-29,-62],[-2,-110],[-30,-4],[-26,-10],[-19,-49],[-23,-107],[-24,-60],[-47,-99],[28,-96],[30,-12],[34,60],[-4,111],[31,30],[28,107],[42,-23],[39,11],[16,60],[-13,78],[26,54],[-1,89],[4,93],[-5,100],[25,66],[-8,120],[18,85],[1,130],[-17,61],[-24,86],[2,92],[8,133],[-34,31],[-25,-14],[-17,86],[-20,58],[5,72],[25,51],[23,72],[22,-21],[43,9],[33,42],[40,-37],[23,-30],[25,-11],[25,-15],[31,-11],[39,-43],[22,8],[25,-4],[-19,-85],[-23,-106],[-1,-108],[39,-81],[27,-84],[41,-102],[28,-82],[9,-54],[9,-86],[1,-40],[-1,-39],[5,-51],[2,-37],[1,-87],[8,-63],[-1,-97],[-20,-15],[-4,-8],[5,-23],[67,-161],[27,-66],[10,-18],[14,-24],[14,-20],[14,-21],[12,-20],[32,-61],[12,-29],[11,-29],[32,-119],[29,-19],[15,-16],[14,-17],[14,-15],[39,-58],[12,-18],[11,-13],[33,-60],[38,-34],[12,-17],[18,-15],[16,-12],[14,-11],[13,-12],[37,-57],[10,-24],[11,-21],[11,-20],[13,-23],[11,-20],[20,-31],[34,-51],[15,-27],[17,-28],[14,-23],[13,-12],[46,-39],[5,-98],[13,-88],[-2,-50],[1,-44],[2,-38],[6,-44],[8,-39],[10,-41],[8,-29],[9,-40],[13,-48],[21,-77],[14,-50],[18,-72],[26,-83],[20,-76],[14,-68],[10,-74],[-17,-29],[-26,76],[-49,16],[-41,-75],[-29,-35],[-17,-63],[-34,18],[-4,63],[-25,-42],[12,-108],[-36,-23],[-43,30],[-7,77],[-6,80],[-28,36],[-19,70],[-6,85],[-19,57],[12,58],[2,67],[-19,49],[-25,-36],[11,-102],[-29,-76],[-11,-81],[3,-79],[-33,-32],[28,-77],[54,-19],[38,-37],[-28,-80],[24,-63],[8,-96],[18,-121],[-25,-24],[-29,6],[-29,68],[-14,-66],[-18,19],[-22,34],[-10,-70],[-24,13],[-27,48],[-27,17],[23,-88],[-31,-2],[-25,20],[-21,15],[-30,46],[9,-81],[-11,-98],[-3,-98],[25,-21],[-5,-100],[-35,-40],[-16,-73]],[[49716,52827],[-8,-45],[-8,-45],[-17,-70],[-14,-39],[-23,-42],[-19,-68],[-15,-53],[-8,-33],[-9,-35],[-23,-101],[-11,-31],[-12,-53],[-9,-56],[-9,-42],[-10,-44],[-11,-38],[-20,-51],[-10,-31],[-13,-41],[-11,-38],[-24,-88],[-9,-27],[-34,-103],[-18,-11],[-25,-19],[-18,-19],[-23,-31],[-16,-28],[-16,-38],[-7,-31],[-14,-28],[-9,-50],[-8,-36],[-10,-31],[-9,-36],[72,-91],[86,-110],[-12,-41],[-17,-54],[-17,-60],[-14,-34],[-11,-18],[-14,-38],[-21,-90],[-11,-29],[-26,-83],[-17,-57],[-10,-29],[-7,-35],[-9,-41],[-9,-31],[-9,-36],[-14,-48],[-12,-42],[-10,-38],[-11,-27],[-8,-33],[-7,-32],[-18,-59],[-21,-70],[-7,-22],[-16,-42],[-22,-58],[3,-59],[-10,-39],[-12,-47],[-12,-39],[-5,-35],[-8,-38],[-11,-25],[-7,-40],[-15,-36],[-7,-41],[-10,-45],[-9,-40],[-15,-40],[-7,-27],[-6,-37],[-15,-30],[-9,-41],[-17,-40],[-15,-41],[-10,-36],[-14,-36],[-21,-41],[-9,-29],[-17,-58],[-11,-36],[-16,-59],[-9,-26],[-14,-32],[-10,-28],[-14,-41],[-13,-33],[-17,-50],[-6,-31],[-12,-33],[-13,-35],[-22,-72],[-14,-32],[-10,-33],[-9,-36],[-18,-42],[-17,-46],[-9,-23],[-9,-22],[-17,-21],[-18,-37],[-15,-21],[-13,-43],[-8,-39],[-14,-34],[-24,-41],[-17,-25],[-14,-21],[-12,-25],[-11,-19],[-17,-30],[-9,-34],[-11,-25],[-15,-38],[-16,-34],[-11,-27],[-15,-17],[-18,-25],[-11,-24],[-11,-14],[-16,-33],[-6,-48],[-12,-37],[-12,-41],[-11,-47],[-11,-52],[-9,-34],[-10,-36],[-6,-34],[-7,-28],[-14,-31],[-4,-47],[-9,-54],[-10,-39],[-10,-21],[-5,-33],[-16,-76],[-10,-32],[-15,-38],[-6,-32],[-15,-39],[-8,-42],[-12,-26],[-4,-72],[0,-61],[-10,-54],[-9,-27],[-11,-38],[0,-49],[-9,-28],[-5,-35],[-9,-41],[-6,-64],[-11,-63],[-9,-39],[-16,-70],[-23,-76],[-15,-64],[-13,-64],[-17,-73],[-11,-36],[-16,-35],[-4,-65],[-12,-56],[-14,-51],[-12,-55],[-21,-57],[-16,-37]],[[47719,45493],[-14,-43],[-19,-43],[-14,-38],[-69,143],[-29,-71],[-18,-45],[-34,-85],[-11,-28],[-11,-29],[-21,-55],[-18,-51],[-38,-108],[-23,-64],[-24,-65],[-17,-48],[-26,-59],[-13,-27],[-32,-61],[-30,-68],[-22,-46],[-15,-35],[-28,67],[-19,45],[-24,60],[-132,323],[-11,26],[-19,46],[-52,125],[-33,83],[-10,22],[0,2],[-37,66],[-2,6],[-102,177],[-12,21],[-72,127],[-108,192],[-2,2],[-13,9],[-17,-4],[-1,0],[-53,-12],[-52,-12],[-55,-12],[-210,-49],[-87,-20],[-94,-21],[-39,-9],[-32,-7],[-17,-4],[-3,-1],[-20,-5],[-14,2],[-10,2],[-320,141],[-24,4],[-47,21],[-150,69],[-5,2],[-34,15],[-79,36],[-97,44],[-22,10],[-16,8],[-12,5],[-51,24],[-31,14],[-30,14],[-56,102],[-12,26],[-23,49],[-55,219],[0,1],[-7,28],[-8,31],[-24,99],[-113,450],[-12,46],[-21,84],[-163,651],[-9,39],[-7,31],[-44,207],[-22,37],[-46,1],[-79,-3],[-93,-4],[-23,-1],[-16,-1],[-19,-1],[-14,0],[-32,-2],[-17,0],[-26,-2],[-4,-1],[-15,-8],[-13,-9],[-48,5],[-35,9],[-91,73],[-12,37],[-15,-10],[-8,30],[-12,38],[-12,-11],[-15,23],[-2,37],[-19,2],[-12,-9],[-10,11],[-1,1],[-15,-24],[-12,3],[-12,13],[-11,-16],[-18,3],[-13,5],[-16,11],[-12,-23],[-11,-23],[-11,-13],[-14,-3],[-14,0],[-6,-38],[-11,-27],[-8,-28],[-13,-16],[-12,-18],[-14,-2],[-12,-13],[-3,-37],[-7,-28],[-14,-6],[-12,3],[-10,-28],[-17,-18],[-14,-23],[-3,-33],[-6,-30],[-17,-34],[-11,-22],[-5,-30],[-8,-29],[-1,-34],[-39,-34],[-116,100],[-96,85],[-16,14],[-13,11],[-22,21],[-27,26],[-26,25],[-27,26]],[[42913,48242],[68,175],[69,102],[48,171],[42,28],[26,104],[120,250],[47,154],[38,31],[55,137],[7,101],[30,39],[85,103],[18,66],[29,103],[-2,72],[37,104],[-2,124],[67,231],[38,25],[25,90],[-10,87],[73,314],[40,42],[8,52],[16,98],[23,73],[-19,90],[9,90],[61,256],[23,109],[33,182],[10,73],[25,104],[-1,79],[-8,112],[86,448],[76,130],[107,332],[81,220],[61,192],[-76,97],[-30,44],[-44,24],[-24,179],[0,110],[-25,95],[-2,9],[15,40],[-31,235],[21,105],[68,18],[59,79],[39,131],[21,191],[51,176],[47,101],[1,124],[-9,135],[40,35],[14,161],[-47,75],[3,88],[14,203],[-34,119],[60,186],[185,168],[124,479],[100,98],[84,213],[74,166],[83,195],[41,169],[79,77],[30,140],[37,131],[75,-1],[49,58],[32,208],[77,47],[73,-57],[45,91],[5,181],[31,127],[65,-40],[51,55],[32,118],[56,67]],[[77777,55009],[6,-130],[4,-96],[2,-51],[6,-125],[3,-136],[3,-34],[13,-5],[9,29],[10,-22],[12,-2],[12,16],[2,-34],[10,-18],[15,-6],[3,34],[13,-2],[2,-36],[-4,-33],[8,-33],[-9,-24],[5,-37],[2,-10],[5,-18],[-7,-29],[-10,-23],[-12,-9],[-14,-16],[-12,-11],[-12,-4],[-13,0],[-13,0],[-9,-32],[1,-36],[-3,-10],[-6,-17],[-13,-5],[-14,-23],[-12,1],[-9,20],[-15,-24],[-10,19],[-6,34],[-15,-1],[-19,3],[-12,2],[-15,3],[-16,7],[-13,15],[-16,-6],[-12,11],[-12,-12],[-12,-12],[-13,-5],[-11,-21],[-12,-8],[-13,-23],[-11,19],[-12,9],[-6,33],[-13,12],[-15,-3],[-9,-23],[-12,-29],[-11,-16],[3,-35],[5,-50],[6,-31],[5,-31],[7,-34],[1,-35],[-7,-40],[-5,-51],[-8,-28],[-5,-31],[-6,-32],[-5,-35],[3,-35],[2,-39],[8,-34],[2,-35],[7,-44],[8,-26],[-4,-44],[-5,-38],[-10,-28],[0,-36],[6,-31],[0,-44],[-7,-28],[-10,-21],[-13,-7],[-14,2],[-14,1],[-12,-18],[-11,-9],[-12,-1],[-5,-34],[-1,-37],[-1,-53],[-9,-36],[-10,-34],[-13,-7],[-15,-4],[-9,-26],[-20,-19],[-7,-40],[-13,-19],[-7,-28],[-13,-13],[-13,9],[-13,-13],[-17,-14],[-15,-8],[-17,-36],[-13,-31],[-9,-32],[6,-30],[3,-38],[5,-34],[6,-31],[5,-33],[9,-27],[17,-24],[23,-40],[-4,-42],[0,-43],[7,-37],[18,-38],[13,-25],[11,-30],[6,-52],[13,-7],[30,-13],[16,-4],[8,-33],[15,-6],[14,-11],[14,-22],[18,-2],[12,-34],[6,-34],[8,-46],[17,-32],[-11,-29],[-9,-34],[2,-48],[18,-5],[15,-13],[5,-41],[14,-17],[16,-52],[4,-44],[13,-19],[12,-8],[9,-6],[6,-4],[12,-9],[16,-8],[17,-15],[19,-20],[16,-29],[12,-12],[4,-33],[8,-38],[2,-40],[0,-38],[9,-33],[14,-5],[8,-46],[10,-24],[10,-46],[8,-31],[12,-20],[6,-35],[-10,-65],[-13,-7],[-11,-24],[-6,-44],[-16,-3],[-8,-29],[-5,-62],[-5,-39],[-7,-33],[-3,-33],[-5,-32],[-8,-28],[-6,-34],[-3,-35],[5,-42],[-5,-33],[7,-31],[8,-25],[15,-16],[12,2],[13,3],[11,-13],[13,-22],[11,18],[14,-13],[12,-28],[10,-32],[18,6],[2,34],[12,29],[18,23],[14,10],[13,-3],[11,-27],[10,-24],[17,-17],[20,10],[12,-17],[14,-17],[13,-4],[12,-12],[7,-29],[13,-27],[15,-4],[16,-6],[14,6],[18,31],[19,31],[18,0],[25,7],[12,7],[32,-8],[11,-31],[10,-38],[10,-27],[10,-31],[5,-36],[3,-46],[5,-50],[7,-32],[6,-30],[7,-32],[11,-15],[15,-9],[14,-15],[13,1],[9,-19],[8,-28],[5,-43],[2,-37],[7,-36],[8,-26],[10,-25],[8,-29],[-13,-28],[-11,-25],[-12,-29],[-11,-28],[-2,-35],[6,-36],[8,-27],[13,-34],[9,-24],[10,-35],[-1,-38],[-3,-37],[3,-35],[8,-36],[5,-34],[7,-31],[15,-101],[3,-65],[4,-32],[12,-77],[-5,-59],[-5,-68],[-4,-33],[0,-37],[-2,-35]],[[78321,48679],[-12,59],[-20,65],[-14,-6],[-13,5],[-12,0],[-12,-17],[-16,13],[-17,16],[-12,-7],[-10,-21],[-11,-29],[-7,-28],[-13,-25],[-13,-17],[-18,-15],[-15,-13],[-12,2],[-12,-12],[-15,0],[-13,2],[-16,2],[-13,-1],[-12,-4],[-16,8],[-16,14],[-12,4],[-8,29],[-8,29],[-7,31],[-8,28],[-1,39],[-10,25],[-12,18],[-11,22],[-13,19],[-13,-5],[-13,-11],[-13,-5],[-14,4],[-11,16],[-12,-14],[-18,5],[-15,-5],[-21,-5],[-19,-6],[-13,-5],[-14,-2],[-17,-1],[-17,11],[-13,4],[-17,7],[-12,6],[-13,5],[-21,6],[-22,-23],[-16,-6],[-14,6],[-18,21],[-13,2],[-16,-4],[-14,-18],[-17,-18],[-9,23],[-12,25],[-13,5],[-14,-7],[-13,3],[-18,-1],[-14,-10],[-11,-19],[-10,-17],[-14,-27],[-7,-32],[-9,-23],[-9,-33],[-16,-17],[-14,-24],[-21,-12],[-13,-8],[-13,-4],[-19,7],[-20,1],[-12,-13],[-12,-19],[-11,-21],[-8,-25],[-10,-25],[-15,-42],[-20,-47],[-9,-24],[-2,-40],[-13,-20],[-11,-17],[-12,-1],[-8,-26],[-8,-35],[-10,-29],[-9,-27],[-11,-30],[-10,-30],[-9,-28],[-7,-32],[-1,-38],[10,-22],[13,-18],[11,-37],[-7,-28],[-13,-18],[-12,-10],[-8,-29],[-5,-39],[-4,-36],[-9,-30],[5,-32],[0,-38],[1,-39],[12,-23],[8,-28],[6,-32],[3,-38],[2,-38],[9,-36],[0,-45],[3,-39],[8,-26],[-2,-35],[-4,-36],[-9,-30],[-4,-32],[-7,-30],[-2,-34],[-3,-37],[-1,-40],[1,-34],[2,-36],[-6,-31],[-9,-31],[-5,-33],[2,-34],[-3,-37],[-11,-6],[-12,-14],[-5,-26],[-1,-4],[-6,-31],[0,-36],[13,-12],[7,-28],[12,-8],[14,-16],[7,-30],[12,9],[6,-30],[16,-10],[7,-29],[13,-6],[11,-12],[11,-15],[6,-37],[-4,-35],[-5,-31],[-12,-19],[-11,-16],[-14,-14],[-13,6],[-9,22],[-3,36],[-1,43],[-11,21],[-10,-23],[-8,-26],[-11,-14],[-8,-28],[-13,-5],[-10,-16],[-1,-35],[4,-33],[-3,-33],[12,-4],[21,6],[13,-5],[10,29],[7,-29],[7,-29],[13,-16],[-1,-36],[-4,-37],[0,-46],[-3,-42],[-12,-19]],[[77001,46180],[-16,0],[-106,-1],[-5,-1],[-2,-2],[-14,-13],[-4,-6],[-1,-5],[-13,-27],[-19,-19],[-2,-2],[-28,-28],[-19,84],[-9,13],[-17,13],[-8,2],[-11,3],[-8,1],[-3,-2],[-15,-36],[-6,-15],[-1,-1],[-19,-49],[-1,-11],[2,-9],[2,-6],[5,1],[0,1],[9,13],[6,4],[22,-2],[2,-5],[0,-1],[0,-26],[-3,-16],[-14,-19],[-5,-12],[-9,-23],[-4,-3],[-5,2],[-2,0],[-20,21],[-13,23],[-3,4],[-24,42],[-18,39],[-9,30],[-4,17],[-1,21],[0,16],[3,13],[3,7],[13,29],[28,40],[2,4],[2,5],[1,7],[8,47],[3,25],[1,7],[2,26],[-1,19],[-1,16],[0,12],[-3,49],[-6,11],[-73,87],[-12,8],[-12,0],[-5,-6],[-21,-39],[-14,-24],[-1,-10],[-2,-9],[-2,-9],[-19,-75],[-4,-10],[-2,1],[-7,1],[-3,1],[-4,8],[-4,9],[-11,22],[-1,7],[1,7],[5,29],[-5,90],[-11,59],[-5,23],[-10,29],[-2,1],[-3,6],[-2,5],[-24,54],[-3,6],[-31,31],[-39,9],[-19,-8],[-6,-10],[-1,-2],[-7,-25],[-36,-128],[0,-2],[-3,-11],[-2,-11],[-1,-11],[2,-4],[12,-24],[3,-9],[11,-59],[2,-15],[-2,-18],[0,-3],[0,-14],[-3,-37],[-2,-57],[-3,-36],[-12,-68],[-7,-40],[-30,-191],[-7,-43],[1,-35],[-1,-35],[4,-33],[8,-28],[-1,-36],[6,-36],[-4,-34],[-6,-30],[-2,-36],[4,-33],[-8,-25],[-12,-25],[-3,-34],[-7,-35],[-8,-29],[-9,-26],[-13,-27],[-8,-31],[-11,-14],[-9,-26],[-61,-110],[-24,-46],[-91,-327],[-23,-84],[-23,-76],[-65,-178],[-12,-25],[-12,-4],[-17,3],[-55,12],[-11,-19],[-6,-50],[-1,-8],[-21,-186],[-63,-159],[-39,-99],[-33,-86],[-33,-84],[-23,-57],[-18,-36],[-19,-37],[-30,-62],[-31,-61],[-1,-1],[-12,-26],[-69,-139],[-70,-141],[-27,-55],[-34,-145],[-19,-41],[-13,-25],[-117,-252],[4,-96]],[[75058,42684],[-22,-6],[-13,-6],[-13,-2],[-15,33],[-8,34],[-4,49],[-1,39],[-8,35],[-16,33],[-19,28],[-18,24],[-13,7],[-41,10],[-15,-2],[1,-52],[-7,-30],[-21,-22],[-19,-30],[-4,-33],[4,-64],[10,-26],[-5,-34],[-17,4],[-16,1],[-15,-8],[-1,-2],[-8,-19],[-8,-32],[0,-48],[6,-80],[-9,-116],[-11,-46],[-7,-36],[-13,-37],[-16,-13],[-14,1],[-20,10],[-12,29],[-17,16],[-15,-1],[-20,-14],[-18,3],[-79,20],[-20,-11],[-16,-13],[-23,-2],[-11,16],[-2,35],[-16,30],[-18,-2],[-16,-5],[-23,10],[-9,27],[-6,55],[6,44],[26,86],[16,-3],[29,-14],[19,-16],[17,-24],[15,-6],[17,2],[13,21],[13,39],[1,43],[-16,14],[-20,26],[-20,18],[-20,26],[-6,46],[6,66],[9,68],[4,60],[1,12],[2,22],[6,44],[6,72],[2,56],[-8,36],[-12,24],[-17,0],[-14,12],[-16,27],[-12,5],[-14,-2],[-13,-28],[-7,-38],[-14,-30],[-14,7],[-11,11],[-20,20],[-18,14],[-23,33],[-39,91],[-17,31],[-16,17],[-16,-14],[-17,-18],[-9,32],[-2,38],[2,46],[7,36],[12,69],[11,24],[18,12],[17,-11],[24,-22],[15,5],[14,13],[5,38],[-16,61],[20,12],[22,5],[9,35],[-1,37],[-12,14],[-6,38],[-11,24],[-16,2],[-14,-10],[-16,7],[-21,25],[-20,30],[-15,2],[-14,-8],[-21,-1],[-15,6],[-16,22],[-14,31],[0,54],[-8,36],[3,40],[12,51],[-1,48],[-10,21],[-13,58],[1,4],[2,38],[15,75],[2,67],[-12,19],[-12,27],[10,24],[2,35],[0,40],[9,32],[6,38],[0,35],[-6,33],[-5,31],[-4,46],[9,29],[3,75],[-11,42],[0,42],[6,49],[11,35],[11,33],[8,36],[12,4],[5,-32],[10,-32],[18,-27],[30,20],[-1,35],[-6,32],[-27,32],[-4,41],[-2,47],[-19,33],[-27,52],[-16,22],[-12,31],[-5,37],[-2,34],[-2,47],[-11,40],[-12,17],[-21,25],[-7,29],[3,63],[-6,45],[-8,45],[-2,45],[-10,47],[-5,35],[-12,62],[-16,26],[-15,25],[-17,25],[-19,31],[-7,38],[3,41],[-11,53],[-6,45],[-14,29],[-19,-9],[-14,-13],[-14,2],[-24,-19],[-16,-23],[-8,-34],[-28,-59],[-13,0],[-17,-2],[-4,0],[-21,-26],[-18,-33],[-8,-5],[-5,-3],[-12,0],[-18,13],[-12,23],[0,2],[-15,12],[-16,-1],[-13,-10],[-20,-26],[-27,-56],[-25,-45],[-12,-34],[-11,-37],[-13,-6],[-25,-5],[-21,-2],[-12,9],[-20,73],[-14,54],[-11,26],[-20,19],[-16,-3],[-15,14],[-4,37],[-1,39],[-6,32],[-1,43],[6,54],[-1,46],[-7,43],[-16,19],[-20,18],[-11,22],[-19,20],[-17,27],[-12,16],[-22,29],[-13,-12],[-16,0],[-24,26],[-10,30],[-9,26],[-12,18],[-12,7],[-15,-16],[-13,6],[-15,6],[-9,24],[-12,20],[-20,26],[-9,26],[-10,43],[-13,49],[-5,44],[-9,38],[-11,23],[-14,19],[-8,30],[-11,20],[-12,51],[-9,63],[-3,35],[-4,37],[-13,15],[-13,-1],[-16,1],[-13,6],[-17,5],[-30,-2],[-37,-35],[-13,-17],[-10,-16],[-12,-48],[-6,-47],[-12,-13],[-11,-7],[-12,14],[-18,30],[-31,43],[-22,45],[-12,16],[-12,16],[-14,25],[-14,42],[-2,36],[10,39],[18,32],[16,5],[17,4],[15,9],[15,-8],[16,5],[12,5],[12,32],[-1,40],[-11,17],[-16,14],[-12,10],[-13,16],[-20,44],[-5,32],[-7,37],[-17,25],[-11,27],[-9,34],[-12,10],[-27,1],[-13,-5],[-14,11],[-9,24],[0,41],[-1,34],[-3,41],[-12,22],[-14,7],[-10,21],[-2,51],[7,29],[15,39],[-1,47],[-21,47],[-19,57],[-4,39],[-11,80],[-15,51],[-14,23],[-19,24],[-12,15],[-20,33],[-16,11],[-11,-18],[-12,-28],[-10,-34],[0,-35],[5,-42],[-5,-33],[-7,-34],[-14,-26],[-33,-13],[-18,-24],[-12,-7],[-19,-1],[-21,4],[-34,32],[-20,29],[-15,32],[-24,48],[-14,25],[-14,20],[-18,13],[-22,8],[-15,-6],[-22,-21],[-26,-33],[-3,-33],[-8,-29],[-21,-70],[-24,-12],[-29,-11],[-25,54],[3,46],[7,42],[14,55],[8,47],[13,48],[8,50],[-12,22],[-13,15],[-13,16],[-12,16],[-7,39],[-1,38],[1,45],[-18,48],[-16,22],[-18,0],[-18,-14],[-13,-21],[-15,-40],[-16,-9],[-13,3],[-19,5],[-17,33],[-5,59],[-1,55],[8,33],[12,14],[10,37],[-9,32],[-15,25],[-11,31],[-10,38],[-5,38],[-21,57],[-22,6],[-13,2],[-31,11],[-12,26],[-3,51],[0,45],[3,97],[3,39],[-1,84],[3,49],[6,44]],[[82908,42032],[-49,-55],[-26,-71],[-25,-81],[-14,-39],[-10,-21],[-91,-191],[-20,-41],[-86,130],[-18,21],[-11,8],[-13,-3],[-86,-96],[-14,-16],[-12,-19],[-1,-3],[-59,-175],[-14,-37],[-45,-136],[-29,-73],[-47,-137],[-29,-81],[-30,-87],[-64,-187],[-2,-5],[-9,-31]],[[82104,40606],[-7,29],[-5,32],[8,31],[-3,35],[-8,28],[-9,53],[-1,46],[-3,42],[-6,65],[-1,7],[-7,40],[-6,48],[-4,50],[-6,38],[-12,33],[-18,26],[-14,17],[2,45],[-11,54],[-5,48],[-16,19],[-12,39],[-10,33],[-18,36],[-27,21],[-12,21],[-11,38],[-4,33],[-8,52],[-10,49],[-11,54],[-15,9],[-21,7],[-13,25],[-12,15],[-24,29],[-33,49],[-11,16],[-13,19],[-9,24],[-8,26],[-19,21],[-29,77],[-3,53],[-2,36],[-1,56],[-5,52],[-9,28],[-1,39],[0,40],[-4,51],[-3,57],[11,49],[6,47],[-12,32],[-19,42],[-12,31],[-14,18],[-26,49],[-22,29],[-32,75],[-23,3],[-26,-32],[-14,-13],[-20,-2],[-17,-3],[-37,27],[-14,-4],[-25,-20],[-23,-29],[-17,-7],[-39,11],[-15,8],[-12,12],[-15,28],[-34,44],[-37,27],[-20,23],[-14,11],[-16,1],[-40,27],[-15,-1],[-12,-19],[-15,-14],[-18,-53],[-8,-26],[-12,-25],[-14,-12],[0,-1],[-25,-21],[-55,-109],[-15,-23],[-30,-25],[-15,3],[-23,-34],[-23,-49],[-18,-11],[-14,-12],[-28,-55],[-17,-25],[-13,-13],[-31,-12],[-16,-7],[-16,-2],[-23,9],[-21,8],[-17,18],[-12,36],[-6,43],[-18,61],[-18,80],[-23,46],[-18,11],[-28,14],[-21,7],[-56,44],[-28,29],[-11,14],[-14,32],[-13,21],[-19,7],[-40,-18],[-13,5],[-27,-10],[-17,5],[-12,-12],[-18,-28],[-20,-7],[-38,9],[-12,-14],[-9,-24],[-20,-62],[-15,-16],[-13,-4],[-25,14],[-16,-2],[-14,-32],[-20,-13],[-17,-29],[-14,-41],[-13,-56],[-2,-39],[-19,-45],[-19,-15],[-19,-3],[7,55],[-2,63],[-7,74],[-1,63],[-1,58],[2,36],[9,114],[3,37],[2,36],[9,108],[-1,46],[-2,36],[-10,91],[-8,32],[-16,56],[-9,28],[-4,35],[-4,100],[-1,44],[1,65],[0,42],[1,42],[3,113],[1,41],[0,42],[-1,80],[-16,9],[-19,8],[-15,6],[-11,5],[-1,1],[-21,-4],[-22,-3],[-21,-4],[-18,-2],[-31,-3],[-47,-4],[-20,-1],[-48,12],[-18,44],[-13,32],[-16,40],[-12,30],[-27,70],[-14,46],[-17,40],[-9,22],[-25,32],[-19,-8],[-19,-21],[-15,-12],[-12,-9],[-24,-21],[-16,-24],[-6,-31],[-6,-38],[-18,-1],[-16,8],[-20,5],[-28,15],[-15,18],[-14,7],[-23,11],[-30,40],[-17,40],[-18,21],[-40,61],[-14,24],[-56,104],[9,60],[0,37],[-1,61],[-6,75],[-11,151],[-7,109],[0,61],[-16,19],[-13,19],[-18,10],[-37,21],[-13,6],[-15,-4],[-14,17],[-13,7],[-13,14],[-10,43],[-20,11],[1,34],[-7,37],[-12,8],[-18,28],[-16,-4],[-15,6],[-3,40],[-8,41],[-10,35],[7,32],[22,51],[5,34],[6,34],[19,6],[39,7],[19,-14],[12,18],[15,-5],[20,-3],[13,19],[13,13],[21,7],[19,35],[0,37],[-13,55],[11,28],[5,38],[13,-11],[23,59],[-10,34],[-16,15],[-15,0],[-15,24],[-3,43],[5,32],[-16,30],[-13,-4],[-11,12],[-21,4],[-21,14],[5,40],[15,27],[14,44],[-17,30],[10,44],[-14,40],[6,31],[27,3],[8,33],[-2,65],[5,45],[17,-6],[4,41],[13,31],[-10,29],[0,36],[-15,36],[-7,47],[-7,37],[-22,43],[-3,35],[4,37],[7,29],[-10,32],[-15,2],[-24,53],[6,42],[7,73],[-1,36],[-15,56],[-6,50],[-7,28],[-19,19],[-45,46],[-9,25],[-20,-19],[-25,-26],[-11,24],[-17,21],[-16,6],[-16,31],[-1,41],[-12,26],[-16,-8],[-13,9],[-12,12],[-17,-16],[-1,38],[-1,48],[-2,119],[-7,45],[-9,45],[-14,34],[-8,48],[-6,30],[-15,-2],[-16,-5],[-13,8],[-12,7],[-22,38],[-14,8],[-18,33],[-30,4],[-12,6],[-6,36],[4,43],[5,45],[11,13],[11,22],[15,20],[7,33],[13,43],[1,41],[17,50],[9,60],[1,35],[-10,23],[-6,36],[-32,64],[-8,34],[-11,51]],[[78387,55420],[12,-17],[30,-39],[15,-54],[7,-23],[4,-41],[4,-43],[9,-100],[8,-77],[11,-73],[4,-31],[4,-33],[5,-43],[4,-41],[6,-85],[-5,-127],[-7,-66],[-4,-41],[-4,-116],[5,-98],[6,-93],[2,-113],[-12,-84],[-13,-89],[-4,-95],[3,-124],[14,-112],[16,-23],[21,-31],[66,-49],[60,-109],[31,-136],[11,-90],[27,-97],[32,-44],[28,-33],[47,-14],[35,-1],[45,54],[40,20],[29,27],[46,78],[27,16],[31,57],[31,32],[26,60],[3,108],[-11,92],[-2,114],[27,2],[29,-29],[31,-30],[48,-52],[-16,-72],[-16,-38],[-36,-159],[-7,-133],[19,-92],[59,-103],[32,-64],[46,-58],[29,-62],[29,2],[45,-22],[37,-14],[29,-30],[35,-2],[30,-3],[58,-59],[54,-63],[25,-32],[27,-4],[28,-15],[21,-26],[40,-14],[32,-97],[9,35],[13,56],[27,31],[37,-26],[2,-4],[34,-62],[23,-103],[-1,-49],[-1,-78],[10,-123],[1,-43],[2,-60],[5,-49],[8,-72],[1,-9],[12,-90],[13,-106],[26,-187],[18,-116],[7,-99],[5,-100],[6,-62],[17,-84],[-6,-69],[-22,-96],[-45,-5],[-14,137],[-1,9],[-34,48],[-17,1],[-18,1],[-7,-1],[-16,-3],[14,-70],[24,-38],[-5,-130],[3,-146],[35,-77],[12,-97],[12,-73],[8,-68],[30,-111],[25,-89],[26,-48],[-13,-51],[-1,-5],[33,7],[5,1],[8,2],[27,8],[-13,-62],[-35,-22],[-2,-2],[-33,-48],[-17,-82],[-16,-78],[-5,-44],[-9,-78],[-20,83],[-18,48],[-2,6],[-35,-60],[27,-84],[9,-72],[-2,-13],[-9,-64],[-22,-66],[-2,-7],[16,-66],[15,-39],[29,-70],[27,-62],[28,-55],[33,-39],[44,-34],[35,-10],[51,5],[32,7],[32,15],[97,62],[23,-23],[21,-28],[31,-20],[39,-42],[46,-35],[-14,-78],[-1,-52],[-7,-54],[-11,-53],[-33,-139],[-39,-149],[-32,-55],[1,-4],[27,-101],[1,1],[1,2],[30,27],[39,-12],[23,-46],[24,-72],[32,-83],[21,-47],[27,-76],[20,-34],[21,-23],[38,-60],[16,-51],[28,-77],[17,-98],[16,-39],[13,-30],[6,-90],[15,-63],[15,-71],[2,-70],[41,-66],[24,-60],[40,-59],[42,-11],[42,11],[47,9],[24,-5],[33,-28],[17,-63],[10,-84],[14,-56],[13,-52],[-2,-111],[-38,28],[-32,27],[12,-36],[34,-98],[61,18],[30,-2],[34,-34],[32,-77],[25,-39],[37,-31],[38,-33],[38,-14],[44,-3],[38,-9],[-11,-129],[7,-101],[-1,-87],[17,-58],[20,-101],[23,-120],[42,-88],[18,-56],[-5,-73],[5,-68],[9,-119],[18,-117],[25,-60],[24,-55],[23,-48],[33,-58],[33,-80],[24,-145],[14,-80],[25,-59],[-8,-90],[-3,-72],[5,-76],[16,-77],[30,-85],[15,-96],[26,-47],[20,-88],[44,-78],[38,-75],[30,-144],[13,-70],[8,-77],[21,-82],[29,-98],[34,-130],[10,-72],[23,-79],[14,-56],[30,-72],[29,-73],[24,-61],[14,-69],[23,-55],[31,-67],[78,-53],[27,-6],[30,-1],[35,9],[48,6],[42,8],[24,3],[19,-7],[36,-29],[44,-13],[26,-57],[37,-50],[44,-71],[-20,-69],[-11,-97],[9,-75],[-10,-82]],[[71000,50158],[-6,-62],[-19,-140],[-9,-67],[-6,-38],[-33,-216],[-10,-64],[-7,-54],[-48,-355],[-44,-328],[-27,-192],[-32,-238],[-1,-10],[-25,-180],[-14,-101],[-4,-35],[-38,-267],[-10,-83],[-18,-124],[-10,-69],[-7,-50],[-9,-59],[-33,-244],[-1,-7],[-17,-121],[-6,-47],[-5,-39],[-20,-144],[-16,-117],[-11,-82],[-10,-75],[-41,-292],[-40,-292],[-9,-68],[-5,-38],[-6,-47],[-12,-89],[-11,-83],[-4,-32],[-15,-111],[-31,-227],[-34,-249],[-6,-42],[-11,-86],[-12,-84],[-5,-39],[-4,-34],[-3,-22],[-3,-22],[-8,-58],[-19,-137],[-13,-95],[-18,-138],[-11,-79],[-5,-37],[-20,-142],[-16,-124],[-7,-52],[-13,-90],[-6,-46],[-31,-227],[0,-4],[-24,-176],[-6,-45],[-13,-95],[-8,-58],[-26,-195],[-15,-111],[-23,-166],[-17,-123],[-15,-115],[-24,-176],[-6,-44],[0,-1],[-19,-136],[-27,-203],[-34,-251],[-6,-40],[-7,-55],[-19,-131],[-21,-148],[-10,-71],[-10,-71],[-22,-161],[-5,-40],[-11,-76],[-14,-132]],[[69703,40644],[-49,92],[-12,24],[-15,27],[-17,31],[-9,18],[-1,2],[-26,49],[-10,19],[-16,30],[-15,27],[-24,46],[-23,44],[-20,37],[-34,58],[-16,26],[-31,69],[-15,28],[-13,24],[-25,47],[-34,65],[-16,30],[-16,6],[-75,31],[-62,25],[-38,15],[-92,38],[-4,1],[-8,4],[-41,16],[-48,19],[-53,22],[-25,10],[-35,14],[-22,9],[-41,16],[-99,40],[-20,21],[-15,29],[-13,24],[-15,31],[-69,134],[-12,23],[-1,9],[-10,64],[-13,95],[-19,128],[-5,40],[-7,49],[-6,40],[-1,8],[-9,61],[-5,35],[-15,111],[-4,32],[-6,37],[-11,82],[-15,111],[-4,32],[-7,51],[-3,23],[-2,14],[-8,60],[-4,34],[-5,39],[-11,72],[-7,52],[-49,176],[-8,30],[-22,74],[-12,40],[-25,87],[-17,55],[-18,67],[-10,35],[-8,27],[-17,65],[-23,80],[-9,31],[-12,41],[-13,47],[-22,75],[-7,27],[-8,26],[-16,62],[-38,146],[-52,187],[-26,21],[-26,19],[-13,12],[-50,40],[-19,13],[-31,24],[-23,19],[-38,28],[-155,115],[-17,12],[-29,24],[-28,23],[-41,41],[-15,43],[-7,27],[-13,47],[-13,46],[-12,43],[-23,76],[-13,47],[-18,54],[-11,36],[-2,8],[-54,196],[-8,30],[-8,32],[-22,87],[-109,427],[-38,29],[-14,10],[-19,15],[-75,58],[-71,55],[-29,22],[-24,18],[-22,18],[-13,9],[-23,18],[-17,13],[-1,1],[-45,34],[-9,7],[-3,3],[-24,19],[-29,22],[-82,63]],[[66553,46626],[-27,39],[-46,52],[-30,34],[-30,34],[-14,15],[-12,14],[-2,2],[-14,16],[-32,36],[-34,38],[-100,113],[-11,13],[-27,30],[-15,17],[-69,78],[-59,66],[-12,14],[-37,42],[-57,64],[-12,14],[-13,14],[-1,1],[-78,88],[-11,15],[-25,31],[-15,17],[-17,17],[-11,14],[-15,17],[-21,20],[-21,28],[-23,31],[-27,30],[-26,24],[-14,19],[-33,43],[-23,24],[-18,18],[-27,28],[-21,25],[-14,18],[-60,80],[-31,41],[-38,49],[-11,16],[-24,32],[-26,35],[-29,38],[-12,13],[-36,12],[-40,13],[-91,29],[-22,7],[-23,7],[-44,46],[-62,73],[-27,30],[-21,26],[-27,63],[-17,42],[-52,128],[-10,22],[-13,34],[-48,116],[-10,28],[-1,3],[-17,38],[-3,8],[-8,20],[-9,23],[-56,136],[-26,63],[-13,11],[-13,14],[-27,20],[-12,11],[-25,19],[-15,14],[-35,28],[-12,10],[-27,20],[-15,7],[-18,10],[-13,7],[-17,17],[-16,14],[-13,10],[-15,12],[-13,9],[-16,17],[-16,13],[-33,24],[-21,14],[-17,10],[-14,11],[-14,8],[-32,29],[-16,14],[-19,17],[-12,12],[-11,12],[-13,13],[-17,18],[-11,14],[-13,18],[-19,29],[-27,34],[-11,19],[-17,29],[-19,29],[-2,2],[-10,17],[-18,24],[-13,17],[-44,59],[-23,34],[-22,30],[-11,18],[-12,16],[-20,29],[-34,47],[-31,43]],[[83489,48743],[25,14],[10,22],[5,37],[15,-6],[14,4],[9,-28],[13,-25],[-10,-48],[3,-35],[14,-53],[16,-23],[25,-16],[15,-27],[20,-71],[13,-40],[25,-21],[21,-33],[13,-17],[13,10],[13,-36],[13,-36],[8,-26],[23,-8],[7,-41],[18,-89],[-16,-3],[-3,0],[1,-39],[5,-40],[28,67],[18,3],[19,-2],[17,-2],[14,-1],[13,-2],[17,-5],[16,-3],[16,-3],[13,-26],[21,-23],[13,-14],[24,-23],[12,-12],[21,-17],[12,-11],[15,-30],[17,-46],[9,-30],[5,-38],[7,-38],[11,-27],[12,-17],[10,-15],[20,-27],[13,-11],[15,-9],[30,-14],[13,-3],[12,9],[12,2],[16,-9],[14,-13],[13,-18],[17,-23],[21,-29],[13,-18],[13,-18],[13,-21],[11,-27],[11,-38],[7,-33],[1,-39],[-1,-40],[-1,-44],[2,-38],[7,-30],[10,-20],[12,-27],[8,-27],[9,-41],[6,-33],[6,-32],[4,-33],[4,-36],[7,-30],[11,-69],[4,-36],[5,-55],[1,-36],[3,-34],[7,-43],[4,-35],[4,-47],[0,-44],[-1,-35],[1,-44],[-4,-36],[-4,-36],[1,-37],[6,-45],[5,-41],[6,-34],[8,-49],[7,-29],[8,-28],[7,-36],[1,-40],[-1,-38],[-3,-36],[-1,-34],[3,-37],[-4,-66],[-3,-37],[-6,-31],[-6,-34],[-9,-29],[-10,-35],[-8,-32],[-6,-32],[-4,-37],[-1,-37],[-9,-41],[-7,-39],[-4,-34],[-6,-56],[1,-34],[6,-30],[9,-27],[9,-25],[10,-20],[24,-10],[12,-17],[14,-80],[6,-37],[9,-30],[13,-26],[11,-22],[25,-34],[15,-20],[14,-13],[33,-27],[19,-15],[52,-42],[24,-20],[22,-17],[32,-9],[12,-9],[11,-16],[12,-23],[16,-21],[13,-16],[12,-20],[7,-30],[3,-51],[4,-57],[2,-39],[2,-36],[7,-36],[10,-53],[5,-34],[2,-40]],[[84988,44374],[-20,1],[-15,-1],[-12,-11],[-20,-31],[-14,-28],[-13,-41],[-17,-30],[-23,-6],[-18,1],[-16,5],[-15,18],[-18,13],[-14,24],[-16,-5],[-20,6],[-11,11],[-16,12],[-15,-1],[-23,-18],[-16,-5],[-21,-26],[-19,-10],[-26,17],[-21,-2],[-17,-11],[-14,0],[-14,6],[-17,6],[-18,15],[-19,7],[-18,-3],[-29,-1],[-19,-17],[-19,-2],[-18,0],[-16,42],[-17,3],[-12,11],[-13,-19],[-13,-24],[-9,-28],[-14,-21],[-28,-46],[-5,-37],[-16,-23],[-21,1],[-33,7],[-7,-8],[-9,-11],[-12,-64],[-6,-44],[-21,-14],[-10,-36],[-1,-36],[-9,-24],[-24,-18],[-4,-43],[9,-37],[15,15],[13,16],[-3,-39],[1,-39],[13,-15],[-1,-61],[-10,-28],[-18,-19],[7,-28],[4,-38],[3,-41],[-12,-14],[-13,-3],[-5,-41],[-17,0],[-19,7],[0,42],[-8,28],[-13,-7],[-10,37],[-23,-24],[0,-40],[-14,-53],[-10,-46],[-14,0],[6,69],[0,1],[-3,10],[-7,20],[-15,2],[-7,-37],[-11,-58],[1,-35],[-22,-9],[-21,8],[-13,-3],[-13,-8],[-15,-75],[-27,-45],[-11,5],[-3,2],[-15,37],[-14,24],[-1,1],[-13,6],[-7,-10],[-18,-23]],[[83713,43289],[-47,15],[-18,38],[-30,14],[-30,10],[-26,-4],[-25,-42],[-18,-31],[-7,17],[-16,114],[-34,122],[-66,80],[-44,54],[-13,-21],[9,-70],[43,-130],[34,-118],[-15,-89],[-45,18],[-14,-132],[-5,-13],[-20,-52],[-19,-46],[-14,-81],[-33,60],[-12,89],[-20,99],[-24,89],[-33,69],[-34,39],[-55,70],[-23,33],[-23,61],[-40,151],[-18,98],[-7,65],[-21,59],[-5,12],[-45,-30],[-33,-23],[-31,-13],[-33,-39],[-55,-15],[-30,-7],[-28,16],[-25,61],[-31,47],[-22,51],[-44,126],[-17,52],[-32,58],[-35,49],[-27,27],[-37,-1],[-22,-7],[-8,55],[-4,148],[-17,66],[-20,83],[-20,150],[-46,89],[-28,25],[-29,17],[0,120],[7,115],[6,72],[19,45],[23,-55],[32,7],[-15,66],[2,113],[-30,-12],[-34,-3],[-27,17],[-22,45],[-26,54],[20,49],[13,75],[32,89],[24,91],[3,50],[-5,68],[41,-5],[46,16],[-33,60],[-33,12],[-27,8],[-27,-34],[-7,-70],[0,-102],[-44,-80],[-17,-91],[-38,24],[-85,33],[-28,28],[-47,3],[-18,38],[-8,163],[7,144],[1,74],[-8,85],[-25,103],[-5,72],[-10,54],[-18,59],[-39,105],[-29,119],[-18,65],[-32,87],[-24,47],[-22,52],[-51,90],[-30,51],[-33,88],[-30,46],[-25,76],[-16,-66],[-40,8],[-34,-2],[-37,3],[-35,62],[-21,112],[-39,83],[-20,40],[-22,16],[-32,5],[-8,1],[-10,-6],[-36,-19],[-1,-1],[-41,-35],[-31,29],[-12,11],[-8,31],[-8,30],[-12,59],[-26,48],[-22,72],[0,2],[-24,89],[-10,48],[-6,31],[-7,52],[-7,58],[-16,39],[-9,23],[-18,55],[-7,23],[22,77],[27,21],[0,50],[-1,40],[-14,56],[-2,38],[-2,42],[-13,80],[-11,209],[-20,120],[50,6],[29,61],[16,63],[-16,47],[-30,62],[31,14],[32,-7],[-18,75],[-27,73],[-34,104],[-19,-120],[-31,-71],[-10,-89],[26,-119],[-32,-52],[-19,-64],[-26,32],[-62,131],[-23,127],[-14,54],[-29,53],[-30,47],[-1,0],[-28,10],[-34,-2],[-50,4],[-50,1],[-48,13],[-26,-33],[-22,55],[-27,47],[-14,51],[-4,46],[-6,69],[-2,37],[-2,57],[-18,94],[21,155],[2,70],[-10,82],[-22,189],[-14,58],[-21,48],[-23,71],[-2,119],[5,117],[-2,97],[-17,114],[-26,71],[-7,136],[-11,86],[-11,67],[-14,154],[6,122],[-14,84],[-27,83],[-16,119],[-13,68],[-9,66],[-19,159],[-37,137],[-5,63],[-29,51],[-32,82],[-62,79],[-8,62]],[[53397,43154],[14,-61],[0,-36],[-12,-16],[-18,-25],[-14,-14],[-17,-5],[-10,-18],[-21,-25],[-10,-38],[-8,-31],[-23,0],[-26,1],[-23,-13],[-17,-22],[-18,1],[-30,-33],[-11,-25],[-13,-27],[-16,-20],[-9,-29],[-3,-43],[-13,-11],[-12,-21],[-17,-3],[-8,29],[-16,15],[-13,-10],[-25,1],[-13,27],[-13,-8],[-17,-19],[-18,32],[-9,29],[-14,54],[-7,45],[-11,23],[-15,8],[-13,8],[-10,21],[-12,22],[-3,40],[-2,38],[5,39],[3,8],[6,19],[7,33],[-19,21],[-5,5],[-14,17],[-19,6],[-2,35],[-3,55],[-16,46],[-30,23],[-12,22],[-22,28],[-10,52],[9,29],[2,6],[-12,37],[-16,14],[-20,-7],[-12,-3],[-12,-28],[-1,-1],[-12,-30],[-16,-35],[-13,-37],[-15,-24],[-12,-9],[-12,-2],[-14,-19],[-8,-32],[-20,-16],[-16,-19],[-15,-49],[-10,-26],[-7,-19],[-6,-25],[-3,-15],[-12,-43],[-15,-44],[-7,-30],[-6,-35],[-15,-21],[-9,-35],[-9,-30],[-10,-41],[-16,0],[-15,2],[-12,-26],[-9,-40],[-13,37],[-30,78],[-13,-34],[-9,-38],[-18,-51],[-9,-28],[-14,-62],[-7,-30],[0,-2],[-9,-34],[-11,-31],[-10,-50],[-1,-40],[-3,-37],[-8,-49],[-16,-61],[-10,-33],[-14,-49],[-7,-42],[-9,-31],[-6,-34],[-15,-44],[-12,-39],[-8,-27],[-15,-43],[-13,-31],[-12,-30],[-9,-27],[-10,-32],[-9,-37],[-14,-48],[-7,-46],[-14,-49],[-7,-29],[-5,-33],[-4,-3],[-9,-6],[1,-30],[1,-15],[-12,-42],[-9,-58],[-14,-34],[-9,-27],[-12,-21],[-9,-35],[-15,-120],[-16,-97],[-9,-40],[-12,-19],[-11,-20],[0,-31],[0,-14],[0,-3],[1,-34],[-18,-67],[-6,-25],[-23,-47],[-14,-29],[11,-13],[11,-30],[1,-40],[8,-22],[3,-8],[7,-41],[-2,-47],[-51,-62],[-7,-17],[-2,-6],[-17,-63],[-3,-43],[0,-7],[0,-29],[-8,-13],[-6,-10],[3,-11],[11,-51],[0,-46],[-17,-18],[-16,-5],[-11,-3],[-8,-43],[-9,-28],[-12,-70],[14,-51],[3,-39],[-2,-38],[4,-45],[13,-45],[-8,-31],[-6,-49],[-2,-34],[-5,-15],[-16,-41],[-15,-40],[-4,-124],[-27,-139],[-10,-13],[-8,-11],[-6,-21],[-5,-20],[-22,-27],[-15,-12],[-14,-36],[-9,-24],[-3,-5],[-8,-19],[-18,-23],[-2,-34],[-26,-48],[-28,-78],[3,-38],[-2,-52],[-18,-3],[-18,-15],[-13,-64],[-12,-38],[-2,-43],[5,-47],[4,-43],[-14,-28],[-10,-26],[5,-39],[-6,-38],[-16,-42],[-6,-55],[-2,-40],[1,-36],[7,-44],[-4,-35],[-18,-19],[-21,-34],[-10,-20],[-16,-20],[-16,-8],[-12,-13],[-12,-8],[-12,-7],[-21,-28],[-18,-7],[3,-51],[-5,-40],[-20,-44],[-4,-47],[-12,-40],[-15,-36],[-13,-24],[-10,-29],[-9,-39],[-16,-12],[-17,-8],[-18,-18],[-57,5],[-23,-17],[-14,-16],[-13,-12],[-19,-27],[-10,-22],[-6,-33],[-17,-34],[-16,-50],[-15,-33],[-6,-30],[-11,-33],[-14,-26],[-19,-18],[-19,-29],[-9,-62],[-32,-71],[-16,-20],[-21,-27],[-14,-10],[-20,-60],[-17,-4],[-13,-3],[-23,8],[-19,21],[-20,-7],[-15,0],[-23,-9],[-13,-12],[-15,-5],[-19,6],[-14,12],[-12,-6],[-13,-21],[-10,-50],[-12,-57],[-16,-79],[-9,-35],[-11,-27],[-7,-31],[-12,-71],[-33,14],[-35,14],[-10,4],[-35,15],[-2,1],[-15,6]],[[50255,36791],[-95,40],[-8,-63],[-13,-42],[-9,-26],[-1,-6],[-23,-43],[-55,-130],[-4,-7],[-12,-14],[-9,-32],[-12,-43],[1,-42],[4,-156],[-4,-18],[6,-48],[11,-54],[7,-52],[9,-46],[12,-20],[12,-45],[9,-30],[13,-79],[17,-99],[3,-5],[11,-85],[3,-28],[-4,-10],[-5,-53],[-5,-74],[10,-22],[24,-60],[29,11],[15,-23],[27,45],[18,20],[15,-51],[11,-37],[7,-37],[22,-62],[-29,-34],[-26,-99],[-18,-96],[-1,-44],[-8,-29],[-15,-14],[-20,-19],[-27,-22],[-16,-27],[-30,-1],[-16,3],[-16,11],[-15,-21],[-13,-4],[-12,-6],[-22,-17],[-7,-30],[2,-54],[-7,-40],[-10,-24],[-18,-69],[-9,-51],[-6,-36],[-17,-54],[-5,-6],[-69,-38],[-22,14],[-21,17],[-6,0],[-12,0],[-32,0],[-14,-38],[-37,-107],[-108,-207],[-15,-13],[-5,-8],[-10,-19],[-8,-6],[-17,-14],[-14,-25],[0,-4],[-9,-50],[-8,-68]],[[49524,33916],[-14,20],[-18,30],[-1,2],[-44,75],[-23,39],[-40,68],[-71,129],[-63,110],[-13,24],[-23,40],[-49,84],[-36,64],[-93,163],[-49,86],[-50,88],[-23,41],[-42,74],[-73,128],[-33,57],[-14,25],[-30,54],[-119,207],[-15,28],[4,34],[4,39],[3,46],[2,41],[10,23],[7,40],[4,38],[0,42],[-5,36],[1,40],[0,5],[5,33],[1,12],[0,-2],[-7,-31],[5,51],[7,30],[3,10],[5,17],[-2,4],[-11,18],[-17,27],[-21,33],[-21,35],[-115,201],[-82,144],[-37,66],[-8,13],[-5,9],[-60,104],[-18,32],[-13,22],[-32,56],[-76,135],[-21,37],[-11,19],[-33,58],[-27,46],[-41,72],[-89,154],[-25,38],[-13,18],[-165,288],[-12,21],[-6,10],[-142,247],[-50,88],[-12,20],[-17,29],[-35,62],[-42,71],[-48,85],[12,18],[12,20],[11,27],[11,36],[11,29],[8,48],[17,38],[20,32],[9,57],[12,55],[14,52],[6,70],[7,29],[-1,42],[1,83],[4,33],[2,71],[-2,35],[2,43],[7,38],[8,29],[5,47],[-1,67],[7,55],[6,65],[-102,147],[-21,187],[-11,102],[-59,480],[0,1],[-28,227],[-28,233],[17,19],[1,33],[19,36],[14,31],[10,32],[13,25],[10,68],[12,45],[12,39],[9,52],[10,44],[4,35],[6,34],[4,35],[8,64],[6,71],[7,57],[3,78],[3,59],[3,75],[4,38]],[[47444,41784],[6,73],[8,49],[14,37],[23,66],[17,28],[14,35],[9,39],[2,35],[8,31],[5,31],[10,40],[8,33],[1,39],[2,38],[9,36],[13,34],[12,38],[7,48],[6,36],[12,37],[14,65],[9,48],[-3,85],[14,33],[10,47],[7,29],[13,42],[18,75],[22,78],[14,57],[13,51],[5,42],[7,57],[6,48],[8,28],[10,28],[7,43],[4,34],[5,33],[20,36],[21,-8],[14,0],[11,15],[11,32],[5,32],[5,32],[6,33],[3,15],[3,15],[14,50],[6,44],[14,37],[8,31],[5,36],[19,28],[9,21],[14,47],[9,32],[9,23],[8,38],[5,40],[-1,48],[4,47],[6,46],[8,66],[14,33],[16,123],[15,50],[7,32],[2,44],[-3,55],[1,35],[11,41],[8,50],[18,37],[12,24],[12,31],[10,23],[4,40],[-12,31],[-13,23],[-21,30],[-11,18],[-13,33],[-15,37],[-11,18],[-11,15],[-18,17],[-18,15],[-7,10],[-6,7],[-15,29],[-11,23],[-13,21],[-17,3],[-20,10],[-14,19],[-6,45],[-5,31],[-13,19],[-13,0],[-57,85],[-51,-154],[-66,144]],[[53569,46158],[63,-159],[2,-5],[7,-38],[-1,-37],[0,-10],[-13,-76],[13,-44],[-4,-43],[7,-38],[2,-13],[3,-25],[21,-17],[12,-14],[15,-24],[6,-35],[-1,-7],[-4,-27],[-17,-29],[11,-27],[5,-17],[5,-20],[-12,-38],[-6,-4],[-9,-6],[-14,-40],[-12,-27],[-7,-39],[13,-20],[14,-34],[2,-10],[4,-22],[12,-46],[14,-14],[15,-30],[21,-45],[-11,-42],[-2,-9],[-6,-24],[5,-13],[4,-12],[-18,-56],[-12,-32],[-1,-3],[-2,-6],[-9,-21],[-7,-14],[-3,-6],[0,-1],[-6,-36],[-11,-27],[-16,-26],[-17,-22],[-3,-39],[-5,-62],[-8,-66],[-14,-35],[-8,-28],[-10,-50],[-4,-54],[-11,-17],[-2,-56],[13,-46],[14,-20],[12,-30],[6,-34],[-2,-37],[-16,-30],[-16,-35],[4,-57],[-9,-32],[-12,-20],[-13,-18],[11,-22],[15,-23],[-12,-38],[-9,-26],[-5,-32],[12,-35],[11,-29],[-5,-52],[-15,-28],[-15,-46],[-13,-13],[-14,0],[-14,-29],[-6,-49],[3,-39],[-4,-36],[-14,-21],[-6,-33],[-1,-68],[-10,-30],[-13,-16],[-13,-21],[-10,-33],[-10,-35],[-6,-54]],[[50203,42823],[-33,-39],[-13,-16],[-13,-19],[-16,-6],[-18,13],[-13,25],[-17,-18],[-8,30],[-20,-4],[-1,0],[-16,-52],[-16,-6],[-7,-30],[-9,-27],[-14,-18],[-31,-82],[4,-46],[5,-59],[15,4],[19,-45],[14,-34],[15,-51],[-11,-41],[-10,-20],[-6,-32],[-3,-39],[-6,-36],[-8,-26],[-12,-45],[29,-45],[22,-36],[-10,-29],[-23,-32],[14,-56],[4,-11],[5,-16],[25,-14],[26,24],[13,11],[27,48],[11,17],[9,13],[2,3],[-2,11],[-2,6],[-4,17],[3,0],[14,5],[16,26],[33,54],[10,19],[3,4],[23,39],[12,23],[2,6],[33,82],[7,29],[2,6],[26,15],[13,32],[7,35],[5,40],[3,9],[7,18],[12,49],[32,33],[44,8],[-4,12],[-5,13],[-1,4],[-1,36],[3,44],[20,17],[13,-13],[12,-9],[19,-27],[15,-1],[13,16],[0,36],[-12,15],[-14,15],[-18,8],[-14,16],[-18,10],[-18,7],[-4,1],[-26,11],[-18,20],[-2,2],[-1,2],[-8,27],[-10,20],[-22,3],[-11,-5],[-2,-1],[-15,2],[-1,1],[-26,11],[-13,15],[-11,22],[-1,0],[-43,-54]],[[51275,41497],[-41,-21],[-16,11],[-12,8],[-9,-54],[-12,-11],[-13,-25],[-23,-24],[-13,-74],[-9,-55],[-1,-6],[-11,-75],[-12,-14],[-2,1],[-19,10],[-6,5],[-5,4],[-9,5],[-11,5],[-14,-6],[-12,-5],[-13,-5],[-9,-3],[-15,-8],[-13,-7],[-16,-11],[-25,-15],[-10,-29],[-8,-28],[-2,-55],[77,-42],[-23,-131],[-5,-32],[13,-13],[-11,-64],[-2,-37],[-1,-51],[4,-35],[28,-10],[12,14],[19,31],[9,-22],[20,-53],[32,-4],[1,-22],[3,-26],[-15,-2],[-13,10],[-18,2],[-3,0],[-8,-24],[-2,-8],[-5,-24],[-9,-37],[-9,-24],[-15,-24],[-13,-17],[-9,-35],[-6,-32],[1,-48],[6,-38],[1,-6],[2,-26],[0,-1],[1,-1],[10,-22],[1,-20],[1,-18],[1,-48],[1,-17],[-4,-43],[-7,-14],[-3,-7],[-11,-21],[-17,-42],[-12,-28],[-10,-21],[-12,-21],[-15,-18],[8,-28],[4,-9],[14,-25],[11,-41],[3,-11],[16,-28],[14,-27],[8,-35],[13,-63],[19,-68],[16,36],[14,-61],[20,36],[97,169],[13,21],[-13,29],[0,55],[14,9],[14,-8],[36,68],[5,49],[-9,66],[78,294],[0,44],[23,71],[65,211],[12,36],[73,-46],[9,66],[-70,60],[8,42],[17,29],[5,40],[6,57],[42,44],[-3,70],[-5,103],[27,47],[5,104],[14,161],[12,147],[2,70],[-1,73],[-48,21],[-11,-64],[-29,23],[-44,29],[-37,24],[-71,-225],[-20,-11]],[[59657,40761],[5,-34],[-18,-122],[-12,-164],[-11,-63],[-6,-33],[-5,-31],[-1,-4],[-1,-5],[-1,-5],[-1,-4],[-2,-4],[-6,-18],[-1,-2],[-8,-23],[-1,-1],[-1,-4],[-2,-4],[-24,-45],[-25,-51],[-1,-4],[0,-1],[-2,-98],[-2,-83],[1,-93],[0,-8],[-10,-63],[3,-40],[2,-39],[5,-35],[9,-30],[16,-43],[8,-23],[88,-176],[1,-3],[2,-3],[2,-4],[0,-2],[9,-29],[1,-2],[2,-5],[1,-5],[1,-4],[7,-36],[1,-5],[1,-6],[1,-5],[0,-6],[1,-6],[0,-3],[3,-49],[0,-3],[0,-6],[0,-6],[0,-6],[0,-6],[-1,-6],[0,-2],[-1,-12],[-6,-75],[-17,-60],[-9,-33],[-6,-13],[-26,-46],[-8,-15],[-5,-5],[-33,-36],[-21,-8],[-18,-2],[-18,6],[-39,46],[-6,-1],[-1,0],[-16,-1],[-2,0],[-19,2],[-1,0],[-2,1],[-1,0],[-2,1],[-1,1],[-2,1],[-2,2],[-1,1],[-6,5],[-1,2],[-1,1],[-1,1],[-1,2],[-10,16],[-1,1],[-2,4],[-2,3],[-2,4],[-1,4],[-1,3],[-12,38],[0,1],[-2,5],[-1,5],[-1,4],[-1,6],[-1,5],[0,3],[-2,11],[-1,1],[-12,82],[-2,12],[0,5],[-7,26],[-1,3],[-1,4],[-17,84],[-22,106],[-7,31],[-24,68],[-11,15],[-18,8],[-45,18],[-54,12],[-19,-14],[-2,-2],[-2,-1],[-25,-9],[-13,-10],[-3,-3],[-9,-20],[-1,-3],[-11,-52],[-5,-33],[-2,-41],[1,-29],[4,-40],[8,-49],[9,-40],[1,-1],[17,-54],[15,-45],[2,-6],[1,-4],[1,-5],[1,0],[10,-42],[1,-4],[2,-5],[1,-6],[0,-5],[1,-6],[0,-2],[4,-35],[1,-4],[0,-6],[0,-5],[1,-7],[0,-6],[0,-5],[-1,-33],[-17,-97],[-1,-4],[-1,-4],[-11,-27],[-2,-4],[-1,-4],[-2,-2],[-20,-35],[0,-1],[-2,-3],[-2,-3],[-2,-2],[-3,-3],[-2,-1],[-2,-2],[-2,-1],[-2,0],[-1,0],[-86,-12],[-1,0],[-2,1],[-2,0],[-24,9],[-27,0],[-20,-14],[-26,-24],[-31,-57],[-7,-14],[-7,-29],[-13,-50],[-4,-16],[-21,-78],[-1,-7],[-23,-94],[0,-9],[5,-78],[4,-85],[1,-18],[2,-8],[1,-3],[1,-5],[23,-113],[1,-4],[1,-5],[0,-1],[6,-36],[1,-5],[1,-6],[0,-6],[1,-5],[0,-3],[1,-29],[1,-3],[0,-6],[0,-6],[0,-6],[0,-4],[-2,-52],[0,-7],[16,-198],[-7,-94],[-1,-17],[-4,-8],[-50,-91],[-2,-4],[-4,-6],[-5,-5],[-1,-2],[-66,-39],[-60,-2],[-51,-37],[-31,-25],[-74,-4],[-19,13],[-22,20],[-17,32],[0,1],[-21,25],[-7,2],[-95,28],[-53,24],[-31,13],[-21,10],[-73,57],[-2,1],[-7,-3],[-25,-13],[-9,-7],[-8,-2],[-4,2],[-6,2],[-12,5],[-16,10],[-23,15],[-10,13],[-4,5],[-12,20],[-50,70],[-6,6],[-8,8],[-19,4],[-17,-3],[-43,-7],[-17,-3],[-28,-19],[-3,-2],[-24,-31],[-21,-35],[-6,-9],[-51,-107],[-75,-139],[0,-2],[-2,-4],[-1,-4],[-2,-3],[-9,-18],[-2,-3],[-2,-3],[0,-1],[-33,-43],[-9,-17],[-5,-11],[-3,-14],[-5,-32],[-2,-45],[0,-48],[1,-63],[3,-49],[3,-29],[5,-24],[8,-32],[36,-101],[47,-128],[12,-23],[1,-4],[2,-3],[1,-4],[14,-38],[0,-1],[2,-4],[1,-5],[7,-28],[2,-5],[1,-5],[1,-6],[1,-5],[0,-6],[1,-5],[0,-2],[5,-57],[0,-4],[0,-6],[1,-6],[0,-6],[0,-6],[-1,-6],[0,-2],[-1,-31],[-1,-4],[0,-6],[-1,-6],[0,-5],[-1,-1],[-3,-23],[-2,-14],[-1,-4],[-1,-6],[-1,-5],[-1,-5],[-1,-5],[-1,-1],[-17,-55],[-1,-3],[-2,-4],[-4,-11],[-12,-29],[-1,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-2],[-31,-38],[-2,-2],[-2,-2],[-2,-2],[-2,0],[-7,-4],[-48,-36],[-29,-26],[-13,-19],[-47,-112],[-13,-39],[-3,-13],[-8,-41],[-3,-28],[1,-30],[4,-36],[4,-24],[20,-114],[11,-50],[5,-16],[8,-18],[5,-10],[78,-140],[48,-86],[1,-2],[2,-3],[1,-3],[12,-30],[1,-2],[1,-4],[2,-4],[1,-5],[1,-5],[1,-5],[1,-4],[4,-21],[0,-1],[1,-6],[0,-3],[1,-5],[2,-16],[0,-3],[1,-5],[1,-6],[0,-6],[0,-5],[2,-57],[0,-1],[0,-6],[0,-6],[-1,-6],[0,-6],[0,-4],[-4,-44],[0,-2],[-1,-6],[-1,-5],[0,-6],[-1,-5],[-2,-5],[-1,-4],[-6,-25],[-3,-5],[-21,-29],[-25,-19],[-17,-10],[-16,-21],[-22,-32],[-9,-27],[-6,-33],[-3,-48],[0,-38],[0,-41],[4,-61]],[[57508,34588],[3,-38],[7,-41],[6,-37],[5,-31],[4,-35],[5,-51],[2,-44],[-1,-38],[-4,-58],[-4,-65],[-7,-36],[-7,-31],[-15,-29],[-13,-5],[-11,-9],[-1,-1],[-11,-9],[-1,-1],[-16,-12],[-12,-4],[-13,7],[-15,2],[-26,2],[-17,2],[-20,5],[-12,7],[-19,13],[-15,14],[-12,10],[-2,1],[-11,10],[-12,9],[-17,17],[-15,14],[-15,18],[-11,18],[-12,25],[-13,21],[-14,29],[-9,30],[-8,25],[-15,27],[-11,13],[-22,12],[-22,-9],[-11,-14],[-14,-21],[-18,-26],[-16,-21],[-18,-17],[-16,-6]],[[56986,34230],[11,50],[7,33],[-3,38],[-8,23],[-1,4],[-13,21],[-11,12],[-12,16],[-6,34],[-16,4],[-12,-9],[-12,-7],[7,-29],[-5,-32],[-11,-14],[-12,10],[-14,14],[-14,16],[-13,20],[-12,15],[-5,30],[-8,24],[-12,7],[-3,-34],[-2,-49],[-5,-32],[-11,17],[-10,26],[-13,5],[-11,-13],[-12,-6],[-9,-23],[4,-33],[-9,-36],[-11,-21],[-13,-6],[-9,-24],[-12,-12],[-13,12],[-12,3],[-13,7],[-8,28],[-3,34],[-11,17],[-65,354],[-9,50],[-38,202],[-19,100],[-12,65],[-6,31],[-2,13],[-23,121],[-14,72],[-24,125],[-12,64],[-36,194],[-8,38],[-10,55],[-47,250],[-16,83],[-6,31],[-19,103],[-3,16],[-21,113],[-26,138],[-17,92],[-13,67],[-6,34],[-51,268],[-7,34],[-50,267],[-7,36],[-7,36],[-8,40],[-11,65],[-18,92],[-40,198],[0,1],[-11,57],[-6,31],[-2,4],[-16,37],[-10,23],[-7,31],[-2,38],[-7,36],[-5,48],[-4,35],[-5,25],[-1,5],[-6,44],[-1,17],[-2,29],[-4,34],[-5,35],[-6,47],[-6,35],[-7,37],[-10,29],[-13,16],[-14,14],[-15,16],[-14,14],[-15,33],[-8,27],[2,35],[10,55],[8,38],[10,40],[11,21],[12,17],[0,4],[-2,37],[-17,34],[-16,22],[-12,12],[-14,-2],[-10,-25],[-13,-17],[-15,7],[-11,12],[-13,16],[-16,21],[-13,20],[-11,16],[-11,26],[-13,14],[-5,32],[9,59],[4,40],[-2,34],[-14,20],[-11,17],[-11,21],[-12,11],[-10,16],[-11,18],[3,41],[7,30],[3,42],[9,45],[5,32],[1,38],[-5,37],[-15,16],[-22,10],[-19,2],[-13,8],[-10,22],[-7,26],[-10,24],[-10,17],[-13,12],[-11,-18],[-4,-35],[-11,-22],[-13,-4],[-14,-9],[-12,-11],[-13,-9],[-16,-16],[-15,-18],[-15,8],[-14,22],[-11,11],[6,33],[-9,29],[-12,5],[-11,21],[-12,5],[-9,24],[-5,36],[-8,37],[-6,32],[-12,2],[-13,-9],[-12,-13],[-20,-8],[-13,2],[-11,8],[-14,-9],[-13,-24],[-10,-19],[-13,-24],[-12,-6],[-9,4],[-10,5],[-12,6],[-11,-11],[-13,14],[-7,31],[-8,31],[-13,41],[-9,27],[-14,30],[-12,23],[-18,27],[-14,20],[-13,12],[-18,2],[-14,-4],[-13,9],[-12,9],[-12,11],[-15,-2],[-14,-2],[-13,14],[-14,5],[-14,11],[-12,15],[-12,15],[-12,15],[-12,-10],[-11,-12],[-12,16],[-8,25],[-12,18],[-10,21],[-2,34],[-7,30],[-12,3],[-13,13],[-8,25],[-8,27],[-10,18],[-14,5],[-8,29],[6,38],[6,33],[9,29],[9,25],[5,31],[1,35],[-9,34],[-9,26],[-15,23],[-11,28],[-9,33],[-9,31],[3,39],[1,34],[8,30],[6,32],[-8,45],[1,35],[11,26],[7,30],[-5,36],[1,35],[6,33],[4,39],[-1,41],[0,36],[8,37],[1,35],[-2,39],[-1,37],[-7,32],[-6,29],[-4,35],[-2,34],[1,41],[-3,45],[-12,23],[-8,26],[-5,36],[-4,39],[-3,36],[-6,32],[-9,26],[6,86],[6,41],[5,31],[9,27],[12,11],[12,19],[8,25],[2,38],[-10,46],[-11,15],[-8,26],[5,35],[4,34],[-7,32],[-7,41],[-10,20],[-7,29],[-16,6],[-12,3],[-14,-10],[-12,-8],[-10,23],[10,29],[11,21],[6,33],[-10,21],[-12,1],[-13,6],[-13,2],[-18,19],[-16,20],[0,36],[-2,34],[-11,13],[-13,-18],[-13,0],[-8,24],[-8,40],[-11,16],[-13,-3],[-13,11],[-14,-15],[-9,-30],[-10,-21],[-15,0],[-13,13],[-12,1],[-13,-13],[-12,-9],[-12,-5],[-15,-11],[-13,-7],[-12,10],[-11,16],[-10,23],[-7,32],[-13,6],[-19,3],[-13,0],[4,-37],[-9,-28],[-10,-20],[-12,-12],[-9,21],[-6,31],[-14,15],[-13,-6],[-12,10],[-7,29],[-8,25],[-13,18],[-8,48],[-8,35],[-6,44],[-5,39],[-9,26],[6,41],[8,24],[3,37],[-2,39],[-5,36],[-9,31],[-8,47],[-10,21],[-16,0],[-12,-10],[-15,2],[-19,3],[-12,-12],[-10,23],[-8,32],[-9,23],[-9,29],[-10,32],[-9,26],[-12,9],[-12,3],[-11,17],[-8,69],[2,35],[-6,47],[-5,41],[-11,19],[-14,9],[-21,-16],[-15,-11],[-12,-11],[-13,-14],[-12,-23],[-21,-16],[-19,-10],[-16,-13],[-11,-15],[-11,-26],[-16,-20],[-13,-13],[-13,-14],[-18,-19],[-16,-14],[-11,-9],[-18,0],[-13,-10],[-14,-12],[-12,-11],[-16,-10],[-12,-19],[-16,-16],[-28,-37],[-25,-14]],[[93282,31731],[-5,-77],[-8,38],[-12,67],[-13,192],[35,48],[16,-80],[-7,-58],[-4,-34],[-1,-64],[-1,-32]],[[94342,33046],[-22,-13],[-30,82],[0,67],[4,57],[2,82],[25,8],[-2,-81],[7,-56],[5,-41],[23,-98],[-12,-7]],[[95586,35445],[34,-14],[36,3],[29,20],[32,-2],[29,-45],[15,-68],[11,-69],[9,-72],[7,-64],[-20,-59],[-20,-40],[-28,-69],[-25,-78],[-21,-73],[-23,-97],[-17,-68],[-26,-99],[-27,-109],[-11,-42],[-89,-282],[-81,-282],[-86,-356],[-92,-349],[-42,-187],[-59,-269],[-30,-122],[-25,-99],[-31,-127],[-84,-199],[-72,-33],[-21,98],[4,32],[6,45],[6,45],[2,14],[4,53],[3,37],[-15,50],[-4,13],[-24,36],[-19,44],[-19,65],[-26,15],[-27,3],[-14,78],[-3,57],[-1,13],[9,94],[37,80],[36,63],[2,128],[34,19],[20,62],[11,88],[21,40],[6,104],[-16,51],[-3,9],[-18,61],[2,31],[4,62],[11,50],[3,16],[44,-27],[6,-4],[35,-20],[7,24],[16,51],[20,70],[5,16],[28,31],[23,29],[23,-44],[49,23],[34,60],[14,37],[6,16],[4,106],[-33,2],[-8,0],[-23,50],[12,25],[8,17],[-14,65],[-3,49],[-2,23],[-6,40],[-6,37],[33,95],[41,41],[5,99],[8,30],[9,30],[28,0],[19,-19],[11,8],[9,6],[8,5],[16,12],[41,54],[4,27],[6,28],[18,28],[-3,94],[19,20],[23,-11],[9,10],[15,17],[17,20],[12,-2],[15,-2],[29,140],[13,140],[1,93],[7,81],[17,2],[27,-28]],[[95298,36254],[34,-50],[33,2],[24,20],[11,9],[10,-10],[22,-22],[-4,-127],[-25,-26],[-35,-35],[-48,12],[-41,-46],[-26,-2],[-5,89],[13,65],[-1,53],[12,120],[26,-52]],[[92700,39082],[-16,-59],[-30,36],[-15,132],[28,87],[2,23],[6,55],[33,-91],[19,-43],[-6,-17],[-13,-39],[-8,-84]],[[92785,39670],[-36,-59],[-26,96],[-37,42],[24,34],[9,14],[30,3],[24,3],[-12,-87],[12,-23],[12,-23]],[[93455,41987],[-25,-79],[-21,-42],[-4,-8],[-7,-76],[-23,-28],[-5,4],[-27,21],[33,64],[1,3],[5,27],[13,59],[-16,43],[20,66],[37,-10],[19,-44]],[[94171,43172],[-10,-110],[-39,48],[0,45],[0,35],[0,55],[-6,77],[40,-52],[4,-26],[11,-72]],[[92282,43034],[3,-131],[-35,79],[-24,119],[3,131],[36,151],[12,-142],[2,-106],[3,-101]],[[91321,44028],[-35,-81],[-38,29],[-7,119],[37,101],[44,65],[21,-70],[4,-79],[-26,-84]],[[91184,43705],[-26,-72],[-38,-7],[-22,45],[-4,-99],[-18,-67],[17,-51],[11,-109],[-24,47],[-21,53],[-32,64],[-10,124],[-3,183],[-9,81],[-3,98],[17,158],[-2,11],[-8,56],[-10,75],[7,124],[-2,32],[-3,69],[3,70],[5,79],[18,82],[11,1],[26,1],[15,-32],[15,-32],[14,-79],[18,-63],[33,-106],[33,-79],[28,-63],[-18,-23],[-25,-30],[-43,-106],[-17,-47],[-17,-46],[19,-33],[14,-25],[30,-48],[28,-63],[12,-108],[-19,-65]],[[90984,45271],[16,-134],[-32,44],[-17,126],[-35,200],[38,-24],[24,-83],[6,-129]],[[97772,46125],[-15,-79],[-25,10],[-21,19],[-1,63],[24,54],[32,28],[7,-87],[-1,-8]],[[98120,46119],[-11,-90],[-20,79],[-28,37],[-16,54],[28,42],[33,23],[10,-76],[4,-69]],[[97386,46418],[32,1],[12,-25],[8,-16],[8,-12],[11,-17],[12,-110],[-21,-78],[-24,-50],[-31,-29],[-10,-68],[-23,11],[-24,52],[-2,-6],[-36,-74],[3,-2],[33,-25],[-4,-32],[-8,-50],[36,36],[3,-102],[-27,-110],[-35,-19],[-11,-6],[-10,-5],[-29,-16],[-35,-15],[7,103],[-11,-1],[-14,-1],[-2,-28],[-7,-79],[-21,86],[-14,81],[-8,22],[-10,30],[1,75],[4,10],[19,45],[24,13],[7,4],[15,-17],[3,-3],[22,-24],[37,6],[0,4],[3,32],[3,37],[-3,13],[-11,48],[13,46],[4,15],[5,9],[15,28],[-26,100],[5,2],[17,5],[2,4],[14,32],[42,-13],[37,83]],[[98028,46354],[1,-22],[-16,4],[-44,9],[-37,18],[-28,67],[30,60],[24,31],[38,17],[20,-52],[6,-15],[4,-23],[2,-94]],[[97914,46577],[-30,0],[-22,36],[-6,95],[44,27],[65,25],[31,-4],[-34,-93],[-27,-59],[-21,-27]],[[98144,48042],[10,-107],[42,17],[23,43],[33,-7],[7,-71],[30,-48],[36,-81],[-19,-53],[-3,-9],[-27,-37],[-12,-16],[-17,-41],[-8,-19],[-26,-47],[-22,-44],[-14,-28],[-17,-86],[-30,89],[-5,-99],[-17,-64],[10,-70],[22,0],[-1,-28],[0,-36],[-8,-58],[-4,-28],[-4,-5],[-17,-21],[-3,12],[-14,44],[-24,87],[-18,58],[-11,33],[-21,38],[-18,31],[-4,90],[-8,86],[-9,58],[-7,49],[0,1],[33,57],[53,49],[22,80],[4,18],[-8,136],[27,20],[6,1],[19,1],[19,5]],[[91007,48294],[12,-1],[8,0],[20,1],[14,-1],[12,0],[-1,-73],[-12,-63],[-4,-29],[-6,-49],[-6,-35],[-8,-44],[-24,52],[-29,44],[-17,104],[-25,98],[31,0],[3,0],[21,-2],[11,-2]],[[90746,48305],[13,-9],[21,-28],[12,-16],[-23,-87],[32,-59],[11,-71],[-5,-12],[-13,-31],[-24,21],[-13,11],[9,-61],[7,-44],[-7,-99],[-3,-86],[-1,-35],[18,-23],[18,-23],[1,-9],[9,-77],[16,-104],[-44,-47],[-71,-53],[-7,-113],[-9,15],[-33,50],[-11,106],[-5,29],[-15,82],[-3,84],[10,21],[16,30],[18,79],[9,78],[13,88],[27,5],[1,0],[-4,25],[-10,67],[-22,109],[6,108],[-3,9],[-17,46],[-8,23],[12,-3],[3,0],[4,0],[13,0],[11,0],[12,0],[4,0],[4,1],[21,3]],[[90509,48070],[0,-98],[-22,94],[-17,39],[-1,34],[-2,63],[3,97],[47,12],[42,-1],[-1,-113],[-34,-13],[-18,-26],[-8,-12],[6,-45],[5,-31]],[[99167,49226],[-12,-40],[-12,-40],[-22,-41],[-26,-60],[-16,-42],[-11,-27],[-24,-58],[-8,-20],[-34,-75],[-17,-111],[6,-109],[4,-66],[-11,-77],[-41,0],[-45,-36],[-23,-35],[-4,-6],[-5,-7],[-33,-77],[-21,-55],[-21,-55],[-1,-3],[-2,-12],[-11,-60],[-10,-64],[-13,-36],[0,-29],[2,-69],[20,-77],[19,-71],[4,20],[18,76],[18,54],[19,28],[16,24],[23,-67],[10,1],[25,2],[5,222],[3,3],[22,27],[-13,42],[-4,13],[4,66],[26,-23],[19,30],[21,-83],[34,-76],[20,-26],[-15,-99],[28,-20],[-8,-46],[-4,-23],[-24,-31],[-44,-13],[-40,-45],[-7,9],[-17,23],[-25,-2],[-21,-10],[-16,28],[-12,-13],[-19,-22],[-2,-43],[-2,-26],[-1,-10],[-5,-38],[-18,-38],[-8,-63],[-9,-104],[-7,-75],[-8,-65],[-24,-86],[-24,-74],[-1,-62],[-19,-16],[-29,-6],[-20,-14],[-21,24],[-28,-1],[-25,55],[-33,40],[-37,-33],[-19,-58],[-22,-73],[-25,-9],[-22,-22],[-38,-4],[-48,-21],[-30,-62],[-3,-64],[9,-66],[-2,-62],[7,-57],[-26,-35],[-32,-37],[42,-35],[8,-79],[-30,-52],[-23,-17],[-47,-4],[-27,38],[-22,-9],[-17,-62],[-28,-26],[-37,-2],[-14,12],[-41,107],[9,56],[-22,49],[34,63],[59,104],[26,61],[36,52],[19,98],[11,98],[28,152],[19,75],[17,44],[6,63],[31,54],[19,70],[32,55],[34,45],[4,5],[34,46],[25,55],[24,77],[27,48],[18,46],[26,66],[23,32],[20,28],[37,54],[4,47],[2,17],[5,58],[26,34],[36,67],[30,47],[31,30],[31,109],[33,79],[38,73],[4,8],[10,86],[24,-7],[9,47],[8,44],[28,35],[3,79],[2,39],[2,82],[-3,53],[-1,22],[-2,66],[-1,29],[36,21],[30,-10],[3,-1],[6,-6],[38,-34],[13,44],[13,44],[21,8],[33,-7],[26,-76]],[[97386,46418],[-33,34],[-31,-35],[-37,7],[41,76],[9,22],[12,29],[17,16],[7,6],[20,-13],[26,72],[3,36],[2,19],[2,26],[2,26],[-1,51],[-2,56],[-5,13],[-15,35],[-38,9],[-32,10],[-5,1],[-23,-22],[-23,-22],[-23,-55],[-23,-28],[-22,-87],[-26,-104],[-15,-81],[-3,-85],[-11,-89],[-1,-85],[-27,1],[-23,-46],[-20,-89],[-24,-74],[-9,-91],[-21,-121],[-23,-57],[-8,-77],[-21,-82],[-13,-52],[-23,-98],[-7,-92],[-1,-11],[3,-95],[25,-52],[14,-11],[20,-15],[10,-10],[18,-19],[11,-6],[41,-21],[24,-2],[32,-20],[25,2],[4,0],[25,66],[7,3],[17,5],[4,3],[11,7],[3,3],[1,0],[5,4],[1,-5],[18,-90],[21,-10],[18,12],[16,25],[7,11],[7,21],[20,55],[9,90],[-34,27],[4,61],[20,41],[8,17],[3,33],[6,56],[2,19],[11,67],[2,11],[-5,72],[32,81],[-12,52],[-2,9],[-9,65],[22,1],[13,56],[25,38],[25,22],[19,18],[21,17],[26,-15],[5,8],[14,23],[13,-2],[32,-4],[1,0],[47,-38],[32,-37],[37,-57],[57,-10],[21,88],[28,-25],[17,-66],[31,37],[27,-62],[-14,-21],[-20,-91],[-10,-320],[-65,-131],[-11,204],[-48,16],[-31,-30],[-18,-13],[-30,-32],[-29,-51],[5,-36],[-474,-1089],[-26,-60],[-88,-281],[-236,-752],[-14,-44],[-31,-125],[-46,-189],[-16,-67],[-23,-95],[-99,-403],[0,-1],[-2,-8],[-6,-31],[-2,-9],[-78,-411],[0,-2],[-1,-9],[-8,7],[-33,-14],[-16,-7],[-5,4],[-19,16],[-24,-13],[-6,-27],[-7,-37],[25,20],[27,-38],[66,2],[-1,-3],[-40,-141],[-4,-17],[-9,-32],[-112,-422],[-16,-39],[-79,-194],[-3,-12],[-48,-265],[-139,-930],[-47,-228],[-27,-50],[-29,-22],[-25,33],[-33,212],[41,167],[81,506],[67,513],[-29,290],[-3,24],[-26,-16],[-4,-2],[-18,46],[-11,-47],[-11,-50],[-9,-71],[-13,-60],[-1,-3],[-36,-75],[-13,-98],[-23,-75],[-18,-71],[-16,-38],[-23,-56],[-36,-128],[-7,-50],[-9,-69],[-6,-74],[-7,-64],[-21,-45],[-9,-168],[-16,-264],[21,-85],[15,-66],[29,-119],[46,-83],[5,-9],[16,-46],[23,-71],[19,-105],[17,-59],[20,-69],[13,-229],[0,-49],[16,-69],[-10,-113],[-12,-100],[-13,-123],[-10,-87],[-9,-83],[-15,-121],[-8,-59],[-11,-69],[-9,-79],[-26,-191],[-11,-66],[-13,-82],[-17,-108],[-17,-112],[-15,-68],[-11,-62],[-12,-80],[-25,-133],[-19,-97],[-16,-84],[-16,-111],[-10,-123],[-6,-122],[-7,-73],[-3,-127],[-7,-202],[-6,-168],[-11,-83],[-17,46],[-13,112],[-25,108],[23,77],[-17,61],[-7,91],[22,74],[-12,101],[-18,95],[16,85],[28,21],[29,29],[7,80],[25,48],[12,56],[11,82],[-2,82],[-13,8],[-15,9],[-34,4],[-7,-35],[-10,-54],[-22,55],[-14,76],[-44,43],[-23,11],[-5,3],[-9,9],[-24,23],[-4,27],[-6,35],[-25,38],[-4,6],[-29,7],[-16,69],[-20,94],[-1,20],[-4,60],[-29,129],[43,8],[-2,73],[-30,33],[20,81],[35,72],[35,96],[13,134],[-37,51],[-18,26],[-14,21],[-22,80],[-50,-45],[-2,-2],[-22,-75],[-20,-41],[-12,-26],[-20,46],[-16,-54],[-8,-26],[-11,-64],[-5,-27],[-17,-94],[-16,-84],[-5,-69],[-11,-60],[-15,-44],[-18,-70],[-11,-80],[-31,-45],[-20,-73],[-5,-65],[-18,-69],[-11,-57],[-5,-26],[-3,-42],[-5,-57],[-24,-38],[-14,-47],[-13,-44],[-23,-115],[-6,-29],[17,-96],[30,34],[8,-21],[19,-47],[-2,-94],[0,-8],[12,15],[16,20],[32,-16],[4,-1],[-2,50],[-1,48],[17,-23],[8,-11],[28,19],[19,33],[9,43],[6,28],[13,33],[19,49],[-17,87],[31,24],[43,-58],[14,-85],[10,-77],[1,-42],[2,-49],[1,-108],[-14,-48],[-26,1],[-19,-11],[-9,-6],[-31,-3],[-18,-31],[-18,-29],[44,-5],[33,-23],[33,24],[17,-57],[11,-47],[-6,-59],[4,-84],[-7,-132],[1,-3],[20,-60],[30,-56],[10,-71],[2,1],[23,5],[2,1],[30,17],[29,14],[37,17],[12,-11],[16,-14],[4,-55],[5,-75],[0,-100],[0,-19],[-2,-86],[15,-110],[-3,-55],[20,-101],[-23,-75],[-31,3],[-3,0],[-30,-57],[-41,76],[-22,65],[-19,61],[-4,-6],[-17,-24],[-1,-1],[37,-137],[28,-94],[-18,-114],[-8,-12],[-15,-24],[-11,-14],[-30,-37],[-33,-15],[-23,3],[-11,-55],[-8,-40],[-29,-72],[-41,47],[-15,24],[-4,8],[2,30],[7,75],[-2,76],[-14,66],[-35,58],[-6,11],[-24,15],[-14,9],[-37,12],[-17,18],[-26,27],[-29,-52],[-33,-13],[-18,-11],[-16,-10],[-10,-31],[-10,-29],[-28,-28],[-3,-31],[-2,-28],[-30,-13],[-5,-39],[-8,-73],[-30,-13],[15,-77],[15,-91],[-1,-28],[-1,-55],[37,-77],[15,-58],[23,-93],[6,-102],[38,-33],[23,-4],[8,-23],[11,-32],[6,-27],[7,-36],[-2,-43],[-1,-29],[-10,-40],[-4,-19],[-34,-62],[2,-94],[1,-6],[6,-42],[-3,-42],[-1,-12],[-27,24],[-32,58],[-25,36],[-32,-23],[-24,14],[-9,5],[-26,-4],[-2,-90],[-2,-15],[-19,-121],[-7,-57],[-3,-23],[-27,-57],[10,-105],[-18,-79],[-3,-15],[-14,-26],[-22,-40],[-27,-34],[-43,20],[-32,9],[-9,3],[-31,-4],[-24,-2],[-11,98],[28,163],[46,50],[20,26],[8,8],[25,24],[28,79],[1,2],[13,31],[16,38],[23,59],[11,82],[-10,40],[-10,38],[-4,29],[-10,74],[-5,82],[-3,49],[-27,-62],[-40,12],[-14,-21],[-15,-24],[-36,105],[-40,56],[8,99],[10,69],[-3,81],[-3,11],[-17,50],[3,38],[5,65],[21,77],[9,46],[7,35],[-44,44],[-21,-55],[-22,-14],[-34,-25],[-21,-8],[-22,-45],[-48,-61],[-8,-29],[-9,-29],[-19,-19],[-14,-77],[-30,-81],[-12,-108],[-18,-43],[-16,-85],[-2,-95],[-29,-40],[-13,-61],[-24,-30],[-21,-46],[-25,-104],[-31,-73],[-14,-68],[-20,-63],[-19,-87],[-4,-21],[5,-93],[8,-31],[12,-49],[9,-17],[16,-30],[-20,-91],[9,-65],[38,-33],[32,-15],[35,31],[6,6],[22,-31],[21,72],[33,56],[33,-76],[5,74],[19,53],[14,26],[21,76],[2,8],[23,-1],[2,-6],[17,-44],[9,-64],[5,-38],[-8,-49],[-23,-60],[28,-45],[17,42],[16,-33],[19,31],[22,-2],[29,-7],[22,12],[27,7],[31,-11],[24,-72],[-22,-54],[-38,-42],[-12,-53],[-12,-50],[-1,-1],[-16,-10],[-18,-80],[-2,-7],[2,-2],[18,-12],[14,48],[25,48],[36,49],[39,-13],[35,-9],[37,-39],[-7,-81],[-4,-45],[-23,-94],[-14,-78],[-40,4],[-31,50],[-27,18],[-18,-35],[-5,-9],[-4,-5],[-28,-38],[-7,-17],[-20,-45],[-4,-98],[0,-27],[-2,-70],[0,-77],[3,-27],[5,-37],[-20,-65],[-3,-10],[16,12],[15,11],[2,1],[5,3],[27,18],[38,-26],[-10,69],[7,11],[29,45],[31,11],[18,4],[9,2],[40,46],[43,55],[17,23],[14,17],[5,3],[19,13],[27,-9],[22,77],[19,60],[3,10],[30,4],[25,-47],[3,-22],[10,-62],[-18,-134],[-5,-23],[-9,-50],[-49,-61],[-26,-65],[-7,-18],[24,4],[4,1],[17,-64],[13,-89],[4,-54],[3,-33],[21,-59],[4,-39],[5,-47],[-1,-18],[-3,-86],[-16,-97],[-24,-6],[-33,5],[-19,24],[-9,1],[-22,2],[-30,-46],[-25,1],[-12,-5],[-117,-84],[-93,193],[-16,154],[-24,233],[-24,16],[-21,27],[-24,43],[29,28],[11,10],[6,20],[16,59],[-9,78],[-3,24],[-25,37],[22,93],[-4,68],[1,9],[2,48],[-25,59],[-13,14],[-17,19],[-4,4],[-8,1],[-16,1],[-11,7],[-28,18],[-17,-50],[-4,-11],[1,-24],[3,-55],[-29,-118],[-19,-60],[-2,3],[-12,17],[1,39],[1,38],[-9,42],[-7,34],[-7,91],[-21,42],[-27,66],[-23,84],[-23,60],[-20,23],[-20,-20],[-29,30],[-8,9],[-32,73],[-6,-21],[-11,-38],[-43,2],[-9,6],[-35,21],[-29,-60],[-11,-26],[-6,-14],[-11,-5],[-19,-9],[-12,-20],[-21,-34],[-21,-70],[-33,-104],[-18,-66],[-30,-50],[-25,-80],[-25,-51],[-27,-30],[-34,-57],[-3,-34],[-9,-117],[-28,-18],[-29,-30],[-33,-45],[-7,21],[-12,38],[17,62],[3,29],[11,100],[4,65],[24,45],[12,98],[21,3],[27,70],[23,52],[18,63],[-5,118],[-18,89],[1,11],[1,26],[2,60],[-2,32],[-2,55],[0,7]],[[93461,32842],[10,20],[12,28],[-5,35],[-12,17],[-22,26],[-15,9],[-19,12],[-14,-1],[-3,-3],[-16,-21],[-15,-6],[-14,1],[-6,41],[-1,65],[-7,81],[-7,31],[-8,43],[-1,49],[14,26],[16,2],[31,-9],[18,12],[3,54],[-4,36],[13,34],[19,32],[35,34],[10,28],[28,176],[15,54],[7,30],[-19,30],[-17,25],[-49,77],[-24,38],[-32,49],[-26,41],[-37,57],[-17,26],[-24,37],[-11,17],[-18,28],[-23,36],[-7,11],[-5,8],[-59,91],[-20,31],[-13,21],[-16,25],[-6,9],[-70,108],[-25,40],[-50,76],[-12,19],[-19,7]],[[92924,34685],[-8,41],[-4,21],[24,129],[-44,-24],[-18,-24],[13,-63],[-7,-24],[-12,-43],[-22,-8],[-26,-13],[-30,-8],[-31,40],[-28,6],[-34,-44],[-30,-19],[-22,-44],[-28,-4],[-22,89],[-31,-48],[-17,-3],[-23,-9],[-44,-10],[-45,-57],[-62,29],[-25,42],[-27,20],[-29,15],[-21,89],[-29,67],[-18,58],[-46,4],[-53,-85],[-38,-74],[-21,36],[-17,94],[-18,-78],[-27,-50],[-34,-12],[-19,-10],[-23,57],[-18,120],[-50,-62],[-28,-42],[-31,50],[-37,-4],[-4,-98],[-25,-24],[-14,79],[-4,144],[10,138],[6,67],[10,69],[30,126],[23,112],[21,70],[28,64],[25,30],[35,4],[31,79],[56,19],[7,-68],[6,-68],[40,-17],[22,-63],[27,-79],[32,-12],[23,-12],[9,-42],[42,-4],[36,-53],[17,83],[-25,40],[-21,62],[-41,87],[-34,72],[-35,62],[4,86],[-42,16],[-6,75],[12,67],[21,-12],[24,48],[22,31],[39,15],[-31,61],[-31,13],[-34,-45],[-37,-49],[-28,-39],[-37,24],[19,128],[1,7],[-38,44],[-8,-2],[-35,-11],[7,48],[12,76],[20,146],[38,95],[32,66],[4,44],[5,44],[16,100],[12,69],[13,81],[11,62],[17,60],[30,83],[6,-20],[6,-21],[28,-18],[-2,-49],[-1,-25],[33,-96],[-14,-117],[0,-18],[0,-63],[25,-70],[0,-83],[18,-71],[22,-41],[25,-65],[35,-7],[28,17],[31,29],[41,42],[27,-15],[-10,-64],[54,-53],[16,-109],[25,-55],[26,-38],[24,98],[-23,85],[-19,116],[-42,9],[-14,203],[24,99],[27,18],[38,0],[12,-81],[35,-20],[-22,133],[27,128],[42,60],[34,15],[40,-24],[16,68],[6,70],[22,7],[22,30],[35,39],[1,74],[21,64],[37,17],[29,64],[-36,-4],[-20,-6],[-27,-4],[-34,-58],[-14,-73],[-20,-31],[-29,-31],[-27,-14],[-17,45],[-5,-79],[-24,-17],[-30,23],[-27,2],[14,66],[-29,1],[-22,-33],[7,-83],[-47,-28],[-29,-61],[-22,-63],[-34,-16],[-32,-24],[-15,64],[9,82],[-9,82],[-11,88],[8,77],[42,26],[46,48],[0,99],[-35,-50],[-26,-9],[-35,-5],[-5,71],[-8,-22],[-20,-60],[-12,-65],[-13,26],[-7,15],[-19,32],[-15,67],[6,91],[26,86],[-34,68],[8,137],[18,132],[36,52],[9,-4],[30,-12],[41,8],[40,16],[19,-31],[30,-22],[3,-6],[21,-42],[23,-81],[4,95],[21,108],[-28,52],[-32,7],[-31,35],[-34,66],[18,51],[8,72],[21,55],[19,53],[20,52],[29,53],[30,-18],[26,-22],[28,-42],[27,-27],[49,-30],[43,15],[23,71],[37,64],[32,3],[48,28],[33,-78],[13,-45],[37,-1],[17,-73],[24,-39],[-1,-102],[-9,-114],[45,-70],[-14,76],[22,115],[17,66],[22,47],[34,-3],[29,-8],[28,-6],[45,-34],[54,-20],[24,103],[18,83],[-31,-6],[-28,-54],[-26,-21],[-27,-8],[-33,46],[-26,30],[-17,45],[-33,-52],[-37,49],[-34,9],[-24,53],[-29,38],[-1,92],[29,59],[26,10],[24,63],[-45,12],[-35,-26],[-34,-49],[-36,-18],[-21,11],[-22,28],[-33,72],[-19,-4],[-24,-28],[-55,2],[-1,89],[-15,82],[18,106],[35,62],[23,-26],[28,-90],[-7,97],[19,73],[25,26],[-28,74],[-28,-47],[-42,31],[7,87],[42,13],[35,26],[0,97],[-17,-13],[-20,34],[35,59],[38,28],[28,23],[61,12],[22,-21],[41,30],[-26,49],[-32,31],[-35,23],[-22,16],[-21,2],[13,70],[7,68],[-14,103],[40,-6],[40,2],[31,16],[12,60],[22,17],[7,60],[16,52],[24,-18],[9,-89],[35,-19],[-14,85],[31,92],[53,40],[-21,-72],[10,-65],[4,-59],[-9,-74],[29,-40],[11,-75],[23,60],[-22,88],[11,89],[43,-7],[39,-29],[24,-48],[23,-26],[-17,116],[-39,24],[-13,100],[23,92],[51,-5],[30,-45],[19,-17],[21,-70],[37,-61],[31,-48],[38,-21],[12,-106],[25,-53],[38,-1],[37,22],[9,-70],[25,-53],[20,71],[32,41],[23,4],[34,12],[-24,103],[-55,-54],[-36,-14],[-21,65],[-21,1],[-29,-8],[-25,50],[11,92],[18,88],[-30,-20],[-20,-22],[-38,-1],[-18,11],[-27,66],[-11,97],[-18,18],[-21,-20],[-12,48],[-30,25],[-18,92],[-42,134],[-15,-25],[-19,-30],[-30,-10],[-5,-2],[-30,12],[-5,2],[-46,-23],[-37,61],[-21,73],[-23,-73],[-62,-1],[-35,-34],[12,-11],[22,-19],[-10,-79],[-33,-97],[-33,14],[1,134],[8,90],[2,15],[23,123],[17,65],[19,68],[37,70],[33,72],[26,24],[24,51],[4,7],[27,22],[19,33],[30,-11],[35,-14],[40,-11],[40,40],[37,28],[28,-37],[16,80],[20,78],[39,109],[31,-63],[38,30],[8,-70],[11,-145],[42,-15],[34,-18],[17,-72],[25,-52],[17,-45],[26,2],[24,-70],[37,-52],[40,-55],[-7,70],[-20,54],[-46,81],[-37,89],[-16,89],[-21,6],[-19,80],[-33,36],[18,105],[19,40],[-31,27],[-1,60],[19,31],[-5,68],[22,-28],[19,19],[4,5],[-22,61],[27,27],[15,19],[9,11],[-25,37],[-24,55],[-19,61],[-38,58],[-2,-19],[-7,-58],[10,-33],[12,-36],[-1,-26],[-1,-8],[-2,-41],[-11,-62],[-4,-26],[-68,2],[-34,-39],[-32,14],[-24,53],[-51,44],[-4,110]],[[93455,41987],[31,-33],[31,-10],[23,7],[-19,84],[-1,28],[0,43],[32,59],[23,-30],[12,-15],[18,-40],[11,-25],[15,26],[13,22],[-24,56],[-5,30],[-11,66],[-3,32],[-6,83],[-35,16],[-27,52],[-21,-45],[-20,87],[-32,24],[-10,8],[-15,-20],[-13,-19],[-41,14],[-24,123],[-26,-89],[-2,-85],[-22,14],[-25,15],[-10,75],[4,20],[12,67],[23,27],[3,4],[-24,39],[-12,64],[-6,86],[22,-27],[18,80],[25,26],[23,15],[25,-31],[40,23],[0,124],[-17,25],[-10,16],[18,25],[15,20],[21,46],[5,18],[9,37],[34,-19],[-1,-86],[22,-67],[4,43],[5,59],[0,30],[-1,47],[22,12],[10,7],[9,7],[10,5],[21,10],[34,-59],[30,-60],[17,56],[3,-14],[8,-33],[25,2],[4,0],[14,-28],[20,-41],[-23,-25],[-43,-16],[-30,-15],[-17,42],[-4,12],[-16,59],[-11,-56],[2,-93],[-2,-88],[-1,-20],[16,-126],[28,-61],[42,-126],[11,-52],[7,-32],[18,-37],[5,-11],[41,-39],[26,43],[-28,67],[-2,5],[-38,97],[3,8],[17,51],[23,27],[35,25],[33,46],[26,46],[41,-48],[19,-74],[0,-2],[4,-57],[-37,-12],[-16,-81],[27,25],[14,0],[12,0],[-5,-33],[-13,-76],[23,-74],[1,-36],[2,-58],[5,-27],[11,-51],[-22,-46],[4,-38],[2,-27],[10,-83],[1,-13],[10,-77],[10,-127],[5,-79],[-7,-86],[20,-87],[24,-75],[-5,99],[2,79],[-2,97],[0,103],[12,109],[-26,95],[23,44],[0,8],[4,52],[32,94],[-25,61],[-10,25],[10,45],[12,58],[23,17],[11,8],[-26,70],[24,55],[28,-61],[20,-14],[32,-1],[28,-18],[2,-38],[2,-67],[8,-50],[10,-62],[0,-113],[20,53],[42,-39],[-22,116],[-16,101],[10,36],[15,52],[20,69],[3,8],[-33,10],[-6,2],[-3,52],[-1,24],[8,86],[0,103],[29,31],[20,-103],[42,5],[21,-26],[30,-21],[38,-16],[22,-73],[9,-31],[35,-13],[23,-70],[10,-92],[13,-54],[11,-87],[5,18],[9,32],[-12,107],[-5,79],[-6,84],[-19,37],[-38,40],[-6,23],[-6,28],[-12,48],[-34,72],[47,32],[19,-7],[22,-9],[-14,43],[-16,51],[0,4],[2,43],[1,24],[-3,25],[-5,39],[28,50],[37,-21],[27,21],[-24,57],[-35,19],[-36,-29],[-27,-41],[-14,-109],[-23,-31],[-28,30],[-32,-7],[-1,41],[-2,61],[13,65],[-5,75],[-42,-10],[4,90],[11,86],[7,64],[-13,104],[-17,91],[39,10],[17,-69],[6,-13],[25,-45],[20,-42],[24,-47],[33,-4],[6,-1],[26,-34],[17,-22],[6,71],[-21,58],[-27,33],[-8,10],[-10,9],[-19,16],[-32,36],[-23,92],[-8,98],[-6,79],[50,53],[39,-12],[19,-67],[39,9],[39,-54],[3,109],[-11,80],[-26,26],[11,-76],[-31,29],[-52,95],[0,43],[-1,39],[-11,76],[28,37],[11,28],[6,15],[4,16],[12,42],[-5,8],[-16,26],[-29,26],[16,95],[21,-25],[30,21],[26,-2],[-6,123],[5,2],[22,9],[4,-13],[15,-47],[12,-99],[6,-34],[11,-53],[26,-112],[14,-25],[20,-35],[20,-59],[-22,-75],[-3,-91],[18,-85],[23,-86],[13,89],[8,63],[8,66],[13,62],[4,16],[28,78],[39,23],[23,-35],[5,-8],[29,6],[9,-3],[20,-6],[36,-25],[42,23],[11,5],[7,4],[-20,22],[-11,13],[-19,0],[-6,0],[-30,34],[-27,13],[-30,-6],[-22,68],[-5,13],[-42,75],[28,92],[23,56],[18,-39],[8,-19],[35,29],[2,52],[1,36],[-2,21],[-4,37],[21,90],[3,67],[52,-56],[-4,30],[-10,62],[24,6],[24,27],[40,2],[29,3],[5,0],[21,68],[-9,2],[-24,6],[-7,3],[-17,8],[-21,5],[-6,8],[-19,29],[-21,31],[-6,10],[2,-48],[3,-44],[-31,27],[-6,-26],[-12,-49],[-36,-35],[-22,-65],[-43,-53],[-32,70],[-5,11],[-37,32],[-33,21],[-34,70],[-3,91],[-27,12],[20,100],[-15,53],[30,31],[21,21],[39,-42],[26,72],[-19,35],[-20,65],[28,0],[6,0],[27,-10],[0,30],[0,27],[11,4],[14,4],[37,51],[50,-3],[33,-7],[-26,76],[-27,39],[-28,37],[-19,-50],[-25,15],[-31,61],[26,84],[-2,39],[-2,52],[0,36],[1,72],[-25,-8],[-28,-13],[-5,0],[-26,-2],[-28,-42],[2,77],[-11,52],[-3,11],[-24,32],[11,39],[10,38],[10,39],[5,22],[14,82],[32,-13],[35,-46],[9,-1],[32,-4],[46,49],[34,88],[3,25],[9,60],[36,-37],[32,-21],[28,6],[42,7],[26,21],[16,12],[-29,83],[-28,-15],[-9,14],[-25,38],[-37,-12],[-34,29],[-19,67],[-16,-73],[-26,-14],[-32,-16],[-18,-56],[-35,39],[-20,-36],[-31,4],[-27,17],[-42,-5],[-31,-78],[-25,-33],[-39,-43],[-49,2],[-48,-12],[-29,37],[-2,74],[23,6],[8,2],[-10,33],[-6,19],[-28,6],[-7,-18],[-13,-29],[-14,35],[-13,31],[13,72],[-2,3],[-32,72],[-33,-10],[-6,-1],[-16,-51],[-1,-6],[-2,-15],[-7,-43],[3,-18],[7,-32],[3,-5],[10,-16],[12,-22],[14,-65],[-41,-6],[-21,-30],[-2,-3],[-3,-1],[-27,-6],[-34,-51],[-21,26],[-40,35],[-7,-83],[-23,-43],[-4,-8],[-26,44],[-26,-37],[-10,42],[-7,29],[-25,18],[-3,-4],[-20,-34],[-26,7],[-4,2],[-8,3],[-29,14],[-1,-96],[-32,1],[-23,60],[-29,8],[16,107],[20,61],[30,-83],[43,11],[51,11],[38,-9],[29,-63],[20,28],[7,12],[20,33],[5,20],[11,46],[11,74],[-3,14],[-9,48],[-19,-33],[-35,26],[-19,60],[-10,38],[-3,9],[-13,46],[9,33],[9,34],[5,-4],[30,-22],[13,59],[9,41],[4,8],[19,33],[16,30],[36,44],[1,10],[10,76],[26,84],[27,70],[21,66],[11,89],[23,75],[20,66],[9,32],[42,70],[31,13],[36,-69],[-40,-19],[20,-64],[20,-93],[20,-35],[30,-28],[49,-15],[24,-12],[6,13],[8,18],[26,13],[34,45],[30,72],[26,52],[20,45],[21,38],[31,88],[22,51],[3,6],[15,49],[31,-62],[24,-28],[32,-13],[35,-22],[20,-58],[38,6],[30,7],[27,-53],[26,-7],[3,1],[1,0],[27,8],[30,-21],[42,4],[26,-4],[27,26],[3,3],[18,55],[3,16],[10,44],[18,59],[3,14],[19,101],[9,80],[0,26],[1,47],[4,56],[2,46],[-11,116],[-6,88],[-2,31],[-16,28],[-11,21],[-12,39],[-3,10],[-5,78],[-24,-9],[-10,-4],[0,26],[3,66],[13,96],[7,92],[11,70],[15,55],[5,19],[11,18],[26,45],[2,-24],[2,-43],[23,-40],[33,-26],[23,32],[11,14],[0,64],[-9,137],[-4,3],[-24,19],[-3,11],[-7,25],[-6,24],[29,96],[17,6],[13,4],[25,42],[12,52],[10,46],[2,15],[12,79],[30,15],[1,0],[43,12],[37,11],[21,4],[6,1],[19,3],[3,0],[2,1],[19,5],[39,10],[28,8],[3,1],[1,0],[14,4],[8,2],[1,1],[1,0],[2,0],[12,3],[17,4],[13,3],[2,1],[18,4],[28,7],[45,11],[24,6],[44,11],[2,0],[10,3],[1,0],[3,1],[74,19],[36,10],[17,3],[23,5],[13,3],[14,4],[24,7],[4,0],[6,2],[47,13],[27,4],[53,13],[1,0],[27,7],[25,6],[22,6],[11,3],[5,1],[7,2],[32,6],[1,0],[20,0],[13,3],[1,0],[6,2],[30,10],[65,21],[75,18],[24,6],[31,8],[24,5],[23,6],[61,14],[20,5],[50,13],[19,5],[1,0],[7,2],[26,6],[51,12],[31,7],[34,8],[18,4],[5,2],[1,0],[23,5],[38,11],[41,10],[65,17],[50,13],[30,6],[71,18],[20,5],[24,6],[97,23],[88,20],[19,4],[13,1],[13,3],[18,4],[12,5],[16,4],[13,3],[15,4],[15,4],[15,2],[6,1],[11,0],[12,3],[15,3],[2,1],[1,0],[29,7],[288,67],[12,-7],[20,16],[38,10],[4,1],[31,8],[7,2],[51,13],[21,5],[14,4],[15,4],[12,3],[23,6],[-4,-123],[9,-79],[-19,-18],[-31,-58],[-35,-10],[-32,6],[-29,39],[-21,-126],[-53,-38],[-44,-34],[-48,-13],[-8,-95],[-5,-83],[-14,-65],[-27,-110],[-18,-92],[-40,-52],[-42,-15],[-35,-30],[-35,-2],[-34,28],[-28,3],[-12,-78],[-9,-94],[-6,-73],[2,-101],[2,-95],[0,-83],[-7,-77],[-31,-61],[-22,-76],[-10,-64],[-3,-16],[2,-46],[1,-21],[1,-19],[2,-49],[2,-44],[8,-85],[-3,-70],[12,-69],[21,-11],[8,-5],[18,-79],[33,-18],[41,-22],[17,28],[11,-81],[-22,-65],[-27,-7],[-14,-4],[14,-58],[2,-11],[34,-59],[10,-120],[-7,-1],[-11,-1],[-11,-2],[-34,24],[-3,-16],[-8,-38],[-9,-38],[-6,-2],[-30,-6],[-8,4],[-33,17],[0,-10],[6,-81],[11,-102],[4,-103],[4,-71],[20,-49],[22,-29],[0,-12],[1,-68],[42,-30],[17,83],[-5,74],[-2,23],[18,46],[7,16],[33,-27],[13,-53],[5,-17],[26,-64],[40,-76],[13,-21],[12,-19],[-26,-89],[-16,-46],[-18,-17],[-3,-3],[-6,-5],[-32,-28],[-28,-23],[-6,-4],[-34,-30],[-17,-24],[-15,-22],[-35,-34],[-22,-4],[-7,-16],[-11,-28],[-25,-46],[-26,19],[-6,4],[-6,13],[-24,50],[-25,46],[-15,5],[-9,3],[2,-43],[1,-43],[0,-53],[6,-3],[7,-4],[13,-8],[-8,-71],[-7,-57],[-1,-9],[-12,-66],[-7,-43],[-2,-13],[-10,-70],[-13,-60],[-20,18],[-15,67],[-2,10],[-20,-31],[-13,59],[-4,18],[-19,67],[-28,20],[-28,23],[-19,-64]],[[99937,50606],[-43,-159],[-34,-121],[-25,-101],[-18,-77],[-25,-90],[-21,-70],[-18,-65],[-26,-99],[-38,-144],[-32,-111],[-23,-88],[-24,-92],[-35,-127],[-21,-77],[-48,-160],[-39,-129],[-31,-103],[-26,-85],[-12,-52],[-16,-67],[-21,-91],[-25,-80],[-19,-72],[-22,-97],[-16,-77],[-19,-90],[-16,-72],[-20,-87],[-19,-83],[-12,-53],[-14,-75],[-25,-126],[-21,-109],[-22,-106],[-10,-55],[-12,-58],[-18,-97],[-19,-93],[-16,-87],[-19,-89],[-20,-86],[-14,-79],[-13,-63],[-20,-115],[-27,-127],[-24,-110],[-28,-130],[-21,-95],[-21,-77],[-27,-117],[-33,-141],[-26,-96],[-37,-134],[-30,-101],[-23,-66],[-28,-69],[-23,-53],[-30,-58],[-31,-55],[-67,-208],[-48,-185],[-50,6],[-4,9],[-57,194],[-116,422],[-157,150],[-5,27],[-56,114],[51,117],[91,-46],[22,-11],[103,-51],[38,10],[25,-14],[29,-46],[43,-63],[49,-83],[25,-96],[28,-56],[54,-24],[26,34],[18,44],[40,36],[25,48],[28,81],[16,57],[18,77],[15,159],[5,121],[22,32],[24,63],[-1,108],[0,13],[-45,45],[-42,39],[-20,-91],[-29,27],[-26,-5],[-24,13],[-21,11],[-24,10],[-17,8],[-37,13],[-58,10],[-37,-4],[-33,-13],[-30,-3],[-20,44],[22,24],[34,43],[21,100],[2,11],[8,90],[15,75],[-20,90],[16,7],[8,3],[8,36],[7,33],[17,25],[10,13],[27,61],[5,11],[29,7],[11,2],[17,-29],[39,57],[3,0],[27,2],[7,0],[37,-1],[36,60],[50,46],[40,56],[48,37],[-18,85],[10,98],[10,76],[4,31],[3,16],[14,74],[3,-12],[21,-86],[23,28],[15,17],[27,58],[22,75],[30,59],[29,37],[36,96],[35,76],[30,55],[20,54],[-9,76],[-27,85],[-14,110],[-30,93],[16,51],[8,62],[34,69],[15,101],[29,82],[17,61],[5,54],[17,66],[25,30],[22,43],[28,22],[2,2],[-11,91],[16,14],[26,21],[-18,121],[15,42],[14,37],[-36,66],[-43,102],[23,62],[-22,42],[-25,23],[8,94],[30,-57],[26,-36],[39,39],[12,80],[3,26],[-8,80],[15,48],[7,-25],[23,-87],[35,-21],[-1,-57],[-2,-42],[45,25],[1,3],[31,83],[-28,69],[25,78],[2,17],[21,142],[28,56],[18,35],[20,36],[-9,74],[3,42],[2,27],[9,75],[7,63],[8,37],[1,5],[16,76],[3,32],[3,41],[38,-50],[28,6],[30,3],[9,95],[25,20],[11,2],[1,0],[15,43],[54,14],[48,12],[1,0],[20,5],[8,2],[15,5],[11,4],[65,23],[-23,-105],[-20,-56],[-19,-62]],[[86855,39673],[-15,8],[-11,21],[-9,35],[-13,24],[-10,22],[-12,4],[-9,31],[-8,36],[-16,5],[-10,17],[-13,41],[-18,13],[-13,4],[-21,13],[-23,47],[-16,19],[-25,16],[-12,23],[-19,-16],[-12,-25],[-20,10],[-6,45],[9,29],[2,4],[8,27],[8,30],[2,9],[10,40],[3,13],[14,70],[7,34],[7,28],[20,15],[14,24],[14,48],[12,40],[11,42],[5,31],[0,52],[-3,52],[0,1],[0,48],[8,47],[10,29],[4,11],[10,35],[3,43],[1,36],[-2,35],[-1,41],[-2,56],[-9,71],[-2,6],[-9,31],[-4,39],[-2,50],[5,54],[6,38],[0,62],[-11,45],[-10,23],[-19,42],[-10,22],[-11,28],[-5,32],[-3,37],[6,63],[6,39],[7,29],[10,35],[10,30],[10,24],[1,3],[9,39],[-14,48],[-11,25],[-2,5],[-10,78],[-4,49],[-5,45],[-10,22],[-23,37],[-21,33],[-18,30],[-17,25],[-13,12],[-20,7],[-14,14],[-12,15],[-10,18],[-14,8],[-14,4],[-13,4],[-14,-5],[-19,-18],[-12,-9],[-15,-13],[-13,3],[-14,6],[-17,8],[-17,9],[-13,6],[-28,13],[-14,6],[-14,7],[-5,45],[-2,43],[-10,56],[-7,30],[-19,28],[-12,12],[-18,14],[-11,11],[-9,24],[-9,38],[-9,29],[-15,35],[-11,27],[-6,34],[-6,44],[2,42],[5,38],[1,38],[-4,40],[-5,35],[-14,43],[-10,30],[-10,32],[-10,29],[-10,29],[-13,45],[-7,33],[-1,38],[-2,79],[-2,83],[-1,38],[3,37],[4,46],[1,40],[2,34],[6,47],[1,37],[-4,58],[-5,37],[-25,40],[-13,20],[-16,26],[-30,47],[-36,59],[-15,-34],[-18,-60],[-11,-31],[-25,-12],[-15,-28],[-12,-23],[-27,-32],[-15,-11],[-27,-6],[-30,-5],[-13,-3],[-14,-3],[-12,-6],[-15,-12],[-15,-10],[-62,-14],[-16,-3],[-18,-3],[-12,0],[-18,10],[-3,3],[-3,2],[-5,5],[-22,20],[-16,13],[-7,8],[-6,6],[-4,8],[0,1],[-6,13],[-3,25],[-3,19],[-6,34],[-8,34],[-25,112],[-15,65],[-17,74],[-11,48],[-3,9],[-10,30],[-7,42],[-14,7],[-14,10],[-22,4],[-20,7],[-16,-5],[-13,0],[-13,7],[-16,11],[-12,10],[-21,26],[-14,18],[-25,33],[-12,-7],[-14,-30],[-17,-29],[-18,-70],[-23,-63],[-24,-33],[-12,-12],[-14,-11],[-21,-11],[-8,40],[1,61],[4,86]],[[84153,50431],[30,14],[20,4],[27,54],[3,79],[9,91],[-13,67],[40,19],[12,-64],[27,22],[24,-14],[29,72],[35,-54],[30,-19],[7,-139],[34,-1],[23,25],[-4,71],[28,43],[50,-70],[-14,-69],[7,-95],[2,-63],[-22,-7],[25,-88],[-18,-34],[-28,21],[-47,-8],[-16,-61],[-27,-21],[-13,-68],[-23,17],[-18,-35],[-32,3],[-4,-72],[-27,-64],[31,-19],[35,-1],[33,110],[31,-11],[27,57],[37,28],[32,4],[33,14],[22,-66],[-38,-24],[-31,-81],[18,-71],[8,-72],[-3,-62],[1,-96],[34,-21],[-2,-75],[6,-66],[30,-42],[-19,-61],[5,-86],[4,10],[26,65],[21,49],[-16,67],[-20,56],[2,82],[-20,98],[-19,38],[-1,95],[27,45],[31,-53],[46,-34],[24,103],[-24,43],[-38,19],[2,85],[21,59],[33,-19],[11,60],[32,16],[-29,61],[-21,49],[-45,-33],[-13,64],[14,92],[23,78],[-20,55],[32,4],[26,-55],[22,-31],[35,13],[-15,48],[-19,51],[-26,51],[-26,41],[-27,37],[26,23],[28,-16],[31,-33],[21,-16],[23,-10],[37,3],[39,19],[26,32],[1,42],[15,-11],[15,-20],[12,-12],[13,-14],[21,-29],[22,-32],[15,-17],[20,-25],[16,-13],[12,-12],[16,-14],[11,-15],[13,-15],[13,-6],[13,-17],[11,-16],[11,-9],[12,-9],[12,-9],[-15,-39],[24,-57],[-33,-55],[17,-129],[29,46],[25,94],[14,81],[12,20],[23,-26],[13,-9],[12,-8],[17,-13],[13,-3],[13,-1],[14,3],[20,4],[14,8],[14,-3],[-24,-52],[-24,-76],[-20,-60],[27,-25],[29,11],[31,-19],[20,-64],[25,-55],[28,-32],[34,1],[3,-82],[13,-108],[-16,-98],[-29,47],[-15,70],[-26,56],[-57,-23],[-29,12],[-44,0],[-14,-53],[40,-53],[35,-37],[25,-11],[20,-4],[-5,-82],[-33,-1],[-33,-4],[-34,-41],[-32,70],[-42,3],[18,-78],[-24,-69],[-28,7],[-21,50],[-11,91],[-18,-98],[-24,-27],[-23,7],[-17,71],[5,65],[-5,86],[-26,-3],[3,-107],[-30,-51],[-37,30],[-35,43],[22,-103],[25,-25],[17,-42],[30,-13],[18,-75],[-5,-94],[-7,-108],[30,-36],[24,74],[0,73],[4,95],[22,-20],[27,28],[27,-40],[32,-117],[31,68],[10,85],[29,-1],[30,32],[25,0],[44,42],[21,-60],[-37,-40],[12,-105],[33,-53],[-31,-101],[28,6],[28,36],[20,-34],[41,-29],[-15,-79],[-12,-60],[-17,-89],[-33,-11],[-34,-5],[-32,16],[-37,-27],[44,-60],[-28,-37],[-25,-66],[-25,-81],[-21,-42],[17,-76],[4,-102],[5,4],[37,31],[-11,73],[1,61],[25,16],[19,105],[34,49],[25,-62],[3,-77],[8,-80],[33,80],[29,44],[27,50],[43,27],[20,43],[-5,131],[12,81],[-1,62],[-15,43],[18,88],[-23,71],[-31,69],[-31,18],[20,47],[19,-10],[21,16],[35,-9],[44,-37],[50,29],[13,45],[39,4],[28,-47],[12,-87],[-22,-48],[-22,-46],[39,-21],[-27,-67],[-18,-76],[-13,-62],[-24,-37],[2,-120],[29,85],[26,44],[22,115],[44,34],[15,-102],[-11,-101],[20,-56],[15,106],[20,80],[3,95],[2,51],[53,-90],[14,-28],[15,-31],[14,-31],[12,-36],[13,-40],[14,-42],[49,-107],[28,-62],[213,-207],[-33,-158],[-3,-178],[-57,-142],[76,-146],[13,-84],[-1,-254],[-49,-179],[93,-179],[59,33],[6,343],[-13,231],[-47,235],[16,170],[90,85],[20,98],[12,-7],[20,-19],[12,-11],[14,-8],[12,-6],[18,-10],[20,-10],[32,-16],[21,-13],[12,-7],[21,-13],[15,-8],[22,-10],[21,-11],[5,-91],[-40,-188],[-41,-179],[28,-188],[58,-10],[28,217],[38,226],[71,77],[26,-24],[37,-39],[14,-17],[22,-23],[21,-26],[29,-38],[12,-15],[16,-23],[16,-25],[13,-17],[11,-15],[13,-18],[13,-20],[25,-29],[10,-17],[14,-20],[-20,-144],[-95,-28],[-75,-85],[-43,-141],[97,-10],[99,47],[66,0],[42,127],[25,96],[11,-20],[13,-19],[13,-19],[18,-25],[23,-30],[19,-27],[19,-25],[17,-23],[15,-22],[11,-14],[26,-27],[13,-19],[12,-18],[17,-22],[17,-25],[19,-21],[14,-20],[10,-25],[14,-17],[15,-21],[12,-18],[14,-18],[12,-18],[29,-34],[14,-14],[12,-21],[14,-19],[17,-15],[19,-21],[17,-18],[11,-20],[12,-9],[30,-40],[21,-27],[17,-28],[14,-24],[16,-26],[21,-37],[15,-29],[16,-37],[11,-17],[11,-19],[12,-37],[8,-25],[8,-27],[10,-18],[5,-35],[19,-47],[6,-23],[12,-118],[-19,-89],[-37,19],[-49,-23],[-34,103],[-28,118],[-31,17],[-68,165],[-32,11],[-1,-110],[45,-116],[22,-33],[21,-42],[18,-108],[-16,-80],[-45,-22],[-55,129],[-36,74],[-23,-29],[-12,-96],[-55,20],[-69,-18],[-52,196],[-27,37],[-62,104],[21,52],[-21,33],[-25,42],[-24,99],[-35,52],[-26,0],[-6,-62],[44,-61],[39,-127],[0,-108],[39,-160],[44,-19],[43,-141],[31,-76],[52,-42],[65,10],[49,-24],[31,-72],[15,-132],[-34,-99],[-14,-102],[25,3],[32,39],[45,-51],[20,97],[-25,237],[64,47],[30,14],[45,-89],[27,-2],[68,-51],[35,42],[25,-11],[17,-159],[25,-91],[26,97],[0,107],[0,64],[-18,131],[-21,30],[-6,51],[-15,79],[-12,55],[4,12],[74,-83],[8,-1],[50,-57],[-4,-264],[-96,-519],[1,-4],[-4,-86],[-3,-97],[-2,-169],[-4,-74],[-28,-126],[-14,-145],[-2,-76],[-4,-57],[15,-38],[-4,-131],[-12,-104],[-13,-73],[-26,-31],[-28,-74],[-31,-73],[-34,48],[-17,-72],[10,-111],[-5,-56],[-18,-66],[-18,-84],[-31,-48],[-34,-67],[-29,-24],[-37,14],[-39,-52],[-28,54],[11,125],[37,13],[23,52],[-15,81],[21,6],[26,1],[23,52],[10,88],[-38,-54],[-24,35],[-23,86],[-5,96],[18,67],[2,52],[4,60],[33,-72],[34,37],[-17,97],[33,4],[-19,104],[-24,85],[-16,-64],[-24,-70],[-35,-49],[0,93],[-12,104],[9,62],[-22,25],[26,72],[-29,10],[-12,64],[-30,130],[-46,52],[11,-107],[8,-98],[28,27],[4,-94],[15,-135],[6,-140],[-24,-21],[-16,59],[-29,71],[-16,-57],[30,-73],[30,-81],[38,-48],[-16,-73],[-28,-15],[-2,-94],[25,-19],[0,-107],[-7,-84],[2,-75],[-39,-23],[-42,-2],[-31,63],[-19,82],[-4,82],[7,131],[26,53],[-13,56],[-3,100],[-26,5],[-3,-96],[-27,-4],[-31,-42],[-22,9],[-39,-32],[-42,17],[-25,-57],[-26,-23],[-7,82],[10,85],[-9,60],[-16,48],[-29,18],[9,104],[21,76],[9,118],[-32,-36],[-30,4],[-51,62],[-9,104],[-14,77],[-19,25],[-25,7],[-25,0],[-59,-70],[-26,-68],[-40,66],[-32,-126],[-34,2],[-24,-5],[-32,24],[-32,67],[-21,90],[-40,-10],[-30,-104],[-32,-75],[12,158],[-16,66],[-21,43],[-3,66],[7,88],[-27,39],[-33,33],[-7,99],[-24,20],[-31,-44],[-23,40],[-30,-80],[-15,77],[-25,-38],[-27,19],[13,117],[-7,117],[-20,-123],[-36,56],[-36,5],[-44,-1],[-51,-40],[-39,65],[-35,59],[-4,-71],[-28,-25],[-18,17],[-25,-13],[-27,-9],[-36,15],[-41,11],[-25,83],[-31,73],[-30,0],[-34,36],[-24,-15],[33,-61],[24,-39],[-8,-113],[10,-7],[21,-14],[11,58],[28,-41],[33,-25],[26,-56],[34,27],[25,-34],[28,-1],[34,18],[26,-21],[31,-57],[37,-3],[38,-15],[33,-20],[28,-67],[17,36],[25,-67],[25,-31],[22,16],[25,28],[29,-86],[36,16],[37,-12],[32,-70],[28,-17],[-13,-67],[19,-74],[11,-89],[-21,-19],[-8,-93],[4,-7],[37,-53],[17,-31],[15,-29],[47,-18],[33,68],[22,-85],[12,61],[25,15],[24,-23],[11,-103],[9,-71],[43,7],[42,-119],[25,69],[-39,128],[45,16],[41,59],[30,21],[23,50],[15,-64],[45,-32],[18,-65],[-25,-103],[34,-33],[32,-70],[23,-45],[-18,-64],[0,-72],[38,-134],[23,-108],[14,-91],[34,-34],[40,1],[25,17],[26,24],[-15,-95],[-23,-51],[-19,-86],[-17,39],[-3,16],[-33,55],[-45,-15],[-54,51],[-25,-32],[-8,-140],[39,-49],[24,21],[15,-49],[18,-43],[14,39],[14,-21],[14,-52],[19,-12],[13,49],[17,-30],[20,22],[25,18],[12,-72],[1,-70],[-14,-134],[4,-130],[-16,-42],[-20,-76],[-18,-102],[-20,131],[-37,5],[-28,6],[2,-64],[-29,12],[-28,-9],[-30,32],[-18,-69],[-21,16],[-33,1],[-29,-8],[-24,43],[-21,35],[-9,90],[-8,66],[-46,-8],[5,-24],[12,-49],[15,-56],[-2,-97],[39,-28],[27,-43],[30,-22],[25,-1],[19,-68],[39,49],[24,16],[36,-8],[32,6],[28,-61],[1,-73],[17,-70],[-9,-85],[28,-29],[25,44],[39,39],[3,91],[15,51],[19,-30],[23,-27],[18,-44],[33,-45],[35,19],[30,43],[36,27],[22,-20],[28,-56],[-9,-78],[-16,-116],[-13,65],[-8,55],[-22,40],[-27,-12],[-14,-62],[-24,-6],[-15,-57],[-32,23],[-21,35],[-33,-61],[3,-113],[-40,-16],[-5,-87],[3,-144],[19,-109],[-25,-69],[-36,4],[-37,12],[-14,58],[-19,-81],[17,-74],[24,-34],[18,-37],[15,-55],[22,-37],[-5,-66],[0,-98],[-27,-55],[-41,3],[10,-91],[9,-58],[11,-72],[39,-45],[31,-84],[9,-157],[6,-76],[17,-93],[-40,18],[-34,45],[-14,74],[-23,52],[-35,37],[-51,29],[-22,79],[14,73],[-40,-22],[-31,58],[-27,-21],[-19,75],[3,72],[-38,-18],[-13,111],[-50,-73],[30,-68],[18,-65],[-31,-82],[32,-14],[28,-24],[27,-97],[27,-18],[44,-31],[15,-73],[36,-30],[-19,-54],[-31,12],[-44,-1],[-30,-35],[-9,-74],[54,-50],[30,52],[39,-61],[31,-20],[-1,-93],[-33,-24],[21,-34],[22,-168],[-8,-97],[20,-46],[14,81],[32,79],[30,39],[17,-77],[-4,-62],[13,-67],[18,-100],[9,-80],[21,-64],[33,-29],[10,-65],[9,-99],[7,-95],[0,-67],[-33,-28],[21,-96],[-15,-78],[-21,-4],[-38,-13],[-46,-89],[-28,-45],[-33,24],[-27,27],[10,61],[-26,49],[-30,68],[-27,57],[-32,52],[13,-143],[19,-92],[-44,-47],[-28,50],[-27,62],[-11,72],[-43,-34],[-36,41],[-28,43],[7,87],[-30,-4],[-29,-4],[9,76],[-9,100],[-9,112],[-20,-86]],[[75058,42684],[13,5],[17,9],[28,23],[24,10],[27,19],[12,11],[28,29],[14,-13],[10,-28],[14,-53],[5,-46],[-1,-56],[-4,-68],[-3,-44],[-1,-44],[7,-41],[10,-28],[-1,-39],[-14,-27],[10,-49],[14,-47],[13,-38],[15,-49],[19,-42],[19,-67],[-9,-46],[-15,-41],[-14,-4],[-20,-1],[-31,20],[-12,5],[-20,-3],[-14,-13],[-12,-18],[-18,-31],[-22,-51],[-7,-40],[6,-43],[17,-64],[6,-31],[5,-68],[0,-38],[12,-42],[10,-22],[13,-25],[12,-10],[16,4],[21,21],[27,19],[15,15],[23,13],[15,2],[20,-16],[21,-29],[18,-36],[19,12],[25,15],[22,13],[17,3],[36,10],[31,28],[10,-20],[17,-73],[7,-67],[-5,-34],[-9,-25],[-10,-41],[-10,-48],[3,-47],[-7,-34],[-13,-16],[-25,-72],[-13,15],[-18,46],[-14,25],[-11,10],[-21,5],[-51,-22],[-13,-1],[-14,2],[-3,-45],[1,-65],[-2,-45],[-4,-34],[8,-51],[-6,-33],[-15,-47],[9,-26],[14,15],[11,15],[15,-16],[13,-8],[19,20],[15,14],[14,9],[15,10],[16,8],[17,9],[16,3],[16,-14],[14,4],[38,44],[11,22],[11,21],[12,28],[14,14],[28,18],[14,6],[13,-17],[-8,-89],[5,-36],[3,-35],[-7,-29],[-13,-35],[-11,-28],[-9,-37],[-4,-33],[-1,-64],[0,-58],[1,-73],[8,-30],[17,-51],[9,-29],[10,-43],[5,-41],[4,-41],[1,-36],[4,-72],[12,-2],[33,37],[13,-3],[13,-10],[20,-30],[13,-13],[13,-5],[13,3],[14,4],[12,21],[11,24],[26,85],[5,34],[4,33],[17,56],[13,22],[11,19],[13,35],[15,6],[14,-26],[11,-43],[13,-37],[12,-12],[25,-15],[11,-44],[8,-49],[11,-92],[16,-32],[37,-49],[14,-22],[17,-20],[18,-8],[12,-9],[14,-23],[18,-5],[13,12],[16,21],[24,52],[-7,42],[-6,43],[-9,39],[-13,32],[-11,19],[-19,9],[-11,26],[10,21],[20,11],[5,36],[-3,45],[-14,23],[-13,-1],[-16,-4],[-6,30],[11,21],[11,18],[12,39],[-6,40],[-10,25],[15,71],[5,34],[18,36],[14,4],[12,-10],[19,-32],[12,-40],[-6,-36],[-7,-40],[19,-20],[15,-13],[14,0],[14,11],[13,30],[10,-24],[8,-33],[10,-21],[8,-54],[3,-49],[1,-34],[-6,-46],[-8,-25],[-4,-41],[29,-50],[10,-25],[14,-24],[1,-34],[-18,-27],[-10,-37],[-11,-64],[-10,-70],[-7,-35],[-18,-65],[-14,-34],[-16,-45],[-12,-53],[-10,-16],[-22,-22],[-8,-31],[9,-29],[10,-18],[17,-40],[9,-41],[10,-26],[17,-33],[8,-34],[-1,-38],[-9,-28],[-28,-59],[-21,-25],[11,-45],[12,-18],[23,-11],[12,-7],[12,-7],[12,3],[26,20],[13,13],[18,11],[31,13],[18,2],[17,4],[14,6],[14,25],[12,12],[16,6],[26,1],[12,4],[15,7],[17,3],[15,-16],[11,-19],[15,-31],[9,-24],[7,-33],[4,-33],[2,-48],[-11,-20],[-23,-21],[-16,-32],[0,-40],[-1,-39],[10,-43],[15,-9],[15,2],[16,2],[36,1],[19,20],[16,36],[9,61],[4,84],[-13,70],[0,55],[10,56],[28,50],[22,6],[23,15],[26,-1],[12,-10],[13,-17],[10,-19],[12,-45],[8,-34],[11,-18],[16,10],[20,10],[9,-29],[3,-15],[5,-19],[3,-41],[1,-69],[0,-68],[-2,-40],[-11,-54],[-10,-20],[3,-36],[18,-23],[8,-40],[-13,-29],[-9,-35],[-10,-21],[-16,-14],[-11,-18],[-6,-29],[-3,-42],[-18,-24],[-27,-17],[2,-50],[2,-48],[20,-81],[16,-50],[7,-55],[11,-19],[23,-23],[18,-7],[14,2],[20,19],[12,17],[12,13],[17,12],[38,6],[20,6],[19,8],[23,13],[21,27],[16,48],[10,33],[11,55],[-1,37],[-2,58],[15,11],[5,-41],[12,-21],[19,23],[13,-15],[7,-28],[18,1],[9,23],[-5,42],[2,36],[14,1],[6,-35],[1,-38],[4,-45],[11,-32],[13,-13],[20,-7],[13,4],[13,21],[13,53],[0,36],[-8,58],[-6,38],[-4,79],[-8,42],[0,46],[12,15],[4,6],[15,-13],[16,-39],[11,-26],[7,-38],[0,-26],[-1,-15],[2,-25],[1,-10],[2,-19],[27,-24],[7,-6],[-1,-11],[-1,-26],[-12,-24],[2,-40],[18,-7],[11,20],[14,47],[12,3],[11,-19],[5,-32],[4,-63],[11,-27],[15,-15],[1,-1],[16,-13],[13,-11],[39,-16],[13,-8],[13,-9],[33,-21],[5,-1],[8,-2],[21,2],[12,15],[12,21],[17,33],[34,53],[1,1],[18,4],[11,-12],[2,-2],[1,-5],[9,-34],[1,-1],[6,-34],[5,-37],[3,-51],[-4,-49],[-2,-36],[-8,-87],[-7,-44],[-9,-31],[-6,-25],[-20,-74],[-10,-36],[-17,-49],[-28,-70],[-6,-59],[9,-64],[14,-44],[13,-30],[4,-38],[2,-16],[-10,-23],[-2,-1],[-10,-6],[-21,0],[-18,8],[-16,12],[-13,11],[-14,14],[-24,3],[-23,-14],[-27,-27],[-1,-46],[13,-54],[6,-40],[15,-76],[8,-29],[1,-2],[4,-12],[8,-21],[12,-33]],[[77685,37129],[0,-3],[-11,-35],[-11,-21],[-14,-22],[-10,43],[-11,-14],[-14,-3],[-15,18],[-12,-12],[-14,0],[-12,-21],[-12,-44],[4,-49],[0,-35],[11,-18],[2,-38],[-12,-16],[-14,-3],[-10,-23],[-9,-25],[-3,-33],[5,-41],[11,-41],[13,-34],[12,-21],[5,-32],[7,-29],[2,-38],[-10,-34],[-7,-28],[-6,-38],[-10,-32],[-6,-29],[-8,-40],[-4,-32],[-3,-35],[0,-37],[2,-46],[1,-39],[-3,-76],[-12,-22],[-9,-31],[-7,-45],[-10,-42],[-15,-26],[-16,-4],[-14,3],[-13,5],[-13,1],[-16,3],[-14,2],[-16,6],[-14,12],[-15,13],[-19,16],[-14,13],[-21,18],[-14,3],[-19,-5],[-25,-2],[-13,15],[-11,21],[-16,29],[-12,8],[-14,8],[-12,7],[-20,-8],[-13,-27],[-105,-240],[-33,-78],[-31,-70],[-49,-112],[-22,-54],[-47,-111],[-72,-166],[-15,-37],[-23,-54],[-24,-56],[-27,-63],[-10,-31],[-4,-36],[-7,-33],[-6,-33],[-49,-144],[-21,-63],[-46,-141],[-51,-42],[-70,-57],[-17,-12],[-11,-20],[-5,-32],[-2,-43],[4,-32],[14,7],[6,35],[12,-15],[1,-36],[4,-33],[7,-37],[11,-38],[9,-25],[13,-29],[5,-43],[-7,-39]],[[76444,34031],[-14,20],[-12,19],[-6,32],[-4,35],[-11,11],[-11,-21],[-12,-7],[-13,-6],[-18,9],[-12,4],[-10,-22],[-12,-15],[-12,-6],[-7,29],[-13,0],[-10,27],[-13,-8],[-12,7],[-12,-7],[-10,24],[-10,19],[-12,10],[-11,22],[-10,24],[-12,14],[-12,-9],[-10,20],[-6,34],[-8,31],[-13,18],[-12,26],[-12,14],[-14,21],[-1,41],[-8,28],[-11,14],[-12,6],[-11,9],[-12,6],[-9,26],[-10,22],[-10,21],[-18,-9],[-12,-1],[-16,1],[-9,9],[-5,6],[-13,8],[-15,2],[-12,14],[-13,8],[-10,19],[-13,13],[-15,-5],[-12,6],[-9,4],[-18,13],[-12,14],[-13,12],[-11,17],[-19,13],[-11,14],[-15,36],[-8,26],[-5,16],[-15,39],[-14,13],[-14,2],[-16,-5],[-8,0],[-4,0],[-14,-3],[-11,-13],[-14,-12],[-12,3],[-14,2],[-13,5],[-13,12],[-16,17],[-12,13],[-10,22],[-8,26],[-10,33],[-7,28],[-12,1],[-11,15],[-12,-12],[-13,3],[-11,26],[-11,22],[-7,27],[-9,23],[-13,0],[-12,-1],[-12,14],[-8,27],[-11,-16],[-12,3],[-11,15],[-12,21],[-11,22],[-11,25],[-10,26],[-12,12],[-13,16],[-12,-3],[-3,41],[-9,22],[7,27],[-13,24],[-3,9],[-8,18],[-62,31],[-20,9],[-6,4],[-13,11],[-12,9],[-11,15],[-13,1],[-12,-3],[-11,13],[-12,16],[-12,7],[-13,3],[-12,13],[-8,26],[-12,-1],[-12,0],[-16,16],[-3,35],[-11,19],[-14,11],[-12,-9],[-6,30],[-4,36],[-11,17],[-11,18],[-6,33],[-1,4],[-7,25],[-8,26],[-14,19],[-11,19],[-11,24],[-17,32],[-13,12],[-9,23],[-15,20],[-11,3],[-12,-5],[-5,7],[-6,9],[-12,8],[-13,8],[-12,5],[-11,20],[-11,-12],[-12,6],[-13,4],[-12,10],[-14,1],[-12,23],[0,1],[-10,21],[-13,21],[-13,26],[-14,13],[-12,12],[-13,4],[-12,1],[-15,9],[-7,34],[-6,31],[-10,21],[-9,26],[-12,12],[-15,-1],[-9,25],[-12,44],[-9,26],[-9,28],[-11,19],[-13,-19],[-11,-10],[-16,-2],[-8,26],[-8,37],[2,35],[5,33],[0,1],[0,37],[-7,25],[-1,3],[-10,25],[-7,15],[-3,5],[-8,26],[-7,29],[-4,33],[6,30],[8,32],[1,4],[9,22],[9,25],[0,35],[1,34],[1,35],[8,27],[5,31],[-1,35],[-7,29],[-10,21],[-12,25],[-6,30],[-12,13],[-11,16],[-12,13],[-5,33],[-12,14],[-14,14],[-11,22],[-11,15],[-12,21],[-10,21],[-11,18],[-4,32],[-5,35],[-5,35],[-4,35],[-6,34],[-4,35],[-5,32],[-5,33],[-3,20],[-2,14],[-5,36],[-6,46],[-5,33],[-5,32],[-4,35],[-5,34],[-8,28],[-10,22],[-11,12],[-12,16],[-12,10],[-3,4],[-9,8],[-5,10],[-5,11],[-1,36],[0,3],[-6,51],[-16,161],[-6,10],[-13,46],[-7,30],[-5,39],[-10,23],[-10,26],[1,34],[-7,32],[-9,26],[-11,18],[-11,22],[-2,34],[-3,36],[-2,36],[3,36],[-4,35],[0,2],[-12,204],[-4,36],[-8,28],[-8,27],[-9,25],[-5,6],[-60,33],[-10,-22],[-9,-25],[1,-38],[0,-37],[-10,-17],[-14,-1],[-10,20],[-14,4],[-9,-26],[3,-35],[-12,-20],[-12,-6],[-14,9],[-13,3],[-14,11],[1,34],[-10,24],[-13,1],[-13,10],[-8,29],[-4,35],[-11,20],[-4,32],[-11,20],[-9,21],[-10,23],[-11,34],[-10,19],[-13,10],[-11,-13],[-13,-15],[-8,-25],[-11,-20],[-12,2],[-4,-32],[-7,-31],[-2,-34],[-5,-33],[-5,-32],[-11,18],[-11,15],[-11,11],[-7,32],[-11,17],[-11,-14],[-7,28],[-12,10],[-8,29],[-11,-12],[-11,20],[-10,24],[4,34],[-6,32],[-11,14],[-8,28],[12,16],[11,10],[-3,35],[-10,20],[-11,16],[-5,34],[-5,31],[-8,30],[-1,35],[-8,28],[0,36],[5,36],[-10,21],[-9,22],[-8,29],[-11,17],[-12,6],[-12,-4],[-13,-7],[-12,-12],[-11,-12],[-10,-19],[-13,-12],[-11,11],[-12,22],[-16,-10],[-14,-3],[-11,15],[-12,7],[-13,-1],[-12,6],[-10,26],[-9,-21],[-13,-16],[-7,-33],[-13,0],[-14,-3],[-13,-14],[-9,-24],[-12,-17],[-11,-15],[-12,4],[-5,32],[4,39],[-12,13],[-7,-31],[-11,-15],[-4,-32],[-8,-28],[-11,9],[-12,5],[-7,-29],[5,-32],[9,-24],[-8,-26],[-12,-16],[-12,11],[-11,9],[-13,10],[-11,-8],[-9,-27],[-5,-32],[-3,-34],[-5,-33],[-12,-9],[-10,-24],[-11,-11],[-10,-24],[-12,-3],[-14,-8],[-13,-14],[-8,-27],[-9,-23],[-11,-16],[-1,-1],[-2,-34],[-12,-19],[-11,-12],[-12,13],[-13,-1],[-10,23],[-11,10],[-11,18],[-11,7],[-4,-32],[5,-33],[8,-26],[-1,-34],[-14,-1],[-12,11],[-12,5],[-11,14],[-12,14],[-12,12],[-12,6],[2,-36],[-6,-41],[-11,3],[-12,9],[-13,20],[-11,-7],[-12,3],[-9,27],[-11,-15],[-13,4],[-4,34],[-11,-12],[-9,21],[-12,8],[-10,20],[-9,24],[-8,23],[-11,16],[-11,16],[-6,31],[-11,6],[-12,-5],[-12,-16],[-10,19],[-12,-1],[-12,-4],[-10,20],[-9,25],[-10,23],[-7,32],[-9,23],[-11,18],[-11,17],[-8,27],[-12,1],[-11,15],[-11,13],[-11,-20],[-11,13],[-10,25],[-12,-2],[-9,22],[-12,9],[-13,2],[-9,28],[4,35],[-3,35],[10,15],[-8,26],[-12,19],[-12,16],[-7,30],[-5,33],[-18,47],[-16,42],[-12,8],[-12,11],[-12,18],[-10,23],[-10,22],[-6,30],[-8,24],[-13,4],[-13,6],[-11,7],[-12,4],[-11,-19],[-12,-15],[-11,-17],[-10,-19],[-12,0],[-13,0],[-12,-11],[-8,-25],[-11,-22],[-9,-22],[-10,-19],[-12,-13],[-12,2],[-12,8],[-13,8],[-11,13],[-12,14],[-11,12],[-12,9],[-13,11]],[[71679,39878],[-16,-5],[-39,-17],[-15,-7],[-13,8],[-18,8],[-34,16],[-23,12],[-69,34],[-43,21],[-13,7],[-15,8],[-50,23],[-87,-105],[-84,-29],[-52,-19],[-21,-7],[-14,-5],[-12,-5],[-29,15],[-21,14],[-16,2],[-46,24],[-23,12],[-16,1],[-51,-8],[-19,-2],[-27,-4],[-47,-6],[-52,-8],[-27,21],[-18,15],[-16,13],[-68,54],[-16,13],[-16,13],[-25,21],[-54,43],[-60,48],[-46,37],[-17,13],[-39,32],[-35,28],[-16,9],[-15,8],[-20,11],[-31,17],[-17,9],[-17,9],[-21,12],[-43,23],[-23,13],[-12,6],[-13,8],[-17,9],[-21,11],[-16,9],[-102,14],[-43,6],[-72,122],[-62,116],[-13,25]],[[65405,41288],[-19,20],[-27,-16],[-22,-2],[-34,-12],[-32,1],[-35,2],[-89,-92],[-26,-45],[-22,-47],[-27,-104],[-53,-131],[-17,-31],[-48,-86],[-133,-206],[-41,-76],[-89,-207],[-24,-44],[-39,-71],[-9,-32],[-8,-61],[-14,-187],[-10,-139],[-3,-44],[-13,-82],[-35,-159],[-33,-75],[-25,-37],[-27,-22]],[[64451,39303],[-26,-6],[-23,4],[-12,1],[-33,6],[-2,-1],[-17,-2],[-1,0],[-2,0],[-2,1],[-1,0],[-7,3],[-1,0],[-6,3],[-1,1],[-1,1],[-50,20],[-36,15],[-48,33],[-12,7],[-64,70],[-20,37],[-29,60],[-74,109],[-56,71],[-70,100],[-5,5],[-37,27],[-6,6],[-70,55],[-4,5],[-27,44],[-1,0],[-2,3],[-1,3],[-1,2],[-25,50],[-34,-32],[-17,-1],[-30,0],[-13,1],[-83,86],[-50,33],[-38,23],[-1,1],[-31,19],[-3,3],[-62,69],[-77,158],[-41,70],[-18,16],[-29,20],[-26,13],[-22,30],[-11,39],[-22,102],[-13,23],[-60,105],[-49,37],[-39,34],[-17,18],[-2,3],[-16,23],[-22,16],[-23,10],[-20,-4],[-55,-14],[-17,0],[-16,0],[-28,-16],[-29,-24],[-13,-2],[-43,-7],[-53,4],[-29,15],[-7,3],[-65,35],[-42,3],[-28,14],[-60,47],[-10,33],[-33,21],[-40,29],[-67,89],[-59,82],[-25,35],[-1,1],[-2,2],[-2,3],[-2,2],[-38,63],[-90,95],[-38,41],[-28,34],[-43,58],[-10,15],[-29,39],[-7,18],[-38,95],[-1,4],[-2,4],[0,2],[-56,174],[-20,60],[-59,305],[-3,19],[-46,255],[-1,5],[-1,6],[0,5],[-6,63],[-33,152],[-10,29],[2,54],[-17,24],[-27,15],[-17,-6]],[[66553,46626],[-18,-85],[-6,-25],[-33,-156],[-35,-162],[-8,-36],[-27,-125],[-28,-132],[-33,-153],[-17,-76],[-13,-64],[-16,-73],[-13,-59],[-10,-47],[-40,-175],[-17,-71],[-32,-140],[-17,-76],[-18,-78],[-37,-160],[-13,-59],[-13,-56],[-27,-121],[-43,-186],[-24,-109],[-10,-42],[-19,-85],[-23,-100],[-9,-35],[-40,-167],[-8,-31],[-42,-181],[-10,-45],[-40,-174],[-29,-123],[-12,-53],[-18,-76],[-16,-68],[-12,-55],[0,-1],[-41,-173],[0,-1],[-16,-72],[-1,-1],[-29,-126],[-15,-66],[-9,-35],[-83,-328],[-26,-105],[-7,-28],[-34,-232],[-14,-119],[-6,-48],[-8,-68],[-12,-94],[-4,-39],[-1,-9],[-4,-31],[-4,-38],[-4,-27],[0,-6],[-4,-32]],[[82104,40606],[2,-42],[-4,-50],[5,-41],[2,-35],[5,-89],[10,-27],[-5,-32],[-3,-32],[-3,-55],[8,-31],[2,-52],[-13,-39],[-6,-35],[8,-25],[2,-39],[11,-27],[12,-27],[3,-47],[6,-37],[8,-34],[12,-13],[15,-40],[22,-41],[5,-50],[-2,-37],[3,-38],[15,-15],[16,-40],[11,-33],[-3,-54],[7,-30],[12,-35],[9,-36],[11,-25],[9,-36],[12,-17],[9,-34],[12,-15],[18,6],[26,41],[1,35],[24,65],[11,-13],[5,-35],[-2,-43],[-10,-45],[-11,-54],[1,-36],[0,-23],[1,-25],[0,-5],[-2,-41],[-5,-40],[0,-4],[-3,-35],[0,-3],[2,-31],[-6,-49],[-1,-7],[-1,-45],[-2,-40],[22,-19],[15,4],[11,-26],[13,-8],[10,-41],[-4,-44],[-6,-47],[-2,-37],[16,-44],[3,-44],[4,-25],[4,-19],[-4,-36],[14,-26],[13,-40],[3,-8],[8,-27],[11,-44],[-8,-27],[-1,-53],[12,0],[11,-14],[12,0],[14,-13],[12,-25],[10,-21],[16,4],[13,-24],[15,-33],[8,-28],[13,-26],[6,-53],[-2,-35],[-4,-31],[6,-29],[0,-39],[-4,-37],[0,-38],[15,-39],[5,-34],[12,-19],[10,-24],[16,-5],[13,8],[11,-19],[25,-20],[10,-36],[9,-22],[2,-37],[-9,-26],[6,-33],[-7,-32],[5,-44],[4,-32],[-4,-33],[1,-42],[13,-22],[10,-33],[4,-34],[14,-3],[15,-14],[4,-53],[14,20],[10,-28],[11,-28],[9,-30],[14,-54],[-3,-39],[20,-31],[11,-51],[10,-39],[12,-15],[15,-5],[17,-17],[18,-33],[19,-13],[11,-16],[14,-6],[10,17],[6,-35],[10,-28],[10,-40],[14,-12],[13,1],[10,-3],[3,-1],[9,-38],[3,-37],[15,-3],[16,-24],[14,2],[0,-8],[2,-27],[0,-34],[9,-42],[13,-11],[15,-22],[21,-8],[14,-7],[11,-16],[15,-14]],[[83254,36318],[-4,-54],[-4,-46],[-1,-7],[-4,-50],[-4,-49],[-8,-73],[-18,-232],[-7,-88],[-5,-73],[-12,-160],[-9,-123],[-5,-55],[-2,-43],[-5,-97],[-3,-94],[-16,-33],[3,-38],[8,-43],[3,-45],[5,-44],[3,-34],[-3,-43],[-1,-24],[-18,-227],[-6,-68],[-14,-182],[-11,-138],[-7,-36],[-6,-39],[-5,-42],[-3,-40],[8,-34],[4,-36],[-4,-39],[-7,-49],[-12,-24],[-11,-27],[6,-44],[3,-55],[-1,-40],[4,-48],[10,-27],[0,-37],[-2,-51],[11,-28],[9,-32],[8,-40],[11,-39],[10,-26],[14,-26],[7,-59],[11,-18],[12,-33],[4,-33],[13,-30],[13,-41],[1,-46],[12,-37],[16,-74],[9,-38],[8,-29],[9,-37],[7,-29],[0,-2],[9,-39],[-1,-40],[24,-39],[16,-21],[-2,-40],[-9,-21],[12,-11],[-9,-24],[13,-2],[1,-35],[-6,-30],[2,-51],[13,-34],[-9,-45],[-13,-10],[21,-15],[14,-9],[-1,-14],[-1,-23],[-3,-38],[-3,-35],[-6,-67],[-14,-39],[-15,-15],[-10,36],[6,35],[-12,-8],[-11,-23],[2,-60],[13,-36],[13,-22],[-11,-30],[-21,6],[4,-39],[6,-40],[-3,-40],[-10,-22],[-12,9],[-13,36],[-15,1],[18,-78],[-3,-36],[-6,-31],[-7,-38],[-12,-23],[-12,-31],[-10,-30],[-11,-45],[-7,-29],[-16,-28],[-12,-18],[-7,-39],[5,-41],[6,-34],[-1,-35],[-11,-15],[-16,-11],[-23,-31],[-12,-23],[-13,-11],[-11,16],[-11,84],[-5,47],[-20,44],[-11,9],[-13,-4],[-17,-34],[-19,-37],[-11,-20],[-22,-38],[-25,-58],[-20,-40],[-15,-34],[-7,-32],[-3,-49],[0,-47],[-6,-43],[-21,-29],[-23,-4],[-14,0],[-21,24],[-12,15],[-36,49],[-23,28],[-19,-1],[-18,-15],[-19,-35],[-1,-2]],[[82664,31063],[-24,-55],[-1,-20],[0,-1],[-2,-69],[-5,-13],[-14,-43],[-40,28],[-29,70],[-36,119],[-24,75],[-12,65],[-30,102],[-11,112],[-16,101],[-12,67],[-2,57],[-2,35],[-14,60],[-21,76],[-9,62],[-11,65],[0,65],[-20,4],[-19,112],[-12,56],[-17,75],[-22,69],[-38,103],[-38,80],[-28,-12],[-11,91],[-27,14],[-18,76],[-32,25],[-31,26],[-37,67],[-35,54],[15,74],[-26,95],[-30,35],[-24,29],[-35,63],[-36,-2],[-30,14],[-20,18],[-19,91],[3,89],[3,227],[3,105],[-28,107],[-13,83],[-22,67],[-4,80],[-1,28],[50,101],[33,112],[19,100],[17,99],[24,74],[-2,12],[-11,87],[-11,96],[-2,13],[-15,53],[-18,29],[-15,93],[-16,105],[-19,75],[-23,57],[-30,51],[-37,40],[-39,2],[-39,-11],[-18,69],[18,67],[33,58],[6,85],[8,122],[2,60],[-5,71],[-25,42],[-5,8],[-3,5]],[[81577,35839],[-14,28],[-3,5],[-14,25],[-27,15],[-14,-3],[-30,-6],[-15,-10],[-17,-12],[-12,-8],[-15,-10],[-20,-14],[-17,-8],[-12,-4],[-22,1],[-5,3],[-7,4],[-24,15],[-12,8],[-11,13],[-15,17],[-23,30],[-10,21],[-10,21],[-13,34],[-3,39],[3,41],[4,39],[12,30],[2,5],[2,7],[9,22],[0,1],[2,1],[7,8],[9,11],[18,3],[14,4],[21,8],[4,4],[12,14],[11,25],[1,7],[5,19],[3,14],[2,8],[-4,23],[-1,4],[-5,30],[-13,25],[-37,17],[0,1],[-2,-1],[-11,-2],[-19,-4],[-13,-4],[-16,-3],[-18,-2],[-17,-1],[-16,0],[-15,9],[-16,13],[-13,18],[-14,25],[-11,32],[-9,33],[-8,48],[-3,35],[-1,2],[-3,40],[-4,45],[0,5],[-4,29],[-2,12],[-6,21],[-9,16],[-8,15],[-5,4],[-12,10],[-15,-5],[-8,-3],[-5,-4],[-12,-12],[-14,-18],[-12,-21],[-16,-35],[-9,-10],[-3,-4],[-8,-9],[-20,-13],[-12,-8],[-24,10],[-26,32],[-16,17],[-15,13],[-26,15],[-15,4],[-13,4],[-16,12],[-14,10],[-13,17],[-9,14],[-2,2],[-1,5],[-17,56],[-7,32],[-3,41],[0,5],[1,6],[8,48],[10,17],[2,4],[4,4],[12,12],[21,11],[9,5],[13,6],[11,12],[16,15],[15,18],[14,17],[14,18],[2,6],[8,22],[9,37],[4,20],[2,7],[1,4],[4,29],[1,3],[6,58],[0,8],[-2,31],[-5,37],[-5,35],[-9,35],[-8,26],[-10,26],[-1,0],[-19,33],[-9,14],[-2,2],[-11,19],[-11,20],[-4,7],[-2,5],[-5,8],[-13,24],[-17,47],[-14,46],[-13,42],[-20,58],[-11,33],[-4,8],[-14,36],[-11,21],[-20,49],[-11,28],[-10,26],[-8,33],[-9,27],[-5,14],[-11,17],[-12,14],[-18,14],[-5,1],[-21,7],[-18,-3],[-20,-4],[-13,-7],[-18,-10],[-20,-14],[-1,-1],[-50,-40],[-7,-5],[-5,-4],[-5,-3],[-3,-2],[-5,-4],[-12,-8],[-13,-6],[-29,-12],[-16,5],[-16,4],[-27,10],[-12,12],[-12,13],[-17,24],[-14,20],[-13,38],[0,42],[8,38],[8,32],[7,31],[1,3],[1,2],[5,23],[5,19],[6,25],[5,20],[7,28],[3,15],[7,31],[19,88],[3,13],[4,20],[-2,36],[-1,38],[-11,45],[-19,59],[-12,40],[-24,41],[-7,30],[-8,53],[-6,40],[-11,40],[-14,49],[-5,37],[0,85],[4,44],[-3,42],[3,56],[2,52],[-4,39],[-10,23],[-18,0],[-18,-12],[-12,-11],[-22,-34],[-18,-42],[-10,-24],[-29,-42],[-32,-14],[-70,-29],[-42,-3],[-21,-1],[-15,-1],[-36,-15],[-26,-12],[-55,-7],[-46,-1],[-13,5],[-14,6],[-17,4],[-34,5],[-14,10],[-4,3],[-12,11],[-17,15],[-12,19],[-14,31],[-8,33],[-6,33],[-1,26],[-1,16],[1,39],[4,37],[0,51],[-1,46],[-8,97],[-17,117],[-20,69],[-14,23],[-14,-2],[-12,-13],[-34,-46],[-26,-21],[-41,-5],[-36,12],[-15,12],[-12,14],[-23,12],[-32,-6],[-17,3],[-16,15],[-13,15],[-11,14],[-20,40],[-2,7],[-15,44],[-18,52],[-19,45],[-16,55],[-6,37],[-5,57],[-4,52],[-4,37],[-7,31],[-14,20],[-21,10],[-15,-5],[-15,-11],[-22,-4],[-23,0],[-21,7],[-16,10],[-27,14],[-14,-6],[-16,-9],[-28,-31],[-15,-13],[-15,-12],[-15,-8],[-17,5],[-9,25],[1,40],[2,37],[-7,41],[-17,36],[-11,20],[-11,23],[-11,24],[-10,31],[-19,37],[-24,43],[-20,30],[-15,28],[-16,43],[-15,74],[-11,49],[-12,57],[-10,55],[-3,51],[-8,55],[-10,17],[-12,4],[-13,8],[-11,20],[-1,42],[0,48],[-14,39],[-13,8],[-73,-4],[-18,8],[-8,3],[-14,-2],[-2,-3],[-9,-14],[-35,4],[-3,1],[-13,-8],[-7,-8],[-11,-15],[-23,-29],[-4,-5],[-4,-5],[-20,-20],[-1,0],[-13,8],[0,2],[-10,24],[-4,10],[-64,188],[-7,28],[-2,23],[6,11],[9,14],[3,4],[8,14],[2,2],[9,26],[1,3],[21,115],[3,7],[13,19],[12,22],[8,32],[8,52],[13,37],[9,-23],[12,-22],[13,2],[11,31],[11,45],[8,35],[-15,38],[1,35],[8,35],[14,58],[-3,35],[-5,32],[-18,72],[-5,33],[-12,14],[-14,-12],[-15,-12],[-12,5],[-1,34],[5,36],[-5,37],[-13,19],[-13,8],[-21,-6],[-21,-15],[-11,20],[-10,38],[-15,-10],[-18,-26],[-20,2],[-12,4],[-15,24],[-5,49],[-14,13],[-9,-26],[-14,-14],[-7,36],[2,44],[-12,11],[-26,5],[-13,23],[-2,15],[-3,23],[3,65],[-5,32],[-21,46],[-8,41],[-4,62],[1,39],[1,44],[1,34],[4,46],[8,29],[11,22],[23,26],[12,-4],[12,-16],[19,-12],[22,6],[19,10],[37,43],[-8,34],[-2,35],[0,48],[0,60],[-7,29],[9,46],[-13,11],[-14,5],[-23,23],[0,38],[-11,27],[-13,15],[-16,-11],[-13,-34],[-14,3],[-17,10],[-3,-38],[-6,-33],[-13,-5],[-13,24],[-12,7],[-11,-19],[-3,-37],[-7,-33],[-18,-49],[-11,-38],[-10,-29],[-13,-12],[-4,33],[-21,28],[14,15],[-10,16],[-12,23],[-13,-28],[-15,-6],[-12,15],[2,34],[12,18],[10,25],[11,35],[9,42],[7,28],[5,38],[-4,50],[-13,17],[-11,15],[-8,27],[-8,60],[11,17],[-9,41],[-11,35],[-14,19],[6,37],[-11,11],[-11,18],[-1,2],[-6,8],[-10,12],[-13,13],[-11,27],[6,40],[14,29],[5,15],[10,31],[11,45],[10,38],[-4,39],[6,36],[-9,23],[13,32],[-4,46],[-4,32],[-10,29],[-10,22],[-14,1],[-22,1],[-12,13],[-36,42],[2,38],[-13,10],[-8,29],[8,37],[6,34],[1,40],[-6,29],[-13,0],[-13,6],[-9,32],[-11,25],[-22,31],[-12,24],[-18,44],[-7,38],[-9,57],[-3,45],[14,31],[3,40],[3,44],[2,35],[17,31],[18,4],[6,-30],[11,20],[0,37],[8,24],[15,24],[2,37],[-10,42],[-12,1],[-14,0],[-13,33],[-17,-2],[-11,-18],[-13,-5],[-20,-11],[-28,-18],[-16,-28],[-13,-9],[-2,33],[-8,32],[-16,-9],[-11,42],[-10,25],[-9,28],[-12,0],[-20,24],[-11,-29],[-12,-15],[-13,-5],[-10,-24],[-21,-63],[-12,-6],[-15,2],[-14,15],[-13,28],[-3,45],[7,73],[6,44],[11,42],[11,16],[11,11],[15,7],[12,-3],[35,-20],[20,3],[13,11],[16,23],[16,37],[13,48],[5,31],[3,60],[0,36],[-11,62],[-12,-1],[-21,4],[-15,27],[-11,-30],[4,-34],[-12,-13],[-15,11],[-23,22],[-13,15],[-22,20],[-19,4],[-14,21],[-10,35],[-4,65],[14,35],[11,19],[6,37],[6,34],[-2,45],[-11,14],[-17,7],[-6,30],[-11,20],[-12,30],[8,26],[-12,7],[-16,2],[-4,33],[-1,35],[-12,-9],[-6,-37],[-3,-34],[-10,21],[-17,-10],[5,-36],[0,-49],[6,-34],[-11,-15],[-7,47],[-14,2],[-21,-10],[0,-46],[-30,13],[5,-32],[8,-39],[-12,14],[-12,0],[-11,24],[-2,38]],[[47444,41784],[-134,101],[-51,39],[-83,63],[-57,43],[-13,11],[-60,45],[-223,170],[-34,26],[-60,46],[-2,1],[-12,9],[-39,31],[-21,15],[-99,76],[-1,0],[-10,15],[-66,49],[-31,23],[-24,18],[-40,32],[-12,9],[-73,57],[-2,1],[-12,9],[-17,13],[-39,30],[-23,18],[-38,30],[-18,14],[-16,11],[-12,10],[-3,2],[-15,12],[-18,13],[-42,32],[-5,4],[-12,9],[-16,12],[-41,31],[-28,21],[-47,36],[-46,36],[-98,74],[-46,-107],[-22,-41],[-17,-32],[-11,-22],[-43,-98],[-22,-55],[-19,-36],[-22,-16],[-67,-111],[-24,-40],[-10,-21],[-10,-26],[-26,-33],[8,-38],[2,-57],[13,-37],[0,-41],[-8,-46],[-7,-51],[-10,-20],[-7,-32],[-10,-41],[-13,-37],[-11,-37],[4,-39],[-5,-32],[-9,-23],[-11,-59],[-11,-38],[-20,-43],[-11,-42],[-11,-34],[-17,-44],[-15,-34],[-14,-37],[-13,-37],[-8,-26],[-11,-16],[-5,-34],[-12,-26],[-10,-40],[-11,-30],[-11,-30],[-14,-49],[-91,-175],[-15,-19],[-14,-13],[-25,-36],[-34,-33],[-19,-12],[-23,-16],[-14,-20],[-26,-15],[-15,-24],[-23,-80],[-11,-58],[-14,-34],[-12,-49],[-15,-48],[-25,-52],[-11,-31],[-4,-60],[-8,-49],[-8,-32],[-21,-30],[-11,-34],[-8,-42],[-5,-46],[-9,-35],[-18,-25],[-10,-44],[-7,-52],[-10,-61],[-6,-30],[-6,-40],[-17,-68],[-5,-32],[-15,-17],[-6,-34],[-6,-46],[-9,-44],[-12,-35],[-11,-30],[-21,-13],[-15,-23],[-15,-54],[-9,-29],[-19,-24],[-21,3],[-29,-2],[-24,-2],[-24,-6],[-16,-6],[-19,1],[-31,22],[-22,17],[-21,17],[-9,-25],[-14,-34],[-20,-50],[-16,-51],[-12,-14],[-12,-19],[-10,-36],[-11,-33],[-12,-47],[-6,-42],[-9,-38],[-21,-62],[-34,-68],[-40,-58],[-34,-57],[-27,-34],[-28,-29],[-24,-49],[-18,-42],[-22,-41],[-21,-42],[-20,-51],[-24,-44],[-34,-38],[-16,-39],[-18,-59],[-18,-37],[-25,-2],[-19,-32],[-34,-78],[-37,-79],[-32,-63],[-23,-1],[-26,-13],[-18,-17],[-15,-13],[-14,-20],[-12,-19],[-24,-41],[-9,-27],[-13,-21],[-17,-32],[-18,-38],[-26,-47],[-13,-36],[-29,-43]],[[43335,37832],[-74,222],[-53,162],[-18,55],[-28,-56],[-12,-23],[-15,-38],[-14,-41],[-16,-47],[-14,-40],[-23,-47],[-27,-52],[-33,-52],[-30,-50],[-27,-30],[-43,-40],[-18,-25],[-10,-16],[-11,-38],[-34,-41],[-36,-45],[-18,-11],[-18,-10],[-8,-41],[2,-57],[-8,-28],[-18,-28],[-19,-37],[-13,-18],[-12,-26],[-11,-25],[-29,-31],[-32,-24],[-31,-25],[-15,-40],[-10,-33],[-18,-34],[-42,-13],[-22,-15],[-25,-25],[-40,-46],[-18,3],[-25,-25],[-23,-11],[-16,-12],[-18,-50],[-10,-26],[-13,-44],[-14,-25],[-13,-39],[-18,-30],[-13,-21],[-17,-33],[-11,-32],[-24,-49],[-29,-69],[-33,-98],[-19,-17],[-50,-42],[-24,-38],[-12,-26],[-16,-30],[-19,-22],[-24,-4],[-11,-31],[-12,-30],[-13,-13],[-14,-21],[-10,-23],[-10,-22],[-7,-30],[-10,-18],[-14,-7],[-14,6],[-45,103],[-29,28],[-30,33],[-66,77],[-11,20],[-20,40],[-10,27],[-14,27],[-12,16],[-9,22],[-3,37],[5,35],[1,49],[-6,32],[-11,28],[1,36],[-3,36],[-16,23],[-12,-3],[-13,-9],[-15,3],[-13,22],[-11,15],[-9,-21],[-8,-30],[-13,-14],[-12,-9],[-20,-20],[-13,-17],[-12,10],[-14,26],[-11,18],[-29,0],[-97,11],[-8,1],[-4,0],[-33,7],[-25,5],[-42,14],[-4,1],[-18,38],[-17,36],[-78,166],[-17,38],[-41,86],[-14,22]],[[40957,37159],[-171,319],[-43,73],[-139,239],[-103,238],[-221,509],[-213,811],[26,74],[98,128],[60,168],[47,100],[55,205],[48,76],[12,76],[35,108],[69,50],[70,227],[4,78],[-68,89],[-40,78],[-2,77],[-19,57],[11,85],[33,185],[-3,40],[-6,62],[-1,17],[5,31],[12,82],[9,35],[1,42],[6,35],[65,-15],[22,43],[-14,78],[8,94],[-12,28],[11,97],[34,96],[12,-26],[26,-23],[34,30],[7,150],[29,13],[34,35],[42,60],[6,36],[20,63],[20,8],[12,4],[29,-66],[25,34],[16,7],[48,-55],[18,60],[-7,31],[6,83],[-11,20],[-29,40],[-12,-7],[-11,-32],[-13,-15],[-16,23],[-13,73],[16,45],[-2,44],[-11,11],[-18,21],[-14,81],[-24,54],[-6,49],[4,39],[25,145],[21,53],[12,69],[72,252],[15,-11],[71,106],[53,115],[8,101],[35,182],[64,165],[46,129],[11,69],[30,-1],[19,42],[39,70],[41,8],[28,59],[-11,35],[-15,100],[-23,95],[6,71],[11,115],[14,22],[50,-5],[6,86],[26,45],[24,69],[0,121],[14,68],[22,102],[41,48],[0,47],[21,106],[13,21],[5,52],[56,113],[44,116],[40,46],[13,83],[20,14],[24,-64],[28,3],[16,-55],[15,45],[29,74],[33,44],[10,31],[31,41],[15,86],[32,83],[48,113],[32,-26],[33,8],[12,44],[-2,78],[-15,26],[1,77],[13,9],[18,89],[29,20],[27,112],[22,25],[25,35],[8,83],[14,35],[22,19],[8,67],[19,26],[26,-22],[37,1],[15,90],[35,85],[2,50],[9,66],[25,31],[24,59],[7,72],[12,12],[9,38],[44,83],[15,50],[29,43],[26,87],[4,36],[54,70],[6,41],[31,59],[40,28],[8,38],[23,42],[16,11],[42,57]],[[43660,43373],[-13,-32],[-15,-35],[-12,-11],[-16,-14],[-18,-36],[3,-37],[14,-34],[13,-25],[25,-38],[2,-4],[15,-19],[14,-46],[0,-2],[-1,-6],[-3,-35],[-4,-34],[-3,-19],[-13,-33],[-1,-3],[-12,-26],[-12,-21],[-1,-3],[-14,-23],[-3,-6],[-14,-25],[-14,-24],[-1,-2],[0,-1],[-13,-49],[-1,-1],[1,-36],[0,-1],[2,-14],[4,-23],[6,-33],[1,-4],[4,-15],[1,-1],[6,-21],[10,-43],[10,-35],[10,-34],[1,-6],[6,-29],[-14,-32],[-16,-30],[7,-126],[-5,-32],[-2,-13],[-5,-33],[-9,-48],[0,-41],[-5,-32],[-17,-63],[-17,-33],[-9,-85],[-13,-3],[-22,-6],[-13,-16],[-8,-46],[-1,-2],[-4,-33],[0,-1],[1,-5],[3,-26],[0,-3],[1,-2],[4,-17],[3,-10],[12,-20],[10,-18],[23,-60],[11,-37],[22,-71],[0,-1],[18,-34],[5,-3],[7,-4],[16,-6],[0,-4],[5,-37],[2,-1],[10,-7],[0,-1],[20,-50],[22,-64],[51,46],[21,18],[26,24],[12,12],[30,50],[21,41],[23,17],[27,21],[98,74],[-13,58],[-9,1],[-9,0],[-43,38],[-4,17],[-5,21],[-13,59],[-9,45],[-9,17],[-8,17],[-15,10],[7,48],[2,19],[30,218],[-10,86],[0,4],[-5,36],[-6,19],[-4,11],[-16,50],[-8,25],[-13,20],[24,59],[12,45],[20,-17],[11,19],[9,58],[-2,49],[-5,40],[41,42],[51,95],[5,270],[-17,103],[-45,-12],[-147,-26],[-2,84],[-1,36],[-1,38],[-5,140],[-9,50],[-1,1],[-18,32],[-12,-20],[-6,-30],[-9,-26],[-13,-16],[-18,-17],[-1,-1],[-2,-3],[-14,-20]],[[81577,35839],[2,-40],[2,-35],[1,-24],[-9,-79],[-3,-28],[-28,-83],[-12,-39],[-6,-21],[-13,-61],[0,-2],[-6,-96],[9,-109],[20,-21],[18,-46],[22,-45],[3,1],[35,12],[24,9],[12,8],[11,8],[13,-15],[16,-18],[16,-99],[8,-74],[6,-67],[-6,-76],[27,-68],[4,-72],[1,-17],[4,-14],[12,-41],[9,-77],[3,-30],[-7,-70],[-31,-40],[-22,-31],[-16,-27],[-8,-15],[-27,-69],[-21,-56],[-18,-50],[-1,-3],[-27,-73],[14,-127],[2,-80],[12,-90],[-35,-48],[-40,23],[-22,73],[-27,83],[-26,108],[-1,3],[-16,48],[-23,146],[-13,76],[-30,118],[-22,69],[-25,53],[-25,62],[-20,42],[-35,22],[-27,-6],[-37,-30],[-28,-71],[-26,-42],[-9,-77],[-3,-114],[-35,-3],[0,-1],[-6,-126],[-27,-68],[-26,-26],[-6,-18],[-9,-30],[-31,-14],[-7,-62],[-34,-46],[-3,-17],[-6,-35],[-23,-26],[-2,-12],[-5,-36],[-16,-42],[-45,-53],[-34,-53],[-33,16],[-34,45],[-18,58],[-31,16],[-37,39],[-37,44],[0,46],[0,48],[14,79],[22,61],[41,79],[31,-8],[16,98],[15,49],[7,21],[27,35],[2,2],[0,6],[-2,105],[13,104],[21,84],[17,100],[14,113],[15,108],[12,111],[10,119],[1,75],[-6,79],[-11,65],[-13,82],[-33,40],[-27,26],[-22,51],[-38,-12],[-44,14],[-29,-12],[-24,-21],[-24,-16],[-30,-34],[-29,-40],[-25,-45],[-28,-10],[7,-89],[-1,-90],[4,-87],[3,-45],[7,-86],[1,-5],[3,-15],[12,-64],[14,-84],[4,-6],[18,-34],[16,-46],[5,-15],[4,-41],[4,-44],[-21,-47],[-15,-34],[-46,-42],[-37,-33],[-11,-15],[-14,-18],[-13,-17],[-8,-11],[-28,-46],[-23,-34],[-27,-18],[-35,18],[-31,45],[-23,57],[1,16],[8,94],[19,87],[13,68],[18,67],[-12,91],[-1,52],[0,12],[4,-3],[19,-16],[1,-1],[0,2],[-16,67],[-29,72],[-41,54],[-19,29],[-28,58],[-29,-47],[-35,17],[-36,2],[-22,-4],[-25,-15],[-43,-38],[-57,-68],[-31,-36],[-25,-30],[-25,-28],[-23,-35],[-30,-65],[-26,-49],[-13,-47],[-1,-5],[-8,-42],[-1,-6],[-1,-25],[-1,-68],[-2,-98],[-3,-78],[-1,-45],[-4,-56],[-1,-37],[-1,-83],[-4,-63],[0,-20],[2,-55],[1,-67],[-31,1],[-25,21],[-10,13],[-31,41],[-30,28],[-32,25],[-33,17],[-40,19],[-31,10],[-29,1],[-30,15],[-7,41],[-5,27],[12,46],[4,16],[24,22],[7,6],[23,21],[10,1],[13,1],[30,16],[2,-2],[20,-16],[36,67],[32,31],[16,49],[13,39],[24,83],[9,33],[-2,30],[-6,71],[-2,12],[-8,45],[8,61],[-13,61],[-5,83],[-11,102],[-5,69],[-10,67],[-27,40],[-17,68],[-17,97],[-23,97]],[[79584,35626],[-21,71],[-16,29],[-22,13],[-23,4],[-26,-2],[-45,-16],[-13,-10],[-20,-15],[-24,-20],[-12,-7],[-14,-2],[-19,-12],[-14,-18],[-17,-21],[-19,-20],[-14,-11],[-17,-13],[-14,-32],[-10,-43],[4,-43],[25,-45],[19,-14],[20,-18],[23,-19],[17,-9],[13,-13],[14,-20],[10,-27],[11,-63],[2,-43],[-2,-42],[-4,-59],[-9,-32],[-13,-23],[-12,-13],[-22,-11],[-13,-5],[-16,-6],[-14,3],[-13,4],[-21,1],[-14,-13],[-16,-34],[-16,-31],[-17,-14],[-15,-6],[-14,-2],[-12,7],[-18,9],[-14,10],[-15,14],[-15,10],[-61,26],[-13,10],[-21,21],[-22,25],[-15,23],[-20,37],[-12,26],[-16,44],[-17,40],[-23,60],[-12,46],[-1,47],[4,33],[20,55],[30,71],[2,5],[19,54],[7,27],[1,7],[-1,35],[-10,17],[0,1],[-16,3],[-14,-3],[-13,-3],[-19,-3],[-16,2],[-18,13],[-41,60],[-20,-2],[-21,-18],[-15,3],[-9,13],[-6,7],[-27,39],[-23,70],[-10,36],[-6,21],[-4,13],[-36,102],[-21,45],[-12,18],[-20,32],[-20,32],[-27,34],[-15,6],[-16,9],[-39,43],[-18,20],[-12,16],[-14,21],[-20,32],[-16,21],[-15,-9],[-6,-23],[-3,-9],[-4,-53],[-1,-59],[-4,-34],[-13,-36],[-15,-18],[-5,-2],[-14,-6],[-20,-9],[-21,-7],[-13,4],[-16,9],[-16,18],[-10,13],[-22,29],[-9,24],[-11,37],[-21,47],[-13,27],[-11,17],[-11,30],[-8,30],[-1,8],[-4,37],[-7,84],[3,45],[3,37],[13,103],[5,40],[6,48],[2,45],[-6,32],[-13,1],[-9,-16],[-3,-5],[-18,-32],[-19,-9],[-17,3],[-15,16],[-10,18],[-20,51],[-11,33],[-10,33],[-10,29],[-29,55],[-11,13],[-13,12],[-29,3],[-15,-4],[-20,-20],[-14,-2],[-39,2],[-22,17],[-12,13],[-14,26],[-13,18],[-13,29]],[[71679,39878],[-89,-705],[-19,45],[-20,26],[-21,-13],[0,-82],[0,-45],[2,-136],[-9,-45],[18,-24],[11,-21],[-6,-52],[-32,-250],[0,-10],[-1,-31],[-15,-107],[-9,-25],[-15,-42],[-3,-13],[-4,-22],[-7,-31],[-6,-32],[-4,-32],[0,-37],[-6,-34],[2,-38],[-8,-31],[3,-35],[0,-34],[3,-34],[4,-35],[6,-31],[-6,-30],[-5,-32],[-12,-16],[1,34],[-11,-15],[5,-32],[-8,-27],[-10,-20],[1,-35],[-5,-32],[-7,-30],[0,-2],[-3,-34],[-5,-32],[6,-31],[-6,-35],[-2,-42],[10,-23],[7,-29],[8,-33],[2,-34],[7,-29],[3,-36],[-2,-38],[6,-31],[6,-38],[1,-42],[1,-37],[1,-45],[-2,-39],[1,-36],[-6,-29],[-7,-34],[-2,-36],[0,-36],[0,-34],[-2,-35],[3,-33],[13,-27],[13,-22],[12,-22],[13,-17],[12,-15],[13,4],[14,1],[14,-6],[8,-43],[7,-35],[0,-35],[5,-34],[8,-26],[-4,-34],[-7,-31],[1,-35],[3,-34],[6,-39],[7,-33],[16,-14],[12,1],[12,-7],[13,-17],[11,9],[12,4],[9,-28],[11,-13],[12,-8],[12,-7],[12,-8],[11,-10],[11,-16],[11,-18],[3,-28],[0,-5],[1,-36],[-10,-20],[-10,-21],[-8,-34],[7,-31],[6,-31],[5,-36],[11,-19],[10,-19],[10,-26],[11,2],[16,0],[12,-2],[12,-7],[12,-11],[11,-28],[-5,-32],[-1,-37],[-3,-35],[-1,-35],[3,-35],[4,-46],[2,-36],[11,-24],[4,-35],[4,-35],[-6,-31],[-12,-8],[-15,2],[-12,-9],[-16,-3],[-12,-12],[-11,-15],[-12,-10],[-13,1],[-12,2],[-12,29],[-16,5],[-12,-1],[-11,-19],[-10,-17],[-12,-27],[-6,-29],[-10,-19],[-8,-27],[-7,-35],[-5,-40],[-2,-34],[-2,-33],[-1,-3],[11,-23],[13,-26],[-5,-38],[-13,0],[-14,0],[-11,21],[-13,3],[-12,-11],[-13,9],[-12,5],[-12,-11],[-13,-7],[-13,2],[-13,0],[-12,2],[-13,-3],[-12,-7],[-13,-9],[-13,-9],[-12,-4],[-10,-21],[-9,-21],[4,-54]],[[71397,34932],[-10,30],[-1,2],[-8,25],[-11,20],[-10,19],[-22,33],[-23,32],[-22,30],[-18,20],[-25,30],[-28,41],[-14,21],[-20,30],[-28,40],[-24,31],[-29,39],[-12,14],[-1,1],[-23,28],[-22,30],[-16,33],[-11,20],[-15,32],[-13,25],[-18,31],[-22,32],[-25,32],[-25,31],[-15,20],[-38,45],[-13,18],[-16,24],[-17,28],[-19,20],[-16,2],[-18,-2],[-18,-9],[-28,-20],[-13,-8],[-28,-10],[-18,-6],[-31,-7],[-14,2],[-16,1],[-14,5],[-16,6],[-14,9],[-26,14],[-23,19],[-21,23],[-14,18],[-24,40],[-13,25],[-13,29],[-12,27],[-15,29],[-12,19],[-11,16],[-12,20],[-12,21],[-11,23],[-18,31],[-34,68],[-14,34],[-16,38],[-17,51],[-9,31],[-9,32],[-8,27],[-8,34],[-9,29],[-10,26],[-11,27],[-10,21],[-12,13],[-16,16],[-16,15],[-14,10],[-12,8],[-14,8],[-20,5],[-20,-2],[-44,-1],[-15,1],[-21,4],[-17,3],[-22,1],[-24,-4],[-20,-5],[-23,-4],[-20,3],[-14,4],[-18,1],[-19,-5],[-15,-3],[-14,-7],[-13,-9],[-31,-16],[-21,-23],[-21,-40],[-10,-23],[-18,-27],[-30,-37],[-14,-10],[-15,-3],[-24,-1],[-12,1],[-14,-9],[-13,-10],[-14,10],[-11,17],[-13,13],[-24,26],[-11,15],[-11,17],[-13,20],[-12,28],[-11,37],[-10,52],[-4,38],[1,47],[5,35],[8,46],[7,39],[8,34],[4,37],[-1,48],[-3,38],[-4,34],[-8,29],[-10,27],[-12,32],[-9,27],[-11,44],[-12,39],[-7,28],[-11,34],[-10,27],[-11,26],[-10,19],[-15,32],[-14,24],[-11,20],[-10,21],[-13,13],[-18,21],[-13,17],[-12,15],[-15,22],[-11,17],[-17,25],[-14,-3],[-16,-4],[-18,12],[-22,17],[-27,25],[-19,23],[-27,30],[-36,52],[-14,23],[-12,22],[-19,40],[-11,24],[-28,56],[-11,26],[-22,56],[-9,24],[-16,49],[-19,48],[-13,30],[-12,20],[-11,17],[-15,23],[-15,21],[-20,28],[-19,21],[-12,17],[-23,28],[-13,17],[-17,21],[-17,22],[-7,7],[-8,8],[-18,26],[-14,25],[-12,19],[-18,32],[-16,30],[-13,26],[-10,27],[-11,28],[-11,37],[-9,37],[-7,30],[-4,37],[-5,33],[-12,48],[-7,34],[-7,37],[-10,50],[-10,47],[-5,32],[-5,31],[-5,33],[-7,48],[-5,43],[-9,39],[-12,29],[-11,16],[-12,12],[-14,15],[-18,13],[-30,11],[-13,1],[-21,-4],[-23,-7],[-15,-10],[-15,-17],[-13,-18],[-17,-29],[-23,-34],[-16,-29],[-25,-38],[-11,-15],[-15,-20],[-15,-20],[-18,-22],[-16,-25],[-12,-17],[-13,-20],[-12,-20],[-17,-32],[-13,-27],[-12,-31],[-12,-41],[-8,-27],[-7,-31],[-8,-41],[-7,-41],[-9,-40],[-9,-33],[-7,-34],[-8,-41],[-8,-40],[-12,-57],[-9,-52],[-5,-38],[-3,-58],[1,-64],[5,-51],[7,-47],[7,-35],[6,-37],[9,-32],[14,-25],[20,-30],[7,-32],[8,-31],[10,-35],[8,-31],[9,-34],[20,-88],[5,-31],[6,-59],[3,-46],[2,-36],[-1,-48],[-2,-48],[-4,-36],[-5,-31],[-7,-45],[-6,-36],[-9,-36],[-12,-31],[-10,-35],[-18,-58],[-13,-25],[-13,-19],[-21,-33],[-11,-14],[-19,-22],[-14,-12],[-13,-2],[-12,4],[-14,1],[-25,-4],[-14,-3],[-12,-4],[-17,0],[-22,2],[-13,-3],[-13,-5],[-13,-11],[-12,-3],[-19,-7],[-13,-6],[-14,4],[-12,0],[-15,3],[-14,2],[-13,7],[-13,10],[-14,9],[-11,14],[-11,17],[-21,27],[-16,21],[-16,18],[-15,21],[-14,22],[-12,20],[-22,28],[-18,30],[-24,38],[-12,19],[-5,7],[-7,11],[-25,43],[-10,20],[-11,24],[-19,60],[-20,42],[-44,125],[-55,6],[-56,32],[-50,-6],[-36,-22],[-30,-9],[-101,23],[-24,-7],[-29,7],[-36,21],[-35,36],[-14,15],[-83,63],[-18,22],[-44,52],[-20,26],[-25,45],[-39,150],[-12,7],[-14,47]],[[66437,38171],[-17,61],[-8,70],[-9,30],[-84,203],[-56,86],[-1,1],[-50,39],[-59,-10],[-48,-14],[-57,15],[-22,33],[-9,15],[-20,83],[-5,109],[6,54],[5,57],[1,10],[12,50],[12,29],[34,65],[19,42],[32,79],[35,54],[15,24],[50,110],[17,79],[7,128],[-25,211],[-78,227],[-78,177],[-29,42],[-36,17],[-37,12],[-37,45],[-46,127],[-27,90],[-11,36],[-62,141],[-61,117],[-35,60],[-33,49],[-7,10],[-72,75],[-36,46],[-17,22],[-23,14],[-8,3],[-25,9],[-14,42],[-35,43]],[[86852,36936],[19,-94],[34,-14],[-22,-93],[-21,-28],[-29,-47],[-13,84],[17,94],[15,98]],[[86852,36936],[-39,-10],[-33,-41],[-43,-20],[16,-63],[-13,-66],[-9,-58],[-8,-83],[-52,74],[-24,59],[-27,83],[-29,85],[-24,74],[-39,92],[-43,77],[-37,50],[-50,51],[-20,7],[-45,-21],[-51,-6],[-37,-59],[-29,19],[-28,74],[-41,124],[-22,50],[-4,9],[-31,80],[-33,43],[-26,14],[-45,-12],[-20,3],[-45,56],[-39,123],[-24,75],[-19,108],[25,-26],[45,9],[-19,81],[36,16],[37,-37],[49,32],[7,-75],[46,31],[26,-15],[28,28],[23,56],[11,63],[-43,26],[-12,-96],[-32,16],[-24,16],[-32,45],[-30,48],[-30,24],[2,-81],[-31,21],[-23,-28],[-24,27],[-18,74],[19,90],[6,88],[-4,96],[-25,55],[-16,77],[-5,63],[-18,-57],[7,-60],[7,-78],[12,-104],[-15,-109],[-10,-64],[-19,58],[-27,23],[-25,63],[-38,-60],[51,-76],[26,-100],[-24,-27],[-25,-48],[-20,-89],[-29,-27],[-37,-11],[-44,85],[-22,85],[-14,80],[18,63],[-37,90],[-43,16],[-54,74],[-38,78],[19,89],[13,71],[28,26],[26,32],[77,128],[44,30],[12,48],[-20,84],[-3,92],[44,9],[37,-36],[36,-28],[27,45],[-36,39],[4,74],[-51,-4],[-20,53],[-17,75],[-22,-95],[-30,-9],[-25,-76],[-18,101],[-8,84],[28,69],[26,71],[48,63],[-12,105],[-28,-52],[-31,-64],[-34,13],[-33,-56],[-23,9],[-10,61],[32,81],[30,1],[20,51],[8,83],[17,75],[18,118],[0,79],[27,-72],[22,-7],[34,39],[-25,63],[38,24],[22,51],[22,54],[46,10],[40,1],[17,52],[44,10],[24,82],[5,66],[25,35],[25,54],[32,-5],[-1,80],[-4,84],[-14,8],[-15,9],[-7,-80],[-25,-27],[-38,-70],[-12,-79],[-29,-74],[-50,60],[-8,-84],[-37,-7],[-44,-42],[-21,-16],[-5,-56],[-23,41],[-27,20],[-38,-31],[-32,9],[10,-117],[-48,-80],[-26,8],[-20,61],[-3,-75],[26,-68],[-6,-90],[-27,-34],[-28,-32],[-61,7],[-29,-4],[10,72],[11,63],[6,85],[-34,95],[-39,16],[-27,-52],[-35,-9],[-19,83],[-31,9],[-5,111],[-22,-47],[-27,-3],[-14,105],[-27,61],[-40,-2],[-16,68],[-39,46],[-2,136],[-23,10],[-1,59],[-1,83],[-19,48],[-5,94],[-23,17],[9,57],[11,96],[21,25],[20,-5],[34,29],[-22,67],[-26,8],[-29,5],[-28,4],[6,88],[-34,-20],[-25,51],[-23,62],[-16,-33],[-4,-7],[31,-89],[38,-86],[17,-79],[-25,-68],[-5,-102],[20,-55],[-8,-78],[26,-116],[22,-103],[-26,-1],[-18,-30],[19,-62],[19,-48],[11,-102],[20,-45],[24,0],[21,-16],[27,-40],[18,-34],[38,-17],[-21,-113],[59,-17],[33,-33],[24,-61],[20,-105],[38,-92],[12,-87],[21,-68],[38,-82],[22,-84],[-28,-106],[-11,-65],[-20,50],[-13,73],[-36,-11],[-30,48],[-38,-84],[33,-30],[26,-34],[-1,-77],[-25,-83],[-26,-90],[39,-5],[21,65],[23,-33],[23,-61],[21,-32],[22,-53],[34,-46],[-66,-90],[-29,10],[-26,15],[-8,-107],[30,-16],[-7,-72],[-15,-51],[-18,-80],[-27,-89],[-30,-69],[-22,-52],[-45,-55],[-30,-61],[-35,-51],[-39,-11],[-34,18],[-43,-6],[21,-85],[41,-49],[30,46],[34,-20],[24,58],[42,-13],[46,-28],[-17,-111],[-17,-95],[-37,-75],[0,93],[-28,-75],[-23,-55],[-27,-20],[-22,-8],[-21,43],[-9,71],[-27,23],[-30,53],[-29,54],[-26,157],[-28,-13],[-38,69],[-12,48],[-64,114],[-8,172],[-33,144],[11,93],[-1,42],[1,90],[6,92],[-1,133],[5,159],[-7,186],[-11,131],[-9,115],[-23,81],[-16,105],[-8,72],[35,47],[-3,38],[-44,29],[0,98],[-7,138],[-9,63],[-10,-23],[0,-205],[-5,-42],[-25,-11],[-46,71],[-18,71],[-37,55],[-27,95],[-14,138],[-10,100],[-24,102],[-22,66],[-35,66],[-25,26],[-6,85],[-14,95],[-4,105],[0,63],[-7,85],[-11,82],[-12,71],[-18,111],[-26,129],[-34,142],[-28,105],[-20,92],[3,61],[31,41],[40,-31],[5,82],[28,-4],[-7,70],[-29,16],[-19,42],[-8,-64],[-25,-27],[-12,55],[-12,-98],[-38,-50],[-30,37],[-23,8],[-35,-3],[-48,-7],[-30,14],[-69,123],[-51,88],[-34,57],[-25,47],[-12,87],[35,-4],[55,-62],[39,8],[26,-34],[23,93],[-37,50],[-40,-4],[-35,7],[-26,42],[-26,8],[-29,-1],[-31,17],[-36,18],[-48,-20],[-29,-33],[-36,94],[23,18],[26,68],[25,53],[22,39],[-3,138],[-2,162],[28,-8],[27,-37],[37,23],[21,4],[16,91],[6,37]],[[86855,39673],[-26,-107],[22,-58],[9,-125],[41,-87],[-13,-67],[-6,-69],[40,36],[37,-1],[24,-75],[37,-6],[19,-105],[39,-44],[43,-84],[32,-37],[13,-56],[1,-58],[-11,-92],[-24,4],[-14,71],[-35,-50],[-45,-32],[-23,74],[-40,-26],[-8,77],[-35,45],[-13,-54],[13,-70],[-22,-50],[-15,61],[-27,41],[-8,89],[-25,-62],[-27,76],[-26,31],[-33,-29],[21,-65],[-16,-60],[32,-49],[23,-53],[30,-17],[9,-81],[35,-6],[35,-12],[27,3],[-11,-75],[-33,-88],[27,-64],[15,74],[16,64],[22,23],[34,-18],[16,-108],[-12,-98],[-29,-53],[-31,-48],[-25,7],[-26,-46],[-33,5],[3,-91],[34,-15],[20,-43],[17,-53],[26,110],[12,66],[25,-76],[26,-79],[27,-94],[-9,-96],[6,-107],[6,-105],[9,-91],[-10,-63],[-30,-7],[-18,-8],[-23,31],[-22,77],[-33,-67],[-31,-76],[-28,12],[-28,63],[4,54],[-47,2],[-59,12],[-35,2],[24,-94],[37,6],[40,-23],[39,-123],[51,-4],[43,0],[15,50],[29,-11],[28,-8],[26,-15],[19,33],[59,-74],[24,-20],[49,-46],[35,21],[3,109],[14,62],[37,-9],[38,59],[-16,128],[-30,54],[0,114],[18,16],[23,-16],[23,1],[31,9],[9,-49],[17,-38],[32,30],[0,-89],[48,1],[41,-46],[26,-30],[25,-71],[22,-58],[37,-161],[20,-91],[25,-123],[18,-100],[-1,-115],[-30,-39],[-54,47],[-42,43],[-23,-8],[-21,-15],[-26,84],[-36,39],[-33,23],[-24,58],[22,32],[34,-30],[31,46],[17,55],[40,82],[-40,16],[-25,-39],[-28,-25],[-24,29],[-30,12],[19,55],[41,46],[-15,81],[-41,-7],[-15,-91],[-27,-10],[-32,-36],[17,-59],[6,-58],[-24,-38],[-36,-61],[-25,28],[-36,-48],[-27,-18],[-43,-20],[-27,85],[-31,37],[-24,30],[-31,3],[-51,-11],[-33,-6],[-30,4],[-32,-32],[-31,-3],[-23,-51]],[[56986,34230],[-32,-19],[4,-42],[-43,-91],[-9,-24],[-13,-30],[-16,-52],[-8,-27],[-11,-24],[-11,-26],[-18,-8],[-16,0],[-14,3],[-18,10],[-18,21],[-14,21],[-14,13],[-15,4],[-24,-11],[-23,-20],[-21,-31],[-12,-31],[-3,-41],[6,-37],[11,-28],[12,-37],[13,-45],[6,-44],[19,-117],[8,-30],[-12,-100],[-12,-52],[-50,-120],[-10,-30],[-5,-11],[-14,-35],[-14,-30],[-11,-27],[-20,-49],[-24,-35],[-34,-50],[-19,-30],[-18,-35],[-21,-26],[-49,-56],[-4,-4],[-33,-61],[-11,-16],[-17,-15],[-10,-8],[-12,2],[-23,5],[-29,15],[-8,5],[-30,24],[-5,6],[-18,22],[-12,24],[-29,40],[-48,66],[-18,17],[-14,7],[-16,1],[-15,-5],[-14,-17],[-6,-31],[2,-39],[21,-43],[20,-31],[27,-24],[25,-39],[17,-71],[15,-96],[9,-74],[-4,-62],[-2,-40],[-3,-31],[-6,-48],[-2,-11],[-11,-43],[-6,-23],[0,-1],[-1,-5],[-2,-4],[-1,-4],[-5,-13],[-6,-14],[-2,-4],[-1,-3],[-2,-3],[0,-1],[-17,-26],[-1,-3],[-1,-1],[-7,-10],[-2,-2],[-1,-2],[-1,0],[-57,-53],[-65,-60],[-126,-121],[-7,-7],[-10,-15],[-11,-17],[0,-1],[-1,-2],[-48,-72],[-26,-59],[-70,-159],[-5,-10],[-42,-95],[-15,-34],[-2,-5],[-8,-18],[-9,-22],[-18,-41],[-18,-41],[0,-1],[-1,-1],[-28,-59],[-15,-32],[-44,-94],[-15,-31],[-1,-3],[-2,-3],[-21,-35],[-3,-5],[-45,-65],[0,-1],[-33,-45],[-13,-17],[-1,-2],[-3,-9],[-5,-11],[-5,-23],[-2,-9],[-4,-18],[-4,-24],[0,-2],[-5,-28],[-6,-38],[0,-1],[-7,-33],[-5,-29],[-3,-46],[-3,-52],[-8,-56],[-12,-49],[-2,-11],[-7,-13],[-6,-14],[-6,-8],[-10,-11]],[[55216,30396],[-12,-12],[-1,-1],[0,-1],[-18,-9],[-12,-2],[-8,-6],[-5,-3],[-18,-5],[-6,1],[-4,-1],[-10,4],[-16,7],[-27,29],[-15,16],[-70,39],[-66,8],[-7,-12],[-2,-19],[4,-44],[3,-36],[3,-13],[21,-79],[1,-6],[0,-6],[2,-69],[0,-61],[-4,-50],[-1,-8],[-7,-41],[-3,-8],[-13,-37],[-20,-31],[-22,-20],[-34,5],[-3,0],[-30,20],[-13,15],[-3,3],[-45,52],[-27,48],[-28,56],[-27,26],[-7,4],[-3,2],[-2,1],[-14,9],[-14,-6],[-23,-16],[-18,-50],[-4,-48],[-2,-20],[-4,-55],[0,-6],[0,-6],[-1,-6],[0,-6],[0,-6],[0,-1],[1,-27],[0,-4],[1,-6],[0,-6],[1,-5],[3,-30],[0,-2],[1,-5],[1,-6],[1,-5],[0,-3],[8,-34],[0,-3],[2,-5],[1,-4],[1,-5],[2,-3],[17,-46],[1,0],[1,-4],[2,-4],[28,-52],[13,-55],[1,-10],[-2,-168],[24,-166],[0,-72],[-1,-45],[0,-3],[0,-6],[0,-7],[0,-6],[0,-5],[1,-5],[5,-60],[-1,-9],[-3,-11],[-2,-2],[-2,-3],[-1,-4],[-2,-3],[-1,-2],[0,-1],[-4,-7],[-13,-26],[-16,-25],[-6,6],[-6,3],[-12,13],[-26,40],[-41,36],[-54,40],[-7,12],[-16,26],[-19,-48],[-8,25],[-17,41],[-12,24]],[[54425,29193],[-41,73],[-101,177],[-45,77],[-19,32],[-36,60],[-3,6],[-1,1],[-1,3],[-2,2],[-2,3],[0,1],[-2,2],[-2,3],[-1,1],[-13,10],[0,1],[-2,1],[-2,1],[-2,1],[-3,0],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-20,-18],[-1,-1],[-2,-2],[-2,-2],[-1,-3],[-2,-3],[-2,-4],[-1,-3],[-9,-21],[-1,-4],[-2,-5],[-1,-5],[-1,-4],[-1,-6],[-1,-5],[-1,-5],[-1,-6],[0,-3],[-4,-32],[0,-3],[0,-6],[-1,-5],[0,-6],[0,-7],[0,-6],[0,-5],[4,-98],[0,-1],[-19,-18],[-17,2],[-28,18],[-57,92],[-25,58],[-59,146],[-25,71],[-2,10],[-25,96],[-25,108],[-18,90],[-18,94],[-26,233],[-38,135],[-15,35],[-1,1],[-41,90],[-6,13],[-45,63],[-37,70],[-34,40],[-48,78],[-1,1],[-35,58],[-65,117],[-24,38],[-9,20],[-16,45],[-9,26],[-4,28],[-5,29],[-32,84],[-27,69],[-13,75],[-23,48],[3,35],[7,32]],[[53226,31605],[6,56],[5,45],[-4,49],[-5,36],[-6,35],[2,68],[-1,5],[-2,12],[-1,4],[-2,8],[0,1],[-1,5],[-1,4],[-2,4],[-4,14],[-1,1],[-1,4],[-2,4],[-2,4],[-1,2],[-8,14],[0,1],[-2,3],[-1,0],[-5,8],[-2,2],[-2,2],[-2,2],[-1,1],[-4,2],[-1,1],[-7,3],[-1,1],[-2,1],[-3,0],[-19,-1],[-1,0],[-3,-1],[-54,17],[-59,19],[-66,20],[-1,1],[-1,1],[-1,2],[-1,4],[-25,93],[-8,27],[-8,27],[-6,55],[-3,19],[-10,35],[-14,40],[-28,52],[-65,124],[-20,52],[-3,38],[6,73],[10,50],[2,6],[2,5],[15,32],[17,25],[12,22],[9,32],[1,14],[0,2],[2,16],[-1,34],[-5,17],[-3,8],[-14,24],[0,1],[-30,78],[-42,-1],[-58,-15],[-23,-7],[-38,3],[-1,0],[-2,0],[-2,0],[-25,-3],[-1,0],[-20,-4],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-61,-109],[-34,-60],[-1,-2],[-1,-1],[-8,-17],[-1,-2],[-2,-3],[-29,-71],[0,-1],[-2,-4],[-1,-3],[0,-1],[-14,-27],[-32,-54],[-4,-7],[-5,-5],[-2,-1],[-3,-1],[-1,1],[-2,1],[-4,17],[-15,59],[-4,14],[-1,7],[-1,17],[-1,3],[0,2],[0,120],[7,110],[0,3],[0,6],[0,6],[0,6],[0,6],[0,1],[-1,20],[0,5],[-1,5],[0,6],[-1,6],[-1,5],[-1,6],[-1,5],[-1,5],[-2,4],[0,1],[-7,24],[-1,4],[-2,4],[-2,4],[-1,3],[-2,4],[-2,3],[-2,2],[-10,12],[-2,2],[-2,2],[-2,1],[-1,0],[-5,3],[-1,0],[-2,1],[-2,0],[-48,-43],[-52,-103],[-14,-6],[-16,1],[-46,3],[-1,0],[-2,0],[-2,-1],[-1,0],[-18,-9],[-3,-2],[-1,-1],[-9,-9],[-2,-2],[-2,-3],[-2,-2],[0,-1],[-25,-42],[-2,-3],[-1,-3],[-11,-23],[-11,-20],[-26,-43],[-16,-22],[-5,-6],[-12,-12],[-14,-8],[-7,-1],[-3,0],[-9,4],[-6,5],[-10,10],[-16,24],[-19,47],[-11,29],[0,1],[-1,4],[-1,2],[-26,68],[-29,57],[-1,1],[-21,28],[-1,0],[-42,53],[-12,14],[-53,45],[-110,39],[-45,33],[-19,17],[-31,27],[-39,47],[-42,82],[-25,57],[-26,59],[-23,105],[-36,166],[-30,170],[-33,151],[-48,26],[-2,3],[-2,3],[-2,3],[-1,3],[-2,2],[-2,2],[-2,1],[-1,0],[-21,102],[-8,41],[-14,78],[-15,79],[-2,41],[-5,54],[-8,59],[-1,17],[-6,51],[0,4],[-3,53],[-7,159],[-1,32],[3,162],[0,1],[0,6],[-1,6],[0,6],[0,6],[-1,6],[-1,5],[-1,6],[-1,5],[-1,5],[0,2],[-12,48],[-1,4],[-1,4],[-1,5],[-2,4],[-2,4],[-26,56],[-31,67],[-24,92],[-26,100],[-5,100],[10,160],[0,3],[0,6],[0,6],[0,6],[0,6],[-1,6],[0,6],[-1,6],[0,5],[-1,6],[-8,44],[-1,6],[0,2],[-1,3],[-1,5],[-2,4],[-1,5],[-2,4],[-1,4],[-2,3],[-1,3],[-21,36],[-1,0],[-1,2],[-39,13],[-31,11],[-5,2],[-5,-1],[-51,-7],[-38,70],[0,1],[-2,3],[-1,4],[-2,4],[-1,5],[-2,4],[-1,5],[0,3],[-13,61],[-1,2],[-1,6],[-1,5],[0,4],[-7,55],[-12,40],[-25,48],[-37,59],[-9,9],[-1,0],[-2,1],[-2,1],[-1,1],[-5,4],[-12,0],[-35,-4],[-20,-7],[-16,-17],[-1,-1],[-2,-1],[-2,-2],[-5,-3],[-8,-7],[-3,-5],[-12,-26],[-23,-53],[-20,-61],[-1,-1],[-1,-4],[-2,-4],[-2,-3],[-1,-4],[-2,-2],[0,-1],[-11,-14],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-2,0],[-26,-2],[-1,0],[-2,0],[-2,0],[-2,1],[-77,45],[-2,2],[-2,1],[-1,3],[-2,2],[-2,3],[-2,3],[-2,4],[-1,3],[-1,2],[-13,35],[-1,3],[-2,4],[-1,5],[-1,5],[-1,5],[-1,5],[-1,6],[-1,6],[-9,75],[0,6],[-1,6],[0,5],[0,7],[-1,6],[1,6],[0,6],[0,6],[1,5],[0,5],[22,72],[3,51],[-6,41],[-21,149]],[[49524,33916],[-14,-26],[-28,-67],[-10,-18],[-15,-7],[-13,-9],[-3,-60],[0,-70],[0,-2],[1,-62],[8,-51],[-21,-92],[-27,-73],[-16,8],[-13,-2],[-25,-21],[-11,-12],[-18,-56],[-12,-34],[-7,-71],[-17,-106],[-1,-4],[-19,-13],[-2,0],[-31,-15],[-15,-8],[-19,-25],[-5,-10],[-19,-5],[-24,8],[-28,-28],[-9,-62],[-9,-58],[-26,-29],[-9,-10],[-5,-37],[-3,-21],[-5,-32],[3,-31],[-5,-35],[-2,-5],[-15,-43],[-16,-19],[-4,-18],[-4,-14],[-12,-35],[-8,-26],[-9,-23],[-11,-42],[-10,-21],[-12,29],[-12,33],[-10,34],[-1,18],[-1,25],[-7,44],[-22,25],[-2,5],[-34,86],[-1,4],[-13,3],[-3,-1],[-18,-30],[-17,-30],[-12,-42],[-4,-37],[-21,-38],[-4,-37],[-9,-52],[-10,-28],[-14,-28],[-17,-28],[-11,-19],[-1,-13],[-11,-81],[-1,-3],[-8,-54],[-1,-5],[-10,-20],[-15,-22],[-12,-26],[-13,-34],[-10,-38],[-11,-23],[-9,-40],[-8,-33],[-15,-64],[-10,-25],[-14,0],[-12,-30],[4,-33],[1,-69],[2,-22],[2,-13],[-10,-48],[-9,-34],[-10,-35],[-2,-35],[1,-36],[13,-52],[2,-38],[-3,-43],[-3,-36],[11,-40],[6,-33],[-12,-59],[-5,-35],[-7,-31],[-14,-24],[-26,-16],[-14,-21],[-15,-27],[-14,-4],[-16,4],[-18,-8],[-13,-17],[-22,22],[-29,51],[-23,41],[-9,23],[-8,10],[-10,13],[1,36],[-12,23],[-12,5],[-19,-7],[-13,-3],[-21,4],[-14,32],[-19,12],[-17,1],[-14,-8],[-13,18],[-14,16],[-11,24],[-19,-7],[-17,-20],[-21,-26],[-11,-26],[-13,-9],[-14,0],[-10,0],[-6,-35],[-11,-23],[-14,2],[-11,21],[-18,23],[-10,34],[-16,20],[-15,19],[-22,58],[-8,55],[-14,90],[-17,215],[0,10],[-1,47],[-14,17],[-10,20],[-6,17],[-3,11],[-10,32],[-13,30],[-14,14],[-3,28],[-14,26],[-24,44],[-2,3],[-1,2],[-18,48],[-8,21],[-22,61],[-1,0],[-13,10],[-13,8],[-12,22],[-11,35],[-16,32],[-16,-22],[-14,-13],[-18,-25],[-10,-5],[-14,-2],[-37,-4],[-7,0],[-7,-1],[-11,12],[-15,8],[-16,-4],[-11,-21],[-13,6],[-1,0],[-12,14],[-14,1],[-10,-25],[-2,-34],[0,-12],[-12,-23],[-14,-23],[-20,-10],[-13,-19],[-13,-14],[-16,-24],[-12,-24],[-16,-16],[-16,-14],[-33,-91],[-4,-11],[-3,-8],[-26,-71],[-8,-21],[-33,-93],[-62,-170],[-11,-20],[-7,-28],[-7,-39],[-13,-13],[-12,-13],[-15,5],[-12,-5],[-7,-31],[6,-39],[-6,-45],[-7,-46],[-14,-29],[-13,-23],[-3,-11],[-5,-17],[-15,-2],[-13,-15],[-9,-31],[0,-1],[-1,-2],[-8,-22],[-32,-51],[-2,-3],[-84,-150],[-5,-8],[-30,-54],[-6,-11],[-60,-108],[-7,-21],[-5,-10],[-21,-40],[-27,-49],[-37,-45],[-5,-3],[-6,-28],[-13,-32],[-15,-13],[-12,-10],[-5,-4],[-8,-6],[-14,4],[-8,-35],[-8,-40],[-13,-30],[-12,-42],[-11,-46],[-12,-38],[-13,-18],[-10,-16],[-13,1],[-17,4],[-19,-14],[-15,-20],[-18,-38],[-18,-42],[-10,-34],[-15,-21],[-3,-3],[-31,-42],[-17,-23],[-13,-17],[-16,-22],[-19,-26],[-45,-62],[-18,-23],[-29,-41],[-1,-1],[-15,-22],[-6,-10],[-8,-11],[-16,-28],[-14,-23],[-16,-1],[-14,5],[-23,2],[-12,-1],[-19,8],[-68,-49],[-19,-14],[-10,-7],[-12,-19],[-9,-34],[-12,-15],[-18,-2],[-14,2],[-13,-19],[-15,-14],[-7,-31],[5,-32],[10,-33],[14,-35],[12,-28],[15,-34],[11,-19],[12,-13],[17,-17],[17,-19],[0,-42],[-5,-41],[2,-36],[5,-37],[13,-34],[11,-20],[30,-89],[9,-35],[7,-24],[3,-10],[11,-21],[18,-28],[15,-13],[15,-20],[3,-4],[-2,-37],[5,-40],[17,-4],[20,21],[17,7],[15,7],[17,8],[25,-1],[22,-2],[19,-6],[16,-4],[16,-20],[9,-35],[11,-69],[0,-11],[-3,-56],[-3,-18],[0,-35],[-9,-38],[-10,-22],[-6,-32],[-6,-26],[-14,-14],[-25,-23],[-10,-10],[-4,-40],[-20,-181],[-6,-52],[-2,-17],[-10,-132],[-10,-144],[-4,-13],[-4,-40],[-9,-44],[0,-1],[-14,-55],[-4,-5],[-13,-36],[-19,-39],[-12,-22],[-12,-23],[-14,4],[-13,3],[-22,-24],[-15,-18],[-19,-23],[-16,-31],[-14,-40],[-4,-20],[-15,-35],[-30,-70],[-5,-17],[-9,-25],[-9,-29],[-11,-17],[-13,-19],[-11,-17],[-3,-6],[-19,-28],[-239,-346],[-7,-13],[-12,-23],[-4,-1],[-12,-23],[-11,-28],[-13,-34],[-17,-9],[-18,-27],[-10,-19],[-2,-58],[-6,-51],[-2,-38],[-2,-35],[-9,-30],[-9,-42],[-10,-41]],[[45385,26268],[-39,117],[-11,37],[-44,142],[-26,85],[-4,12],[-21,68],[-18,56],[-15,49],[-3,9],[-11,34],[-7,23],[-6,18],[-13,16],[-7,9],[-41,50],[-34,43],[-2,2],[-25,29],[-11,14],[-34,41],[-23,28],[-14,18],[-17,20],[-18,22],[-18,23],[-17,21],[-13,17],[-32,41],[-164,199],[-15,17],[-60,75],[-29,36],[-13,17],[-24,30],[-19,24],[-1,0],[-15,21],[-34,41],[-26,29],[-11,13],[-22,26],[-14,23],[-2,4],[-15,18],[-2,3],[-19,22],[-24,31],[-47,59],[-18,22],[-51,66],[-21,21],[-2,2],[-24,28],[-24,28],[-13,14],[-31,39],[-14,15],[-4,5],[-44,49],[-33,36],[-24,27],[-11,13],[-9,10],[-2,3],[-136,151],[-21,26],[-23,26],[-89,104],[-80,88],[-12,14],[-40,44],[-41,49],[-19,22],[-3,3],[-166,185],[-126,140],[-210,233],[-43,48],[-13,14],[-1,1],[-131,165],[-62,226],[-61,223]],[[42703,30140],[33,60],[39,70],[24,44],[66,239],[6,15],[11,33],[13,26],[20,37],[19,36],[29,40],[22,39],[12,34],[16,33],[14,48],[13,54],[21,69],[6,29],[2,10],[26,138],[27,145],[30,155],[16,58],[10,75],[19,97],[7,48],[9,75],[4,107],[17,62],[19,70],[18,48],[1,42],[13,44],[11,54],[43,154],[29,103],[14,49],[25,35],[-3,109],[0,72],[8,26],[15,21],[6,53],[14,115],[27,160],[16,34],[1,1],[218,556],[22,58],[3,7],[106,270],[1,0],[25,38],[3,12],[69,156],[6,13],[-51,203],[-58,234],[-59,235],[-13,55],[-12,54],[-10,41],[-22,83],[-63,249],[-33,127],[-1,5],[-47,191],[-29,112],[-3,10],[-6,24],[-115,441],[-34,133],[-131,502],[-10,54],[-29,292],[-20,168],[25,53],[16,31],[13,23],[17,34],[15,46],[15,45],[18,41],[18,30]],[[64451,39303],[-9,-151],[-4,-79],[-7,-118],[-5,-75],[-3,-62],[-11,-176],[-14,-239],[-3,-57],[-3,-51],[-3,-58],[-11,-179],[-7,-119],[-8,-137],[-4,-78],[-7,-116],[0,-4],[-8,-122],[-3,-57],[-12,-49],[-29,-117],[-25,-102],[-8,-31],[-14,-56],[-21,-83],[-17,-65],[-12,-48],[-39,-151],[-40,-159],[-16,-61],[-10,-41],[-22,-84],[-23,-91],[-22,-86],[-33,-128],[-8,-28],[-9,-38],[-28,-106],[-64,-248],[-43,-168],[-49,-190],[-20,-77],[-9,-32],[-22,-84],[-37,-139],[-52,-198],[-11,-41],[-2,-8],[-16,-60],[-8,-29],[-61,-232],[-24,-97],[-38,-153],[-34,-138],[-32,-128],[-16,-67],[-25,-100],[-16,-62],[-7,-29],[-17,-69],[-10,-38],[-9,-36],[-8,-31],[-12,-47],[-12,-44],[-8,-32],[-9,-34],[-8,-31],[-17,-65],[-16,-62],[-9,-35],[-27,-102],[-46,-178],[-9,-34],[-7,-31],[-23,-93],[-19,-69],[-11,-24],[-2,-11],[-5,-18],[-62,-260],[-72,-281],[-53,-209],[-11,-47],[-42,-176],[-19,-73],[-30,-114],[-14,-54],[-17,-74],[-38,-150],[-12,-51],[-6,-23],[-15,-60],[-9,-34],[-6,-24],[-18,-70],[-1,-2],[-25,-104],[-11,-40],[-42,-160],[-31,-128],[-18,-73],[-10,-44],[-7,-30],[-7,-28],[-73,-293],[-25,-96],[-11,-45],[-10,-39],[-16,-62],[-21,-99],[-10,-37],[-15,-50],[-10,-39],[-9,-35],[-19,-71],[-9,-35],[-17,-70],[-8,-32],[-8,-36],[-7,-29],[-15,-58],[-11,-44],[-12,-46],[-53,-216],[-40,-161],[-29,-111],[-30,-129],[-9,-39],[-17,-68],[-31,-124],[-31,-126],[-11,-45],[-8,-29],[-18,-73],[-11,-46],[-13,-51],[-38,-149],[-24,-98],[-28,-113],[-10,-40],[-21,-83]],[[61779,27311],[-30,41],[-11,20],[-17,-14],[-17,-13],[-2,-6],[-6,-23],[-1,-48],[-11,-61],[-6,-35],[-4,-48],[0,-1],[-3,2],[-9,5],[-19,3],[-18,11],[-20,5],[-11,22],[-21,59],[-22,49],[-7,35],[-9,36],[-11,-26],[-4,-37],[5,-77],[0,-3],[0,-61],[0,-27],[-9,-87],[-1,-8],[-21,-46],[-4,-8],[-2,0],[-6,-1],[-1,0],[-6,4],[-33,32],[-7,7],[-6,13],[-8,14],[0,4],[-30,56],[-6,6],[-60,-12],[-31,-18],[-44,-51],[-1,-3],[-9,-47],[-5,-10],[-6,2],[-2,4],[-37,79],[-14,57],[-2,5],[-22,70],[-26,75],[-12,21],[-3,3],[-35,36],[-2,3],[-3,6],[-6,10],[-3,15],[0,31],[1,2],[0,3],[3,15],[6,11],[1,2],[0,1],[1,1],[11,8],[1,1],[13,-5],[6,-10],[2,-3],[10,-25],[3,-11],[7,-9],[4,2],[4,9],[9,23],[9,22],[0,18],[-3,12],[-5,8],[-4,7],[-6,4],[-13,10],[-40,-6],[-2,0],[-4,0],[-9,6],[-14,11],[-4,2],[-51,59],[-3,2],[-2,3],[-5,11],[-1,3],[-15,47],[-7,27],[-3,5],[-22,26],[-5,3],[-6,4],[-1,-1],[-1,0],[-10,-4],[-2,-2],[-4,-3],[-24,-23],[-14,-14],[-39,-36],[-40,137],[-3,16],[-6,14],[-5,5],[-4,3],[-9,5],[-13,7],[-8,-3],[-8,-3],[-13,-12],[-9,-22],[-5,-2],[-18,39],[-1,7],[0,17],[1,1],[24,31],[6,14],[5,27],[0,23],[0,5],[0,4],[-7,30],[0,1],[-1,6],[-46,201],[-1,5],[-32,4],[-8,-13],[-4,2],[0,2],[-2,2],[-7,28],[-22,91],[-9,46],[-20,66],[-1,3],[-19,11],[-11,31],[-4,3],[-4,1],[-7,-10],[-8,-23],[-7,-26],[0,-14],[3,-9],[1,-1],[8,-6],[3,-5],[23,-51],[14,-31],[7,-16],[10,-23],[2,-8],[1,-11],[0,-7],[-1,-7],[-7,-46],[-5,-13],[-6,-2],[-3,4],[-13,34],[-4,6],[-3,3],[-39,44],[-3,3],[-13,-9],[-9,-12],[-4,-6],[-1,-2],[-13,-23],[-20,-21],[-1,-2],[-5,1],[-2,6],[-2,7],[-1,2],[-2,20],[0,3],[0,12],[0,14],[2,52],[6,19],[6,15],[2,3],[11,16],[14,6],[4,2],[2,3],[2,2],[1,20],[-1,6],[-1,7],[-15,108],[-12,80],[-6,22],[-7,16],[-1,2],[-11,18],[-10,16],[-4,2],[-28,6],[-11,2],[-20,0],[-9,-4],[-8,-8],[-2,-1],[-18,46],[-26,30],[-4,9],[0,6],[0,2],[3,15],[14,65],[4,16],[29,131],[5,15],[1,0],[4,11],[1,1],[21,31],[20,116],[-2,2],[-21,32],[-14,5],[-6,2],[-1,0],[-8,8],[-5,8],[-11,14],[-7,10],[-10,18],[-5,9],[-16,50],[-9,10],[-8,28],[-13,-1]],[[60245,29304],[-8,35],[-27,-22],[-21,-35],[-12,-29],[-9,-23],[-4,-11],[-6,-9],[-26,-11],[-24,-28],[-12,-14],[-2,-3],[-10,-3],[-6,2],[-16,19],[-13,15],[-4,4],[-3,3],[-3,2],[-7,-1],[-3,-2],[-14,-10],[-1,-1],[-18,-15],[-6,-4],[0,-2],[-1,-10],[3,-35],[-1,-24],[-4,-92],[-1,-10],[0,-1],[-1,-10],[-3,-9],[-21,-23],[-7,-4],[-10,16],[-9,19],[-2,5],[-1,0],[-1,0],[-9,5],[-8,-12],[-36,-55],[-16,-25],[-10,-14],[-8,-20],[-4,-8],[-12,3],[-10,-21],[-9,27],[-3,37],[4,35],[6,32],[7,27],[-11,21],[-14,11],[-13,15],[-14,14],[-14,21],[-13,26],[-10,21],[3,42],[8,45],[6,46],[8,30],[4,35],[1,42],[-15,35],[-15,15],[-11,32],[-11,49],[-9,22],[5,31],[11,25],[18,7],[-4,39],[0,36],[0,35],[16,26],[11,24],[11,34],[-9,41],[-15,16],[-11,17],[4,34],[13,20],[-5,35],[-11,13],[-17,17],[-13,14],[-15,9],[-13,4],[-26,8],[-12,0],[-12,1],[-14,-2],[-12,-6],[-13,-14],[-12,11],[-13,-1],[-19,6],[-16,32],[-9,27],[-15,24],[-8,27],[-11,21],[-6,32],[-11,17],[-13,4],[-13,0],[-14,-10],[-12,-11],[-9,-24],[-14,4],[-12,0],[-15,5],[-11,22],[-15,24],[-11,13],[-10,24],[-17,15],[-11,18],[-12,11],[-16,11],[-12,6],[-13,23],[-11,24],[-21,18],[-16,10],[-8,25],[-5,38],[-10,26],[-7,31],[-10,24],[-11,17],[-11,14],[-6,33],[-11,36],[-6,31],[-9,25],[-8,31],[-6,30],[-9,27],[-12,33],[-7,28],[-7,30],[-12,31],[3,51],[6,32],[2,39],[-9,43],[-7,27],[-10,22],[-13,36],[-11,26],[-9,31],[-11,16],[-10,26],[-7,27],[-12,27],[-14,29],[-1,3],[-14,34],[-44,104],[-26,61],[-45,107],[-55,131],[-73,172],[-14,35],[-20,46],[-55,130],[-66,158],[-22,53],[-22,50],[-51,121],[-14,32],[-9,22],[-102,232],[-29,64],[-12,28],[-16,35],[-61,139],[-14,32],[-27,56],[-6,12],[-31,69],[-35,79],[-39,88],[-27,61],[-19,42],[-12,26],[-11,25],[-14,33],[-15,33],[-24,54],[-3,8],[-28,62],[-3,6],[-18,42],[-62,140],[-30,68],[-2,3],[-99,224],[-29,65],[-44,104],[-30,70],[-20,46],[-4,8],[-30,69],[0,1]],[[86072,35936],[-32,-6],[-3,68],[9,92],[-21,11],[4,65],[20,-6],[16,-51],[9,-73],[-2,-100]],[[84507,35113],[-2,-1],[-12,-5],[-17,-14],[-10,-18],[1,-54],[7,-61],[6,-46],[-3,-39],[-25,-38],[-6,-43],[3,-41],[5,-52],[-10,-24],[-13,-4],[-13,0],[-17,33],[-5,33],[3,36],[11,26],[-9,53],[-12,18],[-15,26],[-16,11],[-25,-1],[-12,-4],[-21,-2],[-18,16],[-14,2],[-14,-25],[-13,19],[-17,21],[-15,8],[-6,31],[-3,52],[-6,40],[0,48],[-4,32],[-11,22],[15,11],[5,40],[-15,4],[1,35],[2,34],[4,33],[-11,29],[-19,1],[-17,14],[-13,12],[-11,15],[0,38],[-15,4],[-4,37],[-12,-19],[-20,15],[-18,19],[-11,19],[-13,10],[-3,43],[-5,33],[3,38],[-16,-5],[-7,39],[-11,19],[0,36],[-11,23],[-11,16],[-13,-15],[-4,45],[-16,8],[-31,-12],[-17,21],[-13,-20],[-6,-36],[-11,-29],[-2,-5],[-17,-39],[-10,-35],[-14,-18],[-15,0],[-14,-31],[-13,12],[-12,-18],[-13,6],[-10,30],[-14,21],[-4,43],[1,3],[5,46],[13,24],[2,4],[11,47],[7,46],[-7,31],[-18,9],[-13,-3],[-29,-16],[-13,-32],[-15,-27],[-14,-69],[-18,-8],[-13,-8],[-3,53],[-6,40],[-4,34],[-15,17],[-1,1],[-12,10],[-1,1],[-10,26],[-9,-27],[-11,29],[-6,-31],[-14,-5],[-8,27],[-18,-5],[-10,-22],[-15,9],[-12,2],[-12,29],[-16,42],[-13,17],[1,48],[-15,11],[-9,24],[-5,33],[-19,16],[-13,17],[-10,38],[-13,8],[-12,11],[-20,28],[-15,22],[-13,16],[-7,30],[-16,33]],[[82908,42032],[0,-69],[2,-109],[10,-94],[11,-72],[23,-77],[36,-75],[38,-45],[28,-39],[47,-29],[21,-13],[25,-13],[68,-11],[47,-6],[53,-6],[66,-6],[27,0],[32,-6],[29,-15],[19,-17],[72,-52],[20,-87],[-40,-36],[-26,-90],[40,26],[31,-12],[18,-62],[24,-70],[29,-94],[9,-110],[-15,-107],[24,-63],[7,29],[7,32],[25,-11],[27,-43],[25,-26],[31,-53],[35,-56],[39,-73],[21,-43],[1,-56],[19,-29],[12,-51],[17,-115],[-19,-102],[-6,-98],[2,-112],[-31,-34],[17,-97],[-29,-31],[23,-66],[-30,-67],[36,-34],[16,-83],[10,75],[13,64],[-12,95],[65,-70],[26,-70],[-7,-114],[3,-121],[15,-88],[23,-100],[40,-144],[41,-151],[-16,-83],[-34,-14],[-3,-58],[-19,-16],[-15,42],[-24,66],[-41,3],[-51,36],[-31,64],[-38,-27],[-43,27],[-30,47],[-29,51],[-1,94],[-25,25],[-24,38],[-34,60],[-38,42],[-44,-27],[34,-39],[35,-49],[23,-73],[-30,-78],[8,1],[21,3],[34,26],[25,-102],[33,-53],[17,-42],[-14,-58],[41,19],[24,-18],[44,-7],[37,-41],[30,-59],[46,-4],[16,-55],[50,-112],[32,-41],[49,-71],[44,-144],[-32,-17],[-26,40],[-39,105],[-35,-22],[-44,-20],[-25,81],[-9,-120],[9,-87],[43,44],[3,-66],[25,39],[24,-56],[35,-83],[16,28],[20,-49],[5,-76],[25,-20],[23,-41],[18,-30],[22,-64],[25,-48],[-36,-20],[-6,-107],[-12,-94],[-1,-68],[-28,-18],[-5,-78],[-15,-83],[-14,-42],[-17,16],[-13,-50],[-25,5],[-17,-9],[-18,-44],[-30,-2],[-30,48],[-27,41],[-33,30],[12,-63],[24,-28],[27,-69],[-1,-81],[28,16],[33,46],[32,4],[27,-74],[7,84],[41,49],[25,-8],[-3,57],[3,71],[15,81],[39,19],[-4,99],[16,74],[1,94],[29,-38],[30,-42],[42,-87],[17,-64],[42,-33],[14,-108],[20,-83],[19,-77],[14,-75],[26,-38],[34,-71],[47,-81],[18,-36],[20,-23],[28,-35],[31,-29],[61,-20],[34,5],[52,10],[112,-14],[26,-13],[29,-10],[35,7],[33,39],[33,0],[63,39],[20,-6],[38,-13],[45,-32],[34,-13],[32,-5],[27,-12],[31,-3],[32,7],[40,15],[23,-10],[-6,-72],[26,-17],[24,-3],[18,-82],[21,102],[21,-30],[3,-75],[43,24],[-32,108],[35,47],[41,39],[5,-86],[32,-11],[5,84],[42,36],[82,14],[1,0],[31,-58],[3,-102],[-11,-87],[-19,-11],[-12,-75],[-22,-49],[30,-33],[30,34],[7,-86],[-5,-79],[-41,25],[-19,-81],[16,-69],[-46,-71],[28,-42],[20,-13],[24,90],[36,-53],[34,39],[34,-17],[-14,-73],[-36,-17],[-21,-85],[-41,-57],[40,-19],[26,-30],[7,65],[23,-38],[32,24],[33,-79],[57,-75],[35,30],[23,-23],[20,31],[51,-54],[24,-54],[33,-5],[26,-3],[49,-53],[43,-107],[47,-12],[22,-7],[40,4],[51,-4],[38,6],[27,-4],[25,-7],[28,-6],[40,9],[46,25],[37,-14],[44,-8],[54,-16],[51,-60],[39,14],[18,-37],[33,-52],[32,22],[64,-46],[27,-36],[27,-21],[13,-57],[10,-53],[32,20],[22,-63],[-17,-105],[44,-45],[9,62],[9,60],[2,14],[-8,38],[84,39],[24,-37],[15,-12],[43,-48],[8,-107],[-38,-114],[-32,-103],[-15,-46],[-27,-11],[-21,-52],[-31,-56],[-49,-23],[-31,28],[-82,21],[-12,25],[-21,30],[-39,59],[-19,35],[-10,-3],[2,-65],[26,-88],[-34,-36],[-24,12],[-12,53],[-23,-13],[-2,-75],[69,-44],[76,26],[-2,-155],[-7,-457],[-33,-77],[-11,116],[0,425],[-113,51],[-2,-1],[20,-109],[-19,-40],[-26,-16],[-54,-20],[-55,39],[-45,-3],[-28,-41],[-23,-57],[-36,11],[-26,25],[-29,61],[-17,34],[-72,-11],[-170,15],[-22,-67],[-3,-49],[-10,-5],[-12,23],[-25,27],[-41,120],[-37,50],[-35,-2],[-22,-36],[-26,-134],[-7,-129],[-25,-78],[-16,-127],[9,-86],[-21,-66],[-8,137],[-16,65],[-8,-116],[0,-131],[0,-100],[31,-68],[-18,-60],[-22,-40],[-12,-3],[-29,-9],[-25,187],[-23,124],[4,72],[-11,75],[-16,51],[-24,43],[-20,35],[-39,5],[-27,-26],[-46,-108],[-19,-59],[18,-78],[18,-69],[-6,-71],[-28,33],[-21,29],[-17,-36],[-15,42],[-38,105],[-33,-2],[-22,6],[-8,92],[-13,75],[-27,58],[-27,66],[-29,21],[-49,16],[-32,60],[-21,73],[-21,37],[-36,87],[-38,7],[-45,-28],[-38,-26],[-33,-30],[-36,14],[-28,11],[-29,25],[-2,84],[-18,60],[20,109],[8,74],[-18,73],[-32,35],[-44,-75],[-33,102],[-25,91],[-10,87],[-50,1],[-2,0],[6,-131],[1,-94],[-27,-44],[-48,0],[-32,31],[-13,101],[-31,80],[-18,74],[-38,84],[-30,-1],[-38,-30],[-36,33],[-4,135],[-37,46],[-20,59],[-25,-15]],[[66437,38171],[-20,3],[-22,-19],[-14,-37],[-14,-35],[-16,-32],[-9,-28],[-5,-45],[14,-33],[-3,-39],[-9,-45],[-14,-24],[-17,-6],[-11,-7],[5,-32],[12,-30],[8,-31],[0,-38],[-9,-38],[-5,-32],[-10,-24],[-14,-13],[-14,1],[-14,8],[-12,-9],[-11,-29],[12,-16],[13,1],[10,-28],[-8,-25],[-15,-40],[4,-33],[12,-29],[-5,-38],[-19,-39],[-9,-23],[-14,2],[6,-32],[13,4],[16,12],[3,-33],[2,-35],[2,-52],[-6,-32],[-10,-27],[-9,-24],[-1,-35],[12,-7],[-5,-61],[-46,-525],[-12,-134],[-4,-44],[-10,-118],[-10,-110],[-13,-148],[-22,-241],[-32,-369],[-5,-55],[-17,-193],[-12,-127],[-5,-56],[-7,-94],[-13,-164],[-13,-110],[-4,-52],[-5,-54],[0,-1],[-13,-137],[-13,-151],[-7,-74],[-11,-126],[-16,-181],[-9,-98],[-3,-37],[-7,-81],[-11,-115],[-14,-162],[-10,-118],[-21,-239],[-2,-19],[-3,-37],[-3,-39],[-13,-158],[-6,-65],[-9,-92],[-23,-258],[-10,-116],[-1,-6],[-7,-73],[-8,-86],[-9,-104],[-6,-65],[-9,-100],[-10,-114],[-9,-102],[-9,-106],[-7,-71]],[[65728,31242],[-15,30],[-25,38],[-4,7],[-5,17],[-22,60],[-4,10],[-10,8],[-19,-24],[-3,-3],[-58,-115],[-6,-10],[-6,-12],[-6,-30],[-6,-17],[-2,-3],[-9,-19],[-10,-11],[-5,-3],[-2,-1],[-5,-3],[-12,-3],[-12,6],[-35,35],[-18,7],[-11,-3],[-3,-5],[-3,-5],[-4,-14],[0,-7],[-7,-51],[-7,-43],[-4,-12],[-2,-6],[-28,-79],[-84,-143],[-9,-11],[-10,-3],[-6,2],[-53,26],[-10,12],[-14,28],[-7,10],[-14,8],[-10,3],[-4,2],[-9,-1],[-19,-8],[-6,-5],[-3,-3],[-2,-6],[-3,-22],[-6,-98],[-2,-25],[0,-23],[0,-18],[-1,-16],[4,-49],[1,-9],[7,-94],[0,-24],[0,-17],[-1,-26],[-10,-61],[-2,-11],[-13,-69],[-2,-14],[-3,-15],[-6,-37],[-3,-16],[-3,-11],[-8,-3],[-18,15],[-38,67],[-22,6],[-5,1],[-3,-1],[-8,-2],[-2,-2],[-8,-5],[-26,-21],[-10,-8],[-5,-4],[-5,-12],[-3,-21],[-2,-22],[4,-71],[6,-58],[1,-59],[-10,-40],[-4,-9],[-4,-11],[-11,-22],[-4,-19],[-5,-20],[-1,-13],[0,-1],[-2,-4],[-1,-19],[1,-132],[-6,-60],[-4,-22],[-14,-65],[-1,-3],[-6,-14],[-21,-56],[-10,-26],[-14,-31],[-37,-53],[-5,-15],[-18,-71],[0,-1],[-4,-19],[-6,-28],[-10,-114],[-3,-45],[-3,-42],[-4,-23],[-13,-72],[0,-2],[-39,-88],[-8,-12],[-1,-3],[-8,-2],[0,-1],[-1,0],[-1,0],[-15,1],[-15,-7],[-37,-48],[-2,-5],[-4,-10],[-7,-33],[-4,-24],[-9,-35],[-7,-22],[-9,-19],[-27,-60],[-5,-9],[-1,-2],[-4,-4],[-6,-8],[-10,-3],[-14,4],[-3,-2],[-2,-1],[-5,-11],[-3,-17],[2,-24],[2,-16],[1,-4],[3,-11],[8,-18],[11,-21],[3,-5],[26,-38],[6,-32],[20,-34],[-13,-78]],[[64507,28283],[-8,-31],[-11,-31],[-8,-25],[-6,-25],[-2,-11],[-9,-29],[-9,-11],[-4,-4],[-6,-12],[-13,-26],[-13,-22],[-17,-19],[-19,-22],[-10,-31],[-15,-13],[-13,1],[-11,5],[-4,2],[-14,7],[-18,1],[-2,0],[-3,2],[-2,1],[-8,7],[-13,12],[-5,4],[-9,6],[-14,2],[-26,3],[-2,-6],[-7,-26],[0,-59],[-1,-43],[2,-41],[4,-13],[8,-20],[13,-16],[12,-15],[9,-34],[2,-5],[-3,-43],[-1,-20],[-3,-72],[0,-16],[2,-39],[-6,-40],[-12,-50],[-9,-47],[-4,2],[-24,15],[-36,65],[-14,11],[-19,18],[-13,16],[-14,15],[-24,30],[-11,15],[-13,14],[-11,4],[-6,-2],[-8,-2],[-9,-3],[-10,-21],[-7,-36],[-1,-2],[-1,-7],[-1,-8],[-3,-34],[-1,-42],[-5,-41],[1,-28],[1,-51],[-4,-46],[0,-2],[-2,-8],[-1,-11],[-4,-23],[-8,-45],[-15,-41],[-16,1],[-19,29],[-13,6],[-2,0],[-10,1],[-28,7],[-11,-3],[-4,-1],[-1,-2],[-9,-16],[-20,-73],[-13,-35],[-2,-5],[1,-45],[1,-24],[1,-40],[1,-39],[8,-84],[7,-54],[-5,-13],[-2,-7],[-2,-6],[-16,-11],[-5,2],[-6,2],[-22,22],[-23,24],[-16,-11],[-5,-7],[-9,-14],[-1,-2],[-5,-9],[-8,-15],[-4,-5],[-30,-46],[-16,-18],[-20,-7],[-13,-3],[-10,-20],[-7,-29],[-2,-15],[-4,-19],[3,-53],[-4,-34],[0,-3],[-6,-13],[-4,-9],[-24,-48],[-10,-35],[-14,-24],[-2,-5],[-14,-23],[-3,-6],[-11,-18],[-36,-49],[-3,0],[-19,0],[-15,-6],[-2,0],[-6,1],[-16,3],[-36,9],[-12,-13],[-4,0],[-3,0],[-15,-1],[-8,6],[-16,52],[-9,43],[0,25],[4,34],[8,33],[1,3],[1,2],[5,29],[1,6],[0,5],[1,21],[-3,7],[-26,14],[-19,10],[-40,22],[-2,1],[-40,-59],[-1,-2],[-11,-28],[-30,-83],[-10,-11],[-4,-5],[0,-13],[-3,-62],[0,-7],[-2,-10],[-1,-3],[-6,-18],[-10,-22],[-2,-10],[-1,-34],[0,-80],[-1,-15],[2,-11],[11,-33],[3,-13],[-1,-18],[-8,-19],[-9,-11],[-7,2],[-18,27],[-6,37],[-5,38],[-1,1],[-17,60],[-31,110],[-1,3],[-3,9],[-2,5],[-3,3],[-7,6],[-1,1],[-35,-4],[-6,-3],[-1,-1],[-4,-7],[-3,-4],[-14,-27],[-1,-1],[-38,-49],[-2,0],[-11,-2],[-18,-4],[-38,-7],[-4,-3],[-32,-17],[-2,-1],[-7,-3],[-42,-14],[-10,-7],[0,-1],[-12,10],[-19,15],[-9,7],[-3,1],[-24,12],[-4,2],[-2,3],[-49,65],[-24,4],[-22,23],[-16,-1],[-1,0],[-2,9],[-21,67],[-11,40],[-3,40],[3,43],[-13,11],[-15,8],[-5,37],[-12,17],[-9,10],[-2,5],[-2,-1],[-12,-6],[-19,-8],[-4,2],[-1,1],[-1,6],[-22,134],[-9,52],[-19,4],[-1,0],[-1,-3],[-1,-1],[-15,-17],[-7,-8],[-22,7],[-16,11],[-2,2],[-3,6],[-9,21],[-7,9],[-4,5],[-7,9],[-26,25],[-36,36],[-4,2],[-2,0],[-22,4],[-26,4],[-9,2],[-1,0],[-1,0],[-4,-1],[-11,-7],[-2,-1],[-13,-12],[-12,-12],[-7,-10],[-11,-20],[-4,-21],[-3,-34],[0,-5],[-1,-1],[0,-1],[-4,-8],[-11,8],[-24,42],[-7,52],[1,26],[5,-2],[0,-1],[4,-5],[3,-11],[5,-6],[4,3],[5,32],[0,7],[-7,34],[-2,2],[-15,15],[-8,52],[-8,31],[-6,33],[-11,48],[-6,35],[-16,7],[-8,-27],[-11,26],[-17,17],[-11,4],[-13,-6],[-16,-17],[-15,15],[-15,-19],[-18,-11],[-8,-3],[-5,6],[-16,34],[-6,27],[-6,29],[-4,25],[-5,20],[-39,43]],[[76444,34031],[4,-39],[1,-5],[6,-25],[11,-20],[12,13],[14,-1],[14,-5],[10,-24],[12,3],[9,-25],[0,-37],[4,-33],[-5,-55],[-2,-38],[-4,-37],[13,-11],[11,5],[13,-3],[11,-19],[29,-49],[0,-1],[11,-20],[7,-33],[6,-31],[7,-28],[15,-13],[8,-25],[8,-27],[0,-36],[3,-28],[0,-8],[7,-29],[11,-5],[12,0],[9,-24],[-9,-23],[1,-14],[1,-23],[11,-27],[14,-5],[12,4],[11,-25],[11,-29],[9,-21],[5,-11],[13,-19],[13,-33],[11,-5],[2,-1],[12,-16],[13,-11],[11,-16],[11,-27],[2,-38],[5,-35],[-7,-28],[2,-3],[10,-15],[-1,-37],[1,-36],[12,-13],[12,-14],[13,0],[11,-17],[-7,-29],[7,-30],[12,-11],[12,-9],[8,-27],[6,-31],[11,-14],[10,-31],[10,-21],[11,-17],[11,11],[6,-33],[7,-31],[13,-6],[12,-6]],[[77052,32495],[-18,-96],[-7,-34],[-6,-34],[-9,-47],[-11,-53],[-23,-122],[-3,-14],[-15,-78],[-17,-94],[-7,-33],[-13,-64],[-6,-31],[-7,-38],[-9,-51],[-35,-182],[-19,-103],[-22,-113],[-8,-41],[-10,-54],[-29,-161],[-18,-96],[-13,-67],[-6,-32],[-24,-127],[-24,-128],[-15,-80],[-17,-88],[-13,-69],[-7,-42],[-16,-81],[-14,-76],[-6,-33],[-6,-31],[-8,-45],[-9,-46],[-9,-49],[-15,-77],[-7,-32],[-4,-36],[-6,-33],[-7,-31],[-6,-30],[-4,-33],[-4,-35],[-8,-25],[-8,-24],[-11,-17],[-11,-14],[-8,-26],[11,-19],[5,-44],[14,-21],[9,-25],[9,-24],[11,-16],[8,-26],[-7,-28],[-3,-34],[6,-34],[2,-34],[9,-29],[13,-14],[13,1],[11,-15],[12,-15],[10,-20],[-7,-28],[3,-39],[-3,-36],[-8,-33],[-10,-18],[-4,-35],[-5,-36],[5,-34],[13,2],[12,-6],[-9,-27],[-15,-18],[-12,-13],[-12,-9],[-13,1],[-6,-30],[-12,-19],[-14,-4],[-11,-14],[-10,-18],[1,-35],[-11,-17],[-12,8],[-10,19],[-12,12],[1,34],[-10,18],[-12,10],[-10,-23],[-13,0],[-2,38],[-11,-11],[-11,-24],[-12,-4],[-3,35],[0,35],[-11,19],[-7,31],[-12,11],[-4,32],[-7,29],[-9,22],[-13,9],[-12,0],[-12,8],[-7,27],[-3,33],[-2,1],[-10,10],[-11,-9],[-12,6],[-8,32],[1,35],[12,10],[10,-18],[-6,34],[-5,31],[-13,1],[-12,3],[-8,-26],[4,-33],[-11,-21],[-13,2],[-4,-35],[-4,-32],[3,-33],[-10,-33],[-13,-14],[-11,-13],[11,-36],[13,7],[13,0],[10,-27],[7,-35],[9,-32],[1,-54]],[[76206,28775],[-11,68],[-29,-42],[-37,9],[-46,34],[-23,7],[-19,4],[-32,-12],[-28,-23],[-32,-21],[-21,-117],[-26,-107],[-37,-64],[4,-13],[10,-31],[12,-41],[10,-40],[11,-45],[5,-27],[11,-63],[16,-86],[1,-3],[13,-81],[-1,-40],[-1,-38],[-14,-66],[-19,-51],[-23,-43],[-25,-19],[-28,4],[-44,9],[-42,5],[-32,15],[-41,26],[-35,26],[-29,23],[-47,75],[-16,82],[-3,13],[16,-3],[24,-5],[40,-10],[25,6],[21,62],[-5,98],[-4,18],[-10,54],[-41,65],[-35,-4],[-23,25],[-17,29],[27,213],[55,320],[25,317],[-40,296],[-134,-4],[-29,-58],[-11,-348],[-26,-265],[13,-17]],[[75429,28891],[-6,-29],[-7,-34],[-4,-35],[-9,-30],[-10,-26],[-10,-24],[-10,-18],[-27,-30],[-17,-15],[-15,-13],[-12,-12],[-14,-11],[-12,-9],[-12,-6],[-12,3],[-12,6],[-12,-2],[-13,0],[-12,3],[-13,5],[-11,14],[-12,-11],[-11,9],[-13,-7],[-12,5],[-13,0],[-13,0],[-12,4],[-12,-3],[-13,4],[-14,5],[-10,3],[-2,1],[-12,-1],[-14,1],[-13,-7],[-12,-10],[-23,-15],[-42,-24],[-18,-16],[-14,-21],[-15,-31],[-12,27],[2,34],[2,61],[9,24],[12,12],[3,35],[9,24],[3,35],[4,33],[-3,36],[-6,30],[-6,31],[-7,28],[-10,27],[-11,31],[-14,28],[-10,17],[-11,19],[-11,16],[-13,16],[-13,10],[-14,10],[-15,1],[-12,-12],[-11,-19],[-12,-31],[-6,-35],[-3,-34],[2,-46],[0,-36],[-2,-35],[-7,-29],[-13,-13],[-6,-62],[-13,10],[-13,12],[-13,13],[-11,12],[-12,7],[-18,16],[-12,15],[-11,19],[-8,27],[-11,19],[-20,6],[11,13],[5,33],[0,35],[4,32],[2,34],[1,35],[6,39],[7,30],[7,29],[2,34],[-2,35],[-7,34],[-10,23],[-11,14],[-11,12],[-12,12],[-11,21],[-14,19],[-9,20],[-10,20],[-9,24],[-10,22],[-14,23],[-12,-3],[-13,3],[11,15],[-11,11],[-13,14],[8,28],[12,-8],[11,-12],[0,38],[-3,34],[-13,-4],[12,15],[0,40],[-2,36],[-1,39],[-3,36],[-3,35],[0,35],[-4,34],[-4,35],[-2,35],[-3,38],[-4,36],[-4,34],[-6,31],[-10,23],[-10,22],[-11,17],[-11,13],[-12,12],[-12,3],[-12,-10],[7,-27],[13,1],[12,-18],[9,-32],[4,-32],[-7,-29],[-6,-33],[-10,-18],[-13,25],[-11,26],[-11,16],[0,34],[-5,35],[7,29],[-13,8],[-12,-7],[-13,0],[-11,-10],[-12,-15],[-12,-9],[-13,0],[-1,-35],[-4,-33],[-8,32],[-9,22],[-12,6],[-12,-2],[-12,-3],[-13,7],[-12,6],[-10,21],[-11,16],[-11,18],[-11,19],[-11,17],[-10,24],[-8,26],[-7,31],[-4,32],[-5,33],[-4,32],[-6,32],[0,35],[-2,34],[2,36],[4,35],[4,32],[6,35],[7,28],[6,33],[8,26],[7,30],[7,28],[7,27],[5,29],[1,3],[7,28],[7,30],[7,31],[5,30],[7,36]],[[74162,30982],[25,160],[-4,202],[-4,170],[-2,56],[-9,97],[0,2],[-8,52],[-1,7],[-15,113],[5,328],[2,130],[0,83],[-1,31],[-19,230],[5,98],[16,56],[22,104],[20,128],[8,87],[-1,251],[37,11],[11,3],[41,-1],[6,-40],[3,-36],[12,-24],[-1,-126],[18,-10],[20,-16],[22,-19],[30,-25],[13,-15],[12,-18],[12,-23],[16,-30],[15,-22],[13,-15],[1,83],[1,86],[0,52],[1,54],[3,4],[-10,60],[25,28],[2,-15],[55,62],[-5,11],[0,1],[-2,2],[-12,60],[-9,24],[-8,27],[-8,27],[-8,29],[-9,26],[-8,28],[-13,25],[4,48],[3,32],[11,27],[10,23],[4,33],[12,17],[27,-17],[12,-8],[15,7],[1,38],[2,71],[4,86],[-8,9],[-20,47],[-16,7],[-18,7],[-33,18],[-3,59],[1,67],[-9,48],[-4,40],[0,1],[-3,36],[-2,25],[-1,9],[-4,46],[5,63],[2,23],[-13,-3],[-27,-9],[-4,-1],[-9,-2],[-44,30],[-15,10],[-13,8],[-29,18],[-13,10],[-12,10],[-20,14],[8,36],[15,68],[2,7],[11,50],[4,19],[-7,9],[-1,2],[-15,19],[-12,12],[-10,13],[-7,9],[-1,9],[-7,33],[-3,41],[-19,24],[-2,3],[-4,5],[7,17],[11,18],[11,14],[17,20],[11,18],[9,31],[6,31],[2,26],[1,8],[0,35],[-3,37],[-4,45],[-7,33],[-18,77],[-13,59],[-2,19],[-1,17],[0,36],[4,41],[-2,2],[-16,20],[-17,19],[-12,14],[-18,23],[-22,1],[-33,0],[-20,-4],[-48,-8],[-12,-1],[-4,-3],[-5,-9],[-2,-8],[-3,-19],[-4,7],[-25,45],[-15,24],[-13,22],[-11,19],[-14,23],[-8,12],[-7,12],[6,15],[10,29],[5,32],[-4,37],[1,38],[5,31],[-5,31],[-8,26],[-9,21],[-12,16],[-7,29],[2,36],[-1,36],[3,34],[18,30],[1,3],[2,3],[3,-1],[3,0],[1,1],[1,2],[1,1],[1,1],[1,0],[1,-2],[2,-2],[0,4],[-29,40],[-23,31],[-18,24],[-9,5],[-13,7],[-26,14],[0,18],[-32,-12],[-3,-1],[-27,-10],[-13,-5],[-8,-3],[-8,-3],[1,-20],[8,-126],[-37,-7],[-18,-4],[-18,-3],[-32,-6],[-30,-5],[0,13],[-2,69],[-8,-2],[-2,-8],[-2,0],[-10,-6],[-13,-9],[-23,-3],[-24,4],[-25,2],[-20,2],[-6,1],[-11,9],[-1,-12],[2,0],[3,-2],[1,-5],[5,-6],[1,-4],[-4,-36],[-5,-37],[-11,-77],[-2,-18],[-1,-10],[-4,-99],[0,-3],[2,-39],[2,-35],[12,-11],[31,-122],[17,-69],[3,-35],[0,-3],[6,-24],[9,-42],[-7,-15],[-19,-29],[-10,-16],[-14,-23],[-5,-8],[-9,-15],[-25,-41],[-27,-43],[-9,22],[-37,89],[-12,28],[-16,39],[-26,57],[-23,55],[-6,13],[-3,9],[-5,-13],[-1,-3],[-9,-28],[-11,-37],[-16,-49],[-9,-26],[-16,-51],[-10,-28],[-6,10],[-40,63],[-15,22],[-15,24],[-45,69],[-21,31],[-15,24],[-11,-33],[-2,5],[-8,11],[-2,-8],[-12,12],[-1,-6],[-3,-11],[-4,9],[-10,19],[-24,48],[-12,24],[-10,20],[-17,31],[-28,56],[-31,60],[-17,33],[-13,25],[-15,29],[0,1],[-9,17],[0,-25],[0,-7],[-2,-75],[-1,-35],[-3,-44],[12,-155],[-9,-13],[-10,43],[-7,26],[-4,-11],[-2,-3],[-16,-44],[-11,-29],[-7,-9],[-2,-3],[-1,3],[-9,52],[-35,-28],[-24,-18],[-3,-7],[29,-35],[-17,-46],[-25,-76],[-10,-23],[2,-16],[-1,-16],[-8,-49],[7,-35],[24,-40],[18,-24],[10,42],[17,13],[11,15],[22,-11],[5,-46],[5,-54],[3,-34],[17,-14],[14,-2],[21,-1],[12,2],[29,-1],[16,-1],[5,0],[4,2],[4,2],[0,-2],[0,-1],[0,-4],[-3,-13],[-3,-21],[-1,-3],[-14,-99],[-2,-18],[-7,-40],[-7,-49],[-5,-30],[-17,25],[-29,13],[-53,-3],[-66,6],[-7,1],[-35,0],[-75,-62],[-51,-70],[-26,-23],[-9,-8],[-88,46],[-19,-9],[-15,-7],[-36,-17],[-20,52],[-19,53],[-28,-1],[-27,-2],[-57,-37],[-51,-51],[-18,-6],[-45,-13],[-11,-2]],[[72073,34729],[-57,-8],[-21,0],[-56,2],[-53,23],[-17,7],[-70,11],[-65,3],[-53,30],[-43,27],[-73,24],[-14,-3],[-47,-10],[-13,4],[-25,9],[-14,5],[-1,2],[0,1],[-54,76]],[[71397,34932],[-22,-50],[-21,-42],[-47,-94],[-16,-31],[-13,-27],[-13,-27],[-10,-22],[-23,-51],[-10,-23],[-10,-21],[-29,-58],[-16,-32],[-25,-50],[-13,-26],[-12,-26],[-10,-23],[-11,-24],[-12,-22],[-10,-22],[-12,-23],[-15,-30],[-18,-37],[-10,-21],[-13,-27],[-21,-43],[-13,-26],[-10,-22],[-15,-31],[-13,-26],[-15,-33],[-10,-21],[-14,-28],[-6,-12],[-8,-16],[-20,-42],[-12,-24],[-17,-35],[-20,-43],[-11,-22],[-21,-43],[-13,-29],[-13,-28],[-13,-27],[-31,-69],[-11,-23],[-22,-47],[-13,-28],[-17,-36],[-47,-99],[-16,-33],[-9,-17],[-4,-10],[-10,-20],[-19,-36],[-15,-31],[-20,-39],[-13,-27],[-19,-39],[-11,-19],[0,-1],[-15,-31],[-12,-25],[-26,-55],[-13,-28],[-14,-30],[-11,-22],[-17,-38],[-11,-23],[-33,-74],[-12,-27],[-12,-26],[-21,-39],[-13,-17],[-18,-38],[-48,-101],[-15,-31],[-14,-28],[-38,-78],[-12,-26],[-1,-2],[-15,-31],[-45,-94],[-15,-32],[-15,-30],[-42,-89],[-15,-30],[-5,-11],[-20,-41],[-28,-60],[-71,-147],[-23,-49],[-25,-51],[-73,-154],[-25,-51],[3,-34],[-2,-37],[-2,-38],[2,-35],[2,-39],[1,-34],[0,-37],[-2,-37],[-4,-33],[-4,-33],[-5,-33],[3,-37],[-1,-39],[-7,-33],[-8,-27],[-8,-25],[-8,-27],[-8,-29],[-7,-30],[-13,-41],[-9,-27],[-8,-27],[-4,-39],[2,-33],[1,-35],[-10,-42],[-4,-41],[-11,-37],[-10,-19],[1,-36],[0,-37],[0,-37],[-10,-25],[-11,-10],[-13,-9],[-13,0],[-19,-13],[-18,-10],[-11,-16],[-12,-17],[-12,-7],[-17,-4],[-12,-7],[-27,-21],[-12,-13],[-21,2],[-14,-11],[-13,2],[-14,-3],[-16,0],[-13,2],[-14,6],[-12,-2],[-13,-9],[-11,-28],[-11,-15],[-13,-20],[-8,-28],[-11,-16],[-10,-25],[-12,-4],[-15,2],[-12,11],[-9,-24],[-11,-27],[-5,-33],[-11,-22],[-12,-16],[-12,9],[-11,-11],[-9,27],[-12,11],[-5,32],[-11,21],[-9,24],[-22,-3]],[[69012,30001],[-15,75],[-7,34],[-19,95],[20,160],[9,81],[0,9],[1,4],[0,9],[-2,10],[-6,19],[-11,21],[-30,39],[-3,3],[-31,48],[-4,6],[-9,17],[-7,14],[-23,172],[-3,23],[-4,27],[-9,66],[-5,35],[-2,10],[2,20],[0,4],[2,19],[2,27],[14,89],[11,66],[0,4],[3,28],[0,2],[-1,39],[-5,28],[-11,11],[-22,18],[-21,9],[-35,-4],[-7,-1],[-7,-5],[-11,-8],[-3,-2],[-74,-133],[-16,-42],[-20,-61],[-9,-19],[-3,-6],[-4,-6],[-3,-1],[-3,-1],[-28,-11],[-17,-6],[-4,-1],[-13,7],[-20,18],[-7,12],[-2,7],[-18,84],[-1,20],[-4,76],[-1,12],[-4,74],[-1,7],[5,82],[4,24],[1,8],[4,21],[8,48],[13,77],[2,12],[3,26],[0,43],[-5,96],[-1,17],[-7,31],[-1,2],[0,1],[-43,97],[0,1],[-6,7],[-7,1],[-16,-1],[-8,-3],[-2,-1],[-7,-6],[-34,-27],[-31,-6],[-29,1],[-17,3],[-17,12],[-16,14],[-12,23],[-23,69],[-1,4],[-9,18],[-9,16],[-59,111],[-1,1],[-3,3],[-5,-2],[-6,-2],[-20,-20],[-1,-6],[-24,-92],[-10,-22],[-7,-15],[-4,-10],[-65,-58],[-4,1],[-1,0],[-3,1],[-4,9],[-54,67],[-45,53],[-47,56],[-5,6],[-21,23],[-37,43],[-3,4],[-5,5],[-1,0],[-13,-9],[-3,-3],[-3,-3],[0,-1],[-1,-7],[-8,-6],[-8,3],[-14,14],[-22,40],[-10,11],[0,1],[-11,0],[-5,0],[-7,-4],[-8,1],[-7,6],[-10,16],[-28,31],[-13,-12],[-8,-3],[-64,-2],[-6,5],[-7,6],[-5,5],[-11,9],[-18,17],[-3,-1],[-41,-18],[-9,0],[-10,4],[-12,12],[-11,18],[-14,26],[-18,44],[-3,7],[-8,27],[-17,53],[-5,18],[-20,63],[-2,12],[-1,0],[-11,7],[-11,23],[-5,33],[-4,31],[0,8],[-11,18],[-11,3],[-1,0],[-3,1],[-9,-20],[-1,-2],[-21,-24],[-17,-11],[-13,-12],[-12,18],[-8,-42],[-6,-38],[-3,-3],[-15,-5],[-18,-5],[-13,-65],[-40,-153],[-14,-36],[-29,-31],[-3,-3],[1,-1],[15,-33],[4,-10],[4,-8],[4,-9],[4,-30],[-1,-53],[0,-24],[-3,-161],[0,-7],[-1,-36],[-4,-56],[-4,-36],[0,-2],[-41,25],[-1,11],[-13,34],[-4,5],[-4,6],[-15,-2],[-17,-18],[-14,-22],[-10,-21],[-18,-18],[-45,-3],[-36,2],[-2,1],[-5,1],[-8,3],[-23,31],[0,1],[-11,17],[-2,5],[-9,7],[-4,-1],[-2,0],[-32,-6],[-6,-1],[-19,-5],[-18,-11],[-4,-3],[-16,-16],[-10,-16],[-7,-18],[-1,-3],[-1,-13],[0,-9],[0,-27],[0,-22],[0,-11],[-6,-9],[-4,-5],[-17,-26],[-3,0],[-16,-36],[-2,-7],[-22,-53],[-11,-25],[-1,-5],[-3,-10],[-1,-21],[3,-59],[1,-8],[-5,-101],[-4,-44],[-30,-66],[-52,-95],[-5,-6],[-8,-2],[-2,4],[-19,41],[-5,6],[-24,1],[0,-1],[-8,-3],[-18,-24],[-12,-13],[-8,2],[-2,2],[-5,4],[-24,20],[-1,2],[0,1],[-38,45],[-31,27],[-25,31],[-1,3],[0,2],[-23,30],[-9,7],[-6,0],[-2,-2],[-2,-3],[-18,-21],[-16,-21],[-6,-12],[-2,-10],[-1,-2],[0,-20],[1,-13],[1,-12],[-2,-16],[-4,-32],[-12,-103],[-7,-63],[-3,-85],[-9,-48],[-33,-100],[-3,-1],[-12,-7],[-16,10],[-3,6],[-10,27],[-3,18],[0,22],[0,19],[0,6],[0,3],[17,121],[-1,19],[-4,15],[-41,22],[-10,0],[-8,-9],[-14,-37],[-8,-8],[-102,-94],[-72,17],[-2,1],[-20,7],[-5,1],[-13,80],[-8,31],[-9,79],[-1,66],[-2,9],[-5,11],[0,1],[-1,0],[-24,18],[-10,7],[-2,2],[-11,7]],[[42703,30140],[-69,-101],[-7,-11],[-11,-16],[-29,-42],[-29,-41],[-28,-42],[-96,-139],[-2,-1],[-19,-19],[-12,-22],[-13,-15],[-13,-18],[-8,-29],[-5,-35],[-44,-70],[-11,-12],[-14,-13],[-18,-27],[-34,-50],[-53,-78],[-355,-578],[-6,-12],[-103,-21],[-8,-2],[-6,-1],[-207,-43],[-54,-11],[-72,-15],[-79,-16],[-94,-20],[-10,-35],[-6,-31],[-19,-97],[-3,-11],[-37,-67],[-12,-20],[-71,-126],[-9,-5],[-97,-48],[-13,-18],[-21,-31],[-266,-378],[-19,-48],[-63,-159],[-50,-126],[-37,-94]],[[40471,27346],[-29,29],[-14,13],[-49,56],[-31,35],[-119,139],[-17,19],[-14,17],[-49,57],[-34,40],[-13,15],[-86,100],[-58,67],[-42,48],[-36,40],[-48,55],[-40,46],[-103,115],[-14,-30],[-18,-50],[-18,-54],[-23,-68],[-19,-55],[-19,-54],[-10,-22],[-35,-74],[-15,-24],[-52,-86],[-47,-74],[-43,-59],[-55,-62],[-38,-50],[-26,-34],[-54,-69],[-39,-44],[-30,-18],[-23,-25],[-13,-13],[-39,-52],[-15,-20],[-13,-24],[-18,-20],[-1,-2],[-147,-167],[-172,-157],[-18,-16],[-72,-107],[-164,-243]],[[38439,26464],[-42,466],[-9,101],[-13,142],[-44,304],[-12,81],[-18,117],[-11,82],[-78,541],[-33,226],[-17,116],[-30,201],[-27,181],[-11,79],[-2,14],[-25,175],[-5,32],[-7,47],[-15,101],[-17,114],[-19,134],[-6,36],[-16,111],[-8,49],[-28,189],[-8,55]],[[37938,30158],[128,109],[89,209],[71,61],[99,140],[206,401],[172,235],[305,434],[126,119],[63,125],[74,117],[-43,167],[243,223],[170,80],[91,111],[130,177],[42,56],[119,152],[206,863],[-110,103],[-209,-313],[-249,303],[16,57],[26,89],[32,35],[36,39],[38,42],[59,64],[1,2],[0,1],[-187,631],[342,440],[205,284],[44,33],[122,178],[126,165],[131,242],[67,115],[25,45],[48,146],[106,258],[59,263]],[[79584,35626],[-13,-107],[7,-84],[9,-88],[29,-43],[35,-115],[9,-88],[7,-96],[-21,-103],[-21,-99],[-15,-51],[-36,-82],[-42,-86],[-33,-44],[-21,-57],[-18,-48],[-30,-60],[-8,-86],[10,-61],[28,-63],[34,-30],[33,-26],[24,-31],[44,-48],[28,-39],[31,-30],[40,4],[40,-14],[29,6],[34,35],[28,73],[12,111],[9,59],[27,124],[-6,89],[-2,19],[-9,87],[-6,99],[3,100],[1,34],[6,37],[8,43],[9,17],[10,20],[33,19],[38,19],[25,23],[35,38],[6,6],[9,13],[22,30],[29,40],[36,24],[46,4],[43,6],[32,-24],[14,-42],[8,-26],[2,-51],[1,-45],[-1,-62],[-7,-77],[-8,-89],[5,-34],[3,-19],[-9,-107],[8,-82],[24,-69],[34,-60],[42,-32],[48,-2],[34,32],[42,45],[34,25],[48,52],[21,-6],[8,-2],[33,23],[33,64],[16,69],[9,74],[0,46],[0,39],[-16,107],[-14,71],[-17,79],[-8,35],[-12,59],[-28,116],[-25,123],[49,80],[26,27],[33,29],[24,7],[48,15],[37,-12],[48,-34],[33,-84],[5,-63],[5,-68],[-9,-76],[-24,-118],[-15,-74],[-6,-34],[-11,-70],[-28,-159],[-31,-199],[-9,-39],[-10,-45],[-16,-65],[-8,-21],[-17,-50],[-24,-62],[-1,-1],[-23,-49],[-43,-102],[-18,-66],[-5,-74],[3,-62],[1,-86],[23,-27],[35,-79],[53,-70],[35,-49],[32,-35],[28,-18],[37,1],[35,18],[33,45],[28,33],[34,47],[17,33],[44,97],[20,39],[44,94],[19,43],[10,21],[33,70],[33,83],[23,93],[1,3],[3,26],[13,134],[18,105],[36,27],[19,-30],[10,-15],[4,-19],[13,-75],[9,-52],[4,-23],[36,-168],[29,-132],[1,-13],[8,-78],[3,-17],[11,-75],[14,-58],[7,-25],[6,-24],[-13,0],[-24,-1],[7,-20],[25,-71],[47,-143],[9,-108],[0,-3],[-6,-74],[-11,-97],[-20,-174],[0,-82],[7,-93],[6,-98],[28,-80],[10,-66],[29,-42],[27,-16],[47,-32],[40,-20],[70,-37],[3,-1],[32,-42],[11,-14],[15,-19],[18,-24],[28,-17],[34,-24],[16,-10],[19,-12],[6,-20],[10,-29],[17,-23],[11,-14],[27,-23],[14,-70],[1,-27],[4,-79],[-1,-149],[1,-15],[4,-82],[0,-85],[15,-79],[0,-38],[0,-46],[5,-58],[5,-51],[16,-49],[13,-38]],[[82040,31336],[1,-25],[0,-9],[-8,0],[-6,0],[-4,1],[-13,23],[-8,32],[0,-1],[-12,-31],[0,-1],[-3,-32],[-2,-62],[3,-24],[1,-17],[0,-1],[-10,-16],[-11,18],[-5,16],[0,2],[-4,12],[-1,-3],[-10,-32],[-4,-16],[-3,-11],[-12,-20],[13,-11],[2,-1],[20,-17],[5,-32],[14,-41],[1,-7],[4,-27],[22,-33],[2,-4],[6,-15],[2,-6],[-1,-10],[-3,-11],[-2,-11],[-1,0],[-15,6],[-10,39],[-12,-22],[-8,-34],[17,-5],[16,2],[-5,-34],[-7,-20],[-3,-7],[-17,-4],[-16,8],[1,-39],[-11,-10],[-14,-44],[12,-9],[12,-44],[0,-1],[-5,-43],[-14,-5],[-12,4],[9,28],[-11,16],[-13,17],[-12,-19],[13,-12],[-5,-35],[-9,-25],[-11,-37],[-7,-9],[-4,-5],[0,3],[-6,28],[-1,37],[12,55],[-13,-2],[-13,-6],[-9,-20],[-1,-1],[-12,-32],[0,-13],[1,-32],[-10,-25],[-14,-17],[-3,-2],[-9,-5],[6,33],[-9,24],[-13,5],[-12,15],[-13,7],[-12,11],[-11,24],[-17,0],[-13,-2],[-12,9],[-16,1],[-14,-26],[-18,-31],[-15,-17],[-21,13],[-12,26],[-9,33],[-14,9],[-14,7],[-17,22],[-15,24],[-16,27],[-7,26],[-10,33],[-14,23],[-22,18],[-9,23],[-10,24],[-9,30],[-11,12],[-14,-2],[-12,23],[-12,29],[-18,2],[-19,32],[-12,21],[-20,10],[-15,5],[-12,14],[-13,13],[-21,18],[-12,-2],[-10,-25],[-12,-16],[-18,-2],[-14,4],[-14,10],[-45,-12],[-12,-3],[-21,-7],[-14,-4],[-23,-7],[0,-1],[-44,-34],[-18,-8],[-24,26],[-14,2],[-21,4],[-29,-20],[-36,11],[-22,-12],[-31,-42],[-5,-11],[-12,-27],[-11,-25],[-12,-35],[-26,-71],[-14,-8],[-15,-11],[-18,-5],[-32,-5],[-30,-13],[-19,-6],[-8,-4],[-4,-2],[-18,-27],[-9,-23],[-15,-25],[-16,-18],[-14,-49],[-20,-63],[-8,-24],[-4,-35],[-18,16],[-14,-9],[-23,15],[-12,4],[-13,-8],[-2,-47],[-13,-33],[-4,-21],[-1,-60],[-1,-44],[0,-28],[1,-69],[2,-103],[27,9],[1,-2],[-1,-85],[0,-24],[0,-6],[-3,-37],[0,-1],[-15,-58],[-2,-4],[-8,-14],[-1,-13],[0,-3],[-2,-17],[5,-16],[2,-2],[12,-9],[-1,-6],[-15,-145],[0,-1],[15,-21],[-14,-96],[-3,-19],[-4,-24],[-4,-26],[-3,-24],[-24,-92],[-8,-30],[-24,-91],[-6,-10],[-3,-25],[8,-108],[3,-10],[11,-5],[5,7],[15,23],[9,-5],[36,-81],[1,-6],[1,-2],[5,-18],[6,-20],[6,-37],[2,-88],[-2,-21],[-3,-30],[-1,-12],[-10,-17],[-3,-5],[-7,-12],[-10,4],[-32,15],[-7,3],[-2,11],[-4,20],[0,3],[0,6],[4,57],[-3,9],[-2,6],[-9,4],[-5,-6],[-2,-3],[-13,-56],[-6,-25],[-15,-61],[-4,-33],[-13,-100]],[[80285,28609],[-14,16],[-114,155],[-32,55],[-11,43],[1,64],[7,38],[10,24],[30,19],[33,17],[25,12],[20,9],[12,18],[10,41],[6,52],[5,40],[5,62],[4,97],[7,99],[-9,71],[-24,18],[-14,-12],[-13,-31],[-7,-32],[-7,-74],[-8,-53],[-17,-49],[-15,-22],[-19,-56],[-17,-15],[-14,-2],[-18,37],[-40,57],[-35,46],[-21,5],[-19,-30],[-12,-29],[-12,-52],[-3,-57],[-1,-48],[-1,-58],[-8,-76],[-12,-46],[-17,-29],[-20,-20],[-22,-34],[-16,-28],[-16,-34],[-18,-17],[-28,24],[-9,70],[0,70],[-6,104],[9,104],[16,40],[14,39],[37,69],[20,37],[12,56],[2,77],[-7,68],[-12,66],[-28,87],[-27,17],[-27,-53],[-38,-101],[-40,-65],[-24,-17],[-31,12],[-73,48],[-72,44],[-26,50],[-18,48],[16,135],[20,65],[-2,51],[-12,31],[-12,24],[-17,16],[-13,7],[-13,-1],[-17,-9],[-16,11],[-14,10],[-15,17],[-17,35],[-15,-20],[-2,-41],[-6,-41],[-14,-9],[-13,-30],[-7,-30],[-18,-25],[-16,-7],[-17,-3],[-10,22],[-9,22],[-15,17],[-11,19],[-18,26],[-14,9],[-18,-12],[-28,-58],[-22,-41],[-28,-32],[-13,-10],[-23,14],[-13,44],[-12,9],[-7,45],[-13,16],[-7,-57],[-18,-29],[-14,-23],[-14,-4],[-17,31],[-25,24],[-14,20],[-16,36],[-9,37],[-8,28],[11,31],[15,8],[-11,20],[-12,14],[6,40],[-8,31],[0,37],[-5,64],[-12,30],[0,38],[-16,-9],[-13,14],[-8,28],[-1,-41],[-2,-34],[-8,36],[-17,3],[-4,40],[-9,-31],[-17,-15],[-5,-42],[-14,8],[-12,-2],[-10,33],[-13,32],[-1,1],[-11,19],[-16,-9],[-27,33],[-14,-21],[-18,3],[-1,44],[-14,18],[-12,20],[-4,-16],[-3,-13],[-12,7],[-13,12],[-4,5],[-1,-3],[-8,-23],[-13,27],[-1,-40],[-13,14],[-14,2],[-13,-5],[-15,-27],[1,-35],[-11,-15],[-15,2],[-5,36],[-9,44],[-6,46],[7,31],[14,25],[-8,42],[-9,31],[-12,-22],[-11,19],[-25,11],[-34,31],[-13,63],[-13,17],[-14,-6],[-15,2],[-9,22],[-21,-3],[-12,24],[-11,-28],[-14,-8],[-17,22],[-10,-21],[-20,15],[-10,-22],[-17,9],[-19,-9],[1,43],[-11,8],[-19,10],[-13,-37],[-17,7],[-22,-8],[-12,12],[-14,-16],[-17,20],[-13,25],[-9,29],[-11,32],[-1,3],[-19,36],[1,50],[5,32],[-15,10],[-5,30],[-15,-1],[-22,11],[-15,36],[-15,27],[2,39],[-9,31],[-20,28],[-21,15],[-16,-20],[-13,12],[-10,-19],[-4,42],[-15,2],[-14,14],[-10,41],[4,34],[6,30],[-1,36],[0,4],[-5,45],[1,46],[-15,-6],[-13,25],[-9,33],[-14,4],[-6,29],[-7,66],[1,40],[-12,52],[-12,41],[-11,20],[-7,35],[-17,-11],[-18,2],[-14,13],[-15,-22],[-24,-23],[-23,-11],[-16,-2],[-1,0],[-11,-16],[-11,-16],[-15,-12],[-17,25],[-4,33],[2,37],[19,67],[-1,36],[-3,47],[-18,16],[-29,-10],[-23,1],[-16,11],[-12,19],[-32,7],[-27,-26],[-19,-33],[-18,-26],[-15,7],[-23,25],[3,84],[7,103],[12,39],[15,40],[4,69],[-11,27],[-17,-13],[-19,8],[-24,-19],[-16,-39],[-18,-67],[-9,-24],[-12,-15],[-18,-9],[-6,59],[-10,58],[3,51],[-6,39],[-13,23],[-25,33],[-24,2],[-9,56],[3,37]],[[53226,31605],[-14,30],[0,2],[-47,44],[-5,33],[-12,-13],[-12,-18],[-6,45],[-17,-6],[-14,-2],[-13,-29],[-14,10],[-14,-28],[-9,28],[-17,2],[-12,19],[-11,-17],[-17,-26],[-15,-1],[-17,14],[-16,31],[2,-45],[3,-44],[-26,17],[-12,-44],[-20,-4],[2,-58],[-34,-17],[-11,-68],[-25,13],[-20,-109],[-14,-3],[-32,-37],[-3,47],[2,56],[-12,-5],[-8,35],[-11,-15],[-10,-20],[-13,2],[-16,-14],[-14,-33],[2,-37],[8,-48],[-18,-23],[-18,-24],[-22,-29],[-19,-26],[-23,-35],[-21,-42],[-32,-69],[-15,-46],[-28,-1],[-15,-8],[-13,-2],[-17,0],[-14,-1],[-20,4],[-14,3],[-16,10],[-16,21],[-14,47],[-15,16],[-2,-2],[-45,-44],[-21,-46],[8,-75],[5,-43],[5,-45],[-2,-43],[-4,-61],[-27,-31],[-14,-26],[-12,-22],[-5,-44],[16,-84],[15,-87],[19,-6],[21,-4],[12,-1],[18,-2],[22,9],[26,9],[38,4],[14,1],[39,-71],[12,-118],[-1,-73],[23,-43],[24,-45],[20,-39],[-70,-224],[-27,-85],[-35,-114],[-11,-34],[12,-21],[19,-32],[28,-35],[17,-23],[17,-22],[12,-14],[11,-16],[21,-24],[43,-55],[51,-65],[18,-22],[22,-32],[5,-7],[12,-23],[4,-6],[-7,-8],[-3,-16],[-2,-7],[6,-13],[-15,-29],[-13,-60],[-22,-107],[-3,-36],[-13,-14],[-1,-45],[-11,-28],[-9,-37],[-18,-81],[-24,-113],[-47,-205],[-7,-31],[-11,-53],[-17,-79],[-15,-67],[-15,-71],[-7,-36],[-1,-1],[-44,-209]],[[52386,27855],[-14,-36],[-10,-23],[-15,-116],[-13,-64],[-25,-109],[-9,-47],[-9,-27],[-11,-38],[-6,-29],[-7,-34],[-7,-30],[-8,-38],[-7,-30],[-8,-35],[-15,-99],[-31,-137],[-8,-36],[-7,-32],[-8,-36],[-8,-42],[-8,-33],[-16,-70],[-10,-41],[-9,-36],[-10,-40],[-18,-70],[-16,-72],[-53,-227],[-2,-9],[-21,-94],[-3,-14],[-7,-30],[-2,-9],[-13,-62],[-10,-46],[-6,-32],[-16,-75],[-2,-8],[-6,-29],[-14,-68],[-12,-60],[-22,-108],[-35,-163],[-24,-115],[-38,-177],[-22,-106],[-18,-87],[-13,-63],[-103,-486],[-14,-67],[-3,-12],[-12,-58],[-6,-25],[-39,-186],[-3,-14],[-11,-54],[-1,-3],[-26,-121],[0,-1],[-12,-56],[-8,-36],[-64,-290],[-13,-57],[-63,-315],[-17,-85],[-8,-40],[-18,-84],[-8,-37],[-22,-100],[-10,-44],[-11,-51],[-28,-135],[-33,-155],[-67,-324],[-10,-48],[-43,-205],[-6,-31],[-56,-257],[-27,-123],[-31,-144],[-57,-259],[-42,-208],[-8,-38],[-26,-123],[-28,-123],[-68,-309],[-22,-105],[-3,-12],[-9,-40],[-7,-35],[-5,-25],[-14,-68],[-10,-46],[-86,-405],[-33,-153],[-14,-65],[-15,-68],[-39,-185],[-34,-157],[-14,-70],[-17,-78],[-30,-137],[-30,-140],[-8,-37],[-15,-73],[-15,-67],[-7,-35],[-8,-38],[-12,-53],[-43,-201],[-6,-29],[-8,-37],[-21,-96],[-8,-35],[-7,-34],[-8,-36]],[[50184,17609],[-15,-4],[-13,46],[-14,-7],[-32,4],[-45,18],[-32,34],[-84,90],[-61,55],[-35,40],[-12,26],[-26,10],[-12,14],[-61,24],[-63,-33],[-5,-23],[-2,-13],[-4,-18],[-29,-54],[-5,-15],[-7,-41],[-5,-63],[4,-23],[34,-109],[22,-115],[-1,-15],[0,-11],[-2,-27],[23,-74],[24,-105],[2,-10],[-9,-83],[-24,-102],[-11,-76],[22,-94],[28,-55],[12,-22],[13,-5],[8,-12],[73,-124],[123,-218],[17,-46],[5,-41],[-1,-35],[-5,-19],[-26,-60],[-3,-11],[-5,-15],[-101,-43],[-5,11],[-61,-158],[-12,-31],[-43,-62],[-11,7],[-15,32],[-7,15],[-32,104],[-23,100],[-13,42],[-27,100],[-21,100],[-25,75],[-23,48],[-1,1],[-13,21],[-18,30],[-20,10],[-8,5],[-28,37],[-28,59],[-34,96],[-16,27],[-25,41],[-23,9],[-47,19],[-17,12],[-60,40],[-17,17],[-11,12],[-20,37],[-52,93],[-2,6],[-2,2],[-3,6],[-12,36],[-12,37],[-5,16],[-4,24],[-1,35],[-17,54],[-33,13],[-1,0],[-32,-52],[-7,-62],[-18,-54],[-12,-20],[-9,-14],[-23,-22],[-108,34],[-16,-25],[3,-39],[8,-36],[7,-50],[-4,-49],[-10,-23],[-11,-18],[-20,-10],[-13,1],[-18,10],[-18,13],[-13,10],[-25,20],[-15,1],[-27,-13],[-14,0],[-17,9],[-18,14],[-15,15],[-13,13],[-21,20],[-22,21],[-30,35],[-29,37],[-14,22],[-13,13],[-17,15]],[[48392,17143],[-16,19],[-9,10],[-14,17],[-13,12],[-24,32],[-11,30],[-13,67],[-2,34],[9,26],[20,-11],[13,-17],[8,-12],[5,-7],[12,-9],[13,-7],[12,3],[25,30],[5,44],[-2,58],[-7,46],[-8,28],[-13,50],[-7,22],[-3,10],[-14,34],[-9,23],[-11,38],[-19,53],[-12,34],[-12,33],[-19,51],[-9,29],[-14,37],[-15,19],[-13,21],[-15,27],[-10,25],[-15,34],[-7,18],[-9,24],[-13,39],[-14,37],[-9,29],[-13,27],[-20,42],[-20,44],[-12,23],[-4,6],[-9,23],[-5,48],[-2,45],[7,56],[19,-2],[16,-14],[1,0],[14,-13],[23,-12],[19,-8],[14,-1],[17,10],[9,43],[1,64],[-4,49],[-1,3],[-7,25],[-17,46],[-11,27],[-6,53],[-13,40],[-17,23],[-14,8],[-16,-4],[-17,-15],[-15,-1],[-17,3],[-16,-13],[-15,12],[-16,33],[-2,3],[-21,36],[-27,37],[-3,4],[-6,13],[-5,10],[-16,37],[-16,43],[-15,44],[-21,50],[-20,55],[-12,62],[-5,45],[3,44],[0,45],[-12,34],[-14,37],[-14,49],[-6,31],[-5,32],[-9,60],[-8,49],[-14,33],[-11,47],[-4,62],[0,57],[0,65],[-9,56],[-13,45],[-9,25],[-4,13],[-18,47],[-11,30],[-13,31],[-24,55],[-18,38],[-13,30],[-15,37],[-12,47],[-3,26],[-3,28],[-5,64],[1,15],[3,37],[-11,39],[-13,30],[-1,1],[-8,16],[-4,8],[-17,43],[-5,20],[-4,20],[-9,37],[-10,22],[-21,39],[-16,32],[-11,22],[-9,24],[-11,27],[-11,19],[-4,8],[-5,9],[-23,13],[-14,-28],[-5,-24],[-5,-23],[-9,-46],[-7,-31],[-19,-50],[-20,-16],[-19,24],[-10,42],[-1,2],[-3,46],[-9,31],[-14,33],[-3,12],[-9,32],[-12,53],[-7,31],[-13,62],[-6,26],[-2,9],[-8,29],[-8,21],[-2,4],[-1,0],[-11,25],[-13,16],[-14,7],[-8,0],[-5,0],[-11,-22],[2,-40],[3,-14],[5,-21],[1,-5],[16,-41],[10,-42],[7,-32],[12,-41],[16,-36],[8,-34],[4,-39],[-6,-50],[-4,-12],[-3,-10],[-6,-20],[-20,-37],[-20,-29],[-15,5],[-12,33],[-13,46],[-7,28],[-14,50],[-9,28],[-2,50],[-1,16],[-1,45],[-2,17],[-2,16],[-1,4],[-7,38],[-7,24],[-6,16],[-15,29],[-5,41],[0,8],[1,32],[10,58],[13,54],[0,13],[1,26],[-8,46],[-9,47],[-11,58],[-11,51],[-10,37],[-7,34],[-13,52],[-9,44],[-1,5],[-1,4],[-12,50],[-13,57],[-4,33],[1,24],[0,32],[1,9],[1,26],[5,79],[-7,29],[-10,22],[-2,3],[-6,17],[-10,17],[-8,9],[-4,4],[-36,14],[-19,-27],[-31,-83],[-3,-5],[-32,-51],[-45,14],[-9,3],[-20,21],[-10,19],[-2,3],[-25,22],[-39,16],[-20,3],[-40,-10],[-16,-15],[-4,-6],[-66,24],[-18,37],[-20,65],[-8,72],[-5,79],[-1,14],[3,63],[0,1],[0,1],[-14,44],[-15,1],[-11,-17],[-7,-16],[-7,-13],[-7,-45],[-11,-18],[-17,7],[-17,10],[-3,2],[-8,12],[-60,114],[-6,11],[-13,45],[-6,28],[-4,23],[-1,8],[-6,82],[-10,116],[-1,37],[0,24],[1,19],[2,19],[17,24],[21,4],[22,31],[3,36],[3,40],[-7,41],[-27,93],[-15,32],[-14,18],[-11,35],[-10,34],[-3,19],[8,107],[1,18],[3,52],[-65,10],[-30,-5],[-53,-30],[-3,-4],[-6,-15],[-4,-15],[-3,-24],[-3,-18],[-3,-21],[-6,-45],[0,-1],[-1,-5],[-1,-4],[7,-125],[1,-80],[0,-11],[-7,-10],[-2,1],[-3,2],[-24,16],[-3,2],[-11,-17],[-11,-35],[0,-3],[-3,-15],[-35,-80],[-15,-25],[-7,3],[-18,7],[-5,2],[-21,56],[-11,69],[-16,50],[-38,88],[-2,2],[-45,44],[-1,2],[-18,21],[-3,0],[-34,-4],[-32,-67],[-3,-5],[-5,2],[-4,1],[-4,2],[-11,18],[-18,28],[-4,2],[-4,1],[-1,1],[-9,-10],[-2,-8],[-2,-47],[-1,-7],[0,-14],[10,-57],[3,-17],[-2,-30],[-20,-51],[-2,-5],[-42,-32],[-2,0],[-17,-5],[-24,-2],[-35,5],[-6,5],[-8,6],[-4,11],[-7,19],[-11,45],[-21,124],[-4,55],[3,47]],[[45391,23407],[15,55],[9,24],[11,17],[18,32],[7,29],[-1,55],[-2,35],[-8,77],[-6,35],[-7,37],[-6,40],[-6,35],[-8,27],[-11,35],[-1,36],[0,7],[2,48],[0,71],[1,55],[-21,93],[-41,195],[-13,75],[8,81],[-50,157],[-9,34],[0,2],[-10,41],[12,31],[3,8],[40,107],[18,51],[11,27],[7,29],[10,42],[19,91],[6,33],[-38,94],[-3,44],[0,29],[1,12],[7,41],[11,54],[-3,41],[-9,215],[42,25],[28,16],[15,25],[25,39],[16,100],[-6,31],[-10,40],[-19,29],[-15,49],[-10,26],[-35,104]],[[49007,27509],[0,-34],[-4,-33],[-111,45],[-31,12],[-11,5],[-8,-81],[-10,-98],[-3,-30],[-22,24],[-4,-22],[26,-29],[3,9],[73,-97],[12,-4],[38,-20],[23,-10],[0,-1],[13,-6],[11,-23],[2,-35],[4,-33],[-6,-7],[-5,-6],[-3,-34],[0,-41],[5,-32],[-2,-35],[-5,-44],[3,-34],[-5,-34],[-6,83],[-26,-10],[-24,-12],[3,-41],[30,-19],[23,-92],[7,-61],[9,-54],[32,-37],[14,-19],[10,-17],[1,-2],[15,-21],[11,45],[19,75],[9,42],[22,89],[4,15],[4,13],[21,-7],[13,-4],[24,-9],[8,-2],[35,-13],[44,-45],[13,-14],[14,-14],[1,-1],[53,-53],[16,-16],[20,-20],[16,-16],[24,-22],[15,2],[20,106],[20,107],[6,32],[5,19],[5,23],[-10,51],[35,149],[10,44],[16,72],[26,108],[12,58],[30,137],[12,54],[3,14],[5,21],[-18,37],[-21,45],[-35,72],[-2,4],[-8,17],[-10,20],[-28,57],[-27,57],[-16,32],[-8,17],[-81,-7],[-48,-3],[-18,-2],[-18,-1],[-24,-2],[-29,-2],[-12,-1],[-22,-3],[-25,-3],[-27,-1],[-45,-3],[-46,-7],[-7,-1],[-8,-28],[-9,-24],[-9,-31],[-9,-25],[-10,-35],[1,-38],[-1,-39],[-1,-38],[-13,-30],[-10,-18],[-8,-26]],[[74162,30982],[-10,24],[-13,30],[-6,11],[-11,22],[-41,80],[-14,27],[-11,21],[-30,63],[-15,30],[-17,37],[-13,16],[-19,20],[-14,13],[-6,5],[-26,30],[-8,8],[-7,6],[-15,2],[-24,-8],[-19,-4],[-14,4],[-14,17],[0,1],[-1,1],[-24,28],[-19,17],[-15,21],[-22,27],[-20,23],[-12,-13],[-22,-35],[-15,7],[-16,11],[-27,26],[-16,-10],[-12,-15],[-44,-55],[-14,-41],[-19,21],[-39,-40],[-13,8],[-7,46],[-14,34],[-9,-30],[-17,-10],[-14,-56],[-16,0],[-2,-4],[-22,-76],[-14,-14],[-35,103],[-9,28],[-15,-7],[-3,32],[4,37],[-2,30],[-32,36],[-1,9],[-17,31],[-4,-17],[-6,-10],[-6,-11],[-9,-14],[-6,8],[-12,21],[-6,10],[-40,70],[-13,24],[-3,7],[-14,32],[-15,43],[-15,41],[-11,31],[-14,81],[-4,34],[-7,38],[-8,42],[6,31],[-2,5],[-8,14],[-9,46],[-13,86],[-13,85],[-6,40],[-9,63],[-12,79],[-23,175],[-9,63],[-7,47],[-4,32],[5,35],[-4,14],[-5,19],[-13,52],[-5,34],[-12,98],[-3,66],[-2,49],[-2,54],[-1,35],[-1,40],[-1,40],[-1,36],[0,44],[-1,48],[-1,55],[-1,35],[-1,43],[0,36],[-2,36],[0,20],[0,21],[0,43],[-1,36],[0,69],[0,10],[-1,11],[-7,-5],[-17,-11],[-24,-18],[-32,-20],[-19,-12],[-26,-18],[-17,-12],[-37,-24],[-12,-7],[-8,-6],[0,3],[-3,8],[-1,4],[-17,91],[-7,41],[-9,49],[-9,44],[-11,59],[-10,58],[-17,77],[-4,18],[-19,35],[-7,11],[-2,-5],[-8,-25],[-10,-26],[-11,-25],[-11,-20],[-11,-19],[-20,-31],[-13,-21],[-15,-25],[-13,-20],[-10,-16],[-12,-15],[-12,-13],[-5,-5],[-6,-6],[-2,-1],[-12,-9],[-14,-10],[-11,-9],[-17,-12],[-13,-9],[-13,-10],[-17,-12],[-12,-9],[-13,-5],[-13,-1],[-14,5],[-15,6],[-31,13],[-13,6],[-18,8],[-15,5],[-7,1],[-5,0],[-5,-1],[-7,-2],[-12,-8],[-4,5],[-16,18],[-29,22],[-8,29],[-4,33],[-8,74],[-15,62],[-5,75],[-12,52],[-8,34],[8,7],[34,12],[20,8],[-2,205],[0,65],[-1,25],[-4,31],[-7,51]],[[86551,24876],[-8,-4],[-41,32],[-30,47],[-11,25],[-12,25],[39,41],[28,69],[35,-35],[30,-6],[27,-13],[-13,-51],[-7,-27],[16,-60],[4,-17],[-57,-26]],[[84507,35113],[1,-6],[6,-69],[1,-4],[28,-78],[2,-75],[3,-109],[2,-2],[37,-20],[26,31],[21,-49],[22,-20],[41,-10],[31,-99],[20,-137],[29,-87],[46,-4],[30,-5],[29,-38],[23,15],[40,-15],[32,-87],[27,-60],[28,-83],[-23,-89],[-3,-81],[2,2],[28,37],[54,11],[40,36],[26,-37],[39,-29],[33,-34],[48,45],[25,-62],[-1,-125],[23,-51],[19,-42],[28,-47],[35,14],[33,33],[39,24],[32,-32],[18,-121],[16,-98],[4,-48],[-28,-4],[-41,-101],[42,-23],[29,23],[13,54],[51,40],[42,-8],[-12,-100],[34,-23],[51,-62],[41,-70],[28,5],[21,42]],[[85818,33181],[21,-46],[0,-50],[-8,-58],[-8,-39],[-11,-72],[-13,-65],[-13,-56],[-19,-87],[-12,-56],[-5,-16],[-3,-12],[-14,-59],[-2,-38],[-8,-26],[-22,-28],[-10,-27],[-11,-28],[-1,-37],[-7,-60],[-14,-38],[-4,-36],[33,-114],[-1,-46],[-7,-46],[4,-48],[12,-50],[5,-42],[7,-33],[-2,-55],[-4,-47],[6,-46],[-2,-36],[-2,-43],[11,-24],[1,-19],[0,-24],[2,-35],[-7,-28],[5,-46],[9,-24],[12,-1],[-4,-36],[13,4],[-1,-35],[-8,-33],[11,-26],[11,-13],[-3,-38],[5,-37],[5,-74],[-22,-34]],[[85743,31118],[-10,-1],[-45,-3],[-34,-85],[29,-89],[28,-46],[-23,-102],[21,-68],[-20,-37],[-33,-56],[15,-85],[-52,-80],[23,-63],[0,-66],[7,-64],[-5,-77],[-8,-84],[5,-116],[46,-65],[66,-45],[32,-41],[56,-26],[12,-65],[54,19],[62,-39],[32,-24],[16,-66],[38,33],[23,-17],[4,-106],[1,-95],[-18,-100],[-34,-89],[17,-25],[26,-71],[8,-112],[-3,-101],[-15,-77],[12,-110],[5,-75],[-4,-100],[38,-76],[31,-34],[8,-94],[6,-72],[-32,-32],[-29,-1],[-24,70],[-41,69],[-27,54],[-25,93],[-23,85],[-25,117],[-42,-54],[-20,-1],[-23,-14],[-31,-22],[-39,11],[-36,9],[-35,15],[-46,-21],[11,127],[19,59],[-26,69],[-37,-3],[-26,71],[-4,95],[-25,84],[-35,2],[-24,49],[-51,-22],[-31,14],[-18,132],[-24,58],[-29,-10],[-32,-59],[-38,74],[-26,16],[-17,75],[-29,84],[-15,105],[10,84],[-24,28],[-17,58],[-24,-32],[10,-79],[-6,-85],[8,-118],[34,-75],[-20,-67],[-32,-8],[25,-70],[35,15],[24,-63],[35,-41],[15,-99],[24,13],[33,-16],[39,-10],[19,-74],[30,-6],[30,1],[32,11],[-7,-68],[-17,-53],[30,3],[28,-12],[16,-33],[-37,-55],[6,-91],[-18,-68],[-19,-67],[-2,-111],[-11,-85],[0,-63],[-15,-84],[-8,-72],[-34,-29],[-30,-23],[-35,-17],[-21,101],[-32,5],[3,-91],[4,-86],[44,-54],[64,15],[35,37],[32,80],[10,59],[22,-15],[36,-58],[24,-81],[11,-124],[39,24],[44,26],[42,28],[12,-98],[21,27],[31,47],[-23,99],[12,83],[34,-112],[33,-100],[31,-106],[39,-91],[42,-49],[45,-56],[-25,-91],[39,-97],[39,-34],[28,-69],[38,-53],[24,-15],[8,129],[40,16],[-22,-100],[26,-53],[33,-32],[37,-3],[-3,-104],[-26,-61],[-6,-94],[-36,18],[-19,67],[-21,43],[-51,-68],[-8,-142],[27,-8],[9,-66],[32,-64],[-13,-64],[-30,-26],[-30,-25],[-43,6],[-29,36],[-9,68],[-29,26],[-22,-39],[-30,33],[-17,92],[-36,-110],[-37,-58],[-21,111],[16,79],[-36,103],[-13,79],[-28,96],[0,-79],[12,-58],[-18,-47],[-45,-37],[-12,-55],[-21,-9],[-24,63],[-25,-76],[-13,-43],[-20,-72],[43,-54],[-28,-49],[-31,-17],[-22,-9],[-18,-49],[-20,44],[-29,82],[-22,81],[5,69],[-23,22],[9,77],[24,45],[-29,22],[-21,75],[-15,60],[-12,78],[-23,-12],[-5,61],[-34,8],[-25,53],[-15,-85],[27,-24],[20,-15],[30,-66],[19,-99],[14,-100],[-27,-93],[33,-77],[10,-83],[18,-93],[-46,-60],[-29,-38],[-31,-18],[-19,-56],[-25,-25],[-7,-89],[23,41],[32,28],[26,39],[28,36],[40,38],[27,47],[16,-97],[38,-73],[37,34],[34,66],[20,-60],[16,55],[6,74],[25,-12],[36,17],[36,44],[21,-79],[23,-26],[26,-34],[40,-42],[-49,-37],[-34,3],[-24,19],[-20,7],[-27,-36],[34,-71],[30,-41],[29,-16],[-28,-66],[-11,-63],[-27,-10],[-58,-28],[-31,-23],[-29,6],[-28,31],[-33,-18],[-38,-14],[-43,-27],[8,-85],[39,19],[43,29],[26,-74],[30,11],[14,-49],[29,-22],[-14,-71],[25,-24],[-11,-72],[-34,-19],[-7,-103],[-23,-31],[-27,-13],[-20,-91],[31,11],[34,-2],[28,58],[18,78],[28,19],[16,-88],[14,-99],[35,14],[-27,99],[-4,52],[-7,87],[5,147],[18,71],[31,-45],[18,50],[23,-56],[20,-74],[25,51],[-22,84],[3,63],[26,-33],[25,45],[-32,56],[3,79],[54,-1],[-25,61],[24,41],[26,-31],[27,-17],[-3,123],[28,12],[30,-54],[34,-52],[33,-19],[32,-2],[28,-27],[29,30],[23,-6],[36,18],[-30,45],[-5,8],[45,27],[25,18],[26,23],[9,21],[19,48],[38,10],[32,-10],[6,-25],[9,-43],[28,-35],[17,-36],[14,-29],[-27,-51],[-29,-55],[-9,2],[-25,4],[-7,-23],[-14,-45],[-29,49],[-5,-41],[-3,-33],[-36,-48],[6,-7],[38,-45],[28,-4],[19,-2],[-6,-105],[33,-11],[44,-33],[5,-3],[19,64],[13,45],[15,-103],[7,-33],[7,-30],[9,-11],[19,-24],[-6,-38],[-5,-36],[1,-49],[0,-43],[-16,-91],[32,-5],[36,58],[0,-8],[12,-120],[4,-58],[2,-23],[-26,7],[-8,2],[-7,5],[-38,24],[-50,-10],[22,-69],[-7,-26],[-11,-42],[40,-22],[-32,-51],[-19,-30],[-9,-14],[-5,-118],[21,-110],[26,49],[27,-83],[-23,-46],[-28,2],[-26,-32],[-41,44],[-32,13],[-31,-13],[-47,-13],[-33,-2],[-40,1],[-34,-3],[-39,1],[-38,15],[-36,-25],[-27,41],[0,91],[-55,-12],[31,-68],[-13,-127],[-33,-90],[-28,-36],[-32,-52],[-35,-45],[-66,-27],[-36,-4],[-36,-20],[-36,-39],[-25,-3],[-34,-21],[-31,-23],[-28,-44],[-34,-6],[-46,34],[-31,13],[-32,-11],[-33,-32],[-25,52],[-16,98],[-41,-1],[-41,-73],[-38,-38],[-32,-49],[-21,-10],[-22,-11],[-31,-20],[-24,-47],[-29,-5],[-14,-2],[-15,110],[-4,128],[-1,104],[-16,96],[-14,135],[6,71],[-1,76],[-13,85],[-5,102],[-40,44],[-34,72],[-35,97],[-25,76],[-25,-21],[-33,78],[-28,-2],[-20,-17],[-37,-45],[-26,113],[-12,96],[33,15],[5,163],[-3,127],[-17,-69],[-22,51],[-31,19],[12,-67],[16,-87],[-34,-20],[-28,-34],[-26,4],[-22,30],[-24,41],[-23,45],[19,46],[22,25],[33,58],[-31,2],[-24,-11],[6,75],[-20,53],[-33,54],[2,-90],[1,-75],[-23,-76],[-39,59],[-4,80],[-35,110],[-12,99],[6,64],[44,-5],[31,60],[-34,48],[-17,63],[-21,77],[-14,-68],[-28,15],[-18,43],[-15,59],[-6,77],[-26,46],[-19,59],[-11,60],[9,79],[22,29],[26,59],[3,49],[2,22],[-31,-42],[-20,-25],[-22,-36],[-20,-56],[-19,-51],[-5,-105],[18,-52],[38,-76],[-16,-87],[-58,97],[-28,105],[-24,121],[-33,54],[-38,25],[-18,67],[-13,138],[9,145],[-30,64],[-32,60],[-27,65],[-22,100],[-34,13],[-33,50],[-32,61],[-35,78],[-26,98],[-16,99],[-16,66],[12,52],[-30,26],[-27,59],[-25,40],[-18,92],[-19,58],[-23,56],[-17,43],[-24,85],[-32,120],[-24,90],[-25,79],[-30,70],[-35,67],[-23,49],[-20,34],[-31,61],[-19,70],[-24,98],[-32,91],[-18,75],[0,70],[20,67],[7,64],[-4,7],[-22,53],[-10,79],[14,92],[-60,29],[-7,111],[-4,-23],[-19,-107],[-35,-63],[-20,-6],[-10,-3],[-8,7],[-21,18],[-46,56],[-4,15],[-27,94],[-19,31],[-5,73],[-28,28],[-28,26],[-29,96],[33,92],[19,72],[-1,1],[-19,33],[-33,41],[-28,-10],[-20,-26],[-25,-23],[-30,69],[-26,82],[-11,95],[-4,104],[7,86],[20,95],[-26,78],[-29,11],[-10,54],[0,1]],[[76191,28639],[22,-97],[16,-128],[6,-45],[-2,-85],[-38,-203],[-25,-76],[-24,-21],[-4,-70],[-19,-30],[-19,-39],[-6,-12],[-9,-8],[-22,-20],[-6,-17],[-19,-54],[-13,-105],[-20,-38],[-23,-69],[-20,117],[-46,152],[16,39],[13,32],[8,24],[8,28],[8,25],[7,41],[5,36],[1,44],[-1,45],[-1,35],[-2,47],[-2,68],[-2,34],[0,2],[0,12],[0,21],[-1,31],[-1,15],[2,46],[0,31],[7,50],[18,56],[9,10],[3,3],[2,4],[8,13],[10,18],[28,59],[22,-5],[7,-2],[31,-14],[7,-31],[-2,35],[21,17],[42,-21]],[[75429,28891],[22,-28],[7,24],[36,115],[2,-36],[4,-36],[1,-35],[11,-27],[9,-22],[13,-30],[-11,-91],[-10,-21],[-10,-107],[-9,-56],[-8,-26],[-15,-26],[-13,-29],[2,-37],[2,-39],[1,-38],[1,-34],[0,-35],[3,-36],[1,-36],[7,-36],[5,-34],[5,-31],[11,-33],[8,-27],[9,-30],[18,-63],[20,-18],[20,-24],[11,-14],[12,-14],[11,-13],[23,-25],[12,-13],[28,-34],[12,-15],[20,-12],[12,-9],[18,-13],[12,-11],[12,-4],[15,-1],[27,2],[14,0],[17,2],[12,0],[18,7],[65,-81],[32,-100],[3,-136],[-29,-159],[-61,-232],[-65,-94],[-67,31],[-21,-81],[-2,-8],[-36,-191],[-11,-59],[1,-31],[11,-199],[-24,-2],[-7,0],[-4,-3],[-11,-8],[-3,-2],[-12,9],[-15,0],[-15,-4],[-10,-3],[-2,0],[-29,-11],[-16,-6],[-13,-2],[-5,-1],[-7,-2],[-11,-13],[-2,0],[-10,-3],[-20,-6],[-30,-33],[0,-1],[-17,-33],[-13,-26]],[[75401,26252],[-22,1],[-13,-7],[-13,1],[-16,7],[-13,1],[-18,18],[-30,39],[-17,13],[-12,9],[-13,19],[-15,21],[-13,23],[-12,16],[-9,-32]],[[75185,26381],[-11,17],[-5,7],[-12,20],[-20,41],[-13,4],[-15,-6],[-15,-9],[-12,-7],[-14,-7],[-20,-16],[-19,-17],[-13,-18],[-18,-28],[-17,-38],[-9,-22],[-5,-33],[-1,-35],[-1,-50],[-1,-37],[-3,-46],[4,-41],[3,-40],[1,-49],[1,-46],[0,-40],[-4,-34],[-7,-55],[-5,-34],[-5,-40],[-5,-37],[-3,-36],[-5,-57],[0,-1],[-3,-34],[-2,-38],[-1,-51],[-4,-51],[-2,-39],[-7,-58],[-6,-34],[-8,-36],[-9,-26],[-11,-29],[0,-1],[-6,-15],[-4,-8],[-13,-24],[-16,-25],[-16,-25],[-17,-25],[-11,-16],[-12,-20],[-14,-31],[-9,-24],[-1,-4],[-20,-60],[-10,-34],[-9,-35],[-7,-44],[-5,-45],[-2,-16],[-2,-17],[-1,-6],[-5,-31],[-7,-46],[-4,-38],[-5,-59],[-5,-48],[-5,-83],[-1,-46],[0,-13],[0,-14],[0,-15],[2,-47],[4,-55],[1,-42],[0,-35],[1,-38],[1,-36]],[[74685,24074],[-9,-41],[-11,-32],[-13,-29],[-15,-35],[-14,-28],[-11,-20],[-12,-23],[-22,-24],[-16,-3],[-13,0],[-18,8],[-5,32],[-9,27],[-17,-12],[-11,-22],[-15,-13],[-10,-12],[-2,-3],[-13,-9],[-13,-1],[-13,5],[-19,11],[-14,3],[-12,-16],[-13,-24]],[[74365,23813],[9,45],[10,29],[11,14],[13,10],[13,-12],[15,-10],[15,-5],[14,-2],[12,5],[14,26],[12,20],[16,4],[31,3],[37,9],[15,23],[14,28],[11,33],[8,28],[8,32],[5,45],[4,55],[-2,75],[0,48],[0,26],[1,13],[0,7],[1,64],[0,34],[-1,30],[0,18],[0,43],[4,37],[1,41],[-2,47],[-1,39],[0,45],[1,50],[3,43],[8,40],[8,35],[0,34],[7,29],[8,37],[9,39],[8,31],[15,20],[13,24],[11,15],[13,15],[17,21],[18,17],[11,11],[11,24],[14,28],[14,24],[9,28],[5,34],[0,54],[-5,36],[-10,29],[-11,30],[-10,32],[3,39],[0,3],[7,32],[-1,37],[-6,30],[-16,42],[-10,28],[-12,34],[0,45],[1,36],[1,13],[-1,26],[0,-1],[-5,-4],[-16,-16],[-9,-10],[-8,-7],[-17,-17],[-9,-41],[-12,-71],[-5,-33],[-6,-49],[-12,-65],[-5,-65],[-7,-56],[-9,-45],[-12,-13],[-13,9],[-14,11],[-12,14],[-12,4],[-13,21],[-16,26],[-13,9],[-13,10],[-11,4],[-6,2],[-15,-27],[-10,-65],[2,-36],[-5,-34],[-16,5],[-22,25],[-14,12],[-4,1],[-10,0],[-12,-6],[-18,-15],[-11,-14],[-10,-28],[-8,-38],[-6,-30],[8,-36],[7,-37],[-8,-29],[14,-27],[16,-5],[23,-23],[-4,-40],[-4,-58],[-16,-22],[-5,-2],[-11,-4],[-12,-4],[-15,21],[-10,21],[-14,31],[-5,16],[-4,12],[-6,36],[-4,77],[-2,50],[-8,41],[-9,29],[-12,19],[-12,19],[-7,11],[-4,-2],[-2,3],[-6,12],[-3,1],[-3,-1],[-15,-19],[-12,-14],[-18,8],[-59,25],[-33,15],[-22,-21],[6,-85],[-3,-22],[-7,-50],[44,-137],[-45,30],[-14,9],[-14,9],[-19,13],[-10,4],[-1,-16],[0,-9],[0,-9],[1,-28],[11,-34],[10,-31],[9,-32],[36,-121],[19,-91],[23,-105],[10,8],[1,8],[-12,11],[-2,6],[0,8],[-1,10],[1,7],[1,1],[3,-1],[6,-8],[4,-4],[2,-1],[3,5],[0,14],[-4,20],[1,4],[4,7],[4,-8],[2,-11],[2,-5],[4,6],[9,24],[10,18],[13,-28],[11,-17],[13,-27],[1,-2],[7,-40],[3,-38],[-1,-45],[-6,-82],[-3,-43],[-11,-124],[-3,-35],[-3,-34],[-4,-41],[-4,-41],[-2,-51],[4,-34],[3,-41],[5,-39],[5,-31],[8,-47],[1,-42],[-3,-61],[-3,-55],[-3,-43],[-2,-37],[-2,-41]],[[74213,23670],[-17,-22],[-13,-6],[-12,16],[-15,-27],[-16,-14],[-11,-28],[-13,-19],[-13,-15],[-18,-7],[-12,3],[-11,-24],[-9,-34],[-13,-16],[-17,-27],[-7,-31],[0,-1],[-6,-35],[-13,-7],[-14,-10],[-14,-13],[-15,-1],[-15,-8],[-14,-8],[-13,-10],[-12,-6],[-13,-6],[-15,-11],[-19,8],[-12,2]],[[73841,23313],[-20,-5],[-20,2],[-13,1],[-12,1],[-13,8],[-14,8],[-17,0],[-19,7],[-13,5],[-17,12],[-17,17],[-13,10],[-16,11],[-12,8],[-13,1],[-15,-2],[-15,1],[-12,8],[-19,4],[-17,-8],[-15,-4],[-12,-6],[-12,-5],[-13,-6],[-16,-6],[-12,2],[-19,5],[-13,5],[-14,4],[-14,1],[-13,8],[-13,-3],[-15,-2],[-14,-2],[-13,-3],[-12,-2],[-13,-8],[-11,-13],[-13,-21],[-17,-12],[-15,6],[-10,19],[-12,4],[-15,-17],[-7,-30],[-11,-27],[-14,-11],[-12,-7],[-12,0],[-5,-5],[-7,-6],[-13,1],[-13,-5],[-10,-19],[-13,-25],[-15,-21],[-14,-16],[-16,-21],[-29,-19],[-14,-7],[-13,1],[-24,-12],[-12,11],[-11,24],[-6,43],[-9,33],[0,1],[-8,28],[-4,37],[-10,28],[-12,11],[-12,13],[-13,14],[-14,14],[-17,17],[-12,13],[-22,23],[-15,11],[-15,-7],[-17,-1],[-12,6],[-21,2],[-19,-6],[-13,6],[-30,18],[-13,-9],[-18,-6],[-30,-1],[-19,-3],[-31,-22],[-15,-38],[-16,9],[-13,27],[-7,43],[-4,35],[-7,42],[-10,54],[-10,22],[-12,2],[-17,-5],[-16,24],[1,42],[1,46],[0,51],[-1,37],[-4,50],[-12,35],[-17,0],[-9,-25],[-10,-47],[-10,-26],[-14,-14],[-21,2],[-15,12],[-14,19],[-12,21],[-7,29],[-5,53],[-2,55],[-4,34],[-13,32],[-11,28],[-8,27],[-10,21],[-14,5],[-13,-3],[-14,-4],[-15,5],[-12,10],[-12,52],[-10,52],[-13,21],[-16,16],[-18,20],[-16,26],[-15,20],[-17,14],[-11,27],[-6,36],[-8,54],[-5,36],[-4,33],[-4,33],[-2,53],[0,39],[-4,64],[-11,26],[-12,33],[-13,39],[-24,41],[-19,23],[-12,23],[-11,29],[-11,18],[-16,9],[-12,-4],[-25,-30],[-9,-27],[-11,-47],[-8,-24],[-18,-15],[-14,3],[-12,2],[-19,5],[-14,12],[-17,23],[-21,54],[-14,11],[-12,-4],[-12,-4],[-12,-9],[-14,-20],[-19,-36],[-19,-21],[-13,-30],[-45,-86],[-17,7],[-12,16],[-13,10],[-13,4],[-25,5],[-12,5]],[[71437,24762],[-15,18],[-10,19],[-18,37],[-10,37],[-14,74],[-10,62],[-11,34],[-18,41],[-15,38],[-13,49],[-7,56],[-12,150],[-15,160],[-23,132],[-9,28],[-20,13],[-16,-5],[-18,-7],[-17,3],[-15,2],[-13,4],[-25,-2],[-27,-9],[-18,-11],[-13,-39],[-5,-48],[-5,-76],[-3,-46],[-11,-50],[-10,-36],[-16,-36],[-14,-13],[-12,-4],[-17,-3],[-15,-11],[-13,1],[-17,58],[-25,88],[-12,39],[-16,106],[-6,66],[-9,52],[-8,46],[-7,43],[-23,71],[-7,7],[-7,9],[-15,27],[-18,18],[-17,3],[-34,-8],[-15,-13],[-26,-50],[-13,-38],[-9,-50],[-5,-46],[-2,-33],[0,-73],[3,-35],[17,-59],[2,-42],[-10,-41],[-10,-32],[-16,-32],[-15,-21],[-14,-2],[-12,10],[-19,21],[-17,20],[-14,12],[-17,24],[-15,5],[-14,-5],[-25,-15],[-17,-13],[-13,-14],[-10,-24],[-2,-35],[-1,-44],[-1,-67],[-4,-79],[-10,-45],[-7,-35],[-7,-62],[4,-34],[3,-39],[-7,-43],[-15,-37],[-18,-28],[-24,-25],[-14,-9],[-13,3],[-24,19],[-15,7],[-13,3],[-13,1],[-15,1],[-15,3],[-60,27],[-22,24],[-16,15],[-20,30],[-13,30],[-13,38],[-12,30],[-15,51],[-5,52],[2,79],[0,38],[-1,44],[-2,38],[-7,68],[-11,38],[-12,29],[-18,42],[-17,30],[-14,20],[-14,34],[-17,35],[-12,30],[-18,44],[-16,32],[-25,46],[-13,33],[-13,19],[-19,22],[-11,10],[-12,14],[-30,22],[-22,9],[-18,3],[-12,-4],[-26,22],[-38,57],[-14,23],[-13,22],[-16,28],[-15,27],[-8,84],[-2,37],[-3,43],[-8,57],[-2,35],[-3,42],[-1,42],[2,52],[8,25],[12,17],[13,14],[13,17],[18,13],[13,-2],[13,6],[8,36],[6,35],[6,31],[9,30],[12,30],[12,12],[10,38],[-7,39],[-13,12],[-10,25],[-1,50],[16,47],[10,78],[-13,53],[-14,21],[-23,11],[-12,14],[-19,15],[-12,-10],[-12,4],[-18,32],[-18,9],[-12,-1],[-22,3],[-18,2],[-15,6],[-14,19],[-19,18],[-27,12],[-24,8],[-19,2],[-38,-2],[-14,4],[-24,-15],[-32,-6],[-44,15],[-13,0],[-21,5],[-13,20],[-11,30],[-21,36],[-14,20],[-17,27],[-22,26],[-13,20],[-28,31],[-14,37],[-8,30],[-6,33],[-3,37],[7,157],[3,30],[-6,19],[-35,108],[-8,15],[-17,30],[-9,24],[-10,23],[-24,55],[-11,13],[-22,11],[-19,2],[-7,0],[-61,-6],[-17,-7],[-9,-4],[-46,92],[-5,37],[2,34],[6,36],[4,41],[-2,60],[-3,45],[-3,54],[4,41],[1,35],[1,39],[-5,40],[-5,31],[-9,77],[1,57],[14,56],[9,24],[15,19],[8,37],[3,48],[7,35],[3,50],[16,23],[22,-24],[17,4],[13,26],[2,55],[-29,104],[-17,50],[-7,38],[0,39],[2,39],[-6,53],[-2,63],[-5,37],[-9,39],[-5,36],[-2,35],[-4,39],[-5,38],[-3,69],[-3,35],[-1,42],[4,41],[10,22],[11,17],[13,5],[12,-18],[16,-12],[12,-10],[14,1],[15,-10],[21,-22],[16,-20],[15,-12],[14,-9],[17,-17],[15,3],[14,23],[11,58],[11,43]],[[60245,29304],[-11,-227],[-10,-188],[-2,-35],[-3,-52],[-2,-39],[-2,-44],[-3,-46],[-2,-34],[-6,-116],[-7,-124],[-7,-118],[-7,-130],[-9,-207],[-5,-95],[-3,-77],[-3,-66],[8,-43],[4,-34],[12,-20],[15,-17],[15,-17],[12,-19],[11,-27],[3,-44],[-10,-24],[-16,-34],[-34,-60],[-13,-27],[-5,-33],[-2,-47],[-10,-21],[-14,11],[-13,-2],[-9,-24],[-10,-36],[-14,-10],[-14,13],[-13,-23],[-2,-44],[-2,-34],[-2,-34],[-5,-32],[-11,-36],[-10,-29],[-11,-42],[-10,-21],[-17,-21],[-19,-16],[-11,-17],[-12,-9],[-13,-16],[-17,-21],[-12,-22],[-22,-21],[-13,-20],[-12,-15],[-14,-33],[-10,-30],[-14,-37],[-13,-40],[-5,-34],[-6,-34],[-5,-32],[-9,-31],[-7,-30],[-6,-33],[-5,-31],[-6,-36],[-6,-32],[-6,-37],[-2,-35],[-8,-32],[-8,-27],[-9,-26],[-9,-32],[-11,-21],[-10,-18],[-11,-21],[0,-39],[-3,-33],[-12,-11],[-11,-12],[-11,-24],[-10,-19],[-5,-30],[-7,-34],[-4,-34],[-8,-26],[-14,-14],[-13,-15],[-15,-23],[-7,-28],[-13,-41],[-10,-32],[-10,-36],[-6,-29],[-11,-25],[-11,-26],[-8,-35],[-8,-26],[-7,-31],[-14,-58],[-6,-34],[-8,-26],[-9,-25],[-10,-21],[-9,-27],[-10,-18],[-12,-28],[-11,-42],[-8,-33],[-9,-31],[-11,-48],[-8,-24],[-9,-31],[-5,-12],[-5,-12],[-7,-36],[-10,-17],[-13,-23],[-7,-32],[-15,-62],[-13,-54],[-9,-41],[-9,-39],[-7,-30],[-8,-53],[-3,-26],[3,-37],[-2,-33],[-5,-35],[2,-35],[1,-6],[3,-28],[0,-36],[-6,-33],[-1,-4],[-13,-39],[-6,-41]],[[59212,24203],[-16,-19],[-2,-2],[-26,-22],[-12,-7],[-16,-8],[-12,-5],[-15,-8],[-12,-13],[-17,-47],[-17,-50],[-10,-19],[-13,-9],[-13,-8],[-16,-12],[-13,-16],[-13,-13],[-14,-16],[-11,-15],[-11,-17],[-25,-45],[-14,-13],[-14,-28],[-15,-12],[-16,10],[-12,17],[-12,10],[-13,4],[-12,-10],[-13,-19],[-20,-23],[-13,3],[-16,11],[-12,-15],[-10,-23],[-23,-59],[-7,-39],[-24,-215],[-9,-45],[-50,-114],[-12,-20],[-12,-19],[-12,-23],[-12,12],[-13,30],[-14,7],[-12,0],[-14,18],[-8,35],[-15,38],[-12,-5],[-19,-6],[-15,-10],[-14,-15],[-17,-28],[-20,-30],[-13,-15],[-7,-6],[-17,-14],[-12,16],[-7,30],[-11,19],[-14,10],[-11,21],[-5,32],[-10,25],[-19,35],[-9,27],[-11,26],[-10,18],[-16,20],[-12,7],[-28,18],[-12,2],[-14,-10],[-12,-10],[-14,-8],[-20,1],[-23,18],[-13,-2],[-13,-14],[-11,-17],[-18,-33],[-15,-32],[-24,-66],[-26,-74],[-10,-26],[-21,-47],[-12,-28],[-26,-52],[-16,-53],[-13,-50],[-21,-68],[-31,-96],[-60,-194],[-12,-30],[-19,-31],[-24,-26],[-13,9],[-46,29],[-104,65],[-27,17]],[[57520,22719],[-17,11],[-60,38],[-79,50],[-78,50],[-147,99],[-9,5],[-10,61],[1,96],[18,53],[9,61],[5,85],[4,41],[4,54],[-14,56],[-13,59],[-7,50],[-9,69],[-5,33],[-10,67],[-5,33],[-7,41],[-7,36],[-10,23],[-13,26],[-12,14],[-17,14],[-22,20],[-15,15],[-20,18],[-12,9],[-14,8],[-17,6],[-13,3],[-16,9],[-8,29],[-9,23],[-12,18],[-12,10],[-21,7],[-18,5],[-19,6],[-13,11],[-14,19],[-15,16],[-13,6],[-12,10],[-13,8],[-16,-1],[-12,-14],[-11,-13],[-18,-20],[-15,-7],[-25,-18],[-10,-20],[-16,-27],[-12,-6],[-12,-15],[-12,-17],[-20,-22],[-14,6],[-9,22],[-12,13],[-14,0],[-15,0],[-12,-13],[-11,-21],[-11,-44],[-14,-1],[-17,13],[-10,23],[-8,34],[-11,22],[-6,17],[-3,10],[-10,27],[-6,32],[-6,44],[-2,46],[1,34],[0,41],[1,50],[1,40],[1,60],[3,41],[6,52],[-3,54],[-6,34],[4,34],[1,36],[-8,29],[-20,39],[-12,50],[-3,34],[-3,50],[-5,31],[-14,51],[-12,49],[-4,33],[-6,67],[-7,53],[-9,32],[-9,28],[-8,28],[-11,19],[-12,18],[-19,26],[-12,14],[-16,19],[-12,4],[-22,7],[9,39],[1,114],[2,111],[-21,-22],[-13,-3],[-27,-16],[-43,-1],[-4,80],[-7,138],[-3,54],[-9,176],[-5,87],[-6,117],[-5,94],[-1,9],[-2,50],[-13,67],[-18,91],[-6,31],[-26,132],[-12,59],[-9,46],[-13,70],[-7,34],[-27,133],[-12,67],[-11,57],[-7,35],[-18,91],[-3,14],[-7,36],[-22,115],[-11,56],[-7,37],[-10,47],[-4,20],[-14,70],[-14,77],[-8,41],[-16,77],[-18,92],[-12,59],[-20,102],[-21,105],[-9,48],[-12,61],[-26,119],[-24,121],[-17,88],[-23,112],[-8,41],[-19,98],[-18,90],[-16,85],[-23,105],[-6,30],[-28,126],[-15,77],[-6,32],[-75,388],[-28,147],[-6,31],[-49,236],[-14,64],[-1,2]],[[91645,18783],[17,-64],[-16,-54],[-21,-31],[-8,-13],[-17,10],[-13,8],[-7,28],[-8,35],[-6,99],[22,-38],[7,42],[8,52],[-7,133],[31,-89],[18,-118]],[[91297,19193],[21,-61],[37,57],[9,-32],[14,-49],[3,-8],[38,-59],[20,20],[30,-9],[28,-9],[23,8],[13,-27],[13,-26],[0,-42],[0,-59],[-1,-29],[-2,-30],[-21,-39],[-31,-22],[-21,-62],[-20,-67],[-11,-15],[-43,-55],[-34,22],[-28,39],[-31,75],[-6,54],[-9,3],[-13,3],[-6,20],[-11,36],[-3,10],[-7,52],[-7,53],[1,128],[11,68],[6,36],[7,11],[22,32],[9,-27]],[[91852,20364],[-14,-56],[-24,70],[26,90],[37,15],[14,-99],[-39,-20]],[[92402,20174],[-23,-67],[-29,19],[-14,-62],[-4,-61],[-19,-78],[-21,-58],[-20,-51],[-27,-56],[-43,-37],[-44,-39],[-39,-46],[-27,-61],[-165,-159],[-21,300],[26,-59],[27,-66],[40,-6],[2,24],[4,55],[25,94],[21,46],[8,29],[12,39],[3,14],[12,48],[15,51],[14,76],[24,24],[32,21],[12,8],[33,16],[34,26],[-11,17],[-18,28],[3,106],[5,10],[-14,126],[72,59],[40,34],[103,184],[7,14],[144,264],[50,60],[4,4],[35,-37],[0,-21],[11,-4],[1,-64],[1,-31],[-26,-99],[-18,-48],[-12,-33],[-13,-31],[-13,-30],[-25,-59],[-44,-112],[-40,-95],[-26,-59],[-5,-10],[-27,-67],[-32,-90]],[[92381,21199],[41,-34],[34,61],[27,1],[24,14],[6,-4],[25,-19],[0,-16],[0,-38],[-14,-64],[-32,-75],[-4,3],[-29,-93],[-106,28],[-25,171],[-18,5],[-34,-38],[-19,259],[27,52],[40,78],[43,-41],[3,-1],[2,-1],[4,-1],[12,-3],[32,-9],[0,-83],[-33,-128],[-6,-24]],[[92786,21534],[7,-151],[-7,-33],[57,-73],[-23,-58],[-41,-105],[-41,-105],[-29,148],[0,28],[-2,54],[-2,39],[-16,16],[-18,19],[-35,-12],[-34,-16],[8,68],[3,72],[20,14],[25,28],[4,4],[39,-19],[13,7],[13,7],[13,46],[11,34],[6,97],[8,118],[6,30],[7,31],[35,9],[-11,-53],[-3,-26],[-5,-55],[-9,-49],[-13,-70],[14,-44]],[[92996,21903],[42,-38],[4,22],[24,-157],[-4,-12],[-7,-71],[-166,-266],[-17,50],[-29,78],[-21,153],[17,59],[19,52],[25,34],[54,17],[40,78],[13,0],[6,1]],[[92789,22575],[-26,-21],[-4,14],[-17,52],[10,90],[0,50],[2,-2],[18,-16],[28,-89],[-11,-78]],[[93346,22784],[-6,-116],[-5,-60],[-8,-87],[-31,-116],[-30,-13],[-5,-27],[-12,-70],[-18,-47],[-8,-20],[-17,-45],[-10,-29],[-27,-83],[-37,-72],[-14,-4],[-19,-5],[-37,52],[-26,42],[-24,-41],[-4,-6],[-9,-2],[-17,-3],[-12,-3],[-32,41],[0,-64],[-13,-42],[-38,-64],[-37,-30],[0,36],[1,43],[18,46],[12,32],[15,96],[-21,48],[-3,-7],[-16,-36],[-43,-82],[-44,-106],[-30,-18],[-11,-8],[-5,-55],[-3,-33],[14,-48],[6,-72],[-19,-65],[-8,32],[-13,52],[-37,-29],[-39,20],[10,-69],[-10,1],[-16,3],[-24,-29],[-7,-4],[-19,-15],[-3,-3],[-13,-18],[-14,-22],[-30,5],[-2,-91],[2,-28],[3,-47],[23,-89],[-20,-12],[-8,10],[-18,41],[-15,58],[-9,72],[-16,56],[-1,44],[-2,69],[24,148],[25,86],[22,99],[45,124],[23,57],[9,22],[6,23],[6,20],[23,43],[37,13],[29,31],[13,49],[16,8],[24,11],[4,3],[5,5],[20,15],[19,25],[7,5],[11,9],[25,11],[13,-77],[6,-33],[6,-84],[15,87],[17,123],[7,10],[25,35],[28,21],[15,11],[33,17],[19,11],[1,0],[27,17],[19,24],[7,8],[31,7],[24,42],[28,27],[39,-6],[16,52],[12,39],[34,52],[50,64],[9,-9],[33,-34],[3,-42],[1,-33]],[[93361,23765],[11,-62],[10,-60],[6,-81],[0,-20],[0,-1],[2,-39],[1,-36],[-1,-8],[-7,-91],[-1,-10],[-13,-100],[-17,-95],[-22,-117],[-27,-37],[-37,17],[-25,-12],[-23,-18],[-30,-29],[-23,-30],[-30,-16],[-47,-68],[-32,-61],[-39,0],[-12,-6],[-27,-14],[-40,24],[-27,37],[-24,62],[1,34],[2,55],[-34,76],[33,83],[-11,73],[11,71],[41,-140],[0,-1],[18,-39],[17,-23],[33,-47],[42,8],[11,2],[9,-2],[19,-4],[25,88],[-27,-1],[-6,91],[-6,34],[-14,76],[-4,30],[-6,41],[22,29],[20,7],[4,2],[15,-78],[29,-45],[31,2],[31,23],[11,8],[36,74],[0,7],[0,22],[0,60],[-24,44],[-14,33],[-17,40],[29,76],[24,-65],[25,80],[-26,42],[8,15],[19,35],[35,-65],[26,37],[-4,82],[18,-22],[10,-13],[12,-64]],[[93168,23688],[-6,-19],[-20,6],[-37,-46],[0,-1],[-20,-36],[-18,32],[16,61],[1,30],[2,52],[26,90],[27,41],[26,-4],[25,-54],[10,-19],[11,-18],[-27,-70],[-16,-45]],[[92176,24987],[-1,-117],[-28,3],[-8,113],[2,34],[2,33],[8,63],[3,19],[8,57],[2,56],[1,14],[25,-61],[-3,-47],[-6,-76],[-5,-91]],[[93075,25177],[0,-36],[-13,-8],[-5,-2],[-36,33],[-43,-31],[-34,8],[-27,0],[-33,-9],[-26,-66],[-29,-15],[-3,16],[-12,58],[17,122],[36,15],[4,2],[28,58],[11,62],[-2,108],[4,64],[28,17],[20,12],[21,-75],[8,-31],[39,-15],[15,-94],[19,-66],[13,-82],[0,-45]],[[92493,25697],[16,-48],[28,20],[31,-10],[17,-16],[12,-11],[-19,-84],[-31,-21],[-33,7],[-37,33],[-9,8],[-19,-65],[10,-95],[-5,-60],[-7,-61],[26,-34],[15,-20],[46,35],[30,-14],[32,37],[19,-9],[3,6],[6,23],[7,22],[12,62],[24,21],[29,-4],[8,-43],[6,-38],[10,-52],[10,-56],[18,-85],[12,-76],[11,-48],[10,-47],[28,-38],[-2,-18],[-7,-74],[-16,-75],[0,-88],[-19,-55],[-33,-40],[-28,-13],[-19,-24],[-1,-1],[-10,-14],[-16,-22],[-4,-37],[-3,-33],[-34,73],[-24,14],[-25,-57],[-1,-14],[-4,-43],[-3,-42],[-26,-106],[-12,-120],[-7,-61],[-3,-31],[-13,-95],[-31,-82],[3,-73],[-11,-64],[-4,-23],[-4,-16],[-22,-72],[-1,-14],[0,-45],[-25,2],[9,-74],[-1,-2],[-22,-48],[1,-15],[2,-61],[-6,-73],[0,-78],[-9,-76],[-4,-34],[-5,-42],[8,-124],[-18,-52],[-7,-98],[0,-21],[1,-50],[18,-57],[21,41],[13,24],[10,97],[23,17],[5,-65],[28,66],[27,-56],[25,54],[6,-13],[13,-33],[-6,-62],[-4,-40],[-44,19],[17,-80],[10,-43],[19,-43],[11,-27],[40,-83],[-5,-70],[-5,-66],[-5,-23],[-19,-74],[-30,-54],[-32,-63],[-32,-108],[-4,-56],[-18,-76],[-1,-4],[-17,-89],[-10,-94],[-3,-160],[-57,78],[-74,-98],[-14,119],[35,25],[2,35],[2,44],[-30,13],[-39,17],[-9,-14],[-22,-38],[-25,17],[-20,-62],[-32,4],[11,-99],[-4,-85],[-3,-96],[-4,-100],[-4,-42],[-6,-81],[-18,-99],[-17,-74],[-6,144],[3,70],[4,69],[1,46],[1,88],[0,36],[-1,36],[0,75],[-2,97],[3,72],[1,4],[4,83],[8,71],[17,118],[12,105],[16,91],[-5,111],[-1,106],[3,54],[4,65],[3,24],[7,58],[6,70],[-6,124],[-2,38],[-2,55],[-1,48],[0,45],[-2,40],[-1,25],[-2,58],[0,2],[14,116],[-16,87],[7,60],[-12,60],[-15,59],[-29,-31],[-12,45],[-8,33],[-8,31],[-7,29],[-34,28],[-33,-46],[-22,-32],[-8,95],[-2,16],[-9,61],[12,63],[32,2],[31,37],[24,32],[1,29],[1,30],[24,-5],[5,-1],[17,54],[30,59],[1,2],[25,-68],[37,107],[44,86],[24,109],[-3,37],[-6,89],[-5,87],[-1,15],[-7,139],[3,65],[5,99],[-4,98],[0,60],[-1,35],[5,122],[38,-32],[6,86],[18,53],[22,39],[5,69],[23,16],[27,21],[35,-16],[-3,124],[-21,47],[-5,11],[-7,4],[-15,8],[31,91],[23,-30],[0,-1],[11,-13],[12,55],[8,34],[47,42]],[[93346,24238],[-40,-1],[-27,104],[27,20],[32,8],[4,117],[-32,38],[-1,7],[-13,79],[21,20],[27,28],[19,69],[-23,44],[22,40],[15,28],[-26,80],[21,32],[0,32],[0,75],[-5,36],[-6,34],[0,36],[0,30],[-27,25],[2,69],[10,26],[15,37],[24,54],[2,5],[16,36],[7,16],[-2,26],[-11,108],[-15,102],[-16,58],[-1,71],[45,-10],[17,-152],[12,-63],[33,-137],[9,-80],[4,-69],[2,-79],[1,-77],[-1,-65],[-5,-92],[-13,-140],[-11,-108],[-13,-97],[-5,-81],[-14,-126],[-19,-105],[-14,-72],[-22,-24],[-25,-12]],[[92131,25805],[12,-22],[9,-17],[18,-57],[10,-29],[4,-13],[9,-32],[2,-65],[-10,5],[-23,12],[-29,41],[-8,75],[-22,89],[-10,-5],[-40,-17],[13,138],[10,56],[4,19],[17,32],[12,23],[4,9],[22,42],[0,-10],[-1,-76],[0,-2],[-9,-49],[7,-52],[-1,-95]],[[93561,26003],[-64,-44],[-22,53],[30,38],[17,8],[7,3],[13,7],[25,15],[44,11],[15,-70],[-36,-14],[-29,-7]],[[93220,27041],[-35,-53],[12,86],[11,26],[15,38],[30,10],[27,53],[21,-23],[-19,-111],[-4,-2],[-16,-5],[-20,-2],[-22,-17]],[[92862,26817],[-19,-10],[-17,36],[-5,10],[-2,210],[10,19],[22,42],[57,93],[4,68],[3,35],[16,37],[5,12],[17,-24],[53,-37],[-13,-108],[-15,-46],[-17,-53],[-38,-127],[-19,-70],[-3,-10],[-21,-55],[-18,-22]],[[93691,27030],[-15,-75],[-32,-61],[-22,37],[-19,45],[-23,6],[-29,-2],[-16,-34],[-12,-49],[-11,89],[25,91],[34,93],[25,79],[14,22],[6,9],[21,47],[26,44],[21,-55],[21,-71],[2,-23],[4,-54],[-3,-59],[-17,-79]],[[93889,27115],[9,-124],[-46,27],[-45,7],[-25,-18],[15,88],[-8,77],[1,98],[16,81],[17,28],[10,15],[11,-6],[13,-8],[0,-19],[3,-106],[-2,-9],[-16,-81],[18,-38],[29,-12]],[[93829,26233],[-6,-12],[-13,-30],[-27,-60],[-25,-52],[-24,-59],[-24,-46],[-32,-51],[-21,-24],[-8,-8],[-19,31],[13,56],[7,36],[10,51],[-15,76],[14,123],[6,-24],[10,-44],[32,-34],[5,38],[5,46],[40,-24],[36,12],[3,59],[0,16],[14,29],[28,60],[26,77],[17,93],[-13,77],[12,67],[-2,6],[-17,71],[-4,110],[50,17],[35,72],[35,85],[33,99],[28,141],[27,90],[38,69],[39,80],[47,28],[22,42],[6,12],[5,10],[8,98],[10,129],[-33,99],[16,74],[33,64],[36,-25],[25,-24],[23,-49],[11,-74],[-2,-93],[-4,-94],[-15,-128],[-21,-117],[-22,-88],[-25,-99],[-38,-129],[-30,-83],[-28,-41],[-30,-76],[-18,-29],[-20,-45],[-23,-50],[-20,-36],[-28,-55],[-39,-73],[-34,-52],[-22,-72],[-35,-121],[-22,-69],[-21,-71],[-25,-82]],[[92633,27597],[-9,-47],[-10,-46],[-13,-59],[1,-87],[0,-50],[2,-11],[10,-77],[7,-52],[4,-6],[31,-48],[38,-8],[47,45],[22,-124],[11,-3],[12,-4],[9,-114],[6,-68],[10,-43],[6,-24],[-45,18],[3,-60],[4,-79],[-34,33],[-18,-70],[-8,-133],[-1,-22],[-1,-41],[-1,-78],[-15,-37],[-6,-16],[-17,65],[-35,-9],[-7,22],[-21,62],[-7,14],[-20,34],[-1,-21],[-1,-29],[-1,-40],[0,-8],[-1,-17],[-1,-44],[2,-50],[0,-17],[0,-2],[1,-15],[2,-69],[1,-68],[1,-18],[27,34],[4,-53],[-27,-70],[-28,-29],[-26,-12],[-42,-22],[-39,-27],[-33,-31],[-34,-38],[-21,-16],[-7,-2],[-24,-10],[-30,-38],[-30,-14],[-29,-16],[0,-1],[-4,0],[-29,-2],[-26,30],[-9,10],[-25,98],[9,113],[21,84],[10,49],[4,18],[10,40],[6,25],[5,18],[19,66],[18,81],[4,2],[15,9],[20,116],[22,40],[10,-110],[4,-95],[30,-43],[2,6],[3,10],[14,47],[5,16],[6,84],[19,40],[10,67],[36,-14],[6,-2],[3,-7],[16,-34],[20,0],[7,0],[3,0],[20,52],[5,48],[4,42],[0,3],[9,50],[10,57],[-2,11],[-18,114],[1,28],[1,36],[8,92],[-36,-8],[-14,-75],[-19,42],[-38,41],[4,78],[1,22],[19,-16],[2,82],[11,9],[16,11],[12,32],[5,12],[9,67],[5,37],[28,96],[1,11],[1,21],[6,59],[3,91],[19,-46],[11,95],[1,10],[27,84],[-16,65],[9,29],[17,53],[13,65],[11,49],[8,68],[5,36],[0,64],[4,60],[32,50],[25,86],[3,-13],[12,-50],[4,-46],[3,-43],[0,-60],[1,-55],[-11,-130],[7,-39],[8,-48],[17,-60],[-26,-35],[-47,-79],[-29,-30],[-25,-18],[-17,-87],[-2,-16]],[[93450,28829],[-20,-102],[-14,15],[-24,24],[-24,43],[5,103],[18,17],[10,-9],[19,-16],[21,-51],[9,-24]],[[93422,27116],[-30,-5],[-28,12],[-2,151],[61,209],[52,520],[7,92],[18,657],[0,64],[0,7],[1,0],[1,0],[0,20],[1,71],[29,33],[7,8],[63,-25],[3,-11],[14,-53],[-1,-18],[0,-6],[0,-1],[-1,-454],[-55,-607],[-79,-527],[-61,-137]],[[94257,28546],[-12,-18],[-9,93],[-23,105],[-3,64],[-1,29],[-1,49],[-4,106],[11,119],[4,99],[30,-11],[5,-54],[5,-68],[15,-80],[3,-19],[30,-85],[6,-80],[-26,-114],[-13,-108],[-17,-27]],[[94225,30188],[-25,-61],[-35,31],[-21,42],[-3,81],[0,65],[0,22],[10,89],[30,87],[32,15],[12,6],[26,-115],[1,-92],[-3,-33],[-4,-41],[-12,-57],[-8,-39]],[[95060,31103],[4,-37],[1,-78],[-3,-47],[-4,-58],[-23,-82],[-41,-91],[-15,-40],[-12,-32],[-26,-75],[-14,-52],[-23,-29],[-3,-11],[-40,-156],[-7,-27],[-126,-483],[-307,-1317],[-10,-41],[-59,-140],[-24,-24],[-23,-17],[-21,-6],[-36,2],[-36,20],[8,88],[28,85],[47,71],[22,60],[25,68],[11,124],[41,62],[3,87],[17,77],[6,91],[3,71],[2,96],[7,79],[25,78],[25,24],[4,18],[9,44],[2,11],[0,18],[1,47],[3,64],[7,31],[13,62],[37,92],[34,82],[-8,29],[-11,38],[11,61],[6,37],[4,75],[-10,67],[-9,56],[18,72],[27,13],[24,76],[12,83],[4,25],[-25,69],[-33,42],[-37,-6],[-36,-19],[0,22],[0,53],[-49,-60],[-23,8],[-15,5],[0,29],[0,30],[11,43],[0,1],[23,-19],[15,97],[11,53],[10,51],[29,48],[33,22],[26,0],[2,-14],[10,-61],[22,-8],[34,-156],[-10,-78],[13,21],[19,29],[2,106],[-16,49],[-5,15],[-31,79],[29,65],[30,43],[46,-2],[33,7],[3,0],[46,17],[30,54],[2,4],[-1,14],[-3,52],[-1,15],[-1,26],[2,17],[1,7],[6,38],[12,31],[12,32],[24,83],[31,54],[7,-10],[11,-15],[19,-26],[31,-40],[17,-33],[9,-18],[9,-104],[10,-143],[6,-60]],[[93461,32842],[-25,-19],[-5,-31],[-12,-67],[-3,-94],[-1,-17],[-2,-30],[-3,-46],[33,-30],[-9,-93],[-13,-44],[-10,9],[-22,18],[-1,-1],[-28,-46],[1,-17],[3,-50],[-9,-7],[-16,-13],[-10,-26],[-10,-25],[-11,-29],[-17,-49],[-19,-61],[-20,-18],[-12,-11],[-22,-91],[-3,-61],[9,-144],[15,-120],[15,-84],[-9,-88],[-24,-25],[-30,-14],[-7,11],[-27,35],[3,-67],[0,-30],[-5,-63],[3,-73],[-1,-68],[-36,-27],[-31,-92],[-2,-23],[-4,-48],[-8,-43],[-12,-68],[19,21],[13,13],[9,19],[13,25],[15,68],[33,-3],[19,-3],[12,-1],[8,-15],[9,-19],[24,-40],[19,-85],[-17,-27],[-12,-21],[1,-86],[-23,-87],[-16,-76],[-9,-24],[-12,-32],[-31,-84],[-1,-3],[-21,-62],[6,-41],[7,-47],[4,-100],[6,-47],[4,-27],[3,-22],[15,-82],[26,1],[22,23],[2,2],[5,2],[27,11],[21,-51],[19,-46],[16,-41],[7,-13],[10,-22],[16,-64],[44,-36],[50,15],[3,-16],[6,-33],[5,-25],[20,-97],[23,-27],[13,-72],[-24,7],[-11,4],[-11,-112],[-12,-22],[-14,-27],[-10,-5],[-38,-18],[-49,-3],[-26,1],[-17,0],[-7,-3],[-25,-11],[-20,0],[-16,0],[-16,16],[-20,-37],[-24,-47],[-10,-18],[-13,-23],[-11,-21],[-37,-64],[1,-4],[-17,-44],[-10,-26],[-8,-58],[3,-59],[-35,15],[-2,92],[0,22],[0,36],[-28,0],[-95,213],[-16,-28],[-9,-16],[-16,20],[-8,11],[-17,41],[37,40],[6,77],[10,100],[15,10],[2,1],[8,49],[6,42],[2,7],[-31,-13],[-6,-13],[-27,-58],[0,-7],[0,-43],[0,-28],[-29,-72],[-17,-18],[-6,18],[-23,-39],[-57,-98],[-5,-1],[-51,-186],[-21,-79],[0,-4],[-11,-34],[-20,-60],[-9,-79],[-36,-7],[-5,-14],[-12,-31],[-25,-91],[-8,-150],[-1,-8],[-22,-77],[-21,-42],[-6,-62],[-15,-42],[-27,-72],[-31,-101],[-21,-81],[-7,-27],[-20,-71],[-34,-67],[-14,121],[-15,4],[-12,4],[-14,4],[1,-86],[-16,-112],[-14,-98],[-41,-58],[36,-87],[9,-101],[-18,-14],[8,-43],[0,-57],[-13,-80],[-18,-70],[-19,-72],[-56,-40],[25,-73],[2,-80],[-9,-87],[-6,-63],[-15,-55],[-10,-89],[-31,-90],[44,-60],[27,43],[8,-94],[-29,-57],[-28,-21],[-44,-66],[-24,80],[-18,-56],[-18,-96],[0,-86],[-8,-83],[-1,-72],[-10,-97],[6,-90],[3,-107],[-11,-93],[-17,-54],[29,-2],[30,-79],[-6,-59],[-28,-29],[3,-99],[-46,15],[-26,-76],[23,-19],[-17,-63],[-17,-104],[17,-27],[26,-54],[-42,-83],[0,-110],[-27,-100],[-6,-112],[30,-44],[33,-24],[-15,-111],[30,-63],[22,-19],[105,4],[70,20],[-23,-64],[-206,-33],[3,-70],[-23,-15],[-29,16],[-28,66],[-14,-93],[-5,-135],[-23,-87],[-9,-92],[4,-69],[13,-50],[0,-2],[36,2],[16,1],[2,-4],[45,-58],[12,-58],[4,-20],[-3,-80],[-7,-75],[-6,-56],[-32,-129],[11,-83],[12,-37],[-2,-14],[-8,-55],[32,-73],[7,-66],[14,-32],[15,-34],[-19,-19],[-30,33],[-10,43],[-4,22],[-29,22],[-7,6],[-26,38],[-46,6],[-9,-118],[-7,-78],[2,-65],[1,-42],[-31,-93],[-1,-95],[15,-54],[4,-14],[30,-50],[26,75],[11,-83],[-3,-98],[-3,-7],[-14,-36],[-26,23],[-2,7],[-13,38],[-18,-98],[-2,-28],[-5,-74],[-4,-43],[-3,-29],[-1,-40],[-2,-40],[-11,-117],[-3,-81],[8,-103],[14,-65],[1,-151],[-17,-120],[-22,5],[-22,-40],[11,-52],[7,-74],[20,-83],[9,-92],[-3,-47],[-2,-30],[18,-97],[-18,-88],[9,-79],[10,-29],[5,-15],[-5,-100],[-26,-52],[-1,-2],[0,-3],[2,-41],[3,-48],[0,-10],[7,-68],[33,51],[25,-19],[5,-64],[-7,-50],[-2,-14],[-9,-56],[-16,-40],[-20,-35],[-35,-16],[-18,-68],[-28,-73],[-20,-51],[-5,-13],[-32,-11],[-35,-8],[-25,35],[-36,-3],[-18,-13],[-7,-5],[-40,-24],[-9,-9],[-15,-13],[-20,-52],[-3,-6],[-28,7],[17,91],[2,65],[2,41],[3,51],[-3,64],[-1,27],[-3,70],[-7,84],[-12,145],[-13,97],[-11,94],[-8,101],[-6,95],[-12,135],[-15,129],[-16,113],[-21,108],[-15,61],[-32,58],[-30,48],[-22,7],[29,77],[-23,147],[-27,90],[-18,96],[-32,136],[-25,114],[-21,95],[-15,52],[-29,62],[-47,111],[-19,66],[-21,68],[-17,82],[-15,81],[-10,67],[-8,90],[-4,79],[-1,60],[2,92],[18,54],[-4,83],[-5,113],[8,86],[14,46],[-4,75],[15,110],[28,-43],[35,23],[60,-19],[36,-41],[35,-9],[-21,111],[22,47],[34,53],[36,12],[-36,63],[-25,-30],[-32,77],[21,39],[7,62],[18,54],[21,52],[-25,52],[-22,64],[36,56],[5,68],[3,74],[-21,119],[-13,-109],[-2,-100],[-58,-5],[-24,-81],[30,-124],[-15,-84],[-35,-2],[14,-184],[26,-45],[-31,-72],[-18,42],[-32,-17],[-16,56],[-32,26],[-38,28],[-17,-59],[-15,72],[-14,91],[-25,101],[-11,80],[-11,63],[-15,64],[-18,58],[-10,66],[-13,100],[-3,101],[20,119],[17,24],[30,40],[-6,12],[-38,65],[4,58],[16,122],[28,72],[33,77],[24,55],[20,48],[30,49],[-25,56],[-27,0],[-19,114],[5,116],[22,86],[33,33],[4,81],[1,90],[27,33],[21,5],[29,-17],[40,-12],[-16,104],[1,124],[3,79],[38,21],[38,-21],[35,-83],[-13,154],[45,39],[29,-37],[3,-69],[24,35],[25,38],[36,-10],[-24,85],[-30,-2],[-28,4],[6,88],[19,129],[-25,84],[-28,68],[-5,74],[28,43],[52,55],[29,-30],[25,62],[-25,20],[-25,49],[-29,-23],[-30,-8],[-39,32],[17,91],[-37,17],[-20,-102],[4,-112],[-18,-123],[-25,-63],[-16,-68],[-4,-99],[-24,6],[-45,-7],[-14,-130],[-26,-53],[-66,3],[0,-85],[-15,-95],[-42,-81],[-22,-84],[-3,110],[6,84],[6,73],[6,104],[9,95],[11,138],[11,127],[13,116],[5,91],[11,70],[36,144],[35,119],[25,83],[14,56],[23,66],[24,80],[16,62],[34,127],[29,132],[24,125],[28,159],[30,114],[36,27],[-13,158],[-1,111],[0,155],[8,87],[19,77],[31,-100],[29,2],[22,-4],[25,67],[31,31],[-31,48],[0,79],[32,36],[27,13],[38,9],[27,-13],[23,-77],[20,-18],[27,-37],[16,63],[25,7],[35,-57],[44,-17],[16,-74],[21,-64],[18,74],[-22,81],[1,124],[-30,-59],[-32,13],[-21,31],[-25,19],[-28,42],[-21,61],[-51,38],[-49,9],[-11,98],[-13,94],[-42,69],[-16,54],[3,52],[32,4],[8,64],[27,33],[25,35],[19,52],[23,-13],[20,34],[11,68],[10,120],[15,81],[34,3],[10,-72],[33,-30],[25,-3],[28,-7],[30,1],[13,-77],[34,72],[38,-82],[45,32],[-43,38],[-14,104],[52,45],[21,56],[-28,27],[-23,-13],[-21,-41],[-26,-8],[-20,-48],[-29,-16],[-27,11],[-20,70],[-29,-5],[-9,45],[-2,61],[31,39],[26,63],[24,70],[22,51],[37,62],[27,82],[29,103],[-33,2],[-39,-42],[-19,-73],[-37,-31],[-40,-50],[-21,-109],[-19,-64],[-46,33],[-19,0],[-14,-71],[-27,-40],[-16,-80],[-32,-97],[-13,-58],[3,-61],[-32,2],[-23,60],[-25,-71],[-17,-95],[-10,96],[-39,25],[11,-97],[-4,-66],[-18,-77],[-7,-81],[-17,32],[-4,61],[-4,72],[-8,100],[22,66],[-10,162],[5,128],[0,71],[8,191],[11,77],[16,143],[26,148],[17,58],[17,75],[19,64],[35,32],[-4,96],[6,101],[25,94],[40,126],[15,77],[21,85],[25,6],[40,-31],[43,10],[32,55],[47,76],[29,-19],[24,-81],[-4,-66],[-15,-80],[-18,-64],[22,-60],[30,67],[25,-46],[24,-46],[34,-44],[32,-41],[36,53],[30,-44],[28,-35],[30,-30],[14,91],[22,-3],[25,49],[-24,18],[-29,2],[-24,-55],[-28,110],[-19,-31],[-21,11],[-32,14],[4,83],[-39,12],[-41,-26],[-12,99],[0,130],[-19,100],[15,94],[20,30],[16,75],[27,2],[25,25],[38,30],[47,-42],[52,-6],[40,67],[37,42],[30,6],[13,-108],[18,35],[37,18],[11,68],[-33,53],[-33,94],[-40,-22],[-35,-80],[-28,-42],[-24,-22],[-26,34],[31,105],[20,51],[12,103],[39,93],[38,51],[34,41],[40,43],[25,-42],[29,-75],[36,19],[-27,123],[-26,26],[27,116],[-8,70],[-23,11],[-29,38],[-22,37],[-13,82],[25,39],[20,83],[22,80],[31,41],[20,27],[14,149],[-28,-58],[-22,-53],[-41,-50],[-22,-77],[-19,-48],[-29,-34],[-32,-82],[-1,-82],[20,-73],[20,-37],[-15,-55],[-19,-21],[-24,-39],[-30,21],[-40,4],[-29,-55],[23,-41],[20,23],[5,-58],[-13,-78],[-41,1],[-37,-70],[-19,-55],[14,-106],[-39,-11],[-39,-72],[-35,20],[-28,79],[-42,89],[16,-130],[-30,-41],[41,-41],[9,-89],[-36,-10],[-33,-14],[11,-75],[-43,-17],[0,-98],[-49,11],[-7,-80],[-51,71],[-11,-61],[-69,-3],[-25,-52],[-7,273],[11,123],[15,111],[11,109],[3,68],[8,103],[3,88],[12,91],[18,145],[14,101],[14,94],[9,64],[30,193],[10,72],[34,124],[22,96],[32,114],[20,76],[15,116],[2,136],[13,75],[29,-82],[57,-81],[1,133],[16,56],[-34,41],[12,71],[-34,-11],[47,139],[37,18],[31,-38],[-6,-97],[28,-77],[20,-119],[6,75],[-3,108],[36,80],[28,-41],[24,47],[18,20],[43,0],[5,-99],[17,70],[16,46],[34,26],[23,20],[33,-14],[25,-77],[23,-83],[38,-2],[28,-10],[35,-30],[53,7],[36,40],[19,-50],[24,-29],[23,140],[33,-10],[41,-15],[39,-6],[26,28],[26,9],[32,45],[25,38],[34,-33],[24,-56],[13,73],[41,43],[40,57],[19,29]],[[22943,23827],[-6,-70],[-10,-25],[-11,-28],[-1,-38],[-3,-34],[5,-35],[12,-23],[10,-43],[-3,-40],[-3,-34],[-4,-35],[-12,-19],[-12,-13],[-12,-32],[-13,-4],[-12,-3],[-14,-13],[-7,-30],[-9,-28],[-10,-27],[-16,-9],[-12,-5],[-14,1],[-11,-12],[-12,-35],[-2,-35],[-4,-33],[-2,-41],[6,-43],[-3,-46],[-6,-42],[-7,-31],[-9,-35],[-1,-36],[3,-36],[4,-36],[-8,-39],[-14,-12],[-13,-19],[-13,-35],[-3,-44],[-7,-30],[-15,-27],[-12,-7],[-5,-3],[-17,16],[-17,45],[-13,10],[-2,-1],[-10,-4],[-17,7],[-12,19],[0,1],[-17,18],[-9,-21],[-4,-8],[-6,-12],[-9,-37],[-6,-30],[-11,-27],[-9,-27],[-9,-1],[-3,-1],[-14,-8],[-14,-20],[-12,10],[-15,-15],[-7,-35],[8,-33],[-3,-26],[-1,-8],[-3,-44],[-6,-30],[-11,-15],[-12,-26],[-7,-32],[-5,-7],[-7,-10],[-13,-18],[-11,-24],[-13,2],[-11,27],[-20,-20],[-13,-30],[-10,-20],[-10,-31],[-12,-38],[-11,-4],[-4,-2],[-11,-25],[-14,17],[-12,11],[-13,-7],[-6,-38],[-10,-18],[-13,-11],[-10,34],[-12,20],[-13,0],[-18,-14],[-18,13],[-9,-20],[-11,-21],[-11,-41],[-13,-9],[-10,-25],[-8,-25],[-17,-24],[-10,-20],[-12,-17],[-12,-14],[-11,-7],[-16,28],[-18,20],[-19,6],[-20,13],[-21,-6],[-13,-14],[-13,-11],[-16,4],[-14,-39],[-11,-15],[-8,-29],[-11,15],[-15,3],[-10,-24],[-10,-27],[-15,-3],[-7,-31],[-10,-18],[-7,-35],[-11,-16],[-13,-10],[-24,-7],[-12,-1],[-14,11],[-14,13],[-14,14],[-9,23],[-15,7],[-13,-6],[-13,-13],[-13,-6],[-6,-30],[-9,-26],[-6,-40],[-6,-31],[-13,-27],[-14,-14],[-13,-10],[-12,-15],[-11,-21],[-10,22],[-12,-2],[-8,-30],[-12,2],[-14,-9],[-10,-31],[-11,-15],[-7,-35],[1,-42],[9,-42],[7,-29],[6,-30],[11,-16],[10,-16],[12,-15],[11,-37],[-8,-29],[-12,-18],[-18,-18],[-11,-23],[-12,-32],[-12,-8],[-9,-27],[-12,-2],[-7,-26],[-1,-3],[-8,-26],[-13,-2],[-14,-13],[-14,-5],[-10,20],[-12,-7],[-13,-1],[-40,-43],[-12,-13],[-20,-7],[-11,-31],[-15,4],[-12,9],[-13,14],[-13,27],[-10,17],[-13,9],[-13,13],[-14,-13],[-8,-40],[0,-38],[0,-39],[2,-35],[-9,-26],[-11,-25],[-8,-41],[2,-36],[-5,-33]],[[21035,20572],[-15,-6],[-12,-10],[-7,-28],[-10,-22],[-14,6],[-21,10],[-16,-21],[-10,-36],[-7,-36],[-7,-30],[-8,-45],[-7,-46],[-8,-27],[-10,-41],[-2,-36],[-5,-39],[-12,14],[-9,21],[-14,8],[-9,21],[-18,35],[-14,17],[-14,3],[-13,-1],[-9,-23],[-10,-20],[-15,10],[-16,-7],[-14,-27],[-15,-22],[-7,-32],[-4,-34],[0,-36],[2,-34],[-8,-29],[-12,-2],[-13,17],[-12,3],[-14,-8],[-13,-6],[-13,-11],[-11,35],[-7,26],[-18,8],[-16,9],[-22,20],[-12,15],[-17,8],[-6,-31],[-15,-33],[-11,-17],[-10,-21],[-21,-14],[-14,-20],[-14,8],[-12,20],[-16,26],[-11,18],[-13,1],[-11,-22],[-15,-23],[-11,16],[-14,19],[-14,8],[-5,-34],[-7,-28],[-13,-24],[-3,-34],[-4,-33],[-4,-40],[-12,-15],[-12,-10],[-16,-21],[-17,0],[-16,0],[-18,-15],[-14,-4],[-15,-1],[-17,16],[-12,69],[-14,10],[-16,-17],[-16,-4],[-14,25],[-16,2],[-19,16],[1,56],[-13,17],[-6,36],[-8,29],[-8,25],[-12,-13],[-3,-37],[-6,-33],[-11,-31],[-8,-32],[-8,-37],[-9,-26],[-1,-42],[-12,-4],[-8,-27],[-17,-31],[-9,-32],[-12,-17],[-15,-9],[-11,18],[-11,19],[-19,34],[-11,7],[-22,-9],[5,-43],[-2,-39],[7,-39],[-3,-36],[-19,-19],[-14,-21],[-7,-28],[-15,-32],[7,-32],[2,-39],[8,-27],[6,-41],[-4,-33],[-18,-6],[-14,-3],[-14,-5],[-10,-21],[-9,-67],[-2,-44],[-12,-27],[4,-51],[21,-12],[14,-27],[1,-40],[-37,-64],[-5,-63],[5,-64],[-1,-35],[-19,-20],[-15,7],[-16,-38],[2,-70],[9,-25],[-11,-22],[-8,-32],[1,-35],[5,-43],[30,-19],[14,-2],[28,-12],[10,-38],[3,-39],[-7,-40],[-12,-33],[-13,-6],[-12,-28],[-14,-18],[-7,-37],[-12,-19],[-10,-36],[5,-37],[12,-13],[17,-9],[4,-37],[-1,-56],[2,-40],[-14,-6],[-25,-22],[-24,-20],[-14,-12],[-36,-31],[-3,-2],[-3,-3],[-27,-22],[-17,4],[-11,-45],[-3,-43],[1,-53],[-10,-36],[-4,-34],[-7,-42],[-16,-72],[2,-36],[-3,-33],[6,-37],[-5,-39],[-16,6],[-26,-25],[-10,-48],[-17,-34],[-31,-20],[-7,-40],[-13,2],[-11,28],[-16,-5],[-13,-31],[-19,-20],[-17,-8],[-46,85],[-39,-55],[-21,-36],[-10,-29],[-29,20],[-17,-4],[-22,-40],[-17,-32],[-11,-25],[-13,-18],[-9,-34],[-23,-44],[-10,-38],[-13,6],[-9,22],[-21,17],[-37,-7],[-13,40],[-19,28],[-24,-25],[-17,26],[-4,34],[-6,29],[-13,21],[-11,16],[6,62],[-11,27],[-22,7],[-15,6],[-12,23],[-10,21],[-10,30],[7,53],[-13,23],[-51,-31],[-29,-41],[-17,-52],[-18,2],[-5,-35],[9,-44],[9,-25],[2,-44],[-9,-41],[-8,-49],[-14,5],[-11,22],[-12,-9],[-14,-34],[-10,-20],[-12,-21],[-11,34],[-12,-9],[-20,-35],[-20,-3],[-4,34],[-4,33],[-11,11],[-13,-10],[-13,6],[-14,-6],[-11,-28],[-6,-33],[-13,-17],[-12,7],[-9,39],[-9,29],[-15,13],[-15,14],[-15,-14],[-12,-4],[-12,9],[-2,36],[-11,32],[-13,-8],[-14,-18],[-12,-41],[-4,-35],[-13,-4],[-11,-16],[-12,10],[-10,23],[-14,26],[-11,-21],[-11,-21],[-12,-4],[-12,8],[-5,32]],[[18098,17124],[58,121],[75,158],[8,27],[-11,56],[-7,37],[-11,63],[-2,79],[11,37],[13,7],[14,16],[-3,42],[0,44],[-18,71],[-24,26],[-15,-2],[-17,-7],[-14,8],[-11,33],[-2,53],[12,31],[12,4],[15,12],[10,47],[-13,5],[-8,28],[-11,8],[-11,21],[-6,30],[6,38],[-6,37],[2,46],[-17,50],[-24,39],[-33,100],[-13,15],[-5,32],[10,24],[-2,45],[-12,17],[-16,0],[-4,41],[-11,20],[-7,29],[-15,28],[6,30],[12,33],[-9,36],[3,55],[-8,30],[-11,30],[-3,41],[-10,33],[-23,32],[-17,13],[-4,36],[10,29],[15,11],[2,35],[-10,24],[-13,13],[-2,37],[13,26],[-2,45],[13,2],[12,-2],[8,30],[-3,39],[7,32],[9,28],[-4,28],[-1,4],[-11,22],[-13,17],[-24,108],[-61,22],[-38,41],[-2,2],[-1,1],[-5,24],[-11,44],[-5,23],[-1,5],[-5,8],[-14,26],[-4,16],[0,4],[0,6],[0,9],[8,91],[3,18],[-1,16],[-7,66],[0,5],[5,77],[-3,13],[-9,45],[-1,3],[-21,41],[-1,2],[-29,44],[-1,1],[-49,73],[-4,8],[-1,7],[0,14],[4,16],[12,31],[11,18],[1,14],[0,19],[-2,15],[-5,21],[0,2],[-15,45],[0,2],[-10,23],[-10,16],[-13,6],[-8,0],[-3,4],[-14,21],[-12,16],[-1,3],[-2,4],[-2,4],[-2,11],[-20,208],[1,15],[2,9],[12,27],[3,11],[0,19],[-3,15],[-8,32],[-2,9],[-6,12],[-4,8],[-53,87],[-5,5],[-2,0],[-4,-1],[-1,-1],[-10,-27],[-2,-5],[-5,-19],[-11,-28],[-2,-4],[-9,-20],[-1,-1],[-2,-2],[-2,-1],[-6,1],[-1,0],[-7,5],[0,14],[0,46],[0,70],[-24,103],[-2,10],[-5,12],[0,1],[-18,36],[-8,30],[-7,29],[-14,66],[-23,112],[-23,107],[-17,85],[-34,153],[-9,42],[-20,90],[-18,83],[-14,55],[-19,89],[-23,107],[-16,70],[-8,39],[-9,39],[-6,31],[-8,34],[-7,36],[-7,31],[-9,39],[-3,15],[-5,26],[-11,49],[-11,49],[-9,42],[-2,11],[-8,36],[-3,36],[-2,33],[-1,7],[-3,39],[-6,69],[-5,69],[-3,37],[-3,40],[-4,41],[-4,53],[-15,181],[-9,109],[-18,202],[-4,48],[-12,133],[-15,175],[-5,53],[-8,95],[-2,35],[-8,91],[-4,57],[-4,45],[-7,92],[-3,56],[-11,149],[-5,82],[-4,47],[-8,44],[-16,8],[-14,27],[-8,26],[-9,33],[-3,40],[-8,35],[-14,15],[-12,14],[-12,-2],[-15,-14],[-15,2],[-16,3],[-14,11],[-11,23],[-12,35],[-11,31],[-5,31],[-8,35],[-9,22],[-7,28],[2,37],[-6,30],[-1,39],[-4,40],[-6,30],[-12,12],[-15,23],[-11,17],[-11,23],[-13,5],[-13,9],[-11,20],[-15,25],[-11,17],[-1,42],[-10,28],[-7,30],[-8,33],[-11,16],[-8,26],[-13,27],[-12,1],[-15,1],[-7,30],[-9,26],[-4,3],[-8,7],[-11,27],[-6,35],[-9,26],[-9,23],[-19,6],[-12,9],[-10,-23],[-10,-30],[-13,-11],[-15,2],[-13,-3],[-7,-26],[-11,-18],[-14,-17],[-10,-26],[-13,-14],[-14,-13],[-10,-20],[-11,-28],[-10,-19],[-20,-3]],[[16181,25919],[8,23],[7,21],[3,6],[18,34],[134,257],[60,119],[79,155],[141,281],[174,350],[215,435],[160,322],[43,88],[48,96],[30,61],[83,167],[114,243],[247,482],[199,388],[206,402],[194,383],[156,316],[153,306],[203,410],[181,371],[50,109],[26,56],[31,68],[62,135],[56,128],[5,11],[254,503],[134,274],[253,503],[202,410],[131,260],[-12,-117],[17,-54],[27,10],[27,28],[40,45],[25,1],[10,-31],[-8,-66],[-2,-88],[8,-35],[2,-8],[0,-2],[2,-5],[1,-4],[2,-4],[1,-4],[0,-1],[9,-19],[2,-4],[2,-3],[2,-3],[1,-2],[2,-2],[2,-2],[10,-7],[2,-2],[2,-1],[2,0],[2,0],[2,0],[2,0],[1,1],[7,3],[1,0],[2,2],[2,2],[2,2],[2,2],[1,2],[33,54],[19,21],[-10,-32],[0,-1],[-2,-4],[0,-2],[-2,-4],[-1,-5],[-1,-5],[0,-3],[-5,-26],[-1,-3],[-1,-5],[0,-6],[-1,-6],[0,-5],[-1,-5],[-1,-33],[0,-1],[-1,-6],[0,-6],[0,-6],[1,-6],[0,-6],[0,-6],[1,-6],[1,-6],[1,-5],[1,-5],[1,-5],[1,-5],[1,-5],[12,-39],[2,-5],[0,-1],[20,-56],[1,-1],[-1,-11],[-3,-29],[0,-2],[-5,-44],[0,-3],[-1,-6],[0,-6],[0,-6],[0,-6],[0,-6],[0,-6],[0,-6],[1,-6],[0,-1],[3,-34],[1,-5],[0,-6],[1,-6],[1,-5],[1,-5],[1,-5],[1,-1],[8,-29],[1,-4],[1,-4],[2,-4],[1,-4],[2,-4],[2,-3],[1,-2],[14,-20],[0,-1],[2,-2],[2,-2],[2,-2],[2,-1],[2,-1],[2,-1],[17,-4],[3,0],[2,0],[2,1],[1,0],[14,8],[1,0],[2,1],[2,2],[2,2],[2,3],[1,1],[12,19],[1,1],[2,3],[1,4],[2,4],[2,4],[1,4],[1,5],[2,5],[0,2],[10,47],[1,3],[1,5],[1,5],[10,70],[5,3],[4,0],[5,-3],[12,-52],[1,-5],[2,-4],[1,-5],[2,-4],[0,-1],[5,-11],[1,-3],[1,-3],[8,-16],[1,0],[0,-2],[37,14],[2,-38],[-9,-30],[-58,-17],[-37,-58],[-18,-2],[-34,-33],[-16,-2],[-22,-20],[-19,-64],[5,-126],[-25,-48],[-39,17],[-31,-11],[-23,-63],[-6,-111],[13,-92],[5,-48],[-6,-38],[-47,-9],[-75,63],[-29,-11],[-14,-78],[-36,-22],[-6,-39],[-53,-37],[-15,-70],[-32,-42],[-14,29],[-47,-13],[-34,4],[-48,-36],[-19,-68],[-2,-80],[-43,-106],[8,-30],[0,-37],[7,-78],[-4,-90],[18,-21],[14,-26],[-7,-131],[16,-113],[32,-22],[22,-69],[-3,-76],[4,-37],[32,-35],[50,83],[31,19],[40,-26],[18,-20],[0,-38],[17,-62],[27,-42],[4,-33],[-15,-108],[28,-37],[55,40],[56,9],[10,31],[44,-88],[56,-23],[6,-36],[11,-18],[2,-36],[22,-62],[2,-35],[30,-10],[24,19],[28,-1],[22,-35],[18,-60],[3,-37],[-16,-15],[-7,-53],[16,-72],[-30,-28],[-6,-38],[-20,-52],[23,-160],[-4,-49],[9,-44],[3,-53],[35,-3],[8,-89],[36,-86],[26,-10],[15,-28],[22,-56],[29,-26],[-8,-40],[-5,-76],[-14,-38],[-19,-1],[-25,-48],[-8,-65],[-7,-56],[20,-45],[9,-41],[-10,-49],[-11,-28],[9,-77],[6,-35],[-25,-48],[-26,-33],[-9,-29],[9,-91],[12,-14],[7,-33],[-4,-38],[-46,-80],[-12,-83],[10,-74],[40,-41],[11,-30],[6,-35],[-8,-31],[-24,-33],[8,-71],[1,-80],[31,-81],[25,-32],[25,-8],[-6,-32],[-21,-131],[22,-66],[6,-39],[9,-28],[12,32],[13,-6],[20,-45],[11,-67],[4,-36],[17,-8],[7,-32],[3,-91],[13,-13],[24,14],[30,-10],[31,-29],[1,-99],[17,-6],[-5,-36],[25,-58],[30,21],[17,-50],[31,4],[3,-35],[0,-40],[15,-15],[15,-81],[6,-52],[-2,-40],[-13,-18],[13,-45],[4,-14],[12,2],[9,-23],[20,-44],[22,53],[17,5],[24,-20],[43,-31],[37,26],[12,25],[27,-1],[-8,-99],[24,-47],[12,15],[17,-7],[4,-76],[12,-32],[4,-80],[14,-7],[7,-31],[15,-17],[14,8],[11,-21],[22,-40],[27,-51],[8,-31],[25,-44],[3,-35],[-34,-56],[-21,-48],[-12,-71],[35,-93],[16,-30],[22,-29],[40,68],[12,0],[9,-30],[-4,-70],[9,-78],[-3,-39],[-11,-22],[11,-64],[11,11],[8,-26],[1,-39],[-21,-135],[7,-159],[27,-6],[14,1],[14,-75],[25,-24],[10,24],[17,-3],[16,11],[13,-13],[43,38],[29,-34],[19,3],[12,-30],[-14,-84],[29,-13],[12,-26],[37,1],[26,-57],[42,19],[32,-15],[39,20],[41,51],[24,50],[47,23],[17,68],[17,10],[28,-27],[24,7],[8,-24],[32,17],[31,-10],[4,-122],[14,9],[8,39],[23,53],[13,5],[21,-41],[14,2],[5,-31],[30,0],[8,-45],[16,-11],[14,-64],[-2,-39],[48,-91],[21,-34],[16,12],[30,-33],[23,28],[47,34],[25,17],[12,-14],[21,27],[24,-14],[-9,-128],[5,-120],[11,-22],[34,-33],[32,-62],[8,-28],[43,-13],[11,-84],[0,-99],[23,-52],[2,-37],[28,-50],[-14,-128],[-10,-37],[-15,-205],[4,-35],[37,-26],[4,-105],[5,-32]],[[87744,32732],[16,-68],[7,-82],[3,-142],[12,-106],[-13,-85],[-31,18],[-32,95],[-7,-58],[-23,-8],[-18,54],[13,99],[-43,-46],[-26,-44],[-27,54],[-24,54],[-28,15],[20,59],[5,89],[18,93],[-32,1],[-13,-68],[-18,-48],[-35,-16],[-22,13],[-32,-30],[-20,52],[-3,7],[-30,-43],[-21,-68],[-10,-77],[-18,68],[24,88],[34,103],[40,83],[25,59],[26,106],[24,111],[10,111],[-14,62],[-1,74],[20,32],[21,-5],[24,-4],[18,-42],[42,-43],[48,-111],[25,-79],[23,-97],[17,-80],[17,-91],[9,-59]],[[85818,33181],[27,37],[38,-16],[20,-84],[40,-60],[25,-41],[22,-5],[40,34],[1,0],[21,5],[28,-7],[31,46],[27,56],[22,78],[27,88],[-1,90],[-13,144],[26,72],[-1,75],[28,78],[2,-78],[6,-67],[20,-99],[27,-72],[30,21],[-21,67],[-15,96],[-20,62],[22,21],[30,-3],[28,-6],[36,7],[44,-52],[32,-59],[34,-1],[43,35],[27,21],[2,-65],[53,-61],[25,-69],[35,68],[33,42],[42,-72],[-6,-138],[14,-119],[16,-93],[18,-81],[24,-77],[25,-44],[26,-18],[16,-34],[18,23],[27,7],[28,22],[27,6],[24,-11],[39,-23],[17,-66],[24,-90],[17,-122],[10,-107],[13,-70],[-3,-75],[-29,-8],[-35,0],[-63,-32],[-32,-16],[-20,-32],[3,-69],[41,8],[50,17],[28,0],[35,4],[40,45],[17,-34],[32,17],[62,-10],[30,11],[31,23],[30,48],[7,4],[33,19],[36,10],[21,-47],[-9,-87],[-29,-61],[11,-55],[-14,-84],[31,31],[22,66],[31,58],[40,-19],[18,-58],[21,-42],[42,-28],[21,-55],[26,-44],[22,-23],[29,-31],[-7,-101],[-37,33],[-30,17],[-45,19],[1,-107],[-7,-103],[-19,-96],[-38,-25],[-31,7],[-23,73],[-10,-103],[-51,22],[-48,-22],[-32,-8],[31,-62],[24,8],[26,-58],[37,-13],[13,39],[20,-15],[26,-22],[12,-73],[12,91],[22,6],[32,6],[25,-46],[13,-79],[-13,-79],[33,-43],[19,-15],[26,-16],[-12,-78],[45,42],[2,97],[-17,89],[-25,60],[7,87],[-6,69],[8,84],[25,4],[41,-39],[29,-44],[24,-67],[14,-100],[16,-68],[-48,-29],[2,-157],[-3,-87],[7,-100],[-9,-90],[1,-70],[25,76],[26,66],[-6,87],[8,63],[17,53],[35,-50],[3,100],[33,-63],[6,-113],[17,-83],[34,-72],[16,-90],[29,-51],[10,-85],[-1,-87],[5,-122],[2,-55],[2,-44],[1,-25],[3,-59],[1,-65],[1,-42],[2,-24],[5,-79],[5,-83],[3,-97],[2,-38],[3,-55],[2,-54],[1,-37],[-46,-12],[-45,-89],[-25,-237],[11,-53],[17,-86],[19,-73],[-48,27],[-30,-43],[-25,25],[-5,-68],[42,-49],[5,-4],[30,-24],[0,-33],[1,-47],[26,0],[30,123],[11,-11],[17,-16],[15,32],[6,14],[-1,129],[21,41],[2,-54],[4,-108],[3,-102],[-20,-140],[-13,-198],[-1,-3],[-25,-53],[-16,-102],[-24,-45],[-9,0],[-18,1],[-8,-56],[-2,-59],[2,-8],[11,-54],[-15,-65],[-26,-65],[-37,-35],[-25,-84],[-3,41],[-6,65],[8,98],[-21,-27],[-23,14],[-13,-60],[-18,-16],[-9,-8],[-2,20],[-3,60],[21,116],[-37,57],[-3,-5],[-21,-26],[-11,-76],[-16,-78],[-37,-5],[-13,68],[-27,-82],[-19,99],[-32,-8],[-17,-69],[-30,31],[-27,18],[-47,4],[-9,70],[-7,82],[-43,-26],[11,-74],[21,-68],[6,-134],[31,25],[21,3],[34,-44],[34,-69],[47,57],[43,-30],[37,-40],[11,-128],[36,3],[-16,-84],[-25,-55],[32,-7],[32,-23],[-8,-61],[6,-80],[6,-68],[11,-102],[-41,-30],[32,-94],[-31,-42],[-37,42],[-30,83],[-21,-43],[7,-67],[-9,-69],[39,8],[2,-69],[3,-96],[39,-1],[24,43],[30,-31],[-2,-78],[-2,-81],[-6,-158],[2,-113],[-12,-77],[-13,-69],[-16,-40],[-28,-15],[1,76],[-22,111],[-27,90],[7,97],[-18,88],[-25,43],[-29,-96],[-45,34],[-30,-13],[-27,-15],[3,96],[-9,72],[-28,115],[-4,-127],[-43,-2],[-37,18],[-30,73],[-20,121],[-6,87],[0,62],[-32,54],[35,31],[40,15],[-12,134],[20,33],[21,91],[22,9],[16,81],[-29,26],[-38,-64],[-29,-59],[-31,7],[-10,-109],[-27,-8],[-28,-14],[-26,-39],[-2,106],[-7,112],[-38,10],[-8,113],[-42,-6],[-17,30],[-24,87],[-35,104],[-24,77],[-8,73],[10,79],[34,0],[11,81],[-36,29],[39,79],[-40,46],[17,76],[25,84],[-21,50],[14,57],[41,-26],[-16,89],[11,104],[-39,29],[-9,73],[21,53],[20,73],[-35,21],[-13,47],[0,58],[-27,20],[-14,44],[-30,42],[18,83],[-31,48],[-51,-2],[26,101],[16,76],[14,94],[17,45],[36,-19],[-5,86],[25,63],[27,26],[22,58],[-14,83],[-32,-75],[-25,-50],[-23,2],[-17,-74],[-39,-19],[-10,76],[-24,2],[-7,61],[-27,88],[15,72],[-30,1],[-9,-84],[-25,-22],[-23,48],[-26,-29],[-18,91],[-26,69],[-13,87],[1,73],[17,39],[-11,101],[-58,32],[18,-74],[5,-74],[-18,-112],[2,-131],[25,-42],[-3,-87],[41,0],[1,-86],[36,4],[20,-7],[16,-45],[25,-61],[17,-40],[50,-33],[-29,-64],[-1,-70],[-33,-67],[20,-57],[-24,-46],[6,-110],[29,-49],[13,-79],[-4,-89],[24,6],[28,-44],[15,-145],[1,-84],[-26,-82],[17,-103],[-35,-35],[7,-89],[-6,-86],[-37,-22],[16,-99],[-29,-53],[-40,13],[-40,3],[-27,15],[-12,79],[-8,70],[-50,-31],[-21,59],[8,88],[2,95],[-14,112],[-17,-49],[-23,-15],[-24,-66],[-29,30],[-42,83],[-42,-9],[-27,35],[19,114],[-55,-41],[-32,99],[-21,59],[0,98],[-4,92],[-22,60],[8,101],[-34,47],[-1,122],[18,82],[-15,45],[-16,82],[0,105],[3,123],[-15,73],[3,92],[-42,56],[-32,-14],[-31,50],[-10,67],[-1,71],[6,82],[-21,27],[-25,107],[-6,-138],[17,-66],[-18,-71],[-10,-62],[10,-48],[32,-27],[23,-75],[26,-64],[23,-78],[-36,-31],[-41,-9],[-42,0],[-33,33],[-37,18],[-30,106],[-39,-41],[-35,-10],[8,74],[-30,-39],[-19,-58],[-33,13],[-36,29],[-24,61],[-35,-22],[-3,65],[-17,94],[-32,58],[30,43],[18,48],[18,58],[-33,83],[35,101],[-17,63],[-14,74],[10,85],[-18,71],[-15,60],[24,71]],[[71437,24762],[1,-72],[-7,-33],[-8,-34],[4,-33],[14,-56],[6,-33],[5,-35],[2,-41],[-16,-10],[-14,-3],[-16,5],[-13,-13],[-21,-32],[-7,-44],[-8,-57],[4,-33],[0,-37],[7,-38],[-2,-35],[-13,9],[-10,-15],[-15,-3],[-6,-18],[-2,-8],[-13,1],[3,-36],[-3,-37],[8,-34],[-1,-36],[-11,-23],[-11,-11],[-12,13],[-12,-6],[-13,-6],[-8,27],[-12,5],[-13,-12],[-10,17],[-12,1],[-11,20],[-12,-10],[-12,-11],[-5,-31],[-13,-21],[-1,-38],[-2,-42],[-4,-35],[-13,-6],[-14,-22],[-12,-17],[-20,1],[-9,-31],[-8,28],[-10,23],[-10,-18],[-14,11],[-14,-11],[-10,-25],[-10,-21],[-5,-32],[2,-36],[6,-40],[-12,-6],[-3,-35],[-3,-34],[9,-24],[13,9],[12,-25],[13,10],[12,21],[13,6],[13,1],[13,-6],[-12,-16],[-8,-28],[-10,-23],[-12,-7],[-13,-24],[0,-35],[-7,-28],[-9,-29],[-11,-19],[-11,-13],[-13,-15],[-12,1],[-12,4],[-13,1],[-15,16],[-13,1],[-15,6],[-14,5],[-12,9],[-13,-16],[-11,24],[-11,-26],[-9,-31],[-9,-21],[-13,4],[-7,-30],[-7,-27],[-11,-16],[-17,-6],[-13,8],[-5,-33],[-11,15],[-12,2],[-11,-32],[-9,-44],[-12,-7],[-7,-32],[-13,10],[-17,33],[-12,-11],[-5,-34],[-4,-32],[-12,-13],[-11,-23],[1,-36],[-11,-18],[-12,-7],[-4,-36],[-9,-23],[-2,-40],[-10,21],[-6,-29],[-11,-15],[3,-35],[-10,-20],[1,-35],[-6,-30],[-11,-18],[-10,-28],[-12,-11],[-74,-55],[-14,-23],[-18,-37],[-12,-24],[-17,-34],[-22,-43],[-13,-24],[-13,-26],[-17,-38],[-15,-26],[-26,-4],[-12,-3],[-12,-2],[-15,-3],[-12,-1],[-14,-2],[-15,-3],[-12,7],[-18,19],[-15,15],[-12,12],[-15,16],[-15,15],[-12,9],[-12,5],[-13,3],[-13,4],[-12,4],[-13,4],[-12,5],[-12,5],[-12,5],[-13,4],[-13,7],[-11,-12],[-14,4],[-12,22],[-12,-5],[-12,12],[-12,2],[-13,3],[-13,2],[-12,-8],[-12,-7],[-12,-11],[-12,3],[-12,-11],[-12,-5],[-14,3],[-13,-8],[-12,-4],[-13,-17],[-11,-18],[0,-35],[-5,-35]],[[69714,22283],[-115,101],[-27,24],[-57,49],[-49,45],[-82,78],[-30,25],[-97,76],[-12,9],[-138,105],[-73,55],[-35,26],[-38,27],[-25,17],[-20,13],[-30,20],[-12,8],[-66,31],[-29,13],[-15,11],[-19,13],[-45,31],[-62,44],[-30,21],[-28,21],[-19,13],[-12,8],[-16,12],[-43,31],[-2,0],[-66,47],[-55,38],[-125,87],[-14,10],[-82,55],[-56,37],[-119,81],[-27,18],[-1,1],[-96,64],[-20,14],[-48,32],[-34,22],[-22,14],[-1,1],[-12,8],[-54,37],[-44,29],[-67,45],[-52,35],[-17,12],[-35,24],[-30,20],[-16,10],[-41,28],[-60,40],[-3,2],[-25,17],[-18,11],[-26,17],[-15,10],[-51,35],[-48,30],[-40,26],[-27,17],[-26,17],[-24,15],[-18,11],[-30,19],[-13,4],[-41,27],[-139,93],[-12,8],[-2,1],[-94,61],[-88,59],[-66,44],[-54,36],[-42,28],[-25,16],[-84,54],[-129,83],[-110,70],[-48,31],[-30,20],[-54,34],[-17,11],[-8,5],[-13,8],[-54,34],[-14,3],[-21,14],[-15,11],[-17,11],[-23,15],[-14,10],[-23,18],[-19,14],[-73,48],[-12,8],[-42,28],[-35,23],[-19,13],[-24,17],[-16,12],[-29,20],[-17,13],[-17,10],[-66,43],[-82,56],[-4,3],[-52,36],[-37,26],[-44,30],[-40,26],[-22,15],[-21,14],[-104,70],[-12,9],[-68,48],[-47,32],[-49,33],[-56,38],[-13,10],[-17,11],[-64,45],[-40,19]],[[64552,25825],[0,92],[-1,50],[-3,117],[-1,51],[-3,120],[-3,169],[-4,256],[-4,208],[-1,50],[-1,70],[-2,53],[0,49],[-3,127],[-1,83],[-2,72],[0,38],[-2,68],[-2,117],[-4,267],[-2,77],[0,47],[-1,40],[-3,118],[-2,119]],[[80285,28609],[68,-71],[10,-26],[1,-35],[-5,-33],[-9,-35],[-26,-62],[-18,-31],[-17,-21],[-19,-24],[-16,-21],[-17,-27],[-13,-36],[-10,-42],[-6,-44],[-5,-43],[-9,-65],[-13,-54],[-12,-43],[-9,-56],[-7,-44],[-3,-43],[30,-90],[44,-46],[19,13],[31,56],[40,190],[30,96],[37,63],[62,42],[27,64],[16,84],[33,73],[39,24],[36,6],[18,-19]],[[80612,28309],[11,-95],[4,-27],[-5,-116],[-28,-104],[0,-1],[-16,-86],[-1,-5],[-6,-26],[-9,-37],[-11,-117],[2,-56],[2,-41],[26,-64],[29,4],[15,-77],[-2,-97],[-11,-61],[-30,-66],[6,-46],[6,-44],[-6,-48],[-6,-46],[16,-99],[-1,-20],[-3,-66],[0,-72],[1,-132],[-16,-77],[-18,-75],[-27,-34],[-21,-52],[-21,-55],[-14,-71],[18,-100],[6,-101],[22,-64],[41,-58],[25,-27],[13,-59],[5,-83],[-4,-70],[-17,-47],[-34,-44],[-27,-42],[0,-114],[2,-95],[-2,-109],[-23,-124],[-2,-94],[-7,-114],[11,-85],[37,-104],[25,-78],[2,-6],[14,-46],[1,-99],[-34,-53],[-14,-57],[-25,-64],[-52,-23],[-44,-19],[-28,-34],[-27,-38],[1,-5],[4,-119],[-16,-66],[-37,-54],[-41,-20],[-29,18],[-36,28],[-52,-36],[-23,-60],[-10,-88],[8,-134],[-42,33],[-49,46],[-36,22],[-40,37],[-26,11],[-39,-11],[-43,-23],[-30,88],[-25,33],[-29,16],[-28,67],[-30,51],[-51,99],[-32,65],[-40,144],[-20,67],[-56,137],[-27,99],[-21,67],[-30,101],[-19,65],[-16,82],[-27,57],[-22,53],[-17,75],[-4,135],[-3,139],[-4,128],[-6,90],[-2,79],[-20,100],[-23,87],[-5,142],[-33,16],[-40,-1],[-41,52],[-36,19],[-32,9],[-23,50],[-24,33],[-69,104],[-39,-71],[-44,-100],[-22,-54],[-27,-19],[-30,-46],[-47,-30],[-27,-41],[-27,-31],[-20,-84],[-38,-94],[-21,-71],[-26,-58],[-28,-57],[-36,-72],[-35,-40],[-22,-38],[-30,-50],[-17,-19],[-19,-41],[-37,-71],[-20,-77],[-18,-74],[-29,-105],[-24,-8],[-32,74],[-45,163],[13,136],[0,80],[2,129],[0,89],[6,47],[18,93],[4,120],[20,107],[7,77],[-6,74],[-1,94],[-3,115],[-11,69],[-20,81],[-14,97],[31,17],[22,53],[25,121],[-28,22],[-24,2],[-28,-70],[-22,-49],[-35,-85],[-33,-62],[-74,-21],[-29,-19],[-43,-44],[-40,6],[-33,11],[-36,14],[-25,-1],[-88,-67],[-33,-31],[-25,-31],[0,-60],[-34,-66],[-53,-25],[-60,87],[-57,30],[-9,51],[-6,35],[-43,-18],[-5,-53],[18,-64],[25,-25],[-20,-35],[-19,2],[-39,12],[-67,13],[-35,12],[-37,-6],[-37,-38],[-33,5],[-43,39],[-55,36],[-26,12],[-24,17],[-61,19],[-37,49],[-17,97],[-21,79],[-62,75],[-31,36],[-46,80],[-28,59],[-14,-77],[-38,6],[-71,11],[-61,4],[-52,-35],[-21,4],[-7,1],[-32,47],[-38,30],[-8,-19],[-23,-54],[-18,-44],[-71,-31],[-44,5],[-39,-43],[-40,-47],[-41,-23],[-24,0],[-36,39],[-32,39],[-19,107],[-11,66],[1,103],[-9,87],[18,81],[18,58],[-5,83],[6,71],[21,94],[34,119],[24,107],[25,82],[23,64],[23,63],[30,69],[29,85],[22,115],[16,127],[-7,83],[-5,65],[-4,87],[-6,120],[-26,65],[-26,70]],[[38439,26464],[-12,-23],[-19,-27],[-13,-19],[-14,-25],[-19,-36],[-33,-68],[-24,-49],[-22,-51],[-26,-46],[-29,-61],[-31,-47],[-25,-36],[-23,-47],[-21,-28],[-18,-31],[-17,-23],[-30,-53],[-28,-50],[-23,-51],[-22,-44],[-30,-59],[-15,-39],[-24,-49],[-16,-36],[-5,-7],[-6,-11],[-18,-18],[-24,-23],[-27,-26],[-32,-37],[-17,-22],[-12,-25],[-12,-22],[-20,-26],[-17,-21],[-16,-20],[-16,-25],[-15,-27],[-17,-21],[-12,-25],[-22,-21],[-28,-22],[-28,-29],[-29,-30],[-20,-16],[-16,-14],[-18,-15],[-21,-19],[-20,-21],[-27,-34],[-15,-13],[-18,-10],[-17,-16],[-22,-17],[-20,-19],[-19,-20],[-21,-22],[-24,-17],[-29,-16],[-21,-15],[-14,-5],[-17,-17],[-31,-16],[-32,-23],[-19,-7],[-17,-1],[-13,-8],[-14,-13],[-18,-13],[-18,-12],[-23,-14],[-15,-4],[-24,-13],[-29,-18],[-21,-5],[-16,-6],[-20,-14],[-18,-17],[-15,-13],[-15,-5],[-18,-14],[-29,-35],[-33,-31],[-19,-21],[-14,-12],[-25,-21],[-20,-20],[-26,-35],[-31,-19],[-18,-19],[-30,-28],[-15,-11],[-11,-3],[-16,-7],[-11,-10],[-14,-8],[-15,-7],[-13,-17],[-23,-33],[-12,-12],[-12,-24],[-16,-25],[-13,-17]],[[36381,24071],[-14,-20],[-3,-3],[-14,-1],[-25,-6],[-19,-10],[-25,-18],[-33,-42],[-24,-37],[-17,-23],[-14,-15],[-24,-37],[-14,-13],[-20,-16],[-24,-18],[-18,-16],[-21,-30],[-22,-8],[-30,-41],[-23,-35],[-22,-12],[-17,-17],[-63,-69],[-22,-14],[-15,-21],[-19,-8],[-21,-11],[-29,-24],[-30,-27],[-33,-16],[-21,-15],[-11,-14],[-45,-33],[-17,-24],[-25,-17],[-25,-38],[-24,-35],[-15,-19],[-31,-56],[-58,-115],[-14,-8],[-21,-34],[-44,-52],[-69,-88],[-25,-17],[-11,-9],[-75,-86],[-16,-13],[-18,-34],[-41,-38],[-55,-53],[-38,-22],[-18,8],[-35,-11],[-33,-28],[-28,-36],[-30,-77],[-1,-3],[-11,-27],[-12,-6],[-7,1],[-39,0],[-13,-10],[-16,-1],[-18,-25],[-34,-29],[-17,-12],[-12,-4],[-16,-8],[-18,-19],[-18,1],[-23,-7],[-26,-19],[-26,-14],[-16,-14],[-203,-180],[-43,-49],[-40,-41],[-12,-12],[-28,-36],[-43,-43],[-37,-30],[-22,-20],[-17,-14],[-41,-38],[-13,-21],[-35,-57],[-34,-81],[-23,-81],[-11,-33],[-7,-30],[-11,-23],[-22,-60],[-39,-73],[-44,-49],[-33,-60],[-44,-80],[-32,-42],[-26,-29],[-41,-69],[-34,-46],[-27,-47],[-28,-59],[-44,-62],[-37,-41],[-14,-21],[-18,-15],[-13,-20]],[[33444,20741],[-81,208],[-29,74],[-27,68],[-30,79],[-5,13],[-1,2],[-4,10],[-22,56],[-9,22],[0,1],[-23,56],[-12,31],[-10,24],[-21,55],[-16,42],[-25,65],[12,17],[20,13],[12,5],[14,-20],[17,5],[12,12],[14,15],[14,16],[25,79],[30,41],[39,39],[24,32],[-22,122],[-1,5],[-6,32],[-9,43],[-9,30],[-11,10],[-7,39],[-3,33],[-18,59],[-18,90],[-12,59],[-16,-24],[-14,-20],[-10,-20],[-23,-32],[-16,-28],[-13,-29],[-10,-27],[-20,-42],[-20,-13],[-7,-30],[-16,-23],[-18,-31],[-16,-23],[-18,-34],[-15,-35],[-10,-21],[-28,-60],[-57,136],[-12,28],[-13,31],[-13,32],[-94,224],[-58,139],[-33,79],[-82,195],[-30,73],[-27,63],[-107,257],[-47,112],[-128,305],[-10,24],[-3,8],[-17,40],[-49,118],[-16,37],[-75,179],[-119,285],[-22,53],[-71,151],[-25,52],[-10,21],[-2,4],[-63,121],[-5,16],[-5,16],[-51,107],[-10,21],[-135,274],[-39,81],[11,16],[12,14],[13,14],[13,14],[15,12],[15,7],[16,11],[12,-1],[14,19],[12,10],[14,15],[10,24],[12,27],[12,3],[12,-26],[27,66],[17,37],[19,23],[13,40],[10,32],[30,20],[40,133],[3,15],[15,8],[26,85]],[[31941,25731],[70,-50],[65,-4],[63,39],[162,67],[93,107],[143,163],[140,112],[97,148],[142,177],[192,393],[131,294],[57,137],[179,210],[30,34],[-183,578],[-10,33],[-32,100],[-176,555],[235,924],[-22,305],[67,324],[6,-13],[11,-23],[23,-47],[30,0],[107,-122],[59,92],[136,-253],[202,-386],[52,-100],[2,-41],[3,-90],[2,-79],[21,2],[16,2],[22,-47],[19,-42],[38,-6],[87,-12],[59,-37],[19,-161],[69,-184],[79,-402],[117,87],[150,170],[50,-1],[68,115],[65,36],[51,72],[42,-1],[14,68],[43,43],[35,-32],[48,116],[195,269],[544,738],[51,22],[106,182],[1,87],[73,84],[95,29],[16,115],[355,504],[21,81],[51,104],[29,-6],[41,111],[213,337],[98,106],[99,62],[94,-23],[54,106],[119,3],[44,72],[53,-14],[33,95],[218,-818],[-51,-443],[29,-332],[37,-68],[191,-346]],[[54425,29193],[-9,-25],[-5,-13],[-28,-79],[-8,-23],[-25,-70],[-19,-56],[-14,-38],[-2,-7],[-95,-267],[-14,-9],[-14,11],[-17,-4],[-15,-11],[-11,-24],[-8,-30],[-14,-25],[-12,-15],[-10,-20],[-11,-22],[-10,-25],[-2,-9],[-10,-40],[-8,-27],[-1,-3],[-16,-27],[-11,-21],[-15,-9],[-11,50],[-6,34],[-10,23],[-13,12],[-16,4],[-8,5],[-4,3],[-25,41],[-1,1],[-11,19],[-12,19],[-3,1],[-10,4],[-34,28],[-12,-7],[-13,-37],[-20,-15],[6,-28],[-279,-543],[-99,-276],[-59,-165],[-23,-83],[-20,1],[-21,1],[-13,14],[-12,3],[-14,-16],[-24,-3],[-2,0],[-27,30],[-4,3],[-8,-30],[-4,-49],[-11,22],[-13,27],[-2,4],[-16,34],[-15,34],[-20,3],[-33,4],[-18,-17],[-12,-19],[-13,-15],[-9,-14],[-11,15],[-8,-18],[-14,-76],[-26,45],[-5,-17],[-7,-59],[-10,-23],[-21,-51],[-22,-53],[-9,-22],[-10,-26],[-9,-24],[-8,-35],[-24,57],[-15,34],[-20,6],[-13,7],[-19,45],[-33,50],[-11,15],[-25,36],[-17,26],[-44,72],[-12,23],[7,30],[8,35],[6,30],[-5,9],[-11,21],[-15,9],[-14,9],[-13,6],[-31,19],[-17,-11],[-12,-2],[-13,9],[-13,22],[-21,6],[-17,4],[-5,48],[-13,17],[-24,7],[-19,6],[20,70],[10,37],[6,41],[4,38],[-7,19],[-3,10],[-19,-9],[-25,-45],[-12,-15],[-20,-4]],[[82237,25062],[-8,36],[2,8],[16,-16],[-3,-10],[-7,-18]],[[82237,25062],[8,-46],[1,-35],[-6,-34],[-5,-38],[-8,-87],[-4,-42],[3,-38],[18,-82],[4,-32],[10,-33],[2,-12],[5,-31],[1,-3],[10,-30],[1,-2],[10,-21],[9,-31],[0,-1],[9,-31],[26,-55],[1,-1],[12,-14],[0,-2],[30,-85],[5,-14],[13,-14],[14,-8],[2,-1],[7,-2],[21,-7],[15,-5],[30,-9],[28,-10],[46,-15],[17,-5],[8,-3],[5,-2],[14,-4],[10,-2],[15,-4],[19,0],[16,5],[16,9],[16,9],[14,8],[1,0],[17,9],[13,0],[14,-6],[18,-10],[17,-13],[13,-9],[19,-10],[12,-6],[18,-7],[16,-3],[13,-2],[5,0],[22,-1],[25,1],[18,-1],[22,0],[20,2],[1,0],[14,4],[16,5],[13,6],[5,2],[16,11],[15,13],[2,2],[15,18],[18,19],[14,17],[2,3],[18,25],[-2,1],[-20,11],[-5,28],[-12,43],[-9,27],[5,15],[-20,43],[-17,40],[-20,46],[-43,99],[-12,-29],[-4,-11],[-9,-20],[-16,23],[-13,0],[6,68],[8,73],[-6,10],[-1,22],[-4,16],[4,9]],[[82947,24785],[2,0],[17,-8],[14,2],[18,7],[13,2],[30,4],[22,6],[13,-6],[14,-17],[12,-20],[13,-30],[6,-30],[7,-51],[7,-40],[1,-34],[3,-38],[4,-34],[-2,-34],[1,-45],[-1,-40],[9,-50],[0,-3],[6,-23],[4,-16],[7,-26],[9,-30],[-1,-35],[3,-38],[6,-34],[15,-45],[13,-35],[12,-39],[3,-8],[16,-41],[13,-23],[2,-2],[11,-22],[18,-34],[32,4],[13,10],[17,-10],[12,-8],[12,-8],[35,-22],[15,-10],[15,-9],[23,-14],[6,-4],[16,-9],[12,-7],[12,-9],[12,-14],[12,-23],[9,-22],[11,-24],[9,-25],[8,-29],[10,24],[9,14],[3,6],[15,24],[18,26],[22,12],[42,23],[15,4],[17,4],[15,5],[49,18],[37,15],[20,6],[17,6],[29,-7],[4,-54],[7,-32],[11,-37],[19,-26],[12,-30],[11,-45],[6,-55],[3,-55],[-2,-42],[2,-42],[0,-76],[-6,-32],[1,-38],[2,-38],[8,-43],[8,-59],[13,-59],[4,-6],[8,-14]],[[83997,23039],[7,-54],[0,-48],[0,-46],[0,-35],[0,-1],[8,-119],[59,-181],[7,-66],[4,-33],[10,-86],[18,-10],[-13,-55],[37,-20],[-4,-65],[30,-12],[-4,-35],[-11,-26],[-12,-10],[14,-21],[11,-23],[-9,-25],[-19,-24],[-10,-29],[0,-49],[-8,-41],[-16,-3],[-18,18],[1,-59],[-19,-24],[-21,13],[-15,15],[-21,17],[-12,-29],[-16,-35],[-12,-18],[-14,-22],[-28,-6],[-48,-147],[-11,-43],[-17,-35],[-6,-34],[-29,-59],[-21,-28]],[[83789,21446],[-33,100],[-23,96],[-17,78],[-14,97],[-6,91],[-9,95],[-8,110],[-6,86],[-11,87],[-15,72],[-16,69],[-10,56],[-18,71],[-30,108],[-24,81],[-26,73],[-23,52],[-26,64],[-30,68],[-32,73],[-24,49],[-31,57],[-33,47],[-27,30],[-41,21],[-37,19],[-24,10],[-27,7],[-27,5],[-40,3],[-35,0],[-34,-7],[-41,-3],[-35,-1],[-56,2],[-34,4],[-34,4],[-37,15],[-13,36],[-15,42],[-1,4],[-2,-27],[-4,-85],[-28,-49],[-37,-72],[-23,-48],[-36,-53],[-40,-17],[-39,-17],[-37,-10],[-36,-11],[-27,-9],[-36,-14],[-31,-15],[-41,-25],[-33,5],[-22,16],[-67,-26],[-38,89],[-23,-17],[-38,22],[-45,-10],[-26,-3],[-33,20],[-28,2],[10,-73],[15,-62],[27,-29],[33,1],[21,-26],[28,-53],[30,-12],[28,-31],[39,-10],[31,26],[25,-50],[11,-60],[-31,-70],[-16,-86],[-5,-23],[-13,-51],[6,-36],[4,-22],[-12,-43],[-2,-9],[-7,-17],[-12,-31],[-23,-34],[-26,-31],[-3,-3],[-30,-22],[-30,-9],[-3,-1],[-38,25],[-28,31],[-25,74],[-8,24],[-19,134],[-1,9],[-5,37],[-46,31],[-37,47],[-23,67],[-26,68],[-27,37],[-48,73],[-18,93],[-24,89],[-12,77],[-18,131],[-22,74],[-6,18],[-18,105],[-25,104],[-41,120],[-38,56],[-33,31],[-29,37],[-32,38],[-38,58],[-48,32],[-42,54],[-23,36],[-26,14],[-48,5],[-31,-19],[-36,-17],[-32,-15],[-25,0],[-30,-18],[-49,-8],[-46,-9],[-39,-9],[-27,16],[-34,-9],[-45,13],[-34,30],[-29,-8],[-37,6],[-30,22],[-20,136],[-22,123],[34,33],[24,-3],[31,49],[0,151],[-11,91],[-20,70],[-28,24],[-27,62],[-8,19],[-22,84],[-7,90],[-17,80],[-2,10],[-17,81],[-2,7],[-4,38],[-8,61],[6,173],[21,86],[3,15],[19,47],[28,-7],[24,-33],[13,-46],[34,5],[37,18],[16,54],[-24,61],[33,88],[11,-67],[33,-51],[35,15],[19,70],[-12,114],[-54,81],[-25,2],[-30,59],[-22,45],[-20,74],[-35,67],[-20,62],[35,34],[16,61],[-1,70],[5,69],[-14,78],[8,79],[-21,87],[-9,74],[-22,90],[3,94],[-2,20],[0,7],[-6,65],[-7,89],[-1,20],[6,110],[12,53],[8,34],[0,113],[0,18],[-17,107],[-20,92],[-19,37],[-30,31],[8,63],[14,49],[15,44],[14,81],[22,97],[15,45],[-5,90],[-16,109],[-12,52],[-26,9]],[[82040,31336],[1,1],[40,12],[13,-50],[7,-78],[12,-106],[11,-102],[18,-90],[10,-68],[19,-96],[31,-69],[28,-50],[41,-55],[30,-70],[25,-68],[23,-43],[20,-42],[23,-71],[24,-2],[26,-70],[28,-67],[39,-89],[21,-157],[32,-20],[13,-77],[33,10],[32,-56],[36,-81],[23,-53],[22,-51],[19,-41],[22,-59],[20,-98],[13,-86],[20,-76],[24,-54],[34,-88],[27,-99],[15,-95],[25,-73],[22,-63],[11,-50],[7,-28],[21,-79],[9,-62],[-6,-77],[14,-102],[15,-58]],[[83033,28290],[-18,-25],[-10,21],[-7,27],[-15,-1],[-21,-13],[-11,-25],[-8,-41],[-14,13],[-17,10],[-1,37],[-7,53],[-12,-5],[-19,-24],[-13,1],[-22,7],[-9,-32],[7,-36],[-13,-23],[-9,-25],[-10,-5],[-5,-1],[2,10],[4,20],[10,26],[-15,2],[-1,0],[-10,20],[-4,-35],[12,6],[-6,-28],[-15,-15],[-9,-23],[-10,25],[-22,-3],[-7,42],[8,33],[-12,-1],[-14,-23],[6,-38],[-11,-5],[-15,4],[-12,-10],[-14,-1],[-12,0],[-8,-26],[-13,9],[-13,-4],[-12,-3],[-13,-2],[-10,19],[-15,1],[-13,8],[-19,3],[-12,16],[-12,-5],[-13,26],[-8,25],[-17,44],[-17,0],[-20,-4],[-14,-2],[-16,15],[-4,39],[-12,21],[-29,6],[-51,9],[-10,2],[-4,-3],[-10,-11],[-51,-26],[-33,-40],[-1,-6],[-3,-34],[-5,-32],[-5,-33],[-11,-21],[-5,-29],[-1,-3],[-3,-36],[-3,-37],[-10,-23],[-11,-18],[-13,-15],[-12,-13],[-9,-32],[-5,-34],[-9,-49],[-12,-19],[-12,-13],[-9,-33],[-9,-28],[0,-35],[4,-37],[-1,-37],[4,-33],[2,-36],[11,-13],[1,-38],[-1,-36],[6,-34],[-8,-39],[-3,-26],[-4,-46],[-3,-80],[0,-1],[0,-1],[21,-58],[12,-8],[13,-7],[12,-13],[4,-3],[7,-6],[12,-12],[15,-13],[14,-21],[13,-19],[13,-13],[13,-13],[19,-19],[11,-13],[12,-17],[12,-10],[13,-13],[11,-16],[10,-29],[0,-37],[-3,-34],[-6,-45],[-3,-36],[0,-31],[0,-3],[-4,-38],[-1,-43],[4,-36],[10,-46],[6,-30],[2,-39],[5,-39],[11,-19],[15,-26],[7,-29],[6,-36],[6,-27],[1,-2],[0,-3],[3,-36],[4,-43],[3,-38],[0,-40],[2,-38],[6,-32],[5,-36],[3,-38]],[[82382,26123],[-15,12],[-9,59],[-5,36],[-8,40],[-7,33],[-33,-32],[-20,-19],[-13,-12],[14,-40],[-11,-19],[-24,0],[-12,-13],[1,-52],[0,-37],[1,-43],[10,-34],[12,12],[11,-18],[12,-13],[9,-25],[8,-26],[13,-20],[12,-16],[5,-56],[10,-27],[-5,-45],[-8,-37],[4,-65],[-3,-41],[2,-48],[-25,-8],[0,-55],[-4,-41],[12,-11],[15,-4],[17,1],[16,2],[10,-25],[12,5],[12,-8],[11,-25],[8,-32],[0,-34],[1,-38],[-3,-35],[-1,-39],[-9,23],[-13,4],[-13,10],[-15,3],[-12,2],[-13,-3],[-13,-3],[-17,-10],[-15,10],[-31,-8],[-10,-125],[-22,7],[-11,3],[0,-7],[-6,1],[-1,-13],[-6,1],[-1,-22],[14,-3],[8,-50],[9,12]],[[57520,22719],[-28,-190],[-8,-52],[-43,-287],[-14,-95],[-6,-43],[-27,-180],[-7,-41],[-13,-91],[-7,-43],[-25,-170],[-5,-32],[-5,-34],[-45,-298],[-6,-42],[-18,-121],[-9,-60],[-50,-333],[-12,-85],[-14,-93],[-6,-40],[-13,-85],[-16,-107],[-20,-133],[-13,-87],[-17,-97],[-6,-44],[-12,-86],[-11,-76],[-10,-71],[-24,-158],[-6,-37],[-8,-48],[-56,-383],[-39,-258],[-19,-125],[-9,-60],[-21,-141],[-11,-74],[-1,-4],[-8,-54],[-18,-114],[-31,-194],[-8,-51],[-4,-31],[-21,-129],[-9,-59],[-9,-62],[-15,-92],[-7,-46],[-24,-157],[-8,-50],[-10,-64],[-8,-52],[-7,-45],[-11,-66],[-6,-45],[-22,-135],[-5,-33],[-10,-65],[-9,-63],[-1,0],[-17,-113],[-5,-31],[-1,-7],[-4,-25],[-15,-71]],[[56567,16461],[-15,45],[-13,29],[-16,22],[-23,23],[-2,1],[-17,6],[-18,-3],[-34,-10],[-16,2],[-12,1],[-29,16],[-26,29],[-21,33],[-14,24],[-4,7],[-16,35],[-25,58],[-36,70],[-11,20],[-37,51],[-25,27],[-40,39],[-43,31],[-6,5],[-18,10],[-24,20],[-16,25],[-16,26],[-14,18],[-14,8],[-17,9],[-18,16],[-12,15],[-18,24],[-14,9],[-22,19],[-26,20],[-20,20],[-11,15],[-14,49],[-6,42],[-12,38],[-11,9],[-12,0],[-14,-12],[-11,-17],[-12,-26],[-36,-82],[-23,-51],[-19,-56],[-14,-43],[-17,-34],[-12,-17],[-18,-16],[-17,-7],[-28,-11],[-17,-9],[-12,-11],[-11,-14],[-10,-28],[-1,-4],[-14,-51],[-28,-107],[-13,-37],[-9,-23],[-8,-10],[-26,-22],[-15,-2],[-1,0],[-1,1],[-17,7],[-5,9],[-24,44],[-6,12],[-7,4],[-1,0],[-2,1],[-2,2],[-2,2],[-1,3],[-2,3],[-2,3],[-2,3],[-21,47],[-2,4],[-1,4],[-2,5],[-1,4],[-1,5],[-1,5],[-1,6],[-1,5],[-1,6],[-11,96],[-49,76],[-2,4],[-23,2],[-18,1],[-2,0],[-1,1],[-54,18],[-1,0],[-2,1],[-2,1],[0,1],[-49,40],[-2,1],[-1,2],[-28,32],[-70,33],[-75,-14],[-57,-8],[-38,-3],[-38,54],[-22,34],[-26,37],[-41,61],[-50,118],[-15,37],[-100,158],[-48,74],[-30,46],[-21,34],[-27,40]],[[54358,17886],[-1,2],[0,1],[-16,31],[-31,-53],[-18,23],[-16,10],[-26,10],[-13,12],[-15,30],[-16,30],[-17,17],[-12,-1],[-22,0],[-28,23],[-8,28],[-22,169],[-9,76],[-5,33],[-4,76],[-6,37],[-5,33],[-8,76],[-15,78],[-1,37],[-14,31],[-4,11],[-6,13],[-11,18],[-13,10],[-18,-13],[-42,-22],[-23,-12],[-38,-31],[-7,-5],[-35,-68],[-12,-79],[-10,-91],[0,-1],[-1,-6],[-1,-6],[-1,-5],[-1,-3],[-3,-14],[0,-2],[-1,-5],[-2,-4],[0,-1],[-11,-36],[-1,-4],[-2,-4],[-1,-4],[-2,-3],[-2,-3],[-14,-24],[-2,-3],[-1,-2],[-1,-1],[-11,-12],[-1,-1],[-43,-43],[-75,-75],[-2,-2],[-2,-1],[-85,-50],[-10,-9],[-11,-17],[-43,-99],[0,-1],[-2,-4],[-1,-3],[-1,0],[0,-2],[-52,-24],[-2,0],[-2,0],[-3,1],[-2,1],[-2,1],[-2,2],[-2,2],[0,1],[-43,54],[-1,2],[-2,2],[-2,4],[-1,3],[-2,4],[0,1],[-21,53],[-14,10],[-39,-39],[0,-2],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-3],[-14,-87],[-21,-124],[-17,-108],[-2,-24],[-1,-2],[0,-6],[-1,-5],[0,-2],[-8,-53],[-1,-4],[-1,-5],[-1,-5],[-1,-5],[-2,-5],[-7,-24],[-1,-5],[-2,-4],[-2,-4],[-1,-3],[-2,-3],[0,-1],[-10,-15],[-1,-3],[-2,-2],[-2,-2],[-1,-1],[-9,-9],[-2,-1],[-2,-1],[-2,-1],[-12,-5],[-2,0],[-2,-1],[-2,1],[-2,0],[-2,1],[-2,1],[-2,2],[-2,2],[-2,3],[-1,1],[-7,11],[-1,2],[-2,3],[-2,4],[-1,3],[-2,5],[-1,4],[-2,5],[-1,4],[0,3],[-38,183],[-29,109],[-1,4],[-1,5],[-1,6],[-1,5],[0,6],[-1,1],[-6,59],[-1,5],[0,6],[0,6],[-29,122],[-2,5],[-1,4],[-1,6],[-1,5],[0,1],[-10,56],[-7,46],[-1,5],[-1,5],[0,3],[-2,11],[0,2],[0,6],[-1,6],[0,6],[-1,6],[0,6],[0,6],[1,6],[0,6],[1,6],[0,5],[1,4],[11,82],[0,2],[15,103],[26,201],[-3,42],[0,1],[0,3],[-5,83],[0,3],[0,6],[0,6],[0,7],[0,6],[0,5],[1,6],[0,6],[1,6],[1,5],[0,1],[9,53],[6,82],[3,100],[-16,116],[0,14],[1,98],[-2,17],[0,4],[-4,46],[-7,25],[-23,84],[-2,9],[-2,1],[-21,13],[-1,1],[-2,2],[-2,2],[-2,2],[-2,3],[-32,52],[-2,3],[-1,4],[-2,4],[-36,92],[-17,18],[-2,0],[-2,1],[-2,1],[-1,1],[-7,6],[-12,8],[-4,0],[-4,-1],[-4,-5],[-10,-26],[-3,-15],[-9,-59],[-1,-3],[-1,-5],[-1,-6],[-1,-5],[-8,-29],[-1,-4],[-1,-2],[-1,-3],[-1,-2],[1,-26],[4,-102],[1,-13],[10,-80],[3,-21],[1,-61],[-2,-15],[-2,-26],[-2,-35],[-3,-7],[-18,-42],[-1,-3],[-2,-3],[-19,-31],[-11,-18],[-13,-11],[-10,-6],[-8,-1],[-11,1],[-6,1],[-18,11],[-11,10],[-8,11],[-7,13],[-1,3],[-23,66],[-4,12],[-4,24],[-5,26],[-3,19],[-12,168],[0,26],[-1,29],[-1,4],[-14,91],[-2,4],[-2,4],[-1,4],[-2,4],[-1,5],[-1,4],[-28,121],[0,1],[-2,5],[-1,5],[0,1],[-18,103],[-13,102],[-52,148],[-32,90],[-23,13],[-27,1],[-26,-33],[-58,-136],[-30,-130],[-37,-163],[-14,-124],[0,-1],[-7,-56],[-5,-20],[-6,-20],[-2,-5],[-1,-3],[-2,-2],[-3,-7],[-40,-53],[-9,-11],[-16,-19],[-2,-2],[-1,-1],[-21,-17],[-11,-29],[-18,-49],[-68,-3],[-1,-2],[-3,-2],[-29,-25],[-14,-12],[-20,1],[-1,0],[-15,2],[-7,1],[-1,0],[-2,1],[-1,0],[-29,13],[-1,1],[-1,0],[-23,15],[-27,87],[-8,30],[-4,16],[-1,7],[-20,97],[-5,6],[-15,27],[-11,19],[-6,12],[-62,121],[-72,140],[-1,1],[-1,3],[-1,0],[-8,13],[-29,47],[-1,2],[-2,1],[-97,126],[-21,27],[0,1],[-1,0],[-26,112],[-2,8],[-1,46],[-6,104],[-22,-11],[-27,-28],[-13,-19],[-23,-53],[0,-18],[1,-10],[33,-52],[6,-14],[0,-2],[2,-13],[-1,-29],[-19,-15],[-16,-13],[-15,-16],[-11,-25],[-42,-66],[-38,-61],[-55,-25],[-64,-51],[-34,-28],[-35,8],[-58,14],[-35,8],[-15,-1],[-14,0],[-22,-13],[-13,-15],[-7,-19],[-5,-26],[-3,-31],[5,-25],[12,-27],[1,-3],[23,-39],[1,-2],[18,-10],[1,0],[20,-2],[19,-3],[13,-2],[3,-1],[14,-15],[18,-41],[5,-19],[4,-19],[3,-42],[0,-4],[-6,-60],[-20,-147],[-14,-64],[-13,-46],[-3,-4],[-14,-37],[-1,-1],[-9,-12],[-23,-23],[-15,-16],[-15,-22],[-49,-73],[-14,-21],[-7,-23],[-4,-28],[-2,-13],[-8,-16],[0,-1],[-3,-5],[-7,3],[-29,12],[-35,14],[-10,4],[-12,-1],[-46,-6],[-22,-27],[-22,-90],[3,-40],[9,-56],[17,-76],[9,-125],[-15,-263],[5,-19],[-9,-88],[3,-14],[-2,-65],[-6,-80],[-4,-7],[-4,-2],[-5,-4],[-8,-6],[-13,-32],[-22,-34],[-12,-9],[-97,-31],[-147,-1],[-37,-52],[-97,-134],[-12,-13],[-21,-13]],[[45391,23407],[-15,-1],[-16,-33],[-18,-16],[-10,-34],[12,-36],[-7,-31],[-1,-38],[-9,-26],[-4,-33],[11,-22],[15,-36],[-15,-48],[-15,-17],[-16,-8],[-10,-26],[-18,-15],[-18,-3],[-10,49],[-8,28],[-9,56],[-19,-6],[-13,0],[-16,4],[-21,-20],[-22,9],[-14,-5],[-19,-7],[-16,-39],[-11,-31],[-16,-39],[-10,-24],[-12,-15],[-11,-13],[-12,-8],[-21,-30],[-12,-11],[-12,-12],[-5,-6],[-6,-8],[-3,-36],[-4,-47],[-10,-44],[0,-39],[12,-25],[-15,-32],[-10,-36],[-8,-34],[-10,-17],[-17,-1],[-14,8],[-13,-18],[-14,-11],[-15,-7],[-3,-45],[2,-56],[5,-37],[2,-49],[-7,-57],[0,-40],[11,-42],[7,-34],[2,-34],[-8,-38],[-17,-32],[-3,-42],[-6,-52],[-6,-33],[-11,-16],[-11,-20],[-15,0],[-13,-9],[-11,-24],[-9,-25],[-23,-12],[-16,10],[-24,6],[-14,-18],[-21,-24],[-14,-1],[-10,-37],[-1,-44],[-3,-67],[-4,-40],[2,-41],[4,-39],[-2,-50],[-21,-28],[2,-51],[-1,-39],[-12,-16],[-19,-24],[-7,-32],[-11,-22],[-12,-20],[-16,-4],[-9,-34],[-15,-4],[-15,-12],[-17,-26],[-14,-13],[-17,5],[-18,-30],[-9,-30],[-10,-26],[-11,-15],[-13,-32],[-11,-37],[-15,-19],[-15,-12],[-14,-2],[-7,-54],[-9,-35],[-18,-16],[-23,8],[-28,2],[-12,-6],[-20,-44],[-7,-37],[-5,-45],[-8,-35],[-12,-28],[-9,-37],[-11,-34],[-17,-32],[0,-42],[-8,-41],[-15,-16],[-18,7],[-13,-14],[-22,-24],[-20,-11],[-17,-32],[-21,14],[-17,-4],[-6,33],[-11,31],[-13,6],[-11,9],[-12,-5],[-9,-4],[-17,1],[-6,1],[-12,1],[1,42],[-13,46],[-7,36],[-28,9],[-16,1],[-14,-14],[-18,6],[-14,19],[-10,-22],[-16,-35],[-17,17],[-15,24],[-10,20],[-17,1],[-11,61],[-8,30],[-5,70],[7,40],[10,38],[1,38],[-9,30],[-15,9],[-16,6],[-19,-40],[-12,-3],[-11,15],[-24,-20],[-11,-16],[-18,39],[-10,91],[-39,54],[8,79],[9,42],[14,44],[2,43],[15,53],[5,64],[-30,48],[-14,14],[-19,23],[-18,129],[-26,-4],[-16,3],[-26,-20],[-13,-23],[-38,-7],[-22,-12],[-28,-17],[-40,86],[-44,57],[-25,2],[-15,-61],[-25,-62],[-37,-48],[-24,-50],[-48,-60],[-16,-2],[-17,-12],[-32,-20],[-27,-4],[-25,5],[-29,-2],[-22,-8],[-18,-16],[-22,12],[-24,-28],[-17,3],[-18,-45],[-11,-24],[-13,-4],[-13,-3],[-16,-3],[-23,-53],[-2,-57],[-21,-60],[-27,23],[-7,57],[-5,38],[-7,27],[-3,12],[-22,-9],[-16,-6],[-12,4],[-17,24],[-18,-23],[-23,-25],[6,-34],[-19,-70],[-9,-29],[6,-65],[0,-58],[-12,-31],[-20,-18],[-16,0],[-13,1],[-17,0],[-11,-25],[-10,-32],[-14,5],[-15,18],[-12,11],[-11,-23],[-20,-5],[-4,-40],[-23,-34],[-4,-86],[-3,-40],[-1,-4],[-10,-26],[5,-47],[9,-35],[-1,-39],[2,-37],[-11,-47],[-17,-35],[-12,-23],[-10,-28],[-16,-12],[-13,-22],[-40,-56],[-7,-47],[-9,-28],[-22,29],[-2,1],[-10,10],[-13,17],[-1,-35],[0,-38],[1,-21],[1,-12],[-5,-40],[-8,-31],[-8,-31],[-16,-12],[-8,-5],[-6,-5],[-20,-70]],[[42059,19901],[-26,20],[-4,-34],[-11,-38],[-9,-29],[-8,-29],[-2,-1],[-11,-1],[-9,28],[-11,20],[-8,-27],[-14,5],[-12,-13],[-6,-31],[-13,-2],[-12,-5],[-11,19],[2,-39],[-8,-35],[-13,-17],[-15,-14],[-13,-5],[-12,-11],[-13,-5],[-26,-20],[-12,-47],[-1,-52],[-16,-9],[-15,-9],[-14,-23],[-14,-2],[-21,-9],[-11,-33],[-35,-29],[-28,42],[-11,18],[-17,-3],[-10,-54],[-14,20],[-13,-16],[-27,-35],[-31,115],[-22,39],[-15,27]],[[41467,19577],[0,107],[1,193],[3,68],[1,35],[1,16],[0,20],[0,1],[3,72],[3,66],[7,66],[-1,4],[-2,50],[-15,212],[-31,470],[-1,43],[-3,54],[-1,34],[-8,99],[-5,126],[-2,43],[-5,123],[-2,41],[-3,54],[-2,48],[-3,90],[-11,267],[-5,111],[-6,113],[-4,91],[-7,152],[-2,57],[-2,37],[-23,486],[-2,44],[-4,94],[-2,50],[-2,34],[-4,105],[-2,38],[-2,34],[-4,80],[-2,42],[-3,52],[-1,29],[0,1],[-1,9],[-6,52],[-4,4],[-4,14],[-9,26],[-11,39],[-8,25],[-114,366],[-6,22],[-7,20],[-8,24],[-43,135],[-27,86],[-65,208],[-12,37],[-139,455],[-38,123],[-11,35],[-14,45],[-27,91],[-13,41],[-5,17],[-21,65],[-41,133],[-64,206],[-22,71],[-82,262],[-1,32],[-1,33],[-11,274],[-10,288],[-3,81],[-2,36],[-5,146],[-2,60],[-3,84],[-3,72]],[[43312,26233],[-48,72],[-16,28],[-1,3],[3,34],[0,41],[-3,45],[-5,41],[-9,37],[-17,70],[-5,42],[-5,54],[-2,13],[-4,19],[-8,25],[-5,1],[-15,2],[-18,-55],[-11,-27],[-11,-21],[-5,-6],[-9,-13],[-15,-15],[-14,-9],[-21,-10],[-9,-6],[-15,-9],[-13,-11],[-14,-12],[-13,-14],[-12,-14],[-20,-27],[-12,-15],[-12,-16],[-16,-22],[-2,-4],[-13,-17],[-29,-39],[-12,-17],[-1,-1],[-23,-32],[-18,-26],[-3,-3],[-10,-8],[-10,24],[-15,23],[-5,-8],[-2,-21],[2,-35],[3,-38],[-17,-30],[-16,-24],[-11,64],[-1,82],[-2,5],[-17,-16],[1,-51],[0,-6],[-8,-29],[-9,-10],[-11,6],[-10,-11],[-3,-20],[6,-36],[10,-43],[7,-34],[-13,-26],[-2,-2],[-25,-49],[-15,-28],[-14,-26],[-4,-8],[-17,-33],[-17,-27],[-14,-20],[-13,-15],[-11,-11],[-17,-15],[-26,-18],[-14,-11],[-19,-13],[-16,-16],[-23,-19],[-20,-18],[-7,8],[-64,73],[-1,1],[-11,-15],[-18,-23],[-35,-61],[5,-19],[-15,-67],[-1,-6],[-16,-12],[-14,-12],[-17,-13],[-32,-26],[-15,-13],[-14,-13],[-9,-11],[-5,-7],[-15,-20],[1,-2],[11,-16],[22,-27],[26,-53],[13,-61],[13,-44],[1,-3],[0,-1],[9,-26],[2,-5],[16,-39],[0,-1],[13,15],[13,15],[32,29],[4,-33],[1,-7],[5,-47],[22,20],[9,11],[3,4],[17,20],[17,16],[14,12],[30,35],[16,21],[20,12],[13,-1],[14,-2],[12,-1],[16,-2],[2,-37],[3,-35],[8,-59],[1,-2],[17,-82],[0,-13],[18,-66],[14,3],[13,-18],[-6,-33],[21,-34],[22,-40],[-2,-49],[-17,-31],[-12,-47],[-3,-38],[42,-43],[3,-46],[21,2],[6,-53],[-15,-18],[6,-53],[17,-9],[7,-31],[110,83],[10,-44],[17,-48],[16,-21],[0,-4],[23,-31],[1,1],[33,-44],[26,-38],[25,27],[11,-29],[4,-36],[51,42],[4,38],[8,32],[7,44],[-3,34],[11,21],[24,50],[8,27],[10,25],[14,-3],[12,4],[11,4],[12,9],[12,9],[12,11],[7,1],[5,0]],[[43181,24683],[-5,-83],[-2,-40],[-2,-40],[-6,-31],[-9,-28],[-12,-38],[-7,-28],[-5,-32],[-1,-37],[4,-43],[6,-39],[9,-27],[10,-24],[15,-24],[18,-30],[9,-22],[14,-37],[10,-27],[11,-20],[94,126],[55,13],[16,4],[80,35],[12,4],[1,-51],[0,-37],[11,-23],[14,8],[12,25],[-4,33],[3,43],[10,23],[11,21],[17,20],[30,42],[6,-44],[-3,-51],[13,-30],[14,-23],[17,-30],[8,-45],[-39,-30],[-16,-22],[11,-57],[20,0],[8,-42],[2,-6],[8,-21],[24,14],[12,-7],[-3,-77],[11,-27],[12,-10],[14,6],[12,53],[17,31],[19,13],[5,1],[5,-21],[-1,-5],[-21,-114],[11,-14],[10,-23],[12,-32],[11,-38],[0,-38],[-3,-49],[3,-34],[8,11],[3,4],[3,9],[6,22],[6,18],[17,91],[7,45],[7,-6],[2,-22],[4,-42],[10,-33],[15,-39],[1,-3],[8,-18],[12,-23],[12,-32],[6,-35],[7,-38],[5,-33],[6,-33],[5,-36],[7,-48],[4,-33],[10,-41],[7,-26],[13,-30],[15,-30],[19,-34],[12,-22],[12,-26],[9,-27],[10,-33],[10,-34],[4,-2],[16,-12],[12,-7],[9,-18],[5,-4],[9,-7],[14,1],[16,0],[12,3],[14,11],[15,20],[12,32],[5,62],[0,54],[2,50],[31,152],[32,70],[35,52],[39,0],[17,-34],[-1,-26],[-1,-19],[13,4],[10,4],[18,-21],[1,-9],[1,-26],[18,20],[9,10],[24,44],[4,33],[7,54],[6,39],[4,32],[13,38],[10,33],[7,53],[-5,78],[0,5],[-4,68],[3,68],[7,31],[9,23],[16,16],[22,14],[22,14],[11,8],[15,11],[17,12],[1,1],[21,13],[51,33],[-29,99],[0,35],[23,31],[2,51],[6,33],[14,15],[9,30],[20,59],[7,102],[-45,0],[-11,22],[-11,18],[-11,25],[-17,69],[9,27],[11,29],[10,-22],[13,-20],[16,14],[14,11],[7,6],[1,0],[14,11],[-8,60],[-32,24],[-7,26],[2,13],[3,19],[2,55],[-1,45],[-4,38],[-11,43],[-24,91],[0,2],[-8,27],[-9,37],[-2,7],[-7,21],[-12,8],[-5,-2],[-10,-3],[-11,8],[-18,28],[-17,14],[-16,-22],[-10,28],[0,2],[6,40],[0,1],[18,15],[45,38],[2,2],[24,19],[2,2],[20,17],[28,24],[7,-27],[10,-29],[5,-15],[4,-10],[3,1],[9,34],[14,50],[1,2],[0,-1],[15,-21],[18,-23],[14,7],[9,1],[3,0],[18,40],[7,16],[2,2],[2,5],[56,129],[31,73],[9,24],[11,27],[27,58],[5,-8],[8,-12],[24,-59],[-27,-39],[-11,-16],[-9,-17],[-15,-27],[-10,-29],[1,-3],[11,-31],[-15,-34],[-14,24],[-11,20],[-10,-19],[-11,-21],[-2,-42],[0,-10],[-1,-15],[5,-13],[57,-3],[5,20],[18,54],[29,87],[21,61],[11,22],[-7,50],[-10,78],[-10,76],[-3,20],[-6,45],[-5,33],[-8,59],[13,18],[9,34],[-41,109],[-12,25],[-42,40],[-1,2],[-20,47],[-10,23],[-24,57],[-30,65],[-14,-22],[-40,92],[-29,66],[-21,49],[-15,35],[-20,-18],[-16,1],[-14,0],[-13,-6],[-27,-12],[-20,3],[-14,6],[-29,17],[-16,7],[-2,154],[7,32],[0,2],[-23,58],[-29,57],[-17,-31],[-87,-163],[-2,-9],[-18,-92],[-2,-9],[0,-4],[-21,3],[-47,5],[-80,9],[-7,31],[-17,70],[-9,41],[-11,46],[-17,-39],[-11,-16],[-12,-26],[-10,-22],[-12,-22],[-12,-32],[-15,-14],[-11,-28],[-14,1],[-11,33],[-18,51],[-15,43],[11,8],[18,12],[-27,225],[-10,47],[-1,34],[-15,3],[-15,37],[0,38],[-1,35],[-15,6],[-11,-18],[-8,-27],[-13,-20],[-13,-19],[-13,-18],[-12,0],[-15,14],[-11,-21],[-16,-31],[-15,-27],[-14,-22],[-11,-15],[-13,-16],[-13,-18],[-12,-17],[-10,-16],[-36,-56],[-10,-17],[-3,-3],[-12,-20],[-14,-21],[-24,-38],[-13,-25],[-14,-33],[-9,-23],[-11,-24],[-11,-23],[-10,-17],[-2,-3],[-27,-50],[-13,-33],[-11,-30],[-9,-24],[-2,-8],[-6,-22],[-2,1],[-10,5],[-12,6],[-13,6],[-13,7],[-14,6],[-22,2],[-12,-6],[-11,-11],[-24,-38],[-14,-23],[-8,-25],[-8,-34],[-6,-38],[-6,-30],[-10,-25],[-12,-28],[-12,-30]],[[64552,25825],[-3,-169],[-1,-43],[-1,-40],[-2,-37],[-3,-128],[-6,-258],[0,-36],[0,-1],[-7,-292],[-2,-82],[-5,-207],[-3,-127],[-2,-76],[-2,-48],[-1,-37],[-1,-57],[-4,-204],[-3,-134],[-5,-196],[-4,-162],[-3,-149],[0,-9],[-4,-158],[-1,-36],[-2,-64],[-1,-74],[-1,-40],[-1,-54],[-1,-34],[-1,-59],[-2,-69],[-3,-108],[-2,-80],[-2,-56],[-1,-41],[-1,-71],[-1,-136],[-1,-123],[0,-47],[0,-44],[-1,-119],[0,-2],[0,-106],[0,-12],[-1,-139],[0,-137],[-1,-142],[0,-43],[0,-46],[0,-72],[-1,-37],[-1,-210],[0,-52],[0,-44],[-2,-249],[0,-51],[-1,-186],[0,-42],[-1,-82],[0,-172],[-1,-119],[-3,-173]],[[64456,19804],[-15,-17],[-2,-2],[-1,-1],[-80,-109],[-4,-5],[-5,-8],[-32,-47],[-35,-33],[-6,-1],[-14,-12],[-29,-33],[-21,-12],[-34,5],[-16,-13],[-20,-1],[-10,-24],[-10,-45],[-8,-30],[-12,-21],[-21,-26],[-10,-42],[-17,-58],[-11,-20],[-12,-11],[-22,-12],[-30,-27],[-57,-29],[-15,1],[-24,13],[-15,-4],[-50,-44],[-16,14],[-9,34],[-12,25],[-42,-85],[-13,-18],[-16,31],[-15,2],[-9,-20],[-10,-26],[-33,-10],[-17,11],[-22,2],[-27,45],[-4,38],[-10,23],[-12,-4],[-14,0],[-27,-15],[-13,6],[-15,15],[-13,16],[-15,-6],[-12,13],[-11,-21],[-18,-1],[-19,12],[-13,5],[-13,0],[-12,-4],[-19,-8],[-22,-15],[-15,-4],[-18,9],[-16,10],[-13,8],[-4,4],[-10,12],[-18,1],[-10,-7],[-5,-3],[-12,-13],[-12,-9],[-13,-4],[-13,1],[-18,18],[-15,15],[-13,13],[-5,5],[-14,6],[-12,6],[-12,27],[-13,18],[-13,13],[-12,6],[-8,-5],[-5,-3],[-14,-17],[-4,-6],[-50,-68],[-13,-18],[-18,-22],[-12,-20],[-16,-53],[-2,-53],[0,-6],[9,-33],[-11,-17],[-11,-16],[-13,-59],[-10,-17],[-13,-15],[-2,-2],[-11,-13],[-22,-42],[-19,-37],[-12,-25],[-12,-22],[-20,-6],[-13,1],[-18,-12],[-24,-29],[-19,1],[-12,7],[-23,0],[-14,-4],[-13,-5],[-14,-5],[-8,-56],[-125,-14],[-13,3],[-16,-12],[-5,-4],[-9,-11],[-14,-17],[-15,-17],[-21,-26],[-4,-5],[-14,-18],[-16,-20],[-10,-12],[-12,-14],[-16,-14],[-13,-6],[-14,-4],[-13,-2],[-36,-8],[-27,-5],[-12,-2],[-13,-3],[-43,-9],[-13,-3],[-15,-2],[-20,-4],[-22,-5],[-14,-3]],[[62037,18413],[-14,-3],[-13,-7],[-13,-13],[-15,-18],[-20,42],[-13,24],[-13,25],[-10,22],[-14,35],[-14,28],[-10,24],[-8,26],[-13,19],[-13,9],[-13,4],[-12,5],[-14,-5],[-15,-11],[-14,-1],[-15,-4],[-26,-26],[-14,-3],[-11,9],[-12,0],[-13,13],[-10,18],[-15,10],[-8,5],[-12,7],[-15,8],[-14,-3],[-29,-40],[-10,20],[-7,35],[-8,26],[-11,24],[-11,21],[-15,19],[-11,20],[-10,28],[-8,27],[-5,38],[-9,23],[-11,23],[-11,25],[-11,33],[-8,27],[-12,48],[-9,30],[-16,51],[-8,26],[-11,33],[-12,28],[-8,25],[-9,30],[-11,23],[-18,17],[-10,22],[3,59],[3,34],[-1,35],[-2,65],[6,31],[4,21],[2,12],[-2,41],[-7,34],[-7,32],[-14,68],[-11,52],[-11,53],[-7,37],[-8,36],[-8,37],[-7,36],[-8,31],[-10,30],[-11,30],[-10,21],[-11,20],[-11,16],[-8,29],[-2,36],[-9,22],[-13,19],[-13,27],[-15,12],[-14,16],[-15,21],[-11,23],[-11,30],[-10,17],[-13,20],[-10,19],[-11,19],[-9,34],[-17,13],[-13,2],[-12,15],[-12,13],[-25,-18],[-18,-13],[-14,-3],[-19,0],[-14,-5],[-13,-3],[-14,9],[-11,23],[-8,29],[-7,31],[-4,45],[-6,50],[-3,35],[1,38],[-7,41],[-7,29],[-16,3],[-13,0],[-18,-6],[-19,0],[-15,-10],[-13,-13],[-12,-3],[-16,-5],[-13,2],[-19,10],[-16,1],[-13,-1],[-16,-10],[-14,-9],[-20,-9],[-14,-7],[-12,-11],[-13,-12],[-19,-15],[-12,-12],[-15,-27],[-15,-35],[-9,-32],[-7,-44],[-3,-18],[-7,-28],[-11,-13],[-16,5],[-12,6],[-13,-4],[-12,-23],[-12,-13],[-12,16],[-18,27],[-11,13],[-12,28],[-12,20],[-13,4],[-13,-5],[-13,6],[-10,25],[-10,30],[-10,24],[-6,38],[-2,15],[-2,22],[3,36],[2,41],[-7,33],[-8,24],[-14,18],[-18,15],[-15,5],[-12,-1],[-15,-11],[-10,-27],[-14,-13],[-3,-3],[-8,18],[-3,6],[-13,18],[-8,9],[-4,4],[-12,-1],[-15,12],[-12,17],[-12,19],[-10,27],[-16,31],[-17,22],[-12,13],[-14,2],[-14,3],[-13,9],[-11,57],[-3,27],[-1,8],[-6,43],[-7,40],[-6,35],[-9,23],[-14,20],[-12,14],[-16,19],[-18,31],[-12,31],[-11,26],[-11,14],[-1,2],[-12,13],[-14,10],[-22,86],[1,38],[1,14],[0,35],[-4,35],[-8,56],[-5,34],[-5,42],[-3,47],[-3,49],[5,31],[8,33],[6,35],[0,41],[-3,33],[-5,31],[-12,46],[-6,30],[-4,34],[-8,27],[-15,11],[-13,7],[-11,17],[-11,17],[-13,11],[-12,0],[-38,-19],[-19,-1],[-5,1],[-22,3],[-13,2],[-12,5],[-12,11],[-16,5],[-13,1],[-12,6],[-10,24],[-14,17],[-10,18],[-12,19],[-12,4],[-14,6],[-14,0],[-17,-1],[-14,-1],[-15,-5],[-14,-1],[-16,2],[-19,-2],[-12,-7],[-23,9],[-13,5],[-13,-4],[-16,-43],[-17,-30],[-24,-35],[-2,38],[-1,40],[0,1],[-7,88],[-9,31],[-18,20],[-19,22],[-9,22],[-13,41],[-7,45],[7,38],[8,34],[10,38],[-1,43],[2,63],[7,31],[5,22],[5,17],[1,37],[-8,37],[-9,52],[-1,5],[-3,37],[-1,39],[2,40],[6,54],[2,8],[10,60],[11,58],[23,135],[18,99],[8,50],[7,44],[4,40],[3,44],[2,55],[2,44],[2,49],[2,72],[2,61],[2,71],[2,40]],[[86358,23253],[-30,-48],[-28,-69],[-39,27],[-15,-92],[-26,-37],[-18,11],[-13,9],[-36,39],[-29,65],[-26,61],[-22,53],[17,38],[7,15],[25,-13],[4,0],[29,-2],[34,13],[9,3],[7,-13],[23,-47],[25,-25],[26,26],[3,54],[34,19],[39,-87]],[[83033,28290],[9,-34],[4,28],[5,36],[28,-18],[29,-1],[28,0],[16,-24],[20,-30],[0,-95],[3,-55],[1,-41],[-4,-108],[-2,-42],[30,-78],[24,-86],[10,-121],[6,-47],[10,-74],[20,4],[31,-58],[28,-76],[35,-83],[26,-71],[16,-86],[9,-62],[23,-106],[14,-92],[27,-87],[35,-100],[30,-80],[15,-75],[19,-81],[46,-142],[35,-52],[29,-101],[-30,-88],[-34,-73],[-28,-57],[3,-2],[27,-13],[26,5],[30,-29],[19,47],[34,-40],[37,12],[21,-28],[7,-76],[22,-64],[25,-46],[29,-68],[33,-71],[36,-33],[33,-24],[44,-52],[42,-62],[-18,-49],[-24,-30],[-25,20],[-29,-25],[-22,-82],[-15,-63],[-23,-35],[39,-65],[11,37],[17,17],[28,43],[22,37],[27,16],[6,-98],[0,-76],[37,37],[32,-38],[34,-32],[29,-17],[31,-16],[33,-15],[31,-12],[36,-12],[39,-6],[33,-8],[6,-49],[43,5],[24,-54],[7,-74],[19,-53],[23,-62],[19,-47],[28,-48],[33,-88],[24,-103],[26,-52],[29,-34],[29,-41],[33,-81],[27,-79],[10,-53],[7,-34],[3,-1],[29,-9],[21,-18],[35,-20],[34,-21],[14,-58],[29,49],[25,-11],[3,-1],[33,-75],[28,-96],[46,-85],[30,-75],[26,-101],[24,-50],[29,-29],[35,-18],[28,-26],[20,-23],[21,-29],[48,-69],[29,-35],[27,-39],[29,-83],[15,-74],[-15,-37],[-18,-53],[2,-130],[34,-49],[12,72],[-4,111],[19,79],[-12,95],[23,27],[24,7],[31,16],[25,28],[34,1],[34,31],[36,4],[34,7],[27,-1],[44,-1],[30,23],[21,-48],[19,48],[22,21],[36,18],[22,12],[45,25],[34,25],[19,-11],[-11,-93],[18,-72],[21,-71],[6,-74],[-2,-87],[-5,-94],[-40,4],[-26,-15],[-27,-46],[-33,-10],[-25,-7],[-29,34],[-35,-24],[-37,-31],[-39,1],[20,-62],[44,-12],[25,44],[15,-48],[31,24],[33,-79],[31,60],[29,18],[50,57],[43,5],[47,-19],[29,-37],[-5,-63],[-19,-40],[29,-74],[23,-69],[13,49],[3,90],[16,85],[-11,66],[-5,96],[47,-53],[19,-35],[21,-86],[38,-72],[24,-58],[19,-82],[25,-107],[-16,-89],[-28,-47],[-13,77],[-24,61],[-29,75],[-7,-87],[18,-48],[21,-68],[24,-72],[-4,-82],[26,-9],[26,-79],[-13,-90],[-15,-82],[-7,-104],[-30,15],[-20,75],[-26,64],[-26,-25],[-30,20],[-24,71],[-31,69],[-23,39],[-24,72],[-34,-47],[-21,40],[-34,0],[-37,32],[-15,58],[16,85],[-41,-21],[-10,-90],[14,-81],[-30,-48],[-30,-22],[-33,-9],[-19,-74],[-32,-23],[-29,-1],[-27,-14],[-35,-66],[13,-73],[15,61],[22,9],[44,3],[41,26],[29,41],[36,42],[20,-66],[23,85],[40,33],[35,-11],[11,-55],[41,1],[20,-58],[-33,-28],[-19,-60],[-7,-102],[44,52],[51,22],[32,-96],[-15,-105],[-5,-53],[-7,-68],[-21,-92],[-16,-116],[-30,-11],[-11,-78],[-17,-57],[-26,-1],[-23,-17],[-27,7],[-46,-8],[-21,60],[-25,78],[0,-149],[24,-58],[34,-2],[19,-108],[-22,-43],[-30,-18],[16,-56],[-13,-95],[-9,-70],[-37,80],[5,-103],[26,-68],[-11,-73],[-41,-13],[-22,17],[-33,16],[-29,-53],[35,-30],[31,-31],[37,-5],[35,10],[38,-37],[6,131],[2,78],[20,100],[15,115],[25,9],[29,119],[42,-26],[24,-21],[4,-83],[-8,-88],[10,-141]],[[86107,20451],[-2,-35],[12,-55],[10,-25],[12,-32],[8,-38],[-4,-33],[-9,-27],[-10,-37],[-14,-62],[37,-129],[3,50],[8,38],[13,36],[11,33],[26,-136],[7,-42],[12,-65],[20,-108],[66,-351],[4,-23],[4,-18],[12,-61]],[[86333,19331],[-13,23],[-15,25],[-54,-150],[-1,-4],[2,1],[39,20],[7,-65],[8,-76],[-27,7],[25,-75],[-6,-65],[-25,1],[-9,1],[-45,-56],[-28,-36],[-19,-23],[-21,-27],[-36,32],[-26,23],[-124,-33],[-58,115],[-61,-26]],[[85846,18943],[-73,-32],[-105,92],[-11,51],[-44,24],[-38,60],[-4,5],[-56,98],[-8,42],[-31,79],[-8,28],[-11,38],[-10,33],[-11,37],[-14,47],[-4,15],[-7,22],[-16,56],[-9,39],[-88,334],[-11,37],[-37,81],[-11,40],[-10,36],[-51,181],[-12,41],[-46,164],[-20,70],[-23,81],[-38,127],[-12,39],[-18,60],[-21,69],[-20,69],[-57,192],[-45,149],[-10,33],[-23,71],[0,1],[-47,149],[-12,50],[0,1],[-48,148],[-10,31],[-26,87],[-10,35],[-3,9],[-10,31],[-43,136],[-13,42],[-66,206],[-14,47],[-84,280],[-29,93],[-13,41],[-43,141],[-27,90],[-9,32],[-15,37],[-2,4],[-9,-28],[-8,-26],[-14,-53],[-13,-16],[-16,-11],[-6,-34],[-13,0],[-26,0],[-7,-92],[-10,-1],[-13,2],[-12,-4],[-25,-1],[-23,-3],[5,161],[-30,52],[-43,6],[-51,-120],[2,-31],[0,-4]],[[82947,24785],[-21,50],[-3,6],[-11,25],[-15,34],[-6,31],[2,38],[8,29],[6,38],[8,25],[17,20],[13,9],[16,12],[11,19],[8,30],[0,40],[-4,28],[-3,18],[-8,54],[-15,21],[-11,21],[2,46],[0,48],[4,46],[-2,57],[-3,53],[-5,57],[-2,43],[-2,37],[-8,-28],[-10,17],[-8,8],[-8,9],[-15,16],[-12,-23],[-5,-2],[-11,-4],[-14,-8],[-2,-1],[-12,-1],[-9,-40],[-4,-46],[4,-48],[-9,-43],[-14,-22],[-13,-6],[-13,-32],[-21,-11],[-20,-9],[-15,-37],[-1,-2],[-23,-33],[-13,2],[-12,-5],[-14,-11],[-21,-12],[-19,1],[-15,0],[0,-39],[-1,-35],[-2,-39],[-4,-45],[-18,22],[-11,16],[-13,25],[-11,24],[-7,15],[-3,8],[-17,50],[-15,59],[-9,33],[-8,42],[0,3],[-9,42],[-7,50],[-7,48],[-16,107],[-8,28],[-7,42],[-17,5],[-6,33],[-7,40],[-5,36],[-1,7],[-1,19],[-1,21],[7,28],[-2,56],[-3,34],[-3,39]],[[41467,19577],[-237,-254],[-159,-170],[-19,-20],[-37,-28],[-29,-24],[-106,-87],[-41,-35],[-140,-121],[-48,-45],[-35,-33],[-55,-51],[-31,-27],[-88,-80],[-94,-86],[-37,-30],[-97,-92],[-39,-97],[-22,-54],[-33,-81],[-14,-37],[-91,-226],[-30,-75],[-9,-30],[-56,-130],[-35,-84],[-10,-23],[-70,-168],[-15,-36],[-64,-154],[-57,-136],[-9,-22],[-45,-107],[-90,-217],[-24,-56],[-16,-37],[-8,-31],[-3,-35],[7,-30],[-2,-35],[-12,-33],[-13,-23],[-12,9],[-16,-12],[-24,1],[-16,-17],[-15,-13],[-24,-15],[-12,5],[-12,10],[-14,-5],[-17,-5],[-16,-3],[-17,3],[-23,40],[-17,14],[-15,-8],[-16,-21],[-11,-18],[-16,-5],[-13,-21],[-8,-28],[-15,-15],[-25,15],[-17,26],[-15,11],[-19,-23],[-11,-24],[-11,-27],[-5,-34],[-11,-38],[-11,-27],[-8,-25],[7,-33],[1,-37],[-12,-15],[-17,13],[-25,-17],[-17,-30],[-12,-33],[-18,-7],[-14,5],[-13,1],[-18,24],[-17,22],[-15,26],[-11,24],[-14,18],[-11,26],[-6,16],[0,1],[-22,68],[-17,55],[-7,17],[-7,18],[-15,35],[-23,55],[-2,4],[-5,9],[-4,5],[-3,-1],[-4,-2],[-4,-5],[-2,-3],[-9,-25],[-7,-29],[0,-3],[-3,-14],[-5,-26],[-3,-19],[-3,-79],[0,-15],[0,-4],[3,-17],[28,-86],[4,-13],[18,-31],[5,-13],[4,-8],[3,-10],[0,-6],[0,-19],[0,-7],[-7,-173],[-2,-10],[0,-1],[-10,-35],[-3,-9],[-8,-15],[-12,-12],[-15,-7],[-17,-3],[-7,5],[-52,39],[8,243],[0,2],[0,7],[0,6],[0,6],[-1,6],[0,5],[-1,6],[0,4],[-7,53],[-1,2],[0,5],[-1,5],[-2,5],[0,1],[-19,82],[-1,4],[-2,5],[-1,4],[-2,5],[-1,2],[-1,0],[-74,-5],[-3,0],[-22,11],[-8,0],[-14,-8],[-3,-2],[-6,-7],[-4,-10],[-1,-20],[-1,-13],[-1,-11],[2,-45],[1,-4],[1,-6],[1,-19],[-7,-39],[-9,-29],[-17,-45],[-2,-4],[-21,-47],[-2,-3],[-4,-5],[-7,-2],[-10,5],[-7,8],[-6,15],[-4,23],[-2,19],[-3,32],[-13,135],[-1,27],[1,14],[2,41],[1,52],[-1,17],[-10,52],[-9,27],[-1,2],[-7,14],[-17,4],[-14,3],[-7,1],[-5,-5],[-5,-10],[-4,-13],[-6,-28],[-7,-39],[-1,-14],[-1,-22],[4,-25],[9,-43],[3,-9],[16,-45],[1,-19],[-1,-12],[-1,-5],[-4,-18],[-4,-9],[-5,-10],[-6,-7],[-10,0],[-45,0],[-6,0],[-18,8],[-18,-3],[-6,-6],[-8,-13],[-1,-2],[-6,-14],[-2,-8],[-1,-2],[-3,-35],[0,-11],[0,-2],[6,-43],[9,-31],[8,-37],[0,-39],[0,-45],[-20,-48],[-17,-35],[-16,-36],[-12,-14],[-16,8],[-9,30],[-18,63],[-12,16],[-15,15],[-12,-11],[4,-89],[10,-65],[7,-67],[1,-35],[2,-29],[1,-13],[0,-36],[-13,-27],[-4,-1],[-12,-2],[-12,6],[-14,11],[-12,15],[-14,23],[-13,25],[-5,31],[-2,11],[-10,39],[-5,18],[-6,6],[-9,8],[-13,10],[-13,26],[-3,6],[-2,-1],[-8,-5],[-4,-3],[-6,-56],[2,-67],[2,-20],[2,-19],[1,-14],[9,-55],[4,-27],[2,-41],[0,-34],[0,-2],[0,-2],[-4,-44],[-11,-20],[-23,5],[-27,7],[-15,-6],[-2,-1],[-1,-1],[-3,-3],[-14,-15],[-2,-21],[-1,-7],[-1,-9],[1,-3],[5,-40],[5,-21],[3,-16],[1,-11],[5,-38],[-7,-17],[-3,-7],[-13,8],[-5,10],[-8,22],[-7,33],[-1,36],[-6,45],[0,1],[-6,38],[-6,37],[-10,33],[0,1],[-3,6],[-7,13],[0,1],[-4,5],[-8,9],[-1,2],[-17,-2],[-1,-1],[-2,3],[-14,25],[-1,2],[-15,38],[-1,3],[-10,59],[-10,40],[-11,35],[-7,45],[-4,42],[2,37],[-5,31],[0,5],[0,10],[0,30],[-4,36],[-10,22],[-7,32],[-9,23],[-10,38],[-9,24],[-6,33],[-9,28],[-10,25],[-10,33],[-14,33],[-15,7],[-7,-5],[-10,-7],[-12,-7],[-18,-24],[-7,-29],[-2,-5],[1,-4],[2,-44],[8,-25],[1,-5],[4,-1],[18,-9],[11,-13],[12,-29],[6,-53],[1,-45],[-1,-6],[-7,-33],[-1,-5],[-6,-17],[-3,-11],[-1,-3],[-6,-31],[-6,-33],[-12,-42],[-9,-34],[-12,-13],[-9,-4],[-5,-2],[-13,-11],[-14,-11],[-12,-33],[-11,-50],[-10,-37],[-6,-12],[-12,-24],[-1,-3],[-10,-31],[-11,-10],[-13,3],[-3,15],[-3,14],[-3,-2],[-38,-19],[-12,-8],[-16,-19],[-14,-55],[-2,-43],[-9,-22],[-29,-31]],[[37128,15174],[-19,123],[-23,140],[-10,72],[-16,104],[-15,96],[-14,84],[-6,41],[-9,48],[-28,164],[-1,71],[-1,76],[-1,47],[-7,88],[3,47],[0,86],[1,145],[-5,34],[0,22],[-9,95],[0,14],[15,41],[4,20],[2,11],[0,28],[0,11],[-8,68],[-3,19],[0,3],[-6,15],[-6,7],[-4,1],[-4,1],[-3,-5],[-7,-20],[-25,-72],[-1,-2],[0,2],[-14,174],[-1,3],[-10,92],[-1,8],[-24,132],[-3,19],[5,29],[12,42],[5,11],[3,9],[2,5],[13,10],[5,-1],[67,-30],[17,-12],[2,-2],[8,-9],[2,-5],[1,-4],[2,-4],[43,-120],[7,-46],[0,-49],[0,-57],[4,-21],[5,-6],[14,-9],[2,-1],[12,-8],[12,3],[8,8],[5,8],[14,69],[7,36],[0,36],[-6,90],[-2,26],[-2,24],[-8,47],[-7,25],[-2,4],[-8,20],[-8,9],[-1,1],[-11,3],[-6,1],[-26,2],[-15,-6],[-3,-1],[-6,0],[-5,3],[-4,11],[-1,7],[0,19],[2,11],[2,17],[2,11],[17,99],[5,10],[4,4],[5,5],[22,14],[8,12],[1,2],[1,2],[1,10],[-3,49],[0,3],[-2,30],[-8,37],[-8,28],[-7,19],[-13,23],[-5,7],[-14,18],[-11,9],[-30,14],[-7,10],[-1,3],[-6,18],[0,3],[-1,8],[0,3],[0,21],[5,40],[-29,203],[-1,5],[-3,20],[-8,115],[-1,71],[-1,45],[-7,21],[-4,2],[-1,0],[-7,-10],[-3,-5],[-1,-9],[-1,-2],[-5,-32],[-3,-42],[-1,-17],[-3,-10],[-1,-4],[-2,-12],[-21,-70],[-14,-45],[0,-1],[-12,-19],[-9,3],[-1,1],[-8,2],[-4,21],[-1,14],[-1,28],[-1,3],[-9,24],[-3,10],[-10,13],[-14,8],[-33,18],[-6,3],[-6,27],[-2,36],[-10,27],[-8,27],[-6,33],[-4,57],[-7,77],[-7,53],[-5,35],[-1,3]],[[36699,18761],[19,58],[3,68],[13,0],[5,2],[15,6],[15,-10],[12,25],[13,-3],[5,-31],[35,36],[32,38],[11,13],[30,37],[4,6],[50,84],[19,24],[-3,14],[-23,132],[13,48],[6,21],[8,-24],[12,16],[37,23],[-4,8],[-9,5],[-4,0],[-9,46],[4,9],[17,25],[23,27],[-13,68],[-24,0],[8,35],[-25,29],[11,13],[15,8],[0,40],[-27,0],[0,7],[-5,0],[4,32],[3,0],[1,18],[5,3],[14,10],[19,13],[16,5],[16,-10],[12,-8],[18,-4],[11,-6],[16,-3],[23,7],[1,0],[0,-51],[2,1],[4,21],[4,-37],[-9,-10],[0,-82],[9,-29],[-9,-27],[23,0],[0,147],[0,39],[21,0],[0,19],[1,3],[2,0],[1,-25],[7,-15],[1,-28],[8,-34],[25,-27],[22,-19],[15,-63],[7,-28],[16,32],[10,89],[1,37],[-12,34],[-18,32],[-16,35],[11,16],[-5,17],[1,1],[29,43],[57,22],[0,55],[-3,-1],[-11,60],[24,20],[7,-30],[17,20],[-2,13],[19,19],[9,-53],[6,6],[-9,48],[11,13],[-9,93],[75,46],[-6,29],[-6,27],[-7,32],[8,33],[34,10],[50,66],[-3,22],[7,11],[-39,89],[7,23],[1,271],[-62,-16],[-22,-6],[-24,-7],[-1,88],[0,48],[-23,-22],[-19,-26],[-21,-22],[-9,-21],[0,-1],[-5,6]],[[37349,20777],[-27,39],[-7,10],[-15,87],[-12,-43],[-33,154],[-28,16],[-4,-1],[-9,-8],[-18,-21],[-2,-2],[-2,-2],[-39,-30],[-2,-1],[-2,-1],[-19,-7],[-2,-1],[-2,0],[-2,0],[-2,1],[-2,0],[-15,8],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-1,1],[-11,19],[-1,2],[-1,4],[-2,3],[-2,5],[-1,4],[-31,56],[-6,11],[1,34],[0,12],[-4,38],[-1,11],[-4,42],[-11,56],[-10,51],[-5,27],[-10,20],[-12,21],[-10,14],[-6,3],[-2,1],[-2,2],[-2,2],[-15,17],[-2,3],[-1,1],[-36,56],[-2,2],[-1,3],[-2,3],[-2,4],[0,1],[-21,54],[-2,4],[-1,4],[-1,5],[-1,2],[-6,25],[-1,3],[-1,6],[-1,5],[-1,5],[-1,6],[0,4],[-5,49],[16,83],[19,103],[8,25],[1,2],[46,87],[18,44],[8,44],[9,48],[20,76],[6,10],[17,26],[18,27],[37,33],[43,25],[66,32],[9,-3],[2,-1],[25,-10],[41,-45],[35,-38],[26,-10],[12,0],[31,2],[30,17],[10,15],[23,36],[1,1],[13,37],[13,56],[19,145],[-11,56],[-16,36],[-27,58],[-15,20],[-7,4],[-131,-10],[-30,-2],[-73,-65],[-1,-1],[-2,-2],[-2,-1],[-2,0],[-2,0],[-1,0],[-25,1],[-172,-131],[-14,-20],[-1,-2],[-2,-2],[-1,-1],[-44,-40],[-19,-37],[-1,-2],[-1,-3],[-1,-1],[-19,-29],[-74,-134],[-37,-80],[-23,-72],[-24,-95],[-12,-33],[-18,12],[-19,14],[-42,29],[-39,61],[-54,108],[-22,44],[-20,192],[-1,25],[0,13],[-13,88],[-17,67],[-8,21],[-22,67],[-34,102],[-15,7],[-23,9],[0,2],[-20,60],[0,2],[-2,4],[-1,3],[-8,18],[-5,14],[-5,17],[-6,45],[-4,77],[-2,110],[0,20],[6,54],[1,5],[0,6],[0,6],[1,6],[0,6],[0,12],[0,2],[-15,149],[2,28],[-4,29],[8,160],[4,10],[4,29],[13,31],[15,22],[18,21],[12,23],[9,23],[13,44],[9,57],[6,54],[1,45],[-12,52]],[[43181,24683],[19,-11],[30,-19],[14,1],[12,1],[18,14],[5,49],[5,32],[19,-4],[25,-1],[15,-5],[12,-4],[0,-1],[15,129],[1,2],[0,1],[0,1],[2,6],[8,38],[0,1],[8,35],[10,19],[11,19],[1,7],[2,39],[2,35],[1,27],[3,62],[-9,36],[-7,29],[-3,54],[-9,32],[-11,-5],[-1,1],[-35,21],[0,-1],[-25,17],[4,38],[-2,45],[-1,59],[-15,39],[-3,38],[0,30],[1,27],[4,85],[0,5],[16,0],[18,25],[0,34],[1,54],[1,41],[5,37],[2,28],[0,7],[0,40],[-1,39],[0,34],[-8,27],[-12,10],[-1,49],[-5,74],[-11,28]],[[29050,23728],[-28,-53],[-17,-22],[-19,-28],[-25,-41],[-22,-36],[-16,-36],[-21,-42],[-18,-32],[-18,-29],[-19,-26],[-14,-20],[-14,-9],[-21,-16],[-21,-16],[-13,-12],[-12,-8],[-13,-21],[-15,-21],[-15,-10],[-15,-7],[-16,-8],[-21,-12],[-17,-14],[-12,-13],[-14,-20],[-14,-26],[-18,1],[-17,5],[-15,-5],[-16,-3],[-16,1],[-17,-4],[-13,-6],[-21,-16],[-16,-14],[-13,-10],[-16,-2],[-13,6],[-57,-19],[-9,-4],[16,-96],[12,-69],[10,-62],[6,-35],[20,-115],[7,-40],[21,-127],[19,-108],[7,-45],[23,-133],[12,-74],[21,-123],[14,-85],[21,-122],[39,-230],[-23,-16],[-15,-9],[-17,-18],[-41,-22],[-25,-27],[-21,-13],[-63,-52],[-44,-32],[-33,-28],[-18,-14],[-33,-28],[-44,-31],[-25,-28],[-37,-13],[-52,-37],[-63,-59],[-38,-37],[-37,-49],[-55,-87],[-31,-52],[-12,-27],[-12,-31],[-12,-21],[-11,-25],[-12,-15],[-20,-24],[-27,-21],[7,-48],[9,-52],[43,-249],[25,19],[19,0],[15,-2],[16,-6],[14,-9],[21,-1],[15,7],[16,1],[13,-15],[16,-29],[11,-35],[10,-29],[19,-19],[13,1],[13,0],[21,-1],[22,-2],[13,-15],[23,-46],[24,-25],[34,-34],[15,-20],[11,-14],[29,-8],[16,0],[22,5],[29,5],[17,-2],[25,-10],[23,-20],[25,-18],[17,-13],[20,-19],[12,-11],[12,-4],[24,1],[12,0],[21,-21],[17,-25],[10,-19],[10,-20],[9,-32],[11,-19],[2,-42],[-1,-39],[6,-68],[7,-52],[8,-57],[9,-30],[0,-37],[-12,-106],[0,-36],[-7,-39],[-4,-37],[-1,-47],[-4,-42],[-8,-30],[-23,-71],[-12,-37],[-1,-42],[-5,-33],[-10,-28],[-4,-34],[-4,-33],[-2,-39],[-5,-58],[-6,-44],[-11,-18],[-16,-11],[-19,-22],[-13,-30],[-25,-61],[-12,-16],[-21,-9],[-12,-21],[-16,-37],[-11,-17],[-15,-5],[-13,-21],[-19,-13],[-14,-28],[-12,-10],[-13,13],[-13,-15],[-12,-17],[-11,-27],[-39,-50],[-15,-14],[-20,-7],[-18,-33],[-23,-19],[-14,-15],[-17,-13],[-9,-20],[-16,-23],[-12,-5],[-39,-85],[-17,-29],[-24,-41],[-16,-15],[-35,-33],[-23,-27],[-22,-28],[-12,-21],[-12,-20],[-17,-9],[-14,-2],[-15,-7],[-13,-9],[-16,-13],[-16,-17],[-14,-9],[-17,-19],[-17,-20],[-13,-22],[-17,-13],[-14,-7],[-13,-15],[-12,-19],[-15,-7],[-16,-3],[-19,-7],[-15,-15],[-20,-18],[-25,-19],[-21,-16],[-17,-16],[-15,-21],[-11,-10],[-16,-3],[-16,-8],[-17,-7],[-12,-4],[-12,-9],[-16,17],[-22,-3],[-16,-13],[-25,-30],[-19,1],[-15,-1],[-2,-41],[-11,-23],[-11,-23],[-15,-14],[-12,21],[-6,31],[-18,20],[-15,-12],[-12,-8],[-12,6],[-13,1],[-18,-1],[-15,19],[-12,0],[-12,-17],[-13,6],[-16,18],[-19,18],[-19,18],[-24,7],[-16,11],[-12,-4],[-12,-29],[-12,-20],[-26,-22],[-13,-14],[-16,-23],[-22,-22],[-18,-13],[-14,-17],[-12,-18],[-13,-22],[-29,-36],[-16,-16],[-19,-29],[-12,-18],[-13,-11],[-11,-19],[-12,-27],[-14,-12],[-10,-19],[-10,-27],[-17,-22],[-18,-18],[-12,-13],[-14,2],[-14,-11],[-18,-21],[-14,-15],[-15,-16],[-11,-29],[-21,-4],[-13,-3],[-13,-21],[-15,-11],[-16,0],[-17,11],[-19,11],[-19,-4],[-17,-12],[-23,-23],[-23,-17],[-19,-13],[-13,12],[-14,10],[-43,-59],[-11,-20],[-8,-49],[32,-88],[25,-70],[10,-31],[12,-37],[32,-93],[37,-110],[9,-28],[11,-34],[79,-235],[50,-144]],[[26536,16044],[-13,0],[-13,-11],[-14,-18],[-16,-20],[-14,-33],[-14,-23],[-19,-34],[-14,-23],[-20,-33],[-14,-38],[-14,-16],[-14,-3],[-9,-31],[-9,-28],[-13,-14],[-14,-23],[-13,-3],[-12,-38],[-12,-24],[-12,-34],[-9,-27],[-10,-31],[-11,-17],[-13,-14],[-8,-27],[-19,-14],[-13,-10],[-8,-31],[-11,-24],[-13,-13],[-11,-4],[-11,-20],[-18,-7],[-14,-24],[-11,-24],[-11,-14],[-15,-13],[-13,-24],[-14,-17],[-16,0],[-14,27],[-8,34],[-4,41],[5,34],[14,38],[12,31],[16,27],[15,21],[14,13],[11,34],[11,24],[9,31],[12,17],[8,28],[-8,27],[-11,24],[-6,33],[-15,45],[19,34],[15,17],[2,38],[-10,62],[-9,33],[-7,28],[2,40],[14,16],[14,17],[17,51],[12,39],[9,26],[7,41],[-1,40],[-10,23],[-17,15],[-13,14],[-13,19],[-18,-2],[-18,-22],[-19,-29],[-18,-21],[-12,-6],[-14,-8],[-24,-17],[-13,13],[-20,13],[-18,8],[-10,-23],[-9,-24],[-13,-21],[-14,-6],[-15,14],[-19,19],[-12,3],[-12,-36],[-7,-39],[-12,-26],[-5,-38],[-11,-18],[-10,-17],[-13,-31],[-14,-11],[-16,12],[-12,13],[-16,-5],[-10,-25],[-3,-41],[-6,-41],[-5,-35],[-8,-28],[-9,-23],[-18,-18],[-11,-20],[-17,-18],[-26,-17],[-11,-15],[-26,-7],[-14,-10],[-12,7],[-12,-10],[-19,-8],[-18,-2],[-14,-5],[-9,-30],[-12,-5],[-16,-15],[-15,-12],[-11,-44],[-16,-24],[-5,-3],[-13,-7],[-19,-7],[-78,-14],[-58,-37],[-25,-4],[-46,-44],[-40,-38],[-45,-44],[-96,-38],[-49,-3],[-42,7],[-35,-86],[-25,-68],[-19,0],[-37,-60],[-70,-111],[-47,-103],[-37,-123],[-17,0],[-32,-37],[-20,-45],[-38,-68],[-20,-34],[-21,-14],[-150,-256],[-11,-35],[-9,-27],[-12,-41],[-16,-20],[-11,-16],[-22,-32],[-10,-24],[-14,-38],[-16,-13],[-24,-42],[-16,-34],[-13,-34],[-17,-41],[-21,-20],[-16,-24],[-24,-21],[-16,-24],[-13,-27],[-14,-14],[-14,-17],[-13,-20],[-13,-21],[-12,-17],[-12,-10],[-12,-17],[-10,-21],[-15,-14],[-15,-3],[-17,-7],[-13,-10],[-14,-3],[-18,-14],[-13,-4],[-19,-30],[-71,-120],[-36,-28],[-6,-4],[-12,-7],[-13,-7],[-47,-26],[-30,147],[-22,105],[-95,463],[-7,35],[-18,89],[-15,70],[-22,110],[-28,139],[-70,340],[-15,-24],[-17,-11],[-21,-20],[-14,-4],[-17,-37],[-14,-34],[-17,0],[-20,-4],[-17,-3],[-15,-21],[-18,-34],[-15,-7],[-11,-17],[-22,-20],[-12,0],[-16,6],[-15,-6],[-10,-21],[-12,-27],[-17,-28],[-13,7],[-18,-7],[-18,-17],[-15,-27],[-16,-24],[-29,14],[-10,-24],[-12,-7],[-12,-14],[-11,-37],[-15,-4],[-14,-3],[-14,-10],[-12,-11],[-14,-13],[-16,3],[-13,-3],[-14,-14],[-11,-27],[-10,-17],[-12,-7],[-16,3],[-13,4],[-11,-7],[-18,0],[-13,-4],[-15,11],[-13,-4],[-14,17],[-15,-7],[-13,-13],[-14,0],[-17,-21],[-14,-13],[-15,-18],[-13,-10],[-21,-7]],[[22464,14284],[-26,185],[-25,174],[-9,58],[-5,38],[-2,16],[-21,142],[-78,548],[-22,155],[-5,36],[-10,67],[-8,55],[-8,54],[-5,34],[-4,34],[-5,33],[-4,27],[-8,61],[-47,304],[-6,36],[-6,32],[-21,113],[-45,246],[-7,37],[-6,32],[-6,33],[-6,33],[-6,31],[-6,35],[-10,54],[-2,7],[-11,63],[-18,100],[-27,100],[-79,285],[-115,288],[-45,112],[-45,110],[-66,163],[-16,40],[-15,36],[-9,23],[-19,43],[-1,2],[-18,45],[-32,83],[-18,48],[-32,93],[-5,12],[-79,230],[-200,577],[-11,25],[-11,16],[-7,28],[-8,31],[-1,36],[3,35],[2,41],[-5,32],[-6,42],[-8,40],[-2,35],[-5,35],[-1,54],[1,42],[-6,37],[-6,30],[-16,48],[-7,37],[-9,36],[-4,34],[-12,80],[-6,34],[-10,32],[-11,23],[-3,36],[-3,43],[-13,44],[-4,38],[7,43],[2,38]],[[22943,23827],[14,21],[31,11],[36,-20],[23,65],[24,11],[24,-14],[26,21],[29,-13],[19,-47],[15,-7],[23,-109],[15,-18],[7,-42],[-3,-75],[8,-25],[-3,-42],[39,-54],[24,-54],[22,-29],[19,-50],[12,10],[25,-35],[-2,-39],[8,-32],[24,-12],[24,-32],[8,-65],[27,-30],[0,-49],[27,-82],[85,1],[9,-54],[26,1],[10,-210],[12,-46],[37,-53],[76,-35],[436,55],[220,28],[631,80],[34,5],[7,13],[2,2],[30,52],[32,-29],[26,87],[75,214],[14,122],[11,16],[13,1],[15,-18],[13,-3],[18,54],[11,16],[13,-12],[21,54],[23,16],[14,-3],[12,28],[16,38],[22,-2],[28,29],[9,25],[11,23],[14,4],[23,-34],[13,9],[17,52],[28,3],[19,58],[12,22],[51,43],[23,46],[7,31],[4,38],[1,47],[3,37],[2,70],[-1,35],[-4,34],[0,37],[2,71],[15,66],[6,34],[18,154],[16,55],[15,61],[17,58],[13,5],[5,-27],[-7,-34],[2,-56],[18,-45],[9,-33],[29,-25],[12,-24],[18,1],[16,-6],[12,31],[19,4],[14,-15],[12,-5],[13,-22],[32,17],[7,28],[7,28],[21,32],[21,67],[34,47],[9,3],[15,-5],[15,14],[9,4],[14,35],[12,4],[14,-9],[15,40],[13,9],[14,43],[18,50],[7,4],[10,12],[-4,35],[2,54],[14,30],[17,17],[40,12],[9,36],[15,26],[21,9],[13,27],[6,66],[5,5],[27,5],[11,-28],[42,-5],[34,59],[25,33],[12,-23],[17,12],[8,-38],[17,-8],[14,-15],[22,-34],[29,23],[29,-16],[12,32],[18,13],[37,23],[23,22],[0,38],[-11,88],[10,47],[16,15],[27,13],[11,36],[5,44],[7,19],[9,40],[-1,37],[8,74],[14,33],[9,40],[-3,35],[9,35],[10,78],[19,7],[7,36],[13,20],[-2,34],[-13,8],[-14,69],[28,76],[9,35],[38,31],[8,39],[13,20],[-22,113],[0,84],[10,29],[8,0],[22,52],[-1,51],[8,30],[3,33],[24,13],[30,38],[0,35],[11,41],[12,7],[15,20],[12,-1],[4,-41],[11,-23],[60,-34],[23,16],[17,12],[26,40],[14,25],[9,68],[12,64],[26,37],[9,44],[-1,69],[-15,71],[-1,42],[20,30],[4,35],[15,101],[18,43],[27,-9],[331,-869],[73,-192],[236,-523],[9,-19],[30,-59],[154,-299],[376,-733],[33,-65],[91,-177],[157,-310],[136,-269]],[[76143,25699],[-16,-31],[-3,-20],[-43,31],[-11,-92],[-7,-55],[-5,-43],[6,-122],[-2,-11],[-7,-8],[-7,-5],[-2,0],[-8,-4],[-13,-2],[-9,17],[-12,18],[-8,7],[-9,0],[-6,-3],[-27,-18],[-7,-9],[-7,-17],[-4,-19],[-1,-6],[-4,-35],[-2,-2],[-31,-24],[-8,10],[-17,20],[-4,4],[-3,-6],[-1,-4],[-16,-37],[-28,-67],[-1,-3],[-18,-46],[-2,-1],[-39,-27],[-20,73],[-31,-66],[-32,-66],[-6,-8],[-8,-11],[-27,-34],[-24,-28],[-15,-34],[-4,-11],[-4,-14],[-12,-38],[-1,-4],[-4,-15],[-5,-43],[-7,-36],[-4,-23],[0,-1],[-21,-69],[-3,0],[-2,0],[-20,1],[-5,-6],[0,-9],[-4,-15],[-2,-1],[-7,2],[-18,3],[-5,3],[2,31],[2,15],[-2,27],[-4,88],[-15,-10],[-19,-12],[-12,-11],[-21,-14],[-10,-8],[-9,-18],[-5,-10],[0,19],[-1,36],[-1,0],[-19,0],[-8,0],[-19,0],[-9,-38],[-5,-33],[-6,-35],[-6,-18],[-7,-20],[-2,-6],[-12,-29],[-14,-27],[-12,-21],[-11,-15],[-2,-2],[-11,-15],[-1,52],[-2,69],[52,148],[15,44],[-1,7],[-4,28],[-9,22],[-10,19],[3,13],[5,14],[-12,28],[-9,32],[2,46],[5,36],[-3,59],[2,49],[12,33],[10,37],[11,29],[1,13],[-60,-8],[-3,-1],[-5,59],[7,37],[-3,46],[9,42],[5,16],[4,14],[3,35],[-2,36],[-5,33],[5,45],[1,15],[3,16],[10,24],[7,11],[-40,7],[-2,1],[1,15],[1,20],[8,135],[1,18],[-16,25],[-6,21],[-7,57],[-25,-7],[-1,36],[-26,32],[-6,7],[-5,7],[0,24],[0,30],[2,84],[0,46],[1,6],[5,35],[1,3],[13,36],[4,11],[7,21]],[[75401,26252],[-4,-9],[20,-9],[12,-5],[38,34],[41,19],[25,11],[21,0],[24,17],[31,22],[22,-29],[2,-18],[2,-7],[3,-7],[2,-6],[6,13],[-2,4],[-1,5],[0,1],[0,2],[29,-15],[35,-29],[33,-17],[26,16],[28,29],[16,30],[11,22],[12,25],[10,32],[6,43],[17,111],[40,-25],[23,-78],[9,-40],[10,-51],[-3,-34],[3,-38],[10,-30],[8,-33],[15,-36],[13,-47],[8,-36],[11,-25],[12,-15],[13,-29],[11,-26],[16,-28],[12,-22],[24,-49],[12,-24],[13,-22],[23,-53],[-6,-97]],[[76143,25699],[35,-11],[24,53],[22,80],[22,24],[22,10],[69,17],[32,24],[37,32],[42,20],[21,36],[24,95],[16,128],[3,76],[-1,95],[6,-10],[15,-25],[17,-69],[35,-88],[46,-96],[54,4],[35,-22],[7,-100],[29,-82],[7,-76],[11,-101],[5,-103],[26,-74],[34,-40],[26,-25],[36,-22],[28,2],[34,2],[48,26],[27,23],[23,25],[20,34],[62,168],[31,134],[26,60],[26,-15],[21,-50],[-10,-136],[33,41],[18,19],[34,1],[21,106],[36,63],[44,3],[42,-44],[36,-62],[85,47],[61,-35],[27,-29],[48,-7],[33,27],[43,47],[33,9],[37,9],[53,18],[53,137],[46,115],[28,21],[-12,-95],[11,-111],[18,-166],[20,-143],[0,-131],[7,-84],[16,-100],[6,-102],[16,-52],[27,-118],[-13,-114],[43,-1],[33,-23],[24,-28],[29,-45],[23,-27],[25,-23],[41,-30],[21,-31],[-19,-92],[8,-106],[37,4],[32,44],[37,31],[34,28],[49,126],[42,223],[27,93],[23,92],[24,92],[24,86],[9,54],[21,55],[19,32],[23,26],[42,74],[33,51],[40,48],[41,89],[15,2],[30,5],[37,20],[4,90],[-5,28],[-13,62],[63,-9],[40,-39],[67,-79],[44,-82],[-14,-44],[-17,-53],[-19,-43],[-9,-80],[-2,-17],[-10,-129],[9,-105],[2,-27],[3,-72],[1,-37],[25,-75],[28,-102],[32,-80],[9,-137],[1,-73],[-2,-82],[15,-124],[31,-100],[15,-126],[8,-92],[4,-146],[-26,-73],[-30,-46],[-35,-12],[-21,-99],[-9,52],[-20,38],[-23,-29],[-11,-42],[-10,-14],[-26,-4],[-8,-47],[-6,-139],[-26,-4],[-35,0]],[[79034,23669],[-20,3],[-13,-29],[-11,-68],[-6,-59],[0,-35],[6,-35],[6,-49],[-13,-30],[-18,-16],[-12,-21],[-12,-53],[-12,-71],[1,-43],[8,-32],[14,-25],[17,-13],[19,-23],[13,-45],[12,-52],[-5,-36],[-18,-41],[-9,-30],[-15,-33],[-15,-16],[-11,-43],[-16,2],[-13,10],[-17,2],[-13,2],[-13,-11],[-3,-48],[3,-36],[1,-43],[0,-70],[-11,-19],[-18,-24],[-12,0],[-4,43],[-17,16],[-14,-32],[-4,-34],[-6,-37],[-16,5],[-12,41],[-3,51],[-1,36],[-14,18],[-13,1],[-6,-33],[-12,-14],[-13,2],[-20,-8],[-14,-7],[-12,3],[-16,22],[-9,-23],[0,-1],[-10,-45],[-9,-39],[5,-34],[14,-25],[9,-21],[9,-28],[5,-39],[0,-43],[-15,-37],[-15,-8],[-15,-27],[-11,21],[-15,9],[-24,-25],[-19,-15],[-42,-16],[-15,1],[-17,5],[-11,-23],[-38,-25],[-15,-13],[-24,-44],[-24,-48],[-24,-40],[-12,-13],[-13,-3],[-11,-21],[-2,-46],[-11,-165],[-5,-32],[-11,-49],[-18,-52],[-13,-30],[-10,-18],[-25,-32],[-13,-13],[-13,-8],[-18,-8],[-20,-52],[-15,-8],[-26,-66],[-12,-29],[-15,-38],[-16,-40],[15,-1],[-17,-16],[-22,-44],[-65,-160],[-91,-226],[-76,-189],[-40,-98],[-36,-91],[-26,-65],[-11,-21],[-28,-59],[-41,-88],[-105,-226],[-19,-41],[-46,-101],[-16,-35],[-31,-66],[-27,-59],[-47,-103],[-12,-49],[8,-39]],[[77309,19529],[-18,-20],[-161,-174],[-35,-38],[-159,-213],[-2,-3],[-24,-32],[-4,-9],[-7,-13],[-21,-39],[-29,-56],[-29,-55],[-74,-108],[-28,-41],[-53,-77],[-1,-1],[-119,-173],[-18,-26],[-61,-89],[-26,-39],[-110,-160],[-13,-19],[-64,-95],[-25,-33],[-37,-56],[-22,-31],[-40,-55],[-43,-60],[-87,-118],[-38,-53],[-81,-112],[-93,-134],[-82,-117],[-67,-94],[-39,-55],[-32,-47],[-40,-60],[-30,-43],[-1,-2],[-13,-19],[-54,-75],[-47,-68],[-11,-16],[-15,-21],[-29,-43],[-11,-16],[-67,-97],[-30,-42],[-48,-67],[-19,-27],[-36,-52],[-31,-44],[-122,-175],[-22,-31],[-18,-26],[-16,-21],[-14,-21],[-22,-33],[-14,-21],[-91,-129],[-22,-33],[-14,-21],[-112,-177],[-117,-149],[-6,-8],[-28,-37],[-40,-51]],[[74427,15459],[3,115],[4,102],[0,29],[1,78],[5,129],[6,184],[3,102],[3,75],[14,420],[5,170],[1,58],[-12,238],[-7,261],[-1,79],[-6,164],[7,290],[4,335],[3,246],[0,47],[1,36],[1,125],[0,66],[1,68],[1,96],[0,97],[0,69],[-2,119],[-4,277],[0,78],[-3,217],[0,3],[0,57],[-1,61],[-3,319],[-1,122],[-2,442],[-1,86],[-1,45],[-5,71],[-2,43],[-5,91],[-3,57],[-8,187],[-2,51],[-1,34],[-2,42]],[[74418,21540],[23,6],[14,4],[53,76],[40,31],[39,29],[42,107],[-1,44],[4,2],[53,32],[10,-89],[-3,-43],[-2,-52],[57,17],[16,-32],[60,4],[2,-109],[2,0],[21,7],[0,-1],[0,-23],[1,0],[10,0],[1,20],[2,1],[18,4],[4,1],[10,1],[5,-28],[75,48],[16,8],[1,29],[1,0],[3,2],[4,5],[50,22],[-4,73],[-6,67],[14,17],[0,123],[40,52],[18,23],[-23,164],[25,41],[39,65],[12,16],[4,5],[34,58],[17,31],[9,24],[0,1],[4,33],[-10,42],[-8,52],[-7,30],[0,2],[-15,43],[-18,48],[-12,31],[-33,87],[-2,42],[-3,46],[-15,3],[-16,7],[-16,24],[-16,-22],[-19,13],[26,105],[-18,-10],[-20,31],[4,68],[1,53],[-14,40],[-13,9],[-13,-9],[-24,23],[-2,40],[-17,39],[25,51],[15,31],[-28,100],[-12,41],[-33,111],[-27,92],[-21,78],[2,16],[3,18],[-7,29],[-13,22],[-10,22],[-16,16],[-11,12],[-4,8],[-6,16],[-13,23],[-13,10],[-10,23],[-14,13],[-12,9],[-11,21],[-13,0],[-13,10],[-12,1],[-13,8]],[[82237,25062],[7,18],[3,10],[-16,16],[-2,-8],[8,-36]],[[18098,17124],[-14,0],[-20,-13],[-10,-18],[-18,-12],[-12,-12],[-18,-8],[-17,-30],[-12,-30],[-18,-32],[-14,20],[-1,35],[-7,29],[-20,8],[-24,10],[-51,-12],[-28,-36],[-39,-51],[-35,-48],[-21,-71],[-20,-70],[-12,-24],[-3,-35],[5,-33],[-5,-33],[-8,-42],[-19,-4],[-14,-3],[-12,12],[-16,21],[-16,8],[-12,-6],[-12,-6],[-12,5],[-18,9],[-2,37],[-9,34],[1,37],[-15,-31],[-20,-41],[-22,-47],[-33,-68],[-21,-43],[-22,-47],[-10,-22],[-56,-116],[-75,-155],[-29,-62],[-33,-68],[-12,-25],[-12,-26],[-27,-56],[-23,-48],[-11,-21],[-13,-19],[-22,-13],[-10,-36],[-10,-18],[-12,-20],[-12,-4],[-12,15],[-12,-9],[-12,-45],[-11,-43],[-5,-32],[-5,-41],[2,-35],[-4,-33],[-11,-17],[-24,16],[-9,-29],[-1,-47],[-14,3],[-14,0],[-16,-15],[-10,-17],[-14,-15],[-11,-13],[-4,-43],[-3,-2],[-9,-9],[-16,-23],[-14,-16],[-10,22],[-12,16],[-12,-9],[-12,-24],[-9,32],[-10,26],[-12,32],[-35,72],[-29,86],[-30,126],[-13,22],[-15,22],[-10,-22],[-13,-17],[-12,-14],[-11,-13],[-11,-19],[-11,-7],[-13,1],[-10,-21],[-13,-1],[-20,9],[-11,-18],[-12,-11],[-7,-29],[-10,-20],[-8,-26],[-12,-8],[-9,-29],[-12,-19],[-7,-31],[-11,-30],[-12,-19],[-17,-27],[-10,-20],[-18,-33],[-18,-31],[-30,-54],[-11,-18],[-11,-19],[-13,-22],[-12,-22],[-3,-5],[-8,-14],[-27,-47],[-37,-63],[-17,-30],[-15,-25],[-10,-18],[-15,-27],[-31,-53],[-34,-60],[-34,-60],[-16,-28],[-13,-22]],[[15972,14705],[-53,-92],[-25,-45],[-18,-30],[-30,-53],[-14,-23],[-15,-26],[-67,-127],[-9,-24],[-18,-18],[-22,-13],[-12,-12],[-15,-1],[-18,-20],[-14,-15],[-11,41],[-13,-4],[-9,-34],[-14,-4],[-13,-1],[-16,-14],[-6,35],[5,37],[-3,34],[-10,60],[-12,38],[-8,35],[3,62],[14,11],[-12,17],[-5,32],[-5,33],[1,40],[1,35],[-14,30],[-13,8],[-2,42],[-16,38],[-20,23],[-7,59],[-15,20],[-10,-25],[-13,12],[-13,-21],[-20,-1],[-12,-6],[-11,13],[-11,33],[-3,48],[8,50],[10,20],[-5,32],[-20,-7],[-17,1],[-12,3],[-17,7],[-23,-11],[-11,-19],[-13,14],[-11,15],[-10,29],[-16,18],[-15,15],[-13,-9],[-14,0],[-7,34],[-13,24],[-23,28],[-20,38],[-16,16],[-15,-17],[-13,10],[-19,31],[-29,49],[-35,58],[-11,18],[-41,68],[-76,128],[-11,18],[-33,56],[-32,54],[-12,18],[-23,39],[-38,63],[-11,18],[-18,30],[-12,19],[-44,72],[-20,33],[-62,103],[-17,28],[-2,3],[-16,26],[-101,167],[-33,56],[-44,71],[-15,1],[-15,9],[-22,1],[-12,13],[-16,-20],[-13,10],[-14,22],[-17,-10],[-10,67],[8,48],[-7,46],[4,52],[6,94],[-1,49],[-5,63],[-12,22],[-13,18],[-16,32],[-10,34],[-23,79],[-13,-4],[-4,33],[-11,15],[-11,14],[-13,13],[-13,-6],[-10,27],[-14,13],[-5,32],[-3,19],[-3,15],[-7,41],[-8,37],[-1,40],[-12,16],[5,33],[4,41],[1,34],[2,42],[12,37],[2,37],[-6,34],[-4,33],[-3,35],[-5,28],[-2,11],[-4,13],[-5,17],[-13,15],[-8,0],[-7,0],[-9,25],[9,26],[9,22],[2,4],[-16,58],[-15,55],[-12,44],[-13,51],[-16,59],[-15,55],[-9,33],[-8,32],[-9,34],[-10,37],[-10,37],[-9,35],[-10,38],[-10,34],[-9,34],[-8,31],[-8,29],[-11,39],[-8,30],[-11,44],[-15,53],[-7,27],[-18,67],[-15,56],[-8,31],[-22,81],[-9,35],[-10,36],[-11,39],[-18,71],[-16,62],[-17,62],[-15,56],[-7,28],[-14,52],[-8,29],[-8,30],[-8,31],[-13,50],[-19,68],[-8,30],[-20,74],[-8,30],[-8,33],[-17,66],[-27,95],[-25,4],[-1,45],[-4,100],[0,16],[-6,91],[-3,47],[-2,64],[-2,52],[-2,62],[-3,78],[0,109],[-5,108],[-2,52],[-2,36],[-6,186],[-4,93],[-1,44],[-3,130],[-3,91],[-3,105],[0,2],[-1,37],[-4,129],[-4,127],[-3,95],[-1,37],[-1,34],[-9,245],[-9,319],[-6,117]],[[13294,22627],[27,30],[14,31],[9,-25],[6,-35],[21,26],[18,-13],[35,67],[27,49],[16,18],[11,-15],[20,13],[14,-3],[17,-12],[12,1],[5,1],[12,42],[11,18],[-12,44],[-3,20],[-1,40],[22,60],[27,30],[29,21],[15,1],[10,-15],[5,-46],[22,-29],[11,31],[14,17],[8,16],[13,15],[29,84],[24,18],[8,19],[14,9],[17,28],[5,48],[11,22],[-2,39],[38,60],[13,26],[4,7],[13,5],[12,10],[20,32],[11,29],[35,13],[8,-63],[36,-17],[13,5],[17,55],[16,3],[13,29],[7,63],[-8,32],[21,24],[48,37],[5,3],[11,27],[37,39],[26,14],[19,27],[13,10],[11,-19],[20,-5],[22,39],[11,-13],[28,5],[19,86],[22,-2],[12,8],[15,-18],[15,-2],[8,30],[16,41],[15,13],[18,33],[7,33],[37,49],[10,8],[11,-11],[18,13],[8,-30],[13,-7],[11,23],[4,38],[34,72],[17,-6],[15,13],[10,-24],[16,9],[20,-10],[25,7],[18,13],[11,12],[12,20],[14,29],[16,-2],[22,6],[26,36],[26,25],[22,33],[25,8],[23,26],[17,27],[12,-16],[23,5],[19,12],[30,35],[20,9],[32,21],[18,-2],[26,43],[20,21],[16,-1],[15,23],[24,4],[15,21],[10,10],[15,-2],[13,25],[14,-3],[12,19],[13,-8],[20,1],[13,-2],[19,5],[14,-4],[29,28],[33,35],[18,26],[27,9],[24,27],[12,29],[39,15],[70,13],[14,27],[34,33],[24,33],[5,38],[-5,33],[16,93],[19,1],[32,17],[13,20],[7,27],[-6,50],[-6,33],[2,35],[-10,31],[0,43],[5,30],[17,-8],[21,6],[16,-33],[20,-13],[5,36],[7,30],[17,-12],[28,10],[12,19],[20,15],[22,7],[35,13],[11,41],[19,41],[20,28],[17,38],[3,57],[9,27],[7,48],[4,77],[5,8],[5,9],[9,40],[14,30],[6,11],[10,22],[22,46],[8,16]],[[33444,20741],[-37,-55],[-24,-21],[-41,-62],[-39,-69],[-40,-57],[-37,-63],[-29,-61],[-10,-28],[-18,-44],[-11,-25],[-9,-24],[-11,-26],[-13,-29],[-15,-26],[-10,-20],[-13,-24],[-20,-44],[-18,-27],[-18,-23],[-15,-22],[-11,-15],[-21,-27],[-37,-51],[-13,-12],[-69,-80],[-63,-46],[-19,-5],[-14,-14],[-23,-11],[-19,-6],[-17,-23],[-23,-9],[-13,-23],[-54,-10],[-22,3],[-12,-10],[-44,-19],[93,-606],[12,-83],[22,-146],[3,-21],[83,-570]],[[32755,18207],[-15,1],[-33,-15],[-35,-33],[-18,-2],[-17,-15],[-23,-41],[-29,-36],[-32,-26],[-40,-36],[-17,-25],[-14,-8],[-15,15],[-18,-9],[-55,-42],[-70,-73],[-43,-40],[-15,-13],[-18,-17],[-11,-7],[-18,-1],[-27,-48],[-14,-16],[-14,-2],[-26,-24],[-17,-24],[-20,-3],[-22,-19],[-15,-22],[-12,-11],[-12,-42],[-22,-8],[-57,-50],[-21,15],[-26,-20],[-32,-17],[-56,-27],[-56,-2],[-15,-1],[-15,-4],[-18,-6],[-14,-4],[-22,-12],[-13,-4],[-17,-5],[-26,-12],[-22,-5],[-29,-11],[-17,-6],[-33,-7],[-35,-15],[-38,-13],[-27,-13],[-18,-21],[-16,-3],[-43,-10],[-12,-10],[-15,-13],[-18,-32],[-16,-21],[-10,-27],[-12,-20],[-35,-41],[-17,-8],[-17,-13],[-13,-13],[-29,-11],[-17,-17],[-20,-4],[-13,-7],[-14,-1],[-13,-2],[-11,-25],[-17,1],[-21,-15],[-21,-22],[-16,-21],[-13,-2],[-17,-10],[-11,-21],[-22,-15],[-24,-14],[-19,-7],[-13,-7],[-18,-7],[-24,-6],[-13,-1],[-17,-12],[-20,-11],[-17,-12],[-21,-17],[-18,-19],[-15,-23],[-21,-40],[-17,-8],[-18,-14],[-16,-16],[-12,-11],[-16,-26],[-10,-24],[-14,-11],[-13,-14],[-14,-20],[-16,-15],[-15,-6],[-13,-5],[-23,-2],[-14,-8],[-13,-13],[-18,-16],[-2,-1],[-10,-9],[-23,-21],[-25,-23],[-26,-31],[-21,61],[-25,69],[-54,154],[-24,69],[-26,62],[-31,74],[-21,49],[-13,-18],[-20,-25],[-22,-25],[-32,-28],[-18,-23],[-15,-7],[-19,-23],[-31,-46],[-27,-45],[-40,-60],[-35,-43],[-47,-55],[-25,-27],[-17,-13],[-18,-14],[-18,-10],[-14,-6],[-17,0],[-20,4],[-19,-4],[-21,0],[-23,0],[-14,3],[-14,4],[-24,8],[-11,26],[-17,17],[-20,39],[-28,51],[-13,36],[-13,36],[-15,38],[-6,33],[-6,31],[-6,29],[-11,46],[-8,26],[-13,18],[-20,32],[-12,21],[-13,18],[-12,16],[-14,23],[-15,18],[-12,18],[-16,21],[-15,17],[-15,16],[-13,6],[-11,18],[-13,20],[-14,21],[-18,10],[-23,16],[-15,5],[-22,17],[-20,16],[-20,9],[-17,12],[-17,5],[-16,0],[-22,-17],[-15,-25],[-12,-24],[-7,-12],[-12,-28],[-16,-28],[-15,-24],[-14,-31],[-12,-22],[-9,-21],[-15,-28],[-15,-30],[-14,-21],[-14,-16],[-14,-19],[-19,-33],[-14,-15],[-17,-20],[-23,-23],[-18,-17],[-15,-11],[-14,-12],[-15,-6],[-15,-7],[-17,-8],[-17,-15],[-12,-8],[-29,-18],[-15,-19],[-14,-17],[-9,-19],[-14,-34],[-10,-28],[-17,-46],[-13,-25],[-14,-29],[-16,-32],[-11,-12],[-16,-19],[-16,-28],[-16,-23],[-19,-23],[-24,-36],[-27,-8],[-14,-6],[-18,-24],[-19,-11],[-21,-27],[-9,-21],[-14,-27],[-15,-27],[-13,-20],[-10,-27],[-22,-42],[-13,-24],[-16,-24],[-12,-33],[-19,-50],[-15,-36],[-20,-54],[-16,-26],[-29,-63],[-11,-28],[-13,-34],[-11,-15],[-16,-25],[-14,-27],[-14,-27],[-12,-31],[-14,-17],[-11,-20],[-6,-31],[-11,-27],[-14,-35],[-8,-23],[-1,-35],[-11,-24],[-14,-27],[-11,-35],[-11,-26],[-16,-24],[-10,-28],[-10,-20],[-6,-31],[-14,-10],[-10,-41],[-13,-14],[-10,-27],[-9,-24],[-10,-38],[-11,-34],[-14,-41],[-11,-38],[-13,-34],[-10,-27],[-12,-14],[0,-44],[-6,-31],[-13,-10],[-16,-14],[-12,-31],[-11,-34],[-7,-27],[-12,-28],[-9,-20],[-9,-31],[-12,-20],[-8,-29],[-8,-30],[-14,-27],[-11,-20],[-14,-11],[-14,-6],[-14,-14],[-14,-14],[-15,17],[-13,7],[-14,4],[-12,-11],[-16,4],[-16,0],[-10,24],[-12,20],[-13,4],[-14,17],[-13,3],[-12,-24],[-13,-14],[-12,-20],[-10,-34],[-13,-38],[-4,-37],[-11,-31],[-4,-34],[-6,-31],[-7,-34],[-12,-38],[-6,-31],[-7,-44],[-7,-34],[-8,-28],[-6,-30]],[[27220,14073],[-33,96],[-50,146],[-57,164],[-81,235],[-9,26],[-5,14],[-30,89],[-79,229],[-168,489],[-25,74],[-29,82],[-10,26],[-55,153],[-2,5],[-12,27],[-39,116]],[[29050,23728],[303,376],[222,328],[181,267],[254,190],[241,205],[234,198],[162,92],[352,128],[339,157],[515,317],[109,46],[-21,-301]],[[74365,23813],[-3,-11],[-5,-16],[-17,-27],[-12,-15],[-14,-27],[-18,-19],[-15,-7],[-23,15],[-13,-10],[-19,-5],[-13,-21]],[[68601,15317],[-12,-12],[-4,5],[-9,10],[-12,-20],[-16,23],[-31,-17],[-27,6],[-19,20],[-42,-96],[-25,-4],[-15,-26],[-21,-10],[-13,13],[-16,0],[-22,-6],[-23,17],[-14,22],[-7,-40],[-1,-61],[-21,10],[-15,-42],[-22,32],[0,41],[-17,-21],[-19,-7],[-48,-1],[-39,8],[-14,36],[-15,50],[-7,39],[-17,8],[-15,3],[-11,16],[-14,-21],[-22,-15],[-14,-23],[-14,-10],[-24,22],[-4,32],[-12,19],[-13,-2],[-12,19],[-17,-8],[-20,8],[-8,32],[-1,35],[-26,-14],[-13,0],[-18,-17],[-16,-6],[-13,8],[-12,-18],[-9,-2],[-6,-2],[-16,-58],[-10,-19],[-17,-11],[-15,12],[-8,39],[-6,32],[-5,35],[-10,23],[-17,17],[-20,38],[-16,62],[-7,31],[-7,39],[-15,45],[-10,32],[-10,31],[-8,41],[-4,60],[-25,60],[-20,47],[-24,48],[-31,59],[-11,24],[-8,60],[-6,46],[-19,28],[-22,5],[-15,7],[-15,39],[4,54],[4,40],[7,41],[-1,44],[2,47],[-14,34],[-21,15],[-11,21],[-3,5],[-8,15],[-13,-17],[-14,-16],[-8,-28]],[[67251,16477],[-13,-13],[-12,-34],[-11,-6],[-29,-3],[-1,1],[-13,7],[-24,14],[-2,-1],[-8,-2],[-48,-42],[-87,-57],[-44,-29],[-7,-5],[-2,-12],[-3,-15],[-10,-40],[-13,-37],[-7,-11],[-27,-15],[-23,-1],[-1,0],[-3,2],[-4,17],[0,10],[1,2],[-7,11],[-13,15],[-39,23],[-35,19],[-9,2],[-1,0],[-67,13],[-53,-4],[-1,-2],[-3,-7],[-8,-20],[-2,-6],[-2,-7],[2,-6],[16,-29],[0,-1],[9,-19],[3,-29],[-2,-4],[-22,-21],[-38,-33],[-32,-19],[-2,5],[-2,10],[2,8],[8,14],[1,4],[3,28],[1,7],[-2,6],[-15,6],[-1,0],[-5,-9],[-1,-25],[0,-3],[-42,-68],[-14,17],[-3,5],[-15,18],[-29,37],[-2,4],[-5,0],[-22,3],[-5,-4],[-27,-29],[-1,0],[0,-1],[-40,-35],[-23,-4],[0,8],[-1,174],[0,1],[-2,8],[-39,65],[-4,6],[-45,69],[0,1],[-31,37],[-5,1],[-1,0],[-17,-10],[-28,21],[-6,10],[-32,91],[-1,1],[-4,5],[-9,-3],[-1,-1],[-1,-1],[-8,-8],[-20,-46],[-1,-4],[-23,-47],[-6,-7],[-11,1],[-8,4],[-14,25],[-4,14],[-6,23],[0,1],[-3,23],[1,65],[0,2],[6,34],[11,48],[0,12],[-17,39],[-12,20],[-3,2],[-23,1],[-1,0],[-1,0],[-6,-1],[-49,86],[-3,26],[-1,10],[-1,2],[-6,18],[-7,9],[-2,0],[-6,3],[-60,48],[-25,20],[-44,78],[-1,1],[-25,31],[-46,56],[-8,10],[-36,39],[-2,2],[-1,0],[-4,2],[-10,-3],[-3,0],[-46,18],[-26,59],[-4,9],[-4,9],[-6,13],[-12,27],[-40,-90],[0,-1],[-5,4],[-16,15],[-8,8],[-1,1],[-34,64],[-8,24],[0,1],[5,18],[2,61],[-1,22],[-4,10],[-9,9],[-4,2],[-6,-4],[-2,-7],[0,-11],[-3,-8],[-11,-1],[-11,-1],[-1,0],[0,1],[-76,92],[-1,2],[-5,18],[-9,40],[-1,9],[15,31],[6,43],[4,29],[9,66],[0,2],[-2,73],[-17,154],[-6,2],[-6,12],[-12,40],[-2,45],[0,23],[5,13],[0,1],[20,42],[0,1],[5,17],[0,15],[0,1],[2,63],[-1,10],[-2,8],[-9,4],[-21,0],[-25,-57],[0,-26],[-4,-9],[-11,-13],[-1,-1],[-6,-2],[-57,34],[-3,2],[-13,10],[-1,0],[-55,-33],[-8,0],[-34,27],[-10,10],[-3,8],[-1,3],[-4,13],[1,8],[10,82],[0,14],[-8,79],[-2,17],[-1,1],[-20,20],[-1,1],[-4,-4],[-4,-32],[-4,-50],[-1,-19],[-3,-14],[-5,-9],[-7,-4],[-26,-1],[-1,0],[-36,35],[0,1],[-1,0],[-3,14],[5,54],[2,10],[0,1],[-8,68],[-1,0],[-30,81],[-6,7],[-16,-4],[-7,-15],[-7,-16],[-3,-14],[-3,-40],[0,-3],[-3,-5],[-7,-3],[-14,18],[-6,17],[-3,11],[-51,73],[-1,1],[-18,64],[-1,1],[-29,41],[-5,6],[-8,11],[-35,-1],[-3,0],[-10,75],[1,11],[6,20],[0,2],[0,9],[-13,69],[-4,16],[-4,8],[-17,24],[-22,2],[-5,26],[-3,24],[0,16],[10,123],[3,6],[11,8],[36,7],[8,13],[0,26],[-9,105],[-38,175],[-6,12],[-4,5],[-48,48],[-4,46],[-12,79],[-2,5],[-48,68],[0,1]],[[69714,22283],[-10,-23],[-3,-33],[-13,-20],[-10,-16],[-2,-35],[4,-35],[-4,-34],[-5,-33],[-9,-24],[-12,-7],[-13,-15],[-12,-10],[-11,-16],[-8,-23],[9,-24],[-5,-32],[-3,-39],[-5,-34],[0,-36],[-2,-37],[-4,-33],[-9,-23],[-10,-21],[-8,-27],[-12,-11],[-12,-16],[-10,-18],[-7,-28],[-12,-19],[-8,-29],[-7,-32],[-10,-18],[-12,-17],[-11,-10],[-11,-14],[-14,7],[-13,-18],[-14,-17],[-12,5],[-14,0],[-12,-4],[-13,6],[-11,18],[-5,33],[-10,16],[-12,2],[-13,1],[-14,4],[-10,19],[-11,8],[-16,-10],[-12,-9],[-12,-8],[-12,-10],[-12,-11],[-13,1],[-12,9],[-11,14],[-14,-6],[-11,-13],[-4,-34],[-13,-11],[-2,-37],[-3,-34],[-15,-24],[-12,-7],[-12,-9],[-19,1],[-13,6],[-15,7],[-12,-5],[-12,-11],[-13,-8],[-10,-24],[-9,-36],[-5,-48],[-9,-43],[-21,-33],[-15,-40],[-11,-10],[-12,-17],[-13,-20],[-7,-29],[-6,-29],[-8,-28],[-6,-30],[-12,-12],[-11,-14],[-11,-26],[-10,-22],[-12,-22],[-13,-5],[-12,-9],[-16,-24],[-14,-35],[-67,-45],[-1,-2],[-13,-12],[-12,-13],[-11,-11],[-15,-5],[-13,-15],[-50,25],[-30,15],[-2,0],[-12,-8],[-12,-22],[-18,-12],[-16,-16],[-13,-15],[-3,-105],[2,-121],[1,-87],[1,-59],[0,-8],[1,-92],[4,-171],[1,-53],[5,-222],[3,-111],[0,-1],[1,-36],[2,-120],[1,-50],[2,-72],[5,-211],[1,-61],[8,-397],[2,-175],[1,-54],[3,-209],[0,-2],[1,-64],[3,-97],[6,-221],[5,-182],[4,-114],[15,-660],[15,-678],[1,-12],[3,-144],[3,-135],[5,-192],[10,-98],[3,-91],[5,-198]],[[73841,23313],[5,-44],[0,-21],[0,-23],[0,-118],[0,-5],[0,-31],[22,4],[24,10],[7,-6],[13,-101],[5,-28],[1,-26],[-9,-50],[-20,-108],[-23,-126],[4,-108],[0,-12],[4,-98],[-28,-80],[-24,-67],[-17,-48],[-14,-39],[-1,-2],[-10,-26],[-23,-58],[3,-9],[64,49],[37,-17],[0,7],[4,-4],[33,-20],[41,-25],[22,-14],[32,-17],[69,-40],[31,-18],[44,-102],[-13,-52],[16,-17],[0,-7],[10,-191],[-22,-14],[1,-174],[4,-112],[54,32],[5,2],[34,30],[1,-1],[2,1],[1,-6],[2,-11],[38,5],[13,2],[14,23],[11,17],[16,30],[17,30],[15,56],[18,2],[31,2],[13,1]],[[74427,15459],[-6,-8],[-16,-25],[-4,-5],[-29,-44],[-84,-127],[-18,-26],[-15,-25],[-27,-37],[-18,-31],[-62,-96],[-16,-25],[-52,-79],[-80,-123],[-38,-58],[-29,-45],[-22,-33],[-42,-63],[-46,-71],[-32,-50],[-51,-77],[-56,-85],[-26,-40],[-120,-180],[-31,-46],[-60,-89],[-61,-92],[-46,-66],[-11,-18],[-1,0],[-57,-88],[-5,-7],[-39,-56],[-15,-23],[-16,-24],[-75,-113],[-31,-46],[-84,-126],[-42,-64],[-45,-66],[-102,-155],[-22,-32],[-82,-123],[-119,-178],[-33,-50],[-25,-37],[-35,-53],[-71,-107],[-28,-45],[-67,-97],[-95,-142],[-50,-76],[-93,-140],[-71,-107],[-69,-103],[-112,-167],[-33,-47]],[[71812,11523],[-13,15],[-11,22],[-13,29],[-16,14],[-25,12],[-13,25],[-13,57],[-18,68],[-12,43],[-11,49],[-13,13],[-11,-6],[-22,-26],[-20,-11],[-15,-25],[-9,-57],[1,-46],[15,-48],[18,-30],[28,-37],[16,-31],[1,-36],[-7,-44],[-7,-42],[-16,-26],[-41,-22],[-22,7],[-15,17],[-18,40],[-18,20],[-11,36],[-10,45],[-17,56],[-6,44],[1,73],[9,61],[8,30],[2,37],[7,40],[1,35],[-4,44],[-1,68],[-6,36],[-16,56],[-3,54],[-10,23],[-17,18],[-13,-5],[-11,-16],[-15,-69],[-10,-39],[-16,-1],[-25,0]],[[71349,12093],[-51,1],[-19,4],[-19,28],[-26,62],[-18,47],[-9,29],[-13,28],[-21,30],[-23,54],[-11,39],[-44,25],[-50,18],[-18,32],[-19,18],[-20,-4],[-26,-40],[-12,-7],[-14,17],[-12,18],[-16,36],[-5,51],[-24,80],[-9,37],[-8,26],[-8,38],[-6,62],[-18,26],[-32,-3],[-13,-8],[-38,-35],[-36,-15],[-14,-18],[-26,18],[-10,25],[-5,34],[-2,68],[23,125],[2,61],[-2,47],[-12,64],[-27,52],[-12,46],[-15,21],[-15,42],[-13,10],[-8,26],[-3,41],[-3,34],[-13,33],[-4,53],[-1,46],[-6,34],[-10,53],[-13,61],[-7,13],[-14,25],[-18,23],[-16,14],[-10,3],[-2,0],[-38,6],[-16,12],[-7,38],[-2,59],[-1,52],[-16,44],[-7,47],[-13,3],[-12,-34],[-12,-26],[-14,15],[-15,39],[-2,39],[11,40],[10,17],[5,44],[-6,32],[-9,28],[-17,-6],[-22,-54],[-15,-20],[-42,-9],[-19,-9],[-8,30],[-5,31],[-14,31],[-14,17],[-10,24],[-10,39],[-16,17],[6,56],[-3,38],[-3,47],[0,101],[-3,37],[-5,49],[-11,44],[-11,35],[-15,39],[-31,11],[-12,5],[-14,17],[-17,22],[-12,-2],[-12,-14],[-10,-32],[-25,-5],[-14,8],[-27,30],[-11,31],[0,67],[-9,25],[-46,25],[-14,-6],[-15,20],[-26,17],[-10,19],[-13,11],[-15,43],[-8,40],[-16,-7],[-26,0],[-14,-14],[-15,-7],[-27,20],[-15,-4],[-46,-15],[-15,-9],[-13,2],[-20,34],[-18,7],[-10,22],[-7,50],[-23,25],[-11,18],[-16,41],[-10,22],[-16,7],[-14,29],[-15,6],[-15,-13],[-18,-3],[-12,-3],[-15,15],[-21,3],[-26,11],[-8,34],[-14,7],[6,42],[-18,1],[-19,13],[-12,42],[-21,18],[-12,1],[-16,1],[-11,-18],[-11,-36],[-29,-53],[-10,-26],[-14,0],[-14,-17],[-11,-36],[4,-32],[5,-39],[-16,0],[-7,28],[0,57],[-19,14],[-13,7],[-11,-12],[7,-34],[-13,7],[-26,5],[-30,24],[-10,23],[-16,7],[-10,-51],[-11,-39],[-5,-35],[-11,12],[-3,34],[-15,22],[-26,16],[-12,18],[-16,11],[-21,-19],[-10,-26],[-16,-11],[-16,19],[-17,13],[-16,-5],[-13,10],[-12,15],[-13,-27],[-14,-9],[-11,-25],[-8,-34],[-23,-34],[-7,34],[-13,-2]],[[62037,18413],[0,-5],[-10,-101],[0,-2],[-16,-163],[-12,-128],[-28,-284],[-5,-54],[-7,-73],[-9,-92],[-6,-58],[-7,-68],[-6,-66],[-37,-378],[-3,-34],[-9,-88],[-3,-30],[0,-3],[-27,-279],[-12,-129],[-3,-37],[-11,-112],[-11,-118],[-9,-89],[-4,-48],[-5,-46],[-3,-34],[-21,-219],[-6,-60],[-9,-106],[-19,-224],[-3,-35],[-6,-64],[-5,-65],[-5,-48],[-19,-223],[-8,-83],[0,-9],[-22,-247],[-20,-234],[-10,-117],[-14,-168],[-6,-69],[-14,-157],[-6,-67],[-16,-181],[-25,-277],[-6,-66],[-11,-126],[-4,-51],[-1,-4],[-6,-82],[-3,-34],[-8,-89],[-14,-146],[-3,-39],[-9,-112],[-18,-193],[-9,-105],[-10,-105],[-6,-68],[-4,-40]],[[61448,11981],[-62,-234],[-18,-67],[-68,-249],[-8,-27],[-14,-50],[0,-1],[-62,-220],[-120,-428],[-39,-142],[-27,-93],[-22,-81],[-27,-95],[-24,-87],[-28,-98],[-45,-161],[-44,-157],[-83,-299],[-15,-53],[-38,-134],[-23,-82],[-17,-62],[-9,-33],[-39,-137],[-1,-6],[-70,-249],[-39,-141],[-14,-50],[-14,-50],[-26,-91],[-18,-65],[-13,-45],[-9,-33],[-10,-35],[-18,-65],[-19,-69],[-10,-34],[-22,-81],[-41,-145],[-44,-156],[-11,-41],[-33,-116],[-47,-169],[-52,-184],[-7,-27],[-19,-68],[-34,-119],[-16,-58],[-5,-19],[-28,-98],[-13,-48],[-27,-95],[-20,-72],[-33,-116],[-17,-65],[-23,-80],[-39,-137],[-8,-28],[-1,-4],[-9,-31],[-15,-53],[-47,-166],[-48,-173],[-9,-33],[-11,-40],[-8,-30],[-7,-27],[-13,-45],[-11,-42],[-4,-16],[-18,-64],[-11,-40]],[[59604,5372],[-13,20],[-14,40],[-18,47],[-15,30],[-15,19],[-13,9],[-18,17],[-20,18],[-18,24],[-38,44],[-13,15],[-14,43],[-8,39],[-14,40],[-14,63],[-1,2],[-8,65],[-1,61],[7,64],[-4,49],[-17,74],[-23,62],[-13,28],[-11,29],[-17,61],[-42,128],[-3,11],[-11,28],[-33,57],[-4,7],[-3,7],[-49,104],[-25,92],[-4,96],[-1,9],[13,34],[26,63],[8,18],[0,1],[23,83],[3,12],[15,73],[8,45],[4,24],[5,20],[17,78],[1,2],[0,1],[23,65],[28,44],[26,28],[23,-2],[18,-2],[16,5],[14,25],[5,16],[8,25],[10,61],[5,51],[-1,15],[0,10],[0,19],[-12,67],[0,2],[-22,88],[-5,18],[-2,8],[-13,39],[-23,67],[-4,13],[-12,34],[-10,40],[-6,25],[-14,73],[-18,68],[-15,71],[-7,34],[-1,8],[-17,90],[-6,56],[-6,61],[-6,54],[0,76],[-1,39],[3,25],[2,23],[2,13],[5,36],[10,62],[2,9],[5,26],[2,10],[17,48],[6,15],[4,13],[4,9],[22,30],[1,2],[16,17],[3,3],[31,19],[12,8],[20,34],[9,23],[5,15],[1,6],[8,67],[1,32],[0,2],[-2,5],[-7,19],[-12,36],[-21,35],[-3,3],[-27,26],[-22,14],[-7,5],[-21,23],[-17,29],[-30,62],[-39,78],[-19,69],[-13,49],[-1,4],[0,11],[0,77],[0,5],[0,1],[2,31],[3,37],[15,56],[10,20],[21,18],[19,14],[11,5],[14,8],[30,28],[15,13],[26,22],[13,14],[22,26],[2,2],[1,2],[15,31],[18,47],[13,52],[1,3],[4,46],[0,7],[1,37],[-3,38],[-7,76],[-10,64],[-14,78],[-7,76],[-12,83],[-12,74],[-3,18],[-9,34],[-1,4],[-15,38],[-9,14],[-7,10],[-22,19],[-55,23],[-4,2],[-32,19],[-13,14],[-14,17],[-5,7],[-11,27],[-2,6],[-4,12],[-11,30],[-11,46],[-1,2],[-4,20],[-9,41],[-4,36],[-1,6],[-5,36],[-2,13],[-7,70],[-2,13],[-5,36],[-3,23],[-4,35],[-6,41],[-10,36],[-3,6],[-14,32],[-2,6],[-15,24],[-16,25],[-8,16],[-15,29],[-6,11],[-2,6],[-10,24],[-26,52],[-11,28],[-3,6],[-5,18],[-15,53],[-10,52],[-11,55],[-7,38],[-1,2],[-1,4],[-10,37],[-14,48],[-2,7],[-27,65],[-5,11],[-23,68],[-16,41],[-11,30],[-21,60],[-6,15],[-12,32],[-19,40],[-9,17],[-18,43],[-23,41],[-19,32],[-6,9],[-9,15],[-2,2],[-7,7],[-11,11],[-18,22],[-2,2],[-13,17],[-6,7],[-2,4],[-12,23],[-17,29],[-2,6],[-12,23],[-23,39],[0,1],[-14,22],[-21,25],[-6,8],[-27,30],[-10,13],[-4,5],[-1,2],[-8,20],[-11,59],[-3,44],[3,62],[5,37],[6,18],[9,25],[11,36],[4,12],[11,15],[20,25],[19,14],[26,8],[20,2],[22,2],[23,2],[20,15],[14,14],[6,6],[6,14],[32,79],[4,8],[3,11],[20,64],[1,10],[3,22],[0,5],[-1,48],[-5,45],[-8,51],[-9,48],[-12,40],[-10,34],[-15,42],[-15,55],[-3,16],[-8,41],[-1,8],[-5,47],[-3,55],[-1,8],[-2,37],[1,35],[0,8],[0,20],[1,41],[3,54],[-1,43],[-3,57],[-4,42],[-18,162],[-2,25],[-3,26],[0,1],[1,35],[1,5],[5,60],[4,54],[2,52],[0,43],[-2,47],[-1,39],[-5,37],[-5,44],[-3,30],[-1,10],[-6,64],[-7,77],[-6,75],[-4,45],[-5,41],[-7,69],[-4,42],[0,1],[0,5],[1,55],[0,20],[8,54],[2,13],[1,5],[0,44],[-8,45],[-8,29],[-12,30],[-13,28],[-16,28],[-15,25],[-14,19],[-18,21],[-14,16],[-13,1],[-1,0],[-10,-7],[-10,-5],[-23,-19],[-2,-3],[-21,-28],[0,-1],[-2,-6],[-10,-29],[-2,-9],[-10,-47],[0,-2],[-5,-40],[0,-4],[0,-5],[-2,-41],[1,-44],[0,-1],[3,-11],[5,-16],[10,-34],[6,-21],[0,-1],[14,-28],[4,-5],[14,-18],[42,-43],[0,-1],[10,-24],[1,-2],[9,-38],[7,-37],[0,-4],[11,-92],[1,-37],[-3,-35],[-7,-34],[-17,-33],[-1,-4],[-3,-2],[-28,-23],[-2,-1],[-26,0],[-2,1],[-11,4],[-2,2],[-29,23],[-3,6],[-8,12],[-30,53],[-12,8],[-21,0],[-46,-37],[-12,-15],[-23,-46],[-1,-2],[-18,-69],[-2,-9],[-9,-42],[0,-39],[-1,-57],[0,-2],[0,-41],[0,-9],[-6,-105],[-4,-49],[0,-2],[0,-71],[3,-64],[4,-153],[12,-78],[5,-45],[0,-2],[-2,-80],[0,-1],[-1,-1],[-23,-70],[-1,-3],[-73,-67],[-31,-19],[-9,-6],[-4,-1],[-18,-4],[-12,4],[-48,46],[-6,5],[-6,8],[-8,13],[-1,3],[-8,32],[-1,4],[-1,12],[-6,85],[-1,5],[-2,168],[0,1],[-7,36],[0,1],[-10,37],[-8,26],[-17,58],[-4,36],[-5,46],[-8,39],[-42,126],[-9,27],[-5,10],[-5,11],[-2,2],[-13,22],[-34,70],[-4,7],[-6,12],[-30,45],[-24,38],[-24,38],[-9,8],[-7,7],[-8,2],[-17,4],[-4,1],[-5,0],[-10,-1],[-26,-8],[-16,-6],[-9,-3],[-21,-13],[-16,-3],[-18,-6],[-14,9],[-15,4],[-25,7],[-14,0],[-9,0],[-7,-2],[-20,-4],[-14,-7],[-6,-3],[-2,-1],[-13,-9],[-13,-1],[-1,0],[-18,6],[-13,5],[-2,4],[-9,10],[-10,6],[-14,8],[-33,22],[-41,16],[-31,8],[-23,1],[-18,0],[-5,-1],[-14,2],[-12,1],[-29,7],[-15,1],[-7,0],[-15,-1],[-5,-2],[-13,-6],[-16,-11],[-18,-19],[-11,-16],[-21,-25],[-12,-11],[-19,-20],[-15,-17],[-10,-9],[-9,-9],[-16,-17],[-1,-1],[-3,-3],[-13,-37],[-21,-54],[-2,-3],[-10,-17],[-19,-25],[-15,-12],[-1,-1],[-15,-6],[-26,11],[-14,11],[-12,12],[-13,14],[-21,53],[-1,3],[-2,4],[-7,38],[-9,42],[-7,50],[0,7],[0,10],[-2,33],[2,39],[2,36],[2,12],[4,26],[10,41],[2,9],[10,37],[20,57],[16,35],[6,15],[2,4],[14,39],[12,47],[8,53],[6,38],[2,12],[8,46],[0,22],[-1,33],[-6,48],[-10,48],[-1,2],[-3,10],[-7,19],[-13,24],[-8,13],[-34,49],[-26,37],[-19,55],[-4,46],[-13,170],[0,18],[-1,34],[0,47],[-5,36],[-1,5],[-1,9]],[[37349,20777],[-1,-4],[-3,-11],[-17,-225],[-4,-57],[-4,-61],[-1,-57],[-22,-80],[-38,5],[-14,46],[-6,48],[-11,33],[-15,26],[-11,21],[-14,23],[-36,59],[-40,85],[-23,44],[-19,37],[-15,8],[-9,0],[-12,0],[-21,-2],[-13,-8],[-36,-32],[-32,-28],[-25,-28],[-12,-17],[-14,-19],[-11,-16],[-12,-11],[-16,-14],[-17,-14],[-17,-18],[-34,-44],[-10,-19],[-7,-13],[-91,-153],[-4,-7],[-2,-3],[-23,-41],[-46,-79],[-5,-10],[-39,-71],[-9,-29],[-18,-65],[-4,-45],[-7,-76],[-3,-91],[4,-104],[2,-19],[2,-18],[3,-30],[3,-32],[7,-45],[6,-36],[3,-18],[11,-77],[5,-35],[7,-56],[14,-84],[4,-24],[8,-29],[9,-34],[9,-22],[6,-14],[8,-22],[22,-62],[20,-73],[0,-3],[21,-84],[11,-46],[8,-36]],[[37128,15174],[-32,-39],[-22,-33],[-2,-64],[-11,-42],[12,-31],[7,-57],[-8,-46],[-11,-18],[-17,-30],[-4,-48],[-13,-45],[-5,-39],[-13,-1],[-27,-8],[-17,7],[-18,-12],[-25,-13],[-18,-16],[-12,-2],[-7,-35],[-5,-79],[-12,-32],[-18,-15],[-10,-39],[1,-39],[-2,-43],[-20,-32],[-13,-14],[-15,-11],[-13,-8],[-12,-1],[-15,-7],[-18,-11],[-18,-11],[-14,-9],[-21,-43],[-13,-40],[-9,-28],[-15,-26],[-13,-16],[-7,-27],[-17,-55],[-19,-8],[-15,-86],[-9,-44],[-20,-45],[-18,-25],[-14,-27],[-15,-24],[-39,14],[-14,4],[-28,-26],[-17,-21],[-14,-5],[-28,-11],[-16,13],[-15,4],[-15,-20],[-9,-25],[-8,-26],[-15,-15],[-17,-35],[-15,-32],[-27,-16],[-26,0],[-14,5],[-18,-5],[-14,2],[-13,-7],[-11,-22],[-22,-21],[-12,-18],[-10,-33],[-14,-45],[-5,-49]],[[36060,13367],[-9,-29],[0,-43],[-8,-29],[-5,-39],[-10,-21],[-15,-6],[-35,-21],[-15,0],[-15,12],[-18,8],[-11,-17],[-13,-36],[-12,-18],[-12,-8],[-19,-21],[-18,-25],[-21,-43],[-11,-25],[-11,-37],[-11,-35],[-11,-42],[-12,-22],[6,-44],[1,-44],[-9,-34],[-29,-34],[-38,-38],[-42,-30],[-21,-1],[-17,-6],[-44,-61],[-15,-23],[-20,14],[-10,20],[-15,8],[0,-52],[-1,-57],[1,-35],[8,-42],[3,-38],[-9,-51],[-3,-34],[4,-35],[-7,-31],[-12,-29],[-4,-49],[-11,-29],[-14,1],[-14,5],[-12,-3],[-15,14],[-15,-1],[-14,-16],[-26,-12],[-7,-32],[-9,-28],[-25,-22],[-13,-13],[-1,-2],[-27,-23],[-89,-81],[-41,-37],[-12,-11],[-29,-26],[-157,-146],[-19,-14],[-22,-16],[-42,-30],[-30,-22],[-12,-8],[-42,-29]],[[34797,11563],[-17,54],[-10,29],[-24,74],[-8,26],[-8,25],[-8,25],[-36,111],[-13,43],[-18,58],[-9,28],[-12,37],[-35,114],[-14,46],[-14,44],[-11,36],[-11,34],[-16,52],[-11,35],[-14,44],[-41,129],[-9,30],[-8,27],[-11,35],[-6,21],[-3,9],[-8,28],[-16,56],[-14,45],[-23,72],[-15,48],[-12,38],[-11,33],[-10,32],[-9,28],[-23,70],[-13,41],[-38,121],[-13,42],[-9,28],[-7,24],[-2,5],[-8,25],[-15,42],[-10,29],[-8,25],[-17,51],[-2,6],[-9,26],[-25,78],[-55,154],[-4,-24],[16,-76],[-24,-31],[-64,-80],[-1,47],[-1,60],[-1,66],[-15,112],[-5,44],[-11,84],[32,27],[-13,40],[-15,45],[-19,52],[-55,157],[-18,52],[-11,30],[-31,90],[-11,30],[-23,66],[-69,197],[-24,68],[-10,31],[-7,16],[-2,7],[-24,62],[-71,186],[-24,62],[-10,26],[-31,79],[-10,26],[-9,23],[-35,92],[-28,75],[-22,56],[-11,30],[-55,134],[-17,32],[-15,28],[-18,32],[-54,99],[-18,34],[-8,14],[-11,15],[-9,22],[-9,21],[-11,26],[-18,46],[-13,33],[-11,28],[-33,84],[-19,49],[-20,50],[-10,27],[-62,159],[-19,123],[-16,114],[-7,48],[-9,65],[-2,13],[-3,19],[-6,33],[-11,71],[-10,70],[-24,158],[-13,89],[-9,66],[-9,60],[-10,65],[-29,198],[-12,84],[-8,59],[-3,23],[-6,42],[-6,41],[-12,87],[-7,43]],[[83006,20473],[-8,-45],[-2,-46],[1,-9],[3,-25],[10,-32],[19,-31],[6,-40],[-17,-15],[-11,-6],[-18,-17],[-9,-17],[-6,-12],[-16,-65],[-9,-41],[-5,-40],[1,-35],[0,-56],[1,-44],[2,-37],[1,-37],[-2,-50],[-1,-37],[7,-40],[2,-13],[3,-22],[12,-28],[10,-18],[-9,-46],[-13,-19],[-1,-1],[-3,-41],[11,-33],[12,-27],[11,-13],[12,-6],[2,-35],[-13,-43],[-7,-53],[-8,-28],[-16,-2],[-5,52],[-14,30],[-13,-13],[-10,-48],[-10,-22],[-10,-31],[10,-36],[8,-38],[6,-48],[2,-42],[-12,-22],[-11,-20],[3,-35],[6,-31],[16,-34],[-3,-38],[-13,-14],[-12,-29],[5,-45],[-4,-46],[-2,-35],[-17,-17],[-15,-10],[-11,-20],[2,-36],[-14,-24],[-18,2],[-13,-2],[-12,-9],[-13,-15],[-15,-31],[-1,-43],[16,-10],[4,-59],[-9,-47],[-7,-53],[1,-47],[13,-29],[2,-17],[2,-16],[-9,-39],[-14,-18],[-12,-3],[-12,-54],[-15,-49],[-8,-28],[-9,-30],[-10,-32],[-5,-56],[6,-59],[21,-48],[11,-30],[4,-51],[-20,-47],[-28,-41],[-15,-15],[-14,4],[-12,-19],[-13,-20],[-17,20],[-15,4],[-15,-18],[-15,-18],[-11,-15],[-15,-9],[-20,-24],[-81,-98],[-90,-103],[-47,-55],[-60,-71],[-34,-39],[-78,-93],[-18,-21],[-160,-191],[-53,-63],[-39,-48],[-43,-50],[-55,-68],[-139,-175],[-65,-82],[-13,-16],[-42,-53],[-74,-93],[-27,-34],[-111,-139],[-2,-3],[-44,-53],[-34,-42],[-70,-90],[-48,-61],[-23,-28],[-48,-72],[-15,-21],[-28,-39],[-23,-34],[-6,-7],[-23,-33]],[[80935,15570],[-12,-17],[-7,-11],[-7,-10],[-37,-54],[-15,-21],[-90,-127],[-82,-121],[-13,-20],[-33,-49],[-15,-22],[-110,-155],[-27,-39],[-34,-52],[-32,-45],[-46,-67],[-89,-128],[-29,-43],[-44,-62],[-66,-95],[-30,-43],[-24,-35],[-279,-401],[-93,-128],[-3,-3],[-15,-22]],[[79703,13800],[-5,57],[-1,15],[-8,99],[-5,59],[-7,102],[-8,110],[-33,435],[-18,213],[-13,171],[-10,101],[-13,179],[-3,38],[-24,334],[-2,89],[-5,194],[-3,104],[-2,75],[-3,120],[-1,37],[-2,85],[0,22],[-5,109],[-3,151],[-2,78],[-1,89],[12,36],[-3,56],[-11,25],[-4,59],[-1,45],[15,45],[16,2],[31,26],[4,33],[-3,53],[-10,47],[3,34],[-12,56],[-7,32],[8,32],[-1,49],[1,45],[-5,33],[-16,-6],[-13,-1],[-12,6],[-18,-21],[-15,-18],[-18,-21],[-30,-66],[-19,-14],[-12,19],[-4,38],[-6,37],[-27,14],[-22,-26],[3,-48],[-5,-56],[-14,-12],[-30,8],[-12,16],[-19,1],[-18,-17],[-12,-2],[-17,15],[-13,14],[-18,-7],[-37,21],[-26,14],[-20,7],[-12,3],[-7,36],[-3,38],[-14,18],[4,48],[7,56],[-12,24],[-16,-1],[-37,-21],[-23,-1],[-12,4],[-11,24],[-10,75],[-10,21],[-39,40],[-12,14],[-12,21],[-17,19],[-17,14],[-12,17],[-12,11],[-25,19],[-30,33],[-16,-15],[-12,16],[-2,50],[-6,49],[-13,15],[-13,-10],[-24,-30],[-19,10],[-21,15],[-17,15],[-14,-15],[-2,-100],[-3,-37],[-15,-16],[-9,-23],[-27,-66],[-22,35],[-20,-4],[-13,-3],[-18,46],[-24,-14],[-13,2],[-6,1],[-21,30],[-20,16],[-5,31],[-25,1],[-15,-33],[-11,24],[-13,50],[-16,-11],[-26,-38],[-15,1],[-14,-9],[-17,16],[-14,34],[-14,43],[8,25],[13,18],[10,25],[4,46],[-13,30],[-9,33],[1,35],[9,33],[-9,45],[-14,1],[-6,34],[9,32],[6,52],[-7,40],[-11,21],[-3,46],[-10,32],[-16,-7],[-18,-35],[-14,-30],[-31,13],[-18,-23],[-15,-2],[-11,20],[-13,69],[-10,32],[-13,8],[-18,-3],[-15,-13],[-16,-28],[-9,-30],[-12,-14],[-18,13],[-14,14],[-17,69],[7,40],[1,34],[-27,54],[-30,19],[-4,37],[1,40],[-3,33],[14,-1],[4,54],[-23,19],[-13,31],[-2,81],[-10,31],[-12,15],[-12,-9],[-12,9],[-20,-3],[-22,12],[-18,-7],[-14,-21],[-22,-70],[-19,13],[-12,12],[-22,-14],[-9,-49],[-17,0],[-28,8],[-11,28],[5,72],[-7,36],[-14,13],[-22,-4],[-22,2],[-16,32],[-10,54],[-17,-5],[-10,-22],[-11,-41],[-13,-30],[-23,16],[-24,-11],[-21,13],[-16,55],[-29,29],[-1,43],[-3,40],[-17,38],[-11,52],[4,55],[0,38]],[[79034,23669],[21,-67],[29,-26],[26,22],[21,56],[14,64],[35,-10],[45,-16],[34,-6],[36,-43],[10,73],[20,112],[47,56],[28,17],[52,-22],[41,-26],[36,-36],[23,-21],[51,-94],[24,-34],[18,-15],[31,-28],[27,-15],[27,-18],[28,-12],[31,-104],[60,-124],[38,-82],[43,-98],[32,-104],[72,8],[29,-52],[39,-83],[42,-88],[24,-67],[21,-56],[44,-76],[39,-30],[39,-73],[44,-36],[37,-4],[32,8],[48,23],[34,23],[37,36],[28,32],[52,53],[44,47],[34,46],[43,50],[29,8],[20,-6],[24,-28],[28,-10],[58,5],[50,-11],[62,-14],[40,-1],[28,-17],[41,-20],[46,1],[76,-3],[38,-8],[19,-20],[33,13],[29,2],[42,-39],[41,73],[58,-17],[-3,-87],[-27,-29],[16,-90],[15,-95],[-3,-96],[-23,-47],[-23,-41],[-9,-60],[-12,-82],[-1,-76],[-1,-58],[26,-85],[4,-10],[4,61],[1,10],[3,77],[10,69],[28,13],[32,48],[43,8],[34,-35],[41,-58],[13,-34],[24,-58],[24,-108],[7,-74],[7,-74],[25,-3],[34,-20],[47,-62],[58,-90],[36,-39],[20,-43],[21,-39],[13,-54],[48,-154],[17,-70],[36,-82],[22,-101],[20,-40],[5,-56],[31,-68],[39,-51],[37,-37],[32,-27],[40,-14],[9,-1],[16,-1],[68,11],[69,33],[36,28],[22,39],[3,15],[18,71],[9,53],[32,127],[20,135],[11,114],[11,83],[16,57],[17,84],[35,60],[25,21],[2,9],[18,85],[19,70],[-4,25],[-5,41],[1,5],[10,48],[12,84],[3,23],[5,91],[2,37],[3,58],[6,52],[3,22],[-5,52],[7,53],[7,49],[16,33],[13,26],[27,19],[7,-13],[14,-26],[13,-30],[9,-23],[16,-63],[14,-57],[13,-44],[12,-39],[16,-57],[7,-26],[26,-49],[23,-91],[26,-44],[7,-13],[15,-81],[19,-91],[24,-108],[0,-71],[-19,-27],[-6,-5],[-28,-32],[-11,-44],[-5,-17],[11,-28],[8,-20],[-14,-24],[-12,-22],[-1,-62],[-1,-30],[1,-11],[1,-45],[-4,-20],[-4,-17],[-12,-59],[14,-93],[8,-166],[-5,-112],[-6,-86],[-30,-85],[-14,-83]],[[48392,17143],[-12,-107],[-5,-39],[-6,-55],[-4,-46],[-5,-44],[-3,-34],[-4,-39],[-4,-42],[-4,-42],[-6,-60],[-4,-39],[-15,-154],[-4,-42],[-7,-67],[-1,-10],[-5,-56],[-4,-43],[-4,-39],[-4,-38],[-3,-35],[-4,-34],[-4,-48],[-10,-97],[-4,-36],[-8,-90],[-11,-103],[-6,-72],[-5,-64],[-12,-134],[-3,-43],[-4,-47],[-3,-34],[-8,-97],[-13,-147],[-6,-82],[-7,-78],[-5,-56],[0,-5],[-4,-46],[-5,-63],[-6,-75],[-5,-65],[-9,-100],[-10,-124],[-20,-241],[-10,-120],[-5,-63],[-5,-60],[-6,-77],[-9,-104],[-4,-58],[-12,-145],[-2,-15],[-1,-23],[-7,-74],[-10,-128],[-8,-92],[-10,-125],[-7,-87],[-1,-12],[-8,-103],[-7,-92],[-8,-92],[-3,-39],[-3,-34],[-10,-128],[-2,-42],[-3,-33],[-5,-43],[-6,-71],[-4,-46],[-18,-213],[-7,-81],[-3,-39],[-7,-85],[-4,-44],[-6,-71],[-6,-72],[-8,-100],[-8,-89],[-6,-72],[-4,-47],[-15,-184],[-3,-38],[-6,-75],[-8,-90],[-12,-144]],[[47839,10781],[-17,-20],[-13,-14],[-8,-27],[-8,-41],[-12,-28],[-2,-48],[-10,-38],[-11,-26],[-11,-35],[-24,-46],[-9,-23],[-12,-27],[-8,-30],[-13,-27],[-7,-38],[-14,-34],[-14,-17],[-6,-35],[-5,-37],[-2,-38],[0,-41],[-3,-34],[-6,-34],[-13,-22],[-15,-18],[-14,-5],[-16,-23],[-15,-18],[-11,-27],[-13,-27],[-5,-41],[-9,-31],[-17,-14],[-12,28],[-14,20],[-13,4],[-14,-7],[-13,-1],[-12,-16],[-12,-9],[-16,-10],[-10,-19],[-10,-19],[-11,-12],[-20,-10],[-12,10],[-14,-13],[-10,-31],[-15,-14],[2,38],[2,37],[-6,31],[-43,24],[-14,-27],[-10,-24],[-15,-9],[-16,-2],[-12,-7],[-16,-16],[-12,-4],[-16,-27],[-14,-14],[-12,-27],[-12,-24],[-16,-14],[-13,0],[-16,-31],[-18,-37],[-17,-21],[-14,-21],[-12,-23],[-16,0],[-21,-17],[-12,-7],[-16,7],[-12,17],[-15,7],[-19,-21],[-17,-27],[-11,-17],[-12,-17],[-19,-24],[-20,-11],[-17,-23],[-8,-31],[-12,-24],[-12,-10],[-18,-21],[-19,7],[-16,-24],[-13,-24],[-4,-38],[-10,-37],[-3,-38],[-7,-37],[-15,-15],[-15,-6],[-11,-20],[-5,-48],[-13,-34],[0,-38],[-6,-41],[-13,-34],[-14,-28],[-15,-3],[-11,-21],[-5,-34],[1,-37],[12,-15],[6,-30],[1,-34],[-13,-17],[-8,-27],[-12,-24],[-12,3],[-12,-7],[-12,-3],[-14,0],[-12,-21],[-13,-29],[-7,-36],[-10,-24],[-11,-13],[-18,-7],[-9,27],[-8,41],[-1,34],[-4,35],[9,30],[8,35],[10,27],[1,34],[-7,31],[-8,38],[-15,13],[-11,-17],[-7,-38],[-7,-30],[-14,-28],[-14,-20],[-17,3],[-7,31],[-11,31],[-16,20],[-15,11],[-13,6],[-10,18],[-12,13],[-12,7],[-13,-3],[-14,-11],[-9,-30],[-13,5],[-10,32],[-11,24],[-11,17],[-13,17],[-11,17],[-14,-13],[-11,-14],[-15,-7],[-13,-13],[-16,-24],[-10,-38],[-14,-41],[-15,-7],[-10,-27],[-12,-24],[-14,-31],[-13,-14],[-12,-17],[-13,-24],[-14,8],[-41,23],[-44,25],[-131,74],[-78,45],[-23,12],[-29,17],[-20,11],[-97,55],[-104,58],[-23,13],[-83,46],[-21,12],[-46,26],[-40,23],[-36,20],[-16,9],[-28,15],[-108,61],[-18,10],[-12,6],[-152,86],[-17,9],[-14,8],[-89,50],[-36,20],[-74,41],[-30,17],[-39,22],[-51,28],[-40,21],[-8,4],[-13,8],[-15,9],[-58,33],[-48,27],[-29,26],[-12,-4],[-100,56],[-37,21],[-32,18],[-29,16],[-42,23],[-14,8],[-186,103],[-42,24],[-10,5],[-17,10],[-3,2],[-24,15],[-46,28],[-25,17],[-8,-68],[-23,-223],[0,-7],[-4,-40],[-10,-88],[-1,-9],[-31,-300],[-28,-276],[-20,-192],[-21,-202],[-28,72],[0,1],[-5,20],[-4,14],[-1,3],[-1,2],[-7,15],[-5,6],[-1,0],[-17,7],[-58,-2],[-18,0],[-15,-7],[0,-1],[-8,-6],[-5,-11],[0,-1],[-7,-37],[-1,-14],[1,-5],[0,-1],[16,-36],[33,-66],[16,-25],[10,-16],[20,-29],[12,-4],[12,5],[22,19],[7,1],[12,-16],[2,-9],[5,-40],[1,-27],[-2,-13],[-14,-48],[-3,-7],[-8,-19],[-6,-9],[-11,-9],[0,-1],[-21,-2],[-11,5],[-12,1],[-7,-3],[-22,-11],[-1,0],[-52,20],[-4,2],[-1,2],[-13,24],[-16,8],[-19,10],[-23,73],[-13,40],[-8,12],[-22,69],[-7,24],[-2,9],[-24,110],[-11,35],[-4,28]],[[43086,8670],[-1,42],[0,24],[0,10],[-2,46],[-8,53],[-10,34],[-23,59],[-22,51],[-25,38],[-4,6],[-9,27],[-8,16],[-18,7],[-8,3],[-12,13],[-21,64],[-26,80],[-13,70],[-33,95],[-10,17],[-18,24],[-33,43],[-3,2],[-17,10],[-35,96],[-2,14],[-7,31],[-4,25],[-1,13],[9,75],[12,20],[1,1],[12,38],[4,47],[-11,39],[-1,3],[-3,11],[-4,2],[-26,9],[-2,-1],[-16,-17],[-11,4],[-8,3],[-17,66],[-7,25],[-3,58],[3,33],[1,2],[16,23],[4,6],[20,-8],[33,-25],[7,-18],[12,-29],[7,-2],[8,-3],[10,16],[3,5],[21,156],[1,21],[0,22],[-12,35],[-29,50],[-2,5],[-7,14],[-19,40],[-8,25],[-3,9],[-8,6],[-34,23],[-1,1],[-72,58],[-5,2],[-16,6],[-5,-2],[-13,-21],[-15,-64],[-4,-7],[-3,-5],[-10,-16],[-8,-1],[-11,-1],[-18,-2],[-55,0],[-19,7],[-10,0],[-11,10],[-12,16],[-5,4],[-9,6],[-29,15],[-11,5],[-11,6],[-64,36],[-40,22],[-13,7],[-31,17],[-69,38],[-281,152],[-29,14],[-88,48],[-38,21],[-39,21],[-52,29],[-53,28],[-35,19],[-38,23],[-110,62],[-20,11],[-11,6],[-46,26],[-17,-1],[-12,8],[-9,5],[-132,79],[-32,18],[-137,76],[-131,74]],[[40786,11328],[41,103],[65,149],[14,32],[24,56],[112,257],[93,213],[85,195],[1,93],[0,3],[3,151],[1,48],[1,36],[5,268],[1,54],[30,3],[39,35],[6,38],[11,41],[-2,36],[15,52],[-6,31],[1,32],[1,11],[4,33],[8,0],[5,0],[12,8],[5,62],[0,2],[2,37],[19,33],[20,21],[11,14],[-11,28],[-6,19],[-4,15],[-5,56],[-1,41],[9,24],[8,29],[12,13],[1,2],[12,17],[13,-5],[17,35],[6,49],[7,36],[-5,45],[8,35],[18,84],[25,74],[12,23],[14,13],[12,-2],[21,20],[12,9],[17,10],[14,12],[14,-10],[12,-5],[10,21],[5,-37],[0,-6],[-1,-28],[10,-38],[7,-29],[11,-45],[10,-30],[12,-11],[17,1],[14,-7],[12,8],[3,46],[10,35],[12,26],[12,0],[10,-23],[14,-3],[19,-11],[12,-23],[13,-18],[5,38],[8,27],[2,34],[-12,22],[-9,35],[4,35],[10,25],[6,36],[4,32],[11,28],[12,17],[10,32],[14,21],[5,38],[-4,39],[-4,34],[12,0],[13,-3],[13,-9],[12,7],[13,33],[-10,20],[-11,21],[-3,38],[-5,38],[-15,30],[-9,24],[-6,38],[9,26],[-10,36],[-13,32],[-11,18],[-3,35],[-4,39],[-2,53],[-2,34],[-16,26],[11,37],[15,10],[12,8],[12,25],[11,29],[14,7],[-6,33],[3,36],[5,34],[15,12],[12,6],[17,10],[14,7],[11,18],[12,25],[14,14],[12,10],[12,10],[13,10],[21,16],[14,11],[12,13],[10,26],[-8,34],[-12,47],[-7,30],[-9,24],[-8,26],[-12,5],[-16,-11],[-12,-5],[-13,0],[-14,12],[-20,30],[-19,-7],[-15,-21],[-5,61],[2,40],[0,1],[7,53],[8,32],[-6,26],[-7,30],[2,45],[10,25],[9,23],[26,7],[12,13],[3,3],[13,-33],[14,-41],[22,-10],[16,23],[14,-6],[9,21],[9,56],[5,33],[17,6],[26,-32],[28,31],[25,37],[-10,38],[-18,9],[7,48],[25,41],[5,54],[-31,61],[-15,27],[11,17],[17,-8],[17,22],[4,37],[-16,59],[-11,78],[-6,10],[-11,18],[-10,34],[39,-5],[13,4],[23,6],[26,0],[25,0],[14,8],[11,31],[-11,44],[-12,30],[-35,13],[-11,20],[-1,5],[-9,28],[-7,56],[3,68],[-1,34],[5,44],[-6,36],[-16,34],[-9,31],[-7,28],[3,39],[5,60],[2,14],[12,39],[7,41],[-11,47],[-13,12],[-3,5],[-16,27],[-13,17],[-18,-1],[-13,13],[-13,30],[4,29],[0,7],[-1,63],[-11,17],[-2,4],[-14,26],[-6,38],[4,53],[4,25],[2,8],[14,73],[14,54],[4,28],[3,17],[11,38],[12,20],[17,-7],[1,0],[26,20],[8,26],[2,4],[1,35],[-4,44],[13,28],[19,38],[13,62],[2,3],[13,33],[-10,35],[-9,28],[0,35],[4,38],[0,3],[9,24],[-7,64],[-14,35],[-8,13],[-2,4],[-9,23],[-4,52],[21,54],[-7,44],[-24,19],[-13,33],[-5,42],[-18,34],[2,38],[8,30],[10,25],[8,27],[9,29],[-1,23],[0,12],[-3,86],[-20,30],[-13,37],[-9,24],[-22,62],[-19,68],[-27,49],[-14,49],[-7,47],[13,56],[12,10],[7,32],[-12,31],[-15,50],[-3,44],[17,64],[-8,85],[-8,37],[-12,28],[-6,31],[-16,21],[-10,-4],[-7,-3]],[[85846,18943],[7,-18],[-5,-37],[2,-18],[4,-9],[-3,-14],[-17,-70],[0,-6],[-27,10],[-4,-41],[-6,-75],[-2,-35],[-4,-25],[-20,2],[-21,-53],[-51,-139],[-7,-21],[-2,-5],[-30,-80],[4,-27],[47,-168],[17,-61],[-30,-105],[-5,-18],[-5,-62],[-12,-124],[-9,-98],[23,-64],[5,-15],[-27,-173],[0,-74],[1,-106],[1,-41],[13,-74],[-9,-48],[10,-103],[11,-17],[14,-49],[20,-91],[13,-44],[14,-44],[8,-56],[3,-34],[14,-157],[2,-26],[1,-11],[-26,-45],[8,-44],[21,21],[17,16],[36,42],[24,27],[23,20],[45,48],[15,15],[24,30],[10,-22],[12,-64],[17,-81],[11,-46],[10,-51],[8,-37],[20,-93],[27,-119],[6,-38],[22,-86],[12,-47],[7,-43],[27,-118],[4,-17],[6,-27],[8,-29],[3,-21],[3,-26],[26,-99],[20,-27],[18,-34],[17,-10],[11,-14],[-8,33],[-2,48],[-10,104],[-9,27],[-3,31],[10,-20],[14,-32],[20,-39],[21,-40],[10,21],[22,-27],[3,-4],[19,-42],[16,-38],[30,-76]],[[86409,15346],[-48,-128],[-39,-93],[-19,-18],[-21,-126],[-78,-227],[-32,-104],[-47,-203],[-7,0],[-50,2],[-26,12],[-26,38],[-92,123],[-23,103],[-24,45],[-14,68],[-41,254],[-44,4],[28,69],[-31,6],[-11,56],[-17,86],[-43,127],[-27,114],[-24,70],[-8,107],[0,125],[31,36],[13,70],[-80,205],[-1,9],[-8,103],[-19,93],[-83,279],[-144,226],[-30,43],[-33,57],[-71,140],[-21,44],[-209,326],[-32,46],[-25,81],[-68,-23],[-30,95],[-53,148],[-22,101],[-11,97],[12,61],[5,94],[4,171],[9,137],[-42,-65],[-61,84],[-32,55],[-81,137],[20,20],[-29,192],[-24,68],[-35,33],[-30,28],[-6,89],[-29,116],[-10,105],[-26,60],[-30,71],[-45,-30],[17,85],[10,51],[-6,10],[-53,78],[2,-25],[9,-90],[-7,-2],[-15,-5],[-6,-25],[-6,-27],[-14,-58],[15,-86],[25,-25],[35,-54],[2,-103],[9,-82],[9,-88],[19,-49],[22,-48],[32,-73],[6,-77],[23,-46],[9,-92],[8,-85],[17,-77],[-40,1],[-8,0],[-6,5],[-35,25],[-1,-32],[-1,-53],[36,-84],[-33,-23],[-19,10],[-28,13],[-34,37],[-23,51],[-13,86],[-25,117],[-6,15],[-17,46],[-2,44],[-1,39],[-23,3],[-8,24],[-23,66],[-20,105],[-22,63],[-35,63],[-37,45],[-31,81],[-30,27],[-26,47],[-3,5],[-4,16],[-23,80],[-9,76],[-1,13],[-18,31],[-25,30],[-19,46],[-22,5],[-23,6],[-11,-2],[-27,-7],[-24,48],[-10,19],[-38,54],[0,1],[-26,103],[-6,55],[-6,53],[-30,66],[-22,42],[-38,15],[-1,75],[20,61],[16,90],[11,100],[3,101],[8,74],[17,43],[36,-22],[15,99],[22,83],[19,89],[20,79],[27,99],[20,85],[16,51],[-8,88],[-7,130],[-23,13],[-21,13],[14,54]],[[15972,14705],[7,-46],[38,-244],[27,-167],[12,-83],[26,-165],[5,-33],[7,-41],[31,-202],[34,-218],[24,-156],[14,-87],[6,-39],[34,-220],[6,-34],[16,-103],[6,-38],[10,-65],[3,-19],[6,-41],[7,-41],[9,-56],[7,-47],[6,-44],[5,-32],[-2,-3],[-22,-34],[-13,-7],[-15,0],[-13,0],[-14,-11],[-16,-35],[-14,-27],[-12,-13],[-28,-8],[-14,-1],[-17,5],[-7,2],[-14,8],[-1,0],[-1,1],[-12,19],[0,38],[2,10],[4,23],[3,28],[3,25],[-4,41],[-1,2],[-2,0],[-15,2],[-4,-6],[-8,-11],[0,-2],[-9,-28],[-4,-21],[-7,-32],[0,-2],[0,-3],[-2,-33],[2,-13],[4,-27],[5,-18],[4,-15],[7,-28],[8,-26],[7,-33],[10,-32],[4,-33],[-5,-48],[-9,-33],[-3,-39],[0,-54],[1,-91],[-5,-57],[-22,-17],[-11,25],[-9,38],[-4,58],[-14,46],[-12,44],[-5,33],[-5,38],[-2,39],[-2,37],[-11,42],[-17,21],[-1,1],[-5,-7],[-11,-13],[-1,-1],[0,-5],[-4,-43],[5,-58],[3,-37],[6,-66],[0,-43],[-12,-30],[-15,-15],[-15,5],[-18,10],[-16,-27],[-4,-42],[-2,-34],[-13,-21],[-11,17],[-12,36],[-11,49],[-5,62],[2,35],[1,44],[-4,17],[-4,16],[-12,26],[-5,12],[-19,-7],[-1,-1],[-16,-32],[-7,-8],[-17,-20],[-14,-19],[-16,-24],[-19,-24],[-14,5],[-21,50],[0,1],[-10,24],[-17,17],[-5,-1],[-12,-3],[-1,0],[-6,-6],[-7,-9],[-12,-30],[0,-31],[0,-6],[9,-38],[20,-30],[5,-30],[0,-2],[-6,-45],[-15,-14],[-13,6],[-12,14],[-18,50],[-11,37],[-11,26],[-10,25],[-11,22],[-15,3],[-18,-1],[-13,-1],[-14,-10],[-12,-26],[-11,-18],[-13,-17],[-12,-11],[-12,-15],[-10,-21],[-12,-17],[-23,-21],[-14,-23],[-13,-25],[-13,-19],[-19,-18],[-19,-12],[-16,-4],[-13,0],[-12,-8],[-6,-35],[-3,-35],[-6,-30],[-10,-27],[-12,-20],[-18,-16],[-18,-19],[-26,-21],[-11,-7],[-13,-16],[-18,-25],[-14,-16],[-15,-13],[-11,-11],[-19,-25],[0,-1]],[[15040,11472],[-4,20],[-3,11],[-3,43],[3,2],[14,8],[15,10],[12,28],[6,33],[11,35],[-2,39],[-1,35],[-3,16],[-6,27],[-19,1],[-4,1],[-13,-13],[-1,-1],[-8,0],[-7,-1],[-4,0],[-12,9],[-25,-2],[-118,-8],[-21,-1],[-124,-7],[-18,-1],[-53,-3],[-13,-1],[-2,0],[-11,-1],[-53,-3],[-31,-2],[-24,-1],[-136,-9],[-14,0],[-109,-7],[-93,-5],[-140,-8],[-94,-5],[-30,-2],[-37,-3],[-86,-4],[-51,-3],[-41,-2],[-12,-1],[-40,-2],[-36,-2],[-54,-4],[-58,-3],[-15,-1],[-33,-2],[-60,-4],[-1,-1],[-82,-4],[-92,-6],[-37,-2],[-21,-1],[-13,-1],[-21,-1],[-50,-3],[-78,-6],[-1,0],[-84,-6],[-41,-2],[-15,-1],[-12,-1],[-24,0],[-252,-15],[-13,-1],[-72,-32],[-44,-16],[-88,-33],[-10,-29],[-7,-28],[-12,-17],[-13,-21],[-10,-49],[-5,-32],[-9,-23],[-9,-27],[-12,-20],[-2,-38],[-7,-36],[-12,-8],[-17,-30],[-8,-27],[-11,-25],[-7,-29],[-9,-75],[-10,-23],[-11,-16],[-11,-19],[3,-37],[7,-41],[-3,-39],[-12,0],[-9,-26],[-9,-22],[5,-37],[5,-36],[13,-15],[-4,-33],[-13,3],[-14,-11],[-11,-26],[-6,-32],[3,-33],[-3,-33],[-8,-26],[-3,-33],[-8,-36],[-6,-40],[-6,-29],[-12,-7],[-6,-40],[-17,-3],[-14,-40],[-15,-42],[-10,-15],[-13,-20],[-15,-5],[-9,-28],[-19,-24],[-11,8],[-17,13],[-16,-16],[-9,-22],[-12,-7],[-6,-30],[-12,-30],[-12,-29],[-15,-37],[-6,-29],[-14,-17],[-18,-10],[-10,-26],[-9,-31],[-10,-23],[-8,-26],[-8,-27],[-11,-44],[-15,-37],[-8,-27],[-4,-40],[-11,-27],[-12,-17],[-3,-37],[-11,-34],[-13,-15],[-13,-17],[-14,-10],[-12,-23],[-11,-21],[-15,-10],[-8,-26],[-15,0],[-16,11],[-11,-13],[-14,16],[-3,40],[-5,34],[0,37],[-15,28],[-11,26],[-9,22],[-15,10],[-20,6],[-12,-17],[-15,3],[-20,-11],[-15,2],[-22,17],[-15,23],[-13,7],[-20,16],[-17,26],[-13,27],[-5,36],[3,41],[1,41],[9,32],[-1,35],[-6,29],[-17,13],[-17,-29],[-10,-36],[-11,-39],[-13,-17],[-12,14],[-13,9],[-12,-7],[-16,15],[-12,-10],[-15,-9],[-9,-25],[-4,-34],[-11,-18],[-12,8],[-11,20],[-9,26],[-6,31],[-7,38],[-13,-17],[-10,-23],[-16,-11],[-15,16],[-16,45],[-5,42],[-12,3],[-11,-50],[-11,-31],[-13,-21],[-9,-37],[-16,-40],[-16,-28],[-10,-19],[-4,-41],[-13,-45],[-15,-41],[-8,-44],[-11,-30],[-10,-34],[-13,-47],[-3,-38],[-17,-25],[-6,-30],[-7,-33],[-4,-39],[-13,-50],[-17,-20],[-20,-7],[-9,-35],[-10,-23],[-3,-36],[-17,-28],[-7,-37],[-6,-61],[6,-40],[16,-13],[14,-9],[13,-30],[14,-38],[-4,-43],[-17,10],[-12,18]],[[10715,8858],[-10,26],[-156,329],[-6,12],[-9,21],[-10,21],[0,1],[-19,37],[-17,38],[-12,25],[-11,21],[-14,31],[-10,22],[-9,22],[-37,78],[-23,53],[-58,122],[-25,53],[-23,49],[-38,79],[-67,141],[-15,33],[-13,28],[-10,23],[-17,37],[0,1],[-9,20],[-17,39],[-2,3],[-123,283],[-36,27],[-15,-5],[-19,-30],[-15,-13],[-17,-10],[-26,-3],[-12,20],[-12,39],[-5,34],[-6,30],[7,49],[-6,75],[10,58],[12,5],[36,62],[-11,21],[-3,37],[-11,25],[-13,40],[-23,17],[-12,5],[-5,35],[-13,36],[-9,50],[0,2],[3,44],[12,34],[0,34],[2,34],[-12,22],[-10,23],[-14,-2],[-11,25],[-8,31],[-11,23],[-14,-5],[-19,54],[-12,14],[-11,17],[-8,34],[-10,33],[-2,7],[-6,25],[-3,37],[-7,35],[-10,29],[-6,33],[-10,36],[-7,35],[-12,29],[-17,41],[-9,22],[-3,35],[-14,43],[-11,23],[-11,20],[-13,11],[-17,23],[-22,11]],[[9448,12022],[-3,28],[4,51],[20,51],[69,58],[32,64],[-3,41],[-10,16],[-13,9],[-12,38],[-12,12],[-15,41],[-11,54],[-12,32],[-14,11],[-6,22],[-5,16],[18,72],[22,41],[7,39],[27,39],[4,36],[13,47],[3,11],[19,10],[7,7],[0,42],[34,120],[12,13],[4,39],[33,64],[6,15],[14,69],[12,36],[-5,40],[-4,64],[-1,29],[-18,63],[-4,42],[0,45],[-4,36],[-9,30],[-10,78],[7,37],[0,38],[2,39],[7,33],[9,74],[2,44],[26,75],[25,64],[-4,39],[-13,-18],[-18,13],[-8,46],[-17,31],[-7,30],[-15,4],[-7,28],[-12,-1],[-20,21],[2,37],[-1,44],[-12,18],[-4,72],[-10,23],[-20,13],[-5,46],[-4,34],[-10,28],[9,33],[21,16],[2,43],[1,20],[-11,50],[3,50],[11,88],[12,34],[18,17],[26,53],[21,3],[7,-32],[12,-18],[26,-5],[12,20],[-1,36],[8,40],[0,41],[10,22],[21,76],[26,-19],[25,-39],[32,23],[12,-9],[16,4],[17,57],[24,47],[34,-3],[13,19],[15,59],[2,41],[12,41],[16,14],[21,47],[13,17],[6,75],[10,67],[-8,47],[-12,51],[10,98],[21,72],[33,13],[11,-21],[7,-36],[16,-12],[7,4],[24,62],[16,4],[11,-19],[6,35],[9,24],[11,-16],[9,-38],[11,-20],[16,19],[14,31],[11,13],[30,-10],[17,13],[17,-3],[63,38],[23,47],[15,-39],[6,-62],[19,-37],[12,6],[29,39],[9,26],[17,26],[5,11],[19,-7],[45,-20],[12,27],[39,128],[0,47],[11,31],[4,43],[33,-25],[30,13],[7,48],[15,25],[7,63],[27,43],[8,74],[23,45],[27,17],[25,65],[15,17],[48,-17],[38,-52],[14,-70],[30,48],[-1,49],[8,49],[15,54],[8,55],[-1,69],[-3,29],[9,37],[10,67],[5,38],[-2,80],[3,37],[13,62],[19,-7],[12,20],[29,22],[17,-6],[14,19],[16,-2],[13,-36],[13,7],[18,-23],[21,-5],[12,-16],[16,6],[12,21],[12,45],[4,13],[2,61],[-3,40],[6,59],[-3,83],[-3,84],[8,101],[-7,75],[3,89],[-17,51],[-22,127],[6,85],[-10,101],[19,62],[18,39],[20,-6],[23,12],[17,-2],[17,69],[-3,62],[-27,60],[-17,35],[-2,57],[-17,28],[-7,21],[-5,114],[9,36],[-14,40],[-12,32],[7,37],[17,22],[9,23],[-3,75],[10,77],[-5,100],[-13,69],[13,48],[-3,39],[-14,38],[-5,37],[-10,56],[-7,21],[-13,59],[-3,92],[11,44],[15,31],[9,47],[12,19],[7,32],[13,28],[55,38],[12,-13],[16,36],[22,38],[8,10],[17,32],[13,0],[32,45],[9,20],[7,36],[23,12],[18,5],[38,59],[15,15],[27,49],[17,23],[36,28],[15,0],[44,61],[16,18],[9,32],[11,15],[17,-6],[20,-56],[28,-19],[12,28],[13,13],[12,22],[-2,42],[16,0],[11,14],[15,36],[24,71],[20,23],[11,12],[18,-2],[7,35],[21,25],[17,-4],[21,21],[19,-2],[10,21],[-5,46],[11,31],[5,30],[4,72],[30,34],[19,9],[16,-29],[10,-24],[14,5],[18,16],[9,3],[23,69],[16,2],[55,36],[26,6],[17,-2],[4,13],[5,13],[16,59],[14,29],[31,102],[16,32],[27,83],[22,50],[49,83],[24,35],[43,34],[39,85],[9,25],[16,0],[4,33],[15,1],[24,49],[27,19],[11,20],[31,16],[11,32],[18,16],[16,43],[11,22],[-4,37],[11,52],[37,48],[13,7],[14,35],[47,43],[23,36],[22,19],[12,19],[9,26],[18,12],[14,27],[24,36],[22,32],[10,19],[12,16],[26,49],[15,24],[68,108],[9,14],[29,48],[12,19],[10,24],[8,11]],[[12688,14303],[-5,-43],[-6,-31],[-5,-70],[-3,-35],[-5,-45],[-17,-73],[-9,-19],[-13,-25],[-10,-22],[-12,18],[-7,12],[-13,21],[-9,17],[-4,34],[12,-5],[11,-18],[2,-3],[2,8],[5,21],[5,33],[0,1],[7,35],[2,40],[-10,25],[-3,1],[-10,7],[-14,4],[-12,29],[-14,-1],[-10,-19],[-3,-5],[-14,-29],[-19,-8],[-42,12],[16,-64],[-44,-37],[-31,-35],[-24,12],[-37,34],[-7,-30],[-7,-23],[-4,-16],[-4,-28],[-1,-7],[-6,-46],[-12,-51],[-15,-52],[-15,-34],[-12,-14],[-10,-21],[-12,-47],[-4,-16],[-18,-54],[-11,-43],[-2,-9],[-1,-3],[-4,-14],[1,-36],[11,-42],[-5,-30],[-11,-24],[-8,-18],[-4,-6],[-11,-22],[-14,-7],[-21,-17],[-12,-6],[-4,-33],[0,-25],[0,-12],[-8,0],[-15,1],[-6,-33],[-1,-5],[-1,-9],[-3,-25],[7,-68],[1,-6],[-9,-25],[2,-37],[-25,-24],[-63,-57],[25,-82],[32,-1],[23,-28],[12,-25],[19,-1],[27,-4],[12,-21],[-2,-129],[46,69],[-5,-40],[-21,-138],[10,-62],[13,-108],[37,-139],[39,68],[41,70],[-4,70],[40,-6],[52,7],[56,-3],[74,12],[11,-15],[29,-40],[22,176],[8,73],[-38,4],[-23,0],[45,38],[-48,60],[-27,-24],[8,34],[5,48],[1,36],[-4,33],[-13,71],[-10,60],[-8,74],[2,97],[16,48],[27,19],[-7,43],[23,51],[28,24],[15,13],[14,13],[9,2],[19,4],[66,22],[30,8],[39,11],[-1,15],[17,-2],[14,-3],[2,-2],[56,-32],[8,26],[-23,170],[14,26],[20,38],[-1,29],[-27,-14],[-32,-15],[-3,0],[-10,0],[-22,2],[-3,-6],[-8,-17],[-4,21],[3,8],[5,15],[8,20],[27,49],[2,3],[11,12],[25,35],[15,43],[20,111],[-5,5],[-4,5],[-45,159],[-49,75],[-3,-12],[4,-17],[8,-36],[15,-1],[-15,-43],[-26,31],[-1,36],[-13,11],[-14,5],[-9,40],[-3,34],[-15,-4],[-16,-15]],[[86739,21260],[-2,-62],[4,-84],[-15,-56],[-8,-82],[-21,20],[-15,44],[-6,18],[-26,15],[-19,-55],[-38,36],[0,38],[-2,54],[-25,58],[28,3],[6,1],[7,26],[11,41],[21,40],[6,3],[40,21],[-1,-66],[34,-9],[21,-4]],[[86739,21260],[-2,101],[13,93],[43,-9],[33,-21],[17,54],[10,32],[2,0],[23,2],[-6,-48],[-5,-41],[36,3],[2,-31],[5,-49],[-27,-43],[35,-53],[29,-90],[6,-58],[6,-47],[13,-69],[12,-64],[27,-121],[23,-48],[6,-23],[14,-46],[26,-98],[24,-36],[24,17],[23,3],[22,2],[9,2],[7,-15],[9,-18],[-32,-39],[-7,-94],[44,-2],[4,0],[12,74],[39,-33],[5,-1],[44,-19],[30,-82],[35,-23],[14,-64],[22,-103],[34,7],[1,0],[28,-34],[16,-94],[17,72],[33,-55],[9,-64],[2,-13],[-5,-6],[-32,-33],[-22,-125],[-30,-1],[-20,-1],[-7,-115],[6,-83],[-2,-8],[-12,-47],[-29,40],[-13,-60],[-9,-43],[-19,22],[-3,13],[-14,61],[-20,34],[-5,9],[-1,-40],[-1,-30],[-5,-8],[-18,-28],[-21,-47],[-14,120],[-25,35],[-18,-87],[17,-129],[-6,4],[-28,21],[-19,19],[-8,7],[-2,-25],[-5,-54],[-35,21],[-36,80],[-29,13],[17,-59],[-14,-45],[-5,-8],[-23,-32],[-11,-14],[-12,-19],[-15,-24],[-5,-9],[-25,-101],[-33,-51],[-10,67],[1,81],[-17,95],[-17,75],[-3,78],[-33,11],[-2,75],[-34,0],[-26,-90],[-28,59],[-17,84],[-24,66],[-24,35],[-25,39],[-20,-7],[6,-88],[-21,-35],[-14,-30],[-21,5],[-27,62],[-33,53],[7,-37],[13,-68],[26,-95],[-23,-14],[-7,-5],[-25,-31],[-43,-1],[-3,0]],[[86488,19525],[-5,8],[-70,-110],[27,-31],[10,-12],[1,-1],[0,-3],[0,-64],[0,-25],[-27,-4],[-1,10],[-2,41],[-58,44],[-15,11],[-15,-58]],[[86107,20451],[21,108],[20,85],[-5,83],[13,91],[3,50],[22,41],[13,68],[27,41],[23,77],[31,74],[32,-53],[13,-51],[-39,-80],[30,-14],[15,-67],[-7,-102],[37,-1],[12,84],[-3,63],[-7,79],[32,9],[41,-4],[32,-18],[26,-33],[19,-38],[-26,-87],[-44,-127],[43,3],[49,79],[41,8],[-1,-81],[-14,-69],[-23,-56],[-9,-74],[33,9],[34,82],[18,-70],[14,-58],[33,-54],[30,-98],[33,-39],[-9,112],[33,10],[2,10],[1,5],[14,54],[-18,9],[-21,11],[-36,77],[-9,95],[-40,-71],[-19,97],[28,10],[-21,89],[20,54],[16,18],[9,10],[11,-5],[44,-20],[17,-50],[39,-2],[8,-1],[49,-46],[27,-30],[-4,39],[-2,28],[-11,47],[2,50],[2,57],[-6,33],[-14,73],[-12,86],[-26,65],[-30,53],[-24,-18]],[[84788,12540],[-13,43],[-9,41],[-7,30],[1,43],[6,53],[-5,58],[-14,28],[-13,15],[-14,-2],[-23,-20],[-13,-16],[-9,-30],[-13,-62],[-16,-21],[-20,-8],[-70,-156],[-37,-79],[-19,-39],[-9,-21],[-14,-25],[-31,-72],[-12,-27],[-29,-62],[-59,-126],[-12,-26],[-28,-61],[-12,-25],[-34,-75],[-28,-61],[-12,-24],[-17,-37],[-18,-38],[-16,-35],[-9,-21],[-19,-41],[-16,-36],[-12,-27],[-2,-4],[-8,-17],[-15,-30],[-22,-48],[-23,-48],[-32,-70],[-42,-95],[-2,-4],[-75,-161],[-32,-65],[-17,-42],[-87,-188],[-135,-293],[-17,-36],[-10,-25],[-15,-34],[-10,-23],[-16,-36],[-29,-62],[-5,-12],[-14,-31],[-16,-35],[-11,-25],[-10,-22],[-46,-100],[-37,-83],[-42,-91],[-16,-33],[-68,-150],[-10,-21],[-71,-159],[-12,-24],[-7,-13],[-7,-14],[-10,-21],[-12,-28],[-37,-84],[-34,-75],[-9,-22],[-34,-75],[-12,-26],[-17,-41],[-31,-67],[-15,-34],[-22,-49],[-10,-23],[-26,-59],[-20,-42],[-22,-49],[-25,-55],[0,-1],[-22,-47],[-12,-26],[-15,-34],[-116,-266],[-11,-26],[-20,-46],[-3,-7],[-14,-32],[-23,-49],[-44,-96],[-102,-219],[-21,-46],[-119,-264],[-14,-32],[-60,-136],[-36,-79],[-5,-11],[-35,-75],[-24,-55],[-14,-29],[-58,-140],[-41,-88],[-65,-139],[-18,-38],[-103,-212],[-38,-79],[-13,-28],[-166,-325],[-4,-9],[-7,-13],[-24,-47],[-46,-83],[-160,-294],[-14,-26],[0,-1],[-41,-99],[-17,-41],[-17,-41],[-14,-33],[-18,-45],[-16,-37],[-24,-55],[-2,-3],[-55,-119],[-116,-250],[-16,-34],[-40,-84],[-28,-59],[-84,-171],[-2,-5],[-66,-136],[-10,-22],[-83,-175],[-14,-29],[-18,-38],[-33,-64],[-29,-61],[-8,-18],[-17,-36],[-30,-62],[-27,-58],[-17,-36],[-32,-66],[-18,-39],[-10,-21],[-38,-79],[-16,-33],[-10,-21],[-17,-35]],[[80366,3531],[-14,25],[-30,39],[-25,14],[-25,13],[-13,8],[-12,8],[-24,34]],[[80223,3672],[-5,28],[-5,29],[-15,17],[-10,13],[-4,47],[7,47],[4,45],[-1,35],[-11,40],[-10,31],[2,40],[-11,23],[-15,9],[-10,19],[-12,24],[1,38],[15,73],[9,42],[7,28],[22,58],[13,36],[2,55],[-1,62],[-17,45],[-16,18],[-16,-1],[-18,-17],[-16,23],[23,48],[8,104],[-5,13],[-5,15],[-12,18],[-8,12],[-12,18],[-5,9],[-12,5],[-21,-13],[-22,36],[1,49],[13,-24],[14,12],[9,-31],[15,41],[-1,14],[-4,51],[13,14],[16,23],[12,33],[-10,30],[-15,14],[13,9],[9,28],[10,21],[-2,46],[1,42],[13,14],[-6,40],[12,-6],[12,12],[12,26],[3,38],[10,29],[-1,34],[0,2],[-16,33],[-5,9],[-4,10],[-6,12],[-14,-5],[-14,-10],[-13,12],[-4,-36],[-17,-19],[-5,43],[-12,-16],[-14,-3],[-13,-22],[-11,-16],[-14,-2],[2,35],[-8,21],[-1,2],[-12,21],[6,35],[-6,23],[-3,8],[-7,34],[-12,18],[-3,35],[18,-23],[9,9],[7,8],[14,33],[-4,7],[-7,14],[13,7],[6,13],[6,13]],[[80046,5708],[15,34],[7,23],[1,5],[-7,36],[-12,0],[1,35],[-1,39],[11,27],[6,34],[0,44],[13,0],[14,28],[12,-23],[15,22],[-10,32],[-18,30],[12,10],[13,20],[13,-38],[13,11],[-8,34],[13,0],[-4,35],[17,55],[-6,45],[-15,34],[26,24],[11,12],[-5,41],[-2,40],[-21,30],[19,-2],[2,43],[-12,37],[-23,104],[9,29],[8,32],[8,34],[23,17],[5,47],[27,1],[2,40],[4,35],[13,23],[6,-34],[18,-15],[15,-22],[2,-4],[20,-5],[11,70],[9,41],[40,70],[22,19],[9,29],[12,36],[-6,40],[-9,27],[-8,31],[-14,14],[-3,35],[-13,35],[-5,41],[-12,-23],[5,34],[2,41],[-16,14],[14,28],[-13,37],[10,22],[15,27],[19,39],[-3,40],[3,42],[28,9],[8,28],[2,-44],[24,-5],[-4,-54],[13,9],[21,25],[10,35],[11,21],[15,33],[7,-29],[9,30],[12,35],[-3,42],[-17,58],[-16,39],[5,37],[-10,33],[-20,32],[13,34],[13,43],[28,50],[-20,19],[-3,36],[15,42],[10,52],[18,33],[33,-1],[18,7],[10,32],[13,15],[18,9],[18,30],[20,46],[2,51],[5,55],[39,-20],[19,8],[11,41],[8,30],[-2,101],[0,52],[9,44],[19,37],[15,37],[0,43],[3,48],[-8,57],[-4,64],[-10,26],[-17,-4],[-21,-22],[-15,63],[-9,92],[17,22],[1,42],[8,34],[12,-32],[4,53],[2,60],[12,-1],[-12,66],[-4,48],[9,30],[0,54],[9,37],[9,43],[12,40],[-6,31],[-5,32],[8,49],[14,17],[15,15],[11,-24],[4,-70],[14,8],[15,33],[5,54],[-3,41],[-13,20],[7,35],[-6,32],[-11,15],[-8,32],[-2,34],[-3,43],[2,43],[14,24],[4,36],[13,30],[2,35],[11,23],[0,44],[15,51],[12,6],[15,45],[13,-9],[8,37],[5,40],[-1,36],[8,29],[3,38],[-8,28],[-16,-2],[-11,24],[-5,39],[11,17],[-10,32],[14,0],[16,-6],[14,13],[20,10],[13,-2],[12,35],[13,-2],[7,35],[10,-23],[12,9],[10,31],[6,41],[4,39],[6,32],[17,14],[7,-31],[5,34],[11,32],[12,22],[6,36],[-9,16],[-2,5],[-12,19],[-7,1],[-7,1],[-12,17],[-7,9],[-6,34],[9,30],[13,21],[2,6],[7,31],[14,-23],[4,12],[8,20],[16,9],[19,20],[13,15],[-6,38],[-5,35],[15,21],[0,68],[9,30],[14,40],[18,-24],[14,-10],[3,-2],[1,7],[6,31],[2,38],[20,-22],[9,-12],[3,-4],[7,13],[5,10],[-4,32],[11,23],[12,16],[10,28],[-8,51],[-3,33],[-12,19],[-13,-17],[-12,-26],[-14,3],[-1,0],[1,6],[3,42],[-24,24],[-12,7],[-10,22],[2,44],[-4,36],[14,12],[0,35],[-3,43],[8,32],[14,1],[12,10],[2,-1],[13,-6],[-1,15],[0,26],[11,-7],[14,7],[8,26],[5,26],[3,15],[-2,24],[-2,15],[-1,9],[-2,34],[12,18],[15,38],[5,40],[19,24],[-5,100],[-3,68],[-11,11],[-15,33],[0,1],[-16,6],[10,35],[17,45],[7,57],[2,43],[10,22],[-5,35],[-7,38],[-13,16],[-16,19],[-15,1],[-18,25],[-13,-15],[-8,32],[-15,10],[-9,36],[-12,32],[-3,11],[-9,32],[-21,4],[-9,-32],[0,-3],[-4,-39],[-8,-29],[-12,-5],[-14,16],[-15,-18],[-9,34],[-1,53],[-5,51],[-9,45],[3,36],[14,24],[14,-4],[5,52],[5,42],[12,36],[-1,46],[-14,18],[-10,-11],[-9,-10],[-16,1],[-14,-3],[-5,-36],[-11,14],[-16,2],[-19,45],[-18,20],[-11,27],[-10,29],[-11,66],[7,39],[6,38],[5,49],[-14,25],[-3,37],[4,35],[-8,29],[-10,25],[-13,22],[-18,24],[-11,17],[-20,54],[0,37],[8,31],[3,36],[-10,47],[-6,30],[-4,41],[-8,29],[-21,38],[-17,29],[-11,22],[-10,-17],[-6,46],[-1,3],[-2,36],[1,5],[21,79],[10,29],[6,57],[12,24],[-11,26],[5,43],[-1,55],[12,23],[4,32],[9,34],[0,46],[-5,33],[15,30],[6,12],[6,10],[10,42],[-5,39],[-11,20],[-4,5],[-12,32],[-8,30],[6,49],[5,38],[11,24],[5,40],[3,43],[11,23],[3,42],[0,49],[-2,45],[-6,38],[11,43],[2,40],[9,24],[-1,66],[-3,37]],[[83006,20473],[5,6],[21,26],[24,9],[10,-6],[25,-17],[22,-117],[17,-109],[9,-93],[-8,-124],[-5,-122],[5,-75],[13,-71],[18,-80],[29,-85],[17,-93],[11,-119],[-10,-133],[-1,-163],[-2,-99],[-11,-64],[-10,-96],[-20,-51],[-9,-134],[-19,-92],[-13,-70],[-16,-91],[-9,-79],[-8,-87],[-9,-94],[-6,-77],[0,-62],[-2,-84],[-5,-172],[11,-133],[16,-123],[14,-76],[23,-91],[31,-100],[35,-87],[27,-55],[31,-55],[54,-66],[39,-31],[38,-18],[26,-11],[39,-5],[59,3],[20,-2],[79,2],[48,2],[32,2],[35,4],[33,-4],[30,-20],[30,-18],[28,-18],[26,-16],[21,-14],[43,-30],[30,-27],[38,-26],[23,-24],[27,-36],[25,-49],[35,-74],[39,-77],[24,-100],[3,-98],[-18,-117],[-13,-38],[-11,-33],[-11,-30],[-8,-20],[-6,-23],[-15,-51],[-4,-12],[-9,-53],[-13,-71],[44,-13],[14,-112],[-152,53],[-64,123],[-10,0],[-52,0],[-65,56],[-62,-128],[-42,-168],[3,-193],[43,-21],[33,112],[43,-15],[33,-30],[58,56],[27,-62],[35,-45],[66,76],[44,-31],[42,-30],[30,30],[10,78],[37,52],[28,2],[46,28],[-9,80],[22,71],[32,20],[30,2],[32,-21],[39,-29],[34,-70],[31,-44],[39,-97],[21,-52],[15,-63],[17,-82],[27,-62],[24,-34],[29,-27],[33,-41],[4,-5],[21,-21],[24,-12],[62,-33],[19,-109],[-13,-50],[-19,23],[-16,-60],[38,-48],[14,-41],[14,-40],[40,-52],[35,-74],[13,-33],[19,-47],[3,-4],[36,-37],[6,-3],[23,-10],[40,-22],[11,-4],[31,-13],[24,-4],[22,-6],[35,-62],[23,-65],[13,-51],[5,-19],[21,-56],[0,-1],[18,-71],[-2,-13],[-11,-90],[-2,-54],[-2,-38],[1,-26],[3,-52],[14,-84],[10,-57],[-2,-60],[1,-85],[-25,-11],[-21,46],[-37,37],[-34,65],[3,60],[2,46],[-28,23],[-4,31],[-7,54],[-1,4],[-33,45],[-11,-68],[-21,-11],[-8,-5],[9,-122],[21,-87],[14,-79],[15,-114],[-6,-115],[5,-92],[16,-94],[18,-107],[-9,-71],[-21,-23],[-30,-38],[-38,-23],[-19,-17],[12,-113],[-15,-11],[-34,-27],[-37,29],[-45,-8],[-14,-109],[-27,-42],[-25,-54],[-31,-75]],[[22464,14284],[-194,-160],[-77,-40],[-30,-15],[-15,-15],[-139,-163],[-27,-139],[-1,-5],[-5,-28],[-12,-64],[-13,-24],[-29,-53],[-12,-25],[-44,-168],[-10,-33],[0,-1],[-11,-22],[-9,-34],[-11,-16],[-16,4],[-13,-11]],[[21796,13272],[-16,-27],[-12,-19],[-3,-7],[-46,-87],[-68,-210],[-43,-131],[-9,-28],[-66,-202],[-18,-34],[-14,-30],[-20,-42],[-25,-51],[-12,-24],[-43,-90],[-13,-27],[-16,-33],[-35,-65],[-20,-48],[-16,-34],[-15,-28],[-23,-54],[-14,-31],[-27,-51],[-13,-11],[-13,-13],[-14,-14],[-11,-10],[-23,-24],[-24,-21],[-20,-16],[-16,-14],[-22,-28],[-13,-13],[-21,-17],[-18,-11],[-12,-17],[-11,-17],[-27,-38],[-14,-17],[-18,-23],[-12,-7],[-14,-7],[-12,-17],[-14,-21],[-25,-31],[-12,-13],[-19,-28],[-21,-26],[-26,-35],[-39,-51],[-29,-38],[-42,-16],[-20,-8],[-17,-26],[-76,-118],[-24,-6],[-33,-71],[-10,-22],[-12,-10],[-14,3],[-15,30],[-10,22],[-19,20],[-14,-7],[-14,-16],[-12,-15],[-14,-10],[-15,0],[-11,17],[-7,31],[-6,34],[-5,31],[-14,28],[-11,20],[-18,7],[-34,17],[-17,0],[-18,0],[-19,-10],[-14,-14],[-13,-10],[-17,5],[-9,32],[-9,21],[-10,24],[2,37],[-3,38],[-16,31],[-5,37],[-5,35],[0,54],[-14,14],[-15,-7],[-12,-17],[-13,-14],[-14,-13],[-16,-11],[-15,-10],[-14,4],[-11,-21],[-11,-7],[-9,-34],[-11,-6],[-16,5],[-15,-9],[-12,-12],[-28,-5],[-14,-17],[-15,-2],[-15,-23],[-21,-3],[-13,-3],[-15,-29],[-13,-8],[-12,-4],[-26,-21],[-26,-17],[-19,-12],[-11,-21],[-20,-14],[-18,-11],[-13,-8],[-20,-9],[-22,-8],[-14,-20],[-19,-6],[-22,-18],[-20,1],[-13,-5],[-17,-13],[-14,-15],[-13,-21],[-18,-1],[-17,-6],[-20,-23],[-17,-13],[-10,-31],[-20,-26],[-27,-10],[-15,-10],[-13,-5],[-21,-3],[-13,-24],[-17,-16],[-19,-20],[-15,-17],[-21,-11],[-11,8],[-18,-35],[-16,1],[-18,-2],[-15,-9],[-13,-12],[-9,-28],[-17,-7],[-25,6],[-13,-23],[-19,-16],[-12,1],[-13,5],[-13,-24],[-12,-6],[-13,-6],[-15,-35],[-13,-34],[-13,-35],[-11,6],[-13,-1],[-11,-29],[-17,-14],[-8,-26],[-16,-24],[-14,-18],[-17,-24],[-11,-49],[-16,-23],[-20,-31],[-14,-26],[-8,-32],[-19,-24],[-17,-46],[-13,-36],[-7,-33],[-2,-48],[-12,-6],[-15,-26],[-15,-25],[-18,-8],[-19,-29],[-7,-33],[-8,-42],[-7,-31],[-7,-34],[-4,-35],[-4,-38],[-12,-22],[-23,-45],[-9,-25],[-3,-35],[-6,-37],[6,-44],[-1,-42],[-10,-28],[-8,-26],[0,-38],[-2,-45],[15,-37],[4,-29],[2,-18],[-2,-38],[9,-44],[13,-56],[6,-54],[3,-43],[3,-38],[10,-46],[10,-27],[13,-71],[12,-39],[19,-28],[17,-22],[10,-30],[2,-39],[-25,-44],[-14,-25],[-17,4],[-23,7],[-22,5],[-11,-22],[-11,-25],[-18,-19],[-15,-17],[-19,-12],[-14,-3],[-18,-29],[-16,2],[-17,-16],[-11,-17],[-12,-34],[-10,-33],[-18,-22],[-16,0],[-19,-10],[-16,-9],[-14,-10],[-14,-20],[-18,-31],[-20,3],[-22,1],[-30,-32],[-17,-19],[-22,-10],[-16,-27],[-17,-21],[-22,-10],[-13,-26],[-15,-2],[-15,-13],[-14,-13],[-13,-16],[-19,-9],[-18,-26],[-17,-7],[-13,-2],[-18,-2],[-16,-20],[-21,-24],[-18,-15],[-13,6],[-16,0],[-18,-4],[-13,-12],[-15,-14],[-17,-9],[-19,-4],[-21,-32],[-21,-20],[-12,-17],[-12,-3],[-13,-26],[-18,-27],[-17,13],[-17,2],[-18,-4],[-12,-11],[-17,-16],[-13,-24],[-16,-32],[-12,-15],[-11,-28],[-24,-1],[-13,5],[-20,-13],[-11,-10],[-14,-19],[-12,-27],[-30,-27],[-21,-10],[-11,-27],[-17,-7],[-13,-27],[-14,-24],[-13,-17],[-14,-3],[-19,-13],[-11,-24],[-16,-13],[-17,-18],[-16,2],[-15,2],[-12,-30],[-22,-40],[-19,-32],[-20,-33],[-15,-25],[-14,-21],[-16,-4],[-15,0],[-19,-4],[-14,-30],[-9,-42],[-12,-43],[-10,-16],[-19,-4],[-19,-4],[-16,2],[-15,-1],[-13,-27],[-10,-30],[-15,-2],[-5,-32],[-4,-42],[-10,-20],[-18,3],[-15,8],[-16,-22],[-16,-5],[-20,-21],[-21,-20],[-13,-20],[-12,-4],[-16,-15],[-11,-22],[-17,-27],[-15,-27],[-16,-24],[-31,-27],[-19,-15],[-21,-36],[-14,-22],[-12,-3],[-22,-14],[-18,-22],[-11,-18],[-17,-16],[-10,-23],[-14,-20],[-13,-22],[-17,-11],[-20,-37],[-11,-15],[-17,-24],[-12,-5],[-12,-6],[-15,-3],[-13,-21],[-10,-21],[-11,-20],[-11,-13],[-13,3],[-11,-35],[-9,-26],[-15,-33],[-18,-9],[-13,-5],[-13,-18],[-14,-15],[-16,-32],[-13,-24],[-12,-23],[-10,-28],[-20,-25],[-11,-21],[-13,-30],[-14,-21],[-12,-33],[-12,-30],[-14,-25],[-18,-22],[-9,-43],[-16,-23],[-12,-23],[-17,-32],[-14,-35],[-10,-23],[-10,-28],[-13,-28],[-10,-29],[-13,-20]],[[15924,5764],[-13,108],[-4,35],[-14,129],[-16,134],[-5,47],[-15,133],[-1,5],[-7,69],[-5,37],[-3,35],[-14,122],[-9,76],[-6,59],[-7,59],[-4,35],[-11,104],[-16,151],[-6,55],[-28,217],[-6,42],[-3,26],[-38,286],[-29,213],[-4,35],[-5,38],[-5,36],[-16,123],[-2,16],[-49,265],[-11,62],[-15,82],[-9,50],[-7,37],[-65,357],[-7,39],[-53,288],[-6,38],[-6,37],[-6,34],[-7,35],[-33,188],[-21,121],[-9,46],[-5,31],[-19,105],[-6,32],[-10,57],[-6,33],[-6,35],[-1,8],[-13,72],[-27,146],[-50,279],[-61,340],[-14,76],[-11,64],[-15,81],[-23,128],[-8,44],[-6,30],[-7,43]],[[54358,17886],[-14,-95],[-9,-66],[-19,-215],[-4,-50],[-13,-150],[-6,-72],[-13,-155],[-3,-40],[-21,-247],[-5,-59],[-4,-50],[-4,-44],[-5,-61],[-7,-77],[-4,-52],[-7,-81],[-20,-236],[-16,-190],[-6,-75],[-16,-167],[-4,-34],[-13,-206],[-5,-77],[-6,-94],[-3,-37],[-3,-38],[-10,-129],[-6,-63],[-4,-50],[-7,-87],[-5,-57],[0,-1],[-10,-124],[-8,-87],[-3,-35],[-5,-48],[-22,-249],[-6,-66],[-7,-72],[-4,-51],[-3,-36],[-5,-53],[-3,-36],[-10,-121],[-12,-141],[-3,-41],[-26,-311],[-6,-74],[-6,-66],[-35,-415],[-1,-10],[-17,-204],[-5,-65],[-9,-105],[-7,-88],[-16,-200],[-5,-54],[-3,-39],[-6,-67],[-8,-94],[-11,-131],[-15,-165],[-9,-108],[-4,-38],[-4,-44],[-17,-196],[-4,-54],[-1,-9],[-4,-52],[-6,-67],[-7,-75],[-14,-163],[-8,-101],[-15,-175],[-5,-55],[-10,-116],[-15,-181],[-12,-148],[-6,-67],[-6,-71],[-13,-162],[-8,-95],[-16,-190],[-8,-107],[-4,-43],[-6,-70],[-12,-143],[-12,-154],[-12,-130],[-15,-171],[-4,-42],[-4,-48],[-4,-37],[-4,-42],[-17,-191],[-16,-179],[-10,-116],[-8,-84],[0,-8],[-7,-78],[-5,-65],[-32,-397],[-10,-124],[-8,-100],[-24,-277],[-6,-75],[-3,-35],[0,-1],[-4,-41],[-11,-128],[-7,-83],[-14,-168],[-4,-46],[-7,-88],[-4,-47],[-11,-129],[-5,-54],[-4,-50],[-5,-55],[-5,-62],[-30,-367],[-1,-8],[-15,-174],[-3,-40],[-5,-56],[-18,-222],[-6,-68],[-4,-47],[-3,-45],[-4,-39],[-3,-40],[-10,-129],[-18,-218],[-6,-79],[-3,-35],[-3,-38],[-7,-88],[-5,-64],[-12,-154],[-20,-221],[-1,-19],[-7,-75],[-10,-114],[-3,-37],[-4,-39],[-4,-54],[-20,-217],[-12,-143],[-3,-33],[-5,-60],[-3,-34],[-8,-91],[-4,-46],[-9,-105],[-17,-216],[-13,-155],[-13,-144],[-7,-85],[-14,-169],[-4,-50],[-5,-56],[-9,-107],[-8,-101],[-7,-78],[0,-6],[-20,-239],[-4,-43],[-1,-9],[-3,-35],[-7,-92],[-7,-85],[-23,-262],[-1,-20],[-1,-16],[-9,-104],[-22,-262],[-11,-123],[-2,-30],[-3,-31]],[[52843,31],[0,-1],[-70,-3],[-118,-6],[-21,0],[-20,-1],[-14,-1],[-69,-3],[-58,-3],[-90,1],[-67,0],[-2,0],[-14,0],[-29,0],[-28,0],[-40,1],[-63,2],[-27,0],[-85,0],[-81,0],[-12,0],[-37,0],[-101,0],[-49,0],[-58,2],[-72,2],[-55,0],[-89,0],[-45,0],[-57,0]],[[51372,21],[-8,37],[-6,43],[-6,32],[-30,63],[-22,56],[-8,18],[-7,22],[17,59],[19,69],[13,62],[11,52],[20,99],[-6,79],[-29,-25],[13,68],[22,-36],[72,98],[9,12],[12,16],[13,18],[0,2],[-3,36],[30,42],[-20,70],[-15,-24],[-25,96],[31,47],[5,-16],[-13,-21],[10,-39],[4,6],[-3,12],[12,17],[10,-28],[13,18],[18,-46],[3,6],[6,-17],[-14,-30],[5,-13],[19,35],[13,-14],[8,-22],[1,16],[50,72],[9,-9],[16,58],[3,-2],[14,-14],[9,-22],[1,-6],[5,-30],[1,-36],[12,-16],[14,-20],[1,-1],[1,-3],[9,-12],[9,20],[0,2],[12,20],[12,-8],[12,-5],[7,3],[6,2],[2,-3],[9,-12],[12,-4],[13,14],[9,9],[2,3],[8,34],[2,38],[7,30],[10,22],[5,116],[-17,0],[0,35],[-7,0],[0,44],[0,52],[0,7],[1,43],[-21,1],[-38,-12],[-26,16],[-49,0],[-4,0],[-18,15],[1,19],[-11,20],[-10,0],[-14,-17],[-12,-36],[-24,-1],[-27,-3],[-15,-1],[-15,-1],[-1,35],[-1,39],[0,38],[-5,32],[-3,34],[2,26],[0,13],[-8,0],[-20,0],[1,49],[0,53],[1,86],[2,263],[0,2],[-17,-8],[-22,-6],[-25,-6],[-14,-4],[-30,-7],[-47,-12],[-37,-10],[-16,-12],[-1,-2],[-11,-13],[0,2],[-3,35],[-10,-9],[-6,-13],[-10,68],[-19,152],[-9,71],[-2,17],[-53,18],[-22,8],[-3,1],[-3,-19],[-1,-7],[-1,-1],[-5,0],[-16,-2],[-16,-35],[-2,-4],[-6,47],[-5,7],[-1,8],[-24,174],[-11,76],[-5,600],[-2,23],[-15,-3],[-46,51],[-15,8],[-16,-30],[-14,-37],[-10,-26],[0,1],[-8,10],[-25,30],[-17,20],[-4,13],[-8,26],[-9,32],[-31,-6],[-25,-6],[-25,-5],[2,72],[10,3],[-16,123],[-39,-41],[-14,38],[-4,13],[-8,7],[-12,31],[-20,-21],[7,-37],[-4,-18],[4,-11],[-2,-3],[-2,-1],[-8,-4],[-14,-5],[-10,-4],[-9,-54],[-9,-50],[-8,-46],[-7,-48],[-8,-64],[30,-29],[-9,-36],[-2,-9],[-10,-39],[6,1],[-4,-35],[-11,-27],[-24,-59],[-21,-51],[-10,-41],[8,-24],[-24,-85],[-19,-67],[-15,-56],[-1,-35],[0,-42],[0,-68],[10,-22],[-8,-25],[-19,-56],[-18,-62],[-20,-59],[-2,-8],[-3,-3],[-5,25],[-2,-14],[-5,-37],[-5,-33],[-1,-9],[-5,-37],[13,4],[8,4],[5,-4],[1,-2],[1,-10],[-1,-10],[-5,-7],[-10,-10],[-5,-12],[-3,-44],[-14,-14],[-20,-18],[-22,-22],[-17,-15],[-7,21],[-13,-7],[-14,3],[-9,30],[-6,37],[-7,39],[-19,60],[-9,24],[-12,33],[-14,57],[-7,28],[-15,-12],[-21,-19],[-17,-14],[-12,-11],[-7,32],[-5,33],[-5,29],[-17,-3],[0,2],[-37,50],[-29,39],[-11,11],[-9,0],[-7,-1],[-10,-3],[-3,-4],[-19,-14],[-4,2],[-15,13],[-12,17],[-27,34],[-8,9],[-56,57],[-10,-6],[-3,-5],[-4,-28],[-2,-14],[-63,23],[-4,1],[-1,-4],[-8,-5],[-1,-1],[-4,2],[-20,26],[-13,31],[-8,9],[-1,2],[-57,-17],[-8,-4],[-2,-1],[-4,-1],[-16,-64],[-8,-29],[-2,-2],[-1,0],[-2,5],[-2,38],[-5,13],[-37,9],[-2,1],[-3,0],[-9,-15],[-1,-1],[-30,35],[-51,57],[-4,0],[-2,8],[-13,34],[-3,-5],[-4,-7],[-17,-26],[-13,-27],[-13,-26],[-14,-6],[-13,-7],[-13,-32],[-11,-34],[-10,-31],[-9,-22],[-9,0],[0,-35],[1,-36],[-3,-61],[2,-42],[0,-30],[-2,0],[-71,0],[-7,-64],[0,-3],[-7,-29],[36,-80],[15,-26],[25,-40],[29,-53],[9,-86],[14,42],[16,-20],[22,-21],[18,-18],[15,-15],[25,-18],[-19,-26],[-5,-27],[9,-11],[6,-2],[8,-7],[4,-4],[4,-1],[9,-24],[9,-30],[8,-38],[7,-31],[7,-27],[7,-32],[11,-33],[5,-21],[4,-17],[12,-12],[-5,-26],[37,-68],[35,69],[30,44],[45,17],[31,-1],[3,0],[26,-10],[18,-28],[29,-46],[2,-3],[22,-34],[18,-19],[13,-15],[1,-1],[51,-16],[1,0],[0,-1],[72,-73],[3,-4],[1,-3],[-4,-27],[-7,-51],[-13,-28],[0,-12],[-4,-47],[-5,-78],[-7,-39],[-9,-57],[-6,-41],[-6,-43],[-5,-15],[-28,48],[-22,-51],[-20,-45],[-19,-43],[-21,-48],[-9,-141],[-2,-37],[-4,-51],[-2,-43],[-4,-43],[40,-128],[6,-19],[7,-26],[9,-32],[-11,-59],[-9,-47],[-5,-25]],[[49861,2],[-13,0],[-60,1],[-7,0],[-13,0],[-53,-1],[-86,0],[-8,0],[-38,-1],[-28,0],[-4,0],[-7,0],[-17,2],[-17,4],[-92,-4],[-34,0],[0,-2],[-45,-1],[-6,0],[-12,0],[-23,0],[-9,0],[-39,1],[-52,2],[-203,4],[-15,0],[-24,0],[-43,0],[-15,0],[-14,0],[-129,3],[-62,0],[-22,1],[-22,3],[-23,0],[-16,0],[-26,0],[-83,3],[-177,7],[-61,1],[-5,0],[-3,-1],[-22,3],[-80,0],[-39,2],[-34,1],[-36,0],[-4,1],[-16,2],[-40,-5],[-6,-1],[-49,4],[-42,0],[-120,10],[-4,0],[-153,7],[-27,-10],[-20,0],[-10,0],[-17,-3],[-25,0],[-48,3],[-36,0],[-17,0],[-164,3],[-14,-3],[-128,1],[-145,2]],[[46959,41],[30,362],[4,46],[4,58],[8,92],[12,155],[6,63],[14,171],[5,63],[3,39],[8,94],[6,84],[28,334],[6,72],[24,293],[4,52],[3,34],[7,88],[13,169],[3,35],[4,40],[5,68],[7,87],[15,177],[7,87],[5,57],[1,14],[4,50],[6,81],[6,69],[4,47],[24,301],[3,38],[10,116],[12,146],[1,13],[21,250],[19,232],[7,90],[15,180],[9,105],[19,224],[6,74],[3,42],[16,192],[6,63],[22,267],[4,48],[18,231],[4,40],[12,152],[15,185],[3,35],[4,48],[5,60],[2,34],[1,9],[3,34],[8,105],[5,55],[12,152],[7,78],[15,196],[15,183],[4,52],[4,44],[7,84],[14,170],[7,86],[17,207],[7,88],[15,185],[13,162],[10,115],[0,5],[7,90],[6,68],[2,24],[5,58],[5,67],[6,76],[6,65],[10,123],[6,81],[5,62],[7,79],[5,60],[7,83],[12,155],[6,67],[3,40],[8,95],[4,47],[3,39],[9,108],[3,41],[11,132],[6,78],[7,81],[7,80],[6,73],[16,191],[26,320]],[[40786,11328],[-27,-7],[-18,-6],[-4,-48],[-16,-12],[-13,-3],[-52,3],[-14,-3],[-15,0],[-11,15],[-22,11],[-20,1],[-8,-35],[-4,-36],[3,-38],[1,-38],[-8,-29],[-7,-30],[-15,-9],[-19,0],[-40,-17],[-29,-18],[-3,-37],[-13,-6],[-18,12],[-24,12],[-9,-26],[-5,-37],[-3,-37],[-20,-22],[-12,14],[-8,32],[-10,47],[-12,-5],[-22,-7],[-8,-26],[-14,15],[-8,-32],[-7,-34],[-15,-3],[-16,-10],[-49,-24],[-7,33],[-10,-25],[-31,-110],[1,-35],[7,-39],[-11,-33],[-14,-4],[-8,-26],[1,-43],[-14,-2],[1,-38],[-3,-43],[-12,9],[-10,-22],[-13,-14],[-13,-24],[-12,5],[-12,-19],[-8,-38],[-12,-16],[-15,-20],[-14,-13],[-9,-28],[-8,32],[-13,11],[-7,6],[-24,17],[-21,-25],[-42,6],[-27,-5],[-17,-38],[-14,-26],[-8,-31],[-4,-13],[-3,-51],[0,-46],[-16,-11],[-21,-12],[-21,-12],[-11,-21],[-3,-37],[-8,-31],[10,-29],[0,-3],[4,-29],[-10,-28],[-10,-27],[-12,11],[-1,1],[-13,13],[-28,17],[-23,15],[-20,14],[-15,-8],[-19,8],[-14,12],[-15,10],[-14,-14],[-12,-26],[-8,-30],[-2,-8],[-7,-23],[6,-29],[14,-25],[10,-40],[1,-85],[13,-31],[5,-33],[2,-43],[-1,-59],[-9,-27],[-9,-67],[-16,-55],[-1,-38],[1,-44],[-15,-21],[-8,-30],[-5,0],[-8,1],[-22,-5],[-9,-31],[-1,-35],[0,-11],[-3,-35],[-14,-15],[-14,-15],[-17,-16],[-11,-25],[-11,-21],[-30,-5],[-23,-22],[-6,-38],[-9,-29],[-33,24],[-3,4],[-9,11],[-13,-10],[-16,-21],[-2,-1],[-12,-10],[-28,-4],[-17,34],[-16,19],[-12,-11],[-16,-20],[-23,-36],[-7,-24],[-4,-14],[-14,-53],[-19,-30],[-13,-7],[-13,-8],[-6,-3],[-10,-4],[-11,-23],[-1,-21],[-2,-24],[-12,-54],[-4,-53],[-11,-13],[-18,-8],[3,-83],[8,-27],[16,-27],[10,-22],[12,-33],[9,-27],[9,-50],[-1,-37],[-12,-34],[-19,-19],[-21,-26],[-12,-25],[-11,-31],[3,-38],[-7,-37],[4,-63],[14,-38],[31,-41],[2,-58],[1,-59],[-44,-53],[-11,-16],[-14,-33],[-9,-29],[-15,-33],[-12,-11],[-11,-34],[-3,-53],[4,-34],[-2,-56],[-1,-46],[-1,-42],[-5,-31],[12,-15],[2,-34],[-3,-41],[2,-36],[11,-47],[18,-39],[16,-40],[-6,-31],[-24,-48],[11,-71],[-13,-13],[-34,-50],[-11,-2],[-14,14],[-15,27],[-2,3],[-13,17],[-15,-3],[-10,-27],[-1,-6],[-6,-24],[-38,5],[-1,-1],[-12,-11],[-15,-17],[-13,8],[-13,10],[-14,20],[-13,-5],[-20,-3],[-13,-3],[-12,-6],[-15,46],[-13,-10],[-13,-3],[-15,9],[-13,18],[-13,-10],[-15,-19],[-14,-5],[-17,5],[-12,2],[-13,28],[-9,35],[-17,10],[-21,12],[-14,10],[-20,20],[-20,18],[-13,12],[-16,7],[-38,-78],[-14,-8],[-15,-14],[-12,-26],[-21,-54],[-5,-30],[-36,-88],[-11,2],[-18,-10],[-1,-34],[9,-27],[12,-27],[12,-38],[11,-24],[13,-27],[5,-13],[4,-9],[2,-40],[-2,-42],[-7,-50],[-13,-9],[-14,11],[-11,-26],[2,-45],[-11,-25],[-13,-11],[-12,-15],[-16,-18],[-14,-29],[0,-44],[-2,-49],[-2,-40],[-10,-113],[-12,-19],[2,-122],[-4,-33],[3,-37],[-4,-36],[2,-41]],[[38074,5742],[-11,41],[-16,62],[-10,38],[-49,181],[-21,75],[-16,61],[-1,5],[-7,26],[-77,288],[-9,35],[-10,37],[-18,67],[-8,32],[-30,111],[-31,118],[-8,29],[-38,143],[-15,64],[-4,12],[-6,22],[-8,32],[-30,99],[-124,473],[-49,182],[-24,95],[-8,28],[-84,320],[-82,311],[-98,372],[-10,37],[-9,34],[-25,94],[-8,30],[-18,67],[-170,647],[-88,333],[-1,5],[-34,128],[-11,42],[-88,334],[-26,97],[-23,88],[-22,84],[-9,33],[-57,218],[-15,58],[-7,30],[-52,197],[-34,128],[-7,28],[-12,46],[-38,143],[-67,254],[-8,30],[-35,132],[-88,337],[-25,94],[-25,98],[-8,28],[-13,52],[-51,194],[-38,146]],[[67251,16477],[0,-1],[-2,-52],[-6,-190],[-8,-240],[-4,-127],[-5,-163],[-7,-179],[-1,-5],[-8,-248],[-3,-75],[-2,-90],[-3,-94],[-4,-86],[-3,-123],[-3,-57],[-7,-204],[-7,-214],[-9,-272],[-12,-340],[-7,-202],[-7,-218],[-2,-70],[-2,-44],[-3,-71],[-7,-215],[0,-3],[-1,-33],[-2,-61],[-2,-72],[-3,-71],[0,-4],[-3,-102],[-3,-89],[-4,-108],[-8,-243],[-3,-91],[-4,-108],[-1,-35],[-7,-202],[-8,-244],[-1,-34],[0,-1],[-3,-97],[-14,-432],[-3,-92],[-3,-69],[-6,-191],[-4,-105],[-7,-194],[-3,-53],[-1,-116],[-11,-330],[-1,-41],[-4,-113],[-4,-41],[-1,-91],[-21,-653],[-7,-218],[-7,-157],[-2,-98],[-4,-110],[-2,-45],[-2,-45]],[[66969,8105],[-65,3],[-1,0],[-20,18],[-23,58],[-18,36],[0,1],[-13,19],[-21,25],[-25,24],[-33,29],[-7,5],[-2,1],[-10,3],[-9,-12],[-12,-22],[-5,-24],[-3,-23],[-1,-11],[0,-28],[-2,-88],[-1,-5],[-3,-13],[-6,-14],[-1,-2],[-10,-21],[-1,-1],[-8,-10],[-9,-6],[-24,2],[-32,21],[0,5],[-21,53],[-39,85],[-23,46],[-15,19],[-27,29],[0,1],[0,10],[-8,18],[-40,58],[-7,7],[-1,0],[-25,13],[-9,13],[-53,93],[-12,30],[-12,27],[0,1],[-32,50],[-12,13],[-14,6],[-35,16],[-14,11],[-4,3],[-31,19],[-58,26],[-4,5],[-1,2],[-1,2],[-4,12],[-4,15],[-3,24],[-2,29],[0,2],[-3,12],[-5,11],[0,1],[-1,1],[-38,49],[-5,2],[-14,-3],[-30,-29],[-1,0],[-30,0],[-5,-4],[-1,-7],[0,-2],[-2,-14],[1,-13],[3,-16],[33,-83],[6,-25],[3,-55],[2,-98],[-2,-33],[-2,-15],[-3,-10],[-5,-10],[-5,-5],[-1,0],[-87,-41],[-2,-2],[-20,-3],[-20,7],[-2,2],[-27,16],[-15,11],[-5,6],[-11,14],[-34,44],[-32,32],[-3,3],[-16,15],[-1,3],[-1,1],[-63,71],[-1,1],[-9,9],[-9,10],[-56,47],[-8,2],[-20,5],[-29,16],[-2,0],[-33,5],[-12,13],[-69,68],[-15,14],[-8,8],[-45,40],[-65,58],[0,1],[-4,5],[-41,18],[-122,23],[-1,0],[-3,0],[-71,-13],[-16,-12],[-22,-22],[-7,1],[-25,21],[-2,2],[-20,24],[-11,7],[-13,3],[-6,2],[-3,0],[-10,0],[-59,25],[-13,-3],[-19,6],[-12,8],[-81,74],[-8,22],[0,2],[-15,5],[-33,-18],[-37,-20],[-33,-32],[-4,-4],[0,8],[-29,83],[-26,47],[-5,6],[-1,1],[-1,-1],[-8,-2],[-9,-10],[-11,-29],[-2,-7],[-16,-34],[-4,-3],[-8,0],[-1,0],[-26,8],[-3,8],[-11,40],[-1,4],[-7,42],[-1,15],[0,1],[10,46],[1,9],[-1,18],[-3,24],[-6,17],[-11,10],[-10,0],[-11,-5],[-1,-3],[-10,-16],[-5,-5],[-1,-1],[-2,0],[-4,0],[-3,2],[-3,3],[-5,6],[-39,58],[-5,5],[-23,28],[-1,1],[-29,34],[-32,38],[-4,5],[-31,16],[-15,7],[-1,1],[-51,31],[-15,6],[-11,2],[-1,0],[-14,-3],[-40,-35],[-21,4],[-13,2],[-20,26],[-2,3],[-3,3],[-14,24],[-7,17],[-1,2],[-2,7],[-5,24],[-3,22],[-19,35],[-2,-1],[-15,-5],[-1,2],[-12,53],[-4,13],[-50,109],[-6,9],[-11,3],[-1,1],[-8,19],[-3,17],[0,1],[-3,54],[2,68],[0,30],[-3,9],[-6,4],[-18,5],[-10,-4],[-12,-18],[-22,-3],[-11,5],[-10,6],[-22,29],[-5,13],[-4,23],[-1,3],[0,1],[0,17],[2,15],[0,1],[0,8],[-1,31],[0,4],[-5,96],[-1,8],[-47,36],[-1,0],[-35,21],[-5,-10],[-5,0],[-27,35],[-7,12],[-14,29],[-6,14],[0,1],[-7,15],[-2,15],[0,1],[-5,14],[-6,22],[-1,0],[-4,5],[-23,-7],[-6,-2],[-36,-13],[-5,6],[-4,6],[0,1],[-2,8],[1,33],[0,3],[4,36],[-1,13],[0,1],[-5,14],[-10,14],[-25,-4],[-21,-63],[0,-1],[-39,-71],[-4,0],[-1,0],[-37,48],[-5,14],[-1,-3],[-6,-23],[6,-150],[-2,-6],[-3,0],[-1,0],[-18,21],[-10,11],[-10,-4],[-26,-35],[-5,-10],[-1,-56],[-2,-10],[-3,-10],[-3,-4],[-2,-1],[-37,92],[-1,1],[-11,39],[-32,152],[-4,19],[-1,10],[-15,100],[-37,114],[-33,70],[-10,10],[-93,54],[-5,-3],[-4,-12],[-13,-55],[-3,-16],[0,-1],[-8,-20],[-10,-9],[-14,-6],[-13,0],[-4,0],[-1,0],[-7,3],[-24,34],[-12,28],[-21,79],[-1,4],[-2,-10],[0,-2],[-4,-7],[-1,-3],[-13,-1],[-31,-4],[-4,-1],[-37,-12],[-49,-17],[-1,0],[-8,-4],[-10,-10],[-4,-6],[-11,-18],[-9,33],[-27,95],[-2,6],[0,-12],[0,-85],[-2,-11],[-1,-6],[-32,-127],[-9,0],[-35,15],[-7,6],[-1,1],[-6,17],[-5,3],[-52,-5],[-30,-6],[-18,-9],[-3,-8],[-1,-7],[1,-6],[0,-17],[-1,-2],[-7,-18],[-47,-99],[-6,10],[-18,33],[-16,28],[-2,5],[1,10],[0,1],[12,32],[13,36],[2,5],[-5,19],[-16,52],[-4,14],[-9,30],[-9,29],[-12,25],[-31,64],[-11,18],[-4,6],[-1,1],[-6,113],[0,5],[-2,41],[-1,24],[3,30],[0,7],[-3,6],[-38,20],[-11,-2],[-15,-12],[-9,-13],[-5,-8],[-2,-18],[-5,-8],[-16,-13],[-4,-3],[-42,-32],[-16,2],[-1,0],[-9,6],[-61,62],[-18,38],[-3,6],[-36,2],[-9,0],[-41,2],[-8,1],[-51,23],[-43,54],[-1,1],[-5,40],[0,2],[-5,39],[-22,44],[-9,11],[-41,84],[-3,7],[1,6],[4,30],[-12,19],[-13,19],[-3,6],[-29,44],[-8,-60],[-1,-7],[-6,0],[-27,0],[-4,0],[-9,14],[-1,2],[-13,25],[-6,15],[-21,50],[-55,136],[-3,7],[0,1],[-4,13],[-4,26],[0,2]],[[86488,19525],[25,-153],[7,-7],[38,-37],[30,50],[66,105],[32,-73],[1,-281],[37,137],[96,-24],[-15,-174],[32,31],[78,-284],[86,13],[-45,-430],[-100,-226],[-35,55],[-58,-140],[-28,-181],[-32,-6],[47,-114],[-63,-335],[40,-12],[21,88],[23,-2],[22,11],[21,73],[19,74],[5,138],[32,20],[-4,169],[62,-10],[88,103],[-6,81],[-7,91],[33,61],[11,69],[35,-106],[5,109],[23,-52],[31,120],[-11,132],[-22,87],[49,127],[63,-113],[-20,201],[22,141],[87,-138],[-21,-37],[41,-123],[26,-20],[1,-79],[29,-51],[48,65],[-24,77],[-39,112],[37,40],[28,-19],[36,60],[31,55],[43,78],[32,18],[14,-51],[6,-21],[16,48],[-3,55],[-3,44],[68,61],[9,-32],[10,-41],[22,-86],[40,-135],[22,-202],[10,-88],[6,-52],[-31,-125],[-56,-310],[-40,-299],[-8,-112],[-17,-99],[-46,-357],[-18,-145],[-37,-220],[-10,-93],[-15,-100],[-18,-80],[0,-136],[-4,-80],[-5,-61],[-3,-67],[-11,-65],[-21,-163],[-4,-61],[-17,-114],[-18,-90],[-13,-56],[-52,-20],[-38,-34],[-16,28],[-18,43],[9,81],[-4,105],[-10,105],[-6,68],[37,-63],[35,-41],[43,-11],[25,83],[19,137],[19,97],[9,100],[9,171],[-35,30],[-25,-3],[-39,-36],[-37,-76],[-28,-69],[-11,-146],[-5,-10],[-20,-41],[-16,-55],[-8,-27],[-65,-69],[-4,-4],[-78,38],[-98,70],[-8,87],[-45,94],[-5,-112],[25,-52],[-35,-115],[-43,-179],[-49,-65],[-52,-58],[-146,-120],[-53,-9],[-62,-111],[-57,-95],[-55,-126]],[[79703,13800],[-10,-14],[-37,-53],[-43,-62],[-1,-1],[-35,-59],[-27,-40],[-23,-33],[-36,-52],[-48,-70],[-84,-123],[-78,-104],[-62,-83],[-48,-64],[-14,-19],[-30,-33],[-72,-110],[-121,-182],[-27,-41],[-12,-18],[-48,-73],[-15,-23],[-17,-23],[-13,-20],[-20,-31],[-91,-146],[-56,-87],[-94,-143],[-63,-102],[-155,-238],[-15,-22],[-30,-47],[-145,-218],[-23,-35],[-32,-51],[-12,-17],[-31,-46],[-43,-63],[-20,-29],[-170,-250],[-64,-94],[-7,-10],[-2,-3],[-7,-12],[-14,-20],[-22,-31],[-12,-19],[-43,-60],[-56,-78],[-12,-16],[-1,-2],[-55,-77],[-42,-59],[-73,-103],[-181,-252],[-42,-59],[-140,-197],[-10,-14],[-115,-161],[-70,-98],[-29,-41],[-111,-155],[-39,-56],[-96,-133],[-28,-39],[-40,-57],[-19,-26],[-3,-4],[-152,-214],[-126,-175],[-33,-43],[-49,-65],[-18,-24],[-31,-37],[-78,-103],[-83,-108],[-57,-74],[-92,-120],[-25,-32],[-266,-347],[-17,-22],[-14,-19],[-25,-33],[-23,-29],[-68,-89],[-13,-16],[-61,-80],[-47,-62],[-8,-10],[-59,-76],[-61,-80],[-53,-83],[-19,-25],[-103,-154],[-43,-64],[-72,-107],[-64,-95],[-36,-55],[-61,-93],[-58,-87],[-110,-168],[-96,-146],[-10,-16],[-14,-21],[-57,-87],[-15,-21],[-19,-30],[-43,-65],[-15,-24],[-80,-127],[-43,-67]],[[74052,5706],[-5,31],[-2,9],[-17,55],[-1,6],[-14,27],[-7,6],[-10,1],[-11,-5],[-25,-23],[-2,-2],[-13,19],[-4,22],[-4,-3],[-16,-8],[-11,-8],[-1,0],[-24,7],[-32,10],[-3,1],[-1,2],[-8,9],[-18,24],[-3,4],[-23,18],[-3,2],[-6,6],[-16,-16],[-15,-6],[-6,7],[-6,14],[-1,3],[-4,25],[-4,10],[-5,3],[-35,15],[-84,-7],[-1,0],[-3,7],[-33,100],[-12,22],[-14,13],[-117,86],[-14,6],[-76,-28],[11,146],[15,194],[9,111],[10,129],[17,224],[14,184],[4,53],[12,149],[12,162],[4,43],[7,101],[1,12],[2,25],[1,11],[6,73],[10,133],[5,59],[19,246],[3,43],[5,67],[4,47],[17,222],[7,96],[8,107],[5,63],[7,90],[5,55],[2,34],[3,35],[7,82],[3,44],[8,94],[5,64],[4,48],[15,191],[7,98],[3,45],[8,97],[42,566],[11,154],[23,316],[7,90],[3,42],[-90,-55],[-18,-5],[-55,20],[-33,-23],[-15,-31],[-15,-18],[-10,-35],[-43,-77],[-28,-69],[-19,-36],[-20,-81],[-21,-51],[-19,-35],[-23,-25],[-45,-39],[-32,-35],[-18,-17],[-25,-1],[-18,6],[-14,1],[-36,-9],[-16,3],[-21,58],[-13,21],[-15,19],[-47,42],[-23,11],[-39,32],[-26,15],[-33,51],[-13,17],[-15,3],[-31,-8],[-35,2],[-28,9],[-17,-5],[-16,-4],[-16,11],[-19,-6],[-12,-10],[-29,-58],[-39,-65],[-16,-63],[-11,-32],[-19,-23],[-17,-4],[-47,54],[-24,41],[-17,23],[-20,51],[-6,66],[-11,26],[-14,3],[-36,-38],[-11,-17],[-14,-19],[-33,19],[-11,29],[-18,61],[-5,37],[-10,35],[-39,30],[-17,31],[-20,37],[-15,67],[-4,46],[-7,65],[-19,66],[-12,36],[-10,37],[-22,52],[-8,38],[-15,20],[-20,15],[-21,-4],[-26,-13],[-20,-16],[-12,-19],[-11,12],[-3,48],[14,60],[3,36],[-25,73],[-35,-7],[-19,-14],[-25,-27],[-23,5],[-14,17],[-12,18],[-13,14],[-11,13]],[[34797,11563],[-17,-14],[-27,-24],[-23,-20],[-13,-13],[-30,-31],[-39,-31],[-38,-32],[-13,-11],[-36,-29],[-13,-11],[-23,-19],[-75,-59],[0,-1],[-21,-17],[-31,-25],[-2,-2],[-95,-76],[-26,-21],[-67,-54],[-30,-24],[-15,-12],[-24,-38],[-21,-42],[-25,-11],[-21,-44],[-14,-27],[-16,-9],[-31,-54],[-32,-55],[-11,-20],[-14,-14],[-14,-41],[-11,-4],[-14,3],[-17,-20],[-41,-15],[-12,-5],[-17,28],[-24,-2],[-21,-36],[-13,2],[-13,-1],[-22,-12],[-12,-10],[-18,-23],[-11,-23],[-35,-8],[-21,-6],[-25,-5],[-20,-29],[-16,-9],[-19,-38],[-15,-16],[-34,14],[-10,23],[-31,50],[-50,-33],[-33,-21],[-8,-5],[-124,-80],[-25,-16],[-15,-10],[-27,-15],[-20,-12],[-21,-13],[-27,-16],[-24,-16],[-21,-14],[-14,-9],[-69,-45],[-30,-19],[-69,-46],[-70,-46],[-46,-30],[-95,-61],[-22,-14],[-50,-32],[-22,-14],[-63,-39],[-66,-40],[-74,-45],[-39,-25],[-12,-7],[-34,-21],[-29,-18],[-3,-2],[-48,-28],[-27,-19],[-12,-9],[-19,-13],[-12,-9],[-107,-69],[-214,-137],[-105,-67],[-190,-125],[-76,-51],[-26,-17],[-14,51],[-7,28],[-9,24],[-16,20],[-14,7],[-17,-14],[-10,-30],[-16,-31],[-11,-28],[-10,-23],[-11,-21],[-12,-3],[-16,-21],[-12,-24],[-7,-27],[-10,-28],[-21,-30]],[[31217,9082],[-17,-19],[-17,-29],[-17,-10],[-18,20],[-14,4],[-39,-59],[-20,-17],[-15,-13],[-14,-17],[7,-41],[-7,-38],[-11,-34],[-7,-41],[-23,-14],[-12,-3],[-17,-4],[-16,-17],[-17,-10],[-17,-14],[-14,-27],[-14,-14],[-12,-51],[-9,-38],[-12,-41],[-13,-15],[-15,1],[-16,-10],[-20,-20],[-17,3],[-13,11],[-17,-7],[-22,-41],[-10,-22],[-17,-12],[-12,-18],[13,-30],[13,-11],[3,-34],[-11,-14],[-19,-6],[-10,-24],[-3,-38],[2,-41],[8,-34],[17,-31],[7,-31],[-4,-37],[-7,-32],[-7,-43],[-1,-48],[-8,-45],[-12,-34],[-4,-44],[3,-34],[2,-42],[-8,-27],[-15,-3],[-16,13],[-30,-3],[-18,3],[-10,31],[-13,14],[-13,3],[-12,-12],[-16,-22],[-19,-14],[-19,-6],[-13,0],[-17,3],[-12,0],[-19,3],[-12,7],[-16,0],[-13,-3],[-14,7],[-16,3],[-15,-20],[-14,-18],[-12,-6],[-15,-11],[-16,-3],[-13,0],[-15,0],[-14,3],[-12,11],[-14,-11],[-16,4],[-15,17],[-11,14],[-12,-4],[-7,-31],[-1,-37],[-4,-34],[-9,-24],[-14,-16],[-13,-5],[-13,0],[-12,4],[-14,17],[-12,20],[-10,21],[-13,17],[-12,-4],[-13,4],[-13,0],[-13,7],[-13,-7],[-12,0],[-12,13],[-10,28],[-9,27],[-15,21],[-13,17],[-11,20],[-14,-3],[-11,-12],[-12,-16],[-16,-10],[-13,-7],[-14,-17],[-13,-31],[-13,-17],[-8,-30],[3,-38],[-6,-31],[-13,-10],[-17,0],[-13,0],[-15,3],[-18,7],[-14,4],[-6,4],[-9,8],[-11,8],[-12,21],[-17,10],[-16,-10],[-13,0],[-16,3],[-12,4],[-14,6],[-12,4],[-13,0],[-14,-21],[-10,-32],[-6,-36],[6,-31],[6,-41],[-1,-38],[-18,-13],[-12,-4],[-14,-3],[-14,0],[-14,-17],[-12,-4],[-13,7],[-11,21],[-15,7],[-16,17],[-15,10],[-13,7],[-13,-7],[-13,3],[-14,6],[-14,1],[-22,-20],[-12,-3],[-34,2],[-14,0],[-18,25],[-17,12],[-14,-2],[-21,-7],[-13,0],[-14,7],[-16,17],[-17,21],[-12,13],[-3,37],[0,35],[-11,27],[-26,13],[-18,-12],[-25,-13],[-12,-35],[-8,-41],[-11,-17],[-20,3],[-14,-7],[-12,3],[-15,7],[-14,-7],[-12,-17],[-7,-31],[-17,-6],[-12,16],[-10,18],[-12,14],[-13,20],[-10,34],[-13,34],[-12,2],[-15,-2],[-12,14],[-14,3],[-14,-13],[-13,-4],[-14,-6],[-14,-14],[-13,-4],[-12,4],[-12,7],[-13,-11]],[[28617,7601],[-19,155],[-37,294],[-55,432],[-14,114],[-14,77],[-8,50],[-9,53],[-61,348],[-20,118],[-18,100],[-14,83],[-15,86],[-8,46],[-30,171],[-7,42],[-7,39],[0,1],[-4,25],[-6,30],[-16,86],[0,1],[-73,384],[-7,37],[-35,183],[-64,338],[-12,63],[-21,111],[-11,62],[-17,86],[-7,38],[-7,39],[-26,137],[-8,49],[-51,328],[-8,51],[-14,90],[0,1],[-5,32],[-42,273],[-11,37],[-2,6],[-86,249],[-34,101],[-9,25],[-8,24],[-46,133],[-11,20],[-21,61],[-181,537],[-12,34],[-23,68],[-62,181],[-26,75],[-40,115],[-29,80],[-26,73]],[[59604,5372],[16,3],[6,1],[14,1],[14,-7],[17,-24],[19,-40],[21,-55],[27,-114],[11,-46],[11,-56],[7,-55],[9,-35],[12,-51],[22,-75],[28,-112],[14,-71],[8,-30],[26,-75],[22,-44],[31,-51],[24,-37],[20,-32],[28,-38],[22,-22],[20,-17],[25,-39],[24,-43],[15,-19],[14,-15],[30,-31],[35,-54],[69,-104],[41,-66],[32,-52],[51,-96],[43,-81],[26,-53],[29,-39],[38,-36],[33,-28],[17,-11],[25,-16],[34,-26],[18,-23],[28,-52],[13,-36],[21,-79],[10,-28],[6,-21],[15,-46],[8,-35],[8,-46],[8,-58],[4,-35],[0,-1],[4,-32],[-1,-65],[-11,21],[-10,38],[-1,3],[-10,42],[-6,37],[-21,104],[-10,49],[-9,33],[-9,31],[-14,35],[-15,30],[-15,24],[-20,18],[-18,8],[-19,2],[-16,-6],[-17,-9],[-23,-18],[-38,-8],[-51,-18],[-12,3],[-16,24],[-71,165],[-28,98],[-6,36],[-10,40],[-16,42],[-15,38],[-15,27],[-14,20],[-16,12],[-16,10],[-27,-2],[-18,7],[-15,14],[-14,20],[-21,49],[-50,122],[-41,92],[-11,39],[-20,16],[-17,18],[-31,26],[-33,32],[-11,15],[-13,23],[-20,64],[-32,74],[-28,90],[-26,97],[-29,111],[-26,89],[-14,44],[-9,25],[-14,21],[-18,29],[-25,46],[-21,36],[-18,31],[-26,37],[-18,13],[-18,-2],[-42,-15],[-49,-20],[-38,-11],[-14,-6],[-35,1],[-25,3],[-15,-5],[-4,-1],[-20,-6],[-43,-26],[-13,-13],[-12,-12],[-12,-17],[-18,-25],[-12,-22],[-34,-55],[-22,-28],[-14,-13],[-8,-27],[-9,-37],[-2,-4],[-7,-29],[-12,-41],[-12,-1],[-17,9],[-13,5],[-14,-5],[-10,-29],[-5,-37],[-14,-16],[-17,-5],[-12,-16],[-9,-11],[6,-32],[10,-16],[2,-3],[20,-29],[14,-43],[-4,-17],[-9,-47],[14,-19],[2,-4],[9,-24],[0,-2],[-1,-4],[-10,-36],[2,-39],[-4,-44],[-14,-12],[-9,-24],[5,-30],[7,-43],[-5,-66],[-6,-18],[-10,-28],[-12,-43],[-2,-29],[-1,-5],[3,-41],[-10,-35],[-11,29],[-11,14],[-1,3],[-28,-20],[-3,-39],[0,-2],[-3,-63],[0,-64],[-2,-41],[-4,-52],[2,-35],[0,-2],[-7,-39],[-5,-39],[-6,-34],[-18,8],[-10,-57],[11,-43],[14,-29],[21,-55],[-3,-5],[-7,-14],[-8,-11],[-21,-28],[-11,-17],[-12,-38],[-1,-2],[1,-1],[8,-28],[13,7],[9,-24],[6,-30],[6,-40],[3,-36],[1,-5],[0,-4],[0,-27],[0,-1],[-8,-36],[-15,-1],[-8,-40],[10,-19],[11,-36],[-2,-40],[2,-35],[-1,-35],[1,-33],[1,-4],[6,-21],[1,-3],[-11,-23],[-9,-9],[-2,-3],[-11,-24],[1,-4],[1,-31],[11,-15],[-1,-36],[0,-35],[-4,-34],[-2,-41],[3,-36],[-4,-34],[-4,-38],[17,-29],[-5,-32],[-29,-43],[0,-36],[-5,-27],[-1,-5],[-16,-14],[0,-38],[3,-26],[1,-8],[-7,-30],[-9,-29],[-4,-34],[-6,-30],[8,-27],[11,-19],[13,-25],[12,-23],[8,-34],[6,-31],[0,-36],[-2,-1],[-10,-4],[-11,-14],[-3,-39],[-10,-20],[0,-1],[-1,0],[-19,3],[-16,-9],[-5,-21],[-2,-9],[-7,-39],[9,-22],[13,-12],[11,-13],[11,-29],[-5,-33],[-10,24],[-2,1],[-11,5],[-6,-38],[9,-24],[9,-26],[8,-30],[8,-29],[2,-16],[4,-19],[-7,-31],[-2,-4],[-6,-22],[-1,-10],[-4,-23],[-9,-33],[-5,-34],[-3,-1],[-10,-2],[-13,10],[-12,-2],[-11,19],[-4,14],[-4,16],[-4,13],[-4,11],[-8,-1],[-5,-2],[-11,-26],[-5,-26],[-2,-7],[-1,-6],[0,-3],[1,-36],[4,-50],[3,-36],[7,-28],[1,-37],[-1,-38],[-13,7],[-11,17],[-6,31],[-4,2],[-8,6],[-12,-17],[-11,-21],[-8,-5],[-5,-3],[-6,-2],[-6,-1],[0,-1],[-6,-30],[5,-36],[15,-6],[9,-22],[-2,-20],[0,-7],[-1,-7],[-7,-29],[0,-1],[-7,-28],[-1,-10],[-4,-28],[-2,-38],[-2,-42],[-2,-16],[-2,-22],[-12,-10],[-14,8],[-9,26],[-7,-33],[7,-28],[12,-22],[7,-29],[-10,-13],[-12,-10],[-11,-27],[6,-29],[8,-36],[-6,-32],[1,-5],[5,-25],[-16,-22],[-15,3],[-10,-30],[12,-6],[14,1],[16,-3],[13,2],[8,-8],[3,-3],[0,-5],[1,-33],[12,-10],[6,-9],[5,-8],[8,-27],[1,-35],[-5,-35],[0,-1],[-9,-24],[-5,-32],[2,-38],[-12,-29]],[[58589,41],[-63,0],[-20,0],[-15,0],[-17,0],[-21,-1],[-21,-1],[-19,-1],[-61,-4],[-6,0],[-45,3],[-28,-3],[-18,0],[-18,0],[-16,0],[-21,0],[-29,0],[-38,-2],[-12,-1],[-12,0],[-6,0],[-9,0],[-3,0],[-18,0],[-16,1],[-67,2],[-7,0],[-17,0],[-33,0],[-82,-1],[0,1],[-53,3],[-24,1],[-57,3],[-14,0],[-41,0],[-61,-3],[-14,0],[-35,3],[-13,0],[-46,0],[-31,0],[-27,3],[-45,0],[-51,0],[-70,0],[-31,0],[-97,0],[-118,0],[-66,0],[-13,0],[-23,-1],[-71,1],[-87,0],[-62,-1],[-94,-1],[-16,0],[-90,0],[-34,-1],[-21,0],[-5,0],[-1,0],[-20,3],[-38,0],[-52,0],[-39,0],[-33,1],[-15,-1],[-21,1],[-11,0],[-32,3],[-25,0],[-28,-2],[-17,-1],[-34,3],[-37,0],[-3,0],[-64,0],[-1,0],[-42,-2],[-35,-1],[-6,1],[-9,0],[-19,2],[-7,0],[-68,0],[-14,0],[-25,0],[-62,0],[-52,0],[-28,0],[-54,0],[-33,0],[-20,0],[-57,0],[-78,0],[-74,-3],[-26,-1],[-31,0],[-39,0],[-25,0],[-59,0],[-25,0],[-55,0],[-89,0],[-28,0],[-45,0],[-92,0],[-74,0],[-49,0],[-36,0],[-16,-1],[-106,-3],[-63,-2],[-6,0],[-18,-1],[-30,-1],[-20,-1],[-46,-1],[-43,-2],[-68,-2],[-21,0],[-65,0],[-67,0],[-60,-1],[-28,-1],[-16,-1],[-114,5],[-29,2],[-42,-1],[-55,0],[-6,0],[-22,0],[-71,0],[-83,-1],[-15,0],[-20,0],[-84,0],[-35,0],[-15,-1],[-44,0],[-13,0],[-36,0],[-16,0],[-29,0],[-18,0],[-20,0],[-67,0],[-23,0],[-16,0],[-89,-1],[-1,0],[-18,-2],[-40,3],[-20,0],[-1,0],[-24,0],[-1,0],[-31,0]],[[71349,12093],[1,-164],[0,-127],[-1,-113],[2,-233],[1,-63],[0,-37],[1,-91],[0,-75],[0,-41],[1,-285],[1,-185],[0,-106],[0,-66],[1,-61],[0,-37],[1,-334],[0,-39],[0,-44],[0,-89],[0,-52],[2,-441],[0,-42],[0,-156],[1,-38],[0,-81],[1,-154],[1,-358],[0,-121],[1,-109],[0,-24],[1,-134],[0,-160],[2,-373],[0,-113],[1,-104],[0,-51],[0,-47],[0,-81],[1,-106],[2,-121],[1,-404],[1,-160],[0,-90],[1,-200],[1,-118],[0,-52],[1,-71],[0,-33],[0,-2],[-43,-190],[-90,-402],[-43,-184],[-25,-113],[-29,-128],[-14,-55],[-34,-154],[-14,-62],[-9,-36],[-38,-166],[-11,-48],[-9,-37],[-50,-218],[-20,-85],[-15,-65],[-19,-83],[-26,-110],[-43,-188],[-31,-135],[-21,-94],[-32,-137],[-45,-204],[-31,-128],[-36,-162],[-54,-233],[-24,-104],[-66,-285],[-8,-35],[-37,-160],[-35,-153],[-71,-306],[-22,-96],[-3,-12],[-45,-197],[-20,-87],[-18,-77],[-16,-71],[-28,-121],[-23,-100],[-13,-56],[-27,-118],[-35,-152],[-23,-99],[-10,-45],[-13,-55]],[[70056,161],[0,-1],[-61,-2],[-39,0],[-36,-1],[-22,0],[-31,-1],[-19,0],[-116,-2],[-24,0],[-70,-1],[-2,0],[-86,-2],[-17,0],[-54,-1],[-31,-1],[-14,0],[-52,0],[-46,-2],[-13,0],[-39,0],[-37,-1],[-145,-2],[-47,0],[-35,-1],[-49,0],[-28,0],[-13,-1],[-5,0],[-42,-1],[-21,0],[-10,-1],[-25,0],[-14,0],[-16,-1],[-21,-1],[-3,-1],[-10,0],[-72,-1],[-54,-1],[-56,0],[-19,0],[-39,-1],[-40,-1],[-22,0],[-49,0],[-13,0],[-85,-1],[-26,-1],[-17,0],[-17,0],[-46,2],[-13,0],[-74,-2],[-16,-1],[-50,0],[-82,-1],[-155,-1],[-91,-1],[-31,-1],[-40,0],[-17,4],[-39,-3],[-15,-1],[-75,0],[-3,0],[-9,0],[-18,0],[-128,-1],[-53,-1],[-5,0],[-57,-2],[-36,-2],[-15,0],[-35,0],[-14,0],[-18,0],[-4,0],[-35,0],[-43,-1],[-24,0],[-6,0],[-24,-1],[-13,0],[-20,0],[-19,0],[-13,0],[-34,-1],[-52,0],[-28,0],[-22,0],[-27,-1],[-9,0]],[[66746,116],[4,124],[0,1],[5,156],[8,273],[1,47],[1,36],[1,36],[7,248],[4,156],[2,54],[2,92],[2,64],[4,115],[1,60],[4,136],[10,324],[9,296],[2,81],[2,47],[7,235],[5,188],[2,36],[4,130],[2,58],[2,69],[2,55],[1,38],[1,66],[2,84],[2,66],[1,44],[1,42],[2,46],[-1,44],[0,49],[1,38],[2,95],[4,186],[1,48],[2,95],[1,41],[5,166],[2,98],[3,178],[2,94],[5,187],[3,91],[3,118],[1,52],[2,71],[3,101],[1,43],[2,39],[1,51],[1,43],[1,56],[1,49],[0,3],[3,78],[1,49],[6,180],[2,60],[4,113],[9,308],[4,126],[1,40],[2,53],[12,376],[2,120],[2,78],[3,97],[2,61],[2,73],[1,41],[3,78],[10,291],[1,33],[0,8],[3,80],[0,41],[1,21],[0,45]],[[28617,7601],[-80,-10],[-23,-21],[-62,-59],[-49,-45],[-101,-95],[-93,-87],[-37,-35],[-23,35],[-98,-45],[-38,-17],[-62,-28],[-42,-20],[-38,-17],[-100,-48],[-107,-50],[-4,-2],[-92,-44],[-20,-10],[-77,-36],[-79,-38],[-91,-43],[-26,-13],[-12,-10],[-28,-7],[-13,-7],[-17,-7],[-20,-13],[-21,-7],[-16,-17],[-13,-21],[-15,-27],[-15,-7],[-17,-31],[-12,-17],[-18,-24],[-17,-24],[-11,-20],[-17,-21],[-18,0],[-19,-23],[-14,-31],[-13,-21],[-18,-13],[-16,-7],[-16,-14],[-22,-20],[-21,-28],[-17,-24],[-24,-20],[-12,-7],[-11,-17],[-16,-38],[-14,-12],[-13,-19],[-10,-27],[-9,-31],[-12,-27],[-15,-17],[-12,-19],[-21,-32],[-10,-21],[-21,-15],[-16,-11],[-13,-18],[-19,-17],[-17,-13],[-21,-8],[-23,-10],[-14,-21],[-14,-10],[-33,3],[-17,-17],[-19,-10],[-20,4],[-16,6],[-13,7],[-15,14],[-24,34],[-16,10],[-18,14],[-14,-10],[-18,-20],[-14,-11],[-5,-50],[-19,-12],[-19,7],[-20,-3],[-17,0],[-14,-14],[-6,-12],[-5,-8],[-16,-11],[-13,-6],[-15,-7],[-14,-3],[-24,-4],[-21,-10],[-22,-7],[-18,-7],[-17,-7],[-18,-14],[-13,-17],[-14,-13],[-25,-11],[-13,4],[-13,0],[-13,-4],[-18,-10],[-17,-3],[-15,7],[-48,3],[-18,3],[-16,-10],[-13,-24],[-9,-44],[-10,-34],[-10,-21],[-12,-14],[-20,-13],[-14,-4],[-14,4],[-15,10],[-24,10],[-15,-3],[-27,-4],[-19,11],[-16,7],[-12,3],[-16,3],[-16,-1],[-19,-33],[-13,-3],[-11,3],[-18,-17],[-8,-26],[-17,-32],[-24,-14],[-14,-3],[-14,-7],[-13,-10],[-21,-24],[-14,-14],[-23,-10],[-13,-5],[-11,-15],[-3,-35],[3,-41],[5,-38],[6,-29],[11,-15],[15,-7],[14,-13],[12,-10],[13,-11],[18,-14],[12,-10],[43,-34],[-12,-37],[-2,-35],[-2,-36],[6,-63],[4,-34],[5,-38],[5,-37],[2,-55],[-7,-55],[-5,-41],[-2,-37],[-1,-62],[-4,-44],[-6,-41],[-8,-34],[-8,-55],[-9,-51],[-13,-48],[-9,-45],[-10,-58],[-6,-61],[-4,-35],[-15,-34],[-10,-20],[-17,-45],[-14,-41],[-11,-37],[-10,-24],[-9,-28],[-10,-39],[-18,-15],[-14,3],[-13,4],[-12,13],[-12,10],[-17,18],[-13,10],[-15,-2],[-13,-2],[-59,-9],[-31,-4],[-16,-24],[-16,-31],[-11,-17],[-16,-21],[-10,-20],[-16,-38],[-8,-24],[-9,-37],[-11,-34],[-19,-31],[-13,-9],[-12,-19],[-8,-30],[-12,-38],[-17,-20],[-12,-6],[-15,2],[-14,4],[-14,0],[-12,-7],[-13,-14],[-11,-20],[-10,-21],[-11,-20],[-19,0],[-16,3],[-12,-10],[-21,-21],[-12,-3],[-13,-4],[-12,-3],[-12,-3],[-15,-18],[-8,-37],[-5,-34],[-10,-28],[-17,-20]],[[24536,3349],[-34,-34],[-17,-17],[-30,-28],[-13,-13],[-21,-19],[-43,-40],[-26,145],[-21,118],[-21,115],[-66,371],[-13,78],[-38,213],[-11,62],[-4,19],[-9,51],[-102,566],[-7,37],[-13,71],[-21,118],[-82,453],[-8,45],[-9,48],[-40,225],[-18,96],[-25,138],[-65,354],[-10,57],[-11,58],[-14,78],[-6,33],[-28,157],[-32,176],[-1,4],[-14,73],[-43,256],[-13,74],[-14,82],[-22,125],[-7,41],[-33,171],[-51,266],[-19,121],[-3,19],[-5,33],[-6,39],[0,3],[-6,38],[-9,58],[-9,32],[-33,87],[-12,34],[-18,46],[-3,9],[-61,163],[-15,40],[-13,36],[-9,25],[-63,198],[-37,116],[-70,218],[-23,63],[-121,331],[-17,48],[-20,54],[-80,273],[-21,63],[-10,29],[-52,155],[-12,35],[-44,128],[-14,37],[-63,178],[-10,35],[-10,31],[-31,89],[-32,97],[-14,40],[-25,73],[-1,2],[-8,26],[-27,78],[-26,77],[-52,153],[-1,1],[-11,33],[-17,49],[-11,32],[-59,172],[-58,170],[-25,66],[-18,59],[-40,118],[-52,152],[-32,94],[-28,80],[-73,213],[-155,451]],[[80046,5708],[-1,2],[-8,29],[-57,1],[-15,-1],[-91,0],[-30,0],[-81,-1],[-12,0],[-95,-82],[-19,-17],[-18,-15],[-13,-11],[-15,-9],[0,-20],[8,0],[0,-51],[-58,-1],[1,-17],[1,0],[0,-12],[-1,-7],[-15,-32],[-1,-59],[-10,-35],[-1,-58],[11,-15],[9,-11],[4,-6],[17,-22],[9,-10],[-2,-4],[-18,-46],[2,-14],[5,-17],[0,-1],[9,-60],[-4,-44],[-9,-38],[-9,-42],[-9,-49],[4,-36],[0,-1],[-3,-34],[9,-44],[10,-43],[8,-10],[15,-44],[37,-9],[17,-4],[52,-14],[15,-4],[36,16],[23,11],[22,-98],[-9,-22],[0,-20],[-19,-20],[3,-41],[-58,-75],[-12,-16],[-19,-25],[-13,-17],[-19,-22],[-16,-18],[-12,-8],[-2,-1],[1,-2],[6,-6],[3,-3],[2,-1],[1,0],[4,-3],[3,-2],[13,-5],[14,-7],[5,-10],[10,-27],[14,-24],[3,-5],[12,-17],[1,-1],[11,-12],[16,-17],[21,-20],[13,-11],[28,-21],[11,-7],[5,-3],[13,2],[14,-1],[20,-10],[7,-3],[19,-22],[17,-15],[29,-36],[49,-61],[25,-32],[32,-45],[14,-15],[53,-74],[31,-43],[14,-18],[17,-25],[18,-24],[11,-16],[12,-17],[28,-38],[4,35]],[[80366,3531],[24,-78],[6,-72],[0,-11],[0,-24],[1,-36],[-1,-46],[5,-36],[9,-29],[13,-53],[7,-31],[11,-49],[-10,-33],[-10,-48],[-3,-34],[-6,-40],[-2,-7],[-11,-23],[-12,-8],[-15,-8],[-11,-22],[0,-45],[-5,-40],[-10,-26],[-13,-11],[-9,26],[8,36],[-11,19],[-12,-11],[-46,-64],[-16,-21],[-43,-33],[-10,-25],[4,-39],[14,-30],[19,-39],[9,-26],[6,-31],[5,-44],[-1,-44],[-4,-38],[-11,-66],[-7,-30],[-17,-57],[-23,-120],[10,-52],[8,-56],[4,-34],[6,-80],[6,-66],[3,-57],[-3,-38],[-5,-42],[0,-50],[2,-37],[1,-62],[0,-36],[1,-53],[2,-37],[5,-51],[-6,-39],[-9,-23],[-23,-29],[-19,-4],[-30,7],[-13,16],[-15,11],[-15,-12],[-7,-51],[15,-39],[13,-12],[10,-26],[-4,-45],[-12,-7],[-18,15],[-13,7],[-31,-3],[-17,-16],[-9,-29],[-16,-96],[-1,-15],[-1,-37],[-2,-55],[4,-54],[2,-41],[-6,-38],[-15,-38],[-16,-21],[5,-38],[22,-9],[14,-15],[12,-17],[33,-66],[14,-3],[14,11],[13,-29],[14,-27],[16,3],[14,-9],[6,-32],[-2,-40]],[[80149,388],[-7,-23],[-2,-4],[-3,-15],[0,-1],[-1,-14],[0,-10],[3,-37],[0,-1],[-2,-40],[-4,-52],[0,-18],[12,-62],[0,-2],[-4,-5],[-34,2],[-23,1],[-2,0],[-13,0],[-89,1],[-85,1],[-20,0],[-27,1],[-261,4],[-37,-4],[-11,2],[-3,1],[-20,0],[-256,0],[-14,0],[-90,0],[-16,2],[-37,5],[-43,0],[-42,0],[-21,0],[-105,3],[-64,0],[-266,3],[-162,3],[-69,2],[-93,0],[-91,0],[-122,2],[-46,0],[-49,-3],[-80,-4],[-163,-10],[-12,-3],[-1,0],[-18,0],[-150,0],[-86,0],[-78,0],[-19,10],[-68,37],[-52,28],[-53,31],[-7,-1],[-154,-18],[-18,-2],[-83,-16],[-13,-3],[-5,-2],[-73,-23],[-4,-1],[-51,-15],[-20,-5],[-63,0],[-1,0],[-29,0],[-26,0],[-58,0],[-20,0],[-54,0],[-41,0],[-79,1],[-96,0],[-3,0],[-15,1],[-31,2],[-15,0],[-24,0],[-14,0],[-19,0],[-138,1],[-65,0],[-91,2],[-52,0],[-73,0],[-60,0],[-23,0]],[[75632,140],[-12,8],[-11,13],[1,46],[-6,8],[-11,14],[-5,5],[-11,13],[-13,13],[2,-41],[-17,0],[-11,4],[-16,-7],[-36,-14],[-14,-1],[-13,9],[-5,33],[-4,38],[2,49],[4,34],[-13,-47],[-9,-22],[-17,-15],[-9,36],[-12,1],[-12,21],[-12,-8],[-18,10],[-16,-13],[-13,7],[12,28],[-15,62],[4,70],[-9,21],[-13,-46],[-16,-24],[-12,40],[-4,50],[-20,11],[-18,-1],[-11,31],[0,1],[-13,1],[-1,-12],[-1,-26],[21,-25],[2,-44],[-18,0],[-14,-9],[-22,16],[-14,-73],[6,-43],[-15,-19],[-21,-12],[-17,7],[-15,23],[-2,48],[-15,34],[-17,-11],[-16,-24],[-10,-24],[-13,-51],[-7,31],[0,38],[-14,-13],[-17,30],[-1,38],[-14,11],[-17,9],[-12,-26],[-2,36],[-8,36],[7,41],[1,44],[-15,13],[-12,-19],[-6,36],[13,54],[-18,34],[-4,33],[8,46],[-16,11],[-16,-6],[3,43],[7,41],[2,56],[-16,22],[-6,43],[6,39],[1,41],[-16,10],[8,35],[-2,52],[5,33],[7,-37],[21,17],[13,50],[10,40],[11,63],[3,78],[-12,4],[3,36],[7,29],[-20,21],[5,38],[-15,19],[11,33],[5,36],[14,32],[0,34],[-12,-24],[-14,-1],[7,34],[-2,38],[-24,1],[5,36],[-3,44],[0,50],[15,7],[3,36],[-9,50],[13,33],[-6,36],[-16,-19],[-13,34],[-14,-13],[-12,9],[-14,3],[4,36],[-17,47],[14,43],[9,30],[-11,22],[-12,-18],[-11,-38],[2,44],[-16,5],[-20,10],[-23,3],[5,37],[1,34],[-17,20],[2,37],[15,36],[-7,50],[-10,27],[21,-3],[16,-11],[10,27],[-4,48],[-20,9],[-4,43],[-14,8],[-11,-10],[-14,7],[16,32],[8,29],[-19,11],[-16,30],[-15,16],[3,38],[12,-5],[12,9],[-4,46],[-13,0],[-16,4],[-4,34],[20,18],[12,8],[10,26],[9,25],[-17,15],[-10,33],[7,42],[-11,39],[-20,52],[-13,32],[-16,-14],[-12,-3],[-23,28],[-12,0],[-1,-42],[3,-36],[-14,0],[-13,-16],[-12,-30],[-11,26],[2,38],[6,57],[0,139],[0,44],[3,88],[-11,37],[-13,14],[-11,-14],[3,-35],[8,-28],[-14,-18],[-12,-25],[-9,50],[4,43],[-23,-12],[-18,5],[-2,36],[-9,47],[-9,44],[-6,42],[-14,3],[-1,-49],[-14,-20],[-10,22],[4,40],[-6,32],[-12,4],[-15,0],[-10,-20],[-17,33],[-23,-14],[-11,25],[1,39],[-12,25],[-20,-13],[-11,5],[-13,37],[0,51],[-8,29],[-16,-5],[-13,16],[-13,24],[-14,-18],[-7,-39],[-17,-19],[-1,72],[-13,16],[-5,-36],[-17,0],[-12,-9],[-12,-14],[-4,36],[-20,-9],[-12,-9],[-13,53],[-14,12],[-10,-41],[2,-39],[-5,-34],[-13,29],[-7,36],[-18,-32],[-22,-19],[-12,10],[2,39],[-6,45],[-15,-25],[-1,-45],[-13,-25],[9,-43],[-7,-29],[-21,30],[-13,27],[-22,-19],[-18,10],[-11,-23],[-5,-42],[-42,75],[-19,15],[-19,1],[-15,-10],[-17,-35],[-13,-9],[-14,25],[4,41],[20,7],[16,36],[-2,40],[-18,14],[-16,-11],[-11,-15],[-11,-35],[-11,-39],[-21,-16],[-13,4],[9,28],[-8,41],[-29,29],[-12,32],[-2,47],[-15,64],[-14,29],[-18,-25],[-15,21],[-16,-6],[-17,6],[-14,33],[-6,50],[16,54],[6,55],[-15,46],[-5,57],[-22,21],[-17,-14],[-5,-33],[-8,-32],[-22,-14],[-16,7],[-8,66],[-16,54],[-15,5],[-16,-26],[-26,11],[-7,29],[-11,39],[-11,-21],[2,-78],[-8,-46],[-20,67],[-14,33],[-19,2],[-10,-16],[-15,-1],[-12,9],[27,42],[82,125],[17,23],[18,26],[91,132],[3,4],[12,17],[14,20],[13,19],[88,126],[79,112],[38,55],[110,170],[12,18],[2,3],[13,20],[37,57],[48,73],[81,125],[67,104]],[[88101,10007],[-9,-36],[-11,-36],[-13,-38],[-14,-38],[-17,-56],[-14,-40],[-11,-30],[-37,-106],[-18,-55],[-7,13],[-3,6],[-15,24],[-10,13],[-3,2],[-15,17],[-19,22],[-18,22],[-20,22],[-13,16],[-5,4],[-9,11],[-16,18],[-20,23],[-8,9],[-3,4],[-12,13],[-2,3],[-12,-15],[-8,-29],[-14,-54],[-11,-21],[0,-1],[-17,-24],[-9,-10],[-2,-3],[-14,-8],[-19,-9],[-8,-4],[-51,-13],[-22,-7]],[[87572,9616],[-35,230],[-15,95]],[[87522,9941],[21,-35],[12,129],[-2,4],[-19,43],[29,89],[18,68],[22,-20],[20,-19],[38,-12],[20,28],[47,-22],[20,-8],[28,-10],[36,-53],[35,56],[26,15],[10,6],[35,-62],[57,-19],[-7,-71],[1,-79],[23,25],[13,79],[19,32],[35,20],[34,-43],[5,-49],[3,-26]],[[88850,13029],[-16,6],[1,18],[-48,16],[-20,-140],[-23,-16],[-15,-15],[-4,-4],[10,-57],[10,-47],[10,-55],[1,-2],[39,-90],[10,-24],[16,-42],[30,-69],[0,-1],[-74,-235],[-50,-161],[-17,-41],[-29,-143],[-18,-75],[-6,-28],[9,-44],[3,-15],[22,-101],[16,-80],[11,-58],[6,-23],[1,-7],[13,-25],[18,-35],[10,-21],[10,-21],[-2,-14],[-15,0],[-6,-147],[-13,-79],[-13,-24],[-4,-56],[13,-33],[18,-17],[16,-24],[23,0],[23,-30],[-1,-24],[26,-35],[14,-22],[12,-15],[14,-21],[14,-16],[11,-18],[5,-8],[-6,-79],[-2,-20],[-1,-21],[-4,-34],[-10,-66],[-13,-49],[-13,-40],[-10,-30],[-16,-47],[-1,-4],[-9,-28],[-10,-29],[-9,-29],[-10,-19],[-4,-5],[-12,-15],[-10,-17],[-4,-9],[-7,-14],[-11,-24],[-14,-44],[-8,-47],[-6,-33],[-8,-40],[-13,-66],[0,-36],[2,-50],[-13,-36],[-1,-4],[-8,-26],[-9,-26],[-16,-3],[-10,-2],[-8,-1],[-6,17],[-13,48],[-32,47],[-29,48],[-8,2],[-32,5],[-6,0]],[[88511,9985],[-30,22],[-37,15],[-14,80],[-24,59],[-59,112],[13,24],[29,56],[-8,36],[-9,43],[-23,91],[-33,38],[16,-114],[-8,-56],[-4,-30],[-13,-58],[-2,-5],[-20,-53],[-34,5],[-36,-9],[-39,77],[6,-90],[-28,-9],[-28,-10],[-6,-2],[-28,-6],[-30,4],[-40,24],[-44,17],[-30,10],[-20,35],[-22,-1],[-1,2],[-27,-3],[-18,2],[-34,5],[-7,-6],[-29,-9],[-37,-24],[-11,9],[-32,26],[-48,7],[-33,33],[-11,-3],[-10,-2],[-73,70],[-27,94],[-10,75],[-3,49],[-32,46],[-19,-13],[-40,37],[-49,105],[-7,3],[-13,33],[-17,101],[-8,45],[-34,1],[-81,147],[41,105],[-25,57],[-35,52],[-37,26],[-24,37],[2,107],[23,84],[26,66],[20,121],[62,31],[10,107],[4,96],[9,133],[8,161],[12,90],[31,-12],[17,-110],[44,21],[-22,59],[35,61],[4,-2],[44,-22],[45,-75],[37,-30],[-5,-85],[-11,-157],[35,-97],[34,7],[35,8],[27,-48],[16,-74],[28,35],[4,-9],[37,-87],[20,-130],[13,-105],[-12,-110],[26,-34],[13,128],[35,52],[-42,61],[-9,99],[16,114],[-25,11],[22,122],[-4,107],[29,4],[8,61],[20,32],[-13,117],[-26,-65],[-22,-58],[-37,-115],[-13,-80],[-24,-52],[-2,5],[-26,84],[-32,-1],[10,104],[-39,-47],[-22,-15],[-22,49],[12,80],[21,132],[-6,121],[-19,14],[-21,-25],[-41,40],[-84,123],[-8,74],[-16,-12],[-1,-83],[-14,-28],[-17,-33],[-70,91],[-59,79],[1,63],[-17,17],[-15,-39],[-10,-46],[-27,-265],[-27,-12],[-10,177],[-22,207],[-55,-33],[-15,170],[58,22],[-6,56],[7,253],[-5,36],[-49,20],[3,74],[0,19],[14,426],[1,31],[2,45],[1,37],[2,54],[1,30],[31,5],[8,115],[12,157],[1,133],[42,5],[27,-32],[10,-115],[55,-124],[22,-7],[76,0],[82,38],[10,-202],[97,-99],[-13,-52],[18,-42],[55,-14],[-9,101],[42,68],[138,103],[-2,83],[6,284],[-17,40],[-27,-19],[-37,38],[-36,4],[-61,-14],[-43,-13],[-29,36],[-45,-20],[-30,35],[19,78],[5,3],[36,21],[66,-6],[44,14],[45,-7],[40,-16],[33,-32],[35,-35],[50,-55],[29,-95],[69,-53],[43,-67],[77,-126],[84,-157],[33,-61],[56,-103],[76,-109],[41,-41],[41,-41],[41,-35],[41,-34],[39,-31],[40,-30],[27,-21],[28,-17],[26,-21],[27,-17],[26,-17],[81,-54],[54,-28],[43,-20],[31,-37],[-3,-168],[5,-56],[-38,-18]],[[91410,630],[34,50],[12,-97],[37,25],[17,-53],[30,4],[-3,116],[40,28],[32,4],[34,-37],[7,-61],[12,37],[13,41],[13,-113],[-16,-59],[55,1],[5,109],[1,111],[1,0],[32,-11],[34,-2],[42,20],[19,29],[14,151],[36,22],[38,-138],[9,-158],[-17,-71],[-15,-86],[8,-120],[14,-34],[-13,0],[-70,4],[-27,-1],[-271,-6],[-40,0],[-4,-2],[-78,-1],[-1,101],[-2,55],[-1,14],[-19,24],[-3,4],[-9,100]],[[91410,630],[-29,-32],[3,-100],[-9,5],[-58,30],[-15,76],[-38,59],[-41,-43],[1,79],[1,43],[16,108],[35,-89],[26,26],[31,-40],[-25,135],[-17,93],[47,35],[10,14],[39,55],[25,-72],[6,-66],[2,-16],[28,-8],[4,-49],[4,-48],[-39,-47],[-10,-37],[-12,-44],[15,-67]],[[91949,1925],[-26,-51],[-14,161],[-4,84],[28,-30],[40,-72],[10,-75],[-34,-17]],[[91831,3140],[-9,-65],[36,17],[-1,-19],[-5,-58],[-8,-44],[-4,-26],[24,-104],[0,-126],[-20,30],[-28,6],[-31,4],[-43,-22],[-2,73],[-1,101],[-33,-32],[-34,90],[-10,25],[-11,47],[-27,110],[43,6],[16,2],[3,-68],[10,1],[14,2],[-2,58],[-3,70],[-35,60],[-24,41],[1,19],[3,81],[29,90],[43,-50],[31,-77],[12,-36],[14,-46],[27,-35],[20,-82],[7,-29],[-2,-14]],[[91872,3871],[-131,-149],[-42,121],[-10,145],[-9,131],[14,375],[5,143],[133,21],[37,-270],[2,-347],[1,-170]],[[89559,335],[-2,79],[1,82],[-2,558],[-1,271],[2,196],[11,107],[-4,230],[-6,759],[0,573],[1,398],[5,683],[0,2],[12,8],[45,29],[57,35],[37,23],[78,48],[24,18],[9,99],[53,44],[17,7],[18,7],[75,27],[26,41],[51,55],[33,-48],[34,41],[45,-27],[12,-7],[43,277],[-20,160],[-11,72],[-15,51],[-40,93],[-28,92],[-59,202],[-13,153],[-5,62],[-6,34],[-14,7],[-55,27],[-12,4],[-33,28],[-49,41],[-20,16],[-10,24],[-2,5],[-11,29],[-6,16],[-13,32],[-210,540],[-31,82],[-31,79],[-44,116],[-174,453],[-8,22],[-6,3],[-96,39],[-5,2],[-67,36],[-18,10],[-49,20],[-13,6],[-62,26],[-92,43],[-18,8],[-21,9],[-28,17],[-40,14],[-24,34],[-79,74],[-15,14],[-84,79],[0,3],[-110,836],[0,1],[-8,53],[-6,51],[-9,65],[-15,112],[-3,38],[-11,66],[-5,34],[-6,42],[-6,54],[-2,15],[-5,37],[-7,50],[-6,46],[-7,37],[-7,33],[-9,67],[-9,64],[-1,37],[-12,66],[-1,50],[-8,37],[-11,52],[1,41],[-6,44],[-8,72],[-7,42],[-3,50],[24,83]],[[88333,10102],[40,-31],[30,-74],[39,-52],[27,-65],[27,67],[15,38]],[[88850,13029],[-8,-135],[4,-111],[-32,-41],[49,-59],[24,56],[2,5],[28,36],[-4,-75],[19,6],[20,29],[66,-20],[44,-14],[5,120],[-73,29],[-72,19],[5,65],[22,46],[-15,176],[-8,125],[21,18],[25,-27],[116,-75],[267,-133],[31,-63],[21,19],[39,-46],[28,-31],[4,-5],[106,-111],[111,-92],[133,-118],[53,-62],[-3,-17],[-11,-67],[13,-94],[15,-79],[-18,-79],[-26,38],[-13,56],[-38,25],[-34,22],[35,-111],[20,-78],[-81,-186],[5,88],[-26,-23],[-20,-47],[-30,-57],[-28,-34],[-37,18],[23,-135],[-27,-10],[8,-74],[-36,7],[2,-82],[29,-17],[-10,-64],[24,-6],[17,79],[29,9],[27,-43],[1,-92],[-16,-65],[38,-46],[-1,-79],[-34,-19],[-12,-74],[-19,-34],[-30,-86],[-31,70],[-6,-121],[-25,-46],[2,-77],[27,64],[24,46],[18,-68],[-37,-80],[-25,-52],[-34,-18],[7,-102],[29,47],[25,35],[38,34],[1,-77],[25,64],[31,16],[1,133],[-31,76],[30,1],[22,38],[27,91],[7,86],[27,-62],[27,-16],[21,130],[-45,-33],[-12,85],[3,91],[-30,0],[8,164],[-24,75],[42,27],[23,31],[-18,49],[22,43],[49,177],[32,-33],[24,-34],[31,-33],[33,-93],[73,-46],[47,-52],[42,-113],[27,-78],[29,-72],[-44,-44],[-25,49],[-9,-82],[36,-98],[-23,-36],[14,-73],[33,-49],[-14,-136],[-13,-105],[38,71],[23,-43],[-1,-116],[51,-82],[38,4],[36,44],[-34,70],[-31,-29],[-16,37],[-13,97],[-4,141],[-9,134],[-25,44],[-6,70],[31,18],[29,-28],[25,-27],[-6,-60],[29,30],[8,56],[-7,99],[-25,52],[-13,81],[6,121],[24,31],[15,77],[-28,-3],[-35,-42],[-16,-60],[-15,51],[28,152],[24,-24],[19,57],[-16,48],[-29,55],[20,64],[-33,22],[-20,68],[-26,-59],[6,-87],[-32,-34],[-37,87],[-26,30],[15,123],[-2,90],[-27,-83],[-21,-69],[-30,6],[-17,129],[4,102],[-32,88],[9,35],[26,99],[36,54],[169,97],[74,42],[34,27],[73,101],[50,104],[38,105],[30,65],[47,118],[65,24],[40,5],[34,1],[29,-5],[128,-40],[30,-24],[44,-34],[61,-90],[73,-150],[15,-95],[19,-116],[16,-122],[12,-112],[9,-90],[7,-74],[7,-51],[4,-80],[8,-80],[6,-64],[8,-88],[8,-100],[8,-88],[41,-400],[15,-124],[7,-63],[12,-112],[8,-77],[9,-89],[14,-152],[12,-123],[12,-134],[7,-68],[8,-92],[14,-103],[2,-72],[5,-52],[12,-103],[7,-112],[-3,-116],[20,-132],[19,-243],[7,-110],[10,-109],[24,-243],[7,-69],[157,-1442],[68,-472],[36,-260],[24,-176],[43,-319],[23,-171],[10,-79],[37,-295],[17,-100],[10,-91],[50,-300],[12,-99],[18,-113],[88,-545],[95,-495],[24,-129],[149,-904],[123,-982],[71,-568],[11,-142],[70,-952],[-26,0],[-14,0],[-13,0],[-15,0],[-14,0],[-18,0],[-29,0],[-22,0],[-20,0],[-53,0],[-71,0],[62,32],[22,80],[-28,4],[-12,-4],[-11,-3],[-19,-34],[-3,29],[-4,50],[-42,20],[-33,-55],[-22,36],[-2,2],[-5,159],[20,88],[-20,30],[-11,17],[-6,10],[12,46],[8,18],[14,33],[46,-121],[61,-66],[-22,63],[-48,133],[-14,108],[-2,20],[34,-29],[11,-27],[12,-29],[27,-36],[44,-60],[-1,31],[-2,63],[-13,38],[-4,12],[16,97],[-23,108],[-6,33],[-25,169],[-3,12],[-22,71],[-21,23],[-24,70],[43,44],[22,59],[42,88],[3,6],[-27,108],[-35,-11],[0,78],[14,91],[-21,55],[-31,-17],[-20,40],[15,94],[6,100],[-27,55],[-52,71],[-32,7],[-9,88],[-29,4],[9,120],[-21,44],[-27,58],[34,130],[40,65],[-8,46],[-4,23],[-42,13],[-37,22],[-23,192],[-13,31],[-11,31],[-3,109],[-9,146],[2,140],[-2,61],[-5,133],[5,129],[9,85],[21,68],[5,4],[21,18],[-21,51],[-27,75],[-14,18],[-11,13],[27,81],[-10,102],[-21,-8],[-94,539],[-40,157],[-42,411],[-84,411],[-54,78],[-4,1],[-84,14],[-44,-199],[-57,0],[-39,-43],[-50,-54],[-2,-2],[0,-114],[27,-120],[54,-78],[91,0],[52,0],[0,-213],[-59,-143],[-20,-48],[-79,-78],[-37,-220],[-63,-220],[-5,-42],[5,-99],[41,-50],[57,-149],[19,-93],[6,-27],[51,-172],[-3,-112],[-50,-39],[-31,-5],[-4,100],[-1,36],[-11,21],[-14,29],[-8,114],[-30,-60],[-27,-39],[-12,-22],[-20,-37],[-26,-31],[-7,-8],[-21,14],[11,-121],[14,-127],[5,-47],[-50,-59],[-1,-8],[-9,-108],[-5,-31],[-10,-70],[-35,8],[-67,-141],[4,-9],[25,-68],[28,-77],[0,-15],[-1,-38],[-2,-62],[9,-37],[8,-29],[-19,-123],[-3,-21],[-1,-21],[-2,-79],[4,-27],[13,-73],[26,-80],[-37,-45],[-30,-87],[6,-124],[35,-66],[-3,-78],[-2,-40],[3,-50],[3,-60],[5,-25],[20,-93],[-15,-60],[-8,-28],[49,-120],[9,-104],[-57,-173],[-22,-66],[-51,-202],[-1,-79],[-2,-78],[10,-102],[30,-103],[3,-42],[1,-27],[2,-31],[16,-139],[27,-26],[27,-54],[35,-51],[-33,0],[-104,-2],[-51,-1],[-80,0],[-1,0],[-17,0],[-19,1],[-10,0],[-32,2],[-36,0],[-9,69],[-11,78],[37,137],[-9,68],[-4,29],[-12,87],[-16,64],[0,1],[-22,32],[-24,13],[-26,3],[-19,78],[-54,206],[-110,31],[-12,105],[-28,113],[-14,84],[-1,5],[-32,8],[-7,96],[-3,24],[-9,94],[-36,48],[-34,24],[-34,30],[-22,30],[-17,23],[4,58],[3,43],[8,122],[31,109],[-9,10],[-10,11],[-9,10],[-27,-95],[-18,-64],[-5,-133],[-9,-72],[-3,-23],[-2,-10],[40,-73],[22,-41],[38,-27],[22,-4],[6,-1],[1,-58],[0,-77],[1,-134],[18,-126],[5,-36],[4,-31],[2,-24],[8,-71],[41,-27],[2,-74],[1,-41],[6,-65],[12,-130],[-11,-70],[17,-105],[23,-23],[44,-19],[9,-15],[19,-31],[19,-43],[-9,-70],[-18,-83],[-10,-44],[-14,0],[-16,0],[-47,-1],[-53,-2],[-49,0],[-12,0],[-94,0],[-48,0],[-96,0],[-49,0],[-74,0],[-98,0],[-25,0],[-22,0],[-19,0],[-69,1],[-13,0],[-34,2],[-73,0],[-28,0],[-17,-1],[-13,-2],[-61,0],[-7,0]],[[38074,5742],[20,-39],[20,-6],[16,0],[14,-7],[14,-21],[16,-31],[9,-25],[6,-48],[1,-36],[7,-47],[-6,-34],[-12,-8],[-11,-17],[-12,-31],[-7,-39],[-2,-15],[-2,-27],[-1,-35],[-3,-37],[-21,-25],[-1,-35],[4,-44],[0,-35],[-1,-63],[-8,-28],[-10,-38],[-3,-36],[-7,-38],[-4,-20],[-4,-16],[-7,-54],[0,-3],[7,-46],[-5,-38],[-9,-26],[-11,-22],[-3,-36],[-2,-41],[-1,-49],[-7,-31],[-12,-13],[-11,-9],[-3,-2],[-12,-13],[-6,-36],[-8,-27],[-17,-20],[-12,-19],[-10,-18],[-40,-24],[-15,-4],[-6,-33],[-3,-11],[-5,-19],[-10,-23],[-14,3],[-10,14],[-1,0],[-17,19],[-11,-17],[-9,-26],[-9,-46],[-9,-28],[-11,-6],[-5,-2],[-5,-35],[4,-40],[-2,-38],[-7,-43],[2,-41],[9,-23],[13,-26],[3,-36],[-3,-36],[-3,-43],[-7,-39],[-14,8],[-10,38],[-9,26],[-20,-5],[-14,-3],[-12,12],[-9,27],[-12,21],[-12,17],[-15,16],[-1,3],[-7,23],[-16,23],[-13,-13],[-2,-6],[-7,-22],[-13,-18],[-9,-37],[-7,-37],[-13,-18],[-12,-5],[-13,-12],[-13,-7],[-12,-7],[-11,-27],[-16,-25],[-13,-29],[-24,29],[-14,-12],[-6,-35],[-9,-25],[-12,-18],[-29,-27],[-12,-17],[-10,-25],[-10,-24],[-12,-11],[-16,33],[-12,28],[-13,-4],[-8,-8],[-4,-4],[-15,-14],[-9,-26],[-11,-23],[-16,-19],[-14,-1],[-11,-37],[-11,-21],[-17,-9],[-25,8],[-26,32],[-18,15],[-30,9],[-4,2],[-15,-15],[-12,6],[-7,34],[-2,38],[6,38],[1,5],[6,28],[-10,70],[-11,20],[-8,17],[-2,44],[-6,30],[-8,27],[-14,4],[-12,8],[-24,-53],[-11,-16],[-11,8],[-12,14],[-12,-7],[-20,13],[-14,8],[-6,31],[11,20],[-9,44],[-8,26],[-6,17],[-14,28],[-14,-2],[-8,-12],[-5,-8],[-14,8],[-9,24],[-13,16],[-23,47],[-4,9],[-6,15],[-20,45],[-11,19],[-4,7],[-12,2],[-13,11],[-19,8],[-12,-10],[-39,6],[-21,-6],[-14,4],[-14,-1],[-17,-18],[-22,-14],[-16,-9],[5,-20],[2,-8],[11,-39],[7,-29],[8,-26],[3,-35],[-7,-47],[-12,-18],[-12,-11],[-11,-16],[-11,-28],[-13,-35],[-11,-26],[-13,-4],[-12,2],[-11,24],[-12,25],[-10,-21],[-7,-41],[-3,-36],[2,-38],[2,-36],[-1,-35],[4,-42],[2,-43],[5,-36],[0,-40],[-1,-39],[-2,-40],[-4,-40],[-8,-38],[-10,-26],[-13,-21],[-12,-20],[-7,-34],[-8,-27],[-19,-13],[-11,-14],[-4,-37],[0,-37],[-11,-35],[-10,-39],[5,-32],[-11,-13],[-11,-31],[-5,-32],[11,-18],[-1,-35],[-11,-15],[-22,14],[-11,-16],[-5,-41],[-10,-18],[-10,-25],[-11,-26],[-13,-28],[0,-57],[6,-33],[5,-39],[8,-29],[5,-31],[6,-32],[-12,-51],[-10,-41],[-4,-37],[-8,-32],[-7,-25],[-33,-51],[-1,-57],[7,-46],[4,-39],[4,-38],[0,-62],[1,-48],[4,-34],[5,-52],[5,-51],[0,-35],[9,-32],[13,-1],[12,2],[15,-10],[31,-56],[14,-24],[3,-35],[-5,-60],[4,-37],[7,-36],[-3,-33],[-3,-37],[3,-34],[3,-38],[0,-36],[4,-39],[7,-31],[4,-34],[6,-46],[0,-38],[-5,-35],[-3,-37],[0,-39],[1,-48],[-9,-26],[-6,-34],[3,-37],[8,-24],[8,-27],[19,-32],[5,-34],[-9,-24],[-10,-23],[-1,-36],[2,-37],[5,-35]],[[36320,584],[-32,4],[-63,8],[-47,6],[-57,6],[-36,0],[-12,1],[-1,0],[-28,2],[-12,1],[-18,1],[-41,6],[-69,7],[-72,6],[-1,0],[-65,11],[-15,2],[-42,8],[-6,1],[-40,9],[-48,7],[-58,10],[-34,7],[-30,5],[-10,2],[-29,6],[-7,2],[-28,6],[-3,0],[-16,6],[-44,8],[-34,3],[-1,1],[-56,7],[-45,5],[-59,-2],[-20,-1],[-32,1],[-34,0],[-38,0],[-48,2],[-70,0],[-130,-17],[-33,-3],[-12,-2],[-6,-2],[-17,-3],[-1,0],[-25,-2],[-5,-1],[-16,-5],[-28,-3],[-17,-3],[-15,-2],[-7,0],[-27,-4],[-24,-4],[-18,-2],[-62,-8],[-5,0],[-50,-7],[-2,0],[-21,0],[-29,0],[-17,1],[-16,2],[-73,0],[-38,1],[-17,3],[-30,0],[-17,3],[-37,7],[-15,4],[-18,3],[-19,-3],[-27,-5],[-114,-18],[-83,-13],[-20,-4],[-12,-2],[-39,-5],[-42,-5],[-36,-5],[-21,-2],[-20,-2],[-7,-1],[-4,-2],[-1,-1],[-5,3]],[[33641,629],[-45,162],[-15,51],[-54,189],[-16,55],[-12,42],[-23,77],[-8,29],[-11,39],[-19,70],[-11,38],[-11,38],[-2,7],[-11,36],[-25,88],[-38,134],[-30,107],[-14,50],[-9,31],[-20,69],[-42,145],[-21,79],[-8,30],[-16,52],[-17,58],[-24,83],[-32,109],[-36,119],[-13,44],[-8,26],[-10,34],[-16,53],[-9,29],[-9,32],[-18,51],[-41,141],[-8,27],[-23,79],[-11,40],[-8,26],[-21,71],[-10,36],[-23,77],[-8,25],[-5,20],[-4,12],[-80,273],[-8,31]],[[32738,3743],[123,391],[17,54],[12,-2],[1,7],[12,16],[-5,21],[-9,-22],[-4,2],[4,15],[21,65],[10,30],[27,88],[18,57],[11,20],[26,49],[10,19],[27,51],[16,66],[15,63],[7,28],[8,33],[34,141],[11,47],[28,120],[17,76],[-13,14],[-1,1],[-62,71],[-10,11],[-2,-3],[-56,-81],[-20,115],[-38,-32],[-29,-29],[-9,0],[-28,1],[-39,-44],[0,-43],[14,1],[0,-56],[14,12],[3,-22],[7,-4],[1,4],[1,5],[0,9],[3,1],[7,0],[5,-36],[6,-17],[1,-1],[-8,-5],[-66,-45],[-16,-11],[-6,41],[8,14],[-13,50],[3,3],[-10,38],[-10,-16],[-2,13],[-12,41],[-6,33],[0,21],[-1,3],[-4,12],[-12,24],[-13,4],[-20,-10],[-10,-11],[-4,12],[-10,-17],[-4,11],[-17,-17],[15,-28],[-3,-16],[0,-40],[4,-48],[7,-35],[-17,-5],[-1,-20],[-2,-38],[0,-35],[-8,-60],[-3,-40],[11,-20],[8,-29],[-2,-47],[-11,-37],[-14,-18],[-13,-30],[-12,14],[-18,51],[-12,27],[3,38],[-14,18],[-15,-17],[-11,-26],[-18,-27],[-11,-20],[-25,-81],[-7,-46],[9,-68],[8,-37],[6,-45],[-14,-25],[-14,20]],[[32523,4473],[-55,190],[-16,57],[-12,40],[-32,113],[-21,72],[-8,27],[-13,46],[-14,50],[-9,29],[-19,68],[-31,108],[-14,47],[-70,243],[-29,101],[-10,35],[-3,11],[-5,16],[-10,35],[-53,184],[-13,48],[-16,53],[-11,38],[-7,28],[-22,75],[-45,155],[-8,28],[-10,35],[-34,118],[-4,15],[-20,70],[-18,64],[-29,99],[-10,34],[-15,52],[-9,32],[-13,47],[-10,32],[-13,47],[-41,146],[-23,79],[-12,44],[-52,187],[-14,50],[-13,46],[-39,143],[-22,77],[-11,42],[-24,85],[-54,195],[-21,75],[-8,27],[-16,59],[-35,128],[-27,95],[-19,70],[-50,178],[-15,55],[-79,286]],[[18416,3601],[-46,134],[-6,-17],[-3,-6],[-3,-6],[-3,-7],[-2,4],[1,6],[-3,6],[-7,9],[-3,-1],[-3,-11],[0,-9],[2,-23],[5,-51],[24,2],[5,-7],[5,-12],[2,-14],[6,-46],[17,30],[12,19]],[[18416,3601],[74,-217],[2,-7],[12,-34],[-7,-10],[-18,-26],[-26,-36],[-11,-17],[-8,-11],[-10,-14],[-5,-8],[-8,-17],[-6,0],[-25,1],[-27,1],[-55,2],[-1,0],[-20,1],[-18,-2],[-24,-56],[-13,59],[-25,118],[-30,-35],[-13,-15],[-11,-14],[-48,-56],[-41,-48],[-32,-45],[-16,-16],[-25,-27],[3,-67],[2,-65],[-24,0],[-22,0],[-17,2],[-18,6],[-18,5],[-14,4],[-15,3],[-15,1],[-14,-1],[-14,-2],[-28,-2],[-14,-1],[-16,-1],[-12,-4],[-13,-7],[-12,-16],[-10,-17],[-22,-38],[-12,-21],[-13,-18],[-11,-14],[-11,-16],[-12,-22],[-12,-13],[-18,-17],[-19,-20],[-20,-28],[-11,-15],[-19,-30],[-78,-117],[-18,-26],[-31,-49],[-29,-28],[-18,-36],[-31,-39],[-12,-15],[-23,-33],[-33,-41],[-12,-18],[-11,-15],[-16,-23],[-13,-8],[-13,-28],[-23,-25],[-14,-12],[-12,-2],[-17,7],[-6,3],[-17,25],[-4,-1],[-9,-2],[10,-87],[-8,-30],[-2,-31],[0,-5],[-19,-24],[-21,-26],[-12,-32],[-14,-20],[-12,-16],[-17,-2],[-19,-25]],[[16976,1877],[-2,0],[-6,-1],[-38,0],[-41,-1],[-13,-1],[-24,0],[-14,0],[-41,1],[-30,1],[-14,0],[-17,0],[-22,0],[-4,0],[-14,0],[-15,0],[-22,0],[-15,0],[-16,1],[-23,0],[-21,0],[-20,0],[-49,1],[-41,0],[-13,0],[-20,0],[-24,0],[-23,0],[-4,0],[-13,0]],[[16377,1878],[-22,89],[-39,193],[-6,30],[-9,40],[-23,118],[-33,167],[-15,73],[-7,34],[-6,34],[-6,30],[-2,19],[-9,88],[-5,80],[-4,48],[-7,87],[-5,55],[-3,35],[-6,71],[-7,76],[-3,33],[-9,99],[-7,85],[-4,54],[-8,83],[-9,103],[-4,38],[-4,53],[-5,49],[-11,125],[-12,141],[-11,116],[-11,127],[-13,143],[-22,250],[-4,45],[-15,162],[-4,38],[0,1],[-12,134],[-5,58],[-4,36],[-8,65],[-18,149],[-22,200],[-14,132]],[[24536,3349],[0,-38],[3,-36],[3,-36],[0,-36],[-2,-35],[-3,-41],[-5,-38],[-1,-65],[-2,-36],[-4,-36],[-8,-30],[-6,-31],[-5,-34],[-1,-38],[0,-38],[-7,-48],[-5,-32],[-8,-39],[-4,-35],[-12,-23],[0,-1],[-12,-9],[-9,-7],[-5,-5],[-25,-23],[-5,-5],[-7,-7],[-10,-19],[-1,0],[-12,-4],[-11,25],[-14,20],[-7,-27],[-11,-20],[-12,-28],[-13,-3],[-18,-5],[-20,3],[0,-43],[1,-16],[-45,1],[-67,1],[-28,1],[-26,0],[-23,1],[-28,0],[-12,-1]],[[24049,2433],[-39,0],[-41,1],[-24,0],[-27,1],[-101,2],[-96,2],[-84,1],[-3,0],[-50,1],[-13,0],[-21,-1],[-2,0],[-46,-1],[-16,0],[-113,5],[-46,1],[-71,1],[-24,0],[-142,1],[-55,1],[-29,0],[-24,0],[-18,1],[-52,3],[-62,3],[-22,2],[-22,1],[-12,0],[-9,0],[-5,1],[-17,0],[-67,3],[-17,1],[-38,1],[-26,2],[-29,1],[-14,1],[-172,11],[-15,1],[-22,1],[-13,1],[-48,3],[-83,5],[-29,2],[-3,0],[-6,1],[-11,1],[-50,3],[-50,4],[-34,2],[-119,8],[-1,0],[-77,11],[-61,3],[-56,2],[-20,1],[0,4],[-11,0],[-35,2],[-34,1],[-26,1],[-36,2],[-54,2],[-15,1],[-16,0],[-12,1],[-15,1],[-21,1],[-16,0],[-18,1],[-47,2],[-26,1],[-17,1],[-6,1],[-151,9],[-33,2],[-22,2],[-135,7],[-34,2],[-32,2],[-83,4],[-7,0],[-21,1],[-16,-90],[-17,-92],[-8,-45],[-41,-224],[-7,-41],[-17,-91],[-8,-47],[-13,-69],[-9,-53],[-77,1],[-13,0],[-21,1],[-19,0],[-16,0],[-60,1],[-14,0],[-13,0],[-15,0],[-56,1],[-22,0],[-25,0],[-15,0],[-45,1],[-26,0],[-65,1],[-13,0],[-13,0],[-61,1],[-177,2],[-13,-2],[-38,0],[-35,0],[-11,1],[-1,0],[-1,0],[-25,0],[-14,0],[-10,1],[-16,0],[-18,0],[-4,0],[-12,0],[-4,-2],[-1,-2],[-3,-4],[-6,-1],[-33,9],[-16,0],[-28,0],[-24,0],[-27,-1],[-12,0],[-9,0],[-42,0],[-2,0],[-2,0],[-1,0],[-85,-1],[-74,0],[-9,0],[-41,0],[-17,0],[-17,1],[-18,0],[-3,0],[-7,0],[-11,1],[-8,0],[-79,4],[-54,1],[-94,2],[-6,0],[-1,0],[-23,0],[-27,0],[-22,0],[-47,1],[-73,0],[-26,1],[-39,1],[-10,0],[-20,0],[-3,0],[-71,-2],[-13,0],[-14,-1],[-8,-1],[-27,-1],[-8,0],[-10,-1],[-26,0],[-6,0],[-21,-1],[-1,0],[-37,-1],[-27,0],[-2,0],[-3,4],[-5,1],[-27,3],[-3,1],[-3,0],[-30,0],[-2,0],[-1,-1],[-1,0],[-10,0],[-24,0],[-59,0],[-7,0],[-42,-1],[-17,0],[-20,0]],[[18130,1845],[15,45],[10,31],[30,92],[100,303],[44,135],[16,32],[17,39],[17,39],[24,51],[14,32],[11,24],[67,147],[30,69],[25,58],[38,44],[20,22],[-33,114],[-5,18],[-13,47],[-34,117],[-3,11],[9,8],[17,15],[8,40],[3,34],[15,37],[12,19],[1,25],[6,12],[-2,14],[1,4],[13,7],[-6,27],[7,9],[5,12],[8,15],[23,28],[-6,21],[-6,23],[-1,8],[-1,97],[-27,0],[-11,5],[-6,-11],[-4,-6],[-22,-41],[-4,11],[-4,12],[-13,39],[-14,40],[-43,125],[-10,-15],[-23,71],[1,7],[1,6],[3,6],[-1,5],[-3,11],[0,4],[-2,-3],[-6,-18],[-7,-18],[-1,3],[-3,14],[14,28],[19,25],[12,12],[2,-1],[6,22],[5,15],[8,11],[11,15],[4,92],[-30,107],[-3,5],[-31,62],[-27,57],[-9,-21],[-12,41],[-12,36],[-10,-20],[-23,9],[-6,20],[4,13],[-10,21],[-9,32],[9,33],[-9,-20],[-15,11],[-10,22],[-12,-6],[3,-38],[15,-18],[9,-95],[3,-39],[-3,-5],[-1,-7],[2,-16],[-25,10],[-12,-8],[-14,4],[-23,7],[-18,-3],[-18,-5],[-13,16],[-15,-1],[-36,35],[1,-56],[14,5],[12,-6],[15,-8],[33,-8],[28,0],[13,-3],[14,-3],[13,-8],[7,-6],[2,-11],[2,-12],[13,-1],[3,-41],[17,-48],[10,-94],[1,-5],[1,-3],[5,0],[3,-1],[2,-7],[31,-115],[3,-11],[9,-12],[25,-10],[3,-15],[-13,-28],[-3,-8],[-11,-25],[4,-5],[4,-12],[-15,-27],[-2,-2],[4,-11],[-5,-13],[-8,27],[-3,0],[-18,-46],[0,-7],[25,-89],[4,1],[62,4],[20,-57],[-56,-97]],[[87572,9616],[-16,-123],[10,-215],[1,-18],[4,-99],[-8,-143],[-10,-158],[-15,-95],[-1,1],[-12,7],[-11,29],[-20,-3],[-11,-13],[-32,4],[-11,-13],[-15,-6],[-42,-18],[-13,-6],[-13,-6],[-20,-8],[-13,-3],[-18,5],[-40,-17],[-15,-6],[-12,-6],[-15,-6],[-13,-6],[-19,-22],[-36,-29],[-31,-14],[-8,-4],[-6,-2],[-86,-37],[-71,-30],[-258,-111],[-39,-16],[-63,-27],[-39,-16],[-9,26],[-14,42],[-12,34],[-11,36],[-60,191],[-2,9],[-25,84],[-1,5],[-3,68],[-17,51],[0,1],[-31,48],[-8,62],[-37,50],[-11,-34],[-30,17],[-20,6],[-24,158],[-11,131]],[[86229,9371],[36,57],[19,78],[-4,71],[17,64],[3,9],[39,162],[42,11],[1,75],[33,31],[1,49],[1,31],[35,27],[25,32],[18,38],[42,-33],[31,-82],[27,-2],[-2,47],[37,14],[30,-34],[8,-110],[16,-110],[1,-2],[52,-99],[24,-24],[-19,96],[-31,50],[-2,17],[-13,73],[-9,104],[31,51],[29,61],[2,164],[1,1],[59,35],[-9,90],[19,31],[25,-10],[-5,59],[7,73],[20,58],[28,28],[21,8],[26,-15],[18,-53],[18,26],[-12,79],[22,36],[36,-3],[21,15],[19,13],[146,85],[26,-4],[18,-66],[3,-3],[52,-58],[21,-31],[-50,-139],[27,-7],[64,-27],[48,8],[-15,-69],[13,-91],[4,-77],[43,-13],[38,3],[1,-64],[1,-72],[-1,-60],[3,-104],[2,-3],[15,-25]],[[86445,10226],[-39,173],[0,136],[12,76],[-12,61],[-35,48],[-8,75],[-28,11],[-3,0],[-15,2],[-23,8],[-20,3],[5,129],[1,12],[3,85],[2,72],[-14,9],[-21,11],[-13,-3],[-17,3],[-38,-3],[-55,-3],[-15,-1],[-87,0]],[[86025,11130],[13,43],[3,10],[5,17],[11,36],[9,31],[42,134],[14,32],[10,24],[4,8],[44,52],[8,27],[28,219],[-16,37],[-1,86],[-17,61],[30,31],[10,79],[-47,110]],[[86175,12167],[46,3],[100,-19],[86,-19],[2,112],[4,100],[18,720],[7,53],[28,11],[48,-5],[63,-6],[73,10],[71,-4],[37,5],[27,-15],[10,-61],[20,-3],[53,-950],[113,-46],[11,-104],[-22,-226],[-59,8],[-66,127],[-37,3],[-38,-9],[-43,-38],[-21,-12],[36,-85],[34,64],[35,-4],[28,-19],[10,-105],[5,-110],[0,-122],[33,-241],[54,-139],[15,-112],[-38,-36],[-35,-12],[-7,-6],[-43,-39],[-28,8],[-22,-52],[-34,-29],[12,-108],[-28,-82],[-19,-68],[-26,-43],[-9,-100],[-1,-9],[-39,-102],[-23,6],[-34,-22],[-50,101],[-24,-46],[-15,-62],[-48,-2]],[[86025,11130],[-10,-30],[-1,-2],[-41,-132],[-7,-26],[-62,-205],[-6,-20],[-3,-10],[-20,-67],[-8,-27],[-8,-29],[-13,-42],[-7,-27],[-9,-31],[-9,-31],[-11,-27],[-7,-34],[-10,-32],[-10,-31],[3,-40],[-8,-30],[-8,-35],[-20,-83],[-84,-364],[-58,-297],[-7,-36],[0,-1],[-16,-71],[-44,-968],[-11,-233],[-5,-105],[-9,-198],[-1,-10],[-1,-24],[-2,-38],[-2,-46],[-5,-97],[-6,-128],[-16,-337],[-7,-138],[-1,-26],[-12,-263],[-45,-1019],[-20,-435],[-29,-619],[-2,-35],[-2,-39],[-5,-113],[-29,-615],[-4,-83],[-33,-788],[-11,-285],[-45,-1033],[0,-6],[-19,-672],[-37,-679]],[[85182,338],[-255,0],[-63,0],[-144,0],[-136,0],[-30,-1],[-17,-1],[-144,-8],[-39,4],[-167,10],[-298,0],[-127,0],[-72,0],[-87,-4],[-24,1],[-72,3],[-204,0],[-15,0],[-39,0],[-12,0],[-30,0],[-16,0],[-28,1],[-104,2],[-154,0],[-39,0],[-91,0],[-28,0],[-24,0],[-43,1],[-146,3],[-41,0],[-90,0],[-33,0],[-43,0],[-50,0],[-22,0],[-134,-21],[-39,2],[-23,1],[-2,1],[-18,0],[-30,1],[-89,2],[-41,2],[-45,1],[-85,4],[-118,-4],[-43,-3],[-15,0],[-29,0],[-48,0],[-56,3],[-109,4],[-29,0],[-18,1],[-20,2],[-15,0],[-30,0],[-61,2],[-101,5],[-27,0],[-8,0],[-29,4],[-131,3],[-82,3],[-91,4],[-50,7],[-28,0],[-113,3],[-63,3],[-54,0],[-19,1],[-13,0],[-4,1],[-32,2],[-22,0],[-93,3],[-17,1],[-29,0],[-3,1]],[[84788,12540],[5,-149],[-10,-133],[41,38],[19,82],[25,47],[34,41],[36,26],[11,74],[41,11],[14,73],[24,-87],[31,-57],[1,103],[9,62],[8,45],[26,51],[32,32],[30,72],[4,121],[40,25],[31,-40],[27,-54],[32,-79],[19,-110],[-14,-72],[7,-98],[-2,-90],[-11,-88],[-10,-116],[-8,-98],[-16,-58],[-21,-23],[-27,4],[-26,-47],[-29,-51],[-2,-4],[-46,-18],[-36,-13],[-25,10],[-30,36],[-22,-51],[-45,-49],[1,-118],[16,-107],[2,-86],[-14,-56],[-40,-46],[-26,-52],[-2,-82],[-49,-53],[-39,-24],[-25,-49],[0,-126],[-18,-73],[-15,-74],[6,-130],[-17,-71],[-22,-60],[-11,-128],[-34,33],[-19,-43],[-28,-32],[-24,-24],[-12,-96],[-3,-56],[-24,8],[-24,-19],[-25,-55],[-6,-96],[-16,-13],[-16,-13],[-28,7],[-20,22],[-27,7],[-30,-13],[-30,-58],[-11,-71],[-4,-25],[-7,-54],[-17,-129],[21,-92],[19,-55],[7,-94],[18,-62],[26,-48],[16,-32],[11,-21],[-9,-88],[-34,-113],[-2,-135],[16,-65],[4,-15],[4,127],[2,20],[6,55],[12,32],[24,65],[41,5],[-13,110],[14,82],[-3,78],[-14,70],[-21,71],[-24,39],[-3,76],[3,11],[14,59],[64,36],[2,1],[55,-16],[31,62],[29,-32],[38,6],[29,-18],[0,110],[16,165],[29,27],[60,36],[55,-2],[22,30],[19,94],[41,16],[36,119],[-23,62],[-40,-43],[-27,39],[-20,37],[-19,67],[37,73],[25,-7],[24,-25],[20,3],[29,46],[21,80],[20,109],[-21,117],[22,32],[23,-13],[24,-13],[18,40],[24,23],[24,36],[27,28],[23,21],[19,65],[-9,73],[-23,72],[-6,117],[29,22],[10,8],[34,-5],[27,-29],[27,-63],[2,-72],[29,91],[30,81],[42,36],[34,19],[29,4],[41,17],[33,10],[36,8],[55,-24],[18,94],[15,77],[-11,66],[0,85],[23,106],[25,91],[-2,87],[35,80],[32,54],[25,34],[26,2],[47,-16],[45,-28],[31,-23],[34,-61],[38,10],[2,-2],[46,-38],[25,-39],[10,-50],[41,20],[29,-24],[20,-15],[13,-52]],[[75632,140],[-47,0],[-54,0],[-34,1],[-126,3],[-14,0],[-25,0],[-44,0],[-15,0],[-29,0],[-22,0],[-51,0],[-28,0],[-44,-2],[-157,-4],[-7,0],[-55,-2],[-83,-3],[-43,0],[-19,0],[-13,0],[-12,0],[-95,2],[-113,2],[-80,0],[-20,0],[-10,0],[-130,1],[-150,1],[-82,1],[-173,0],[-18,0],[-14,0],[-96,4],[-25,0],[-46,0],[-32,0],[-100,0],[-47,0],[-14,0],[-34,3],[-90,0],[-90,0],[-24,7],[-54,0],[-76,0],[-38,0],[-34,0],[-15,0],[-119,0],[-2,0],[-23,0],[-7,0],[-28,0],[-41,0],[-64,-3],[-25,-1],[-58,0],[-30,0],[-26,0],[-34,0],[-31,0],[-105,0],[-25,0],[-42,1],[-14,0],[-6,0],[-9,1],[-131,2],[-44,1],[-34,0],[-45,2],[-11,0],[-38,0],[-20,-3],[-58,-4],[-12,-1],[-34,-2],[-3,0],[-24,0],[-45,3],[-13,0],[-65,4],[-185,0],[-15,0],[-27,0],[-20,0],[-14,0],[-28,0],[-32,0],[-144,3],[-1,0],[-100,0],[-34,0],[-18,0],[-43,0],[-48,0],[-19,0],[-35,0],[-39,0],[-23,0],[-16,0],[-15,0],[-31,1],[-72,3],[-49,-3],[-31,0],[-17,0],[-71,3],[-32,0],[-116,0],[-41,0],[-24,0],[-12,0],[-18,0],[-63,3],[-47,0],[-47,-2],[-43,-1],[-24,0],[-13,0],[-81,0]],[[73049,6148],[-13,-9],[-2,-2],[-4,7],[-6,-24],[-60,-238],[-2,1],[-53,23],[-6,-34],[-23,-2],[-6,1],[-34,5],[-3,1],[-1,2],[0,47],[-44,6],[0,8],[-17,1],[-28,3],[0,17],[0,5],[-20,-46],[-11,-28],[-12,-39],[-10,-35],[-34,23],[-35,22],[-15,9],[-22,7],[-12,22],[-25,3],[-10,-24],[-10,-45],[-1,-51],[4,-48],[-8,-29],[-16,-31],[-11,8],[-1,0],[-12,14],[-7,-45],[-1,-43],[0,-51],[-13,-10],[7,-32],[15,-23],[10,-24],[2,-34],[-3,-33],[2,-45],[1,-16],[2,-49],[4,-64],[15,-1],[6,-76],[11,-127],[2,-39],[-2,-42],[0,-37],[0,-1],[1,-33],[4,-79],[2,-48],[3,-51],[6,-110],[8,0],[5,6],[2,10],[2,3],[12,-15],[7,-5],[2,-6],[0,-9],[-3,-11],[0,-5],[4,-7],[5,-9],[12,-14],[10,-14],[1,-1],[11,-16],[20,-9],[3,1],[11,2],[20,-8],[16,4],[0,37],[6,11],[12,17],[21,49],[13,1],[17,3],[16,18],[17,-1],[5,2],[9,-10],[8,-4],[5,-2],[2,0],[9,-2],[4,-8],[20,-16],[8,-10],[-1,-9],[-1,-5],[1,-12],[2,-5],[9,-6],[21,-10],[14,-5],[-4,38],[-6,45],[1,40],[11,33],[6,29],[-10,24],[17,-3],[-6,32],[21,-34],[8,32],[3,33],[9,35],[9,56],[6,31],[2,41],[34,-27],[27,-19],[26,-15],[27,-15],[14,-8],[5,35],[7,62],[1,2],[11,90],[6,54],[-28,17],[3,240],[1,39],[2,112],[0,4],[-26,-12],[-23,-12],[-14,-17],[-34,-39],[-9,-9],[56,360],[-12,4],[21,83],[32,128],[-8,40],[-2,7],[-5,27],[-1,0],[-17,4],[0,7],[3,12],[-5,8],[-13,20],[-12,19],[-3,0]],[[10715,8858],[-17,4],[-13,-9],[-5,-40],[-5,-35],[-8,-34],[-12,-34],[-3,-49],[-3,-37],[-14,-8],[-14,-12],[-13,-17],[-7,-28],[-11,-26],[-22,-40],[-27,-31],[0,-42],[0,-43],[-12,-17],[-8,-30],[-2,-36],[-9,-39],[-13,-4],[-10,-52],[-10,-20],[7,-32],[13,-32],[-2,-39],[-11,-25],[-12,-3],[-17,35],[-15,19],[-25,12],[-20,2],[-14,-2],[-16,-25],[-9,-35],[-14,-21],[-11,-28],[-20,-20],[-11,-30],[-12,-18],[-15,-3],[-110,-390],[-6,-23],[-5,-15],[-8,-28],[-7,-25],[-2,-10],[-32,-109],[-46,-161],[-31,-105],[15,-15],[18,-34],[11,-19],[9,-40],[10,-41],[5,-47],[3,-44],[2,-46],[3,-42],[-10,-32],[1,-39],[2,-35],[6,-42],[-7,-30],[-12,-16],[-12,-16],[-14,-35],[-9,-37],[-13,-26],[-17,-23],[-14,-20],[-22,-23],[-14,-26],[-15,-16],[-10,-30],[-27,-37],[-13,-15],[-12,-12],[-13,-18],[-18,-33],[-14,-27],[-13,-8],[-11,-20],[-14,-21],[-13,-11],[-13,-10],[-17,-26],[-13,-21],[-18,-18],[-19,-5],[-24,-12],[-12,-15],[-13,-6],[-13,-13],[-12,-14],[-15,-20],[-17,-7],[-19,-20],[-16,-12],[-11,-8],[-22,-20],[-17,-25],[-12,-12],[-18,-18],[-7,-8],[-5,-5],[-12,-6],[-17,-1],[-19,-16],[-15,-18],[-17,-21],[-18,-5],[-18,-22],[-18,-22],[-17,-16],[-13,-23],[-12,-14],[-19,-18],[-15,-31],[-16,-27],[-15,-15],[-18,-18],[-11,-21],[-18,-14],[-18,-22],[-18,-26],[-15,-19],[-14,-39],[-17,-38],[-14,-30],[-13,-10],[-20,-19],[-13,-17],[-15,-16],[-15,-32],[-11,-17],[-31,-45],[-13,-17],[-12,-27],[-24,-26],[-24,-36],[-26,-39],[-24,-27],[-18,-39],[-29,-40],[-33,-37],[-24,-35],[-22,-37],[-13,-24],[-16,-24],[-12,-28],[-15,-25],[-17,-32],[-20,-33],[-11,-15],[-10,-63],[-19,-119],[-6,-34],[-43,-273],[-25,-158],[-7,-46],[-14,-83],[-17,-107],[-15,-95],[-5,-32],[-18,-113],[-49,-313],[-6,-33],[-7,-47],[-26,-166],[-9,-53],[-15,-93],[-19,-125],[-42,-265],[-10,-60],[-8,-48],[-14,-91],[-7,-44],[-33,-203],[-20,-130],[-2,-13]],[[8180,1811],[-6,0],[-14,0],[-27,-1],[-21,0],[-12,0],[-32,0],[-12,0],[-29,1],[-22,2],[-64,2],[-44,0],[-110,1],[-68,0],[-27,0],[-25,0],[-57,1],[-38,0],[-18,0],[-161,1],[-54,0],[-33,1],[-16,0],[-78,0],[-5,0],[-46,0],[-61,1],[-308,2],[-18,0],[-52,0],[-46,0],[-55,1],[-12,0],[-86,0],[-129,-1],[-35,-1],[-9,0],[-55,0],[-23,-1],[-6,0],[-28,0],[-79,-1],[-16,0],[-29,0],[-46,-1],[-21,0],[-113,-1],[-23,-1],[-98,1],[-31,0],[-62,0],[-88,0],[-125,0],[-12,0],[-33,0],[-78,0],[-20,0],[-13,0],[-20,0],[-34,1],[-107,0],[-32,-1],[-22,-1],[-19,0],[-12,0],[-40,-1],[-13,-1],[-14,3],[-1,1],[-1,0],[-12,0],[-10,0],[-35,-1],[-75,2],[-144,118],[-33,26],[-88,-2],[-8,0],[-59,-1],[-31,-1],[-41,-1],[-22,0],[-67,-1],[-42,-1],[-19,-1],[-4,0],[-28,0],[-52,-1],[-113,-3],[-73,-1],[-47,-2],[-27,0],[-15,-1],[-36,-1],[-62,-1],[-2,0],[-112,-3],[-65,-2],[-104,-3],[-6,0],[-46,-1],[-13,0],[-93,0],[-22,0],[-236,0],[-4,0],[-1,0],[-108,0],[-122,-1],[-4,0],[-133,0],[-43,-1],[-22,0],[-27,0],[-27,0],[-67,0],[-34,-1],[-49,0],[-148,-1],[-97,0],[-23,0],[-41,0],[-35,-1],[-52,0],[-45,0],[-36,0],[-69,0],[-15,0],[-159,2],[-26,0],[-19,0],[-110,1],[-15,0],[-15,0],[-49,0],[-16,0],[-37,1],[-24,0],[-60,0],[-62,1],[-41,1],[-15,0],[-65,2],[-7,0],[-14,1],[-18,0],[-19,1],[-28,1],[-63,1],[-1,0],[-41,1],[-43,2],[-61,1],[-2,0],[-34,1],[-1,1],[-17,0],[-12,0],[-23,1],[-23,1],[-25,1],[-57,1],[-5,0],[-49,1],[-43,1],[-66,1],[-2,1],[-12,5],[-23,8],[-22,4],[-25,6],[-14,3],[-17,5],[-13,3],[-53,11],[-50,12],[-2,1],[-2,0],[-38,9],[-36,4],[-19,1],[-68,6],[-2,0],[-31,3],[-3,0],[-18,1],[-16,0],[-7,1],[-13,1],[-64,10],[-14,0],[-3,0],[-3,0],[-2,1],[-38,0],[-17,1],[6,84],[5,14],[14,38],[34,12],[19,32],[28,-13],[14,23],[14,14],[22,68],[29,52],[15,41],[16,51],[21,2],[17,25],[17,72],[25,31],[10,27],[6,50],[2,41],[3,15],[-1,69],[12,10],[13,-7],[3,34],[12,17],[27,-13],[24,27],[18,-7],[20,-13],[6,0],[24,-38],[13,3],[26,14],[27,21],[14,10],[24,24],[32,49],[26,29],[30,52],[34,111],[16,63],[19,27],[17,0],[35,71],[34,32],[41,-31],[53,36],[57,46],[58,79],[2,34],[22,34],[8,-48],[17,-26],[78,13],[50,102],[14,3],[61,98],[27,56],[13,38],[9,27],[72,58],[29,28],[23,8],[31,-1],[19,12],[73,77],[83,147],[15,41],[10,55],[13,54],[23,31],[30,-7],[67,30],[68,30],[17,25],[40,17],[48,-10],[50,10],[25,25],[22,27],[38,-12],[27,5],[26,-58],[28,-28],[44,-24],[28,-30],[21,-4],[16,21],[58,-36],[28,-12],[63,-17],[72,3],[20,11],[13,20],[16,-10],[14,-21],[64,21],[36,0],[48,58],[42,-17],[51,-14],[41,7],[26,21],[29,6],[37,4],[27,27],[44,23],[65,56],[65,89],[58,54],[79,79],[6,34],[-8,34],[18,42],[10,13],[15,48],[36,65],[-4,37],[45,52],[48,20],[33,57],[40,59],[24,-10],[19,4],[99,153],[15,0],[15,-30],[19,-11],[24,28],[24,45],[18,34],[16,6],[26,39],[8,28],[17,63],[21,10],[34,11],[31,10],[32,32],[24,2],[33,38],[81,67],[62,39],[27,53],[50,5],[20,20],[19,41],[64,40],[17,-6],[9,-6],[12,27],[59,27],[25,35],[26,-14],[42,3],[26,14],[7,6],[5,4],[13,38],[32,15],[16,5],[25,-3],[24,58],[33,22],[23,1],[13,-2],[46,37],[40,55],[32,14],[23,24],[31,-14],[20,14],[11,27],[28,24],[27,19],[30,46],[20,3],[11,18],[46,6],[28,38],[35,3],[54,58],[25,-3],[35,54],[16,-10],[70,62],[26,48],[32,8],[41,26],[28,17],[16,27],[24,18],[31,29],[42,28],[20,18],[26,41],[46,0],[51,3],[54,0],[69,6],[15,-9],[20,27],[32,-2],[26,19],[18,-20],[-8,-35],[70,24],[30,41],[18,21],[8,17],[24,-7],[13,3],[9,31],[20,-44],[50,5],[30,-1],[34,23],[47,24],[23,-17],[18,75],[6,45],[-13,61],[-3,34],[31,35],[16,-7],[15,16],[13,2],[10,32],[-12,69],[3,80],[1,95],[15,48],[10,60],[-5,7],[-21,30],[-47,77],[6,33],[11,19],[-2,47],[26,51],[-1,45],[-36,48],[8,34],[11,24],[12,0],[11,75],[-30,150],[-19,134],[8,27],[19,14],[30,7],[20,20],[13,0],[30,36],[24,56],[18,22],[12,55],[36,142],[9,48],[32,89],[10,37],[27,59],[34,20],[24,68],[6,69],[-5,82],[4,61],[11,28],[19,7],[21,54],[1,80],[-2,189],[6,90],[-38,93],[-5,45],[13,71],[34,68],[33,41],[52,46],[18,49],[22,62],[24,28],[44,31],[26,34],[39,13],[14,-3],[17,137],[-22,195],[39,133],[22,-27],[14,-4],[37,-58],[16,-3],[31,27],[17,34],[12,4],[59,-41],[27,-18],[58,-6],[39,41],[25,47],[49,18],[24,-18],[28,0],[53,33],[28,5],[13,-34],[16,-87],[22,-53],[50,-28],[35,-27],[35,-51],[26,6],[31,4],[18,10],[6,31],[15,34],[12,86],[19,49],[47,101],[54,42],[53,42],[32,-10],[28,-12],[12,15],[15,2],[34,24],[14,-9],[23,1],[24,-13],[23,-51],[20,13],[23,43],[40,40],[8,26],[18,22],[26,27],[50,26],[37,27],[4,47],[32,17],[12,14],[33,-11],[14,15],[18,-4],[25,25],[44,14],[17,60],[33,38],[13,-7],[28,13],[17,-9],[29,42],[17,43],[27,33],[34,-3],[48,7],[46,8],[2,1],[42,25],[2,37],[-6,73],[10,42],[26,19],[43,38],[30,31],[27,-1],[15,13],[11,30],[13,11],[26,8],[24,47],[16,61],[36,55],[61,21],[11,17],[4,97]],[[66746,116],[-1,0],[-51,0],[-31,-1],[-23,-1],[-24,0],[-24,-1],[-60,0],[-80,-2],[-17,0],[-25,0],[-20,0],[-21,0],[-9,-1],[-33,0],[-13,0],[-35,-1],[-7,0],[-24,0],[-21,0],[-80,-1],[-71,-1],[-31,-1],[-17,0],[-44,0],[-96,0],[-2,0],[-50,0],[-21,0],[-57,3],[-16,-3],[-9,0],[-15,-2],[-14,0],[-49,-2],[-50,-2],[-100,5],[-79,4],[-18,0],[-12,1],[-19,1],[-39,2],[-29,1],[-20,0],[-25,2],[-36,0],[-27,0],[-18,0],[-16,0],[-52,3],[-13,1],[-14,-3],[-13,0],[-15,0],[-42,0],[-26,3],[-37,0],[-7,0],[-15,0],[-255,3],[-32,0],[-22,0],[-66,0],[-21,0],[-25,0],[-69,0],[-26,2],[-33,1],[-16,-3],[-33,3],[-6,0],[-13,0],[-28,-1],[-41,-2],[-16,0],[-13,0],[-57,-1],[-1,0],[-58,-2],[-14,0],[-12,0],[-30,-1],[-5,0],[-34,-1],[-1,0],[-80,-1],[-14,-1],[-12,0],[-20,0],[-51,-1],[-51,-1],[-40,-1],[-63,-2],[-61,-2],[-32,-1],[-33,-1],[-25,-1],[-15,0],[-56,-2],[0,2],[-62,-2],[-267,-9],[-24,-1],[-59,-2],[-15,0],[-15,0],[-21,-1],[-31,-1],[-30,0],[-12,2],[-74,-6],[-20,-1],[-36,0],[-16,-1],[-19,0],[-56,-1],[-19,-1],[-72,-2],[-100,-2],[-27,0],[-21,-1],[-18,-1],[-36,-1],[-46,-1],[-123,-4],[-19,-1],[-37,-1],[-48,-1],[-10,-2],[-3,0],[-27,0],[-18,3],[-12,-3],[-17,0],[-13,-1],[-64,-2],[-39,-2],[-26,-1],[-27,-4],[-10,0],[-48,3],[-13,0],[-16,-3],[-37,-1],[-14,0],[-2,0],[-12,0],[-13,-1],[-33,-3],[-21,-1],[-20,0],[-19,-1],[-10,0],[-14,-2],[-21,-3],[-31,-5],[-9,-1],[-21,-3],[-71,-7],[-74,-3],[-17,-2],[-24,-3],[-17,-3],[-27,-3],[-17,-1],[-27,-4],[-3,0],[-19,2],[-28,-3],[-7,0],[-12,0],[-93,4],[-15,-2],[-38,-2],[-29,2],[-13,0],[-28,0],[-20,1],[-1,0],[-30,1],[-7,1],[-151,2],[-112,2],[-34,1],[-80,-3],[-15,0],[-24,0],[-4,0],[-20,0],[-18,0],[-29,1],[-4,0],[-55,2],[-76,0],[-34,0],[-13,0],[-108,-3],[-21,3],[-24,0],[-26,1],[-96,0],[-18,3],[-46,0],[-14,0],[-76,4],[-55,0],[-150,9],[-61,4],[-72,4],[-34,3],[-13,2],[-20,0],[-11,0],[-17,0],[-26,-2],[-16,0],[-25,1],[-45,1],[-36,-1],[-17,-2],[-13,3],[-19,-2],[-26,0],[-62,-1],[-25,0],[-104,0],[-70,0],[-173,0],[-93,-3],[-15,0],[-8,0]],[[16377,1878],[-63,0],[-56,-1],[-69,-2],[-17,0],[-12,0],[-45,-1],[-102,-3],[-23,0],[-58,-2],[-88,-3],[-109,-3],[-27,-1],[-57,-1],[-15,-1],[-146,-5],[-74,-1],[-68,1],[-74,0],[-1,0],[-3,-1],[-141,0],[-24,0],[-58,1],[-17,0],[-33,0],[-68,0],[-142,0],[-40,-1],[-134,-4],[-97,-4],[-86,-4],[-20,-2],[-41,-3],[-14,0],[-22,0],[-28,4],[-39,8],[-42,13],[-32,10],[-13,4],[-27,4],[-28,2],[-15,1],[-21,-1],[-21,-2],[-15,-2],[-20,-2],[-15,-1],[-21,-1],[-18,0],[-2,0],[-8,0],[-45,-3],[-12,-1],[-24,-1],[-17,0],[-17,0],[-37,0],[-37,-1],[-23,0],[-26,0],[-2,0],[-13,-2],[-21,-1],[-28,-1],[-63,0],[-44,-2],[-34,-2],[-21,-1],[-15,0],[-26,-1],[-35,-2],[-37,-2],[-12,0],[-29,-1],[-35,-4],[-24,-1],[-20,-1],[-7,0],[-16,1],[-13,0],[-10,1],[-1,0],[-4,-1],[-3,-1],[-8,-2],[-4,-2],[-2,1],[-4,2],[-14,1],[-15,-1],[-12,-1],[-15,-1],[-18,-1],[-21,-1],[-18,-1],[-5,0],[-2,0],[-3,0],[-49,-3],[-14,0],[-6,-1],[-16,0],[-10,-1],[-26,-1],[-45,-2],[-17,0],[-14,-1],[-35,-2],[-15,-1],[-45,-2],[-43,-1],[-88,-2],[-8,0],[-5,-1],[-2,0],[0,1],[0,-1],[-3,-3],[-17,2],[-44,-1],[-56,-2],[-10,-2],[-9,-2],[-6,0],[-20,-1],[-21,-1],[-69,0],[-24,0],[-14,0],[-28,0],[-55,0],[-38,0],[-12,0],[-16,0],[-48,0],[-3,0],[-26,0],[-11,0],[-5,0],[-16,0],[-14,0],[-62,-1],[-23,-4],[-83,3],[-58,-1],[-47,0],[-14,0],[-15,0],[-22,1],[-11,0],[-21,2],[-12,-1],[-6,-1],[-13,0],[-30,0],[-11,0],[-27,-1],[-48,0],[-45,-1],[-58,0],[-15,0],[-45,0],[-6,0],[-21,-1],[-57,0],[-18,0],[-64,-1],[-66,0],[-59,-1],[-23,0],[-18,1],[-30,0],[-72,1],[-26,0],[-15,0],[-22,1],[-13,0],[-54,1],[-47,2],[-33,-1],[-21,0],[-42,0],[-83,0],[-15,0],[-53,0],[-19,1],[-42,0],[-25,0],[-24,0],[-26,0],[-24,0],[-16,0],[-117,-2],[-26,0],[-12,0],[-23,-1],[-25,1],[-20,0],[-24,0],[-96,2],[-16,0],[-50,1],[-45,-1],[-34,0],[-30,-1],[-18,0],[-39,0],[-43,-1],[-29,-1],[-40,-1],[-154,-4],[-45,-1],[-14,0],[-29,0],[-77,-1],[-35,0],[-17,0],[-4,0],[-6,0],[-78,2],[-104,2],[-48,1],[-52,1],[-4,0],[-64,1],[-12,0],[-30,0],[-38,0],[-38,0],[-39,0],[-88,2],[-75,1],[-65,0],[-27,0],[-17,0],[-16,0],[-53,1],[-28,0],[-26,0],[-16,0],[-90,-1],[-65,-1],[-16,0],[-36,0]],[[43086,8670],[-76,-45],[-16,-17],[-13,-2],[-12,-1],[-25,-47],[-70,65],[-23,22],[-23,-120],[-59,-16],[-12,8],[-21,-1],[-9,24],[-16,4],[-15,1],[-13,-4],[-10,-43],[-9,-24],[-16,-3],[-26,-18],[-13,-4],[-12,-5],[-4,-39],[-7,-30],[-9,-29],[-12,-20],[-12,-17],[-17,-26],[-11,-12],[-11,-17],[-12,-27],[-12,-21],[-18,-20],[-13,-23],[-3,-36],[-3,-46],[-2,-51],[4,-67],[10,-67],[8,-61],[13,-35],[4,-132],[3,-63],[29,-48],[2,-63],[-8,-123],[-2,-34],[0,-1],[-1,-49],[2,-35],[-3,-42],[-9,-32],[-6,-57],[-19,-42],[-8,-26],[-16,-26],[7,-35],[17,-40],[24,-53],[13,-31],[19,-33],[34,-15],[2,-35],[-12,-61],[-11,-19],[-17,-49],[-14,-48],[0,-54],[7,-42],[-8,-41],[-7,-42],[-9,-33],[-7,-35],[-19,-27],[-9,-29],[-2,-35],[2,-41],[4,-51],[14,-37],[7,-30],[6,-38],[3,-40],[4,-42],[6,-33],[2,-50],[4,-31],[9,-37],[10,-50],[17,-54],[8,-29],[3,-44],[17,-46],[24,-39],[9,-24],[4,-35],[-2,-38],[1,-45],[3,-42],[7,-31],[1,-35],[3,-41],[3,-38],[15,-39],[5,-54],[-1,-35],[1,-42],[1,-42],[13,-49],[6,-31],[6,-72],[1,-38],[1,-59],[9,-25],[16,-30],[11,-19],[9,-24],[9,-25],[13,-17],[3,-37],[9,-39],[0,-42],[2,-40],[8,-32],[11,-27],[7,-37],[12,-56],[4,-33],[11,-22],[12,8],[22,-30],[11,-18],[12,-46],[5,-34],[9,-63],[0,-108],[-1,-39],[-5,-53],[-5,-46],[-6,-41],[-3,-46],[0,-52],[2,-35],[9,-40],[9,-66],[2,-39],[-2,-44],[-5,-42],[0,-68],[1,-36],[0,-42],[-3,-42],[-12,-33],[-3,-41],[10,-37],[20,-9],[13,-9],[19,-58],[5,-41],[-10,-33],[1,-40],[10,-30],[5,-45],[-3,-35],[-1,-17],[-2,-24],[8,-28],[11,-29],[17,-49],[-12,-32],[2,-45],[-4,-33],[-4,-46],[-6,-32],[-4,-35],[7,-44],[10,-39],[15,-30],[13,-23],[-1,-105],[0,-1],[-1,-40],[-4,-316],[-1,-58],[-1,-63],[-3,-143],[-2,-144],[-1,-35],[-3,-200],[-2,-146],[-1,-100],[-1,-56],[-2,-90],[0,-2],[-3,-117],[-4,-232],[-4,-213],[-2,-92],[-1,-76],[-1,-56]],[[42944,59],[-47,0],[-80,3],[-127,0],[-97,0],[-70,0],[-26,0],[-66,0],[-57,1],[-140,2],[-44,0],[-68,0],[-35,1],[-44,1],[-51,0],[-33,1],[-18,1],[-47,3],[-98,3],[-44,2],[-14,2],[-23,0],[-19,0],[-59,2],[-38,1],[-35,0],[-18,3],[-12,0],[-24,1],[-62,1],[-23,1],[-27,1],[-86,3],[-24,1],[-38,1],[-34,2],[-187,3],[-47,1],[-59,2],[-14,0],[-3,1],[-31,6],[-20,-2],[-16,0],[-15,0],[-36,2],[-49,0],[-26,0],[-25,0],[-80,4],[-34,-3],[-17,0],[-16,1],[-31,2],[-25,0],[-23,0],[-60,0],[-51,0],[-43,-1],[-30,0],[-21,-1],[-91,-1],[-38,0],[-42,0],[-11,0],[-184,27],[-207,26],[-43,5],[-14,2],[-20,3],[-26,5],[-70,8],[-15,2],[-26,4],[-61,10],[-60,7],[-43,6],[-33,3],[-57,8],[-15,2],[-13,2],[-31,5],[-24,4],[-38,0],[-13,0],[-15,1],[-26,3],[-15,3],[-40,7],[-34,3],[-30,4],[-21,3],[-23,4],[-136,20],[-138,17],[-25,4],[-28,4],[-42,5],[-20,3],[-19,2],[-14,-2],[-15,5],[-14,3],[-25,4],[-43,6],[-38,5],[-61,8],[-14,2],[-19,3],[-50,7],[-65,10],[-69,10],[-45,7],[-96,13],[-16,3],[-3,1],[-89,10],[-142,14],[-64,7],[-48,6],[-13,0],[-17,4],[-96,10],[-44,4],[-34,4],[-20,2],[-78,11],[-58,6],[-13,0],[-49,6],[-44,5],[-132,15],[-37,4],[-13,2],[-34,3],[-21,3],[-30,3],[-1,0],[-72,11],[-43,3],[-10,1],[-13,3],[-111,13],[-5,0],[-63,7],[-32,3],[-137,17]],[[86445,10226],[-23,-96],[-38,-42],[6,-73],[-1,-1],[-30,-24],[-44,-36],[-11,-80],[-19,94],[-40,12],[21,-92],[18,-143],[-11,-72],[-1,-4],[-19,-74],[-16,-90],[-8,-134]],[[88101,10007],[27,5],[18,-63],[35,-61],[22,34],[-20,62],[-20,50],[30,57],[23,27],[30,-23],[32,15],[21,6],[34,-14]],[[89559,335],[-104,0],[-59,2],[-27,1],[-128,-3],[-17,0],[-16,0],[-2,0],[-108,-1],[-333,-2],[-14,0],[-24,3],[-3,0],[-91,0],[-174,0],[-174,0],[-17,0],[-23,0],[-133,0],[-22,0],[-41,0],[-109,0],[-64,0],[-97,0],[-53,0],[-42,0],[-78,0],[-18,0],[-52,0],[-66,0],[-130,0],[-24,0],[-18,-3],[-300,2],[-148,1],[-109,1],[-90,0],[-103,0],[-7,0],[-5,0],[-21,0],[-18,1],[-328,0],[-214,0],[-240,0],[-222,1],[-29,0],[-282,0]],[[46959,41],[0,-1],[-85,1],[-117,1],[-48,0],[-54,2],[-21,0],[-34,0],[-33,0],[-32,2],[-18,2],[-59,0],[-12,0],[-14,0],[-20,1],[-20,3],[-32,3],[-73,-3],[-36,-3],[-21,-1],[-103,6],[-232,8],[-35,-11],[-1,0],[-113,7],[-2,0],[-140,7],[-13,0],[-39,0],[-40,-1],[-53,0],[-18,0],[-32,-3],[-24,1],[-54,0],[-17,1],[-38,2],[-47,0],[-55,0],[-50,3],[-60,0],[-129,3],[-24,1],[-25,-2],[-22,-2],[-158,-7],[-54,-2],[-6,2],[-13,4],[-15,-3],[-21,0],[-44,0],[-29,6],[-57,-6],[-29,3],[-13,0],[-28,-3],[-29,3],[-193,0],[-33,0],[-90,-3],[-36,3],[-48,-6],[-99,-1],[-48,-1],[-39,0],[-33,-2],[-12,0],[-19,-1],[-9,0],[-14,-1],[-26,-1],[-24,0],[-70,3],[-23,5],[-9,2],[-24,0],[-21,0],[-20,0],[-61,0],[-149,0],[-13,0],[0,-3],[-72,0],[-32,-1],[-15,0],[-24,0],[-37,1],[-118,-1],[-13,1]],[[44868,4488],[56,0],[19,0],[13,-18],[25,-34],[1,-7],[10,-65],[7,-44],[7,-3],[27,-14],[22,-19],[11,-11],[53,-40],[3,-3],[42,-31],[24,-18],[31,-24],[28,-21],[15,-52],[-5,-47],[-1,-52],[-8,-41],[-10,-30],[3,-167],[43,-17],[15,-10],[15,-8],[27,-7],[15,-10],[12,-15],[6,-4],[30,-32],[7,-16],[1,-38],[4,-33],[5,-17],[7,-12],[4,-2],[17,-3],[16,15],[7,9],[37,49],[-30,53],[-2,9],[-7,45],[15,42],[-22,26],[1,30],[23,0],[-10,13],[13,60],[3,21],[-4,45],[0,44],[5,12],[5,56],[10,-25],[-7,-10],[1,-22],[-5,-12],[3,-30],[-2,-9],[3,-18],[1,-10],[-1,-21],[1,-20],[5,1],[1,-11],[-15,-16],[-2,-2],[-4,-4],[-1,-4],[0,-22],[14,-1],[9,2],[8,-4],[16,-14],[2,-11],[10,9],[9,22],[10,19],[13,-40],[7,-81],[-2,-55],[-2,-16],[-4,-1],[-1,-6],[-2,-19],[2,-9],[1,-3],[47,45],[1,0],[-3,24],[-18,122],[-6,42],[7,7],[0,23],[8,28],[25,106],[-8,10],[4,39],[-15,11],[-14,34],[-13,15],[-17,16],[-9,29],[-17,6],[-10,18],[-3,34],[0,35],[-9,30],[-13,49],[-3,41],[-11,12],[-21,8],[-14,-10],[-17,-8],[-9,26],[-1,39],[-11,27],[4,35],[4,56],[2,35],[7,94],[11,158],[3,48],[3,40],[7,103],[3,39],[6,82],[0,1],[3,43],[5,75],[8,121],[4,50],[6,87],[-1,55],[-18,15],[-37,32],[-34,30],[-63,53],[-44,38],[-29,25],[-21,18],[-44,38],[-43,36],[-52,44],[-16,14],[-16,13],[-22,23],[-27,-45],[-10,-18],[-29,-49],[-11,-18],[-13,-44],[-11,-38],[-12,-43],[-15,-56],[-22,-71],[-16,-56],[-9,-30],[-8,-29],[-35,-122],[-24,-81],[-8,-29],[-2,-6],[-12,-41],[-10,-36],[-35,-121],[-9,-32],[-13,-44],[-3,-9],[-14,-49],[32,-67],[5,-20],[10,-59],[27,-75],[1,-2],[2,-30],[0,-5],[12,-25],[12,-20],[15,-59],[1,-14],[1,-15],[-1,-18],[0,-2],[1,-2],[15,0],[20,0]],[[32523,4473],[17,-59],[-14,-21],[-10,-17],[-66,111],[5,26],[5,28],[12,62],[-2,9],[-20,99],[-8,2],[-18,-3],[-19,-28],[-15,-31],[-7,-16],[0,-2],[1,-20],[4,-61],[39,-45],[-9,-33],[-11,-14],[-14,4],[-14,-5],[-10,-22],[-29,-143],[-5,-51],[-9,-27],[-7,-29],[-2,-40],[-1,-35],[-1,-69],[-3,-128],[10,-33],[4,-34],[23,-181],[19,-20],[2,-2],[61,-62],[63,-18],[15,-3],[107,-29],[20,-5],[12,-3],[3,0],[-2,-9],[-19,-80],[-8,-38],[-53,-231],[-27,-117],[-7,-31],[0,-65],[7,-34],[16,-29],[51,32],[18,3],[13,-3],[16,-1],[5,0],[1,20],[1,35],[22,21],[30,30],[4,68],[2,48],[2,41],[2,40],[2,37],[3,73],[3,57],[-3,21],[-11,51],[-7,36],[-9,41],[0,4],[-5,20],[1,19],[1,53],[1,-3],[8,22],[5,15],[15,45],[9,27]],[[33641,629],[-15,1],[-13,2],[-146,18],[-272,31],[-22,3],[-2,0],[-33,4],[-21,3],[-39,4],[-47,6],[-42,7],[-34,3],[-34,5],[-4,1],[-31,4],[-56,7],[-26,0],[-43,3],[-8,1],[-24,0],[-3,0],[-122,6],[-42,2],[-36,5],[-12,14],[-32,0],[-14,0],[-29,1],[-13,2],[-19,0],[-25,0],[-29,6],[-15,-1],[-17,2],[-16,2],[-25,3],[-33,2],[-19,1],[-53,2],[-35,-12],[-32,-10],[-54,5],[-19,2],[-22,2],[-3,0],[-33,7],[-76,6],[-35,3],[-14,1],[-13,0],[-17,1],[-15,0],[-17,1],[-19,1],[-37,2],[-59,3],[-37,1],[-17,1],[-29,9],[-6,2],[-8,3],[-4,1],[-15,5],[-41,14],[-27,8],[-8,3],[-12,4],[-23,3],[-17,3],[-26,5],[-10,2],[-12,2],[-5,0],[-68,12],[-15,3],[-18,3],[-30,5],[-33,1],[-21,4],[-10,2],[-15,2],[-7,1],[-23,3],[-22,3],[-91,-3],[-19,-1],[-23,0],[-85,7],[-50,3],[-16,0],[-18,0],[-7,1],[-17,3],[-12,0],[-18,0],[-17,0],[-16,1],[-20,2],[-42,0],[-39,4],[-34,0],[-25,3],[-15,0],[-26,5],[-26,5],[-2,1],[-14,3],[-1,0],[-37,10],[-44,7],[-11,2],[-33,5],[-57,10],[-33,3],[-48,3],[-16,2],[-34,3],[-56,6],[-14,0],[-16,2],[-7,0],[-13,2],[-2,0],[-12,3],[-50,3],[-12,0],[-15,2],[-31,5],[-4,0],[-12,0],[-1,0],[-13,4],[-14,0],[-10,1],[-32,3],[-36,6],[-13,0],[-23,4],[0,1],[-14,3],[-42,11],[-8,2],[-12,3],[-16,0],[-68,7],[-18,0],[-12,1],[-58,5],[-27,3],[-48,4],[-11,1],[-26,3],[-50,3],[-25,0],[-19,1],[-26,3],[-19,0],[-13,0],[-23,1],[-21,2],[-22,0],[-13,1],[-35,3],[-119,10],[-50,4],[-61,6],[-78,7],[-23,3],[-72,7],[-32,0],[-31,5],[-60,10],[-24,6],[-43,6],[-52,0],[-28,0],[-14,3],[-20,4],[-5,3],[-20,17],[-29,-7],[-20,-1],[-17,2],[-11,2],[-16,8],[-17,7],[-27,-3],[-19,0],[-18,-4],[-14,0],[-12,0],[-12,0],[-20,1],[-37,0],[-16,3],[-43,0],[-25,0],[-12,0],[-17,0],[-26,2],[-21,0],[-17,1],[-24,3],[-20,1],[-25,2],[-27,1],[-5,0],[-9,-1],[-32,-6],[-43,-4],[-33,-4],[-20,-2],[-33,0],[-31,0],[-21,0],[-30,0],[-38,-4],[-58,-3],[-27,0],[-39,0],[-30,24],[-32,24],[-2,-48],[-5,0],[-20,-2],[-29,-8],[-42,-7],[-25,-28],[-4,48],[-12,0],[-17,1],[-27,3],[-17,0],[-25,1],[-23,2],[-21,0],[-23,4],[-20,0],[-12,1],[-21,5],[-4,0],[-12,0],[-5,1],[-17,3],[-14,0],[-8,3],[-2,1],[-17,3],[-5,0],[-30,0],[-95,8],[-15,1],[-26,2],[-18,2],[-20,3],[-13,0],[-67,6],[-37,3],[-45,4],[-39,3],[-37,4],[-40,3],[-26,3],[-21,9],[-12,3],[-71,24],[-23,7],[-22,7],[-30,10],[-1,0],[-25,7],[-34,10],[-30,8],[-55,13],[-12,4],[-43,13],[-20,3],[-6,-2],[-104,-31],[-17,-3],[-21,-4],[-33,8],[-30,15],[-16,6],[-19,1],[-32,0],[-18,0],[-16,1],[-17,2],[-37,4],[-120,11],[-5,0],[-19,-1],[-13,4],[-30,3],[-2,0],[-109,20],[-32,11],[-14,3],[-14,4],[-18,6],[-21,7],[-24,7],[-70,17],[-25,4],[-27,5],[-35,9],[-33,7],[-51,13],[-157,35],[-21,5],[-32,8],[-24,3],[-38,7],[-24,3],[-101,28],[-39,10],[-38,2],[-35,1],[-2,1],[-19,0],[-1,1],[-20,2],[-60,3],[-32,0],[-44,10],[-14,0],[-37,0],[-21,1],[-95,0],[-12,0],[-18,0],[-14,0],[-14,0],[-22,0],[-15,0],[-14,0],[-61,10],[-14,0],[-50,0],[-16,0],[-25,2],[-53,5],[-34,0],[-2,0],[-16,1],[-21,1],[-95,4],[-2,0],[59,132],[48,108],[38,87],[51,114],[37,84],[21,47],[66,148],[27,60],[15,33]],[[51372,21],[-4,0],[-50,0],[-1,0],[-69,0],[-41,1],[-75,2],[-18,0],[-24,0],[-78,0],[-20,-3],[-118,0],[-23,0],[-19,0],[-23,0],[-56,2],[-29,1],[-40,0],[-57,0],[-47,-3],[-30,0],[-16,0],[-143,-1],[-38,0],[-14,0],[-127,-3],[-27,0],[-1,0],[-27,-1],[-63,-4],[-17,-2],[-55,-7],[-12,0],[-24,0],[-4,0],[-36,0],[-17,0],[-13,-1],[-1,0],[-37,0],[-17,0]],[[18130,1845],[-1,0],[-26,0],[-6,0],[-10,2],[-10,-2],[-1,0],[-19,0],[-17,1],[-11,-1],[-24,-1],[-13,-1],[-21,-1],[-4,0],[-5,0],[-13,-1],[-70,-1],[-18,0],[-14,0],[-25,1],[-22,0],[-2,2],[-1,1],[-2,1],[-22,2],[-1,0],[-1,0],[-13,1],[-12,1],[-6,0],[-8,1],[-5,0],[-9,1],[-12,1],[-1,0],[-17,1],[-7,1],[-17,2],[-9,0],[-9,1],[-11,1],[-1,0],[-9,1],[-1,0],[-5,0],[-6,0],[-2,1],[-3,0],[-9,1],[-6,1],[-1,0],[-18,1],[-2,0],[-19,2],[-4,0],[-24,2],[-4,0],[-2,0],[-6,1],[-22,2],[-23,1],[-20,2],[-1,0],[-28,2],[-16,2],[-6,0],[-1,0],[-8,1],[-15,1],[-3,1],[-4,2],[-3,1],[-4,0],[-6,1],[-15,-1],[-13,0],[-12,0],[-6,0],[-9,0],[-16,0],[-16,0],[-31,-1],[-5,3],[-1,2],[-3,2],[-12,-1],[-3,0],[-2,-1],[-4,-8],[-15,1],[-8,2],[0,1],[-2,1],[-3,1],[-4,-1],[0,-1],[-2,-2],[-4,-2],[-18,-1],[-4,-1],[-28,0],[-16,0],[-20,0],[-16,0],[-26,0],[-46,0],[-14,0],[-3,0]]],"transform":{"scale":[0.00008433060812608084,0.000029252848808489242],"translate":[-83.67494333699989,36.540748535000034]}} diff --git a/src/js/config/mapconfig/mapfiles/county/vt-counties.json b/src/js/config/mapconfig/mapfiles/county/vt-counties.json new file mode 100644 index 00000000..30c37b1d --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/vt-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-73.43747252999992,42.726941337000085,-71.46774700399993,45.01665582999999],"geometries":[{"type":"Polygon","properties":{"name":"VT"},"id":"50011","arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50009","arcs":[[5,6,7]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50013","arcs":[[8,9,-4]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50019","arcs":[[-7,10,11,-1,12]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50015","arcs":[[13,14,15,-2,-12]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50005","arcs":[[16,17,18,-14,-11,-6]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50007","arcs":[[-16,19,20,21,-9,-3]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50023","arcs":[[22,23,-20,-15,-19]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50001","arcs":[[-24,24,25,26,27,-21]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50017","arcs":[[28,29,-25,-23,-18]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50027","arcs":[[30,31,32,33,-26,-30]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50021","arcs":[[34,35,-27,-34]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50003","arcs":[[-33,36,37,-35]]},{"type":"Polygon","properties":{"name":"VT"},"id":"50025","arcs":[[38,-37,-32]]}]},"states":{"type":"GeometryCollection","bbox":[-73.43747252999992,42.726941337000085,-71.46774700399993,45.01665582999999],"geometries":[{"type":"Polygon","properties":{"name":"Vermont"},"id":"50","arcs":[[12,7,16,28,30,38,37,35,27,21,9,4]]}]}},"arcs":[[[44859,99621],[125,-867],[648,-4494],[233,-1615],[0,-1],[94,-648],[0,-1],[-11,-11],[-2282,-2232],[-18,-18]],[[43648,89734],[-338,171],[-5,3],[-50,25],[-386,196],[-944,479],[-554,-76],[-126,-17],[-10,-1],[-2547,-228],[-125,-13],[-834,-76],[-226,-23],[-326,-33],[-1454,-147],[-526,-47],[-140,-12],[-82,-428],[-56,-4],[-186,0],[-137,-430],[-537,-3],[-56,-282],[-105,-472],[-20,-111],[-49,-275],[-130,0],[-319,-2],[-135,4],[-63,-260],[-93,-290],[-397,-1237],[-47,-192],[-32,-122],[-8,3],[-264,77],[-909,262],[-608,176],[-27,14],[-54,28],[-165,50],[-207,46],[-4,1],[-575,167],[-252,-297],[-113,-140],[-47,-54],[-60,-42],[-8,-10],[-414,-507],[-112,-134],[-163,-187],[-672,-779],[-180,-212],[-113,-85],[-7,-2],[-48,-17],[-148,-81],[-103,-63],[-70,-60],[-70,-85],[-37,-66],[-56,-26],[-68,-12],[-117,-2],[-93,19],[-58,7],[-60,0],[-116,-21],[-151,-4],[-1,1],[-69,16],[-71,43],[-88,85],[-60,23],[-19,-2],[-84,-6],[-86,-70],[-40,-50],[-4,-71],[41,-48],[99,-93],[-41,-30],[-67,-33],[38,-49],[20,-26],[84,-81],[-127,-79],[103,-77]],[[26084,83248],[-226,40],[-423,47],[-1508,212],[-329,38],[-748,109],[-604,78],[-123,18],[-323,82],[-100,-25],[-15,2],[-173,22],[-13,1],[-153,22],[-1046,144],[-2409,815],[-36,11],[-124,40],[-96,31],[-80,26],[-106,34],[-40,13],[-77,26],[-103,33],[-37,12],[-255,81],[-35,11],[-127,41],[-57,16],[-121,33],[-15,6],[-156,53],[-130,43],[-390,123],[-68,17],[-82,26],[-32,10],[-27,9],[-242,78],[-686,215],[-295,92],[-317,104],[-139,44],[-862,275],[-779,249],[-503,161],[-145,51],[-25,8],[-1091,345]],[[10613,87170],[-161,312],[-187,281],[-301,266],[-403,328],[-250,287],[-57,73],[-36,50],[-23,45],[-27,63],[-33,101],[-14,50],[-14,54],[-10,45],[-11,74],[-5,72],[-2,44],[3,49],[12,49],[5,46],[23,78],[25,58],[22,53],[30,78],[26,39],[20,41],[42,73],[36,58],[35,49],[37,49],[29,38],[44,65],[42,59],[51,65],[117,150],[138,169],[135,148],[146,127],[149,128],[127,86],[153,91],[160,90],[153,72],[199,62],[209,56],[193,37],[100,35],[88,51],[53,66],[17,61],[3,72],[25,51],[33,35],[81,73],[80,102],[31,64],[-22,107],[-48,96],[-98,118],[-73,105],[-16,50],[3,85],[27,178],[70,184],[87,149],[26,67],[-11,130],[15,81],[130,133],[109,86],[73,90],[28,69],[7,45],[6,89],[-2,93],[21,95],[38,89],[60,104],[38,67],[52,164],[22,80],[21,380],[5,92],[-20,89],[-55,83],[-109,78],[-157,-5],[-126,15],[-144,1],[-157,19],[-129,33],[-126,48],[-121,49],[-141,56],[-127,38],[-136,33],[-134,45],[-108,83],[-218,331],[-113,188],[-13,84],[-26,96],[-66,88],[-92,74],[-94,75],[-54,82],[-35,91],[-17,90],[-4,93],[34,88],[59,81],[111,63],[121,51],[118,62],[129,80],[152,137],[60,79],[80,95],[70,77],[57,92],[15,25],[58,81],[10,13],[58,62],[129,142],[127,145],[227,256],[230,270],[107,135],[134,170],[75,86],[168,233],[156,264]],[[12482,99858],[33,0],[2777,45],[1116,18],[1198,20],[21,0],[143,3],[110,3],[12,0],[7,0],[12,0],[18,1],[16,0],[227,5],[150,3],[274,6],[225,5],[70,1],[112,-1],[180,-3],[114,-1],[393,-6],[98,-1],[301,-5],[285,-4],[513,-7],[258,-3],[83,-2],[157,-2],[345,-6],[655,-10],[28,-1],[722,-13],[188,-3],[3,0],[4,-1],[45,0],[173,-4],[344,-6],[1226,27],[278,5],[207,5],[683,15],[103,2],[458,9],[117,2],[54,1],[684,9],[142,2],[1013,13],[99,4],[622,10],[47,1],[114,1],[82,2],[156,2],[238,-3],[381,-5],[475,-6],[210,-3],[551,-4],[438,-3],[54,-1],[93,0],[1094,-9],[372,-3],[1111,-9],[181,3],[544,7],[324,-2],[482,-3],[766,-5],[150,-1],[273,-4],[539,-6],[472,-5],[61,-1],[497,-6],[12,0],[48,-1],[4,0],[2,0],[397,-4],[1010,-12],[382,-17],[412,-19],[297,-13],[174,-8],[277,-12],[741,-50],[169,-12],[15,-1],[68,-5],[22,-2],[201,-21],[325,-33],[107,-12],[140,-14],[695,-73],[78,0]],[[81237,70795],[-139,117],[-5,4],[-59,49],[-152,128],[-101,84],[-37,31],[-120,101],[-446,366],[-353,301],[-118,103],[-335,285],[-599,503],[-539,453],[-53,42],[-402,333],[-129,114],[-324,269],[-938,790],[354,131],[31,16],[33,16],[132,52],[15,6],[127,48],[338,127],[480,185],[527,408],[65,45],[318,246],[563,428],[905,692],[-229,172],[-535,457],[-135,118],[-512,472],[-1227,1006],[507,446],[74,62],[1152,948],[926,727],[688,616],[-278,129],[-1031,477],[-305,132],[-936,431],[-2,1],[-64,29],[-56,25],[-603,262],[-154,81],[387,313],[199,162],[392,302],[42,40],[95,91],[80,51],[39,25],[82,80],[76,74],[21,15],[62,40],[121,102],[223,189],[912,756],[214,176],[760,623],[-1070,481],[-821,352],[-119,54],[-256,119],[-32,26],[-9,15],[-18,8],[-33,14],[-980,416],[-955,402],[-350,126],[-112,101],[-456,174]],[[76050,89186],[-434,190],[-193,107],[-101,22],[-1017,445],[757,595],[259,269],[404,326],[9,7],[175,78],[26,12],[16,7],[129,101],[152,120],[76,60],[85,149],[315,258],[82,35],[192,86],[94,80],[60,-17],[352,274],[77,61],[26,20],[120,93],[95,74],[529,413],[891,694],[80,71],[58,64],[-129,50],[-537,244],[-306,161],[-110,58],[-53,9],[-51,8],[-76,35],[-553,250],[-87,40],[-376,172],[-456,318],[205,331],[-30,194],[196,560],[190,541],[65,186],[105,299],[77,219],[129,366],[475,1354],[149,345]],[[78191,99620],[479,10],[2076,46],[912,20],[40,1],[1182,31],[174,3],[112,1],[35,1],[43,1],[134,2],[14,0],[61,1],[3,0],[1,0],[50,1],[59,1],[52,1],[516,9],[873,11],[454,6],[1538,4],[367,-1],[90,0],[250,-1],[665,-3],[1526,17],[290,9],[377,7],[460,9],[252,4],[1366,16],[420,-2],[344,-1],[517,-2],[225,-2],[532,-3],[585,7],[41,0],[18,1],[133,1],[20,0],[913,11],[602,7],[416,5],[148,3],[479,4],[7,0],[26,0],[15,0],[7,0],[6,0],[157,2],[57,0],[61,-4],[8,-1],[1620,17],[-19,-5],[-140,-14],[-135,-30],[-151,-67],[-111,-85],[-61,-96],[-17,-98],[-4,-57],[-110,-45],[-23,-5],[-66,14],[-28,2],[-78,-2],[-87,21],[-320,82],[-128,50],[-127,68],[-72,29],[-58,16],[-140,23],[-181,-26],[-78,-16],[-123,-42],[-53,-20],[-131,-67],[-88,-23],[-76,-18],[-164,-11],[-125,-15],[-143,-24],[-121,-31],[-10,-27],[-42,-25],[-6,-4],[-7,-5],[-6,-4],[-42,-36],[-2,-1],[-6,-6],[-5,-6],[-6,-6],[-4,-6],[-18,-27],[0,-1],[-5,-6],[-2,-5],[-90,-110],[-89,-107],[-24,-27],[19,-19],[-85,-195],[-98,-76],[-3,-17],[-6,-62],[-1,-29],[189,-130],[62,-11],[6,-1],[8,-1],[32,-4],[60,-25],[8,-11],[5,-39],[15,-33],[36,-55],[32,-37],[31,-17],[86,-63],[38,-6],[8,-2],[28,-6],[35,-8],[1,0],[9,-2],[8,-3],[8,-3],[8,-4],[6,-3],[52,-28],[0,-1],[30,-17],[2,0],[7,-5],[7,-5],[7,-5],[6,-6],[5,-5],[22,-24],[1,-2],[6,-6],[4,-6],[5,-7],[3,-7],[4,-8],[6,-17],[3,-7],[2,-7],[1,-8],[1,-8],[0,-1],[2,-25],[0,-14],[-1,-8],[-2,-7],[-1,-7],[-4,-13],[35,-53],[4,-16],[37,-6],[225,-37],[0,-1],[-1,-24],[-1,-48],[0,-2],[1,-8],[0,-8],[2,-7],[2,-8],[2,-7],[46,-116],[3,-7],[1,-2],[43,-84],[1,-31],[-46,-185],[-49,-40],[-84,-45],[-11,-13],[-4,-19],[17,-18],[94,-86],[10,-23],[32,-77],[-2,-6],[-1,-1],[-2,-8],[0,-2],[-2,-11],[-38,-179],[-1,-5],[-1,-8],[0,-8],[0,-16],[-124,-19],[-23,8],[-33,21],[-39,30],[-26,2],[-8,-7],[0,-23],[9,-25],[15,-30],[28,-39],[52,-22],[105,-45],[35,-15],[10,-6],[0,-69],[1,-8],[0,-6],[5,-33],[0,-1],[1,-8],[3,-7],[0,-3],[14,-39],[1,-5],[3,-7],[4,-7],[3,-4],[45,-71],[9,-42],[-10,-16],[0,-22],[9,-23],[19,-17],[7,-5],[8,-3],[41,-16],[34,-20],[1,-2],[193,-195],[2,-2],[6,-6],[3,-2],[73,-59],[3,-3],[7,-5],[8,-4],[1,-1],[38,-21],[6,-3],[8,-4],[6,-2],[117,-44],[2,-1],[9,-3],[6,-2],[91,-91],[62,-32],[142,-74],[161,-58],[3,-1],[10,-16],[-14,-68],[-16,-78],[-20,-51],[-35,-87],[-27,-29],[-90,7],[-13,2],[-48,6],[-1,-7],[-2,-8],[-2,-8],[-2,-7],[-3,-7],[-4,-7],[-4,-7],[-5,-7],[-70,-88],[-5,-6],[-5,-6],[-6,-6],[-1,0],[-38,-32],[-6,-5],[-6,-5],[-2,-1],[-37,-24],[-291,-186],[-4,-3],[-56,-33],[-2,-1],[-7,-4],[-8,-3],[-8,-4],[-2,0],[-52,-18],[-7,-2],[-3,-1],[11,-92],[1,-13],[-127,-107],[-113,-100],[-2,-4],[-4,-7],[-5,-6],[-5,-7],[-1,0],[-42,-47],[-24,-25],[-4,-5],[-4,-4],[-66,-59],[-2,-2],[-6,-5],[-7,-5],[-5,-3],[-92,-55],[-6,-4],[-3,-1],[-7,-4],[-8,-4],[-1,-1],[-6,-2],[-139,-69],[-16,-18],[-76,-81],[-50,-69],[-11,-37],[0,-1],[-3,-7],[-15,-38],[0,-1],[-3,-7],[-4,-7],[-3,-6],[-38,-57],[0,-1],[-5,-6],[-5,-7],[-3,-2],[-59,-62],[-3,-3],[-6,-6],[-6,-5],[-5,-3],[-47,-33],[-3,-2],[-7,-5],[-8,-4],[-8,-3],[-1,-1],[-40,-17],[-8,-2],[-3,-2],[-110,-36],[-6,-2],[-8,-2],[-9,-2],[-9,-1],[-9,-1],[-3,0],[-130,-5],[-6,0],[-9,0],[-3,0],[-148,10],[-133,-40],[-84,-53],[-31,-24],[-61,-45],[-20,-28],[-38,-51],[-27,-36],[-9,-37],[55,-57],[-4,-15],[-2,-7],[-2,-8],[-1,-7],[0,-8],[0,-46],[0,-2],[-1,-2],[-63,-42],[-115,-77],[-5,-4],[-55,-41],[-7,-5],[-6,-6],[-6,-6],[-5,-6],[-5,-7],[-4,-7],[-4,-7],[-3,-7],[-2,-7],[-2,-8],[-36,-50],[-4,-15],[-6,-64],[5,-25],[6,-8],[38,-23],[8,-5],[2,-5],[8,-22],[1,-2],[58,-156],[1,-1],[0,-2],[34,-83],[3,-72],[-3,-18],[-15,-14],[-78,-55],[-3,-2],[-6,-6],[-6,-5],[-2,-1],[-51,-52],[-56,-20],[-17,-13],[-81,-116],[-1,-9],[-41,-41],[-5,-5],[-5,-6],[-5,-7],[-4,-7],[-4,-7],[0,-1],[-46,-98],[-50,-75],[-37,-22],[-54,-14],[-84,-12],[-5,-1],[-8,-1],[-7,-2],[-57,-16],[-2,0],[-8,-3],[-8,-3],[-8,-4],[-6,-3],[-70,-34],[-1,-1],[-7,-4],[-5,-3],[-32,-12],[-86,-47],[-48,-36],[-34,-25],[-36,-33],[-43,-38],[-70,-111],[-3,-16],[-5,-22],[5,-50],[4,-9],[29,-24],[2,-2],[6,-5],[5,-5],[26,-29],[17,-7],[31,-34],[5,-6],[17,-19],[2,-2],[93,-97],[32,-34],[2,-6],[0,-1],[0,-8],[0,-7],[1,-8],[2,-8],[2,-7],[2,-8],[3,-7],[1,0],[0,-10],[-29,-59],[-3,-7],[-1,-3],[-38,-107],[-46,-125],[-1,-5],[-2,-8],[-2,-7],[-1,-8],[0,-14],[5,-79],[-7,-79],[-1,-16],[-56,-73],[-43,-42],[-4,-2],[-7,-5],[-7,-4],[-6,-6],[-7,-5],[-5,-6],[-2,-3],[-22,-21],[-73,-51],[-3,-3],[-6,-5],[-7,-5],[-5,-6],[-6,-7],[-4,-6],[-5,-7],[-3,-7],[-2,-4],[-8,-18],[-28,-32],[-38,-21],[-58,-14],[-87,-17],[-131,-2],[-6,-1],[-9,0],[-9,-2],[-9,-1],[-2,-1],[-89,-22],[-53,-13],[-6,-2],[-9,-2],[-8,-3],[-8,-4],[-2,-1],[-125,-65],[-24,-5],[-114,-73],[-44,-31],[-35,-65],[11,-55],[-281,-203],[-26,-16],[-1,-1],[-7,-5],[-6,-5],[-182,-156],[-91,-53],[-1,0],[-7,-4],[-7,-5],[-6,-6],[-6,-5],[-6,-6],[-5,-6],[0,-1],[-13,-15],[-88,-24],[-29,-23],[-95,-134],[-254,-203],[-66,-21],[-36,-2],[-4,0],[-9,0],[-9,-2],[-8,-1],[-9,-3],[-3,0],[-28,-9],[-139,-27],[-1,0],[-9,0],[-9,-2],[-9,-1],[-8,-3],[-5,-1],[-161,-53],[-66,-113],[-2,-5],[-32,-55],[-69,-119],[2,0],[9,-1],[5,0],[4,0],[6,0],[9,0],[22,-32],[4,-5],[5,-6],[6,-6],[6,-5],[6,-6],[2,-1],[184,-265],[5,-7],[81,-118],[-23,-61],[-24,-63],[-8,-15],[0,-15],[2,-194],[13,-25],[36,-46],[70,-38],[34,-1],[148,59],[11,-16],[17,-28],[-8,-19],[-2,-6],[-2,-8],[-2,-7],[-6,-41],[-1,-7],[0,-8],[0,-8],[1,-8],[2,-7],[0,-1],[12,-52],[2,-7],[3,-7],[3,-8],[4,-7],[4,-6],[5,-7],[4,-5],[19,-22],[4,-5],[28,-32],[1,-1],[4,-4],[2,-2],[5,-5],[93,-81],[335,-322],[129,-124],[5,-5],[4,-3],[218,-173],[12,-16],[1,-1],[5,-7],[5,-6],[7,-5],[6,-6],[6,-4],[23,-15],[29,-24],[23,-24],[-51,-86],[0,-29],[0,-11],[13,-23],[18,-20],[28,-18],[150,-35],[2,-4],[1,-3],[3,-7],[4,-6],[5,-7],[5,-6],[6,-6],[7,-7],[22,-37],[-19,-16],[-64,-47],[1,-31],[0,-30],[3,-6],[3,-8],[2,-7],[1,-6],[11,-66],[1,-2],[0,-7],[1,-2],[1,-28],[0,-14],[-1,-8],[-1,-7],[-1,-5],[-1,-3],[-7,-24],[14,-22],[26,-39],[26,-57],[42,-91],[3,-7],[3,-7],[0,-1],[9,-56],[-54,-74],[17,-8],[65,-31],[27,-7],[7,-2],[9,-2],[8,-4],[8,-3],[8,-4],[7,-5],[7,-5],[6,-5],[3,-2],[13,-12],[4,-4],[6,-6],[5,-6],[5,-7],[4,-6],[4,-7],[3,-8],[2,-7],[1,-4],[7,-26],[8,-28],[48,-15],[44,-9],[90,-18],[97,-2],[53,-18],[48,-15],[33,-11],[30,-60],[-46,-23],[-171,-49],[-34,-22],[-10,-10],[-1,-25],[31,-45],[94,-94],[13,-23],[6,-21],[-3,-26],[-8,-28],[-15,-17],[-8,-9],[-29,-24],[-88,-34],[13,-46],[4,-16],[92,-95],[40,-36],[43,-27],[58,-23],[38,-9],[107,-5],[158,1],[37,-4],[26,-14],[2,-2],[11,-19],[5,-30],[-28,-33],[-64,-27],[46,-22],[68,-33],[3,-1],[8,-3],[6,-2],[91,-37],[2,-1],[7,-3],[31,-15],[1,0],[46,-2],[77,5],[37,15],[26,16],[17,18],[16,34],[7,19],[21,-12],[96,-51],[4,-2],[8,-4],[8,-3],[41,-15],[24,-13],[42,-35],[17,-27],[11,-17],[3,-37],[48,-64],[90,-72],[26,-29],[26,-59],[1,-7],[1,-47],[-3,-19],[-23,-40],[-16,-14],[-30,-12],[-34,-5],[-101,0],[-27,-14],[7,-11],[17,-27],[21,-20],[119,-59],[7,-4],[7,-5],[6,-3],[34,-25],[1,-2],[7,-5],[6,-5],[6,-6],[5,-7],[5,-6],[8,-12],[4,-7],[2,-3],[50,-57],[73,-64],[48,-30],[28,-11],[169,-6],[6,-8],[57,-88],[11,-17],[1,-2],[-18,-9],[47,-116],[2,-6],[31,-16],[61,-72],[-20,-48],[-11,-4],[-33,-12],[-70,11],[-84,42],[-101,68],[-66,15],[-1,-6],[-3,-7],[-1,-2],[-23,-55],[-2,-6],[-4,-7],[-3,-6],[-25,-37],[0,-1],[-5,-6],[-5,-6],[-1,-2],[-21,-23],[0,-52],[-9,-84],[-4,-24],[-3,-15],[8,-16],[46,-95],[49,-155],[33,-108],[-1,-68],[-32,-74],[-55,-42],[-108,-34],[-205,5],[-8,-47],[-3,-18],[65,-70],[183,-11],[197,47],[35,-5],[10,-11],[15,-16],[-13,-32],[-79,-51],[-2,-2],[-10,-6],[-12,-19],[-12,-19],[-49,-78],[8,-4],[3,-1],[2,-1],[19,-10],[19,1],[71,2],[2,0],[3,0],[9,0],[9,-1],[9,-1],[9,-2],[8,-2],[9,-3],[6,-3],[8,-3],[120,77],[65,23],[54,-8],[7,-1],[56,-43],[10,-42],[-28,-63],[-50,-32],[-14,-32],[8,-9],[5,-4],[87,-14],[61,13],[79,32],[66,46],[55,20],[32,-5],[20,-3],[36,-46],[-27,-64],[-56,-42],[-9,-44],[10,-9],[37,-32],[63,-5],[100,-5],[-9,-22],[-56,-149],[-51,-54],[-91,-64],[-73,-31],[-1,0],[-36,-16],[-7,-3],[-8,-4],[-7,-5],[-2,-1],[-131,-89],[-60,-21],[-59,-8],[-60,10],[-150,103],[-5,0],[-88,-3],[-1,-2],[49,-125],[5,-8],[1,-3],[4,-7],[3,-7],[3,-7],[2,-8],[1,-7],[1,-8],[6,-11],[106,-65],[-2,-3],[-1,-2],[-4,-7],[-3,-7],[-1,-2],[-48,-130],[-25,-24],[-84,-41],[-67,8],[-13,-7],[-176,-100],[6,-23],[-4,-2],[-8,-4],[-2,-1],[-58,-23],[-146,-27],[-428,-42],[-3,0],[-2,-1],[-126,-16],[-29,-3],[-129,25],[-228,-12],[-8,0],[-92,0],[-427,-32],[-25,-3],[-13,-4],[-107,-61],[-168,-236],[-17,-24],[11,-6],[270,-141],[5,-3],[4,-3],[222,-139],[130,-35],[2,-1],[5,-1],[106,-35],[4,-1],[8,-4],[8,-3],[7,-4],[8,-5],[7,-5],[6,-5],[6,-6],[6,-6],[5,-6],[5,-6],[4,-7],[4,-7],[3,-7],[3,-8],[2,-7],[1,-8],[1,-4],[0,-6],[2,-12],[0,-3],[0,-8],[53,-32],[74,-81],[0,-1],[4,-7],[3,-8],[4,-6],[5,-7],[5,-6],[6,-6],[6,-6],[7,-5],[7,-5],[7,-4],[8,-4],[8,-4],[42,-18],[84,-41],[62,-51],[2,-2],[1,-5],[3,-7],[0,-2],[-2,-35],[-76,-126],[-2,-2],[-3,-8],[-3,-6],[-20,-50],[-1,-1],[-1,-2],[-15,-41],[-1,-5],[-3,-8],[-1,-7],[-1,-8],[0,-8],[0,-8],[-87,-102],[-3,-4],[-5,-7],[-112,-89],[-161,-116],[-142,-51],[-22,-3],[-17,-2],[-57,-2],[-227,31],[-12,-5],[-10,-5],[-12,-16],[0,-6],[14,-107],[3,-29],[65,-44],[155,-71],[103,-62],[55,-65],[4,-35],[40,-80],[70,-74],[86,-59],[9,-4],[47,-16],[101,-57],[56,-31],[43,-53],[-50,-71],[-81,-38],[-35,-3],[-13,-1],[-10,2],[-103,17],[-86,36],[-22,6],[-45,11],[-33,-12],[-9,-21],[25,-92],[-2,-7],[-17,-39],[-3,-6],[-2,0],[-199,-4],[-24,0],[-35,56],[-83,19],[-14,-48],[-1,-2],[-2,-8],[-3,-7],[-3,-4],[-4,-8],[0,-1],[-30,-118],[-31,-118],[-1,-2],[-36,-63],[-4,-6],[-5,-7],[-5,-6],[-6,-6],[-4,-4],[-29,-26],[-90,-156],[-28,-21],[-27,-21],[-5,-2],[-68,-24],[-4,-1],[-24,-4],[-33,-5],[-171,-26],[-168,-25],[-59,-9],[-122,19],[-29,9],[-250,-31],[-42,-31],[-5,-3],[-7,-4],[-8,-5],[-6,-2],[-35,-16],[-2,-1],[-8,-3],[-1,0],[-31,-11],[-108,-175],[-18,-9],[-54,-29],[-7,-1],[-9,-2],[-5,-1],[-360,-95],[-3,-1],[-6,-2],[-70,-24],[-3,-1],[-33,8],[-31,16],[-57,61],[-12,36],[20,70],[45,38],[-21,21],[-109,-64],[-1,-1],[-4,-2],[-352,-187],[-3,-2],[-45,-22],[-49,-25],[-6,-9],[-20,-107],[-1,-4],[-2,-7],[-3,-8],[-3,-7],[-4,-7],[-1,-2],[79,-40],[101,-52],[148,-80],[-64,-51],[-95,-64],[-176,-105],[-142,48],[-6,1],[-8,2],[-9,2],[-9,2],[-9,0],[-9,1],[-9,-1],[-9,0],[-6,-1],[-92,-15],[-2,0],[-9,-2],[-9,-2],[-8,-3],[-8,-3],[-8,-4],[-8,-4],[-7,-4],[-7,-5],[-7,-5],[-6,-6],[-2,-3],[-142,-147],[-3,-3],[-5,-7],[-3,-5],[-15,-21],[-1,-1],[-4,-7],[-4,-7],[-3,-7],[-3,-7],[-19,-61],[0,-1],[-2,-7],[-2,-8],[-1,-7],[0,-1],[-17,-244],[-54,-153],[-20,-38],[-124,-122],[-128,-100],[-125,-37],[-62,-11],[-137,-13],[-78,-18],[-99,-49],[-34,-17],[-72,-5],[-55,-19],[-33,-35],[25,-43],[0,-1],[-12,-28],[-1,-39],[7,-42],[1,-7],[-98,-99],[-37,-24],[-101,-67],[-20,-42],[-32,-17],[-90,-46],[-140,-68],[-49,-23],[-3,-2],[-137,-57],[-86,-36],[-39,-34],[-29,-14],[-8,-4],[-235,-101],[-16,-2],[-1,0],[-9,-1],[-9,-2],[-8,-2],[-2,-1],[-423,-129],[-4,-1],[-58,-20],[-3,0],[-8,-4],[-8,-3],[-7,-4],[-3,-2],[-28,-17],[-5,-3],[-7,-5],[-6,-5],[-7,-6],[-5,-6],[-6,-6],[-4,-7],[-1,-1],[-68,-26],[-47,-19],[-78,5],[-49,7],[-1,0],[-107,9],[-1,0],[-1,0],[-62,-4],[-4,0],[-375,-11],[-14,1],[-9,0],[-1,1],[-73,8],[-8,2],[-2,0],[-57,11],[-206,-22],[-65,-24],[-61,-44],[-34,-25],[-13,-18],[-29,-38],[-27,-64],[-80,-123],[-27,-19],[-96,-30],[-58,-7],[-63,4],[-121,20],[-48,19],[-54,25],[-27,29],[-69,37],[-382,113],[-20,-7],[-170,-24],[-111,-15],[-204,-81],[-61,-27],[-187,-94],[-154,-60],[-90,-3],[-23,-1],[-135,26],[-96,0],[-226,16],[-100,-3],[-59,-12],[-77,-30],[-60,-33],[-135,-84],[-73,-48],[-51,-24],[-54,-31],[-55,-37],[-58,-65],[0,-66],[100,-95],[70,-75],[13,-54],[-22,-42],[-58,-27],[-58,-11],[-212,20],[-92,0],[-230,-47],[-64,-38],[-17,-43],[-8,-84],[-41,-98],[2,-75],[40,-34],[98,-56],[38,-44],[-13,-44],[-49,-43],[-47,-21],[-90,-61],[2,-57],[18,-57],[23,-47],[29,-64],[94,-162],[25,-59],[0,-52],[-29,-51],[-73,-44],[-79,-27],[-102,-29],[-77,-19],[-89,1],[-98,-2],[-53,-10],[-67,-14],[-72,-22],[-100,-31],[-79,-13],[-97,-16],[-86,-25],[-113,-53],[-54,-27]],[[10613,87170],[-26,-600],[11,-63],[24,-75],[37,-688],[-6,-85],[-213,-480],[-34,-75],[-21,-77],[-6,-63],[13,-986],[-28,-49],[-113,-86],[-104,-48],[-93,-28],[-98,-26],[-395,-68],[-80,-34],[-59,-29],[-46,-49],[-29,-48],[-35,-72],[-20,-58],[-31,-160],[-26,-43],[-8,-13],[-28,-46],[-16,-52],[9,-92],[13,-79],[108,-749],[6,-46],[-33,-57],[-69,-82],[-47,-64],[-12,-17],[-44,-63],[-77,-76],[-54,-46],[-41,-49],[-65,-50],[-67,-65],[-50,-43],[-80,-50],[-41,-29],[-96,-56],[-63,-32],[-79,-43],[-71,-35],[-98,-48],[-75,-33],[-75,-32],[-126,-53],[-126,-47],[-132,-45],[-136,-45],[-129,-44],[-118,-38],[-111,-29],[-215,-50],[-106,-24],[-569,-138],[-62,-11],[-609,-108],[-1520,-268],[-282,-15]],[[3841,80218],[-62,38],[-9,6],[-181,95],[-30,43],[-12,18],[-1,1],[-47,68],[-56,69],[-117,85],[-92,64],[-57,59],[-5,86],[-5,91],[-15,66],[-7,35],[-66,83],[-92,67],[-20,14],[-47,44],[-43,40],[-42,71],[21,32],[43,52],[92,46],[33,38],[84,96],[10,85],[-7,14],[-64,122],[-5,9],[-3,3],[-102,81],[-70,119],[-42,115],[-9,92],[-1,17],[-77,77],[-125,82],[-130,62],[-39,57],[-12,18],[-4,37],[6,73],[110,115],[33,68],[27,138],[31,170],[1,3],[-1,2],[-52,119],[-15,69],[62,58],[191,83],[54,21],[126,50],[-5,35],[-17,12],[-36,27],[-1,0],[-39,28],[-124,117],[-67,40],[25,40],[52,21],[20,8],[72,32],[54,45],[51,51],[39,42],[15,74],[-48,58],[-2,22],[-4,47],[30,19],[65,41],[51,50],[27,47],[17,29],[39,38],[59,29],[9,5],[115,-8],[57,22],[2,112],[-37,44],[-76,49],[-35,46],[45,85],[27,51],[10,80],[-31,64],[-4,43],[-2,31],[4,7],[57,26],[10,5],[146,20],[-6,141],[-62,61],[-53,44],[-2,4],[-9,23],[23,35],[76,34],[89,39],[43,27],[27,24],[10,27],[33,67],[49,57],[57,67],[14,26],[17,67],[-40,33],[-85,11],[-63,12],[-5,1],[-36,75],[5,44],[14,121],[7,56],[-18,170],[-2,31],[21,116],[1,44],[-2,111],[-4,164],[-8,59],[21,251],[3,128],[1,51],[0,199],[-8,82],[-13,78],[-12,138],[2,37],[2,14],[30,67],[38,56],[45,59],[56,48],[64,57],[111,75],[48,40],[55,64],[48,40],[20,24],[56,67],[87,159],[10,19],[16,40],[23,67],[32,78],[33,50],[51,78],[26,54],[38,86],[16,33],[13,58],[31,54],[65,76],[43,42],[73,52],[72,38],[75,31],[65,39],[111,69],[52,37],[42,44],[50,61],[26,49],[11,49],[17,112],[0,10],[1,9],[-27,336],[-1,6],[-10,64],[-11,67],[-19,87],[-15,51],[-29,44],[-9,9],[-138,72],[-162,105],[-96,113],[-56,51],[-35,26],[-62,31],[-58,30],[-83,45],[-51,35],[-68,59],[-53,62],[-47,56],[-27,19],[-82,46],[-121,61],[-23,7],[-80,28],[-15,6],[-74,32],[-103,32],[-118,45],[-101,58],[-95,59],[-69,56],[-87,121],[-2,2],[-77,91],[-45,30],[-26,13],[-36,9],[-68,16],[-32,17],[-16,21],[-36,77],[-8,33],[18,103],[-1,26],[-8,13],[-64,34],[-22,18],[32,48],[10,23],[1,2],[2,38],[0,3],[-42,50],[11,56],[32,28],[28,44],[27,42],[-8,43],[-16,89],[2,38],[14,28],[79,26],[8,7],[33,28],[50,76],[11,17],[25,8],[118,38],[73,47],[63,77],[61,75],[13,35],[133,357],[147,503],[79,243],[80,212],[2,3],[205,312],[93,91],[37,36],[141,90],[146,80],[22,8],[163,61],[175,85],[74,77],[32,74],[12,54],[9,117],[0,91],[-37,394],[-14,338],[-4,121],[11,141],[15,191],[61,403],[-20,182],[-21,46],[-30,24],[-45,37],[-8,5],[-175,110],[-57,34],[-136,106],[-126,132],[-112,154],[-14,20],[-9,15],[-8,12],[-63,147],[-22,115],[18,95],[37,60],[130,127],[26,48],[45,94],[12,33],[57,90],[21,33],[119,250],[24,49],[84,173],[153,2],[243,4],[9,0],[323,5],[143,3],[284,4],[170,3],[446,8],[10,0],[154,3],[87,1],[347,6],[1,0],[12,0],[131,2],[264,5],[310,5],[76,1],[30,0],[37,1],[356,6],[111,1],[46,1],[933,12],[47,1],[200,2],[107,2],[51,1],[56,0],[31,1],[140,1],[615,8],[486,8],[165,3],[45,1],[17,0],[106,2],[9,0],[862,15],[10,0],[63,1]],[[76050,89186],[-185,-161],[-340,-279],[-435,-387],[-55,-20],[-531,-444],[-154,-129],[-59,-49],[-76,-71],[-57,-51],[-189,-147],[-400,-350],[-49,-26],[-267,-235],[-199,-189],[-76,-83],[-108,-116],[-123,-74],[-87,-41],[-2,-1],[-53,-48],[-147,-130],[-92,-35],[-625,287],[-586,250],[-141,60],[-1126,480],[-1136,486],[-390,162],[-1174,494],[311,-698],[335,-721],[22,-62],[27,-54],[43,-96],[244,-536],[16,-31],[12,-23],[27,-55],[8,-18],[44,-95],[10,-23],[202,-467],[-1040,307],[-66,20],[-705,194],[-191,57],[-227,65],[-463,131],[-140,53],[-53,20],[-46,17],[-28,-40],[-59,-74],[-90,-110],[-116,-147],[-221,-273],[-109,-138],[-203,-246],[-56,-67],[-28,-30],[-1,0],[-36,-38],[-223,-266],[-203,-252],[-119,-149],[-314,-376],[-112,-136],[-201,-246],[-111,-134],[-133,-166],[-75,-88],[-179,-206],[-87,-97],[-10,-13],[-113,-134],[-31,-42],[-209,-290],[-91,-127],[-14,-17],[-53,-68],[-408,-453],[-5,-4],[-77,-58],[-89,-109],[-162,-200],[-70,-88],[-523,-590],[-52,-60],[-12,-14],[-202,-248],[-393,-443],[-244,-292],[-187,-223],[-99,-144],[-77,-59],[-83,-83],[-102,37],[-67,40],[-15,9],[-79,11],[-56,19],[-486,165],[-109,38],[-56,20],[-14,4],[-874,268],[-150,50],[-487,154],[-529,176],[-185,57],[-1045,321],[-252,83],[-125,41],[-18,6],[-393,123],[-68,22],[-56,17],[0,1],[-511,163]],[[53973,81111],[337,356],[-563,173],[-456,140],[-1135,356],[-872,274],[-474,154],[-171,55],[-152,48],[-26,9],[-60,11],[-618,200],[-149,41],[-230,74],[-52,19],[-64,12],[-190,62],[-434,138],[-137,47],[417,514],[1,1],[79,98],[4,5],[71,88],[4,4],[1325,1632],[1259,1550],[-154,81],[-239,63],[-426,134],[-867,264],[-539,168],[-124,39],[-16,5],[-606,195],[-493,160],[-280,74],[-320,94],[-897,297],[-74,10],[-214,82],[-18,4],[-209,51],[-709,232],[-1787,587],[-67,22]],[[44859,99621],[758,-7],[274,-2],[133,-1],[1422,26],[738,13],[70,1],[146,2],[259,4],[1451,-12],[429,-13],[326,-11],[766,-24],[220,-7],[7,0],[143,-5],[49,-1],[80,-3],[212,-7],[637,-20],[300,-9],[193,2],[263,3],[208,-3],[83,-1],[237,-3],[1037,-30],[238,-7],[483,-14],[782,-39],[221,-14],[116,-2],[377,12],[568,12],[511,-4],[120,-1],[326,-1],[218,0],[232,3],[240,3],[120,1],[85,1],[62,1],[4,0],[821,14],[402,7],[84,1],[567,9],[373,7],[18,0],[16,0],[40,1],[111,1],[134,2],[423,5],[605,8],[94,1],[79,1],[286,4],[101,1],[36,0],[117,1],[115,1],[866,6],[17,0],[259,-5],[129,-1],[64,0],[17,0],[365,-4],[154,-1],[235,-2],[72,0],[184,-1],[288,-2],[290,-2],[1,0],[6,0],[103,1],[112,1],[316,2],[25,1],[1,0],[8,0],[2,0],[170,1],[32,1],[123,1],[247,2],[5,0],[633,6],[353,4],[315,3],[89,1],[316,3],[528,8],[195,3],[405,6],[362,6],[93,2],[311,7],[362,6],[141,3],[359,6],[1675,29],[602,10],[477,8],[834,-12],[429,-11],[350,-10],[140,2],[323,5],[383,9]],[[53973,81111],[-663,-744],[-109,-141],[-240,-305],[-49,-55],[-127,-144],[-188,-210],[-494,-525],[-102,-111],[-99,-106],[-204,-223],[-18,-20],[-47,-51],[-34,-38],[-3,-4],[-364,-409],[-54,-62],[-227,-260]],[[50951,77703],[-231,-269],[-198,-256],[-500,-576],[-484,-555],[-414,-599],[-108,-132],[-65,-73],[-42,-61],[-72,-80],[-62,-77],[-454,-556],[-229,-276],[-668,145],[-197,99],[-162,74],[-273,133],[-740,331],[-194,94],[-451,213],[-2,1],[-115,44],[-35,16],[-540,249],[-323,151],[-1691,790],[-61,-70],[-125,-155],[-108,-128],[-76,-92],[-84,-100],[-116,-144],[-124,-146],[-50,-60],[-64,-79],[-135,-163],[-119,-144],[-127,-152],[-116,-139],[-104,-138],[-1514,-1831],[-1094,387],[-98,32],[-190,70],[-142,52],[-371,129],[-202,70],[-1225,427],[-13,4],[-213,54],[-267,110],[-493,177],[-17,5],[-204,59],[-315,94],[-815,268],[-1987,397]],[[32132,75327],[-1708,329],[1557,1783],[223,267],[-1177,382],[-203,66],[1087,1376],[-1002,190],[-1487,1197],[-259,217],[-124,114],[-60,43],[-12,9],[-363,302],[-118,107],[-258,224],[-197,177],[-173,154],[-193,168],[-185,161],[-207,180],[-107,95],[-56,55],[-339,229],[-281,44],[-9,2],[-397,50]],[[81237,70795],[-73,-33],[-52,-28],[-92,-56],[-86,-37],[-53,-10],[-49,-15],[-54,-16],[-66,-25],[-18,-7],[-74,-27],[-22,-8],[-99,-36],[-53,-12],[-28,-6],[-68,-4],[-97,-5],[-102,-4],[-104,-6],[-96,-17],[-55,-12],[-75,-25],[-79,-32],[-76,-30],[-69,-22],[-64,-17],[-67,-104],[-53,6],[-88,11],[-119,90],[-129,88],[-195,75],[-205,99],[-126,19],[-77,22],[-186,66],[-16,7],[-207,82],[-303,50],[-84,2],[-67,-17],[-40,-7],[-236,-19],[-92,-28],[-89,-28],[-57,-32],[-138,-79],[-108,-62],[-51,-32],[-116,-77],[-42,-79],[-120,-43],[-185,-44],[-145,-17],[-54,3],[-199,32],[-156,47],[-84,12],[-255,36],[-50,-9],[-85,-26],[-12,-2],[-156,-22],[-117,-5],[-193,-9],[-228,-6],[-43,-2],[-31,3],[-86,2],[-49,1],[-46,6],[-188,26],[-63,0],[-56,-7],[-91,3],[-151,-44],[-6,-11],[-40,-15],[-37,-84],[-52,-120],[-70,-49],[-61,-23],[-172,-44],[-62,-41],[-293,-88],[-28,-5],[-51,-9],[-11,-2],[-56,-16],[-62,-21],[-101,-24],[-63,-21],[-163,-61],[-111,-24],[-121,-16],[-70,-8],[-140,-18],[-51,19],[-94,16],[-192,38],[-123,14],[-53,-2],[-140,-66],[-21,-10],[-1,0],[-35,-10],[-8,-26],[-16,-12],[-21,-61],[-13,-35],[33,-45],[5,-4],[37,-21],[30,-48],[2,-72],[-26,-46],[-15,-57],[10,-173],[-11,-128],[-47,-82],[-72,-60],[-40,-27],[-34,-55],[-35,-35],[-101,-59],[-56,-22],[-64,-11],[-103,-6],[-77,-41],[-17,-63],[-53,-53],[-97,-25],[-64,-10],[-105,-13],[-13,-4],[-56,-10],[-14,-12],[-5,-2],[-39,-12],[-49,-45],[-54,-46],[-61,-32],[-82,-40],[-54,-64],[-11,-12],[-108,-120],[-159,-197],[-53,-94],[-66,-180],[85,-105],[18,0],[73,-17],[106,53],[85,26],[96,-31],[-38,-40],[26,-62],[-11,-88],[-22,18],[-43,-17],[-33,-109],[17,-49],[-1,0],[-42,-37],[70,-31],[3,-95],[17,-69],[38,-44],[50,-59],[58,-78],[70,-98],[20,-52],[58,-66],[151,-89],[71,-70],[31,-54],[27,-36],[28,-75],[1,-44],[-37,-59],[-80,-91],[-23,-65],[-74,-162],[-21,-46],[-37,-74],[-17,-47],[-21,-88],[5,-58],[29,-104],[34,-64],[-29,-86],[-87,-140],[-48,-43],[-54,-23],[-31,-8],[-29,-5],[-3,-2],[-38,-10],[-57,-78],[78,-78],[-13,-53],[37,-32],[-6,-44],[-6,-44],[-35,-85],[-35,-46],[-44,-46],[-76,-41],[-100,-44],[-29,-49],[-1,-54],[-31,-69],[-10,-66],[-17,-49],[-18,-48],[9,-48],[42,-29],[41,-32],[65,-54],[84,-76],[90,-99],[31,-37],[74,-103],[35,-88],[26,-74],[79,-114],[25,-44],[23,-98],[38,-85],[70,-63],[54,-22],[71,-36],[28,-40],[14,-50],[39,-55],[74,-11],[146,14],[44,-23],[-15,-45],[-72,-95],[21,-14],[68,-29],[48,-14],[41,7],[21,11],[24,-1],[21,-14],[1,-19],[-17,-13],[-13,-13]],[[70952,62407],[-59,16],[-52,14],[-13,4],[-126,28],[-48,13],[-33,7],[-23,5],[-62,13],[-144,34],[-56,13],[-231,55],[-79,18],[-352,84],[-54,13],[-59,15],[-164,40],[-635,150],[-28,6],[-71,15],[-112,25],[-151,36],[-49,12],[-52,15],[-275,65],[-112,27],[-51,12],[-74,14],[-154,37],[-209,52],[-26,6],[-28,7],[-295,70],[-79,18],[-224,53],[-82,27],[-461,111],[-238,60],[-74,19],[-64,15],[-532,127],[-755,182],[-112,25],[-97,23],[-87,1],[-122,5],[-51,0],[-391,-23],[-206,-12],[-212,-12],[-69,-7],[-315,-16],[-263,-12],[-282,-13],[-68,-12],[-461,-22],[-55,-2],[-421,-24],[-391,-24],[-51,-3],[-580,-21],[-370,-25],[-736,-50],[-465,-32],[-126,-9],[-773,-59],[-5,0],[-339,-17],[-77,34],[-320,86],[-188,50],[-183,50],[-76,20],[-149,42],[-924,262],[-1301,370]],[[54300,64513],[273,308],[286,322],[1075,1213],[147,166],[180,207],[136,156],[546,620],[-56,934],[-1,36],[-2,27],[-6,132],[469,338],[121,99],[540,465],[168,117],[114,79],[299,181],[94,68],[350,284],[198,155],[83,50],[103,143],[602,689],[73,68],[240,273],[80,110],[106,125],[85,110],[206,227],[547,457],[254,212],[-96,130],[40,55],[1,1],[94,125],[33,22],[25,17],[197,232],[40,47],[35,41],[-88,46],[-40,33],[-51,28],[-98,66],[-13,44],[49,32],[58,5],[-26,32],[-3,4],[40,29],[0,1],[24,38],[-42,59],[1,45],[-27,12],[-19,9],[-5,1],[-58,18],[-48,-28],[-19,-14],[-43,-35],[-59,-41],[-52,-27],[-50,10],[-2,0],[-43,39],[10,41],[3,11],[47,23],[47,8],[8,1],[51,15],[55,25],[60,22],[-6,4],[-7,37],[-68,24],[-1,0],[-209,73],[-33,7],[-36,8],[-11,11],[-305,75],[-11,36],[-181,47],[-467,172],[-125,42],[-175,57],[-381,130],[-273,91],[-421,140],[-281,93],[-480,156],[-446,149],[-1039,344],[-239,82],[-566,186],[-205,67],[-353,118],[-139,46],[-401,133],[-669,222],[-144,48],[-341,108],[-48,16],[-501,166],[-561,185],[-789,260],[-374,124],[-409,140]],[[32132,75327],[-518,-631],[-932,-1135],[-33,-40],[-250,-305],[1760,-563],[-554,-673],[-406,-495],[-43,-64],[-12,-15],[-63,-72],[-6,-19],[-4,-14],[-11,-14],[-5,5],[-37,20],[-13,5],[-20,7],[-21,9],[-19,9],[-17,-2],[-16,-2],[-25,-13],[-35,-13],[-56,-21],[-55,-6],[-57,7],[-49,12],[-70,25],[-73,18],[-90,13],[-61,7],[-66,21],[-50,16],[-87,23],[-66,-2],[-50,5],[-61,26],[-70,12],[-91,15],[-60,33],[-34,6],[-19,4],[-28,6],[-43,6],[-53,27],[-6,-6],[-53,-66],[-27,-35],[-394,-507],[-483,-636],[-96,-129],[-104,-128],[-32,-44],[-155,-199],[-64,-81],[-216,-278],[-387,-498],[-50,-63],[-110,-143],[-226,-291],[-80,-103],[-144,-186],[-206,-266],[307,-93],[476,-146],[-245,-438],[-195,-356],[-203,-360],[-684,-1211],[-353,-586],[-8,-14],[-82,-151],[-78,-133],[-749,-1272],[-256,-502]],[[24660,62644],[-90,371],[-28,126],[-12,43],[-12,57],[-94,425],[0,2],[-11,47],[-16,78],[-11,48],[-45,213],[-20,92],[-19,90],[-26,119],[-26,122],[-11,50],[-32,148],[-21,102],[-53,246],[-7,34],[-20,89],[-23,110],[-50,232],[-33,151],[-14,67],[-11,58],[-45,228],[-23,121],[-8,39],[-24,123],[-8,43],[-18,193],[-285,1395],[-149,773],[-1180,35],[-531,69],[-71,12],[-90,14],[-88,15],[-258,42],[14,-58],[12,-46],[23,-97],[28,-118],[31,-129],[24,-94],[10,-44],[12,-54],[42,-164],[-131,-11],[-75,-6],[-132,-12],[-128,-12],[-177,-15],[-135,-11],[-313,-27],[-208,-18],[-326,-28],[-204,-18],[-140,-12],[-70,-6],[-208,-19],[-208,-18],[-106,-10],[-74,-6],[-13,50],[-33,124],[-22,-3],[-125,-18],[-110,-15],[-73,-10],[-74,-10],[-155,-21],[-103,-13],[-58,-8],[-152,-19],[-185,-22],[-74,-9],[-149,-19],[-98,-11],[-246,-30],[-108,-13],[-65,-8],[-66,-8],[-83,-9],[-96,-11],[-77,-10],[-110,-13],[-79,-8],[-113,-13],[-107,-12],[-205,-24],[-182,-20],[-89,-11],[-102,-11],[-131,-15],[-126,-14],[-165,-19],[-255,-30],[-63,-9],[-311,-36],[-100,-8],[-138,-9],[-163,-16],[-138,-13],[-82,-12],[-257,-32],[-156,-19],[-93,-12],[-83,-7],[-156,-19],[-130,-15],[-130,-16],[-137,-16],[-110,-13],[-74,-9],[-368,-44],[-98,-8],[-25,-2],[-130,-10],[-73,-6],[-112,-9],[-266,-21],[-83,-7],[-173,-14],[-146,-12],[-140,-11],[-161,-13],[-57,-3],[-59,-5],[-51,-4],[-57,-5],[-101,-9],[-27,-2],[-514,-41],[-102,-8],[-282,-23],[-259,-17],[-71,-4],[-62,-4],[-53,-4],[-164,-11],[-194,-13],[-108,-8],[-167,-11],[-39,3],[-2139,173]],[[6327,67136],[27,56],[92,388],[-65,252],[-225,325],[-6,9],[-172,357],[-60,142],[-45,105],[-64,237],[-36,133],[-16,368],[-1,35],[36,265],[-9,372],[-58,205],[-93,211],[-19,44],[-148,238],[-222,308],[-16,331],[69,342],[122,121],[41,41],[119,73],[136,81],[223,138],[199,144],[103,111],[75,151],[57,119],[33,138],[64,207],[47,83],[129,203],[122,186],[177,275],[111,160],[148,217],[41,145],[34,118],[34,135],[10,44],[3,60],[-2,44],[-9,57],[-20,50],[-23,54],[-20,42],[-26,47],[-30,48],[-32,54],[-39,54],[-28,40],[-29,36],[-13,17],[-25,33],[-22,45],[-6,21],[-9,35],[8,44],[7,34],[50,255],[10,44],[-2,51],[5,94],[1,49],[-3,53],[-8,50],[-12,49],[-3,45],[-17,60],[-11,58],[-9,45],[-39,83],[-98,147],[-42,62],[-35,55],[-16,50],[-10,52],[-8,78],[-5,53],[0,49],[-3,50],[-9,50],[-14,69],[-17,60],[-16,62],[-32,94],[-26,48],[-40,43],[-33,36],[-40,36],[-29,28],[-14,14],[-39,32],[-37,35],[-42,36],[-39,32],[-48,34],[-48,34],[-48,31],[-77,49],[-46,21],[-44,26],[-39,35],[-36,40],[-15,46],[-8,46],[13,123],[3,24],[-7,44],[-24,47],[-8,47],[6,68],[-12,46],[-34,43],[-40,33],[-57,26],[-71,16],[-20,4],[-61,13],[-50,13],[-48,32],[-32,41],[-25,39],[-9,62],[-1,10],[-1,44],[-14,50],[-26,48],[-37,41],[-69,61],[-47,34],[-56,52],[-48,37],[-47,38],[-39,28],[-17,18],[-22,24],[-6,56],[11,50],[7,36],[-5,17],[0,15],[-21,47],[-107,63],[-68,68],[-14,6],[-363,163],[-85,28],[-107,20],[-130,29],[-54,69],[-51,65],[-108,120],[-73,27]],[[54300,64513],[-313,79],[-49,15],[-242,68],[-537,152],[-329,94],[-89,31],[-240,69],[-87,24],[-389,111],[-56,16],[-278,80],[-101,-347],[-18,-59],[-22,-117],[-8,-47],[-69,-221],[-16,-55],[-129,-429],[-37,-125],[-35,-113],[-48,-160],[-12,-43],[-29,-99],[-81,-269],[-51,-163],[-44,-148],[-52,-177],[-35,-119],[-80,-251],[-1,-6],[-13,-67],[-17,-48],[-12,-33],[-17,-52],[-13,-44],[-122,-428],[-69,-235],[-51,-177],[-71,23],[-284,82],[-304,88],[-203,57],[-146,34],[-306,76],[-191,46],[-87,33],[-176,48],[-166,34],[-231,49],[-317,79],[-62,20],[-322,85],[-272,62],[-113,26],[-545,130],[-67,16],[-107,26],[-19,5],[-136,36],[-86,21],[-296,72],[-253,60],[-106,26],[-546,132],[-87,22],[-424,105],[-44,-80],[-56,-110],[-48,-95],[-71,-118],[-171,40],[-114,26],[-276,61],[-249,76],[-162,50],[-10,2],[-26,6],[-219,15],[-59,15],[-26,-41],[-84,-174],[-217,-445],[-47,-100],[-238,-350],[-227,-324],[-90,-138],[-106,-158],[-40,-60],[-51,-75],[-80,-116],[-2,-4],[-187,-334],[-29,-48],[-48,-81],[-122,-201],[-194,-331],[-124,-212],[-99,63],[-333,40],[-254,-347],[-91,-124],[-8,-87],[-19,-23],[-24,-31],[-36,-35],[-165,-168],[-107,-147],[-58,-80],[-33,-44],[-37,-51],[-271,-371],[-361,-493],[-217,-297],[-37,-54],[-41,-56],[-46,-60],[-87,-146],[-43,-73],[-180,-249],[-326,-398],[-63,3],[-1419,346],[-498,148],[-58,17],[-194,24],[-74,15],[-652,159]],[[35338,56890],[-597,153],[-60,15],[-65,16],[-2,0],[-105,27],[-29,7],[-68,17],[-160,39],[-95,24],[-89,22],[-510,126],[-703,175],[-674,167],[-531,132],[-238,60],[-120,29],[-84,21],[-312,78],[-55,14],[-147,36],[-70,18],[-149,37],[-192,48],[-280,69],[-87,22],[-100,23],[-71,16],[-3,0],[-99,23],[-50,11],[-79,19],[-94,22],[-40,10],[-224,53],[-139,32],[-499,118],[-56,14],[-93,21],[-149,36],[-86,20],[-153,36],[-515,122],[-362,-27],[-219,-17],[-96,-8],[-332,-26],[-84,328],[-32,125],[-15,57],[-18,75],[-32,127],[-25,98],[-36,145],[-17,76],[-9,57],[-11,64],[-17,102],[-8,45],[-8,52],[-40,132],[-40,125],[-39,119],[-16,50],[-19,53],[-33,161],[-18,93],[-17,85],[-40,246],[-182,744],[-82,427],[-38,322],[-11,88],[-910,-92]],[[35338,56890],[-53,-37],[-106,-135],[-106,-137],[-280,-357],[-35,-46],[-18,-22],[-66,-78],[-17,-21],[-38,-43],[-55,-66],[-188,-218],[-33,-38],[-60,-70],[-20,-24],[-90,-105],[-191,-222],[-57,-66],[-75,-88],[-129,-150],[-53,-62],[-253,-295],[-50,-58],[-232,-266],[-138,-158],[-39,-44],[-130,-149]],[[32826,53935],[-282,-323],[-222,-254],[-33,-37],[-81,-93],[-175,-220],[-155,-198],[-53,12],[-257,60],[-95,-109],[-65,-86],[-35,-46],[-41,-55],[-33,-43],[-60,-80],[-29,-38],[-128,-170],[-51,-67],[-80,-108],[-159,-212],[-33,-44],[-35,-48],[-6,-8],[-220,-294],[-57,-76],[-448,-606],[-142,-192],[-32,-42],[-121,-161],[-28,-38],[-159,-215],[-64,-86],[-75,-102],[-40,-54],[-48,-65],[-53,-71],[-160,-207],[-451,105],[8,135],[-40,515],[-6,76],[-8,126],[-10,77],[-65,761],[-357,-116],[-171,-56],[-280,-91],[-215,-70],[-81,-27],[-52,-17],[-124,-40],[-52,-17],[-180,-53],[-239,-70],[-69,-21],[-123,-36],[-370,-109],[-101,-30],[-178,-52],[-53,-18],[-185,-60],[-48,-16],[-27,-9],[-28,-9],[-142,-46],[-268,-88],[-153,-50],[-48,-14],[-227,-67],[-76,-23],[-38,-13],[-71,17],[-446,110],[-271,68],[-586,142],[-1,-815],[369,121],[54,-140],[385,-1006],[9,-21],[175,-388],[90,-199]],[[24321,48025],[-411,-131],[-229,-83],[-184,-57],[-296,-101],[-25,-8],[-24,-9],[-105,-35],[-147,-50],[-68,-23],[-63,-24],[-220,-64],[-100,-30],[-387,-118],[-378,-116],[-317,-97],[-17,54],[-22,72],[-34,107],[-21,71],[-13,43],[-22,74],[-18,59],[-29,89],[-23,75],[-18,58],[-17,59],[-22,68],[-19,67],[-23,73],[-31,105],[-16,42],[-28,96],[-119,398],[-4,17],[-5,0],[-14,-2],[-27,-1],[-52,-2],[-30,-6],[-31,-11],[-19,-7],[-11,0],[-17,4],[-4,9],[-57,129],[101,10],[2,22],[5,55],[-242,-5],[-412,-10],[-10,0],[-441,-11],[-282,-9],[-7,0],[-1043,-32],[-340,-10],[-328,-10],[-107,-3],[-56,-2],[-122,-4],[-240,-7],[-139,-4],[-99,-2],[-22,-1],[-1006,-32],[-358,-11],[-474,-15],[-41,-1],[-26,-1],[-213,-6],[-3,-1],[-143,-4],[-44,-2],[-211,-9],[31,-115],[-135,-5],[-455,-14],[-82,-3],[-128,-4],[-346,-11],[-358,-11],[-95,-3],[-78,-3],[-65,-2],[-131,-4],[-114,-4],[-14,0],[-297,-10],[-78,-2],[-246,-8],[-132,-5],[-141,-4],[-322,-17],[12,-62],[48,-249],[24,-119],[11,-49],[27,-132],[19,-92],[19,-90],[34,-154],[33,-149],[18,-85],[66,-307],[19,-90],[48,-236],[1,-6],[12,-61],[11,-52],[27,-133],[15,-71],[25,-121],[14,-67],[11,-52],[9,-43],[16,-78],[36,-168],[48,-230],[38,-178],[-333,-26],[-151,-11],[-234,-18],[-90,-8],[-86,-7],[-30,-2],[-56,-5],[-219,-18],[-73,-6],[-153,-12],[-68,-5],[-118,-10],[-88,-8],[-269,-22],[-224,-16],[-164,-10],[-282,-21],[-67,-6],[-118,-8],[-51,-4],[-97,-8],[-97,-7],[-207,-16],[-105,-8],[-276,-20],[-127,-10],[-56,-4],[-56,-4],[-51,-3],[-62,-5],[-252,-19],[-326,-25],[-194,-14],[-319,-24],[-232,-17],[-18,-2],[-148,-10],[-108,-8],[-124,-9],[-127,-9],[-202,-14],[-69,-5],[-469,-35],[-491,-34],[-89,-7],[-131,-10],[-75,-5],[-90,-7],[-84,-7],[-73,-5],[-38,-3],[-64,-5],[-102,-7],[-104,-16]],[[3821,44810],[189,261],[166,200],[74,82],[100,151],[67,93],[-5,65],[-62,60],[-104,106],[-52,86],[-30,113],[-56,126],[-28,108],[-156,109],[-20,11],[-98,52],[-77,58],[-31,12],[-138,51],[-113,59],[-81,43],[-177,118],[-111,61],[-7,54],[-15,107],[-29,140],[-37,62],[-11,21],[-2,2],[-11,16],[-29,47],[-34,55],[-67,61],[-81,49],[-46,28],[-57,36],[-108,50],[-90,47],[-73,60],[-35,51],[-24,39],[-32,101],[12,50],[47,107],[27,44],[25,42],[21,46],[46,80],[56,62],[42,36],[56,41],[64,41],[97,49],[90,41],[93,33],[86,24],[54,30],[3,1],[9,8],[47,41],[56,65],[34,36],[4,7],[33,56],[23,44],[-12,58],[-39,38],[-56,34],[-53,32],[-27,15],[-19,12],[-25,13],[-43,22],[-61,35],[-53,30],[-50,49],[-23,27],[-16,19],[-4,21],[-11,64],[23,89],[14,39],[17,45],[24,39],[31,47],[24,52],[30,88],[47,70],[33,46],[49,77],[26,55],[43,87],[43,63],[13,44],[-20,72],[-265,354],[-202,272],[-117,96],[-517,427],[-25,52],[-35,90],[-30,87],[-40,83],[-45,78],[-45,111],[-35,99],[-60,127],[-60,99],[-24,30],[-31,38],[-57,85],[-31,46],[-32,53],[-6,10],[-36,70],[-2,4],[-35,88],[-11,65],[-4,49],[5,62],[10,61],[16,67],[18,75],[22,84],[16,47],[1,3],[26,77],[27,58],[22,59],[7,72],[-1,69],[-6,73],[3,52],[-7,77],[-18,80],[-18,76],[-4,82],[2,69],[-12,123],[-8,50],[-10,54],[-26,42],[-30,45],[-24,41],[-19,46],[-37,64],[-47,57],[-43,68],[-27,49],[-10,51],[-12,54],[-1,45],[-1,52],[7,46],[17,49],[27,39],[16,43],[17,86],[8,49],[2,45],[13,64],[17,47],[23,46],[6,18],[17,55],[8,57],[2,59],[6,71],[2,32],[24,43],[20,66],[20,52],[15,61],[5,52],[17,66],[24,66],[18,63],[5,62],[2,34],[1,20],[-3,56],[-11,45],[-19,43],[-22,49],[-25,78],[-17,45],[-18,32],[-10,18],[-40,57],[-4,6],[-32,53],[-30,61],[-108,80],[-78,42],[-37,14],[-28,11],[-68,22],[-84,24],[-71,22],[-87,19],[-62,25],[-11,5],[-7,4],[-39,26],[-67,50],[-33,40],[-58,61],[-84,50],[-81,30],[-60,27],[-61,35],[-54,27],[-23,12],[-84,45],[-52,33],[-39,36],[-21,73],[4,19],[15,75],[16,51],[52,102],[38,98],[40,100],[28,76],[32,97],[47,134],[10,71],[35,86],[27,80],[27,98],[19,84],[10,86],[-3,105],[19,100],[25,54],[37,48],[38,49],[54,67],[46,63],[71,94],[57,77],[90,132],[35,45],[112,159],[50,58],[19,20],[33,35],[45,55],[40,90],[6,51],[10,67],[19,69],[14,44],[59,72],[37,51],[26,56],[15,80],[-18,93],[-11,63],[-11,100],[-24,72],[-38,58],[-41,64],[5,62],[-2,63],[-9,54],[-26,54],[-46,70],[-28,59],[25,48],[58,55],[63,69],[65,65],[56,31],[87,36],[53,25],[58,53],[96,76],[51,44],[53,49],[42,86],[3,49],[-15,45],[-22,60],[25,47],[49,33],[58,90],[10,45],[11,54],[29,88],[17,86],[5,57],[28,43],[35,39],[44,31],[48,77],[-10,86],[-32,37],[-23,41],[-21,42],[8,82],[31,83],[34,44],[37,37],[35,33],[66,27],[73,19],[52,40],[12,15],[21,28],[21,62],[-1,19],[-1,28],[-21,92],[-14,42],[-7,49],[-11,48],[5,83],[9,46],[31,36],[102,37],[93,1],[81,19],[42,36],[15,68],[34,55],[43,39],[65,29],[69,29],[72,22],[76,13],[78,16],[57,32],[33,38],[40,39],[29,40],[43,39],[56,28],[56,24],[62,22],[71,15],[33,14],[31,13],[71,24],[57,34],[11,44],[10,39],[-19,42],[0,47],[30,39],[49,31],[47,28],[43,34],[37,38],[17,43],[42,38],[40,33],[28,48],[-1,88],[16,47],[47,32],[59,30],[53,32],[44,30],[18,41],[16,91],[61,83],[56,23],[52,23],[55,22],[63,28],[56,26],[56,32],[-7,79],[-30,42],[65,54],[60,5],[101,15],[71,20],[67,18],[60,31],[55,36],[46,34],[43,39],[52,33],[44,22],[56,-3],[65,-11],[49,-10],[31,-6],[79,-1],[64,28],[28,39],[-4,28],[-6,53],[15,43],[30,36],[54,24],[69,14],[184,356],[95,164],[41,72],[24,43]],[[70952,62407],[-36,-52],[-35,-33],[-8,-7],[-38,-36],[-21,-42],[-18,-46],[6,-53],[30,-58],[15,-52],[-5,-53],[-3,-66],[6,-46],[4,-63],[4,-46],[11,-54],[-19,-125],[55,-39],[55,-34],[98,-65],[59,-23],[144,-35],[22,-45],[-37,-33],[-41,-37],[-49,-40],[-16,-55],[-22,-68],[-24,-41],[-48,-14],[-61,17],[-87,14],[-104,-25],[-60,-32],[-69,-15],[-53,-12],[-48,-25],[-80,-35],[-92,-87],[-21,-3],[-23,-3],[2,39],[-29,-4],[-2,-1],[-31,-35],[-12,-44],[1,-54],[-2,-67],[-14,-87],[-31,-37],[-51,-71],[-16,-42],[26,-42],[37,-109],[34,-57],[27,-53],[8,-65],[-3,-58],[15,-42],[33,-53],[100,-88],[53,-30],[67,-16],[24,3],[65,-7],[72,2],[50,16],[27,43],[1,85],[15,56],[46,43],[48,34],[71,38],[54,-1],[63,-12],[75,-21],[65,-24],[68,-16],[55,-25],[48,-35],[44,-66],[2,-46],[-17,-72],[-12,-53],[-17,-87],[-14,-53],[-21,-42],[-45,-40],[-54,-33],[-63,-26],[-110,-30],[-135,-3],[-101,3],[-64,-4],[-42,-40],[7,-7],[-16,-20],[68,-39],[68,-30],[68,-28],[59,-28],[61,-21],[60,-17],[76,-17],[51,-12],[72,-33],[49,-37],[30,-72],[-28,-45],[-43,-23],[-59,-26],[-108,-26],[-95,-2],[-55,9],[-75,48],[-57,47],[-110,10],[-97,-30],[-66,-21],[-63,-13],[-119,-16],[-50,-11],[-7,-6],[-18,-5],[-1,-9],[-42,-34],[37,-41],[56,-25],[67,-41],[38,-39],[42,-84],[-19,-53],[-100,-88],[-84,-64],[-63,-62],[-37,-38],[-24,-45],[-24,-57],[-36,-56],[-43,-49],[-53,-34],[-74,-16],[-75,2],[-89,11],[-79,6],[-75,0],[-57,-5],[-88,-28],[-36,-70],[16,-51],[66,-32],[56,-11],[66,-10],[57,-13],[76,-48],[37,-52],[-22,-49],[-21,-10],[-73,-13],[-81,-4],[-58,-13],[-53,-16],[-93,-27],[-116,-40],[-79,-31],[-83,-25],[-99,-39],[-68,-56],[-41,-64],[-8,-55],[25,-65],[37,-49],[42,-46],[76,-80],[31,-42],[23,-48],[-18,-54],[-60,-54],[-62,-18],[-60,-10],[-64,-15],[-59,-40],[-34,-52],[1,-60],[14,-48],[-3,-71],[-31,-64],[-87,-35],[-87,1],[-87,30],[-53,24],[-54,32],[-49,32],[-60,19],[-60,22],[-2,4],[-22,5],[-30,-43],[-56,-22],[-36,-55],[-28,-44],[-18,-65],[-2,-48],[9,-43],[15,-31],[75,-83],[105,-45],[88,-28],[35,-70],[-38,-65],[-112,11],[-51,55],[-43,77],[-64,55],[-15,18],[-85,20],[-102,3],[-56,-12],[-64,-12],[-59,-22],[-48,-38],[-60,-19],[-31,-46],[5,-60],[21,-62],[22,-45],[19,-52],[13,-52],[17,-44],[14,-52],[-20,-49],[-46,-28],[-60,-11],[-49,-14],[-50,-20],[-77,-38],[-4,-3],[-25,-61],[-80,-83],[-167,-70],[-50,-32],[-1,-68],[19,-42],[45,-47],[79,-52],[71,-73],[33,-96],[-5,-79],[-60,-166],[6,-27],[29,-131],[-3,-51],[-33,-91],[-16,-67],[43,-117],[59,-37],[139,67],[117,38],[86,-14],[13,-13],[447,-71],[209,-50],[30,-16],[26,-27],[-14,-32],[-84,-26],[-175,-23],[-59,-22],[-62,-4],[-97,-36],[-39,-27],[79,-130],[-4,-4],[-7,-5],[-5,-6],[-5,-6],[-48,-61],[-1,0],[-4,-7],[-4,-7],[-4,-7],[-3,-7],[-3,-7],[0,-1],[-14,-44],[-3,-10],[-62,-56],[-193,-174],[-59,-37],[-33,-19],[-109,-66],[-231,-16],[-89,-37],[-43,-90],[-3,-266],[0,-1],[-2,-7],[0,-1],[-13,-57],[-1,-7],[-1,-8],[0,-7],[0,-88],[0,-6],[3,-52],[8,-140],[0,-2],[1,-8],[20,-114],[21,-116],[2,-7],[3,-8],[2,-17],[-33,-54],[-21,-24],[-331,-327],[-27,-16],[-77,-36],[-252,-28],[-133,-108],[-7,-5],[-3,-2],[-165,-103],[-5,-3],[-6,-3],[-117,-61],[-2,-1],[-6,-2],[-579,-260],[-258,-173],[-67,-97],[-20,-47],[17,-26],[-69,-164],[-52,-37],[-97,-36],[-365,-9],[-121,-115],[-7,-12],[-24,-144],[-1,-6],[-2,-7],[-3,-8],[0,-2],[-22,-51],[-1,-2],[7,-7],[189,-215],[93,-151],[-5,-24],[-44,-16],[-74,-26],[-84,-30],[-98,-34],[-71,-25],[-137,-2],[-28,0],[-14,-2],[-173,-23],[-100,-111],[-84,-112],[-59,-80],[-4,-12],[-27,-82],[2,-13],[202,-369],[2,-5],[25,-132],[37,-255],[1,-7],[0,-7],[0,-33],[0,-8],[-1,-7],[-1,-4],[-17,-90],[-4,-11],[-77,-204],[-4,-10],[-67,-159],[-2,-5],[-4,-7],[-4,-7],[-3,-5],[-24,-32],[-5,-6],[-51,-88],[-8,-37],[4,-30],[0,-4],[5,-48],[7,-16],[6,-6],[1,-1],[6,-6],[5,-6],[5,-7],[4,-6],[4,-7],[3,-8],[2,-7],[2,-7],[1,-5],[6,-33],[1,-2],[48,-129],[3,-18],[18,-93],[22,-114],[-133,-183],[-103,-143],[-199,-397],[-176,-198],[-191,-97],[-179,-93],[-11,-17],[-7,-16],[-1,-19],[11,-39],[0,-3],[2,-8],[1,-7],[0,-5],[2,-73],[76,-164],[-64,-176],[-140,49],[6,-54],[2,-19]],[[62560,45606],[-54,14],[-101,35],[-89,21],[-155,36],[-279,65],[-134,43],[-16,4],[-33,8],[-679,171],[-74,9],[-658,174],[-201,51],[-39,10],[-16,4],[-96,22],[-68,20],[-28,6],[-539,131],[-784,201],[-77,19],[-52,12],[-108,25],[-136,33],[-492,123],[-99,25],[-102,27],[-240,62],[-783,202],[-129,24],[-430,107],[-111,23],[-429,86],[-642,122],[-345,67],[-346,71],[-118,23],[-294,58],[-69,13],[-281,53],[-181,34],[-484,90],[-15,5],[-40,13],[-277,54],[-299,54],[-155,27],[-193,38],[-663,130],[-920,205],[-366,83],[-309,79],[-63,18],[-1603,424],[-184,50],[-140,36],[-51,13],[-7,2],[-80,21],[-86,23],[-15,4],[-181,48],[-438,114],[-144,37],[-87,24],[-805,212],[-86,22],[-630,167],[-382,100],[-265,72],[-147,38],[-101,27],[-120,30],[-177,47],[-81,20],[-66,16],[-24,4],[-146,29],[-9,3],[-174,55],[-525,137],[-783,185],[-28,7],[-64,14],[-345,79],[-110,26],[-59,14],[-257,59],[-86,15],[-396,94],[-134,32],[-52,13],[-31,7],[-170,40],[-60,15],[-16,4],[-247,56],[-311,71],[-176,50],[-62,13],[-79,16],[-64,15],[-94,24],[-52,11],[-1477,363],[-78,8],[-182,38],[-662,135],[-1206,247],[-132,26],[-102,9],[-50,16],[-73,27],[-765,163],[-874,196],[208,245],[-281,68],[223,286],[-535,133],[221,284],[-285,69],[243,291],[-206,60]],[[62560,45606],[5,-70],[-47,-33],[-4,-3],[-7,-5],[-8,-4],[-1,0],[-462,-173],[-182,-112],[-130,-143],[-118,-122],[-66,-72],[-154,-172],[-3,-6],[-38,-64],[-3,-6],[-5,-7],[-5,-6],[-6,-6],[-6,-6],[-7,-5],[-7,-5],[-7,-4],[-8,-4],[-78,-39],[-8,-4],[-6,-2],[-348,-130],[-277,-104],[-201,-89],[-4,-3],[-12,-8],[-7,-4],[-8,-4],[-8,-4],[-8,-3],[-373,-134],[-245,-88],[-97,-34],[0,-1],[-8,-2],[-9,-2],[-9,-2],[-8,-1],[-73,-9],[-9,-1],[-9,0],[-298,-31],[-3,-1],[-20,-16],[0,-1],[-16,-66],[-2,-8],[-2,-7],[-3,-7],[-4,-7],[-2,-3],[-18,-31],[-3,-4],[-5,-7],[-5,-6],[-6,-6],[-4,-4],[-85,-75],[-1,-2],[-7,-5],[-7,-5],[-4,-2],[-215,-132],[-82,-50],[-35,-26],[-2,-3],[-4,-7],[-5,-6],[-3,-4],[-182,-209],[-4,-4],[-286,-248],[-1,-1],[-6,-5],[-1,0],[-113,-85],[-7,-4],[-7,-5],[-2,-1],[-69,-38],[-5,-3],[-8,-4],[-2,0],[-36,-15],[-79,-32],[-80,-76],[-1,-2],[-68,-201],[17,-25],[-126,-114],[-1,-150],[0,-1],[-3,-228],[0,-6],[-1,-8],[-1,-6],[-30,-135],[103,-163],[4,-34],[-4,-164],[-44,-321],[-231,-283],[-179,-171],[-27,-28],[-47,-92],[-71,-191],[0,-1],[-28,-72],[-14,-34],[-142,-342],[-27,-66],[-3,-2],[-7,-4],[-8,-4],[-2,-1],[-33,-16],[-6,-3],[-218,-63],[-70,-39],[-60,-103],[-28,-105],[-35,-85],[-97,-179],[-182,-291],[3,-169],[59,-91],[59,-61],[69,-28],[35,-122],[18,-60],[57,-114],[-84,-114],[-3,-4],[-57,-24],[14,-2],[-41,-11],[-51,-4],[-287,-225],[-135,-111],[-120,-37],[-136,-39],[-82,-34],[-50,-31],[-79,-61],[-97,-36],[-235,-51],[-91,-33],[-32,2],[-59,-22],[-155,-52],[-266,-85],[-114,-33],[-128,-48],[-134,-80],[-196,-167],[-54,-88],[13,-279],[-44,-6],[-2,-2],[-9,-14],[-7,-12],[-26,-39],[-4,-20],[-29,-69],[-2,-73],[8,-69],[32,-56],[34,-118],[18,-201],[-63,-115],[-11,-20],[2,-40],[30,-61],[28,-161],[5,-25],[-59,-144],[-213,-232],[-95,-98],[-80,-61],[-94,-53],[-80,-83],[-153,-219],[-86,-132],[-45,-67],[-15,-39],[6,-47],[0,-1],[33,-52],[88,-72],[2,-2],[10,-8],[96,-42],[6,-3],[5,-3],[17,-9],[58,-31],[4,-2],[7,-5],[1,0],[75,-50],[6,-4],[7,-6],[6,-5],[6,-6],[5,-6],[4,-6],[26,-15],[5,-4],[7,-5],[7,-5],[6,-5],[6,-6],[5,-7],[1,-1],[109,-144],[21,-16],[1,0],[0,-1],[7,-5],[6,-6],[6,-6],[5,-6],[7,-10],[50,-31],[60,-37],[34,-73],[108,-158],[-15,-26],[-19,-32],[-14,-90],[19,-127],[6,-40],[7,-49],[3,-51],[3,-44],[-27,-95],[-35,-60],[-95,-164],[-44,-69],[-7,-10],[-100,-99],[-32,-46],[-63,-119],[-154,-292],[-3,-63],[0,-5],[0,-1],[0,-70],[0,-7],[1,-8],[0,-3],[18,-96],[0,-3],[16,-79],[7,-33],[0,-27],[-16,-59],[-42,-118],[-16,-44],[-68,-192],[-1,-4],[-2,-8],[-1,-3],[-7,-37],[-71,-191],[1,-275],[-25,-49],[-55,-268],[-28,-115],[-43,-83],[-70,-193],[-32,-368],[-35,-119],[-15,-48],[-5,-64],[-13,-56],[-49,-135],[5,-119],[-52,-128],[-92,-70],[-158,-77],[-138,-91],[-94,-76],[-76,-118],[-41,-123],[-19,-25],[14,-121],[53,-161],[1,-130],[-26,-86],[8,-47],[24,-32],[119,-64],[19,-20],[281,-103],[120,-5],[323,-57],[147,5],[29,-7],[202,-31],[12,-79],[-181,-189],[-135,-117],[-137,-92],[-96,-80],[-63,-64],[-34,-62],[-329,-384],[-43,-106],[23,-77],[27,-44],[121,-126],[43,-29],[44,-47],[139,-107],[102,-61],[60,-32],[89,-70],[83,-87],[21,-37],[17,-48],[-26,-64],[-45,-44],[-30,-29],[-28,-24],[-22,-30],[-77,-123],[-104,-142],[-39,-96],[0,-90],[-132,-346],[-71,-108],[-50,-167],[-74,-203],[-58,-53],[-135,-177],[-206,-261],[-135,-86],[-56,-48],[-60,-103],[-26,-19],[-274,-92],[-41,-13],[-187,-58],[-148,-73],[-28,-24],[-60,-81],[-54,-87],[-28,-69],[-22,-166],[0,-91],[56,-195],[51,-98],[99,-190],[15,-54]],[[50983,22116],[-24,-4],[-209,9],[-490,11],[-7,0],[-141,3],[-324,8],[-105,3],[-357,9],[-134,2],[-202,5],[-282,5],[-58,1],[-856,17],[-153,6],[-280,9],[-149,3],[-1273,20],[-295,3],[-62,-4],[-60,3],[-252,7],[-29,-2],[-105,-4],[-53,1],[-57,-2],[-42,-2],[-61,-4],[-141,-11],[-62,-4],[-155,-10],[-708,-46],[-267,-23],[-435,-41],[-549,-50],[-57,-5],[-334,-27],[-1,0],[-245,-21],[-674,-61],[-561,-50],[-222,-21],[-110,-10],[-967,-87],[-604,-54],[-208,-19],[-309,-27],[-58,-5],[-67,-3],[-54,9],[-10,2],[-49,9],[-52,10],[-482,104],[-327,64],[-266,53],[-325,70],[-530,115],[-9,2],[-158,33],[-979,218],[-318,68],[-1534,328],[-166,35],[-41,9],[-274,58],[-19,4],[-68,15],[-171,36],[-304,64],[-473,99],[-177,38]],[[31403,23087],[-6,430],[-5,375],[-2,140],[-2,140],[-6,400],[0,56],[-4,254],[-2,114],[-570,16],[-482,14],[-125,4],[-85,2],[-838,22],[-57,1],[-184,5],[-96,3]],[[28939,25063],[13,313],[8,181],[4,68],[15,321],[6,131],[24,525],[9,175],[2,60],[12,244],[629,27],[7,568],[5,458],[1403,55],[-4,120],[-1,228],[267,-91],[403,-137],[903,-305],[53,-18],[75,-25],[31,-11],[210,-71],[1414,-484],[68,1218],[151,259],[117,202],[185,317],[482,734],[140,223],[180,451],[38,95],[12,30],[12,30],[29,72],[2,4],[182,456],[167,421],[53,185],[-56,8],[-191,27],[85,271],[-1114,224],[-21,26],[-131,17],[-449,61],[-537,72],[33,309],[31,301],[-334,44],[-343,45],[-378,49],[26,56],[80,166],[11,57],[207,1005],[3,19],[18,83],[21,104],[157,766],[34,168],[94,454],[22,110],[143,697],[63,304],[47,228],[752,-176],[220,308],[184,258],[26,36],[42,53],[1,1],[695,984],[28,41],[177,258],[362,528],[117,171],[53,77],[90,131],[188,274],[54,79],[330,482],[330,481],[-731,179],[-386,95],[-16,4],[-233,57],[-1012,250],[-89,25],[-1100,269],[-1521,372],[-958,234],[152,242],[557,876],[-274,73],[-362,96],[109,165],[211,293],[29,40],[30,41],[61,85],[292,406],[79,110],[81,112],[9,12],[105,146],[28,38],[27,38],[106,147],[134,186],[31,42],[485,674],[-21,6],[-22,7],[-91,22],[-55,15],[-50,19],[-43,34],[-5,49],[26,48],[49,20],[61,13],[48,22],[21,47],[0,66],[-8,52],[-36,32],[-79,40],[-58,17],[-77,5],[-61,-4],[-56,21],[-29,51],[-36,43],[-50,64],[-12,49],[31,42],[58,18],[61,7],[40,41],[-49,22],[-51,7],[-56,9],[-56,31],[-54,35],[-48,84],[-2,8],[-1,8],[-1,11],[0,1],[1,4],[1,3],[1,5],[0,3],[2,6],[2,6],[2,5],[-9,2],[-126,30],[-73,18],[-247,59],[-532,128],[-762,183],[-172,-224],[-52,-67],[-106,-138],[-637,160],[-494,124],[-80,20],[-484,122],[-121,30],[-47,805],[-13,3],[-138,-44],[-50,-17],[-192,-61],[-118,-38],[-113,-36],[-48,-16],[-267,-86],[-323,-103],[-54,-18],[-2204,-708],[-773,-253]],[[28939,25063],[-341,12],[-420,13],[-26,0],[-494,15],[-696,20],[-2419,70],[-219,6],[-111,3],[-758,22],[-12,-559],[-517,0],[-252,0],[263,576],[-246,9],[-31,1],[-74,3],[-25,1],[-28,1],[-112,4],[-45,1],[-120,3],[-198,6],[-834,27],[-1438,46],[-760,0],[-889,-2],[-407,0],[-212,6],[-195,1],[-85,4],[-131,5],[-152,7],[-952,45],[-94,5],[-76,4],[-149,7],[-125,6],[-51,2],[-52,3],[-147,7],[-223,11],[-307,15],[-279,12],[-389,19],[-212,10],[-72,4],[-14,0],[-64,3],[-62,2],[-38,2],[-16,0],[-62,2],[-62,3],[-62,2],[-61,1],[-74,3],[-344,10],[-343,10],[-237,8],[-635,21],[-115,4],[-115,3],[-500,16],[-128,4],[-484,15],[-77,2],[-83,3],[-64,2],[-57,3],[-65,2],[-78,2],[-55,1],[-26,2],[-163,10],[-180,12],[-269,9]],[[9294,25671],[-5,125],[8,182],[3,60],[3,83],[5,133],[4,91],[2,94],[5,141],[8,228],[18,440],[2,24],[4,70],[10,74],[-11,49],[2,119],[-2,116],[24,100],[13,328],[11,87],[5,91],[7,142],[23,506],[10,194],[8,155],[5,90],[7,149],[1,6],[3,59],[2,48],[2,45],[4,74],[22,474],[13,269],[8,183],[8,196],[3,74],[5,97],[6,71],[0,129],[8,143],[18,405],[16,300],[14,294],[3,62],[10,334],[22,643],[5,109],[9,208],[12,214],[4,77],[3,57],[3,274],[-46,63],[-5,8],[0,7],[18,296],[0,5],[0,7],[4,10],[6,13],[99,83],[101,84],[1,4],[9,5],[53,38],[22,36],[-21,97],[-23,103],[-20,56],[-50,134],[-15,20],[-110,133],[-31,20],[-31,20],[-90,146],[-1,4],[-13,59],[-6,28],[-20,96],[8,18],[33,42],[14,18],[15,8],[30,9],[-2,13],[-9,43],[-116,55],[-27,12],[-1,2],[-56,62],[-153,178],[-16,42],[-150,135],[-44,25],[-35,40],[-54,-34],[-44,61],[-41,26],[-21,-1],[-38,49],[16,3],[-78,30],[-29,15],[-20,2],[-116,11],[-26,3],[-1,16],[0,3],[-2,52],[-1,4],[-363,109],[-9,1],[-15,2],[-18,2],[-22,3],[-18,-3],[-59,-11],[-14,-3],[-7,-1],[-42,-20],[-17,-8],[-1,25],[-2,55],[-17,94],[-12,10],[-5,3],[-2,3],[-21,8],[-147,50],[-1,0],[-17,-2],[-349,-26],[-76,-5],[-22,-2],[-17,-7],[-35,-57],[-7,-11],[-22,17],[-83,98],[0,1],[5,13],[162,138],[49,33],[34,50],[-40,32],[-54,12],[-45,25],[-5,3],[-47,19],[-50,16],[29,39],[44,38],[11,21],[11,20],[30,39],[36,45],[31,39],[21,46],[8,138],[1,25],[10,159],[5,86],[-5,7],[-1,1],[-55,82],[-154,150],[-64,60],[-14,9],[-101,26],[-30,-4],[-18,-22],[-7,-14],[-6,-12],[-6,-5],[-26,-4],[-19,2],[-14,13],[0,13],[15,47],[8,27],[45,138],[15,48],[-3,21],[-13,102],[-31,241],[-26,60],[-80,59],[-52,25],[-2,1],[-53,17],[-38,-6],[-2,-1],[-30,-16],[-34,-29],[-48,-63],[-12,-15],[-37,-37],[-12,-3],[-7,-2],[-29,0],[-34,5],[-13,5],[-8,2],[-31,12],[-5,9],[-3,9],[-3,17],[-24,8],[-49,16],[-15,6],[-10,3],[-52,16],[-66,22],[-2,0],[-131,12],[-20,1],[-100,7],[-28,1],[-52,3],[-3,-1],[-27,-3],[-73,-47],[-11,-5],[-21,-9],[-40,-6],[-20,-3],[-151,1],[-31,4],[-6,7],[-28,36],[-6,6],[-48,25],[-33,13],[-8,-1],[-5,-1],[-13,-1],[-183,-83],[-7,-28],[-2,-6],[-8,-5],[-28,-6],[-8,-1],[-63,-13],[-28,-1],[-5,0],[-43,9],[-8,7],[-33,38],[-10,11],[-12,13],[-29,-2],[-21,-2],[-36,-4],[-33,-20],[-47,-35],[-46,-39],[-29,-72],[-10,-11],[-24,-23],[-27,-13],[-36,3],[-24,5],[-12,4],[-12,5],[-36,26],[-73,65],[-30,50],[-20,35],[-14,11],[-19,4],[-22,1],[-135,-13],[-59,-28],[-6,-10],[-4,-3],[-20,-14],[-34,-8],[-294,-44],[-49,0],[-12,3],[-13,3],[-7,2],[-56,42],[-32,10],[-109,4],[-6,1],[-40,-20],[-21,-18],[-5,-18],[-5,-40],[21,-26],[26,-33],[49,-35],[15,-11],[22,-28],[0,-2],[0,-25],[-157,-136],[-79,-57],[-53,-59],[-17,-22],[-7,-10],[1,-14],[0,-5],[1,-2],[14,-15],[52,-31],[9,-6],[6,-3],[104,-211],[1,-28],[-13,-30],[-5,-12],[-10,-23],[-26,-27],[-212,-153],[-8,-6],[-129,-66],[-7,-4],[-149,-53],[-4,-2],[5,-8],[13,-16],[48,-65],[4,-6],[2,-6],[23,-65],[2,-17],[-3,-13],[-2,-8],[-16,-17],[-22,-10],[-58,-6],[-95,4],[-23,-3],[-27,-9],[-15,-9],[-10,-6],[-10,-58],[41,-48],[56,-30],[127,-93],[1,-1],[5,-279],[-9,-27],[-9,-29],[-24,-49],[-41,-55],[-29,-14],[-8,-4],[-59,-16],[-67,-5],[-91,7],[-14,0],[-39,-14],[-20,-7],[-34,-29],[-24,-27],[0,-25],[24,-36],[5,-26],[-11,-21],[-8,-15],[-23,-12],[-191,-79],[-22,-8],[-47,0],[-51,5],[-101,35],[-9,3],[-72,35],[-25,8],[-168,128],[-98,60],[-398,183],[-216,101],[-130,61],[-225,106],[-19,9],[-13,5],[-86,44],[-63,46],[9,48],[1,1],[110,158],[2,3],[4,6],[188,341],[1,1],[3,7],[1,2],[2,5],[2,7],[1,3],[79,77],[12,33],[-9,69],[-15,92],[-38,82],[-60,52],[47,53],[39,45],[15,17],[4,5],[5,7],[24,36],[4,7],[4,7],[3,7],[2,6],[27,82],[8,25],[1,2],[124,172],[47,55],[-41,73],[-152,167],[-156,156],[-81,81],[-104,112],[-9,10],[-1,1],[1,2],[33,157],[50,200],[92,99],[21,23],[219,101],[118,98],[84,289],[24,28],[151,179],[4,4],[4,7],[1,1],[18,28],[214,292],[127,173],[3,4],[4,7],[3,7],[4,7],[2,8],[2,7],[28,120],[1,7],[0,3],[6,45],[1,5],[0,8],[0,40],[2,45],[0,4],[0,5],[0,2],[0,1],[2,7],[2,7],[0,3],[0,5],[1,8],[0,82],[0,1],[-2,142],[0,4],[-1,48],[5,29],[0,1],[4,29],[17,30],[30,28],[21,10],[71,17],[16,4],[6,2],[98,28],[2,0],[8,3],[8,3],[8,3],[4,3],[45,24],[4,2],[7,4],[7,5],[6,5],[6,6],[6,6],[5,6],[1,1],[82,108],[3,6],[5,6],[2,5],[15,28],[109,162],[69,116],[162,132],[4,63],[118,108],[203,143],[24,9],[8,3],[8,3],[8,4],[5,3],[42,27],[2,1],[7,5],[6,6],[32,27],[12,11],[7,5],[5,6],[5,6],[5,7],[29,42],[15,20],[5,6],[4,7],[4,7],[2,5],[0,1],[15,35],[58,75],[180,144],[4,3],[6,5],[2,3],[47,48],[4,4],[5,6],[5,7],[4,6],[4,7],[3,8],[2,7],[1,2],[14,48],[1,6],[2,7],[1,8],[1,4],[1,3],[1,6],[0,1],[1,8],[0,8],[0,8],[-1,7],[-1,4],[-6,32],[0,2],[-1,2],[-2,7],[-2,8],[-2,3],[-37,224],[18,218],[11,118],[62,78],[72,42],[78,124],[44,24],[137,131]],[[31403,23087],[-934,197],[-246,51],[-130,24],[-76,13],[-67,-21],[-6,-71],[0,-2],[-10,-113],[-29,-315],[-21,-594],[0,-1],[-7,-85],[-3,-36],[-20,-255],[-43,-556],[-13,-167],[-6,-78],[-53,-196],[-403,3],[-97,0],[-5,-54],[-20,-227],[-5,-58],[-4,-49],[-53,-598],[-48,-553],[-4,-48],[-4,-47],[-6,-63],[-33,-378],[-7,-78],[-14,-152],[-18,-205],[-4,-57],[-6,-65],[0,-1],[-9,-120],[-5,-59],[-24,-265],[-18,-207],[-19,-210],[-36,-520],[-75,3],[-180,8],[-64,2],[-171,8],[-18,1],[-818,36],[-160,7],[-135,6],[-96,4],[-109,5],[-61,2],[-71,3],[-69,3],[-75,3],[-68,3],[-96,4],[-86,3],[-61,3],[-358,11],[-111,4],[-139,5],[-150,6],[-887,34],[-129,5],[-577,22],[-827,32],[-24,1],[-894,35],[-1,-9],[-4,-36],[-4,-47],[-10,-89],[-2,-9],[-15,-48],[-35,-113],[-17,-77],[-7,-174],[-6,-71],[-8,-72],[-6,-62],[-9,-121],[41,-44],[-29,-168],[-20,-216],[-1,-142],[-23,-461],[-16,-315],[-6,-125],[-5,-97],[-9,-173],[-4,-53],[-7,-96],[-57,-846],[-38,-546],[-4,-56],[-36,-511],[-26,-422],[-14,-233],[-24,-362],[-27,-372],[-15,-222],[13,-45],[-2,-65],[6,-45],[-16,-116],[-36,-262],[-29,-475],[-6,-103],[-2,-45],[-4,-67],[-9,-162],[-5,-81],[-31,-401],[431,-10],[233,-8],[87,-3],[45,-2],[963,-32],[29,-1],[33,-1],[1416,-49],[13,0],[192,-6],[732,-24],[227,-8],[-91,-2268],[3,-113],[-4,-24],[-4,-25],[-45,-24],[-3,-61],[-1,-15],[-5,-88],[-24,-466],[-34,-625],[-12,-238],[-16,-284],[-14,-226],[-71,-1084],[-8,-109],[-12,-187],[-8,-211],[-2,-62],[-1,-36],[-5,-129],[-3,-71],[-12,-341],[-6,-155],[0,-7],[-4,-100],[0,-11],[-5,-91],[-12,-281],[-1,-56],[-2,-50],[-1,-9],[-2,-40],[-3,-70],[-9,-161],[-28,-236],[-6,-239]],[[25773,538],[-4533,82],[-193,3],[-88,1],[-385,5],[-56,1],[-724,8],[-322,7],[-399,8],[-268,9],[-70,2],[-3,0],[-119,6],[-24,-2],[-63,-3],[-326,5],[-477,8],[-53,1],[-392,9],[-960,23],[-24,1],[-50,2],[-83,1],[-252,0],[-910,15],[-535,9],[-535,8],[-520,9],[-340,5],[-69,1],[-121,2],[-153,3],[-65,1],[-19,0],[-510,8],[-407,7],[-174,3],[-44,0],[-98,2],[-63,1],[-9,0],[-108,2],[-844,14],[-1626,27],[-561,9],[-750,2443],[195,210],[18,20],[25,27],[-9,74],[23,30],[118,150],[-174,273],[86,616],[59,30],[285,-54],[33,383],[66,1363],[3,80],[28,743],[50,1336],[33,623],[7,123],[7,125],[1,27],[79,1447],[48,837],[108,1872],[24,341],[186,2553],[8,122],[120,1648],[34,554],[111,1841],[64,1183],[8,142],[3,62],[60,754],[37,268],[97,2464],[5,120]],[[50983,22116],[-39,-124],[39,0],[-69,-170],[-149,-231],[-75,-186],[-9,-66],[17,-71],[158,-324],[-88,-217],[-73,-68],[-291,-225],[-173,-114],[-22,-76],[0,-45],[21,-37],[63,-67],[119,-86],[102,-107],[-4,-100],[-36,-77],[-67,-65],[-103,-75],[-43,-15],[-140,-111],[-60,-99],[0,-145],[-6,-160],[-6,-82],[1,-69],[5,-46],[11,-60],[11,-94],[-13,-72],[-50,-66],[-46,-33],[-51,-21],[-57,-32],[-55,-47],[-5,-70],[14,-44],[33,-51],[84,-106],[40,-66],[16,-18],[58,-67],[90,-48],[63,-21],[105,-11],[55,6],[49,6],[83,-19],[32,-19],[22,-13],[31,-18],[19,-18],[7,-27],[5,-54],[1,-77],[-6,-25],[-2,-7],[-21,-61],[28,-44],[169,-170],[11,-11],[123,-100],[40,-33],[7,-11],[74,-127],[10,-17],[7,-205],[-79,-151],[-69,-57],[-283,-141],[-71,-85],[11,-169],[160,-149],[58,-175],[74,-144],[58,-65],[66,-64],[-16,-70],[-12,-51],[-14,-99],[-183,-193],[-144,-113],[-302,-235],[-159,-47],[-107,-62],[-66,-74],[-22,-54],[-117,-88],[-333,-174],[-121,-99],[-47,-49],[-26,-64],[-3,-114],[0,-4],[7,-13],[18,-36],[64,-67],[70,-50],[87,-53],[76,-80],[38,-85],[-44,-264],[-49,-248],[24,-163],[160,-256],[223,-106],[189,-132],[17,-3],[180,-91],[75,-39],[48,-59],[8,-114],[-53,-133],[-60,-81],[-169,-80],[-39,-15],[-63,-14],[-132,14],[-102,11],[-158,-11],[-213,-159],[-79,-182],[-8,-66],[8,-69],[29,-62],[55,-65],[95,-99],[-25,-64],[-79,-84],[-86,-76],[-79,-61],[-172,-92],[-184,-163],[-63,-23],[-102,-7],[-115,29],[-61,50],[-92,20],[-38,-6],[-147,-50],[-57,-30],[-58,-53],[-194,-99],[-76,-34],[-296,-38],[-253,-44],[-206,-64],[-153,-21],[-232,-14],[-17,3],[-98,-19],[-148,-55],[-196,-128],[-241,-103],[-144,-67],[-64,-69],[-45,-112],[10,-41],[51,-53],[36,-23],[64,-21],[36,0],[76,-35],[45,-46],[48,-81],[46,-132],[11,-86],[-1,-113],[-12,-54],[-20,-25],[13,-14],[2,-39],[-4,-56],[-24,-59],[4,-57],[86,-233],[64,-180],[1,-130],[-51,-105],[-72,-45],[-107,-39],[-100,-47],[-17,-42],[-24,-284],[34,-51],[-20,-183],[-38,-73],[-100,-91],[-352,-228],[-39,-17],[-253,-105],[-4,-2],[-217,-83],[-44,-20],[-31,-15],[-119,-324],[26,-407],[1,-8],[0,-1],[12,-184],[5,-18],[1,-4],[1,-8],[1,-8],[1,-7],[0,-4],[-2,-52],[-1,-4],[-1,-8],[-1,-7],[-2,-8],[-3,-7],[0,-2],[-2,-5],[-1,-1],[-33,-77],[-2,-4],[-3,-7],[-2,-4],[-34,-59],[-30,-64],[72,-84],[24,-36],[151,-224],[150,-142],[51,-234],[-13,-99],[16,-161],[48,-307],[102,-227],[67,-70],[14,-31],[21,-82],[-6,-129],[19,-65],[48,-126],[198,-222],[1,-1],[7,-5],[100,-63],[199,-155],[47,-41],[194,-144],[17,-3],[152,-92],[45,-46],[61,-27],[195,-121],[300,-216],[76,-80],[17,-70],[-7,-107],[-38,-115],[-5,-13],[-172,-69],[-8,-13],[-47,-80],[63,-224],[38,0],[267,81],[64,182],[198,110],[74,28],[53,-3],[89,20],[91,2],[81,-1],[135,-22],[47,-18],[117,-78],[140,-132],[83,-19],[150,-75],[148,-147],[76,-80],[65,-106],[50,-189],[-4,-10],[49,-256],[23,-55],[110,-107],[325,-266],[57,-38],[133,-139],[139,-192],[-28,-23],[-18,-106],[-60,2],[-78,2],[-194,4],[-2367,59],[-2910,69],[-97,2],[-143,3],[-3227,77],[-1970,46],[-2326,54],[-217,5],[-2157,50],[-2092,43],[-344,7],[-4285,89],[-1323,24],[-138,2]]],"transform":{"scale":[0.000019697452234522255,0.000022897373903738095],"translate":[-73.43747252999992,42.726941337000085]}} diff --git a/src/js/config/mapconfig/mapfiles/county/wa-counties.json b/src/js/config/mapconfig/mapfiles/county/wa-counties.json new file mode 100644 index 00000000..01d5bfe2 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/wa-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-124.75643622199982,45.54510516900007,-116.9171666339999,49.00243328500005],"geometries":[{"type":"Polygon","properties":{"name":"WA"},"id":"53000","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],[21],[22],[23],[24],[25],[26],[27],[28],[29],[30],[31],[32],[33],[34],[35],[36],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[48],[49],[50],[51],[52],[53],[54],[55],[56],[57],[58],[59],[60],[61],[62],[63],[64],[65],[66],[67],[68],[69],[70],[71],[72],[73],[74],[75],[76],[77],[78],[79],[80],[81],[82],[83],[84],[85],[86],[87],[88]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53073","arcs":[[[-36]],[[-35]],[[-31]],[[-18,89]],[[90,91,-20,92]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53047","arcs":[[93,94,95,96,97,98,-91,99]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53065","arcs":[[100,101,102,103,104]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53051","arcs":[[105,-101,106]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53019","arcs":[[-104,107,-94,108]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53055","arcs":[[[-23]],[[-50]],[[-48]],[[-47]],[[-46]],[[-59]],[[-58]],[[-52]],[[-54]],[[-22]],[[-51]],[[-53]],[[-56]],[[-55]],[[-57]],[[-25]],[[-24]],[[-27]],[[-28]],[[-40]],[[-39]],[[-29]],[[-38]],[[-37]],[[-26]],[[-30]],[[-32]],[[-33]],[[-34]],[[-61]]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53057","arcs":[[[-65]],[[-64]],[[-1]],[[-63]],[[-89]],[[-60]],[[-49]],[[-45]],[[-44]],[[-43]],[[-42]],[[-41]],[[-21,-92,-99,109,110,-2]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53007","arcs":[[-98,111,112,113,114,-110]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53029","arcs":[[[115,-4]],[[-69]],[[-70]],[[-62]]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53009","arcs":[[[116]],[[-71]],[[117,118,-16]],[[119]]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53061","arcs":[[[-67]],[[-66]],[[-88]],[[-115,120,-5,-116,-3,-111]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53017","arcs":[[121,122,-112,-97]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53031","arcs":[[[123]],[[-68]],[[-72]],[[124,125,126,-118,-15]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53063","arcs":[[-106,127,128,129,-102]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53025","arcs":[[-96,130,131,132,133,134,135,-122]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53043","arcs":[[-108,-103,-130,136,137,-131,-95]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53035","arcs":[[[-74]],[[-73]],[[138,-11,139,140,-13]]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53033","arcs":[[[-75]],[[-87]],[[-114,141,142,-6,-121]]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53045","arcs":[[[-83]],[[-82]],[[-81]],[[-85]],[[-86]],[[-14,-141,143,-9,144,145,-125]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53037","arcs":[[-123,-136,146,-142,-113]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53027","arcs":[[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[-146,153,154,155,156,-126]]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53053","arcs":[[[-80]],[[-79]],[[-77]],[[-84]],[[-76]],[[-143,157,158,159,-7]],[[-78]],[[-139,-12]],[[-144,-140,-10]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53001","arcs":[[160,161,-132,-138]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53075","arcs":[[-129,162,163,164,165,166,-161,-137]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53067","arcs":[[-160,167,-154,-145,-8]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53077","arcs":[[-135,168,169,170,171,-158,-147]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53049","arcs":[[[172]],[[173,174,175,-156]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53041","arcs":[[-168,-159,-172,176,177,178,-174,-155]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53021","arcs":[[179,180,181,-133,-162,-167]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53005","arcs":[[182,183,184,-169,-134,-182]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53023","arcs":[[185,186,187,-165]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53013","arcs":[[188,189,-180,-166,-188]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53071","arcs":[[-190,190,-183,-181]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53003","arcs":[[191,-186,-164]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53059","arcs":[[-171,192,193,194,195,-177]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53015","arcs":[[-196,196,197,198,-178]]},{"type":"MultiPolygon","properties":{"name":"WA"},"id":"53069","arcs":[[[199]],[[200]],[[201]],[[-179,-199,202,-175]]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53011","arcs":[[-195,203,-197]]},{"type":"Polygon","properties":{"name":"WA"},"id":"53039","arcs":[[-185,204,-193,-170]]}]},"states":{"type":"GeometryCollection","bbox":[-124.75643622199988,45.54510516900007,-116.9171666339999,49.00243328500005],"geometries":[{"type":"MultiPolygon","properties":{"name":"Washington"},"id":"53","arcs":[[[199]],[[200]],[[201]],[[172]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[-80]],[[-79]],[[-83]],[[-82]],[[-77]],[[-84]],[[-76]],[[-81]],[[-85]],[[-78]],[[-86]],[[-75]],[[-74]],[[-87]],[[123]],[[-73]],[[-67]],[[-66]],[[-68]],[[-72]],[[116]],[[-88]],[[-69]],[[-65]],[[-71]],[[119]],[[-64]],[[-70]],[[-62]],[[-1]],[[-63]],[[-89]],[[-23]],[[-60]],[[-49]],[[-50]],[[-48]],[[-47]],[[-46]],[[-45]],[[-59]],[[-58]],[[-52]],[[-54]],[[-22]],[[-51]],[[-44]],[[-53]],[[-56]],[[-55]],[[-43]],[[-42]],[[-57]],[[-25]],[[-24]],[[-41]],[[-27]],[[-28]],[[-36]],[[-40]],[[-39]],[[-29]],[[-38]],[[-37]],[[-26]],[[-35]],[[-30]],[[-32]],[[-31]],[[-33]],[[-34]],[[-61]],[[-18,89]],[[-21,-20,92,99,108,104,106,127,162,191,186,188,190,183,204,193,203,197,202,175,156,126,118,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2]]]}]}},"arcs":[[[26855,82894],[-56,39],[-2,1],[-28,0],[9,-83],[46,-45],[6,19],[25,69]],[[26855,82894],[15,-43],[7,-20],[31,-11],[3,-2],[16,-6],[4,-53],[11,-3],[4,-1],[27,32],[18,49],[6,15],[35,4],[11,1],[5,7],[29,39],[9,18],[7,15],[21,43],[33,36],[17,-4],[27,-7],[20,-49],[32,1],[12,1],[40,5],[25,43],[13,116],[51,117],[35,37],[38,2],[19,-30],[3,-4],[30,-13],[38,9],[4,2],[70,51],[22,19],[11,9],[32,21],[13,12],[19,17],[41,84],[24,121],[-7,91],[-7,74],[28,176],[28,22],[47,13],[24,-13],[26,-30],[44,-12],[39,7],[42,-16],[35,-15],[17,35],[31,133],[34,66],[19,0],[-1,-7],[-6,-110],[-1,-14],[-8,-89],[1,-29],[1,-18],[-25,-87],[-25,-91],[-20,-66],[-15,-59],[-21,-104],[-26,-109],[6,-122],[14,-23],[21,-35],[7,-33],[25,-106],[7,-84],[-1,-66],[-29,-74],[12,-46],[14,-9],[17,-10],[19,-39],[12,-42],[10,-35],[22,-32],[51,-44],[34,-30],[15,-52],[8,-26],[15,-112],[24,-89],[10,-60],[6,-78],[2,-96],[-5,-100],[11,-10],[12,-12],[40,14],[31,8],[40,12],[5,-10],[17,-33],[27,-51],[50,-43],[55,-2],[7,19],[11,33],[11,1],[23,-40],[20,7],[31,12],[33,10],[33,11],[86,-26],[12,-50],[-1,-1],[-48,-23],[-68,-31],[-86,-94],[-33,-79],[17,-72],[40,-25],[27,-16],[17,5],[34,11],[1,8],[2,9],[18,118],[36,33],[5,-7],[48,-74],[41,-55],[13,-17],[53,-69],[80,11],[13,2],[5,-5],[18,-73],[-1,-23],[-3,-40],[36,-19],[2,0],[2,-1],[27,-8],[11,-3],[42,-19],[37,-42],[26,-31],[6,-14],[3,-6],[11,-25],[37,-66],[49,-97],[44,-56],[15,-12],[1,-1],[14,-12],[19,-18],[1,-1],[19,-19],[17,-1],[1,0],[33,-3],[9,-10],[29,-33],[22,-6],[14,-4],[32,-10],[5,-2],[50,-62],[9,-24],[3,-10],[8,-19],[6,-18],[13,10],[1,1],[10,9],[6,-28],[4,-21],[2,-8],[29,-46],[39,-4],[39,-20],[29,-11],[43,-92],[1,-1],[1,-2],[15,-23],[21,-32],[3,1],[60,-204],[25,-43],[9,-15],[13,-41],[4,-1],[5,-2],[14,-6],[5,-15],[-3,-13],[-5,-22],[1,-4],[11,-33],[92,-282],[2,-23]],[[30265,79599],[6,-116],[-1,-214],[0,-22],[-1,-138],[20,-11],[2,-16],[-34,-91],[-9,-17],[-23,-39],[-2,-84],[-1,-18],[10,-53],[6,-36],[-14,-89],[-10,78],[-4,15],[-10,34],[-29,3],[-20,-4],[1,-8],[1,-13],[4,-60],[-2,-7],[-11,-45],[1,-29],[0,-1],[2,-26],[-17,-66],[11,-40],[0,-2],[7,-27],[-22,-23],[-8,-8],[-8,-8],[-2,-17],[-2,-17],[-5,-50],[-1,-8],[-1,-6],[0,-12],[1,-37],[1,-4],[11,-30],[13,-40],[2,-6],[9,-25],[11,-33],[6,-19],[-2,-3],[-3,-5],[-7,-11],[-26,11],[-1,3],[-14,28],[-18,35],[-19,38],[-14,15],[-25,27],[-2,0],[-3,-1],[-6,0],[-14,-2]],[[29999,78249],[-9,16],[-1,1],[-13,24],[-9,8],[-1,1],[-10,9],[-3,2],[-23,20],[-15,14],[-26,30],[-5,7],[-6,3],[-49,24],[-38,42],[-39,44],[-71,14],[-8,4],[-40,23],[-47,44],[-3,3],[-56,66],[-37,24],[-67,33],[-85,23],[-35,66],[-35,28],[-21,4],[-12,2],[-27,-26],[-19,-93],[-16,-77],[-29,-144],[-35,-101],[-3,-5],[-23,-40],[-43,-47],[-54,-29],[-41,1],[-32,9],[-61,28],[-47,48],[-20,73],[-47,13],[-38,-43],[-40,-14],[-61,-27],[-32,-29],[-37,-33],[-35,-22],[-73,-8],[-4,-4],[-17,-23],[-16,-20],[-18,-79],[-7,-34],[-9,-54],[-11,-70],[-5,-76],[0,-6],[5,-126],[2,-43],[0,-8],[0,-84],[0,-2],[1,-49],[0,-55],[-3,-72],[-2,-48],[-5,-37],[-12,-101],[-14,-44],[-1,-4],[-2,-5],[-9,-44],[-3,-19],[-3,-102],[1,-101],[4,-87],[29,-67],[6,-71],[27,-70],[11,-73],[9,-56],[-11,-90],[-25,-60],[-9,-32],[-9,-31],[21,-70],[14,-79],[13,-53],[26,-80],[12,-87],[2,-16],[2,-3],[33,-38],[17,-37],[10,-21],[10,-64],[3,-22],[17,-97],[8,-55],[5,-29],[13,-26],[23,-48],[25,-107],[2,-7],[2,-6],[18,-50],[14,-52],[-1,-5],[-10,-71],[-1,-11],[-14,-53],[15,-73],[14,-83],[2,-13],[18,-94],[36,-62],[45,-29],[50,-57],[36,-40],[41,-68],[25,-71],[35,-42],[16,1],[23,2],[41,52],[13,41],[24,43],[16,42],[22,51],[28,12],[8,3],[48,20],[38,13],[27,-17],[30,-63],[39,-84],[32,-75],[30,-74],[37,-66],[31,-54],[22,-51],[10,-37],[8,-31],[12,-29],[9,-20],[3,-8],[2,-5],[9,-20],[51,-55],[31,-15],[13,-6],[8,-2],[33,-6],[11,-1],[13,-1],[10,-2],[3,0],[44,-20],[17,-14],[31,-25],[38,-69],[24,-72],[21,-47],[1,-2],[17,-46],[9,-63],[8,-10],[23,-27],[44,-32],[17,-23],[20,-26],[7,-9],[24,-29],[40,-51],[25,-50],[23,-56],[17,-31],[12,-21],[26,-61],[14,-101],[4,-27],[7,-47],[6,-54],[2,-10],[9,-34],[15,-51],[16,-76],[12,-12],[33,-32],[25,-41],[6,-9],[30,-53],[26,-37],[8,-11],[6,-4],[26,-19],[30,-29],[25,-10],[18,-6],[24,-8],[25,-8],[31,2],[19,2],[18,24],[5,7],[4,6],[6,8],[-13,65],[-14,79],[-22,52],[-36,59],[-2,3],[-14,36],[-18,44],[-10,43],[-3,17],[-6,28],[-12,53],[-23,80],[-28,86],[-15,46],[-4,12],[-20,71],[-15,60],[-13,54],[-33,79],[-21,37],[-26,44],[-12,20],[-10,16],[-21,33],[-27,39],[-29,47],[-5,8],[-7,9],[-23,33],[-14,26],[-5,9],[-22,57],[-30,43],[-38,81],[-20,36],[-15,28],[-17,30],[-14,27],[-34,59],[-35,8],[-30,7],[-27,25],[-19,35],[-5,8],[-16,74],[-16,55],[-6,21],[-23,52],[-17,37],[-25,24],[-35,11],[-25,17],[-7,4],[-42,48],[-7,9],[-31,43],[-28,52],[-16,76],[-22,69],[-15,45],[-14,48],[-12,43],[-12,29],[-6,13],[-32,50],[-33,45],[-15,19],[-11,21],[-24,44],[-21,76],[-30,95],[-18,103],[-13,32],[-13,32],[-17,49],[0,1],[-29,28],[-3,3],[-28,33],[-23,45],[-3,81],[-1,68],[-1,40],[-38,70],[0,21],[0,83],[-7,89],[-3,69],[13,105],[29,51],[25,46],[45,83],[30,19],[47,21],[23,-72],[27,15],[6,7],[19,23],[28,30],[21,30],[17,67],[28,48],[28,32],[27,51],[27,68],[6,15],[13,32],[16,50],[0,79],[-34,48],[-30,10],[-29,26],[-15,93],[-6,108],[-9,85],[-21,45],[-3,59],[27,71],[32,56],[37,35],[42,30],[39,19],[38,12],[5,1],[32,6],[47,-22],[36,-53],[24,-44],[8,-88],[8,-13],[8,-12],[20,-29],[60,-24],[49,0],[2,2],[32,20],[36,28],[43,18],[33,7],[44,1],[46,11]],[[30123,77645],[14,13],[12,12],[3,2],[2,3],[6,-11],[11,-21],[27,-50],[31,-75],[4,16],[9,43],[36,103],[27,21],[17,13],[28,40],[-6,63],[-1,13],[17,48],[0,-2],[8,-86],[-7,-40],[-12,-38],[-39,-42],[-25,-16],[-15,-61],[-4,-38],[118,-121],[84,-276],[-56,-208],[-5,-27],[17,-59],[32,-159],[93,19],[8,1],[7,-75],[9,-105],[27,-72],[6,-9],[38,-52],[-29,-103],[-21,-71],[-14,-57],[-7,-24],[-9,-37],[-7,-13],[-37,-71],[-10,-27],[-28,-80],[-27,-93],[-13,-71],[21,-143],[8,-62],[12,-89],[15,-49],[8,-26],[1,-3],[4,-88],[1,-43],[2,-91],[0,-4],[4,-88],[-17,-58],[-21,-45],[0,-1],[-18,-69],[21,-24],[26,-24],[22,-69],[-8,-77],[-9,-83],[21,-75],[15,-46],[22,-64],[30,-52],[26,-27],[46,-49],[26,-50],[26,-63],[5,-103],[20,-40],[2,-4],[19,-43],[-4,-81],[0,-12],[9,-64],[13,-9],[126,-90],[57,-37],[38,-72],[29,-82],[7,-32],[9,-49],[0,-1],[-3,-75],[8,-55],[19,-30],[24,-24],[33,-36],[42,-52],[39,-28],[47,-61],[37,-33],[10,-8],[20,-59],[24,-73],[0,-1],[6,-70],[46,-78],[11,35],[7,23],[24,22],[2,0],[28,-12],[36,-7],[28,-12],[42,-34],[27,-63],[18,-66],[39,-43],[1,-1],[2,-90],[-10,-81],[-39,12],[-115,80],[-42,53],[-19,-23],[-3,-4],[-8,-45],[23,-43],[73,-31],[59,-41],[10,-3],[1,-2],[41,-28],[38,-25],[35,-32],[41,-47],[32,-39],[42,-42],[71,-88],[90,-117],[57,-56],[63,-48],[58,-27],[34,-7],[42,8],[29,39],[-2,17],[-8,62],[-26,47],[21,59],[37,42],[23,23],[24,24],[43,47],[4,4],[43,43],[15,-3],[29,6],[25,22],[3,-6],[1,8],[9,-12],[52,-33],[1,0],[111,-10],[13,-31],[-34,-27],[-125,21],[-1,0],[-7,-7],[-18,-18],[-39,-33],[-12,-40],[28,-35],[35,-28],[34,-24],[38,-6],[53,-6],[45,9],[64,25],[15,-2],[48,18],[26,10],[40,11],[2,1],[44,-32],[53,-63],[-22,-40],[-35,16],[-34,16],[-54,25],[-13,6],[0,-9],[0,-37],[7,-11],[20,-33],[1,-2],[1,-1],[2,-36],[-32,-22],[-4,-3],[-23,28],[-31,37],[-20,23],[-14,-7],[-7,-3],[-43,-5],[-41,-15],[-42,-15],[-48,-7],[-1,0],[-1,-1],[-17,-14],[-20,-17],[-3,-17],[18,-50],[-8,-88],[-27,-46],[-5,-5],[27,-9],[121,-39],[75,-57],[0,-31],[0,-71],[-253,34],[-9,1],[-18,36],[-25,-28],[-61,-134],[-14,-225],[-7,-120],[-1,-18],[-8,-162],[-8,-25],[-5,-14],[-76,-241],[63,-49],[12,38],[34,103],[6,-5],[4,-3],[29,-35],[-17,-93],[-42,-107],[-4,-8],[-28,-71],[-3,-10],[-8,-17],[-37,-95],[-7,-26],[-8,-32],[-86,-131],[-37,-47],[-57,-66],[-39,-49],[-24,-32],[-33,-18],[-44,-8],[-51,-3],[-39,3],[-45,-23],[-93,-26],[-56,-6],[-49,-35],[-77,-78],[-36,-11],[-4,-1],[-42,-23],[-49,-27],[-82,-28],[-14,-5],[-12,-33],[-27,-82],[-30,-250],[13,-168],[5,-52],[-21,-135],[-34,-84],[-66,-137],[-32,-129],[-3,-12],[-3,-28],[-2,-19],[-4,-43],[-36,-115],[-9,-67],[-11,-77],[-17,-59],[-2,-4],[1,-122],[0,-29],[-29,-195],[-9,-67],[-18,-80],[-8,-35],[29,-91],[10,-89],[11,-109],[-35,-116],[-35,-119],[-3,-68],[7,-77],[-12,-98],[-30,-108],[-24,-70],[-27,-40],[-22,-32],[-36,-53],[-47,-18],[-38,-34],[-15,-29],[-24,-48],[-56,-108],[-49,-122],[-31,-61],[-66,-130],[-27,-49],[-41,-116],[-31,-83],[-41,-58],[-1,0],[-41,-54],[-72,-104],[-16,-62],[-14,-49],[-4,-14],[0,-3],[-3,-9],[21,-102],[2,-8],[5,-23],[8,-73],[4,-37],[5,-43],[5,-41],[-12,-138],[-3,-33],[-48,-65],[0,-2],[-14,-98],[16,-29],[11,-23]],[[30124,64581],[8,-104],[1,-19],[2,-32],[14,-33],[9,-24],[32,-78],[4,-13],[3,-9],[25,-79],[4,-7],[47,-90],[16,-30],[3,-7],[4,-7],[15,-29],[-1,-32],[-3,-60],[-26,-180],[98,-439],[17,-170],[-5,-24],[-27,-139],[-4,-171],[-24,-63],[-5,-13],[-11,-32],[-15,-114],[-51,-61],[-39,-52],[-20,-41],[-43,-49],[-31,-29],[-116,-117],[-26,-95],[28,-127],[-2,-30],[-19,-64],[-27,-165],[-45,-80],[48,-109],[1,-6],[41,-153],[23,-40],[-46,-13],[-26,59],[-2,51],[-7,27],[-8,8],[-15,17],[-29,-11],[-47,-29],[-37,-43],[-25,-43],[-5,-8],[-34,-59],[-6,-11],[-13,-7],[-62,-33],[0,-1],[-56,-35],[-21,-14],[11,-9],[67,-61],[104,-152],[40,-88],[22,-74],[0,-11],[1,-134],[35,-93],[22,-37],[115,-145],[93,-58],[41,-26],[19,5],[35,8],[46,29],[22,17],[1,-114],[2,-84],[20,11],[1,60],[0,88],[20,5],[0,-104],[0,-52],[15,3],[0,40],[0,139],[21,-16],[-3,-133],[-1,-33],[49,-12],[18,-5],[66,-49],[83,-145],[38,-68],[30,-60],[2,-4],[2,-2],[39,-48],[24,-22],[19,-41],[35,-23],[30,-47],[27,-47],[7,-13],[11,-43],[0,-46],[-1,-184],[0,-9],[-27,-163],[-2,-121],[-2,-377],[-4,0],[-17,-69],[-2,-6],[-5,-18],[-2,-10],[-1,-7],[-1,-11],[-7,-59],[-4,-84],[10,-28],[11,-63],[4,-48],[2,-39],[1,-16],[-15,8],[-17,-28],[-9,35],[-9,65],[-2,-4],[-23,-40],[0,78],[22,26],[1,30],[1,13],[-2,3],[-11,13],[-13,44],[0,44],[-36,58],[-6,12],[-17,31],[-39,75],[-41,28],[-7,174],[3,58],[-4,52],[-47,22],[-34,-24],[-22,-32],[-17,3],[-21,3],[-40,73],[-20,38],[-32,42],[-22,47],[-7,75],[-35,51],[-25,36],[-87,-168],[-101,-185],[-51,-54],[-31,-37],[-57,-45],[-46,-32],[-38,-30],[-23,-25],[24,-28],[73,-84],[6,-19],[41,-117],[25,-76],[23,-81],[20,-51],[45,-151],[33,-148],[-9,-145],[18,-116],[21,-139],[-64,-158],[6,-11],[81,-151],[3,-38],[0,-4],[1,-16],[-16,-89],[-28,-48],[-10,-17],[-13,-24],[27,-42],[6,-11],[19,-62],[22,-69],[42,-138],[44,-107],[42,-45],[15,-20],[88,-121],[3,-3],[125,-210],[49,-203],[-28,-103],[-37,-82],[-34,-121],[-2,-19],[-5,-44],[8,-98],[0,-33],[2,-139],[1,-26],[-51,-65],[-79,-101],[-53,-62],[41,-17],[165,-67],[66,-70],[36,-39],[38,-43],[22,-94],[14,-104],[16,-183],[16,-173],[11,-90],[14,-73],[17,-59],[165,-228],[31,-71],[3,-9],[2,-6],[13,-51],[28,-67],[7,-78],[7,-63],[20,-129],[-19,-99],[8,-91],[14,-164],[3,-26],[0,-30],[1,-67],[-21,-62],[23,-123],[-7,-108],[10,-146],[0,-311],[-76,-119],[-17,-27],[-28,-21],[-40,-51],[-176,-80],[-104,-47],[-76,-32],[-49,-26],[-41,-38],[-23,-29],[-1,-2],[-4,-14],[-22,-96],[-14,-24],[-4,-7],[-21,-36],[-38,-17],[-41,28],[-26,33],[-82,-26],[-31,-10],[-21,-42],[-57,-74],[-8,-10],[-37,-12],[-92,-30],[-49,-11]],[[29840,51351],[-29,-12],[-23,-9],[-23,-15],[-6,-4],[-14,3],[-15,4],[-19,8],[-31,14],[-17,-75],[-9,-38],[-38,-208],[-4,-17],[-32,-25],[-49,-36],[-17,-4],[-14,-4],[-10,-163],[106,-58],[48,-66],[106,40],[134,-104],[58,-155],[22,-89],[3,-13],[47,-117],[41,-47],[82,-36],[-2,-40],[-96,35],[-2,4],[-114,190],[-10,-25],[-23,-60],[-1,-3],[-18,-46],[171,-223],[42,-63],[67,-96],[19,-28],[165,-230],[34,-89],[-82,-29],[-13,133],[-45,67],[-83,117],[-44,25],[-49,75],[-31,56],[-111,153],[-18,28],[-18,-37],[-44,22],[-19,-61],[-10,-31],[22,-40],[26,-48],[18,-36],[34,-69],[-25,-34],[-29,49],[-44,86],[-28,0],[-15,-1],[-24,-11],[-2,-17],[42,-98],[52,-120],[-6,-12],[-2,-5],[-2,-4],[-47,70],[-18,29],[-2,4],[-58,117],[-12,-3],[-2,-6],[-21,-53],[0,-1],[54,-105],[-17,-34],[-30,93],[-11,-9],[66,-227],[-21,-10],[-63,236],[-10,-24],[-2,-6],[-15,-32],[19,-128],[25,-143],[-4,-69],[0,-5],[0,-7],[0,-146],[4,-28],[6,-56],[-21,3],[-4,49],[-15,180],[-1,16],[6,50],[3,55],[-52,132],[-10,76],[-20,40],[-31,79],[-24,61],[-38,43],[-33,61],[-77,84],[-37,32],[-41,23],[-30,20],[-47,12],[-40,30],[-42,51],[-27,43],[-138,178],[-60,97],[-43,76],[-39,59],[-39,102],[-19,39],[-22,42],[-30,44],[-21,-31],[-23,33],[-5,12],[-16,34],[-23,31],[-34,30],[-31,35],[-69,75],[-71,115],[-38,62],[-28,18],[-60,37],[-88,-44],[-6,-3],[82,-217],[74,-205],[35,-127],[13,-52],[33,-130],[-4,-111],[-6,-141],[-1,-29],[-53,-197],[-80,-193],[-1,-4],[-54,-108],[-7,-23],[-29,-91],[-36,-119],[-6,-20],[-1,-2],[-25,-47],[-4,-49],[-3,-41],[3,-79],[-18,-51],[-31,-61],[-15,4],[-11,2],[-1,-30],[-1,-54],[-39,-120],[-27,-117],[-1,-176],[-25,-97],[-12,-48],[-26,-47],[-39,-72],[-52,-102],[-12,-23],[-13,-44],[-11,-33],[-14,-46],[-9,-63],[-21,-153],[-7,-123],[10,-165],[-10,-146],[-4,-24],[-6,-44],[-27,-37],[-19,-76],[-31,-87],[-47,-65],[-46,-18],[-40,-42],[-30,-31],[-44,-49],[-32,1],[-53,-56],[-18,-95],[-23,-254],[-24,-76],[-59,-193],[-108,-252],[-67,-90],[-114,-35],[-131,-179],[-26,-67],[-60,-155],[-24,-43],[-16,-31],[-10,-22],[-35,-81],[-55,-166],[-13,-42],[-31,-152],[-30,-42],[-85,-119],[-12,48],[-5,19],[-38,17],[-14,7],[-30,4],[-20,36],[-18,-88],[-1,-4],[-3,-17]],[[26272,44897],[-9,4],[-31,12],[-21,-2],[-4,0],[-14,-64],[-45,-19],[-35,3],[-28,26],[-27,34],[-3,5],[0,-6],[10,-88],[-37,-6],[-43,16],[-35,11],[-8,36],[-6,24],[-4,-12],[-19,-51],[-8,-22],[-7,-63],[8,-48],[4,-60],[11,-39],[3,-12],[-18,-52],[-11,5],[-17,7],[-33,-5],[17,53],[0,86],[6,76],[9,77],[3,104],[-2,81],[-26,25],[-4,3],[-28,5],[-30,68],[-36,22],[-44,21],[-25,35],[-21,25],[-12,14],[-13,12],[-27,24],[-25,14],[-22,36],[-27,8],[-11,79],[-20,47],[-27,33],[-46,10],[-8,57],[-29,14],[-44,2],[-31,0],[-34,8],[-36,22],[1,79],[-12,22],[-15,25],[-31,12],[-2,0],[-28,-4],[-28,25],[-13,86],[-15,96],[-11,94],[14,72],[3,80],[-30,62],[-29,90],[-13,103],[-16,60],[-50,-23],[1,11],[1,60],[-2,84],[-7,19],[-15,37],[-29,80],[-20,53],[-12,12],[-14,15],[-26,-39],[0,-6],[0,-81],[-29,47],[0,81],[-4,65],[-29,46],[2,76],[-15,81],[-11,89],[-1,7],[-1,0],[-23,11],[-24,-15],[-27,-29],[-15,-73],[-9,-33],[-11,-43],[-24,-118],[-17,-128],[0,-132],[-6,-92],[-3,-85],[2,-83],[-4,-113],[-9,-90],[-1,-87],[5,-44],[9,-74],[-13,-48],[-4,-12],[-9,-69],[16,-72],[-10,-84],[-17,-87],[3,-125],[25,-68],[34,-49],[4,-102],[7,-96],[1,-72],[23,-100],[-27,-60],[1,-69],[1,-25],[-40,-6],[-9,67],[1,32],[2,45],[-1,78],[-1,75],[0,9],[1,5],[3,59],[-13,74],[-9,27],[-22,64],[-24,74],[-25,51],[-31,66],[-27,91],[-18,100],[-5,34],[-7,44],[-7,1],[-27,5],[-25,-3],[-3,0],[-5,-19],[-15,-56],[-9,0],[-21,2],[-14,-29],[-6,-14],[-20,-33],[-16,31],[26,23],[2,10],[7,30],[33,32],[21,83],[37,10],[12,-4],[2,-1],[13,-5],[17,-6],[24,41],[-13,16],[-30,-3],[-31,-3],[-28,75],[-3,8],[-27,10],[-20,40],[0,42],[0,8],[28,-48],[28,-20],[12,-17],[14,-9],[13,19],[15,69],[2,9],[-5,79],[-11,86],[9,78],[4,4],[30,37],[4,6],[19,58],[-12,78],[-6,104],[-16,71],[1,84],[-18,18],[-12,13],[-20,-19],[-8,-8],[-25,-31],[-44,53],[-46,-55],[-40,3],[-28,-32],[-20,-23],[-1,-6],[-35,-30],[-70,-61],[0,-11],[-26,-24],[-28,-36],[-24,-27],[-21,-27],[-18,-25],[-27,-64],[-37,-96],[-5,-13],[-48,-32],[-2,-4],[-27,-33],[-8,-20],[-15,-39],[-22,95],[-45,2],[-24,-7],[-2,-1],[-4,-48],[-1,-24],[-1,-45],[-31,-27],[-47,14],[0,-60],[-1,-31],[4,-25],[9,-72],[5,-25],[9,-45],[20,-109],[32,-88],[28,-63],[31,-65],[20,-52],[18,-108],[17,-24],[24,-32],[-11,-53],[-13,-8],[-11,-7],[-10,-79],[-5,-112],[-2,-55],[-3,-81],[-32,-114],[-14,-50],[-14,-69],[-3,-15],[-19,-83],[-6,-66],[0,-6],[-1,-82],[-11,-74],[-21,-103],[1,-43],[0,-26],[19,-79],[21,-5],[24,32],[29,60],[17,-26],[-27,-49],[-3,-30],[-11,-17],[1,-38],[21,-48],[6,-103],[13,-76],[11,-84],[0,-60],[14,-78],[2,-95],[-7,-31],[-5,-22],[-10,27],[-31,87],[-9,70],[-7,55],[-12,42],[-9,5],[-28,19],[-34,-32],[-4,-4],[-9,-81],[18,-124],[0,-14],[-3,-96],[-33,-24],[-23,-25],[-12,-13],[-15,86],[-6,98],[-2,63],[-9,84],[-11,84],[-20,78],[-6,35],[-19,106],[-22,45],[-15,59],[-20,63],[-18,49],[-12,28],[-14,33],[-28,71],[-25,32],[-22,18],[-49,33],[-25,-8],[13,48],[12,43],[17,129],[2,13],[15,83],[21,77],[-1,74],[-35,123],[23,44],[13,27],[27,35],[25,44],[1,3],[4,13],[15,49],[5,35],[6,49],[-1,105],[-3,134],[-7,96],[-7,67],[-7,90],[-17,106],[6,107],[0,147],[2,123],[-24,-45],[-25,-60],[-22,-73],[-28,-69],[-23,-67],[-33,-97],[-45,-99],[-17,-119],[3,-36],[3,-37],[27,-56],[30,-103],[14,-88],[1,-74],[-5,-17],[-11,-40],[-21,-54],[-45,-77],[-1,-1],[-36,-56],[-36,-87],[-6,-14],[-52,-30],[-37,-13],[-5,-2],[-6,-11],[-33,-60],[-32,-42],[-31,-41],[-38,-39],[-38,-43],[-40,-47],[-20,-21],[-19,-25],[-34,-36],[-37,-82],[-42,-18],[-50,-26],[-27,-41],[-33,-31],[-31,-34],[-44,-43],[-7,2],[-24,8],[-29,-22],[-12,-82],[-9,-58],[-9,-60],[2,-64],[14,-50],[6,-21],[10,-30],[9,-25],[59,9],[23,-16],[11,-10],[15,-13],[1,-31],[-14,-7],[-5,-35],[24,-43],[4,-49],[-6,-15],[-9,-4],[-2,0],[-49,61],[-22,36],[-14,25],[-5,1],[-62,21],[-36,44],[-18,70],[-22,54],[-29,70],[18,70],[0,1],[0,2],[-10,77],[-3,38],[12,76],[24,75],[26,60],[31,45],[33,27],[41,20],[42,28],[3,1],[27,11],[34,10],[57,19],[10,28],[15,44],[6,14],[21,92],[4,60],[2,30],[21,96],[13,87],[-32,16],[-30,43],[1,20],[1,27],[34,-46],[21,-14],[33,26],[35,-39],[39,-15],[28,35],[33,19],[30,12],[40,4],[34,5],[52,39],[20,28],[5,49],[-7,22],[-6,20],[-24,41],[-39,31],[-40,48],[18,47],[5,59],[4,100],[-7,65],[6,61],[17,59],[16,34],[9,20],[4,28],[6,41],[21,88],[19,62],[27,29],[25,22],[38,42],[1,1],[2,5],[25,50],[19,39],[13,19],[39,55],[39,72],[2,92],[-12,40],[-1,46],[14,21],[-6,-53],[19,-60],[39,-57],[19,30],[27,43],[27,77],[34,65],[21,49],[25,76],[18,52],[11,83],[2,60],[1,25],[7,57],[3,76],[-13,9],[-14,10],[-45,30],[-53,50],[-42,-9],[-21,53],[-40,75],[-21,12],[-14,6],[-13,72],[15,34],[-4,25],[-2,11],[-3,-13],[-6,-26],[-13,18],[-12,22],[2,-26],[5,-52],[18,-58],[6,-31],[-7,-69],[-3,-32],[-2,-39],[-3,-54],[-6,-64],[-24,-36],[-47,-89],[-24,-37],[-28,-41],[-30,-77],[-32,-63],[-29,-65],[-37,-39],[-16,-28],[-16,-31],[-13,-25],[6,-61],[1,-2],[-19,-70],[-26,-64],[-38,-5],[-34,-26],[-27,-40],[-16,-60],[-18,-63],[-16,-36],[-7,-14],[-2,-4],[-31,2],[3,16],[15,79],[11,99],[-10,27],[-6,20],[-15,28],[-14,28],[-48,-14],[-7,-3],[-37,-5],[-15,-3],[-33,-16],[-34,-18],[-37,-11],[-26,-59],[-30,-75],[0,-1],[-1,-25],[-3,-49],[11,-76],[35,-55],[23,1],[18,16],[-4,-27],[2,-19],[2,-10],[-10,-6],[-32,-20],[-10,-56],[-29,-67],[-49,-93],[-25,-77],[-20,-64],[-9,-57],[-24,-40],[-46,-56],[-10,-16],[-19,-26],[-2,-3],[-3,-4],[-31,-42],[-27,-43],[-47,-36],[-57,-32],[-39,-19],[-24,-11],[-18,-8],[-21,-10],[-23,12],[-5,2],[-6,10],[-11,14],[-14,20],[26,46],[4,8],[17,29],[-40,23],[-24,-15],[-16,-10],[-15,-2],[-17,-3],[-16,-2],[-9,-2],[-34,-4],[-31,-17],[-7,-4],[-21,-13],[-25,-20],[-2,-2],[-4,-3],[-30,-53],[-11,-19],[-15,-27],[-33,-59],[-20,-33],[-15,-24],[-9,-21],[-4,-8],[-3,-8],[-11,-25]],[[21450,44925],[-4,-8],[-24,-51],[-28,-29],[-13,-14],[0,-28],[-1,-41],[-22,58],[8,65],[3,21],[6,34],[-16,13],[-12,11],[-20,-62],[-6,23],[-7,22],[-1,3],[0,2],[-1,51],[4,60],[12,53],[10,35],[4,16],[17,31],[9,17],[33,14],[40,29],[1,0],[17,29],[29,48],[8,13],[25,40],[1,3],[14,37],[27,36],[28,47],[30,39],[41,22],[14,8],[43,13],[37,-7],[33,-22],[65,0],[15,7],[32,16],[46,36],[23,-9],[29,-12],[72,4],[52,74],[1,2],[9,93],[-9,70],[-2,58],[0,59],[20,36],[15,40],[4,8],[13,28],[13,65],[-7,125],[-1,140],[-9,36],[-2,9],[-9,38],[-14,-15],[-1,-1],[-12,-12],[-28,-32],[-1,85],[-27,19],[-61,-42],[-110,-14],[-17,33],[-25,-13],[-63,8],[-29,-68],[-52,-7],[-31,-93],[-37,-108],[-99,-146],[-91,-136],[-57,-57],[-62,7],[-16,93],[40,64],[5,7],[86,82],[38,35],[93,108],[56,61],[-2,47],[24,48],[42,22],[45,47],[37,37],[52,16],[35,11],[29,0],[24,-41],[69,2],[18,13],[19,29],[62,20],[20,20],[4,4],[29,-48],[5,-7],[7,-1],[39,-7],[49,-29],[38,35],[31,69],[18,74],[34,59],[42,80],[11,12],[39,40],[41,49],[43,24],[42,19],[25,18],[30,21],[7,-2],[49,-12],[30,-14],[18,-4],[11,-3],[50,-19],[6,-3],[59,27],[39,57],[4,14],[19,57],[15,50],[19,50],[11,89],[-2,87],[8,57],[25,38],[22,40],[46,72],[37,54],[25,53],[16,14],[18,15],[12,76],[-38,51],[-17,31],[-13,23],[-13,15],[-24,27],[-35,-59],[-22,-11],[-23,-10],[-57,18],[-42,21],[-33,4],[-34,-6],[-41,-11],[-26,5],[-33,-16],[-53,-36],[-55,-14],[-8,-19],[-13,-35],[-8,-19],[-43,10],[-42,13],[-37,-8],[-32,-27],[-7,21],[-15,46],[-30,28],[-38,56],[-6,26],[-10,43],[-35,-2],[-2,0],[-13,6],[-15,7],[-63,-21],[-41,8],[-41,2],[-34,-2],[-8,-1],[-41,14],[-7,3],[-53,18],[-61,-1],[-40,-2],[-31,-6],[-38,2],[-56,-33],[-46,-24],[-49,-15],[-49,7],[-23,10],[-43,18],[-40,51],[-40,10],[-31,45],[-60,-11],[-43,-24],[-61,10],[-21,6],[-40,11],[-18,46],[31,39],[9,91],[17,7],[18,8],[45,34],[36,52],[40,80],[27,49],[62,99],[78,87],[43,64],[38,84],[58,88],[39,85],[22,59],[7,61],[22,69],[31,-1],[8,-4],[16,-10],[9,9],[13,13],[41,65],[8,13],[-12,32],[-13,36],[22,50],[11,8],[32,20],[36,42],[57,65],[56,35],[40,32],[10,62],[32,4],[7,-69],[43,-40],[-11,-20],[-29,-50],[-45,-85],[-21,-54],[-26,-24],[-41,-52],[-55,-33],[-31,-24],[-50,-76],[-53,-68],[-35,-51],[-41,-112],[21,-106],[16,-46],[45,-40],[43,-29],[42,-22],[8,-8],[15,-16],[-2,-23],[-3,-29],[32,-54],[4,-8],[-2,0],[-72,-1],[-34,53],[-28,8],[-17,12],[-28,19],[-44,-31],[-25,-18],[-44,-56],[-36,-12],[-26,-26],[-102,-116],[-50,-94],[1,-15],[3,-37],[2,-20],[36,-21],[45,-51],[24,-65],[49,13],[39,16],[86,35],[43,5],[44,10],[40,14],[42,-6],[38,2],[55,-5],[51,-46],[52,27],[23,12],[24,-4],[29,-5],[32,-6],[33,15],[29,29],[35,-15],[37,-60],[2,-91],[29,-78],[51,-15],[55,-10],[24,64],[73,26],[28,17],[27,-19],[31,27],[52,31],[36,2],[27,19],[49,35],[25,-54],[28,14],[25,20],[34,-2],[20,-11],[6,-4],[2,-35],[1,-25],[26,45],[46,53],[107,-46],[14,33],[22,53],[5,11],[-2,6],[-24,116],[-30,83],[-46,23],[9,107],[9,84],[3,35],[33,23],[11,28],[27,68],[2,71],[-6,73],[-38,90],[16,96],[-40,95],[11,95],[6,1],[36,5],[46,-7],[14,15],[31,34],[1,12],[9,80],[-2,26],[-8,82],[9,121],[15,55],[1,6],[0,8],[-2,16],[-3,28],[-21,87],[5,89],[4,119],[6,78],[-1,34],[-2,42],[10,62],[13,19],[33,48],[25,39],[44,27],[6,10],[16,28],[24,42],[33,39],[23,5],[12,2],[36,24],[36,52],[31,26],[56,-4],[30,-9],[17,17],[22,22],[15,-1],[23,-2],[49,42],[28,51],[23,41],[32,9],[9,2],[34,19],[38,52],[0,1],[45,65],[23,69],[7,70],[1,3],[-5,20],[-7,28],[-18,13],[-3,97],[0,13],[-5,14],[-5,14],[3,21],[1,8],[11,-20],[20,-37],[1,-38],[6,-52],[19,11],[17,24],[14,21],[-8,-34],[-8,-32],[10,-69],[30,-21],[48,47],[27,12],[21,9],[67,18],[32,39],[26,78],[12,72],[3,18],[5,115],[18,19],[22,23],[23,37],[16,7],[20,93],[2,25],[8,112],[-6,106],[27,119],[6,103],[1,3],[19,68],[22,76],[12,70],[1,14],[3,26],[2,24],[-22,62],[18,102],[12,118],[-1,109],[-2,13],[-10,66],[-1,6],[-3,-10],[-16,-60],[-22,-59],[-3,70],[-9,191],[-24,36],[19,62],[22,68],[2,9],[20,74],[5,26],[14,73],[10,93],[15,109],[9,82],[-14,30],[-26,55],[-24,57],[-14,62],[17,41],[35,0],[34,-6],[33,12],[1,-8],[3,-57],[25,-48],[23,-66],[6,-59],[20,-55],[6,-64],[5,-65],[-5,-68],[-4,-69],[-4,-45],[-4,-33],[-14,-24],[-16,-27],[-11,-110],[10,-86],[6,-88],[24,-65],[3,-70],[54,-51],[3,-3],[8,-24],[20,-57],[0,-54],[0,-83],[28,8],[14,7],[11,6],[13,6]],[[24931,52467],[20,-18],[14,12],[6,5],[20,45],[40,0],[4,0],[36,0],[9,10],[26,27],[5,39],[1,7],[9,45],[27,33],[2,62],[14,17],[24,29],[-3,-19],[-4,-35],[-2,-54],[-18,-29],[-11,-41],[-6,-21],[-12,-41],[-11,-32],[-11,-34],[16,-37],[0,-33],[-7,-1],[-35,-3],[-14,-41],[1,-75],[-4,-38],[-1,-11],[-14,-19],[-26,-35],[-7,-34],[-6,-28],[22,-53],[28,-21],[21,-17],[95,-45],[2,-1],[3,-1],[31,-15],[20,9],[24,0],[5,-9],[8,-12],[43,0],[59,8],[9,0],[25,0],[14,-30],[-65,-73],[-35,-13],[-1,0],[-19,-6],[0,-1],[-1,0],[-1,0],[-76,16],[-16,-2],[-13,-2],[-51,0],[-18,0],[-21,3],[-8,2],[-19,3],[0,-138],[0,-21],[0,-132],[-12,-132],[-17,-171],[23,-132],[6,-106],[-4,-20],[-8,-46],[64,26],[0,-39],[-3,-24],[-26,-174],[-17,-198],[-38,-74],[-27,-52],[-23,-46],[-31,-36],[-91,-109],[-82,-211],[-73,-176],[-25,-62],[-1,-5],[-64,-325],[-37,-197],[-34,-99],[2,-44],[12,-19],[35,-83],[28,-112],[22,-87],[13,-32],[15,-21],[49,-71],[38,-25],[44,-28],[16,-37],[36,-82],[102,-97],[9,-9],[-19,6],[-28,8],[-44,4],[-17,-35],[-3,-8],[-4,-34],[-4,-29],[10,-60],[7,-46],[17,-76],[10,-46],[8,-16],[49,-104],[34,-101],[19,-57],[46,-237],[30,-75],[28,-36],[26,-27],[36,-16],[67,8],[38,68],[42,15],[-15,-48],[-2,-7],[-2,-1],[-21,-5],[-13,-44],[-2,-10],[-10,-52],[2,-73],[20,-60],[13,-73],[0,-10],[-1,-73],[7,-53],[25,-66],[28,-33],[23,0],[19,0],[3,0],[51,7],[66,108],[23,37],[10,40],[5,56],[26,44],[16,46],[-9,13],[3,73],[12,83],[15,102],[12,50],[21,83],[42,88],[6,22],[13,48],[17,61],[-3,0],[-44,0],[-44,-92],[-20,-42],[-6,-11],[-11,79],[-12,79],[-6,119],[0,119],[-33,0],[-31,0],[10,15],[54,91],[12,118],[35,172],[11,-105],[-9,-122],[0,-89],[13,-110],[34,-49],[53,54],[26,12],[17,105],[35,40],[59,53],[69,79],[30,158],[23,80],[-53,26],[0,66],[-11,106],[-18,79],[7,27],[22,92],[0,132],[12,66],[19,18],[22,21],[41,53],[-35,53],[-29,0],[-53,-79],[-12,-36],[-29,-83],[-13,22],[-10,17],[-13,7],[-39,20],[-17,37],[-30,68],[0,9],[0,150],[12,119],[11,145],[-57,-48],[-7,-5],[-57,-94],[-7,-12],[-64,-79],[-23,27],[-23,25],[0,1],[0,2],[11,77],[11,49],[18,83],[44,99],[9,20],[-3,10],[-20,69],[-30,-39],[-29,13],[-28,-9],[-12,-4],[-64,-80],[-43,8],[-33,6],[19,25],[51,67],[52,119],[47,39],[35,40],[0,92],[0,159],[29,158],[0,1],[64,158],[29,132],[0,33],[0,72],[23,79],[33,67],[20,39],[75,185],[-11,39],[0,2],[11,78],[35,211],[-18,40],[-11,26],[0,172],[-52,132],[-9,-4],[-4,-2],[-2,18],[0,1],[-2,21],[22,0],[8,-13],[16,-24],[10,26],[2,7],[0,-11],[-3,-43],[25,-49],[13,-33],[2,-46],[11,-33],[34,13],[41,60],[1,1],[35,62],[56,17],[21,5],[14,3],[18,41],[18,75],[22,41],[26,25],[20,33],[23,33],[14,3],[21,5],[42,33],[20,4],[20,66],[5,17],[-5,33],[-17,-50],[-32,-29],[1,33],[-5,25],[-1,36],[-1,34],[-13,79],[-12,74],[-3,44],[-3,55],[7,33],[15,-67],[4,-16],[5,-53],[33,-70],[0,-54],[34,-12],[46,20],[13,69],[2,6],[23,49],[44,33],[36,37],[19,1],[45,3],[29,51],[2,3],[36,62],[31,8],[29,8],[68,50],[31,21],[23,4],[40,45],[53,29],[62,66],[26,70],[27,70],[7,87],[7,116],[-9,49],[0,49],[0,1],[11,67],[0,1],[0,2],[11,53],[18,5],[-11,57],[1,56],[0,9],[0,3]],[[27067,53751],[15,39],[3,8],[10,26],[30,42],[3,36],[1,7],[1,16],[0,13],[1,26],[17,-24],[7,-9],[4,-6],[1,-101],[-1,-72]],[[27159,53752],[-9,-57],[-2,-14],[-19,-118],[-1,-10],[-5,-64],[-2,-27],[12,-144],[-4,-110],[20,-22],[25,-28],[11,-110],[4,-76],[7,-118],[-53,-73],[-3,-4],[-69,-35],[-13,-7],[-2,-38],[-5,-72],[7,-93],[-67,-33],[-37,-8],[-4,-1],[-3,-3],[-54,-53],[-3,-3],[-63,-42],[-15,-85],[-4,-67],[-41,17],[-10,-18],[-49,-84],[-11,-25],[-20,-31],[-40,-59],[-24,-13],[-3,-33],[5,-8],[7,-12],[28,-45],[6,-10],[9,-32],[6,-19],[4,1],[44,16],[3,-7],[38,-86],[45,-59],[-8,-102],[0,-101],[-3,-12],[-23,-72],[-48,8],[-27,0],[-33,0],[-40,-24],[-16,-10],[-48,-34],[-37,-84],[-56,-118],[-40,-81],[-19,-23],[-32,-39],[-8,-54],[13,-29],[9,-20],[39,-75],[60,-119],[-26,-109],[-34,-127],[0,-75],[0,-1],[-14,-102],[-15,0],[0,90],[0,20],[0,114],[0,30],[-4,42],[0,42],[-30,17],[-15,-67],[-25,-67],[-16,-43],[-18,-110],[-15,-51],[29,-143],[35,-22],[29,-18],[11,-7],[1,0],[32,9],[44,12],[31,186],[45,17],[48,0],[82,-42],[86,-102],[41,26],[29,-19],[34,-23],[22,-15],[39,-26],[29,-19],[17,-7],[102,-43],[34,4],[33,4],[12,-17],[8,-12],[62,-89],[23,-36],[37,-57],[54,0],[1,0],[30,0],[43,24],[54,-16],[41,0],[13,66],[1,2],[11,54],[4,38],[1,9],[-15,68],[4,59],[-41,71],[-23,39],[-18,71],[-4,13],[-30,60],[37,17],[60,-127],[75,-42],[59,-144],[-22,-118],[10,-106],[-23,-51],[-60,-129],[-14,-32],[27,-94],[3,-3],[63,-95],[46,-69],[34,-38],[37,25],[10,12],[139,157],[39,48],[17,20],[37,76],[11,77],[2,13],[40,56],[10,14],[3,7],[19,49],[83,215],[29,126],[0,85],[-82,220],[-61,135],[-61,135],[-53,157],[-18,54],[-37,172],[-27,124],[-14,127],[-21,34],[-9,16],[-10,13],[-16,21],[-12,76],[-70,68],[-17,13],[-47,37],[3,39],[1,20],[56,43],[33,93],[19,-85],[7,-37],[8,-39],[52,-34],[5,-24],[21,-102],[41,-136],[19,9],[8,37],[25,115],[38,101],[33,85],[49,143],[51,165],[1,4],[5,46],[68,380],[12,31],[25,35],[5,7],[34,32],[4,3],[7,7],[1,10],[18,117],[26,67],[-3,60],[-1,11],[0,5],[-13,19],[-9,15],[-15,22],[-19,29],[-45,51],[-48,160],[-12,70],[-10,65],[0,10],[0,5],[1,28],[2,39],[4,104],[-3,96],[0,11],[0,3]],[[28117,53749],[5,38],[8,65],[17,60],[25,38],[30,62],[31,85],[21,83],[3,12],[-9,25],[-19,15],[-51,82],[-6,9],[-1,3],[-2,9],[-15,51],[56,-70],[21,-26],[19,-3],[28,-5],[22,22],[26,46],[1,2],[26,89],[14,67],[-27,95],[-10,57],[-3,55],[25,60],[-7,45],[-4,63],[-6,84],[-10,76],[14,85],[22,84],[33,54],[-12,66],[-17,106],[11,103],[-3,108],[28,90],[48,50],[38,44],[19,78],[17,56],[21,100],[8,139],[36,56],[27,40],[23,48],[16,45],[27,55],[39,91],[19,103],[3,6],[15,35],[10,22],[40,66],[33,54],[-7,73],[-3,4],[-29,29],[-33,82],[-30,56],[-31,7],[-47,12],[-51,11],[-44,-51],[-20,59],[-5,35],[-7,44],[-43,48],[-65,-21],[-48,-28],[-29,1],[-31,24],[-34,-9],[-29,14],[-33,16],[-16,-7],[-15,-7],[-10,70],[8,83],[22,87],[12,79],[20,87],[18,61],[15,92],[2,89],[-6,81],[-8,47],[-16,55],[-13,101],[14,81],[22,60],[24,64],[24,6],[30,71],[-48,67],[-56,35],[-27,-2],[-12,-1],[-21,-41],[4,-56],[1,-5],[7,-52],[5,-66],[1,-32],[-13,36],[-7,29],[-18,8],[-13,48],[22,100],[0,1],[0,2],[-9,27],[-37,39],[14,67],[32,48],[41,75],[-15,37],[-3,8],[-13,11],[-27,22],[9,116],[4,112],[-24,51],[-29,23],[-19,2],[-23,3],[-56,-65],[-54,-50],[-22,-24],[-19,-21],[-24,-11],[-3,-1],[-29,-99],[-20,-58],[-17,-42],[-8,-23],[-11,-27],[-35,-35],[-22,-32],[-8,-12],[-47,-97],[-29,-56],[-38,-51],[-31,-93],[-40,-58],[-30,-73],[-24,-66],[-25,-66],[-24,-65],[-27,-71],[-13,-33],[-47,-19],[-39,8],[-48,19],[-49,-7],[-7,-1],[-30,-79],[-3,-3],[-31,-40],[-43,8],[-67,-15],[-43,-13],[-29,-52],[-35,-44],[-40,-45],[-44,1],[-44,16],[-36,13],[-32,13],[-35,4],[-38,-102],[-32,-95],[-11,-8],[0,-1],[-34,-27],[-35,-16],[-34,-38],[-36,-22],[-4,-3],[-34,-11],[-2,-1],[-22,-16],[-25,-5],[-24,-10],[-10,-4],[-7,-2],[-30,-9],[-38,21],[-26,14],[16,29],[18,32],[16,12],[10,8],[18,14],[30,30],[29,29],[43,63],[34,31],[35,29],[22,58],[1,74],[43,134],[53,42],[105,128],[5,2],[33,11],[24,45],[23,-71],[18,100],[25,15],[33,-22],[42,21],[-1,-84],[32,17],[2,72],[21,28],[7,10],[14,-4],[15,-4],[1,18],[5,64],[36,7],[15,3],[26,-73],[21,54],[29,39],[3,4],[13,24],[13,26],[14,155],[-20,130],[-37,27],[-14,69],[-40,59],[-12,0],[-57,2],[-50,3],[-30,12],[-51,15],[-30,114],[-64,136],[-14,8],[-15,9],[-14,-48],[-13,-124],[-8,-56],[-3,-17],[-28,-10],[-45,42],[-7,118],[1,11],[4,65],[0,1],[18,90],[14,93],[17,80],[6,30],[-6,13],[-13,34],[-16,62],[-36,36],[-7,6],[-31,-46],[-11,-63],[1,-96],[-13,-151],[-1,-129],[-4,-51],[-3,-49],[-1,-60],[-12,30],[-2,105],[-3,123],[-5,130],[0,2],[-47,12],[-17,-66],[23,-63],[-2,-163],[-2,-59],[6,-36],[14,-121],[-5,-73],[20,9],[3,43],[14,34],[6,-5],[16,-15],[-11,-8],[-5,-4],[6,-27],[21,0],[11,-19],[-25,-29],[23,-49],[24,-46],[19,-32],[-14,-27],[-92,12],[-72,70],[5,64],[24,0],[4,107],[-7,74],[-6,-16],[-9,-23],[-4,-41],[-4,-43],[-53,55],[-19,78],[-18,49],[-22,75],[21,38],[3,5],[1,31],[1,90],[33,19],[-19,64],[-29,25],[-35,105],[36,-24],[18,41],[9,75],[4,75],[1,64],[-51,111],[-45,-32],[-6,-4],[-9,-59],[-14,-80],[-21,6],[-46,13],[-15,-6],[-12,-4],[-21,-47],[-18,55],[-17,44],[2,77],[0,35],[0,50],[-3,6],[-17,49],[17,111],[-6,116],[22,82],[1,99],[41,101],[18,149],[18,82],[11,82],[39,49],[41,75],[30,90],[41,2],[21,31],[19,-38],[13,-25],[23,-47],[39,-112],[46,-97],[37,-62],[-7,-61],[-32,-76],[-23,-92],[-6,-82],[-1,-70],[38,-59],[29,-44],[48,-51],[50,-40],[48,-35],[7,-111],[-5,-109],[-2,-75],[-2,-52],[33,-68],[25,-39],[2,-60],[7,-64],[21,-71],[20,-49],[39,-72],[27,-62],[64,-76],[3,-4],[43,-46],[17,-19],[37,-10],[36,-5],[1,0],[34,-20],[31,-37],[32,-39],[4,-5],[27,-74],[6,-18],[58,-145],[6,-7],[54,-59],[50,36],[18,55],[46,106],[35,120],[52,253],[19,91],[35,116],[-8,70],[-16,54],[-54,107],[11,77],[12,85],[8,72],[3,70],[-3,84],[12,73],[11,73],[0,85],[16,87],[15,190],[0,74],[-10,60],[-1,6],[-52,9],[-10,-8],[-27,-20],[-34,49],[-19,122],[-27,53],[-27,15],[-23,14],[-27,26],[-26,53],[-33,24],[-46,-5],[-32,41],[28,-4],[7,-1],[43,38],[8,15],[3,6],[13,68],[4,79],[7,58],[4,80],[-9,71],[-17,87],[-5,72],[-3,135],[-3,107],[1,88],[-12,84],[-11,75],[-7,89],[0,3],[16,81],[0,38],[-10,10],[-12,-14],[-46,-40],[-23,53],[33,45],[4,5],[40,55],[31,-3],[16,12],[4,23],[-1,8],[-1,11],[-3,25],[-39,18],[-20,58],[-25,17],[-3,2],[-4,-2],[-21,-12],[-26,1],[-15,8],[-22,13],[-45,2],[5,-85],[35,-38],[11,-34],[-6,-9],[-6,-10],[-5,7],[-23,3],[-44,-6],[-22,30],[-12,16],[-3,3],[13,80],[-1,91],[8,85],[1,36],[1,8],[-3,11],[-11,11],[-4,-3],[-24,-67],[-2,-9],[-19,-69],[-28,48],[-8,79],[-18,50],[-5,13],[-27,-25],[-2,-10],[-7,-36],[-7,4],[-19,63],[-15,37],[-11,50],[-15,58],[-18,56],[-54,107],[-14,49],[-28,60],[7,73],[17,80],[30,122],[32,75],[24,78],[17,91],[7,-2],[7,-51],[1,-6],[1,-65],[10,-97],[9,-60],[28,-52],[4,-8],[21,-46],[3,-33],[6,-52],[22,-56],[25,-21],[23,-66],[21,-28],[19,-25],[9,-14],[33,-43],[37,-3],[49,-37],[21,-74],[-2,-15],[-30,-14],[-22,-83],[9,-54],[12,-72],[5,-19],[15,3],[8,17],[18,38],[38,52],[22,17],[52,-9],[3,-4],[52,-67],[24,-56],[21,-31],[18,-36],[5,-10],[1,-7],[6,-71],[-8,-68],[4,-68],[31,-44],[36,-17],[42,-14],[14,-9],[16,-11],[7,-23],[21,-66],[36,-17],[23,19],[5,63],[1,11],[17,70],[4,20],[20,24],[17,20],[7,54],[-5,101],[32,61],[34,66],[34,64],[11,5],[28,15],[15,23],[26,39],[19,29],[36,79],[23,102],[20,74],[15,12],[8,8],[16,13],[27,42],[17,47],[35,89],[14,75],[4,71],[-9,126],[-27,107],[-17,48],[-30,27],[-46,59],[-21,61],[6,48],[33,84],[15,28],[21,98],[1,4],[-6,23],[-4,19],[-2,6],[8,26],[1,2],[35,-37],[-8,-33],[14,-91],[22,-60],[2,-71],[44,-131],[58,-19],[111,16],[6,1],[25,3],[17,-2],[137,-21],[68,-82],[26,-4],[49,-7],[44,6],[38,19],[55,31],[26,-8],[17,-6],[57,-24],[40,13],[36,16],[36,15],[4,3],[3,2],[11,7],[15,11],[42,27],[11,8],[8,35],[11,54],[-4,16],[-15,49],[8,22],[13,35],[18,62],[-6,49],[-5,50],[4,83],[-24,81],[-16,24],[-20,28],[-28,46],[-13,66],[-21,57],[-30,97],[7,81],[-25,72],[-42,29],[-27,18],[-73,79],[-7,7],[-16,17],[-29,32],[-49,124],[-16,39],[-1,39],[0,9],[0,8],[10,8],[27,18],[4,3],[1,0],[1,-1],[33,-41],[13,3],[13,4],[5,1],[5,2],[1,0],[9,29],[16,28],[11,17],[1,2],[19,29],[34,56],[55,121],[21,89],[1,73],[0,39],[-1,29],[-1,83],[-27,39],[-37,33],[-35,55],[-44,40],[-39,39],[-52,69],[-34,86],[-2,10],[-8,39],[-2,5],[-19,47],[2,117],[-4,65],[-4,76],[15,97],[-2,60],[0,6],[-2,20],[-5,64],[-20,55],[-1,5],[0,67],[0,25],[0,1],[-37,77],[-10,86],[-14,64],[-16,60],[0,5],[1,94],[0,11],[0,90],[-1,54],[4,148],[1,59],[-16,29],[-28,50],[-51,131],[0,64],[0,23],[-22,93],[-14,60],[-24,59],[-23,55],[-1,4],[0,74],[17,176],[13,73],[-7,19],[-1,4],[-22,-2],[-31,-2],[-68,-4],[-15,10],[-4,3],[-14,9],[-42,47],[-38,68],[-23,37],[-6,6],[-18,23],[-32,6],[-22,1],[-20,1],[-15,4],[-12,3],[-28,9],[-21,2],[-14,2],[-41,-1],[-27,-3],[-30,0],[-35,6],[-46,-3],[-47,0],[-35,2],[-45,9],[-4,2],[-43,16],[-32,25],[-42,53],[-32,61],[-33,80],[-24,82],[-10,66],[-10,73],[-6,91],[-28,37],[-60,0],[-30,-7],[-6,-1],[-27,-22],[-29,-37],[-7,-72],[-14,-65],[-5,-18],[-2,-6],[-4,-14],[3,-20],[19,-11],[33,-17],[18,-30],[2,-4],[1,-21],[-13,-39],[-8,-22],[-6,-18],[1,-8],[2,-12],[30,-26],[18,-6],[16,-6],[38,-9],[34,-30],[21,-41],[25,-7],[15,26],[1,9],[1,16],[13,19],[12,-19],[7,-26],[15,-58],[11,-26],[24,-61],[28,-47],[42,-64],[5,-4],[24,-25],[-4,-14],[-22,-75],[33,-1],[21,-28],[22,-66],[-2,-12],[-1,-10],[-12,26],[-12,30],[-7,-25],[0,-23],[-1,-54],[-15,8],[-12,7],[-7,65],[0,5],[0,7],[-2,33],[-15,1],[-11,1],[-22,-35],[0,-22],[6,-9],[37,-66],[9,-17],[6,-6],[9,-9],[5,-20],[3,-10],[17,-81],[16,-98],[1,-2],[17,-95],[8,-33],[6,-29],[9,-56],[10,-58],[14,-63],[19,-46],[9,-41],[3,-17],[17,-54],[9,-69],[7,-51],[6,-114],[1,-63],[-3,-44],[-2,-38],[-4,-62],[-1,-17],[-1,-16],[-1,-46],[-5,-43],[-3,-34],[-17,-50],[0,-8],[0,-12],[29,-25],[27,-69],[7,-70],[17,-76],[9,-80],[12,-65],[3,-93],[13,-92],[-12,-60],[-3,-13],[-19,-69],[11,-79],[23,-93],[4,-14],[24,21],[4,-8],[-8,-67],[-2,-9],[-38,-32],[-16,-7],[-27,-10],[-21,-13],[-22,-20],[-16,-78],[-7,-1],[-34,-5],[-15,110],[-1,3],[-15,25],[-18,28],[-22,81],[-3,84],[-1,67],[-4,80],[-2,82],[-10,97],[-5,92],[22,125],[10,110],[16,62],[1,4],[16,66],[0,1],[1,1],[16,20],[0,12],[0,9],[0,8],[-13,22],[-34,5],[-36,-9],[-43,-8],[-56,5],[-27,3],[-33,1],[-36,4],[-37,0],[-29,0],[-1,0],[-22,-18],[-41,-79],[-10,-23],[-12,-28],[-13,-32],[-2,-5],[-22,-100],[-12,-69],[-19,-52],[-7,-18],[-23,-92],[-30,-83],[-5,-2],[-48,-22],[-40,-10],[-8,-11],[-25,-35],[-40,-50],[-30,-30],[-35,-47],[-42,-62],[-16,-22],[-18,-24],[-5,-7],[-22,-72],[-16,-59],[-14,-47],[-1,-6],[-9,-52],[-21,-54],[-34,-38],[-41,-2],[-23,-12],[-6,-3],[-5,-4],[-34,-28],[-17,-41],[-17,-35],[-13,-18],[-14,-22],[-25,-60],[-6,-13],[-31,-57],[-21,-11],[-5,-3],[-30,-28],[-31,-50],[-3,-5],[-20,-44],[-14,-73],[-9,-118],[-2,-10],[-16,-78],[-6,-52],[-5,-36],[-7,-60],[-5,-36],[-5,-39],[-11,-54],[-5,-24],[-11,-17],[-4,-7],[-4,-6],[-21,-33],[-28,-16],[-14,-9],[-18,-7],[-13,-5],[-36,-12],[-16,-50],[-13,-16],[-95,-115],[-9,-4],[-30,-16],[-16,-65],[-21,-45],[-22,-85],[-5,-74],[-8,-30],[-5,-23],[-7,-104],[-7,-92],[-4,-11],[-5,-12],[-91,-233],[-24,-62],[-3,-25],[-2,-15],[-2,-13],[-22,-11],[-39,7],[-1,0],[-2,1],[-21,-26],[-4,-34],[8,-44],[-16,-63],[-2,-11],[-27,-38],[-6,-9],[-8,-84],[-12,-57],[-20,-64],[-28,-64],[-5,-105],[1,-90],[3,-74],[-3,-90],[23,-120],[22,-109],[-1,-72],[-2,-73],[-6,-88],[-8,-113],[7,-144],[-25,-104],[-17,-114],[-28,-145],[-20,-68],[-28,-24],[-43,-37],[-9,-2],[-9,-3],[-40,-11],[-37,-43],[-39,-42],[-30,-23],[-15,-11],[-38,5],[-3,1],[-29,-36],[-36,-50],[-14,-10],[-9,-16],[3,-36],[13,-40],[0,-7],[-27,-5],[-10,-1],[-4,-1],[-1,8],[-15,12],[-15,34],[-11,17],[-6,9],[-38,-10],[-40,-49],[-35,-20],[-50,-29],[-62,-47],[-51,-56],[-66,-86],[-37,-50],[-40,-48],[-57,-40],[-42,-21],[-24,-39],[-29,-51],[-18,-15],[-12,-10],[-18,16],[-8,81],[12,62],[21,71],[24,86],[49,109],[18,49],[-11,24],[-5,1],[-31,1],[-18,1],[-17,-16],[-20,-19],[-43,-40],[-35,-5],[-20,-16],[-34,-25],[-34,-21],[-31,-20],[-31,-27],[-25,-47],[-17,-94],[-25,-100],[-25,-69],[0,-7],[-47,-75],[-29,-42],[-2,-8],[-10,-45],[-20,-3],[-17,23],[-24,32],[-6,2],[-31,8],[-37,-23],[-47,-39],[-40,-20],[-38,-27],[-37,-32],[-42,-54],[-38,-46],[-42,-16],[-42,-20],[-40,-18],[-37,-5],[-38,-20],[-23,-11],[-1,-1],[-24,-26],[-13,-70],[-24,-45],[2,-79],[19,-65],[15,-81],[-25,-98],[-30,-129],[-15,-79],[-33,-44],[-42,-15],[-23,-43],[-30,-35],[-31,-67],[-26,-54],[-36,-30],[-32,-17],[-22,-33],[-15,-29],[-4,-8],[-50,15],[-41,-7],[-30,2],[-27,-15],[-58,-13],[-23,-15],[-20,-14],[-21,-76],[-18,-79],[-17,-75],[-11,-69],[-16,-86],[4,-101],[0,-2],[-23,-32],[-21,-4],[-20,-3],[-1,-52],[13,-52],[-8,-72],[0,-5],[-43,-30],[-31,-3],[-2,0],[-26,0],[-25,-49],[-21,-88],[-21,-51],[-14,-41],[-12,-35],[-25,-52],[-28,-72],[-1,-5],[-8,-16],[-22,-48],[-19,-43],[-22,-52],[-27,-58],[-21,-54],[-35,-79],[-12,-14],[-39,-45],[-30,-41],[-16,-22],[-15,-11],[-21,-15],[-14,-52],[-5,-16],[-25,-62],[-23,-82]],[[22115,57129],[-1,-1],[0,-1],[-26,-59],[-44,-116],[-27,-82],[-1,-6],[-1,-8],[-10,-73],[1,-31],[4,-92],[-7,-96],[-4,-49],[-22,-142],[-35,-108],[-6,-14],[-20,-39],[-13,-37],[-2,-5],[-5,-15],[-7,-18],[-21,-58],[-8,-22],[-18,-48],[-31,-42],[-14,-28],[-20,-38],[-28,-53],[-1,-2],[-34,-57],[-22,-37],[-12,-13],[-17,-19],[-36,-53],[-19,-67],[-12,-43],[-10,-37],[-34,-118],[-11,-39],[-1,-3],[-5,-19],[-4,-14],[9,-22],[14,-31],[0,-20],[1,-25],[-20,-29],[-14,1],[-9,-1],[-27,-6],[-37,-40],[-19,-70],[-6,-23],[-41,-44],[-18,-63],[-30,-36],[-4,-22],[-13,-63],[-16,-90],[-3,-20],[-18,-39],[-17,-38],[-33,-65],[-25,-82],[-29,-78],[-32,-123],[-11,-36],[-11,-37],[-16,-84],[-12,-104],[-14,-55],[-15,-45],[-3,-7],[-3,-10],[-28,-68],[-28,-78],[-6,-16],[-4,-22],[-11,-61],[-11,-73],[-31,-91],[-21,-62],[-29,-59],[-7,-38],[44,-58],[29,-80],[-4,-45],[10,-117],[-3,-49],[-4,-56],[12,-23],[17,-32],[2,-4],[1,0],[38,-16],[47,-6],[50,22],[58,2],[36,-34],[29,-17],[23,27],[34,45],[23,21],[10,-1],[21,-2],[7,-7],[41,-43],[57,-14],[50,-36],[55,-19],[42,-30],[9,-2],[23,-7],[21,-5],[34,-3],[15,-12],[24,47],[0,35],[33,73],[0,1],[28,43],[13,-12],[32,-31],[6,-7],[33,16],[13,-3],[5,-1],[2,-1],[8,-26],[-8,-20],[-5,-12],[-5,-11],[-4,-2],[-28,-20],[-20,26],[-15,19],[-21,3],[-25,-28],[-2,-32],[0,-1],[24,-24],[-14,-58],[-13,-18],[-20,-26],[-4,-59],[16,-41],[24,-24],[18,-19],[17,-22],[29,-37],[34,-13],[11,-4],[1,-1],[1,0],[49,9],[40,10],[44,-2],[39,37],[37,49],[24,84],[11,60],[8,53],[32,76],[13,99],[24,61],[33,58],[36,44],[6,6],[30,28],[28,22],[5,6],[24,34],[113,83],[44,40],[36,13],[14,5],[32,40],[10,56],[33,71],[36,36],[42,24],[78,2],[24,1],[11,5],[29,50],[28,28],[57,17],[39,36],[49,21],[44,28],[33,12],[44,47],[23,18],[40,23],[3,2],[2,2],[29,44],[69,56],[44,30],[24,17],[3,2],[44,28],[40,39],[54,24],[52,6],[2,4],[33,42],[3,69],[29,69],[5,3],[53,30],[1,3],[28,52],[34,41],[43,-18],[51,-10],[51,53],[40,41],[38,27],[8,6],[37,30],[7,4],[22,13],[18,32],[27,32],[30,50],[34,58],[48,74],[4,5],[20,24],[22,39],[7,12],[9,38],[26,-6],[11,-2],[14,-50],[-3,-23],[-5,-56],[42,-96],[9,-21],[-3,-7],[-17,-53],[-28,-25],[-26,29],[-28,-27],[-41,-82],[-13,-66],[-38,-54],[-25,-37],[-36,-55],[-49,-61],[-28,-53],[-24,-42],[-21,-54],[-33,-66],[-19,-50],[-9,-23],[-25,-45],[-7,-2],[-57,-12],[-54,-54],[-39,-39],[-30,-49],[-22,-50],[-4,-9],[-35,-65],[-27,-61],[-26,-36],[-33,-63],[-38,-65],[-44,-63],[-47,-8],[-16,10],[-24,14],[-30,-20],[-5,-3],[-68,-21],[-31,-28],[-48,-42],[-33,-26],[-42,-34],[-35,-15],[-56,-14],[-26,-1],[-56,-29],[-51,-24],[-4,-3],[-28,-29],[-32,-9],[-53,-8],[-69,8],[-1,0],[-17,2],[-5,-6],[-20,-23],[-49,-50],[-23,-33],[-37,-17],[-23,-20],[-6,-2],[-27,-10],[-46,-64],[-43,-42],[-54,-72],[-9,-12],[-20,-35],[-20,-25],[-35,-28],[-38,-47],[-40,-64],[-45,-78],[-6,-11],[-59,-86],[-64,-42],[-72,-29],[-44,-9],[-7,-7],[-25,-23],[-44,-12],[-5,-2],[-26,7],[-11,2],[-43,-15],[-39,-6],[-53,19],[-61,-14],[-56,-5],[-62,-21],[-44,26],[0,66],[-31,37],[-38,-5],[-42,11],[-17,62],[-3,10],[-11,2],[-32,6],[-55,18],[-46,8],[-45,-2],[-37,27],[-35,1],[-33,-10],[-2,0],[0,-1],[-18,-80],[0,-1],[-5,-60],[-3,-18],[-4,-31],[-4,-36],[-15,-80],[-8,-108],[-12,-25],[-9,8],[-3,3],[-1,0],[-6,6],[-24,4],[-3,0],[-21,4],[-24,-44],[-2,-2],[-10,-20],[-13,-24],[-7,-13],[-1,-1],[-2,-3],[-1,-4],[-1,0],[-7,-13],[-19,-18],[-2,2],[-6,6],[4,53],[-5,9],[0,1],[-5,9],[-10,-11],[-2,-1],[-7,-7],[-2,-13],[-15,-73],[-10,-14],[-19,-28],[-2,5],[-5,12],[3,9],[2,5],[3,10],[1,4],[8,37],[0,1],[1,7],[7,32],[4,16],[-44,23],[-44,1],[-3,0],[-9,0],[-26,1],[-24,1],[-36,17],[-5,9],[-18,28],[-2,2],[-33,53],[-14,18],[-11,15],[-18,26],[-39,39],[-10,10],[-10,12],[-33,41],[-4,12],[-14,43],[-1,3],[-1,5],[-8,28],[-3,9],[24,130],[27,44],[2,80],[0,17],[-5,22],[-28,114],[14,74],[50,29],[44,69],[9,85],[-9,87],[27,124],[14,76],[11,68],[8,109],[18,78],[13,104],[13,112],[28,78],[24,87],[26,51],[19,64],[30,96],[2,76],[78,252],[14,24],[0,1],[4,69],[36,54],[10,16],[-1,15],[-2,50],[-2,78],[2,4],[31,35],[51,169],[22,113],[0,80],[19,77],[-13,102],[-27,68],[4,47],[12,20],[28,-33],[41,-29],[72,49],[23,38],[34,77],[39,77],[31,56],[35,39],[12,114],[39,79],[29,48],[31,35],[32,78],[14,56],[35,74],[28,42],[55,112],[46,72],[22,33],[14,23],[44,71],[9,43],[6,76],[18,28],[-2,32],[-25,65],[13,54],[7,72],[22,57],[17,124],[16,73],[11,44],[6,49],[0,78],[25,36],[14,20],[17,41],[1,3],[24,47],[30,130],[13,94],[17,90],[-12,50],[0,8],[1,51],[0,3],[0,1],[8,17],[10,23],[17,4],[37,6],[26,32],[16,36],[19,43],[47,80],[44,79],[38,50],[35,71],[30,153],[49,76],[10,76],[30,54],[7,68],[23,129],[36,65],[29,65],[41,90],[26,84],[25,68],[19,53],[38,109],[43,19],[5,3],[11,40],[0,1],[10,38],[-2,-1],[-39,-13],[-12,13],[-15,17]],[[22565,59612],[44,93],[5,92],[10,33],[8,28],[27,37],[40,24],[7,4],[45,21],[3,1],[19,9],[27,12],[34,17],[27,59],[29,62],[44,19],[23,27],[8,10],[16,42],[8,21],[1,0],[11,0],[27,19],[47,33],[50,50],[25,49],[-4,87],[34,40],[19,22],[16,28],[1,92],[18,94],[25,42],[11,34],[7,21],[12,34],[45,36],[26,-1],[5,0],[38,-27],[16,-27],[15,-25],[26,-49],[31,-13],[43,-5],[91,10],[5,10],[-6,25],[5,21],[15,60],[3,12],[4,12],[13,36],[-18,82],[-16,31],[-33,67],[15,71],[22,11],[16,30],[-13,50],[-27,11],[-4,2],[-18,-1],[-5,0],[-21,-5],[-12,-24],[-14,-31],[-30,-21],[-18,-30],[-5,-7],[-5,-8],[-26,0],[-8,17],[-3,5],[-2,19],[6,10],[8,14],[22,37],[47,28],[17,9],[19,11],[6,23],[7,25],[14,53],[13,77],[37,28],[19,26],[15,21],[26,73],[15,79],[-7,86],[-2,75],[20,17],[7,5],[31,18],[15,5],[7,2],[9,-2],[6,24],[7,25],[-3,92],[-35,160],[-24,50],[0,16],[14,89],[-7,96],[35,54],[34,41],[33,59],[15,117],[10,135],[6,97],[5,124],[2,61],[8,49],[13,39],[34,15],[25,-30],[9,-11],[15,-7],[26,-13],[13,49],[-12,99],[-6,25],[-3,14],[-11,45],[29,161],[13,8],[56,-3],[50,11],[12,-15],[21,-26],[18,-60],[8,-45],[7,-39],[18,-55],[32,-12],[31,38],[2,69],[-7,71],[-2,120],[25,101],[17,57],[-4,71],[-5,119],[-14,97],[-45,22],[-56,65],[-21,35],[-28,61],[-13,52],[-6,53],[-11,95],[-11,83],[12,89],[-26,77],[0,93],[-15,85],[-7,85],[2,125],[8,67],[15,56],[-2,10],[0,104],[-1,43],[-17,48],[0,8],[-3,45],[75,90],[25,153],[1,10],[-2,129],[76,83],[15,-13],[33,-65],[13,-67],[9,-45],[0,-6],[-4,-124],[12,-73],[23,-61],[14,-113],[11,-75],[-5,-98],[-31,-62],[-19,-57],[-6,-144],[-7,-111],[-8,-64],[-18,-47],[-12,-23],[2,-33],[3,-41],[73,-22],[15,-4],[40,-7],[7,6],[37,27],[59,45],[44,46],[49,64],[45,75],[26,90],[20,106],[23,141],[17,115],[2,69],[0,3],[10,40],[0,59],[-3,1],[-15,7],[-1,0],[-26,6],[-13,54],[-8,48],[-30,95],[-21,87],[21,116],[29,125],[-8,81],[8,79],[4,103],[17,76],[39,58],[16,5],[38,110],[5,59],[32,8],[1,2],[5,49],[0,4],[-3,10],[-38,56],[-6,8],[-2,72],[-13,28],[2,28],[13,18],[1,1],[25,-5],[1,-2],[20,-16],[10,-19],[16,-30],[11,-27],[8,-43],[10,-37],[5,-41],[-4,-30],[-7,-25],[-11,-34],[1,-34],[13,-34],[6,-34],[8,-38],[-10,-56],[-28,43],[-9,15],[-3,5],[-21,-3],[-4,-40],[35,-212],[37,-58],[3,-25],[24,-58],[34,-39],[33,-48],[16,-56],[19,-76],[-1,-122],[-18,-101],[10,-90],[33,-49],[33,-44],[37,-87],[-7,-84],[-12,-50],[0,-74],[-3,-112],[-2,-101],[-6,-85],[-12,-100],[-18,-54],[-11,-81],[-31,-118],[-13,-64],[7,-71],[-10,-76],[-18,-101],[-28,-86],[2,-83],[-56,-123],[-29,-80],[-25,-66],[-21,-77],[15,-146],[9,-41],[14,-61],[6,-69],[0,-81],[-16,-64],[-13,-19],[-37,-54],[-17,-90],[16,-72],[6,-24],[-3,-77],[-3,-26],[-5,-40],[-19,-55],[-3,-5],[-2,-4],[-22,-46],[-39,-20],[-32,-11],[-26,-9],[-36,-81],[-1,-5],[-10,-76],[0,-1],[1,-134],[-1,-2],[-11,-106],[0,-2],[-7,-23],[-12,-43],[-30,-69],[-1,-23],[40,-77],[62,-60],[26,-21],[36,-39],[3,-3],[10,-11],[52,-61],[23,-12],[7,-4],[8,0],[22,-1],[22,15],[20,26],[11,16],[37,25],[-4,73],[-12,55],[0,3],[-1,5],[-4,29],[-18,37],[-14,26],[-5,18],[-5,17],[3,8],[13,0],[8,-11],[24,-34],[10,-25],[13,-33],[7,-41],[6,-73],[10,-33],[39,-5],[7,5],[16,10],[46,31],[14,-1],[24,-1],[6,-1],[4,0],[20,3],[15,3],[3,3],[44,39],[47,39],[37,14],[1,0],[1,1],[5,6],[18,20],[2,3],[1,1],[14,49],[-17,72],[-42,76],[-42,71],[-27,38],[-30,81],[16,86],[11,184],[-17,107],[-3,89],[14,88],[21,88],[14,55],[23,72],[20,87],[30,78],[20,66],[27,45],[21,35],[16,35],[7,14],[12,11],[5,5],[10,9],[70,57],[26,119],[0,46],[1,36],[-10,88],[-3,25],[29,111],[18,94],[6,65],[35,19],[29,15],[-1,22],[-20,37],[-7,13],[-13,60],[20,56],[46,52],[1,16],[-29,71],[-8,77],[6,95],[-5,64],[33,109],[26,82],[2,5],[1,15],[-27,84],[-13,56],[-5,32],[-4,22],[39,136],[34,106],[9,6],[29,20],[36,-1],[43,-20],[11,1],[29,0],[9,1],[44,17],[29,20],[51,53],[53,71],[43,70],[54,88],[32,78],[29,48],[10,16],[31,19],[26,11],[7,1],[17,3],[35,35],[2,2],[34,48],[29,63],[22,66],[0,75],[18,53],[15,65],[-6,75],[-11,126],[-7,100],[-4,45],[-6,48],[-25,116],[-3,4],[-24,30],[-16,83],[-11,74],[-11,65],[9,7],[29,22],[51,-5],[52,-6],[49,-10],[46,3],[99,-12],[44,-13],[63,-35],[39,-24],[54,-31],[27,-3],[48,19],[36,28],[59,28],[26,0],[3,0],[27,69],[0,1],[18,138],[-3,30],[11,79],[12,16],[12,57],[-12,118],[12,18],[10,33],[0,1],[-1,6],[-6,26],[-7,-17],[-14,5],[-7,3],[-10,-10],[0,-8],[3,-52],[-21,8],[-11,44],[-10,79],[61,0],[45,1],[22,0],[5,-16],[-2,-23],[-2,-17],[10,-88],[0,-136],[22,-48],[9,5],[29,14],[12,66],[4,25],[28,81],[15,32],[11,22],[7,8],[3,4],[7,10],[5,0],[7,0],[7,9],[0,6],[1,4],[-4,12],[-9,6],[-17,14],[-17,14],[-11,10],[-18,19],[-59,3],[-19,-6],[-79,-4],[-64,-4],[-81,49],[-15,23],[-15,31],[-7,13],[-38,66],[2,58],[-10,50],[-3,14],[-50,55],[-36,75],[-3,65],[4,23],[5,33],[0,92],[6,102],[1,23],[3,12],[2,10],[26,108],[-10,31],[-11,35],[-23,34],[-16,24],[-6,57],[-8,89],[-12,9],[-19,14],[-11,8],[-37,-43],[-38,-99],[-61,-148],[-22,-73],[-2,-7],[-5,-16],[-26,-24],[-5,-4],[-11,-9],[-29,-26],[-2,-2],[-30,-24],[-53,-1],[-29,34],[-7,32],[-4,19],[-23,6],[-32,5],[-7,1],[-2,-20],[-1,-14],[5,-9],[9,-15],[0,-10],[1,-6],[-41,-28],[-31,0],[-24,-1],[-1,4],[-2,7],[7,39],[7,36],[2,4],[27,58],[25,30],[14,16],[9,6],[26,17],[43,34],[61,-33],[16,49],[12,37],[6,121],[-5,99],[-14,114],[-13,44],[-18,60],[-4,102],[0,3],[25,113],[22,67],[15,44],[14,89],[1,5],[1,1],[28,51],[-7,84],[-5,10],[-15,32],[-4,9],[-10,23],[-42,1],[-26,-45],[0,-72],[-10,-109],[0,-66],[0,-10],[-14,-39],[-13,-1],[-25,0],[-24,75],[-7,73],[-27,-6],[-7,29],[33,85],[20,-3],[10,-18],[16,-29],[15,9],[4,28],[2,15],[3,30],[14,54],[0,2],[5,4],[24,22],[21,14],[27,18],[9,46],[-16,101],[-27,69],[-27,0],[-8,1],[-40,8],[-61,18],[-56,19],[-35,-13],[-41,56],[-44,110],[-30,66],[-30,59],[-22,30],[-22,62],[-39,59],[-10,82],[-12,67],[4,142],[-9,56],[-8,48],[-11,115],[-18,63],[-31,81],[-15,71],[-8,15],[2,76],[-8,31],[-45,44],[17,80],[0,1],[27,64],[4,11],[20,14],[-15,41],[-24,48],[-32,63],[-22,43],[-7,13],[-24,44],[-29,-19],[-16,-26],[-19,-33],[-60,-51],[-16,-10],[-17,-10],[-4,-13],[-6,-16],[-20,-35],[-23,23],[-17,86],[2,62],[17,15],[-44,128],[-36,36],[-38,27],[-48,49],[-14,77],[-29,68],[-42,87],[3,6],[24,35],[-9,70],[19,89],[32,47],[-73,60],[-30,29],[-19,41],[-24,48],[-24,37],[-48,80],[-27,75],[-12,106],[-8,72],[-16,62],[-25,52],[-27,38],[-43,38],[-65,93],[-17,69],[29,67],[13,19],[16,22],[2,3],[39,41],[16,94],[29,38],[5,8],[28,44],[40,61],[26,38],[20,30],[37,39],[36,39],[28,8],[9,2],[38,35],[49,18],[38,44],[32,31],[10,10],[38,35],[38,34],[9,9],[24,18],[22,26],[3,16],[4,23],[-38,74],[-3,3],[-11,25],[-36,78],[-30,55],[-28,63],[-19,74],[-2,74],[5,47],[6,53],[16,65],[25,45],[41,52],[13,43],[-24,11],[0,1],[-32,-13],[-29,-17],[-51,-14],[-38,22],[-57,-4],[-58,-1],[-34,-7],[-33,-13],[-36,5],[-47,-14],[-45,-18],[-63,-45],[-40,-18],[-61,-17],[-40,-22],[-29,-13],[-44,-22],[-37,-11],[-63,-4],[-32,-11],[-71,-43],[-60,6],[-40,45],[-36,-61],[-24,-58],[-5,-11],[-19,-41],[-39,-81],[-55,-82],[-36,-52],[-79,-109],[-74,-97],[-30,-39],[-101,-106],[-59,-59],[-1,-1],[-2,-3],[-24,-40],[-19,-45],[-8,-17],[3,-68],[32,-59],[29,-63],[8,-87],[-1,-133],[0,-38],[-25,-92],[-54,-125],[-30,-51],[-9,-17],[-23,-32],[-7,-10],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-3],[0,-2],[-1,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[1,-2],[0,-3],[1,-2],[0,-2],[1,-2],[1,-2],[0,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[7,3],[49,24],[23,3],[36,-12],[50,-23],[32,-25],[26,-35],[27,-36],[31,-29],[54,-63],[61,-75],[39,-64],[9,-110],[51,-105],[31,-87],[56,-49],[41,-31],[47,-24],[66,-37],[67,-66],[15,-142],[-9,-113],[0,-10],[4,-67],[-15,-92],[-5,-28],[-1,-46],[-3,-98],[-12,-98],[-15,-101],[-15,-73],[-16,-64],[-2,-12],[0,-32],[0,-35],[3,-67],[-43,-72],[-27,-84],[-10,-73],[-47,-52],[-3,-5],[-33,-58],[-56,-58],[-31,-10],[-5,-2],[-51,-8],[-27,-9],[-18,-6],[-57,-31],[-58,-15],[-29,14],[-18,9],[-26,1],[-24,-15],[-25,-12],[-25,-53],[-2,-5],[-40,-16],[-37,-5],[2,21],[4,52],[57,105],[18,34],[30,23],[47,26],[11,18],[16,23],[41,35],[36,20],[1,1],[23,33],[20,36],[18,54],[5,25],[9,40],[11,98],[12,80],[8,13],[22,35],[-21,52],[-30,67],[-18,122],[-17,138],[-14,74],[-2,43],[-2,18],[-4,14],[-19,66],[-40,41],[-25,88],[-25,77],[0,2],[1,9],[0,8],[1,5],[0,4],[0,9],[1,9],[0,9],[0,3],[0,2],[-1,2],[-1,3],[0,2],[-1,2],[-1,2],[-1,2],[-22,-7],[-2,-1],[-47,12],[-67,43],[-54,15],[-29,17],[-42,40],[-37,26],[-30,37],[-51,32],[-48,25],[-84,42],[-49,37],[-29,33],[-11,23],[-31,62],[-36,82]],[[23337,72889],[-9,44],[-4,20],[8,103],[6,57],[3,35],[19,99],[17,114],[37,195],[25,63],[10,26],[27,37],[1,0],[1,1],[2,1],[1,1],[1,2],[1,1],[2,2],[1,2],[1,2],[1,2],[1,3],[1,2],[1,3],[0,3],[1,3],[1,3],[0,3],[1,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,4],[0,3],[-1,3],[0,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-2,2],[-1,1],[-1,2],[-1,1],[-2,1],[-1,1],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[-63,0],[-39,13],[-58,8],[-51,2],[-64,0],[-57,33],[-22,22],[-31,-2],[-20,-1],[-27,1],[-27,0],[-18,-3],[-31,-6],[-24,-6],[-25,-6],[-35,-5],[-10,-2],[-19,-6],[-37,-11],[-21,-6],[-35,-10],[-25,9],[-1,1],[-42,-14],[-161,-81],[-58,-25],[-33,-15],[-35,-22],[-36,-18],[-37,-26],[-34,-32],[-53,-64],[-8,-6],[-28,-21],[-20,-11],[-19,-10],[-6,-10],[-7,-14],[-38,-10],[-50,-14],[-72,-32],[-21,-7],[-28,-10],[-17,-5],[-23,-8],[-16,-17],[0,-14],[0,-16],[31,-1],[68,50],[4,4],[7,5],[71,39],[68,5],[-3,-6],[-3,-5],[-6,-12],[16,-45],[6,-18],[0,-1],[2,-6],[35,-73],[18,-37],[25,-32],[40,-51],[24,-43],[33,-59],[20,-105],[7,-69],[-6,-31],[-10,-48],[-9,-46],[-7,-23],[-13,-38],[-16,-43],[-12,-32],[10,-67],[42,-127],[20,-37],[13,-24],[4,-32],[3,-27],[30,-71],[14,-114],[5,-81],[13,-55],[4,-57],[9,-58],[6,-40],[-12,-53],[-12,-53],[-34,-8],[-5,-1],[-39,7],[-31,3],[0,34],[0,20],[-22,17],[-22,12],[-34,28],[-39,78],[-28,43],[-15,51],[5,36],[6,51],[-17,32],[-8,15],[-38,45],[-14,23],[-21,37],[-11,32],[-9,23],[-27,64],[-13,33],[-38,92],[-33,91],[-28,36],[-37,48],[-40,59],[24,83],[15,20],[12,15],[4,5],[6,8],[-4,13],[-29,96],[-25,129],[2,113],[0,52],[0,26],[-2,22],[-4,29],[-9,81],[-1,10],[-8,-23],[-10,-28],[-33,3],[-31,59],[24,43],[11,20],[3,5],[3,5],[13,20],[19,31],[4,27],[3,26],[14,40],[22,-66],[3,-85],[-2,-51],[16,2],[21,2],[-3,57],[0,3],[0,2],[-8,50],[-13,9],[-1,1],[-1,1],[-6,70],[-1,10],[-1,15],[-24,50],[-7,61],[-9,69],[-18,59],[-9,27],[-20,78],[-22,73],[-35,88],[-18,47],[-8,27],[-12,39],[-26,76],[-52,109],[-34,63],[-35,32],[-7,7],[-37,27],[-71,45],[-27,21],[-24,20],[-36,34],[-72,116],[-34,48],[-37,63],[-36,46],[-23,47],[-38,61],[-24,38],[-32,62],[-36,100],[-15,52],[-4,15],[-25,32],[-33,41],[-52,6],[-9,1],[-13,2],[-20,23],[-31,36],[-41,6],[0,-1],[-71,-80],[-18,-20],[-12,-1],[-25,-9],[-47,25],[-48,8],[-22,44],[-8,15],[-5,10],[-5,27],[-4,20],[-4,-8],[-8,-18],[-4,-37],[-6,-51],[-4,-30],[-2,-4],[-2,-6],[-15,-8],[-18,-10],[-73,0],[-74,-31],[-34,-21],[-26,-16],[-45,-29],[-29,-5],[-41,4],[-31,1],[-17,19],[176,337],[68,120],[22,37],[65,96],[74,106],[55,72],[43,39],[8,0],[22,2],[5,1],[27,-1],[17,-31],[25,-30],[-30,-124],[-4,-7],[-7,-11],[-13,9],[-1,7],[7,30],[9,45],[-1,4],[4,12],[-4,47],[-13,21],[-21,-62],[11,-132],[0,-26],[4,-40],[-4,-49],[-16,-92],[-15,-29],[-10,-18],[-1,-59],[39,-21],[19,51],[4,69],[5,81],[2,8],[1,3],[11,63],[11,62],[23,72],[27,79],[7,26],[13,9],[53,35],[28,0],[30,31],[23,16],[71,77],[25,27],[4,5],[5,0],[60,0],[39,15],[18,13],[28,18],[34,0],[14,35],[-16,45],[-17,10],[-8,5],[-37,-37],[-19,-11],[-12,-8],[-25,-19],[-19,-1],[-21,-1],[-25,-21],[-19,-16],[-21,-23],[-28,-32],[-36,-36],[-57,-30],[-54,-30],[-65,0],[-37,0],[-43,-1],[-2,0],[-33,-13],[-12,-9],[-31,-23],[-66,-78],[-22,-29],[-74,-108],[-57,-97],[-57,-103],[-92,-159],[-1,-2],[-13,-23],[-8,-14],[-70,-151],[-32,-44],[-42,-72],[-35,-57],[-46,-72],[-39,-54],[-11,-16],[-44,-66],[-56,-83],[-53,-77],[-25,-34],[-35,-48],[-38,-30],[-13,-11],[-71,-79],[-34,-30],[-35,-39],[-52,-40],[-29,-22],[-78,-53],[-34,-16],[-36,13],[-44,32],[-24,-4],[-31,-5],[-28,-11],[-10,-4],[-34,-6],[-45,-7],[-30,11],[-33,11],[-27,0],[-28,0],[-41,13],[-33,28],[-12,11],[-21,30],[-23,33],[-23,-4],[-11,-2],[-12,-6],[-46,-23],[-16,-10],[-10,-5],[-23,-13],[-32,-20],[-16,-12],[-16,-13],[-34,-26],[-38,-24],[-14,-9],[-15,-10],[-44,-29],[-40,-13],[-17,1],[-14,1],[-59,4],[-54,-8],[-34,-5],[-13,-2],[-23,3],[-28,2],[-32,14],[-24,26],[-9,17],[-24,45],[-12,9],[-30,25],[-46,-1],[-16,-4],[-20,-5],[-15,-4],[-37,-21],[-44,-22],[-56,-3],[-102,-40],[-44,-1],[-27,13],[-18,8],[-65,-5],[-34,-7],[-7,-2],[-45,-3],[-44,-3],[-51,37],[-73,52],[-27,19],[-17,0],[-11,-19],[-2,-2],[-34,-32],[-52,25],[-35,16],[-39,4],[-36,10],[-46,40],[-27,54],[-39,17],[-49,27],[-35,38],[-9,11],[-9,0],[-36,2],[-31,3],[-50,6],[-38,25],[-30,45],[-14,35],[-6,4],[-33,58],[-25,46],[-3,24],[-3,23],[61,94],[24,19],[212,75],[95,1],[79,2],[12,0],[101,-8],[32,-12],[51,-10],[39,-7],[17,-9],[19,-8],[20,-7],[15,13],[1,5],[3,15],[2,13],[-11,18],[-25,15],[-19,5],[-9,3],[-15,0],[-33,4],[-52,7],[-37,-4],[-21,5],[-88,4],[-80,2],[-65,-2],[-15,-1],[-30,-5],[-67,-19],[-40,-16],[-54,-11],[-14,-4],[-50,-26],[-28,-21],[-34,-40],[-12,-14],[-145,-81],[-31,-7],[-69,-20],[-62,-9],[-65,-2],[-107,-15],[-41,-7],[-27,1],[-34,10],[-34,11],[-50,22],[-28,19],[-13,12],[-11,10],[-24,24],[-25,34],[-23,39],[-10,17],[-67,132],[-29,62],[-73,82],[-43,31],[-53,29],[-38,29],[-40,-2],[-51,-10],[-43,-62],[-9,-4],[-33,-17],[-24,-32],[0,-2],[-4,-12],[-12,-36],[-35,-39],[-52,-87],[-7,-11],[-45,-46],[-11,-11],[-32,-34],[-41,-38],[-33,-19],[-57,-10],[-43,7],[-47,26],[-39,28],[-54,1],[-18,1],[-26,25],[-3,1],[-34,14],[-1,0],[-42,7],[-6,-1],[-29,-6],[-43,-4],[-44,9],[-51,32],[-44,36],[-32,28],[-9,12],[-37,55],[-25,67],[-3,6],[31,62],[15,26],[8,15],[-23,26],[-2,2],[-34,32],[-15,19],[-15,19],[-47,43],[-11,9],[-44,39],[-28,-2],[-7,0],[-9,-1],[-43,62],[-35,26],[-47,29],[-44,20],[-51,32],[-36,7],[-37,5],[-38,4],[-19,-13],[-26,28],[-40,-7],[-29,18],[-39,26],[-37,13],[-2,1],[-26,4],[-25,4],[-9,1],[-73,58],[-10,0],[-15,1],[-5,-7],[-2,-32],[41,-58],[3,-9],[-36,-51],[-37,-45],[-34,-26],[-8,-6],[-41,-31],[-5,0],[-12,-2],[-22,-4],[-39,13],[-51,82],[24,42],[4,8],[2,12],[-14,25],[-13,3],[-32,-3],[-44,-34],[-19,-34],[-24,-43],[-27,-20],[-3,-2],[-58,18],[-35,21],[-52,-5],[-65,-9],[-85,-36],[-72,-45],[-66,-52],[-40,-16],[-9,-3],[-17,-7],[-58,-3],[-41,4],[-34,3],[-34,-3],[-34,7],[-7,2],[-38,-1],[-15,-4],[-15,-4],[-56,-10],[-45,-15],[-36,4],[-51,19],[-30,28],[-7,12],[-29,46],[-41,29],[-6,4],[-38,39],[-16,-17],[-10,-11],[-29,-60],[-37,-19],[-63,-31],[-60,-24],[-44,-6],[-109,-24],[-35,-2],[-42,2],[-47,9],[-23,19],[-16,14],[-16,17],[-13,12],[-14,53],[-31,28],[-6,2],[-32,8],[-38,37],[-17,-3],[-30,-6],[-18,1],[-19,1],[-63,-29],[-19,-9],[-37,-1],[-16,10],[-22,14],[-30,1],[-5,0],[-64,-13],[-45,-15],[-41,1],[-36,1],[-50,10],[-17,15],[-10,8],[-28,-4],[-40,-6],[-68,12],[-66,24],[-18,59],[-36,70],[-15,6],[-9,4],[-29,-7],[-9,-7],[-28,-19],[-33,15],[-16,7],[-40,-13],[-23,-6],[-48,-13],[-31,-5],[-70,-7],[-61,0],[-47,3],[-27,3],[-14,22],[-9,16],[-12,5],[-36,16],[-35,23],[-40,8],[-3,0],[-56,32],[-23,83],[-26,17],[-37,10],[-54,-26],[-25,-7],[-24,-6],[-57,11],[-19,11],[-42,25],[-21,12],[-19,43],[-22,-7],[-4,-1],[-38,3],[-77,9],[-7,3],[-67,27],[-50,15],[-26,13],[-23,10],[-29,26],[-17,29],[-9,13],[-53,33],[-17,44],[-23,57],[-36,46],[-7,5],[-13,9],[-22,15],[-34,44],[-3,4],[-38,40],[-1,1],[-27,13],[-34,25],[-48,38],[-62,41],[-27,26],[-25,28],[-11,13],[-23,6],[-31,9],[-16,18],[-35,39],[-40,9],[-7,1],[-48,14],[-1,0],[-24,36],[-2,3],[-3,16],[1,5],[14,77],[-11,163],[-16,19],[0,1],[1,8],[10,-1],[13,-23],[9,-109],[4,-22],[5,-3],[8,23],[4,11],[21,53],[16,-34],[15,-33],[15,13],[0,20],[-20,47],[-42,100],[18,6],[12,19],[3,4],[15,39],[-1,9],[-5,47],[-34,36],[-13,14],[-14,8],[-13,6],[-30,26],[-35,13],[-26,-42],[-25,3],[-15,25],[-12,-41],[-18,-5],[1,35],[-11,18],[-65,-1],[-34,9],[-40,52],[-24,46],[-6,12],[-34,31],[-14,21],[-15,21],[-40,33],[-5,4],[-21,17],[-94,76],[-52,42],[-88,71],[-8,7],[-172,139],[-36,29],[-28,22],[-83,67],[-4,4],[-15,12],[-64,52],[-3,1],[-41,27],[-48,25],[-43,38],[-22,22],[-32,14],[-39,22],[-34,24],[-25,22],[-10,10],[-2,2],[-29,28],[-17,59],[-38,10],[-49,17],[-35,31],[-32,51],[-32,41],[-73,24],[-36,34],[-30,16],[-25,9],[-2,-3],[-20,-20],[-9,-69],[-32,-68],[-37,-40],[-36,-38],[-40,-29],[-41,-28],[-60,-7],[-52,7],[-42,34],[-48,63],[-69,-3],[-42,9],[-55,26],[-26,15],[-31,65],[-4,39],[10,38],[7,25],[10,27],[-12,46],[-59,53],[-39,14],[-49,18],[-22,8],[-45,18],[-85,34],[-39,34],[-39,8],[-52,25],[-39,4],[-28,21],[-26,3],[-40,72],[-33,59],[-38,74],[-32,36],[-8,7],[-30,16],[-35,43],[-36,29],[-11,-4],[-78,-32],[-132,-55],[-34,-1],[-40,10],[-112,73],[-177,221],[-35,73],[-22,23],[-31,31],[-10,11],[-33,54],[-34,23],[-33,23],[-25,26],[-55,38],[-44,14],[-42,11],[-69,59],[-43,64],[-31,69],[-10,59],[-1,7],[-19,45],[-23,10],[-69,28],[-41,44],[-55,57],[-27,18],[-1,1],[-30,31],[-3,4],[-34,28],[-35,52],[-48,62],[-43,28],[-41,41],[-28,27],[-77,21],[-19,41],[-20,33],[-12,45],[-48,26],[-29,14],[-57,90],[-45,42],[-48,52],[-39,19],[-40,22],[-28,47],[-22,16],[-37,26],[-46,6],[-50,-1],[-54,10],[-58,62],[-54,69],[-47,77],[-29,38],[-19,28],[-44,35],[-12,58],[-29,60],[-2,3],[-28,56],[-33,45],[-16,-7],[-49,-19],[-36,-12],[-27,61],[-30,57],[-25,-8],[-52,31],[-39,-1],[-46,54],[-74,-36],[-53,-65],[-22,-26],[-56,-45],[-37,-18],[-56,-6],[-53,10],[-36,11],[-20,18],[-7,7],[-32,45],[-6,10],[-40,64],[-15,62],[-1,6],[16,65],[-26,-1],[-2,0],[-24,57],[-34,67],[-19,39],[-14,51],[-8,30],[6,19],[14,53],[-26,17],[-63,3],[-52,15],[-77,43],[-48,17],[-24,-3],[-42,-51],[-49,-21],[-24,7],[-41,36],[-60,28],[-55,-18],[-33,-14],[-83,7],[-54,-22],[-16,-19],[-51,11],[-12,-10],[-40,-29],[-26,-20],[-22,-1],[-67,68],[-52,41],[-55,-47],[-5,-14],[-19,-13],[-35,-51],[-9,-7],[-7,-5],[-32,-25],[-22,-84]],[[316,82056],[57,3221],[9123,-5691],[4247,-1640],[1759,-446],[3734,1720],[324,764],[1377,3251],[-571,887],[-753,2753],[-625,4203],[3309,2114],[0,1855],[-3059,3777],[-943,1164],[2954,0],[15,0]],[[21264,99988],[7,-90],[10,-86],[11,-117],[23,-103],[13,-53],[6,-60],[2,-25],[4,-39],[-2,-85],[0,-18],[-4,-99],[-5,-49],[6,-57],[47,6],[56,29],[59,35],[78,44],[15,9],[9,-3],[31,-12],[39,-1],[95,36],[82,21],[47,-4],[73,-47],[45,-29],[48,-11],[35,31],[19,44],[12,28],[-38,78],[-2,125],[-29,78],[-18,106],[-24,73],[-28,82],[-16,67],[-3,37],[-5,60]],[[21962,99989],[3534,0]],[[25496,99989],[22,-70],[6,-54],[-54,-29],[-4,-55],[-61,-66],[20,-44],[23,22],[6,44],[56,46],[26,-67],[17,22],[17,-137],[15,-27],[32,-58],[20,-15],[15,-12],[16,-10],[25,-15],[39,-78],[3,-47],[3,-59],[28,-76],[27,-28],[11,-19],[15,-26],[-5,-54],[-6,-67],[0,-19],[-3,-58],[-6,-48],[-1,-9],[-1,-11],[-11,-11],[-13,-12],[-42,-40],[-33,-33],[-6,-5],[-12,-13],[-6,-4],[-53,-42],[-30,23],[-12,13],[-23,25],[-39,32],[-8,5],[-48,16],[-47,36],[-33,35],[-29,9],[-27,12],[-26,27],[-57,45],[-74,81],[-34,67],[-37,75],[-14,49],[8,25],[19,57],[156,194],[22,13],[49,93],[-14,21],[-28,32],[-13,-24],[-19,-41],[-13,-28],[-26,-31],[-47,-79],[-54,-69],[-13,-23],[-30,-47],[-2,-2],[-22,-39],[-19,-37],[-9,-17],[-6,-13],[-26,-57],[-5,-12],[-14,-47],[-20,-65],[-43,-82],[-3,-4],[-32,-60],[-38,-96],[-10,-15],[-63,-91],[-16,-24],[-22,-75],[-11,-38],[-18,-107],[-10,-60],[-8,-37],[-12,-52],[16,-94],[13,-21],[24,-37],[72,-47],[37,-19],[57,-37],[43,-27],[36,-26],[34,-15],[49,-28],[23,11],[23,10],[25,7],[41,19],[39,45],[13,18],[11,16],[63,87],[7,9],[27,54],[9,17],[40,-10],[31,-8],[56,-40],[19,-13],[15,-12],[29,-23],[55,-79],[12,-23],[16,-33],[32,-94],[13,-74],[3,-187],[-1,-10],[-4,-44],[-20,-112],[-27,-91],[-10,-18],[-7,-12],[-15,-27],[-29,-33],[-19,-20],[-48,-29],[-20,-10],[-14,-8],[-43,-10],[-18,-19],[-29,-32],[-36,-63],[-8,-16],[-35,-80],[-47,-75],[-4,-7],[-2,-3],[-14,-15],[-50,-53],[-69,13],[-9,-7],[-10,-9],[-18,-15],[25,-98],[39,-97],[21,-49],[27,-35],[54,-53],[18,-21],[80,-92],[40,-61],[14,-25],[18,-31],[5,-6],[29,-36],[45,-50],[38,-48],[30,-51],[26,-50],[12,-25],[45,-100],[60,-50],[21,-17],[6,-5],[22,-18],[32,-27],[94,-58],[41,-30],[11,-8],[50,-59],[36,-70],[33,-102],[16,-111],[6,-60],[20,-62],[2,-24],[5,-54],[13,-110],[-4,-136],[16,-44],[11,-88],[4,-46],[5,-68],[4,-102],[-3,-73],[-1,-38],[-1,-32],[-5,-72],[-2,-107],[-4,-75],[-11,-169],[-2,-91],[8,-97],[0,-8],[7,-33],[-2,-24],[30,-19],[51,-4],[9,9],[1,-1],[30,35],[2,8],[1,3],[4,4],[14,38],[-2,9],[-5,16],[-28,24],[-11,26],[-6,15],[-4,30],[-3,79],[-12,37],[-15,48],[0,7],[-3,16],[-4,17],[-6,23],[6,31],[4,17],[44,37],[41,4],[15,-17],[30,-33],[26,-54],[20,-1],[9,-1],[62,36],[26,3],[13,1],[13,2],[33,5],[6,-7],[13,-16],[32,-38],[23,-91],[17,-31],[15,-28],[31,-32],[10,-16],[14,-22],[6,-30],[4,-40],[0,-8],[22,-17],[16,-12],[10,-4],[18,-6],[23,-47],[14,4],[16,5],[2,-4],[7,-9],[2,-39],[4,-8],[24,11],[4,0],[61,3],[13,-17],[24,-32],[-8,-123],[-6,-76],[0,-74],[-14,-75],[-23,-73],[-26,-42],[-31,-61],[-27,-109],[-13,-77],[-13,-74],[-28,-86],[-34,-83],[-23,-41],[-10,-17],[-17,-57],[-18,-64],[-23,-116],[-20,-99],[-11,-91],[22,-66],[24,-3],[58,-8],[11,-1],[21,-112],[36,-62],[14,-93],[28,-91],[40,-52],[22,-45],[3,2],[32,23],[19,35],[15,99],[21,91],[31,97],[40,107],[29,133],[48,107],[31,74],[17,31],[12,21],[26,28],[22,32],[3,4],[29,40],[27,57],[36,72],[92,138],[0,106],[22,72],[25,13],[45,25],[33,98],[41,49],[39,46],[90,51],[42,25],[28,22],[6,3],[8,4],[74,39],[41,22],[59,31],[46,24],[19,-10],[14,-7],[29,-11],[39,-6],[27,-4],[4,-1],[36,-3],[31,-3],[35,-3],[52,-5],[1,0],[59,-26],[23,-36],[31,-77],[15,-38],[28,-69],[37,-42],[56,-44],[58,-41],[16,-26],[49,-124],[10,-25],[5,-14],[38,-14],[82,-28],[0,7],[89,-39],[4,-2],[2,-5],[0,-2],[2,-4],[26,-61],[29,-66],[15,25],[26,43],[6,-14],[8,-18],[-27,-58],[-30,-64],[-29,-31],[-31,-37],[35,-81],[-25,-34],[-8,-10],[-22,-63],[-5,-16],[-20,-63],[-41,-73],[-19,-15],[-14,-42],[-19,-50],[-19,-59],[2,-71],[-3,-55],[-29,-43],[-1,-2],[-4,1],[-36,10],[-41,-19],[-14,-50],[-2,-9],[-9,-29],[-27,-85],[1,-36],[0,-56],[0,-2],[1,0],[26,-72],[1,0],[10,-44],[16,-73],[-7,-115],[25,-105],[6,-22],[11,-46],[12,-31],[11,-26],[30,-56],[9,-19],[19,-9],[14,-6],[0,7],[-1,44],[-16,49],[-2,7],[-26,90],[10,15],[54,90],[11,10],[39,37],[27,-46],[9,-15],[-33,-66],[12,-40],[7,-25],[3,-8],[1,-7],[14,-55],[5,-14],[13,-34],[23,-105],[11,-145],[17,-101],[-5,-101],[4,-131],[-36,-77],[0,-1],[-2,-4],[-6,-23],[-4,0],[-49,6],[-8,-23],[-1,-2],[-5,-13],[-2,-8],[3,-47],[-7,-6],[-24,-21],[-38,54],[-37,65],[-22,37],[-22,-37],[-8,-14],[33,-103],[23,-67],[18,-76],[18,-62],[6,-22],[38,-7],[47,-32],[38,-38],[6,-50],[1,-5],[0,-3],[4,-10],[18,-53],[39,-116]],[[28927,89671],[21,-52],[10,-24],[29,-46],[30,-32],[38,-67],[23,-41],[11,-22],[66,-139],[59,-94],[23,-44],[24,-20],[57,-13],[20,-14],[38,-26],[59,-25],[31,-79],[26,-66],[-6,-67],[14,-12],[29,-23],[18,-1],[21,-46],[3,-6],[43,-93],[7,-30],[16,-61],[13,-60],[23,-28],[24,-31],[19,-28],[17,-26],[-13,-60],[10,-63],[-41,-45],[-18,-96],[-24,-111],[-15,-85],[-2,-81],[-63,-119],[-49,-34],[-23,-61],[11,-29],[2,-3],[9,-18],[0,-1],[-24,-50],[-47,-23],[-24,-11],[-8,-3],[-19,-9],[-12,-48],[3,-18],[6,-27],[-3,-24],[0,-2],[-6,-6],[-1,2],[-5,13],[-2,6],[-1,1],[-1,4],[-17,17],[-16,-1],[-23,-10],[-33,16],[-9,12],[-9,18],[-8,7],[-20,-15],[-3,0],[-8,-10],[-1,-41],[9,-51],[14,-6],[4,29],[11,20],[16,6],[12,-17],[12,-20],[-1,-20],[-2,-26],[-1,-4],[-13,9],[-8,10],[-7,-8],[-23,-34],[-21,-31],[0,-6],[0,-3],[-1,-5],[0,-2],[0,-1],[1,-1],[17,-59],[35,-7],[1,1],[22,-6],[19,-20],[5,-20],[10,-15],[2,-3],[-1,-3],[-3,-12],[-19,-4],[-16,12],[-11,16],[-5,8],[-12,-2],[-7,-2],[-31,9],[-19,4],[-35,32],[-28,-11],[-21,-21],[-36,-7],[-24,43],[-13,49],[-26,18],[-27,3],[-8,9],[-8,11],[-12,15],[-16,48],[-5,0],[-11,-61],[13,-60],[0,-82],[-39,55],[-32,52],[-16,65],[-35,66],[-22,78],[31,45],[51,17],[3,4],[25,7],[14,19],[0,2],[1,13],[-8,24],[-40,12],[-28,26],[-17,16],[-13,12],[1,21],[1,12],[0,34],[0,7],[-22,21],[-85,-4],[-18,4],[-41,-5],[-48,-5],[-50,-12],[-34,2],[-47,0],[-27,-6],[-6,-2],[-31,7],[-48,3],[-54,5],[-54,12],[-13,56],[-29,38],[-41,18],[-25,12],[-6,38],[-20,82],[-19,44],[-11,25],[-8,18],[-4,-2],[-3,-1],[-22,-9],[-14,-26],[-32,-60],[-10,-67],[27,-57],[1,-108],[-3,-91],[11,-8],[20,23],[16,18],[28,32],[5,6],[4,1],[54,-9],[15,-3],[52,-7],[3,-1],[58,-9],[8,-4],[36,-17],[27,-56],[35,-53],[6,-8],[13,-14],[15,-15],[44,-40],[56,-30],[38,-10],[54,-7],[58,-13],[20,-22],[22,-24],[28,-94],[29,-116],[5,-96],[-14,-127],[16,-85],[7,-97],[35,-62],[30,-34],[28,-63],[41,-31],[2,-109],[22,-90],[11,-97],[10,-93],[22,-48],[13,-8],[26,4],[19,-6],[13,-7],[23,-2],[1,-4],[1,-18],[0,-1],[11,-11],[-2,-11],[-18,-4],[-4,16],[-4,4],[-7,7],[-11,3],[-2,1],[-4,13],[-8,5],[-9,-7],[-8,-33],[-3,-4],[-3,0],[-7,10],[-3,9],[-5,-2],[-6,-11],[-13,-32],[-1,0],[-13,-37],[-28,-42],[-10,-54],[21,-53],[7,-61],[4,-65],[14,-113],[4,-95],[2,-43],[-1,-59],[-1,-44],[0,-81],[10,-94],[19,-65],[9,0],[17,-49],[7,-93],[32,-43],[23,2],[1,0],[1,-2],[34,-59],[20,-56],[9,-83],[-5,-19],[-20,-51],[11,-38],[-24,-30],[-32,-40],[-3,-50],[-6,-94],[12,-30],[5,-40],[1,-3],[7,-3],[4,-2],[14,3],[1,-17],[2,-19],[29,3],[6,-21],[-5,-29],[-15,31],[-9,-15],[-20,8],[-8,37],[-6,1],[2,-54],[10,-24],[6,-52],[4,-35],[17,-20],[4,-48],[-8,-10],[-23,31],[-12,12],[-2,24],[3,35],[-4,74],[-9,12],[-7,43],[3,42],[-6,15],[-11,29],[-15,60],[16,50],[-13,24],[-27,26],[-35,-20],[-52,-35],[-28,-21],[-40,-30],[18,-39],[22,-76],[28,-33],[11,-22],[27,-54],[11,-59],[-3,-24],[-12,-1],[-9,64],[-12,27],[-24,13],[-16,0],[-13,17],[-9,24],[-27,10],[-32,19],[-12,6],[-3,-7],[-21,-51],[-13,32],[-8,20],[-20,29],[-8,-15],[-19,-36],[-18,26],[-9,14],[-34,-21],[-8,-4],[-43,13],[-26,54],[-2,-89],[0,-5],[5,-64],[-5,-18],[-10,-41],[-12,50],[-1,7],[-15,108],[0,4],[-1,6],[-32,29],[-29,41],[-18,-9],[-17,-7],[-15,-8],[-22,51],[-27,35],[-4,5],[-52,66],[-50,31],[-35,114],[-15,58],[-21,71],[-26,58],[-8,112],[-16,81],[-28,91],[-20,54],[-17,67],[-29,88],[-31,104],[-4,50],[-50,-19],[-55,-8],[-29,-5],[-50,-39],[-27,-53],[-23,-69],[-2,-111],[-7,-30],[-5,-21],[18,-64],[0,-1],[17,-121],[7,-63],[4,-49],[0,-10],[10,-79],[11,-134],[-4,-140],[-34,-45],[-6,-8],[-35,6],[-41,34],[-3,4],[-26,31],[-23,27],[-14,151],[0,3],[-13,50],[-18,71],[-28,59],[-10,60],[27,18],[30,19],[1,0],[-2,25],[-1,19],[-115,104],[-18,52],[-15,79],[-14,69],[-7,70],[-3,8],[-8,76],[-40,69],[-4,14],[-29,126],[12,115],[-1,1],[5,21],[16,36],[28,35],[18,-6],[34,-23],[5,60],[-16,92],[-8,64],[-4,38],[-84,40],[-85,0],[-109,-76],[-19,-33],[-4,-2],[-48,-40],[-31,-33],[-25,-15],[-57,-51],[-25,-13],[-65,-28],[-37,-34],[-60,-41],[-34,-16],[-55,-31],[-29,-21],[-36,-28],[-49,-38],[-31,-23],[-26,-15],[-59,10],[-23,59],[-7,17],[-42,9],[-33,54],[-42,-56],[-2,-3],[-7,-25],[-13,-53],[-34,-84],[-4,-2],[-81,-41],[-30,-68],[-16,-88],[6,-84],[18,-6],[34,-10],[24,-12],[16,-8],[29,15],[36,18],[40,-5],[22,-3],[16,-3],[30,-6],[5,-1],[46,-16],[46,-48],[40,-41],[60,-91],[0,-3],[0,-73],[6,-92],[22,-32],[22,-43],[46,-76],[15,-45],[-11,-63],[11,-106],[5,-100],[7,-60],[18,-98],[-15,-96],[-23,-13],[-10,-6],[-9,-6],[-24,-17],[-6,-69],[-11,-71],[-25,-36],[-22,-57],[0,-1],[-18,-43],[-38,-25],[-53,32],[-17,16],[-18,16],[-10,-78],[-4,-93],[28,-62],[4,-86],[9,-103],[12,-123],[28,-63],[29,-39],[29,-34],[36,-30],[5,-79],[16,0],[25,0],[45,1],[4,0],[3,2],[27,27],[19,-12],[17,-12],[13,-100],[-2,-23],[-2,-42]],[[24032,83129],[15,28],[13,25],[25,7],[1,0],[42,-27],[25,-4],[16,-3],[22,-3],[68,10],[-1,13],[-8,88],[-43,43],[-51,42],[9,69],[27,47],[24,-9],[11,-4],[31,-18],[13,-8],[21,-20],[21,-19],[11,2],[25,6],[31,-14],[1,-1],[22,-35],[4,-40],[18,-10],[27,19],[-2,7],[-8,22],[-27,50],[-17,53],[24,48],[34,1],[4,-4],[23,-26],[2,-2],[6,-27],[10,-43],[41,-31],[14,-11],[6,39],[2,18],[-2,33],[14,5],[14,5],[19,-11],[37,-63],[-1,-1],[-18,-21],[-7,-8],[-2,-2],[-13,-35],[23,-37],[42,-22],[16,-11],[19,-16],[12,9],[30,-23],[30,-15],[27,31],[9,24],[14,38],[9,9],[39,43],[14,8],[25,14],[-14,98],[-51,21],[-32,-12],[-39,1],[10,26],[8,22],[17,44],[18,33],[9,26],[7,23],[-2,95],[7,81],[12,12],[20,17],[8,3],[18,7],[26,56],[9,52],[-24,73],[-28,51],[-39,9],[-32,2],[-28,2],[-57,76],[-26,59],[-4,92],[0,58],[23,65],[49,188],[-33,74],[-26,61],[-17,45],[-4,10],[-15,-11],[-28,-21],[-11,-15],[-22,-30],[-26,-46],[-35,-42],[-32,-72],[10,-26],[12,-29],[2,-4],[6,7],[15,19],[8,-6],[7,-7],[-3,-42],[-4,-34],[-11,-27],[13,6],[11,5],[16,-22],[9,-10],[11,-13],[23,-22],[15,-17],[15,-17],[-26,-26],[-8,-7],[-14,-9],[-10,-7],[-15,-22],[-30,-41],[-36,-63],[-24,-73],[-19,-54],[-10,-12],[-23,-29],[-55,-40],[-41,-76],[-41,-11],[-36,14],[-35,55],[6,15],[13,30],[6,15],[31,67],[36,104],[29,55],[8,73],[-31,-20],[-8,1],[-45,3],[-1,0],[-27,-26],[-28,-26],[-19,-9],[-1,0],[-3,3],[-11,16],[-3,6],[-27,43],[-17,-3],[0,5],[-5,36],[1,0],[23,5],[4,12],[11,34],[18,41],[11,26],[12,28],[7,87],[14,54],[-11,85],[27,43],[17,64],[-9,88],[-9,13],[-12,19],[-17,25],[5,45],[0,8],[3,27],[-18,30],[-23,8],[-23,29],[-27,32],[-12,70],[-23,58],[-20,59],[-15,54],[-31,33],[-39,62],[-12,61],[-4,21],[0,3],[5,69],[7,15],[19,39],[13,25],[36,67],[37,178],[10,68],[11,81],[2,80],[12,75],[1,7],[2,19],[6,66],[28,75],[7,28],[15,9],[76,47],[0,14],[-25,13],[-59,32],[-11,80],[-25,48],[-8,1],[-2,0],[-24,-1],[-2,0],[-5,-3],[-31,-20],[-43,-31],[-27,10],[-22,21],[-11,22],[-24,49],[0,1],[5,47],[4,33],[21,83],[18,34],[20,39],[19,35],[29,-2],[16,6],[6,66],[-3,69],[-3,93],[-46,78],[-37,-65],[-7,-112],[19,-74],[1,-44],[-6,-11],[-4,-8],[-36,-17],[-13,6],[-68,16],[-26,17],[2,41],[6,65],[-20,15],[0,33],[6,52],[3,65],[-3,85],[12,93],[-11,53],[-4,18],[-62,-50],[-25,-72],[-4,-17],[-7,-38],[4,-125],[1,-21],[6,-85],[-21,-33],[-5,-7],[-4,0],[-39,-5],[-26,-16],[-31,-61],[-27,-66],[-3,-8],[-32,-43],[-52,-18],[-51,1],[-42,32],[-18,9],[-13,7],[-4,-62],[-3,-69],[0,-5],[-14,-85],[-5,-27],[1,-38],[2,-79],[6,-56],[5,-40],[21,-100],[14,-77],[7,-40],[11,-51],[3,-10],[4,-82],[-1,-3],[-10,-24],[-22,-59],[4,-19],[13,0],[24,8],[30,-40],[6,-7],[3,-45],[-16,-53],[0,-1],[0,-1],[3,-44],[-7,-53],[0,-1],[-4,-13],[-39,-115],[-42,-41],[-30,-28],[-35,-8],[-4,-1],[-18,16],[-1,4],[-33,40],[-2,3],[-7,-3],[-4,-19],[0,-1],[4,-69],[-5,-15],[-13,-46],[-54,-5],[-10,16],[4,32],[11,30],[43,69],[10,81],[30,35],[33,22],[10,9],[12,13],[21,19],[6,1],[1,0],[2,4],[17,45],[2,56],[28,6],[17,4],[0,10],[0,21],[-25,11],[0,40],[-8,28],[-17,16],[-1,1],[1,4],[6,10],[29,22],[9,7],[11,25],[-7,12],[-93,-35],[-52,-66],[-38,-63],[-23,-101],[2,-131],[-3,-78],[-8,-19],[-31,-74],[-9,-31],[-2,-8],[-12,-41],[-11,-41],[-23,-73],[-11,-103],[-5,-120],[-9,-95],[-12,-72],[4,-97],[-10,-82],[15,-65],[19,-122],[-24,-80],[-9,-67],[29,-60],[5,-80],[30,-84],[30,-43],[25,6],[1,0],[9,41],[21,25],[8,5],[33,21],[6,4],[25,18],[19,14],[43,-31],[37,-59],[41,-54],[22,-14],[25,-17],[-19,-24],[-33,-42],[19,-70],[21,-63],[48,-37],[49,11],[7,17],[7,15],[14,2],[21,2],[30,-2],[8,-39],[14,-9],[8,-6],[6,35],[-12,13],[6,42],[22,27],[5,-3],[42,-22],[23,-49],[-8,-23],[-7,-24],[-1,-1],[1,0],[34,-10],[31,10],[15,6],[24,10],[1,0],[4,-2],[33,-16],[2,-1],[24,-5],[22,-6],[36,-27],[28,-18],[37,-24],[18,-6],[19,-7],[12,-4],[26,-56],[0,-1],[1,-49],[-10,-38],[-3,-13],[-21,-29],[-6,-9],[-19,-18],[-20,-20],[8,-21],[8,-19],[-31,-34],[-53,9],[-22,37],[1,67],[12,47],[-15,40],[-16,-14],[-7,-6],[-3,-10],[-7,-27],[-49,4],[-17,33],[-23,-14],[-9,-6],[-26,-35],[9,-11],[38,-48],[6,-4],[41,-31],[23,-11],[22,-10],[1,-23],[1,-60],[-18,-63],[-3,-10],[-30,2],[-15,-11],[-17,-12],[-32,-46],[-27,-21],[-28,-23],[-19,-13],[-24,-17],[27,-39],[44,-3],[47,-41],[2,-2],[34,-13],[3,-1],[56,-11],[36,-1],[28,28]],[[23353,83676],[53,48],[21,-13],[23,26],[-28,59],[-61,24],[-50,-44],[30,-56],[12,-44]],[[22898,84159],[-3,60],[-16,27],[13,47],[22,44],[8,27],[-8,78],[-27,24],[-45,57],[-22,3],[-38,5],[1,-76],[-12,-62],[-25,-22],[-9,-9],[-57,17],[-23,-3],[-47,-8],[-8,-8],[-47,25],[-52,28],[-8,8],[-45,38],[-47,31],[-73,112],[-35,72],[-13,76],[-1,77],[14,80],[3,102],[-36,0],[-26,58],[-19,71],[-39,71],[-29,46],[-1,1],[-16,28],[-10,17],[3,31],[33,20],[14,25],[-2,62],[-23,27],[-15,14],[-10,34],[14,31],[9,19],[11,9],[17,-4],[18,1],[13,45],[0,7],[-2,17],[-1,7],[-23,14],[-31,45],[-8,27],[15,58],[19,42],[14,42],[0,12],[-20,21],[-16,7],[-1,43],[0,5],[14,21],[1,1],[1,1],[32,10],[15,25],[0,11],[-2,3],[-6,20],[-5,15],[17,23],[2,-1],[4,-3],[3,-13],[9,-38],[1,-24],[-12,-11],[1,-16],[14,-5],[11,12],[2,10],[44,39],[20,21],[2,2],[24,-1],[16,-16],[13,-24],[6,-4],[13,11],[18,-4],[5,-30],[8,-46],[13,-21],[40,-9],[23,-12],[37,21],[4,2],[17,-3],[30,-4],[22,-30],[25,0],[5,21],[11,43],[21,43],[31,38],[42,14],[23,70],[-1,7],[5,28],[1,48],[-13,29],[6,23],[20,-22],[1,0],[16,0],[21,32],[0,7],[-3,8],[-7,20],[-34,14],[-1,1],[-18,-7],[-9,-12],[-11,-14],[-4,-5],[-8,-21],[-32,-11],[-31,39],[6,71],[9,22],[2,20],[-13,76],[-20,18],[-9,8],[-23,21],[-57,-2],[-11,-20],[-5,-10],[-20,-6],[-5,0],[-44,0],[-11,-8],[-4,-16],[5,-78],[1,-29],[-10,-14],[-8,-22],[0,-40],[-4,-19],[-2,-11],[-3,-1],[-9,15],[-12,22],[-16,7],[-35,14],[2,72],[-21,50],[-5,15],[-19,10],[-74,43],[-9,24],[0,1],[-2,51],[-24,71],[-3,26],[-2,10],[-18,51],[-7,17],[14,12],[6,-2],[20,-5],[31,15],[4,19],[15,-5],[6,16],[21,-9],[12,6],[8,30],[13,52],[5,56],[-2,39],[-23,64],[-42,55],[-12,37],[0,43],[-64,89],[-24,-6],[-11,4],[-33,20],[-27,12],[-37,0],[-43,6],[-54,12],[-42,33],[-49,37],[-40,45],[-37,39],[-27,46],[-14,79],[-37,71],[-32,58],[-12,44],[-19,38],[-21,52],[-32,44],[-27,24],[-30,32],[-29,48],[-34,52],[-45,73],[-45,17],[-50,6],[-23,31],[-66,37],[-55,50],[-51,28],[-38,12],[-9,49],[-5,26],[8,49],[11,72],[25,115],[8,101],[-35,93],[-7,92],[-22,27],[-52,66],[-32,-4],[-31,-25],[-35,5],[-33,9],[-6,1],[-8,-20],[-13,-32],[-48,20],[-29,13],[-34,11],[-1,0],[-21,-20],[-22,-21],[-68,3],[-55,1],[-15,31],[-25,-6],[-34,-11],[-6,38],[33,10],[15,5],[51,32],[-10,3],[-33,11],[-27,-19],[-31,34],[-19,-10],[-11,-6],[-24,-27],[10,-22],[13,-2],[1,-57],[-9,-22],[-13,-30],[-1,-1],[-35,-43],[-20,-61],[38,-73],[18,4],[24,-33],[-3,-7],[-7,-26],[-16,-36],[-12,-20],[-31,-43],[-21,55],[-39,2],[-19,-23],[-15,-17],[-42,-74],[12,-72],[17,-62],[3,-7],[5,-32],[-21,-17],[-26,-20],[-20,-15],[-31,-142],[26,-30],[26,41],[31,51],[21,50],[4,9],[13,77],[14,23],[24,18],[1,1],[13,-8],[43,-40],[41,14],[14,12],[0,38],[0,24],[4,40],[27,45],[8,0],[14,0],[6,35],[24,61],[31,-29],[24,-42],[21,-37],[-4,-72],[-7,-13],[-37,-74],[-1,-1],[-13,-25],[-13,-23],[-3,-7],[-22,-41],[-6,-31],[-8,-37],[-26,-1],[-49,-6],[-29,11],[-21,7],[-10,-77],[18,-70],[44,-30],[26,-59],[0,-49],[9,-47],[1,-7],[8,-56],[12,-22],[-15,2],[-19,45],[-23,61],[-43,-2],[-75,47],[-26,63],[-2,39],[22,25],[8,31],[-33,22],[-2,2],[-3,-7],[-26,-61],[-28,16],[-1,-4],[-17,-90],[13,-31],[-10,-50],[-33,-76],[-9,-56],[25,-64],[33,-12],[8,-51],[25,-3],[26,-19],[3,-38],[17,-46],[2,-4],[1,5],[16,57],[10,34],[11,7],[40,25],[38,90],[2,-38],[-6,-59],[-17,-30],[-10,-41],[-3,-34],[0,-19],[0,-43],[-20,-4],[-37,6],[-34,2],[-29,13],[-19,16],[-13,21],[-26,50],[-18,5],[-15,4],[-23,-59],[-26,-73],[1,-98],[8,-94],[33,-109],[28,-77],[40,-96],[17,-15],[5,-4],[6,-5],[21,-9],[17,-32],[17,-32],[-10,-49],[4,-59],[0,-2],[3,-32],[5,-48],[8,-13],[9,-14],[-23,-24],[-2,-2],[-24,-65],[-6,-70],[3,-71],[14,-97],[31,-82],[35,-87],[21,-73],[39,-19],[8,-55],[4,-87],[46,-46],[23,-4],[20,-25],[1,-100],[32,-90],[41,-34],[39,-70],[16,-71],[46,-46],[14,-1],[16,-2],[15,-2],[31,-31],[45,-87],[19,-25],[36,-27],[4,-1],[54,-7],[28,-15],[18,-9],[14,-7],[38,-15],[5,-4],[17,-12],[26,-37],[44,-64],[27,-85],[24,-43],[19,20],[19,19],[29,4],[10,1],[2,0],[32,56],[24,-20],[1,-2],[19,-32],[31,-43],[11,4],[19,6],[12,4],[1,0],[-17,114],[41,79],[37,51],[32,-5],[6,-1],[5,-3],[47,-29],[8,-25],[13,-42],[6,-87],[-44,-52],[-26,-52],[11,-52],[1,-4],[-4,-58],[14,-76],[59,-71],[53,-20],[2,-1],[4,-3],[31,-24],[39,-62],[40,-90],[25,-8],[8,-2],[12,-14],[24,-27],[36,-72],[48,-49],[6,11],[19,34],[24,38],[11,-15],[28,-33],[37,-25],[39,-41],[15,-1],[20,-1],[16,1],[14,2],[47,-20],[48,-20],[46,9],[67,-16],[56,-13],[25,-6],[40,-9],[40,-4],[62,-9],[88,-24],[45,-17],[74,-55],[25,-20],[8,4],[30,14],[18,103]],[[20138,88029],[0,66],[-19,40],[-14,53],[14,36],[12,32],[3,9],[3,4],[46,62],[36,30],[4,32],[3,23],[-37,32],[-26,7],[-12,3],[-32,-41],[-20,-44],[-7,-39],[-8,-46],[-43,28],[-14,91],[25,40],[24,38],[42,26],[8,27],[7,26],[-38,37],[6,18],[18,46],[3,8],[33,47],[20,69],[-6,102],[-19,39],[-11,20],[-19,34],[-23,-18],[3,-53],[-20,-90],[-19,-42],[-34,-53],[-17,-37],[-15,-33],[-36,-25],[-5,-4],[-36,-68],[-34,-103],[-11,-65],[-1,-4],[-13,-37],[-16,-44],[-26,-55],[2,-96],[4,-92],[23,-70],[33,-32],[18,4],[17,-17],[16,50],[0,7],[1,53],[-5,54],[19,13],[12,8],[2,11],[8,34],[15,51],[16,39],[17,-10],[4,-3],[47,-29],[-8,-25],[-5,-98],[-18,-67],[15,-68],[26,-67],[36,-11],[38,59],[2,2],[-14,76]],[[22015,89070],[4,-82],[19,-106],[-4,-69],[15,-96],[29,-49],[32,-41],[39,15],[30,33],[41,50],[53,49],[24,61],[3,8],[7,88],[1,42],[2,52],[11,-16],[3,-5],[26,-10],[-7,30],[0,6],[4,208],[19,-31],[8,-13],[0,-66],[0,-4],[-6,-87],[0,-6],[23,-54],[2,-81],[18,54],[11,-1],[-3,-25],[-13,-33],[-3,-46],[6,-30],[22,-65],[24,-53],[26,-16],[13,-66],[10,-71],[14,-77],[20,-31],[12,-18],[15,-5],[24,-6],[38,-10],[27,-18],[29,-4],[7,15],[17,37],[-13,89],[-4,80],[-43,55],[28,50],[12,53],[-29,60],[10,65],[-30,49],[-4,6],[-11,-6],[-13,32],[3,21],[-7,0],[-3,-8],[-9,-25],[-34,-22],[0,30],[-10,6],[5,24],[7,39],[-16,49],[10,66],[9,15],[14,-14],[11,7],[2,63],[-26,29],[-46,21],[-15,-6],[-14,51],[2,55],[4,42],[23,21],[3,29],[6,78],[30,36],[33,34],[6,-1],[27,-5],[27,-36],[24,-72],[42,-73],[43,-107],[34,-87],[24,-7],[40,26],[4,2],[39,29],[11,-1],[35,-3],[16,-67],[19,-15],[16,-27],[-16,-8],[19,-20],[28,-44],[-17,-33],[-17,-27],[16,-26],[-22,-59],[11,-22],[-30,-19],[-6,-43],[17,-65],[15,-62],[11,-74],[14,-60],[14,-25],[3,-20],[-14,2],[-12,11],[-13,-8],[-5,-80],[35,-72],[21,-73],[23,-45],[29,-5],[20,8],[7,2],[22,4],[24,4],[18,3],[13,9],[11,8],[3,-3],[2,-2],[-12,-31],[2,-43],[17,-71],[39,-3],[25,-17],[8,11],[1,2],[1,-2],[10,-16],[-5,-28],[16,-5],[4,36],[1,6],[12,14],[36,-24],[8,-6],[34,-3],[22,9],[11,4],[30,-20],[58,17],[18,1],[37,1],[2,14],[7,52],[-14,19],[0,23],[17,32],[24,-25],[9,-9],[-13,-40],[23,-31],[36,-63],[31,-19],[9,1],[8,1],[25,2],[16,2],[22,-18],[15,-33],[50,0],[3,24],[6,56],[-14,20],[-5,33],[12,31],[12,-29],[0,-1],[15,-9],[21,-51],[19,16],[15,12],[40,24],[37,45],[24,59],[13,69],[25,30],[44,63],[23,101],[-9,65],[-19,40],[20,66],[-34,49],[-39,39],[-29,55],[-31,79],[-32,74],[-12,86],[-22,93],[-11,21],[4,30],[-8,59],[-22,65],[-16,99],[-32,38],[-32,43],[-39,66],[-25,43],[-33,35],[-58,49],[-39,24],[-41,69],[-27,74],[-30,90],[-13,101],[0,72],[-13,78],[25,70],[19,74],[-20,66],[-31,61],[-27,64],[-15,73],[-10,95],[-27,27],[-26,1],[-16,16],[3,37],[22,47],[11,44],[22,53],[61,16],[32,37],[20,43],[40,9],[4,-10],[21,-51],[23,-52],[30,-24],[20,17],[-3,6],[-16,40],[-10,40],[13,41],[26,25],[3,4],[32,4],[28,5],[25,-18],[13,-15],[21,-44],[29,-57],[27,-57],[21,-106],[-8,-92],[23,-56],[-9,-71],[-5,-62],[-13,-57],[16,-89],[-10,-91],[-8,-138],[1,-100],[17,-97],[22,-89],[32,-107],[31,-105],[25,-46],[1,2],[29,63],[39,31],[5,-12],[29,-72],[28,-84],[18,-42],[19,-47],[31,-85],[20,-73],[29,-59],[30,-90],[22,-75],[32,-85],[65,-83],[37,-8],[27,-29],[2,3],[24,30],[23,8],[11,58],[30,-10],[6,-2],[-16,-69],[17,-54],[21,-71],[-1,-63],[-6,-53],[-13,-102],[-2,-163],[11,4],[22,8],[30,-13],[7,-2],[20,2],[18,3],[14,14],[15,15],[2,9],[16,72],[5,4],[33,38],[47,-16],[1,0],[9,-6],[15,-11],[19,-27],[10,-21],[21,-27],[2,-2],[10,-3],[25,-6],[7,7],[27,27],[-12,52],[-16,7],[-5,55],[-22,67],[-18,34],[1,35],[18,11],[-27,18],[-13,39],[-23,33],[-8,71],[30,82],[43,35],[19,21],[1,1],[11,15],[25,31],[3,23],[2,14],[0,42],[20,20],[7,8],[0,19],[1,22],[-23,64],[24,24],[6,6],[1,1],[16,1],[6,14],[5,12],[10,-2],[10,-2],[13,3],[11,2],[13,3],[18,24],[11,16],[2,1],[30,11],[-3,10],[-9,26],[-14,27],[9,31],[15,-3],[26,26],[37,36],[5,-17],[6,-18],[20,0],[13,6],[38,19],[13,5],[27,11],[22,8],[48,68],[17,60],[34,17],[35,37],[20,22],[6,6],[2,3],[19,36],[-18,72],[9,83],[42,41],[24,29],[52,43],[42,44],[-16,40],[-46,40],[-45,35],[-32,21],[-31,22],[-50,23],[-52,26],[-39,31],[-1,1],[-44,30],[-12,7],[-19,9],[-51,33],[-61,50],[-36,23],[-49,41],[-33,19],[-28,45],[-67,34],[-26,19],[-11,53],[-19,34],[-27,28],[-48,57],[-26,24],[-34,41],[-32,58],[-45,41],[-36,30],[-28,29],[-20,37],[-55,61],[-37,36],[-35,31],[-32,12],[-54,29],[-49,36],[-70,39],[-49,30],[-37,14],[-43,11],[-44,10],[-31,52],[-33,65],[-27,27],[-35,45],[-16,9],[-26,16],[-9,-10],[-13,-16],[-50,-4],[-41,31],[-67,44],[-47,-3],[-34,10],[-37,-2],[-13,-1],[-36,3],[-5,-7],[-22,-28],[-42,14],[-63,-9],[-15,-2],[-28,-22],[-33,-25],[-48,-28],[-45,2],[-96,-30],[-51,-1],[-32,26],[-19,2],[-28,3],[30,-50],[27,-43],[12,-49],[6,-73],[-12,-72],[-2,-6],[0,-2],[-55,-120],[-17,-64],[-8,-35],[-21,-25],[-45,-45],[-36,-3],[-3,-1],[-43,-14],[29,-51],[-7,-71],[-29,-56],[-37,-39],[-74,-49],[-69,-57],[-66,-62],[-22,-40],[-35,-60],[-18,-80],[-22,-54],[-17,-58],[-37,-22],[-47,-66],[-24,-69],[-34,-33],[-12,-23],[-11,-20],[-28,-28],[-41,-60],[-10,-12],[-23,-29],[-16,-59],[-3,-9],[-4,-16],[-18,-61],[-15,-91],[-9,-75],[-28,-69],[-8,-41],[-11,-51],[-62,-126],[-64,-82],[-11,-40],[-2,-10],[0,-81],[-7,-52]],[[20924,89318],[69,6],[47,0],[-10,26],[-11,25],[-57,31],[-42,44],[-45,73],[-53,45],[-32,35],[-33,5],[-52,4],[-54,14],[-60,14],[-33,25],[-46,39],[-58,37],[-53,36],[-51,-5],[-5,-5],[-20,-22],[42,-42],[93,-52],[39,-24],[41,-34],[23,-26],[46,-53],[28,-31],[47,-42],[27,-19],[39,-22],[45,-36],[36,-29],[42,-18],[51,1]],[[21305,89668],[52,-12],[46,58],[-24,71],[-42,-18],[-32,-99]],[[20078,90075],[6,22],[20,67],[3,55],[7,29],[-5,24],[-233,176],[-7,11],[-28,21],[-20,23],[-22,26],[2,45],[19,-5],[6,-1],[1,-2],[1,0],[23,-21],[3,-1],[30,-19],[21,-14],[76,-49],[115,-46],[83,-54],[25,-52],[5,-86],[15,-36],[43,-7],[27,20],[10,65],[1,8],[1,5],[-2,6],[-28,80],[-27,54],[6,22],[12,42],[19,-15],[21,-3],[20,27],[1,22],[-9,10],[-1,1],[-46,13],[-19,44],[-54,106],[-36,2],[-55,-93],[-1,-2],[-19,-39],[1,-7],[6,-38],[-33,-9],[-48,30],[-168,102],[-4,7],[-36,-2],[-45,61],[-24,102],[19,27],[10,3],[39,9],[-3,14],[-11,44],[-32,26],[-53,22],[-68,6],[-66,-8],[-30,9],[-40,2],[-58,-15],[-31,-9],[-34,-10],[8,-110],[15,-63],[34,-34],[29,-82],[33,-68],[50,-24],[31,-17],[21,-80],[40,-71],[27,-31],[26,-21],[37,-35],[33,-29],[27,-26],[38,-40],[42,-3],[23,-24],[47,-36],[41,-8],[37,-40],[27,-45],[33,40]],[[21938,90964],[5,-80],[-9,-49],[-17,-98],[-36,-91],[-6,-28],[-14,-56],[72,4],[65,47],[53,29],[34,33],[35,27],[43,41],[25,32],[26,31],[26,46],[31,67],[1,3],[37,73],[21,64],[8,24],[-2,80],[0,6],[-24,36],[-32,70],[-7,63],[18,0],[18,0],[35,39],[-7,26],[-17,61],[-19,74],[-8,59],[-7,82],[3,75],[14,63],[-23,70],[-26,-11],[-42,-14],[-31,8],[-32,-6],[-28,-37],[-49,-65],[-42,-21],[-41,-4],[-30,1],[-24,10],[-32,5],[-36,-45],[-20,-93],[0,-2],[-30,-100],[-31,-59],[-7,-9],[-57,-72],[-42,-33],[-98,-47],[-31,-22],[-48,-34],[77,-29],[47,-2],[29,-9],[32,-8],[59,-24],[58,-36],[47,-44],[48,-63],[38,-58]],[[26005,91738],[48,-17],[72,22],[74,2],[40,-34],[0,-35],[-1,-20],[5,-3],[73,-47],[39,-71],[8,-14],[31,-113],[10,-88],[20,-105],[30,-100],[31,-68],[18,-55],[8,-102],[18,-71],[27,-63],[15,-56],[51,-52],[27,-27],[24,-52],[29,-59],[40,-62],[30,-51],[17,-46],[23,-55],[22,-16],[11,-12],[15,-18],[11,-31],[9,-27],[39,-92],[32,-52],[26,-43],[24,-55],[63,-96],[11,-5],[38,-18],[52,-10],[20,-8],[22,-10],[33,-27],[29,-42],[33,-76],[21,-38],[13,-15],[26,-51],[44,-48],[0,40],[0,88],[-24,78],[-2,121],[-20,53],[-20,67],[0,3],[-2,108],[-2,83],[-26,77],[-33,99],[-5,71],[-23,20],[-13,11],[-16,23],[-18,28],[-22,116],[-11,28],[-12,34],[-40,21],[-24,30],[-9,11],[-21,69],[-8,29],[-4,13],[-2,2],[-34,35],[-37,49],[-35,71],[-44,47],[-8,8],[-27,26],[-26,25],[-32,-6],[-11,-2],[-28,10],[-34,72],[-4,2],[-8,3],[-36,13],[-14,73],[-14,73],[-5,31],[-6,33],[-21,47],[-10,22],[-39,89],[-42,49],[-39,46],[-36,52],[-1,65],[12,50],[-19,62],[-15,65],[-44,89],[-46,84],[0,8],[24,77],[1,2],[2,41],[-4,7],[-7,14],[-70,41],[-40,76],[-26,42],[-14,58],[-27,41],[-44,46],[-28,26],[-50,47],[-16,6],[-8,4],[-20,-114],[-40,-156],[1,-55],[-10,-61],[-21,-111],[13,-42],[0,-2],[5,-15],[20,-42],[-3,-42],[-1,-7],[-4,-3],[-14,-12],[-3,-31],[-5,-39],[36,-58],[1,-6],[0,-91],[7,-22],[4,-1]],[[21986,92214],[-41,1],[-18,-2],[-9,-1],[-32,-28],[38,-40],[47,4],[42,37],[-26,28],[-1,1]],[[24540,92493],[16,12],[-4,12],[-22,13],[-13,14],[3,14],[17,6],[9,-3],[24,-31],[10,-13],[9,-14],[4,-8],[13,6],[14,2],[1,25],[-14,9],[0,2],[1,14],[14,20],[-4,25],[-21,5],[-14,9],[-63,50],[-75,28],[-7,2],[-45,3],[-4,-9],[5,-16],[5,0],[18,-13],[2,-2],[1,-7],[-8,-15],[-23,15],[-3,-1],[-7,3],[-11,5],[-26,-25],[-2,-22],[22,-28],[38,-4],[60,-62],[40,0],[17,0],[23,-21]],[[23722,92577],[20,27],[4,5],[-49,70],[-41,22],[-58,43],[0,32],[3,2],[20,6],[14,-12],[160,-147],[14,-5],[6,-3],[39,-14],[6,-5],[2,2],[2,3],[20,24],[55,97],[2,19],[-45,61],[-97,107],[-27,-3],[-6,-5],[-25,-22],[-1,0],[-65,66],[-6,-1],[-20,-4],[-35,-15],[-1,2],[-25,33],[-26,27],[-6,5],[-22,58],[14,49],[14,51],[7,24],[28,14],[25,-37],[36,-11],[54,-13],[5,0],[28,0],[21,-5],[10,-3],[33,-8],[3,-3],[60,-28],[8,1],[2,6],[-2,9],[-13,6],[-39,17],[-12,35],[1,4],[13,0],[24,-19],[1,-1],[24,-15],[15,-11],[71,-52],[13,1],[5,25],[0,12],[-97,65],[-40,28],[-77,52],[-30,20],[-8,-2],[-6,-2],[-62,17],[-29,5],[-30,5],[-2,-7],[-18,-10],[-64,2],[-2,0],[-37,-23],[-9,-14],[-20,-36],[-10,-19],[-19,-34],[12,-49],[19,4],[12,35],[3,9],[4,-1],[16,-8],[13,-52],[-7,-65],[6,-24],[-1,-1],[-17,-22],[-28,43],[-15,23],[-13,-2],[-3,-9],[0,-25],[8,-50],[24,-24],[0,-1],[29,-43],[36,-63],[32,-30],[12,-16],[1,-4],[0,-2],[-2,-12],[-17,-2],[-27,3],[-9,1],[-12,-12],[1,-13],[9,-22],[26,-18],[44,9],[33,-27],[24,-46],[54,-45],[32,-9]],[[27318,91617],[-6,-21],[-8,-46],[-12,-76],[-30,-27],[-11,-15],[-4,-5],[-39,9],[-47,50],[-50,62],[-14,7],[-24,14],[-66,-29],[-22,-22],[-9,7],[-83,70],[-7,6],[-17,-17],[111,-231],[13,-12],[38,-37],[20,-39],[20,-34],[24,-32],[32,-39],[41,-22],[95,-70],[52,5],[82,83],[23,37],[11,18],[0,6],[4,65],[-22,121],[-22,117],[-19,81],[-10,72],[-2,2],[-2,2],[-1,10],[-9,22],[-33,82],[-58,52],[-18,16],[-20,18],[-68,0],[-23,-33],[23,-58],[71,-24],[30,-34],[43,-51],[13,-14],[10,-45],[0,-1]],[[27600,89796],[18,-2],[13,4],[62,19],[1,0],[15,-22],[30,-44],[-20,-76],[-5,-8],[3,-20],[4,-8],[28,-5],[28,29],[7,8],[-1,65],[-15,29],[-2,48],[-2,42],[-2,8],[-7,40],[-12,58],[-27,70],[-9,46],[-2,10],[-22,36],[-15,-17],[14,-113],[-25,-80],[-3,-8],[-60,-60],[-2,-29],[8,-20]],[[25409,91460],[-26,25],[-6,-35],[-4,-20],[16,-36],[3,-19],[1,-22],[-1,-60],[2,-42],[16,-68],[0,-49],[12,-25],[3,-4],[5,-14],[0,-1],[29,-22],[21,26],[1,53],[-41,12],[-11,105],[-20,196]],[[25279,91363],[-2,3],[-4,-2],[-11,-88],[-8,-23],[1,-46],[-6,-61],[11,-21],[33,47],[-3,47],[3,83],[-13,57],[-1,4]],[[20048,90830],[-64,0],[-47,-12],[-35,7],[-19,-18],[-12,-50],[25,-16],[18,0],[4,-51],[48,-70],[61,-25],[14,23],[-17,63],[-2,30],[32,30],[18,52],[-24,37]],[[20499,90188],[63,-86],[39,-10],[36,18],[2,1],[-42,75],[-28,34],[-26,0],[-21,48],[-28,76],[-54,64],[-30,21],[-26,7],[-25,-15],[-20,-15],[-2,-1],[-14,-53],[46,-54],[53,-34],[30,-29],[47,-47]],[[26246,88956],[8,-97],[25,9],[4,2],[26,-10],[5,-2],[42,-28],[21,-32],[24,-31],[29,-42],[22,-19],[34,-25],[48,-29],[56,-19],[52,-17],[30,-21],[30,11],[15,6],[59,64],[-39,67],[-24,30],[-5,83],[-6,88],[-38,46],[-50,54],[-20,39],[-12,69],[-27,41],[-47,0],[-35,0],[-56,-44],[-44,-44],[-32,-28],[-45,-31],[-8,-5],[-15,-10],[-18,-12],[-9,-63]],[[27360,88609],[47,-45],[32,-43],[33,-6],[43,52],[6,113],[-41,74],[-44,-2],[-44,35],[-33,-2],[-33,-41],[1,-77],[33,-58]],[[26090,88583],[1,28],[0,3],[-45,3],[0,-7],[-27,-23],[-29,-41],[-24,-53],[0,-1],[-41,-23],[-1,-6],[-13,-54],[13,-100],[-32,-47],[-9,-12],[-11,-15],[-18,-21],[-12,-71],[11,-85],[-30,-63],[-37,-24],[-42,-21],[-24,-30],[18,-50],[11,-69],[-7,-96],[-12,-79],[16,-95],[31,-82],[24,-37],[43,-45],[15,-4],[5,-1],[10,-2],[14,13],[7,5],[2,-2],[41,-33],[48,-84],[-23,-85],[-15,-61],[-13,-77],[-8,-69],[10,-86],[9,-190],[25,-65],[34,-9],[55,28],[35,8],[36,5],[32,15],[5,3],[35,27],[46,24],[57,-7],[5,3],[30,18],[26,-5],[29,-11],[4,-1],[3,2],[30,20],[19,58],[10,70],[-1,53],[-2,50],[-26,24],[-44,13],[-8,9],[-12,12],[-40,-47],[-20,2],[-25,2],[19,69],[24,27],[5,3],[41,29],[1,1],[30,33],[33,65],[43,57],[62,88],[16,-12],[31,-23],[2,4],[30,51],[3,13],[5,20],[4,17],[-21,21],[-28,41],[-17,44],[-27,63],[-26,81],[-64,49],[-57,52],[-54,107],[-36,65],[-63,116],[8,24],[10,5],[4,-12],[1,-3],[17,-31],[33,-16],[21,7],[16,6],[0,38],[-29,36],[-14,44],[8,51],[-4,28],[-17,28],[-17,10],[-7,3],[-1,13],[-1,14],[-15,45],[-1,2],[-19,7],[-10,3],[-19,20],[-27,91],[-24,26],[-27,14],[-13,20],[-23,37]],[[26930,88043],[-33,-12],[-19,-7],[-19,-36],[-16,-100],[4,-119],[3,-107],[-8,-97],[18,-98],[35,-74],[30,-93],[5,-80],[-5,-53],[-1,-7],[-3,-5],[-30,-49],[-25,-60],[-26,-106],[-13,-58],[-1,-91],[-7,-75],[-3,-116],[9,-128],[23,-110],[40,-72],[28,-25],[28,-24],[44,-20],[67,1],[15,5],[29,10],[29,14],[55,27],[17,6],[20,8],[34,25],[54,50],[62,54],[24,18],[68,59],[28,24],[16,4],[40,10],[40,-7],[50,-23],[14,-57],[32,-27],[50,-23],[45,-46],[50,-51],[25,8],[-1,7],[-3,78],[-21,39],[-25,22],[10,60],[9,85],[-15,100],[-20,77],[-21,77],[-21,65],[-42,42],[-23,12],[-14,-11],[-100,61],[-23,22],[-35,53],[-23,38],[-58,49],[-55,49],[-29,56],[-20,33],[-47,49],[-93,125],[-47,57],[-22,66],[-44,78],[-21,54],[-13,105],[-18,65],[-28,46],[-24,48],[-35,26]],[[28121,86262],[-11,-69],[15,-81],[22,-42],[35,-24],[26,27],[15,69],[-10,64],[-20,41],[-43,41],[-29,-26]],[[25115,86153],[-11,21],[-19,-4],[-45,8],[-54,9],[-49,-26],[-41,-5],[-80,5],[-91,12],[-38,-7],[-33,-20],[-31,-14],[-23,-12],[-23,-38],[-7,-23],[-14,-48],[-11,-34],[5,-70],[2,-49],[-23,8],[-8,3],[-26,34],[-14,18],[-31,-104],[27,-77],[27,9],[24,7],[24,-7],[0,-2],[28,-58],[12,-43],[11,-40],[0,-2],[23,-32],[28,-24],[43,-94],[15,-4],[31,-8],[7,-30],[7,-28],[2,-112],[-2,-64],[-12,-41],[-6,-20],[-49,-70],[5,-28],[3,-93],[12,-11],[17,-15],[4,55],[4,38],[2,22],[3,34],[25,57],[48,46],[150,144],[22,49],[27,53],[25,68],[4,34],[9,79],[17,61],[14,9],[5,5],[14,16],[40,44],[19,17],[13,10],[-1,31],[-2,-1],[-14,-11],[-19,7],[-3,38],[-15,-20],[-4,-44],[-18,-30],[-16,-2],[-58,63],[-1,1],[-12,36],[-12,38],[-10,51],[17,38],[-3,57],[16,37],[33,7],[6,2],[1,2],[19,30],[25,15],[14,37]],[[25218,85859],[11,-26],[24,8],[19,18],[14,24],[4,40],[-13,16],[-32,39],[-23,-83],[-4,-36]],[[25266,85842],[-11,-66],[-33,-47],[9,-29],[21,-23],[14,13],[17,16],[32,1],[19,0],[16,18],[-4,32],[-22,55],[-58,30]],[[26246,85018],[-41,-16],[-27,8],[-32,-2],[-12,-15],[-4,-4],[-19,-23],[-22,-57],[-19,-51],[-13,-65],[50,-37],[36,-24],[44,-24],[41,1],[44,0],[38,32],[1,1],[33,21],[1,1],[9,12],[15,19],[6,104],[9,108],[19,83],[-22,30],[-26,-22],[-28,-34],[-22,-22],[-14,-14],[-14,-4],[-31,-6]],[[24585,85283],[-49,23],[-36,-41],[-4,-93],[4,-70],[18,-75],[33,8],[26,38],[32,19],[32,51],[3,74],[-59,66]],[[24962,86555],[9,25],[27,-4],[28,-21],[27,57],[39,42],[23,28],[17,39],[47,53],[27,37],[2,5],[3,6],[44,88],[47,54],[12,76],[3,19],[17,110],[-7,62],[-4,38],[-15,20],[-32,44],[-33,79],[-21,66],[-31,63],[-39,88],[-33,64],[-42,78],[-32,52],[-2,4],[-5,3],[-33,19],[-38,35],[-20,31],[-6,10],[-27,34],[-14,0],[-17,0],[-27,13],[-25,32],[-8,12],[-43,-7],[-11,-56],[-31,-51],[-3,-3],[-25,-25],[-43,5],[-3,1],[-2,-2],[-31,-30],[-26,-51],[-15,-29],[15,-76],[-3,-69],[-38,-72],[29,-117],[-8,-101],[-2,-85],[20,-59],[7,-94],[3,-30],[43,-60],[49,39],[33,-42],[11,-13],[-11,-61],[-34,-42],[-3,-8],[-21,-62],[32,-78],[12,-56],[19,-61],[1,-2],[25,-47],[8,-15],[19,-62],[19,-72],[3,-10],[7,-9],[11,-15],[8,-11],[24,5],[14,15],[32,35],[4,8],[30,69],[2,6],[12,39]],[[24401,86669],[-20,30],[-11,-4],[-17,-37],[0,-2],[-20,-39],[0,-1],[-6,-16],[-2,-32],[14,-74],[8,-12],[6,-44],[16,-19],[20,27],[-5,56],[-1,10],[8,17],[11,44],[9,5],[1,53],[-11,38]],[[23557,87877],[-30,15],[-44,15],[-25,31],[-16,21],[-45,1],[-30,-25],[-12,-10],[-26,-10],[-26,-11],[-11,-46],[11,-22],[-9,-23],[-12,-9],[-14,-9],[16,-74],[16,-19],[6,-45],[1,-3],[-6,-23],[-17,-25],[-17,-5],[-34,-15],[-22,10],[-17,35],[-30,53],[-20,24],[-19,32],[-13,29],[-3,36],[16,29],[16,7],[25,38],[-22,62],[-30,13],[-57,52],[-46,8],[-69,-4],[-30,33],[-49,26],[-40,35],[-1,8],[1,2],[3,31],[5,3],[10,6],[0,19],[-3,21],[-4,18],[-4,1],[-3,1],[-2,-19],[-10,-7],[-12,7],[-1,-25],[12,-9],[0,-16],[-2,-32],[-1,-14],[-19,-8],[-34,9],[-35,37],[-38,9],[-23,-12],[-33,-17],[-6,-1],[-40,-1],[-22,-1],[-46,-60],[-27,-38],[-31,-1],[-28,-24],[-28,-45],[-39,-11],[-17,-5],[-14,-29],[-14,13],[-8,33],[-10,-43],[-15,1],[-1,58],[-12,-2],[-6,-2],[-35,1],[17,-70],[4,-15],[3,-11],[-4,-33],[-4,0],[-10,1],[-19,-6],[-17,-9],[-10,-33],[26,-4],[30,-9],[20,40],[17,-10],[5,-1],[36,-7],[6,-1],[36,-6],[22,20],[1,15],[2,17],[25,13],[9,-16],[6,-11],[2,-31],[17,-48],[26,-34],[18,-40],[34,-33],[26,-84],[42,-82],[8,-84],[24,19],[12,26],[13,28],[1,-6],[8,-56],[11,-52],[14,-31],[11,-24],[7,-17],[19,-42],[30,-53],[4,-7],[-41,-32],[-31,2],[-15,10],[-4,22],[-14,34],[-10,23],[-18,12],[-22,14],[-25,5],[-2,-7],[-11,-3],[-6,-2],[-15,-16],[6,-68],[19,-32],[19,-45],[23,-12],[23,7],[14,-11],[18,-75],[24,-38],[35,14],[17,23],[31,38],[5,5],[28,24],[9,-70],[27,-85],[20,14],[30,20],[6,-7],[27,-36],[13,4],[7,2],[15,5],[45,-19],[26,-34],[17,-12],[19,-15],[42,20],[16,47],[23,60],[4,41],[2,11],[-4,7],[-28,62],[-32,70],[-8,19],[-30,15],[-5,18],[11,26],[25,19],[4,3],[3,-2],[20,-12],[2,-22],[32,-58],[32,-2],[18,-1],[-2,56],[-22,44],[24,57],[29,12],[30,5],[27,2],[4,0],[48,-15],[5,-9],[12,-9],[26,-28],[4,-8],[9,16],[12,-13],[6,5],[-1,2],[-12,27],[-22,36],[-14,-3],[-5,20],[8,26],[20,16],[7,-3],[3,-4],[25,-41],[28,-4],[10,14],[25,35],[66,126],[34,70],[31,65],[12,76],[19,41],[-12,55],[-71,55]],[[23320,87177],[13,-104],[28,-12],[22,81],[-4,24],[-18,25],[-17,26],[-24,-40]],[[22526,88194],[15,45],[-27,64],[-10,83],[-29,12],[-10,4],[-41,-7],[-25,-31],[-7,-9],[-27,-2],[-1,-1],[-26,-27],[-28,-45],[15,-90],[32,-24],[31,11],[53,-19],[55,11],[26,13],[4,12]],[[24695,88130],[-23,-100],[36,17],[38,25],[44,25],[39,39],[33,39],[15,18],[23,35],[-1,46],[-14,22],[-34,13],[-22,27],[-28,39],[-40,-22],[-23,-115],[-9,-70],[-34,-38]],[[21806,88688],[36,17],[4,1],[2,0],[51,-17],[3,52],[2,19],[-11,68],[-38,71],[-3,6],[-11,-16],[-16,-24],[-39,11],[5,70],[-29,5],[-8,1],[-37,-85],[24,-62],[23,-104],[42,-13]],[[22380,86460],[5,-5],[21,14],[2,1],[10,6],[15,16],[0,47],[-21,17],[-13,8],[-7,32],[-5,10],[-15,16],[-17,20],[-24,13],[-20,3],[-6,-3],[-14,-27],[-2,-22],[0,-36],[5,-16],[46,-23],[16,-15],[3,-23],[15,-13],[6,-20]],[[22751,86496],[-27,-66],[-1,0],[-16,-32],[6,-54],[38,-3],[51,45],[-1,57],[-5,47],[-24,29],[-21,-23]],[[26205,84264],[33,-17],[5,7],[31,49],[22,70],[-10,60],[-27,46],[-12,84],[-27,20],[-8,5],[-36,-21],[-43,-17],[-10,-2],[-14,-4],[-28,-8],[-9,-77],[29,-88],[57,-56],[47,-51]],[[23143,93671],[1,58],[-35,36],[-27,-23],[-28,-27],[-34,14],[-50,8],[-43,21],[-28,13],[-29,17],[-36,20],[-29,-1],[-22,-1],[43,-91],[30,-22],[26,-19],[29,-17],[40,-18],[27,-27],[29,-8],[42,-5],[37,15],[34,28],[1,1],[22,28]],[[27284,82772],[-26,-69],[-29,-63],[-22,-43],[-41,-74],[-40,-36],[-7,-6],[-58,-24],[-37,17],[29,67],[19,15],[3,3],[7,6],[11,22],[0,25],[-2,20],[-9,18],[-18,48],[-53,18],[-8,3],[-31,7],[-30,10],[-9,3],[-38,-55],[-40,-42],[-6,-6],[-39,-9],[-52,-12],[-46,8],[-10,1],[-1,-19],[-5,-63],[0,-6],[-7,-115],[0,-110],[-1,-170],[-3,-127],[-5,-131],[-3,-64],[-15,-117],[-14,-89],[-29,-141],[-23,-95],[-28,-114],[-20,-48],[-21,-53],[-17,-46],[-17,-40],[-13,-30],[-8,-27],[-24,-83],[-10,-12],[-23,-28],[-27,-69],[-40,-150],[-37,-94],[-12,-30],[-21,-17],[-27,-22],[-30,-71],[-12,-74],[-16,-78],[-17,-69],[-17,-49],[-10,-30],[-45,-94],[-48,-90],[-21,-26],[-17,-21],[-34,-47],[-37,-57],[-12,-106],[-34,-121],[-14,-70],[-1,-6],[-17,-151],[-2,-25],[-9,-71],[-6,-53],[-20,-88],[-16,-50],[-28,-43],[-38,-65],[-35,-84],[-36,-84],[-14,-33],[-41,-91],[-42,-91],[-20,-49],[-22,-94],[-8,-30],[-21,-74],[-20,-86],[-19,-118],[-27,-166],[-16,-97],[-28,-89],[-3,-6],[-23,-56],[-25,-80],[-9,-66],[-1,-64],[24,-45],[2,-10],[18,-61],[10,-39],[22,-85],[48,-58],[44,-26],[28,-23],[42,-22],[30,-19],[44,-33],[41,-50],[21,-40],[25,-85],[24,-51],[32,-38],[24,-21],[7,-6],[36,-27],[4,-3],[30,-48],[27,-16],[54,-21],[51,-30],[58,-40],[31,-35],[45,-71],[30,-62],[40,-87],[44,-37],[32,-41],[39,-67],[34,-68],[9,-31],[6,-22],[22,-93],[8,-47],[4,-18],[15,-139],[8,-124],[16,-86],[20,-67],[34,-30],[33,28],[3,14],[9,50],[16,15],[13,11],[18,3],[32,6],[65,56],[16,32],[13,23],[18,-4],[34,-8],[62,55],[42,-26],[49,7],[73,-2],[66,-12],[57,-16],[43,-20],[49,-36],[51,-50],[43,-57],[33,-78],[31,-95],[30,-129],[20,-69],[17,-119],[17,-103],[2,-15],[1,-7],[7,-65],[10,-183],[2,-97],[6,-105],[16,-147],[9,-61],[0,-27],[1,-44],[-16,-122],[-33,-146],[-1,-6],[-20,-70],[-13,-81],[-15,-131],[-2,-7],[-15,-90],[-29,-94],[-13,-53],[-20,-65],[-11,-36],[1,-18],[1,-34],[0,-22],[-10,-115],[29,-73],[61,-81],[13,-90],[55,-73],[22,-31],[19,-35],[8,-15],[39,-109],[1,-25],[6,-122],[1,-104],[-23,-130],[-14,-88],[-2,-10],[-6,-16],[-22,-55],[-34,-54],[-4,-7],[-22,-22],[-37,-58],[-7,-11],[30,-40],[16,-12],[40,-30],[43,-64],[20,-81],[8,-47],[1,-3],[22,-54],[12,-14],[49,-63],[23,-62],[5,-14],[27,-50],[36,-72],[37,-24],[76,-25],[34,-6],[45,-21],[44,-13],[7,-2],[12,-8],[7,-4],[9,-6],[3,-5],[31,-49],[44,-36],[50,-56],[31,-34],[2,-5],[8,-14],[27,-51],[20,-39],[14,-72],[-1,-62],[-2,-63],[-23,-130],[-38,-108],[-20,-49],[-7,-17],[-30,-66],[-1,-30],[-1,-27],[-6,-51],[40,-54],[4,-14],[20,-78],[59,-3],[4,0],[57,35],[54,23],[79,41],[34,17],[45,38],[34,43],[6,7],[10,57],[8,35],[8,33],[12,54],[71,81],[1,2],[52,51],[29,22],[20,15],[57,33],[53,21],[13,6],[2,3],[28,36],[-35,47],[15,89],[52,15],[31,11],[43,3],[-11,-145],[48,-37],[26,-21],[66,-72],[26,-48],[13,-58],[27,-88],[25,-66],[19,-46],[22,-39],[58,-70],[32,-51],[29,-93],[34,-31],[22,-54],[19,-119],[17,-69],[14,-57],[20,-85],[5,-99],[-2,-72],[-44,-250],[-14,-70],[7,-101],[5,-108],[38,-72],[35,-57],[24,-34],[28,-56],[32,-69],[21,-46],[-3,-26],[-7,-55],[34,-19],[112,-40],[49,0],[53,23],[50,87],[2,5],[12,46],[4,56],[36,48],[48,17],[46,7],[30,14],[15,26],[57,20],[-13,37],[-43,2],[-5,50],[56,-14],[38,-49],[-4,-80],[-12,-20],[-16,-51],[-12,-49],[-20,-37],[-14,-7],[-20,-51],[11,57],[2,58],[-26,-50],[-15,-120],[-2,-21],[21,-121],[49,-78],[39,-21],[37,-9],[35,-16],[31,13],[14,26],[19,34],[10,87],[1,149],[-4,92],[-6,87],[3,49],[1,20],[1,22],[19,73],[36,68],[36,52],[28,74],[35,46],[30,26],[30,60],[27,78],[6,102],[17,63],[17,45],[17,48],[10,56],[16,65],[9,97],[7,106],[-7,135],[-3,103],[-7,84],[-12,90],[0,7],[-18,107],[-2,109],[-32,79],[-45,62],[-29,48],[-37,72],[-37,72],[-47,115],[-14,53],[-7,30],[-4,72],[-1,72],[-7,70],[-6,72],[-4,86],[2,73],[13,84],[-11,88],[-5,110],[-11,83],[-8,93],[4,66],[-157,-8],[-44,34],[-30,19],[-44,9],[-39,5],[-45,43],[-16,45],[-8,25],[-28,19],[-4,2],[-23,7],[-35,16],[-48,40],[-47,5],[-35,1],[-53,11],[-59,43],[-33,45],[-32,48],[-42,46],[-62,50],[-38,60],[-43,112],[-26,34],[-21,64],[-20,58],[-32,68],[-31,86],[-18,46],[-21,70],[-52,121],[-47,26],[-32,41],[-21,46],[-47,68],[-41,82],[-26,80],[-30,68],[-22,51],[-26,90],[-30,2],[-33,-14],[-41,-1],[-79,23],[-85,34],[-32,3],[-52,-8],[-39,-4],[-24,-11],[-11,-6],[9,-65],[20,-54],[13,-91],[22,-85],[20,-66],[12,-37],[15,-63],[67,-156],[-12,-70],[0,-1],[-33,-185],[-33,-78],[28,-40],[16,-60],[-15,-47],[-10,-34],[8,-87],[29,-107],[8,-94],[27,-74],[6,-103],[-16,-121],[-1,-9],[-31,-88],[-11,-56],[-1,-4],[-8,-57],[-4,-33],[-27,-86],[-9,-70],[-19,-51],[-4,-6],[-7,-10],[-44,-66],[-35,-74],[-31,-3],[-39,5],[-38,10],[-24,-37],[-45,21],[-15,49],[2,60],[27,80],[13,37],[15,76],[-5,87],[6,72],[6,82],[-3,70],[0,56],[1,49],[-4,75],[-13,117],[-4,34],[-6,39],[-37,33],[-1,2],[-42,40],[-49,22],[9,71],[21,69],[4,14],[12,82],[1,9],[2,98],[-1,35],[-2,92],[-9,87],[-6,63],[-57,45],[-43,33],[-15,78],[-24,57],[-25,82],[-31,120],[-27,95],[-18,43],[-29,55],[-24,72],[-17,62],[-11,51],[9,87],[35,74],[38,71],[50,77],[26,62],[1,2],[0,1],[15,107],[-15,69],[-14,112],[-26,100],[-28,58],[-18,61],[-7,111],[2,132],[-9,103],[0,2],[-2,78],[-11,45],[-2,9],[-28,71],[-34,72],[-25,47],[-36,38],[-27,73],[-11,127],[-9,119],[-1,15],[-3,12],[-18,81],[-20,70],[-4,70],[0,73],[-5,73],[-17,74],[-16,54],[-53,116],[-26,48],[-30,23],[-37,55],[-21,59],[-28,67],[-23,72],[1,134],[0,4],[-9,27],[-20,61],[-58,38],[-28,48],[-39,22],[-42,72],[-13,36],[-9,24],[-23,54],[-26,46],[-27,40],[-25,-21],[-4,-8],[-15,-34],[-40,-8],[-40,54],[-61,8],[-39,33],[-21,49],[-11,52],[-23,-24],[-28,-12],[-34,-33],[-47,-40],[-39,-5],[-50,24],[-36,14],[-35,-1],[-19,-1],[-2,-4],[-30,-47],[-45,-46],[-51,18],[-32,0],[-37,13],[-42,6],[-49,-42],[-39,-51],[-24,-28],[-51,-28],[-44,-27],[-45,-35],[-62,16],[-59,-21],[-35,46],[-24,71],[-14,77],[-28,67],[-23,45],[-35,70],[-9,71],[12,74],[14,-3],[30,-6],[27,26],[36,21],[21,20],[12,12],[34,27],[33,21],[92,45],[17,1],[12,1],[54,13],[42,10],[41,-4],[35,-10],[50,-7],[25,24],[34,33],[7,2],[32,6],[55,-42],[64,23],[42,22],[27,16],[13,17],[12,14],[40,24],[38,46],[39,63],[25,72],[14,78],[6,77],[-5,114],[2,75],[4,102],[0,10],[-8,18],[-18,38],[-41,59],[-26,30],[-18,50],[-20,61],[-2,68],[21,84],[43,91],[22,27],[2,1],[24,29],[41,34],[36,34],[18,16],[44,45],[3,4],[51,18],[1,-1],[12,-6],[30,-14],[37,-41],[11,-74],[5,-82],[-33,-42],[-54,-8],[-34,-5],[-15,3],[-33,7],[2,-21],[5,-55],[1,-4],[36,-105],[28,-48],[10,-17],[1,-1],[58,-71],[39,-45],[28,14],[31,15],[19,20],[11,12],[-1,4],[-15,78],[0,7],[14,148],[28,66],[5,43],[3,27],[-41,59],[-25,89],[30,102],[45,60],[38,30],[84,55],[50,22],[37,16],[59,19],[52,10],[78,3],[67,-22],[49,-28],[61,-54],[36,-54],[25,-45],[18,-37],[15,-31],[37,-59],[25,-38],[15,-22],[12,-27],[31,-34],[14,-45],[-17,-28],[-21,-41],[-1,-32],[-8,-87],[7,-58],[26,-30],[6,8],[10,15],[1,33],[-4,22],[-21,120],[12,26],[29,23],[17,14],[23,12],[28,10],[49,-5],[46,5],[36,3],[87,7],[48,16],[45,44],[31,20],[22,24],[8,37],[20,84],[27,23],[27,22],[26,30],[32,21],[21,27],[3,7],[38,80],[19,102],[-3,116],[-14,129],[-21,67],[-30,63],[-20,73],[-25,50],[-25,62],[-27,36],[-29,25],[-34,18],[-26,30],[-35,40],[-19,42],[-34,70],[-35,59],[-6,11],[-41,45],[-37,34],[-2,3],[-35,37],[-26,62],[-26,43],[-30,59],[-27,34],[-7,9],[-3,2],[-32,26],[-33,39],[-58,57],[-41,37],[-68,20],[-42,20],[-34,47],[-39,23],[-31,17],[-27,15],[-13,2],[-31,6],[-42,17],[-32,37],[-38,-7],[-1,-34],[-12,-44],[-32,-23],[-33,30],[0,46],[13,47],[37,6],[28,32],[13,34],[47,55],[37,55],[35,96],[26,46],[21,40],[7,16],[11,28],[23,102],[-13,73],[-15,40],[-19,64],[-8,99],[-21,109],[-1,98],[0,119],[-33,15],[-14,13],[-9,7],[-16,15],[-30,9],[-24,42],[-9,61],[-1,66],[-22,123],[-39,78],[-58,47],[-39,13],[-54,-64],[-4,-3],[-20,-19],[-30,-44]],[[27738,82955],[21,-57],[29,28],[2,9],[11,20],[11,52],[-12,26],[-25,-17],[0,-2],[-16,-2],[-21,-57]],[[27783,82462],[27,-24],[60,4],[47,31],[49,33],[40,-2],[11,110],[-37,28],[-53,-11],[-28,-27],[-38,-5],[-46,-21],[-23,-57],[-9,-59]],[[28395,81422],[38,-12],[42,62],[-14,63],[-32,33],[-38,17],[-41,-4],[-27,-21],[-26,-68],[68,-49],[30,-21]],[[31233,71149],[27,-16],[25,35],[-35,63],[-42,117],[-30,32],[-38,23],[-25,66],[-51,47],[-14,71],[-54,39],[-33,-7],[-32,-20],[-29,-37],[-3,-4],[31,-84],[21,-56],[26,-42],[11,-33],[15,-41],[17,-17],[6,-5],[57,-41],[46,-31],[104,-59]],[[32254,71289],[-8,-60],[-7,-43],[-6,0],[-5,12],[-5,40],[-9,0],[0,-49],[14,-71],[13,-110],[1,-3],[5,-50],[0,-3],[10,52],[0,1],[3,105],[1,113],[8,125],[15,48],[21,49],[33,76],[17,13],[3,16],[11,17],[19,8],[-4,3],[-17,12],[-8,0],[-20,-3],[-4,0],[-21,-3],[-5,0],[-11,-14],[-19,-43],[-9,-48],[-6,-63],[-4,-68],[-6,-59]],[[26325,73993],[-35,3],[-38,-9],[-54,-36],[-57,-32],[-42,-28],[-43,-21],[-45,-33],[-55,-57],[-136,-113],[-35,-65],[-25,-112],[3,-21],[4,-19],[12,-2],[12,57],[5,25],[12,35],[10,32],[9,27],[25,17],[1,1],[78,54],[17,-17],[49,-47],[17,-17],[17,-100],[4,-15],[10,-51],[34,-113],[5,-18],[12,-46],[10,-61],[0,-5],[1,-1],[18,-39],[34,-54],[29,-100],[2,-82],[1,-12],[11,-74],[21,-70],[4,-71],[4,-11],[39,11],[59,-49],[17,-67],[3,-15],[7,-25],[-6,-31],[-11,-55],[-6,-2],[-2,19],[-26,98],[-18,3],[-46,7],[-34,-38],[-14,-69],[-2,-61],[-1,-2],[6,-77],[12,-70],[27,-83],[25,-89],[21,-60],[29,-57],[28,-65],[6,-14],[-44,-115],[-24,-77],[-22,-49],[0,-1],[-6,-40],[-1,-14],[-10,8],[-24,20],[-6,51],[-9,24],[-10,62],[-4,27],[-22,78],[0,88],[-30,76],[-59,59],[-40,70],[17,89],[11,44],[1,34],[-25,30],[-6,87],[-15,93],[-17,73],[-10,72],[-10,85],[9,87],[-5,62],[24,87],[-15,74],[-25,41],[-43,71],[-27,110],[-16,97],[2,9],[14,45],[12,33],[-5,30],[-40,-17],[-56,-95],[-3,-4],[-18,-25],[-4,-5],[-11,-16],[-51,-34],[-24,-62],[-3,-10],[-40,-80],[-35,-99],[28,-22],[51,7],[27,-45],[5,-10],[2,-78],[0,-12],[-2,-149],[-10,-98],[-10,-147],[-2,-15],[-8,-55],[1,-18],[2,-23],[4,-9],[32,-67],[33,-100],[0,-1],[4,-115],[31,-88],[29,-94],[7,-21],[46,-73],[3,-42],[21,-51],[18,-4],[39,-14],[43,-29],[48,-32],[34,-63],[13,-26],[28,-22],[21,-16],[31,-26],[25,-36],[10,-14],[35,-13],[5,-10],[30,-51],[3,-10],[7,-19],[11,-31],[41,-76],[41,-6],[39,31],[34,37],[14,17],[84,104],[15,19],[18,23],[15,43],[0,8],[0,9],[2,56],[-19,25],[0,1],[0,4],[9,48],[7,103],[14,82],[0,70],[-8,14],[-27,42],[-66,65],[-19,55],[-34,84],[-21,95],[-17,127],[4,79],[5,91],[2,32],[-7,28],[-16,66],[4,74],[0,18],[0,83],[-7,23],[-12,39],[5,73],[3,79],[-15,98],[-19,68],[-33,128],[-15,114],[-6,73],[2,31],[3,40],[3,110],[16,80],[24,51],[18,38],[-1,20],[-15,22],[-54,23]],[[24440,80275],[-24,22],[-27,-41],[-5,-74],[40,-3],[46,69],[-30,27]],[[27111,82637],[4,-1],[2,0],[4,0],[5,0],[4,4],[3,5],[11,9],[-1,6],[10,11],[3,10],[1,13],[-2,10],[-2,2],[-7,0],[-6,0],[-8,-6],[-7,-10],[-3,0],[-9,-10],[-1,-1],[-4,-14],[-1,-19],[4,-9]],[[1996,82158],[-7,7],[-10,-12],[11,-158],[25,-91],[32,15],[26,21],[11,21],[-65,158],[-23,39]],[[23133,74577],[-30,-109],[41,39],[42,-5],[44,14],[32,22],[17,16],[26,24],[30,21],[14,11],[55,43],[35,17],[33,17],[30,-7],[9,-2],[40,-7],[15,-3],[-13,25],[-3,7],[-32,15],[-56,15],[-47,44],[-33,32],[-41,35],[-28,8],[-28,-17],[-25,-28],[-24,-37],[-6,-10],[-52,-95],[-6,-10],[-14,-24],[-21,-44],[-4,-7]],[[27942,62128],[3,-110],[7,-83],[2,-115],[24,-119],[34,-59],[25,-78],[-2,-34],[-7,31],[-25,8],[-13,7],[-19,-29],[-6,-21],[-1,-3],[-11,-41],[-4,-71],[-18,-77],[-13,-21],[-16,-28],[-8,43],[3,85],[1,83],[-23,80],[-4,12],[-16,-12],[-7,-6],[-24,-19],[-25,-25],[-26,-37],[-18,-27],[-34,-69],[-37,-67],[-34,-31],[-27,-68],[14,-64],[18,-60],[17,-51],[18,-73],[23,-81],[26,-109],[29,-60],[13,-16],[43,3],[43,40],[-27,-61],[-27,-14],[-23,-10],[-5,-61],[-4,-65],[6,-90],[8,-75],[0,-79],[0,-96],[-2,-61],[0,-35],[7,-72],[4,-31],[27,-87],[3,-73],[2,-26],[-13,-69],[-2,-67],[-2,-57],[-1,-22],[-10,-104],[4,-105],[25,-94],[35,-78],[49,-53],[12,9],[34,27],[36,61],[25,73],[18,90],[21,47],[27,35],[43,31],[42,-31],[1,-6],[6,-62],[11,-38],[11,-35],[6,-20],[39,-13],[4,-2],[6,-5],[28,-30],[36,-66],[28,-73],[8,-19],[10,-26],[18,-60],[3,-12],[21,-85],[31,-90],[21,-73],[16,-67],[5,-6],[22,-28],[30,-11],[35,-1],[40,0],[53,12],[41,11],[27,10],[24,20],[41,54],[52,74],[71,35],[49,17],[6,2],[8,5],[48,35],[-15,56],[-39,37],[-40,16],[-10,3],[-35,24],[-41,22],[-43,26],[-1,1],[-1,1],[-44,41],[-38,42],[-8,9],[-30,9],[-13,5],[-58,20],[-24,12],[-41,27],[-7,27],[18,18],[33,-19],[30,6],[35,5],[31,9],[1,0],[28,-5],[36,-8],[8,2],[40,11],[-4,74],[-5,93],[-3,70],[12,73],[1,111],[-15,104],[-27,65],[-22,-7],[-15,-5],[-40,-22],[-31,-14],[-31,-12],[-42,20],[-6,1],[-35,11],[-39,21],[-38,13],[-9,3],[-39,50],[-3,3],[-4,11],[-19,55],[-29,18],[-23,11],[-25,31],[-6,7],[5,2],[10,6],[36,-8],[21,9],[16,7],[10,-16],[30,-53],[13,-55],[18,5],[21,7],[33,39],[29,-9],[34,15],[-1,-22],[-3,-49],[19,19],[22,27],[25,24],[0,1],[43,54],[42,44],[27,4],[3,-4],[41,-58],[33,-70],[23,-9],[23,-8],[-29,82],[6,90],[16,75],[24,53],[15,62],[-44,46],[-39,34],[-24,22],[-24,27],[-31,37],[-42,77],[-23,68],[-8,49],[-53,99],[-65,38],[-1,15],[0,7],[-3,41],[36,36],[47,40],[50,36],[30,29],[45,44],[31,61],[1,1],[-21,48],[-30,33],[-32,44],[-18,42],[-8,20],[-14,80],[5,109],[-2,112],[6,93],[23,57],[15,53],[-15,58],[13,77],[3,13],[14,87],[-1,30],[-3,46],[-15,115],[-18,82],[-31,60],[-2,9],[-18,68],[-36,18],[-37,-47],[-18,-28],[-7,-10],[-29,6],[-20,24],[-27,31],[-22,-80],[-8,-70],[5,-93],[-29,-43],[-58,-28],[-63,-34],[-41,21],[-16,-17],[-14,-63],[2,-39],[1,-22],[-26,5],[-1,1],[-15,3],[-28,27],[10,36],[32,22],[18,67],[24,29],[27,10],[3,2],[10,3],[29,-5],[5,8],[11,21],[25,47],[1,2],[42,12],[4,80],[-40,44],[-15,16],[-27,28],[-19,16],[-30,24],[-26,35],[-13,54],[-6,71],[-4,79],[-1,23],[-21,52],[-37,41],[-37,13],[-26,-15],[-14,-35],[-21,-29],[-24,-64],[-34,-63],[-41,-67],[-1,-6],[-5,-73],[3,-75],[1,-63],[11,-71],[-9,-105],[-14,-77],[-11,-70]],[[28908,57405],[36,-8],[16,19],[19,23],[-5,63],[-11,62],[20,89],[16,34],[33,46],[-29,51],[-39,28],[-47,35],[-51,25],[-30,1],[-26,-9],[-33,-21],[-27,-13],[-24,-9],[-8,-3],[20,-72],[26,-71],[5,-15],[19,-54],[13,-80],[2,-12],[6,-11],[22,-41],[25,-17],[18,-12],[34,-28]],[[28624,54338],[-9,-73],[-5,-40],[-6,-91],[-2,-18],[-20,-103],[-40,-71],[-27,-73],[-12,-83],[8,-24],[11,-31],[-45,-69],[-36,-72],[-2,-41],[-2,-48],[9,-86],[26,-92],[33,-95],[29,-64],[30,-60],[25,-83],[-1,-51],[0,-20],[-13,-71],[2,-97],[-38,-75],[-50,-43],[-7,-54],[-14,-49],[-12,-69],[-2,-13],[-2,-33],[-3,-25],[-2,-15],[-6,-42],[-11,-86],[-3,-74],[1,-77],[-1,-65],[23,-103],[25,-91],[37,-93],[44,-55],[44,-11],[34,-3],[40,8],[8,-12],[23,-34],[39,-29],[16,-3],[19,-3],[1,0],[37,-3],[63,18],[6,28],[12,62],[-9,108],[8,124],[3,79],[3,56],[5,68],[2,53],[8,54],[10,71],[1,7],[9,60],[2,106],[-2,111],[8,72],[5,69],[12,60],[7,85],[11,105],[21,49],[15,35],[46,69],[14,42],[3,10],[22,13],[16,8],[60,28],[36,-2],[14,-2],[18,-5],[24,-7],[39,-20],[31,-27],[36,-32],[42,11],[25,69],[27,73],[2,33],[0,20],[-28,65],[-28,38],[-29,19],[-37,-6],[-3,0],[-1,-4],[-14,-43],[-39,-39],[-6,-6],[-19,-19],[-30,-29],[-21,57],[12,53],[5,20],[5,78],[1,9],[14,84],[31,21],[32,18],[28,24],[31,8],[30,0],[29,-2],[3,0],[2,2],[33,47],[45,27],[25,-21],[15,-14],[4,-3],[0,-10],[-3,-67],[-1,-57],[4,-60],[5,-73],[32,-85],[5,-5],[28,-24],[1,-9],[10,-70],[-41,-56],[-41,-34],[-37,-52],[-39,-88],[-23,-69],[-13,-42],[-21,-71],[-31,-52],[-25,-39],[-59,33],[-33,49],[-35,-2],[-15,-74],[-23,-113],[-31,-61],[-8,-18],[-19,-41],[-22,-77],[-13,-93],[-11,-56],[-3,-15],[-6,-36],[-10,-57],[24,-113],[50,-78],[53,-32],[35,-16],[26,-10],[36,-7],[41,14],[16,5],[19,93],[16,42],[4,13],[3,15],[12,60],[19,84],[19,57],[27,50],[13,73],[36,68],[35,68],[33,38],[22,21],[8,8],[27,42],[10,16],[37,26],[21,3],[21,2],[35,30],[20,40],[24,48],[27,33],[43,29],[34,25],[35,23],[37,23],[32,53],[37,41],[37,6],[47,5],[39,29],[16,14],[18,16],[29,3],[30,-2],[36,16],[35,23],[9,6],[3,30],[7,55],[-45,56],[-30,32],[-26,26],[-25,40],[-36,40],[-31,26],[-34,39],[-38,33],[-1,1],[-42,11],[-41,12],[-34,3],[-36,6],[-36,2],[-41,3],[-27,2],[-30,7],[-43,11],[-33,11],[-24,9],[-39,20],[-27,27],[-28,34],[-4,7],[-5,6],[-39,57],[-7,78],[4,77],[-18,79],[-2,84],[47,54],[41,42],[28,42],[-22,74],[-24,44],[-19,48],[-10,55],[-21,78],[-27,87],[2,22],[0,7],[9,120],[-7,108],[-6,94],[-28,75],[-13,72],[23,89],[25,55],[25,68],[22,80],[20,66],[2,7],[-25,58],[-42,42],[-5,5],[-38,38],[-26,63],[-15,79],[-22,61],[-36,53],[-33,39],[-35,48],[-34,49],[-16,51],[-1,92],[4,54],[-12,64],[13,91],[40,97],[34,51],[2,11],[5,35],[-26,36],[0,1],[-29,28],[-47,43],[-40,37],[-9,9],[-45,30],[-34,15],[-35,17],[-21,-20],[-15,-13],[-1,-94],[-8,-62],[-9,-89],[-10,-94],[-7,-74],[-4,-79],[-9,-105],[-2,-156],[-33,-72],[-42,-51],[-31,-11],[-35,-23],[-47,-40],[-32,-45],[-8,-108],[-23,-101],[-39,-88],[-29,-88],[-34,-39],[-11,-65],[-8,-60],[-18,-65],[-8,-40],[-9,-48],[-6,-30],[-14,-59],[11,-74],[-3,-98],[-11,-85],[12,-102],[17,-89],[-6,-121],[-2,-136]],[[27144,49824],[0,2],[-10,0],[-10,0],[-29,-9],[-27,-8],[-40,-69],[-8,-15],[-37,-8],[-56,79],[0,31],[2,79],[-36,92],[-2,6],[-42,24],[-22,0],[-34,-17],[-42,56],[-2,3],[-41,30],[-39,29],[-28,-30],[-20,-21],[0,-113],[37,-101],[85,-110],[58,-92],[16,-93],[82,-101],[39,-84],[22,-84],[36,-59],[67,-104],[3,-5],[1,-4],[21,-80],[23,-76],[68,-80],[43,-135],[9,-27],[34,-99],[26,-70],[22,-56],[27,-43],[14,-23],[9,-14],[67,-34],[7,1],[41,3],[35,89],[16,29],[12,21],[13,25],[50,62],[15,18],[28,93],[5,99],[1,19],[-4,97],[-57,47],[-8,7],[-22,45],[-17,34],[-2,5],[-43,21],[-34,85],[-16,37],[-39,93],[-194,257],[-28,38],[-1,0],[-24,88],[-20,120]],[[26647,48476],[6,53],[-12,0],[-93,0],[-51,225],[-70,29],[-84,-66],[-146,48],[-11,4],[-24,-176],[-5,-38],[-100,-157],[-18,-29],[-31,-96],[-4,-15],[-31,-85],[-28,-34],[-41,-40],[-18,-13],[1,-52],[0,-1],[27,-64],[46,-62],[47,-35],[124,-40],[28,-9],[10,-3],[90,-17],[100,-134],[60,6],[55,-49],[69,21],[33,10],[158,47],[16,5],[37,26],[64,45],[91,64],[11,8],[1,25],[9,152],[-81,280],[-85,31],[-26,9],[-3,-7],[-54,-119],[-45,16],[-40,70],[18,167]],[[26548,51517],[38,12],[35,-8],[41,29],[20,-7],[17,-6],[22,13],[27,12],[4,37],[-19,25],[-2,2],[-27,27],[-33,58],[-41,-21],[-30,-4],[-10,9],[-10,8],[-49,-37],[-12,-50],[0,-71],[11,-11],[18,-17]],[[25860,46934],[0,-69],[12,-89],[46,-6],[24,-33],[5,-20],[24,-87],[-51,55],[-6,6],[-2,0],[-36,-4],[-37,-14],[-85,-43],[-40,-50],[-17,-20],[-8,-50],[6,-39],[23,-65],[104,-74],[16,-69],[34,-124],[72,-75],[10,-14],[13,-15],[118,-226],[26,-48],[63,26],[17,-110],[54,-3],[72,153],[-10,30],[-56,156],[-33,11],[-5,-16],[-10,-32],[-29,11],[-33,99],[-12,68],[0,1],[-10,31],[-1,37],[-1,107],[28,-86],[32,-148],[47,43],[43,-12],[-4,44],[-9,109],[6,1],[55,13],[7,2],[2,-2],[111,-145],[103,63],[-5,10],[-27,56],[8,107],[3,3],[49,41],[-19,86],[14,303],[11,235],[2,51],[-58,132],[-34,47],[-35,40],[-30,15],[-35,39],[-108,31],[-117,94],[-55,-77],[-34,-105],[-51,-69],[-67,-55],[-33,-47],[-12,-16],[-32,-103],[-13,-96]],[[27005,46372],[-3,-21],[13,2],[9,2],[20,4],[35,102],[45,78],[17,95],[-3,14],[-17,76],[-2,101],[-6,79],[-29,-61],[-51,-214],[-1,-4],[-1,-22],[-3,-59],[-23,-172]],[[24299,47383],[17,91],[12,128],[19,46],[9,56],[12,68],[23,91],[14,103],[14,67],[-4,85],[-11,79],[-33,64],[-21,65],[-22,83],[-30,59],[-44,124],[-23,76],[9,125],[-12,85],[-41,-4],[-38,33],[-32,88],[-36,112],[-36,89],[2,89],[21,83],[17,157],[13,92],[0,4],[1,10],[10,112],[2,7],[14,58],[16,94],[-14,12],[-35,29],[-47,38],[-1,101],[13,89],[39,59],[21,23],[18,21],[32,31],[31,49],[14,48],[3,8],[18,79],[17,94],[25,22],[15,13],[47,69],[6,20],[14,49],[-39,37],[-39,-39],[-38,-74],[-63,-54],[-36,0],[0,-1],[-25,-48],[-35,-32],[-29,-49],[-69,-22],[-33,-42],[-33,-24],[-10,-7],[-7,-17],[-18,-41],[-11,-24],[-12,-75],[19,-21],[27,-51],[2,-5],[-14,11],[-2,2],[-29,29],[-17,-7],[-15,0],[-12,-38],[-2,-6],[-13,-21],[-15,-43],[-16,16],[9,33],[14,19],[3,16],[5,27],[27,93],[-3,3],[-22,32],[-8,11],[-30,-13],[-26,8],[-32,-8],[-51,-47],[-19,-7],[-13,-4],[-25,-5],[-28,21],[-35,-19],[-5,-3],[-23,-42],[-7,-20],[-20,-58],[-10,-16],[-16,-29],[-13,-81],[-1,-67],[1,-66],[-3,-70],[6,-87],[-3,-92],[7,-75],[2,-109],[-19,-82],[-7,-85],[-4,-56],[-5,-15],[-9,-27],[-32,-43],[-7,-10],[-6,-75],[-10,-66],[7,-51],[0,-96],[11,-62],[16,-78],[28,-71],[34,-98],[51,1],[23,-35],[28,-40],[35,-70],[14,-45],[21,-39],[29,-22],[15,-59],[23,-52],[25,-75],[41,-26],[34,-85],[26,-113],[22,-90],[11,-98],[18,-89],[16,-65],[15,-86],[0,-1],[12,-110],[4,-13],[17,-54],[27,-88],[7,-31],[18,-74],[6,-78],[-10,-128],[-1,-1],[-2,-10],[-3,-17],[-19,-59],[11,18],[9,15],[34,11],[10,33],[19,40],[21,44],[30,21],[24,25],[40,37],[47,76],[24,49],[22,52],[19,62],[35,112]],[[23677,47696],[-4,10],[-11,-11],[-20,-19],[-24,-43],[-13,76],[-10,83],[-3,74],[-28,73],[-6,97],[3,60],[-9,44],[-19,51],[-28,42],[-27,61],[-26,67],[-26,61],[-19,86],[-38,82],[-35,27],[-29,-79],[-14,-91],[3,-15],[13,-79],[19,-78],[12,-12],[15,-16],[9,-10],[27,-91],[17,-56],[-1,-73],[-7,-108],[0,-3],[-17,-103],[-1,-13],[-2,-65],[19,15],[2,-1],[1,-1],[25,-14],[-10,25],[-3,9],[23,44],[6,-34],[19,0],[20,28],[16,3],[11,-43],[-43,-59],[-5,-6],[-6,-3],[-8,-3],[-18,-65],[-1,-5],[11,-31],[6,-59],[42,32],[9,-73],[3,-24],[-6,-74],[0,-39],[0,-16],[8,8],[16,14],[12,12],[68,-85],[25,-17],[1,-40],[5,-20],[12,-52],[2,-8],[20,-54],[22,-60],[34,-50],[30,-13],[33,-16],[15,71],[-2,76],[-31,35],[-31,72],[-13,99],[-12,79],[-28,13],[-32,20],[16,73],[27,87],[6,81],[-17,40]],[[23354,47479],[10,122],[-36,7],[-35,-52],[-20,-74],[-8,-35],[-4,-50],[11,-15],[28,-5],[30,-3],[18,39],[6,66]],[[24428,49538],[42,-38],[29,6],[15,3],[27,91],[13,83],[43,128],[2,8],[8,20],[28,74],[-58,36],[-21,19],[-9,7],[-1,-3],[-35,-50],[-4,-5],[-29,-52],[-33,-39],[-9,-203],[0,-7],[-4,-37],[-4,-41]],[[24704,51562],[0,58],[-38,-1],[-36,29],[-30,11],[-33,-36],[-19,-45],[0,-51],[-9,-44],[12,-36],[16,-12],[12,-42],[-11,-71],[-39,-68],[-8,-55],[44,0],[36,44],[25,32],[21,25],[15,45],[21,87],[16,66],[5,64]],[[24630,51851],[31,77],[14,136],[-27,1],[-19,-39],[-19,-56],[-38,-143],[4,-50],[54,74]],[[30695,59090],[-46,-21],[-41,4],[-14,-111],[3,-65],[0,-100],[40,-138],[30,-59],[3,-5],[17,-28],[22,-44],[24,5],[5,39],[4,33],[10,77],[-5,102],[3,238],[-2,125],[-53,-52]],[[30478,76523],[27,29],[28,-20],[10,96],[-18,34],[-26,-34],[-29,-50],[8,-55]],[[27951,83090],[14,23],[4,-1],[17,15],[33,38],[-5,11],[-11,25],[-36,13],[-61,-10],[-36,-61],[7,-56],[12,-17],[49,0],[13,20]],[[21264,99988],[2,0],[179,0],[85,0],[8,0],[85,0],[296,1],[3,0],[21,0],[19,0]],[[49806,99937],[0,-9],[-4,-4],[-15,-24],[-14,-19],[-7,-25],[8,-31],[13,-36],[10,-24],[18,-16],[-10,-30],[-12,-21],[-8,-24],[-8,-23],[-15,-32],[-12,-23],[-14,-25],[-10,-23],[-9,-21],[-13,-16],[-12,-15],[-7,-24],[-5,-30],[-6,-28],[-15,-19],[-6,-26],[-20,-19],[-17,-7],[-26,-6],[-15,-4],[-16,-5],[-22,-12],[-19,-6],[-13,3],[-12,-10],[-14,-7],[-13,-8],[-18,-6],[-13,-6],[-10,-20],[-24,-27],[-12,-18],[-13,-10],[17,-24],[12,-13],[14,-12],[14,-31],[8,-30],[-1,-36],[-10,-27],[-11,-18],[8,-35],[7,-28],[22,-21],[16,-14],[12,-29],[13,-13],[14,-3],[16,-13],[14,-18],[19,-6],[17,1],[20,-2],[14,0],[14,-18],[14,-12],[15,-14],[26,-13],[11,-25],[8,-35],[19,-12],[16,-6],[15,-7],[24,-10],[15,-14],[18,-11],[13,3],[15,16],[8,-34],[23,-36],[13,-15],[13,-25],[16,-24],[20,-25],[23,-21],[4,-29],[4,-31],[5,-30],[7,-44],[6,-29],[10,-23],[4,-36],[9,-27],[6,-41],[7,-27],[16,2],[12,-9],[22,-21],[14,-11],[15,7],[14,15],[19,0],[14,11],[18,3],[15,22],[13,17],[14,11],[14,16],[1,41],[10,42],[15,16],[13,5],[15,5],[14,15],[11,15],[1,29],[-12,35],[-9,24],[2,36],[12,17],[16,-7],[21,-6],[21,10],[18,8],[27,14],[19,3],[15,15],[17,17],[14,10],[9,29],[9,20],[-5,43],[-4,29],[-4,37],[17,3],[18,-7],[14,-2],[17,-1],[18,6],[30,11],[17,-2],[13,-14],[9,-19],[20,-7],[17,7],[20,-6],[12,-12],[14,-14],[20,6],[15,7],[18,4],[21,-18],[13,-10],[14,-4],[17,-7],[17,-9],[14,-14],[14,-14],[14,-13],[14,-12],[10,-33],[5,-39],[7,-30],[15,-30],[17,-28],[14,-25],[17,-32],[18,-40],[10,-23],[16,-20],[12,-22],[5,-32],[7,-30],[-7,-36],[2,-30],[14,-37],[6,-31],[-8,-27],[0,-31],[0,-37],[-12,-35],[-18,-21],[-13,-9],[-11,-28],[-14,-8],[-14,-14],[-13,-8],[-14,-8],[-14,-1],[-13,-3],[-16,-10],[-20,-7],[-24,-10],[-14,-3],[-6,-26],[-5,-37],[2,-31],[1,-32],[4,-29],[12,-22],[-16,-31],[-5,-32],[-1,-29],[7,-37],[10,-38],[16,-40],[10,-32],[13,-23],[-8,-43],[-12,-21],[-11,-27],[-13,-33],[-7,-35],[0,-29],[8,-24],[13,-33],[12,-28],[14,-19],[15,-16],[10,-24],[18,-10],[14,8],[3,-36],[0,-37],[-5,-42],[-7,-24],[-16,-38],[-5,-32],[1,-30],[7,-28],[12,-27],[7,-33],[14,-12],[-16,-31],[-10,-23],[-22,-33],[-17,-31],[-16,-17],[-11,-19],[4,-31],[3,-43],[12,-24],[1,-31],[5,-32],[10,-20],[17,-24],[18,-2],[11,-20],[6,-35],[12,-21],[12,-14],[18,-10],[14,-13],[23,-26],[20,-10],[15,-14],[12,-34],[13,-10],[12,-22],[17,-23],[12,-7],[17,0],[21,-1],[14,-9],[12,-13],[12,-10],[19,-13],[17,-19],[24,-15],[15,-8],[14,7],[7,-39],[1,-35],[-5,-36],[6,-35],[4,-31],[13,-31],[11,-18],[10,-21],[11,-24],[17,0],[-8,-33],[-17,-21],[-16,-45],[-6,-32],[-8,-29],[-6,-35],[-6,-33],[-7,-38],[-15,-38],[-6,-34],[-7,-27],[-3,-34],[14,-29],[9,-28],[1,-48],[1,-32],[-6,-36],[-7,-36],[5,-37],[13,-25],[-6,-45],[-7,-29],[-4,-28],[1,-32],[-10,-27],[-6,-30],[-17,-21],[-13,-11],[-13,-2],[-12,-37],[-2,-37],[-1,-39],[10,-22],[5,-28],[0,-33],[-12,-24],[-3,-35],[9,-32],[2,-39],[-2,-30],[9,-27],[14,-38],[17,-14],[6,-32],[10,-25],[12,-28],[13,-39],[9,-25],[-2,-40],[-10,-19],[1,-43],[-6,-32],[-5,-38],[0,-48],[7,-31],[8,-25],[9,-26],[14,-10],[1,-53],[-9,-33],[-6,-35],[4,-36],[1,-35],[0,-30],[8,-26],[8,-32],[9,-39],[11,-31],[10,-28],[9,-25],[13,-38],[8,-24],[14,-28],[12,-15],[11,-20],[7,-38],[16,-6],[15,-9],[19,-2],[24,-1],[15,-1],[14,-15],[26,-2],[24,-2],[14,1],[17,-9],[10,-21],[12,-27],[13,-46],[10,-33],[11,-26],[13,-38],[15,-22],[13,-20],[3,-35],[5,-28],[12,-35],[13,-43],[13,-27],[7,-25],[22,-8],[15,-15],[19,-7],[14,-2],[13,5],[12,-29],[9,-35],[3,-36],[6,-26],[-7,-24],[-7,-38],[-2,-33],[6,-26],[10,-29],[13,-32],[11,-17],[32,-16],[16,-16],[14,-16],[14,-22],[14,-29],[13,-4],[14,-25],[10,-38],[2,-40],[4,-35],[9,-27],[10,-23],[14,-8],[16,-1],[16,-25],[26,-16],[17,-9],[20,2],[26,3],[16,-3],[16,-16],[10,-47],[25,-61],[18,-64],[40,-31],[23,-38],[-10,-19],[-18,-50],[-15,-44],[-29,1],[-29,24],[-30,0],[-40,6],[-24,-8],[-37,-39],[-25,-20],[-21,-2],[-18,-24],[-8,-32],[-18,-58],[-16,-54],[-6,-84],[18,-85],[-1,-43],[1,-32],[23,-36],[14,-39],[-7,-56],[1,-43],[1,-68],[-3,-31],[-13,-14],[-17,-12],[-30,1],[-25,5],[-26,17],[-45,11],[-28,20],[-41,18],[-21,15],[-23,4],[-20,-5],[-34,-6],[-10,-44],[-23,-37],[-19,-22],[-2,-32],[-10,-21],[-46,-71],[-1,-56],[-11,-40],[-3,-38],[2,-51],[-16,-82],[-11,-36],[-35,-97],[-12,-12],[6,-36],[-10,-48],[11,-46],[11,-39],[0,-95],[7,-31],[-45,-14],[-15,-8],[-24,1],[-12,5],[-46,22],[-31,27],[-31,17],[-15,-16],[-17,-32],[-20,-35],[-26,-34],[-42,-23],[-22,-14],[-10,-23],[-15,-12],[-23,-16],[-16,1],[-15,-6],[-15,-1],[-10,-51]],[[51081,90023],[-207,-1],[-417,8],[-14,1],[-482,1],[-229,0],[-19,0],[-16,-4],[-6,0],[-101,0],[-93,-8],[-336,0],[-98,-1],[-1,-150],[-3,-326],[-144,0],[-580,3],[-330,1],[-26,0],[-2,0],[-75,0],[-60,-6],[-196,0],[-186,0],[-38,0],[-164,0],[-22,0],[-1,0],[-65,0],[-45,0],[-63,0],[-27,0],[-556,1],[-16,0],[-45,0],[-16,0],[-16,0],[-78,0],[-14,0],[-346,-1],[-15,0],[-4,0],[-18,0],[-337,-1],[-525,3],[-5,0],[-23,0],[-285,2],[-23,0],[-140,1],[-438,6],[-136,1],[-16,1],[-4,0],[-21,0],[-28,0],[-9,0],[-140,2],[-267,3],[-149,2],[-37,1],[-130,1],[-79,1],[-79,1],[-138,2],[-20,0],[-13,0],[-20,0],[-80,1],[-259,4],[-13,0],[-1,0],[-85,1],[-299,3],[-118,2],[-470,6],[-175,1],[-226,2],[-436,3],[-151,2],[-99,1],[-249,2],[-259,2],[-522,4],[-101,1],[-157,1],[-53,0],[-99,1],[-6,0],[-19,0],[-31,1],[-7,0],[-104,1],[-72,0],[-153,1],[-270,3],[-233,2],[-387,5],[-88,1],[-258,9],[-69,3],[-99,6],[-188,17],[-93,0],[-173,-4],[-16,-1],[-5,0],[-42,-1],[-292,6],[-201,2],[-48,1],[-41,0],[-15,0],[-437,5],[-160,2],[-113,1],[-26,1],[-46,2],[-76,7],[-70,6],[-13,0],[-37,-12],[-43,-1],[-78,-2],[-201,-5],[-14,0],[-185,10],[-439,17],[-280,2],[-122,2],[-63,2],[-30,1],[-32,0],[-12,0],[-59,0],[-509,-20],[-244,1],[-217,2],[-100,0],[-3,0],[-1,0],[-67,0],[-1,0],[-19,1],[-216,1],[-179,1],[-20,1],[-18,0],[-130,-4],[-112,-4],[-83,-3],[-185,0],[-124,-1],[-15,0],[-99,0],[-114,-1],[-59,0],[-49,4],[-21,-3],[-14,0],[-72,-5],[-61,0],[-128,0],[-27,0],[-14,0],[-36,0],[-103,0],[-56,0],[-37,1],[-36,1],[-20,-1],[-24,1],[-12,1],[-89,-1],[-87,-1],[-83,0],[-116,-1],[-454,1],[-263,1],[-164,2],[-40,-1],[-20,1],[-27,1],[-15,0],[-16,1],[-25,1]],[[25496,99989],[2,0],[4,0],[2,0],[2,0],[11,0],[1,0],[1,0],[8,0],[245,0],[10,0],[3,0],[58,0],[211,0],[292,1],[281,0],[279,1],[90,0],[190,0],[295,0],[282,1],[267,0],[245,1],[206,0],[5,0],[105,0],[231,1],[153,0],[111,0],[486,1],[148,0],[250,0],[27,0],[162,1],[118,0],[282,0],[123,0],[163,1],[245,0],[328,0],[299,1],[6,0],[35,0],[20,0],[4,0],[2,0],[166,0],[236,1],[12,0],[20,0],[192,0],[185,0],[83,0],[113,0],[311,0],[170,0],[93,0],[175,0],[221,0],[150,-1],[488,-15],[400,-13],[114,-3],[611,-20],[461,-16],[1082,-38],[517,-19],[645,-24],[86,0],[27,0],[123,0],[217,7],[718,21],[480,15],[212,6],[7,0],[587,8],[510,7],[44,1],[334,3],[286,2],[381,4],[373,3],[56,0],[80,0],[334,11],[563,17],[422,-1],[53,0],[591,-3],[55,0],[163,-2],[509,-4],[501,-4],[766,-6],[5,0],[57,0],[223,0],[103,0],[24,0],[18,0],[533,1],[239,1],[302,0],[289,0],[559,1],[635,-1],[112,0]],[[75511,99931],[11,-1265],[2,-471],[1,-59],[0,-25],[0,-62],[0,-17],[4,-686],[-2,-623],[0,-162],[-1,-251],[-6,-375],[-3,-519],[-1,-483],[-1,-379],[0,-41],[0,-121],[1,-66],[0,-71],[1,-351],[-3,-148],[3,-678],[0,-91],[2,-293],[5,-102],[8,-1518],[-3,-109],[-7,-204],[9,-636],[0,-1],[-1,-199],[-220,-8],[-14,0],[-15,-1],[-105,-4],[-83,-3],[1,-178],[0,-42],[0,-59],[0,-45],[5,-506],[-9,-730],[1,-120],[-1,-69],[0,-139],[0,-83],[-1,-495],[5,-797],[2,-417],[2,-135],[-2,-307],[-3,-324],[1,-521],[187,-3],[79,-1],[67,-1],[-2,-399],[0,-43],[0,-1],[-4,-702],[0,-103],[-1,-67],[0,-58],[0,-113],[-1,-60],[-2,-451],[-1,-148],[0,-118],[-1,-97],[-2,-344],[-2,-385],[-3,-690],[-1,-100],[-3,-572],[-2,-434],[-1,-133],[0,-62],[0,-63],[-7,-1163],[-2,-399],[0,-68],[0,-296],[0,-75],[0,-37],[0,-495],[0,-254],[0,-29],[0,-208],[0,-462],[0,-576],[0,-125],[0,-52],[0,-290],[0,-372],[0,-97],[0,-179],[1,-281],[1,-474],[1,-145],[0,-2],[1,-497],[0,-72],[1,-263],[0,-80],[0,-47],[0,-33],[1,-193],[0,-119],[0,-42],[0,-176],[1,-70],[0,-266],[0,-42],[0,-56],[1,-201],[0,-31],[0,-157],[1,-365],[0,-4],[-6,-64],[1,-172],[0,-187],[1,-590],[0,-16],[0,-24],[-75,-1],[-4,-166]],[[75318,69781],[-33,1],[-60,-2],[-52,-9],[-80,-20],[-58,-30],[-25,-19],[-41,-28],[-36,-24],[-67,-48],[-70,-62],[-81,-41],[-68,-27],[-55,-7],[-56,-5],[-70,-18],[-65,-13],[-72,-27],[-42,-16],[-55,-21],[-59,-25],[-69,-20],[-91,-27],[-62,6],[-68,19],[-51,22],[-49,23],[-15,9]],[[73768,69372],[-20,14],[-38,36],[-25,37],[-18,35],[-17,57],[-1,42],[1,50],[4,46],[4,36],[0,4],[3,28],[2,32],[-4,49],[-2,35],[-2,33]],[[73655,69906],[-2,33],[-2,57],[0,16],[0,62],[5,33],[11,36],[16,40],[21,41],[26,42],[20,27],[29,44],[24,43],[20,42],[14,24],[22,43],[12,31],[11,40],[10,38],[10,47],[11,45],[6,37],[4,39],[4,30],[1,57],[0,34],[-1,56],[9,42],[10,16],[2,4],[9,16],[14,23],[11,21],[21,37],[25,70],[7,32],[12,125],[7,95],[4,61],[-1,62],[-11,38],[-48,90],[-36,52],[-58,70],[-57,57],[-40,62],[-54,77],[-12,18],[-20,29],[-40,35],[-15,9],[-51,32],[-80,36],[-54,32],[-65,42],[-38,58],[-17,36],[-9,19],[-27,96],[-46,192],[-8,50],[-7,39],[-2,41],[-1,41],[-4,41],[-7,26],[-11,29],[-12,33],[-17,36],[-18,75],[-4,36],[-7,63],[-13,89],[-7,48],[-9,63],[-8,61],[0,50],[1,59],[1,54],[4,76],[3,70],[-7,26],[-28,175],[-13,89],[-11,88],[0,10],[-2,34],[-5,47],[-11,55],[-8,33],[-11,33],[-2,6],[-12,39],[-17,38],[-21,46],[-105,191],[-36,47],[-49,92],[-28,44],[-16,30],[-7,26],[-12,17],[-37,39],[-13,16],[-30,32],[-26,32],[-36,17],[-36,28],[-8,7],[-18,12],[-28,10],[-49,3],[-47,-16],[-46,-33],[-39,-33],[-34,-17],[-17,-6],[-28,-4],[-41,7],[-53,17],[-60,35],[-93,148],[-34,35],[-6,7],[-43,46],[-62,66],[-47,37],[-33,11],[-18,3],[-42,1],[-29,-14],[-23,-31],[-12,-15],[-30,-25],[-15,-8],[-22,-11],[-47,-29],[-48,-17],[-37,-39],[-13,-22],[-30,-43],[-30,-58],[-74,-98],[-21,-32],[-16,-43],[-24,-45],[-10,-34],[-43,-54],[-35,-19],[-67,-10],[-36,2],[-28,7],[-3,2],[-21,-2],[-21,-17],[-24,-19],[-23,-17],[-19,-16],[-22,-22],[-23,-13],[-17,-15],[-33,-79],[-29,-65],[-19,-39],[-25,-39],[-18,-18],[-24,-18],[-24,-4],[-31,6],[-30,15],[-17,-7],[-27,0],[-28,-24],[-36,-24],[-29,-6],[-21,-8],[-27,-28],[-15,-29],[-20,-37],[-23,-42],[-46,-56],[-80,-80],[-25,-35],[-11,-15],[-23,-17],[-37,-15],[-80,19],[-58,35],[-85,75],[-80,92],[-60,68],[-72,70],[-39,28],[-53,6],[-51,-27],[-105,-122],[-36,-46],[-48,-60],[-84,-141],[-37,-62],[-31,-116],[-21,-161],[-7,-199],[14,-128],[-13,-407],[-25,-174],[-52,-182],[-1,-4],[-62,-79],[-23,0],[-42,0],[-123,65],[-61,15],[-72,14],[-37,-4],[-24,-4],[-49,-10],[-18,-3],[-102,-29],[-59,-21],[-51,-17],[-46,-9],[-50,20],[-32,27],[-9,10],[-89,93],[-103,118],[-81,145],[-30,73],[-14,63],[-43,103],[-44,98],[-34,48],[-43,34],[-44,13],[-50,-1],[-38,-17],[-47,-6],[-36,22],[-35,27],[-41,5],[-55,-8],[-50,-26],[-53,-8],[-53,5],[-46,28],[-55,34],[-52,35],[-50,8],[-28,5],[-6,1],[-26,1],[-15,-4],[-11,-22],[-16,-3],[-12,-16],[-14,-19],[-15,-10],[-17,-7],[-13,-21],[-10,-21],[-33,-37],[-16,-24],[-5,-11],[-10,-22],[-6,-34],[4,-28],[-6,-33],[1,-124],[-2,-41],[-6,-46],[-6,-31],[-14,-46],[-34,-67],[-10,-23],[-27,-37],[-13,-14],[-18,-17],[-11,-15],[-13,-26],[-15,-13],[-22,-8],[-31,-3],[-12,-6],[-21,-10],[-18,-6],[-28,-19],[-29,-36],[-20,-22],[-19,-9],[-13,-27],[-14,-23],[-15,-19],[-14,-11],[-13,-17],[-22,-27],[-23,-31],[-17,-29],[-1,-2],[-10,-19],[-13,-36],[-9,-25],[-9,-28],[-21,-46],[-19,-33],[-14,-17],[-53,-77],[-25,-35],[-30,-22],[-33,-32],[-24,-25],[-1,-1],[-18,-20],[-23,-26],[-24,-14],[-16,-12],[-46,-51],[-28,-32],[-23,-25],[-16,-16],[-14,-18],[-40,-63],[-19,-31],[-11,-23],[-15,-20],[-11,-14],[-35,-64],[-30,-55],[-20,-38],[-17,-47],[-12,-42],[-11,-32],[-12,-34],[-15,-79],[-33,-110],[-1,-4],[-13,-24],[-7,-8],[-12,-15],[-22,-18],[-12,-12],[-13,-11],[-15,-4],[-20,0],[-13,3],[-21,-7],[-24,-8],[-23,-1],[-31,2],[-23,4],[-37,10],[-50,19],[-39,20],[-33,17],[-20,11],[-5,26],[-1,3],[-39,24],[-7,4],[-18,12],[-9,10],[-32,34],[-20,22],[-66,96],[-10,13],[-17,31],[-101,177],[-162,218],[-52,106],[-30,156],[14,87],[70,180],[30,92],[45,137],[64,282],[39,158],[2,58],[8,240],[-20,154],[-79,208],[-58,121],[-24,33],[-17,-25],[-67,-53],[-173,-136],[-54,-14],[-134,0],[-88,45],[-30,16],[-65,147],[-17,146],[-57,44],[-172,115],[-167,29],[-45,7],[-49,-89],[55,-167],[-14,-153],[-54,-57],[-35,4],[-16,2],[-18,3],[-34,5],[-1,-1],[-9,2],[-113,-2],[-35,10],[-177,16],[-59,-65],[-72,-66],[-73,-70],[-48,-24],[-105,-54],[-83,-53],[-86,-90],[-79,-85],[-91,-114],[-201,-167],[-127,-115],[-30,-53],[-26,-90],[3,-57],[-12,-84],[15,-89],[95,-248],[80,-252],[105,-242],[26,-202],[-4,-225],[-9,-105],[-18,-201],[-1,-18],[-91,-167],[-34,-213],[-12,-75],[-3,-18],[49,-84],[104,-337],[16,-35]],[[62328,69857],[-53,-3],[-6,0],[-15,0],[-14,2],[-38,7],[-14,0],[-168,1],[-125,-2],[-20,-1],[-29,0],[-111,0],[-66,2],[-42,-2],[-25,1],[-128,2],[-166,-1],[-32,-2],[-26,1],[-82,2],[-180,-2],[-191,-1],[-123,-3],[-15,0],[-145,1],[-185,2],[-40,0],[-238,3],[-7,24],[-15,11],[-13,13],[-20,-14],[-21,15],[-16,30],[-15,23],[-15,13],[-21,17],[-7,25],[-13,21],[-35,1],[-15,-3],[-14,-8],[-12,23],[-14,12],[-19,27],[-1,49],[5,43],[19,26],[14,22],[10,34],[7,23],[4,32],[10,27],[13,27],[2,46],[-2,49],[-15,5],[-21,18],[-15,12],[-14,34],[-13,35],[-13,15],[-16,30],[-11,24],[-16,20],[-9,21],[-16,22],[-9,27],[-53,70],[5,45],[6,31],[5,38],[-3,37],[11,24],[15,7],[-4,18],[-2,10],[-8,38],[-10,46],[-13,32],[-17,17],[5,35],[-3,40],[-2,35],[-6,46],[-9,26],[-15,21],[-13,11],[-17,32],[-8,35],[-7,40],[-17,30],[-10,34],[-15,11],[-14,12],[-13,17],[-13,23],[-15,0],[-20,15],[-23,3],[-13,11],[-15,-3],[-18,3],[-22,29],[-16,9],[-17,14],[-14,3],[-19,18],[-12,17],[-15,9],[-22,3],[-34,37],[-15,12],[-14,8],[-20,24],[-3,37],[-9,35],[-5,43],[-12,15],[-25,-6],[-16,9],[-10,17],[-14,9],[-17,3],[-28,2],[-15,3],[-18,-3],[-20,6],[-23,20],[-24,12],[-26,23],[-13,9],[-12,3],[-13,0],[-19,14],[-12,18],[-6,34],[2,44],[-5,31],[-5,35],[4,29],[-12,16],[-16,19],[-13,17],[-2,44],[24,34],[13,21],[5,28],[-23,44],[-3,37],[4,29],[27,6],[20,3],[22,6],[14,6],[19,11],[14,3],[21,-15],[21,-25],[21,-9],[11,17],[7,27],[19,11],[-2,40],[-14,44],[-10,17],[-22,26],[-15,18],[-27,28],[-14,18],[-12,14],[-13,15],[-10,43],[-7,43],[-21,12],[-18,3],[-18,-15],[-21,0],[2,32],[-25,6],[-24,-20],[-27,9],[-15,0],[-5,31],[-6,26],[-11,29],[-33,3],[-27,-29],[-16,3],[-13,17],[-19,18],[-23,9],[-14,-3],[-14,5],[-13,12],[-11,14],[-17,15],[-19,11],[-41,41],[-13,9],[-15,17],[-24,9],[-5,37],[-17,47],[-23,34],[-16,6],[-16,-9],[-21,-11],[-25,-3],[-19,-9],[-29,-6],[-20,3],[-26,-3],[-15,0],[-14,3],[-14,6],[-22,6],[-22,9],[-18,11],[-20,3],[-24,3],[-28,14],[-9,26],[-12,24],[-15,11],[-11,15],[-17,52],[-9,34],[-18,-3],[-15,-14],[-21,-3],[-15,17],[-18,24],[-14,34],[-13,23],[-17,35],[-14,3],[-20,-6],[-20,-3],[-14,6],[-14,18],[8,43],[5,32],[-7,43],[-21,46],[-14,17],[-23,9],[-22,38],[-19,43],[-7,29],[-6,26],[-14,26],[-11,15],[-13,11],[-13,6],[-14,18],[-17,2],[-7,27],[-8,31],[-14,12],[-14,9],[-15,17],[-12,23],[-11,29],[-12,26],[-4,32],[-12,9],[-16,-3],[-14,-3],[-15,-6],[-14,-3],[-13,6],[-11,17],[-13,23],[-8,23],[-11,24],[-18,20],[-17,23],[-11,20],[-10,23],[-4,29],[-5,29],[-8,26],[-20,23],[-12,21],[-20,17],[-14,26],[-8,23],[-9,23],[-12,9],[-15,-3],[-15,-6],[-14,-3],[-13,9],[-14,12],[-12,14],[-8,23],[-6,29],[-9,32],[-9,32],[-10,26],[-22,-9],[-13,-6],[-18,3],[-16,9],[-14,9],[-11,-21],[-16,-23],[-8,-26],[-20,-20],[-22,0],[-23,0],[-15,-3],[-13,6],[-18,6],[-14,-12],[-16,-9],[-21,-23],[-14,-14],[-16,-9],[-13,-9],[-17,-8],[-14,6],[-14,11],[-52,70],[-13,20],[-14,20],[-11,23],[5,32],[2,35],[-19,23],[-11,14],[-8,38],[-18,37],[-14,38],[-14,43],[-11,44],[-21,26],[-18,14],[-14,15],[-16,26],[-11,23],[-21,0],[-13,9],[-20,-3],[-17,-19],[-17,10],[-16,26],[-13,32],[-1,35],[-10,34],[-22,38],[-9,52],[-8,46],[-1,47],[1,31],[-60,12],[-11,32],[-10,33],[-12,28],[-1,28],[18,32],[-2,35],[-11,29],[-8,32],[-1,37],[-1,35],[-8,23],[-10,35],[-1,49],[2,46],[12,28],[11,19],[17,34],[11,15],[0,35],[3,37],[0,32],[4,40],[7,47],[-5,46],[17,9],[21,31],[20,26],[11,32],[9,38],[1,35],[-2,29],[-2,37],[7,32],[4,46],[39,96],[16,26],[3,29],[-3,37],[-2,49],[-4,29],[-5,32],[-10,46],[-10,21],[-9,26],[-8,23],[-7,32],[-14,14],[-11,23],[-9,44],[-5,49],[-7,26],[2,32],[2,34],[-2,32],[-18,3],[-17,9],[-16,29],[-16,8],[-17,-20],[-22,-11],[-24,-18],[-22,9],[-21,14],[-18,-5],[-15,-9],[-23,-6],[-21,-9],[-19,0],[-14,-2],[-18,0],[-13,20],[-19,14],[-16,18],[-13,11],[-5,29],[-14,26],[-10,44],[-9,31],[-14,38],[-22,20],[-15,3],[-19,32],[16,49],[14,20],[17,12],[18,17],[16,26],[7,26],[-2,29],[-11,35],[-18,49],[-9,41],[-5,31],[-12,18],[-14,11],[-15,26],[-10,35],[-18,9],[-13,3],[-18,5],[-14,15],[-16,9],[-19,17],[-17,3],[-23,-9],[-19,12],[-13,8],[-25,9],[-17,41],[-13,8],[-16,12],[-36,14],[-23,18],[-16,14],[-13,6],[-23,3],[-21,3],[-12,3],[-16,0],[-12,0],[-13,8],[-12,15],[-16,3],[-21,0],[-14,8],[-16,18],[-8,26],[-11,29],[-14,11],[-17,12],[-14,23],[-17,20],[-15,43],[-13,27],[-19,23],[-13,20],[-9,23],[-22,-6],[-16,3],[-16,0],[-20,-11],[-22,0],[-13,17],[-22,11],[-19,21],[-15,37],[-22,23],[-17,27],[-19,11],[-13,17],[-19,29],[-14,15],[-21,8],[-20,24],[-5,37],[-1,35],[12,52],[7,26],[7,26],[-11,38],[-11,26],[-14,23],[-13,6],[-14,-3],[-22,-3],[-23,6],[-14,0],[-15,2],[-15,35],[-18,41],[-8,26],[-10,52],[-13,20],[-12,-3],[-22,35],[-13,14],[-24,21],[-13,17],[-13,23],[-10,23],[-9,29],[-11,26],[-14,32],[-9,43],[-1,32],[-22,6],[-18,12],[-15,14],[-21,23],[-7,26],[-8,29],[-12,15],[-11,17],[-5,40],[-13,29],[-16,9],[-13,17],[-8,41],[-4,32],[-7,37],[-7,26],[-19,15],[-15,17],[-8,32],[-1,32],[-5,34],[-10,18],[-13,3],[-21,-3],[-14,-3],[-21,-15],[-17,-8],[-14,-18],[-11,-20],[-17,-23],[-13,-17],[-12,-15],[-11,-20],[-15,0],[-17,-9],[-12,0],[-14,0],[-16,3],[-14,3],[-15,3],[-13,0],[-18,0],[-14,9],[-12,2],[-17,-2],[-13,-12],[-12,-3],[-17,-6],[-14,0],[-17,-3],[-19,3],[-16,12],[-20,3],[-20,-6],[-15,12],[-4,29],[-12,26],[-14,17],[-16,20],[-22,20],[-20,18],[-16,14],[-10,20],[-7,32],[1,29],[-17,6],[-14,12],[-13,17],[-12,3],[-17,0],[-18,6],[-13,8],[-16,15],[-12,14],[-12,12],[-14,8],[-21,-11],[-14,0],[-13,11],[-15,12],[-15,14],[-22,-11],[-13,-6],[-14,9],[-11,20],[-9,23],[-17,15],[-11,17],[-12,14],[13,29],[17,23],[10,18],[9,26],[8,23],[6,29],[1,32],[-5,29],[-5,29],[-1,40],[-4,29],[0,29],[-1,29],[3,29],[7,37],[9,32],[14,29],[13,26],[15,6],[11,29],[8,32],[9,26],[5,32],[11,17],[15,14],[12,12],[13,12],[17,14],[12,6],[34,26],[-2,32],[4,37],[6,38],[4,29],[9,32],[4,37],[-4,35],[1,29],[9,29],[11,20],[14,3],[15,3],[13,8],[15,18],[14,8],[-10,21],[-9,26],[-13,26],[-4,37],[-3,35],[-9,32],[6,32],[6,26],[4,29],[-1,34],[-6,32],[-15,15],[-12,8],[-18,18],[-10,20],[-3,62],[-13,4],[-14,0],[-12,9],[-11,17],[-15,9],[-15,18],[-16,11],[-19,6],[-19,6],[-15,0],[-15,8],[-14,3],[-16,0],[-15,9],[-13,11],[-14,9],[-8,23],[-8,26],[-12,21],[-8,31],[-11,15],[-15,11],[-14,0],[-17,0],[-15,6],[-17,0],[-18,3],[-14,9],[-13,3],[-12,5],[-13,24],[-13,8],[-11,26],[-12,21],[-11,14],[-13,14],[-14,21],[-12,17],[-10,32],[-9,26],[-12,43],[-14,12],[-18,6],[-14,5],[-13,0],[-15,15],[-14,14],[-16,9],[-11,20],[-14,20],[-12,24],[-15,0],[-15,-9],[-13,-6],[-13,-9],[-14,-17],[-19,-9],[-17,-2],[-12,-3],[-20,3],[-14,2],[-19,0],[-16,0],[-13,-2],[-20,-9],[-21,11],[-15,6],[-21,0],[-16,-6],[-14,-2],[-13,0],[-13,-6],[-14,-3],[-20,35],[11,26],[10,22],[15,18],[15,20],[16,21],[-3,34],[3,41],[2,37],[-9,26],[1,29],[5,32],[10,23],[-2,29],[-10,35],[-8,26],[-13,9],[-14,17],[-16,29],[-7,26],[2,32],[0,37],[1,32],[-4,35],[-18,58],[-1,37],[-7,38],[-8,40],[-12,21],[-11,26],[-12,32],[-6,28],[-2,29],[14,21],[21,-3],[13,11],[9,29],[2,29],[0,29],[-2,35],[2,29],[-10,23],[-10,17],[-46,58],[-14,26],[-16,12],[-15,3],[-20,0],[-21,2],[-11,21],[-4,34],[-10,32],[-3,35],[-1,29],[-12,29],[-17,23],[-4,32],[6,32],[12,26],[12,8],[20,0],[17,-3],[17,0],[14,9],[14,-3],[13,9],[20,0],[18,11],[8,24],[2,31],[12,23],[13,24],[6,29],[6,26],[0,34],[4,41],[23,26],[12,20],[6,29],[11,20],[12,18],[11,20],[13,29],[12,26],[9,23],[15,14],[14,12],[13,6],[14,-3],[12,-9],[18,-6],[13,3],[15,6],[14,9],[-9,32],[-35,60],[-13,6],[-10,20],[-22,12],[-18,3],[-23,8],[-16,15],[-16,14],[-12,24],[-16,14],[-12,9],[-26,17],[-18,14],[-19,79],[-6,26],[1,43],[10,35],[3,34],[20,6],[8,44],[6,31],[6,26],[40,50],[14,17],[14,17],[15,12],[14,11],[11,26],[10,32],[14,26],[14,15],[16,3],[17,3],[19,0],[13,-9],[17,-12],[12,0],[14,12],[13,11],[-4,32],[-4,29],[-11,23],[-17,12],[-13,12],[-38,32],[-29,33],[-16,-6],[-22,10],[-18,27],[-13,18],[-55,25],[-27,31],[-42,16],[-23,16],[-13,4],[-16,-10],[-3,38],[15,48],[-1,41],[10,22],[-18,48],[-20,49],[14,27],[11,51],[0,52],[1,38],[11,33],[9,26],[8,16],[16,31],[16,16],[22,21],[12,28],[-1,45],[3,66],[7,44],[-18,23],[-11,30],[-16,73],[-31,1],[-16,16],[-6,-28],[-31,-28],[-56,-42],[-15,-8],[-66,-17],[-25,9],[-16,-19],[-37,-17],[-11,-19],[-21,0],[-50,-12],[-30,-8],[-14,7],[-22,-7],[-16,16],[-27,26],[-26,-2],[-47,14],[-24,0],[-24,-18],[-24,-8]],[[51725,86381],[-19,80],[-15,34],[-6,37],[-13,6],[-13,21],[-6,45],[-15,32],[-7,45],[16,42],[37,78],[-7,46],[16,56],[24,30],[8,55],[12,31],[11,70],[-11,26],[5,80],[20,10],[18,-3],[23,2],[17,9],[26,25],[16,27],[20,7],[17,50],[32,57],[-6,68],[-11,80],[-15,43],[-3,35],[-6,45],[-19,24],[-27,16],[-8,25],[-16,37],[-15,35],[-14,24],[-15,15],[-12,26],[-15,40],[-16,53],[-17,43],[-12,25],[-11,25],[-8,25],[-17,18],[-16,21],[-14,5],[-16,5],[-23,-1],[-19,28],[-23,32],[-2,41],[-15,12],[-24,-1],[-12,44],[-18,-11],[-18,8],[-19,-66],[-3,-42],[12,-49],[0,-47],[-13,-42],[-39,-44],[-10,-32],[-21,-7],[-11,-19],[-12,-59],[-52,-45],[-53,-24],[-41,-25],[-14,-12],[-16,-11],[-22,19],[-11,27],[-19,-6],[-22,14],[-23,4],[-17,9],[-21,11],[-16,15],[-32,24],[-18,24],[-12,21],[-16,33],[-26,27],[-16,56],[2,36],[-17,4],[-17,1],[-14,32],[-27,43],[-21,20],[-4,44],[-25,57],[-13,23],[-19,8],[-17,35],[-22,53],[-37,47],[-14,49],[-8,58],[5,32],[4,56],[2,48],[20,46],[16,24],[-3,32],[-7,37],[-14,58],[-4,32],[-10,17],[-9,27],[-6,27],[-15,30],[-7,25],[-6,41],[-8,39],[17,17],[14,13],[11,19],[18,18],[13,17],[23,39],[14,17],[11,34],[18,85],[17,57],[15,9],[15,8],[14,16],[-3,55],[9,26],[3,35],[11,15],[14,25],[14,16],[12,17],[21,2],[17,1],[13,-3],[22,-6],[15,9],[18,-3],[26,-3],[11,19],[13,21],[13,19],[16,30],[13,28],[8,26],[-2,32],[6,55],[13,24],[9,37],[-14,22],[-4,31],[-3,45]],[[49806,99937],[636,-1],[517,-1],[787,-3],[195,-1],[50,0],[142,0],[310,4],[618,6],[476,4],[58,0],[41,0],[342,0],[546,-1],[672,-1],[339,-1],[705,-2],[261,-1],[21,0],[536,-3],[750,-4],[546,-4],[505,-4],[736,-6],[327,-3],[276,-3],[165,1],[279,1],[32,0],[250,2],[448,3],[102,1],[740,4],[464,2],[684,3],[408,2],[334,1],[336,0],[48,0],[133,0],[464,-1],[235,0],[702,0],[731,1],[229,-1],[549,0],[5,0],[3,0],[22,0],[17,0],[121,0],[68,0],[177,0],[23,0],[324,0],[263,0],[521,0],[383,0],[572,0],[12,0],[529,0],[359,0],[163,1],[36,0],[292,-1],[366,0],[351,0],[344,0],[347,0],[368,0],[18,0],[546,0],[216,0],[185,0],[413,0],[140,0],[246,0],[550,0]],[[93463,99942],[0,-14],[-4,-161],[0,-44],[0,-53],[-1,-62],[0,-32],[0,-41],[0,-30],[0,-31],[-1,-121],[-1,-215],[-1,-61],[0,-207],[0,-878],[0,-289],[-190,-2],[-686,-6],[0,-349],[1,-659],[0,-376],[1,-259],[3,-629],[-1,-214],[-8,-2],[-24,-4],[-488,1],[-213,1],[-31,0],[-26,0],[-40,0],[0,-52],[0,-65],[-1,-45],[0,-54],[-1,-186],[1,-71],[-1,-98],[0,-34],[0,-79],[0,-221],[0,-61],[-1,-378],[0,-127],[-1,-46],[-2,-31],[2,-49],[-1,-629],[0,-40],[0,-70],[-1,-134],[0,-40],[7,-215],[-272,8],[-77,3],[-57,1],[-17,0],[-75,-2],[-76,-4],[-88,-1],[-60,-4],[-21,-1],[-55,5],[-44,1],[1,-192],[0,-566],[1,-151],[0,-178],[0,-22],[0,-346],[1,-709],[0,-137],[0,-30],[1,-52],[0,-29],[0,-100],[26,0],[14,0],[405,-3],[244,1],[59,0],[121,1],[119,0],[54,1],[118,2],[107,5],[182,2],[186,3],[17,-1],[0,-96],[0,-9],[-1,-123],[0,-38],[0,-3],[-2,-409],[-5,-228],[-1,-259],[0,-299],[0,-147],[-1,-524],[0,-287],[0,-19],[-4,-7],[-1,-139],[-1,-64],[-1,-207],[0,-251],[0,-416],[0,-206],[0,-137],[0,-41],[-2,-385],[0,-44],[-1,-138],[0,-45],[0,-66],[0,-196],[0,-96],[0,-7],[0,-95],[11,-99],[-1,-1088],[-1,-290],[0,-100],[0,-450],[0,-238],[0,-125],[-1,-185],[5,-509],[0,-72],[1,-137],[0,-147],[1,-425],[0,-34],[0,-459],[0,-52],[1,-130],[0,-149],[0,-468],[0,-73],[-1,-45],[0,-120],[0,-136],[1,-78],[0,-35],[0,-352],[0,-42],[0,-353],[0,-120],[0,-54],[1,-206],[0,-55],[-1,-89],[-2,-161],[-1,-77],[-4,-387],[-20,1],[0,-115],[0,-56],[0,-41],[0,-75],[0,-129],[0,-18],[0,-132],[0,-82],[0,-111],[0,-88],[0,-245],[0,-42],[0,-114],[0,-59],[0,-102],[-1,-43],[0,-193],[0,-204],[-1,-346],[0,-106],[0,-37],[0,-52],[0,-106],[0,-64],[16,-2],[200,-1],[19,-1],[225,-1],[99,0],[53,0],[112,-1],[55,0],[47,0],[0,-35],[0,-120],[0,-127],[5,-560],[0,-95],[0,-34],[3,-422],[1,-289],[1,-79],[-1,-156],[0,-193],[-1,-419]],[[93369,72370],[-130,2],[-145,2],[-185,3],[-92,0],[-69,3],[-45,4],[-77,-2],[-75,-1],[-139,3],[-147,2],[-148,3],[1,-258],[0,-166],[0,-44],[3,-47],[2,-47],[-1,-374],[0,-330],[0,-106],[-1,-12],[0,-51],[1,-77],[0,-168],[1,-22],[0,-81],[0,-18],[0,-29],[-1,-267],[-1,-150],[-1,-272],[-2,-412],[-1,-261],[-1,-97],[1,-29],[0,-34],[0,-336],[-1,-78],[0,-410],[0,-85],[0,-90],[-2,-67],[0,-160],[2,-450],[0,-331],[0,-70],[0,-148],[1,-127],[-3,-121],[1,-138],[-1,-95],[0,-33],[-1,-89],[1,-98],[-2,-415],[0,-61],[-2,-463],[0,-10],[0,-64],[-6,13],[-3,9],[-4,7],[-7,12],[-18,12],[-15,4],[-149,102],[-38,-1],[-5,-1],[-60,-2],[-179,-165],[-14,-42],[-39,-10],[-147,113],[-96,73],[-87,169],[-50,134],[-15,53],[-12,42],[-15,27],[-19,21],[-21,24],[-16,35],[-10,35],[-4,29],[-4,37],[-3,42],[-5,43],[-4,31],[-7,45],[-12,35],[-16,14],[-14,7],[-23,6],[-19,11],[-11,29],[-13,18],[-11,26],[-15,34],[-14,42],[-23,27],[-19,5],[-17,3],[-30,11],[-20,9],[-13,2],[-18,-4],[-12,-4],[-18,-5],[-19,-10],[-18,-7],[-20,-6],[-14,-2],[-24,12],[-14,15],[-21,30],[-17,35],[-16,33],[-16,35],[-14,34],[-19,49],[-42,114],[-13,36],[-10,41],[-6,30],[-1,50],[1,36],[7,49],[5,30],[1,30],[-8,47],[-7,29],[-9,34],[-9,35],[-7,36],[-2,40],[1,36],[-2,53],[3,35],[3,44],[3,39],[9,69],[12,57],[7,31],[2,60],[-8,34],[-12,40],[-19,38],[-12,23],[-12,25],[-18,40],[-2,5],[-17,31],[-19,17],[-16,5],[-5,1],[-23,4],[-30,0],[-21,-5],[-20,-7],[-21,-15],[-44,-25],[-27,-19],[-19,-18],[-12,-28],[-4,-29],[-9,-28],[-9,-28],[-9,-33],[-6,-34],[-3,-34],[-6,-26],[-9,-25],[-16,-57],[-6,-29],[-11,-57],[-7,-33],[-2,-34],[-9,-41],[-8,-41],[-8,-44],[-7,-44],[8,-45],[12,-28],[13,-17],[23,-45],[2,-29],[-8,-45],[-17,-25],[-12,-10],[-14,-9],[-20,-14],[-17,-10],[-13,-11],[-13,-16],[-11,-27],[-11,-40],[-6,-32],[-11,-24],[-11,-30],[-11,-30],[-12,-13],[-43,-30],[-39,-28],[-49,-37],[-24,-19],[-44,-37],[-27,-21],[-23,-26],[-16,-22],[-20,-26],[-23,-39],[-9,-31],[-3,-33],[-33,-54],[-26,-40],[-19,-32],[-17,-30],[-13,-17],[-61,-38],[-15,-11],[-19,4],[-16,15],[-18,30],[-22,39],[-18,9],[-50,22],[-44,-2],[-37,-6],[-56,-32],[-40,-41],[-25,-34],[-14,-24],[-21,-36],[-8,-31],[-8,-40],[-10,-29],[-12,-17],[-5,-36],[-3,-35],[-10,-41],[-5,-32],[-18,-56],[-15,-40],[-24,-34],[-13,-9],[-32,10],[-24,12],[-24,10],[-22,9],[-31,23],[-35,41],[-35,40],[-26,38],[-27,43],[-28,42],[-28,46],[-16,28],[-10,25],[-9,22],[-17,23]],[[88472,65948],[-16,20],[-14,10],[-13,28],[-14,32],[-15,20],[-8,25],[-7,27],[-16,28],[-18,26],[-6,28],[-9,26],[-18,9],[-11,-14],[-15,-15],[-24,28],[-19,23],[-13,46],[-9,22],[-18,-28],[-37,-2],[-29,6],[-11,15],[-27,12],[-19,11],[-14,11],[-1,1],[-12,8],[-22,30],[-10,19],[-17,33],[-20,27],[-18,16],[-24,15],[-5,2],[-42,24],[-9,5],[-4,2],[-22,9],[-17,2],[-29,12],[-28,28],[-25,13],[-20,8],[-19,1],[-15,1],[-13,-6],[-4,-6],[-14,-17],[-13,-43],[-2,-36],[-2,-35],[-3,-41],[-6,-26],[-12,-39],[-15,-26],[-16,-16],[-67,-27],[-36,-15],[-30,-10],[-35,2],[-30,15],[-13,19],[-14,-24],[-11,-22],[-16,-5],[-23,1],[-17,3],[-17,2],[-13,-16],[-9,-31],[-15,-15],[-14,-9],[-12,-32],[-1,-40],[2,-38],[-7,-26],[-20,-20],[-24,-7],[-16,-13],[-19,-15],[-14,-22],[-23,-18],[-33,-20],[-39,-19],[-33,-14],[-13,8],[-10,29],[-24,23],[-24,7],[-37,13],[-31,19],[-16,11],[-17,8],[-17,10],[-19,7],[-19,6],[-21,3],[-21,5],[-19,10],[-23,13],[-16,11],[-12,12],[-26,37],[-12,19],[-14,12],[-20,14],[-15,4],[-42,7],[-47,19],[-21,12],[-20,8],[-13,2],[-13,1],[-37,-3],[-23,9],[-16,2],[-13,1],[-19,0],[-12,-7],[-15,-19],[-17,-14],[-14,-19],[-29,-45],[-12,-18],[-21,-53],[-31,-68],[-35,-78],[-42,-147],[-10,-35],[-14,-51],[-21,-123],[-7,-127],[-34,-66],[-18,-10],[-41,-25],[-35,-26],[-44,-26],[-26,0],[-23,18],[-26,24],[-18,4],[-25,-6],[-33,-33],[-23,-36],[-18,-34],[-31,-54],[-17,-35],[-15,-19],[-14,-19],[-6,-49],[-2,-38],[-23,-3],[-15,25],[-6,41],[0,33],[-10,49],[-16,32],[-25,11],[-25,-3],[-13,-6],[-39,-23],[-34,-10],[-25,12],[-21,31],[-11,19],[-32,11],[-24,-3],[-27,-6],[-30,2],[-18,8],[-19,40],[-19,74],[-14,51],[-14,57],[-22,58],[-88,180],[-29,66],[-39,90],[-27,48],[-9,33],[16,61],[15,47],[-19,33],[-37,14],[-38,15],[-34,35],[-20,34],[-16,16],[-26,1],[-35,-3],[-62,-9],[-26,38],[-8,41],[27,77],[-2,62],[1,59],[8,55],[8,40],[-6,58],[-14,73],[-5,28],[-10,65],[-13,70],[-15,85],[-8,32],[-24,80],[-17,35],[-19,29],[-23,61],[-23,63],[-14,42],[-8,36],[-20,47],[-17,53],[-25,73],[-14,70],[-12,56],[-10,59],[-26,31],[-31,30],[-17,13],[-29,18],[-23,8],[-18,-6],[-16,-10],[-12,-22],[-17,-34],[-19,-22],[-21,11],[-20,58],[-7,42],[-7,68],[6,49],[15,43],[12,29],[7,31],[-13,60],[-24,62],[-23,53],[-16,17],[-30,27],[-19,9],[-21,5],[-28,-13],[-26,-33],[-23,-14],[-12,8],[-12,47],[6,69],[13,66],[8,41],[0,46],[-8,22],[-23,35],[-19,19],[-17,18],[-19,31],[-16,21],[-16,35],[-18,46],[-13,46],[-10,50],[-8,49],[-5,42],[-17,41],[-14,20],[-15,8],[-19,3],[-23,-5],[-21,-1],[-13,4],[-11,15],[0,37],[-4,44],[-6,53],[-9,63],[-11,59],[-20,68],[-19,63],[-20,55],[-14,26],[-23,23],[-15,5],[-18,-4],[-28,-9],[-19,-8],[-24,-20],[-22,-39],[-21,-20],[-42,-30],[-20,-9],[-36,-20],[-29,-9],[-25,3],[-40,3],[-29,11],[-23,21],[-8,30],[-14,33],[-29,10],[-24,-2],[-26,-8],[-27,-25],[-69,-69],[-32,-74],[-13,-88],[-15,-31],[-33,-11],[-67,18],[-37,-29],[-17,-70],[-28,-62],[-43,-55],[-61,-86],[-67,-81],[-60,-49],[-140,-106],[-113,-112],[-26,-27],[-15,-40],[-3,-14],[-6,-34],[-28,-130],[-12,-80],[10,-37],[-7,-50],[-13,-10],[-23,2],[-65,3],[-45,-67],[-26,-9],[-14,-2],[-34,-6],[-44,22]],[[81837,67950],[12,167],[-47,176],[-83,291],[-75,376],[7,102],[18,268],[3,56],[19,276],[26,255],[10,93],[11,178],[-44,87],[-88,113],[-23,31],[-56,76],[-69,92],[-12,90],[-12,93],[-14,99],[-3,26],[-10,58],[-14,52],[-8,29],[-152,579],[127,464],[453,306],[180,-46],[366,-94],[415,118],[4,4],[197,268],[116,156],[23,590],[-11,335],[-69,398],[3,53],[32,504],[52,105],[34,21],[235,206],[152,133],[54,48],[62,55],[37,204],[10,612],[10,575],[6,327],[10,145],[4,61],[74,146],[286,363],[21,39],[19,46],[178,424],[79,190],[-7,209],[-9,276],[-1,34],[-25,59],[-2,5],[-34,83],[-50,130],[-206,539],[-5,167],[-14,148],[-4,36],[-89,1320],[-6,151],[-16,149],[-271,1407],[-35,122],[-78,273],[-17,470],[-7,200],[31,189],[23,141],[35,220],[21,131],[50,172],[153,232],[69,104],[39,128],[-13,525],[253,73],[1,4],[26,57],[61,200],[68,308],[20,371],[61,101],[87,146],[121,362],[2,223],[0,46],[-59,341],[-6,34],[-18,106],[13,83],[33,206],[25,237],[21,46],[34,79],[15,33],[23,52],[5,12],[21,47],[2,4],[26,60],[92,206],[49,508],[87,410],[-165,183],[-97,9],[-8,27],[-27,80],[4,23],[28,149],[-16,78],[-1,5],[-1,4],[-2,5],[0,5],[-1,2],[-17,81],[-24,155],[-1,14],[-3,67],[-8,134],[13,59],[7,30],[2,5],[4,9],[10,21],[5,42],[-31,171],[-29,157],[-2,11],[-20,52],[-21,112],[100,205],[-1,29],[-1,40],[-1,5],[0,1],[-1,26],[-126,79],[-12,75],[-8,57],[17,11],[62,36],[9,105],[1,11],[-8,13],[-49,83],[-15,19],[-45,57],[0,1],[-2,5],[0,2],[-20,65],[30,43],[20,4],[37,6],[10,2],[1,18],[4,60],[1,17],[-7,3],[-4,1],[-32,13],[-39,15],[-5,2],[-10,20],[-2,5],[-1,8],[-10,64],[-6,120],[-1,63],[11,29],[14,27],[5,6],[11,6],[1,1],[15,5],[1,0],[9,-1],[7,-5],[1,0],[21,-28],[1,-2],[5,-8],[21,-44],[2,-4],[4,-5],[8,3],[4,5],[3,6],[8,20],[7,38],[1,3],[2,38],[-7,53],[-7,25],[-31,113],[-1,4],[-6,19],[0,1],[-4,11],[-5,-2],[-46,-35],[-1,0],[-49,-26],[-35,-62],[-15,-42],[-39,-20],[-2,4],[-1,4],[-2,4],[-1,3],[-2,4],[-1,2],[-45,75],[-2,3],[-1,23],[-1,43],[-6,36],[-6,34],[-34,76],[-80,54],[-46,66],[15,85],[0,5],[-2,91],[0,4],[-1,5],[0,5],[-1,5],[0,3],[-18,116],[-14,98],[-5,14],[-8,23],[-11,31],[-3,9],[-47,201],[-31,213],[-1,5],[0,2],[-23,110],[-32,42],[-20,28],[-15,61],[-1,5],[-1,4],[-2,4],[-1,3],[-2,4],[-2,3],[-2,3],[-2,3],[-17,34],[-4,7],[-6,11],[-12,19],[-17,28],[-148,78],[-29,20],[-7,4],[0,1],[0,2],[2,19],[11,78],[1,1],[12,81],[1,5],[1,50],[-22,73],[-4,16],[-1,8],[-1,3],[-1,5],[-3,27],[-14,24],[-1,3],[-2,3],[-2,3],[-2,3],[-7,14],[-7,5],[-2,2],[-2,2],[-2,2],[-2,1],[-8,5],[-6,5],[1,8],[8,57],[-4,44],[0,2],[-1,5],[0,5],[-1,5],[5,24],[11,63],[7,39],[1,1],[2,14],[2,15],[-1,0],[-2,9],[-7,11],[-1,1],[-34,36],[-51,21],[-3,7],[-19,40],[-39,94],[-10,26],[-5,21],[-17,125],[-2,17],[1,100],[1,22],[0,7],[0,6],[2,76],[21,50],[39,102],[7,26],[0,40],[-1,52],[3,14],[22,40],[6,24],[0,1],[13,11],[18,15],[5,8],[6,8],[1,4],[13,61],[3,5],[9,13],[12,17],[10,26],[22,88],[1,41],[0,33],[-1,7],[-1,16],[-8,36],[-14,20],[-4,9],[-1,2],[-2,3],[-2,3],[-10,22],[-8,13],[-5,6],[-13,28],[-44,88],[-87,128],[-13,15],[-2,3],[-2,3],[-1,2],[-2,1],[-15,21],[-3,25],[-23,102],[-14,93],[-18,91],[0,62],[28,89],[18,54],[17,144],[36,135],[3,18],[55,216],[1,9],[0,8],[0,6],[-13,38],[-1,1],[-39,75],[0,1],[-20,14],[-1,1],[-5,6],[-8,6],[-1,1],[-10,-1],[-17,-13],[-9,0],[-7,3],[-1,2],[-6,12],[-13,24],[-13,26],[-4,14],[-1,12],[0,6],[0,3],[0,8],[0,1],[11,19],[1,1],[23,37],[3,8],[17,67],[4,30],[1,26],[0,16],[-12,76],[-2,30],[3,21],[2,21],[10,37],[4,12],[10,17],[2,4],[6,6],[12,-6],[2,-1],[25,-14],[2,-1],[17,4],[13,9],[28,29],[5,16],[-1,18],[0,1],[0,1],[-3,16],[-4,14],[0,1],[-13,16],[-1,0],[-10,6],[-30,8],[-1,0],[-9,5],[-10,9],[-76,112],[-18,36],[-1,2],[-3,14],[1,19],[1,5],[9,6],[33,3],[2,0],[58,-1],[41,-11],[14,-9],[31,-49],[8,-9],[33,-26],[15,-9],[17,-4],[10,4],[12,8],[28,53],[5,16],[1,4],[0,24],[-30,75]],[[83673,99930],[306,0],[113,1],[880,2],[417,1],[300,1],[598,2],[621,2],[4,0],[126,0],[499,1],[770,3],[1,0],[24,0],[3,0],[5,0],[737,1],[456,2],[513,2],[514,1],[251,1],[1,0],[56,0],[1,0],[14,0],[54,0],[10,0],[594,-1],[916,-3],[1006,-4]],[[98398,72322],[-45,1],[-19,0],[-15,0],[-63,0],[-61,0],[-25,0],[-35,1],[-119,0],[-20,0],[-143,0],[-269,2],[-34,-1],[-80,0],[-135,3],[-20,0],[-137,-1],[-27,0],[-284,0],[-14,0],[-123,0],[-26,0],[-18,0],[-105,3],[-14,-1],[-133,2],[-192,3],[-37,1],[-49,0],[-86,0],[-48,-1],[-98,2],[-2,0],[-18,0],[-22,0],[-99,2],[-43,-1],[-21,0],[-69,2],[-334,2],[-84,1],[-212,1],[-121,4],[-189,3],[-91,1],[-61,1],[-351,6],[-26,0],[-35,0],[-81,1],[-69,1],[-49,1],[-35,0],[-18,1],[-1,0],[-90,1],[-173,3],[-103,2],[-158,2]],[[93463,99942],[5,0],[488,-3],[282,-2],[177,1],[20,0],[17,0],[663,-10],[2,0],[6,0],[119,-2],[574,-9],[571,-9],[626,-10],[209,-4],[793,7],[501,4],[1,-697],[0,-127],[1,-1558],[1,-292],[0,-604],[0,-265],[0,-53],[-3,-535],[-1,-286],[-1,-360],[-2,-456],[-1,-183],[0,-32],[0,-4],[0,-44],[-1,-173],[0,-102],[0,-37],[-1,-210],[-1,-197],[-2,-471],[-1,-231],[-2,-242],[1,-53],[1,-1275],[0,-33],[-1,-36],[0,-37],[0,-154],[0,-28],[-1,-65],[0,-51],[0,-101],[-3,-681],[0,-230],[-1,-40],[-8,-780],[-4,-51],[1,-54],[1,-120],[-1,-312],[1,-49],[0,-9],[-1,-112],[0,-184],[-1,-43],[-1,-278],[0,-118],[-1,-264],[0,-121],[0,-53],[-1,-115],[0,-78],[0,-51],[-2,-356],[0,-43],[0,-141],[-2,-383],[0,-157],[-3,-628],[0,-188],[1,-60],[0,-36],[0,-110],[0,-217],[0,-17],[0,-271],[0,-45],[0,-44],[0,-656],[0,-50],[0,-54],[0,-37],[1,-234],[1,-33],[0,-136],[-1,-45],[0,-36],[1,-172],[0,-120],[0,-125],[0,-40],[1,-163],[0,-220],[1,-209],[-3,-298],[2,-117],[-2,-129],[-3,-341],[-1,-32],[0,-27],[-2,-190],[0,-6],[-1,-148],[0,-36],[-1,-48],[-1,-80],[-1,-140],[-1,-136],[-1,-50],[-1,-175],[-1,-111],[0,-54],[-1,-59],[0,-71],[-1,-99],[-2,-175],[-2,-168],[-1,-89],[-1,-101],[-1,-122],[1,-41],[-6,-584],[-2,-125],[-1,-162],[-2,-282],[-1,-34],[-5,-603],[-2,-147],[-1,-148],[-1,-29],[-1,-97],[0,-33],[-1,-35],[0,-17],[-2,-66],[-1,-42],[0,-35],[-2,-109],[-2,-84],[0,-9],[-1,-46],[-1,-48],[-1,-41],[0,-1],[0,-55],[0,-34],[0,-18],[0,-58],[0,-5],[3,-25],[-1,-41],[-1,-54],[-2,-142],[-1,-77],[-3,-190],[0,-30],[-4,-247],[-1,-87],[-4,-303],[-1,-78],[-2,-151],[-2,-114],[-2,-393],[-2,-747],[-1,-382],[0,-81],[-1,-126],[0,-93],[-1,-265],[0,-206]],[[81837,67950],[-4,-57],[-79,-156],[-31,-129],[5,-68],[18,-92],[-1,-62],[-11,-28],[-7,-29],[-12,-51],[-11,-43],[-10,-42],[-13,-60],[-11,-35],[-5,-48],[-7,-58],[-8,-29],[5,-30],[3,-41],[-7,-40],[-5,-73],[-7,-62],[0,-32],[-3,-75],[-3,-37],[4,-41],[5,-34],[-3,-32],[-7,-43],[-21,-38],[-10,-26],[-12,-29],[-24,-42],[-13,-20],[-11,-17],[-12,-20],[-28,-38],[-22,-28],[-21,-9],[-13,-1],[-26,18],[-14,3],[-16,-8],[-18,-11],[-13,-18],[-28,-24],[-13,-9],[-22,-8],[-19,0],[-36,1],[-62,8],[-40,17],[-38,18],[-38,29],[-47,7],[-42,26],[-44,17],[-25,1],[-30,11],[-30,19],[-24,27],[-20,33],[-24,21],[-17,6],[-29,10],[-42,11],[-31,12],[-16,17],[-31,39],[-35,33],[-76,75],[-55,87],[-35,67],[-21,52],[-21,54],[-8,42],[-4,34],[-4,33],[-4,37],[-1,43],[5,51],[6,43],[1,53],[0,33],[0,32],[-2,40],[5,47],[-1,34],[-3,68],[-7,38],[-7,35],[-20,29],[-4,28],[-12,27],[-42,46],[-35,14],[-25,-30],[-33,-48],[-38,-52],[-16,-22],[-15,-5],[-21,-9],[-21,1],[-25,-9],[-25,-1],[-14,-13],[-33,-3],[-29,-3],[-47,-23],[-18,-13],[-19,-13],[-33,-4],[-31,4],[-16,8],[-38,18],[-25,11],[-299,-11],[-24,19],[-77,61],[-43,84],[-19,99],[1,133],[23,117],[32,83],[65,165],[21,155],[11,114],[-18,127],[-40,88],[-56,72],[-96,68],[-61,38],[-35,54],[-33,23],[-27,14],[-34,11],[-89,136],[-33,12],[-62,-7],[-62,5],[-24,-3],[-109,-71],[-62,-27],[-64,37],[-51,23],[-16,-44],[-30,-36],[-40,12],[-46,-11],[-78,-21],[-16,-7],[-17,9],[-105,59],[-41,-18],[-21,-57],[-29,-36],[-40,-15],[-36,1],[-31,12],[-28,32],[-29,78],[-36,90],[-41,98],[-21,32],[-56,21],[-85,43],[-62,41],[-33,11],[-34,12],[-67,26],[-30,-9],[-24,-8],[-61,-47],[-81,-115],[-49,-85],[-11,-45],[-10,-75],[-10,-112],[-7,-99],[-7,-85],[14,-273],[-5,-111],[-16,-75],[-41,-38],[-55,-13],[-53,-15],[-89,-26],[-65,9],[-66,31],[-43,33],[-64,56],[-27,30],[-58,84],[-78,59],[-103,67],[-84,38],[-86,43],[-72,16],[-82,18],[-88,28],[-78,39],[-46,31],[-47,51],[-54,63],[-43,58],[-37,81],[-19,50],[-24,69],[-12,72],[-3,79],[-9,109],[-13,133],[-9,108],[-23,79],[-36,50],[-52,43],[-63,37],[-46,-1],[-22,1]],[[75511,99931],[32,0],[398,0],[200,0],[133,0],[87,0],[91,0],[25,0],[19,0],[157,0],[160,0],[166,0],[186,0],[228,-1],[299,1],[358,0],[630,0],[476,-1],[312,1],[278,0],[12,0],[3,0],[2,0],[3,0],[60,0],[60,0],[9,0],[335,0],[179,0],[383,-1],[423,0],[159,0],[664,1],[490,-1],[497,0],[222,1],[71,0],[6,0],[4,0],[3,0],[1,0],[206,-1],[135,0]],[[51725,86381],[-23,-24],[2,-44],[4,-52],[-8,-28],[-21,-5],[-20,-36],[-24,-40],[-30,-14],[-51,-1],[-19,-6],[-59,-54],[-43,-52],[-45,-37],[-54,-8],[-18,7],[-6,1],[-9,3],[-22,7],[-57,4],[-55,-13],[-39,-41],[-37,-47],[-10,-31],[-10,-44],[-18,-20],[-27,-13],[-28,-6],[-19,-18],[-20,-18],[-24,-24],[-25,-12],[-22,-11],[-20,1],[-13,-8],[-53,-12],[-21,8],[-36,7],[-20,0],[-17,9],[-25,-18],[-24,-12],[-16,-13],[-17,-13],[-34,16],[-22,14],[-32,25],[-14,10],[-11,19],[-14,1],[-20,11],[-28,22],[-24,23],[-9,45],[-32,9],[-27,24],[-19,23],[-6,35],[-18,33],[-24,19],[-25,14],[-19,28],[-5,51],[6,43],[19,22],[15,10],[4,38],[18,23],[9,29],[14,17],[13,13],[8,24],[-9,54],[-20,25],[-17,32],[-23,26],[-19,37],[-7,40],[15,20],[-17,29],[-26,25],[-42,28],[-27,22],[-15,27],[5,34],[-4,28],[10,32],[10,20],[-14,12],[-17,8],[-26,21],[-25,37],[-17,-3],[-15,10],[-22,4],[-15,13],[-18,23],[-10,33],[-23,-10],[-15,-7],[-14,4],[-22,-1],[-13,-44],[-11,-14],[-15,-3],[-17,10],[-16,-4],[-18,-14],[-15,9],[-21,17],[-13,3],[-14,-7],[-17,7],[-22,-83],[-17,-17],[-7,-30],[-6,-57],[8,-49],[16,-37],[17,-31],[7,-39],[-10,-27],[-30,-35],[-15,-15],[2,-35],[-3,-36],[-11,-24],[-9,-31],[-37,15],[-23,3],[-26,6],[-18,6],[-20,26],[-11,37],[-13,39],[-15,24],[-21,5],[-28,13],[-17,30],[-27,6],[-18,27],[-13,2],[-16,-35],[-15,-17],[-23,3],[-25,-2],[-36,-21],[-19,-29],[-18,-30],[-20,-33],[-25,10],[-14,18],[-21,-4],[-5,-41],[2,-42],[11,-44],[10,-64],[6,-27],[-10,-41],[-9,-27],[-23,-5],[-27,11],[-12,14],[-21,-5],[-21,4],[-30,-2],[-21,3],[-15,7],[-28,-5],[-23,5],[-26,18],[-33,15],[-16,16],[-18,4],[-14,11],[-10,26],[-13,10],[-17,11],[-15,17],[-15,15],[-27,9],[-12,13],[-7,7],[-12,11],[-7,-4],[-7,-5],[-19,-13],[-19,-2],[-9,3],[-20,7],[-15,-5],[-16,1],[-21,-2],[-14,-17],[2,-53],[-6,-43],[-13,-29],[-14,-20],[-2,-8],[-13,-46],[27,-104],[20,-56],[21,-55],[-11,-26],[-2,-32],[12,-73],[7,-26],[9,-38],[-1,-58],[-12,-51],[-3,-49],[-9,-43],[-7,-27],[-2,-44],[-12,-8],[-14,-3],[-17,14],[-7,38],[-24,11],[-21,2],[-20,-5],[-16,-23],[-23,-30],[-29,-13],[-30,11],[-11,18],[-42,-6],[-17,20],[-17,0],[-12,-11],[-12,22],[-20,-22],[-28,-9],[-24,-3],[-31,-9],[-11,-20],[-19,-6],[-27,9],[-22,3],[-13,20],[-12,3],[-23,-35],[-28,-23],[-13,-34],[-8,-27],[-18,-11],[-23,-4],[-12,7],[-16,3],[-18,-15],[-19,0],[-13,3],[-20,-11],[-23,8],[-15,0],[-17,6],[-19,0],[-14,-3],[-17,-3],[-28,12],[-29,17],[-18,3],[-13,0],[-1,0],[-11,-3],[-25,-6],[-14,0],[-24,3],[-16,-3],[-18,3],[-17,0],[-19,-8],[-3,-6],[-10,-18],[-1,-28],[-11,-18],[-12,-23],[-13,-23],[-16,-6],[-13,-14],[-12,-15],[-16,-17],[-14,-26],[-14,-20],[-17,-18],[-14,-17],[-7,-23],[-14,-35],[-15,-41],[-17,-49],[-13,-20],[-10,-17],[-16,-32],[-14,-44],[-3,-37],[-2,-41],[7,-34],[10,-21],[2,-28],[-5,-29],[-11,-32],[-13,-23],[-10,-24],[-14,-26],[-5,-31],[-3,-29],[0,-32],[0,-32],[-10,-26],[-8,-32],[-11,-14],[9,-23],[9,-23],[3,-29],[3,-29],[1,-32],[7,-26],[5,-32],[11,-23],[13,-18],[15,-8],[16,-29],[9,-23],[12,-12],[14,-20],[16,0],[11,-20],[13,-6],[11,-15],[16,-8],[11,14],[13,12],[18,-6],[11,-17],[14,-9],[21,-38],[6,-34],[-8,-32],[4,-35],[14,-26],[2,-29],[5,-32],[10,-23],[-3,-37],[-5,-44],[5,-34],[13,-24],[-1,-34],[-13,-21],[-11,-14],[-14,-6],[-13,-6],[-12,-31],[2,-41],[-8,-26],[-5,-35],[-5,-40],[-5,-38],[-12,-32],[-6,-37],[-8,-46],[7,-29],[2,-19],[3,-16],[6,-29],[10,-38],[14,-37],[4,-24],[1,-5],[9,-46],[-24,-15],[-17,-3],[-12,-3],[-18,3],[-17,0],[-9,16],[-2,4],[-8,6],[-5,3],[-18,15],[-14,3],[-14,11],[-22,0],[-7,-26],[-12,-43],[-12,-15],[-8,-23],[-17,-46],[-19,-29],[-9,-29],[0,-29],[-2,-43],[2,-29],[-13,-26],[-8,-23],[-15,-32],[3,-47],[-4,-34],[-5,-35],[-8,-35],[-1,-40],[12,-29],[12,-17],[12,-18],[11,-23],[16,-14],[14,-21],[10,-29],[2,-40],[8,-47],[0,-2],[3,-38],[-8,-32],[-14,-17],[-6,-9],[-11,-23],[4,-29],[12,-14],[9,-23],[14,-18],[16,-17],[13,-15],[14,-17],[9,-23],[14,-17],[10,-24],[8,-23],[11,-26],[11,-14],[2,-3],[10,-20],[8,-23],[5,-20],[1,-6],[8,-29],[8,-29],[12,-15],[13,-20],[10,-23],[9,-16],[2,-4],[2,-29],[7,-26],[5,-29],[3,-29],[-1,-35],[7,-26],[3,-23],[2,-9],[-3,-29],[-6,-26],[-7,-26],[2,-29],[2,-34],[8,-32],[7,-29],[2,-32],[-7,-26],[-10,-26],[-13,-20],[-17,3],[-17,3],[-3,-2],[-14,-7],[-12,0],[-13,-3],[-18,0],[-14,-9],[-15,-11],[-16,3],[-16,17],[-13,6],[-14,11],[-14,3],[-15,12],[-16,-12],[-11,-26],[-9,-23],[-12,-17],[-11,-35],[-8,-26],[-3,-32],[-2,-38],[-7,-34],[-14,-3],[-16,11],[-14,6],[-6,-29],[-4,-31],[3,-35],[0,-29],[-4,-29],[-12,-23],[4,-32],[8,-29],[16,-17],[17,-9],[10,-26],[9,-23],[-4,-38],[1,-29],[-3,-21],[-2,-8],[-4,-4],[-8,-7],[-11,-23],[-1,-11],[-2,-18],[-7,-32],[1,-29],[-10,-32],[-11,-17],[-10,-26],[12,-29],[12,-17],[11,-15],[16,-17],[12,-5],[3,-1],[18,0],[13,9],[11,14],[14,9],[13,5],[2,1],[17,0],[15,-9],[14,-15],[8,-10],[5,-7],[13,-14],[13,-9],[11,-20],[7,-14],[3,-7],[13,-26],[13,-11],[10,-20],[20,-26],[13,-14],[13,-12],[14,-3],[15,11],[18,6],[13,3],[13,11],[10,21],[14,8],[18,15],[16,6],[14,0],[14,-21],[16,-31],[10,-24],[14,-20],[13,-14],[5,-32],[-2,-41],[9,-23],[8,-26],[12,-20],[11,-17],[13,0],[13,5],[14,6],[14,0],[15,-3],[15,-17],[13,-9],[17,-8],[16,-12],[17,-8],[14,2],[15,-3],[15,-14],[20,-3],[29,-3],[14,-3],[15,-14],[13,-3],[13,-17],[2,-29],[4,-29],[13,-35]],[[47900,79553],[-10,0],[-17,0],[-4,0],[-30,1],[-64,0],[-3,0],[-41,1],[-360,3],[-243,2],[-74,1],[-382,3],[-364,3],[-392,0],[-186,0],[-299,-1],[-25,0],[-2,0],[-656,0],[-35,0],[-347,-1],[-294,0],[-425,0],[-260,-1],[-268,0],[-267,0],[-37,0],[-126,0],[-13,0],[-41,0],[-12,0],[-5,0],[-99,0],[-62,0],[-185,0],[-51,0],[-60,0],[-435,0],[-202,0],[-211,6],[-114,3],[-44,3],[-50,1],[-100,8],[-111,7],[-4,1],[-25,1],[-22,1],[-22,1],[-48,2],[-1,0],[-111,5],[-106,5],[-6,52],[-48,-2],[-182,-6],[-157,-5],[-162,-5],[-29,-1],[-41,-2],[-31,0],[-69,0],[-17,0],[-15,0],[-53,0],[-43,2],[-49,1],[-66,0],[-33,0],[-58,0],[-14,0],[-15,0],[-17,0],[-19,0],[-84,-2],[-50,-1],[-106,0],[-92,-4],[-22,-1],[-63,-3],[-114,-6],[-13,0],[-183,0],[-28,0],[-20,0],[-132,0],[-189,7],[-124,-1],[-155,-1],[-241,-2],[-86,0],[-253,-2],[-89,-1],[-49,0],[-92,-1],[-72,0],[-17,0],[-175,-1],[-31,-1],[-59,0],[-29,0],[-123,-12],[-255,3],[-112,1],[-57,0],[-75,1],[-80,1],[-30,0],[-149,-1],[-76,0],[-44,0],[-281,-2],[-63,0],[-122,-1],[-185,-1],[-24,0],[-41,-1],[-317,5],[-48,0],[-73,0],[-302,3],[-240,1],[-234,2],[-61,0],[-74,0],[-248,2],[-40,-6],[-31,1],[-13,1],[-18,-1],[-33,0],[-42,-1],[-58,0],[-143,-6],[-110,-4],[-54,-2],[-6,0],[-13,-1],[-79,-2],[-60,0],[-52,1],[-26,0],[-25,0],[-81,0],[-47,1],[-20,0],[-7,0],[-38,0],[-14,0],[-47,1],[-81,0],[-72,0],[-63,1],[-16,0],[-21,0],[-38,1],[-175,1],[-33,1],[-46,2],[-13,0],[-71,1],[-87,1],[-31,1],[-91,1],[-218,2],[-114,-1],[-27,1],[-16,-1],[-7,0],[-92,-2],[-74,-1],[-14,-1],[-20,0],[-37,0],[-15,-2],[-41,2],[-55,-2],[-15,0],[-21,-1],[-182,2],[-47,0],[-9,0],[-48,2],[-23,0],[-21,0],[-1,0],[-12,0],[-28,-1],[-7,0],[-13,1],[-59,1],[-16,0],[-31,0],[-126,-15]],[[62328,69857],[20,-40],[41,-140],[0,-3],[28,-92],[1,-1],[2,-16],[10,-69],[1,-5],[12,-74],[7,-38],[-9,-121],[-17,-47],[-102,-193],[-7,-14],[-61,-94],[-2,-4],[-77,-119],[-6,-9],[-86,-152],[-42,-42],[-116,-133],[-1,0],[-144,-241],[-19,-32],[-1,-18],[-6,-155],[2,-21],[10,-121],[43,-110],[24,-62],[1,-53],[3,-119],[-51,-216],[-26,-112],[-6,-26],[-23,-100],[-22,-30],[-45,-60],[-15,-21],[-65,-113],[-100,-106],[-75,-30],[-167,-92],[-23,-14],[-15,-9],[-4,-14],[-13,-45],[-38,-353],[-6,-49],[-4,-65],[-2,-18],[-1,-7],[-51,-198],[-38,-149],[-1,-4],[-8,-28],[-16,-30],[-26,-46],[-1,-2],[-5,-10],[-61,-257],[-63,-264],[-12,-32],[-26,-64],[-10,-27],[-65,-221],[-1,-5],[-3,-2],[-11,-19],[-25,-29],[-25,-19],[-14,-6],[-27,-10],[-16,-1],[-22,3],[-2,1],[-146,-18],[-173,-37],[-22,-4],[-34,-21],[-12,-6],[-29,-18],[-32,-16],[-33,-16],[-42,-22],[-149,-88],[-47,-37],[-82,-66],[-19,-15],[-6,-3],[-122,-62],[-51,-14],[-41,-11],[-120,44],[-33,53],[-1,1],[-56,43],[-195,178],[-17,14],[-18,16],[-59,22],[-7,3],[-34,13],[-17,-9],[-239,-138],[-64,-66],[-33,-24],[-114,-57],[-33,-16],[-14,-9],[-135,-92],[-18,-8],[-35,-15],[-14,-14],[-122,-120],[-206,-333],[-7,-11],[-13,-37],[-80,-236],[-2,-6],[-2,-9],[-15,-94],[-21,-110],[-5,-27],[0,-19],[-2,-142],[0,-7],[1,-4],[54,-135],[8,-19],[26,-60],[23,-54],[50,-128],[25,-47],[62,-160],[55,-212],[-13,-158],[-21,-248],[-95,-297],[-35,-63],[-5,-8],[-1,-4],[-78,-173],[-14,-64],[-19,-69],[-46,-163],[-21,-73],[-19,-68],[-74,-274],[-24,-187],[4,-67],[-5,-169],[-6,-237],[-4,-166],[20,-182],[-4,-29],[-26,-175],[-2,-17],[-12,-60],[-41,-198],[-88,-217],[-27,-39],[-14,-32],[-16,-24],[-15,-32],[-7,-35],[-10,-53],[-11,-83],[-4,-37],[-13,-57],[-7,-46],[0,-1],[-34,-109],[-27,-90],[-51,-73],[-52,-56],[-104,-97],[-111,-181],[-122,-383],[-28,-73],[-26,-69],[-15,-40],[-18,-47],[-11,-217],[0,-8],[-6,-63],[-8,-87],[-5,-15],[-25,-170],[0,-13],[-7,-71],[-14,-142],[-8,-89],[-8,-91],[-44,-269],[-9,-56],[-6,-36],[-1,-5],[-9,-57],[-2,-14],[-1,-10],[-3,-15],[0,-35],[0,-17],[0,-353],[1,-12],[34,-218],[29,-179],[31,-201],[13,-85],[7,-21],[42,-114],[16,-42],[6,-19],[4,-12],[6,-24],[3,-8],[6,-34],[3,-19],[7,-51],[7,-34],[19,-82],[12,-62],[4,-20],[0,-3],[3,-27],[1,-8],[8,-68],[0,-2],[0,-3],[0,-5],[1,-5],[0,-5],[1,-5],[1,-5],[0,-4],[5,-46],[1,-5],[13,-100],[3,-23],[28,-95],[34,-86],[38,-113],[190,-142],[2,-1],[2,-2],[78,-57],[117,-99],[49,-19],[59,-23],[33,-7],[8,-1],[1,-1],[185,-39],[26,-5],[122,-36],[265,-65],[32,-12],[1,-1],[28,-11],[127,-47],[60,-21],[37,-15],[30,-11],[7,-3],[16,-20],[53,-68],[11,-2],[7,-2],[26,-5],[15,2],[54,-12],[29,-5],[14,-4],[15,-4],[9,-2],[32,-6],[32,-6],[250,-47],[24,-46],[177,-264],[48,-113],[19,-19],[151,-154],[35,-36],[2,-1],[20,-41],[4,-7],[1,-1],[22,-30],[0,-1],[47,-107],[1,-3],[0,-2],[6,-99],[1,-16],[-1,-4],[-4,-22],[-46,-246],[-17,-86],[31,-160],[-2,-22],[-7,-86],[1,-14],[0,-40],[0,-16],[4,-247],[-8,-188],[-21,-537],[-16,-119],[-29,-161],[-15,-84]],[[59469,49663],[-20,0],[-16,0],[-2,0],[-43,-1],[-46,-1],[-277,-3],[-94,-1],[-193,-1],[-165,0],[-38,0],[-54,0],[-203,-1],[-15,0],[-103,-1],[-158,0],[-26,0],[-107,-1],[-171,0],[-91,-1],[-177,0],[-37,-3],[-71,-6],[-64,-2],[-25,-1],[-85,-3],[-31,0],[-76,0],[-20,0],[-25,0],[-25,0],[-147,0],[-29,0],[-20,0],[-32,1],[-113,1],[-23,0],[-38,1],[-23,0],[-50,2],[-131,4],[-66,0],[-46,0],[-67,-3],[-60,-2],[-69,-2],[-223,-8],[-165,6],[-10,20],[-12,21],[-19,11],[-15,23],[-12,37],[-6,26],[-9,29],[-12,20],[-10,26],[-18,16],[-13,14],[-14,32],[-19,32],[-15,23],[-12,14],[-15,26],[-106,0],[-13,6],[-19,15],[-20,11],[-19,-3],[-18,3],[-14,-6],[-14,-8],[-13,-6],[-33,0],[-11,17],[-13,14],[-24,37],[-21,32],[-21,42],[-8,25],[-8,22],[-12,33],[-23,35],[-25,28],[-15,19],[-9,23],[-20,20],[-14,12],[-12,17],[-19,52],[-17,26],[-13,43],[-1,29],[0,35],[-12,20],[-16,23],[-14,21],[-15,26],[-22,17],[-22,20],[-18,26],[-10,23],[-13,3],[-15,0],[-19,6],[-14,12],[-14,11],[-12,26],[-10,21],[-11,16],[-19,21],[-23,18],[-14,20],[-18,11],[-13,12],[-14,23],[-14,9],[-22,-6],[-13,-17],[-10,-18],[-7,-34],[-8,23],[-12,10],[-18,15],[-18,16],[-16,14],[-15,2],[-5,35],[7,23],[3,29],[-6,32],[-16,23],[-14,15],[-11,23],[-12,14],[-13,21],[-12,17],[-17,11],[-11,21],[-9,26],[-14,6],[-16,-9],[-12,-6],[-13,-1],[-27,20],[-44,-6],[-20,1],[-67,63],[-26,20],[-15,21],[-19,57],[-14,67],[-2,55],[-23,42],[-26,60],[19,26],[-17,24],[-25,19],[-27,11],[-16,0],[-27,-10],[-12,-41],[-12,-65],[9,-49],[12,-41],[-1,-73],[-2,-47],[12,-79],[17,-17],[7,-38],[-2,-39],[-17,-20],[-22,-10],[-15,-16],[-62,-30],[-120,-52],[-11,-73],[4,-61],[-17,-8],[-17,13],[-24,19],[-25,-8],[-31,-23],[-18,-6],[-26,-9],[-23,13],[-31,23],[-34,31],[-27,31],[-13,25],[-7,55],[14,54],[8,48],[-1,69],[-8,61],[-18,60],[-21,31],[-55,76],[-3,61],[-3,37],[-6,35],[-5,30],[-8,37],[6,35],[1,7],[3,51],[-15,19],[-46,16],[-19,9],[-15,0],[-16,13],[-27,14],[-23,10],[-30,4],[-25,-3],[-23,13],[-28,19],[-21,-19],[-22,-15],[-22,-9],[-30,5],[-9,42],[-19,40],[-52,31],[-26,23],[-12,13],[-31,23],[-14,0],[-23,-29],[-9,-22],[-25,-8],[-33,-37],[-26,4],[-15,-5],[-20,-20],[-17,-4],[-23,16],[-16,14],[-26,26],[-71,5],[-19,-9],[-19,-10],[-41,-25],[-104,48],[-16,23],[-48,-19],[-21,-3],[-14,1],[-9,21],[-12,18],[-19,18],[-16,0],[-29,47],[-20,33],[-11,42],[-11,39],[-28,17],[-12,-12],[-9,-37],[-26,-2],[-12,25],[-6,32],[-15,22],[-12,25],[-21,34],[-12,21],[-16,13],[-18,23],[-16,21],[-15,50],[-11,55],[-16,28],[-18,26],[-12,13],[-13,24],[-48,40],[-30,0],[-50,-10],[-18,11],[-13,9],[-12,44],[-15,13],[-32,11],[-51,23],[-31,35],[-6,49],[-21,32],[-7,36],[3,43],[-5,35],[-11,40],[-12,38],[-10,29],[1,34],[4,38],[-12,29],[5,35],[7,34],[0,29],[0,29],[-13,9],[-18,35],[-23,29],[-6,31],[-14,21],[-14,23],[-21,0],[-20,-12],[-30,3],[-16,3],[-32,26],[-27,12],[-85,-3],[-39,25],[-21,28],[-18,36],[-13,-5],[-29,4],[-17,6],[-25,10],[-21,11],[-22,22],[-16,10],[-21,-3],[-25,-18],[-21,6],[-33,27],[-26,-11],[-32,-6],[-29,4],[-28,52],[-2,30],[-15,46],[-9,28],[-14,16],[-27,24],[-21,21],[-18,40],[-7,55],[0,37],[1,31],[-7,38],[-19,16],[-22,40],[-23,40],[-4,51],[-7,25],[-17,46],[-5,31],[-20,6],[-17,-26],[-22,-30],[-32,-21],[-37,-3],[-24,4],[-31,14],[-30,6],[-21,11],[-33,29],[-65,37],[-17,-10],[-26,-48],[-14,-29],[-10,-19],[-41,-65],[0,-31],[-10,-56],[-17,-26],[-19,-27],[-41,-32],[-33,31],[-45,26],[-11,21],[-22,35],[-20,14],[-14,15],[-10,27],[-30,51],[-21,16],[-26,21],[-20,-25],[-16,-14],[-21,-16],[-8,-47],[-14,-14],[-28,-23],[-20,-8],[-18,13],[-44,73],[-18,30],[-25,23],[-17,22],[-12,10],[-13,12],[-13,14],[-14,17],[-8,23],[-3,37],[-17,25],[-19,25],[-14,17],[-17,3],[-17,-32],[-15,-3],[-20,4],[-30,-5],[-43,19],[-15,0],[-17,-9],[-18,-23],[-27,-14],[-15,0],[-22,34],[-26,32],[-11,17],[-17,-2],[-23,20],[-14,23],[-20,23],[-11,26],[-19,18],[-22,34],[-16,14],[-4,47],[4,68],[-2,32],[7,73],[-5,36],[-3,31],[5,35],[12,29],[-3,34],[11,49],[-22,22],[-18,14],[-17,17],[-15,20],[-16,27],[-14,35],[-3,30],[-1,36],[2,44],[-6,36],[-12,17],[-21,14],[-17,-1],[-17,4],[-26,8],[-98,31],[-24,11],[-19,6],[-34,12],[-6,31],[5,35],[13,91],[13,33],[10,19],[12,42],[20,49],[2,29],[-11,23],[-14,23],[-26,43],[-16,1],[-24,20],[-16,14],[-8,33],[-7,34],[-14,14],[-14,28],[-5,50],[-1,41],[-37,14],[-22,38],[-27,40],[-23,29],[-14,3],[-15,3],[-20,-6],[-17,12],[-14,14],[-15,9],[-22,26],[-22,-3],[-17,9],[-8,23],[-12,26],[-15,32],[-11,20],[-23,41],[-4,46],[-21,14],[-10,29],[-6,32],[-23,0],[-15,32],[-5,44],[-14,32],[-18,23],[-4,39],[4,35],[8,31],[13,18],[7,24],[8,28],[0,33],[-13,52],[-19,45],[-13,9],[-16,46],[-3,51],[-66,25],[-12,6],[-13,14],[-13,3],[-15,9],[-14,17],[-15,-3],[-13,12],[-16,6],[-16,0],[-15,-6],[-14,0],[-14,8],[-17,3],[-18,12],[-14,6],[-13,11],[-12,12],[-13,9],[-13,0],[-15,17],[-10,29],[-2,32],[-4,34],[-2,32],[-15,12],[-13,17],[-18,12],[-12,29],[-14,17],[-12,12],[-14,14],[-16,14],[-15,15],[-17,11],[-14,12],[-16,20],[-14,15],[-16,-9],[-12,-3],[-17,0],[-14,3],[-14,-6],[-10,-23],[-12,15],[-7,23],[-18,11],[-10,21],[-12,17],[-11,14],[-14,13],[-13,8],[-10,26],[-12,17],[-13,23],[-11,26],[-13,18],[-18,-3],[7,29],[-3,28],[-7,32],[-12,21],[-13,14],[-16,12],[-10,17],[-12,35],[-17,14],[-16,15],[-15,14],[-11,17],[-12,12],[-18,0],[-13,-12],[-15,6],[-11,23],[-5,32],[-6,35],[-11,26],[-4,35],[-8,31],[-1,29],[-3,29],[-14,18],[-14,23],[-9,26],[-11,26],[-10,20],[-13,20],[-12,23],[-14,24],[-14,23],[-9,32],[-10,23],[-9,29],[-6,28],[2,32],[7,26],[11,18],[15,23],[16,14],[-13,9],[-4,29],[-7,32],[-14,20],[-11,26],[-11,26],[-3,29],[-2,35],[-13,20],[-1,37],[2,35],[0,29],[-11,26],[-12,15],[-11,14],[-7,29],[-8,32],[-18,14],[-16,3],[-16,18],[-21,-6],[-14,-18],[-14,-5],[-15,5],[-17,18],[-12,20],[-9,23],[-13,17],[-14,-8],[-12,23],[2,32],[-3,29],[-9,29],[-15,11],[-10,23]],[[46469,59352],[14,32],[10,20],[6,35],[-3,35],[-6,32],[-10,20],[-14,11],[-13,6],[-12,15],[-7,31],[-10,26],[-9,27],[-1,28],[-14,26],[-1,32],[-11,26],[-2,29],[-3,32],[4,32],[1,35],[12,17],[22,20],[14,12],[12,6],[13,8],[9,23],[1,32],[-4,29],[-2,32],[-10,26],[-12,17],[-9,26],[-12,12],[-8,29],[-4,29],[-10,20],[-17,9],[-14,-9],[-13,0],[-14,6],[-14,0],[-9,23],[-3,29],[-8,26],[-3,35],[-12,14],[1,29],[9,26],[4,38],[-2,31],[3,29],[-6,49],[-13,15],[-9,23],[-6,29],[-8,23],[-8,29],[-6,26],[-9,23],[-13,12],[-13,17],[4,29],[5,32],[4,29],[-2,29],[5,29],[9,23],[3,35],[2,28],[-2,29],[-2,32],[15,6],[17,-3],[13,6],[15,14],[10,21],[8,29],[5,31],[-3,32],[7,29],[11,20],[8,38],[-4,32],[-9,26],[-11,23],[-8,35],[-4,34],[-9,26],[-5,29],[-9,26],[-13,23],[-6,26],[3,35],[2,29],[3,32],[12,11],[12,21],[4,29],[10,20],[10,20],[12,15],[9,26],[1,34],[2,29],[9,29],[10,20],[13,-2],[14,8],[17,6],[13,14],[17,18],[18,11],[18,-5],[17,17],[15,20],[14,20],[14,6],[18,-6],[13,0],[16,18],[13,17],[13,20],[15,26],[17,24],[15,8],[13,21],[13,17],[15,14],[15,21],[9,23],[9,32],[11,17],[11,23],[6,26],[-9,26],[-1,35],[9,26],[14,16],[16,-2],[13,-3],[13,-2],[13,-9],[16,-6],[21,-3],[15,-3],[17,0],[16,3],[9,23],[12,15],[17,6],[21,11],[15,17],[15,15],[16,11],[15,9],[14,9],[13,0],[9,26],[5,32],[2,32],[-5,31],[3,38],[2,35],[-3,34],[-17,26],[-11,32],[-9,26],[-13,23],[-14,9],[-10,20],[-18,12],[-19,6],[-22,3],[-15,11],[-14,12],[-14,17],[-18,14],[-16,29],[-14,18],[-7,32],[-5,31],[-10,36],[-7,31],[-11,17],[7,26],[13,15],[4,29],[-4,31],[8,27],[11,14],[12,17],[16,29],[7,32],[2,32],[4,29],[11,26],[4,29],[0,1],[-10,19],[-9,29],[-6,29],[-12,20],[-14,12],[-16,11],[-16,9],[-15,11],[-15,15],[-14,20],[-1,5],[-6,27],[-6,29],[-6,32],[-7,32],[-6,31],[-5,29],[-5,38],[0,29],[-2,29],[-6,37],[-6,32],[-13,15],[-18,5],[-14,9],[-13,12],[-13,-18],[-11,-23],[-23,-20],[-19,-6],[-21,-3],[-12,3],[-18,3],[-21,6],[-16,23],[0,38],[11,136],[13,17],[-1,29],[5,29],[-18,8],[-15,32],[-12,18],[-14,23],[-13,29],[-7,31],[-14,29],[-11,23],[-11,18],[-11,20],[-14,26],[-9,29],[11,29],[3,32],[-4,35]],[[46400,64640],[-5,31],[-9,23],[-4,29],[0,38],[53,81],[13,12],[16,0],[19,2],[12,6],[18,18],[12,14],[2,29],[0,46],[3,41],[13,26],[14,32],[11,14],[19,17],[14,26],[17,0],[19,3],[15,18],[14,17],[14,12],[17,8],[27,29],[14,23],[7,41],[-1,40],[-6,29],[10,20],[22,18],[12,6],[29,26],[11,34],[9,24],[13,31],[15,41],[11,40],[3,35],[1,32],[8,37],[11,32],[11,21],[10,19],[13,24],[14,26],[15,26],[13,29],[1,32],[8,34],[15,15],[19,20],[9,32],[0,32],[-1,61],[-13,8],[-15,3],[-14,3],[-20,14],[-17,26],[-9,29],[-9,38],[-13,-3],[-22,-6],[-15,-8],[-17,-9],[-12,-6],[-25,-14],[-16,-6],[-19,9],[-16,-9],[-19,-3],[-12,6],[-16,6],[-14,0],[-18,-21],[-18,-26],[-21,-11],[-19,0],[-21,-3],[-10,-18],[-18,-11],[-21,-15],[-13,-11],[-13,6],[-15,8],[-19,6],[-17,0],[-24,15],[-47,21],[-14,8],[-13,11],[-10,29],[-6,46],[3,47],[-3,40],[-14,17],[-17,24],[-23,0],[-13,23],[-17,-6],[-20,-6],[-19,3],[-17,12],[-13,23],[5,32],[3,28],[-10,21],[-18,11],[-13,6],[-14,-6],[-14,-11],[-14,3],[-16,0],[-18,5],[-16,15],[-14,-9],[-20,-3],[-13,5],[-16,4],[-16,11],[-16,12],[-14,15],[-14,8],[-12,23],[1,32],[3,38],[5,34],[0,38],[4,29],[10,26],[10,22],[5,27],[16,18],[11,20],[12,20],[6,26],[-3,29],[-2,29],[-14,40],[-10,18],[-8,23],[-5,29],[-6,32],[-6,29],[-6,40],[3,35],[-8,40],[-9,29],[-13,22],[-12,21],[-8,24],[-6,26],[-9,26],[-7,32],[-9,23],[4,29],[-2,29],[5,29],[3,28],[4,29],[-1,29],[-15,-8],[-14,-15],[-11,-23],[-14,-14],[-14,-12],[-10,-17],[-15,0],[-15,0],[-13,8],[-13,38],[-5,29],[-11,26],[-12,17],[-14,9],[-11,17],[-13,9],[-16,11],[-12,18],[-7,29],[4,29],[-9,26],[-1,29],[-3,29],[-2,28],[1,29],[-2,29],[-8,26],[-4,29],[-14,15],[-13,17],[-10,20],[-5,38],[9,23],[9,38],[7,29],[7,26],[5,31],[4,29],[5,32],[11,23],[13,15],[12,26],[12,14],[9,38],[8,26],[0,35],[8,29],[-5,28],[-11,24],[-14,17],[-11,14],[-14,12],[-16,14],[-16,12],[-14,12],[-4,29],[8,34],[11,15],[15,23],[11,17],[11,18],[10,20],[13,17],[13,9],[13,6],[9,29],[-8,28],[-4,32],[-4,29],[-5,29],[-8,23],[-1,41],[-1,32],[2,28],[9,29],[7,29],[6,26],[13,26],[13,3],[15,15],[17,8],[11,26],[8,27],[6,26],[6,26],[6,29],[8,26],[12,14],[3,32],[-2,35],[7,26],[-3,31],[-8,41],[-6,32],[-6,31],[-11,32],[-8,29],[1,35],[1,32],[10,29],[10,23],[13,11],[13,3],[15,12],[14,11],[13,21],[9,31],[15,15],[11,17],[6,32],[13,17],[7,27],[3,31],[1,32],[4,29],[11,15],[14,23],[12,14],[13,12],[1,29],[-1,31],[-2,32],[0,32],[0,29],[-1,29],[-1,35],[5,29],[10,23],[-1,29],[8,26],[12,8],[13,0],[15,12],[12,17],[13,21],[14,0],[14,-3],[15,5],[14,-14],[13,-6],[13,12],[4,28],[4,29],[12,15],[13,9],[14,8],[11,15],[12,20],[9,29],[7,29],[10,23],[9,23],[9,23],[9,24],[9,26],[13,24],[19,19],[17,40],[20,6],[13,12],[11,37],[7,41],[-1,5],[-11,45],[-12,22],[0,65],[6,26],[3,34],[-13,12],[-15,4],[-11,18],[-22,13],[-14,19],[-11,25],[-14,41],[-16,61],[-18,30],[1,41],[-8,77],[-16,56],[-27,22],[-33,33],[-14,31],[-60,62],[-56,75],[-41,82],[-4,52],[-2,49],[-21,59],[-30,62],[-3,61],[57,31],[14,9],[16,-7],[18,0],[21,14],[12,15],[21,11],[16,12],[16,7],[18,6],[58,-8],[13,5],[10,20],[8,36],[7,26],[12,32],[17,13],[14,10],[23,23],[19,12],[20,23],[20,52],[12,41],[16,60],[9,32],[31,18],[13,-3],[20,-8],[13,-7],[5,-2],[12,-6],[13,-3],[15,11],[32,26],[19,15],[12,29],[8,26],[8,37],[13,32],[15,12],[19,11],[17,18],[30,8],[17,3],[19,3],[26,0],[14,-9],[24,-26],[19,-21],[1,-2],[17,-14],[20,-15],[10,5],[7,4],[11,26],[16,17],[28,29],[22,41],[19,29],[20,23],[23,17],[17,12],[7,5],[9,6],[13,9],[20,12],[23,11],[16,0],[17,3],[18,0],[22,6],[17,-3],[23,-3],[16,-3],[21,0],[21,0],[23,15],[17,14],[14,9],[30,32],[17,14],[20,12],[16,26],[14,17],[11,17],[7,26],[12,12],[25,26],[16,12],[28,0],[31,3],[27,2],[26,-5],[1,-1],[22,-25],[20,-18],[14,-8],[23,-24],[17,-11],[16,17],[11,21],[16,28],[10,28],[5,13],[13,14],[23,12],[21,12],[26,28],[14,35],[6,26],[12,38],[12,40],[8,29],[13,12],[6,32],[0,40],[15,-6],[27,-8],[19,8],[17,18],[13,23],[16,20],[13,23],[20,21],[21,11],[23,-11],[25,28],[14,3],[12,29],[2,32],[0,35],[8,34],[14,29],[14,29],[15,18],[21,23],[19,17],[11,18],[6,34],[3,29],[-2,49],[-7,26],[16,32],[21,-8],[18,0],[17,8],[13,0],[12,3],[17,6],[12,-12],[15,-5],[18,-18],[14,-9],[21,-2],[18,8],[13,15],[17,46],[16,20],[22,18],[15,0],[14,8],[12,23],[6,38],[-3,35],[-14,0],[-12,3],[-13,11],[-24,18],[-9,23],[-7,34],[-10,21],[-16,26],[-12,29],[-8,34],[-6,38],[8,40],[0,38],[-8,23],[-11,41],[-12,29],[-14,8],[-13,15],[-18,26],[-10,26],[-16,35],[6,46],[0,34],[0,44],[-2,29],[-11,40],[0,32],[11,38],[17,40],[17,18],[10,20],[13,17],[18,18],[11,14],[18,17],[13,35],[-7,35],[6,37],[2,41],[14,11],[17,18],[13,0],[22,20],[20,17],[14,6],[12,-3],[17,12],[20,3],[14,3],[16,-9],[18,-3],[19,6],[14,11],[13,15],[17,17],[20,23],[-7,32],[4,35],[10,20],[15,29],[25,-6],[15,12],[14,-15],[19,-8],[21,-12],[26,-11],[17,8],[14,-3],[18,-14],[23,-15],[15,9],[13,12],[11,29],[13,20],[14,17],[17,6],[21,14],[18,21],[-2,49],[-10,49],[-4,32],[-9,26],[-8,32],[-5,29],[5,43],[-11,32],[-13,29],[-13,37],[-19,26],[-14,35],[-17,18],[-7,37],[-4,29],[-12,46],[-6,29],[-8,52],[-6,29],[-6,44],[14,29],[-3,34],[-11,21],[-20,14],[-17,-3],[-17,0],[-18,12],[-16,20],[-31,49],[-9,26],[-13,17],[-14,21],[-11,23],[-16,14],[-12,12],[-14,9],[-27,11],[-23,26],[-20,13],[-17,4],[-18,12],[-13,6],[-23,14],[-10,35],[-9,46],[-5,32],[-11,20],[-11,35],[-10,29],[-10,29],[-14,0],[-13,9],[-18,0],[-14,17],[-20,-3],[-15,-3],[-19,0],[-20,12],[-19,20],[-2,40],[-4,29],[-3,32],[26,182],[5,35],[9,35],[5,32],[1,29],[14,23],[8,26],[-4,34],[-13,21],[-18,34],[-16,6],[-27,23],[-9,23],[-13,24],[-17,5],[-30,35],[-18,29],[-6,26],[-5,41],[-3,28],[-15,35],[-22,38],[-6,49],[-10,38],[-13,14],[-8,26],[-12,23],[-7,26],[0,38],[-6,43],[-12,26],[-11,26],[-14,18],[-15,17],[-22,43],[-14,12],[-27,20],[-23,26],[-11,32],[-11,32],[-12,32],[-20,23],[-21,23],[-26,35],[-9,35],[-14,34],[-29,69],[-9,79],[4,86],[-27,47],[-47,104],[-19,66],[4,75],[17,44],[44,26],[50,14],[6,58],[11,46],[12,18],[-3,37],[-3,29],[2,26],[0,6],[4,35],[-14,23]],[[29999,78249],[29,-90],[13,-17],[7,-25],[4,-38],[11,-49],[2,-9],[11,-26],[53,-55],[0,-1],[23,-49],[0,-40],[0,-32],[3,-34],[-9,-25],[-6,-31],[-17,-83]],[[101,75432],[-2,-8],[-32,12],[-31,114],[-35,78],[-1,82],[40,-21],[27,-92],[52,-57],[9,-68],[-7,-6],[-10,-23],[-10,-11]],[[23337,72889],[-32,0],[-16,-1],[-30,0],[-59,1],[-92,2],[-53,-1],[1,-30],[0,-55],[1,-133],[0,-48],[1,-165],[-1,-98],[-6,-116],[0,-41],[1,-33],[0,-44],[1,-342],[0,-61],[1,-348],[0,-214],[1,-30],[0,-30],[5,-97],[0,-6],[-2,-209],[-8,-260],[-10,-282],[-3,-124],[-1,-17],[-1,-51],[-7,-181],[1,-198],[-1,-33],[-4,-147],[-7,-214],[1,-31],[1,-49],[1,-35],[0,-40],[3,-135],[2,-124],[1,-78],[9,-475],[3,-133],[1,-50],[2,-117],[19,-325],[5,-86],[-4,-221],[0,-54],[0,-54],[0,-1],[-2,-113],[-238,-2],[-197,-2],[-235,-2],[-457,10],[-491,10],[-275,2],[-371,-24],[-324,0],[-73,0],[-90,0],[-332,0],[-197,1],[-496,0],[-83,-8],[-150,0],[-478,-2],[-343,-1],[-3,0],[-620,11],[-26,0],[-55,0],[-1067,1],[-7,0],[-440,-6],[-110,0],[-4,411],[-274,1],[-156,0],[-162,0],[-115,-1],[-71,0],[-109,0],[-499,0],[-75,0],[-124,8],[-786,6],[-50,0],[-53,1],[-135,1],[-92,1],[-4,0],[-165,1],[-24,0],[-194,1],[-15,0],[-641,-1],[-290,0],[-405,-1],[-231,-1],[-596,-1],[-947,-1],[-51,-9],[-53,0],[-248,-1],[-30,0],[-435,-1],[-220,-1],[-285,-2],[-63,0],[-173,-1],[-88,-1],[-10,2],[-66,10],[-17,3],[-45,7],[-104,-1],[-266,-2],[-26,0],[-109,-1],[-65,-1],[-6,0],[-5,0],[-114,-1],[-66,0],[-192,-2],[-31,0],[-40,0],[-158,-2],[-15,0],[-4,0],[-128,-1],[-71,-1],[-37,0],[-19,19],[-247,-2],[-78,0],[-72,-1],[-66,0],[-123,-1],[-509,-4],[-50,-1],[-14,-1],[-24,3],[-60,-2],[-15,0],[-14,0],[-14,0],[-87,0],[-222,0],[-16,0],[-65,1],[-114,3],[-108,2],[-209,5],[-73,9],[-25,3],[-185,21],[-14,2],[-17,0],[-91,-4],[-180,-10],[-13,3],[-51,-2],[-53,-1],[-34,0],[-346,-10],[-29,-1],[-57,-2],[-71,-3],[-31,-1],[-44,-1],[-46,-2],[-25,-1],[-87,-5],[-206,-8],[-77,-3],[-103,-4],[-45,-2],[-52,-2],[-19,-4],[-48,-7],[-51,-5],[-103,0],[-152,2],[-149,3]],[[1860,67555],[-34,52],[-44,54],[-54,49],[-33,26],[-27,40],[-28,80],[-28,40],[-38,15],[27,74],[39,68],[-25,99],[-33,80],[-41,61],[-30,26],[-29,35],[16,17],[14,30],[18,8],[14,70],[-18,14],[10,69],[32,81],[30,10],[39,22],[-19,23],[-9,11],[-69,-29],[-27,-44],[-27,74],[-1,58],[-46,294],[-65,210],[-66,145],[-42,30],[-16,-5],[-26,13],[-14,86],[-11,34],[5,49],[-6,63],[-18,24],[-9,24],[-25,63],[37,39],[0,76],[-21,66],[-34,19],[-58,-22],[-51,67],[-8,34],[30,-16],[20,-17],[35,15],[26,46],[-23,-3],[-22,4],[0,45],[3,29],[-13,15],[-8,59],[21,45],[-4,32],[16,79],[1,123],[-18,34],[-11,41],[-5,30],[-4,46],[-38,71],[-18,0],[3,32],[6,62],[-2,53],[-11,22],[-24,81],[-2,7],[8,68],[22,170],[-9,116],[-5,117],[-8,56],[-31,67],[11,68],[10,20],[-7,58],[-13,30],[-9,37],[5,35],[0,56],[5,67],[-2,75],[-14,95],[-11,119],[-7,70],[-9,95],[-33,130],[-37,56],[-19,50],[-19,56],[7,108],[7,74],[-31,67],[-19,53],[2,94],[14,85],[0,157],[2,72],[3,83],[28,75],[44,63],[31,158],[-24,97],[-26,14],[-17,81],[-3,81],[3,56],[-4,61],[-16,62],[-22,82],[-37,106],[-29,47],[-38,54],[-36,33],[-43,57],[35,95],[-3,79],[-31,78],[-26,94],[-26,71],[-29,48],[-13,97],[-27,104],[-16,65],[-25,84],[-33,69],[-61,81],[-30,55],[-8,109],[13,87],[3,30],[18,42],[36,19],[56,73],[35,74],[20,56],[36,18],[25,79],[33,-1],[24,3],[12,2],[23,32],[33,53],[28,88],[29,118],[28,132],[18,74],[12,98],[20,103],[11,97],[26,174],[5,110],[-14,70],[-14,73],[-37,47],[-35,47],[0,75],[-8,41],[-25,79],[-28,89],[-22,54],[5,62],[11,21],[41,65],[2,80],[31,27],[44,33],[36,48],[34,43],[27,48],[25,61],[24,129],[13,75],[7,61],[5,84],[6,120],[-4,127],[-29,129],[-10,92],[-43,80],[0,93],[26,15],[33,37],[18,51],[-14,37],[-11,37],[32,46],[25,-57],[38,-4],[45,20],[41,17],[30,58],[22,108],[13,130],[18,89],[-4,157],[-35,100],[34,84],[47,59],[10,-49],[-4,-28],[-2,-13],[27,27],[6,47],[-20,72],[-28,46],[6,74],[-27,47],[-80,198],[-99,74],[-80,-85],[-55,0],[-122,124],[-30,141],[-44,131],[-25,15],[-49,66],[2,88],[-14,82],[-36,78],[-22,40],[-13,47],[-30,40],[-35,40],[-38,29],[-9,6],[-56,20],[-13,29],[2,32],[3,46],[-65,74],[12,148]],[[295,82287],[-30,-25],[-19,29],[-38,17],[-37,6],[4,36],[1,1],[7,9],[22,26],[28,44],[19,8],[39,-61],[17,-54],[-13,-36]],[[46400,64640],[-92,-1],[-25,1],[-189,1],[-405,2],[-158,2],[-107,0],[0,-29],[-477,5],[-141,2],[-37,0],[-20,0],[-36,1],[-270,3],[-18,0],[-72,1],[-90,1],[-149,2],[-31,0],[-16,0],[-59,1],[-19,0],[-123,1],[-291,4],[-456,5],[-15,0],[-101,1],[-443,4],[-454,4],[-1,-58],[-347,-10],[-26,-1],[-43,-1],[-44,-2],[-3,0],[-98,-3],[-4,0],[-16,0],[-69,-1],[-993,-5],[-331,-21],[-201,1],[-247,1],[-271,1],[-138,1],[-264,2],[-64,0],[-34,0],[-551,3],[-26,0],[-91,-2],[-65,-4],[-962,7],[-137,2],[-53,0],[-94,0],[-21,0],[-5,0],[-19,0],[-1,0],[-188,-14],[-103,-6],[-158,5],[-182,4],[-112,3],[-66,1],[-59,-2],[-44,-2],[-78,-3],[-14,-2],[-218,-10],[-1,0],[-60,-4],[-23,-1],[-16,1],[-89,-9],[-66,-6],[-244,-11],[-24,0],[-110,2],[-50,0],[-15,1],[-99,1],[-114,6],[-39,3],[-13,-1],[-17,0],[-98,-4],[-113,-4],[-161,4],[-16,2],[-48,1],[-35,2],[-26,1],[-54,-1],[-21,-2],[-62,-1],[-41,1],[-37,0],[-17,0],[-81,0],[-22,0],[-42,0],[-17,0],[-22,0],[-37,0],[-58,0],[-22,0],[-37,1],[-17,0],[-32,1],[-86,2],[-256,6],[-1,0],[-14,0],[-15,0],[-5,0],[-37,0],[-86,0],[-37,3],[-26,0],[-21,0],[-14,0],[-47,0],[-47,0],[-13,0],[-18,6],[-62,-3],[-4,0],[-41,3],[-14,-3],[-6,1],[-9,2],[-56,1],[-66,2],[-19,0],[-48,0],[-69,3],[-26,0],[-32,0],[-1,0],[-41,1],[-37,2],[-38,0],[-15,0],[-49,2],[-23,1],[-43,2],[-15,0],[-14,0],[-25,0],[-19,0],[-15,3],[-29,-3],[-20,-2],[-21,-2],[-2,1],[-12,3],[-42,3],[-60,0],[-37,0],[-33,0],[-24,-2],[-21,5],[-54,0],[-81,0],[-27,0],[-26,0],[-34,0],[-36,3],[-18,3],[-19,2],[-21,-2],[-27,0],[-30,6],[-24,-3],[-15,1],[-28,1],[-22,1],[-13,0],[-21,-3],[-28,3],[-14,0],[-22,0],[-18,0],[-13,0],[-24,3],[-20,0],[-12,0],[-6,0],[-16,0],[-20,3],[-28,-3],[-20,0],[-25,3],[-43,0],[-69,0],[-7,0],[-17,0],[-19,0],[-20,1],[-13,2],[-7,1],[-9,0],[-44,-1],[-3,-1],[-18,0],[-28,0],[-24,0],[-28,0],[-13,0],[-15,0],[-24,3],[-45,-3],[-33,3],[-35,0],[-35,3],[-32,-3],[-13,0],[-14,0],[-17,0],[-24,3],[-19,0],[-14,0],[-35,0],[-53,0],[-15,0],[-17,0],[-24,2],[-10,1],[-13,0],[-23,-3]],[[73655,69906],[-22,0],[-14,-1],[-17,2],[-3,0],[-22,1],[-29,1],[-18,0],[-27,1],[-99,0],[-81,-1],[-76,-1],[-49,0],[-115,-2],[-560,-6],[-159,-1],[-261,0],[1,-104],[1,-100],[1,-233],[-207,1],[-65,0],[-13,-850],[-183,1],[-87,1],[0,-231],[0,-195],[-223,-1],[-8,0],[-46,-1],[-19,0],[-256,-1],[-1,-181],[0,-135],[0,-109],[-32,5],[-2,0],[-240,-12],[0,-369],[-1,-53],[-1,-217],[0,-165],[0,-44],[0,-168],[1,-249],[0,-233],[1,-98],[1,-201],[0,-35],[-4,-440],[-1,-232],[0,-11],[-6,0],[-75,0],[-126,-1],[-67,-1],[0,-55],[0,-37],[-1,-84],[1,-78],[-1,-373],[-1,-101],[0,-17],[0,-84],[-23,0],[-2,0],[-40,-1],[-90,0],[-62,-6],[-60,-1],[0,-630],[0,-10],[0,-208],[-134,2],[-4,1],[-138,2],[1,-301],[0,-16],[1,-99],[-44,1],[-99,2],[-131,1],[2,-52],[-1,-587],[0,-133],[-1,-397],[0,-19],[-1,-492],[-89,0],[-113,0],[-73,-22],[-1,-366],[0,-115],[-1,-312],[0,-64],[0,-77],[0,-144],[0,-10],[0,-146],[-112,1],[-5,0],[-57,0],[-96,-5],[0,-18],[0,-30],[0,-108],[0,-257],[-7,0],[-56,0],[-67,-1],[-58,0],[-192,-1],[-59,1],[-79,1],[-132,2],[-160,2],[2,-392],[-275,4],[1,-45],[2,-368],[-86,0],[-186,2],[1,-362],[1,-57],[-41,1],[-85,4],[-150,5],[0,-90],[-12,-321],[-85,-1],[-75,0],[-45,-1],[-51,0],[-1,-98],[-10,-320],[-129,1],[-138,2],[-2,-54],[0,-143],[4,-220],[-269,-1],[-1,-106],[-2,-72],[1,-86],[0,-539],[-3,-816],[-5,-878],[-307,0],[-26,0],[-98,-2],[-234,-4],[-151,-2],[-363,-6],[-186,-7],[-183,-3],[-41,-1],[-184,-4],[-138,-3],[-132,-5],[-5,0],[-134,-5],[-273,-9],[-72,-2],[-75,-2],[-61,-2],[-16,0],[-27,-1],[-21,0],[-47,-1],[-204,-9],[-26,-1],[-27,0],[-43,-2],[-331,-11],[-374,-13],[-141,-4],[-448,-33],[0,-350],[0,-472],[-153,-6],[-21,1],[-95,-2],[-2,-422],[-272,0],[-1,-234],[-2,-305],[1,-300],[-272,-3],[0,-40],[-2,-391],[-267,-18],[-4,-309],[-1,-59],[0,-34],[-37,-1],[-106,-3],[-23,-1],[-108,-3],[0,-280],[0,-131],[-215,-7],[-15,-1],[-46,-4],[1,-168],[0,-150],[0,-72],[1,-37],[0,-139],[1,-263],[0,-89],[0,-42],[0,-48],[1,-199],[1,-462],[19,-3],[-6,-157],[-3,-68],[-5,-133],[-2,-101],[-2,-106],[-2,-103],[-2,-248],[-1,-7],[0,-24],[0,-32],[-1,-99],[0,-31],[-1,-50],[0,-30],[-16,-18],[-12,-13]],[[60584,48446],[-148,191],[-3,4],[-10,0],[-110,3],[-43,-5],[-126,-30],[-26,-7],[-76,-18],[-113,-27],[-67,-16],[-15,9],[-160,94],[-15,9],[-46,149],[-12,40],[-6,21],[-87,208],[-54,446],[6,85],[-4,61]],[[3488,61573],[-28,-19],[-45,15],[14,56],[26,18],[10,39],[29,4],[18,42],[3,-94],[-27,-61]],[[22565,59612],[-18,0],[-13,0],[-90,-1],[-55,12],[-131,1],[-176,1],[-94,5],[-55,3],[-62,-8],[-106,-2],[-43,0],[-188,4],[-191,7],[-30,7],[-170,6],[-157,0],[-69,0],[-122,-5],[-19,0],[-47,1],[-177,6],[-191,-7],[-376,-7],[-265,1],[-232,2],[-288,1],[-60,0],[-652,1],[-129,0],[-383,0],[-32,0],[-338,0],[-337,0],[-728,1],[-96,0],[-62,0],[-258,0],[-35,0],[-79,0],[-39,-3],[0,-154],[0,-28],[0,-969],[0,-666],[0,-613],[0,-7],[0,-110],[0,-39]],[[15972,57052],[-358,1],[-77,0],[-148,0],[-381,1],[-591,6],[-45,3],[-93,0],[-367,-1],[-316,-6],[-68,0],[-165,-1],[-204,-1],[-337,4],[-276,0],[-19,0],[-214,1],[-109,0],[-168,0],[-57,0],[-174,1],[-54,0],[-310,0],[-146,1],[-48,0],[-20,0],[-248,0],[-521,1],[-128,0],[-134,1],[-90,0],[-326,0],[-147,14],[-139,-3],[-226,-3],[-30,-1],[-190,-3],[0,126],[0,46],[0,34],[0,3],[0,85],[-1,52],[0,71],[0,42],[-171,-1],[-27,-1],[-38,0],[-100,-1],[-109,-1],[-3,0],[-111,-1],[-204,-3],[-246,-1],[-584,-2],[-30,0],[-66,-1],[-64,0],[-85,0],[-46,-2],[-47,0],[-1,0],[-5,0],[-262,0],[-1,0],[-154,1],[-64,-1],[-185,-4],[-258,5],[-65,1],[-53,1],[-64,-3],[-64,-4],[-20,2],[-135,10],[-74,-1],[-92,-2],[-7,0],[-9,0],[-86,-2],[-18,0],[-12,0],[-24,-1],[-75,-1],[-101,1],[-32,0],[-61,8],[-67,10]],[[5127,57532],[-15,125],[-7,60],[-36,215],[-10,137],[-4,114],[-8,96],[-12,80],[-11,103],[-4,114],[-15,128],[-7,57],[-11,86],[-12,97],[-12,104],[-10,85],[-14,90],[-9,64],[-16,82],[-9,67],[-24,60],[-14,52],[-12,104],[-16,109],[-10,105],[-13,137],[-6,62],[-14,100],[-14,112],[-11,100],[-19,43],[-11,53],[-9,65],[-16,79],[-12,90],[-8,107],[-19,104],[-24,86],[-6,83],[-17,86],[-29,136],[-18,70],[-25,87],[-16,74],[-26,93],[-33,77],[-17,65],[-15,66],[-21,81],[-20,81],[-13,51],[-4,51],[-14,98],[-4,97],[-5,69],[-9,75],[-15,74],[-7,72],[0,69],[-4,16],[-20,70],[-11,109],[-10,94],[-4,84],[-8,73],[-12,82],[-16,92],[-26,143],[-40,161],[-25,86],[-21,30],[10,25],[17,12],[-29,32],[-69,27],[-41,23],[-30,32],[-30,54],[-37,44],[-2,30],[-13,15],[-14,17],[-2,35],[-21,116],[-22,56],[-34,33],[-35,-42],[-43,-12],[-11,38],[-30,37],[-39,25],[-47,-41],[-50,-1],[-50,45],[28,27],[45,5],[39,36],[6,37],[-15,40],[-9,29],[-12,17],[-15,44],[-10,65],[-28,84],[-25,101],[-16,102],[-6,64],[2,74],[-8,138],[-1,25],[-14,98],[-26,177],[-17,98],[-14,61],[-17,60],[-31,84],[-12,8],[-19,24],[-18,-18],[-15,-13],[6,32],[4,46],[-12,17],[-62,38],[-31,8],[-31,4],[-63,-17],[-44,-2],[-8,39],[-28,62],[-19,23],[-10,31],[-39,84],[-60,39],[-48,9],[-61,11],[-62,20],[19,90],[4,65],[-6,66],[-64,92],[-38,21],[-49,-12],[8,27],[5,50],[-14,58],[-29,51],[-53,70],[-1,130],[-7,100],[-3,51],[-11,21],[-31,44],[-42,43],[-28,-22],[-32,-27],[-41,38],[-35,83],[-21,93],[-33,48],[-38,32],[-32,21],[-28,31],[-55,25],[-35,-2],[-32,-30],[-18,-90],[-26,0],[-24,-76],[-30,19],[-21,-5],[-25,-24],[-28,13],[46,57],[-16,44],[1,36],[-9,97],[-12,17]],[[98398,72322],[0,-2],[0,-33],[-1,-40],[0,-289],[-3,-887],[-1,-66],[0,-6],[-1,-87],[0,-57],[0,-10],[0,-84],[-2,-413],[0,-66],[0,-104],[-1,-154],[1,-237],[1,-428],[0,-213],[0,-84],[0,-194],[-1,-126],[0,-13],[0,-333],[0,-77],[0,-118],[-1,-240],[0,-31],[0,-147],[0,-69],[0,-7],[-1,-83],[0,-177],[0,-47],[-2,-32],[0,-41],[1,-94],[1,-64],[0,-111],[1,-63],[1,-179],[-2,-471],[1,-189],[1,-109],[2,-103],[2,-79],[-1,-180],[0,-157],[0,-225],[0,-114],[0,-450],[0,-44],[0,-35],[0,-61],[-2,-113],[-4,-237],[0,-47],[-2,-117],[0,-31],[3,-286],[3,-101],[2,-38],[-1,-29],[5,-189],[1,-65],[0,-20],[0,-102],[0,-243],[-1,-204],[-1,-41],[0,-35],[2,-186],[1,-76],[1,-71],[-1,-31],[-1,-45],[-1,-34],[1,-33],[0,-12],[0,-21],[0,-106],[-1,-86],[0,-39],[1,-52],[1,-92],[1,-32],[0,-33],[0,-32],[-1,-32],[2,-83],[0,-52],[1,-33],[2,-193],[-1,-83],[-1,-50],[0,-31],[0,-50],[0,-48],[1,-49],[-1,-30],[0,-874],[3,-50],[1,-672],[0,-83],[1,-317],[1,-173],[0,-133],[-1,-76],[-1,-55],[-3,-208],[1,-62],[-1,-59],[2,-271],[0,-59],[3,-192],[5,-216],[0,-35],[0,-70],[0,-68],[0,-98],[0,-15],[0,-32],[4,-625],[3,-227],[0,-119],[0,-40],[0,-30],[0,-229],[0,-229],[0,-68],[0,-122],[0,-203],[0,-558],[0,-3],[0,-55],[0,-21],[-1,-350],[1,-247],[0,-32],[0,-171],[0,-54],[1,-157],[1,-184],[-1,-79],[-2,-196],[-2,-215],[0,-32],[4,-109],[0,-43],[0,-35],[0,-68],[-1,-130],[1,-268],[0,-19],[0,-130],[0,-291],[0,-133],[0,-286],[0,-165],[0,-220],[0,-178],[-1,-78],[0,-135],[-1,-185],[1,-92],[0,-145],[-1,-107],[0,-223],[0,-49],[0,-79],[0,-174]],[[98419,49580],[-62,0],[-161,5],[-26,0],[-56,-1],[-32,1],[-159,0],[-79,1],[-39,0],[-239,0],[-25,0],[-120,-1],[-86,0],[-43,-1],[-2,0],[-18,0],[-36,-1],[-8,0],[-10,0],[-23,0],[-105,0],[-72,0],[-18,0],[-118,3],[-68,0],[-72,0],[-112,1],[-110,1],[-77,0],[-84,0],[-30,0],[-21,1],[-138,1],[-100,1],[-183,1],[-130,-2],[-16,5],[-25,0],[-343,-1],[-40,-1],[-91,-5],[-219,5],[-73,2],[-21,0],[-65,1],[-44,-2],[-46,1],[-42,0],[-183,0],[-51,1],[-112,-2],[-20,0],[-19,-1],[-10,0],[-12,-1],[-16,-1],[-24,-1],[-31,-1],[-32,-1],[-76,1],[-146,0],[-277,5],[-249,-4],[-22,-1],[-55,-2],[-221,1],[-54,-1],[-19,0],[-198,0],[-21,0],[-41,0],[-195,0],[-79,0],[-18,-1],[-332,3],[-411,4],[-80,0],[-18,1],[-56,0],[-13,0],[-8,1],[-7,0],[-7,0],[-58,1],[-335,2],[-14,2],[-255,-2],[-92,0],[-137,1],[-89,0],[-208,3],[-74,1],[-15,0],[-30,0],[-84,0],[-45,-1],[-18,0],[-109,-2],[-40,0],[-188,0],[-289,1],[-177,0],[-14,0],[-63,1],[-211,2],[-283,4],[-86,1],[-141,-3],[-47,4],[-33,0],[-49,2]],[[88435,49612],[1,308],[0,72],[0,45],[1,156],[0,43],[0,43],[0,69],[1,356],[1,409],[0,206],[0,14],[1,166],[0,7],[1,558],[0,72],[0,217],[0,48],[0,42],[0,345],[-1,102],[-1,34],[3,48],[3,88],[0,329],[0,159],[0,7],[0,39],[0,205],[0,129],[1,242],[0,108],[1,351],[0,83],[0,111],[1,189],[0,4],[0,73],[1,99],[-1,38],[4,701],[3,435],[2,177],[0,248],[1,1046],[0,194],[0,57],[0,22],[0,14],[1,316],[0,419],[1,368],[0,19],[0,42],[0,575],[26,2],[1,161],[0,48],[0,85],[0,130],[1,431],[0,168],[0,166],[0,19],[0,29],[-1,39],[-1,167],[-1,214],[1,179],[0,16],[-6,249],[0,209],[0,119],[0,84],[1,196],[0,174],[0,50],[0,156],[1,186],[0,60],[0,30],[-1,57],[0,77],[-1,129],[0,108],[-1,105],[0,57],[0,294],[1,298],[-1,121],[0,167],[-2,63],[1,112],[-1,129],[0,162],[-3,517],[0,87],[0,31],[-2,208]],[[73768,69372],[-1,-138],[0,-8],[0,-81],[-1,-54],[0,-102],[-2,-291],[-1,-282],[-1,-140],[-1,-75],[-1,-126],[0,-30],[-1,-241],[0,-43],[-1,-172],[-1,-55],[-3,-148],[-2,-252],[0,-88],[-1,-152],[-2,-379],[0,-418],[-1,-45],[-1,-382],[-2,-422],[-2,-418],[0,-422],[-2,-579],[0,-59],[-2,-202],[1,-52],[-2,-52],[0,-106],[0,-109],[0,-107],[-1,-48],[0,-22],[1,-65],[-3,-92],[0,-36],[1,-101],[-1,-54],[-1,-42],[0,-394],[-1,-235],[1,-20],[0,-28],[-1,-83],[-1,-54],[-3,-238],[-1,-336],[0,-46],[-2,-193],[-1,-76],[-1,-190],[-1,-70],[-2,-565],[-9,-447],[0,-254],[0,-27],[0,-66],[0,-258],[0,-1],[0,-77],[0,-84],[0,-33],[0,-141],[0,-417],[0,-20],[-1,-103],[0,-112],[0,-44],[0,-147],[0,-263],[0,-112],[1,-192],[-1,-118],[2,-447],[0,-75],[4,-177],[-3,-378],[-1,-295],[3,-35],[-2,-250],[0,-7],[-4,-158],[0,-123],[-4,-412],[-1,-167],[-7,-426],[3,-205],[0,-30],[1,-45],[1,-86],[0,-15],[0,-17],[2,-118],[0,-8],[-1,-178],[-2,-364],[-1,-85],[0,-48],[-3,-49],[0,-128],[-4,-251],[1,-57],[0,-1472],[0,-40],[0,-43],[-2,-983],[-2,-423]],[[73691,49643],[0,-156],[-1,-179],[-2,-77],[0,-213],[-1,-154],[0,-55],[-1,-424],[-2,-193],[-1,-224],[-2,-461],[-1,-30],[0,-8],[0,-22],[-1,-328],[-5,-421],[0,-57],[0,-156],[-4,-211],[1,-412],[1,-170],[0,-270],[-1,-364],[-1,-106],[-1,-43],[0,-47],[2,-280],[0,-41],[0,-9],[0,-13],[1,-45],[-1,-49],[0,-67],[0,-35],[0,-37],[0,-125],[-1,-424],[0,-249],[0,-35],[-3,-140],[0,-55],[0,-89],[-1,-168],[-2,-98],[0,-68],[-1,-95],[0,-70],[0,-44],[0,-80],[0,-75],[-1,-219],[-1,-175],[0,-32],[-1,-191],[-1,-131],[-1,-32],[0,-75],[1,-154],[0,-65],[1,-195],[1,-52],[-1,-38],[0,-127],[-1,-151],[0,-37],[-2,-439],[-1,-138],[-1,-264],[-2,-440],[-23,0],[-39,0],[-74,-1],[-101,3],[-36,-1],[-107,0],[-78,0],[-357,2],[-233,5],[-38,0],[-130,3],[-15,0],[-189,3],[-72,1],[-55,0],[-81,1],[-7,0],[-12,1],[-118,5],[-48,-1],[-19,1],[-22,2],[-50,0],[-14,0],[-30,1],[-11,0],[-63,-1],[-28,4],[-23,-1],[-24,-1],[-50,1],[-34,1],[-123,0],[-16,-1],[-124,1],[-91,-1],[-33,0],[-21,1],[-96,-1],[-122,1],[-16,1],[-154,1],[-120,1],[-71,-1],[-77,-2],[-4,0],[-177,3],[-103,1],[-313,-1],[-69,0],[-329,-1],[-14,1],[-31,1],[-67,1],[-151,0],[-121,1],[-134,0],[-89,0],[-79,-1],[0,-159],[-1,-46],[0,-94],[-1,-147],[0,-165],[0,-36],[-1,-167],[-1,-274],[0,-82],[0,-94],[0,-31],[2,-909],[0,-43],[-4,-430],[-1,-85],[0,-20],[-1,-188],[1,-219],[1,-69],[1,-146],[0,-38],[-1,-177],[-2,-672],[1,-359],[0,-53],[-4,-346],[-1,-18]],[[68715,34482],[4,-744],[1,-183],[3,-567],[0,-99],[1,-72],[0,-44],[-92,-15],[-519,24],[-214,10],[-189,9],[-40,1],[-21,1]],[[67649,32803],[22,47],[25,81],[-8,85],[-29,92],[-45,43],[-27,29],[-54,75],[-43,31],[-103,243],[-51,86],[-38,67],[-39,113],[-16,47],[-31,66],[-59,54],[-46,56],[-25,46],[-44,54],[-35,17],[-47,24],[-29,12],[-49,17],[-26,8],[-20,-18],[-24,-27],[-18,-17],[-23,-41],[-31,-69],[-42,-89],[-61,-170],[-113,-219],[-49,-78],[-111,-184],[-183,-386],[-89,-214],[-17,-53],[-63,-102],[-100,-128],[-72,-117],[-73,-118],[-27,-42],[-62,-59],[-65,-73],[-22,-23],[-55,-61],[-30,-32],[-59,-64],[-46,-28],[-54,-20],[-80,-29],[-64,-33],[-55,-17],[-49,-7],[-57,-4],[-64,12],[-60,41],[-89,79],[-70,53],[-40,22],[-42,11],[-96,19],[-80,22],[-66,-1],[-61,-11],[-49,-18],[-53,-15],[-59,-42],[-67,-55],[-61,-50],[-19,-16],[-72,-75],[-65,-68],[-43,-36],[-34,-2],[-54,-12],[-28,-3],[-78,0],[-73,-13],[-49,-16],[-86,-11],[-63,-27],[-71,-23],[-44,-18],[-44,-18],[-39,-12],[-14,-4],[-51,-21],[-71,-27],[-53,-24],[-61,-33],[-55,-16],[-62,-25],[-25,6],[-32,-4],[-16,0],[-26,5],[-40,7],[-86,10],[-83,15],[-145,8],[-36,18],[-35,14],[-47,18]],[[62281,31338],[-27,22],[-24,13],[-45,24],[-35,10],[-78,20],[-56,20],[-35,27],[-50,67],[-49,108],[-42,97],[-18,45],[-3,8],[-28,69],[-26,82],[-8,48],[-9,61],[-19,55],[-32,64],[-22,31],[-70,67],[-44,45],[-26,41],[-17,36],[-19,40],[-18,37],[-23,42],[-40,61],[-32,52],[-29,78],[-18,84],[-7,54],[-8,43],[-23,78],[-17,56],[-10,40],[-15,58],[-15,41],[-11,33],[-63,250],[-24,98],[-10,35],[-14,48],[-25,90],[-22,78],[-9,37],[-45,203],[-5,26],[-2,30],[-1,149],[3,129],[2,111]],[[61018,34479],[12,99],[10,83],[5,57],[3,54],[-2,74],[-1,29],[2,54],[4,34],[6,31],[22,55],[24,50],[26,43],[32,52],[27,38],[42,49],[37,44],[30,39],[20,31],[22,40],[20,40],[21,46],[20,43],[13,33],[9,29],[16,54],[10,49],[14,58],[20,53],[38,122],[62,217],[12,45],[6,27],[4,70],[5,74],[10,159],[4,73],[-4,48],[-4,31],[-4,33],[-13,51],[-22,66],[-23,63],[-15,47],[-17,45],[-27,58],[-27,54],[-20,49],[-29,77],[-17,44],[-13,31],[-24,49],[-32,63],[-25,46],[-24,48],[-22,56],[-20,53],[-20,51],[-15,38],[-33,80],[-24,52],[-14,45],[-9,46],[-5,46],[-2,48],[0,41],[2,50],[1,37],[0,40],[-1,57],[-1,59],[-3,52],[-1,39],[-2,41],[-1,30],[-1,38],[0,35],[2,76],[-1,41],[0,53],[-1,90],[-2,55],[2,31],[2,34],[5,48],[-1,64],[1,51],[8,203],[1,61],[3,33],[0,52],[0,32],[0,39],[1,40],[9,125],[3,41],[-3,68],[-2,30],[-3,37],[-6,48],[-11,47],[-4,41],[0,34],[5,32],[6,35],[1,30],[5,28],[-3,49],[-8,41],[0,45],[-5,33],[-4,44],[0,45],[-6,35],[-19,42],[-10,24],[-15,40],[-14,56],[-36,135],[-33,108],[-11,32],[-12,40],[-12,37],[-10,20],[-11,31],[-30,82],[-54,184],[-13,42],[-11,36],[-20,60],[-17,53],[-15,52],[-5,32],[-11,33],[-6,42],[-9,33],[-18,35],[-6,37],[-11,42],[-13,35],[-10,32],[-4,14],[-11,46],[-5,29],[-4,28],[-4,41],[0,35],[-2,39],[-1,32],[3,41],[7,34],[4,38],[1,29],[0,29],[-1,32],[-4,40],[-8,35],[-7,26],[-12,35],[-8,23],[-9,26],[-6,29],[-2,34],[-1,18],[-55,155],[-3,67],[-11,233],[-31,197],[-28,84],[-48,142],[-28,73],[-221,585],[29,305],[211,779],[19,53],[10,24],[19,46],[20,53],[162,437],[26,148],[2,28],[1,25],[1,19],[-1,6],[-34,327],[-4,25],[-4,17],[-95,516],[49,310],[5,32],[34,214],[12,75],[5,64],[-15,419],[9,42],[7,72],[-4,75],[-2,50],[-9,27],[-44,139]],[[88435,49612],[-127,-1],[-47,-2],[-78,-1],[-381,-3],[-35,2],[-673,5],[-113,1],[-13,0],[-26,-1],[-129,1],[-118,1]],[[86695,49614],[-38,0],[-174,2],[-19,0],[-51,0],[-158,1],[-82,4],[-32,-1],[-363,-4],[-157,-2],[-129,-2],[-2,0],[-29,0],[-77,3],[-85,3],[-6,0],[-39,1],[-27,1],[-4,1],[-14,0],[-36,0],[-19,0],[-12,0],[-59,1],[-28,0],[-270,7],[-172,4],[-35,1],[-28,4],[-23,-1],[-42,0],[-371,-2],[-25,0],[-250,0],[-306,0],[-20,0],[-29,0],[-271,1],[-45,0],[-184,0],[-160,0],[-14,-1],[-13,0],[-62,0],[-30,0],[-15,0],[-18,-1],[-82,0],[-48,-1],[-139,-1],[-217,-2],[-21,-3],[-74,2],[-227,-2],[-225,-2],[-94,-1],[-129,-2],[-27,0],[-116,-3],[-18,-1],[-108,0],[-87,0],[-72,-1],[-270,3],[-197,2],[-65,1],[-251,-2],[-40,0],[-198,3],[-75,1],[-30,1],[-68,3],[-101,4],[-71,0],[-61,0],[-401,0],[-15,0],[-76,0],[-271,-2],[-200,0],[-115,-1],[-219,-2],[-64,1],[-208,0],[-18,0],[-196,2],[-86,1],[-255,2],[-64,-2],[-1,0],[-2,0],[-94,0],[-112,1],[-197,1],[-73,0],[-212,-1],[-64,0],[-111,-2],[-87,0],[-74,-1],[-41,-1],[-107,-2],[-37,0],[-64,-1],[-38,-1],[-85,-1],[-105,-1],[-16,1],[-64,0],[-16,1],[-210,2],[-98,2],[-42,0],[-99,1],[-17,-1],[-22,-1],[-201,3],[-56,1],[-17,6],[-51,0],[-132,0],[-69,0],[-147,1],[-107,1],[-13,0],[-260,3],[-151,2],[-119,1],[-14,0],[-177,-2],[-80,-1]],[[28117,53749],[-936,3],[-22,0]],[[27067,53751],[-466,3],[-55,0],[-853,7],[-515,4],[-240,2]],[[24938,53767],[5,42],[0,391],[1,69],[0,108],[2,134],[-2,226],[0,50],[0,125],[0,31],[0,153],[1,247],[-1,159],[0,185],[0,1],[0,304],[0,88],[0,17],[0,70],[0,245],[1,93],[0,2],[5,39],[0,49],[2,531],[-162,10],[-23,1],[-39,3],[-66,4],[-25,1],[-18,2],[-21,1],[-16,2],[-16,1],[-16,2],[-34,2],[-33,3],[-21,1],[-12,0],[-22,-4],[-22,0],[-18,6],[-48,1],[-43,1],[-43,0],[-22,1],[-15,0],[-74,0],[-107,1],[-16,0],[-11,0],[-25,0],[-13,2],[-72,4],[-143,4],[-75,3],[-62,2],[-17,1],[-16,0],[-65,3],[-43,1],[-13,1],[-23,1],[-21,-1],[-103,4],[-34,0],[-25,1],[-104,1],[-57,1],[-25,0],[-31,1],[-113,-14],[-27,-2],[-121,-14],[-20,-2],[-133,-18],[-116,-15],[-27,-3],[-96,1],[-86,1],[-67,1],[-18,0],[-38,0],[-23,0],[-42,0]],[[46469,59352],[-23,6],[-14,0],[-14,-14],[-11,-26],[-3,-29],[-4,-41],[-3,-32],[-4,-31],[-14,-3],[-16,8],[-13,15],[-15,6],[-27,8],[-13,6],[-15,9],[-15,8],[-13,9],[-13,12],[-19,17],[-12,17],[-19,3],[-23,6],[-12,0],[-12,-20],[-9,-23],[-15,-18],[-3,-32],[-12,-8],[-14,3],[-14,14],[-12,17],[-17,6],[-21,9],[-14,14],[-12,18],[-11,17],[-17,-3],[-14,-3],[-13,-17],[-10,-23],[-15,-9],[-14,-9],[-27,-14],[-14,-3],[-19,-3],[-18,-3],[-19,-11],[-15,-9],[-12,-26],[-14,-14],[-13,-9],[-15,-3],[-15,3],[-2,-32],[7,-26],[8,-23],[6,-38],[-5,-34],[-12,-29],[-14,-18],[7,-26],[3,-34],[9,-24],[14,-17],[8,-35],[-8,-46],[-10,-43],[-10,-35],[-17,-29],[-19,-20],[-7,-32],[-2,-7],[-7,-22],[-13,-23],[5,-31],[6,-36],[-11,-28],[-18,-18],[-19,-17],[-13,-2],[-4,-1],[-16,12],[-5,9],[-17,27],[-25,37],[-7,10],[-10,16],[-1,10],[0,3],[-7,1],[-22,-23],[-27,-29],[-27,-8],[-51,-17],[-76,-8],[-37,-8],[-14,-4],[-2,0],[-2,5],[-15,24],[-4,5],[-3,3],[-26,29],[-24,16],[-13,9],[-9,3],[-1,0],[-30,-5],[-9,-1],[-34,-36],[-3,-3],[-6,-5],[-37,-18],[-12,-11],[-17,-11],[-18,-18],[-7,-26],[-7,-26],[-6,-26],[-16,-5],[-10,-24],[-6,-31],[2,-32],[7,-32],[0,-29],[-13,-20],[-9,-23],[-1,-38],[1,-29],[-5,-29],[5,-37],[7,-32],[-11,-26],[-6,-26],[-9,-23],[13,-24],[-3,-37],[-10,-29],[-15,-15],[-18,6],[-14,-8],[-18,-6],[-12,-18],[-14,-5],[-6,-26],[-1,-29],[0,-32],[11,-18],[2,-31],[-13,-6],[4,-29],[1,-32],[-14,-9],[-13,0],[-13,-8],[-12,-18],[-13,-20],[-14,-9],[-17,-23],[-15,-17],[-13,6],[-7,23],[-15,14],[-14,-5],[-6,-26],[-11,-18],[-4,-29],[-4,-29],[5,-29],[-13,-8],[-6,-29],[-12,-20],[-12,-9],[-8,-26],[3,-32],[-12,-20],[-11,-15],[-14,-2],[-14,2],[-14,0],[-13,0],[-13,-2],[-15,5],[-14,-3],[-22,-11],[-13,-6],[-13,-6],[-14,0],[-12,0],[-16,9],[-14,-6],[-12,-6],[-7,-26],[-11,-26],[-9,-29],[-14,-11],[-12,-15],[-14,0],[-4,-31],[-10,-27],[1,-28],[13,-12],[12,-20],[-13,-15],[-10,-20],[-14,-12],[-16,-5],[-16,8],[-14,3],[-13,3],[-14,-6],[5,-31],[7,-26],[16,-6],[10,-18],[7,-31],[-7,-26],[-10,-24],[-1,-29],[-7,-31],[-5,-29],[-14,-21],[-5,-28],[-4,-35],[-14,-12],[-11,-17],[-14,-12],[-11,-22],[7,-29],[-12,-30],[-11,-24],[-14,-24],[-9,-32],[-11,-48],[0,-32],[-6,-71],[-10,-57],[-11,-48],[-17,-18],[-21,-26],[-26,-30],[-38,-36],[3,-56],[-10,-32],[-29,-29],[-34,35],[-33,-11],[-19,14],[-16,-14],[-14,-2],[-16,8],[-12,-37],[-13,-12],[-29,-35],[-41,-78],[-20,10],[-54,53],[-15,3],[-14,-17],[-22,-24],[-1,-37],[-5,-41],[-42,-91],[-13,-22],[-26,-72],[-19,-5],[-23,-9],[-16,0],[-46,1],[-23,7],[-21,-2],[-34,-8],[-27,-29],[-15,-29],[-28,-33],[-23,-25],[-16,-27],[-23,-52],[-13,-31],[-19,-25],[-16,-10],[-37,-36],[-8,-34],[11,-37],[-5,-41],[-11,-40],[-14,-42],[-42,-54],[-15,-45],[43,-159],[2,-37],[-29,-78],[-22,-40],[-14,-5],[-27,7],[-31,-1],[-21,-10],[-17,-12],[-25,-33],[-21,-8],[-18,16],[-13,-4],[-30,-26],[-24,-18],[-36,-52],[-24,-61],[-18,-65],[-1,-13],[-3,-46],[-11,-15],[-25,14],[-63,14],[-39,3],[-17,-5],[-33,-18],[-19,-38],[-9,-64],[-4,-62],[14,-14],[17,7],[19,-9],[22,-68],[1,-63],[8,-33],[1,-45],[-10,-81],[-18,-27],[-18,-12],[-11,-34],[-14,-35],[-18,5],[-16,18],[-13,-25],[-14,-28],[-12,-28],[-4,-33],[17,-1],[27,-32],[45,-74],[12,-47],[-3,-30],[-1,-72],[-11,-26],[-11,-19],[-26,-50],[-42,-9],[-46,-3],[-27,-10],[-22,-23],[-8,-38],[-1,-46],[1,-54],[12,-49],[4,-40],[9,-68],[15,-77],[-33,9],[-16,17],[-16,27],[-16,3],[-17,-7],[-25,-11],[-21,-9],[-13,-6],[-24,-18],[-20,-4],[-30,19],[-25,24],[-20,-4],[-14,-23],[-8,-29],[-10,-57],[-13,-8],[-20,0],[-10,-18],[-5,-45],[18,-76],[13,-51],[26,-39],[-1,-50],[-8,-34],[-18,-54],[-6,-57],[6,-36],[22,-13],[17,-3],[20,-31],[17,-27],[14,-32],[14,-3],[14,-17],[11,-21],[33,-15],[17,-11],[24,-59],[21,-30],[29,-23],[24,-21],[14,-27],[22,-28],[13,-25],[9,-22],[23,-54],[30,-44],[18,-23],[15,-26],[-2,-33],[-6,-32],[-4,-45],[-6,-42],[-4,-47],[-23,-124],[-16,-39],[-12,-26],[-9,-36],[-17,-60],[-11,-24],[-16,-23],[-18,-36],[-14,-39],[-11,-22],[-12,-31],[-4,-28],[1,-53],[11,-20],[17,-16],[14,-17],[16,0],[20,3],[28,-2],[11,-23],[11,-29],[13,-5],[12,-27],[1,-47],[3,-69],[8,-63],[8,-69],[-10,-19],[-2,-38],[15,-37],[15,-30],[14,-26],[19,-34],[10,-19],[16,-15],[25,6],[20,-13],[30,-35],[13,13],[-2,54],[3,52],[17,45],[13,24],[20,1],[15,-33],[28,-55],[21,-24],[15,-3],[13,5],[17,-6],[13,-10],[14,-8],[20,-2],[14,2],[20,3],[27,9],[22,4],[14,3],[21,-19],[12,-29],[25,-28],[28,-12],[31,-5],[47,3],[13,4],[13,2],[22,0],[27,-8],[43,-21],[18,-4],[14,8],[13,25],[-9,29],[0,34],[21,32],[16,28],[15,14],[41,20],[17,-2],[14,-33],[5,-30],[-2,-44],[-4,-36],[9,-38],[38,-26],[13,-10],[15,-9],[20,13],[18,3],[14,-21],[13,-25],[33,3],[26,-1],[20,-10],[19,-15],[11,-18],[1,-30],[2,-79],[14,-18],[11,-15],[9,-29],[-6,-46],[0,-7],[-3,-23],[-1,-31],[17,-52],[-5,-27],[0,-32],[12,-22],[2,-32],[4,-33],[21,-56],[-3,-49],[9,-24],[29,-39],[7,-35],[-10,-65],[-11,-36],[-14,-13],[-28,-18],[-11,-26],[-4,-28],[-1,-46],[-25,-94],[-49,-2],[-21,-5],[-21,-23],[-26,-31],[-22,-40],[-22,-38],[-43,-16],[-44,-30],[-17,0],[12,-20],[13,-27],[1,-48],[-6,-37],[-15,-27],[-11,-22],[4,-32],[2,-44],[-13,-19],[-48,-121],[2,-39],[9,-46],[20,-6],[29,-18],[26,-27],[68,-47],[16,-6],[22,-5],[49,-37],[44,-12],[39,-12],[31,4],[37,26],[44,-27],[78,-70],[64,-95],[43,-13],[45,-106],[14,-62],[21,-33],[14,-30],[5,-45],[-36,-84],[51,-115],[16,-89],[-2,-67],[6,-61],[-19,-20],[-15,-46],[-18,-37],[-2,-77],[-42,-109],[-48,-71],[-10,-49],[12,-62],[25,-86],[15,-43],[7,-48],[23,-65],[24,-11],[35,-14],[21,-47],[45,-133],[6,-49],[11,-57],[15,-38],[9,-61],[1,-40],[-23,-25],[-15,-78],[-14,-97],[-9,-31],[-40,-59],[-67,-49],[-22,-17],[-20,-19],[-33,-4],[-25,19],[-27,23],[-58,-50],[-51,-5],[-55,-16],[-37,29],[-38,46],[-39,5],[-15,35],[-11,13],[-36,3],[-16,-10],[-28,37],[-20,48],[-17,13],[-24,-3],[-28,-1],[-32,18],[-29,6],[-26,-5],[-50,-57],[-98,-50],[-20,-10],[-30,1],[-13,-5],[-15,-17],[-17,-41],[-26,-31],[-23,-11],[-17,-13],[-18,-1],[-24,-3],[-16,-17],[-2,-46],[-2,-51],[-12,-20],[-29,-26],[-26,-42],[-6,-40],[5,-31],[-12,-26],[-13,-16],[-50,-40],[-23,-53],[12,-98],[22,-175],[25,-97],[27,-29],[27,-12],[-7,-58],[-6,-38],[-23,-24],[-23,-41],[7,-44],[26,-22],[12,-24],[51,-41],[33,-76],[25,-8],[85,84],[17,8],[29,-107],[16,-32],[15,-9],[22,-10],[-3,-43],[-32,-40]],[[43075,44590],[-17,25],[-20,8],[-17,-7],[-19,-14],[-14,2],[-44,32],[-18,9],[-21,6],[-19,2],[-25,-2],[-33,2],[-14,-4],[-19,-12],[-18,-1],[-15,5],[-29,2],[-19,9],[-26,25],[-20,20],[-24,-2],[-16,-9],[-15,-15],[-9,-26],[-18,-17],[-44,-3],[-20,-19],[-50,1],[-16,-8],[-25,-13],[-22,-10],[-39,-23],[-33,-7],[-20,-24],[-29,-4],[-2,1],[-20,12],[0,1],[-4,3],[-18,17],[-14,1],[-4,1],[-11,18],[-6,32],[-1,0],[0,1],[-4,4],[-15,21],[0,1],[-4,2],[-22,17],[-9,7],[-1,0],[-9,3],[-6,2],[-4,0],[-5,1],[-12,0],[-9,24],[-2,5],[-6,12],[-1,3],[-9,20],[-5,7],[-13,23],[-29,23],[-3,4],[-9,13],[-43,44],[-23,43],[-20,42],[-58,51],[-2,2],[-4,33],[-8,27],[0,2],[-13,14],[-15,28],[2,31],[-8,46],[0,1],[-21,30],[0,1],[-26,50],[-1,2],[-8,34],[0,1],[0,1],[-14,9],[-1,0],[-3,1],[-27,9],[-10,20],[-13,26],[-14,38],[-7,24],[-9,9],[-4,5],[-3,3],[-4,3],[-9,8],[-8,25],[0,1],[-29,-26],[-4,-1],[-16,-1],[-13,8],[-21,15],[-15,16],[-21,25],[-14,4],[-32,4],[-17,-13],[-12,9],[-8,41],[-8,29],[-1,1],[-23,39],[-2,1],[-52,26],[-1,0],[-19,-11],[-6,-6],[-17,-16],[-12,10],[-5,4],[-1,1],[-13,8],[-12,14],[-1,1],[-5,2],[-24,12],[-5,1],[-16,5],[-16,5],[-15,-1],[-6,0],[-13,2],[-18,5],[-26,7],[-14,-10],[-6,-5],[-36,-37],[-32,-2],[-29,-10],[-5,3],[-9,7],[-24,8],[-13,2],[-4,0],[-10,0],[-8,-3],[-16,-7],[-14,10],[-1,0],[-13,5],[-6,-2],[-16,-8],[-28,-1],[-32,-39],[-25,-18],[-28,-26],[-16,-1],[-21,2],[-18,-9],[-23,1],[-23,-4],[-24,-8],[-12,8],[-1,0],[-29,17],[-6,4],[-4,2],[-4,-1],[-10,-4],[-5,-4],[-12,-12],[-21,-12],[-5,-2],[-22,-8],[-19,1],[-21,11],[-34,12],[-1,0],[-14,4],[-19,16],[0,1],[-50,43],[-20,24],[-10,50],[-9,25],[-14,17],[-16,50],[-7,32],[-3,4],[-11,14],[-1,1],[-8,22],[0,30],[0,5],[-15,27],[-18,34],[-30,55],[-5,34],[-15,18],[-29,58],[-18,41],[0,1],[-5,42],[0,1],[-19,27],[-1,1],[-39,19],[-12,6],[-19,25],[9,28],[-7,30],[-16,1],[-7,7],[-7,6],[-12,34],[0,15],[0,20],[-17,5],[-6,3],[-10,22],[-1,3],[-13,19],[-1,1],[-13,8],[-16,7],[-39,44],[-1,0],[-32,1],[-30,-8],[-24,6],[-21,16],[-15,14],[-7,4],[-8,4],[-26,22],[0,1],[-37,-3],[-6,-6],[-8,-9],[-13,4],[-3,2],[-8,2],[-16,13],[-15,14],[-17,20],[-16,14],[-22,35],[-14,-1],[-14,-1],[-1,0],[0,1],[-26,13],[-23,26],[-1,1],[-13,0],[-19,-16],[-32,-53],[-11,-26],[-20,-26],[-29,-2],[-23,-16],[-13,-12],[-58,-42],[-21,-31],[-16,-41],[-9,-22],[-18,-9],[-2,-1],[-1,-1],[-15,1],[-26,2],[-26,11],[-2,1],[-20,4],[-19,12],[-26,6],[-24,1],[-16,-7],[-18,4],[-43,33],[-20,1],[-26,-21],[0,-1],[-10,-22],[-7,-4],[-3,-2],[-10,-6],[-34,12],[-1,0],[-29,1],[-22,-2],[-13,9],[-14,23],[-7,13],[-16,18],[-12,10],[-30,9],[-20,38],[-15,45],[-20,27],[-40,36],[-56,43],[-39,18],[-13,19],[-23,45],[-11,18],[-24,39],[-18,-8],[-15,-39],[-21,-18],[-25,2],[-22,12],[-35,27],[-19,17],[-36,30],[-23,29],[-12,14],[-26,17],[-23,-2],[-17,-23],[-21,-17],[-3,-2],[-18,-5],[-16,5],[-53,33],[-11,39],[2,45],[-2,42],[-7,31],[-14,20],[-18,-1],[-16,-7],[-17,-5],[-1,0],[-17,-9],[-18,-5],[-20,-1],[-15,9],[-8,11],[-8,14],[-1,1],[-15,26],[-11,-16],[0,-1],[-8,-22],[-11,-4],[-7,-2],[-29,10],[-6,-1],[-13,-1],[-12,-24],[-1,-5],[-10,-30],[-12,-26],[-14,-10],[-16,0],[-12,0],[-16,-19],[-8,-29],[-3,-10],[-18,-61],[-18,-13],[-42,-41],[-16,-23],[-6,-25],[-3,-11],[0,-2],[-4,-51],[-13,-12],[-2,-2],[-60,-6],[-14,-22],[-11,-37],[-4,-64],[-14,-22],[-15,-9],[-31,3],[-24,-27],[-13,-14],[-32,-18],[-6,-29],[-3,-55],[-14,-11],[-5,-4],[-5,-36],[0,-3],[-6,-30],[0,-1],[-13,-23],[-21,-18],[-4,0],[-26,4],[-23,-31],[-5,-7],[0,-1],[-22,-16],[-18,11],[-14,13],[-18,25],[-14,43],[-4,5],[-10,15],[-2,3],[-54,12],[-25,0],[-28,-16],[-27,-19],[-16,18],[-3,30],[0,32],[6,44],[-12,21],[0,1],[-27,23],[-22,10],[-1,0],[-22,-15],[-13,-13],[-17,-11],[-9,-6],[0,-1],[-22,-4],[-29,10],[-13,10],[0,1],[-18,28],[-22,4],[-22,24],[-2,3],[-16,22],[-21,-14],[-17,-14],[-15,1],[-3,1],[-3,2],[-18,13],[-3,4],[-18,17],[-18,12],[-2,1],[-8,1],[-16,1],[-13,-1],[-29,-5],[-21,-9],[-12,16],[-14,16],[-15,8],[-3,1],[-1,0],[-11,-5],[-1,0],[-12,-21],[-10,-25],[-3,-4],[-10,-15],[-16,-15],[-10,-20],[-14,-33],[-1,-3],[-15,-7],[-2,0],[-21,-7],[-17,-7],[-6,-3],[-9,2],[-15,4],[-13,4],[-4,0],[-15,1],[-20,-10],[-23,-8],[-10,-2],[-12,-3],[-16,-12],[-2,-3],[-15,-14],[-15,-7],[-2,-1],[-5,-6],[-11,-14],[-10,-35],[10,-20],[-2,-21],[-2,-15],[0,-4],[-11,-17],[-4,-4],[-9,-9],[-12,-21],[-1,-3],[-17,-25],[-60,-90],[0,-1],[-1,1],[-21,4],[-9,5],[-4,2],[-15,12],[-22,10],[-6,3],[-20,9],[-11,15],[-13,22],[-16,26],[-4,7],[-2,2],[-10,13],[-23,37],[0,1],[-3,16],[-5,21],[7,23],[1,5],[5,32],[-3,37],[0,6],[0,42],[-7,43],[-9,38],[-16,33],[0,1],[-1,1],[-12,16],[-7,10],[-9,8],[-6,5],[-2,1],[-12,12],[-20,14],[-6,3],[-1,1],[-7,4],[-7,-3],[-23,-9],[-12,-11],[-9,-7],[-8,-4],[-15,-8],[-3,-1],[-23,6],[-23,5],[-7,5],[-3,3],[-5,4],[-2,6],[-14,34],[-4,17],[-2,11],[-13,36],[-12,23],[-22,28],[-4,6],[-12,20],[-18,21],[-13,11],[-17,12],[-1,0],[-24,1],[-19,-11],[-11,-19],[-19,-16],[-25,-5],[-18,11],[-20,21],[-12,35],[-10,34],[-8,64],[0,10],[1,26],[2,49],[-11,29],[-1,0],[-12,-8],[-19,-16],[-13,-8],[-18,-17],[-14,-19],[-12,-8],[-18,2],[-10,4],[-1,0],[-7,3],[-17,11],[-4,12],[-8,20],[-2,44],[-13,12],[-6,7],[-14,33],[-20,25],[-24,9],[-24,-14],[-15,-11],[-13,-9],[-4,-3],[-19,-7],[-13,0],[-18,-5],[-25,-5],[-1,0],[-8,-2],[-7,-1],[-19,0],[-11,8],[-3,2],[-7,5],[-23,15],[-27,3],[-22,-10],[-22,-25],[-7,-17],[-5,-11],[-2,-1],[-20,-10],[-13,-3],[-34,-11],[-21,-12],[-29,-14],[-17,-3],[-2,0],[-2,2],[-5,3],[-13,9],[-18,22],[-14,34],[-19,31],[-11,31],[-17,30],[-10,30],[0,2],[-12,29],[-12,19],[-1,1],[-16,14],[-15,24],[-4,28],[-11,18],[-7,12],[-13,32],[-1,6],[-7,32],[-3,3],[-15,16],[-4,6],[-11,16],[-20,15],[-12,6],[-15,3],[-30,16],[-52,15],[-41,17],[-2,1],[-17,13],[-18,14],[-13,32],[-13,34],[-22,28],[-31,13],[-38,7],[-52,10],[-12,27],[0,18],[1,7],[0,3],[0,16],[9,56],[-11,18],[-13,12],[-5,4],[-2,1],[-6,1],[-17,4],[-25,0],[-15,16],[-5,35],[-1,8],[-2,52],[-23,25],[-16,28],[-1,2],[-10,15],[-6,25],[-1,7],[-4,28],[-4,50],[-1,11],[-1,8],[-3,22],[-10,22],[-5,3],[-10,8],[-21,18],[-1,2],[-1,0],[-21,18],[-15,24],[-2,9],[-6,34],[14,33],[0,25],[0,5],[-10,25],[-1,43],[3,6],[14,30],[4,38],[-17,21],[-13,11],[-3,4],[-8,12],[-7,26],[14,36],[12,24],[1,1],[10,35],[-3,38],[-12,16],[-3,0],[-15,-5],[-13,-4],[-20,-6],[-26,13],[-14,12],[-15,7],[-13,5],[-18,21],[5,34],[21,23],[16,36],[1,5],[7,39],[-5,46],[-14,19],[-13,10],[-10,8],[-15,7],[-19,1],[-16,9],[-28,25],[-4,35],[-4,31],[-18,23],[-8,6],[-4,2],[-11,20],[-5,29],[-4,18],[8,37],[7,43],[-1,33],[-5,30],[2,31],[-4,16],[-4,17],[-13,22],[-13,25],[-21,21],[-19,13],[-14,10],[-12,0],[-2,0],[-187,-9],[-39,1],[-57,6],[-62,1],[-37,-31],[-25,1],[-119,21],[-32,5],[-31,1],[-35,2],[-36,2],[-12,0],[-175,0],[-45,0],[-20,0],[-22,0],[-47,1],[-23,0],[-14,0],[-14,0],[-36,2],[-4,0],[-16,0],[-113,0],[-24,0],[-4,0],[-11,0],[-46,-3],[-2,0],[-13,0],[-28,0],[-25,0],[-19,0],[-14,-1],[-19,0],[-14,-1],[-16,0],[-36,-1],[-20,2],[-15,4],[-6,0],[-9,0],[-34,-1],[-32,-1],[-27,0],[-21,-1],[-19,-3],[-28,0],[-16,3],[-24,1],[-16,1],[-24,1],[-46,0],[-30,0],[-18,0],[-21,0],[-32,0],[-18,1],[-15,0],[-21,0],[-21,1],[-13,0],[-15,0],[-31,0],[-13,0],[-16,-1],[-15,-1],[-14,1],[-14,0],[-20,0],[-20,0],[-25,0],[-14,0],[-10,1],[-17,0],[-25,1],[-59,2],[-17,0],[-13,-5],[-34,-3],[-62,3],[0,61],[-1,43],[-10,81],[-74,117],[-22,31],[-53,84],[-20,31],[-20,31],[-50,79],[-30,44],[-17,26],[-20,34],[-12,19],[-16,28],[-17,23],[-22,33],[-34,51],[-16,25],[-12,18],[-12,17],[-12,18],[-35,56],[-57,92],[-42,68],[-19,28],[-13,19],[-61,88],[-24,37],[-17,26],[-11,17],[-22,35],[-18,28],[-22,31],[-18,25],[-23,43],[-25,46],[-63,98],[-20,31],[-12,19],[-40,63],[-15,22],[-27,44]],[[24938,53767],[-7,-1220],[0,-80]],[[21450,44925],[-1,-217],[0,-5],[0,-37],[-1,-141],[-19,0],[-13,1],[-78,1],[-75,1],[-129,2],[-110,2],[-44,0],[-24,1],[-161,7],[-210,-2],[-166,1],[-293,-1],[-298,-2]],[[19828,44536],[-208,0],[-171,-1],[-1,0],[-86,0],[-143,-1],[-15,0],[-71,2],[-14,1],[-34,0],[-42,2],[-33,0],[-99,-3],[-41,-2],[-42,-1],[-51,-2],[-129,-3],[-47,-1],[-39,-1],[-53,-3],[-283,-11],[-19,-1],[-22,-2],[-64,-5],[-76,-5],[-32,-3],[-184,-14],[-124,-11],[-41,0],[-2,0],[-56,0],[-29,0],[-152,-3],[-202,-2],[-316,-5],[-238,-3],[-125,-2],[-22,0],[-101,-2],[-55,-1],[-85,7],[-42,3],[-1,0],[-72,11],[-2,82],[-1,43],[-1,31],[1,41],[0,31],[-3,100],[6,84],[-2,556],[-1,47],[0,202],[0,62],[-3,54],[0,30],[0,165],[0,26],[-1,157],[0,143],[0,120],[-1,402],[0,61],[-1,489],[-2,54],[0,66],[-1,237],[0,8],[-1,349],[-1,119],[0,155],[-1,240],[0,40],[-1,86],[0,9],[-1,386],[4,157],[0,169],[0,67],[-75,1],[-127,-2],[0,1220],[0,104],[0,34],[0,9],[0,181],[0,85],[0,74],[0,215],[0,100],[0,46],[0,45],[0,340],[0,60],[0,85],[0,127],[0,122],[0,99],[-1,193],[0,63],[0,147],[1,32],[0,88],[1,62],[0,53],[1,203],[1,95],[1,151],[0,47],[2,263],[1,283],[4,629],[2,182],[7,1209],[1,350],[0,231],[0,284]],[[61018,34479],[-55,-1],[-7,0],[-15,-1],[-61,13],[-191,55],[-15,-4],[-15,-4],[-92,-5],[-250,-12],[-208,-48],[-520,-14],[-524,-18],[-66,-9],[-211,-2],[-190,3],[-29,2],[-95,2],[-66,1],[-121,3],[-39,-2],[-124,6],[-38,2],[-135,7],[-68,4],[-53,1],[-266,4],[-25,1],[-44,0],[-25,0],[-199,2],[-95,2],[-112,-3],[-204,6],[-143,5],[-162,-1],[-314,2],[-163,7],[-136,6],[-66,2],[-69,3],[-36,-4],[-13,-4],[-1,0],[-19,2],[-321,5],[-28,-1],[-80,0],[-66,0],[-71,-1],[-157,-1],[-59,0],[-12,0],[-11,0],[-35,0],[-289,1],[-223,1],[-105,7],[-79,7],[-29,0],[1,323],[-1,388],[1,224],[2,676],[0,94],[0,130],[2,460],[0,205],[-176,6],[-210,7],[-104,4],[-44,1],[-37,2],[-123,3],[-172,5],[-132,4],[-187,7],[-46,2],[-157,1],[-90,0],[-14,0],[-105,-5],[1,91],[1,133],[1,154],[3,517],[2,144],[0,56],[3,162],[3,161],[3,186],[-1,254],[-1,175],[0,3],[-1,234],[-2,38],[-18,184],[-81,0],[-145,-1],[-149,-2],[-282,-2],[-70,0],[-9,0],[-5,0],[-151,-2],[-371,-3],[-220,-1],[-19,1],[-157,-7],[-13,-1],[-92,-4],[-40,-1],[-65,-3],[-176,-7],[-20,-1],[-74,-3],[-65,7],[-24,3],[-8,1],[-19,-1],[-15,0],[-93,-2],[-39,-1],[-126,1],[-128,3],[-16,0],[-81,0],[-214,4],[-111,0],[-347,0],[-42,0],[-111,1],[-468,6],[-113,-4],[-115,1],[-83,0],[-140,-4],[-145,0],[-30,0],[-100,1],[-37,0],[-172,2],[-14,1],[0,104],[-68,0],[0,104],[-67,0],[-2,104],[-66,0],[0,52],[0,263],[-124,0],[-11,0],[0,15],[1,89],[-67,3],[0,208],[-68,-2],[0,109],[-66,0],[0,113],[0,112],[0,91],[-19,-1],[-49,-2],[0,107],[-43,0],[-25,0],[2,101],[-69,3],[0,104],[-68,0],[0,69],[1,298],[0,261],[-33,0],[-66,2],[-23,0],[-19,0],[-9,14],[0,5],[-1,40],[-3,8],[-9,16],[-25,39],[-4,7],[-1,2],[-9,5],[-9,2],[-1,0],[-2,0],[-23,-5],[-26,-9],[-3,-1],[-19,2],[-7,8],[-3,15],[-1,2],[-8,19],[-5,6],[-15,10],[-1,1],[-32,10],[-30,8],[-50,37],[2,11],[4,13],[9,38],[1,28],[-2,10],[0,1],[-5,12],[-12,8],[-20,13],[-4,4],[-6,9],[-4,11],[1,43],[-1,2],[-4,23],[-12,30],[0,1],[-9,18],[-7,11],[-1,0],[-20,13],[-8,12],[-13,27],[-17,115],[-10,34],[-2,9],[-3,3],[-85,88],[-17,50],[-2,5],[-20,19],[-27,26],[-1,0],[-104,106],[-47,58],[-9,20],[-7,32],[-3,16],[-14,24],[-1,1],[-35,64],[-12,21],[-37,16],[-135,123],[-1,6],[4,23],[0,10],[-8,19],[-1,1],[-25,56],[-11,22],[-7,7],[-33,-7],[-10,-7],[-11,-9],[-6,-14],[-23,-22],[-9,-7],[-11,0],[-23,17],[0,1],[-22,49],[-1,1],[-53,80],[-17,25],[-7,10],[-73,62],[-37,51],[0,1],[-15,26],[-2,3],[-31,60],[-28,68],[-3,16],[-38,85],[0,2],[4,85],[-6,12],[-11,12],[-1,1],[-37,28],[-1,0],[-7,3],[-3,-1],[-40,-21],[-3,-1],[-26,9],[-12,11],[-41,67],[-7,8],[-1,2],[-33,44],[-23,32],[-3,4],[-23,30],[-31,6],[-14,-5],[-15,1],[-12,11],[-74,76],[-16,22],[-13,32],[-4,15],[-1,11],[-7,22],[-20,54],[-7,11],[-1,1],[-5,4],[-51,16],[0,1],[-27,-2],[-16,7],[-98,56],[-16,10],[-10,15],[-12,26],[-6,8],[-57,50],[-15,10],[0,1],[-49,-25],[-28,-27],[-2,-1],[-24,-17],[-19,-10],[-24,-5],[-25,-6],[-22,8],[-12,1],[-15,-6],[-47,-33],[-11,-27],[-37,-33],[-12,-18],[-20,-79],[-11,-31],[-22,-38],[-2,-1],[-22,-9],[-17,-3],[-32,-10],[-25,-18],[-21,-1],[-14,3],[-19,11],[-40,10],[-17,-18],[-16,-10],[-25,5],[-61,6],[-19,24],[-18,32],[-25,24],[-16,21],[-18,-10],[-36,-1],[-13,-3],[-23,-14],[-41,-58],[-15,-28],[-35,-71],[-8,-24],[-33,-38],[-34,-1],[-22,12],[-14,17],[-26,57],[-1,54],[-11,27],[-17,37],[-21,34],[-13,13],[-29,24],[-29,31],[-18,22],[-25,72],[-1,39],[-5,28]],[[8489,38571],[20,-29],[-5,-103],[-42,23],[-18,51],[-11,49],[35,-9],[21,18]],[[9627,39371],[-11,-19],[-3,1],[-14,45],[-8,13],[-56,63],[-1,23],[15,49],[26,41],[25,-7],[30,-30],[14,-52],[9,-67],[-26,-60]],[[8708,39269],[-15,-12],[-8,22],[26,86],[63,102],[7,16],[0,1],[50,199],[10,0],[8,-7],[0,-29],[-31,-154],[-4,-22],[-50,-91],[-56,-111]],[[9326,39429],[-33,-4],[-4,8],[0,13],[2,8],[24,30],[77,87],[61,136],[24,0],[34,-37],[-3,-16],[-26,0],[-15,-34],[-46,-90],[-14,-27],[-81,-74]],[[8825,41027],[81,-12],[47,-45],[15,-54],[53,-46],[127,-25],[2,-5],[5,-53],[-55,-110],[-25,-8],[-94,181],[-27,12],[-16,-16],[-35,17],[-49,51],[-79,66],[-33,37],[-21,0],[-8,17],[-4,32],[18,52],[28,-34],[24,-29],[46,-28]],[[11219,41116],[57,-20],[29,12],[58,-26],[51,-46],[33,-57],[48,-40],[15,-36],[-26,-83],[-58,-22],[-205,176],[-21,9],[-20,31],[9,102],[3,2],[27,-2]],[[19828,44536],[6,-328],[1,-87],[2,-127],[3,-152],[2,-123],[0,-2],[1,-54],[0,-25],[1,-13],[-1,-49],[-4,-363],[7,-131],[14,-274],[-7,-228],[1,-71],[-9,-88],[-4,-37],[-2,-276],[0,-32],[-1,-84],[150,3],[23,0],[119,1],[110,0],[7,0],[19,0],[102,-21],[17,-3],[0,-49],[-1,-154],[-2,-258],[-1,-99],[-1,-164],[-2,-319],[-1,-198],[-2,-176],[0,-75],[-1,-164],[-1,-70],[-2,-272],[-1,-147],[0,-136],[-1,-92],[-4,-551],[0,-3],[-2,-380],[-1,-96],[-1,-109],[-3,-56],[1,-105],[3,-120],[-8,-363],[-1,-33],[2,-282],[0,-10],[0,-31],[0,-45],[0,-28],[-1,-37],[5,-183],[0,-50],[-1,-36],[0,-30],[0,-31],[-1,-45],[0,-46],[1,-65],[0,-40],[0,-84],[0,-53],[0,-31],[-1,-33],[1,-102],[1,-51],[1,-47],[3,-99],[-8,-38],[1,-14],[0,-18],[0,-45],[1,-104]],[[20357,36105],[-25,1],[-43,3],[-68,5],[-69,4],[-18,1],[-50,3],[-67,4],[-41,2],[-25,1],[-67,3],[-66,3],[-73,-7],[-73,-8],[-74,-7],[-73,-8],[-64,1],[-65,0],[-65,0],[-40,0],[-23,1],[-21,0],[-47,2],[-23,1],[-23,1],[-17,1],[-49,2],[-17,1],[-14,1],[-20,1],[-31,1],[-67,-10],[-72,-10],[-28,1],[-38,0],[-66,2],[-67,0],[-67,1],[-67,0],[-60,1],[-14,0],[-62,2],[-70,2],[-69,2],[-69,2],[-67,0],[-66,-1],[-67,-1],[-67,-1],[-60,-23],[-46,-19],[-15,-5],[-68,4],[-29,2],[-9,0],[-22,1]],[[17674,36068],[-69,-12],[-49,4],[-344,12],[-124,5],[-15,0],[-26,1],[-102,0],[-39,0],[-95,2],[-42,1],[-44,0],[-56,1],[-70,0],[-153,1],[-24,3],[-18,8],[-60,2],[-248,7],[-57,2],[-28,1],[-359,17],[-35,1],[-1,0],[-20,0],[-291,2],[-132,1],[-61,1],[-220,1],[-40,1],[-48,0],[-145,0],[-225,-20],[-17,0],[-72,-1],[-70,0],[-59,-3],[-148,-5],[-44,1],[-67,2],[-41,2],[-107,3],[-292,-9],[-152,-4],[-16,-1],[-94,-3],[-143,-3],[-83,-2],[-55,2],[-2,0],[-150,5],[-86,-1],[-12,0],[-57,0],[-34,-1],[-47,0],[-165,-6],[-35,-2],[-165,-6],[-44,-2],[-207,-8],[-40,0],[-121,-5],[-48,-2],[-41,-1],[-46,-2],[-140,-5],[-55,-18],[-251,2],[-25,-2],[-150,27],[-30,6],[-60,11],[-247,5],[-75,1],[-164,1],[-123,2],[-1,0],[-31,0],[-108,2],[-125,2],[-139,3],[-59,2],[-218,4],[-40,0],[-220,5],[-11,0],[-135,3],[-65,1],[-307,6],[-107,4],[-135,7],[-14,0],[-44,1],[-14,0],[-42,1],[-31,0],[-12,0],[-32,0],[-28,-1],[-40,-1]],[[8396,36127],[-27,302],[-10,156],[-43,379],[-45,385],[-31,223],[-23,166],[-36,255],[-52,329],[-14,81],[-13,87],[-27,138],[-31,156],[-36,122],[-30,114],[-22,90],[-16,69],[-41,138],[8,28],[81,-29],[36,-41],[46,32],[38,88],[20,72],[9,17],[10,52],[34,35],[51,-9],[10,-19],[-2,-31],[-14,-16],[-31,-24],[1,-3],[27,-38],[21,-31],[20,-30],[55,-58],[37,3],[13,-27],[42,-54],[26,4],[13,-16],[14,-93],[-26,-8],[-2,-38],[16,-78],[15,6],[7,8],[5,-10],[-15,-84],[1,-6],[2,-43],[-16,-69],[-13,-54],[-11,-16],[-27,-37],[-36,-3],[-12,-5],[-11,-5],[8,-68],[10,-74],[32,-69],[23,-48],[10,-88],[9,-60],[22,-43],[28,-91],[21,-13],[21,-49],[9,-23],[31,-31],[37,30],[50,41],[19,15],[18,-12],[28,-19],[4,-16],[3,-17],[-18,-30],[-16,-26],[-13,-23],[17,4],[15,3],[25,5],[8,-1],[31,-5],[43,-40],[24,-56],[-24,-65],[-50,27],[-43,-19],[-43,-41],[-37,-6],[11,-38],[2,-47],[-19,-30],[-21,-26],[-4,-5],[5,-27],[23,-23],[14,-29],[31,-12],[14,18],[18,-4],[18,17],[36,-2],[-8,-55],[-21,-47],[16,-11],[18,49],[24,70],[44,75],[21,17],[23,19],[14,31],[15,34],[5,63],[3,62],[2,42],[25,13],[56,17],[8,-1],[31,-6],[28,-90],[-18,-66],[-6,-44],[10,-29],[-30,-8],[-13,-17],[-3,-3],[20,-19],[4,2],[25,13],[115,36],[29,-81],[50,-94],[23,-27],[18,-46],[23,-80],[7,-73],[31,-48],[10,11],[5,5],[-1,19],[-18,84],[21,57],[14,-13],[70,1],[48,-1],[23,-14],[10,60],[-1,43],[-15,28],[-20,17],[-14,20],[-24,14],[-34,5],[-25,33],[-14,75],[-29,43],[-24,71],[-49,37],[-42,26],[-29,20],[-38,40],[-25,54],[-36,68],[-8,23],[-3,71],[115,182],[35,14],[9,-8],[39,-18],[47,-38],[68,-10],[22,43],[2,18],[-6,17],[-13,-12],[-36,-15],[-63,38],[-34,16],[-25,43],[-43,-8],[-42,-50],[-54,-79],[-41,-52],[-26,-39],[-46,-63],[-49,-39],[-52,-19],[-46,0],[-25,46],[9,18],[19,39],[43,70],[28,73],[16,101],[8,109],[15,88],[18,99],[9,81],[4,91],[35,100],[38,41],[44,47],[78,71],[56,26],[47,23],[18,32],[45,-8],[47,25],[51,37],[25,24],[40,3],[37,-57],[22,-31],[28,-66],[27,0],[3,0],[50,19],[1,0],[66,29],[29,-60],[2,-12],[16,-95],[9,7],[6,4],[5,101],[1,0],[-20,73],[-22,11],[-55,28],[-86,-72],[-4,-3],[-24,60],[3,36],[33,80],[7,114],[24,92],[17,51],[39,77],[25,34],[46,58],[40,44],[55,5],[57,-33],[37,-6],[52,-1],[53,5],[64,-13],[31,27],[23,11],[86,68],[74,60],[34,20],[63,44],[72,34],[26,13],[54,16],[43,32],[45,16],[47,26],[41,17],[28,12],[52,28],[30,17],[38,14],[35,24],[34,20],[41,12],[52,23],[85,32],[15,43],[24,28],[31,13],[66,57],[39,43],[40,41],[58,63],[42,30],[27,14],[14,8],[56,27],[46,2],[79,41],[46,-2],[66,51],[37,32],[27,35],[19,49],[21,112],[52,79],[26,28],[43,47],[36,38],[3,4],[37,46],[43,42],[48,11],[52,51],[5,21],[-48,4],[-43,-14],[-39,-20],[-41,-33],[-38,-7],[-32,-7],[-16,-38],[-5,-14],[-33,-54],[-28,-18],[-24,-29],[-23,-27],[-26,-16],[-33,-59],[-40,-35],[-54,-48],[-18,-8],[-75,-32],[-43,-6],[-39,10],[-44,41],[-30,37],[-40,37],[-33,28],[-41,32],[-41,12],[-44,18],[-30,1],[-45,9],[-53,43],[-48,-14],[-31,-16],[-38,-13],[-40,-5],[-34,9],[-31,36],[-19,27],[-23,11],[-45,2],[-49,18],[-41,-9],[-36,-3],[-35,-3],[-32,3],[-73,-7],[-39,-8],[-80,-25],[-113,-45],[-34,-16],[-53,1],[-20,65],[29,52],[37,3],[40,11],[29,21],[56,0],[73,31],[13,75],[28,-2],[42,30],[42,54],[-90,44],[-108,16],[-33,3],[-49,7],[-47,3],[-32,3],[-34,-11],[-33,-12],[-50,-19],[-41,3],[-67,9],[-83,1],[-82,-9],[-51,-4],[-36,-17],[-55,-16],[-36,-5],[-54,9],[-45,15],[-33,20],[-98,89],[-42,16],[-21,45],[-29,56],[-1,0],[-17,7],[-25,27],[-2,36],[21,58],[26,24],[39,48],[42,84],[19,45],[38,73],[1,11],[1,14],[-45,62],[-36,61],[-36,15],[-38,14],[0,3],[-9,31],[0,29],[10,32],[-8,106],[-21,74],[-19,80],[-10,45],[-67,213],[-31,10],[-34,7],[-40,20],[-43,28],[-26,9],[-59,54],[-32,52],[-89,81],[-91,116],[-24,-12],[-25,-36],[-82,-19],[-45,0],[-105,20],[-30,6],[-54,14],[-92,7],[-47,1],[-65,6],[-95,-12],[-15,-2],[-21,-4],[-26,-5],[-50,-11],[-39,-26],[-25,-21],[-125,-93],[-59,-51],[-28,-31],[-36,-69],[-9,-21],[-16,-40],[-16,-88],[-3,-17],[-10,-114],[10,-75],[7,-54],[26,-84],[16,-120],[23,-77],[29,-40],[24,-59],[25,-65],[13,-92],[-10,-117],[-13,-142],[-9,-118],[10,-97],[1,-128],[7,-118],[17,-101],[18,-110],[40,-74],[16,-96],[14,-71],[12,-101],[11,-97],[-15,-101],[-1,-9],[-3,-16],[2,-12],[105,-70],[4,1],[11,7],[134,86],[39,-43],[10,-35],[5,-68],[-9,-188],[-2,-47],[-19,3],[-80,84],[-44,64],[-32,31],[-84,50],[-104,65],[-33,-35],[-12,-39],[-83,4],[-38,-22],[-18,1],[-4,37],[40,9],[63,11],[15,35],[20,1],[2,-25],[14,12],[17,20],[5,38],[-12,4],[-12,-16],[-17,10],[-19,6],[-22,-49],[-10,-9],[-2,-1],[-33,-1],[3,43],[-18,8],[-49,21],[-11,-35],[5,-1],[9,-29],[-24,-97],[-15,6],[-16,15],[-4,-1],[-9,0],[-24,-61],[-3,-10],[20,-76],[14,-40],[30,-64],[-19,-61],[-54,-48],[-209,-59],[11,104],[7,71],[-3,89],[2,69],[-4,64],[10,89],[2,54],[6,80],[5,92],[9,93],[11,108],[5,97],[10,147],[0,69],[2,92],[5,102],[0,60],[4,165],[1,86],[0,169],[-3,184],[-1,101],[-1,128],[-1,299],[-2,59],[-3,88],[-3,111],[-5,86],[-1,165],[0,72],[-4,61],[-6,147],[-6,125],[-3,138],[-9,132],[-6,206],[-7,100],[0,60],[-8,104],[-5,77],[-6,93],[-4,88],[-3,41],[-82,915],[-6,99],[-14,160],[1,117],[14,54],[32,-91],[-6,-54],[7,-55],[25,-42],[-4,-74],[23,-75],[21,-23],[9,-75],[11,38],[-10,77],[-20,29],[-10,67],[-26,109],[3,131],[-32,80],[-1,125],[-15,48],[-27,6],[-31,29],[-9,55],[-25,101],[-15,162],[-16,132],[-4,78],[-18,114],[-12,141],[-6,75],[-11,101],[-7,60],[-17,124],[-7,67],[-13,101],[-20,148],[-11,72],[-4,52],[-9,77],[-20,158],[-1,91],[-21,76],[-19,121],[-20,141],[-17,109],[-15,76],[-18,103],[-38,177],[-12,50],[-13,93],[-13,84],[-10,100],[-7,86],[-18,128],[-10,74],[-31,159],[-20,120],[-15,84],[-27,129],[-16,84],[-21,118],[-14,82],[-19,69],[-12,65],[-21,75],[-26,84],[-44,107],[-64,103],[-38,44],[-29,43],[-47,44],[-32,9],[-45,16],[-30,8],[-35,3],[-51,-25],[-14,-73],[-22,6],[-38,47],[-8,76],[-11,55],[-31,178],[-21,115],[-8,57],[-13,64],[-18,102],[-32,151],[-31,142],[-26,114],[-23,79],[-21,66],[-3,35],[6,26],[93,28],[40,-18],[12,-12],[50,-50],[66,-102],[6,3],[3,8],[4,13],[-29,67],[-95,109],[-14,17],[-129,-7],[-40,-2],[-69,58],[-23,22],[-56,38],[-54,19],[-31,29],[-30,11],[16,54],[-12,65],[-15,91],[-25,88],[-14,71],[-4,59],[-1,77],[-1,61],[-1,69],[-4,99],[-14,156],[-11,100],[-15,111],[-18,136],[-33,89],[-32,53],[-21,63],[-3,89],[-15,129],[9,78],[1,137],[-10,67],[5,72],[-4,77],[-7,84],[0,49],[-10,56],[-16,78],[6,57],[-8,105],[-13,41],[-18,9],[-7,19],[16,16],[20,11],[6,43],[-2,37],[-7,71],[-4,119],[0,29],[-17,126],[-17,30],[-2,4],[-15,-17],[-2,1],[-20,50],[1,10],[25,16],[8,-9],[17,89],[-2,42],[1,147],[-6,135],[-8,100],[-8,53],[-4,110],[-5,72],[-7,69],[-5,71],[-3,72],[-13,82],[-5,116],[-10,113],[-8,88],[-21,223],[-8,101],[-13,135],[-8,77],[-6,71],[-11,84]],[[43075,44590],[-36,-44],[-13,-34],[-1,-30],[38,-101],[8,-65],[8,-50],[40,-56],[12,-14],[-2,-38],[-5,-50],[5,-38],[-2,-34],[-19,-42],[-6,-33],[0,-65],[7,-47],[10,-26],[21,-45],[10,-35],[2,-30],[-33,-45],[-14,-11],[-14,-8],[-5,-31],[-8,-39],[-15,-31],[-33,-24],[-37,-12],[-11,-101],[-24,-37],[-8,-34],[-55,-79],[-25,-87],[-18,-56],[-41,-72],[8,-54],[15,-3],[25,-89],[-4,-56],[5,-29],[12,-23],[12,-35],[-20,-67],[-2,-52],[-13,-27],[-11,-21],[-22,-14],[-14,-27],[-28,-22],[-16,2],[-1,-49],[-17,-16],[-10,-47],[6,-52],[-33,-150],[-15,-25],[38,-114],[-2,-43],[-14,-32],[-27,-35],[-32,-29],[-28,-23],[-18,-20],[-20,-33],[-21,-31],[-4,-49],[-46,-43],[-28,-3],[-19,-12],[-27,-26],[-29,-37],[-20,-29],[-26,-12],[-29,-14],[-18,-26],[-22,-12],[-20,-17],[-13,-35],[-15,-12],[-18,-20],[0,-35],[13,-34],[11,-49],[8,-26],[14,5],[5,-43],[-23,-15],[-10,-31],[-12,-15],[-25,-20],[-17,-12],[-19,-52],[-27,-29],[-18,-52],[-17,-17],[-13,-3],[-17,-14],[0,-35],[-7,-55],[10,-43],[13,-38],[12,-6],[25,-26],[12,-20],[-14,-61],[2,-35],[12,-55],[12,-37],[18,-29],[-14,-58],[-9,-37],[2,-44],[4,-29],[-9,-29],[8,-49],[15,-38],[5,-37],[3,-55],[4,-41],[-12,-40],[-22,-49],[-10,-35],[-13,-29],[-24,6],[-7,-29],[-2,-69],[9,-41],[-11,-52],[-25,-17],[-13,-7],[-26,1],[-23,-6],[-20,-9],[-11,-28],[-5,-29],[-13,-32],[-15,-18],[-18,-5],[-15,-24],[-14,-14],[-19,-9],[-19,-60],[-19,-3],[-23,-9],[-13,-12],[-22,-2],[-19,0],[-13,11],[-14,0],[-25,-29],[-16,-8],[-28,-64],[-11,-15],[-42,-8],[-18,-3],[-13,-3],[-1,-29],[-17,-40],[-16,-6],[-4,-29],[-4,-41],[-13,-10],[-10,-24],[-9,-32],[-10,-26],[-19,-18],[-18,3],[-13,-8],[-10,-21],[-6,-31],[-16,-21],[5,-34],[-8,-23],[-17,-18],[-12,-26],[-11,-23],[-8,-29],[5,-29],[9,-26],[8,-26],[6,-26],[-3,-32],[-6,-29],[-8,-34],[-13,-21],[-14,-11],[-14,-18],[-12,-14],[-7,-26],[-16,-9],[-7,-26],[-7,-29],[2,-29],[-2,-29],[-7,-31],[-7,-26],[-23,-50],[-5,-32],[18,-18],[15,-6],[16,3],[19,5],[25,-15],[5,-5],[7,-5],[14,-19],[14,-6],[15,-21],[23,-11],[2,-33],[17,-25],[5,-28],[0,-38],[11,-29],[14,6],[14,6],[22,-5],[24,-9],[16,2],[28,-14],[29,-24],[7,-55],[-5,-55],[-12,-86],[19,-44],[-1,-37],[21,-18],[9,-40],[17,-38],[11,-20],[-12,-26],[10,-49],[14,-49],[7,-32],[15,-38],[22,-8],[7,-38],[27,-35],[8,-34],[-18,-55],[-13,-32],[28,-55],[23,-18],[16,21],[26,26],[16,-20],[14,-50],[15,-5],[9,-32],[10,-20],[14,-32],[-1,-61],[15,-38],[-2,-40],[-13,-22],[-14,-27],[13,-18],[-20,-34],[-15,-18],[23,-20],[9,-32],[14,-14],[34,-47],[17,-21],[32,-51],[15,-32],[22,-29],[27,3],[19,-14],[8,-26],[-18,-32],[6,-40],[14,-21],[10,-23],[3,-29],[-13,-32],[18,-46],[24,-43],[27,-17],[10,-17],[6,-39],[1,-33],[34,-43],[40,-31],[16,-17],[11,-41],[-32,-37],[-24,8],[-16,5],[-18,-31],[-11,-42],[-17,-3],[-12,-19],[-12,-18],[-10,-27],[-11,-46],[1,-32],[1,-45]],[[42113,35810],[-17,0],[-128,0],[-192,0],[-72,-1],[-203,3],[-62,1],[-72,0],[-195,0],[-248,-4],[-25,0],[-44,1],[-15,0],[-20,0],[-190,3],[-272,4],[-266,-4],[-102,13],[-170,1],[-25,0],[-178,1],[-5,0],[-15,0],[-41,0],[-162,-1],[-105,0],[-273,2],[-54,-1],[-214,-2],[-33,1],[-86,2],[-19,0],[-63,0],[-19,0],[-13,0],[-35,-1],[-18,0],[-17,0],[-98,0],[-105,-1],[-1,-1],[-3,-8],[-1,-2],[-13,-14],[-1,0],[-26,-29],[-5,-6],[-20,-21],[-7,-7],[-1,-1],[-6,-1],[0,-1],[-4,-16],[-40,-52],[-2,-2],[-140,-138],[-56,-107],[-10,-18],[-2,-4],[-1,-3],[-2,-2],[-38,-97],[-1,-4],[-1,-5],[-2,-4],[-1,-4],[-2,-3],[-1,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-2],[-2,-2],[-99,-90],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-1,0],[-49,-76],[-20,-138],[4,-9],[-1,-16],[-2,-20],[-1,-19],[-50,-71],[-14,-17],[-17,-14],[-23,-10],[-2,-2],[-2,-1],[-16,-7],[-24,-11],[-35,-69],[-86,-192],[-38,-90],[-12,-42],[-12,-85],[0,-1],[-1,-5],[-1,-5],[-1,-4],[-1,-5],[-1,-4],[-2,-4],[-1,-3],[-2,-4],[-2,-3],[-1,-3],[-2,-3],[-2,-2],[-2,-2],[-2,-2],[-12,-9],[-2,-2],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-2,1],[-2,0],[-3,1],[-2,1],[-105,14],[-25,-4],[-6,2],[-31,11],[-15,5],[-21,8],[-21,11],[-3,1],[-48,-19],[-4,2],[-9,2],[-2,1],[-43,2],[-13,1],[-1,0],[-73,-2],[-14,1],[-40,30],[-5,-7],[-6,0],[-31,18],[-24,14],[-6,4],[-27,48],[-14,-3],[-20,-6],[-9,-2],[-46,-2],[-46,9],[-36,23],[-14,19],[-2,2],[-97,74],[-10,7],[-5,3],[-12,7],[-10,-1],[-22,-14],[-48,-30],[-17,-12],[-10,14],[-2,2],[-3,2],[-2,2],[-44,50],[-7,8],[-9,-3],[-16,8],[-12,6],[-2,2],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-3,1],[-28,16],[-5,-4],[-5,-5],[-1,-4],[-12,-10],[-8,-2],[-6,0],[-8,5],[-44,33],[-4,5],[-21,23],[-5,9],[-61,121],[-9,24],[-5,14],[-1,2],[-3,28],[0,4],[-46,35],[-2,2],[-2,2],[-2,2],[-2,2],[-5,4],[-3,2],[-2,3],[-6,10],[-41,39],[-3,5],[-14,25],[-1,3],[-12,6],[-93,16],[-36,-35],[-22,12],[-17,1],[-2,0],[-5,2],[-1,-2],[-1,-9],[-6,-34],[-15,-32],[-37,-35],[-59,-57],[-28,-26],[-8,-8],[-47,-27],[-5,-1],[-11,-3],[-3,1],[-50,11],[-43,45],[-9,10],[-21,22],[-66,117],[-5,6],[-79,28],[-9,3],[-25,8],[-7,-2],[-29,-16],[-33,-21],[-17,-11],[-4,-8],[-42,-79],[-11,-21],[-35,-50],[-48,-68],[-3,-5],[-5,-7],[-71,15],[-41,4],[-31,-16],[-36,-18],[-6,-5],[-2,-6],[-6,-16],[-6,2],[-28,20],[-39,28],[-22,16],[-25,24],[-4,3],[-15,15],[-36,38],[-7,8],[-42,33],[-66,42],[-3,1],[-13,-2],[-5,-5],[-8,-11],[-2,-12],[-46,-32],[-4,-3],[-63,40],[0,3],[0,4],[-12,21],[-18,14],[-11,8],[-1,0],[-11,6],[-71,36],[-1,1],[-26,7],[-8,0],[-5,0],[-59,-12],[-22,-5],[-35,-7],[-71,-16],[-47,-10],[-77,-48],[-13,-7],[-28,-12],[0,-6],[-14,-24],[-10,-12],[-18,2],[-6,9],[-2,13],[-1,20],[1,21],[-10,21],[-32,21],[-28,17],[-17,12],[-22,16],[-13,9],[-15,4],[-44,11],[-2,1],[-40,16],[-19,8],[-16,7],[-23,1],[-9,0],[-29,0],[-14,0],[-11,0],[-11,10],[-14,3],[-27,-51],[-60,36],[-24,2],[-14,-9],[-12,-8],[-17,-1],[-17,15],[-2,10],[-7,29],[-8,20],[-29,23],[-25,19],[-21,8],[-9,-5],[-18,-10],[0,-2],[-11,-30],[-18,-17],[-17,-4],[-36,31],[-6,2],[-13,4],[-4,-5],[-26,-26],[-18,-1],[-12,17],[-16,38],[-34,16],[-25,11],[-54,61],[-4,4],[-13,15],[-13,14],[-2,2],[-8,10],[-11,-2],[-2,0],[-11,-1],[-3,0],[-3,-1],[-4,0],[-67,-8],[-24,44]],[[32571,35227],[-136,113],[-102,86],[-43,37],[-40,45],[-146,165],[-67,-17],[-32,-82],[-11,-29],[-18,-45],[-5,-1],[-36,-10],[-22,-6],[-91,-72],[-6,-5],[-76,-12],[-54,95],[-42,31],[-82,61],[-62,47],[-7,5],[-82,96],[-56,153],[-15,39],[-30,23],[-46,33],[-13,9],[-43,104],[-23,29],[-10,13],[2,30],[4,74],[0,1],[18,69],[7,25],[1,5],[26,43],[70,168],[2,7],[1,17],[-1,19],[-17,91],[-4,23],[-1,9],[-3,43],[-2,25],[-2,81],[1,44],[1,45],[3,4],[3,13],[10,43],[3,14],[0,24],[-4,19],[-8,39],[0,4],[-6,15],[0,2],[-1,0],[-7,10],[-27,22],[-13,4],[-21,0],[-37,-6],[-25,-9],[-13,-6],[-25,-22],[-3,-2],[-5,1],[-4,0],[-8,5],[-1,0],[-14,8],[-10,5],[-37,26],[-7,5],[-1,2],[-3,9],[-4,20],[-5,45],[0,3],[0,11],[1,2],[4,8],[12,21],[0,31],[-22,169],[-15,27],[-22,43],[-4,8],[-68,-59],[-1,-7],[-37,-84],[-11,-17],[-6,-6],[-7,-4],[-21,-6],[-12,-3],[-22,-5],[-14,-3],[-24,-2],[-16,1],[-11,5],[-22,12],[-49,27],[-16,9],[-14,12],[-16,27],[-10,25],[-16,50],[-7,12],[-4,4],[-11,-2],[-10,-13],[-8,-19],[-16,-22],[-10,10],[-24,27],[-10,11],[-44,56],[-3,4],[-8,-4],[-19,-18],[-4,-7],[-3,-4],[-44,-112],[-25,-23],[-9,0],[-42,17],[-28,28],[-13,28],[-4,24],[0,26],[0,22],[-10,14],[-24,16],[-8,3],[-12,-1],[-52,-15],[-77,-33],[-22,-10],[-7,-6],[-18,-16],[-23,-23],[-9,-4],[-13,3],[-8,2],[-10,10],[-5,15],[1,14],[13,27],[6,15],[3,9],[0,10],[-4,8],[-6,6],[-16,4],[-23,-3],[-13,-10],[-1,-1],[-9,-11],[-10,-6],[-16,1],[-11,11],[-13,27],[-3,8],[-6,23],[-1,13],[0,3],[-13,27],[-17,20],[-4,1],[-26,3],[-40,4],[-75,0],[-12,0],[-8,3],[-3,2],[-79,74],[-47,72],[1,8],[-1,8],[-6,9],[-16,7],[-42,-7],[-10,-5],[-6,-10],[-2,-8],[1,-12],[4,-33],[-16,-18],[-29,59],[-23,45],[-28,49],[-7,14],[-16,60],[2,22],[10,24],[15,28],[-2,4],[-19,16],[-38,23],[-29,-1],[-23,-1],[-15,0],[-52,-29],[-3,-2],[-14,-6],[-24,10],[-14,18],[-7,15],[-20,45],[-10,13],[-8,6],[-7,2],[-11,-2],[-2,-2],[-10,-9],[-13,-8],[-8,3],[-6,2],[-11,11],[-6,0],[-43,-19],[-5,-1],[-7,-1],[-11,6],[-11,11],[-1,17],[-1,22],[-6,104],[1,34],[6,26],[34,93],[5,4],[5,31],[-1,15],[-1,5],[-9,30],[-10,15],[-5,5],[-2,3],[-2,0],[-9,3],[-19,1],[-7,6],[-1,5],[1,17],[0,9],[3,28],[13,144],[-10,109],[-1,25],[-9,29],[-15,24],[-22,19],[-6,21],[-8,55],[0,18],[0,33],[3,25],[3,20],[20,56],[14,35],[0,5],[-11,35],[-38,90],[-80,96],[-34,37],[-45,36],[-26,14],[-16,2],[-66,-5],[-15,6],[-7,5],[-14,17],[-30,47],[-8,16],[-4,12],[-15,54],[-12,57],[-1,21],[-3,32],[-4,13],[-6,8],[-16,13],[-34,22],[-87,52],[-63,48],[-17,20],[-10,7],[-67,-3],[-77,41],[-2,1],[-5,4],[-6,3],[-25,27],[-9,9],[-13,18],[-4,6],[-4,7],[-5,11],[-4,8],[-11,30],[-1,4],[-18,69],[-2,5],[-2,9],[-2,21],[6,72],[-10,149],[-36,149],[-29,150],[-4,19],[-1,9],[-1,27],[-1,21],[9,23],[12,19],[15,14],[14,15],[18,3],[15,6],[16,7],[13,18],[2,31],[-12,13],[-16,2],[-17,-3],[-13,-6],[-13,-21],[-9,-20],[-14,-9],[-18,-6],[-10,4],[-1,7],[-8,14],[-6,37],[-5,19],[-10,11],[-15,15],[-29,22],[-12,5],[-12,-1],[-10,-4],[-13,-10],[-12,-20],[-10,-24],[-7,-11],[-7,-5],[-8,0],[-2,0],[-4,3],[-5,4],[-6,14],[-7,30],[-1,8],[-2,47],[8,26],[6,10],[20,19],[9,3],[15,-1],[50,-18],[25,-15],[14,0],[6,4],[6,15],[2,28],[-11,46],[-15,48],[-11,31],[-7,16],[-9,12],[-7,4],[-3,0],[-6,-2],[-2,-1],[-2,-3],[-3,-3],[-5,-15],[-1,-5],[-1,-5],[-2,-9],[-1,-6],[-4,-6],[-3,-7],[-22,-28],[-63,-12],[-42,0],[-43,2],[-21,7],[-21,24],[-16,23],[-10,12],[-106,19],[-13,-2],[-6,-4],[-3,-3],[-3,-7],[-1,-9],[2,-44],[2,-21],[7,-31],[2,-13],[0,-17],[-7,-103],[-7,-16],[-1,-3],[-7,0],[-15,9],[-36,39],[-10,15],[-13,15],[-13,10],[-9,2],[-40,0],[-42,7],[-29,11],[-2,2],[-6,4],[-21,31],[-15,33],[-12,22],[-54,72],[-10,20],[-4,12],[-5,26],[1,19],[6,42],[9,36],[22,57],[42,87],[6,14],[7,31],[2,14],[5,138],[0,78],[0,3],[-9,24],[-9,14],[-7,6],[-17,9],[-16,-3],[-18,-7],[-8,1],[-5,4],[-27,38],[3,21],[2,13],[-1,12],[-3,8],[-12,15],[-20,21],[-99,106],[-13,8],[-21,-13],[-39,-70],[-29,73],[1,33],[-2,12],[-1,7],[-27,43],[-65,91],[-13,14],[-22,22],[-12,1],[-16,-4],[-9,1],[-5,7],[-9,13],[-13,32],[-19,55],[-4,19],[-1,8],[-3,31],[1,17],[0,2],[4,21],[4,19],[14,34],[2,6],[1,20],[-1,14],[-6,14],[-8,11],[-51,55],[-18,14],[-6,7],[-2,4],[-5,16],[-3,39],[0,7],[1,38],[-6,14],[-1,2],[-1,4],[-12,31],[-6,25],[-2,13],[-8,135],[-2,37],[-2,27],[1,22],[5,26],[5,61],[5,60],[3,40],[-13,24],[-17,32],[-17,33],[-39,28],[-11,4],[-9,17],[-3,17],[23,53],[-1,8],[-2,36],[-23,19],[-43,36],[-1,1],[-10,10],[-9,14],[-57,81],[-13,20],[-9,15],[-6,15],[-2,8],[0,15],[3,7],[17,16],[2,7],[0,24],[-7,46],[-2,10],[-1,3],[0,2],[-1,1],[-18,65],[-15,55],[-2,13],[-3,19],[-20,47],[-1,1],[-9,22],[0,24],[20,78],[5,42],[1,18],[-1,8],[-6,29],[-14,37],[1,15],[46,43],[17,14],[26,12],[6,4],[11,9],[3,2],[25,20],[-11,98],[3,38],[10,59],[0,9],[-4,24]],[[86695,49614],[-1,-306],[-6,-176],[0,-10],[3,-711],[2,-552],[3,-727],[0,-185],[4,-961],[-1,-33],[-1,-183],[-1,-77],[-2,-127],[-1,-30],[3,-703],[1,-145],[3,-507],[0,-160],[0,-6],[0,-175],[1,-504],[-5,-265],[-1,-2],[-1,-45],[0,-113],[0,-155],[0,-128],[0,-53],[0,-100],[0,-88],[0,-274],[5,-41],[1,-166],[-1,-101],[1,-35],[2,-42],[0,-288],[1,-335],[0,-36],[2,-380],[1,-113],[1,-333],[1,-202],[0,-37],[1,-139],[1,-246],[-69,0],[-39,0],[-6,-191],[-28,-937],[-1,-29],[-9,-190],[-3,-32],[-12,-14],[-12,-21],[-16,-26],[-12,-20],[-11,-18],[-12,-14],[-20,-8],[-33,-13],[-29,-7],[-19,-1],[-16,-3],[-24,-18],[-3,-30],[-1,-57],[-11,-43],[-17,-30],[-10,-20],[-17,-39],[-24,-43],[-26,-32],[-15,-14],[-15,-22],[-17,-12],[-11,-15],[-24,-14],[-22,-29],[6,-34],[-3,-40],[-4,-34],[-1,-18],[4,-41],[5,-73],[11,-20],[28,-12],[15,-8],[2,0],[16,-1],[14,-1],[9,-1],[18,1],[14,-1],[5,2],[10,3],[15,-11],[-1,-31],[-19,-18],[-2,-30],[19,-74],[-8,-22],[-19,-23],[-4,-5],[-9,-10],[-14,-8],[-9,-22],[-9,-26],[-7,-28],[-6,-27],[-3,-30],[3,-31],[9,-26],[4,-32],[-15,-18],[-14,-14],[-10,-18],[-14,-11],[-44,-30],[-15,-24],[-6,-9],[-21,-50],[-16,-20],[-22,-27],[-21,-6],[-28,6],[-17,8],[-22,-1],[-13,-20],[-6,-27],[2,-44],[10,-45],[13,-48],[4,-28],[7,-64],[8,-28],[0,-36],[-13,-80],[-5,-29],[4,-58],[6,-35],[0,-3],[13,-52],[4,-17],[13,-11],[19,-24],[7,-31],[1,-30],[-21,-26],[-8,-35],[1,-30],[-1,-53],[-9,-23],[-18,-26],[-16,-14],[-22,-14],[-19,5],[-13,32],[-12,53],[-16,37],[-16,20],[-13,4],[-17,-14],[-13,-24],[-16,-8],[-20,-19],[-32,-18],[-23,-25],[-31,-96],[-10,-44],[-19,-103],[-7,-70],[0,-6],[-1,-48],[-1,-14],[-29,-50],[-17,-23],[-16,-10],[-19,-2],[-14,7],[-61,44],[-22,8],[-77,24],[-13,6],[-27,11],[-36,3],[-34,16],[-19,21],[-11,35],[3,34],[-10,19],[-18,8],[-16,-4],[-15,-5],[-24,-14],[-20,-18],[-16,-2],[-15,0],[-21,15],[-7,24],[-16,11],[-18,6],[-19,9],[-34,13],[-13,11],[-24,26],[-16,-29],[-11,-32],[-13,-26],[-9,-38],[-9,-34],[-12,-17],[-12,-10],[-22,12],[-19,10],[-24,0],[-38,-35],[-15,-26],[-8,-22],[-8,-49],[-17,-33],[-24,-23],[-15,-22],[-9,-30],[-15,-21],[-18,-13],[-66,-55],[-26,-19],[-17,-6],[-33,-5],[-30,-11],[-38,-7],[-31,-2],[-56,7],[-17,-1],[-20,-12],[-26,-26],[-18,3],[-42,-2],[-14,6],[-17,10],[-12,-17],[-8,-97],[13,-32],[7,-26],[-6,-17],[-6,-15],[-12,-35],[-18,-31],[-12,-28],[-20,-42],[-26,-31],[-43,-4],[-40,3],[-79,7],[-42,4],[-33,7],[-36,18],[-14,27],[-14,28],[-18,21],[-14,15],[-18,3],[-44,-39],[-20,-25],[-39,-50],[-29,-53],[-18,-34],[-8,-24],[-11,-29],[-17,-62],[-14,-18],[-26,-7],[-2,-1],[-21,-13]],[[83509,34530],[-404,3],[-121,2],[-34,-1],[-165,-2],[-141,-2],[-395,-21],[-92,-5],[-54,-3],[-152,-9],[-80,-5],[-36,-2],[-3,-1],[-21,-1],[-70,-6],[-133,-12],[-102,-1],[-117,-2],[-182,1],[-195,2],[-38,1],[-15,0],[-19,0],[-80,1],[-68,0],[-57,0],[-71,1],[-30,0],[-108,8],[-339,-8],[-68,-1],[-260,-6],[-65,4],[-44,2],[-126,4],[-22,-4],[-14,0],[-21,0],[-99,0],[-169,-2],[-97,-2],[-33,0],[-168,-2],[-69,0],[-166,2],[-353,-6],[-26,0],[-187,-9],[-54,-2],[-62,-1],[-209,-4],[-268,1],[-107,1],[-164,2],[-138,-6],[-198,0],[-142,-2],[-35,0],[-176,-9],[-46,4],[-68,2],[-199,-6],[-84,1],[-159,3],[-28,1],[-264,-1],[-47,-1],[-17,1],[-4,0],[-20,0],[-189,-1],[-134,3],[-125,4],[-11,0],[-13,-2],[-23,0],[-210,5],[-16,1],[-264,6],[-271,6],[-154,1],[-117,1],[-142,4],[-125,5],[-5,0],[-22,-1],[-69,0],[-159,-3],[-29,1],[-21,0],[-196,13],[-60,1],[-276,11],[-136,3],[-137,3],[-155,4],[-146,5],[-77,3],[-27,-2],[-87,1],[-310,1],[-16,0],[-47,4],[-121,0],[-31,0],[-92,0],[-172,-1],[-44,0],[-304,-1],[-65,0],[-37,0],[-44,0],[-21,0],[-35,1],[-95,2],[-144,2],[-165,2],[-28,-2],[-182,-2],[-86,0],[-49,-1],[-126,-4],[-274,-8],[-312,-4],[-174,-3],[-48,-1],[-273,-3],[-305,-4]],[[98419,49580],[0,-3],[0,-144],[1,-127],[0,-282],[0,-31],[0,-13],[1,-47],[0,-9],[0,-323],[0,-177],[0,-470],[0,-24],[0,-56],[0,-365],[0,-171],[0,-258],[0,-161],[1,-366],[0,-31],[0,-256],[0,-104],[1,-206],[0,-197],[1,-69],[0,-45],[-1,-37],[0,-178],[0,-296],[0,-41],[1,-255],[0,-42],[0,-109],[0,-79],[0,-6],[0,-114],[-1,-432],[0,-338],[0,-267],[0,-117],[0,-145],[0,-141],[-1,-73],[0,-149],[0,-62],[-1,-119],[0,-55],[0,-73],[0,-177],[1,-133],[0,-123],[0,-97],[1,-178],[0,-32],[0,-94],[0,-170],[0,-57],[1,-102],[0,-34],[0,-176],[0,-30],[0,-95],[1,-75],[0,-230],[0,-93],[1,-313],[0,-199],[0,-47],[0,-10],[0,-141],[0,-106],[0,-104],[0,-120],[0,-1],[0,-38],[0,-138],[0,-93],[0,-144],[0,-223],[0,-104],[0,-220],[0,-161],[0,-42],[-1,-88],[-1,-300],[-1,-357],[1,-229],[1,-83],[0,-32],[1,-181],[0,-82],[-4,-31],[0,-60],[0,-58],[0,-32],[1,-56],[-1,-34],[-1,-36],[1,-29],[1,-56],[2,-158],[0,-174],[0,-86],[0,-137],[0,-30],[0,-113],[0,-147],[-1,-328],[-1,-141],[0,-58],[0,-134],[-1,-171],[0,-151],[0,-100],[1,-126],[0,-162],[0,-1],[1,-74],[0,-6],[0,-55],[0,-23],[0,-19],[1,-232],[0,-109],[1,-74],[0,-255],[1,-141],[0,-33],[0,-43],[0,-202],[-1,-291],[0,-106],[0,-108],[-1,-588],[0,-99],[0,-120],[-1,-152],[0,-116],[0,-247],[0,-33],[-1,-101],[1,-120],[-1,-38],[0,-141],[0,-311],[0,-372],[0,-61],[0,-32],[1,-199],[-1,-256],[0,-55],[0,-193],[0,-359],[0,-70],[0,-143],[1,-55],[0,-275],[0,-27],[0,-11],[0,-300],[0,-168],[0,-81],[0,-305],[0,-45],[-1,-321],[0,-242],[0,-134],[0,-38],[0,-5],[0,-73],[0,-64],[0,-198],[-1,-119],[0,-47],[0,-92],[0,-164],[0,-200],[1,-118],[0,-70],[0,-16],[0,-18],[0,-50],[0,-32],[-1,-73],[0,-37],[1,-27]],[[98423,25474],[-16,17],[-27,29],[-31,23],[-23,18],[-21,12],[-23,22],[-30,6],[-16,-3],[-28,-5],[-20,-7],[-21,-11],[-17,-14],[-22,-9],[-64,-55],[-13,-10],[-19,-20],[-9,-11],[-14,-17],[-39,-47],[-47,-51],[-36,-40],[-33,-24],[-14,-21],[-12,-18],[-18,-14],[-23,-4],[-13,0],[-30,9],[-19,10],[-25,17],[-28,24],[-33,20],[-17,11],[-15,4],[-20,-1],[-19,6],[-18,2],[-16,3],[-14,1],[-15,4],[-12,3],[-22,5],[-13,5],[-13,13],[-18,16],[-24,18],[-16,15],[-13,9],[-16,11],[-23,14],[-44,45],[-45,40],[-39,15],[-17,1],[-13,13],[-18,9],[-25,24],[-29,13],[-22,6],[-26,-3],[-34,8],[-26,-3],[-12,-8],[-20,-5],[-18,-7],[-25,-14],[-30,-22],[-29,-16],[-35,-19],[-40,-26],[-27,-22],[-43,-34],[-37,-37],[-40,-33],[-44,-22],[-34,-9],[-59,-15],[-72,-14],[-28,2],[-18,8],[-25,21],[-20,22],[-17,18],[-18,17],[-23,17],[-31,38],[-11,23],[-14,31],[-11,33],[-12,51],[-3,42],[2,36],[4,38],[8,32],[14,40],[9,42],[5,31],[7,30],[18,62],[15,49],[10,24],[24,63],[-1,39],[-9,27],[-22,34],[-11,31],[-18,52],[-14,25],[-12,35],[-18,35],[-18,26],[-20,30],[-28,28],[-20,28],[-29,25],[-27,8],[-20,8],[-27,24]],[[96023,26529],[-16,14],[-27,20],[-12,17],[-8,29],[-17,37],[-22,42],[-9,35],[-5,39],[-9,30],[-4,38],[-5,63],[-4,41],[3,47],[4,46],[4,48],[13,67],[11,31],[9,62],[7,33],[6,32],[17,38],[7,47],[-1,32],[11,59],[6,57],[2,53],[1,30],[5,31],[-7,39],[-1,47],[-6,47],[-9,34],[-14,37],[-11,18],[-10,21],[-8,25],[-10,39],[-7,34],[-10,34],[-13,43],[-10,34],[-8,45],[-9,37],[-12,28],[-9,25],[-12,27],[-6,45],[-3,33],[-7,50],[-4,33],[-1,49],[-5,46],[-8,31],[-10,26],[-10,32],[-8,24],[-9,43],[-1,32],[-3,37],[-11,36],[-6,29],[-10,29],[-4,35],[-9,37],[-10,21],[-13,14],[-15,20],[-13,24],[-10,28],[-13,27],[-15,23],[-12,20],[-13,14],[-16,6],[-13,15],[-10,20],[-14,29],[-13,20],[-13,14],[-13,12],[-12,12],[-17,26],[-14,14],[-17,20],[-17,15],[-13,8],[-31,27],[-16,14],[-12,17],[-15,23],[-14,24],[-10,17],[-14,29],[-11,23],[-10,26],[-10,26],[-10,29],[-10,23],[-12,29],[-9,29],[-10,29],[-12,26],[-11,23],[-11,23],[-16,26],[-14,18],[-14,14],[-15,15],[-13,15],[-18,19],[-20,23],[-17,15],[-15,17],[-17,9],[-12,3],[-16,3],[-12,8],[-13,15],[-21,14],[-15,3],[-13,-6],[-12,0],[-13,3],[-17,9],[-14,0],[-15,-6],[-15,-3],[-13,3],[-17,-6],[-19,-3],[-15,0],[-18,9],[-14,0],[-19,3],[-23,6],[-19,6],[-27,10],[-18,4],[-17,17],[-14,13],[-13,12],[-13,6],[-19,18],[-11,16],[-19,17],[-17,28],[-19,34],[-15,33],[-13,34],[-11,28],[-10,29],[-3,36],[-12,42],[-8,24],[-11,48],[-5,28],[-7,39],[-11,27],[-13,17],[-12,33],[-17,23],[-14,26],[-12,14],[-14,12],[-21,25],[-12,9],[-15,17],[-16,30],[-12,17],[-12,16],[-22,23],[-17,15],[-13,8],[-20,15],[-14,10],[-14,20],[-11,20],[-14,21],[-12,20],[-13,14],[-12,15],[-12,26],[-10,32],[-8,29],[-9,31],[-4,35],[-7,29],[-9,32],[-12,72],[4,35],[-4,40],[-3,67],[1,29],[2,52],[13,49],[12,29],[11,40],[3,35],[0,35],[0,40],[-2,78],[4,41],[4,43],[1,32],[-3,34],[-9,39],[-8,22],[-15,27],[-16,24],[-15,21],[-12,14],[-19,17],[-24,14],[-39,19],[-37,11],[-34,9],[-38,9],[-33,8],[-20,7],[-24,-13],[-23,-9],[-32,-6],[-26,-10],[-20,-5],[-14,0],[-24,10],[-27,17],[-26,22],[-26,22],[-14,18],[-1,2],[-13,17],[-13,16],[-16,23],[-17,28],[-10,40],[-11,15],[-43,56],[-12,20],[-27,64],[-19,47],[-19,58],[-22,64],[-14,82],[-14,81],[-18,97],[-11,62],[-6,37],[-2,67],[-15,86],[-28,54],[-24,53],[-17,46],[-11,16],[-30,43],[-31,29],[-34,8],[-24,-2],[-31,-3],[-21,7],[-20,6],[-19,-5],[-16,-7],[-21,-16],[-42,-34],[-26,-23],[-27,-25],[-49,-56],[-26,-35],[-22,-45],[-23,-51],[-3,-33],[-4,-55],[-10,-60],[-11,-43],[-14,-29],[-15,-25],[-16,3],[-28,-26],[-23,-20],[-40,-32],[-33,-23],[-34,-9],[-50,-6],[-59,-14],[-51,5],[-47,12],[-40,9],[-38,23],[-25,14],[-41,26],[-74,12],[-92,-20],[-68,-29],[-102,-58],[-63,-36],[-44,-25],[-53,0],[-40,15],[-76,-32],[-69,-29],[-72,-17],[-93,20],[-88,37],[-59,58],[-76,87],[-56,116],[-37,115],[-46,107],[-45,105],[-36,75],[-57,52],[-80,52],[-78,23],[-92,-3],[-63,0],[-65,26],[-48,26],[-47,-8],[-32,-6],[-63,-76],[-81,-54],[-87,-12],[-119,-29],[-35,-10],[-49,-13],[-76,-41],[-55,-34],[-48,11],[-54,23],[-59,-52],[-35,-40],[-11,-15],[-41,-39],[-12,-32],[-11,-26],[-10,-22],[-30,-73],[-18,-65],[-16,-75],[-7,-53],[-8,-54],[-7,-51],[-2,-34],[-3,-66],[-1,-37],[-1,-35],[-1,-35],[-3,-49],[-4,-29],[-5,-35],[-4,-28],[-5,-35],[-7,-38],[-6,-29],[-7,-55],[-8,-32],[-13,-52],[-12,-37],[-13,-46],[-8,-29],[-10,-29],[-15,-44],[-14,-37],[-13,-32],[-9,-23],[-14,-35],[-13,-29],[-16,-29],[-17,-37],[-11,-15],[-18,-35],[-23,-34],[-13,-15],[-13,-20],[-16,-32],[-20,-35],[-19,-28],[-10,-24],[-24,-34],[-14,-23],[-21,-29],[-14,-20],[-30,-32],[-13,-12],[-6,-6],[-12,-11],[-14,-9],[-15,-12],[-13,-11],[-18,-12],[-20,-8],[-24,-9],[-23,-9],[-20,-6],[-19,-5],[-19,-6],[-28,-3],[-28,-3],[-22,-6],[-19,-6],[-18,-5],[-17,0],[-18,-3],[-14,0],[-14,0],[-23,3],[-22,5],[-29,15],[-14,6],[-17,11],[-19,6],[-18,6],[-19,3],[-27,6],[-18,2],[-35,8],[-27,7],[-15,1],[-20,-1]],[[88076,31228],[-12,-6],[-23,-11],[-25,-6],[-24,-6],[-15,-6],[-16,-11],[-26,-21],[-16,-14],[-16,-12],[-13,-11],[-20,-26],[-12,-15],[-20,-29],[-10,-20],[-11,-17],[-15,-32],[-9,-23],[-11,-38],[-9,-32],[-9,-34],[-7,-29],[-7,-23],[-11,-38],[-5,-32],[-7,-43],[-5,-49],[-4,-47],[-1,-31],[-3,-53],[-1,-34],[-8,-102],[-12,-91],[-15,-69],[-25,-57],[-33,-44],[-28,-16],[-26,-11],[-37,-5],[-33,-4],[-33,-2],[-24,-5],[-26,-2],[-17,0],[-18,0],[-14,0],[-17,0],[-22,6],[-22,5],[-19,6],[-19,3],[-20,6],[-25,11],[-19,6],[-15,9],[-19,6],[-18,5],[-21,9],[-20,6],[-22,3],[-14,6],[-16,8],[-14,9],[-18,12],[-19,11],[-17,9],[-22,8],[-21,3],[-19,3],[-16,3],[-18,6],[-23,9],[-15,8],[-23,15],[-43,20],[-24,-3],[-22,-3],[-21,-3],[-23,-11],[-12,-3],[-13,-9],[-22,-11],[-24,-12],[-22,-14],[-25,-9],[-15,-3],[-27,-6],[-23,-6],[-23,-8],[-26,-9],[-25,-14],[-14,-3],[-13,-9],[-15,-6],[-25,-8],[-20,-3],[-27,0],[-14,5],[-14,9],[-20,15],[-21,5],[-15,6],[-20,3],[-21,3],[-15,0],[-13,-6],[-97,2],[-45,-9],[-137,-50],[-51,-3],[-27,-4],[-31,-8],[-48,-15],[-51,-40],[-51,-56],[-24,-27],[-41,-46],[-99,-65],[-21,-9],[-65,-29],[-81,-31],[-51,-5],[-68,8],[-63,8],[-71,-4],[-51,-11],[-47,-41],[-44,-83],[-21,-82],[-10,-95],[-24,-74],[-34,-48],[-42,-44],[-45,-30],[-59,-17],[-48,-2],[-49,1],[-14,1],[-43,6],[-62,4],[-52,12],[-46,7],[-49,-8],[-40,-17],[-54,-33],[-51,-26],[-45,-4],[-44,12],[-50,24],[-43,28],[-32,36],[-27,41],[-21,27],[-23,61],[-16,47],[-5,16],[-14,37],[-21,35],[-27,35],[-40,47],[-34,49],[-22,43],[-23,52],[-19,38],[-36,75],[-28,42],[-22,39],[-17,42],[-24,43],[-19,38],[-21,43],[-21,18],[-20,13],[-18,8]],[[83435,30191],[6,34],[3,33],[20,37],[16,27],[10,32],[4,33],[1,48],[-12,27],[-19,0],[-12,18],[17,29],[25,24],[5,30],[6,32],[5,32],[21,20],[0,1],[6,33],[-4,35],[-5,45],[2,31],[23,19],[17,-4],[14,-7],[11,-21],[16,-27],[8,-11],[8,-9],[14,11],[9,36],[6,37],[1,34],[-5,37],[-7,50],[2,33],[-8,39],[14,37],[2,40],[0,33],[-8,66],[-9,26],[-18,20],[-17,23],[-19,19],[-16,19],[-32,47],[-16,26],[-20,16],[-32,23],[-29,36],[-14,35],[-3,31],[2,31],[19,62],[5,31],[-8,25],[-28,16],[-24,19],[-12,15],[-14,24],[-8,64],[-4,29],[-38,39],[-17,42],[-10,36],[-6,33],[0,29],[5,36],[-7,38],[-16,26],[-17,38],[6,42],[19,21],[4,40],[11,75],[10,18],[32,8],[6,27],[-7,24],[-8,33],[13,11],[3,31],[-9,41],[3,49],[2,31],[18,15],[-10,42],[14,33],[41,40],[15,26],[5,34],[-3,32],[-11,26],[-8,34],[-9,29],[-11,46],[-6,26],[-3,32],[-11,56],[-6,46],[-14,40],[-1,3],[-10,22],[-17,47],[-8,27],[-8,35],[-9,49],[-7,29],[-6,32],[-17,55],[-19,44],[-12,23],[-3,30],[-8,51],[-6,29],[-13,38],[-7,49],[-7,41],[-6,27],[-26,82],[-19,60],[-14,53],[-5,31],[-15,56],[-6,28],[-7,25],[-6,30],[-7,29],[-5,31],[-7,29],[-10,23],[-26,75],[-6,27],[3,34],[19,13],[21,8],[16,9],[19,31],[21,37],[12,13],[16,0],[20,-32],[13,-44],[12,-26],[24,-15],[20,6],[21,9],[25,47],[21,19],[14,4],[43,-5],[24,2],[18,6],[42,29],[61,18],[17,10]],[[32571,35227],[-27,0],[-40,-1],[-67,-2],[-21,-1],[-4,0],[-42,-1],[-66,-1],[-69,0],[-72,0],[-67,1],[-67,2],[-68,0],[-25,0],[-42,0],[-41,1],[-17,1],[-18,0],[-15,0],[-24,0],[-18,1],[-68,0],[-67,0],[-67,0],[-67,0],[-67,0],[-67,0],[-66,-1],[-67,0],[-67,-1],[-32,0],[-5,0],[-24,0],[-74,1],[-36,1],[-18,1],[-13,0],[-45,-1],[-23,0],[-15,0],[-24,0],[-29,0],[-13,0],[-29,1],[-23,0],[-23,1],[-15,0],[-15,1],[-14,0],[-44,1],[-21,0],[-40,1],[-33,-1],[-42,-1],[-67,-2],[-60,-3],[-36,-1],[-16,0],[-2,0],[-20,-1],[-17,0],[-52,-1],[-70,0],[-22,-1],[-37,0],[-44,0],[-28,-1],[-46,1],[-19,1],[-75,1],[-66,1],[-56,1],[-78,0],[-68,0],[-28,0],[-15,0],[-26,0],[-33,0],[-35,0],[-68,0],[-44,0],[-19,1],[-28,0],[-25,0],[-21,0],[-16,0],[-52,1],[-26,0],[-41,0],[-44,0],[-23,0],[-62,0],[-67,1],[-4,-30],[-65,4],[-13,1],[-52,3],[-31,2],[-34,3],[-17,1],[-48,3],[-31,1],[-37,2],[-51,3],[-18,1],[-69,3],[-49,3],[-19,1],[-49,2],[-18,0],[-51,2],[-17,1],[-24,1],[-43,1],[-40,2],[-27,0],[-68,-1],[-67,-1],[-68,-1],[-68,-1],[-77,-5],[-78,-5],[-7,-1],[-70,-5],[-78,-5],[-66,-3],[-59,-2],[-21,-1],[-52,-3],[-63,-2],[-42,2],[-25,2],[-18,1],[-49,4],[-20,1],[-20,1],[-27,2],[-44,3],[-23,2],[-69,7],[-69,6],[-63,1],[-64,2],[-66,2],[-64,3],[-15,0],[-17,0],[-35,1],[-65,0],[-45,1],[-22,0],[-48,0],[-13,0],[-26,1],[-47,0],[-67,1],[-66,0],[-66,1],[-66,1],[-66,1],[-67,0],[-18,0],[-48,0],[-31,1],[-19,0],[-18,0],[-39,0],[-14,0],[-65,-1],[-67,-1],[-63,-2],[-56,-1],[-15,0],[-61,1],[-73,0],[-47,1],[-20,0],[-67,1],[-22,-1],[-47,-2],[-17,0],[-52,-3],[-69,-2],[-70,-3],[-67,9],[-68,10],[-38,-1],[-21,-1],[-29,-1],[-45,-2],[-66,0],[-66,0],[-65,-1],[-66,-1],[-67,-1],[-68,0],[-70,0],[-67,0],[-67,-1],[-67,0],[-66,-1],[-67,0],[-37,0],[-30,1],[-56,1],[-62,1],[-16,0],[-66,1],[-68,2],[-67,1],[-65,2],[-3,0],[-62,2],[-13,0],[-23,0],[-36,1],[-25,1],[-13,0],[-9,0],[-20,0],[-61,1],[-74,0],[-67,1],[-41,1],[-26,0],[-68,1],[-42,1],[-25,0],[-67,2],[-43,1],[-24,1],[-66,2],[-38,0],[-22,1],[-8,0],[-36,0],[-36,-1],[-61,0],[-8,0],[-9,0],[-14,0],[-44,2],[-66,1],[-68,0],[-67,-1],[-15,0],[-53,-1],[-41,0],[-14,0],[-4,0],[-18,0],[-56,-1],[-66,-1],[-66,0],[-66,-1],[-68,-1],[-68,-1],[-13,0],[-53,1],[-67,0],[-66,2],[-67,2],[-67,-3],[-68,-3],[-20,-1],[-46,-3],[-67,-3],[-67,-3],[-22,-1],[-42,-2],[-69,1],[-50,1],[-20,1],[-40,0],[-28,1],[-36,0],[-32,1],[-70,4],[-71,4],[-62,0],[-42,0],[-20,0],[0,106],[-1,106],[0,106],[0,40],[0,67],[1,104],[1,104],[1,39],[0,65],[1,49],[1,55]],[[62281,31338],[1,-69],[0,-7],[1,-32],[-7,-407],[-1,-41],[-5,-582],[-2,-110],[0,-56],[0,-181],[-5,-148],[-3,-93],[-6,-38],[-4,-59],[4,-91],[24,10],[1,-310],[0,-192],[0,-69],[0,-194],[0,-10],[-2,-96],[-3,-129],[-1,-52],[0,-37],[1,-22],[-1,-32],[-2,-159],[1,-60],[1,-117],[0,-36],[1,-32],[1,-155],[4,-117],[-1,-173],[-3,-554],[1,-53],[5,-292],[3,-175],[3,-216],[1,-49],[1,-29],[0,-36],[1,-172],[0,-74],[0,-104],[1,-61],[0,-50],[0,-140],[1,-58],[0,-229],[0,-74],[0,-245],[1,-207],[0,-159],[-1,-160],[-1,-251],[-1,-55],[2,-210],[-1,-57],[0,-13],[-1,-81],[0,-79],[-1,-268],[0,-116],[0,-80],[-2,-109],[0,-34],[-2,-110],[0,-41],[-2,-61],[0,-39],[0,-59],[0,-57],[0,-52],[0,-55],[0,-50],[0,-52],[-1,-59],[0,-112],[0,-93],[-1,-54],[0,-56],[1,-107],[0,-94],[0,-61],[1,-59],[0,-149],[0,-60],[2,-208],[0,-106],[1,-117],[0,-77],[0,-58],[1,-117],[0,-54],[1,-108],[0,-130],[0,-8],[-1,-38],[-2,-34],[0,-33],[0,-71],[0,-38],[-2,-87],[1,-39],[0,-16],[0,-40],[1,-103],[-1,-213],[0,-68],[-1,-63],[0,-29],[0,-55],[0,-205],[54,-1],[35,0],[0,-100],[0,-30],[0,-45],[0,-42],[0,-88],[0,-45],[0,-56],[-2,-79],[1,-40],[0,-19],[0,-19],[2,-144],[1,-101],[0,-8],[1,-100],[0,-2],[1,-160],[4,-504],[0,-98],[10,-841],[1,-67],[-1,-129],[-4,-342],[-4,-302],[3,-202],[0,-179],[-1,-32],[0,-382],[0,-81],[0,-195],[0,-259],[-4,-332]],[[62380,14333],[-126,-4],[-123,-4],[-126,-4],[-15,0],[-9,0],[-52,-1],[-99,-2],[-194,3],[-21,0],[-37,-2],[-468,15],[-36,1],[-20,0],[-122,4],[-30,1],[-101,2],[-16,1],[-111,3],[-15,0],[-98,-1],[-15,0],[-32,0],[-238,-3],[-239,-2],[-44,-2],[-53,1],[-134,2],[-142,0],[-178,3],[-215,2],[-40,1],[-46,0],[-18,4],[-24,2],[-78,-5],[-121,-3],[-111,3],[-36,-3],[-24,1],[-253,-1],[-15,0],[-95,-1],[-18,1],[-115,0],[-254,1],[-19,0],[-83,1],[-125,-1],[-192,-2],[-139,2],[-156,10],[-60,2],[-21,1],[-23,-1],[-68,2],[-191,-2],[-170,-2],[-143,-2],[-20,0],[-79,0],[-83,0],[-120,-1],[-15,0],[-39,-1],[-124,2],[-34,1],[-117,3],[-126,4],[-133,-3],[-33,-2],[-86,-4],[-39,-4],[-97,-6],[-192,-18],[-88,-8],[-113,17],[-154,23],[-36,0],[-60,1],[-186,1],[-36,0],[-19,0],[-21,2],[-61,0],[-48,-1],[-133,-1],[-60,0],[-656,3],[-102,-1],[-19,0],[-58,-1],[-26,0],[-20,-1],[-20,-1],[-3,0],[-14,-1],[-14,-1],[-16,-1],[-40,-3],[-165,-16],[-17,-2],[-44,1],[-180,2],[-112,2],[-88,1],[-16,1],[-252,9],[-28,1],[-22,1],[-181,-3],[-280,2],[-87,0],[-231,2],[-16,-2],[-357,2],[-29,1],[-96,-1],[-75,1],[-195,2],[-104,1],[-64,1],[-40,0],[-49,1],[-168,2],[-20,0],[-439,5],[-12,0],[-63,2],[-366,5],[-35,0],[-39,3],[-69,2],[-27,2],[-13,0],[-43,1],[-42,2],[-65,0],[-21,1],[-17,1],[-27,0],[-75,0],[-45,-3],[-30,0],[-23,-1],[-79,-4],[-23,1],[-32,0],[-56,0],[-223,2],[-55,0],[-71,1],[-14,0],[-90,1],[-180,1],[-170,2],[-30,1],[-133,1],[-67,2],[-137,0],[-58,0],[-114,0],[-178,0],[-149,0],[-48,0],[-78,2],[-17,2],[-31,3],[-20,0],[-27,2],[-23,0],[-21,1],[-37,2],[-86,11],[-192,25],[-33,1],[-146,7],[-19,0],[-22,1],[-47,1],[-71,1],[-177,3],[-25,1],[-127,-3],[-146,-2],[-60,4],[-37,3],[-25,2],[-103,-6],[-53,-3],[-29,0],[-19,1],[-231,0],[-225,2],[-1,0],[-52,1],[-125,-3],[-119,9],[-14,0],[-253,-1],[-268,0],[-27,0],[-37,0],[-48,0],[-22,0],[-31,0],[-47,0],[-13,0],[-25,0],[-64,0],[-90,0],[-212,0],[-45,0],[-44,0],[-23,1],[-68,-1],[-28,1],[-117,-3],[-124,-2],[-59,-1],[-14,1],[-145,-2],[-217,-4],[-73,-1],[-61,-1],[-93,-2],[-116,-2],[-150,-2],[-48,-1],[-99,-1],[-44,-1],[-89,-1],[-97,-1],[-41,-1],[-50,-1],[-74,-3],[-41,1],[-18,0],[-124,1],[-41,0],[-67,1]],[[41234,14431],[1,152],[0,377],[0,167],[1,351],[0,65],[0,339],[0,270],[0,125],[1,186],[0,74],[0,175],[-1,56],[1,603],[0,587],[0,51],[1,392],[0,251],[0,8],[0,57],[0,3],[0,352],[0,2],[0,104],[0,12],[0,74],[0,18],[0,521],[0,28],[1,5],[0,368],[0,179],[-1,227],[0,73],[0,1],[0,1093],[0,135],[0,124],[0,609],[0,172],[0,431],[0,29],[0,31],[0,495],[1,201],[0,396]],[[41239,24400],[46,0],[66,10],[153,24],[67,10],[129,-1],[27,0],[336,-7],[28,0],[147,12],[11,18],[16,-1],[19,3],[14,-19],[17,-12],[14,6],[14,-10],[20,7],[18,6],[11,17],[13,-4],[13,-28],[21,-6],[29,-1],[47,-1],[25,39],[17,-2],[18,-13],[27,-10],[16,-3],[17,0],[35,13],[14,0],[20,-8],[20,-20],[36,-1],[16,0],[104,-1],[12,38],[15,70],[-3,37],[9,22],[12,23],[-7,34],[3,40],[5,31],[8,29],[9,23],[14,11],[5,28],[-13,24],[-13,17],[-6,26],[10,37],[32,51],[15,42],[2,34],[-10,27],[-16,22],[-13,31],[-10,30],[-15,58],[-14,9],[-14,26],[-14,46],[-13,45],[-13,50],[-12,15],[-27,21],[-20,17],[-16,29],[-16,89],[-14,23],[-15,3],[-13,21],[-9,29],[-4,29],[2,32],[5,34],[-2,31],[-7,47],[2,36],[2,31],[-7,29],[-14,31],[-10,27],[-3,39],[3,32],[-4,31],[-13,18],[-13,32],[-7,40],[-1,32],[-13,28],[-11,34],[0,48],[7,33],[11,18],[6,41],[3,31],[12,17],[1,30],[-12,-8],[-15,24],[-13,-11],[-14,9],[-16,35],[-18,11],[-5,29],[-18,15],[-23,9],[-30,5],[-13,32],[2,40],[-9,26],[-16,19],[-9,22],[-7,47],[-11,30],[-11,17],[-32,43],[-12,20],[-9,20],[-14,44],[3,77],[7,36],[0,35],[7,35],[27,36],[11,36],[-1,29],[11,30],[19,36],[10,33],[61,51],[11,18],[-4,29],[-23,23],[-15,35],[-7,33],[-10,19],[-4,22],[-10,14],[-15,12],[-41,-1],[-47,28],[-5,4],[-5,4],[-11,10],[-76,28],[-15,29],[-15,17],[-23,12],[-19,17],[-8,24],[-6,48],[-17,16],[4,35],[3,21],[-2,37],[2,3],[-4,16],[-27,47],[-11,17],[-4,30],[-4,35],[-1,53],[11,65],[3,25],[0,7],[2,6],[1,12],[1,33],[-4,35],[4,30],[18,23],[7,52],[2,31],[2,41],[11,18],[11,32],[-4,33],[-4,42],[11,17],[16,10],[18,17],[20,8],[60,9],[17,12],[18,20],[23,31],[38,45],[15,6],[19,-11],[15,0],[22,12],[11,18],[8,30],[26,29],[11,18],[23,13],[33,50],[37,92],[-7,30],[-31,35],[-15,23],[-1,29],[23,60],[18,18],[15,12],[19,30],[7,23],[8,24],[14,18],[-14,23],[-8,24],[-19,12],[-14,35],[-21,28],[-18,40],[-13,17],[-7,25],[2,32],[-9,40],[-15,37],[-15,15],[7,30],[14,23],[16,39],[9,31],[16,62],[16,4],[16,-21],[19,2],[16,25],[7,28],[11,24],[13,35],[6,33],[38,2],[20,13],[17,27],[-1,31],[7,47],[7,25],[14,33],[11,39],[2,32],[1,57],[3,65],[-5,31],[-27,69],[-7,53],[-12,35],[-17,36],[5,40],[12,35],[9,35],[10,18],[16,14],[20,2],[15,6],[-3,32],[0,46],[6,47],[11,26],[15,13],[19,13],[10,27],[10,34],[22,10],[26,24],[31,24],[12,30],[12,73],[8,22],[-12,37],[-4,35],[-2,32],[-14,25],[-5,40],[3,73],[7,39],[8,33],[12,31],[7,27],[4,39],[-7,30],[-8,31],[-22,34],[-4,5],[-14,20],[-20,10],[-13,3],[-23,1],[-24,13],[-13,29],[4,32],[7,27],[24,62],[-10,21],[-29,-1],[-31,-7],[-17,16],[-10,17],[-19,3],[-17,7],[-13,13],[-21,10],[-22,-5],[-23,-1],[-20,9],[-10,18],[-18,39],[-8,26],[-3,38],[-4,67],[4,67],[0,63],[9,51],[9,36],[14,36],[20,38],[13,33],[-6,26],[-7,61],[2,31],[8,29],[-2,32],[-14,37],[-5,47],[5,31],[18,27],[13,32],[24,81],[3,45],[-4,28],[17,-3],[47,26],[19,18],[14,19],[7,30],[12,27],[19,7],[24,-12],[21,-15],[13,1],[32,4],[21,-10],[19,4],[15,5],[13,-4],[18,-24],[23,-12],[28,1],[21,2],[16,7],[14,17],[10,27],[6,33],[1,47],[8,45],[-8,39],[-16,26],[-15,31],[-12,29],[-16,41],[-8,40],[5,75],[19,37],[16,38],[11,20],[13,15],[22,17],[24,-2],[21,9],[9,21],[1,37],[12,21],[24,10],[22,18],[27,20],[14,18],[-3,278],[-19,48],[-11,18],[-15,13],[-33,51],[-14,19],[-13,8],[-24,2],[-28,19],[-17,1],[-30,-6],[-19,5],[-14,13],[-14,23],[-17,-8],[-16,9],[-16,-11],[-11,-18],[-22,-6],[-18,0],[-34,12],[-18,-4],[-16,-16],[-15,-4],[-16,-1],[-27,7],[-21,-3],[-14,24],[-14,10],[-22,-20],[-18,-1],[-18,16],[-13,21],[-10,45],[-5,36],[-3,38],[-36,84],[-36,12],[-21,3],[-18,14],[-14,13],[-22,25],[-27,16],[-20,-1],[-39,20],[-16,4],[-13,23],[-8,32],[-1,42],[7,34],[21,66],[15,29],[16,25],[4,41],[7,28],[12,35],[13,27],[-8,28],[-9,22],[9,29],[0,39],[-13,23],[-15,8],[-13,5],[-15,9],[-21,-2],[-15,13],[-11,16],[-17,2],[-19,-5],[-22,-4],[-16,-5],[-16,-3],[-18,-7],[-18,16],[8,24],[19,15],[18,18],[3,30],[-7,27],[-8,22],[-12,47],[-12,22],[-10,19],[-12,28],[-15,2],[-12,14],[-20,-1],[-6,43],[-3,33],[1,48],[-9,30],[-18,11],[-9,31],[-12,24],[-15,27],[-13,38],[-16,57],[-4,46],[0,47]],[[9950,27250],[32,-23],[24,3],[13,-90],[-2,-98],[-16,-37],[-32,-33],[-29,28],[-9,3],[-40,26],[-11,32],[-28,75],[-9,-10],[1,-20],[10,-28],[4,-26],[-18,-35],[2,-10],[9,-7],[27,3],[26,-18],[21,-17],[18,-10],[0,-21],[-14,-22],[-12,-45],[-16,-7],[0,-16],[18,-12],[10,-33],[0,-43],[5,-4],[17,38],[-4,78],[25,54],[31,13],[24,-37],[26,-44],[29,-61],[8,-10],[-6,-49],[-11,-10],[-7,-21],[-4,-31],[25,-28],[3,33],[-1,44],[22,52],[57,23],[42,38],[167,-250],[-4,-20],[3,-85],[2,-81],[-35,-57],[-29,-69],[5,-59],[-6,-99],[8,-68],[2,-26],[40,-119],[7,-101],[-31,-163],[24,-91],[36,-92],[46,-41],[18,-60],[1,-33],[1,-36],[0,-26],[-8,-30],[-12,-43],[-14,-30],[-14,-32],[-10,-21],[-18,-42],[-14,-30],[-27,-6],[-20,-4],[-56,-2],[-29,11],[-34,-7],[-32,-39],[-36,11],[-35,-4],[-30,11],[6,116],[-19,93],[-15,80],[-20,89],[18,83],[41,115],[4,87],[-22,68],[-22,61],[-18,44],[-25,32],[-92,71],[-96,66],[-46,56],[-26,61],[-15,97],[-13,65],[-20,37],[-25,27],[-20,26],[-16,36],[-15,22],[-3,33],[-4,41],[31,-7],[34,-2],[-6,-34],[-11,-30],[21,-36],[29,-22],[12,35],[19,44],[18,-31],[6,41],[3,114],[-43,126],[-2,85],[13,87],[-5,93],[-3,123],[9,98],[16,135],[34,108],[12,96],[23,27],[34,17],[42,2],[19,-34],[1,-210],[7,-33],[24,-52]],[[17674,36068],[-1,-39],[0,-2],[-1,-64],[-2,-105],[0,-80],[-1,-92],[1,-36],[0,-96],[0,-81],[0,-103],[0,-30],[0,-77],[-2,-60],[-1,-42],[-2,-102],[-1,-36],[-1,-67],[-1,-37],[-2,-66],[-4,-107],[-4,-93],[-5,-123],[-5,-107],[25,1],[4,-58],[1,-64],[2,-101],[1,-102],[1,-61],[1,-41],[4,-67],[2,-36],[7,-103],[2,-33],[4,-71],[4,-64],[3,-39],[2,-101],[3,-101],[3,-101],[2,-82],[4,-124],[3,-105],[4,-105],[2,-58],[2,-47],[1,-29],[2,-72],[2,-102],[2,-102],[2,-101],[1,-41],[2,-63],[3,-104],[2,-104],[3,-104],[1,-44],[0,-47],[1,-113],[0,-38],[-1,-57],[0,-110],[0,-23],[1,-78],[2,-116],[-4,-110],[-4,-110],[1,-104],[0,-104],[0,-104],[0,-30],[0,-46],[3,-134],[2,-107],[2,-107],[2,-107],[-2,-71],[-4,-129],[-3,-99],[-3,-100],[2,-107],[2,-108],[2,-104],[1,-105],[63,5],[10,-87],[2,-90],[2,-65],[1,-40],[0,-26],[2,-82],[2,-74],[0,-38],[3,-112],[-1,-102],[0,-102],[0,-71],[0,-30],[0,-102],[0,-30],[0,-46],[0,-33],[0,-109],[0,-94],[0,-95],[1,-102],[1,-101],[1,-102],[1,-84],[-2,-128],[-2,-110],[5,-99],[3,-53],[2,-46],[1,-32],[2,-74],[2,-61],[1,-44],[-1,-80],[-1,-122],[-1,-49],[0,-58],[-1,-89],[-2,-112],[0,-39],[-1,-46],[-2,-112],[-2,-99],[-1,-56],[0,-74],[-1,-111],[1,-100],[1,-101],[1,-93],[1,-108],[-2,-106],[-1,-105],[-1,-11],[0,-57],[-1,-37],[-2,-106],[0,-65],[0,-37],[0,-102],[0,-104],[0,-105],[0,-105],[1,-104],[0,-105],[1,-104]],[[17835,24265],[-102,4],[-127,-1],[-78,-1],[-176,-2],[-62,-1],[-180,-2],[-579,-7],[-352,-4],[-38,-1],[-130,-1],[-118,2],[-69,1],[-1,0],[-159,3],[-235,4],[-100,2],[-25,0],[-29,1],[-22,0],[-90,2],[-197,3],[-22,1],[-81,0],[-65,1],[-114,1],[-267,2],[-146,4],[-193,6],[-69,2],[-72,3],[-19,0],[-39,1],[-68,2],[-304,10],[-22,0],[-76,3],[-79,2],[-128,4],[-28,1],[-6,0],[-24,-5],[-1,-47],[-1,-76],[0,-20],[-1,-120],[-1,-60],[0,-45],[-1,-37],[0,-72],[-1,-71],[-2,-238],[0,-30],[-1,-105],[-1,-99],[-1,-143],[-4,-503],[-3,-328],[-3,-396],[-3,-351]],[[13120,21564],[-9,-41],[-74,5],[-35,6],[-54,22],[-33,34],[-27,24],[-45,-16],[-19,-57],[-13,-87],[-17,-81],[-27,-102],[-47,-26],[1,-111],[-24,-35],[-34,-13],[-47,-18],[-50,1],[-39,24],[-41,49],[-29,46],[-28,62],[-24,28],[-31,33],[-42,28],[-66,37],[-37,13],[-37,7],[-30,-16],[-39,-22],[-38,-49],[-33,-39],[-14,-67],[-29,-81],[-15,-118],[-27,-51],[-44,-7],[-32,7],[-41,-6],[-47,1],[-27,11],[-21,-35],[-37,-28],[-10,-103],[-2,-31],[-14,-26],[-53,-24],[-93,-45],[-7,-85],[-14,-64],[-67,-135],[-38,-30],[-49,-8],[-38,-81],[-21,-72],[-37,-62],[-20,-11],[-26,-16],[-53,20],[-25,12],[-45,15],[-113,34],[-63,26],[-73,38],[-52,12],[-87,123],[-32,32],[-40,8],[-31,25],[-4,61],[-12,65],[-33,74],[-26,30],[-26,30],[-33,66],[-52,79],[-45,54],[-44,52],[-33,47],[-19,62],[-33,66],[-28,52],[-21,64],[-18,70],[-2,57],[-14,43],[-35,50],[-50,52],[-24,36],[-27,43],[-14,67],[-3,70],[18,91],[-7,81],[-59,17],[-71,100],[-29,39],[-33,30],[-80,62],[-74,40],[-51,20],[-38,1],[-50,11],[-93,18],[-39,17],[-24,16],[-46,-67],[-43,-83],[-50,-78],[-41,-23],[-51,-28],[-94,-109],[-44,-54],[-8,-94],[-49,-150],[19,-52],[2,-140],[-4,-95],[43,-60],[38,26],[24,-26],[4,5],[45,-58],[-20,-55],[14,-77],[-5,-11],[-38,81],[-62,-12],[-48,38],[-52,63],[-31,52],[-19,-50],[-96,-132],[-150,-167],[-26,28],[11,200],[51,422],[19,146],[-29,53],[7,86],[34,41],[28,52],[18,55],[9,73],[13,47],[3,55],[11,70],[12,92],[9,91],[11,89],[16,86],[3,106],[5,109],[7,114],[5,98],[6,84],[4,63],[1,70],[10,170],[3,63],[6,185],[5,139],[3,163],[10,70],[-2,88],[11,118],[3,100],[0,129],[2,118],[5,101],[-1,91],[4,100],[3,106],[2,310],[2,81],[2,180],[7,140],[-5,71],[-2,64],[5,114],[-1,66],[2,95],[2,85],[1,75],[-1,103],[-4,96],[5,110],[-2,125],[-1,109],[0,89],[-3,142],[-2,127],[6,188],[-8,60],[-5,113],[-3,126],[-9,118],[-9,141],[-4,77],[-1,98],[-1,115],[1,89],[-2,80],[-4,69],[-1,118],[0,88],[-1,87],[-9,62],[-5,58],[0,138],[-6,89],[-2,116],[-4,73],[-2,104],[-15,150],[-3,94],[-2,98],[-7,137],[-15,166],[-8,154],[-4,89],[-7,90],[-14,159],[-4,103],[1,146],[6,66],[2,83],[-10,180],[-2,68],[-2,64],[-7,101],[-2,51],[-13,307],[44,265],[97,98],[85,-222],[33,-76],[18,-25],[34,-48],[56,-72],[16,-33],[36,-78],[27,-72],[-4,-31],[-8,-57],[-17,-22],[-19,6],[-22,14],[-39,-41],[-6,-26],[-18,14],[-15,-20],[13,85],[-15,106],[-8,42],[5,29],[5,78],[-30,-58],[-30,-20],[-20,-27],[-6,-138],[-1,-79],[7,-54],[11,-71],[3,-67],[23,-80],[48,-106],[46,-149],[28,-73],[17,-101],[18,-68],[9,-67],[21,-29],[27,-34],[31,-55],[19,-56],[39,-99],[22,-88],[20,-79],[-6,-66],[6,-90],[2,-144],[1,-75],[-2,-54],[1,-81],[-6,-121],[-4,-122],[-10,-125],[-4,-136],[2,-78],[-4,-117],[-4,-71],[5,-100],[-5,-69],[0,-78],[-4,-62],[6,-87],[9,-137],[-2,-81],[5,-78],[12,-54],[-21,-23],[-17,-40],[-24,-67],[3,-70],[-12,-64],[-13,-98],[-17,-85],[1,-63],[10,-96],[6,-109],[5,-85],[11,-110],[13,-137],[14,-151],[13,-117],[0,-58],[-1,-58],[0,-104],[-7,-87],[2,-90],[6,-93],[15,-76],[8,-86],[39,-125],[10,-74],[0,-69],[2,-85],[7,-94],[4,-109],[11,-86],[-1,-69],[4,-81],[2,-104],[7,-95],[-2,-80],[-3,-60],[12,-74],[-4,-147],[-1,-121],[4,-62],[5,-61],[9,-140],[16,-111],[10,-69],[29,-53],[7,-24],[16,-50],[9,-1],[24,66],[47,9],[17,-39],[19,-8],[145,119],[141,72],[173,-46],[54,-135],[-1,-138],[3,-18],[2,-15],[2,-13],[32,74],[1,-1],[50,-15],[7,-42],[6,-35],[5,-7],[3,-3],[14,37],[-15,180],[-19,60],[8,137],[23,96],[-22,83],[4,65],[5,58],[3,55],[0,83],[-1,62],[1,94],[60,43],[70,85],[21,46],[42,95],[40,88],[27,61],[44,14],[34,41],[40,96],[-16,76],[-24,86],[-46,71],[-41,38],[-24,59],[-1,54],[3,94],[22,33],[9,13],[-4,30],[-19,59],[-51,56],[-14,60],[-7,78],[24,94],[19,113],[41,0],[48,-48],[26,-42],[20,-108],[7,-98],[4,-95],[-17,-79],[-11,-63],[10,-128],[29,-65],[45,-32],[36,-23],[29,5],[27,1],[49,-31],[46,-5],[1,0],[31,-16],[88,7],[25,-44],[8,-40],[5,-22],[11,6],[-3,50],[-3,44],[30,41],[43,-6],[55,-62],[30,-44],[2,-3],[69,-103],[17,-11],[66,-58],[57,-38],[36,-17],[32,-36],[49,-56],[22,-67],[12,-88],[19,-87],[16,-38],[19,-51],[11,-53],[19,-42],[7,-83],[30,-144],[19,-116],[7,119],[-2,154],[-10,120],[-19,106],[-16,112],[-14,51],[-18,56],[-17,85],[-19,54],[-39,69],[-11,11],[-36,36],[-50,-6],[-53,10],[-37,33],[-26,40],[-52,65],[-14,16],[-66,66],[-2,0],[-39,27],[-23,39],[-48,36],[-44,21],[-58,-40],[-49,-11],[-33,19],[-2,1],[-24,22],[-19,29],[-23,49],[-19,67],[12,90],[12,70],[0,94],[-24,109],[-44,120],[-49,81],[-52,41],[-53,57],[-46,43],[-24,21],[-49,46],[-21,-16],[-13,0],[-18,31],[-13,90],[-25,80],[-27,51],[-8,86],[17,95],[-11,96],[-6,74],[17,53],[25,33],[26,32],[25,31],[50,54],[31,20],[37,27],[6,70],[28,71],[26,82],[13,65],[2,81],[-22,84],[29,28],[40,10],[35,32],[6,14],[13,25],[13,3],[2,-3],[6,-10],[6,-41],[126,-117],[27,-70],[12,0],[5,0],[3,32],[-30,65],[-6,43],[47,47],[50,41],[3,15],[-26,52],[-9,76],[-11,74],[-7,59],[-11,143],[-3,12],[7,94],[4,52],[-8,37],[4,16],[22,15],[8,11],[23,58],[-7,50],[-26,20],[5,93],[1,24],[9,57],[-9,64],[-55,50],[-61,23],[-38,41],[-22,81],[-20,47],[-25,51],[-37,58],[-25,90],[-49,78],[-12,75],[7,63],[-1,58],[-4,55],[-7,53],[-21,80],[-22,93],[-17,74],[-24,84],[-43,81],[-43,64],[-33,48],[-63,81],[-32,31],[-68,117],[-44,150],[-47,71],[-9,69],[2,104],[7,78],[6,67],[-4,82],[-7,82],[1,105],[-16,132],[37,12],[25,-40],[43,-73],[7,-90],[12,-42],[21,-66],[29,-96],[15,-58],[60,-85],[72,-39],[26,-17],[50,-63],[43,-29],[38,-8],[3,1],[70,40],[32,1],[19,1],[4,-5],[5,-6],[-3,-30],[-13,-20],[-22,-58],[6,-98],[-1,-65],[1,-2],[4,-20],[61,-100],[39,-57],[-6,-89],[9,-1],[4,-1],[17,36],[4,29],[2,16],[34,-8],[4,-2],[21,6],[10,3],[7,-28],[3,4],[13,15],[2,6],[12,44],[10,35],[2,9],[-1,4],[-6,16],[-16,-37],[-22,-16],[-32,6],[-58,-6],[-18,31],[-43,46],[-11,16],[-20,34],[-11,173],[5,9],[2,5],[16,29],[20,31],[7,0],[9,-28],[1,-14],[-27,-68],[19,-8],[3,7],[21,45],[3,61],[-5,38],[-29,23],[-32,31],[-17,-2],[-5,0],[-36,32],[-44,18],[-17,14],[-39,32],[-55,109],[-21,24],[-19,67],[21,92],[35,53],[14,25],[13,-10],[40,-19],[1,-1],[30,-49],[18,-1],[-10,59],[-29,40],[-4,2],[-36,17],[-24,0],[-23,29],[-34,-42],[-29,-10],[-24,26],[-30,100],[-28,76],[-1,87],[24,38],[27,-17],[44,-2],[13,11],[-11,29],[-15,17],[13,55],[53,35],[25,33],[34,23],[35,64],[-2,77],[-1,72],[0,78],[9,108],[10,137],[-18,64],[-23,26],[-26,11],[-3,20],[4,19],[25,8],[30,40],[27,52],[34,63],[37,25],[41,4],[51,-8],[44,19],[16,30],[28,35],[63,81],[25,32],[31,34],[95,107],[28,31],[53,60],[36,36],[37,35],[47,47],[43,42],[4,2],[116,82],[32,10],[19,6],[17,5],[48,-18],[55,-35],[70,-99],[49,-72],[36,-70],[46,-82],[42,-78],[12,-91],[9,-75],[5,-90],[9,-86],[14,-55],[24,-46],[25,-72],[13,-36],[74,-107],[72,-27],[52,30],[33,40],[26,42],[68,106],[40,96],[30,71],[41,-10],[12,-73],[30,-32],[81,44],[56,68],[30,45],[-28,62],[-28,-31],[-45,-6],[-98,-7],[-34,24],[-60,-98],[-20,-3],[-81,-79],[-64,-99],[-28,-59],[-33,-62],[-20,-7],[-53,66],[-38,75],[-19,49],[-14,70],[-8,73],[-5,49],[-1,123],[0,34],[14,15],[17,0],[8,-13],[-1,-20],[-1,-19],[10,-32],[8,-11],[7,18],[-5,35],[1,27],[-1,58],[-36,3],[-26,20],[-31,39],[-16,41],[-26,63],[-41,83],[-17,31],[-44,105],[-42,69],[-1,11],[22,26],[17,7],[18,19],[-1,22],[-32,-19],[-7,8],[-36,35],[-28,32],[-3,119],[-14,63],[-31,81],[18,31],[1,6],[-7,22],[-97,1],[-22,36],[-17,77],[-15,37],[-22,34],[-19,-15],[-29,3],[-35,27],[-29,62],[-31,23],[-72,11],[-43,15],[-38,41],[-22,37],[-21,48],[-17,36],[-5,32],[-9,49],[-35,106],[-24,26],[-39,9],[0,29],[28,50],[28,78],[-1,62],[-16,10],[-1,5],[-14,60],[-5,10],[-8,-11],[1,-76],[0,-39],[-7,-20],[-9,10],[-12,60],[-26,21],[-26,-1],[-31,-3],[-49,-17],[-51,-31],[-39,-33],[-41,-42],[-25,-47],[-35,-83],[-18,-36],[-17,-55],[10,-40],[16,-17],[29,-102],[19,-73],[5,-52],[-19,-61],[-51,4],[-45,17],[-27,-31],[-55,-28],[-79,-2],[-52,-4],[-77,-2],[-51,5],[-30,22],[-89,103],[-26,34],[-35,60],[-51,77],[-35,21],[-32,23],[-54,39],[-1,0],[-19,-1],[-8,-17],[6,-77],[26,-44],[0,-101],[-22,-103],[-5,-26],[-20,-26],[-102,-20],[-10,-2],[-1,-33],[35,-43],[46,-51],[112,-64],[26,-41],[-40,-58],[-30,30],[-74,24],[-103,51],[-9,-91],[34,-7],[35,-32],[28,-36],[17,-20],[26,-30],[33,-27],[1,-2],[50,-4],[52,-36],[36,-25],[10,-34],[-5,-33],[-35,-25],[-26,5],[-3,-1],[-61,0],[-6,7],[-27,12],[-42,37],[-59,42],[-13,-20],[-46,-86],[-93,-52],[-78,8],[-44,65],[-27,25],[-37,56],[-6,34],[14,76],[47,22],[-19,-109],[21,-42],[38,-34],[74,-28],[31,13],[55,18],[-4,30],[-21,1],[-33,-24],[-10,-7],[-42,42],[-50,98],[-3,93],[-92,85],[-52,63],[-6,70],[-6,28],[-8,4],[-1,-2],[-7,-37],[-47,-63],[-27,19],[-26,-19],[1,-56],[58,-76],[18,1],[66,-20],[-5,-36],[-31,-25],[-35,25],[-10,24],[-44,27],[-63,87],[-32,54],[13,49],[8,46],[0,38],[-12,48],[-13,14],[-100,35],[-55,19],[-16,-11],[1,-31],[67,-47],[25,-11],[75,-31],[6,-21],[-29,-38],[-61,20],[-110,85],[-57,86],[-121,104],[-153,102],[-208,87],[-95,193],[31,123],[0,41],[10,231],[-2,146],[-1,64],[-3,106],[-1,124],[-1,70],[-6,133],[-5,146],[-7,115],[-10,88],[-2,59]],[[41239,24400],[-43,0],[-51,0],[-66,0],[-57,0],[-46,-1],[-85,0],[-9,0],[-83,-1],[-46,0],[-154,-2],[-113,-1],[-163,-1],[-107,0],[-131,-10],[-134,12],[-48,0],[-106,0],[-42,0],[-37,-1],[-23,0],[-55,1],[-216,0],[-264,-2],[-123,1],[-148,1],[-16,0],[-250,1],[-34,-4],[-119,-11],[-3,-1],[-54,-5],[-155,5],[-23,1],[-90,4],[-264,6],[-273,14],[-149,2],[-2,0],[-121,2],[-2,0],[-42,-1],[-217,-2],[-183,8],[0,-51],[-20,0],[-94,1],[-58,1],[-25,0],[-69,1],[-60,-1],[-140,-2],[-73,-1],[-85,2],[-49,1],[-74,2],[-56,1],[-50,0],[-101,0],[-114,0],[-61,-2],[-19,0],[-43,-1],[-15,0],[-129,-3],[-32,1],[-2,0],[-101,5],[-104,5],[-30,1],[-66,2],[-190,4],[-266,-5],[-14,-2],[-51,1],[-219,6],[-153,-2],[-14,0],[-38,0],[-2,0],[-44,-1],[-19,0],[-260,8],[-138,1],[-112,2],[2,-53],[-120,-2],[-144,-1],[-266,-5],[-105,1],[-163,3],[-105,0],[-24,0],[-139,0],[-68,-2],[-67,-3],[-18,0],[-32,-2],[-18,0],[-29,-1],[-24,-1],[-15,-1],[-50,0],[-14,-1],[-26,0],[-39,-1],[-4,0],[-13,0],[-48,-1],[-36,0],[-17,-1],[-16,0],[-16,-15]],[[32088,24303],[-49,0],[-19,0],[-69,0],[-68,-1],[-29,0],[-39,0],[-33,1],[-33,0],[-19,1],[-40,0],[-24,1],[-48,1],[-65,1],[-68,1],[-30,0],[-33,1],[-18,0],[-54,1],[-31,0],[-36,1],[-16,0],[-22,0],[-28,0],[-67,0],[-25,0],[-41,-1],[-49,0],[-17,0],[-2,0],[-65,1],[-43,0],[-23,0],[-61,0],[-72,0],[-36,3],[-26,2],[-70,5],[-60,5],[-7,0],[-7,1],[-23,1],[-1,33],[-43,-2],[-67,0],[-67,-1],[-18,0],[-49,0],[-39,0],[-29,0],[-66,-1],[-32,0],[-35,-1],[-27,0],[-39,-1],[-66,-1],[-20,0],[-47,1],[-66,1],[-42,1],[-25,0],[-24,0],[-42,1],[-67,-1],[-67,0],[-64,0],[-70,-1],[-50,0],[-17,-1],[-67,0],[-29,-1],[-38,0],[-67,-1],[-20,1],[-32,1],[-14,0],[-18,0],[-48,2],[-58,1],[-22,1],[-14,0],[-65,0],[-68,1],[-69,0],[-68,1],[-16,0],[-44,1],[-54,1],[-17,0],[-31,1],[-23,0],[-52,1],[-25,0],[-66,1],[-66,0],[-66,1],[-67,0],[-56,2],[-46,1],[-30,1],[-28,1],[-32,1],[-48,1],[-24,1],[-42,-1],[-24,-1],[-28,0],[-39,-1],[-66,-2],[-22,0],[-41,-1],[-27,0],[-17,0],[-27,0],[-46,-1],[-13,0],[-19,0],[-29,0],[-26,0],[-40,0],[-21,0],[-27,0],[-63,-1],[-28,-1],[-36,0],[-31,-1],[-32,0],[-33,-1],[-31,-1],[-32,0],[-35,0],[-68,-1],[-26,0],[-41,-1],[-14,0],[-53,-1],[-67,-1],[-66,-1],[-47,-1],[-20,0],[-34,-1],[-32,0],[-44,0],[-26,0],[-49,-1],[-4,0],[-17,0],[-68,2],[-54,0],[-14,1],[-33,0],[-34,1],[-33,0],[-33,1],[-67,1],[-40,0],[-27,1],[-34,-1],[-18,0],[-13,-1],[-39,0],[-27,-1],[-66,-1],[-27,-1],[-39,-1],[-66,1],[-22,1],[-45,1],[-67,1],[-66,1],[-67,0],[-66,0],[-67,0],[-67,0],[-17,0],[-3,0],[-47,1],[-17,0],[-19,0],[-31,0],[-17,0],[-5,0],[-45,0],[-22,0],[-45,0],[-66,0],[-66,0],[-66,0],[-39,0],[-26,0],[-67,0],[-62,0],[-70,1],[-63,0],[-16,0],[-53,0],[-66,0],[-66,1],[-58,0],[-66,-2],[-67,-1],[-35,-1],[-31,-1],[-67,-1],[-67,0],[-61,1],[-49,0],[-24,0],[-9,0],[-58,1],[-67,0],[-67,1],[-66,0],[-67,1],[-39,0],[-14,0],[-2,0],[-77,0],[-63,0],[-2,0],[-68,0],[-5,0],[-55,0],[-17,1],[-1,0],[-54,0],[-65,1],[-66,0],[-67,0],[-67,0],[-67,0],[-42,0],[-14,0],[-25,0],[-40,-1],[-65,0],[-66,2],[-67,1],[-65,-1],[-23,0],[-43,-1],[-67,0],[-66,0],[-66,1],[-63,2],[-5,0],[-42,1],[-22,0],[-66,1],[-57,2],[-7,0],[-47,1],[-3,0],[-21,0],[-68,1],[-67,2],[-64,1],[-65,2],[-36,0],[-28,1],[-64,2],[-69,0],[-69,0],[-68,0],[-64,0],[-64,-10],[-64,-10],[-65,-10],[-62,-10],[-64,-3],[-29,-1],[-42,-1],[-66,-2],[-14,-1],[-52,-2],[-68,-8],[-68,-7],[-68,-8],[-68,-8],[-25,0],[-42,1],[-66,2],[-67,2],[-66,2],[-67,0],[-66,1],[-57,-6],[-71,-6]],[[19627,24296],[-31,-2],[-41,-2],[-65,-3],[-32,-1],[-33,-2],[-72,-3],[-59,-9],[-29,-5],[-35,-5],[-13,-2],[-52,-8],[-71,19],[-64,-3],[-68,-3],[-21,-1],[-47,-2],[-58,-10],[-22,-1],[-35,0],[-20,-1],[-67,-1],[-67,-1],[-51,3],[-17,0],[-67,1],[-68,1],[-67,1],[-45,6],[-19,0],[-15,1],[-20,0],[-30,0],[-66,0],[-65,1],[-47,-2],[-18,0],[-65,1],[-65,1],[-65,1]],[[83435,30191],[-14,6],[-27,19],[-8,5],[-26,13],[-21,9],[-16,9],[-18,28],[-24,29],[-15,17]],[[83266,30326],[-48,35],[-57,65],[-45,66],[-45,41],[-55,10],[-32,2],[-40,-19],[-45,-25],[-56,-44],[-81,-74],[-69,-50],[-61,-17],[-61,13],[-48,36],[-53,62],[-42,54],[-29,37],[-32,35],[-31,52],[-49,65],[-45,27],[-62,9],[-54,0],[-54,2],[-49,-14],[-69,-38],[-74,-44],[-142,-70],[-50,-28],[-54,-18],[-31,-21],[-31,-21],[-58,-62],[-82,-108],[-43,-71],[-40,-52],[-40,-86],[-42,-68],[-52,-57],[-44,-4],[-56,0],[-57,8],[-30,3],[-64,14],[-34,14],[-41,7],[-47,25],[-54,24],[-48,48],[-53,50],[-49,46],[-51,44],[-34,31],[-37,34],[-45,53],[-31,41],[-28,36],[-29,11],[-26,9],[-69,28],[-63,-2],[-55,-38],[-55,-61],[-45,-85],[-31,-105],[-32,-97],[-29,-61],[-25,-36],[-32,-51],[-30,-59],[-38,-73],[-25,-25],[-34,-23],[-171,-70],[-88,-53],[-93,-74],[-16,-43],[-29,-34],[-23,-20],[-17,-23],[-26,-43],[-1,0],[-42,-48],[-49,-55],[-43,-56],[-45,-102],[-29,-114],[-14,-52],[-5,-17],[-25,-79],[-39,-120],[-25,-53],[-10,-20],[-30,-50],[-60,-39],[-64,-30],[-89,-42],[-78,-70],[-33,-51],[-20,-31],[-57,-151],[-59,-111],[-74,-140],[-51,-110],[-31,-58],[-13,-25],[-11,-22],[-13,-41],[-17,-57],[-5,-37],[-20,-140],[-9,-135],[-1,-52],[4,-57],[3,-31],[10,-65],[6,-51],[4,-53],[2,-31],[-2,-57],[-6,-66],[-8,-41],[-8,-35],[-13,-38],[-13,-41],[-10,-46],[-14,-57],[-12,-40],[-12,-43],[-55,-167],[-20,-71],[-5,-37],[-1,-44],[5,-37],[6,-31],[3,-62],[-7,-28],[-38,-135],[-23,-95],[-13,-79],[-4,-57],[4,-90],[11,-86],[15,-53],[8,-45],[11,-57],[4,-91],[-1,-62],[1,-77],[-7,-41],[-18,-36],[-20,-20],[-36,-22],[-33,-23],[-27,-20],[-34,-15],[-30,-19],[-33,-19],[-34,-24],[-38,-40],[-34,-54],[-21,-61],[-12,-56],[-14,-61],[-11,-58],[-13,-45],[-15,-52],[-17,-53],[-15,-31],[-19,-31],[-38,-51],[-18,-14],[-36,-24],[-32,-14],[-30,-12],[-33,-10],[-31,-16],[-32,-30],[-21,-35],[-21,-49],[-12,-64],[-1,-33],[-6,-91],[-4,-78],[-5,-77],[-6,-88],[-13,-39],[-19,-37],[-16,-18],[-23,-10],[-28,-3],[-33,7],[-28,9],[-30,11],[-19,3],[-27,7],[-67,12],[-56,-4],[-53,-10],[-56,-6],[-43,3],[-33,0],[-17,2],[-17,2],[-20,-7],[-12,-10],[-16,-21],[-6,-32],[-14,-43],[-16,-65],[-18,-61],[-11,-27],[-12,-34],[-8,-25],[-18,-54],[-18,-55],[-12,-40],[-16,-57],[-5,-27],[-8,-48],[-3,-31],[-4,-49],[-2,-39],[-1,-29],[-3,-32],[-1,-38],[-7,-128],[-6,-32],[-11,-38],[-14,-31],[-17,-28],[-12,-18],[-13,-18],[-12,-16],[-66,-75],[-18,-30],[-8,-53],[-3,-54],[4,-35],[11,-20],[37,-82],[11,-26],[12,-28],[10,-28],[8,-31],[5,-30],[4,-31],[1,-31],[1,-31],[-1,-35],[-1,-30],[-3,-32],[-3,-29],[-7,-29],[-12,-38],[-12,-22],[-14,-23],[-17,-23],[-14,-17],[-14,-15],[-19,-19],[-22,-15],[-22,-12],[-22,-8],[-30,-2],[-24,2],[-23,6],[-27,7],[-25,9],[-33,10],[-21,5],[-21,3],[-26,-1],[-29,-6],[-22,-5],[-26,-9],[-25,-7],[-30,-11],[-31,-15],[-20,-11],[-32,-18],[-35,-27],[-36,-29],[-31,-28],[-20,-21],[-23,-27],[-22,-29],[-16,-22],[-13,-41],[-4,-43],[-5,-46],[-9,-45],[-7,-25],[-8,-23],[-18,-36],[-65,-58],[-37,-34],[-26,-29],[-17,-24],[-14,-30],[-10,-23],[-11,-47],[-11,-76],[-12,-68],[-17,-35],[-15,-29],[-11,-18],[-27,-42],[-25,-33],[-16,-22],[-13,-17],[-19,-17],[-16,-14],[-27,-13],[-35,-11],[-16,-3],[-24,0],[-20,-2],[-18,-1],[-21,3],[-48,-10],[-7,-1],[-32,-6],[-406,-170],[-82,-29],[-171,-44],[-155,-48],[-55,-14],[-120,-11],[-86,-4],[-34,2],[-20,0],[-18,-5],[-25,-15],[-22,-18],[-23,-32],[-28,-45],[-37,-58],[-44,-53],[-44,-52],[-40,-37],[-56,-41],[-50,-46],[-26,-35],[-33,-41],[-48,-46],[-35,-30],[-21,-16],[-25,-18],[-29,-16],[-31,-15],[-28,-23],[-1,-2],[-103,-253],[-5,-11],[-29,-122],[-40,-149],[-1,-5],[-32,-48],[-19,-99]],[[72902,18735],[-109,125],[-37,30],[-23,20],[-261,216],[-176,135],[-24,18],[-72,75],[-14,23],[-1,1],[-83,97],[0,1],[-168,118],[-146,63],[-78,33],[-5,2],[-20,7],[-64,20],[-87,5],[-133,-2],[-50,0],[-31,10],[-80,27],[-122,78],[-108,67],[-24,6],[-87,23],[-36,20],[-42,23],[-49,52],[-44,84],[-12,22],[-38,68],[-19,35],[-43,77],[-25,43],[-73,122],[-108,223],[-24,41],[-55,64],[0,1],[-19,24],[-98,61],[-85,46],[-34,29],[-57,78],[-11,45],[-12,46],[-15,60],[9,91],[12,133],[4,42],[42,173],[20,50],[65,159],[30,70],[28,66],[24,237],[6,165],[-11,138],[-19,137],[-11,106],[-4,40],[-35,331],[-40,109],[-27,71],[-11,26],[-19,76],[-9,48],[-5,22],[-12,60],[-27,191],[-25,178],[-5,62],[24,62],[26,59],[13,91],[5,216],[2,160],[-13,131],[-10,104],[5,96],[11,123],[17,80],[13,61],[14,178],[17,129],[17,209],[-6,134],[-29,168],[-13,210],[1,134],[4,37],[8,110],[5,61],[9,118],[-3,87],[-17,128],[-10,72],[-6,42],[-1,46],[8,71],[3,10],[13,48],[30,46],[18,62],[0,53],[-22,186],[-6,32],[-12,83],[-31,160],[-38,198],[-21,144],[-13,95],[-29,80],[-81,90],[-92,115],[-245,251],[-117,327],[-155,342],[-72,106],[-287,254],[-214,278],[-68,199],[-38,70],[-108,192],[-177,311],[-50,116],[-12,72],[-12,84],[-7,49],[-5,55],[10,27],[-5,451],[-34,257],[-60,148],[-57,76],[-137,63],[-251,234],[-50,76],[-41,63],[-9,66],[12,57],[21,36],[27,46]],[[72902,18735],[127,-159],[15,-21],[31,-38],[21,-31],[29,-42],[31,-46],[42,-57],[11,-18],[4,-7],[19,-31],[19,-34],[15,-32],[19,-38],[19,-53],[18,-39],[22,-50],[32,-58],[27,-45],[14,-21],[34,-63],[95,-198],[79,-179],[35,-61],[14,-26],[84,-217],[35,-87],[33,-101],[16,-66],[10,-57],[2,-29],[1,-56],[-2,-31],[-5,-43],[-12,-56],[-8,-30],[-1,-49],[5,-30],[7,-29],[9,-26],[11,-40],[17,-49],[19,-63],[11,-42],[12,-64],[11,-62],[14,-62],[9,-42],[15,-48],[15,-42],[21,-62],[21,-55],[23,-77],[3,-9],[13,-39],[13,-44],[9,-34],[21,-72],[21,-80],[13,-56],[14,-64],[9,-57],[6,-62],[1,-32],[1,-42],[1,-49],[-1,-45],[-2,-34],[-6,-54],[-6,-42],[-11,-64],[-9,-45],[-13,-68],[-11,-63],[-9,-64],[-4,-46],[-3,-41],[0,-46],[2,-42],[4,-41],[7,-34],[8,-34],[14,-47],[8,-38],[8,-39],[10,-67],[18,-136],[6,-37],[-3,-53],[-14,-31],[-23,-23],[-30,-21],[-66,-42],[-42,-32],[-35,-28],[-31,-35],[-33,-47],[-45,-78],[-58,-101],[-61,-106],[-53,-92],[-62,-107],[-32,-57]],[[73594,13153],[-64,-139],[-44,-95],[-38,-81],[-32,-70],[-60,-132],[-35,-78],[-54,-67],[-182,-227],[-199,-139],[-66,-46],[-174,-121],[-405,-457],[-212,-144],[-208,-142],[-194,-53],[-83,-23],[-276,-76],[-332,8],[-177,64],[-208,76],[-91,48],[-87,45],[-146,76],[-77,40],[-110,-26],[-407,-95],[-7,-2],[-7,-2],[-179,-41],[-124,-29],[-28,-18],[-37,-23],[-15,-10],[-359,-225],[-95,-59],[-150,-19],[-367,-40],[-344,-38],[-234,-26],[-77,-51],[-403,-269],[-169,24],[-160,23],[-140,20],[-56,45],[-101,82],[-442,360],[-139,-64],[-127,-58],[-103,-48],[-292,-403],[-35,-84],[-341,-807],[-217,-520],[-29,-7],[-737,-184],[-270,-68],[-278,-67],[-380,56],[-259,-104],[-455,-182],[-121,-48]],[[62356,8413],[1,158],[1,81],[0,15],[0,74],[0,47],[0,170],[0,54],[2,233],[3,180],[2,112],[0,36],[0,116],[1,120],[1,324],[0,36],[-1,87],[-3,70],[-2,51],[-1,93],[0,47],[0,127],[0,47],[1,469],[0,17],[1,366],[1,239],[3,177],[1,112],[1,380],[1,178],[2,51],[-1,62],[3,62],[-1,147],[1,202],[-6,104],[2,218],[2,114],[4,347],[1,45],[0,2],[0,52],[4,298]],[[96023,26529],[0,-54],[1,-763],[0,-659],[-238,-4],[-45,3],[-177,2],[-44,1],[-14,0],[-10,0],[-400,6],[-212,6],[-195,4],[-21,1],[-35,0],[-233,7],[3,-366],[0,-53],[-56,0],[-39,0],[-26,1],[-136,1],[-76,1],[-130,3],[-13,0],[-68,1],[-5,-192],[-6,-216],[-92,-5],[-164,-10],[-5,-244],[-1,-198],[-2,-144],[-1,-59],[-3,-187],[-3,-176],[0,-31],[0,-80],[-1,-92],[0,-46],[-1,-73],[-1,-144],[0,-143],[-1,-65],[0,-46],[0,-140],[0,-119],[1,-340],[0,-163],[0,-65],[17,-25],[0,-37],[-1,-375],[-1,-67],[2,-343],[0,-34],[1,-179],[1,-245],[1,-105],[-3,-144],[1,-156],[-2,-69],[0,-161],[-1,-774],[0,-98],[0,-899],[1,-173],[0,-181],[0,-256],[0,-34],[0,-120],[2,-111],[1,-334],[-3,-85],[-31,0],[-5,1],[-31,1],[-172,0],[-84,-1],[-63,0],[-185,0],[-14,0],[-50,-2],[-65,0],[-43,2],[-28,1],[0,-162],[0,-887],[0,-307],[1,-810],[0,-178],[0,-268],[1,-38],[0,-64],[0,-89],[-1,-182],[-1,-71],[0,-106],[-1,-131],[0,-237],[0,-61]],[[92818,13095],[-52,2],[-199,8],[-15,1],[-49,2],[-16,0],[-299,0],[-83,0],[-137,0],[-99,2],[-621,15]],[[91248,13125],[-3,165],[-1,1084],[0,1],[0,470],[-1,1398],[0,420],[-120,-5],[4,111],[1,880],[0,242],[0,288],[0,346],[0,53],[2,395],[1,276],[0,41],[0,168],[1,41],[0,60],[-2,412],[0,49],[0,364],[1,369],[3,771],[0,149],[1,427],[1,319],[2,419],[0,110],[-155,-3],[-26,-5],[-148,-4],[-478,-13],[0,51],[2,264],[2,334],[2,228],[1,187],[6,233],[-100,24],[-168,3],[-6,34],[3,386],[-274,-2],[1,860],[1,408],[-164,2],[-100,3],[2,217],[-2,392],[0,244],[-155,-4],[-20,6],[-98,-2],[-131,1],[-118,0],[-208,1],[-139,-3],[-187,-3],[-40,-1],[-510,-8],[4,567],[0,270],[2,118],[3,448],[3,511],[0,60],[1,76],[0,20],[0,26],[3,482],[117,3],[0,107],[1,163],[1,132],[1,165],[1,83],[4,583],[2,279],[2,300],[0,57]],[[91248,13125],[-74,2],[-186,5],[-31,1],[-311,6],[-640,10],[-220,4],[-162,0],[-194,0],[-43,0],[-25,0],[-202,0],[-11,0],[-162,0],[-61,7],[-128,-1],[-73,1],[-158,1],[-47,0],[-239,1],[-32,0],[-204,1],[-69,4],[-208,1],[-101,-2],[-231,3],[-1,0],[-108,2],[-15,-1],[-225,2],[-215,1],[-50,1],[-325,4],[-27,0],[-165,2],[-18,0],[-24,0],[-37,0]],[[86226,13180],[1,39],[4,53],[4,44],[2,43],[2,64],[4,86],[5,51],[10,56],[12,73],[7,44],[-2,49],[-1,32],[0,3],[-3,42],[-1,45],[2,59],[2,43],[0,53],[2,84],[3,32],[4,40],[1,40],[3,37],[1,85],[-5,176],[-1,50],[-5,210],[0,177],[0,106],[0,104],[0,172],[0,33],[0,56],[3,456],[0,131],[0,112],[1,215],[0,42],[1,87],[-3,265],[0,46],[6,392],[1,29],[1,72],[-2,84],[3,37],[1,111],[-1,127],[2,55],[1,75],[-1,93],[0,79],[1,181],[0,405],[3,249],[2,119],[1,246],[-26,0],[-98,-4],[-352,1],[-204,1],[-13,0],[-30,0],[-73,1],[-13,0],[-94,0],[-15,0],[-61,0],[-169,1],[-72,0],[-80,-1],[-71,1],[-226,2],[-3,389],[-1,44],[0,41],[-1,513],[1,30],[-1,87],[-5,126],[0,36],[7,611],[0,21],[1,28],[1,138],[0,6],[1,34],[1,56],[0,56],[1,29],[3,287],[-127,0],[-66,-1],[-13,1],[-17,0],[-35,0],[-630,-2],[-490,-6],[-223,-3],[-1,513],[1,373],[1,164],[-2,46],[-1,44],[0,162],[0,440],[0,210],[0,193],[0,75],[0,88],[1,140],[0,481],[0,30],[0,238],[0,264],[0,167],[0,266],[0,46],[1,275],[0,414],[0,66],[3,188],[-2,383],[-1,275],[-1,150],[-1,115],[-2,117],[-1,404],[-2,379],[0,65],[0,62],[-3,692],[0,46],[-1,102],[51,0],[129,1],[-1,143],[-1,168],[-1,40],[-3,421],[0,47],[0,59],[0,27],[0,2],[-1,53]],[[86226,13180],[-53,-5],[-279,-2],[-7,0],[-329,2],[-101,-1],[-251,-6],[-19,1],[-236,5],[-221,-12],[-14,-1],[-13,-1],[-14,0],[-73,2],[-38,3],[-21,-2],[-42,2],[-78,5],[-113,7],[-1,0],[-76,0],[-248,-3],[-111,-1],[-40,0],[-80,-1],[-273,-3],[-17,0],[-28,0],[-147,-2],[-37,2],[-74,0],[-24,0],[-113,1],[-71,0],[-9,0],[-10,0],[-47,2],[-348,8],[-57,-2],[-46,-1],[-299,-7],[-110,1],[-15,0],[-91,0],[-95,0],[-14,0],[-73,1],[-110,1],[-35,1],[-52,-1],[-24,0],[-40,1],[-14,1],[-48,-2],[-34,-1],[-24,1],[-29,1],[-23,0],[-27,-1],[-19,2],[-23,-1],[-23,-1],[-8,-1],[-57,-2],[-21,-1],[-16,0],[-31,-1],[-14,-1],[-20,1],[-36,1],[-20,1],[-29,0],[-8,1],[-11,0],[-8,0],[-25,0],[-21,1],[-24,0],[-112,1],[-5,0],[-3,1],[-45,0],[-50,0],[-50,1],[-53,0],[-3,0],[-22,0],[-44,0],[-60,-1],[-21,0],[-38,0],[-82,1],[-25,0],[-44,0],[-58,0],[-21,0],[-151,0],[-167,5],[-48,0],[-62,0],[-72,0],[-15,2],[-252,-1],[-17,0],[-41,0],[-32,3],[-12,0],[-52,0],[-6,0],[-47,0],[-14,0],[-61,0],[-25,-1],[-17,0],[-23,-1],[-19,0],[-17,-1],[-82,-1],[-78,-2],[-44,3],[-17,0],[-36,0],[-68,0],[-33,0],[-4,0],[-115,0],[-50,-1],[-36,2],[-54,0],[-26,2],[-167,0],[-64,0],[-50,1],[-35,0],[-20,1],[-121,-1],[-62,0],[-64,0],[-85,0],[-17,0],[-60,0],[-83,-1],[-129,2],[-19,0],[-174,2],[-13,0],[-29,0],[-186,-2],[-54,0],[-93,-2],[-171,0],[-13,0],[-53,1],[-214,2],[-75,-1],[-152,-2],[-34,0],[-16,0],[-245,-3],[-42,0],[-76,-1],[-367,-4],[-26,0],[-49,-2],[-104,-2],[-80,-1],[-114,-2],[-206,4],[-15,-1],[-68,-1],[-339,4],[-121,2],[-82,-3],[-93,-3],[-96,-1],[-157,-3],[-54,-1],[-42,-1],[-14,-1],[-12,-1],[-61,-4],[-21,-2],[-36,-4]],[[98423,25474],[0,-16],[25,-43],[16,-38],[7,-52],[1,-10],[5,-29],[10,-33],[0,-57],[-3,-50],[-5,-52],[0,-36],[-3,-45],[-11,-64],[-13,-21],[-10,-30],[-6,-41],[-4,-52],[-6,-71],[-17,-74],[-12,-76],[-1,-53],[-1,-35],[-25,-158],[-14,-78],[-15,-87],[-10,-40],[-8,-29],[-24,-51],[-36,-56],[-15,-19],[-13,-23],[-21,-31],[-18,-28],[-10,-23],[-20,-41],[-16,-45],[-14,-40],[-7,-36],[4,-40],[-1,-51],[-3,-69],[3,-54],[0,-36],[-2,-44],[-1,-35],[2,-32],[9,-40],[16,-61],[16,-34],[22,-38],[22,-29],[27,-29],[27,-20],[30,-16],[24,-12],[26,-11],[24,-7],[30,-7],[24,0],[33,-10],[29,-10],[15,-8],[18,-10],[16,-11],[17,-19],[20,-26],[15,-26],[20,-32],[15,-23],[9,-35],[4,-36],[0,-9],[0,-31],[-2,-31],[3,-60],[-5,-35],[-4,-39],[2,-46],[2,-32],[2,-31],[3,-34],[-1,-13],[-2,-25],[6,-47],[3,-31],[10,-38],[10,-39],[20,-39],[20,-36],[15,-28],[16,-22],[26,-31],[14,-19],[18,-39],[13,-25],[14,-19],[22,-28],[15,-9],[16,-3],[23,-3],[19,-12],[29,-9],[19,-15],[23,-26],[23,-28],[25,-29],[29,-34],[8,-13],[11,-18],[16,-40],[15,-53],[2,-6],[9,-55],[0,-11],[0,-27],[-4,-48],[-11,-47],[-13,-43],[-13,-46],[-14,-44],[-7,-23],[-10,-38],[-5,-18],[-7,-37],[-3,-30],[4,-61],[15,-31],[17,-40],[16,-30],[40,-53],[13,-23],[24,-30],[21,-35],[23,-26],[23,-31],[27,-50],[18,-30],[16,-31],[13,-27],[12,-32],[18,-55],[15,-38],[10,-32],[10,-35],[10,-38],[6,-31],[5,-33],[2,-35],[7,-32],[26,-86],[26,-101],[14,-130],[2,-52],[1,-21],[3,-24],[8,-57],[17,-46],[-1,-60],[-9,-82],[-24,-95],[-19,-84],[-37,-133],[-17,-56],[-15,-49],[-17,-61],[-6,-57],[6,-74],[4,-44],[15,-53],[21,-55],[34,-45],[22,-29],[26,-38],[23,-30],[30,-36],[21,-36],[22,-35],[16,-40],[18,-47],[21,-44],[18,-23],[20,-20],[10,-32],[8,-31],[9,-28],[-6,-39],[5,-30],[17,-42],[16,-39],[14,-39],[16,-32],[15,-19],[16,-14],[35,1],[25,1],[33,-47],[14,-19],[17,-44],[10,-46],[7,-87],[-3,-41],[-7,-42],[-7,-34],[-18,-30],[-20,-24],[-28,-25],[-19,-16],[-17,-19],[-21,-38],[-15,-20],[-12,-17],[-7,-36],[-2,-49],[0,-36],[-4,-67],[-2,-93],[1,-59],[13,-41],[7,-52],[-1,-31],[-9,-43],[-14,-29],[-23,-30],[-21,-35],[-17,-29],[-11,-42],[-18,-46],[-1,-3],[-12,-25],[-25,-35],[-16,-17],[-16,-21],[-10,-29],[-10,-20],[-6,-42],[8,-39],[-2,-40],[-14,-34],[-1,-43],[-4,-103],[3,-31],[-1,-45],[-8,-25],[-13,-28],[-15,-51],[-5,-36],[-6,-52],[-2,-34],[-2,-32],[-14,-33],[-20,-25],[-5,-8],[-16,-26],[-11,-3],[-46,-13],[-26,-12],[-5,0],[-8,-4],[-34,0],[-46,-6],[-9,-1],[-19,-15],[-18,-15],[-24,-28],[-20,-40],[-17,-42],[-10,-44],[0,-57],[6,-45],[0,-52],[1,-32],[13,-50],[12,-49],[14,-43],[18,-19],[15,-15],[8,-7],[20,-17],[32,-19],[9,-8],[12,-9],[28,-9],[35,-12],[24,-4],[8,4],[14,6],[8,2],[5,1],[18,-9],[21,-17],[20,-47],[14,-37],[29,-58],[17,-25],[14,-13],[18,-38],[5,-11],[21,-52],[19,-57],[19,-46],[5,-15],[7,-19],[-2,-67],[-5,-49],[-1,-16],[-2,-25],[-1,-23],[0,-11],[5,-27],[0,-4],[4,-35],[9,-42],[4,-17],[7,-31],[3,-14],[11,-58],[10,-37],[5,-13],[4,-9],[12,-18],[25,-10],[15,-22],[13,-39],[13,-24],[10,-27],[6,-39],[1,-36],[13,-34],[3,-20],[2,-15],[-1,-37],[-7,-29],[-3,-43],[1,-49],[0,-34],[5,-78],[0,-1],[4,-49],[11,-52],[18,-41],[27,-14],[18,-27],[13,-19],[14,-51],[10,-87],[2,-82],[5,-59],[5,-31],[1,-43],[8,-49],[7,-40],[3,-49],[-1,-59],[10,-35],[8,-29],[8,-26],[5,-13],[2,-3],[-7,0],[-15,2],[-16,3],[-17,3],[-20,0],[-19,0],[-23,3],[-25,0],[-21,3],[-19,0],[-21,3],[-19,0],[-20,0],[-21,2],[-18,0],[-19,3],[-20,0],[-15,0],[-22,0],[-2,0],[-15,0],[-16,0],[-26,3],[-20,0],[-22,0],[-20,3],[-22,0],[-18,0],[-20,0],[-21,0],[-19,0],[-19,3],[-15,2],[-4,1],[-18,0],[-22,0],[-21,3],[-25,0],[-23,-3],[-20,0],[-18,0],[-19,3],[-22,3],[-19,0],[-16,0],[-18,0],[-19,3],[-17,0],[-18,0],[-18,0],[-15,0],[-18,0],[-15,0],[-14,0],[-8,0],[-11,0],[-13,0],[-14,0],[-18,2],[-14,0],[-478,3],[-150,-8],[-10,-1],[-4,0],[-239,19],[-258,1],[-1,0],[-150,0],[-256,1],[-49,6],[-103,1],[-155,3],[-113,1],[-260,4],[-157,2],[-317,5],[-24,0],[-28,1],[-76,0],[-297,2],[-54,-1],[-122,-1],[-237,2],[-1,0],[-27,-1],[-191,2],[-227,2],[-106,1],[-205,2],[-207,-66],[-160,21],[-1,0],[-80,10],[-5,1],[-36,10],[-79,9],[-109,14],[-134,0],[-134,0],[-115,0],[-98,0],[-38,2],[-71,-1],[-37,0],[-20,-2],[-2,-1],[-216,-10],[-191,-9],[-21,0],[-63,-1]],[[41234,14431],[-38,1],[-14,0],[-143,1],[-5,0],[-188,-7],[-192,-8],[-344,5],[-2,0],[-55,1],[-148,1],[2,-468],[3,-516],[1,-180],[0,-108],[-1,-354],[-3,-217],[-1,-172],[-1,-161],[-2,-91],[-1,-88],[0,-46],[0,-150],[0,-100],[-1,-103],[0,-31],[0,-142],[1,-86],[0,-29],[1,-75],[-1,-375],[0,-205],[0,-106],[1,-30],[-1,-59],[0,-39],[0,-37],[0,-41],[0,-156],[0,-61],[0,-105],[0,-103],[0,-31],[0,-46],[0,-165],[0,-37],[0,-1],[-1,-73],[0,-101],[2,-109],[27,-22],[25,0],[0,-71],[0,-279],[0,-121],[0,-329],[0,-58],[0,-87],[0,-251],[-1,-54],[-1,-84],[0,-83],[0,-44],[0,-224],[0,-96],[-3,-756],[292,-4],[56,-2],[38,1],[68,0],[22,0],[27,-2],[38,0],[40,-1],[47,0],[61,-1],[76,0],[90,-1],[52,0],[51,0],[46,0],[154,-1],[13,0],[21,0],[10,-42],[-2,-3],[-14,-33],[-34,-39],[-16,-11],[-12,-5],[-24,-7],[-10,1],[-42,-2],[-4,-2],[-25,-19],[-7,-23],[-9,-47],[-8,-23],[-8,-12],[-13,-9],[-46,-13],[-7,-9],[-4,-11],[-2,-14],[-4,-22],[-11,-84],[0,-1],[-2,-49],[19,-75],[2,-6],[21,-78],[47,-136],[0,-2],[2,-4],[4,-8],[50,-85],[4,-18],[1,-4],[5,-24],[8,-10],[13,-9],[37,-28],[-2,-4],[-21,-35],[-2,-4],[-1,-3],[-2,-4],[-1,-4],[-1,-4],[-2,-4],[0,-4],[-16,-68],[-1,-5],[-1,-5],[0,-5],[-1,-5],[0,-5],[0,-5],[-1,-5],[1,-5],[0,-5],[0,-5],[1,-5],[0,-5],[1,-5],[1,-4],[1,-5],[1,-3],[10,-35],[6,-47],[1,-46],[0,-3],[0,-5],[0,-2],[4,-61],[0,-4],[1,-5],[0,-3],[1,-2],[0,-4],[1,-5],[1,-4],[10,-39],[-1,-20],[-1,-5],[0,-3],[0,-1],[0,-1],[0,-5],[0,-5],[0,-5],[0,-5],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-4],[0,-23],[0,-7],[1,-73],[1,-40]],[[41254,5194],[-192,-71],[-344,-163],[-370,-108],[-45,-13],[-206,-61],[-169,-71],[-1,0],[-2,-1],[-2,-1],[-226,-79],[-40,-6],[-311,-47],[-75,-62],[-242,-200],[-12,1],[-89,2],[-16,1],[-62,2],[-36,1],[-77,2],[-140,4],[-200,41],[-209,42],[-224,78],[-118,58],[-123,59],[-109,54],[-139,-40],[-27,-7],[-182,-52],[-50,-45],[-94,-83],[-71,-63],[-68,-48],[-176,-125],[-36,-33],[-151,-142],[-157,-313],[-48,-95],[-3,-6],[11,-168],[-5,-15],[-65,-191],[-14,-41],[-63,-71],[-17,-19],[-51,-59],[-54,-32],[-30,-58],[-21,-20],[-92,-48],[-4,0],[-12,-1],[-30,1],[-37,2],[-33,5],[-5,1],[-32,7],[-65,5],[-56,-35],[-7,-23],[-33,-110],[-22,-47],[-42,-89],[-198,-228],[-263,-242],[-120,-28],[-161,-62],[-235,-137],[-8,-8],[-321,-307],[-67,-63],[-154,-119],[-365,-280],[-96,-16],[-113,-19],[-73,-12],[-122,-18],[-294,-183],[-148,-203],[-102,-64],[-176,-110],[-286,-214],[-345,-209]],[[31986,76],[4,246],[1,62],[0,11],[0,24],[-1,44],[-1,67],[1,177],[-1,173],[0,250],[0,42],[0,79],[0,94],[0,74],[0,95],[2,409],[1,71],[-1,14],[-3,41],[-1,101],[0,59],[-1,37],[-1,48],[-1,94],[-1,57],[0,63],[0,65],[-1,46],[-2,430],[0,71],[1,57],[-2,65],[0,36],[-1,102],[-2,68],[1,164],[1,100],[-1,40],[1,534],[4,421],[1,197],[0,149],[0,50],[-3,381],[-1,155],[0,69],[-1,141],[1,55],[0,396],[0,872],[0,153],[-1,175],[0,30],[0,284],[-2,65],[0,25],[-1,5],[-3,117],[8,778],[4,310],[2,126],[0,34],[0,29],[54,0],[-2,234],[0,317],[-2,629],[-3,562],[-1,74],[0,17],[-1,79],[0,77],[-1,65],[-1,133],[-4,494],[0,75],[0,20],[0,311],[-1,204],[0,121],[4,437],[2,718],[-1,480],[0,44],[0,60],[0,47],[0,31],[0,110],[-1,75]],[[32028,14717],[0,39],[0,2],[0,108],[0,43],[0,99],[0,149],[-2,1217],[-1,217],[0,143],[2,34],[0,86],[0,174],[0,262],[-1,147],[-2,560],[-2,692],[-2,558],[51,20],[11,182],[2,255],[2,679],[-1,425],[0,6],[1,625],[0,333],[0,9],[0,118],[0,101],[0,2],[1,343],[0,114],[0,53],[0,41],[1,35],[4,125],[0,39],[0,95],[1,102],[0,80],[1,263],[1,174],[1,300],[2,177],[0,56],[2,28],[1,197],[0,6],[0,40],[-13,33]],[[32028,14717],[-14,-6],[-5,-2],[-4,-3],[-5,-2],[-3,-1],[-15,-1],[-6,0],[-146,83],[-18,10],[-2,2],[-2,2],[-2,2],[-2,2],[-2,3],[-2,3],[-33,-4],[-55,-7],[-116,-39],[-4,-1],[-128,-154],[-5,-12],[-39,-92],[-19,-68],[-79,-293],[-9,-35],[-69,-204],[-77,-215],[-5,-10],[-83,-175],[-15,-33],[-5,-242],[5,-83],[5,-104],[18,-317],[-1,-4],[-64,-232],[-36,-133],[-68,-247],[-1,0],[-43,-24],[-1,-1],[-10,-5],[-23,-23],[-25,-25],[-41,-41],[-1,-1],[-50,-12],[-1,-1],[-35,-16],[-3,-2],[-25,2],[-6,1],[-38,-47],[-27,8],[-9,3],[-5,7],[-35,56],[-7,39],[-2,15],[-17,25],[-38,-4],[-31,-3],[-4,-3],[-10,-7],[-28,-19],[-28,-19],[-11,5],[0,1],[-7,7],[-31,35],[-37,61],[-4,7],[-16,26],[-2,3],[-2,2],[-54,32],[-25,15],[-2,1],[-60,97],[-2,4],[-39,57],[-24,-9],[-1,0],[-1,0],[-29,0],[-35,20],[-29,17],[-24,14],[-10,-2],[-55,-11],[-19,-19],[-47,-14],[-34,32],[-12,22],[-17,-9],[-12,-12],[-12,-41],[-12,-17],[-41,-27],[-35,3],[-22,38],[-11,93],[-20,21],[-19,13],[-9,6],[-32,26],[-32,38],[-1,26],[1,44],[-10,37],[-11,21],[-8,5],[-1,1],[-8,5],[-96,49],[-46,17],[-74,23],[-24,8],[-4,-1],[-19,-4],[-12,-4],[-15,-6],[-9,-3],[-42,25],[-6,5],[-26,21],[-31,-15],[-11,-9],[-27,-20],[-12,-9],[-8,-30],[-2,-13],[0,-9],[-6,-22],[-22,-11],[-2,-1],[-28,-1],[-18,9],[-46,88],[-31,18],[-24,-18],[-12,-8],[5,-42],[20,-69],[-2,-47],[-18,-11],[-20,-12],[-9,1],[-57,4],[-8,5],[-16,8],[-14,20],[-7,39],[-3,49],[-1,6],[-10,3],[-21,8],[-22,-12],[-2,0],[-83,-30],[-8,3],[-27,13],[-2,1],[-8,-8],[-29,-32],[-22,-23],[-92,-81],[-8,-20],[0,-21],[21,-62],[23,-49],[0,-1],[-1,-1],[-18,-35],[-3,-6],[-35,-27],[-11,-15],[-6,-8],[-53,-40],[-6,-5],[-13,-11],[-27,-22],[-20,-29],[-7,-26],[-12,-40],[-5,-17],[-9,-35],[-14,-37],[-4,-12],[-1,0],[-10,0],[-11,-27],[-3,-9],[-14,-19],[-6,-9],[-12,-16],[-1,-1],[-2,-11],[-5,-22],[-4,-25],[-6,-32],[-2,-11],[-6,-31],[-2,-3],[-7,-14],[-2,-6],[-6,-5],[-16,-16],[-4,-2],[-22,-17],[-11,1],[-24,0],[-13,1],[-80,21],[-8,8],[-32,31],[-5,2],[-44,20],[-59,-61],[-54,-68],[-1,-1],[-10,-11],[-38,-44],[-2,-2],[-38,-37],[-34,-35],[-3,-2],[-47,-36],[-40,-88],[-10,-23],[-36,-41],[-1,-1],[-55,-71],[-4,-7],[-8,-13],[-4,-6],[-4,-1],[-13,-4],[-2,0],[-2,1],[-11,8],[-30,23],[-16,8],[-13,-3],[-10,-9],[-57,-20],[-3,-1],[-25,-4],[-5,2],[-85,39],[-41,0],[-1,0],[-44,3],[-27,2],[-18,2],[-40,-56],[-20,-18],[-22,-36],[-24,-108],[-5,-21],[-4,-5],[-1,-3],[-18,-23],[-10,5],[-7,3],[-5,3],[-5,11],[-13,31],[-4,10],[-5,34],[-34,69],[-103,76],[-1,-1],[-2,-1],[-2,0],[-3,0],[-2,0],[-1,0],[-80,19],[-52,12],[0,1],[-3,0],[-2,2],[-73,46],[-33,18],[-42,24],[-3,0],[0,-2],[-4,-70],[-4,-7],[-14,-30],[0,-1],[-22,-38],[-3,-1],[-47,-25],[-2,-3],[-10,-20],[0,-1],[-2,-4],[-2,-3],[-2,-2],[-2,-3],[-2,-2],[-2,-2],[-2,-1],[-2,-1],[-3,-1],[-74,-66],[-7,18],[-2,3],[-29,4],[-64,9],[-18,-41],[-4,-58],[-1,-12],[-2,-143],[0,-11],[-23,-46],[-13,-33],[2,-8],[1,-8],[-26,-69],[-23,-44],[-30,-16],[-33,-19],[-21,-11],[-61,16],[-9,-17],[1,-28],[2,-30],[4,-51],[5,-61],[0,-5],[1,-5],[0,-2],[0,-4],[0,-5],[0,-5],[0,-5],[0,-5],[1,-20],[0,-11],[0,-7],[0,-4],[-6,-53],[5,-31],[4,-20],[1,-8],[6,-20],[46,-148],[2,-7],[6,-20],[-2,-14],[-2,-16],[-1,-8],[-10,-75],[0,-3],[-8,-65],[0,-8],[4,-54],[3,-49],[2,-24],[16,-51],[16,-53],[20,-65],[8,-12],[20,-33],[25,-43],[54,-93],[21,-42],[1,-1],[-1,-12],[0,-48],[0,-4],[-9,-46],[-2,-11],[-48,18],[-63,61],[-72,45],[-87,8],[-5,0],[-8,-6],[-24,-21],[-15,-13],[-9,-13],[-14,-36],[-10,-27],[-14,-35],[-9,-24],[-3,-2],[-28,-17],[-5,-3],[-1,0],[-126,-77],[-90,-72],[-14,-5],[-18,-6],[-52,-74],[-1,-1],[-28,-50],[-1,-3],[-20,-41],[-68,-52]],[[25142,8834],[-1,167],[-4,55],[-6,105],[-2,118],[-34,184],[-97,237],[-41,159],[-2,77],[-2,110],[-65,248],[-37,151],[-8,99],[-10,136],[-7,87],[-1,5],[22,201],[20,189],[-28,359],[-12,158],[-25,205],[-9,22],[-104,247],[-180,347],[-129,367],[-19,42],[-25,120],[-68,371],[-53,145],[-72,166],[-106,166],[-16,88],[-31,166],[-5,26],[-46,238],[-14,138],[5,83],[-41,187],[-38,171],[-11,50],[-23,99],[-54,158],[-48,137],[-84,159],[-2,1],[-16,14],[-169,146],[-175,148],[-45,34],[-56,44],[-25,14],[-109,59],[-111,60],[-9,14],[-1,2],[-28,43],[-24,38],[-5,6],[-129,200],[-44,68],[-108,156],[-2,5],[-84,139],[-142,265],[-19,35],[-285,197],[-35,30],[-23,20],[-19,22],[-106,129],[-93,113],[-44,52],[-25,31],[-12,7],[-53,31],[-161,95],[-286,349],[-65,80],[-27,33],[-40,50],[-26,32],[-147,182],[-5,4],[-28,23],[-94,25],[-273,32],[-82,0],[-4,0],[-136,-1],[-11,0],[-88,-78],[-199,-139],[-150,-126],[-35,-30],[-38,-34],[-40,-42],[-11,84]],[[19687,18239],[-2,93],[-1,59],[-1,72],[0,68],[-2,74],[-2,167],[-2,139],[0,39],[-5,377],[-23,3],[-3,196],[0,52],[-4,385],[-1,47],[-4,373],[1,98],[0,76],[4,110],[8,240],[15,310],[0,31],[3,63],[2,67],[0,31],[0,41],[1,171],[0,122],[2,34],[-2,29],[0,41],[-1,58],[-11,627],[-6,311],[-2,125],[-3,134],[-5,319],[-1,49],[-1,32],[-6,323],[-3,183],[-3,159],[-2,129]],[[18015,17964],[21,-31],[-5,-47],[-32,9],[-9,34],[-15,10],[-15,0],[-39,126],[-13,77],[18,3],[34,-51],[12,-18],[22,-57],[21,-55]],[[17355,18663],[24,-43],[-7,32],[-26,38],[5,35],[-15,7],[-34,61],[9,22],[18,0],[83,-45],[68,-58],[3,-3],[44,-50],[76,-60],[51,-40],[78,-92],[42,-47],[30,-45],[53,-127],[5,-78],[31,-105],[19,-72],[35,-85],[15,-39],[18,-40],[13,-30],[50,40],[10,32],[11,39],[36,-114],[149,-183],[74,3],[116,-35],[60,-124],[-104,-56],[-160,21],[-178,0],[-131,23],[-34,60],[-40,22],[-45,-5],[-78,-18],[-36,4],[-51,32],[-50,60],[-4,9],[-28,70],[-59,94],[-45,70],[-53,73],[-51,76],[-83,98],[-35,32],[-26,12],[-39,28],[-40,33],[-53,47],[-50,65],[-36,50],[-17,54],[-7,95],[1,82],[8,58],[-1,124],[8,79],[7,95],[5,86],[26,65],[13,-6],[17,-24],[51,-68],[59,-60],[40,-48],[77,-86],[46,-72],[20,-52],[12,-16]],[[17205,18997],[7,-26],[-21,9],[-65,40],[-40,59],[-24,56],[-14,29],[14,54],[23,19],[24,-32],[28,-54],[16,-36],[26,-64],[12,-26],[14,-28]],[[19687,18239],[-52,-51],[-58,-35],[-86,-40],[-44,-27],[-24,-41],[-26,-43],[-41,-30],[-30,-50],[-32,-17],[-38,-72],[-46,-47],[-44,-60],[-43,-43],[-49,-48],[-29,-28],[-32,-16],[-23,-16],[-31,3],[-36,-26],[-73,-30],[-69,11],[-38,5],[-47,22],[-37,26],[-31,5],[-39,25],[-32,23],[-43,7],[-37,31],[-68,46],[-118,102],[-68,53],[-37,74],[-89,166],[-40,70],[-63,108],[-39,97],[-48,66],[-24,41],[-33,40],[-27,52],[-29,32],[-20,39],[-38,49],[-57,47],[-50,45],[-32,21],[-74,46],[-3,2],[-54,115],[-17,100],[8,63],[-18,40],[-22,-75],[-41,49],[-34,38],[-45,34],[-68,66],[-71,87],[-31,60],[-18,47],[0,52],[-18,60],[-35,58],[-37,91],[-17,57],[-6,129],[0,92],[65,31],[-51,37],[-25,77],[-48,27],[-29,50],[-48,115],[-30,2],[-27,50],[-88,122],[-43,93],[-48,86],[-39,125],[-2,72],[-24,-1],[-28,-25],[-37,38],[-39,56],[-58,47],[-81,28],[-60,17],[-45,8],[-76,-5],[-115,-21],[-67,-51],[-61,-45],[-66,-56],[-38,-16],[-33,-5],[-34,30],[-45,26],[-35,-34],[-48,-15],[-42,-9],[-59,-2],[-50,-30],[-33,-23],[-49,40],[-30,-50],[-35,-10],[-27,10],[-38,-40],[-21,-77],[-24,9],[-33,3],[-39,10],[-27,4],[-40,-11],[-28,-21],[-38,-11],[-42,-3],[-28,4],[-47,0],[-42,8],[-65,10],[-30,7],[-24,4],[-70,-27],[-51,-15],[-38,7],[-54,18],[-48,13],[-37,25],[-30,16],[-31,22],[-34,37],[-102,19],[-38,14],[-59,-20],[-50,17],[-31,8],[-35,9],[-29,-7],[-59,8],[-34,7],[-38,39],[-50,50],[-39,78],[-10,67],[-2,83],[8,61],[8,117],[7,113],[-10,84],[-12,59],[-15,71],[-23,47],[-35,28],[-27,34],[7,60],[16,49],[15,34],[5,37],[21,101],[29,82],[-7,-3],[-11,-4],[-29,-48],[-37,-87],[-13,-8],[-20,-27],[-17,18],[-38,14],[-42,22],[-50,-54],[-37,65],[-17,95],[-46,26],[-42,-29],[-29,26],[-28,-17],[32,-47],[28,-34],[-45,-146],[-65,-34],[-49,-35],[-3,-97],[0,-82],[-32,-76],[-10,-40]],[[31986,76],[-176,48],[-58,-21],[-232,-86],[-274,-3],[-36,-6],[-23,-4],[-27,-4],[-87,28],[-34,31],[-41,37],[-121,120],[-13,14],[-72,180],[-17,42],[-10,28],[-59,129],[-6,8],[-35,41],[-32,39],[-265,154],[-242,-32],[-33,-5],[-58,-63],[-66,-38],[-146,-82],[-171,-8],[-11,3],[-295,69],[-74,80],[-110,126],[-16,81],[-74,32],[-104,37],[-149,54],[-147,67],[-431,197],[-42,26],[-41,25],[-41,25],[-170,104],[-180,109],[-154,3],[-148,60],[-115,47],[-176,-17],[-79,15],[-220,106],[-274,208],[-19,14],[-33,25],[-33,24],[-3,3],[-75,57],[-46,57],[-4,5],[-28,35],[-32,39],[-117,144],[-22,24],[-150,160],[-62,40],[-317,207],[-72,46],[-87,186],[-56,119],[-82,329],[-28,82],[-33,481],[114,742],[23,320],[-5,78],[27,260],[-33,489],[-4,46],[-2,258],[0,30],[-12,40],[-65,228],[-56,191],[-116,337],[-47,196],[-90,376],[61,696],[29,151],[13,69],[4,16],[-1,154]],[[62356,8413],[-102,-36],[-400,-191],[-20,-3],[-259,-38],[-116,-17],[-270,-39],[-78,-12],[-218,-174],[-213,-170],[-6,-5],[-15,-11],[-282,-259],[-33,-26],[-357,-307],[-217,-186],[-141,-121],[-777,-296],[-132,-90],[-167,-114],[-40,-27],[-7,-13],[-144,-286],[-133,-262],[-213,-404],[-52,-99],[-25,-46],[-395,-43],[-465,-51],[-316,-185],[-20,-12],[-507,-191],[-62,-24],[-70,-34],[-232,-116],[-50,-25],[-84,-11],[-202,-25],[-552,-71],[-168,-21],[-294,-38],[-217,116],[-328,399],[-186,379],[-17,28],[-178,260],[-25,16],[-340,211],[-298,69],[-328,-43],[-268,-212],[-72,-70],[-18,-24],[-227,-320],[-44,-54],[-146,-176],[-10,-11],[-3,-4],[-20,-12],[-35,-20],[-10,-6],[-307,-180],[-79,-63],[-124,-99],[-90,-61],[-279,-190],[-13,-8],[-371,-212],[-409,-230],[-36,-20],[-1,-1],[-16,-9],[-16,-8],[-8,-4],[-13,-7],[-13,-7],[-177,-94],[-13,-7],[-63,-73],[-204,-322],[-143,-233],[-7,-8],[-180,-193],[-33,-35],[-67,-72],[-48,29],[-51,30],[-20,-75],[-130,258],[-107,214],[-167,67],[-32,-20],[-196,-117],[-153,-93],[-29,-17],[-5,2],[-39,19],[-80,40],[-504,177],[-129,27],[-202,-103],[-100,-47],[-166,-73],[-28,-33],[-195,-237],[-82,-98],[-12,-51],[-22,-90],[-79,-114],[-21,-30],[-25,-35],[-78,-111],[-85,-120],[-49,-78],[-29,-45],[-28,-44],[-22,-35],[-6,-9],[-22,-35],[-2,-2],[-39,-30],[-80,-64],[-343,-71],[-73,62],[-71,61],[-48,40],[-75,184],[-7,17],[0,1],[1,16],[8,126],[0,5],[2,39],[7,108],[-3,29],[-23,192],[-21,261],[-6,56],[-34,185],[-25,137],[-89,222],[-26,65],[-634,335],[-199,140],[-119,95],[-50,81],[-39,62],[-98,156],[-81,38],[-364,171],[-13,5],[-67,4],[-68,3],[-35,2],[-81,-8],[-179,-18],[-14,-15],[-6,-8],[-36,-39],[-83,-97],[-188,-192],[-200,61],[-356,108],[-231,108],[-268,278],[-64,66],[-107,85],[-36,29],[-37,29],[-95,74],[-200,125]]],"transform":{"scale":[0.00007839347981479794,0.00003457362689626881],"translate":[-124.75643622199988,45.54510516900007]}} diff --git a/src/js/config/mapconfig/mapfiles/county/wi-counties.json b/src/js/config/mapconfig/mapfiles/county/wi-counties.json new file mode 100644 index 00000000..a9ee86e2 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/wi-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-92.88942339699992,42.491999843000144,-86.24955956899993,47.30252366600007],"geometries":[{"type":"Polygon","properties":{"name":"WI"},"id":"55051","arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55125","arcs":[[6,7,-3,8,9,10]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55013","arcs":[[11,12,13,14,15]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55113","arcs":[[16,17,18,19,20]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55129","arcs":[[-20,21,-12,22]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55041","arcs":[[23,24,25,26,27,-11,28]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55037","arcs":[[29,-24,30]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55099","arcs":[[-8,31,32,33,34,-18,35,-4]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55085","arcs":[[-28,36,37,-32,-7]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55095","arcs":[[38,39,40,-14]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55005","arcs":[[-22,41,42,43,-39,-13]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55107","arcs":[[-35,44,45,-42,-19]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55069","arcs":[[46,47,48,-33,-38]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55067","arcs":[[-27,49,50,51,52,-47,-37]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55000","arcs":[[53,54,55,56,57,58,59,60,61,62,63,64,65,66,67],[68],[69],[70,71],[72],[73],[74],[75],[76],[77],[78],[79]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55119","arcs":[[-49,80,81,82,-45,-34]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55083","arcs":[[83,-66,84,-64,85,86,87,-50,-26]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55017","arcs":[[-83,88,89,90,-43,-46]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55109","arcs":[[91,92,93,-40]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55033","arcs":[[-91,94,95,96,-92,-44]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55073","arcs":[[-48,-53,97,98,99,100,-81]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55078","arcs":[[-88,101,-51]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55019","arcs":[[-101,102,103,104,-89,-82]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55115","arcs":[[-102,-87,105,106,107,-98,-52]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55093","arcs":[[-97,108,109,-93]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55035","arcs":[[-105,110,111,112,113,-95,-90]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55097","arcs":[[114,115,116,117,-99]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55141","arcs":[[-118,118,119,120,-103,-100]]},{"type":"MultiPolygon","properties":{"name":"WI"},"id":"55009","arcs":[[[-85,-65]],[[-86,-63,121,122,123,124,-106]]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55091","arcs":[[-114,125,126,-109,-96]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55135","arcs":[[127,128,129,-115,-108]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55061","arcs":[[-60,130,-122,-62,131]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55011","arcs":[[-113,132,133,-126]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55121","arcs":[[134,135,136,-133,-112]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55053","arcs":[[-104,-121,137,138,139,-135,-111]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55087","arcs":[[-107,-125,140,141,-128]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55071","arcs":[[-131,-59,142,143,-123]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55057","arcs":[[144,145,146,147,-138,-120]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55001","arcs":[[-117,148,149,150,-145,-119]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55137","arcs":[[-130,151,152,153,-149,-116]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55139","arcs":[[154,155,156,-152,-129,-142]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55015","arcs":[[-124,-144,157,158,-155,-141]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55081","arcs":[[-148,159,160,-139]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55063","arcs":[[-140,-161,161,162,-136]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55047","arcs":[[-157,163,164,165,166,-153]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55077","arcs":[[-167,167,-150,-154]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55039","arcs":[[168,169,170,-164,-156,-159]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55117","arcs":[[-58,171,172,-169,-158,-143]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55123","arcs":[[173,174,175,176,-162,-160,-147]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55021","arcs":[[177,178,179,-151,-168,-166]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55111","arcs":[[-180,180,181,182,-174,-146]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55027","arcs":[[183,184,185,186,-178,-165,-171]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55103","arcs":[[187,188,189,-175,-183]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55089","arcs":[[-57,190,191,-172]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55131","arcs":[[-173,-192,192,-184,-170]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55023","arcs":[[-190,193,194,-176]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55025","arcs":[[-187,195,196,197,198,-181,-179]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55049","arcs":[[-182,-199,199,200,201,-188]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55043","arcs":[[-202,202,203,-194,-189]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55055","arcs":[[204,205,206,-196,-186]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55133","arcs":[[-193,207,208,209,-205,-185]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55079","arcs":[[-56,210,-208,-191]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55045","arcs":[[211,212,213,-200,-198]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55105","arcs":[[-207,214,215,-212,-197]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55127","arcs":[[-210,216,217,218,-215,-206]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55101","arcs":[[-55,219,-217,-209,-211]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55065","arcs":[[-214,220,-203,-201]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55059","arcs":[[-54,221,-218,-220]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55031","arcs":[[222]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55031","arcs":[[223]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55031","arcs":[[224,-23,-16,225,226]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55007","arcs":[[227,-21,-225,228]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55007","arcs":[[229]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55007","arcs":[[230]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55007","arcs":[[231]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55000","arcs":[[-6,232,-229,-227,233],[234],[235],[236],[237],[-231],[238],[239],[240],[-232],[241],[242],[243],[244],[245],[-230],[246],[-223],[-224],[247],[248],[249],[250]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-5,-36,-17,-228,-233]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-250]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-249]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-251]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-248]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-241]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-240]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-239]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-238]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-237]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-242]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-246]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-245]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-243]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-244]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-247]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-236]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55003","arcs":[[-235]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55075","arcs":[[-80]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55075","arcs":[[-78]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55075","arcs":[[-67,-84,-25,-30,251]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-79]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-77]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-76]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-75]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-74]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-132,-61]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-73]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-71]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-72]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-70]]},{"type":"Polygon","properties":{"name":"WI"},"id":"55029","arcs":[[-69]]}]},"states":{"type":"GeometryCollection","bbox":[-92.88942339699992,42.491999843000144,-86.24955956899993,47.30252366600007],"geometries":[{"type":"MultiPolygon","properties":{"name":"Wisconsin"},"id":"55","arcs":[[[-80]],[[-79]],[[-78]],[[-77]],[[-76]],[[-75]],[[-74]],[[-73]],[[-71]],[[-72]],[[-70]],[[-69]],[[222]],[[223]],[[-250]],[[-249]],[[-251]],[[-248]],[[-233,5,0,1,8,9,28,30,251,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,221,218,215,212,220,203,194,176,162,136,133,126,109,93,40,14,225,226,228]],[[-241]],[[-240]],[[229]],[[-239]],[[230]],[[231]],[[-238]],[[-237]],[[-242]],[[-246]],[[-245]],[[-243]],[[-244]],[[-247]],[[-236]],[[-235]]]}]}},"arcs":[[[37222,84680],[1,-1],[8,-4],[6,-23],[10,-42],[23,-95],[1,-1],[5,-7],[2,-2],[58,-35],[32,-19],[20,-73],[0,-1],[18,-64],[0,-2],[1,-5],[1,-1],[7,-9],[1,0],[0,-1],[0,-1],[1,0],[44,-55],[16,-3],[15,3],[31,-79],[1,-1],[1,-3],[6,-24],[9,-18],[7,-13],[6,-16],[2,-4],[4,-10],[19,-4],[25,-6],[3,-7],[-5,-11],[-9,-6],[-13,-1],[-1,-1],[-8,-1],[1,-5],[-3,-3],[-5,-4],[12,-16],[17,-12],[16,7],[13,9],[14,2],[9,-3],[23,2],[14,5],[3,0],[3,2],[2,1],[31,17],[1,1],[12,10],[49,31],[9,-1],[13,-7],[10,-12],[6,3],[2,-1],[2,3],[5,3],[16,14],[2,24],[3,7],[7,14],[16,6],[5,1],[12,2],[24,9],[17,9],[23,13],[7,4],[9,4],[2,-1],[46,-26],[22,6],[5,7],[14,7],[18,9],[3,2],[2,-4],[9,-15],[0,-1],[5,-8],[1,-4],[4,-6],[1,-2],[12,1],[4,1],[2,0],[3,6],[1,0],[2,1],[26,10],[1,1],[1,-1],[14,-22],[6,-9],[3,-10],[0,-1],[15,-17],[13,-7],[1,-1],[30,0],[14,11],[3,25],[-1,22],[7,26],[3,6],[7,18],[2,7],[10,32],[12,12],[12,6],[3,8],[6,6],[-3,2],[3,8],[-15,10],[-18,9],[1,4],[8,42],[49,-19],[1,-1],[4,-1],[10,-8],[11,0],[2,-1],[0,1],[8,0],[16,7],[1,0],[10,18],[4,3],[-1,1],[1,2],[-13,17],[-1,0],[-15,2],[-43,32],[1,5],[4,1],[27,10],[1,1],[1,0],[21,2],[17,3],[22,10],[26,10],[2,0],[20,-11],[20,2],[14,-10],[-2,-28],[29,-3],[1,0],[11,-13],[14,5],[4,1],[18,2],[-2,-13],[-1,-8],[-1,-8],[-5,-39],[20,-39],[1,0],[7,1],[6,-6],[3,-1],[13,-6],[18,5],[3,6],[7,12],[20,4],[9,-11],[2,-2],[1,0],[2,-3],[-9,-13],[26,-9],[8,-6],[4,-5],[2,1],[3,-2],[5,4],[27,8],[-2,-32],[0,-3],[-8,-14],[5,-15],[2,-6],[-1,-19],[6,-2],[1,-4],[12,2],[16,-3],[1,-1],[1,0],[11,-11],[21,5],[3,-6],[7,-11],[2,-4],[5,-9],[1,-17],[11,-12],[-1,-4],[-10,-14],[-2,-25],[-1,-4],[-3,-25],[-1,-1],[2,-32],[-10,-8],[-9,-7],[-2,-3],[-9,-7],[2,-4],[-2,-2],[5,-8],[12,-34],[-1,-1],[-11,-25],[-6,-25],[-51,-69],[-7,-10],[-1,0],[-1,-1],[-11,-16],[11,-63],[3,-15],[1,-16],[2,-1],[1,-3],[4,0],[9,-4],[20,-11],[1,0],[14,10],[3,1],[36,-3],[30,7],[7,16],[24,15],[18,-3],[19,-14],[16,-3],[17,3],[28,-1],[27,6],[3,0],[48,17],[2,0],[1,2],[7,2],[0,8],[4,5],[0,1],[-1,2],[-2,5],[0,2],[1,33],[7,-2],[14,-10],[1,0],[16,-14],[22,-3],[1,0],[30,-8],[38,-19],[18,-3],[17,4],[16,12],[1,0],[4,6],[5,5],[0,3],[2,4],[-9,25],[27,4],[10,5],[3,1],[3,1],[2,3],[3,1],[1,1],[0,4],[1,1],[24,38],[3,0],[71,-90],[0,-12],[-13,-15],[-1,-1],[-20,-5],[-1,0],[-15,-13],[-21,-34],[0,-14],[-3,-4],[-9,-10],[0,-1],[0,1],[13,3],[0,-7],[6,3],[12,8],[3,2],[1,0],[3,0],[14,-4],[8,-9],[16,-28],[17,-14],[7,-6],[7,-8],[1,-12],[-15,-30],[-1,-1],[0,-1],[-15,-23],[-8,-21],[3,-27],[0,-28],[0,-1],[4,0],[3,0],[1,-6],[6,4],[2,2],[6,0],[2,6],[1,1],[1,0],[63,44],[15,4],[10,-10],[7,-8],[9,-26],[-17,-5],[4,-17],[-2,-4],[-1,-1],[5,-2],[20,-11],[12,-18],[22,-1],[16,2],[29,18],[21,21],[30,1],[36,0],[17,-3],[22,3],[30,9],[11,1],[21,-8],[21,6],[6,2],[10,4],[16,1],[1,0],[14,1],[1,0],[1,1],[6,0],[31,18],[15,8],[0,1],[2,0],[22,5],[1,0],[15,12],[22,18],[44,26],[1,0],[2,-3],[20,-34],[0,-1],[-18,-53],[0,-2],[-3,-5],[0,-5],[-2,-4],[1,-1],[-2,-13],[1,-2],[8,-18],[16,-5],[-10,-18],[-3,-6],[9,3],[0,-4],[22,3],[16,7],[11,6],[81,20],[3,1],[6,0],[5,-3],[12,-14],[3,-2],[0,-1],[15,-1],[22,-12],[25,-53],[1,-20],[0,-1],[8,-28],[1,-1],[23,-42],[17,-26],[5,-24],[-11,-29],[8,-22],[10,-19],[13,-21],[14,-21],[21,-18],[13,-6],[19,-24],[0,-28],[-1,-35],[5,-27],[9,-25],[8,-18],[2,-2],[1,-2],[20,-25],[11,-15],[2,-2],[12,-8],[25,-17],[36,-35],[8,-3],[46,-15],[4,-6],[0,-25],[2,-45],[17,-7],[13,5],[29,-1],[2,-4],[-40,-48],[-1,0],[-7,-9],[0,-2],[-5,-41],[-1,-5],[-9,-11],[7,-10],[-1,-2],[21,-22],[3,-4],[4,-16],[30,-26],[10,-4],[3,-3],[114,-38],[0,4],[9,-2],[-8,18],[-2,5],[0,16],[3,-2],[30,-34],[2,-6],[-11,-56],[-5,-16],[-1,-3],[1,-5],[0,-2],[0,-1],[-1,-6],[1,-3],[2,-5],[3,-6],[-1,-5],[-1,-19],[10,-16],[14,-16],[7,-29],[1,-1],[-1,-6],[-6,-31],[-2,-6],[-7,-25],[2,-30],[0,-25],[0,-2],[0,-2],[0,-6],[-1,-7],[-1,-7],[1,0],[2,0],[0,-2],[0,-1],[18,-6],[20,-7],[1,0],[1,0],[13,-2],[1,0],[1,0],[15,5],[22,-2],[21,-3],[1,0],[2,1],[12,8],[3,2],[0,1],[5,16],[4,4],[4,5],[8,4],[0,-2],[2,-8],[7,-45],[1,-8],[2,-9],[1,-7],[12,-17],[3,-3],[28,-38],[7,-13],[1,-8],[1,-11],[0,-4],[0,-1],[-3,-22],[8,-19],[2,-7],[8,-69],[14,-17],[19,-22],[0,-2],[4,-18],[-2,-6],[-8,-13],[0,-13],[-2,-6],[2,-1],[-1,-1],[3,0],[25,-17],[17,-12],[-10,-21],[-9,-24],[2,-17],[2,-16],[4,-7],[-8,-59],[0,-1],[-2,-14],[0,-1],[1,-3],[2,-10],[0,-1],[0,-5],[3,-25],[7,-28],[4,-21],[3,-8],[5,-14],[17,-10],[13,-12],[24,-18],[0,-4],[-9,-14],[1,-24],[14,-11],[6,-52],[10,-5],[17,-11],[15,-8],[2,-5],[10,-17],[15,4],[24,-3],[-1,-18],[-1,-11],[-2,-25],[-1,-20],[0,-3],[28,-37],[10,-14],[3,-17],[0,-1],[-8,-19],[8,-13],[0,-6],[6,-4],[5,-8],[14,-4],[22,-15],[0,-22],[7,-20],[11,-11],[4,-19],[0,-1],[1,-1],[4,-2],[0,-2],[1,0],[6,-4],[14,-10],[15,-11],[20,-18],[15,-16],[16,-4],[7,-4],[8,-8],[1,-1],[0,-9],[-25,-32],[3,-2],[2,-2],[8,-7],[4,-18],[-1,-4],[-14,-16],[-4,-21],[-4,-20],[0,-2],[0,-1],[0,-20],[0,-1],[5,-8],[4,-27],[0,-4],[1,0],[2,-1],[0,-3],[36,-21],[12,1],[-1,-7],[-3,-25],[0,-2],[-1,-2],[0,-3],[9,-8],[-1,-2],[6,-3],[63,-57],[3,-3],[2,-6],[6,-2],[22,-21],[11,-18],[-9,-20],[7,-9],[-1,-12],[-1,-6],[0,-7],[33,-15],[1,0],[0,-4],[8,1],[21,-9],[3,-4],[1,-2],[30,-168],[-1,-8],[-16,-15],[-15,-13],[-10,3],[-1,0],[-19,-8],[-1,0],[0,-1],[-10,-22],[-4,-14],[-9,-9],[-8,-7],[-9,-3],[0,-1],[2,-2],[-2,-2],[5,-2],[6,-12],[12,-14],[18,-3],[14,2],[4,-8],[4,-18],[9,-20],[10,-22],[0,-6],[-1,-3],[-1,-19],[-8,-16],[-8,-5],[-1,-1],[-24,-6],[-1,-1],[-2,-9],[-2,-2],[1,-2],[-1,-7],[13,-17],[173,-47],[136,-36],[313,-85],[127,-34],[103,-27],[121,-32],[53,-14],[5,-2],[479,-126],[267,-72],[35,-10],[3,0],[144,-40],[56,-14],[212,-57],[2,-1],[64,-17],[64,-17],[504,-135],[21,-5],[2,-1]],[[44585,79153],[2,-219],[1,-24]],[[44588,78910],[-1,-44],[0,-42],[0,-38],[0,-25],[0,-33],[0,-52],[0,-74],[-1,-22],[-2,-48],[-2,-32],[6,-344],[0,-38],[-2,-27],[2,-122],[0,-32],[1,-85],[-11,-293],[3,-143],[0,-21],[1,-25],[4,-157],[0,-295],[0,-135],[0,-24],[0,-171],[0,-55],[-1,-58],[0,-114],[2,-47],[1,-44],[0,-25],[-1,-27],[0,-37],[0,-28],[-1,-11],[-2,-21],[0,-9],[-2,-56],[0,-19],[-2,-24],[-3,-66],[-1,-40],[0,-4],[-2,-43],[2,-35],[1,-36],[6,-121],[3,-56],[0,-20],[0,-72],[2,-254],[0,-47],[0,-23],[0,-23],[1,-190],[0,-23],[-1,-173],[0,-28],[0,-25],[0,-23],[2,-79],[0,-55],[1,-8],[1,-120],[0,-96],[0,-21],[0,-30],[0,-33],[1,-8],[2,-22],[-1,-29],[0,-26],[0,-12],[0,-16],[0,-88],[4,-22],[-3,-277],[-2,-184],[0,-142],[0,-34],[0,-30],[0,-24],[0,-24],[0,-51],[-1,-42],[1,-68],[1,-248],[0,-46],[-4,-175],[0,-19],[-1,-39],[0,-34],[-1,-61],[-67,2],[-22,0],[-36,-1],[-50,2],[-54,1],[-33,0],[-41,0],[-19,1],[-31,-1],[-33,0],[-82,-1],[-29,1],[-128,0],[-1,0],[-79,1],[-83,1],[-24,0],[-23,0],[-129,1],[-53,0],[-34,0],[-21,-7],[-2,-1],[-23,0],[-6,0],[-72,0],[-2,0],[-59,0],[-16,0],[-92,0],[-111,0],[-179,0],[-100,0]],[[42854,72547],[-191,1],[-270,1],[-31,0],[-58,0],[-49,0],[-319,1],[-213,1],[-25,0],[-37,0],[-30,0],[-56,0],[-159,-1],[-6,0],[-198,-1],[-1,0],[-216,-2],[-99,0],[-251,-2],[-18,0],[-110,-1],[-18,0],[-21,0],[-131,-1],[-205,-1],[-2,0],[-257,-2],[-67,-1],[-52,0],[-16,0],[-264,-1],[-97,-1],[-146,-1],[-35,0],[-16,0],[-88,0],[-135,-1]],[[38967,72535],[3,45],[3,48],[12,194],[1,25],[-1,74],[0,1],[-1,34],[-4,130],[-1,52],[6,26],[4,21],[2,52],[4,200],[-2,265],[-1,36],[-2,119],[-1,49],[0,6],[-2,112],[4,186],[2,84],[1,41],[-4,39],[0,1],[-5,61],[-11,119],[-6,61],[-4,46],[-5,68],[-12,152],[-4,50],[0,53],[0,256],[-1,24],[-2,125],[-1,81],[-1,49],[-3,119],[-1,37],[-5,156],[7,93],[3,40],[2,33],[9,116],[2,27],[-20,0],[-111,-4],[-24,0],[-47,1],[-68,0],[-94,1],[-79,0],[-18,0],[-52,1],[-122,2],[-114,1],[-153,2],[-2,0],[-48,1],[-134,-7],[-73,-3],[-106,-5],[-275,-3],[-220,-2],[-59,-1],[-37,0],[-1,80],[0,49],[-2,147],[-1,28],[-3,267],[0,32],[-2,549],[0,1],[0,44],[1,60],[0,3],[5,198],[4,202],[3,110],[1,26],[-31,0],[-199,1],[-188,0],[-39,0],[-184,1],[-57,0],[-28,0],[-230,7],[-136,5],[-26,0],[-475,-3],[-1,0],[-222,-2],[-40,0],[-45,-1],[-2,189],[1,41],[4,219],[3,151],[1,36],[2,103],[1,47],[4,159],[-1,30],[5,273],[22,241],[3,169],[6,176],[0,6],[-1,179],[1,100],[1,180],[0,60],[0,34],[0,2],[1,141],[-1,120],[0,62],[0,70],[0,148],[0,52],[-1,280],[0,52],[1,137],[0,25],[0,54],[0,64],[1,125],[0,168],[1,220],[0,47],[1,137],[0,180],[1,203],[0,88],[0,12],[1,172],[0,9],[0,145],[1,177],[0,103],[0,15],[-23,2],[0,254],[0,47],[0,41],[0,164],[1,96],[0,197],[0,109],[0,112],[0,184],[0,38],[1,444],[0,28]],[[35235,85046],[53,-15],[66,-19],[20,-2],[53,-6],[6,4],[13,10],[30,21],[41,29],[39,28],[8,5],[25,12],[35,15],[28,5],[38,2],[24,2],[52,31],[53,17],[43,0],[26,-4],[9,-2],[33,-14],[61,-42],[30,-23],[41,-29],[32,-22],[27,-20],[33,-24],[44,-30],[19,-12],[32,-20],[69,-44],[36,-23],[27,-18],[10,-5],[7,-3],[16,-8],[37,-23],[96,-52],[14,-8],[62,-36],[47,-21],[58,-21],[27,-17],[18,-9],[9,-4],[9,-3],[41,-14],[25,-31],[7,-16],[4,-7],[11,-12],[6,-6],[5,-7],[24,-1],[21,17],[5,5],[9,9],[8,8],[12,14],[44,18],[80,35],[36,7],[33,12],[36,13],[24,-12]],[[57861,70747],[-17,0],[-153,-1],[-112,1],[-42,1],[-17,0],[-127,1],[-4,1],[-35,0],[-18,0],[-15,-1],[-19,0],[-32,0],[-15,0],[-21,0],[-102,-2],[-48,0],[-46,1],[-32,-1],[-7,1],[-58,0],[-73,0],[-26,1],[-26,0],[-15,0],[-56,0],[-53,5],[-42,3],[-17,0],[-18,4],[-34,1],[-23,0],[-16,1],[-19,1],[-20,1],[-35,1],[-38,6],[-21,2],[-48,3],[-65,4],[-22,1],[-41,6],[-29,4],[-68,8],[-111,11],[-54,9],[-62,11],[-7,1],[-10,-1],[2,-47],[2,-61],[2,-29],[2,-31],[4,-34],[5,-106],[5,-25],[-5,-36],[5,-34],[1,-30],[1,-61],[4,-97],[0,-66],[6,-25],[1,-28],[2,-29],[1,-34],[2,-22],[1,-22],[4,-71],[0,-2],[-4,1],[-6,0],[-6,1],[-9,0],[-8,1],[-4,0],[-35,3],[-46,3],[-31,3],[-51,3],[-1,0],[-15,1],[-16,0],[-15,1],[-16,1],[-11,1],[-34,1],[-46,8],[-6,1],[-244,47],[-99,3],[-42,2],[-54,5],[-37,1],[-29,0],[-40,4],[-5,3],[-17,1],[-3,2],[-183,11],[-53,3],[-37,2],[-39,2],[-132,-19],[-149,-12],[-74,-5],[-38,-3],[-97,0],[-7,1],[-73,6],[-80,7],[3,30],[1,129],[1,25],[0,24],[-1,33],[0,12],[-2,39],[0,130],[1,299],[1,122],[-102,-3],[-7,-1],[-26,-1],[-3,-1],[-3,-1],[-4,0],[-10,-1],[-35,-3],[-33,-1],[-45,-3],[-15,-1],[-48,-3],[-32,-1],[-33,-2],[-60,-4],[-474,-30],[-89,0],[-46,0],[-16,0],[-41,0],[-35,0],[-10,0],[-34,0],[-265,1],[-22,0],[-2,0],[-17,0],[-23,0],[-20,1],[-19,0],[-32,-1],[-75,-1],[-98,-1],[-103,-1],[-77,0],[-79,-3],[-15,-2],[-46,-1],[-21,0],[-20,0],[-56,0],[-25,0],[-21,0],[-17,0],[-34,0],[-17,0],[-3,0],[-26,0],[-14,1],[-13,0],[-31,0],[-19,0],[-23,0],[-28,1],[-27,0],[-100,0],[-29,0],[-18,0],[-35,-1],[-26,0],[-39,0],[-19,0],[-16,1],[-31,-1],[-21,2],[-28,0],[-61,0],[-23,0],[-21,0],[-22,1],[-48,1],[-339,1],[-29,0],[-5,0],[-18,0],[-27,-1],[-32,0],[-16,0],[-40,0],[-40,1],[-53,0],[-36,0],[-80,1],[-52,0],[-50,0],[-67,1],[-18,0],[-75,0],[-23,0],[-21,0],[-51,0],[-44,0],[-20,0],[-29,0],[-53,0],[-79,0],[-46,0],[-278,-4],[-20,0],[-18,-1],[-31,1],[-35,1],[-18,1],[-23,1],[-34,2],[-20,1],[-16,1],[-25,-2],[-93,3],[-77,-2],[-7,0],[-93,-1],[-18,0],[-16,-1],[-23,0],[-155,-3],[-44,1],[-19,0],[-40,0],[-42,1],[-63,-1],[-24,0],[-19,1],[-17,-1],[-84,0],[-21,0],[-77,0],[-44,0],[-15,0],[-39,-1],[-18,0],[-40,2],[-3,-1],[-12,-1],[-20,0],[-18,0],[-46,0],[-17,0],[-20,0],[-22,-1],[-17,0],[-20,-1],[-27,-1],[-86,0],[-36,-1],[-79,0],[-58,1],[-24,1],[-18,0],[-32,0],[-26,0],[-17,0],[-19,0],[-25,0],[-33,0],[-15,0],[-15,0],[-25,0],[-32,0],[-24,1],[-74,0],[-18,0],[-133,-2],[-1,0],[-35,0],[-30,0],[-41,-1],[-126,0],[-63,-1],[-103,-1],[-54,-1],[-25,0],[-83,0],[-36,0],[-47,0],[-25,0],[-55,-1],[-5,0],[-38,0],[-38,0],[-50,-1],[-50,0],[-3,0],[-38,1],[-79,0],[-6,0],[-91,0],[-55,0],[-227,0],[-3,0],[-91,0],[-29,0],[-71,-2],[-68,0],[-120,2],[-33,0],[-25,-1],[-17,0],[-14,0],[-43,-1],[-19,0],[-9,0],[-61,0],[-58,0],[-8,0],[-10,0],[-135,1],[-136,0],[-83,-3],[-25,0],[-1,0],[-62,0],[-61,-1],[-28,-1],[-40,0],[-60,-1],[-8,0],[-103,-1],[-43,-1],[-18,0],[-82,-2],[-15,-2],[-25,-1],[-22,1],[-21,-1],[-40,0],[-25,-1],[-25,-1],[-17,0],[-24,-1],[-22,0],[-18,0],[-20,0],[-23,-1],[-26,0],[-38,0],[-12,-1],[-36,0],[-36,-1],[-11,0],[-39,-1],[-48,0],[-2,0],[-30,-1],[-4,0],[-11,2],[-196,-1],[-5,0],[-122,0],[-7,0],[-49,-1],[-4,0],[-174,-1],[-5,0],[-72,1]],[[42871,70785],[-1,31],[-1,123],[-1,100],[0,10],[0,37],[0,9],[-1,37],[0,50],[-1,82],[-2,184],[0,22],[0,33],[0,3],[-1,24],[0,15],[-2,292],[-2,150],[-2,194],[-3,366]],[[44588,78910],[-3,243]],[[44585,79153],[39,-10],[15,-4],[16,-5],[82,-22],[43,-9],[45,-9],[21,-6],[9,-3],[4,-1],[93,-24],[10,-7],[92,-24],[25,-4],[12,-2],[13,-4],[18,-5],[35,-12],[16,-5],[18,-5],[74,-16],[187,-49],[14,-6],[102,-26],[115,-31],[19,-5],[20,-5],[154,-40],[1012,-270],[183,-51],[163,-41],[87,-23],[55,-15],[6,-2],[17,-5],[23,-5],[30,-8],[55,-15],[105,-28],[28,-7],[24,-5],[21,-7],[17,-5],[19,-4],[16,-5],[77,-20],[57,-15],[18,-5],[29,-7],[28,-8],[23,-6],[76,-20],[35,-9],[21,-5],[139,-36],[34,-10],[144,-38],[26,-7],[53,-14],[39,-7],[47,-14],[1,0],[110,-32],[107,-31],[10,-2],[23,-7],[128,-34],[70,-18],[128,-32],[258,-65],[5,-1],[5,-2],[15,-4],[21,-5],[5,-1],[4,-2],[18,-4],[23,-7],[75,-20],[73,-20],[69,-18],[43,-12],[2,0],[120,-33],[8,-2],[36,-9],[161,-44],[56,-15],[60,-16],[15,-3],[18,-5],[24,-6],[21,-6],[69,-19],[57,-16],[50,-13],[13,-4],[37,-5],[8,-1],[8,-2],[122,-34],[50,-14],[15,-2],[17,-5],[276,-77],[27,-8],[38,-14],[22,-6],[3,-1],[5,-1],[89,-23],[22,-6],[15,-3],[8,-2],[2,-1],[14,-3],[6,-2],[40,-10],[34,-10],[22,-6],[16,-3],[70,-20],[16,-3],[34,-10],[18,-6],[78,-22],[107,-28],[99,-27],[46,-13],[39,-10],[113,-30],[16,-4],[36,-10],[3,-1],[70,-18],[67,-18],[11,-3],[218,-58],[43,-12],[21,-5],[22,-6],[9,-3],[5,-1],[33,-9],[11,-3],[4,-1],[23,-6],[22,-5],[7,-2],[1,0],[29,-8],[34,-9],[3,0],[77,-19],[150,-36],[460,-124],[103,-28],[110,-29],[3,-1],[10,-3],[276,-74],[260,-70],[137,-38],[3,0],[19,-5],[7,-2],[103,-28],[398,-106],[3,-1],[2,0],[16,-3],[7,-2],[11,-2],[2,-1],[103,-27],[37,-10],[38,-9],[226,-60],[16,-4],[38,-10],[15,-4],[88,-25],[74,-21],[2,-1],[29,-7],[8,-3],[26,-10],[18,-6],[16,-5],[21,-5],[23,-7],[27,-8],[132,-34],[26,-7],[32,-8],[18,-4],[59,-15],[28,-7],[45,-11],[79,-21],[21,-6],[19,-5],[22,-6],[15,-4],[4,-1],[10,-3],[23,-7],[7,-2],[2,-1],[26,-7],[16,-6],[147,-39],[95,-26],[3,-1],[49,-13],[1,0],[163,-44],[29,-7],[110,-28],[111,-27],[3,-1],[39,-9],[49,-13],[6,-1],[27,-7],[33,-9],[97,-24],[102,-57],[41,-23],[33,-19],[3,-2],[2,-1],[3,-2],[169,-96],[29,-17],[35,-19],[4,-2],[76,-44],[26,-14],[457,-257],[52,-32],[15,-9],[2,-1],[1,-1],[23,-12],[24,-14],[16,-8],[267,-148],[139,-78],[263,-147],[48,-27],[97,-55],[72,-40],[17,-10],[37,-20],[14,-8],[34,-19],[35,-20],[17,-9],[24,-14],[4,-3],[38,-21],[17,-8],[146,-83],[14,-8]],[[59592,74453],[-2,-333],[0,-45],[-1,-102],[0,-43],[0,-42],[-1,-18],[0,-4],[-1,-182],[-1,-129],[0,-65],[-2,-365],[-6,-164],[-1,-40],[0,-187],[0,-1],[0,-35],[0,-59],[0,-82],[0,-7],[-67,1],[-67,1],[-203,0],[-338,1],[-108,0],[-61,0],[-21,0],[-17,0],[-5,0],[-10,0],[-15,-1],[-19,0],[-37,0],[-35,1],[-104,1],[-104,2],[-3,0],[-48,-1],[-20,1],[-16,1],[-19,0],[-33,0],[-17,0],[-33,1],[-17,0],[-17,0],[-23,0],[-2,-1],[-13,-1],[-18,-1],[-8,-1],[-92,-1],[-127,-1],[1,-233],[0,-88],[0,-121],[0,-451],[1,-297],[0,-21],[0,-222],[-1,-21],[0,-81],[0,-111],[0,-54],[0,-52],[0,-53]],[[12647,76201],[-1,-78],[-3,-223],[-2,-53],[1,-58],[-1,-38],[0,-64],[-1,-24],[-2,-56],[0,-87],[1,-57],[0,-87],[-2,-78],[0,-89],[-2,-66],[-1,-73],[2,-71],[-1,-150],[-2,-274],[3,-49],[0,-124],[1,-154],[-1,-44],[3,-94],[1,-24],[0,-17],[2,-51],[1,-40],[0,-27],[1,-18],[0,-30],[1,-37],[0,-2],[-4,-72],[-2,-23],[-1,-21],[3,-36],[0,-65],[2,-113],[-2,-217],[1,-25],[-2,-261],[-1,-110],[-2,-32],[-5,-301],[260,-1],[1,-49],[3,-135],[0,-40],[3,-155],[1,-82],[1,-62],[2,-124],[-1,-41],[-4,-228],[0,-2],[0,-35],[-1,-31],[0,-65],[0,-46],[1,-60],[0,-39],[3,-391],[1,-17],[0,-40],[0,-55],[1,-46],[0,-27],[0,-23],[0,-3],[0,-25],[3,-62],[1,-130],[-2,-206],[-1,-45],[-1,-47],[-1,-90],[-2,-37],[-1,-172],[2,-59],[0,-194],[1,-45],[0,-163],[0,-16],[0,-23],[4,-94],[2,-77],[8,-222],[0,-189],[-1,-103],[2,-226],[0,-63],[1,-77],[1,-183],[0,-130],[0,-38],[1,-158],[0,-61],[0,-39],[2,-92],[3,-166],[1,-44],[1,-77],[-3,-42],[0,-49],[1,-109],[0,-23],[-3,-283],[0,-70],[0,-9],[-1,-24],[1,-25],[1,-27],[1,-24],[-1,-40],[0,-90],[-1,-78],[0,-22],[0,-34],[0,-151],[-2,-131],[-1,-78],[1,-96],[3,-300],[0,-35],[1,-125],[1,-61],[0,-74]],[[12925,65438],[-493,3],[-322,4],[-44,-1],[-24,0],[-43,-1],[-389,-4],[-75,-1],[-25,-1],[-78,-1],[-41,0],[-181,-2],[-7,0],[-140,0]],[[11063,65434],[-1,189],[0,9],[-2,232],[0,2],[0,25],[1,310],[-1,58],[-1,304],[0,18],[-2,243],[0,1],[0,101],[6,155],[2,33],[4,105],[-199,0],[-110,0],[-155,1],[-190,0],[-24,0],[-26,0],[-74,-1],[-2,3],[-83,0],[-206,2],[-183,0],[-147,1],[-43,0],[-111,0],[-158,1],[-73,0],[-125,-1],[-40,0],[-108,0],[-49,1],[-22,0],[-363,12],[-86,-2],[-6,0],[-603,-8],[-138,4],[-116,2],[-17,0],[-64,0],[-38,1],[-95,1],[-78,1],[-68,0],[-267,7],[-26,0],[-16,1],[-84,2],[-123,3],[-49,1],[-22,1],[-19,2],[-172,5],[-91,3],[-23,2],[-19,0],[-55,0],[-160,7],[-40,1],[-43,0],[-18,2],[-74,2],[-35,1],[-71,1],[-34,0],[-65,1],[-38,1],[-153,1],[-21,0],[-65,1],[-23,1],[-25,0],[0,-219],[1,-41],[0,-39],[-1,-68],[1,-34],[-1,-40],[-1,-161],[-2,-258],[-1,-41],[-2,-58],[-2,-91],[-2,-149],[0,-38],[-3,-184],[2,-37],[-1,-149],[-1,-98],[1,-95],[-52,1],[-35,0],[-71,0],[-70,1],[-145,2],[-49,0],[-79,1],[-65,1],[-50,1],[-326,4],[-1,0],[-292,6],[-28,1],[-44,1],[-140,4],[-35,0],[-28,0],[-36,0],[-303,1],[-180,0],[-125,0],[-2,0],[-80,0],[-230,-2],[-54,-1],[-43,0],[-168,0],[-45,0],[-49,1],[-104,1],[-69,1],[-56,0],[-33,0],[-130,1],[-37,0],[-41,-1],[-34,-1],[-32,1],[-1,0],[-35,1],[-37,1],[-135,-2],[-50,3],[-97,0],[-64,0],[-58,1],[-37,1],[-153,-4],[-74,3],[-76,2],[-84,2],[-76,2],[-87,2],[-221,6],[-311,4],[-30,0],[-225,-3],[-134,-1],[-23,0],[-21,0]],[[36,65525],[5,10],[6,8],[6,14],[3,6],[0,1],[5,25],[1,17],[1,20],[4,18],[3,10],[0,2],[1,3],[1,3],[4,13],[1,3],[4,32],[-1,23],[5,28],[11,28],[6,30],[2,25],[9,21],[10,26],[2,5],[6,16],[8,15],[3,6],[9,19],[7,19],[2,22],[4,23],[1,9],[0,14],[5,20],[3,11],[3,16],[6,25],[0,14],[1,9],[4,25],[2,11],[2,16],[0,25],[1,28],[0,2],[-1,21],[1,26],[2,12],[4,16],[2,23],[1,25],[0,28],[4,22],[2,18],[0,3],[3,23],[6,10],[7,10],[7,20],[9,21],[13,27],[10,21],[9,21],[15,24],[0,1],[1,0],[3,6],[0,3],[-3,10],[-4,13],[-6,9],[-8,15],[-1,8],[0,2],[-1,14],[0,1],[0,5],[5,34],[1,6],[5,28],[10,27],[5,32],[0,23],[0,8],[0,22],[3,12],[8,29],[6,23],[-1,6],[-2,14],[-2,11],[0,5],[-8,22],[2,9],[2,17],[2,15],[2,9],[10,16],[3,4],[4,5],[1,2],[2,1],[11,12],[12,13],[10,11],[13,11],[16,14],[17,9],[37,8],[39,2],[21,5],[3,1],[35,2],[4,1],[28,9],[4,1],[11,15],[2,23],[-2,29],[10,25],[1,2],[9,7],[4,4],[1,1],[3,0],[20,4],[2,0],[8,1],[20,-3],[19,4],[6,1],[4,2],[8,2],[11,5],[15,9],[1,1],[1,0],[1,1],[5,5],[16,13],[18,14],[19,7],[14,14],[4,4],[17,2],[35,2],[15,2],[12,1],[25,12],[16,16],[12,27],[17,18],[17,13],[23,11],[15,8],[12,16],[22,14],[19,12],[15,14],[5,6],[6,7],[18,17],[27,4],[2,1],[3,1],[1,1],[25,10],[8,5],[10,7],[13,8],[2,1],[1,1],[21,21],[7,10],[5,7],[14,15],[20,16],[13,24],[4,9],[4,15],[5,11],[15,32],[52,32],[8,5],[81,85],[44,46],[12,16],[15,18],[8,10],[34,29],[1,1],[16,14],[2,4],[24,74],[0,2],[8,33],[7,35],[0,1],[8,34],[1,5],[0,2],[15,130],[3,18],[8,44],[8,24],[15,44],[12,37],[2,4],[10,45],[0,1],[33,51],[34,57],[54,58],[30,16],[28,21],[42,30],[42,56],[18,54],[0,1],[1,4],[2,36],[-5,56],[0,2],[-2,2],[-13,28],[-7,20],[-1,3],[-2,5],[-1,5],[-3,12],[0,2],[-2,10],[-13,24],[-15,27],[-9,27],[-10,46],[-10,28],[-10,26],[-7,17],[-11,50],[2,35],[6,25],[22,40],[23,28],[6,9],[34,31],[6,3],[43,31],[32,22],[10,12],[21,26],[5,2],[8,5],[15,8],[15,2],[10,3],[8,1],[7,2],[20,6],[13,10],[6,4],[1,3],[12,22],[13,22],[30,26],[14,13],[5,4],[1,3],[9,24],[-3,23],[18,57],[3,19],[9,62],[12,41],[5,17],[1,1],[1,6],[0,1],[2,13],[-2,2],[-16,23],[-17,22],[12,24],[17,17],[11,22],[8,31],[2,5],[16,40],[0,1],[1,1],[17,33],[20,19],[2,2],[4,6],[7,13],[6,10],[2,2],[8,24],[18,32],[14,22],[16,9],[16,27],[5,34],[16,21],[16,25],[9,27],[1,3],[17,16],[15,5],[4,2],[13,15],[1,2],[11,13],[7,8],[6,14],[5,14],[1,1],[17,21],[2,2],[18,17],[5,10],[2,5],[11,22],[7,6],[12,10],[6,3],[14,7],[13,12],[14,24],[18,17],[0,1],[14,5],[19,8],[7,3],[1,1],[9,4],[6,2],[1,0],[1,0],[9,3],[16,1],[7,-1],[15,-2],[26,8],[22,16],[21,11],[20,20],[12,9],[2,1],[14,5],[6,2],[1,1],[22,13],[5,3],[16,17],[36,24],[16,9],[1,1],[4,2],[6,4],[2,0],[4,4],[10,8],[5,4],[28,16],[7,4],[22,13],[16,3],[26,6],[6,6],[10,8],[4,5],[1,5],[3,20],[-1,4],[-5,18],[-5,22],[0,24],[0,7],[5,6],[8,9],[3,3],[14,11],[4,3],[10,8],[27,24],[7,9],[16,24],[5,3],[8,7],[2,1],[5,3],[15,8],[6,4],[4,2],[14,10],[10,8],[4,2],[6,8],[6,8],[2,2],[24,19],[15,14],[10,12],[1,0],[2,4],[5,4],[3,2],[12,10],[12,10],[4,3],[5,3],[4,3],[7,5],[10,6],[0,-1],[2,2],[6,3],[10,5],[4,3],[15,0],[7,-1],[8,0],[4,0],[14,1],[15,-2],[19,3],[23,-3],[18,0],[18,1],[25,2],[19,-1],[24,-3],[6,-1],[15,-2],[18,5],[3,10],[1,2],[6,18],[-5,23],[0,2],[-5,19],[-2,9],[-12,59],[-1,23],[2,18],[0,4],[2,2],[15,11],[15,6],[1,0],[22,4],[29,-10],[14,-9],[21,-15],[20,-8],[22,-5],[23,6],[22,17],[5,3],[14,6],[5,2],[2,1],[12,10],[10,8],[6,5],[24,2],[24,-4],[37,-11],[20,-4],[21,4],[15,6],[4,3],[15,13],[2,1],[19,15],[19,15],[11,14],[6,7],[17,11],[27,18],[24,15],[20,12],[26,8],[30,1],[44,2],[43,6],[27,3],[5,0],[10,0],[5,2],[13,6],[3,1],[14,7],[13,14],[4,3],[22,19],[20,12],[51,29],[71,32],[14,7],[21,6],[15,-3],[22,-3],[19,1],[24,8],[2,1],[14,7],[18,8],[27,12],[3,1],[16,16],[24,6],[19,0],[23,3],[56,2],[22,2],[3,1],[10,3],[3,1],[16,14],[6,26],[7,27],[7,47],[0,32],[-3,8],[-4,14],[-1,3],[0,2],[-2,14],[-1,14],[-1,6],[2,11],[0,4],[1,7],[2,11],[6,33],[1,3],[-1,4],[-3,29],[5,32],[7,8],[13,14],[26,14],[15,8],[1,0],[1,2],[31,36],[32,42],[4,8],[12,26],[40,46],[68,50],[35,31],[5,5],[3,1],[10,5],[40,21],[15,7],[5,3],[5,2],[3,1],[22,3],[25,4],[38,-6],[39,-11],[14,-5],[20,-6],[19,-5],[41,-13],[10,-2],[68,-27],[45,-12],[11,-7],[24,-15],[29,-8],[7,-2],[85,-55],[1,-1],[2,0],[11,-3],[6,-1],[6,-2],[4,-1],[4,1],[23,6],[24,2],[10,1],[3,0],[4,-1],[2,0],[1,0],[15,-3],[3,0],[3,-1],[1,0],[6,-4],[21,-14],[1,-1],[23,-10],[17,-6],[30,-4],[8,-1],[31,-13],[32,-4],[31,9],[21,9],[73,51],[34,48],[12,25],[4,9],[-15,14],[-5,3],[-11,8],[-3,2],[-3,5],[-8,14],[-7,25],[1,30],[3,5],[13,30],[15,23],[47,31],[43,19],[33,36],[11,15],[3,4],[-1,24],[-3,44],[8,25],[4,13],[1,1],[1,3],[8,22],[9,25],[3,5],[3,3],[2,4],[2,2],[7,9],[6,7],[5,5],[2,2],[4,8],[12,22],[12,18],[15,24],[14,26],[12,24],[1,3],[5,13],[4,8],[1,2],[3,8],[-3,11],[-1,7],[-1,2],[0,2],[0,6],[1,14],[3,10],[2,3],[3,8],[0,2],[3,9],[2,10],[1,6],[2,12],[11,22],[2,4],[3,6],[20,25],[19,23],[20,18],[19,19],[21,20],[24,15],[33,22],[22,12],[28,13],[38,14],[16,8],[29,15],[22,10],[23,7],[11,1],[5,0],[24,0],[27,3],[20,3],[24,5],[29,-3],[5,-1],[9,-5],[14,-7],[1,0],[12,-7],[10,-6],[14,-8],[2,-1],[18,-7],[19,-9],[3,-1],[14,-6],[6,-2],[3,-2],[14,-12],[10,-8],[14,-12],[21,-15],[17,-9],[18,-10],[27,-19],[21,-13],[18,-7],[31,-10],[41,-14],[44,-6],[7,-3],[25,-12],[12,-4],[12,-3],[3,-1],[37,-13],[8,-1],[14,-2],[26,-19],[8,-6],[7,-5],[1,-1],[7,-4],[21,-6],[16,0],[2,0],[5,-1],[17,-4],[19,0],[20,-2],[17,-4],[25,-4],[2,0],[15,-2],[5,1],[0,1],[11,3],[7,3],[4,0],[21,1],[14,-2],[1,-1],[25,15],[31,14],[15,8],[3,1],[5,2],[15,8],[20,14],[1,4],[6,22],[-1,5],[-3,16],[-2,7],[2,7],[3,14],[0,3],[1,5],[0,13],[-1,19],[5,15],[1,3],[5,18],[25,22],[4,4],[15,11],[16,22],[16,20],[2,6],[1,2],[4,15],[2,18],[2,13],[2,8],[4,15],[7,36],[2,18],[0,7],[1,10],[-6,25],[-4,21],[-1,4],[-1,23],[-1,14],[-1,22],[-1,2],[-3,21],[1,22],[1,9],[0,4],[1,8],[3,7],[10,17],[7,10],[9,11],[0,1],[15,20],[4,5],[2,3],[13,17],[2,10],[5,19],[1,5],[1,6],[1,19],[0,1],[5,40],[7,19],[5,14],[2,4],[2,5],[0,2],[3,14],[2,9],[8,33],[9,29],[3,13],[3,9],[9,21],[7,10],[6,10],[8,15],[6,12],[10,12],[12,14],[3,4],[14,14],[8,8],[29,20],[15,9],[24,11],[27,5],[15,14],[17,8],[14,8],[7,3],[17,7],[6,3],[1,0],[2,1],[5,1],[2,0],[6,2],[2,0],[5,1],[1,0],[3,0],[16,1],[5,1],[5,-1],[13,-3],[17,8],[2,0],[1,1],[15,10],[11,8],[5,3],[10,7],[14,8],[6,4],[3,1],[12,3],[5,2],[16,5],[1,0],[7,2],[3,0],[1,0],[10,2],[3,0],[24,-1],[9,0],[7,0],[6,0],[24,7],[21,1],[5,1],[9,3],[15,5],[1,0],[3,2],[12,6],[2,1],[2,2],[8,6],[8,7],[2,2],[2,1],[0,3],[0,78],[-1,13],[1,110],[1,150],[4,153],[1,224],[2,82],[-1,179],[0,52],[-1,377],[0,21],[0,1],[-1,274]],[[8972,76193],[35,0],[16,0],[6,0],[160,0],[147,-1],[291,0],[84,1],[97,3],[1,0],[113,0],[16,0],[15,0],[145,-1],[59,0],[151,-1],[31,-1],[88,0],[15,0],[104,2],[87,1],[25,0],[61,0],[54,0],[16,0],[27,0],[48,0],[27,-1],[29,1],[18,0],[111,-3],[76,-1],[89,0],[53,-1],[128,-1],[115,-1],[52,0],[4,0],[86,0],[52,1],[41,1],[115,2],[18,1],[137,1],[76,1],[45,1],[34,0],[33,1],[96,1],[35,0],[214,2],[58,0],[41,0]],[[29591,76139],[0,-36],[-1,-148],[0,-104],[-1,-60],[0,-76],[-1,-124],[0,-53],[-1,-131],[0,-210],[0,-5],[0,-102],[8,-148],[1,-231],[0,-21],[0,-24],[-3,-195],[-1,-39],[-1,-96],[-1,-11],[-1,-74],[-1,-47],[2,-71],[1,-49],[0,-44],[1,-39],[2,-127],[2,-97],[3,-161],[-2,-91],[-1,-82],[-3,-183],[-2,-56],[-4,-37],[-1,-14],[-12,-231],[-2,-25],[-6,-69],[1,-23],[4,-76],[6,-97],[5,-103],[37,-1],[57,-1],[1,0],[189,-3],[41,0],[85,-1],[166,-3],[55,-1],[123,-2],[109,1],[9,0],[101,0],[41,0],[207,0],[25,0],[33,0],[85,1],[228,3],[324,0],[297,0],[233,0],[56,0],[134,-1],[158,1],[163,2],[140,0],[17,1],[86,2],[28,0],[47,1],[125,3],[48,1],[84,2],[161,4],[46,1]],[[33321,72539],[-4,-132],[0,-2],[-4,-159],[-18,-297],[-1,-52],[-2,-243],[3,-294],[9,-291],[1,-46],[0,-23],[1,-76],[3,-146],[3,-100],[3,-61],[2,-70],[0,-23],[0,-10],[-3,-191],[-19,-135],[3,-101],[0,-22],[1,-22],[2,-72],[0,-10],[0,-11],[2,-61],[2,-101],[3,-90],[0,-54],[-4,-348],[0,-42],[1,-62],[1,-195],[3,-285],[-1,-146],[-1,-157],[-1,-146],[-2,-158],[12,-380],[-1,-58],[0,-4],[-10,-163],[-1,-68],[5,-223],[0,-298],[0,-420],[0,-80],[0,-100],[-2,-63],[0,-13],[0,-14],[-3,-121],[-7,-299],[0,-4],[-2,-93],[-1,-301]],[[33294,65403],[-194,1],[-11,0],[-161,1],[-158,1],[-67,1],[-40,0],[-179,2],[-28,1],[-109,1],[-2,0],[-32,0],[-95,1],[-333,-2],[-320,-3],[-21,0],[-7,0],[-76,0],[-39,0],[-113,0],[-135,0],[-183,0],[-16,0],[-34,0],[-17,0],[-6,0],[-11,0],[-193,0],[-154,0],[-224,6],[-93,1],[-55,1],[-354,3],[-76,1],[-95,1],[-85,0],[-410,3],[-63,1],[-52,0],[-76,0],[-203,0],[-45,0],[-20,0],[-118,-1],[-83,-1],[-55,-2],[-65,-1],[-110,-1],[-74,-1],[-188,-3],[-145,1],[-176,0],[-182,1],[-271,1],[-210,0],[-122,1],[-133,0],[-125,-4],[-81,-3],[-129,-1],[-1,0],[-449,0],[-166,-1],[-143,0],[-62,0],[-26,-1],[-1,0],[-16,0],[-15,0],[-51,4],[-167,1],[-144,1],[-25,-1],[-42,1],[-3,0],[-66,0],[-21,0],[-49,0],[-307,2],[-105,6],[-148,0],[-22,0],[-36,-1],[-23,-1],[-73,1],[-68,0],[-240,-2],[-184,-2],[-175,-2],[-405,-2],[-384,-4],[-19,-3],[-281,-4],[-1,0],[-77,-1],[-86,-3],[-218,-5],[-553,-6],[-174,1],[-493,8],[-316,-6],[-172,-3],[-116,2]],[[20319,65389],[-1,88],[-2,92],[-1,46],[-1,76],[-1,205],[0,12],[0,45],[1,22],[0,31],[1,39],[-1,51],[-1,25],[1,34],[-1,17],[0,17],[0,115],[1,159],[0,32],[0,135],[-1,345],[-1,244],[0,29],[-1,40],[1,83],[0,131],[0,26],[0,33],[0,22],[-1,154],[-1,23],[-6,310],[6,304],[6,284],[-2,69],[1,104],[5,207],[-2,163],[-6,124],[-1,157],[0,50],[-2,89],[-1,19],[0,15],[-3,24],[2,30],[0,5],[-1,22],[-1,42],[0,74],[-2,74],[2,300],[-1,97],[-2,205],[-1,62],[-1,23],[0,145],[0,89],[0,72],[0,35],[-1,55],[-2,121],[-2,113],[-2,121],[-1,46],[-1,41],[-5,270],[0,25],[2,238],[0,42],[1,73],[1,173],[0,17],[0,5],[1,95],[-1,151],[0,21],[-60,6],[-18,2],[-40,4],[-27,2],[4,346],[2,178],[0,74],[1,155],[1,140],[2,113],[2,142],[0,11],[1,42],[3,193],[2,106],[1,63],[-1,166],[-1,83],[0,51],[0,163],[-1,8],[0,94],[0,91],[-1,106],[-1,375],[-3,210],[0,12],[-1,10],[0,13],[0,27],[0,34],[0,48],[0,68],[-2,490]],[[20153,76187],[152,6],[161,7],[73,-5],[177,-12],[61,-2],[146,5],[177,7],[44,-1],[191,-5],[80,-2],[95,-1],[3,0],[328,-5],[203,2],[17,0],[76,1],[75,1],[148,2],[17,0],[428,-3],[31,-2],[20,-1],[44,0],[66,2],[18,-1],[42,-1],[183,0],[53,2],[152,0],[19,0],[5,0],[74,1],[97,1],[303,-2],[250,16],[71,5],[149,-4],[170,-2],[136,6],[18,-1],[399,-3],[359,-3],[352,-4],[77,-3],[60,-3],[17,-1],[178,-9],[310,-16],[112,-5],[128,-1],[92,-1],[185,-1],[79,-1],[83,-1],[145,-1],[178,-2],[228,-2],[115,-1],[27,0],[104,-1],[39,0],[33,0],[191,-1],[133,-1],[50,0],[73,-1],[73,0],[24,0],[22,0],[21,-1],[98,-1],[191,8],[18,0],[46,2],[45,0],[61,-2],[42,-1],[31,-1],[277,-2],[58,0],[94,-4],[37,2]],[[20319,65389],[-77,2],[-157,2],[-115,0],[-52,-1],[-18,-1],[-70,3],[-54,2],[-20,1],[-39,1],[-21,-1],[-31,2],[-15,0],[-10,-1],[-33,1],[-31,1],[-11,1],[-21,1],[-39,1],[-22,1],[-7,0],[-40,-1],[-46,-1],[-89,1],[-85,1],[-138,0],[-38,0],[-99,0],[-34,0],[-110,3],[-20,0],[-18,-1],[-103,5],[-127,0],[-47,0],[-81,0],[-78,1],[-100,2],[-46,0],[-313,4],[-145,-1],[-143,0],[-21,0],[-152,0],[-155,-1],[-90,0],[-29,0],[-107,0],[-353,-1],[-46,0],[-309,1],[-48,0],[-25,0],[-118,2],[-73,-2],[-103,-2],[-216,2],[-26,0],[-97,2],[-99,-1],[-92,1],[-142,1],[-200,-2],[-74,1],[-113,1],[-93,1],[-26,0],[-155,2],[-82,1],[-39,1],[-33,1],[-126,1],[-33,-1],[-35,2],[-118,0],[-38,1],[-111,1],[-67,0],[-83,1],[-140,0],[-13,0],[-9,0],[-32,0],[-31,1],[-35,-2],[-60,2],[-25,0],[-58,0],[-39,3],[-68,1],[-46,0],[-40,0],[-27,0],[-37,1],[-222,1],[-42,1]],[[12647,76201],[433,1],[54,0],[159,-4],[47,-1],[52,-1],[18,-1],[35,2],[29,-2],[62,0],[62,0],[36,0],[77,2],[205,0],[313,2],[49,0],[102,-1],[173,-2],[86,1],[21,-1],[20,0],[23,1],[82,0],[81,1],[221,2],[188,3],[167,0],[29,1],[19,0],[226,0],[241,0],[146,0],[161,0],[89,0],[42,0],[39,0],[319,0],[32,1],[15,0],[56,0],[240,0],[49,0],[50,-1],[61,-1],[40,-1],[47,-1],[3,0],[16,0],[35,-1],[110,-3],[29,0],[1,0],[300,0],[167,1],[52,0],[103,0],[14,0],[15,0],[207,1],[18,0],[23,0],[65,0],[539,3],[18,0],[21,0],[7,0],[44,0],[17,0],[148,1],[157,0],[12,0],[38,0],[133,1],[278,0],[83,0],[157,-17]],[[63346,73214],[0,-3],[-2,-59],[-5,-230],[-3,-251],[-4,-113],[145,-6],[2,-27],[-2,-264],[-2,-218],[-4,-384],[0,-117],[-1,-133],[0,-6],[0,-19],[-2,-209],[-1,-79],[0,-43],[-3,-216],[0,-15],[0,-62],[-1,-58],[0,-6],[-1,-80],[0,-3],[-2,-220],[-1,-70],[2,-450],[-3,-84],[0,-2],[-3,-61],[-1,-28],[0,-27],[0,-67],[2,-237],[0,-6],[0,-93],[0,-61],[2,-63],[-1,-55],[2,-138],[2,-105],[2,-137],[1,-34],[-1,-58],[-1,-40],[0,-18],[-6,-289],[-1,-67],[3,-46],[0,-21],[0,-78],[1,-42],[1,-241],[-3,-50],[0,-272],[-1,-56],[2,-122],[1,-92],[0,-11],[-3,-11],[76,-1],[10,0],[54,-1],[194,-2],[229,1],[181,1],[22,1],[472,-2],[46,-1],[100,-1],[130,-1],[20,0],[24,3],[19,2],[258,-1],[119,0],[247,0],[5,0],[29,-1],[166,0],[135,0],[113,0],[52,0],[206,1],[15,0],[112,1],[76,0],[12,0],[29,0],[69,0],[12,0],[55,-1],[43,0],[76,-2],[57,0],[143,-2],[105,-2],[2,0],[62,-1],[1,0]],[[67232,67152],[-1,-25],[-4,-23],[0,-96],[0,-26],[1,-115],[0,-8],[1,-222],[1,-78],[0,-25],[-1,-35],[0,-34],[0,-26],[0,-37],[0,-34],[0,-37],[0,-36],[0,-41],[-1,-80],[-1,-52],[-1,-64],[-1,-23],[0,-23],[-1,-25],[0,-36],[0,-27],[0,-43],[0,-57],[-1,-22],[0,-1],[-1,-36],[0,-164],[0,-34],[0,-21],[0,-2],[1,-23],[-1,-88],[1,-22],[-1,-92],[0,-193],[0,-67],[0,-7],[1,-130],[0,-140],[0,-209],[2,-403],[1,-248],[-3,-247],[-3,-122],[0,-24],[0,-253],[2,-58],[0,-61],[-3,-255],[0,-106],[5,-54],[0,-76],[0,-44],[0,-6],[1,-26],[-1,-69],[-2,-120],[-1,-50],[-7,-344],[2,-55],[1,-8],[5,-73],[5,-101],[-1,-76],[-2,-99],[0,-25],[-3,-112],[-2,-24],[0,-61],[0,-131],[-2,-85],[-5,-164],[0,-2],[-3,-88],[2,-54],[1,-20],[0,-12],[-2,-68],[0,-28],[-6,-225],[-3,-122],[0,-7],[-5,-159],[-4,-136],[-3,-99],[0,-1]],[[67189,59972],[-104,0],[-47,0],[-296,2],[-82,1],[-55,0],[-17,0],[-310,2],[-18,0],[-155,2],[-472,7],[-293,0],[-46,0],[-39,0],[-2,0],[-77,0],[-170,-1],[-243,5],[-163,3],[-378,8],[-23,0],[-27,0],[-744,6]],[[63428,60007],[-84,1],[-116,-2],[-486,-2],[-53,0],[-104,2],[-91,-1],[-80,-1],[-74,-2],[-133,-3],[-19,0],[-30,0],[-211,-3],[-16,2],[-140,-2],[-241,-2],[-20,-1],[-146,6],[-11,0],[-75,-1],[-53,-2],[-62,4],[-113,3],[-21,0],[-101,1],[-146,3],[-100,0],[-21,0],[-224,-1],[-302,-2],[-28,-3],[-59,1],[-22,-1],[-30,-3],[-254,6],[-18,1],[-54,1],[-1,63],[0,92],[-4,45],[-2,70],[0,19],[0,4],[3,32],[5,88],[5,92],[1,7],[5,68],[1,55],[0,1],[0,35],[2,25],[1,76],[3,160],[4,178],[5,128],[1,21],[1,24],[8,163],[4,85],[1,115],[2,128],[0,24],[-16,0],[-43,0],[-375,-1],[-37,1],[-113,-1],[-100,0],[-21,0],[-46,0],[-220,0],[-41,-1],[-148,0],[-74,-2],[-97,-4],[-225,-8],[-138,4],[-2,0],[-46,1],[-9,0],[-105,3]],[[57879,61796],[-1,68],[0,74],[-3,439],[-3,151],[-2,108],[1,75],[0,238],[1,51],[0,147],[0,147],[1,184],[0,67],[0,17],[0,38],[-2,368],[-1,45],[0,12],[0,42],[0,146],[-1,104],[-1,196],[0,74],[1,218],[1,143],[1,178],[0,34],[-1,63],[-1,43],[3,121],[-6,69],[-2,78],[-3,123],[1,8],[2,14],[6,182],[2,42],[4,56],[0,1],[1,42],[-2,309],[-1,147],[-1,111],[-1,209],[0,95],[0,13],[-4,126],[-4,169],[0,17],[-1,171],[0,59],[0,78],[-1,51],[0,117],[0,27],[2,24],[0,22],[-1,21],[-1,28],[0,39],[-1,80],[-1,89],[-1,123],[0,57],[0,142],[0,35],[1,133],[0,1],[2,208],[0,25],[0,2],[2,181],[0,92],[-1,154],[-1,150],[0,46],[1,344],[-1,67],[-1,147],[-3,254],[1,73],[1,64],[0,21],[1,138],[0,133],[0,4],[0,29],[0,120]],[[59592,74453],[159,-89],[67,-37],[195,-109],[539,-302],[55,-32],[225,-126],[2,-2],[29,-38],[3,-4],[1,0],[2,-7],[12,-27],[15,-11],[29,-40],[6,-22],[17,-7],[9,-4],[38,-50],[3,-4],[3,-5],[29,8],[5,2],[23,6],[14,-9],[8,-2],[27,-13],[115,-56],[11,0],[2,-2],[29,-1],[27,-1],[15,-14],[5,-22],[15,-6],[19,-13],[0,-1],[10,-20],[-9,-21],[3,-15],[-2,-7],[3,1],[25,3],[13,5],[81,17],[11,-2],[22,-3],[23,15],[2,3],[115,24],[10,26],[-7,42],[-18,19],[-11,15],[-30,41],[2,2],[10,11],[1,1],[3,3],[15,7],[9,20],[2,3],[12,13],[14,4],[22,-11],[17,-8],[16,-10],[1,-2],[24,-36],[2,-4],[9,-25],[11,-4],[2,-2],[1,1],[5,-2],[16,10],[14,38],[5,7],[13,18],[2,1],[12,9],[11,-2],[8,-5],[25,-3],[1,0],[10,-2],[13,-3],[15,-11],[0,-10],[0,-3],[0,-17],[0,-4],[0,-7],[-5,-17],[-3,-6],[-66,-81],[-6,-29],[2,-42],[8,-27],[3,-22],[12,-28],[2,-6],[2,-8],[2,-2],[2,-5],[29,-17],[24,-1],[15,4],[17,8],[14,10],[16,18],[6,5],[62,30],[1,8],[7,6],[7,19],[-1,27],[-8,21],[-17,50],[-1,3],[1,1],[3,0],[33,-3],[11,-1],[22,-20],[3,-3],[6,-9],[7,-22],[15,-15],[32,-22],[24,-23],[22,-5],[16,5],[11,5],[8,3],[12,14],[2,3],[8,9],[3,3],[3,6],[5,10],[3,3],[24,19],[8,6],[3,2],[2,1],[14,1],[6,1],[1,0],[15,4],[6,2],[10,6],[4,3],[5,9],[49,20],[3,1],[30,3],[18,18],[6,2],[11,1],[3,-1],[10,-3],[16,-6],[17,-13],[33,-14],[15,6],[4,6],[120,-31],[5,-1],[12,-24],[15,-16],[27,-23],[-3,-17],[-2,-10],[1,-2],[-6,-42],[-2,-3],[1,-3],[-1,-9],[7,-4],[2,-6],[21,-14],[17,-5],[9,-17],[-1,-8],[0,-15],[-4,-12],[3,-1],[0,-2],[9,-2],[3,-1],[10,-1],[46,-7],[5,-2],[1,1],[1,0],[6,-1],[1,6],[2,7],[1,2],[0,4],[0,1],[8,40],[7,13],[28,-11],[4,-1],[6,-9],[15,1],[4,-1],[1,2],[3,0],[3,12],[13,27],[9,10],[26,7],[1,1],[14,4],[48,-8],[22,2],[17,-10],[5,-3],[5,-3],[4,-20],[26,2],[8,-4],[67,-38],[1,-2],[2,0],[4,-3],[2,1],[7,-2],[13,13],[10,5],[11,1],[8,-2],[42,-16]],[[72769,68362],[-10,-59],[0,-227],[0,-110],[0,-241],[-1,-34],[-1,-73],[0,-5],[-1,-55],[-5,-295],[-5,-220],[-1,-60],[-1,-25],[-31,2],[-17,1],[-48,4],[-50,4],[-163,12],[-47,2],[-49,2],[-115,5],[-88,4],[-10,1],[-145,7],[-135,7],[-30,1],[-63,4],[-210,9],[-137,6],[-53,2],[-75,4],[-80,5],[-2,1],[-240,21],[-111,4],[-80,2],[-123,6],[-44,1],[-210,2],[-18,2],[-35,3],[-44,3],[-22,1],[-19,1],[-48,1],[-34,1],[-19,0],[-125,4],[-25,1],[-127,2],[-53,1],[-67,2],[-38,1],[-310,9],[-336,13],[-311,8],[-19,-1],[-62,4],[-229,5],[-311,9],[-149,-3],[-191,-2],[-462,9],[-102,1]],[[63346,73214],[15,2],[9,-2],[31,-8],[18,-15],[18,-14],[11,-15],[22,-8],[0,-4],[-3,-22],[0,-3],[-7,-17],[5,-8],[0,-2],[3,-4],[2,-4],[4,-3],[48,-56],[2,-5],[-8,-55],[3,-4],[0,-1],[2,-1],[14,-19],[8,-19],[-12,-18],[-4,-7],[15,-16],[19,-14],[17,-2],[8,-5],[6,-6],[0,-10],[-4,-16],[-4,-21],[8,-21],[14,-7],[12,-3],[24,-10],[0,-3],[-106,-60],[-4,-21],[14,-9],[42,-3],[18,2],[20,16],[1,0],[12,-5],[5,-16],[4,-9],[1,-4],[8,4],[1,-3],[5,6],[3,1],[58,30],[13,0],[1,0],[25,-10],[2,0],[9,-5],[19,-13],[15,-3],[10,-2],[5,0],[3,-1],[5,3],[3,0],[8,5],[32,15],[17,-8],[8,-21],[15,-7],[18,-3],[4,0],[40,-19],[30,-13],[30,-5],[22,2],[1,1],[5,0],[5,11],[2,3],[2,8],[14,36],[6,2],[94,0],[4,-3],[20,-5],[10,8],[18,0],[75,0],[5,0],[7,0],[27,-6],[8,6],[3,0],[3,4],[8,6],[8,6],[10,8],[4,25],[7,19],[-13,20],[-14,11],[-1,1],[-4,7],[-8,12],[2,10],[2,3],[1,0],[13,11],[0,9],[19,28],[19,29],[5,7],[-1,7],[2,2],[-2,18],[0,6],[-4,30],[7,25],[-1,3],[2,12],[-13,15],[4,17],[6,4],[6,4],[14,9],[8,3],[28,20],[13,30],[-1,23],[-4,20],[8,29],[25,43],[22,52],[47,30],[6,1],[9,-5],[60,-35],[1,0],[5,-5],[15,-7],[8,-10],[9,-24],[0,-1],[1,-1],[0,-4],[3,-37],[8,-19],[17,-22],[1,-3],[2,-5],[10,-27],[1,-3],[4,-37],[11,-17],[4,0],[0,-2],[5,1],[7,0],[18,8],[15,5],[8,3],[17,4],[4,2],[4,2],[31,9],[12,4],[5,2],[15,25],[26,32],[24,1],[18,10],[17,19],[24,24],[5,20],[4,5],[7,7],[5,2],[11,5],[35,15],[1,0],[36,16],[5,-2],[59,-22],[2,-1],[3,-1],[16,-6],[4,1],[3,-1],[20,2],[9,6],[31,7],[10,0],[8,-6],[34,-26],[7,-2],[11,-7],[23,2],[6,0],[59,6],[13,2],[4,0],[19,1],[5,2],[31,12],[17,14],[12,13],[17,22],[15,24],[12,7],[14,1],[19,-3],[3,6],[5,1],[-1,7],[3,7],[-7,9],[-3,16],[-4,19],[-1,3],[7,-1],[18,-2],[4,0],[16,-8],[21,-1],[25,4],[19,-2],[19,-9],[18,-12],[17,-3],[41,6],[26,-2],[17,4],[17,2],[2,0],[44,-11],[31,-11],[57,-19],[3,-5],[4,-138],[3,-4],[0,-1],[1,0],[1,-2],[2,-2],[17,-24],[1,-1],[7,-22],[17,-19],[9,-15],[-6,-14],[-2,-5],[15,-44],[19,-60],[1,-2],[1,0],[0,-2],[52,-31],[4,-12],[-7,-24],[-1,-1],[-8,-22],[2,-4],[-2,-7],[7,-7],[3,-7],[15,-10],[12,-8],[3,-2],[7,-6],[34,-29],[1,-4],[14,-9],[32,-11],[4,0],[22,-3],[17,-6],[4,1],[4,-1],[69,18],[10,2],[2,1],[10,-3],[18,0],[14,7],[19,9],[12,5],[6,7],[20,21],[0,6],[1,1],[3,3],[-6,47],[-3,32],[3,10],[21,18],[32,25],[38,-6],[1,-1],[2,0],[66,-12],[14,-13],[19,-1],[21,0],[26,-2],[3,-2],[11,-12],[48,-23],[0,-2],[1,-71],[0,-6],[0,-6],[12,-19],[24,-26],[4,-4],[12,-10],[8,-9],[2,1],[5,-4],[31,-4],[27,9],[5,1],[85,3],[6,-5],[14,-32],[28,-9],[5,-1],[36,-12],[3,-4],[1,-10],[-2,-23],[7,-8],[1,-3],[3,-1],[2,-2],[11,-1],[15,-2],[14,-14],[20,2],[24,-7],[21,0],[11,-17],[8,-7],[3,-6],[29,-42],[2,-4],[2,-13],[-8,-27],[29,-27],[11,-10],[41,-24],[11,-6],[12,0],[19,4],[2,3],[7,11],[6,9],[3,4],[39,49],[6,6],[12,5],[8,3],[88,27],[10,2],[13,-1],[13,-3],[16,-7],[11,-7],[4,-1],[35,0],[1,0],[2,0],[14,3],[4,-1],[1,0],[3,2],[3,0],[1,0],[4,2],[24,13],[0,1],[49,23],[13,6],[0,1],[6,4],[6,7],[54,97],[2,4],[0,1],[-2,12],[0,2],[-4,8],[-2,3],[-5,6],[-2,6],[1,6],[5,5],[57,26],[7,0],[7,-1],[68,-48],[4,-2],[32,-35],[13,-30],[7,-8],[8,-5],[1,-1],[9,-2],[37,-1],[21,-10],[58,-30],[46,-25],[11,-11],[4,-7],[3,-6],[0,-1],[1,0],[23,-22],[9,-7],[41,-23],[1,-1],[22,-15],[45,-29],[1,-1],[54,-38],[11,-9],[104,-81],[37,-18],[15,-9],[56,-49],[5,-4],[7,-6],[17,-22],[6,-8],[4,-9],[0,-1],[2,-22],[0,-12],[-1,-6],[-5,-9],[-5,-9],[-9,-77],[-9,-13],[-3,-6],[3,-8],[35,-20],[13,-5],[4,1],[10,4],[4,4],[0,1],[10,21],[22,22],[5,13],[25,22],[0,-1],[7,5],[1,3],[8,7],[-1,12],[1,4],[-5,22],[-3,17],[0,11],[21,13],[17,-30],[1,-1],[1,-2],[2,-10],[7,-4],[1,-3],[6,-3],[7,-5],[17,-8],[3,-1],[3,-2],[27,-15],[19,-5],[7,1],[3,-1],[29,-12],[58,-25],[2,-1],[6,-6],[2,-1],[26,-7],[38,-17],[86,-102],[25,-5],[13,3],[5,-1],[3,2],[7,2],[22,19],[32,13],[22,27],[10,16],[11,9],[2,1],[2,2],[5,-1],[18,-6],[3,-1],[22,-2],[38,17],[9,1],[8,1],[7,0],[17,-2],[11,5],[70,5],[19,3],[11,0],[1,1],[3,0],[106,46],[39,17],[6,6],[3,3],[1,3],[21,26],[37,46],[45,-1],[6,0],[5,0],[2,0],[54,0],[1,-7],[15,-119],[0,-2],[0,-3],[7,-46],[18,-41],[43,-48],[40,-35],[23,-12],[6,-3],[9,-2],[42,-10],[64,-5],[6,0],[28,5],[10,7],[19,12],[56,-4],[35,-19],[1,-1],[2,0],[43,-6],[10,-2],[10,-3],[14,-10],[49,-43],[4,-3],[4,1],[32,13],[51,13],[8,0],[32,89],[5,6],[49,52],[13,9],[10,5],[10,0],[64,-13],[6,-3],[7,-3],[2,0],[23,-14],[12,-6],[38,-41],[8,-3],[19,-9],[12,-5],[32,-2],[17,-2],[33,-23],[8,-9],[27,-34],[10,-19],[11,-19],[13,-35],[30,-34],[31,-21],[59,-15],[27,-3],[5,6],[3,3],[4,4],[-3,22],[-1,4],[9,7],[17,2],[15,-14],[15,-12],[88,-52],[30,0],[11,5],[15,6],[6,-2],[41,-17],[27,-10],[29,-74],[19,-24],[0,-1],[2,-2],[23,-16],[4,-3],[2,0],[35,-11],[58,-25],[47,-17],[42,-19],[25,-29],[9,-21],[23,-50],[21,-19],[2,-1],[1,0],[38,-3],[1,0],[3,1],[40,16],[2,0],[1,0],[22,9],[27,3],[77,4],[73,-8],[18,-9],[20,-18],[85,-93],[2,-5],[3,-4],[-1,-11],[0,-33],[-8,-3],[-43,-17],[-50,-41],[-33,-64],[-10,-19],[-10,-20],[-14,-78],[-5,-52],[8,-38],[6,-8],[13,-17],[22,-31],[23,-78],[8,-74],[-2,-87],[6,-26],[6,-14],[12,-14],[13,-14],[23,-4],[2,-1],[5,-1],[6,-1],[2,-1],[6,0],[6,0],[22,-2],[34,2],[15,3],[86,3],[72,-16],[1,0],[19,-22],[9,-25],[15,-17],[15,-4],[33,-7],[44,-20],[23,-25],[-1,-3],[0,-8],[-1,-6],[0,-6],[2,-3],[-21,-25],[-8,-20],[-34,-42],[-7,-27],[-4,-15],[-2,-13],[-3,-15],[0,-1],[-15,-11],[-15,-5],[-9,-4],[-1,0],[-16,2],[-21,17],[-4,3],[-7,2],[-3,1],[-1,0],[-16,2],[-12,-10],[-37,-55],[-5,-15],[0,-1],[-15,-53],[-23,-45],[-3,-6],[-24,-27],[-110,-89],[-13,-11],[-19,-30],[-18,-17],[-25,-38],[-37,-57],[-31,-40],[-3,-5],[-24,-19],[-3,-1],[-28,-12],[-16,-13],[-7,-6],[-47,-39],[-115,-98],[-3,-10],[-6,-16],[-5,-15],[-12,-17],[-54,-57],[-58,-47],[-24,-20],[-31,-47],[-5,-52],[4,-24],[55,-115],[12,-15],[11,-15],[9,-11],[1,-1],[2,-3],[9,-11],[26,-18],[12,-1],[4,-1],[6,-4],[9,-7],[12,-4],[28,-7],[39,-19],[44,-35],[5,-3],[4,-1],[55,-9],[8,-5],[7,-4],[18,0],[34,1],[7,-8],[15,-15],[5,-6],[24,-41],[-6,-38],[-2,-11],[-1,-2],[-2,-11],[4,-17],[31,-86],[3,-4],[14,-16],[42,-19],[10,-12],[9,-10],[65,-74],[11,-6],[37,-9],[45,-5],[14,-2],[50,9],[57,0],[3,0],[15,-9],[15,-17],[9,-24],[4,-11],[9,-8],[4,-3],[10,-9],[25,-10],[12,-6],[26,-9],[26,1],[17,3],[6,0],[4,0],[34,3],[107,8],[3,-2],[10,0]],[[42871,70785],[0,-69],[0,-11],[0,-110],[0,-272],[-5,-202],[0,-1],[-1,-40],[-1,-51],[0,-6],[-8,-289],[-3,-106],[-1,-54],[-1,-27],[-3,-117],[-8,-298],[1,-133],[1,-136],[0,-1],[3,-629],[1,-201],[1,-56],[0,-30],[1,-183],[0,-29],[1,-31],[1,-27],[4,-84],[4,-121],[6,-160],[2,-59],[5,-143],[0,-114],[0,-55],[0,-100],[0,-229],[0,-34],[0,-85],[0,-92],[0,-66],[0,-286],[0,-136],[0,-69],[0,-66],[1,-257],[-7,-394],[0,-71],[0,-8],[-7,-722],[1,-80],[4,-124],[-1,-224],[0,-74],[-5,-85],[3,-39],[1,-4],[1,-21]],[[42862,63674],[1,-30],[0,-2],[0,-20],[0,-44],[0,-68],[0,-55],[0,-46],[0,-23],[-1,-24],[0,-23],[1,-23],[0,-21],[0,-25],[0,-23],[0,-23],[0,-45],[1,-23],[0,-23],[0,-23],[0,-24],[1,-85],[0,-29],[1,-62],[1,-28],[0,-29],[1,-30],[0,-23],[1,-37],[0,-87],[0,-30],[-1,-30],[1,-57],[0,-56],[0,-14],[1,-16],[0,-47],[0,-30],[1,-61],[0,-31],[0,-30],[1,-30],[0,-30],[0,-46],[0,-43],[0,-30],[1,-89],[0,-30],[0,-21],[0,-36],[0,-30],[0,-29],[0,-21],[0,-30],[1,-29],[0,-58],[0,-29],[0,-28],[0,-22],[0,-21],[0,-44],[0,-1],[1,-68],[0,-30],[0,-31],[0,-31],[1,-30],[0,-29],[0,-28],[0,-30],[0,-27],[0,-43],[0,-22],[0,-25],[1,-28],[0,-30],[0,-28],[0,-30],[1,-57],[0,-29],[0,-59],[1,-30],[-1,-23],[-1,-10],[-1,-32],[1,-74],[0,-213],[1,-165],[0,-34],[0,-103],[1,-165]],[[42879,60073],[-263,4],[-139,3],[-353,5],[-301,4],[-29,1],[-163,-1],[-113,-5],[-10,0],[-23,-1],[-4,0],[-27,1],[-13,0],[-8,-1],[-30,-3],[-26,-4],[-25,-3],[-31,-2],[-25,-1],[-35,-3],[-28,0],[-95,0],[-18,0],[-15,1],[-104,-2],[-180,0],[-110,0],[-139,-1],[-33,1],[-267,-1],[-173,-1],[-42,1],[-32,-1],[-75,-2],[-33,-1],[-149,-4],[-24,-1],[-159,-1],[-129,-2],[-82,0],[-121,0],[-43,0],[-66,0],[-119,0],[-152,-2],[-44,-1],[-105,-2],[-47,-2],[-18,-3],[-23,0],[-725,-31],[-45,5],[-149,-10],[-26,-1],[-273,-12],[-421,-13],[-343,-10],[-38,-1],[-131,-1],[-83,0],[-151,2],[-116,2],[-11,0],[-140,4],[-52,0],[-307,1],[-159,1],[-89,-1],[-41,0],[-187,2],[-114,1],[-338,5],[-287,-3],[-89,0],[-49,-1],[-7,0],[-100,-1],[-64,0],[-22,0],[-156,1],[-325,3],[-73,1],[-145,1],[-86,1]],[[33294,59988],[3,408],[1,147],[0,43],[2,218],[1,93],[0,60],[0,58],[1,85],[0,54],[0,269],[1,275],[0,138],[1,256],[-4,87],[0,106],[5,86],[-7,74],[1,24],[-4,59],[-3,27],[-3,148],[-3,95],[0,5],[0,19],[-1,33],[-2,148],[-2,33],[-1,199],[0,75],[0,82],[-1,101],[0,106],[0,23],[1,51],[2,244],[2,103],[-1,198],[-1,109],[2,222],[0,3],[1,49],[0,32],[1,57],[1,76],[1,62],[0,1],[1,115],[2,115],[0,1],[0,66],[1,63],[1,72],[0,105],[1,37]],[[33321,72539],[66,0],[1,0],[108,-1],[69,0],[191,-1],[164,0],[4,0],[114,-1],[28,0],[35,0],[69,1],[219,1],[38,0],[129,3],[38,0],[101,0],[121,1],[53,0],[31,0],[57,1],[57,0],[164,-2],[26,0],[54,0],[68,0],[38,0],[24,0],[71,-1],[79,0],[32,2],[54,-1],[34,0],[27,1],[37,-2],[43,-1],[41,0],[47,0],[12,0],[16,0],[88,0],[40,0],[72,0],[82,0],[101,0],[44,0],[40,0],[3,-1],[32,-2],[55,-1],[28,2],[84,1],[65,0],[162,0],[11,0],[4,0],[350,-1],[1,0],[169,0],[52,0],[47,0],[16,0],[22,0],[23,0],[15,0],[7,0],[21,0],[351,-1],[52,0],[1,0],[288,0],[357,-1],[41,0],[183,0],[39,0],[79,0],[3,0],[42,0],[16,0]],[[57879,61796],[-37,2],[-50,3],[-184,10],[-51,2],[-36,1],[-103,4],[-70,2],[-14,1],[-18,1],[-47,1],[-46,2],[-130,6],[-14,0],[-16,1],[-147,6],[-116,6],[-108,6],[-118,2],[-87,1],[-91,2],[-83,1],[-7,0],[-140,3],[-29,0],[-182,8],[-70,3],[-24,-1],[-218,1],[-634,4],[-67,1],[-22,2],[-5,1],[-106,6],[-436,4],[-338,4],[-70,1],[-246,3],[-95,1],[-37,0],[-15,0],[-96,5],[-84,3],[-271,-3],[-27,1],[-167,-6],[-240,-19],[-69,-4],[-120,-7],[-263,-16],[-1,0],[-56,-3]],[[52178,61848],[0,55],[0,3],[0,42],[0,50],[0,101],[0,29],[-1,268],[0,78],[-7,48],[-21,287],[-13,147],[-2,16],[1,30],[-1,10],[-2,50],[-7,182],[0,53],[0,53],[0,46],[4,106],[-1,45],[-1,132],[-245,3],[-43,0],[-17,1],[-1,0],[-29,0],[-40,0],[-17,0],[-36,0],[-26,0],[-50,1],[-17,0],[-22,0],[-38,0],[-31,0],[-39,0],[-30,0],[-25,1],[-43,-1],[-21,0],[-1,0],[-23,0],[-90,-1],[-118,-1],[-81,7],[-99,1],[-54,2],[-33,1],[-26,0],[-89,2],[-134,-1],[-39,2],[-87,0],[-16,0],[-14,0],[-68,0],[-49,0],[-19,0],[-8,0],[-119,-3],[-21,0],[-46,0],[-71,-1],[-47,0],[-272,-1],[-571,-2],[-238,0],[-61,2],[-26,0],[-57,-2],[-33,0],[-2,0],[-23,0],[-18,1],[-75,-1],[-58,-1],[-52,-1],[-18,0],[-23,0],[-11,0],[-21,0],[-20,0],[-10,0],[-24,-1],[-26,0],[-37,0],[-108,1],[-12,0],[-64,0],[-28,0],[-57,-1],[-15,0],[-2,0],[-19,-2],[-23,-1],[-26,1],[-16,0],[-22,1],[-82,-2],[-16,0],[-21,0],[-32,-1],[-54,-1],[-16,0],[-49,0],[-18,1],[-87,1],[-80,1],[-16,0],[-24,0],[-22,0],[-38,1],[-36,0],[-16,2],[-26,-1],[-25,0],[-36,2],[-35,0],[-32,-1],[-34,1],[-55,-2],[-5,0],[-24,0],[-1,0],[-19,-2],[-22,0],[-19,0],[-21,0],[-84,0],[-32,-1],[-21,0],[-26,0],[-41,0],[-19,0],[-59,-1],[-98,-1],[-5,0],[-20,0],[-48,0],[-17,0],[-37,2],[-46,2],[-22,1],[-38,0],[-68,0],[-22,1],[-36,-4],[-4,0],[-36,0],[-76,-1],[-20,0],[-19,0],[-48,0],[-27,-1],[-17,0],[-3,0],[-18,0],[-26,0],[-55,-1],[-24,0],[-15,0],[-40,-1],[-37,-1],[-37,-1],[-37,-1],[-18,0],[-23,0],[-19,0],[-23,0],[-31,0],[-41,0],[-1,0],[-35,0],[-17,0],[-26,-1],[-27,0],[-37,0],[-26,0],[-27,0],[-75,1],[-8,0],[-24,0],[-57,0],[-10,0],[-37,1],[-15,0],[-21,0],[-20,0],[-19,0],[-15,0],[-7,0],[-11,0],[-40,1],[-35,-1],[-22,0],[-1,0],[-15,0],[-38,0],[-25,-1],[-50,0],[-53,-1],[-22,0],[-14,0],[-6,0],[-51,0],[-33,0],[-38,0],[-36,0],[-17,0],[-21,0],[-20,0],[-17,0],[-38,0],[-24,0],[-90,0],[-38,0],[-38,0],[-37,0],[-36,-1],[-68,0],[-16,0],[-28,0],[-75,0],[-38,0],[-36,0],[-175,-1],[-18,0],[-17,0],[-26,0],[-49,0],[-18,0],[-20,0],[-16,0],[-21,0],[-25,0],[-11,0],[-20,0],[-7,0],[-23,0],[-5,0],[-35,1],[-21,0],[-20,-1],[-21,2],[-16,0],[-17,-1],[-52,1],[-69,-1],[-33,0],[-20,0],[-38,0],[-31,0],[-33,0],[-30,0],[-28,-1],[-19,1],[-27,0],[-38,1],[-51,-1]],[[11063,65434],[0,-151],[-3,-84],[-1,-62],[0,-300],[0,-177],[0,-31],[4,-86],[-2,-24],[3,-131],[0,-150],[0,-113],[-2,-191],[-1,-31],[1,-34],[-4,-228],[0,-153],[-1,-72],[2,-24],[-1,-132],[-2,-39],[-1,-30],[2,-56],[0,-84],[-2,-270],[-1,-28],[-3,-150],[-1,-37],[0,-1],[-1,-37],[-3,-185],[0,-2],[0,-30],[0,-153],[-1,-79],[0,-1],[0,-40],[-1,-190],[1,-52],[2,-114],[0,-76],[0,-47],[-1,-99],[0,-5],[-5,-183],[0,-1],[0,-28],[1,-269],[0,-60],[1,-99],[0,-24],[0,-1],[1,-94],[0,-48],[0,-31],[0,-23],[-1,-43],[1,-49],[0,-93],[0,-57],[0,-31],[0,-27],[0,-24],[-3,-34],[-1,-31],[0,-32],[-1,-116],[-1,-128],[-1,-315],[-1,-104],[0,-52],[-1,-87],[0,-41],[-1,-94],[-1,-114],[1,-79],[-3,-31],[0,-147],[1,-42],[0,-92],[2,-165],[-1,-169],[0,-132],[1,-86],[0,-1],[0,-34],[1,-152],[1,-150],[1,-71],[1,-79],[1,-115],[1,-35],[0,-150],[2,-61],[0,-37],[0,-59],[0,-145],[0,-300],[-1,-69],[-3,-231]],[[11038,56490],[-239,1],[-73,0],[-312,-1],[-313,-1],[-313,-5],[-161,0],[-47,0],[-106,1],[-157,1],[-199,1],[-175,0],[-77,0],[-52,-4],[-41,2],[-17,0],[-63,2],[-37,-1],[-5,0],[-299,-1],[-23,0],[-121,0],[-34,0],[-283,-1],[-146,-1],[-107,1],[-56,2],[-43,0],[-61,0],[-97,-1],[-29,0],[-82,0],[-79,0],[-228,1],[-78,0],[-75,0],[-614,2],[-142,1],[-131,1],[-61,1],[-126,3],[-149,1],[-167,0],[-1,0],[-37,0],[-57,1],[-23,0],[-35,1],[-78,4],[-112,6],[-111,2],[-16,0],[-162,-1],[-137,-1],[-16,0],[-123,-1],[-308,-1],[-67,0],[-158,-1],[-203,0],[-66,1],[-113,-2],[-15,-1],[-306,0],[-154,0],[-16,0],[-30,-1],[-106,-1],[-62,0],[-94,-1],[-150,-3],[-156,0],[-31,-1],[-120,0],[-152,0],[-41,0],[-67,-1],[-41,-3],[-57,0],[-20,0]],[[1979,56491],[37,41],[24,26],[10,36],[15,49],[9,38],[-2,27],[-1,3],[-4,13],[-3,11],[-3,10],[-11,12],[-1,2],[-8,10],[-7,20],[-3,8],[-17,35],[-12,35],[-2,7],[0,1],[-1,1],[-1,11],[-2,12],[-4,29],[-3,16],[-3,34],[-1,0],[0,1],[5,64],[-3,46],[-10,51],[-14,76],[-3,41],[0,8],[-14,59],[8,50],[12,29],[22,33],[34,36],[32,53],[20,49],[1,31],[0,58],[-7,36],[-8,40],[-16,25],[-23,33],[-23,32],[-19,19],[-13,29],[-8,20],[-3,6],[-5,12],[-10,16],[-8,37],[-3,33],[-8,57],[0,43],[13,42],[17,23],[9,7],[15,11],[5,3],[1,1],[15,6],[27,9],[26,8],[26,9],[7,2],[6,6],[8,8],[1,2],[21,17],[16,13],[3,2],[15,10],[13,9],[6,5],[15,12],[6,7],[24,23],[5,4],[1,0],[28,24],[26,10],[1,0],[17,7],[25,23],[43,55],[15,19],[28,42],[6,8],[22,33],[1,2],[1,1],[4,4],[3,3],[8,7],[24,21],[2,2],[11,8],[29,24],[7,6],[7,6],[17,16],[18,19],[17,19],[13,15],[13,15],[22,25],[38,30],[32,27],[0,1],[5,6],[2,2],[6,8],[8,10],[23,33],[17,25],[4,6],[16,21],[16,32],[4,9],[22,54],[14,25],[17,29],[1,6],[12,48],[1,2],[0,2],[1,0],[-1,0],[1,8],[0,31],[0,2],[0,2],[0,14],[-2,20],[-3,22],[-4,24],[-3,9],[-4,13],[-19,56],[-10,35],[-6,19],[-14,49],[-1,2],[0,1],[-4,21],[-6,32],[0,5],[1,18],[3,29],[15,45],[27,36],[11,11],[26,29],[30,29],[6,4],[29,16],[6,5],[11,8],[15,11],[8,6],[14,17],[31,35],[53,30],[33,21],[2,1],[20,13],[18,13],[3,2],[13,11],[2,2],[0,1],[11,23],[-4,24],[-4,20],[5,21],[8,19],[5,20],[9,22],[5,8],[6,8],[5,9],[1,1],[4,9],[1,1],[1,2],[10,13],[3,6],[2,2],[7,8],[7,10],[4,8],[6,13],[2,3],[6,11],[1,1],[2,4],[9,18],[2,5],[11,21],[14,20],[3,6],[5,5],[9,10],[22,20],[21,24],[3,3],[10,11],[15,13],[27,23],[10,9],[1,1],[18,8],[8,5],[6,3],[13,10],[7,3],[39,17],[25,13],[2,1],[15,3],[19,5],[15,13],[0,32],[-3,34],[0,1],[-1,5],[0,5],[0,5],[0,1],[1,5],[0,1],[4,16],[0,1],[1,1],[12,21],[5,11],[1,1],[8,18],[1,3],[1,10],[1,9],[-1,17],[-1,34],[-1,2],[-1,22],[6,8],[6,6],[12,19],[2,24],[-1,3],[-1,2],[-7,12],[-4,4],[-5,6],[-2,1],[-2,3],[-4,5],[-2,2],[-13,17],[-1,6],[-1,1],[-5,20],[-2,8],[0,4],[-3,18],[2,22],[1,27],[2,22],[0,2],[1,6],[2,8],[0,4],[0,1],[1,5],[1,3],[2,7],[0,1],[3,11],[2,5],[3,11],[2,7],[3,16],[0,3],[0,1],[-1,13],[0,7],[0,1],[-2,8],[0,3],[-3,11],[0,10],[1,20],[0,3],[2,10],[0,5],[2,12],[1,6],[5,23],[12,49],[11,47],[1,24],[1,4],[2,23],[-1,2],[0,7],[-1,15],[-2,9],[-3,14],[-4,17],[-2,4],[-5,11],[-2,5],[-8,18],[-11,32],[-6,14],[-3,6],[-6,17],[-4,14],[-8,32],[-8,19],[0,2],[-9,17],[-2,8],[-4,13],[0,1],[-5,18],[-13,17],[-15,12],[-14,9],[-8,4],[-19,8],[-20,8],[-16,6],[-22,13],[-14,7],[-11,4],[-6,2],[-16,5],[-4,2],[-22,8],[-10,3],[-29,9],[-37,17],[-34,18],[-18,6],[-21,8],[-3,1],[-10,4],[-12,5],[-8,5],[-10,6],[-3,2],[-14,10],[-5,5],[-1,2],[-12,24],[-3,32],[-9,27],[-10,27],[0,1],[-1,2],[-1,1],[-2,2],[-12,13],[-1,1],[-14,6],[-11,8],[-4,2],[-1,1],[-8,7],[-6,6],[-3,2],[-17,17],[-14,15],[-32,34],[-2,3],[1,0],[-1,1],[-3,5],[-5,11],[-1,1],[-6,11],[-1,2],[-4,14],[-7,27],[-3,12],[-1,2],[-10,27],[-1,2],[-4,12],[-5,7],[-9,14],[-2,4],[-4,8],[-12,24],[-4,7],[-6,11],[-4,9],[-6,12],[-15,35],[-9,19],[-6,16],[-3,6],[-6,10],[-11,19],[-17,31],[-1,1],[-3,6],[-3,5],[-10,14],[0,-1],[-4,6],[-2,3],[-5,8],[-13,20],[-10,15],[-6,7],[0,1],[-2,3],[-6,9],[-3,5],[-8,14],[-5,10],[-8,8],[-10,9],[-5,5],[-8,11],[-3,4],[-13,19],[-2,2],[-1,3],[-17,30],[-15,33],[-32,27],[-12,11],[-61,57],[-9,9],[-33,29],[-7,5],[-19,15],[-5,6],[-13,15],[-15,23],[-2,2],[-7,35],[-3,22],[-2,12],[-2,14],[-2,7],[0,2],[0,5],[-1,18],[-1,11],[-1,12],[0,7],[0,12],[0,8],[-1,4],[-1,27],[1,25],[0,12],[5,22],[1,2],[8,28],[7,27],[1,5],[2,12],[3,19],[0,1],[0,1],[1,10],[-3,18],[-1,4],[0,12],[0,18],[11,19],[9,11],[0,2],[3,7],[4,13],[-1,13],[0,3],[-1,15],[0,8],[-1,1],[-9,24],[-10,26],[-19,22],[-11,9],[-12,10],[-9,9],[-8,6],[-21,10],[-17,7],[-19,14],[-22,20],[-19,17],[-20,21],[-20,20],[-6,5],[-15,12],[-19,15],[-20,16],[-19,19],[-18,16],[-23,16],[-5,2],[-17,7],[-1,0],[-23,9],[-3,2],[-23,15],[-7,5],[-16,10],[-13,9],[-2,1],[-17,7],[-20,10],[-32,28],[-23,30],[-32,30],[-29,39],[-21,16],[0,1],[-19,15],[-36,30],[-9,7],[-10,6],[-21,12],[-17,9],[-26,4],[-13,1],[-37,0],[-46,-5],[-7,-1],[-28,-3],[-10,-1],[-18,-2],[-5,-2],[-11,-6],[-15,-7],[-2,0],[-34,-5],[-63,-29],[-10,-4],[-63,-34],[-1,0],[-34,-18],[-18,-4],[-11,-3],[-22,-5],[-15,-4],[-93,-20],[-72,-3],[-19,-1],[-7,0],[-19,0],[-2,0],[-4,0],[-2,0],[-11,0],[-13,0],[-20,0],[-60,17],[-84,23],[-20,5],[-107,48],[-31,13],[-7,3],[-6,1],[-5,1],[-27,6],[-2,0],[-28,1],[-18,1],[-15,0],[-46,-1],[-29,2],[-41,3],[-46,4],[-35,5],[-23,4],[-57,-4],[-33,7],[-17,9],[-21,22],[-11,13],[-6,8],[-10,10],[-5,5],[0,1],[-23,18],[-31,15],[-3,2],[-8,6],[-21,18],[-1,1],[-15,17],[-7,9],[-13,15],[-1,4],[0,2],[-6,21],[-4,17],[-3,10],[0,5],[-1,22],[0,2],[3,47],[20,141],[1,22],[-11,29],[-29,60],[-8,29],[0,66],[7,36],[15,91],[1,4],[1,3],[4,11],[3,10],[23,69],[3,8],[0,2],[0,1],[0,22],[0,2],[-2,20],[-2,23],[-4,14],[-4,12],[-16,32],[-11,22],[-21,56],[-5,45],[-5,22],[-1,2],[-6,26],[-4,18],[0,1],[0,10],[0,8],[-1,11],[0,20],[0,16],[1,4],[2,8],[5,16],[2,10],[1,4],[3,15],[2,10],[0,6],[0,2],[1,8],[1,8],[0,8],[0,13],[0,9],[0,11],[1,19],[-1,6],[-1,4],[-1,6],[0,5],[-2,7],[-1,7],[-1,5],[-2,7],[-4,11],[-2,4],[-3,5],[-1,3],[-7,12],[-1,2],[-9,15],[-3,6],[1,7],[1,13],[1,2],[1,2],[4,10],[3,8],[2,3],[8,10],[1,2],[4,4],[10,11]],[[20319,65389],[0,-83],[4,-180],[1,-29],[0,-19],[0,-54],[0,-82],[0,-104],[0,-34],[1,-297],[1,-346],[2,-37],[2,-120],[1,-97],[0,-16],[-1,-54],[-1,-233],[0,-106],[0,-201],[-2,-298],[-1,-146],[-1,-157],[0,-73],[-1,-27],[-3,-68],[-1,-55],[-1,-63],[1,-240],[-1,-47],[-1,-165],[-1,-69],[0,-83],[-1,-124],[0,-417],[0,-5],[-3,-41],[-1,-9],[-1,-69],[0,-7],[0,-62],[-1,-80],[-1,-12],[0,-64],[-2,-152],[-2,-151],[1,-149],[0,-22],[0,-118],[0,-88],[0,-110],[0,-59],[0,-57],[0,-26],[-1,-54],[0,-24],[-1,-195],[0,-296],[1,-112],[0,-61],[-1,-129],[0,-301],[0,-303],[-1,-196],[0,-1],[0,-33],[0,-73],[0,-1]],[[20303,58205],[3,-55],[0,-21],[-1,-55],[-1,-71],[0,-24],[0,-55],[-1,-35],[1,-25],[0,-22],[1,-40],[-6,-300],[0,-24],[2,-25],[0,-36],[0,-35],[0,-27],[0,-29],[0,-58],[0,-68],[-3,-80],[-1,-29],[-2,-67],[-2,-30],[-4,-130],[0,-59],[0,-124],[1,-172],[-1,-81],[-197,8],[-47,-1],[-17,0],[-30,1],[-16,1],[-9,1],[-6,1],[-70,0],[-102,0],[-2,0],[-124,1],[-33,1],[-58,0],[-17,1],[-39,1],[-52,1],[-66,3],[-36,0],[-68,1],[-53,1],[-34,1],[-60,2],[-32,0],[-51,2],[-30,0],[-23,1],[-30,0],[-27,0],[-48,-1],[-24,0],[-24,0],[-49,1],[-16,0],[-17,1],[-31,1],[-32,0],[-38,0],[-21,-2],[-20,2],[-24,0],[-33,0],[-49,1],[-23,0],[-42,0],[-38,0]],[[18431,56458],[-77,1],[-44,0],[-54,-1],[-59,3],[-88,1],[-33,0],[-31,0],[-96,0],[-140,0],[-70,2],[-91,0],[-13,0],[-4,0],[-51,0],[-138,0],[-108,1],[-150,2],[-1,0],[-25,-3],[-89,1],[-30,0],[-104,-1],[-54,0],[-96,0],[-132,0],[-80,0],[-32,-1],[-17,1],[-33,0],[-45,-1],[-190,-1],[-157,0],[-114,-1],[-21,3],[-125,2],[-76,2],[-72,2],[-22,0],[-6,0],[-25,-1],[-21,0],[-121,-1],[-16,-2],[-141,1],[-64,1],[-150,1],[-16,0],[-76,-1],[-3,0],[-23,0],[-109,-1],[-20,1],[-89,0],[-63,-1],[-88,1],[-220,3],[-84,1],[-85,0],[-176,2],[-44,0],[-68,1],[-198,0],[-34,0],[-152,0],[-27,1],[-2,0],[-70,0],[-21,0],[-1,0],[-64,1],[-47,2],[-54,-1],[-96,-1],[-111,-2],[-7,0],[-36,0],[-78,-1],[-79,0],[-78,0],[-19,0],[-29,-3],[-31,7],[-72,-1],[-33,5],[-35,-3],[-71,0],[-16,0],[-162,2],[-6,0],[-129,2],[-13,0],[-69,2],[-145,0],[-41,1],[-67,0],[-119,0],[-88,1],[-22,-1],[-20,0],[-16,1],[-46,0],[-19,0],[-28,0],[-141,0],[-89,1],[-44,1],[-198,1]],[[33294,59988],[-339,3],[-133,1],[-67,1],[-160,1],[-229,2],[-147,0],[-117,-1],[-45,1],[-310,-2],[-111,1],[-43,0],[-59,0],[-18,0],[-29,1],[-54,1],[-258,3],[-52,1],[-26,1],[-75,-1],[-84,-1],[-69,0],[-94,-1],[-70,1],[-135,3],[-72,2],[-162,4],[-75,2],[-62,-1],[-306,9],[-310,4],[1,-75],[1,-18],[0,-102],[0,-73],[0,-39],[0,-178],[1,-257],[0,-170],[-5,-252],[-1,-42],[1,-69],[1,-95],[-3,-147],[2,-96],[0,-32],[1,-174]],[[29582,58204],[-25,2],[-87,-1],[-38,0],[-21,-1],[-30,0],[-3,0],[-68,-1],[-27,0],[-69,0],[-95,1],[-33,0],[-28,0],[-64,-1],[-56,0],[-130,0],[-65,1],[-39,0],[-52,0],[-32,0],[-28,0],[-44,0],[-62,0],[-30,0],[-48,0],[-43,0],[-18,0],[-225,-3],[-6,0],[-82,1],[-32,0],[-36,0],[-19,0],[-64,0],[-164,3],[-139,1],[-6,0],[-32,0],[-37,0],[-47,0],[-20,1],[-6,0],[-10,-1],[-77,1],[-18,0],[-28,0],[-94,0],[-76,0],[-2,0],[-337,0],[-2,0],[-103,0],[-114,0],[-317,0],[-24,0],[-11,0],[-42,0],[-240,-3],[-90,1],[-22,0],[-27,1],[-63,0],[-40,0],[-34,1],[-118,-1],[-44,0],[-55,1],[-16,1],[-35,0],[-61,0],[-44,1],[-50,1],[-48,-3],[-81,-1],[-94,-1],[-90,0],[-112,-1],[-125,0],[-84,0],[-18,0],[-124,-1],[-149,0],[-239,-1],[-76,0],[-104,-1],[-348,-1],[-43,0],[-293,-2],[-28,0],[-44,0],[-40,0],[-52,0],[-14,0],[-38,0],[-36,0],[-21,-1],[-16,0],[-41,2],[-30,-3],[-20,0],[-1,0],[-23,1],[-42,0],[-144,0],[-45,0],[-113,1],[-54,0],[-257,6],[-46,0],[-64,-1],[-54,-1],[-36,-1],[-20,0],[-7,0],[-10,0],[-39,-1],[-29,0],[-27,-1],[-25,0],[-23,-1],[-96,-2],[-8,0],[-121,-2],[-23,0],[-18,0],[-184,2],[-98,0],[-154,0],[-75,0],[-72,0],[-173,3],[-52,1],[-73,1],[-156,3],[-165,1]],[[52178,61848],[1,-124],[0,-139],[0,-38],[1,-154],[0,-58],[1,-126],[0,-45],[1,-322],[1,-107],[0,-1],[0,-28],[0,-50],[0,-18],[0,-10],[0,-62],[2,-217],[1,-309],[1,-32],[0,-41],[0,-32],[0,-31],[0,-50],[0,-10],[0,-63],[0,-60],[0,-31],[0,-34],[0,-34],[0,-32],[-1,-32],[0,-33],[0,-23],[-1,-44],[0,-30],[0,-37],[-1,-50],[0,-31],[0,-27],[-1,-26],[-1,-32],[0,-32],[0,-31],[1,-28],[-1,-33],[0,-31],[0,-22],[-1,-26],[0,-25],[0,-26],[0,-26],[0,-25],[-1,-23],[0,-65],[0,-41],[0,-25],[0,-26],[0,-27],[0,-24],[0,-24],[0,-23],[0,-26],[0,-27],[0,-31],[0,-27],[0,-37],[0,-49],[0,-36],[0,-33],[0,-34],[0,-29],[0,-34],[0,-46],[0,-23],[0,-22],[0,-38],[0,-37],[-4,-258],[0,-229],[0,-56],[0,-25],[-1,-24],[0,-27],[0,-46],[-1,-76],[0,-24],[0,-26],[0,-27],[-1,-26],[0,-27],[0,-27],[-1,-28],[1,-27],[-1,-28],[1,-26],[-1,-28],[0,-29],[1,-23],[-1,-25],[0,-25],[-1,-29],[0,-27],[0,-26],[-1,-28],[0,-54],[0,-26],[0,-76],[0,-24],[0,-52],[0,-27],[0,-23],[1,-24],[0,-1],[0,-21],[0,-43],[-1,-23],[0,-28],[0,-26],[0,-21],[-4,-395],[-1,-186],[0,-41],[-4,-388],[0,-39],[0,-106],[3,-27],[0,-1],[0,-50],[0,-26],[0,-24],[0,-48],[0,-26],[1,-32],[0,-21],[-1,-46],[-1,-28],[0,-51],[-1,-25],[1,-28],[0,-37],[-1,-33],[0,-23],[0,-27],[0,-46],[-1,-31]],[[52161,54612],[-16,0],[-60,1],[-39,0],[-85,2],[-38,1],[-36,1],[-19,0],[-23,0],[-34,1],[-33,-1],[-35,0],[-41,0],[-15,0],[-39,0],[-27,0],[-16,0],[-38,0],[-21,0],[-24,1],[-21,-1],[-66,1],[-166,1],[-77,-1],[-16,1],[-20,0],[-77,1],[-70,1],[-81,0],[-69,1],[-74,0],[-78,1],[-86,-1],[-103,0],[-31,0],[-22,0],[-164,3],[-45,-1],[-20,1],[-30,0],[-29,0],[-50,0],[-43,-1],[-60,0],[-45,-1],[-59,1],[-61,-1],[-71,1],[-44,0],[-59,0],[-20,0],[-112,-1],[-94,0],[-306,3],[-7,0],[-12,0],[-52,1],[-28,0],[-7,0],[-28,0],[-81,-1],[-1,0],[-172,-1],[-73,1],[-37,-1],[-31,1],[-20,0],[-27,-1],[-39,1],[-94,0],[-98,0],[-125,0],[-85,1],[-75,0],[-219,1],[-46,0],[-74,1],[-45,1],[-43,0],[-55,0],[-63,0],[-43,0],[-147,0],[-46,0],[-75,0],[-48,0],[-24,0],[-36,0],[-44,0],[-35,0],[-48,0],[-54,-1],[-53,0],[-103,0],[-16,0],[-34,0],[-61,0],[-45,0],[-27,0],[-135,1],[-3,0],[-50,0],[-55,0],[-63,1],[-35,0],[-34,0],[-103,0],[-25,0],[-111,0],[-105,-1],[-1,0],[-21,0],[-182,1],[-102,0],[-50,0],[-65,0],[-46,0],[-47,0],[-55,0],[-45,0],[-38,0],[-118,-1],[-53,1],[-73,0],[-41,0],[-41,-1],[-164,0],[-90,-1],[-102,0],[-54,0],[-42,0],[-118,0],[-81,1],[-33,0],[-50,0],[-94,0],[-30,0],[-41,0],[-40,0],[-41,0],[-55,1],[-69,0],[-21,0],[-61,0],[-31,0],[-112,0],[-35,0],[-1,0],[-15,1],[-65,0],[-20,0],[-34,1],[-36,0],[-35,0],[-38,-1],[-52,0],[-33,0],[-266,1],[-15,0],[-48,0]],[[42858,54633],[-3,100],[-1,61],[-2,211],[-1,84],[0,2],[-1,77],[-1,76],[0,1],[-12,669],[2,81],[0,3],[-5,166],[1,58],[0,23],[-3,213],[-1,78],[-1,48],[0,22],[-3,158],[-12,567],[1,32],[3,73],[5,151],[0,135],[1,133],[-7,301],[-2,161],[-4,270],[-1,55],[9,470],[1,97],[14,215],[-2,24],[8,58],[19,178],[16,102],[4,144],[-1,143]],[[63428,60007],[0,-77],[-8,-557],[0,-5],[-1,-88],[-1,-139],[0,-12],[-1,-82],[-1,-52],[-8,-611],[2,-134],[-1,-89],[0,-33],[-2,-161],[0,-20],[0,-57],[-1,-185],[-1,-112],[0,-180],[0,-16],[-1,-26],[0,-4],[0,-36],[0,-156],[0,-23],[-1,-55],[0,-36],[-2,-91],[-1,-158],[-2,-131],[-3,-285],[115,0],[45,0],[6,0],[23,0],[16,0],[426,-3],[-4,-187],[-1,-51],[-4,-193],[0,-17],[-3,-131],[-1,-36],[-2,-110],[-3,-165],[-7,-62],[1,-33],[-3,-30],[0,-20],[0,-3],[0,-29],[-3,-239],[0,-13],[0,-32],[-3,-243],[-5,-66],[-7,-159]],[[63981,54574],[-242,1],[-72,0],[-23,0],[-7,0],[-215,0],[-479,-2],[-22,1],[-107,1],[-474,5],[-503,1],[-23,0],[-4,0],[-324,0],[-225,0],[-2,0],[-209,1],[-92,0],[-277,0],[-224,-4],[-83,2],[-46,0],[-51,0],[-17,0],[-640,4],[-406,4],[-4,0],[-201,1],[-16,0],[-49,-2],[-51,1],[-48,0],[5,-346],[-3,-279],[0,-29],[0,-51],[-2,-146],[1,-82],[0,-21],[0,-27],[1,-151],[0,-54],[1,-61],[0,-8],[1,-146],[1,-277],[3,-177]],[[58853,52733],[-150,7],[-128,3],[-187,1],[-151,6],[-118,-1],[-31,0],[-311,5],[-136,-1],[-15,0],[-428,-8],[-159,3],[-120,3],[-34,1],[-22,-2],[-131,-1],[-40,0],[-102,0],[-17,0],[-145,0],[-383,-1],[-92,0],[-53,0],[-86,1],[-1,0],[-193,-4],[-83,-1],[-331,-1],[-1,0]],[[55205,52743],[-1,184],[0,10],[0,202],[-1,125],[1,84],[-1,97],[-1,39],[-1,54],[1,86],[0,1],[0,24],[-3,302],[0,151],[0,150],[-2,152],[1,59],[2,102],[0,35],[-51,0],[-87,0],[-2,0],[-105,2],[-56,0],[-89,0],[-830,2],[-565,-2],[-45,0],[-77,0],[-335,5],[-31,0],[-249,0],[-10,0],[-190,3],[-80,0],[-218,1],[-19,1]],[[76576,12],[30,75],[-16,93],[-60,203],[-14,48],[-7,25],[-6,18],[-9,74],[-7,55],[-3,27],[-20,156],[2,411],[0,152],[7,61],[4,52],[3,43],[-2,70],[-2,70],[-6,47],[-3,17],[-9,52],[-5,29],[-4,23],[10,5],[26,14],[1,94],[-7,59],[-61,146],[-13,151],[-20,47],[-8,19],[-9,23],[-18,26],[-8,11],[7,88],[1,9],[6,73],[16,153],[5,47],[10,58],[8,80],[3,36],[0,2],[4,41],[26,165],[35,121],[17,58],[23,79],[53,241]],[[76556,3659],[8,26],[11,37],[28,91],[88,184],[31,108],[21,33],[14,24],[8,11],[18,27],[37,55],[7,21],[3,11],[14,44],[13,4],[8,3],[9,3],[11,55],[1,6],[4,20],[5,15],[19,58],[3,56],[3,52],[0,10],[11,64],[9,57],[35,4],[-3,103],[0,21],[4,15],[12,44],[-11,8],[-12,8],[-4,4],[-15,10],[16,71],[1,3],[11,70],[-23,14],[-4,3],[-6,40],[-24,164],[23,162],[23,94],[13,52],[38,91],[8,18],[3,8],[20,38],[59,77],[42,41],[10,9],[32,31],[4,1],[13,3],[9,2],[8,2],[40,32],[2,8],[0,3],[3,11],[2,14],[2,8],[-2,4],[-2,4],[-9,21],[-6,14],[-4,9],[-1,1],[-1,1],[-1,2],[-97,114],[-97,65],[-48,32],[-26,25],[-20,18],[-36,33],[-27,25],[-73,68],[-81,75],[-60,69],[-1,2],[-1,1],[-2,2],[-1,3],[-96,134],[-72,101],[-59,83],[-41,58],[-54,76],[-42,58],[-13,18],[-55,143]],[[76243,7280],[-7,49],[0,2],[4,3],[3,2],[34,25],[-25,65],[0,-1],[-48,-6],[-80,162],[-20,84],[-26,87],[-46,143],[-38,129],[-12,54],[-23,58],[49,34],[-5,75],[-74,19],[-3,59],[-1,15],[5,50],[0,1],[9,87],[17,68],[5,20],[29,39],[3,3],[36,5],[4,29],[5,29],[13,78],[1,16],[2,26],[-55,117],[-10,20],[-17,74],[-13,51],[1,13],[1,45],[12,108],[4,36],[5,19],[14,62],[10,64],[-3,24],[-9,84],[-2,46],[-20,54],[-2,5],[-2,5],[1,13],[0,22],[0,13],[2,88],[-29,61],[-22,45],[-99,219],[-33,26],[-64,66],[-110,106],[-6,5],[-4,4],[-33,25],[-26,22],[-26,23],[-32,28],[-23,20],[-12,20],[-3,4],[-15,25],[-30,49],[-4,1],[-10,5],[-12,4],[-49,80],[19,26],[10,15],[1,0],[10,16],[-29,59],[-12,24],[-9,15],[-63,-12],[-50,156],[20,22],[18,21],[-5,13],[-17,46],[-13,59],[-9,38],[0,6],[-5,65],[-30,17],[22,143],[21,22],[-6,38],[-2,7],[8,23],[9,30],[11,0],[55,0],[58,51],[-49,20],[13,43],[3,5],[9,18],[25,49],[6,-1],[8,-1],[18,-2],[20,-2],[4,43],[39,43],[0,1],[67,73],[69,86],[29,35],[4,7],[26,37],[39,58],[10,13],[1,22],[0,10],[1,6],[0,15],[1,21],[-30,19],[-16,10],[-24,67],[-17,46],[-11,32],[0,45],[-1,11],[-3,40],[-1,12],[-5,10],[-28,60],[-30,86],[-3,19],[0,1],[-5,29],[-7,42],[-36,50],[-36,29],[-83,100],[-23,28],[-16,19],[-20,24],[-44,62],[-37,64],[-10,17],[-23,50],[-21,56],[-22,79],[-8,94],[-1,8],[-1,14],[10,77],[19,42],[15,31],[28,62],[24,37],[8,13],[7,17],[26,60],[42,119],[49,113],[1,2],[15,35],[24,69],[20,57],[18,52],[-9,28],[-51,162],[-11,37],[-6,33],[-3,19],[-18,62],[-32,45],[-48,67]],[[75250,14551],[-15,32],[-9,19],[-27,55],[-23,137],[27,119],[-9,55],[-9,48],[-56,108],[-88,180],[-6,16],[-19,51],[-7,18],[-6,23],[-12,52],[-21,127],[-5,174],[10,79],[2,14],[5,38],[63,266],[39,166],[11,50],[2,8],[1,3],[7,43],[8,26],[12,36],[24,76],[15,35],[14,32],[19,43],[2,3],[21,44],[15,34],[3,5],[3,8],[4,12],[8,27],[22,50],[11,30],[14,42],[5,25],[2,12],[1,8],[3,16],[1,47],[0,23],[0,7],[0,8],[2,18],[5,27],[16,60],[11,69],[2,11],[2,38],[1,13],[0,6],[0,1],[0,6],[-1,40],[5,55],[0,24],[0,20],[6,32],[6,30],[4,31],[5,38],[10,59],[9,55],[1,11],[3,35],[4,42],[0,1],[2,53],[13,78],[6,33],[0,3],[4,21],[16,61],[9,44],[4,19],[12,41],[2,7],[2,11],[7,41],[17,72],[14,41],[11,32],[27,80],[16,39],[25,43],[46,13],[5,1],[3,1],[27,5],[7,1],[5,1],[-22,16],[-29,20],[-11,8],[-12,9],[21,38],[11,16],[17,22],[8,56],[9,17],[19,35],[28,49],[33,54],[25,42],[27,53],[28,49],[39,59],[26,39],[26,35],[34,42],[25,34],[13,18],[44,55],[39,59],[28,41],[33,49],[21,31],[6,10],[35,50],[16,25],[2,3],[16,25],[20,42],[3,6],[26,55],[3,5],[1,2],[20,39],[19,28],[5,8],[7,11],[2,4],[25,38],[31,47],[7,8],[22,25],[9,10],[3,16],[6,25],[3,13],[4,9],[16,40],[15,28],[1,3],[7,13],[13,20],[14,23],[16,31],[3,7],[3,5],[28,42],[5,45],[1,12],[17,71],[10,41],[1,3],[4,16],[6,25],[5,22],[6,21],[12,37],[21,57],[19,41],[17,47],[18,39],[19,39],[9,41],[1,6],[1,6],[10,26],[1,2],[5,12],[-16,51],[-1,4],[-11,49],[-4,21],[-8,58],[-27,144],[-2,67],[4,82],[-1,67],[1,32],[0,17],[0,9],[-3,51],[-3,35],[-1,21],[1,38],[0,23],[74,265]],[[76761,21849],[4,59],[-9,91],[3,36],[0,3],[0,9],[3,19],[4,36],[6,31],[4,20],[4,27],[3,20],[16,66],[19,58],[8,25],[11,30],[15,36],[12,28],[9,22],[16,35],[8,17],[9,20],[19,35],[14,30],[37,70],[30,53],[26,49],[30,59],[24,43],[12,24],[1,2],[4,9],[24,34],[23,39],[22,41],[4,11],[9,26],[1,1],[0,2],[18,31],[5,9],[20,39],[21,40],[23,39],[34,58],[34,53],[10,15],[37,58],[47,78],[19,37],[9,17],[44,78],[23,41],[6,10],[1,2],[15,25],[13,22],[12,20],[24,43],[26,47],[16,28],[11,21],[9,18],[14,27],[5,8],[14,27],[11,21],[26,50],[16,34],[73,163],[26,47],[20,42],[20,46],[11,23],[8,17],[26,52],[9,16],[21,36],[29,58],[29,54],[1,2],[4,7],[15,24],[7,12],[23,52],[22,56],[5,18],[7,28],[6,33],[1,3],[3,17],[0,77],[-17,99],[4,43],[11,58],[-2,107],[-2,23],[-7,69],[-42,140],[-28,104],[-6,41],[-9,57],[-3,25],[-9,63],[1,82],[4,51],[1,12],[9,45],[4,15],[9,28],[43,42],[1,1],[5,14],[4,10],[6,16],[15,40],[6,118],[-1,63],[-1,21],[18,25],[16,23],[45,29],[12,8],[15,10],[0,45],[-47,2],[-17,35],[-100,185],[-9,36],[-43,98],[-23,55],[-10,22],[-8,13],[-9,15],[-26,43],[-7,46],[-23,52],[-10,25],[-9,24],[-12,33],[-16,36],[-10,24],[-9,20],[-43,91],[-17,46],[-15,59],[8,88],[-19,62],[-21,71],[-1,56],[1,13],[1,28],[-6,22],[-5,18],[-3,66],[-1,69],[0,55],[8,45],[2,20],[4,42],[4,34],[0,3],[4,30],[-1,30],[-1,29],[0,51],[-15,54],[-11,40],[-10,31],[-16,49],[-4,18],[-8,38],[-16,54],[-1,12],[-4,28],[-4,21],[-6,24],[-7,37],[-6,28],[-5,78],[-5,78],[9,41],[22,66],[17,68],[8,66],[1,5],[1,7]],[[77668,29106],[6,8],[5,8],[14,18],[24,81],[16,55],[0,1],[13,43],[15,84],[0,21],[-1,59],[5,16],[8,26],[15,39],[5,19],[7,28],[-3,55],[14,71],[10,33],[1,4],[3,9],[3,15],[6,37],[7,45],[6,34],[5,34],[5,37],[11,60],[8,27],[5,14],[12,46],[18,39],[12,19],[38,61],[34,50],[12,16],[4,4],[23,28],[48,79],[14,25],[19,38],[29,60],[8,29],[8,29],[6,24],[5,19],[0,49],[18,133],[4,30],[5,49],[0,19],[1,29],[7,52],[9,67],[5,26],[8,42],[14,50],[7,26],[6,38],[15,44],[16,40],[11,28],[18,62],[1,3],[20,75],[13,47],[5,22],[15,49],[3,15],[8,31],[12,43],[4,14],[19,54],[26,59],[36,69],[48,90],[42,78],[20,38],[99,131],[69,92],[36,45],[21,26],[4,6],[11,44],[19,83],[6,79],[2,67],[1,47],[-18,216],[-7,90],[83,127],[-19,47],[-3,12],[-5,20],[-2,7],[8,61],[58,169],[3,6],[20,28],[51,67],[99,97],[26,26],[202,171],[55,38],[242,159],[21,9],[42,16],[77,37],[19,8],[107,51],[187,89],[62,48],[38,30],[5,3],[3,3],[28,17],[33,20],[169,136],[40,38],[1,0],[23,22],[21,18],[27,23],[37,40],[31,37],[23,28],[25,29],[36,44],[5,5],[18,24],[20,27],[9,14],[17,27],[31,50],[24,36],[3,6],[17,31],[20,32],[2,3],[8,13],[11,27],[10,24],[8,19],[12,31],[8,23],[12,32],[35,100],[6,25],[15,54],[6,28],[6,26],[11,53],[6,27],[3,13],[13,60],[2,11],[11,57],[7,102],[0,85],[-2,34],[-1,17],[-3,55],[-6,54],[-15,93],[-10,35],[-1,4],[-8,25],[-4,15],[-6,21],[-30,93],[-9,30],[-22,61],[-29,69],[-12,30],[-12,27],[-16,46],[-10,61],[-18,66],[-23,60],[-12,29],[-4,11],[-11,24],[-16,37],[-54,114],[-23,48],[-31,68],[-27,64],[-13,30],[-47,111],[-25,76],[-21,77],[-21,88],[-10,55],[-2,14],[-5,45],[-6,42],[-1,16],[-3,47],[-4,72],[-2,77],[0,98],[4,23],[2,15],[12,83]],[[80502,38156],[6,9],[16,28],[32,66],[7,14],[13,27],[18,31],[13,25],[25,36],[1,1],[24,35],[-8,51],[-11,52],[9,57],[7,27],[9,36],[21,48],[42,90],[25,38],[46,79],[21,31],[29,44],[20,55],[12,47],[19,62],[12,55],[0,43],[1,58],[-1,51],[0,15],[-13,110],[3,82],[1,9],[11,54],[12,49],[3,14],[18,46],[22,61],[1,31],[0,2],[1,16],[10,62],[19,71],[14,34],[11,27],[18,51],[25,56],[35,83],[16,74],[13,63],[9,54],[3,40],[-8,67],[-1,40],[-1,7],[1,66],[6,24],[5,23],[1,45],[11,47],[16,50],[21,40],[-2,5],[-10,27],[-10,24],[12,33],[6,17],[7,41],[22,2],[17,2],[12,73],[16,39],[17,42],[14,34],[3,7],[13,33],[8,46],[5,32],[6,59],[3,31],[19,91],[15,62],[11,51],[13,40],[20,62],[1,57],[-1,16],[-1,46],[0,63],[2,66],[11,52],[11,38],[6,16],[8,20],[17,42],[27,68],[32,76],[14,37],[4,11],[16,45],[5,38],[3,29],[3,49],[3,44],[1,14],[5,29],[11,57],[5,17],[10,38],[9,27],[9,27],[11,32],[10,30],[13,34],[1,1],[6,15],[8,14],[26,47],[22,27],[16,28],[6,10],[18,36],[28,60],[14,25],[17,29],[20,39],[39,70],[14,25],[6,31],[7,39],[17,52],[10,38],[6,25],[15,44],[15,44],[6,15],[17,37],[40,82],[38,70],[8,67],[23,82],[3,10],[1,7],[24,30],[16,20],[34,50],[2,3],[21,14],[4,2],[18,12],[81,59],[29,18],[24,14],[16,32],[3,5],[5,19],[10,32],[42,68],[66,49],[36,26],[27,20],[54,40],[40,62],[25,47],[22,36],[53,78],[19,36],[1,37],[5,18],[8,28],[9,13],[20,30],[27,47],[13,26],[1,1],[15,29],[30,42],[20,40],[17,38],[1,2],[4,18],[13,47],[14,29],[22,44],[2,37],[3,37],[24,107],[8,13],[17,32]],[[83047,45392],[14,25],[22,53],[36,52],[17,25],[21,32],[32,47],[1,2],[33,45],[25,54],[12,50],[13,21],[11,19],[35,46],[5,7],[35,53],[17,55],[9,21],[1,3],[9,20],[21,37],[23,38],[6,14],[10,27],[12,49],[21,46],[23,43],[5,10],[20,77],[17,61],[7,36],[6,43],[17,45],[10,72],[8,28],[1,3],[7,26],[6,32],[4,20],[6,60],[1,37],[2,23],[13,61],[8,20],[9,23],[30,62],[31,54],[7,10],[12,21],[33,51],[26,43],[3,6],[21,33],[40,77],[26,64],[5,59],[-4,76],[-16,54],[-6,62],[13,61],[4,19],[32,56],[12,13],[22,25],[28,47],[45,53],[35,34],[20,30],[3,5],[-6,30],[-5,20],[16,32],[1,0],[29,31],[53,38],[36,23],[35,28],[18,14],[6,5],[23,18],[40,25],[44,19],[8,3],[8,5],[14,6],[30,15],[16,34],[10,21],[14,72],[22,71],[24,77],[4,22],[7,43],[8,29],[1,4],[3,14],[7,20],[12,37],[37,87],[21,65],[10,15],[2,3],[21,32],[23,24],[9,10],[10,10],[19,18],[10,9],[8,7],[1,1],[17,14],[15,10],[20,13],[46,25],[48,27],[53,24],[44,26],[13,7],[28,14],[39,21],[1,1],[30,12],[32,14],[49,29],[44,33],[16,13],[4,3],[1,0],[6,5],[39,22],[9,5],[26,46],[10,19],[42,46],[30,15],[18,9],[45,18],[27,5],[3,1],[14,2],[42,3],[21,18],[6,5],[4,3],[2,2],[33,22],[6,38],[-13,36],[-19,56],[0,110],[-41,63],[-36,47],[-29,71],[-8,9],[-33,41],[-9,39],[-2,8],[1,23],[2,24],[7,33],[10,35],[8,28],[7,21],[2,6],[22,36],[15,21],[3,3],[3,5],[8,8],[32,37],[37,36],[12,11],[18,17],[44,33],[46,31],[14,11],[15,11],[46,32],[15,9],[17,11],[34,20],[37,22],[14,7],[13,7],[25,8],[15,4],[59,-2],[29,17],[3,1],[1,1],[2,1],[22,9],[5,2],[16,24],[20,32],[3,68],[-19,70],[-13,28],[-16,33],[-28,31],[-34,23],[-48,23],[-24,19],[-29,24],[-34,75],[1,70],[0,5],[2,13],[4,35],[-11,44],[4,57],[-4,55],[-5,62],[-4,56],[20,52],[24,40],[20,37],[28,69],[24,61],[4,12],[9,10],[23,27],[19,17],[24,20],[10,14],[2,3],[4,6],[15,22],[21,50],[17,44],[5,18],[8,29],[11,36],[2,3],[18,42],[26,49],[23,49],[26,40],[40,34],[39,23],[5,3],[56,30],[43,20],[29,10],[37,10],[39,10],[54,17],[2,2],[19,21],[22,24],[15,78],[23,61],[27,44],[11,19],[4,13],[10,34],[8,54],[6,25],[7,31],[3,29],[3,25],[5,25],[4,17],[41,58],[23,41],[4,15],[9,30],[-1,39],[-1,7],[2,44],[0,43],[1,16],[-2,25],[-5,54],[10,51],[19,44],[6,86],[1,48],[0,23],[25,48],[35,18],[51,18],[10,1],[30,6],[4,1],[8,2],[34,2],[29,1],[32,-2],[27,-3],[44,-8],[38,-19],[31,-28],[3,-22],[3,-20],[-23,-30],[10,-38],[12,-13],[31,-30],[8,-22],[12,-34],[12,-41],[3,-12],[40,4],[29,11],[28,41],[20,6],[4,1],[23,7],[23,-10],[7,-3],[16,36],[-4,56],[-25,44],[-18,27],[41,70],[-25,50],[-46,32],[0,12],[0,41],[-21,55],[-43,-2],[-15,-1],[-14,-1],[-4,0],[-2,1],[-35,22],[-2,2],[-3,3],[-2,2],[-15,18],[-24,27],[-8,34],[-6,26],[-2,41],[18,59],[32,55],[24,25],[22,15],[8,6],[6,2],[16,6],[6,2],[5,2],[17,5],[21,0],[25,-1],[24,25],[29,-39],[5,-13],[1,-2],[9,-25],[23,-55],[34,-48],[5,-2],[41,-23],[49,-45],[14,-4],[17,-6],[-4,-24],[-3,-23],[5,-23],[3,-13],[1,-6],[1,-3],[15,-8],[21,-10],[20,22],[6,7],[10,11],[8,42],[3,16],[22,24],[13,14],[22,35],[-7,38],[-1,5],[-2,11],[4,10],[17,46],[7,19],[48,-22],[1,0],[3,-2],[20,-23],[17,-20],[14,48],[3,4],[19,20],[-5,10],[-14,30],[-25,30],[-16,19],[-8,86],[30,41],[9,17],[11,23],[9,56],[-12,55],[-12,57],[-7,41],[-1,8],[-35,63],[-51,26],[0,34],[0,11],[-14,17],[-15,20],[-65,4],[-20,15],[-21,16],[-55,9],[-59,15],[-17,18],[-23,24],[-6,27],[-6,23],[2,45],[-6,16],[-3,7],[-9,26],[-40,63],[-35,58],[-6,51],[-2,21],[39,32],[22,19],[-9,50],[-1,7],[4,48],[4,45],[17,10],[24,13],[43,5],[26,5],[7,1],[5,1],[44,4],[18,-11],[25,-13],[16,-18],[8,-10],[9,-15],[22,-38],[6,-8],[33,-40],[46,-57],[4,-40],[3,-34],[41,-45],[38,-57],[12,-21],[11,-18],[7,-11],[42,0],[48,28],[34,11],[33,34],[41,24],[41,28],[14,22],[12,19],[21,34],[3,6],[1,2],[-11,25],[-2,3],[-28,51],[-22,6],[-20,5],[-6,4],[-19,14],[-7,23],[-4,13],[-42,23],[-37,56],[-39,33],[24,45],[-12,34],[-3,9],[-5,16],[-2,8],[-10,37],[-4,15],[0,57],[-9,54],[10,60],[14,70],[3,18],[11,50],[4,22],[4,22],[19,48],[2,5],[4,13],[17,58],[5,38],[5,43],[6,78],[9,30],[6,24],[-15,39],[-7,17],[1,33],[1,49],[-2,23],[-2,31],[-10,28],[-4,12],[26,45],[1,3],[7,3],[11,6],[4,3],[10,6],[44,-6],[14,55],[0,16],[0,46],[-49,38],[-6,18],[-8,22],[46,26],[-17,19],[-4,4],[-23,19],[-25,21],[-23,46],[3,17],[8,44],[8,-13],[2,-4],[8,-13],[9,-13],[28,29],[15,6],[24,12],[56,15],[1,0],[2,0],[26,4],[25,3],[36,-1],[7,-6],[9,-6],[14,-10],[13,-18],[16,-23],[17,-8],[36,-18],[15,-14],[17,-16],[29,-17],[4,-3],[36,-25],[3,-5],[1,-4],[24,-47],[10,-74],[12,-64],[22,-61],[42,-17],[1,0],[13,-6],[1,0],[35,12],[16,6],[15,4],[17,32],[10,12],[9,11],[13,17],[40,16],[33,-28],[1,-1],[36,-12],[30,29],[18,36],[6,35],[3,16],[19,41],[13,29],[20,41],[-23,31],[-30,15],[-7,17],[-13,35],[-33,40],[0,59],[11,36],[2,4],[1,2],[46,47],[41,10],[2,1],[2,0],[29,13],[22,9],[33,66],[-53,25],[-35,23],[-8,4],[-24,10],[-20,38],[-12,49],[-17,64],[-1,46],[0,11],[-5,53],[10,67],[18,36],[8,16],[33,39],[36,31],[23,17],[11,8],[7,5],[26,44],[10,23],[7,15],[12,25],[11,20],[6,65],[-31,61],[-15,33],[-12,29],[-25,53],[-12,17],[-19,29],[-45,56],[-17,16],[-25,22],[-29,4],[-10,2],[-13,0],[-18,0],[-11,2],[-25,5],[-20,21],[-11,12],[-26,2],[-31,2],[-53,-24],[-3,-3],[-10,-9],[-23,-22],[-18,-5],[-13,-4],[-10,1],[-18,0],[-15,1],[-11,1],[-14,7],[-16,9],[-27,9],[-6,8],[-14,19],[-35,38],[-23,-2],[-17,-1],[-3,-4],[-16,-19],[-8,-9],[-12,-14],[-11,-22],[-20,-40],[-3,-58],[2,-26],[0,-3],[4,-38],[-42,-34],[-22,5],[-18,4],[-37,11],[-4,2],[-58,18],[-15,0],[-31,0],[-13,-10],[-17,-13],[-7,-7],[-29,-27],[-49,-1],[-5,0],[-9,0],[-26,4],[-11,1],[-15,4],[-18,5],[-12,15],[-20,25],[-9,24],[-20,47],[-21,22],[-11,13],[-10,56],[-13,43],[-3,7],[-29,2],[-11,1],[-45,-26],[-4,-2],[-19,-15],[-32,-23],[-17,-47],[-2,-14],[-5,-34],[-3,-68],[-1,-28],[-1,-46],[-5,-34],[-3,-23],[-19,-63],[-12,-33],[-11,-28],[-9,-47],[-12,-37],[-21,-47],[-11,-28],[-13,-33],[1,-52],[3,-19],[4,-25],[9,-29],[6,-19],[23,-53],[-7,-44],[-48,-23],[-37,0],[-19,-1],[-41,13],[-12,4],[-33,16],[-26,21],[-51,17],[-34,29],[-16,11],[-9,6],[-40,13],[-54,-6],[-29,-12],[-12,-5],[-21,-9],[-37,-71],[-1,-13],[-3,-62],[-5,-37],[-5,-35],[-22,-35],[-12,-19],[-25,-36],[-3,-3],[-27,-33],[-11,-47],[-7,-40],[-16,-86],[-12,-64],[-9,-20],[-20,-45],[-20,-72],[8,-45],[1,-39],[1,-34],[4,-70],[2,-24],[4,-53],[15,-58],[16,-39],[0,-71],[-6,-74],[4,-65],[-1,-52],[-6,-14],[-13,-30],[-13,-4],[-34,-12],[-41,20],[-5,2],[-5,3],[-48,20],[-58,0],[-4,-1],[-7,-3],[-29,-12],[-8,-4],[-29,-6],[-31,3],[-12,6],[-3,1],[-19,10],[-3,1],[-27,-18],[-12,-9],[-17,-11],[-1,-5],[-10,-48],[-5,-35],[-13,-8],[-25,-15],[-16,8],[-17,9],[-20,11],[-14,8],[-2,1],[-48,-9],[-4,-2],[-12,-5],[-26,-11],[-26,-13],[-37,-22],[-30,-38],[-21,-36],[-13,-24],[-9,-16],[-11,-32],[-27,-39],[-21,-35],[11,-27],[4,-10],[2,-25],[3,-24],[9,-57],[10,-71],[2,-37],[1,-11],[0,-8],[0,-47],[21,-62],[-2,-21],[-4,-32],[-13,-12],[-11,-10],[-27,-21],[-41,-19],[-34,-21],[-27,11],[-23,11],[-15,6],[-22,7],[-1,1],[-1,1],[-24,16],[-21,27],[-26,43],[-12,20],[-36,72],[-9,56],[-15,22],[-7,11],[-28,11],[-32,8],[-25,-4],[-26,-4],[-11,2],[-5,2],[-41,9],[-8,5],[-30,17],[-7,2],[-23,9],[-44,-4],[-5,-1],[-2,0],[-33,-8],[-5,1],[-30,6],[-33,-7],[-13,-3],[-5,6],[-12,15],[-17,22],[-2,3],[31,40],[21,60],[-18,53],[-44,-12],[-5,-1],[-4,-1],[-58,-15],[-44,-27],[-9,-8],[-30,-30],[-17,-15],[-13,-12],[-7,-20],[-8,-20],[47,-47],[-1,-54],[-27,-21],[-12,-9],[-4,-9],[-20,-36],[4,-35],[1,-10],[-8,-17],[-8,-15],[-16,-37],[-5,-14],[-16,-46],[1,-58],[2,-53],[0,-4],[2,-31],[5,-36],[10,-57],[-6,-79],[21,-36],[4,-39],[-5,-59],[-66,8],[-4,4],[-1,1],[-64,62],[-18,-27],[-11,-15],[-15,-23],[-37,-56],[-21,-40],[-6,-13],[-11,-22],[-9,-19],[-3,-14],[-15,-64],[-17,-89],[-1,-19],[-3,-51],[-4,-64],[-1,-6],[-1,-2],[-6,-43],[4,-61],[1,-49],[0,-44],[-2,-34],[1,-43],[-1,-50],[-2,-12],[-5,-25],[-16,-62],[-14,-57],[-32,-57],[-32,-41],[-12,-15],[-25,-17],[-37,-2],[-20,3],[-23,4],[-43,-15],[-38,-37],[-6,-23],[-3,-13],[-1,-16],[-2,-36],[-5,-49],[-15,-34],[-14,-53],[1,-30],[2,-57],[18,-57],[3,-42],[-7,-31],[-5,-42],[9,-49],[-4,-38],[-20,-26],[-11,-5],[-22,-10],[-43,5],[-4,0],[-3,0],[-26,4],[-30,-4],[-5,5],[-9,10],[-17,18],[-29,41],[-22,33],[-19,48],[-25,-10],[-14,-5],[-12,-5],[-24,-22],[-19,-17],[-12,-36],[-9,-29],[-6,-21],[-10,-35],[-15,-23],[-13,-19],[-30,-25],[-44,-23],[-71,-28],[-28,-50],[-2,-44],[-1,-61],[-21,-37],[-16,-28],[-8,-19],[-14,-32],[-18,-41],[-19,-59],[-28,-63],[-11,-19],[-21,-36],[-6,-6],[-35,-35],[-37,1],[-22,-4],[-24,-4],[-20,-20],[-13,-13],[-15,-62],[-10,-52],[-12,-50],[-18,-43],[-21,-32],[-12,-19],[-10,-10],[-23,-23],[-30,-25],[-11,-10],[-15,-20],[-22,-29],[-31,-65],[-9,-15],[-23,-39],[-27,-64],[-23,-89],[0,-6],[-5,-54],[-5,-14],[-9,-27],[-16,-40],[-22,-48],[-2,-5],[-24,-54],[-10,-22],[-14,-32],[-26,-83],[-21,-55],[-23,-61],[-7,-13],[-15,-29],[-7,-13],[-9,-18],[-26,-48],[-29,-55],[-4,-13],[-15,-39],[-24,-41],[-7,-13],[-23,-51],[-3,-4],[-18,-27],[-42,-36],[-35,-46],[-14,-33],[-15,-64],[-34,-72],[-4,-59],[35,-30],[-5,-39],[-26,-36],[-30,-27],[-9,-8],[-37,-46],[-18,-29],[-20,-32],[-13,-51],[-89,-78],[33,-4],[17,-3],[14,-10],[80,-57],[33,-27],[8,-6],[24,-9],[11,-4],[15,-10],[32,-21],[21,-29],[7,-10],[24,-25],[42,-43],[14,-36],[7,-17],[11,-30],[1,-3],[19,-49],[4,-32],[3,-22],[1,-36],[-10,-30],[-9,-61],[-8,-42],[-8,-55],[8,-36],[10,-55],[0,-53],[4,-21],[7,-37],[-4,-71],[10,-44],[9,-31],[5,-20],[-3,-22],[-3,-23],[-18,-30],[-9,-13],[-5,-15],[-7,-19],[-23,-48],[5,-62],[11,-13],[26,-29],[-11,-33],[30,-63],[2,-10],[9,-40],[36,-44],[11,-15],[20,-29],[52,-32],[59,-18],[28,-13],[30,-13],[30,-11],[10,-4],[45,-22],[33,-30],[10,-6],[1,-1],[21,-14],[40,-23],[3,-2],[6,-4],[5,-3],[14,-9],[22,6],[19,4],[32,26],[33,-5],[14,-44],[16,-62],[9,-10],[2,-3],[16,-19],[20,-34],[39,-44],[48,-44],[18,-32],[10,-25],[11,-25],[-53,13],[-33,18],[-37,35],[-46,38],[-15,4],[-6,2],[-10,2],[-14,5],[-44,13],[-20,21],[-23,24],[-39,37],[-22,18],[-30,27],[-26,12],[-28,14],[-31,4],[-11,4],[-18,5],[-4,2],[-25,6],[-30,19],[-9,5],[-36,3],[-41,32],[-12,13],[-22,24],[-18,24],[-13,15],[-8,10],[-6,8],[-41,38],[-17,17],[-10,0],[-16,0],[-6,0],[-4,0],[-46,-2],[-23,34],[-23,58],[-29,66],[-12,23],[-22,43],[-19,34],[-12,21],[-7,57],[-11,47],[-25,38],[-25,54],[-13,56],[-15,56],[-37,34],[-28,17],[-11,6],[-7,16],[-17,42],[-36,65],[-19,44],[-26,46],[-29,49],[-31,42],[-37,21],[-18,2],[-47,6],[-36,-15],[-7,13],[-5,7],[-12,21],[-38,3],[-15,7],[-2,1],[-20,9],[-35,-13],[-13,-16],[-15,-20],[-1,8],[-1,8],[-5,39],[-2,12],[19,55],[5,28],[3,15],[2,12],[15,10],[38,26],[20,-6],[17,-5],[36,-14],[24,-7],[5,-1],[37,-3],[4,0],[1,0],[1,0],[8,-1],[65,22],[-51,48],[-10,5],[-33,14],[-37,11],[-1,0],[-39,30],[-31,6],[-61,-26],[-7,-10],[-35,-47],[-16,-48],[-9,-11],[-23,-28],[-41,-28],[-13,-8],[-42,-26],[-58,-42],[-42,-41],[-41,-45],[-40,-16],[-33,-33],[-30,-30],[-18,-18],[-50,-53],[-21,-63],[-29,-13],[-25,-12],[-34,-36],[0,-1],[-9,-49],[-17,-56],[-13,-17],[-11,-15],[-32,-14],[-18,-9],[-15,-8],[-34,-9],[-8,2],[-16,2],[-3,1],[-30,10],[-37,12],[-39,21],[-25,28],[-7,19],[-16,48],[29,12],[4,2],[12,5],[-21,29],[-31,23],[-37,23],[-12,14],[-16,21],[-15,11],[-27,20],[-24,1],[-24,1],[7,-38],[1,-7],[4,-26],[22,-44],[13,-29],[38,-27],[13,0],[21,0],[1,-1],[1,-3],[21,-40],[-4,-39],[0,-1],[-23,-35],[-15,-4],[-17,-4],[-27,-23],[-6,-5],[-31,-27],[-34,-25],[-36,-10],[-11,-3],[-32,-6],[-9,-2],[-27,18],[-13,8],[-48,-4],[-30,7],[-47,16],[-40,10],[-6,-26],[-13,-59],[-18,-36],[-13,-25],[-44,-57],[-14,-84],[-8,-50],[-4,-25],[-15,-58],[-15,-29],[-44,-23],[-9,-4],[-48,-20],[-32,-35],[-23,-17],[-4,-3],[-14,-7],[-19,-9],[-33,0],[-13,1],[-7,0],[18,82],[-3,70],[-52,-54],[-3,-2],[-2,-1],[-33,-22],[-10,-6],[-1,1],[-14,17],[-17,20],[35,75],[15,30],[23,48],[17,58],[2,19],[8,58],[10,16],[14,22],[7,14],[7,14],[26,-9],[23,6],[12,4],[10,4],[4,2],[19,7],[14,52],[-11,31],[-2,7],[-33,5],[-32,2],[-29,2],[-46,-6],[-44,0],[-49,5],[-60,12],[-41,9],[-33,0],[-36,-9],[-8,-2],[-36,-18],[-1,-1],[-11,-5],[-46,-37],[-40,-34],[-33,-32],[-6,-9],[-3,-4],[-26,-37],[-42,-36],[-7,-3],[-37,-12],[-60,-21],[-12,-4],[-32,-11],[-21,-9],[-24,-11],[-45,-25],[-31,-31],[-8,-8],[-33,-39],[-10,-14],[-22,-31],[-37,-46],[-22,-33],[-8,-11],[-7,-15],[-18,-33],[-9,-16],[-14,-27],[-22,-25],[-15,-18],[-46,-43],[-16,-15],[-16,-14],[-12,-16],[-18,-23],[-27,-34],[-16,-36],[-18,-45],[-11,-29],[-13,-36],[-33,-73],[-33,-50],[-34,-67],[-41,-35],[-31,-24],[-24,-22],[-30,-29],[-32,-46],[-29,-21],[-10,-17],[-18,-31],[-18,-92],[-5,-18],[-12,-40],[-25,-40],[-30,-34],[-17,-16],[-25,-24],[-29,-24],[-17,-14],[-19,-32],[-20,-19],[-25,-23],[-36,-44],[-8,-8],[-21,-23],[-14,-16],[-20,-24],[-29,-41],[-16,-22],[-11,-23],[-17,-36],[-24,-45],[-50,-73],[-37,-67],[-38,-39],[-15,-27],[-14,-23],[-41,-61],[-34,-63],[-13,-46],[-18,-35],[-36,-37],[-39,-36],[-16,-9],[-16,-11],[-14,-14],[-14,-15],[-21,-28],[-32,-44],[-17,-41],[-4,-46],[0,-55],[2,-13],[8,-39],[3,-19],[4,-19],[11,-27],[6,-15],[3,-22],[4,-22],[4,-56],[1,-57],[1,-14],[1,-75],[-3,-55],[-9,-53],[-10,-33],[-2,-9],[-25,-51],[-23,-38],[-25,-34],[-19,-29],[-9,-14],[-27,-36],[-16,-20],[-26,-33],[-42,-43],[-13,-13],[-15,-16],[-2,-2],[-6,-6]],[[77609,45421],[-47,-42],[-26,-32],[-21,-25],[-30,-34],[-59,-81],[-20,-85],[-12,-41],[-1,-2],[-8,-30],[2,-23],[3,-23],[-11,-34],[-5,-19],[-32,-67],[-14,-19],[-17,-23],[-23,-22],[-23,-23],[-29,-21],[-18,-13],[-1,-3],[-5,-18]],[[77212,44741],[-3,-4],[-1,0],[-9,-9],[-35,-34],[-18,-9],[-1,-1],[-8,-4],[-31,-12],[-38,-14],[-8,-3],[-51,-18],[-58,-12],[-61,-7],[-97,-1],[-51,1],[-31,1],[-42,-4],[-16,-2],[-49,-5],[-13,-4],[-11,-4],[-36,-12],[-17,-6],[-70,-44],[-82,-68],[-53,-50],[-37,-24],[-22,-17],[-17,-14],[-34,-29],[-16,-11],[-25,-19],[-28,-16],[-39,-22],[-63,-45],[-39,-11],[-28,-4],[-7,-1],[-6,-1],[-49,1],[-41,6],[-68,19],[-18,-14],[-23,-18],[-20,-15],[-19,-15],[-11,-12],[-22,-23],[-14,-33],[-4,-10],[-12,-38],[-21,-56],[-59,-51],[-37,-19],[-39,-16],[-30,-13],[-9,-10],[-19,-20],[-14,-69],[-16,-20],[-20,-25],[-39,-39],[-7,-7],[-27,-58],[-26,-26],[-12,-11],[-35,-33],[-37,-20],[-9,-8],[-16,-14],[-13,-12],[-43,-37],[-37,-26],[-28,-11],[-15,-6],[-14,-6],[-10,-4],[-36,-20],[-21,-27],[-10,-14],[-5,-6],[-1,-1],[-4,-6],[24,-17],[22,8],[0,1],[27,9],[27,14],[49,-15],[44,-2],[-3,-29],[-1,-13],[16,-38],[-7,-30],[-5,-18],[-11,-32],[-5,-13],[-21,-31],[-43,-74],[-7,-12],[-8,-13],[-19,-30],[-98,-192],[-32,-58],[-25,-46],[-83,-79],[-15,-59],[-71,-101],[-16,-8],[-9,-5],[-33,-17],[-61,-33],[-37,-20],[-27,-19],[-40,-29],[-16,-1],[-34,-3],[-77,-7],[-39,0],[-50,0],[-54,3],[-35,3],[-22,1],[-40,9],[-12,2],[-26,6],[-62,21],[-42,15],[-79,30],[-50,18],[-15,5],[-40,17],[-33,17],[-45,27],[-24,45],[-32,-32],[-26,-17],[-33,-21],[-27,-1],[-21,-46],[-5,-23],[-5,-21],[-10,-46],[-16,-27],[-9,-15],[0,-4],[-7,-63],[3,-8],[23,-86],[-8,1],[-64,1],[1,8],[6,51],[3,32],[2,8],[19,66],[7,27],[-9,63],[13,36],[8,23],[7,20],[13,29],[21,44],[0,1],[1,0],[-8,12],[-13,20],[-37,44],[-51,49],[-40,39],[-15,0],[-19,1],[-25,7],[-27,7],[14,36],[3,9],[-52,61],[-2,2],[-18,20],[-45,51],[-10,11],[-43,75],[-20,8],[-12,5],[-35,27],[-34,-51],[-6,-8],[-4,-7],[-21,-37],[-19,4],[-3,15],[-9,1],[-18,16],[-1,8],[5,16],[-9,20],[-16,11],[-17,12],[-33,32],[4,6],[5,7],[6,5],[3,-3],[4,-5],[15,0],[23,1],[18,-4],[12,20],[3,4],[-7,12],[7,0],[5,38],[9,50],[2,16],[2,15],[39,44],[47,50],[1,1],[28,15],[14,9],[34,21],[18,0],[17,1],[43,-14],[37,41],[3,4],[9,10],[-8,47],[4,100],[1,37],[18,-9],[43,-20],[36,-35],[-19,121],[9,44],[13,11],[1,1],[17,14],[-15,62],[9,17],[14,25],[5,16],[11,30],[1,81],[-3,52],[-2,43],[-5,35],[-1,11],[-6,55],[9,76],[2,21],[1,18],[3,34],[10,19],[5,10],[11,-35],[18,-55],[2,-6],[1,-4],[10,-25],[17,-46],[9,-3],[12,-22],[7,-10],[72,-52],[5,-17],[13,-42],[89,-97],[5,-28],[5,-23],[1,-9],[4,-21],[67,-53],[15,-12],[24,-20],[22,-17],[5,-3],[0,-1],[0,-1],[7,-36],[3,-15],[14,-63],[20,-67],[21,-37],[1,2],[10,67],[-2,7],[-3,7],[-11,38],[-1,20],[-2,32],[-1,14],[0,9],[-10,41],[-5,18],[-15,33],[-39,42],[-15,9],[-8,5],[-91,108],[-172,205],[-46,174],[-19,66],[-15,39],[-5,16],[13,42],[-15,38],[-16,38],[9,58],[4,38],[3,33],[41,47],[50,-22],[-1,31],[0,17],[6,37],[-5,19],[-7,34],[9,58],[1,67],[6,50],[7,40],[22,60],[10,1],[24,1],[2,21],[4,40],[1,14],[5,43],[14,36],[2,7],[5,5],[5,5],[22,24],[6,25],[12,51]],[[73726,45432],[1,3],[4,15],[6,27],[36,35],[0,1],[5,-77],[0,-2],[0,-1]],[[73778,45433],[-11,-45],[-11,-27],[-4,-11],[-1,-1],[0,-2],[10,-19],[7,-14],[6,-12],[1,-2],[7,-13],[12,-23],[10,-20],[13,-51],[9,-16],[13,-26],[19,-16],[9,-22],[20,-36],[1,-70],[8,-35],[1,-3],[12,-55],[27,-36],[4,-7],[35,2],[16,0],[-11,43],[-14,84],[-27,75],[-40,84],[-1,2],[0,1],[-19,33],[0,1],[-3,8],[-10,26],[-21,45],[-25,40],[8,43],[-2,29],[-4,46]],[[73822,45433],[-3,39],[0,10],[-7,24],[-9,36],[-6,50],[-3,28],[4,20],[6,40],[0,24],[-1,22],[4,8],[16,40],[25,45],[7,59],[0,31],[1,13],[0,38],[-7,65],[5,30],[4,26],[13,63],[2,7],[-15,74],[20,37],[0,4],[5,42],[0,1],[19,32],[4,7],[17,16],[14,14],[8,6],[2,1],[28,21],[14,10],[23,36],[16,24],[3,20],[4,28],[10,46],[1,1],[2,13],[18,53],[3,10],[12,35],[18,23],[21,28],[26,42],[12,15],[10,14],[26,25],[34,33],[9,7],[22,19],[21,23],[4,4],[10,16],[13,20],[4,4],[5,4],[24,22],[3,3],[23,19],[29,15],[10,5],[25,8],[7,3],[24,15],[9,5],[68,15],[4,2],[6,4],[35,20],[9,37],[6,24],[-58,25],[24,42],[15,26],[10,-3],[3,0],[12,-3],[7,4],[15,9],[19,62],[11,23],[10,21],[20,29],[19,31],[7,11],[4,13],[10,37],[4,15],[9,33],[2,4],[6,17],[10,28],[28,68],[15,25],[9,13],[17,30],[18,48],[2,7],[1,2],[5,26],[6,27],[4,22],[2,15],[6,48],[8,31],[3,14],[15,31],[36,43],[22,43],[7,14],[9,20],[26,40],[44,73],[3,27],[4,39],[15,47],[4,26],[1,6],[2,12],[2,12],[23,22],[12,11],[5,21],[1,3],[6,21],[6,44],[6,36],[36,24],[30,11],[13,7],[16,10],[11,6],[15,25],[1,2],[3,6],[27,29],[68,38],[25,7],[13,3],[2,1],[5,1],[33,25],[43,31],[1,3],[1,1],[15,22],[40,9],[42,-4],[44,-3],[1,0],[37,23],[13,45],[13,47],[25,56],[27,37],[19,27],[34,62],[5,9],[34,65],[8,41],[3,11],[4,54],[21,54],[10,16],[17,26],[1,20],[2,35],[33,28],[2,2],[3,2],[39,-21],[16,17],[11,11],[-3,14],[-7,28],[11,39],[4,11],[16,8],[19,8],[6,-6],[11,-10],[31,-28],[11,65],[13,44],[47,37],[4,31],[6,38],[5,7],[49,74],[13,55],[-21,64],[-19,17],[-16,16],[-36,58],[-19,31],[-29,46],[-33,56],[-14,44],[-14,35],[-15,42],[-12,38],[-3,17],[-6,27],[-4,27],[-4,31],[0,26],[1,36],[6,38],[5,31],[10,39],[21,48],[28,50],[6,7],[17,20],[23,28],[19,12],[19,13],[23,15],[7,20],[13,36],[28,38],[1,2],[3,4],[30,39],[1,2],[3,4],[4,5],[19,22],[15,5],[12,4],[2,15],[1,5],[5,36],[27,52],[4,4],[1,1],[20,20],[16,16],[22,14],[45,29],[26,8],[5,1],[28,9],[42,13],[54,14],[30,16],[44,6],[43,18],[24,13],[54,24],[21,9],[61,27],[50,27],[15,3],[3,1],[23,5],[51,15],[44,10],[60,17],[30,9],[61,17],[4,1],[0,1]],[[77213,51432],[16,4],[52,11],[13,2],[3,1],[25,4],[43,7],[8,2],[37,5],[13,1],[2,1],[28,2],[23,0],[2,0],[9,0],[18,-1],[21,-2],[13,12],[11,10],[19,3],[23,3],[58,16],[53,4],[37,12],[37,3],[28,5],[4,0],[43,1],[17,5],[1,0],[16,4],[45,4],[51,16],[44,11],[16,3],[23,5],[23,8],[2,0],[15,5],[66,-8],[55,23],[60,-17],[53,22],[38,-2],[2,0],[33,3],[26,-2],[24,-3],[22,2],[23,2],[1,0],[41,-6],[16,-3],[74,-4],[24,-13],[56,-16],[38,-12],[28,-9],[28,0],[2,0],[3,0],[-1,4],[-5,28],[0,47],[0,13],[-9,31],[-31,-21],[-2,1],[-8,3],[8,5],[8,5],[2,10],[-3,9],[33,-6],[5,-2],[2,0],[3,-1],[4,-3],[4,-3],[-1,10],[-1,16],[-8,7],[-2,2],[-1,1],[-23,24],[0,1],[1,1],[10,19],[39,-28],[11,-37],[-1,-13],[-1,-1],[-1,-11],[0,-5],[-6,-7],[-7,-9],[-1,-1],[0,-1],[-2,-7],[-2,-5],[4,-3],[5,-4],[2,-1],[12,-9],[30,33],[2,2],[3,2],[1,1],[1,1],[13,9],[18,14],[-7,18],[-2,5],[-2,4],[37,22],[-4,17],[-4,20],[-5,2],[-8,6],[-11,8],[-4,3],[3,8],[17,16],[9,8],[10,2],[26,5],[55,-3],[43,-7],[18,-3],[39,0],[34,-20],[17,-11],[10,12],[23,29],[7,25],[5,17],[11,52],[9,65],[2,47],[4,44],[7,45],[15,68],[-5,35],[9,35],[-1,55],[2,60],[3,69],[1,64],[1,63],[0,11],[-2,54],[-2,35],[-1,19],[-2,62],[2,63],[-1,30],[0,8],[0,7],[-1,31],[3,27],[2,23],[-5,53],[0,23],[-1,17],[-18,38],[-3,6],[15,26],[2,3],[5,8],[11,48],[9,27],[7,20],[17,41],[16,51],[20,48],[31,69],[25,60],[25,64],[13,36],[6,16],[31,70],[10,35],[7,22],[34,48],[41,32],[3,3],[1,0],[24,19],[20,26],[42,30],[61,29],[31,-12],[9,-33],[25,-48],[40,-35],[24,0],[-6,24],[-6,22],[-11,24],[-32,72],[1,3],[18,-9],[14,-7],[15,-8],[12,8],[-4,14],[-8,27],[-41,52],[-10,12],[-29,36],[-44,13],[1,42],[-59,26],[-59,-14],[-37,21],[-39,-15],[-41,18],[-25,32],[-11,6],[-11,6],[-25,13],[-26,15],[1,34]],[[79401,54239],[2,1],[7,2],[14,5],[54,-33],[15,-10],[30,-11],[23,-8],[48,-11],[48,-16],[36,1],[37,-16],[20,-8],[66,0],[322,-14],[839,-162],[1150,-207],[509,2635],[1445,800],[1925,2066],[1256,2070],[3639,27],[881,9],[537,5],[3970,-2255],[3725,-2113],[-1981,-1630],[-712,-587],[-662,-646],[-545,-616],[-466,-579],[-525,-665],[-582,-798],[-465,-712],[-532,-969],[-357,-721],[-357,-817],[-471,-1196],[-509,-1367],[-545,-1595],[-525,-1661],[-428,-1547],[-408,-1442],[-387,-1509],[-321,-1224],[-10,-47],[-591,-2589],[-441,-1774],[-122,-545],[-92,-413],[-131,-587],[-363,-1764],[-92,-502],[-360,-1886],[-202,-1279],[-208,-1620],[-143,-1278],[-77,-1297],[-29,-1353],[37,-1258],[135,-1616],[120,-1040],[188,-1209],[71,-699],[771,-7152],[743,-6751],[-11849,-44]],[[91255,60917],[5,-51],[3,-42],[2,-20],[0,-9],[-3,-55],[-8,-47],[11,-50],[0,-45],[-16,-29],[-4,-8],[7,-4],[26,-13],[39,16],[6,2],[1,1],[1,0],[31,16],[1,1],[4,2],[11,5],[44,23],[2,0],[14,0],[32,1],[34,-8],[37,-9],[23,-6],[30,-7],[41,34],[-3,47],[-7,57],[-20,82],[-14,47],[-3,12],[-24,55],[-21,18],[-15,12],[-2,3],[-28,25],[-28,29],[-14,4],[-18,5],[-55,14],[-36,8],[-7,2],[-34,5],[-17,-3],[-22,-4],[-4,-13],[-5,-15],[-3,-8],[-1,-5],[-1,-1],[0,-2],[8,-72]],[[90555,60731],[-24,1],[-39,-13],[-10,-6],[-25,-15],[-23,-14],[-20,-9],[-15,-7],[-14,-6],[-15,-7],[-42,-15],[-39,-9],[-31,1],[-29,1],[-12,0],[-37,1],[-13,-5],[-21,-8],[-34,-6],[-42,5],[-26,0],[-33,1],[-39,-13],[-6,-9],[-14,-22],[-33,-36],[-12,-43],[-5,-20],[-22,-38],[-29,-29],[-53,-1],[-21,11],[-20,10],[-8,65],[12,40],[5,20],[15,56],[8,57],[-9,22],[-11,30],[-7,27],[-15,60],[-35,54],[-36,27],[-35,-18],[-11,-16],[-5,-7],[-16,-23],[-21,-18],[-17,-16],[-22,-51],[3,-22],[4,-22],[-16,-50],[-33,-50],[-16,-59],[-2,-19],[-5,-33],[-8,-48],[-14,-40],[-11,-28],[-10,-29],[-21,-78],[-10,-48],[-11,-22],[-12,-24],[-5,-34],[-1,-6],[-6,-31],[5,-35],[4,-28],[18,-43],[12,-30],[6,-17],[9,-24],[18,-49],[10,-29],[9,-24],[25,-51],[33,7],[8,-11],[14,-19],[-10,-40],[-13,-1],[-21,-2],[-44,9],[9,-10],[2,-3],[32,-39],[4,-30],[2,-16],[24,-62],[6,-23],[9,-41],[-23,-42],[-24,14],[-2,1],[-25,2],[-16,1],[-5,0],[-9,1],[-30,1],[-12,27],[-7,14],[-12,-23],[-2,-5],[-4,-7],[-13,-24],[-11,-76],[3,-63],[10,-65],[31,-49],[33,-28],[9,-10],[20,-21],[36,-27],[5,-4],[40,-3],[38,-3],[28,27],[5,4],[10,-2],[18,-4],[14,33],[6,15],[-17,20],[-7,9],[-11,24],[-11,23],[-2,7],[-3,12],[-5,16],[7,33],[3,13],[29,-8],[2,-1],[14,-10],[14,-10],[8,53],[6,16],[20,48],[32,36],[8,8],[16,12],[20,16],[47,-8],[36,15],[4,2],[1,0],[7,0],[26,-1],[47,-29],[33,-79],[40,-78],[17,-24],[2,-3],[9,-12],[0,-1],[5,-17],[13,-42],[15,-18],[15,-18],[11,-22],[6,-11],[14,-14],[29,-28],[45,9],[15,13],[16,13],[3,2],[37,17],[10,5],[8,1],[39,7],[33,-17],[13,-14],[20,-21],[28,-23],[7,-5],[43,-20],[32,-26],[35,16],[41,-10],[2,0],[21,-4],[19,-4],[17,8],[15,7],[32,37],[7,29],[6,20],[8,22],[10,29],[-7,61],[-1,10],[-6,61],[-27,33],[-13,46],[14,46],[35,46],[1,2],[13,26],[14,31],[1,29],[0,41],[-4,47],[10,43],[5,7],[16,22],[30,30],[45,27],[8,8],[14,13],[16,18],[36,-2],[4,0],[46,0],[11,52],[12,52],[13,34],[9,26],[29,52],[7,43],[1,5],[3,16],[29,52],[8,43],[43,60],[4,40],[2,20],[-22,37],[-5,8],[-17,24],[-29,22],[-34,14],[-39,33],[-5,-20],[-6,-27],[-5,-6],[-12,-13],[-10,-12],[-17,2],[-23,2],[-19,24],[-4,5],[-29,41],[-12,44],[32,-3],[11,10],[21,17],[-29,57],[-7,15],[-36,30],[-7,8],[-22,28],[-41,32],[-49,8],[-25,1],[-25,2],[-53,8],[-38,8],[-7,2],[-22,0]],[[90097,58651],[2,-10],[1,-11],[4,-42],[1,-2],[23,-65],[13,-36],[8,-27],[5,-16],[10,-34],[6,-22],[2,-8],[10,-60],[-15,-7],[-14,-6],[-7,-3],[13,-7],[30,-17],[1,0],[3,-2],[29,-21],[25,42],[-5,52],[-3,38],[-9,53],[-17,57],[5,48],[-19,45],[-9,20],[-21,11],[-20,10],[-52,20]],[[90097,58651],[0,2],[-6,18],[-12,41],[-10,41],[-6,21],[0,18],[1,43],[-23,28],[-38,44],[-34,55],[-31,31],[-26,43],[-44,-18],[-1,0],[-23,3],[-11,1],[-32,13],[-2,2],[-9,9],[-22,23],[-31,-16],[22,-26],[4,-5],[4,-4],[31,-33],[5,-15],[11,-30],[9,-26],[8,-22],[11,-30],[11,-28],[35,-46],[29,-43],[21,-24],[8,-10],[45,-32],[18,-5],[20,-6],[2,-1],[1,-1],[3,-1],[24,-11],[38,-3]],[[89384,58644],[-23,2],[-39,0],[-5,-9],[-2,-3],[-17,-28],[0,-3],[12,-45],[9,-31],[6,-17],[1,-3],[14,-31],[7,-18],[13,-6],[22,-10],[19,-8],[8,-4],[37,-14],[6,-3],[50,-2],[35,15],[-10,84],[-8,12],[-20,29],[-7,44],[-10,37],[-29,2],[-32,6],[-6,2],[-9,0],[-22,2]],[[83504,56364],[-20,-54],[-16,-29],[-14,-25],[-3,2],[-7,2],[-30,15],[-29,-18],[-32,-7],[-27,-6],[-36,1],[-1,2],[-1,1],[-17,18],[-14,15],[-8,10],[-41,51],[-12,-17],[-5,-6],[-26,-38],[-44,-24],[-42,0],[-41,-16],[16,-56],[3,-44],[1,-56],[-4,-19],[-7,-35],[-30,-59],[0,-32],[-1,-31],[1,-34],[0,-23],[32,-35],[25,-11],[0,-1],[25,-11],[43,-22],[50,-27],[21,-11],[34,-18],[28,-15],[26,-14],[48,-27],[44,-24],[36,-21],[8,-5],[40,-24],[39,-24],[8,-5],[41,-25],[34,-20],[17,-11],[21,-12],[7,-4],[5,-3],[12,-8],[21,23],[4,5],[6,6],[-27,51],[-5,8],[-28,43],[-15,38],[-11,29],[-4,60],[12,73],[20,69],[7,54],[3,47],[1,26],[-11,81],[0,2],[14,42],[-15,70],[0,2],[-3,34],[-3,32],[-9,68],[33,26],[8,13],[26,41],[-9,26],[-12,38],[-14,22],[-3,5],[-12,19],[-44,-16],[-9,-3],[-37,-31],[-30,-47],[-9,-53],[-2,-13]],[[84625,55582],[8,-12],[21,1],[0,-3],[7,-4],[7,-4],[4,-3],[10,-6],[4,19],[-23,30],[-5,6],[-20,9],[-13,-9],[-9,-6],[1,-3],[2,-6],[6,-9]],[[84693,55480],[-21,-9],[-8,-4],[-5,-10],[-16,-32],[1,-2],[4,-6],[10,-15],[29,0],[34,0],[20,34],[10,65],[-10,-4],[-48,-17]],[[83905,54237],[30,-8],[7,2],[4,1],[22,7],[-8,4],[-12,6],[-1,0],[-1,1],[-22,11],[-4,15],[-3,10],[-3,0],[-2,0],[-3,6],[-1,2],[-21,-9],[-1,-29],[2,0],[1,-1],[5,-1],[11,-17]],[[79934,53800],[-10,5],[0,-4],[-4,-55],[0,-1],[-15,-30],[-30,4],[-12,9],[-11,8],[-6,-9],[16,-16],[14,-13],[8,-4],[29,-16],[46,-56],[10,0],[9,-16],[11,-2],[5,7],[6,11],[-2,3],[-8,9],[2,2],[3,4],[-3,24],[-1,2],[-7,48],[-9,17],[-35,65],[-6,4]],[[83439,53607],[-10,-11],[-1,-1],[-3,0],[-7,-6],[-16,-11],[-2,-48],[41,-40],[35,-3],[58,49],[4,19],[7,35],[-4,2],[-22,8],[-24,-2],[-3,0],[-26,11],[-27,-2]],[[81227,53317],[22,-10],[13,1],[1,0],[20,1],[-10,39],[-1,2],[-1,4],[-41,42],[-52,2],[-35,2],[-13,-6],[-47,-22],[40,-15],[28,-10],[35,-14],[8,-3],[28,-11],[5,-2]],[[42858,54633],[-23,2],[-109,-1],[-179,1],[-24,1],[-69,0],[-130,0],[-82,0],[-137,1],[-53,0],[-39,-1],[-77,0],[-149,1],[-84,1],[-72,1],[-231,-2],[-83,1],[-25,0],[-47,1],[-149,0],[-94,2],[-17,0],[-195,1],[-100,0],[-33,1],[-120,-2],[2,-309],[0,-131],[1,-17],[1,-58],[0,-93],[1,-280],[0,-77],[0,-244],[0,-32],[1,-194],[-1,-38],[0,-34],[0,-73],[0,-227],[-48,0],[-150,0],[-106,0],[-84,0],[-223,0],[-87,0],[-76,0],[-19,0],[-127,1],[-290,1],[-2,0],[-319,2],[-236,0]],[[38775,52838],[-128,-4],[-10,0],[-171,-5],[-249,-10],[-12,-1],[-44,-1],[-295,-13],[-320,-11],[-53,0],[-83,-2],[-17,0],[-99,-4],[-53,-2],[-165,-5],[-34,-2],[-58,-2],[-277,1],[-33,0],[-87,0],[-67,0],[-163,1],[-27,0],[-273,2],[-73,0],[-238,0],[-305,2],[-217,-1],[-96,0],[-305,3],[-147,1],[-137,1],[-30,0],[-19,0],[-155,-2],[-22,0],[-33,1],[-77,0],[-102,-1],[-235,2],[-40,-1],[-1,0],[-238,-1],[-97,0],[-2,0],[-111,1],[-83,0],[-180,1],[-13,0],[-119,0],[-299,0],[-95,0],[-37,0],[-26,0],[-33,1],[-18,0],[-51,0],[-51,1],[-153,2],[-154,1],[-203,1],[-107,0],[-289,0],[-239,0],[-35,0],[-7,0],[-28,0],[-198,0],[-108,0],[-43,0],[-266,1],[-129,-1],[-77,0],[-101,-1],[-23,0],[-206,-2],[-114,0],[-118,-3],[-78,0],[-86,-4]],[[29610,52782],[-1,67],[0,4],[-3,229],[-1,62],[0,50],[0,27],[-1,49],[0,92],[0,45],[1,38],[0,27],[0,38],[0,55],[0,4],[0,19],[1,74],[1,45],[1,125],[1,13],[2,138],[1,118],[0,42],[1,67],[1,74],[0,26],[1,90],[2,112],[1,47],[0,35],[0,24],[-20,-3],[-16,1],[-10,16],[0,20],[-1,21],[1,60],[-1,48],[1,43],[0,22],[0,31],[-1,32],[0,2],[0,38],[0,41],[1,26],[0,51],[-1,59],[0,28],[-1,32],[1,38],[-1,121],[0,14],[0,7],[1,35],[0,57],[0,56],[0,1],[0,21],[0,58],[0,70],[0,68],[0,61],[0,36],[0,99],[0,32],[0,29],[0,43],[0,42],[0,39],[2,171],[1,96],[0,28],[0,49],[0,49],[0,55],[0,57],[-1,33],[0,51],[-1,127],[0,31],[-1,24],[0,4],[0,61],[-1,50],[1,41],[0,28],[1,75],[1,50],[1,33],[1,41],[0,33],[0,23],[0,23],[4,23],[-4,25],[1,37],[0,30],[1,62],[0,81],[1,64],[1,27],[1,48],[0,49],[2,76],[-2,26],[0,5],[2,43],[0,85],[0,43],[0,29],[0,45],[0,33],[0,27]],[[67189,59972],[19,0],[73,-2],[6,0],[73,-2],[48,-1],[5,0],[107,-3],[23,-1],[19,-1],[3,0],[36,-2],[43,-2],[44,-3],[17,2],[39,0],[27,0],[37,-2],[34,-1],[24,0],[29,-1],[49,-1],[20,0],[23,-1],[86,-3],[20,2],[358,-14],[20,1],[41,-7],[63,0],[196,-4],[21,0],[20,0],[206,-4],[13,-1],[0,-3],[-5,-134],[-1,-20],[0,-9],[-1,-14],[0,-36],[-3,-83],[-3,-69],[0,-11],[-1,-37],[-4,-106],[1,-24],[2,-24],[-1,-23],[-1,-67],[-4,-190],[0,-49],[-6,-184],[-1,-9],[-5,-500],[-2,-162],[0,-39],[-2,-141],[-11,-358],[-1,-37],[0,-22],[0,-25],[-1,-26],[-1,-105],[-2,-84],[1,-69],[0,-2],[1,-133],[1,-126],[1,-55],[0,-34],[0,-14],[0,-293],[0,-219],[0,-58],[0,-1],[17,-1],[340,-18],[81,-2],[390,-6],[59,-1],[41,2],[40,-3],[240,-18],[10,0],[317,-24],[61,-1],[136,0],[36,0],[22,1],[2,1],[56,-7],[-4,-32],[1,-35],[1,-34],[2,-33],[0,-19],[-2,-49],[-2,-31],[-2,-51],[-3,-106],[-2,-65],[0,-98],[0,-25],[-1,-24],[-2,-53],[-1,-39],[0,-2],[-1,-46],[-1,-76],[-2,-47],[0,-27],[0,-35],[-1,-30],[0,-24],[-1,-31],[-1,-31],[-1,-34],[-1,-22],[-1,-22],[-4,-128],[-1,-19],[0,-13],[-6,-182],[-2,-36],[0,-27],[-6,-261],[0,-1],[0,-1],[90,-3],[49,-1],[25,-1],[75,-3],[132,-3],[33,-2],[46,-1],[21,-1],[76,-2],[34,-1],[53,-1],[77,-2],[41,-2],[28,-1],[102,-4],[25,0],[25,-1],[35,-1],[50,-2],[25,-2],[18,0],[-1,-32],[-1,-35],[-1,-56],[-1,-25],[0,-32],[-1,-33],[-1,-23],[-1,-42],[-1,-43],[-1,-9],[-1,-27],[0,-35],[-1,-37],[-1,-41],[-2,-51],[-2,-43],[-1,-35],[0,-34],[0,-21],[-1,-10],[0,-23],[0,-54],[-1,-26],[0,-33],[0,-53],[0,-29],[-1,-24],[0,-24],[-2,-44],[0,-42],[-1,-11],[-2,-168],[-1,-32],[0,-1],[0,-25],[-1,-31],[0,-30],[0,-2],[-1,-59],[-5,-210],[0,-22],[-1,-42],[0,-10],[1,-32],[0,-40],[-2,-69],[1,0],[0,-1],[66,-2],[55,-2],[50,-2],[42,-1],[30,-1],[47,-1],[218,-4],[18,-1],[64,-1],[68,-2],[49,-1],[33,-1],[140,-3],[107,-3],[157,-6],[1,0],[66,-2],[2,0],[28,0],[214,-3],[116,-3],[34,-1],[90,-2],[45,-2],[20,0],[63,-1],[154,-4],[56,-2],[283,-7],[62,-2],[115,-1],[103,-3],[87,-2],[-1,-67],[-2,-129],[-2,-73],[-3,-61],[-3,-48],[-2,-36],[-6,-101],[-3,-52],[0,-1],[134,-1],[20,0],[49,0],[30,0],[50,0],[23,0],[60,1],[116,1],[44,1],[61,1],[27,0],[77,1],[47,1],[29,0],[69,-2],[84,-4],[0,-25],[-1,-27],[0,-1],[18,1],[15,0],[79,0],[61,0],[157,0],[42,0],[10,0],[84,0],[27,0],[19,0],[89,1],[41,0],[4,0],[36,0],[45,-1],[148,-2],[10,0],[65,-1],[301,5],[148,0],[57,1],[60,0],[31,0],[181,-3],[27,-1],[103,1],[-7,-161],[-2,-62],[-2,-75],[-22,-174],[-5,-35],[1,1]],[[73822,45433],[-44,0]],[[73726,45432],[-17,0],[-58,0],[-16,1],[-8,0],[-129,-5],[-153,-1],[-80,0],[-7,0],[-68,0],[-76,0],[-33,-1],[-81,0],[-35,0],[-45,-1],[-42,0],[-46,0],[-44,0],[-89,0],[-78,0],[-2,0],[-43,0],[-151,-3],[-37,0],[-39,0],[-79,0],[-37,0],[-28,-2],[-201,0],[-40,0],[-44,0],[-133,0],[-34,0],[-91,-1],[-155,-15],[-38,-4],[-113,-11],[-66,-5],[-76,-2],[-33,-7],[-128,-14],[-149,-12],[-78,-4],[-151,-8],[-75,-4],[-21,0],[-73,-2],[-149,-5],[-47,-2],[-59,0],[-35,0],[-17,0],[-17,0],[-27,0],[1,47],[1,45],[1,58],[-106,0],[-17,0],[-56,1]],[[69979,45475],[0,5],[0,4],[0,13],[0,39],[-1,33],[0,56],[-12,191],[0,1],[-5,87],[-2,23],[-5,98],[-1,41],[-2,25],[-2,23],[-2,23],[-2,18],[0,3],[-7,72],[-6,58],[-2,29],[-5,46],[-3,39],[-6,81],[-4,45],[-13,163],[-11,139],[-1,2],[-4,32],[-7,59],[0,7],[-1,17],[-2,11],[-3,12],[-5,33],[-10,91],[-2,17],[-2,16],[-4,38],[-4,18],[-1,7],[-2,24],[-3,28],[-5,41],[0,1],[10,308],[0,9],[8,209],[2,69],[11,295],[4,166],[3,27],[0,5],[3,81],[3,66],[4,111],[0,25],[5,119],[4,106],[1,14],[1,23],[3,120],[1,33],[-33,1],[-121,3],[-153,4],[-80,2],[-73,1],[-159,4],[-147,4],[-62,1],[-90,3],[-168,3],[-143,3],[-99,3],[-2,0],[-15,-1],[-103,2],[-87,0],[-78,3],[-221,3],[-73,0],[-62,-1],[-104,2],[-1,0],[-41,2],[-179,2],[-19,-2],[-130,-1],[-203,3],[-26,0],[-395,10],[-144,1],[-406,3],[-8,0]],[[66270,49128],[2,408],[0,193],[0,33],[0,32],[0,57],[0,59],[3,79],[0,45],[-1,132],[-1,80],[0,29],[0,10],[5,366],[0,7],[2,245],[1,58],[3,305],[1,79],[1,58],[4,208],[4,257],[2,149],[1,20],[6,98],[0,31],[1,43],[1,31],[5,236],[0,23],[6,262],[7,361],[5,244],[2,76],[0,42],[1,44],[3,110],[2,94],[0,4],[1,78],[3,118],[9,468],[2,74],[1,78],[-74,9],[-17,2],[-18,-1],[-138,-6],[-319,3],[-50,1],[-170,1],[-203,2],[-114,0],[-36,1],[-522,4],[-78,1],[-1,0],[-390,5],[-241,0]],[[29610,52782],[8,-648],[-6,-66],[-2,-33],[0,-40],[1,-43],[4,-70],[0,-33],[0,-55],[2,-59],[1,-73],[1,-44],[1,-36],[-2,-27],[5,-199],[1,-36],[0,-37],[1,-21],[0,-22],[0,-35],[-1,-68],[0,-2],[-2,-68],[-1,-59],[-1,-28],[-1,-43],[-1,-47],[0,-134],[1,-55],[0,-25],[1,-6],[3,-17],[-2,-95],[-1,-47],[2,-50],[-1,-32],[0,-33],[0,-60],[1,-27],[0,-31],[0,-21],[0,-42],[0,-44],[0,-49],[1,-53],[1,-48],[0,-21],[0,-35],[0,-41],[0,-27],[0,-28],[1,-61],[-1,-62],[0,-31],[1,-31],[-1,-62],[0,-86],[0,-17],[0,-14],[1,-29],[2,-285],[0,-22]],[[29627,49169],[-196,1],[-2,0],[-109,0],[-143,1],[-164,0],[-91,1],[-158,0],[-57,-1],[-103,-1],[-46,0],[-37,-1],[-50,0],[-84,0],[-98,0],[-5,0],[-188,-1],[-154,0],[-79,-1],[-19,0],[-148,0],[-70,0],[-91,0],[-53,-1],[-38,0],[-72,-1],[-2,0],[-39,0],[-63,-1],[-58,1],[-33,1],[-146,-1],[-29,0],[-20,0],[-29,1],[-81,-2],[-97,-1],[-122,0],[-88,0],[-44,0],[-199,-2],[-62,0],[-3,0],[-46,0],[-48,2],[-50,1],[-19,0],[-21,-1],[-20,0],[-71,-1],[-22,0],[-157,-1],[-56,0],[-17,0],[-23,0],[-53,0],[-106,0],[-25,0],[-93,1],[-81,-1],[-49,0],[-40,0],[-31,1],[-26,0],[-38,0],[-97,-1],[-27,0],[-301,-1],[-52,1],[-20,0],[-234,1],[-259,0],[-27,2],[-88,0],[-59,0],[-116,1],[-43,0],[-74,-1],[-60,1],[-174,-1],[-59,1],[-17,0],[-47,0],[-18,0],[-23,1],[-15,0],[-47,0],[-50,1],[-28,0],[-80,1],[-49,0],[-27,0],[-47,1],[-38,1],[-102,-1],[-47,-1],[-15,0],[-23,-1],[-18,-1],[-15,0],[-58,1],[-100,0],[-89,1],[-83,0],[-47,0],[-46,0],[-15,-1],[-159,-2],[-127,1],[-30,4],[-34,-1],[-11,0],[-32,1],[-71,0],[-75,0],[-65,0],[-31,0],[-37,0],[-18,0],[-28,0],[-53,0],[-44,-2],[-27,0],[-21,0],[-9,0],[-7,0],[-18,0],[-35,0],[-4,0],[-46,0],[-18,0],[-18,0],[-20,0],[-38,0],[-40,0],[-31,0],[-23,0],[-21,0],[-20,0],[-18,0],[-64,2],[-33,0],[-82,0],[-20,0],[-34,0],[-74,0],[-41,0],[-19,-2],[-32,2],[-41,0],[-96,2],[-74,-2],[-30,-1],[-40,-1],[-16,0],[-31,-1],[-36,-1],[-93,-2],[-63,0],[-66,-1],[-56,-1],[-56,0],[-64,-1],[-58,0],[-126,-2],[-130,-2],[-51,-1],[-28,0],[-40,-1],[-74,-1],[-58,-1],[-37,0],[-39,-1],[-22,0],[-20,0],[-44,-1],[-112,-1],[-65,-1],[-11,-1],[-14,0],[-19,0],[-31,-1],[-51,-1],[-73,-1],[-98,-2],[-11,0],[-6,-1],[-9,-2],[-15,-3],[-9,-2],[-9,-3],[-9,2],[-3,1],[-10,5]],[[18659,49140],[-1,186],[0,1],[0,39],[0,78],[0,100],[0,92],[0,35],[0,24],[0,60],[-1,67],[0,75],[0,40],[0,81],[0,31],[1,92],[1,57],[1,44],[0,43],[0,22],[1,41],[-1,22],[-1,50],[0,22],[-1,26],[0,42],[-2,59],[0,31],[0,52],[-1,231],[0,26],[0,43],[-1,39],[0,38],[-1,28],[0,27],[0,75],[-2,33],[0,69],[0,76],[2,215],[0,24],[-1,159],[0,9],[-1,35],[0,86],[0,266],[0,21],[-2,141],[0,4],[0,26],[0,2],[-2,203],[1,54],[-2,146],[-1,34],[0,48],[-1,50],[0,48],[-1,150],[0,23],[0,85],[-1,123],[0,67],[-2,449],[0,40],[1,66],[0,44],[1,56],[0,71],[1,55],[-1,64],[0,8],[0,60],[1,85],[0,36],[0,46],[1,54],[0,27],[0,73],[0,32],[1,24],[-7,0],[-72,-1],[-25,1],[-30,0],[-18,0],[-74,0],[0,37],[1,26],[-1,22],[1,39],[1,27],[0,22],[1,29],[0,100],[1,81],[0,70],[0,3],[1,49],[0,33],[0,61],[1,37],[-1,126],[1,70],[1,83],[1,65],[1,53],[1,67],[0,21],[0,6],[0,33],[0,43],[0,67],[0,53],[0,36],[0,27],[0,61],[0,78],[1,47],[0,50],[0,45],[0,62],[0,26],[1,28],[0,29]],[[11038,56490],[1,-70],[0,-113],[0,-79],[4,-22],[-5,-23],[0,-26],[-1,-71],[0,-50],[-1,-41],[-1,-138],[1,-41],[0,-251],[0,-159],[0,-58],[0,-26],[0,-1],[-1,-123],[0,-35],[0,-35],[-1,-179],[-3,-47],[0,-93],[-1,-76],[-1,-72],[167,-2],[86,-2],[44,0],[19,0],[-1,-170],[0,-103],[-1,-169],[-1,-65],[-2,-291],[-1,-130],[0,-29],[3,-94],[0,-4],[0,-44],[-1,-20],[-1,-10],[-1,-67],[0,-33],[0,-9],[0,-64],[0,-24],[0,-82],[0,-26],[-1,-30],[0,-2],[-1,-76],[1,-3],[0,-15],[1,-13],[1,-211],[0,-57],[0,-1],[3,-625],[2,-56],[2,-142],[0,-8],[2,-210],[2,-184],[0,-59],[1,-99],[1,-68],[0,-87],[2,-163],[0,-47],[0,-13],[1,-13],[0,-51],[2,-230],[1,-77],[-1,-28],[0,-24],[0,-1],[-3,-151],[-1,-27],[-4,-239],[-1,-26],[-3,-107],[-1,-136],[0,-28],[-1,-62],[-1,-75],[-1,-71],[0,-76],[0,-96],[0,-17],[-1,-198],[-2,-100],[3,-41]],[[11342,49180],[-35,0],[-25,-1],[-94,0],[-94,0],[-58,0],[-17,0],[-30,0],[-59,1],[-67,0],[-61,0],[-17,0],[-87,-2],[-6,0],[-23,0],[-110,2],[-78,0],[-58,0],[-52,0],[-17,0],[-236,1],[-1,0],[-25,-1],[-95,-1],[-27,0],[-73,1],[-33,-1],[-30,-2],[-38,1],[-64,2],[-69,2],[-19,0],[-18,1],[-122,1],[-303,11],[-302,14],[-303,16],[-302,16],[-25,2],[-108,6],[-46,3],[-54,3],[-65,3],[-111,6],[-42,2],[-94,3],[-3,0],[-66,2],[-84,0],[-26,0],[-110,1],[-91,0],[-64,1],[-75,-1],[-2,0],[-70,1],[-20,0],[-153,0],[-90,0],[-64,1],[-233,0],[-71,0],[-118,1],[-189,0],[-130,1],[-116,0],[-64,0],[-48,-1],[-366,0],[-170,1],[-250,0],[-195,0],[-216,0],[-54,0],[-161,1],[-115,0],[-29,0],[-18,-1],[-16,-1],[-8,0],[-38,0],[-18,0],[-49,0],[-18,4],[-15,0],[-17,-4],[-20,0],[-21,0],[-21,0],[-26,0],[-21,0],[-2,0],[-19,3],[-22,1],[-2,0],[-18,0],[-21,0],[-21,-1],[-17,1],[-25,0],[-21,-1],[-17,1],[-35,1],[-18,-1],[-16,0],[-25,0],[-30,0],[-19,0],[-23,0],[-30,0],[-22,0],[-44,0],[-36,0],[-36,0],[-24,0],[-77,-1],[-44,0],[-60,1],[-25,0],[-21,0],[-41,0],[-37,0],[-80,-1],[-18,-1],[-40,-2],[-16,0],[-22,-1],[-16,3],[-19,0],[-29,-1],[-16,0],[-17,0],[-189,-1],[-76,-1],[-34,-1],[-15,0],[-28,0],[-35,0],[-21,0],[-30,0],[-42,-1],[-25,1],[-227,-3],[-20,-1],[-51,-1],[-33,0],[-26,0],[-87,-1],[-19,0],[-50,-1],[-14,0],[-3,0],[-27,0],[-10,0],[-11,0]],[[1806,49266],[10,42],[22,55],[24,48],[17,35],[3,7],[7,17],[4,11],[5,11],[0,11],[0,16],[-10,33],[-1,3],[-25,40],[-11,21],[-38,71],[-8,15],[-23,55],[-29,62],[-6,14],[-8,15],[0,3],[-14,56],[-1,47],[5,53],[1,9],[8,42],[1,1],[13,26],[78,55],[25,18],[37,21],[37,21],[27,20],[13,23],[12,27],[5,19],[31,153],[42,208],[9,48],[22,134],[0,1],[0,5],[-1,18],[-2,31],[-1,25],[-2,27],[-12,67],[-11,60],[-6,29],[-1,1],[-8,53],[-2,7],[-4,16],[-5,20],[-5,19],[-2,10],[-2,3],[-39,70],[-26,52],[-2,6],[-20,55],[-27,19],[-5,4],[-8,6],[-4,2],[-61,46],[-2,2],[-11,22],[-14,48],[-1,44],[-12,98],[0,23],[0,19],[-1,48],[6,29],[3,16],[3,15],[1,7],[1,1],[5,26],[1,8],[-3,13],[-2,9],[-7,31],[-3,12],[-4,15],[-8,43],[-7,104],[0,1],[0,6],[0,18],[1,22],[3,14],[2,8],[1,5],[6,20],[10,28],[8,27],[4,13],[4,18],[2,5],[4,12],[3,10],[7,19],[9,24],[8,22],[0,1],[9,27],[5,10],[10,25],[1,3],[4,13],[9,29],[1,2],[14,41],[7,22],[9,32],[-1,22],[-1,25],[-10,27],[-15,36],[-2,3],[-8,18],[0,1],[-2,5],[-1,2],[-19,23],[-3,4],[-16,21],[-23,27],[-26,30],[-26,26],[-28,27],[-16,13],[-6,5],[-13,11],[-38,33],[-33,23],[-31,19],[-9,6],[-19,11],[-22,14],[-10,6],[-13,8],[-24,20],[-26,25],[-31,31],[-35,43],[-22,29],[-21,32],[-20,34],[-10,20],[-4,7],[-2,5],[-3,6],[-3,7],[-7,16],[0,1],[-1,3],[-3,8],[-3,10],[0,1],[-2,7],[0,1],[-4,16],[-4,14],[0,2],[0,2],[-2,16],[-2,14],[0,5],[0,21],[1,13],[1,25],[1,21],[1,2],[3,14],[5,18],[0,1],[2,9],[10,23],[9,15],[1,2],[9,14],[1,1],[2,4],[5,7],[3,3],[11,14],[3,3],[12,13],[1,1],[4,5],[7,9],[1,1],[4,5],[3,9],[3,5],[3,7],[13,23],[11,23],[7,11],[12,21],[3,4],[9,12],[13,17],[17,16],[13,12],[1,1],[17,13],[37,27],[15,10],[25,15],[34,24],[13,9],[36,28],[19,14],[10,8],[20,15],[4,4],[14,15],[20,25],[27,28],[36,35],[33,35],[37,33],[11,10],[16,15],[28,20],[22,13],[1,1],[1,0],[4,3],[12,10],[5,5],[6,7],[7,11],[1,1],[1,2],[17,23],[15,15],[16,14],[7,4],[9,7],[16,13],[16,8],[18,9],[18,11],[27,26],[18,30],[7,12],[11,19],[6,9],[9,12],[16,24],[2,8],[0,2],[2,9],[8,35],[3,11],[-17,40],[-6,6],[-12,10],[-4,4],[-7,6],[-2,2],[-4,3],[-1,2],[-22,28],[-4,8],[-6,13],[-4,7],[-4,7],[0,1],[-2,7],[-1,6],[-6,27],[-3,17],[-3,26],[-3,22],[-1,2],[-5,31],[0,3],[-3,10],[-2,10],[-2,9],[-1,4],[-2,7],[0,5],[-1,17],[-2,16],[-1,7],[-2,4],[-4,19],[-1,6],[-7,36],[-1,6],[-1,5],[-2,10],[-3,4],[-2,1],[-7,9],[0,1],[-6,12],[-8,16],[-3,7],[-3,5],[0,2],[-4,10],[-1,2],[-3,10],[-1,3],[0,6],[-1,3],[-1,15],[-1,3],[0,5],[-1,9],[0,6],[-1,13],[0,2],[-4,22],[-1,3],[-1,3],[-9,15],[-3,4],[-10,18],[-3,4],[-13,20],[0,1],[-2,5],[-9,21],[-10,24],[-1,2],[-13,75],[-2,23],[1,82],[11,38],[2,58],[17,41],[14,32],[8,12],[0,1],[6,10],[0,1],[12,20],[4,10],[5,11],[0,4],[1,29],[1,11],[-12,18],[-7,6],[-34,32],[-18,18],[-3,3],[-24,22],[-8,8],[-67,64],[-15,14],[-28,52],[-1,3],[-9,98],[0,3],[0,2],[4,51],[2,31],[0,2],[0,8],[1,3],[0,3],[7,35],[1,6],[2,11],[2,9],[6,32],[0,4],[27,106],[11,17],[16,30],[1,0],[11,10],[50,40]],[[18659,49140],[0,-37],[0,-21],[0,-16],[0,-6],[2,-188],[1,-147],[1,-173],[0,-30],[0,-1],[0,-21],[1,-48],[1,-29],[-1,-25],[0,-33],[0,-11],[0,-17],[1,-25],[1,-40],[0,-26],[4,-325],[0,-58],[0,-71],[-1,-33],[0,-91],[0,-82],[-1,-12],[0,-12],[-1,-197],[-3,-170],[0,-153],[0,-77],[0,-28],[-1,-35],[0,-144],[1,-187],[0,-41],[0,-222],[0,-149],[-1,-36],[-1,-194],[0,-70],[1,-75],[0,-71],[-1,-155]],[[18662,45558],[-82,0],[-88,1],[-138,0],[-67,0],[-57,0],[-17,0],[-14,0],[-4,0],[-48,0],[-16,0],[-81,0],[-78,-2],[-33,0],[-94,-1],[-98,2],[-94,0],[-84,1],[-49,0],[-240,1],[-122,0],[-20,1],[-319,-1],[-64,0],[-77,1],[-154,0],[-310,0],[-49,2],[-250,-1],[-96,-1],[-18,-1],[-27,1],[-499,1],[-92,2],[-101,0],[-21,0],[-54,0],[-36,0],[-27,0],[-37,0],[-6,0],[-15,0],[-442,-1],[-279,-1],[-1,0],[-229,0],[-84,1],[-65,0],[-79,-1],[-314,3],[-206,0],[-52,-1],[-25,0],[-35,1],[-42,-1],[-33,1],[-20,-1],[-18,0],[-5,0],[-35,1],[-40,1],[-33,0],[-147,-1],[-36,3],[-89,0],[-309,1],[-57,0],[-86,0],[-25,0],[-95,0],[-180,1],[-165,2],[-150,-1],[-94,2],[-57,1]],[[11359,45574],[0,33],[-1,117],[1,62],[2,87],[-1,91],[0,61],[0,64],[2,176],[0,6],[0,54],[0,57],[-2,242],[0,68],[-1,58],[-2,139],[-4,49],[-1,138],[-4,168],[-3,70],[-2,45],[-1,27],[-2,203],[0,2],[0,25],[0,29],[1,24],[0,85],[0,4],[0,32],[0,79],[0,48],[0,84],[1,27],[-1,37],[0,107],[1,120],[1,70],[1,29],[0,195],[0,87],[-1,60],[0,153],[0,33],[-1,161],[0,100]],[[55205,52743],[1,-151],[0,-139],[2,-47],[0,-18],[0,-34],[1,-73],[2,-147],[-1,-298],[1,-30],[0,-114],[-1,-72],[0,-435],[0,-76],[1,-129],[0,-37],[0,-37],[2,-108],[-5,-98],[-3,-56],[0,-73],[0,-76],[0,-299],[-1,-449],[0,-149],[0,-67],[-3,-93],[1,-57],[0,-30],[0,-55],[0,-151],[0,-79],[0,-1],[0,-49],[1,-49],[0,-100],[1,-32],[-1,-30],[1,-269],[0,-1],[0,-3],[-2,-147],[-6,-311],[1,-45],[0,-24],[0,-84],[1,-62],[0,-222],[1,-300],[2,-321],[-1,-78],[0,-230],[-1,-154],[0,-1],[-1,-139],[3,-92],[2,-204],[0,-2],[2,-166],[2,-190],[0,-52],[1,-50],[-1,-146]],[[55207,45512],[-30,-1],[-59,0],[-77,-1],[-5,0],[-136,-1],[-86,4],[-17,0],[-119,-1],[-19,0],[-89,-1],[-9,0],[-23,-1],[-55,1],[-365,0],[-67,-1],[-103,-1],[-6,0],[-264,2],[-210,-1],[-60,1],[-41,1],[-152,12],[-288,20],[-93,0],[-339,8],[-21,-1],[-236,11],[-158,6],[-72,3],[-70,2],[-25,1],[-61,3],[-199,8],[-3,0],[-52,2],[-290,12],[-130,4],[-77,1],[-57,0],[-150,1],[-43,0],[-47,0],[-147,-1],[-35,0],[-113,-2],[-226,1],[-82,0],[-170,-1],[-82,-1],[-122,-1],[-149,-1],[-177,-1],[-1,0],[-54,-1],[-35,0],[-164,-1],[-85,-2],[-229,-2],[-10,0],[-11,0],[-29,-1],[-13,0],[-80,0],[-19,0],[-24,-1],[-33,0],[-16,0],[-78,0],[-94,-1],[-58,-1],[-160,-1],[-91,0],[-5,0],[-13,0],[-77,-1],[-108,-1],[-110,0],[-80,0],[-46,-1],[-52,0],[-94,-1],[-97,0],[-13,0],[-53,-1],[-44,0],[-23,0],[-72,0],[-33,0],[-18,-1],[-31,0],[-224,2],[-42,-1],[-51,0],[-6,0],[-9,0],[-23,2],[-20,-1],[-96,-1],[-18,1],[-31,-1],[-42,1],[-57,0],[-71,2],[-38,-1],[-18,0],[-22,0],[-56,1],[-13,0],[-111,0],[-2,0],[-122,0],[-220,1],[-82,0],[-23,0]],[[45851,45586],[-35,0],[-108,0],[-161,-2],[-150,-3],[-43,0],[-120,1],[-157,1],[-64,0],[-43,-1],[-39,-1],[-305,0],[-82,0],[-108,0],[-113,1],[-265,1],[-83,2],[-50,0],[-44,0],[-8,0],[-117,1],[-24,1],[-129,1],[-87,-1],[-2,0],[-63,1],[-79,0],[-45,1],[-23,0],[-154,0],[-147,2],[-157,3],[-173,2],[-57,-2],[-74,-3],[-223,-1],[-83,0],[-54,0],[-165,0],[-302,-1],[-84,1],[-110,1],[-4,0],[-102,1],[-27,0],[-5,0],[-32,0],[-19,0],[-34,1],[-37,0],[-67,-1],[-43,0],[-22,2],[-20,-1],[-7,0],[-15,1],[-51,-1],[-73,1],[-21,-1],[-24,0],[-19,-1],[-91,2],[-18,-1],[-30,0],[-27,-1],[-71,1],[-26,1],[-47,0],[-30,1],[-21,0],[-52,0],[-19,0],[-74,0],[-167,0],[-67,-2],[-138,1],[-98,1],[-42,0],[-98,1],[-34,0],[-131,-2],[-67,0],[-83,1],[-80,-1],[-73,-1],[-87,1],[-66,0],[-152,-2],[-86,0],[-87,-1],[-83,0]],[[38754,45591],[-1,66],[0,45],[0,190],[-5,149],[-1,100],[0,50],[-1,181],[2,420],[-1,145],[0,60],[-2,23],[-1,73],[0,56],[0,19],[0,189],[0,3],[0,33],[0,145],[0,10],[0,148],[1,302],[0,36],[1,109],[3,153],[1,76],[1,72],[0,33],[0,74],[1,34],[1,12],[0,22],[1,161],[0,45],[5,31],[1,4],[6,36],[1,24],[0,23],[0,27],[-1,38],[0,39],[1,83],[0,61],[0,25],[1,98],[0,85],[0,55],[1,23],[0,31],[1,28],[0,29],[2,94],[3,143],[0,27],[0,10],[1,160],[0,36],[0,32],[1,36],[0,6],[-1,37],[0,23],[-1,23],[-2,34],[-1,32],[0,21],[-1,42],[1,22],[-3,64],[-1,32],[-4,115],[-1,27],[-1,28],[-3,43],[-2,44],[-2,31],[-1,50],[-1,32],[0,4],[-2,35],[-1,50],[0,33],[0,40],[0,39],[0,1],[0,21],[-1,17],[0,21],[0,48],[0,6],[1,26],[0,16],[0,5],[0,23],[1,22],[1,96],[1,101],[2,201],[1,67],[1,53],[1,27],[0,38],[1,56],[2,57],[1,115],[0,34],[0,73],[0,38],[0,37],[2,33],[1,41],[1,46],[1,21],[0,4],[1,50],[1,47],[2,57],[0,35],[2,117],[0,61],[1,20],[1,97]],[[66270,49128],[-50,-1],[-49,0],[-37,0],[-29,0],[-105,0],[-36,0],[-16,0],[-24,0],[-117,2],[-88,2],[-101,1],[-114,1],[-36,0],[-55,2],[-41,0],[-62,0],[-266,4],[-247,3],[-73,0],[-457,8],[-45,0],[-29,1],[-42,0],[-179,0],[-11,1],[-26,0],[-312,2],[-74,1],[-56,1],[-147,-1],[-152,-1],[-190,-1],[-120,-1],[-335,-3],[0,24],[1,45],[2,244],[0,10],[-1,64],[1,66],[4,447],[1,153],[3,148],[0,107],[0,49],[1,28],[0,22],[-2,142],[1,103],[1,30],[-1,45],[0,28],[-4,50],[-216,2],[-35,-1],[-52,0],[-68,-1],[-8,0],[-39,1],[-24,0],[-50,2],[-23,0],[-41,-1],[-70,0],[-250,-1],[-69,0],[-190,-1],[-257,-1],[-2,0],[-46,0],[-366,-2],[-25,-1],[-27,-1],[-59,-2],[-47,0],[-17,0],[-20,0],[-98,3],[-239,-1],[-190,3],[-46,3],[-163,-4],[-78,-1],[-67,1],[-27,0],[-49,-2],[-200,0],[-257,0],[-3,0],[-282,-2],[-7,219],[0,1],[-2,67],[0,304],[-1,244],[0,52],[6,308],[5,295],[-1,59],[-3,236],[0,1]],[[38754,45591],[-1,-134],[-2,-97],[-1,-82],[-1,-293],[0,-110],[2,-94],[0,-92],[0,-25],[1,-22],[0,-100],[0,-22],[1,-181],[0,-95],[1,-147],[1,-132],[2,-136],[0,-27],[1,-2],[1,-101],[-1,-97],[-1,-95],[2,-302],[1,-142],[0,-2],[5,-155],[-1,-157],[0,-142],[1,-291],[0,-20],[-1,-16],[0,-36],[0,-44],[-2,-192],[-2,-268],[0,-101],[0,-263],[0,-303],[0,-145],[0,-2],[0,-156],[1,-99],[0,-81],[0,-9],[0,-104],[-5,-302]],[[38756,40175],[-183,-7],[-23,-1],[-96,-1],[-186,-3],[-116,-1],[-108,-5],[-189,-9],[-303,-1],[-24,-1],[-281,-7],[-304,-8],[-62,0],[-241,-1],[-90,1],[-251,1],[-100,0],[-172,1],[-43,-1],[-58,-1],[-35,0],[-170,-1],[-54,-1],[-209,-3],[-357,-2],[-36,0],[-486,-1],[-37,0],[-51,0],[-212,1],[-39,0],[-9,0],[-46,-1],[-84,-2],[-217,-2],[-166,2],[-43,0],[-17,0],[-11,0],[-43,1],[-50,0],[-13,0],[-12,0],[-91,1],[-67,1],[-80,0],[-25,0],[-94,1],[-192,1],[-30,0],[-26,0],[-12,0],[-16,0],[-16,0],[-10,0],[-46,-1],[-15,0],[-13,0],[-17,0],[-16,0],[-30,-1],[-29,0],[-35,1],[-30,1],[-2,0],[-14,-1],[-25,0],[-21,0],[-38,0],[-32,0],[-105,-1],[-46,0],[-137,0],[-32,0],[-3,0],[-131,1],[-47,0],[-26,1],[-80,1],[-26,0],[-32,-1],[-94,3],[-102,1],[-37,0],[-30,0],[-48,1],[-77,0],[-18,10],[0,135],[-1,154],[1,90],[0,2],[1,132],[1,130],[0,95],[2,279],[1,46],[0,550],[-1,185],[-48,0],[-79,2],[-481,3],[-305,2],[-153,-2],[-38,1],[-18,0],[-14,0],[-21,0],[-89,0],[-122,0],[-213,2],[-127,-1],[-100,0],[-18,0],[0,12],[0,40],[3,328],[2,42],[0,111],[-1,24],[-1,27],[0,49],[1,46],[0,27],[0,75],[1,37],[0,11],[0,14],[1,212],[0,124],[0,27],[0,27],[2,240],[1,214],[2,113]],[[29625,43746],[3,155],[0,74],[0,33],[-1,29],[1,263],[0,1],[4,38],[0,856],[0,60],[-1,195],[0,23],[6,80],[-4,186],[-1,61],[1,358],[0,143],[1,460],[6,176],[-1,197],[-2,246],[-3,580],[-2,309],[-1,216],[0,1],[-1,85],[-3,598]],[[69979,45475],[-21,0],[-88,3],[-40,1],[1,-51],[0,-7],[1,-53],[1,-28],[-1,-8],[11,-1],[0,-12],[0,-17],[-2,-42],[-1,-46],[-4,-142],[34,-1],[61,-4],[2,15],[45,-1],[-1,-26],[-1,-41],[-1,-25],[-3,-119],[-5,-172],[-2,-64],[-2,-74],[-1,-38],[-5,-121],[0,-28],[0,-33],[-4,-223],[-5,-158],[-1,-141],[0,-6],[0,-46],[0,-20],[-1,-30],[-2,-189],[0,-23]],[[69944,43504],[-41,2],[-33,-1],[-78,2],[-171,7],[-1,1],[-212,9],[-31,1],[-37,1],[-150,7],[-84,4],[-74,3],[-61,3],[-18,1],[-221,8],[-2,0],[-277,8],[-31,1],[-250,4],[-59,1],[-75,5],[-50,2],[-180,6],[-31,1],[-94,1],[-24,0],[-110,2],[-118,4],[-77,1],[-152,2],[-183,3],[-95,2],[-17,0],[-7,0],[-37,-1],[-108,5],[-151,2],[-58,0],[-108,0],[-2,0],[-97,1],[-4,0],[-49,0],[-97,2],[-11,0],[-73,1],[-62,0],[-68,1],[-34,0],[-34,-1],[-120,3],[-44,2],[-23,-1],[-26,-1],[-24,2],[-133,3],[-25,1],[-231,4],[-3,0],[-119,3],[-138,3],[-66,1],[-43,0],[-13,0],[-10,0],[-65,-2],[-63,1],[-64,0],[-188,-1]],[[64509,43623],[-1,30],[-1,25],[1,84],[-1,19],[-2,201],[0,1],[0,5],[-1,37],[5,156],[4,158],[1,28],[1,148],[0,9],[1,70],[0,4],[0,42],[2,234],[1,15],[0,38],[0,6],[-1,20],[1,15],[0,16],[0,97],[0,32],[0,30],[2,147],[1,79],[1,79],[-152,1],[-75,-3],[-79,0],[-307,-2],[-28,0],[-54,1],[-30,0],[-35,0],[-79,0],[-31,3],[-24,0],[-155,5],[-21,0],[-40,1],[-6,0],[-63,1],[-19,1],[-51,1],[-51,0],[-79,1],[-83,0],[-34,1],[-38,2],[-75,1],[-58,-1],[-69,0],[-250,3],[-66,1],[-131,1],[-39,1],[-115,-2],[-17,0],[-238,-4],[-95,2],[-216,4],[-153,3],[-153,2],[-85,-1],[-106,0],[-89,0],[-18,1],[-90,1],[-185,3],[-36,1],[-130,2],[-48,1],[-70,-3],[-55,-1],[-70,0],[-8,0],[-20,0],[-16,0],[-18,0],[-33,0],[-23,0],[-52,1],[-19,0],[-30,0],[-41,0],[-23,0],[-45,0],[-75,-1],[-126,-1],[-41,-2],[-54,1],[-252,0],[-65,1],[-86,0],[-108,1],[-60,1],[-61,0],[-75,1],[-78,0],[-7,0],[-65,0],[-276,5],[-46,-1],[-35,0],[-77,-1],[-24,0],[-279,1],[-271,0],[-71,1],[-18,0],[-127,1],[-222,3],[-28,1],[-357,2],[-328,3],[-268,2],[-17,2],[-299,3],[-107,2],[-204,2],[-320,4],[-55,2],[-215,2]],[[11359,45574],[0,-96],[0,-95],[0,-36],[0,-78],[2,-100],[0,-45],[0,-187],[0,-23],[0,-47],[0,-205],[0,-1],[0,-87],[1,-29],[0,-34],[1,-72],[1,-100],[-3,-34],[1,-24],[2,-38],[0,-178],[0,-303],[0,-47],[0,-43],[0,-42],[-1,-63],[0,-31],[0,-39],[-1,-184],[0,-91],[0,-1],[0,-57],[-1,-28],[-1,-80],[0,-50],[-2,-142],[0,-62],[0,-41],[-1,-152],[1,-45],[-83,-1],[-86,0],[-60,-1],[-26,0],[-48,0],[-123,0],[-179,1],[-53,1],[-32,0],[-73,2],[-18,-1],[-131,2],[-23,0],[-59,1],[-47,0],[-18,0],[-18,1],[-18,0],[-120,-1],[-115,1],[-16,0],[-22,0],[-153,2],[-28,-1],[-70,-1],[-35,-1],[-77,-1],[-36,0],[-24,0],[-137,2],[-113,1],[-68,3],[-63,2],[-108,3],[-85,3],[-41,1],[-23,1],[-3,0],[-38,2],[-254,9]],[[8634,42594],[-2,3],[-18,28],[-5,9],[-32,41],[-36,39],[-57,47],[-44,38],[-11,7],[-44,28],[-46,27],[-6,3],[-59,26],[-63,23],[-50,16],[-46,8],[-52,10],[-49,10],[-4,0],[-59,9],[-66,4],[-37,1],[-19,-1],[-90,-8],[-71,-4],[-38,-7],[-48,-8],[-11,-1],[-35,-1],[-38,-2],[-56,7],[-60,7],[-10,1],[-33,6],[-8,1],[-24,4],[-27,5],[-24,8],[-33,8],[-25,6],[-4,0],[-1,0],[-30,1],[-19,3],[-24,8],[-5,2],[-27,11],[-29,14],[-16,9],[-25,19],[-18,15],[-16,9],[-8,4],[-10,4],[-8,3],[-2,0],[-5,2],[-24,7],[-11,2],[-15,3],[-3,0],[-5,1],[-6,-1],[-4,-1],[-8,-3],[-5,-1],[-22,-12],[-17,-10],[-17,-10],[-19,-9],[-21,-8],[-17,-6],[-20,-1],[-24,-2],[-19,0],[-24,-1],[-12,-2],[-15,-2],[-3,-1],[-9,-1],[-6,-1],[-16,-2],[-1,0],[-33,-3],[-3,0],[-15,-1],[-16,0],[-21,2],[-20,5],[-16,8],[-27,10],[-10,3],[-28,9],[-37,12],[-16,5],[-34,8],[-17,5],[-17,7],[-16,7],[-2,1],[-14,7],[-11,4],[-5,2],[0,1],[-11,4],[-32,14],[-10,5],[-4,2],[-5,1],[-19,6],[-12,3],[-4,2],[-2,0],[-18,1],[-2,0],[-8,0],[-7,-1],[-5,-1],[-2,-1],[-12,-3],[-2,0],[-15,-7],[0,-1],[-14,-10],[-1,-1],[-1,-1],[-25,-11],[-30,-10],[-8,-2],[-12,-3],[-15,0],[-26,5],[-21,7],[-17,6],[-17,8],[-28,13],[-42,15],[-34,14],[-29,10],[-26,12],[-26,14],[-26,15],[-7,4],[-3,2],[-3,2],[-4,3],[0,1],[-3,3],[-13,13],[-3,3],[-1,1],[-8,6],[-6,5],[-14,10],[-18,12],[-2,1],[-4,3],[-3,0],[0,1],[-1,0],[-7,2],[-1,0],[-5,2],[-6,0],[-9,0],[-8,0],[-5,-1],[-2,0],[-4,-2],[-5,-1],[-20,-7],[-29,-11],[-21,-8],[-24,-12],[-60,-39],[-29,-20],[-1,-1],[-3,-2],[-22,-15],[-47,-33],[-17,-11],[-17,-6],[-20,-5],[-10,-1],[-5,1],[-12,1],[-8,1],[-19,4],[-16,6],[-2,1],[-12,6],[-14,9],[-7,6],[-10,9],[-2,3],[-9,12],[-3,11],[-2,5],[-5,16],[-1,5],[0,3],[0,2],[0,18],[2,7],[3,12],[4,11],[1,4],[1,3],[5,12],[9,25],[0,4],[3,16],[3,16],[0,1],[1,2],[0,3],[1,3],[0,3],[0,10],[-1,7],[0,3],[-1,12],[-2,6],[-2,10],[-1,3],[-1,1],[0,3],[-3,6],[-2,4],[-3,9],[-1,1],[-5,7],[-9,13],[-11,17],[-12,18],[-26,32],[-16,21],[-12,17],[-15,28],[-14,32],[-1,2],[-12,31],[-8,19],[-2,4],[-1,2],[-8,17],[-15,24],[-6,9],[-5,6],[-3,4],[-4,5],[-12,14],[-3,3],[-12,17],[-8,13],[-5,8],[-7,11],[-4,7],[-3,4],[-2,4],[-5,11],[-2,4],[-7,12],[-2,2],[-1,1],[-8,9],[-7,8],[-5,4],[-5,5],[-1,1],[-2,2],[-6,3],[-11,6],[-6,2],[-21,8],[-8,2],[-2,1],[-4,2],[-3,0],[-20,2],[-23,2],[-13,2],[-7,-9],[-6,-6],[-6,-4],[-9,-7],[-21,-36],[-18,-25],[-18,-10],[-29,-11],[-22,5],[-17,7],[-6,7],[-11,13],[-1,1],[-4,5],[-4,11],[0,2],[-2,7],[-4,15],[-1,7],[-2,7],[-1,2],[-2,6],[-8,25],[-2,7],[-28,13],[-2,1],[-25,15],[-23,14],[-27,32],[-11,11],[-32,28],[-13,8],[-6,4],[-2,1],[-13,4],[-16,4],[-3,0],[-9,0],[-8,0],[-27,-1],[-7,0],[-28,-4],[-17,-4],[-1,0],[-16,-4],[-22,-3],[-16,-2],[-25,5],[-19,9],[-5,2],[-16,9],[-11,7],[-11,8],[-8,8],[-13,16],[-16,18],[-6,13],[-3,6],[0,1],[-1,2],[-3,7],[-3,13],[-1,6],[-3,12],[-2,17],[0,12],[0,17],[3,25],[1,4],[8,30],[13,30],[1,3],[9,25],[2,5],[10,29],[1,8],[1,6],[1,13],[1,7],[0,21],[-1,22],[0,6],[0,31],[0,7],[0,10],[-6,28],[-8,30],[-7,29],[-3,13],[-49,66],[-20,28],[-20,28],[-20,28],[-19,26],[-25,35],[-113,63],[-61,20],[-45,31],[-139,71],[-79,59],[-56,51],[-15,20],[-31,39],[-59,63],[-67,69],[-51,77],[-60,74],[-40,53],[-66,67],[-57,63],[-17,14],[-23,17],[-20,15],[-8,7],[-1,1],[-3,2],[-2,2],[-3,2],[-7,6],[-22,30],[-2,4],[-9,7],[-72,61],[-40,37],[-27,25],[-24,22],[-7,7],[-59,57],[-42,40],[-94,96],[-15,13],[-20,18],[-32,32],[-19,20],[-39,25],[-28,18],[-40,34],[-108,51],[-53,26],[-15,4],[-17,4],[-20,9],[-7,2],[-6,3],[-23,9],[-91,63],[-116,92],[-28,22],[-10,7],[-8,4],[-16,8],[-42,21],[-29,15],[-43,21],[-169,82],[-52,47],[-43,39],[-27,24],[-24,21],[-4,7],[-19,27],[-3,3],[-5,7],[-14,19],[-15,20],[-8,11],[-8,11],[-2,4],[-16,37],[2,68],[0,10],[1,11],[0,5],[1,5],[5,38],[4,23],[0,1],[1,9],[0,1],[7,38],[7,38],[6,36],[5,29],[2,14],[17,50],[15,35],[14,35],[6,15],[11,25],[13,29],[20,31],[22,33],[23,33],[33,33],[15,17],[5,4],[9,9],[13,16],[4,5],[17,22],[19,23],[3,4],[11,14],[19,32],[5,10],[1,2],[10,26],[4,12],[1,1],[8,27],[8,25],[7,24],[3,19],[0,1],[4,24],[7,81],[3,36],[1,6],[0,9],[1,16],[6,61],[1,4],[15,64],[18,38],[4,7],[6,10],[23,31],[8,12],[20,31],[39,62],[5,15],[2,5],[2,26],[-3,16],[-4,20],[-3,29],[8,29],[44,76],[11,15],[12,19],[14,17],[17,27],[5,33],[-1,40],[0,39],[-4,26],[-5,28],[-10,46],[-9,37],[-6,26],[-8,35],[-5,39],[-5,33],[-4,39],[1,26],[-1,10],[-2,12],[0,4],[0,14],[-1,17],[0,17],[1,27]],[[29625,43746],[-152,1],[-2,0],[-152,1],[-161,1],[-102,1],[-2,0],[-42,0],[-56,-1],[-98,-1],[-159,-1],[-70,-1],[-76,5],[-100,-2],[-50,0],[-94,1],[-43,-1],[-38,0],[-173,-3],[-28,1],[-97,1],[-140,2],[-49,-3],[-168,-1],[-85,0],[-125,0],[-178,-1],[-203,-2],[-102,-2],[-87,0],[-64,3],[-78,-1],[-88,8],[-80,0],[-182,1],[-34,1],[-101,1],[-205,3]],[[25961,43757],[-43,0],[-61,0],[-21,1],[-28,0],[-141,-1],[-89,1],[-187,0],[-202,0],[-24,0],[-3,0],[-119,1],[-113,0],[-172,0],[-16,0],[-54,0],[-103,-2],[-120,-2],[-29,-1],[-79,0],[-33,0],[-42,-1],[-102,1],[-43,-1],[-85,-2],[-8,0],[-55,-2],[-68,-2],[-88,-2],[-124,-2],[-26,-1],[-153,-2],[-81,-1],[-17,0],[-54,0],[-88,-2],[-81,-1],[-48,0],[-83,-1],[-29,0],[-206,-1],[-21,0],[-16,0],[-20,-2],[-93,1],[-49,3],[-55,0],[-38,0],[-17,-1],[-17,0],[-30,0],[-25,0],[-29,0],[-28,0],[-59,2],[-29,0],[-26,0],[-27,0],[-24,0],[-109,0],[-126,1],[-107,1],[-54,0],[-54,1],[-38,-1],[-43,5],[-141,-3],[-15,0],[-143,-1],[-2,0],[-71,0],[-157,-1],[-249,1],[-82,2],[-59,0],[-135,-2],[-168,1]],[[20487,43741],[-198,1],[-31,0],[-30,0],[-128,0],[-64,2],[-216,2],[-246,1],[-66,0],[-103,-1],[-365,3],[-93,1],[-62,0],[-222,0]],[[18663,43750],[-2,548],[-2,41],[1,172],[0,216],[0,74],[1,375],[1,79],[1,11],[-1,292]],[[55207,45512],[1,-320],[1,-50],[0,-63],[0,-2],[1,-70],[0,-67],[0,-1],[0,-74],[2,-313],[0,-140],[0,-73],[-1,-60],[-1,-104],[-1,-77],[-1,-124],[0,-25],[0,-110],[1,-54],[0,-41],[0,-12],[1,-85],[0,-6],[2,-177],[2,-117],[3,-175],[0,-169],[-4,-51],[-5,-191],[-1,-38],[4,-172],[0,-32],[2,-163],[0,-155],[0,-4],[0,-308],[0,-65],[0,-83],[0,-132],[-1,-200],[0,-26],[0,-60],[-1,-157],[-1,-99],[0,-50],[-1,-238],[-1,-304],[0,-44],[0,-1],[-1,-223],[-1,-67],[0,-23],[1,-92],[-1,-174],[0,-55],[0,-52],[0,-1],[-1,-298],[-1,-150],[0,-4],[0,-90],[-2,-59],[-3,-166],[-1,-275],[0,-26],[0,-121],[-1,-89],[0,-64],[0,-104],[-1,-72],[0,-159],[-1,-152],[-1,-209],[0,-59],[0,-1],[0,-87],[-1,-249],[-1,-74],[-1,-184],[0,-1],[0,-28],[0,-87],[-1,-256],[0,-44],[-1,-91],[0,-134]],[[55189,36410],[-330,3],[-49,1],[-117,2],[-287,4],[-17,0],[-16,-3],[-47,1],[-78,-1],[-74,0],[-70,-1],[-129,-1],[-32,0],[-110,-1],[-313,2],[-160,0],[-106,1],[-175,1],[-65,0],[-43,0],[-44,0],[-150,-3],[-56,0],[-99,1],[-170,1],[-64,0],[-238,2],[-119,-1],[-141,-2],[-60,-1],[-236,3],[-128,-1],[-106,-2],[-44,1],[-63,2],[-21,0],[-158,2],[-30,1],[-32,0],[-306,6],[-22,2],[-8,0],[-71,5],[-282,7],[-308,4],[-18,1],[-27,2],[-172,-2],[-58,2],[-98,7],[-71,0]],[[49571,36455],[-37,1],[-88,1],[-284,3],[-265,7],[-59,1],[-1,0],[-44,3],[-129,1],[-149,3],[-79,1],[-55,1],[-17,1],[-18,0],[-289,5],[-117,4],[-6,0],[-32,1],[-105,3],[-20,1],[-98,3],[-20,1]],[[47659,36496],[1,40],[2,109],[1,77],[0,76],[2,153],[0,38],[0,1],[1,101],[-2,308],[-1,146],[0,157],[-2,150],[0,148],[1,138],[0,88],[1,102],[0,29],[0,22],[-1,57],[1,72],[0,127],[0,23],[0,35],[0,24],[0,37],[0,56],[0,74],[0,46],[0,25],[0,24],[0,21],[1,36],[0,64],[-2,42],[-5,274],[-1,44],[-1,42],[-1,62],[-3,201],[-1,95],[-2,93],[0,57],[-1,21],[-2,85],[0,45],[-2,295],[0,73],[-4,76],[-1,28],[-1,25],[0,35],[-1,34],[0,39],[1,48],[-1,174],[-1,78],[-2,302],[-3,261],[0,38],[2,74],[0,132],[2,101],[-258,4],[-46,0],[-51,1],[-117,0],[-136,0],[-153,0],[-153,-2],[-83,0],[-74,0],[-5,0],[-36,0],[-106,-1],[-1,0],[-116,1],[-188,1],[-97,1],[-56,0],[-99,1],[0,51],[-2,101],[0,148],[0,158],[0,144],[0,278],[0,22],[-2,45],[-2,105],[-1,86],[0,6],[-2,121],[-1,51],[-1,35],[0,153],[1,142],[0,161],[0,32],[0,36],[0,22],[-1,118],[-1,92],[0,62],[-2,158],[1,32],[-2,49],[1,213],[0,91],[0,73],[2,151],[0,57],[0,38],[1,31],[1,24],[-1,100],[0,24],[-1,100],[3,159],[1,102],[0,35]],[[47659,36496],[-24,1],[-16,0],[-20,1],[-93,2],[-43,0],[-108,3],[-42,1],[-34,1],[-80,2],[-39,0],[-109,4],[-156,3],[-41,0],[-107,2],[-151,1],[-48,1],[-104,3],[-49,2],[-85,1],[-64,0],[-34,2],[-128,0],[-18,1],[-112,1],[-56,1],[-27,0],[-74,1],[-132,2],[-21,0],[-22,0],[-46,1],[-54,0],[-29,0],[-102,-3],[-53,0],[-34,0],[-55,2],[-32,0],[-17,0],[-52,-1],[-66,0],[-35,1],[-17,0],[-17,1],[-10,0],[-20,0]],[[44983,36533],[-5,0],[-22,1],[-24,1],[-123,-2],[-76,-4],[-75,2],[-223,-1],[-83,0],[-168,-3],[-22,0],[-53,1],[-21,-1],[-216,-4],[-89,-1],[-120,-1],[-94,-1],[-53,1],[-2,0],[-244,0],[-168,1],[-144,-1],[-1,0],[-115,-1],[-31,1],[-19,0],[-70,1],[-75,2],[-156,-1],[-76,0],[-114,0],[-160,0],[-28,0],[-41,1],[-75,0],[-151,0],[-83,1],[-132,1],[-23,1],[-2,1],[-123,1],[-22,-3],[-11,-1],[-42,0],[-1,0],[-311,0],[-196,-2],[-80,-1],[-29,-1],[-17,0],[-154,3],[-66,1],[-41,0],[-45,-2],[-249,2],[-290,-1],[-180,-12],[-44,0],[-61,1],[-64,0],[-189,1],[-574,5]],[[38817,36519],[-54,0],[-40,1],[4,21],[1,3],[1,72],[-2,100],[0,7],[-1,33],[0,36],[1,44],[0,41],[0,31],[0,67],[0,145],[3,298],[0,74],[1,285],[0,9],[2,60],[2,62],[2,40],[3,70],[-2,263],[0,60],[0,21],[2,217],[0,33],[0,52],[1,30],[0,78],[0,1],[0,179],[1,22],[4,124],[1,44],[3,118],[-3,111],[-2,73],[-1,28],[-3,85],[0,6],[2,61],[0,4],[2,81],[3,143],[5,189],[3,134]],[[77212,44741],[1,-42],[0,-25],[0,-2],[-2,-43],[-1,-26],[0,-26],[-1,-50],[-1,-31],[-2,-76],[-2,-80],[-1,-54],[-2,-92],[-3,-150],[-2,-150],[-1,-39],[-1,-15],[-1,-37],[-4,-210],[0,-134],[-1,-22],[0,-150],[-1,-151],[0,-33],[-1,-54],[-1,-64],[-2,-114],[-4,-189],[-1,-16],[-2,-191],[-1,-96],[0,-56],[-1,-257],[2,-173],[0,-96],[1,-23],[-2,-33],[-2,-264],[0,-51],[0,-101],[-2,-147],[2,-156],[0,-102],[1,-44],[-1,-117],[0,-136],[0,-53],[-1,-302],[-1,-44],[0,-82],[-1,-30],[-1,-147],[1,-199],[0,-3],[0,-21],[0,-51],[0,-150],[0,-87],[0,-11],[-2,-86],[-1,-22],[1,-47],[-1,-80],[0,-65],[-1,-91],[1,-61],[-1,-38],[-1,-47],[0,-106],[-2,-48],[-2,-305],[-2,-148],[-1,-81],[0,-20],[0,-49]],[[77158,38149],[-46,0],[-107,0],[-151,1],[-47,2],[-270,2],[-39,0],[-237,1],[-19,0],[-130,0],[-1,0],[-42,0],[-18,0],[-111,0],[-72,0],[-36,1],[-47,0],[-72,1],[-76,-1],[-68,1],[-51,0],[-175,1],[-15,0],[0,-130],[0,-21],[-4,-152],[0,-61],[-1,-67],[0,-99],[-1,-75],[0,-153],[-1,-160],[0,-38],[0,-67],[0,-22],[0,-18],[0,-104],[0,-17],[0,-48],[0,-60],[0,-7],[1,-215],[0,-100],[0,-81],[0,-118],[-92,0],[-61,0],[-63,-1],[-114,0],[-15,0],[-118,0],[-75,0],[-18,-1],[-172,0],[-89,1],[-101,0],[-54,1],[-169,2],[-83,1],[-184,2],[-41,0],[-47,0],[-31,0],[-75,1],[-85,3],[-37,0],[-30,0],[-7,0],[-39,1],[-37,0],[-40,0],[-72,1],[-32,0],[-74,1],[-41,0],[-36,0],[-76,0],[-12,0],[-83,-1],[-34,0]],[[72985,36356],[-12,0],[-97,1],[-146,-1],[-51,0],[-28,0],[-79,1],[-70,1],[-137,1],[-95,0],[-47,0],[-24,0],[-97,0],[-30,0],[-27,0],[-80,2],[-96,0],[-55,0],[-61,-1],[-8,0],[-79,-1],[-44,0],[-151,3],[-146,3],[-142,4],[-146,3],[-135,3],[-26,1],[-140,2]],[[70736,36378],[6,166],[3,131],[3,152],[3,152],[7,272],[1,23],[0,53],[0,24],[1,73],[1,87],[1,60],[-1,25],[-5,125],[-15,122],[-3,25],[-2,50],[1,6],[2,23],[0,25],[-1,28],[0,30],[1,32],[0,38],[0,2],[2,69],[16,0],[0,172],[-1,276],[-1,21],[0,18],[0,12],[-1,24],[0,25],[0,20],[0,27],[-1,154],[-1,91],[-1,56],[0,3],[0,34],[3,39],[0,103],[0,54],[0,36],[0,35],[0,129],[0,22],[2,61],[0,69],[0,21],[1,23],[5,126],[1,156],[1,168],[1,134],[0,180],[0,123],[-3,166],[0,136],[0,33],[7,177],[-3,91],[2,168],[1,102],[-1,69],[0,39],[0,11],[3,176],[1,23],[-1,40],[0,67],[1,35],[-3,131],[0,39],[5,457],[-6,55],[1,39],[0,116],[-1,133],[1,109],[0,60],[8,239],[-2,33],[-1,23],[-5,87],[0,22],[-1,28],[0,23],[-2,35],[-22,-2],[-28,-1],[-37,-1],[-32,-1],[-15,-1],[-27,0],[-278,-11],[-16,0],[-19,-1],[-55,-4],[-257,-17],[-36,-2]],[[18663,43750],[-229,1],[-28,0],[-434,0],[-16,1],[-51,1],[-46,0],[-35,0],[-35,0],[-35,-2],[-188,-1],[-282,-1],[-30,0],[-96,0],[-195,0],[-133,0],[-100,0],[-1,0],[-275,0],[-297,1],[-72,0],[-174,-1],[-106,1],[-41,0],[-14,0],[-65,-1],[-139,0],[-30,0],[-43,0],[-16,0],[-151,-1],[-31,2],[-268,1],[-43,0],[-295,-1],[-290,0],[-68,0],[-381,0],[-218,0],[-102,1],[-198,0],[-19,0],[-45,3],[-18,-16],[-89,-73],[-23,-11],[-8,-4],[-23,-2],[-31,-1],[-37,-3],[-25,-2],[-40,-18],[-2,-1],[-3,-3],[-67,-61],[-26,-24],[-10,-35],[-9,-49],[-13,-56],[-1,-2],[-8,-22],[-10,-30],[-12,-60],[-11,-44],[-8,-19],[-28,-62],[-28,-49],[-3,-5],[-16,-26],[-7,-32],[1,-28],[16,-44],[9,-61],[-6,-111],[-1,-70],[-1,-10],[0,-2],[-12,-51],[-17,-55],[-7,-12],[-16,-32],[-6,-11],[-32,-55],[-22,-45],[-24,-83],[1,-49],[1,-22],[10,-31],[14,-24],[2,-4],[26,-59],[9,-18],[2,-68],[2,-53],[1,-6],[-2,-7],[-3,-18],[-5,-17],[-11,-31],[-11,-18],[-27,-66],[-36,-83],[-5,-19],[-6,-21],[-5,-19],[-7,-35],[-5,-36],[-9,-42],[-13,-28],[-5,-12],[-7,-12],[-11,-21],[-13,-17],[-11,-27],[2,-33],[-3,-25],[-12,-47],[-12,-37],[-16,-41],[-8,-34],[-1,-25],[0,-27],[0,-11],[-6,-18],[-5,-13],[0,-25],[2,-23],[1,-14],[5,-37],[1,-5],[5,-27],[-1,-29],[-11,-27],[-2,-4],[-13,-31],[-3,-7],[-15,-32],[-17,-30],[-11,-20],[-8,-26],[-6,-17],[-7,-24],[-1,-2],[-15,-41],[-11,-33],[-3,-8],[-14,-42],[-18,-47],[-14,-40],[-8,-28],[-2,-7],[-9,-24],[-9,-25],[-19,-36],[-9,-19],[-8,-28],[-7,-13],[-4,-8],[-1,-2],[-2,-3],[-1,-2],[-16,-18],[-18,-15],[-12,-12],[-13,-18],[-13,-27],[-7,-26],[-3,-14],[-1,-3],[-5,-36],[-6,-40],[-4,-22],[3,-35],[14,-44],[14,-39],[4,-15],[2,-11],[-6,-36],[0,-4],[-27,-30],[-11,-7],[-5,-3],[-1,-3],[-7,-25],[-1,-12],[-6,-43],[1,-24],[4,-21],[3,-16]],[[12137,39815],[-24,15],[-32,16],[-40,15],[-3,1],[-2,0],[-26,11],[-26,9],[-20,7],[-36,12],[-21,5],[-43,11],[-43,10],[-15,3],[-24,6],[-31,9],[-29,7],[-10,5],[-12,6],[-23,16],[-18,17],[-9,9],[-12,12],[-21,21],[-16,19],[-30,33],[-18,13],[-20,13],[-5,2],[-18,6],[-130,32],[-7,2],[-58,12],[-22,5],[-36,6],[-1,0],[-178,27],[-48,8],[-81,12],[-18,4],[-43,11],[-57,14],[-46,13],[-58,17],[-42,12],[-34,9],[-107,31],[-17,5],[-51,14],[-23,7],[-172,56],[-22,8],[-12,4],[-75,24],[-17,6],[-18,8],[-12,5],[-59,26],[-148,85],[-24,20],[-21,19],[-52,64],[-32,46],[-6,8],[-2,2],[-31,44],[-15,22],[-28,32],[-37,35],[-16,13],[-10,8],[-23,12],[-22,11],[-36,19],[-33,19],[-46,28],[-42,28],[-41,30],[-34,26],[-45,39],[-20,16],[-33,29],[-42,36],[-22,22],[-32,31],[-30,32],[-29,34],[-28,35],[-28,34],[-45,58],[-5,8],[-15,24],[-31,48],[-17,29],[-31,55],[-14,26],[-22,47],[-6,11],[-19,42],[-6,11],[-3,7],[-2,6],[-4,17],[-6,46],[0,72],[2,55],[6,77],[0,64],[-5,23],[-3,16],[-1,6],[-7,24],[-33,48],[-6,8],[-28,41],[-43,89],[-2,7],[-7,22],[-12,48],[-11,57],[-10,35],[-7,23],[-31,63]],[[64509,43623],[-141,-2],[-17,0],[-128,3],[-206,0],[-354,-1],[-94,0],[-108,0],[-41,2],[-73,1],[-300,-2],[-25,1],[-70,1],[-128,-2],[-86,0],[-16,0],[-60,1],[-61,-1],[-60,0],[0,-103],[0,-75],[-2,-74],[1,-1],[0,-39],[-1,-33],[0,-76],[0,-30],[0,-48],[0,-227],[1,-281],[0,-93],[0,-22],[0,-129],[0,-1],[0,-152],[0,-183],[0,-60],[0,-55],[-1,-152],[0,-49],[0,-73],[1,-113],[1,-171],[0,-22],[-1,-285],[2,-322],[1,-84],[1,-267],[0,-36],[-1,-95],[3,-48],[-1,-35],[-1,-73],[-1,-13],[0,-37],[-2,-59],[-1,-284],[0,-3],[1,-23],[-1,-27],[0,-38],[0,-27],[0,-28],[1,-9],[0,-50],[1,-37],[-1,-3],[0,-24],[0,-30],[0,-5],[0,-16],[0,-34],[-1,-23],[0,-29],[0,-24],[0,-24],[0,-25],[0,-30],[0,-25],[1,-23],[0,-25],[-1,-23],[-2,-92],[-2,-116],[-3,-89],[-1,-151],[-3,-150],[-1,-71],[0,-39],[-1,-34],[-4,-157],[-1,-37],[-2,-111],[-1,-36],[0,-25],[-2,-56],[-1,-31],[-1,-7],[-2,-121],[-1,-106],[-2,-42],[-1,-40],[-1,-177],[0,-29],[-1,-40],[0,-1],[0,-47],[1,-79],[-2,-103],[-1,-31],[-3,-89],[-1,-1],[0,-15],[-3,-340],[-1,-37],[0,-75],[-1,-40],[-1,-99]],[[62495,36405],[-2,0],[-127,2],[-27,0],[-39,0],[-78,0],[-45,0],[-66,0],[-21,0],[-127,-1],[-17,0],[-40,-1],[-29,0],[-23,0],[-55,-2],[-29,-1],[-37,-1],[-20,0],[-66,-1],[-11,-1],[-10,0],[-20,0],[-77,-2],[-49,-1],[-22,0],[-33,-1],[-18,0],[-43,0],[-48,-1],[-32,0],[-15,1],[-62,-1],[-17,0],[-27,0],[-28,-1],[-19,0],[-53,-1],[-18,-2],[-60,0],[-19,0],[-39,1],[-102,-1],[-17,1],[-17,1],[-32,-1],[-4,-1],[-18,0],[-27,0],[-20,1],[-17,0],[-37,0],[-38,0],[-63,0],[-78,0],[-15,0],[-74,0],[-20,0],[-65,0]],[[60283,36391],[-218,-1],[-89,-1],[-40,0],[-262,0],[-118,1],[-98,0],[-233,1],[-38,0],[-37,2],[-19,0],[-104,0],[-178,1],[-79,0],[-52,1],[-116,0],[-37,0],[-99,0],[-19,1],[-205,1],[-91,1],[-138,1],[-237,2],[-30,-4],[-118,0],[-20,0],[-25,0],[-108,0],[-51,0],[-317,0],[-95,0],[-333,0],[-44,1],[-69,1],[-43,0],[-66,-1],[-42,0],[-109,0],[-45,-1],[-172,5],[-83,1],[-28,0],[-96,1],[-70,1],[-157,1],[-157,1],[-309,3]],[[80502,38156],[-45,0],[-113,0],[-38,-1],[-88,1],[-151,1],[-76,0],[-79,0],[-305,-1],[-256,-1],[-13,0],[-35,0],[-20,0],[-181,1],[-29,0],[-79,0],[-304,1],[-213,-2],[-21,0],[-56,-1],[-16,0],[-23,0],[-52,0],[-74,-1],[-157,-2],[-19,0],[-148,-1],[-137,0],[-154,0],[-152,1],[-77,-2],[-20,0],[-18,-1],[-24,0],[-165,1],[-6,0]],[[77609,45421],[71,0],[2,0],[50,-1],[16,0],[26,0],[43,0],[17,0],[36,-1],[23,-1],[26,0],[52,-1],[32,-1],[56,-1],[39,-1],[26,0],[21,-1],[79,-1],[22,-1],[32,0],[46,-1],[27,0],[21,-1],[20,0],[21,-1],[53,-1],[19,0],[23,-2],[8,0],[68,-2],[154,-2],[61,-2],[50,-1],[22,0],[20,-1],[36,0],[36,-1],[57,-1],[21,0],[22,0],[27,-1],[28,0],[48,0],[106,-1],[26,0],[20,0],[29,-1],[57,0],[15,0],[22,0],[21,0],[41,-1],[30,0],[28,0],[70,-1],[22,0],[28,0],[18,-1],[29,0],[27,0],[50,0],[59,0],[56,-1],[19,0],[20,0],[32,0],[121,0],[66,-1],[21,1],[66,0],[45,0],[73,-1],[66,-1],[56,0],[55,0],[30,0],[19,0],[21,0],[33,0],[4,0],[20,0],[38,-1],[36,-1],[35,0],[53,0],[19,-1],[42,0],[23,0],[44,0],[31,0],[21,0],[42,0],[111,-1],[66,1],[47,1],[19,0],[20,0],[27,1],[29,0],[24,0],[1,0],[56,1],[15,1],[31,0],[65,2],[17,1],[27,1],[8,0],[77,0],[31,0],[51,0],[61,1],[58,1],[34,0],[36,0],[39,0],[43,0],[30,0],[15,0],[30,0],[34,0],[47,-2],[32,0],[21,0],[19,0],[25,0],[29,0],[1,0],[49,0],[43,0],[41,-1],[114,0],[115,0],[105,0],[51,0],[53,1],[30,0],[27,0],[20,0],[20,0],[32,1]],[[20487,43741],[1,-269],[0,-35],[0,-2],[0,-38],[0,-40],[0,-2],[1,-203],[-1,-28],[0,-55],[1,-102],[-1,-38],[-5,-32],[5,-23],[0,-34],[-3,-27],[1,-21],[1,-23],[1,-26],[0,-23],[0,-26],[0,-42],[-1,-48],[0,-27],[0,-44],[1,-29],[-1,-56],[-1,-38],[0,-25],[0,-25],[0,-31],[0,-29],[1,-42],[0,-39],[0,-21],[0,-37],[3,-91],[0,-59],[0,-75],[-1,-215],[0,-25],[0,-28],[0,-6],[-1,-56],[0,-130],[0,-80],[-2,-125],[1,-104],[0,-81],[0,-116],[0,-35],[0,-102],[-1,-105],[0,-29],[-1,-53],[0,-175],[0,-83],[0,-43],[1,-16],[0,-46],[1,-62],[1,-46],[0,-24],[0,-29],[0,-289],[-3,-274],[0,-35],[0,-84],[0,-49],[0,-7],[0,-38],[4,-162],[0,-42],[3,-43],[0,-31],[-1,-97],[0,-70],[0,-46],[-1,-144],[-1,-181],[0,-229],[-1,-103],[0,-23],[-2,-526],[-6,-201],[0,-36],[2,-112],[3,-149],[-1,-54],[0,-119],[-1,-351],[-3,-83],[-3,-67],[-37,0],[-10,-26],[-28,8],[-26,18],[-14,-13],[12,-12],[-2,-22],[-20,-8],[-12,-23],[6,-13],[6,-14],[3,-1],[17,-5],[27,3],[10,-19],[-14,-16],[-17,0],[-21,2],[-22,-10],[-8,-24],[1,-37],[5,-34],[-46,-22],[-17,-1],[-15,6],[-32,1],[-27,-16],[-23,-12],[-14,-16],[-12,14],[0,22],[-12,-14],[-14,-32],[-2,-29],[-18,-27],[-8,-21],[-11,-28],[-6,-33],[-22,-16],[-23,7],[-19,2],[-24,-3],[-22,-1],[10,-16],[13,-20],[-29,5],[-49,-6],[-16,-13],[6,-20],[25,-11],[-14,-13],[-16,5],[-35,9],[-18,-9],[-13,-31],[-15,12],[-2,45],[-10,22],[-19,-5],[-14,-25],[-29,-8],[-15,6],[-16,11],[-23,0],[-5,-26],[15,-4],[11,-15],[5,-24],[-16,-12],[-21,-1],[-19,-14],[-8,-27],[-23,10],[-7,32],[-21,13],[-18,-9],[-12,-27],[-20,-17],[-16,-3],[-10,23],[-9,21],[-8,-18],[-1,-30],[-8,-19],[-22,-5],[-17,-10],[-20,-24],[-32,-29],[-10,-32],[2,-24],[-7,-28],[-14,-40],[0,-24],[-19,-38],[-26,-19],[-21,-1],[-19,-8],[11,-21],[15,-21],[18,-16],[26,-19],[1,-26],[19,-22],[23,-5],[2,0],[17,-21],[-8,-27],[16,-13],[-4,-22],[6,-23],[10,-21],[14,-14],[-7,-20],[3,-23],[14,-18],[-1,-25],[-21,-6],[-12,-17],[3,-13],[2,-11],[-10,-15],[-1,-3],[-15,-7],[-41,-7],[-18,-13],[-11,-38],[-12,-15],[-15,-11],[-14,-11],[-18,-20],[-18,-5],[-24,0],[-18,-23],[4,-33],[8,-24],[0,-24],[0,-24],[17,-16],[37,-6],[24,-21],[4,-25],[0,-23],[16,-3],[33,10],[17,10],[2,-21],[16,7],[23,0],[16,6],[21,-6],[21,-7],[-1,-31],[7,-19],[9,-18],[17,-2],[17,1],[14,-10],[3,-22],[21,19],[14,-10],[-5,-25],[-13,-16],[-2,-24],[17,-6],[22,-9],[-13,-22],[12,-15],[13,15],[17,10],[10,-15],[15,-16],[28,-13],[39,-4],[10,4],[4,2],[13,15],[16,5],[11,-17],[-5,-24],[16,-10],[9,-23],[17,4],[8,24],[17,10],[20,3],[-3,-21],[-23,-28],[20,-14],[18,10],[16,-16],[14,12],[12,-20],[18,4],[10,-22],[31,-35],[13,-18],[23,-1],[10,-32],[15,-18],[8,-20],[-2,-14],[-2,-10],[1,-21],[4,-22],[4,-34],[7,-48],[15,-17],[17,-6],[29,-18],[12,-19],[6,-36],[6,-20],[16,-22],[14,-25],[8,-18],[11,-16],[4,-20],[-9,-17],[-13,-27],[-13,-24],[2,-31],[-19,-13],[12,-22],[1,-25],[6,-25],[11,-20],[16,-18],[15,-19],[9,-19],[-7,-28],[-10,-22],[2,-15],[3,-18],[0,-1],[13,-14],[26,-16],[18,-13],[9,-23],[26,-11],[23,3],[20,-12],[-7,-19],[-14,-18],[18,-11],[18,-8],[23,-20],[17,-8],[1,-27],[9,-19],[12,-20],[-9,-18],[-9,-32],[-14,-19],[-2,-25],[-4,-24],[-16,6],[-16,-4],[-10,-32],[-12,-16],[-11,-15],[5,-33],[-15,-19],[-8,-22],[-3,-25],[-9,-25],[1,-1],[12,-23],[-10,-31],[15,-7],[4,-2],[21,9],[2,-27],[-8,-3],[-8,-3],[-17,2],[7,-25],[-21,-3],[-7,3],[-8,3],[-15,-9],[-17,-9],[-20,-17],[-19,-15],[-9,-34],[0,-21],[0,-2],[-1,-25],[-5,-26],[-9,-23],[-26,-24],[-26,-17],[-17,-10],[-20,-21],[-2,-3],[-29,-43],[-4,-28],[-3,-26],[9,-26],[-1,-34],[-2,-11],[-2,-10],[-2,-24],[-4,-25],[-24,-23],[-45,-3],[-25,-15],[-10,-18],[-11,-31],[-10,-29],[-12,-17],[-18,-18],[-8,-7],[-13,-10],[-5,-23],[4,-19],[0,-4],[0,-26],[-2,-27],[-5,-20],[8,-34],[21,-14],[12,-13],[16,-8],[15,-15],[23,-13],[16,-20],[13,-19],[24,-18],[36,-17],[46,-31],[-9,-25],[-17,-22],[-10,-17],[-1,-3],[-7,-18]],[[20037,31874],[-23,4],[-47,4],[-53,10],[-54,10],[-38,5],[-27,0],[-75,0],[-18,5],[-21,5],[-15,8],[-64,37],[-63,38],[-54,40],[-30,34],[-4,7],[-22,39],[-1,3],[-13,31],[-22,53],[-1,1],[-26,47],[-7,11],[-18,27],[-32,38],[0,1],[-48,40],[-17,12],[-56,36],[-64,29],[-18,7],[-45,16],[-20,10],[-6,4],[-30,18],[-4,3],[-5,4],[-17,16],[-5,5],[-25,35],[-19,21],[-13,14],[-38,38],[-19,14],[-15,9],[-16,8],[-22,-1],[-16,-6],[-25,-13],[-20,2],[-26,11],[-22,16],[-14,18],[-26,46],[-21,24],[-18,19],[-23,21],[-18,12],[-17,12],[-38,58],[-23,53],[-42,100],[-6,33],[-16,39],[-26,40],[-24,29],[-14,14],[-30,31],[-15,16],[-24,23],[-44,41],[-68,63],[-19,11],[-20,6],[-24,4],[-24,-3],[-19,-6],[-40,-2],[-61,14],[-56,35],[-73,45],[-55,31],[0,2],[-1,0],[-9,25],[1,82],[1,37],[-15,64],[-10,27],[-3,21],[7,26],[-9,36],[-8,24],[0,1],[-2,2],[-43,62],[-25,29],[-33,46],[-25,35],[-19,15],[-8,7],[-10,9],[-18,9],[-32,12],[-37,14],[-50,18],[-37,5],[-117,16],[-112,7],[-28,8],[-24,3],[-34,17],[-41,25],[-64,52],[-28,21],[-25,19],[-5,4],[-15,12],[-41,32],[-19,18],[-46,50],[-9,5],[-15,10],[-17,8],[-58,25],[-81,36],[-34,14],[-22,9],[-25,9],[-41,15],[-44,20],[-13,6],[-13,8],[-66,37],[-17,10],[-75,47],[-46,33],[-75,55],[-18,16],[-35,62],[-19,31],[-56,91],[-69,109],[-33,27],[-26,18],[-44,19],[-31,16],[-11,6],[-41,21],[-49,29],[-45,34],[-63,55],[-29,30],[-39,31],[-27,19],[-22,15],[-70,59],[-21,11],[-25,10],[-75,33],[-46,43],[0,1],[-8,26],[-1,4],[-6,68],[0,36],[1,7],[0,31],[-16,70],[-43,75],[-68,95],[-75,107],[-22,51],[-22,50],[-4,84],[8,23],[17,54],[15,47],[22,67],[14,42],[3,16],[7,42],[3,30],[0,1],[0,1],[0,2],[1,3],[-2,25],[-2,11],[-2,8],[0,1],[-1,1],[-2,5],[1,1],[-4,15],[-7,11],[-1,1],[-3,5],[-7,18],[-2,4],[-28,41],[-26,38],[-8,11],[-1,1],[-13,17],[-15,12],[-13,22],[-7,25],[-4,28],[2,25],[2,25],[3,26],[6,25],[3,28],[1,29],[-11,35],[-9,20],[-26,31],[-29,29],[-1,1],[-1,1],[-25,22],[-28,22],[-16,12],[-7,6],[-20,10],[-26,15],[-45,21],[-55,24],[-39,13],[-33,18],[-29,27],[-17,30],[-12,32],[-7,22],[-5,40],[-1,22],[1,4],[1,15],[7,18],[4,10],[9,16],[15,28],[23,39],[0,1],[10,13],[5,7],[8,10],[4,6],[23,31],[13,25],[25,38],[12,18],[8,22],[4,23],[0,21],[-8,28],[-4,14],[-28,97],[-36,95],[-79,181],[-26,45],[-40,40],[-114,67],[-83,48],[-25,27],[-11,15],[-89,120],[-48,87],[-19,25],[-22,29],[-46,60],[-17,22],[-59,54],[-46,37],[-52,39],[-2,1],[-34,20],[-4,1],[-32,14],[-33,13],[-22,5],[-25,0],[-54,2],[-2,0],[-24,4],[-7,2],[-15,6],[-4,2],[-101,55],[-6,4],[-87,62],[-18,23],[-23,22],[-22,18],[-4,4],[-24,13],[-28,13],[-16,5],[-10,3],[-9,2],[-26,5],[-37,2],[-32,6],[-40,14],[-48,23],[-39,22],[-54,32],[-43,25],[-6,4],[-41,20],[-9,5],[-22,13],[-16,9],[-5,3],[-27,22],[-19,22],[-13,18],[-13,14],[-29,25],[-22,17],[-15,19],[-16,21],[-7,7],[-11,14],[-16,25],[-12,17],[-2,4],[-12,17],[-18,21],[-7,5],[-13,10],[-25,13],[-24,10],[-33,13],[-20,6],[-6,1],[-17,2],[-27,-1],[-4,-1],[-15,-1],[-2,-1],[-25,-1],[-19,0],[-20,-1],[-25,1],[-7,1],[-28,4],[-37,8],[-11,2],[-13,3],[-14,9],[-25,17],[-21,15],[-14,10]],[[25961,43757],[0,-122],[0,-31],[0,-6],[0,-140],[-1,-303],[1,-50],[0,-29],[-1,-47],[0,-59],[0,-22],[0,-29],[0,-35],[0,-31],[0,-39],[0,-31],[0,-25],[0,-1],[-2,-55],[0,-2],[2,-21],[0,-32],[-1,-44],[0,-45],[-1,-52],[0,-29],[0,-30],[0,-37],[-1,-55],[0,-24],[0,-33],[-1,-47],[0,-23],[0,-21],[1,-189],[0,-74],[1,-74],[1,-120],[1,-40],[1,-34],[1,-37],[1,-35],[1,-43],[2,-53],[2,-113],[0,-66],[0,-106],[0,-40],[1,-59],[0,-33],[1,-148],[1,-99],[0,-34],[0,-69],[1,-58],[1,-85],[1,-19],[0,-19],[0,-53],[2,-71],[0,-33],[0,-41],[0,-27],[0,-28],[-1,-29],[-1,-148],[-1,-78],[0,-115],[-1,-29],[-1,-23],[-5,-435],[-2,-184],[-2,-43],[0,-45],[0,-35],[-4,-233],[-1,-97],[-1,-26],[-3,-170],[2,-77],[2,-56],[-5,-50],[-4,-21],[5,-22],[3,-21],[0,-27],[-3,-25],[2,-22],[0,-26],[1,-29],[-1,-34],[0,-23],[1,-39],[-1,-34],[0,-31],[0,-41],[0,-27],[0,-37],[-1,-44],[2,-44],[-1,-42],[0,-42],[1,-20],[0,-3],[-3,-29],[-4,-31],[-1,-9],[2,-27],[1,-18],[0,-4],[0,-26],[0,-47],[1,-33],[0,-322],[0,-115],[1,-98],[0,-1],[1,-72],[0,-48],[2,-44],[1,-21],[-1,-55],[0,-137],[2,-72],[0,-28],[1,-52],[180,3],[4,-172],[1,-23],[1,-37],[2,-63],[4,-170],[1,-33],[4,-135],[0,-30],[2,-61],[0,-11],[0,-73],[0,-30],[0,-40],[0,-27],[0,-29],[0,-23],[0,-21],[1,-149],[0,-126],[1,-24],[-3,-30],[-2,-25],[1,-268],[1,-254],[0,-58],[3,-60],[3,-138],[1,-26],[3,-131],[0,-37],[0,-9],[-1,-89],[0,-147],[1,-217],[0,-112],[0,-90],[1,-195],[0,-1],[0,-36],[0,-63],[1,-228]],[[26169,33003],[-20,3],[-23,14],[-18,11],[-2,2],[-32,31],[-1,0],[-4,1],[-14,2],[-27,3],[-19,-3],[-25,-3],[-23,1],[-16,9],[-9,14],[-6,9],[-5,22],[0,1],[4,31],[-2,16],[0,2],[-1,5],[-14,11],[-9,1],[-9,0],[-4,-1],[-13,-4],[-9,-3],[-15,-14],[-13,-12],[-24,-21],[-10,-7],[-12,-9],[-10,-3],[-20,-7],[-13,-3],[-10,-3],[-32,5],[-1,0],[-10,2],[-41,10],[-3,1],[-7,2],[-8,2],[-1,7],[-2,8],[-2,11],[1,5],[5,14],[9,19],[0,3],[1,28],[1,4],[-14,10],[-15,-6],[-4,-1],[-31,-32],[0,-1],[-13,-20],[-17,-16],[-39,-12],[-1,-1],[-1,1],[-30,15],[-2,1],[-7,3],[-7,3],[-2,-1],[-17,-4],[-17,-11],[-10,-16],[18,-32],[15,-15],[0,-1],[3,-19],[1,-5],[-1,-6],[-3,-20],[-8,-20],[-1,-25],[3,-21],[1,-10],[-6,-24],[-19,-19],[0,-1],[-51,-19],[-34,-4],[-1,0],[-14,-7],[-3,-1],[0,-1],[-5,-17],[0,-3],[0,-3],[3,-22],[1,-16],[1,-17],[0,-9],[-5,-21],[-2,-3],[-3,-4],[-7,-8],[-5,-6],[-2,-3],[-10,-4],[-13,-7],[-23,0],[-28,-4],[-14,-10],[-9,-11],[-11,-14],[-8,-23],[2,-10],[3,-16],[13,-45],[2,-7],[-1,-4],[-8,-36],[-2,-2],[-9,-8],[-13,-12],[-29,-14],[-13,-20],[-4,-27],[2,-14],[1,-7],[0,-2],[-7,2],[-6,1],[-14,4],[-2,0],[-22,13],[-38,30],[-26,28],[-13,15],[-12,4],[-21,8],[-4,2],[-38,0],[-5,-2],[-21,-6],[-17,-6],[-25,-12],[-20,-11],[-24,-2],[-3,0],[-1,1],[-21,6],[-21,6],[-11,2],[-27,7],[-23,14],[-2,1],[-16,16],[-19,20],[-19,17],[-1,3],[-7,17],[-11,27],[-8,19],[-1,2],[-2,11],[-9,39],[-1,4],[-5,9],[-15,25],[-19,12],[-2,1],[-53,3],[-3,2],[-16,11],[-1,1],[-13,20],[-1,2],[-6,11],[-4,6],[-21,13],[-4,0],[-12,0],[-7,1],[-4,-2],[-17,-8],[-19,-25],[1,-26],[-3,-3],[-15,-18],[-16,-2],[-2,0],[-36,-9],[-15,-9],[-18,-17],[-15,-28],[-3,-5],[-12,-21],[-2,-3],[-9,-17],[-2,-2],[-16,-19],[-9,-10],[-14,-10],[-7,-5],[-15,-7],[-24,-1],[-1,0],[-14,3],[-17,7],[-17,6],[-23,9],[-15,9],[-2,2],[-19,7],[-7,3],[-32,12],[-5,2],[-6,1],[-16,5],[-56,16],[-60,12],[-39,-1],[-2,0],[-7,-6],[-17,-17],[-9,-20],[-4,-6],[-5,-6],[-5,-7],[-9,-11],[-13,-26],[-5,-25],[-23,-17],[-20,-1],[-17,-28],[-8,-30],[0,-2],[-1,-22],[-13,-37],[-12,-31],[-15,-21],[-8,-11],[-19,-14],[-6,-5],[-1,-1],[-23,-11],[-23,-7],[-1,-1],[-1,0],[-28,-27],[-26,-13],[-20,-5],[-6,-1],[-13,-13],[-7,-12],[-4,-7],[-2,-3],[-4,-24],[2,-7],[5,-17],[28,-29],[18,-21],[16,-21],[-5,-14],[-2,-6],[-2,-5],[-6,-2],[-48,-14],[-5,-1],[-2,2],[-15,15],[-25,23],[-21,-2],[-8,-1],[-3,-1],[-18,-19],[-1,-2],[-6,-6],[-6,-15],[-7,-15],[-3,-8],[-1,-16],[0,-9],[-1,-9],[5,-22],[8,-12],[9,-28],[3,-9],[0,-7],[-1,-21],[-1,-14],[-24,-50],[-9,-40],[-4,-17],[-56,-107],[-1,-28],[7,-19],[15,-17],[73,-4],[2,-1],[8,-3],[5,-5],[9,-9],[-1,-7],[0,-3],[0,-4],[-13,-25],[-3,-5],[0,-3],[-2,-53],[-1,-11],[7,-20],[46,-50],[68,-51],[25,-24],[5,-6],[0,-6],[0,-2],[1,-22],[-19,-53],[-1,-22],[14,-43],[2,-28],[16,-12],[5,0],[38,-2],[2,0],[17,-6],[14,-21],[9,-39],[2,-21],[1,-4],[0,-9],[-2,-8],[-2,-5],[-4,-8],[-3,-8],[-1,-5],[2,-5],[-31,0],[-73,-2],[-16,0],[-65,-1],[-16,0],[-103,0],[-22,0],[-17,0],[-24,0],[-182,0],[-16,0],[-30,0],[-19,0],[-65,0],[-64,0],[-28,0],[-28,0],[-60,-1],[-19,0],[-15,0],[-2,0],[-14,0],[-38,-1],[-18,1],[-27,0],[-44,0],[-42,0],[-33,0],[-54,0],[-37,0],[-36,-1],[-27,1],[-20,0],[-25,-1],[-20,0],[-1,0],[-20,0],[-21,-1],[-33,0],[-13,1],[-26,0],[-19,1],[-49,1],[-40,1]],[[22052,31022],[-2,3],[-2,6],[-3,7],[-1,5],[-13,55],[-2,10],[-48,112],[-4,7],[-18,28],[-17,27],[-27,24],[-16,13],[-31,28],[-1,0],[-27,21],[-19,11],[-86,31],[-19,7],[-54,21],[-45,18],[-50,22],[-13,8],[-49,28],[-15,9],[-18,10],[-1,0],[-7,4],[-30,4],[-10,1],[-19,2],[-2,0],[-34,-4],[-11,-2],[-14,-3],[-86,-19],[-9,-2],[-19,-1],[-17,4],[-54,22],[-97,39],[-61,30],[-24,19],[-20,17],[-25,21],[-9,7],[-17,15],[-13,11],[-57,37],[-18,7],[-40,9],[-115,25],[-104,17],[-29,2],[-23,2],[-90,-4],[-200,16],[-37,9],[-46,15],[-56,26],[-41,15]],[[38817,36519],[-7,-133],[0,-159],[0,-67],[-1,-97],[0,-6],[0,-47],[-1,-76],[1,-173],[0,-58],[-1,-48],[0,-90],[0,-61],[2,-45],[0,-24],[0,-42],[4,-45],[1,-58],[1,-54],[-2,-24],[-4,-38],[0,-17],[0,-53],[-1,-79],[0,-18],[-1,-235],[0,-24],[0,-119],[1,-26],[-1,-28]],[[38808,34575],[-31,1],[-47,2],[-17,1],[-23,0],[-4,0],[-37,2],[-19,0],[-31,1],[-17,1],[-159,12],[-37,1],[-188,9],[-71,5],[-226,13],[-35,1],[-32,2],[-109,10],[-55,5],[-181,11],[-115,9],[-81,5],[-47,3],[-96,9],[-30,2],[-30,3],[-52,5],[-27,3],[-60,4],[-125,-2],[-18,0],[-52,-1],[-17,0],[-96,-1],[-84,0],[-63,-1],[-117,2],[-231,-1],[-1,0],[-25,-2],[-28,-1],[-47,-1],[-63,0],[-18,3],[-156,-3],[-59,-1],[-122,-2],[-110,-1],[-178,-4],[-60,0],[-100,1],[-105,0],[-178,-2],[-80,0],[-88,-1],[-3,0],[-68,0],[-62,0],[-108,0],[-14,0],[-204,-2],[-170,-1],[-17,0],[-254,-6],[-149,-3],[-196,-4],[-100,-2],[-251,-5],[-79,-1],[-275,1],[-70,1],[-87,2],[-55,-1],[-248,-1],[-101,1],[-229,-3],[-34,0],[-114,1],[-52,1],[-212,-4],[-135,-3],[-101,-1],[-142,-1],[-4,0],[-135,-1],[-417,-3],[-68,0],[-192,-1],[-48,-1],[-203,-1],[-17,0],[-47,0],[-85,-1],[-77,0],[-38,0],[-38,-30],[-5,-4],[-17,-13],[-16,-14],[-26,-19],[-15,-6],[-4,-2],[-14,-5],[-21,-12],[-22,-23],[-15,-17],[-13,-15],[-2,-4],[-20,-33],[-1,-2],[-16,-21],[-1,-2],[-4,-3],[-15,-8],[-28,-9],[-20,-3],[-3,-1],[-27,-1],[-29,1],[-6,2],[-44,12],[-39,7],[-20,1],[-6,-3],[-10,-5],[-12,-6],[-5,-8],[-9,-14],[-5,-8],[-9,-18],[-3,-5],[-13,6],[-9,3],[-14,21],[0,1],[-10,15],[-2,3],[-14,13],[-4,-1],[-18,-2],[-5,0],[-16,-23],[-28,-65],[-11,-8],[-8,-5],[-22,-10],[-21,3],[-12,-1],[-17,-1],[-7,-9],[-8,-10],[-4,-5],[0,-2],[-6,-23],[-1,-4],[-1,-26],[-1,-6],[-11,-15],[-21,-10],[-23,-1],[-11,10],[-8,7],[-5,-1],[-11,-2],[-2,0],[-4,-3],[-13,-7],[-18,-21],[-1,-1],[-1,-3],[-13,-26],[-11,-19],[-1,-2],[-9,-35],[-2,-9],[-2,-11],[-2,-5],[-6,-16],[-2,-2],[-13,-16],[-17,0],[-7,3],[-8,4],[-21,13],[-1,0],[-25,4],[-2,0],[-4,-3],[-10,-8],[-8,-7],[-5,-17],[-2,-4],[3,-17],[0,-6],[1,-5],[18,-12],[2,-1],[15,-11],[20,-11],[22,-18],[13,-12],[11,-14],[14,-16],[24,-23],[16,-17],[3,-10],[4,-12],[-15,-21],[-25,-11],[-25,-8],[-13,-3],[-11,-3],[0,-5],[0,-18],[2,-330],[2,-226],[1,-111],[2,-268]],[[28861,32819],[-45,0],[-362,5],[-48,2],[-138,0],[-167,0],[-192,0],[-16,0],[-90,0],[-45,0],[-163,0],[-178,0],[-229,2],[-91,0],[-29,0],[-92,-1],[-62,-1],[-30,0],[-118,-1],[-37,0],[-158,1],[-18,1],[-70,-1],[-15,0],[-126,-1],[-51,-1],[-62,1],[-59,-1],[0,27],[-1,50],[0,30],[0,71],[0,1]],[[70736,36378],[-151,6],[-16,-2],[-295,8],[-85,2],[-144,2],[-12,0],[-65,0],[-51,-4],[-122,0],[-109,2],[-18,0],[-19,0],[-125,4],[-22,0],[-2,0],[-50,0],[-70,2],[-27,1],[-40,1],[-20,1],[-223,6],[-167,2],[-36,0],[-40,1],[-20,0],[-29,1],[-30,2],[-35,0],[-47,0],[-52,0],[-18,2],[-59,0],[-42,0],[-24,0],[-23,2],[-18,0],[-19,1],[-76,1],[-23,0],[-16,0],[-11,0],[-8,1],[-38,0],[-38,1],[-34,0],[-16,2],[-19,0],[-16,0],[-16,-2],[-28,0],[-48,2],[-38,0],[-60,3],[-18,0],[-26,2],[-21,0],[-21,0],[-32,0],[-33,-5],[-54,0],[-50,3],[-28,0],[-23,-3],[-21,0],[-49,-1]],[[67550,36422],[-83,3],[-19,0],[-30,1],[-25,-1],[-15,-1],[-1,0],[-24,-1],[-36,-2],[-37,0],[-37,2],[-22,1],[-17,2],[-28,0],[-56,-3],[-26,3],[-34,0],[-36,0],[-3,0],[-19,0],[-58,-4],[-15,0],[-16,1],[-42,0],[-18,-1],[-20,0],[-22,0],[-6,0],[-31,0],[-23,0],[-19,0],[-23,2],[-16,1],[-20,1],[-39,-3],[-13,0],[-9,0],[-30,-3],[-26,2],[-22,0],[-20,0],[-16,0],[-32,0],[-34,0],[-42,0],[-18,0],[-45,0],[-34,0],[-39,0],[-39,0],[-35,0],[-39,0],[-20,0],[-33,0],[-40,0],[-43,0],[-61,0],[-101,-1],[-40,0],[-24,0],[-59,-1],[-40,-1],[-131,-2],[-27,0],[-15,1],[-4,0],[-9,-1],[-9,-1],[-9,0],[-26,-1],[-22,0],[-16,0],[-30,-1],[-104,0],[-36,0],[-34,-1],[-34,1],[-24,0],[-22,0],[-90,0],[-32,0],[-16,1],[-24,0],[-68,0],[-76,-1],[-37,0],[-84,-1],[-71,0],[-77,0],[-66,0],[-16,0],[-18,1],[-26,-1],[-102,0],[-2,0],[-101,-3],[-21,0],[-37,-2],[-13,-1],[-43,-2],[-3,0],[-74,2],[-65,4],[-46,0],[-56,0],[-28,0],[-64,-6],[-45,0],[-242,1],[-75,0],[-43,0],[-2,0],[-32,0],[-50,-1],[-14,0],[-235,0],[-235,0],[-76,0],[-228,0]],[[77668,29106],[-138,1],[-67,0],[-2,0],[-37,2],[-23,1],[-170,2],[-129,-2],[-22,-2],[-17,1],[-31,0],[-42,-1],[-62,-1],[-138,-2],[-26,0],[-24,0],[-112,-1],[-79,-1],[-72,-1],[-20,0],[-117,-1],[-2,0],[-146,-2],[-5,0],[-51,-1],[-26,0],[-87,-1],[-251,-2],[-5,0],[-40,1],[-10,0],[-60,0],[-88,0],[-51,1],[-22,0],[-78,1],[-157,3],[-147,2],[-61,1],[-62,2],[-27,1],[-73,-1],[-87,0],[-212,-2],[-17,0],[-69,-1],[-30,1],[-9,0],[-1,0],[-82,-1],[-44,0],[-1,0],[-125,-1],[-11,0],[-138,-1],[-161,-1],[-269,-3],[-33,-1],[-82,-1],[-153,0],[-70,-1],[-9,0],[-45,3],[-24,-1],[-100,0],[-4,0],[-2,0],[-67,0],[-16,0],[-23,0]],[[73007,29096],[0,26],[0,8],[0,211],[0,25],[0,13],[0,9],[0,16],[0,102],[0,10],[0,11],[0,25],[0,15],[0,7],[2,34],[-1,26],[-1,30],[2,42],[-1,146],[-2,156],[1,72],[1,88],[-3,145],[0,198],[0,103],[-1,102],[0,34],[-1,84],[-1,82],[0,34],[0,37],[-1,81],[0,65],[0,29],[-2,185],[0,37],[-1,159],[-2,186],[0,34],[0,30],[0,33],[-1,63],[-2,265],[-1,225],[0,74],[-1,169],[-1,106],[-1,114],[0,54],[0,10],[-1,116],[0,83],[-2,154],[1,73],[0,31],[0,58],[-1,34],[0,1],[0,58],[0,68],[0,50],[0,220],[-2,33],[0,30],[0,31],[-1,54],[0,84],[-1,58],[0,42],[-1,53],[0,72],[-1,35],[0,33],[0,36],[-2,124],[-1,189],[0,37],[0,75],[0,118],[0,178],[0,25],[1,97],[0,34],[0,150],[2,301],[1,76],[1,63],[0,163],[2,226],[0,31],[1,56]],[[44983,36533],[-1,-34],[-1,-27],[-7,-47],[-4,-17],[-3,-14],[1,-24],[1,-10],[3,-27],[1,-5],[3,-9],[9,-26],[10,-28],[11,-22],[18,-25],[46,-26],[14,-12],[18,-34],[-2,-29],[-17,-26],[-16,-10],[-21,-10],[-24,0],[-22,2],[-23,29],[-3,1],[-13,9],[-18,3],[-26,-11],[-13,-11],[-23,-22],[-10,-17],[6,-23],[23,-24],[16,-29],[2,-24],[-4,-11],[-7,-23],[-22,-12],[-4,-2],[-25,-2],[-24,2],[-21,8],[-26,4],[-19,-1],[-20,-1],[-17,-2],[-21,-6],[-26,-14],[-14,-10],[-19,-26],[-9,-33],[1,-38],[16,-34],[13,-17],[18,-17],[18,-15],[18,-10],[30,-11],[19,-3],[19,-3],[18,-3],[23,-5],[18,-6],[29,-11],[3,-3],[7,-5],[14,-12],[16,-24],[9,-32],[2,-45],[-6,-25],[-11,-23],[-21,-18],[-22,-6],[-3,-1],[-13,-1],[-16,-1],[-32,3],[-46,9],[-21,1],[-21,-1],[-19,-3],[-20,-7],[-31,-18],[-13,-14],[-8,-20],[0,-23],[5,-29],[15,-25],[26,-13],[22,-5],[19,-2],[25,0],[42,8],[34,11],[16,5],[19,6],[51,3],[16,-2],[29,-13],[15,-11],[14,-17],[14,-30],[11,-33],[4,-23],[0,-24],[-3,-31],[-11,-44],[-10,-33],[-9,-19],[-12,-18],[-15,-16],[-31,-16],[-26,-1],[-41,7],[-35,11],[-46,22],[-30,12],[-3,1],[-21,7],[-30,-4],[-37,-44],[-7,-20],[5,-31],[13,-23],[8,-22],[1,-2],[12,-39],[8,-29],[5,-112],[-2,-31],[-5,-30],[-16,-43],[-13,-34],[-10,-25],[-21,-33],[-10,-15],[-15,-14],[-14,-6],[-34,-3],[-22,2],[-28,18],[-24,31],[-8,23],[-5,19],[-3,27],[-1,15],[-2,22],[-3,24],[-15,27],[-12,15],[-16,15],[-49,21],[-25,3],[-35,-9],[-36,-6],[-21,-1],[-36,1],[-26,4],[-21,7],[-26,13],[-29,24],[-52,24],[-25,7],[-22,1],[-27,-5],[-24,-17],[-16,-26],[2,-44],[5,-52],[5,-66],[2,-31],[-2,-22],[-13,-40],[-6,-42],[8,-43],[2,-32],[-18,-41],[-10,-20],[-6,-69],[-3,-56],[-10,-71],[-6,-19],[-12,-17],[-15,-7],[-31,-5],[-18,1],[-64,7],[-24,-3],[-14,-30],[2,-25],[17,-24],[14,-8],[23,-7],[40,-2],[26,-5],[24,-17],[17,-12],[10,-20],[-1,-23],[-9,-25],[-13,-17],[-16,-18],[-21,-13],[-21,-8],[-24,2],[-32,9],[-11,5],[-13,7],[-25,19],[-16,28],[-9,25],[-25,31],[-24,13],[-38,-12],[-24,-30],[-12,-16],[-15,-18],[-18,-21],[-3,-2],[-23,-11],[-33,-11],[-30,-3],[-21,0],[-16,0],[-18,-4],[-17,-10],[-24,-30],[-6,-24],[-1,-27],[0,-29],[3,-24],[6,-30],[7,-23],[10,-25],[15,-27],[16,-23],[12,-16],[8,-17],[10,-19],[6,-20],[0,-2],[-1,-4],[-4,-23],[-13,-19],[-17,-19],[-19,-11],[-19,-5],[-29,7],[-31,12],[-16,5],[-21,1],[-15,-5],[-19,-10],[-26,-22],[-14,-25],[-5,-20],[-12,-21],[-12,-20],[-11,-14],[-14,-16],[-10,-17],[-13,-23],[-9,-22],[-6,-19],[-2,-31],[4,-38],[4,-24],[9,-35],[8,-33],[6,-32],[4,-28],[6,-26],[5,-22],[3,-25],[1,-28],[-1,-44],[-3,-33],[-3,-26],[-2,-22],[3,-25],[11,-20],[18,-18],[18,-18],[13,-12],[19,-28],[11,-23],[4,-9],[6,-31],[-12,-36],[-4,-10],[-6,-17],[0,-4],[3,-25],[0,-1],[15,-30],[11,-24],[1,-1],[7,-25],[0,-22],[0,-7],[-1,-10],[-1,-4],[-2,-22],[-4,-24],[4,-28],[9,-24],[0,-1],[9,-26],[7,-27],[11,-18],[24,-26],[28,-28],[18,-20],[23,-22],[1,-1],[23,-17],[20,-11],[24,-18],[11,-15],[11,-41],[4,-26],[2,-11],[2,-13],[6,-27],[9,-23],[6,-14],[5,-13],[14,-27],[9,-10],[3,-4],[10,-11],[11,-16],[5,-23],[5,-16],[1,-22],[-6,-29],[-2,-8],[-15,-24],[-9,-8],[-39,-34],[-22,-17],[-23,-26],[-10,-18],[-10,-34],[-1,-32],[6,-22],[21,-24],[22,-13],[30,-15],[24,-7],[2,-1],[19,-9],[37,-12],[30,-10],[30,-14],[36,-17],[22,-13],[19,-12],[21,-14],[12,-7],[84,-49],[19,-12],[19,-14],[23,-13],[37,-16],[31,-9],[29,-10],[1,-1],[0,-1],[28,-32],[16,-24],[1,-1],[0,-1],[8,-25],[5,-28],[-10,-20],[-5,-4],[-5,-5],[-5,-6],[-3,-2],[7,-33],[7,-33],[9,-84],[4,-17],[10,-26],[18,-26],[27,-55],[14,-34],[38,-93],[-7,-112],[-1,-3],[-3,-13],[-5,-1],[-77,-168],[-18,-200],[4,-71],[0,-168],[10,-67],[16,-186],[2,-17],[-11,-168],[29,-86],[8,-39],[46,-79],[0,-8],[8,-9],[-13,-204],[-26,-51],[-27,-100],[-5,-83],[-5,-87],[6,-25],[26,-72],[3,-9],[80,-91],[3,-10],[-4,-38],[-7,-14],[-2,-36],[11,-43],[29,-34],[21,-25],[33,-19],[1,0],[13,-1],[41,-27],[17,-12],[14,-6],[32,-16],[46,-31],[27,-27],[36,-28],[25,-29],[47,-43],[53,-57],[9,-10],[3,-4],[22,-27],[33,-59],[6,-11],[25,-44],[1,-3],[8,-33],[11,-49],[-5,-22],[17,-93],[11,-49],[1,-22],[37,-50],[14,-10],[11,-7],[11,-12],[7,-8],[21,-23],[15,-8],[17,-8],[37,-8],[1,0],[16,1],[8,-10],[64,-86],[4,-11],[2,-6],[23,-28],[8,-8],[56,-124],[8,-18],[75,-97],[40,-44],[16,-10],[27,-16],[24,0],[63,-58],[13,-13],[21,-45],[5,-11],[27,-55],[57,-1],[26,-3],[4,0],[15,-4],[31,-60],[9,-14],[19,-31],[11,-17],[5,-11],[-1,-9],[-1,-14],[18,-26],[5,-20],[14,-22],[9,-13],[26,-30],[24,-18],[14,-2],[2,0],[3,-3],[5,-3],[12,-21],[9,-13],[10,-16],[3,-4],[21,-33],[2,-9],[2,-8],[-4,-34],[18,-20],[43,-67],[19,-21],[3,-10],[0,-58],[0,-55],[7,-194],[16,-131],[0,-4],[12,-28],[13,-33],[11,-27],[9,-33],[6,-20],[6,-23],[5,-37],[10,-42],[11,-23],[14,-26],[8,-16],[18,-38],[13,-15],[12,-19],[11,-17],[8,-17],[3,-47],[4,-48],[7,-20],[11,-20],[16,-22],[11,-17],[11,-28],[10,-33],[7,-33],[6,-34],[8,-32],[8,-31],[11,-24],[12,-22],[17,-30],[14,-30],[11,-32],[20,-29],[25,-44],[29,-47],[13,-22],[11,-23],[8,-24],[16,-36],[14,-39],[13,-13],[15,-17],[15,-16],[18,-18],[3,-3],[21,-20],[25,-23],[29,-18],[2,-1],[23,-18],[27,-5],[62,-15],[17,-12],[1,-1],[19,-15],[17,-14],[16,-18],[6,-8],[5,-7],[1,0],[9,-33],[-2,-28],[1,-42],[0,-2],[-2,-43],[2,-7],[3,-16],[6,-25],[1,-5],[4,-16],[10,-32],[-4,-29],[7,-22],[8,-22],[6,-31],[-23,-18],[-13,-14],[-31,-59],[-1,-2],[0,-4],[-2,-26],[-1,-6],[2,-2],[1,0],[11,-13],[5,-6],[6,-7],[8,-10],[7,-9],[7,-10],[6,-8],[12,-6]],[[46742,23886],[-20,0],[-24,0],[-12,0],[-4,-1],[-2,0],[-3,-1],[-2,0],[-19,0],[-125,1],[-33,-1],[-10,0],[-18,0],[-122,0],[-1,0],[-79,0],[-22,0],[-55,0],[-26,-1],[-16,0],[-21,0],[-52,0],[-53,0],[-45,0],[-24,0],[-73,1],[-76,0],[-342,1],[-66,0],[-206,0],[-55,0],[-205,2],[-50,0],[-318,2],[-32,0],[-21,0],[-16,-2],[-24,0],[-18,1],[-18,0],[-41,0],[-128,2],[-82,0],[-1,0],[-270,1],[-18,0],[-140,0],[-216,4],[-22,0],[-2,0],[-150,1],[-66,1],[-80,0],[-123,1],[-47,0],[-195,0],[-76,1],[-156,0],[-55,0],[-15,0],[-122,1],[-62,0],[-107,1],[-29,0],[-8,0],[-22,0],[-72,0],[-85,1],[-316,1],[-25,1],[-21,0],[-38,0],[-143,1],[-49,-1],[-39,-1],[-20,0],[-329,4],[-44,1],[-162,2],[-159,-7],[-7,-1],[-41,-1],[-28,-1],[-1,0],[-149,2],[-135,2],[-57,1],[-24,-1],[-6,0],[-76,-1],[-52,-2],[-19,0],[-71,-2],[-221,-5],[-63,4],[-161,-2],[-85,-1],[-102,-2],[-126,-2],[-31,-1],[-71,1],[-33,-1],[-92,-3],[-63,-2],[-38,0],[-32,2],[-104,-3]],[[38811,23884],[0,77],[-1,39],[-3,30],[1,65],[2,64],[-1,25],[-3,53],[2,80],[1,75],[0,23],[0,5],[0,22],[1,97],[0,4],[-1,52],[0,19],[0,9],[2,338],[0,26],[0,92],[1,111],[0,72],[0,24],[1,134],[1,210],[0,78],[0,54]],[[38814,25762],[0,49],[1,63],[0,202],[-2,39],[-3,52],[2,115],[1,135],[0,54],[0,1],[0,43],[1,31],[1,120],[0,34],[0,164],[0,86],[0,127],[-1,84],[0,60],[0,3],[-1,61],[3,137],[1,65],[2,96],[0,30],[0,47],[0,81],[1,75],[0,24],[0,121],[1,33],[0,41],[-1,143],[0,85],[-2,116],[-1,154],[-1,24],[0,83],[0,27],[1,45],[0,20],[-1,16],[0,115],[0,34],[-2,257],[-1,50],[0,75],[1,70],[0,32],[0,74],[0,50],[0,26],[0,220],[0,84],[1,76],[0,39],[0,30],[0,8],[0,60],[0,94],[-2,43],[0,21],[-1,96],[-1,179],[0,24],[1,65],[-1,27],[-1,67],[0,7],[-1,79],[1,34],[-1,34],[0,45],[-1,101],[0,85],[0,66],[0,148],[-1,84],[-1,15],[-1,10],[-2,32],[2,44],[0,5],[0,1],[4,96],[0,14],[0,83],[1,149],[0,23],[0,9],[0,19],[0,38],[0,6],[-1,49],[0,31],[0,98],[0,5],[-1,83],[-1,119],[0,40],[1,26],[0,80],[2,197],[0,72],[-1,46],[0,30],[0,68],[2,42],[-1,56],[0,159],[0,135],[-1,125],[0,305],[0,288],[0,19],[0,195],[0,18],[0,25],[-1,32],[-1,106],[0,41],[1,138],[0,56]],[[49571,36455],[3,-256],[2,-403],[0,-3],[1,-87],[1,-136],[0,-151],[0,-74],[1,-75],[1,-94],[-1,-132],[0,-34],[0,-14],[-1,-103],[-3,-150],[-1,-47],[-1,-104],[-1,-240],[0,-71],[-1,-78],[2,-128],[0,-110],[0,-27],[1,-37],[-2,-97],[-2,-129],[-2,-152],[0,-133],[0,-59],[0,-2],[1,-29],[-3,-228],[1,-301],[0,-286],[0,-225],[2,-235],[-1,-143],[-1,-74],[0,-229],[-1,-147],[1,-85],[1,-66],[3,-303]],[[49571,30978],[-1,-166],[-1,-24],[2,-21],[1,-47],[0,-152],[2,-170],[2,-205],[1,-84],[-1,-50],[0,-78],[0,-226],[3,-301],[1,-76],[0,-43],[0,-33],[0,-21],[1,-49],[0,-80],[0,-77],[1,-188],[0,-56],[0,-57],[0,-26],[1,-55],[-1,-72],[1,-53],[0,-25],[0,-65],[0,-22],[-9,-262],[1,-27],[-2,-304],[0,-150],[-2,-151],[-2,-159],[-1,-73],[-1,-68],[-2,-167],[-1,-71],[0,-14],[-1,-38],[0,-1],[0,-37],[-2,-136],[-4,-301],[-4,-238],[2,-109],[1,-233],[-1,-166],[-1,-96],[-2,-77],[0,-111],[-1,-117],[0,-45],[0,-61],[-5,-433],[-2,-56],[1,-81],[0,-110],[0,-26],[0,-29],[1,-145],[0,-5],[0,-57],[1,-94],[1,-113],[-1,-28],[0,-29],[0,-97],[-1,-23]],[[49546,23918],[-218,-1],[-27,0],[-73,0],[-26,0],[-40,1],[-266,0],[-167,1],[-84,0],[-28,4],[-27,1],[-16,0],[-25,1],[-16,1],[-26,1],[-18,0],[-26,0],[-15,0],[-16,0],[-18,3],[-17,-3],[-23,0],[-33,1],[-30,0],[-61,1],[-16,0],[-44,0],[-29,0],[-49,0],[-37,0],[-16,0],[-22,0],[-22,0],[-31,0],[-21,0],[-32,1],[-35,0],[-56,0],[-48,-1],[-43,0],[-3,0],[-24,-1],[-27,-2],[-37,-1],[-21,-1],[-25,-1],[-33,-2],[-24,-1],[-18,-1],[-18,0],[-30,-2],[-22,-1],[-22,0],[-20,-1],[-25,-1],[-17,-1],[-23,-1],[-19,0],[-20,-1],[-29,-4],[-17,0],[-45,-2],[-15,-1],[-48,-2],[-28,-1],[-71,-4],[-89,-5],[-45,-3],[-22,-1],[-41,-2],[-27,-1],[-83,1],[-19,0]],[[60283,36391],[-1,-29],[0,-21],[0,-77],[0,-44],[0,-31],[1,-46],[0,-53],[1,-68],[0,-83],[1,-151],[0,-35],[0,-43],[1,-140],[1,-83],[0,-29],[0,-121],[1,-77],[0,-97],[1,-47],[1,-45],[0,-36],[-1,-190],[0,-150],[0,-2],[1,-105],[7,-642],[0,-18],[1,-265],[0,-14],[-1,-52],[0,-35],[-1,-207],[0,-104],[0,-37],[-2,-29],[0,-35],[0,-87],[0,-60],[0,-69],[0,-48],[0,-54],[-1,-50],[0,-24],[0,-26],[-1,-29],[0,-46],[-1,-27],[0,-71],[-2,-91],[0,-14],[0,-100],[-1,-36],[0,-29],[0,-73],[0,-38],[0,-60],[1,-81],[0,-50],[-1,-46],[1,-39],[0,-32],[0,-55],[0,-50],[0,-89],[0,-234],[0,-56],[1,-39],[-2,-33],[0,-43],[0,-18],[1,-45],[0,-134],[1,-55],[0,-20]],[[60290,30999],[-26,0],[-43,0],[-25,0],[-57,0],[-24,0],[-48,1],[-18,0],[-19,0],[-18,0],[-15,0],[-46,1],[-21,0],[-18,0],[-53,0],[-17,0],[-16,0],[-41,1],[-33,0],[-18,0],[-49,1],[-40,1],[-17,0],[-45,0],[-28,0],[-18,0],[-19,0],[-19,0],[-44,0],[-29,0],[-30,0],[-18,0],[-18,-1],[-18,-1],[-16,-1],[-10,0],[-5,0],[-83,0],[-1,0],[-302,2],[-30,-1],[-26,0],[-38,0],[-26,0],[-40,1],[-28,0],[-19,0],[-37,-1],[-37,0],[-20,0],[-27,-1],[-53,0],[-43,1],[-18,0],[-40,0],[-24,-1],[-28,0],[-22,0],[-21,0],[-18,1],[-552,-2],[-357,-2],[-256,-1],[-28,0],[-15,0],[-256,-1],[-25,1],[-22,0],[-25,0],[-15,0],[-12,0],[-18,1],[-22,0],[-17,0],[-21,0],[-16,0],[-15,0],[-616,-7]],[[56042,30991],[-26,-1],[-50,0],[-19,0],[-38,0],[-37,-1],[-150,1],[-49,0],[-82,1],[-41,0],[-22,0],[-117,-1],[-127,-2],[-141,-2],[-24,0],[-139,-1],[-36,1],[-32,1],[-46,-2],[-57,-4],[-258,6],[-73,-1],[-307,-3],[-74,0],[-106,3],[-50,-1],[-29,0],[-111,0],[-158,0],[-35,0],[-41,1],[-183,-1],[-43,0],[-73,0],[-16,0],[-178,-1],[-123,0],[-24,1],[-80,0],[-38,0],[-36,-1],[-27,0],[-25,0],[-99,0],[-76,0],[-67,0],[-22,0],[-53,0],[-86,0],[-150,-2],[-78,0],[-95,-1],[-84,-2],[-42,-1],[-252,0],[-28,-1],[-5,1],[-63,0],[-30,0],[-181,0],[-229,0],[-37,0],[-13,0],[-62,-1],[-52,-3],[-51,2],[-44,1],[-114,2],[-33,-2],[-93,1],[-77,1],[-33,0],[-56,0],[-76,1],[-50,0],[-50,0],[-32,0],[-34,1],[-50,0],[-23,0],[-105,1],[-182,0],[-170,-4],[-73,0]],[[67550,36422],[2,-31],[-1,-38],[1,-40],[2,-24],[-1,-24],[1,-29],[-1,-24],[0,-3],[0,-23],[0,-25],[-1,-30],[0,-24],[0,-26],[0,-21],[-1,-25],[0,-31],[0,-44],[-1,-23],[0,-48],[-1,-22],[0,-3],[0,-26],[-1,-41],[0,-21],[0,-18],[-1,-19],[0,-24],[0,-14],[0,-18],[-1,-38],[-1,-12],[-1,-108],[0,-159],[2,-135],[0,-173],[0,-17],[2,-189],[-2,-192],[-1,-85],[1,-228],[0,-314],[-1,-128],[4,-265],[-3,-94],[-3,-137],[2,-216],[1,-98],[2,-271],[3,-410],[3,-368],[6,-672],[0,-27],[3,-416],[-5,-392],[-2,-121],[-6,-355]],[[67550,30063],[6,-322],[0,-83],[4,-146],[4,-366],[0,-23],[-16,0],[-930,9],[-23,0],[-17,0],[-3,0],[-100,2],[-50,0],[-59,1],[-17,0],[-18,0],[-62,0],[-42,1],[-58,0],[-29,0],[-36,1],[-55,0],[-28,0],[-17,0],[-6,0],[-12,0],[-19,0],[-17,0],[-40,0],[-23,0],[-62,1],[-80,0],[-108,0],[-27,0],[-70,0],[-97,0],[-53,1],[-31,1],[-41,0],[-21,1],[-73,1],[-28,0],[-51,0],[-33,1],[-206,5],[-29,1],[-29,0],[-4,0],[-25,1],[-59,0],[-40,1],[-81,1],[-21,0],[-21,1],[-16,0],[-36,1],[-30,-2],[-54,1],[-69,1],[-1,0],[-153,1],[-73,1],[-22,1],[-17,0],[-34,0],[-43,0],[-69,0],[-48,0],[-46,0],[-18,0],[-16,0],[-24,0],[-34,0],[-70,1],[-58,0],[-100,1],[-55,0],[-26,0],[-28,0],[-89,0],[-40,0],[-32,0],[-60,0],[-29,0],[-27,0],[-55,-1],[-25,0],[-75,0],[-76,0],[-18,0],[-57,1],[-66,0],[-33,0],[-53,0],[-30,0],[-251,0],[-3,0],[-28,0],[-27,1],[-84,1],[-17,0],[-6,0],[-84,1],[-38,0],[-38,1],[-45,0],[-31,-1],[-72,0],[-77,0],[-68,-1],[-15,0],[-70,0],[-78,1],[-80,-1],[-81,0],[-44,0],[-2,0],[-30,0],[-75,0],[-68,0],[-6,0],[-66,1],[-80,1],[-7,0],[-50,1],[-18,0],[-16,0],[-17,1],[-48,0],[-33,0],[-60,1],[-47,0],[-19,1],[-36,0],[-35,0],[-23,0],[-22,1],[-23,0],[-76,1],[-26,0],[-125,0],[-47,0],[-102,0]],[[60298,29169],[-1,77],[-1,53],[0,30],[0,40],[0,38],[0,62],[-1,62],[0,36],[-1,35],[0,31],[0,34],[0,35],[0,29],[-2,46],[0,67],[2,241],[1,120],[0,71],[-1,63],[0,45],[-1,169],[0,54],[-1,85],[0,1],[-2,306]],[[73007,29096],[-312,2],[-6,0],[-31,-1],[-139,-1],[-30,0],[-26,0],[-61,1],[-123,0],[-26,0],[-157,-1],[-31,0],[-109,-1],[-85,0],[-41,0],[-37,0],[-40,0],[-75,0],[-67,0],[-25,0],[-109,-1],[-135,-1],[-130,-1],[-19,-1]],[[71193,29091],[0,30],[1,54],[1,64],[1,77],[1,77],[0,76],[1,75],[1,75],[0,76],[0,12],[1,63],[0,75],[1,76],[0,75],[1,56],[-76,0],[-65,1],[-16,0],[-22,0],[-47,-1],[-76,0],[-4,0],[-73,0],[-77,0],[-37,1],[-39,0],[-78,1],[-75,-1],[-21,0],[-54,-1],[-76,-1],[-72,-1],[-125,-1],[-18,0],[-52,0],[-14,0],[-4,0],[-20,0],[-47,-1],[-30,1],[-25,0],[-51,0],[-48,0],[-32,1],[-74,0],[-24,0],[-20,0],[-33,0],[-25,1],[-19,0],[-42,0],[-43,0],[-22,1],[-67,0],[-53,0],[-27,0],[-49,0],[-76,0],[-153,1],[-27,-1],[-3,0],[-124,0],[-38,0],[-17,0],[-3,0],[-100,0],[-43,0],[-499,3],[-607,7],[-90,1]],[[38814,25762],[-39,-1],[-57,-3],[-154,-10],[-19,-1],[-39,-2],[-17,-1],[-38,-3],[-90,-6],[-35,-2],[-108,-7],[-78,-5],[-35,-3],[-91,-6],[-55,-3],[-69,-5],[-24,-7],[-189,-7],[-16,0],[-33,-2],[-41,-2],[-114,-7],[-148,-8],[-49,-3],[-30,-1],[-250,-11],[-99,0],[-122,-1],[-31,-1],[-156,-1],[-116,0],[-42,0],[-100,-1],[-155,-3],[-108,-2],[-83,0],[-72,0],[-29,0],[-21,0],[-30,0],[-27,0],[-22,0],[-427,0],[-135,0],[-25,0],[-38,0],[-19,-1],[-16,1],[-44,-1],[-247,0],[-107,1],[-46,1],[-4,0],[-2,64],[-1,13],[-11,0],[-22,0],[-265,2],[0,-64],[-1,-12],[-147,2],[-36,0],[-89,4],[-37,0],[-217,1],[-24,0],[-126,1],[-139,1],[-28,0],[-42,-1],[-39,0],[-21,0],[-220,-3],[-156,-2],[-110,-1],[-263,-3],[-383,-4],[-77,0],[-29,-2],[-52,0],[-47,-1],[-81,0],[-157,-1],[-90,-1],[-3,0],[-9,3],[-107,-2],[-118,-2],[-72,-2],[-21,-1],[-33,-1],[-211,4],[-34,0],[-25,0],[-51,1],[-74,1],[-88,0],[-64,0],[-70,0],[-42,-1],[-37,0],[-293,3],[-75,-3],[-242,0],[-166,0],[-27,-1],[-29,0],[-50,-1],[-18,-1]],[[29804,25638],[-1,88],[-1,125],[0,80],[-1,50],[0,31],[-1,85],[-1,53],[0,101],[0,82],[-1,145],[0,63],[0,28],[-1,41],[0,104],[-1,97],[0,44],[0,73],[1,154],[-1,60],[1,75],[-1,150],[0,32],[0,46],[0,82],[-2,76],[0,23],[-1,52],[3,27],[-1,48],[0,40],[1,130],[5,283],[0,35],[2,73],[0,40],[0,71],[0,48],[-1,30],[0,98],[2,147],[2,150],[1,22],[0,37],[1,120],[1,157],[0,21],[1,37],[0,17],[-1,26],[0,27],[1,25],[0,29],[0,22],[-1,120],[-1,39],[0,8],[-1,60],[0,26],[-5,141],[0,26],[-4,91],[-5,129],[-1,6],[-1,45],[-3,70],[-1,109],[-1,150],[-1,147],[-2,56],[-1,74],[-3,166],[-2,59],[-4,156],[-2,82],[-1,52],[0,97],[-7,597],[0,186],[0,233],[0,329],[0,7],[0,133],[-146,-3],[-1,-1],[-345,-4],[-394,-5],[-16,0]],[[29804,25638],[-60,-1],[-79,0],[-67,0],[-53,0],[-33,1],[-34,-1],[-31,1],[-22,0],[-36,0],[-40,-1],[-31,0],[-9,0],[-37,0],[-1,0],[-106,0],[-179,-1],[-141,1],[-17,0],[-2,0],[-133,-1],[-26,0],[-213,-4],[-31,0],[-99,0],[-243,-1],[-8,0],[-73,0],[-174,0],[-60,-1],[-380,2],[-26,-3],[-103,1],[-108,-1],[-64,0],[-200,1],[-67,0],[-118,1],[-61,0],[-68,3],[-29,0],[-21,0],[-18,0],[-27,2],[-37,1],[-86,2],[-34,0],[-28,1],[-23,1],[-16,0],[-56,2],[-21,-2],[-22,-1],[-74,-2],[-71,0],[-30,0],[-27,1],[-16,-1],[-20,0],[-19,0],[-20,0],[-58,0],[-38,1],[-21,0],[-138,2],[-18,0],[-24,-1],[-108,1],[-5,0],[-28,0],[-21,0],[-7,0],[-30,-1],[-14,0],[-40,0],[-25,-1],[-39,0],[-38,1],[-26,-1],[-219,-1],[-8,0],[-31,0],[-39,1],[-27,1],[-15,0],[-22,1],[-2,0],[-8,0],[-7,0],[-21,1],[-50,1],[-22,0],[-22,0],[-17,1],[-18,0],[-2,-1],[-28,1],[-29,0],[-30,1],[-9,0],[18,56]],[[24590,25701],[11,31],[9,32],[3,12],[4,32],[-1,38],[-3,40],[-5,43],[-1,49],[1,11],[1,23],[2,37],[0,7],[9,27],[12,37],[11,30],[16,72],[40,142],[1,5],[7,24],[2,9],[14,53],[3,11],[3,10],[5,20],[7,16],[9,21],[19,43],[7,19],[6,35],[-3,33],[-87,110],[-52,65],[-78,108],[-18,25],[-18,27],[-3,4],[-20,29],[0,1],[-1,6],[-6,34],[-5,25],[-18,101],[-45,79],[-5,64],[-12,23],[-12,16],[-13,21],[-27,75],[-4,22],[0,4],[-11,69],[0,5],[-14,43],[-8,25],[-4,17],[-9,32],[-10,41],[-10,69],[0,4],[-3,62],[-2,26],[-1,14],[0,12],[-2,11],[-1,16],[-1,6],[-6,20],[-12,24],[-15,21],[-11,18],[-16,21],[-10,20],[-8,20],[-9,25],[-6,21],[-10,24],[-20,25],[-23,24],[-11,15],[-1,3],[-7,9],[-13,14],[-16,17],[-19,16],[-20,14],[-17,8],[-26,13],[-14,10],[-22,18],[-6,7],[-15,17],[-10,15],[-4,7],[-10,19],[-9,18],[-14,24],[-19,23],[-20,20],[-14,14],[-10,9],[-1,0],[-1,1],[-8,10],[-5,7],[-18,16],[-27,27],[-4,6],[-1,1],[-3,5],[-3,14],[-10,65],[-2,15],[-1,5],[-9,56],[-2,10],[-7,32],[-10,38],[-5,15],[-12,41],[-25,51],[-31,51],[-24,36],[-27,31],[-40,33],[-11,9],[-35,30],[-41,26],[-32,16],[-3,1],[-52,28],[-23,17],[-9,11],[-8,10],[-18,31],[-28,53],[-19,47],[-4,10],[-12,27],[-2,4],[-1,3],[-11,31],[-10,31],[-12,22],[-11,17],[-15,17],[-16,14],[-28,23],[-38,21],[-30,17],[-18,18],[-11,20],[-11,23],[-17,42],[-23,53],[-21,45],[-8,27],[-6,27],[-3,29],[1,35],[-5,36],[-1,1],[-2,11],[-3,18],[-10,25],[-14,20],[-5,8],[-7,8],[-76,84],[-45,50],[-6,8],[-36,46],[-15,19],[-10,13],[-72,97],[-22,24],[-28,22],[-32,25],[-34,26],[-46,35],[-77,44],[-87,50],[-21,25],[-5,12],[-43,107],[-29,53],[-38,46],[-137,145],[-16,36]],[[60298,29169],[0,-31],[1,-29],[0,-21],[0,-29],[1,-24],[1,-55],[0,-28],[1,-53],[0,-32],[1,-27],[0,-50],[0,-75],[0,-34],[0,-31],[-1,-26],[0,-31],[0,-58],[0,-38],[0,-24],[0,-40],[0,-21],[0,-5],[-1,-51],[-1,-17],[-1,-33],[0,-3],[-1,-41],[0,-7],[0,-14],[-1,-55],[-1,-94],[-3,-132],[2,-264],[0,-37],[2,-284],[1,-33],[0,-65],[1,-46],[0,-23],[0,-33],[0,-50],[1,-64],[0,-95],[0,-23],[0,-31],[1,-58],[0,-34],[0,-60],[0,-41],[1,-62],[0,-33],[0,-23],[0,-34],[0,-27],[1,-43],[0,-36],[0,-35],[0,-30],[1,-37],[0,-30],[0,-27],[0,-22],[0,-21],[0,-33],[0,-21],[0,-43],[0,-75],[0,-71],[0,-19],[0,-55],[1,-22],[0,-29],[0,-47],[0,-9],[0,-12],[0,-21],[0,-22],[0,-44],[0,-21],[0,-24],[0,-41],[1,-106],[-1,-74],[0,-75],[0,-75],[0,-76],[0,-74],[1,-78],[0,-75],[0,-77],[-1,-75],[-1,-76],[-1,-71],[-1,-82],[0,-74],[0,-76],[-1,-69],[0,-81],[-2,-187],[0,-16],[0,-27],[-1,-75],[-2,-73],[-4,-228]],[[60292,23730],[-30,0],[-16,0],[-37,-1],[-36,0],[-31,0],[-26,0],[-43,-1],[-35,0],[-31,0],[-16,-1],[-46,0],[-23,0],[-38,0],[-36,-1],[-69,0],[-19,0],[-39,-1],[-18,0],[-71,-1],[-18,0],[-41,0],[-53,-1],[-24,0],[-50,0],[-26,-1],[-19,0],[-76,0],[-23,-1],[-52,0],[-29,0],[-43,0],[-41,0],[-15,0],[-38,1],[-45,1],[-17,0],[-20,-2],[-18,-1],[-18,-1],[-23,-1],[-24,0],[-47,0],[-28,-1],[-18,0],[-78,0],[-19,0],[-31,0],[-48,0],[-24,0],[-24,1],[-18,0],[-33,0],[-19,1],[-29,0],[-30,0]],[[58473,23719],[-50,1],[-51,-1],[-41,0],[-8,0],[-26,0],[-33,0],[-71,0],[-21,0],[-140,-1],[-57,-1],[-26,0],[-28,-1],[-25,-1],[-19,0],[-25,-1],[-35,-1],[-23,-1],[-68,-2],[-79,-2],[-34,-1],[-28,-2],[-16,0],[-54,-2],[-21,-1],[-30,-1],[-28,0],[-65,-2],[-5,0],[-23,0],[-15,-1],[-37,0],[-27,-1],[-32,-1],[-36,0],[-16,0],[-30,0],[-34,-1],[-28,0],[-272,-3],[-125,2],[-30,-2],[1,44],[0,13],[1,12],[0,25],[1,29],[0,39],[0,28],[1,37],[-3,15],[-72,0],[-81,4],[-42,-1],[-53,-1],[-48,0],[-17,0],[-71,-1],[-16,0],[-48,-1],[-26,0],[-33,0],[-17,0],[-31,-1],[-20,0],[-16,0],[-37,-1],[-46,0],[-41,0],[-52,0],[-18,0],[-8,0],[-33,0],[-73,0],[-44,-1],[-15,0],[-34,0],[-50,-1],[-36,0],[-21,0],[-26,0],[-37,1],[-17,0],[-20,0],[-52,1],[-44,0],[-40,0],[-15,-1],[-4,0],[-19,0],[-30,0],[-29,0],[-42,0],[-19,0],[-31,-1],[-18,0],[-52,0],[-37,0],[-40,0],[-38,-1],[-73,-1]],[[54880,23928],[0,161],[0,44],[0,45],[0,78],[0,52],[-2,77],[0,11],[-1,57],[0,4],[2,77],[-1,22],[-2,21],[0,5],[2,15],[1,34],[1,225],[1,30],[0,64],[1,80],[0,112],[-4,153],[0,146],[0,71],[0,1],[0,94],[0,2],[0,85],[0,18],[0,36],[1,173],[2,49],[1,6],[0,39],[0,60],[0,75],[-1,200],[-1,115],[-1,29],[3,4],[3,3],[14,11],[15,3],[16,1],[16,1],[27,0],[23,10],[16,1],[17,1],[17,3],[2,1],[15,4],[17,5],[16,4],[15,-5],[15,6],[14,-9],[13,-16],[14,-10],[15,-5],[15,-5],[14,-7],[5,-2],[10,-3],[15,2],[1,0],[17,1],[16,0],[17,-1],[18,-1],[22,-2],[21,-1],[15,-2],[3,-1],[13,-2],[17,-4],[16,-3],[13,-2],[3,0],[15,1],[17,3],[17,0],[17,-1],[16,-2],[17,2],[2,23],[1,-20],[16,-3],[15,-1],[16,3],[15,4],[17,2],[18,1],[17,1],[16,0],[21,-2],[14,-2],[6,-2],[15,-4],[19,-6],[4,3],[10,8],[14,17],[-10,-19],[10,-16],[1,0],[14,-7],[5,-1],[13,-1],[17,-1],[16,-1],[19,1],[16,3],[12,16],[4,21],[3,-21],[11,-2],[5,-1],[8,10],[4,5],[14,7],[16,2],[17,0],[16,-3],[16,-3],[23,-6],[9,-2],[8,-2],[16,-4],[2,0],[-1,4],[0,23],[1,81],[-2,285],[-2,244],[-3,257],[0,31],[0,1],[-8,-4],[-7,-5],[-12,-2],[-7,-2],[-23,0],[-16,0],[-9,0],[-28,-8],[-22,-11],[-21,-20],[-21,-18],[-28,-24],[-16,-15],[-10,-6],[-2,0],[-5,-3],[-21,-2],[-16,1],[-11,0],[-5,1],[-33,3],[-19,4],[-21,7],[-9,3],[-23,19],[-6,9],[-2,3],[-5,8],[-6,10],[-15,32],[-3,5],[-16,36],[-3,7],[-4,11],[-1,4],[1,5],[4,21],[23,10],[13,4],[4,1],[2,0],[0,1],[5,20],[-13,14],[-8,21],[-4,24],[-25,-1],[0,107],[-1,63],[0,85],[0,4],[0,41],[-2,250],[-1,138],[0,2],[2,100],[0,155],[-1,57],[-1,102],[0,83],[0,30],[380,0],[74,0],[2,161],[0,33],[-1,122],[-1,23],[-2,49],[0,21],[-1,25],[-1,39],[-3,37],[1,8],[1,14],[7,318],[3,22],[-2,26],[-1,89],[-1,299],[-1,142],[-1,81],[0,93],[-1,44],[0,21],[0,6],[0,472],[0,66]],[[54880,23928],[-46,0],[-24,0],[-17,0],[-62,0],[-20,0],[-18,0],[-39,0],[-19,0],[-29,0],[-27,0],[-23,0],[-15,0],[-40,0],[-28,0],[-44,0],[-20,0],[-22,1],[-20,0],[-19,0],[-21,0],[-20,0],[-42,-1],[-33,0],[-27,0],[-34,-1],[-25,0],[-18,0],[-1,0],[-18,0],[-16,0],[-25,0],[-24,0],[-18,0],[-28,-1],[-25,-2],[-19,0],[-41,-1],[-30,0],[-34,-1],[-26,0],[-29,0],[-15,0],[-31,-2],[-8,0],[-13,0],[-15,1],[-18,0],[-15,0],[-39,0],[-15,-1],[-63,-5],[-119,-3],[-159,2],[-92,2],[-34,1],[-82,1],[-62,1],[-44,0],[-43,1],[-147,0],[-239,-1],[-38,0],[-60,0],[-29,1],[-5,0],[-49,0],[-184,0],[-117,-1],[-35,0],[-20,0],[-81,0],[-149,0],[-92,0],[-161,-1],[-19,0],[-1,0],[-201,-1],[-60,0],[-1,0],[-17,0],[-16,0],[-11,0],[-5,0],[-25,0],[-15,0],[-30,0],[-17,0],[-20,0],[-24,0],[-4,0],[-22,2],[-35,0],[-213,-1],[-15,0],[-19,0],[-28,0],[-139,0],[-84,0],[-87,0],[-11,0],[-27,0],[-120,0],[-17,1],[-104,-1],[0,1],[-2,3],[-3,2],[-4,0],[-34,0],[-44,-1],[-38,-1],[-80,0],[-15,1],[-53,-2],[-95,-3],[-52,0],[-168,0]],[[71193,29091],[1,-74],[1,-38],[0,-37],[2,-76],[1,-75],[1,-44],[0,-31],[1,-76],[2,-80],[0,-2],[1,-69],[1,-76],[1,-75],[0,-23],[0,-52],[1,-76],[0,-75],[0,-50],[0,-25],[0,-39],[1,-36],[0,-76],[1,-38],[0,-37],[0,-88],[0,-23],[1,-23],[0,-26],[0,-21],[0,-1],[0,-44],[0,-51],[0,-4],[0,-21],[0,-76],[1,-75],[0,-75],[0,-19],[0,-27],[0,-28],[0,-55],[0,-21],[1,-75],[0,-76],[1,-75],[1,-75],[1,-85],[2,-66],[0,-47],[1,-28],[0,-9],[0,-66],[0,-63],[0,-12],[0,-51],[0,-1],[1,-23],[0,-23],[0,-25],[0,-28],[1,-62],[0,-13],[0,-54],[0,-21],[1,-75],[0,-95],[0,-58],[0,-35],[0,-40],[0,-38],[0,-42],[0,-70],[-1,-41],[0,-38],[0,-71],[-1,-38],[0,-57],[-1,-55],[-1,-75],[0,-27],[0,-4],[-1,-45],[0,-7],[0,-26],[-1,-42],[1,-27],[0,-49],[1,-85],[0,-65],[1,-47],[0,-25],[0,-4],[1,-32],[1,-26],[0,-24],[0,-35],[1,-33],[1,-76],[0,-75],[1,-76],[0,-81],[1,-35],[0,-48],[1,-69],[-2,-44],[2,-20],[0,-21],[0,-60],[1,-54],[-3,-21],[3,-20],[0,-30],[0,-27],[0,-29],[1,-42],[0,-104],[1,-127],[0,-77],[0,-47],[0,-39],[0,-110],[-1,-31],[-1,-180],[-1,-82],[0,-41],[-1,-82],[0,-29],[0,-40],[-1,-75],[-1,-91],[0,-37],[0,-29],[-1,-71],[0,-76],[0,-76],[0,-21],[0,-21],[-1,-34],[0,-45],[0,-30],[0,-37],[0,-39],[-1,-76],[0,-28],[-1,-47],[-1,-48],[0,-28],[-1,-38],[0,-38],[-1,-76]],[[71214,21846],[-40,0],[-38,0],[-56,0],[-16,0],[-87,0],[-62,1],[-74,0],[-41,0],[-31,0],[-4,0],[-16,0],[-60,0],[-76,1],[-18,0],[-25,0],[-16,0],[-15,0],[-25,0],[-25,0],[-25,0],[-63,0],[-24,-1],[-21,1],[-46,0],[-71,-1],[-3,0],[-39,0],[-15,0],[-19,0],[-77,-1],[-4,0],[-3,0],[-8,0],[-38,0],[-24,-1],[-21,0],[-40,0],[-18,0],[-223,0],[-26,0],[-21,0],[-21,0],[-49,0],[-28,0],[-22,0],[-77,-1],[-59,0],[-40,1],[-35,0],[-76,1],[-39,0],[-36,1],[-75,1],[-75,0],[-30,0],[-45,1],[-25,0],[-29,0],[-21,0],[-40,1],[-34,0],[-26,0],[-50,1],[-75,1],[-21,0],[-19,0],[-36,0],[-15,0],[-46,1],[-21,0],[-68,1],[-85,0],[-26,0],[-40,0],[-39,0],[-47,1],[-16,0],[-48,0],[-28,0],[-18,0],[-21,0],[-17,0],[-65,0],[-78,0],[-151,2],[-25,0],[-117,2]],[[67606,21859],[0,151],[0,27],[1,48],[-1,71],[-1,80],[0,33],[1,23],[-1,26],[0,22],[-1,48],[0,28],[0,48],[0,75],[-1,41],[0,35],[0,24],[0,52],[0,75],[0,5],[0,71],[0,75],[-1,38],[0,38],[0,52],[0,24],[-1,113],[-1,39],[0,77],[-1,16],[0,59],[-1,63],[0,33],[0,36],[-1,36],[0,8],[0,50],[0,76],[-76,1],[-75,1],[-33,1],[-4,0],[-39,0],[-38,1],[-37,0],[-73,2],[-79,1],[-74,2],[-45,0],[-21,1],[-10,0],[-25,0],[-17,0],[-33,1],[-72,1],[-3,0],[-35,0],[-117,2],[-151,1],[-152,2],[-74,0],[-67,1],[-16,0],[-1,0],[-126,1],[-16,0],[-152,0],[-26,1],[-132,0],[-76,1],[-75,1],[-74,1],[-73,1],[-137,1],[-167,2],[-303,5],[-51,1],[-23,0],[-62,1],[-55,1],[-31,0],[-74,1],[-78,1],[-17,0],[-15,1],[-45,0],[-16,0],[-21,0],[-6,1],[-30,0],[-4,0],[-12,0],[-15,0],[-49,1],[-77,1],[-56,0],[-22,0],[-42,1],[-33,0],[-33,0],[-80,1],[-67,1],[-82,1],[-75,0],[-24,1],[-3,0],[-20,0],[-28,0],[-56,0],[-20,0],[-27,0],[-44,0],[-35,0],[-27,0],[-18,0],[-52,0],[-22,0],[-25,0],[-2,0],[-47,1],[-27,0],[-25,0],[-25,0],[-42,0],[-27,0],[-80,0],[-58,0],[-19,0],[-43,0],[-19,0],[-18,0],[-1,0],[-33,0],[-24,0],[-41,0],[-27,0],[-22,0],[-33,0],[-17,0],[-26,0],[-18,0],[-18,-1],[-17,0],[-16,0],[-5,0],[-31,0],[-22,0],[-23,0],[-21,0],[-19,-1],[-35,0],[-25,0],[-21,0],[-13,0],[-6,0],[-31,0],[-52,0],[-21,0],[-45,0],[-35,-1],[-30,0],[-23,0],[-20,0],[-48,0],[-52,-1],[-28,0],[-27,0],[-56,0],[-74,-1],[-78,1],[-78,0],[-76,0],[-21,0],[-34,0],[-16,0],[-35,0],[-44,0],[-76,0],[-77,0],[-33,0],[-41,0],[-76,0],[-76,0],[-39,0],[-36,0],[-19,1],[-55,0],[-21,0],[-16,0],[-82,2],[-20,0],[-15,0],[-73,1],[-77,1],[-75,2],[-40,1],[-35,0],[-76,2],[-35,0],[-46,2]],[[76761,21849],[-124,-1],[-157,0],[-14,0],[-132,0],[-150,1],[-82,-1],[-4,0],[-108,2],[-231,1],[-5,0],[-22,0],[-148,1],[-155,1],[-300,3],[-148,-1],[-81,1],[-75,-2],[-281,-4],[-24,2],[-1,0],[-69,-3],[-155,-3],[-34,0],[-2,0],[-32,0],[-23,-2],[-71,1],[-59,-2],[-27,0],[-128,-2],[-186,2],[-51,0],[-122,3],[-38,-1],[-34,-1],[-165,-7],[-298,-3]],[[73025,21834],[-136,0],[-19,0],[-53,0],[-13,0],[-31,0],[-52,1],[-298,1],[-65,-1],[-16,-1],[-69,0],[-132,0],[-19,1],[-188,2],[-47,1],[-66,1],[-56,1],[-250,6],[-301,0]],[[38811,23884],[-1,-202],[1,-66],[2,-35],[0,-29],[1,-47],[0,-73],[1,-53],[3,-101],[3,-205],[1,-102],[1,-70],[0,-23],[1,-67],[2,-127],[2,-178],[0,-33],[1,-52],[3,-70],[2,-37],[-2,-119],[0,-29],[1,-89]],[[38833,22077],[-63,0],[-16,0],[-70,0],[-61,0],[-68,-1],[-187,1],[-194,1],[-1,0],[-17,0],[-139,0],[-151,0],[-87,-1],[-64,0],[-587,-5],[-38,-1],[-16,0],[-54,-1],[-78,0],[-27,0],[-16,0],[-197,-3],[-44,-1],[-26,0],[-15,0],[-52,-1],[-57,-1],[-27,-1],[-22,0],[-17,-1],[-20,-2],[-27,2],[-22,2],[-38,-1],[-29,0],[-22,0],[-70,-1],[-34,-1],[-46,0],[-25,0],[-80,-3],[-35,-1],[-22,1],[-22,-1],[-30,0],[-16,0],[-120,-3],[-205,-2],[-57,0],[-21,0],[-300,0],[-153,0],[-273,0],[-31,0],[-69,0],[-27,0],[-73,0],[-200,0],[-220,0],[-54,1],[-29,0],[-96,0],[-49,0],[-152,-1],[-77,-3],[-47,5],[-32,1],[-23,0],[-16,0],[-42,0],[-1,0],[-51,0],[-85,0],[0,-28],[0,-33],[1,-25],[2,-146],[4,-294],[1,-81],[4,-178],[2,-40],[2,-81],[0,-23],[1,-23],[0,-23],[1,-3],[1,-45],[0,-13],[0,-19],[4,-47],[4,-103],[5,-162],[2,-54],[2,-58],[3,-84],[4,-95],[4,-128],[0,-23],[0,-73],[1,-97],[0,-35],[-1,-46],[0,-177],[-1,-82],[1,-157],[2,-180],[0,-1],[-1,-22],[-2,-23]],[[33447,19353],[-76,-4],[-40,-2],[-37,-2],[-75,-3],[-29,-2],[-47,-2],[-55,4],[-18,2],[-118,11],[-28,1],[-22,2],[-61,5],[-42,-1],[-19,0],[-512,23],[-49,-3],[-141,-15],[-122,-13],[-21,0],[-14,0],[-55,1],[-222,4],[-135,4],[-15,2],[-146,2],[-142,4],[-124,-1],[-33,0],[-153,0],[-130,-1],[-81,1],[-80,0],[-20,0],[-212,-1],[-37,0],[-177,1],[-91,0],[-2,0],[-16,0],[-132,1],[-557,0],[-86,1],[-28,0],[-33,0],[-76,0],[-122,0],[-76,0],[-152,1],[-72,-5],[-88,-1],[-24,0],[-33,-1],[-117,-2],[-20,0],[-412,-1],[-108,0],[-178,0],[-148,-1],[-207,1],[-140,0],[-139,-1],[-55,0],[-117,-1],[-92,-4],[-46,-1],[-221,-2],[-24,0],[-93,0],[-141,0],[-224,0],[-249,0],[-147,-1],[-49,0],[-16,0],[-106,-1],[-19,0],[-26,0],[-1,0],[-16,0],[-29,0],[-6,0],[-11,0],[-27,0],[-7,0],[-11,0],[-9,0]],[[25360,19352],[-42,60],[-79,111],[-146,190],[-82,109],[-52,109],[-2,3],[-1,17],[-11,111],[-1,14],[14,47],[19,21],[45,48],[5,5],[46,40],[63,120],[35,108],[16,49],[15,48],[11,76],[-4,21],[-34,153],[-7,84],[9,69],[0,2],[-1,43],[0,6],[-2,62],[0,10],[0,6],[0,28],[3,24],[6,26],[-1,41],[-14,41],[-61,67],[-4,5],[-26,22],[-13,11],[-49,31],[-24,13],[-27,25],[-17,24],[-14,35],[-13,60],[-15,53],[-15,38],[-38,62],[-5,8],[-32,43],[-2,3],[-20,38],[-3,26],[-2,20],[-9,64],[0,2],[1,23],[0,11],[4,37],[3,12],[6,21],[15,44],[23,45],[30,41],[36,54],[28,46],[4,12],[20,52],[7,45],[2,56],[5,35],[1,5],[1,22],[2,29],[0,6],[1,16],[1,12],[0,1],[1,29],[1,22],[-1,11],[-6,64],[-13,35],[-27,42],[-22,30],[-11,14],[-37,44],[-49,52],[-16,17],[-24,26],[-44,49],[-33,31],[-42,45],[-80,65],[-51,56],[-52,79],[-48,98],[-7,13],[-3,26],[6,58],[7,62],[2,20],[-4,35],[-3,37],[0,12],[58,163],[21,63],[12,74],[-6,48],[-2,14],[-5,23],[-5,20],[-4,17],[-18,31],[-31,28],[-34,28],[-21,26],[-15,38],[-3,18],[0,2],[-1,12],[-5,31],[0,2],[-1,5],[4,28],[2,9],[0,28],[-9,53],[-10,55],[-1,35],[8,28],[14,33],[9,32],[-7,26],[-13,28],[-2,26],[8,48],[20,53],[5,64],[2,29],[19,79],[6,23],[6,41],[9,59],[-3,91],[-1,31],[-2,64],[-4,93],[0,15],[8,38],[0,1],[20,47],[26,38],[36,52],[17,25],[39,82],[15,53],[16,50]],[[58473,23719],[-4,-167],[1,-104],[0,-184],[0,-189],[0,-103],[-2,-116],[0,-94],[0,-125],[-2,-103],[1,-8],[0,-29],[1,-110],[0,-54],[0,-72],[0,-81],[0,-61],[0,-5],[1,-14],[1,-14],[0,-2],[0,-24],[0,-27],[0,-32],[0,-27],[0,-26],[0,-27],[0,-37],[1,-37],[0,-38],[0,-50],[1,-24],[0,-1],[0,-31],[0,-29],[0,-34],[2,-15],[0,-8],[1,-5],[1,-102],[1,-39],[1,-90],[0,-102],[1,-46],[2,-199],[0,-85],[1,-84],[1,-21],[0,-2],[0,-66],[0,-43],[1,-62],[0,-167],[-1,-53],[0,-22],[0,-31],[1,-58],[0,-22],[0,-25],[0,-35],[0,-36],[0,-27],[0,-30],[0,-55],[0,-24],[1,-44],[0,-32],[1,-39],[1,-28],[0,-49],[1,-24],[0,-37],[1,-36],[0,-24],[0,-22],[0,-46],[4,-88],[0,-34],[2,-95],[1,-40],[2,-132],[2,-133],[1,-83],[-2,-151],[3,-137],[1,-28],[0,-38],[0,-37],[1,-33],[0,-25],[0,-30],[0,-25],[3,-21],[-1,-23],[-2,-31],[4,-95],[0,-29],[1,-42],[-3,-25],[0,-44],[-18,0],[-45,-1],[-1,-88],[0,-46],[-1,-24],[0,-26],[0,-34],[0,-23],[-1,-27],[0,-7],[0,-24],[0,-26],[0,-21],[-1,-28],[0,-29],[-3,-40],[0,-21],[-1,-14],[0,-9],[0,-87],[0,-25],[-1,-1],[0,-20],[0,-40],[0,-2],[0,-23],[6,-19],[-2,-45],[0,-15],[-1,-14],[0,-12],[-1,-18],[0,-42],[0,-40],[-1,-36],[0,-32],[0,-21],[-2,-22],[0,-21],[-1,-246],[0,-7],[3,-25],[1,-51],[0,-24],[0,-49],[0,-32],[2,-109],[0,-25],[0,-41],[0,-23],[0,-24],[0,-40],[1,-62],[0,-24]],[[58439,16481],[-37,-1],[-265,-17],[-3,0],[-20,-1],[-19,-1],[-29,-1],[-44,-2],[-41,-2],[-144,-8],[-164,-2],[-37,-1],[-98,-1],[-2,0],[-58,-2],[-106,-2],[-30,0],[-1,0],[-70,-2],[-17,0],[-16,-1],[-70,0],[-44,-1],[-142,0],[-32,-2],[-53,-1],[-29,-1],[-21,0],[-70,0],[-52,0],[-22,0],[-18,0],[-31,0],[-16,0],[-47,1],[-27,0],[-16,0],[-47,1],[-74,1],[-20,0],[-15,1],[-39,0],[-38,0],[-17,0],[-20,1],[-18,0],[-46,0],[-15,0],[-39,-1],[-26,-1],[-35,0],[-37,-3],[-21,0],[-100,2],[-18,0],[-71,0],[-16,0],[-22,0],[-24,0],[-33,1],[-24,0],[-42,0],[-94,-1],[-20,0],[-23,0],[-15,-1],[-81,5],[-21,-1],[-16,-6],[-17,-9],[-18,11],[-16,0],[-138,-2],[-52,-1],[-56,-1],[-35,0],[-70,-3],[-80,-1],[-42,0],[-17,-1],[-70,-3],[-79,-2],[-229,-6],[-221,-6],[-297,-9],[-31,0],[-24,0],[-38,1],[-27,0],[-15,0],[-35,0],[-29,0],[-11,0],[-29,0],[-58,1],[-3,0],[-23,1],[-25,0],[-20,0],[-44,1],[-16,0],[-17,1],[-15,0],[-16,0],[-61,1],[-19,0],[-40,1],[-47,0],[-31,0],[-54,1],[-16,-1],[-112,0],[-2,0],[-18,-1],[0,23],[0,9],[0,43],[-1,29],[0,59],[0,21],[0,26],[0,29],[-5,29],[-20,0],[-58,0],[-35,0],[-21,0],[-4,0],[-19,0],[-39,0],[-22,0],[-33,0],[-42,0],[-20,0],[-43,0],[-31,0],[-47,0],[-16,0],[-29,0],[-29,0],[-61,1],[-21,0],[-52,0],[-20,0],[-20,1],[-23,0],[-23,0],[-33,0],[-20,1],[-40,-1],[-68,0],[-125,0],[-20,0],[-154,0],[-16,1],[-16,0],[-18,0],[-30,0],[-29,0],[-18,0],[-23,0],[-17,0],[-23,0],[-20,0],[-48,0],[-25,0],[-30,0],[-66,-1],[-23,0],[-23,0],[-27,0],[-29,0],[-24,0],[-30,0],[-37,-1],[-34,0],[-67,-1],[-22,0],[-149,-2],[-28,-1],[-21,0],[-46,-1],[-16,0],[-16,-1],[-19,0],[-23,-1],[-66,0],[-38,0],[-23,-1],[-18,1],[-30,0],[-8,-1],[-11,-2],[-252,-2],[-18,-1],[-34,0],[-4,0],[-27,0],[-58,0],[-246,-1],[-19,0],[-233,-3],[-289,-2],[-93,0],[-3,0],[-17,0],[-19,0],[-80,0],[-13,0],[-9,0],[-49,-1],[-10,0],[-11,0],[-61,1],[-82,0],[-3,0],[-31,0],[-19,0],[-24,0],[-70,1],[-17,-1],[-30,0],[-22,0],[-48,0],[-22,0],[-25,0],[-16,0],[-19,0],[-15,0],[-16,0],[-42,0],[-18,-5],[-15,1],[-34,0],[-34,1],[-173,4],[-267,-3],[-232,0],[-28,0],[-33,-1],[-4,0],[-24,0],[-16,0],[-32,-1],[-23,-1]],[[47728,16649],[-10,24],[-25,57],[-63,69],[-1,1],[0,1],[11,71],[6,43],[6,94],[1,4],[2,41],[32,96],[19,32],[37,51],[42,36],[32,20],[27,7],[7,2],[35,32],[56,50],[10,10],[3,5],[31,76],[40,96],[45,86],[38,62],[40,62],[28,37],[25,35],[49,69],[7,12],[19,34],[17,44],[51,44],[10,3],[47,10],[14,10],[12,8],[48,-3],[11,-1],[8,0],[2,-2],[41,-24],[45,-3],[118,-10],[10,-1],[63,13],[16,9],[25,16],[29,9],[40,17],[58,33],[15,7],[54,5],[28,-2],[2,0],[17,4],[35,15],[26,12],[32,15],[38,19],[11,4],[17,9],[3,3],[11,5],[5,4],[42,24],[5,3],[33,23],[16,12],[24,17],[24,18],[13,11],[4,3],[10,8],[5,5],[37,31],[18,15],[33,28],[29,36],[-1,130],[0,3],[-3,170],[3,32],[0,24],[0,35],[0,24],[0,35],[0,31],[0,43],[0,55],[1,26],[0,36],[0,33],[0,32],[0,36],[0,44],[2,26],[-1,9],[-2,42],[-1,40],[-1,224],[-1,204],[0,23],[3,381],[0,97],[0,33],[2,93],[0,27],[3,42],[2,185],[-1,116],[0,21],[1,54],[-1,27],[0,50],[0,34],[0,85],[0,4],[2,78],[0,41],[2,119],[1,10],[0,31],[1,61],[1,39],[1,53],[2,100],[2,137],[0,10],[1,35],[3,203],[0,28],[0,63],[-3,79],[9,27],[-21,24],[-13,4],[-73,50],[-92,59],[-32,-20],[-9,-5],[-67,-38],[-60,-15],[-59,1],[-25,15],[-39,3],[-62,-7],[-46,-47],[-75,7],[-25,10],[-22,13],[-22,4],[-41,17],[-129,87],[-12,10],[-49,42],[-44,22],[-39,11],[-22,2],[-12,-5],[-24,-21],[-34,-9],[-45,-25],[-38,-20],[-71,-20],[-2,1],[-47,19],[-34,-4],[-91,-10],[-25,-17],[-1,-1],[-39,2],[-21,13],[-9,6],[-103,15],[-87,12],[-62,1],[-109,10],[-36,13],[-20,25],[-21,26],[-29,35],[-11,49],[8,66],[22,38],[33,34],[8,8],[43,39],[14,18],[14,17],[21,18],[9,16],[29,32],[7,8],[13,21],[39,82],[6,42],[-4,5],[-12,16],[-56,16],[-37,2],[-46,2],[-8,0],[-10,-6],[-17,-12],[-91,-11],[-20,-7],[-31,2],[-104,38],[-45,48],[-63,64],[-38,26],[-34,-37],[-17,-15],[-40,2],[-22,4],[-32,37],[-5,5],[-49,70],[-4,6],[-24,27],[-14,11],[-5,4],[-12,5],[-16,6],[-15,17],[-1,16],[0,12],[0,3],[3,8],[28,82],[-1,1],[-25,29],[-35,41],[-11,17],[-3,5],[-20,30],[21,54],[2,6],[19,47],[10,11],[0,7],[1,23],[0,5],[-6,5],[0,2],[-3,4],[-18,16],[-13,13],[-21,26],[-13,15],[-21,31],[-10,29],[-14,20],[-12,15],[-17,15]],[[47728,16649],[50,-25],[29,-86],[7,-48],[0,-17],[7,-129],[0,-4],[-7,-15],[-6,-14],[-17,-41],[-33,-60],[-4,-9],[-18,-41],[-22,-48],[-32,-17],[-35,-37],[-36,-38],[-12,-22],[-17,-29],[-21,-37],[-32,-26],[-15,-8],[-49,-27],[-80,-22],[-39,-37],[-6,-10],[-35,-60],[-13,-33],[-13,-27],[-2,-28],[-13,-21],[-89,-78],[-34,-12],[-54,-11],[-106,16],[-25,-1],[-49,-20],[-69,-1],[-35,0],[-5,-5],[-21,-16],[-46,-11],[-56,4],[-21,25],[-13,13],[-33,3],[-25,-8],[-4,-2],[-84,0],[-5,2],[-38,-7],[-21,-7],[-8,-5],[-17,-10],[-10,-6],[-47,-64],[-3,-5],[-78,-115],[-9,-11],[-4,-22],[-133,-185],[-27,-34],[-23,-21],[-32,-27],[-32,-36],[-1,-25],[7,-17],[-1,-8],[-1,-17],[-12,-35],[-32,-14],[-14,-17]],[[45954,14843],[-16,-18],[-13,-14],[-14,-25],[-15,-17],[-40,-24],[-6,-5],[-32,-18],[-49,-27],[-28,-13],[-44,-21],[-22,-33],[-12,-10],[-14,-5],[-45,0],[-11,4],[-11,13],[-7,8],[-47,-2],[-2,0],[-28,4],[-25,-1],[-7,-1],[-11,-2],[-22,2],[-23,5],[-31,2],[-55,-12],[-5,-2],[-24,-9],[-5,-2],[-28,-15],[-22,-15],[-20,-14],[-10,-6],[-21,-17],[-11,-2],[-18,-4],[-56,1],[-14,-5],[-65,-46],[-57,-24],[-12,-5],[-6,1],[-8,-1],[-47,2],[-57,5],[-1,1],[-29,6],[-4,0],[-21,5],[-2,0],[-47,1],[-41,4],[-18,4],[-9,1],[-38,14],[-44,16],[-20,5],[-17,1],[-27,1],[-19,1],[-13,1],[-33,1],[-36,5],[-5,1],[-22,5],[-26,6],[-19,5],[-2,1],[-35,11],[-33,9],[-20,0],[-26,-2],[-20,-5],[-4,-2],[-29,-9],[-18,-3],[-28,-3],[-31,-2],[-42,3],[-28,4],[-47,5],[-42,11],[-27,6],[-22,6],[-27,4],[-18,4],[-18,6],[-6,3],[-16,8],[-32,13],[-6,0],[-13,2],[-33,0],[-25,-1],[-28,0],[-28,-2],[-29,-2],[-19,-3],[-36,-7],[-24,-6],[-17,-4],[-2,0],[-21,-8],[-52,-27],[-41,-26],[-27,-19],[-34,-23],[-25,-18],[-85,-59],[-52,-26],[-30,-20],[-20,-19],[-23,-31],[-12,-29],[-19,-48],[-14,-20],[-12,-16],[-33,-36],[-8,-7],[-19,-18],[-107,-66],[-3,-1],[-17,-13],[-27,-15],[-15,-8],[-15,-12],[-21,-10],[-16,-19],[1,-42],[8,-43],[1,-13],[1,-33],[-15,-35],[-10,-20],[-1,-3],[-16,-25],[-13,-26],[-3,-47],[8,-32],[6,-20],[-10,-26],[-8,-25],[-19,-18],[-27,-11],[-1,0],[-26,-6],[-23,-3],[-19,1],[-1,0],[-3,2],[-18,9],[-28,30],[-42,52],[-43,41],[-35,19],[-31,22],[-4,3],[-17,18],[-41,59],[-32,42],[-32,30],[-28,12],[-30,10],[-13,2],[-12,1],[-18,0],[-20,-5],[-3,-1],[-25,-7],[-22,-6],[-11,-4],[-18,-6],[-10,-4],[-28,-9],[-19,-2],[-27,3],[-22,-1],[-30,4],[-21,4],[-18,1],[-31,-1],[-27,-2],[-21,-2],[-18,-4],[-23,9],[-23,5],[-25,2],[-32,5],[-33,9],[-35,23],[-26,13],[-18,8],[-21,7],[-30,9],[-24,11],[-16,7],[-12,3],[-3,1],[-29,3],[-26,3],[-34,0],[-21,1],[-7,1],[-1,0],[-26,4],[-36,2],[-22,3],[-13,3],[-6,1],[-19,3],[-29,1],[-35,1],[-7,0],[-16,0],[-22,-1],[-24,-2],[-20,-5],[-24,-10],[-21,-11],[-17,-12],[-7,-5],[-18,-15],[-17,-12],[-31,-23],[-5,-3],[-16,-11],[-14,-9],[-13,-13],[-23,-18],[-18,-13],[-17,-13],[-22,-12],[-19,-8],[-25,-6],[-19,-2],[-7,-1],[-16,9],[-12,16],[-10,20],[-7,12],[-16,42],[-28,17],[-17,10],[-18,11],[-18,7],[-16,8],[-1,1]],[[40597,13979],[12,25],[0,1],[4,12],[3,8],[1,48],[0,37],[0,31],[0,35],[0,31],[-1,27],[1,11],[0,14],[0,21],[0,30],[1,23],[-2,33],[0,38],[0,39],[0,22],[0,49],[0,22],[0,90],[0,103],[1,62],[0,57],[0,24],[0,106],[0,68],[0,57],[0,28],[3,87],[1,40],[0,22],[-3,83],[0,90],[-1,280],[11,24],[-1,33],[-8,212],[2,198],[1,175],[0,36],[3,88],[0,26],[1,27],[1,106],[0,35],[0,35],[1,24],[0,105],[0,11],[-2,33],[0,3],[5,34],[-1,16],[0,96],[0,20],[-1,41],[0,35],[-5,290],[9,419],[2,85],[-4,28],[1,27],[-3,37],[-1,139],[-3,184],[0,106],[1,129],[0,63],[0,54],[0,1],[-1,25],[1,85],[1,75],[-1,129],[1,135],[0,155],[0,52],[0,23],[0,83],[0,72],[1,85],[-1,32],[0,95],[0,91],[1,210],[0,3],[0,22],[0,168],[0,28],[0,156],[0,54],[-1,47],[1,34],[2,45],[-2,31],[0,93],[0,217],[-2,88],[-1,40],[-1,86],[-2,134],[-1,92],[0,22],[0,26],[0,43],[1,31],[1,34],[-1,30],[0,42],[0,12],[0,28],[0,172],[0,47],[0,53],[2,94],[0,41],[1,29],[-72,-1],[-70,-1],[-65,-1],[-17,-5],[-29,1],[-19,2],[-17,1],[-21,1],[-16,-1],[-49,0],[-49,0],[-52,-1],[-42,0],[-53,0],[-19,-1],[-53,-1],[-41,-1],[-65,-1],[-127,-5],[-15,0],[-16,4],[-25,-4],[-34,0],[-64,-2],[-21,0],[-128,-3],[-19,0],[-71,0],[-21,-1],[-16,0],[-43,0],[-53,-2],[-182,1],[-16,0],[-33,0],[-23,0],[-19,1],[-47,0],[-45,0],[-25,0]],[[67606,21859],[1,-49],[-1,-36],[-2,-45],[0,-4],[-2,-34],[0,-2],[-1,-110],[0,-138],[0,-121],[0,-62],[0,-7],[1,-113],[7,-125],[0,-1],[-5,-59],[0,-74],[1,-23],[-1,-36],[-1,-168],[0,-144],[-2,-297],[2,-156],[0,-2],[0,-136],[-6,-149],[-2,-153],[-4,-277],[0,-4],[3,-403],[1,-47],[0,-26],[-1,-46],[-1,-32],[0,-4],[-1,-225],[0,-147],[-3,-49],[-5,-105],[-225,4],[-27,-2],[0,-103],[-3,-224],[0,-152],[0,-43],[0,-30],[1,-79],[0,-86],[0,-1],[-1,-40],[-1,-35],[-1,-29],[0,-2],[0,-103],[1,-2],[-3,-301],[-1,-150],[-1,-152],[-2,-169],[0,-43],[0,-44],[-3,-47],[3,-76],[0,-52],[-1,-22],[4,-223],[1,-38],[4,-186],[0,-2],[0,-59],[2,-90],[1,-14],[2,-22],[-2,-119],[3,-191],[1,-113],[0,-31],[-1,-74],[0,-31],[2,-85],[1,-41],[0,-42],[3,-299]],[[67341,14607],[-44,3],[-126,7],[-132,5],[-97,-1],[-203,7],[-20,0],[-17,0],[-38,1],[-52,0],[-16,0],[-18,1],[-25,0],[-21,0],[-45,0],[-28,0],[-15,0],[-29,0],[-21,0],[-23,1],[-86,0],[-273,-3],[-17,0],[-12,0],[-15,0],[-19,0],[-31,0],[-21,0],[-48,1],[-98,2],[-45,1],[-59,1],[-80,2]],[[65567,14635],[-69,2],[-19,2],[-103,3],[-57,0],[-1,0],[-421,9],[-76,1],[-45,0],[-31,0],[-52,1],[-96,1],[-44,-1],[-53,1],[-79,0],[-199,3],[-114,0],[-19,0],[-56,0],[-116,0],[-103,0],[-30,3],[-153,-1],[-126,-3],[-21,-1],[-23,0],[-22,0],[-59,1],[-44,0],[-45,1],[-71,0],[-49,1],[-36,0],[-19,0],[-16,1],[-1,0],[-38,1],[-41,1],[-19,0],[-17,1],[-29,0],[-22,1],[-27,1],[-2,0],[-15,0],[-44,2],[-25,0],[-18,1],[-17,0],[-39,0],[-19,2],[-7,0],[-14,1],[-21,0],[-19,0],[-1,0],[-19,0],[-18,1],[-18,0],[-20,1],[-12,0],[-21,1],[-29,-1],[-73,1],[-1,0],[-16,1],[-1,0],[-24,0],[-20,0],[-36,0],[-17,1],[-24,-1],[-38,0],[-36,0],[-2,0],[-34,-1],[-46,0],[-101,1],[-51,0],[-1,0],[-77,1],[-92,0],[-60,0],[-70,-1],[-87,1],[-198,2],[-15,0],[-6,1],[-33,0],[-82,0],[-34,-1],[-148,2],[-1,0],[-16,0],[-128,-1],[-8,0],[-19,0],[-69,0],[-68,0],[-66,1],[-77,0],[-102,1],[-56,-1],[-15,-3],[-1,0],[-35,-4],[-58,1],[-156,1],[-20,-1],[-3,0],[-37,0],[-102,-1],[-46,2],[-31,1],[-217,-2],[-93,0],[-75,3],[-91,0],[-122,0],[-45,1],[-111,0],[-78,0],[-87,0],[-5,0],[-26,0],[-16,0],[-36,0],[-24,1],[-6,1],[-15,-1],[-129,0],[-26,0],[-48,0],[-19,0],[-3,0],[-40,0],[-104,-1],[-31,-7],[-102,-1]],[[58442,14669],[1,64],[1,121],[2,117],[-1,224],[0,35],[0,5],[1,39],[2,208],[-2,44],[0,49],[1,182],[1,52],[0,65],[-2,129],[-1,25],[0,41],[-1,35],[-1,73],[0,29],[0,156],[0,45],[-1,34],[-3,40]],[[40597,13979],[-20,12],[-17,14],[-21,14],[-20,11],[-23,7],[-19,8],[-28,11],[-17,6],[-20,7],[-20,8],[-37,20],[-18,14],[-14,12],[-14,11],[-16,7],[-33,7],[-34,13],[-15,9],[-22,12],[-15,13],[-18,13],[-18,14],[-28,23],[-23,24],[-13,12],[-20,23],[-12,13],[-8,8],[-11,10],[0,1],[-11,10],[-8,8],[-14,18],[-2,3],[-2,2],[-26,27],[-16,16],[-14,12],[-23,25],[-24,24],[-26,18],[-17,8],[-15,7],[-10,5],[-8,4],[-15,6],[-2,1],[-1,0],[-3,1],[-23,6],[-3,2],[-11,7],[-21,13],[-17,24],[-24,24],[-16,13],[-9,7],[-20,16],[-22,17],[-14,6],[-7,3],[-17,1],[-15,-3],[-26,-5],[-27,-2],[-30,-5],[-20,-4],[-23,-9],[-15,-7],[-28,-14],[-24,-9],[-8,-3],[-20,-8],[-22,-6],[-20,0],[-16,5],[-22,9],[-18,9],[-2,1],[-12,15],[-2,2],[-3,3],[-5,52],[-15,48],[-18,26],[-18,32],[-21,24],[-22,23],[-20,16],[-28,11],[-10,4],[-21,7],[-20,6],[-30,3],[-17,-4],[-9,-2],[-27,-6],[-23,-7],[-17,-2],[-17,-6],[-16,-3],[-2,0],[-21,-3],[-19,-3],[-22,9],[-24,4],[-33,3],[-43,-2],[-5,0],[-34,-2],[-33,5],[-12,3],[-25,5],[-44,16],[-28,9],[-31,9],[-52,7],[-25,-1],[-21,-4],[-30,2],[-18,2],[-30,-5],[-86,6],[-32,-4],[-28,-15],[-2,-1],[-21,-9],[-18,-2],[-3,0],[-13,-2],[-30,-6],[-25,-6],[-16,-4],[-18,-2],[-17,-2],[-27,-5],[-24,-4],[-33,-7],[-34,-11],[-30,-10],[-31,-5],[-45,-16],[-28,-9],[-25,-5],[-22,-5],[-29,-5],[-26,-4],[-27,-1],[-22,1],[-19,1],[-24,-5],[-20,-7],[-23,-9],[-23,-7],[-24,-6],[-36,-8],[-28,-3],[-28,-8],[-25,-9],[-16,-1],[-17,6],[-19,4],[-37,11],[-25,7],[-30,4],[-32,2],[-19,0],[-34,-6],[-28,-7],[-20,-3],[-15,0],[-26,-1]],[[37043,14737],[-21,-4],[-33,-7],[-15,-2],[-7,-1],[-22,-3],[-20,-5],[-25,-5],[-19,0],[-28,3],[-4,0],[-16,1],[-5,1],[-5,1],[-11,2],[-13,5],[-28,9],[-38,19],[-35,13],[-20,0],[-15,-6],[-16,-10],[-17,-12],[-24,-2],[-20,1],[-27,3],[-26,10],[-19,8],[-9,2],[-7,1],[-38,7],[-36,5],[-41,7],[-20,1],[-33,5],[-35,6],[-18,5],[-22,10],[-7,2],[-21,13],[-17,8],[-5,2],[-38,7],[-21,6],[-27,2],[-20,-3],[-21,-4],[-31,-5],[-15,4],[-17,18],[-15,7],[-16,9],[-26,8],[-29,12],[-21,9],[-24,2],[-3,-1],[-23,-5],[-17,-1],[-20,-1],[-4,0],[-11,-1],[-17,-6],[-7,-2],[-12,-3],[-18,-4],[-1,0],[-20,-5],[-19,-7],[-18,-4],[-1,0],[-15,-5],[-19,1],[-16,3],[-8,4],[-7,4],[-29,3],[-20,2],[-11,-1],[-11,-2],[-20,3],[-32,8],[-36,8],[-23,11],[-17,5],[-24,21],[-13,14],[-11,7],[-7,3],[-7,2],[-5,0],[-8,2],[-20,3],[-9,-1],[-22,-1],[-24,-11],[-17,-8],[-12,-7],[-6,-3],[-28,-15],[-27,-16],[-27,-13],[-8,-4],[-16,-8],[-15,-8],[-18,-4],[-10,-2],[-17,1],[-47,-5],[-40,-10],[-19,-7],[-21,-6],[-33,-3],[-32,-5],[-40,-6],[-42,-10],[-26,-10],[-32,-11],[-18,-10],[-13,-12],[-17,-7],[-15,-8],[-25,-10],[-25,-20],[-14,-16],[-22,-26],[-17,-14],[-14,-15],[-8,-20],[-9,-16],[-5,-9],[-15,-9],[-16,-15],[-13,-12],[-14,-11],[-14,-16],[-14,-15],[-15,-15],[-18,-15],[-2,-2],[-22,-26],[-19,-18],[-12,-14],[0,-1],[-14,-18],[-33,-21],[-23,-7],[-52,2],[-49,2],[-17,-1],[-10,-4],[-7,-2],[-16,-6],[-18,-3],[-12,-3],[-3,-1],[-24,-5],[-21,-8],[-16,-10],[-20,-9],[-14,-14],[-37,-27],[-24,-11],[-26,-5],[-16,-3],[-23,5],[-25,3],[-31,-12],[-15,-9],[-24,-15],[-29,-15],[-24,-15],[-21,-14],[-17,-15],[-13,-13],[-14,-9],[-9,-6],[-23,-16],[-1,0],[-21,-16],[-58,-15],[-66,9],[-30,5]],[[33474,14131],[0,2],[0,77],[0,115],[0,1],[0,114],[-1,46],[0,3],[0,23],[0,21],[0,299],[0,64],[0,32],[0,202],[0,202],[-1,136],[0,187],[0,46],[0,55],[2,52],[3,246],[2,26],[1,41],[0,35],[1,21],[0,34],[1,189],[1,167],[0,36],[0,28],[0,69],[1,64],[0,99],[1,98],[0,24],[0,35],[1,212],[2,24],[-1,244],[0,8],[0,106],[0,5],[0,24],[0,146],[0,121],[0,40],[0,31],[0,4],[-3,370],[2,92],[-40,1],[1,250],[0,173],[0,44],[0,45],[0,69],[0,219],[0,105]],[[75250,14551],[-39,2],[-59,2],[-81,-2],[-145,2],[-1,0],[-52,-2],[-27,0],[-18,0],[-15,2],[-19,0],[-17,-1],[-3,-1],[-27,2],[-68,0],[-37,0],[-17,0],[-23,1],[-129,4],[-27,-2],[-46,-1],[-27,-1],[-49,2],[-17,0],[-22,2],[-20,0],[-12,0],[-85,2],[-2,0],[-40,0],[-30,0],[-43,1],[-21,1],[-2,0],[-15,0],[-63,2],[-76,0],[-94,-2],[-46,0],[-160,-2],[-4,0],[-146,0],[-149,0],[-152,-2],[-60,0],[-7,-1],[-13,-1],[-72,0],[-145,-2],[-149,-2]],[[72679,14554],[0,59],[0,92],[-1,150],[-2,48],[0,97],[0,156],[0,3],[0,61],[0,88],[2,152],[-2,39],[0,35],[0,36],[0,37],[0,152],[3,150],[1,81],[1,70],[0,150],[6,148],[0,234],[-1,63],[2,151],[2,151],[0,152],[0,150],[0,1],[0,301],[0,56],[0,5],[1,47],[2,193],[2,159],[-2,83],[1,88],[55,1],[21,0],[62,0],[26,0],[20,-1],[158,2],[-3,150],[0,77],[-1,75],[-2,101],[-2,135],[-2,64],[0,45],[-2,79],[0,30],[0,148],[-3,90],[1,64],[0,91],[-1,58],[1,57],[0,12],[0,20],[0,60],[-1,69],[-1,85],[1,153],[2,156],[-1,107],[0,11],[-4,185],[0,24],[0,8],[0,52],[-1,161],[0,7],[-1,52],[0,164],[0,140],[1,90],[1,118],[0,98],[1,79],[0,19],[0,119],[0,87],[0,230],[6,70]],[[72679,14554],[-18,0],[-18,0],[-2,-1],[-64,0],[-49,0],[-65,-1],[-54,-1],[-19,0],[-15,0],[-17,-2],[-17,-1],[-33,0],[-30,0],[-26,0],[-31,1],[-53,0],[-39,0],[-31,-1],[-17,0],[-20,1],[-16,0],[-21,0],[-28,0],[-33,0],[-40,0],[-18,0],[-18,-1],[-25,-2],[-36,0],[-9,0],[-11,0],[-25,1],[-22,1],[-25,0],[-17,0],[-17,1],[-56,1],[-9,0],[-9,0],[-22,-1],[-24,0],[-19,2],[-17,1],[-20,0],[-21,1],[-15,0],[-16,0],[-22,0],[-16,0],[-45,1],[-24,0],[-23,0],[-64,1],[-23,-1],[-22,0],[-36,2],[-24,1],[-23,0],[-38,1],[-76,2],[-24,0],[-42,1],[-21,1],[-22,0],[-17,1],[-18,0],[-25,1],[-16,0],[-72,1],[-105,3],[-21,0],[-59,2],[-37,0],[-5,0],[-21,0],[-117,1],[-84,1],[-35,0],[-21,1],[-41,0],[-15,0],[-29,1],[-41,0],[-51,1],[-35,0],[-20,1],[-19,0],[-28,0],[-90,1],[-36,1],[-20,-1],[-42,0],[-16,0],[-90,0],[-14,0],[-59,0],[-34,0],[-27,3],[-17,-1],[-24,0],[-19,-4],[-15,0],[-18,2],[-19,0],[-29,-1],[-17,0],[-25,-4],[-42,0],[-42,0],[-55,-1],[-72,4],[-35,0],[-21,0],[-20,-1],[-25,0],[-29,0],[-84,-1],[-33,-1],[-27,0],[-37,0],[-43,-1],[-21,0],[-52,0],[-40,0],[-19,0],[-22,0],[-21,0],[-34,0],[-19,-1],[-49,1],[-8,0],[-25,0],[-50,0],[-38,-3],[-54,0],[-128,0],[-18,1],[-34,0],[-65,3],[-17,0],[-18,1],[-30,2],[-76,6],[-28,2],[-27,1],[-17,0],[-18,1],[-27,1],[-16,0],[-31,1],[-16,1],[-27,2],[-46,1],[-24,1],[-16,1],[-35,2],[-29,-3],[-62,3],[-48,2],[-39,1],[-74,3],[-42,6],[-18,0]],[[33474,14131],[-61,0],[-21,-1],[-18,4],[-18,5],[-34,20],[-15,5],[-12,3],[-169,-11],[-89,-74],[-38,-31],[2,-7],[10,-32],[1,-30],[-3,-56],[-17,-34],[-24,-22],[-36,-29],[-46,-40],[-34,-31],[-23,-11],[-23,-9],[-12,-8],[-56,-37],[-13,-8],[-42,-18],[-30,-42],[-81,-65],[-9,-24],[-13,-35],[-58,-65],[-11,-31],[-2,-5],[-15,-59],[-9,-33],[-1,-6],[-4,-22],[-2,-6],[-22,-25],[-16,-18],[-6,-6],[-4,-11],[-4,-11],[-9,-26],[-31,-41],[-16,-13],[-14,-9],[-20,-5],[-20,4],[-18,3],[-20,2],[-20,5],[-17,-4],[-19,-11],[-16,-12],[-13,-14],[-22,-22],[-3,-6],[-13,-22],[-12,-16],[-20,-17],[-28,-24],[-24,-14],[-21,-11],[-13,-5],[-2,0],[-18,-5],[-20,-3],[-20,2],[-4,0],[-24,0],[-16,-3],[-34,-5],[-35,-6],[-16,-5],[-18,-8],[-21,-8],[-27,-8],[-26,-9],[-30,-8],[-14,-8],[-17,-6],[-21,-4],[-24,-4],[-22,-1],[-13,-1],[-5,-1],[-3,0],[-30,-16],[-14,-5],[-47,-23],[-16,-10],[-24,-18],[-19,-17],[-27,-24],[-3,-3],[-14,-11],[-9,-8],[-25,-26],[-12,-21],[0,-1],[-2,-25],[0,-7],[-1,-35],[-14,-35],[-16,-16],[-23,-18],[-9,-6],[-14,-8],[-26,-16],[-30,-23],[-30,-32],[-18,-25],[-13,-22],[-19,-21],[-9,-10],[-29,-16],[-19,-7],[-13,-6],[-6,-4],[-19,-9],[-19,-3],[-17,-2],[-1,0],[-20,1],[-19,-1],[-22,1],[-20,4],[-20,0],[-2,0],[-12,-7],[-9,-5],[-10,-11],[-8,-8],[-20,-35],[-14,-27],[-4,-16],[-3,-12],[-16,-31],[-7,-10],[-5,-6],[-17,-9],[-3,-1],[-24,-11],[-20,-5],[-38,0],[-1,0],[-24,-2],[-9,-1],[-26,-10],[-30,-22],[-8,-7],[-18,-5],[-23,-3],[-21,-4],[-30,-12],[-22,-9],[-26,-3],[-22,9],[-15,-5],[-25,-10],[-22,3],[-19,10],[-14,8],[-1,0],[-23,6],[-29,-2],[-19,-2],[-3,0],[-29,-4],[-30,-17],[-40,-24],[-70,-24],[-23,-2],[-34,-2],[-1,0],[-30,-10],[-2,0],[-9,-8],[-31,-28],[-7,-8],[-19,-20],[-18,-20],[-2,-2],[-1,0],[-118,-48],[-30,-8],[-4,-1],[-32,3],[-32,9],[-3,1],[-21,6],[-56,17],[-34,8],[-23,5],[-26,6],[-40,2],[-33,-15],[-16,-7],[-34,-15],[-2,0],[-32,-25],[-17,-28],[-23,-38],[-49,-82],[-55,-141],[-13,-27],[-9,-18],[-3,-5],[-18,-26],[-17,-17],[-9,-10],[-52,-52],[-29,-25],[-22,-8],[-43,-22],[-24,-27],[-6,-21],[-9,-17],[-33,-27],[-18,-15],[-15,-8],[-38,-19],[-15,-9],[-22,-19],[-20,-19],[-44,-25],[-23,-14],[-26,-17],[-42,-18],[-21,0],[-31,7],[-25,-9],[-32,-18],[-27,-2],[-7,2],[-19,5],[-19,-2],[-36,-20],[-18,-6],[-18,-8],[-15,-11],[-24,-28],[-13,-24],[-14,-32],[-6,-13],[-6,-14],[-16,-28],[-13,-13],[-23,-27],[-10,-20],[-4,-8],[-19,-14],[-17,-12],[-18,-10],[-9,-4],[-16,-7],[-25,-14],[-17,-20],[-20,-20],[-14,-11],[-3,-2],[-2,-1],[-13,-5],[-24,-8],[-34,-13],[-20,-11],[-45,-19],[-33,-13],[-24,-5],[-1,0],[-20,-3],[-35,3],[-26,7],[-34,-2],[-18,-4],[-48,-17],[-26,-11],[-32,-14],[-19,-10],[-5,-2],[-8,-23],[1,-17],[0,-10],[-3,-24],[-4,-10],[-12,-26],[-38,-44],[-74,-32],[-46,-10],[-55,9],[-27,8],[-51,18],[-48,14],[-17,-4],[-20,-16],[-111,4],[-59,19],[-22,15],[-22,15],[-43,35],[-16,7],[-18,-1],[-36,44],[-20,4],[-15,2],[-29,-4],[-17,-9],[-22,-3],[-20,-1],[-14,15],[-17,0],[-18,-3],[-17,3],[-15,1],[-32,-17],[-18,-5],[-67,8],[-21,-1],[-12,0],[-3,0],[-63,-2],[-29,0],[-27,-1],[-53,-12],[-22,-14],[-9,-5],[-10,-11],[-12,-12],[-32,-25],[-7,-6],[-16,-11],[-13,-9],[-6,-5],[-24,-9],[-37,-11],[-27,-31],[-4,-4],[-29,-30],[-32,-22],[-17,-13],[-8,-5]],[[26094,10314],[-17,80],[-19,85],[-3,12],[-12,47],[-18,63],[-26,97],[-29,106],[-10,33],[-4,13],[-40,134],[-35,117],[-10,48],[-46,216],[-4,34],[-11,103],[-28,269],[-29,191],[14,53],[10,41],[9,145],[2,27],[2,30],[6,123],[8,145],[11,216],[-5,41],[-31,245],[-3,211],[40,120],[54,39],[32,23],[55,28],[75,39],[43,23],[70,80],[20,22],[100,149],[33,49],[29,148],[40,135],[68,91],[123,238],[9,39],[49,198],[74,83],[52,35],[80,69],[53,55],[66,69],[40,41],[23,24],[53,54],[152,158],[129,151],[103,120],[37,49],[35,47],[17,42],[7,24],[35,106],[8,61],[3,20],[-11,48],[-47,48],[-123,6],[-41,39],[-2,46],[19,80],[-3,66],[-11,28],[-19,42],[-104,185],[-33,76],[-42,95],[-48,64],[-26,35],[-191,267],[-78,101],[-192,154],[-63,50],[-57,46],[-20,12],[-33,19],[-61,27],[-114,51],[-187,83],[-184,97],[-143,88],[-58,36],[-58,16],[-65,17],[-66,10],[-68,11],[-15,2],[-13,5],[-24,8],[-6,2],[-12,4],[-42,67],[-11,27],[-36,81],[-61,132],[-8,17],[-1,3],[-7,51],[44,63],[93,89],[5,45],[11,29],[4,9],[27,71],[10,26],[47,122],[4,21],[16,93],[-5,65],[-22,95],[-5,39],[-11,71],[0,3],[-2,82],[-27,124],[-47,95]],[[58442,14669],[-2,-192],[-4,-109],[-2,-57],[0,-5],[-1,-31],[0,-13],[-2,-66],[-2,-93],[-1,-39],[-3,-209],[-5,-210],[-3,-115],[-5,-144],[-8,-228],[-3,-107],[-4,-140],[-2,-52],[3,-111],[3,-134],[5,-165],[0,-23],[2,-169],[1,-154],[1,-149],[0,-53],[0,-4],[0,-43],[-2,-112],[0,-42],[-3,-149],[-1,-25],[-1,-37],[-3,-138],[-4,-169],[-1,-29],[-2,-107],[-1,-90],[-2,-85],[0,-49],[-1,-23],[0,-2],[-1,-23],[-1,-33],[0,-10],[1,-66],[-1,-25],[0,-25],[0,-14],[2,-41],[-1,-49],[0,-46],[-1,-40],[-1,-75],[0,-44],[-2,-185],[-3,-223],[0,-79],[-4,-302],[1,-149],[0,-153],[0,-148],[0,-99],[0,-79],[1,-202],[-2,-92],[-1,-259],[0,-53],[0,-1],[0,-54],[0,-130],[2,-150],[0,-21],[0,-10],[0,-52],[-4,-441],[0,-7],[-1,-30]],[[58373,7387],[-112,1],[-171,1],[-7,0],[-129,2],[-77,0],[-23,0],[-45,0],[-33,-1],[-40,-1],[-37,0],[-2,0],[-18,1],[-75,0],[-48,0],[-148,-1],[-18,0],[-2,0],[-66,-2],[-139,-1],[-97,0],[-44,0],[-9,0],[-11,0],[-68,0],[-75,0],[-146,-4],[-41,-2],[-103,0],[-83,-1],[-140,-2],[-21,0],[-207,-4],[-101,-2],[-14,0],[-12,0],[-31,-4],[-57,-1],[-82,0],[-71,-1],[-77,0],[-51,-1],[-96,0],[-32,0],[-111,-1],[-158,-1],[-25,-1],[-49,0],[-6,0],[-71,-1],[-73,-1],[-71,-1],[-61,-1],[-78,-2],[-33,2],[-35,2],[-32,0],[-199,-1],[0,-3],[-147,0],[-44,0],[-103,-1],[-223,0],[-89,0],[-24,0],[-272,-2],[-3,0],[-114,-1],[-184,-5],[-56,-1],[-156,-5],[-50,-2],[-18,0],[-10,1]],[[53019,7339],[1,33],[0,60],[0,26],[0,29],[0,1],[0,19],[0,32],[1,37],[-46,0],[-18,0],[-30,-1],[-125,-2],[-78,-1],[-39,0],[-261,2],[-49,0],[-25,0],[-337,-1],[-48,0],[-46,-1],[-56,0],[-30,2],[-67,-2],[-36,1],[-113,0],[-75,1],[-146,0],[-57,0],[-85,0],[-22,0],[-5,1],[-183,2],[-57,1],[-52,0],[-119,1],[-2,0],[-123,1],[-29,0],[-26,0],[-20,0],[-25,0],[-19,0],[-19,0],[-29,0],[-28,1],[-28,-1],[-71,1],[-22,0],[-63,1],[-185,3],[-249,4],[-146,2],[-198,2],[-30,0],[-202,2],[-56,1],[-33,0],[-51,1],[-215,0],[-256,0],[-24,0],[-141,0],[-33,0],[-23,0],[-127,0],[-14,0],[-25,0],[-264,0],[-320,0],[-58,1],[-41,0],[-310,0],[-32,0],[-37,-1],[-150,-1],[-18,0],[-223,-2],[-96,0],[-22,0],[-75,0],[-209,0],[-29,0],[-44,1],[-19,0],[-258,0],[-146,1]],[[45953,7596],[1,157],[2,162],[2,46],[0,34],[-1,161],[-1,89],[-2,158],[-1,98],[-2,157],[0,68],[-1,74],[-1,83],[-1,96],[0,37],[-3,278],[0,3],[0,47],[-1,74],[-1,101],[-1,74],[0,54],[-1,110],[-1,98],[-1,52],[0,47],[-1,75],[-1,59],[3,62],[3,86],[4,90],[0,211],[0,23],[2,140],[0,31],[0,30],[0,12],[2,136],[0,99],[0,59],[1,107],[0,50],[0,805],[0,84],[1,149],[0,28],[0,123],[1,312],[1,134],[0,159],[0,140],[0,66],[0,61],[1,128],[0,36],[0,31],[0,224],[0,81],[0,138],[0,63],[0,18],[0,28],[0,23],[-2,146],[0,30],[0,88],[0,164],[1,125],[-1,70],[0,60],[-1,47],[0,2],[0,35],[1,21]],[[45953,7596],[0,-31],[0,-10],[-1,-189],[-1,-303],[0,-53],[-1,-321]],[[45950,6689],[-248,-4],[-11,0],[-19,0],[-14,0],[-8,0],[-35,-1],[-35,0],[-19,-1],[-164,-4],[-16,-1],[-58,1],[-18,0],[-47,0],[-81,1],[-52,0],[-67,-2],[-39,-2],[-28,2],[-31,1],[-158,2],[-36,0],[-36,-1],[-29,-1],[-22,0],[-41,1],[-193,-2],[-52,1],[-20,0],[-39,1],[-28,0],[-54,1],[-15,0],[-36,1],[-21,0],[-18,-1],[-23,0],[-41,1],[-37,0],[-58,3],[-24,0],[-31,1],[-72,1],[-64,1],[-43,-1],[-29,0],[-17,1],[-35,1],[-25,0],[-34,1],[-25,1],[-26,-1],[-27,0],[-31,0],[-4,0],[-91,0],[-50,0],[-18,3],[-371,-5],[-77,3],[-71,2],[-16,0],[-75,1],[-221,-3],[-111,-1],[-54,-1],[-83,0],[-21,1],[-75,0],[-34,1],[-81,1],[-44,1],[-31,1],[-57,2],[-40,-6],[-52,0],[-16,1],[-32,0],[-57,5],[-34,1],[-30,0],[-42,-3],[-187,7],[-1,0],[-21,-1],[-34,1],[-34,1],[-69,0],[-19,-2],[-26,2],[-21,0],[-257,2],[-120,2],[-60,1],[-124,2],[-17,0],[-81,1],[-96,0],[-27,0],[-41,0],[-74,0],[-43,-1],[-85,1],[-4,0],[-23,-1],[-31,0],[-16,0],[-19,0],[-353,-1],[-111,-1],[-2,0],[-88,-1],[-107,-2],[-39,0],[-164,-3],[-1,0],[-91,-1],[-144,-2],[-74,-1],[-13,-1],[-47,0],[-31,-2],[-14,0],[-17,-1],[-49,0],[-91,-1],[0,-1],[-108,-1],[-194,-4],[-33,0],[-169,-3],[-49,0],[-247,-4],[-39,-2],[-158,-3],[-140,-2],[-157,0],[-80,-1],[-150,-1],[-23,1],[-32,-1]],[[37087,6670],[-2,39],[-1,31],[-2,102],[1,134],[-1,127],[-1,78],[0,46],[0,2],[-1,51],[0,86],[-3,66],[-2,22],[5,118],[-2,215],[0,91],[0,83],[0,221],[0,51],[-2,99],[0,57],[0,1],[-1,34],[0,39],[0,22],[-1,23],[0,27],[-1,71],[0,28],[-1,100],[-1,41],[-3,259],[-1,57],[-1,46],[-2,107],[-1,125],[0,31],[-1,153],[0,52],[-2,174],[0,44],[0,25],[0,8],[0,37],[2,49],[-2,33],[0,34],[0,76],[0,110],[2,37],[-1,60],[3,169],[0,99],[0,20],[0,20],[0,24],[0,90],[0,50],[-1,146],[0,157],[0,45],[-2,82],[0,23],[-1,164],[-1,74],[-2,223],[0,35],[-1,89],[0,70],[0,30],[-1,57],[-2,66],[-3,260],[0,35],[-2,171],[0,23],[-1,50],[-2,57],[-1,171],[-1,55],[-1,56],[0,24],[-1,87],[-2,144],[1,162],[1,123],[1,191],[3,434],[2,49],[0,24],[0,79],[0,75],[0,47],[-1,19],[0,3],[0,24],[0,28],[0,3],[0,22],[-1,34],[0,27],[0,52],[0,27],[-1,59],[0,6],[-1,16],[0,18],[0,27],[0,30]],[[37087,6670],[0,-73],[1,-75],[1,-52],[0,-22],[0,-22],[1,-58],[2,-108],[3,-192],[1,-57],[0,-95],[0,-75],[0,-78],[0,-84],[0,-67],[0,-66],[0,-92],[0,-37],[1,-56],[1,-70],[0,-133],[0,-24],[0,-21],[0,-101],[0,-2],[0,-52],[1,-103],[0,-78],[0,-179],[1,-46],[0,-183],[0,-198],[1,-224],[1,-29],[0,-122],[0,-151],[0,-1],[0,-58],[0,-134],[0,-49],[0,-56],[0,-35],[0,-199],[0,-73],[-1,-275],[-1,-24],[3,-181],[0,-44],[0,-50],[-1,-27],[0,-30],[-1,-26],[2,-25],[0,-22],[-1,-52],[0,-23],[0,-24],[0,-63],[0,-37],[0,-155],[0,-55],[0,-27],[0,-108],[0,-40],[0,-76],[0,-1],[0,-94],[-1,-63],[0,-144],[-1,-79],[0,-72],[-1,-71],[0,-28],[0,-47],[-1,-87],[0,-129],[0,-26],[-1,-24],[0,-24],[0,-69],[0,-26],[-1,-189],[-1,-190]],[[37095,313],[-162,1],[-669,5],[-35,1],[-56,0],[-515,4],[-1255,8],[-48,1],[-448,5],[-2,0],[-42,1],[49,83],[12,19],[1,42],[2,72],[-5,13],[-12,40],[-15,47],[-11,35],[-16,52],[-8,41],[-1,3],[-25,125],[-9,53],[-7,42],[-25,77],[-128,120],[-76,167],[-4,23],[-32,187],[-147,156],[-4,3],[-33,31],[-27,25],[-1,1],[-35,34],[-63,106],[-73,138],[-12,59],[-4,95],[-24,88],[-29,110],[-15,56],[-34,87],[-57,102],[-23,41],[-11,83],[-28,89],[-34,46],[-64,65],[-89,59],[-109,50],[-72,24],[-60,20],[-22,5],[-40,9],[-51,13],[-33,7],[-39,11],[-45,13],[-19,5],[-52,14],[-88,13],[-52,28],[-70,26],[-188,48],[-67,10],[-58,9],[-43,12],[-64,17],[-139,32],[-42,9],[-78,17],[-44,10],[-101,22],[-25,5],[-68,13],[-153,38],[-88,16],[-57,16],[-34,8],[-68,18],[-151,60],[-40,11],[-21,6],[-70,18],[-106,25],[-41,12],[-84,24],[-25,8],[-39,14],[-75,28],[-17,8],[-23,11],[-27,13],[-78,54],[-39,27],[-26,17],[-94,61],[-24,10],[-12,5],[-41,16],[-1,0],[-1,0],[-70,-7],[-80,-23],[-21,-3],[-67,-8],[-88,14],[-53,20],[-72,26],[-23,17],[-33,24],[-16,11],[-14,10],[-123,82],[-32,12],[-26,11],[-112,34],[-13,12],[-24,22],[-53,69],[-9,15],[-69,117],[-56,70],[-44,39],[-57,52],[-4,2],[-28,18],[-8,6],[-56,35],[-51,29],[-29,16],[-25,-5],[-43,-8],[-13,2],[-44,6],[-118,82],[-45,37],[-23,58],[-7,57],[-4,29],[-16,40],[-20,33],[-62,42],[-71,11],[-40,-5],[-47,-30],[-64,10],[-29,29],[-5,10],[-5,88],[-5,48],[-30,51],[-58,48],[-20,-1],[-47,33],[-5,45],[3,23],[1,35],[36,4],[38,32],[5,63],[-17,24],[-28,20],[-55,68],[-32,45],[-13,55],[-3,14],[-6,70],[-2,21],[-2,46],[-2,39],[-10,50],[-4,30],[-3,28],[-18,57],[-1,2],[-4,12],[-4,14],[-8,58],[-19,57],[-24,124],[-7,38],[-16,194],[-9,179],[10,124],[-62,48],[-116,-12],[-54,29],[-16,86],[4,22],[4,23],[24,133],[11,61],[13,71],[-7,28],[-22,38],[-34,57],[-13,35],[-18,50],[-11,56],[-7,39],[0,113],[0,22],[0,90],[0,68],[-33,100],[-140,135],[-28,27],[-50,73],[-145,91],[-194,99],[-47,21],[-32,14],[-22,10],[-4,23],[-10,61],[-4,22],[-4,27],[19,95],[5,25],[10,46],[1,6],[-1,9],[-1,18],[-5,97],[-5,24],[-13,55],[-16,51],[-48,154],[3,46],[3,31],[4,54],[52,199],[2,8],[-5,45],[-11,97],[-3,8],[-38,87],[-24,54],[-53,83],[-17,26],[-16,82],[-4,23],[0,57],[0,10],[1,37],[0,49]],[[65567,14635],[-11,-260],[-3,-55],[-2,-56],[-3,-35],[0,-2],[-11,-235],[0,-30],[-2,-37],[-1,-34],[-4,-189],[-2,-108],[-2,-52],[-2,-56],[-2,-44],[0,-43],[-3,-65],[1,-31],[-2,-59],[-1,-25],[0,-25],[-2,-36],[0,-60],[-1,-47],[0,-3],[-4,-251],[-6,-124],[3,-29],[-1,-38],[1,-113],[0,-5],[-1,-21],[-1,-24],[0,-26],[0,-24],[0,-29],[-1,-32],[0,-35],[0,-25],[0,-23],[-1,-23],[0,-23],[0,-25],[-1,-25],[-1,-127],[0,-3],[0,-29],[-1,-50],[-1,-27],[0,-36],[-2,-152],[-2,-166],[-2,-40],[-1,-17],[-2,-26],[0,-33],[1,-107],[0,-4],[-1,-37],[-1,-42],[-3,-108],[-3,-86],[0,-4],[-3,-100],[0,-49],[1,-28],[-2,-33],[0,-25],[-2,-50],[-1,-35],[-1,-32],[2,-23],[4,-57],[1,-4],[-4,-103],[1,-116],[0,-4],[1,-46],[0,-28],[0,-106],[0,-59],[0,-26],[0,-4],[0,-28],[1,-27],[0,-44],[-1,-85],[-1,-85],[-1,-35],[-2,-117],[0,-80],[-1,-35],[0,-30],[0,-26],[0,-34],[-1,-23],[0,-30],[0,-34],[1,-22],[-1,-132],[0,-23],[0,-34],[0,-33],[0,-50],[-1,-51],[0,-42],[0,-75],[0,-26],[-1,-58],[0,-25],[0,-44],[0,-41],[0,-26],[0,-59],[0,-68],[0,-24],[0,-74],[-2,-193],[-1,-32],[1,-69],[0,-1],[4,-68],[-1,-37],[0,-29],[-1,-26],[-1,-11],[1,-39],[4,-184],[-3,-44],[4,-182],[0,-24],[1,-63],[1,-37],[0,-23],[0,-29],[1,-43],[1,-45],[0,-37]],[[65481,7295],[-53,0],[-74,0],[-56,0],[-22,-1],[-46,-1],[-44,1],[-74,-1],[-97,-3],[-55,-1],[-55,0],[-127,-1],[-60,-1],[-75,1],[-72,-1],[-69,-1],[-42,-1],[-104,-1],[-57,0],[-77,1],[-138,0],[-159,1],[-114,0],[-103,1],[-62,0],[-2,0],[-236,1],[-287,1],[-146,0],[-47,0],[-26,0],[-43,1],[-33,0],[-88,0],[-73,0],[-43,0],[-35,0],[-12,0],[-24,1],[-69,0],[-36,0],[-15,0],[-95,0],[-23,0],[-17,0],[-55,1],[-101,0],[-94,1],[-32,0],[-54,3],[-26,-7]],[[61934,7289],[-125,3],[-86,3],[-81,2],[-17,1],[-4,1],[-11,4],[-49,2],[-59,3],[-12,-3],[-11,-1],[-53,1],[-82,3],[-48,1],[-31,1],[-83,3],[-68,2],[-60,1],[-16,0],[-35,0],[-255,13],[-96,6],[-44,2],[-22,-1],[-18,1],[-27,1],[-95,5],[-120,6],[-30,1],[-69,3],[-44,3],[-22,0],[-66,2],[-41,1],[-44,1],[-22,0],[-182,0],[-19,0],[-54,1],[-77,0],[-92,0],[-44,0],[-3,0],[-100,-1],[-125,1],[-21,0],[-75,2],[-18,1],[-109,4],[-39,1],[-5,0],[-264,9],[-28,1],[-7,1],[-108,3],[-43,2],[-177,1],[-25,1]],[[72679,14554],[0,-23],[0,-23],[0,-1],[-2,-60],[-1,-22],[0,-36],[-3,-108],[-1,-33],[0,-18],[0,-26],[-1,-29],[1,-52],[0,-33],[-3,-50],[-2,-104],[0,-35],[1,-22],[0,-5],[-2,-19],[1,-27],[0,-21],[0,-23],[-3,-110],[-3,-38],[1,-26],[0,-102],[-1,-22],[-1,-23],[0,-27],[0,-3],[-3,-36],[-1,-21],[-1,-19],[0,-3],[-2,-62],[0,-15],[0,-8],[-3,-81],[0,-22],[0,-36],[-1,-38],[0,-25],[0,-8],[-1,-19],[-4,-47],[0,-41],[1,-19],[1,-7],[-3,-39],[-2,-40],[3,-22],[0,-21],[0,-22],[-1,-22],[-1,-22],[-1,-25],[0,-21],[0,-22],[0,-22],[0,-21],[0,-21],[-1,-23],[0,-23],[0,-21],[0,-27],[-1,-46],[-2,-22],[0,-21],[0,-17],[0,-5],[-1,-32],[0,-26],[-1,-24],[-1,-53],[0,-27],[-1,-37],[0,-21],[0,-21],[-1,-22],[0,-30],[0,-22],[-1,-45],[0,-24],[0,-28],[-1,-30],[0,-23],[0,-26],[0,-21],[-1,-25],[0,-36],[0,-22],[0,-27],[2,-36],[-3,-31],[2,-23],[0,-24],[0,-25],[-1,-21],[0,-21],[0,-41],[0,-31],[0,-22],[-1,-25],[-1,-31],[0,-29],[2,-24],[0,-1],[0,-56],[0,-6],[-1,-13],[-1,-9],[2,-24],[0,-9],[-2,-30],[1,-45],[0,-21],[0,-2],[-2,-122],[-1,-23],[0,-26],[0,-32],[-1,-33],[0,-25],[0,-14],[-1,-11],[-1,-36],[-2,-27],[2,-25],[0,-35],[-2,-39],[0,-21],[-2,-66],[-1,-21],[0,-29],[0,-34],[-1,-29],[-3,-38],[-1,-24],[0,-29],[-2,-88],[-2,-23],[-2,-24],[0,-32],[-1,-41],[-1,-31],[-1,-37],[1,-24],[-1,-52],[-2,-23],[-1,-33],[0,-37],[-1,-36],[0,-31],[-1,-46],[-2,-26],[-1,-40],[0,-23],[0,-26],[-1,-24],[0,-22],[1,-37],[0,-5],[-1,-58],[-1,-42],[0,-30],[0,-29],[0,-25],[-1,-23],[0,-34],[0,-27],[-2,-40],[1,-22],[1,-21],[-2,-52],[0,-59],[-1,-43],[-2,-26],[3,-41],[-1,-115],[0,-29],[0,-26],[0,-43],[0,-63],[0,-34],[0,-39],[0,-75],[0,-37],[0,-40],[0,-91],[0,-29],[0,-36],[0,-87],[0,-152],[1,-85],[-1,-37],[0,-127],[0,-45],[0,-79],[0,-38],[0,-1],[-2,-39],[0,-33],[-1,-23],[1,-23],[-1,-22],[0,-28],[-1,-30],[0,-26],[-1,-45],[0,-22],[-1,-32],[0,-25],[0,-45],[0,-23],[1,-28],[0,-52]],[[72584,7303],[-3,0],[-90,0],[-22,0],[-106,0],[-41,0],[-46,0],[-35,0],[-18,0],[-57,0],[-29,0],[-32,0],[-36,-1],[-20,0],[-27,0],[-48,0],[-22,0],[-21,0],[-28,0],[-16,0],[-80,-1],[-26,0],[-15,1],[-23,0],[-16,0],[-22,-1],[-46,-1],[-20,-1],[-18,0],[-12,0],[-42,-1],[-7,0],[-22,-1],[-140,-1],[-59,-1],[-21,0],[-32,-1],[-30,0],[-44,-1],[-40,0],[-38,-2],[-25,-1],[-113,3],[-28,0],[-18,0],[-61,0],[-17,0],[-47,0],[-23,-2],[-138,-1],[-9,0],[-27,0],[-70,-2],[-28,-1],[-57,-2],[-24,-1],[-35,-3],[-33,-1],[-32,-1],[-44,-1],[-76,-3],[-46,-1],[-18,3],[-19,-3],[-15,4],[-50,-5],[-142,-11],[-69,8],[-18,0],[-8,1],[-232,4],[-33,1],[-18,0],[-21,0],[-16,0],[-23,1],[-30,0],[-24,0],[-21,0],[-89,0],[-40,-1],[-275,1]],[[69022,7277],[-67,3],[-6,0],[-79,-1],[-157,7],[-95,1],[-6,0],[-31,1],[-21,1],[-78,3],[-23,0],[-1,0],[-26,0],[-62,1],[-118,-4],[-121,2],[-149,0],[-63,1],[-34,0],[-18,0],[-25,0],[-319,-2],[-58,0],[-35,-1],[-20,0],[-55,1],[-48,-1],[-27,-1],[-30,0],[-30,0],[-230,1],[-19,0],[-13,0],[-84,-1],[-207,0],[-8,0],[-152,1],[-144,1],[-223,-2],[-24,0],[-22,0],[-454,2],[-8,1],[-151,4]],[[76243,7280],[-203,-2],[-4,0],[-28,0],[-20,0],[-131,2],[-5,0],[-30,0],[-149,-2],[-137,4],[-155,2],[-19,0],[-4,0],[-84,2],[-5,0],[-34,0],[-139,6],[-7,0],[-101,0],[-53,-2],[-4,0],[-145,5],[-42,2],[-2,0],[-66,0],[-13,0],[-15,0],[-147,2],[-129,4],[-8,0],[-8,1],[-15,1],[-32,1],[-6,0],[-23,0],[-219,0],[-58,0],[-5,0],[-26,0],[-16,0],[-46,0],[-42,0],[-110,0],[-140,-1],[-18,0],[-124,-1],[-313,-1],[-143,0],[-158,-1],[-53,0],[-225,1]],[[53019,7339],[0,-97],[0,-7],[0,-42],[-2,-209],[0,-80],[-1,-71],[0,-28],[2,-121],[-1,-29],[0,-8],[0,-66],[-1,-110],[0,-39],[-1,-48],[2,-248],[-1,-51],[1,-78],[-2,-28],[2,-195],[0,-74],[2,-25],[1,-105],[2,-45],[-1,-51],[1,-121],[2,-83],[2,-174],[0,-29],[0,-28],[1,-78],[1,-95],[1,-74],[0,-31],[1,-17],[1,-21],[0,-26],[0,-39],[0,-20],[1,-104],[1,-41],[1,-72],[0,-67],[0,-15],[1,-52],[0,-57],[0,-6],[4,-89],[1,-25],[0,-75],[0,-63],[2,-237],[0,-7],[0,-23],[1,-99],[1,-87],[1,-101],[1,-158],[0,-23],[1,-157],[0,-75],[1,-159],[0,-2],[1,-34],[-1,-28],[1,-27],[0,-30],[0,-39],[1,-24],[0,-12],[-1,-33],[0,-21],[0,-22],[1,-28],[0,-28],[0,-43],[1,-33],[0,-52],[0,-69],[1,-76],[0,-85],[1,-23],[2,-43],[1,-148],[0,-44],[0,-75],[2,-115],[0,-4],[-1,-108],[0,-42],[0,-34],[0,-36],[1,-120],[0,-116],[1,-52],[0,-2],[1,-24],[2,-109],[1,-106],[0,-53],[1,-68],[0,-171],[1,-59],[0,-108],[-1,-177],[0,-161]],[[53064,172],[-533,3],[-515,8],[-98,1],[-28,1],[-1064,18],[-1449,43],[-531,14],[-350,9],[-95,3],[-1277,5],[-79,1],[-441,3],[-107,1],[-535,3]],[[45962,285],[0,63],[-1,242],[1,135],[0,170],[0,136],[0,168],[0,148],[0,99],[0,248],[0,154],[0,13],[0,62],[0,1],[0,201],[0,43],[0,303],[0,93],[-3,59],[0,28],[1,98],[1,28],[1,37],[0,25],[0,39],[1,37],[0,68],[1,69],[0,46],[0,49],[0,40],[0,78],[0,52],[1,34],[-2,21],[0,103],[1,48],[0,81],[1,44],[0,31],[0,22],[1,27],[-1,39],[1,54],[0,51],[1,102],[-2,155],[0,29],[0,1],[-2,252],[-3,207],[1,19],[1,2],[-1,51],[1,47],[-4,168],[-1,84],[-1,29],[-3,260],[2,85],[-1,124],[0,153],[-2,30],[-2,33],[-3,86],[0,48],[1,57],[0,33],[0,25],[-1,250],[0,37],[1,35],[0,42],[1,77],[0,147],[0,41],[1,108]],[[61934,7289],[0,-25],[-1,-28],[0,-56],[0,-34],[0,-24],[-1,-44],[0,-55],[-1,-75],[-7,-346],[0,-20],[-1,-62],[0,-4],[-3,-190],[-1,-75],[-1,-38],[0,-36],[-7,-372],[-1,-46],[-2,-130],[-1,-37],[0,-131],[2,-96],[4,-144],[2,-66],[1,-54],[2,-91],[0,-81],[1,-75],[0,-40],[1,-66],[0,-69],[1,-22],[1,-108],[1,-64],[3,-234],[1,-39],[5,-187],[2,-76],[4,-150],[0,-47],[3,-104],[-1,-68],[0,-39],[0,-195],[0,-5],[0,-31],[0,-70],[0,-36],[0,-49],[1,-24],[1,-81],[0,-27],[1,-87],[0,-24],[1,-49],[0,-23],[0,-22],[1,-53],[0,-267],[0,-231],[0,-97],[0,-15],[0,-50],[0,-98],[0,-5],[0,-146],[0,-7],[-1,-17],[2,-104],[-1,-44],[-1,-63],[-1,-96],[0,-23],[-1,-24],[-1,-116],[0,-22],[-1,-21],[0,-68],[0,-23],[0,-32],[-1,-294],[3,-302],[0,-24],[0,-3],[1,-272],[0,-21],[0,-35],[-1,-79],[0,-166]],[[61942,0],[-231,1],[-912,26],[-63,1],[-1261,35],[-488,13],[-304,4],[-382,5],[-28,1],[-159,2],[-91,0],[-14,0],[-65,0],[-22,0],[-763,7],[-537,11],[-348,4],[-854,12],[-429,4],[-369,8],[-324,7],[-1234,31]],[[69022,7277],[0,-29],[-1,-38],[-1,-31],[0,-7],[-4,-181],[-2,-140],[-6,-487],[0,-42],[-2,-21],[0,-175],[0,-9],[0,-40],[-1,-89],[-1,-29],[0,-35],[-1,-75],[-3,-227],[-1,-21],[0,-12],[-1,-83],[-1,-29],[5,-114],[4,-36],[4,-354],[1,-142],[2,-106],[1,-26],[0,-27],[2,-21],[0,-43],[0,-5],[-1,-26],[0,-133],[0,-82],[1,-86],[1,-74],[0,-42],[1,-41],[4,-82],[2,-50],[1,-9],[2,-109],[0,-37],[0,-50],[0,-33],[3,-22],[0,-52],[0,-4],[0,-12],[-2,-14],[1,-1],[0,-80],[0,-5],[-6,-75],[1,-122],[1,-59],[1,-129],[0,-23],[1,-96],[1,-96],[0,-40],[2,-154],[-3,-71],[1,-75],[2,-149]],[[69030,2470],[1,-151],[1,-149],[1,-54],[0,-91],[2,-158],[2,-305],[2,-189],[0,-112],[1,-42],[0,-23],[0,-1],[0,-28],[1,-162],[0,-8],[-1,-31],[2,-92],[1,-56],[0,-1],[1,-79],[0,-74],[1,-155],[2,-226],[1,-116],[0,-37],[0,-45],[0,-31]],[[69048,54],[-105,1],[-290,0],[-1377,4],[-301,0],[-1346,4],[-1018,1],[-328,1],[-575,-14],[-725,-18],[-87,-4],[-772,-29],[-182,0]],[[76556,3659],[-24,-2],[-20,0],[-41,-1],[-52,0],[-30,-1],[-24,0],[-24,1],[-26,1],[-16,-1],[-20,0],[-23,-1],[-26,0],[-54,1],[-67,1],[-27,1],[-57,1],[-33,1],[-34,1],[-56,2],[-46,2],[-57,2],[-46,1],[-31,1],[-40,4],[-93,0],[-2,0],[-32,-1],[-12,1],[-40,1],[-112,2],[-18,0],[-1,0],[-152,4],[-158,2],[-4,0],[-153,1],[-215,4],[-187,2],[-5,0],[-70,0],[-74,0],[-10,1],[-7,0],[-383,-1],[-60,1],[-131,2],[-1,0],[-142,13],[-18,-2],[-221,0],[-151,-1],[-36,0],[-9,0],[-39,0],[-61,-1],[-122,0],[-102,0],[-4,0],[-285,-2],[-60,0],[-97,0],[-43,-1],[-73,-1],[-165,-3],[-90,-1],[-66,-1],[-91,-1],[-205,-4],[-125,-1],[-11,-2],[-150,0],[-152,-1],[-151,-2],[-286,13],[-6,-25],[1,-138],[0,-105],[0,-62],[4,-4],[-1,-85],[-2,-107],[0,-4],[0,-106],[0,-51],[0,-142],[1,-98],[0,-22],[0,-41],[1,-225],[-296,-2],[-115,-1],[-1,0],[-107,0],[-37,2],[-2,0],[-14,0],[-59,-2],[-1,0],[-36,0],[-267,0],[-101,0],[-148,0],[-47,1],[-29,-1],[-218,-2],[-24,0],[-74,-2],[-36,-1],[-115,-1],[-48,0]],[[45962,285],[-150,0],[-831,1],[-354,0],[-225,-1],[-886,23],[-235,6],[-35,0],[-310,4],[-263,4],[-840,11],[-307,-1],[-1459,-5],[-1572,-10],[-865,-2],[-535,-2]],[[76576,12],[-32,0],[-64,1],[-70,1],[-2,0],[-33,0],[-60,1],[-32,1],[-70,1],[-83,2],[-150,3],[-638,5],[-162,2],[-288,2],[-55,0],[-443,4],[-835,7],[-296,2],[-1052,9],[-64,0],[-28,1],[-1226,10],[-221,1],[-182,17],[-248,-1],[-337,-1],[-168,-11],[-147,-11],[-59,0],[-118,-1],[-365,-3]],[[13275,87579],[249,-226],[-166,86],[-19,8],[-129,48],[-50,51],[-2,2],[-8,8],[48,50],[77,-27]],[[10688,87564],[-16,-7],[-18,1],[-13,2],[0,-30],[-12,-19],[3,-9],[4,-12],[1,-24],[-9,-7],[-5,-4],[25,5],[-14,-17],[-16,-23],[23,-14],[6,9],[5,8],[5,-4],[2,-1],[17,-11],[-11,-3],[-30,-8],[-43,-3],[-2,0],[-25,-2],[-16,-3],[-26,9],[-1,1],[-35,12],[-2,22],[-3,35],[-15,10],[-25,83],[46,32],[20,35],[2,3],[6,11],[17,23],[13,1],[3,1],[27,20],[13,1],[25,4],[9,-1],[9,-2],[9,-6],[9,-5],[-4,-26],[16,-11],[26,-76]],[[20151,88633],[-7,-121],[-1,-40],[0,-1],[0,-583],[0,-316],[-1,-44],[0,-26],[0,-35],[0,-196],[-1,-54],[2,-33],[0,-1],[1,-211],[-1,-137],[-2,-130],[1,-36],[0,-36],[0,-33],[-1,-80],[0,-35],[0,-141],[-1,-52],[0,-13],[0,-57],[-1,-26],[-1,-124],[-2,-75],[-2,-52],[-3,-23],[-1,-8],[-2,-29],[0,-112],[-1,-226],[0,-77],[-1,-149],[0,-36],[1,-112],[0,-135],[0,-21],[-1,-61],[0,-91],[0,-34],[-1,-68],[-2,-87],[0,-23],[0,-88],[0,-43],[0,-25],[0,-45],[0,-23],[0,-43],[-2,-213],[1,-237],[-1,-130],[-4,-129],[1,-38],[0,-83],[2,-159],[1,-33],[27,0],[0,-63],[0,-55],[0,-117],[-1,-324],[-3,-157],[0,-142],[0,-231],[0,-73],[1,-124],[3,-179],[1,-209],[0,-82],[2,-156],[-1,-25],[-1,-125],[2,-115],[1,-111],[-1,-89],[-1,-37],[1,-193],[-1,-40],[-2,-38],[2,-128],[0,-30],[0,-22],[1,-21],[3,-32],[-1,-90],[0,-29],[0,-23],[0,-53],[-1,-34],[4,-28],[0,-1],[-2,-33],[0,-35],[1,-28],[0,-123],[2,-83],[-2,-70],[0,-131],[-1,-47],[1,-287],[-2,-30],[0,-117],[4,-213],[2,-60],[0,-30],[0,-97],[-1,-143],[-2,-134],[0,-1],[2,-32],[2,-376],[-1,-125],[-2,-222],[-1,-32],[-3,-313],[0,-218],[0,-219],[0,-135],[0,-96],[0,-302],[0,-59],[0,-141],[0,-69]],[[8972,76193],[0,16],[-1,174],[0,8],[-1,157],[-1,134],[0,121],[0,4],[1,181],[1,192],[1,201],[2,154],[0,22],[0,34],[1,98],[0,50],[0,45],[0,18],[0,4],[-1,112],[-1,94],[1,81],[0,25],[0,7],[0,43],[0,4],[0,9],[2,146],[1,135],[0,14],[1,70],[0,7],[1,120],[0,18],[2,113],[0,16],[0,8],[1,77],[0,3],[0,35],[0,37],[0,27],[0,29],[0,7],[0,1],[0,8],[0,41],[1,34],[0,43],[1,57],[1,22],[0,8],[0,50],[0,76],[0,45],[0,9],[0,26],[0,63],[0,14],[0,23],[-2,51],[0,50],[0,19],[0,123],[0,10],[0,105],[0,68],[0,115],[0,139],[0,117],[0,120],[0,24],[0,64],[0,32],[0,19],[-1,81],[1,166],[0,185],[0,97],[1,60],[0,111],[1,266],[0,9],[0,2],[0,2],[0,31],[0,43],[0,29],[1,79],[0,47],[0,57],[1,19],[0,193],[0,28],[1,73],[1,473],[0,91],[1,114],[0,35],[0,14],[1,126],[0,61],[0,8],[1,120],[0,2],[1,60],[0,3],[1,8],[0,2],[0,1],[3,74],[1,10],[0,41],[0,60],[1,191],[0,73],[0,4],[0,77],[1,105],[0,48],[0,21],[0,3],[0,1],[0,117],[0,107],[1,17],[0,84],[0,5],[0,70],[0,57],[0,9],[0,14],[0,39],[0,31],[0,33],[0,72],[0,97],[1,51],[0,19],[0,5],[0,68],[0,120],[0,19],[0,149],[0,40],[0,6],[0,48],[0,4],[0,24],[1,15],[0,13],[0,84],[0,6],[0,64],[0,31],[0,3],[0,46],[0,39],[0,58],[0,17],[0,97],[1,127],[0,120],[0,66],[-1,87],[-2,116],[-1,98],[0,33],[0,18],[0,2],[0,10],[-1,22],[0,5],[0,4],[-1,23],[0,3],[0,6],[0,2],[-1,33],[0,13],[-1,56],[0,22],[-1,18],[0,11],[0,14],[0,2],[-1,13],[0,1],[0,11],[-1,8],[1,11],[1,12],[2,5],[-4,10],[13,24],[29,8],[19,-16],[3,-3],[20,-16],[-1,-1],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[0,-3],[-3,-16],[0,-2],[0,-1],[-1,-4],[0,-4],[0,-3],[0,-4],[0,-10],[1,-4],[0,-3],[1,-4],[1,-3],[0,-3],[6,-16],[16,-43],[7,-21],[11,-12],[8,-10],[34,-27],[16,-16],[38,-18],[13,-11],[16,-13],[24,-14],[57,-58],[18,0],[24,4],[20,8],[3,2],[23,20],[34,30],[14,7],[44,12],[88,2],[28,-1],[40,-33],[50,-52],[29,-13],[16,-7],[36,6],[15,0],[16,-1],[38,9],[10,8],[37,33],[13,-4],[5,-2],[1,0],[3,-1],[2,0],[3,0],[1,0],[9,0],[2,0],[3,1],[15,3],[2,0],[3,1],[2,1],[10,5],[3,1],[2,2],[3,1],[0,1],[8,7],[3,2],[16,-4],[31,-7],[24,-6],[19,-18],[7,-7],[6,0],[22,-1],[28,15],[58,19],[31,-1],[13,-9],[33,3],[11,1],[14,12],[29,26],[8,15],[0,1],[-2,53],[-2,59]],[[10339,86646],[1,0],[2,31],[3,4],[7,12],[-9,17],[-4,22],[2,1],[17,5],[-1,21],[14,-2],[9,-2],[-1,-23],[17,-12],[8,-6],[9,-16],[19,0],[17,0],[30,-19],[16,11],[19,8],[3,20],[5,49],[-12,14],[33,56],[40,-1],[22,-14],[-17,32],[4,20],[3,20],[21,-2],[26,-2],[25,9],[9,7],[9,6],[34,-9],[17,-13],[4,-3],[21,-11],[19,16],[-14,23],[-16,15],[-16,1],[-17,16],[-22,16],[-23,-17],[-10,-4],[-1,0],[-13,-6],[-11,15],[-17,7],[-5,2],[-21,8],[41,49],[34,21],[12,10],[30,27],[24,38],[32,74],[-4,83],[-40,61],[-15,9],[6,42],[3,4],[7,14],[-30,23],[1,16],[0,11],[-17,3],[0,5],[0,17],[88,-48],[0,-6],[-2,-28],[5,-26],[6,-12],[6,-13],[35,-42],[4,-17],[14,-62],[-14,-56],[-12,-3],[-7,-2],[4,-8],[9,-16],[27,-7],[-5,-26],[5,5],[13,14],[4,-22],[12,-17],[6,-7],[-4,-33],[12,-16],[5,9],[11,20],[-10,34],[22,19],[-20,21],[-10,10],[-7,8],[-2,28],[23,-2],[40,-33],[35,-10],[10,-10],[28,-29],[38,-27],[9,-6],[55,10],[35,-31],[8,-8],[-8,30],[-9,31],[-47,29],[-72,56],[-52,19],[-26,39],[-20,49],[17,8],[5,3],[-24,21],[-18,37],[19,2],[-1,4],[-8,15],[-18,-5],[-14,30],[-43,87],[-11,27],[-8,6],[-5,5],[7,4],[10,5],[13,-33],[15,20],[-6,17],[-1,0],[-1,4],[24,14],[-29,8],[-15,0],[13,22],[-27,-15],[7,29],[-7,15],[-8,72],[32,-16],[6,26],[64,-29],[18,-9],[27,39],[5,-9],[8,-13],[-5,-33],[-2,-16],[-1,-9],[-21,-22],[-8,-31],[13,13],[6,9],[7,10],[5,-54],[2,-21],[-18,-15],[8,-19],[-2,-9],[-1,-13],[-7,-15],[-6,-12],[1,-11],[0,-1],[1,-13],[-2,-24],[17,-7],[-4,32],[19,8],[20,-22],[4,-5],[10,-5],[7,-4],[10,-17],[19,-24],[10,-19],[10,-28],[4,-1],[15,-4],[3,5],[10,16],[19,-12],[14,-7],[15,-6],[10,-17],[12,-2],[14,-3],[-20,19],[-12,25],[-9,2],[-19,3],[-37,23],[-14,13],[-4,2],[-8,13],[-5,8],[-12,29],[-16,10],[3,3],[12,13],[-12,28],[-1,25],[8,53],[14,43],[13,-34],[-4,-1],[-15,-2],[4,-6],[7,-15],[18,2],[14,1],[28,0],[26,-13],[-12,-16],[-16,-22],[-4,-26],[2,-11],[2,-12],[9,-2],[7,-1],[23,-4],[-7,5],[-21,18],[24,47],[13,19],[2,2],[0,27],[-1,8],[-16,17],[28,3],[4,1],[8,-15],[2,-3],[1,-7],[3,-17],[12,-34],[2,-2],[16,-11],[4,2],[20,13],[-12,6],[-18,10],[-8,19],[-4,23],[-27,38],[-20,4],[-20,5],[14,14],[4,4],[-24,26],[-10,11],[15,15],[11,12],[47,-40],[5,-10],[4,-9],[7,22],[13,-1],[24,-2],[35,-22],[19,-1],[9,0],[14,-1],[-7,15],[-6,10],[22,5],[-21,17],[-11,-6],[-1,0],[-7,-4],[-26,0],[-11,7],[-32,21],[0,36],[0,15],[33,12],[27,11],[-64,50],[8,27],[8,27],[62,50],[29,36],[23,11],[17,6],[-8,19],[-3,12],[-3,13],[9,25],[4,13],[7,18],[3,10],[26,16],[26,15],[48,21],[38,15],[4,4],[9,8],[0,91],[0,61],[20,2],[-3,-134],[21,2],[0,50],[1,88],[15,7],[5,2],[0,-17],[-1,-32],[14,55],[31,8],[63,47],[29,11],[-29,-33],[-16,-17],[-19,-21],[-41,-47],[-2,-56],[11,-25],[13,-9],[34,-23],[16,14],[-2,36],[13,0],[13,1],[12,19],[7,28],[-1,7],[-9,58],[15,6],[2,-19],[1,-23],[17,73],[5,20],[5,-7],[7,-8],[0,-36],[19,-2],[5,88],[17,-1],[-3,-93],[6,-3],[15,-8],[9,-2],[15,-3],[-30,-69],[14,-12],[37,91],[0,22],[0,29],[17,-5],[6,-23],[3,-15],[1,-57],[22,73],[4,-2],[2,-1],[12,-5],[5,-65],[11,-1],[5,-1],[-1,26],[-1,24],[23,-17],[-7,-19],[24,0],[2,-1],[17,-11],[10,-16],[19,-5],[32,-29],[24,-5],[29,-34],[-18,24],[-4,6],[-21,29],[-38,44],[-7,7],[-1,1],[-2,1],[-44,31],[-43,42],[-28,17],[-2,1],[-73,45],[45,37],[8,7],[12,-8],[10,-6],[40,-26],[18,-12],[30,-22],[26,-31],[14,-16],[42,-74],[45,31],[75,-73],[21,-31],[-39,-54],[17,-27],[15,-8],[16,20],[8,10],[23,27],[28,-31],[24,-22],[-10,-10],[-41,-40],[42,-42],[72,-74],[29,-23],[7,-21],[30,18],[-19,20],[19,17],[207,-186],[-1,-28],[-29,3],[-42,34],[-54,44],[8,24],[-23,15],[-21,22],[-33,36],[-28,-29],[101,-106],[35,-20],[17,-19],[23,-26],[9,-7],[8,-5],[33,-33],[56,35],[28,-30],[-35,-39],[20,-21],[7,-7],[54,40],[-11,-15],[-31,-45],[6,-15],[3,-7],[47,-45],[17,3],[-41,59],[4,5],[16,17],[21,-4],[14,-2],[28,-11],[45,-18],[5,-10],[10,-20],[-13,-24],[-10,2],[-24,8],[-8,-1],[-7,-1],[-11,-18],[13,-4],[19,-6],[-13,-27],[8,-6],[19,-12],[43,42],[8,18],[16,29],[11,-39],[8,-27],[-1,-23],[0,-2],[0,-8],[-1,-16],[49,74],[34,-3],[-2,-82],[-2,-54],[1,-1],[34,-63],[42,160],[10,-202],[37,-29],[8,-61],[20,-30],[29,-9],[49,-14],[64,-18],[19,3],[85,12],[35,2],[44,2],[25,1],[19,0],[-6,-44],[-1,-13],[19,16],[18,15],[5,-4],[20,-19],[7,44],[4,2],[32,13],[39,-46],[45,27],[17,30],[15,26],[1,1],[7,12],[162,-69],[285,-54],[37,4],[64,8],[90,21],[75,19],[45,12],[29,10],[28,10],[57,19],[11,2],[13,3],[69,17],[64,9],[58,11],[48,14],[55,15],[61,26],[35,10],[7,2],[49,1],[19,0],[16,1],[46,19],[20,4],[12,3],[25,-4],[21,-4],[19,-1],[24,0],[44,5],[45,9],[59,-1],[40,4],[5,0],[62,-5],[28,-8],[53,-14],[32,-8],[15,-4],[28,-3],[39,-3],[38,2],[39,-6],[20,3],[8,1],[8,0],[28,1],[47,7],[10,0],[33,1],[32,4],[20,-2],[22,-1],[32,7],[15,4],[27,3],[35,4],[80,16],[27,6],[60,13],[33,6],[40,8],[14,4],[45,14],[42,8],[61,36],[16,7],[48,19],[34,12],[9,3],[16,8],[46,20],[18,14],[10,7],[33,18],[21,7],[18,5],[19,5],[13,4],[20,13],[22,13],[68,43],[2,1],[53,34],[17,6],[51,20],[75,22],[31,10],[23,5],[8,2],[20,8],[16,8],[13,6],[8,3],[1,0],[0,1],[13,5],[35,14],[18,8],[18,9],[15,8],[13,8],[30,13],[4,2],[48,18],[21,5],[51,12],[43,23],[30,8],[22,4],[10,2],[48,11],[54,22],[56,28],[1,0],[54,16],[32,13],[51,14],[66,23],[88,20],[29,3],[21,3],[39,11],[43,22],[37,7],[14,7],[16,8],[58,20],[24,7],[21,6],[43,13],[39,14],[9,4],[23,10],[31,10],[18,5],[43,9],[30,14],[42,24],[52,24],[9,5],[18,8],[52,19],[33,20],[8,4],[31,16],[47,20],[31,19],[24,15],[42,23],[16,6],[14,5],[51,26],[12,6],[44,32],[25,11],[41,18],[20,6],[28,9],[13,8],[14,10],[26,16],[7,4],[54,26],[17,7],[23,9],[51,21],[33,11],[73,6],[42,11],[50,24],[36,12],[13,5],[10,-1],[50,-2],[44,-7],[51,-10],[24,-4],[12,-1],[56,2],[11,0],[23,1],[33,-8],[0,-1],[40,-4]],[[29549,85090],[0,-51],[0,-11],[0,-60],[0,-3],[0,-31],[0,-26],[0,-20],[0,-26],[0,-11],[0,-64],[1,-134],[0,-85],[2,-52],[0,-24],[0,-74],[-1,-76],[0,-41],[0,-35],[-1,-24],[0,-53],[0,-52],[-1,-100],[0,-74],[-1,-97],[0,-22],[0,-36],[0,-25],[0,-38],[0,-85],[0,-108],[0,-12],[-1,-181],[36,0],[9,-44],[1,-120],[1,-19],[0,-32],[1,-82],[0,-33],[0,-68],[-10,-231],[0,-91],[0,-184],[0,-27],[0,-140],[0,-158],[0,-149],[0,-40],[0,-112],[0,-73],[3,-49],[7,-107],[-3,-69],[0,-33],[0,-10],[1,-40],[0,-80],[2,-93],[0,-60],[1,-52],[1,-58],[1,-108],[0,-27],[0,-60],[1,-123],[0,-24],[0,-39],[-3,-21],[3,-52],[0,-40],[0,-67],[0,-23],[-3,-217],[0,-72],[0,-1],[0,-56],[0,-85],[0,-377],[-2,-64],[-9,-236],[0,-102],[-9,-144],[-25,-193],[-3,-35],[-3,-23],[-10,-83],[1,-29],[5,-86],[2,-22],[8,-140],[3,-30],[21,-156],[18,-86],[0,-28],[-1,-35],[-1,-45],[-2,-49],[0,-8],[0,-83],[0,-49],[0,-38],[0,-29],[-1,-276],[-1,-240],[0,-91],[0,-118],[-1,-66],[0,-56],[0,-70],[0,-51],[-1,-72],[1,-120],[1,-84],[0,-14],[0,-33],[1,-23],[0,-47],[1,-120],[2,-194],[0,-49],[0,-57]],[[20151,88633],[22,-2],[24,-3],[17,-1],[58,-5],[47,-6],[33,-3],[14,1],[8,1],[31,2],[11,1],[35,3],[66,9],[22,3],[15,6],[20,9],[26,5],[23,5],[62,2],[17,1],[18,1],[7,0],[6,0],[15,5],[17,5],[22,11],[24,12],[27,10],[12,5],[15,6],[33,12],[19,12],[10,6],[7,8],[13,14],[18,23],[7,8],[53,45],[59,23],[21,3],[19,3],[46,12],[46,7],[68,4],[41,5],[29,4],[23,3],[30,9],[15,4],[43,5],[23,13],[14,8],[21,5],[32,8],[53,28],[31,9],[7,0],[10,0],[21,1],[32,13],[59,23],[73,35],[33,16],[1,0],[33,35],[27,23],[35,2],[8,-1],[13,-2],[8,-2],[19,7],[15,5],[6,8],[12,13],[13,4],[13,4],[7,20],[31,26],[87,41],[54,102],[31,57],[14,27],[131,-77],[128,1],[75,1],[42,1],[229,45],[8,2],[14,2],[23,20],[121,104],[99,172],[52,60],[41,53],[20,14],[16,12],[42,35],[1,0],[24,24],[34,6],[25,10],[15,6],[39,30],[35,26],[46,22],[55,32],[30,15],[25,7],[26,8],[30,33],[39,19],[19,4],[34,9],[39,10],[17,9],[19,10],[16,0],[70,-18],[37,1],[7,0],[23,1],[46,21],[2,1],[5,2],[1,15],[1,13],[44,38],[21,-3],[20,-3],[37,-14],[85,0],[15,1],[12,2],[41,7],[10,2],[17,3],[16,3],[41,13],[55,20],[65,31],[36,25],[29,33],[37,43],[24,36],[9,15],[23,42],[45,61],[34,39],[21,31],[2,3],[14,19],[13,18],[30,36],[16,30],[12,23],[6,7],[15,20],[16,14],[10,9],[39,33],[2,2],[31,25],[28,26],[22,6],[16,3],[67,11],[56,6],[15,2],[43,13],[42,19],[9,7],[23,15],[40,30],[11,13],[41,53],[28,36],[7,9],[13,26],[4,8],[20,40],[46,24],[4,2],[14,21],[10,15],[3,12],[12,37],[41,31],[63,-12],[10,-65],[-9,-38],[-11,-22],[-5,-10],[-43,-31],[-17,-7],[-19,-8],[-28,-12],[-24,-18],[-1,-1],[-23,-17],[-24,-46],[-9,-15],[-2,-14],[-1,-2],[-7,-32],[-36,-78],[-16,-20],[-23,-27],[-51,-53],[-2,-26],[0,-9],[-1,-18],[26,-41],[35,-47],[18,-38],[8,-4],[8,-4],[-18,-5],[-22,11],[-22,-2],[-53,34],[103,-118],[21,-5],[34,-8],[6,-3],[25,-11],[16,3],[20,-36],[35,-18],[26,5],[-12,9],[-6,4],[-14,10],[1,15],[0,9],[-91,62],[50,-28],[43,-25],[37,-10],[17,-9],[18,-9],[32,-12],[38,-15],[63,-12],[12,-2],[40,7],[13,3],[47,17],[10,29],[8,23],[1,39],[1,41],[1,19],[1,9],[0,8],[1,16],[32,23],[58,5],[17,0],[26,0],[24,6],[26,6],[54,35],[20,29],[11,16],[5,49],[15,70],[3,9],[10,34],[10,26],[9,20],[13,17],[17,22],[16,15],[19,17],[31,-1],[11,0],[55,-47],[-2,-12],[-8,-66],[-7,-45],[-19,-47],[-2,-43],[16,-22],[6,-9],[32,-19],[77,-27],[54,-11],[36,0],[19,1],[20,1],[28,0],[6,1],[38,-2],[54,8],[25,6],[29,6],[7,3],[9,3],[14,5],[24,25],[27,11],[61,24],[33,58],[-12,44],[5,44],[16,50],[3,46],[7,51],[2,13],[5,31],[3,50],[1,10],[7,10],[4,5],[3,5],[15,22],[36,19],[37,0],[48,15],[39,2],[33,-13],[0,-1],[32,-8],[13,-6],[23,-11],[23,-32],[9,-12],[40,-22],[65,-2],[22,2],[18,2],[30,12],[14,5],[33,9],[34,13],[5,3],[49,28],[46,31],[29,22],[36,32],[40,41],[37,43],[16,31],[21,40],[5,53],[4,37],[9,75],[10,20],[6,14],[36,21],[68,39],[31,26],[34,31],[15,14],[9,10],[21,24],[27,12],[28,8],[17,6],[72,39],[1,1],[4,2],[38,16],[12,5],[16,-4],[42,15],[14,5],[30,-5],[4,1],[4,1],[19,4],[7,2],[11,7],[31,20],[27,27],[25,28],[43,43],[33,33],[10,12],[20,25],[23,37],[5,9],[26,45],[6,14],[5,16],[9,23],[7,20],[17,50],[1,3],[27,47],[34,49],[13,19],[63,41],[25,0],[36,0],[18,-16],[2,-2],[21,-19],[14,-9],[26,-18],[47,-27],[46,-20],[77,-8],[19,-12],[19,-12],[33,-12],[24,-7],[12,-3],[8,-4],[37,-18],[33,-17],[13,-6],[3,-2],[9,-2],[30,-9],[64,-20],[18,-5],[29,-8],[47,0],[11,3],[65,17],[45,28],[14,42],[4,12],[31,66],[21,28],[25,22],[9,8],[29,15],[53,26],[59,28],[50,5],[22,7],[11,3],[29,13],[43,19],[7,5],[58,41],[25,31],[10,40],[2,69],[5,6],[8,11],[17,21],[7,3],[31,14],[30,16],[25,13],[36,15],[20,8],[13,4],[29,8],[61,3],[48,-3],[62,-15],[53,-29],[29,-23],[12,-10],[64,-17],[37,-6],[52,-2],[17,-8],[17,-6],[24,-19],[27,-41],[37,-77],[8,-38],[9,-44],[-8,-43],[-1,-9],[-1,-36],[-6,-38],[-4,-73],[13,-17],[1,-2],[18,-27],[47,-29],[67,-29],[17,-3],[22,-4],[8,0],[51,-2],[42,44],[34,43],[1,1],[4,6],[45,37],[31,4],[11,2],[43,-8],[48,-21],[53,-40],[21,-25],[27,-32],[33,-48],[23,-48],[13,-29],[5,-12],[16,-47],[14,-50],[2,-23],[3,-51],[-1,-27],[-1,-19],[0,-33],[0,-34],[18,-25],[23,-22],[36,-17],[31,-9],[43,-2],[54,-1],[45,-12],[31,-33],[43,-32],[35,-41],[8,-12],[2,-3],[10,-15],[52,-66],[36,-54],[12,-45],[2,-10],[0,-23],[-2,-39],[-10,-43],[-3,-15],[-42,-36],[-39,-20],[-3,-1],[-4,0],[-27,-6],[-23,-5],[-63,18],[-33,10],[-20,-1],[-15,-1],[-30,-14],[-17,1],[-5,0],[-12,12],[-14,14],[-19,18],[-8,-17],[-6,-13],[26,-20],[26,-14],[11,-15],[10,-12],[22,-25],[1,-3],[0,-4],[2,-11],[5,-44],[0,-61],[-27,-70],[-34,-80],[-38,-72],[-24,-41],[-2,-7],[-9,-28],[-20,-15],[-19,-14],[-18,-4],[-8,-1],[-12,-2],[-6,-29],[-4,-24],[-4,-23],[-43,-27],[-5,-37],[-2,-12],[1,-39],[6,-74],[33,-81],[-19,-24],[-28,-38],[-10,-9],[-1,-1],[-25,-26],[0,-1],[-1,-1],[-22,-25],[-8,-10],[-1,-17],[-4,-48],[-32,-67],[-14,-36],[-4,-12],[-4,-13],[-4,-13],[-12,-36],[-58,-60],[-39,-32],[-25,-25],[-5,-6],[-21,-26],[-53,-64],[-2,-27],[-2,-22],[-10,-44],[-2,-7],[-33,-28],[-42,-11],[-35,-3],[-16,-5],[-13,-4],[-21,-17],[-7,-6],[-32,-58],[-17,-64],[-21,-51],[-10,-15],[-21,-33],[-41,-48],[-25,-34],[-1,-1],[-14,-19],[-1,-1],[-6,-2],[-37,-16],[-39,0],[-17,0],[-35,8],[-29,2],[-16,6],[-16,6],[-34,5],[-66,-29],[-12,-56],[-1,-4],[0,-1],[-1,-3],[-48,-19],[-41,-46],[-8,-23],[-4,-9],[3,-11],[10,-39],[14,-31],[8,-16],[11,-28],[12,-31],[-2,-6],[0,-1],[-11,-31],[-15,-31],[-16,-38],[-17,-20],[-34,-39],[-54,-39],[-57,-40],[-37,-28],[-54,-19],[-40,-19],[-24,-26],[-5,-5],[-19,-21],[-2,-48],[-1,-22],[16,-72],[21,-59],[7,-19],[14,-35],[4,-9],[19,-51],[20,-55],[9,-18],[5,-12],[16,-39],[4,-11],[12,-38],[9,-29],[5,-15],[16,-34],[9,-18],[5,-12],[17,-40],[27,-60],[31,-51],[18,-25],[16,-21],[19,-52],[7,-36],[33,-50],[22,-43],[18,-49],[25,-40],[28,-47],[12,-16],[9,-14],[6,-12],[12,-23],[-2,-47],[-9,-46],[-11,-36],[-25,-20],[-34,-40],[-20,-24],[-15,-17],[-32,-30],[-30,-37],[-8,-16],[-7,-19],[-34,-47],[-38,-37],[-23,-11],[-3,-2],[-12,-5],[-12,-4],[-21,-6],[-60,-47],[-41,-28],[-48,-69],[17,-64],[-21,0],[-19,1],[-31,8],[-10,3],[-31,-16],[-52,-6],[-19,-3],[-19,-3],[-54,-11],[-32,-10],[-29,-18],[-8,-4],[-17,-10],[-30,-7],[-10,-3],[-27,-35],[-2,-2],[-22,-42],[-30,-30],[-10,-66],[-6,-41],[-1,-49],[0,-10],[1,-34],[9,-47],[-11,-51],[-8,-13],[-20,-38],[-6,-24],[-12,-50],[-1,-1],[-29,-26],[-4,-72],[5,-53],[-9,-38],[-9,-34],[-23,-29],[-12,-15],[-15,-12],[-13,-9],[-7,-6],[-2,-12],[-7,-33],[-2,-8],[-28,-71],[-40,-48],[-35,-35],[-23,-36],[-24,-45],[-17,-35],[-33,-29],[-59,-33],[-30,-20],[-44,-39],[-25,-51],[18,-44],[6,-13],[29,-45],[0,-21],[-12,-56],[20,-32],[13,-21],[27,-35],[46,12],[28,-3],[13,-5],[9,-4],[9,-1],[9,-2],[13,-10],[14,-11],[25,-2],[18,-11],[27,1],[24,-12],[8,-1],[12,-1]],[[31537,93072],[-42,-11],[-52,3],[-18,10],[-30,15],[1,26],[0,18],[1,15],[8,3],[16,5],[29,9],[5,3],[28,19],[23,37],[3,12],[3,21],[6,34],[28,10],[23,7],[20,2],[24,1],[33,-22],[11,-7],[6,-6],[26,-24],[-58,-48],[-18,-43],[0,-57],[-32,-13],[-37,-17],[-3,0],[0,-1],[-4,-1]],[[30468,93403],[61,-3],[17,7],[55,22],[21,-3],[24,-4],[40,-39],[-25,-54],[-31,-81],[-15,-7],[-35,-15],[-1,2],[-22,19],[-14,13],[-34,38],[-19,22],[-28,6],[-4,3],[-16,14],[-50,44],[-6,5],[-25,2],[-24,1],[-24,21],[-36,31],[1,24],[1,53],[34,38],[30,-31],[16,-18],[30,-82],[79,-28]],[[29572,93514],[26,-47],[-25,-22],[-25,-23],[-26,-35],[-13,-4],[-22,-6],[-8,-3],[-13,-12],[-21,-20],[-1,-6],[-2,-13],[-5,-34],[18,-68],[9,-26],[7,-23],[7,-27],[9,-41],[0,-65],[0,-30],[-1,-34],[-5,-4],[-39,-33],[-9,1],[-6,0],[-9,0],[-18,1],[-24,1],[-1,0],[-19,1],[-13,2],[-16,3],[-25,-6],[-13,-4],[-55,3],[-53,22],[-37,-3],[-29,-13],[-4,-1],[0,-1],[-22,-10],[-32,-2],[-18,-2],[-35,-9],[-42,21],[-30,69],[-24,65],[-44,50],[-9,-2],[-41,-8],[-35,0],[-2,0],[-1,0],[-13,21],[-24,38],[-7,32],[-14,59],[-1,63],[4,47],[2,16],[27,19],[28,20],[36,0],[9,0],[55,31],[49,20],[3,0],[37,6],[37,21],[46,4],[12,2],[44,4],[41,-16],[23,2],[14,1],[38,7],[13,3],[22,10],[21,10],[46,28],[17,13],[24,17],[29,54],[-2,37],[0,9],[0,1],[-1,8],[-7,49],[34,20],[10,-6],[13,-8],[44,-9],[3,-8],[24,-60],[9,-60],[4,-22],[-4,-66],[51,-19]],[[35235,85046],[-12,7],[-18,10],[-25,14],[-15,8],[-43,21],[-67,41],[-49,27],[-26,18],[-36,24],[-18,13],[-77,49],[-32,20],[-31,28],[-8,5],[-35,23],[-46,31],[-10,7],[-40,31],[-46,38],[-54,39],[-46,38],[-7,5],[-31,27],[-39,28],[-17,12],[-1,1],[-52,47],[-3,2],[-18,14],[-15,13],[-43,17],[-11,7],[-25,14],[-27,19],[-43,38],[-8,8],[-22,22],[-34,-10],[-2,1],[-19,3],[-10,2],[-5,2],[-10,5],[1,-17],[1,-15],[-29,-9],[-13,23],[-7,14],[-60,-39],[-33,1],[1,21],[1,8],[61,12],[9,22],[2,4],[-50,31],[17,26],[11,-13],[2,-2],[10,-13],[3,10],[4,15],[0,2],[4,-5],[5,-6],[9,-12],[10,-1],[8,0],[6,0],[29,-28],[21,1],[12,1],[11,-3],[7,-2],[-19,20],[-21,1],[-10,1],[-34,56],[-42,27],[-16,14],[-17,16],[-20,14],[-16,10],[-201,169],[1,0],[46,-47],[26,-41],[10,-5],[27,-12],[62,-57],[-1,0],[-1,-1],[-22,-20],[-17,-15],[-30,-16],[-48,-25],[-13,5],[-12,5],[-13,-10],[-14,-11],[-10,30],[-2,12],[-1,13],[-21,6],[-6,17],[-5,17],[-23,19],[3,6],[9,27],[6,5],[8,7],[26,26],[11,9],[1,1],[9,9],[-15,7],[-7,3],[-1,1],[-7,18],[-7,20],[-10,11],[-16,18],[-54,-2],[-15,6],[-25,10],[-12,32],[24,11],[8,4],[-3,-13],[-3,-19],[14,-4],[25,-7],[12,2],[10,2],[-3,4],[-1,1],[-17,21],[-31,30],[-31,30],[-82,72],[-23,23],[-24,20],[-18,15],[-5,3],[-29,24],[-12,9],[-20,20],[-7,8],[-16,16],[-39,31],[-55,38],[-32,30],[-22,18],[-221,192],[-89,78],[-89,74],[-10,9],[-164,158],[-135,126],[-209,205],[-171,165],[-99,98],[-50,88],[-55,75],[-148,167],[-13,3],[-11,2],[-85,19],[-33,8],[-97,19],[-49,10],[-112,-16],[-5,-9],[-12,-19],[27,-29],[1,-1],[1,-1],[12,4],[33,10],[29,8],[250,-54],[46,-29],[104,-67],[62,-62],[26,-32],[17,-64],[20,-43],[4,-9],[6,-13],[0,-43],[29,-42],[72,-45],[51,-33],[62,-40],[81,-56],[91,-112],[47,-74],[33,-9],[33,-33],[25,-36],[38,-6],[19,-29],[27,-18],[21,-3],[14,-24],[11,-18],[27,-24],[20,-24],[12,-15],[25,-37],[8,-5],[42,-29],[59,-44],[27,-3],[36,-64],[65,-20],[0,-1],[0,-21],[-13,-11],[34,-44],[39,-2],[1,0],[30,-1],[53,-32],[15,-15],[44,-44],[36,-35],[7,-8],[-27,-35],[-25,7],[-15,4],[-64,17],[-95,82],[-15,29],[-8,15],[-10,7],[-29,17],[-4,-21],[-27,2],[-3,0],[-43,31],[0,1],[-58,22],[-8,3],[-6,1],[-16,1],[-12,1],[-22,6],[-33,7],[-68,11],[-3,0],[-31,7],[-16,4],[-12,3],[-5,2],[-30,8],[-39,2],[-8,0],[-15,2],[-30,4],[-13,1],[-2,0],[-32,4],[-32,1],[-25,1],[-50,-8],[-39,-33],[-3,-1],[-1,-1],[-13,-7],[-27,-13],[-19,-36],[-32,-25],[-57,-52],[33,-7],[11,-3],[19,6],[48,16],[31,8],[4,1],[19,6],[30,5],[25,7],[53,30],[75,-19],[25,20],[109,6],[60,-79],[-1,-2],[-18,-12],[-33,-23],[-16,-11],[-50,-18],[-51,-60],[-18,-22],[-7,0],[-22,-1],[-59,-28],[-45,-22],[-42,-20],[-42,-17],[0,-1],[-10,-12],[-22,-30],[-20,-42],[-25,-24],[-20,-24],[-32,-33],[-2,-2],[-50,-45],[-14,-11],[-34,-28],[-43,-37],[-37,-30],[-13,-10],[-26,-20],[-45,-31],[-1,0],[-15,-10],[-30,-20],[-32,-15],[-11,-6],[-10,-6],[-6,-3],[-2,-1],[-8,-5],[-33,-21],[-38,-23],[-34,-18],[-32,-16],[-36,-14],[-31,-9],[-40,-8],[-40,-19],[-14,-2],[-32,-3],[-69,-21],[-15,-4],[-33,-8],[-26,-7],[-25,-6],[-46,-11],[-19,-5],[-6,-3],[-12,-6],[-20,-11],[-37,-36],[-47,-28],[-27,-14],[-31,-16],[-21,-9],[-5,-2],[-36,-17],[-40,-23],[-47,-19],[-21,-7],[-34,-11],[-44,-36],[-9,-5],[-30,-16],[-34,-17],[-28,-6],[-22,-25],[-38,-19],[-9,-4],[-10,-5],[-19,-10],[-21,-9],[-18,-8],[-44,-5],[-13,-2],[-34,-5],[-8,1],[-19,4],[-13,3],[-6,-23],[-6,-23],[-24,-3],[-21,-2],[-51,-44],[-15,-21],[-4,-5],[-16,-23],[-55,-75],[-47,-17],[-61,-48],[-24,-2],[-21,-1],[-8,0],[-43,21],[-2,-33],[-2,-20],[0,-2],[0,-7],[-12,-16],[-55,-43],[-36,-8],[-12,-1],[-9,0],[-19,0],[-10,0],[-44,6],[-24,6],[-16,-1],[-17,-1],[-16,5],[-48,15],[-33,20],[-8,3],[-9,2]],[[10339,86646],[-18,-11],[-1,-1],[-15,64],[3,73],[31,57],[50,47],[101,94],[91,75],[50,38],[50,56],[12,14],[20,62],[1,67],[-20,36],[-7,7],[-52,34],[-51,16],[-80,15],[-8,0],[-90,1],[-63,53],[-14,72],[10,57],[26,35],[31,43],[10,14],[16,19],[70,78],[101,64],[40,26],[50,21],[90,18],[27,-4],[50,-8],[9,-1],[93,-18],[59,-20],[50,-27],[8,2],[65,19],[37,52],[32,85],[15,47],[3,43],[1,17],[18,72],[5,21],[37,93],[7,6],[111,93],[180,106],[148,62],[128,9],[2,1],[31,0],[22,-1],[86,-12],[91,-45],[167,-155],[374,-358],[260,-287],[123,-71],[60,-13],[7,-2],[43,25],[13,8],[4858,2799],[1860,1043],[225,132],[1234,727],[4637,2876],[2126,1347],[67,42],[5387,3404],[11,0],[4176,-89],[5800,-133],[633,-14],[-633,-1372],[-5913,-12817],[-393,-866],[12,-28]],[[32559,95018],[9,-8],[31,5],[16,4],[26,8],[18,56],[2,53],[-8,47],[-9,50],[-3,15],[-32,71],[-18,21],[-23,26],[-15,12],[-19,13],[-35,-23],[-3,-51],[-1,-15],[11,-86],[11,-56],[-1,-15],[-1,-15],[-3,-31],[23,-52],[4,-11],[20,-18]],[[37487,95317],[-41,-18],[-3,-3],[-33,-20],[-25,-15],[-18,-12],[-17,6],[-41,16],[-34,22],[-33,23],[-29,-6],[-39,-14],[-60,-4],[-16,-5],[-14,-5],[-53,-11],[-33,-10],[-16,-5],[-12,-4],[-31,-12],[-29,-17],[-40,-31],[-13,-16],[-32,-39],[-68,-52],[-3,-8],[-18,-63],[-18,-46],[-10,-26],[-3,-9],[-17,-49],[-28,-77],[1,-50],[-12,-69],[-16,-93],[1,-36],[1,-34],[4,-30],[8,-59],[3,-39],[2,-34],[-2,-46],[4,-48],[3,-24],[3,-36],[-2,-37],[-2,-25],[-4,-27],[-9,-54],[-13,-76],[-12,-74],[-35,-46],[-18,-45],[-31,-40],[-37,-31],[-14,-68],[-1,-32],[-1,-32],[-2,-13],[-7,-59],[46,39],[29,30],[20,14],[11,8],[28,7],[8,2],[39,-4],[15,11],[5,4],[17,13],[37,18],[13,7],[53,0],[57,-20],[13,3],[27,6],[31,19],[3,2],[36,12],[22,7],[5,2],[35,40],[26,44],[10,17],[53,30],[4,10],[21,49],[5,7],[3,5],[23,34],[21,9],[2,1],[15,6],[25,1],[16,1],[2,0],[1,0],[7,0],[57,35],[18,37],[22,46],[7,13],[33,52],[27,39],[10,15],[-1,60],[0,17],[-3,23],[-6,44],[-7,38],[-11,23],[-6,12],[-7,55],[25,50],[7,34],[20,24],[21,27],[29,71],[3,70],[18,58],[28,49],[29,64],[8,36],[1,18],[2,28],[7,45],[3,24],[4,27],[-12,31],[-11,28],[-7,59],[8,63],[-17,4],[-29,7],[-39,7]],[[34386,93601],[38,47],[13,47],[0,40],[0,13],[-26,55],[-30,42],[-34,24],[-19,13],[-36,0],[-15,0],[-23,2],[-61,-3],[-34,-20],[-15,-10],[-16,-18],[-4,-5],[-2,-2],[-14,-18],[-33,-40],[26,-47],[17,-46],[18,-76],[24,-31],[29,-37],[31,-30],[34,9],[59,10],[11,15],[9,12],[19,26],[15,12],[2,2],[17,14]],[[33086,93879],[-17,3],[-11,-2],[-28,-4],[-23,-10],[-16,-7],[-15,-15],[-15,-14],[-6,-7],[-21,-24],[-31,-58],[-16,-41],[-13,-29],[-17,-37],[-41,-86],[-19,-56],[3,-52],[2,-3],[17,-38],[46,-28],[60,-6],[49,7],[54,14],[5,1],[6,2],[17,4],[45,49],[43,29],[29,26],[11,10],[20,22],[9,10],[1,1],[13,6],[17,8],[25,26],[14,16],[0,1],[7,8],[2,2],[4,6],[31,28],[24,20],[11,10],[53,28],[-31,60],[-40,26],[-17,14],[-9,7],[-38,41],[-58,14],[-73,6],[-17,4],[-17,4],[-29,4]],[[33884,93319],[-62,-10],[-36,-18],[-57,-35],[-83,-52],[-8,-11],[-6,-9],[-1,-1],[-18,-26],[-80,-58],[-33,-29],[-22,-22],[-21,-20],[-10,-20],[-10,-21],[-21,-47],[-19,-40],[-31,-38],[-7,-10],[-47,-38],[4,-19],[3,-13],[16,-28],[28,-43],[17,-19],[13,-14],[53,17],[21,11],[36,18],[16,7],[4,2],[22,9],[8,3],[8,4],[24,20],[2,1],[24,20],[55,42],[27,50],[9,16],[54,54],[52,23],[3,2],[37,24],[9,6],[31,19],[41,48],[14,26],[20,38],[1,53],[1,39],[-25,74],[-35,9],[-21,6]],[[34415,92687],[-18,-16],[-3,-2],[-6,-6],[-18,-14],[-24,-18],[-22,-15],[-14,-9],[-42,-21],[-29,-12],[-11,-4],[-14,-3],[-12,-3],[-15,-3],[-13,0],[-31,-2],[-43,-6],[-52,-3],[-43,-15],[-54,-17],[-10,-11],[-23,-24],[-9,-10],[-15,-27],[-13,-21],[-29,-46],[-23,-37],[-23,-36],[-37,-55],[-26,-33],[-11,-14],[-22,-31],[-16,-33],[-7,-12],[-15,-26],[-9,-22],[-5,-14],[0,-13],[1,-37],[32,-50],[27,-40],[45,-53],[6,-8],[36,-44],[26,-27],[6,-5],[11,-4],[3,-2],[24,-9],[42,-3],[22,3],[1,0],[19,2],[16,2],[16,2],[5,2],[32,12],[37,16],[41,13],[46,20],[29,13],[4,1],[2,1],[61,27],[28,38],[31,61],[6,30],[8,39],[34,22],[16,2],[1,0],[13,2],[17,-3],[1,-1],[22,-4],[45,-37],[32,-55],[9,-7],[32,-25],[35,7],[22,1],[14,0],[42,8],[27,5],[35,7],[1,0],[3,2],[15,6],[1,1],[8,3],[35,22],[23,29],[2,2],[7,12],[10,17],[1,1],[7,13],[12,5],[41,20],[28,17],[3,2],[31,19],[39,2],[31,-10],[3,-1],[40,-13],[17,-10],[20,-12],[40,-37],[28,-26],[20,-26],[43,-56],[4,-31],[3,-30],[-12,-35],[-24,-53],[59,-6],[31,6],[30,5],[9,4],[2,1],[31,14],[23,-2],[15,24],[1,0],[4,7],[0,27],[-16,-2],[-58,54],[-11,19],[-17,31],[-18,137],[11,92],[6,28],[13,19],[19,29],[5,8],[6,8],[16,8],[28,13],[19,-2],[9,-1],[10,-4],[35,-13],[47,-10],[11,0],[11,-1],[21,-1],[37,17],[31,62],[3,40],[2,30],[7,24],[11,36],[9,33],[3,14],[15,13],[24,22],[23,32],[9,9],[14,17],[36,37],[25,29],[45,54],[6,16],[12,38],[-20,33],[-7,11],[-30,42],[-10,6],[-29,17],[-31,12],[-24,21],[-11,9],[-37,40],[-56,27],[-63,10],[-76,-42],[-17,-1],[-19,-2],[-48,-9],[-31,-14],[-106,-73],[-37,-19],[-16,-4],[-22,-6],[-56,-10],[-45,-7],[-31,-2],[-28,-2],[-8,0],[-76,-3],[-37,-4],[-16,-2],[-21,-4],[-24,-5],[-11,-4],[-16,-5],[-31,-9],[-32,-10],[-34,-11],[-12,-3],[-12,-4],[-29,-8],[-22,-8],[-32,-10],[-38,-13],[-82,-27],[-55,-34],[-9,-9]],[[32454,91923],[32,2],[48,-1],[30,2],[46,17],[54,8],[32,6],[27,4],[40,3],[6,1],[15,1],[20,-1],[6,0],[31,-2],[13,1],[23,1],[69,5],[36,1],[29,1],[57,0],[7,0],[46,25],[15,50],[-3,62],[-14,34],[-12,28],[-3,29],[0,5],[-2,19],[-3,17],[-4,20],[-4,32],[-4,34],[-15,45],[-43,53],[-58,47],[-40,34],[-31,39],[-33,43],[-14,26],[-16,32],[-38,74],[-16,73],[-25,40],[-48,2],[-11,-1],[-30,-2],[-21,6],[-7,1],[-30,5],[-4,0],[-70,1],[-23,5],[-25,5],[-30,18],[-20,20],[-12,12],[-27,45],[-12,1],[-22,3],[-61,-21],[-15,-14],[-3,-3],[-23,-24],[-34,-36],[-18,-16],[-30,-27],[-29,-33],[-19,-21],[-10,-16],[-19,-28],[-53,-46],[-47,-42],[8,-70],[5,-15],[7,-19],[9,-10],[16,-17],[7,-10],[0,-1],[17,-24],[18,-16],[6,-5],[36,-34],[12,-32],[1,-2],[4,-11],[-2,-79],[9,-11],[30,-39],[13,-6],[17,-8],[25,-11],[12,-19],[14,-22],[21,-37],[4,-6],[10,-9],[13,-11],[23,-37],[9,-16],[15,-25],[27,-30],[12,-24],[6,-13],[25,-36],[20,1]],[[31961,93762],[43,-9],[17,2],[9,2],[21,-8],[32,-12],[20,-16],[3,-1],[19,-16],[36,3],[8,1],[7,1],[62,0],[13,62],[9,10],[31,36],[38,34],[34,55],[25,59],[-1,22],[-2,27],[-13,47],[-6,15],[-12,33],[-49,50],[-21,48],[-4,23],[-3,18],[-46,4],[-42,35],[-12,15],[-13,17],[-29,31],[-19,43],[-11,14],[-19,22],[-53,-17],[-54,-37],[-2,-2],[-16,-11],[-16,-11],[-5,-5],[-30,-28],[-7,-10],[-20,-30],[-10,-19],[-10,-18],[-36,-35],[25,-39],[-1,-26],[0,-4],[0,-12],[-4,-57],[2,-32],[2,-16],[20,-56],[8,-45],[18,-51],[10,-49],[23,-24],[31,-33]],[[33242,94123],[40,-11],[7,39],[2,13],[2,14],[7,50],[9,23],[11,26],[14,41],[5,15],[27,29],[23,45],[7,41],[12,68],[7,16],[0,1],[9,21],[14,34],[46,34],[-29,15],[-9,4],[-2,1],[-14,0],[-30,-1],[-38,0],[-11,0],[-71,6],[-15,4],[-22,4],[-25,-3],[-19,-3],[-22,-20],[-30,-27],[-9,-22],[-3,-7],[-8,-21],[-16,-39],[-18,-49],[-1,-54],[-9,-41],[4,-67],[0,-25],[-1,-67],[6,-12],[1,-1],[13,-24],[50,-24],[38,-13],[1,-1],[1,0],[31,-8],[15,-4]],[[33512,94646],[14,-8],[20,-11],[2,-1],[2,-1],[28,18],[1,1],[16,9],[8,8],[25,23],[49,34],[44,45],[7,15],[15,28],[10,21],[12,22],[-28,-1],[-21,-7],[-24,-8],[-25,-11],[-49,-21],[-1,-4],[-5,-44],[-42,-60],[-30,-20],[-28,-27]],[[35029,94563],[-30,-11],[-37,-22],[-40,-22],[-1,-1],[-2,-3],[-32,-41],[-35,-53],[1,-37],[0,-42],[40,-38],[1,-1],[5,-4],[30,-24],[1,-16],[0,-7],[1,-6],[0,-7],[2,-42],[3,-37],[3,-36],[4,-51],[9,-58],[7,-49],[9,-34],[14,-49],[15,-42],[5,-15],[10,-67],[16,-47],[2,-65],[55,8],[43,30],[11,6],[49,24],[30,31],[25,28],[8,10],[14,23],[17,30],[-2,53],[5,27],[1,9],[4,15],[4,19],[-5,58],[3,40],[2,24],[-30,27],[-7,7],[-18,18],[-22,23],[-19,16],[-41,35],[-42,28],[-18,14],[-17,14],[-16,14],[-17,16],[-33,45],[-34,50],[28,54],[7,14],[9,23],[21,54],[-16,40]],[[33895,94535],[-46,22],[-58,-13],[-30,-42],[-18,-26],[-36,-64],[-3,-83],[58,-57],[27,-20],[4,-2],[1,-1],[18,-13],[25,3],[16,2],[10,9],[20,20],[16,43],[-15,65],[11,34],[27,48],[-5,39],[-22,36]],[[34700,95251],[-22,31],[-23,-21],[-8,-6],[-10,-69],[-15,-74],[-2,-27],[-1,-22],[2,-29],[2,-26],[19,-52],[19,22],[8,8],[7,7],[23,23],[12,60],[16,85],[-5,58],[-8,12],[-14,20]],[[36594,91565],[-33,-27],[-90,-45],[-43,-21],[-39,-18],[-12,-4],[-29,-12],[-19,-9],[-18,-9],[-40,-18],[-1,0],[-42,-20],[-44,-14],[-26,-2],[-18,-2],[-47,-8],[-67,-21],[-20,-20],[-15,-16],[-23,-20],[-39,-32],[-10,-8],[-37,-22],[-36,-18],[-27,-26],[-21,-12],[-11,-6],[-14,-6],[-29,-11],[25,-24],[10,-10],[53,-7],[11,-4],[24,-10],[70,-33],[24,-9],[22,-9],[40,-17],[8,1],[34,2],[51,17],[81,23],[90,33],[26,9],[5,1],[3,0],[18,1],[5,6],[23,27],[23,61],[1,5],[3,14],[3,17],[20,20],[1,1],[14,13],[30,-4],[38,14],[34,51],[0,1],[18,28],[27,24],[43,28],[33,22],[9,7],[18,11],[27,17],[33,39],[8,29],[8,31],[-10,46],[-25,13],[-55,-25],[-58,-21],[-16,-12]],[[34412,91075],[-34,14],[-36,0],[-39,3],[-71,9],[-30,-7],[-41,-18],[-40,-38],[-21,-18],[-1,-2],[-12,-11],[-18,-17],[-25,-23],[-38,-31],[-25,-24],[-11,-10],[-20,-39],[-2,-4],[-29,-48],[-17,-22],[-18,-22],[-39,-69],[-25,-29],[-51,-56],[-39,-45],[-20,-23],[-61,-66],[-27,-23],[-46,-29],[-50,-33],[-37,-25],[-9,-6],[-7,-6],[-30,-26],[-10,-9],[-47,-39],[-1,0],[-45,-28],[-22,-12],[-65,-36],[-48,-15],[-32,-11],[-50,-26],[-57,-38],[-26,-17],[-79,-40],[-67,-28],[-18,-7],[-32,-12],[-32,-17],[-25,-12],[-50,-36],[-38,-32],[-28,-22],[-41,-44],[-37,-39],[-33,-48],[-5,-49],[0,-1],[-3,-30],[-14,-49],[-8,-13],[-18,-30],[-34,-32],[-22,-9],[-10,-5],[-53,-2],[-31,-14],[-34,-14],[-34,0],[-15,0],[-53,-1],[-50,-6],[-30,-9],[-9,-3],[-40,-19],[-14,-9],[-16,-10],[-51,-46],[-33,-26],[-19,-11],[-23,-14],[-6,-3],[-28,-12],[-50,-7],[-23,-5],[-34,-7],[-40,-7],[-45,-3],[-38,-12],[-38,-25],[-29,-34],[-9,-11],[15,-89],[32,-36],[46,-59],[10,-21],[5,-10],[20,-40],[2,-14],[5,-42],[-4,-23],[-7,-29],[-40,-60],[-31,-52],[-15,-25],[-7,-11],[5,-48],[26,-56],[-5,-13],[-10,-25],[50,-17],[52,-2],[45,8],[35,2],[4,0],[64,3],[88,26],[20,10],[14,7],[20,12],[3,2],[16,10],[23,18],[20,20],[10,10],[21,16],[3,2],[13,10],[2,2],[2,1],[10,12],[11,13],[16,19],[22,31],[23,33],[3,3],[24,22],[46,19],[18,0],[19,0],[28,13],[18,8],[37,42],[15,18],[13,18],[39,58],[11,13],[13,14],[43,46],[39,52],[47,50],[19,13],[19,13],[52,20],[17,-3],[28,-4],[88,-32],[71,-29],[15,-3],[13,-3],[46,1],[39,5],[42,12],[14,3],[5,1],[22,5],[43,5],[47,4],[39,12],[44,26],[55,21],[17,4],[19,5],[31,7],[19,5],[20,1],[33,2],[28,4],[27,3],[34,7],[12,3],[23,23],[14,20],[6,8],[21,30],[18,59],[-5,49],[-18,14],[-15,14],[-27,10],[-8,3],[-15,0],[-32,0],[-36,3],[-45,-21],[-27,-5],[-26,17],[-14,10],[-30,31],[-12,14],[-9,21],[-4,8],[-32,123],[2,55],[2,64],[6,42],[4,29],[-10,-19],[-9,-15],[-17,-30],[-4,-128],[5,-29],[16,-84],[-34,-4],[-15,-2],[-9,-1],[-79,-3],[-18,21],[6,24],[5,19],[27,34],[39,55],[0,24],[-4,-1],[-24,-6],[-53,-16],[-3,14],[-3,10],[3,2],[19,13],[23,15],[24,16],[37,31],[12,10],[73,75],[9,4],[28,12],[24,12],[9,4],[18,6],[17,6],[5,2],[26,14],[25,11],[25,12],[66,17],[56,21],[18,5],[15,4],[34,7],[28,5],[11,2],[18,4],[43,16],[3,1],[24,9],[17,10],[19,11],[48,26],[15,9],[27,17],[118,60],[21,11],[11,5],[9,4],[1,1],[35,16],[13,6],[13,7],[64,23],[52,5],[1,0],[62,6],[56,5],[41,6],[19,3],[27,4],[43,2],[62,2],[28,0],[27,4],[25,3],[24,9],[22,8],[12,5],[2,1],[35,15],[14,25],[8,14],[18,22],[2,2],[8,10],[5,1],[1,1],[61,19],[25,31],[-31,46],[-47,23],[-36,21],[-16,8],[-14,8],[-15,10],[-19,13],[-51,40],[-11,12],[-37,36],[-38,44],[-9,11],[-32,46],[-13,22],[-19,33],[-35,55],[-32,38],[-46,46],[-34,20]],[[32514,91070],[-16,4],[-55,-10],[-37,-23],[-26,-23],[-12,-11],[-34,-38],[-29,-43],[-48,-49],[-50,-72],[-20,-58],[-12,-21],[-18,-31],[-8,-13],[-9,-16],[-23,-36],[-16,-39],[-4,-25],[-5,-28],[-4,-39],[-9,-41],[-4,-14],[-11,-55],[-9,-45],[-7,-23],[-5,-18],[-13,-51],[-9,-33],[29,-16],[1,0],[28,-6],[29,8],[35,9],[34,18],[9,6],[23,12],[18,11],[45,38],[32,28],[43,41],[30,28],[32,40],[19,30],[7,12],[28,40],[18,25],[7,14],[19,37],[34,60],[8,12],[33,52],[16,27],[1,2],[7,11],[5,14],[18,49],[12,34],[3,7],[15,53],[-12,31],[-7,21],[-59,74],[-58,27],[-9,2]],[[33312,91537],[-18,2],[-5,-3],[-28,-18],[-63,-16],[-43,-17],[-11,-10],[-20,-16],[-48,-9],[-61,-31],[-14,-15],[-1,-2],[-18,-19],[-21,-17],[-22,-19],[-7,-52],[56,-46],[18,-13],[20,-15],[76,-9],[1,0],[31,-3],[64,6],[31,19],[19,8],[42,18],[21,6],[19,5],[23,15],[21,14],[50,54],[16,32],[12,21],[3,46],[-47,55],[-53,25],[-43,4]],[[72769,68362],[1,3],[1,0],[7,1],[96,4],[30,5],[33,25],[12,10],[19,15],[45,49],[14,33],[5,5],[19,17],[102,13],[67,-6],[25,6],[51,25],[25,17],[19,14],[25,8],[1,0],[34,2],[57,-4],[16,-9],[35,-3],[39,15],[6,2],[13,10],[27,21],[42,14],[59,20],[30,3],[44,-4],[26,-13],[22,-25],[2,-13],[3,-24],[9,-22],[13,-15],[12,-13],[13,-30],[27,-98],[6,-22],[25,-90],[4,-16],[-3,-34],[-16,-11],[-16,-10],[-9,1],[-31,5],[-48,-28],[0,-6],[0,-5],[2,-16],[11,-8],[18,-9],[118,-39],[112,-67],[17,-19],[21,-11],[4,-4],[38,-39],[24,-41],[-5,-16],[-3,-11],[0,-2],[7,-8],[1,-1],[7,-7],[15,-9],[45,-20],[27,1],[63,23],[2,0],[6,0],[21,-2],[31,-8],[19,-4],[1,0],[72,-4],[36,4],[6,1],[30,5],[74,13],[68,31],[1,0],[34,-5],[3,-1],[2,-2],[43,-44],[26,-15],[16,-1],[3,0],[22,13],[8,16],[6,12],[12,10],[13,4],[25,-2],[15,-17],[2,-8],[2,-6],[14,-19],[11,-6],[15,-2],[7,0],[10,-1],[18,14],[6,22],[2,7],[3,3],[11,11],[5,2],[9,2],[22,-1],[26,-13],[32,-37],[11,-30],[0,-1],[7,-39],[10,-11],[18,-9],[6,-4],[4,0],[28,-5],[13,9],[22,17],[23,5],[4,1],[36,2],[60,-2],[132,-14],[38,-37],[22,-20],[10,-4],[49,-1],[12,-15],[5,-9],[20,-45],[15,-17],[29,-13],[22,-26],[-1,-13],[-11,-9],[-7,-5],[-5,-5],[-19,-25],[-6,-39],[20,-60],[5,-14],[1,-1],[10,-15],[80,-118],[11,-23],[4,-8],[13,-18],[1,-1],[10,-15],[21,-12],[40,-10],[7,-2],[5,-4],[27,-26],[0,-1],[26,-26],[2,-2],[5,-4],[63,-61],[53,-43],[31,-16],[40,-14],[2,0],[88,-23],[6,-2],[15,-5],[30,-34],[48,0],[17,-1],[67,-13],[39,-13],[3,-1],[10,-5],[16,-8],[28,-20],[27,-32],[13,-16],[29,-34],[-7,-47],[-11,-28],[-36,-30],[-8,-6],[-1,-9],[0,-7],[44,-48],[4,-11],[5,-14],[32,-34],[46,-38],[45,-26],[102,-60],[29,-23],[25,-20],[19,-16],[6,-6],[24,-28],[27,-44],[4,-5],[15,-41],[2,-40],[-4,-24],[-2,-15],[-3,-23],[-5,-29],[-5,-4],[-2,-2],[-10,-8],[-91,-19],[-11,-1],[-5,1],[-3,2],[-14,-2],[-67,-6],[-29,-16],[-8,-4],[-2,-1],[-29,-24],[-43,-54],[-3,-3],[-8,-7],[-59,-21],[-35,-3],[-12,-1],[-49,1],[-13,-2],[-6,-4],[-21,-22],[-12,-5],[-11,-4],[-20,-5],[-29,-6],[-44,-2],[-10,-6],[-13,4],[-20,-18],[-9,-20],[-2,-16],[15,-14],[39,-1],[4,0],[24,-35],[0,-2],[-2,-23],[-6,-13],[-19,-22],[-21,-24],[-2,-29],[12,-21],[2,-4],[8,-30],[-6,-42],[-1,-7],[17,-22],[15,-12],[44,-21],[32,-14],[10,-13],[31,-38],[21,-15],[1,0],[4,0],[20,-21],[7,-9],[10,-10],[12,-20],[28,-57],[21,-71],[5,-11],[4,-10],[6,-13],[9,-21],[1,-3],[5,-5],[11,-11],[8,-7],[1,-2],[10,-9],[6,-6],[3,-4],[30,-21],[5,-8],[5,-4],[22,-27],[5,-7],[8,-17],[1,-2],[3,-63],[7,-16],[0,-1],[1,-1],[16,-18],[38,-27],[93,-26],[56,-10],[13,-7],[19,-25],[30,-92],[-4,-47],[8,-53],[14,-30],[20,-23],[-4,-68],[-1,-13],[-15,-54],[-1,-2],[0,-2],[-1,-16],[-2,-36],[-5,-86],[-12,-11],[-40,-38],[-11,-10],[-13,-13],[-17,-6],[-12,-8],[-22,-15],[-4,-7],[-7,-11],[-2,-2],[-6,-42],[2,-18],[1,-6],[2,-105],[-7,-44],[-10,-19],[0,-2],[-1,-4],[-3,-37],[3,-27],[-6,-17],[-10,-31],[-2,-5],[-19,-25],[-20,-15],[-10,-8],[-4,-3],[-28,-11],[-25,-3],[-7,0],[-57,5],[-1,0],[-77,15],[-64,40],[-9,6],[-9,5],[-57,5],[-36,14],[-21,12],[-57,3],[-21,1],[-11,1],[-6,3],[-35,18],[-13,12],[-22,2],[-8,-5],[-26,-19],[-2,-18],[7,-19],[-1,-11],[-2,-23],[-8,-23],[-13,-20],[-9,-15],[-4,-20],[16,-25],[36,-30],[34,-42],[39,-22],[13,-1],[4,-1],[35,-15],[50,-39],[5,-5],[1,0],[22,-29],[12,-16],[-3,-34],[4,-14],[27,-31],[74,-82],[13,-6],[63,-82],[-11,-62],[-15,-146],[10,-35],[7,-11],[4,-19],[14,-114],[3,-56],[23,-75],[34,-84],[15,-38],[13,-15],[5,-6],[11,-13],[21,-10],[20,-23],[22,-39],[11,-19],[-6,-23],[-7,-28],[-35,-49],[-2,-3],[-23,-36],[-15,-22],[-1,-11],[-2,-20],[5,-11],[-13,-120],[-1,-5],[-1,-2],[-38,-45],[-3,-4],[-7,-6],[-5,-5],[-45,-48],[-6,-5],[-15,-11],[-9,-21],[2,-37],[21,-44],[2,-2],[-1,-7],[-2,-22],[0,-2],[-5,-8],[-2,-3],[-6,-9],[-76,-100],[-3,-4],[-47,-38],[-55,-35],[-29,-24],[-50,-48],[-105,-52],[-20,-17],[-9,-12],[-3,-26],[-21,-49],[-6,-15],[-7,-6],[-8,-7],[-6,-6],[-53,-19],[-15,-4],[-21,-6],[-6,2],[-25,-17],[-1,-1],[-10,-7],[-5,-15],[-7,-29],[-14,-27],[-9,-10],[-5,-4],[-21,-15],[-31,-11],[-36,-12],[-21,-15],[-2,-2],[-4,-4],[-11,-10],[-10,-26],[-4,-21],[-2,-12],[-9,-18],[-4,-3],[-31,-23],[-20,-23],[-4,-6],[-9,-10],[1,-19],[11,-13],[1,-1],[20,-46],[-7,-107],[-1,-13],[2,-7],[4,-16],[3,-7],[31,-45],[9,-43],[-1,-18],[-1,-5],[18,-25],[12,-17],[4,-6],[4,-3],[42,-32],[19,-23],[14,-27],[11,-90],[-1,-74],[-5,-4],[-23,-18],[-40,-17],[-57,-29],[-18,-14],[-12,-20],[-1,-37],[1,-2],[4,-8],[4,-9],[5,-5],[2,-4],[1,-1],[6,-7],[13,-19],[2,-9],[2,-4],[-2,-22],[-3,-9],[-19,-57],[-6,-13],[-12,-15],[-14,-11],[-15,-12],[-15,-13],[-14,-6],[-104,-52],[-6,-3],[-3,-1],[-32,-27],[-31,-44],[-1,-6],[-4,-44],[0,-3],[7,-16],[12,-13],[33,-37],[7,-7],[4,-5],[0,-12],[0,-18],[0,-6],[0,-1],[-91,-83],[-38,-35],[-68,-58],[-6,-10],[-3,-6],[-32,-56],[-12,-44],[-3,-36],[4,-15],[4,-13],[4,-13],[9,-10],[3,0],[104,-2],[27,-3],[4,-1],[4,-1],[1,0],[1,2],[19,27],[17,14],[55,19],[1,0],[0,1],[14,13],[6,6],[1,31],[0,6],[0,5],[-14,22],[-40,44],[-21,24],[-3,7],[-6,15],[2,28],[15,12],[3,3],[15,3],[3,0],[1,0],[1,0],[47,-6],[15,-11],[5,-4],[5,-6],[13,-15],[4,-5],[5,-8],[12,-22],[4,-8],[1,-6],[1,-2],[4,-24],[-9,-73],[-1,-10],[0,-6],[0,-9],[1,-4],[11,-27],[13,-17],[17,-22],[6,-9],[38,-29],[41,-19],[15,-2],[51,-5],[11,-13],[10,-11],[12,-14],[3,-7],[3,-7],[7,-19],[-1,-22],[-2,-18],[0,-2],[-5,-7],[-14,-25],[0,-1],[2,-1],[6,-2],[25,0],[11,3],[16,5],[61,27],[12,5],[39,10],[9,0],[12,0],[2,0],[6,5],[19,28],[4,43],[2,19],[10,28],[35,29],[11,1],[38,-3],[15,-6],[23,-15],[10,-12],[1,0],[26,1],[21,16],[4,21],[9,5],[8,4],[53,-7],[27,-9],[39,-12],[86,-5],[17,4],[22,16],[4,3],[28,13],[39,13],[19,1],[50,-2],[99,-3],[7,-1],[16,-6],[11,-11],[33,-32],[28,-18],[1,0],[13,-7],[9,-1],[20,-1],[36,7],[38,13],[26,9],[17,6],[64,-1],[54,-35],[26,-16],[17,-7],[5,-2],[4,-1],[29,-5],[20,11],[27,7],[3,1],[2,0],[31,0],[17,14],[31,42],[0,5],[-4,55],[11,6],[10,6],[6,3],[16,4],[53,16],[3,0],[67,-3],[14,4],[21,17],[6,38],[44,77],[7,11],[9,12],[27,35],[47,62],[79,103],[61,77],[40,28],[31,6],[13,3],[68,34],[7,7],[17,16],[3,3],[1,4],[4,20],[13,22],[16,13],[38,30],[56,45],[34,18],[54,19],[37,0],[53,-15],[23,-13],[15,-17],[7,-16],[6,-14],[5,-6],[24,-30],[1,-1],[18,-9],[6,-1],[23,-4],[31,-13],[5,-3],[4,-2],[9,-5],[5,-5],[5,-6],[4,-71],[14,-31],[5,-5],[11,-13],[115,-81],[2,-1],[1,0],[25,-14],[21,-14],[34,-23],[4,-3],[13,-9],[3,-1],[1,-1],[15,-18],[11,-12],[1,-56],[1,-13],[-1,-26],[-9,-18],[-6,-4],[-2,-56],[15,-31],[11,-13],[10,-37],[19,-28],[20,-20],[68,-53],[6,-21],[0,-1],[0,-2],[-10,-44],[10,-41],[1,-31],[1,-63],[-1,-21],[-7,-15],[-4,-9],[-10,-22],[-23,-29],[-38,-47],[-17,-14],[-8,3],[-46,-33],[-53,-93],[-4,-8],[-4,-7],[-3,-31],[5,-8],[1,-21],[0,-4],[2,-28],[-4,-39],[-1,-3],[-3,-5],[-14,-25],[-6,-11],[-4,-9],[-7,-12],[-128,-157],[0,-1],[-27,-31],[-41,-44],[-37,-38],[-6,-6],[-88,-87],[-44,-67],[-64,-105],[-4,-73],[-13,-47],[-2,-10],[-8,-9],[-29,-35],[-16,-30],[-3,-8],[-3,-7],[11,-58],[-27,-35],[-3,-4],[6,-25],[4,-46],[5,-24],[-1,-45],[-4,-6],[0,-4],[-4,-3],[-7,-10],[-16,-13],[-23,-10],[-21,-18],[-20,-7],[-1,-1],[-15,-15],[-1,-35],[-10,-17],[-10,-23],[-19,-18],[-9,-19],[-17,-20],[4,-2],[4,-2],[30,-12],[-17,-40],[1,-22],[-5,-20],[-13,-15],[1,-15],[0,-4],[0,-1],[-1,-54],[-3,-13],[-22,-97],[-4,-44],[12,-37],[0,-1],[0,-1],[0,-9],[-2,-19],[-4,-7],[-12,-9],[-3,-2],[-13,-10],[-50,6],[-9,1],[-23,-14],[-4,-14],[-4,-19],[-7,-9],[-2,-3],[-4,-4],[-72,-85],[-4,-4],[0,-21],[4,-4],[28,-24],[21,-19],[4,-3],[3,-26],[-7,-50],[-7,-17],[-3,-4],[-52,-63],[-19,-38],[-4,-41],[20,-110],[-1,-32],[0,-10],[-21,-21],[-3,-2],[-18,-10],[-88,-49],[-2,-2],[-13,-17],[-1,0],[-1,-2],[-9,-9],[-7,-8],[-15,-20],[-7,-8],[-53,-89],[8,-40],[13,-58],[31,-130],[5,-20],[4,-12],[1,-3],[1,-3],[15,-62],[0,-2],[8,-34],[0,-3],[1,-3],[0,-1],[2,-18],[1,-3],[0,-3],[0,-4],[0,-2],[-1,-83],[1,-8],[2,-4],[2,-3],[89,-66],[1,0],[2,-2],[3,-2],[3,-3],[18,-17],[2,-2],[2,-2],[2,-2],[9,-12],[33,-25],[12,-8],[6,-14],[11,-19],[22,-40],[33,-25],[47,-34],[84,-35],[8,-1],[6,-5],[1,0],[0,-1],[7,-6],[13,-15],[1,-11],[0,-13],[19,-14],[2,-1],[1,-1],[23,-20],[1,-1],[2,-2],[1,0],[55,-61],[20,-23],[43,2],[29,1],[29,-16],[16,-11],[1,-2],[41,-29],[22,-17],[17,-18],[13,-13],[25,-26],[3,-4],[26,-31],[2,-2],[88,-134],[-1,-6],[-3,-38],[-18,-22],[-7,-15],[-3,-31],[2,-8],[4,-5],[13,-15],[45,-38],[0,-37],[-1,-37],[19,-54],[42,-45],[36,-17],[32,-39],[14,-22],[45,-125],[1,0],[2,-1],[3,-1],[3,-2],[62,-28],[34,-16],[6,-1],[85,-7],[87,-7],[5,1],[11,4],[13,8],[2,3],[3,2],[2,2],[2,2],[3,1],[2,1],[7,3],[0,1],[2,1],[3,0],[2,1],[3,0],[3,0],[7,0],[2,0],[2,0],[8,-1],[1,0],[3,-1],[1,0],[25,-8],[1,-1],[3,-1],[1,0],[9,-5],[1,-1],[2,-1],[3,-2],[2,-2],[1,0],[11,-12],[12,0],[1,0],[7,0],[2,0],[1,0],[4,0],[3,-3],[10,-1],[11,-9],[5,-6],[9,-20],[19,-21],[19,-4],[2,-1],[16,-2],[2,-1],[53,-11],[23,-11],[5,-1],[36,-10],[2,-3]]],"transform":{"scale":[0.00006639930227302262,0.00004810571928719213],"translate":[-92.88942339699992,42.491999843000144]}} diff --git a/src/js/config/mapconfig/mapfiles/county/wv-counties.json b/src/js/config/mapconfig/mapfiles/county/wv-counties.json new file mode 100644 index 00000000..5ba28ade --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/wv-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-82.64354237799989,37.20172175000005,-77.71844188499995,40.6386205670002],"geometries":[{"type":"Polygon","properties":{"name":"WV"},"id":"54029","arcs":[[0,1]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54009","arcs":[[2,3,4,-1]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54069","arcs":[[5,6,7,-4]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54051","arcs":[[8,9,-7,10]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54061","arcs":[[11,12,13,14,15]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54077","arcs":[[16,17,18,19,-12,20]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54103","arcs":[[21,-15,22,23,24,25,26,-9]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54065","arcs":[[27,28,29,30]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54057","arcs":[[31,32,33]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54049","arcs":[[-14,34,35,-23]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54003","arcs":[[36,37,38,-28]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54095","arcs":[[39,40,41,42,-26]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54027","arcs":[[-30,43,44,-32,45]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54037","arcs":[[-38,46]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54073","arcs":[[47,48,49,-42]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54033","arcs":[[50,51,52,53,54,-24,-36]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54091","arcs":[[55,-51,-35,-13,-20]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54017","arcs":[[-55,56,57,58,-40,-25]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54107","arcs":[[-49,59,60,61,62]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54085","arcs":[[-59,63,64,65,-60,-48,-41]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54023","arcs":[[66,67,68,69,-17,70,-33]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54001","arcs":[[71,72,73,-52,-56,-19]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54093","arcs":[[74,-72,-18,-70]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54031","arcs":[[75,76,-67,-45]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54105","arcs":[[77,78,79,-61,-66]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54041","arcs":[[80,81,82,83,-57,-54]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54083","arcs":[[-69,84,85,86,87,-73,-75]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54097","arcs":[[-74,-88,88,-81,-53]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54021","arcs":[[-84,89,90,-64,-58]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54035","arcs":[[-80,91,92,93,94,95,-62]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54013","arcs":[[-91,96,97,98,-78,-65]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54053","arcs":[[-95,99,100,101]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54071","arcs":[[-77,102,103,-85,-68]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54087","arcs":[[-99,104,105,-92,-79]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54007","arcs":[[-83,106,107,108,-97,-90]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54075","arcs":[[-104,109,110,111,-86]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54101","arcs":[[-89,-87,-112,112,113,-107,-82]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54079","arcs":[[114,115,-100,-94,116]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54015","arcs":[[117,118,-105,-98,-109]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54039","arcs":[[-106,-119,119,120,121,122,123,-117,-93]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54011","arcs":[[-101,-116,124,125,126]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54067","arcs":[[-114,127,128,-120,-118,-108]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54099","arcs":[[-126,129,130,131]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54043","arcs":[[-115,-124,132,133,134,-130,-125]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54025","arcs":[[135,136,137,138,-128,-113,-111]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54019","arcs":[[-129,-139,139,140,-121]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54005","arcs":[[141,142,143,-133,-123]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54045","arcs":[[-144,144,145,-134]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54081","arcs":[[-122,-141,146,147,148,-142]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54059","arcs":[[149,150,151,-131,-135,-146]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54089","arcs":[[152,153,-147,-140,-138,154]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54109","arcs":[[155,156,-150,-145,-143,-149]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54063","arcs":[[157,-155,-137]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54055","arcs":[[-154,158,159,-156,-148]]},{"type":"Polygon","properties":{"name":"WV"},"id":"54047","arcs":[[-160,160,-151,-157]]}]},"states":{"type":"GeometryCollection","bbox":[-82.64354237799989,37.20172175000005,-77.71844188499995,40.6386205670002],"geometries":[{"type":"Polygon","properties":{"name":"West Virginia"},"id":"54","arcs":[[2,5,10,21,15,20,70,33,45,30,36,46,38,28,43,75,102,109,135,157,152,158,160,151,131,126,101,95,62,49,42,26,9,7,4,1]]}]}},"arcs":[[[43157,93024],[-119,1],[-19,0],[-23,-1],[-21,0],[-33,-1],[-37,0],[-86,0],[-81,1],[-202,1],[-28,0],[-48,-3],[-32,1],[-41,4],[-51,-3],[-46,1],[-53,0],[-60,0],[-33,-1],[-25,3],[-16,0],[-12,0],[-30,-1],[-21,-3],[-25,-2],[-30,-4],[-24,-3],[-13,-1],[-61,-7],[-49,-6],[-16,-2],[-23,-2],[-36,-5],[-9,0],[-14,-1],[-31,-8],[-24,-4],[-14,-1],[-27,-6],[-27,-1],[-10,0],[-12,-1],[-38,-8],[-22,-3],[-22,0],[-23,-3],[-24,-3],[-22,-3],[-43,-5],[-33,-6],[-37,-2],[-60,-12],[-36,-3],[-90,-13],[-33,-3],[-33,-2],[-100,-15],[-74,35]],[[40905,92923],[112,29],[38,30],[28,14],[136,99],[24,35],[-1,2],[-15,91],[13,58],[0,3],[4,29],[4,45],[3,47],[0,34],[2,74],[0,117],[-1,24],[-3,22],[-1,149],[-13,59],[0,100],[18,111],[41,140],[74,123],[1,13],[30,81],[23,62],[10,34],[1,6],[16,52],[23,55],[43,68],[18,44],[29,97],[35,229],[0,2],[1,8],[0,7],[0,12],[-1,44],[-1,40],[-12,69],[-4,20],[-35,109],[-39,68],[-31,51],[-98,128],[-54,80],[-103,168],[-13,34],[0,1],[-19,28],[-15,49],[-53,174],[-41,142],[-30,163],[-2,8],[-38,117],[-37,141],[-3,24],[-2,17],[-38,137],[-44,117],[-14,35],[-129,212],[-34,55],[-29,63],[-24,83],[-40,78],[-139,218],[-105,113],[-99,72],[-42,39],[-47,102],[-23,68],[-49,170],[59,89],[23,55],[20,32],[40,69],[69,88],[87,85],[53,52],[118,119],[88,112],[81,148],[36,45],[106,105],[120,48],[82,28],[89,32],[106,38],[186,67],[119,-41],[75,-61],[106,-125],[87,-83],[78,-17],[44,4],[118,46],[158,122],[10,8],[149,118],[90,79],[24,36],[54,41],[64,36],[121,66],[7,-1],[86,32],[80,41],[108,33],[32,21],[51,67],[2,-120],[0,-34],[0,-143],[0,-46],[0,-2],[-1,-58],[0,-140],[0,-73],[-1,-56],[1,-59],[0,-26],[0,-59],[0,-35],[0,-30],[0,-30],[0,-32],[0,-70],[-1,-146],[-1,-35],[0,-155],[1,-62],[2,-265],[1,-51],[0,-104],[-1,-109],[1,-61],[1,-160],[0,-74],[0,-73],[-2,-90],[-3,-103],[-1,-4],[1,-35],[1,-274],[-3,-215],[0,-30],[5,-259],[1,-106],[-1,-35],[-1,-64],[1,-32],[1,-52],[0,-78],[0,-37],[-1,-271],[0,-38],[1,-98],[0,-57],[0,-119],[0,-144],[0,-84],[-1,-86],[-1,-36],[0,-37],[5,-85],[12,-173],[9,-111],[3,-33],[2,-31],[-1,-152],[-1,-171],[-1,-146],[-3,-408],[1,-226],[0,-30],[1,-35],[0,-92],[0,-32],[0,-173],[-2,-38],[0,-79],[0,-103],[0,-53],[0,-94],[0,-17],[-4,-1]],[[43157,93024],[-2,-83],[0,-35],[0,-40],[1,-32],[-1,-34],[1,-132],[1,-521],[1,-11],[1,-20],[-1,-30],[-5,-117],[-16,-375],[0,-39],[0,-135],[-1,-68],[0,-42],[0,-32],[0,-32],[0,-43],[1,-160],[0,-256],[0,-113],[0,-193],[0,-319],[-1,-30],[1,-155],[-1,-97],[0,-11],[0,-24],[-1,-30],[0,-61],[0,-90],[-1,-51],[0,-5],[0,-390],[-1,-172],[2,-152],[0,-3],[-1,-361],[1,-395],[0,-701],[0,-95],[3,-130],[1,-84],[0,-12],[0,-92],[-1,-234],[0,-54],[-3,-293],[-1,-37],[1,-336]],[[43135,86067],[-58,19],[-189,62],[-29,9],[-20,7],[-64,20],[-348,113],[-320,101],[-77,23],[-53,17],[-120,40],[-1,1],[-60,21],[-198,67],[-27,2],[-93,1],[-91,1],[-132,3],[-32,0],[-104,1],[-83,0],[-24,0],[-25,1],[-324,16],[-32,2],[-65,2],[-33,2],[-228,11],[-108,7],[2,26],[1,4],[-14,95],[1,4],[7,25],[12,40],[3,10],[-10,7],[-4,3],[-1,1],[-13,5],[-13,1],[-12,-2],[-11,-5],[-9,-10],[-2,-2],[-6,-8],[-1,-2],[-31,-29],[-13,-7],[-8,-5],[-47,-30],[-24,-38],[-25,-33],[-55,34],[-24,14],[-73,102]],[[39827,86816],[68,18],[32,44],[84,118],[68,86],[38,84],[33,93],[13,89],[52,256],[30,155],[37,272],[56,257],[42,107],[36,73],[69,114],[63,80],[178,119],[123,97],[110,79],[122,108],[38,47],[3,5],[76,149],[13,77],[-5,128],[-10,123],[-5,246],[29,93],[30,81],[58,140],[63,101],[5,7],[22,35],[23,43],[17,31],[16,46],[8,32],[38,149],[11,73],[-10,81],[-64,275],[-41,143],[-74,113],[-35,63],[-10,194],[0,1],[-6,104],[22,150],[61,255],[5,125],[2,79],[-29,60],[-23,47],[-35,50],[-46,66],[-85,71],[-64,35],[-99,69],[-61,50],[-24,16],[-19,29],[-7,41],[9,46],[24,31],[3,58]],[[43135,86067],[4,-111],[0,-160],[1,-97],[0,-75],[1,-283],[-3,-284],[3,-93],[2,-120],[-2,-331],[0,-71],[0,-10],[-1,-134],[-3,-77],[-1,-28],[6,-501],[-1,-32],[0,-89],[1,-167],[-1,-91],[0,-20],[-4,-370],[-1,-182],[4,-259],[-5,-312],[3,-273]],[[43138,81897],[-4,1],[-56,10],[-97,12],[-84,8],[-555,62],[-360,42],[-149,7],[-53,8],[-129,15],[-177,21],[-56,7],[-147,18],[-113,14],[-27,3],[-50,6],[-53,8],[-35,6],[-59,7],[-81,15],[-208,25],[-29,3],[-25,4],[-51,6],[-53,5],[-31,3],[-9,2],[-13,1],[-24,3],[-26,4],[-34,4],[-254,25],[-373,47],[-74,6],[-5,0],[-27,4],[-37,0],[-33,4],[-151,18],[-40,5],[-29,3],[-23,2],[-23,2],[-82,4],[-25,4],[-71,7],[-29,1],[-44,0],[-31,8],[-2,0],[-25,1],[-49,7],[-17,2],[-17,1],[-117,15]],[[38772,82393],[74,56],[30,227],[-9,108],[-14,50],[-2,28],[-9,191],[-38,122],[-39,116],[-8,21],[-20,34],[-22,73],[-32,1],[-2,38],[-5,33],[-10,60],[-1,94],[0,1],[0,2],[31,91],[59,87],[39,79],[83,69],[106,49],[237,191],[57,65],[29,46],[31,105],[29,196],[-10,129],[-1,25],[-28,153],[-6,44],[-12,76],[-13,81],[-4,70],[30,54],[19,32],[9,54],[-1,47],[-19,43],[16,108],[13,37],[23,154],[22,55],[12,45],[-13,158],[187,293],[50,94],[84,171],[45,98],[58,169]],[[43130,73314],[-123,1],[-157,1],[-10,1],[-271,2],[-63,0],[-78,1],[-397,6],[-4,0],[-128,-2],[-2,0],[-148,1],[-5,-1],[-42,-3],[-361,7],[-114,-3],[-189,1],[-46,-5],[-111,-5],[-337,-4],[-69,2],[-70,0],[-82,-3],[-81,0],[-411,0],[-25,0],[-245,0],[-306,0],[-308,0],[-107,1],[-10,0],[-31,1],[-55,0],[-147,-2],[-143,-1],[-48,0],[-48,-1],[-184,0],[-35,0],[-89,-1],[-84,-1],[-157,0],[-67,-1],[-162,-1],[-48,0],[-72,-1],[-72,0],[-49,-1],[-135,-1],[-116,-2],[-88,-1],[-38,0],[-11,0],[-48,-1],[-45,0],[-24,0],[-5,-1],[-68,-10]],[[36761,73287],[-167,314],[-67,134],[-38,58],[-11,8],[-14,12],[-35,29],[-30,42],[-257,357],[-61,138],[-14,95],[-17,59],[0,2],[1,3],[0,5],[1,5],[0,10],[15,54],[28,85],[8,23],[39,84],[79,84],[18,18],[111,110],[136,110],[123,90],[98,101],[77,63],[2,6],[69,94],[41,64],[6,11],[7,12],[27,51],[0,18],[36,92],[15,76],[0,12],[12,154],[10,129],[3,86],[8,53],[-41,189],[-64,228],[1,8],[-8,24],[-7,58],[-19,72],[41,127],[49,73],[21,32],[57,45],[81,64],[67,23],[1,0],[0,1],[1,0],[1,1],[24,16],[1,1],[2,1],[2,1],[65,38],[40,23],[58,34],[7,4],[98,77],[30,24],[3,5],[80,120],[25,38],[17,41],[7,25],[10,141],[-25,122],[-75,181],[-100,150],[-8,13],[-8,9],[-2,3],[-23,33],[-1,1],[-1,2],[-41,63],[-1,0],[-10,17],[-1,1],[-2,4],[-1,1],[-23,46],[-2,3],[-1,3],[-29,69],[0,1],[-2,4],[0,1],[-10,30],[-1,3],[-15,51],[-1,5],[-1,4],[-8,41],[-1,1],[-1,5],[-2,22],[-1,4],[0,3],[-2,19],[0,2],[0,5],[0,5],[0,1],[2,25],[0,4],[0,2],[3,25],[0,3],[1,5],[1,3],[4,18],[11,51],[8,30],[9,30],[3,8],[15,31],[5,10],[6,9],[8,11],[5,5],[12,8],[23,11],[62,22],[21,5],[25,5],[25,3],[37,-1],[15,2],[4,1],[3,0],[1,0],[27,0],[3,-1],[1,0],[12,-1],[3,-1],[3,0],[99,-27],[1,0],[0,-1],[41,-11],[2,-1],[3,-1],[2,-1],[1,0],[4,-2],[1,-1],[2,0],[3,-2],[2,-1],[2,-1],[3,-2],[2,-1],[0,-1],[256,-183],[41,-17],[101,-27],[43,-1],[4,1],[39,17],[72,52],[5,5],[3,6],[19,64],[5,54],[-7,144],[-34,164],[-11,45],[-22,42],[-2,4],[-2,4],[-1,3],[-9,25],[-29,79],[-2,5],[-1,5],[-1,5],[-1,2],[-8,52],[0,1],[-7,39],[-11,40],[-1,3],[0,2],[0,1],[-1,3],[-19,97],[0,1],[-1,5],[-1,5],[0,5],[0,1],[-2,51],[0,4],[0,4],[1,44],[0,1],[0,2],[4,77],[0,4],[2,21],[1,5],[0,2],[4,24],[0,3],[1,4],[4,19],[44,151],[34,83],[1,2],[2,4],[0,2],[1,2],[3,4],[1,2],[1,2],[2,4],[1,2],[1,2],[3,4],[1,2],[1,1],[3,4],[1,2],[2,1],[2,3],[2,2],[1,2],[3,3],[2,1],[1,1],[3,3],[2,1],[0,1],[2,1],[0,1],[191,148],[1,1],[93,103],[10,19],[5,13],[3,9],[39,116],[18,123],[14,90],[-10,299],[-26,190],[-4,26],[-72,73],[-1,39],[59,110],[13,97],[14,99],[42,284],[62,143],[17,70],[-45,60]],[[43138,81897],[2,-215],[0,-174],[0,-86],[0,-4],[-2,-870],[0,-121],[-1,-68],[-1,-32],[2,-97],[1,-25],[-5,-40],[0,-278],[3,-225],[-1,-20],[0,-18],[-3,-32],[-3,-74],[-1,-36],[3,-43],[0,-1],[3,-463],[0,-83],[-1,-138],[4,-327],[0,-35],[1,-147],[-2,-373],[0,-7],[-3,-81],[1,-120],[3,-150],[-2,-109],[0,-110],[0,-64],[0,-60],[0,-152],[0,-119],[-3,-223],[-1,-51],[4,-71],[-4,-127],[0,-1],[1,-169],[-1,-45],[-4,-435],[0,-91],[2,-159],[0,-171],[0,-69],[0,-77],[1,-38],[-1,-144],[0,-53],[-2,-337],[3,-55],[0,-52],[-2,-385],[-2,-170],[0,-1],[0,-58],[1,-61],[1,-38],[1,-49],[0,-391],[0,-65]],[[58475,73293],[0,-75],[0,-207],[0,-94],[0,-192],[0,-45],[0,-80],[-19,-50],[-121,-316],[-57,-148],[-146,-382],[-80,-214],[-8,-21],[-7,-21],[-3,-38],[-8,-94],[-14,-162],[-21,-257],[-32,-386],[-2,-37],[-96,-179],[-1,-1],[-17,-32],[-23,-43],[-326,-601],[-28,-52],[-77,-143],[-95,-174],[-60,-111],[-161,-296],[-4,-9],[-18,-33],[-15,-27],[-129,-239],[-47,-85],[-62,-114],[-66,-121],[-20,-38],[-147,-271],[-62,-113],[-56,-106],[-71,-129],[-11,-21],[-24,-44],[-24,-45],[-106,-194],[-112,-206],[-15,-29],[-79,-143],[-31,-57],[-46,-84],[-16,-29],[-124,-223],[-14,-27],[-27,-59],[-19,-25],[-14,-24],[18,-231],[18,-237],[6,-70],[3,-39],[3,-40],[4,-54],[6,-77],[12,-153],[26,-355],[7,-93]],[[55817,64998],[-49,27],[-228,125],[-220,120],[-61,34],[-187,102],[-115,63],[-38,21]],[[54919,65490],[-6,3],[-120,63],[-70,37],[-30,15],[-66,35],[-48,24],[-43,22],[-146,74],[-60,32],[-3,33],[-24,22],[-11,32],[-16,18],[-30,6],[-42,17],[-35,15],[-9,36],[7,39],[-7,15],[-3,7],[-11,26],[-17,40],[-14,11],[-14,11],[-26,10],[-24,20],[-21,32],[-6,8],[-15,19],[-28,12],[-28,9],[-53,16],[-32,18],[11,35],[2,36],[-6,6],[-15,16],[-7,6],[-18,16],[-28,37],[-41,44],[-19,36],[-11,0],[-24,0],[-29,0],[-20,-6],[-41,-24],[-27,-10],[-21,4],[-7,30],[-27,17],[-37,-7],[-35,0],[-26,13],[1,31],[9,40],[-6,34],[-27,36],[-36,10],[-25,14],[-26,22],[-7,32],[8,46],[-10,41],[8,50],[0,3],[20,15],[10,27],[-6,6],[-2,2],[-36,38],[-19,10],[-6,-2],[-17,-5],[-20,5],[-34,9],[-22,5],[-10,6],[-23,16],[-20,-3],[-28,28],[-40,10],[-39,-13],[-55,-5],[-72,40],[-25,12],[-23,40],[-11,9],[-18,15],[-16,28],[-9,25],[-8,22],[-58,48],[-3,3],[-14,16],[9,42],[18,27],[44,-2],[26,-13],[59,-1],[9,0],[4,32],[-23,32],[-18,15],[-19,26],[-1,1],[-25,54],[-10,47],[-12,12],[-125,134],[-131,143],[-98,104],[-137,146],[-32,34],[-193,204],[-6,6],[-23,20],[-22,30],[-6,6],[-52,56],[-35,38],[-40,48],[-165,172],[-59,54],[-46,35],[-21,17],[-27,23],[7,72],[-26,19],[-1,1],[-37,17],[-39,3],[-37,14],[-22,50],[16,108],[-23,16],[-36,14],[-36,21],[-27,-13],[-27,-29],[-37,23],[-7,33],[-47,40],[-20,-5],[-26,-15],[-29,-8],[-16,24],[-26,63],[-55,22],[-3,63],[-8,25],[-70,35],[-9,56],[18,38],[13,77],[13,37],[-65,39],[-38,20],[-79,-11],[-27,64],[-25,61],[0,48],[8,34],[-12,37],[-13,33],[-12,24],[-43,17],[-45,-14],[-55,-7],[-3,24],[-1,71],[-2,20],[-38,0],[-23,1],[-262,2],[-39,0],[-27,0],[-165,2],[-26,1],[-34,1],[-75,1],[-56,1],[-66,2],[-83,2],[-22,-1],[-300,1],[-176,-1],[-43,1],[-38,1],[-214,0],[-15,0],[-26,0],[-93,0],[-53,2],[-80,4],[-399,10],[-25,0],[-327,-2],[-444,4],[-88,8],[-52,-5],[-57,1],[-21,-7],[-27,-14],[-38,-5],[-25,36],[-31,14],[-23,-8],[-21,-13],[-52,89],[-24,-8],[-57,-70],[-50,-4],[-52,-23],[-34,35],[-33,16],[-82,-32],[-22,-6],[-9,41],[-27,13],[-38,8],[-18,35],[1,51],[-20,40],[-26,-4],[-27,-5],[-18,25],[-21,43],[-38,2],[-24,23],[23,76],[-10,43],[-53,46],[-21,12],[-24,52],[-16,40],[-18,19],[-15,66],[-80,-16],[-46,-5],[-30,-27],[-20,2],[-30,12],[-22,28],[-44,8],[-25,14],[-20,10],[-33,-13],[-19,-29],[-32,11],[-20,6],[-32,0],[-20,55],[-37,19],[-33,11],[-20,24],[-19,11]],[[45642,70868],[8,31],[31,52],[11,31],[41,61],[23,10],[9,33],[-20,52],[-17,48],[-16,30],[-36,20],[-9,30],[-4,37],[-13,34],[-23,8],[-20,-9],[-22,3],[-59,57],[17,50],[2,33],[4,5],[13,17],[-1,41],[-18,28],[-12,46],[-9,50],[-17,42],[-6,38],[20,17],[31,0],[23,10],[12,23],[9,31],[-19,39],[-15,25],[-23,51],[11,28],[16,38],[24,30],[25,2],[30,16],[7,40],[0,46],[-6,31],[-32,74],[-8,59],[-13,26],[-10,41],[-35,42],[-32,15],[-22,4],[-26,27],[-15,25],[-12,35],[-2,58],[2,36],[-8,30],[-6,64],[19,23],[30,31],[15,27],[1,30],[-1,40],[-6,46],[-21,20],[-4,42],[-9,28],[-15,32],[-9,54],[26,49],[-14,21],[-19,35],[-22,11],[-21,-15],[-32,-21],[-24,-29],[-5,-41],[-10,-25],[-16,-27],[-21,-11],[-29,19],[-29,9],[-30,0],[-21,3],[-19,41],[13,53],[-8,36],[-16,20],[-23,59],[16,36]],[[45121,73305],[186,0],[41,0],[135,1],[91,0],[41,1],[95,0],[34,1],[44,0],[181,1],[21,0],[70,1],[57,2],[81,0],[236,-1],[135,0],[29,0],[195,-1],[94,0],[121,-2],[400,0],[22,0],[35,-1],[242,-2],[63,0],[68,-1],[80,0],[143,-1],[23,0],[7,0],[22,-1],[6,0],[82,0],[8,0],[53,0],[43,0],[12,0],[33,0],[22,0],[57,-1],[7,0],[172,-1],[44,1],[82,2],[14,0],[44,0],[37,1],[4,0],[58,0],[40,0],[24,1],[5,0],[66,0],[9,0],[10,0],[19,0],[24,1],[55,0],[33,0],[27,0],[6,0],[91,0],[38,0],[13,0],[29,0],[32,0],[8,0],[21,0],[21,0],[21,0],[14,0],[14,0],[43,-1],[40,-1],[60,0],[7,0],[44,1],[16,0],[59,0],[25,1],[38,0],[24,0],[55,0],[8,-1],[24,0],[121,-1],[80,0],[375,2],[26,0],[90,0],[62,0],[61,0],[20,0],[23,0],[286,-4],[44,2],[290,-1],[32,0],[77,1],[3,0],[256,2],[153,0],[22,0],[72,6],[52,-1],[33,-1],[233,0],[42,0],[21,0],[1,0],[233,-1],[118,-1],[48,1],[236,-1],[223,-1],[114,-1],[145,0],[129,-1],[317,-6],[241,-2],[181,-2],[142,-1],[130,-1],[71,-1],[122,-1],[208,1],[123,0],[74,1],[25,0],[12,0],[53,0],[1,0],[1,1],[23,2],[84,-1],[5,0],[46,0],[405,-1],[27,0],[125,-1],[130,0],[106,0],[125,0],[89,1],[17,0],[3,0],[48,0],[24,0],[28,0],[201,0],[31,0],[29,0],[47,1],[96,0],[37,0],[33,0],[88,0],[57,0],[7,0],[50,0],[75,1],[38,0],[119,0],[9,0],[118,0],[135,0],[36,2],[128,-2],[23,0],[107,0],[350,-3]],[[64097,58318],[0,-3],[-6,-319]],[[64091,57996],[-44,67],[-22,32],[-105,156],[-2,3],[-82,123],[-161,240],[-99,43],[-6,3],[-68,30],[-93,41],[-55,24],[-108,48],[-251,111],[-112,48],[-107,47],[-128,57],[-2,0],[-243,107],[-108,48],[-403,177],[-86,38],[-372,163],[-24,11],[-113,53],[-52,23],[-286,125],[-23,10],[-133,58],[-184,81],[-228,100],[-20,9],[-272,118],[-4,2],[-28,12],[-33,15],[-20,-5],[-487,-234],[-43,-21],[-160,-77],[-6,-3],[-286,-138],[-97,-47],[-95,-45],[-53,-26],[-50,-24],[-589,-277],[-68,-32],[-383,-180],[-136,-64],[-19,-14]],[[57542,59032],[-8,42],[7,32],[5,33],[5,46],[-55,39],[-80,64],[-102,41],[-12,2],[-61,10],[-23,4],[-18,0],[-48,0],[-23,0],[-44,-5],[-1,1],[-124,44],[-75,27],[-18,8],[-31,14],[-21,9],[-73,38],[-14,9],[-19,22],[-48,87],[-3,10],[1,8],[15,38],[19,51],[8,49],[1,31],[-2,31],[-4,64],[-3,51],[-1,12],[-5,10],[-14,21],[-14,10],[-20,13],[26,85],[1,14],[0,2],[-1,43],[0,54],[-6,15],[-9,12],[-11,13],[-45,23],[-47,10],[-11,8],[-9,19],[-10,32],[1,12],[10,33],[20,34],[3,28],[0,25],[-7,16],[-2,4],[-62,127],[-6,12],[-10,14],[-59,89],[-33,49],[-64,11],[-11,7],[-18,26],[-38,92],[-23,-47],[-54,24],[-13,6],[-43,19],[-7,4],[-114,66],[-19,9],[-55,18],[-27,9],[-83,23]],[[55803,61038],[3,503],[0,54],[0,42],[0,113],[1,49],[0,164],[0,93],[0,1],[1,358],[0,35],[1,159],[1,220],[0,163],[0,93],[1,153],[0,105],[1,326],[0,20],[0,39],[1,74],[0,43],[0,35],[1,39],[-1,38],[0,2],[1,79],[0,122],[1,222],[1,212],[0,84],[0,39],[1,191],[0,90]],[[58475,73293],[103,0],[177,0],[41,1],[297,3],[269,2],[184,0],[1,0],[203,0],[185,0],[320,-3],[173,-3],[134,1],[8,0],[22,0],[46,1],[168,0],[69,1],[30,0],[217,1],[143,1],[1,0],[35,0],[36,0],[5,0],[238,9],[49,-3],[91,-1],[105,-1],[199,5],[100,1],[348,-7],[69,-1],[315,-6],[295,2],[37,0],[157,1],[84,1],[279,2],[76,0],[47,1],[245,1],[8,0],[221,0],[-23,-1678],[-12,-829],[-34,-2513],[-9,-587],[-43,-3119],[-1,-82],[-1,-104],[-26,-1870],[-14,-1011],[-2,-120],[-14,-978],[-5,-391],[-24,-1702]],[[43130,73314],[4,0],[87,0],[196,-3],[114,0],[88,-2],[69,0],[61,0],[248,1],[172,0],[197,0],[91,0],[36,-1],[46,0],[83,0],[295,-1],[5,0],[110,0],[89,-3]],[[45642,70868],[-13,-25],[-35,-63],[-11,-31],[-26,-9],[-41,-16],[-22,-11],[-30,0],[-27,14],[-26,18],[-1,45],[-13,42],[-21,17],[-17,78],[-13,23],[-26,24],[-63,20],[-17,14],[-50,-3],[-14,1],[-24,1],[-36,-13],[-47,-14],[-22,-14],[-44,-1],[-31,-9],[-27,-22],[-27,-12],[-28,3],[-32,-43],[-16,-51],[-18,-39],[-19,-21],[-27,-7],[-22,-9],[-12,-35],[-7,-30],[-56,-44],[23,-44],[24,-18],[21,-36],[13,-25],[32,-18],[27,-50],[31,-27],[11,-27],[7,-29],[-37,-35],[4,-56],[-35,-78],[-18,-16],[-39,-11],[-25,-33],[-37,-15],[-35,24],[-30,18],[-51,-12],[-21,-44],[26,-65],[16,-26],[14,-57],[7,-55],[-6,-53],[-19,-31],[-9,-50],[-12,-50],[-19,-38],[-23,-33],[-22,2],[-27,66],[-21,9],[-42,-13],[-45,46],[-43,44],[-20,14],[-33,-22],[-18,-17],[-53,-14],[-37,-14],[-57,-7],[-26,-12],[-37,-1],[-27,-9],[-32,-13],[-24,-11],[-12,-33],[-29,-45],[28,-89],[-20,-38],[-13,-29],[-21,-29],[0,-55],[13,-31],[21,-28],[-5,-39],[-16,-20],[-31,-28],[-27,-48],[-19,-28],[-17,-26],[-21,-29],[-33,-25],[-36,-3],[-31,-2],[-23,-21],[17,-53],[19,-52],[12,-24],[-31,-42],[-19,-29],[-15,-32],[-14,-34],[-14,-32],[-26,-20],[-30,-25],[21,-77],[18,-25],[-13,-45],[34,-58],[19,-47],[11,-49],[-5,-36],[4,-38],[14,-54],[-13,-23],[-11,-26],[-6,-36],[36,-49],[18,-33],[21,-40],[7,-29],[-7,-29],[8,-36],[36,8],[24,0],[10,-29],[13,-34],[-12,-33],[21,-59],[-2,-51],[-7,-35],[10,-36],[20,-76],[11,-36],[-1,-42],[-28,-50],[-3,-47],[44,-18],[23,-3],[4,-46],[6,-47],[13,-27],[13,-27],[34,-10],[21,-12],[13,-26],[1,-37],[1,-38],[61,-24],[24,-16],[-3,-58],[31,-29],[29,-10],[34,-32],[22,-29],[-2,-39],[-14,-27],[-16,-35],[-8,-49],[-33,-22],[-9,-39],[-8,-51],[-16,-29],[-12,-26],[-2,-35],[0,-48],[28,-28],[3,-38],[5,-35],[-54,-67],[-17,-24],[-1,-43],[-59,-30],[-25,-1],[-6,28],[-69,57],[-22,1],[-52,-36],[-36,1],[-26,3],[-54,-68],[-14,-119],[-19,-26],[6,-28],[17,-40],[-9,-42],[-13,-53]],[[43646,65988],[3,-31],[6,-31],[-8,-53],[1,-131],[-49,6],[-27,-13],[-27,-27],[-31,-19],[-35,23],[-51,-21],[-26,14],[-44,-21],[-8,-4],[-28,-14],[-28,-1],[-25,3],[-28,-23],[-8,-37],[12,-26],[-19,-52],[-8,-47],[-42,-65],[-32,-27],[-12,-78],[33,-98],[-12,-42],[-14,-34],[-4,-41],[60,-24],[-47,-93],[-25,-19],[-39,-10],[-23,-7],[-14,-8],[-26,-15],[-36,-54],[-53,47],[-34,22],[-23,0],[-22,-1],[-21,-31],[-39,-43],[-30,-16],[-50,16],[-33,-5],[-23,-17],[-35,-30]],[[42622,64810],[-20,59],[-12,25],[-25,1],[-43,13],[-19,20],[-42,22],[-33,0],[-20,-13],[-44,-20],[-21,47],[5,43],[3,42],[-32,56],[-44,-19],[-22,4],[-32,18],[-21,7],[-34,-8],[-33,5],[-10,-31],[-8,-55],[-31,-12],[-31,-2],[-36,-7],[-23,-12],[-29,-23],[-39,-2],[39,114],[-11,54],[1,47],[-4,29],[-3,54],[-11,38],[-68,45],[2,49],[8,36],[-40,25],[-38,-23],[-32,14],[-35,4],[-36,-14],[-25,-15],[-22,-38],[-29,-3],[-39,15],[-22,-18],[-15,-46],[3,-31],[9,-28],[-10,-30],[-8,-67],[-19,-25],[-23,9],[-36,70],[-84,-1],[-34,34],[-42,32],[2,42],[-42,41],[-20,34],[-25,21],[-65,-9],[-35,1]],[[41117,65428],[-19,27],[-7,39],[-45,16],[-22,6],[-32,16],[-25,26],[-22,-1],[-28,9],[-20,15],[-53,18],[-20,15],[-5,62],[-23,41],[-27,6],[-33,7],[-26,16],[-1,71],[-17,20],[-23,58],[-30,14],[-34,21],[-46,-19],[-34,38],[-35,40],[-30,7],[-21,-1],[-59,-52],[-17,-43],[-27,-12],[-36,36],[-30,2],[-38,5],[-19,-17],[-38,-34],[-62,-42],[-61,-7],[-1,46],[-9,39],[36,54],[-3,49],[-8,76],[1,54],[-39,72],[-39,-1],[-48,-1],[-44,6],[-31,8],[-17,-31],[-6,-39],[-12,-31],[-82,-118],[-108,17],[-33,80],[-54,12],[-39,5],[-55,-4],[-58,-9],[-37,14],[-97,26],[-27,15],[-22,-8],[-39,-9],[-43,7],[10,71],[-40,3],[-25,15],[-9,29],[-22,30],[14,121],[9,28],[-16,26],[-43,55],[-12,76],[-56,22],[-41,-2],[-21,-9],[-14,-27],[-25,-7],[-25,2],[-23,21],[-20,20],[-26,-5],[1,39],[6,89],[-12,48],[-3,31],[-7,28],[-24,10],[-27,32],[-22,12],[3,39],[30,66],[-64,47],[-18,17],[22,76],[0,32],[-2,50],[-68,57],[-37,20],[-35,0],[-30,10],[-12,44],[-9,28],[-25,-5],[-37,11],[-21,24],[15,58],[-38,14],[-19,28],[-11,46],[-29,14],[-30,17],[-40,14],[-18,-30],[-21,-3],[-26,-6],[-24,28],[-14,27],[-28,33],[-5,28],[-19,28],[-19,14],[-32,17],[-48,25],[-18,24],[-26,16],[-50,52],[-24,-1],[-39,24],[-26,14],[-17,19],[14,80],[-24,58],[21,13],[17,31],[22,9],[-2,36],[-19,15],[-15,42],[12,32],[-25,16],[-60,42],[-49,61],[-35,3],[-36,64],[-27,12],[-42,13],[-20,1],[-30,2],[-36,5],[-41,6],[-23,28],[-2,38],[-12,45],[-21,30],[-7,33],[-80,26],[-22,-14],[-29,-35],[-42,-39],[-25,-15],[-23,-27],[-26,-40],[-18,-39],[-23,-4],[-26,-1],[-38,-4],[-15,51],[9,33],[31,125],[-15,22],[-85,9],[-46,66],[-13,28],[25,24],[6,44],[-29,59],[5,32],[23,15],[16,19],[11,77],[-5,32],[-44,19],[-30,-8],[-21,6],[-16,48],[-46,41],[-41,37],[-11,38],[-45,16],[-38,16],[-20,-5],[-23,12],[-8,27],[-19,38],[-24,42],[-21,20],[-32,26],[-7,29],[3,48],[-7,28],[28,25],[26,27],[14,22],[18,26],[-2,76],[-23,66],[-87,-3],[-33,29],[-258,-234],[-162,-148],[-37,-38],[-228,-210],[-37,21],[-23,14],[-120,72],[-2,1],[-32,19],[-30,18],[-263,156],[-54,32],[-44,26],[-84,50],[-132,79],[-44,26],[-82,49],[-25,21],[-46,43],[-12,11],[-7,7],[-31,28],[-11,11],[-11,9],[-38,38],[-50,37]],[[34510,69977],[129,164],[79,63],[148,80],[169,39],[161,-5],[79,-3],[4,-1],[2,0],[3,0],[31,-5],[1,0],[4,-1],[3,-1],[39,-15],[1,0],[3,-1],[3,-2],[2,-1],[23,-15],[35,-11],[47,-2],[69,7],[23,3],[14,1],[64,14],[35,12],[1,1],[27,9],[21,15],[50,47],[20,20],[1,1],[42,52],[93,126],[37,203],[22,78],[9,7],[12,108],[35,187],[39,120],[30,221],[5,37],[3,145],[0,57],[1,46],[-10,166],[-1,5],[0,6],[-1,5],[-2,93],[6,137],[0,5],[0,3],[11,94],[0,3],[1,5],[0,1],[11,55],[1,4],[1,5],[1,4],[1,3],[23,61],[1,2],[2,4],[2,4],[2,4],[1,2],[35,54],[2,2],[2,4],[3,3],[3,3],[2,2],[39,34],[27,23],[1,2],[1,1],[3,3],[1,1],[1,2],[3,3],[2,1],[1,2],[3,2],[2,2],[1,1],[3,2],[2,2],[2,1],[3,2],[2,1],[1,1],[4,2],[1,0],[1,1],[90,42],[2,1],[3,1],[1,1],[1,0],[1,0],[35,13],[35,12],[1,0],[2,1],[1,0],[65,20],[1,0],[2,0],[60,15],[4,1],[62,29],[20,9],[20,15],[69,97],[20,40],[23,78],[3,51],[-10,53],[2,39],[-35,77],[-20,45],[-9,17],[-18,25]],[[93832,70350],[-6,2],[-30,7],[-13,23],[-25,0],[-14,-2],[-10,-1],[-23,-5],[-21,-18],[-33,2],[-40,22],[-26,0],[-16,-18],[-13,-26],[5,-41],[-2,-36],[-24,-32],[-7,-37],[-18,-15],[-25,-20],[-20,-8],[-47,8],[-27,-7],[-3,-31],[-18,-25],[-16,-26],[-18,-42],[-42,-49],[-27,-31],[-30,-25],[-32,-25],[-18,-33],[-18,-20],[-22,-17],[-18,-20],[-16,-23],[-22,-40],[-20,-11],[-20,10],[-42,7],[-46,8],[-51,7],[-25,1],[-9,0],[-23,-2],[-47,2],[-51,-1],[-68,12],[-26,0],[-24,-12],[-18,-32],[-20,-12],[-19,-7],[-23,-4],[-21,-15],[-4,-32],[-13,-30],[-24,-13],[-11,-40],[-6,-34],[-13,-36],[-8,-36],[-2,-32],[-17,-35],[-6,-36],[-25,-38],[-9,-38],[-24,-19],[-32,-12],[-26,18],[-43,25],[-24,7],[-21,18],[-26,5],[-41,36],[-26,13],[-22,8],[-25,8],[-21,11],[-21,22],[-21,30],[-23,13],[-18,32],[-14,36],[-26,32],[-2,12],[-6,9],[-12,9],[-163,-3],[-12,2],[-2,1],[-154,-2],[-134,-1],[-22,-78],[-7,-4],[-20,-8],[-6,-7],[-16,-30],[-10,-42],[-3,-43],[-5,-30],[-9,-33],[-18,-58],[-11,-39],[-25,-79],[-19,-47],[-5,-33],[-11,-42],[-11,-25],[-14,-36],[-4,-29],[-17,-41],[-21,-27],[-10,-33],[-16,-44],[-28,-38],[-16,-62],[-4,-36],[-12,-42],[-13,-58],[-13,-45],[-16,-48],[-22,-42],[-1,-36],[-15,-43],[-3,-36],[-6,-47],[-9,-32],[-20,-24],[-13,-35],[-9,-27],[-23,-80],[-7,-31],[-14,-34],[-23,-64],[-20,-54],[-16,-60],[-12,-29],[-20,-43],[-5,-40],[-7,-32],[-14,-31],[-15,-28],[-20,-23],[-10,-37],[-3,-31],[-22,-32],[-12,-51],[-8,-34],[0,-37],[10,-39],[-2,-41],[-10,-52],[-13,-35],[-15,-20],[-13,-36],[-2,-43],[-19,-43],[-15,-36],[-11,-27],[-2,-30],[-11,-36],[-23,-51],[-166,-589],[-19,-106],[-19,-138],[-12,-51],[-15,-50],[-26,-96],[-11,-41],[-26,-128],[-6,-33],[-2,-32],[-18,-67],[-1,-33],[-4,-42],[-14,-26],[2,-49],[-11,-45],[-6,-38],[-32,-135],[-47,-65],[-46,-105],[-57,-134],[-61,-214],[-22,-68],[-33,-78],[-19,-49],[-22,-47],[-13,-29],[-51,-150],[-14,-57],[-48,-124],[-71,-149],[-27,-54],[-20,-43],[-36,-113]],[[89637,63705],[-865,784],[-639,579],[-102,92],[-796,721]],[[87235,65881],[-84,42],[-188,73],[-26,13],[-124,60],[-98,49],[-36,15],[-23,11],[-135,62],[-25,14],[-26,16],[-12,7],[-263,155],[-303,182],[-158,95],[-2,1],[-103,62],[-103,62],[-95,58],[-4,2],[-26,15],[-27,22],[-26,20],[-197,152],[-165,126],[-179,138],[-22,15],[-12,8]],[[84773,67356],[28,17],[21,17],[22,21],[25,42],[33,249],[-5,67],[-18,33],[-11,54],[6,36],[17,44],[13,16],[47,35],[14,5],[55,0],[11,-3],[31,-6],[38,31],[23,22],[23,19],[10,12],[11,9],[-4,20],[-16,25],[-15,11],[-57,21],[-3,4],[-31,32],[-80,45],[-37,11],[-26,8],[-7,39],[8,46],[36,30],[32,8],[119,-17],[23,-8],[52,-33],[29,-28],[30,-43],[103,-173],[25,-16],[31,0],[26,9],[12,32],[-7,46],[-16,66],[-15,46],[-5,24],[-12,26],[-10,35],[14,64],[40,36],[68,-14],[1,0],[48,-17],[39,-52],[41,-94],[36,-48],[40,-27],[23,-4],[35,7],[44,39],[10,17],[6,39],[-34,78],[-33,47],[-77,123],[-40,45],[-25,12],[-37,19],[-125,63],[-31,21],[-14,14],[-48,57],[-44,43],[-97,67],[-26,6],[-37,41],[-87,106],[-63,131],[-4,16],[-8,72],[1,62],[21,103],[13,16],[108,78],[79,25],[52,7],[66,-13],[114,-49],[9,-9],[38,-15],[70,-26],[7,2],[50,-24],[68,-40],[20,-23],[33,-38],[30,-34],[29,-24],[28,-17],[101,-23],[108,3],[31,0],[33,4],[61,21],[41,32],[14,11],[9,13],[16,21],[7,23],[2,30],[-1,31],[-14,31],[-27,37],[-53,58],[-32,66],[-35,14],[-111,67],[-72,55],[-108,100],[-59,56],[-15,23],[-80,115],[-17,37],[-87,129],[-40,85],[-10,62],[9,50],[45,64],[48,39],[64,20],[45,2],[59,-12],[35,-15],[157,-76],[28,-13],[120,-54],[161,-70],[30,-25],[33,-47],[34,-36],[88,-63],[84,-43],[112,-19],[95,105],[-48,63],[-18,15],[-102,120],[-50,85],[-14,39],[0,10],[0,2],[1,10],[14,83],[19,48],[50,34],[107,30],[105,-18],[34,-28],[50,-41],[2,-1],[14,-8],[69,-16],[40,2],[56,31],[25,37],[-2,34],[-20,37],[-23,41],[-26,47],[-8,26],[-10,35],[8,65],[28,30],[25,26],[43,25],[38,4],[45,-14],[144,-45],[154,-68],[42,-17],[43,-26],[251,-49],[30,-21],[64,-38],[100,-58],[14,1],[40,-23],[77,-45],[173,-86],[14,-4],[45,-18],[34,-18],[33,-10],[59,-12],[92,-24],[73,-24],[117,-27],[54,-5],[31,5],[30,15],[13,14],[8,25],[3,38],[-2,68],[3,39],[5,38],[5,20],[4,13],[4,11],[20,51],[22,42],[45,84],[46,80],[24,41],[16,25],[36,48],[25,14],[42,43],[1,2],[2,1],[57,51],[48,60],[3,2],[1,2],[74,78],[39,41],[2,3],[3,3],[2,1],[31,25],[20,15],[1,1],[165,121],[45,47],[9,27],[0,1],[-9,19],[-119,135],[-3,2],[0,1],[-28,36],[-2,2],[-2,4],[-2,4],[-2,4],[-2,5],[-2,4],[-2,5],[-1,5],[0,1],[-8,35],[-1,4],[-1,5],[0,5],[-1,5],[0,5],[0,5],[1,6],[0,2],[4,31],[0,2],[1,5],[1,5],[1,5],[2,4],[1,5],[2,4],[2,4],[17,33],[0,1],[3,4],[2,4],[3,3],[3,3],[3,3],[3,3],[3,2],[3,3],[1,0],[12,7],[2,1],[4,2],[1,0],[73,26],[3,1],[3,0],[62,12],[3,1],[47,5],[3,0],[27,1],[64,1],[62,3],[89,3],[29,2],[46,1],[28,4],[26,9],[12,13],[69,94],[45,76],[39,100],[1,2],[1,4],[3,4],[0,2],[16,27],[24,44],[2,2],[2,4],[3,3],[3,4],[1,1],[35,41],[59,29],[23,15],[67,43],[40,14],[31,1],[43,-8],[68,-18],[24,14],[99,-19],[133,-46],[53,-11],[12,-20],[60,-21],[21,1],[36,-2],[41,-2],[71,-1],[110,-39],[32,-12],[43,-15],[40,-7],[37,-13],[41,-17],[63,-25],[68,-39],[3,-2],[3,-1],[3,-1],[25,-8],[1,-1],[2,0],[144,-35],[182,-45],[43,-23],[24,-14],[118,-63],[1,-1],[41,-24],[3,-3],[2,-1],[74,-65],[29,-23],[16,-19],[20,-16],[48,-42],[81,-42],[29,-7],[88,-54],[7,-17],[0,-1],[3,-2],[43,-22],[33,-27],[93,-87],[97,-106],[91,-89],[34,-39],[79,-74],[43,-51],[24,-43],[23,-51],[24,-59],[24,-37],[23,-25],[38,-24],[58,-50],[34,-37],[24,-48],[63,-94],[53,-100],[14,-36],[36,-58],[31,-48],[45,-56],[16,-20],[44,-90],[26,-57],[3,-6]],[[80942,67893],[-7,-2],[-8,-11],[-386,-541],[-78,-111],[-36,-51],[-85,-120],[-26,-37],[-16,-22],[-26,-37],[-52,-42],[-59,-44],[-35,-25],[-44,-19],[-70,-27],[-81,-135],[-69,-130],[-36,-68],[-45,-83],[-54,-102],[-94,-175],[-58,-108],[-6,-10],[-7,-14],[-95,-177],[-41,-11],[-24,7],[-27,11],[-32,22],[-30,-25],[-10,-74],[1,-31],[-13,-48],[-15,-25],[-31,-6],[-33,-10],[-29,-9],[-21,-17],[-32,16],[-21,0],[-33,-20],[-20,-27],[-21,-37],[-13,-51],[-17,-38],[-47,-99],[-27,-25],[-4,-30],[-24,-43],[-72,50],[-33,43],[-45,20],[-32,-1],[-55,-36],[-23,-9],[-22,-30],[-40,-59],[-9,-40],[-6,-30],[-4,-46],[-24,-27],[-13,-29],[-20,-17],[-10,-32],[-5,-29],[-41,-47],[-34,-34],[-26,-34],[-15,-22],[-4,-42],[-28,-32],[-27,-7],[-36,-37],[-18,-21],[-7,-38],[-10,-32],[4,-31],[17,-31],[4,-36],[-12,-42],[-18,-44],[-9,-65],[-13,-36],[-9,-34],[-22,-35],[-6,-34],[-4,-52],[-3,-50],[-42,-110],[-17,-36],[-14,-55],[-7,-28],[-17,-60],[-23,-28],[-21,-45],[-18,-25],[-7,-31],[-14,-22],[-13,-23],[-17,-18],[-13,-35],[-8,-30],[-10,-32],[-28,-47],[-8,-30],[-9,-26],[-19,-35],[-7,-30],[-21,-42],[-8,-28],[-31,-49],[-39,-50],[-24,-15],[-23,-11],[-21,-47],[-47,-49],[-23,-11],[-15,-31],[-3,-34],[-21,-29],[-11,-33],[-5,-35],[-15,-29],[-22,-31],[-9,-31],[-20,-42],[-14,-25],[-19,-21],[-19,-29],[-21,-4],[-19,12],[-23,0],[-21,-47],[-6,-38],[-17,-57],[-29,3],[-27,11],[-31,-29],[-43,-1],[-25,-41],[-7,-28],[-10,-26],[-13,-32],[-13,-58],[-3,-55],[-15,-47],[-14,-31],[-13,-52],[-27,-57],[-26,-65],[-11,-36],[-10,-28],[-15,-42],[-18,-18],[-25,-11],[-40,10],[-26,-12],[-33,-12],[-27,-1],[-14,-42],[-24,-11],[-42,13],[-21,-12],[-16,-33],[-20,-15],[-22,-4],[-21,19],[-43,1],[-27,12],[-29,-2],[-27,-18],[-44,3],[-30,-10],[-21,-7],[-48,-3],[-8,32],[-20,35],[-13,-13],[-48,-47],[-41,-21],[-16,-33],[-24,-35],[-29,-52],[-17,-40],[-16,-26],[-16,-30],[-8,-27],[-12,-33],[-18,-16],[-38,-55],[-33,-34],[-19,-20],[-63,-87],[-42,-52],[-29,-18],[-36,-32],[-28,-9],[-29,-48],[-17,-33],[-45,-61],[-35,-20],[-34,-13],[-15,-26],[-19,-25],[-18,-33],[-50,-85],[-26,-71],[-13,-70],[5,-34],[8,-48],[-1,-30],[-16,-19],[-18,-17],[2,-48],[-12,-34],[-14,-25],[-16,-25],[-38,-27],[-23,-12],[-51,-22],[-24,-25],[2,-31],[-19,-26],[-27,-27],[-39,-36],[-22,-46],[-36,-42],[-22,-19],[-44,-46],[-36,-33],[-22,-19],[-57,6],[-45,4],[-26,-4],[-35,-19],[-32,-35],[-26,-31],[-26,-28],[-26,-50],[-16,-27],[-34,-33],[-36,-44],[-16,-21],[-31,-45],[-28,-35],[-21,-52],[-16,-30],[-19,-40],[-12,-24],[-33,-45],[-34,-33],[-24,-27],[-19,-42],[-15,-45],[-11,-37],[-28,-40]],[[74392,59239],[-37,22],[-56,40],[-22,15],[-82,57],[-83,56],[-123,86],[-70,54],[-2,2],[-31,20],[-145,101],[-99,69],[-457,318],[-44,30],[-134,93],[-57,40],[-56,39],[-57,40],[-4,3],[-85,59],[-115,80],[-94,65],[-88,61],[-189,132],[-72,50],[-293,204],[-5,3],[-17,11],[-39,28],[-386,268],[-95,64],[-102,68],[-407,73],[-21,2],[-549,67],[-26,4],[-72,8],[-2,1],[-73,8],[-35,5],[-50,6],[-89,11],[-287,35],[-2,0],[-282,34],[-140,17],[-48,6],[-22,3],[-236,58],[-22,5],[-292,71],[-134,33]],[[68464,61864],[8,4],[19,21],[-2,26],[-15,213],[1,1],[2,4],[3,3],[3,3],[1,2],[8,8],[1,1],[3,3],[4,2],[3,3],[3,1],[4,2],[3,1],[20,6],[1,0],[3,1],[4,0],[3,1],[4,-1],[3,0],[4,-1],[3,-1],[4,-2],[2,-1],[7,-3],[1,-1],[4,-2],[12,-9],[3,-2],[33,-22],[15,-8],[41,-7],[9,-1],[16,5],[35,20],[29,19],[-5,5],[-2,2],[-3,3],[-3,3],[-15,19],[-3,3],[-2,4],[-2,4],[-3,4],[-1,5],[-1,1],[-9,23],[-1,3],[-1,5],[-2,4],[-1,5],[0,5],[-1,5],[0,6],[0,5],[0,2],[0,24],[0,2],[1,5],[0,6],[1,5],[1,4],[1,5],[2,5],[1,3],[5,13],[0,1],[2,4],[2,4],[2,4],[3,4],[1,2],[33,43],[9,16],[4,12],[2,17],[0,23],[-2,13],[-7,24],[-17,40],[-1,2],[-23,59],[-1,0],[-1,4],[-2,5],[-1,4],[-5,19],[0,1],[-1,5],[-1,5],[0,5],[-1,5],[0,6],[0,5],[1,5],[0,2],[1,13],[1,3],[1,5],[1,5],[1,5],[1,4],[2,5],[2,4],[2,4],[2,4],[3,4],[2,4],[3,3],[3,3],[3,3],[3,2],[4,2],[3,2],[1,0],[13,7],[3,1],[3,1],[4,1],[3,0],[4,0],[4,0],[14,-1],[3,-1],[4,0],[3,-2],[4,-1],[19,-10],[3,-2],[4,-2],[2,-1],[15,-12],[21,-10],[3,1],[76,75],[1,0],[3,3],[3,2],[3,2],[1,0],[37,22],[3,2],[4,1],[2,1],[25,8],[1,0],[3,1],[4,1],[3,0],[20,0],[3,0],[4,-1],[3,-1],[4,-1],[5,-2],[34,-13],[30,-9],[32,0],[14,4],[7,5],[4,8],[4,21],[3,30],[1,5],[1,5],[1,5],[1,4],[1,5],[2,5],[2,4],[2,4],[1,2],[13,23],[1,2],[3,4],[2,3],[3,4],[3,3],[3,2],[14,12],[3,2],[4,3],[3,1],[3,2],[2,0],[14,5],[2,1],[3,1],[4,0],[4,0],[3,0],[2,0],[78,-12],[4,-1],[2,0],[1,0],[26,-6],[2,-1],[3,-1],[57,-21],[14,-5],[15,-1],[55,7],[18,4],[2,1],[6,75],[0,1],[0,5],[1,3],[6,35],[0,3],[1,4],[1,5],[2,5],[1,4],[2,5],[2,4],[30,55],[2,4],[2,4],[3,3],[3,3],[2,2],[57,58],[4,5],[18,21],[77,103],[33,67],[26,66],[24,106],[1,5],[2,5],[1,4],[2,5],[2,4],[3,4],[2,4],[63,52],[1,0],[17,2],[1,0],[3,1],[4,-1],[4,0],[1,0],[27,-6],[3,-1],[3,-1],[4,-2],[2,-1],[86,-47],[2,-1],[1,-1],[39,-24],[14,-6],[8,-1],[32,4],[28,14],[22,17],[6,5],[35,35],[-38,54],[-1,0],[-2,4],[-3,4],[-2,4],[-2,4],[-1,5],[-2,5],[-1,4],[-1,5],[-5,26],[-1,5],[0,5],[-1,5],[0,5],[0,5],[1,6],[0,2],[1,13],[1,3],[1,5],[1,5],[1,5],[1,4],[2,5],[2,4],[1,2],[12,24],[1,2],[2,4],[3,4],[2,3],[3,3],[3,3],[3,3],[3,3],[3,2],[4,2],[3,1],[22,9],[4,1],[3,1],[4,0],[3,0],[3,0],[12,-1],[1,0],[4,0],[3,-1],[4,-1],[15,-6],[3,-2],[3,-1],[4,-3],[3,-2],[25,-22],[3,-2],[3,-3],[3,-3],[2,-4],[3,-3],[0,-1],[17,-27],[0,-1],[25,-42],[1,-1],[22,-37],[55,-71],[19,-21],[18,-18],[13,-5],[14,-1],[8,3],[13,13],[0,5],[-2,12],[-11,27],[-15,32],[-11,18],[-14,20],[-3,4],[-2,4],[-2,4],[-1,3],[-11,25],[0,2],[-2,4],[-2,5],[-1,5],[-1,5],[-17,96],[-6,30],[40,70],[25,42],[44,73],[44,37],[25,32],[2,13],[10,50],[-9,83],[-2,28],[0,5],[4,7],[28,49],[53,16],[36,-19],[40,-24],[37,-33],[10,-43],[1,-48],[1,-30],[5,-9],[2,-48],[-9,-41],[4,-2],[133,-52],[29,73],[-1,104],[-8,60],[3,42],[0,1],[0,1],[-11,19],[7,33],[24,34],[56,13],[50,13],[78,-31],[23,-4],[40,-3],[20,34],[10,70],[-23,69],[-11,27],[-13,58],[-3,41],[1,19],[3,12],[7,13],[20,19],[4,2],[29,18],[25,35],[2,3],[1,1],[1,3],[9,13],[5,17],[11,3],[19,0],[35,0],[115,-47],[59,-13],[16,3],[6,14],[5,21],[0,5],[1,25],[-11,22],[-5,13],[-75,72],[-3,2],[-16,16],[0,4],[-4,4],[-1,30],[3,42],[19,38],[53,75],[43,23],[20,7],[13,3],[41,28],[25,9],[1,1],[52,70],[19,136],[3,23],[4,27],[-28,53],[-2,0],[-41,-13],[-43,-13],[-12,9],[-10,20],[19,87],[13,38],[27,23],[30,5],[36,2],[42,-3],[18,-4],[8,-1],[38,-15],[39,15],[0,25],[-15,44],[-90,104],[-29,19],[-19,14],[-19,23],[-14,28],[-11,29],[-2,41],[20,26],[52,44],[37,9],[27,-6],[21,-11],[23,-16],[50,-44],[21,-22],[29,-20],[40,-18],[48,-11],[63,-9],[24,1],[73,19],[64,25],[11,3],[19,6],[27,8],[33,5],[33,9],[32,14],[7,10],[10,17],[5,38],[-4,47],[1,46],[1,0],[1,3],[26,-22],[15,-12],[40,-31],[14,-11],[4,-34],[8,-65],[12,-40],[20,-10],[20,-10],[42,5],[35,4],[36,54],[2,11],[9,45],[0,1],[1,7],[21,65],[22,40],[2,3],[10,8],[11,9],[5,3],[31,17],[13,0],[2,0],[57,-4],[18,-1],[36,-60],[11,-19],[56,-52],[20,-68],[30,-111],[25,-99],[56,-77],[69,-17],[62,3],[65,23],[74,31],[41,-14],[78,-66],[53,-46],[19,-17],[13,-10],[39,-35],[38,-22],[26,-23],[65,-43],[44,-34],[56,-25],[99,-94],[47,-46],[111,-48],[64,-48],[122,-92],[24,-18],[40,0],[21,-7],[24,-12],[4,-2],[6,-16],[2,-1],[44,-68],[37,26],[58,10],[95,11],[19,20],[3,28],[-8,133],[-2,13],[-8,14],[-53,48],[6,19],[3,12],[1,2],[1,5],[1,4],[1,5],[1,6],[0,5],[0,5],[0,5],[0,3],[-1,14],[0,2],[-1,2],[0,1],[73,39],[3,36],[-58,102],[-15,26],[-3,7],[0,1],[1,42],[2,9],[5,11],[14,14],[25,12],[67,31],[26,11],[100,46],[1,0],[4,2],[3,2],[3,3],[18,15],[3,3],[3,3],[3,3],[2,3],[19,27],[3,4],[2,4],[2,4],[0,1],[2,3],[7,19],[45,220],[-1,13],[-7,88],[0,3],[40,42],[56,41],[30,21],[33,17],[16,6],[79,16],[3,1],[3,1],[1,1],[30,12],[3,1],[3,2],[3,2],[4,2],[3,3],[1,1],[23,24],[1,2],[3,3],[3,3],[2,4],[2,4],[1,0],[1,4],[76,-18],[59,-16],[15,12],[27,61],[17,60],[13,78],[12,28],[84,57],[37,59],[19,50],[12,18],[30,75],[14,64],[-1,37],[-21,93],[1,2],[5,4],[21,16],[6,2],[11,-1],[40,-3],[19,-3],[3,-1],[2,0],[23,-1],[1,0],[3,1],[4,0],[4,1],[3,1],[2,1],[20,9],[1,0],[3,2],[3,2],[1,1],[53,38],[7,6],[8,6],[3,2],[3,2],[3,3],[3,4],[2,3],[1,2],[4,6],[5,6],[1,3],[2,4],[2,4],[2,4],[2,5],[1,4],[2,5],[0,4],[3,14],[1,2],[0,5],[1,5],[0,5],[0,5],[0,5],[0,1],[-1,28],[-1,16],[0,4],[-1,5],[0,2],[-6,37],[-13,84],[0,4],[2,3],[5,4],[52,22],[1,0],[24,11],[7,3],[102,-39],[37,-16],[45,-14],[18,2],[24,9],[25,41],[64,133],[44,91],[-1,74],[-26,41],[6,8],[97,136],[11,15],[33,20],[30,-3],[20,15],[49,71],[141,231],[8,41],[3,143],[0,4],[0,2],[-7,20],[12,31],[70,57],[13,11],[18,8],[44,-2],[27,17],[21,15],[52,36],[8,0],[8,-1],[18,-4],[50,-23],[2,-1],[4,-2],[38,-10],[4,-1],[2,0],[51,-7],[2,0],[2,0],[30,-2],[1,0],[4,1],[3,0],[3,1],[12,-7],[90,-49],[21,-16],[23,-4],[60,17],[14,10],[4,10],[23,32],[35,74],[1,11],[1,12],[3,27],[2,20],[-12,22],[-2,12],[0,13],[-2,7],[-90,134],[-71,59],[-6,5],[-2,4],[-1,1],[-3,4],[-3,3],[-3,3],[-2,2],[-17,14],[0,1],[-3,2],[-4,2],[0,1],[-14,150],[-2,59],[18,76],[1,6],[28,26],[27,27],[2,2],[42,42],[2,2],[3,3],[3,4],[2,3],[2,4],[2,4],[1,3],[17,38],[8,18],[26,25],[52,51],[28,29],[4,25],[-4,57],[23,70],[32,82],[1,0],[18,6],[4,1],[32,-16],[4,-2],[3,-1],[2,0],[31,-7],[2,-1],[3,0],[4,0],[2,0],[8,0],[1,0],[3,1],[4,1],[3,1],[4,1],[1,1],[14,8],[2,1],[4,2],[3,2],[3,3],[3,3],[10,12],[2,2],[5,-3],[57,-33],[15,9],[21,29],[16,74],[-6,101],[-21,89],[-1,0],[-3,49],[-2,21],[0,2],[-1,5],[0,5],[-1,5],[-1,3],[0,1],[-13,46],[-50,188],[-1,15],[6,33],[11,7],[47,30],[11,103],[32,62],[18,11],[15,10],[38,7],[76,-21],[3,0],[3,-1],[2,0],[54,-2],[2,-1],[3,1],[4,0],[3,1],[53,14],[1,1],[3,1],[4,1],[3,2],[3,2],[3,3],[4,2],[2,3],[37,41],[3,3],[2,3],[3,4],[2,4],[2,4],[2,5],[1,2],[52,138],[21,15],[63,47],[3,2],[2,2],[4,2],[38,21],[25,13],[28,16],[-10,-166],[-2,-36],[-76,-154],[-30,-73],[-21,-55],[-33,-89],[-21,-65],[-3,-111],[38,2],[28,-15],[9,2],[14,-5],[29,-7],[9,-25],[15,-9],[21,-5],[20,6],[12,0],[22,-3],[14,-11],[24,-10],[14,4],[70,53],[42,47],[47,35],[15,11],[68,37],[5,-2],[12,-3],[13,-5],[136,-51],[73,-40],[8,-7],[18,-17],[35,-67],[19,-60],[8,-42],[2,-12],[-79,-151],[-7,-12],[-166,-121],[-20,4],[-18,14],[-13,22],[-5,52],[-17,22],[-21,15],[-59,12],[-87,-8],[-83,-13],[-78,-18],[-35,-26],[-27,-43],[-37,-24],[-19,-5],[-5,-3],[-13,-19],[-29,-59],[-11,-28],[-6,-21],[2,-35],[11,-22],[3,-7],[6,-8],[9,-13],[12,-17],[4,-5],[19,-9],[19,-10],[16,-25],[24,-38],[1,-2],[22,-52],[11,-27],[4,-38],[-2,-14],[-1,-4],[11,-39],[24,-38],[2,-2],[30,-30],[18,-2],[23,-49],[1,-2],[4,-3],[79,-63],[37,-22],[28,-4],[2,-1],[41,28],[25,6],[24,-8],[51,-34],[31,-18],[24,0],[21,10],[16,12],[6,7],[9,37],[51,100],[23,18],[3,0],[35,5],[23,-3],[5,-1],[7,6],[24,4],[13,-1],[10,-1],[9,-21],[0,-1],[18,-46],[0,-3],[2,-4],[1,-5],[1,-5],[1,-2],[5,-35],[1,-3],[0,-5],[1,-5],[0,-3],[2,-96],[1,-14],[17,-67],[22,-43],[34,-42],[1,-1],[3,-3],[2,-4],[3,-4],[2,-4],[2,-5],[0,-1],[14,-36],[49,-120],[-13,-55],[11,-30],[25,-12],[21,0],[28,4],[26,-3],[28,-5],[26,-2],[28,-5],[46,-22],[4,13],[41,-38],[38,-43],[19,-21],[24,-29],[14,-14],[52,-29],[17,-9],[82,-52],[45,-16],[20,-7],[28,-17],[6,-5],[12,-17],[31,-46],[1,-1],[5,-24],[10,-26],[22,-26],[30,-16],[24,-14],[77,-30],[69,-29],[49,-42],[42,-37],[45,-24],[42,-20],[46,-15],[20,-8],[4,-1],[0,-1],[67,-81],[24,-19],[46,-19],[21,-5],[25,-9],[33,-15]],[[54919,65490],[-11,-8],[-68,-47],[-20,-14],[-94,-65],[-507,-352],[-39,-27],[-19,-13],[-1,-1],[-313,-216],[-88,-61],[-90,-62],[-216,-152],[-56,-91],[-83,-140],[-143,-236],[-162,-56],[-248,-87],[-17,-5],[-148,-52],[-75,-26],[-372,-129],[-137,-47],[-66,-24],[-6,-2],[-32,-9],[-17,19],[-18,40],[-16,55],[-9,28],[-10,36],[-22,24],[-27,56],[-62,132],[-21,42],[-25,37],[-38,34],[-34,15],[-30,7],[-21,10],[-15,26],[7,75],[-27,26],[-47,24],[-31,3],[-23,-3],[-24,-10],[-18,-17],[-40,-73],[-27,-86],[-15,-33],[-24,-19],[-22,-11],[-23,-7],[-47,1],[-38,-8],[-195,-33],[-46,-7],[-520,-86],[-69,-12],[-8,-1],[-208,-35],[-238,-39],[-52,-10],[-49,-7],[-83,2]],[[49676,63763],[-40,28],[-90,69],[-3,2],[-30,23],[-24,19],[-26,20],[-268,188],[-28,20],[-148,107],[-242,174],[-48,35],[-23,17],[-100,69],[-20,16],[-45,38],[-109,77],[-242,172],[-21,5],[-49,37],[-21,12],[-13,3],[-47,9],[-7,3],[-40,17],[-27,42],[-26,39],[-6,0],[-14,-1],[-1,0],[-2,-2],[-98,-81],[-2,-1],[-22,-9],[-8,71],[-13,24],[-3,-3],[-31,-29],[-21,-13],[-1,0],[-390,95],[-417,102],[-163,44],[-137,37],[-142,36],[-148,35],[-53,15],[-199,56],[-47,14],[-211,48],[-130,29],[-55,12],[-53,13],[-97,22],[-29,6],[-6,2],[-165,41],[-6,2],[-45,16],[-119,33],[-25,15],[-21,0],[-70,18],[-30,8],[-95,24],[-141,32],[-133,33],[-21,6],[-8,2],[-469,117],[-100,25],[-269,67],[-77,23]],[[93832,70350],[26,-64],[36,-58],[20,-42],[34,-59],[23,-51],[18,-35],[13,-32],[24,-44],[32,-64],[24,-30],[24,-17],[24,-11],[21,-22],[20,-7],[27,-6],[43,-12],[22,6],[19,6],[6,2],[7,-3],[15,-4],[25,-2],[28,-3],[64,-4],[35,-6],[21,-3],[113,-20],[177,14],[24,15],[20,19],[41,61],[20,34],[21,27],[15,22],[29,25],[26,16],[88,35],[25,5],[34,2],[20,-3],[60,-20],[24,-11],[29,-25],[20,-22],[13,-28],[5,-30],[1,-42],[-8,-48],[-21,-91],[-4,-116],[5,-33],[41,-147],[14,-35],[25,-18],[17,-17],[43,-19],[47,1],[20,11],[10,11],[1,0],[1,2],[34,34],[17,34],[14,25],[14,41],[10,42],[13,95],[8,98],[4,54],[1,60],[6,66],[-3,99],[-13,60],[-36,62],[-20,26],[-33,23],[-41,9],[-15,6],[-28,37],[6,48],[17,19],[19,16],[28,19],[46,12],[40,-2],[29,-10],[33,-18],[28,-25],[31,-34],[47,-69],[15,-39],[17,-81],[16,-44],[28,-52],[18,-31],[46,-30],[38,-19],[31,-12],[41,-15],[39,-2],[52,0],[23,-4],[29,-13],[34,-22],[54,-17],[59,-5],[27,-8],[30,-13],[42,-24],[45,-19],[41,-13],[21,-5],[33,-8],[38,-6],[21,2],[47,15],[27,13],[9,9],[2,1],[2,2],[19,18],[22,77],[3,89],[-2,32],[-17,55],[-23,43],[-55,71],[-24,38],[-1,35],[33,33],[76,-6],[88,-27],[53,-7],[18,-21],[21,-16],[22,-20],[26,-13],[24,-10],[20,-16],[20,-10],[20,-7],[25,-9],[21,-14],[20,-13],[26,-10],[20,-8],[21,-7],[27,-8],[24,-8],[23,-7],[26,-7],[28,-5],[28,-1],[30,0],[27,0],[26,-1],[22,-4],[22,2],[27,4],[24,4],[27,-4],[24,-7],[26,-10],[24,-9],[19,-15],[19,-19],[23,-25],[23,-23],[19,-21],[13,-24],[16,-22],[3,-31],[1,-1],[4,-29],[2,-31],[4,-36],[8,-28],[5,-32],[7,-33],[3,-28],[3,-31],[0,-33],[0,-39],[2,-33],[-2,-31],[-4,-37],[-6,-27],[-2,-6],[-9,-33],[-1,-30],[3,-30],[-8,-33],[-10,-42],[-7,-32],[-8,-26],[-4,-32],[-2,-18],[-2,-17],[-5,-18],[-3,-14],[-3,-33],[2,-31],[-10,-29],[-11,-26],[-12,-28],[-2,-4],[-14,-28],[-20,-26],[-31,-22],[-34,-13],[-21,-13],[-26,-6],[-26,1],[-26,-2],[-25,0],[-1,0],[-27,1],[-25,0],[-4,0],[-27,0],[-23,-3],[-25,6],[-20,5],[-21,1],[-28,-1],[-27,-2],[-22,-4],[-24,-1],[-45,-10],[-6,-3],[-22,-4],[-23,-1],[-21,-4],[-21,-2],[-22,2],[-22,3],[-22,-2],[-25,5],[-28,2],[-40,5],[-55,-7],[-34,-9],[-47,-19],[-69,-43],[-40,-27],[-21,-18],[-1,-1],[-29,-50],[-6,-34],[6,-57],[26,-56],[19,-31],[21,-22],[92,-59],[27,-21],[33,-31],[32,-25],[33,-22],[51,-31],[37,-42],[83,-110],[15,-25],[4,-7],[16,-54],[2,-19],[3,-30],[-5,-29],[-3,-37],[2,-39],[-8,-70],[-23,-119],[-3,-33],[-5,-42],[0,-61],[3,-43],[19,-61],[36,-42],[32,-13],[39,-8],[191,32],[27,6],[76,37],[38,21],[39,25],[16,33],[9,39],[0,54],[-3,104],[3,30],[3,52],[28,53],[3,4],[39,28],[24,10],[48,5],[26,-7],[52,-25],[51,-31],[20,-17],[17,-20],[19,-51],[8,-29],[8,-33],[2,-36],[-33,-173],[-10,-36],[-20,-25],[-49,-47],[-53,-34],[-43,-32],[-88,-81],[-98,-68],[-44,-34],[-26,-32],[-25,-41],[-10,-36],[10,-41],[20,-34],[20,-26],[66,-28],[213,-85],[97,-43],[20,1],[11,1],[1,0]],[[97830,66679],[-2,-4],[-27,-80],[-12,-25],[-8,-27],[-12,-43],[-3,-10],[-13,-29],[-53,-89],[-8,-113],[-17,-43],[-28,-51],[-38,-57],[-22,-35],[-13,-68],[-5,-53],[-13,-22],[-19,-45],[-17,-50],[6,-50],[19,-31],[-12,-25],[-21,-16],[-22,-10],[-18,-15],[-15,-26],[-3,-30],[-42,-140],[-25,-84],[-6,-95],[-19,-9],[-37,-16],[-18,-14],[-76,-82],[-7,-8],[-39,-48],[-42,-92],[-29,-33],[-61,-69],[-221,-255],[-216,-233],[-85,-95],[-71,-81],[-8,-10],[-284,-319],[-7,-8],[-128,-144],[-96,-107],[-168,-188],[-57,-63],[-22,-25],[-11,-26],[-2,-1],[-1,0],[-23,-16],[-32,0],[-22,13],[-29,-11],[-28,2],[-25,13],[-28,14],[-73,13],[-21,-2],[-38,-15],[-26,-55],[11,-35],[33,-22],[35,-31],[28,-27],[3,-35],[-19,-23],[-19,-13],[-42,-7],[-35,5],[-34,-1],[-29,-12],[-41,-41],[-39,-38],[-23,-31],[-35,-34],[-23,-3],[-64,7],[-81,-2],[-12,-37],[19,-21],[35,-19],[16,-30],[18,-51],[12,-32],[-1,-41],[-51,-16],[-60,-18],[-3,-30],[20,-40],[15,-34],[9,-28],[9,-28],[6,-31],[0,-47],[-14,-32],[-13,-56],[-5,-34],[-28,-8],[-21,6],[-28,26],[-24,36],[-7,33],[-19,16],[-100,13],[-54,3],[-18,-20],[-9,-63],[40,-42],[54,-45],[14,-31],[-2,-69],[-15,-26],[-61,-25],[-20,-27],[-32,-56],[-31,-82],[-17,-16],[-40,-11],[-14,-25],[12,-75],[1,-56],[-8,-33],[-23,-6],[-78,47],[-33,0],[-24,-17],[-7,-46],[10,-25],[24,-15],[59,-10],[34,-22],[16,-20],[13,-44],[-4,-15],[-4,-12],[-65,-98],[-34,-23],[-48,-70],[-13,-28],[-18,-42],[-21,-5],[-20,0],[-12,-6],[-10,-5],[-35,-34],[-16,-19],[-22,-12],[-19,-13],[-42,-50],[-27,-65],[-24,-53],[-62,-117],[-6,-11],[-35,-17],[-1,-1],[-18,-10],[-8,-11],[-9,-18],[-14,-32],[-19,-43],[-21,-47],[-2,-5],[-8,-16],[0,-21],[-1,-8],[-2,-17],[-6,-12],[-12,-2],[-27,12],[-81,6],[-20,-5],[-3,-3],[0,-9],[19,-24],[6,-11],[4,-20],[5,-24],[2,-11],[0,-109],[-14,-35],[-2,-3],[-3,-5],[-42,-9],[-17,-2],[-41,9],[-8,2],[-14,3],[-11,3],[-2,0],[-37,-30],[-9,-12],[-4,-24],[1,-10],[15,-39],[9,-8],[57,-34],[2,1],[88,-32],[7,-5],[10,-12],[3,-6],[3,-4],[0,-2],[-3,-11],[-19,-49],[-1,0],[-17,-20],[-15,-10],[-44,-12],[-35,-18],[-10,-5],[-11,-8],[-1,-10],[14,-19],[-6,-69]],[[93611,60019],[-842,772],[-90,82],[-54,50],[-875,803],[-943,870],[-716,659],[-2,2],[-452,448]],[[41117,65428],[-6,-42],[-20,-12],[-30,-13],[-30,-19],[-27,-6],[-21,-1],[-31,-34],[-37,-42],[-67,-24],[-46,51],[-56,43],[-23,-12],[-31,-16],[-13,-62],[-22,-51],[-86,24],[-60,2],[-74,-42],[-23,-4],[-45,-54],[-40,-25],[-19,-86],[16,-35],[-22,-45],[-141,-39],[-29,27],[-50,-31],[-20,-33],[-73,-21],[-41,-41],[-18,-18],[-46,43],[-23,6],[-58,43],[-82,-52],[-20,-33],[-49,-31],[-67,-15],[-17,24],[8,91],[-57,63],[-36,-10],[-25,-6],[-31,-23],[-51,-11],[-41,24],[-24,-26],[-19,-20],[-32,-20],[-48,21],[-43,-10],[-150,-388],[-165,-437],[-2,-5],[-39,-102],[-17,-44],[-10,-14],[-18,-22],[-316,-247],[-404,-317],[-20,-11],[-334,-259],[-361,-280],[-58,-46],[-102,-80],[-65,-50],[-16,-12],[-18,-14],[-56,-43],[-89,-70],[-72,-55],[-10,-8],[-6,-5],[-6,-5],[-39,-46],[-18,-22],[-3,-3],[-41,-48],[-3,-3],[-25,-31],[-344,-405],[-134,-156],[-177,-210],[-40,-47],[-86,-102],[-44,-47],[-82,-100],[-168,-204]],[[35633,60887],[2,42],[11,36],[-23,22],[-15,27],[4,58],[23,25],[19,40],[3,35],[22,54],[51,53],[-19,46],[-31,30],[-9,33],[-21,41],[-23,20],[-49,38],[24,123],[1,33],[6,39],[-28,32],[0,34],[-23,38],[34,38],[-7,29],[4,33],[34,49],[91,11],[16,59],[-10,45],[27,48],[-23,49],[-1,65],[-15,36],[23,23],[30,57],[20,15],[15,39],[-54,55],[-4,44],[-15,26],[-27,44],[68,72],[-9,44],[0,61],[-3,40],[0,6],[-17,46],[-30,-7],[-23,-3],[-38,45],[-42,116],[-38,-4],[-17,17],[-33,34],[-12,29],[5,43],[-41,32],[-12,64],[-30,16],[-90,-24],[-3,59],[6,36],[-23,53],[-48,-10],[-18,-56],[-30,-14],[-19,-13],[-27,37],[-16,28],[-46,61],[-38,57],[-18,36],[-15,31],[-20,19],[-66,10],[-46,12],[-25,14],[-26,18],[-35,-7],[-15,25],[-17,17],[-23,44],[-30,5],[-24,-10],[-38,-34],[-29,-24],[11,-39],[-24,-45],[-41,-22],[-2,-38],[4,-34],[-59,-60],[21,-54],[-5,-35],[-30,-47],[17,-30],[27,-45],[8,-30],[3,-37],[6,-45],[-16,-46],[0,-35],[-11,-50],[-21,-16],[-19,-39],[-33,-32],[-21,-28],[8,-27],[9,-27],[-12,-25],[-7,-59],[-8,-38],[-17,-29],[-18,-28],[-2,-29],[-24,-13],[-18,-19],[-30,-14],[-1,-33],[-6,-35],[-21,-9],[-25,-3],[-21,-1],[-21,-33],[-7,-109],[-41,-18],[-41,0],[-29,-12],[-38,17],[-13,55],[-70,62],[-39,-17],[-65,46],[-41,-6],[-61,13],[-60,53],[-28,-9],[-48,6],[-20,6],[-28,-24],[-2,-72],[-33,-5],[-25,-8],[-40,-13],[-15,-30],[-17,-30],[-47,23],[-23,0],[-38,3],[-20,-3],[-20,-8],[-4,-29],[-6,36],[-19,24],[-20,36],[-28,17],[-23,6],[12,35],[13,46],[-19,32],[-18,24],[-10,45]],[[33215,62535],[-21,232],[0,1],[-3,41],[-38,428],[-29,329],[-23,266],[-9,106],[-10,111],[-3,39],[-7,85],[-7,83],[-47,268],[-51,294],[-31,174],[-10,59],[-6,33],[-13,77],[-2,15],[-3,19],[-18,207],[-27,312],[-1,12],[-4,41],[0,2],[7,47],[-34,13],[-18,16],[-6,42],[-20,31],[-26,20],[-27,12],[-26,6],[-101,13],[-32,-1],[-28,-12],[-21,0],[-35,20],[-29,12],[-31,27],[-20,16],[-19,28],[-21,25],[-17,19],[-39,31],[-53,36],[-27,5],[-37,6],[-34,4],[-21,1],[-4,-37],[10,-32],[11,-39],[14,-21],[17,-18],[43,-23],[16,-27],[27,-35],[7,-41],[-17,-68],[-33,-40],[-86,14],[-58,22],[-57,28],[-33,10],[-31,4],[-40,10],[-37,4],[-25,6],[-21,12],[-21,12],[-25,5],[-25,-6],[-36,-15],[-22,-6],[-26,-22],[-20,-11],[-18,-19],[-15,-21],[-11,-45],[-17,-27],[-12,-24],[-31,-20],[-25,-11],[-12,-25],[-20,-27],[-26,-2],[-22,-13],[-25,-12],[-14,26],[-29,10],[-24,36],[-19,11],[-18,52],[-25,25],[-20,14],[-23,-4],[-22,11],[-24,10],[-22,-16],[-10,-29],[-8,-4],[-19,-12],[-28,-31],[-24,1],[-20,-14],[-1,0],[-2,-6],[-14,-35],[-6,-6],[-13,-12],[-24,-12],[-26,-29],[-88,42]],[[30908,65654],[118,166],[53,89],[51,51],[29,53],[12,39],[21,42],[-2,9],[26,48],[77,169],[0,1],[1,1],[27,57],[2,3],[0,1],[56,102],[41,146],[15,50],[44,41],[141,130],[1,1],[1,2],[71,82],[223,258],[1,2],[3,3],[1,0],[71,66],[87,80],[181,215],[73,87],[55,70],[78,144],[57,65],[62,106],[231,167],[18,52],[77,125],[30,38],[99,81],[19,5],[74,62],[44,47],[119,126],[87,107],[92,67],[96,97],[25,43],[138,130],[16,33],[57,45],[27,21],[6,56],[9,11],[85,84],[132,111],[124,128],[185,148],[76,49],[2,61],[0,1],[57,49]],[[87235,65881],[-41,-124],[74,-54],[-8,-115],[1,-71],[-25,-95],[-6,-75],[20,-104],[-29,-102],[-93,-86],[21,-88],[69,-108],[18,-115],[-47,-100],[-61,-108],[-95,-92],[12,-35],[-62,-103],[14,-182],[157,-199],[36,-65],[-14,-107],[-25,-43],[109,-32],[24,-35],[30,-8],[-97,-217],[-43,-65],[-20,-43],[-21,-74],[-66,-120],[-48,-76],[-57,-92],[-129,-172],[157,-58],[171,-62],[88,-19],[126,-27],[1,-10],[13,-71],[11,-27],[-37,-112],[-35,21],[-87,-72],[14,-72],[-17,-106],[-65,-117],[-68,-149],[-60,-154],[-72,-164],[-89,9],[4,-93],[-55,-125],[-55,-61],[-104,-107],[-86,-143],[-124,-132],[-42,-107],[-34,-100],[-69,-112],[-13,-20],[-63,-52],[-43,-47],[-24,26],[-74,-84],[22,-55],[-63,-96],[-246,-366],[-43,-112],[49,-44],[43,7],[60,-53],[136,-160],[107,-132],[-92,-78],[-15,-105],[15,-64],[-21,-38],[-10,-19],[-4,-75],[-243,-389],[-377,-509],[-23,-87],[78,-10],[51,-11],[52,-106],[54,44],[36,-58],[-60,-99],[6,-93],[30,-83],[77,-84],[63,-71],[84,-31],[26,-78],[80,-53],[70,-75],[42,-52],[-122,-154],[-86,-109],[-271,-165],[-191,-321],[-22,-145],[-34,-133],[-404,-520],[-91,-29],[-116,-60],[-75,-90],[-68,15],[-38,35],[-310,-240],[-46,-76],[-56,-64],[-92,-111],[-99,-126]],[[83965,54901],[-53,45],[-20,15],[-31,18],[-38,25],[-30,22],[16,20],[18,44],[-18,50],[-18,15],[-20,-6],[-41,8],[-34,4],[-18,39],[11,55],[-17,20],[-21,7],[-46,39],[-24,24],[-18,45],[-19,25],[-6,33],[-42,2],[-68,37],[-38,-1],[-13,47],[9,30],[1,41],[-15,35],[-30,29],[-20,-10],[-31,41],[-26,33],[-36,-4],[-17,43],[-16,28],[-39,-6],[-6,37],[-16,28],[-15,31],[-17,57],[-29,19],[-85,88],[-40,40],[-12,12],[-24,24],[-22,20],[-4,2],[-18,8],[-349,106],[-202,62],[-71,22],[-81,24],[-60,20],[-48,16],[-16,-26],[-24,-49],[-42,-63],[-34,-50],[-22,-29],[-78,-110],[-22,-32],[-18,-34],[-18,-26],[-14,-25],[-120,-162],[-23,-30],[-24,31],[-74,83],[-44,47],[-14,8],[-44,23],[-120,50],[-12,4],[-17,-3],[-35,-5],[-48,-20],[-20,-7],[-22,-5],[-21,1],[-22,2],[-42,3],[-36,4],[-24,-8],[-40,-3],[-17,3],[-200,116],[-9,32],[-24,81],[-28,99],[-6,4],[-42,27],[-96,64],[-63,43],[-30,20],[-35,9],[-33,21],[-1,1],[-18,11],[-45,27],[-40,29],[-29,22],[-30,-5],[-30,0],[-43,13],[-31,33],[-8,-3],[-15,-5],[-2,0],[-374,26],[-6,2],[-23,4],[-3,1],[-8,1],[-21,3],[-62,11],[-31,4],[-53,5],[-107,10],[-62,26],[-21,9],[-35,13],[-100,40],[-122,51],[-77,37],[-28,14],[-21,10],[-176,81],[-146,61],[-49,25],[-78,35],[-88,41],[-115,52],[-57,27],[-32,14],[-192,87],[-164,74],[-27,12],[-339,158],[-71,33],[-51,23],[-28,12],[-89,39],[-49,26],[-26,7],[-26,9],[-65,21],[-45,16],[-116,34],[-93,31],[-21,8],[-75,27],[-61,19],[-42,8],[-30,12],[-61,24],[-127,54],[-29,13],[-22,9],[-8,3],[-20,9],[-84,39],[-68,27],[-77,31],[-31,10],[-41,21],[-231,163],[-56,39],[-133,89],[-131,88],[-21,14],[-1,1],[-146,99],[-31,20],[-30,21],[-392,270],[-19,14],[-4,2],[-51,36],[-61,43],[-52,38],[-122,82],[-39,28],[-39,27],[-46,32],[-23,14]],[[80942,67893],[53,-17],[73,67],[20,4],[34,2],[50,6],[80,7],[66,-1],[51,-3],[41,6],[9,8],[32,35],[63,9],[14,1],[4,2],[13,3],[76,7],[86,-14],[127,-51],[135,-68],[29,-26],[19,1],[16,4],[26,25],[38,31],[51,10],[36,-1],[38,8],[45,6],[16,-3],[12,-14],[10,-17],[-1,-9],[-3,-16],[-1,-3],[-12,-32],[8,-30],[26,-33],[53,-49],[46,-35],[94,-38],[25,-13],[36,-15],[4,-4],[71,-48],[99,-79],[56,-40],[25,-6],[30,10],[23,9],[85,24],[61,-1],[78,-8],[22,9],[28,12],[77,29],[56,25],[104,0],[57,5],[90,5],[116,22],[49,1],[75,6],[106,-59],[134,-69],[92,-36],[97,-15],[50,5],[88,13],[110,15],[55,-3],[154,-131],[46,-2],[27,5],[23,10],[9,5]],[[97830,66679],[19,12],[53,9],[25,-5],[30,-8],[22,-6],[13,-4],[33,-13],[72,-39],[37,-17],[56,-19],[81,-20],[41,-5],[81,1],[45,6],[34,13],[12,5],[2,1],[1,0],[23,12],[25,16],[22,28],[49,103],[16,25],[24,26],[19,16],[28,18],[29,12],[40,6],[93,3],[32,3],[52,-12],[24,-16],[19,-15],[29,-29],[28,-38],[12,-38],[-3,-40],[-31,-49],[-19,-15],[-22,-16],[-53,-31],[-41,-15],[-106,-27],[-73,-26],[-93,-39],[-28,-14],[-43,-26],[-28,-16],[-70,-52],[-25,-39],[-22,-50],[-10,-64],[3,-35],[10,-36],[18,-49],[23,-35],[41,-42],[19,-15],[22,-16],[39,-26],[86,-49],[52,-21],[45,-23],[43,-29],[14,-24],[-2,-36],[-26,-35],[-26,-15],[-35,-2],[-33,5],[-146,49],[-58,8],[-66,-15],[-27,-22],[-17,-66],[14,-51],[47,-70],[65,-82],[36,-31],[59,-45],[30,-27],[17,-20],[11,-53],[-10,-33],[-23,-25],[-30,-16],[-37,-15],[-27,-6],[-47,-7],[-71,-11],[-35,-6],[-32,-14],[-21,-18],[-18,-26],[-8,-62],[11,-28],[0,-1],[17,-21],[22,-25],[39,-36],[21,-16],[3,-2],[7,-6],[22,-17],[35,-21],[34,-15],[45,-14],[68,-25],[36,-6],[85,5],[22,-2],[96,-38],[60,-1],[59,7],[43,5],[43,8],[43,-5],[61,-26],[32,-21],[40,-30],[42,-32],[32,-41],[3,-66],[13,-40],[11,-29],[15,-33],[11,-30],[16,-42],[21,-51],[24,-68],[22,-45],[14,-23],[51,-89],[23,-34],[29,-44],[13,-34],[15,-47],[12,-34],[10,-49],[11,-35],[15,-67],[10,-30],[6,-42],[4,-46],[-3,-33],[-8,-28],[-16,-22],[-17,-17],[-25,-15],[-35,-11],[-100,-18],[-45,-8],[-37,-10],[-45,-22],[-17,-22],[-14,-40],[-1,-46],[11,-38],[28,-46],[16,-32],[12,-28],[16,-40],[17,-47],[15,-29],[16,-37],[27,-49],[14,-28],[14,-24],[11,-34],[7,-56],[0,-42],[-3,-42],[-19,-91],[-11,-50],[-2,-38],[-31,-42],[-26,-38],[-29,-34],[-30,-26],[-99,-55],[-12,-8],[-28,-21],[-13,-11],[-36,-45],[-13,-48],[-4,-47],[3,-34],[11,-26],[20,-44],[34,-50],[9,-10],[35,-40],[29,-14],[40,-5],[27,-7],[27,-20],[32,-24],[36,-21],[47,-30],[48,-24],[101,-41],[34,-14],[24,-18],[60,-50],[6,-7],[29,-32],[2,-3],[20,-31],[75,-22],[40,-3],[75,-24],[-8,-6],[-120,-85],[-151,-98],[-92,-125],[-107,-241],[-134,-256],[-54,-171],[-38,-147],[0,-130],[-52,-80],[-55,-110],[9,-175],[-32,8],[-46,-59],[-15,-82],[-5,-29],[-106,-45],[-48,-56],[-4,-152],[67,-33],[-76,-289],[-64,-162],[-80,-133],[-72,-47],[-101,-197],[-26,-107],[-117,-207],[-33,-160],[-65,-147],[11,-197],[-68,-208],[-77,-333],[-132,-218],[-87,-167],[-63,-189],[-48,-105],[-34,-158],[8,-178],[-95,-116],[-18,-88],[-347,329],[-316,292],[-649,599],[-543,501],[-167,154],[-651,600],[-816,752],[-6,6],[-665,614]],[[33215,62535],[-43,19],[-20,-3],[-33,-12],[-18,-14],[-22,2],[-27,21],[-22,9],[-20,-15],[-11,-35],[-22,-41],[-26,3],[-22,-17],[-17,-24],[-16,-23],[-34,12],[-29,-9],[-20,23],[-19,24],[-10,26],[-23,10],[-13,27],[-21,7],[-38,2],[-20,15],[-19,-14],[-20,-21],[18,-26],[4,-29],[11,-32],[-17,-26],[-6,-38],[-24,-3],[-17,-23],[-35,-17],[-3,-33],[0,-34],[8,-27],[-2,-35],[-71,-12],[-18,-17],[8,-32],[14,-26],[14,-26],[-26,-24],[-14,-29],[20,-32],[10,-38],[-26,-20],[-6,-38],[-23,-3],[-34,-17],[-37,-9],[-22,-3],[-30,3],[-21,-12],[-18,-14],[0,-38],[-37,-6],[-24,-23],[-20,-6],[-29,9],[-18,-38],[-24,-12],[-27,24],[-4,29],[-24,-15],[-65,41],[-31,0],[-26,3],[-16,20],[-8,35],[-15,29],[-28,-11],[-12,-24],[-27,0],[-18,-17],[-28,12],[-15,26],[-17,18],[3,30],[-20,20],[-29,19],[-29,-26],[-18,-19],[-29,-12],[-34,-34],[-44,6],[-25,-3],[-32,-4],[-7,-36],[-21,-1],[-25,-7],[-22,6],[-30,5],[-16,-13],[-8,-7],[-23,4],[-19,-13],[-16,-34],[-17,-27],[-21,-15],[-31,6],[-47,-16],[-17,26],[-28,0],[-11,26],[-30,-1],[-35,-13],[-17,-23],[-26,-48],[1,-32],[-15,-23],[-23,-1],[-22,-14],[-12,-33],[6,-36],[-18,-39],[-19,-15],[-21,-15],[-20,-18],[-29,20],[-22,18],[-25,10],[2,-29],[-14,-23],[-37,4],[-30,7],[-26,3],[-25,18],[-30,-6],[-12,-43],[3,-31],[-19,-10],[-15,-21],[-28,-17],[-13,26],[-28,17],[-15,20],[-17,17],[-25,2],[-25,1],[-24,-35],[4,-41],[-21,12],[-26,17],[-24,14],[-24,11],[-27,-6],[-60,-9],[-16,-23],[-27,-5],[-27,2],[-20,6],[-28,-22],[-18,-23],[-53,45],[-22,17],[-29,0],[-26,-6],[-25,-8],[-6,-35],[-4,-32],[-26,-23],[6,-35],[3,-32],[-23,-8],[-27,-11],[-30,-2],[-16,21],[-39,32],[-24,23],[-37,-12],[-26,-6],[-16,21],[-11,35],[-8,29],[-27,8],[-23,9],[-31,-14],[-24,8],[-13,35],[-12,29],[-16,27],[-35,3],[-12,-24],[-24,-38],[2,-46],[43,-61],[-9,-44],[-7,-45],[-19,13],[-23,12],[-31,2],[-31,6],[-29,-5],[-22,-6],[-22,6],[-23,20],[-30,26],[-22,3],[-25,3],[-20,-9],[-27,-3],[-20,6],[-34,9],[-23,9],[-22,3],[-26,-24],[-23,9],[-16,20],[-22,3],[-21,-26],[-30,-3],[-29,21],[-22,0],[-20,-12],[12,-35],[10,-41],[-6,-32],[-22,-6],[-31,-23],[-16,-26],[-24,-17],[2,-38],[2,-44],[-25,-20],[-20,-21],[-16,-35],[-12,-35],[-6,-37],[-17,-21],[0,-32],[-8,-29],[-26,-20],[-18,-21],[20,-29],[2,-35],[-14,-32],[-21,-5],[4,-29],[19,-30],[-6,-43],[16,-29],[14,-38],[-18,-20],[-14,-41],[10,-38],[4,-58],[-4,-35],[-10,-35],[-21,3],[-30,6],[-16,-18],[-25,-32],[-10,-26],[-12,-23],[-16,-24],[-20,-10]],[[28511,60131],[-21,39],[-25,19],[-36,8],[-20,20],[-19,44],[-10,54],[-14,26],[-23,28],[-22,14],[-20,7],[-21,2],[-24,15],[-21,4],[-23,4],[-27,19],[-27,20],[-25,19],[-18,24],[-25,15],[-5,33],[-2,41],[0,31],[9,40],[15,24],[-4,34],[-12,39],[-16,65],[-18,28],[-35,20],[-53,47],[-22,7],[-33,-28],[-26,-10],[-36,2],[-42,-11],[-34,1],[-25,-7],[-50,20],[-51,49],[-32,23],[-24,-10],[-21,-3],[-30,-1],[-27,-2],[-21,4],[-19,34],[-26,8],[-37,-8],[-45,15],[-19,7],[-42,0],[-23,-9],[-46,2],[-23,-6],[-25,-8],[-21,2],[-18,16],[-24,6],[-21,4],[-37,31],[-23,9],[-35,8],[-14,-23],[-24,-13],[-32,-4],[-55,3],[-25,-7],[-31,-8],[-22,-10],[-21,26],[3,37],[16,50],[-44,43],[18,44],[-21,48],[-3,38],[-19,44],[-20,32],[-6,49],[34,61],[46,36],[-9,29],[-42,27],[20,60],[-15,39],[-16,21],[-27,10],[-28,-28],[-26,14],[-55,78],[-27,-5],[-50,-27],[-15,-23],[22,-63],[-10,-33],[-24,-9],[-41,7],[-18,14],[-40,58],[-10,52],[-18,23],[-28,36],[-8,47],[-26,54],[-29,0],[-101,-46],[-21,-14],[-16,-23],[-17,-45],[59,-79],[-16,-21],[-26,-5],[-50,-19],[-30,6],[-29,-2],[-40,29],[-3,32],[-15,21],[-22,38],[80,15],[5,31],[-41,42],[-59,27],[-11,30],[3,44],[4,37],[-2,49],[-3,14],[-9,41],[-14,21],[-12,19],[-14,22],[-17,52],[-13,76]],[[25841,62278],[57,8],[371,38],[110,41],[89,71],[69,75],[58,54],[123,105],[39,17],[60,41],[72,51],[92,63],[76,64],[24,29],[138,129],[4,5],[33,0],[10,0],[57,48],[17,13],[1,0],[3,2],[4,2],[2,1],[139,56],[19,11],[26,18],[111,76],[11,-2],[122,56],[68,31],[1,0],[95,40],[9,9],[0,1],[3,3],[3,3],[4,2],[100,71],[32,23],[46,32],[12,9],[1,1],[3,2],[4,2],[2,1],[9,4],[1,0],[1,0],[36,14],[1,1],[19,6],[0,1],[59,19],[1,1],[23,7],[79,13],[1,1],[76,5],[3,0],[1,0],[13,0],[3,-1],[3,0],[4,-1],[1,0],[34,-11],[43,-11],[1,-1],[3,-1],[53,-19],[1,0],[2,-1],[46,-20],[74,-18],[37,-4],[5,-1],[9,0],[54,-4],[36,2],[72,13],[73,44],[23,26],[4,5],[25,75],[29,63],[6,84],[-17,76],[-2,38],[12,61],[18,48],[40,76],[70,110],[47,51],[10,18],[92,115],[37,29],[77,109],[49,80],[24,89],[12,45],[15,22],[35,48],[70,59],[23,12],[36,1],[110,84],[7,-1],[164,82],[75,19],[125,38],[35,3],[10,9],[71,11],[234,23],[29,8],[102,76],[67,87],[56,89],[-4,51],[54,117]],[[49676,63763],[-30,-27],[-37,-28],[-40,-29],[6,-34],[14,-22],[22,-18],[-3,-40],[-7,-39],[-20,5],[-33,11],[-10,-38],[10,-55],[-27,-8],[10,-30],[17,-37],[7,-34],[7,-51],[21,-9],[35,-2],[26,-5],[-6,-35],[-10,-36],[-20,-31],[-31,19],[-6,7],[-1,-37],[0,-54],[-1,-228],[2,-32],[0,-282],[1,-292],[0,-101],[0,-66],[-1,-36],[0,-101],[0,-118],[0,-71],[0,-53],[0,-33],[0,-54],[0,-119],[0,-42],[0,-35],[0,-57],[0,-120],[0,-87],[0,-98],[0,-83],[0,-1],[-2,-170],[0,-40],[0,-185],[-2,-49],[0,-63],[1,-68],[30,-25],[9,-29],[4,-46],[1,-15],[3,-38],[5,-26],[8,-42],[21,-18],[43,3],[22,-12],[25,-48],[13,-25],[26,-13],[38,15],[21,-1],[31,-5],[82,-141],[147,-251],[60,-104],[31,-36],[68,-117],[44,-74]],[[50300,59374],[-161,-286],[-76,-143],[-28,-47],[-76,-129],[-101,-176],[-103,-179],[-110,-193],[-72,-124],[-22,-39],[-33,-58],[-33,-57],[-35,-62],[-46,-80],[-97,-169],[-25,-44],[-157,-274],[-2,-17],[-11,-93],[-6,-46],[-8,-112],[-6,-89],[-8,-123],[-3,-32],[-1,-32],[-5,-39],[39,-259],[-4,-155],[0,-10],[-2,-28],[-14,-302],[-11,-59],[-17,-312]],[[49066,55606],[-32,47],[-63,-18],[-27,-4],[-21,-4],[-20,11],[-20,22],[-83,-42],[-13,-23],[-107,-228],[-53,-109],[-21,1],[-203,18],[-105,9],[-73,6],[-181,16],[-150,13],[-23,2],[-286,25]],[[47585,55348],[-20,8],[-258,84],[-480,155],[-29,7],[-70,23],[-232,76],[-428,137],[-123,44],[-101,33],[-23,4],[-1,0],[-132,45],[-43,15],[-510,169],[-10,3],[-76,25],[-4,2],[-149,49],[-52,18],[-217,72],[-115,38],[-55,18],[-1,0],[-10,26],[2,29],[-39,-19],[-17,-20],[-24,4],[-17,20],[-28,12],[-16,24],[-33,28],[-22,33],[-34,32],[-33,13],[-28,-3],[-22,-6],[-23,6],[-42,48],[-47,-13],[-22,-14],[-22,-9],[-21,-13],[-27,-10],[-34,2],[-64,20],[-27,25],[22,44],[-21,11],[-36,-13],[-21,-49],[-19,-11],[-27,7],[-26,-6],[-33,-6],[-29,14],[-17,20],[11,30],[-20,14],[-34,5],[-36,0],[-20,1],[-29,14],[-38,-16],[-59,21],[-29,-8],[-30,-21],[-32,-38],[-21,14],[-40,4],[-22,12],[-24,-14],[-10,-42],[-23,-9],[-48,5],[-85,21],[-55,4],[-50,14],[-41,-4],[-58,-10],[-26,9],[-19,10],[-20,32],[-25,30],[-45,3],[-42,34],[-36,-4],[-17,25],[-4,41],[-4,45],[-17,34],[-2,39],[-16,44],[-30,21],[-26,5],[-33,-7],[-33,1],[-40,12],[-21,21],[-22,-8],[-56,12],[-21,17],[-43,25],[-29,9],[-24,19],[-49,31],[-21,30],[-34,21],[-63,22],[-25,19],[-20,18],[-40,-4],[-86,20],[-25,1],[-27,17],[-26,-2],[-29,-17],[-28,-17],[-26,-11],[-31,-22],[-25,2],[-26,13]],[[41574,57186],[23,48],[26,-4],[48,27],[33,44],[-10,46],[-12,42],[0,63],[16,23],[-18,15],[-6,48],[-7,58],[-3,38],[19,-14],[30,-12],[22,-21],[35,-22],[28,-4],[36,-8],[21,-7],[22,-14],[33,-10],[31,-30],[18,-16],[2,-31],[26,-23],[52,23],[28,15],[32,21],[58,17],[25,8],[26,3],[33,13],[32,1],[11,47],[21,44],[2,43],[9,27],[1,31],[28,34],[-10,40],[-1,34],[17,30],[24,21],[46,43],[24,-32],[5,-32],[27,-15],[-3,-36],[11,-49],[69,-1],[61,35],[23,15],[22,18],[25,22],[11,29],[4,38],[21,54],[15,32],[21,15],[32,-2],[34,-13],[43,-10],[21,14],[55,20],[4,44],[11,38],[-47,24],[-20,8],[-19,23],[16,41],[31,10],[45,24],[-7,41],[3,33],[17,29],[15,33],[11,26],[-7,33],[-23,21],[-25,21],[-16,25],[-24,13],[-35,-3],[-21,3],[-20,26],[-49,31],[-33,4],[-33,-8],[-36,31],[-33,4],[-22,11],[-19,14],[-43,8],[-53,-52],[-22,6],[-27,-9],[-40,-17],[-28,27],[-13,36],[-13,35],[-13,29],[-22,8],[-23,-3],[-25,20],[-23,24],[-30,0],[-44,16],[-7,32],[15,30],[-12,42],[1,36],[-32,39],[-8,36],[11,35],[33,17],[4,31],[19,22],[44,10],[27,10],[14,-27],[16,-35],[25,-23],[24,-24],[27,-7],[39,-23],[19,-26],[34,-2],[24,7],[24,31],[25,18],[14,76],[-5,40],[1,33],[7,31],[-21,11],[-15,20],[-25,20],[-15,56],[-88,0],[-18,18],[-3,34],[-18,41],[-21,11],[-43,-3],[-54,31],[12,40],[21,12],[0,32],[-20,17],[-16,18],[-19,18],[-77,22],[-4,38],[-24,32],[-76,56],[-52,7],[-15,37],[-5,34],[-30,11],[-21,0],[-30,38],[-61,-6],[-20,20],[-5,50],[-31,17],[-25,34],[13,52],[9,27],[-1,48],[-20,29],[24,105],[35,25],[18,20],[20,-7],[23,8],[23,15],[12,66],[14,29],[32,25],[-20,16],[-27,23],[13,46],[21,65],[-9,39],[-28,22],[-33,13],[-36,-17],[-31,-4],[-20,-20],[-25,7],[-22,26],[-25,7],[-22,43],[-46,-16],[-19,-14],[-24,13],[-31,38],[-37,-9],[-26,-25],[-12,-29],[-48,-2],[-23,37],[-15,24],[19,26],[19,32],[-25,88],[29,30],[23,7],[5,47],[50,33],[36,44],[16,30],[3,5],[34,91],[21,13],[-7,37],[16,32],[35,27],[29,-13],[36,-5],[28,-15],[27,59],[2,4],[-1,53],[-3,34],[-4,30],[37,53],[24,14],[14,23],[-10,28],[-3,63],[49,6],[33,0],[43,-26],[19,20],[23,11],[20,7],[19,25],[22,52],[47,-19],[22,10],[36,13],[16,24],[12,24],[0,42],[6,37],[18,42],[-19,28],[29,85],[20,8],[45,72],[63,78],[-18,77],[38,18],[14,48],[28,32],[32,29],[20,19],[14,23],[70,43],[22,24],[2,32],[-6,33],[18,35],[14,34],[-12,58],[28,13],[22,7],[36,16],[53,4],[20,19],[69,34],[1,55],[-8,43],[35,25],[-10,58],[-20,23],[-26,7],[-29,52],[-35,2],[-19,20],[-28,28],[-28,22],[-46,2],[-6,35],[5,35],[13,25],[16,34],[55,64],[-12,54],[9,41],[-23,63],[-27,78],[34,32],[26,25],[11,53],[17,45],[-44,17],[-30,26],[-17,27],[-12,36],[-4,62],[10,41],[-17,40],[-45,28],[-28,13],[-3,103],[-9,33],[6,33],[-1,36],[75,56],[40,44],[14,32],[32,35],[15,25],[16,93],[10,36],[-30,58],[8,38],[27,48],[-7,83],[-37,0],[-45,10],[-22,1],[-23,26],[5,28],[19,35],[-17,32],[-20,30],[6,30]],[[55803,61038],[-39,9],[-24,15],[-19,15],[-48,50],[-6,6],[-20,3],[-25,-1],[-2,0],[-11,-4],[-72,-94],[-3,-6],[0,-79],[1,-40],[6,-28],[5,-13],[20,-37],[3,-17],[0,-7],[-2,-10],[-8,-28],[-11,-28],[-1,-3],[-38,-2],[-48,3],[-10,4],[-8,8],[-4,8],[10,37],[-1,16],[-6,8],[-23,30],[-15,19],[-12,13],[-10,5],[-22,-10],[-3,-2],[-11,-8],[-6,-10],[-21,-56],[0,-1],[-91,-52],[-20,-14],[-3,-2],[-4,-2],[-7,-4],[-10,-4],[-3,-1],[-18,-3],[-56,6],[-62,16],[-2,3],[-3,11],[1,62],[-1,33],[-2,12],[-6,11],[-27,32],[-29,34],[-9,11],[-11,7],[-28,7],[-33,0],[-28,-7],[-2,-1],[-28,-16],[-11,-13],[6,-9],[12,-17],[1,-4],[7,-19],[9,-39],[0,-25],[-5,-25],[-15,-29],[-79,-79],[-15,-18],[-34,-69],[-7,-15],[-13,-51],[-1,-4],[-2,-1],[-40,-10],[-14,-4],[-73,-40],[2,-22],[-9,-28],[-17,-21],[-19,-35],[-17,-25],[-8,-43],[6,-41],[-6,-44],[-10,-29],[-13,-26],[-30,-6],[-37,0],[-23,-12],[-21,-11],[-29,-29],[-20,-26],[-18,-26],[-25,-27],[-20,-14],[-28,-12],[-29,-6],[-24,-3],[-27,-10],[-39,-18],[-54,-25],[-73,-33],[-75,-35],[-128,-59],[-26,-11],[-56,-26],[-24,-12],[-63,-29],[-27,-13],[-152,-72],[-46,-22],[-41,-19],[-43,-24],[-48,-21],[-29,-13],[-77,-11],[-44,-3],[-75,-7],[-24,-2],[-26,-2],[-146,-20],[-72,-8],[-41,-6],[-27,-3],[-48,-6],[-11,-1],[-112,-12],[-490,-53],[-693,-77],[-91,-9],[-96,-11],[-88,-8],[-85,-7],[-129,-12],[-2,0],[-38,-4],[-32,-3],[-14,-2],[-124,-19],[-56,19],[-24,8],[-211,71],[-41,19]],[[41574,57186],[-3,-39],[-24,-56],[12,-26],[-33,-37],[-21,-48],[-25,-17],[-25,0],[-23,-13],[-8,-48],[-14,-24],[-16,-29],[-26,-3],[-20,-6],[-26,-22],[-26,3],[-24,9],[-42,-21],[-55,11],[-27,-12],[-25,-32],[-12,-24],[-4,-38],[-14,-31],[-36,-28],[-18,-20],[28,-55],[-44,-86],[-22,-27],[-24,-15],[-23,-13],[-18,-28],[-52,-32],[-23,-2],[-23,-2],[-23,2],[-41,-20],[-20,-18],[-24,-8],[-19,30],[-19,12],[-23,-6],[-42,-10],[-15,-30],[-21,-13],[-21,24],[-20,22],[-28,15],[-22,-23],[-19,-17],[-24,8],[-25,41],[-13,29],[-24,6],[-32,6],[-29,0],[-18,-52],[-20,-20],[-37,-13],[-40,-5],[-8,-33],[14,-56],[-20,-25],[-16,-19],[-5,-38],[10,-31],[-10,-37],[-65,-37],[-26,-11],[-22,3],[-20,-18],[-31,-38],[-44,-7],[-34,-33],[-3,-38],[5,-33],[-19,-15],[-26,-3],[-29,-4],[-34,-11],[-10,-43],[-1,-38],[4,-30],[9,-34],[1,-44],[5,-39],[3,-39],[-19,-17],[-28,-11],[-27,-2],[-21,-8],[-28,-20],[-10,-35],[14,-33],[-17,-29],[-21,-22],[-34,-19],[-8,-32],[3,-35],[3,-41],[-19,-15],[-18,-24],[-14,-32],[-28,-32],[-23,-17],[-22,-15],[-23,-16],[-15,-22],[9,-40],[-6,-29],[-10,-29],[-13,-35],[-23,-19],[-24,1],[-40,11],[-95,27],[-21,6],[-379,108]],[[38890,55108],[-87,25],[-278,80],[-45,12],[-18,5],[-8,1],[-372,80],[-196,41],[-30,6],[-51,12],[-30,8],[-21,4],[-73,13],[-368,81],[-142,32]],[[37171,55508],[-18,47],[-166,409],[-38,92],[-210,510],[-11,27],[-104,252],[-159,386],[-36,81],[-371,838],[-4,9],[-16,36],[-123,279],[-30,70],[-23,50],[-41,93],[-90,204],[-93,209],[-115,252],[-21,46],[-13,30],[-27,66],[-39,107],[-91,201],[-164,364],[-1,4],[-44,96],[58,70],[36,45],[22,26],[47,57],[301,368],[26,32],[20,23]],[[28511,60131],[-19,-13],[-22,-6],[-25,0],[-26,-11],[-24,6],[-23,0],[-24,14],[-8,41],[-2,38],[-21,3],[-25,-1],[-18,-13],[-34,-23],[-24,-19],[-20,12],[-27,-26],[-20,-25],[-29,-9],[-20,-11],[11,-38],[15,-26],[-42,-8],[-29,-11],[-31,-19],[-20,-25],[-15,-33],[-20,-15],[-28,-9],[-12,-33],[-10,-42],[15,-35],[20,-20],[3,-30],[-19,-11],[-17,-6],[-15,-6],[-29,-6],[-16,-19],[4,-31],[20,-33],[0,-29],[-5,-32],[-13,-25],[-24,-8],[-23,-8],[-19,-45],[-9,-38],[-13,-35],[-22,-9],[-16,-19],[8,-36],[-9,-33],[-15,-41],[13,-30],[13,-24],[1,-41],[-3,-30],[-12,-38],[-26,-26],[-28,-19],[-18,-29],[-17,-30],[-24,-4],[-18,-25],[-18,-16],[-18,-28],[-21,-18],[-21,-40],[-4,-34],[-30,-3],[-26,10],[-12,-26],[-18,-49],[-5,-32],[-11,-25],[-15,-40],[-4,-49],[2,-70],[-9,-51],[-13,-31],[-16,-31],[-16,-31],[4,-48],[-6,-34],[-21,-28],[-20,-32],[-15,-33],[-24,-26],[-20,-22],[1,-58],[9,-35],[17,-26],[0,-34],[17,-28],[11,-31],[4,-32],[31,-32],[14,-22],[1,-30],[9,-39],[12,-43],[3,-32],[-19,-12],[-31,-19]],[[27328,57718],[-121,-77],[-333,-224],[-77,-51],[-102,-67],[-297,-198],[-110,-74],[-75,-47],[-152,-102],[-158,-108],[-106,-67],[-319,-211],[-79,-53],[-22,-15],[-44,-30],[-24,-19],[-22,-13],[-24,-20],[-33,-27],[-28,-17],[-37,-19],[-2,-1],[-47,-27],[-32,0],[-24,-2],[-28,-3],[-21,1],[-52,5],[-28,0],[-34,4],[-34,1],[-34,-4],[-28,-6],[-75,0],[-28,-25],[-20,-20],[-210,-199],[-7,-7],[-44,-31],[-137,-122],[-160,-158],[-211,-208],[-345,-341],[-215,-211],[-19,-19],[-69,-68],[-28,-28],[-95,-91],[-56,-54],[-26,-26],[-383,-365],[-31,-30],[-133,-128],[-28,-26],[-112,-107],[-75,-72],[-155,-149],[-6,-7],[-104,-122],[-10,-12],[-15,-18],[-263,-311],[-116,-138],[-57,-68]],[[21568,53086],[-280,165],[-34,20],[-40,24],[-38,22],[-10,6],[-103,61],[-57,33],[-76,45],[-104,61],[-139,82],[-25,15],[-43,26],[-387,233],[-30,16],[-129,74],[-65,38],[-262,154],[-68,40],[-67,40],[-43,27],[-5,3],[-33,20],[-2,1],[-61,37],[-466,289],[-204,123],[-32,19],[-20,13],[-396,240],[-17,10],[-9,5],[-43,25],[-19,10],[-83,80]],[[18178,55143],[76,11],[34,113],[53,283],[-11,241],[-21,126],[-27,198],[7,255],[5,61],[5,63],[-4,79],[-10,57],[-64,215],[-33,124],[-44,177],[-26,75],[-22,43],[-69,68],[-8,9],[-2,32],[-13,198],[59,29],[11,26],[48,63],[39,39],[85,63],[1,0],[3,3],[3,1],[61,31],[34,17],[51,36],[21,27],[5,6],[9,19],[14,35],[8,24],[8,25],[9,28],[0,1],[35,105],[0,2],[1,1],[34,95],[0,1],[25,66],[1,3],[2,4],[2,4],[-96,40],[-5,2],[16,22],[150,216],[573,189],[41,-7],[94,74],[11,25],[14,104],[-1,99],[-16,89],[-41,121],[-40,125],[-14,81],[-9,120],[5,86],[17,99],[35,97],[60,92],[54,78],[60,69],[114,91],[73,35],[68,25],[52,11],[102,6],[56,42],[66,17],[9,2],[145,4],[68,-16],[8,-2],[137,-31],[3,0],[3,0],[39,4],[277,-48],[76,3],[12,3],[67,19],[140,28],[11,-2],[107,-18],[54,-28],[1,0],[3,-1],[17,-7],[62,-20],[15,-5],[16,-14],[29,-28],[39,-58],[47,-20],[125,-37],[207,-42],[56,14],[53,43],[38,60],[10,16],[18,52],[15,39],[18,104],[4,208],[-11,104],[-1,165],[-11,172],[1,42],[0,15],[12,156],[10,70],[44,159],[7,17],[4,12],[18,21],[13,92],[9,368],[3,85],[26,92],[47,106],[21,47],[66,69],[9,8],[44,35],[108,127],[87,77],[24,17],[62,104],[79,1],[7,-2],[54,23],[73,62],[118,67],[288,165],[108,116],[132,176],[22,15],[114,166],[52,66],[168,263],[74,94],[52,45],[182,136],[56,26],[131,33],[29,2],[29,2],[44,8],[78,9],[149,-68],[82,-67],[62,-50],[53,-46],[24,-12],[35,-30],[105,-100],[40,-47],[63,-93],[49,-87],[27,-64],[16,-93],[-8,-54],[27,-91],[12,-18],[4,-24],[16,-141],[27,-142],[21,-75],[23,-47],[6,-32],[19,-43],[12,-69],[47,-126],[56,-112],[57,-85],[66,-66],[70,-54],[28,-22],[14,-21],[216,29]],[[37171,55508],[4,-31],[9,-40],[19,-28],[24,-17],[21,-25],[-28,-43],[-18,-16],[-1,-39],[8,-34],[2,-33],[-30,-17],[-21,-3],[-20,-23],[-23,-2],[-23,-1],[-27,-22],[-5,-36],[12,-25],[-16,-37],[-3,-39],[-38,-13],[-44,6],[-13,40],[-22,-10],[-23,-14],[-37,-1],[-20,-13],[-20,-20],[-28,-24],[-16,-23],[-6,-32],[7,-30],[9,-41],[-24,-24],[-28,-5],[-15,-25],[-11,-28],[-18,-25],[-13,-1],[-10,-1],[-21,-2],[-38,11],[-21,2],[-23,37],[-20,32],[-24,-8],[-22,-6],[-23,-13],[-25,4],[-31,16],[-28,-4],[-31,-9],[-29,1],[-22,-8],[-5,-30],[5,-35],[22,-3],[19,-13],[16,-23],[-41,-74],[-30,1],[-21,-6],[-25,-13],[-20,-16],[-6,-30],[5,-29],[-10,-30],[-23,-11],[-28,-25],[-24,-21],[-20,-9],[-29,4],[-14,29],[-16,24],[-20,15],[-29,-3],[-22,-22],[-31,-7],[-21,6],[-13,33],[-31,1],[-33,-3],[-28,-19],[-5,-30],[12,-44],[2,-46],[-18,-28],[-26,-2],[-26,1],[-23,-16],[-2,-35],[-69,-76],[-24,12],[-19,17],[-45,-2],[-17,-36],[-90,8],[-49,-29],[5,-38],[-24,-32],[33,-84],[-17,-22],[-8,-29],[-37,-17],[-2,-2],[-40,-28],[-15,-20],[-15,0],[-11,0],[-23,4],[-19,-33],[-1,-20],[-3,-40],[-28,-11],[-29,-31],[-13,-24],[-17,-31],[-21,-21],[-37,18],[-3,1],[-16,9],[-66,-38],[-10,-48],[0,-1],[-17,-23],[-35,-6],[-39,2],[-2,2],[-13,21],[-56,27],[-34,-31],[-8,-6],[-13,-10],[-17,0],[-9,-1],[-27,17],[-26,14],[-22,6],[-50,3],[-26,-34],[-2,-4],[-12,-19],[-28,-7],[-37,4],[-21,0],[-12,-36],[-65,-40],[-48,0],[-20,-14],[-53,-35],[-65,6],[-32,-47],[-26,-5],[-41,34],[-51,-56],[-30,-7],[-23,-12],[8,-39],[13,-22],[8,-49],[-29,-11],[-26,-10],[-4,-44],[-18,-15],[-19,-13],[-34,-26],[-51,-4],[-28,7],[-26,26],[-41,-36],[-26,-15],[-26,4],[-19,-13],[-23,-11],[-15,-47],[3,-30],[14,-27],[10,-36],[-12,-32],[-20,-16],[-45,12],[-8,26],[-28,3],[-32,-4],[-22,-5],[-24,-14],[-28,-40],[-29,-49],[-21,-25],[-8,-32],[-8,-35],[-60,-21],[4,-60],[-31,-18],[-20,-3],[-21,-9],[-16,-20],[-24,21],[-14,29],[-24,-3],[-13,-23],[-10,-32],[-28,-9],[-23,9],[-18,14],[-22,0],[-27,-9],[-40,-5],[-16,26],[-23,14],[-22,-3],[-22,-14],[-17,-18],[-20,-11],[-20,-3],[-23,-15],[-22,3],[-20,23],[-25,6],[-6,29],[17,35],[-23,21],[-20,3],[-20,-3],[-17,-21],[-18,-36],[-20,-16],[-21,-6],[-28,-6]],[[32691,52603],[-16,44],[-13,27],[-24,-3],[-25,13],[-21,11],[-22,2],[-24,-9],[-12,-25],[-24,-4],[-21,-1],[-19,-11],[-19,-15],[-8,-29],[-20,-11],[-20,-6],[-27,3],[-20,11],[-20,0],[-23,9],[-20,18],[-16,-18],[-23,-17],[-22,0],[-26,3],[-19,-24],[-22,-14],[-16,32],[-22,6],[-23,11],[-20,-11],[-26,-7],[-29,21],[-30,12],[-55,0],[-25,8],[-22,-2],[-26,-6],[-21,-6],[-22,9],[-16,29],[-8,29],[-23,14],[-20,12],[-12,26],[4,32],[-14,34],[-27,7],[-20,-18],[-26,-8],[-21,26],[-20,-3],[-24,-12],[-7,-8],[-10,-12],[-21,3],[-5,0],[-11,-6],[-9,-5],[-15,-3],[-6,-1],[-2,1],[-20,5],[-22,9],[-2,32],[-5,30],[16,29],[5,10],[12,24],[-18,17],[-4,30],[-16,23],[-27,3],[-22,3],[-25,-6],[-2,0],[-18,-18],[-24,6],[-21,-6],[-24,-3],[-18,38],[-33,58],[-4,32],[2,30],[-20,20],[-22,17],[-31,0],[-20,-3],[-10,50],[-23,12],[-20,14],[-6,44],[-15,23],[-3,35],[14,23],[12,29],[-2,32],[-24,-14],[-25,8],[-20,21],[-20,26],[10,26],[9,66],[-11,24],[-27,0],[-20,3],[-12,-29],[-18,-23],[-29,-15],[-18,-20],[-22,3],[-27,9],[-20,8],[-4,29],[-4,38],[-25,12],[-10,29],[-16,20],[-24,15],[-33,-20],[-26,-30],[-20,-11],[-27,20],[-19,25],[-22,9],[-16,-24],[-12,-24],[-27,-14],[-22,5],[-34,-7],[-22,-13],[-21,6],[-22,-6],[-49,-24],[-17,-23],[-22,-19],[-24,-10],[-19,13],[-31,-4],[-20,11],[-39,-20],[-18,-18],[-18,-28],[-18,-19],[-35,-56],[-34,-17],[-9,-35],[12,-29],[-3,-62]],[[30075,53215],[-25,-2],[-102,39],[-14,28],[-32,23],[-36,0],[-26,18],[-20,27],[-29,41],[-10,44],[-16,34],[-18,42],[-21,20],[-18,-22],[-15,-29],[-50,-4],[-8,31],[-32,15],[-26,-14],[-21,-6],[-38,-7],[-15,-21],[-5,-29],[-21,-22],[-27,-2],[-27,10],[-20,12],[-31,17],[-23,-11],[-26,-17],[-25,5],[-22,-3],[-32,4],[-7,35],[12,28],[-6,28],[-19,34],[-24,19],[-32,24],[-30,23],[-21,6],[-22,6],[-37,-6],[-30,-7],[-14,-25],[-21,-12],[-69,0],[-30,-3],[-38,-28],[-25,-33],[-26,-35],[-13,-34],[-14,-32],[6,-30],[-18,-17],[-12,-23],[14,-26],[10,-27],[-30,-26],[-21,-9],[-24,21],[-32,20],[-18,30],[-21,5],[-20,-6],[-33,9],[-30,20],[-4,29],[-12,27],[-39,5],[-35,9],[-30,-20],[-14,-32],[-33,-2],[-28,-8],[-15,-30],[-27,-12],[-25,23],[-13,29],[-19,29],[-16,29],[20,12],[48,46],[4,29],[-2,38],[-16,23],[14,37],[-6,32],[-23,38],[14,32],[-1,50],[-9,27],[-32,22],[-20,16],[1,37],[-6,47],[-11,31],[-47,5],[-34,8],[-26,-7],[-25,-7],[-21,17],[-19,31],[-26,2],[-21,-17],[-22,-17],[-22,21],[-24,26],[-30,-15],[-18,35],[-17,18],[-20,-9],[-26,-17],[6,29],[-4,38],[14,23],[2,43],[24,24],[25,-15],[24,15],[25,3],[18,17],[26,-9],[20,12],[39,15],[22,2],[13,27],[8,29],[32,26],[26,38],[13,32],[9,45],[-9,51],[-12,46],[-8,41],[11,27],[-2,36],[-9,29],[2,37],[-24,41],[-21,59],[-1,12],[-2,21],[4,38],[5,81],[25,29],[-3,39],[-7,33],[22,16],[-4,29],[-24,27],[-25,24],[-20,21],[-27,41],[15,35],[5,36],[3,38],[4,15],[6,21],[-41,6],[-17,23],[-20,11],[-10,6],[-17,6],[-30,6],[-100,-17],[-3,0],[-3,0],[-3,0],[-19,1],[-4,1],[-4,1],[-3,1],[-1,0],[-8,3],[-2,1],[-4,2],[-3,2],[-3,3],[-3,3],[-1,0],[-10,10],[-2,3],[-3,3],[-3,3],[-2,4],[-1,2],[-7,12],[-1,2],[-2,4],[-2,4],[-1,5],[-2,4],[-1,5],[-1,5],[-3,13],[0,4],[-1,5],[0,6],[0,1],[-1,37],[-1,3],[1,3],[-19,132],[-18,64],[-8,44],[-9,39],[-30,33],[-38,38],[-28,37],[-27,45],[-7,22],[-5,45],[-9,37],[-13,30],[-20,6],[-23,-2],[-137,12],[-13,-22],[-21,-10],[-24,17],[-64,46],[-51,37],[-43,32],[-137,100],[-151,111],[-32,24],[-2,31],[-14,43],[-3,3],[-1,4],[-4,9],[-28,33],[-16,13],[-3,3],[-13,27],[-13,33],[-9,39],[1,33],[9,28],[6,3],[46,2],[50,-9],[57,0],[10,3],[10,6],[10,14],[8,17],[0,1],[-1,6],[-30,51],[-13,21],[86,21],[114,16],[12,2],[7,11],[0,16],[-9,27],[-4,14],[-3,6],[-8,4],[-81,25],[-24,9],[-22,12],[-1,1],[-14,15],[-8,14],[2,7],[42,122],[8,12],[145,98],[69,17],[1,6],[66,92],[39,44],[21,52],[3,7],[-12,1],[-16,7],[-5,2],[-12,13],[-4,9],[-3,57],[0,8],[5,3],[10,-1],[20,-7],[42,-25],[1,-1],[14,-5],[16,1],[8,4],[4,6],[13,-5],[3,33],[-10,30],[-37,61]],[[74392,59239],[-40,-57],[-34,-50],[-24,-39],[-35,-81],[-33,-67],[-17,-33],[-11,-36],[-20,-50],[-42,-90],[-6,-68],[3,-42],[-30,-32],[-27,-30],[-34,-46],[-2,-43],[16,-33],[-3,-35],[-5,-32],[-7,-41],[-15,-38],[-22,-8],[-20,-42],[-10,-29],[-14,-35],[-14,-23],[-18,-29],[2,-41],[14,-38],[10,-26],[-10,-29],[-25,-29],[-20,-21],[-16,-20],[-29,-38],[-42,-69],[-25,-50],[-14,-41],[-8,-43],[10,-32],[-12,-38],[-18,-21],[-29,-37],[-10,-32],[-20,-18],[-26,-38],[0,-35],[-21,-26],[-28,-20],[-18,-26],[-21,-29],[-18,-30],[-26,-32],[-27,-14],[-14,-23],[8,-32],[0,-41],[-14,-47],[-16,-23],[-17,-41],[-6,-46],[-12,-38],[-20,-32],[-12,-26],[-53,-108],[-18,-23],[-17,-26],[-18,-18],[-28,-26],[-17,-41],[2,-46],[11,-44],[10,-29],[26,-44],[26,-26],[35,-11],[24,-6],[17,-18],[-13,-35],[-12,-32],[-18,-40],[-22,-29],[-21,-24],[-22,-29],[-43,-26],[-14,-35],[-16,-38],[-22,-35],[8,-40],[0,-32],[0,-41],[-2,-32],[-13,-29],[-2,-41],[11,-29],[16,-32],[16,-38],[-14,-23],[-27,-23],[-20,-30],[-10,-34],[-14,-30],[-14,-23],[-23,-32],[-14,-26],[-22,-26],[-25,-29],[-26,-32],[-18,-15],[-31,-26],[-28,-32],[-19,-32],[-16,-26],[-12,-29],[-14,-38],[4,-29],[20,-21],[23,-3],[20,3],[-18,-58],[-13,-23],[-18,-26],[-30,-38],[-17,-20],[-16,-30],[0,-43],[-18,-41],[-27,-26],[-20,-12],[-34,-20],[-25,-12],[-30,-23],[-29,-17],[-20,-21],[-6,-32],[8,-41],[14,-40],[4,-44],[-6,-38],[-14,-32],[-18,-38],[-21,-35],[-28,-34],[-30,-24],[-31,-20],[-26,-18],[-29,-8],[-26,0],[-24,-18],[-11,-35],[0,-32],[33,-23],[22,-14],[16,-35],[13,-29],[28,-18],[-8,-32],[-20,-23],[-24,-32],[-10,-49],[-3,-38],[-2,-30],[-11,-29],[-32,-31],[-32,-51],[-26,-78],[-5,-46],[-8,-29],[-26,-29],[-20,-32],[-17,-30],[-6,-40],[-22,-38],[-18,-32],[-10,-29],[-11,-38],[-16,-32],[-12,-26],[167,-331],[15,-28],[58,-121],[-15,-24],[-8,-37],[-12,-24],[-22,-43],[-21,-21],[-20,-26],[4,-38],[-2,-37],[-6,-41],[-6,-41],[2,-35],[10,-29],[18,-17],[19,-21],[-12,-23],[-17,-44],[-4,-9],[-8,-20],[1,-36],[10,-29],[4,-12],[5,-22],[27,-76],[6,-17],[124,-353],[40,-115],[87,-249],[133,-380],[154,-442],[41,-116],[52,-147],[61,-191],[-12,-23],[-14,-29],[-6,-29],[-12,-35],[-27,-29],[-16,-24],[-28,-35],[-27,-29],[-22,-20],[-16,-17],[-23,-41],[-16,-26],[-52,-78],[-61,-90],[-33,-49],[-211,-313],[-29,-14],[-34,-6],[-25,3],[-18,-18],[-30,-32],[-23,-17],[-34,-21],[-25,-14],[-12,-26],[2,-35],[-2,-41],[10,-26],[15,-32],[-7,-41],[7,-29],[16,-38],[6,-29],[-4,-32],[-16,-38],[-9,-29],[4,-29],[17,-17],[20,-29],[22,-12],[17,-18],[2,-29],[-8,-35],[-11,-37],[-4,-38],[-10,-41],[-4,-35],[-16,-29],[-22,-20],[-23,-21],[-19,-27],[-7,-31],[-25,-14],[-24,-17],[-14,-21],[-21,-29],[-24,-35],[-16,-18],[-20,-35],[-6,-32],[-11,-29],[-18,-29],[-22,-14],[-25,-21],[-22,-32],[-10,-38],[-18,-29],[2,-43],[-19,-32],[-16,-35],[-16,-21],[-14,-26],[-19,-23],[-87,-143],[-18,-34],[-18,-30],[-25,-37],[-16,-38],[2,-32],[-18,-29],[-21,-12],[-28,-20],[-22,-24],[-25,-26],[-20,-20],[-24,-23],[-21,-24],[-20,-23],[-24,-32],[-21,-29],[10,-29],[-14,-29],[-43,-66],[-51,-78],[-58,-89],[-12,-29],[-16,-26],[-14,-22]],[[71256,46895],[-68,66],[-97,94],[-187,181],[-206,200],[-285,275],[-28,28],[-14,14],[-353,342],[-102,98],[-53,52],[-267,259],[-3,2],[-23,23],[-24,24],[-1,1],[-44,42],[-99,95],[-38,35],[-87,81],[-17,16],[-37,34],[-273,251],[-15,13],[-23,21],[-96,89],[-52,48],[-147,136],[-225,208],[-24,23],[-49,46],[-20,19],[-139,130],[-304,287],[-70,66],[-86,81],[-32,30],[-19,18],[-5,4],[-93,88],[-107,101],[-216,219],[-51,51],[-298,303]],[[66879,51089],[-2,46],[-18,24],[-20,20],[-16,18],[-31,26],[-24,20],[-25,23],[-22,27]],[[66721,51293],[35,0],[24,5],[26,9],[27,18],[20,14],[120,47],[20,3],[22,2],[21,18],[26,23],[10,26],[15,29],[18,38],[14,38],[4,29],[10,38],[12,26],[16,27],[15,23],[20,26],[20,6],[21,23],[18,26],[18,32],[10,41],[2,38],[-8,35],[6,35],[7,40],[16,44],[8,38],[-10,43],[-2,38],[8,34],[22,33],[14,29],[17,23],[24,21],[21,17],[22,21],[60,29],[6,28],[-19,64],[4,49],[12,44],[0,40],[-18,42],[2,34],[27,47],[65,58],[36,33],[15,31],[23,35],[-3,44],[7,45],[13,30],[9,42],[2,45],[6,37],[-1,52],[8,29],[-10,33],[-22,32],[-23,6],[-32,1],[-30,54],[-34,38],[-4,38],[18,20],[19,15],[15,24],[29,58],[18,19],[19,-20],[28,-3],[42,4],[19,26],[8,35],[24,32],[23,40],[23,33],[-6,30],[11,33],[-13,34],[15,42],[25,49],[-16,80],[35,117],[-12,33],[-11,32],[2,40],[10,28],[18,57],[28,26],[17,33],[-1,30],[1,32],[-1,76],[-40,23],[-41,38],[-43,33],[-33,8],[-30,-14],[-29,-59],[-28,-26],[-27,-60],[-17,-22],[-35,-16],[-52,23],[-55,28],[-58,10],[-47,15],[-46,28],[-18,26],[-20,54],[-31,64],[-21,67],[-24,33],[-21,13],[-33,-1],[-39,1],[-51,17],[-39,13],[-24,2],[-39,7],[-23,21],[-18,14],[-168,38],[31,53],[28,47],[58,48],[13,35],[8,44],[-6,30],[-5,54],[-7,50],[28,29],[28,53],[-3,44],[0,60],[6,71],[21,41],[20,14],[31,36],[24,23],[51,28],[33,37],[30,34],[29,29],[28,23],[23,30],[21,28],[6,48],[-9,36],[-21,35],[-20,26],[-35,-2],[-14,39],[-1,29],[0,32],[12,24],[24,14],[21,3],[22,3],[24,9],[20,12],[23,17],[22,35],[16,35],[11,32],[0,37],[-13,29],[-28,50],[-22,17],[-21,21],[-12,32],[0,38],[-2,37],[-2,44],[-8,47],[-2,46],[4,41],[14,46],[27,30],[22,66],[10,38],[18,29],[17,24],[20,17],[24,15],[12,26],[-4,32],[2,38],[21,35],[16,26],[-2,35],[20,11],[27,24],[24,17],[26,12],[31,6],[24,23],[27,26],[22,41],[16,46],[4,44],[-4,32],[-10,29],[-22,41],[-4,29],[28,26],[20,26],[35,64],[14,26],[27,12],[32,12],[22,14],[29,26],[22,9],[32,10],[29,16],[16,26],[17,41],[24,24],[22,8],[43,3],[47,-14],[22,17],[-12,23],[-29,24],[-32,26],[-25,35],[-16,40],[-3,21],[-5,26],[-8,29],[-20,41],[-23,23],[-28,32],[-18,29],[-13,26],[-20,41],[-26,12],[-37,8],[-8,35],[-6,76],[-20,32],[-35,26],[-18,18],[-22,14],[-33,-8],[-22,-12],[-37,0],[-36,23],[-17,26],[-22,-5],[-8,-32],[-22,-30],[-17,-17],[-26,-23],[-31,-15],[-20,21],[-16,46],[-16,44],[-25,20],[-18,20],[-30,9],[-25,3],[-20,6],[-26,29],[-29,0],[-30,-3],[-31,-6],[-20,-6],[-27,-8],[-26,0],[-24,6],[-43,-3],[-16,-21],[6,-38],[-4,-29],[-33,-69],[-14,-24],[-20,-26],[-20,12],[-29,23],[-32,0],[-25,-6],[-32,12],[-23,3],[-20,-12],[-15,-24],[-9,-34],[-4,-44],[-13,-46],[-20,-24],[-20,-11],[-20,-29],[-23,-21],[-32,-20],[-39,3],[-20,23],[-20,18],[-15,23],[0,46],[-30,15],[-24,-15],[-19,-17],[-22,0],[-20,12],[-17,17],[-18,17],[-22,12],[-21,-12],[-22,-5],[-22,0],[-21,-12],[13,-54],[-2,-42],[-23,-15],[-26,0],[-22,3],[-27,6],[-22,6],[-27,-6],[-20,-9],[-18,-23],[-12,-29],[-19,-26],[-6,-44],[10,-26],[2,-32],[-14,-23],[-65,-29],[-20,-6],[-28,-3],[-23,-15],[-22,-20],[-20,-3],[-19,15],[-20,8],[-22,3],[-23,0],[-20,-14],[-28,-18],[-23,-14],[-16,-18],[-22,-5],[-25,-3],[-26,0],[-25,3],[-26,11],[-22,12],[-25,26],[-28,6],[-20,-9],[-21,9],[-22,11],[-26,-8],[-21,-18],[-16,-26],[-12,-26],[-14,-32],[-21,-18],[-22,18],[-18,23],[-23,21],[-20,23],[-16,26],[-22,29],[-25,12],[-24,6],[-23,2],[-26,-11],[-28,-6],[-23,3],[-18,-20],[2,-35],[-4,-29],[2,-62],[-10,-29],[-18,-14],[-25,-15],[-24,-14],[-25,0],[-20,8],[-19,8],[-3,1],[-25,0],[-26,-11],[-30,-15],[-27,-15],[-24,-5],[-22,3],[-27,0],[-24,-12],[-33,-20],[-24,2],[-20,-14],[-21,-32],[-14,-23],[-16,-18],[-20,-11],[-27,8],[-12,24],[-24,11],[-21,3],[-22,9],[-18,14],[-17,21],[-18,20],[-12,23],[-4,35],[-20,15],[-21,17],[-22,18],[-16,26],[-21,29],[-18,15],[-26,5],[-23,6],[-18,21],[-14,23],[-14,26],[-4,38],[-4,29],[-13,29]],[[64097,58318],[41,-2],[39,-8],[19,-11],[31,-15],[26,-13],[127,-60],[53,34],[3,3],[10,12],[16,67],[0,6],[-2,7],[-8,9],[1,6],[39,35],[99,73],[2,1],[27,11],[19,5],[1,1],[1,0],[31,2],[30,-9],[8,-3],[23,-6],[0,-16],[3,-3],[9,-3],[26,7],[15,9],[5,10],[1,2],[-5,5],[0,8],[13,25],[34,38],[65,56],[7,4],[32,14],[22,6],[7,-1],[19,-5],[42,7],[7,3],[4,3],[2,1],[7,5],[16,18],[29,31],[23,26],[1,1],[10,29],[8,16],[26,38],[12,18],[30,34],[3,0],[45,-3],[4,0],[14,16],[53,56],[8,13],[3,8],[-10,145],[0,2],[0,5],[0,5],[1,5],[0,5],[1,5],[1,5],[1,5],[2,5],[2,4],[0,1],[10,25],[2,4],[2,4],[2,4],[3,4],[2,3],[3,3],[3,3],[3,3],[3,2],[3,3],[4,1],[2,1],[21,10],[12,12],[31,58],[2,4],[3,4],[2,2],[23,31],[1,1],[3,3],[3,3],[3,3],[3,3],[3,2],[3,1],[3,2],[29,11],[1,1],[3,1],[4,1],[3,0],[56,5],[26,15],[17,17],[51,99],[2,4],[8,16],[7,13],[0,2],[3,4],[21,35],[3,4],[2,3],[3,4],[2,2],[63,66],[27,96],[5,18],[18,64],[145,183],[48,69],[73,104],[191,158],[138,45],[94,-8],[19,-25],[22,-27],[33,-42],[134,98],[55,46],[1,0],[4,8],[28,48],[8,13],[8,44],[6,40],[-2,44],[8,12],[2,0],[13,-1],[64,-20],[19,2],[13,7],[12,8],[7,11],[13,18],[3,11],[0,19],[0,1],[-1,1],[-37,69],[1,6],[15,58],[12,47],[75,7],[8,2],[4,9],[8,13],[10,24],[12,23],[26,36],[11,11],[25,18],[18,6],[28,8],[124,-3],[84,11],[2,0],[4,1],[3,1],[3,1],[47,22],[1,0],[3,2],[3,2],[3,2],[64,51],[12,8],[12,4],[22,1],[19,-3],[17,-12],[68,-51],[0,-1],[81,-60],[1,-1],[4,-2],[3,-1],[3,-2],[4,-1],[3,-1],[4,0],[3,-1],[30,0],[1,0],[4,0],[2,0],[29,4],[45,-2],[26,-6],[23,-13],[2,-1],[4,-1],[2,-1],[27,-9],[2,0],[3,-1],[4,-1],[3,0],[27,0],[4,0],[4,1],[3,1],[4,1],[3,1],[19,10],[1,0],[3,2],[3,2],[4,2],[3,3],[3,3],[2,3],[3,4],[1,1],[5,8],[1,2],[2,4],[3,4],[1,4],[2,5],[2,4],[1,5],[1,5],[0,2],[3,15],[0,3],[1,5],[0,5],[0,9],[-1,37],[0,1],[0,5],[-1,3],[-1,13],[0,1],[0,1],[6,10],[83,108],[1,2],[3,4],[1,2],[10,17],[1,2],[2,4],[2,5],[1,1],[4,12],[1,3],[2,5],[1,4],[1,5],[1,5],[0,5],[0,4],[2,18],[0,2],[3,70],[5,102],[18,78],[1,5],[1,5],[0,5],[1,5],[0,5],[0,51],[4,5],[66,56],[40,34],[34,85],[22,7],[20,7]],[[57542,59032],[-10,-35],[9,-30],[10,-34],[10,-38],[-2,-35],[-2,-29],[-18,-18],[-17,-20],[-16,-20],[-24,-15],[-23,-17],[-22,-15],[-24,-20],[-13,-27],[5,-29],[16,-17],[14,-38],[-2,-32],[6,-29],[12,-26],[8,-32],[-6,-29],[-2,-29],[-14,-24],[-20,-26],[-12,-26],[-19,-26],[-10,-32],[-4,-35],[-8,-32],[-10,-29],[-14,-38],[-9,-29],[-14,-23],[-18,-18],[-24,-17],[-67,-44],[-8,-21],[-5,-14],[13,-29],[22,-26],[18,-18],[16,-20],[17,-20],[2,-29],[4,-35],[2,-32],[-4,-38],[-12,-26],[-7,-29],[-6,-30],[-14,-26],[-16,-20],[-18,-23],[-23,-27],[-20,-29],[-12,-35],[2,-29],[18,-32],[14,-26],[0,-38],[0,-32],[0,-35],[-6,-29],[4,-29],[-2,-35],[-12,-29],[0,-35],[-4,-35],[-2,-29],[0,-32],[6,-35],[-2,-32],[-16,-20],[-14,-26],[-19,-15],[-36,-46],[-8,-32],[-10,-29],[-7,-35],[4,-32],[3,-29],[-7,-32],[-14,-30],[-8,-32],[4,-29],[12,-23],[2,-35],[11,-32],[-9,-29],[-16,-26],[-12,-29],[-6,-35],[-2,-41],[-8,-32],[-6,-32],[4,-29],[-4,-38],[-17,-29],[-18,-23],[-8,-29],[12,-26],[4,-30],[8,-32],[19,-17],[22,0],[20,-6],[21,0],[22,-9],[41,-11],[14,-23],[2,-32],[-16,-27],[10,-26],[18,-20],[-18,-15],[-21,-11],[-14,-32],[14,-24],[23,-3],[24,-14],[8,-29],[21,-9],[18,-14],[10,-27]],[[57230,55694],[-16,-20],[-6,-32],[-2,-38],[18,-35],[20,-23],[-8,-32],[14,-20],[-2,-32],[2,-30],[-20,-26],[-18,-17],[-19,-21],[-4,-29],[-14,-26],[-18,-26],[-20,-20],[-41,-3],[-24,-12],[-25,-23],[-8,-38],[-14,-35],[-20,-32],[-23,-20],[-22,-12],[-29,-9],[-16,21],[-22,-6],[-26,-9],[-33,-17],[-35,0],[-26,11],[-20,6],[-21,-3],[-10,-35],[-16,-17],[-20,-23],[-19,-30],[-12,-26],[-10,-26],[-18,-32],[8,-29],[4,-35],[-4,-41],[-18,-40],[-14,-35],[-11,-38],[-42,-93],[-10,-41],[-21,-6],[-16,-26],[-20,-41],[-21,-23],[2,-35],[17,-38],[26,-35],[-10,-43],[-20,-18],[-11,-26],[-36,-29],[-18,-29],[-10,-26],[0,-35],[6,-41],[0,-46],[2,-32],[-19,-30],[-8,-37],[-8,-38],[-16,-18],[-22,-43],[-9,-44],[0,-49],[0,-38],[-20,-53],[-2,-46],[8,-44],[-8,-43],[-14,-41],[-10,-35],[-6,-41],[-13,-23],[-6,-38],[2,-32],[-18,-29],[-14,-26],[-12,-24],[-12,-32],[-11,-34],[-14,-24],[-6,-32],[-8,-35],[-4,-29],[-10,-38],[-10,-29],[0,-35],[-4,-29],[-5,-35],[-16,-23],[-14,-23],[-8,-35],[-10,-29],[-4,-32],[-6,-35],[-9,-32],[-16,-20],[-12,-29],[-14,-24],[-2,-29],[2,-32],[-8,-35],[-25,-29],[-6,-41],[-16,-32],[1,-32],[-9,-32],[-2,-29],[8,-38],[-2,-43],[2,-29],[0,-32],[-10,-29],[-18,-18],[-13,-29],[-4,-35],[-14,-35],[-14,-32],[-16,-35],[-9,-29],[-2,-38],[9,-40],[2,-32],[0,-38],[-11,-44],[-18,-23],[-20,-20],[-18,-32],[-4,-30],[0,-32],[-14,-39],[-1,-16],[-2,0],[-9,-2],[-44,-9],[-629,-131],[-48,-10],[-455,-95],[-44,-9],[-172,-36],[-38,-8],[-42,-8],[-6,-1],[-27,-6],[-137,-27],[-50,-11],[-57,-11],[-23,-5],[-37,-7],[-75,-16],[-5,-1],[-11,-2],[-21,-4],[-30,-6],[-16,-4],[-129,-26],[-590,-111],[-98,-19],[-24,-4],[-104,-20],[-288,-54],[-230,-44],[-125,-23],[-26,-5],[-169,-32],[-79,-14]],[[51950,50790],[1,35],[33,30],[23,32],[24,21],[24,-1],[56,-2],[12,-7],[13,-11],[15,-4],[12,2],[9,4],[15,10],[11,43],[12,32],[4,6],[19,18],[2,1],[57,29],[28,17],[3,2],[25,21],[17,20],[20,43],[5,14],[0,29],[-3,13],[-6,14],[-6,6],[-33,12],[-16,4],[-64,4],[-19,6],[-30,24],[-12,14],[-9,18],[-4,13],[0,27],[6,34],[8,35],[8,6],[7,0],[1,-2],[20,-19],[20,-22],[20,-13],[8,-2],[11,2],[62,43],[0,1],[16,20],[11,21],[22,57],[3,13],[10,80],[0,2],[0,2],[1,6],[70,49],[94,-49],[8,-4],[8,7],[4,10],[7,65],[-1,60],[-3,30],[-7,45],[-7,23],[-3,3],[-8,23],[2,23],[30,92],[14,62],[3,37],[0,27],[-3,12],[-1,2],[-4,22],[0,14],[10,17],[16,7],[1,0],[33,10],[15,9],[13,13],[2,2],[5,15],[-1,16],[-10,16],[-7,6],[-26,12],[-15,24],[-17,32],[0,9],[-6,13],[-19,12],[-12,6],[-25,2],[-5,2],[-8,12],[-5,19],[3,63],[9,25],[10,8],[3,2],[46,21],[137,94],[6,19],[1,2],[-1,26],[-2,17],[-13,18],[-13,11],[-35,22],[-13,7],[-97,54],[-7,4],[-5,14],[-24,45],[-20,36],[-25,39],[-21,23],[-22,22],[16,35],[11,16],[35,30],[17,23],[11,18],[11,26],[9,34],[2,58],[-4,40],[-5,46],[-2,18],[-3,25],[-8,25],[-13,29],[-12,13],[-3,0],[-10,0],[-9,-9],[-7,-11],[-10,-25],[-14,-22],[-2,-3],[-4,-6],[-25,-10],[-34,0],[-24,14],[-74,86],[-20,10],[-27,-1],[-190,-1],[-229,-1],[-276,-1],[-47,-1],[-31,0],[-119,0],[-247,-4],[-43,1],[-17,2],[-10,1],[-99,167],[-24,41],[-31,53],[-155,262],[-18,36],[-3,6],[-21,60],[-33,92],[-11,28],[-19,55],[-16,46],[-38,108],[-9,28],[-69,100],[-52,72],[-205,292],[-242,112],[-31,17],[-8,4],[-248,129],[-117,57],[-194,-13],[-20,-2],[-25,55],[-31,61],[-58,90],[-5,38],[-21,19],[-19,28],[-20,13],[-42,9],[-35,44],[-9,29],[-56,38],[-24,5]],[[66721,51293],[-26,2],[-23,21],[-20,20],[-22,15],[-25,8],[-22,9],[-37,3],[-22,-3],[-24,-3],[-29,-6],[-20,-5],[-20,-6],[-35,-6],[-22,-1],[-37,-11],[-22,6],[-33,-6],[-22,21],[-18,23],[-31,23],[-28,15],[-35,14],[-32,15],[-29,12],[-20,5],[-49,9],[-36,9],[-27,9],[-32,14],[-22,18],[-33,0],[-20,7],[-5,-3],[-18,-5],[-22,1],[-62,29],[-67,11],[-30,-4],[-37,-9],[-56,1],[-6,3],[-72,-40],[-16,-6],[-15,-4],[-23,4],[-19,15],[-8,5],[-65,22],[-5,2],[-62,16],[-42,12],[0,5],[-25,29],[-20,22],[-13,4],[-37,0],[-16,0],[-19,0],[-33,-1],[-69,-14],[-67,-16],[-6,-2],[-12,-6],[-25,-19],[-3,-2],[-13,-6],[-7,-1],[-90,17],[-31,18],[-31,9],[-2,0],[-3,-4],[-6,-7],[-1,-3],[-13,-3],[-97,-6],[-18,2],[-12,6],[-24,27],[-28,-3],[-46,5],[-13,8],[-11,13],[-11,24],[-5,4],[-34,9],[-85,-35],[-10,-7],[0,-1],[-4,-2],[-3,-2],[-3,-1],[-4,-1],[-80,-22],[-74,11],[-118,17],[-27,10],[-14,5],[-10,5],[-58,-17],[-15,-4],[-11,-13],[-20,-25],[-107,-136],[-2,-2],[-6,5],[-3,2],[-60,52],[-11,16],[4,20],[13,28],[4,1],[1,2],[-21,14],[-540,172],[-33,11],[-55,18],[-20,7],[-2,0],[-32,11],[-31,10],[-362,118],[-95,31],[-2,1],[-142,47],[-235,75],[-294,95],[-204,65],[-112,35],[-94,29],[-103,35],[-356,114],[-4,2],[-592,190],[-31,10],[-145,47],[-126,40],[-115,37],[-383,123],[-116,38],[-3,1],[-328,105],[-148,48],[-191,61],[-173,53],[-556,181],[2,32],[4,32],[29,0],[26,6],[18,23],[8,41],[21,18],[2,29],[-4,29],[20,20],[26,15],[25,20],[-27,35],[6,44],[9,29],[-23,32],[12,29],[-6,32],[-12,23],[-4,47],[18,17],[27,21],[4,46],[-2,55],[16,32],[26,12],[17,29],[-15,29],[-16,18],[-18,20],[-1,32],[5,44],[-2,32],[-2,37],[22,27],[16,23],[-18,20],[0,35],[10,26],[-10,38],[-16,26],[-18,21],[-2,38],[-21,23],[-14,32],[-16,26],[-20,12],[16,40],[0,35],[-25,32],[-22,12],[-22,38],[-12,26],[-19,15],[-17,25],[-16,31],[-3,2],[-29,26],[-30,35],[2,30],[16,31],[4,38],[-20,34],[-22,15],[-25,21],[-30,26],[-23,26],[-12,23],[-20,32],[-14,32],[-23,35],[-14,26],[-6,38],[-14,23],[-25,6],[-20,6],[-30,23],[-37,3],[-24,-6],[-23,32],[-32,15],[-20,9],[-21,5],[-20,9],[-20,15],[-29,0],[-20,6],[-22,35],[-17,20],[-14,35],[-10,26],[-20,32],[-21,20],[-20,9],[-28,-14],[-12,-32],[-15,-24],[-22,-3]],[[83965,54901],[-43,-83],[-9,-17],[-55,-34],[-43,-50],[-16,-102],[-36,-78],[-70,-78],[-56,-109],[-98,-62],[-77,-62],[-44,-74],[-104,-66],[-79,-116],[-110,-121],[-96,-129],[-332,-439],[-27,-28],[109,-145],[66,-20],[120,-144],[141,-96],[-121,-117],[-108,-147],[-134,-162],[-246,-375],[-112,-224],[-148,-318],[-140,-109],[-31,-104],[-173,171],[-20,165],[-64,-9],[-90,-23],[-34,220],[-149,-24],[-83,-106],[-41,-158],[-92,-171],[-166,38],[-90,-179],[-163,-425],[-219,-359],[-216,-283],[-158,-16],[-148,-208],[-60,-85],[-123,10],[-164,-186],[-92,-127],[-56,52],[-12,163],[53,598],[10,100],[-125,-132],[-263,-101],[-21,-15],[-72,-51],[-191,-272],[3,-127],[-87,-119],[-32,-102],[-113,-129],[-295,-192],[-197,-170],[-141,-300],[-137,-223],[-649,-1581],[-316,-562],[-237,-477],[-210,-471],[-564,565],[-1626,1629],[-337,338],[-123,-112],[18,-165],[-58,-98],[-56,-170],[-42,-220],[-124,-105],[-119,-38],[-27,-99],[0,-107],[-77,-56],[-12,-186],[25,-140],[-86,-189],[-144,-26],[-248,26],[-110,-116],[-75,-148],[49,-96],[33,-73],[4,-82],[-86,-101],[-34,-262]],[[72814,45395],[-45,39],[-241,232],[-208,202],[-57,55],[-167,162],[-321,309],[-1,1],[-43,42],[-3,2],[-154,148],[-124,120],[-102,99],[-55,53],[-37,36]],[[30075,53215],[-48,-58],[-45,-43],[-146,-188],[-144,-185],[-200,-257],[-85,-108],[-38,-49],[-80,-102],[-132,-163],[-138,-170],[-332,-410],[-8,-10],[-178,-212],[-113,-136],[-66,-79],[-21,-27],[-143,-169],[-14,-17],[-24,-27],[-43,-51],[-71,-85],[-46,-53],[-112,-133],[-10,-10],[53,-74],[9,-49],[4,-103],[24,-25],[14,-9],[15,-17],[3,-8],[2,-6],[-3,-9],[-3,-13],[0,-1],[-9,-7],[-43,-24],[-51,-6],[-90,5],[-12,-3],[-1,0],[-1,-1],[-7,-3],[-3,-2],[-4,-5],[1,-17],[10,-21],[20,-35],[31,-50],[9,-19],[2,-20],[-1,-5],[-3,-13],[-11,-11],[-3,-3],[-1,-1],[-30,-24],[-17,-19],[-15,-26]],[[27727,49849],[-30,-9],[-412,-131],[-179,-57],[-304,-154],[-321,-164],[-54,-28],[-36,-18],[-55,28],[-14,8],[-6,3],[-505,264],[-48,20],[-27,13],[-421,214],[-231,112],[-21,10],[-20,10],[-94,46],[-3,2],[-406,367],[-266,241],[-15,-40],[-24,-12],[-25,-2],[-30,14],[-32,-2],[-17,-36],[-2,-38],[-19,-39],[14,-29],[-4,-30],[-19,-39],[-27,-11],[-34,-7],[-21,-20],[-30,-9],[-21,16],[-24,16],[-21,-14],[-17,-27],[-10,-48],[-10,-56],[-40,2],[-22,-3],[-30,-16],[-21,4],[-32,30],[-25,-7],[-18,-40],[-12,-27],[-21,1],[-21,-7],[-16,-20],[-26,-15],[-30,21],[-46,11],[-21,22],[-36,16],[-21,-22],[-16,-26],[-23,-17],[-19,23],[-19,11],[-23,1],[-20,-21],[-30,3],[-27,-39],[3,-33],[-1,-44],[-9,-30],[-39,-36],[-33,-23],[-25,-2]],[[23167,49930],[-23,21],[-28,14],[-22,21],[-39,-5],[-24,2],[-45,-20],[-27,-2],[-2,53],[16,23],[-1,38],[-14,21],[-27,44],[-25,12],[-39,-13],[-47,-2],[-12,29],[16,49],[32,22],[30,62],[0,33],[-40,4],[-29,43],[4,63],[-33,48],[-34,-2],[-51,33],[-3,29],[-10,47],[-19,33],[-35,18],[-30,-13],[-32,27],[-38,88],[-22,9],[-29,-30],[-22,-22],[-29,8],[-15,38],[-8,39],[-10,35],[-30,77],[8,40],[-48,28],[-17,38],[-10,25],[-48,37],[-9,28],[-26,32],[-17,25],[4,40],[10,57],[-13,59],[12,67],[20,12],[31,36],[28,36],[28,24],[23,6],[62,46],[33,38],[28,-6],[22,5],[30,24],[12,26],[50,12],[22,17],[7,49],[-5,55],[9,35],[-28,30],[-10,26],[-27,23],[-23,9],[5,31],[14,24],[-6,29],[-18,19],[-35,10],[-22,28],[-3,54],[11,79],[48,58],[7,29],[-7,33],[-21,14],[-10,26],[38,34],[6,32],[11,37],[14,39],[2,35],[-128,78],[-38,22],[-272,162],[-74,44],[-51,30],[-171,101],[-35,21],[-33,19],[-26,16],[-1,0],[-49,30],[-117,69]],[[47585,55348],[-108,-1250],[0,-4],[-74,-395],[-6,-35],[-32,-170],[-61,-326],[-29,-160],[-19,-81],[-38,-217],[-4,-5],[-16,-25],[-241,-352],[-70,-103],[59,-215],[122,-438],[115,-134],[4,-105],[2,-43],[0,-31],[0,-37],[5,-34],[20,-34],[18,-32],[-18,-27],[-23,-34],[-15,-19],[-28,-18],[-23,-8],[-38,-2],[-66,-15],[-32,7],[-43,-52],[-21,-42],[-13,-44],[-11,-32],[-10,-42],[-23,-19],[-21,-27],[-29,-30],[-32,-17],[-21,-27],[-21,-17],[-21,-2],[-40,-11],[-24,-9],[-27,-24],[-23,-54],[26,-10],[21,-6],[22,5],[48,-9],[20,-6],[36,-19],[24,-46],[0,-30],[-12,-24],[-12,-58],[-9,-47],[-28,-24],[-13,-30],[-22,-15],[-17,-22],[-4,-36],[0,-38],[-19,-12],[-39,-15],[-23,-23],[-4,-42],[-19,-14],[-10,-29],[13,-27],[15,-45],[6,-44],[-10,-30],[-24,-15],[-34,-19],[-36,-8],[-28,-28],[-14,-32],[3,-37],[9,-35],[-12,-37],[-79,-28],[-62,-31],[15,-48],[22,-31],[-3,-35],[-1,-31],[-11,-26],[-15,-42],[-14,-24],[-22,-2],[-22,-19],[-14,-27],[-20,-28],[-26,-21],[-2,-34],[-8,-39],[18,-22],[5,-33],[-2,-32],[5,-38],[-16,-33],[-26,3],[-21,11],[-21,6],[-27,8],[-22,5],[-29,-7],[-35,1],[-32,5],[-31,-4],[-24,-22],[-42,-30],[-21,-18],[-3,-39],[26,-43],[23,-26],[-20,-32],[-15,-33],[-26,-30],[-14,-46],[-9,-44],[-21,-9],[-13,-86],[-38,-261],[-2,-12],[-4,-27],[-8,-54],[-45,-304],[-16,-107],[-26,-180],[-19,-123],[-2,-18],[-4,-21],[-52,-350],[-31,-213],[-5,-32],[-70,-476],[-22,-150],[-53,-363],[-7,-42],[-32,-218],[-9,-68],[2,-7],[92,-323],[55,-193],[71,-254],[10,-37],[66,-231],[42,-143]],[[45701,44389],[-23,-22],[-27,-2],[-11,28],[-20,54],[-22,10],[-41,6],[-24,0],[-34,-16],[-22,-38],[-27,-30],[-3,-33],[18,-43],[-8,-32],[-32,-15],[-18,14],[-15,30],[-21,6],[-20,-3],[-32,-25],[-23,10],[-14,33],[28,18],[0,49],[-2,16],[-2,10],[-4,3],[-8,5],[-5,1],[-43,12],[-23,6],[-45,-3],[-41,-13],[-42,-14],[-7,-5],[-8,-5],[-11,-3],[-11,7],[-14,16],[-10,16],[-15,43],[-1,5],[-3,-1],[-23,-1],[-7,-1],[-98,-31],[-11,-6],[-30,-34],[-11,-26],[-3,-29],[-2,-18],[-6,-5],[-21,14],[-12,12],[-13,21],[-16,13],[-15,13],[-7,3],[-5,-1],[-8,-1],[-13,-7],[-5,-3],[-22,-17],[-1,-1],[0,-2],[-19,-11],[-12,-3],[-11,0],[-14,7],[-12,18],[-8,18],[-14,58],[-3,40],[-2,30],[-5,5],[-5,7],[-13,4],[-15,3],[-34,-12],[-28,21],[1,35],[17,44],[-6,27],[-30,31],[-22,-7],[-23,7],[-35,39]],[[44393,44738],[48,116],[2,4],[48,114],[27,54],[6,28],[0,33],[-19,19],[9,32],[-3,34],[-12,36],[12,25],[5,31],[-18,32],[-14,41],[-7,34],[14,27],[20,22],[18,20],[20,32],[13,28],[-11,45],[-10,38],[12,32],[27,15],[23,14],[21,6],[33,7],[34,15],[0,35],[-13,36],[-12,44],[-23,36],[-23,28],[-26,-19],[-27,-22],[-22,-11],[-27,12],[-59,-15],[-24,-13],[-22,-2],[-30,12],[-19,34],[-3,30],[-11,38],[-29,24],[-20,32],[-7,42],[-23,26],[-8,37],[14,42],[26,17],[28,6],[23,14],[15,36],[-16,50],[-2,38],[-21,14],[-17,20],[-13,28],[-13,29],[-12,36],[-31,10],[-22,5],[-35,16],[-21,14],[-33,-3],[-34,-20],[-19,-17],[-21,-31],[-16,-21],[-20,17],[-29,31],[-34,18],[-21,6],[-29,7],[-26,23],[-15,20],[-2,3],[-47,51],[4,29],[25,44],[9,32],[-3,31],[6,39],[-16,32],[-2,33],[9,34],[20,18],[23,31],[18,32],[19,38],[14,22],[-10,27],[-15,28],[-1,50],[26,28],[26,22],[24,27],[11,39],[4,33],[-2,45],[6,38],[24,44],[16,36],[3,38],[-1,43],[6,31],[-18,22],[-41,-1],[-20,-9],[-38,-7],[-24,22],[-18,40],[-25,22],[-16,18],[-16,20],[-8,27],[-31,44],[-27,26],[-8,38],[-14,31],[-20,29],[-18,36],[-29,5],[-23,-1],[-26,0],[-26,2],[-27,5],[-60,-7],[-18,-16],[-13,34],[-9,27],[-28,30],[-13,22],[-22,31],[-7,51],[-2,30],[-18,23],[-20,25],[-29,22],[-25,18],[-54,17],[-28,16],[-137,103],[-4,-1],[-3,-1],[-1,0],[-10,0],[-1,0],[-2,0],[-3,0],[-4,0],[-1,0],[-15,4],[-3,0],[-2,1],[-39,15],[-1,0],[-3,1],[-1,1],[-10,5],[-11,-4],[-16,-12],[-10,-11],[-8,-28],[0,-1],[-2,-4],[-1,-3],[-22,-59],[-1,-2],[-2,-4],[-1,-3],[-9,-17],[-1,-1],[-2,-4],[-2,-4],[-1,0],[-28,-32],[-2,-2],[-3,-3],[-3,-3],[-4,-2],[-2,-1],[-13,-7],[-2,-1],[-3,-1],[-4,-1],[-3,-1],[-4,-1],[-3,0],[-4,0],[-1,0],[-24,3],[-10,-3],[-16,-5],[-41,-32],[-2,-1],[-3,-2],[-3,-2],[-4,-1],[-1,-1],[-14,-5],[-2,0],[-1,-1],[-28,-7],[-2,0],[-4,-1],[-22,-2],[-7,0],[-2,0],[-36,6],[-2,0],[-3,1],[-4,1],[-3,1],[-11,6],[-1,0],[-3,2],[-3,2],[-3,2],[-3,3],[-3,2],[-10,11],[0,1],[-3,3],[-3,3],[-11,16],[-2,3],[-97,153],[-1,1],[-2,4],[-2,4],[-1,3],[-46,109],[-1,2],[-2,4],[-1,5],[-8,29],[-1,0],[-12,10],[-11,4],[-10,1],[-23,-6],[-33,-20],[-1,-1],[-3,-2],[-3,-1],[-1,-1],[-98,-36],[-13,-5],[-147,-78],[-5,-4],[-50,-51],[-1,-1],[-3,-3],[-3,-2],[-2,-1],[-40,-27],[-2,-1],[-4,-2],[-3,-1],[-3,-2],[-2,0],[-32,-8],[-2,-1],[-4,0],[-4,0],[-3,0],[-4,0],[-3,1],[-3,1],[-32,12],[-1,0],[-4,1],[-3,2],[-3,2],[-3,3],[-3,2],[-46,43],[-1,1],[-3,3],[-3,3],[-2,3],[-3,4],[-15,25],[-2,4],[-2,4],[-2,5],[-2,4],[-1,5],[-1,5],[-1,5],[-1,5],[-6,129],[-16,53],[-20,45],[-30,23],[-15,20],[0,7],[2,37],[9,41],[19,26],[20,9],[-18,57],[-13,39],[2,53],[14,42],[9,53],[-8,38],[-28,31],[-48,41],[-20,14],[-12,26],[-18,33],[-31,66],[15,65],[27,56],[-178,244]],[[41378,49536],[-12,17],[-336,449],[-38,55],[-218,294],[-1,1],[-392,528],[-39,51],[-157,213],[-6,8],[-14,19],[-69,93],[-245,326],[-241,324],[-134,178],[-140,188],[-32,47],[-75,101],[-87,118],[-18,24],[-4,33],[-2,22],[-39,350],[-41,381],[-13,112],[-3,36],[-1,2],[-5,30],[-3,31],[-5,33],[-6,49],[-6,92],[-22,170],[-31,275],[-44,389],[-20,180],[2,102],[9,251]],[[66879,51089],[-14,-32],[-79,-84],[-11,-31],[-3,-34],[2,-33],[4,-36],[-6,-29],[-16,-47],[-13,-47],[-6,-49],[-18,-32],[-12,-26],[-4,-32],[-16,-38],[-31,-15],[-24,-23],[8,-38],[-16,-46],[-23,-38],[-14,-23],[-35,-15],[-16,-23],[0,-41],[-8,-32],[-10,-41],[-6,-49],[-12,-26],[-31,-6],[-20,-6],[-20,-14],[-29,-15],[-12,-38],[-14,-23],[-27,-6],[-26,9],[-30,9],[-35,8],[-22,12],[-39,14],[-22,3],[-33,6],[-20,0],[-37,9],[-20,3],[-40,-6],[-33,-6],[-47,-11],[-22,0],[-24,2],[-31,9],[-36,3],[-27,3],[-36,-3],[-23,-3],[-36,-3],[-21,0],[-40,3],[-20,3],[-39,-6],[-26,3],[-35,15],[-16,17],[-33,41],[-26,26],[-35,38],[-26,23],[-22,21],[-35,5],[-22,0],[-31,3],[-109,38],[-21,15],[-24,-3],[-37,-6],[-22,6],[-22,11],[-35,24],[-30,8],[-20,-17],[-25,-20],[-20,-9],[-43,-15],[-36,-3],[-21,0],[-32,0],[-20,-3],[-29,-11],[-16,-35],[-2,-41],[-6,-52],[-2,-41],[8,-35],[-2,-41],[8,-34],[8,-50],[12,-41],[23,-37],[30,-32],[18,-18],[25,-41],[10,-55],[-6,-30],[10,-40],[24,-32],[29,-26],[24,-55],[-16,-26],[-27,-24],[0,-43],[15,-29],[14,-24],[18,-14],[22,-12],[-26,-9],[-39,-5],[-30,-3],[-26,-3],[-21,-3],[-28,-15],[-31,-14],[-34,-12],[-26,-6],[-23,-8],[-20,-24],[-20,-32],[-23,-14],[-22,-18],[-27,-14],[-28,-12],[-32,-3],[-22,0],[-21,0],[-33,6],[-26,0],[-57,-18],[-12,-23],[-12,-26],[-20,-12],[-29,3],[-28,-14],[-15,-32],[-22,-15],[-18,-32],[-27,3],[-32,9],[-26,11],[-31,24],[-22,11],[-25,0],[-20,6],[-24,12],[-23,17],[-18,29],[-18,24],[-22,11],[-21,0],[-22,0],[-29,6],[-28,12],[-33,17],[-24,6],[-24,9],[-41,9],[-20,2],[-43,3],[-20,0],[-20,-6],[-35,-11],[-20,-6],[-33,-12],[-20,-5],[-28,-18],[-7,-38],[3,-43],[2,-32],[2,-38],[8,-38],[10,-32],[20,-35],[22,-41],[29,-46],[20,-18],[23,-11],[22,-29],[14,-29],[14,-24],[8,-29],[-4,-29],[-8,-41],[-8,-35],[-8,-32],[-12,-40],[-12,-27],[0,-34],[-21,-18],[-20,-29],[-8,-29],[-12,-35],[-14,-23],[-17,-24],[-20,-20],[-18,-17],[-15,-24],[-12,-23],[-24,-26],[-16,-18],[-12,-26],[-19,-20],[-28,-18],[-18,-23],[-23,-29],[-26,-14],[-21,-12],[-16,-18],[-10,-34],[-6,-38],[-2,-35],[-18,-21],[-12,-23],[-15,-23],[-22,-15],[-22,-17],[-21,-18],[-22,-14],[-16,-23],[-8,-32],[4,-30],[20,-26],[22,-26],[27,-23],[28,-23],[29,-15],[26,-20],[18,-21],[25,-26],[20,-26],[18,-20],[27,-21],[24,-23],[24,-26],[2,-44],[-20,-32],[-28,-35],[-19,-29],[-20,-35],[-10,-26],[-20,-23],[2,-31],[-8,-41],[-5,-33],[15,-26],[16,-29],[16,-29],[4,-30],[0,-32],[25,-14],[28,-20],[24,-25],[23,-18],[20,-16],[20,-11],[19,-18],[26,-17],[20,-18],[23,-14],[6,-29],[22,-32],[20,-12],[13,-23],[14,-24],[20,-17],[20,-17],[17,-21],[18,-23],[16,-20],[8,-30],[10,-37],[4,-32],[3,-30],[3,-30],[11,-39],[-5,-32],[-16,-26],[-18,-27],[-10,-40],[-22,-35],[2,-35],[7,-31],[9,-33],[-4,-35],[-10,-41],[-12,-29],[-7,-29],[-24,0],[-22,0],[-21,-3],[-20,-13],[-24,-16],[4,-41],[-10,-35],[-13,-23],[-18,-29],[-14,-32],[-22,-32],[-15,-26],[-26,-38],[-22,-29],[-17,-35],[-10,-35],[-16,-32],[-16,-26],[-14,-23],[-13,-30],[-12,-29],[0,-35],[-2,-36],[-16,-45],[-24,-26],[-13,-32],[2,-35],[-6,-32],[-61,-119],[-10,-35],[-14,-35],[-16,-21],[-27,-14],[-38,6],[-39,5],[-30,0],[-27,-8],[-4,-47],[-2,-46],[-10,-32],[-6,-29],[-10,-35],[-4,-38],[-8,-35],[-14,-23],[-19,-27],[-30,-23],[-20,-9],[-19,-17],[-20,-26],[-20,-9],[-35,0],[-24,-8],[-19,-21],[-18,-23],[-10,-41],[2,-44],[-12,-26],[-39,-46],[-16,-27],[-10,-43],[2,-35],[0,-35],[2,-32],[4,-32],[2,-32],[-19,-20],[-19,-12],[-19,-20],[-18,-29],[-16,-30],[-19,-17],[-26,-3],[-24,17],[-23,9],[-28,-14],[-10,-27],[-16,-19],[-11,-39],[-16,-29],[-4,-36],[-18,-48],[-20,-15],[-5,-38],[-12,-37],[-4,-30],[-14,-32],[-26,-17],[-25,-15],[-22,-14],[-22,-26],[-11,-35],[-12,-26],[-28,-24],[-31,-23],[-18,-20],[-12,-41],[-2,-32],[2,-38],[-6,-29],[-31,-20],[-22,-3],[-33,-9],[-22,-17],[-20,-15],[-35,-3],[-28,3],[-14,-29],[8,-44],[14,-26],[-4,-41],[-16,-32],[-29,-8],[-20,-21],[-20,-23],[-4,-38],[16,-20],[24,-9],[19,-20],[8,-32],[-11,-32],[-6,-38],[6,-35],[13,-26],[16,-21],[14,-32],[18,-29],[6,-29],[15,-32],[16,-29],[-10,-26],[-16,-26],[-21,-26],[-24,5],[-24,0],[-25,6],[-22,12],[-27,3],[-30,6],[-22,11],[-29,9],[-26,15],[-21,17],[-26,17],[-22,-2],[-23,2],[-16,18],[-20,11],[-20,12],[-29,-3],[-22,-11],[-23,-17],[-22,11],[-20,17],[-27,18],[-20,14],[-20,-3],[-20,-24],[-15,-22],[-12,-29],[-14,-53]],[[61257,42555],[-12,-40],[-10,-29],[-21,-27],[-18,-17],[-26,-12],[-25,9],[-22,12],[-27,11],[-24,12],[-4,29],[18,41],[0,32],[2,32],[11,26],[14,23],[20,29],[16,21],[23,26],[22,26],[20,32],[19,26],[6,53],[18,32],[12,26],[-8,35],[-18,29],[-21,11],[-26,15],[-22,14],[-29,18],[-24,17],[-27,3],[-32,-3],[-26,0],[-27,-8],[-24,-6],[-18,-15],[-23,-14],[-22,8],[-22,15],[-19,17],[-22,24],[-24,11],[-29,3],[-28,9],[-19,17],[-18,18],[-22,17],[-44,69],[-23,19],[-18,23],[-21,12],[-20,5],[-20,15],[-25,0],[-30,-26],[-21,-21],[-10,-37],[-16,-18],[-24,-9],[-35,-8],[-26,-9],[-27,-12],[-18,-17],[-16,-18],[-22,-14],[-25,-15],[-36,-11],[-23,-6],[-18,-29],[-8,-47],[2,-32],[24,-41],[4,-32],[-10,-34],[-14,-30],[-16,-32],[0,-34],[2,-41],[0,-44],[2,-32],[4,-38],[10,-26],[-4,-29],[-26,-3],[-25,0],[-32,0],[-33,3],[-26,0],[-35,9],[-28,6],[-31,0],[-32,2],[-29,9],[-20,9],[-28,0],[-25,3],[-18,17],[2,56],[-16,32],[-10,29],[-2,29],[2,29],[-4,29],[2,29],[-8,38],[-15,26],[-22,12],[-12,26],[10,32],[-10,32],[-18,14],[-23,27],[-20,20],[-20,17],[-21,24],[-18,26],[-18,17],[-25,18],[-30,6],[-28,0],[-31,-6],[-22,0],[-23,-3],[-26,-15],[-45,-32],[-20,-11],[-16,-21],[-8,-35],[-13,-26],[-14,-32],[-22,-11],[-22,-9],[-25,-5],[-32,-7],[-21,-6],[-24,-2],[-28,-6],[-21,0],[-30,8],[-29,12],[-26,9],[-28,11],[-19,21],[-10,38],[-8,37],[-16,32],[-18,21],[-17,23],[-12,29],[14,32],[25,26],[22,15],[22,9],[23,17],[18,41],[-16,32],[-14,26],[6,30],[18,28],[16,26],[-2,35],[-6,32],[-4,41],[10,38],[2,38],[0,32],[0,32],[0,32],[-2,38],[17,29],[24,29],[16,17],[28,18],[29,11],[20,21],[0,32],[-18,23],[-20,-6],[-27,-16],[-24,-13],[-16,17],[-7,32],[-4,32],[-22,30],[-16,23],[-12,23],[-19,26],[-24,12],[-24,3],[-29,-9],[-20,20],[-25,18],[-20,-6],[-24,6],[-16,23],[-19,18],[-22,20],[-4,38],[12,44],[0,31],[-20,21],[-29,11],[-25,8],[-23,13],[18,29],[-2,38],[8,32],[-4,43],[4,30],[-24,17],[-21,-3],[-28,-9],[-22,6],[-9,35],[-10,26],[-22,-8],[-41,-6],[-26,-15],[-33,-14],[-24,0],[-16,17],[-10,29],[-19,18],[-32,23],[-33,20],[-26,18],[-26,17],[-21,12],[-32,-9],[-31,-23],[-30,-21],[-22,-23],[-7,-31],[2,-33],[5,-29],[-17,-38],[-8,-38],[-16,-40],[-14,-35],[-19,-24],[-20,-26],[-20,-23],[-19,-20],[-14,-24],[-16,-23],[-22,-23],[-16,-18],[-27,-20],[-16,-23],[12,-26],[0,-35],[0,-41],[-4,-35],[-17,-21],[-26,-26],[-20,-14],[-22,-18],[-25,-20],[-20,-14],[-18,-30],[-23,-20],[-18,-23],[10,-44],[-2,-38],[13,-27],[40,-30],[22,-27],[2,-32],[-14,-35],[-14,-35],[-20,-32],[-17,-32],[-16,-32],[-14,-26],[-39,-87],[-24,-22],[-20,-10],[-27,-18],[-12,-26],[-4,-38],[2,-38],[16,-46],[7,-41],[2,-41],[-2,-32],[-17,-20],[-12,-32],[-16,-26],[-18,-15],[-21,-14],[-15,-21],[-15,-20],[-15,-21],[-1,-37],[7,-32],[-1,-29],[-15,-29],[-16,-21],[-12,-35],[-10,-26],[-9,-27],[-9,-31],[-16,-19],[-14,-23],[-10,-28],[-15,-40],[-8,-31],[2,-31],[-6,-38],[-9,-32],[-3,-33],[-1,-34],[-6,-34],[-18,-18],[-28,-9],[-33,-5],[-20,-6],[-25,-18],[-16,-29],[-14,-29],[-14,-23],[-20,-32],[-23,-26],[-20,-27],[-12,-26],[8,-32],[14,-29],[10,-41],[-6,-46],[2,-29],[6,-29],[18,-16],[17,-25],[11,-34],[-6,-33],[-19,-27],[-20,-34],[-17,-28],[-26,-48],[-6,-35],[-21,-17],[-24,-15],[-21,-23],[-20,-14],[-22,2],[-22,12],[-29,12],[-16,17],[-9,27],[-7,29],[-25,-9],[-15,-32],[-17,-26],[-6,-38],[2,-32],[8,-32],[-7,-29],[-3,-29],[2,-30],[4,-40],[6,-41],[12,-38],[14,-35],[16,-35],[11,-26],[2,-35],[4,-38],[6,-40],[8,-32],[10,-32],[2,-29],[-10,-35],[-22,-32],[-23,-29],[-18,-30],[-18,-29],[-16,-29],[-15,-29],[-10,-38],[-4,-29],[-2,-19],[-2,-16],[2,-32],[-2,-39],[-16,-33],[-16,-27],[-17,-32],[-14,-40],[-12,-35],[-12,-35],[-14,-26],[-15,-32],[-18,-38],[-12,-32],[-6,-32],[-2,-32],[0,-38],[6,-32],[10,-29],[8,-35],[-2,-41],[-6,-43],[-10,-38],[-18,-29],[-5,-29],[5,-35],[-13,-38],[-14,-52],[-6,-32],[-8,-35],[-2,-38],[4,-41],[0,-38],[-12,-35],[-21,-26],[-12,-29],[-6,-41],[-14,-27],[-19,-34],[-2,-42],[4,-34],[-235,-199],[-345,-274],[-44,-34],[-47,-38],[-225,-178],[-164,-130],[-221,-176],[-27,-20],[-26,-21],[-36,-29],[-9,-7],[-47,-37],[-308,-245],[-102,-78],[-26,-20],[-90,-74],[-821,-655],[-60,-46],[-265,-205],[-6,-5],[-12,-9],[-222,-184],[-24,-10],[-8,-3],[-466,112],[-146,35],[-40,10],[-295,71],[-23,6],[-241,58],[-519,125],[-8,2],[-43,11],[-4,-4],[-156,-157],[-283,-269],[-94,-89],[-45,-43],[-27,-26],[-214,-203],[-130,-124],[-104,-98],[-214,-204],[-59,-56],[-44,-41],[-23,-22],[-418,-397],[-1,0],[-66,-63],[-202,-192],[-54,-51],[-247,-234],[-51,-49],[-175,-166]],[[48694,34532],[108,338],[47,147],[8,30],[28,86],[12,38],[43,133],[54,167],[159,510],[9,28],[16,52],[94,302],[48,152],[45,145],[180,577],[48,153],[99,318],[22,73],[59,184],[18,59],[113,363],[18,57],[16,53],[3,8],[-4,30],[-16,40],[-54,135],[-110,278],[-23,60],[-3,7],[-144,366],[-131,331],[-12,28],[-14,37],[-1,2],[-15,37],[-160,406],[-82,206],[-186,468],[-23,58],[-42,106],[-14,35],[-110,282],[-17,42],[-173,433],[-66,165],[-58,146],[-25,62],[-67,173],[-375,948],[-24,61]],[[47992,43447],[186,298],[53,85],[74,121],[5,7],[189,306],[75,122],[33,52],[268,432],[35,0],[157,4],[57,2],[56,2],[105,2],[115,2],[86,5],[82,4],[359,9],[60,1],[6,0],[81,3],[25,1],[392,10],[272,8],[21,0],[36,1],[298,7],[27,123],[8,29],[13,62],[55,271],[0,3],[74,362],[63,313],[26,127],[36,179],[19,93],[63,310],[25,122],[14,69],[30,149],[110,543],[-10,71],[-26,194],[-38,282],[-16,119],[-39,284],[-5,59],[-53,391],[-19,148],[-10,79],[-1,6],[-7,9],[3,14],[7,7],[3,2],[61,41],[9,6],[1,0],[37,5],[2,2],[3,5],[5,6],[1,7],[21,110],[1,3],[0,34],[-11,43],[0,13],[8,15],[15,20],[14,10],[1,0],[41,-4],[29,2],[25,8],[47,32],[14,19],[1,1],[7,11],[26,38],[14,26],[25,35],[14,31],[13,34],[6,15],[8,59],[10,60],[7,61],[-24,70],[-2,3],[-3,3],[-2,2],[-11,9],[-1,2],[-4,2],[-3,2],[-3,2],[-4,2],[-3,1],[-4,1],[-3,0],[-6,0],[-13,-1],[-53,2],[-13,11],[-4,2],[-39,27],[-3,2],[-3,2],[-3,1],[-1,1],[1,1],[34,45],[9,12],[11,15],[3,1],[25,10],[44,23],[2,1],[44,42],[5,10],[1,2],[0,6],[0,22],[-5,21],[-3,6],[-22,22],[-22,58],[-6,22],[0,10],[3,6],[8,8],[4,1],[47,15],[35,15],[9,6],[1,1],[5,7],[1,1],[8,20],[6,8],[37,45],[1,1],[5,12],[2,4],[0,17],[1,7],[-25,18],[-39,24]],[[47992,43447],[-32,-4],[-32,-5],[-23,-10],[-18,-17],[-26,-31],[-52,-61],[-42,-7],[-19,-17],[-16,-20],[-39,-14],[-59,-28],[-48,-18],[-29,-18],[-39,-19],[-20,-24],[-31,-9],[-27,13],[-37,3],[-19,-11],[-38,-20],[-23,5],[-60,-1],[-20,0],[-26,6],[-33,23],[-32,42],[-7,37],[4,44],[23,47],[18,26],[-1,32],[-33,46],[-26,19],[-22,16],[-23,34],[-27,37],[-44,27],[-37,34],[-20,26],[-13,25],[-5,31],[-8,40],[-5,28],[13,39],[-33,48],[0,44],[1,40],[6,36],[11,42],[25,48],[18,37],[-15,32],[-17,32],[-17,20],[-31,16],[-32,2],[-41,-5],[-24,2],[-35,6],[-24,0],[-27,-3],[-26,-5],[-17,42],[-24,70],[-11,40],[-4,39],[-24,-10],[-18,22],[-4,29],[-37,22],[-17,26],[-25,16],[-18,-17],[-28,29],[-28,-2],[-49,10],[-29,-3],[-23,-6],[-46,0],[-28,20],[-19,39],[-21,9],[-20,-6],[-18,-24],[-40,-44],[-25,-7],[-37,0],[-31,13],[-23,0],[-24,-4],[-42,-16],[-34,-12],[-26,-5],[-33,6],[-36,11],[-24,-5],[-7,-1],[-19,-15],[-29,-14],[-22,-22],[-17,-26]],[[41378,49536],[-23,8],[-1,0],[-37,16],[-19,-22],[-9,-23],[-2,-4],[-18,-27],[-27,-13],[-25,22],[-3,3],[-28,11],[-25,-2],[-69,-15],[-18,-37],[-20,-17],[-6,-48],[-11,-46],[-34,-7],[-19,8],[-28,-13],[-23,-14],[-20,11],[-51,18],[-15,-23],[-23,-24],[-17,-28],[-3,-32],[4,-41],[-24,-9],[-22,-17],[-21,11],[-26,-15],[-20,-18],[-17,-30],[-2,-30],[-3,-40],[6,-28],[-16,-48],[-28,19],[-78,38],[-17,-15],[-103,100],[-61,-36],[-22,-6],[-58,-4],[-5,-76],[3,-32],[-6,-42],[-26,-5],[-26,-12],[-20,-14],[-24,-12],[-27,8],[-23,19],[-17,27],[-21,36],[-10,51],[-1,37],[-21,32],[-23,8],[-21,11],[19,23],[9,34],[19,40],[-337,-245],[-28,-17],[-14,-30],[-15,-25],[-21,-10],[-22,-11],[-17,-14],[-22,-12],[-41,-9],[-44,2],[-21,-14],[-65,-17],[-25,-21],[-42,-34],[-7,-6],[-22,-19],[-36,-30],[-7,-5],[-68,-55],[-56,-45],[-18,-16],[-28,-24],[-15,-13],[-12,-10],[-583,-481],[-55,-50],[-18,-15],[-130,-108],[-159,-133],[-31,-26],[-20,-17],[-207,-174],[-20,-16],[-158,-132],[-59,-49],[-69,-58],[-3,-3],[-256,-212],[-50,-42],[-20,-16],[-290,-243],[-75,-63],[-63,-53],[-162,-134],[-223,-187],[-16,-13],[-20,-17],[-160,-124],[-329,-256],[-400,-319],[-167,-132],[-294,-235],[-37,-30],[-156,-124],[-136,-105],[-18,-15],[-113,-90],[-33,-26],[-11,-9],[-21,-17],[-16,-13],[-182,-143],[-148,-120],[-58,-47],[-202,-161],[-245,-197]],[[33679,44117],[-12,23],[-11,28],[-23,25],[-14,24],[-12,38],[1,43],[-11,37],[2,40],[-13,30],[-23,4],[-31,23],[0,41],[5,41],[7,34],[-33,22],[-9,28],[2,35],[0,49],[-43,10],[-23,8],[-3,50],[-6,32],[11,26],[3,38],[-33,29],[-17,34],[13,37],[20,28],[-10,31],[-16,20],[-13,29],[-29,-17],[-31,-14],[-23,4],[-23,26],[-14,64],[-3,41],[-28,36],[-32,0],[-29,9],[-9,34],[-23,23],[-40,-7],[-14,40],[-33,3],[-25,-23],[-19,-14],[-34,-28],[-16,-23],[-15,20],[0,30],[3,50],[19,41],[-27,44],[-24,19],[0,33],[0,37],[-26,-7],[-18,15],[-19,-24],[-7,-33],[-8,-54],[-54,-7],[-29,-27],[-35,5],[-6,51],[-21,-4],[-24,-6],[-34,24],[-22,-7],[-5,28],[0,34],[17,20],[-9,28],[-25,19],[-27,-2],[-29,44],[-17,28],[-33,30],[-48,16],[38,99],[18,23],[1,40],[-70,-26],[-20,8],[-25,5],[-15,45],[-32,46],[-14,30],[-6,47],[4,30],[1,49],[0,41],[-17,49],[23,45],[-6,38],[-33,21],[-34,13],[-29,38],[75,64],[40,17],[31,21],[29,9],[27,-4],[33,36],[30,24],[26,21],[57,31],[16,89],[11,40],[35,2],[44,-20],[31,2],[1,40],[14,43],[38,11],[-21,52],[-48,0],[-36,16],[50,45],[42,8],[22,20],[1,31],[34,34],[21,49],[24,16],[37,2],[35,-10],[29,17],[26,28],[15,32],[20,15],[83,42],[34,33],[-25,35],[0,34],[25,62],[-8,34],[-21,99],[47,37],[15,20],[2,41],[22,30],[7,40],[-4,35],[-12,26],[-25,0],[-22,5],[4,39],[52,42],[-4,23],[-1,8],[7,31],[16,22],[42,13],[44,5],[25,17],[3,1],[-1,42],[-33,492],[-14,225],[-1,82],[-37,531],[-7,105],[-3,45],[-4,54],[-29,3],[-1,7],[-6,139],[-5,33],[-2,37],[-9,37],[-9,41],[17,25],[14,34],[17,58],[-18,22],[-14,22],[-19,19],[-24,-3],[-26,7],[-3,30],[-9,55],[27,47],[-10,30],[-11,25],[22,21],[19,29],[29,17],[36,18],[19,25],[40,9],[13,41],[-27,29],[-12,29],[17,19],[31,12],[36,15],[-11,30],[0,31],[7,52],[-8,37],[-1,51],[-33,6],[-28,19],[9,39],[-8,32],[-12,45],[0,38],[17,21],[15,27],[17,26],[-24,29],[-4,44],[-21,34],[-42,27],[-3,45],[-23,24],[-13,32],[-6,40],[41,7],[24,14],[10,29],[22,40],[27,1],[30,12],[-14,35],[-20,25],[-2,39],[-26,25],[-20,6],[-21,34],[13,26],[13,38],[-21,19],[-38,16],[-27,-5],[-5,49],[-5,43],[-21,39],[-27,10],[-32,34],[-30,20],[-20,38],[-27,15],[11,38],[12,24],[-22,21],[-15,20],[-6,31],[14,34],[-19,22],[-31,-25],[-13,-30],[-6,-30],[-21,1],[-30,5],[-24,15],[-11,31],[-36,13],[-22,-2],[-21,1],[-25,27],[-24,36],[3,54],[-7,35],[-16,19],[-9,43],[-11,27],[-2,36],[17,22],[-1,30],[-15,30],[14,27],[30,19],[26,5],[19,35],[-6,30],[-3,29],[-12,29],[-20,8],[-28,24],[-23,11],[-12,35],[-16,23],[-6,30],[16,32],[26,17],[21,12],[22,14]],[[23167,49930],[-20,-38],[-26,-3],[-15,-21],[-23,-71],[-25,3],[-32,-27],[-10,-28],[24,-46],[14,-34],[-24,-38],[-12,-31],[-26,-20],[-17,-41],[-46,-8],[-29,-33],[-39,-7],[-47,-38],[-30,32],[-31,-5],[-29,3],[-57,-16],[-2,-59],[-32,-53],[-11,-49],[-11,-35],[3,-31],[8,-51],[12,-35],[1,-15],[1,-16],[20,-231],[16,-198],[-6,-81],[49,-573],[19,-225],[4,-41],[25,-299],[18,-245],[1,-22],[-5,-71],[-27,-392],[-5,-54],[-21,-329],[-15,-217],[0,-5],[-4,-64],[-6,-85],[-9,-120],[-17,-244],[-6,-92],[-5,-66],[-13,-179],[-16,-233],[-4,-54],[-8,-38],[-40,-195],[-8,-40],[-33,-265],[-8,-69],[-6,-53],[-16,-140],[-25,-216],[-6,-60],[-47,-391],[-80,-379],[-58,-269],[-19,-92],[13,-53],[7,-27],[37,-162],[9,-39],[43,-179],[10,-42],[9,-36],[19,-78],[36,-152],[100,-306],[77,-233],[23,-69],[114,-359]],[[22772,41057],[-146,-135],[-48,-43],[-36,-33],[-105,-96],[-195,-177],[-237,-216],[-118,-107],[-136,-124],[-117,-107],[-72,-44],[-125,-77],[-156,-93],[-74,-48],[-491,-282],[-40,-23],[-3,-2],[-52,-32],[-21,-13],[-29,-18],[-15,-9],[-27,-16],[-2,46],[-7,41],[-11,33],[-22,10],[-22,26],[2,61],[10,55],[-21,12],[-6,3],[-145,77],[-157,260],[-103,171],[-20,33],[-36,56],[-108,171],[-124,197],[-25,40],[-79,122],[-77,123],[-129,207],[-27,40],[-23,35],[-66,115],[-72,120],[-24,39]],[[19235,41455],[-33,54],[-104,166],[-26,41],[-65,104],[-98,159],[-2,3],[-33,52],[-55,90],[-38,61],[-109,176],[-48,77],[-182,294],[-2,3],[-89,143],[-158,256],[-44,-9],[-110,-20],[-143,-27],[-45,-8],[-169,-32]],[[17682,43038],[-84,100],[-25,31],[-274,327],[-69,82],[-327,392],[-47,55],[39,46],[135,160],[21,24],[23,28],[234,276],[-20,33],[-169,283],[-74,123],[-33,55],[-105,177],[-27,44],[-132,222],[-133,223],[-103,171],[-7,12],[-7,11],[-73,123],[-60,101],[-29,49],[-98,161],[-166,283],[-26,44],[-106,178],[-26,44],[-232,390],[-72,112],[-157,262],[-39,67],[-110,183],[-106,176],[-8,15],[-12,19],[-23,39],[-16,26],[-97,163],[-19,45],[-1,1],[-127,294],[-1,2],[-8,29],[38,69]],[[14924,48788],[33,-16],[13,-6],[130,-62],[130,-63],[39,-2],[63,7],[104,46],[37,33],[1,1],[32,27],[44,38],[71,60],[4,2],[0,1],[150,103],[53,65],[3,0],[4,1],[3,1],[4,2],[3,1],[3,3],[4,2],[3,3],[3,3],[2,3],[3,3],[1,2],[16,25],[32,41],[38,50],[62,81],[21,26],[46,53],[2,3],[3,3],[3,4],[2,4],[0,1],[20,39],[1,2],[1,1],[12,27],[2,4],[15,39],[1,2],[15,40],[0,2],[2,5],[0,1],[18,63],[1,4],[1,5],[0,1],[5,31],[9,50],[1,4],[0,4],[13,133],[13,139],[6,67],[20,147],[32,128],[3,11],[4,16],[118,228],[63,96],[34,38],[56,46],[42,17],[70,12],[47,0],[106,-30],[17,-1],[4,-1],[3,-1],[4,-1],[33,-12],[1,0],[3,-2],[4,-2],[44,-27],[3,-2],[3,-2],[2,-2],[32,-28],[1,-2],[3,-3],[3,-3],[54,-68],[3,-3],[1,-2],[48,-73],[69,-104],[43,-55],[41,-43],[63,-51],[67,-48],[17,-12],[82,-48],[49,-22],[19,-3],[81,-17],[54,-8],[1,0],[4,-1],[3,-1],[38,-15],[59,0],[37,2],[22,6],[78,64],[67,100],[17,29],[20,34],[9,45],[1,2],[2,26],[-2,38],[-7,44],[-10,33],[-3,8],[-5,12],[-121,187],[-32,48],[-99,115],[-89,86],[-78,115],[-27,64],[-20,58],[-9,65],[-4,51],[8,137],[59,222],[24,71],[15,25],[57,89],[56,86],[49,90],[1,8],[32,132],[17,120],[-2,66],[49,243],[-4,6],[-3,162],[-14,81],[-13,38],[-31,88],[-156,222],[-23,16],[-44,43],[-73,71],[-3,3],[-2,2],[-66,67],[-151,149],[-125,125],[-23,25],[-38,45],[-20,26],[-19,29],[-74,114],[-78,205],[-12,32],[-2,49],[-1,5],[0,5],[-1,5],[-1,4],[-21,90],[-8,34],[-1,250],[1,20],[3,22],[3,21],[3,17],[0,37],[44,36],[65,25],[98,-17],[55,-20],[107,-57],[77,-41],[168,-28],[113,9],[136,49],[105,57],[101,82],[125,125],[52,89],[41,159]],[[33679,44117],[-45,-69],[-194,-296],[-63,-96],[-114,-177],[-21,-33],[-198,-304],[-249,-382],[-64,-100]],[[32731,42660],[-192,-294],[-4,-6],[-299,-461],[-11,-16],[-123,-190],[-88,-135],[-92,-141],[-74,-113],[-57,-86],[-19,-31],[-39,-61],[-59,-91]],[[31674,41035],[-10,41],[5,68],[24,24],[3,36],[-8,37],[-19,19],[-21,27],[-13,23],[6,31],[8,39],[-24,22],[-20,6],[-20,0],[-24,17],[-22,36],[9,27],[-6,29],[-28,-1],[-97,-3],[-12,31],[0,42],[14,29],[-3,33],[-13,24],[-9,26],[-28,6],[-23,-2],[-36,5],[-1,30],[0,32],[-5,52],[-25,6],[-36,5],[-46,3],[-15,-23],[-58,-84],[-24,-36],[-29,-28],[-13,-56],[-19,-12],[-51,-1],[-41,-15],[-34,13],[-27,3],[-30,8],[-14,33],[-22,3],[-30,28],[-53,35],[-25,42],[-2,35],[-17,23],[-40,-21],[-41,16],[-16,45],[-25,12],[-30,-5],[-35,-10],[-44,22],[-18,21],[9,30],[-21,6],[-33,9],[-25,-14],[-31,-17],[-27,21],[-28,15],[-13,25],[-30,19],[-23,17],[-29,-37],[-24,-3],[-17,27],[-8,65],[-13,67],[-21,19],[-13,26],[-9,30],[-5,35],[3,33],[0,50],[22,19],[35,9],[22,29],[-10,35],[-35,2],[-16,37],[0,56],[-32,-17],[-21,-40],[-31,-11],[-12,46],[7,54],[-18,28],[24,36],[-3,47],[11,36],[69,83],[-6,28],[-11,26],[-54,4],[-38,40],[13,28],[3,37],[-60,1],[-56,-23],[-37,100],[-6,48],[14,22],[21,16],[18,19],[-23,46],[-27,54],[1,35],[31,12],[30,13],[11,30],[22,31],[4,82],[0,32],[25,5],[20,11],[-11,41],[-12,31],[18,17],[5,43],[-10,64],[-10,58],[-26,-1],[-24,13],[-14,34],[-19,16],[-9,45],[16,32],[8,42],[8,36],[-16,30],[-18,38],[14,29],[17,25],[6,29],[-11,28],[-1,31],[-4,42],[-9,30],[-37,12],[-48,52],[16,41],[8,27],[11,28],[15,33],[9,32],[33,-6],[21,8],[19,20],[10,33],[-17,19],[-8,52],[-9,52],[-20,62],[-9,51],[-11,34],[-31,20],[-5,53],[-29,14],[-37,16],[-33,22],[-19,31],[-1,30],[-24,22],[-47,13],[7,47],[1,30],[-22,26],[-21,30],[-37,11],[-32,-7],[-15,27],[6,49],[16,26],[-28,30],[-41,84],[-20,63],[-18,31],[-27,-9],[-36,10],[-26,31],[35,70],[-2,52],[-25,-5],[-83,19],[-16,20],[-20,25],[-4,109],[-1,9],[-1,32],[-5,16],[-2,5],[-3,10],[-9,2],[-11,4],[-9,17],[-4,7],[-23,21],[-50,17],[-53,37],[16,29],[1,3],[36,12],[27,6],[24,21],[3,3],[3,32],[-11,26],[-18,8],[-32,15],[-22,-1],[-39,13],[-24,9],[-10,-5],[-14,-5],[-6,-2],[-38,-10],[-47,-9],[-31,15],[-28,17],[-4,40],[0,2],[27,9],[45,49],[0,1],[-19,15],[-18,11],[-38,7],[-64,28],[-15,9],[-15,15],[-4,8],[1,6],[6,10],[18,18],[1,1],[6,4],[59,41],[74,51],[-1,3],[-1,7],[-11,21],[-10,14],[-5,3],[-67,37],[-8,2],[-20,77],[-8,33],[-4,47],[62,-3],[16,-1],[5,8],[0,2],[12,51],[5,37],[5,50],[2,19],[0,1],[-2,5],[-10,11],[-8,3],[-96,12],[-8,24],[0,21],[5,9],[11,8],[2,1],[36,4],[18,7],[23,16],[11,14],[11,30],[7,26],[-3,31],[0,4],[-5,31],[-2,9],[3,17],[-1,25],[-1,7],[-3,12],[-5,10],[-21,23],[-1,2],[-2,1],[-17,8],[-15,27],[-1,23],[17,17],[1,1],[8,5],[39,28],[11,5],[2,1],[10,1],[6,0],[9,-3],[2,-3],[5,-5],[11,-25],[1,-18],[9,-22],[12,-20],[7,-2],[22,2],[14,4],[4,5],[0,2],[1,18],[0,10],[0,135],[0,6],[-3,22],[-27,51],[-6,4],[-27,8],[-15,8],[-5,9],[-4,26],[-3,111],[0,43],[-27,100],[-73,25],[-31,14],[-25,17],[-18,19],[-5,10],[-4,14],[1,16],[8,14],[13,8],[3,6],[5,39],[0,27],[-6,20],[-8,16],[-14,10],[-14,3],[-36,-6],[-1,0],[-22,-14],[-53,-57],[-10,-16],[-29,-31],[-2,-2],[-29,-20],[-15,-5],[-5,3],[-6,7],[-37,83],[0,5],[-9,16],[-19,19],[-48,1],[-18,7],[-6,6],[-4,14],[1,19],[6,134],[7,15],[20,24],[2,1],[4,3],[7,4],[8,2],[6,2],[26,-1],[20,-4],[72,-24],[12,4],[9,15],[1,1],[12,35],[6,33],[0,16],[0,12],[-4,6],[-6,7],[-23,13],[-36,8],[-25,-2],[-34,5],[-11,4],[-12,11],[-6,13],[0,20],[17,32],[15,17],[16,9],[30,9],[24,4],[6,3],[2,6],[-3,8],[-33,35],[-3,1],[-11,20],[-37,76],[-1,1],[1,0],[75,3],[12,6],[9,11],[2,9],[0,2],[-3,14],[-11,12],[-34,21],[-19,21],[-9,21],[-3,12],[0,11],[35,43],[7,8],[4,1],[3,7],[6,10],[0,17],[0,3],[-7,15],[0,1],[-7,8],[-1,1],[-8,3],[-35,0],[-44,11],[-22,14],[-12,14],[-21,39],[-54,69],[-14,9],[-7,2],[-19,1],[-20,-4],[-18,0],[-14,5],[-17,13],[-78,84],[-32,37],[-4,8],[1,13],[5,6],[3,2],[11,5],[45,21],[8,4],[52,6],[77,29],[14,7],[5,10],[0,6],[0,2],[-3,5],[-59,26],[-65,11],[-9,5],[-16,11],[-1,4],[-8,4],[-39,43],[-32,45],[-4,12],[-3,29],[19,45],[6,6],[6,11],[11,20],[3,14],[2,9],[-9,18],[-18,21],[-39,47],[-26,30],[-7,3],[-1,0],[-9,-1],[-17,-13],[-24,-34],[-16,-29],[-12,-23],[-19,-28],[-12,-13],[-3,-2],[-23,-4],[-25,3],[-7,8],[0,16],[14,49],[7,64],[4,28],[4,39],[0,19],[-2,11],[-4,4],[-1,1],[-12,2],[-32,-8],[-46,-18],[-65,-30],[-23,32],[25,42]],[[17682,43038],[-78,-14],[-159,-30],[-68,-12],[-77,-13],[-44,-9],[-30,-5],[-158,-30],[-24,-4],[-115,-22],[-116,-20],[-41,-8],[-148,-28],[-290,-54],[-359,-68],[-95,-18],[-174,-33],[-51,-9],[-45,-5],[-119,-22],[-464,-85],[-135,-29],[-91,-16],[-264,-48],[-138,-24],[-21,-4],[-83,-14],[-214,-39],[-20,-3],[-38,-7],[-20,-3],[-32,-6],[-4,-1],[-5,-3],[-26,-18],[-19,-12],[-9,-6],[-29,-19],[-104,-68],[-114,-75],[-5,-3],[-178,-118],[-96,-62],[-190,-125],[-53,-35],[-67,-45],[-67,-42],[-42,-27],[-216,-142],[-112,-73],[-77,-51],[-24,-15],[-537,-344],[-143,-92],[-86,-55],[-10,-7],[18,-344],[10,-190],[7,-151],[29,-565],[2,-32],[27,-546],[5,-107],[8,-165],[7,-140],[5,-102],[2,-29],[4,-94],[13,-284],[2,-46],[18,-344],[4,-98],[1,-40],[1,-7],[18,-373],[11,-225]],[[11950,37036],[-326,332],[-77,79],[-38,39],[-59,60],[-57,59],[-31,31],[-37,37],[-37,37],[-44,44],[-25,25],[-41,45],[-104,107],[-55,57],[-58,59],[-79,81],[-53,55],[-23,23],[-72,74],[-72,73],[-128,132],[-66,68],[-88,90],[-87,90],[-88,90],[-38,39],[-18,19],[-20,22],[-23,22],[-24,24],[-25,26],[-25,26],[-20,20],[-290,295],[0,1],[-19,19],[-69,71],[-23,23],[-3,3],[-47,47],[-7,9],[-158,163],[-26,28],[-47,47],[-52,50],[-18,19],[-1,1],[-34,34],[-1,1],[-343,353],[-9,10],[-29,30],[-31,32],[-7,7],[-10,10],[-20,21],[-27,28],[-7,21],[-31,97]],[[8703,40441],[197,0],[226,38],[60,-8],[46,25],[64,52],[93,83],[87,112],[38,73],[32,81],[14,53],[-2,12],[21,80],[19,138],[-3,36],[9,34],[4,86],[-2,91],[-19,152],[-32,136],[-29,106],[-12,73],[-85,297],[-75,166],[-25,106],[-8,17],[-15,160],[-11,132],[-33,127],[-33,100],[-7,52],[0,10],[-1,96],[46,182],[28,78],[39,104],[33,136],[10,105],[5,15],[0,79],[-19,152],[-36,132],[-47,133],[-10,26],[-17,62],[-39,112],[-45,251],[5,15],[-29,320],[-28,107],[-22,50],[-34,69],[-45,66],[-47,51],[-120,94],[-39,22],[-120,98],[-58,100],[-25,110],[-9,143],[0,55],[18,139],[26,90],[36,81],[56,93],[46,56],[68,66],[101,100],[298,251],[7,-1],[184,64],[212,116],[40,29],[27,11],[35,22],[89,76],[104,109],[69,101],[50,73],[6,10],[36,62],[40,33],[19,104],[25,79],[11,59],[49,278],[2,67],[15,166],[0,4],[3,98],[-10,88],[-32,68],[0,15],[0,5],[-1,5],[0,5],[-1,5],[-1,5],[-1,2],[-69,265],[-3,37],[2,76],[-31,188],[81,175],[203,233],[313,570],[108,557],[42,88],[35,74],[37,70],[119,227],[22,-99],[129,427],[70,95],[311,201],[16,10],[117,75],[294,232],[49,86],[24,91],[97,367],[24,87],[99,244],[330,152],[152,-16],[227,-25],[48,-56],[245,-287],[5,-6],[2,-9],[21,-113],[8,-41],[6,-33],[44,-231],[13,-46],[0,-2],[1,-3],[7,-26],[4,-17],[1,-2],[1,-5],[0,-1],[11,-60],[3,-12],[5,-15],[1,-3],[9,-14],[20,-32],[1,-1],[11,-11],[14,-6],[21,-10],[10,-2],[34,-5],[3,0],[23,-1],[5,0],[42,4],[30,2],[13,2],[24,2],[3,0],[60,2],[10,-1],[1,0],[3,0],[4,1],[3,1],[4,1],[1,1],[52,22],[2,1],[1,0],[70,35],[40,9],[39,9],[49,7],[75,-20],[30,-14],[72,-32],[20,-8],[5,-3],[80,-61],[7,-9],[8,-11],[71,-96],[39,-58],[4,-63],[51,-123],[78,-143],[51,-75],[65,-125],[32,-80],[32,-111],[16,-33],[37,-126],[78,-197],[136,-239],[32,-80],[22,-102],[12,-93],[-8,-58],[-22,-59],[-189,-284],[-30,-30],[-97,-114],[-64,-85],[-118,-158],[-7,-10],[-32,-54],[-38,-96],[-8,-6],[-6,-66],[11,-49],[42,-62],[72,-79],[64,-109],[42,-62],[128,-29],[81,-93]],[[72814,45395],[-59,-128],[-157,-167],[-36,-72],[-59,-119],[-42,-117],[-88,-116],[-63,-227],[-103,-271],[6,-151],[-120,-393],[43,-259],[117,-142],[0,-102],[-48,-236],[-37,-125],[-71,-174],[-6,-181],[-286,-90],[-126,99],[-114,0],[-69,0],[-51,-122],[-101,-18],[-29,-127],[-126,-335],[-144,-259],[-134,-274],[-89,-340],[14,-96],[-91,-151],[2,-131],[12,-99],[-108,-300],[-75,-76],[-9,-23],[-64,-169],[10,-122],[-121,-102],[-55,-122],[-54,-140],[-88,-191],[-163,-274],[-93,-186],[-43,-149],[-101,-148],[-90,-494],[65,-120],[-67,-288],[-97,-117],[-97,-78],[-14,-137],[-3,-27],[-69,-80],[-310,-218],[-48,-175],[-19,-300],[-145,18],[-90,38],[-80,-189],[-86,-111],[-109,-221],[-81,-19],[-213,-159],[51,-193],[-6,-143],[-65,-67],[-69,73],[-128,-36],[-91,-84],[-68,-46],[-114,-11],[-89,-58],[-48,-28],[-45,18],[-1083,434],[-1241,499],[-945,379],[-427,949],[-55,123],[-729,1622],[-457,323],[-264,64],[-456,251],[-69,36],[-1017,524]],[[60827,40422],[-35,53],[4,35],[26,20],[15,35],[12,26],[20,27],[24,-3],[29,20],[12,32],[10,38],[-14,26],[-1,14],[-1,24],[22,14],[23,15],[16,20],[20,3],[25,0],[20,18],[22,20],[33,21],[20,10],[8,3],[20,7],[25,3],[47,6],[18,23],[-10,26],[-4,44],[14,38],[15,11],[9,7],[25,19],[20,9],[22,9],[14,29],[11,29],[6,35],[4,29],[12,32],[18,20],[8,32],[-4,29],[-8,30],[-26,17],[-21,17],[-22,15],[-49,6],[-21,18],[-25,43],[8,32],[0,41],[-6,29],[-19,32],[-14,26],[-4,32],[-16,23],[-25,21],[-24,8],[-20,6],[-4,29],[16,35],[16,26],[12,50],[13,41],[2,37],[30,47],[18,14],[19,18],[24,9],[28,14],[9,32],[30,44],[6,32],[10,26],[12,26],[11,29],[14,35],[10,29],[10,32],[18,27],[19,26],[-15,23],[-22,26],[-20,23],[-25,18],[-32,6],[-26,1],[-21,16],[-14,26],[-6,32]],[[31674,41035],[-98,-139],[-8,-12],[-32,-46],[-95,-133],[-26,-36],[-152,-219],[-89,-124],[-18,-26],[-5,-6],[-28,-39],[-60,-87],[-43,-62],[-83,-119],[-98,-140],[-101,-128],[-19,-23],[-35,-31],[-4,-3],[-15,-13],[-142,-123],[-213,-184],[-93,-81],[-180,-156],[-53,-46],[-287,-248],[-91,-79],[-20,-17],[-43,-39],[-110,-95]],[[29433,38581],[-165,38],[-372,84],[-563,-153],[-32,-6],[-64,-19],[-74,-19],[-39,-11],[-173,-46],[-81,-22],[-29,-7],[-36,-8],[-317,202],[-162,103],[-114,72],[-72,15],[-31,6],[-38,8],[-2,0],[-36,7],[-308,63],[-35,8],[-22,4],[-2,0],[-274,57],[-79,15],[-25,5],[-19,3],[-28,4],[-61,7],[-33,4],[-368,37],[-150,16],[-152,15],[-132,15],[-190,21],[-137,14],[-136,15],[-107,11],[-367,38],[-187,19],[-56,6],[-132,13],[-49,6],[-52,7],[-19,-15],[-3,-34],[-23,-17],[-23,2],[-25,-6],[-18,-25],[-11,2],[-13,-8],[-285,410],[-47,67],[-240,354],[-49,70],[-17,24],[-42,61],[-49,70],[-17,53],[-8,25],[-9,25],[-17,50],[-44,125],[-61,181],[-128,380],[-12,35]],[[44393,44738],[-11,-30],[-52,-137],[-18,-46],[-21,-54],[-61,-160],[-90,-234],[-37,-98],[-34,-88],[-20,-52],[-70,-184],[-13,-34],[-131,-342],[-14,-38],[-75,-196],[-48,-127],[-21,-54],[-1,-3],[-14,-37],[-31,-82],[-12,-29],[-89,-234],[-61,-159],[-3,-8],[-22,-58],[-6,-16],[-87,-226],[-114,-135],[-385,-460],[-219,-265],[-3,-3],[-14,-17],[-43,-51],[-73,-88],[-84,-100],[-80,-95],[-212,-253],[-235,-280],[-132,-159],[-6,-7],[-10,-13],[-255,-308],[-167,-202],[-49,-59],[-43,-52],[-71,-85],[-3,-3],[-161,-194],[-65,-78],[-121,-144],[-182,-219],[-159,-191]],[[40465,38551],[-36,-11],[-22,8],[-29,21],[-18,29],[-22,-4],[-21,-29],[-22,6],[5,-29],[-18,-19],[-31,13],[-30,-1],[-23,22],[-38,0],[-16,23],[-23,1],[-24,-6],[-33,10],[-22,25],[-25,16],[-24,17],[-28,12],[8,46],[-21,22],[-37,4],[-19,-13],[-21,5],[-27,11],[-28,10],[-40,-5],[-18,-23],[-32,-9],[-31,-3],[-6,29],[-24,18],[-23,38],[-20,-16],[-24,-13],[-30,-8],[-17,30],[-11,35],[-2,35],[-20,15],[-39,-28],[-13,-31],[-1,-39],[-21,-17],[-25,5],[-38,2],[-31,-8],[-31,15],[-16,21],[-34,-8],[-31,19],[-1,34],[-25,22],[-23,-2],[-30,1],[-30,1],[-20,-14],[-18,-22],[-11,-25],[-6,-36],[-1,-37],[-19,11],[-34,24],[-14,32],[-2,5],[-12,30],[-27,0],[-28,-45],[-1,-40],[-28,-17],[-16,25],[-41,19],[-15,18],[-26,-9],[-27,-9],[-23,-10],[-48,-24],[-17,-26],[3,-39],[-6,-29],[7,-32],[14,-26],[7,-44],[5,-39],[-21,-7],[-21,-6],[-23,-2],[-18,25],[-24,21],[-8,31],[-25,11],[-36,-16],[-27,-7],[-20,-8],[-27,-7],[-25,-7],[-27,23],[7,36],[-12,71],[-6,30],[3,31],[-23,38],[-22,15],[-29,0],[-30,13],[-21,12],[-1,35],[-5,62],[-53,8],[5,46],[1,46],[-28,11],[-25,10],[-24,30],[-16,34],[-36,-10],[-27,6],[-30,4],[-23,2],[-8,39],[-18,16],[-19,20],[-61,6],[-39,32],[-12,32],[2,49],[2,35],[5,29],[-17,19],[-13,34],[-8,30],[-27,11],[-20,8],[-33,11],[-31,9],[-2,1],[-2,-2],[-16,-12],[-87,-65],[-130,-96],[-103,-78],[-182,-138],[-200,-151],[-46,-35],[-252,-191],[-59,-45],[-210,-159],[-64,-48],[-22,-17],[-106,-80],[-66,-50],[-77,-57],[-74,-56],[-46,-34],[-75,-59],[-45,-33],[-86,-65]],[[35785,37982],[8,28],[10,33],[-8,36],[-12,29],[-19,47],[-24,18],[-4,30],[-23,35],[-15,24],[4,29],[5,31],[-22,31],[-23,12],[-12,49],[-18,35],[-3,36],[0,35],[11,80],[0,30],[0,30],[-29,11],[-1,33],[5,33],[-5,33],[-17,32],[-16,34],[-15,27],[-24,12],[-39,14],[-44,13],[-26,13],[-22,21],[-32,8],[-30,13],[-19,15],[-53,-8],[-21,28],[-21,37],[-27,-1],[-21,-4],[-20,-5],[-32,-10],[-29,16],[-17,23],[-21,17],[-20,16],[-1,30],[26,8],[27,0],[19,20],[24,19],[3,32],[4,35],[-14,31],[-4,40],[-8,36],[-7,30],[-9,27],[-1,30],[7,29],[7,46],[10,41],[4,34],[7,37],[-4,32],[-17,18],[-42,19],[-26,30],[-2,43],[-27,24],[-32,14],[-21,5],[-26,20],[-27,35],[-28,42],[-7,31],[-7,38],[-6,46],[11,31],[-5,39],[-21,10],[-33,17],[-22,29],[4,40],[-12,30],[-24,15],[-23,3],[-41,-8],[-19,0],[-4,0],[-26,11],[-23,12],[-3,1],[-18,6],[-26,16],[-11,14],[-14,17],[-19,14],[-35,18],[-26,16],[-19,31],[-7,57],[-17,36],[-35,-11],[-34,6],[-24,9],[-21,2],[-34,-4],[-13,23],[-16,40],[-5,60],[-18,25],[-33,-5],[-22,-3],[-26,-9],[-22,-22],[-27,-32],[-19,-14],[-31,-32],[-57,-4],[-20,24],[-6,30],[-14,50],[-5,43],[-3,33],[-9,28],[-8,33],[8,36],[-8,46],[8,39],[20,54],[0,43],[2,53],[-46,5],[-49,-5],[-44,9],[-9,39],[0,41],[-8,25],[-3,11],[3,34],[11,25],[5,35],[-13,43],[1,41],[30,16],[24,59],[-1,40],[-21,20],[-22,18],[-212,233],[-118,129],[-18,22],[-31,33],[-63,70],[-77,86],[-125,139],[-444,493]],[[60827,40422],[-50,-38],[-20,-72],[-49,-61],[-36,-71],[-10,-37],[2,-29],[8,-32],[-10,-70],[-15,-32],[-18,-20],[-10,-27],[-4,-34],[-33,-12],[-20,-12],[-34,-43],[2,-40],[6,-36],[35,-37],[2,-64],[15,-33],[4,-32],[-20,-26],[-47,-29],[-26,6],[-28,-9],[-15,-64],[0,-38],[-18,-29],[-6,-29],[2,-33],[-4,-34],[-22,-32],[-21,-15],[-6,-29],[13,-26],[4,-32],[-15,-35],[8,-32],[-10,-35],[-4,-40],[-14,-27],[3,-51],[11,-7],[23,-6],[20,-17],[18,-32],[-14,-23],[-14,-70],[-10,-26],[-21,-27],[-24,-52],[-37,-64],[5,-17],[37,-41],[24,-8],[16,-50],[45,-26],[61,-140],[20,-40],[8,-88],[-19,-23],[-3,-6],[-35,-6],[-23,-10],[-54,-57],[-25,-101],[-20,-8],[-51,62],[-51,6],[-69,3],[-20,6],[-26,-96],[10,-52],[-9,-30],[-28,-17],[8,-32],[-20,-55],[-92,-135],[-65,14],[-35,-54],[-30,-20],[-32,-104],[-6,-78],[-20,-62],[44,-129],[34,-5],[-8,-60],[-9,-29],[-87,-100],[-20,-22],[15,-80],[41,-47],[40,-39],[37,-94],[49,-91],[43,-118],[8,-103],[-1,-117],[-66,-117],[42,-136],[-45,-65],[4,-102],[35,-128],[-50,-44],[-89,-99],[26,-83],[-91,-53],[-16,-46],[-46,-27],[-36,-63],[-42,-43],[-54,-131],[7,-49],[-20,-38],[-49,-24],[-25,-82],[-58,-67],[-19,-21],[-4,-31],[-44,-118],[-29,-45],[3,-40],[-23,-72],[-10,-44],[-75,-72],[-19,-109],[-53,-86],[-18,-130],[-15,-84],[50,-28],[28,-10],[18,-25],[20,-137],[-4,-84],[-22,-29],[-84,-45],[-25,-57],[-58,-102],[-140,-58],[-118,40],[-114,44],[-81,42],[-139,-31],[-56,-97],[25,-31],[-89,-125],[54,-87],[-31,-65],[-33,-88],[-33,-66],[-40,-86],[-98,-79],[-103,5],[-33,-27],[-21,-71],[-59,-4],[-89,-112],[-48,-33],[-33,-126],[-44,-67],[-38,-12],[-72,-127],[-73,-116],[-9,-94],[48,-87],[71,-89],[15,-125],[2,-16],[19,-57],[93,5],[64,-114],[59,-100],[35,-129],[-2,-83],[64,-67],[-19,-66],[-29,-128],[-113,-63],[-96,-57],[-55,-100],[-87,-47],[-111,35],[-54,-109],[-8,-154],[-78,-77],[-124,48],[-133,-40],[-54,-177],[-83,-49],[-129,1],[-63,-112],[-53,-119],[-135,-66],[-69,-143],[-142,-166],[-127,-141],[-144,-182],[-172,-84],[-212,-407],[-317,-143],[-103,-158],[59,-102],[-24,-173],[-4,-74],[79,-64],[-24,-137],[-69,-30],[17,-115],[-3,-105],[-80,-86],[-88,-151],[-36,-162],[-66,-111],[-101,-67],[-117,-16],[-36,-89],[54,-200],[-26,-34],[4,-8],[43,-81],[-1,-93],[41,-153],[76,-20],[51,-38],[130,-82],[-104,-164],[-139,-187],[-183,-282],[-131,-111],[-147,-381],[13,-95]],[[54480,25114],[-103,-38],[-642,-45],[-52,-3],[-87,-6],[-27,-2],[-55,-4],[-3,-1],[-188,-15],[-103,-8],[-234,-18],[-192,-14],[-142,-12],[-368,-30],[-188,-15],[-54,-5],[-9,-1],[-525,-42],[-251,-123],[-112,-52],[-696,-335],[-28,-13],[-36,-5],[-32,-20],[-26,-17],[-23,0],[-21,8],[-24,-10],[-23,0],[-57,31],[-58,24],[-31,26],[-19,17],[-65,10],[-37,11],[-26,-1],[-26,-5],[-49,-31],[-22,-3],[-37,30],[-39,47],[-25,16],[-22,2],[-59,19],[-34,-11],[-26,-23],[-25,-45],[-25,-37],[-17,-17],[-20,-8],[-26,-25],[-90,-3],[-32,24],[-23,25],[-35,56],[-36,49],[-41,-3],[-37,14],[-35,18],[-18,-29],[-30,-19],[-29,2],[-40,13],[-22,-5],[-68,14],[-13,3],[-81,19],[-34,4],[-220,40],[-302,49],[-87,86],[-69,67],[-108,107],[-94,93],[-245,240],[-2,2],[-35,35],[-22,22],[-231,227],[-257,253],[-292,286],[-197,193],[-131,130],[-214,210],[-19,19],[10,305],[9,436],[3,140],[2,154],[0,5],[2,146],[1,79],[2,110],[3,145],[2,63],[1,55],[4,173],[7,352],[2,77],[0,5],[1,74],[17,926]],[[46368,29801],[4,75],[2,52],[4,77],[5,95],[15,407],[12,249],[0,12],[1,19],[32,676],[10,217],[16,338],[45,949],[1,26],[13,284],[186,-115],[260,-163],[122,110],[644,579],[172,154],[199,180],[10,6],[18,13],[52,44],[31,35],[19,24],[188,157],[19,14],[37,26],[122,119],[87,72]],[[46368,29801],[-299,239],[-151,118],[-365,284],[-83,65],[-96,73],[-91,70],[-69,53],[-32,24],[-179,138],[-188,143]],[[44815,31008],[-125,96],[-52,40],[-158,121],[-28,22],[-98,74],[-79,61],[-435,332],[-35,28],[-209,159],[-8,7],[-14,10],[-44,26],[-138,105],[-117,89],[-131,99],[-231,174],[-95,72],[-127,95],[-25,20],[-39,29],[-38,29],[-160,120],[-437,329],[-159,121],[-324,244],[-62,47],[-142,106],[-9,28],[-1,4],[-43,157],[-15,55],[-43,-62],[-16,-23],[-19,-27],[-167,-235],[-14,-19],[-89,335],[-8,30],[-64,237],[-31,6],[-96,190],[-13,25],[-328,657],[-105,211],[108,88],[155,122],[107,85],[55,44],[-23,75],[-43,131],[-48,148],[-4,13],[-23,72],[-30,91],[-14,46],[-13,39],[-26,80],[-58,181],[-100,312],[-54,166],[-85,264],[-94,295],[-1,2],[-30,93],[-1,4],[-28,87],[-13,39],[0,2],[-14,42],[-9,27],[-52,99],[19,23],[5,7],[208,248],[81,98],[20,24],[89,108],[137,164]],[[14791,32702],[-139,-145],[-17,-18],[-1,-1],[-200,-212],[-287,-297],[-166,-176],[-26,-27],[-201,-208],[-145,-153],[-176,-185],[-17,16],[-19,12],[-25,0],[-18,-30],[-16,-22],[-27,-7],[-26,8],[-23,4],[-21,-19],[5,-41],[1,-32],[-14,-33],[5,-37],[-2,-41],[-23,-20],[-32,-25],[-33,-16],[-26,-11],[-13,27],[-25,9],[-26,8],[-6,32],[-2,47],[-17,22],[-33,8],[-26,-10],[-37,-19],[-19,31],[-21,19],[-39,3],[-23,-4],[-30,-9],[-22,-9],[-34,-5],[-16,24],[7,39],[9,29],[-4,33],[-5,33],[14,38],[-2,31],[-22,-2],[-33,-5],[-15,28],[5,35],[-27,9],[-23,-1],[-29,-22],[-23,-6],[-25,6],[-40,-28],[-25,-20],[-22,15],[-18,21],[-23,-4],[-8,56],[-1,37],[-31,-3],[-18,-15],[-21,8],[-22,39],[6,31],[-14,27],[-22,-8],[-36,-24],[-23,0],[-1,36],[-20,24],[-24,-4],[-24,-17],[-21,17],[-10,34],[-12,37],[-23,6],[-24,1],[-11,34],[8,36],[12,40],[-11,13],[32,351],[40,438],[34,376],[6,70],[0,8],[-32,449],[-7,53],[-12,90],[-12,83],[-7,199],[-1,45],[-1,30],[-3,74],[-5,61]],[[12113,34121],[-10,127],[-23,279],[-7,91],[-13,166],[-13,184],[-2,31],[-7,156],[-1,34],[-4,92],[-3,52],[-4,98],[-1,3],[0,10],[-7,67],[-3,87],[-2,39],[-1,39],[-2,29],[-3,68],[-2,39],[-12,255],[-7,143],[-2,120],[-1,86],[-13,227],[-5,88],[-10,211],[-5,94]],[[19235,41455],[-33,-39],[-25,-28],[-107,-127],[-40,-48],[-110,-154],[-104,-192],[-102,-128],[-138,-163],[-34,15],[-25,41],[-37,-4],[-26,-9],[-35,20],[-8,10],[-11,13],[-30,5],[-16,-23],[-21,-19],[-12,-40],[-3,-21],[-1,-15],[-4,-38],[-39,6],[-20,-23],[-34,-27],[-14,-22],[-28,-5],[-10,-2],[-28,-7],[-10,-29],[-2,-50],[-4,-29],[-7,-21],[-4,-11],[-14,-29],[-3,-4],[-15,-14],[-8,-43],[-19,-17],[-20,-18],[-1,-2],[-5,-26],[23,-30],[36,3],[16,-20],[18,-18],[-12,-29],[9,-37],[12,-36],[3,-35],[1,-37],[15,-30],[11,-27],[0,-50],[-11,-31],[24,-14],[18,-36],[0,-41],[-36,-24],[-10,-28],[10,-42],[0,-33],[29,-41],[-12,-31],[-9,-46],[-14,-20],[12,-45],[30,-16],[-10,-45],[4,-34],[-1,-44],[-15,-36],[-20,-19],[-29,-18],[17,-64],[19,-25],[6,-31],[-4,-44],[-9,-32],[-16,-26],[-22,-31],[-30,-1],[27,-85],[-41,-22],[-26,-10],[-2,-30],[10,-28],[39,-34],[11,-92],[31,-44],[-49,-27],[-19,-28],[16,-26],[22,-10],[24,-28],[10,-27],[34,-23],[27,5],[5,-32],[61,-34],[21,-15],[21,-18],[-4,-36],[25,-39],[12,-32],[17,-37],[-38,-3],[-21,-13],[-18,-25],[19,-43],[18,-32],[19,-16],[22,-31],[26,-19],[13,-34],[112,-36],[-26,-69],[-19,-42],[-2,-29],[24,-22],[8,-36],[-20,-38],[25,-37],[-5,-39],[6,-30],[10,-26],[15,-50],[19,-27],[24,-59],[-2,-37],[5,-47],[15,-20],[12,-41],[17,-25],[27,-4],[8,-34],[-15,-26],[-17,-20],[-5,-29],[16,-38],[37,-16],[37,-12],[-9,-170],[-53,-61],[-33,-17],[-10,-5],[-42,-24],[-106,-57],[-130,-72],[-255,-140],[-441,-240],[-25,-15],[-24,-11],[-95,-46],[-30,-14],[-226,-104],[-106,-48],[-20,-10],[-59,-28],[-68,-33],[-43,-20],[-22,-12],[-42,-20],[5,-33],[0,-1],[-24,-24],[-33,7],[-69,56],[-14,-30],[-48,-115],[-45,-9],[-34,23],[-6,4],[-28,-8],[-16,-21],[-43,-32],[-30,6],[-41,10],[-22,-9],[-19,-25],[-11,-31],[-11,-58],[-32,15],[-27,13],[-8,-2],[-20,-4],[-24,-5],[-25,-17],[-1,-1],[-22,-11],[-22,-12],[-21,-25],[-44,-3],[-26,-43],[-3,-2],[-22,-14],[-26,-17],[-93,-62],[-21,-15],[-4,-2],[-34,-25],[-4,-3],[-70,-50],[-321,-208],[-20,-13],[-27,-19],[-219,-152],[-53,-36],[-50,-35],[-1,-1],[-22,-15],[-30,-113],[-71,-494],[-25,-178],[-24,-159],[-79,-525],[-13,-84],[-9,-78],[-33,-256],[-15,-106],[-19,-141]],[[35785,37982],[26,-27],[14,-35],[11,-26],[23,0],[25,-10],[32,-8],[22,-3],[28,-15],[31,12],[21,7],[17,22],[25,-4],[18,-17],[13,-43],[12,-33],[20,-22],[196,-41],[173,-35],[261,-55],[112,-23],[56,-13],[24,-66],[10,-29],[97,-281],[16,-46],[8,-43],[-191,-186],[-21,-20],[-281,-274],[-29,-29],[-3,-2],[-103,-99],[-220,-214],[-100,-97],[-32,-31],[-193,-188],[-154,-149],[-33,-33],[-19,-18],[-131,-128],[-392,-382],[-153,-106],[-116,-79],[-151,-104],[-184,-126],[-4,-3],[-343,-235],[-33,-24],[-278,-191],[-63,-44],[-52,-36],[-221,-152],[-83,-55],[-115,-81],[-100,-103],[-149,-100],[-127,-80],[-37,-21],[-1,0],[-41,-23],[-136,-63],[-241,-164],[-25,-16],[-242,-162],[-228,-154],[-282,-190],[-415,-280],[-276,-186],[-239,-162],[-194,-130],[-209,-140],[-226,-151],[-511,-341],[-30,-21],[-176,-118],[-10,-7],[-221,-147],[-587,-401]],[[28675,30902],[-71,496],[-66,459],[-60,423],[-25,172],[-1,6],[-151,1046],[-59,351],[-1,8],[-4,24],[-13,76],[-13,118],[-3,62],[-52,238],[-3,13],[-82,379],[-11,52],[-17,72],[-23,106],[-10,48],[-27,122],[0,1],[-97,444],[-14,62],[-30,141],[-16,71],[-62,285],[-20,105],[-7,38],[-4,32],[-6,31],[-65,316],[-9,46],[-19,94],[-7,36],[-6,31],[-4,17],[-8,40],[62,56],[41,36],[4,4],[217,197],[30,28],[20,18],[6,6],[148,135],[7,6],[24,22],[76,70],[42,39],[24,23],[31,26],[19,16],[2,3],[145,132],[104,90],[6,5],[31,27],[14,12],[14,12],[73,65],[234,202],[450,388]],[[28675,30902],[-7,-10]],[[28668,30892],[-241,-342],[-31,-44],[-95,-133],[-706,-1014],[-122,-174],[-40,-58],[-53,-74],[-19,-26],[-32,-45],[-229,-323],[-14,-21],[-24,-35],[-15,-22],[-13,-18],[-24,-36],[-4,-6],[-29,-42],[-46,26],[-2,10],[-4,18],[-33,18],[-21,12],[-22,13],[-44,0],[-65,-6],[-34,-7],[-6,-9],[-12,-19],[1,-29],[1,-31],[0,-4],[2,-51],[1,-42],[46,-73],[-71,-153],[-22,-36],[-4,-41],[-4,-47],[-12,-44],[-15,-47],[-11,-72],[-13,-55],[-3,-29],[-8,-46],[-7,-61],[-55,-346],[-79,-459],[-44,-250],[-28,-160],[-22,-130],[-10,-50],[-19,-108],[-32,-171],[-19,-106],[-15,-82],[-10,-59],[-10,-57],[-8,-49],[-59,-337],[-48,-251],[-7,-42],[-9,-53],[-6,-35],[-67,-383],[-8,-46],[-12,-70],[-6,-31],[-4,-26],[-7,-48],[-9,-58],[-7,-35],[0,-1],[-7,-35],[-167,-914],[-4,-49],[-28,-186],[-10,-62],[-3,-18],[-69,-406],[-39,-230]],[[25642,22331],[-25,17],[-20,-9],[-22,-11],[-21,-21],[-16,-23],[-20,-6],[-23,15],[-22,0],[-22,-3],[-27,-3],[-28,3],[-47,9],[-24,-12],[-25,-9],[-20,29],[-10,35],[-18,15],[-21,6],[-20,14],[-16,18],[-27,14],[-28,12],[-20,9],[-27,8],[-26,0],[-18,18],[-19,20],[-22,6],[-22,-3],[-19,-15],[-16,-20],[-14,-32],[-4,-35],[-14,-29],[-15,-26],[-16,-32],[-22,0],[-22,3],[-27,-3],[-22,-6],[-20,0],[-21,15],[-12,26],[-16,17],[-10,26],[-23,18],[-20,17],[-28,3],[-21,6],[-30,-9],[-18,-23],[-19,-26],[-44,-53],[-23,-5],[-24,8],[-16,24],[-23,23],[-18,20],[-24,61],[2,30],[-19,23],[-22,11],[-22,6],[-23,3],[-24,6],[-26,3],[-25,17],[-16,24],[-6,32],[-16,26],[-21,-6],[-20,-9],[-26,-3],[-23,3],[-22,6],[-20,12],[-16,29],[18,20],[18,21],[14,26],[12,26],[11,32],[4,32],[-4,32],[-11,26]],[[24102,22860],[11,32],[6,29],[18,15],[14,26],[2,29],[8,35],[-14,29],[-12,26],[-12,29],[-4,32],[0,32],[0,35],[-25,-6],[-20,-11],[-20,-6],[-19,17],[-18,15],[-10,29],[-9,48],[-5,45],[1,44],[-29,18],[-22,-4],[-23,-17],[7,38],[-11,46],[-5,37],[6,34],[10,39],[23,34],[14,26],[-10,37],[-37,10],[-41,1],[-11,29],[-2,31],[9,28],[18,24],[19,13],[17,25],[-27,32],[-12,34],[5,41],[30,22],[39,7],[25,6],[50,41],[-16,28],[4,34],[-2,37],[-20,28],[-12,27],[-10,27],[-26,37],[-4,44],[-24,28],[-20,20],[-19,23],[-19,45],[-12,26],[-20,3],[-9,36],[-10,35],[-4,33],[-12,35],[-16,19],[-33,-12],[-22,5],[-16,28],[-7,30],[-15,33],[-13,27],[13,32],[23,17],[30,16],[11,32],[-9,38],[-16,29],[-28,9],[-1,39],[-13,40],[-23,35],[-25,14],[-26,-25],[-30,-14],[-31,-9],[-14,29],[0,30],[-27,6],[-31,-9],[4,40],[-17,35],[-17,27],[-22,32],[-10,37],[-9,29],[-32,0],[-26,-9],[-21,-49],[-25,-35],[-23,-3],[-20,-20],[-15,-35],[-22,-9],[-23,-7],[-23,-14],[-22,-8],[-24,2],[-20,-19],[-27,7],[-19,10],[-16,29],[-20,27],[-35,6],[-15,25],[-24,-18],[-38,2],[-25,-1],[-11,28],[-21,21],[-6,51],[0,55],[-17,20],[-23,0],[-21,4],[-18,34],[-19,29],[-42,15],[-22,8],[-30,35],[-18,17],[-16,27],[-24,-6],[-24,-9],[-25,10],[-39,4],[-39,11],[-20,7],[-14,27],[-21,36],[-11,42],[-3,46],[-13,33],[28,32],[25,8],[26,34],[-15,29],[7,49],[18,20],[-13,33],[8,32],[21,15],[10,28],[0,48],[-4,34],[4,31],[16,27],[27,-8],[20,-7],[23,3],[9,32],[18,33],[9,36],[25,16],[21,23],[23,-4],[21,-9],[31,6],[19,-17],[20,12],[21,41],[12,33],[-4,31],[20,25],[-4,34],[4,48],[13,30],[8,39],[21,17],[13,37],[-20,28],[-24,23],[-28,13],[-19,-20],[-22,-10],[-10,27],[-31,41],[-12,30],[-26,3],[-19,13],[-5,38],[-41,-4],[-18,-18],[-18,-15],[-22,-10],[-19,14],[-2,30],[7,31],[-6,32],[-30,17],[-26,-17],[-24,-1],[-24,14],[-20,-6],[-27,-20],[-22,-22],[-24,-5],[-24,6],[-20,-13],[-27,-1],[-17,19],[-8,30],[6,35],[24,5],[-12,33],[-10,30],[20,23],[19,27],[12,26],[23,16],[19,25],[14,21],[34,9],[8,28],[-5,28],[-22,24],[-24,10],[-19,13],[-16,34],[0,46],[-15,35],[-16,21],[-34,24],[-44,2],[-16,18],[-24,7],[-29,-3],[-22,11],[-28,23],[-25,32],[-42,-2],[-20,-8],[-21,-17],[-17,-17],[-22,-10],[-20,-14],[-19,-18],[-25,-18],[-32,-16],[-26,17],[-35,-21],[-23,54],[17,44],[10,29],[-24,19],[-19,-8],[-22,-13],[-27,36],[-3,43],[-17,15],[-35,-26],[-33,-24],[-49,7],[-26,26],[6,31],[14,28],[-23,45],[-18,23],[-43,29],[-23,56],[-29,20],[-37,28],[-21,29],[-3,31],[7,28],[14,30],[-55,38],[-7,32],[-14,33],[-22,-1],[-27,-18],[-22,21],[-24,19],[-28,9],[-11,37],[14,46],[18,15],[24,29],[26,27],[-30,26],[-21,8],[-25,-2],[-36,-13],[-23,17],[-20,19],[-27,23],[-24,1],[-17,29],[24,37],[34,22],[24,27],[19,58],[-32,-8],[-24,-34],[-49,3],[-23,11],[-20,19],[-35,3],[-14,32],[-89,4],[-24,50],[-22,2],[-32,-27],[-22,-2],[-33,22],[-24,10],[-24,2],[-12,-39],[-13,-40],[-34,-29],[-19,-61],[-95,-39],[-10,36],[-3,32],[6,57],[-18,48],[-37,-16],[-13,-3],[-34,-6],[-45,-17],[-20,7],[-15,23],[20,33],[21,19],[29,14],[-61,72],[-7,39],[-48,12],[-73,41],[19,50],[12,49],[17,15],[28,77],[-13,43],[14,49],[-19,15],[-19,17],[0,42],[-17,60],[8,32],[-19,21],[-43,1],[-35,30],[-15,24],[18,31],[56,21],[5,80],[7,33],[35,27],[56,12],[15,81],[-38,44],[-8,31],[13,25],[21,119],[-55,1],[-23,17],[-58,7],[-36,-14],[-37,30],[-28,19],[-43,19],[-20,7],[-26,4],[-58,-12],[-37,-36],[-27,-4],[-28,-63],[-44,7],[-22,26],[-56,17],[-51,13],[-39,-21],[-31,-3],[-55,-35],[-30,-18],[-25,1],[-28,-24],[-23,-4],[-18,45],[-40,-5],[-16,50],[-26,31],[-7,37],[-48,10],[-25,36],[-10,26],[8,36],[-26,19],[-44,13],[-21,-17],[-59,-38],[-33,14],[-24,0],[-9,-35],[-18,-21],[-12,-57],[-42,3],[-22,-11],[-57,18],[-29,-20],[-52,0],[-47,-25],[-21,24],[-23,-2],[-26,-18],[-34,-17],[-50,-104],[12,-111],[28,-20],[20,7],[54,39],[25,0],[-18,-54],[-22,-19],[-5,-36],[-9,-61],[-30,-15],[17,-87],[-23,-15],[-20,-29],[-63,4],[-29,23],[-89,-142],[-20,-35],[-5,-10],[-8,-15],[-101,6],[-22,14],[-25,10],[-25,0],[-74,-11],[-2,-1],[-3,0],[-4,0],[-22,2],[-3,1],[-4,1],[-3,1],[-4,1],[-3,2],[-18,11],[-3,2],[-3,2],[-3,3],[-3,3],[-1,1],[-19,22],[-2,2],[-3,4],[-3,4],[-2,4],[-2,4],[-2,4],[-1,5],[-2,3],[-18,60],[-20,68],[-1,1],[-1,5],[-1,5],[-20,106],[-1,5],[-1,5],[0,5],[0,2],[-1,40],[0,8],[0,5],[1,8],[1,5],[0,1],[15,109],[-3,14],[-5,14],[-66,93],[-56,81],[-24,34],[-15,16],[-14,14],[-41,16],[-2,1],[-3,2],[-1,0],[-51,31],[-83,48],[-1,1],[-3,2],[-3,2],[-3,3],[-3,3],[-3,3],[-4,6],[-1,0],[-9,12],[-2,3],[-2,4],[-3,4],[-1,2],[-3,5],[-30,1],[-51,2],[-55,-8],[-36,-103],[23,-25],[2,-48],[-30,-30],[-25,-2],[-19,-23],[-15,-24],[-10,-27],[3,-30],[35,-57],[27,-87],[-8,-52],[-29,-26],[-29,-19],[-3,-50],[-44,-31],[-16,-22],[-24,-10],[-44,13],[-30,2],[-43,29],[-65,-30],[-55,19],[-23,-34],[-20,-6],[-62,24],[-21,-40],[26,-61],[-15,-25],[0,-48],[-55,-63],[-13,-25],[36,-53],[12,-37],[-35,-30],[-16,-27],[17,-39],[18,-52],[-1,-34],[46,5],[38,-23],[13,-31],[23,-24],[-3,-36],[29,-18],[17,-33],[-11,-42],[25,-15],[42,-45],[11,-51],[-12,-24],[-55,51],[-28,8],[-24,-9],[-28,-3],[-22,8],[-20,8],[-11,30],[-10,27],[-27,21],[-15,30],[-29,7],[-34,4],[-20,6],[-21,8],[-20,30],[-18,17],[-9,45],[-4,44],[-10,27],[-22,51],[-12,38],[14,27],[-6,28],[-4,29],[-17,40],[-17,16],[5,31],[-2,32],[-21,36],[-12,25],[-25,28],[-20,21],[8,32],[-21,9],[-11,26],[-6,6],[-12,10],[-21,14],[-12,28],[-19,21]],[[16451,29326],[20,17],[30,29],[-6,40],[-17,52],[-26,41],[-3,4],[-55,115],[22,6],[1,1],[4,1],[25,10],[3,1],[50,-6],[31,-7],[8,-6],[4,-2],[1,-1],[50,-28],[73,-85],[1,-1],[3,-3],[3,-2],[3,-3],[4,-2],[13,-8],[4,-2],[3,-1],[3,-1],[4,-1],[4,-1],[1,0],[20,-1],[3,0],[3,0],[4,0],[3,1],[4,1],[3,2],[4,2],[3,2],[3,2],[3,3],[3,3],[2,2],[14,16],[1,2],[3,3],[2,4],[2,4],[2,4],[2,5],[2,4],[1,2],[2,8],[1,2],[1,5],[1,5],[1,5],[0,5],[1,5],[0,5],[0,5],[-1,6],[0,5],[-1,9],[-1,4],[-1,5],[-1,5],[-2,5],[-2,4],[-2,5],[0,1],[-63,129],[-17,39],[-1,3],[1,13],[6,-6],[22,-35],[18,-34],[2,-4],[3,-4],[23,-33],[2,-3],[3,-3],[3,-3],[116,-112],[0,-1],[2,-1],[18,-16],[1,-1],[3,-2],[3,-2],[4,-2],[3,-2],[4,-1],[3,-1],[2,0],[37,-5],[2,-1],[4,0],[3,0],[4,1],[3,1],[28,7],[1,0],[3,2],[2,0],[24,11],[1,1],[4,2],[3,2],[18,12],[4,3],[3,3],[3,3],[2,3],[2,2],[9,12],[1,1],[2,4],[2,4],[3,4],[1,5],[2,4],[2,5],[1,5],[1,5],[1,4],[3,20],[0,1],[0,5],[1,5],[0,5],[0,5],[-1,5],[0,5],[-1,5],[-1,5],[-1,5],[-2,5],[0,1],[-9,23],[-1,3],[-2,4],[-2,4],[-2,4],[-3,4],[-2,3],[-3,4],[-1,1],[-33,34],[-2,2],[-3,3],[-44,36],[-3,2],[-3,2],[-58,35],[-1,3],[25,95],[0,2],[1,5],[0,5],[0,5],[0,5],[0,5],[-1,5],[0,5],[-1,5],[-2,5],[-1,5],[-2,4],[-1,2],[-12,29],[-1,2],[-2,4],[-1,1],[-16,28],[-18,51],[-10,33],[-4,28],[-58,31],[-4,2],[-27,14],[-20,7],[-24,-4],[-41,-8],[-20,0],[-7,2],[-9,12],[2,15],[10,12],[2,1],[14,6],[4,2],[4,0],[16,2],[48,2],[3,3],[48,50],[59,11],[14,3],[9,5],[9,9],[106,139],[-2,2],[-50,52],[-8,8],[-26,29],[-24,33],[-11,15],[-4,4],[-3,7],[-4,10],[-5,11],[-3,18],[3,12],[8,24],[2,2],[6,11],[4,4],[13,3],[40,-6],[40,0],[12,6],[27,25],[15,17],[6,14],[2,5],[3,5],[-1,8],[-2,16],[-8,29],[-13,24],[-47,74],[-1,2],[-50,54],[-3,8],[0,14],[5,5],[8,9],[10,8],[12,3],[32,5],[67,60],[0,2],[-1,5],[0,5],[0,5],[0,5],[0,5],[0,2],[8,75],[0,39],[-3,28],[-10,35],[-6,13],[-37,37],[-2,2],[-3,4],[-3,3],[-2,4],[-1,1],[-18,31],[-39,68],[-1,5],[-2,4],[-1,5],[-1,5],[-1,4],[-14,57],[-1,5],[-1,5],[-1,5],[0,5],[0,3],[-3,112],[-3,11],[-45,109],[-2,5],[-1,4],[-1,5],[-1,5],[-16,84],[-9,43],[-1,7],[-14,75],[-1,0],[0,5],[0,1],[-17,127],[-18,47],[-27,108],[-13,26],[-28,29],[-91,63],[-115,76],[-46,29],[-182,-101],[-67,-131],[-21,-24],[-36,-14],[-28,3],[-7,0],[-16,1],[-440,24],[-28,1],[-82,6],[-212,9],[-598,315]],[[12113,34121],[-42,6],[-12,29],[-24,-1],[-6,-34],[-8,-43],[-24,9],[-26,20],[-52,8],[-17,-30],[-21,5],[-34,38],[-20,-10],[-16,24],[-12,41],[-20,6],[-24,2],[-18,-17],[-18,-20],[-24,-17],[-26,-6],[-4,-38],[-20,-10],[-26,4],[-24,11],[-23,-8],[-21,-8],[-10,-44],[-24,-8],[-22,-21],[-10,-32],[-21,-18],[-37,-13],[-19,21],[-25,1],[-25,-14],[-26,-10],[-32,6],[-19,-21],[-23,-12],[-19,-14],[-23,4],[-23,-3],[-19,19],[-24,4],[-25,-3],[-33,-5],[-27,-24],[-29,-21],[-18,-22],[-11,-28],[15,-22],[12,-31],[-21,-8],[-21,6],[-26,-14],[1,-29],[1,-47],[20,-27],[-2,-33],[-34,-11],[-16,21],[-28,19],[-28,24],[-30,11],[-20,-22],[3,-38],[-5,-28],[-21,-16],[-21,-26],[-15,-35],[-4,-41],[-23,-17],[-10,-30],[3,-51],[-3,-29],[0,-3],[2,-29],[-7,-32],[-15,-28],[-20,-14],[-22,5],[-27,9],[-40,16],[-32,29],[-23,-2],[-21,18],[-21,-3],[-31,-20],[-16,-36],[-17,-45],[-23,10],[-36,23],[-21,1],[-53,-30],[-29,-40],[-22,-9],[-37,2],[-27,-7],[-18,14],[-42,30],[-23,-6],[-25,-14],[-35,-25],[-20,-8],[-31,-4],[-22,-20],[-25,-22],[-16,21],[-20,-11],[-17,-19],[-25,-32],[-31,-10],[-29,9],[-29,9],[-46,3],[5,-30],[-11,-26],[-23,-15],[-26,-12],[-26,-9],[-21,-3],[-27,11],[-32,19],[-5,45],[-20,3],[-35,0],[-25,21],[-34,31],[-21,-14],[-28,-49],[2,-33],[5,-31],[-6,-33],[-18,-19],[-22,-27],[-13,-36],[-15,-57],[-20,-11],[-54,-21],[-31,-11],[-17,-25],[-20,-11],[-32,-36],[-14,-39],[-22,-13],[-59,-22],[-5,-32],[10,-40],[-11,-42],[-24,-12],[-8,-28],[0,-5],[-4,-25],[5,-32],[14,-38],[8,-49],[0,-32],[-11,-26],[-32,-7],[-49,-35],[-9,1],[-22,2],[-10,25],[-34,15],[-30,4],[-37,1],[-22,0],[-25,0],[-32,-5],[-24,-6],[-29,0],[-21,13],[-32,7],[-25,-3],[-22,-10],[-10,-5],[20,-7],[22,-4],[23,-14],[21,-12],[29,-20],[31,-5],[18,-20],[22,-1],[12,-36],[0,-32],[-1,-38],[23,-39],[23,-23],[19,-12],[28,-1],[-21,-41],[-27,-46],[-22,-25],[-1,-29],[12,-44],[-4,-47],[-17,-25],[-31,-42],[7,-31],[23,-10],[27,-20],[27,-16],[-40,-35],[-21,-5],[-25,-20],[-29,-42],[-16,-33],[-9,-29],[-9,-32],[-11,-25],[-24,-15],[-45,6],[-19,-13],[-20,-31],[-33,-33],[-24,-21],[-34,-26],[-38,-25],[-23,-10],[-43,-3],[-34,-12],[-21,-30],[-22,-60],[-24,-13],[-63,10],[-27,5],[-25,-9],[-27,-28],[-16,-22],[-17,-34],[6,-35],[-12,-28],[4,-30],[-14,-41],[-27,-21],[-25,-19],[-5,-37],[8,-41],[-4,-44],[18,-38],[34,-25],[0,-37],[-9,-30],[-23,-15],[-17,-31],[-12,-39],[-19,-41],[-17,19],[-52,57],[-21,-15],[-29,-16],[-30,-26],[-17,-34],[-12,-45],[-24,-16],[-22,-22],[5,-34],[27,-31],[-5,-40],[-37,-84],[17,-32],[35,-22],[-10,-31],[11,-25],[2,-36],[-21,-9],[-39,6],[-19,-23],[-12,-28],[-10,-43],[-10,-43],[-31,-15]],[[7692,29898],[-56,24],[-22,41],[-22,9],[-36,-33],[-3,-37],[-26,-8],[-17,-19],[-21,-13],[-23,19],[-18,48],[-22,22],[-22,2],[-25,13],[-24,-10],[-23,-19],[-19,28],[-32,45],[-23,6],[-10,27],[-16,20],[-36,-21],[-20,-15],[-21,35],[-29,27],[-30,7],[-24,35],[-20,39],[-26,29],[-38,33],[-1,55],[-10,55],[-1,30],[-20,21],[-22,13],[-23,64],[-21,-1],[-26,0],[-40,36],[-22,49],[-9,34],[0,52],[-24,20],[-24,29],[15,32],[9,47],[13,27],[-7,57],[24,35],[-8,33],[-37,18],[6,28],[9,34],[-24,6],[-22,0],[-15,32],[20,30],[7,35],[18,36],[11,30],[-11,34],[0,41],[28,21],[10,32],[-6,28],[-1,6],[7,11],[7,10],[2,18],[1,19],[7,32],[11,17],[4,6],[17,19],[-1,32],[3,32],[5,19],[3,12],[19,12],[19,12],[19,8],[1,0],[9,27],[-9,21],[-4,9],[-13,35],[-11,26],[12,26],[0,11],[1,19],[0,3],[-13,26],[-9,29],[8,30],[18,14],[15,24],[7,32],[20,13],[21,4],[53,8],[23,5],[9,34],[8,27],[15,31],[19,12],[41,22],[24,3],[25,-7],[21,-15],[30,-32],[47,-26],[21,-6],[38,2],[17,23],[27,28],[24,11],[29,5],[28,2],[4,29],[8,31],[-13,39],[-19,23],[-21,9],[-10,28],[9,30],[-9,29],[-22,-4],[-20,-2],[-31,5],[-14,52],[-8,36],[-37,6],[-15,-23],[-22,-21],[-26,15],[-14,33],[4,32],[16,39],[4,39],[25,5],[16,34],[-15,54],[-29,21],[-16,-24],[-29,-31],[-49,10],[-21,29],[-21,5],[-38,7],[-16,37],[-23,27],[-22,38],[14,26],[22,27],[-16,29],[-21,-8],[-36,-9],[-17,35],[-21,-11],[-42,-16],[-17,17],[-60,7],[-22,4],[-10,28],[-24,39],[-21,3],[-29,-4],[-7,-65],[-12,-53],[-27,-19],[-20,-8],[-33,26],[-25,7],[-29,-13],[-2,-36],[-9,-36],[-41,14],[-29,-4],[-25,-16],[-18,-29],[-21,15],[-28,-15],[3,-42],[4,-47],[10,-60],[11,-50],[12,-32],[-9,-26],[-9,-34],[-21,-14],[-17,-14],[-6,-32],[-20,-12],[-33,-22],[-33,-18],[-28,-18],[-28,-22],[-20,-11],[-30,-37],[-38,15],[-10,-27],[-16,-22],[-62,41],[-51,44],[-23,20],[-41,36],[-51,47],[-25,24],[-36,33],[-28,27],[-99,92],[-209,193],[-28,27],[-26,24],[-20,19],[-208,195],[-229,213],[-20,19],[-118,110],[-37,35],[-95,89],[-40,37],[-77,72],[-109,102],[-123,113],[-160,151],[-46,43],[-77,72],[-72,66],[-57,53],[-36,32],[-43,38],[0,1],[-36,33],[-29,27],[-68,57],[-170,160],[-28,24],[-20,18],[-42,40],[-49,48],[-24,22],[-24,21],[-17,18],[-21,20],[-47,44],[-59,53],[-33,29],[-25,25],[-44,43],[-16,16],[-6,5],[-34,29],[-45,44],[-24,23],[-24,23],[-46,45],[-9,16],[-56,99],[-25,43]],[[2814,35206],[303,153],[63,25],[75,30],[514,178],[135,39],[28,8],[177,51],[175,66],[340,147],[139,66],[17,1],[6,1],[47,9],[29,-6],[51,-11],[37,-14],[130,-68],[19,-15],[27,-16],[14,-2],[115,-18],[46,0],[131,23],[100,27],[41,17],[89,25],[134,18],[15,6],[211,37],[121,28],[63,21],[188,104],[72,59],[80,117],[69,150],[68,190],[35,132],[0,24],[16,68],[40,277],[4,58],[21,79],[51,150],[30,62],[41,147],[15,128],[13,111],[-12,183],[-8,25],[16,253],[3,51],[28,133],[20,71],[78,185],[26,117],[-1,44],[7,26],[8,113],[-5,21],[23,201],[-1,43],[10,77],[2,71],[-6,12],[-4,103],[-1,178],[19,177],[26,63],[34,62],[-1,49],[29,35],[113,112],[49,1],[23,44],[23,39],[80,90],[75,59],[81,42],[6,-3],[27,10],[158,33],[10,-5],[57,2],[129,-25],[103,-32],[26,-16],[112,-42],[68,-22],[110,-34],[94,-15],[76,-20],[-5,55],[49,-13]],[[44815,31008],[-462,-501],[-28,-29],[-142,-143],[0,-1],[-61,-61],[-148,-150],[-288,-292],[-156,-154],[-150,-152],[-18,-17],[-4,-5],[-61,-61],[-199,-200],[-92,-93],[-56,-55],[-87,-86],[-465,-444],[-170,-162],[-182,-174],[-239,-235],[-18,-18],[-3,-2],[-157,-163],[-219,-209],[-254,-246],[-164,-154],[-43,-42],[-70,-65],[-46,-47],[-45,-42],[-23,-22],[-17,-19],[-100,-94],[-42,-41],[-229,-221],[-2,-1],[-28,-27],[-312,-307],[-195,-194],[-22,-23],[-7,-8],[-10,-10],[-27,-27],[-106,-103],[-25,-24],[-38,-32],[-78,-65],[-182,-153],[-3,-3],[-24,-20],[-23,-19],[-8,-6],[-64,-54],[-692,188],[-1,1],[-29,7],[-47,13],[-38,7],[-52,10],[-314,60],[-329,62],[-356,67],[-35,5],[-33,6],[-210,40],[-168,32],[-258,49],[-354,66],[-223,42],[-51,10],[-117,18],[-119,20],[-21,3]],[[35776,26238],[27,48],[42,56],[2,3],[26,42],[9,35],[-1,31],[-19,39],[-16,23],[-15,25],[-30,22],[-26,25],[-3,3],[-3,2],[-3,2],[-3,2],[-35,17],[-17,18],[-15,33],[-16,51],[-5,39],[0,13],[10,66],[7,39],[1,3],[9,21],[30,56],[0,1],[2,4],[2,4],[2,5],[2,5],[0,3],[5,18],[8,32],[1,2],[1,5],[0,3],[4,22],[1,7],[0,2],[1,5],[0,6],[0,5],[0,5],[-1,22],[0,2],[0,3],[0,2],[-1,5],[-1,5],[-1,5],[-1,5],[-2,5],[-1,4],[-2,5],[-2,4],[-3,4],[-2,4],[-3,3],[0,1],[-8,10],[-3,3],[-3,3],[-3,2],[-3,3],[-3,2],[-3,2],[-1,0],[-19,9],[-51,12],[-1,0],[-3,1],[-4,0],[-3,0],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-4,-2],[-51,-31],[-3,-2],[-3,-2],[-23,-19],[-3,-3],[-3,-3],[-2,-3],[-3,-3],[-7,-11],[-3,-4],[-2,-4],[-2,-4],[-2,-5],[-2,-4],[0,-1],[-8,-24],[-1,-4],[-1,-4],[-6,-21],[0,-2],[-1,-5],[-1,-5],[0,-2],[-3,-25],[-5,-8],[-114,-154],[-12,-13],[-1,0],[0,1],[-3,6],[0,14],[0,2],[0,5],[-1,24],[0,1],[0,1],[-2,27],[0,4],[0,5],[-1,5],[-1,5],[-2,5],[-1,4],[-2,5],[-7,18],[-2,4],[-2,4],[-2,4],[-2,2],[-3,6],[-1,1],[-9,12],[-2,3],[-2,2],[-11,13],[-1,1],[-3,3],[-3,3],[-19,16],[-3,2],[-12,9],[-14,15],[-7,13],[-6,17],[-2,9],[1,12],[20,101],[0,1],[1,2],[18,108],[0,1],[2,14],[1,2],[0,6],[1,5],[0,5],[0,5],[-1,5],[0,5],[-1,5],[-1,5],[-1,5],[-2,5],[0,1],[-5,13],[-1,3],[-2,5],[-2,4],[-1,1],[-53,47],[-4,1],[-3,1],[-2,0],[-8,0],[-3,0],[-3,0],[-4,0],[-4,-1],[-3,-1],[-3,-2],[-4,-2],[-2,-1],[-18,-12],[-1,-1],[-3,-2],[-1,-1],[-19,-16],[-3,-2],[-3,-3],[-2,-3],[-9,-11],[-32,-15],[-34,-6],[-9,1],[-20,9],[-3,2],[-8,19],[-1,6],[0,1],[-2,5],[-1,5],[-2,4],[0,2],[-17,39],[0,1],[-18,40],[-1,2],[-2,4],[-2,3],[-27,46],[0,1],[-2,3],[-33,48],[-3,4],[-3,3],[-2,3],[-3,3],[-3,2],[-32,22],[-3,3],[-4,1],[-3,2],[-3,1],[-4,1],[-3,0],[-53,6],[-15,1],[-14,4],[-32,15],[-79,42],[-13,12],[-11,16],[-34,76],[-17,38],[-7,24],[0,4],[3,15],[0,2],[1,5],[0,5],[0,5],[0,6],[0,5],[-1,5],[0,2],[-3,18],[-1,3],[-1,5],[-1,4],[-1,5],[-2,5],[-2,4],[-2,4],[-2,4],[-3,4],[-2,3],[-38,50],[-27,33],[-20,24],[-25,18],[-6,9],[-2,25],[19,95],[-25,35],[-5,8],[23,38],[27,20],[19,43],[12,-2],[9,12],[69,93],[-56,22],[-5,4],[-40,33],[-10,17],[-7,19],[-1,3],[2,16],[20,85],[11,23],[8,11],[0,1],[3,3],[3,3],[3,3],[2,4],[2,4],[2,4],[2,5],[2,4],[1,5],[1,2],[4,16],[1,2],[1,5],[1,5],[0,5],[0,5],[1,5],[0,2],[0,11],[-47,76],[-16,53],[-2,2],[-150,150],[-1,1],[-3,2],[-3,3],[-3,2],[-1,0],[-21,12],[-2,2],[-4,1],[-3,1],[-4,1],[-4,1],[-3,0],[-18,0],[-4,0],[-3,-1],[-4,-1],[-12,-3],[-3,-1],[-4,-2],[-3,-1],[-1,-1],[-15,-9],[-2,-2],[-1,0],[-17,-13],[-35,-14],[-11,-2],[-16,3],[-2,2],[-3,3],[-3,8],[0,2],[8,70],[0,2],[0,5],[0,5],[0,5],[-6,89],[-1,17],[0,3],[-1,5],[-1,5],[-1,5],[-1,2],[-15,59],[-1,2],[-1,3],[-19,58],[0,1],[-2,5],[-1,3],[-20,45],[-1,2],[-2,4],[-2,4],[-3,4],[-2,3],[-3,3],[-3,3],[-3,3],[-1,1],[-15,12],[-2,1],[-1,1],[-75,53],[-132,92],[-3,3],[-2,0],[-32,18],[-2,1],[-40,-26],[-26,4],[-6,-1],[-17,0],[-22,-4],[-49,56],[-73,0],[-46,-1],[-31,-3],[-40,-4],[-34,-4],[-140,-23],[-3,-1],[-4,-2],[-3,-2],[-3,-2],[-1,-1],[-12,-11],[-3,-2],[-3,-3],[-2,-3],[-1,-1],[-24,-32],[-2,-2],[-2,-4],[-2,-4],[-3,-4],[0,-2],[-18,-40],[-1,-3],[-2,-4],[-1,-4],[-15,-51],[-1,-1],[-1,-5],[-1,-2],[-9,-46],[-1,-2],[0,-5],[-1,-5],[0,-5],[0,-10],[1,-43],[0,-1],[1,-5],[0,-5],[1,-5],[1,-5],[1,-5],[1,-1],[10,-33],[1,-3],[1,-5],[2,-4],[2,-3],[18,-35],[1,-1],[2,-4],[2,-4],[2,-3],[9,-11],[26,-43],[-81,-40],[-6,-1],[-5,0],[-34,4],[-19,4],[-8,3],[-9,8],[-9,17],[0,7],[1,2],[9,140],[0,3],[1,5],[-1,5],[0,5],[0,6],[-1,5],[-1,4],[-8,33],[0,1],[-1,5],[-2,4],[-1,5],[-2,4],[-2,4],[-3,4],[-1,2],[-13,21],[-2,2],[-2,3],[-3,4],[-3,3],[-29,28],[-3,2],[-47,39],[-3,2],[-3,2],[-4,2],[-3,1],[-1,1],[-16,6],[-3,0],[-3,1],[-21,4],[-1,0],[-3,1],[-6,0],[-41,-3],[-60,22],[-46,36],[27,81],[10,30],[44,55],[11,9],[13,11],[11,22],[21,41],[3,6],[1,7],[5,39],[-1,67],[-13,57],[-7,21],[-33,46],[-94,50],[-5,3],[-6,0],[-50,5],[-10,-6],[-22,-16],[-6,-18],[-1,-35],[4,-17],[38,-58],[9,-30],[3,-11],[0,-17],[0,-7],[-15,-80],[0,-4],[-16,-37],[-26,-27],[-125,-130],[-40,-42],[-3,-2],[-3,-2],[-4,-1],[-3,-2],[-1,0],[-21,-5],[-2,-1],[-4,0],[-3,0],[-123,-1],[-11,-1],[-20,-10],[-12,-9],[13,-4],[36,-8],[3,0],[3,-2],[3,-1],[33,-16],[4,-2],[3,-2],[3,-2],[3,-3],[3,-3],[1,0],[25,-29],[2,-2],[3,-4],[2,-4],[2,-4],[3,-4],[1,-4],[2,-4],[1,-4],[22,-84],[0,-5],[-1,-16],[0,-1],[0,-5],[-1,-5],[-1,-5],[-1,-5],[-1,-5],[-1,-4],[-6,-16],[0,-1],[-2,-4],[-1,-5],[-3,-4],[-2,-4],[-2,-4],[-3,-3],[-3,-3],[0,-1],[-21,-22],[-2,-2],[-3,-3],[-3,-2],[-3,-2],[-40,-24],[-4,-2],[-3,-2],[-3,-1],[-4,-1],[-1,0],[-37,-6],[-3,0],[-3,0],[-4,0],[-1,0],[-23,3],[-3,0],[-1,0],[-50,12],[-16,3],[-2,0],[-66,17],[-18,-1],[-36,-8],[-10,-4],[-9,-10],[-17,-22],[-5,-13],[0,-2],[0,-20],[3,-12],[5,-10],[1,-2],[8,-7],[60,-49],[3,-3],[3,-3],[3,-3],[2,-4],[3,-3],[0,-1],[12,-21],[2,-3],[2,-4],[2,-4],[1,-2],[7,-20],[2,-3],[1,-5],[1,-4],[1,-5],[1,-5],[1,-5],[0,-6],[0,-2],[1,-17],[0,-8],[-1,-5],[0,-5],[-1,-5],[-1,-5],[0,-1],[-5,-19],[-1,-4],[-2,-5],[-1,-5],[-2,-4],[-2,-4],[-2,-2],[-6,-12],[-1,-2],[-3,-4],[-2,-3],[-28,-34],[-2,-3],[-3,-3],[-3,-3],[-4,-3],[-27,-18],[-3,-2],[-3,-2],[-3,-1],[-4,-1],[-2,-1],[-44,-10],[-1,-1],[-2,0],[-34,-5],[-2,0],[-3,0],[-4,0],[-3,0],[-2,1],[-80,17],[-2,1],[-4,1],[-3,2],[-2,1],[-48,26],[-2,1],[-2,1],[-24,16],[-1,1],[-4,2],[-2,2],[-14,13],[-1,1],[-3,3],[-2,3],[-2,2],[-8,11],[-1,1],[-3,4],[-2,4],[-2,4],[-2,5],[-1,4],[-7,19],[0,1],[-2,4],[-1,5],[-1,5],[-1,5],[-1,5],[0,5],[0,6],[0,5],[0,5],[4,32],[-1,10],[-3,10],[0,1],[-21,10],[-51,15],[-33,3],[-24,-2],[-19,-5],[-3,0],[-3,-1],[-1,0],[-5,0],[-4,0],[-3,0],[-16,1],[-4,1],[-3,1],[-4,1],[-25,10],[-2,1],[-4,2],[-1,1],[-14,9],[-47,57],[-12,18],[-20,23],[-18,17],[-19,14],[-46,27],[-77,33],[-1,1],[-3,1],[-45,25],[-1,1],[-3,2],[-3,2],[-3,2],[-24,23],[-1,1],[-3,3],[-2,3],[-3,3],[-3,4],[-2,4],[0,1],[-7,12],[-1,3],[-1,3],[-12,28],[-15,32],[-1,0],[-1,5],[-2,3],[-13,38],[-23,46],[-25,45],[-11,17],[-29,29],[-3,3],[-3,3],[-138,175],[-3,3],[-2,4],[-3,4],[-20,39],[-52,61],[-34,36],[-24,11],[-124,34],[-16,0],[-9,-3],[-20,-15],[-25,-19],[-24,-30],[-68,-140],[-1,-4],[-3,-4],[-1,-2],[-12,-19],[-1,-1],[-3,-4],[-3,-3],[-3,-3],[-3,-3],[-2,-2],[-5,-4],[-1,0],[-48,-34],[-3,-2],[-4,-2],[-3,-2],[-1,0],[-35,-12],[-62,3],[-38,7],[-3,1],[-4,1],[-3,1],[-73,36],[-3,2],[-3,1],[-16,11],[-3,3],[-1,0],[-45,38],[-2,2],[0,1],[-7,70],[-21,23],[-57,40],[-49,21],[-46,12],[-38,-4],[-61,-15],[-63,-18],[-54,-19],[-33,-8],[-25,-15],[-28,-37],[-5,-32],[-22,10],[-7,7],[-13,14],[-16,34],[-7,49],[14,28],[43,15],[31,8],[33,12],[23,14],[35,35],[4,4],[4,29],[-12,5],[-8,3],[-29,-6],[-63,67],[-25,19],[-21,38],[0,39],[31,39],[19,44],[-6,46],[-8,29],[-18,32],[-8,8],[-10,9],[-44,-22],[-34,-13],[-32,-3],[-27,-9],[-51,-1],[-45,15],[-31,23],[-66,37],[-20,17],[-30,35],[-25,48],[-20,18],[-30,1],[-33,-10],[-46,-16],[-25,7],[-16,21],[24,47],[6,46],[-3,30],[6,36],[-4,38],[-59,29],[-24,6],[-59,2],[-28,-12],[-30,-15],[-30,29]],[[7692,29898],[-10,-35],[-13,-27],[-6,-41],[-11,-34],[-3,-53],[2,-39],[-20,-22],[-16,-19],[-25,-47],[26,-31],[18,-41],[11,-53],[3,-44],[12,-23],[0,-31],[-25,-46],[-43,5],[-39,-31],[-19,-16],[-27,-25],[-32,-20],[-47,-12],[10,-47],[-11,-41],[1,-34],[36,-23],[19,-27],[-18,-23],[-17,-24],[-8,-34],[10,-38],[15,-70],[44,-64],[-6,-51],[8,-38],[26,-38],[-19,-54],[-12,-32],[-19,-20],[3,-38],[14,-26],[21,-7],[26,-10],[7,-46],[-22,-20],[-35,-48],[-31,-17],[-21,-9],[-14,-45],[12,-33],[13,-34],[28,-17],[35,-31],[26,-8],[-1,-34],[-13,-24],[-23,-18],[-28,-49],[4,-35],[4,-36],[-28,-29],[-34,-16],[-19,-19],[-7,-58],[20,-42],[-20,-34],[-7,-50],[-13,-55],[-30,-7],[-38,10],[-16,-35],[-21,-37],[5,-36],[3,-48],[-8,-38],[-14,-34],[59,-91],[29,-19],[21,-7],[27,-2],[20,0],[21,3],[38,6],[43,-41],[31,-32],[26,-8],[43,5],[35,-32],[28,-10],[4,-31],[-5,-30],[2,-33],[35,-10],[34,32],[27,-11],[32,-3],[24,-18],[15,-43],[-14,-22],[-34,-25],[12,-66],[-13,-28],[-16,-24],[-21,-33],[-22,-24],[9,-40],[-12,-34],[-25,-17],[-26,-14],[-27,-22],[-17,-22],[10,-33],[10,-33],[-29,-20],[-21,-19],[22,-28],[21,-46],[21,-40],[10,-43],[18,-31],[25,-27],[20,-21],[46,-22],[19,-21],[16,-27],[15,-29],[27,2],[22,14],[13,-41],[7,-38],[13,-29],[26,-9],[25,8],[16,34],[22,15],[32,-7],[24,-22],[16,-24],[22,-26],[23,-20],[17,-30],[23,-25],[9,-46],[2,-37],[19,-23],[16,-31],[-5,-62],[-11,-21],[-7,-13],[5,-40],[11,-27],[23,-11],[-7,-45],[-15,-36],[-13,-49],[29,-35],[22,-8],[31,-9],[5,-55],[-5,-48],[33,-17],[37,16],[30,6],[21,-6],[33,-14],[-12,-25],[-7,-29],[-12,-40],[18,-33],[17,-37],[-5,-45],[28,16],[34,18],[33,13],[52,-19],[39,3],[22,-20],[14,-26],[33,-1],[38,-11],[24,-8],[35,2],[34,11],[22,-13],[21,-16],[21,-15],[12,-25],[-18,-34],[-34,-32],[3,-56],[21,-41],[6,-29],[-12,-33],[-48,-10],[-28,0],[-24,-19],[23,-62],[13,-40],[13,-48],[16,-24],[16,-22],[28,-17],[25,-13],[92,31],[41,-31],[21,-21],[20,4],[16,19],[17,23],[29,11],[20,14],[8,-31],[5,-47],[-6,-35],[-42,-57],[-36,-47],[-23,-33],[-22,-9],[-1,-62],[-6,-52],[-15,-22],[-29,-23],[-29,-17],[7,-43],[7,-32],[-19,-42],[-8,-42],[-22,-13],[-19,-18],[-31,-18],[15,-57],[2,-29],[15,-43],[18,-24],[-31,-21],[-36,-12],[-52,-56],[-34,-9],[-30,14],[-27,-7],[-26,-11],[-31,-10],[-65,-72],[-70,-93],[-171,-227],[-16,-12],[-3,-3],[-26,-21],[-11,-42],[-17,-22],[-19,-23],[-22,-7],[-21,-7],[-24,-5],[-23,-5],[-25,-15],[-27,-11],[-22,-25],[-13,-37],[-1,-31],[-12,-30],[-17,-32],[-19,-19],[-41,-26],[-42,-41],[-52,-65],[-141,-173],[-265,-328],[-13,-19],[-302,-467],[-15,-21],[-318,-341]],[[6848,21589],[-4,-5],[-205,-242],[-170,-203],[-380,-450],[-110,-130],[-213,-252],[-54,-64],[-254,-303],[-154,-185],[-135,-160],[-143,-173],[-154,-182],[64,-6],[-11,-40],[-1,-41],[15,-32],[22,-43],[6,-35],[0,-42],[-17,-41],[-7,-38],[19,-31],[35,-4],[25,3],[19,-12],[9,-29],[32,-10],[24,-5],[22,-54],[0,-37],[-27,-35],[-22,-33],[-19,-31],[-24,9],[-24,5],[-23,6],[-28,-8],[-25,-4],[-37,80],[-10,38],[-10,29],[-18,18],[-32,24],[-35,1],[-25,-18],[-25,1],[-16,48],[-17,22],[-27,28],[-2,10],[-5,6],[-8,11],[-34,45]],[[4635,18995],[8,30],[0,28],[-24,14],[-26,12],[-34,20],[-4,3],[-19,10],[-37,23],[-25,21],[-6,5],[-13,25],[-3,16],[1,27],[0,1],[3,11],[15,12],[3,2],[22,12],[3,1],[15,5],[168,49],[51,10],[22,14],[16,15],[-7,18],[-25,16],[-70,3],[-66,28],[-38,86],[-7,38],[-5,42],[3,128],[2,4],[-3,72],[-12,50],[-10,19],[-24,34],[-7,2],[-6,9],[-35,21],[-52,20],[-53,25],[-10,6],[-19,12],[-7,6],[-27,23],[-6,13],[-6,11],[-17,36],[-22,54],[-67,148],[-89,85],[-13,13],[-41,31],[-44,39],[-26,38],[-59,73],[-13,7],[-6,2],[-7,3],[-6,3],[-109,22],[-19,9],[-18,19],[-14,44],[-9,15],[-17,30],[-17,30],[-62,14],[-43,-22],[-3,-1],[-3,-2],[-3,-3],[-3,-2],[-3,-3],[-3,-4],[-2,-3],[-3,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-5],[-1,-5],[-1,-4],[-2,-5],[0,-5],[-1,-5],[0,-6],[0,-5],[0,-226],[-35,-76],[-15,-6],[-16,7],[-18,29],[20,93],[1,2],[0,5],[1,5],[0,6],[1,5],[-1,5],[0,5],[-1,5],[0,5],[-1,5],[-1,2],[-40,153],[-1,2],[-1,5],[-2,4],[-2,5],[-2,4],[-2,4],[-2,4],[-3,3],[-3,3],[-3,3],[-3,3],[-2,2],[-122,91],[-1,0],[-3,3],[-4,1],[-3,2],[-4,1],[-3,1],[-4,0],[-3,1],[-17,0],[-26,1],[-6,17],[5,8],[52,56],[3,4],[3,3],[2,4],[1,1],[17,30],[2,2],[2,5],[2,4],[1,4],[2,5],[1,5],[1,5],[1,5],[1,5],[0,3],[1,23],[1,2],[-58,79],[-69,5],[-53,-1],[-13,0],[-104,-3],[-118,158],[-6,20],[-4,38],[-5,58],[1,3],[3,4],[1,1],[10,14],[2,2],[2,3],[3,3],[3,3],[1,1],[13,10],[2,2],[14,9],[0,1],[3,2],[4,1],[3,2],[4,1],[3,1],[3,0],[19,2],[1,1],[3,0],[3,0],[20,-2],[4,0],[2,-1],[-5,92],[-3,4],[-6,6],[-14,23],[-3,38],[-1,29],[-2,7],[4,1],[8,21],[20,14],[22,2],[30,-11],[14,-7],[47,-16],[2,4],[3,3],[3,4],[2,3],[4,2],[3,3],[1,1],[7,4],[2,1],[3,2],[14,7],[1,1],[23,11],[28,19],[44,40],[28,34],[97,126],[61,85],[17,25],[7,9],[0,1],[-2,2],[-35,16],[-102,29],[-4,1],[-1,1],[-45,19],[-2,1],[-3,2],[-3,2],[-3,2],[-3,3],[-1,1],[-12,11],[-2,3],[-3,3],[-3,4],[-9,13],[-2,4],[-3,4],[-1,1],[-6,13],[-1,2],[-2,5],[-2,4],[-1,5],[-1,5],[-1,4],[-4,95],[0,4],[0,3],[10,57],[3,15],[0,2],[1,5],[0,1],[3,12],[1,1],[1,4],[0,2],[2,5],[2,5],[1,4],[2,3],[6,12],[1,2],[2,4],[3,4],[2,3],[3,3],[3,3],[15,15],[6,6],[3,3],[1,1],[13,10],[2,1],[3,2],[4,2],[3,2],[4,1],[1,0],[37,10],[3,0],[3,1],[3,0],[22,0],[110,2],[36,4],[20,6],[51,71],[13,24],[5,39],[5,79],[-6,10],[-13,15],[-30,21],[-46,22],[-20,5],[-13,0],[-11,-3],[-144,-57],[0,-1],[-4,-1],[-3,-1],[-1,0],[-16,-3],[-3,0],[-4,0],[-1,0],[-18,0],[-3,1],[-4,0],[-3,1],[-4,1],[-3,2],[-3,1],[-4,3],[-1,1],[-19,14],[-2,1],[-3,3],[-3,3],[-1,2],[-10,11],[-1,2],[-3,3],[-2,4],[-2,4],[-2,3],[-8,17],[-1,1],[-2,4],[-1,5],[-2,5],[-1,4],[-7,29],[0,1],[-1,4],[-10,50],[0,1],[-1,5],[-1,5],[0,5],[0,5],[0,2],[2,134],[-1,6],[-4,17],[-9,25],[35,32],[-52,56],[-226,6],[-32,13],[-2,1],[-67,29],[-73,29],[-15,-2],[-42,-49],[-17,-6],[-3,-2],[-24,-9],[-3,0],[-6,-2],[-8,5],[-17,3],[-23,11],[-5,4],[-35,24],[-15,21],[26,37],[17,17],[15,16],[14,21],[9,22],[-1,9],[-76,64],[-22,33],[-2,2],[-60,136],[-3,8],[-9,26],[-21,65],[-23,75],[-3,87],[4,40],[2,22],[0,9],[0,1],[2,13],[-4,15],[-1,6],[-11,16],[-7,10],[-19,15],[-17,6],[-25,12],[-2,1],[-41,34],[-26,29],[-11,12],[-45,76],[-36,116],[-1,28],[-5,9],[6,53],[9,60],[11,55],[-38,49],[-44,50],[-45,86],[-37,98],[-2,4],[3,21],[6,52],[-1,16],[-4,34],[-60,85],[-29,41],[-4,4],[-3,5],[-3,4],[5,83],[3,39],[-4,20],[-2,9],[-3,18],[-7,8],[-6,6],[-40,47],[-79,10],[-64,31],[-29,37],[-22,52],[-28,52],[-37,69],[-33,31],[-81,8],[-5,1],[-22,-1],[-4,0],[-3,1],[-35,14],[-42,56],[-78,100],[-33,40],[-27,32],[-46,118],[4,91],[-4,140],[-2,80],[-2,67],[-26,43],[-10,10],[-11,8],[-67,20],[-15,12],[-20,16],[-16,15],[-23,20],[-85,133],[-11,17],[-10,9],[-22,2],[-3,2],[-7,-2],[-24,-21],[-28,50],[-33,25],[-86,40],[-19,8],[-114,59],[-57,122],[-21,87],[-17,22],[-67,89],[-57,26],[-86,41],[-62,46],[-32,43],[-17,69],[-9,86],[-13,198],[-13,85],[-5,38],[-81,206],[-7,18],[-8,79],[26,107],[54,2],[345,-10],[79,-24],[114,37],[20,17],[11,30],[7,21],[33,98],[18,29],[67,221],[8,40],[25,133],[20,95],[25,114],[53,190],[3,10],[29,85],[1,71],[-12,104],[-13,47],[-14,47],[-56,71],[-30,39],[-48,61],[-56,102],[-37,198],[-3,163],[46,147],[17,65],[30,41],[20,15],[15,7],[1,0],[4,2],[30,-12],[21,-11],[28,-8],[32,-10],[208,11],[34,3],[21,10],[41,30],[22,33],[22,47],[120,382],[13,249],[0,10],[-4,14],[-7,22],[-17,34],[0,2],[-2,4],[-2,5],[-22,65],[-2,4],[0,2],[-22,83],[-1,3],[-1,5],[-1,5],[0,2],[-1,7],[-15,127],[-1,3],[0,3],[0,2],[-7,86],[-17,122],[-7,48],[-1,22],[3,19],[82,231],[1,1],[1,5],[1,5],[19,77],[1,3],[11,57],[4,17],[0,3],[1,5],[1,3],[9,87],[13,116],[0,2],[0,5],[0,5],[0,5],[0,3],[-5,61],[0,2],[0,5],[-1,5],[-1,5],[-1,5],[-2,5],[-1,2],[-53,142],[-1,2],[-16,40],[0,1],[-3,3],[-3,4],[-1,2],[-70,109],[-6,9],[-1,1],[-2,4],[-2,5],[-2,4],[-2,4],[0,2],[-11,35],[-19,25],[-1,2],[-45,57],[-8,11],[-25,16],[-1,1],[-2,1],[-3,3],[-1,1],[-60,52],[-2,2],[-3,3],[-2,3],[-46,57],[-3,3],[-2,4],[-2,4],[-2,4],[-19,40],[-30,82],[-1,5],[-1,5],[0,5],[0,5],[-1,4],[0,16],[0,19],[0,1],[0,4],[7,208],[2,48],[0,1],[5,138],[0,1],[4,88],[0,1],[0,5],[0,2],[12,98],[0,2],[1,5],[1,5],[1,5],[1,2],[8,27],[11,34],[1,2],[0,1],[22,61],[6,16],[2,6],[0,3],[-1,1],[-3,17],[-13,52],[0,1],[0,1],[-24,106],[-1,4],[0,1],[-7,36],[-9,51],[-51,139],[0,38],[0,90],[57,89],[15,30],[-5,34],[-21,130],[-13,85],[-12,77],[-1,59],[5,64],[2,53],[0,7],[17,194],[18,-30],[5,-3],[12,-27],[75,-127],[1,-1],[27,-34],[47,-50],[10,-10],[74,-65],[58,-43],[41,-27],[50,-26],[38,-19],[3,-2],[25,-9],[26,-9],[11,-3],[29,-2],[33,-5],[40,0],[17,2],[39,-1],[41,-1],[25,-6],[16,-3],[5,0],[23,-6],[20,-7],[23,-4],[26,-2],[3,-1],[12,-1],[10,-2],[26,-2],[24,-3],[27,0],[13,2],[15,2],[11,0],[14,0],[25,2],[20,0],[22,3],[24,0],[21,3],[20,2],[11,2],[3,1],[42,9],[14,5],[24,6],[23,3],[9,2],[16,4],[18,5],[21,6],[24,6],[20,5],[23,7],[49,17],[12,4],[15,6],[2,0],[2,1],[51,18],[10,4],[6,1],[81,29],[8,4],[22,7],[23,9],[29,10],[21,7],[3,2],[120,45]],[[16451,29326],[-47,-6],[-70,12],[-27,-20],[-20,-52],[3,-39],[30,-58],[6,-13],[8,-18],[1,-3],[-1,-2],[-1,-5],[-1,-3],[-30,-49],[-11,-18],[-3,-2],[-3,-1],[-1,0],[-22,-9],[-3,-1],[-15,-4],[-9,-5],[-18,-25],[-12,-22],[-12,-62],[-17,-92],[-3,-18],[-1,-2],[-6,-10],[-56,-87],[-18,-39],[-11,-41],[-8,-26],[32,-2],[26,-2],[48,17],[2,1],[3,2],[4,2],[19,1],[28,2],[10,-2],[13,-3],[16,-10],[18,-14],[27,-28],[15,-24],[7,-20],[0,-31],[-1,-2],[-3,-12],[-18,-15],[-18,-9],[-26,-7],[-30,0],[-25,9],[-65,43],[-6,4],[-5,0],[-12,0],[-1,-1],[-10,-4],[-1,-1],[-7,-8],[-6,-14],[-34,-131],[-4,-27],[-1,-17],[3,-35],[-39,6],[-148,22],[-28,3],[-10,27],[-8,35],[-30,4],[-51,3],[-88,7],[-26,-33],[13,-39],[3,-36],[8,-38],[17,-28],[-2,-46],[-17,-38],[8,-80],[3,-26],[0,-3],[-21,-9],[-44,34],[-15,7],[-9,5],[-26,8],[-48,9],[-17,4],[-26,4],[-13,10],[-31,27],[-1,1],[-27,9],[-23,0],[-18,-20],[15,-64],[4,-53],[-18,-17],[-25,0],[5,54],[-4,33],[-19,-60],[8,-48],[9,-54],[26,-31],[25,-62],[-29,-20],[0,-73],[-15,-40],[3,-31],[35,-9],[43,-8],[24,-31],[46,1],[20,13],[23,-6],[-41,-78],[24,-40],[-17,-45],[20,-53],[43,-9],[-5,-43],[-11,-38],[-6,-30],[-9,-34],[-50,-16],[-22,8],[-25,14],[-23,1],[-7,32],[-10,43],[-40,21],[-18,24],[-25,12],[-77,-11],[-27,-8],[-58,-9],[-45,13],[-35,-12],[-16,28],[-30,-11],[-36,58],[-17,35],[-30,12],[-33,-13],[-19,19],[0,39],[-21,24],[-32,12],[-29,37],[-21,8],[-28,-8],[-38,-13],[-33,-15],[-37,18],[-11,46],[-12,27],[-36,-18],[-50,48],[-16,-19],[-12,-33],[-24,-16],[-27,1],[-30,-33],[5,-46],[-19,-12],[-16,-26],[7,-29],[19,-44],[3,-45],[-2,-53],[-19,-38],[-99,1],[-7,-40],[-36,-39],[-19,21],[-39,14],[-34,-54],[-16,-56],[31,-31],[-13,-26],[-20,-39],[-17,-58],[7,-28],[15,-33],[-18,-36],[-21,-18],[-24,-16],[-16,-27],[-10,-32],[-25,-16],[-5,-32],[-12,-30],[-19,-17],[8,-28],[16,-28],[24,-3],[10,-27],[-1,-30],[10,-30],[20,3],[25,-26],[0,-35],[21,-21],[17,-24],[9,-32],[-12,-33],[5,-29],[-25,-12],[2,-40],[-8,-36],[-20,-19],[-18,-16],[-20,-32],[-9,-27],[9,-35],[-28,-28],[-22,-10],[-21,-27],[-21,-17],[-24,-24],[-26,-27],[-29,-33],[-1,0],[-35,-39],[-23,-28],[-24,-32],[-22,-18],[4,-32],[12,-25],[19,-31],[0,-35],[-25,-31],[-14,-22],[5,-40],[-9,-29],[-18,-23],[2,-31],[-14,-22],[-27,2],[-29,-23],[2,-40],[-11,-30],[13,-30],[-2,-30],[3,-32],[19,-27],[19,-29],[6,-43],[-25,-32],[-26,-3],[-30,-4],[-19,-31],[-12,-27],[-25,-19],[14,-36],[49,-32],[-14,-33],[9,-31],[-25,-29],[4,-35],[-8,-35],[-13,-44],[-5,-29],[16,-20],[19,-36],[-5,-37],[-20,-23],[21,-27],[-3,-32],[11,-25],[22,-18],[19,-23],[26,-25],[32,13],[30,-7],[26,-6],[8,-30],[3,-34],[28,-13],[22,12],[20,10],[23,-15],[31,-8],[27,-27],[0,-31],[8,-36],[25,-9],[24,-6],[15,-23],[21,-8],[40,7],[24,-2],[17,-19],[29,-1],[24,-13],[31,-2],[22,6],[24,-1],[23,3],[20,-11],[22,-31],[26,-6],[31,-28],[20,-17],[20,13],[17,33],[24,11],[28,-17],[20,-23],[34,-26],[25,-4],[24,21],[25,-2],[23,16],[21,11],[34,7],[24,-8],[14,-26],[5,-34],[6,-29],[26,-12],[22,5],[24,4],[16,-18],[23,-15],[24,-14],[20,-12],[37,17],[29,-19],[-20,-15],[-27,-19],[-19,-19],[-22,-2],[-28,13],[-25,6],[-21,-1],[-29,9],[-37,-5],[-24,-2],[-26,-5],[-31,-9],[-24,0],[-33,10],[-23,5],[-24,-2],[-22,-4],[-27,-6],[-20,-13],[-20,-19],[-53,-50]],[[14440,23967],[-40,5],[-27,3],[-26,-1],[-22,-16],[-31,-5],[-25,-8],[-29,-15],[-16,-19],[-1,-32],[-7,-36],[-22,3],[-28,1],[-21,8],[-28,14],[-25,-11],[-17,-20],[-22,2],[-28,-4],[-27,2],[-24,10],[-11,29],[-19,22],[-23,11],[-20,-12],[-27,-14],[-24,10],[-18,15],[-19,15],[-19,-18],[-21,-8],[-24,10],[-22,-3],[-20,-29],[-14,-37],[-13,-35],[-21,-13],[-22,-15],[-22,7],[-26,11],[-7,35],[-27,19],[1,31],[-16,24],[-35,0],[-33,-11],[-19,-11],[-22,0],[-19,-14],[-26,-2],[-24,14],[-21,2],[-23,43],[-12,26],[-21,-1],[-22,-27],[-24,-16],[-32,-18],[-28,-14],[-28,-19],[-24,-13],[-26,-21],[-20,10],[-27,1],[-29,-6],[-37,12],[-59,-14],[-26,20],[-46,22],[-49,11],[-31,-14],[-45,-55],[-10,-64],[-17,-22],[-30,3],[-43,13],[-41,22],[-38,-9],[-27,-27],[-10,-32],[-5,-45],[-31,15],[-27,11],[-94,-1],[-30,-17],[-20,10],[-36,8],[-54,-13],[-68,-7],[-166,-65],[-57,-23],[-1,0],[-33,-12],[-19,-8],[-59,-23],[-6,-2],[-35,-14],[-31,-11],[-2,-1],[-80,-31],[-32,-13],[-13,-5],[-25,-8],[-22,-8],[-96,-37],[-118,-46],[-233,-91],[-32,-10],[-28,-13],[-154,-60],[-375,-146],[-141,-64],[-412,-187],[-17,-7],[-45,-16],[-23,-8],[-590,-209],[-59,-21],[-49,-19]],[[9198,22495],[-47,-17],[-401,-150],[-116,-44],[-275,-109],[-363,-145],[-116,-44],[-5,-3],[-162,-62],[-865,-332]],[[54480,25114],[3,-68],[-42,-89],[-18,-61],[-56,-156],[-40,-92],[-104,-218],[-16,-76],[33,-77],[-40,-63],[-27,-83],[-14,-44],[-68,-36],[-125,-267],[16,-74],[-43,-77],[-64,-21],[-115,-197],[4,-105],[-64,-88],[4,-62],[-50,-88],[-30,-56],[-146,-87],[-51,-33],[-12,-87],[-94,-116],[-65,-27],[-81,-131],[-205,-213],[-45,-88],[-72,-24],[-82,-145],[-118,-87],[-117,-150],[-72,-48],[-27,-9],[-40,-36],[-14,-32],[-69,-24],[-52,-50],[-10,-35],[-93,-59],[-6,-31],[-44,-75],[-51,-36],[-25,-43],[-76,-70],[-14,-32],[-22,-11],[-12,-61],[-40,-50],[-43,-26],[-16,-57],[-4,-42],[-60,-73],[-26,-76],[-62,-1],[-45,19],[-32,-23],[-14,-57],[-38,-16],[-23,-30],[-14,-70],[-44,-30],[-37,-21],[-45,-95],[-50,-18],[-32,-75],[-21,-8],[-2,-65],[25,-22],[3,-67],[-20,-38],[-56,-7],[-55,23],[-82,-96],[-55,-71],[-25,-73],[-54,-35],[-17,-26],[-57,-38],[-49,-63],[-27,-38],[-26,46],[-48,-2],[-41,54],[-36,-11],[-20,-71],[-70,-39],[-75,-99],[-95,-96],[-9,-44],[-23,-19],[-36,-89],[0,-40],[-69,-41],[-39,-87],[-24,-58],[0,-103],[-40,-59],[-44,-38],[-11,-73],[-87,4],[-22,-19],[-19,-97],[-10,-61],[39,-81],[25,-85],[19,-30],[-47,-50],[-71,-7],[-67,-59],[-32,-36],[-52,1],[-19,-59],[-79,-109],[-108,-142],[-61,-154],[-13,-86],[-91,-98],[-121,-90],[-27,9],[-123,-214],[-20,-59],[-36,-45],[-44,-123],[-5,-34],[9,-41],[42,-47],[23,-69],[31,-17],[18,-10],[5,-37],[-28,-38],[22,-63],[28,-19],[22,13],[19,27],[20,6],[50,-34],[18,-17],[-9,-71],[11,-27],[-31,-50],[-81,46],[-29,-6],[-42,-28],[-49,56],[-21,-4],[-34,-6],[-35,-54],[-10,-30],[-72,-52],[-57,-29],[-51,-12],[-12,-127],[-57,-26],[-46,20],[-20,22],[-59,-81],[-18,-84],[20,-23],[-12,-80],[23,-67],[-38,-36],[-110,12],[-11,-29],[-3,-36],[-14,-30],[-20,-70],[-10,-26],[3,-15],[10,-52],[5,-34],[-57,-158],[-19,-72],[32,-48],[4,-66],[70,-66],[115,-76],[-7,-66],[-120,-194],[-118,-43],[-60,-91],[-20,-65],[-83,-65],[-93,-174],[-81,-85],[-102,-143],[-169,-109],[-45,-63]],[[47662,14259],[-54,-20],[-34,-11],[-16,-12],[-35,-22],[-26,-7],[-30,15],[-21,-1],[-37,-20],[-28,-32],[-32,-2],[-99,-33],[-52,-15],[-30,9],[-38,11],[-31,-2],[-29,-23],[-20,16],[-30,19],[-17,-23],[-47,23],[-28,-3],[-39,3],[-39,10],[-33,33],[-45,17],[-21,9],[-17,18],[-20,43],[-21,9],[-19,18],[-20,16],[-24,10],[-17,26],[0,94],[37,24],[28,19],[26,40],[17,21],[32,22],[26,68],[-25,24],[-37,16],[-36,19],[-27,4],[-34,15],[-28,12],[-30,0],[-24,40],[-22,-39],[-11,-65],[-13,-44],[-18,-42],[-7,-32],[-2,-33],[-20,-63],[-15,-40],[-9,-28],[-14,-26],[-20,-14],[-32,-71],[-34,-66],[-23,9],[-16,21],[-50,-2],[-55,38],[-37,-13],[-40,-74],[-8,-47],[-23,-35],[-28,10],[-33,-6],[-14,33],[-37,43],[-20,22],[-25,4],[-13,23],[-26,36],[-17,36],[10,25],[31,45],[-7,31],[11,52],[15,21],[20,37],[-10,32],[-3,46],[-1,50],[30,65],[-20,19],[-33,2],[-55,2],[-21,-13],[-16,-19],[-16,-36],[-15,-29],[-22,-14],[-15,-21],[-26,-20],[-21,-1],[-34,71],[27,17],[12,24],[1,37],[2,32],[-23,44],[7,39],[14,22],[14,35],[24,24],[-20,46],[-19,20],[-30,17],[-31,-40],[-35,-25],[-37,-28],[-26,-25],[-19,-25],[-33,-63],[-13,-27],[-24,-24],[-26,-24],[-39,8],[-43,-13],[-28,-28],[-16,-28],[-25,-29],[-21,-40],[-5,-71],[-33,5],[-24,14],[-30,19],[-35,15],[-26,-25],[-20,-30],[-23,-21],[-16,-34],[-28,-32],[-49,-18],[-19,-16],[1,-34],[-41,-17],[-36,-46],[-24,-15],[-41,-15],[-30,-13],[-23,-28],[-31,-14],[-26,-27],[-16,-43],[-24,3],[-46,-15],[-44,-17],[-18,-42],[-15,-34],[-22,1],[-93,30],[-1,0],[-25,18],[-34,19],[-67,47],[15,29],[24,24],[3,11],[3,13],[5,18],[-12,34],[-24,16],[-24,11],[-21,3],[-40,-1],[-22,11],[-28,-12],[-45,-2],[-35,1],[-6,8],[-13,16],[6,27],[1,7],[-10,35],[-9,7],[-8,5],[-6,4],[-58,-44],[-1,-1],[-15,-40],[-20,-35],[-3,-1],[-17,-8],[-41,21],[-18,20],[-22,7],[-16,-4],[-10,-3],[-9,-3],[-2,-2],[-16,-17],[-24,-33],[-24,-11],[-10,16],[-11,17],[-29,39],[-22,3],[-20,-30],[-9,-36],[-25,-20],[-24,11],[-20,49],[-11,31],[-33,18],[-21,2],[-27,-10],[-3,-1],[-8,1],[-26,2],[-14,-4],[-19,-5],[-18,-47],[-2,-50],[-5,1],[-34,9],[-100,36],[-6,2],[-234,85],[-215,73],[-392,134],[-258,93],[-235,77],[-205,68],[-84,28],[-93,33],[-51,18],[-91,32],[-116,39],[-38,13],[-33,17],[-50,-29],[-30,3],[-37,12],[-21,12],[-65,60],[-20,29],[-16,16],[-7,7],[-37,39],[-32,20],[-22,4],[-11,2],[-10,2],[-14,-4],[-7,-2],[-12,-3],[-24,2],[-33,7],[-24,13],[-44,17],[-23,7],[-37,16],[-35,12],[-2,0],[-6,3],[-55,23],[-44,10],[-2,1],[-12,1],[-13,2],[-13,2],[-21,4],[-41,7],[-29,22],[-31,27],[-33,32],[-21,19],[-5,5],[-32,13],[-22,9]],[[40210,15423],[-8,76],[-50,460],[-25,228],[-16,146],[-20,24],[-94,114],[-22,26],[-115,139],[-227,273],[-183,221],[-8,11],[-122,147],[-25,30],[-368,444],[-51,105],[-64,125],[-113,131],[-70,82],[-190,229],[-33,35],[-18,16],[-58,49],[-7,7],[-28,24],[-141,121],[-59,51],[-133,114],[-33,28],[-80,69],[-60,51],[-73,63],[-126,109],[-54,46],[-91,77],[-11,9],[-42,37],[-85,76]],[[37307,19416],[35,-4],[73,-6],[69,-7],[2,0],[89,-9],[43,-4],[33,-3],[144,-15],[273,-26],[81,-8],[42,-4],[105,-9],[74,-8],[84,-8],[22,-1],[-22,42],[-110,212],[-21,38],[-29,59],[-129,253],[-27,50],[-114,223],[-161,314],[-26,50],[-24,48],[-109,211],[-31,60],[-26,50],[-21,40],[-84,162],[-27,55],[-34,67],[-54,103],[-48,94],[-6,11],[-16,32],[-16,30],[-1,1],[-21,42],[-12,22],[-10,19],[-67,128],[-16,30],[194,244],[117,147],[58,74],[50,62],[6,7],[40,53],[52,66],[48,61],[37,46],[106,135],[48,61],[31,34],[30,40],[6,7],[12,17],[-32,30],[-24,15],[-32,11],[-25,-2],[-24,-8],[-21,4],[-19,14],[-30,26],[-72,16],[-42,20],[-45,44],[-17,23],[-15,41],[-9,25],[-7,7],[-4,14],[-2,39],[8,39],[29,68],[4,25],[9,11],[17,9],[8,4],[1,1],[5,10],[1,3],[0,3],[0,11],[-4,21],[6,9],[40,65],[-1,5],[-1,5],[0,2],[-8,29],[-1,3],[-1,5],[-35,101],[-2,5],[-2,4],[-2,4],[-1,3],[-17,29],[-1,1],[-2,4],[-3,4],[-3,3],[-3,3],[-1,1],[-44,40],[-37,35],[-3,2],[-33,27],[-3,3],[-4,7],[-9,31],[-14,140],[-1,51],[0,4],[0,5],[-1,5],[-1,5],[-1,5],[-1,5],[0,1],[-6,19],[-1,4],[-2,4],[-2,5],[-2,4],[-2,4],[-3,3],[-1,1],[-8,12],[-2,2],[-2,3],[-3,3],[-3,3],[-4,3],[-3,2],[-23,13],[-3,2],[-3,1],[-4,2],[-24,6],[-4,1],[-24,4],[-3,1],[-3,0],[-62,2],[-45,6],[-41,18],[-2,1],[-4,1],[-3,1],[-1,0],[-16,3],[-3,0],[-71,7],[-3,0],[-26,1],[-4,-1],[-4,0],[-3,-1],[-2,-1],[-30,-10],[-1,0],[-3,-1],[-15,-7],[-46,-19],[-21,-7],[-3,0],[-74,102],[-1,2],[-22,124],[-7,50],[-6,78],[110,0],[3,0],[4,1],[3,1],[4,1],[2,1],[94,32],[2,1],[30,18],[3,2],[27,19],[29,17],[3,2],[3,3],[3,2],[3,3],[3,3],[10,13],[1,1],[2,3],[3,4],[2,4],[2,4],[2,4],[2,5],[1,5],[2,4],[1,5],[0,5],[1,5],[1,14],[0,1],[1,5],[0,5],[0,5],[-1,5],[0,5],[-1,5],[-1,5],[-1,5],[-2,5],[-1,4],[-1,1],[-16,38],[-1,3],[-2,4],[-1,1],[-14,27],[-2,4],[-2,2],[-1,3],[-1,3],[-2,25],[1,13],[72,41],[88,46],[2,1],[39,24],[-15,45],[-8,26],[-23,74],[-79,-26],[-50,-21],[-2,-1],[-3,0],[-4,-1],[-3,0],[-4,0],[-13,2],[-3,0],[-4,1],[-3,1],[-2,1],[-53,23],[-17,7],[-54,20],[-12,1],[-31,-7],[-59,-17],[-43,-18],[-46,-34],[-14,-14],[-18,-25],[-16,-27],[-23,-46],[-6,-26],[-2,-17],[0,-1],[-1,-5],[-1,-5],[-1,-5],[-2,-5],[0,-1],[-7,-18],[-1,-3],[-2,-5],[-2,-4],[-2,-4],[-3,-4],[-2,-3],[-3,-3],[-3,-3],[-1,-1],[-9,-9],[-2,-2],[-3,-2],[-4,-2],[-3,-2],[-4,-2],[-2,-1],[-29,-8],[-1,0],[-3,-1],[-3,-1],[-36,-4],[-1,-1],[-4,0],[-4,0],[-3,1],[-1,0],[-63,14],[-2,1],[-3,1],[-47,17],[-1,0],[-4,2],[-3,1],[-1,1],[-50,32],[-2,2],[-3,2],[-23,19],[-28,10],[-71,13],[-10,0],[-26,-8],[-1,0],[-3,-1],[-3,0],[-47,-6],[-1,0],[-4,0],[-3,0],[-4,1],[-2,0],[-31,7],[-2,1],[-3,1],[-1,0],[-99,42],[-216,171],[-1,1],[-3,3],[-3,3],[-3,3],[-1,2],[-22,29],[-1,2],[-3,3],[0,2],[-47,91],[-1,4],[-1,4],[-8,26],[0,1],[-45,76],[-25,34],[-4,4],[-31,43],[-91,59],[-41,108],[-4,10],[-2,27],[3,22],[11,17],[4,1],[1,1],[1,1],[7,-1],[2,-1],[8,-5],[17,-11],[10,-3],[82,-54],[3,0],[4,1],[3,1],[18,7],[4,1],[3,2],[3,2],[3,3],[3,3],[2,1],[19,20],[1,1],[3,3],[2,3],[4,6],[1,1],[2,3],[2,4],[2,4],[2,5],[2,4],[1,5],[20,67],[20,51],[2,4],[1,5],[1,5],[2,5],[0,4],[4,27],[0,1],[1,5],[0,5],[0,5],[0,5],[0,5],[-1,5],[0,5],[-1,5],[-1,1],[-3,15],[-1,4],[-2,5],[-1,4],[-2,4],[-2,5],[-3,4],[-2,3],[-2,2],[-30,41],[10,32],[0,1],[38,126],[1,1],[1,5],[1,5],[1,5],[1,5],[0,5],[0,3],[-31,25],[0,31],[-9,39],[5,38]],[[37307,19416],[-57,-30],[-73,-37],[-97,-50],[-20,-10],[-40,-20],[-204,-106],[-149,-76],[-43,-22],[-132,-68],[-39,-20],[-139,-71],[-28,-13],[-32,-17],[-11,-6],[-18,-9],[-29,-13],[-7,-4],[-88,-47],[-49,-25],[-65,-34],[-23,-11],[-48,-28],[-39,-25],[-397,-199],[-335,-174],[-139,-71],[-255,-128],[-230,-123],[-11,-6],[-21,-6]],[[34489,17967],[-30,24],[-23,13],[-41,29],[-30,44],[-33,30],[-136,86],[-102,79],[-18,11],[-27,7],[-182,33],[-50,2],[-53,-7],[-169,-45],[-3,-1],[-98,-19],[-4,0],[-3,0],[-3,0],[-76,6],[-4,0],[-1,1],[-9,2],[-2,0],[-23,6],[-226,-38],[-112,-16],[-85,-1],[-1,0],[-99,3],[-2,0],[-4,1],[-3,0],[-42,12],[-4,1],[-1,1],[-103,43],[-2,1],[-2,1],[-74,42],[-69,22],[-46,9],[-27,-3],[-31,-7],[-40,-10],[-2,-1],[-2,0],[-12,-2],[-2,0],[-3,0],[-3,0],[-49,4],[-1,0],[-4,0],[-3,1],[-4,1],[-37,15],[-2,1],[-2,1],[-21,11],[-2,1],[-3,2],[-3,3],[-3,2],[-1,1],[-21,21],[-2,2],[-2,3],[-14,16],[0,1],[-3,4],[-3,3],[-2,4],[-33,82],[0,1],[-1,5],[-1,5],[0,5],[-5,53],[0,4],[0,6],[0,5],[0,5],[1,5],[0,5],[1,1],[4,20],[0,4],[2,5],[1,5],[2,4],[16,40],[2,4],[2,5],[2,4],[2,3],[30,44],[1,1],[2,3],[3,3],[1,2],[24,24],[87,101],[9,12],[31,44],[4,7],[3,16],[0,5],[-3,10],[-41,69],[-3,3],[-2,1],[-15,3],[-12,-2],[-18,-13],[-18,-13],[-2,-1],[0,-1],[-13,-8],[-2,-2],[-1,0],[-16,-9],[-3,-2],[-13,-6],[-3,-2],[-23,-9],[-1,0],[-16,-5],[-2,-1],[-30,-9],[-20,-5],[-1,0],[-27,-7],[-1,0],[-25,-5],[-1,0],[-3,-1],[-4,0],[-3,0],[-1,0],[-72,27],[-43,16],[-17,7],[-64,24],[-1,-1],[-4,0],[0,-1],[-23,-6],[-2,-1],[-3,-1],[-168,-78],[-60,-17],[-44,-8],[-4,-1],[-71,7],[-52,14],[-19,1],[-25,20],[-32,41],[-16,22],[-13,49],[-3,13],[1,7],[10,47],[28,22],[27,9],[14,4],[11,-1],[74,-4],[37,-2],[46,-3],[126,17],[33,6],[147,26],[1,2],[11,31],[14,36],[10,56],[-2,39],[-7,39],[-4,16],[-15,33],[0,3],[-2,4],[-2,5],[-1,4],[21,52],[-4,33],[-3,32],[-5,32],[-10,1],[-350,36],[-455,47],[-8,1],[-131,11],[-394,31],[-78,5],[-94,7],[-90,5],[-30,4],[-19,1],[-182,11],[-157,10],[-199,15],[-82,5],[-23,2],[-25,1],[-8,0],[-14,2],[-36,3],[-8,0],[-15,1],[-70,5],[-259,18],[-54,5],[-334,26],[-460,36],[-234,26],[-15,2],[-20,2],[-32,3],[-3,1],[-47,5],[-11,1],[-244,27],[-76,9],[-238,26],[-1,2],[-26,36],[-18,29],[-24,17],[-27,18],[-14,23],[4,41],[4,35],[21,8],[14,44],[4,47],[12,32],[14,26],[8,38],[21,26],[14,23],[10,38],[-2,29],[-22,23],[-21,21],[-24,43],[-2,38],[-6,41],[-8,32],[-17,17],[7,35],[-3,41],[13,29],[2,38],[-8,32],[-7,38],[-14,26],[-4,46],[-8,29],[4,30],[-20,29],[2,29],[10,26],[4,29],[-12,41],[-2,29],[-4,41],[18,23],[20,17],[9,29],[56,53],[11,26],[8,41],[4,38],[-10,29],[-15,29],[-18,32],[-26,23],[-25,0],[-20,6],[-20,17],[-20,13],[-21,22],[-26,-6],[-27,12],[-20,3],[-22,0],[2,35],[-21,26],[-22,3],[-24,12],[-31,17],[-20,3],[-33,15],[-28,14],[-26,3],[-69,-6],[-23,20],[-16,24],[-18,20],[-15,29],[-16,32],[-26,18],[-6,29],[-10,32],[-15,35],[4,38],[15,32],[12,32],[-4,29],[-6,40],[-21,24],[-26,-9],[-20,3],[-23,6],[-20,5],[-20,15],[-12,26],[-34,34],[-23,19],[-19,-15],[-22,-20],[-20,0],[-27,8],[-26,18],[-10,41],[-20,26],[-27,20],[-14,26],[0,35],[-2,41],[-20,6],[-31,-3],[-30,3],[-27,-9],[-22,-12],[-24,-43],[-23,-32],[-22,0],[-24,0],[-19,-26],[-20,2],[-24,-11],[-19,-18],[-24,-3],[-24,15],[-63,26],[-17,-29],[-22,-17],[-18,-24],[-25,18],[-22,3],[-20,-3],[-27,-6],[-61,-52],[-20,-9],[-22,-15],[-18,24]],[[24102,22860],[-30,18],[-12,32],[-18,20],[-21,3],[-26,6],[-29,-6],[-24,-15],[-20,-20],[-21,-3],[-20,-12],[-20,0],[-18,-17],[-29,-9],[-26,15],[-31,6],[-18,-15],[-24,-9],[-21,-8],[-22,0],[-32,-9],[-25,6],[-20,5],[-25,-5],[-18,-15],[-12,-32],[-20,-23],[-19,-35],[-10,-32],[-16,-20],[-20,-6],[-23,0],[-20,35],[-16,32],[-29,8],[-22,-3],[-22,-8],[-25,3],[-22,0],[-24,5],[-19,21],[-20,14],[-26,3],[-17,21],[-22,20],[-16,26],[-20,12],[-23,20],[-22,-3],[-18,-14],[-21,-26],[-18,-18],[-18,-20],[-18,-18],[-29,-14],[-18,-21],[-18,-26],[-15,-29],[-18,-23],[-8,-32],[-16,-38],[-13,-29],[-14,-29],[-28,-32],[-18,-24],[-23,-8],[-14,-24],[-8,-8],[-8,-9],[-12,-26],[-25,-23],[-23,-3],[-20,0],[-4,0],[-27,1],[-52,2],[-3,-1],[-19,-5],[-28,-3],[-35,-6],[-28,6],[-27,-6],[-20,-17],[-22,-21],[-17,-29],[-6,-29],[-12,-32],[-20,-12],[-21,-11],[-8,-32],[8,-38],[9,-35],[4,-29],[-23,-23],[-16,-21],[-32,-26],[-27,-20],[-20,-27],[-6,-29],[-16,-37],[-21,2],[-22,-2],[-20,-3],[-27,-9],[-6,-35],[0,-38],[-14,-23],[-4,-29],[2,-29],[14,-29],[14,-32],[12,-24],[-20,-11],[-16,-26],[-24,-9],[-21,0],[-55,-6],[11,-26],[16,-38],[-16,-23],[-21,-15],[-12,-44],[24,-26],[17,-17],[20,-23],[22,-15],[-18,-20],[-20,-21],[-25,-8],[-24,0],[-26,2],[-27,6],[-20,-29],[8,-38],[0,-31],[-6,-30],[-24,-11],[-19,-18],[-24,-20],[-26,-21],[-9,-32],[11,-29],[4,-40],[12,-24],[26,3],[25,3],[-13,-29],[11,-29],[4,-35],[20,-12],[26,-14],[29,-3],[22,0],[16,-23],[-16,-24],[6,-32],[-6,-35],[-16,-34],[-16,-47],[10,-32],[20,-20],[20,-12],[9,-32],[-5,-38],[-12,-32],[-10,-38],[-16,-26],[-10,-32],[-4,-32],[8,-32],[22,-17],[16,-26],[21,-24],[14,-26],[12,-23],[8,-30],[16,-19],[21,5],[22,-20],[18,-15],[23,-20],[10,-29],[-18,-21],[-17,-20],[-26,-26],[-14,-32],[-12,-29],[-21,-15],[-20,-3],[-24,6],[-14,-25],[-17,-30],[-1,-42],[3,-40],[14,-26],[31,-17],[24,-12],[-4,-32],[-8,-38],[0,-32],[26,-20],[11,-26],[-19,-24],[-20,-14],[-24,-15],[-23,-5],[-20,-9],[-16,-18],[-10,-26],[-13,-26],[-20,-35],[-8,-38],[-4,-49],[-12,-38],[34,-26],[27,-24],[34,0],[0,-46],[-10,-44],[-18,-32],[18,-35],[0,-55],[-8,-29],[24,-17],[29,-18],[-17,-44],[13,-34],[10,-30],[-12,-32],[-17,-34],[4,-53],[-4,-41],[17,-49],[6,-44],[-12,-35],[16,-23],[63,-90],[6,-32],[-2,-52],[-6,-56],[8,-32],[22,-40],[18,-47],[35,-35],[14,-44],[8,-43],[17,-21],[40,5],[18,13],[15,26],[12,41],[26,14],[21,-17],[28,0],[14,23],[25,23],[18,-32],[-4,-34],[14,-35],[24,-21],[23,0],[24,-6],[28,24],[33,11],[37,3],[24,-11],[32,-29],[19,-30],[-6,-32],[14,-29],[22,-14],[33,3],[34,11],[45,3],[20,-3],[22,-23],[15,-32],[24,-14],[18,-15],[-14,-32],[-30,-23],[-21,-26],[-2,-44],[19,-35],[10,-47],[-15,-32],[-14,-35],[0,-34],[6,-41],[-6,-41],[-18,-49],[-2,-29],[-2,-44],[6,-41],[8,-43],[14,-35],[21,-29],[16,-30],[30,-23],[17,-20],[8,-41],[20,-17]],[[22933,17155],[-3,-4],[-17,-28],[-27,-15],[-30,-17],[-8,-38],[-8,-38],[-25,-9],[-34,12],[-23,3],[-65,49],[-14,26],[-28,21],[-25,0],[-22,-6],[-16,-35],[-18,-35],[-11,-32],[-22,-23],[-10,-26],[-12,-29],[-18,-18],[-33,0],[-30,6],[-16,12],[-3,2],[-30,-8],[-20,-35],[-17,-47],[-28,-23],[-20,-3],[-19,-14],[-22,-6],[-20,-24],[-6,-46],[-33,-9],[-20,3],[-27,-6],[-24,-6],[-28,-14],[-29,-26],[-24,0],[-23,-15],[-12,-32],[-16,-26],[-24,-23],[-13,-38],[-14,-64],[-24,-3],[-31,0],[-40,0],[-23,-26],[-18,-18],[-2,-38],[-18,-14],[-24,12],[-47,-6],[-27,-9],[-24,-26],[-20,20],[-19,23],[-12,24],[-16,26],[-32,23],[-19,29],[-6,29],[0,32],[-12,47],[-14,23],[-21,29],[9,29],[21,9],[8,29],[-14,24],[-24,23],[-22,6],[-18,29],[-29,32],[-24,17],[-30,18],[-21,29],[-24,14],[-67,32],[-10,26],[-4,32],[-12,35],[-31,18],[-24,-6],[-33,-3],[-22,20],[-20,24],[-33,8],[-34,-11]],[[21039,17082],[-15,32],[-22,29],[-20,17],[-23,9],[-26,15],[-10,32],[0,43],[-8,38],[-8,35],[-23,12],[-26,14],[-18,26],[-13,24],[-24,11],[-26,26],[-21,6],[-26,3],[-29,-20],[-20,-9],[-20,-9],[-24,27],[-13,29],[-20,17],[-28,9],[-31,3],[-10,29],[14,38],[2,35],[-16,26],[-14,26],[-39,38],[-6,29],[-16,23],[-35,0],[-20,18],[-20,20],[-21,32],[-36,17],[-31,15],[-16,29],[-10,26],[-24,32],[0,67],[22,23],[24,35],[-2,41],[-22,9],[-20,6],[-19,17],[-20,6],[-24,9],[-14,26],[18,32],[14,35],[14,23],[-8,32],[-30,20],[-19,-35],[-26,-14],[-18,-15],[-37,-8],[-14,26],[-18,17],[-21,29],[-4,29],[-12,32],[-2,30],[-20,5],[-25,-23],[0,-32],[-20,-3],[-55,18],[-28,-3],[-14,-35],[-9,-41],[-12,-26],[-20,-6],[-30,3],[-35,0],[-28,-17],[-17,40],[-20,32],[-22,0],[-25,-17],[-22,11],[-39,-11],[-18,-18],[-4,-29],[-4,-30],[-14,-22],[-2,-44],[-29,-26],[-32,-6],[-22,-6],[-21,6],[-35,-10],[-14,-22],[-20,-26],[-20,-23],[-20,7],[-65,-4],[-29,11],[-4,32],[-27,20],[-32,-31],[-18,-38],[2,-38],[-16,-32],[-6,-52],[-25,-24],[-22,-32],[-30,-14],[-23,-38],[-18,-38],[-33,-6],[-22,-8],[-20,-18],[-25,-14],[-10,-27],[-38,-5],[-33,14],[-16,26],[-22,-5],[-15,-24],[-34,-9],[-33,-11],[-16,23],[6,41],[-17,46],[-25,27],[-21,5],[-22,21],[-20,14],[-31,9],[-28,-3],[-23,23],[-4,30],[11,29],[18,35],[16,20],[-2,32],[-12,41],[10,26],[-6,29],[-29,0],[-28,9],[-26,8],[-25,0],[-20,-14],[-28,9],[-23,11],[-30,29],[-21,9],[-10,26],[-18,29],[-26,29],[-9,32],[-12,53],[-16,40],[-2,30],[-2,49],[-20,17],[-33,8],[-18,17],[12,27],[43,21],[16,21],[12,46],[6,32],[-8,29],[-24,9],[-25,6],[-20,3],[-22,3],[-23,3],[-24,11],[-2,32],[-12,32],[-14,23],[-21,9],[-28,3],[-24,15],[-21,14],[-20,-6],[-26,-17],[-29,12],[-20,26],[-14,23],[0,35],[-15,26],[-18,15],[-10,29],[-10,29],[-23,-15],[-26,-14],[-24,-18],[-27,3],[-24,-9],[-22,-8],[-2,32],[6,29],[0,35],[-2,29],[4,32],[22,11],[12,41],[16,26],[-20,9],[-20,6],[-29,17],[-18,24],[-12,29],[-22,6],[-29,2],[-16,21],[-14,29],[-25,6],[-12,26],[-2,29],[14,26],[21,12],[20,-3],[24,12],[23,5],[18,21],[20,8],[25,3],[18,18],[2,35],[-2,43],[14,27],[14,23],[21,12],[20,0],[22,14],[19,20],[8,32],[14,24],[22,11],[14,32],[15,32],[26,15],[26,3],[25,11],[20,24],[12,29],[-14,23],[-14,35],[8,29],[2,35],[16,20],[21,18],[18,20],[-2,32],[-21,-11],[-24,8],[6,29],[-8,38],[10,26],[-2,30],[-14,29],[4,32],[-16,23],[0,35],[10,26],[10,32],[-20,9],[-16,-18],[-21,6],[-16,23],[-12,24],[-10,29],[18,26],[14,26],[10,26],[6,29],[15,29],[8,30],[-21,-6],[-22,-9],[-20,9],[-25,11],[-6,29],[-44,12],[-29,0],[-26,-12],[-29,-2],[-20,20],[-2,38],[-4,29],[-10,26],[16,17],[10,30],[-2,34],[-12,24],[-16,20],[-12,29],[6,29],[-19,15],[-20,12],[-16,26],[-25,8],[-22,21],[-10,29],[-8,35],[-20,14],[-25,18],[-6,32],[2,29],[12,26],[35,29],[-12,26],[-19,24],[-18,14],[-22,-6],[-25,9],[-6,29],[-24,6],[-24,-17],[-25,2],[-12,32],[-20,15],[-17,-26],[-18,-18],[-20,-3],[-24,12],[-19,15],[-24,0],[-22,-6],[-21,-18],[-22,-3],[-22,9],[-23,23],[-8,38],[4,35],[-16,21],[-22,0],[-25,-9],[-20,3],[-22,14],[-11,32],[-14,26],[-22,12],[-22,12],[-17,26],[-12,26],[-1,1],[-35,27],[-14,22],[-21,15],[-4,0],[-87,3],[-20,0],[-225,8],[-281,9],[-290,10],[-38,7],[-265,121],[-161,72],[-29,13],[-362,181],[0,49],[-2,35],[-9,41],[2,43],[4,33],[-18,23],[-22,9],[-27,5],[-30,6],[-20,3],[-21,15],[-28,8],[-14,29],[-8,35],[6,38],[-23,26],[-20,-3],[-36,-2],[-33,11],[-39,-6],[-24,3],[-24,15],[-27,17],[-32,6],[-31,-9],[-28,-3],[-41,18],[-24,0],[-22,-6],[-41,9],[-22,0],[-31,6],[-30,-3],[-25,-6],[-22,-9],[-158,-119],[-23,-3],[-22,-20],[-22,0],[-17,20],[-24,29],[-22,29],[-31,-3],[-26,0],[-33,9],[-2,35],[-28,17],[-26,15],[-29,20],[-28,24],[-27,-9],[-20,-15],[-20,-8],[-23,8],[-22,29],[-28,27],[-19,20],[-20,-3],[-22,17],[-27,3],[-20,15],[-18,14],[-25,32],[-44,99],[10,91],[1,51],[1,1],[18,23],[112,134],[81,96],[156,200],[30,27],[122,111],[438,397]],[[21039,17082],[-29,-6],[-22,-23],[-20,-21],[-27,0],[-20,-20],[-25,-12],[-30,3],[-28,0],[-27,-3],[-30,-17],[-23,-18],[-14,-37],[-30,-24],[-27,2],[-24,19],[-10,32],[-19,23],[-26,-18],[-24,-29],[-21,-29],[-30,-8],[-22,-6],[-21,-35],[-12,-35],[-30,-20],[-21,-32],[-24,-3],[-20,-3],[-21,6],[-22,8],[-20,15],[-25,11],[-32,-14],[-29,-6],[-30,15],[-20,-3],[-29,3],[-24,-18],[-24,3],[-27,15],[-28,17],[-21,9],[-18,-15],[-20,-26],[-18,-26],[-19,-15],[-28,3],[-22,-17],[-35,-26],[-28,-6],[-15,29],[-16,26],[-8,32],[-28,15],[-16,-30],[-9,-26],[-14,-29],[-20,-20],[-15,-35],[-20,-20],[-16,-21],[-31,12],[-30,9],[-30,14],[-21,12],[-12,23],[-24,29],[-29,3],[-16,-17],[-22,0],[-23,0],[-24,-12],[-16,-29],[-23,-35],[-30,-3],[-22,17],[-27,18],[-6,-29],[-18,-21],[-14,-29],[4,-32],[-12,-26],[-17,-32],[-27,-4],[-26,7],[-20,-17],[-26,-3],[-27,-6],[-22,-3],[-20,-20],[-23,-24],[-20,-14],[6,-38],[-16,-20],[-28,14],[-23,3],[-12,29],[-28,-3],[-31,-3],[-28,-11],[-31,6],[-34,-6],[-19,-26],[-58,5],[-13,24],[-22,3],[-26,-15],[-15,-23],[-10,-35],[-4,-32],[-22,-29],[-22,-3],[-25,3],[-24,11],[-12,24],[-23,5],[-24,18],[-24,17],[-31,-17],[-24,-15],[-23,-17],[-18,-23],[-22,-6],[4,35],[-6,43],[-16,27],[-27,26],[-22,-47],[-27,3],[-22,3],[-10,-26],[-22,-6],[-16,-21],[-21,-8],[-10,-26],[-25,-12],[-14,-23],[-12,-38],[-12,-26],[-16,-26],[-23,-6],[-22,6],[-18,20],[-25,12],[-26,-6],[-20,3],[-21,-18],[-4,-35],[-22,-23],[-12,-26],[-10,-26],[10,-27],[18,-17],[20,-20],[20,-23],[57,-67],[175,-200],[6,-6],[101,-117],[31,-36],[83,-96],[19,-22],[376,-434],[134,-154],[227,-262],[-25,3],[-30,-3],[-20,-12],[-12,-23],[-27,-9],[-45,-17],[-22,-15],[-28,9],[-31,6],[-22,32],[-18,17],[-31,-14],[-20,-27],[-27,-29],[-38,-3],[-24,0],[-25,-29],[-16,-17],[-24,-21],[-19,-23],[-26,-17],[-27,-6],[-28,-9],[-18,-14],[-37,-18],[-4,-41],[-10,-32],[0,-40],[16,-44],[10,-41],[-16,-38],[-14,-29],[-24,-23],[-25,-14],[-20,-3],[-24,8],[-37,-3],[-26,-2],[-25,-15],[-20,-29],[-16,-20],[-25,-21],[-28,-3],[-24,21],[-17,20],[-15,24],[-6,38],[1,37],[-18,20],[-35,3],[-20,5],[-33,4],[-34,-32],[-10,-35],[-23,-32],[-22,-32],[-18,-29],[-29,-26],[-24,-24],[-32,-23],[-21,0],[-28,21],[-23,0],[-20,-38],[-18,-26],[-37,2],[-26,21],[-22,32],[-35,0],[-26,-3],[-25,-20],[-10,-32],[-4,-47],[-6,-38],[-20,-23],[-21,6],[-30,-3],[-51,-64],[-16,-26],[-18,-15],[-27,23],[-20,26],[-28,15],[-35,-9],[-18,-29],[-19,-41],[-26,-32],[-22,-17],[-17,-32],[-8,-29],[-10,-29],[-30,-9],[-29,-12],[-18,-26],[-4,-46]],[[17071,13352],[-37,8],[-34,6],[-29,24],[-20,-21],[-22,-38],[-6,-32],[-23,-32],[-18,-26],[-28,-27],[-23,-11],[-18,18],[-22,0],[-16,20],[-9,32],[-14,23],[-20,21],[-20,29],[-21,23],[-18,23],[-20,27],[-31,2],[-24,-2],[-25,14],[-20,15],[-22,26],[-4,38],[0,32],[-16,29],[-27,32],[-10,41],[-20,20],[-21,17],[-26,-3],[-26,9],[-23,0],[-22,-23],[-57,-55],[-18,-21],[-12,-29],[-19,-14],[-15,-12],[-3,-3],[-10,-26],[-13,-24],[-21,-9],[-23,-4],[-1,0],[-22,-5],[-24,7],[-11,20],[-3,6],[-20,18],[-20,2],[-21,9],[-18,26],[-12,27],[-19,20],[-18,35],[-26,20],[-21,26],[-2,35],[-18,27],[-2,34],[-26,32],[-29,21],[-14,26],[-8,32],[-51,9],[-16,20],[-26,3],[-21,3],[-18,-15],[-22,-29],[-17,-26],[-16,-41],[8,-49],[-8,-35],[0,-41],[0,-38],[-22,-20],[-20,-6],[-29,-17],[-24,-12],[-31,-6],[-24,3],[-37,-6],[-30,-11],[-33,-6],[-22,-15],[-22,-3],[-19,-32],[-12,-26],[-20,-17],[-12,-26],[-4,-35],[-21,-18],[-69,-14],[-30,-3],[-28,0],[-25,-15],[-20,9],[-27,9],[-10,26],[-24,0],[-20,12],[-25,8],[-2,38],[0,35],[-8,29],[-4,35],[-12,29],[-31,6],[-26,6],[-20,35],[-10,37],[-7,32],[23,30],[2,34],[16,18],[0,32],[-10,26],[-43,58],[-16,24],[-30,8],[-32,-1],[-23,19],[-31,-3],[-17,-17],[-28,-23],[-28,-7],[-12,27],[-20,11],[-19,18],[-27,23],[-27,-12],[-28,0],[-21,-8],[-10,-35],[-19,-15],[-32,-26],[-26,0],[-21,-12],[-20,-23],[-22,-9],[-17,-35],[6,-35],[-6,-29],[-28,-32],[-35,-8],[-28,-21],[-22,-23],[-27,9],[-28,8],[-61,70],[-22,9],[-17,20],[-24,-2],[-24,-6],[-21,-6],[-16,-35],[4,-32],[4,-41],[-18,-38],[-18,-14],[-17,-24],[-24,-5],[-22,-3],[-21,0],[-28,-24],[-20,3],[-17,-26],[-12,-32],[-16,-26],[-22,15],[-15,22],[-19,22],[-82,-21],[-11,32],[1,38],[-31,-6],[-20,11],[-28,-20],[-21,9],[-22,-6],[-18,-35],[-11,-26],[-12,-26],[-28,-21],[-18,-40],[-7,-38],[-16,-18],[2,-40],[-12,-24],[-20,-20],[-29,0],[-20,0],[-24,9],[-31,-6],[-2,-38],[10,-41],[0,-40],[23,-12],[20,-20],[35,-73],[-21,-23],[-30,-9],[-23,-35],[-10,-25],[-4,-10],[4,-44],[-4,-35],[6,-40],[-18,-26],[-16,-35],[-10,26],[-11,26],[-12,32],[-28,15],[-22,-6],[-21,8],[-32,15],[-8,32],[4,33],[20,14],[10,26],[-2,29],[0,1],[-3,19],[-1,12],[-2,29],[-4,38],[-24,26],[-22,11],[-22,15],[8,42],[-4,38],[30,28],[2,41],[0,85],[-53,20],[-35,20],[-16,20],[-29,19],[-22,-13],[-25,-7],[-26,11],[-25,35],[-11,28],[-19,16],[-44,10],[-31,-10],[-32,-11],[-27,20],[-22,3],[-22,5],[-4,57],[22,41],[-10,42],[13,42],[-14,24],[-4,31],[-21,1],[-21,-4],[6,58],[12,47],[2,44],[-9,28],[-79,78],[-81,47],[-17,32],[-16,41],[-3,38],[0,49],[-11,34],[-20,-12],[-39,-5],[-25,40],[-9,37],[-4,61],[-14,26],[-10,27],[-22,69],[-22,5],[-33,30],[-36,2],[-21,4],[-17,-15],[-29,-12],[-36,-46],[-39,17],[-29,3],[-31,10],[-28,29],[-15,27],[14,23],[22,32],[-18,13],[-46,-18],[-29,-1],[-57,9],[-37,-9],[-20,-15],[-26,-20],[-33,-16],[-18,-26],[-19,-17],[-37,-14],[-40,21],[-14,-26],[-37,-23],[-55,-10],[-34,31],[-21,11],[-7,55],[7,28],[21,52],[-31,12],[-57,14],[3,33],[17,61],[10,33],[4,28],[3,64],[-28,2],[-21,12],[-14,48],[-21,24],[24,36],[23,47],[7,36],[-25,4],[-32,5],[-45,-1],[-17,29],[14,30],[24,14],[30,55],[23,1],[26,16],[4,45],[6,38],[-9,66],[-30,9],[-25,1],[-27,10],[-26,6],[-18,18],[-28,9],[-15,23],[0,43],[20,36],[14,30],[26,11],[8,30],[-11,70],[-27,22],[-27,35],[-23,-10],[-29,-20],[-23,13],[-3,30],[-4,35],[-31,29],[-36,-5],[-36,-21],[-13,31],[-30,56],[-4,34],[-27,10],[-23,-10],[-23,-21],[-9,-30],[-15,-39],[-25,11],[-39,6],[-21,-24],[-37,-6],[-20,31],[10,27],[17,35],[0,30],[-2,38],[29,11],[30,5],[22,4],[-6,43],[-15,52],[10,39],[44,13],[10,28],[3,41],[-18,20],[-20,19],[-12,24],[9,34],[4,51],[8,28],[24,8],[22,1],[34,-7],[25,-17],[21,-11],[16,21],[29,14],[26,-4],[15,31],[-11,45],[-20,19],[-28,14],[-14,25],[14,29],[7,38],[-9,30],[16,32],[13,29],[14,43],[-30,23],[-20,27],[25,29],[23,8],[24,40],[-18,27],[-29,32],[34,48],[23,29],[-74,46],[-73,5],[0,30],[12,41],[22,34],[39,11],[16,22],[15,20],[10,14],[-18,29],[-5,33],[11,32],[-7,9],[-12,14],[-11,27],[-28,23],[-18,22],[-34,-2],[-35,8],[-36,-9],[-24,14],[-26,3],[-37,33],[-21,28],[-21,28],[-18,24],[-29,9],[-17,-23],[-20,-6],[-28,-2],[-18,29],[-13,35],[10,44],[-8,36],[-12,33],[-15,-23],[-24,-11],[-23,12],[-17,24],[-20,-13],[-29,-18],[-21,-4],[-25,21],[-1,30],[-16,29],[-10,32],[13,34],[20,18],[18,30],[-6,33],[-11,26],[-5,42],[-17,18],[-19,21],[2,32],[21,53],[7,40],[-4,30],[-23,6],[-20,13],[-19,28],[-20,16],[-18,28],[-7,34],[12,45],[-12,42],[-29,20],[-21,15],[-31,22],[-23,-7],[-15,29],[-24,40],[5,43],[42,43],[16,24],[35,24],[35,22],[28,0],[36,6],[22,14],[-2,48],[13,31],[27,5],[28,11],[30,18],[35,13],[21,22],[21,-4],[25,8],[25,9],[25,40],[31,18],[31,3],[26,-4],[20,1],[24,11],[27,10],[27,14],[32,40],[-20,34],[-11,33],[-1,45],[23,24],[-1,36],[-25,4],[-30,-33],[-32,-39],[-23,-4],[-32,45],[-2,38],[-10,41],[-9,36],[-6,39],[-37,47],[-23,25],[7,37],[10,29],[-22,29],[2,34],[-11,27],[-21,6],[-12,26],[4,36],[-5,30],[-17,18],[-17,21],[-12,29],[9,31],[15,28],[56,3],[17,19],[31,13],[25,-46],[20,13],[22,30],[14,24],[-10,27],[-14,77],[-37,32],[-12,28],[-2,37],[11,39],[12,28],[4,48],[-10,34],[-17,37],[-20,40],[-12,48],[-22,27],[-22,5],[-27,13],[-12,33],[-21,9],[-21,-8],[-19,-20],[-22,-11],[-20,15],[-30,35],[-22,-3],[-22,-4],[-22,-14],[-32,4],[-23,-7],[-23,-8],[-37,8],[-40,14],[-30,60],[-28,11],[-28,11],[-3,37],[-10,27],[-62,19],[-22,-15],[-22,-4],[-38,4],[-55,41],[-9,31],[-12,38],[-8,56],[-25,4],[-25,12],[-8,74],[1,64],[-12,26],[22,43],[-4,52],[8,62],[-28,21],[-44,45],[-22,-11],[-32,-1],[-33,37],[-7,32],[-14,26],[-18,19],[8,43],[17,61],[-6,104],[-33,17],[-36,22],[-25,-23],[-38,47],[-19,15],[-27,22],[-11,32],[-17,32],[-51,-9],[-17,18],[-14,70],[-15,28],[24,20],[23,74],[28,20],[26,7],[26,19],[-17,28],[-26,43],[-8,29],[-19,30],[-28,17],[-22,-11],[-22,-16],[-27,7],[-26,21],[-13,21],[-7,36],[-3,34],[-14,22],[-34,18],[-25,8],[-12,35],[-27,36],[8,44],[19,14],[14,34],[27,14],[12,28],[5,34],[22,24],[17,21],[18,25],[-4,31],[-2,39],[-2,36]],[[34489,17967],[31,-74],[2,-2],[4,-2],[3,-1],[2,-1],[18,-6],[2,0],[31,-10],[4,-1],[3,0],[2,0],[20,-2],[7,-2],[34,-23],[91,-74],[42,-29],[21,-14],[8,-5],[23,-17],[17,-20],[15,-33],[22,-120],[1,-5],[1,-5],[2,-4],[1,-5],[2,-4],[2,-5],[3,-3],[0,-1],[6,-36],[14,-79],[15,-89],[0,-3],[2,-5],[1,-5],[2,-4],[2,-5],[2,-4],[19,-36],[15,-30],[13,-24],[4,-9],[1,-1],[2,-4],[3,-3],[2,-4],[1,-1],[55,-67],[3,-2],[2,-3],[53,-53],[127,-43],[60,-49],[19,-17],[19,-15],[37,-51],[13,-17],[2,-5],[19,-42],[0,-1],[2,-15],[39,-70],[45,-22],[5,-3],[0,-3],[14,-116],[-26,-119],[-31,-74],[-20,-46],[-43,-74],[-24,-41],[-29,-24],[-45,-23],[-32,-14],[-36,-13],[-57,-26],[-39,-16],[-3,-1],[-3,-2],[-49,-29],[-3,-2],[-1,0],[-32,-24],[-2,-2],[-3,-2],[-1,-1],[-39,-43],[-19,-33],[-2,-2],[-1,-4],[-22,-46],[-18,-31],[-1,-2],[-2,-4],[-2,-4],[-2,-5],[-1,-4],[-2,-5],[-1,-5],[0,-5],[-1,-5],[0,-5],[0,-6],[0,-32],[0,-42],[0,-4],[0,-1],[0,-5],[1,-5],[0,-2],[5,-32],[1,-3],[1,-5],[1,-4],[2,-5],[1,-5],[22,-52],[1,-1],[2,-4],[2,-4],[3,-4],[3,-3],[3,-3],[3,-3],[48,-39],[53,-31],[70,-46],[35,-24],[73,-46],[101,-64],[85,-65],[15,-20],[39,-55],[54,-116],[0,-1],[8,-47],[9,-116],[5,-36],[15,-116],[5,-62],[0,-2],[3,-41],[1,-5],[1,-5],[0,-3],[19,-87],[0,-3],[1,-4],[1,-1],[6,-22],[1,-4],[2,-5],[2,-4],[2,-4],[2,-4],[3,-4],[10,-15],[64,-90],[1,-2],[90,-118],[20,-31],[16,-35],[10,-30],[6,-25],[1,-22],[-2,-29],[-5,-28],[-10,-27],[-12,-26],[-23,-30],[-30,-30],[-41,-24],[-34,-14],[-41,-9],[-2,0],[-1,-1],[-45,-13],[-2,-1],[-4,-2],[-3,-1],[-17,-10],[43,-27],[-93,-60],[-20,-121],[-27,18],[-24,17],[-20,14],[-19,14],[-26,49],[26,86],[2,32],[4,56],[2,30],[10,39],[10,108],[-3,47],[-20,16],[-35,33],[-28,36],[-25,63],[-25,42],[-23,23],[-18,45],[-34,25],[-21,27],[-24,6],[-27,18],[-32,35],[-19,11],[-35,8],[-28,2],[-28,3],[-44,6],[-67,17],[-31,0],[-19,28],[-24,16],[-30,-2],[5,30],[1,35],[-9,27],[-17,31],[-26,28],[-30,18],[-35,23],[-51,20],[-22,0],[-23,4],[-29,11],[-31,13],[-20,10],[-40,28],[-36,5],[-24,-3],[-36,-13],[-99,-29],[-27,-24],[-27,-13],[-27,-10],[-29,-6],[-33,-3],[-30,8],[-36,19],[-31,17],[-29,-5],[-23,18],[-40,5],[-27,6],[-27,-1],[-26,10],[-21,10],[-19,-13],[-14,-38],[-14,-27],[-15,-28],[-8,-33],[2,-40],[-7,-29],[-9,-41],[21,-30],[22,-17],[-2,-45],[40,-51],[23,-19],[23,4],[11,-25],[17,-41],[-11,-31],[-10,-33],[-19,-20],[-30,-19],[-29,-14],[-28,-15],[-36,-10],[-22,8],[-25,8],[-25,-8],[-23,-31],[-6,-43],[-22,-27],[-25,-23],[-1,-39],[-22,-27],[1,-57],[-34,0],[-21,-25],[-26,-8],[-19,-22],[-23,-36],[-33,-7],[-28,-4],[-22,-12],[-21,-18],[-35,-21],[-23,-12],[-25,-9],[-18,-16],[-19,-26],[-3,-36],[0,-3],[-3,-33],[-16,-29],[-15,-43],[-36,15],[-30,13],[-25,-12],[-17,-23],[-23,-53],[-23,9],[-24,9],[-19,-20],[-19,-20],[-22,8],[-27,-16],[-20,-28],[-13,-32],[-20,-33],[-12,-26],[-19,-24],[-32,-16],[-16,-21],[-38,-55],[12,-29],[20,-27],[7,-38],[-17,-20],[-31,2],[-37,-12],[-19,-33],[-26,-12],[-29,10],[-21,-3],[-18,-17],[-15,-35],[-11,-27],[-19,-21],[-27,-16],[-53,-26],[-66,-52],[-20,-6],[-22,-12],[-21,-26],[-23,-15],[5,-29],[-25,-8],[-20,-7],[-18,-18],[-20,-10],[-28,-18],[-32,5],[-23,5],[-30,-9],[-19,-13],[-31,-23],[-33,-20],[-23,-26],[-21,-20],[-31,-7],[-12,-37],[14,-20],[20,-34],[26,-17],[9,-29],[-10,-29],[-35,-52],[-21,-9],[-21,5],[-30,-6],[-38,-8],[-28,-30],[11,-27],[21,-23],[22,-15],[26,-10],[24,-14],[4,-43],[3,-49],[-6,-38],[6,-32],[4,-38],[24,-20],[19,-21],[2,-32],[-8,-32],[6,-32],[-6,-29],[0,-35],[30,-20],[22,-24],[-1,-75],[-22,-19],[-26,-8],[-24,-14],[-18,-19],[-13,-25],[-18,-81],[-21,-12],[-21,-22],[-10,-32],[-12,-26],[-19,-15],[-34,-35],[-24,-21],[-25,4],[-20,11],[-29,9],[-28,-26],[-21,-15],[-42,-17],[-43,-14],[-32,-80],[-28,-54],[-13,-51],[-15,-35],[-32,-44],[-20,-12]],[[31459,11256],[-36,28],[-37,11],[-49,-2],[-34,-6],[-28,22],[-13,29],[-15,7],[-13,5],[-18,21],[-17,17],[-20,26],[-26,-11],[-17,-29],[-22,-15],[-24,-23],[-35,-15],[-8,-32],[-24,-8],[-23,-3],[-18,-15],[-22,-12],[-21,15],[-14,23],[-20,24],[-41,52],[-20,12],[-22,-12],[-27,-3],[-30,3],[-31,14],[-24,18],[-14,26],[-15,47],[-16,26],[-24,14],[-16,21],[-27,-12],[-24,-14],[-43,0],[-20,-6],[-20,-3],[-41,-6],[-18,-15],[-16,-29],[-15,-29],[-22,-29],[-6,-29],[-16,-29],[-25,-6],[-16,18],[-18,17],[-23,9],[-24,0],[-30,14],[-25,-26],[-8,-35],[-24,-17],[-29,6],[-20,-12],[-26,-3],[-21,-35],[-22,-26],[-31,-15],[-20,0],[-20,3],[-31,-14],[-30,-6],[-26,-6],[-25,-9],[-14,-23],[-20,-12],[-21,-8],[-14,-26],[-8,-41],[-2,-41],[-16,-29],[-23,-12],[-26,-3],[-39,12],[-22,26],[-18,32],[-29,-3],[-8,-29],[-18,-26],[-22,-12],[-23,-8],[-26,3],[-31,-12],[-24,-26],[-21,-25],[-11,-25],[-24,-18],[-21,3],[-27,3],[-24,-20],[-2,-35],[8,-46],[4,-44],[2,-41],[2,-29],[4,-40],[-18,-15],[-24,-26],[-14,-23],[4,-29],[11,-28],[19,-28],[-2,-32],[11,-30],[-22,-35],[5,-35],[-4,-34],[-26,-2],[-21,-6],[2,-35],[8,-32],[-24,-6],[-20,-3],[-12,-29],[10,-38],[18,-23],[14,-23],[7,-102],[18,-51],[14,-32],[12,-56],[0,-30],[-2,-29],[-20,-17],[-14,-21],[-29,-12],[-10,-34],[0,-32],[-12,-38],[-16,-25],[-47,-14],[-31,-14],[-19,-22],[-15,-35],[19,-35],[14,-30],[5,-29],[21,-32],[12,-23],[-10,-33],[-9,-32],[-8,-57],[-16,-32],[-22,-24],[-20,-20],[-27,-20],[-15,-66],[-7,-55],[-1,-107],[-3,-35],[-31,-15],[-70,24],[-25,18],[-43,32]],[[28864,8985],[-8,32],[4,32],[-16,29],[-20,38],[-13,40],[-22,27],[-28,-3],[-35,0],[-20,8],[-18,15],[-17,26],[-18,29],[-26,32],[-29,26],[-24,15],[-27,15],[-26,23],[-30,29],[-13,23],[-22,29],[-20,38],[-12,23],[-13,27],[-16,23],[-20,-3],[-29,9],[-24,0],[-20,-13],[-20,23],[-11,30],[-17,24],[-19,10],[-24,-25],[-24,-16],[-17,-21],[-14,-26],[-16,-21],[-23,-18],[-37,-24],[-37,-13],[-33,8],[-29,52],[-9,37],[-41,42],[-38,41],[-28,-8],[-30,4],[-34,15],[-22,21],[-10,63],[-12,24],[-5,52],[-18,18],[7,29],[-6,29],[-27,8],[-19,15],[-21,-21],[-12,-27],[-26,-8],[-22,-10],[-27,5],[-22,14],[-27,6],[-25,37],[-21,14],[-37,10],[-21,-1],[-20,29],[-34,14],[-24,4],[-22,13],[-16,18],[-32,-18],[-27,-4],[-20,20],[-22,7],[-22,20],[-33,28],[-35,41],[-73,96],[-25,32],[-15,25],[13,43],[10,28],[-28,42],[-19,10],[-24,6],[-13,30],[8,41],[-7,33],[31,95],[19,21],[14,23],[11,26],[-7,32],[-10,35],[-2,29],[-4,29],[10,30],[2,35],[17,20],[20,12],[18,14],[-4,29],[-10,32],[-16,23],[-6,32],[12,24],[16,20],[-43,131],[-10,26],[-20,18],[-18,14],[-23,-3],[-20,-3],[-20,3],[-12,29],[-15,29],[-14,24],[-12,23],[-12,26],[-10,29],[-1,16],[-1,13],[8,30],[8,27],[-1,15],[-1,15],[-17,35],[-10,21],[-253,528],[-12,26],[-58,120],[-30,62],[-63,129],[-15,31],[-45,89],[-34,74],[-89,179],[-91,191],[-33,75],[-25,45],[-14,30],[-37,79],[-38,74],[-35,71],[-100,209],[-32,67],[-4,9],[-29,55],[-14,29],[-185,382],[-121,251],[-135,279],[-28,58],[-21,41],[-93,186],[-7,14],[-137,274],[-78,155],[-14,28],[-41,83],[-47,93],[-57,114],[-112,224],[-9,27],[-29,-12],[-22,-6],[-14,25],[-24,14],[-26,20],[-23,18],[-24,14],[-27,6],[-16,29],[-12,27],[-12,32],[-12,26],[-25,23],[-10,29],[-14,29],[-22,18],[-23,17],[-10,26],[14,26],[4,35],[-12,29],[-16,24],[-18,20],[-15,38],[-2,32],[-18,20],[-18,18],[-20,20],[-15,23],[-2,30],[-14,26],[-22,29],[-16,20],[-11,29],[-16,26],[-20,21],[-14,26],[-15,32],[-8,32],[10,26],[9,29],[-13,29],[-22,15],[-28,9],[-20,8],[-7,3],[-20,9],[-20,20],[-23,9],[-22,-9],[-18,-14],[-21,-6],[-24,0],[-26,3],[-23,-3],[-22,-12],[-20,-17],[-17,-23],[-16,-27],[-14,-23],[-20,-23],[-14,-6],[-13,-6],[-20,3],[-18,18],[-4,5],[-11,18],[-18,14],[-24,12],[-27,6],[-20,6],[-10,-2],[-10,-1],[-25,-9],[-24,12],[-20,8],[-12,30],[0,32],[-19,26],[-9,33],[-11,28],[-10,26],[-5,12],[-7,20],[-19,20],[-128,-66],[-20,-1],[-24,9],[-23,23],[-22,24],[-12,35],[-22,32],[-25,-3],[-18,-35],[-10,-29],[-21,-29],[-32,-3],[-26,29],[-37,6]],[[17071,13352],[10,-35],[4,-32],[23,-12],[20,-23],[0,-35],[-6,-29],[-6,-32],[16,-41],[-2,-41],[-16,-64],[-11,-29],[-16,-20],[-8,-35],[0,-35],[6,-38],[-4,-29],[12,-23],[23,-18],[18,-20],[12,-26],[16,-32],[21,-20],[6,-32],[2,-35],[8,-44],[12,-32],[10,-32],[-22,-26],[-18,-26],[4,-32],[0,-38],[-21,-18],[-22,-14],[-20,-18],[-23,-14],[13,-41],[20,-23],[8,-44],[-4,-49],[-12,-32],[-12,-41],[-13,-26],[-8,-47],[-15,-39],[-1,-2],[-18,-23],[-31,-26],[-20,-26],[-32,-29],[-11,-15],[-14,-20],[-22,-18],[-18,-20],[-25,3],[-18,35],[2,32],[8,29],[9,32],[3,11],[0,50],[-30,14],[-33,-14],[-20,-9],[-22,-11],[-25,-32],[-18,-30],[-6,-32],[-4,-52],[33,-38],[34,-40],[26,-24],[21,-26],[1,-1],[15,-16],[6,-47],[-24,-26],[-33,-18],[-22,-2],[-39,-18],[-38,6],[-21,-3],[-22,-6],[-24,-3],[-20,3],[-20,3],[-28,-23],[-16,-14],[-35,-31],[-3,-2],[13,-31],[0,-4],[1,-39],[-3,-32],[-4,-31],[10,-28],[13,-36],[16,-23],[-1,-10],[-3,-33],[-10,-27],[-16,-20],[-18,-23],[-25,-6],[-16,-38],[10,-35],[4,-41],[-18,-37],[-37,-56],[-20,-20],[-24,-3],[-21,-20],[-14,-27],[-4,-43],[21,-35],[20,-23],[20,-15],[20,-12],[2,-32],[-10,-34],[-26,2],[-24,-23],[-23,-14],[-18,-24],[-18,-29],[-21,-3],[-28,12],[-24,6],[-21,-3],[-20,14],[-24,-11],[-17,-18],[-18,-37],[-20,-12],[-25,9],[-22,8],[-28,-23],[-53,-61],[10,-32],[-8,-29],[-2,-41],[-12,-26],[-17,-32],[-8,-44],[4,-35],[21,-23],[4,-32],[6,-32],[0,-49]],[[15995,10105],[-29,-27],[-26,-17],[-39,-15],[-18,-26],[-18,-26],[-6,-35],[-35,-17],[-28,-3],[-16,-32],[-11,-33],[-26,-34],[-14,-35],[-79,-38],[-23,-6],[-24,3],[-20,-3],[-33,9],[-30,6],[-25,6],[-26,11],[-22,0],[-19,-22],[-45,-29],[-14,-21],[-27,-72],[-13,-54],[0,-34],[-22,-69],[-18,-21],[-28,-38],[-32,-20],[-29,-6],[-25,-9],[-25,-9],[-31,1],[-40,10],[-39,29],[-29,13],[-20,4],[-36,6],[-48,9],[-33,-43],[-19,-29],[1,-31],[2,-39],[-12,-34],[-38,-37],[-52,-35],[-27,-54],[-14,-30],[-36,-38],[-17,-27],[-16,-30],[-20,-14],[-26,5],[-35,-9],[-6,12],[-11,20]],[[14548,9048],[16,25],[-4,33],[-62,-12],[-2,2],[-14,13],[-2,3],[-2,2],[-8,10],[-1,1],[-3,3],[-2,4],[-3,4],[-1,4],[-21,44],[-8,3],[-8,0],[-8,-2],[-1,-1],[-17,-59],[-2,-4],[-1,-5],[-1,-2],[-18,-40],[-1,-2],[-2,-4],[-2,-4],[-2,-4],[-3,-3],[-3,-4],[-3,-3],[-3,-2],[-1,-2],[-21,-16],[-2,-1],[-3,-2],[-4,-2],[-3,-1],[-3,-1],[-1,-1],[-25,-6],[-2,0],[-4,-1],[-3,0],[-4,0],[-1,0],[-30,4],[-2,0],[-4,1],[-3,1],[-4,2],[-3,1],[-3,2],[-1,1],[-23,17],[-2,2],[-3,3],[-3,2],[-3,4],[-3,3],[-2,4],[-2,3],[-14,25],[0,1],[-2,4],[-2,4],[-2,5],[-1,5],[-1,4],[-1,5],[-6,29],[0,1],[-1,5],[0,5],[-1,5],[0,5],[0,5],[1,5],[0,5],[1,5],[0,3],[9,37],[0,2],[6,25],[0,10],[-35,48],[-1,1],[-2,4],[-21,33],[-2,4],[-2,4],[-2,5],[-1,4],[-2,5],[-1,5],[-1,5],[-1,5],[-1,5],[0,5],[0,5],[0,5],[0,5],[1,1],[2,28],[1,4],[1,5],[1,5],[1,5],[1,5],[1,2],[8,22],[1,2],[2,5],[2,4],[3,4],[1,2],[2,3],[18,28],[-32,-19],[-57,-45],[-3,-2],[-3,-2],[-3,-2],[-4,-1],[-3,-1],[-2,-1],[-11,-2],[-2,-1],[-3,0],[-4,0],[-4,0],[-3,0],[-4,1],[-3,1],[-16,6],[-4,2],[-3,2],[-3,2],[-4,2],[-3,3],[-2,3],[-16,17],[-3,3],[-2,4],[-3,3],[-2,4],[-1,2],[-3,7],[-14,30],[4,74],[14,57],[-17,26],[-43,-1],[-69,-38],[-46,-24],[-47,-8],[-28,46],[20,100],[45,81],[21,53],[-45,65],[-17,13],[-47,35],[-83,-9],[-49,-30],[-23,-86],[-1,0],[-3,-4],[-3,-3],[-3,-2],[-3,-3],[-24,-17],[-3,-1],[-3,-2],[-4,-2],[-3,-1],[-4,-1],[-3,0],[-4,0],[-3,0],[-117,9],[-20,0],[-3,-1],[-14,-11],[-9,-8],[-21,-20],[-3,-2],[-3,-3],[-3,-2],[-4,-2],[-3,-1],[-1,0],[-14,-6],[-3,-1],[-1,0],[-3,0],[0,-1],[-28,-4],[-10,-44],[-50,14],[-13,46],[8,74],[-32,23],[-34,-14],[-29,-48],[-46,-78],[-72,-120],[-27,-23],[-114,7],[-39,25],[-24,134],[-42,45],[-44,-4],[-82,-67],[27,-40],[-31,-19],[-1,-1],[-3,-2],[-4,-2],[-3,-1],[-1,0],[-17,-5],[-3,0],[-2,-1],[-9,-1],[-2,0],[-3,0],[-4,0],[-3,0],[-4,1],[-3,1],[-4,2],[-2,1],[-12,6],[-2,2],[-2,1],[-3,2],[-3,2],[-3,3],[-105,102],[-52,50],[-3,3],[-3,3],[-2,3],[-3,4],[-2,4],[-1,2],[-8,15],[0,2],[-2,4],[-2,5],[-2,5],[-1,4],[-1,5],[0,2],[-5,30],[-7,30],[-1,2],[-7,5],[-14,3],[-22,1],[-9,-2],[-10,-6],[-5,-7],[-2,-7],[-2,-27],[6,-61],[4,-28],[9,-20],[1,-4],[2,-5],[0,-1],[17,-59],[1,-4],[0,-2],[11,-48],[0,-3],[1,-5],[1,-5],[0,-5],[0,-4],[1,-40],[0,-7],[-1,-5],[0,-2],[-6,-59],[-1,-3],[-1,-5],[-1,-5],[-9,-38],[-6,-23],[-1,-4],[-1,-5],[-2,-4],[0,-1],[-7,-17],[-2,-4],[-2,-4],[-2,-4],[-3,-4],[-2,-3],[-16,-20],[0,-1],[-3,-3],[-3,-3],[-3,-2],[-3,-3],[-3,-2],[-4,-2],[-3,-1],[-4,-1],[-3,-1],[-3,-1],[-16,-2],[-4,0],[-3,0],[-1,0],[-3,1],[-4,1],[-3,1],[-4,1],[-2,1],[-16,10],[-1,0],[-4,2],[-3,3],[-3,3],[-3,3],[-2,3],[-8,9],[-2,3],[-3,4],[-2,4],[-2,4],[-2,5],[-2,4],[-1,5],[-1,1],[-4,16],[-1,4],[-1,4],[-1,5],[0,6],[-1,5],[0,5],[0,4],[1,14],[0,1],[0,5],[1,4],[2,21],[3,27],[-1,4],[-6,8],[-16,14],[-19,12],[-66,22],[-11,1],[-15,0],[-21,-5],[-49,44],[-46,-4],[-10,-52],[-2,1],[-3,1],[-3,2],[-4,2],[-3,3],[-2,1],[-6,6],[-1,1],[-3,3],[-2,3],[-3,4],[-2,3],[-12,18],[0,1],[-2,4],[-2,4],[-2,5],[-2,4],[-2,5],[-1,4],[-5,20],[0,1],[-1,5],[-1,5],[0,5],[-1,5],[0,5],[0,4],[1,21],[0,2],[0,5],[1,5],[1,5],[1,5],[0,2],[6,22],[7,32],[0,6],[-1,8],[-4,11],[-3,8],[-21,37],[0,1],[-5,8],[-21,38],[-18,29],[-11,12],[-53,42],[-3,3],[-3,3],[-3,3],[-1,2],[-7,10],[-2,2],[-2,3],[-2,4],[-3,5],[-1,4],[-2,4],[-6,17],[-1,5],[-2,5],[-1,4],[0,2],[-8,44],[-3,10],[-2,4],[-4,2],[-13,7],[-13,2],[-13,-2],[-2,0],[-4,0],[-2,0],[-190,9],[-56,-4],[-11,-2],[-17,-8],[-2,-1],[-3,-1],[-155,-48],[-19,-8],[-37,47],[-12,15],[-4,6],[-11,58],[-7,33],[-10,62],[-68,1],[-62,-13],[-107,8],[-64,-12],[-31,-45],[-14,-45],[-15,-70],[-34,-41],[-22,-10],[-17,-8],[-3,-2],[-81,5],[-101,49],[-21,48],[-1,34],[4,66],[19,63],[-3,44],[-13,29],[-56,53],[-1,0],[-113,40],[-11,4],[-29,53],[29,87],[21,33],[13,13],[1,1],[3,3],[4,2],[3,2],[0,1],[26,15],[3,1],[3,2],[4,1],[3,1],[44,9],[1,0],[3,1],[1,0],[58,4],[70,8],[28,9],[1,0],[17,5],[10,5],[7,9],[10,14],[7,15],[-4,88],[-2,5],[-1,5],[-1,5],[-1,5],[-22,155],[-31,51],[-2,3],[-2,4],[-2,5],[0,1],[-20,50],[-37,95],[-1,1],[-1,2],[-3,2],[-6,3],[-89,23],[-8,0],[-26,-2],[-20,-6],[-20,-9],[-24,-13],[-29,-23],[-7,-5],[-51,-43],[-3,-2],[-3,-2],[-4,-2],[-3,-2],[-2,0],[-24,-8],[-1,-1],[-4,-1],[-4,0],[-2,0],[-21,-1],[-1,0],[-3,0],[-4,1],[-21,3],[0,1],[-1,0],[-18,3],[-3,1],[-4,1],[-3,1],[-15,8],[-4,2],[-1,0],[-14,9],[-2,2],[-3,2],[-2,1],[-14,13],[-2,2],[-3,3],[-3,3],[-1,1],[-9,13],[-2,2],[-2,4],[-1,0],[-9,16],[-2,4],[-2,4],[-2,4],[-1,2],[-8,20],[0,3],[-2,4],[-1,5],[-1,4],[-8,42],[-1,1],[0,5],[-1,5],[0,5],[0,5],[0,21],[0,1],[0,23],[0,4],[0,5],[1,2],[3,27],[-12,227],[-7,12],[-10,4],[-12,-4],[-25,-15],[-23,-9],[-36,-7],[-27,0],[-20,8],[-17,12],[-49,74],[-1,1],[-1,5],[-2,4],[-2,5],[-1,5],[-1,4],[-1,5],[0,6],[-1,5],[0,5],[0,4],[1,20],[0,1],[0,5],[1,5],[1,5],[1,5],[1,4],[1,3],[9,27],[0,3],[2,4],[2,5],[0,1],[90,176],[1,3],[-5,3],[-16,4],[-8,-1],[-28,-10],[-31,-21],[-23,-21],[-2,-3],[-3,-1],[-36,-27],[-1,-1],[-3,-2],[-2,-1],[-20,-11],[-1,-1],[-4,-1],[-3,-1],[-4,-1],[-3,-1],[-4,0],[-16,0],[-2,0],[-18,1],[-2,0],[-3,1],[-4,1],[-3,1],[-4,1],[-3,2],[-1,1],[-21,13],[-3,2],[-3,2],[-20,17],[-3,2],[-14,14],[-1,0],[-3,3],[-2,3],[-8,9],[0,1],[-3,4],[-2,4],[-3,3],[-1,3],[-8,15],[0,2],[-2,4],[-4,11],[-1,0],[-1,4],[-2,5],[-1,5],[0,1],[-5,23],[-4,14],[-1,3],[-1,5],[-1,5],[0,3],[-1,9],[-1,7],[40,63],[6,10],[2,3],[4,5],[10,9],[35,32],[10,9],[97,117],[1,2],[-1,8],[0,10],[-3,6],[-29,46],[-20,27],[-2,4],[-2,4],[-2,3],[-17,35],[0,1],[-2,4],[-8,19],[0,1],[-2,4],[-1,5],[-2,5],[-1,5],[-1,5],[0,5],[0,5],[-1,5],[0,14],[1,5],[0,5],[0,5],[1,1],[3,21],[0,4],[1,5],[5,22],[1,0],[1,5],[1,5],[2,4],[2,4],[31,68],[0,5],[1,9],[-1,8],[-2,6],[-1,2],[-3,4],[-16,16],[-18,15],[-1,0],[0,1],[-11,0],[-12,-1],[-132,-13],[-7,-2],[-4,-1],[-4,-1],[-3,-2],[-8,-5],[-12,-9],[-2,-2],[-5,-5],[-4,-6],[-5,-7],[-5,-7],[-1,-5],[-6,-22],[-1,-5],[-1,-11],[7,-25],[21,-67],[43,-138],[1,-3],[2,-4],[1,-5],[1,-5],[1,-2],[8,-38],[1,-3],[0,-5],[1,-2],[4,-33],[0,-3],[0,-5],[0,-2],[2,-49],[0,-5],[0,-3],[0,-5],[-1,-5],[-4,-28],[0,-1],[-1,-5],[-1,-5],[-1,-5],[-6,-19],[-5,-19],[-1,-4],[-2,-5],[0,-1],[-5,-12],[-2,-3],[-2,-4],[-2,-4],[-3,-4],[-2,-3],[-3,-4],[-3,-2],[-1,-2],[-20,-19],[-3,-3],[-4,-3],[-3,-2],[-3,-1],[-1,-1],[-78,-21],[-1,0],[-4,-1],[-3,1],[-4,0],[-3,1],[-43,11],[-1,0],[-3,1],[-48,18],[-1,0],[-3,2],[-4,1],[-3,3],[-1,0],[-22,17],[-4,2],[-15,1],[-10,-1],[-7,-4],[-4,-2],[-10,-14],[-1,0],[-2,-4],[-3,-3],[-3,-2],[-2,-1],[-24,-19],[-2,-1],[-3,-2],[-3,-2],[-4,-2],[-1,0],[-36,-13],[-2,0],[-1,-1],[-41,-10],[-2,0],[-4,-1],[-3,0],[-32,0],[-4,0],[-4,1],[-3,1],[-18,5],[-3,1],[-4,1],[-1,1],[-26,13],[-2,2],[-3,2],[-3,2],[-12,9],[-3,3],[-2,3],[-3,3],[-11,14],[-1,1],[-3,3],[-1,2],[-9,14],[-1,2],[-67,110],[-3,4],[-1,3],[-22,46],[-10,19],[-1,2],[-2,5],[-2,4],[-1,5],[-1,5],[-1,3],[-5,21],[11,90],[1,4],[2,3],[48,94],[2,5],[-1,1],[0,1],[-14,8],[-29,16],[-20,11],[-20,9],[-20,7],[-1,0],[-3,2],[-4,2],[-3,2],[-3,2],[-3,3],[-3,3],[-3,3],[-2,4],[-3,3],[-2,4],[-2,4],[-1,3],[-24,56],[-1,1],[-1,5],[-2,5],[-1,4],[-1,5],[-1,5],[0,5],[-7,70],[0,3],[-4,62],[-1,2],[-9,11],[-27,25],[-78,55],[0,1],[-16,12],[-2,1],[-3,3],[-3,3],[-2,2],[-11,14],[-1,1],[-3,3],[-2,4],[-3,4],[0,1],[-17,34],[-33,47],[-19,16],[-15,9],[-19,8],[-6,2],[-12,3],[-22,4],[-3,0],[-13,-5],[-48,-29],[-69,-49],[-1,0],[-13,-9],[-3,-2],[-2,-1],[-16,-9],[-32,-18],[-2,-1],[-4,-1],[-3,-1],[-48,-14],[-3,0],[-4,-1],[-3,0],[-4,0],[-14,1],[-4,1],[-3,1],[-2,0],[-24,8],[-1,1],[-4,1],[-3,2],[-2,2],[-28,18],[-1,1],[-3,2],[-82,65],[0,1],[-61,50],[-68,68],[-8,8],[-15,14],[-30,27],[-14,12],[-3,2],[-3,3],[-2,3],[-99,123],[-3,4],[-2,3],[-1,3],[-40,69],[-21,38],[-17,1],[-3,-8],[-12,-42],[-1,-3],[0,-3],[-9,-31],[-30,-60],[-3,-3],[-1,0],[-30,-24],[-2,-1],[-3,-2],[-4,-2],[-3,-2],[-2,0],[-15,-5],[-1,0],[-4,-1],[-3,-1],[-4,0],[-12,0],[-3,0],[-4,1],[-3,1],[-2,0],[-20,7],[-2,0],[-3,2],[-3,1],[-15,9],[-1,0],[-3,2],[-3,3],[-12,10],[-3,3],[-3,3],[-2,3],[-3,3],[-3,4],[-1,3],[-7,13],[-1,1],[-2,4],[-2,4],[-1,5],[-2,4],[-1,5],[-1,5],[-1,5],[-1,4],[-9,93],[0,1],[0,5],[0,5],[0,55],[-1,2],[-14,18],[-16,13],[-3,3],[-2,1],[-1,1],[-28,-20],[-35,-24],[-32,-17],[-13,0],[-20,6],[-8,10],[-3,8],[0,23],[3,15],[7,14],[3,7],[0,1],[10,16],[9,12],[67,85],[7,10],[-13,124],[-13,32],[-64,84],[-11,146],[1,5],[1,4],[1,5],[2,3],[22,59],[2,4],[51,-7],[17,-2],[41,55],[1,59],[-73,99],[-15,11],[-82,61],[-21,29],[-29,41],[-3,4],[-33,46],[-10,23],[-3,7],[-4,71],[-5,46],[-5,24],[-2,6],[-5,12],[-8,9],[-5,5],[-14,14],[-30,15],[-17,17],[-12,11],[-6,9],[-33,180],[-1,21],[-4,104],[-4,30],[-12,21],[-16,18],[-12,5],[-46,19],[-26,4],[-6,1],[-33,12],[-7,4],[-15,9],[-49,48],[-95,102],[0,54],[0,9],[1,1],[-1,4],[51,100],[68,79],[87,18],[36,46],[17,96],[9,24],[22,60],[12,17],[14,12],[12,6],[2,4],[28,11],[67,19],[7,6],[21,16],[14,18],[2,4],[0,5],[1,9],[0,2],[-3,6],[-15,40],[-7,10],[-17,11],[-22,3],[-75,-7],[-48,-16],[-77,-32],[-22,-13],[-25,-8],[-18,-6],[-8,-2],[-22,1],[-21,4],[-9,5],[-9,6],[-16,10],[-41,44],[-13,22],[-3,10],[1,16],[4,9],[1,2],[1,1],[13,17],[27,25],[115,83],[47,44],[6,9],[7,31],[-2,8],[-2,4],[-10,21],[-5,6],[-15,17],[-5,4],[-5,3],[-13,3],[-65,-5],[-17,-3],[-14,-8],[-10,-10],[-8,-14],[-9,-9],[-15,-6],[-54,3],[-14,4],[-21,13],[-12,12],[-20,30],[-6,14],[-4,25],[-1,14],[0,2],[2,4],[8,26],[5,32],[-3,22],[-10,80],[-14,46],[-15,16],[-38,10],[-51,8],[-30,-6],[-56,19],[-22,36],[-38,74],[-39,43],[-37,24],[-106,19],[-29,14],[-1,0],[-13,7],[-8,13],[-31,48],[-8,17],[-29,61],[-61,51],[-107,21],[-50,31],[-4,26],[-4,17],[-20,108],[-27,76],[-92,143],[-74,31],[-85,-118],[-65,-87],[-4,-3],[-18,-15],[-13,-5],[-4,-1],[-2,0],[-17,0],[-27,10],[-11,5],[-14,12],[-3,4],[-4,7],[-8,16],[-2,4],[-2,6],[-1,27],[2,22],[3,12],[18,71],[5,23],[27,134],[-10,41],[1,70],[1,87],[-13,39],[-103,114],[-49,53],[-18,53],[0,2],[-16,42],[-1,2],[-40,127],[-43,56],[-49,28],[-59,34],[0,66],[0,10],[22,55],[58,100]],[[36249,6593],[-19,19],[-10,11]],[[36220,6623],[-38,55],[-20,19],[-29,31],[-17,21],[-28,19],[-31,32],[-82,84],[-59,56],[-24,22],[-80,78],[-24,24],[-47,55],[-29,26],[-185,174],[-80,76],[-97,94],[-25,28],[-10,10],[-120,114],[-75,71],[-153,146],[-137,131],[-81,78],[-88,84],[-218,209],[-338,325],[-34,35],[-22,20],[-31,29],[-35,34],[-17,17],[-1,1],[-133,130],[-20,17],[-123,121],[-46,44],[-24,31],[-71,63],[-58,55],[-112,110],[-57,56],[-124,120],[-178,174],[-6,5],[-19,19],[-49,48],[-177,171],[-334,325],[-186,180],[-211,205],[-251,245],[-79,77],[-248,239]],[[40210,15423],[0,-3],[3,-30],[5,-43],[5,-46],[5,-40],[4,-17],[4,-12],[12,-113],[21,-194],[-80,-187],[-41,-93],[-23,-52],[-23,-53],[-8,-17],[-4,-10],[-13,-29],[-18,-42],[-13,-26],[-17,-34],[-5,-11],[-16,-34],[-21,-43],[-221,-459],[-18,-31],[-104,-207],[-106,-213],[-14,-29],[-81,-161],[-135,-270],[-36,-72],[-195,-389],[-15,-30],[-56,-111],[-95,-202],[-11,-26],[-61,-126],[-113,-235],[-115,-236],[-123,-266],[-33,-57],[-68,-128],[-54,-101],[-35,-66],[-34,-63],[-66,-123],[-30,-55],[-17,-31],[-101,-187],[-2,-5],[-18,-33],[-57,-107],[-65,-120],[-29,-53],[-65,-125],[-15,-25],[-55,-102],[-5,-11],[-51,-95],[-138,-256],[-46,-90],[-12,-23],[-25,-50],[-21,-47],[-27,-59],[-25,-57],[-14,-32],[-38,-85],[-13,-28],[-66,-150],[-35,-76],[-13,-29],[-20,-43],[-15,-34],[-121,-268],[-64,-140],[-15,-34],[-20,-45],[-109,-245],[-87,-196],[-11,-25],[-23,-53],[-55,-122],[-64,-143],[-30,-68],[-69,-154],[-32,-73],[-25,-59],[-20,-45],[-36,-83],[-115,-261],[-35,-78]],[[28864,8985],[-28,-3],[-20,-5],[-27,-3],[-26,2],[-28,-13],[-16,-21],[-47,-66],[-28,5],[-40,25],[-22,0],[-33,-6],[-26,-14],[-30,-18],[-31,-37],[-10,-35],[-2,-29],[-22,-3],[-22,-1],[-24,-5],[-23,-29],[-25,3],[-24,3],[-20,-8],[-15,-30],[-22,-12],[-25,-20],[-23,-4],[-26,-4],[-30,-3],[-24,-6],[-17,-15],[-27,-36],[-29,-15],[-6,-30],[-26,-18],[4,-36],[3,-51],[-14,-48],[6,-36],[-21,-11],[-21,-12],[-13,-28],[-21,-16],[-51,-36],[-39,-48],[-7,-42],[7,-32],[3,-33],[-8,-47],[-15,-33],[-18,-25],[-39,-23],[-21,-27],[-4,-38],[-23,-32],[-12,-7],[-11,-6],[-35,-19],[-25,-19],[-29,-6],[-36,-8],[-31,2],[-19,16],[-28,-8],[-30,0],[-16,-19],[-24,-8],[-22,6],[-26,-20],[-3,-32],[1,-51],[-17,-41],[-9,-31],[0,-30],[-10,-28],[-21,-14],[-21,-15],[-13,-25],[-22,16],[-15,32],[-38,24],[-18,-14],[-14,-34],[-8,-28],[-35,-5],[-9,-28],[14,-26],[0,-29],[6,-33],[20,-37],[10,-24],[2,-5],[-4,-45],[-13,-28],[19,-42],[26,-17],[12,-30],[31,-40],[25,-19],[9,-28],[24,-16],[13,-25],[40,-16],[9,-27],[33,-29],[2,-59],[25,-33],[48,-50],[13,-60],[22,-4],[20,-27],[6,-55],[-8,-45],[-2,-46],[13,-24],[20,-34],[4,-33],[18,-28],[21,-28],[6,-32],[19,-26],[-7,-50],[-22,-10],[-27,-8],[-23,-7],[-16,-33],[-17,-19],[-30,-21],[-37,-41],[-29,-35],[-21,6],[-28,14],[-17,16],[-25,20],[-24,35],[-19,17],[-26,16],[-24,26],[-20,17],[-18,31],[-14,25],[-9,38],[-16,27],[-42,27],[-38,10],[-31,4]],[[27055,6485],[-26,12],[-26,26],[-25,13],[-49,12],[-45,31],[-22,17],[-30,-2],[-25,10],[-20,19],[-32,35],[-11,34],[1,37],[-9,37],[-21,17],[-23,12],[-38,-7],[-24,-18],[-38,-24],[-26,0],[-25,0],[-23,-14],[-26,9],[-21,14],[-25,15],[-35,5],[-21,-10],[-19,-9],[-34,-5],[-15,34],[-20,35],[-18,25],[-21,1],[-23,2],[-23,-1],[-32,4],[-33,27],[-24,31],[-25,24],[-28,14],[-25,6],[-33,3],[-21,2],[-37,13],[-24,10],[-24,13],[-28,7],[-20,15],[-21,-2],[-27,9],[-22,2],[-23,9],[0,37],[-16,31],[-21,14],[-27,19],[-25,33],[-21,17],[-1,33],[-12,28],[-17,28],[-31,17],[-3,42],[-4,40],[1,38],[-12,37],[-2,31],[-6,34],[-20,21],[-15,22],[-26,0],[-31,8],[-19,-14],[-38,-27],[-34,-5],[-21,23],[-12,24],[-29,42],[-18,27],[-22,14],[-28,3],[-17,-20],[-6,-36],[-13,-24],[-21,-28],[-10,-33],[-7,-27],[-26,6],[-14,-27],[-31,-19],[-26,28],[-29,7],[-24,2],[-29,6],[-26,-1],[-23,-15],[-18,-26],[-15,-30],[-15,-25],[-17,23],[-30,-11],[-27,13],[-14,31],[-4,39],[4,31],[-23,8],[-25,-11],[-10,26],[-24,13],[-28,-3],[-15,-27],[-12,-27],[-6,-29],[-8,-31],[3,-41],[-6,-32],[-13,-33],[3,-31],[-13,-31],[-18,-33],[-11,-25],[-17,-19],[-9,34],[-23,13],[-22,19],[-24,8],[-18,15],[-8,32],[-5,34],[-24,17],[-1,32],[17,32],[-13,39],[-16,22],[-20,-17],[-30,-16],[-21,23],[-30,13],[-31,20],[-7,29],[-8,27],[-21,-3],[-32,4],[-26,16],[-19,32],[11,29],[9,30],[-24,20],[-30,-11],[-27,8],[-19,17],[3,39],[-1,34],[-16,27],[10,30],[21,-2],[19,22],[15,21],[18,38],[22,13],[8,28],[6,33],[-23,30],[-34,2],[-28,28],[22,11],[18,16],[-21,2],[-25,14],[-16,21],[-29,16],[-3,31],[-21,-3],[-28,9],[-23,32],[-32,-1],[-28,6],[-24,17],[-22,16],[-28,-22],[-24,-7],[-30,-28],[-25,7],[-16,32],[-28,-19],[-29,-19],[-20,-19],[-5,-33],[-30,-35],[-22,-2],[-24,-9],[-21,-5],[-35,1],[-21,15],[-42,12],[-33,3],[-30,-7],[-34,31],[-34,-15],[-19,-7],[-27,-45],[-21,-12],[-12,-41],[-8,-34],[-16,-20],[8,-30],[-22,0],[-27,-12],[-15,27],[-26,15],[-19,10],[-30,12],[-28,4],[-17,19],[-21,13],[-34,-2],[-39,-2],[-25,-14],[-25,2],[-33,-2],[-25,-5],[-30,27],[-19,23],[-24,6],[-28,-9],[-26,-11],[-25,2],[-29,-12],[-20,2],[-13,-25],[-33,-16],[-9,36],[-3,42],[-23,21],[-24,0],[-17,37],[-8,41],[-12,26],[-24,43],[-18,28],[-25,-13],[-20,-10],[-25,24],[-32,15],[-21,0],[-8,24],[-1,4],[-5,29],[-24,2],[-31,0],[-20,1],[-21,4],[-19,-20],[-37,4],[-28,10],[-20,10],[-3,36],[-14,23],[-16,38],[-26,5],[-23,-5],[-20,-25],[-23,-21],[-16,-19],[-24,-4],[-22,13],[-25,28],[-21,-3],[-25,-2],[-22,3],[-17,-18],[-24,-20],[-21,-35],[-26,-20],[-26,-2],[-21,13],[-23,38],[-16,21],[-17,18],[-32,9],[-16,-19],[-33,-8],[-22,-10],[-19,-18],[-19,-15],[-21,-23],[-25,10],[-16,22],[-27,39],[0,30],[4,45],[-10,27],[-17,28],[-26,-2],[-33,-11],[-21,-7],[-23,-14],[-24,-29],[-19,-25],[-30,-15],[-18,16],[-15,26],[-23,28],[-20,7],[-21,-22],[-22,9],[-16,19],[-12,31],[-19,21],[-2,34],[2,31],[22,18],[11,30],[-8,29],[-24,-9],[-24,-5],[-26,7],[-20,49],[-6,30],[14,23],[-2,35],[-8,32],[16,17],[26,23],[21,24],[-4,29],[-21,14],[-22,-5],[-20,17],[-23,6],[-20,-15],[-24,9],[-25,15],[-20,2],[-22,56],[-4,29],[0,32],[10,38],[22,26],[-10,26],[-16,17],[-23,12],[-16,26],[-18,26],[-16,24],[-21,-3],[-22,-3],[-26,6],[-23,-12],[-2,-35],[-18,-14],[-26,-15],[-17,-17],[-18,-15],[-20,-3],[-17,-23],[-20,3],[-22,-12],[-12,-32],[10,-32],[6,-32],[18,-20],[-2,-29],[-20,3],[-25,3],[-26,8],[-6,-38],[-20,-11],[-21,9],[-20,2],[-26,3],[-25,12],[-14,32],[-14,26],[-14,26],[-27,38],[-20,-6],[-24,-14],[-17,-26],[-24,-12],[-19,16],[-3,31],[-21,2],[-20,0],[-10,27],[-12,26],[-6,35],[-2,35],[-7,29],[-16,23],[-26,-17],[-8,29],[-4,32],[-23,23],[-20,-15],[-16,-17],[-18,-15],[-23,-5],[-20,0],[-22,0],[-23,2],[-28,0],[-14,-23],[-7,-29],[-12,-23],[-20,-15],[-20,15],[-25,3],[-20,-12],[-24,-23],[-23,-6],[-10,-26],[-20,-3],[-20,0],[-25,9],[-20,11],[-18,18],[-21,-9],[-24,3],[-22,12],[-23,-18],[-22,0],[-18,-20],[-23,-3],[-16,-23],[-16,-18],[-20,-23],[-27,-12],[-16,-17],[-2,-41],[16,-20],[12,-27],[12,-29],[17,-26],[18,-17],[20,-21],[-14,-23],[-6,-32],[-22,-12],[-23,-17],[-20,-15],[-20,-5],[-27,-3],[-20,-3],[-18,-18],[-23,-8],[-20,-6],[-12,-26],[-24,0],[-21,0],[-24,2],[-31,-2],[-24,2],[-18,-14],[-23,-18],[-18,-14],[-15,-24],[10,-43],[-5,-29],[-23,-15],[-19,-17],[-19,-12],[-19,19],[-25,18],[-54,15],[-24,-6],[-27,15],[-27,-8],[-36,-38],[-28,-12],[-29,10],[-26,18],[-34,15],[-25,-1],[-22,-5],[-25,-18],[-19,-18],[-12,-23],[-21,6],[-30,6],[-22,20],[-21,-6],[-29,-3],[-31,11],[-12,24],[-26,36],[-24,10],[-17,26],[-25,29],[-22,11],[-20,15],[-24,8],[-26,3],[-23,4],[-11,26],[-11,39],[-17,19],[-15,23],[-15,21],[-18,18],[-27,2],[-22,-17],[-28,-21],[-21,-4],[-27,15],[-29,-10],[-10,-35],[-18,-16],[-20,-12],[-27,-15],[-33,4],[-18,20],[-24,7],[-16,17],[-25,10],[-25,6],[-21,12],[-23,-3],[-23,-2],[-51,2],[-15,-23],[-19,-19],[-8,-29],[-19,-30],[-23,-21],[-22,16],[-21,32],[-22,-18],[-22,-14],[-25,5],[-36,9],[-29,18],[-22,5],[-43,9],[-34,23],[-4,32],[-16,41],[-11,32],[-2,32],[-2,32],[-26,-14],[-28,-12],[-25,-9],[-20,-3],[-24,-23],[-21,6],[-32,3],[-23,0],[-32,9],[-20,-3],[-29,-21],[-32,1],[-4,2],[-21,9],[-26,0],[-110,-20],[-18,20],[-33,23],[-24,38],[-14,38],[-22,32],[-23,14],[-24,-5],[-35,14],[-20,18],[8,37],[14,24],[21,40],[8,38],[4,44],[20,26],[16,17],[21,18],[2,38],[-12,35],[-9,35],[13,34],[4,35],[-2,30],[-8,29],[-17,29],[-2,35],[6,29],[-8,29],[-26,29],[-61,9],[-22,-12],[-27,-3],[-18,23],[-39,3],[-10,26],[-10,44],[-10,26],[-2,38],[-12,23],[-33,18],[-14,35],[6,35],[-24,11],[-27,32],[0,35],[-12,32],[-16,21],[-31,-15],[-18,-20],[-32,8],[-21,-23],[-26,12],[-26,-12],[-35,12],[-22,6],[-23,14],[-34,15]],[[47662,14259],[366,-690],[378,-433],[177,-204],[238,-202],[73,-63],[294,-271],[-103,-224],[-181,-219],[-81,-125],[-44,-38],[-114,-98],[-224,-206],[-217,-141],[-208,-151],[-76,-28],[-351,-242],[-585,-374],[320,-537],[0,-1],[1,-1],[-3,-1],[-100,-54],[-66,-36],[-62,-34],[-54,-29],[-44,-76],[-28,-48],[425,-258],[359,266],[189,-87],[-353,-735],[-204,-129],[-72,-48],[-222,-151],[-157,-95],[-291,-67],[-416,-191],[75,-141],[-128,-100],[-108,-106],[-216,-102],[-521,-369],[-296,-200],[-352,-342],[-170,-119],[-121,-51],[-152,-178],[-219,-93],[-327,295],[-64,57],[-49,283],[87,377],[-374,696],[-56,-81],[-91,12],[-75,-61],[-204,-2],[-92,-91],[-161,20],[-169,-53],[-168,-90],[-365,-287],[-70,-95],[-50,6],[-88,-89],[-35,-68],[-609,-430],[-26,-98],[-163,-24],[-125,-72],[-2,-74],[-182,-155],[-87,-19],[-930,-628],[-335,-229],[-82,-99],[-61,28],[-72,-37],[-24,-58],[-72,2],[-88,-62],[-111,-31],[-117,-97],[-85,1],[-257,-146],[-200,-73],[-136,342],[-118,156],[-32,137],[-102,32],[-149,10],[-64,5],[-34,36],[-37,40],[-28,-2],[-35,-2],[-4,68],[-5,76],[-3,36],[-89,84],[-347,329],[-232,215],[-100,-78],[-184,104],[-51,0],[-40,40]],[[36220,6623],[-115,-276],[39,-259],[-403,-787],[301,-472],[54,-85],[18,-28],[313,-492],[-50,-29],[-307,-179],[-99,-116],[-224,-251],[-329,-334],[-242,-150],[-166,-126],[-241,-96],[-244,-139],[-160,-91],[-277,-57],[-108,-33],[-110,3],[-120,43],[35,257],[-186,-40],[-882,-270],[-581,-133],[-602,-110],[-278,-78],[-400,-168],[-413,-174],[-435,-162],[-310,-227],[-380,-279],[-518,-321],[-233,229],[-269,264],[-156,151],[-57,55],[-644,624],[-263,254],[-51,50],[-15,17],[-405,445],[-125,163],[-567,740]],[[26015,3956],[162,380],[4,11],[12,31],[15,35],[40,99],[36,90],[11,25],[69,170],[2,5],[12,30],[68,166],[19,50],[124,301],[40,98],[29,72],[98,238],[121,294],[30,72],[94,229],[27,66],[27,67]],[[26015,3956],[-45,7],[-32,-36],[-25,-86],[-8,-30],[-34,-26],[2,-35],[26,-61],[2,-58],[-16,-37],[-45,-32],[-20,-54],[-16,-59],[-23,-21],[-46,-34],[-28,-10],[-40,-14],[-103,29],[-18,20],[-6,35],[-22,1],[-25,-18],[-21,-5],[-18,-35],[0,-30],[-51,-33],[-42,-10],[-5,-29],[-14,-25],[2,-44],[-38,-44],[-14,1],[-16,-26],[-1,-71],[39,-96],[-23,-17],[-14,-34],[-64,-26],[-16,-30],[-48,-64],[23,-59],[23,-7],[3,-29],[-22,-17],[-12,-31],[-33,-5],[-17,-67],[-15,-29],[6,-31],[-16,-34],[-25,-28],[-12,-62],[0,-32],[-15,-34],[-11,-16],[-9,-37],[-20,-31],[-45,-12],[-27,-12],[-17,-40],[18,-75],[-1,-32],[-38,-19],[-63,-20],[-31,-10],[-22,-28],[-49,14],[-49,-20],[-38,29],[-24,13],[-29,7],[-13,32],[-30,-10],[-21,20],[-42,-28],[-58,-51],[-73,4],[-19,24],[-45,-4],[-10,-4],[-10,-57],[-21,-23],[-36,-7],[-26,-22],[-15,-31],[-68,-10],[-30,-15],[-25,-25],[-3,-46],[7,-30],[-16,-10],[-13,-3],[-31,-43],[-23,-36],[-23,-9],[-25,-34],[-24,8],[-21,-3],[-24,-30],[-15,-3],[-27,-12],[-24,4],[-17,-3],[-58,-40],[-36,-56],[-35,-28],[-13,-24],[-12,-23],[-55,-15],[-21,19],[-22,4],[-23,13],[-33,-3],[-20,-27],[-27,5],[-31,-1],[-20,21],[-50,21],[-16,28],[-31,38],[-3,48],[12,29],[-9,23],[-21,-4],[-31,-50],[-25,-52],[-27,-46],[-31,-131],[-10,-30],[-25,-56],[-5,-60],[1,-32],[7,-28],[2,-30],[-4,-60],[-6,-32],[-2,-39],[-5,-33],[-13,-26],[-39,-39],[-87,-37],[-21,-18],[-32,-49],[-48,-4],[-30,-44],[-22,-8],[-39,30],[-24,-3],[-20,-20],[-15,-22],[-47,-24],[-38,1],[-28,-32],[-21,-24],[-22,3],[-41,-14],[-35,-46],[-23,10],[-19,-13],[-31,-46],[-22,3],[-25,14],[-22,0],[-20,-14],[-24,-104],[-129,-182],[-43,-74],[-55,25],[-52,-44],[-2,-2],[-13,-11],[-58,-4],[-1080,-68],[-378,-24],[-745,-47],[-130,29],[-65,46],[-21,39],[-15,178],[-45,0],[-16,46],[-145,-1],[-46,70],[-1,42],[-46,25],[-14,55],[-40,27],[-42,10],[-14,28],[4,33],[-44,30],[-20,-8],[-32,42],[-38,25],[-41,45],[-66,46],[5,37],[-15,21],[6,64],[-12,35],[-25,15],[-39,93],[-26,7],[-32,39],[-51,11],[-45,-18],[-41,13],[-40,-10],[-39,-55],[-62,17],[-53,-9],[-24,-19],[-10,28],[-6,89],[-63,22],[-7,30],[26,174],[17,32],[24,109],[-48,42],[-3,32],[-40,44],[1,84],[-21,72],[-73,11],[-13,24],[-55,53],[-58,28],[-19,18],[-9,103],[15,109],[-40,12],[-36,-23],[-21,12],[-42,-15],[-82,-29],[-38,-24],[-52,28],[-27,-10],[-36,29],[-83,77],[4,34],[-23,54],[-28,9],[-13,39],[-52,0],[-9,26],[-24,-2],[-36,35],[-23,-4],[-39,-45],[-14,-34],[-23,-7],[-7,104],[-52,8],[-55,-14],[-15,20],[-41,-6],[-47,23],[-29,-8],[-30,-58],[-80,-20],[-41,-42],[-70,-43],[-68,-18],[-54,13],[-73,-16],[-43,49],[-64,-1],[-20,22],[-51,11],[25,71],[-21,26],[-32,-3],[-51,29],[-72,-32],[-22,11],[-28,-10],[-29,3],[-17,-20],[-43,21],[-25,63],[-23,-1],[-46,6],[-13,135],[37,115],[-2,33],[-14,22],[-19,-9],[-18,54],[18,19],[6,33],[-16,66],[7,60],[-15,26],[-21,-1],[-69,-58],[-37,25],[-27,26],[-61,79],[22,60],[34,41],[60,48],[-6,30],[-42,37],[-14,27],[-47,43],[-37,34],[-19,18],[-23,-7],[-27,14],[-12,27],[-25,6],[-6,68],[-20,28],[-8,64],[-28,6],[-22,-13],[-39,40],[13,85],[-46,0],[-21,-21],[-62,-23],[-75,27],[-41,17],[-30,-4],[-37,-45],[-34,37],[-15,20],[-21,-2],[-7,12],[-22,38],[23,15],[3,35],[-10,44],[-27,69],[-25,12],[1,35],[-6,29],[-52,-3],[-30,42],[-52,-17],[-42,49],[8,31],[-29,5],[-2,84],[-52,25],[-52,8],[-42,-12],[-22,11],[-4,78],[-13,27],[-29,7],[-7,30],[-19,58],[-34,38],[-23,5],[-19,-27],[-17,24],[-9,33],[-38,56],[37,112],[9,27],[-43,6],[-43,27],[-52,70],[-2,67],[-14,61],[41,28],[14,27],[-10,30],[-20,25],[-67,35],[-18,63],[21,70],[79,68],[6,33],[-12,28],[-19,12],[-17,78],[16,24],[45,28],[43,41],[-11,30],[-15,65],[18,24],[18,42],[-16,35],[-34,38],[12,48],[13,55],[44,41],[32,1],[23,32],[10,65],[13,34],[-50,22],[-38,48],[-25,24],[-44,8],[-62,73],[-14,76],[-59,2],[-6,46],[-15,37],[7,42],[-40,136],[35,44],[10,33],[51,24],[-26,61],[11,45],[27,13],[-5,31],[-30,51],[-39,30],[-47,1],[-41,-17],[-52,9],[-3,30],[-39,53],[-3,30],[-18,16],[-10,30],[-97,20],[-74,74],[-18,-25],[-95,-9],[-94,-34],[-49,32],[26,92],[-7,28],[-47,36],[-29,53],[1,32],[-31,17],[-70,22],[-52,-16],[-86,-71],[-53,30],[-8,32],[6,65],[-39,58],[-55,19],[-27,96],[12,111],[-24,23],[-30,18],[7,76],[-13,67],[0,31],[-13,26],[73,90],[4,68],[32,58],[83,30],[57,-3],[81,11],[23,-25],[56,36],[26,59],[90,32],[11,33],[62,19],[24,66],[49,10],[128,-54],[80,8],[11,32],[-9,41],[-22,78],[11,95],[39,53],[53,10],[66,-14],[43,40],[-7,107],[31,55],[38,17],[27,2],[59,28],[30,1],[64,49],[99,15]]],"transform":{"scale":[0.000049251497444973905,0.00003436933186332019],"translate":[-82.64354237799989,37.20172175000005]}} diff --git a/src/js/config/mapconfig/mapfiles/county/wy-counties.json b/src/js/config/mapconfig/mapfiles/county/wy-counties.json new file mode 100644 index 00000000..556231fd --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/county/wy-counties.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-111.05687488399991,40.99549316200006,-104.05224885499985,45.00589722600017],"geometries":[{"type":"Polygon","properties":{"name":"WY"},"id":"56029","arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56003","arcs":[[6,7,8,-1,9]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56005","arcs":[[10,11,12,13,14,15]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56033","arcs":[[-15,16,-7,17]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56011","arcs":[[18,-11,19]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56039","arcs":[[20,21,22,23,-5]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56019","arcs":[[-14,24,25,26,-8,-17]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56045","arcs":[[27,28,29,-12,-19]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56043","arcs":[[-27,30,31,32,-2,-9]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56017","arcs":[[-33,33,-3]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56013","arcs":[[-34,-32,34,35,36,37,-21,-4]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56027","arcs":[[38,39,40,41,-29]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56009","arcs":[[-42,42,43,44,45,-25,-13,-30]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56025","arcs":[[-26,-46,46,-35,-31]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56035","arcs":[[47,48,-22,-38]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56023","arcs":[[-49,49,50,51,-23]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56015","arcs":[[52,53,54,-40]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56031","arcs":[[-55,55,56,-43,-41]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56007","arcs":[[-45,57,58,59,-36,-47]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56001","arcs":[[-57,60,61,-58,-44]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56037","arcs":[[-37,-60,62,63,-50,-48]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56021","arcs":[[-54,64,-61,-56]]},{"type":"Polygon","properties":{"name":"WY"},"id":"56041","arcs":[[-64,65,-51]]}]},"states":{"type":"GeometryCollection","bbox":[-111.05687488399991,40.99549316200006,-104.05224885499985,45.00589722600017],"geometries":[{"type":"Polygon","properties":{"name":"Wyoming"},"id":"56","arcs":[[9,17,15,19,27,38,52,64,61,58,62,65,51,23,5]]}]}},"arcs":[[[34771,99859],[-5,-17],[-2,-10],[-1,-30],[0,-47],[-1,-209],[-2,-61],[2,-50],[3,-127],[2,-37],[3,-136],[1,-49],[-1,-32],[-1,-26],[-2,-26],[0,-88],[0,-56],[0,-33],[1,-275],[0,-92],[2,-38],[1,-59],[4,-100],[1,-162],[1,-64],[0,-46],[0,-11],[0,-18],[2,-41],[0,-1],[1,-38],[0,-56],[0,-41],[-1,-7],[-1,-157],[-1,-166],[-1,-82],[1,-57],[1,-245],[1,-99],[1,-163],[0,-73],[3,-87],[139,0],[41,-1],[113,-1],[15,2],[25,-1],[69,0],[0,-28],[-1,-322],[0,-40],[1,-56],[-1,-25],[-2,-50],[0,-183],[0,-496],[0,-68],[0,-40],[0,-26],[0,-93],[0,-71],[0,-122],[0,-88],[1,-173],[0,-562],[0,-29],[0,-118],[0,-42],[-1,-56],[0,-7],[0,-39],[0,-31],[1,-91],[0,-32],[0,-60],[1,-81],[-1,-132],[0,-57],[0,-26],[0,-10],[0,-16],[0,-37],[1,-102],[0,-102],[0,-52],[0,-174],[1,-49],[0,-233],[1,-147],[0,-77],[-2,-166],[0,-122],[1,-64],[2,-176],[1,-33],[0,-27],[-1,-55],[-2,-61],[-4,-135],[4,-47],[0,-175],[0,-68],[-1,-209],[-1,-351],[-1,-214],[-1,-197],[-1,-50],[1,-560],[0,-60],[0,-197],[0,-117],[0,-389],[0,-68],[0,-221],[0,-20],[0,-28],[0,-162],[0,-33],[0,-256],[1,-236],[154,-2],[59,0],[59,-1],[1,-81],[0,-53],[0,-120],[0,-160],[-1,-106],[0,-591],[0,-20],[0,-260],[0,-14],[0,-79],[0,-1],[0,-210],[0,-60],[0,-63],[0,-166],[0,-295],[0,-229],[-1,-205],[0,-174],[0,-9],[0,-36],[0,-122],[0,-49],[0,-53],[0,-13],[0,-204],[0,-264],[-3,-468],[0,-52],[0,-119],[1,-65],[0,-91],[0,-116],[0,-520],[0,-142],[1,-272],[0,-705],[0,-26],[0,-541],[0,-40],[-1,-225],[0,-34],[-1,-470],[0,-117],[0,-417],[0,-1],[0,-70],[-1,-200],[0,-96],[0,-361],[37,0],[43,0],[227,-1],[25,0]],[[35781,79117],[-1,-471],[-1,-255],[0,-2],[-2,-356],[3,-545],[-1,-255],[0,-4],[-1,-178],[0,-154]],[[35778,76897],[-124,-1],[-28,0],[-223,3],[-81,1],[-24,0],[-110,1],[-66,1],[-94,0],[-4,0],[-291,2],[-25,0],[-84,0],[-114,-2],[-84,2],[-141,0],[-60,-5],[-136,3],[-69,1],[-67,2],[-61,1],[-27,0],[-65,2],[-155,-1],[-17,0],[-18,0],[-166,0],[-33,0],[-116,-2],[-57,2],[-186,3],[-52,1],[-78,0],[-497,-7],[-11,0],[-27,-1],[-26,0],[-31,-1],[0,-21],[0,-27],[0,-136],[0,-193],[0,-64],[0,-56],[0,-52],[0,-64],[0,-36],[0,-26],[0,-64],[1,-55],[0,-31],[0,-56],[0,-79],[0,-33],[0,-80],[0,-41],[1,-561],[0,-2],[0,-139],[0,-69],[0,-100],[0,-1],[5,-201],[-11,-21],[-887,2],[-194,0],[-75,0],[-31,0],[-575,-7],[5,-263],[3,-115],[3,-147],[4,-194],[5,-223],[1,-45],[1,-36],[0,-2],[19,-888],[0,-10],[0,-18],[5,-206],[-44,0],[-484,-1],[-7,0],[-418,0],[-58,0],[-19,0],[-225,0],[-85,10],[-3,0],[-18,-1],[-74,-1],[-418,-5],[-467,-6],[-252,-3],[0,-186],[-1,-538],[4,-225],[1,-238],[3,-460],[4,-554],[-479,-5],[-104,0],[-322,-2],[-233,3],[-471,1],[-139,0],[-17,0],[-499,-2],[-264,2],[-48,1],[0,-64],[-308,-4],[-4,0],[-264,-5]],[[24897,70259],[-3,38],[-18,31],[-13,24],[-11,22],[-3,6],[-8,28],[1,33],[1,29],[-9,25],[13,23],[-11,29],[-19,31],[-16,27],[-11,20],[-18,23],[-7,26],[-6,21],[-3,17],[-2,15],[4,25],[12,17],[-2,11],[-4,24],[-18,18],[-14,19],[-1,2],[-13,23],[-37,16],[-15,4],[-7,2],[-15,19],[-13,17],[-18,4],[-8,13],[-15,23],[-16,14],[-8,0],[-8,1],[-17,-14],[-4,-4],[-40,-29],[-30,-2],[-22,-4],[-25,9],[-22,-3],[-3,-1],[-18,-6],[-21,10],[-19,-1],[-16,4],[-15,20],[-20,8],[-16,-1],[-5,3],[-20,12],[-18,2],[-18,7],[-3,1],[-4,1],[-12,2],[-16,0],[-28,3],[-8,3],[-9,3],[-15,26],[2,59],[-8,26],[-1,15],[0,10],[4,15],[3,11],[-16,22],[-10,0],[-7,-1],[-8,7],[-7,6],[-2,8],[-6,23],[-7,22],[0,5],[3,25],[3,25],[1,5],[0,5],[3,26],[20,12],[2,2],[-22,24],[-17,32],[-6,26],[0,13],[1,13],[-7,27],[-2,12],[-2,18],[-16,30],[-3,25],[1,29],[0,35],[-2,7],[-5,16],[-9,30],[7,11],[4,6],[11,19],[10,28],[-2,33],[-2,21],[0,5],[4,33],[-13,29],[-12,22],[-26,36],[-7,8],[-16,16],[-15,34],[-7,1],[-16,2],[-33,2],[-9,-2],[-25,-4],[-20,-2],[-12,0],[-11,0],[-32,1],[-32,9],[-23,8],[-17,5],[-10,8],[-14,11],[-14,21],[-8,11],[-14,33],[-13,22],[-9,14],[9,46],[1,31],[1,13],[-24,41],[-10,33],[-9,33],[-3,10],[-7,23],[-12,36],[13,53],[-3,12],[-4,13],[-45,17],[-27,28],[-7,41],[-8,39],[-21,51],[-34,-4],[-8,-1],[-68,4],[-3,0],[-79,21],[-38,36],[-62,63],[-20,41],[-16,30],[-19,55],[-6,18],[-3,15],[-10,54],[-6,66],[0,4],[-5,19],[-13,55],[-12,28],[-11,24],[-40,0],[-5,-1],[-48,-12],[-38,-9],[-45,-47],[-50,9],[-64,38],[-82,27],[-57,39],[0,52],[22,58],[5,55],[-23,43],[-1,14],[-3,33],[-4,68],[-24,48],[-24,44],[-18,-10],[-15,-8],[-50,0],[-51,14],[-3,0],[-25,4],[-7,-4],[-27,-12],[-4,-13],[-8,-28],[-11,-16],[-8,-13],[-35,-29],[-20,-17],[-15,-12],[-13,-9],[-10,-7],[-8,-18],[-6,-15],[-10,-10],[-8,-9],[-23,-29],[-37,-10],[-5,-1],[-21,1],[-14,-7],[-13,12],[-4,3],[-7,-4],[-16,-7],[-24,11],[-1,1],[-12,14],[-15,8],[-4,2],[-12,10],[-16,13],[-13,13],[-19,18],[-23,12],[-4,8],[-13,23],[-25,37],[0,1],[-51,26],[-7,7],[-24,27],[-29,26],[-14,13],[-20,53],[-8,28],[-8,29],[-30,43],[-6,9],[-15,10],[-23,14],[-19,37],[-18,35],[-1,38],[-36,-1],[-6,0],[-40,-8],[-28,-2],[-37,-8],[-28,-32],[-6,-7],[-4,-4],[-25,-28],[-24,-58],[-17,-19],[-48,-4],[-16,7],[-17,7],[-19,-6],[-4,-10],[-9,-29],[-14,-58],[-24,-21],[-4,-6],[-30,-51],[-27,-49],[-1,-24],[0,-16],[-17,-41],[-3,-3],[-28,-44],[-39,-31],[-27,-28],[-10,-5],[-11,-6],[-17,7],[-1,0],[-32,5],[-9,13],[-4,5],[-14,20],[-10,14],[-19,28],[-18,52],[-29,48],[-12,12],[-10,9],[-29,32],[-3,1],[-12,0],[-17,29],[-20,4],[-36,-22],[-10,-6],[-8,-17],[-19,-41],[2,-23],[3,-41],[2,-10],[4,-15],[18,-60],[-8,-38],[-7,-38],[-8,-14],[-9,-19],[-12,-24],[-7,-14],[-35,-48],[-25,-55],[-6,-34],[-3,-19],[-27,-16],[-25,-4],[-15,-8],[-26,-16],[-31,2],[-23,14],[-7,5],[-12,12],[-5,6],[-45,-7],[-69,-41],[-15,-24],[-25,-41],[-1,-1],[-24,-13],[-14,4],[-37,11],[-38,-51],[-4,-22],[-3,-18],[-23,-34],[-3,-56],[-11,-36],[-8,-28],[-33,-42],[-24,-44],[-32,-60],[-1,-37],[0,-10],[1,-20],[3,-44],[-4,-53],[-5,-25],[-8,-42],[-11,-47],[18,-51],[8,-72],[7,-43],[4,-25],[3,-16],[4,-23],[-13,-42],[-20,-54],[-13,-40],[-26,-29],[-19,-21],[-4,-2],[-25,-16],[-44,29],[-8,6],[-18,12],[-14,-11],[-3,-45],[-1,-22],[2,-41],[-8,-31],[-17,-24],[-13,-21],[-12,-26],[-2,-11],[-4,-26],[-8,-32],[-7,-29],[5,-45],[4,-26],[12,-21],[9,-40],[6,-36],[11,-42],[15,-15],[4,-3],[11,-7],[14,-22],[4,-5],[1,-19],[1,-11],[3,-49],[3,-25],[-4,-33],[-2,-11],[-8,-26],[-2,-10],[-6,-20],[6,-8],[6,-9],[7,-25],[3,-25],[-20,-15],[-39,-1],[-3,-1],[-1,0],[-20,-6],[-15,-6],[-12,-19],[-13,-22],[-12,-8],[-6,-4],[-6,-2],[-15,-5],[-19,-1],[-6,0],[-13,1],[-8,0],[-12,-1],[-16,3],[-20,10],[-15,10],[-14,11],[-8,5],[-15,-16],[-4,-3],[-3,-8],[-7,-18],[-4,-17],[-3,-10],[-8,-30],[-11,-17],[-17,-1],[-7,-1],[-53,-2],[-22,9],[-23,9],[-20,6],[-17,5],[-15,7],[-17,1],[-8,-17],[-6,-12],[-4,-10],[-8,-19],[-9,-16],[-9,-14],[-10,-19],[-34,-19],[-32,11],[-3,1],[-22,2],[-24,18],[-9,14],[-5,7],[-22,5],[-19,-7],[-7,-2],[-14,-6],[-11,-35],[-12,-21],[-6,-17],[-3,-9],[-2,-30],[-19,-2],[-5,0],[-22,27],[-23,-13],[-5,-3],[-44,0],[-16,-5],[-16,-22],[-12,-25],[-9,-30],[-1,-42],[-4,-7],[-7,-12],[-39,-8],[-11,4],[-16,5],[-22,5],[-11,-5],[-6,-3],[-5,-7],[-12,-15],[-14,-18],[-20,-26],[-27,-43],[-37,-53],[-13,-69],[-15,-21],[-17,-4],[-20,4],[-18,-2],[-17,8],[-13,20],[-17,8],[-5,2],[-18,10],[-14,14],[-13,19],[-8,-10],[-6,-7],[0,-10],[-1,-17],[-8,-26],[-7,-23],[-14,-20],[-13,-15],[-20,-23],[-8,-5],[-12,-7],[-13,-16],[-6,-1],[-17,-2],[-16,-6],[-21,-12],[-14,-3],[-14,-4],[-7,-1],[-13,-2],[-16,-6],[-10,-17],[-1,-3],[-1,-38],[4,-33],[-1,-2],[-4,-26],[-7,-7],[-7,-7],[-13,-15],[-18,-4],[-17,-4],[-14,-14],[-13,-28],[-1,-37],[-1,-6],[-4,-26],[-19,25],[-18,26],[-24,13],[-23,7],[-17,10],[-4,3],[-2,3],[-10,12],[-10,3],[-11,3],[-12,8],[-8,5],[-16,26],[-3,5],[-7,15],[-9,14],[-5,6],[-18,7],[-15,2],[-6,1],[-14,2],[-10,1],[-35,7],[-18,3],[-14,19],[-12,16],[-7,10],[-5,7],[-16,26],[-5,24],[-12,14],[-12,14],[-2,2],[-6,4],[-11,6],[-17,15],[-21,-14],[-4,0],[-12,0],[-18,7],[-3,0],[-21,8],[-21,1],[-17,6],[-16,42],[3,22],[2,11],[-6,35],[0,36],[2,26],[1,12],[-4,9],[-7,13],[-13,4],[-3,1],[-18,-1],[-9,-28],[-2,-6],[-8,-18],[-18,-5],[-6,0],[-13,-1],[-10,1],[-8,1],[-17,-16],[-12,-13],[-8,-7],[-9,-9],[-18,-14],[-20,-15],[-11,2],[-12,2],[-17,15],[-7,5],[-12,23],[-23,27],[-15,9],[-1,0],[-17,5],[-13,12],[-20,20],[-18,19],[-12,15],[-17,23],[-19,32],[-9,25],[5,24],[8,32],[3,19],[2,15],[1,18],[0,19],[2,24],[1,9],[16,28],[16,9],[19,7],[3,1],[15,2],[-12,17],[-16,14],[-4,3],[-21,23],[-10,14],[-11,15],[-15,31],[-1,13],[0,15],[-1,30],[0,23],[0,8],[9,22],[1,8],[8,33],[7,10],[8,12],[4,1],[18,7],[17,4],[9,31],[8,30],[2,3],[16,19],[20,17],[7,1],[17,3],[17,-1],[7,0],[19,-9],[21,-4],[5,-2],[9,6],[6,4],[11,18],[22,20],[4,2],[18,6],[24,7],[16,-10],[13,0],[9,0],[12,4],[13,5],[20,4],[10,-7],[3,-2],[22,4],[8,6],[7,5],[14,26],[16,16],[23,8],[17,14],[4,9],[7,20],[13,13],[15,9],[15,7],[7,2],[17,9],[12,11],[4,4],[-7,23],[-18,10],[-8,4],[-10,5],[-10,13],[-5,8],[-7,16],[-4,10],[-6,9],[-7,12],[-19,27],[-10,4],[-7,3],[-21,-4],[-15,-2],[-10,-2],[-6,-2],[-13,-3],[-5,-2],[-24,-1],[-5,14],[-6,15],[-4,10],[-7,18],[-6,20],[-3,11],[-10,21],[-4,8],[0,19],[0,16],[13,32],[4,5],[14,14],[13,10],[17,4],[24,-6],[11,27],[7,24],[5,3],[19,13],[34,27],[21,9],[7,3],[29,29],[6,36],[-21,32],[-24,28],[-9,11],[-9,12],[-22,26],[-4,4],[-4,4],[-13,13],[-13,-7],[-7,-3],[-29,4],[-2,23],[0,11],[-27,8],[-25,29],[-4,24],[-4,18],[-3,13],[-4,15],[-1,38],[-10,24],[-32,-10],[-15,0],[-17,0],[-6,12],[-10,22],[-28,18],[-33,7],[-28,27],[-17,22],[-10,13],[-5,4],[-16,13],[-25,-1],[-26,8],[-26,5],[-28,2],[-19,-4],[-3,-1],[-23,-4],[-14,8],[30,48],[28,17],[14,9],[15,22],[10,17],[29,31],[8,32],[16,5],[6,8],[8,11],[-2,24],[0,5],[-8,22],[-4,7],[-17,25],[2,8],[6,22],[2,26],[0,9],[1,46],[8,27],[-3,30],[-2,12],[-8,43],[-15,15],[-5,4],[-10,7],[-19,12],[-17,37],[14,33],[20,21],[0,-1],[-17,-2],[-22,-16],[-5,-4],[-24,-11],[-35,12],[-29,20],[-36,-1],[-27,4],[-7,0],[-23,23],[-27,7],[-43,12],[-16,56],[-1,6],[-6,43],[2,36],[15,16],[12,12],[26,21],[4,4],[21,21],[9,35],[6,9],[15,23],[16,19],[32,0],[38,23],[4,3],[23,25],[-5,71],[0,10],[9,37],[2,27],[1,28],[8,12],[3,6],[17,5],[15,9],[-7,48],[-13,35],[-20,33],[-8,35],[-1,9],[-3,19],[-12,-1],[-16,-1],[-6,0],[-16,-2],[-19,-15],[-15,-9],[-13,-18],[-8,-7],[-8,-7],[-4,-4],[-11,-8],[-17,-11],[-12,-8],[-6,-4],[-12,-8],[-23,2],[-9,-3],[-8,-2],[-24,-16],[-10,-6],[-13,-8],[-20,-18],[-27,-28],[-6,-7],[-8,-8],[-19,-11],[-11,-7],[-15,-6],[-20,5],[-37,-15],[-73,-28],[-38,-5],[-32,-4],[-67,0],[-65,-8],[-27,-4],[-26,-4],[-14,1],[-41,2],[-32,5],[-13,2],[-12,-3],[-12,-2],[-29,-4],[-18,23],[-32,37],[-29,37],[-5,4],[-24,18],[-38,-4],[-19,26],[-10,35],[-16,50],[-26,32],[-30,43],[-16,2],[-15,1],[-52,-2],[-5,4],[-27,19],[-23,28],[-8,9],[-34,19],[-13,20],[-17,28],[-21,21],[-26,6],[-21,4],[-38,-29],[-51,-35],[-25,-15],[-14,-43],[-3,-8],[-12,-13],[-11,-12],[-11,-29],[-23,-39],[-28,-17],[-4,-2],[-23,-9],[-40,0],[-23,0],[-12,-3],[-15,-3],[-25,-30],[-24,-33],[-37,-47],[-27,-19],[-27,9],[-23,3],[-4,0],[-25,18],[-14,13],[-45,38],[-8,21],[-3,11],[-5,10],[-6,15],[-10,20],[0,35],[5,30],[0,29],[9,28],[11,30],[-1,30],[-11,25],[-1,2],[-4,21],[-2,23],[-1,10],[-5,12],[-5,14],[-19,6],[-20,-2],[-12,-3],[-8,-2],[-14,-2],[-1,-1],[-1,0],[-15,-5],[-17,0],[-19,10],[-21,8],[-9,-3],[-10,-2],[-8,-3],[-7,-2],[-16,0],[-6,0],[-11,-1],[-7,13],[-6,10],[-6,28],[-2,20],[-1,10],[0,24],[1,11],[1,19],[0,33],[0,25],[-1,17],[-1,9],[-2,14],[-3,15],[1,11],[1,21],[3,30],[-2,6],[-9,28],[-11,7],[-5,4],[-8,3],[-8,3],[-15,20],[-12,24],[3,24],[0,8],[1,20],[-9,26],[-5,8],[-10,15],[-6,9],[-5,8],[-3,6],[-7,13],[-9,17],[-3,5],[-2,29],[-10,24],[-13,20],[-16,27],[-2,4],[-6,16],[-10,24],[-13,21],[-5,29],[1,3],[6,21],[4,11],[5,13],[1,19],[1,24],[-8,12],[-19,26],[-30,16],[-35,-1],[-8,0],[-13,0],[-32,27],[-14,7],[-18,1],[-16,38],[-29,12],[-9,19],[-10,22],[-27,25],[-17,-10],[-23,-18]],[[14329,75117],[-1,1415],[0,2],[0,452],[-1,270],[0,506],[0,2],[2,113],[-3,155],[1,192],[-145,0],[-208,-1],[-23,0],[-24,1],[-468,14],[-70,2],[-12,0],[2,33],[19,9],[15,-8],[15,24],[-10,21],[-20,4],[-20,-4],[-29,14],[2,40],[3,38],[-18,10],[-22,21],[10,48],[-9,19],[-16,-5],[-6,-2],[-14,-16],[-9,25],[7,31],[16,52],[6,23],[1,5],[0,25],[0,2],[-13,23],[-29,4],[1,29],[23,15],[18,-10],[13,14],[4,5],[-7,17],[-4,11],[-5,3],[-16,12],[-7,48],[-8,24],[-12,29],[-1,2],[1,1],[13,28],[22,17],[25,-6],[18,-3],[26,54],[-6,38],[-3,29],[14,25],[40,25],[16,18],[-1,30],[-34,33],[-21,2],[-1,42],[-5,25],[-24,20],[-3,25],[28,15],[5,24],[16,17],[15,9],[22,6],[10,29],[13,12],[25,-1],[22,-26],[25,6],[17,18],[3,41],[11,35],[21,32],[10,25],[-8,29],[-14,10],[-23,-4],[-28,-20],[-30,-3],[-18,-5],[-11,-19],[2,-30],[-1,-30],[-16,-12],[-19,16],[2,27],[-17,27],[-24,28],[5,54],[18,4],[17,1],[24,15],[8,36],[-15,23],[-34,21],[-52,25],[-20,2],[-1,27],[0,1],[2,2],[17,25],[1,0],[26,2],[1,0],[14,-8],[23,-21],[1,0],[16,-11],[28,-9],[29,-21],[23,13],[1,0],[14,11],[14,33],[-3,25],[-20,43],[-10,38],[-7,31],[-19,22],[-26,5],[-14,-12],[-8,-30],[-17,-14],[-20,2],[-17,24],[-18,46],[-22,28],[-15,41],[5,33],[30,47],[37,18],[18,13],[7,36],[21,7],[48,-25],[15,1],[12,22],[-13,27],[-20,23],[-11,27],[-8,60],[-10,18],[-15,6],[-15,0],[-34,-26],[-21,-27],[-18,-39],[-11,-33],[-14,12],[-1,43],[-7,44],[-26,70],[-18,38],[-6,43],[-12,36],[-17,22],[-23,23],[-27,17],[3,28],[13,21],[9,32],[-1,23],[-1,11],[-10,8],[-13,9],[-12,34],[-18,33],[-18,46],[-20,26],[-1,25],[0,1],[1,1],[9,32],[27,7],[16,18],[2,38],[-2,51],[9,45],[-5,30],[26,33],[5,32],[-20,13],[-17,-4],[-15,-3],[-27,6],[-12,18],[-9,21],[-13,22],[-18,18],[-24,24],[8,27],[-10,27],[-14,2],[-18,10],[-10,19],[12,22],[0,1],[1,0],[18,6],[1,0],[20,32],[4,33],[19,29],[-7,32],[-22,6],[-13,35],[-38,7],[-1,0],[-10,19],[0,4],[-5,47],[-15,21],[-20,10],[-1,1],[0,2],[-1,39],[22,24],[3,4],[14,6],[7,-2],[10,-2],[17,3],[19,9],[39,52],[3,32],[-25,13],[-33,25],[-9,47],[3,49],[10,26],[-19,33],[-7,22],[-5,28],[-13,35],[-11,22],[-26,31],[3,26],[-5,29],[-6,10],[-8,12],[-22,24],[-5,6],[-8,-3],[-10,-4],[-8,7],[-20,17],[-19,20],[-6,5],[-24,21],[-39,42],[-15,30],[-20,13],[-15,-7],[-31,-70],[-17,0],[-21,3],[-16,13],[-39,3],[-11,20],[3,25],[20,33],[9,21],[9,26],[-7,23],[-20,30],[-23,3],[-18,-2],[-18,-17],[-13,-28],[-9,-22],[-18,-6],[-26,16],[-9,27],[-3,36],[8,23],[4,28],[27,49],[-16,8],[-5,0],[-33,1],[-15,-7],[0,-5],[3,-35],[4,-29],[0,-75],[-2,-10],[-5,-31],[-24,-22],[-20,0],[-20,12],[-17,33],[-38,32],[-19,19],[-20,43],[-14,8],[-18,-4],[-24,-17],[-21,1],[-15,35],[-3,35],[-32,53],[16,19],[6,7],[28,15],[7,36],[-17,31],[-1,5],[-7,18],[-19,34],[-1,2],[-18,41],[1,4],[8,28],[15,22],[25,-4],[17,15],[-20,19],[0,14],[-1,15],[10,19],[16,11],[2,25],[0,5],[-3,28],[-16,24],[-4,5],[-59,29],[-24,10],[-18,3],[-59,27],[-18,9],[-15,7],[-18,8],[-19,13],[-16,13],[-15,17],[-31,48],[-11,26],[-14,54],[0,38],[-10,39],[4,26],[16,25],[7,28],[2,34],[2,18],[-2,33],[-9,29],[-21,36],[0,1],[-10,39],[0,1],[1,25],[-7,63],[-12,36],[-1,45],[17,54],[0,1],[-6,47],[-4,25],[-1,25],[0,1],[-8,51],[-4,31],[0,1],[-7,26],[-12,41],[12,62],[-8,25],[-9,20],[-14,23],[-11,26],[-8,20],[-23,40],[-16,42],[-3,5],[-10,13],[-2,2],[-36,30],[-37,30],[-5,28],[-10,19],[-35,25],[-53,26],[-26,7],[-2,1],[-33,10],[-16,21],[0,26],[8,50],[-1,52],[-3,64],[-12,42],[-7,31],[-2,79],[0,2],[-1,2],[-8,25],[0,2],[-3,3],[-26,38],[-22,37],[-1,2],[-2,2],[-26,27],[0,1],[-1,0],[-40,19],[-18,12],[-33,10],[-35,23],[-22,15],[-28,-2],[-34,10],[-29,18],[-27,35],[-17,20],[-17,12],[-64,62],[-9,22],[0,1],[-3,54],[-11,31],[-10,22],[-9,17],[-25,39],[-6,5],[-26,20],[-1,1],[-22,29],[-1,0],[-1,3],[-13,40],[-1,3],[-3,30],[1,24],[0,23],[7,38],[17,9],[25,14],[0,1],[17,70],[0,1],[-8,44],[0,60],[11,47],[4,19],[36,119],[5,43],[2,27],[-5,35],[-1,7],[-5,32],[-3,16],[-1,9],[-3,34],[-3,22],[0,8],[0,37],[2,16],[2,12],[2,49],[-6,67],[-9,39],[-3,42],[17,40],[18,13],[1,0],[14,-6],[19,-6],[22,22],[13,28],[1,2],[2,7],[9,36],[1,1],[9,55],[-1,34],[-8,67],[-5,24],[-8,63],[-3,21],[-7,34],[-1,2],[0,3],[3,52],[0,1],[20,61],[7,22],[29,49],[29,54],[1,1],[5,49],[0,8],[1,20],[-7,33],[-10,29],[0,1],[-9,60],[4,12],[8,26],[-6,33],[-5,24],[-1,3],[2,12],[4,29],[11,25],[10,27],[8,32],[1,5],[0,1],[2,27],[-6,28],[-8,25],[-8,21],[-16,27],[-16,29],[-15,25],[-16,23],[-1,2],[-10,17],[-15,18],[-30,39],[-1,1],[-16,19],[-21,20],[-23,1],[-18,-15],[-15,-3],[-15,2],[-13,2],[-22,16],[-19,34],[3,30],[7,38],[10,18],[1,2],[11,37],[4,25],[2,13],[10,41],[9,4],[18,8],[30,5],[12,14],[2,33],[-2,9],[-8,36],[-11,20],[-20,40],[-29,42],[-28,35],[-24,26],[-70,67],[-10,7],[-60,46],[-22,14],[-10,7],[-29,18],[-28,14],[-30,-15],[-18,-12],[-18,-3],[-19,4],[-17,-3],[-20,-6],[-38,1],[-59,-4],[-14,-11],[-8,-30],[-1,-15],[0,-10],[2,-45],[-10,-25],[-14,-28],[-19,5],[-53,28],[-15,-10],[-68,37],[-69,34],[-49,20],[-40,10],[-12,2],[-20,2],[-40,8],[-16,5],[-4,3],[-9,9],[-10,24],[-20,25],[-37,37],[-28,26],[-99,79],[-29,20],[-6,5],[-19,9],[-6,2],[-48,18],[-2,2],[-15,9],[-4,33],[32,33],[1,1],[13,5],[12,5],[33,34],[38,7],[16,-3],[17,27],[8,26],[2,6],[2,82],[1,12],[-46,73],[-14,60],[-2,6],[0,1],[16,69],[-4,0],[-20,0],[-33,0],[-42,1],[-1163,2],[-523,-9],[-445,0],[-517,-1],[-3,0],[-819,0],[-602,2],[2,341],[6,710],[-2,239],[-5,792],[-99,0],[-2,0],[-994,4],[-2,0],[-15,0],[-24,3],[-48,6],[-518,-3],[-535,-3],[-53,0],[-678,-10],[-1259,-2],[-60,0],[-19,0],[-2,0],[-59,0],[-104,0],[-96,0],[-3,0],[-21,0],[-22,0],[-32,0],[-108,0],[-369,6],[-410,-2]],[[22,91530],[0,332],[-2,1141],[-13,600],[0,13],[0,13],[0,20],[0,12],[0,46],[-1,187],[0,164],[0,33],[-1,336],[0,15],[-1,427],[0,14],[-1,312],[0,51],[-1,195],[0,234],[0,96],[-1,117],[0,164],[0,112],[0,93],[0,16],[0,18],[-1,239],[0,71],[1,132],[3,300],[1,83],[2,172],[1,98],[2,188],[1,44],[0,63],[1,61],[1,105],[2,156],[2,113],[0,37],[1,23],[4,31],[-7,48],[0,36],[-3,143],[-1,26],[2,170],[0,31],[0,2],[1,74],[7,975],[1,138],[2,35],[141,0],[15,0],[596,2],[25,3],[78,1],[372,3],[127,1],[212,1],[630,5],[175,2],[1,0],[190,1],[137,6],[862,11],[120,2],[176,2],[105,-23],[230,-52],[154,-49],[650,-141],[43,0],[131,1],[7,0],[22,0],[18,0],[258,0],[154,0],[502,-6],[692,5],[154,0],[15,0],[12,0],[42,0],[103,0],[29,-2],[53,2],[22,4],[415,-3],[21,0],[108,-1],[118,0],[182,1],[851,26],[1,0],[363,10],[388,114],[139,39],[47,17],[114,-17],[180,-22],[252,3],[376,-43],[133,-13],[29,-2],[157,-6],[172,-1],[186,-1],[419,-9],[326,4],[9,1],[17,3],[44,6],[6,1],[27,3],[128,16],[371,59],[23,3],[414,56],[223,41],[46,0],[1,0],[327,-7],[523,1],[4,0],[51,0],[34,0],[58,0],[39,0],[125,-1],[121,-2],[38,0],[71,-1],[43,-1],[60,0],[21,-8],[26,0],[29,1],[26,0],[63,0],[45,0],[192,1],[38,0],[486,-1],[67,0],[34,0],[354,1],[20,0],[155,1],[249,0],[73,-7],[165,-2],[1,0],[60,-2],[41,-1],[2,0],[16,0],[193,-4],[549,-11],[151,0],[330,-9],[25,-1],[25,0],[154,-4],[527,13],[149,-2],[273,7],[202,1],[40,2],[52,2],[434,-5],[107,4],[193,1],[25,0],[27,0],[128,0],[17,0],[355,3],[399,11],[86,2],[76,2],[156,3],[7,0],[108,2],[15,0],[193,4],[243,2],[155,4],[39,1],[399,11],[145,3],[128,2],[155,3],[20,0],[11,0],[26,0],[220,3],[96,3],[148,-7],[569,8],[46,-1],[1,0],[28,0],[424,4],[1,0],[450,6],[97,2],[168,4],[331,0],[226,1],[243,2],[22,0],[202,2],[168,-1],[264,0],[200,-1],[129,0],[318,6],[203,-109],[75,-40],[20,-8],[13,0],[11,0],[110,-1],[67,0],[16,-1],[56,1],[17,1],[67,-1],[18,0],[24,0],[7,0],[329,1],[15,0],[339,1],[30,0],[292,1],[110,0],[185,2],[186,1],[26,0],[2,0],[132,1],[68,0],[181,1],[127,1],[136,0],[1,0],[33,0],[22,0],[46,0],[161,0],[101,0],[25,0],[39,0],[54,0],[65,0],[16,0],[56,0],[37,0],[59,1],[16,0],[55,0],[15,0],[16,0],[41,0],[19,0],[15,0],[129,4],[67,0],[36,0],[15,0],[35,0],[25,0],[113,1],[84,0],[33,1],[142,0],[143,0],[94,-1],[63,0],[303,-1],[104,-1],[83,1],[129,1],[1,0],[195,2],[226,2],[184,0],[32,1],[24,0],[140,0],[202,0],[97,0],[134,0],[152,0],[47,0],[34,0],[41,-3],[5,0],[1,0],[16,1]],[[44900,99884],[10,-33],[20,-16],[8,-22],[-3,-39],[12,-16],[97,13],[53,-66],[98,-60],[21,-12],[60,-72],[34,-41],[17,-20],[-24,-127],[40,-229],[53,-225],[-9,-63],[-22,-145],[-1,-13],[-21,-143],[-5,-34],[-13,-88],[-2,-36],[3,-26],[1,-49],[-1,-25],[-1,-43],[0,-26],[12,-53],[160,-175],[29,-32],[77,-85],[88,-114],[42,-55],[33,-199],[8,-52],[10,-56],[-49,-121],[-103,-260],[-3,-62],[-27,-121],[-7,-30],[-11,-51],[-16,-61],[71,-138],[48,-16],[34,-11],[11,-22],[20,-43],[15,-24],[14,-22],[15,-15],[24,-13],[20,-21],[24,-14],[8,-25],[15,-36],[9,-53],[4,-38],[1,-40],[13,-53],[10,-31],[17,-29],[25,-34],[27,-17],[40,-14],[13,-23],[-1,-34],[-14,-47],[-5,-34],[5,-35],[15,-25],[19,-9],[18,-24],[5,-34],[10,-37],[-5,-59],[-13,-20],[-25,-32],[-19,-61],[1,-31],[20,4],[26,8],[30,4],[17,-8],[12,-12],[6,-36],[-14,-5],[-19,0],[-30,-12],[-8,-27],[20,-21],[29,-5],[21,5],[41,11],[36,-14],[21,-22],[15,-29],[3,-26],[-6,-37],[-3,-33],[-4,-40],[2,-33],[-6,-33],[-15,-41],[-11,-17],[-18,-24],[-14,-7],[-44,-53],[-45,-42],[-7,-7],[-7,-7],[-12,-16],[-17,-22],[-12,-31],[-6,-35],[-5,-50],[-5,-34],[1,-33],[1,-30],[2,-26],[2,-32],[19,3],[46,24],[40,14],[35,-4],[47,-20],[42,-22],[269,-228],[138,-118],[34,-27],[37,-31],[34,-27],[33,-3],[36,16],[40,9],[23,3],[38,-2],[31,-5],[22,2],[18,-14],[30,-15],[34,-13],[67,-30],[32,-123],[0,-65],[1,-161],[20,-20],[15,0],[16,-15],[35,-18],[10,-18],[-1,-27],[-10,-24],[-22,-26],[-1,-31],[-4,-113],[13,-15],[29,-30],[17,-20],[1,-37],[-7,-29],[-5,-35],[-10,-26],[-4,-38],[-2,-34],[3,-40],[8,-49],[8,-43],[-10,-20],[-13,-20],[-11,-22],[-19,-39],[-15,-41],[-1,-30],[18,-29],[21,-59],[13,-28],[11,-17],[20,-33],[12,-12],[15,-14],[27,-17],[27,-11],[19,3],[66,62],[96,-23],[43,-42],[159,-100],[125,-78],[24,-15],[19,-9],[24,8],[14,45],[10,20],[15,6],[27,-10],[28,-17],[14,-11],[29,-15],[17,-9],[17,-8],[24,10],[14,5],[11,-22],[8,-27],[6,-32],[-4,-40],[1,-45],[0,-41],[-4,-48],[-12,-22],[-19,-21],[-6,-37],[9,-24],[18,-43],[8,-26],[9,-21],[14,-7],[27,-6],[17,-13],[14,-20],[19,-29],[13,-30],[8,-33],[12,-28],[18,-30],[21,-17],[73,41],[49,28],[38,21],[25,14],[11,27],[1,29],[0,31],[3,26],[38,40],[24,25],[37,40],[101,-1],[18,-22],[17,-8],[19,3],[23,12],[22,13],[18,7],[23,9],[15,5],[17,1],[18,-6],[14,-3],[25,-12],[26,5],[18,11],[12,20],[18,27],[14,34],[-6,24],[3,39],[16,18],[30,38],[19,0],[42,-78],[129,-81],[39,3],[67,5],[209,-131],[260,-201],[38,-22],[23,-21],[15,-18],[13,-16],[18,1],[24,2],[24,1],[31,4],[15,-12],[-5,-45],[-7,-26],[-1,-28],[8,-44],[17,-37],[-1,-35],[-9,-29],[-4,-41],[17,-8],[17,-8],[41,-10],[26,-6],[82,-19],[19,14],[19,15],[22,7],[30,-7],[22,-14],[14,-18],[13,-30],[15,-16],[21,-18],[17,-19],[14,-8],[18,-6],[12,-17],[-23,-33],[-14,-30],[-13,-38],[-18,-21],[-29,-28],[-23,-26],[-16,-21],[-16,-26],[-13,10],[-20,-3],[-18,-12],[-11,-36],[-7,-31],[6,-48],[76,-88],[-8,-91],[25,-114],[13,-12],[19,-10],[14,-13],[24,-5],[21,16],[25,2],[22,-3],[28,-5],[17,-2],[25,-2],[19,-1],[19,8],[18,19],[27,25],[13,12],[13,19],[19,24],[9,36],[9,21],[6,13],[19,15],[13,7],[46,11],[38,10],[12,-43],[23,-80],[29,-104],[18,-63],[12,-29],[3,-28],[10,-24],[13,-23],[21,-20],[15,-5],[19,-8],[14,-20],[13,-18],[10,-25],[2,-26],[-1,-31],[5,-25],[11,-28],[64,-71],[67,-75],[165,-84],[56,-28],[21,-4],[74,-12],[105,-18],[38,11],[28,8],[25,68],[6,18],[27,24],[15,-1],[25,-2],[15,-1],[21,1],[16,0],[15,-11],[13,-36],[7,-27],[-2,-43],[-4,-24],[7,-31],[-2,-34],[17,-17],[14,-12],[15,-26],[20,-13],[19,-5],[28,-10],[20,-24],[51,11],[102,3],[105,-47],[16,-30],[17,-11],[25,-2],[18,-3],[26,-2],[21,-7],[28,-1],[11,-22],[-2,-12],[-1,-26],[-9,-31],[-7,-35],[112,-172],[35,-54],[53,-379],[2,-10],[16,-115],[4,-30]],[[52640,88876],[-12,-45],[-14,-27],[155,-230],[8,-26],[15,-14],[14,-3],[21,-10],[14,-8],[9,-32],[16,-45],[16,-7],[168,-45],[46,-12],[23,10],[17,13],[20,34],[20,30],[2,4],[21,-14],[-3,-24],[1,-52],[4,-40],[3,-49],[14,-18],[22,-28],[25,-14],[22,-11],[9,-27],[10,-40],[3,-34],[-11,-34],[-14,-36],[-11,-24],[-14,-25],[-12,-18],[1,-39],[25,-10],[33,-32],[51,-62],[33,-32],[35,-21],[-4,-32],[30,-64],[25,-51],[41,-37],[18,-16],[24,-21],[54,-14],[18,-22],[13,-12],[15,-21],[30,-46],[3,-3],[14,-67],[-14,-16],[-13,-16],[-11,-18],[-13,-33],[0,-28],[2,-33],[8,-24],[5,-27],[6,-30],[0,-33],[-7,-37],[-6,-34],[-6,-30],[-12,-23],[-16,0],[-18,-5],[-14,-4],[-19,-6],[-18,-8],[6,-24],[12,-20],[13,-26],[15,-22],[10,-22],[7,-24],[12,-25],[3,-34],[-19,-109],[-5,-31],[-28,-161],[14,-43],[10,-30],[11,-22],[12,-19],[16,-13],[18,-5],[14,8],[18,25],[36,-2],[21,-1],[52,-2],[101,-4],[34,-1],[49,-69],[-6,-32],[-24,-110],[43,-14],[60,-20],[136,-46],[17,-17],[12,-17],[53,-115],[38,-16],[16,-6],[59,-23],[67,-26],[21,19],[18,18],[14,11],[16,8],[22,7],[21,6],[16,4],[14,2],[26,6],[17,0],[24,-5],[16,14],[15,10],[13,9],[14,5],[15,8],[16,17],[8,27],[13,19],[10,27],[1,30],[1,24],[12,4],[8,-3],[14,-15],[12,-34],[11,-22],[14,-10],[21,-13],[20,-9],[19,0],[19,1],[17,1],[17,3],[18,9],[8,6],[34,-22],[3,-17],[9,-25],[9,-31],[-26,-183],[-7,-70],[-17,-178],[22,-54],[28,-71],[-11,-41],[-8,-25],[-4,-25],[6,-27],[3,-44],[24,-347],[36,-8],[54,-11],[24,-6],[53,19],[51,92],[20,17],[20,2],[24,-4],[16,-15],[12,-18],[12,-16],[10,-20],[8,-31],[14,-18],[17,-15],[8,-29],[17,-21],[9,-29],[13,-11],[14,-20],[-8,-27],[-4,-33],[-4,-33],[-15,-16],[-24,-15],[-14,-14],[-15,-174],[-3,-38],[-1,-12],[-6,-73],[17,-16],[17,-13],[18,-8],[21,-8],[20,-2],[27,-4],[58,-94],[7,-10],[0,-46],[-15,-10],[-22,-26],[-17,-31],[-16,-20],[-20,-9],[-11,-17],[-29,-45],[-24,-38],[-21,-2],[-22,-4],[-27,-7],[-21,-5],[-18,-2],[-29,-13],[-15,-1],[-15,-42],[-27,-69],[-20,-52],[-4,-104],[39,-32],[40,-16],[73,-29],[9,-22],[15,-19],[9,-22],[-4,-45],[-3,-31],[11,-47],[16,-20],[10,-20],[29,-20],[82,-2],[32,0],[84,-83],[-8,-27],[-17,-55],[21,-107],[45,-44],[48,44],[97,-6],[-5,-590],[-2,-328],[0,-110],[0,-108],[-4,-564],[-1,-146],[-3,-237],[-1,-145],[-1,-16],[-1,-172],[-1,-269],[0,-99],[-2,-347],[0,-52],[-2,-230],[-1,-147],[-2,-279],[0,-109]],[[55821,79048],[-36,1],[-38,0],[-1,0],[-169,4],[-186,6],[-73,1],[-98,2],[-119,3],[-27,1],[-83,2],[-40,1],[-97,4],[-17,0],[-3,0],[-147,2],[-43,1],[-22,1],[-15,0],[-2,0],[-16,1],[-206,6],[-11,1],[-36,1],[-12,0],[-42,0],[-106,3],[-71,1],[-18,-2],[-18,2],[-81,3],[-75,1],[-104,0],[-263,2],[-91,1],[-246,2],[-106,2],[-36,0],[-86,0],[-85,0],[-82,0],[-227,-3],[-33,5],[-314,-3],[-4,0],[-171,-2],[-318,-3],[-173,-2],[-19,0],[-36,0],[-142,-2],[-278,-2],[-24,0],[-305,-4],[-41,-1],[-239,-8],[-72,-3],[-20,-1],[-26,0],[-35,-1],[-25,2],[-17,-3],[-30,-1],[-74,0],[-56,0],[-631,0],[-329,0],[-190,-1],[-94,0],[-263,0],[-42,1],[-64,1],[-49,0],[-21,-1],[-29,0],[-114,-3],[-100,0],[-59,0],[-15,0],[-41,1],[-16,0],[-242,0],[-96,0],[-142,36],[-276,3],[-122,0],[-73,0],[-26,0],[-457,1],[-233,0],[-137,1],[-9,0],[-146,0],[-406,2],[-236,1],[-33,1],[-28,-1],[-38,8],[-41,-1],[-30,-2],[-31,-3],[-46,4],[-145,-1],[-93,-1],[-40,-1],[-9,0],[-45,-2],[-86,-4],[-63,-2],[-15,0],[-7,1],[-74,-4],[-75,1],[-61,2],[-111,3],[-224,5],[-185,-1],[-37,0],[-49,0],[-62,1],[-208,-2],[-10,0],[-309,0],[-226,-1],[-379,-1],[-45,0],[-133,0],[-25,0],[-137,0],[-3,0],[-198,0],[-89,0],[-170,0],[-51,0],[-2,0],[-17,1],[-288,0],[-143,1],[-46,0],[-24,0],[-56,0],[-4,0],[-230,0],[-43,0],[-86,0],[-134,0],[-1,0],[-73,0],[-109,0],[-113,0],[-22,0],[-41,0],[-69,0],[-121,0],[-98,0],[-39,0],[-30,0],[-15,1],[-211,1],[-214,0],[-274,1],[-116,0],[-110,-1],[-1,0],[-455,2],[-15,0],[-147,0],[-39,0],[-203,-5],[-290,1],[-74,1],[-54,-1],[-150,1],[-130,0],[-104,0],[-601,3],[-381,-1],[-84,-2],[-47,-1],[-2,0],[-313,4],[-178,1],[-41,1],[-26,0],[-21,-1]],[[34771,99859],[124,1],[313,3],[81,0],[43,0],[50,1],[179,2],[154,-4],[113,-3],[252,-7],[22,-1],[2,0],[90,0],[17,0],[128,-3],[125,-3],[29,-1],[22,3],[31,0],[228,1],[134,1],[21,0],[27,-1],[66,0],[263,0],[54,0],[34,3],[147,0],[300,0],[169,0],[288,1],[96,1],[5,0],[23,0],[18,0],[100,0],[94,0],[256,1],[73,1],[158,0],[83,1],[27,0],[63,0],[43,0],[24,0],[80,1],[98,0],[121,0],[20,1],[22,0],[88,0],[64,-2],[32,-1],[105,-4],[92,-8],[19,-5],[2,0],[18,2],[78,11],[62,6],[75,3],[55,3],[75,1],[89,1],[107,0],[66,1],[110,1],[167,3],[78,1],[27,0],[89,1],[39,1],[62,1],[54,1],[174,3],[194,-3],[145,-1],[5,1],[185,3],[256,0],[482,2],[100,0],[295,0],[34,0],[157,1],[270,1],[10,3],[22,7],[15,-1],[796,-7],[34,0],[392,0]],[[85193,99863],[-1,-36],[0,-698],[0,-85],[0,-56],[0,-71],[0,-250],[0,-205],[0,-209],[0,-147],[0,-248],[0,-103],[0,-24],[0,-334],[0,-138],[0,-385],[210,1],[0,-140],[0,-34],[-2,-60],[2,-35],[-2,-81],[-3,-57],[-4,-95],[-3,-58],[-1,-84],[-2,-112],[-3,-226],[-2,-97],[-8,-613],[-2,-100],[0,-143],[0,-98],[0,-32],[0,-139],[-6,-149],[-34,8],[-49,3],[-34,3],[0,-105],[0,-3],[-1,-165],[-1,-168],[0,-309],[0,-168],[1,-57],[-1,-34],[0,-302],[0,-114],[0,-51],[0,-110],[0,-354],[0,-160],[0,-72],[0,-35],[0,-286],[0,-14],[0,-25],[0,-361],[0,-853],[0,-81],[1,-35],[-1,-173],[3,-109],[-1,-357],[0,-7],[0,-26],[0,-363],[-2,-112],[-2,-89],[-1,-112],[2,-504],[1,-183],[0,-2],[-2,-149],[1,-58],[-5,-274],[-1,-31],[7,-50],[27,-2],[14,-15],[-1,-159],[-1,-118],[-2,-133],[0,-69],[-1,-36],[0,-29],[-1,-81],[0,-49],[3,-487],[-3,-695],[-4,-279],[3,-58],[-2,-47],[-3,-42],[0,-117],[0,-32],[-3,-31],[-1,-105],[0,-41],[-1,-308],[-2,-100],[-3,-327],[-4,-382],[0,-43],[0,-23],[3,-77],[0,-284],[-1,-29],[0,-167],[-1,-256],[1,-36],[-2,-112],[0,-11],[-1,-39],[-4,-123],[-1,-34],[-2,-99],[9,-553],[1,-57],[2,-156],[0,-26],[1,-69],[0,-17],[2,-53],[2,-31],[1,-36],[0,-32],[0,-27],[0,-36],[0,-43],[0,-26],[1,-63],[1,-63],[1,-90],[-1,-63],[0,-56],[-6,-353],[0,-66],[1,-108],[-5,-195],[0,-264],[-1,-103],[0,-95],[10,-188],[1,-80],[2,-89],[8,-262],[1,-34],[3,-80],[2,-83],[1,-39],[2,-62],[2,-58],[1,-34],[41,0]],[[85337,79310],[-1,-505],[0,-101],[0,-25],[0,-13],[-3,-281],[-2,-139],[-2,-205],[-2,-128],[-2,-390],[-7,-450],[4,-216],[0,-40],[0,-63],[0,-27],[1,-213],[-1,-612],[-1,-194],[0,-195],[1,-171],[-2,-425],[0,-1],[-1,-105],[0,-33],[-2,-358],[-1,-226],[0,-82],[0,-40],[-1,-73],[0,-3],[0,-26],[-2,-397],[-3,-787],[-1,-37],[0,-138],[-1,-452],[0,-360],[1,-421],[0,-23],[-2,-754],[37,3],[0,-37],[-5,-312],[-2,-150],[-3,-236],[-1,-72],[-1,-48],[-4,-281],[-3,-193],[-5,-380],[-2,-131],[-1,-82],[1,-29],[0,-1],[-1,-219],[0,-29],[-1,-166],[-1,-314],[0,-39],[0,-128],[-1,-356],[-1,-233],[-2,-391],[0,-79],[0,-53],[0,-59],[-1,-82],[0,-6],[1,-28],[-1,-138],[-1,-109],[0,-97],[-1,-309],[0,-118],[-1,-133],[-2,-213],[-2,-399],[-1,-107],[0,-35],[0,-66],[0,-86],[0,-18],[1,-559],[2,-271],[0,-8],[1,-118],[5,-204],[2,-83],[2,-84],[3,-317],[1,-72],[1,-87],[-1,-57],[0,-273],[10,-60],[1,-38]],[[85330,62411],[-208,-3],[-54,-1],[-149,-2],[-99,-2],[-28,0],[-128,-7],[-159,5],[-59,0],[-16,0],[-48,0],[-312,0],[-172,1],[-118,1],[-143,0],[-621,2],[-125,-5],[-17,0],[-27,0],[-24,0],[-30,-1],[-6,0],[-193,-2],[-95,-1],[-121,-1],[-153,-2],[-80,0],[-85,-1],[-212,-2],[-10,-1],[-20,0],[-132,-1],[-91,0],[-44,0],[-140,-2],[-261,-3],[-150,-3],[-193,-3],[-76,-1],[-41,-1],[-246,-3],[-18,-1],[-37,0],[-7,0],[-22,-1],[-186,-4],[-39,1],[-45,0],[-233,3],[-436,0],[-31,0],[-67,-6],[-74,0],[-404,2],[-223,1],[-38,0],[-33,0],[-28,0],[-23,0],[-962,-13],[-119,-1],[-46,-1],[-233,-2],[-118,2],[-66,0],[-71,-3],[-78,-3],[-112,-1],[-108,-1],[-63,0],[-43,0],[-70,-1],[-260,-3],[-124,-1],[-273,6],[-213,-1],[-61,0],[-200,-2],[-297,-2],[-426,-2],[-95,-1],[-258,-1],[-110,-1],[-125,-7],[-305,-1],[-379,-2],[-33,-1],[-299,-1],[-129,0],[-229,-1],[-22,0],[-98,-1],[-86,0],[-204,-1],[-19,6],[-70,-2],[-28,0],[-123,0]],[[71945,62324],[0,125],[0,62],[2,315],[1,82],[1,138],[1,195],[-2,299],[-1,98],[0,57],[-1,51],[0,27],[-1,114],[0,4],[-1,161],[-1,33],[0,2],[0,63],[0,12],[-1,54],[-1,135],[0,98],[-1,169],[-1,150],[-2,256],[0,39],[-1,368],[-12,135],[0,153],[2,423],[0,31],[0,81],[1,310],[1,67],[0,88],[0,163],[1,86],[1,231],[0,3],[0,42],[0,75],[1,351],[1,151],[1,207],[1,381],[-1,226],[0,48],[-1,121],[1,37],[1,82],[3,256],[4,644],[0,5],[0,84],[-1,179],[2,375],[119,2],[0,106],[0,463],[-1,226],[-2,290],[-1,246],[0,47],[0,3],[-1,89],[0,137],[0,105],[-1,180],[-1,346],[-1,364],[-2,336],[-1,425],[-1,124],[-1,489],[0,4],[0,216],[-1,252],[0,1],[2,297],[0,28],[1,253],[1,184],[1,145],[0,128],[1,239],[1,151],[0,105],[1,226],[0,57],[1,114],[0,111],[0,45],[-2,104],[-1,35],[-1,18],[-3,121],[-8,354],[-10,401],[0,101],[0,226],[0,333],[0,80],[-11,376],[-63,0],[0,90],[0,186],[0,106],[0,43],[0,221],[0,126],[0,249],[0,2],[-1,143],[0,49],[0,35],[0,98],[0,313],[0,165],[1,175],[-1,103],[0,128],[-1,797],[-1,331],[0,23],[0,136],[0,490],[0,113],[0,521],[1,352],[0,123],[3,265],[2,181],[2,193],[3,370],[0,5],[1,27],[2,231],[5,498],[1,113],[2,244],[0,2],[5,476],[1,107],[2,282],[2,123],[0,79],[-1,281],[0,2],[1,106],[0,55],[32,1],[54,2],[-4,210],[-3,202],[-7,423],[-3,193],[-1,42]],[[72054,88980],[-1,165],[0,20],[-2,254],[0,4],[-4,432],[-2,247],[-3,399],[0,171],[0,42],[0,33],[0,6],[0,23],[-1,619],[0,553],[-1,106],[0,4],[-1,24],[0,45],[1,48],[0,26],[-61,347],[0,254],[0,428],[1,116],[0,296],[0,69],[0,62],[1,407],[1,275],[0,30],[1,423],[0,63],[2,647],[0,27],[0,37],[1,447],[3,177],[-47,274],[-79,1],[-3,357],[-3,211],[-3,396],[-1,84],[-1,68],[0,54],[0,35],[-1,116],[-10,999],[-1,96],[-1,92],[-1,74],[0,34],[-1,81],[0,66],[0,3],[2,345]],[[71839,99692],[122,0],[46,0],[26,0],[152,-3],[59,0],[974,4],[131,103],[68,55],[12,24],[59,0],[5,0],[125,-1],[47,0],[304,0],[312,-11],[18,-1],[3,1],[34,1],[26,-2],[572,0],[9,0],[44,0],[268,0],[88,0],[107,-1],[282,0],[22,1],[462,-2],[46,0],[76,0],[144,0],[321,0],[410,0],[17,0],[20,0],[164,1],[124,0],[181,1],[1,0],[18,0],[235,0],[180,0],[639,-1],[166,-1],[102,0],[200,0],[63,-1],[135,1],[62,-1],[80,-1],[86,0],[267,0],[148,0],[200,0],[103,0],[47,0],[352,0],[241,0],[64,0],[60,-1],[6,0],[255,0],[49,0],[51,0],[5,0],[58,0],[16,0],[7,0],[478,0],[338,-1],[461,0],[316,6],[62,0],[229,-1],[112,0],[22,0],[25,0],[348,-1],[267,-1],[153,0],[251,-1],[40,8],[35,0],[244,-1],[197,-2]],[[72054,88980],[-21,-1],[-179,-5],[-327,-10],[-49,-2],[-37,-1],[-16,1],[-29,2],[-49,-7],[-31,17],[-122,-1],[-45,0],[-47,-1],[-68,0],[-19,0],[-19,0],[-94,0],[-17,0],[-5,0],[-10,0],[-65,0],[-54,0],[-55,0],[-70,0],[-30,0],[-36,0],[-52,1],[-99,0],[-94,1],[-48,0],[-34,0],[-84,0],[-48,0],[-136,0],[-43,0],[-151,0],[-73,1],[-68,0],[5,-43],[-86,1],[-67,0],[-97,0],[-160,1],[-66,0],[-85,0],[-154,1],[-179,1],[-68,0],[-20,0],[-38,0],[-70,0],[-95,0],[-153,-1],[-56,0],[-118,0],[-63,0],[-38,0],[-91,0],[-156,-1],[-153,0],[-52,0],[-120,0],[-192,-1],[-18,0],[-21,0],[-21,0],[-50,0],[-192,0],[-37,-1],[-88,0],[-77,-1],[-61,0],[-106,-1],[-87,-1],[-27,0],[-97,-1],[-143,-2],[-143,-1],[-20,0],[0,-37],[0,-88],[-82,0],[-3,0],[-21,0],[-315,0],[-129,-1],[-133,0],[-127,0],[-29,0],[-134,0],[-44,0],[-75,0],[-59,0],[-282,2],[-20,0],[-177,1],[-3,0],[-96,1],[-171,-1],[-135,-1],[-41,0],[-57,0],[-177,-1],[-50,1],[-105,2],[-83,2],[-35,1],[-7,0],[-49,1],[-15,0],[-146,3],[-44,5],[-40,2],[-33,-2],[-51,-3],[-80,-2],[-42,-2],[-65,-3],[-75,0],[-124,-3],[-91,3],[-24,2],[-23,1],[-37,2],[-52,2],[-144,5],[-154,2],[-143,1],[-20,0],[-38,-1],[-54,0],[-10,0],[-31,-1],[-54,0],[-167,-2],[-197,-2],[-235,3],[-15,1],[-51,0],[-137,3],[-74,1],[-74,1],[-22,0],[-55,1],[-77,1],[-106,2],[-21,0],[-39,0],[-1,0],[-232,0],[-1,0],[-60,0],[-77,0],[-81,0],[-201,0],[-23,0],[-28,0],[-175,0],[-255,5],[-42,1],[-23,0],[-360,6],[-7,0],[-62,1],[-62,1],[-26,1],[-185,3],[-485,9],[-143,2],[-75,1],[-59,-6],[-25,1],[-129,2],[-160,3],[-5,1],[-146,2],[-282,-19],[-841,5],[-141,1],[-24,0],[-26,0],[-188,-7],[-23,0],[-27,-1],[-18,0],[-100,1],[-137,1],[-234,2],[-317,2],[-41,0],[-74,0],[-55,1],[-28,0],[-2,0],[-28,0],[-22,0],[-8,0],[-30,0],[-28,0],[-2,0],[-16,0],[-77,1],[-131,0],[-26,1],[-178,-1],[-498,8],[-154,3],[-2,0],[-140,3],[-569,13],[-19,0],[-317,2]],[[44900,99884],[240,1],[192,-3],[84,-3],[126,-1],[308,-1],[276,-1],[282,-1],[256,-1],[3,0],[533,-3],[191,0],[262,0],[131,0],[108,0],[115,-1],[64,0],[64,0],[159,0],[661,0],[13,-1],[17,-1],[240,5],[24,2],[471,1],[84,-2],[69,-2],[37,3],[27,2],[654,4],[165,2],[22,7],[21,-1],[18,-1],[75,1],[229,-1],[58,0],[10,0],[28,-1],[141,0],[132,0],[592,-2],[9,0],[88,-1],[375,-2],[326,3],[30,0],[14,0],[70,0],[329,-1],[39,-1],[61,0],[240,-1],[2,0],[215,-1],[37,-2],[422,-4],[181,-6],[11,0],[339,-3],[173,-2],[2,0],[260,-3],[302,-3],[394,-4],[21,-3],[101,-14],[259,-15],[26,-2],[17,-4],[32,-8],[26,-5],[39,-9],[29,-6],[20,-3],[40,-4],[20,-4],[17,-2],[28,-5],[28,-3],[24,1],[38,4],[34,3],[27,1],[19,1],[26,0],[27,-1],[34,0],[46,-3],[44,-4],[51,-3],[50,-5],[67,2],[68,1],[18,0],[124,0],[442,-2],[65,-1],[75,1],[67,-1],[15,0],[172,-1],[9,0],[29,-1],[119,-1],[34,0],[172,-1],[699,-6],[22,0],[42,-1],[91,-2],[34,3],[17,-2],[123,-1],[64,1],[84,-2],[71,0],[241,0],[14,0],[123,-1],[48,0],[52,0],[46,0],[62,0],[81,-1],[36,0],[20,0],[58,0],[222,0],[36,0],[1,0],[17,0],[20,-1],[396,-1],[59,0],[98,0],[594,-6],[302,-3],[341,-3],[190,-2],[136,-2],[221,-2],[42,0],[31,0],[206,-1],[155,-1],[16,0],[331,-1],[62,0],[39,-1],[2,0],[629,-3],[272,-1],[81,-1],[501,-2],[31,0],[306,-3],[62,0],[48,0],[128,-2],[11,0],[16,0],[168,0],[266,-1],[167,0],[160,0],[38,0],[383,-1],[151,-2],[29,0],[22,0],[30,0],[137,-2],[123,-1],[460,-4],[66,-1],[185,-3],[230,0],[18,0],[412,-1],[106,0],[190,-1],[379,0],[216,-1],[217,0],[17,0],[161,0],[236,0],[74,0],[643,0],[38,0],[4,0],[283,1]],[[99967,79415],[-252,1],[-761,2],[-129,1],[-9,0],[-115,0],[-177,1],[-66,0],[-592,2],[-10,0],[-14,0],[-223,1],[-79,0],[-90,1],[-37,0],[-130,0],[-48,0],[-51,1],[-15,0],[-191,0],[-127,-1],[-73,0],[-23,1],[-180,0],[-53,0],[-58,0],[-52,1],[-126,0],[-157,1],[-24,0],[-238,2],[-108,0],[-71,1],[-33,-1],[-167,-1],[-104,18],[-280,-6],[-31,-1],[-48,0],[-175,-4],[-13,0],[-403,-9],[-171,-3],[-102,1],[-108,0],[-96,1],[-224,-3],[-24,-1],[-80,-1],[-3,0],[-26,0],[-21,-1],[-333,-3],[-457,-5],[-59,0],[-5,0],[-230,-3],[-67,0],[-104,-1],[-260,-3],[-2,0],[-95,-1],[-152,6],[-321,-5],[-137,-2],[-434,-6],[-113,-1],[-33,-1],[-55,-1],[-87,-1],[-10,-1],[-200,-4],[-232,1],[-94,-2],[-69,-2],[-413,-4],[-3,0],[-97,-3],[-149,-2],[-8,0],[-57,-1],[-139,-1],[-126,-2],[-116,-1],[-19,-1],[-78,-1],[-52,0],[-363,-5],[-162,-2],[-28,0],[-156,-2],[-107,-1],[-91,-1],[-54,-1],[-21,-1],[-82,-1],[-111,-1],[-231,-3],[-16,0],[-40,-1],[-50,0],[-148,-2],[-51,-1],[-343,-4],[-59,-1],[-114,-1],[-83,-1],[-48,-11],[-25,-1],[-57,0],[-39,-1],[-33,1],[-92,-1],[-37,0],[-74,0],[-34,0],[-106,4],[-76,-1],[-41,-3],[-63,-1],[-73,-2],[-80,-3],[-42,-2],[-46,-1],[-68,1],[-28,-4],[-32,0],[-16,-5],[-16,1]],[[85193,99863],[150,-2],[12,0],[258,0],[308,-1],[187,-1],[98,2],[255,-1],[53,-1],[234,-8],[107,0],[22,0],[90,0],[23,0],[125,0],[140,0],[107,0],[24,0],[363,0],[120,0],[111,0],[64,0],[14,0],[164,0],[24,0],[24,-3],[39,0],[158,0],[206,0],[81,-1],[15,0],[90,0],[198,-2],[149,-2],[15,0],[21,0],[25,0],[4,0],[48,-1],[96,-1],[29,-1],[131,-6],[24,0],[35,-1],[88,-1],[34,0],[50,0],[17,-1],[36,2],[17,-2],[21,-3],[29,0],[43,0],[61,3],[39,6],[252,1],[20,0],[34,2],[152,-3],[204,-5],[200,-6],[108,-3],[150,-4],[2,0],[58,-2],[18,7],[71,3],[332,-3],[48,0],[97,2],[225,-2],[249,-2],[25,0],[46,2],[62,-2],[143,-4],[240,2],[153,-1],[355,-1],[199,-5],[88,0],[105,-1],[326,1],[387,-1],[162,-1],[63,0],[41,-1],[1,0],[24,0],[26,0],[12,0],[124,-2],[211,0],[83,0],[219,0],[121,-2],[5,0],[193,0],[720,-2],[92,0],[5,0],[469,-1],[185,4],[221,-2],[3,0],[91,-1],[496,-2],[43,0],[214,-1],[30,0],[18,0],[254,0],[157,0],[18,0],[180,-2],[54,0],[49,0],[231,-6],[465,-2],[188,-4],[9,0],[26,-1],[0,-38],[12,-1377],[0,-12],[4,-176],[2,-462],[-1,-40],[4,-434],[2,-170],[3,-342],[-8,-206],[1,-440],[1,-455],[1,-188],[0,-45],[1,-229],[0,-12],[0,-18],[0,-58],[0,-50],[0,-150],[0,-121],[1,-181],[0,-3],[3,-148],[0,-45],[-1,-148],[0,-168],[1,-111],[1,-361],[0,-40],[-1,-240],[1,-282],[-1,-98],[1,-301],[1,-256],[0,-130],[-1,-38],[0,-59],[0,-90],[-2,-41],[0,-106],[1,-92],[0,-90],[0,-46],[1,-191],[1,-452],[0,-119],[0,-22],[0,-404],[-1,-565],[-3,-267],[0,-249],[0,-45],[2,-28],[0,-43],[0,-32],[-1,-119],[0,-3],[0,-192],[0,-73],[1,-135],[1,-154],[0,-47],[-1,-80],[0,-3],[-1,-29],[0,-335],[0,-128],[0,-65],[1,-92],[0,-173],[0,-260],[1,-729],[0,-243],[1,-280],[1,-884],[1,-488],[0,-386],[0,-58],[0,-49],[0,-230],[0,-28],[0,-28],[0,-66],[0,-283],[1,-477],[0,-150],[0,-208],[1,-84],[0,-102],[0,-123],[0,-357],[0,-25],[0,-188],[1,-278],[0,-245],[0,-58],[0,-187],[1,-111],[3,-351],[4,-536],[0,-57],[1,-100],[1,-186],[3,-394]],[[14329,75117],[0,-46],[0,-73],[0,-36],[0,-38],[0,-7],[-1,-123],[-1,-197],[0,-51],[0,-62],[-1,-546],[0,-244],[0,-26],[-1,-286],[0,-380],[0,-199],[-1,-111],[-1,-713],[0,-179],[0,-5],[0,-28],[0,-130],[0,-221],[0,-218],[0,-325],[0,-46],[0,-23],[0,-5],[0,-212],[0,-294],[15,-2],[16,-1],[0,-17],[0,-349],[1,-378],[0,-46],[0,-276],[1,-260],[0,-282],[0,-171],[0,-56],[0,-32],[0,-54],[-1,-548],[-1,-269],[0,-34],[0,-10],[0,-46],[0,-87],[0,-18],[0,-45],[-1,-569],[0,-467],[-1,-161],[0,-62],[0,-8],[0,-254],[-1,-226],[0,-52],[0,-79],[-1,-251],[-1,-60],[-1,-289],[3,-98],[9,-266],[-2,-83],[-1,-72],[-3,-146],[-1,-58],[5,-183],[-1,-30],[-4,-151],[0,-22],[0,-138],[1,-75],[0,-52],[0,-31],[0,-16],[2,-328],[1,-53],[0,-179],[0,-3],[0,-182],[-1,-83],[0,-95],[-1,-42],[-2,-446],[0,-112],[0,-122],[-1,-197]],[[14352,61571],[-40,0],[-38,-1],[-6,-24],[1,-75],[1,-24],[4,-225],[0,-337],[0,-212],[0,-7],[0,-317],[1,-201],[0,-46],[0,-36],[0,-35],[-1,-63],[-1,-75],[-3,-491],[-137,1],[-48,0],[-3,0],[-21,1],[-242,2],[-25,0],[-321,3],[-21,0],[-39,0],[-18,0],[-75,1],[-24,-1],[-3,0],[-1062,6],[-47,0],[-23,0],[-44,0],[-387,4],[-221,2],[-76,-1],[-106,-1],[-74,-1],[-31,0],[-12,0],[-1036,-13],[-2,-74],[1,-562],[0,-185],[0,-52],[5,-1250],[0,-40],[-75,1],[-36,0],[-55,0],[-116,1],[-88,0],[-74,1],[-1,0],[-62,0],[-452,1],[-36,0],[-19,0],[-1064,8],[-160,1],[-327,0],[-9,0],[-16,0],[-40,0],[-284,0],[-73,0],[-57,0],[-5,0],[-15,0],[-128,-1],[-67,0],[-88,0],[0,-65],[0,-159],[0,-21],[0,-27],[0,-112],[-2,-656],[-2,-286],[0,-81]],[[6827,55847],[-672,10],[-230,-2],[-297,-3],[-184,-1],[-338,-3],[-736,-7],[-320,3],[-35,-1],[-3,0],[-53,2],[-491,1],[-1,368],[0,80],[0,244],[0,535],[0,378],[0,67],[1,341],[-438,0],[-901,1],[-3,0],[-285,0],[-232,4],[-335,-6],[-60,-1],[-413,2],[-440,-3],[-186,-2]],[[175,57854],[-4,1118],[-3,800],[-4,2290],[-1,416],[-1,994],[0,78],[0,474],[-2,2267],[-2,754],[0,88],[0,129],[-3,1413],[-3,1802],[-2,984],[0,250],[-2,886],[-7,1907],[0,1],[-9,412],[-3,173],[-7,336],[-5,254],[-3,117],[0,221],[1,1538],[0,365],[0,1037],[-1,1440],[0,2455],[-1,1411],[0,505],[0,255],[0,771],[-1,545],[0,9],[1,389],[0,37],[-4,228],[0,27],[-1,37],[-8,316],[-10,410],[-16,603],[0,9],[-14,576],[-1,70],[-3,103],[-3,119],[-3,148],[-7,279],[-6,225],[-2,83],[-2,90],[-4,150],[-1,36],[-4,215],[0,147],[-1,513],[0,1],[0,36],[0,36],[-1,298]],[[71945,62324],[-100,-1],[-39,-1],[-42,0],[-2,0],[-23,0],[-20,-1],[-22,0],[-134,-1],[-51,-1],[-42,0],[-15,-2],[-38,0],[-113,-2],[-83,-1],[-143,-2]],[[71078,62312],[-93,-2],[-23,0],[-17,0],[-138,-2],[-127,-1],[-24,0],[-256,-6],[-27,-1],[-4,0],[-27,0],[-79,-2],[-184,-4],[-85,1],[-78,1],[-402,3],[-6,0],[-77,-2],[-231,-7],[-97,-3],[-98,-4],[-57,-1],[-118,0],[-214,0],[-150,-1],[-274,-1],[-33,0],[-55,0],[-66,-1],[-53,0],[-119,-1],[-227,-1],[-120,0],[-161,-1],[-301,-1],[-23,0],[-80,0],[-45,0],[-31,-1],[-47,0],[-214,-2],[-72,-1],[-121,-2],[-32,0],[-9,0],[-71,0],[-168,0],[-315,-1],[-16,0],[-16,0],[-76,-1],[-78,0],[-74,0],[-133,-2],[-390,-7],[-98,-6],[-137,-8],[-71,2],[-1,0],[-123,2],[-67,1],[-17,0],[-272,0],[-58,1],[-221,2],[-30,-2],[-152,-9],[-99,-4],[-278,0],[-160,6],[-100,1],[-121,1],[-25,0],[-113,1],[-136,1],[-13,0],[-91,1],[-43,1],[-59,0],[-61,0],[-225,0],[-198,0],[-156,-1],[-210,0],[-34,0],[-200,0],[-278,1],[-55,0],[-163,0],[-119,0],[-32,0],[-4,0],[-47,0],[-200,0],[-22,0],[-130,0],[-74,0],[-55,0],[-28,1],[-74,1],[-82,1],[-22,1],[-75,1],[-121,1],[-92,1],[-112,1],[-234,-1],[-106,-1],[-16,0],[-133,0],[-2,0],[-101,-1],[-56,0],[-21,0],[-28,0],[-97,0],[-167,0],[-179,0],[-49,0],[-177,3],[-45,0],[-89,2],[-76,1],[-67,1],[-141,2],[-135,-1],[-49,0],[-86,0],[-205,0],[-235,-1],[-261,-1],[-8,0],[-31,0],[-137,0],[-141,0],[-211,-1],[-76,0],[3,190],[0,8]],[[56336,62457],[0,184],[0,39],[-1,247],[0,180],[0,158],[0,157],[0,27],[0,243],[0,104],[0,39],[-41,5],[0,195],[0,189],[0,153],[0,60],[0,47],[0,1],[0,101],[0,105],[0,100],[0,69],[0,80],[0,131],[0,53],[0,131],[0,219],[1,100],[1,231],[0,189],[1,26],[0,96],[0,2],[1,262],[-1,185],[0,26],[-2,420],[0,93],[0,223],[-1,407],[0,96],[2,81],[0,1],[2,143],[5,123],[-12,137],[0,225],[4,142],[-2,135],[0,96],[0,66],[0,25],[0,106],[0,91],[1,326],[0,177],[0,284],[0,34],[-9,309],[-162,-3],[-28,0],[-1,166],[0,80],[0,169],[-1,103],[-1,145],[0,70],[0,43],[0,47],[-1,169],[0,26],[-1,49],[0,79],[0,80],[-1,212],[-4,33],[-1,345],[0,137],[0,124],[0,80],[3,131],[3,132],[2,91],[0,50],[-1,195],[-1,229],[0,13],[-2,218],[-1,130],[-1,39],[0,64],[-1,25],[0,11],[0,20],[0,26],[-5,471],[-4,451],[-1,135],[0,1],[0,70],[0,28],[3,54],[0,78],[0,85],[0,103],[2,331],[1,259],[0,179],[1,102],[0,60],[0,93],[0,143],[0,42],[0,26],[0,63],[0,111],[0,180],[-1,279],[-1,522],[0,213],[0,2],[4,93],[1,73],[0,43],[1,85],[2,130],[0,43],[1,28],[-2,166],[-2,111],[-1,48],[-2,164],[0,5],[-1,119],[-241,-1],[-19,1]],[[99967,79415],[0,-155],[0,-3],[0,-226],[-1,-180],[0,-26],[0,-390],[0,-38],[0,-285],[0,-79],[0,-75],[0,-77],[-1,-134],[0,-74],[0,-312],[0,-423],[0,-391],[0,-204],[0,-173],[0,-200],[0,-337],[0,-210],[0,-172],[0,-105],[-1,-229],[0,-1],[0,-131],[-1,-147],[0,-122],[0,-104],[-1,-153],[0,-104],[0,-95],[-1,-320],[-1,-232],[0,-145],[-1,-29],[0,-34],[-1,-272],[-1,-300],[0,-263],[-1,-108],[0,-45],[-1,-253],[0,-55],[0,-134],[0,-71],[-1,-334],[-1,-202],[0,-122],[1,-193],[2,-1516],[1,-159],[0,-61],[0,-1],[0,-208],[0,-32],[1,-84],[0,-204],[0,-70],[0,-168],[1,-769],[0,-251],[0,-63],[0,-230],[1,-451],[0,-282],[0,-182],[0,-88],[0,-67],[0,-172],[1,-324],[0,-289],[0,-156],[0,-517],[0,-36],[0,-32],[1,-107],[-2,-77],[0,-238],[1,-49],[-1,-102],[-1,-52],[1,-29],[0,-26],[0,-39],[2,-537],[1,-183],[0,-298],[0,-177],[0,-2],[0,-90]],[[99963,62530],[-68,-4],[-30,0],[-9,0],[-28,0],[-97,-1],[-60,0],[-95,0],[-63,-1],[-30,0],[-272,-1],[-257,-1],[-33,0],[-51,0],[-433,-2],[-203,-1],[-274,-1],[-37,0],[-42,0],[-266,-1],[-184,-1],[-27,0],[-23,0],[-1,0],[-211,-6],[-174,1],[-107,-1],[-150,-1],[-288,-2],[-66,0],[-89,-1],[-369,-3],[-91,0],[-40,-1],[-29,0],[-2,0],[-148,-1],[-49,0],[-19,5],[-24,0],[-16,-2],[-22,1],[-102,0],[-96,-1],[-202,0],[-23,0],[-15,0],[-24,0],[-63,-1],[-107,0],[-76,-1],[-16,2],[-129,-1],[-19,0],[-294,-1],[-123,-1],[-117,-1],[-154,1],[-113,-1],[-57,0],[-83,2],[-15,2],[-19,1],[-22,-3],[-17,-3],[-23,0],[-115,-1],[-52,-4],[-58,-2],[-28,0],[-138,1],[-197,1],[-5,0],[-27,0],[-42,1],[-2,0],[-151,1],[-25,0],[-73,0],[-307,2],[-135,0],[-1,0],[-84,1],[-322,0],[-38,0],[-229,-1],[-70,0],[-280,-2],[-151,0],[-158,-1],[-234,-1],[-87,-1],[-298,0],[-212,-8],[-27,-7],[-79,-2],[-148,-2],[-15,0],[-28,0],[-168,-3],[-45,-1],[-219,-3],[-47,-1],[-137,-2],[-128,-3],[-37,0],[-368,-8],[-23,-1],[-171,-3],[-36,0],[-147,-5],[-88,-1],[-218,-2],[-32,-1]],[[87897,62440],[-29,0],[-84,-1],[-117,-1],[-62,-1],[-2,0],[-279,-9],[-56,1],[-186,4],[-4,0],[-21,0],[-258,0],[-86,0],[-28,0],[-224,-7],[-152,-2],[-86,-2],[-102,-1],[-43,0],[-40,1],[-45,-1],[-39,0],[-27,-1],[-104,-2],[-44,-1],[-71,-1],[-242,-3],[-109,-2],[-27,0]],[[56336,62457],[-51,1],[-1,0],[-57,2],[-24,0],[-17,2],[-63,-6],[-68,1],[-22,-2],[-133,0],[-19,0],[-100,1],[-223,3],[-28,-1],[-16,0],[-60,0],[-3,0],[-17,0],[-131,1],[-28,-1],[-66,3],[-113,2],[-68,-2],[-104,0],[-63,-2],[-73,2],[-70,-2],[-40,2],[-1,0],[-51,-3],[-2,28],[-285,4],[-29,0],[-103,0],[-28,0],[-53,0],[-120,0],[-167,0],[-94,0],[-89,0],[-212,0],[-275,0],[-193,0],[-58,0],[-312,0],[-52,-3],[-235,5],[-32,-2],[-26,0],[-186,2],[-237,-2],[-40,2],[-22,5],[-67,-3],[-211,3],[-1,0],[-83,-3],[-267,-9],[-95,5],[-66,1],[-112,-2],[-104,-7],[-304,2],[-32,-1],[-4,0],[-34,0],[-116,0]],[[50280,62483],[-156,1],[-1,0],[-25,0],[-9,0],[-50,0],[-195,1],[-132,0],[-101,-1],[-30,0],[-25,0],[-49,0],[-86,0]],[[49421,62484],[0,141],[-1,654],[-1,1138],[-1,754],[0,41],[2,353],[0,416],[0,120],[-435,-2],[-38,0],[-30,0],[-45,-1],[-154,-2],[-171,-2],[-335,-4],[-292,-3],[-21,0],[-48,-1],[-159,-2],[0,105],[0,59],[0,61],[0,274],[2,350],[1,428],[0,323],[1,403],[1,181],[-28,0],[-274,4],[-195,-7],[-94,0],[-26,0],[-248,1],[-144,1],[-187,0],[-434,2],[-87,0],[-142,1],[-51,-1],[-91,1],[-116,1],[-164,0],[-195,0],[-615,0],[-171,-1],[-175,0],[2,412],[0,383],[0,643],[0,234],[0,453],[-67,0],[-181,2],[-85,0],[-164,-1],[-46,1],[-28,1],[-50,0],[-10,0],[-29,-7],[-204,1],[-615,3],[-69,0],[-148,1],[-195,1],[-230,1],[-217,1],[-77,0],[-178,1],[-507,3],[14,22],[-1,2],[-10,30],[-12,16],[-5,6],[-13,15],[-2,1],[-16,9],[-6,0],[-12,1],[-23,-1],[-22,3],[-24,5],[-5,1],[-9,2],[-10,4],[-18,6],[-18,8],[-15,9],[-4,3],[-27,28],[0,1],[-22,20],[-18,17],[-20,14],[-20,-1],[-14,-20],[0,-25],[-7,-11],[-6,-10],[-21,-3],[-21,11],[-10,29],[1,31],[9,33],[7,21],[2,7],[1,2],[17,26],[26,24],[17,13],[14,14],[14,15],[15,28],[5,27],[1,39],[7,29],[12,27],[18,20],[13,20],[9,32],[8,39],[3,7],[9,18],[11,36],[11,30],[-12,-2],[-79,-13],[-41,2],[-3,0],[-35,-1],[-23,-1],[-39,-2],[-98,10],[-59,-3],[-60,0],[-103,-7],[-77,-10],[-43,0],[-98,-5],[-76,2],[-87,-7],[-226,-3],[-300,-2],[-239,1],[-78,0],[-1,217],[2,278],[0,84],[0,48],[1,26],[-7,54],[9,649],[1,57],[-93,0],[-29,0],[-23,0],[-63,0],[-171,0],[-265,0],[-215,1],[-71,0],[-16,0],[-257,0],[-116,0],[-24,1],[-139,0],[-80,0],[-144,0],[-9,35],[1,63],[8,513],[4,257],[9,554],[6,386],[3,173],[2,145],[2,86],[-319,-2],[-399,-2],[-155,-1],[-18,0],[-2,92],[-1,110],[0,1],[-1,34],[0,122],[0,4],[0,48],[-1,232],[-1,132],[-2,577],[-3,779],[0,61],[-149,-5],[-350,-2],[-94,0],[-271,-2]],[[49421,62484],[0,-36],[0,-341],[0,-55],[0,-32],[-1,-262],[-38,-1],[-92,-1],[-239,-4],[-66,-1],[-18,0],[-445,-1],[-172,-1],[-131,0],[-136,0],[-274,-1],[-160,0],[-56,-1],[-11,0],[-16,0],[-122,0],[-55,0],[-47,0],[-86,0],[-56,-1],[-132,-1],[-17,0],[-16,0],[-1,0],[-19,-1],[-23,0],[-43,0],[-570,-6],[-254,-3],[-67,-1],[-53,0],[-589,-6],[-138,-1],[-5,0],[-10,-1],[-33,0],[-107,-1],[-56,0],[-86,-1],[-45,0],[-105,-1],[-145,-2],[-92,-1],[-51,0],[-7,0],[-263,0],[-106,0],[-107,0],[-46,0],[-373,0],[-10,0],[-22,1],[-114,1],[-53,0],[-15,0],[-41,0],[-50,0],[-354,0],[-196,0],[-30,0],[-10,0],[-14,0],[-120,0],[-765,-1],[-438,-4],[0,-275],[-43,1],[-132,4],[-3,-1],[-18,0],[-5,0],[-15,0],[-2,0],[-43,-1],[-2,0],[-9,-1],[-285,-1],[-69,0],[-22,0],[-63,0],[-101,-1],[-12,0],[-8,0],[-3,0],[-11,0],[-71,0],[-23,0],[-31,0],[-296,-1],[-80,-1],[-106,1],[-85,0],[-594,3],[-322,2],[-32,0],[-6,0],[-100,0],[1,357],[-265,0],[-47,0],[-42,0],[-38,0],[-59,0],[-89,-2],[-27,0],[-23,0],[-187,1],[-58,1],[-409,2],[-17,1],[-21,0],[-19,0],[-42,0],[-63,0],[-125,1],[-97,1],[-30,0],[-43,0],[1,229],[0,3],[1,272],[0,53],[-1,83],[-1,80],[-48,0],[-29,0],[-304,0],[-147,1],[-96,0],[-301,1],[-1,0],[-430,0],[-6,0],[-18,0],[-3,0],[-47,0],[-66,0],[-196,1],[-10,0],[0,152],[0,578],[-458,-2],[-249,-2],[-103,0],[-423,-2],[-165,0],[-30,0],[-62,0],[-22,-1],[-13,0],[-62,0],[-110,0],[1,308],[0,14],[0,26],[1,30],[1,361],[1,114],[0,10],[0,50],[1,105],[0,66],[-215,-2],[-169,-1],[-56,-1],[-12,0],[-11,0],[-171,-2],[-165,-1],[-20,0],[-17,0],[-36,-1],[-25,0],[-49,0],[-60,-1],[-133,-1],[-24,1],[-169,1],[-181,2],[-55,0],[-59,2],[-80,2],[0,96],[0,33],[0,537],[0,72],[-246,2],[-38,0],[-104,0],[-57,-1],[-40,0],[-200,-11],[-192,-10],[-16,0],[-88,3],[-158,5],[-46,-1],[-11,0],[-193,-1],[-59,0],[-52,0],[-147,1],[-60,0],[-1,67],[-1,82],[-2,211],[-95,2],[-160,3],[-254,-2],[-14,0],[-39,0],[-12,1],[-133,1],[-93,1],[-150,-2],[-118,6],[-174,0],[-174,0],[-196,0],[-8,0],[-658,0],[-457,-1],[-68,0],[-90,1],[-124,1],[-226,2],[-89,1],[-59,1],[0,35],[0,15],[3,79],[0,47],[0,274],[0,345],[0,3],[0,601],[0,376],[0,206],[-20,13],[-3,2],[-3,5],[-8,13],[-9,9],[-11,9],[-23,7],[-19,0],[-11,7],[-8,5],[-25,21],[-10,36],[-1,0],[-5,17],[-4,12],[-66,41],[-3,4],[-5,8],[-2,2],[-2,3],[-15,36],[-18,9],[-20,3],[-28,12],[-24,28],[-4,4],[-18,21],[-7,22],[-2,4],[-2,7],[-4,28],[-8,37],[-13,20],[-11,37],[-5,13],[-4,12],[-1,2],[-14,19],[-26,24],[-15,32],[-2,4],[-13,9],[-1,1],[-6,52],[-17,38],[-10,38],[-1,2],[-3,34],[-4,44],[-8,30],[-11,29],[-17,33],[-6,10],[-16,28],[-8,8],[-10,9],[-5,15],[-3,11],[-6,20],[-9,33],[-4,10],[-1,3],[-4,9],[-7,13],[-9,15],[-9,15],[-17,33],[-26,46],[-17,21],[-6,33],[0,2],[-10,22],[-13,23],[-16,38],[-1,3],[-8,19],[-4,9],[-11,32],[-1,3],[-8,25],[-14,33],[-2,5],[-3,8],[-12,33],[-31,43],[-21,42],[-23,43],[-17,11],[-15,4],[-13,6],[-11,5],[-8,2],[-12,4],[-17,8],[-9,8],[-11,10],[-16,10],[-3,3],[-15,16],[-14,14],[0,4],[1,36],[-22,29],[-25,10],[-34,24],[-22,13],[-14,7],[-8,5],[-7,2],[-10,4],[-23,3],[-17,3],[-10,3],[-16,5],[-11,4],[-5,2],[-13,20],[-9,16],[-7,12],[-6,12],[-6,13],[-2,6],[-7,18],[-14,34],[-20,28],[-5,14],[-5,13],[-4,19],[-10,56],[-8,15],[-3,5],[-9,19],[-3,6],[-10,31],[-6,30],[-4,24],[-1,20],[0,6],[-5,44],[-14,32],[-1,3],[-2,29],[0,9],[-4,33],[-22,14],[-15,7],[-15,10],[-21,31],[-8,18],[-1,2],[-14,7],[-17,19],[-8,14],[-7,11],[-19,21],[-18,-23],[-13,-13],[-12,-4],[-7,-3],[-29,9],[-23,-1],[-12,-5],[-11,-4],[-21,2],[-29,8],[-22,27],[-12,18],[-11,18],[-1,2],[-7,2],[-12,3],[-16,16],[-23,9],[-10,-1],[-13,-2],[-17,-3],[-23,0],[-6,6],[-11,13],[-9,37],[-2,4],[-8,17],[-4,29],[-4,37],[-10,13],[-5,5],[1,37]],[[50280,62483],[-1,-35],[0,-164],[-1,-514],[168,-1],[1,0],[7,-1],[81,0],[1,-28],[1,-244],[0,-12],[4,-978],[1,-141],[1,-115],[0,-21],[1,-344],[1,-220],[1,-51],[0,-36],[1,-246],[-1,-42],[-1,-154],[-2,-207],[0,-18],[0,-8],[0,-45],[0,-2],[0,-56],[4,-519],[0,-76],[1,-91],[1,-161],[1,-74],[0,-55],[2,-205],[1,-158],[-1,-62],[-1,-111],[0,-88],[-1,-54],[0,-51],[0,-37],[0,-18],[0,-1],[0,-80],[1,-101],[0,-30],[0,-90],[0,-172],[0,-89],[0,-46],[-1,-216],[1,-20],[1,-306],[1,-246],[0,-2],[0,-37],[0,-112],[0,-9],[0,-25],[1,-32],[0,-5],[0,-33],[0,-93],[-14,2],[-3,0],[0,-171],[1,-41],[0,-88],[0,-31],[0,-54],[0,-8],[0,-4],[0,-22],[1,-300],[1,-308],[0,-20],[0,-25],[0,-196],[0,-351],[0,-146],[0,-18],[0,-45],[0,-109],[0,-13],[0,-70],[0,-35],[0,-14],[0,-55],[41,0],[13,0],[151,2],[0,-78],[-1,-345],[-1,-231],[0,-34],[0,-51],[-1,-324],[0,-175],[0,-36],[-1,-254],[1,-307],[1,-68],[1,-215],[1,-11],[2,-16],[1,-179],[1,-67],[0,-25],[0,-13],[0,-24],[0,-27],[0,-38],[0,-61],[1,-249],[2,-390],[0,-76],[0,-276],[0,-36],[0,-49],[-1,-599],[0,-56],[0,-50],[0,-31],[1,-184],[1,-80],[1,-188],[1,-201],[1,-140],[1,-227],[-2,-239],[-1,-33],[0,-9],[0,-10],[-1,-131],[-3,-372],[-1,-116],[1,-71],[1,-70],[4,-231],[2,-142],[0,-71],[0,-368],[0,-34],[0,-44],[0,-32],[0,-82],[0,-95],[0,-64],[0,-79],[0,-34],[0,-17],[0,-17],[0,-35],[0,-121],[0,-91],[1,-125],[0,-80],[0,-3],[0,-39],[0,-74],[0,-214],[0,-88],[-52,0],[-41,0],[-136,1],[-1,0],[-134,0],[-147,1],[-9,0],[-81,-2],[0,-98],[0,-103],[0,-312],[0,-170],[0,-103],[0,-14],[0,-11],[2,-179],[0,-102],[0,-22],[1,-22],[0,-64],[1,-95],[0,-49],[0,-44],[2,-202],[0,-87],[1,-155],[0,-28],[1,-159],[1,-114],[1,-45],[0,-58],[0,-16],[0,-30],[0,-31],[0,-27],[0,-112],[0,-183],[0,-19],[0,-78],[0,-2],[-1,-586],[0,-271],[0,-205],[0,-107],[5,-404],[1,-125],[0,-33],[0,-214],[0,-90],[0,-6],[0,-51],[1,-267],[0,-296],[1,-525],[0,-112],[0,-89],[0,-193],[0,-170],[0,-9],[2,-358],[-1,-119],[-1,-56],[1,-359],[1,-147],[1,-445],[0,-2],[0,-89],[1,-217],[0,-177],[0,-89],[1,-63],[0,-47],[251,0],[21,0]],[[50451,35878],[0,-22],[0,-10],[0,-1],[0,-386],[0,-320],[0,-18],[0,-57],[0,-123],[0,-141],[0,-104],[0,-280],[1,-308],[0,-32],[2,-273],[0,-40],[0,-40],[-1,-708],[0,-16],[0,-12],[0,-228],[0,-116],[1,-707],[0,-185],[0,-177]],[[50454,31574],[-146,1],[-78,0],[-34,0],[-299,1],[-98,-1],[-113,-2],[-23,-1],[-45,-1],[-60,0],[-190,-1],[-232,-1],[-8,0],[-16,0],[-30,0],[-97,-1],[-13,-1],[-123,-2],[-21,0],[-13,-1],[-23,0],[-358,5],[-194,2],[-27,1],[-20,0],[-24,0],[-10,0],[-30,0],[-123,-1],[-200,2],[-81,1],[-41,0],[-14,0],[-92,2],[-113,1],[-31,1],[-19,0],[-214,3],[-80,0],[-98,0],[-189,-1],[-57,0],[-41,0],[-38,3],[-204,-4],[-38,0],[-35,0],[-60,0],[-42,0],[-111,0],[-213,-1],[-55,0],[-33,0],[-31,0],[-16,0],[-95,-1],[-121,0],[-69,0],[-47,0],[-21,0],[-27,0],[-64,-1],[-69,1],[-79,0],[-85,0],[-73,0],[-37,1],[-182,0],[-257,1],[-139,0],[-45,0],[-86,1],[-592,1],[-14,0],[-35,0],[-35,0],[-46,0],[-1,0],[-10,0],[-23,1],[-21,0],[-10,0],[-47,1],[-147,1],[-94,0],[-7,0],[-3,0],[-312,2],[-220,1],[-365,3],[-44,0],[-69,0],[-334,2],[-67,0],[-26,0],[-79,1],[-242,2],[-224,1],[-225,3],[-208,1],[-176,3],[-23,1],[-115,2],[-3,0],[-89,1],[-222,5],[-45,0],[-44,0],[-85,1],[-44,0],[-77,0],[-15,0],[-3,0],[-30,1],[-80,0],[-78,0],[-97,1],[-113,0],[-22,0],[-2,0],[-32,0],[-141,1],[-265,1],[-211,1],[-29,0],[-5,0],[-1,0],[-87,1],[-16,0],[-89,0],[-101,1],[-246,2],[-164,-2],[-7,0],[-84,-2],[-62,-1],[-29,0],[-33,0],[-40,-1],[-98,-1],[-25,-1],[-15,0],[-35,2],[-43,1],[-19,0],[-24,0],[-16,0],[-18,0],[-215,-2],[-249,-2],[-12,0],[-261,-2],[-234,-2],[-71,0],[-21,-2],[-10,0],[-63,-2],[-35,0],[-136,1],[-81,0],[-44,1],[-46,0],[-20,0],[-56,0],[-370,0],[-120,0],[-19,0],[-71,1],[-34,0],[-74,0],[-1,0],[-460,0],[-76,0],[-79,2],[-345,-2],[-28,0],[-1,0],[-52,0],[-124,0],[-117,0],[-376,1],[-718,-7],[-23,0],[-77,0],[-94,1],[-954,10],[-1,0],[-32,0],[-392,4],[-235,8],[-87,-2],[-387,-6],[-71,0],[-523,2],[-12,-1],[-5,0],[-120,1],[-63,0],[-47,0],[-126,0],[-315,7],[-28,0],[-174,-1],[-27,0],[-23,0],[-161,-2],[-169,-1],[-63,0]],[[28738,31622],[6,110],[1,191],[0,32],[0,30],[0,125],[0,39],[2,132],[0,40],[2,161],[-1,110],[-1,206],[-1,76],[0,69],[-2,237],[2,192],[0,110],[1,131],[0,105],[1,52],[0,159],[0,28],[-1,81],[0,31],[0,86],[0,65],[-2,177],[0,102],[-2,410],[0,72],[0,46],[-1,178],[-1,153],[-1,256],[0,43],[-1,203],[-366,-4],[-2,382],[0,184],[0,64],[-1,89],[-2,168],[0,8],[-1,50],[-1,179],[-1,155],[0,114],[0,43],[-1,221],[-11,101],[0,48],[-1,13],[-2,108],[-4,140],[6,246],[-2,78],[-1,36],[-1,48],[1,89],[1,103],[1,115],[0,39],[-1,131],[-1,75],[1,36],[-1,55],[3,233],[0,29],[-1,40],[-1,59],[0,4],[-5,218],[-2,213],[0,106],[2,53],[0,37],[-1,26],[-1,122],[-1,292],[0,36],[-5,188],[-4,319],[2,128],[0,96],[1,191],[-3,193],[0,200],[1,261],[0,44],[-10,278],[-205,3],[-219,2],[-69,1],[-111,1],[-150,12],[-40,-1],[-24,1],[-61,2],[0,41],[6,30],[3,31],[-4,31],[-11,19],[-14,30],[-4,26],[-14,76],[19,11],[98,68],[-13,9],[-19,13],[-22,27],[-4,39],[-2,29],[-2,37],[-12,22],[-4,46],[-20,10],[-4,32],[-9,28],[-18,20],[-17,19],[-45,68],[-17,12],[-21,4],[-27,20],[-8,43],[10,20],[8,21],[8,24],[14,23],[19,40],[15,3],[15,1],[41,-4],[17,4],[15,14],[19,-9],[21,-12],[7,31],[-13,13],[2,41],[8,27],[-21,12],[-20,-2],[-21,-7],[-18,7],[-22,18],[-19,1],[3,28],[-12,35],[-28,24],[-16,7],[-17,9],[-18,-3],[-21,12],[-19,-6],[-17,-18],[-17,21],[-16,4],[-27,-6],[-15,-10],[-14,12],[-15,5],[-19,11],[-1,32],[3,29],[-5,25],[-15,26],[-70,5],[-21,-6],[-22,18],[-13,7],[-17,21],[-15,-3],[-18,0],[-12,20],[-16,-7],[-53,14],[0,64],[11,28],[-15,21],[-17,1],[-15,8],[-12,20],[-12,20],[-13,70],[-20,27],[-17,27],[-24,25],[-23,7],[-18,24],[-16,20],[-7,34],[-20,16],[-7,24],[-39,-8],[-15,6],[-26,-5],[-15,3],[-19,18],[-16,12],[-20,29],[-23,-15],[-14,8],[-21,0],[-14,-25],[-17,-40],[-23,-25],[-3,-45],[-11,-25],[0,-56],[-27,-31],[-14,-12],[-11,21],[-20,18],[-20,27],[-17,-3],[-17,-15],[-14,14],[-24,18],[-62,63],[-9,19],[-10,21],[-18,18],[-20,-4],[-24,13],[-7,31],[-2,121],[1,65],[14,43],[119,215],[0,58],[-20,42],[-139,282],[-40,83],[-35,-23],[-18,16],[-30,-5],[-13,12],[-22,50],[-16,18],[-30,23],[-13,15],[-23,37],[-25,54],[-23,14],[-16,15],[-14,38],[0,28],[1,38],[-11,21],[-29,53],[1,27],[-13,19],[-40,5],[-20,-2],[-14,20],[-11,29],[-12,54],[-6,26],[-1,33],[6,29],[-13,19],[-17,20],[-10,36],[-25,11],[-18,17],[-13,47],[-5,28],[-11,17],[-3,28],[-17,36],[-9,29],[34,32],[-3,29],[-36,9],[-21,20],[-2,33],[-12,-14],[-19,-36],[-20,-3],[-33,1],[-14,-3],[-29,-6],[-15,30],[-46,36],[-54,37],[-20,38],[-75,53],[-41,10],[-38,31],[-25,9],[-21,8],[-14,28],[-24,28],[-20,20],[-12,44],[-8,42],[-23,18],[-16,13],[-12,27],[-8,40],[2,28],[-13,27],[-10,77],[-17,38],[-21,17],[-19,22],[12,62],[1,30],[-4,79],[-20,22],[-5,29],[6,25],[9,23],[-1,26],[-8,53],[0,39],[-6,25],[-6,43],[2,28],[-1,26],[-27,34],[-21,4],[-39,8],[-14,16],[-5,34],[-2,30],[-8,36],[-5,30],[-8,30],[1,26],[-15,30],[-17,36],[-19,127],[-3,34],[-11,54],[-6,39],[-5,29],[-8,20],[-21,12],[-19,17],[-25,27],[-65,52],[-11,21],[-6,49],[-4,38],[-6,32],[-11,31],[-15,53],[-21,33],[-9,35],[-22,22],[-18,22],[-15,39],[-3,32],[-12,18],[-14,22],[-14,28],[-26,51],[-17,3],[-15,-10],[-12,-17],[-10,-19],[-16,-25],[-12,-13],[-15,-10],[-22,-3],[-19,-11],[-20,-12],[-18,-14],[-13,-18],[-16,-10],[-20,-8],[-15,8],[-21,7],[-18,9],[-17,12],[-27,-8],[-18,-3],[-17,-9],[-33,-8],[-24,21],[-7,37],[-12,35],[-5,30],[14,40],[-14,16],[-16,20],[-11,37],[-13,13],[-12,35],[-17,16],[-17,21],[-23,34],[-13,10],[-19,18],[-8,25],[-27,4],[-40,12],[-41,17],[-34,22],[-33,29],[-45,34],[-27,25],[14,15],[-10,21],[-15,4],[-24,31],[-9,29],[-5,41],[-1,30],[-21,12],[-39,-24],[-22,0],[-19,-4],[-23,9],[-10,24],[-25,38],[-24,5],[-23,-8],[-26,-3],[-15,15],[-15,11],[-20,-2],[-28,-27],[-4,30],[-10,35],[-3,44],[-16,29],[-27,33],[-18,14],[-13,17],[-8,28],[-11,17],[-15,27],[-5,28],[29,0],[15,8],[3,32],[-8,33],[12,17],[2,34],[-10,24],[-18,16],[-16,17],[-17,8],[-27,28],[-11,22],[-17,3],[-40,-28],[-21,-7],[-15,9],[-22,53],[-16,29],[-23,2],[-37,19],[-25,-9],[-17,-17],[-15,-4],[-46,6],[-16,24],[-10,18],[-17,-3],[-19,-3],[-18,16],[-7,43],[-17,22],[3,33],[0,26],[-19,14],[-14,23],[-17,26],[-6,24],[0,36],[-6,27],[-16,15],[-20,18],[-10,23],[-7,27],[-16,0],[-21,12],[-21,-5],[-19,-34],[-16,-14],[-26,11],[-13,-22],[-13,-11],[-33,-17],[-12,28],[-8,26],[-12,22],[-13,21],[-17,-14],[-20,-17],[-17,-6],[-21,-4],[-15,19],[-26,7],[-12,28],[-19,24],[-13,32],[-18,4],[-15,-2],[-30,-5],[-15,0],[-17,-15],[-18,-3],[-15,6],[-25,-3],[-28,-23],[-9,-30],[-13,-14],[-15,9],[-23,0],[-16,4],[-23,20],[-23,7],[-34,14],[0,25],[-9,45],[-10,58],[-9,33],[-5,24],[0,29],[-6,38],[6,30],[17,24],[-23,43],[-6,26],[15,44],[4,31],[1,34],[17,32],[27,22],[9,48],[21,34],[-18,28],[-10,18],[-14,17],[-53,2],[-19,-4],[-24,-2],[-24,13],[7,48],[11,19],[2,39],[-1,43],[-4,28],[-15,9],[-17,-8],[-21,-12],[-18,-9],[-10,17],[-23,23],[-18,2],[-21,11],[-18,26],[16,1],[26,11],[18,-1],[17,3],[11,16],[15,1],[23,24],[6,33],[19,18],[31,28],[31,24],[12,24],[26,38],[13,31],[-3,36],[-24,7],[4,29],[7,25],[-1,32],[14,25],[8,47],[-13,25],[-2,62],[-13,32],[-19,4],[-16,21],[-18,12],[-15,6],[-13,22],[-18,35],[-12,28],[10,18],[-7,27],[6,31],[0,35],[13,14],[-15,25],[-23,4],[-13,17],[-24,12],[-16,30],[-2,39],[-12,17],[-13,19],[-19,42],[-6,24],[21,23],[4,36],[-11,22],[-24,71],[6,39],[-20,11],[-45,-2],[-18,-8],[-16,-3],[-20,7],[-18,17],[-23,45],[-5,46],[-13,23],[-16,27],[-8,22],[-11,16],[3,28],[1,4],[-5,3],[-15,11],[-13,13],[-23,39],[-14,30],[-5,26],[-19,37],[-15,16],[-19,26],[-22,27],[-3,3],[-38,12],[-22,-7],[-31,6],[-25,6],[-10,27],[-9,1],[-6,1],[-28,42],[-19,33],[-14,13],[-20,16],[-11,17],[-23,-10],[-22,2],[-23,-5],[-17,4],[-21,13],[-17,12],[-13,23],[-6,23],[-2,22],[-1,7],[-4,41],[-12,24],[-2,4],[-16,36],[-3,32],[10,26],[2,26],[1,7],[-6,3],[-13,8],[-7,24],[-12,20],[-2,31],[0,4],[2,27],[-13,10],[-1,2],[-12,18],[-8,26],[-10,40],[-1,29],[-10,31],[-7,31],[5,30],[4,27],[6,12],[5,8],[-9,32],[-3,14],[-6,29],[3,59],[7,21],[1,6],[-1,6],[-5,30],[-2,25],[10,29],[-6,37],[-24,8],[-12,13],[-18,15],[-13,29],[-15,-13],[-21,-6],[-34,-13],[-17,-41],[-38,-21],[-18,11],[-18,11],[-18,30],[-3,13],[-6,22],[-16,7],[-2,1],[-23,23],[-6,26],[-9,23],[-13,29],[-13,29],[-5,28],[-8,50],[-14,53],[4,27],[8,21],[2,4],[2,27],[-10,35],[-2,3],[-11,16],[6,32],[2,4],[10,16],[5,33],[-3,39],[-13,17],[-1,1],[-10,32],[-6,29],[-7,41],[1,16],[1,17],[-7,30],[-1,27],[-8,14],[-4,7],[-6,24],[-4,28],[-18,13],[-2,26],[14,12],[17,31],[-20,39],[-16,10],[-34,18],[-19,-3],[-5,32],[-1,28],[-24,9],[-20,23],[-17,24],[-15,37],[-5,34],[3,32],[-32,28],[-29,14],[-15,20],[5,28],[-1,27],[1,35],[4,30],[6,34],[-11,23],[0,44],[13,11],[20,31],[9,29],[30,29],[8,36],[-16,40],[-17,16],[-4,35],[-26,25],[-23,22],[-21,20],[1,50],[0,56],[15,16],[4,25],[-10,65],[8,23],[17,14],[7,29],[13,24],[-17,3],[-15,4],[-17,32],[-14,23],[-8,27],[-8,23],[-15,20],[-25,59],[4,41],[-10,41],[-21,19],[-23,14],[-35,42],[-28,13],[-22,28],[-11,21],[5,30],[15,11],[15,8],[18,0],[15,19],[23,12],[12,20],[20,7],[9,23],[20,25],[7,43],[18,7],[20,26],[-4,31],[-12,32],[-26,43],[-6,25],[-22,27],[-29,48],[-1,33],[5,33],[2,34],[29,3],[20,10],[14,19],[7,26],[1,32],[-12,42],[-10,33],[12,32],[22,11],[27,13],[24,13],[30,34],[1,53],[10,27],[12,40],[-12,24],[-9,31],[-7,34],[12,14],[11,22],[-2,35],[3,36],[-11,25],[-17,14],[-15,18],[-21,22],[-13,24],[-8,41],[-6,33],[-15,42],[-22,3],[-7,-1],[-24,-2],[-26,4],[-13,9],[-3,3],[-32,57],[-27,21],[-34,47],[-24,38],[-4,44],[-9,19],[-23,40],[-15,19],[-11,23],[-4,35],[-9,34],[-9,27],[2,28],[-8,43],[-6,24],[-1,29],[2,32],[8,39],[15,27],[16,27],[8,27],[13,22],[15,20],[13,23],[9,50],[-4,45],[-6,29],[1,38],[6,51],[-14,25],[-9,28],[11,41],[16,43],[7,38],[-4,25],[-12,23],[-15,7],[-16,6],[-21,16],[-27,16],[-19,18],[-25,-2],[-21,11],[-1,33],[-17,44],[-33,55],[-30,2],[-28,-7],[-35,-26],[-56,-49],[-47,-19],[-26,-8],[-26,-3],[-32,-25],[-23,-12],[-13,-17],[-12,-20],[-19,-23],[-16,-11],[-26,-8],[-21,4],[-29,2],[-29,-12],[-27,7],[-31,28],[-17,5],[-21,-12],[-18,-11],[-19,1],[-18,-4],[-20,1],[-15,7],[-1,225],[0,116],[0,66],[0,136],[0,132],[-1,386],[-1,548],[-1,674],[0,143],[-145,2],[-48,0],[-140,2],[-366,6],[-410,7],[-30,0],[-589,13],[-88,1],[-40,0],[-205,-1],[-274,0],[-74,-1],[-31,0],[-164,1],[-164,2],[-183,1],[-5,0],[-14,0],[-320,2],[-224,2],[-268,1],[-1,0],[-81,0],[-144,0],[-230,1]],[[99963,62530],[-1,-81],[0,-33],[0,-12],[0,-55],[0,-7],[0,-75],[0,-4],[0,-92],[1,-275],[-1,-71],[1,-309],[0,-271],[0,-470],[0,-6],[0,-30],[0,-59],[1,-248],[0,-65],[1,-118],[0,-173],[0,-247],[0,-94],[0,-410],[1,-149],[1,-209],[0,-249],[1,-246],[0,-106],[0,-91],[0,-168],[0,-32],[1,-82],[0,-68],[0,-86],[1,-128],[0,-111],[0,-29],[0,-23],[5,-132],[0,-15],[0,-16],[0,-126],[1,-53],[0,-55],[0,-370],[0,-227],[-1,-343],[0,-32],[0,-85],[0,-155],[0,-228],[1,-144],[0,-168],[0,-45],[0,-207],[0,-11],[1,-78],[0,-45],[0,-77],[1,-195],[1,-275],[0,-59],[0,-64],[0,-51],[0,-199],[1,-272],[1,-470],[0,-12],[0,-135],[1,-109],[2,-215],[1,-362],[0,-358],[0,-100],[0,-260],[-1,-361],[1,-244],[0,-117],[0,-287],[0,-3],[0,-72],[1,-171],[0,-43],[1,-171],[0,-237],[0,-73],[0,-24],[0,-390],[3,-8040],[0,-192],[0,-1077]],[[99990,40298],[-166,1],[-132,3],[-51,1],[-31,0],[-69,1],[-187,2],[-92,1],[-106,0],[-176,1],[-27,0],[-71,0],[-44,0],[-25,0],[-87,-1],[-27,-2],[-137,4],[-39,-2],[-128,-1],[-37,0],[-163,1],[-21,0],[-245,1],[-71,0],[-124,1],[-386,-1],[-56,1],[-123,-1],[-156,-3],[-229,-3],[-327,-6],[-113,-3],[-237,3],[-62,-1],[-258,-4],[-18,0],[-162,-2],[-223,-15],[-61,-1],[-493,-9],[-225,-5],[-7,0],[-90,-3],[-12,-2],[-6,-1],[-41,0],[-138,-5],[-27,0],[-166,-3],[-23,1],[-83,3],[-176,-3],[-117,-1],[-119,-1],[-136,-1],[-83,-1],[-75,-1],[-99,-1],[-29,0],[-24,0],[-153,-2],[-38,-1],[-497,-5],[-300,-3],[-22,0],[-134,-2],[-195,12],[-80,0],[-350,5]],[[91385,40244],[-40,1],[-78,1],[-417,5],[-16,0],[-20,0],[-360,6],[-219,3],[-147,0],[-57,0],[-55,0],[-29,1],[-138,3],[-2,0],[-23,1],[-118,1],[-128,0],[-127,-3],[-51,-1],[-396,-7],[-54,4],[-627,-4],[-37,-12],[-41,-2],[-200,-10]],[[88005,40231],[0,47],[0,1],[0,61],[2,291],[0,83],[0,224],[0,301],[0,72],[0,9],[-1,220],[0,68],[0,379],[0,73],[0,197],[-5,162],[0,111],[-2,188],[-1,57],[-1,172],[0,59],[-6,31],[3,59],[1,42],[0,113],[1,107],[0,230],[1,94],[0,28],[0,37],[0,185],[0,61],[0,51],[0,15],[-4,294],[-5,216],[-71,5],[2,144],[1,91],[0,125],[-5,49],[-1,36],[-4,50],[-4,39],[2,45],[4,54],[4,75],[-2,31],[0,1],[-1,25],[0,29],[-2,77],[0,1],[-1,29],[-1,16],[-3,81],[2,141],[1,145],[3,122],[0,29],[1,86],[0,108],[0,67],[2,54],[3,138],[4,138],[5,79],[3,38],[-1,59],[1,26],[0,34],[-8,28],[1,174],[-1,67],[-1,52],[1,80],[0,5],[-1,116],[5,90],[-1,131],[0,198],[0,136],[0,180],[0,212],[0,28],[0,29],[-1,301],[0,54],[0,59],[0,98],[0,96],[0,353],[0,33],[0,233],[0,261],[0,23],[1,83],[-1,25],[5,133],[0,49],[0,74],[0,241],[0,245],[0,61],[0,49],[0,303],[-1,224],[0,176],[0,82],[0,78],[0,95],[0,71],[-2,117],[0,50],[-2,203],[-1,71],[0,31],[-1,75],[-1,57],[-1,79],[-2,161],[0,47],[-1,84],[0,60],[9,168],[1,35],[2,27],[9,139],[-1,45],[2,176],[1,126],[-2,353],[0,1],[-1,144],[0,47],[-1,67],[-1,279],[-2,283],[0,106],[-1,77],[-1,85],[-1,157],[-1,304],[-1,119],[-1,116],[-1,188],[-1,125],[0,79],[0,1],[-3,71],[0,46],[0,41],[0,158],[-1,129],[-1,292],[0,46],[0,104],[0,26],[0,110],[-1,313],[0,4],[-1,93],[0,51],[0,168],[5,491],[0,84],[0,135],[1,101],[3,216],[-1,317],[0,33],[-10,159],[-1,315],[0,45],[0,27],[0,9],[0,37],[0,120],[-1,114],[0,99],[0,37],[-1,359],[0,133],[-1,24],[0,9],[0,60],[-1,79],[0,31],[-1,272],[0,32],[-1,201],[-3,566],[-7,66],[-2,445],[0,28]],[[88005,40231],[-71,-1],[-18,-1],[-15,0],[-41,0],[-21,0],[-14,-1],[-15,0],[-121,-5],[-10,-1],[-114,-5],[-43,1],[-142,0],[-5,0],[-252,0],[-107,0],[-43,3],[-68,6],[-69,-1],[-73,-1],[-36,-1],[-29,-1],[-76,-1],[-161,-3],[-71,0],[-70,4],[-60,-2],[-192,0],[-252,0],[-308,-7],[-97,-2],[-15,0],[-54,1],[-41,2],[-30,1],[-37,1],[-8,0],[-69,2],[-20,1],[-37,0],[-18,0],[-38,-1],[-24,0],[-8,-1],[-18,0],[-89,-2],[-115,-7],[-113,-7],[-435,-25],[-154,-2],[-55,5],[-36,4],[-18,2],[-174,-11],[-231,-7],[-7,0],[-317,-9],[-107,-3],[-61,-2],[-147,0],[-43,-5],[-513,4],[14,-358],[2,-63],[5,-87],[1,-124],[3,-44],[0,-29],[2,-203],[2,-294],[1,-59],[0,-6],[1,-83],[2,-85],[0,-36],[1,-44],[2,-171],[2,-160],[1,-93],[0,-96],[0,-79],[0,-104],[-2,-140],[0,-106],[0,-175],[2,-104],[1,-76],[3,-32],[2,-195],[1,-81],[0,-26],[1,-32],[1,-79],[1,-130],[1,-50],[0,-35],[2,-121],[0,-71],[4,-337],[4,-343],[-23,2]],[[82416,35804],[-629,-7],[-59,0],[-7,-162],[1,-138],[-46,1],[-50,0],[-41,0],[0,-127],[1,-227],[-142,-1],[0,-82],[-1,-219],[-2,-321],[0,-3],[-1,-86],[-135,-1],[-1,-34],[7,-548],[7,-485],[8,-95],[8,-56],[16,-205],[-203,-4],[-39,-4],[-45,2],[13,-194],[25,-346],[7,-88],[0,-92],[-359,-1],[-303,-1],[-732,-2],[-205,0],[-73,-1],[-107,0],[-71,-1],[-118,-4],[-7,0],[-50,-2],[-25,-4],[-102,-16],[-2,65],[-4,117],[-73,-23],[-58,-17],[-399,68],[-284,4],[-224,2],[-1,169],[0,12],[-206,-8],[-1,182],[-1,209],[-4,463],[0,37],[0,52],[-3,376],[-1,86],[-1,196],[0,25],[-2,132],[2,61],[68,2],[457,-2],[32,-3],[-1,35],[2,686],[277,1],[1,332],[0,4],[1,271],[-495,6],[-42,7],[-191,4],[-265,2],[-303,-4],[-740,-4],[-299,3],[-181,5],[-261,9],[-186,-2],[-52,-1],[-136,-1],[-81,-1],[-418,-3],[-34,-1],[-417,4],[-201,4],[-46,1],[-153,0],[-37,1],[-24,6],[-63,3],[-25,2],[-82,2],[-58,3],[-45,1],[-66,2],[-97,-2],[-178,-3],[-173,-3],[-150,-2],[-82,1],[-68,9],[-67,9],[-108,7],[-18,-1],[-126,-3],[-1,0],[-23,-1],[-122,-1],[-6,0],[-31,1],[-25,1],[-41,-2],[-129,2],[-226,2],[-133,1],[-3,0],[-23,0],[-30,0],[-228,1],[-185,1],[-212,1]],[[71145,35850],[-35,-1]],[[71110,35849],[7,145],[8,212],[-1,66],[-4,429],[0,35],[-2,187],[1,50],[4,212],[1,60],[2,97],[-1,172],[0,78],[-1,16],[-4,192],[-4,121],[-2,44],[-1,30],[-1,31],[-11,355],[-2,38],[1,98],[4,515],[2,359],[2,361],[0,126],[-1,402],[0,196],[-1,60],[0,96],[0,74],[1,147],[0,106],[0,34],[0,36],[0,1],[1,126],[0,229],[1,172],[0,210],[1,56],[0,225],[1,161],[0,174],[30,3],[0,269],[-28,0],[0,30],[0,277],[72,2],[-1,88],[-53,-3],[0,353],[0,39],[-26,0],[-3,242],[-1,64],[-3,241],[-2,172],[-2,176],[-1,110],[48,3],[14,2],[0,34],[0,43],[0,58],[0,26],[0,40],[0,54],[0,94],[0,232],[-1,365],[0,92],[0,108],[-1,168],[0,28],[0,53],[0,33],[0,76],[0,27],[0,8],[0,61],[0,21],[0,4],[0,42],[0,36],[0,32],[0,79],[-1,147],[0,34],[0,35],[0,68],[0,81],[0,59],[0,37],[0,31],[0,2],[0,29],[0,76],[0,38],[-1,95],[-1,256],[-1,74],[0,78],[0,113],[-4,639],[-2,356],[-2,500],[-1,143],[-1,289],[-2,386],[-1,150],[-1,175],[-5,639],[-6,773],[-1,142],[-5,690],[-1,113],[-3,380],[0,29],[0,49],[-1,127],[0,47],[27,-5],[1,416],[0,32],[0,42],[1,274],[0,36],[0,172],[1,296],[1,148],[0,83],[1,279],[0,105],[1,430],[0,39],[1,136],[0,15],[0,1],[0,59],[0,2],[1,511],[0,60],[0,54],[-2,269],[-1,232],[-1,71],[-3,560],[0,143],[0,5],[1,281],[0,96],[0,149],[1,41],[0,138],[0,44],[0,140],[0,36],[0,125],[1,53],[0,160],[0,37],[0,191],[-1,231],[0,336],[0,109],[-1,46],[0,22],[1,120],[-1,76],[-1,186],[-1,271],[0,28],[-1,81],[-1,194],[0,80],[0,2],[-1,149],[-1,198],[0,67],[-1,114],[1,36],[1,108],[0,8],[1,169],[0,33],[-62,-1],[0,179],[3,155],[-1,214]],[[71110,35849],[-109,0],[-259,-1],[-251,0],[-91,3],[-263,-2],[-19,0],[-201,1],[-29,0],[-284,4],[-185,0],[-134,0],[-262,1],[-258,0],[-149,-1],[-238,-1],[-269,-1],[-145,-1],[-371,-1],[-223,-4],[-72,-3],[-96,-4],[-100,-4],[-262,-7],[-15,0],[-69,-2],[-70,0],[-146,-3],[-206,-4],[-1,0],[-97,-4],[-12,0],[-14,-1],[-21,-1],[-1,0],[-121,-3],[-131,-4],[-18,-1],[-405,-10],[-122,-7],[-107,-1],[-238,4],[-37,0],[-362,-3],[-354,-3],[-51,0],[-127,0],[-3,0],[-74,-1],[-249,0],[-518,-3],[-61,5],[-15,1],[-2,0],[-348,9],[-64,1],[-216,3],[-324,5],[-128,2],[-231,2],[-64,1],[-150,2],[-15,0],[-120,1],[-56,4],[-84,1],[-69,1],[-73,1],[-443,7],[-44,0],[-229,3],[-97,1],[-295,0],[-36,2],[-37,2],[-26,1],[-87,5],[-173,3],[-91,-1],[-98,1],[-134,2],[-3,0],[-266,2],[-26,1],[-4,0],[-2,0],[-92,1],[-206,2],[-25,0],[-78,1],[-93,1],[-119,1],[-460,1],[-116,1],[-17,0],[-46,-3],[-494,5],[-234,2],[-58,0],[-220,2],[-2,0],[-361,4],[-27,0],[-373,3],[-16,0],[-204,2],[-307,2],[-79,0],[-230,1],[-294,2],[-219,2],[-75,0],[-123,1],[-103,1],[-150,1],[-378,4],[-28,0],[-11,0],[-24,1],[-34,0],[-52,1],[-21,-1],[-259,-4],[-278,0],[-29,0],[-123,0],[-55,0],[-38,0],[-34,0],[-102,0],[-42,2],[-277,-1],[-34,0],[-5,0],[-82,0],[-323,-2],[-526,-1],[-120,-1],[-20,0],[-610,-2],[-15,0],[-41,0],[-24,0],[-49,0],[-10,0],[-244,0]],[[28738,31622],[-141,-1],[-64,0],[-79,-1],[-17,0],[-39,0],[-41,0],[-27,-1],[-18,0],[-23,0],[-109,0],[-54,0],[-101,-1],[-78,0],[-64,-1],[-15,0],[-4,0],[-11,0],[-60,0],[-173,-1],[-29,2],[-21,2],[-38,0],[-17,0],[-20,-1],[-195,0],[-234,-1],[-37,0],[-220,0],[-36,0],[-261,0],[-24,0],[-62,0],[-96,0],[-243,-1],[-67,0],[-8,0],[-165,0],[-31,1],[-30,0],[-69,0],[-58,0],[-90,1],[-34,0],[-58,0],[-41,0],[-5,0],[-31,0],[-38,0],[-35,0],[-105,1],[-117,0],[-40,0],[-14,0],[-3,0],[-60,1],[-60,1],[-50,0],[-24,0],[-226,0],[-132,0],[-79,1],[-22,0],[-256,0],[-12,0],[-13,0],[-76,0],[-37,3],[-253,-1],[-113,-1],[-61,-1],[-21,0],[-147,-2],[-33,1],[-26,0],[-4,0],[-35,0],[-124,-1],[-1,0],[-120,-1],[-13,-1],[-47,0],[-72,-1],[-115,-1],[-37,0],[-69,0],[-29,-1],[-25,0],[-53,0],[-330,-3],[-33,3],[-23,3],[-60,1],[-361,7],[-24,1],[-11,0],[-23,0],[-30,1],[-69,1],[-27,1],[-576,11],[-267,6],[-47,1],[-30,0],[-273,1],[-84,0],[-51,0],[-156,1],[-739,10],[-81,4],[-8,0],[-17,0],[-76,1],[-315,7],[-132,2],[-9,1],[-50,1],[-49,-4],[-5,0],[-14,0],[-37,1],[-41,1],[-36,2],[-425,12],[-136,4],[-3,0],[-529,15],[-11,0],[-8,0],[-1,0],[-37,1],[-315,9],[-191,2],[-266,9],[-29,1],[-313,5],[-15,1],[-237,10],[-371,12],[-173,5],[-381,12],[-19,6],[-192,5],[-27,0],[-25,1],[-160,3],[-253,6],[-80,2]],[[14322,31798],[-214,2],[-6,0],[-14,0],[-204,2],[-232,2],[-257,2],[-89,1],[-12,0],[-49,-1],[-272,-2],[-101,-1],[-200,-2],[-90,-1],[-172,-2],[-3,0],[-20,0],[-6,0],[-9,0],[-2,0],[-23,0],[-10,-1],[-14,0],[-9,0],[-108,-1],[-72,0],[4,106],[2,41],[-217,-3],[-5,0],[-14,0],[-165,-1],[-144,-2],[-51,0],[-13,0],[-4,0],[-8,-1],[-10,0],[-24,0],[-60,-1],[-4,0],[-24,-1],[-59,-1],[-48,-1],[-64,-2],[-19,-2],[-36,0],[-89,-1],[-9,0],[-101,-2],[-20,0],[-28,-1],[-187,-4],[-4,0],[-43,-1],[-69,-1],[-156,2],[-159,2],[-27,0],[-57,1],[-150,2],[-82,1],[-15,0],[-33,0],[-31,1],[-2,0],[-26,0],[-24,0],[-4,0],[-73,1],[-58,1],[-8,0],[-42,0],[-116,0],[-3,0],[-21,0],[-41,1],[-216,1],[-121,1],[-33,0],[-21,0],[-29,0],[-51,1],[1,94],[-381,-13],[-120,-4],[-40,-2],[-24,-1],[-105,-4],[-125,-6],[-245,-10],[-43,-2],[-52,-3],[-14,-1],[-47,-3],[-167,-10],[-182,-1],[-122,-1],[-2,222],[-8,1310],[-3,494],[-1,60],[0,9],[0,65],[-1,123],[0,32],[-1,116],[-2,554],[-2,377],[-1,115],[0,78],[-1,115],[-1,360],[-1,51],[0,104],[0,44],[0,25],[0,11],[-84,0],[-72,0],[-244,-1],[-161,-1],[-8,0],[-85,0],[-15,1],[2,201],[0,14],[0,26],[3,399],[1,33],[0,33],[0,41],[0,40],[1,23],[0,78],[1,119],[2,275],[-7,101],[0,3],[-2,369],[-1,247],[0,309],[0,262],[0,386],[1,200],[1,140],[0,311],[0,2],[-1,594],[0,154],[0,40],[0,175],[1,340],[0,344],[0,172],[0,102],[1,271],[0,15],[0,15],[0,295],[0,1],[0,115],[-2,278],[-320,-1],[-9,0],[-148,3],[0,237],[-4,755],[2,243],[2,370],[1,117],[199,-1],[58,-1],[5,0],[249,1],[-1,86],[-3,1508],[-4,793],[-1,161],[-1,360],[0,121],[-1,380],[-1,376],[-1,550],[0,1],[0,30],[-1,262],[-1,319],[0,292],[-1,250],[-2,557],[-1,462],[13,123],[2,1364],[0,1],[0,116],[1,509],[-2,30],[134,4],[0,419],[0,1218],[0,679],[0,166],[-1,234]],[[14322,31798],[0,-158],[0,-73],[0,-81],[1,-207],[0,-134],[1,-129],[0,-196],[1,-89],[0,-158],[1,-126],[0,-93],[0,-244],[0,-135],[0,-121],[0,-140],[0,-83],[0,-222],[0,-102],[0,-43],[0,-235],[0,-111],[-1,-93],[0,-96],[0,-84],[-1,-187],[-1,-64],[0,-43],[0,-140],[-1,-48],[0,-134],[-1,-184],[0,-114],[-2,-335],[0,-120],[0,-94],[-1,-264],[-2,-410],[0,-91],[-1,-280],[0,-48],[-1,-115],[0,-3],[0,-167],[-1,-37],[0,-129],[0,-94],[0,-19],[-1,-136],[0,-67],[7,-99],[67,-2],[10,0],[6,0],[24,-1],[0,-27],[0,-119],[0,-28],[0,-40],[0,-81],[0,-105],[0,-51],[-1,-46],[0,-9],[0,-23],[0,-51],[0,-39],[0,-39],[0,-24],[0,-50],[0,-52],[0,-14],[0,-16],[0,-122],[0,-27],[0,-251],[0,-531],[-1,-252],[0,-47],[0,-358],[0,-293],[0,-202],[0,-3],[0,-155],[0,-58],[0,-177],[0,-268],[0,-194],[0,-104],[0,-214],[0,-198],[0,-390],[0,-62],[0,-210],[0,-307],[0,-32],[0,-854],[0,-88],[0,-197],[0,-70],[-1,-99],[0,-154],[-2,-234],[-1,-322],[-1,-120],[-1,-290],[-1,-61],[-1,-166],[0,-84],[0,-48],[-5,-696],[-1,-165],[-1,-234],[0,-8],[0,-38],[-1,-11],[0,-95],[-1,-115],[-1,-107],[-1,-339],[0,-131],[0,-25],[-1,-195],[0,-296],[-1,-24],[0,-90],[0,-85]],[[14403,14510],[-211,3],[-389,3],[-60,0],[-250,2],[-87,1],[-58,0],[-23,0],[-10,1],[-26,0],[-330,2],[-60,0],[-518,3],[-44,1],[-19,0],[-77,0],[-640,4],[-38,0],[-54,1],[-63,1],[-40,0],[-55,1],[-142,1],[-53,1],[-38,0],[-316,4],[-65,0],[-41,1],[-154,2],[-227,2],[-48,0],[-16,-1],[-17,2],[-29,3],[-60,-2],[-5,0],[-51,1],[-6,0],[-87,1],[-98,1],[-44,0],[-130,2],[-84,0],[-171,0],[-84,0],[-32,0],[-66,1],[-260,0],[-238,1],[-50,0],[-71,0],[-54,0],[-114,0],[-44,0],[-23,0],[-441,1],[-52,0],[-177,0],[-150,0],[-245,0],[-41,0],[-18,0],[-152,0],[-26,0],[-29,0],[-26,0],[-1,0],[-191,0],[-1,0],[-69,0],[-58,0],[-18,0],[-1,0],[-84,0],[-16,0],[-238,-1],[-244,0],[-34,0],[-91,-1],[-81,0],[-219,-1],[-140,-2],[-28,0],[-29,0],[-79,-1],[-74,0],[-196,0],[-276,0],[-273,3],[-222,0],[-42,0],[-440,2],[-23,0],[-356,1],[-291,2],[-221,0],[-77,0],[-377,1],[-286,-1],[-141,0],[-81,0],[-29,0],[-160,0],[-191,1],[-357,4],[-33,0],[-1,0],[-107,1],[-398,6],[-577,2],[-37,0],[-30,1]],[[158,14571],[-6,4918],[0,68],[-1,942],[-1,355],[0,74],[0,54],[0,29],[0,61],[0,568],[-4,3446],[-4,1249],[-1,3263],[0,419],[-1,112],[0,60],[0,92],[0,84],[0,174],[0,1509],[1,1717],[1,1153],[1,120],[0,6],[0,579],[1,1114],[1,1105],[5,883],[18,2668],[21,3109],[-1,148],[-2,1773],[0,628],[-3,2504],[-1,697],[0,230],[-1,654],[-1,1151],[0,110],[0,153],[0,133],[-1,928],[0,87],[0,90],[0,97],[0,438],[0,63],[0,186],[0,129],[-1,285],[-1,1633],[0,320],[-2,915]],[[99990,40298],[3,-6370],[0,-1989],[0,-349],[0,-80],[0,-1109],[0,-816],[0,-310],[0,-404],[0,-155],[0,-215],[0,-642],[0,-391],[0,-28],[0,-2245],[0,-76],[0,-30],[0,-295],[0,-1736],[0,-64],[0,-69],[0,-5409],[1,-1491],[1,-1843]],[[99995,14182],[-70,3],[-127,-3],[-92,0],[-67,-1],[-212,-2],[-154,2],[-124,0],[-27,1],[-8,0],[-161,4],[-82,1],[-135,-1],[-51,-2],[-6,0],[-82,0],[-30,0],[-109,1],[-139,-2],[-145,-1],[-18,-2],[-115,0],[-70,1],[-207,4],[-144,-1],[-451,-4],[-226,-1],[-177,6],[-35,1],[-32,1],[-32,1],[-284,-2],[-93,1],[-179,2],[-144,0],[-106,0],[-26,0],[-189,5],[-92,3],[-115,-4],[-55,1],[-416,-3],[-516,-3],[-176,-2],[-176,0],[-26,1],[-125,-2],[-43,-1],[-79,0],[-21,0],[-91,-2],[-75,-2],[-40,5],[-338,7],[-46,-1],[-17,-1],[-120,1],[-560,1],[-232,1],[-315,0],[-37,1],[-23,1],[-97,1],[-254,5],[-49,0],[-89,0],[-3,709],[0,48],[-1,179],[0,152],[-1,70],[-1,187],[0,25],[5,125],[-3,277],[-1,36],[0,386]],[[91418,16395],[0,361],[-1,362],[1,346],[0,197],[2,186],[-1,362],[1,379],[-1,225],[0,132],[-1,360],[0,182],[0,179],[1,358],[-1,339],[0,42],[0,138],[1,45],[-1,100],[0,64],[-3,369],[-2,239],[0,122],[0,361],[-2,86],[1,281],[0,87],[0,438],[0,110],[2,89],[0,99],[-3,173],[0,313],[2,31],[0,107],[0,285],[1,237],[9,34],[-9,20],[-1,151],[1,153],[0,33],[-2,310],[0,166],[6,120],[0,64],[0,230],[1,192],[0,130],[0,123],[0,77],[0,93],[-3,379],[0,103],[-2,350],[-3,487],[0,3],[0,44],[-1,201],[1,138],[-2,338],[4,45],[-4,253],[-1,65],[1,60],[0,34],[-2,71],[0,78],[2,127],[-2,149],[0,75],[0,3],[0,60],[-3,71],[1,47],[-2,63],[-1,91],[0,62],[0,28],[0,56],[-1,51],[0,50],[0,42],[1,79],[-2,47],[1,51],[0,28],[-1,36],[0,27],[-2,39],[1,55],[-2,61],[0,73],[-3,258],[3,66],[-1,44],[1,45],[1,49],[0,99],[1,128],[4,243],[1,20],[1,28],[-1,57],[-1,34],[0,14],[-1,33],[-1,111],[0,25],[-1,155],[-1,222],[-1,38],[0,59],[-2,267],[-3,347],[3,181],[2,175],[3,302],[1,120],[-2,161],[0,87],[-1,55],[0,13],[-1,68],[0,21],[-2,143],[-1,98],[0,91],[0,29],[-1,46],[-3,175],[1,92],[1,40],[1,796],[1,111],[0,150],[1,102],[0,132],[-1,191],[-2,337],[0,185],[0,333],[0,97],[0,6],[0,35],[-1,152],[0,126],[0,90],[-2,237],[1,165],[1,389],[0,80],[0,36],[0,23],[0,34],[-2,176],[0,52],[-1,546],[-1,68],[0,95],[0,156],[-1,131],[-2,694],[0,85]],[[91418,16395],[-879,-7],[-194,-1],[-190,0],[-124,0],[-543,9],[-34,0],[-101,0],[-140,2],[-156,3],[-145,3],[-79,2],[-41,0],[-65,2],[-18,1],[-6,0],[-17,1],[-50,1],[-348,3],[-42,1],[-129,1],[-275,7],[-494,12],[-207,5],[-99,3],[-117,2],[-171,4],[-78,2],[-32,1],[-17,0],[-166,3],[-227,7],[-2,0],[-21,0],[-21,1],[-32,0],[-47,1],[-168,3],[-12,1],[-4,0],[-14,0],[-80,2],[-23,0],[-41,1],[-25,0],[-75,2],[-80,-2],[-8,0],[-105,-1],[-425,8],[-213,4],[-28,-2],[-39,0],[-94,-4],[-276,-5],[-73,-1],[-694,4],[-32,0],[-353,6],[-150,2],[-209,0],[-57,1],[-24,0],[-20,1],[-30,1],[-20,-1],[-18,-2],[-29,1],[-54,3],[-121,0],[-20,0]],[[82497,16486],[0,35],[0,156],[1,75],[2,155],[-1,126],[-3,296],[0,262],[-6,391],[1,173],[0,67],[0,78],[-5,314],[103,1],[-2,198],[0,77],[0,55],[0,74],[0,424],[2,753],[0,9],[1,58],[0,30],[0,186],[1,285],[0,2],[0,64],[1,294],[0,141],[1,72],[0,89],[0,40],[1,339],[0,70],[-3,55],[0,71],[0,39],[0,424],[1,27],[1,75],[-7,1067],[1,89],[0,7],[0,346],[0,258],[0,189],[0,31],[2,147],[-1,33],[-11,259],[0,2],[-2,52],[-8,180],[-1,220],[-1,180],[-1,298],[-1,309],[0,26],[0,74],[0,79],[0,41],[0,28],[0,28],[-1,173],[0,277],[-1,303],[-106,2],[0,30],[-1,163],[0,55],[-1,357],[0,21],[-1,169],[-1,49],[0,55],[0,57],[1,76],[0,213],[0,47],[0,46],[0,129],[0,79],[0,237],[0,723],[0,9],[0,51],[0,70],[0,4],[0,362],[1,214],[0,100],[0,86],[0,67],[0,85],[0,132],[4,230],[-2,34],[2,68],[1,53],[0,34],[-1,117],[0,97],[-1,83],[0,65],[0,43],[-3,415],[-1,218],[-1,31],[-2,83],[1,292],[0,14],[1,237],[-3,236],[-2,119],[-4,285],[1,160],[0,2],[1,174],[-19,357],[-7,139],[0,604],[0,101],[0,49],[0,1],[-1,135],[0,129],[-1,107],[0,59],[0,83]],[[71145,35850],[5,-194],[1,-99],[3,-224],[1,-145],[-4,-475],[-1,-62],[-1,-77],[-1,-69],[0,-27],[0,-32],[-1,-49],[1,-40],[0,-29],[-2,-560],[0,-37],[-1,-260],[0,-259],[-1,-54],[0,-248],[-3,-952],[0,-112],[0,-35],[0,-37],[-1,-179],[0,-7],[-1,-293],[-5,-467],[-1,-427],[-2,-413],[-2,-421],[0,-108],[0,-8],[0,-30],[0,-1],[-1,-103],[3,-480],[-1,-8],[0,-23],[-3,-55],[0,-160],[-3,-304],[0,-4],[-1,-40],[0,-80],[1,-588],[-1,-367],[15,-785],[0,-10],[1,-282],[0,-1],[0,-49],[0,-4],[0,-124],[2,-539],[1,-368],[3,-199],[0,-29],[3,-38],[-4,-28],[2,-116],[3,-156],[-4,-65],[2,-61],[-2,-335],[1,-185],[0,-94],[4,-27],[-5,-29],[0,-62],[1,-46],[0,-28],[5,-121],[-3,-25],[-3,-73],[3,-70],[0,-2],[-1,-101],[0,-25],[-1,-363],[1,-28],[0,-83],[0,-50],[1,-31],[2,-68],[-1,-143],[0,-436],[-1,-251],[0,-201],[0,-215],[0,-6],[0,-74],[0,-295],[-1,-48],[0,-85],[0,-162],[0,-163],[3,-42],[2,-972],[0,-3],[0,-58],[-3,-541],[0,-189],[0,-100],[1,-89],[1,-179],[2,-299],[0,-127],[1,-99],[0,-38],[0,-10],[1,-118],[2,-244],[0,-34],[1,-63],[2,-283],[0,-75],[0,-3],[1,-56],[0,-83],[2,-288],[2,-400],[1,-288],[0,-52],[1,-72],[0,-62],[1,-137],[0,-71],[0,-120],[0,-58],[1,-109],[0,-44],[0,-149],[1,-221],[0,-2],[1,-262],[0,-30],[1,-385],[0,-257],[1,-126],[0,-187],[0,-36],[0,-1],[1,-51],[0,-305],[1,-88],[0,-63],[0,-4],[0,-258],[0,-45],[0,-83],[1,-99],[2,-164],[0,-82],[2,-101],[0,-7],[6,-414],[1,-33],[3,-177],[3,-216],[1,-73],[3,-109],[5,-312],[1,-51],[2,-54],[4,-117],[0,-27],[4,-212],[0,-58],[3,-202],[-483,-1],[-333,-16],[-374,-5],[-293,-4],[-241,-2],[-28,0],[-14,0],[-228,-3],[-1,31],[-114,-2],[-491,-8],[-550,7],[-15,0],[-16,0],[-173,3],[-23,0],[-110,1],[-12,0],[-86,1],[-48,1],[0,-30],[0,-4],[2,-278],[2,-191],[-3,-106],[0,-38],[1,-639],[1,-67],[0,-119],[0,-33],[0,-85],[2,-469],[0,-204],[0,-291],[0,-2],[0,-76],[-1,-194],[-1,-550],[0,-37],[1,-142],[1,-65],[-4,-166],[-1,-91],[0,-162],[0,-4],[1,-220],[3,-499],[0,-26],[0,-53],[1,-424],[-5,-245],[-2,-64],[1,-545],[-3,-272],[-2,-304],[0,-42],[1,-46],[2,-297],[1,-75],[3,-535],[2,-266],[3,-379],[0,-60],[2,-142],[4,-309],[0,-26],[2,-194],[1,-75],[3,-261],[1,-74],[1,-96],[1,-127],[19,-176]],[[67623,90],[-361,6],[-16,1],[-415,33],[-394,12],[-155,5],[-941,12],[-389,1],[-272,1],[-844,3],[-3277,12],[-278,1],[-334,2],[-18,0],[-3302,3],[-51,0],[-164,0],[-225,0],[-1363,2],[-26,0],[-283,0],[-804,1],[-85,0],[-95,0],[-151,0],[-25,0],[-484,-1],[-18,0],[-616,-2],[-740,-2],[-1168,-3],[-1509,-4],[-746,-1],[-211,-1],[-47,0],[-34,0],[-67,0],[-40,0],[-1299,-4],[-1394,-3],[-145,-1],[-32,0]],[[44805,163],[0,50],[0,7],[0,123],[0,1],[1,72],[0,1],[2,413],[0,78],[2,473],[1,125],[0,7],[2,467],[0,123],[1,215],[1,188],[1,292],[1,430],[6,2620],[0,497],[0,244],[1,413],[0,2],[0,38],[0,145],[0,528],[1,758],[0,79],[0,137],[0,157],[0,78],[1,310],[0,5],[-1,223],[0,219],[-1,368],[-120,0],[-62,1],[0,92],[0,228],[1,862],[0,236],[0,142],[0,274],[0,9],[0,20],[0,575],[0,30],[-3,61],[0,108],[1,42],[1,368],[0,912],[-1,101],[1,127],[0,246],[0,288],[0,26],[0,28],[-1,650],[1,146],[-1,75],[0,38],[0,51],[1,424],[1,202],[1,148],[387,-7],[189,-6],[196,1],[101,-3],[226,-3],[17,0],[100,-1],[14,-1],[54,0],[371,-3],[108,-2],[389,-7],[19,-4],[37,0],[349,6],[30,-1],[54,-1],[217,-2],[423,-2],[16,0],[18,0],[334,-3],[34,-1],[136,-1],[522,-4],[21,-1],[48,0],[176,-1],[298,-1],[20,-1],[192,0],[77,-1],[78,0],[14,0],[3,0],[313,-1],[115,-1],[300,-1],[-1,346],[-2,691],[0,294],[-1,391],[0,2],[0,140],[-1,207],[65,0],[1,84],[0,19],[-1,132],[1,44],[0,30],[0,250],[0,31],[0,1],[1,66],[0,3],[0,438],[0,175],[0,47],[0,2],[1,541],[0,164],[0,115],[0,48],[0,64],[1,55],[1,182],[1,59],[1,402],[1,400],[1,733],[3,242],[1,314],[1,486],[1,29],[0,31],[0,17],[0,82],[0,3],[0,67],[0,288],[1,69],[0,58],[1,33],[0,27],[1,257],[0,198],[0,110],[0,73],[0,38],[3,349],[0,111],[2,605],[1,366],[0,67],[0,271],[0,207],[0,50],[0,12],[0,28],[0,90],[-146,0],[-118,0],[0,172],[-1,266],[0,30],[0,47],[0,32],[0,30],[-1,118],[0,28],[0,140],[0,60],[-1,66],[0,130],[-3,408],[-1,279],[0,32],[0,211],[0,48],[0,61],[0,62],[0,25],[0,214],[0,196],[0,69],[0,166],[0,41],[0,136],[0,27],[-1,155],[0,158],[0,153],[0,61],[0,73],[0,221],[-1,95],[0,30],[2,142],[1,125],[0,27]],[[82497,16486],[-6,-176],[-5,-142],[-1,-41],[5,-431],[1,-59],[1,-805],[0,-201],[0,-63],[0,-27],[1,-311],[0,-317],[0,-49],[0,-44],[0,-42],[1,-273],[0,-80],[1,-482],[0,-364],[-2,-251],[0,-398],[0,-52],[1,-527],[1,-224],[0,-165],[1,-29],[4,-118],[1,-51],[1,-197],[1,-102],[0,-1],[2,-109],[2,-250],[1,-47],[-2,-85],[-37,-2],[-3,-382],[-1,-127],[0,-263],[-1,-192],[0,-43],[0,-89],[-1,-418],[-1,-103],[0,-153],[0,-74],[2,-179],[2,-196],[1,-172],[1,-148],[1,-118],[1,-80],[0,-105],[0,-29],[2,-238],[0,-160],[1,-4],[1,-228],[-1,-125],[-4,-227],[0,-133],[0,-11],[0,-25],[1,-61],[1,-269],[2,-503],[1,-253],[0,-96],[0,-30],[1,-50],[2,-144],[1,-69],[3,-264],[3,-231],[2,-149],[1,-78],[0,-48],[0,-39],[0,-69],[0,-82],[0,-163],[0,-87],[0,-35],[1,-215],[0,-49],[0,-22],[0,-83],[0,-200],[0,-7],[1,-346],[0,-167],[0,-145],[0,-227],[0,-172],[0,-1],[1,-346],[27,2],[0,-97],[0,-275],[0,-55],[0,-350],[0,-3],[0,-122],[0,-194],[-3,-86]],[[82514,69],[-406,0],[-840,-1],[-679,0],[-911,-1],[-2732,-2],[-1389,0],[-1479,-1],[-2016,-2],[-50,0],[-2540,-1],[-167,2],[-753,12],[-929,15]],[[44805,163],[-68,0],[-1096,-5],[-117,-1],[-6335,-28],[-1156,-5],[-1734,-8],[-111,-1],[-1685,1],[-102,0],[-352,0],[-3132,-14],[-268,27],[-2555,-14],[-2889,-16],[-1579,-9],[-155,-1],[-761,-4],[-502,-3],[-148,-1],[-105,0],[-239,-1],[-2366,-13],[-2272,-13],[-326,0],[-322,0],[-34,0]],[[14396,54],[0,57],[0,76],[0,31],[0,416],[-1,62],[0,244],[0,11],[-1,163],[1,149],[-1,138],[0,217],[0,520],[0,47],[0,67],[0,127],[0,335],[0,104],[0,410],[-8,337],[4,142],[0,9],[0,43],[0,32],[2,235],[0,144],[0,26],[-1,90],[-2,406],[-1,575],[1,272],[0,81],[0,154],[0,52],[-1,430],[3,89],[4,319],[0,40],[0,3],[-5,362],[0,3],[0,62],[0,179],[0,149],[0,150],[0,194],[0,137],[1,88],[0,308],[-1,388],[0,30],[0,40],[-1,305],[0,51],[0,76],[-1,233],[1,41],[0,74],[1,141],[1,422],[4,29],[-1,40],[-1,221],[-1,220],[-1,107],[0,163],[0,47],[0,91],[0,93],[0,189],[-1,29],[0,70],[0,260],[0,36],[0,197],[1,64],[0,31],[0,327],[1,109],[0,116],[0,49],[1,175],[3,611],[1,26],[1,152],[1,188],[0,146],[1,34],[2,391],[0,45],[0,1],[1,113]],[[99995,14182],[4,-4142],[0,-123],[-1,-888],[-1,-442],[-6,-3542],[0,-220],[0,-71],[-1,-117],[-2,-1261],[-5,-3229],[-3727,-19],[-3,0],[-576,-4],[-1387,-9],[-4522,-31],[-52,0],[-1371,-10],[-427,-3],[-121,0],[-52,-1],[-397,-2],[-71,0],[-1875,0],[-2510,1],[-274,0],[-104,0]],[[14396,54],[0,-1],[-1571,-22],[-11,0],[-415,-4],[-1403,-14],[-1057,-10],[-263,-3],[-72,0],[-1349,9],[-1491,10],[-1245,8],[-1184,7],[-1343,9],[-261,2],[-96,0],[-1332,9],[-895,6],[-263,1],[0,240],[3,2782],[1,1108],[2,2102],[0,73],[0,23],[0,46],[3,3955],[2,2724],[2,1457]]],"transform":{"scale":[0.00007004696075960824,0.00004010444168441798],"translate":[-111.05687488399991,40.99549316200006]}} diff --git a/src/js/config/mapconfig/mapfiles/nyc/nyc.json b/src/js/config/mapconfig/mapfiles/nyc/nyc.json new file mode 100644 index 00000000..72980d5e --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/nyc/nyc.json @@ -0,0 +1 @@ +{"type":"Topology","transform":{"scale":[0.000001614549019542596,0.0000012970123413746257],"translate":[-74.2555928790469,40.49612360054]},"arcs":[[[127022,54207],[23,-4],[104,0],[110,-9],[88,-8],[413,-391],[50,-405],[-489,-34],[-445,438],[-2,52],[9,29],[-2,32],[-42,14],[-43,23],[-20,10],[-5,30],[19,35],[19,8],[11,6],[43,2],[35,-4],[13,18],[3,15],[0,26],[2,31],[-11,38],[-23,27],[-31,28],[-34,29],[-28,14],[-31,32],[-22,23],[-13,14],[-14,14],[-16,18],[-10,30],[-12,17],[1,18],[1,15],[14,12],[82,-32],[41,-41],[57,-45],[57,-27],[32,-32],[47,-52],[19,-14]],[[125392,62904],[-570,-452],[-519,514],[127,1472],[-98,12],[4,183],[718,465],[467,-498],[-129,-1696]],[[59543,112052],[-181,-24],[-143,23],[-106,37],[-108,63],[-90,52],[-70,17],[-70,18],[-51,38],[-47,12],[-56,25],[-50,10],[-54,28],[-18,58],[-23,74],[1,96],[-10,96],[-8,79],[3,235],[-18,114],[-15,101],[-57,373],[-28,187],[-28,181],[-23,153],[9,149],[2151,-334],[10,-38],[36,-49],[38,-40],[19,-27],[28,-24],[28,-44],[64,-69],[75,-81],[45,-59],[-78,-53],[-91,-19],[-76,-49],[-54,-49],[-47,-72],[-36,-94],[-12,-84],[-23,-53],[-17,-44],[-40,-24],[-48,-29],[-79,-17],[-50,-2],[-41,-32],[-16,-53],[-53,-95],[-19,-89],[-32,-144],[-41,-189],[-241,-83],[-74,-73],[-85,-83]],[[107385,117319],[55,-1],[48,23],[112,50],[132,40],[143,62],[41,-11],[248,-110],[141,-57],[130,-22],[438,106],[358,-152],[147,-34],[1182,-726],[58,4],[102,-96],[199,-87],[185,-188],[134,-133],[424,-493],[529,-652],[233,13],[74,84],[53,-35],[174,-114],[58,65],[-162,177],[-26,-21],[-17,20],[31,34],[-34,40],[-14,13],[22,14],[299,262],[57,-60],[-149,-120],[42,-47],[-168,-141],[140,-152],[81,-57],[-10,-10],[69,-44],[112,139],[20,-10],[-110,-145],[118,-81],[-27,-24],[-222,161],[-8,-12],[95,-65],[-45,-51],[139,-104],[121,115],[29,-16],[50,51],[131,-92],[-72,-112],[7,-6],[59,76],[20,-13],[-30,-34],[8,-6],[17,20],[29,-18],[-31,-40],[-32,20],[7,5],[-4,3],[-27,-26],[70,-47],[6,3],[7,-5],[-33,-21],[-8,5],[9,8],[-87,57],[-41,-53],[28,-22],[-23,-24],[52,-39],[228,122],[386,326],[-6,7],[18,14],[18,-13],[-15,-22],[-3,7],[-385,-336],[33,-24],[59,27],[88,-131],[-58,-37],[9,-20],[-83,-38],[-37,-17],[66,-120],[129,54],[9,-8],[63,24],[64,-146],[-70,-29],[5,-13],[-47,-24],[-6,7],[-68,-27],[35,-92],[59,12],[70,15],[14,-34],[75,11],[37,-151],[-24,-10],[19,-91],[149,29],[10,-32],[-93,-21],[11,-53],[-18,-4],[12,-48],[142,30],[-3,10],[170,34],[7,-19],[13,1],[9,-15],[-19,-9],[5,-19],[-185,-39],[-9,29],[-106,-20],[17,-60],[69,15],[-2,7],[102,23],[8,-35],[-230,-59],[15,-247],[-104,-6],[-2,-93],[-33,0],[-1,89],[-298,-63],[47,-193],[1075,176],[27,-128],[-1801,-263],[58,-256],[1795,273],[32,-154],[-1792,-286],[122,-550],[575,56],[-12,13],[109,13],[-4,72],[1111,120],[22,-161],[-1111,-111],[0,-4],[-1,-4],[-1,-4],[-3,-4],[-3,-3],[-3,-3],[-4,-2],[-4,-2],[-5,-1],[-4,0],[-5,0],[-4,1],[0,8],[-628,-76],[45,-212],[-186,-12],[-8,-1460],[36,-22],[64,1],[2,-116],[-56,-12],[1,-13],[51,4],[6,-29],[31,2],[49,5],[45,0],[32,-7],[35,-32],[15,-26],[4,-33],[-17,-25],[137,15],[6,-64],[-141,-20],[16,-150],[5,-54],[-564,-66],[17,-102],[-49,-10],[29,-315],[1826,184],[28,-239],[-20,-23],[-1789,-183],[26,-219],[83,7],[1,10],[451,47],[3,-13],[67,6],[0,10],[181,22],[6,-61],[-196,-23],[0,9],[-59,-2],[1,-12],[-197,-23],[-4,14],[-45,-7],[0,-12],[-199,-22],[-5,16],[-52,-6],[-27,-17],[198,-1340],[128,-873],[-307,-1240],[168,-1054],[45,-294],[125,-49],[2949,-1124],[-68,-192],[-2961,1124],[-10,-31],[257,-1687],[6,-16],[28,-30],[5,-23],[-3,-26],[35,-11],[66,-370],[-260,-37],[-45,-42],[2,-93],[47,-42],[85,-500],[194,-1246],[632,-1169],[11,-27],[43,-106],[53,-98],[45,-65],[44,-40],[58,-26],[22,-8],[18,-8],[24,-19],[83,-152],[12,-40],[1,-15],[-1,-22],[8,-22],[30,-37],[6,-15],[30,-74],[34,-31],[14,-21],[21,-34],[34,-71],[-1,-13],[25,-59],[14,-17],[33,-37],[50,-88],[4,-16],[0,-20],[9,-39],[23,-44],[28,-28],[16,0],[8,3],[15,9],[10,5],[14,-26],[0,-8],[-6,-2],[-9,-3],[5,-29],[12,0],[12,-25],[12,4],[42,-43],[-8,-16],[18,-30],[181,-93],[155,-143],[-7,-8],[289,-259],[226,-202],[14,0],[721,-646],[319,-285],[21,-54],[101,-92],[44,49],[2,1],[3,-3],[281,309],[32,-33],[-290,-325],[-20,-23],[131,-110],[387,426],[79,-55],[-392,-449],[-374,-427],[165,-150],[227,249],[218,-184],[144,116],[203,-167],[4,4],[105,-95],[374,365],[62,-57],[-521,-510],[410,-345],[263,261],[64,-56],[-259,-262],[80,-68],[178,-26],[26,-7],[25,-12],[22,-15],[19,-19],[16,-21],[4,-33],[-2,-33],[-8,-32],[-13,-31],[50,-48],[78,-75],[417,-534],[4,-6],[649,-738],[243,-315],[160,-399],[88,-208],[143,-431],[44,11],[55,-184],[-16,-177],[39,-210],[67,-158],[103,-153],[63,35],[90,52],[7,-13],[46,27],[-2,4],[95,50],[-8,31],[-12,50],[-16,62],[-5,22],[-19,76],[-6,23],[-19,76],[-6,24],[-10,41],[-15,58],[-3,14],[26,4],[-7,28],[-112,18],[1,12],[122,-14],[142,-561],[-164,-88],[8,-11],[-156,-84],[121,8],[109,-62],[228,-27],[19,-8],[17,-10],[15,-13],[13,-15],[10,-17],[47,-52],[42,-56],[38,-59],[32,-61],[27,-64],[56,-78],[63,-74],[13,-42],[-17,-49],[-73,-38],[-48,-52],[1,-64],[22,-81],[314,-451],[61,-29],[2,-65],[93,-122],[350,-341],[239,-281],[132,-169],[18,-83],[63,-124],[21,-77],[20,-81],[67,-164],[53,-121],[14,-78],[56,-187],[102,-238],[54,-45],[246,-315],[303,-229],[55,-1],[33,9],[57,35],[79,148],[106,-54],[-7,-12],[-21,11],[-11,-20],[20,-10],[-23,-40],[-30,15],[-42,-75],[-6,-13],[2,-55],[7,-29],[9,-28],[20,-18],[38,-31],[774,-272],[57,-238],[69,-282],[-41,-38],[-215,-196],[105,-312],[43,-130],[16,-65],[37,-99],[15,-111],[49,-187],[15,-51],[17,-48],[208,-1214],[29,-64],[24,-67],[20,-67],[15,-69],[9,-70],[5,-70],[4,-50],[-2,-50],[-7,-50],[-12,-49],[-18,-48],[-138,-155],[-61,-237],[-6,-35],[-1,-35],[4,-35],[10,-34],[134,-186],[113,-93],[374,-224],[93,-14],[15,-21],[1,-37],[-11,-22],[-14,-10],[-14,-11],[-21,-4],[-30,3],[-34,7],[-40,6],[-71,60],[-68,31],[-48,15],[-48,-5],[-24,-17],[-70,-51],[-46,-37],[-770,-703],[18,-32],[-15,-13],[-85,-4],[-1448,-1564],[-237,-256],[-1569,-1917],[-12,-46],[65,-108],[-13,-5],[-64,102],[-49,-42],[-439,-309],[-486,-512],[-504,-532],[-1074,-1402],[-710,-938],[0,-63],[304,-366],[113,-128],[-31,-22],[-110,126],[-74,54],[-44,12],[-719,-680],[-795,-672],[-1309,-1510],[-111,-147],[-182,-217],[-250,-249],[-465,-616],[-301,-577],[-27,-205],[556,-368],[-39,-50],[-501,309],[-192,-116],[-977,-923],[-297,-310],[-656,-740],[-63,-62],[40,-51],[66,-55],[10,-6],[11,-5],[10,-4],[11,-4],[11,-4],[11,-3],[11,-3],[9,-1],[8,-2],[8,-3],[8,-3],[8,-3],[8,-4],[7,-4],[7,-4],[7,-5],[6,-6],[7,-5],[5,-6],[8,-12],[9,-11],[8,-10],[10,-11],[9,-10],[10,-10],[10,-10],[11,-9],[9,-7],[9,-6],[10,-6],[9,-5],[11,-5],[10,-5],[10,-4],[11,-4],[11,-3],[11,-3],[9,-2],[10,-2],[9,-3],[9,-3],[8,-3],[9,-4],[8,-4],[8,-5],[8,-5],[7,-7],[8,-6],[7,-7],[6,-7],[7,-7],[6,-8],[5,-8],[6,-8],[4,-8],[9,-8],[8,-9],[9,-8],[9,-7],[9,-7],[10,-7],[10,-7],[11,-6],[10,-5],[12,-6],[12,-5],[13,-5],[12,-4],[13,-3],[13,-4],[13,-2],[13,-3],[8,-4],[8,-4],[8,-5],[7,-5],[7,-5],[7,-6],[6,-7],[6,-6],[6,-7],[5,-7],[7,-10],[7,-8],[7,-9],[8,-8],[8,-8],[8,-8],[9,-7],[9,-7],[9,-7],[9,-6],[8,-5],[8,-5],[8,-4],[8,-3],[9,-4],[10,11],[9,12],[8,11],[9,12],[7,12],[3,2],[4,2],[3,2],[4,1],[4,0],[3,0],[4,0],[4,-1],[3,-1],[4,-2],[3,-2],[3,-3],[2,-2],[2,-3],[2,-4],[1,-3],[0,-4],[1,-3],[-1,-4],[0,-3],[-6,-12],[-7,-11],[-7,-11],[-7,-10],[0,-8],[2,-7],[1,-8],[1,-4],[1,-5],[0,-5],[-1,-5],[0,-2],[-1,-2],[-1,-5],[-2,-4],[-2,-5],[-3,-4],[-3,-3],[-4,-4],[-4,-3],[-4,-2],[-4,-3],[-5,-2],[-10,-1],[-10,-2],[-9,-3],[-11,-13],[-12,-13],[-12,-13],[-3,-2],[-4,-2],[-3,-1],[-4,0],[-4,0],[-4,0],[-4,1],[-4,1],[-3,2],[-4,2],[-2,3],[-3,3],[-2,3],[-2,3],[-1,4],[-1,3],[0,4],[0,4],[6,11],[6,11],[6,10],[7,10],[8,10],[1,2],[6,8],[9,9],[-22,15],[-22,15],[-22,15],[-22,14],[-38,24],[-38,24],[-37,24],[-37,25],[-37,25],[-74,50],[-75,49],[-75,51],[-4,3],[-47,32],[-47,28],[-53,35],[-48,34],[-48,27],[-68,45],[-169,107],[-186,-275],[-257,-381],[349,-240],[-69,-85],[-415,275],[-58,-55],[-59,-36],[-26,-17],[-8,-15],[-18,-15],[-30,-23],[-18,-11],[-20,-21],[-6,-15],[6,-4],[58,-38],[9,-10],[-4,-7],[-11,0],[-70,40],[-23,13],[-17,-5],[-15,-16],[-14,-22],[-9,-22],[-18,-26],[-24,-24],[-62,-67],[-99,-73],[-21,-44],[110,-160],[-6,-4],[-93,115],[-25,14],[-270,-194],[-574,-630],[-293,-350],[-303,-262],[362,-455],[-45,-30],[-362,451],[-522,-345],[-201,-154],[-250,-224],[-267,-285],[-247,-294],[-353,-398],[-177,-210],[-256,-281],[-368,-319],[-676,-689],[-781,-910],[-369,-513],[-226,-499],[446,-324],[-14,-25],[-641,423],[-60,-46],[-134,-132],[-227,-198],[-264,-252],[-103,-152],[-421,-691],[38,-31],[-67,-91],[-454,281],[-351,-228],[-279,-267],[-148,-178],[-1741,-2718],[33,-135],[-46,-58],[-644,341],[-81,-19],[-113,4],[-161,-181],[12,-77],[-5,-34],[-25,-19],[-30,-14],[-39,-8],[-39,2],[-144,-106],[-107,-128],[-199,-258],[-159,-284],[-69,-187],[-27,-107],[-39,-64],[-42,-51],[-49,-53],[-45,-80],[-70,-101],[-110,-209],[-180,-342],[-47,-103],[-9,-33],[-9,-20],[-31,-42],[-47,-15],[-48,-44],[-47,-222],[-11,-166],[43,-38],[83,-62],[55,-14],[103,-50],[22,-26],[-15,-26],[-17,-15],[-52,6],[-427,267],[-23,15],[-29,13],[-36,0],[-43,-28],[-57,-29],[-105,-70],[-144,-125],[19,-71],[-52,-31],[-209,136],[-131,-54],[-175,-154],[-364,-424],[-275,-509],[-222,-661],[-151,-452],[3,-210],[289,-195],[18,-51],[-5,-33],[-32,-35],[-43,-3],[-728,463],[-278,-177],[-470,-607],[-497,-769],[-266,-682],[141,-120],[11,-42],[-44,-7],[-111,87],[-583,394],[-243,164],[-3,90],[15,42],[5,28],[-7,37],[-43,37],[-51,23],[-70,1],[-230,6],[-186,-37],[-209,-132],[-529,-554],[-345,-415],[-96,-107],[-121,-156],[-248,-334],[-271,-346],[-428,-759],[-141,-248],[-287,-521],[-694,-1257],[-80,-51],[-58,-29],[-231,226],[-15,-3],[-19,-4],[-192,-35],[-77,56],[-536,-73],[-145,-79],[-160,-228],[-23,-22],[-27,-18],[-29,-13],[-32,-8],[-32,-3],[-33,2],[-32,7],[-30,12],[-24,42],[-28,39],[-32,36],[-35,34],[-39,30],[-41,26],[-44,22],[-45,19],[-47,14],[-48,9],[-49,3],[-49,-2],[-48,-6],[-47,-12],[-136,-93],[-132,-97],[-63,-46],[-67,-42],[-70,-37],[-72,-33],[-74,-28],[-77,-23],[-77,-17],[-79,-13],[-80,-7],[-80,-75],[-77,-77],[-73,-81],[-70,-84],[-66,-86],[-62,-88],[-59,-91],[-54,-94],[-48,-96],[-52,-95],[-56,-93],[-59,-90],[-51,-73],[-53,-72],[-35,-50],[-40,-48],[-43,-45],[-47,-41],[-51,-37],[-53,-33],[-56,-29],[-59,-25],[-60,-20],[-62,-15],[-63,-10],[-36,-10],[-38,-6],[-37,-2],[-42,2],[-41,7],[-83,16],[-83,10],[-84,4],[-84,-1],[-83,-7],[-83,-12],[-82,-18],[-80,-22],[-79,-29],[-76,-33],[-74,-38],[-70,-43],[-177,-158],[-1081,-1348],[-933,-1391],[-391,-605],[-769,-1390],[-1913,-3225],[-1766,-2332],[-1060,-945],[-566,-512],[-445,-262],[-234,354],[-95,-50],[-307,-6],[-66,2],[-65,6],[-65,10],[-64,15],[-63,19],[-61,24],[-60,28],[-57,31],[-54,36],[-33,55],[-28,57],[-23,59],[-19,61],[-13,62],[-8,63],[-3,63],[2,63],[8,63],[13,62],[1,94],[-3,94],[-9,94],[-13,93],[-19,93],[-23,91],[-28,90],[-33,89],[-661,1283],[-211,641],[-8,88],[-2,88],[3,88],[8,88],[15,87],[19,86],[25,85],[14,59],[18,58],[24,56],[28,55],[33,52],[38,49],[42,46],[27,14],[30,12],[31,7],[32,4],[32,1],[291,-73],[127,-31],[129,-27],[130,-22],[130,-18],[131,-13],[131,-8],[132,-4],[1819,29],[104,22],[103,27],[101,30],[101,35],[98,39],[97,42],[91,56],[88,59],[86,62],[84,66],[80,69],[83,84],[78,88],[75,91],[-112,39],[-5,-9],[-104,35],[9,25],[100,-35],[7,-3],[114,-39],[25,29],[-125,47],[7,15],[44,-17],[9,35],[83,-59],[1082,1196],[-55,47],[-30,-33],[7,-5],[-119,-134],[-8,6],[107,118],[-4,3],[-10,9],[52,54],[-43,34],[-230,193],[-50,43],[-185,-197],[52,-43],[8,-6],[47,-40],[7,-6],[48,-41],[7,-5],[46,-40],[43,48],[7,-6],[-8,-11],[-15,-15],[-22,-23],[-5,-6],[-32,-33],[-6,-7],[-12,-10],[-7,6],[45,46],[-45,38],[-108,89],[-4,3],[-7,6],[-53,42],[-50,-53],[-129,-146],[45,-43],[219,-184],[47,45],[6,-5],[-14,-15],[-27,-27],[-7,-7],[-6,-6],[-30,-32],[-7,-6],[-13,-13],[-8,7],[46,46],[-42,39],[-28,23],[-27,23],[-64,53],[-49,41],[-7,5],[-52,44],[-187,-197],[53,-48],[61,-52],[18,-15],[38,-32],[29,-25],[25,-21],[44,-38],[46,50],[7,-5],[-14,-16],[-4,-4],[-30,-34],[-52,-57],[-7,5],[44,48],[-45,38],[-173,146],[-53,44],[-185,-196],[49,-42],[9,-8],[42,-35],[9,-8],[21,-17],[34,-30],[50,-42],[7,-6],[44,-37],[49,46],[6,-4],[-15,-16],[-20,-20],[-17,-16],[-6,-5],[-10,-10],[-25,-24],[-17,-15],[-5,5],[47,46],[-45,38],[-7,6],[-50,42],[-5,5],[-48,41],[-6,5],[-47,39],[-8,8],[-48,41],[-185,-196],[53,-46],[7,-6],[48,-41],[6,-5],[50,-41],[5,-5],[47,-40],[8,-6],[47,-39],[43,50],[7,-5],[-11,-14],[-4,-5],[-31,-34],[-40,-44],[-14,-15],[-5,5],[44,48],[-46,38],[-152,128],[-15,12],[-7,6],[-51,45],[-168,-178],[-5,-5],[15,-12],[-88,-96],[-33,27],[164,169],[239,254],[269,288],[192,205],[163,173],[164,175],[471,503],[80,83],[260,284],[339,373],[3,-3],[3,4],[-7,7],[70,83],[19,-16],[-68,-83],[-6,3],[-3,-4],[4,-4],[-94,-100],[52,-43],[121,-97],[51,-40],[51,-42],[44,49],[6,-5],[-100,-112],[-8,7],[46,49],[-208,167],[-6,4],[-7,6],[-54,42],[-182,-199],[57,-48],[170,-150],[44,-39],[45,48],[6,-6],[-104,-107],[-5,5],[45,48],[-212,187],[-58,50],[-184,-202],[54,-44],[7,-7],[47,-42],[7,-5],[46,-40],[10,-9],[37,-33],[16,-14],[43,-37],[46,47],[7,-7],[-13,-13],[-5,-6],[-30,-32],[-30,-33],[-9,-10],[-7,-6],[-7,-9],[-7,6],[44,49],[-142,124],[-12,10],[-31,28],[-22,19],[-8,6],[-54,45],[-182,-198],[50,-43],[24,-21],[30,-25],[8,-6],[49,-41],[8,-6],[47,-40],[53,-44],[44,47],[6,-5],[-10,-14],[-6,-6],[-30,-32],[-5,-6],[-3,-2],[-32,-34],[-14,-16],[-7,6],[45,49],[-44,37],[-174,146],[-52,41],[-186,-198],[52,-42],[6,-4],[48,-42],[6,-5],[50,-42],[7,-6],[47,-40],[7,-6],[46,-39],[46,49],[6,-6],[-12,-14],[-6,-7],[-29,-31],[-7,-6],[-13,-15],[-23,-24],[-11,-12],[-7,6],[44,48],[-47,38],[-6,5],[-50,42],[-117,98],[-51,42],[-184,-197],[51,-44],[7,-6],[49,-41],[6,-5],[49,-41],[6,-5],[49,-42],[6,-5],[28,-24],[27,-22],[40,-34],[16,-13],[56,-46],[185,204],[1270,1404],[17,-17],[108,108],[103,112],[100,116],[94,118],[91,122],[62,111],[57,112],[53,115],[48,117],[43,118],[37,120],[26,104],[20,105],[14,106],[8,107],[3,107],[-3,107],[-8,106],[-23,127],[-28,126],[-33,125],[-37,124],[-43,122],[-18,-5],[-20,37],[-103,-44],[19,-39],[-12,-5],[-26,50],[147,64],[77,33],[-39,85],[-76,-33],[-147,-63],[-25,51],[12,5],[19,-37],[100,42],[-80,154],[-85,152],[-89,149],[-95,147],[-98,144],[-104,141],[-94,134],[-98,132],[-102,128],[-107,126],[-57,73],[-60,71],[-64,68],[-68,65],[-70,62],[-74,58],[-76,55],[-91,61],[-94,56],[-96,51],[-99,48],[-101,43],[-134,59],[-137,55],[-138,51],[-140,46],[-141,43],[-356,88],[-103,25],[-105,21],[-106,15],[-107,10],[-107,5],[-24,2],[-107,-1],[-111,-7],[-110,-11],[-111,-14],[-109,-19],[-109,-22],[-140,-30],[-138,-34],[-138,-37],[-137,-42],[-135,-45],[-133,-50],[-344,-153],[-49,-138],[20,-76],[-36,-47],[-42,7],[-137,36],[-103,4],[-57,-14],[34,-48],[-9,-8],[-45,52],[-22,-16],[43,-52],[-73,-55],[15,-15],[8,1],[10,-11],[30,-35],[10,-11],[32,-37],[10,-11],[31,-35],[11,-13],[31,-35],[11,-13],[30,-34],[11,-13],[30,-35],[12,-13],[28,-33],[12,-13],[28,-32],[17,-19],[37,-43],[17,-19],[36,-41],[113,-129],[78,59],[12,-16],[-77,-58],[-90,-69],[-11,15],[73,56],[-50,60],[-43,49],[-3,3],[-104,120],[-3,3],[-346,390],[-1,7],[-13,14],[-195,-160],[12,-14],[6,5],[8,-11],[10,-14],[13,-18],[8,-11],[37,-46],[9,-11],[15,-19],[7,-9],[38,-48],[3,-3],[245,-309],[2,-3],[16,-19],[5,-8],[39,-48],[7,-10],[12,0],[63,45],[14,-13],[-28,-19],[-123,-89],[-25,-18],[-11,13],[88,65],[-418,527],[-6,-4],[11,-15],[-34,-24],[-10,14],[-10,-7],[-17,22],[52,35],[-35,45],[2,1],[-11,14],[-7,-5],[-13,15],[-207,238],[-40,82],[-73,-67],[-98,-91],[-42,-69],[-73,-76],[-48,-27],[-44,-31],[-41,-35],[-38,-38],[-32,-43],[-28,-45],[-23,-48],[-18,-49],[-12,-51],[108,-108],[-30,-35],[13,-12],[9,-1],[12,-11],[24,-21],[14,-12],[26,-23],[14,-13],[26,-23],[15,-13],[24,-21],[15,-14],[7,-6],[33,-29],[16,-14],[102,-91],[11,-10],[24,-21],[11,-9],[7,1],[32,36],[258,-226],[-82,-84],[-14,14],[62,63],[0,11],[-16,13],[-22,19],[-43,39],[-21,19],[-11,10],[-103,90],[-12,-1],[-33,-35],[-10,11],[-33,29],[-15,12],[-34,30],[-13,12],[-36,30],[-12,11],[-37,32],[-11,10],[-37,32],[-11,10],[-37,32],[-11,10],[-38,33],[-10,8],[-37,33],[-11,9],[0,10],[-12,12],[-164,-168],[18,-15],[13,-11],[32,-30],[14,-12],[34,-30],[15,-12],[33,-29],[14,-13],[32,-29],[92,-80],[4,-4],[33,-29],[14,-13],[15,-12],[34,-31],[13,-11],[47,-41],[14,-13],[45,-38],[15,-14],[47,-41],[15,-13],[8,-8],[29,-24],[8,-7],[6,7],[53,55],[16,-13],[-40,-42],[-69,-72],[-13,11],[34,40],[-24,21],[-16,13],[-15,14],[-6,5],[-573,513],[-313,-316],[66,-60],[6,6],[5,5],[-4,3],[31,29],[4,4],[28,26],[4,4],[12,12],[5,4],[25,24],[6,5],[24,23],[5,5],[23,21],[4,4],[23,22],[-27,25],[4,3],[26,-25],[2,2],[42,-40],[-6,-5],[-32,30],[-12,-11],[-70,-69],[-27,-25],[-4,-5],[-30,-29],[-5,-4],[-28,-27],[-4,-4],[-13,-13],[-3,-3],[-7,-6],[51,-41],[32,-28],[194,200],[41,-36],[-6,-7],[-26,22],[-8,0],[-24,-23],[-90,-93],[1,-10],[-6,-5],[-26,-29],[-5,-5],[-5,5],[-14,-15],[31,-28],[-15,-14],[6,-5],[54,-49],[25,-22],[14,13],[-4,4],[36,37],[26,25],[7,7],[25,25],[7,7],[7,7],[33,33],[0,7],[-36,33],[13,14],[8,-8],[30,-29],[38,-35],[3,-4],[12,-12],[-11,-11],[-38,37],[-13,-3],[-132,-142],[-5,4],[-17,-16],[78,-63],[72,-67],[20,17],[-4,8],[13,11],[37,38],[3,3],[43,43],[16,16],[53,53],[3,4],[0,8],[-37,34],[8,7],[89,-83],[16,-14],[-5,-7],[-23,21],[-22,20],[-10,0],[-6,-7],[-39,-39],[-11,-11],[-17,-17],[-34,-35],[-14,-14],[-12,-11],[-14,-14],[-10,-11],[-12,-12],[-7,1],[-17,-14],[176,-152],[12,13],[-2,8],[39,38],[8,11],[-1,6],[-15,15],[7,8],[52,-50],[14,1],[36,37],[20,21],[36,36],[1,12],[-54,49],[8,10],[80,-73],[-133,-131],[-33,30],[-13,1],[-10,-14],[-6,4],[-38,-39],[12,-10],[0,0],[37,37],[4,5],[19,-17],[-45,-45],[23,-18],[44,47],[21,-19],[-112,-116],[-21,17],[60,64],[-21,18],[-60,-62],[-19,17],[54,56],[-122,106],[-54,48],[-134,117],[-30,26],[-12,11],[-33,29],[-19,16],[-26,23],[-33,29],[-14,12],[-5,4],[-3,3],[-66,58],[-19,16],[-3,3],[-8,7],[-38,34],[-23,19],[-165,-169],[551,-498],[22,19],[127,-108],[-124,-123],[-15,14],[99,109],[-56,57],[-109,-107],[-15,14],[72,73],[-31,26],[7,9],[-26,22],[-403,367],[-117,-118],[-15,12],[115,121],[-100,91],[-109,-110],[29,-30],[-11,-12],[-25,22],[-160,148],[-30,-26],[-16,13],[-20,-24],[14,-10],[-41,-44],[94,-83],[-12,-13],[0,-4],[9,-7],[11,0],[30,31],[8,-6],[-31,-31],[0,-11],[26,-23],[18,-16],[9,-8],[32,-29],[15,-13],[26,-23],[14,-13],[29,-26],[6,-5],[35,-32],[33,-29],[18,-16],[25,-23],[25,-22],[22,-20],[28,-26],[5,-4],[161,-144],[52,-49],[67,66],[14,-12],[-13,-12],[-16,-15],[-19,-19],[-69,-69],[-16,15],[31,31],[-1,10],[-24,22],[-17,15],[-16,14],[-7,6],[-36,33],[-6,5],[-37,34],[-6,5],[-35,31],[-7,6],[-34,31],[-8,7],[-35,31],[-21,20],[-20,17],[-18,17],[-24,21],[-8,7],[-34,31],[-9,8],[-119,107],[-43,-43],[54,-47],[-3,-4],[54,-47],[-99,-99],[48,-41],[8,-7],[45,-41],[8,-7],[46,-42],[6,-6],[47,-42],[7,-6],[46,-42],[7,-6],[46,-42],[7,-6],[47,-43],[6,-6],[47,-42],[7,-6],[28,-25],[25,-23],[33,-29],[43,45],[16,-14],[-109,-111],[-16,14],[52,53],[-33,29],[-17,16],[-35,31],[-8,7],[-44,40],[-106,95],[-3,3],[-11,10],[-44,39],[-12,11],[-41,37],[-60,54],[-46,41],[-7,7],[-45,41],[-199,-196],[56,-50],[9,-8],[55,-50],[7,-7],[43,-38],[21,-19],[55,-49],[6,-6],[51,-46],[13,-12],[37,-33],[26,-23],[12,-11],[149,-135],[60,61],[17,-15],[-141,-141],[-16,14],[68,68],[-540,486],[-123,-120],[-17,16],[-106,98],[-29,-27],[77,-68],[-11,-11],[-75,71],[-94,84],[-42,-43],[23,-19],[3,3],[556,-503],[-12,-13],[-3,2],[-18,-19],[20,-17],[74,74],[75,-69],[-71,-73],[-29,-29],[-5,-5],[-15,13],[94,93],[-20,18],[-29,26],[-74,-74],[-46,43],[31,30],[2,3],[-484,433],[-59,52],[4,5],[-23,20],[-47,-50],[205,-178],[-51,-56],[59,-50],[-11,-11],[-58,50],[-6,-6],[-67,56],[-19,-17],[61,-53],[65,-57],[-12,-13],[-66,56],[-54,-55],[13,-11],[18,19],[41,-34],[-19,-18],[33,-28],[7,-6],[37,-33],[7,-6],[44,-39],[8,-7],[48,-42],[7,-6],[51,-45],[7,-6],[55,-48],[7,-6],[56,-49],[8,-7],[47,-41],[18,4],[47,53],[32,-28],[5,-23],[88,-77],[-20,-21],[-112,97],[-12,1],[-26,-26],[-26,-27],[-11,-12],[-19,-19],[-19,-20],[-14,-13],[-14,12],[67,71],[-24,20],[9,10],[-106,94],[-19,16],[-47,41],[-58,51],[-8,7],[-7,6],[-59,52],[-68,60],[-76,65],[3,4],[-7,6],[-70,-72],[115,-101],[-11,-13],[-116,102],[-31,-32],[113,-105],[-9,-9],[-115,102],[-62,-69],[-92,-93],[16,-15],[544,-471],[4,10],[25,-22],[115,119],[13,-11],[-197,-203],[-14,12],[53,53],[0,16],[-568,501],[-24,-27],[-14,12],[125,130],[-21,15],[-11,3],[-11,2],[-12,-1],[-31,1],[-32,-4],[-30,-9],[-28,-14],[-51,-30],[-24,-18],[-17,-10],[-9,-4],[-10,-4],[-11,2],[-9,6],[-7,8],[-17,22],[-17,13],[-7,-4],[-7,-5],[0,0],[-5,-3],[-4,-4],[-4,-4],[-4,-5],[-3,-5],[-3,-4],[-2,-4],[-1,-4],[-2,-5],[0,-5],[-1,-4],[1,-5],[0,-5],[1,-4],[2,-6],[2,-5],[2,-5],[3,-5],[4,-4],[4,-4],[6,-6],[6,-6],[6,-6],[5,-7],[4,-7],[25,-54],[2,-6],[1,-6],[1,-7],[0,-6],[0,-7],[-1,-6],[-1,-6],[-2,-7],[0,-7],[-2,-7],[-1,-7],[-3,-7],[-2,-6],[-3,-7],[-4,-6],[-4,-6],[-11,-30],[-3,-9],[-3,-9],[-4,-9],[-4,-8],[-5,-9],[-5,-8],[-24,-44],[-2,-10],[-2,-10],[-3,-10],[-4,-10],[-4,-10],[-3,-4],[-2,-4],[-2,-5],[-1,-4],[-1,-5],[0,-5],[0,-5],[1,-4],[1,-5],[16,-47],[0,-8],[0,-9],[-1,-9],[-1,-8],[-2,-9],[-2,-8],[-2,-9],[-3,-8],[-6,-10],[-6,-9],[-6,-10],[-7,-9],[-8,-8],[-8,-9],[-5,-3],[-6,-4],[-5,-4],[-4,-5],[-4,-5],[-4,-5],[-4,-5],[-3,-6],[-2,-6],[-2,-6],[-2,-6],[-1,-7],[-1,-4],[0,-4],[1,-5],[0,-4],[2,-4],[1,-4],[2,-4],[3,-4],[3,-3],[3,-3],[4,-7],[4,-8],[4,-8],[2,-8],[2,-8],[2,-8],[3,-8],[3,-7],[3,-8],[4,-7],[4,-7],[5,-7],[5,-6],[6,-6],[7,-8],[6,-8],[6,-8],[6,-8],[5,-9],[5,-9],[7,-12],[7,-12],[8,-12],[8,-12],[9,-10],[8,-10],[7,-11],[8,-11],[3,-8],[3,-9],[3,-9],[2,-8],[1,-9],[1,-9],[-2,-9],[-2,-9],[-3,-9],[-4,-8],[-4,-8],[-4,-8],[-10,-7],[-12,-12],[-7,-9],[2,-5],[2,-5],[3,-5],[3,-4],[4,-4],[4,-4],[4,-3],[6,-7],[6,-7],[7,-6],[6,-6],[8,-6],[7,-5],[8,-5],[13,-7],[13,-8],[13,-8],[13,-8],[5,-5],[4,-4],[4,-5],[4,-5],[3,-5],[3,-5],[2,-6],[2,-6],[2,-6],[1,-6],[1,-6],[-1,-5],[0,-5],[-1,-5],[-2,-4],[-2,-5],[-3,-4],[-2,-4],[-4,-4],[-3,-3],[-3,-3],[-3,-3],[-3,-4],[-2,-4],[-1,-4],[-1,-4],[-1,-5],[0,-4],[5,-11],[5,-11],[6,-10],[6,-11],[6,-10],[6,-10],[7,-10],[5,-6],[5,-6],[5,-5],[6,-5],[7,-5],[7,-2],[7,-3],[7,-3],[7,-3],[7,-4],[2,-6],[1,-6],[1,-7],[0,-6],[0,-6],[0,-7],[-1,-6],[-2,-6],[-2,-8],[-1,-8],[0,-8],[0,-8],[0,-8],[1,-8],[1,-8],[2,-8],[3,-9],[4,-8],[5,-9],[5,-8],[6,-8],[7,-10],[8,-10],[8,-9],[9,-9],[4,-1],[3,-1],[3,-1],[4,-2],[2,-2],[3,-3],[2,-2],[2,-3],[1,-4],[1,-3],[1,-3],[0,-4],[-1,-3],[0,-4],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-3,-3],[-3,-2],[-3,-2],[-4,-1],[-3,-1],[-4,0],[-4,-1],[-3,1],[-4,0],[-4,2],[-4,-3],[-4,-3],[-4,-4],[-3,-4],[-3,-4],[-3,-4],[-2,-5],[-2,-5],[-1,-5],[-1,-5],[0,-5],[0,-5],[0,-8],[1,-8],[0,-8],[2,-9],[2,-8],[2,-8],[3,-7],[3,-8],[4,-10],[4,-11],[3,-10],[3,-11],[3,-11],[2,-11],[1,-11],[1,-6],[0,-6],[-1,-6],[-1,-7],[-1,-6],[-2,-6],[-3,-6],[-3,-5],[-3,-6],[-4,-5],[-4,-5],[-4,-4],[-5,-5],[-5,-4],[-43,-12],[-15,-12],[-14,-32],[1,-41],[14,-25],[33,-28],[34,-28],[30,-31],[36,-27],[16,-17],[8,-20],[-5,-23],[-17,-26],[-77,-51],[-88,-27],[-42,-13],[-46,-3],[-29,-11],[-33,-29],[-19,-25],[41,-30],[-12,-14],[-51,-49],[116,-102],[239,-212],[-309,-310],[9,-8],[26,27],[-3,2],[214,214],[18,-18],[-224,-227],[-4,4],[-15,-14],[20,-18],[74,-67],[-55,-55],[13,-12],[5,4],[570,-515],[13,0],[81,86],[15,-14],[-100,-101],[-58,-60],[-14,12],[51,47],[-2,15],[-579,509],[8,6],[-14,12],[-126,-127],[499,-513],[-93,-37],[-816,154],[-270,2],[-34,0],[-34,-4],[-33,-8],[-32,-12],[-30,-16],[-27,-19],[-25,-22],[-50,-48],[-47,-50],[-44,-53],[-39,-56],[-36,-58],[-32,-60],[-27,-62],[-2,-52],[-10,-31],[-47,-102],[-10,-29],[-103,-317],[-115,-112],[-29,-8],[-63,9],[-111,29],[-182,12],[-117,-70],[-114,-75],[-41,-16],[-33,-4],[-102,-68],[43,-94],[-29,-32],[-160,114],[-273,-95],[-197,-70],[-575,-309],[-352,-241],[-118,-77],[-319,-208],[-347,-272],[-1,-48],[37,-258],[-24,-52],[-30,-50],[-34,-47],[-39,-44],[-42,-40],[-15,-14],[-70,-65],[-106,-126],[23,-16],[13,12],[17,-16],[-33,-31],[-16,15],[9,12],[-22,12],[-108,-122],[-128,-157],[-204,124],[-49,27],[-10,0],[-80,-45],[-124,-68],[-191,-149],[-2,-3],[-2,-4],[-1,-4],[0,-3],[0,-4],[1,-4],[2,-3],[2,-4],[15,-15],[15,-14],[5,-3],[4,-4],[3,-5],[3,-5],[2,-5],[1,-6],[0,-5],[-1,-6],[-2,-5],[-3,-5],[-3,-5],[-48,-37],[-50,-34],[-20,-7],[-20,-2],[-21,0],[-20,3],[-19,7],[-18,10],[-15,0],[-15,-2],[-15,-4],[-20,-10],[-20,-12],[-27,-16],[-30,-12],[-31,-7],[-18,-1],[-22,-4],[-22,-7],[-21,-10],[-194,-197],[-484,-489],[-63,-53],[-48,-43],[-67,-75],[-95,-99],[-86,-82],[-3,-13],[8,-11],[45,-52],[6,-13],[-4,-9],[-8,-8],[-14,1],[-77,56],[-5,5],[-7,-5],[-11,-12],[-38,-39],[-39,-36],[-9,-13],[13,-15],[9,-12],[2,-10],[-118,-136],[-23,14],[-22,11],[-14,2],[-7,-4],[-8,-14],[-27,-52],[125,-113],[-29,-31],[-239,126],[-73,-55],[-70,-59],[-67,-61],[-64,-65],[-60,-67],[-57,-70],[-54,-72],[109,-128],[-20,-30],[-141,125],[-82,-68],[-78,-71],[-74,-76],[-71,-78],[-66,-82],[-62,-85],[-11,-55],[194,-218],[-32,-30],[-300,295],[-61,23],[-154,-35],[-118,-105],[-248,-141],[-179,-100],[-225,-176],[194,-166],[-15,-14],[-219,163],[-100,-63],[-95,-62],[-22,-14],[-140,-125],[-166,-205],[-70,-122],[-69,-65],[-190,-102],[-112,57],[-38,-4],[-31,-13],[-11,-4],[-18,1],[-9,1],[-18,12],[-29,32],[-23,36],[-16,31],[-8,15],[-12,12],[-4,5],[-15,13],[-5,4],[-24,3],[-23,-5],[-696,-378],[-38,-23],[-12,-5],[-23,-7],[-40,0],[-27,8],[-42,18],[-43,18],[-43,13],[-43,12],[-40,21],[-22,10],[-19,10],[-29,18],[-36,12],[-14,5],[-29,-6],[-36,-22],[-34,-31],[-34,-23],[-41,-21],[-37,-24],[-41,-23],[-41,-25],[-40,-24],[-40,-20],[-42,-21],[-39,-29],[-37,-28],[-37,-23],[-30,-20],[-28,-36],[-34,-30],[-37,-29],[-39,-27],[-37,-28],[-37,-30],[-29,-25],[-30,-33],[-33,-30],[-35,-27],[-29,-22],[-43,-12],[-25,-5],[-21,4],[-21,7],[-25,-5],[-41,-16],[-42,-18],[-203,-64],[-125,-43],[-90,-56],[-178,-195],[-168,-137],[-74,-44],[-307,-139],[-132,-75],[-244,-180],[-233,-193],[-405,-326],[-457,-354],[-59,-45],[-281,-231],[-87,-48],[-133,-70],[-94,-60],[-59,-25],[-66,-40],[-52,-36],[-26,-18],[-95,-56],[-102,-68],[-46,-14],[-46,-15],[-49,1],[-63,14],[-43,20],[-57,24],[-51,49],[-14,29],[-10,22],[-95,109],[-27,27],[-54,53],[-79,52],[-43,16],[-98,8],[-50,-4],[-430,-169],[-417,-281],[-53,-37],[-399,-271],[-1016,-829],[-585,-477],[-996,-1192],[13,-2],[0,-14],[11,-6],[7,-4],[12,-19],[-11,-17],[-9,-14],[-2,-1],[-3,0],[-2,0],[-2,0],[-3,1],[-2,1],[-2,1],[-68,77],[-43,23],[-299,432],[-30,17],[-32,12],[-34,7],[-42,8],[-41,10],[-41,14],[-47,13],[-49,8],[-50,4],[-49,-1],[-50,-5],[-48,-10],[-47,-14],[-3,-5],[-4,-4],[-4,-4],[-5,-2],[-5,-2],[-5,-1],[-6,0],[-5,0],[-6,2],[-5,2],[-4,4],[-4,4],[-3,4],[-2,5],[-15,115],[-16,33],[-19,31],[-23,29],[-26,26],[-3,2],[-17,14],[-150,124],[-64,45],[-110,28],[-68,7],[-85,0],[-59,3],[-101,12],[-91,19],[-144,31],[-104,18],[-72,-10],[-196,-84],[-214,-82],[-46,-33],[-17,-12],[-22,1],[-52,11],[-58,-20],[-125,-43],[-187,-96],[-120,-108],[-196,-167],[-68,-15],[-103,29],[-241,-106],[-138,-103],[-85,-11],[-69,-20],[-338,-183],[-206,-163],[-185,-160],[-264,-220],[-421,-402],[-639,-728],[-118,-122],[-115,-125],[-111,-128],[-107,-132],[-103,-134],[-98,-137],[-95,-139],[-90,-143],[-68,-114],[-66,-116],[-63,-118],[262,-185],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-342,194],[-26,12],[-27,7],[-28,3],[-29,-1],[-27,-6],[-26,-11],[-25,-14],[-1157,-1526],[-24,-60],[-30,-57],[-35,-55],[-40,-51],[-44,-48],[-49,-44],[-52,-41],[-56,-35],[-59,-31],[-366,-451],[-10,-11],[-217,-267],[-88,-107],[-83,-110],[-80,-112],[-74,-116],[-70,-118],[-65,-120],[-61,-123],[-55,-125],[-692,-511],[-447,-94],[-59,-2],[-60,2],[-59,6],[-58,11],[-57,15],[-56,20],[-54,24],[-72,42],[-69,46],[-65,50],[-62,53],[-146,116],[-142,118],[-138,123],[-53,56],[-56,53],[-60,50],[-63,46],[-62,44],[-65,40],[-68,36],[-64,45],[-68,40],[-70,36],[-72,31],[-74,27],[-76,22],[-78,17],[-79,12],[-79,7],[-19,-5],[-20,-2],[-20,1],[-20,3],[-18,7],[-18,9],[-15,12],[-14,14],[-11,16],[-201,935],[66,27],[17,7],[605,42],[-20,52],[-71,185],[-71,7],[-42,-40],[-19,-35],[-47,11],[-48,5],[-48,1],[-47,-6],[-47,-11],[-24,-11],[-24,-12],[-42,-15],[-44,-9],[-45,-4],[-44,2],[-45,6],[-52,23],[-55,20],[-55,15],[-57,11],[-58,7],[-58,2],[-58,-2],[-58,-6],[-92,-18],[-1055,-207],[-340,-91],[-425,-114],[-174,-44],[-174,-45],[-103,-23],[-16,-4],[-20,-5],[-25,-9],[-34,-9],[-34,-6],[-35,-4],[-46,4],[-45,8],[-44,12],[-43,15],[-100,-11],[-1369,-355],[-134,-51],[-131,-56],[-129,-60],[-126,-66],[-123,-70],[-120,-75],[-117,-79],[-114,-84],[-110,-87],[-106,-92],[-103,-96],[254,-242],[35,31],[20,-19],[-82,-78],[-23,19],[35,30],[-255,244],[-86,-82],[-87,-93],[-88,-104],[-83,-106],[-80,-110],[-75,-112],[-71,-114],[-66,-117],[-62,-119],[-57,-122],[-53,-123],[-48,-125],[-6,-13],[-9,-12],[-13,-15],[-15,-13],[-17,-10],[-18,-8],[-16,-7],[-14,-9],[-13,-11],[-11,-12],[-9,-14],[-10,-26],[-10,-19],[-10,-13],[-10,-12],[-67,-91],[-63,-93],[-60,-95],[-55,-97],[-3,-3],[-4,-6],[-5,-7],[-7,-17],[-3,-10],[1,-8],[3,-10],[11,-16],[7,-15],[-1,-3],[-4,-16],[-8,-6],[-15,0],[-13,5],[-7,4],[-7,0],[-6,0],[-6,-2],[-6,-3],[-5,-3],[-48,-49],[-43,-52],[-40,-54],[-36,-57],[-31,-60],[-27,-61],[4,-6],[3,-6],[2,-7],[1,-7],[0,-7],[-2,-7],[-3,-6],[-4,-6],[-5,-5],[-6,-5],[-7,-3],[-7,-2],[-7,-1],[-8,0],[-7,1],[-7,1],[-8,-2],[-7,-2],[-7,-3],[-6,-4],[-5,-5],[-5,-6],[-3,-7],[-27,-53],[-33,-51],[-37,-48],[-14,-23],[-17,-20],[-20,-19],[-93,-80],[-91,-84],[-23,-31],[-26,-29],[-29,-27],[-31,-24],[-53,-52],[-51,-54],[-48,-57],[-44,-59],[-41,-62],[-5,-6],[-3,-8],[-2,-8],[0,-7],[1,-8],[2,-8],[8,-29],[3,-30],[-3,-30],[-8,-29],[-17,4],[-16,8],[-15,9],[-13,11],[-11,13],[-65,70],[-35,37],[-14,6],[-15,3],[-16,1],[-15,-2],[-15,-3],[-256,-64],[-101,-63],[-98,-67],[-95,-71],[-91,-75],[-89,-78],[-85,-81],[-82,-85],[-89,-86],[-85,-90],[-81,-93],[-76,-96],[-72,-99],[-67,-102],[-63,-105],[-58,-108],[-52,-110],[-581,-808],[-35,-63],[-67,-131],[-5,-9],[-6,-8],[-7,-7],[-10,-8],[-11,-7],[-13,-4],[-13,-3],[-13,-1],[-13,1],[-13,4],[-13,5],[-11,7],[-10,8],[-31,7],[-32,1],[-32,-3],[-31,-7],[-30,-12],[-28,-16],[-24,-20],[-21,-23],[-20,-16],[-20,-15],[-34,-20],[-35,-16],[-37,-12],[-38,-8],[-127,-37],[-126,-41],[-124,-46],[-122,-49],[-120,-54],[-118,-58],[-53,-19],[-53,-14],[-55,-11],[-56,-7],[-56,-2],[-56,1],[-56,6],[-64,12],[-65,7],[-65,1],[-65,-3],[-65,-8],[-64,-13],[-62,-18],[-61,-22],[-47,-1],[-47,-4],[-46,-9],[-45,-14],[-43,-17],[-41,-22],[-38,-16],[-39,-12],[-37,-7],[-37,-3],[-37,0],[-36,4],[-61,27],[-34,12],[-37,8],[-36,2],[-37,-2],[-36,-7],[-35,-12],[-33,-17],[-17,-14],[-20,-12],[-22,-8],[-23,-5],[-23,-2],[-23,2],[-20,7],[-20,6],[-23,4],[-24,2],[-21,1],[-22,-2],[-48,-5],[-48,-10],[-46,-14],[-38,-7],[-36,-13],[-34,-17],[-31,-22],[-26,-27],[-14,-16],[-16,-13],[-18,-12],[-19,-8],[-21,-5],[-22,-2],[-51,3],[-52,-1],[-51,-5],[-51,-10],[-49,-13],[-49,-17],[-46,-21],[-67,-53],[-69,-52],[-71,-48],[-73,-46],[-193,-80],[-34,-24],[-37,-20],[-40,-14],[-41,-10],[-42,-4],[-43,1],[-42,6],[-41,11],[-133,43],[-132,47],[-130,50],[-128,54],[-74,41],[-76,37],[-78,33],[-80,27],[-82,22],[-84,18],[-84,12],[-85,7],[-86,1],[-85,-3],[-85,-9],[-77,-15],[-79,-9],[-79,-5],[-79,0],[-79,6],[-11,-1],[-9,-2],[-10,-1],[-9,0],[-10,0],[-10,1],[-9,1],[-10,1],[-9,2],[-10,2],[-9,1],[-10,1],[-10,0],[-10,0],[-9,-1],[-35,-9],[-34,-8],[-35,-8],[-81,-10],[-25,-2],[-26,-2],[-25,-3],[-26,-3],[-31,-7],[-32,-6],[-32,-5],[-13,-1],[-13,-2],[-13,-2],[-13,-2],[-13,-3],[-13,-3],[-13,-3],[-12,-4],[-13,-5],[-18,-4],[-18,-4],[-18,-4],[-18,-3],[-18,-2],[-19,-2],[-2,-1],[-11,-1],[-10,-2],[-26,-4],[-26,-4],[-26,-5],[-18,-2],[-18,-1],[-18,-1],[-10,-1],[-10,-1],[-10,-2],[-9,-2],[-10,-3],[-30,-13],[-30,-13],[-30,-14],[-14,-7],[-15,-6],[-14,-5],[-15,-5],[-108,-57],[-11,-3],[-12,-4],[-11,-4],[-11,-5],[-10,-5],[-11,-5],[-10,-6],[-10,-6],[-5,-3],[-4,-2],[-5,-2],[-5,-1],[-2,-3],[-2,-4],[0,-3],[2,-15],[4,-15],[-2,-3],[-2,-2],[-3,-1],[-3,2],[-3,7],[-4,12],[-5,14],[-2,5],[-9,17],[-3,4],[-3,6],[-2,6],[-5,5],[-6,5],[-5,4],[-6,4],[-6,3],[-7,3],[-6,3],[-10,2],[-9,3],[-10,2],[-10,1],[-10,1],[-10,1],[-10,0],[-9,0],[-19,-2],[-19,-2],[-18,-3],[-19,-2],[-18,-4],[-18,-3],[-18,-5],[-19,-4],[-15,-4],[-2,-1],[-18,-5],[-45,-11],[-119,-28],[-22,-10],[-14,-12],[-12,-4],[-1,0],[-6,0],[-6,8],[-189,-79],[-186,-84],[-184,-89],[-181,-93],[-178,-98],[-175,-103],[-24,-13],[-60,-18],[-41,13],[-241,-141],[-504,-107],[-330,-89],[-42,-4],[-41,-7],[-58,-12],[-56,-18],[-55,-21],[-53,-26],[-50,-29],[-48,-33],[-41,-26],[-42,-22],[-45,-19],[-46,-15],[-47,-11],[-94,-60],[-91,-63],[-61,-45],[-48,-37],[-27,27],[-36,-10],[-56,-21],[-53,-26],[-51,-29],[-48,-34],[-45,-38],[-42,-41],[-37,-44],[-73,-74],[-70,-76],[-66,-79],[-63,-82],[-59,-84],[-55,-87],[13,-38],[-49,-17],[-15,61],[-30,3],[-30,0],[-37,-5],[-37,-9],[-34,-13],[-33,-18],[-214,-146],[-44,-31],[-272,-349],[-303,-389],[-141,-182],[-27,-31],[-31,-28],[-35,-23],[-18,-10],[-20,-8],[-21,-4],[-21,-1],[-20,2],[-21,5],[-19,8],[-18,10],[-35,16],[-37,10],[-38,5],[-38,0],[-38,-5],[-54,-11],[-54,-6],[-54,-1],[-55,3],[-53,8],[-30,9],[-31,5],[-31,1],[-31,-3],[-31,-6],[-29,-10],[-80,6],[-81,1],[-80,-5],[-80,-10],[-79,-16],[-78,-20],[-76,-26],[-24,-12],[-27,-8],[-27,-3],[-28,0],[-27,5],[-26,9],[-24,13],[-22,16],[-53,23],[-55,18],[-57,13],[-57,7],[-59,3],[-58,-3],[-57,-8],[-91,-15],[-91,-12],[-91,-8],[-92,-3],[-92,0],[-91,5],[-74,2],[-74,-4],[-73,-9],[-72,-14],[-71,-20],[-68,-25],[-67,-30],[-64,-35],[-116,-63],[-114,-68],[-111,-71],[-108,-75],[-106,-79],[-102,-83],[-51,-39],[-78,-92],[-82,-90],[-87,-85],[-90,-82],[-94,-79],[-98,-74],[-112,-10],[-113,-4],[-113,1],[-112,6],[-112,12],[-112,16],[-110,23],[-109,27],[-108,32],[-105,38],[-104,42],[-101,48],[-99,52],[-83,51],[-240,224],[-80,102],[-152,169],[-103,112],[-140,142],[-112,118],[-109,121],[-106,122],[-4,18],[-25,48],[-20,50],[-16,51],[-11,52],[-7,53],[-2,54],[3,53],[-1,9],[-9,84],[-16,82],[-20,81],[-27,80],[-39,46],[-43,42],[-45,40],[-49,37],[-51,33],[-53,31],[-107,47],[-113,55],[-55,29],[-46,25],[-6,3],[-105,56],[-106,52],[-108,51],[-67,54],[-63,57],[-60,61],[-57,64],[-52,66],[-49,70],[-44,72],[-40,74],[-36,76],[-31,77],[-27,80],[-80,263],[-78,264],[-24,88],[-30,86],[-34,84],[-39,83],[-44,80],[-48,78],[-53,75],[-57,73],[-24,16],[-276,620],[-319,748],[-25,77],[-22,78],[-16,80],[-11,80],[-7,81],[-2,81],[6,475],[18,613],[14,441],[-11,126],[-17,126],[-20,114],[-25,113],[-30,113],[-33,111],[-19,49],[-13,51],[-7,52],[-1,52],[30,96],[7,18],[2,5],[47,127],[127,163],[127,118],[89,28],[167,186],[-46,32],[-17,6],[-106,31],[-1,-6],[-48,12],[5,26],[47,-14],[-2,-8],[115,-31],[19,-10],[41,-31],[81,93],[88,-10],[139,154],[13,-6],[31,-23],[7,-3],[6,0],[10,5],[9,11],[7,17],[6,22],[-83,113],[45,66],[-167,95],[-25,-36],[-25,11],[46,54],[20,-13],[-5,-4],[167,-91],[80,116],[98,-36],[27,37],[-10,7],[18,25],[-10,8],[-273,159],[-123,70],[-11,5],[-135,77],[-34,-51],[-15,9],[75,113],[16,-7],[-33,-52],[265,-156],[283,-165],[3,-1],[10,-6],[25,8],[64,93],[16,55],[100,145],[21,107],[56,186],[26,114],[14,249],[39,265],[-121,18],[1,7],[121,-16],[16,53],[18,45],[-8,70],[-38,83],[-61,50],[-156,138],[-33,-32],[-4,3],[21,24],[-18,15],[-23,-24],[-4,3],[22,26],[-19,17],[15,17],[205,-181],[48,-42],[20,6],[15,11],[3,27],[20,281],[2,20],[-2,21],[-4,21],[-8,19],[-11,18],[-13,17],[-11,11],[-9,15],[-6,16],[-3,16],[0,17],[3,16],[7,16],[8,15],[398,349],[166,146],[132,165],[14,164],[-40,106],[-59,87],[-34,72],[11,121],[207,227],[4,4],[19,21],[20,19],[26,22],[29,21],[30,17],[31,27],[28,29],[25,32],[22,34],[18,36],[1,8],[3,9],[4,7],[5,7],[7,6],[8,5],[8,3],[9,2],[9,1],[9,-1],[8,-3],[53,19],[51,22],[48,26],[47,30],[43,33],[76,41],[46,20],[44,24],[42,28],[38,31],[36,34],[33,37],[2,10],[5,10],[6,9],[7,8],[8,7],[9,5],[11,5],[24,21],[21,24],[18,27],[49,14],[42,60],[3,57],[-87,112],[6,5],[-68,82],[4,4],[-7,9],[-5,-4],[-162,203],[62,43],[161,-202],[-49,-36],[8,-9],[6,3],[59,-72],[166,123],[-364,460],[-36,-25],[-16,16],[90,63],[13,-18],[-35,-27],[376,-471],[302,-395],[49,34],[-50,60],[12,10],[51,-62],[25,19],[-192,250],[-66,105],[6,22],[76,56],[-21,27],[12,9],[-265,342],[27,17],[258,-341],[11,6],[21,-29],[232,167],[16,-17],[237,178],[-43,44],[6,5],[-84,100],[8,5],[92,-101],[35,26],[-84,109],[14,6],[119,-150],[-3,20],[23,23],[-38,49],[-16,19],[196,134],[-410,545],[-268,-187],[-18,22],[553,382],[17,-20],[-267,-186],[432,-557],[435,-579],[364,255],[37,-22],[171,27],[96,-83],[195,117],[0,8],[-2,8],[-5,7],[-7,6],[-7,3],[-10,1],[-5,0],[-32,-4],[-11,-1],[-30,-10],[-142,183],[-42,-15],[-94,106],[97,71],[51,64],[-116,161],[3,2],[-8,10],[-2,-1],[-177,222],[16,13],[178,-225],[-8,-4],[8,-13],[11,6],[115,-158],[22,12],[12,9],[29,19],[-116,159],[17,11],[116,-159],[228,146],[18,-8],[461,275],[-286,386],[44,52],[-71,98],[31,50],[18,20],[41,11],[1,1],[25,-8],[22,-16],[74,-15],[41,-8],[37,3],[29,3],[68,23],[100,41],[41,27],[54,41],[51,39],[56,62],[55,60],[65,46],[56,28],[12,1],[65,-6],[120,-51],[110,-86],[105,-27],[392,11],[121,0],[115,-51],[194,65],[145,122],[137,198],[378,338],[104,128],[37,151],[100,-37],[69,-134],[100,-85],[66,-14],[59,67],[93,184],[35,113],[57,158],[112,109],[41,-7],[17,69],[-60,18],[0,37],[-70,117],[-187,73],[-137,30],[-110,94],[-71,65],[-57,77],[11,41],[-32,62],[-124,133],[-28,-21],[-13,-65],[-57,-41],[-32,6],[-117,34],[-197,24],[-645,192],[17,152],[55,160],[137,327],[6,110],[-4,41],[-32,123],[-40,125],[-5,64],[-10,34],[-19,20],[8,57],[35,31],[23,34],[20,48],[1,61],[5,43],[-2,13],[-25,26],[-23,15],[-10,20],[-11,40],[-7,29],[-9,77],[2,112],[7,40],[-3,14],[-6,19],[-5,15],[-2,9],[0,9],[5,27],[-1,12],[-4,16],[-20,31],[-12,33],[-1,22],[1,12],[2,12],[3,22],[1,25],[0,21],[3,22],[1,21],[-8,16],[-30,45],[-27,36],[-21,42],[-31,51],[-21,65],[-10,32],[-25,57],[-20,44],[-39,62],[-55,93],[-23,48],[-16,16],[-19,18],[-17,13],[-14,8],[-50,12],[-74,-13],[-221,47],[-2,35],[0,37],[390,659],[164,648],[14,91],[-5,50],[-1,49],[6,50],[10,48],[16,48],[20,45],[26,44],[30,40],[17,30],[12,31],[7,33],[1,34],[-5,33],[-10,32],[-15,30],[-3,18],[-9,19],[-21,26],[-11,23],[-1,22],[5,57],[19,51],[23,44],[9,16],[4,12],[5,33],[-10,23],[-17,13],[0,116],[78,82],[2,3],[34,24],[24,22],[13,19],[10,11],[9,6],[0,1],[11,3],[17,-5],[10,2],[25,22],[1,5],[-10,26],[-6,19],[1,14],[21,43],[5,42],[4,17],[16,17],[19,22],[5,17],[4,76],[-4,27],[-9,19],[-9,17],[-4,13],[-1,9],[1,9],[7,7],[15,13],[15,17],[13,21],[6,19],[3,22],[14,42],[18,46],[15,50],[18,39],[27,50],[9,24],[6,22],[4,49],[5,69],[0,59],[4,19],[-1,11],[-5,13],[-8,16],[-8,13],[-16,18],[-6,9],[-5,10],[-1,7],[1,4],[7,10],[130,175],[21,37],[31,60],[21,44],[24,54],[15,36],[9,28],[7,15],[7,11],[12,17],[12,17],[12,17],[12,15],[11,15],[13,29],[6,18],[5,17],[9,24],[10,24],[11,24],[10,22],[7,18],[5,12],[12,37],[12,36],[9,40],[7,41],[10,47],[3,30],[2,33],[0,16],[-2,24],[-2,37],[-1,15],[0,24],[-14,152],[-117,107],[32,242],[-89,493],[-227,10],[-65,626],[12,13],[11,10],[10,6],[15,9],[15,7],[13,6],[14,3],[11,1],[15,5],[15,11],[12,15],[19,27],[1,0],[13,19],[7,11],[6,16],[4,16],[4,15],[1,15],[-1,9],[-4,11],[-10,24],[-7,13],[-9,26],[-1,8],[2,15],[2,12],[3,14],[0,13],[2,15],[2,9],[5,33],[-1,37],[-2,20],[1,20],[1,20],[2,20],[-2,27],[-2,22],[-4,25],[-11,51],[-4,21],[-2,13],[-5,25],[-3,17],[-3,14],[-5,15],[-7,12],[-12,12],[-8,6],[-10,9],[-6,12],[-7,14],[-5,15],[-4,13],[-6,22],[-9,26],[-15,34],[-7,9],[-11,12],[-14,14],[-10,7],[-11,7],[-12,9],[-12,9],[-5,7],[-9,13],[-7,14],[-7,8],[-10,5],[-14,1],[-18,-4],[-18,-2],[-15,1],[-15,2],[-13,3],[-5,2],[-3,1],[-10,7],[-11,10],[-4,15],[0,11],[0,7],[1,11],[1,11],[2,12],[2,7],[2,12],[1,9],[0,9],[-3,6],[-6,8],[-5,6],[-6,8],[-7,12],[-7,12],[-7,12],[-23,22],[-5,3],[-7,8],[-6,10],[-5,10],[-5,12],[-7,11],[-7,9],[-8,8],[-7,8],[-9,12],[-5,11],[-3,8],[-1,12],[-4,22],[-4,12],[-7,7],[-8,7],[-7,9],[-9,14],[-2,13],[1,10],[3,7],[4,11],[1,10],[-1,7],[-5,11],[-8,7],[-9,6],[-10,4],[-20,8],[-19,11],[-12,7],[-5,4],[-5,10],[0,7],[-1,10],[-3,12],[-6,8],[-9,7],[-13,10],[-11,10],[-15,19],[-5,7],[-9,11],[-8,11],[-8,6],[-14,8],[-10,3],[-8,3],[-16,2],[-13,3],[-5,1],[-6,5],[-3,7],[-2,5],[-1,12],[0,9],[-2,12],[-13,28],[-10,16],[-12,22],[-9,19],[-5,11],[-10,10],[-6,6],[-13,8],[-15,9],[-12,9],[-12,10],[-11,12],[-12,15],[-8,9],[-10,12],[-11,11],[-13,14],[-15,16],[-6,6],[-10,10],[-9,14],[-4,11],[-5,14],[-4,8],[-8,11],[-12,12],[-13,10],[-31,18],[-21,13],[-24,12],[-14,9],[-12,5],[-17,3],[-40,2],[-20,4],[-12,0],[-12,-1],[-14,-2],[-11,-3],[-11,-1],[-10,2],[-1,0],[-6,4],[-5,6],[-3,8],[1,12],[4,4],[8,8],[34,35],[12,22],[11,18],[12,22],[7,18],[3,17],[2,27],[1,13],[-1,25],[-1,19],[-3,23],[-8,24],[-8,20],[-10,24],[-12,26],[-12,29],[-10,29],[-5,16],[-8,28],[-6,19],[-7,19],[-5,11],[-10,13],[-10,9],[-23,20],[-13,5],[-22,6],[-18,0],[-24,-2],[-12,-1],[-25,-5],[-22,-5],[-19,-5],[-19,-1],[-12,3],[-11,6],[-22,9],[-7,1],[-14,-1],[-53,-25],[-18,-5],[-16,-14],[-13,-17],[-6,-10],[-7,-16],[-7,-19],[-3,-14],[-3,-9],[-6,-9],[-9,-11],[-8,-8],[-7,-7],[-11,-11],[-18,-16],[-12,-10],[-8,-5],[-11,-1],[-12,2],[-17,6],[-13,7],[-36,18],[-15,4],[-13,5],[-18,8],[-19,11],[-3,1],[-10,7],[-16,10],[-11,11],[-9,13],[-5,9],[-27,40],[-14,19],[-9,16],[-4,8],[-4,10],[-2,9],[-1,11],[-3,23],[-1,13],[0,8],[5,14],[7,21],[30,43],[21,25],[12,8],[12,6],[9,3],[22,6],[53,19],[52,20],[12,6],[12,7],[11,8],[12,10],[11,11],[12,13],[28,34],[25,33],[9,15],[7,13],[59,116],[55,108],[3,4],[3,5],[8,8],[31,25],[9,8],[7,8],[2,4],[3,4],[11,27],[10,28],[7,29],[5,29],[2,28],[1,28],[-3,27],[-5,26],[-7,27],[-6,16],[-6,13],[-4,6],[-4,6],[-36,41],[-15,14],[-35,29],[-14,13],[-14,16],[-4,7],[-5,8],[0,4],[-1,3],[0,4],[0,3],[2,8],[4,16],[8,25],[0,3],[1,3],[-1,7],[-4,20],[-4,12],[-7,13],[-9,13],[-11,12],[-12,11],[-14,10],[-19,23],[-41,43],[-29,37],[-19,25],[-20,35],[-31,48],[-61,84],[-28,64],[-33,71],[-27,79],[-41,129],[16,36],[0,10],[-7,14],[-9,10],[-16,13],[-12,17],[-11,15],[-5,14],[-2,14],[-2,13],[10,10],[12,15],[1,13],[-10,17],[-14,24],[-2,4],[-7,18],[-4,26],[-4,19],[-2,19],[2,35],[2,39],[3,59],[5,186],[-10,133],[-15,102],[-14,88],[-27,96],[-45,131],[-6,17],[-3,8],[-8,8],[-12,5],[-26,9],[-15,8],[-16,10],[-16,10],[-17,8],[-14,8],[-10,7],[-5,7],[-8,15],[-92,151],[-34,68],[-8,27],[-13,47],[-13,57],[-28,114],[-31,96],[-10,25],[-29,69],[-37,70],[-22,34],[-31,45],[-37,53],[-13,16],[-17,16],[-12,4],[-25,8],[-12,9],[-18,12],[-16,16],[-70,53],[-10,43],[-53,67],[-505,475],[-151,-59],[-70,34],[204,332],[54,-11],[562,1036],[355,650],[1548,1519],[23,-22],[146,132],[-22,20],[24,23],[40,-28],[-26,-23],[-6,4],[-145,-139],[401,-394],[168,-78],[216,-37],[11,-2],[43,-5],[16,-4],[53,1],[42,4],[53,12],[38,3],[30,8],[35,12],[48,38],[17,14],[54,21],[60,29],[36,24],[30,15],[39,21],[37,16],[31,20],[35,20],[32,19],[30,24],[35,20],[26,11],[24,12],[43,26],[25,20],[35,26],[29,14],[55,28],[36,20],[73,43],[41,30],[24,19],[25,23],[23,21],[24,25],[20,19],[49,44],[56,38],[32,24],[14,14],[13,15],[17,21],[22,18],[21,11],[15,10],[17,15],[21,22],[35,32],[47,51],[20,22],[31,26],[27,15],[26,17],[18,14],[22,21],[32,44],[17,28],[7,26],[8,21],[13,11],[15,-3],[13,-1],[23,9],[22,18],[15,24],[15,29],[20,40],[29,39],[88,99],[69,64],[39,20],[32,11],[42,12],[38,21],[33,28],[33,34],[29,28],[26,34],[30,49],[35,46],[47,65],[30,51],[56,104],[38,70],[29,45],[56,118],[1,3],[28,56],[33,51],[29,35],[28,30],[37,31],[27,21],[32,11],[36,4],[26,5],[28,3],[35,-3],[23,-7],[17,7],[17,15],[23,21],[29,6],[31,-3],[32,8],[33,8],[30,8],[41,18],[39,22],[38,27],[39,9],[17,3],[35,8],[28,15],[26,27],[27,33],[13,31],[10,24],[18,23],[19,26],[19,39],[6,41],[-1,45],[-3,39],[14,73],[14,80],[3,15],[13,67],[7,33],[8,41],[7,42],[5,33],[2,31],[1,27],[0,19],[-3,14],[-6,22],[-20,65],[-23,65],[-27,64],[-30,63],[-29,23],[-25,28],[-22,30],[-16,33],[-11,35],[-7,36],[0,37],[4,36],[10,35],[15,34],[20,31],[25,29],[28,25],[901,491],[9,1],[10,-1],[20,-5],[31,-9],[7,-4],[9,-4],[31,-18],[12,-6],[14,-5],[6,-1],[7,-1],[27,-1],[22,0],[5,0],[14,2],[4,0],[3,0],[2,0],[2,-1],[2,-1],[2,-2],[2,-1],[12,-12],[4,-3],[36,-27],[34,-23],[13,-8],[14,-6],[16,-4],[47,-13],[13,-4],[12,-5],[22,-12],[7,-5],[3,-3],[2,-3],[3,-3],[2,-3],[7,-17],[2,-4],[2,-4],[16,-19],[32,-31],[27,-26],[27,-24],[28,-21],[28,-19],[14,-8],[15,-8],[16,-6],[17,-7],[39,-11],[53,-12],[23,-5],[18,-3],[16,0],[14,1],[18,2],[18,3],[15,4],[14,5],[14,6],[11,5],[11,8],[9,8],[76,75],[122,117],[21,20],[25,21],[61,51],[4,2],[4,2],[9,4],[33,10],[11,4],[9,6],[5,3],[2,4],[31,38],[54,72],[98,131],[65,91],[16,22],[13,24],[14,27],[12,28],[12,30],[11,33],[12,37],[14,48],[15,43],[24,51],[36,67],[22,53],[7,44],[0,44],[14,55],[29,49],[44,48],[82,105],[75,92],[38,44],[89,118],[86,92],[46,65],[46,76],[50,80],[71,157],[21,75],[33,46],[20,22],[27,16],[34,14],[29,2],[34,-11],[29,-20],[30,-33],[21,-25],[50,-36],[59,-23],[46,3],[82,34],[72,40],[85,23],[67,4],[47,-2],[83,-22],[57,-7],[37,8],[28,28],[16,30],[0,34],[-2,21],[-11,25],[-9,2],[-8,4],[-7,5],[-7,5],[-7,8],[-6,8],[-4,10],[-3,10],[-1,10],[10,27],[15,24],[18,23],[23,19],[7,4],[8,4],[9,2],[8,1],[9,-1],[9,-2],[8,-3],[8,-4],[22,33],[9,17],[11,20],[-2,28],[-5,23],[6,27],[14,33],[32,27],[31,18],[30,21],[53,48],[57,32],[59,11],[52,0],[38,1],[11,0],[15,4],[17,19],[11,15],[16,14],[23,8],[40,-1],[34,-3],[32,-7],[33,-11],[22,-21],[17,-31],[20,-17],[25,-7],[87,-26],[81,-35],[43,-29],[45,-45],[76,-38],[121,-2],[98,17],[98,33],[14,5],[20,3],[20,-3],[26,-1],[16,4],[20,17],[40,12],[39,1],[19,6],[4,29],[22,27],[38,18],[44,1],[22,-4],[23,-26],[90,10],[45,18],[28,-31],[1342,-243],[24,155],[261,-40],[-18,-78],[-153,28],[-24,0],[-11,-13],[-7,-65],[366,-65],[21,-7],[20,-15],[10,-24],[6,-41],[4,-36],[34,-31],[25,-16],[19,-30],[-1,-26],[55,-23],[40,-15],[49,-15],[52,-15],[50,-7],[35,16],[27,24],[33,17],[32,6],[31,-3],[45,-10],[14,-3],[5,-1],[12,-15],[47,-22],[69,-11],[67,-8],[64,19],[31,17],[32,49],[19,40],[8,26],[31,37],[9,7],[12,3],[16,-12],[28,-32],[3,-23],[13,-16],[12,-10],[-1,-36],[-5,-24],[5,-29],[14,-27],[20,-11],[33,-4],[30,6],[27,16],[25,34],[4,25],[3,43],[4,42],[2,42],[6,42],[15,13],[41,0],[25,1],[8,10],[10,42],[9,42],[12,42],[7,26],[22,21],[47,1],[28,-9],[32,-14],[46,-7],[46,-2],[42,-10],[16,-14],[18,-40],[19,-38],[7,-14],[7,-13],[14,-19],[3,-44],[8,-11],[45,-15],[22,-14],[7,-16],[5,-43],[7,-16],[0,-1],[29,-20],[22,-37],[3,-36],[-2,-43],[1,-45],[1,-43],[11,-43],[11,-42],[5,-24],[-5,-5],[0,-42],[23,-60],[34,-67],[36,-59],[45,-51],[35,-37],[39,-23],[36,-6],[44,10],[45,22],[24,37],[19,12],[28,3],[47,2],[53,23],[42,-7],[50,10],[40,33],[19,35],[-6,63],[-24,36],[-28,74],[-38,36],[-14,30],[15,83],[23,100],[-8,47],[-27,15],[-26,11],[-10,18],[-6,78],[-10,60],[19,46],[12,34],[43,2],[14,-14],[8,-21],[1,-38],[-1,-36],[-5,-70],[7,-29],[6,-8],[20,11],[28,-2],[10,-17],[3,-50],[1,-69],[15,-96],[34,-140],[19,-146],[28,-61],[27,-30],[55,-51],[116,1],[34,26],[4,24],[-20,62],[9,42],[9,45],[-20,83],[-44,177],[-38,159],[-36,144],[-24,116],[-13,48],[40,14],[-30,48],[32,56],[27,10],[23,7],[8,-13],[150,-236],[90,-28],[59,-70],[33,-69],[-5,-35],[36,-133],[97,-153],[100,-69],[211,69],[137,50],[135,55],[133,61],[131,65],[189,67],[123,49],[119,88],[175,119],[513,331],[-107,217],[-36,99],[-29,80],[16,30],[228,91],[25,-11],[56,-134],[11,-28],[25,9],[56,20],[39,-69],[34,-61],[37,24],[27,24],[41,10],[29,-1],[25,21],[9,-1],[54,-54],[3,-10],[-23,-25],[8,-22],[12,-13],[13,-7],[6,-12],[13,-33],[16,-21],[8,-2],[8,-2],[18,13],[15,17],[31,40],[20,19],[21,11],[19,2],[27,4],[29,4],[49,16],[38,20],[37,30],[21,37],[-4,25],[2,46],[3,11],[6,18],[6,19],[7,18],[7,18],[5,10],[4,11],[4,10],[3,11],[3,11],[2,11],[2,11],[1,11],[0,7],[0,6],[1,7],[2,6],[2,7],[2,6],[3,6],[4,6],[3,5],[5,5],[4,5],[5,5],[6,9],[7,9],[7,9],[7,9],[8,8],[8,7],[9,8],[9,7],[8,7],[8,7],[9,7],[9,7],[9,6],[9,5],[10,5],[10,5],[10,5],[16,-2],[15,-2],[16,-1],[5,1],[4,1],[5,1],[4,2],[4,3],[4,2],[3,3],[3,4],[3,4],[2,3],[9,3],[8,2],[9,2],[8,1],[9,0],[4,3],[4,3],[4,3],[3,4],[3,4],[2,4],[2,4],[2,4],[1,5],[1,5],[0,4],[0,5],[0,5],[-1,5],[-2,4],[-2,5],[-2,4],[-3,4],[-3,4],[-13,32],[-3,16],[-1,16],[-2,15],[0,16],[-1,16],[1,15],[-1,11],[-1,11],[0,11],[0,11],[1,11],[2,11],[2,11],[2,10],[7,13],[7,12],[8,12],[8,11],[8,11],[9,11],[10,11],[9,10],[9,10],[9,10],[9,10],[10,9],[10,9],[10,9],[11,8],[3,3],[7,5],[19,14],[19,13],[36,28],[7,6],[7,6],[6,7],[6,6],[6,7],[6,7],[4,8],[5,8],[4,8],[3,7],[1,1],[3,8],[2,9],[3,8],[1,9],[2,9],[10,12],[10,13],[10,13],[10,14],[9,13],[8,14],[8,14],[8,14],[7,15],[7,15],[6,15],[9,15],[9,16],[8,15],[8,16],[7,17],[7,16],[6,17],[6,16],[6,17],[5,17],[4,17],[4,17],[4,18],[3,17],[2,18],[2,17],[2,18],[11,46],[11,47],[12,46],[12,47],[13,46],[13,46],[13,46],[14,46],[0,6],[0,5],[0,5],[-2,5],[-1,6],[-2,4],[-3,5],[-2,5],[-4,4],[-3,4],[-4,4],[-5,3],[-9,2],[-10,2],[-9,3],[-9,3],[-9,3],[-9,4],[-8,5],[-8,5],[-8,5],[-5,4],[-4,4],[-4,5],[-3,5],[-3,5],[-3,6],[-2,5],[-2,6],[-1,6],[-1,6],[-1,6],[0,6],[0,6],[1,5],[2,6],[1,6],[6,21],[5,20],[6,20],[7,20],[7,20],[5,15],[5,14],[4,15],[3,15],[3,14],[2,15],[4,12],[5,11],[4,11],[6,10],[5,11],[7,10],[6,10],[7,10],[7,10],[7,12],[8,12],[8,12],[8,11],[9,11],[9,11],[9,11],[10,10],[10,10],[10,9],[8,9],[9,9],[8,9],[7,10],[7,11],[7,10],[13,23],[13,23],[13,23],[13,24],[11,24],[6,12],[6,13],[6,12],[7,12],[7,12],[8,11],[8,11],[8,11],[9,11],[24,26],[23,26],[23,27],[22,27],[6,8],[5,10],[5,9],[4,9],[4,10],[3,10],[3,10],[2,10],[2,10],[2,10],[1,10],[0,11],[0,10],[1,24],[0,25],[0,24],[-1,25],[-1,24],[-2,24],[0,6],[-1,5],[-1,5],[-1,6],[-3,5],[-2,4],[-3,5],[-4,4],[-4,4],[-4,4],[-6,2],[-6,3],[-5,4],[-6,4],[-5,4],[-4,5],[-5,5],[-4,5],[-3,5],[-4,9],[-3,9],[-3,9],[-3,9],[-2,9],[-1,10],[-1,9],[-2,10],[-3,10],[-2,11],[-1,10],[-1,10],[0,11],[-1,22],[-1,22],[0,21],[0,22],[-1,15],[-1,15],[-2,15],[-2,15],[-3,14],[0,13],[0,12],[0,12],[2,12],[1,12],[2,12],[3,12],[3,12],[4,12],[4,12],[19,35],[18,37],[17,36],[18,36],[0,12],[0,12],[1,11],[2,12],[2,11],[2,12],[3,11],[3,12],[7,25],[6,25],[5,25],[5,25],[5,17],[5,18],[3,17],[4,18],[3,17],[2,18],[2,18],[1,18],[0,18],[1,17],[-1,18],[0,23],[0,22],[-1,23],[-1,22],[-2,22],[-2,23],[-3,22],[-32,112],[-4,18],[-4,17],[-5,17],[-6,17],[-6,17],[-6,17],[-7,17],[-32,129],[-6,15],[-6,16],[-5,16],[-5,15],[-4,16],[-4,17],[-3,16],[-4,16],[-4,17],[-3,16],[-2,17],[-2,16],[-1,17],[-2,100],[2,13],[1,12],[0,13],[1,13],[-1,12],[-1,13],[-1,12],[-2,13],[-2,12],[-3,12],[-1,12],[-1,16],[-3,27],[-1,27],[-2,27],[0,27],[-1,28],[6,18],[7,18],[7,18],[8,18],[8,17],[8,17],[10,17],[10,20],[11,20],[9,21],[10,20],[9,21],[8,21],[8,21],[8,21],[16,36],[16,36],[16,36],[15,36],[14,36],[14,37],[14,36],[14,37],[13,37],[17,94],[8,39],[9,39],[9,39],[10,39],[5,18],[5,18],[5,18],[3,19],[4,18],[2,18],[15,77],[16,87],[5,78],[12,54],[4,33],[6,35],[11,35],[5,18],[6,19],[7,21],[12,30],[23,70],[11,32],[24,41],[14,31],[53,117],[15,59],[34,86],[13,34],[9,27],[17,50],[16,33],[14,29],[17,23],[14,22],[16,31],[59,107],[48,112],[37,108],[34,71],[24,47],[17,48],[36,87],[13,32],[10,22],[14,27],[14,32],[10,26],[13,31],[20,32],[11,22],[12,33],[8,26],[10,36],[15,36],[9,20],[8,29],[2,20],[1,21],[-4,25],[-7,23],[-6,26],[-13,69],[6,26],[7,16],[8,31],[2,33],[4,5],[9,11],[18,0],[23,-1],[15,0],[24,11],[23,20],[16,29],[7,17],[5,33],[0,25],[-1,28],[22,70],[2,25],[-3,32],[7,37],[11,29],[13,28],[21,23],[15,12],[23,20],[21,19],[20,26],[8,21],[7,29],[10,30],[16,36],[14,29],[17,31],[19,30],[17,29],[11,23],[7,26],[6,34],[1,28],[0,29],[0,22],[-1,13],[-5,21],[-11,32],[-9,15],[-4,26],[0,33],[0,23],[1,30],[-3,21],[-3,23],[13,60],[-7,49],[-13,19],[-8,21],[-1,26],[27,36],[18,24],[4,16],[12,21],[14,11],[17,19],[12,14],[19,6],[16,-1],[12,3],[19,12],[20,22],[20,32],[19,40],[32,95],[2,21],[5,20],[9,18],[12,18],[15,15],[18,12],[19,9],[26,16],[26,20],[22,15],[22,23],[26,32],[41,38],[22,19],[11,15],[15,26],[11,22],[6,24],[1,11],[0,17],[-1,16],[-4,13],[-9,13],[-11,7],[-17,10],[-16,7],[-16,9],[-13,8],[-14,20],[206,1458],[349,1126],[6,32],[19,24],[25,24],[40,31],[31,40],[-2,47],[0,34],[-23,33],[-25,14],[-14,7],[-15,7],[-13,28],[21,10],[22,32],[23,17],[17,31],[12,60],[1,47],[-14,44],[-20,68],[-17,51],[-29,65],[-18,51],[-26,36],[-10,40],[2,40],[32,21],[36,26],[42,31],[82,130],[30,67],[32,55],[13,65],[13,67],[12,52],[-4,30],[-1,26],[-11,44],[-5,40],[-2,40],[-15,25],[-8,23],[-26,22],[-26,8],[-32,7],[-20,1],[-25,8],[4,22],[10,24],[13,25],[7,31],[16,19],[21,19],[25,10],[2,13],[0,25],[6,18],[14,10],[13,-3],[18,-16],[18,-11],[21,0],[32,12],[23,7],[35,28],[20,24],[21,33],[16,45],[11,49],[6,48],[1,29],[-4,20],[-10,20],[-28,14],[-26,16],[-19,11],[-17,7],[0,21],[-8,18],[-15,22],[-11,15],[-18,9],[-13,6],[-11,11],[0,25],[5,20],[17,16],[18,1],[22,22],[17,26],[8,26],[3,27],[6,23],[16,26],[23,12],[32,-1],[26,1],[19,14],[18,25],[16,24],[15,18],[26,8],[18,9],[18,43],[17,43],[23,68],[14,51],[5,35],[11,41],[8,53],[11,74],[-5,34],[-10,25],[1,14],[5,8],[9,12],[11,8],[15,25],[8,21],[12,21],[8,19],[11,17],[4,18],[5,14],[7,6],[8,13],[11,21],[7,16],[9,20],[6,18],[3,15],[7,20],[2,13],[11,45],[-25,535],[-3,568],[-15,23],[-11,97],[-6,38],[1,20],[8,18],[6,13],[2,15],[-1,22],[-4,22],[1,12],[6,10],[22,21],[16,14],[2,12],[0,21],[13,16],[4,17],[43,37],[28,27],[7,14],[3,16],[2,23],[1,17],[1,13],[-6,14],[-5,18],[-2,17],[4,19],[13,17],[3,9],[-1,11],[1,20],[3,28],[8,17],[17,11],[24,11],[25,11],[27,14],[81,20],[16,13],[4,17],[3,22],[8,14],[10,2],[13,4],[21,18],[21,26],[10,20],[2,23],[0,27],[-2,44],[3,18],[11,23],[23,30],[29,24],[18,23],[7,17],[2,16],[7,20],[18,20],[8,26],[0,21],[-6,20],[-7,4],[-11,6],[-9,19],[-1,45],[3,28],[17,27],[11,23],[2,25],[-19,52],[-15,29],[-3,14],[-1,22],[3,13],[14,17],[5,18],[1,28],[1,19],[3,14],[12,13],[8,25],[1,22],[7,25],[5,36],[10,21],[10,17],[7,32],[5,33],[2,28],[9,22],[49,54],[6,17],[8,11],[20,11],[18,1],[15,-1],[5,5],[5,12],[0,15],[0,15],[4,15],[12,12],[9,5],[8,8],[4,15],[0,19],[-9,23],[-6,17],[-12,24],[-3,22],[1,12],[6,10],[9,3],[8,5],[4,6],[1,11],[0,13],[-4,11],[-10,12],[-6,9],[-6,8],[-5,8],[-1,9],[4,10],[3,17],[1,16],[2,12],[8,6],[13,-1],[26,0],[16,9],[8,10],[3,13],[0,15],[0,14],[9,12],[5,6],[5,8],[5,12],[23,55],[9,34],[9,54],[3,36],[6,21],[16,29],[29,35],[17,46],[1,28],[1,39],[-3,39],[-7,23],[-21,57],[-6,27],[-7,41],[-11,28],[-32,60],[-48,73],[-9,32],[-3,23],[3,21],[17,22],[112,109],[15,22],[13,30],[7,36],[2,36],[-4,33],[-17,38],[-11,27],[-7,33],[1,29],[3,35],[-1,43],[-14,47],[2,19],[8,18],[9,22],[1,29],[-7,25],[13,201],[-6,25],[-3,26],[7,20],[25,9],[14,7],[9,8],[4,14],[1,1],[0,6],[0,7],[0,1],[-3,13],[-12,18],[-5,16],[0,20],[9,36],[18,23],[38,21],[44,8],[22,13],[12,18],[0,28],[-13,30],[-19,22],[-21,39],[-11,20],[-23,32],[-9,22],[-2,23],[14,74],[-2,16],[0,21],[3,17],[8,11],[13,12],[3,12],[8,49],[0,30],[-9,129],[-12,76],[-1,55],[-5,30],[0,27],[0,36],[-3,86],[-5,181],[-4,48],[-17,48],[-38,75],[-15,63],[-3,65],[-2,82],[2,50],[2,49],[-4,37],[-7,19],[-18,5],[-40,8],[-32,18],[-14,26],[-9,68],[-1,79],[19,54],[32,43],[40,23],[15,28],[3,8],[17,2],[16,5],[15,7],[13,9],[12,12],[9,13],[7,15],[4,15],[1,16],[-1,16],[-4,25],[1,25],[10,10],[12,8],[13,7],[14,5],[15,42],[16,41],[6,41],[-1,42],[-5,41],[-10,41],[-15,39],[-20,38],[-74,38],[-156,-322],[-81,41],[147,316],[20,28],[-130,52],[147,324],[127,-49],[64,154],[149,314],[99,-39],[-150,-302],[35,-17],[760,722],[15,-18],[18,-16],[21,-13],[22,-10],[24,-6],[25,-3],[25,1],[24,5],[23,9],[21,12],[19,15],[36,43],[40,41],[41,38],[45,36],[-281,-44],[-73,29],[-289,204],[55,69],[315,-215],[265,37],[-25,112],[-13,26],[-11,27],[-4,3],[-3,4],[-3,5],[-1,4],[-1,5],[0,5],[1,5],[2,4],[2,4],[7,16],[10,15],[12,12],[29,10],[27,13],[26,15],[24,18],[17,30],[13,31],[8,32],[6,24],[2,24],[-3,24],[-7,23],[-10,22],[-15,20],[-25,19],[-23,22],[-19,25],[-8,3],[-186,-240],[-9,6],[19,24],[-18,12],[5,7],[17,-13],[112,145],[49,64],[-24,17],[31,40],[41,-29],[117,150],[-43,27],[26,33],[37,-33],[259,369],[9,-5],[225,263],[110,-89],[36,0],[37,4],[35,10],[33,14],[31,19],[27,23],[-1,35],[3,34],[8,34],[12,33],[17,31],[20,29],[25,26],[41,28],[43,27],[69,66],[67,68],[62,72],[59,75],[55,77],[51,79],[47,82],[43,84],[39,86],[-17,34],[-21,32],[-26,28],[-5,4],[-5,4],[-5,5],[-3,6],[-2,6],[-1,6],[0,7],[1,14],[3,15],[5,14],[8,13],[9,10],[16,26],[19,23],[24,19],[21,13],[23,10],[49,57],[116,103],[47,80],[33,76],[4,20],[9,31],[8,6],[40,-2],[15,10],[3,4],[22,33],[22,41],[14,39],[11,44],[15,41],[4,45],[-3,46],[1,33],[12,42],[15,42],[15,45],[20,38],[20,41],[26,35],[16,42],[16,29],[32,31],[27,33],[33,26],[19,40],[19,39],[23,39],[22,38],[23,39],[24,38],[22,38],[5,27],[2,28],[20,39],[2,44],[7,23],[22,38],[19,22],[4,5],[2,2],[1,1],[23,26],[22,38],[20,18],[24,20],[27,35],[30,31],[20,9],[7,0],[22,9],[6,3],[18,0],[4,-4],[-1,425],[-5,11],[5,10],[23,15],[12,35],[2,46],[1,43],[-1,44],[-18,38],[-3,31],[-5,16],[10,11],[29,20],[31,31],[5,21],[9,45],[11,43],[19,36],[8,21],[-4,30],[-17,40],[-26,35],[-26,36],[-13,199],[-584,1851],[-234,655],[-263,499],[-598,1021],[-765,735],[-517,1028],[-370,1774],[48,433],[41,768],[230,1578],[-88,1087],[1116,2119],[117,227],[-85,541],[-62,9],[-45,10],[-29,15],[-11,16],[-2,32],[-4,26],[-6,26],[1,43],[1,45],[-2,41],[-10,45],[-8,43],[0,42],[0,43],[-10,43],[-5,43],[-4,43],[-5,28],[3,31],[19,26],[4,9],[-11,38],[-2,32],[-4,21],[5,20],[9,24],[2,32],[17,11],[19,3],[21,-6],[11,-13],[15,-42],[20,-39],[8,-7],[33,-5],[36,4],[19,11],[7,4],[34,29],[30,31],[14,40],[18,41],[15,41],[9,40],[-3,43],[-8,44],[-19,40],[-17,39],[-11,31],[-26,38],[-20,33],[-32,29],[-43,18],[-44,17],[-40,21],[-22,18],[-20,28],[4,28],[11,16],[36,26],[29,24],[8,19],[1,45],[4,44],[6,34],[0,45],[-6,33],[-11,38],[-4,27],[-16,42],[-8,30],[-3,12],[-11,43],[-14,41],[-14,43],[-23,39],[-24,39],[-24,36],[-18,39],[-5,30],[1,46],[-3,37],[-11,43],[-14,36],[-8,42],[-4,19],[6,15],[13,14],[6,4],[8,27],[0,18],[1,25],[-2,43],[-2,29],[-10,24],[-23,8],[-17,6],[-1,8],[11,7],[34,4],[46,3],[46,1],[46,-5],[46,-18],[37,-25],[37,-24],[27,-10],[19,3],[24,24],[6,15],[-3,22],[-17,26],[-9,14],[6,21],[15,12],[24,9],[2,8],[-5,32],[-14,10],[-42,18],[-25,4],[-46,-1],[-45,-6],[-37,-2],[-45,13],[-16,6],[-3,17],[0,40],[-14,10],[-18,11],[0,7],[5,18],[-6,15],[-32,24],[-5,7],[3,42],[-9,43],[-13,31],[-29,23],[-13,43],[-20,41],[-2,23],[-2,27],[-7,23],[-7,21],[-18,36],[-11,44],[-8,45],[-13,42],[0,43],[-2,30],[-15,37],[-19,24],[-26,6],[-32,5],[-31,10],[-2,6],[9,19],[12,6],[45,1],[13,3],[4,25],[2,45],[2,44],[4,43],[4,17],[10,24],[1,7],[3,31],[11,42],[7,43],[3,42],[-3,43],[-9,43],[-10,41],[-10,43],[-10,44],[-12,41],[-7,43],[1,43],[8,41],[14,31],[8,18],[-6,13],[-11,0],[-46,-9],[-46,-7],[-46,1],[-13,10],[-10,25],[-3,42],[-4,45],[-7,43],[-11,41],[-10,43],[-6,43],[-2,44],[0,43],[-1,43],[1,44],[4,44],[8,42],[8,43],[9,32],[14,15],[28,14],[45,6],[45,0],[17,6],[6,12],[-2,20],[-26,28],[-18,25],[-2,21],[9,36],[20,38],[22,38],[31,32],[33,28],[30,24],[26,33],[23,39],[14,32],[-3,44],[-6,45],[1,44],[-9,42],[-22,39],[-4,42],[1,44],[3,43],[3,43],[9,44],[9,43],[10,42],[11,43],[9,42],[8,44],[4,43],[4,43],[5,44],[6,42],[3,28],[1,15],[7,44],[6,45],[4,42],[-2,29],[-17,25],[-17,21],[-9,31],[-6,44],[0,45],[0,43],[-1,43],[1,43],[1,42],[-1,45],[-9,42],[-12,39],[-23,38],[-23,35],[-8,11],[-16,2],[-5,-45],[-124,13],[15,137],[252,2387],[112,-9],[31,202],[83,-6],[6,18],[19,15],[34,8],[30,13],[16,41],[10,42],[6,44],[1,43],[-1,43],[0,37],[1,44],[0,43],[1,42],[5,44],[4,34],[-197,21],[0,-3],[-1,-4],[-1,-3],[-2,-4],[-3,-2],[-3,-3],[-4,-2],[-3,-1],[-4,0],[-4,0],[-4,0],[-4,2],[-3,2],[-3,2],[-3,3],[-2,3],[-1,4],[-1,3],[0,4],[1,4],[4,51],[1,4],[2,3],[2,3],[3,2],[3,2],[3,2],[4,1],[3,0],[4,0],[4,-1],[3,-1],[3,-2],[3,-3],[2,-2],[2,-4],[1,-3],[3,-23],[195,-22],[8,63],[9,43],[7,42],[5,44],[7,43],[6,44],[3,45],[2,44],[3,42],[10,42],[12,43],[9,43],[9,43],[9,42],[8,42],[9,43],[8,42],[10,41],[0,2],[1,6],[-109,41],[-7,-15],[-3,-2],[-3,-3],[-3,-2],[-4,-1],[-4,-1],[-4,0],[-4,1],[-4,1],[-4,2],[-3,2],[-3,3],[-2,3],[-1,4],[-1,3],[-1,4],[24,58],[2,3],[3,2],[3,2],[4,2],[4,1],[4,0],[3,0],[4,-1],[4,-1],[3,-2],[3,-3],[2,-3],[2,-3],[1,-3],[1,-4],[0,-4],[-7,-19],[108,-40],[9,52],[12,41],[19,39],[25,35],[29,33],[31,33],[32,29],[36,29],[34,30],[32,30],[34,28],[15,16],[58,54],[221,237],[208,203],[36,42],[87,100],[75,54],[28,11],[14,12],[11,23],[5,4],[31,31],[27,33],[25,37],[4,13],[-11,21],[-29,32],[-1,22],[11,25],[5,4],[19,20],[37,26],[37,24],[40,22],[41,15],[38,11],[45,-2],[28,-12],[34,-28],[35,-28],[33,-28],[37,-28],[41,-21],[21,2],[18,14],[22,39],[22,37],[18,18],[41,19],[42,17],[25,18],[8,18],[-7,43],[-1,32],[15,31],[22,38],[0,18],[-14,42],[-12,42],[-10,41],[0,43],[8,34],[22,37],[27,37],[27,35],[25,22],[22,2],[24,-12],[14,-6],[45,2],[33,8],[23,16],[27,33],[20,13],[45,3],[45,8],[29,16],[36,27],[33,28],[26,36],[16,40],[5,30],[1,27],[6,42],[8,42],[10,43],[13,41],[48,27],[44,50],[-12,46],[3,34],[23,37],[13,12],[13,11],[13,16],[41,38],[6,25],[-6,49],[2,17],[40,27],[50,28],[48,-7],[74,-32],[68,-9],[11,15],[20,24],[11,17],[14,15],[8,10],[8,29],[20,22],[22,11],[20,7],[19,10],[14,17],[2,18],[-2,23],[11,10],[21,26],[27,33],[16,30],[5,21],[-5,18],[-13,19],[-7,16],[2,7],[10,2],[5,3],[6,9],[2,11],[-3,17],[-10,12],[-12,10],[-4,18],[4,16],[6,12],[2,11],[1,9],[2,14],[15,20],[13,9],[409,543],[-11,5],[-15,14],[-6,12],[1,20],[12,14],[20,12],[22,5],[14,6],[8,14],[5,40],[-22,131],[-14,55],[-15,34],[-4,40],[-9,49],[-15,27],[-12,9],[-20,9],[-17,-2],[-14,-9],[-8,-15],[-5,-8],[-9,-11],[-7,-2],[-7,2],[-20,5],[-23,30],[-10,40],[7,35],[3,15],[0,2],[10,24],[11,29],[71,95],[51,17],[25,7],[47,-3],[21,-10],[6,-6],[8,-6],[5,-15],[0,-1],[1,-9],[1,-21],[12,-11],[16,0],[19,9],[14,6],[14,1],[19,-10],[19,-10],[26,-3],[30,-2],[68,4],[47,12],[44,17],[33,16],[32,18],[59,41],[27,19],[-85,75],[301,305],[3847,3870],[309,314],[181,-155],[81,65],[24,136],[50,50],[45,91],[168,107],[39,25],[46,10],[88,-17],[8,-5],[26,-15],[61,17],[43,13],[13,0],[16,23],[-11,23],[-42,29],[-46,31],[32,5],[19,15],[19,3],[95,76],[34,0],[22,0],[16,10],[12,32],[7,1],[6,-8],[23,-35],[10,-21],[1,-15],[0,-13],[-1,-8],[4,-15],[5,-16],[2,-10],[4,-5],[17,-8],[13,-3],[10,-3],[15,-7],[12,-16],[7,-33],[2,-13],[5,-11],[8,-11],[6,-5],[5,-4],[5,-3],[16,1],[11,1],[14,-2],[13,-4],[12,-7],[10,-14],[5,-15],[2,-14],[1,-14],[-1,-9],[0,-5],[1,-9],[5,-7],[7,-7],[13,-9],[64,-25],[34,-6],[27,-6],[14,-5],[14,-10],[14,-13],[12,-19],[11,-36],[17,-56],[3,-12],[2,-8],[3,-31],[-6,-16],[-7,-11],[-7,-12],[-12,-11],[-4,-7],[-2,-9],[-3,-8],[-5,-9],[-7,-7],[-8,-5],[-7,-9],[-6,-8],[-7,-12],[-4,-9],[-3,0],[-6,2],[-6,6],[-3,9],[0,10],[-3,6],[-4,11],[-4,4],[-6,-1],[-7,-4],[-8,-3],[-6,-1],[-5,0],[-4,2],[-10,3],[-5,1],[-4,-3],[-2,-4],[3,-5],[7,-5],[6,-6],[0,-4],[-3,-4],[-8,-5],[-6,0],[-9,-2],[-9,-7],[0,-7],[2,-6],[4,-5],[7,-6],[5,-7],[0,-6],[-4,-5],[-5,-4],[-7,-5],[-6,-4],[-1,-1],[7,-4],[13,-2],[16,6],[10,3],[13,5],[11,5],[10,1],[11,1],[6,-1],[4,-9],[5,-14],[5,-11],[1,-9],[-4,-14],[-3,-14],[3,-12],[10,-15],[13,-16],[8,-15],[7,-19],[27,-100],[9,-40],[10,-33],[14,-30],[8,-27],[8,-18],[4,-21],[9,-19],[6,-12],[7,-8],[6,-13],[3,-12],[8,-13],[6,-10],[18,-24],[50,-45],[59,-52],[4,-7],[1,-7],[-4,-11],[0,-1],[47,-26],[11,16],[7,15],[4,16],[1,18],[-2,14],[-7,19],[-5,23],[-13,34],[-10,21],[-8,15],[-12,18],[-10,11],[-10,14],[-36,45],[-7,10],[-1,16],[3,12],[4,16],[3,17],[3,12],[-2,7],[-7,14],[-17,19],[-23,24],[-14,17],[-16,20],[-8,15],[-10,18],[-3,13],[1,9],[2,11],[-5,16],[-8,16],[-9,21],[-25,59],[-6,15],[2,8],[6,9],[11,9],[15,13],[9,13],[8,16],[8,17],[9,16],[3,14],[2,7],[5,9],[5,4],[12,0],[19,1],[14,-7],[14,-9],[11,-10],[14,-12],[10,-15],[3,-6],[5,-4],[5,-5],[8,-7],[11,-11],[11,-20],[6,-10],[6,-8],[11,-14],[10,-9],[10,-9],[27,-22],[10,-13],[4,-8],[6,-13],[8,-13],[12,-10],[14,-10],[14,-6],[11,-3],[18,-4],[13,-6],[6,-4],[18,-6],[11,-1],[11,2],[16,6],[11,7],[10,12],[5,14],[-1,14],[-7,13],[-8,11],[-10,17],[-11,17],[-10,20],[-7,17],[-9,23],[-10,11],[-13,18],[-12,21],[-10,18],[-7,20],[-6,18],[-5,21],[-6,15],[-5,14],[-4,23],[-3,29],[0,5],[3,15],[2,17],[2,16],[7,11],[12,8],[12,5],[8,4],[11,10],[3,10],[0,20],[-5,21],[-8,16],[-11,16],[-11,13],[-15,15],[-16,30],[-4,19],[-5,13],[-5,11],[-8,16],[-7,22],[-2,16],[-5,17],[-1,5],[5,8],[4,11],[-8,14],[-13,35],[-34,62],[-14,41],[-15,58],[-12,30],[-10,11],[-5,45],[-4,22],[-1,1],[-5,2],[-3,-2],[-3,5],[-14,36],[-23,47],[-4,15],[4,20],[11,21],[9,23],[11,17],[10,9],[15,8],[12,10],[9,9],[-1,6],[0,8],[2,7],[5,4],[16,7],[24,4],[20,1],[15,0],[22,4],[12,4],[23,7],[18,5],[16,5],[20,5],[21,5],[23,2],[13,5],[14,10],[12,10],[10,9],[16,8],[20,8],[28,10],[78,29],[56,4],[57,-3],[43,-5],[47,-6],[42,-4],[46,-7],[51,-4],[57,-3],[35,-5],[36,-4],[132,-33],[14,-5],[21,-5],[15,-4],[17,-3],[20,3],[16,5],[30,9],[27,6],[21,1],[30,-3],[25,-6],[23,-9],[28,-12],[31,-14],[28,-12],[21,-11],[21,-10],[30,-10],[24,-8],[15,-4],[16,-1],[17,1],[20,1],[15,4],[16,7],[14,8],[16,13],[13,21],[14,23],[6,14],[16,37],[7,16],[12,18],[8,15],[12,11],[18,13],[13,4],[14,1],[13,-2],[14,-7],[13,-16],[3,-14],[-2,-22],[-1,-21],[0,-16],[0,-21],[1,-18],[0,-24],[1,-12],[2,-13],[5,-18],[3,-7],[11,-10],[11,-8],[24,-13],[23,-8],[29,-9],[15,-3],[15,-4],[33,-17],[15,-21],[3,-23],[5,-52],[6,-62],[273,7],[-5,64],[88,5],[-11,213],[-8,0],[-17,472],[42,2],[8,-123],[25,0],[-3,43],[46,1],[27,-606],[247,15],[0,67],[11,22],[5,17],[4,17],[0,18],[-2,17],[-5,26],[-3,25],[-9,25],[-1,1],[-1,4],[-1,4],[0,5],[1,4],[1,5],[13,20],[11,21],[1,13],[2,12],[3,11],[1,20],[-2,19],[-5,19],[-9,18],[-11,17],[-7,8],[-1,2],[-1,2],[-1,3],[1,2],[0,2],[1,3],[1,2],[20,18],[33,26],[11,3],[13,3],[6,-2],[6,-3],[13,-10],[11,-12],[6,-20],[10,-30],[14,-57],[19,-177],[-4,-109],[8,-41],[7,-38],[1,-33],[1,-31],[5,-44],[-2,-69],[-7,-79],[10,-66],[3,-59],[8,-39],[6,-27],[5,-22],[2,-29],[2,-30],[0,-26],[-4,-27],[-6,-72],[-11,-58],[0,-66],[-6,-13],[-13,-19],[-8,-12],[-13,-14],[-8,-15],[-12,-6],[-18,1],[-11,0],[-17,-8],[-18,-12],[-11,-12],[-10,-8],[-10,-3],[-14,0],[-13,-3],[-6,-4],[-8,-8],[-14,-33],[-7,-16],[-6,-8],[-5,-12],[-3,-14],[2,-13],[6,-10],[9,-8],[7,-6],[-1,-12],[-6,-5],[-7,-3],[-11,-2],[-8,-5],[-7,-13],[1,-15],[7,-14],[9,-12],[-6,-42],[4,-18],[2,-14],[1,-25],[7,-10],[4,-3],[2,-10],[-6,-39],[-4,-6],[-2,-7],[-3,-40],[-4,-19],[-8,-34],[-7,-14],[-9,-21],[-10,-12],[-1,-5],[-8,-17],[-6,-27],[-18,-69],[-3,-16],[-3,-4],[-6,-12],[1,-13],[-4,-26],[-3,-15],[-2,-33],[-9,-26],[-7,-18],[-6,-9],[-6,-19],[-2,-22],[1,-34],[-6,-26],[2,-8],[2,-52],[3,-26],[2,-8],[7,-3],[11,0],[7,5],[2,9],[3,20],[4,67],[6,76],[6,27],[10,31],[13,32],[2,14],[7,46],[6,24],[35,104],[7,21],[10,21],[7,32],[17,66],[7,14],[4,15],[3,15],[2,19],[0,32],[6,56],[6,21],[12,20],[19,23],[14,8],[21,7],[18,2],[12,0],[10,-4],[26,-15],[11,-2],[8,-3],[7,-8],[13,-19],[21,-50],[24,-73],[5,-15],[3,-14],[7,-13],[8,-10],[11,-7],[1,-1],[32,-87],[10,-22],[6,-12],[6,-13],[7,-11],[6,-3],[6,4],[22,21],[37,28],[22,7],[26,-1],[53,-18],[18,-21],[8,-21],[28,-73],[19,-54],[16,-38],[12,-21],[10,-15],[8,-19],[9,-19],[9,-16],[12,-18],[10,-8],[7,2],[5,12],[-1,26],[-30,118],[-38,111],[-7,30],[-6,22],[5,15],[12,19],[15,10],[18,1],[26,-9],[27,-9],[18,-12],[13,-12],[12,-9],[15,-7],[30,1],[33,10],[15,11],[15,16],[2,10],[10,22],[6,4],[24,4],[15,-6],[16,-8],[11,-6],[7,-3],[9,6],[5,22],[3,11],[7,59],[2,59],[7,35],[10,31],[9,14],[5,7],[21,25],[28,21],[68,29],[27,10],[18,7],[11,-2],[11,-9],[17,-10],[6,3],[20,20],[16,20],[36,26],[7,1],[11,8],[18,10],[24,-7],[20,-14],[3,-4],[-1,-5],[-4,-6],[-3,-5],[-4,-15],[0,-8],[0,-10],[2,-7],[4,-6],[8,0],[8,2],[13,8],[3,11],[4,11],[7,6],[11,0],[14,-9],[34,-36],[32,-36],[26,-33],[12,-9],[13,-12],[14,-19],[7,-25],[0,-17],[-2,-15],[1,-7],[6,-12],[7,-14],[7,-27],[6,-30],[3,-15],[-3,-13],[-1,-14],[1,-8],[2,-8],[5,-21],[8,-42],[7,-37],[7,-19],[6,-9],[7,-8],[6,2],[-4,14],[1,13],[3,10],[5,3],[2,1],[124,-63],[57,-37],[14,-10],[7,-2],[5,7],[-6,10],[-15,9],[-129,91],[-38,25],[-14,14],[-7,17],[-19,183],[-4,140],[4,107],[7,48],[-1,32],[-2,32],[2,20],[15,63],[5,9],[5,10],[11,9],[21,15],[19,7],[29,-6],[15,-7],[11,-4],[14,4],[25,11],[38,16],[22,11],[30,3],[114,6],[76,-6],[52,-10],[29,-8],[44,-19],[30,-19],[15,-10],[11,-14],[3,-7],[5,-13],[4,-12],[3,-6],[15,-4],[8,1],[16,3],[12,13],[31,37],[3,6],[7,15],[20,46],[-1,7],[-3,21],[-8,77],[0,35],[0,26],[-2,9],[-8,5],[-12,8],[-20,21],[-8,12],[-2,23],[14,15],[6,5],[14,11],[8,13],[11,24],[11,34],[4,20],[0,27],[1,28],[-3,16],[-7,43],[0,6],[9,13],[4,10],[-1,13],[-3,14],[-10,10],[-16,3],[-17,2],[-14,34],[-33,99],[-53,171],[0,57],[5,9],[6,11],[0,16],[4,14],[9,6],[11,-14],[17,-17],[14,-22],[7,-11],[9,-9],[11,-6],[19,-1],[17,7],[21,18],[15,25],[23,47],[18,37],[16,52],[2,26],[0,30],[12,79],[19,34],[23,8],[31,5],[27,5],[32,6],[45,18],[55,16],[35,-3],[25,-8],[42,-16],[22,-27],[20,-13],[25,-14],[22,-12],[22,-7],[14,-2],[22,3],[1,1],[16,11],[13,19],[12,16],[11,16],[3,7],[8,9],[9,4],[24,6],[18,0],[131,-44],[26,-19],[32,-23],[3,-3],[13,-13],[13,-21],[10,-10],[29,-23],[40,-37],[61,-55],[90,-63],[27,-24],[33,-34],[39,-33],[31,-24],[30,-29],[36,-38],[53,-61],[53,-56],[39,-30],[29,-19],[27,-17],[16,-14],[4,-3],[17,-26],[11,-26],[0,-25],[4,-35],[4,-22],[15,-27],[6,-16],[-8,-26],[-17,-20],[-23,-18],[-18,-35],[-12,-41],[-9,-50],[-7,-42],[5,-50],[12,-44],[17,-31],[16,-24],[16,-17],[16,-14],[2,-2],[13,-8],[15,-6],[15,7],[24,18],[19,5],[24,4],[23,-4],[26,-12],[77,-22],[3,0],[36,-21],[9,-13],[6,-19],[6,-20],[4,-17],[2,-9],[1,-1],[9,-21],[10,-14],[7,-13],[-5,-17],[-18,-17],[-15,-9],[-23,-2],[-12,2],[-18,1],[-11,-3],[-12,-4],[2,-7],[13,-4],[13,-7],[6,-12],[-18,-15],[-18,1],[-4,-6],[1,-20],[-11,-28],[-24,-10],[-17,-8],[-31,-17],[-20,-15],[-9,-12],[2,-13],[1,-11],[5,-4],[19,8],[29,13],[33,8],[12,0],[5,-9],[2,-27],[5,-21],[8,-17],[20,-25],[10,-14],[7,-6],[8,-8],[16,-7],[29,4],[15,16],[13,11],[13,7],[9,-2],[6,-5],[14,-2],[33,9],[49,-16],[31,8],[28,5],[13,11],[15,4],[14,-9],[14,-6],[5,8],[15,31],[31,29],[5,14],[10,17],[10,19],[29,36],[26,27],[57,23],[54,12],[38,-3],[1,0],[21,-15],[18,-17],[10,-17],[4,-23],[-6,-17],[-10,-10],[-11,-5],[-10,-3],[-5,-9],[11,-1],[12,2],[14,-8],[15,-22],[37,-56],[7,-14],[-7,-13],[-13,-5],[-17,-10],[-28,-33],[-39,-26],[-88,-70],[-76,-53],[-31,-16],[-15,-12],[-9,-8],[-2,-10],[18,0],[26,3],[18,-2],[7,-6],[-3,-8],[-26,-28],[-17,-24],[-14,-29],[-2,-16],[6,-20],[11,-19],[12,-14],[12,-4],[17,-3],[13,-6],[7,-9],[-3,-21],[-18,-26],[-8,-20],[4,-11],[11,-12],[17,-9],[14,-8],[9,-37],[6,-41],[-5,-27],[-9,-18],[-11,-18],[-6,-17],[7,-11],[8,-13],[20,-12],[23,-13],[15,-9],[8,2],[7,6],[11,2],[7,-10],[7,-20],[8,-19],[11,-16],[9,-18],[4,-20],[3,-14],[3,-18],[-3,-11],[-3,-17],[2,-11],[4,-23],[6,-57],[2,-37],[7,-23],[1,-12],[-7,-10],[-8,-7],[-4,-5],[-5,-9],[-2,-18],[-1,-22],[0,-12],[3,-10],[3,-12],[1,-17],[0,-18],[-5,-19],[-9,-20],[-5,-8],[-4,-1],[-12,-3],[-12,-7],[-10,-5],[-8,-12],[-2,-10],[-6,-13],[-2,-16],[4,-13],[6,-8],[5,-7],[5,-9],[0,-9],[-4,-15],[-5,-13],[-6,-9],[-2,-2],[-15,-1],[-16,-1],[-34,-2],[-28,0],[-19,0],[-34,-1],[-47,-2],[-36,-5],[-21,-3],[-12,-5],[-19,-14],[-22,-17],[-104,-68],[-23,-17],[-23,-17],[-20,-11],[-17,-11],[-15,-12],[-9,-13],[-6,-12],[-4,-13],[-9,-12],[-11,-12],[-19,-12],[-22,-7],[-45,-10],[-21,-3],[-32,-5],[-30,-4],[-27,-7],[-29,-11],[-38,-17],[-22,-11],[-17,-12],[-13,-15],[-7,-16],[-3,-12],[3,-8],[5,-5],[2,-1],[5,-3],[8,1],[5,7],[11,13],[14,14],[18,18],[22,19],[18,11],[16,10],[27,8],[26,2],[53,9],[44,10],[34,10],[25,13],[15,12],[40,46],[40,40],[57,43],[66,44],[29,21],[24,11],[19,7],[17,3],[18,2],[23,3],[22,2],[29,4],[25,2],[26,5],[26,5],[22,-1],[21,-2],[14,2],[10,4],[9,7],[7,13],[3,15],[4,17],[-1,16],[-11,30],[1,15],[4,9],[8,7],[10,3],[11,1],[9,2],[3,2],[8,9],[15,17],[8,31],[3,70],[-1,11],[5,12],[14,18],[7,13],[7,6],[0,44],[-10,16],[7,202],[11,249],[28,0],[108,242],[-15,4],[79,146],[36,-17],[-175,-354],[39,-34],[12,-253],[561,27],[129,240],[573,-165],[55,199],[410,-107],[99,-39],[5,-13],[19,-43],[49,-33],[67,9],[171,-84],[102,90],[497,-203],[35,-79],[113,-44],[34,10],[163,762],[72,-13],[-135,-748],[125,-51],[44,-54],[84,-33],[67,-25],[104,-8],[118,822],[311,-55],[-155,-1208],[235,-161],[48,-33],[101,792],[97,-17],[-113,-833],[174,-163],[91,-85],[104,826],[86,-10],[-115,-853],[32,-13],[32,-11],[59,-18],[60,-14],[61,-9],[62,-4],[62,0],[129,849],[232,-16],[8,70],[33,8],[33,-11],[65,-44],[85,-28],[46,0],[227,-110],[0,-46],[244,-91],[-378,-1422],[161,-51],[128,-41],[229,603],[91,-27],[-222,-562],[260,-54],[51,77],[157,533],[104,-27],[-203,-516],[-11,-88],[118,-20],[50,70],[30,-7],[7,-81],[204,-41],[46,-16],[247,1153],[52,-9],[-212,-1017],[-17,-153],[6,-55],[37,174],[23,33],[11,27],[7,21],[26,40],[19,9],[21,6],[21,2],[22,0],[21,-4],[20,-7],[46,-62],[32,-55],[-4,-41],[11,-55],[30,-10],[18,-20],[6,-53],[1,-101],[33,-171],[46,-28],[29,-18],[5,-4],[18,-16],[62,-75],[57,-11],[39,40],[2,7],[10,26],[11,27],[10,20],[9,19],[6,16],[6,11],[13,22],[25,177],[16,239],[-22,4],[10,184],[70,-6],[-23,-425],[178,-12],[7,-93],[298,-14],[3,-110],[158,-2],[32,701],[67,4],[-25,-711],[363,-4],[54,1023],[76,-2],[-57,-1024],[434,-32],[2,34],[163,-8],[-7,-315],[257,-10],[9,208],[41,526],[78,-3],[-37,-526],[-23,1],[2,-42],[469,-5],[43,1135],[41,-2],[-53,-1135],[82,-214],[31,-78],[29,-36],[59,-51],[44,-28],[81,-17],[59,2],[79,5],[92,13],[72,11],[84,28],[73,19],[60,0],[86,-5],[86,-47],[66,-19],[40,-19],[28,-13],[25,0],[36,-4],[16,-1],[59,46],[3,57],[-10,51],[-8,38],[0,2],[0,109],[0,34],[17,55],[167,17],[130,22],[-49,449],[99,13],[53,-452],[3,-29],[528,49],[-42,583],[-82,701],[91,10],[73,-701],[355,46],[72,-100],[1,-2],[17,-40],[12,-29],[52,-44],[120,-10],[91,-91],[108,-198],[71,-289],[105,-64],[9,-8],[11,-7],[12,-4],[12,-3],[12,-1],[13,2],[12,3],[11,5],[30,83],[-87,277],[21,313],[63,76],[10,34],[6,54],[0,1],[0,32],[6,18],[23,37],[31,39],[194,28],[200,-977],[19,6],[7,78],[-162,1025],[722,124],[70,-98],[915,142],[-22,104],[535,115],[218,-19],[105,-38],[50,-79],[156,-82],[48,-43],[21,-11],[41,-21],[43,-25],[26,-35],[16,-15],[44,-15],[41,2],[16,3],[15,5],[14,7],[13,9],[11,10],[9,12],[7,14],[-57,98],[15,91],[46,17],[37,3],[24,0],[19,-1],[26,-4],[52,76],[39,109],[-18,9],[58,179],[61,3],[53,-17],[30,-9],[32,-10],[86,-27],[10,-27],[38,-22],[45,-5],[65,-14],[65,-8],[24,3],[39,25],[55,55],[18,22],[22,60],[2,34],[-41,203],[-12,110],[15,42],[52,41],[88,29],[35,-12],[27,-24],[309,54],[47,-211],[120,40],[58,188],[104,91],[162,64],[294,60],[217,51],[397,56],[25,-54],[33,8],[12,84],[243,27],[753,85],[31,10],[28,14],[27,18],[23,21],[19,24],[16,27],[-16,113],[1029,251],[-1,19],[440,108],[2,-19],[398,97],[31,-102],[499,-29],[19,-93],[32,-38],[62,-33],[54,-36],[51,-10],[95,-21],[64,1],[40,1],[51,22],[50,30],[61,35],[30,44],[58,26],[11,63],[418,-49],[237,-28],[55,-6],[-127,-221],[236,-219],[212,-68],[344,-165],[34,54],[279,456],[116,-24],[-302,-482],[62,-33],[-27,-45],[380,-224],[48,113],[184,-54],[10,64],[-48,533],[54,5],[49,-612],[10,-135],[421,18],[15,-85],[169,11],[191,1],[81,-139],[3,-112],[27,-22],[64,-26],[60,-352],[74,6],[-21,152],[-9,47],[-14,39],[-2,42],[0,30],[-1,35],[-13,75],[17,90],[6,48],[4,92],[17,62],[334,100],[41,5],[32,0],[31,-1],[44,-17],[33,-13],[19,-8],[26,-21],[50,-35],[-81,778],[-88,-9],[-16,62],[451,66],[4,-59],[-309,-60],[85,-796],[40,-16],[76,-24],[68,-18],[74,-7],[72,6],[81,21],[78,8],[203,37],[112,-1],[51,-13],[53,-13],[30,-18],[60,-11],[77,-16],[64,-10],[30,14],[49,26],[48,33],[67,33],[58,24],[69,31],[37,26],[21,22],[2,35],[-5,31],[21,24],[67,52],[138,64],[203,114],[47,-38],[80,-111],[29,-23],[19,19],[-106,171],[-32,44],[-52,43],[-17,48],[1,42],[30,50],[-5,39],[4,32],[20,47],[1,2],[1,1],[18,28],[8,6],[12,2],[26,4],[-3,21],[-13,-1],[-10,41],[32,6],[9,-44],[-4,0],[4,-18],[457,72],[11,-4],[24,-31],[37,3],[-1,46],[-14,70],[-51,-7],[4,-31],[-24,-4],[-6,41],[74,12],[-2,6],[13,2],[5,-24],[7,2],[17,-108],[30,9],[-18,103],[10,2],[-5,25],[9,2],[3,-5],[124,26],[4,-8],[-128,-29],[22,-112],[171,57],[38,-13],[38,93],[13,-4],[-43,-96],[38,-19],[45,104],[3,-2],[25,70],[14,-5],[-67,-182],[41,-28],[70,167],[15,-4],[-64,-173],[289,-260],[42,-2],[44,10],[29,5],[223,59],[144,45],[-22,90],[225,51],[-11,48],[-205,591],[63,20],[201,-590],[40,7],[10,-34],[14,-9],[64,12],[140,26],[-237,680],[49,19],[246,-705],[240,50],[7,26],[-52,180],[23,9],[-138,446],[-15,-3],[-38,93],[77,29],[118,-387],[38,-33],[101,-324],[12,-36],[152,49],[-32,121],[124,42],[-92,252],[66,20],[82,-256],[38,9],[34,-21],[41,-10],[66,-135],[106,18],[33,-9],[34,-10],[29,-9],[9,-11],[72,23],[36,24],[-13,31],[-54,135],[-177,424],[54,21],[175,-424],[257,103],[-9,21],[-91,237],[-93,218],[-118,292],[47,17],[58,-159],[60,-147],[72,-153],[63,-133],[46,-135],[35,14],[6,-12],[186,72],[-20,52],[17,7],[-278,680],[51,22],[263,-650],[17,6],[38,-85],[9,-22],[90,36],[172,69],[-314,736],[49,19],[309,-738],[185,74],[144,243],[192,148],[17,-15],[300,248],[309,254],[-151,334],[56,73],[658,305],[23,-45],[-623,-307],[-9,-24],[135,-275],[136,103],[64,-76],[636,459],[307,225],[-59,74],[459,301],[28,-38],[-402,-263],[25,-36],[30,22],[112,69],[355,234],[733,295],[125,25],[417,64],[105,-3],[284,-10],[272,0],[616,-2],[1289,3],[47,52],[155,30],[34,39],[134,15],[43,-57],[20,-22],[22,-11],[45,-7],[48,-1],[45,-3],[22,5],[18,16],[30,14],[358,-13],[468,-73],[393,-105],[3,7],[8,0],[22,56],[-49,23],[6,14],[46,-21],[4,13],[25,-9],[-41,-82],[4,-2],[-3,-7],[642,-204],[293,-52],[261,-7],[564,-6],[187,249],[1520,2],[842,141],[656,218],[363,95],[32,8],[-10,80],[1021,482],[245,91],[642,275],[326,104],[584,411],[59,49],[53,10],[20,-14],[188,137],[163,120],[824,358],[395,139],[297,35],[237,-26],[9,-4],[43,-9],[41,-14],[40,-18],[37,-22],[63,-39],[66,-36],[68,-31],[71,-26],[72,-23],[73,-17],[828,-205],[219,-28]],[[222218,231064],[-80,-133],[-184,65],[-454,-58],[-374,327],[-235,123],[-150,211],[417,335],[395,139],[466,-246],[214,-361],[-15,-402]],[[237044,223483],[-8,-10]],[[237036,223473],[-59,-53],[-66,-30],[-71,-23],[-52,-10],[-43,-18],[-45,-21],[-54,-9],[-108,4],[-108,8],[-108,11],[-107,15],[-90,8],[-149,21],[-149,15],[-150,12],[-150,7],[-150,2],[-150,-2],[-150,-7],[-150,-11],[-149,-15],[-149,-21],[-125,-26],[-124,-31],[-122,-36],[-121,-42],[-118,-46],[-116,-52],[-114,-56],[-111,-61],[-4283,982],[-94,30],[-246,7],[-118,57],[-104,-34],[-116,19],[-171,4],[-204,-4],[-143,72],[-77,-15],[-263,50],[-375,104],[-160,119],[-301,163],[-219,323],[-73,206],[-54,109],[-116,349],[-45,187],[-9,89],[-150,482],[-108,186],[-166,178],[-143,77],[-74,14],[-147,-40],[-153,15],[-125,-25],[-102,47],[-126,11],[-81,67],[-48,55],[-397,1868],[127,789],[511,2263],[204,227],[48,51],[46,74],[27,50],[333,280],[-10,11],[12,6],[-50,80],[-11,-3],[-30,37],[44,25],[29,-38],[-19,-11],[45,-80],[16,10],[10,-8],[32,39],[-34,64],[-8,-2],[-88,138],[22,11],[89,-136],[-5,-3],[32,-57],[272,152],[31,-60],[22,10],[23,2],[26,-8],[148,-18],[95,-17],[153,-30],[94,-5],[40,7],[53,18],[125,30],[93,50],[92,65],[63,48],[67,42],[26,35],[-126,45],[33,37],[-63,48],[33,65],[72,-48],[-74,166],[-62,6],[-1,17],[-237,47],[12,54],[87,-3],[-9,-32],[156,-42],[9,42],[230,-31],[0,-1],[-24,-67],[-74,8],[-13,-16],[99,-250],[179,78],[170,29],[68,-10],[65,-11],[7,-2],[62,-13],[36,-8],[33,-9],[28,-10],[34,-14],[34,-17],[27,-14],[27,-16],[32,-21],[69,-46],[29,-21],[31,-24],[5,-3],[13,-6],[12,-6],[19,-14],[29,-21],[42,-32],[31,-26],[15,-14],[9,-8],[33,-35],[47,-50],[19,-20],[63,-60],[59,-57],[63,-58],[76,-69],[97,-89],[85,-75],[95,-82],[37,-33],[28,-28],[28,-28],[28,-31],[70,-81],[65,-76],[83,-100],[49,-54],[55,-62],[28,-30],[51,-50],[44,-43],[26,-25],[58,-50],[52,-44],[25,-24],[10,-11],[8,-10],[37,-55],[47,-72],[30,-45],[14,-19],[18,-23],[18,-20],[21,-19],[23,-18],[24,-17],[52,-32],[26,-14],[18,-9],[17,-6],[7,-2],[7,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[0,0],[1,1],[0,0],[0,0],[0,1],[0,0],[0,0],[0,0],[0,0],[0,1],[-4,13],[-7,15],[-12,26],[-15,34],[-4,8],[-19,42],[-4,15],[-2,7],[0,7],[0,13],[2,12],[2,9],[1,3],[2,3],[4,4],[4,4],[6,4],[6,4],[4,2],[4,1],[5,1],[1,0],[2,-1],[4,0],[5,-2],[9,-4],[5,-3],[4,-3],[11,-9],[15,-15],[17,-22],[17,-23],[19,-29],[33,-58],[17,-25],[15,-19],[24,-27],[13,-14],[37,-40],[13,-12],[16,-13],[10,-8],[9,-6],[9,-4],[7,-2],[2,-1],[10,-2],[28,-4],[72,-15],[23,-6],[33,-11],[36,-11],[11,-5],[8,-5],[43,-30],[54,-38],[50,-32],[31,-19],[37,-21],[27,-15],[22,-8],[59,-20],[60,-20],[55,-22],[14,-3],[30,-5],[13,-2],[67,-18],[61,-19],[55,-15],[30,-7],[41,-6],[34,-3],[33,-2],[65,1],[10,0],[35,-1],[12,-1],[10,-2],[47,-12],[58,-15],[24,-4],[54,-6],[62,-10],[23,-5],[50,-12],[23,-5],[37,-7],[31,-5],[69,-8],[75,-10],[42,-5],[48,-2],[84,-2],[69,-3],[45,-3],[0,0],[38,-4],[30,-5],[30,-7],[51,-13],[69,-19],[64,-18],[69,-20],[89,-26],[79,-24],[52,-16],[75,-26],[78,-26],[62,-24],[74,-26],[34,-14],[36,-16],[24,-12],[19,-10],[58,-39],[26,-19],[11,-7],[8,-4],[9,-4],[28,-9],[47,-13],[19,-8],[22,-11],[27,-15],[24,-16],[70,-51],[98,-71],[51,-38],[57,-40],[70,-48],[43,-26],[67,-44],[64,-41],[59,-37],[34,-23],[31,-24],[13,-11],[29,-29],[14,-12],[57,-46],[58,-50],[27,-22],[25,-18],[56,-34],[23,-16],[22,-15],[8,-8],[19,-19],[5,-4],[5,-4],[16,-10],[24,-12],[39,-16],[13,-7],[16,-10],[21,-17],[9,-9],[20,-20],[11,-10],[20,-13],[30,-17],[33,-16],[12,-7],[9,-6],[8,-8],[9,-10],[10,-12],[18,-28],[6,-8],[14,-17],[18,-17],[52,-41],[21,-20],[16,-20],[14,-19],[11,-18],[25,-47],[14,-23],[11,-17],[28,-37],[49,-60],[52,-61],[59,-65],[33,-35],[56,-53],[41,-37],[40,-33],[26,-18],[62,-37],[27,-18],[22,-16],[54,-45],[32,-23],[52,-32],[72,-48],[58,-38],[15,-9],[14,-7],[13,-5],[12,-3],[26,-4],[33,-3],[55,-4],[27,-4],[10,-3],[154,-59],[68,-37],[45,-32],[41,-29],[8,-4],[9,-3],[30,-8],[10,-4],[49,-19],[33,-14],[31,-16],[38,-22],[39,-23],[28,-18],[26,-19],[26,-20],[65,-56],[57,-45],[47,-36],[68,-52],[65,-47],[57,-41],[25,-20],[3,-3],[34,-31],[49,-49],[69,-68],[79,-83],[59,-60],[24,-27],[18,-23],[46,-66],[46,-65],[60,-78],[47,-60],[11,-16],[11,-18],[36,-63],[23,-39],[12,-25],[4,-13],[4,-15],[9,-42],[18,-97],[5,-24],[8,-33],[19,-63],[19,-77],[13,-47],[14,-55],[6,-30],[2,-14],[0,-12],[1,-67],[0,-32],[0,-13],[2,-15],[5,-22],[11,-45],[1,-3],[7,-36],[15,-80],[-18,-58],[6,-105],[11,-104],[16,-104],[20,-103],[24,-102],[32,-110],[6,-26],[3,-26],[-1,-26],[-4,-26],[-9,-25],[-164,-248],[-94,-100],[-92,-134],[-70,-169],[-89,-196],[-152,-134],[-142,-120],[-88,-31],[-11,-3],[-129,-94],[-131,-114],[-64,-59],[-52,-79]],[[221276,236156],[1154,-1251],[-940,-914],[-406,-388],[-238,55],[-734,71],[262,189],[44,994],[-199,85],[339,-6],[63,797],[655,368]],[[289405,261024],[-607,-156],[-122,694],[652,-42],[77,-496]],[[280802,266396],[-257,-426],[-1646,41],[-1022,253],[85,791],[1782,81],[158,-259],[900,-481]],[[294139,276646],[-51,-66],[-147,26],[-52,63],[-27,25],[-23,29],[-19,31],[-15,33],[-11,34],[-6,36],[0,36],[14,115],[23,28],[28,24],[31,20],[33,16],[36,10],[37,5],[37,0],[118,-144],[30,-66],[9,-74],[-14,-49],[-4,-51],[-27,-81]],[[292800,277076],[158,-512],[-68,26],[-70,21],[-71,16],[-72,11],[-73,5],[-73,1],[-73,-5],[-72,-9],[-71,-15],[-70,-19],[-69,-25],[96,125],[91,62],[-1,162],[34,150],[124,285],[151,-108],[129,-171]],[[288256,279484],[34,-36],[8,6],[18,-25],[-5,-5],[33,-43],[77,43],[124,24],[235,-1],[222,-70],[4,-17],[-1,-9],[-1,-8],[0,-23],[6,-25],[3,-17],[6,-25],[4,-15],[10,-27],[8,-29],[6,-17],[1,-30],[-1,-35],[2,-38],[4,-53],[14,-62],[7,-19],[13,-27],[13,-36],[6,-38],[12,-35],[-2,-39],[3,-53],[2,-55],[5,-59],[0,-19],[321,67],[2,-6],[53,10],[-4,16],[86,21],[10,-35],[-85,-20],[-4,10],[-52,-9],[1,-5],[-325,-64],[9,-61],[8,-37],[12,-43],[7,-35],[10,-51],[-4,-46],[-5,-43],[-20,-28],[-7,-32],[-8,-18],[-11,-26],[-8,-45],[6,-36],[10,-32],[-16,-30],[-21,-23],[-18,-17],[-12,-11],[-5,-24],[8,-35],[17,-44],[23,-53],[23,-30],[7,-11],[7,-26],[17,-8],[4,0],[23,-1],[22,0],[18,-16],[12,-27],[5,-31],[9,-34],[28,-4],[16,-46],[-6,-19],[33,-127],[-4,-28],[22,-75],[19,1],[30,-116],[-41,-229],[6,-109],[-73,-26],[-13,-4],[11,-36],[24,-37],[31,4],[10,-17],[25,4],[20,5],[12,-14],[5,-30],[6,-50],[5,-31],[4,-32],[8,-18],[0,-14],[-17,-13],[-20,-14],[-27,-17],[-17,-16],[-2,-40],[7,-43],[0,-35],[-6,-14],[-9,-21],[-10,-33],[-16,-29],[0,-15],[4,-21],[28,-45],[13,-27],[9,-32],[30,-87],[297,93],[-2,9],[136,42],[3,-6],[56,22],[-4,12],[124,34],[9,-26],[-125,-33],[-2,5],[-56,-20],[3,-6],[-438,-142],[14,-23],[32,8],[45,12],[19,-33],[241,68],[55,11],[20,2],[19,-7],[40,0],[82,13],[72,10],[30,-3],[26,-11],[17,-13],[15,-21],[17,-38],[12,-43],[131,31],[4,-16],[-140,-30],[-13,-35],[-34,-19],[-52,-21],[-19,-8],[-59,-23],[-127,-45],[-116,-41],[-41,-17],[-31,-12],[-25,-21],[-16,-19],[-7,-16],[-4,-38],[-2,-36],[9,-34],[23,-39],[222,-278],[272,-275],[24,17],[3,-4],[28,20],[10,-14],[-31,-17],[4,-5],[-20,-15],[123,-119],[13,-9],[20,-10],[22,0],[41,1],[14,-19],[-3,-12],[-7,-13],[0,-12],[5,-22],[108,-113],[109,-126],[26,-26],[32,-26],[48,-42],[226,-181],[135,6],[131,-102],[31,-14],[68,-19],[46,3],[73,21],[40,24],[50,31],[35,8],[57,14],[77,-2],[215,20],[38,13],[-2,5],[90,26],[5,-18],[-87,-27],[-2,4],[-29,-9],[178,-122],[29,-59],[67,20],[7,-20],[-69,-20],[7,-16],[91,25],[146,39],[10,-3],[12,-21],[39,17],[3,-3],[40,17],[18,6],[3,-7],[-23,-11],[-75,-32],[55,-93],[-31,-25],[-66,-38],[-119,-50],[-120,-51],[-96,-31],[-129,-38],[-79,-21],[-75,19],[50,-157],[45,10],[8,-34],[-44,-6],[10,-29],[9,-19],[12,-14],[21,-8],[18,0],[29,6],[5,1],[15,2],[26,-7],[28,-19],[39,-34],[27,-26],[24,-25],[24,11],[-4,7],[16,8],[3,-6],[102,43],[7,-15],[-70,-29],[-3,6],[-32,-12],[5,-8],[-17,-7],[-3,6],[-19,-8],[30,-31],[5,-45],[3,-16],[-5,-24],[-1,-1],[-17,-22],[-52,-44],[-47,-45],[-24,-33],[-11,-26],[3,-25],[25,-72],[5,-25],[3,-26],[29,-46],[35,-38],[14,-38],[307,-491],[27,-35],[22,-19],[28,-9],[37,4],[35,8],[29,11],[34,7],[8,0],[27,-1],[20,-8],[18,-22],[51,-86],[363,208],[143,-134],[77,62],[15,-16],[-76,-65],[21,-20],[78,60],[8,-5],[35,21],[-6,10],[112,71],[6,-8],[24,16],[-7,8],[112,69],[19,-23],[-108,-73],[-8,8],[-24,-16],[5,-6],[-110,-72],[-6,8],[-38,-19],[-81,-61],[126,-129],[44,9],[11,2],[13,9],[82,-86],[49,37],[6,-8],[-49,-37],[45,-50],[51,65],[15,-11],[-55,-69],[13,-17],[22,-4],[52,67],[14,-10],[-47,-62],[9,-3],[0,-104],[-181,-55],[-155,-55],[21,-73],[-12,-3],[-25,84],[169,61],[-5,15],[-169,-60],[-4,-36],[-12,-19],[-67,-23],[-192,-61],[-28,-9],[-37,-29],[0,-23],[-34,-54],[483,144],[82,19],[128,38],[18,-44],[90,26],[-7,34],[34,9],[133,51],[9,16],[12,0],[8,-10],[0,-12],[-12,-9],[-128,-42],[-10,-7],[0,-17],[156,46],[29,7],[16,0],[9,-4],[-4,-15],[-16,-16],[-49,-16],[-32,-11],[-102,-27],[3,-18],[97,-6],[12,6],[15,-2],[2,-8],[-5,-13],[-13,0],[-16,3],[0,-9],[-87,13],[-36,-10],[-12,32],[-220,-75],[-65,9],[-499,-134],[82,-123],[570,96],[62,-120],[-12,-154],[46,-174],[-58,-110],[-199,-137],[12,-54],[-141,-58],[-27,-60],[-74,-40],[19,-109],[13,-64],[643,149],[-7,17],[42,11],[7,-16],[261,60],[-25,106],[133,30],[36,-130],[-407,-99],[-56,-429],[-24,5],[52,381],[-360,-83],[-19,-178],[-15,3],[17,189],[382,88],[3,21],[-659,-148],[9,-23],[-115,-22],[23,-70],[-138,-38],[97,-329],[-137,-35],[36,-137],[15,-75],[-370,-110],[-1,-4],[-32,-157],[22,-1],[23,155],[309,71],[-2,9],[25,5],[-2,13],[74,18],[-2,12],[375,82],[2,-13],[-349,-77],[2,-12],[-81,-20],[4,-20],[-340,-78],[-20,-126],[14,-4],[-22,-122],[22,-65],[714,208],[42,103],[15,-6],[-45,-114],[-735,-214],[-36,97],[15,83],[-27,5],[-43,-179],[77,-55],[75,-240],[-241,-182],[5,-32],[13,-32],[9,-11],[23,-6],[29,6],[2,0],[49,13],[34,14],[25,-8],[9,-36],[21,-118],[-160,-79],[108,-157],[-248,-103],[7,-42],[309,89],[57,78],[-8,32],[1445,411],[17,0],[-19,24],[31,19],[371,-495],[-32,-21],[-343,460],[-17,-3],[119,-364],[-17,-8],[-117,361],[-296,-82],[115,-359],[-22,-5],[-110,358],[-282,-81],[120,-387],[-16,-7],[-123,388],[-267,-75],[128,-406],[-20,-6],[-127,407],[-247,-73],[137,-434],[-21,-8],[-136,434],[-219,-61],[155,-482],[-22,-6],[-110,361],[-190,-54],[135,-432],[-17,-5],[-143,447],[202,63],[-22,89],[-17,-3],[-45,-76],[-25,-19],[-305,-87],[175,-607],[91,22],[-124,444],[22,6],[125,-445],[60,15],[10,-40],[-151,-37],[14,-39],[123,27],[11,-24],[-139,-30],[67,-101],[80,-85],[95,20],[-51,187],[23,5],[45,-183],[252,56],[-90,336],[23,5],[87,-336],[289,65],[-105,404],[23,6],[100,-406],[325,74],[-112,442],[24,5],[107,-441],[336,79],[-115,457],[19,5],[114,-460],[216,48],[2,621],[40,0],[1,-690],[-41,-1],[1,55],[-1594,-366],[92,-25],[253,56],[7,-23],[-86,-18],[15,-12],[1123,259],[8,-25],[-1105,-251],[18,-67],[111,23],[5,-12],[-110,-25],[12,-76],[58,13],[-3,19],[38,9],[3,-14],[326,73],[5,-19],[-387,-90],[-2,6],[-35,-7],[-10,-31],[-2,-26],[-4,-32],[-25,-23],[1,-47],[23,-63],[25,5],[-12,40],[22,4],[6,-28],[503,170],[9,-22],[-547,-188],[35,-87],[119,36],[-4,7],[10,2],[2,-6],[15,4],[2,-4],[-142,-45],[15,-33],[139,45],[2,-6],[-15,-6],[0,-6],[-9,-2],[-2,4],[-113,-35],[13,-18],[30,-12],[59,4],[31,8],[86,23],[10,-36],[285,65],[-7,26],[32,6],[9,-22],[32,8],[-13,49],[28,9],[-39,97],[19,5],[37,-96],[71,25],[-40,101],[17,5],[44,-99],[75,26],[-47,100],[19,8],[42,-103],[68,23],[-49,103],[24,9],[45,-105],[73,26],[-42,114],[27,9],[40,-116],[31,11],[13,7],[33,12],[-37,97],[17,7],[37,-97],[40,15],[-10,32],[38,11],[11,-32],[4,-11],[14,0],[-49,297],[79,13],[64,-358],[-85,-12],[-7,50],[-21,-2],[1,-8],[-548,-188],[15,-55],[-380,-88],[7,-92],[0,-50],[0,-57],[10,-45],[11,-42],[27,-51],[27,-21],[20,-17],[16,-33],[506,117],[-53,208],[23,5],[58,-228],[-527,-123],[22,-69],[135,31],[2,-9],[-135,-31],[8,-37],[135,30],[3,-6],[-136,-30],[16,-81],[15,-39],[19,-9],[20,-7],[20,-7],[14,-14],[5,-17],[-2,-15],[-13,-14],[-15,-13],[-7,-13],[-5,-17],[0,-16],[5,-24],[10,-14],[5,-19],[0,-16],[-7,-16],[-15,-12],[-15,-14],[-6,-5],[-12,-17],[-1,-28],[6,-33],[12,-43],[14,-63],[148,38],[3,-9],[-149,-36],[14,-17],[8,-30],[56,-313],[111,24],[3,-12],[-112,-26],[11,-180],[125,21],[1,-9],[-125,-19],[9,-137],[-10,-41],[-140,-541],[-18,-46],[-77,-196],[-175,-160],[74,-282],[-308,-251],[-214,126],[-11,-10],[-43,-40],[-57,-79],[12,-120],[56,-188],[58,-60],[13,-277],[-87,-112],[-128,6],[-218,434],[-175,-75],[-271,-67],[-72,23],[-59,45],[-106,163],[-267,-141],[19,-38],[-60,-35],[-63,104],[61,37],[25,-42],[273,141],[-215,318],[-171,-19],[-318,-294],[-118,112],[23,18],[87,-78],[302,261],[-69,220],[-187,132],[49,426],[-30,190],[11,55],[-19,53],[-75,181],[-33,103],[-121,150],[-92,84],[-42,38],[-78,1],[-157,104],[-232,-7],[-249,-31],[-17,22],[-48,-20],[-4,7],[48,18],[-32,44],[-51,138],[-13,34],[0,46],[6,4],[20,14],[-13,38],[-104,316],[149,39],[25,7],[-18,47],[-65,146],[-139,-29],[2,-18],[-128,-29],[-4,9],[-158,-34],[11,-38],[15,2],[28,-125],[-40,-9],[-32,125],[14,5],[-11,34],[-21,-1],[-9,34],[178,41],[5,-11],[113,25],[-6,20],[162,28],[-34,41],[-129,-31],[-48,146],[160,46],[-4,44],[-117,187],[-27,24],[-32,6],[-34,-1],[-57,-13],[-48,0],[-2,1],[-45,12],[-26,20],[-8,19],[-71,-19],[-3,12],[69,17],[0,19],[0,15],[4,27],[12,29],[19,23],[27,20],[25,13],[42,25],[20,15],[-18,52],[-152,-50],[-5,14],[153,49],[-109,253],[-95,144],[-34,15],[-44,-8],[-6,15],[-197,-47],[-3,10],[195,48],[-116,178],[-30,3],[-16,48],[17,22],[-50,192],[-30,54],[-103,127],[-346,-94],[-25,91],[-80,-18],[4,-25],[-34,-7],[-12,51],[-44,-6],[5,-35],[-8,-2],[6,-27],[9,2],[15,-73],[-31,-5],[-16,74],[8,1],[-4,27],[-9,-1],[-21,103],[29,5],[13,-56],[43,8],[-17,100],[96,25],[-7,26],[-95,-23],[-5,19],[93,22],[-11,33],[-18,56],[39,10],[250,63],[11,53],[-7,34],[-18,38],[-38,-5],[-27,84],[73,23],[4,8],[-4,20],[-76,214],[-1,3],[-78,161],[-193,305],[-13,21],[-56,3],[-111,200],[-184,235],[-105,192],[-115,-33],[-85,-36],[-19,35],[199,68],[-163,343],[33,16],[-20,38],[-4,7],[-16,37],[-56,-9],[-1,0],[-264,-73],[-5,20],[230,62],[-11,46],[13,8],[-35,98],[-49,-5],[-32,-8],[-11,19],[-52,-12],[-11,22],[66,25],[-35,76],[-24,-4],[-37,77],[-194,-54],[-7,28],[230,75],[41,17],[-6,31],[-5,18],[-63,6],[28,268],[-159,-41],[2,-13],[-48,-6],[-92,0],[0,23],[108,6],[19,5],[0,18],[177,50],[8,92],[-62,-15],[-15,60],[146,42],[24,7],[-7,34],[-1,13],[-31,305],[-172,-25],[-6,21],[174,26],[-17,112],[33,130],[49,77],[-8,40],[114,133],[-32,64],[9,6],[33,-58],[16,55],[61,42],[-58,92],[20,11],[58,-87],[396,225],[304,272],[-48,252],[-15,88],[-187,-39],[3,-11],[-43,-10],[0,11],[-263,-50],[1,-9],[-172,-39],[8,-27],[-22,-6],[-25,69],[194,46],[9,-19],[136,22],[-2,12],[48,10],[3,-11],[79,12],[-4,12],[43,11],[3,-10],[186,39],[-93,252],[-94,-19],[-20,-19],[-4,14],[-24,-5],[5,-33],[-27,-11],[15,-49],[-62,-12],[-29,100],[163,41],[-8,28],[-41,-10],[-4,15],[107,23],[1,-12],[-45,-11],[6,-27],[57,11],[-10,80],[75,124],[-681,-158],[-4,19],[678,150],[-63,110],[-24,126],[-110,-22],[-1,7],[109,21],[-8,34],[-110,-24],[-3,6],[110,26],[-21,150],[379,86],[-31,144],[-60,-8],[-2,9],[-75,-21],[5,-19],[41,9],[5,-23],[11,0],[12,-62],[-64,-11],[-7,19],[-10,-3],[-8,36],[8,2],[-9,45],[-153,-29],[24,-120],[-19,-1],[-25,115],[-158,-31],[26,-108],[-21,-5],[-27,106],[-275,-53],[24,-104],[-20,-4],[-25,103],[-80,-14],[-2,19],[77,15],[-15,74],[19,3],[17,-73],[277,56],[-16,79],[14,3],[21,-79],[161,32],[-13,60],[26,5],[13,-59],[240,47],[-38,148],[-261,-66],[-16,43],[-445,-89],[-15,71],[446,88],[-13,67],[-19,-5],[9,-60],[-138,-25],[-5,33],[49,10],[-1,15],[75,12],[-1,10],[-17,0],[-8,53],[18,2],[-13,54],[27,6],[106,45],[-44,167],[-54,-16],[51,-147],[-21,-7],[-49,148],[-160,-46],[50,-134],[-35,-9],[-42,135],[-143,-41],[39,-134],[101,40],[12,-26],[-145,-64],[-15,27],[35,17],[-20,-3],[-36,135],[-89,-28],[6,-14],[-77,-23],[28,-105],[28,8],[6,-14],[-100,-34],[-6,15],[50,15],[-40,123],[-13,0],[-171,-54],[42,-125],[41,13],[6,-16],[-122,-38],[-4,16],[60,19],[-43,122],[-170,-49],[27,-81],[-338,-119],[6,-18],[-137,-49],[-7,21],[126,44],[-4,12],[329,116],[-21,68],[-154,-46],[-5,18],[1173,344],[-4,6],[-599,-173],[-42,110],[-80,-25],[-5,14],[80,24],[-8,33],[-84,-25],[-2,6],[83,24],[-3,12],[-1206,-364],[58,-172],[-18,-5],[-63,193],[41,12],[-61,56],[9,11],[58,-47],[10,-17],[1166,352],[-84,229],[-1256,-379],[16,-60],[-16,-8],[-61,187],[18,6],[34,-105],[1259,379],[-34,111],[635,194],[-48,128],[-169,-55],[-13,35],[-133,-35],[10,-63],[-11,-6],[-14,64],[-262,-78],[40,-134],[-30,-11],[-41,141],[-123,-36],[44,-134],[-15,-6],[-46,137],[-144,-46],[43,-134],[-15,-8],[-45,137],[-145,-44],[44,-134],[-14,-6],[-47,134],[-146,-41],[43,-137],[-12,-5],[-45,135],[-199,-62],[41,-133],[-31,-10],[-53,154],[38,10],[1258,379],[-33,93],[-157,-43],[-93,341],[-780,-229],[86,-268],[-15,-7],[-91,268],[-262,-75],[82,-270],[-18,-7],[-101,329],[16,5],[9,-37],[1069,311],[-11,86],[145,57],[-141,-44],[-4,14],[-723,-215],[-19,55],[16,6],[14,-38],[849,243],[-8,14],[-187,-53],[-123,-3],[-84,20],[-42,59],[-19,-3],[0,-7],[-432,-65],[5,-32],[-19,-4],[-19,129],[23,2],[8,-75],[428,61],[3,-3],[18,6],[-78,167],[360,168],[28,111],[-357,642],[-129,176],[-264,111],[6,81],[4,41],[43,37],[68,60],[119,-46],[51,98],[10,28],[-343,23],[1,18],[-42,5],[-5,-27],[-37,-7],[11,111],[-265,28],[-2,-19],[-24,3],[6,90],[25,-2],[-5,-47],[308,-36],[-9,-83],[40,-4],[0,9],[345,-24],[15,108],[31,30],[-83,8],[7,20],[-24,7],[6,21],[11,-1],[8,29],[25,-4],[5,25],[63,-13],[4,18],[-712,138],[-11,-36],[-16,5],[23,100],[16,-1],[-11,-48],[715,-141],[22,74],[11,-3],[8,5],[-83,38],[4,6],[82,-38],[19,34],[-85,38],[5,7],[85,-36],[48,93],[-95,-46],[-13,24],[28,15],[2,-8],[61,26],[-54,26],[-31,65],[-205,125],[-16,-24],[9,-6],[-99,-155],[-33,17],[99,158],[14,-8],[14,22],[-319,187],[-56,32],[-43,-190],[-35,-152],[-36,8],[10,47],[69,321],[46,-12],[57,-35],[532,-320],[3,8],[-514,313],[46,68],[21,-16],[-37,-51],[324,-196],[135,208],[-353,215],[-48,-70],[-6,4],[-11,7],[108,159],[5,-5],[8,-8],[-43,-71],[434,-264],[-9,-15],[-71,40],[-137,-207],[155,-100],[64,116],[84,151],[192,-86],[218,223],[-180,103],[-7,-9],[-45,24],[6,13],[-204,124],[-74,-95],[-18,12],[115,145],[100,147],[18,-9],[-130,-186],[201,-126],[10,9],[41,-27],[-6,-10],[179,-103],[88,141],[68,40],[148,88],[127,183],[108,235],[-39,49],[-7,-4],[-15,19],[9,8],[-34,38],[8,6]],[[302103,276271],[-248,-427],[-201,-501],[-302,40],[-211,-582],[481,-1347],[-612,-2463],[58,-290],[896,-1249],[100,-238],[-693,-148],[-599,659],[-745,765],[-241,429],[164,407],[259,1329],[-719,1439],[-259,70],[1,77],[-151,13],[1,17],[151,-11],[3,174],[-114,61],[-17,-31],[-30,16],[1,6],[-123,37],[-2,-10],[-27,-2],[-2,29],[14,10],[42,-9],[0,-5],[106,-35],[36,60],[-159,126],[8,8],[156,-129],[4,6],[30,-19],[-19,-29],[97,-54],[4,254],[447,32],[8,407],[-359,63],[13,178],[1,92],[-11,33],[-13,37],[-15,88],[-15,95],[8,67],[-284,-1],[-2,-41],[-94,2],[3,260],[100,-4],[-2,-130],[65,-5],[0,-39],[224,-4],[13,50],[15,34],[36,87],[20,121],[35,102],[8,136],[-11,125],[-23,187],[-11,187],[-4,99],[13,184],[8,271],[16,162],[5,209],[-19,385],[1,261],[9,415],[-8,110],[1,73],[-19,154],[-8,158],[1,107],[12,113],[4,100],[-8,95],[-27,143],[-72,382],[100,242],[834,88],[850,-594],[688,-750],[1,-542],[1876,-2013],[-1548,-464]],[[291764,280924],[21,-50],[2,-33],[4,-59],[3,-50],[4,-43],[4,-29],[22,-22],[32,-23],[10,-25],[-2,-48],[0,-47],[-3,-33],[-12,-55],[-8,-31],[-15,-26],[-44,-16],[-47,3],[1,-20],[8,-18],[5,-29],[-5,-41],[-5,-38],[-24,-46],[-14,-36],[15,-40],[-7,-32],[-19,-19],[-20,-34],[-15,-15],[-1,-20],[-2,-29],[-15,-17],[-23,-7],[-23,-18],[-18,-22],[-27,-26],[-17,-6],[-13,-12],[-13,-13],[-16,-4],[-22,-19],[-24,-10],[-36,-8],[-16,-15],[-15,-2],[-13,-3],[-8,-17],[0,-21],[-2,-24],[-3,-24],[-25,-13],[-26,2],[-12,15],[-3,24],[22,23],[6,20],[2,29],[-3,23],[-10,0],[-13,-6],[-5,-21],[-18,-7],[-8,0],[-15,24],[10,18],[2,12],[-2,14],[-21,20],[-17,0],[-9,-9],[-18,-18],[-13,-5],[-12,-1],[-15,4],[-8,13],[-9,34],[-4,35],[-6,17],[-8,9],[-10,0],[-15,-4],[-13,-9],[-13,0],[-11,10],[-7,17],[-1,11],[-22,17],[-27,13],[-31,18],[-36,10],[-38,14],[-47,12],[-44,0],[-47,-3],[-79,11],[-42,-4],[-41,-19],[-23,-11],[-28,-12],[-39,-15],[-36,-32],[-25,-37],[-37,-39],[-46,-45],[-21,-24],[-20,-13],[-18,-38],[-34,-39],[-33,-33],[-33,-14],[-5,-2],[-23,-11],[-34,2],[-39,3],[-23,13],[-9,18],[-12,13],[-23,9],[-21,8],[-25,7],[-16,25],[10,37],[34,36],[20,24],[5,31],[16,31],[20,57],[18,32],[29,42],[1,1],[31,45],[34,49],[30,33],[32,44],[-4,31],[-21,27],[-26,44],[-12,10],[-15,1],[-4,14],[3,16],[8,18],[10,16],[13,15],[10,6],[13,-5],[11,-13],[13,-8],[20,6],[15,31],[3,35],[3,34],[10,42],[0,34],[25,40],[38,17],[45,20],[58,20],[83,13],[59,3],[76,17],[61,18],[46,19],[39,3],[54,-2],[59,2],[62,9],[55,21],[54,15],[64,20],[59,8],[49,-2],[54,16],[42,32],[17,31],[14,34],[40,18],[29,0],[29,-12],[17,-20],[16,-5],[33,11],[31,18],[32,18],[36,13],[25,3],[28,0],[22,-5],[20,-20]],[[298962,281488],[-204,-356],[-174,381],[252,288],[126,-313]],[[297910,282151],[12,-14],[2,-13],[5,-16],[-2,-13],[0,-14],[0,-16],[-9,-19],[-6,-14],[-8,-19],[-9,-23],[0,-19],[-5,-14],[-14,-10],[-8,5],[-13,-14],[-15,-1],[-16,-3],[-13,-9],[2,-22],[-13,-2],[-15,-20],[-7,-15],[-2,-14],[-6,-11],[5,-10],[-11,-14],[-5,-16],[-1,-13],[1,-16],[-18,-10],[-16,-5],[-20,-4],[2,-21],[0,-15],[0,-16],[0,-13],[0,-8],[1,-6],[4,-4],[2,-3],[0,-10],[-6,-5],[-1,-9],[-4,-6],[-5,-8],[-10,-8],[-8,-9],[-8,-2],[-12,-10],[-5,-2],[-6,-4],[-10,-4],[-10,-6],[-4,-2],[-6,-14],[-7,-11],[-11,-11],[-3,-20],[-1,-14],[-1,-14],[-4,-15],[-5,-11],[-9,-3],[-19,-6],[-14,3],[-14,4],[-12,5],[-11,8],[-9,8],[-9,7],[-8,8],[-6,9],[-2,13],[0,11],[0,15],[0,11],[0,15],[0,12],[1,10],[5,10],[2,11],[9,20],[0,16],[3,12],[12,6],[14,10],[4,8],[16,11],[7,16],[7,16],[8,13],[4,8],[2,12],[9,14],[21,31],[7,11],[20,10],[16,19],[2,13],[9,14],[13,9],[14,11],[3,15],[9,8],[9,0],[19,27],[13,11],[10,14],[3,16],[1,13],[-7,12],[0,13],[1,7],[4,21],[5,11],[3,14],[12,11],[17,11],[15,12],[9,11],[14,8],[14,4],[11,3],[17,3],[11,0],[11,-1],[12,0],[15,4]],[[292630,282758],[11,-13],[13,0],[10,1],[8,-4],[14,-4],[12,-13],[4,-14],[0,-11],[8,-2],[14,-2],[7,7],[4,10],[12,4],[6,-10],[7,-30],[-2,-17],[-3,-11],[8,-22],[7,-13],[5,-23],[-1,-16],[-5,-15],[1,-15],[-3,-21],[3,-13],[1,-15],[-1,-14],[-4,-13],[1,-18],[5,-10],[9,-8],[0,-9],[0,-13],[-9,-14],[-1,-13],[2,-16],[3,-25],[-12,0],[-21,4],[-16,-2],[-4,-9],[-14,-10],[-19,0],[-15,-14],[0,-22],[3,-23],[20,-19],[-13,-16],[-4,-4],[-23,2],[-4,-13],[-1,-23],[-11,-14],[-24,-29],[-8,17],[-13,15],[-11,19],[1,21],[4,17],[-1,16],[-5,16],[-4,13],[-2,26],[-6,19],[-10,14],[-1,10],[5,12],[5,10],[0,20],[-1,17],[-3,13],[0,10],[0,16],[10,14],[11,6],[11,10],[1,16],[1,19],[8,23],[-1,9],[16,10],[8,16],[-13,5],[-11,0],[-16,0],[-19,3],[-8,7],[-9,18],[-9,30],[0,15],[17,10],[12,13],[-15,3],[-8,-7],[-8,-3],[-6,8],[-6,13],[0,10],[8,18],[9,-4],[8,0],[11,7],[9,10],[12,18],[14,13],[25,-4]],[[292081,282971],[37,-1],[36,-1],[15,8],[6,9],[6,3],[9,6],[14,0],[11,-7],[11,-6],[14,-8],[24,-3],[11,2],[7,1],[16,9],[17,-1],[16,-6],[11,-9],[16,-8],[8,-5],[7,-11],[2,-12],[-1,-9],[-2,-12],[-1,-13],[-12,-15],[-14,-1],[-19,6],[-18,5],[-25,-2],[-13,-12],[-7,-17],[-15,-16],[-19,5],[-17,-7],[1,-18],[14,-13],[8,-9],[8,-10],[19,-17],[15,-8],[12,-8],[3,-20],[-5,-16],[-5,-20],[-5,-16],[-10,-9],[-6,-10],[-3,-21],[-1,-22],[-5,-14],[-13,-12],[-1,-11],[-5,-20],[-16,-16],[-21,-10],[-20,-2],[-18,-2],[-5,-14],[1,-24],[-12,-11],[-16,1],[-20,5],[-11,-9],[-14,-16],[-13,-2],[-26,1],[-18,8],[-16,6],[-19,8],[-15,11],[-15,8],[-14,-1],[-17,-5],[-30,3],[-13,8],[-19,5],[-28,9],[-23,3],[-18,5],[-17,-2],[-18,-8],[-15,-17],[-24,-5],[-26,4],[-17,2],[-20,5],[-2,19],[9,15],[5,22],[13,6],[6,-1],[7,-1],[17,-1],[16,10],[19,13],[2,19],[2,30],[0,26],[-4,21],[-9,11],[-4,20],[0,30],[9,29],[15,27],[8,23],[13,15],[14,20],[15,16],[20,14],[14,6],[22,20],[18,0],[16,-25],[6,-13],[13,-7],[11,10],[19,18],[20,11],[15,17],[-1,18],[-23,19],[-30,15],[-13,11],[-8,12],[1,15],[11,7],[8,2],[12,0],[14,-3],[18,-4],[13,-6],[13,-6],[21,-14],[14,-11],[26,-15],[20,-6]],[[300977,284785],[-88,-275],[-271,8],[99,299],[260,-32]],[[302810,286028],[-253,-303],[-431,59],[120,552],[564,-308]],[[300258,289461],[559,-827],[-736,166],[-1105,426],[435,568],[847,-333]],[[290549,290740],[-86,-134],[-63,31],[45,246],[95,67],[148,-67],[-42,-95],[-97,-48]],[[290817,291183],[-84,-141],[-89,60],[2,98],[83,62],[88,-79]],[[298064,291481],[-79,-71],[-63,24],[-17,72],[23,100],[37,103],[-25,64],[10,125],[207,131],[66,12],[12,-63],[-47,-94],[109,-72],[-34,-158],[-137,-85],[-62,-88]],[[293068,292062],[-148,-101],[-89,121],[85,144],[117,25],[35,-189]],[[293926,293265],[-107,-153],[-75,59],[124,224],[58,-130]],[[290537,296701],[230,-150],[90,16],[103,-9],[60,-138],[-34,-163],[-125,-36],[-73,53],[-190,18],[-145,70],[-129,-40],[-44,-135],[92,-106],[-16,-146],[-125,-96],[-166,-108],[-95,68],[47,233],[-50,289],[184,367],[131,17],[255,-4]],[[214710,289929],[131,55],[159,303],[446,173],[172,541],[234,600],[106,563],[165,537],[-105,643],[-5,35],[-16,25],[-45,70],[-69,108],[-381,411],[-435,378],[-438,438],[-270,224],[-516,201],[-717,-14],[-353,-694],[-274,-168],[-1452,-952],[-535,-672],[-21,-26],[-26,-34]],[[210465,292674],[-914,71],[-45,-5],[-42,-12],[-45,-19],[-133,-63],[-42,-13],[-20,10],[-31,47],[-50,31],[-45,20],[-57,-7],[-102,18],[-7,20],[-12,9],[-11,-6],[-20,-9],[-467,176],[-433,275],[5,59],[-63,8],[-28,28],[-13,2],[-16,1],[-37,34],[-25,26],[8,24],[1,4],[-11,13],[-5,0],[-19,0],[-27,34],[-63,176],[-818,913],[-18,16],[-17,22],[-36,51],[-81,77],[-152,170],[-41,29],[-59,28],[-111,29],[0,12],[-13,-1],[-37,7],[-1,29],[-28,17],[-31,8],[-58,69],[-36,30],[-37,21],[-47,14],[-48,3],[-56,-19],[-32,-19],[-19,14],[-25,8],[-14,2],[-35,-4],[-10,-8],[-6,-4],[-22,-6],[-178,34]],[[205630,295168],[-24,9]],[[205606,295177],[-74,16],[-28,7],[-20,-10],[-46,-3],[-25,6],[-17,12],[-11,11],[-31,6],[-12,-1],[-5,-10],[-71,-2],[-83,10],[-110,23],[-17,8],[-11,-6],[-1,-23],[-26,-13],[-22,12],[-25,-3],[-16,-41],[-26,-25],[-34,-19],[-77,-13],[680,1108],[1223,3228],[274,730],[201,537],[295,792],[120,359],[377,1263],[387,1240],[173,548],[213,725],[231,787],[100,341],[111,319],[3,92],[-31,51],[-25,53],[169,204],[430,1313],[56,221],[88,349],[-7,19],[-4,20],[-1,21],[3,20],[31,31],[922,3128],[-30,86],[-123,90],[258,978],[263,800],[186,-20],[66,36],[196,629],[621,1989],[-5,20],[-8,20],[-11,18],[-14,17],[-16,14],[-29,19],[-26,23],[-22,26],[-18,29],[-4,10],[-2,11],[-1,10],[2,11],[3,10],[5,10],[6,9],[8,8],[51,29],[53,25],[56,20],[57,15],[48,59],[192,761],[-12,61],[23,40],[25,3],[8,29],[-4,25],[282,1454],[28,80],[121,681],[46,26],[8,49],[-27,53],[54,349],[10,53],[-25,68],[-17,44],[-31,78],[-65,268],[96,269],[39,30],[35,33],[33,36],[29,38],[25,40],[22,43],[2,12],[0,13],[-3,13],[-4,12],[-6,11],[-9,11],[22,58],[26,57],[31,55],[35,52],[40,49],[44,46],[31,9],[28,14],[25,16],[22,20],[19,23],[29,106],[208,565],[136,-103],[992,-306],[3750,-1575],[1148,-272],[403,-172],[1145,-457],[527,-104],[384,-184],[2579,-964],[3941,-1417],[32,-11],[35,-14],[237,-89],[505,-193],[65,-25],[397,-151],[633,-285],[961,-340],[1932,-685],[120,-37],[35,-9],[25,-9],[21,-3],[106,-46],[308,-121],[558,-206],[517,-182],[497,-204],[415,-125],[751,-263],[1236,-455],[1892,-702],[853,-327],[534,-210],[549,-178],[1066,-389],[156,21],[85,-59],[126,-77],[133,-70],[136,-62],[141,-53],[144,-44],[138,38],[154,-61],[131,-53],[60,-23],[61,-24],[113,-43],[144,-56],[48,-18],[53,-22],[396,-158],[44,68],[45,71],[153,239],[-98,70],[-114,227],[23,114],[4,19],[59,-8],[47,-5],[110,-80],[101,206],[-263,121],[-60,28],[-48,22],[-22,130],[-20,109],[-29,152],[194,176],[53,-10],[46,-9],[43,-47],[46,-51],[144,-176],[203,-58],[149,71],[-3,224],[121,196],[138,-49],[116,101],[278,564],[-38,333],[112,388],[-31,43],[-37,52],[-53,-12],[-107,30],[-46,85],[159,343],[79,4],[154,-115],[43,-32],[48,-35],[182,36],[217,157],[-1,136],[-213,35],[-42,13],[-49,15],[-261,316],[70,140],[157,82],[372,-33],[47,17],[47,18],[172,89],[241,376],[558,128],[307,582],[-57,143],[-245,35],[-298,-10],[-28,60],[-24,57],[-72,152],[199,451],[417,405],[87,51],[108,58],[153,336],[246,239],[116,41],[114,-73],[-46,-228],[126,-119],[113,-5],[304,236],[180,86],[28,137],[233,-60],[-355,-519],[-265,-387],[-171,-258],[-435,-637],[-263,-390],[556,-254],[184,-92],[530,-232],[312,-126],[322,463],[141,224],[518,-295],[432,-246],[966,-501],[525,-199],[527,-187],[348,-97],[-68,-669],[23,-364],[297,-15],[630,0],[632,-4],[612,5],[158,-515],[43,-224],[26,-308],[96,-734],[15,-61],[18,-60],[21,-60],[23,-58],[26,-58],[28,-57],[377,-639],[495,-827],[18,-58],[14,-58],[10,-60],[6,-59],[3,-60],[-1,-60],[-6,-60],[-9,-59],[-12,-59],[-17,-58],[-265,-655],[10,-428],[422,-1339],[356,-1177],[216,58],[411,-168],[665,-251],[649,-160],[1047,-451],[551,-158],[516,-191],[550,-250],[543,-186],[728,-269],[150,-56],[429,-171],[462,-181],[1249,-436],[800,-285],[153,-55],[614,-219],[119,369],[-483,-86],[-62,839],[317,102],[1388,-458],[643,-230],[54,-19],[50,-23],[699,-319],[416,-131],[615,-188],[369,-84],[170,-98],[256,-88],[54,-17],[46,-18],[940,-277],[757,-230],[719,-217],[848,-276],[288,-79],[441,-121],[720,-287],[730,-215],[955,-274],[193,-50],[179,-52],[823,-240],[610,-245],[1624,-497],[975,-324],[248,-83],[648,-193],[875,-289],[504,-166],[124,-44],[525,-219],[-137,-414],[-222,-235],[-127,-422],[-697,-1100],[-389,114],[322,-727],[-759,-2110],[-543,-633],[-47,-312],[-145,-502],[-691,-565],[-223,188],[-558,-375],[-39,-520],[-245,-512],[-372,-949],[-309,-99],[-713,-736],[-405,907],[296,410],[-429,223],[-574,-1037],[362,-152],[94,-782],[466,99],[-119,-710],[-742,-118],[-379,240],[-442,-276],[-210,87],[87,481],[-1655,1154],[18,-476],[524,-150],[-164,-455],[528,-100],[138,-684],[495,-307],[656,-107],[140,-1223],[491,400],[526,-96],[-35,-945],[497,-160],[967,1907],[1313,2401],[479,818],[539,283],[1327,445],[506,1053],[249,1198],[-15,463],[266,258],[-653,252],[-113,200],[345,734],[525,426],[68,91],[186,74],[247,117],[187,191],[88,100],[177,67],[115,8],[230,33],[133,100],[70,91],[54,142],[9,134],[27,125],[124,141],[106,75],[118,71],[50,29],[142,42],[184,-43],[-35,-484],[122,-384],[-584,-374],[335,-460],[774,-96],[321,76],[213,17],[176,-9],[115,16],[125,22],[529,27],[931,-499],[127,-539],[-330,-1051],[-443,-673],[-337,-268],[-443,-651],[-249,-583],[-45,-293],[-20,-329],[248,-172],[336,-96],[159,145],[161,180],[176,253],[107,317],[120,36],[-57,-363],[-314,-564],[75,-181],[184,-314],[538,801],[230,700],[135,34],[134,34],[154,-207],[-57,-257],[-375,-272],[141,-225],[238,-159],[221,-134],[7,-365],[-53,-186],[-62,-142],[-1,-159],[35,-92],[-9,-200],[-186,-116],[-245,-72],[-11,-3],[-142,-125],[-89,-200],[-230,-66],[-150,-117],[-36,-183],[-160,-301],[-80,-258],[-158,-354],[16,170],[36,242],[1,226],[-106,167],[-185,159],[-362,143],[-432,68],[-425,-16],[-362,-58],[-292,-83],[-416,-232],[-433,-283],[-195,-183],[-430,-475],[-556,-1794],[-224,-1294],[729,-1487],[-252,-734],[-15,-328],[-111,-39],[-113,-34],[-114,-28],[-116,-24],[-116,-18],[-118,-13],[-118,-7],[-74,-10],[-115,-42],[-45,-46],[-25,-57],[-10,-136],[50,-70],[1,-2],[123,-74],[-25,-80],[-150,-89],[-94,-28],[-45,-13],[-90,-113],[-55,-141],[-13,-102],[-84,-113],[-87,-111],[-92,-107],[-101,-313],[-100,-314],[31,-140],[34,-139],[39,-138],[43,-138],[46,-136],[51,-134],[27,-14],[24,-18],[21,-19],[19,-23],[16,-24],[13,-29],[9,-31],[4,-31],[-1,-31],[-5,-32],[-10,-30],[-4,-25],[-7,-24],[-28,-38],[-75,-45],[-29,-12],[-30,-9],[-31,-3],[-32,1],[-30,6],[-30,10],[-27,15],[-50,64],[-433,-37],[-784,-192],[-91,-96],[-86,-99],[-82,-103],[-78,-105],[-73,-109],[-68,-111],[-63,-114],[-58,-116],[-53,-118],[-48,-120],[-164,-41],[-175,161],[-118,-70],[-201,-665],[14,-73],[20,-72],[24,-70],[30,-68],[34,-67],[38,-64],[43,-62],[47,-59],[52,-56],[79,-39],[77,-43],[75,-46],[73,-49],[70,-52],[93,-801],[-240,-1046],[-698,-524],[-54,-62],[-49,-65],[-46,-67],[-41,-70],[-38,-72],[-32,-73],[-29,-76],[-23,-76],[-19,-78],[-14,-79],[-4,-55],[-8,-54],[-12,-51],[-17,-51],[-19,-46],[-23,-45],[-26,-44],[-29,-181],[-16,-27],[-19,-25],[-22,-22],[-29,-24],[-32,-20],[-34,-16],[-36,-13],[-38,-7],[-77,32],[-75,37],[-71,42],[-69,47],[-65,51],[-62,54],[-57,59],[-53,62],[-48,66],[-44,68],[-39,71],[-33,73],[-28,75],[-23,77],[-17,78],[-12,79],[-5,80],[0,80],[5,80],[-6,72],[-10,72],[-15,72],[-19,70],[-23,70],[-87,194],[-91,192],[-97,191],[-101,188],[-105,185],[-111,184],[-114,181],[-120,178],[-123,175],[-128,173],[-133,170],[-242,463],[-228,1079],[3,44],[8,43],[13,42],[18,40],[24,38],[27,35],[32,32],[35,28],[39,24],[41,20],[44,15],[45,10],[38,-1],[38,4],[37,10],[35,13],[33,19],[30,22],[26,26],[23,29],[18,32],[13,34],[8,35],[3,36],[-2,36],[-7,36],[-91,373],[-57,129],[-37,145],[-16,134],[-17,183],[-42,212],[-58,254],[-53,260],[-22,231],[-17,265],[14,149],[2,60],[2,51],[-21,105],[-9,15],[-53,86],[-57,101],[-62,168],[-42,187],[-48,222],[-23,317],[-6,159],[4,173],[30,149],[4,20],[14,145],[-26,96],[-52,106],[-34,45],[-37,43],[-42,39],[-45,35],[-48,32],[-51,27],[-53,23],[-55,18],[-57,14],[-58,9],[-58,4],[-59,-1],[-58,-6],[-57,-10],[-42,-21],[-38,-25],[-35,-29],[-31,-33],[-26,-37],[-22,-39],[-16,-41],[-11,-43],[-5,-44],[264,-1074],[-192,-119],[-264,-48],[-29,17],[-26,21],[-24,23],[-20,26],[-17,28],[-18,46],[-23,44],[-27,41],[-31,39],[-35,36],[-39,33],[-42,29],[-44,24],[-48,21],[-49,9],[-50,5],[-51,0],[-50,-6],[-49,-11],[-48,-16],[-45,-21],[-43,-26],[-40,-30],[-35,-34],[-32,-37],[-27,-40],[-22,-43],[-17,-45],[-12,-47],[-6,-47],[-1,-48],[5,-47],[65,-152],[69,-149],[74,-148],[78,-145],[82,-144],[87,-141],[2,-40],[-27,-40],[-78,-15],[-52,36],[-2122,3034],[-76,32],[-75,35],[-72,39],[-40,19],[-41,16],[-43,13],[-44,8],[-44,5],[-125,-7],[-10,-1],[-10,0],[-10,2],[-10,3],[-9,5],[-8,6],[-7,7],[-5,8],[-4,9],[-7,5],[-7,5],[-7,3],[-9,2],[-8,1],[-8,0],[-6,-2],[-5,-1],[-6,0],[-6,1],[-5,2],[-6,2],[-4,3],[-4,4],[-4,4],[-3,5],[-2,5],[-1,5],[0,5],[0,5],[1,5],[1,12],[-1,13],[-3,12],[-6,11],[-7,11],[-10,9],[-10,7],[-34,21],[-31,24],[-67,52],[-69,49],[-72,46],[-74,42],[-21,13],[-23,10],[-24,5],[-25,3],[-25,-2],[-25,-5],[-23,-9],[-7,-4],[-8,-3],[-9,-2],[-9,-1],[-8,1],[-9,2],[-8,4],[-7,4],[-6,6],[-5,7],[-4,7],[-39,73],[-41,72],[-44,71],[-47,68],[-21,22],[-18,25],[-14,26],[-10,28],[-6,29],[-1,30],[-6,14],[-8,13],[-11,11],[-12,9],[-14,8],[-15,4],[-16,3],[-16,-1],[-76,-38],[-30,-6],[-15,12],[8,35],[27,69],[20,54],[-4,29],[-31,-13],[-31,-57],[-70,-62],[-35,-52],[12,-54],[23,-23],[29,-28],[-158,-365],[-65,-52],[-68,-76],[-44,-12],[-54,-2],[-43,-16],[-39,-15],[-29,0],[-16,22],[-19,25],[-18,25],[-53,-51],[-251,-443],[-560,-1004],[52,-21],[280,-115],[238,-37],[142,125],[289,9],[-34,-176],[640,-272],[673,-1288],[264,-3636],[-2541,-62],[-105,-200],[-168,-414],[-70,-386],[-5,-57],[-10,-56],[-15,-55],[-20,-54],[-25,-51],[-18,-32],[-13,-33],[-9,-34],[-6,-35],[-1,-35],[18,-47],[2,-42],[-3,-43],[-5,-17],[-11,-36],[-9,-34],[-14,-34],[-8,-42],[11,-45],[36,-45],[14,-10],[17,-12],[36,-13],[33,16],[26,3],[8,-14],[-14,-15],[-23,-24],[-25,-16],[-33,-13],[-12,-34],[0,-40],[0,-1],[-11,-31],[-11,-24],[0,-50],[0,-63],[22,-42],[19,-28],[28,-73],[28,-45],[31,-32],[36,-21],[48,-5],[50,2],[58,-10],[62,-27],[59,-40],[53,-8],[25,19],[28,25],[8,6],[31,-10],[12,-18],[30,-43],[39,-29],[53,-8],[36,13],[35,8],[32,18],[50,-2],[10,-14],[-1,-19],[-53,-42],[-47,-20],[-14,-6],[-94,-63],[-3,-58],[19,-48],[34,-21],[-7,-38],[-55,-2],[-87,-7],[-47,-50],[-9,-91],[23,-53],[191,-271],[81,-113],[47,-69],[38,-63],[12,-82],[82,-94],[49,-26],[46,-2],[52,36],[45,-6],[1,-1],[48,-44],[-7,-71],[-61,-59],[-28,-31],[-36,-85],[-7,-57],[-1,-5],[24,-53],[1,-40],[-4,-58],[-79,-50],[-41,-67],[-8,-97],[-64,-90],[-42,-18],[-38,17],[-23,-19],[-5,-3],[-37,-50],[-22,-58],[4,-88],[-1,-58],[23,-37],[53,-34],[50,-14],[39,-5],[17,-13],[0,-24],[-25,-13],[-31,8],[-36,5],[-31,13],[-48,0],[-48,-15],[-10,-3],[-51,-50],[-25,-58],[-20,-95],[-11,-106],[-15,-182],[3,-132],[11,-151],[11,-93],[8,-31],[8,-26],[20,-23],[28,-18],[113,-57],[43,-16],[35,-10],[21,37],[-2,1],[142,201],[76,68],[184,139],[65,49],[45,38],[145,122],[2,19],[-27,28],[14,12],[83,-87],[-14,-12],[-26,26],[-20,2],[-148,-126],[-73,-57],[-120,-91],[-105,-82],[-66,-58],[-43,-60],[18,-12],[-50,-68],[-17,12],[-62,-90],[-5,3],[-7,-15],[25,-3],[29,4],[3,1],[23,5],[37,17],[217,136],[28,19],[29,15],[20,3],[25,-6],[21,-15],[26,-28],[47,29],[90,63],[69,51],[15,11],[33,23],[21,15],[28,20],[15,11],[32,23],[16,11],[33,24],[22,16],[26,18],[25,18],[23,17],[16,11],[31,23],[17,12],[33,23],[24,18],[24,16],[15,11],[33,24],[16,11],[33,24],[15,11],[32,22],[0,8],[-30,38],[12,8],[46,-56],[30,-39],[-12,-8],[-28,37],[-10,1],[-32,-23],[-16,-11],[-32,-23],[-17,-12],[-31,-23],[-17,-12],[-17,-12],[-30,-22],[-32,-22],[-17,-12],[-32,-23],[-17,-12],[-6,-5],[-100,-70],[-21,-16],[-66,-46],[-4,-4],[-94,-66],[-162,-115],[-40,-28],[156,-202],[116,22],[28,-36],[-143,-169],[31,-46],[-48,-32],[-44,-39],[-32,-30],[-36,-27],[-138,-114],[37,-73],[508,393],[134,-141],[56,30],[440,280],[27,-47],[-417,-282],[-116,-103],[-8,-29],[24,14],[308,243],[12,-12],[-316,-242],[-30,-14],[-6,-22],[48,-52],[166,106],[9,-9],[-168,-105],[25,-27],[28,-45],[80,52],[11,-18],[-82,-48],[23,-37],[107,-54],[8,19],[3,7],[3,8],[2,6],[5,12],[50,130],[1,2],[19,50],[19,47],[2,6],[17,44],[12,32],[2,7],[27,65],[3,7],[14,25],[7,13],[19,36],[47,-21],[-4,-8],[-40,19],[-15,-30],[-2,-5],[-16,-34],[-4,-7],[-10,-22],[-4,-7],[-45,-117],[-14,-37],[-6,-16],[-10,-26],[-7,-19],[-3,-8],[-13,-36],[-3,-6],[-13,-37],[-3,-6],[-13,-37],[-3,-7],[-1,0],[-5,-11],[-1,-3],[-7,-16],[-1,-4],[-2,-5],[-6,-15],[97,-49],[125,17],[13,46],[4,12],[17,53],[12,38],[3,7],[14,44],[18,55],[15,47],[3,7],[19,56],[2,8],[6,18],[15,44],[37,104],[5,12],[2,7],[18,46],[3,8],[17,46],[3,8],[18,46],[3,8],[16,44],[4,9],[18,45],[-34,12],[3,7],[78,-25],[-5,-8],[-34,10],[-16,-44],[-62,-162],[-3,-7],[-16,-45],[-3,-8],[-20,-54],[-3,-9],[-20,-53],[-2,-7],[-13,-39],[-30,-88],[-15,-47],[-3,-9],[-13,-39],[-7,-22],[-9,-28],[-2,-6],[-13,-40],[-6,-21],[-8,-24],[-3,-8],[-1,-3],[-15,-49],[23,3],[13,-16],[15,-15],[18,-12],[20,-9],[21,-6],[21,-4],[22,0],[37,-9],[37,-10],[10,31],[-83,28],[-95,-9],[-5,10],[101,9],[86,-29],[15,51],[49,164],[36,106],[35,113],[18,55],[11,38],[3,8],[43,140],[17,56],[11,40],[2,7],[13,43],[50,173],[16,53],[-46,11],[3,9],[81,-21],[-2,-9],[-30,8],[-39,-141],[-5,-21],[-2,-7],[-14,-51],[-10,-34],[-5,-16],[-3,-7],[-6,-22],[-9,-29],[-11,-38],[-2,-7],[-11,-38],[-2,-7],[-14,-47],[-2,-7],[-12,-42],[-2,-6],[-11,-39],[-3,-8],[-14,-48],[-3,-9],[-17,-49],[-3,-8],[-15,-46],[-3,-8],[-13,-39],[-3,-7],[-14,-46],[-2,-7],[-16,-51],[-2,-7],[-16,-51],[-2,-7],[-14,-47],[-3,-8],[-14,-45],[146,-39],[-5,-16],[-145,42],[-6,-26],[44,-17],[43,-20],[40,-23],[7,-9],[4,-11],[3,-11],[1,-12],[52,-13],[65,199],[-67,18],[6,18],[51,-15],[166,530],[8,-5],[136,409],[-4,7],[-45,13],[8,21],[-8,3],[5,14],[69,-18],[19,52],[-259,73],[-83,37],[8,13],[75,-32],[263,-75],[23,76],[87,-25],[-330,-991],[-5,-14],[-48,-148],[0,-2],[-7,-19],[-8,-26],[-55,-199],[-1,-3],[-9,-31],[-42,-151],[-1,-4],[-6,-21],[-46,-165],[-1,-5],[-11,-40],[-17,-60],[-8,-29],[-69,15],[-7,1],[0,1],[43,179],[1,4],[-2,0],[-5,1],[0,0],[-2,1],[-1,0],[-29,-142],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-15],[-25,3],[13,74],[24,91],[-5,4],[-4,1],[-19,5],[0,0],[-115,28],[5,21],[7,-2],[132,-34],[-1,-5],[0,-1],[11,-3],[18,-3],[1,-1],[6,-1],[0,2],[3,12],[30,120],[-153,42],[-9,-23],[6,-2],[-6,-18],[-32,12],[-6,-18],[-87,26],[12,37],[30,-11],[6,20],[-22,6],[4,17],[-33,11],[15,47],[270,-75],[-14,-47],[0,0],[24,-6],[57,208],[-52,15],[-4,-9],[-6,-9],[-6,-7],[-8,-6],[-9,-5],[-10,-3],[-10,-2],[-83,1],[-83,5],[-83,7],[-82,12],[-61,2],[-60,6],[-61,9],[0,53],[-27,5],[-26,8],[-14,1],[-14,-2],[-14,-4],[-13,-5],[-11,-8],[-11,-9],[-8,-11],[-7,-12],[-5,-12],[-31,-9],[-32,-4],[-33,-9],[-30,-13],[-28,-17],[-26,-21],[-22,-24],[-18,-26],[-14,-29],[-10,-30],[42,17],[157,42],[-3,18],[73,20],[6,-20],[25,5],[5,-15],[-127,-31],[1,-12],[-35,-10],[-6,13],[-48,-12],[-92,-28],[2,-33],[8,-33],[13,-31],[18,-28],[23,-25],[27,-22],[30,-17],[33,-12],[35,-7],[30,5],[11,1],[53,-5],[42,-10],[39,-28],[20,-13],[10,-28],[3,-6],[25,-36],[24,-28],[17,-40],[7,-47],[5,-44],[13,-41],[13,-36],[8,-38],[3,-39],[-3,-38],[-7,-38],[-13,-37],[-18,-35],[-23,-32],[-5,-4],[-5,-3],[-6,-2],[-6,-1],[-6,0],[-31,4],[-31,-1],[-30,-5],[-30,-9],[-34,-1],[-35,-4],[-33,-9],[-33,-12],[-30,-15],[-32,2],[-32,-2],[-31,-6],[-30,-10],[-29,-13],[-44,-25],[-46,-19],[-49,-15],[-50,-10],[-51,-4],[-51,0],[-50,6],[-50,12],[-48,16],[-43,10],[-67,151],[-58,268],[-3,12],[-6,11],[-8,10],[-9,9],[-11,8],[-56,30],[-54,34],[-52,36],[-9,6],[-8,7],[-7,9],[-5,9],[-4,10],[-1,10],[0,11],[1,12],[-1,12],[-4,12],[-5,11],[-7,10],[-9,9],[-11,7],[-11,5],[-13,4],[-12,1],[-13,-1],[-279,-2],[-38,-6],[-37,-11],[-4,0],[-5,-2],[-3,-2],[-4,-3],[-3,-3],[-2,-4],[-1,-4],[-1,-4],[0,-5],[1,-4],[1,-4],[2,-4],[11,-6],[9,-8],[8,-10],[7,-11],[4,-12],[3,-12],[0,-12],[-2,-13],[-1,-23],[-5,-23],[-10,-22],[-13,-21],[-16,-17],[-19,-16],[-22,-12],[-14,-3],[-14,-2],[-15,0],[-14,2],[-8,4],[-8,5],[-7,6],[-5,7],[-5,8],[-2,8],[-1,2],[0,2],[-1,2],[-2,1],[-1,2],[-2,1],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-5],[-1,-5],[-3,-4],[-3,-4],[-3,-3],[-4,-3],[-5,-2],[-13,13],[-15,10],[-17,8],[-18,5],[-18,2],[-19,-1],[-18,-3],[-18,-7],[-11,-10],[-13,-9],[-14,-7],[-16,-4],[-16,-2],[-16,0],[-15,4],[-15,5],[-14,8],[-12,10],[-11,12],[-8,13],[-5,14],[2,14],[4,13],[6,12],[2,4],[2,4],[0,4],[0,4],[-1,4],[-1,4],[-2,4],[-3,3],[-3,3],[-4,2],[-4,2],[-4,1],[-5,0],[-22,6],[-22,4],[-23,1],[-59,17],[-57,21],[-56,25],[-205,3],[-251,-12],[-2,-10],[0,-10],[1,-10],[3,-10],[5,-9],[6,-8],[7,-6],[5,-6],[4,-7],[3,-7],[2,-8],[0,-8],[-1,-8],[-2,-7],[-4,-8],[-4,-16],[0,-16],[1,-17],[5,-16],[14,-1],[13,0],[14,2],[13,5],[12,6],[11,8],[9,9],[22,29],[25,26],[30,22],[40,10],[36,5],[35,1],[36,-2],[36,-6],[22,-5],[22,-7],[30,-14],[27,-18],[25,-20],[22,-23],[19,-25],[16,-27],[12,-28],[23,-36],[27,-33],[31,-30],[11,-3],[12,-2],[12,0],[11,3],[261,48],[7,-3],[15,-6],[18,-14],[12,-22],[-3,-38],[0,-4],[0,-24],[22,-16],[11,-8],[27,-29],[16,-30],[28,-38],[4,-30],[9,-32],[20,-28],[15,-30],[5,-18],[4,-11],[-2,-36],[-5,-38],[8,-42],[26,-51],[22,-54],[26,-51],[18,-42],[31,-52],[29,-23],[48,-20],[36,-27],[19,-18],[18,-18],[21,-31],[5,-31],[89,-194],[342,31],[1,-17],[-330,-27],[53,-48],[68,-29],[40,-7],[17,-15],[6,-29],[-1,-22],[-16,-26],[-22,-24],[-1,-1],[-22,-28],[-11,-21],[-15,-28],[-10,-42],[0,-37],[3,-25],[-10,-40],[-10,-53],[4,-48],[10,-69],[27,-80],[33,-49],[28,-19],[32,-28],[28,-25],[17,-38],[7,-37],[1,-41],[5,-36],[12,-27],[19,-20],[269,116],[-4,11],[25,12],[18,-29],[-301,-134],[2,-26],[-3,-27],[-8,-23],[-8,-32],[8,-41],[8,-32],[10,-42],[14,-33],[21,-42],[13,-26],[12,-30],[5,-15],[6,-15],[10,-35],[5,-31],[0,-22],[8,-40],[46,10],[-1,6],[40,6],[3,-6],[4,0],[3,-13],[-5,-2],[1,-5],[-40,-9],[-1,5],[-47,-8],[27,-173],[20,-167],[103,-210],[273,47],[2,-10],[-269,-49],[5,-12],[6,-8],[8,-5],[5,-1],[8,0],[8,4],[7,2],[7,0],[7,-3],[2,-8],[-3,-13],[-3,-14],[-9,-11],[-7,-18],[0,-22],[2,-27],[3,-18],[153,29],[3,-5],[54,12],[-2,6],[44,5],[4,-21],[-47,-7],[-1,7],[-52,-8],[1,-5],[-155,-26],[14,-93],[-53,-289],[-375,-173],[-7,-28],[-17,-25],[-16,-8],[-15,2],[-1,1],[-5,7],[-22,3],[-16,-3],[-32,-38],[-43,-30],[-43,-13],[-38,0],[-29,-15],[-25,-28],[-48,-40],[-59,-66],[-44,-54],[-37,-68],[-46,-51],[-22,-68],[-24,-71],[-2,-40],[21,-24],[13,-25],[0,-26],[-14,-22],[-8,-8],[-18,-18],[-35,-40],[-27,-38],[-17,-51],[0,-33],[19,-43],[5,-87],[8,-94],[3,-94],[5,-76],[10,-79],[5,-81],[16,-84],[14,-58],[26,-49],[41,-38],[24,-15],[21,-31],[-5,-22],[-19,-33],[-3,-54],[13,-79],[27,-96],[29,-76],[20,-69],[50,-25],[35,-34],[21,-22],[24,-16],[41,13],[46,10],[32,5],[21,18],[35,10],[27,0],[13,-18],[0,-23],[-24,-20],[-43,-8],[-40,3],[-27,-15],[-46,-15],[-70,-16],[-53,-20],[-37,-21],[-6,-4],[-9,-48],[0,-43],[3,-46],[17,-32],[4,-9],[19,-23],[16,-7],[35,-1],[30,8],[53,0],[43,0],[27,15],[22,0],[27,0],[16,-5],[-3,-15],[-19,-23],[-54,0],[-37,-3],[-59,-10],[-67,-20],[-41,-23],[-9,-8],[-26,-25],[-5,-58],[-11,-61],[2,-63],[8,-49],[30,-28],[10,-14],[17,-24],[-1,-40],[-13,-38],[0,-1],[-24,-43],[-6,-48],[-13,-61],[5,-66],[27,-56],[18,-28],[0,0],[25,-5],[32,0],[53,8],[38,2],[38,15],[19,0],[10,-13],[0,-10],[-24,-15],[-43,-13],[-73,-15],[-64,-20],[-8,-14],[-14,-21],[0,-31],[-5,-68],[0,-41],[10,-64],[6,-43],[-1,-38],[13,-47],[60,16],[4,-12],[-61,-18],[30,-173],[27,-54],[15,-29],[14,-27],[11,-25],[12,-16],[17,-6],[15,11],[16,8],[15,-8],[6,-20],[-7,-11],[-18,-7],[-24,-21],[-16,-35],[-1,-8],[-6,-42],[1,-47],[4,-54],[14,-57],[15,-59],[1,-37],[12,-42],[24,-47],[25,-24],[13,-22],[-3,-14],[-8,-33],[29,-50],[13,-61],[39,-117],[1,-14],[7,-25],[8,-38],[9,-31],[20,-36],[21,-24],[22,-11],[10,-6],[4,-14],[7,-19],[4,-27],[-3,-33],[8,-40],[11,-54],[20,-63],[31,-40],[25,-31],[27,-23],[11,-16],[10,-18],[12,-1],[17,-2],[18,-7],[7,-11],[-1,-10],[-9,-7],[-6,-10],[-17,-7],[-2,-1],[-14,-5],[-4,-12],[4,-15],[6,-23],[10,-28],[9,-27],[13,-23],[16,-15],[10,-6],[11,-5],[3,-3],[6,-5],[1,-14],[3,-18],[7,-57],[3,-48],[3,-37],[22,-71],[20,-56],[16,-17],[224,126],[13,-23],[-231,-120],[50,-130],[30,-21],[20,-21],[19,-17],[25,-27],[20,-26],[21,-21],[16,-17],[258,156],[-5,7],[122,70],[10,-13],[-120,-76],[-5,5],[-254,-156],[6,-6],[18,-30],[16,-30],[22,-25],[16,1],[16,11],[12,2],[16,0],[11,-7],[5,-18],[0,-21],[-10,-14],[-11,-16],[3,-22],[4,-21],[275,160],[5,-4],[-274,-163],[17,-20],[27,-38],[45,-50],[32,-27],[36,-29],[30,-12],[20,-10],[17,-8],[21,-23],[13,-26],[9,-25],[10,-11],[20,-16],[0,-21],[-7,-29],[-22,-35],[102,58],[21,-32],[-37,-20],[-5,19],[-93,-53],[-2,-34],[20,-64],[18,-40],[40,-20],[32,-26],[9,-23],[70,42],[11,-13],[-76,-43],[2,-5],[10,-25],[8,-42],[14,-29],[15,-21],[22,-11],[18,-13],[20,9],[8,13],[24,16],[30,1],[23,-3],[6,-21],[-2,-14],[-13,-21],[-26,-7],[-16,-15],[-22,-25],[-6,-29],[4,-24],[10,-25],[18,-46],[40,-57],[28,-31],[32,-21],[28,-13],[29,-8],[34,-2],[28,13],[32,18],[33,13],[6,0],[20,0],[16,-4],[14,-19],[-17,-28],[-21,-14],[-19,-15],[-28,-15],[-26,-14],[-26,-3],[-22,-8],[-13,-19],[6,-13],[9,-6],[18,2],[18,0],[14,15],[14,0],[2,-11],[-8,-21],[-34,-12],[-19,-21],[10,-19],[29,-13],[30,-4],[36,19],[24,6],[37,-12],[9,-11],[17,-19],[24,-42],[-6,-37],[-4,-28],[-3,-5],[-12,-18],[-12,-32],[-10,-23],[2,-29],[20,-25],[26,-28],[27,-41],[209,16],[209,11],[209,7],[210,3],[209,-2],[210,-6],[209,-10],[209,-14],[11,1],[11,-1],[11,-2],[10,-5],[10,-5],[8,-7],[7,-9],[5,-9],[4,-10],[1,-10],[0,-11],[-4,-47],[-8,-48],[-10,-46],[-1,-20],[-3,-19],[-7,-19],[-9,-18],[-13,-16],[-15,-14],[-17,-11],[-18,-9],[-32,19],[-29,24],[-26,27],[-21,30],[-17,32],[-469,-5],[4,-111],[492,-5],[0,-26],[134,-3],[0,-11],[-149,-1],[1,28],[-959,9],[-1,15],[466,-5],[0,110],[-65,-5],[-66,0],[-66,3],[-65,7],[-59,6],[-59,1],[-58,-4],[-59,-9],[-57,-13],[-56,-19],[-53,-23],[-56,-21],[-58,-16],[-59,-11],[-60,-5],[-60,-1],[-14,-4],[-13,-6],[-12,-9],[-11,-10],[-8,-11],[-6,-13],[-4,-14],[-1,-14],[2,-14],[4,-13],[3,-30],[8,-28],[13,-27],[18,-25],[-91,-55],[-88,-57],[-86,-61],[-89,-67],[-34,-21],[-31,-26],[-28,-28],[-28,-36],[-23,-38],[-12,-26],[-20,-32],[-25,-29],[-30,-25],[-33,-21],[-36,-16],[-38,-11],[-18,-9],[-17,-11],[-15,-13],[-13,-16],[-9,-18],[-6,-19],[-3,-19],[1,-20],[4,-19],[8,-18],[11,-17],[13,-15],[16,-13],[22,-13],[19,-16],[16,-19],[12,-21],[9,-22],[4,-23],[1,-24],[-4,-24],[-7,-23],[-6,-26],[-9,-26],[271,42],[0,7],[224,32],[3,-20],[-221,-35],[-2,7],[-279,-41],[-15,-27],[-20,-26],[-22,-22],[-26,-20],[-23,-8],[-22,-12],[-19,-15],[-16,-17],[-13,-20],[-9,-22],[-6,-22],[-2,-24],[3,-23],[7,-39],[12,-39],[15,-38],[18,-36],[323,159],[5,-8],[-322,-160],[19,-29],[20,-11],[17,-14],[14,-16],[12,-19],[8,-20],[4,-21],[1,-21],[-3,-21],[-7,-20],[-15,-33],[-8,-27],[7,-33],[21,-38],[37,-26],[42,-11],[15,-2],[47,-9],[48,-9],[40,-18],[56,-23],[189,68],[-2,12],[42,15],[6,-16],[514,228],[8,-13],[-476,-221],[-6,5],[-34,-16],[6,-13],[-39,-12],[-8,13],[-164,-58],[22,-8],[21,-11],[18,-14],[19,-18],[15,-20],[12,-22],[9,-24],[4,-25],[1,-25],[-19,-29],[-22,-27],[-26,-24],[-28,-22],[-77,-49],[-79,-46],[-81,-42],[-129,-59],[-131,-57],[-2,-47],[3,-46],[9,-46],[13,-44],[19,-43],[23,-41],[27,-39],[32,-35],[35,-32],[314,-26],[50,132],[72,16],[21,25],[25,22],[27,19],[29,15],[32,12],[18,22],[14,24],[9,27],[6,27],[0,28],[-3,28],[-8,26],[-9,42],[-4,43],[1,42],[5,42],[4,8],[5,7],[7,7],[8,5],[8,4],[9,2],[9,1],[9,0],[27,-23],[22,-26],[19,-29],[13,-31],[25,-41],[29,-39],[34,-35],[37,-31],[41,-28],[44,-23],[46,-19],[47,-15],[50,-9],[37,7],[38,5],[39,1],[38,-2],[19,12],[17,14],[15,17],[12,19],[9,20],[43,36],[-35,84],[20,7],[33,-76],[64,30],[39,0],[36,3],[43,15],[27,9],[17,18],[4,13],[-2,21],[-13,30],[0,29],[0,29],[5,11],[2,7],[20,0],[1,-1],[16,-10],[12,-18],[11,-28],[27,-11],[17,4],[6,25],[29,44],[36,33],[43,25],[-17,186],[56,0],[14,-164],[47,17],[27,10],[71,31],[37,14],[37,20],[25,20],[23,42],[8,27],[13,22],[29,2],[27,-7],[29,-6],[61,-6],[95,33],[63,29],[78,31],[16,9],[51,78],[81,91],[56,38],[29,33],[35,38],[17,65],[14,71],[19,24],[46,23],[66,-14],[61,-33],[64,-9],[48,18],[71,23],[37,0],[39,5],[22,-16],[31,-16],[67,-13],[70,1],[52,-3],[50,-7],[9,29],[19,-2],[-6,-33],[43,-8],[37,-3],[46,18],[21,40],[10,34],[27,8],[11,-22],[6,-28],[40,-27],[33,-27],[34,-35],[31,-35],[42,-32],[23,-55],[21,-44],[30,-36],[42,0],[36,-19],[50,-11],[27,-22],[0,-21],[-12,-30],[16,-60],[32,-47],[33,-75],[30,-69],[6,-42],[0,-18],[0,-22],[11,-56],[21,-59],[14,-43],[25,-37],[18,-5],[9,-2],[32,0],[21,-16],[-5,-24],[-38,-18],[-3,-2],[-48,-11],[-23,-25],[-14,-42],[-2,-51],[16,-58],[28,-37],[33,-11],[38,-11],[33,-4],[0,0],[12,-9],[2,-12],[-8,-19],[-36,-1],[-69,-13],[-19,-16],[-3,-6],[-20,-47],[-14,-56],[13,-73],[12,-55],[27,-18],[36,6],[30,3],[38,6],[34,-4],[12,-15],[0,-16],[-27,-16],[-45,-13],[-15,-3],[-37,-8],[-17,-36],[-8,-48],[13,-83],[14,-70],[38,-63],[23,-14],[33,-19],[52,14],[52,11],[48,11],[17,-26],[-40,-20],[-48,-19],[-50,-28],[-31,-52],[3,-13],[8,-33],[29,-75],[38,-80],[52,-43],[46,18],[60,29],[50,10],[50,0],[10,-22],[-37,-18],[-44,-18],[-41,-14],[-33,-26],[-13,-32],[0,-60],[7,-42],[102,-259],[114,-290],[23,-100],[5,-74],[-21,-96],[-35,-48],[-32,-44],[-20,-464],[0,-2],[163,-498],[11,-16],[146,-193],[148,-192],[101,-131],[281,-355],[62,-77],[67,-74],[70,-70],[74,-68],[77,-64],[80,-60],[83,-57],[86,-53],[88,-49],[16,-6],[72,-20],[74,-6],[71,-4],[74,-4],[81,-2],[76,0],[54,6],[31,22],[18,55],[3,39],[2,26],[7,22],[8,23],[25,34],[33,12],[34,-19],[49,-17],[21,-7],[20,9],[12,10],[28,22],[77,14],[21,-8],[3,-61],[42,-42],[25,-19],[30,-22],[44,-17],[64,-24],[61,-30],[70,-19],[66,-17],[64,-29],[64,-41],[43,-18],[40,-4],[16,1],[61,4],[70,-13],[66,-35],[57,-62],[16,-23],[4,-18],[10,-46],[0,-66],[-4,-51],[36,-25],[62,-41],[56,-40],[63,-32],[63,-29],[67,-31],[70,-30],[60,-26],[71,-29],[73,-27],[73,-29],[65,-33],[527,-240],[51,-22],[52,-17],[54,-12],[25,-3],[24,-7],[22,-10],[21,-14],[18,-17],[50,-92],[23,-25],[49,-23],[70,-22],[63,-24],[39,-20],[115,-506],[15,-67],[-37,-35],[-170,-158],[-250,143],[-324,-181],[-239,59],[-569,-841],[-102,-328],[-234,-122],[-265,-81],[-118,-171],[-132,-215],[-85,-247],[-178,-58],[139,-240],[58,-100],[33,15],[21,-38],[-32,-16],[2,-5],[-10,-3],[-91,159],[-129,225],[-122,-40],[-35,-4],[-34,-9],[-33,-12],[-29,-15],[-27,-19],[-25,-22],[-21,-24],[-42,-38],[-46,-34],[-49,-30],[-52,-24],[-54,-20],[-56,-15],[-57,-9],[-58,-4],[-58,1],[-58,7],[-56,12],[-55,17],[-53,22],[-17,12],[-18,12],[-5,3],[-26,0],[-9,-9],[-13,-13],[-4,-2],[-15,-7],[-22,2],[-8,12],[-11,15],[-5,18],[2,20],[6,23],[56,171],[19,50],[-63,33],[-72,-132],[-26,12],[102,181],[-44,50],[-11,14],[-42,51],[-13,15],[-40,50],[-14,17],[-42,51],[-21,26],[-8,9],[-111,136],[-39,45],[-10,3],[-57,-41],[-8,9],[22,18],[82,59],[22,17],[7,-9],[-54,-43],[44,-50],[129,-154],[4,-6],[30,-34],[15,-18],[14,-18],[31,-37],[13,-15],[32,-39],[12,-14],[65,-83],[26,-10],[-34,-54],[63,-29],[33,90],[44,60],[55,24],[29,28],[11,76],[-68,19],[-3,-12],[-69,19],[6,17],[52,-15],[2,7],[82,-20],[5,33],[-43,14],[-39,12],[-1,-6],[-60,14],[3,9],[-43,55],[-4,5],[-21,27],[-15,21],[-31,40],[-4,5],[-35,47],[-3,4],[-164,222],[-48,-20],[-6,11],[-11,9],[-12,-11],[-58,60],[7,6],[-11,12],[9,6],[-10,10],[-12,14],[-23,27],[-78,89],[-37,39],[-12,-1],[-42,-34],[-5,5],[60,50],[108,-122],[13,-15],[22,-24],[20,-23],[28,-31],[19,-21],[36,-39],[47,20],[21,-29],[34,-45],[18,-23],[2,-3],[22,-29],[4,-6],[23,-31],[3,-3],[23,-31],[5,-6],[22,-29],[3,-4],[23,-30],[3,-5],[23,-30],[3,-5],[23,-30],[5,-6],[23,-30],[3,-4],[22,-29],[2,-5],[18,-24],[47,-12],[-2,-4],[40,-10],[44,-11],[15,101],[-197,345],[-31,36],[-200,239],[-180,217],[-84,2],[-28,-18],[5,-10],[-24,-14],[-24,34],[27,17],[13,-13],[22,12],[-13,12],[-7,60],[-27,57],[-42,92],[-80,119],[-9,11],[-20,51],[-23,50],[-19,32],[-26,32],[-30,29],[-33,25],[-15,31],[-19,29],[-23,27],[-26,24],[-13,9],[-10,10],[-9,12],[-7,13],[-4,14],[-13,30],[-18,27],[-22,25],[-26,21],[-29,17],[-31,13],[-345,216],[-71,22],[-148,188],[-53,-14],[-81,189],[-80,78],[-17,-7],[4,-4],[-11,-5],[23,-52],[2,1],[145,-294],[46,-59],[52,-65],[21,-26],[18,-16],[40,-34],[18,-16],[10,-8],[23,-19],[8,-7],[24,-21],[10,-8],[24,-21],[9,-7],[13,-11],[9,-7],[30,-26],[10,-9],[25,-21],[8,-7],[33,-27],[17,-15],[14,-11],[11,-10],[21,-18],[36,-31],[12,1],[15,5],[19,-18],[60,-55],[125,-164],[8,-12],[14,-19],[39,-53],[19,-25],[8,-11],[31,-41],[9,-12],[23,-31],[5,-7],[116,-155],[54,-72],[-3,-3],[11,-14],[-73,-49],[-15,21],[58,38],[-32,46],[-7,10],[-22,31],[-8,12],[-24,33],[-9,13],[-26,37],[-11,15],[-108,147],[-30,40],[-8,11],[-30,41],[-8,11],[-31,41],[-8,11],[-27,38],[-15,18],[-23,28],[-10,10],[-37,36],[-16,15],[-11,11],[-23,-9],[-68,58],[-11,10],[-37,31],[-13,12],[-32,27],[-12,10],[-21,18],[-83,71],[-7,6],[-15,13],[-87,76],[-26,23],[-73,83],[-68,85],[-42,83],[-14,28],[-6,9],[-14,25],[-7,12],[-12,20],[-5,9],[-14,23],[-4,6],[-14,30],[-5,11],[-14,29],[-6,11],[-19,44],[-59,-20],[-7,17],[82,33],[1,0],[4,0],[-17,36],[-200,-74],[27,-62],[21,-47],[34,-72],[3,-7],[3,-7],[16,-34],[3,-6],[15,-31],[3,-7],[17,-36],[3,-6],[17,-35],[42,-89],[5,-10],[15,-32],[20,-40],[-12,-3],[-101,209],[-112,250],[-27,62],[-1,0],[-8,-3],[-55,-21],[61,-246],[92,-148],[4,-10],[16,-26],[85,-225],[26,12],[5,24],[110,-22],[-7,-29],[-94,18],[-33,-15],[15,-40],[150,-64],[419,-247],[220,-333],[56,-442],[22,-222],[17,-181],[-6,-272],[-5,-74],[-5,-71],[87,-192],[158,-129],[154,-228],[100,-156],[106,-52],[194,-14],[179,-159],[164,-236],[10,-25],[102,-256],[132,-233],[141,-258],[124,-117],[176,-217],[119,-28],[354,343],[76,81],[123,-95],[90,97],[10,-5],[-87,-101],[-64,-74],[-141,-261],[841,-332],[974,-95],[1721,-959],[1235,-688],[55,-21],[38,-25],[821,-418],[350,22],[38,4],[37,8],[35,14],[33,18],[31,22],[26,26],[22,30],[14,14],[11,16],[9,18],[5,18],[2,20],[-2,19],[-4,18],[-7,16],[-10,16],[-12,14],[-15,12],[-18,11],[-20,8],[-27,18],[-25,21],[-22,24],[-18,26],[2,12],[4,12],[6,11],[8,10],[10,8],[11,7],[12,5],[12,3],[13,1],[13,-1],[87,-38],[88,-33],[91,-28],[92,-23],[26,-70],[22,-70],[17,-73],[13,-72],[8,-74],[3,-74],[-2,-73],[-7,-74],[190,-202],[109,-237],[79,-191],[27,-192],[12,-88],[-56,-253],[-81,-203],[-176,-200],[-57,-56],[-234,-171],[-349,-93],[-58,-16],[-46,4],[-46,0],[-46,-3],[-45,-7],[-45,-10],[-58,-39],[-55,-42],[-71,34],[-72,30],[-74,26],[-75,23],[-82,19],[-83,14],[-84,10],[-84,5],[-84,-1],[-77,44],[-45,86],[-43,11],[-49,44],[-168,150],[-5,145],[-311,136],[-176,273],[-75,99],[-79,96],[-83,92],[-87,89],[-90,85],[-94,82],[-97,79],[-40,4],[-104,-191],[-110,59],[-13,-22],[-182,104],[82,134],[-90,11],[-318,41],[-77,38],[-472,245],[-578,359],[-1047,940],[-480,294],[-85,73],[2,30],[-44,31],[-46,26],[-49,24],[-50,19],[-51,16],[-53,12],[-73,26],[-110,24],[-120,9],[-115,-6],[-116,-20],[-81,-35],[-109,-70],[-105,-57],[-83,-53],[-68,-26],[-56,-39],[-16,-32],[-20,-48],[-8,-37],[-7,-16],[-9,-15],[-12,-13],[-13,-11],[-16,-9],[-17,-6],[-18,-4],[-18,-1],[-18,2],[-18,5],[-16,8],[-27,40],[-23,42],[-17,44],[-12,46],[-53,56],[-115,113],[-118,109],[-101,88],[-103,85],[-105,82],[-11,-19],[6,-8],[-24,-33],[-36,25],[25,32],[9,-7],[17,20],[-107,79],[-94,65],[-95,63],[-96,60],[-111,66],[-112,63],[-114,60],[-247,205],[-326,269],[-64,118],[-67,117],[-73,118],[-78,116],[-87,119],[-90,116],[-70,83],[-71,81],[-74,80],[-105,106],[-109,102],[-112,99],[-116,94],[-119,91],[-123,87],[-126,82],[-118,71],[-121,68],[-38,14],[-51,17],[-62,15],[-64,9],[-49,-6],[-48,-9],[-48,-12],[-59,-20],[-44,-135],[-72,5],[-3,17],[-6,17],[-9,15],[-11,14],[-13,12],[-16,10],[-16,7],[-18,4],[-18,2],[-17,-7],[-18,-4],[-18,-2],[-18,1],[-22,11],[-19,14],[-16,16],[-14,20],[-13,14],[-21,11],[-54,16],[-56,13],[-34,7],[-43,8],[-11,3],[-62,2],[-19,0],[-21,-1],[-26,-9],[-16,-29],[-10,-25],[-11,-23],[-11,-4],[-16,11],[-11,15],[-13,30],[-16,14],[-35,12],[-46,11],[-56,6],[-59,7],[-54,7],[-42,5],[-43,15],[-43,13],[-35,12],[-50,3],[-48,8],[-42,29],[-43,31],[-42,26],[-44,24],[-57,23],[-127,29],[-81,19],[-15,-26],[-42,-23],[-22,-2],[14,29],[-14,16],[28,36],[-28,29],[-31,26],[-34,22],[-37,19],[-38,15],[-40,11],[-35,-16],[-36,-14],[-47,-14],[-49,-9],[-18,-3],[-50,-4],[-51,0],[-50,5],[-18,-429],[54,-2],[2,-18],[-42,1],[-20,-17],[0,-7],[-19,1],[-1,11],[-15,18],[-58,1],[0,15],[76,-1],[12,427],[-135,0],[-6,0],[-94,17],[-21,0],[-79,0],[-195,-14],[-112,-14],[-93,6],[-60,46],[-73,150],[-199,62],[-173,5],[-123,-41],[-44,-71],[-69,-15],[-240,-62],[-66,-23],[-11,-3],[8,-153],[-11,0],[-8,150],[-36,-9],[-91,-8],[-4,0],[-106,4],[-78,-5],[-14,-2],[-6,-111],[-5,-4],[-2,-31],[7,-2],[-3,-42],[-25,0],[3,45],[8,0],[1,31],[-5,4],[4,107],[-52,-6],[-23,-12],[0,-19],[-3,-18],[-20,-2],[-21,5],[-31,11],[-157,-21],[-54,-8],[-126,-19],[-115,-32],[-146,-42],[-133,-44],[-53,-25],[-59,-17],[-74,-9],[-84,-20],[-53,-33],[-68,-35],[-36,-37],[-16,-55],[-7,-84],[-176,-15],[-13,98],[-41,36],[-47,0],[40,-140],[27,7],[26,-55],[-36,-14],[14,-38],[12,3],[80,-202],[20,4],[9,-18],[-508,-175],[-10,18],[469,164],[-60,153],[-439,-145],[-5,13],[431,147],[-13,34],[-12,37],[-33,-5],[-17,50],[22,14],[-37,149],[-158,-17],[-75,-9],[-59,-7],[-45,-9],[-30,-10],[-36,-16],[-10,-20],[1,-3],[4,-12],[10,-5],[8,-6],[0,-10],[-5,-7],[-13,0],[-13,-1],[-21,3],[-19,5],[-22,13],[-28,-2],[11,-24],[-39,-18],[33,-85],[-12,-5],[-58,112],[-64,-12],[-43,-49],[-8,-11],[26,-62],[-22,-6],[-37,79],[-134,-14],[-85,-38],[11,-56],[-22,-4],[-31,44],[-66,-14],[93,-228],[-24,-9],[-61,143],[11,7],[-34,84],[-205,-63],[-54,-54],[-78,-12],[-34,-9],[-49,-16],[-57,-8],[-66,-20],[-39,-13],[-51,-19],[-40,-19],[-35,-24],[-3,-11],[-3,-12],[-3,-30],[0,-24],[2,-17],[-7,-9],[-15,3],[-16,22],[-21,41],[-6,0],[-33,0],[-62,-12],[-60,-19],[-34,-11],[-119,-41],[-95,-38],[-87,-43],[-110,-59],[-18,-39],[-16,-31],[4,-61],[-7,-36],[-26,-24],[-45,-31],[-36,2],[-16,13],[-14,28],[-9,41],[-26,30],[-42,8],[-49,-11],[-23,-10],[154,-301],[-13,-6],[-30,60],[-31,21],[8,27],[-100,194],[-49,-22],[-54,-26],[194,-327],[5,2],[26,-52],[-23,-9],[-29,45],[11,5],[-199,329],[-85,-41],[-53,-31],[175,-335],[-15,-11],[-174,338],[-50,-28],[-35,-15],[150,-332],[7,4],[44,-100],[-20,-8],[-195,430],[-33,-14],[-25,-12],[105,-240],[-18,-11],[22,-45],[10,3],[46,-111],[-23,-9],[-53,106],[10,6],[-20,44],[-9,-4],[-39,88],[15,11],[-75,148],[-71,-36],[99,-209],[-18,-8],[-99,208],[-22,-9],[-21,-12],[-19,-15],[-16,-17],[-25,-78],[-5,-4],[-6,-3],[-6,-2],[-7,-1],[-6,0],[-84,-6],[-115,27],[-116,23],[-117,28],[-118,22],[-119,17],[-120,11],[-120,6],[-120,1],[-121,-5],[-120,-11],[-119,-16],[-118,-21],[-117,-27],[-116,-32],[-113,-38],[-112,-42],[-110,-48],[-106,-52],[-105,-58],[-101,-62],[-97,-66],[-94,-71],[-91,-75],[-102,-93],[-98,-97],[-95,-100],[-91,-103],[-86,-106],[-83,-109],[-78,-112],[-74,-114],[-69,-117],[-65,-119],[-191,-768],[-17,-81],[-12,-83],[-6,-82],[-1,-83],[4,-83],[10,-83],[15,-81],[20,-81],[25,-80],[31,-77],[35,-76],[41,-74],[45,-71],[50,-68],[54,-66],[58,-62],[-44,-393],[157,-762],[-130,-107],[-6,-73],[-45,12],[-164,-8],[-164,-3],[-165,3],[-164,8],[-164,14],[-163,19],[-163,24],[-161,29],[-160,35],[-159,40],[-157,46],[-156,50],[-154,55],[-151,61],[-359,173],[-333,119],[-149,45],[-149,42],[-77,40],[-74,44],[-72,48],[-52,39],[-50,40],[-351,585],[-15,18],[-12,21],[-9,22],[-4,21],[-1,21],[2,22],[6,20],[8,20],[5,98],[-1,99],[-7,98],[-13,98],[-19,97],[-24,95],[-30,95],[-35,92],[-41,91],[-46,88],[-61,64],[-26,80],[-6,42],[-6,43],[-46,121],[-39,80],[-35,85],[-49,102],[-48,83],[-13,80],[-36,73],[-69,75],[-64,100],[-66,162],[-56,122],[-39,97],[-77,107],[-58,131],[-57,119],[-63,119],[-67,121],[-20,78],[-54,119],[-56,61],[-51,76],[-23,99],[-3,97],[8,106],[16,151],[-15,112],[-26,104],[-41,70],[-12,59],[-11,48],[20,72],[6,23],[31,70],[29,78],[5,72],[-13,66],[-2,11],[-10,67],[36,111],[60,102],[17,29],[75,131],[54,53],[30,53],[8,15],[12,10],[68,56],[51,46],[21,67],[-12,56],[-6,27],[5,78],[36,84],[15,127],[23,533],[-54,153],[8,173],[41,165],[-34,130],[-23,33],[-20,35],[-16,36],[-15,41],[-11,42],[-7,43],[-3,43],[1,43],[1,6],[0,35],[-6,34],[-11,34],[-16,31],[-20,29],[-25,26],[-29,23],[-31,18],[-41,91],[-37,92],[-33,95],[-28,95],[74,278],[-11,48],[-6,48],[-1,49],[5,48],[9,48],[15,46],[20,45],[24,43],[29,40],[33,37],[37,34],[379,547],[175,87],[85,407],[66,48],[-77,116],[-158,47],[6,140],[35,139],[0,185],[-1,227],[28,334],[14,152],[-18,150],[-32,329],[59,69],[21,77],[-17,58],[-52,15],[-47,14],[5,53],[17,12],[13,33],[-29,17],[4,79],[0,65],[3,77],[-46,62],[-55,82],[-25,6],[-125,30],[-28,73],[-17,16],[2,32],[38,64],[-22,44],[30,36],[-81,125],[-32,199],[8,92],[4,45],[-43,77],[-36,113],[-24,21],[-27,18],[-29,15],[-28,3],[-27,6],[-26,11],[-26,16],[-22,20],[-19,23],[-14,26],[-5,22],[-1,22],[1,22],[-83,277],[-246,551],[-130,265],[-141,257],[-23,151],[-109,321],[-89,153],[-132,318],[-139,336],[-25,56],[-41,72],[-42,112],[-89,169],[-4,23],[-5,24],[-25,156],[-6,32],[-5,41],[-9,76],[-4,96],[-11,116],[63,583],[193,617],[20,64],[644,798],[59,24],[314,327],[502,601],[156,133],[114,175],[72,168],[18,70],[15,92],[8,114],[-12,116],[-28,134],[-31,111],[-7,124],[3,102],[-10,119],[-8,102],[-20,104],[-28,117],[-10,116],[8,107],[-28,109],[-14,150],[-59,502],[-15,132],[29,283],[-48,75],[27,145],[-16,154],[-25,184],[0,163],[46,158],[6,23],[26,141],[-20,195],[-105,68],[-141,-2],[-81,591],[-360,-32],[17,-245],[31,-53],[38,-55],[-2,-48],[13,-46],[23,-71],[48,4],[-8,67],[10,3],[11,-85],[-55,-8],[18,-58],[-23,-95],[-18,-11],[111,-253],[-29,-27],[43,-269],[8,-63],[43,1],[-3,64],[9,0],[8,-168],[-11,1],[-1,77],[-42,-4],[-21,-154],[39,-457],[28,-81],[5,-92],[-16,-68],[13,-199],[-2,-234],[54,12],[-15,126],[12,0],[21,-125],[16,2],[4,-24],[7,0],[0,21],[8,-1],[6,-49],[-8,0],[-1,7],[-94,-17],[2,-29],[66,11],[3,-11],[-69,-11],[3,-34],[57,5],[0,-9],[-55,-7],[3,-42],[31,8],[1,-9],[-32,-11],[6,-48],[92,13],[-27,181],[9,0],[45,-274],[4,-29],[-10,-2],[-5,24],[-19,80],[-87,-11],[4,-34],[80,10],[2,-11],[-83,-13],[8,-39],[57,11],[3,-11],[-59,-13],[1,-12],[-12,-19],[75,-13],[37,7],[0,-15],[-52,-12],[7,-51],[54,7],[2,-15],[-44,-5],[2,-22],[53,2],[0,-13],[-53,-5],[7,-48],[52,11],[8,-14],[-50,-11],[4,-35],[52,5],[1,-12],[-44,-4],[8,-47],[42,11],[2,-13],[-54,-11],[8,-38],[54,7],[3,-9],[-55,-13],[11,-40],[46,7],[2,-10],[-54,-9],[12,-44],[48,7],[0,-11],[25,4],[0,-20],[-27,0],[0,-13],[-41,-7],[6,-40],[46,2],[0,-10],[-42,-9],[2,-34],[44,5],[10,-16],[-98,-15],[-1,-21],[89,12],[2,-11],[-87,-20],[8,-23],[81,12],[4,-11],[-87,-14],[6,-22],[81,15],[13,-57],[17,2],[2,-38],[-46,-8],[2,-12],[-68,-11],[8,-53],[31,-95],[-24,-106],[-14,-146],[-104,-250],[-15,-39],[-85,-267],[-161,-214],[-348,-341],[-238,-242],[-427,-432],[-246,-136],[-82,-192],[-115,-139],[-59,-93],[-82,-140],[35,-57],[-145,-480],[-72,-16],[-25,-62],[-4,-47],[49,1],[-20,-153],[-33,24],[44,-375],[1,-287],[24,-83],[30,-96],[19,-62],[13,-41],[13,-32],[70,-154],[24,-41],[32,-181],[13,-101],[30,-80],[22,-51],[16,-108],[4,-55],[32,-39],[11,-79],[91,-147],[149,-498],[30,7],[200,-601],[-31,-10],[231,-468],[13,-48],[54,-136],[44,-71],[80,-224],[31,-143],[11,-77],[85,-68],[178,-430],[82,-193],[18,-59],[-8,-120],[-21,-25],[30,-64],[180,-444],[9,-94],[59,-84],[-5,-95],[41,-52],[-17,-60],[39,-141],[59,-129],[-5,-108],[-44,-214],[31,-111],[-14,-88],[-64,-78],[-6,-87],[-36,-52],[-1,-79],[-29,-146],[25,-72],[57,-39],[-19,-188],[-92,-89],[-61,5],[-27,-14],[36,-56],[-31,-44],[-2,-40],[-50,-38],[-98,-30],[-59,9],[-53,-56],[-68,-25],[-18,-69],[-47,-10],[-78,-87],[-81,-36],[-46,-17],[-25,-3],[-13,-16],[-24,-10],[-46,-63],[-89,-78],[-84,-28],[-112,-42],[-25,-13],[-15,-21],[-24,-24],[-86,-244],[-7,-153],[27,-154],[-174,-439],[-262,-427],[-58,-159],[-107,-132],[13,-140],[-68,-80],[-10,-172],[-172,-272],[-82,-177],[-100,-113],[-19,-141],[-114,-264],[-80,-174],[-58,-165],[0,-131],[-129,-418],[-81,-169],[-77,-172],[-72,-173],[-67,-175],[-59,-165],[-55,-166],[-50,-167],[-47,-168],[-45,-84],[-55,-21],[-60,11],[-186,-141],[-55,-118],[-35,-77],[-71,-236],[-91,-267],[-444,-120],[-190,45],[-168,250],[-72,291],[-29,54],[-45,80],[-317,777],[-339,340],[-386,257],[-412,194],[-96,35],[-127,38],[-71,190],[-48,77],[-613,289],[-124,-4],[-117,32],[-128,-40],[-154,10],[29,92],[87,38],[-5,17],[-109,-28],[-60,46],[-55,4],[-112,-63],[-90,102],[-42,10],[74,-84],[32,-102],[116,-4],[-11,-74],[16,-52],[-16,-47],[34,-43],[-25,-73],[-199,-70],[18,-18],[-11,-13],[10,-77],[44,-14],[-20,-20],[-41,-12],[-241,-61],[-232,40],[-374,168],[-307,176],[-70,78],[-118,135],[-105,34],[-40,-95],[38,-98],[167,-69],[210,-176],[173,-98],[197,-63],[163,-49],[237,-73],[71,10],[70,15],[69,20],[67,24],[65,29],[41,22],[40,23],[22,16],[24,14],[30,12],[32,9],[32,5],[26,1],[25,-2],[255,-6],[93,-42],[124,-19],[144,-44],[73,-31],[101,2],[64,-30],[65,-26],[95,-68],[91,-71],[89,-75],[85,-78],[38,-29],[40,-26],[43,-24],[43,-20],[30,-12],[73,-33],[71,-38],[68,-41],[65,-46],[62,-50],[58,-54],[55,-57],[50,-60],[46,-63],[42,-66],[37,-68],[32,-70],[-3,-55],[-4,-48],[-11,-62],[-12,-57],[-18,-50],[-18,-53],[-19,-37],[-24,-69],[-19,-48],[-24,-28],[-39,-50],[-20,-41],[-6,-44],[5,-44],[49,-53],[30,-30],[22,-48],[14,-46],[10,-58],[-13,-50],[-34,-62],[-33,-54],[-34,-44],[-38,-50],[-22,-63],[-15,-65],[-13,-53],[-18,-58],[-30,-36],[-41,-33],[-43,-35],[-35,-44],[-18,-41],[-7,-26],[-1,-53],[-14,-83],[-23,-57],[-23,-68],[88,7],[4,-19],[-16,-4],[-4,10],[-59,-7],[2,-11],[-22,-2],[-23,-55],[-17,-57],[-13,-57],[-7,-59],[-2,-59],[106,10],[1,-12],[-113,-13],[-8,-15],[-1,-21],[1,-26],[12,-24],[11,-23],[6,-12],[10,-40],[3,-29],[3,-31],[2,-56],[136,29],[11,-29],[-141,-35],[4,-89],[244,23],[4,-18],[-250,-21],[-4,-14],[-6,-20],[-1,-23],[3,-32],[15,-35],[22,-25],[16,-19],[-12,-51],[21,-56],[48,-23],[18,-29],[3,-15],[7,-20],[7,-15],[19,-21],[13,-17],[19,-14],[24,-10],[276,78],[-3,8],[254,78],[32,-75],[-259,-82],[-3,10],[-242,-70],[42,-25],[6,-57],[35,-55],[70,-36],[107,-48],[91,-46],[111,-57],[80,-71],[76,-61],[67,-74],[30,-116],[24,-144],[31,-138],[-43,-138],[-31,-115],[12,-126],[61,-92],[103,-87],[80,-20],[84,-20],[134,-52],[60,-64],[12,-161],[18,-207],[-24,-92],[-87,-126],[-146,-126],[-107,-64],[-110,-14],[-92,-34],[-95,-49],[-31,-40],[-26,-33],[-33,25],[-1,78],[-1,20],[-24,29],[-35,2],[-22,-41],[0,-32],[0,-6],[-22,-19],[-22,-4],[-25,-3],[-22,14],[-30,12],[-33,44],[-13,34],[-9,22],[-29,40],[-30,33],[-74,23],[10,-300],[-57,5],[-12,302],[-60,4],[-53,16],[-59,7],[-71,0],[-97,-27],[-53,-150],[-13,-66],[-18,-89],[-5,-24],[-8,-35],[-9,-41],[-30,-19],[-85,5],[-17,-3],[-178,-27],[-168,0],[-164,12],[-48,29],[-38,23],[-93,29],[-188,-3],[-168,4],[-183,-15],[-142,-22],[-879,-69],[-48,-3],[-33,6],[-58,11],[-82,26],[-155,26],[-124,0],[-145,-21],[-78,-17],[-10,-2],[-131,-24],[-137,4],[-152,35],[-122,56],[-120,59],[-119,63],[-117,65],[5,27],[25,52],[50,13],[62,-2],[80,-49],[63,-41],[75,-43],[72,-38],[75,-35],[73,-2],[47,20],[31,63],[-9,75],[-4,69],[-12,70],[-72,46],[-110,36],[-95,61],[-46,26],[-108,0],[-53,-18],[-80,-13],[-5,-1],[-71,18],[-74,8],[-74,15],[-44,-14],[-60,16],[-47,27],[-51,-4],[-26,-14],[16,-53],[57,-41],[77,-35],[47,-19],[63,-35],[45,-25],[48,-33],[0,-33],[-32,-6],[-67,-27],[-675,371],[-125,59],[-96,71],[-88,66],[-82,59],[-111,56],[-96,74],[-13,18],[0,32],[24,19],[29,11],[27,-12],[22,-26],[25,-8],[25,-24],[27,-25],[31,-15],[18,-18],[23,-6],[15,33],[16,48],[8,21],[19,14],[31,9],[29,13],[0,22],[2,30],[-21,34],[-22,30],[-3,37],[-8,42],[1,30],[3,32],[0,40],[0,19],[-16,2],[-26,-2],[-26,12],[-6,50],[4,42],[-3,38],[-4,35],[-27,23],[-32,23],[-37,-1],[-47,1],[-38,0],[-49,-7],[-28,-11],[-36,-26],[-17,-26],[-19,-33],[-9,-44],[-12,-21],[-5,-27],[5,-28],[17,-33],[6,-17],[27,-39],[18,-44],[10,-41],[19,-41],[19,-42],[25,-30],[2,-22],[-15,-15],[-20,-6],[-13,-9],[-26,-2],[-22,30],[-74,117],[-42,87],[-40,109],[-31,100],[-35,104],[0,97],[0,104],[-11,157],[-16,139],[8,102],[-3,59],[16,30],[39,3],[34,-23],[1,-52],[2,-89],[16,-90],[3,-77],[0,-84],[11,-65],[29,-54],[47,-30],[63,-5],[95,5],[101,-6],[57,372],[95,614],[18,113],[-142,454],[-96,298],[-110,800],[-30,-57],[-3,-71],[-18,-46],[-26,-54],[-47,-19],[-104,-7],[-94,-28],[-47,-67],[-74,-9],[-102,-57],[-183,-98],[5,-28],[24,-8],[28,-35],[2,-18],[14,-2],[31,-5],[20,-31],[2,-30],[32,-13],[58,-76],[20,-7],[17,-30],[-3,-16],[33,-15],[-4,-20],[32,-21],[52,-97],[42,-6],[41,-3],[42,3],[4,-6],[2,-6],[2,-6],[0,-6],[0,-7],[-2,-6],[-3,-6],[-14,-25],[-17,-23],[-18,-22],[20,-101],[16,-101],[12,-101],[8,-102],[4,-103],[-2,-6],[-3,-6],[-3,-5],[-5,-5],[-5,-4],[-6,-3],[-7,-2],[-3,-1],[-4,-1],[-7,0],[-8,1],[-7,2],[-6,4],[-6,4],[-5,5],[-4,6],[-17,115],[-23,114],[-29,113],[-34,111],[-25,67],[-30,66],[-35,63],[-39,61],[-44,59],[-47,55],[-52,52],[-55,49],[-59,45],[-61,41],[-65,38],[-67,33],[-69,28],[-71,24],[-73,20],[-863,198],[-224,52],[-1088,203],[-2014,237],[-640,980],[-669,1210],[-625,819],[-320,187],[-261,149],[-2975,932],[-71,-323],[-60,-251],[945,-392],[459,-180],[1216,-583],[66,66],[40,-40],[-66,-55],[153,-137],[57,50],[37,-41],[-57,-49],[30,-29],[171,-207],[91,-47],[434,-854],[241,-46],[60,-485],[-51,-165],[1512,-3463],[-217,-629],[-822,-1397],[-1071,-1735],[-57,31],[-54,-84],[59,-41],[-88,-158],[-393,-198],[-56,-387],[145,-21],[-1,-3],[-67,-444],[-1,-5],[-386,57],[-5,1],[63,455],[2,-1],[153,-37],[17,78],[9,53],[6,41],[-6,36],[-16,33],[-31,34],[-27,15],[-290,-131],[-234,-111],[-698,97],[-33,214],[-331,109],[-367,44],[-45,-286],[-1370,181],[40,268],[57,-8],[10,42],[-39,269],[-19,104],[97,59],[-129,75],[-32,141],[-42,74],[-123,43],[-192,28],[-113,25],[-179,18],[-80,-17],[-103,-3],[-73,-20],[-71,0],[-9,0],[-99,13],[-86,0],[-72,-28],[-66,-2],[-87,-41],[-93,-27],[-126,-35],[-92,-22],[-92,-18],[-68,-5],[-87,-14],[-69,-13],[-63,-10],[-109,-26],[-70,-12],[-72,-8],[-60,-11],[-16,-2],[-3,-1],[-79,-24],[-79,-16],[-31,2],[-15,1],[-33,-3],[11,-66],[-55,-11],[-14,65],[-33,-8],[-102,-15],[-76,-13],[-55,-4],[-62,-19],[-82,-24],[-208,-38],[-96,-13],[-71,-31],[-18,-11],[-8,-9],[-16,-16],[-14,-11],[-10,-9],[-14,-14],[-16,-51],[112,-28],[4,9],[24,12],[30,-8],[13,-25],[-7,-25],[-27,-14],[-31,9],[-12,25],[5,10],[-113,29],[-14,-41],[-658,175],[-58,99],[-75,19],[-3,-8],[-24,-16],[-34,6],[-19,32],[10,25],[30,14],[30,-8],[16,-26],[-3,-9],[66,-19],[-62,106],[-213,120],[-112,88],[-83,92],[-58,118],[-43,79],[-14,24],[-39,69],[-70,69],[-92,62],[-38,26],[-147,117],[-78,81],[-146,134],[-115,106],[-68,126],[83,58],[-55,83],[-41,63],[-79,21],[-113,164],[50,44],[-203,251],[-392,-161],[-145,50],[-153,124],[-128,129],[-64,99],[-36,100],[21,110],[113,203],[-152,-236],[0,-1],[-191,-295],[-10,-15],[-124,-192],[-1,-1],[-96,56],[481,745],[-105,-91],[-71,32],[-59,21],[-37,1],[0,0],[-23,-15],[-13,-20],[-17,-36],[-18,-28],[-20,-26],[-19,-8],[-42,0],[-48,8],[-60,17],[-63,23],[-11,4],[-52,17],[-48,42],[-42,15],[-86,6],[-88,13],[-92,6],[-161,9],[-140,12],[-1,3],[36,-208],[-214,-30],[-119,588],[-295,-12],[-156,-20],[0,0],[109,-530],[160,35],[68,-308],[217,-89],[2,5],[83,-33],[-7,-16],[76,-28],[2,5],[38,-14],[-5,-9],[126,-49],[3,8],[20,-5],[-11,-26],[-18,6],[2,4],[-96,42],[-25,10],[-118,45],[-22,-51],[-83,32],[23,58],[-228,91],[-64,290],[-23,-3],[1,-6],[-39,-8],[-1,5],[-103,-19],[-112,555],[-93,-10],[-92,-9],[-68,-2],[-92,24],[-45,-35],[-48,-4],[-58,-13],[-46,0],[-60,-17],[-72,-8],[-72,2],[-52,4],[-43,13],[-72,-1],[-188,-19],[-64,-8],[-3,0],[37,-144],[-94,-15],[-32,145],[-16,-5],[-32,6],[77,-366],[-70,-13],[-78,391],[-80,488],[-116,-16],[-54,-108],[-54,-77],[-29,-6],[55,-253],[16,-70],[56,-212],[-6,-25],[20,-79],[-20,2],[-20,77],[-38,70],[-38,198],[-28,102],[-49,179],[-82,-17],[15,-88],[18,-119],[-48,-8],[-52,135],[-4,66],[-87,-18],[22,-97],[4,-80],[36,-178],[54,-175],[-52,-17],[-46,165],[-40,190],[-59,175],[-71,-14],[10,-47],[7,-71],[0,-64],[-21,-24],[-29,-3],[-46,3],[-270,-39],[-186,-28],[-17,-10],[-22,-13],[-15,-37],[-53,-4],[-33,32],[-45,110],[-69,-8],[13,-166],[38,-153],[-44,-10],[-38,160],[-56,159],[-76,-9],[6,-40],[14,-131],[-44,-4],[-42,116],[-4,51],[-87,-10],[7,-58],[8,-123],[73,-306],[-40,-11],[-81,303],[-58,173],[-37,-14],[-46,-17],[8,-36],[6,-103],[6,-20],[3,-15],[-9,-2],[-1,-7],[18,-26],[32,-12],[47,-43],[-10,-43],[4,-5],[2,-5],[2,-5],[1,-6],[-1,-5],[-1,-6],[-2,-5],[-3,-5],[-28,-8],[-9,-8],[0,-10],[-24,-31],[13,-14],[-23,-10],[-20,2],[-8,1],[-146,-84],[-50,-1],[-7,-12],[-13,1],[-3,3],[-6,0],[-5,-8],[-8,8],[-14,-18],[-19,-5],[-24,13],[-40,-24],[-37,-1],[-11,-12],[-23,-6],[-9,4],[-10,2],[-10,1],[-10,-1],[-9,-2],[-10,-4],[-8,-5],[-7,-6],[0,-9],[-9,-3],[-5,9],[-8,1],[-7,0],[-8,-1],[-7,-2],[-7,-3],[-6,-5],[-5,-5],[-5,-6],[-15,-5],[-11,3],[-11,-9],[-20,-5],[-8,8],[-12,-12],[-38,-12],[-15,1],[-10,6],[-21,-17],[-4,10],[-14,-1],[-20,-21],[-11,-3],[-5,11],[-15,3],[-29,-19],[-71,-10],[-21,-16],[1,-9],[1,-8],[-209,-55],[-120,-31],[-161,-42],[-161,-69],[-34,-3],[-43,-11],[-39,-18],[-176,5],[-30,-6],[-135,-25],[-4,-1],[-169,-39],[-152,-5],[-7,3],[-6,3],[-5,4],[-4,5],[-4,6],[-3,6],[-1,6],[-1,6],[-1,1],[-12,3],[3,9],[-16,25],[-6,6],[-5,6],[-3,8],[-3,7],[-1,6],[0,6],[1,6],[-7,9],[-16,-2],[-11,-2],[-7,-7],[-3,-4],[1,-8],[5,-6],[11,-25],[5,-24],[7,-22],[-1,-27],[-20,-27],[-18,-41],[-40,-79],[2,-1],[8,-7],[8,-11],[-1,-7],[-95,-114],[-48,36],[-144,-104],[-106,-101],[31,-31],[102,15],[2,-10],[-121,-19],[-96,-94],[54,-62],[-19,-15],[-51,62],[-79,-75],[-26,21],[-52,-56],[13,-61],[-13,-2],[-11,68],[-26,10],[-95,-30],[-9,-3],[-43,-17],[-29,-11],[-31,-17],[-6,-4],[48,-50],[-15,-12],[-48,51],[-3,-3],[-17,-21],[-14,-18],[-24,-23],[-20,-13],[-21,-14],[47,-46],[-13,-12],[-48,48],[-11,-10],[-22,-23],[-42,-44],[33,-39],[-50,-42],[-32,30],[-142,-139],[-50,-49],[-13,-15],[-12,-7],[-18,-10],[-13,-15],[-16,-21],[-31,-42],[-29,-42],[-60,-78],[-18,-21],[-33,-39],[-63,-85],[-29,-44],[-19,-26],[-9,-26],[-8,-23],[-5,-23],[-11,-28],[-19,-31],[-27,-26],[-18,-20],[-36,-50],[-41,-50],[-49,-69],[-29,-35],[-16,-19],[-17,-19],[-9,-23],[-10,-32],[-148,-169],[-157,-191],[-30,24],[-88,-70],[-196,-245],[81,-65],[-38,-42],[-83,55],[-89,-106],[-52,-61],[39,-31],[30,-24],[-41,-56],[0,-1],[-254,-326],[-52,-66],[-50,-62],[-31,-41],[-25,-38],[-12,-20],[-11,-19],[-17,-17],[-18,-14],[-8,-7],[-19,-6],[-24,-1],[-13,-11],[-7,-11],[-1,-16],[-71,-75],[-88,-107],[-23,-25],[-13,-4],[-21,7],[-18,3],[-33,-48],[29,-9],[47,-13],[50,-17],[48,-23],[36,-21],[48,-35],[-15,-25],[-67,42],[-37,21],[-52,21],[-38,13],[-35,10],[-31,10],[-41,-60],[23,-24],[105,-114],[-40,-35],[-88,65],[-52,39],[-43,25],[-62,29],[-34,-45],[-46,-59],[38,-33],[69,-51],[54,-51],[22,-30],[0,-2],[7,-26],[2,-25],[-39,-51],[-528,-501],[-299,-283],[-21,15],[-1,1],[-41,-39],[-33,-33],[-32,24],[-40,-32],[-23,-19],[-12,-23],[-48,-96],[-56,-70],[-118,-123],[-89,-76],[-86,-57],[-66,-47],[-48,-76],[-62,-61],[-8,-5],[-32,-17],[-18,-15],[-40,-38],[-30,-25],[-105,-57],[-92,-53],[-48,-36],[-80,-45],[-40,-13],[-36,2],[-26,5],[-21,0],[-40,1],[-46,11],[-46,2],[-32,4],[-37,17],[-5,2],[-52,22],[-66,6],[-200,14],[-211,21],[-104,7],[-168,8],[-170,6],[-871,442],[-645,360],[-1632,809],[-53,28],[-41,24],[-58,36],[-46,30],[-691,448],[-124,147],[-211,363],[-109,250],[-229,528],[-224,232],[-216,225],[-346,240],[-205,143],[-409,110],[-397,22],[-1505,-104],[-214,79],[-387,141],[74,183],[121,215],[-77,51],[96,178],[-224,370],[-10,15],[-168,-7],[-110,11],[-160,15],[-30,52],[-41,72],[-151,-69],[-823,1387],[-164,222],[-134,216],[11,92],[-399,415],[-373,494],[-28,38],[-22,29],[-18,26],[-28,36],[-225,330],[-151,354],[-72,431],[14,299],[16,218],[-141,47],[-6,1],[-20,7],[-6,223],[54,62],[59,68],[8,167],[70,67],[-32,448],[-9,337],[96,1172],[28,457],[2,34],[1,44],[2,26],[3,44],[26,341],[7,294],[2,239],[13,1441],[3,323],[-32,1383],[0,28],[-1,33],[5,38],[4,29],[-33,661],[-19,519],[-4,352],[-29,433],[-23,355],[-18,340],[-20,345],[-36,455],[-23,372],[-14,272],[-1,55],[-5,109],[-5,70],[-7,81],[-5,105],[-33,117],[-87,1013],[-14,232],[-16,240],[-32,424],[-8,54],[-8,54],[-149,1390],[-58,575],[-35,345],[-43,222],[-37,987],[22,79],[4,39],[0,38],[16,51],[23,50],[13,100],[8,100],[4,101],[-2,100],[163,869],[15,133],[20,194],[91,373],[211,613],[186,401],[303,498],[224,525],[338,720],[59,76],[30,58],[28,110],[12,35],[22,17],[34,59],[43,111],[23,23],[24,35],[5,59],[46,171],[-31,176],[52,116],[20,7],[315,731],[166,397],[7,149],[123,147],[115,271],[6,297],[352,1136],[212,230],[96,264],[23,57],[21,56],[111,103],[123,336],[22,-11],[26,25],[27,27],[55,83],[24,47],[19,66],[14,49],[16,46],[25,33],[15,32],[33,32],[43,47],[84,128],[52,83],[35,88],[-2,50],[14,69],[5,24],[13,50],[35,28],[10,8],[36,12],[45,32],[38,90],[30,43],[36,64],[28,64],[68,107],[68,70],[52,46],[48,40],[33,70],[25,83],[46,70],[58,46],[342,509],[350,542],[125,237],[141,368],[84,130],[149,343],[-62,30],[267,473],[123,227],[469,817],[509,796],[122,-81],[124,155],[-91,133],[-16,15],[443,672],[265,-161],[45,57],[-165,206],[10,81],[14,52],[53,46],[57,31],[35,46],[-8,63],[177,265],[281,439],[336,429],[454,585],[111,122],[218,304],[343,170],[182,263],[686,925],[26,135],[550,807],[41,18],[53,107],[-59,35],[29,37],[17,-10],[27,15],[18,22],[23,30],[14,25],[0,15],[-6,19],[205,255],[38,47],[504,677],[404,-260],[304,464],[-292,201],[-10,-12],[-23,17],[28,36],[22,-15],[-9,-12],[127,-89],[-93,174],[1092,1478],[220,373],[28,25],[23,27],[20,30],[16,32],[11,34],[14,32],[11,33],[7,34],[2,35],[-3,35],[-7,34],[115,243],[194,579],[121,366],[105,319],[138,557],[209,1130],[178,283],[-175,594]],[[150914,144773],[-150,160],[2099,1582],[56,36],[61,45],[151,114],[118,-174]],[[153249,146536],[-162,-122],[-54,-41],[-55,-41],[-1442,-1094],[-622,-465]],[[155206,147640],[-388,-634]],[[154818,147006],[-1364,463],[255,634],[1497,-463]],[[155939,148660],[-478,-550]],[[155461,148110],[-1358,471],[260,650],[1576,-571]],[[156462,149814],[-268,-627]],[[156194,149187],[-1456,481],[258,659],[1466,-513]],[[131129,149630],[230,-385],[477,279],[-30,55],[49,26],[94,-148],[-53,-27],[-34,53],[-479,-277],[-31,-344],[-77,-327],[-206,-142],[-255,-51],[-247,61],[-923,564],[-327,483],[-417,-264],[-157,234],[89,52],[96,-138],[334,197],[-191,282],[55,35],[-3,143],[-42,71],[-7,12],[-11,21],[-8,22],[-4,24],[0,23],[4,24],[8,22],[12,21],[14,19],[19,15],[20,12],[22,9],[23,6],[24,3],[511,37],[15,19],[32,-2],[32,-4],[31,-7],[42,-18],[41,-20],[777,-372],[451,-298]],[[157872,149957],[-2536,887],[238,591],[1511,-528]],[[157085,150907],[399,-293],[388,-657]],[[147932,152063],[833,-213],[30,122],[-34,11],[13,45],[132,-32],[-9,-44],[-40,6],[-34,-123],[31,-8],[82,108],[-24,16],[23,36],[50,-34],[65,-46],[-26,-26],[-34,24],[-72,-94],[579,-149],[460,-528],[4,-5],[5,-4],[5,-4],[6,-3],[7,-1],[6,-1],[7,0],[6,1],[558,145],[-12,27],[70,119],[5,9],[6,9],[12,13],[14,11],[16,9],[17,7],[111,29],[0,0],[9,2],[37,-5],[120,-65],[0,0],[23,-30],[8,-27],[10,-30],[20,-67],[0,-1],[0,-1],[-4,-40],[-48,-81],[-2,-4],[-1,-1],[-15,-26],[-24,-22],[-5,-1],[-36,-9],[-104,-28],[0,0],[-4,-1],[-3,-1],[-33,5],[-76,36],[-22,13],[-19,11],[-11,9],[-13,16],[-20,45],[-49,-13],[-11,-2],[-167,-42],[-245,-62],[-11,-3],[-4,-1],[-23,-5],[-11,-4],[-5,-2],[-5,-3],[-3,-3],[-2,-2],[-1,-1],[-1,-3],[-2,-3],[-1,-6],[0,-3],[0,-3],[0,-3],[1,-2],[5,-10],[6,-10],[25,-28],[5,-7],[1,-1],[6,-7],[43,32],[170,-206],[-10,-11],[42,-57],[-23,-20],[1,-1],[13,-14],[6,-8],[30,-36],[39,-18],[64,-59],[16,7],[10,-35],[15,5],[0,10],[24,7],[-6,24],[14,4],[8,-24],[301,81],[10,-34],[-359,-96],[43,-145],[213,-7],[-2,-45],[224,-10],[-2,-42],[-227,14],[0,-7],[-9,-176],[78,-9],[1,-16],[18,-16],[34,9],[6,17],[10,-1],[-9,-57],[-4,-36],[8,-34],[-43,3],[-4,-43],[-26,-6],[-6,-14],[-12,0],[-9,-57],[-56,5],[-46,-910],[-246,-378],[-32,-54],[-256,-436],[-60,-25],[-40,-23],[-55,-31],[-33,-31],[-873,-584],[-722,64],[-31,-18],[-261,-150],[-287,-164],[-42,-24],[207,-332],[43,-22],[926,83],[4,-67],[-914,-91],[-33,-11],[-371,-474],[-160,-253],[-57,37],[162,259],[359,465],[5,38],[-215,343],[-1880,-1075],[-240,-137],[209,-338],[27,0],[436,248],[37,-52],[-962,-542],[-35,53],[446,255],[6,19],[-207,333],[-278,-154],[-481,-265],[-249,-138],[-59,-32],[-38,-21],[-122,-69],[286,-457],[-572,-655],[-86,64],[512,601],[-242,389],[-160,-91],[-73,-33],[-75,-30],[-88,-34],[-10,-4],[-79,-25],[-149,-26],[-102,-16],[-166,-3],[-134,7],[-134,19],[-120,27],[-94,30],[-138,32],[-156,45],[-126,65],[-132,108],[-100,106],[-49,61],[-66,82],[-63,79],[-66,115],[-48,122],[-36,102],[-20,104],[-12,116],[3,98],[8,84],[24,110],[46,115],[44,93],[31,43],[39,49],[57,69],[28,34],[68,79],[174,203],[127,157],[119,130],[124,146],[20,24],[106,122],[15,18],[130,168],[115,137],[66,74],[73,81],[10,12],[79,88],[47,56],[92,112],[1,2],[98,115],[85,98],[85,96],[91,103],[159,189],[278,326],[74,83],[78,88],[117,141],[217,248],[250,295],[12,15],[164,199],[144,170],[161,198],[2,2],[156,180],[161,167],[216,672],[36,105],[2,3],[17,27],[21,26],[25,22],[28,20],[31,15],[33,11],[11,3],[56,11],[57,6],[58,1],[57,-4],[90,-4],[91,-2],[10,0],[33,0],[375,29],[143,11],[373,28],[378,29]],[[157225,151341],[-1402,618],[162,315],[181,335],[1352,-582]],[[157518,152027],[-168,-393],[-125,-293]],[[157711,152623],[-1273,546],[235,451],[147,269],[1319,-575]],[[158139,153314],[-268,-445],[-51,-78],[-109,-168]],[[158631,154654],[-31,-99]],[[158600,154555],[-598,271],[36,97],[519,-208],[38,72],[-34,17],[20,36],[91,-46],[-59,-122],[18,-18]],[[159310,155702],[-306,-698]],[[159004,155004],[-1349,579],[348,655],[1307,-536]],[[159531,156241],[-1237,543],[337,660],[1223,-527]],[[159854,156917],[-310,-648],[-13,-28]],[[133561,157882],[308,-275],[44,34],[1035,-951],[-239,-235],[-82,-517],[-477,1],[-211,-196],[-367,330],[-200,201],[-611,564],[-313,-299],[1137,-1115],[-1083,-963],[-1247,1208],[23,22],[-12,12],[590,568],[-162,153],[1156,1152],[184,-173],[303,275],[-49,48],[-13,-7],[-77,80],[35,29],[81,-80],[-10,-9],[48,-47],[209,190]],[[160351,157872],[-77,88],[-438,183],[-144,101],[-25,-31],[-209,154],[1206,1432],[652,-310]],[[161316,159489],[-75,-127],[-77,-129],[-813,-1361]],[[161374,159610],[-248,111],[94,215],[193,-133],[113,-69]],[[161526,159734],[-137,-111],[-15,-13]],[[161545,160243],[-70,-127]],[[161475,160116],[-18,7],[-11,-20],[-62,29],[91,154],[28,-17],[42,-26]],[[169170,161469],[22,215],[866,60],[4,-78],[-795,-47],[-17,-143]],[[169250,161476],[-27,-6],[-53,-1]],[[179015,171086],[-21,-37]],[[178994,171049],[-363,237],[-6,-8],[-71,37],[48,78],[29,53],[71,-34],[-14,-25],[-37,-70],[364,-231]],[[179451,171670],[-12,-14]],[[179439,171656],[-288,203],[-17,-22],[-160,110],[53,70],[139,-89],[-28,-40],[313,-218]],[[180385,172927],[-29,-83]],[[180356,172844],[-177,134],[56,58],[150,-109]],[[180604,173339],[-56,-141]],[[180548,173198],[-595,464],[96,91],[555,-414]],[[181837,175693],[-41,-86]],[[181796,175607],[-245,194],[-2,34],[18,19],[32,-5],[15,12],[223,-168]],[[181653,182726],[25,-152]],[[181678,182574],[-60,-2],[-304,-29],[-297,-29],[-6,6],[-115,-8],[-6,18],[-16,-1],[-5,35],[-6,1],[-2,13],[-6,0],[1,7],[-56,0],[9,-94],[-230,-30],[-11,3],[-10,14],[-13,108],[6,11],[11,9],[211,25],[43,6],[-1,3],[48,4],[1,-2],[23,1],[0,3],[487,52],[246,26],[0,-2],[33,4]],[[182182,188296],[-119,14],[7,80],[209,-21]],[[182279,188369],[29,-6],[0,-1],[-10,-79],[-116,13]],[[180471,193128],[-38,-48],[-39,3],[-25,-40],[-42,-65],[-86,34],[-2,48],[26,37],[43,59],[62,49],[23,23],[41,13],[35,66],[34,22],[22,-15],[-5,-26],[-49,-112],[0,-48]],[[194352,210431],[-475,-417],[-178,-156],[-226,-317],[-368,-518],[-254,-428],[-382,-649],[-865,-1186],[-207,-284],[-31,-42],[-126,-189],[-163,-246],[-492,-719],[-29,-43],[-245,-358],[-4,-6],[-394,-577],[-287,-417],[-174,-170],[-385,-364],[-574,-807],[-140,-110],[-140,-158],[-41,-46],[-194,-316],[-53,-124],[-21,-191],[-204,-377],[-360,-440],[-61,-75],[-30,-35],[-24,-29],[-24,-25],[-37,-41],[-427,-465],[-606,-660],[-75,-19],[-371,-473],[-700,-925],[-177,-190],[-436,-467],[-430,-382],[-48,-31],[-215,-144],[3,-69],[-329,-372],[-212,-198],[-304,-233],[-262,-277],[-11,-10],[-8,-11],[-7,-13],[-14,-22],[-18,-19],[-20,-17],[-13,-10],[-15,-9],[-15,-6],[-17,-3],[-17,-1],[-17,2],[-16,5],[-16,7],[-13,9],[-102,-130],[-129,94],[94,122],[-14,14],[-11,17],[-8,19],[-4,19],[1,14],[4,13],[6,13],[8,12],[10,10],[12,10],[10,11],[9,12],[148,391],[263,463],[418,486],[75,205],[197,545],[44,117],[300,493],[56,-26],[290,299],[481,673],[487,680],[267,373],[296,413],[205,286],[39,99],[15,26],[21,30],[18,29],[25,34],[12,17],[64,94],[215,314],[673,981],[40,29],[38,65],[21,31],[53,90],[31,17],[179,188],[-42,39],[165,197],[91,-69],[412,517],[140,177],[130,295],[156,334],[405,629],[21,59],[128,144],[220,321],[250,364],[476,481],[72,-5],[170,268],[688,1088],[712,1038],[395,652],[39,26],[4,56],[57,-15],[31,21],[66,110],[71,119],[-90,52],[40,84],[98,-54],[14,24],[85,8],[54,266],[41,74],[228,401],[-1,40],[32,26],[69,51],[180,196],[165,118],[496,539],[239,323],[148,224],[280,257],[469,211],[299,49],[196,187],[183,256],[59,9],[64,-25],[40,-65],[-107,-214],[-60,-203],[2,-453],[48,-451],[-17,-213],[-32,-140],[-47,-134],[-291,-451],[-181,-384],[-63,-61],[-25,-20],[-335,-202]],[[196677,219515],[90,-61],[66,24],[-3,193],[95,-23],[-5,-163],[34,-248],[-120,-85],[-275,-76],[-98,2],[-134,59],[-387,-467],[-50,-12],[-132,-146],[-33,37],[94,182],[-38,47],[73,81],[44,-21],[54,48],[303,384],[-69,68],[7,126],[52,217],[275,245],[135,43],[71,-99],[-51,-180],[-11,-86],[13,-89]],[[207026,234953],[125,-291],[64,-162],[120,-194],[161,-266],[139,-189],[25,-37],[667,-381],[57,-32],[49,-28],[44,-24],[5,-2],[47,-22],[577,-278],[48,-13],[788,-389],[143,-134],[585,-479],[629,-1078],[393,-889],[13,-521],[-501,-817],[-340,-589],[-134,-131],[-101,-46],[-486,-514],[83,-79],[-430,-503],[-132,73],[-17,9],[-455,-229],[-175,-101],[-192,-182],[-80,-84],[-17,-171],[50,-37],[-2096,-2870],[-63,41],[-121,-189],[-152,-562],[-258,-946],[-132,-164],[-586,-526],[-1,-2],[-30,-52],[-37,-52],[-71,-20],[-7,-2],[-39,-30],[-105,-104],[-120,-58],[-130,-18],[-110,-4],[-49,21],[-8,3],[-55,20],[-91,0],[-204,-75],[-879,-757],[-116,-80],[-136,-31],[-37,-9],[-57,-19],[-57,-19],[-194,-54],[-242,68],[-422,310],[-704,514],[-203,142],[-258,105],[-1001,229],[-1457,241],[-237,299],[-252,243],[-105,179],[-55,212],[11,228],[31,126],[52,101],[78,345],[18,148],[32,181],[1600,2335],[268,361],[183,418],[99,-19],[84,107],[390,497],[393,395],[69,-28],[585,298],[38,19],[36,-8],[586,-318],[77,18],[324,-110],[433,-10],[279,-17],[71,-19],[87,-23],[154,-32],[102,1],[93,29],[26,74],[-2,84],[-13,52],[-2,68],[28,65],[-2,68],[-24,69],[-16,45],[-25,104],[-4,56],[0,73],[-70,32],[-105,31],[-66,24],[-12,24],[34,29],[145,-14],[82,-24],[135,22],[101,-14],[80,-27],[30,-1],[4,26],[-17,32],[-348,2],[-160,44],[-124,-7],[-23,-5],[-45,-9],[23,-74],[38,-32],[38,2],[45,-16],[86,-86],[23,-122],[-9,-197],[-51,-106],[-38,-68],[-48,-33],[-85,-9],[-22,5],[-56,11],[-72,8],[-46,0],[-59,12],[-32,-13],[-46,0],[-47,8],[-40,-8],[-36,-28],[-44,0],[-32,2],[-57,-4],[-81,-13],[-52,10],[-15,19],[-6,23],[-5,23],[10,40],[145,198],[51,87],[159,218],[28,18],[27,19],[60,106],[-412,53],[-124,105],[-165,150],[-44,407],[-3,48],[1,47],[4,48],[8,47],[17,45],[18,40],[565,963],[58,207],[10,38],[90,250],[29,58],[25,59],[20,61],[16,62],[11,63],[6,64],[2,64],[11,247],[9,194],[0,13],[-38,352],[-54,216],[-49,166],[-42,113],[-105,-26],[5,-18],[-201,-59],[-22,63],[201,61],[10,-24],[101,31],[-8,22],[-38,-6],[-100,234],[-23,318],[132,613],[213,709],[11,39],[12,40],[17,36],[30,38],[68,85],[-341,190],[82,132],[30,-16],[-64,-106],[312,-172],[70,102],[-118,68],[4,6],[7,-3],[3,5],[113,-62],[22,32],[-113,62],[82,115],[-181,104],[8,20],[-23,14],[-78,-114],[-32,12],[100,146],[233,-142],[389,690],[35,70],[30,68],[48,62],[127,112],[135,33],[567,-10],[1069,-90],[297,-187],[151,-96],[355,-501]],[[203887,294142],[34,-22],[34,-21],[-9,-11],[5,-11],[3,-10],[2,-14],[-1,-13],[-3,-14],[-5,-12],[-7,-12],[-9,-10],[-11,-9],[-12,-7],[-14,-5],[-16,-25],[-13,-27],[-7,-28],[-3,-29],[11,-30],[16,-29],[20,-26],[25,-22],[28,-19],[31,-14],[33,-9],[34,-4],[34,1],[66,-5],[67,2],[66,6],[65,12],[64,17],[62,22],[60,28],[58,31],[54,37],[4,22],[7,21],[12,24],[16,23],[19,20],[5,-4],[29,-16],[40,17],[41,13],[43,10],[53,6],[53,2],[53,-4],[52,-10],[51,-15],[247,-61],[89,-37],[26,-6],[26,-3],[27,2],[26,5],[25,9],[23,13],[41,4],[157,-28],[67,-37],[39,-21],[15,-17],[16,-19],[46,-32],[1,-4],[18,-28],[28,-19],[11,-7],[28,-10],[18,-5],[13,-1],[4,6],[6,-6],[-8,-11],[-3,-9],[11,-2],[12,-4],[14,-14],[23,-16],[27,-10],[17,-2],[13,12],[2,-12],[7,-2],[8,5],[6,-5],[3,-6],[-2,-8],[4,0],[-2,-14],[-6,-9],[14,-7],[19,11],[28,-17],[9,-13],[34,-24],[4,-12],[12,-4],[6,-13],[7,-4],[0,-8],[0,-148],[-3,-147],[-8,-147],[-13,-147],[-16,-146],[1,-40],[-4,-39],[-7,-40],[-11,-38],[-16,-37],[-31,-84],[-27,-85],[-21,-87],[-15,-88],[-10,-89],[-4,-89],[1,-89],[7,-89],[12,-88],[18,-88],[23,-86],[28,-85],[34,-84],[39,-81],[44,-79],[49,-76],[53,-73],[58,-71],[63,-67],[66,-63],[70,-60],[74,-55],[77,-52],[80,-47],[83,-42],[86,-38],[17,2],[18,0],[18,-2],[36,-12],[36,-8],[38,-4],[38,-1],[37,3],[2,3],[1,1],[2,2],[2,1],[3,1],[2,1],[3,0],[2,-1],[10,-3],[3,-6],[15,1],[14,-5],[21,-6],[21,3],[8,3],[19,14],[22,12],[20,9],[20,8],[24,14],[19,6],[17,7],[17,13],[6,-6],[9,6],[12,12],[21,22],[18,12],[16,2],[11,11],[11,8],[5,12],[13,10],[12,10],[13,15],[9,23],[19,31],[18,23],[5,21],[6,13],[9,9],[1,31],[-7,17],[4,12],[-1,20],[-2,15],[8,6],[2,11],[3,18],[10,9],[1,4],[9,0],[4,12],[20,-2],[28,2],[22,-3],[0,30],[-25,5],[-24,-3],[-17,0],[-16,5],[-10,11],[-10,8],[2,17],[3,16],[-3,6],[-3,11],[-2,9],[-3,13],[-4,19],[-5,17],[4,8],[-6,11],[-9,1],[-81,60],[-9,-14],[-16,11],[9,14],[-25,18],[-11,-13],[-17,14],[12,13],[-43,29],[-37,26],[-34,26],[-22,18],[-20,23],[-16,18],[-28,-12],[-20,27],[-18,21],[-13,21],[-88,-44],[-11,1],[-9,12],[-4,16],[91,49],[-5,14],[-10,20],[-7,20],[-9,30],[7,3],[-10,11],[-5,19],[-12,16],[-9,12],[2,18],[-7,16],[-9,16],[-1,6],[-6,6],[2,12],[-9,11],[2,11],[-6,7],[-4,10],[0,6],[-8,6],[-8,11],[2,7],[-3,9],[-5,0],[-10,10],[-9,9],[-3,12],[-3,13],[-8,14],[-9,9],[-2,8],[5,15],[0,14],[-5,1],[-3,10],[-7,11],[-5,12],[-16,-1],[-9,17],[0,14],[-8,10],[-10,6],[-10,25],[-14,19],[-16,14],[-20,28],[-17,27],[-9,22],[-7,13],[-5,9],[0,9],[-4,15],[7,5],[0,7],[-2,12],[3,6],[-1,5],[7,4],[-1,6],[10,6],[-1,2],[7,3],[2,9],[3,10],[10,3],[4,11],[-6,11],[4,7],[1,7],[16,6],[11,12],[3,8],[13,19],[7,19],[8,7],[13,6],[8,12],[5,14],[9,8],[15,6],[1,7],[7,6],[3,8],[6,2],[6,-7],[11,5],[41,-8],[90,-46],[40,13],[46,-1],[28,-27],[0,-27],[483,-266],[91,-33],[89,-38],[86,-42],[84,-46],[82,-50],[78,-55],[5,-3],[5,-4],[3,-5],[3,-6],[1,-5],[1,-6],[-1,-6],[-1,-5],[-2,-6],[-4,-5],[-4,-4],[-5,-4],[-42,-42],[-39,-45],[-35,-49],[-31,-50],[-27,-53],[-22,-54],[-18,-56],[-13,-58],[-11,-91],[-6,-92],[-1,-93],[1,-5],[-1,-5],[-1,-5],[-2,-5],[-3,-4],[-4,-4],[-5,-3],[9,-13],[4,3],[6,3],[5,2],[6,1],[15,-3],[13,-5],[13,-7],[7,-4],[6,-6],[4,-6],[4,-6],[2,-8],[1,-7],[0,-8],[1,-16],[3,-15],[5,-16],[8,-14],[10,-13],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,0],[1,0],[1,-1],[1,0],[1,0],[0,0],[1,1],[1,0],[0,0],[2,1],[2,1],[3,1],[2,0],[2,0],[2,-1],[2,-1],[2,-1],[0,-1],[0,-1],[0,-1],[0,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[0,0],[1,0],[1,1],[1,0],[1,1],[4,-1],[5,0],[4,-2],[4,-2],[4,-3],[3,-3],[3,-5],[4,-4],[4,-4],[5,-3],[6,-3],[6,-1],[6,-1],[4,0],[4,-2],[4,-2],[3,-2],[3,-3],[2,-3],[1,-6],[0,-6],[-1,-5],[-2,-6],[-3,-5],[-4,-4],[-4,-5],[-5,-3],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1],[3,-1],[3,-2],[3,-2],[3,-3],[2,-3],[1,-3],[8,6],[12,2],[9,0],[7,1],[4,5],[3,5],[7,2],[6,2],[6,-1],[5,1],[6,2],[7,0],[8,-1],[7,-2],[6,-5],[5,-8],[6,-6],[7,-3],[7,-3],[3,-4],[5,-2],[0,-4],[-1,-5],[0,-2],[6,-5],[4,-4],[-1,-6],[-6,-5],[-5,-5],[-3,-4],[0,-3],[1,-2],[5,0],[3,1],[7,3],[15,2],[8,6],[4,6],[2,7],[5,3],[6,1],[9,2],[9,0],[10,-7],[10,-11],[3,-9],[0,-5],[0,-6],[9,-12],[12,-7],[3,1],[6,0],[6,-6],[2,-6],[3,-5],[11,3],[26,1],[19,0],[11,9],[-4,18],[-12,29],[-19,13],[-29,19],[-23,11],[-39,24],[-11,11],[-10,27],[1,26],[9,25],[9,18],[16,1],[7,10],[21,14],[19,15],[17,19],[9,-3],[10,-11],[16,-2],[7,9],[-15,18],[0,12],[5,16],[4,11],[14,4],[9,10],[13,13],[15,17],[20,16],[31,17],[29,13],[13,12],[10,17],[9,23],[15,12],[12,8],[28,2],[4,10],[9,27],[60,66],[7,-3],[108,208],[-9,4],[119,227],[49,-22],[-119,-227],[-12,5],[-112,-208],[4,-2],[8,-42],[15,20],[20,12],[4,8],[9,-3],[10,8],[-2,13],[8,9],[17,11],[20,7],[40,8],[33,8],[24,24],[35,13],[41,26],[20,33],[81,38],[48,25],[45,12],[49,35],[35,18],[79,8],[86,14],[36,24],[47,38],[81,46],[65,22],[82,-16],[70,-2],[51,11],[78,4],[77,6],[50,0],[67,-6],[109,-13],[110,-13],[95,-29],[55,-18],[216,-76],[255,-98],[14,-8],[125,-49],[58,-23],[197,-54],[54,-29],[94,-34],[32,-7],[28,-11],[34,-27],[32,-19],[29,-12],[34,-9],[37,1],[56,-7],[98,-24],[75,-29],[67,-29],[132,-70],[131,-80],[273,-172],[37,-23],[39,-27],[55,-43],[42,-41],[33,-28],[19,-22],[31,-27],[21,-34],[4,3],[6,-3],[-4,-8],[9,-14],[8,-10],[31,-45],[2,-13],[-3,-13],[13,-19],[17,-19],[12,-23],[-1,-18],[16,-20],[13,-25],[7,-23],[8,-12],[4,-21],[10,-7],[19,-26],[51,-44],[43,-50],[41,-69],[17,-35],[12,-16],[3,-27],[28,-59],[22,-53],[14,-45],[2,-19],[-9,-12],[5,-24],[16,-62],[15,-62],[6,-50],[3,-24],[4,-27],[8,-41],[5,-50],[3,-58],[3,-9],[10,-4],[-1,-15],[-10,-1],[-3,-22],[-1,-22],[3,-10],[8,-10],[-9,-11],[-11,-8],[-5,-19],[-12,-9],[-12,-4],[-5,-13],[-14,-9],[-10,-19],[5,-13],[-4,-10],[-13,-42],[-7,-7],[-7,-20],[-11,-14],[-19,-45],[-1,-8],[-6,-10],[-13,-5],[-8,-13],[-5,-18],[-8,-19],[-5,-17],[6,-21],[9,-14],[13,-24],[0,-20],[-8,-14],[0,-15],[-15,-12],[-2,-19],[-5,-15],[-7,-31],[-5,-31],[13,-17],[-15,-37],[-2,-8],[-2,-11],[2,-13],[-5,-16],[-2,-25],[9,-35],[-4,-8],[-10,-18],[8,-12],[-2,-42],[-3,-26],[2,-30],[10,-14],[-13,-24],[-2,-21],[-5,-25],[0,-16],[-15,-41],[2,-35],[0,-18],[-5,-9],[3,-17],[-5,-27],[-2,-18],[4,-3],[-11,-21],[-4,-12],[0,-13],[-10,-16],[0,-18],[5,-5],[1,-8],[-9,-13],[-3,-20],[-11,-27],[9,-3],[-6,-14],[-7,-23],[0,-19],[19,-9],[-15,-4],[-12,-15],[-8,-21],[-9,-13],[5,-9],[0,-15],[-6,-8],[4,-11],[-13,-27],[-4,-28],[13,-12],[-19,-20],[-19,-4],[-13,10],[-19,2],[-12,-10],[-46,26],[-35,13],[-42,22],[-29,18],[-27,10],[-22,-1],[-35,-21],[-15,-14],[-7,-17],[2,-32],[5,-28],[24,-10],[5,-8],[10,-2],[4,-5],[22,-7],[2,-17],[144,-77],[4,-27],[12,0],[22,-9],[19,-9],[-15,-34],[-13,-26],[-2,-13],[2,-14],[-11,-9],[1,-9],[-17,-10],[-9,-26],[8,-16],[-11,-14],[6,-11],[-8,-19],[-4,-11],[-10,-3],[-22,-9],[-32,-3],[-19,-10],[-13,-18],[-15,-17],[-4,-13],[-2,-9],[5,-12],[-3,-14],[5,-17],[-3,-10],[3,-23],[-6,-14],[-9,-8],[2,-18],[-7,-14],[-4,-17],[-16,-16],[-12,-38],[-6,-17],[-14,-11],[-25,-53],[-6,-26],[0,-15],[-8,-40],[-6,-17],[-6,-13],[-7,0],[-3,-15],[-24,-32],[-14,-13],[-14,-9],[-18,-16],[-9,-14],[-27,-28],[-10,-19],[-2,-11],[1,-16],[-3,-8],[5,0],[0,-7],[1,-13],[-7,-10],[1,-10],[-13,-9],[2,-24],[-10,-17],[-7,-13],[-11,0],[-7,-11],[9,-11],[-2,-28],[-5,-16],[-11,-17],[-14,-9],[-16,-13],[-11,-9],[-2,-17],[-12,-20],[40,-21],[-90,-129],[-65,-102],[-82,-122],[-137,-212],[-103,-155],[-71,-103],[112,-59],[2,-11],[-174,-276],[-180,-290],[-248,-396],[-201,-323],[-46,-79],[-10,-5],[-64,-22],[-80,-34],[-53,-16],[-36,-16],[-48,-1],[-331,-33],[-3,-9],[240,-121],[41,-78],[39,-106],[-392,203],[-18,7],[-8,2],[-51,-7],[-54,-5],[-109,-11],[2,-9],[-3,-15],[-16,-3],[4,-39],[-111,-18],[-4,30],[-16,1],[-29,-6],[-29,0],[-36,-6],[-28,-7],[-23,-13],[-15,-22],[-8,-29],[3,-30],[3,-23],[17,-21],[17,-13],[10,-5],[14,-7],[26,-8],[30,-6],[10,0],[36,-7],[32,-9],[20,-3],[28,-3],[28,-1],[33,9],[21,3],[13,-1],[6,0],[10,-2],[8,-4],[8,-4],[7,-6],[7,-6],[3,-7],[5,-6],[5,-5],[7,-4],[7,-3],[16,-18],[16,-15],[12,-24],[5,-37],[2,-14],[2,-15],[0,-13],[2,-43],[1,-33],[0,-7],[1,-21],[0,-21],[-16,-22],[-11,-9],[-22,-17],[-26,-15],[-7,-7],[-23,-20],[-11,-13],[-7,-14],[-27,-63],[-6,-14],[-26,-51],[-5,-13],[-5,-35],[7,-16],[9,-18],[5,-18],[-2,-19],[19,-11],[8,1],[41,-24],[-41,-54],[15,-8],[-39,-60],[-31,-53],[-13,-21],[-28,16],[-6,-12],[8,-5],[-11,-10],[-5,4],[-7,-7],[4,-2],[-6,-8],[-9,0],[-34,18],[-6,-7],[-7,-11],[-16,-20],[-38,-49],[-24,-30],[-12,-15],[-12,-13],[-4,-4],[-3,-4],[-40,-43],[-11,-13],[-1,-1],[-94,-110],[-40,-36],[-22,-15],[-12,-12],[-32,-31],[-72,-69],[-5,-5],[-16,-16],[-41,-40],[-20,-13],[-6,-3],[-21,-14],[-17,-9],[-4,-3],[-9,-10],[-13,-13],[-6,-5],[-9,-10],[-39,-40],[-4,-5],[-10,-10],[-4,-6],[-5,-5],[-12,-13],[-3,-4],[-6,-6],[-34,-11],[-17,-8],[-26,-17],[-23,2],[-17,-7],[-15,-9],[-4,-2],[-22,-14],[-11,-11],[-14,-14],[-38,-38],[-48,-57],[-25,-32],[-15,-12],[-30,-48],[-22,-36],[-18,-29],[-1,-36],[-31,-44],[-13,-24],[-14,-27],[-8,-10],[-10,-11],[-9,-10],[-11,-12],[-4,-12],[-13,-12],[-14,-12],[-26,-30],[-20,-22],[-25,-37],[-35,-40],[-14,-23],[-12,-16],[3,-14],[-8,-21],[7,-13],[2,-24],[-12,-14],[-13,-24],[-2,-12],[-8,0],[-3,-8],[-14,-19],[2,-8],[-12,-11],[-1,-8],[24,-9],[-27,-41],[-14,-14],[-63,-85],[-130,-167],[-107,-141],[46,-20],[-10,-20],[-7,-27],[-7,-30],[4,-12],[-11,-24],[-11,6],[-2,-9],[-2,-21],[-10,-21],[-10,1],[-15,-16],[-5,-16],[-18,-25],[-19,-8],[-18,-11],[-14,-23],[4,-22],[-3,-18],[-7,-23],[-13,-11],[-15,-22],[-8,7],[-10,-10],[1,-5],[-6,-10],[10,-8],[-32,-44],[11,-5],[-50,-65],[14,-8],[-66,-83],[-11,-17],[-62,-80],[-82,-109],[-60,-74],[-65,-87],[-40,-50],[-23,-33],[-26,-32],[-13,-18],[-13,-6],[-14,6],[0,6],[-162,86],[-171,88],[-119,59],[6,7],[-49,26],[-33,14],[-9,-12],[-14,-20],[-6,3],[-10,-16],[84,-46],[35,-20],[17,-5],[21,-12],[6,-7],[63,-32],[17,-5],[69,-40],[14,-5],[16,-10],[38,-18],[47,-33],[-2,-5],[-41,25],[-46,24],[-29,15],[-69,37],[-251,137],[30,40],[-6,4],[4,9],[-47,25],[1,6],[-69,36],[-21,3],[-11,21],[-17,26],[3,21],[-34,36],[-41,96],[-6,12],[-88,171],[-65,136],[-81,125],[-43,69],[-31,20],[-12,2],[-3,-3],[-11,-1],[-19,-16],[-23,-12],[-17,-9],[-36,-25],[0,-6],[-16,-19],[-9,1],[-20,-21],[-27,-84],[-17,-56],[-17,-39],[-11,-58],[-7,-41],[10,-14],[-6,-16],[-16,0],[-1,-20],[10,-10],[11,-2],[11,3],[-6,-18],[9,-2],[11,-13],[-4,-9],[1,-7],[13,-1],[-1,-15],[-25,-3],[-25,6],[6,10],[-21,1],[9,8],[-12,0],[-6,-16],[-21,0],[0,-9],[-9,-4],[1,14],[-11,-4],[-2,-11],[-2,-15],[8,-10],[16,-10],[11,1],[0,-13],[-4,-3],[-1,-7],[5,-5],[3,-18],[14,-20],[7,0],[10,-13],[-6,-2],[-2,-10],[-24,-2],[-13,6],[-8,9],[-20,-10],[12,-8],[21,-15],[-8,-18],[-19,-5],[-3,-18],[-9,-7],[0,-15],[-5,-23],[-5,-32],[4,-14],[11,-15],[23,-16],[-11,-10],[7,-10],[14,-9],[25,-8],[25,2],[8,-9],[11,-8],[7,-5],[10,6],[9,-5],[11,-10],[29,-1],[8,-12],[17,-8],[12,-13],[13,-5],[8,-6],[16,-13],[13,-12],[13,-10],[5,-10],[7,1],[7,-6],[14,-10],[13,-5],[11,-4],[10,-7],[7,-14],[-11,-4],[-20,8],[-15,8],[-11,0],[11,-13],[23,-10],[15,-2],[19,4],[14,-17],[10,-25],[0,-16],[-6,-7],[-4,-17],[-5,-20],[4,-17],[11,-16],[18,-4],[14,-17],[9,-16],[25,-5],[18,-18],[-3,-14],[-8,-7],[11,-13],[9,-4],[2,-8],[9,-2],[-19,-32],[-7,-30],[-5,-22],[18,-3],[6,-6],[9,-12],[2,-16],[4,-17],[-9,-23],[-4,-12],[13,-9],[-13,-4],[-5,-10],[15,-4],[41,7],[6,-11],[28,-4],[8,-22],[9,-28],[-15,-76],[79,-30],[91,-35],[3,-7],[22,-8],[9,1],[78,165],[82,-28],[-8,-24],[-67,24],[-6,-18],[35,-19],[-4,-8],[-38,22],[-9,-18],[0,-6],[21,-7],[-3,-10],[-25,10],[-23,-52],[20,-6],[-4,-8],[-18,7],[-14,-29],[24,-8],[-14,-28],[22,-9],[-4,-6],[-19,8],[-19,-44],[11,-12],[7,4],[3,-4],[-11,-7],[-18,17],[0,6],[-100,29],[-2,-29],[32,-15],[-16,-40],[-5,-17],[27,-12],[-2,-9],[7,-4],[16,32],[5,-2],[-14,-28],[40,12],[1,-9],[-40,-13],[0,-8],[9,-4],[3,-6],[-5,-13],[-15,-20],[-5,6],[-7,2],[-9,-9],[0,9],[18,34],[2,8],[-6,5],[-2,-5],[-15,6],[-3,-9],[-67,26],[2,9],[19,-5],[3,9],[-24,10],[-31,14],[-6,-21],[-26,8],[3,6],[-33,10],[-4,-7],[8,-16],[12,-13],[-3,-19],[17,8],[6,18],[78,-45],[-10,-24],[-76,45],[-5,-5],[-9,-7],[-2,-11],[8,-11],[8,5],[21,-12],[-1,-3],[6,-5],[3,4],[4,-1],[-3,-4],[6,-4],[2,4],[6,-1],[-1,-4],[12,-5],[2,5],[4,-1],[-3,-10],[-17,7],[-4,-7],[-5,1],[3,6],[-6,4],[-5,-6],[-5,2],[4,6],[-6,3],[-14,-22],[42,-17],[-15,-35],[14,-4],[5,8],[43,-13],[17,37],[9,-4],[-15,-35],[13,-5],[-8,-20],[3,-2],[40,49],[14,-9],[-36,-49],[-11,-7],[-10,11],[-3,-7],[-66,22],[4,12],[-16,6],[-6,-11],[-33,16],[-12,-21],[35,-16],[-4,-6],[-36,17],[-3,-4],[3,-1],[-4,-8],[-5,2],[-5,-7],[82,-47],[-6,-12],[-17,7],[-5,-13],[-32,11],[-24,-35],[14,-8],[-22,-37],[-13,10],[-15,-9],[-43,42],[19,14],[37,48],[-30,15],[-39,-10],[-24,-1],[-51,-79],[-36,-16],[-24,-8],[-35,-17],[-38,-14],[-22,-21],[-17,-25],[-6,-20],[4,-24],[4,-16],[13,-45],[0,-49],[-20,-19],[-16,-8],[-18,-8],[-11,-6],[-24,-12],[-26,-6],[-35,-11],[-22,-5],[-16,0],[-15,-6],[-8,-7],[-11,-16],[-15,-16],[-17,-17],[-47,-44],[-18,-58],[-52,-10],[-7,-22],[14,-9],[23,-5],[-36,-43],[-32,-17],[-17,-22],[-29,11],[-24,-15],[-28,-19],[4,-234],[16,-21],[-18,-29],[-1,-183],[19,-228],[2,3],[4,5],[4,7],[0,1],[1,1],[82,132],[10,17],[-1,2],[-1,2],[-1,3],[0,3],[0,2],[1,3],[1,3],[1,2],[2,2],[2,2],[3,1],[2,1],[3,1],[3,0],[3,0],[54,94],[-9,4],[78,137],[48,87],[-9,4],[44,76],[-11,6],[43,80],[-3,2],[45,80],[111,-54],[-45,-81],[-4,2],[-46,-81],[-11,5],[-43,-74],[-40,19],[-127,-223],[-8,4],[-54,-95],[1,-2],[1,-3],[0,-2],[0,-3],[0,-3],[-1,-3],[-1,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-1],[-3,-1],[-3,0],[-3,0],[-17,-32],[-21,-40],[-10,-18],[-15,-35],[-8,-20],[-5,-10],[-5,-9],[0,0],[-5,-9],[11,-7],[-75,-112],[-167,-254],[-93,-148],[-50,-79],[-144,-228],[-175,-281],[-118,-192],[-250,-416],[-267,-460],[-142,-257],[-188,-336],[-30,-38],[-7,-22],[-24,-39],[-23,-39],[-23,-43],[-5,-16],[-11,-10],[-28,-50],[-37,-69],[-12,-32],[-32,-53],[-47,-89],[-41,-74],[-26,-41],[-7,-24],[-60,-111],[-14,-23],[-45,-88],[-12,-22],[-61,-114],[-16,-20],[-9,-28],[-83,-156],[-130,-236],[-11,-20],[-148,-264],[-136,-236],[-129,-218],[-120,-218],[-86,-157],[-92,-159],[-74,-137],[-81,-148],[-198,-355],[-102,-182],[-49,-86],[-108,-191],[-19,-38],[-20,-40],[-22,-38],[-493,-869],[-24,-46],[-35,-63],[-29,-53],[-117,-210],[-37,-64],[-26,-44],[-29,-59],[-30,-60],[-34,-72],[-33,-70],[-42,-96],[-35,-83],[-32,-82],[-33,-82],[-45,-127],[-31,-93],[-28,-92],[-49,-166],[-33,-114],[-30,-97],[-28,-98],[-15,-43],[-6,-27],[-30,-101],[-29,-93],[-14,-48],[-19,-64],[-28,-100],[-8,-14],[-10,-20],[-5,-37],[-52,-139],[-50,-106],[-153,-362],[-85,-187],[-105,-234],[-189,-423],[-203,-448],[-393,-873],[-101,-260],[-87,-187],[-42,-94],[-61,-132],[-56,-125],[-38,-90],[-30,-62],[-40,-96],[-67,-144],[-84,-161],[-84,-184],[-65,-153],[-54,-129],[-59,-149],[-54,-146],[-17,-50],[-30,-91],[-57,-170],[-67,-88],[-120,-214],[1,-15],[-32,-109],[-9,-23],[-8,-10],[-10,-26],[-13,-14],[-16,-61],[-12,-18],[-13,-116],[-4,-41],[-10,-111],[-13,-73],[-6,-31],[24,-32],[-5,-19],[-4,-20],[-1,-21],[-4,-6],[0,-10],[-13,-8],[-23,-158],[-3,-73],[3,-38],[-7,-29],[-21,-222],[4,-28],[-9,-17],[-8,-115],[0,-24],[-4,-21],[-6,-179],[-3,-37],[-1,-18],[-8,-7],[4,-15],[-2,-24],[3,-10],[-9,-16],[1,-15],[4,-10],[6,-20],[-1,-10],[4,-10],[-10,-11],[-4,-8],[7,-7],[2,-71],[2,-17],[3,-5],[3,-15],[-5,-15],[1,-12],[-4,-17],[2,-32],[-6,-1],[-8,-14],[-15,-7],[2,-17],[5,-132],[17,-246],[9,2],[23,-327],[-11,1],[5,-65],[12,-119],[28,-296],[23,-226],[31,-328],[26,-243],[39,-369],[20,-12],[-2,-15],[7,-4],[-2,-9],[8,-12],[6,-16],[7,-15],[-2,-33],[12,-16],[3,-21],[-7,-10],[8,-17],[9,-19],[-2,-17],[7,-25],[8,-42],[5,-19],[-12,-12],[5,-46],[7,-10],[11,-11],[8,-103],[-13,-11],[-15,-6],[4,-20],[13,1],[2,-13],[4,-3],[10,-12],[3,-38],[-8,-7],[0,-19],[-1,-31],[5,-24],[1,-23],[11,-5],[13,-164],[3,-3],[5,-6],[-4,-16],[-1,-5],[2,-1],[4,-5],[2,-36],[-2,-6],[-6,-19],[1,-36],[0,-14],[-2,-35],[5,-23],[-2,-21],[5,-14],[-5,-15],[6,-14],[-1,-13],[4,-21],[4,-32],[-5,-6],[5,-10],[-3,-9],[-4,-14],[6,-10],[1,-30],[13,4],[5,-35],[7,-53],[3,-16],[6,-45],[6,-47],[-10,-3],[4,-42],[7,-65],[3,-28],[57,-529],[-37,-4],[12,-151],[22,-288],[38,-494],[7,-5],[19,-454],[19,-449],[1,-118],[12,-45],[17,-209],[17,-284],[33,-555],[12,-39],[0,-6],[8,-170],[7,-118],[3,-95],[9,-249],[2,-47],[0,-28],[5,-83],[7,-147],[3,-68],[-1,-18],[4,-104],[16,-295],[-1,-33],[6,-140],[6,-104],[14,-323],[2,-46],[11,-261],[-2,-25],[9,-184],[88,-7],[-1,-95],[1,-81],[1,-59],[1,-45],[16,-776],[4,-442],[3,-482],[-10,-493],[-15,-715],[-72,2],[0,-9],[3,-8],[-5,-7],[-1,-10],[6,-9],[0,-12],[-7,-15],[-1,-8],[12,-12],[-7,-22],[4,-21],[-6,-11],[2,-8],[-7,-14],[5,-19],[0,-18],[0,-23],[-2,-21],[-1,-25],[6,-23],[-3,-23],[1,-15],[-10,-20],[-3,-23],[3,-24],[-4,-23],[-10,-71],[-2,-27],[5,-13],[-1,-16],[5,-20],[-4,-18],[5,-29],[-11,-9],[8,-13],[-7,-16],[-4,-15],[9,-11],[-1,-17],[-1,-40],[5,-23],[6,-27],[-15,-29],[-15,-34],[98,-2],[-3,-179],[-1,-43],[-1,-31],[-3,-40],[-1,-29],[-36,-552],[-32,-411],[-16,-159],[-19,-206],[-34,-287],[-27,-198],[-37,-246],[-53,-439],[-14,-264],[-6,-123],[-17,-304],[2,-282],[77,-387],[11,-22],[38,-227],[9,-62],[346,-814],[144,-217],[43,-63],[47,-63],[6,-8],[55,-91],[94,-121],[187,-245],[150,-195],[524,-695],[29,-36],[13,-18],[5,-17],[12,-7],[10,-12],[14,-27],[11,-10],[54,-79],[22,-31],[68,-96],[20,-34],[8,-14],[10,-18],[15,-26],[25,-41],[3,-9],[32,-51],[1,-8],[10,-14],[15,-27],[16,-26],[50,-84],[14,-28],[55,-91],[4,-11],[9,-12],[5,-12],[30,-50],[5,-12],[13,-17],[23,-42],[0,-8],[19,-27],[62,-103],[23,-41],[32,-56],[13,-22],[15,-26],[18,-40],[11,-22],[43,-94],[5,-8],[77,-163],[29,-57],[24,-71],[-3,-4],[-41,-65],[22,-51],[17,-43],[45,-93],[12,-26],[64,-131],[58,-170],[72,-200],[35,-98],[41,-113],[11,-35],[51,-147],[14,-55],[18,-80],[17,-94],[41,-174],[56,-27],[52,-25],[5,-85],[3,-58],[3,-50],[5,-45],[5,-48],[9,-83],[20,-226],[10,-106],[22,-244],[-11,-306],[-15,-421],[-17,-504],[-40,-1153],[-151,-701],[-17,-33],[-138,-234],[-95,-163],[-39,-67],[-80,-134],[21,-16],[-6,-10],[26,-14],[-14,-26],[-34,14],[-9,-16],[-9,2],[-13,-24],[10,-7],[-92,-161],[-24,10],[-55,-93],[-138,-94],[-430,-289],[-194,-130],[-143,-97],[-84,-57],[-50,-35],[-84,-59],[-43,-30],[-168,-118],[-98,-63],[-18,-12],[-83,-53],[-127,-91],[-142,-104],[-86,-62],[-16,-12],[-132,-96],[-151,-133],[-99,-86],[-113,-102],[-125,-108],[-42,-38],[-105,-90],[-142,-116],[-195,-165],[-33,-29],[-40,-35],[-60,-59],[2,-2],[46,-42],[-172,-160],[-44,43],[-181,-173],[-119,-205],[-184,-311],[-231,-395],[-228,-385],[5,-6],[-17,-31],[5,-15],[36,-19],[542,-287],[7,-9],[1,-9],[-57,-97],[-5,-4],[-10,0],[-561,288],[-49,-133],[-105,-289],[-12,-32],[-82,-228],[-53,-146],[-32,-94],[-6,-12],[-28,-80],[-20,-54],[-27,-73],[-81,-163],[1,-6],[-8,-10],[-8,-19],[-89,-191],[-11,-14],[-37,-53],[-32,-43],[-182,-255],[-450,-634],[-347,-487],[-5,-2],[-5,-2],[-7,-6],[-17,-9],[-5,-7],[-13,-9],[-12,-8],[-16,-9],[-21,-15],[-15,-10],[-7,-3],[-16,-11],[-8,-6],[-32,-21],[-21,-13],[-22,-16],[-11,-6],[-14,-10],[-8,-7],[-18,-11],[-59,-39],[-56,-38],[-50,-34],[-11,-9],[-19,-10],[-6,-5],[-20,-13],[-31,-21],[-27,-17],[-2,0],[-18,-10],[-11,-8],[-13,-8],[-26,-15],[-121,-71],[-37,-20],[-16,-10],[-16,-11],[-22,-13],[-169,-103],[-50,-32],[-92,-59],[-111,-72],[-99,-64],[-102,-67],[-84,-54],[-48,-31],[-27,-17],[-21,-17],[-64,-55],[-20,-18],[-43,-37],[-66,-58],[-54,-46],[-42,-36],[-50,-44],[-61,-53],[-29,-27],[-27,-32],[-21,-32],[-19,-31],[-25,-42],[-23,-40],[-31,-56],[-27,-46],[-68,-113],[4,-17],[-64,-173],[-144,-867],[6,-200],[96,-496],[71,-362],[240,-649],[130,248],[138,-103],[40,29],[55,-170],[-53,-84],[110,-95],[-222,-368],[148,-377],[122,-553],[12,-71],[68,-56],[-20,-60],[36,-16],[34,-20],[30,-24],[27,-29],[22,-31],[17,-34],[12,-37],[44,-564],[-49,-176],[-198,-178],[-115,-391],[-213,-419],[-253,-358],[-201,-286],[-184,-239],[-287,-374],[-282,-367],[-456,-483],[-488,-520],[-312,-412],[-361,-477],[-403,-539],[-324,-431],[-261,-447],[-178,-305],[-128,-195],[-304,-466],[-367,-497],[-348,-470],[-335,-468],[-337,-470],[-654,-914],[-652,-913],[-715,-783],[-186,-204],[-270,-305],[-15,-17],[-400,-455],[-210,-235],[-174,-192],[-24,-28],[-227,-258],[-156,-172],[-65,-68],[-15,-16],[-25,-28],[-18,-17],[-23,-27],[-32,-39],[-145,-173],[-181,-256],[-64,-57],[-5,-7],[-295,-460],[-4,-37],[-232,-375],[-202,-352],[-181,-266],[-87,-92],[0,0],[-143,-149],[-372,-354],[-314,-446],[-36,-53],[-23,13],[-282,-399],[-131,-184],[18,-18],[-181,-254],[-356,-485],[-327,-445],[-346,-470],[-311,-423],[-1603,-2373],[-128,-189],[-34,-45],[-38,-58],[-80,-122],[82,-50],[-40,-56],[-1,-10],[-2,-8],[-9,1],[-6,-17],[-13,-8],[-9,-18],[-24,-40],[-19,-28],[-20,-28],[-8,-16],[-15,-22],[-9,-9],[-12,-25],[-6,-9],[-28,-35],[-2,-8],[-5,-9],[-6,-5],[-4,-12],[-14,-15],[-15,-25],[-4,-9],[-14,-21],[-7,-6],[-4,-9],[-26,-36],[-118,-173],[-15,10],[-4,-1],[-10,-18],[-6,-3],[-2,-9],[-9,-7],[-2,-7],[-32,-46],[-37,-56],[-49,-74],[-15,-17],[-7,-11],[-2,-9],[-47,-71],[-4,-2],[-5,-7],[-27,-44],[-10,-11],[-1,-5],[-10,-14],[-10,-15],[-18,-25],[-36,-58],[-18,-24],[-29,-43],[-17,-28],[-5,-2],[-39,-59],[-1,-8],[-111,-163],[-18,10],[-4,-5],[-12,9],[2,3],[-29,22],[-45,-72],[-27,-40],[-24,-35],[-54,-81],[-76,-116],[8,-10],[0,-10],[-32,-55],[-40,-63],[-11,-5],[-7,2],[-21,-33],[-39,-71],[-34,-58],[-102,-193],[-43,20],[-12,10],[-8,2],[-5,5],[-7,2],[-5,5],[-7,0],[-7,6],[-26,-49],[-20,-38],[-62,-119],[205,-121],[4,0],[12,-6],[4,-7],[20,-10],[8,-11],[2,-10],[-25,-32],[-5,0],[-6,-5],[-19,11],[-5,-3],[-23,13],[0,0],[-23,14],[-53,30],[-2,-2],[-131,65],[-5,-4],[-15,-28],[-42,-78],[-52,-98],[77,-41],[18,-10],[-47,-93],[24,-11],[21,48],[5,5],[8,1],[55,-22],[8,-11],[-91,-193],[-8,-9],[-7,-1],[-7,-9],[-24,18],[-30,9],[3,6],[-4,3],[-3,6],[31,62],[-27,12],[-86,-158],[-89,-168],[-26,-48],[-130,-254],[78,-41],[14,-7],[-21,-36],[-114,-215],[-56,-347],[-13,-76],[-19,-128],[-32,-181],[-28,-188],[-55,-313],[-2,-13],[48,-8],[10,-1],[8,-3],[9,-10],[2,-13],[0,-3],[-31,-189],[-6,-8],[-6,-3],[0,-6],[24,-2],[-13,-73],[-31,5],[-2,-4],[11,-7],[3,-7],[-32,-197],[-7,-13],[-13,-6],[-66,8],[-136,-616],[2,-34],[3,-92],[3,-32],[0,-45],[-1,-87],[9,-44],[1,-38],[2,-24],[1,-33],[-1,-55],[4,-57],[0,-15],[1,-29],[-5,-49],[-7,-3],[0,-13],[6,-9],[3,-96],[-5,-8],[-1,-7],[7,-5],[2,-133],[3,-11],[5,-71],[-8,-18],[4,-13],[5,-58],[-6,-19],[5,-102],[0,-132],[18,0],[-2,-108],[6,-70],[-15,-1],[0,-24],[-3,-7],[3,-26],[-7,-17],[7,-9],[-2,-25],[0,-19],[9,-63],[-1,-108],[-3,-82],[4,-19],[2,-42],[3,-34],[12,-142],[-4,-13],[45,-495],[-13,-12],[-222,-13],[-957,496],[-28,-93],[27,-12],[3,6],[7,-1],[231,-122],[-12,-20],[-237,124],[1,4],[-24,9],[-23,-164],[18,-2],[21,-9],[4,2],[182,-75],[-7,-17],[-183,77],[-1,3],[-19,5],[-16,-2],[-6,-114],[4,-75],[12,61],[24,-5],[-8,-29],[132,-27],[2,-13],[-7,-10],[-132,24],[1,-8],[-5,0],[4,-47],[3,-46],[46,0],[0,4],[79,-1],[0,4],[45,3],[1,-15],[20,-2],[7,11],[33,-24],[2,3],[416,-214],[-13,-20],[98,-53],[139,-73],[155,267],[-81,58],[4,6],[104,-79],[-145,-245],[20,-14],[20,28],[29,-19],[13,24],[17,-9],[-67,-104],[-14,10],[14,23],[-31,15],[15,23],[-20,12],[-21,-35],[-162,89],[-14,-32],[3,-4],[11,-15],[12,-23],[4,-22],[-2,-30],[-12,-30],[-21,-23],[-24,-17],[-31,-14],[-25,-2],[-40,6],[-13,-24],[-555,287],[9,-64],[9,-43],[13,-66],[10,-48],[15,-68],[21,-107],[28,-133],[10,-49],[26,-124],[18,-81],[9,-47],[11,-59],[28,-131],[28,-141],[24,-113],[18,-85],[21,-103],[10,-14],[5,-28],[17,-13],[4,-17],[6,-14],[16,1],[2,-15],[6,-6],[5,-14],[-13,-14],[5,-24],[10,3],[-5,10],[11,10],[14,3],[16,-17],[-12,-12],[12,-9],[12,10],[14,-3],[9,8],[12,-5],[11,4],[8,-10],[-11,-7],[1,-17],[-14,-3],[-7,-8],[-7,-13],[-12,-3],[-13,-12],[-17,-2],[-8,-17],[-13,4],[-20,-7],[2,-23],[61,-290],[58,-292],[18,-104],[13,-52],[11,-50],[43,-215],[11,-57],[67,-315],[20,-35],[9,-13],[16,-28],[15,-20],[21,-34],[29,-43],[22,-31],[34,-43],[29,-37],[28,-36],[29,-34],[54,-56],[54,-53],[53,-58],[64,-64],[52,-50],[49,-44],[13,-11],[78,-70],[58,-51],[4,-3],[89,-83],[22,-24],[27,-32],[29,-35],[38,-54],[29,-42],[16,-23],[50,-80],[2,-6],[28,-53],[45,-83],[31,-69],[36,-90],[7,-22],[18,-57],[14,-62],[10,-56],[5,-25],[7,-53],[5,-89],[4,-66],[0,-58],[-8,-116],[-5,-64],[-16,-111],[-2,-17],[-10,-85],[-23,-159],[-28,-231],[-9,-7],[-2,-37],[-10,-5],[-18,8],[-11,-2],[-10,-3],[-21,-183],[62,-7],[15,-2],[15,-1],[10,-6],[5,-9],[13,-1],[1,-17],[-84,-557],[-27,-182],[-16,-116],[-14,-92],[-13,-95],[-18,-128],[-4,-9],[-10,-6],[-16,1],[-26,-179],[-10,-61],[-6,-61],[-17,-103],[-13,-88],[-4,-14],[-14,-91],[-27,-154],[-19,-121],[-18,-96],[-4,-18],[-6,-30],[-2,-23],[-8,-34],[-36,-195],[-6,-30],[-32,-155],[-10,-64],[-20,-102],[-37,-194],[-22,-117],[-24,-126],[-68,-348],[-236,-1240],[-35,-177],[-60,-323],[-65,-323],[-70,-321],[-75,-321],[-81,-319],[-66,-244],[-118,-428],[-124,-427],[-129,-426],[-134,-424],[-139,-423],[-145,-421],[-149,-419],[-15,-36],[-10,-25],[-8,-20],[-16,-43],[-7,-19],[-9,-22],[0,0],[-348,-935],[5,-6],[-108,-297],[-51,-143],[-46,-110],[-25,-31],[-91,-233],[-73,-161],[-47,-85],[-28,-50],[-100,-153],[-66,-90],[-107,-125],[-40,-46],[-103,-99],[-189,-174],[-120,-103],[-62,-50],[-48,-35],[-61,-30],[-51,-22],[-63,-20],[-46,-6],[-72,-7],[-151,-12],[-99,-8],[-256,-22],[-11,-1],[-52,-4],[-462,-39],[-153,-12],[-33,-2],[4,-56],[-112,-10],[-480,-43],[25,-302],[-1124,-138],[-360,-43],[-529,-63],[-1273,-153],[-1000,-119],[-5,-8],[-134,-15],[-35,5],[-21,17],[-10,16],[-87,567],[-5,4],[-14,2],[-18,6],[-13,15],[-12,18],[-37,-3],[-63,-9],[-284,-42],[-64,-9],[-71,-11],[-105,-20],[-256,-45],[-221,-44],[-170,-34],[-173,-25],[-175,-28],[-218,-43],[-40,-7],[-85,-23],[-83,-7],[-32,-7],[-36,-7],[-132,-26],[-301,-64],[-553,-105],[-166,-6],[-82,-4],[-147,-31],[-124,-47],[-370,-75],[-389,-68],[-133,-23],[-400,-69],[-383,-73],[-496,-171],[-125,-62],[-150,-76],[-21,-12],[-99,-60],[-20,-11],[-34,-18],[-8,-19],[-37,-30],[-63,-34],[-43,-46],[-51,-39],[-37,-27],[-40,-26],[-42,-26],[-34,-30],[-24,-17],[-25,-17],[-39,-26],[7,-11],[14,-21],[-30,-22],[-8,1],[-12,18],[-24,33],[-169,-105],[-41,-25],[2,-7],[-2,-19],[-5,-21],[-10,-19],[-15,-11],[-88,-67],[-59,-45],[-103,-67],[-94,-58],[-136,-81],[-48,-28],[-20,-14],[-189,-127],[34,-47],[-57,-42],[-5,-4],[3,-4],[41,-55],[-9,-11],[4,-7],[-4,-4],[0,-6],[119,-162],[-261,-182],[-1,-1],[0,-1],[510,-574],[-6,-18],[-143,-110],[-380,-305],[-11,1],[-4,0],[-231,261],[-137,154],[-4,4],[0,-1],[-38,-28],[-22,-17],[-254,128],[-72,-57],[200,-224],[-33,-23],[20,-21],[256,-280],[0,-6],[-125,-96],[-9,1],[-91,108],[0,-4],[-54,-48],[-6,-2],[-36,38],[0,5],[56,48],[7,0],[-580,642],[-161,-129],[-30,-24],[14,-17],[31,24],[421,-468],[-58,-50],[-379,412],[-40,59],[17,16],[-14,18],[-117,-92],[-71,77],[-270,-223],[72,-78],[-197,-164],[-3,-9],[678,-764],[-9,-7],[-130,-103],[-155,175],[-518,587],[-21,-2],[-49,-38],[-166,-131],[48,-54],[16,12],[98,-119],[-48,-36],[-99,119],[15,12],[-45,54],[-30,-24],[-56,-49],[722,-819],[2,2],[15,-15],[-3,-3],[-28,-22],[56,-67],[-96,-74],[-16,1],[-17,21],[-14,2],[-11,18],[-13,14],[-19,22],[-15,16],[-26,30],[-88,95],[0,11],[-15,12],[-10,14],[-7,0],[-44,55],[-33,50],[-21,22],[-94,96],[-29,29],[-43,43],[-64,70],[-45,41],[-43,38],[-6,-3],[-23,17],[5,6],[-127,102],[-7,2],[-21,16],[-16,-1],[-141,-111],[-80,-66],[-74,82],[-125,-101],[-56,-45],[-101,-82],[155,-152],[13,-14],[255,-286],[16,-17],[250,-280],[-27,-22],[13,-14],[21,17],[22,-23],[6,5],[76,-82],[-118,-99],[-4,0],[-70,76],[8,6],[-5,12],[9,12],[-3,9],[6,4],[-1,10],[4,4],[-3,7],[34,25],[-14,15],[-73,-62],[-191,213],[-158,169],[-77,83],[-81,87],[-34,52],[-5,-3],[-123,137],[-18,21],[-130,-98],[-140,-108],[-185,-138],[-5,-6],[-48,-94],[-25,-50],[-4,-6],[-4,-8],[-29,-21],[-1,-6],[-161,-121],[-252,-191],[-467,-356],[-20,-8],[-93,-33],[378,-629],[585,315],[101,-169],[-585,-315],[116,-193],[-168,-91],[-607,1013],[-413,-129],[-354,-112],[-149,-43],[-54,-15],[44,-156],[-15,-5],[-4,5],[-101,-20],[49,-158],[50,16],[32,-83],[7,-33],[-26,-10],[9,-27],[0,-12],[9,0],[15,-31],[-3,-7],[14,-35],[14,-12],[-9,-8],[6,-14],[8,-1],[9,-16],[-10,-5],[3,-12],[7,4],[14,-22],[-12,-8],[19,-46],[14,1],[7,-7],[-1,-9],[-13,-14],[17,-39],[9,4],[13,-24],[-12,-7],[73,-169],[-9,-20],[-10,-5],[-22,30],[-49,136],[-45,128],[-25,78],[-19,51],[-19,48],[-18,44],[-10,23],[-129,-36],[34,-157],[3,-38],[-7,-14],[-15,-9],[-16,-2],[-13,3],[-9,16],[-23,65],[-23,57],[-20,51],[-141,-35],[18,-37],[11,-22],[11,-43],[21,-63],[13,-48],[-2,-16],[-11,-11],[-29,3],[-15,14],[-15,-1],[-15,40],[-16,31],[-31,73],[-4,16],[-9,33],[-4,7],[-85,-26],[-59,-18],[1,-13],[10,-50],[19,-55],[38,-116],[45,-116],[29,-93],[-46,-43],[-19,-10],[-48,8],[-30,29],[-24,44],[-19,53],[-9,16],[-40,68],[-11,34],[-40,95],[-27,68],[-18,34],[-125,-38],[2,-46],[22,-117],[16,-83],[8,-52],[1,-26],[-17,-12],[-44,-21],[-22,5],[-20,25],[-33,55],[-38,63],[-24,41],[-20,42],[-9,26],[-15,43],[-2,20],[-58,-6],[-65,-6],[-3,-27],[0,-87],[11,-105],[10,-93],[33,-170],[8,-50],[-6,-19],[-14,-14],[-43,-1],[-17,23],[-8,32],[-8,67],[-7,66],[-5,66],[-9,106],[-4,27],[-10,45],[-31,126],[-131,-15],[3,-93],[-2,-72],[-12,-67],[-19,-53],[-33,-22],[-15,4],[-40,32],[8,8],[12,19],[19,65],[26,-10],[6,48],[17,2],[2,10],[-19,0],[0,43],[19,6],[-1,6],[-19,-1],[2,45],[22,2],[0,15],[-35,-3],[-3,35],[20,1],[-15,108],[41,5],[-29,223],[-244,40],[-87,-339],[-8,-32],[8,-1],[-22,-89],[-6,1],[-7,-57],[-16,-46],[-29,-115],[-55,7],[0,10],[82,314],[8,-2],[8,30],[-85,51],[-8,-9],[3,-2],[-11,-14],[-2,1],[-31,-51],[-50,-76],[-69,-107],[-9,6],[-6,-7],[1,-19],[-31,-66],[-24,10],[3,22],[8,3],[28,51],[0,11],[35,46],[36,48],[1,7],[5,5],[4,1],[42,69],[8,9],[1,5],[44,70],[-197,121],[-51,-80],[-29,-39],[-25,-40],[-29,-43],[-44,-59],[-43,-56],[-43,-68],[-18,12],[38,67],[9,-1],[8,14],[10,-1],[16,22],[-5,4],[16,19],[4,9],[12,7],[4,8],[-4,4],[-8,-6],[-3,0],[34,44],[41,62],[58,87],[15,20],[18,27],[-85,53],[-11,-7],[-119,76],[-76,-116],[-331,319],[-72,70],[-72,88],[-128,131],[-14,12],[-65,82],[-92,112],[-76,92],[-11,15],[-177,233],[-48,64],[-67,102],[-82,121],[-5,-5],[-66,101],[4,2],[-30,38],[-15,24],[-50,77],[-26,45],[-33,60],[-29,63],[-22,55],[-13,41],[-12,48],[-6,0],[-13,55],[-8,43],[-5,32],[-2,11],[-7,81],[6,0],[-2,46],[1,49],[6,50],[4,26],[10,43],[-7,7],[-1,9],[7,10],[6,2],[5,-1],[35,123],[-139,40],[-38,-121],[65,-18],[-25,-80],[-16,-10],[-13,19],[18,53],[-64,18],[-19,-63],[-7,2],[68,205],[-374,-61],[-136,210],[7,5],[706,107],[22,67],[-31,3],[-10,-6],[-7,2],[-7,-2],[-2,3],[4,3],[-20,10],[-22,-4],[-26,1],[-6,-5],[-20,5],[-9,-7],[-10,3],[-10,-2],[-1,-6],[-10,5],[-9,-3],[-6,-4],[-14,2],[-6,-3],[-39,-7],[-5,6],[-19,-3],[-2,-6],[-15,0],[-6,-5],[-7,4],[-5,3],[-6,-9],[-10,6],[-12,-14],[-7,1],[-7,5],[-29,-64],[-465,128],[-15,8],[-24,34],[-257,1000],[-1,18],[74,369],[62,311],[13,19],[6,3],[16,7],[20,0],[50,-13],[5,16],[5,13],[7,8],[10,15],[16,17],[15,11],[19,12],[20,9],[22,8],[22,4],[22,-1],[22,0],[15,-2],[31,-12],[21,-12],[-15,-22],[-23,12],[-16,6],[-7,2],[-2,-18],[-24,1],[-21,-1],[-18,-2],[-7,-3],[7,-20],[-15,-4],[-12,-9],[-16,-13],[-12,-16],[-6,-9],[0,-10],[23,-3],[8,12],[14,12],[21,8],[12,-1],[17,3],[10,6],[19,-1],[12,-5],[10,-10],[5,-7],[1,-11],[7,-12],[8,-7],[4,-9],[2,-14],[3,-10],[10,1],[8,8],[3,25],[77,236],[117,374],[0,7],[17,54],[-289,79],[6,18],[-95,26],[-20,14],[-1,2],[-12,16],[-1,19],[67,334],[71,355],[101,500],[79,399],[48,233],[74,370],[21,108],[40,243],[42,318],[35,218],[30,213],[64,400],[11,11],[13,0],[7,-3],[-1,-47],[-49,-338],[729,-145],[49,230],[-30,71],[-16,79],[0,82],[17,81],[22,52],[9,20],[40,57],[53,55],[44,237],[-137,26],[-229,42],[-392,89],[-15,-68],[-7,-62],[-43,-182],[-4,-35],[-9,-71],[-2,-2],[-2,-3],[-2,-2],[-2,-1],[-3,-1],[-3,-1],[-3,0],[-3,0],[-2,0],[-3,1],[-2,2],[-3,1],[-1,2],[-2,2],[-1,3],[11,76],[55,374],[50,342],[80,547],[16,106],[35,239],[38,261],[89,600],[86,585],[74,506],[94,646],[10,19],[22,13],[18,0],[423,-70],[2,11],[170,-27],[-1,-13],[74,-12],[341,-56],[3,18],[4,27],[4,13],[8,9],[16,6],[150,-21],[922,-155],[90,468],[-2,12],[25,149],[12,65],[33,199],[-1,8],[28,173],[-18,4],[-1,-13],[-50,9],[1,13],[-261,44],[35,201],[-357,56],[-346,55],[11,61],[-40,6],[32,186],[-4,1],[2,12],[209,-34],[24,-5],[-7,-39],[42,-6],[7,39],[46,-4],[26,-3],[-2,-39],[61,-5],[5,33],[110,-19],[-3,-27],[28,-6],[4,28],[54,-10],[-4,-29],[29,-5],[4,31],[332,-57],[59,389],[-229,42],[50,282],[13,-2],[34,214],[2,13],[1,0],[21,0],[21,12],[292,-44],[29,213],[75,469],[87,515],[84,502],[81,480],[114,702],[78,483],[0,4],[-188,81],[-222,44],[-1115,140],[-410,51],[-238,29],[-26,33],[10,69],[11,98],[17,102],[12,64],[506,-66],[551,-67],[664,-79],[497,-55],[99,1373],[-1863,181],[29,122],[77,695],[88,861],[-6,18],[30,24],[14,-9],[1768,-179],[47,647],[57,795],[32,539],[-1895,37],[1,204],[1918,-27],[3,41],[17,2],[16,3],[16,6],[15,8],[13,10],[11,12],[8,15],[6,15],[3,16],[-1,16],[-3,16],[-5,16],[-9,14],[-11,12],[-9,9],[-11,7],[-12,5],[-13,3],[-13,2],[23,319],[-734,44],[10,212],[736,-43],[15,204],[49,628],[41,529],[-21,6],[5,35],[-11,10],[-11,11],[-8,14],[-5,14],[-3,15],[-1,15],[2,15],[5,15],[8,13],[9,12],[11,11],[13,9],[0,36],[22,-2],[32,483],[32,481],[24,361],[-378,22],[12,163],[-13,11],[-11,12],[-9,13],[-7,15],[-4,15],[15,2],[14,0],[15,-1],[8,-2],[2,6],[370,-24],[16,261],[22,363],[-65,-1],[-35,10],[-119,-8],[-397,31],[-60,35],[-59,3],[-5,5],[0,160],[-28,21],[3,43],[45,-4],[17,244],[-40,0],[-12,-128],[-456,23],[-13,11],[-3,21],[15,12],[39,-1],[-1,82],[-16,3],[-18,14],[-8,12],[4,61],[16,12],[33,2],[5,83],[-29,5],[-12,11],[-1,16],[13,9],[454,-27],[-6,-143],[44,-1],[34,471],[-432,17],[3,53],[-312,17],[-2,39],[53,-4],[0,-5],[681,-38],[62,29],[407,-30],[673,-31],[83,63],[3,12],[-15,24],[-1,25],[10,18],[24,56],[32,195],[-105,16],[3,27],[-1602,217],[28,206],[1609,-207],[44,309],[106,-10],[69,415],[46,362],[-92,10],[0,11],[-235,29],[32,236],[-10,5],[-1570,195],[-11,12],[-7,21],[36,261],[13,19],[30,13],[27,-3],[1527,-200],[14,15],[32,213],[27,-2],[218,-27],[88,-13],[60,402],[46,323],[-1,18],[-130,22],[-393,64],[-23,4],[33,224],[-222,30],[-11,-8],[-2,-15],[-3,-24],[-5,-31],[-5,-35],[-5,-40],[-4,-26],[-5,-34],[-5,-34],[-5,-40],[7,-8],[72,-8],[-1,-14],[-184,20],[2,17],[69,-8],[10,8],[9,63],[6,42],[3,25],[6,38],[4,29],[6,40],[3,25],[3,15],[-11,10],[-296,39],[-12,-9],[-2,-15],[-3,-23],[-4,-29],[-5,-38],[-6,-41],[-4,-27],[-2,-13],[-12,-93],[11,-8],[71,-7],[-1,-13],[-214,22],[2,14],[96,-10],[13,8],[11,90],[2,22],[8,67],[7,55],[4,31],[2,13],[-9,8],[-346,43],[-8,-9],[-5,-45],[-3,-27],[-6,-43],[-4,-32],[-7,-53],[-3,-24],[-6,-52],[11,-7],[69,-6],[-2,-12],[-212,21],[1,12],[96,-10],[13,73],[3,19],[11,66],[4,27],[9,54],[8,47],[-8,11],[-355,46],[-34,-282],[7,-15],[71,-6],[-1,-10],[-103,9],[38,307],[3,22],[2,19],[-10,19],[40,260],[5,17],[20,14],[27,-1],[669,-83],[2,25],[262,-35],[0,-12],[112,-17],[0,-15],[300,-39],[7,52],[6,48],[4,27],[7,51],[3,24],[7,52],[4,27],[7,49],[3,24],[3,22],[3,18],[8,57],[-1345,179],[-21,10],[-14,17],[2,20],[34,261],[13,14],[17,4],[25,-3],[1363,-172],[66,460],[-262,33],[-1,-11],[-4,0],[0,-13],[11,0],[-1,-25],[-255,30],[3,26],[32,-4],[3,25],[-901,119],[-23,14],[-8,15],[37,266],[10,19],[17,11],[23,-1],[1368,-176],[69,483],[-20,1],[0,-10],[-57,8],[-2,-12],[-211,27],[-1,6],[-66,8],[2,20],[-1020,132],[-18,9],[-12,16],[0,15],[41,254],[10,12],[15,6],[19,2],[700,-93],[240,774],[-101,28],[-3,-6],[-209,80],[-270,110],[-155,64],[-35,20],[32,71],[38,-13],[129,-52],[498,-204],[-7,-14],[94,-34],[15,82],[30,-20],[-4,-4],[138,-70],[83,268],[73,244],[183,600],[-16,30],[40,125],[29,19],[54,178],[-141,50],[-235,115],[8,15],[236,-118],[59,-19],[5,13],[-202,93],[7,10],[-50,27],[-7,-5],[-36,16],[1,2],[30,56],[37,-19],[-6,-10],[49,-25],[9,15],[150,-78],[50,-27],[6,13],[-51,22],[-419,218],[8,14],[526,-274],[32,107],[-242,129],[9,16],[-23,10],[-7,-12],[-628,324],[12,17],[-27,14],[-11,-18],[-52,28],[44,74],[-31,17],[32,54],[80,-43],[-61,-104],[30,-14],[5,6],[620,-326],[-4,-7],[28,-15],[64,110],[207,-111],[212,698],[68,221],[101,331],[74,239],[-77,42],[91,150],[77,-41],[111,189],[5,10],[-80,41],[88,152],[79,-41],[115,191],[95,163],[64,108],[77,135],[231,396],[62,108],[85,152],[27,48],[71,130],[242,412],[128,-70],[253,445],[-102,57],[-192,112],[153,253],[-1197,619],[-19,13],[-10,21],[4,22],[294,495],[14,14],[19,1],[20,-3],[80,-36],[1121,-585],[185,322],[185,-98],[62,105],[-169,88],[-103,57],[27,48],[34,57],[-60,39],[-9,-8],[-37,27],[31,37],[36,-26],[-7,-9],[56,-40],[13,24],[274,-144],[59,108],[-220,121],[64,100],[147,246],[126,214],[155,269],[215,-115],[280,474],[-1369,732],[-8,11],[1,13],[66,108],[14,9],[17,-4],[1362,-727],[256,437],[158,270],[-1378,723],[90,150],[1379,-715],[255,440],[-1348,703],[125,219],[-70,38],[-45,-12],[-17,-29],[-38,20],[42,71],[5,4],[7,4],[7,2],[7,2],[8,0],[7,-1],[1254,-660],[206,-103],[498,-269],[179,126],[10,-8],[65,113],[44,77],[8,14],[175,294],[-1935,1018],[-8,28],[143,243],[20,13],[1750,-919],[56,-30],[139,-72],[191,331],[-15,57],[-21,10],[-19,14],[-13,26],[-6,29],[4,26],[13,22],[21,17],[28,13],[66,16],[27,15],[23,26],[27,52],[42,80],[12,24],[-7,12],[-2019,1061],[-19,25],[7,15],[104,180],[18,15],[31,1],[13,-7],[1943,-1039],[5,9],[51,-26],[213,368],[213,366],[-2013,1063],[-14,14],[1,19],[120,200],[23,6],[20,-6],[2001,-1061],[210,364],[222,384],[-2025,1060],[-5,25],[112,189],[24,13],[27,-3],[1487,-795],[28,48],[-77,40],[87,140],[72,-38],[200,343],[-1521,801],[164,279],[1517,-791],[268,464],[-85,42],[72,122],[83,-46],[212,368],[-206,100],[30,50],[-55,44],[-12,-20],[-59,31],[-10,-17],[-45,25],[63,110],[4,-2],[24,40],[39,-19],[-23,-41],[61,-33],[-13,-19],[75,-22],[4,9],[197,-109],[112,196],[83,-7],[20,6],[14,15],[7,13],[-1,24],[-52,70],[19,29],[1,11],[-1322,689],[125,216],[1323,-696],[204,345],[-626,328],[-56,-99],[-559,295],[57,94],[78,-39],[54,92],[-259,126],[-77,71],[5,5],[1447,-760],[57,2],[53,-31],[206,343],[-35,19],[-2,-1],[-44,-8],[-31,-48],[-68,32],[-9,-17],[-102,53],[12,18],[-59,35],[36,63],[15,27],[-451,251],[-30,-52],[-11,-20],[46,-23],[-22,-47],[-737,380],[27,48],[54,-28],[1,1],[28,54],[-40,20],[-1,1],[1,2],[17,27],[-12,6],[-38,21],[53,76],[27,-13],[297,-153],[1012,-533],[46,70],[25,86],[34,79],[43,60],[47,54],[59,64],[52,43],[20,25],[32,95],[456,808],[28,-14],[31,35],[36,17],[41,-4],[85,75],[129,294],[-42,9],[-62,-20],[-64,-11],[-20,26],[-15,42],[185,329],[42,69],[365,622],[312,530],[121,-5],[207,19],[183,317],[280,487],[278,481],[0,1],[15,27],[56,92],[135,220],[-2,16],[-215,-12],[-37,20],[-81,11],[-56,-10],[-60,-21],[-52,-16],[-45,-5],[-55,8],[-64,12],[-59,8],[-61,-6],[-53,-13],[-69,-16],[-59,3],[-48,2],[-71,6],[-76,-4],[-78,-19],[-56,-5],[-59,10],[-62,13],[-53,1],[-8,-15],[-24,-16],[-17,1],[-23,-35],[-119,-9],[81,139],[1570,95],[-33,60],[8,80],[9,28],[0,20],[-5,80],[334,582],[92,195],[13,-6],[41,108],[4,10],[7,18],[53,142],[-37,13],[15,37],[36,-13],[36,105],[25,48],[27,46],[868,1561],[138,248],[86,154],[308,542],[93,169],[-438,546],[-175,-115],[-382,-563],[-29,16],[385,571],[206,132],[23,90],[35,1],[27,-9],[-43,-131],[414,-497],[215,392],[-72,34],[17,36],[-28,13],[-24,-41],[7,-3],[-4,-8],[-20,12],[26,45],[-275,143],[-21,-35],[-30,15],[52,88],[29,-15],[-22,-37],[35,-18],[254,-132],[-4,-7],[30,-14],[19,30],[71,-35],[50,90],[174,311],[-674,27],[-92,-110],[-31,20],[-4,26],[85,100],[419,-22],[319,-1],[573,1025],[835,1495],[285,510],[307,549],[63,113],[212,380],[253,454],[64,106],[188,308],[53,92],[469,821],[619,1086],[306,538],[584,1039],[281,495],[70,124],[282,507],[30,49],[-6,42],[18,38],[136,207],[170,312],[113,198],[75,139],[78,145],[107,197],[111,188],[213,354],[125,226],[26,62],[77,120],[34,94],[66,100],[44,46],[109,211],[100,154],[47,111],[36,63],[22,14],[70,136],[34,54],[-2,28],[196,341],[237,401],[75,163],[61,69],[83,75],[11,53],[55,112],[57,86],[5,41],[105,184],[94,150],[113,201],[401,648],[153,235],[205,331],[68,124],[132,208],[277,471],[13,19],[108,154],[40,94],[118,163],[65,84],[8,56],[50,134],[24,58],[115,207],[53,79],[23,32],[-10,29],[106,197],[48,78],[2,33],[53,95],[45,52],[11,41],[23,48],[29,27],[0,35],[47,110],[88,192],[168,282],[56,102],[24,21],[49,110],[26,65],[82,160],[72,133],[64,101],[85,145],[71,127],[74,137],[32,36],[139,261],[56,98],[82,131],[105,192],[0,0],[88,148],[148,259],[8,34],[477,920],[114,200],[457,703],[171,209],[26,40],[227,279],[426,554],[441,623],[229,321],[311,436],[278,390],[114,-65],[262,429],[41,71],[26,37],[94,134],[-47,30],[-34,22],[-25,-36],[-77,49],[173,245],[71,-44],[-125,-182],[36,-22],[54,-33],[167,241],[-76,39],[122,182],[-135,438],[-23,28],[-70,35],[-72,-130],[-421,219],[190,327],[419,-218],[-76,-132],[82,-42],[30,-28],[18,-35],[116,-375],[4,-11],[73,-47],[203,339],[20,135],[23,56],[34,62],[84,126],[-179,88],[14,26],[39,76],[-633,332],[-10,6],[-159,80],[-16,6],[-12,6],[-9,6],[-4,4],[-3,3],[-14,18],[-4,8],[-3,8],[-1,4],[0,2],[7,29],[-14,7],[334,625],[13,-6],[1076,2020],[192,-90],[390,728],[73,-33],[-2,-3],[-12,-21],[733,-352],[212,389],[96,-44],[48,87],[0,0],[65,111],[54,91],[35,55],[29,41],[21,25],[46,53],[18,22],[7,10],[22,31],[20,32],[224,395],[381,766],[391,716],[91,155],[30,42],[279,494],[63,101],[120,212],[54,99],[76,152],[61,122],[22,71],[5,19],[34,145],[19,82],[19,60],[168,263],[150,317],[110,170],[55,100],[109,369],[56,316],[57,158],[8,23],[26,83],[2,60],[17,54],[12,67],[6,46],[-4,92],[-1,25],[3,28],[18,62],[7,23],[15,9],[12,56],[12,138],[23,93],[22,47],[33,31],[42,8],[37,3],[24,7],[2,3],[2,3],[1,3],[0,3],[0,4],[-1,3],[-1,3],[-2,3],[-3,2],[-2,2],[-3,2],[-47,9],[-39,8],[-1,1],[-13,4],[-12,6],[-9,7],[-8,9],[-7,9],[-6,10],[-4,11],[-2,11],[223,759],[18,54],[91,379],[47,168],[55,179],[51,112],[62,216],[60,204],[40,79],[42,149],[58,105],[37,51],[26,42],[98,269],[67,144],[66,187],[61,177],[32,106],[64,113],[31,92],[42,130],[65,187],[68,86],[39,38],[27,45],[21,76],[8,21],[8,17],[91,179],[16,61],[41,66],[50,85],[20,57],[28,43],[58,59],[43,77],[55,103],[55,155],[35,81],[40,86],[31,63],[45,104],[1,3],[3,87],[14,38],[2,33],[-12,76],[-2,22],[14,52],[-7,45],[13,91],[-4,24],[7,76],[-19,201],[-8,16],[-3,25],[-12,22],[-8,69],[-1,74],[-19,56],[-8,26],[-11,21],[8,57],[20,25],[4,21],[-22,53],[-15,89],[-28,88],[-20,38],[-81,112],[-17,-4],[-8,30],[21,1],[-24,34],[-20,23],[8,26],[30,23],[18,4],[48,72],[-1,64],[-33,94],[-20,60],[-23,69],[-27,49],[-77,71],[-47,108],[-45,133],[-22,106],[10,118],[17,50],[20,41],[31,71],[8,178],[19,119],[9,43],[11,159],[2,53],[0,50],[-15,93],[-4,207],[-17,131],[26,58],[-9,71],[-9,31],[-25,38],[-9,106],[-8,27],[-15,27],[-34,38],[-16,24],[-11,35],[1,86],[-18,41],[-7,36],[-4,27],[-41,109],[5,26],[5,7],[-1,24],[-27,51],[24,23],[-6,8],[-11,-1],[-27,36],[2,16],[12,15],[19,6],[14,6],[-7,11],[-14,6],[-19,6],[-7,14],[6,38],[-19,22],[3,24],[25,58],[0,11],[-4,10],[6,23],[2,9],[21,52],[23,48],[36,48],[34,45],[7,10],[177,237],[9,5],[9,5],[10,3],[9,2],[9,0],[10,-1],[9,-1],[9,-3],[8,-4],[8,-5],[20,-17],[11,-19],[-5,-15],[-14,-8],[0,-18],[9,-13],[6,-6],[7,-5],[12,-5],[14,6],[19,34],[29,16],[15,41],[-14,12],[-3,44],[9,0],[8,16],[9,-3],[7,-13],[1,-18],[7,-18],[9,-12],[14,-2],[9,11],[-3,21],[-6,19],[-1,1],[-27,46],[3,47],[12,14],[43,12],[52,-12],[21,13],[22,-2],[34,-13],[45,0],[26,21],[-2,24],[29,-1],[18,-12],[25,22],[35,62],[18,0],[5,32],[23,8],[20,43],[17,-1],[16,-8],[11,8],[-7,20],[42,13],[6,12],[20,7],[17,-2],[5,21],[-17,21],[3,19],[44,17],[26,-5],[55,41],[13,24],[24,24],[17,23],[28,-1],[34,18],[63,33],[6,4],[32,11],[13,6],[4,9],[-3,21],[2,11],[4,26],[10,8],[21,-9],[27,14],[7,12],[46,11],[10,-26],[-10,-19],[-1,-7],[11,-1],[16,8],[5,-1],[19,6],[16,-10],[-6,-29],[24,-23],[26,-2],[5,26],[17,20],[28,29],[21,8],[-7,36],[16,30],[39,9],[39,-9],[36,-12],[13,32],[20,60],[48,41],[53,20],[121,25],[75,39],[261,247],[20,19],[141,173],[117,167],[84,80],[259,372],[115,165],[26,94],[60,92],[93,184],[27,68],[22,50],[3,6],[54,136],[60,85],[29,115],[20,51],[125,227],[20,42],[-6,43],[32,81],[63,78],[54,144],[14,30],[32,5],[46,122],[82,149],[51,130],[34,110],[35,97],[91,148],[38,17],[42,73],[43,89],[104,130],[59,42],[47,83],[129,207],[23,58],[50,93],[38,25],[69,114],[43,124],[78,158],[160,252],[2,27],[94,187],[40,48],[13,71],[66,165],[283,347],[73,80],[110,114],[17,12],[0,11],[-14,9],[-21,20],[4,42],[140,240],[135,207],[26,109],[32,102],[46,66],[97,89],[5,16],[-9,29],[5,36],[207,434],[314,477],[232,324],[460,772],[60,100],[84,134],[114,180],[49,177],[77,63],[24,50],[69,76],[40,44],[0,124],[41,116],[54,49],[46,15],[98,216],[37,44],[-2,58],[51,80],[35,32],[0,47],[21,68],[49,79],[41,3],[77,142],[35,101],[150,327],[105,197],[-57,21],[-4,-9],[-86,31],[38,94],[120,-44],[-9,-22],[39,-14],[31,79],[18,-2],[58,121],[24,97],[14,131],[8,89],[-2,22],[-8,23],[-4,20],[61,319],[-4,43],[8,23],[-34,12],[5,20],[-81,43],[-29,13],[-1,-2],[-23,-47],[-3,-8],[-20,-41],[-7,-14],[-21,-44],[-5,-10],[-2,-4],[-2,1],[-14,6],[65,135],[-3,1],[-11,5],[28,57],[14,-6],[-3,-6],[6,-4],[89,-42],[29,-14],[4,14],[30,-6],[-2,34],[-15,21],[-6,127],[-16,37],[-29,20],[-60,10],[-50,4],[-19,9],[0,50],[40,66],[71,45],[60,9],[64,129],[-173,84],[71,215],[55,-15],[-58,-176],[140,-70],[14,47],[20,51],[12,30],[3,14],[2,32],[-10,44],[-18,47],[-52,48],[-12,17],[-4,194],[51,218],[47,158],[10,134],[73,287],[80,158],[113,192],[83,165],[56,240],[97,175],[98,255],[134,170],[100,208],[438,911],[71,62],[337,675],[86,201],[103,142],[262,275],[161,199],[114,130],[68,46],[44,27],[269,72],[391,390],[181,225],[48,58],[30,27],[41,-7],[6,9]],[[205630,295168],[-12,-39],[8,-2],[-12,-35],[-4,1],[-8,-30],[-26,8],[8,29],[-7,2],[9,35],[6,0],[14,40]],[[214710,289929],[-29,52],[-23,50],[-27,40],[-19,26],[-6,15],[0,16],[-25,37],[-22,14],[-10,25],[-12,40],[-22,30],[-12,23],[-3,22],[-52,84],[-53,85],[-44,74],[-20,31],[-22,35],[-7,0],[-6,19],[-23,15],[-10,13],[-13,18],[-22,27],[-4,17],[-20,10],[-23,23],[-37,51],[-39,54],[-33,37],[-34,39],[-37,41],[-11,1],[-10,13],[4,5],[-40,44],[-7,-2],[-2,10],[-4,12],[-52,50],[-51,54],[-56,47],[-37,32],[-52,41],[-40,33],[-34,30],[-62,54],[-26,19],[-43,28],[-43,26],[-49,32],[-27,16],[-28,18],[-23,12],[-36,22],[-6,11],[-6,-6],[-4,12],[-19,10],[-108,56],[-16,4],[-25,4],[-13,3],[-16,6],[-2,4],[-14,2],[-3,7],[-7,1],[-7,12],[-11,2],[-2,9],[-10,2],[-3,0],[-6,5],[-20,4],[-3,3],[-19,8],[-13,4],[-11,1],[-19,8],[-12,6],[-15,8],[-8,2],[-12,2],[-3,4],[-6,-2],[-2,5],[-7,0],[-1,9],[-5,1],[-2,-3],[-5,-1],[-2,-8],[-38,16],[-34,10],[-42,13],[-15,6],[-23,11],[-1,5],[-8,7],[0,6],[-6,-3],[-9,0],[-15,-1],[2,11],[-7,0],[-6,6],[-7,-1],[-3,-4],[-8,7],[-6,-1],[-5,5],[3,6],[-4,2],[-4,-6],[-4,6],[4,5],[-6,2],[-3,-3],[-3,5],[-5,-3],[-6,4],[-5,0],[-6,4],[-11,5],[-5,-2],[-6,2],[-7,0],[-4,4],[-12,4],[-7,1],[-1,5],[-8,3],[-2,-5],[-8,1],[-4,7],[-2,4],[-14,2],[-3,4],[-22,5],[-17,12],[-15,3],[-20,4],[-13,1],[-6,8],[-10,2],[-4,0],[-9,0],[-6,9],[-10,-3],[-11,5],[-8,6],[-4,4],[-9,0],[-17,7],[-5,7],[-8,-1],[-6,6],[-3,-7],[-7,3],[-6,7],[-10,0],[-9,-2],[-5,-5],[-345,130],[7,14],[-6,-2],[-6,1],[0,7],[-16,2],[-8,5],[-13,-1],[-8,5],[-4,6],[-8,-1],[-13,1],[-6,-3],[-8,2],[-5,-5],[-73,29],[-58,22],[-6,0],[-5,4],[-119,41],[3,20],[-794,297],[-20,-1],[-12,5],[-14,7],[-18,10],[-9,8],[-11,4],[-14,5],[-12,2],[-14,6],[-15,4],[-6,3],[-20,12],[-34,5],[-22,6],[-8,13],[-13,3],[-27,3]],[[240643,66285],[-387,-96],[-285,20],[-506,-228],[-182,167],[-266,307],[-196,253],[-213,330],[-98,214],[-5,571],[-63,642],[-144,390],[-93,494],[-100,626],[833,1995],[816,485],[560,706],[427,360],[342,324],[984,-309],[281,-60],[370,-220],[272,-171],[329,-417],[11,-225],[254,-429],[236,-478],[271,-274],[150,-428],[-76,-474],[-82,-299],[-52,-339],[-51,-309],[-154,-367],[-163,-319],[-195,-329],[-204,-318],[-214,-271],[-62,-145],[-346,-173],[-408,-29],[-336,-241],[-337,-212],[-163,-135],[-174,-164],[-245,-261],[-336,-164]],[[239116,79104],[-89,-1562],[-333,205],[422,1357]],[[207916,79787],[-39,-24],[-12,-13],[-3,-7],[3,-5],[7,-4],[35,-5],[31,-2],[28,3],[30,1],[51,-6],[14,1],[17,8],[50,24],[28,15],[17,10],[14,7],[16,3],[24,3],[26,0],[16,-3],[26,-7],[14,-1],[18,1],[21,5],[17,2],[11,1],[6,-2],[4,-5],[1,-6],[3,-7],[5,-5],[7,-2],[11,2],[10,5],[7,5],[9,1],[13,-3],[11,-8],[13,-9],[14,-6],[8,-1],[7,1],[5,1],[5,1],[4,-2],[3,-6],[-1,-6],[-5,-5],[-4,-4],[-4,-7],[1,-9],[4,-11],[8,-13],[9,-9],[11,-6],[12,-2],[10,0],[8,4],[5,8],[1,6],[2,3],[8,4],[9,0],[8,-3],[11,-1],[12,3],[19,0],[18,-3],[21,-8],[21,-11],[15,-9],[4,-4],[4,-7],[5,-13],[4,-13],[4,-13],[4,-8],[8,-7],[14,-12],[6,-5],[9,-16],[26,-35],[1,-6],[-2,-4],[-3,-1],[-5,1],[-22,10],[-3,-1],[-1,-1],[1,-4],[3,-6],[2,-6],[3,-9],[-1,-7],[2,-8],[4,-7],[30,-29],[6,-5],[7,-4],[15,-4],[10,-3],[6,0],[5,3],[0,2],[2,1],[2,1],[6,-1],[11,-8],[40,-29],[15,-8],[9,-4],[15,-6],[10,-4],[8,-5],[5,-5],[5,-7],[6,-8],[9,-8],[19,-13],[17,-12],[19,-14],[32,-20],[20,-13],[25,-12],[22,-12],[13,-7],[17,-10],[28,-16],[12,-9],[9,-8],[12,-12],[5,-4],[9,-5],[5,-2],[19,-6],[10,-4],[9,-6],[9,-6],[10,-8],[9,-8],[8,-7],[8,-11],[9,-11],[9,-10],[11,-12],[10,-8],[34,-21],[16,-9],[13,-10],[12,-10],[13,-9],[12,-7],[14,-7],[16,-7],[32,-13],[19,-11],[22,-13],[13,-8],[20,-14],[13,-9],[14,-11],[12,-10],[8,-6],[14,-8],[15,-6],[15,-7],[12,-5],[14,-7],[12,-8],[18,-7],[39,-15],[44,-17],[27,-13],[11,-8],[11,-9],[9,-9],[8,-9],[12,-11],[11,-8],[12,-7],[15,-7],[16,-6],[18,-5],[21,-2],[16,-1],[16,-2],[28,1],[8,-2],[7,-2],[7,-4],[5,-6],[5,-5],[4,-6],[6,-8],[9,-10],[10,-8],[16,-10],[13,-43],[-1,-5],[1,-5],[0,-4],[2,-5],[2,-6],[1,-6],[1,-7],[1,-6],[0,-15],[1,-15],[1,-15],[1,-15],[2,-15],[2,-16],[2,-17],[2,-16],[3,-16],[4,-16],[4,-16],[5,-17],[5,-17],[6,-16],[6,-16],[7,-18],[6,-18],[7,-17],[8,-17],[8,-17],[8,-17],[8,-15],[9,-16],[9,-14],[9,-15],[10,-15],[10,-14],[33,-42],[5,-6],[5,-5],[6,-5],[5,-5],[6,-4],[7,-4],[6,-4],[5,-2],[5,-1],[5,-1],[5,0],[5,0],[2,1],[2,1],[2,0],[2,0],[2,-1],[1,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-1,-1],[-2,-1],[-1,0],[-2,0],[-4,0],[-4,-1],[-4,-1],[-4,-2],[-1,-2],[-1,-2],[0,-3],[0,-2],[2,-7],[1,-6],[3,-6],[3,-6],[3,-6],[3,-6],[4,-5],[5,-5],[44,-58],[3,-5],[4,-5],[4,-4],[5,-4],[5,-4],[5,-3],[3,-2],[4,-2],[3,-3],[2,-3],[2,-3],[2,-5],[2,-4],[2,-5],[3,-4],[4,-4],[4,-3],[4,-3],[5,-4],[6,-4],[7,-4],[6,-3],[7,-3],[7,-2],[6,-3],[5,-3],[5,-4],[5,-4],[5,-5],[4,-5],[4,-5],[3,-5],[3,-6],[3,-6],[23,-53],[6,-16],[6,-16],[7,-15],[7,-23],[1,-2],[6,-10],[6,-11],[7,-10],[15,-21],[14,-22],[13,-23],[7,-11],[8,-10],[8,-11],[8,-10],[9,-9],[10,-10],[6,-7],[6,-7],[5,-8],[4,-8],[5,-8],[9,-14],[11,-14],[10,-13],[12,-13],[23,-28],[24,-28],[25,-27],[7,-7],[7,-6],[8,-5],[8,-5],[4,-2],[3,-3],[2,-4],[2,-3],[18,-23],[6,-5],[6,-5],[6,-5],[7,-4],[7,-4],[8,-3],[7,-3],[31,-11],[4,-1],[3,-2],[3,-2],[3,-3],[2,-3],[14,-41],[4,-8],[4,-7],[4,-7],[5,-7],[4,-4],[5,-4],[4,-3],[5,-2],[5,-2],[6,-2],[5,-1],[6,-1],[7,-1],[7,-1],[7,-2],[6,-3],[9,-5],[8,-5],[7,-5],[8,-6],[5,-6],[4,-5],[4,-6],[4,-7],[4,-5],[5,-5],[4,-5],[6,-4],[5,-4],[6,-3],[39,-27],[5,-4],[4,-4],[3,-4],[4,-4],[3,-5],[2,-4],[2,-5],[2,-5],[2,-9],[3,-9],[3,-8],[3,-9],[4,-8],[4,-8],[3,-5],[2,-6],[2,-5],[1,-6],[1,-6],[0,-6],[-1,-4],[0,-4],[0,-4],[1,-4],[1,-4],[2,-4],[3,-3],[7,-11],[7,-10],[6,-11],[6,-12],[14,-31],[27,-44],[17,-28],[17,-27],[16,-28],[30,-56],[32,-56],[31,-56],[21,-44],[21,-43],[21,-43],[4,-12],[5,-11],[4,-11],[6,-11],[3,-5],[3,-5],[3,-6],[2,-5],[1,-6],[13,-49],[3,-7],[3,-7],[4,-7],[4,-7],[5,-6],[5,-6],[11,-15],[10,-16],[9,-16],[7,-11],[7,-10],[8,-10],[8,-10],[8,-8],[9,-7],[9,-7],[9,-6],[10,-6],[9,-6],[5,-2],[4,-1],[4,-1],[5,0],[4,0],[4,0],[5,1],[4,2],[4,2],[3,1],[3,1],[4,0],[3,-1],[4,-1],[3,-1],[4,-3],[4,-4],[4,-4],[3,-4],[2,-5],[2,-4],[8,-12],[9,-11],[9,-12],[5,-5],[5,-5],[5,-5],[6,-4],[5,-5],[4,-6],[4,-5],[3,-6],[4,-10],[3,-10],[3,-10],[3,-10],[2,-10],[18,-66],[18,-85],[2,-10],[2,-10],[4,-10],[3,-10],[4,-9],[12,-47],[4,-9],[5,-9],[6,-9],[5,-8],[6,-10],[4,-10],[4,-10],[4,-8],[5,-7],[5,-7],[6,-7],[6,-6],[30,-20],[4,-3],[4,-3],[3,-4],[4,-4],[2,-4],[3,-5],[2,-5],[2,-5],[2,-5],[1,-5],[0,-5],[0,-6],[3,-30],[-2,-7],[-3,-7],[-3,-7],[-3,-7],[-4,-9],[-4,-9],[-3,-9],[-3,-9],[-2,-10],[-2,-9],[-1,-10],[-1,-36],[0,-5],[1,-4],[1,-4],[2,-3],[3,-4],[3,-3],[2,-5],[2,-4],[1,-5],[1,-5],[0,-5],[0,-5],[-1,-7],[-1,-8],[0,-7],[1,-8],[1,-7],[1,-7],[-1,-15],[-2,-15],[-2,-15],[-2,-14],[-3,-15],[-4,-14],[-6,-50],[0,-4],[-1,-4],[1,-4],[1,-4],[1,-4],[5,-11],[3,-7],[-1,-17],[1,-3],[5,-28],[0,-4],[0,-3],[-1,-3],[-2,-4],[-2,-3],[-2,-2],[-3,-3],[-8,-10],[-7,-10],[-7,-11],[-7,-11],[-7,-11],[-6,-12],[-5,-11],[-4,-6],[-3,-6],[-2,-7],[-2,-6],[-1,-7],[-1,-6],[0,-7],[0,-2],[2,-1],[1,0],[2,-1],[2,1],[1,-4],[1,-3],[0,-4],[0,-3],[-1,-4],[-3,-30],[0,-4],[1,-4],[1,-4],[1,-3],[2,-4],[2,-3],[6,-5],[4,-5],[4,-6],[0,-5],[-1,-5],[-1,-5],[-2,-5],[-2,-5],[-3,-4],[-5,-7],[-4,-8],[-3,-8],[-3,-8],[-3,-8],[-2,-8],[-1,-9],[-1,-8],[-3,-10],[-1,-10],[-2,-10],[-1,-10],[0,-11],[0,-10],[1,-10],[2,-10],[1,-10],[1,-13],[1,-12],[2,-13],[2,-12],[2,-13],[3,-12],[4,-12],[4,-13],[5,-13],[3,-14],[3,-13],[3,-13],[2,-14],[4,-49],[0,-8],[-1,-7],[-2,-8],[-2,-7],[-3,-7],[-6,-16],[-6,-15],[-6,-16],[-4,-16],[-5,-16],[-3,-16],[-4,-16],[-4,-35],[-6,-35],[-6,-35],[-2,-10],[-2,-10],[-2,-10],[-1,-11],[-1,-10],[0,-10],[0,-10],[0,-8],[1,-8],[1,-8],[2,-8],[3,-8],[5,-15],[6,-16],[7,-15],[3,-6],[4,-5],[5,-5],[5,-5],[5,-4],[5,-2],[5,-3],[6,-1],[5,-2],[6,-1],[5,-1],[6,0],[6,1],[21,2],[21,1],[22,1],[21,0],[21,-4],[4,-1],[2,0],[2,-1],[1,-2],[1,-1],[1,-2],[1,-2],[-1,-2],[0,-2],[-1,-2],[-14,-16],[-19,-16],[-16,-11],[-24,-12],[-32,-14],[-43,-16],[-45,-14],[-34,-9],[-35,-10],[-44,-14],[-24,-6],[-5,-3],[-3,-4],[-2,-7],[-4,-6],[-3,-3],[-18,-9],[-72,-32],[-25,-8],[-13,-6],[-10,-7],[-8,-8],[-11,-8],[-12,-9],[-38,-20],[-66,-35],[-45,-21],[-28,-17],[-24,-16],[-19,-12],[-64,-31],[-42,-17],[-36,-8],[-15,-5],[-14,-4],[-15,-3],[-15,-1],[-24,-2],[-32,0],[-20,3],[-16,1],[-21,1],[-28,1],[-56,-2],[-20,1],[-20,6],[-12,5],[-6,4],[-8,6],[-7,7],[-10,4],[-8,2],[-12,1],[-27,4],[-25,8],[-26,8],[-73,27],[-13,3],[-7,0],[-2,0],[-3,-1],[-3,-4],[-5,-21],[-3,-5],[-10,5],[-5,33],[2,5],[3,7],[-2,5],[-6,2],[-25,9],[-19,9],[-25,15],[-7,9],[-6,8],[-8,4],[-12,6],[-14,8],[-5,7],[-4,6],[-8,6],[-10,2],[-6,1],[-4,1],[-10,5],[-5,8],[-1,2],[-7,12],[-9,8],[-26,24],[-25,25],[-19,18],[-15,15],[-11,12],[-8,9],[-8,9],[-14,11],[-16,13],[-20,14],[-15,11],[-27,21],[-17,15],[-19,15],[-9,6],[-4,4],[-1,1],[-2,5],[2,8],[4,7],[4,7],[-3,11],[-4,8],[-9,9],[-12,7],[-12,3],[-12,3],[-8,6],[-4,8],[-2,8],[0,9],[2,11],[1,11],[-4,10],[-7,9],[-12,10],[-5,9],[-1,10],[5,15],[8,13],[7,9],[8,7],[11,6],[11,5],[5,5],[3,9],[-1,10],[-3,4],[-7,6],[-11,7],[-13,8],[-12,7],[-42,26],[-10,7],[-6,10],[-2,8],[-4,8],[-8,5],[-8,3],[-11,6],[-9,5],[-8,9],[-4,6],[-1,6],[2,4],[4,8],[3,8],[2,9],[0,11],[-2,4],[-7,8],[0,0],[-3,3],[-4,3],[-3,3],[-4,2],[-12,10],[-12,11],[-11,10],[-11,11],[-3,5],[-2,4],[-2,5],[-1,5],[-1,5],[-1,5],[2,12],[0,12],[0,11],[0,12],[0,7],[-1,6],[0,7],[-2,6],[-1,6],[-3,6],[-2,7],[-4,6],[-4,8],[-4,7],[-3,7],[-2,8],[-10,42],[-1,59],[1,5],[1,5],[0,5],[0,5],[0,5],[-1,5],[-2,5],[-2,5],[-2,4],[-3,4],[-3,4],[-6,5],[-6,5],[-5,6],[-4,5],[-5,6],[-3,7],[-4,6],[-6,14],[-8,14],[-7,14],[-8,13],[-16,25],[-15,25],[-15,25],[-14,26],[-4,8],[-4,8],[-4,8],[-5,7],[-5,8],[-6,6],[-6,7],[-6,7],[-5,7],[-4,8],[-4,8],[-4,8],[-9,16],[-9,17],[-11,16],[-10,15],[-11,16],[-11,14],[-11,14],[-11,14],[-10,14],[-9,15],[-10,15],[-11,20],[-12,21],[-12,20],[-13,19],[-13,20],[-5,10],[-6,9],[-7,9],[-6,9],[-8,9],[-7,9],[-8,8],[-9,7],[-14,17],[-15,17],[-16,17],[-15,16],[-16,16],[-20,20],[-19,21],[-18,21],[-18,22],[-17,24],[-18,23],[-18,23],[-19,23],[-19,22],[-19,22],[-15,20],[-15,19],[-14,21],[-13,20],[-28,36],[-27,37],[-26,37],[-23,32],[-22,32],[-22,33],[-8,9],[-9,9],[-9,8],[-9,8],[-4,5],[-4,4],[-4,3],[-5,4],[-5,3],[-5,2],[-5,2],[-40,23],[-8,9],[-8,8],[-9,8],[-9,8],[-10,7],[-10,7],[-10,7],[-11,6],[-10,5],[-11,5],[-11,4],[-12,4],[-72,34],[-6,3],[-6,4],[-6,3],[-6,5],[-5,4],[-5,5],[-5,5],[-4,6],[-18,40],[-23,41],[-2,5],[-3,6],[-4,5],[-3,5],[-4,5],[-5,5],[-5,4],[-5,4],[-6,3],[-4,3],[-6,2],[-5,1],[-6,2],[-5,0],[-6,1],[-6,-1],[-5,0],[-6,-2],[-5,-2],[-6,-1],[-6,-1],[-6,0],[-6,0],[-6,0],[-6,1],[-6,1],[-6,2],[-5,2],[-6,3],[-6,3],[-6,4],[-6,4],[-5,4],[-5,5],[-5,5],[-5,5],[-30,37],[0,2],[0,3],[1,3],[1,2],[2,2],[2,2],[3,2],[4,3],[4,4],[4,4],[3,4],[3,5],[-2,3],[-3,4],[-2,2],[-3,3],[-3,2],[-4,2],[-4,2],[-16,10],[-15,11],[-16,11],[-2,2],[-3,1],[-3,1],[-3,0],[-4,0],[-3,-1],[-3,-1],[-2,-4],[-4,-5],[-4,-4],[-4,-4],[-5,-3],[-5,-3],[-2,0],[-3,0],[-3,1],[-2,1],[-2,2],[-2,1],[-2,2],[-1,3],[-1,2],[0,3],[0,2],[1,3],[2,10],[2,11],[0,10],[-1,5],[-1,4],[-2,4],[-3,4],[-3,4],[-4,3],[-3,2],[-11,7],[-11,6],[-11,6],[-8,4],[-7,4],[-8,4],[-7,5],[-7,5],[-7,5],[-6,6],[-34,32],[-13,11],[-14,11],[-14,11],[-48,40],[-5,5],[-6,5],[-6,5],[-6,4],[-6,4],[-7,4],[-7,3],[-8,3],[-5,1],[-5,3],[-5,2],[-5,3],[-5,4],[-23,26],[-10,10],[-11,10],[-10,9],[-12,8],[-11,7],[-12,7],[-13,6],[-18,16],[-17,16],[-17,16],[-6,7],[-5,5],[-7,6],[-6,5],[-7,5],[-8,4],[-7,4],[-8,4],[-7,5],[-7,5],[-7,5],[-6,6],[-5,5],[-5,5],[-6,5],[-6,4],[-6,4],[-7,3],[-4,2],[-3,1],[-4,1],[-4,0],[-4,0],[-4,0],[-3,-1],[-4,-1],[-3,-2],[-4,-2],[-2,-2],[-3,-1],[-3,0],[-3,0],[-3,0],[-3,1],[-2,1],[-3,1],[-2,2],[-2,2],[-2,3],[-1,2],[-1,3],[-1,3],[-1,2],[-2,2],[-2,2],[-3,2],[-3,1],[-3,1],[-3,0],[-3,0],[-3,1],[-3,1],[-2,2],[-3,2],[0,4],[-1,3],[0,3],[1,4],[1,3],[2,3],[1,3],[2,2],[0,3],[1,3],[-1,2],[0,3],[-1,3],[-2,2],[-2,2],[-21,18],[-2,3],[-2,2],[-3,2],[-3,1],[-3,1],[-3,0],[-3,1],[-3,-1],[-4,1],[-3,1],[-3,2],[-2,2],[-3,2],[-2,3],[-1,3],[-1,3],[-2,5],[-3,6],[-3,5],[-3,4],[-4,5],[-5,4],[-20,11],[-3,3],[-3,2],[-3,3],[-4,2],[-4,1],[-4,1],[-4,1],[-3,1],[-3,0],[-3,0],[-3,-1],[-3,-1],[-2,-2],[-2,-2],[-7,-3],[-7,-4],[-8,-2],[-3,-1],[-3,1],[-4,0],[-3,1],[-3,2],[-3,2],[-3,2],[-2,2],[-2,3],[-1,3],[-14,25],[-12,12],[-12,12],[-13,11],[-13,12],[-7,6],[-8,6],[-7,6],[-8,6],[-8,5],[-8,5],[-9,4],[-6,2],[-6,1],[-6,1],[-6,0],[-6,0],[-6,-1],[-6,-1],[-6,-2],[-9,-2],[-9,-3],[-8,-4],[-8,-4],[-8,-4],[-8,-5],[-7,-5],[-3,-2],[-2,-2],[-3,-1],[-4,-1],[-3,0],[-3,0],[-4,0],[-3,1],[-3,2],[-3,2],[0,2],[-1,3],[-1,2],[-2,1],[-2,2],[-3,1],[-6,-1],[-7,-1],[-2,2],[-1,2],[0,3],[0,2],[1,2],[0,20],[-1,14],[-2,13],[-2,13],[-3,14],[-3,13],[-4,13],[-4,64],[-3,7],[-2,7],[-4,7],[-3,6],[-4,7],[-5,6],[-5,5],[-4,6],[-4,4],[-5,5],[-5,4],[-6,4],[-6,3],[-6,3],[-6,3],[-6,2],[-6,2],[-5,2],[-6,2],[-5,3],[-4,4],[-5,4],[-4,4],[-3,4],[-22,37],[-21,27],[-22,27],[-21,27],[-3,4],[-3,3],[-4,3],[-4,3],[-4,2],[-4,2],[-5,2],[-5,1],[-5,0],[-4,1],[-5,-1],[-4,-1],[-3,-1],[-4,0],[-3,0],[-4,0],[-3,1],[-3,2],[-3,2],[-3,2],[-4,5],[-3,6],[-3,6],[-2,6],[-3,6],[-1,6],[-2,7],[-3,7],[-3,7],[-3,7],[-4,6],[-4,6],[-5,6],[-5,6],[-14,16],[-14,16],[-15,15],[-16,15],[-7,7],[-7,5],[-8,6],[-8,5],[-8,4],[-4,3],[-4,2],[-4,2],[-5,2],[-4,1],[-5,1],[-5,0],[-4,0],[-4,0],[-3,1],[-3,2],[-3,2],[-3,2],[-2,3],[-1,3],[-1,3],[-4,34],[-2,7],[-2,7],[-4,7],[-3,7],[-5,6],[-2,6],[-2,5],[-3,5],[-3,5],[-4,5],[-4,5],[-4,4],[-5,4],[-5,3],[-10,3],[-10,2],[-10,2],[-6,2],[-5,2],[-5,3],[-5,3],[-5,4],[-4,4],[-4,4],[-3,2],[-2,2],[-2,2],[-2,3],[-1,2],[-1,3],[-1,3],[0,3],[1,3],[1,3],[4,6],[5,6],[5,6],[5,5],[4,3],[4,3],[3,3],[3,4],[2,4],[2,4],[2,4],[1,5],[1,4],[1,5],[0,4],[-1,5],[-1,4],[-2,17],[-3,17],[-4,16],[-4,17],[-4,16],[-5,19],[-5,17],[-6,18],[-6,18],[-7,17],[-3,17],[-3,16],[-2,17],[-1,8],[-1,9],[-2,8],[-2,9],[-3,8],[-3,8],[-10,21],[-9,22],[-11,21],[-7,11],[-7,11],[-6,11],[-6,12],[-8,13],[-8,13],[-9,12],[-6,9],[-5,10],[-7,9],[-3,6],[-4,6],[-3,6],[-2,7],[-23,53],[-2,3],[-2,3],[-3,3],[-3,3],[-3,2],[-4,1],[-4,2],[-3,0],[-4,1],[-4,0],[-5,-1],[-4,-1],[-4,-1],[-4,-2],[-3,-3],[-3,-2],[-3,-1],[-2,1],[-3,0],[-2,2],[-2,1],[-2,2],[-1,2],[-4,6],[-3,6],[-2,5],[-2,7],[-2,6],[-2,7],[-2,7],[-1,7],[0,7],[0,7],[-1,12],[-1,13],[-2,12],[-4,11],[-4,12],[-3,12],[-5,11],[-4,11],[-4,11],[-1,8],[0,8],[0,7],[0,8],[1,1],[1,7],[1,8],[2,9],[2,7],[3,8],[4,8],[17,36],[18,35],[18,35],[7,12],[7,12],[8,11],[8,11],[9,11],[8,11],[10,10],[9,10],[10,10],[19,18],[17,18],[17,18],[17,19],[11,13],[12,12],[12,13],[12,12],[45,43],[25,23],[67,53],[71,48],[68,46],[73,48],[75,43],[60,32],[77,46],[35,25],[15,12],[4,9],[0,9],[-3,11],[-7,12],[-2,10],[0,5],[6,8],[14,9],[10,1],[21,-5],[13,-4],[14,-4],[10,-3],[6,-5],[10,-7],[14,-5],[16,-2],[19,3],[51,14],[22,3],[33,1],[29,-1],[29,-2],[37,0],[13,4],[11,9],[8,14],[1,12],[2,6],[6,8],[4,1],[7,-2],[6,-2],[8,1],[7,2],[5,3],[3,2],[3,1],[7,-5],[9,-6],[10,-5],[9,-2],[15,-1],[45,8],[13,5],[20,14],[15,10],[10,2],[8,0],[8,-4],[3,-4],[0,-5],[-3,-5]],[[238702,79322],[-549,-74],[364,2855],[143,-711],[42,-2070]],[[249703,78039],[-159,-125],[-106,57],[-490,-314],[-212,-119],[-232,7],[-179,-88],[-166,-213],[-636,-87],[-483,-87],[-265,-25],[-384,57],[-1649,273],[-66,456],[-536,532],[-221,421],[-604,595],[-334,570],[-45,395],[238,536],[683,884],[205,167],[227,82],[29,49],[215,44],[181,-207],[885,-214],[2622,-150],[71,-168],[271,-169],[343,-23],[590,-348],[117,-292],[331,-280],[176,-393],[615,-661],[-473,-313],[-293,-529],[-266,-320]],[[240663,82981],[-404,-518],[-388,53],[231,633],[563,163],[-2,-331]],[[253232,83837],[7,-12],[12,-7],[15,-4],[4,-9],[3,-12],[-3,-7],[3,-8],[8,2],[8,-5],[-3,-8],[-7,-4],[-2,-6],[4,-10],[8,-4],[7,-8],[7,-3],[7,1],[9,1],[1,-7],[6,-6],[3,-9],[1,-9],[1,-7],[1,-7],[8,-6],[9,-1],[10,-1],[5,-6],[2,-8],[1,-11],[5,-3],[6,-5],[-2,-10],[-1,-8],[4,-4],[9,-11],[9,-10],[5,-8],[2,-8],[2,-11],[7,-10],[9,-7],[13,-8],[9,0],[11,0],[11,1],[10,3],[10,10],[15,13],[8,6],[5,7],[5,5],[8,4],[17,5],[14,1],[10,0],[10,0],[15,1],[3,7],[10,0],[1,-5],[9,-3],[9,0],[10,-2],[3,-7],[-5,-6],[-5,-11],[-9,-9],[-7,-8],[-7,-7],[-12,-11],[-7,-10],[-4,-14],[-7,-18],[-6,-13],[-7,-11],[-11,-11],[-14,-3],[-19,-5],[-18,-3],[-17,-8],[-13,-10],[-9,-8],[-3,-8],[-2,-9],[-14,-9],[-4,0],[-9,-1],[-5,-10],[-4,-18],[2,-11],[-1,-12],[5,-13],[6,-18],[25,25],[29,16],[21,17],[23,15],[19,0],[20,11],[15,11],[21,1],[24,-1],[16,1],[2,20],[-13,20],[-3,22],[11,13],[21,13],[3,19],[0,18],[5,15],[21,8],[11,22],[4,20],[-1,26],[-5,24],[13,21],[20,16],[20,19],[14,11],[33,17],[8,20],[12,10],[0,22],[1,17],[14,-1],[10,-8],[8,-1],[10,8],[14,-9],[6,-11],[13,-16],[18,-5],[20,-14],[18,-11],[15,-1],[22,-11],[17,-4],[25,0],[21,8],[24,13],[19,12],[15,20],[3,14],[8,16],[8,12],[12,14],[26,-6],[16,-7],[12,-14],[7,-11],[20,-2],[17,-3],[17,-1],[17,-5],[27,-17],[18,-12],[1,11],[16,4],[11,-21],[17,-10],[10,-12],[-6,-12],[-19,0],[-14,10],[-21,11],[-26,5],[-32,15],[-30,3],[-36,4],[-24,6],[-19,-14],[-1,-17],[-7,-19],[4,-18],[-1,-16],[-3,-21],[-13,-5],[-16,15],[-17,-1],[-24,-15],[-24,15],[-17,0],[0,-11],[10,-11],[18,-13],[-8,-12],[-21,-6],[-13,-13],[-19,-2],[-29,-2],[-12,-9],[6,-18],[15,-8],[28,3],[25,8],[26,-4],[27,5],[20,21],[23,13],[24,-1],[15,-24],[15,-23],[14,-30],[9,12],[-4,27],[2,26],[-6,28],[10,25],[1,19],[0,21],[-5,19],[10,3],[15,-3],[13,-4],[8,13],[16,3],[11,-1],[29,-9],[31,-12],[21,0],[23,1],[21,0],[18,5],[10,21],[7,22],[9,21],[17,11],[20,1],[22,4],[22,16],[11,2],[26,0],[28,-17],[7,-16],[25,-25],[25,-28],[1,-17],[-10,-5],[-21,-1],[-27,1],[-31,2],[-25,7],[-29,0],[-21,-13],[-14,-7],[-8,-17],[-17,-7],[-20,-10],[-12,-14],[-12,-12],[-9,-18],[-10,-17],[0,-21],[-7,-16],[-3,-24],[-5,-21],[-18,-14],[-8,-15],[-8,-18],[2,-18],[10,-15],[5,-22],[3,-28],[-15,-17],[-4,-17],[-20,-23],[-11,-17],[-3,-23],[3,-20],[21,3],[33,1],[16,-8],[8,-22],[0,-35],[0,-30],[1,-22],[3,-22],[0,-29],[1,-26],[-1,-20],[-6,-13],[-17,-17],[7,-19],[8,-12],[-4,-15],[-10,-18],[-4,-31],[-17,-14],[-18,-12],[-23,7],[-13,16],[-12,22],[-7,21],[-19,26],[-11,21],[-14,24],[-26,18],[-23,9],[-17,0],[-20,2],[-27,0],[-34,-1],[-27,-7],[-20,8],[-31,-8],[-14,-14],[5,-14],[4,-20],[-9,-19],[-6,-12],[13,-2],[22,-1],[23,15],[17,16],[35,12],[29,9],[30,-1],[31,-6],[24,-10],[10,-21],[1,-13],[0,-13],[-16,-14],[-10,-13],[-12,-18],[-15,-6],[-14,-7],[-26,-8],[-27,-14],[-17,-5],[-12,-14],[-11,-14],[-19,-10],[-14,-13],[-11,2],[-3,8],[-11,8],[-11,-4],[-4,-12],[0,-7],[-9,1],[-17,-6],[-13,-18],[-19,1],[-15,14],[2,18],[1,19],[9,6],[9,6],[-9,10],[-11,12],[1,13],[-21,14],[-17,19],[-30,15],[-15,7],[-13,19],[-18,23],[-15,18],[-18,4],[-8,-8],[-5,-15],[-10,-11],[-15,-5],[-9,4],[-14,12],[-10,17],[-13,13],[-2,20],[11,18],[8,14],[2,20],[-21,22],[1,23],[-1,34],[0,17],[1,24],[-19,18],[-23,0],[-16,7],[-14,14],[-16,8],[-14,10],[-7,23],[-1,14],[-12,10],[-21,0],[-18,-1],[-23,-5],[-8,-11],[1,-20],[35,-23],[1,-24],[-1,-20],[-13,-9],[-22,0],[-7,11],[-9,11],[-13,0],[-25,-7],[-19,2],[-16,10],[-12,17],[-16,15],[-15,29],[-21,11],[-22,-3],[-35,5],[6,17],[21,24],[11,12],[2,17],[-13,18],[-1,18],[11,11],[19,0],[15,0],[18,0],[29,-2],[15,8],[8,16],[15,15],[16,13],[4,12],[-13,7],[-21,0],[-26,5],[-22,6],[-22,11],[-14,14],[-15,8],[-14,2],[-15,15],[-5,9],[9,8],[4,18],[1,17],[-10,11],[-11,-7],[-17,-10],[-17,-2],[-12,-9],[-12,-10],[-17,9],[-14,16],[-12,-7],[-11,-12],[-1,-11],[-14,-6],[-24,-1],[-29,10],[-19,4],[-12,6],[-22,-10],[-13,12],[-19,8],[-14,15],[-2,14],[-12,15],[-11,-15],[5,-20],[3,-17],[-13,5],[-13,13],[-21,17],[-9,5],[-17,-1],[-15,-6],[5,-7],[-5,-7],[-11,-3],[-18,-6],[-9,-11],[3,-18],[-6,-16],[-14,-14],[-13,-12],[-19,-4],[-18,-3],[-16,7],[-11,18],[-13,8],[-10,13],[-15,8],[-20,13],[-13,8],[0,15],[-8,13],[-10,14],[-9,12],[-9,12],[-20,12],[-13,8],[-9,-17],[-2,-11],[-3,-14],[-16,7],[-18,21],[-8,11],[-11,10],[-9,16],[-11,6],[0,12],[5,12],[0,17],[-4,13],[9,11],[3,12],[4,19],[-13,11],[15,13],[13,8],[18,15],[11,15],[13,-8],[15,-5],[1,-9],[2,-11],[1,-12],[6,-13],[4,-11],[14,-7],[6,11],[-2,19],[1,9],[12,5],[16,1],[19,0],[18,-2],[18,-4],[14,-7],[18,-4],[16,0],[18,1],[29,1],[20,2],[29,8],[18,2],[18,3],[12,6],[15,4],[26,2],[23,-2],[12,-9],[2,-11],[10,-4],[2,8],[4,14],[9,12],[10,9],[26,4],[15,2],[13,10],[9,11],[5,7],[18,7],[36,0],[3,-11],[1,-11],[3,-8],[13,-9],[18,-2],[17,-7],[11,-9],[0,-13],[0,-11]],[[252276,84284],[5,-2],[7,0],[7,3],[7,2],[8,1],[7,0],[6,-5],[3,-9],[-3,-5],[-3,-6],[-2,-6],[0,-7],[5,-8],[12,-4],[12,-6],[9,-4],[10,5],[2,14],[11,10],[16,4],[17,1],[13,-2],[12,-3],[4,-4],[1,-6],[12,-8],[6,-6],[7,-1],[11,-8],[10,-10],[10,-16],[10,-10],[8,-17],[12,-16],[2,-17],[1,-16],[-2,-8],[9,-12],[5,-13],[8,-18],[-5,-10],[-3,-13],[5,-13],[2,-10],[0,-9],[-8,-7],[-23,1],[-14,10],[-7,21],[-7,12],[-15,6],[-18,-4],[0,-15],[2,-20],[-15,-1],[-23,-5],[-29,-12],[-33,11],[-11,17],[-10,15],[-22,4],[-22,11],[-16,17],[-12,15],[-1,9],[13,0],[14,1],[1,9],[-3,4],[-4,4],[5,7],[4,7],[5,4],[-1,7],[-9,3],[-9,0],[-9,0],[-3,-5],[-8,4],[-5,6],[-3,12],[-1,7],[2,8],[-5,3],[-6,-3],[-10,3],[-9,9],[-1,4],[3,4],[4,7],[4,7],[1,7],[-4,8],[-1,6],[2,5],[5,1],[5,-2],[5,3],[5,3],[3,5],[-3,7],[-8,6],[-7,1],[-3,6],[-2,5],[-7,7],[0,7],[6,3],[8,-1],[11,-2],[10,-2],[9,-1],[6,-1]],[[252199,84660],[-6,-1],[-8,-5],[-4,-8],[4,-5],[7,2],[6,-6],[0,-6],[8,0],[7,3],[6,5],[7,4],[9,-1],[4,-4],[0,-6],[8,-6],[2,-6],[0,-4],[0,-6],[3,-1],[4,2],[4,0],[4,-4],[3,-4],[2,-2],[5,0],[4,-3],[3,-4],[2,-6],[-3,-3],[-1,-5],[6,-7],[5,-2],[2,-7],[0,-5],[-1,-4],[-4,-4],[-5,-3],[-4,0],[-9,0],[-3,6],[-8,3],[-10,0],[-9,1],[-8,3],[-5,4],[-10,-7],[-7,0],[-2,8],[-1,9],[-3,10],[-6,3],[-8,6],[-1,5],[7,0],[6,2],[-4,9],[-9,1],[-13,1],[-16,7],[-5,0],[0,-5],[-1,-6],[-5,-4],[-6,-2],[-3,-6],[-4,-9],[-1,-7],[-1,-9],[3,-4],[2,-6],[-3,-3],[-5,2],[-8,1],[-6,-2],[-9,-3],[-12,-5],[-13,3],[-2,12],[1,11],[5,11],[6,8],[12,5],[4,6],[6,6],[-5,8],[-7,2],[-6,-3],[-2,-3],[-4,4],[0,8],[0,9],[-1,6],[0,10],[-7,6],[-9,-2],[-11,-7],[-7,-3],[-9,-3],[-10,-8],[-7,-8],[3,-4],[1,-5],[-5,-1],[-7,0],[-7,4],[-9,7],[-2,7],[15,11],[16,13],[22,14],[27,10],[30,8],[21,0],[21,0],[23,-6],[19,-12],[6,-6],[0,-5],[-4,-4]],[[240666,86316],[-1065,-797],[37,930],[563,230],[465,-363]],[[259958,84441],[-139,1331],[1126,1406]],[[260945,87178],[-111,-1537],[-876,-1200]],[[239031,85138],[-885,-1423],[23,1226],[-867,1465],[-145,766],[-193,1062],[744,-212],[472,-430],[172,-785],[679,-1669]],[[250915,89611],[28,-15],[15,-15],[19,-20],[16,-18],[26,-16],[20,-9],[18,-8],[13,-9],[21,-1],[19,-5],[26,3],[15,4],[7,-4],[4,-11],[9,-10],[11,-10],[19,-8],[23,-5],[16,-2],[19,0],[16,4],[21,0],[18,1],[13,0],[13,0],[6,-8],[14,-6],[22,-5],[21,-3],[11,-3],[2,-10],[-24,-16],[-17,-7],[-48,-21],[-16,-11],[-9,-11],[-8,-24],[2,-16],[10,-13],[0,-12],[4,-15],[16,-1],[13,-3],[12,-14],[11,-19],[9,-10],[7,-16],[11,-14],[6,-4],[4,-3],[6,-7],[7,-7],[4,-2],[4,-2],[9,-9],[4,-8],[3,-5],[0,-6],[-6,-5],[-7,-4],[-7,-2],[-4,-1],[-5,-4],[2,-10],[0,-12],[0,-10],[-4,-8],[-11,-8],[-12,-7],[-10,-9],[-10,-10],[-5,-8],[3,-17],[13,-5],[4,-10],[7,-9],[6,-15],[3,-6],[5,-3],[14,6],[4,1],[6,3],[13,0],[13,-1],[16,-2],[16,-5],[5,-11],[3,-8],[-5,-13],[2,-10],[4,-14],[-6,-11],[-16,-9],[-1,-13],[-5,-17],[-1,-12],[-4,-10],[2,-9],[0,-14],[-3,-9],[-4,-9],[-5,-11],[-4,-20],[-13,-7],[-11,0],[-3,-1],[-9,-4],[-4,-8],[-11,-10],[-11,-6],[-6,-7],[1,-7],[5,-7],[9,-7],[7,-5],[5,-12],[4,-9],[5,-7],[5,-6],[5,-7],[0,-11],[-1,-7],[-4,-6],[-18,-9],[-21,-5],[-21,1],[-19,-9],[-16,0],[-11,-9],[-4,-11],[0,-12],[-6,-11],[4,-13],[7,-16],[8,-12],[4,-6],[5,-14],[2,-13],[5,-10],[8,-10],[14,-1],[17,-1],[25,-4],[11,-1],[14,0],[13,9],[11,-1],[8,-6],[0,-10],[1,-17],[3,-12],[7,-29],[0,-15],[0,-11],[-14,-13],[-22,-7],[-13,-5],[-19,-8],[-12,-12],[-3,-17],[-1,-23],[1,-15],[6,-16],[7,-13],[15,-21],[18,-12],[11,-10],[10,-14],[8,-14],[2,-17],[-6,-12],[-15,-16],[-15,-8],[-14,-13],[-3,-15],[4,-18],[6,-13],[3,-9],[8,-1],[13,3],[4,8],[-8,9],[9,10],[17,2],[16,0],[11,-2],[8,-2],[7,-10],[-1,-9],[8,-6],[10,-6],[0,-9],[-4,-8],[-5,-7],[-15,-4],[-16,6],[-10,9],[-9,6],[-17,-7],[-14,-10],[-9,-12],[-17,-11],[-12,-8],[-15,-5],[-8,-11],[-25,0],[-23,4],[-19,6],[-21,2],[-20,-3],[-16,0],[-21,-3],[-26,-11],[-19,-9],[-23,-6],[-2,-19],[-3,-28],[12,-20],[4,-5],[18,-32],[14,-7],[23,5],[16,7],[3,9],[0,8],[-1,12],[-5,16],[-10,13],[-3,12],[9,3],[15,-10],[10,-11],[3,-13],[13,-13],[4,-6],[7,-10],[5,-6],[5,-12],[-3,-10],[1,-7],[11,-12],[12,-9],[13,-6],[10,-10],[12,-16],[23,-8],[16,-2],[23,-8],[17,-7],[15,-8],[13,-10],[11,-8],[13,-9],[19,-3],[17,-11],[10,-12],[15,-8],[9,-3],[12,-9],[7,-14],[-2,-12],[-8,-5],[-12,-2],[-23,0],[-26,-2],[-25,0],[-32,0],[-23,-14],[-19,-8],[-19,-17],[-16,17],[-2,22],[-16,17],[-28,0],[-28,-7],[-12,-19],[-21,-20],[-11,-13],[-6,-15],[-3,-18],[9,-17],[17,-10],[25,-13],[-5,-23],[-3,-15],[-3,-20],[0,-22],[-10,-32],[-2,-20],[-3,-28],[-11,-19],[-27,2],[-23,24],[-6,21],[-26,0],[-22,2],[-11,8],[-24,16],[-12,10],[-14,7],[-25,-13],[-27,-1],[-22,7],[-6,10],[0,21],[-2,24],[-20,16],[-19,14],[-21,-24],[-38,-17],[-28,-27],[-15,-37],[-14,-25],[-20,-14],[-18,-20],[-8,-12],[-18,-12],[-24,3],[-3,-12],[-24,-14],[-19,-6],[-22,-7],[-18,-7],[-16,0],[-23,12],[-6,16],[-16,-16],[-25,-18],[-36,-10],[-31,-14],[-30,-13],[-8,-13],[-13,-20],[-17,-3],[-34,-7],[-16,4],[-17,8],[-13,12],[-14,-18],[-15,-24],[-21,-24],[-15,-20],[13,-19],[0,-21],[-9,-14],[-12,-18],[-27,0],[-26,-1],[-20,2],[-3,-30],[-1,-37],[-11,-38],[-6,-31],[-20,-25],[-25,-34],[-8,-17],[-12,-13],[11,-8],[7,-5],[16,-10],[-1,-13],[-1,-13],[-7,-29],[0,-15],[-2,-17],[-9,-13],[-17,5],[-9,5],[-13,3],[-15,6],[-26,9],[-16,22],[-17,2],[-6,-17],[-26,-11],[-27,-7],[-18,10],[-15,8],[-6,13],[-9,11],[-15,1],[-5,-13],[-7,-11],[-8,-13],[-25,-7],[-25,-3],[0,-13],[0,-11],[4,-24],[15,-13],[13,-11],[-4,-23],[-17,-17],[-37,-7],[-13,-12],[-39,-9],[-17,-9],[-1,-26],[-4,-23],[-3,-25],[0,-22],[-25,-23],[-36,-33],[-42,-4],[-22,6],[-18,-7],[-17,-9],[-34,-7],[-26,0],[-10,13],[3,13],[0,17],[21,10],[1,18],[0,15],[-8,4],[-23,-7],[-19,-17],[-1,-25],[-9,-29],[-16,-20],[-21,-20],[-8,-19],[-22,-18],[-15,-16],[2,-22],[8,-17],[-3,-21],[-4,-19],[-5,-12],[-19,-19],[-29,-5],[-42,-4],[-23,15],[-27,16],[-12,-10],[-29,7],[-16,25],[-18,9],[-13,6],[-24,-6],[-24,-16],[1,-19],[4,-22],[24,-26],[19,-22],[25,-36],[2,-23],[1,-27],[7,-23],[-6,-18],[-17,-9],[-20,13],[-12,19],[-14,14],[3,28],[0,24],[-27,28],[-30,27],[-12,3],[-10,-15],[-13,-8],[-15,7],[-48,-15],[-39,5],[-10,-12],[-25,-36],[-24,17],[-23,13],[-13,-4],[-24,-4],[-29,9],[-27,10],[3,-20],[9,-17],[3,-25],[-14,-6],[-31,-1],[-23,0],[-24,9],[-7,18],[-9,9],[-12,9],[-24,-8],[-46,-9],[-32,2],[-4,9],[-10,21],[0,24],[-103,-2],[-2,-19],[5,-20],[3,-15],[0,-13],[10,-29],[10,-28],[26,-31],[22,-9],[22,-12],[24,-13],[24,-26],[14,-17],[23,-19],[14,-21],[36,-1],[30,-8],[29,-3],[18,-4],[22,-6],[31,9],[29,-3],[42,-16],[18,-14],[10,-27],[5,-18],[9,-31],[14,-21],[24,-37],[17,-20],[-14,-15],[-26,5],[-25,11],[-22,-6],[-17,-19],[-19,-25],[-12,-20],[-43,-2],[-46,0],[-51,9],[-27,-9],[-39,2],[-42,11],[-16,-18],[-43,-17],[-43,6],[-20,-2],[-25,10],[-17,22],[-14,20],[-28,-4],[-29,27],[-16,36],[-10,21],[-24,0],[-38,0],[-37,11],[0,36],[25,20],[13,22],[-20,28],[-34,1],[-43,-6],[-33,-19],[-49,-4],[-22,4],[11,19],[-2,21],[4,28],[10,22],[63,13],[53,-4],[44,0],[36,20],[30,30],[15,32],[-14,23],[-16,-4],[-32,-12],[-19,18],[-16,18],[-5,27],[2,52],[1,57],[39,47],[26,56],[-2,52],[-5,40],[-21,89],[-16,84],[-10,81],[-13,67],[-41,69],[-29,55],[-47,34],[-41,42],[-39,-27],[-68,37],[-39,30],[-47,0],[-39,0],[-72,58],[8,30],[-5,25],[-2,17],[18,10],[68,17],[34,25],[22,34],[53,57],[1,83],[-6,73],[-4,61],[-32,39],[-37,3],[-47,-26],[-99,-29],[-32,-5],[-81,2],[-48,1],[-35,0],[-22,11],[-22,28],[-4,41],[7,29],[17,22],[19,25],[16,26],[6,30],[4,26],[2,30],[-10,30],[-21,16],[-28,-4],[-27,-12],[-13,-13],[-20,5],[2,14],[6,10],[-2,13],[-1,13],[-1,7],[-4,7],[-12,16],[-1,9],[-8,7],[-15,9],[-11,11],[-8,2],[-10,3],[-9,2],[-4,7],[-6,0],[0,11],[11,6],[3,2],[6,6],[0,9],[-4,10],[-5,11],[-7,10],[-7,4],[-14,18],[1,13],[0,10],[-3,14],[-13,10],[-1,3],[-12,11],[3,10],[5,10],[1,7],[-5,7],[2,8],[8,6],[-6,4],[-3,8],[-7,12],[-6,13],[-2,15],[1,11],[-2,16],[0,12],[7,9],[-6,13],[-8,3],[-7,-7],[-1,-9],[4,-12],[-10,-10],[-7,-3],[-12,5],[-3,8],[3,8],[-7,5],[-5,8],[1,10],[5,6],[6,6],[2,7],[12,7],[2,8],[-1,8],[-11,5],[-18,-2],[0,11],[0,18],[0,10],[13,4],[7,0],[6,11],[1,16],[5,8],[-3,11],[-13,17],[-9,-1],[-10,-3],[-11,6],[-12,9],[-8,4],[-12,-3],[-9,6],[-3,13],[8,1],[10,1],[1,8],[-2,8],[-10,8],[-14,4],[-8,0],[-7,4],[-4,9],[8,2],[-1,7],[-15,6],[-10,2],[-4,11],[-5,7],[-9,2],[-9,1],[-8,6],[1,7],[7,5],[11,7],[14,5],[15,2],[10,7],[2,7],[-1,10],[10,17],[10,6],[14,-5],[10,-11],[11,5],[13,9],[7,6],[15,1],[9,-6],[12,2],[10,8],[3,10],[0,15],[-9,16],[-12,16],[4,12],[10,14],[17,12],[24,2],[16,-2],[23,-8],[13,-10],[19,-29],[9,-19],[13,-20],[8,-13],[9,-9],[8,-5],[17,-15],[11,-10],[12,-3],[18,0],[11,0],[17,-6],[12,-17],[-1,-20],[2,-13],[3,-15],[10,-12],[12,-5],[13,-8],[16,-10],[14,-6],[15,3],[16,-3],[9,-8],[14,-12],[13,-16],[5,-23],[4,-17],[10,-12],[2,-21],[3,-15],[7,-19],[8,-8],[13,-8],[0,-13],[5,-15],[17,-9],[13,-8],[24,-6],[17,-11],[30,-5],[14,0],[17,-2],[10,-13],[0,-13],[-1,-16],[-9,-20],[-15,-10],[-19,-3],[-13,-6],[-6,-9],[-2,-17],[-4,-19],[-13,-6],[-9,-4],[0,-9],[2,-22],[6,-15],[4,-16],[-8,-13],[-2,-11],[54,-22],[55,0],[36,3],[24,6],[8,11],[12,8],[8,13],[14,6],[13,7],[12,3],[9,-2],[7,-8],[8,-11],[5,-14],[8,-9],[5,-4],[3,1],[11,-5],[12,5],[8,10],[3,8],[2,5],[10,4],[9,4],[0,8],[1,11],[14,10],[17,-6],[15,-4],[6,-8],[13,-2],[12,1],[4,8],[4,9],[8,5],[18,-4],[19,-4],[13,-7],[12,-3],[19,-2],[9,-8],[15,-14],[17,-13],[15,-3],[17,2],[10,10],[17,3],[16,-6],[5,-12],[11,-6],[7,0],[7,18],[6,8],[4,11],[7,11],[21,1],[16,-6],[13,-10],[8,-7],[23,-6],[21,-7],[10,0],[11,0],[12,4],[23,2],[13,-7],[14,0],[13,2],[-4,9],[8,7],[12,0],[5,-9],[10,-10],[12,-7],[13,-3],[5,9],[0,8],[-2,11],[7,11],[6,4],[12,3],[24,-2],[15,0],[6,1],[-2,10],[-6,9],[-5,6],[11,0],[7,-3],[9,-6],[6,-11],[6,-5],[16,4],[7,3],[0,10],[-3,10],[-4,11],[10,2],[7,-3],[5,-5],[5,-8],[2,10],[5,9],[9,4],[11,2],[11,-1],[10,-6],[1,-9],[6,-13],[4,-11],[8,-1],[2,8],[12,11],[11,8],[10,3],[17,-3],[15,-4],[12,-3],[13,-9],[20,-4],[11,-2],[16,-1],[15,3],[7,0],[9,5],[8,9],[8,5],[11,5],[5,-6],[9,-3],[9,-1],[8,-14],[10,-13],[3,-13],[0,-6],[-6,-8],[6,-6],[9,4],[10,-3],[16,-4],[9,11],[14,8],[0,11],[10,2],[23,2],[21,9],[3,10],[-3,12],[-5,-3],[-15,-1],[-6,13],[-3,9],[0,11],[4,9],[14,9],[12,3],[14,0],[16,0],[10,-6],[8,-6],[14,3],[28,7],[24,6],[11,7],[5,13],[-2,13],[9,6],[16,2],[7,7],[17,8],[20,6],[9,6],[10,13],[10,11],[18,5],[17,-3],[17,-9],[14,-10],[23,-7],[13,-5],[18,-1],[20,0],[22,-8],[13,-16],[10,-5],[14,2],[1,10],[12,9],[11,5],[12,0],[18,-3],[16,0],[7,-7],[14,3],[14,-10],[19,-23],[30,-28],[30,-22],[39,-3],[26,-6],[28,2],[6,27],[3,23],[15,25],[-3,36],[-22,29],[-2,26],[5,24],[-16,32],[-3,20],[-24,23],[-29,9],[-30,28],[-2,21],[8,27],[-20,22],[-8,20],[-1,21],[-17,27],[-20,6],[-24,8],[-26,12],[-20,-2],[-23,1],[-19,4],[-14,22],[-24,13],[-22,6],[-11,3],[-13,9],[-21,11],[-13,16],[-24,22],[-8,27],[3,33],[0,18],[-9,23],[-5,20],[6,25],[19,2],[12,-3],[30,-32],[22,-39],[24,-42],[8,-35],[10,-30],[29,2],[22,1],[21,4],[31,16],[10,14],[24,8],[24,19],[20,14],[26,4],[26,4],[15,3],[11,-20],[-3,-14],[-1,-22],[0,-24],[12,-18],[23,-16],[27,-7],[24,-2],[13,0],[19,12],[20,12],[23,7],[35,10],[13,20],[2,25],[17,31],[-19,17],[-14,8],[-12,12],[-10,19],[-12,-4],[-16,-11],[-26,14],[-14,8],[-15,-3],[-19,-4],[-12,2],[-11,13],[-1,22],[0,21],[6,17],[15,13],[14,18],[12,13],[13,13],[4,16],[8,17],[12,11],[13,7],[19,3],[7,0],[2,15],[1,12],[4,15],[11,16],[12,13],[3,11],[-2,12],[-3,11],[-5,17],[-3,7],[-1,11],[-4,19],[11,11],[12,2],[15,6],[14,6],[15,7],[21,-6],[15,-4],[6,11],[11,8],[18,3],[23,3],[17,5],[14,9],[18,5],[11,12],[7,12],[-6,13],[-15,17],[-15,20],[-2,11],[9,8],[15,-9],[10,-7],[17,2],[16,-15],[19,-10],[21,-4],[29,-1],[33,-4],[0,-5],[0,-19],[1,-14],[2,-14],[2,-22],[1,-21],[12,-15],[5,-23],[2,-14],[5,-21],[18,-19],[17,0],[10,14],[2,8],[-7,12],[-6,13],[-2,9],[10,-3],[6,-6],[5,-3],[10,-6],[14,1],[-6,22],[-7,24],[-1,27],[15,24],[11,23],[0,29],[-8,24],[0,21],[3,8],[6,4],[11,1],[12,-3],[14,-4],[13,3],[11,6],[-3,6],[-3,6],[-14,9],[-6,8],[7,16],[11,-7],[0,15],[-13,12],[-11,13],[-15,7],[-12,18],[1,15],[3,15],[25,17],[13,-8],[15,-5],[12,-6],[11,-1],[19,-10],[9,-4],[13,9],[8,12],[15,1],[13,6],[11,4],[8,11],[1,11],[6,12],[16,5],[-7,12],[-14,17],[-7,14],[3,24],[-2,18],[-5,13],[1,26],[1,15],[9,8],[11,9],[6,10],[11,12],[17,11],[10,17],[10,13],[16,17],[14,-1],[12,-10],[6,8],[11,4]],[[254471,90866],[8,-14],[11,-3],[8,-1],[12,-4],[8,-5],[8,-5],[10,-12],[0,-10],[13,0],[11,0],[9,0],[14,-11],[14,-1],[14,-8],[21,0],[13,-2],[12,-9],[14,-6],[17,-9],[7,-9],[11,0],[7,-7],[9,-11],[12,-1],[14,-3],[7,-7],[10,-2],[11,-9],[9,-5],[9,-12],[4,-11],[8,-5],[15,0],[16,7],[8,14],[13,5],[11,3],[13,2],[12,0],[10,-8],[6,-8],[15,3],[13,-1],[20,-3],[15,-2],[1,-12],[8,-3],[13,-2],[16,-2],[9,-4],[0,12],[7,5],[11,-8],[12,-13],[9,-9],[14,1],[6,14],[7,9],[20,-7],[21,-7],[12,-13],[15,-15],[19,-6],[20,0],[7,-11],[18,-23],[17,-17],[16,-17],[6,-20],[-10,-25],[-16,-17],[-24,-6],[-22,-7],[-8,-12],[-5,-8],[-32,-22],[-18,-20],[-1,-31],[23,-27],[8,-24],[0,-27],[-1,-27],[22,-32],[8,-40],[18,-53],[47,-39],[33,-35],[489,156],[309,-307],[66,-65],[51,-7],[39,10],[34,-5],[33,-27],[47,-50],[24,-44],[33,-23],[18,-39],[3,-37],[13,-35],[31,-30],[-3,-32],[3,-52],[-8,-54],[-31,-47],[2,-42],[0,-37],[-5,-30],[0,-34],[-13,-35],[13,-17],[57,-3],[50,10],[46,3],[42,-30],[78,-84],[73,-62],[49,-5],[19,25],[44,7],[36,2],[44,-11],[19,-65],[2,-80],[29,33],[16,103],[1,22],[4,67],[81,124],[76,111],[117,103],[110,84],[107,59],[153,52],[144,29],[130,0],[107,-77],[49,-86],[26,-117],[28,-84],[37,0],[-8,60],[-18,101],[-42,77],[-12,74],[-21,94],[3,79],[26,69],[21,64],[65,74],[70,40],[92,56],[156,49],[123,15],[88,0],[78,-13],[203,-57],[188,-99],[187,-121],[148,-124],[109,-112],[55,-75],[23,-38],[5,-62],[-81,-183],[-104,-178],[-74,-165],[-88,-146],[-113,-160],[-87,-22],[-56,-15],[-94,-22],[-36,-57],[-42,-39],[-26,-40],[-3,-66],[18,-55],[3,-61],[4,-72],[6,-114],[10,-173],[-63,-57],[-73,-12],[-81,-13],[-48,-88],[-25,-141],[-39,-39],[-26,-82],[-53,-88],[-39,14],[-46,18],[-40,-12],[-75,-119],[-47,-91],[-3,-82],[-73,-128],[-10,-126],[-4,-50],[-10,-101],[-24,-91],[-5,-52],[0,-92],[-19,-116],[-10,-61],[-40,-57],[-21,-69],[-67,-32],[-18,29],[10,57],[13,55],[0,69],[-7,62],[-15,50],[-58,24],[-55,-20],[-65,-47],[-65,-52],[-58,-44],[-67,-29],[-34,64],[-21,35],[-21,39],[-34,30],[-41,-3],[-50,-32],[-44,-24],[-29,22],[-15,57],[-8,79],[37,39],[-13,55],[-16,49],[-52,25],[-10,54],[49,47],[16,57],[-2,57],[-18,42],[-29,-2],[10,-55],[-29,-64],[-44,-77],[-47,-41],[-65,-52],[-44,-22],[-16,-60],[-6,-76],[29,-47],[31,-40],[47,-10],[83,-10],[47,-15],[5,-29],[18,-57],[26,-47],[39,-8],[63,-10],[42,-22],[46,-74],[52,-52],[60,-18],[70,0],[21,-44],[20,-41],[19,-38],[8,-28],[-29,-24],[-40,12],[-38,3],[-62,-20],[-94,-2],[-60,0],[-70,-30],[-14,-61],[47,-50],[-57,-47],[-73,-34],[-42,-59],[-73,-50],[-47,-47],[-5,-47],[-58,-49],[-96,3],[-57,27],[-50,22],[-106,5],[-131,-64],[-55,-64],[-31,-56],[-16,-82],[-3,-96],[-10,-97],[47,-84],[41,-59],[57,-27],[29,-40],[57,-52],[42,-15],[63,27],[36,23],[26,26],[33,13],[41,38],[23,23],[25,-27],[-5,-30],[-23,-33],[0,-35],[2,-35],[18,5],[1,41],[16,33],[27,32],[31,2],[23,-18],[4,-27],[0,-43],[-4,-35],[0,-20],[-14,-30],[-52,-9],[-1,-27],[22,-24],[26,-25],[22,-42],[0,-40],[-13,-48],[1,-51],[-11,-53],[-52,-66],[-22,-35],[-13,-31],[-21,3],[-14,15],[1,46],[-11,43],[-26,45],[-25,33],[-26,0],[-123,-20],[-70,-65],[-76,-4],[-5,-32],[-26,-73],[7,-43],[52,10],[69,-33],[10,-73],[-27,-42],[-63,-27],[-49,-3],[-38,-20],[10,-52],[73,-47],[31,-52],[4,-66],[17,-40],[-4,-52],[-86,0],[-52,-30],[-18,-66],[-66,-52],[-59,-17],[-42,53],[-34,63],[-18,62],[-76,66],[-55,-13],[-53,-59],[-24,-46],[-69,-13],[-14,-79],[-91,-63],[-101,-3],[-76,0],[-76,30],[-32,-82],[-45,-76],[-45,-43],[-59,7],[-66,63],[-66,92],[-56,-46],[-152,-52],[24,-99],[-42,-10],[-125,20],[-87,-59],[-128,17],[-80,29],[-73,-6],[-62,128],[21,29],[39,10],[28,22],[37,2],[49,-12],[58,-32],[67,-8],[78,0],[79,17],[62,15],[44,15],[53,44],[39,52],[23,71],[26,52],[63,7],[81,-22],[52,-32],[83,0],[49,10],[63,-5],[34,9],[39,35],[8,34],[-5,55],[-5,44],[-6,35],[-20,49],[-11,50],[24,37],[29,-30],[23,-35],[47,-51],[5,-50],[39,-15],[31,30],[52,29],[52,15],[73,2],[45,-32],[49,3],[8,19],[-23,50],[-21,39],[-34,10],[-52,20],[-39,37],[-16,42],[-23,35],[-55,27],[-44,15],[-68,-2],[-47,-10],[-70,-7],[-52,-13],[10,-51],[0,-42],[-73,-13],[-31,-29],[5,-32],[50,-23],[20,-22],[21,-57],[8,-59],[23,-50],[-39,-22],[-29,-2],[-33,17],[-32,17],[-31,15],[-28,8],[-45,10],[-26,22],[-10,40],[-16,42],[-7,49],[5,42],[-8,35],[-34,29],[-31,23],[18,-32],[19,-33],[-1,-32],[-23,-32],[-34,-17],[-23,22],[-11,45],[6,52],[-16,17],[-26,20],[-29,15],[-36,12],[-31,27],[-24,35],[0,39],[-12,40],[0,12],[-26,10],[-21,-15],[-24,10],[24,32],[34,18],[39,24],[5,18],[5,29],[3,40],[3,34],[-3,37],[21,33],[26,22],[3,37],[-24,32],[-28,27],[-26,25],[-21,39],[-16,28],[-15,32],[31,20],[13,37],[-13,22],[-5,27],[-13,30],[3,24],[-16,25],[-13,25],[-23,15],[-29,7],[-13,22],[-5,-39],[10,-27],[-18,-15],[10,-22],[3,-35],[15,-47],[-23,-27],[26,-49],[2,-30],[-33,0],[-11,-42],[29,-20],[21,3],[26,-25],[2,-30],[-13,-27],[31,5],[39,-5],[8,-25],[-8,-25],[-15,-27],[-40,-24],[-23,-27],[10,-28],[-13,-37],[-49,0],[-39,-5],[-19,-32],[-18,-34],[0,-52],[39,-40],[26,-24],[13,-20],[29,-8],[2,-22],[-18,-42],[23,-20],[39,-17],[29,-17],[34,-30],[36,-22],[16,-37],[-13,-25],[-6,-25],[-2,-32],[21,-30],[5,-29],[0,-32],[5,-40],[0,-25],[0,-37],[-16,-39],[-11,-25],[-10,-49],[-44,-20],[-37,-20],[-62,10],[-58,25],[-49,10],[-31,40],[-16,52],[-8,34],[-28,20],[-36,42],[-42,35],[-34,29],[-49,45],[-34,10],[-31,25],[-24,34],[34,32],[11,35],[-3,39],[-5,25],[18,30],[-5,29],[-18,23],[-26,22],[-34,27],[-10,37],[29,45],[10,32],[-3,37],[-39,37],[-18,40],[-13,49],[29,25],[26,52],[26,41],[3,42],[16,52],[-26,35],[-26,35],[-29,7],[0,27],[26,18],[42,-15],[26,-23],[34,-39],[15,-47],[8,-57],[0,-20],[36,0],[37,-27],[0,-45],[52,3],[36,0],[39,22],[8,34],[-5,57],[0,35],[-2,42],[-19,32],[-15,-20],[-58,-19],[-15,37],[-3,44],[-15,25],[-5,30],[-3,51],[-18,55],[-21,44],[-31,50],[-28,27],[-16,40],[-34,19],[-44,-27],[-13,-32],[-11,-32],[0,-42],[21,-25],[23,-27],[-5,-25],[-42,8],[-23,22],[-29,-12],[-23,-30],[-29,-39],[-23,-17],[-34,-23],[-73,8],[-55,17],[-31,28],[-44,17],[-11,-27],[0,-32],[8,-42],[-13,-45],[-8,-39],[8,-35],[5,-39],[23,-33],[18,-27],[26,-37],[27,17],[31,10],[28,-12],[-10,-37],[-8,-30],[-8,-32],[-5,-12],[-39,7],[-29,20],[-28,22],[-39,0],[-47,-7],[0,-17],[0,-30],[20,-22],[39,-28],[37,-24],[29,5],[31,7],[36,0],[16,-20],[5,-35],[0,-24],[-21,2],[-36,3],[-39,2],[-50,-22],[-13,-29],[0,-30],[0,-32],[18,-27],[55,-28],[62,-12],[65,-23],[21,-34],[26,-47],[0,-40],[-5,-34],[-14,-31],[-45,-2],[-37,3],[-22,13],[-25,18],[-17,18],[-22,9],[-21,19],[-31,12],[-31,3],[-33,0],[-29,-2],[-35,-12],[-11,-15],[-10,-20],[9,-17],[-9,-24],[-12,-12],[-28,-8],[-14,13],[-16,12],[-6,24],[-9,20],[-19,15],[-27,7],[-21,13],[-22,12],[-18,-6],[-25,-16],[-16,-10],[-19,-22],[-32,-20],[-32,-2],[-3,-20],[4,-17],[8,-19],[-9,-19],[-9,-11],[3,-11],[4,-11],[11,-4],[6,-10],[-21,-18],[-14,-20],[-6,-18],[-7,-24],[6,-16],[12,-18],[-16,-10],[-23,3],[-6,24],[-29,2],[-20,5],[-33,-2],[-3,-7],[-2,-5],[15,-13],[0,-20],[-8,-11],[-17,10],[-12,22],[-13,9],[-10,23],[-5,11],[-3,10],[-12,11],[-13,13],[1,12],[-17,17],[-18,17],[-27,25],[-18,13],[-24,28],[-31,23],[-35,23],[-20,19],[-20,17],[-29,-2],[-21,0],[-34,-3],[-27,-5],[-14,-5],[-21,3],[-14,7],[-9,9],[-14,7],[-11,5],[-17,5],[-9,0],[-8,-3],[-7,-4],[-5,-6],[-4,-7],[-10,-3],[-19,-4],[-11,7],[-17,-6],[-16,0],[-13,-2],[-11,-8],[-16,-3],[-16,-1],[-16,-2],[-21,-2],[-25,1],[-12,5],[-10,16],[-1,17],[4,16],[6,9],[5,8],[-6,28],[-2,25],[-5,20],[-1,21],[3,9],[-6,10],[-2,11],[-2,31],[2,30],[0,24],[3,17],[7,11],[18,1],[0,9],[-6,22],[0,23],[7,41],[10,56],[14,6],[24,9],[14,4],[27,-1],[18,-9],[20,-11],[15,5],[14,6],[10,11],[2,15],[7,33],[-20,7],[-27,0],[-28,7],[-5,19],[12,15],[34,9],[23,11],[44,13],[28,13],[41,9],[40,9],[37,23],[13,24],[13,25],[28,5],[27,15],[17,9],[27,1],[18,-12],[-2,-17],[-18,-12],[-11,-11],[-17,-17],[-11,-15],[-14,-9],[0,-17],[-3,-11],[-11,-5],[-3,-10],[-16,-8],[-12,-15],[2,-16],[-1,-10],[13,-6],[25,12],[13,19],[0,15],[12,25],[4,14],[16,3],[21,-15],[20,-21],[29,-21],[9,4],[-13,18],[-11,13],[-4,19],[-20,15],[14,13],[20,10],[2,24],[-2,16],[6,15],[-9,15],[-16,6],[-12,7],[7,15],[12,12],[19,15],[26,-4],[15,-7],[20,5],[18,8],[17,11],[30,21],[8,19],[14,10],[18,6],[20,7],[28,12],[18,16],[5,14],[-3,19],[9,9],[14,-1],[14,13],[12,13],[10,2],[19,-1],[25,-4],[11,-14],[10,-19],[19,-3],[9,5],[17,1],[13,1],[-2,8],[-21,12],[-11,10],[-15,3],[-9,15],[-12,14],[-9,13],[-9,-7],[0,-10],[-9,-5],[-12,-5],[-12,10],[-12,7],[-21,0],[-26,5],[-21,3],[-9,18],[-3,12],[6,17],[12,15],[5,19],[-1,18],[12,19],[2,12],[7,10],[9,9],[1,11],[12,13],[1,12],[4,10],[8,2],[11,1],[1,9],[-9,4],[-7,9],[-13,0],[-6,14],[-6,13],[5,8],[8,10],[-9,14],[-6,10],[-12,4],[-21,-2],[-10,4],[-14,-3],[-9,6],[2,10],[5,6],[-4,9],[-17,7],[-17,2],[-10,-7],[-13,-15],[-3,-17],[-2,-8],[-20,3],[-5,17],[-15,9],[-19,0],[-22,0],[-6,-6],[-14,-19],[-20,-8],[-15,-4],[-14,8],[-8,-1],[-1,14],[3,16],[6,14],[7,16],[5,11],[14,4],[15,11],[14,12],[15,7],[16,12],[11,8],[13,12],[9,21],[1,14],[7,10],[7,11],[9,8],[9,8],[8,8],[6,10],[-1,12],[-3,9],[-9,12],[-21,7],[-17,8],[-21,11],[-16,5],[-17,12],[-5,14],[0,15],[25,4],[16,7],[10,16],[-2,22],[6,16],[17,11],[13,5],[2,5],[-8,3],[-16,-5],[-12,-13],[-13,-13],[-1,-27],[-17,-13],[-16,0],[-15,11],[-5,-6],[1,-23],[0,-15],[12,-24],[19,-21],[25,-14],[17,-2],[18,-12],[13,-14],[-7,-14],[-13,-5],[-17,-15],[0,-21],[-19,-22],[-39,-28],[-16,1],[-22,10],[-22,-3],[-2,-14],[-9,-14],[-21,-15],[8,-23],[11,-4],[2,-22],[-9,-23],[9,-21],[16,-23],[8,-21],[-8,-22],[1,-24],[-1,-21],[-2,-10],[-19,3],[-14,19],[-18,24],[-5,19],[-9,21],[-13,-2],[-3,-13],[2,-16],[3,-20],[-10,-4],[-10,9],[-3,28],[-10,25],[-11,10],[-10,-1],[-5,-8],[3,-19],[9,-22],[2,-23],[0,-19],[-21,-19],[-18,-8],[11,-15],[22,-8],[0,12],[17,6],[26,0],[21,0],[27,0],[17,-22],[21,12],[8,16],[10,14],[-2,26],[15,14],[13,-1],[7,12],[13,18],[15,9],[15,15],[16,9],[19,-2],[20,1],[29,-1],[39,-5],[34,1],[10,-16],[9,-36],[-4,-18],[-20,3],[-16,-4],[-7,-21],[-14,-29],[-8,-45],[1,-31],[-19,-13],[8,-28],[-16,-20],[-23,-53],[-16,-40],[-21,-30],[-38,-8],[-54,-9],[-29,-13],[-51,6],[-43,-6],[-24,-31],[-38,-48],[-46,-13],[-41,-10],[-10,20],[-22,-3],[-27,-9],[-32,-9],[-27,0],[-26,3],[-27,-4],[-42,-4],[-31,-12],[-34,1],[-34,5],[-23,-4],[-15,-12],[-2,-22],[-3,-10],[-7,-14],[-11,-13],[-17,-16],[-12,10],[-15,10],[-21,14],[-12,7],[-12,7],[-17,6],[-18,10],[-18,7],[-20,7],[-25,9],[-9,17],[-15,13],[-11,14],[-4,8],[-14,-1],[-19,1],[-17,7],[-19,13],[-6,21],[-6,18],[-13,-5],[-21,-1],[-16,10],[-21,7],[-22,8],[-20,13],[-18,7],[-25,5],[-28,-6],[-17,0],[-22,-2],[-23,1],[-21,8],[-16,4],[-13,-8],[-16,7],[-18,9],[-2,14],[-7,12],[-3,10],[-15,5],[-20,1],[-13,1],[-13,10],[-9,5],[-10,5],[-4,12],[-1,12],[-16,4],[-1,-15],[9,-17],[-7,-17],[-12,-9],[-30,-8],[-14,-11],[-23,0],[-13,8],[-19,6],[-12,7],[-5,12],[-1,17],[-25,2],[-7,-19],[-9,-19],[-28,-2],[-19,-7],[0,-25],[-2,-16],[-4,-13],[-20,-7],[-5,-13],[10,-13],[0,-13],[7,-6],[0,-15],[-9,-12],[-13,-12],[-14,-11],[-17,-4],[-13,5],[-7,11],[0,15],[-8,7],[-13,7],[-13,4],[-14,6],[-16,5],[-13,-6],[-23,-9],[-4,-20],[-10,-18],[-15,0],[-9,-18],[-22,-6],[-27,-13],[-7,17],[1,23],[4,19],[19,17],[16,15],[10,15],[-16,6],[-4,22],[3,23],[0,22],[2,35],[5,15],[-1,14],[9,19],[3,28],[-10,18],[-21,3],[-8,16],[-2,16],[12,26],[-18,24],[-14,0],[-13,11],[-9,9],[5,18],[21,11],[5,20],[6,14],[10,15],[21,13],[18,11],[16,10],[26,-1],[24,-7],[25,4],[15,2],[16,14],[10,15],[18,-5],[11,-10],[12,-12],[1,-12],[-3,-11],[-3,-13],[-7,-13],[2,-10],[6,-14],[14,-21],[8,-16],[23,-17],[19,-3],[16,7],[15,-1],[9,-11],[18,-14],[12,0],[11,20],[12,9],[13,0],[21,0],[15,-6],[9,-4],[20,-3],[13,0],[18,-6],[22,-1],[25,-2],[15,-5],[16,10],[17,20],[11,16],[27,12],[29,7],[4,14],[5,19],[1,18],[1,19],[14,18],[10,16],[0,25],[0,33],[2,14],[19,9],[24,0],[20,8],[26,6],[24,3],[12,9],[21,8],[34,-2],[11,-16],[-1,-16],[-12,-10],[-20,1],[2,-19],[20,0],[14,7],[21,1],[15,-6],[4,-8],[-7,-19],[0,-19],[13,-1],[17,0],[21,-5],[16,-9],[4,15],[14,12],[-3,9],[11,10],[4,12],[0,15],[-2,21],[-3,23],[-13,25],[-21,-2],[-31,4],[-17,4],[-9,16],[-8,16],[-2,15],[-11,8],[-16,9],[-6,15],[-2,20],[1,16],[3,15],[22,-2],[22,-1],[16,-4],[17,-14],[22,-7],[32,1],[20,3],[18,-13],[5,-19],[11,-23],[12,-17],[13,-18],[16,1],[15,12],[12,8],[33,-8],[39,6],[32,1],[19,1],[26,4],[24,4],[-4,16],[13,23],[18,23],[22,5],[23,0],[21,8],[15,15],[-29,10],[-16,15],[0,17],[3,15],[3,14],[21,6],[13,-14],[12,-3],[18,14],[3,15],[7,16],[9,20],[9,14],[18,8],[19,15],[14,17],[4,18],[9,26],[20,6],[19,13],[8,18],[14,12],[16,11],[0,12],[22,3],[19,10],[8,13],[-7,18],[-11,19],[-9,17],[-7,13],[1,15],[13,2],[18,7],[11,9],[16,16],[21,18],[7,12],[5,14],[5,21],[-2,16],[-16,9],[-18,6],[-14,8],[-5,19],[18,13],[16,15],[17,10],[21,8],[0,23],[-4,20],[-26,57],[17,14],[29,25],[43,1],[21,-20],[29,-44],[31,-10],[18,17],[34,10],[29,-5],[60,-12],[44,-28],[36,-22],[39,2],[47,18],[34,47],[42,-1],[36,25],[-7,45],[-5,32],[41,56],[32,18],[44,34],[31,22],[50,10],[31,5],[55,0],[21,-2],[33,-30],[50,-35],[57,-44],[47,-1],[49,-27],[68,-15],[47,-32],[28,5],[-23,64],[-36,30],[-52,15],[-78,2],[-47,38],[-50,52],[-31,29],[-31,42],[0,35],[-47,20],[-75,-12],[-45,-35],[-67,-42],[-50,-24],[-60,-32],[-55,-18],[-49,-42],[-58,-2],[-23,27],[26,50],[42,61],[31,32],[60,15],[45,32],[47,37],[28,35],[11,37],[-68,69],[-21,54],[24,65],[68,34],[5,54],[-8,52],[39,52],[1,47],[15,57],[52,44],[53,-12],[13,64],[-21,47],[-39,-5],[-42,0],[-26,25],[-18,32],[0,50],[3,51],[13,42],[47,47],[49,0],[58,-7],[31,-20],[34,20],[-42,27],[-62,30],[-37,24],[-39,50],[3,47],[37,42],[54,22],[47,7],[18,20],[-20,37],[-32,25],[-39,12],[-31,20],[-39,42],[-10,45],[-23,47],[0,29],[20,8],[34,-8],[37,3],[36,2],[-15,40],[-16,49],[-39,30],[-57,7],[-16,50],[6,52],[41,14],[50,0],[49,8],[-7,71],[-58,104],[-38,59],[-11,83],[-28,46],[2,77],[11,56],[19,-1],[23,-1],[26,-27],[44,-57],[60,-28],[83,-29],[62,-52],[29,-45],[54,-84],[60,-49],[58,-1],[26,57],[-16,79],[-85,117],[-91,91],[-58,69],[6,87],[-24,91],[11,89],[21,72],[24,84],[13,96],[55,82],[8,49],[-71,79],[-13,69],[-49,80],[-8,42],[-62,62],[-47,7],[-88,27],[-23,22],[-32,30],[8,45],[26,7],[55,22],[31,30],[78,42],[55,5],[9,20],[7,15],[-5,13],[-19,-4],[-31,-6],[-15,-1],[-16,8],[-6,19],[10,27],[17,13],[26,9],[25,8],[16,14],[9,17],[-2,25],[-11,8],[-21,-5],[-26,-10],[-11,6],[10,27],[9,25],[17,10],[17,1],[4,14],[-13,10],[-14,1],[-24,7],[-7,15],[2,15],[10,14],[14,20],[4,19],[0,12],[-8,8],[-7,1],[-7,11],[-5,14],[-9,7],[-13,7],[-12,-1],[-19,-6],[-31,13],[-23,0],[-26,4],[-24,16],[-6,8],[-8,11],[0,19],[9,20],[35,10],[24,6],[23,1],[13,18],[6,14],[20,-1],[15,6],[13,19],[39,3],[25,-11],[24,-2],[35,-2],[22,0],[15,8],[14,0],[15,9],[3,20],[13,15],[26,11],[27,16],[15,13],[17,12],[19,24],[7,12],[11,-14],[17,13],[1,22],[0,14],[8,11],[18,-17],[11,-14],[4,-15],[10,-5],[9,-2]],[[261305,96270],[-66,-1703],[-89,-2322],[-41,-1062]],[[261109,91183],[-23,-15],[-6,-4],[-25,3],[-45,1],[-101,3],[-73,21],[-89,16],[-75,29],[-74,13],[-36,0],[-37,4],[-32,15],[-18,13],[-15,8],[-34,12],[-31,9],[-22,-8],[-30,10],[-42,16],[-41,20],[-21,11],[-20,17],[-9,19],[-6,28],[13,16],[11,13],[7,18],[3,14],[-2,2],[-24,76],[-31,58],[-45,62],[-43,53],[-55,50],[-28,17],[-39,19],[-30,8],[-51,9],[-37,-1],[-34,1],[-31,-10],[-31,-13],[-13,-13],[1,-8],[6,-10],[35,-17],[7,-10],[-3,-7],[-26,-4],[-26,10],[-14,10],[-12,0],[-14,-6],[-14,-6],[-16,-3],[1,12],[26,20],[28,16],[0,8],[-2,9],[-16,22],[-23,18],[-37,19],[-24,7],[-31,6],[-23,-1],[-25,-5],[-23,-12],[-13,-24],[2,-26],[7,-22],[-9,-19],[-19,-7],[-23,6],[-41,13],[-31,29],[-36,32],[-9,16],[-16,12],[-19,5],[-37,0],[-31,4],[-26,3],[-32,5],[-34,8],[-23,14],[-19,10],[-13,-2],[2,-5],[-9,-9],[-12,7],[-22,14],[-22,36],[-13,8],[-21,3],[-27,-1],[-26,12],[-14,13],[-26,23],[-23,10],[-59,9],[-22,5],[-16,10],[-11,13],[-4,16],[2,31],[20,33],[19,38],[8,9],[20,10],[36,16],[78,15],[45,4],[77,9],[30,12],[20,16],[28,31],[77,111],[22,36],[36,55],[28,30],[17,7],[38,-6],[45,-16],[85,-14],[31,-1],[19,7],[40,27],[16,11],[63,56],[79,77],[38,38],[129,118],[121,133],[97,125],[28,40],[69,96],[98,147],[46,81],[27,51],[31,60],[24,46],[23,53],[30,89],[12,31],[5,41],[7,40],[-4,25],[-7,18],[-3,14],[-1,2],[-7,6],[-21,-7],[-24,-3],[-19,4],[-18,7],[-22,18],[-11,16],[-3,17],[6,21],[7,8],[12,6],[12,-3],[16,0],[19,4],[13,19],[8,21],[9,29],[0,32],[9,41],[14,35],[-4,52],[8,68],[0,49],[-9,46],[-36,43],[-34,43],[-21,20],[-17,6],[-11,-1],[-23,-22],[-5,0],[-28,-6],[-35,-2],[-18,5],[-8,7],[-3,15],[13,14],[6,19],[-3,15],[-13,26],[-20,23],[-16,12],[-13,12],[-16,28],[-19,62],[-7,80],[6,72],[-1,55],[0,21],[-5,11],[-11,49],[-18,37],[-13,14],[-23,21],[-32,25],[-34,25],[-8,10],[-11,19],[-1,28],[13,39],[7,28],[5,24],[25,22],[11,23],[6,14],[20,17],[27,22],[10,27],[6,16],[3,19],[13,16],[11,1],[69,-13],[41,-4],[30,12],[24,4],[13,-6],[7,-5],[31,-34],[18,-7],[22,1],[20,-2],[23,-5],[13,-12],[21,-22],[1,-14],[0,-2],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-2],[0,-1],[0,-2],[0,-3],[0,-3],[0,0],[-1,-3],[-1,-3],[0,0],[-1,-3],[0,-1],[0,0],[-1,-4],[0,0],[-2,-3],[0,-1],[-1,-3],[-2,-3],[-2,-3],[0,0],[0,0],[-2,-3],[-1,-1],[-2,-3],[0,0],[-2,-3],[-1,0],[-2,-3],[0,0],[0,-1],[0,0],[-2,-3],[-1,0],[0,0],[-2,-3],[-1,0],[-2,-3],[0,0],[-3,-3],[0,-1],[-3,-3],[0,0],[0,0],[-3,-3],[0,-1],[-3,-3],[-7,-8],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-3],[-1,0],[-1,-2],[-2,-3],[-1,0],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-3,-2],[-4,-4],[-1,0],[-3,-3],[-4,-3],[-3,-3],[-4,-3],[-4,-3],[-1,-1],[-2,-2],[-3,-3],[-1,-2],[-1,-2],[-3,-2],[-1,-2],[0,-1],[-2,-4],[-1,-3],[-2,-3],[-1,-3],[-2,-5],[-3,-8],[-1,-1],[0,-2],[-1,-3],[0,-3],[0,-1],[-1,-3],[0,-3],[-1,-1],[1,-2],[0,-3],[0,-2],[0,-1],[1,-3],[0,-3],[1,-1],[0,-1],[1,-2],[0,-2],[2,-2],[1,-2],[1,-2],[2,-1],[1,-2],[1,-1],[3,-4],[0,0],[3,-2],[2,-1],[3,-2],[1,0],[2,-1],[0,0],[2,-1],[1,0],[3,0],[2,0],[3,2],[5,1],[0,0],[4,2],[2,1],[2,1],[0,0],[2,1],[1,0],[1,1],[1,1],[3,1],[1,1],[1,1],[0,0],[1,1],[0,0],[1,1],[1,1],[9,9],[10,12],[0,1],[1,0],[0,1],[1,1],[0,0],[0,1],[1,0],[0,0],[1,1],[0,1],[2,2],[0,0],[2,2],[5,5],[0,1],[2,2],[2,2],[3,2],[2,2],[2,2],[3,2],[1,1],[2,1],[3,2],[2,2],[3,2],[3,2],[3,3],[3,1],[1,1],[2,1],[0,0],[2,1],[1,0],[2,0],[0,0],[8,0],[7,0],[1,0],[1,0],[0,0],[0,0],[0,0],[0,0],[2,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,0],[2,0],[0,1],[0,1],[0,0],[1,1],[0,0],[0,0],[0,0],[0,0],[2,3],[1,1],[1,3],[1,2],[1,1],[0,0],[1,4],[0,0],[1,2],[0,0],[0,1],[1,4],[0,0],[1,1],[0,3],[2,12],[0,3],[0,1],[-1,3],[0,1],[0,4],[0,0],[0,4],[0,0],[0,0],[0,4],[0,0],[-1,3],[0,1],[-1,4],[0,4],[-1,0],[0,3],[-1,1],[0,3],[-1,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,0],[0,1],[0,1],[0,0],[0,4],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[2,4],[1,2],[2,2],[4,4],[5,5],[1,0],[1,1],[1,1],[1,1],[2,0],[1,1],[1,1],[1,1],[1,0],[1,1],[3,2],[1,1],[2,1],[2,1],[1,1],[1,0],[1,1],[1,1],[6,4],[2,2],[2,2],[1,1],[1,1],[3,4],[7,13],[1,2],[1,2],[2,4],[0,0],[1,4],[0,3],[0,0],[1,6],[0,8],[-2,16],[0,1],[-1,3],[-3,11],[-1,3],[0,2],[0,1],[-4,8],[0,1],[-1,1],[-1,3],[-1,2],[-1,2],[0,0],[-2,3],[-2,2],[-1,3],[-1,0],[-1,2],[-2,3],[-2,2],[-1,1],[-2,2],[-3,3],[-2,2],[0,0],[-3,2],[-3,3],[-3,2],[0,0],[-2,2],[-3,2],[-3,2],[0,0],[-2,2],[-3,1],[-2,2],[-2,1],[-6,3],[-4,2],[-3,2],[0,0],[0,0],[-4,2],[-3,1],[-3,2],[-3,1],[-3,2],[-3,1],[-2,2],[-1,0],[-3,1],[-9,3],[-1,0],[-2,1],[-1,0],[-3,1],[-6,1],[-4,0],[-4,1],[-4,0],[-3,0],[-4,0],[-25,14],[-15,3],[-31,19],[-24,21],[-24,26],[-15,8],[-21,3],[-23,0],[-9,2],[-8,6],[4,7],[30,20],[18,15],[30,21],[42,26],[32,28],[25,29],[26,39],[21,38],[5,28],[19,-1],[14,-17],[23,-13],[13,-11],[25,-4],[32,-7],[32,-2],[17,-1],[25,-3],[21,-4],[12,-1],[8,-11],[-14,-9],[-36,-2],[-32,-1],[-7,-18],[-16,-19],[-9,-27],[2,-16],[2,-26],[15,-37],[22,-23],[21,-15],[29,-27],[12,-10],[25,-21],[29,-25],[19,-18],[21,-18],[21,-15],[8,-27],[-6,-25],[-10,-21],[20,-11],[33,5],[22,1],[15,-6],[28,-14],[25,-10],[17,-9],[10,-5],[25,-16],[22,-17],[29,-23],[19,-21],[25,-32],[18,-11],[24,6],[34,2],[13,18],[1,22],[1,18],[-34,18],[-34,14],[-23,9],[-39,17],[-21,8],[-31,17],[-26,14],[5,17],[3,21],[2,21],[4,25],[10,23],[1,31],[-15,-7],[-15,-18],[-3,-21],[0,-25],[-7,-21],[-21,-11],[-16,-2],[-21,5],[-9,28],[-3,29],[-22,13],[-26,13],[-14,28],[-25,14],[-25,4],[-18,24],[-9,21],[13,20],[8,33],[31,27],[15,-1],[33,4],[34,11],[15,10],[11,23],[10,27],[0,30],[-4,41],[-21,29],[-22,19],[-29,30],[4,37],[8,39],[14,27],[25,24],[29,23],[55,13],[48,14],[38,6],[50,29],[40,21],[35,33],[17,30],[21,62]],[[261354,97522],[-37,-942]],[[261317,96580],[-14,-12],[-19,-10],[-14,-26],[-17,-12],[-32,-3],[-24,-7],[0,-21],[14,-32],[-21,-25],[-38,-26],[-15,-34],[2,-29],[-23,-30],[-34,-19],[-16,3],[-13,-4],[-9,-19],[-25,0],[-34,3],[-27,-4],[-22,-9],[-30,11],[-46,11],[-44,7],[-33,4],[-53,1],[-46,-5],[-39,-9],[-45,-1],[-55,2],[-36,10],[7,6],[27,8],[30,4],[26,27],[25,43],[4,36],[15,33],[12,36],[-13,24],[-21,26],[-33,31],[-10,20],[5,13],[5,30],[4,18],[-5,32],[0,10],[13,13],[17,9],[19,11],[20,18],[-3,29],[-11,28],[-19,30],[0,31],[7,23],[25,34],[28,26],[24,37],[12,40],[2,34],[-12,39],[-17,27],[-21,23],[-21,30],[0,23],[0,25],[-14,16],[-24,10],[-22,17],[-13,24],[-3,17],[17,20],[8,23],[-4,36],[-31,26],[-45,56],[1,27],[1,20],[-7,28],[-14,18],[-11,16],[1,7],[7,7],[9,2],[131,-52],[30,-7],[44,3],[15,-16],[19,-18],[25,-10],[22,-15],[23,-21],[16,-21],[22,5],[14,7],[24,4],[67,10],[14,-14],[12,-26],[-1,-29],[-1,-18],[8,-20],[16,-14],[28,-11],[29,3],[49,1],[34,14],[13,21],[0,11],[7,15],[12,15],[24,12],[18,13],[10,23],[-1,24],[7,16],[16,7],[23,5],[16,4],[6,17],[18,-3],[19,-5],[20,0]],[[251067,98076],[-2,-47],[2,-37],[17,-30],[25,-30],[50,-10],[59,-4],[54,-3],[36,-22],[35,-25],[7,-54],[11,-56],[11,-33],[19,-42],[7,-59],[19,-42],[43,-42],[44,-41],[14,-25],[67,-47],[70,-22],[67,-13],[57,-2],[38,1],[50,22],[47,13],[77,-23],[51,-14],[55,-10],[56,1],[9,-18],[0,-23],[-6,-36],[-24,-34],[-20,-33],[-30,-31],[-6,-37],[-28,-31],[-25,-24],[-36,-26],[-25,-18],[-16,-25],[-13,-35],[-25,-48],[-21,-36],[-2,-29],[-9,-20],[-40,-21],[-13,-10],[-24,-14],[-19,-14],[-10,-20],[9,-25],[9,-10],[26,2],[17,15],[23,1],[12,-17],[-15,-43],[-20,-31],[-16,-31],[-40,-19],[-33,-4],[-30,-5],[-18,-18],[-24,-24],[-26,-18],[-33,10],[-24,-3],[-27,-24],[-26,-18],[-37,15],[-37,23],[-29,-2],[-39,-17],[-72,-37],[-35,-28],[-43,-45],[-36,-24],[-35,-46],[-23,-39],[-9,-17],[-16,-14],[-20,1],[-17,0],[-35,-19],[-10,-20],[-11,-29],[9,-17],[20,-6],[24,-15],[12,-15],[-2,-25],[-31,-1],[-23,6],[-21,3],[-41,18],[-24,14],[-22,7],[-24,-2],[-12,-13],[-11,-9],[-3,-12],[0,-21],[8,-13],[10,-16],[11,-11],[7,-14],[-13,-18],[-18,-8],[-26,-6],[-20,-2],[-18,-14],[-2,-15],[7,-17],[3,-15],[0,-22],[-2,-21],[0,-17],[-2,-23],[-8,-17],[-7,-15],[-5,-16],[-19,0],[-20,-1],[-17,-2],[-9,-3],[-2,-14],[6,-15],[-9,-10],[-8,-6],[-16,8],[-14,9],[-15,-13],[1,-15],[10,-9],[8,-15],[-4,-13],[-23,-8],[-9,-7],[0,-13],[2,-11],[5,-7],[10,0],[9,-10],[-9,-8],[-11,-3],[-11,0],[-12,3],[-6,13],[-8,18],[-12,15],[-23,15],[-24,6],[-11,-11],[-14,1],[-10,16],[-3,12],[-3,6],[-7,8],[-24,-6],[-19,-11],[-18,-6],[-19,0],[-31,-13],[-5,-21],[-5,-16],[-22,-13],[-9,-10],[0,-22],[1,-11],[2,-11],[1,-15],[3,-11],[-2,-11],[-8,-5],[-5,1],[-17,16],[-16,4],[-10,14],[-26,17],[-14,10],[-19,6],[-15,8],[-25,4],[-27,0],[-25,0],[-31,-4],[-10,-8],[-29,-8],[-14,-10],[-9,-21],[-21,-14],[-15,0],[-5,12],[-4,15],[-4,18],[-20,16],[-27,18],[-28,16],[-22,3],[-57,-2],[-30,-1],[-33,0],[-29,-6],[-37,-4],[-50,3],[-30,-8],[-26,-23],[-16,-16],[-18,-14],[-15,-14],[-17,-17],[-29,-8],[-31,-8],[-26,8],[-29,2],[-27,0],[-23,0],[-32,2],[-20,6],[-22,10],[-18,10],[-20,11],[-10,12],[-20,9],[-21,-3],[-25,-3],[-26,2],[-25,-2],[-43,-11],[-30,0],[-37,-3],[-19,-11],[-29,-11],[-24,-13],[-25,-9],[-36,-30],[-8,-10],[-9,-23],[-43,-18],[-22,-7],[-23,-4],[-21,-10],[-10,-22],[-1,-24],[-11,-32],[-31,-27],[-32,-3],[-18,7],[-13,5],[-16,21],[-19,29],[-17,-2],[-39,8],[-23,7],[-38,1],[-31,-3],[-25,-8],[-28,-16],[-15,-22],[-25,-4],[-21,-4],[-23,12],[-11,15],[-15,21],[-12,14],[-22,23],[-29,5],[-22,15],[-16,5],[-18,0],[-15,0],[-13,-1],[-28,-1],[-19,-6],[-20,-12],[-13,-9],[-22,-7],[-12,-2],[-16,-1],[-14,-11],[-4,-18],[-11,-19],[-8,-11],[-9,-12],[-15,1],[-9,8],[-9,-8],[-1,-12],[-11,-15],[-14,-6],[-15,-3],[-17,0],[-13,2],[-7,11],[-23,0],[-8,-15],[1,-21],[-24,-10],[-23,-6],[-16,9],[-13,16],[-14,3],[-15,3],[-18,0],[-17,-11],[-12,-11],[-10,-7],[-22,0],[-17,2],[-22,2],[-18,5],[-28,0],[-19,0],[-24,-6],[-24,-1],[-17,1],[-16,1],[-18,-11],[-9,-5],[-11,-5],[-11,4],[-3,12],[-15,12],[-19,13],[-17,0],[-22,-11],[-3,-11],[1,-15],[13,-14],[0,-12],[-30,-4],[-16,0],[-13,-22],[-19,-14],[-30,13],[-10,15],[-20,9],[-17,-4],[-13,-14],[-14,-5],[-2,-12],[10,-7],[-2,-23],[-3,-18],[-4,-22],[-14,-13],[-19,-14],[-26,-5],[-17,0],[-7,16],[2,8],[4,13],[4,24],[2,23],[8,31],[-5,23],[-1,24],[0,36],[-1,23],[0,17],[-4,26],[-15,28],[-10,18],[-26,9],[-19,3],[-12,15],[0,20],[-1,17],[-19,30],[-20,18],[-4,39],[28,18],[2,19],[-9,24],[0,34],[3,47],[-15,43],[-25,16],[-22,14],[-22,0],[-19,0],[-29,-3],[-27,-13],[-41,9],[-18,2],[-30,0],[-43,-14],[-25,-16],[-12,-25],[-4,-43],[-7,-27],[-22,-12],[-14,4],[-23,12],[-12,18],[-5,32],[11,25],[-4,23],[-18,23],[-13,21],[-7,22],[14,22],[15,21],[17,11],[4,13],[-4,23],[7,28],[19,16],[25,-3],[13,-16],[7,-22],[26,-9],[16,3],[14,4],[13,24],[26,22],[17,15],[27,23],[28,21],[1,31],[-14,20],[-11,44],[-14,25],[-17,24],[-12,30],[15,23],[16,14],[18,1],[24,2],[25,1],[23,8],[8,23],[2,21],[2,13],[15,7],[15,1],[18,-16],[17,-1],[-6,21],[-5,15],[14,17],[27,-3],[25,-14],[15,-12],[24,4],[21,6],[1,34],[-5,23],[-20,23],[-22,12],[-16,7],[-23,8],[-3,13],[11,13],[33,-7],[30,-9],[21,-2],[4,22],[-9,24],[-20,13],[3,18],[20,13],[-4,19],[4,15],[17,20],[28,-4],[13,-4],[13,-8],[12,-17],[10,-21],[18,-6],[17,11],[24,0],[8,17],[-5,27],[8,26],[18,16],[12,17],[6,14],[-8,20],[11,13],[23,-14],[16,-3],[14,-11],[34,-14],[18,2],[1,9],[1,23],[2,29],[28,34],[31,50],[22,39],[79,14],[33,1],[57,9],[55,0],[39,-35],[19,-67],[54,-9],[56,3],[19,10],[-16,28],[-13,48],[7,47],[23,28],[25,24],[53,24],[50,-1],[31,-6],[26,-24],[8,-37],[-7,-35],[-8,-32],[0,-43],[10,-36],[16,-28],[59,-9],[36,1],[39,7],[40,-10],[27,-29],[5,-48],[6,-30],[4,-18],[-11,-40],[-6,-43],[12,-27],[6,-45],[15,-25],[15,-19],[10,-27],[-3,-23],[-7,-23],[2,-20],[-11,-31],[-22,-22],[9,-32],[13,-45],[7,-38],[4,-36],[34,-23],[52,-20],[46,6],[50,-15],[52,-14],[40,-26],[24,-19],[38,-3],[44,6],[53,-32],[68,-33],[40,-24],[10,-42],[54,-42],[35,18],[13,-17],[52,17],[89,12],[85,-18],[74,7],[51,24],[42,54],[55,31],[55,-13],[45,-50],[69,-35],[74,11],[63,6],[64,7],[47,14],[30,3],[44,10],[89,-1],[32,24],[12,50],[7,43],[6,16],[23,31],[37,24],[27,13],[40,-17],[52,-17],[42,16],[13,47],[0,54],[3,56],[-1,52],[-13,60],[0,56],[16,41],[25,31],[-10,46],[19,89],[9,68],[10,88],[3,55],[-5,54],[-17,54],[-49,33],[-30,39],[-24,43],[-5,45],[-27,51],[-30,31],[-26,24],[-55,54],[-13,56],[-45,38],[-53,45],[-45,35],[-24,39],[-28,36],[-48,49],[-31,33],[-9,5],[-39,45],[-34,43],[-18,41],[-12,39],[15,27],[47,0],[39,-15],[24,1],[25,-16],[26,-44],[16,-24],[35,-49],[29,-22],[31,2],[-8,58],[-19,35],[-15,37],[5,44],[21,13],[28,24],[24,35],[10,35],[11,56],[2,60],[4,29],[23,34],[47,13],[38,-10],[27,-9],[30,4],[17,36],[43,12],[62,14],[33,-24],[37,-49],[44,-36],[55,-37],[44,-7],[56,4],[58,18],[102,31],[65,41],[34,29],[28,34],[29,35],[38,32],[32,18],[17,1],[13,-25],[9,-46],[12,-28],[-25,-39],[-3,-29],[4,-36]],[[261393,98550],[-10,-261]],[[261383,98289],[-11,-2],[-15,0],[-8,13],[-1,15],[-1,7],[-2,9],[-11,11],[-9,0],[-11,1],[-7,8],[-6,12],[0,15],[11,7],[17,6],[16,11],[0,22],[4,22],[15,9],[-9,17],[-5,23],[-4,14],[-9,22],[-1,20],[10,14],[21,-2],[15,-8],[11,-5]],[[243701,98592],[23,-27],[-3,-29],[-22,-39],[-25,-27],[-41,-13],[-46,-7],[-18,22],[-13,27],[-6,29],[-14,24],[-29,-1],[-33,-16],[-17,-33],[-9,-23],[-33,-23],[-14,-40],[-16,-39],[-14,-40],[-12,-20],[-14,-21],[-45,-28],[-9,-30],[3,-28],[22,-25],[21,-29],[-33,-10],[-14,-17],[-7,-21],[-50,1],[-23,-11],[-45,-10],[-30,-26],[-53,13],[-35,30],[-26,35],[-27,4],[-59,-7],[-73,-9],[-18,16],[-7,20],[0,19],[13,29],[-21,38],[-7,33],[1,29],[-3,29],[-1,44],[-6,39],[-24,29],[-29,28],[-41,22],[-22,23],[-20,36],[36,14],[38,-14],[36,-29],[38,-24],[37,0],[28,11],[25,57],[0,32],[-35,60],[-29,43],[6,33],[32,12],[24,-19],[32,-34],[24,-35],[39,-44],[41,-42],[17,-22],[18,3],[12,30],[12,26],[35,8],[32,-28],[30,-26],[33,-6],[28,20],[39,0],[29,-11],[42,-10],[42,34],[34,37],[13,36],[17,52],[14,31],[6,19],[52,21],[36,13],[42,29],[61,7],[45,1],[59,-37],[-73,-105],[6,-56],[1,-30],[-30,-27]],[[253753,99349],[63,-64],[53,2],[53,-19],[65,2],[58,5],[91,-39],[51,-2],[63,25],[60,32],[65,6],[77,-39],[12,-45],[-14,-39],[-17,-62],[-22,-73],[-7,-60],[2,-68],[10,-83],[28,-46],[68,-43],[94,0],[79,-3],[34,-2],[32,-2],[65,-14],[43,4],[17,48],[48,30],[39,32],[65,-7],[5,-32],[-39,-34],[-17,-39],[-5,-48],[-5,-62],[0,-53],[5,-41],[22,-62],[48,-55],[50,-4],[54,27],[43,-7],[72,-30],[27,-9],[43,-18],[39,-21],[38,-5],[22,-25],[31,-32],[17,-23],[29,-50],[39,-19],[28,-18],[8,-27],[2,-37],[0,-23],[-24,0],[-29,9],[-41,21],[-75,5],[-79,0],[-66,-30],[-50,-71],[-33,-46],[-87,-19],[-106,-51],[-124,-54],[-119,-48],[-98,24],[-95,20],[-91,10],[-80,-10],[-49,-46],[-155,22],[-103,52],[-52,69],[86,73],[82,2],[57,52],[-7,93],[-65,66],[-77,95],[-100,128],[-29,149],[-2,64],[75,37],[67,-37],[62,0],[29,98],[-26,117],[-163,118],[-95,5],[-111,64],[-36,103],[-67,128],[-20,108],[29,13],[29,-22],[7,-40]],[[257104,101294],[18,-9],[16,7],[17,7],[9,-4],[2,-9],[2,-12],[31,-23],[35,-14],[33,-19],[36,-4],[19,5],[47,-4],[23,-2],[36,3],[6,4],[12,7],[18,-1],[15,-17],[11,-13],[22,-19],[23,-15],[35,1],[15,15],[-1,6],[-5,19],[-15,15],[-30,14],[-29,16],[-6,26],[5,21],[18,4],[22,-3],[29,-8],[19,-13],[19,-19],[31,-31],[36,-22],[22,-31],[21,-22],[13,-11],[-12,-28],[-36,-59],[-10,-46],[-37,-33],[-37,3],[-1,-38],[19,-45],[-68,-35],[-38,-10],[-27,-6],[-77,-58],[-58,-7],[-39,-26],[-5,-43],[-9,-50],[-30,-41],[-19,-39],[-19,-58],[-15,-65],[-83,-66],[-54,-74],[-37,-70],[-13,-65],[-3,-43],[-2,-24],[-25,-50],[-42,-26],[-44,11],[-10,27],[3,23],[6,43],[3,66],[-34,41],[-52,1],[-47,-5],[-44,20],[-16,28],[-33,40],[-49,23],[-66,-2],[-60,-9],[-65,1],[-10,44],[-1,50],[-46,2],[-33,6],[-22,34],[2,36],[38,17],[-23,23],[-37,-2],[-19,18],[-3,23],[53,29],[66,19],[19,13],[37,26],[1,61],[-41,44],[-60,19],[-52,19],[-29,33],[-14,66],[-64,44],[-60,43],[-39,99],[-95,78],[-88,63],[13,22],[31,2],[38,-5],[15,-13],[30,-24],[120,-64],[87,-16],[54,-15],[42,-42],[45,-68],[66,-35],[56,-42],[47,-39],[41,-49],[41,-10],[50,-21],[45,-39],[65,-45],[48,-42],[58,-38],[81,-20],[30,-14],[51,-24],[45,-18],[24,30],[23,20],[20,18],[1,17],[2,34],[24,38],[23,28],[25,25],[8,26],[6,25],[18,15],[12,33],[-4,39],[-18,30],[-33,10],[-34,18],[-20,6],[-41,10],[-26,19],[-15,23],[0,23],[-4,20],[-17,21],[-39,40],[-41,35],[-32,35],[-6,28],[8,24],[16,21],[16,16],[40,8],[23,-6],[12,-20],[5,-8]],[[239610,93477],[-286,-122],[-230,38],[-267,-136],[-474,-242],[-202,5],[-103,-84],[-176,1],[-138,-62],[-130,-78],[-120,-132],[-120,-8],[-120,0],[-130,-35],[-148,-52],[-185,-96],[-148,-88],[-258,-78],[-231,-9],[-287,-8],[-351,0],[-222,-17],[-305,-17],[-314,-17],[-332,0],[-194,9],[-259,27],[-194,44],[-203,62],[-212,140],[-176,167],[-166,175],[-129,307],[-18,237],[-18,210],[0,246],[1,201],[0,184],[0,211],[28,227],[93,263],[65,237],[65,219],[74,114],[139,262],[93,176],[148,175],[83,166],[158,175],[157,175],[130,140],[194,53],[157,131],[203,131],[167,131],[157,132],[148,157],[167,237],[185,87],[111,131],[354,302],[5178,3599],[341,-149],[268,-97],[176,-211],[128,-315],[55,-228],[102,-333],[-93,-228],[-65,-439],[-167,-95],[-176,-228],[-102,-228],[0,-201],[-102,-228],[-250,-166],[-149,-324],[0,-307],[83,-272],[120,-202],[175,-184],[249,-158],[166,-316],[83,-228],[36,-131],[65,-237],[-28,-245],[-19,-193],[-38,-202],[-65,-192],[-151,-154],[49,-319],[-102,-395],[-84,-175],[-74,-140],[-176,-140],[-101,-131],[-250,-105],[-148,-158],[-203,-52],[-259,-113],[-287,-61],[-92,-79],[-324,-44]],[[252856,102527],[-782,-1828],[-587,-1375],[-5234,-163],[-156,823],[243,2042],[841,503],[230,-629],[1343,-517],[1084,-43],[928,346],[926,621],[467,643],[697,-423]],[[252127,103658],[14,0],[14,4],[12,0],[10,-2],[8,-7],[5,-8],[1,-10],[-5,-10],[0,-14],[-3,-14],[-2,-17],[-10,-9],[-17,-3],[-14,-3],[-16,9],[-11,17],[-21,6],[-21,0],[-16,-5],[-13,-12],[-17,-1],[-4,14],[1,18],[0,15],[-5,11],[-2,9],[2,12],[2,15],[-6,19],[6,6],[9,-3],[11,-1],[11,-4],[10,-4],[11,-1],[12,-4],[12,-7],[8,-7],[11,-7],[13,-2]],[[249352,104785],[-10,-16],[-8,-18],[-4,-18],[-1,-19],[2,-19],[5,-18],[8,-17],[11,-16],[13,-14],[16,-12],[17,-9],[17,-9],[15,-11],[14,-13],[11,-15],[8,-16],[6,-18],[2,-18],[0,-18],[-3,-18],[13,-53],[18,-51],[23,-50],[28,-47],[32,-45],[36,-42],[40,-39],[43,-35],[46,-32],[50,-27],[51,-23],[54,-19],[55,-14],[56,-9],[29,-1],[28,-5],[26,-9],[25,-14],[22,-17],[18,-21],[14,-23],[9,-26],[5,-26],[-19,-51],[-25,-49],[-29,-45],[-34,-43],[-39,-40],[-42,-35],[-47,-31],[-49,-27],[-52,-22],[-33,-11],[-35,-7],[-35,-3],[-36,2],[-34,6],[-34,11],[-32,15],[-30,18],[-26,22],[-112,79],[-114,77],[-117,73],[-77,47],[-79,47],[-22,11],[-23,9],[-25,4],[-25,2],[-25,-3],[-24,-6],[-23,-10],[-21,-13],[-18,-16],[-16,-19],[-43,-41],[-43,-41],[-89,-77],[-94,-72],[-96,-69],[-100,-64],[-104,-59],[-106,-54],[-109,-50],[-111,-44],[-114,-39],[-115,-34],[-117,-29],[-118,-23],[-119,-18],[-120,-12],[-121,-7],[-120,-1],[-121,5],[-120,10],[-120,15],[-118,21],[-118,26],[-74,35],[-71,39],[-67,44],[-65,48],[-61,53],[-56,56],[-53,60],[-47,64],[4,60],[10,60],[14,59],[19,58],[24,56],[29,55],[32,52],[37,49],[29,19],[26,23],[23,26],[18,29],[13,31],[8,33],[3,34],[-3,33],[-23,51],[-20,53],[-14,55],[-10,55],[-5,56],[0,56],[5,56],[10,55],[15,54],[29,80],[34,77],[38,76],[43,73],[47,71],[52,68],[56,66],[60,62],[30,21],[33,18],[35,13],[36,10],[37,6],[38,1],[1042,10],[25,-9],[26,-5],[27,-2],[26,3],[26,8],[24,11],[21,15],[19,18],[15,21],[12,23],[7,24],[2,26],[-2,25],[13,54],[17,54],[21,52],[26,50],[30,47],[35,46],[38,42],[41,39],[45,36],[84,45],[87,39],[90,35],[91,29],[92,25],[94,19],[96,15],[95,9],[97,4],[96,-2],[96,-7],[96,-11],[94,-18],[94,-22],[91,-27],[35,-36],[30,-39],[25,-43],[21,-44],[14,-47],[9,-48],[3,-48],[-2,-49],[-8,-48],[-14,-47],[-47,-130],[-51,-128],[-54,-127],[-59,-126],[-63,-123],[-67,-122],[-71,-120]],[[253450,107301],[-23,2],[-22,-1],[-22,-5],[-20,-8],[-19,-11],[-17,-13],[-15,-17],[-11,-18],[-8,-20],[-5,-20],[-1,-21],[6,-84],[1,-84],[-5,-84],[-10,-84],[-16,-83],[-21,-82],[-27,-80],[-31,-78],[-37,-77],[-28,-22],[-26,-24],[-37,-36],[-32,-40],[-29,-42],[-25,-44],[-22,-48],[-26,-45],[-31,-43],[-36,-39],[-39,-36],[-43,-32],[-46,-27],[-17,-20],[-13,-21],[-9,-23],[-5,-24],[0,-25],[4,-24],[8,-23],[12,-22],[-2,-55],[-6,-54],[-12,-54],[-16,-52],[-22,-51],[-26,-49],[-31,-46],[-35,-43],[-40,-41],[-43,-36],[-46,-33],[-49,-29],[-52,-24],[-53,-20],[-56,-15],[-57,-10],[-32,-8],[-30,-13],[-29,-16],[-25,-20],[-23,-24],[-18,-26],[-15,-28],[-10,-30],[-6,-31],[-53,-35],[-56,-30],[-59,-26],[-60,-22],[-62,-18],[-63,-12],[-64,-9],[-65,-3],[-64,1],[-64,6],[-64,11],[-63,15],[-22,17],[-19,19],[-16,22],[-11,25],[-8,25],[-3,27],[1,26],[6,26],[26,171],[21,172],[16,172],[10,172],[4,172],[-1,173],[4,81],[8,81],[13,80],[19,80],[23,78],[28,77],[33,75],[38,73],[42,71],[47,68],[51,66],[54,62],[59,59],[62,56],[49,65],[44,67],[40,70],[35,71],[30,74],[26,75],[21,77],[16,78],[11,78],[10,144],[16,143],[21,143],[26,141],[32,141],[36,140],[42,138],[48,137],[52,135],[57,133],[35,78],[39,75],[43,73],[49,71],[52,67],[57,65],[61,61],[64,58],[68,54],[71,50],[74,46],[77,42],[79,37],[82,33],[83,29],[51,-4],[51,-9],[49,-14],[48,-19],[45,-24],[42,-28],[38,-32],[35,-36],[31,-39],[26,-42],[21,-45],[17,-46],[10,-48],[8,-62],[12,-62],[18,-74],[23,-73],[28,-71],[33,-69],[38,-67],[42,-65],[47,-62],[50,-59],[54,-56],[59,-52],[61,-49],[65,-45],[67,-41],[52,-14],[51,-18],[49,-21],[47,-25],[45,-28],[43,-32],[38,-32],[35,-34],[32,-37],[30,-39],[-400,-726],[-62,-54],[-65,-50],[-69,-46],[-71,-42],[-74,-37],[-77,-33],[-78,-29],[-80,-23],[-82,-19],[-83,-13],[-83,-9],[-84,-3]],[[205341,168076],[11,-80],[558,-473],[561,-415],[257,-828],[169,-570],[202,-195],[62,-42],[230,-156],[-708,-877],[283,-206],[455,-335],[459,-337],[244,-180],[213,-161],[234,-167],[227,-167],[232,-171],[13,-10],[213,-158],[231,-169],[229,-170],[214,-157],[25,-18],[221,-162],[220,-162],[238,-176],[460,-337],[458,-340],[458,-336],[459,-339],[460,-338],[-679,-827],[459,-339],[458,-336],[461,-340],[-700,-854],[479,-313],[931,-661],[470,-324],[465,-331],[280,-196],[183,-133],[266,-181],[200,-145],[252,-174],[217,-155],[226,-153],[245,-179],[211,-144],[250,-178],[-337,-426],[-68,-58],[-546,-729],[467,-327],[467,-328],[261,-187],[202,-144],[466,-332],[443,-323],[322,-246],[70,-52],[26,-18],[-303,-394],[906,-2232],[-456,-236],[2870,-4220],[38,-52],[22,85],[7,26],[32,92],[5,16],[45,106],[53,103],[126,235],[135,232],[102,162],[41,65],[151,223],[158,217],[542,710],[20,-28],[63,-88],[805,-1128],[135,-189],[534,478],[933,740],[326,-592],[334,311],[623,504],[495,254],[1710,819],[462,908],[935,906],[677,643],[999,950],[34,33],[70,48],[3328,2299],[2463,578],[697,159],[306,-331],[-161,-527],[55,-116],[332,-2082],[93,-545],[87,-519],[90,-507],[103,-575],[109,-502],[163,-708],[91,-386],[169,-818],[58,-613],[117,-944],[8,-48],[8,-56],[167,-921],[636,161],[265,90],[288,98],[68,-343],[126,-628],[271,-1358],[25,-142],[14,-70],[199,28],[384,40],[53,-269],[143,-717],[196,-984],[195,-982],[49,-243],[108,-533],[45,-239],[184,-936],[241,-1198],[564,99],[570,117],[571,95],[200,-956],[15,-72],[11,-52],[13,-62],[12,-60],[236,-1152],[87,-444],[16,-79],[134,-680],[171,-922],[43,-260],[269,-1266],[-268,-45],[-294,-47],[-585,-116],[-554,-111],[193,-1092],[58,-244],[64,-310],[190,-925],[-557,-169],[-541,-98],[-602,-98],[-534,-327],[-326,-218],[-881,-510],[293,-508]],[[243346,124519],[-189,-100],[-5,-9],[-3,-10],[-2,-11],[0,-10],[2,-10],[4,-10],[4,-9],[-6,-38],[6,-12],[5,-12],[3,-13],[-3,-15],[-5,-14],[-8,-13],[-10,-12],[-12,-10],[-13,-8],[-4,3],[-4,3],[-5,3],[-5,1],[-5,1],[-6,0],[-3,-2],[-3,-3],[-2,-3],[-1,-3],[-2,-4],[0,-3],[0,-4],[1,-4],[1,-3],[2,-3],[2,-3],[3,-2],[1,-5],[0,-5],[-1,-4],[-2,-5],[-2,-4],[-3,-4],[-4,-3],[-4,-3],[-5,-1],[-2,-33],[-38,-35],[2,-3],[1,-4],[0,-3],[0,-4],[-1,-3],[-1,-3],[-2,-3],[-3,-3],[-3,-2],[-3,-1],[-4,-1],[-3,-1],[-9,-15],[-6,-15],[-3,-17],[16,-31],[20,-30],[23,-27],[27,-25],[29,-21],[31,-18],[24,-69],[-19,-113],[-4,-3],[-4,-4],[-3,-5],[-2,-5],[-1,-5],[-1,-5],[1,-6],[1,-5],[3,-5],[3,-4],[4,-4],[4,-3],[10,-16],[9,-16],[5,-17],[-2,-7],[-3,-6],[-4,-6],[-5,-4],[-6,-4],[-7,-3],[-7,-2],[-7,-1],[-8,0],[-33,45],[-4,4],[-5,4],[-6,2],[-5,2],[-6,0],[-6,0],[-6,-6],[-4,-7],[-4,-7],[-2,-7],[-1,-8],[1,-8],[2,-8],[3,-7],[4,-7],[40,-84],[44,-82],[48,-79],[54,-77],[57,-74],[61,-72],[34,-36],[562,-287],[93,-5],[93,-10],[93,-13],[91,-17],[91,-21]],[[244404,122662],[75,-102],[158,-276],[21,-34],[24,-39],[28,-51],[299,-451],[614,-1013],[1113,-1836]],[[246736,118860],[-129,-92],[-75,-175],[-25,-412],[-69,-502],[-80,-342],[-335,-793],[747,-2772],[-151,-66],[-153,-61],[-156,-56],[-157,-51],[-158,-46],[-161,-40],[-161,-36],[-163,-31],[-164,-25],[-165,-21],[-165,-15],[-166,-10],[-161,-11],[-160,-16],[-160,-19],[-160,-23],[-159,-27],[-140,-27],[-140,-30],[-546,-259],[-258,-194],[-302,-385],[-369,-298],[-433,-365],[-135,-145],[-863,-563],[379,-453],[65,54],[393,-426],[7,-38],[-13,-51],[-76,-55],[-54,4],[-37,13],[-386,408],[53,40],[-399,459],[-133,-86],[-182,16],[-836,812],[-768,1814],[-65,611],[-370,606],[-357,346],[-235,84],[-256,24],[-85,-17],[-278,117],[-500,879],[-29,51],[-25,27],[-34,46],[-1681,2836],[-38,64],[-1809,3047],[0,1],[-33,-17],[-39,41],[-190,-95],[-50,-95],[296,-492],[83,-24],[1453,-2425],[24,-143],[1,-40],[1714,-2991],[33,-59],[25,-41],[24,-45],[40,-74],[52,-71],[44,-78],[48,-74],[44,-91],[19,-79],[41,-43],[31,-9],[75,-106],[-79,-172],[-27,-83],[-21,-84],[-16,-85],[-11,-86],[-6,-86],[0,-87],[5,-86],[10,-86],[15,-86],[21,-84],[26,-83],[30,-81],[107,24],[78,-73],[134,-456],[500,-659],[34,-112],[627,-1138],[23,-166],[141,-132],[112,-73],[217,-345],[4,-487],[114,-214],[73,-70],[157,-153],[574,-228],[315,-126],[57,-55],[-378,-286],[-409,-333],[-212,-175],[-4,4],[-6,-5],[-43,49],[301,246],[-217,371],[-126,-63],[-129,-60],[-130,-57],[-45,-19],[-109,-43],[-111,-41],[-100,-44],[-99,-48],[-97,-51],[-94,-56],[-92,-59],[-90,-62],[-87,-66],[-472,-410],[-73,-42],[-77,-38],[-79,-33],[-80,-28],[-83,-23],[-84,-18],[-85,-13],[-86,-7],[-124,49],[-123,53],[-120,58],[-118,62],[-115,65],[-113,70],[-110,74],[-108,77],[-104,81],[-101,84],[-98,88],[-94,126],[-98,123],[-103,120],[-107,117],[-112,113],[-387,344],[-35,41],[-39,37],[-42,34],[-46,30],[-48,26],[-50,22],[-53,17],[-53,13],[-55,8],[-76,-3],[-75,2],[-76,6],[-75,9],[-74,14],[-85,33],[-41,32],[-32,37],[-59,64],[7,16],[15,32],[-21,19],[-17,22],[-13,24],[-10,27],[-5,27],[-1,27],[4,28],[8,26],[-140,78],[-163,225],[-16,51],[-21,50],[-25,49],[-30,45],[-34,43],[-38,40],[-42,36],[-45,33],[-48,29],[-50,24],[-53,20],[-26,8],[-41,19],[-19,20],[-2,5],[-2,8],[1,43],[0,0],[10,13],[5,6],[0,13],[1,8],[-2,3],[-8,20],[-11,19],[-8,14],[-13,18],[-8,12],[-16,8],[-43,14],[-6,3],[-23,14],[-4,10],[-4,8],[-6,35],[-4,9],[-1,2],[0,1],[-23,5],[0,0],[-1,8],[-2,10],[2,22],[-3,19],[0,3],[-1,26],[2,32],[-4,4],[-10,9],[0,0],[-2,1],[-7,-2],[-1,0],[-4,1],[-5,5],[-9,9],[2,4],[2,4],[-16,21],[-2,2],[-17,16],[-31,-4],[-41,-13],[-41,-7],[-9,13],[-2,23],[5,42],[0,43],[-11,25],[-18,40],[-17,41],[-14,40],[-14,41],[-18,40],[-31,32],[-8,36],[-22,36],[-7,14],[5,10],[9,-10],[21,-36],[33,-17],[11,-22],[13,-10],[28,-8],[10,10],[41,-2],[2,-24],[31,-5],[11,-11],[19,-2],[16,-6],[25,9],[30,29],[33,28],[0,1],[2,0],[32,31],[24,34],[16,41],[14,40],[14,37],[1,9],[0,0],[3,34],[0,30],[0,13],[-3,43],[-9,42],[-1,3],[-11,36],[-1,2],[-4,8],[-33,28],[-29,20],[-14,10],[0,0],[-21,17],[-19,8],[-15,8],[-10,-1],[-15,-1],[-8,-7],[-3,-3],[-18,-38],[0,0],[-19,2],[-24,7],[-15,4],[-16,1],[-10,1],[-17,-13],[-4,0],[-4,1],[-11,4],[-8,3],[-20,22],[-22,9],[-16,-1],[-8,-1],[-10,13],[-3,3],[-21,38],[0,0],[-29,14],[-44,6],[-17,1],[-28,1],[-26,6],[0,0],[-15,3],[-12,8],[-17,11],[-15,12],[-20,15],[-24,11],[0,0],[-43,14],[-31,7],[-13,3],[-34,6],[-12,4],[0,0],[-28,9],[-21,20],[-7,9],[-22,23],[-9,8],[0,0],[-25,21],[-24,30],[-3,4],[0,0],[-4,10],[-8,24],[-2,26],[-1,3],[-5,23],[-4,25],[-5,23],[-5,35],[-2,8],[-6,10],[-6,11],[-22,33],[-2,6],[0,0],[-7,19],[-12,21],[-20,36],[-2,3],[-10,7],[-14,10],[-7,8],[-13,19],[-26,35],[-13,19],[-9,12],[-22,38],[-29,32],[-15,21],[-11,15],[-27,33],[-8,9],[-11,13],[-20,39],[-9,24],[-7,16],[-25,36],[-26,36],[-4,19],[1,7],[5,35],[21,29],[8,14],[11,18],[15,40],[9,36],[0,0],[-8,26],[-343,233],[-197,103],[-83,102],[-57,97],[-108,66],[-114,-48],[-58,-84],[-108,-18],[-76,30],[-83,-60],[-121,-145],[-140,-72],[-159,-48],[-477,73],[-102,109],[-163,247],[0,53],[-53,55],[-95,79],[-302,298],[-40,83],[-251,280],[-12,61],[0,0],[-33,19],[-3,41],[-27,26],[-5,4],[-2,9],[-10,39],[-52,59],[20,21],[26,18],[-18,70],[-36,20],[-10,16],[-1,26],[-43,16],[-64,112],[-18,139],[18,69],[-21,48],[10,51],[-35,238],[-9,86],[51,37],[47,59],[22,54],[10,60],[-35,40],[-27,39],[-15,54],[-3,27],[14,57],[-11,81],[-44,56],[-37,13],[-43,-10],[-75,1],[-2,0],[0,0],[-35,18],[-30,0],[-33,-16],[-19,-9],[-46,28],[-128,77],[-125,13],[0,0],[-9,16],[-13,20],[-7,13],[-12,21],[-6,3],[-16,9],[-7,15],[-1,3],[-6,18],[-11,17],[0,0],[-2,3],[-2,21],[-3,21],[0,14],[-1,29],[-6,9],[-7,12],[-42,16],[-16,20],[-8,21],[-7,20],[0,0],[-9,5],[-12,24],[-56,64],[-38,24],[-21,38],[-44,59],[-16,21],[-4,5],[-6,5],[-6,5],[-12,8],[-13,7],[-13,7],[-13,7],[-13,6],[-14,6],[-14,5],[-10,5],[-11,5],[-10,6],[-10,6],[-10,7],[-10,7],[-9,7],[-9,8],[-8,8],[-8,8],[-8,9],[-13,16],[-13,16],[-13,17],[-12,17],[-12,17],[-11,17],[-8,7],[-7,7],[-9,6],[-6,5],[-11,7],[-9,5],[-9,5],[-8,6],[-16,17],[-3,4],[-6,8],[-5,8],[-5,8],[-5,9],[-4,8],[-3,9],[-7,9],[-8,9],[-8,8],[-9,9],[-9,7],[-9,8],[-11,9],[-12,8],[-12,8],[-12,8],[-12,7],[-13,7],[-13,6],[-13,7],[-13,5],[-14,6],[-13,5],[-14,4],[-7,1],[-7,-1],[-8,0],[-7,-1],[-6,-2],[-7,-2],[-7,-2],[-6,-3],[-5,-3],[-1,-1],[-6,-3],[-6,-4],[123,-137],[-130,-106],[-117,135],[-20,0],[-8,2],[-5,0],[-5,2],[-5,2],[-2,1],[-2,1],[-4,3],[-9,3],[-8,4],[-8,5],[-21,16],[-10,8],[-9,12],[-10,12],[-11,12],[-4,6],[-4,5],[-5,5],[-5,5],[-6,5],[-5,4],[-6,4],[-6,3],[-6,3],[-7,3],[-6,2],[-5,2],[-6,1],[-6,1],[-6,0],[-6,0],[-10,-1],[-9,-1],[-10,-2],[-9,-3],[-9,-3],[-3,-2],[-5,-4],[-9,-6],[-7,-7],[-8,-7],[-7,-7],[-7,-8],[-6,-7],[0,-1],[-6,-8],[-6,-9],[-5,-9],[-5,-9],[-4,-9],[-5,-8],[-5,-8],[-6,-8],[-6,-8],[-6,-7],[-6,-5],[-1,-2],[-8,-7],[-7,-6],[-3,-5],[-3,-5],[-3,-6],[-2,-5],[-1,-6],[-1,-6],[-1,-6],[0,-5],[0,-5],[0,-1],[1,-6],[1,-6],[2,-6],[2,-5],[3,-6],[2,-17],[3,-16],[3,-17],[4,-17],[4,-17],[5,-16],[5,-17],[6,-16],[6,-16],[6,-16],[7,-16],[8,-15],[8,-15],[26,-38],[24,-35],[2,-3],[2,-3],[24,-35],[26,-38],[1,-2],[24,-37],[14,-16],[4,-4],[18,-20],[18,-20],[1,-1],[17,-19],[19,-19],[8,-7],[12,-12],[19,-19],[20,-18],[21,-18],[20,-18],[13,-13],[12,-14],[12,-14],[12,-14],[11,-14],[10,-15],[10,-15],[10,-16],[10,-16],[8,-15],[32,-52],[12,-19],[12,-18],[13,-18],[13,-18],[13,-18],[14,-17],[15,-17],[15,-16],[24,-25],[4,-4],[6,-7],[13,-13],[9,-10],[27,-29],[21,-23],[3,-4],[3,-4],[9,-8],[9,-8],[8,-9],[7,-8],[8,-10],[7,-9],[7,-10],[6,-9],[6,-11],[6,-10],[5,-10],[5,-11],[12,-18],[13,-18],[14,-18],[14,-17],[10,-12],[4,-5],[15,-17],[15,-16],[15,-16],[19,-24],[19,-23],[19,-23],[20,-23],[20,-22],[21,-22],[21,-21],[11,-18],[11,-17],[11,-18],[10,-18],[9,-18],[10,-19],[-76,-60],[-10,-17],[5,-17],[44,-89],[134,-211],[70,-104],[176,-261],[11,5],[11,10],[-147,233],[-192,289],[-65,113],[-5,17],[5,18],[23,28],[40,31],[77,50],[0,0],[34,6],[23,-13],[22,-21],[9,3],[2,14],[-4,15],[39,60],[56,43],[18,1],[13,-10],[27,-8],[12,-2],[1,0],[12,-10],[17,-25],[3,-8],[3,-10],[7,-10],[14,-13],[15,-6],[15,-6],[20,1],[14,10],[3,13],[-4,19],[-11,14],[-12,7],[-11,17],[5,24],[18,23],[8,23],[9,43],[18,8],[21,15],[33,1],[0,1],[11,-4],[28,-34],[6,-17],[8,-24],[15,-10],[5,-3],[1,0],[11,-23],[8,-23],[3,-9],[0,-3],[2,-7],[11,-6],[12,-6],[41,-3],[0,0],[2,-15],[0,-3],[4,-13],[3,-11],[0,0],[0,-4],[2,-36],[-4,-42],[-5,-18],[0,0],[-7,-25],[2,-15],[1,-14],[8,-16],[3,-7],[6,-37],[-8,-27],[-23,-22],[-24,-9],[-12,-9],[-4,-2],[-10,-3],[-20,-4],[-8,-2],[-13,2],[-20,3],[-27,11],[-30,22],[-24,24],[0,0],[-1,11],[-1,17],[4,29],[0,0],[15,15],[26,14],[6,2],[5,2],[2,5],[1,6],[-3,10],[0,1],[-2,7],[-2,4],[-2,6],[-13,1],[-3,1],[-31,8],[-9,-1],[-5,-1],[-6,0],[-7,-1],[-10,-5],[-13,-9],[-15,-27],[-9,-20],[0,-20],[0,-23],[5,-23],[3,-11],[16,-39],[10,-17],[0,0],[22,-17],[40,-21],[43,-12],[44,-4],[2,1],[42,10],[37,-3],[24,-3],[18,-2],[13,-2],[23,-3],[13,-15],[10,-24],[3,-27],[0,-1],[2,-15],[0,0],[-4,-13],[-2,-22],[0,-145],[-4,-14],[-11,-11],[2,-12],[-4,-30],[-27,-28],[-3,-6],[-13,-10],[-29,-33],[-2,-2],[-37,-20],[-10,-15],[0,-5],[0,-11],[0,0],[9,5],[3,2],[1,1],[4,4],[20,-23],[4,-4],[0,0],[-18,-8],[-2,-1],[0,0],[5,-3],[4,-3],[10,-1],[8,-1],[13,3],[7,1],[32,11],[14,4],[19,6],[24,3],[5,1],[14,-8],[3,-2],[12,-18],[12,-18],[20,-25],[1,-1],[35,-27],[20,-30],[0,0],[2,-4],[19,-35],[21,-29],[4,-6],[15,-28],[-3,-11],[-1,-3],[-2,-6],[7,-1],[15,-1],[25,-35],[28,-33],[14,-25],[6,-12],[8,-12],[0,0],[6,-10],[12,-25],[8,-14],[18,-23],[9,-10],[2,-4],[17,-23],[4,-5],[12,-15],[10,-14],[6,-9],[3,-19],[1,-8],[-17,-9],[-11,-6],[-16,-2],[0,0],[-3,1],[-5,4],[0,0],[-8,3],[3,-29],[0,0],[-10,-11],[0,0],[-18,-7],[-34,-19],[-26,-16],[-13,-7],[-4,-3],[-33,-20],[-17,-9],[-10,-5],[-25,-14],[-11,-6],[-13,-9],[-24,-16],[-11,-12],[-8,-9],[-6,-2],[-5,14],[-13,23],[-6,10],[0,0],[-15,5],[-11,17],[-11,2],[0,0],[-1,1],[-26,9],[-2,-2],[-3,-1],[-1,-1],[-4,-1],[0,-3],[0,-7],[18,-24],[6,-7],[22,-26],[29,-34],[9,-9],[14,-13],[9,-1],[19,14],[0,0],[8,4],[14,6],[39,4],[29,2],[39,19],[38,24],[39,22],[32,20],[6,4],[38,23],[1,0],[34,28],[16,0],[18,-15],[8,-6],[6,-8],[14,-16],[10,-21],[5,-25],[22,-17],[6,-4],[5,-9],[5,-11],[-2,-30],[4,-12],[4,-14],[6,-3],[9,-4],[23,-20],[13,-20],[0,-25],[1,-15],[9,-41],[5,-21],[3,-15],[17,-18],[13,-13],[18,-38],[16,-41],[11,-42],[3,-12],[7,-13],[6,-10],[2,-39],[14,-16],[11,-7],[43,-3],[11,5],[0,0],[4,8],[2,6],[-5,7],[-1,0],[-6,19],[-1,16],[6,2],[1,0],[23,-27],[23,-37],[17,-13],[0,-1],[4,-4],[15,-19],[8,-7],[5,-23],[1,0],[8,-5],[21,-11],[1,-1],[1,0],[19,-14],[-1,-1],[-16,-13],[21,-48],[68,-30],[0,0],[4,-4],[6,-6],[6,-7],[22,-26],[6,-18],[3,-8],[7,-23],[5,-18],[20,-34],[13,-10],[36,-34],[-6,-42],[-7,-42],[7,-18],[44,-11],[17,-6],[5,-6],[6,-6],[13,-24],[16,-40],[0,0],[29,-27],[22,0],[24,0],[26,0],[19,0],[0,0],[8,-3],[10,-4],[14,-16],[16,-15],[8,-5],[12,-9],[26,-8],[17,-6],[7,-4],[12,-8],[14,-16],[15,-9],[10,-6],[13,-5],[29,-12],[16,-19],[17,-8],[6,-2],[25,-3],[34,-13],[17,-15],[1,0],[17,-8],[44,-14],[39,-20],[38,-22],[19,-13],[18,-13],[29,-13],[41,-17],[11,-13],[10,-16],[0,-1],[5,-3],[0,0],[31,-21],[19,-11],[21,-11],[29,-12],[12,-5],[25,-17],[6,-4],[30,-23],[11,-9],[145,-126],[401,-355],[385,-444],[370,-404],[381,-398],[394,-475],[295,-356],[13,-135],[134,-326],[496,-568],[131,-158],[52,-19],[62,-10],[147,67],[25,28],[16,103],[52,18],[58,-16],[67,-54],[40,-24],[39,-34],[27,-59],[97,-207],[-108,-231],[-14,-75],[104,-48],[390,-453],[429,-714],[-216,-452],[-276,-285],[-123,-251],[-42,-94],[-79,-71],[-144,-109],[-101,-68],[-109,-104],[-173,-78],[-115,-82],[-212,-169],[-171,-135],[-122,-158],[-30,-64],[-89,-190],[-345,-303],[-209,-168],[-108,-49],[-109,-7],[-5,0],[-94,-36],[-122,-59],[-67,-73],[-45,-56],[-254,-145],[-98,-39],[-177,-109],[-129,-142],[-143,-220],[-119,-164],[-68,-299],[-9,-258],[195,-242],[-367,-268],[876,-991],[-228,-191],[-429,-360],[-890,977],[-366,-293],[-198,193],[-108,-13],[-106,-17],[-106,-23],[-104,-27],[-103,-31],[-102,-36],[-99,-41],[-97,-45],[-95,-49],[-85,-48],[-82,-52],[-80,-55],[-77,-58],[-74,-61],[-72,-64],[-1324,-1245],[-659,-1385],[-75,-104],[-80,-100],[-84,-97],[-88,-93],[-93,-89],[-97,-86],[-101,-81],[-104,-77],[-108,-73],[-111,-68],[-42,0],[-28,30],[-44,8],[-49,7],[-112,-52],[-43,4],[-503,-290],[-122,-70],[-64,-36],[-61,-40],[-59,-44],[-55,-48],[-52,-50],[-49,-54],[-69,-24],[-91,-24],[-92,12],[-31,22],[-16,20],[24,28],[4,7],[-5,26],[-33,27],[-27,17],[-29,-2],[-37,-5],[-65,15],[-264,166],[-126,88],[-675,364],[-2422,1344],[-406,233],[-484,265],[-499,262],[-263,68],[-222,131],[-36,21],[-37,22],[-143,83],[-35,21],[-9,5],[-18,11],[-47,27],[-23,14],[-4,2],[-5,3],[-141,83],[-313,183],[-95,56],[-426,249],[-512,301],[-488,286],[-7,4],[-12,7],[-494,290],[-514,301],[-498,291],[-318,187],[-189,110],[-515,300],[-497,290],[-513,299],[-1448,843],[-59,-1],[-59,-7],[-57,-13],[-57,-17],[-54,-22],[-52,-27],[-49,-32],[-46,-36],[-42,-39],[-38,-44],[-38,-14],[-37,-19],[-33,-23],[-30,-28],[-26,-30],[-22,-34],[-16,-36],[-12,-38],[-6,-39],[-1,-39],[123,-257],[1217,-783],[344,-193],[3480,-1958],[568,-322],[2243,-1273],[422,-231],[65,82],[-15,7],[8,15],[-265,166],[-442,279],[-281,177],[10,14],[20,-14],[52,69],[7,-5],[-49,-70],[54,-31],[9,-6],[50,-31],[8,-5],[50,-32],[11,-6],[49,-32],[9,-5],[50,-32],[9,-5],[50,-32],[10,-6],[50,-32],[11,-7],[52,-32],[6,-4],[51,-32],[9,-6],[50,-31],[9,-6],[50,-31],[11,-7],[49,-31],[10,-6],[49,-31],[10,-6],[49,-31],[11,-7],[50,-32],[7,-4],[53,-33],[7,-5],[48,-30],[7,-4],[43,-27],[8,-5],[42,-27],[10,-6],[41,-26],[9,-6],[42,-26],[9,-5],[11,-8],[39,-24],[43,-27],[8,-5],[42,-27],[43,62],[10,-6],[-52,-75],[35,-21],[50,71],[10,-4],[-43,-62],[54,-34],[44,-28],[22,-13],[30,-19],[9,-5],[43,-27],[8,-6],[45,-28],[8,-5],[45,-27],[42,60],[8,-3],[-52,-73],[-311,195],[-26,-36],[-18,11],[-42,-66],[154,-90],[85,-44],[119,-75],[-86,-125],[28,-9],[19,22],[23,-12],[188,316],[79,-41],[-6,-10],[-66,35],[-192,-323],[59,-31],[-3,-5],[-59,32],[-16,-27],[68,-36],[-5,-9],[-37,20],[-6,-11],[-76,40],[0,0],[-3,2],[-3,2],[-2,1],[-17,-28],[1,0],[2,-1],[2,-1],[0,0],[79,-43],[-7,-13],[-81,43],[-21,12],[-17,-30],[-12,-32],[-7,-34],[-3,-34],[2,-34],[8,-33],[1,-10],[2,-10],[3,-9],[3,-10],[4,-9],[4,-9],[4,-9],[7,-14],[7,-14],[7,-13],[8,-14],[8,-13],[9,-13],[9,-12],[9,-13],[12,-6],[11,-5],[12,-6],[12,-5],[12,-4],[12,-4],[13,-3],[12,-4],[13,-2],[13,2],[12,2],[13,3],[12,4],[12,3],[12,4],[12,5],[11,5],[12,5],[11,6],[11,6],[11,6],[6,1],[5,-1],[6,-1],[5,-1],[6,-2],[5,-2],[5,-2],[5,-3],[4,-3],[4,-4],[4,-4],[3,-4],[3,-5],[3,-5],[2,-4],[2,-6],[1,-5],[1,-5],[4,-21],[4,-21],[5,-20],[6,-21],[5,-20],[7,-21],[7,-20],[7,-20],[7,-20],[14,-22],[14,-22],[14,-21],[15,-21],[16,-21],[15,-21],[16,-20],[17,-20],[17,-20],[17,-20],[12,-3],[12,-2],[13,-3],[12,-2],[12,-1],[13,-1],[13,-1],[12,0],[13,1],[12,1],[13,1],[12,1],[14,-6],[13,-6],[14,-7],[13,-8],[12,-7],[13,-9],[14,-3],[4,-1],[17,-6],[8,-2],[10,-3],[18,-6],[17,-7],[17,-7],[17,-7],[17,-8],[16,-8],[16,-8],[17,-9],[15,-10],[16,-9],[15,-10],[15,-10],[15,-11],[15,-11],[14,-11],[14,-12],[9,-8],[5,-4],[13,-12],[10,-10],[3,-3],[13,-13],[12,-13],[5,-5],[6,-5],[4,-6],[5,-5],[4,-6],[3,-7],[4,-6],[3,-7],[2,-6],[2,-7],[2,-7],[1,-7],[0,-7],[0,-7],[0,-7],[0,-7],[-2,-7],[-1,-7],[-1,-8],[0,-8],[0,-8],[0,-8],[2,-8],[1,-8],[2,-8],[2,-8],[3,-8],[3,-7],[4,-7],[4,-8],[7,-6],[6,-7],[6,-7],[6,-7],[5,-7],[5,-8],[4,-8],[4,-8],[4,-9],[3,-8],[2,-9],[3,-9],[0,-5],[1,-4],[1,-9],[-7,-4],[-7,-5],[-6,-6],[-6,-5],[-5,-5],[-1,-1],[-5,-7],[-5,-6],[-5,-7],[-4,-7],[-4,-8],[-3,-7],[-3,-8],[1,-11],[2,-11],[2,-11],[2,-11],[3,-11],[3,-11],[4,-10],[4,-11],[4,-10],[5,-10],[6,-10],[6,-10],[6,-10],[6,-9],[7,-9],[8,-9],[1,-1],[6,-8],[8,-8],[6,-11],[5,-11],[4,-11],[5,-11],[3,-12],[3,-11],[3,-12],[2,-12],[2,-12],[1,-12],[0,-12],[7,-4],[7,-5],[7,-4],[7,-3],[7,-4],[8,-3],[1,0],[7,-2],[8,-2],[8,-1],[8,-2],[8,0],[8,-1],[-1,4],[0,3],[-1,3],[1,3],[1,3],[1,3],[2,3],[2,3],[3,2],[3,2],[3,1],[3,1],[4,0],[3,0],[3,0],[10,-9],[10,-8],[11,-6],[13,-5],[34,2],[33,4],[33,9],[31,11],[29,14],[27,16],[29,8],[14,7],[15,5],[15,6],[16,8],[16,7],[17,7],[17,6],[16,6],[18,6],[17,5],[17,5],[18,4],[18,4],[17,3],[18,3],[18,3],[18,2],[18,1],[18,1],[18,1],[9,-5],[9,-5],[9,-5],[9,-4],[9,-4],[10,-3],[9,-3],[10,-2],[10,-3],[10,-1],[10,-1],[10,-1],[10,-1],[10,0],[10,1],[10,1],[10,1],[10,2],[65,16],[65,17],[64,17],[8,-3],[9,-3],[8,-2],[9,-2],[9,-2],[9,-1],[8,0],[9,0],[9,1],[9,1],[9,1],[8,2],[9,2],[8,3],[9,1],[10,1],[9,0],[9,0],[10,-1],[9,-1],[9,-2],[9,-2],[9,-2],[9,-3],[9,-3],[1,-4],[2,-3],[3,-2],[2,-3],[3,-2],[4,-2],[3,-1],[4,-1],[3,-1],[4,0],[4,0],[4,0],[3,1],[4,2],[25,9],[25,8],[26,8],[25,7],[25,2],[24,3],[25,3],[25,2],[24,2],[41,7],[5,-1],[41,-6],[22,-4],[28,-6],[56,-12],[94,-22],[52,-15],[9,-3],[20,-10],[5,-2],[4,-1],[1,-1],[44,-30],[13,-7],[22,-6],[29,-5],[128,1],[87,1],[35,-8],[44,-15],[50,-27],[27,-37],[30,-44],[54,-29],[28,-11],[29,0],[36,-14],[24,-12],[10,-10],[4,-5],[7,-11],[37,-101],[9,-25],[42,-124],[-1,-43],[-4,-14],[-4,-21],[-2,-48],[2,-64],[5,-38],[3,-11],[8,-19],[6,-4],[1,4],[3,21],[3,26],[10,25],[10,11],[8,-3],[5,-5],[6,-26],[49,-120],[15,-14],[11,-8],[3,-7],[2,-8],[-3,-23],[-1,-27],[6,-19],[12,-15],[13,0],[7,4],[11,-5],[7,-13],[13,-22],[17,-12],[22,-12],[19,-7],[14,-10],[24,-27],[53,-86],[7,-23],[1,-7],[-6,-16],[-10,-22],[-3,-20],[7,-17],[-6,-16],[-15,-10],[-6,-17],[1,-22],[9,-28],[14,-22],[8,-8],[12,0],[6,4],[12,0],[9,-8],[-11,-14],[-11,-5],[-5,-10],[2,-10],[6,-10],[13,-7],[11,-3],[10,-7],[17,-41],[-3,-37],[-17,-40],[-30,-79],[-11,-30],[-5,-23],[2,-11],[2,-11],[11,-18],[17,-21],[17,-18],[10,-15],[7,-30],[2,-14],[-11,-19],[-6,-4],[-26,3],[-13,-1],[-13,-8],[-12,-15],[-14,-25],[-23,-38],[-16,-28],[-16,-24],[-9,-28],[-5,-23],[-16,-36],[1,-26],[4,-20],[-6,-14],[-13,-20],[-15,-9],[-17,-23],[-8,-32],[-6,-21],[-7,-31],[-4,-15],[0,-19],[1,-35],[-4,-34],[-10,-50],[-8,-32],[-7,-26],[0,-17],[-1,-21],[-7,-33],[-6,-22],[-22,-35],[-26,-33],[-24,-23],[-36,-29],[-29,-33],[-10,-7],[-4,-3],[-7,-9],[-2,-19],[-8,-20],[-16,-12],[-14,1],[-11,6],[-11,-4],[-9,-17],[1,-15],[15,-19],[12,-25],[-4,-3],[-7,-18],[14,-29],[3,-25],[-3,-9],[-17,-20],[-12,-8],[-16,-9],[-5,-8],[11,-17],[13,-14],[3,-19],[-7,-22],[-15,-16],[-14,-7],[-26,-4],[-4,-10],[11,-13],[-2,-26],[-9,-25],[-6,-24],[-14,-25],[-16,-30],[-9,-14],[-6,-55],[-9,-53],[0,-57],[4,-49],[4,-40],[4,-22],[14,-18],[17,-23],[17,-36],[15,-54],[22,-85],[10,-26],[10,-35],[1,-29],[0,-18],[-4,-28],[-5,-33],[-2,-31],[-5,-24],[-1,-26],[3,-26],[1,-26],[4,-24],[-3,-22],[-5,-14],[-14,-8],[-6,-5],[1,-9],[6,-10],[14,-12],[17,-15],[5,-36],[1,-34],[-8,-31],[-5,-23],[2,-9],[6,-11],[24,-20],[17,-16],[15,-11],[17,-5],[20,2],[6,6],[7,13],[3,10],[11,1],[12,-9],[6,-13],[19,-21],[16,-26],[3,-21],[-4,-21],[-22,-16],[-12,-14],[-10,-15],[-2,-19],[5,-7],[15,-11],[23,-7],[6,-5],[8,-30],[1,-22],[-10,-27],[-8,-26],[5,-26],[5,-8],[13,-11],[21,-4],[9,1],[12,-7],[3,-21],[2,-17],[-8,-10],[-15,-7],[9,-15],[19,-15],[17,-7],[17,-12],[11,-24],[0,-30],[-1,-23],[-3,-39],[2,-26],[5,-19],[19,-25],[16,-18],[14,-15],[9,-19],[30,-64],[21,-39],[8,-28],[1,-19],[0,-14],[5,-12],[20,-25],[11,-19],[-2,-10],[-8,-13],[-16,-11],[-4,-7],[-3,-13],[-11,-7],[-14,5],[-10,4],[-5,7],[-10,9],[-15,7],[-13,8],[-22,6],[-17,2],[-8,-5],[-8,-9],[-9,-17],[-7,-20],[4,-15],[9,-18],[21,-25],[23,-23],[10,-22],[7,-29],[11,-25],[15,-25],[3,-23],[0,-16],[10,-11],[18,-10],[42,-11],[20,-7],[20,-7],[41,-10],[17,-6],[5,-11],[3,-8],[0,-18],[0,-15],[4,-9],[8,-5],[14,5],[2,1],[7,6],[-5,13],[2,9],[5,9],[10,11],[14,4],[14,-1],[24,-9],[41,-26],[48,-31],[58,-43],[61,-46],[81,-53],[48,-29],[52,-35],[34,-20],[51,-27],[32,-20],[45,-20],[48,-22],[32,-13],[44,-15],[32,-10],[41,-10],[32,-8],[41,-9],[46,-6],[41,-1],[23,7],[28,5],[30,-2],[35,-4],[32,3],[22,4],[22,8],[29,0],[15,-1],[20,1],[34,8],[32,8],[37,-1],[41,-6],[26,0],[17,2],[20,4],[33,4],[51,-8],[45,-8],[48,-8],[54,-11],[34,-4],[44,-15],[21,-1],[37,-4],[35,-7],[35,-10],[39,-17],[82,-37],[73,-33],[68,-34],[66,-30],[48,-25],[15,-8],[45,-31],[38,-25],[47,-31],[50,-38],[53,-41],[41,-32],[31,-16],[22,-15],[15,-13],[23,-29],[29,-25],[11,-9],[2,-8],[4,-10],[10,-32],[9,-33],[20,-33],[33,-40],[32,-32],[34,-35],[17,-27],[6,-50],[-3,-35],[-6,-20],[-15,-14],[-28,-23],[-10,-20],[-2,-17],[1,-25],[5,-22],[-4,-24],[-14,-21],[-16,-10],[-22,-7],[-23,-9],[-27,-16],[-15,-25],[-14,-36],[-11,-38],[-22,-50],[-22,-36],[-18,-25],[-6,-6],[-19,-17],[-27,-3],[-24,-2],[-27,-9],[-28,-11],[-20,-12],[-18,-14],[-11,-5],[-10,7],[2,13],[3,20],[-8,10],[-22,10],[-13,-1],[-11,-7],[-12,-14],[-11,-13],[-9,-15],[-11,-26],[-19,-9],[-88,-26],[-45,-16],[-14,-4],[-12,0],[-8,6],[8,20],[4,15],[7,18],[8,19],[-7,7],[-14,6],[-21,-4],[-15,-8],[-15,-12],[-17,-19],[-21,-25],[-37,-26],[-49,-33],[-45,-32],[-56,-41],[-45,-27],[-18,-10],[-25,-21],[-26,-11],[-30,-2],[-41,0],[-43,3],[-27,7],[-22,10],[-13,8],[-27,-2],[-24,2],[-22,-7],[-35,-14],[-35,-27],[-26,-12],[-33,-8],[-36,-21],[-41,-18],[-31,-25],[-36,-27],[-33,-20],[-32,-12],[-40,0],[-47,8],[-29,8],[-30,0],[-20,-10],[-23,-15],[-20,-31],[-5,-27],[1,-15],[0,-23],[6,-25],[26,-28],[12,-11],[2,-16],[5,-19],[-5,-14],[2,-14],[14,-26],[13,-5],[16,-5],[8,5],[9,17],[11,22],[10,6],[25,-4],[47,-15],[44,-17],[32,-12],[8,-4],[4,-12],[-5,-24],[6,-18],[0,-19],[-5,-11],[-9,-3],[-8,-6],[1,-4],[5,-12],[13,-7],[17,-11],[19,5],[25,8],[13,8],[10,16],[33,18],[15,13],[32,17],[38,19],[34,7],[23,9],[16,4],[11,10],[17,14],[29,10],[30,3],[35,-3],[18,2],[7,13],[9,14],[13,19],[25,18],[27,21],[21,22],[31,11],[20,13],[22,12],[31,6],[58,5],[30,3],[38,17],[66,30],[57,28],[41,21],[39,12],[13,5],[15,0],[14,-14],[21,-2],[18,-6],[12,4],[13,15],[7,11],[0,10],[9,17],[19,-8],[13,-6],[17,7],[7,18],[3,14],[-3,12],[-7,11],[0,16],[21,22],[27,28],[40,30],[29,18],[27,6],[28,-6],[18,7],[11,8],[12,18],[31,44],[15,11],[16,3],[29,2],[13,9],[18,11],[22,1],[23,12],[24,17],[18,22],[43,17],[12,2],[6,11],[-7,13],[-20,14],[-25,13],[-41,21],[-8,13],[-6,11],[-1,13],[6,15],[9,20],[9,17],[15,7],[13,5],[34,-13],[28,-16],[60,-35],[32,-10],[48,-5],[35,-7],[32,-13],[34,-12],[24,-11],[37,-26],[28,-22],[47,-23],[22,-12],[5,-16],[15,-21],[28,-25],[41,-34],[33,-29],[46,-30],[44,-31],[39,-26],[34,-16],[34,-14],[17,-9],[15,-19],[19,-27],[13,-21],[8,-27],[4,-39],[0,-46],[-7,-42],[-8,-56],[-10,-39],[-8,-45],[-5,-30],[4,-34],[5,-26],[-3,-20],[-4,-24],[-8,-35],[-11,-33],[-11,-21],[-30,-42],[-19,-29],[-34,-46],[-32,-49],[-28,-44],[-22,-33],[-24,-35],[-10,-30],[-19,-44],[-39,-57],[-52,-62],[-74,-77],[-60,-60],[-44,-51],[-45,-39],[-32,-24],[-45,-26],[-46,-31],[-46,-30],[-36,-29],[-25,-19],[-28,-25],[-52,-46],[-63,-55],[-63,-55],[-68,-58],[-53,-49],[-84,-89],[-75,-84],[-54,-62],[-25,-28],[-17,-6],[-7,-3],[-4,5],[-1,6],[6,14],[11,16],[9,18],[2,8],[0,9],[21,29],[11,17],[11,19],[8,21],[-1,17],[-9,15],[-19,5],[-21,8],[-17,12],[-5,6],[-1,2],[3,2],[14,2],[25,-6],[6,2],[39,-1],[18,1],[12,7],[15,22],[19,26],[-5,16],[-4,-1],[-6,-6],[-6,-5],[-9,-2],[-4,7],[-2,5],[7,10],[10,6],[5,13],[-5,6],[-11,2],[-27,-11],[-18,-7],[-37,-20],[-21,-18],[-22,-23],[-8,-19],[-7,-11],[-15,-25],[-23,-23],[-7,-12],[-6,-32],[-8,-19],[-25,-17],[-26,-10],[-38,-16],[-10,-12],[6,-7],[11,-1],[2,-14],[2,-31],[-20,-60],[-13,-60],[-14,-68],[-9,-26],[-6,-15],[-13,-21],[-7,-10],[-4,-24],[4,-15],[9,-14],[18,-8],[33,-15],[25,-17],[3,-2],[1,-7],[-11,-5],[-19,3],[-23,3],[-19,2],[-22,-11],[-19,-15],[-10,-15],[-1,-15],[3,-8],[11,-5],[17,-18],[14,-12],[18,-12],[9,0],[12,9],[13,17],[9,14],[17,15],[14,4],[16,-3],[2,-7],[1,-5],[-9,-32],[-10,-12],[-3,-15],[-8,-19],[-16,-27],[-1,-34],[-11,-21],[-4,-16],[4,-21],[-7,-24],[-7,-12],[-24,-12],[-9,-11],[-14,-8],[-40,-2],[-19,-5],[-5,-6],[-10,-24],[-8,-34],[-5,-51],[-5,-47],[-1,-51],[-2,-68],[-9,-45],[-2,-19],[-12,-15],[-12,-19],[-2,-13],[-2,-24],[-6,-40],[-2,-28],[-4,-28],[-18,-37],[-11,-32],[-7,-22],[-4,-17],[-3,-18],[-6,-13],[-12,-28],[-10,-30],[-10,-35],[-10,-25],[-17,-23],[-29,-17],[-25,-9],[-35,-12],[-26,-12],[-36,-11],[-21,-4],[-17,-10],[-21,-13],[-12,-21],[-8,-17],[-11,-30],[-20,-57],[-12,-22],[-16,-25],[-11,-14],[-29,-22],[-16,-19],[-10,-10],[-6,0],[-11,2],[-15,-6],[-21,-12],[-18,-11],[-25,-15],[-19,-2],[-16,-6],[-5,-5],[-1,-7],[-26,-10],[-21,-8],[-16,-7],[-21,-18],[-11,-10],[-19,-4],[-10,-3],[-14,-2],[-9,-5],[-12,1],[-15,-4],[-18,-3],[-14,-11],[-17,-7],[-16,-11],[-27,-10],[-25,-6],[-18,-4],[-33,-13],[-36,-11],[-31,-15],[-24,-9],[-40,-7],[-21,-3],[-15,-3],[-31,2],[-24,7],[-33,-6],[-10,6],[-20,9],[-24,3],[-30,1],[-29,-7],[-30,-13],[-22,-10],[-19,-6],[-21,-3],[-18,-8],[-23,-18],[-19,-16],[-20,-11],[-19,-6],[-24,-13],[-19,-19],[-23,-24],[-22,-23],[-19,-15],[-30,-10],[-21,-13],[-20,-17],[-23,-26],[-41,-42],[-25,-20],[-27,-22],[-52,-29],[-30,-16],[-40,-17],[-36,-16],[-40,-22],[-38,-20],[-22,-8],[-33,-11],[-26,-6],[-22,-3],[-30,4],[-12,1],[-12,1],[-19,0],[-19,-4],[-20,-13],[-16,-10],[-17,-11],[-19,-9],[-21,-5],[-19,-2],[-25,-1],[-32,-9],[-30,-12],[-24,-11],[-41,-19],[-31,-19],[-18,-11],[-17,-11],[-22,-3],[-39,-4],[-40,-3],[-36,-5],[-35,2],[-13,0],[-18,-11],[-28,-12],[-29,-10],[-23,-10],[-29,-1],[-25,-4],[-23,-2],[-19,3],[-16,13],[-6,5],[-21,-1],[-37,-10],[-42,-12],[-45,-15],[-44,-13],[-39,-13],[-18,-7],[-18,-9],[-18,-15],[-26,-8],[-24,-4],[-24,-2],[-27,4],[-19,8],[-23,-1],[-30,-7],[-22,-10],[-34,-15],[-23,-18],[-6,-8],[-8,-17],[-3,-3],[-14,-16],[-20,-16],[-13,-7],[-101,-5],[-33,-2],[-57,3],[-17,17],[-22,25],[-130,71],[-40,13],[-22,-2],[-4,4],[-6,7],[-13,10],[-13,4],[-29,19],[-23,10],[-21,-3],[-21,-4],[-27,-10],[-20,-19],[-19,-12],[-28,-3],[-41,9],[-43,12],[-12,6],[-6,11],[-5,7],[-24,7],[-42,5],[-36,2],[-22,-3],[-18,-9],[-18,-12],[-12,-4],[-3,5],[-7,5],[-9,4],[-4,3],[2,12],[-6,8],[-10,5],[-9,16],[-5,15],[3,6],[5,2],[4,3],[-1,8],[-6,10],[-16,12],[-23,13],[-9,10],[-8,11],[-8,10],[-17,34],[-21,37],[-26,29],[-23,26],[-28,65],[-40,60],[-44,86],[-27,36],[-63,45],[-26,22],[-49,101],[-28,53],[-40,115],[-31,60],[-48,107],[-22,58],[-4,47],[4,31],[18,36],[22,36],[53,67],[70,137],[25,74],[3,58],[0,42],[-2,24],[19,119],[5,71],[3,103],[12,81],[5,35],[-2,34],[-9,55],[1,45],[17,68],[14,55],[12,53],[-5,36],[-14,31],[-9,40],[6,50],[15,51],[3,39],[-11,31],[-12,42],[-3,63],[6,78],[2,40],[5,14],[16,13],[9,9],[10,34],[8,50],[18,29],[21,20],[23,12],[11,10],[18,40],[11,78],[6,205],[5,81],[11,21],[20,21],[6,25],[-5,21],[-11,12],[-12,3],[-20,-5],[-13,0],[-15,1],[-38,30],[-43,40],[-17,26],[-8,26],[-1,17],[13,24],[14,36],[-6,27],[-19,26],[-53,34],[-84,44],[-24,19],[-33,33],[-54,70],[-35,43],[-8,14],[-8,8],[-28,12],[-33,15],[-27,29],[-15,26],[1,12],[6,9],[1,17],[-2,17],[-14,18],[-28,21],[-31,14],[-11,1],[-15,-2],[-30,11],[-33,32],[-26,44],[-21,67],[-9,71],[5,43],[1,2],[5,8],[13,2],[3,1],[13,-16],[12,-6],[15,11],[14,34],[-2,107],[-1,79],[-12,38],[-38,27],[-43,9],[-40,24],[-15,20],[-6,14],[-15,13],[-17,6],[-50,-21],[-5,-2],[-1,0],[-113,-49],[-41,-20],[-21,0],[-22,10],[-94,84],[-27,24],[-44,49],[-10,-8],[-7,-4],[-10,12],[-71,-59],[-24,-18],[17,-17],[-22,-19],[790,-956],[7,5],[9,-14],[-9,-7],[-17,-13],[-9,-7],[-17,-12],[-10,-8],[-13,-9],[-10,-8],[-9,14],[27,20],[-6,7],[35,24],[4,12],[-38,45],[-759,915],[-14,1],[-51,-43],[-7,7],[92,75],[2,-4],[20,19],[-3,8],[69,56],[-29,28],[-62,-56],[-5,0],[-30,-15],[-5,-3],[-91,-73],[-6,9],[55,44],[1,9],[-18,20],[-9,10],[-18,20],[-10,10],[-19,21],[-10,11],[-19,21],[-9,10],[-15,16],[-52,56],[-62,-58],[-10,9],[78,70],[10,-9],[-5,-5],[64,-69],[62,-65],[48,-53],[19,18],[10,-10],[33,17],[65,58],[-84,101],[-94,64],[-908,1005],[-2,3],[-6,8],[-1041,1155],[-23,-19],[21,-22],[86,-98],[-10,-6],[-17,21],[-5,6],[-14,15],[-5,6],[-16,19],[-26,31],[-70,-59],[-7,7],[-15,14],[30,29],[16,-16],[19,16],[-23,26],[26,23],[3,-3],[24,21],[-49,56],[-2,3],[-621,702],[1,38],[-114,-88],[-16,8],[116,99],[153,122],[-44,49],[-157,-120],[-120,-90],[-11,13],[119,90],[-89,100],[-115,-89],[-19,18],[116,92],[145,120],[-52,59],[-157,-128],[-104,-77],[-10,14],[104,77],[83,69],[-33,43],[-30,-17],[-82,98],[-71,-64],[-55,51],[79,65],[-42,50],[18,16],[-16,24],[-21,-16],[-14,25],[-27,20],[-23,-8],[-38,-2],[-81,86],[0,6],[-2,23],[134,108],[-30,39],[37,41],[-39,46],[-219,-170],[-154,183],[-85,-54],[-50,-43],[-116,132],[-48,-35],[34,-46],[112,-126],[-19,-14],[-107,125],[-146,-117],[445,-485],[-13,-11],[-260,274],[-213,-185],[0,-78],[334,-344],[74,-81],[232,-240],[71,64],[11,-12],[-114,-104],[-11,9],[32,30],[-238,245],[-75,73],[-340,353],[5,96],[220,188],[-89,78],[-97,-97],[-196,-151],[-14,13],[-118,-86],[5,-8],[24,-133],[351,-460],[6,-7],[8,-11],[221,-222],[47,-34],[105,-3],[39,-49],[301,-129],[279,-349],[65,43],[265,-421],[80,30],[805,-992],[55,39],[89,-59],[100,-66],[-26,-29],[-2,-2],[7,-4],[76,-50],[32,22],[414,-354],[-82,-106],[35,-29],[18,-24],[11,-43],[-10,-50],[-3,-16],[52,-46],[63,67],[39,-34],[-15,-16],[-31,26],[-27,-30],[38,-34],[-26,-25],[181,-160],[210,-217],[71,56],[-6,9],[59,43],[16,-21],[-56,-41],[-1,3],[-73,-63],[24,-32],[21,-28],[51,-30],[126,-235],[168,-66],[74,39],[72,-94],[-34,-44],[181,-209],[42,17],[40,-63],[27,-61],[-6,-67],[-31,-8],[43,-534],[81,-3],[-44,-391],[26,-3],[88,-323],[0,-170],[-18,-15],[-15,-22],[7,-28],[1,-6],[3,-6],[11,-7],[4,-2],[1,-6],[15,-170],[19,0],[24,-194],[-22,0],[1,-16],[15,-213],[7,-127],[-19,-1],[6,-86],[17,0],[93,-683],[9,-68],[4,-29],[13,-98],[-5,1],[-16,1],[7,-173],[26,-12],[6,-46],[4,-26],[-83,-68],[-23,-6],[-23,33],[-15,-5],[-1,2],[-13,18],[-633,-196],[-554,-171],[-554,-171],[-308,-95],[-23,1],[-28,19],[-65,225],[35,75],[-55,167],[-113,276],[-57,83],[-33,85],[-82,140],[-56,66],[-160,-23],[-447,4],[-90,10],[-90,4],[-91,0],[-91,-6],[-90,-11],[-89,-16],[-88,-21],[-86,-26],[-48,63],[-18,14],[-43,23],[-54,-5],[-26,101],[-21,69],[-20,14],[-55,14],[-28,6],[-15,-2],[-41,-9],[-25,-29],[-52,-34],[7,-21],[5,-13],[14,-45],[-13,-4],[23,-56],[19,-55],[20,-54],[16,-43],[16,-43],[26,-67],[13,-34],[14,5],[2,-6],[10,-25],[13,-33],[10,-25],[3,-6],[-15,-6],[26,-80],[16,5],[20,-39],[-14,-5],[9,-23],[11,4],[5,-8],[11,-19],[3,-7],[-15,-5],[9,-25],[8,3],[2,-4],[3,-7],[12,-27],[2,-6],[-14,-6],[11,-24],[1,-9],[7,-16],[11,-4],[17,6],[16,-40],[9,-20],[3,-7],[-9,-3],[11,-27],[1,0],[1,-7],[9,-27],[121,45],[8,-17],[-230,-89],[-9,19],[76,29],[-10,25],[-12,-5],[-14,38],[-12,32],[-3,8],[-7,19],[-4,8],[-8,23],[-3,8],[16,6],[-10,25],[-16,-7],[-2,8],[-8,23],[-2,7],[-12,34],[-14,-5],[-14,41],[13,4],[-64,172],[-3,9],[-13,33],[-32,69],[0,0],[-3,7],[10,3],[-14,34],[-13,-4],[-3,6],[-12,26],[-3,6],[11,4],[-10,28],[-2,5],[-10,29],[-14,37],[-9,24],[-2,8],[16,5],[-6,19],[-25,52],[-3,7],[-4,8],[-9,14],[-15,6],[-33,-10],[-3,6],[34,13],[-2,5],[11,4],[-19,32],[-109,-54],[-15,0],[-29,13],[-33,8],[-30,-8],[-23,-24],[-41,20],[-314,-239],[23,-67],[-29,-42],[2,-21],[47,-136],[103,-127],[12,5],[271,-286],[104,-111],[25,-78],[54,9],[82,-247],[-11,-8],[80,-164],[22,7],[21,-62],[53,12],[92,-256],[-9,-43],[-356,-123],[-21,48],[-119,-38],[-6,13],[-1107,-338],[-960,190],[-367,73],[-139,25],[-146,39],[-78,41],[16,26],[-95,147],[-39,-38],[-704,807],[40,32],[-56,59],[-25,26],[-32,-25],[-356,397],[-154,172],[-20,29],[-195,263],[-51,15],[-239,273],[23,17],[-36,54],[40,25],[-15,39],[69,77],[-63,57],[56,33],[-34,88],[-32,235],[50,161],[197,649],[-226,60],[-59,16],[132,501],[-34,10],[-133,-522],[218,-47],[-13,-53],[-236,62],[21,39],[-11,2],[28,110],[-105,24],[-33,-95],[-23,5],[37,119],[129,-34],[101,390],[-95,23],[7,21],[59,-16],[14,60],[25,-4],[-14,-68],[60,-15],[112,502],[68,16],[25,60],[30,59],[32,57],[36,57],[10,14],[-64,66],[332,284],[51,34],[388,261],[-49,53],[68,44],[44,-39],[105,87],[55,89],[40,64],[-53,187],[-101,626],[-73,456],[22,20],[39,35],[-18,125],[-39,-25],[-9,-5],[-40,358],[35,27],[446,355],[184,146],[-136,189],[-63,-64],[11,-10],[-12,-10],[-26,19],[70,75],[-33,15],[-35,9],[-36,5],[-37,0],[-35,-15],[-33,-19],[-31,-23],[-29,-25],[-18,-20],[-16,-21],[-1,-5],[-10,-39],[-30,-36],[-55,1],[-13,1],[-192,-162],[-112,-90],[-330,-268],[-101,-87],[-283,-248],[11,-13],[160,137],[134,100],[9,-11],[-26,-20],[143,-155],[-26,-60],[11,59],[-137,147],[-171,-140],[224,-229],[75,57],[11,-14],[-136,-114],[-10,11],[58,45],[-233,228],[-75,-58],[30,-36],[-36,-28],[249,-436],[70,33],[6,-11],[-82,-39],[-257,456],[-25,-20],[-29,34],[22,17],[-18,23],[-80,-60],[555,-1243],[-628,-503],[34,-39],[12,12],[51,-41],[-20,-12],[-18,15],[-40,-42],[26,-26],[-11,-8],[-60,54],[4,6],[-29,34],[-758,-649],[-36,-52],[5,-65],[222,-245],[5,-9],[2,-9],[2,-10],[0,-10],[-85,-331],[31,-8],[70,270],[15,-4],[-176,-676],[-13,5],[102,395],[-34,5],[-87,-343],[-4,-7],[-5,-8],[-6,-6],[-7,-6],[-8,-5],[-305,-251],[283,-313],[58,44],[-113,-97],[40,44],[-279,314],[-190,-145],[-5,-5],[-6,-4],[-7,-2],[-7,-2],[-7,0],[-6,0],[-41,-13],[470,-523],[63,51],[6,-7],[-139,-111],[-30,33],[64,51],[-443,498],[-205,-165],[604,-669],[66,53],[12,-11],[-155,-122],[-9,11],[72,54],[-601,677],[-32,-27],[-32,-13],[-18,-5],[-1,-41],[-10,-141],[173,-272],[118,-131],[108,-79],[119,-114],[65,-133],[-2,-17],[392,-433],[578,-638],[-67,-55],[944,-1060],[63,-17],[52,28],[401,-455],[-78,-55],[289,-328],[267,-59],[17,-9],[11,-5],[35,-50],[22,43],[6,-2],[30,89],[-12,4],[0,8],[8,-3],[75,-26],[-4,-8],[-58,22],[-30,-87],[10,-4],[-3,-6],[-20,-40],[17,-17],[-5,-4],[-1,0],[52,-52],[12,9],[58,-65],[195,185],[-101,104],[12,10],[108,-112],[-212,-204],[4,-6],[-18,-19],[6,-9],[45,-25],[50,-45],[71,62],[4,-4],[24,26],[-9,9],[50,50],[-71,64],[116,116],[9,-13],[-105,-96],[-2,-6],[58,-53],[9,-1],[144,145],[10,-11],[-184,-178],[9,-10],[-22,-27],[-3,1],[-25,-18],[4,-6],[-73,-63],[44,-30],[22,-15],[33,-25],[10,-7],[34,-2],[42,-6],[37,-15],[134,207],[-4,2],[104,168],[20,-11],[-91,-144],[80,-42],[-15,-24],[-86,48],[-24,-39],[3,-2],[-109,-167],[23,-7],[43,-4],[38,0],[71,-8],[27,-6],[60,-3],[66,-10],[81,-14],[105,-8],[90,2],[102,12],[121,0],[110,-15],[4,63],[-145,12],[-216,21],[-92,11],[-8,7],[-136,62],[9,22],[14,-5],[-6,-10],[129,-58],[32,-6],[1,26],[142,-16],[120,-11],[110,-8],[2,12],[45,-4],[1,25],[9,-1],[10,92],[-49,9],[-2,0],[-285,50],[-1,0],[-69,12],[-6,2],[-14,2],[-16,3],[-11,2],[-13,2],[-14,2],[-15,3],[-11,2],[-14,3],[-12,2],[-20,3],[-10,-4],[-32,-34],[-67,13],[24,116],[8,-3],[-20,-100],[45,-7],[19,103],[8,0],[-9,-52],[7,-11],[12,-2],[32,-5],[4,-1],[66,-11],[1,-1],[22,-3],[3,-1],[77,-13],[7,-1],[18,-3],[17,-3],[17,-3],[22,-4],[15,-2],[20,-4],[13,-2],[22,-4],[9,-1],[27,-5],[10,-2],[18,-3],[13,-2],[25,-4],[12,-2],[25,-4],[14,-3],[23,-4],[19,-3],[16,-3],[18,-3],[14,-1],[19,-2],[16,-1],[19,-2],[25,-2],[17,-1],[20,-2],[15,-1],[20,-2],[15,-1],[21,-2],[10,0],[25,-2],[13,-2],[2,0],[37,-3],[20,-2],[28,-2],[8,7],[5,51],[7,-1],[-10,-94],[6,-9],[33,-1],[4,100],[13,-1],[-7,-115],[-68,5],[3,42],[-30,3],[-13,1],[-284,26],[-6,-35],[-14,-133],[19,-2],[265,-41],[12,-1],[7,-2],[1,0],[66,-10],[10,44],[8,-1],[-15,-61],[-12,3],[1,6],[-101,16],[-125,19],[-142,22],[-2,-45],[43,-6],[-2,-17],[355,-58],[98,-17],[10,94],[3,207],[-8,0],[-1,14],[30,4],[12,2],[14,1],[22,3],[17,2],[12,1],[22,3],[11,1],[15,2],[20,3],[16,2],[19,2],[16,2],[21,2],[20,3],[15,1],[16,2],[17,2],[17,3],[16,1],[24,3],[11,2],[25,3],[2,0],[23,3],[4,0],[34,4],[15,2],[22,3],[12,1],[21,3],[9,1],[30,3],[13,2],[27,3],[7,1],[14,2],[18,2],[17,2],[13,1],[19,3],[13,1],[18,3],[18,2],[18,2],[19,2],[20,3],[9,1],[18,2],[15,2],[21,2],[17,2],[11,2],[18,2],[17,2],[18,2],[13,1],[20,3],[11,1],[24,3],[13,2],[18,2],[-5,58],[10,0],[11,-118],[-8,-1],[-5,35],[-6,7],[-12,-1],[-312,-37],[-15,-2],[-18,-2],[-9,-1],[-12,-2],[-18,-2],[-22,-3],[-4,0],[-17,-2],[-16,-2],[-13,-2],[-17,-2],[-14,-1],[-16,-2],[-16,-2],[-12,-1],[-14,-2],[-16,-2],[-10,-1],[-20,-3],[-13,-1],[-14,-2],[-18,-2],[-9,-1],[-14,-2],[-17,-2],[-12,-1],[-18,-2],[-11,-2],[-15,-1],[-16,-2],[-16,-2],[-79,-9],[-3,-1],[-171,-20],[-7,-201],[4,-8],[6,-3],[29,1],[19,2],[5,0],[19,1],[5,0],[20,1],[5,1],[19,1],[7,0],[17,1],[7,1],[21,1],[6,0],[19,1],[7,1],[23,1],[7,1],[19,1],[6,0],[22,1],[5,1],[20,1],[8,0],[17,1],[10,1],[15,1],[16,1],[14,0],[16,1],[9,1],[13,1],[15,1],[14,0],[14,1],[11,1],[18,1],[10,0],[16,1],[25,2],[1,0],[12,1],[13,0],[16,1],[13,1],[15,1],[10,1],[25,1],[4,0],[7,1],[1,0],[70,4],[1,0],[56,3],[2,4],[-5,47],[8,1],[6,-63],[-522,-41],[-17,-1],[-207,-16],[-66,-5],[-7,-67],[34,-17],[52,-12],[80,-12],[86,-11],[19,-2],[17,4],[51,15],[61,10],[48,17],[50,19],[32,7],[30,2],[19,-3],[24,-9],[24,-19],[18,-11],[28,-10],[27,-7],[52,-11],[64,-23],[56,-43],[29,-26],[54,-35],[19,-46],[27,-42],[42,-46],[31,-4],[34,-5],[35,5],[14,28],[14,33],[40,16],[57,9],[57,27],[67,40],[19,33],[-20,47],[43,31],[57,28],[30,12],[32,39],[61,16],[47,0],[50,12],[-9,34],[28,20],[35,0],[27,-12],[21,-8],[42,21],[46,41],[-27,28],[17,28],[62,3],[68,14],[35,6],[43,-33],[22,-24],[52,3],[49,49],[39,36],[47,36],[40,-2],[67,-16],[44,-5],[41,10],[26,-22],[50,-14],[38,26],[45,47],[92,18],[57,17],[57,-17],[52,13],[51,28],[50,15],[29,-2],[23,26],[38,-8],[22,13],[2,27],[33,14],[36,-13],[31,3],[33,20],[45,8],[19,-18],[28,13],[22,-18],[70,-13],[119,-25],[47,25],[31,-22],[168,-38],[143,35],[132,41],[86,64],[35,14],[50,-13],[57,-26],[47,-23],[10,-35],[52,-10],[104,-13],[36,-18],[21,-29],[-2,-40],[14,20],[21,41],[23,47],[24,41],[40,-11],[45,-17],[22,-4],[78,24],[38,92],[53,-9],[39,24],[27,0],[42,13],[14,33],[42,19],[38,50],[49,23],[56,0],[104,66],[45,56],[39,0],[55,-4],[70,20],[21,23],[41,-3],[136,86],[73,3],[108,16],[66,-13],[31,-27],[67,37],[59,3],[97,-17],[70,0],[59,50],[83,33],[84,-10],[73,-24],[118,0],[188,76],[206,105],[119,32],[53,16],[47,12],[24,4],[23,2],[41,-2],[41,-7],[39,-12],[38,-18],[49,-13],[48,-19],[45,-24],[43,-28],[38,-33],[47,-42],[47,-44],[43,-16],[27,59],[8,12],[10,9],[17,0],[16,-5],[28,-12],[38,-16],[45,-17],[23,0],[23,-4],[19,-3],[25,1],[10,2],[1,5],[-13,7],[-4,6],[6,6],[9,4],[21,5],[21,12],[10,0],[16,-5],[12,-7],[9,4],[11,-1],[8,-3],[37,-23],[46,-30],[19,-12],[12,0],[16,6],[9,4],[16,0],[37,-7],[63,-12],[48,-12],[43,-9],[45,-10],[47,-10],[23,2],[22,1],[11,1],[4,5],[2,8],[6,2],[20,6],[26,2],[21,3],[16,7],[13,7],[14,11],[10,2],[22,-2],[30,-10],[17,-8],[19,-10],[23,-12],[19,-7],[17,-2],[26,-4],[20,-3],[21,-7],[18,-1],[32,-9],[42,-13],[44,-12],[34,-15],[29,-9],[42,-16],[20,-2],[33,-5],[36,-4],[33,-5],[25,-2],[25,0],[32,5],[19,6],[21,5],[0,12],[3,11],[4,10],[5,9],[8,9],[8,7],[6,4],[9,4],[9,3],[10,2],[24,-1],[28,2],[18,1],[19,8],[17,8],[12,2],[28,3],[21,5],[20,12],[13,11],[19,11],[13,2],[16,-4],[24,-4],[49,-13],[18,-1],[44,-5],[37,-6],[35,-9],[68,-24],[39,-12],[36,-7],[49,-11],[48,-5],[42,-1],[28,2],[13,1],[9,7],[7,12],[4,8],[4,3],[11,-1],[12,-4],[10,0],[14,7],[11,14],[16,22],[28,35],[23,31],[24,23],[27,20],[12,7],[18,3],[27,3],[16,6],[9,8],[23,14],[25,5],[32,2],[31,-2],[26,-4],[35,-12],[82,-22],[67,-16],[47,-11],[39,-10],[28,-8],[20,0],[27,1],[22,1],[20,0],[27,4],[33,4],[24,1],[41,-1],[36,2],[24,2],[24,11],[27,13],[16,13],[22,11],[16,2],[21,4],[47,12],[35,12],[19,12],[18,6],[18,3],[19,-3],[17,-4],[9,-2],[10,-2],[26,0],[32,5],[94,13],[34,5],[12,5],[10,8],[-6,7],[1,4],[17,18],[24,13],[13,6],[18,4],[11,-7],[7,-6],[13,-6],[11,3],[5,13],[5,33],[-2,24],[6,21],[10,20],[13,18],[17,15],[27,20],[19,14],[25,32],[13,7],[18,25],[20,11],[18,14],[17,15],[18,15],[25,14],[27,8],[21,12],[23,8],[26,14],[33,10],[24,12],[34,23],[29,15],[42,14],[26,10],[14,0],[36,5],[29,10],[20,1],[19,0],[32,6],[25,7],[28,12],[29,14],[28,13],[20,8],[19,13],[19,14],[22,12],[28,7],[23,5],[30,5],[30,8],[23,16],[28,12],[30,20],[16,5],[27,13],[20,4],[23,6],[19,4],[14,8],[55,37],[26,16],[11,4],[12,5],[9,3],[9,1],[11,1],[7,0],[10,0],[14,1],[6,1],[4,2],[5,9],[1,9],[-2,10],[-3,15],[-2,18],[0,11],[5,18],[9,18],[13,19],[15,17],[15,13],[16,14],[13,12],[19,16],[21,14],[23,13],[14,7],[8,2],[101,37],[52,20],[27,14],[21,9],[13,15],[3,8],[1,0],[14,9],[16,3],[17,3],[17,5],[13,4],[19,8],[17,11],[14,12],[20,25],[12,13],[19,15],[19,6],[25,6],[24,6],[83,48],[30,18],[37,17],[37,13],[51,13],[66,15],[67,5],[55,0],[62,1],[39,1],[34,-5],[30,-4],[46,-12],[34,-11],[22,-8],[32,-6],[42,-5],[55,-7],[70,-13],[48,-8],[47,-7],[53,-8],[46,-5],[41,-3],[43,-8],[47,-5],[72,-5],[67,-9],[58,-4],[46,-2],[58,0],[156,8],[73,3],[52,4],[55,2],[26,-12],[27,-8],[28,-3],[28,1],[28,6],[26,11],[24,14],[21,18],[18,22],[13,24],[9,25],[-1,9],[0,9],[2,8],[4,8],[5,7],[6,7],[7,5],[8,4],[333,138],[607,-722],[165,-335],[-180,-336],[37,-220],[-274,-340],[17,-107],[22,-106],[28,-105],[33,-104],[38,-102],[43,-100],[48,-99],[53,-96],[58,-93],[28,-20],[25,-25],[20,-27],[15,-31],[10,-32],[4,-33],[-1,-34],[-7,-33],[0,-66],[5,-66],[9,-65],[15,-65],[20,-63],[24,-62],[29,-61],[34,-57],[29,-60],[25,-62],[20,-63],[15,-65],[10,-65],[-9,-46],[-4,-46],[2,-46],[6,-46],[11,-45],[17,-43],[21,-42],[25,-39],[30,-37],[34,-33],[16,-26],[12,-27],[9,-29],[5,-30],[1,-29],[-1,-33],[4,-32],[9,-32],[12,-31],[17,-28],[20,-27],[24,-23],[17,-16],[15,-19],[12,-21],[8,-22],[4,-23],[0,-23],[-3,-24],[-8,-22],[-5,-31],[1,-31],[5,-30],[11,-30],[17,-27],[20,-24],[17,-31],[11,-33],[6,-35],[0,-35],[-5,-34],[-12,-33],[-17,-31],[-4,-120],[1,-119],[7,-120],[12,-118],[19,-119],[24,-117],[30,-116],[35,-115],[41,-113],[47,-111],[51,-109],[57,-106],[63,-104],[67,-102],[33,-58],[28,-60],[24,-63],[18,-63],[14,-65],[8,-66],[3,-66],[-2,-66],[-7,-66],[-12,-65],[-18,-64],[-3,-123],[0,-123],[5,-123],[9,-123],[13,-124],[18,-124],[22,-124],[531,-1990],[304,65],[5,-22],[-304,-64],[114,-479],[221,-428],[235,40],[6,1],[28,-142],[-229,-40],[30,-167],[7,-137],[134,-169],[11,-13],[7,-36],[12,-64],[0,-132],[-66,-100],[-39,-175],[52,-213],[12,-98],[14,-97],[27,-159],[32,-157],[38,-156],[42,-155],[48,-154],[53,-152],[58,-151],[63,-148],[68,-147],[73,-145],[78,-142],[29,-27],[26,-31],[22,-33],[19,-35],[13,-37],[9,-38],[724,-1163],[-1849,-3685],[-1264,-419],[-77,-105],[74,-228],[-199,-66],[-48,90],[-110,-10],[-109,-5],[-78,-6],[-77,-11],[-76,-16],[-75,-20],[-74,-24],[-72,-29],[-69,-33],[-90,-55],[-92,-52],[-94,-47],[-96,-44],[-87,-38],[-89,-33],[-91,-29],[-92,-23],[-94,-19],[-64,-8],[-64,-4],[-65,-1],[-73,-9],[-74,-5],[-37,-5],[-35,-9],[-34,-13],[-32,-16],[-31,-19],[-24,-19],[-23,-21],[-9,-4],[-9,-3],[-10,-1],[-10,1],[-10,1],[-6,6],[-7,4],[-8,3],[-8,1],[-8,1],[-5,-1],[-6,-1],[-4,-2],[-66,-34],[-69,-29],[-70,-25],[-73,-20],[-73,-16],[-75,-10],[-75,-6],[-75,-1],[-13,0],[-47,-1],[-47,-6],[-46,-10],[-45,-15],[-43,-19],[-3,-1],[-59,-22],[-60,-16],[-62,-11],[-62,-5],[-63,0],[-63,5],[-26,-9],[-29,-5],[-40,2],[-91,5],[-65,21],[-66,17],[-68,12],[-68,8],[-68,3],[-69,-1],[-68,-6],[-68,-11],[-66,-15],[-66,-19],[-27,-38],[-31,-34],[-34,-32],[-38,-29],[-40,-24],[-43,-21],[-44,-17],[-46,-13],[-71,-9],[-71,-6],[-71,-1],[-71,3],[-71,8],[-70,12],[-70,16],[-443,31],[-44,1],[-45,-5],[-43,-11],[-42,-15],[-39,-20],[-37,-25],[-33,-29],[-28,-32],[-25,-36],[-99,-51],[-102,-46],[-104,-42],[-106,-38],[-107,-33],[-109,-29],[-111,-24],[-111,-19],[-116,-25],[-115,-28],[-114,-34],[-113,-37],[-110,-42],[-109,-46],[-85,-37],[-85,-39],[-69,-31],[-71,-27],[-73,-23],[-74,-18],[-76,-14],[-76,-9],[-76,-5],[-77,1],[-77,4],[-76,10],[-32,163],[-37,162],[-42,162],[-47,160],[-51,159],[-56,157],[-60,156],[-65,154],[-70,153],[-74,150],[-78,149],[-55,50],[-51,53],[-46,57],[-43,59],[-37,63],[-34,64],[-28,67],[-25,87],[-21,89],[-16,89],[-11,90],[-6,91],[0,90],[4,91],[10,90],[15,89],[19,89],[25,87],[30,86],[34,85],[39,83],[44,80],[76,248],[74,248],[17,95],[12,95],[8,96],[2,96],[-2,96],[-8,96],[-13,95],[-17,95],[-23,93],[-27,93],[-187,390],[-18,27],[-14,28],[-10,31],[-6,31],[-2,32],[3,31],[1,9],[-3,18],[-8,22],[-23,46],[-110,145],[-67,113],[-75,111],[-68,78],[-75,77],[-98,128],[-80,88],[-71,113],[-32,53],[-8,17],[-5,19],[-1,8],[0,13],[-3,29],[5,25],[11,26],[29,48],[44,70],[28,56],[30,117],[9,79],[-6,71],[-9,38],[-14,38],[-52,106],[-33,54],[-42,69],[-35,71],[-32,56],[-13,35],[2,30],[12,29],[11,21],[10,22],[1,24],[-15,48],[-11,32],[-26,43],[-50,76],[-52,87],[-47,63],[-32,49],[-27,46],[-34,67],[-45,62],[-23,30],[-39,32],[-30,25],[-84,-65],[-25,23],[-55,-46],[-4,5],[-56,-42],[13,-16],[-58,-43],[-19,-19],[-171,-137],[-47,53],[63,50],[13,11],[104,83],[71,56],[11,-13],[45,36],[5,-5],[8,6],[-5,6],[50,40],[-8,9],[101,77],[-10,18],[-12,15],[-16,13],[-17,11],[-44,15],[-42,20],[-39,25],[-36,29],[-32,32],[-29,36],[-25,25],[-29,22],[-31,17],[-35,13],[-35,7],[-37,3],[-37,-3],[-20,-27],[-39,-142],[-26,8],[3,7],[5,-2],[34,120],[1,3],[-40,10],[-1,-3],[-31,-114],[-5,1],[-4,-12],[-34,9],[-148,-75],[-32,57],[-126,-61],[-371,-179],[31,-58],[-44,-16],[-24,-12],[-8,14],[43,21],[-29,54],[158,76],[21,11],[357,172],[30,-56],[163,83],[39,114],[4,-1],[4,16],[1,3],[-78,15],[-30,18],[-24,-1],[-43,6],[-24,5],[-23,3],[-25,-2],[-57,-5],[-42,-1],[-39,-1],[-29,2],[-19,-1],[-39,-5],[-60,-11],[-42,-12],[-39,-15],[-31,-15],[-16,-6],[-37,-20],[-38,-20],[-18,-11],[-27,-17],[-30,-18],[-29,-9],[-14,-6],[-9,-10],[-6,-10],[-30,-40],[-54,-53],[-41,-33],[-34,-25],[-23,-23],[-19,-25],[-31,-24],[-28,-21],[-16,-15],[-8,-14],[-9,-11],[-8,-6],[-7,-1],[-13,2],[-29,0],[-17,-3],[-16,-12],[-6,-9],[-5,-7],[-14,-13],[-15,-7],[-15,-8],[-9,-11],[-1,-6],[-4,-9],[-9,-7],[-28,-7],[-21,4],[-21,-1],[-20,-5],[-20,-2],[-16,1],[-21,5],[-39,10],[-39,7],[-71,3],[-19,1],[-19,0],[-41,2],[-40,-1],[-30,-4],[-24,-5],[-24,-11],[-32,-9],[-22,-7],[-23,-17],[-17,-12],[-21,-7],[-50,-7],[-56,-5],[-21,-3],[-9,-2],[-1,0],[-13,-8],[-44,-13],[-22,-13],[-14,-13],[-8,-6],[-24,-13],[-20,-10],[-6,-5],[-5,-7],[-2,-14],[1,-15],[-1,-17],[-4,-10],[-15,-9],[-64,-17],[-19,-4],[-43,0],[-64,2],[-76,-6],[-46,-7],[-24,-9],[-24,-12],[-10,-8],[-8,-9],[-6,-10],[-5,-11],[-2,-12],[-3,-4],[-4,-3],[-4,-3],[-5,-2],[-5,-2],[-5,-1],[-5,1],[-5,1],[-5,1],[-4,3],[-4,3],[-42,29],[-309,88],[-135,102],[-45,20],[-50,10],[-382,187],[-9,3],[-7,4],[-7,6],[-6,6],[-4,8],[-3,8],[-2,8],[13,6],[12,8],[11,10],[9,11],[6,13],[5,13],[2,14],[-8,61],[-14,61],[-19,60],[-71,36],[-71,34],[-73,31],[-43,11],[-44,5],[-45,1],[-45,-4],[-43,-9],[-42,-15],[-40,-18],[-45,-33],[-41,-35],[-37,-39],[-34,-42],[-30,-45],[-26,-47],[-21,-49],[-16,-50],[12,-27],[17,-25],[21,-22],[25,-18],[27,-13],[30,-10],[30,-4],[31,1],[18,8],[20,5],[21,3],[22,-1],[21,-3],[21,-2],[21,-4],[19,-8],[19,-10],[16,-13],[14,-15],[12,-17],[9,-18],[57,-75],[6,-39],[-32,-23],[-13,-8],[-4,-8],[-1,-3],[4,-7],[-5,-13],[-13,-14],[-22,-10],[-112,-12],[-112,-9],[-152,-28],[-165,-30],[-74,-13],[-94,-15],[-115,-21],[-94,-20],[-94,-25],[-119,-39],[-103,-37],[-111,-45],[-155,-78],[-65,-30],[-64,-28],[-131,-58],[-122,-51],[-84,-32],[-141,-43],[-93,-34],[-115,-36],[-100,-30],[-44,-13],[-87,-29],[-70,-29],[-55,-21],[-61,-21],[-56,0],[-56,6],[-54,10],[-54,14],[-52,20],[-50,23],[-47,28],[-45,32],[-42,35],[-37,39],[-29,35],[-34,39],[-34,29],[-50,60],[-34,208],[4,29],[6,46],[13,48],[13,41],[12,40],[4,44],[1,12],[3,8],[5,6],[1,-1],[6,-5],[6,-12],[4,-11],[3,-6],[4,-10],[6,-5],[10,-2],[14,3],[21,5],[23,14],[25,21],[10,18],[16,44],[2,20],[2,8],[6,14],[16,29],[6,18],[1,4],[3,16],[-2,20],[-9,13],[-5,12],[-6,25],[-23,75],[-12,37],[-6,17],[-19,62],[-14,54],[-6,22],[-19,74],[-20,87],[-15,65],[-10,46],[-17,54],[-6,35],[-7,38],[-6,58],[-6,88],[1,47],[4,43],[12,78],[11,72],[3,50],[-1,7],[-3,5],[-4,3],[-2,5],[3,13],[4,7],[5,4],[4,12],[1,11],[-3,13],[-1,4],[1,3],[5,3],[2,-3],[2,-1],[17,48],[11,40],[26,78],[15,43],[17,39],[7,18],[1,12],[-2,9],[0,2],[-7,3],[-9,8],[-3,12],[1,7],[1,6],[5,7],[8,5],[4,17],[-3,67],[-2,64],[-1,14],[-4,9],[-6,6],[-7,9],[-1,5],[-1,5],[5,5],[3,1],[10,7],[4,8],[3,18],[11,70],[-1,31],[-2,17],[-5,13],[-6,12],[-8,14],[-5,12],[-2,5],[4,3],[2,0],[10,1],[5,5],[-1,9],[-4,13],[-7,15],[-6,9],[-3,12],[2,5],[9,7],[14,10],[2,8],[-4,7],[-9,7],[0,3],[3,8],[9,13],[11,21],[10,23],[16,19],[5,14],[7,8],[6,1],[6,6],[5,12],[2,29],[-5,9],[-4,8],[-6,14],[-4,14],[0,18],[4,37],[9,68],[0,35],[-3,29],[-5,19],[0,10],[8,15],[5,12],[1,2],[4,13],[1,7],[-6,15],[0,4],[0,11],[6,11],[3,10],[2,11],[-2,16],[-2,12],[1,8],[8,17],[5,17],[2,19],[2,62],[2,24],[18,106],[8,40],[-3,21],[-5,18],[-3,22],[1,22],[1,21],[-2,17],[-4,20],[-26,62],[-10,16],[-14,18],[-7,8],[-1,14],[2,9],[4,9],[2,5],[0,14],[-5,12],[-29,67],[-5,10],[-9,18],[-9,17],[-9,24],[-4,21],[-4,22],[2,25],[0,18],[-3,16],[-5,19],[-3,17],[2,13],[4,8],[10,6],[12,17],[0,1],[2,12],[-2,19],[-3,33],[-2,14],[-1,5],[-7,9],[-7,4],[-6,10],[0,5],[0,9],[-4,34],[-4,34],[-5,33],[-14,46],[-2,8],[-2,7],[-3,8],[-3,7],[-3,7],[-4,7],[-3,4],[-3,3],[-3,3],[-4,2],[-4,2],[-4,2],[-5,1],[-5,1],[-5,1],[-5,-1],[-2,1],[-3,0],[-2,2],[-2,1],[-2,2],[-1,2],[1,7],[1,4],[1,3],[2,3],[2,7],[2,6],[1,7],[1,6],[0,7],[-1,7],[-2,7],[-2,7],[-3,7],[-4,7],[-4,6],[-4,6],[-3,6],[-3,7],[-2,6],[-2,7],[-10,44],[-2,10],[-2,10],[-1,10],[1,10],[2,9],[2,9],[2,9],[3,9],[4,8],[3,12],[3,11],[3,11],[2,12],[2,11],[1,12],[1,11],[0,70],[-2,8],[-2,8],[-2,8],[-3,8],[-3,7],[-4,8],[-23,24],[-3,5],[-3,5],[-3,5],[-2,6],[-1,5],[-1,5],[-2,3],[-2,4],[-2,4],[-3,3],[-3,3],[-4,6],[-4,6],[-4,7],[-3,6],[-2,6],[-2,6],[-2,6],[-1,6],[0,6],[0,6],[0,11],[1,12],[1,12],[2,12],[4,4],[4,5],[3,6],[3,5],[3,6],[2,6],[1,6],[1,6],[0,6],[-1,6],[-1,6],[-2,6],[-2,6],[-2,5],[-20,31],[-2,7],[-3,7],[-1,8],[-1,8],[-1,7],[0,8],[4,13],[2,12],[3,13],[-1,5],[-1,5],[1,5],[0,5],[1,5],[3,6],[2,6],[2,6],[2,6],[1,7],[0,13],[0,13],[0,13],[-2,13],[2,15],[0,15],[1,14],[-1,15],[-1,15],[-2,9],[-3,9],[-3,9],[-4,9],[-4,8],[-18,38],[-2,15],[-1,15],[-1,16],[0,12],[0,13],[1,13],[1,12],[2,13],[8,34],[2,9],[2,9],[2,8],[3,9],[3,8],[4,26],[3,26],[5,26],[1,6],[1,5],[0,2],[0,7],[-1,7],[0,7],[-2,7],[-1,24],[-1,3],[1,3],[1,3],[1,3],[2,3],[3,3],[2,4],[2,3],[1,4],[2,4],[2,9],[2,9],[1,9],[1,9],[0,9],[0,9],[-1,10],[-1,9],[-2,9],[-3,9],[-12,31],[-4,16],[-2,15],[-3,16],[-2,15],[-2,16],[-2,9],[-2,9],[-3,9],[-4,8],[-4,9],[-4,8],[-5,8],[-6,6],[-8,5],[-7,5],[-8,5],[-3,2],[-3,2],[-2,3],[-2,4],[-2,3],[0,4],[-20,35],[-5,11],[-5,11],[-5,11],[-4,12],[-3,12],[-3,12],[-3,12],[-5,18],[-4,18],[-3,18],[-3,19],[-3,18],[-2,18],[-2,9],[-2,9],[-2,9],[-3,9],[-4,8],[-4,8],[-4,9],[-5,8],[-5,7],[-5,8],[-9,9],[-8,10],[-8,10],[-7,10],[-5,8],[-5,8],[-5,9],[-4,9],[-4,9],[-4,12],[-3,12],[-2,13],[0,3],[-1,4],[0,3],[1,4],[1,3],[1,3],[2,3],[3,4],[2,4],[1,4],[1,5],[1,4],[0,5],[0,4],[-1,6],[-2,6],[-2,5],[-3,6],[-4,5],[-6,11],[-6,11],[-7,10],[-6,12],[-7,12],[-7,12],[-7,9],[-6,10],[-6,10],[-5,10],[-4,10],[-4,10],[-4,11],[-2,10],[-3,11],[-3,10],[-4,10],[-4,10],[-5,9],[-5,10],[-5,9],[-6,9],[-7,9],[-7,8],[-39,47],[-13,10],[-13,10],[-13,11],[-12,11],[-9,9],[-10,10],[-8,9],[-8,10],[-3,6],[-4,6],[-4,5],[-4,5],[-10,8],[-9,9],[-9,9],[-3,4],[-3,4],[-3,4],[-2,5],[-2,2],[-2,3],[-3,2],[-3,1],[-3,1],[-6,3],[-4,3],[-5,4],[-4,4],[-3,4],[-14,16],[-14,15],[-13,16],[-3,2],[-2,3],[-1,2],[-2,3],[0,3],[-1,3],[1,3],[0,7],[0,13],[-1,6],[-2,7],[-2,6],[-3,6],[-3,5],[-4,6],[-4,5],[-4,5],[-5,5],[-5,3],[-5,4],[-5,5],[-5,4],[-4,5],[-6,8],[-5,8],[-4,8],[-2,8],[-3,9],[-4,8],[-2,4],[-3,3],[-3,3],[-4,3],[-4,2],[-2,3],[-1,3],[-2,4],[0,3],[0,3],[0,4],[1,8],[0,8],[0,7],[-3,8],[-2,7],[-4,7],[-4,7],[-4,6],[-5,5],[-6,5],[-6,4],[-3,5],[-4,5],[-3,6],[-2,5],[-2,6],[-7,34],[-1,6],[-1,6],[0,6],[0,6],[0,13],[-1,14],[-1,14],[0,5],[0,6],[-1,5],[-2,5],[-2,5],[-3,5],[-4,5],[-4,4],[-4,5],[-5,3],[-5,4],[-5,3],[-14,15],[-8,12],[-7,13],[-7,14],[-6,13],[-6,14],[-1,5],[-1,5],[-1,5],[0,5],[0,6],[1,5],[1,5],[1,8],[1,7],[0,8],[-1,8],[-1,8],[-4,10],[-4,11],[-4,10],[-6,9],[-2,6],[-4,5],[-3,6],[-4,5],[-5,4],[-5,5],[-12,16],[-13,18],[-12,17],[-2,4],[-3,3],[-3,3],[-4,3],[-4,2],[-4,2],[-4,5],[-4,6],[-4,7],[-3,6],[-3,7],[-2,6],[-4,13],[-5,13],[-5,13],[-3,4],[-3,5],[-2,5],[-1,5],[-1,5],[-1,5],[1,5],[3,6],[2,7],[2,7],[2,7],[1,7],[-1,2],[-1,2],[-1,3],[-2,1],[-2,2],[-2,1],[-3,1],[-3,1],[0,0],[-28,3],[-17,4],[-17,4],[-17,5],[-17,6],[-17,5],[-4,1],[-4,2],[-4,1],[-4,2],[-4,3],[-3,3],[-3,3],[-3,3],[-2,4],[-1,3],[-2,2],[-3,2],[-2,2],[-3,1],[-3,1],[-4,0],[-8,1],[-9,2],[-8,2],[-9,3],[-8,3],[-12,11],[-12,11],[-11,11],[-11,12],[-13,11],[-13,12],[-12,12],[-12,13],[-11,12],[-11,14],[-7,9],[-5,10],[-6,10],[-4,10],[-5,11],[-3,11],[-3,4],[-2,4],[-2,5],[-1,5],[-1,5],[0,5],[0,5],[3,6],[3,7],[4,6],[4,6],[0,3],[0,2],[0,2],[-1,3],[-2,2],[-2,1],[-2,2],[-2,0],[-2,1],[-12,2],[-12,2],[-12,1],[-6,0],[-5,1],[-5,2],[-5,2],[-4,3],[-4,3],[-5,5],[-5,5],[-4,6],[-4,6],[-3,6],[-2,6],[-2,7],[-2,3],[0,3],[-1,3],[1,3],[0,3],[2,3],[1,2],[2,3],[4,3],[4,3],[3,4],[2,4],[2,5],[2,4],[1,5],[0,4],[0,6],[-1,6],[-2,6],[-2,5],[-3,6],[-5,5],[-5,6],[-4,7],[-4,6],[-3,7],[-2,5],[-2,6],[-1,5],[-1,5],[0,6],[2,2],[2,3],[1,2],[0,3],[0,3],[0,3],[-2,3],[-5,6],[-5,6],[-7,5],[-4,3],[-4,3],[-3,3],[-3,4],[-3,4],[-1,8],[0,9],[1,8],[-1,7],[-2,6],[-2,7],[-3,6],[-3,7],[-3,6],[-4,5],[-4,6],[-3,4],[-3,4],[-3,4],[-4,3],[-5,3],[-4,3],[-5,0],[-5,0],[-4,1],[-2,5],[-1,4],[-1,5],[0,5],[0,5],[-1,5],[-1,6],[-2,5],[-2,4],[-7,13],[-7,12],[-8,11],[-9,12],[-8,11],[-10,11],[-9,10],[-10,11],[-3,2],[-3,3],[-3,2],[-3,2],[-4,1],[-4,1],[-4,1],[-4,0],[-4,-1],[-6,1],[-6,1],[-6,2],[-5,2],[-6,3],[-5,3],[-5,3],[-4,4],[-3,4],[-3,4],[-3,3],[-4,3],[-4,3],[-4,2],[-5,2],[-3,0],[-2,0],[-3,1],[-2,1],[-2,1],[-1,2],[-1,2],[0,9],[0,9],[2,9],[1,5],[0,5],[0,5],[0,5],[-1,4],[-1,5],[-2,5],[-2,5],[-3,4],[-5,7],[-5,8],[-6,7],[-7,6],[-5,10],[-5,9],[-4,10],[-7,16],[-6,16],[-6,17],[-14,39],[-4,9],[-5,8],[-5,7],[-6,7],[-4,6],[-5,6],[-4,6],[-3,6],[-3,6],[-3,7],[-2,7],[-10,15],[-8,15],[-8,16],[-4,6],[-3,7],[-3,6],[-2,7],[-2,7],[-1,7],[1,26],[1,4],[0,3],[0,3],[-1,3],[-2,3],[-2,3],[-2,2],[-4,3],[-5,3],[-5,2],[-4,2],[-6,2],[-5,3],[-4,3],[-4,4],[-4,4],[-4,5],[-4,6],[-4,7],[-5,6],[-19,11],[-3,1],[-3,2],[-2,2],[-2,2],[-1,3],[-2,2],[0,3],[-2,8],[-3,7],[-3,8],[-4,3],[-4,2],[-4,3],[-5,1],[-7,3],[-7,1],[-7,1],[-4,1],[-3,2],[-4,2],[-2,2],[-3,2],[-11,18],[-16,41],[-12,18],[-56,53],[-19,13],[-24,26],[-19,14],[-23,9],[-36,9],[-33,18],[-10,19],[-3,5],[-8,19],[-22,24],[-20,8],[-18,-2],[-21,-7],[-55,56],[-16,7],[-31,7],[-32,14],[-27,23],[-21,8],[-21,-6],[-4,1],[-9,2],[-15,7],[-10,7],[-9,9],[-2,3],[-10,4],[-7,2],[-10,4],[-13,8],[-10,7],[-11,3],[-15,4],[-7,3],[-11,7],[-11,2],[-14,-1],[-9,-1],[-5,1],[-7,6],[-22,34],[-7,15],[-4,6],[-11,6],[-11,3],[-7,-1],[-10,-7],[-7,-3],[-8,2],[-10,10],[-7,20],[-8,14],[-6,8],[-8,5],[-31,10],[-17,10],[-9,9],[0,9],[3,7],[5,6],[3,6],[0,9],[-3,9],[-5,11],[-9,12],[-11,8],[-9,4],[-10,2],[-10,-2],[-12,-7],[-11,-6],[-13,-2],[-10,2],[-28,9],[-13,5],[-14,5],[-15,8],[-13,10],[-4,13],[1,6],[2,6],[2,9],[-2,5],[-4,3],[-4,1],[-11,-7],[-16,-16],[-9,-6],[-9,-2],[-10,0],[-9,3],[-6,4],[-8,4],[-8,3],[-4,5],[-1,5],[-2,6],[-6,6],[-9,5],[-52,19],[-45,17],[-23,11],[-15,10],[-13,14],[-13,13],[-11,9],[-26,12],[-15,9],[-8,9],[-3,8],[1,9],[15,44],[3,17],[-3,9],[-7,11],[-11,11],[-20,26],[-22,32],[-9,17],[-19,40],[-6,9],[-6,5],[-17,5],[-12,1],[-8,-1],[-9,-4],[-4,-8],[-5,-10],[-7,-5],[-9,1],[-9,6],[-10,11],[-10,10],[-17,12],[-17,9],[-8,3],[-10,-3],[-14,-5],[-8,0],[-3,3],[-2,4],[1,16],[0,13],[0,10],[-5,8],[-5,4],[-25,4],[-12,2],[-8,3],[-11,7],[-6,7],[-9,21],[-26,37],[-14,14],[-30,25],[-19,16],[-19,10],[-44,22],[-13,9],[-9,9],[-7,9],[-11,15],[-11,7],[-11,3],[-7,-1],[-10,-5],[-20,-12],[-6,-3],[-9,1],[-40,17],[-16,9],[-13,4],[-13,1],[-7,2],[-7,6],[-19,25],[-9,8],[-11,5],[-16,0],[-15,-3],[-12,-7],[-1,0],[-7,-1],[-7,2],[-29,10],[-11,3],[-3,1],[-7,6],[-8,11],[-1,2],[-5,3],[-34,10],[-8,5],[-1,3],[0,3],[9,5],[13,2],[13,1],[6,4],[0,3],[-3,4],[-11,6],[-32,3],[-13,3],[-9,6],[-7,13],[-6,9],[-7,2],[-10,-2],[-9,-6],[-10,-10],[-4,-10],[-1,-25],[-1,-5],[-6,-2],[-11,-2],[-9,-1],[-5,-4],[0,-5],[3,-3],[20,2],[6,-1],[7,-1],[2,-3],[0,-6],[-3,-3],[-11,-2],[-51,-2],[-9,4],[-6,5],[-10,23],[-3,10],[-1,7],[-1,4],[-6,5],[-14,5],[-17,6],[-19,5],[-19,4],[-32,0],[-31,-2],[-12,-3],[-11,-8],[-10,-2],[-9,2],[-12,8],[-9,8],[-4,16],[1,6],[5,4],[8,1],[4,3],[2,5],[-3,5],[-9,7],[-10,3],[-11,1],[-12,-5],[-18,-15],[-16,-9],[-12,-2],[-15,6],[-6,5],[-4,10],[-3,13],[-9,11],[-13,9],[-21,11],[-16,5],[-7,1],[-7,-4],[-7,-8],[-16,-11],[-6,-5],[-9,-3],[-14,2],[-10,3],[-3,1],[-5,3],[0,3],[0,3],[0,2],[2,3],[12,12],[13,22],[13,25],[7,16],[0,9],[-6,10],[-13,15],[-11,10],[-21,17],[-30,19],[-15,8],[-13,2],[-8,-7],[-4,-9],[-6,-14],[-7,-7],[-13,-5],[-15,-3],[-12,0],[-11,6],[-15,9],[-9,10],[-5,7],[-3,6],[-5,3],[-8,1],[-9,0],[-17,10],[-12,13],[-12,11],[-17,7],[-11,3],[-20,15],[-17,13],[-7,8],[-1,7],[0,9],[-1,6],[-4,6],[-5,6],[-8,3],[-17,3],[-9,0],[-10,0],[-8,1],[-5,2],[-20,16],[-7,3],[-9,1],[-12,1],[-15,1],[-11,4],[-19,9],[-14,8],[-4,7],[-2,7],[2,8],[0,11],[-4,7],[-10,3],[-12,2],[-15,3],[-12,3],[-11,8],[-10,13],[-12,16],[-19,15],[-10,5],[-5,0],[-5,-4],[-5,-7],[-7,-7],[-5,-2],[-13,0],[-14,0],[-13,2],[-11,5],[-9,8],[-5,8],[-3,9],[-3,9],[-7,6],[-6,1],[-26,-5],[-15,-1],[-8,2],[-8,5],[-5,7],[-3,10],[2,6],[7,8],[13,9],[9,11],[7,14],[4,9],[-1,6],[-6,9],[-30,35],[-24,26],[-9,8],[-5,4],[-6,1],[-18,2],[-6,0],[-4,-4],[-2,-7],[0,-8],[-1,-8],[-7,-14],[-6,-11],[-7,-4],[-10,-2],[-13,-1],[-12,-3],[-9,-6],[-6,-8],[-2,-10],[2,-9],[0,-7],[-8,-9],[-12,-7],[-12,0],[-10,3],[-5,4],[-8,5],[-9,13],[-6,6],[-9,4],[-10,1],[-8,-2],[-8,-6],[-16,-15],[-25,-26],[-13,-13],[-5,-4],[-4,-4],[-8,-2],[-9,-3],[-9,0],[-5,1],[-1,0],[-7,4],[-2,4],[-2,5],[-2,10],[-2,6],[-4,1],[-6,-1],[-6,-4],[-7,-1],[-4,2],[-2,5],[-3,1],[-4,-1],[-3,-4],[-5,-14],[-8,-8],[-6,-1],[-6,1],[-25,16],[-8,5],[-10,2],[-8,-1],[-8,-3],[-21,-18],[-15,-11],[-8,-5],[-4,1],[-7,4],[-4,6],[-6,5],[-6,1],[-8,-1],[-7,-2],[-7,-5],[-15,-12],[-27,-15],[-14,-9],[-5,-7],[-3,-8],[1,-7],[5,-7],[10,-8],[12,-8],[6,-6],[2,-4],[1,-3],[-3,-6],[-4,-6],[-7,-5],[-18,-9],[-9,-2],[-11,1],[-12,2],[-15,3],[-12,4],[-7,4],[-3,3],[-1,4],[-2,4],[-4,2],[-15,8],[-6,1],[-7,-1],[-8,-3],[-7,-1],[-6,0],[-4,1],[-7,-3],[-8,-5],[-11,-13],[-8,-16],[-10,-27],[-4,-6],[-10,-8],[-25,-13],[-32,-21],[-21,-18],[-30,-32],[-18,-20],[-11,-14],[-5,-11],[-4,-10],[-4,-25],[-6,-25],[-4,-12],[-7,-12],[-16,-17],[-7,-7],[-8,-4],[-6,-1],[-3,0],[-4,-1],[-3,-2],[-6,-7],[-4,-8],[-5,-4],[-6,-1],[-6,0],[-4,2],[-6,0],[-7,-4],[-6,-8],[-2,-7],[-3,-12],[1,-8],[2,-7],[0,-5],[-4,-5],[-6,-1],[-6,0],[-8,1],[-7,1],[-3,-1],[-3,0],[-5,-6],[-7,-18],[-4,-20],[-2,-10],[0,-8],[1,-6],[0,-6],[-3,-6],[-4,-5],[-7,-4],[-11,-7],[-10,-6],[-7,-7],[-13,-18],[-13,-25],[-1,-6],[1,-9],[2,-4],[5,-2],[7,0],[6,2],[8,1],[5,-1],[3,-3],[2,-5],[1,-13],[-3,-12],[-3,-6],[-6,-6],[-9,-4],[-9,-5],[-7,-5],[-8,-11],[-3,-11],[-2,-30],[0,-14],[-1,-5],[-5,-5],[-6,-3],[-8,-2],[-5,-3],[-5,-7],[-7,-13],[-1,-6],[-1,-11],[4,-19],[0,-8],[-2,-4],[-5,-8],[-7,-4],[-11,-2],[-15,2],[-11,2],[-7,2],[-4,4],[-5,2],[-4,-1],[-7,-3],[-6,-6],[-7,-9],[-15,-22],[-4,-8],[-3,-8],[1,-12],[12,-24],[8,-22],[5,-12],[1,-9],[-1,-6],[-3,-8],[-6,-9],[-6,-12],[-4,-9],[-4,-7],[-6,-5],[-7,-3],[-20,-6],[-11,-7],[-7,-6],[-6,-8],[-4,-9],[-4,-13],[-1,-31],[-1,-9],[-2,-9],[-3,-9],[-6,-9],[-5,-8],[-8,-15],[-7,-17],[-13,-34],[-16,-43],[-14,-36],[-3,-9],[-4,-7],[-5,-5],[-5,-5],[-4,-5],[-6,-8],[-4,-7],[0,-15],[0,-6],[-3,-7],[-6,-6],[-8,-6],[-1,-3],[-3,-11],[4,-24],[0,-6],[-4,-7],[-7,-5],[-10,-7],[-6,-4],[-7,-5],[-4,-10],[-5,-21],[-4,-10],[-6,-6],[-8,-5],[-12,-2],[-12,-3],[-9,-6],[-5,-5],[-5,-10],[-9,-12],[-9,-6],[-20,-7],[-4,0],[-12,-2],[-1,0],[-17,1],[-21,2],[-19,3],[-9,2],[-10,4],[-4,4],[-1,6],[3,6],[6,3],[3,3],[3,4],[0,4],[-3,7],[-7,4],[-9,7],[-14,10],[-8,5],[-9,0],[-6,-5],[-7,-9],[-8,-13],[-6,-5],[-7,-2],[-12,1],[-12,5],[-10,5],[-25,0],[-19,4],[-11,3],[-5,5],[-3,7],[0,7],[-2,12],[-3,7],[-5,6],[-11,6],[-11,4],[-10,0],[-8,-5],[-6,-1],[-8,3],[-10,4],[-9,1],[-12,-6],[-8,-1],[-11,3],[-8,6],[-10,5],[-18,5],[-18,6],[-7,2],[-8,4],[-10,6],[-13,9],[-27,13],[-35,19],[-18,12],[-19,16],[-16,18],[-18,24],[-10,17],[-16,21],[-11,10],[-11,6],[-5,1],[-16,2],[-22,10],[-18,9],[-11,15],[-35,38],[-27,29],[-32,22],[-48,25],[-42,33],[-41,23],[-28,16],[-41,53],[-1,0],[-4,7],[-10,24],[-4,7],[-1,1],[-1,2],[-3,2],[-3,3],[-1,0],[-4,3],[-7,3],[-2,1],[0,0],[-33,10],[-6,3],[-4,2],[-61,28],[-14,7],[-18,9],[-24,14],[-22,12],[-7,4],[-2,0],[-6,2],[-41,12],[-7,2],[-4,2],[-4,3],[-3,2],[-1,1],[-7,5],[-6,8],[-22,29],[-3,4],[-7,8],[-11,12],[-12,11],[-26,24],[-28,24],[-66,51],[-7,5],[-22,20],[-19,21],[-39,48],[-8,8],[-11,13],[-15,15],[-16,16],[-19,18],[-2,1],[-8,6],[-22,18],[-7,4],[-22,14],[-59,32],[-10,6],[-39,22],[-14,7],[0,1],[-17,11],[-13,8],[-3,2],[-12,9],[-5,6],[-6,6],[-37,39],[-39,41],[-1,1],[0,1],[-11,12],[-8,12],[-7,16],[-13,35],[-4,11],[-9,21],[-12,22],[-5,7],[-6,6],[-14,13],[-16,10],[-39,21],[-11,8],[-7,5],[-8,7],[-50,42],[-70,61],[-23,22],[-54,53],[-20,17],[-9,8],[-5,4],[-4,2],[-12,5],[-40,12],[-14,6],[-6,3],[-4,3],[-1,1],[-5,4],[-4,4],[-7,10],[-5,5],[-1,3],[-4,6],[-2,4],[-3,5],[0,2],[-1,2],[0,4],[-1,2],[0,1],[0,2],[1,1],[0,3],[2,8],[0,3],[0,1],[0,1],[0,1],[0,0],[-2,2],[0,2],[0,1],[-2,2],[0,0],[-1,0],[-1,3],[-5,3],[-13,8],[-4,3],[-2,3],[-8,9],[-7,12],[-6,14],[-1,2],[-16,41],[-7,13],[-8,11],[-5,4],[-3,4],[-2,2],[-6,4],[-5,2],[-3,1],[-16,5],[-2,1],[-7,1],[-8,1],[-79,1],[-76,6],[-2,0],[-2,0],[-5,-1],[-11,-3],[0,0],[0,0],[-2,-1],[-9,-5],[-18,-10],[-7,-3],[-4,-2],[-9,-4],[-3,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,2],[-1,1],[-1,0],[0,1],[-3,4],[-4,4],[-2,4],[-3,7],[-1,3],[-3,8],[-9,30],[0,2],[-8,23],[-18,62],[-1,4],[-6,19],[0,0],[-7,16],[-5,11],[-5,9],[-2,2],[-9,10],[-3,3],[-7,7],[-8,7],[-3,2],[-12,7],[-2,1],[-10,5],[-13,5],[-19,5],[-11,4],[-23,4],[-8,1],[-3,0],[-32,0],[-6,1],[-4,1],[-5,1],[0,1],[-3,1],[-60,31],[-59,31],[-19,12],[-18,11],[-28,20],[-12,14],[-3,5],[-7,10],[-14,22],[0,0],[-11,17],[-10,26],[-15,24],[-6,32],[0,3],[-1,29],[-8,18],[0,34],[5,34],[7,24],[2,18],[0,21],[0,9],[6,31],[10,20],[3,5],[16,18],[35,30],[20,19],[19,4],[13,0],[8,7],[5,19],[5,19],[4,14],[8,13],[8,12],[16,11],[9,7],[10,6],[6,5],[12,12],[24,30],[38,31],[63,57],[25,21],[13,14],[4,8],[1,9],[-2,10],[-2,8],[-5,9],[-8,9],[-1,12],[-1,7],[-7,11],[-24,18],[-13,6],[-11,3],[-12,2],[-5,5],[-5,9],[-1,2],[-1,4],[-2,6],[2,19],[-1,13],[-6,13],[-10,10],[-11,11],[-16,19],[-8,11],[-14,11],[-16,4],[-35,3],[-32,1],[-8,-3],[-12,-7],[-14,-16],[-17,-24],[-7,-9],[-19,-22],[-24,-20],[-25,-15],[-19,-4],[-15,-5],[-19,-7],[-22,-16],[-25,-20],[-23,-16],[-22,-12],[-18,-5],[-14,0],[-16,7],[-30,10],[-46,26],[-9,8],[-10,20],[-2,23],[-3,27],[-1,28],[-7,37],[-7,16],[-10,12],[-10,7],[-16,-1],[-16,-8],[-13,-19],[-12,-24],[-14,-35],[-8,-23],[-9,-16],[-21,-27],[-17,-21],[-19,-17],[-9,-6],[-4,-3],[-29,-17],[-28,-9],[-23,-4],[-24,-3],[-34,4],[-30,2],[-28,8],[-21,10],[-26,16],[-23,17],[-17,17],[-14,13],[-16,20],[-11,11],[-5,6],[-10,18],[-7,10],[-16,9],[-3,0],[-11,0],[-27,-20],[-10,-13],[-7,-4],[-4,-2],[-11,-2],[-15,-6],[-32,-19],[-21,-21],[-14,-20],[-2,-14],[-8,-21],[-17,-19],[-18,-32],[-32,-42],[-43,-35],[-14,-17],[-21,-30],[-20,-26],[-18,-17],[-12,-24],[-28,-36],[-33,-46],[-21,-35],[-20,-27],[-28,-29],[-30,-22],[-29,-13],[-29,-12],[-14,-16],[-15,-8],[-6,-19],[-11,-35],[-11,-28],[-19,-50],[-22,-38],[-13,-38],[-16,-76],[-2,-33],[4,-17],[11,-12],[25,-15],[32,-6],[11,0],[10,1],[33,2],[25,-4],[28,-6],[28,-18],[17,-13],[4,-13],[7,-34],[14,-40],[10,-38],[13,-42],[28,-48],[40,-59],[30,-49],[13,-29],[10,-25],[27,-37],[30,-35],[15,-11],[19,-8],[35,-44],[26,-35],[27,-40],[34,-46],[34,-41],[40,-38],[37,-22],[34,-18],[21,2],[14,5],[18,5],[27,-8],[32,-26],[29,-27],[0,0],[12,-23],[7,-9],[7,-9],[1,-1],[4,-4],[1,-1],[6,-3],[26,-15],[5,-4],[6,-4],[22,-20],[11,-9],[62,-55],[43,-39],[12,-11],[-3,-26],[-2,-24],[-5,-18],[6,-14],[12,-8],[14,-3],[11,1],[8,3],[9,13],[11,18],[22,32],[17,5],[4,1],[4,1],[5,0],[2,0],[38,-1],[28,-3],[7,-1],[117,-17],[37,-4],[22,-3],[18,-3],[3,-1],[11,-3],[3,-1],[4,-1],[2,-1],[4,-3],[3,-2],[3,-2],[6,-5],[3,-4],[6,-8],[15,-20],[9,-12],[13,-17],[16,-22],[4,-24],[22,-25],[34,-15],[40,-13],[12,-3],[10,-13],[8,-23],[6,-28],[-10,-37],[-10,-18],[-26,-41],[-10,-15],[20,0],[32,7],[32,25],[-3,-6],[-9,-31],[-5,-25],[-6,-8],[-10,-8],[-12,-13],[-7,-12],[-5,-16],[3,-20],[4,-23],[15,-29],[21,-17],[26,-20],[18,-13],[21,-7],[27,0],[27,5],[20,7],[18,-1],[19,-6],[16,-4],[24,-16],[20,3],[18,2],[11,-8],[38,-29],[36,-17],[32,-6],[29,-2],[15,10],[1,11],[-4,12],[-5,5],[-1,11],[0,38],[-6,51],[3,11],[4,3],[11,2],[7,1],[1,8],[-8,5],[-1,3],[0,0],[1,8],[12,-3],[7,-2],[8,-8],[2,-2],[4,-4],[9,0],[28,-6],[22,-8],[24,-16],[21,-19],[8,-10],[3,-16],[0,-14],[-3,-16],[-11,-14],[-8,-6],[-7,-9],[-3,-9],[1,-8],[5,-11],[12,-11],[18,-15],[28,-10],[16,-2],[18,2],[15,10],[13,12],[22,8],[17,2],[14,-3],[17,-9],[21,-8],[54,-11],[46,-7],[35,-8],[12,-2],[11,-12],[3,-14],[-1,-14],[-1,-15],[1,-11],[6,-8],[9,-6],[15,-7],[10,-13],[6,-14],[15,-17],[9,-3],[12,2],[10,5],[11,5],[20,2],[17,-4],[13,-9],[10,-5],[4,-10],[7,-2],[7,1],[20,-12],[21,-15],[29,-24],[37,-32],[27,-21],[19,-23],[13,-18],[0,-8],[1,-6],[5,-1],[7,2],[12,-1],[9,-3],[6,-2],[7,-9],[0,-6],[-1,-8],[0,-1],[-11,-9],[-11,-5],[-5,-8],[1,-4],[4,-3],[14,-5],[20,-2],[8,-2],[2,-9],[33,-37],[9,-9],[22,-23],[21,-30],[11,-20],[10,-23],[14,-24],[7,-8],[7,-11],[9,-5],[14,-7],[6,-7],[12,-8],[17,-9],[12,-10],[13,-13],[25,-8],[16,-9],[10,-12],[19,-20],[21,-11],[13,-7],[24,-13],[40,-19],[2,-1],[23,-8],[7,-8],[5,-9],[5,-9],[4,-9],[6,-12],[9,-11],[14,-16],[17,-17],[11,-21],[3,-4],[6,-9],[2,-15],[1,-8],[0,-2],[3,-10],[6,-10],[12,-11],[13,-7],[7,-4],[9,1],[11,1],[9,-4],[6,-7],[3,-8],[1,-9],[13,-11],[22,-18],[25,-25],[15,-14],[31,-19],[15,-9],[0,-1],[7,-4],[39,-34],[5,-4],[3,-3],[2,-3],[0,-1],[2,-2],[3,-3],[12,-29],[4,-7],[3,-5],[0,0],[2,-2],[20,-23],[14,-13],[11,-10],[9,-7],[2,-2],[29,-18],[2,-2],[10,-8],[48,-50],[20,-19],[15,-16],[23,-19],[8,-5],[15,-11],[29,-16],[42,-23],[31,-18],[29,-16],[19,-14],[3,-3],[1,0],[14,-13],[14,-12],[52,-42],[24,-22],[9,-7],[30,-29],[26,-28],[37,-45],[15,-20],[7,-10],[6,-9],[25,-38],[14,-24],[1,-2],[2,-5],[6,-11],[18,-40],[6,-11],[3,-6],[1,0],[8,-14],[2,-3],[7,-10],[7,-8],[2,-4],[3,-2],[7,-7],[7,-6],[12,-10],[51,-39],[54,-45],[27,-26],[9,-8],[8,-8],[22,-21],[67,-74],[74,-71],[17,-17],[13,-16],[22,-27],[4,-5],[6,-8],[35,-47],[51,-69],[0,0],[11,-12],[14,-12],[16,-11],[27,-17],[9,-4],[10,-5],[45,-17],[10,-5],[8,-5],[5,-4],[13,-10],[17,-15],[6,-7],[10,-10],[6,-9],[8,-10],[19,-31],[21,-40],[7,-18],[7,-24],[7,-20],[4,-11],[6,-10],[3,-4],[1,-1],[2,-3],[9,-6],[0,0],[10,-6],[21,-12],[7,-3],[7,-6],[7,-5],[6,-6],[9,-9],[35,-40],[20,-20],[81,-66],[36,-31],[46,-40],[14,-12],[24,-21],[10,-10],[13,-15],[9,-10],[9,-13],[27,-42],[29,-51],[10,-16],[2,-3],[8,-8],[12,-11],[13,-10],[15,-11],[17,-12],[9,-7],[8,-7],[15,-15],[6,-8],[7,-8],[4,-6],[8,-11],[9,-16],[2,-3],[5,-10],[4,-10],[9,-23],[6,-23],[13,-53],[1,-3],[7,-23],[3,-7],[6,-14],[5,-11],[4,-9],[58,-90],[0,-1],[9,-59],[4,-11],[5,-10],[5,-9],[6,-10],[6,-9],[7,-9],[10,-12],[10,-13],[10,-14],[3,-4],[2,-5],[2,-5],[2,-5],[1,-6],[-1,-8],[1,-8],[1,-8],[2,-4],[2,-3],[2,-4],[3,-3],[3,-3],[3,-2],[4,-3],[5,-2],[5,-2],[4,-3],[4,-3],[4,-4],[3,-4],[3,-4],[10,-16],[11,-15],[11,-14],[11,-15],[11,-12],[11,-12],[10,-12],[9,-12],[9,-13],[9,-14],[11,-25],[13,-23],[2,-3],[13,-10],[4,-2],[3,-3],[3,-4],[1,-3],[2,-4],[1,-2],[0,-1],[0,-2],[1,-2],[0,-1],[1,-2],[2,-2],[1,-1],[2,-1],[2,0],[3,1],[1,0],[2,1],[1,0],[4,0],[3,0],[3,0],[4,0],[3,-1],[3,-2],[3,-1],[3,-4],[3,-4],[2,-5],[1,-4],[2,-5],[12,-31],[2,-5],[2,-4],[3,-4],[4,-4],[4,-2],[4,-1],[4,-1],[4,-1],[4,0],[5,0],[4,1],[4,1],[4,1],[4,2],[3,2],[3,2],[3,1],[4,1],[3,1],[4,0],[4,-1],[5,-1],[4,-2],[5,-2],[4,-2],[4,-3],[3,-6],[2,-6],[1,-6],[3,-4],[4,-3],[4,-2],[4,-3],[5,-1],[4,-2],[5,-1],[13,-8],[14,-7],[14,-8],[14,-6],[14,-7],[14,-6],[15,-5],[15,-5],[15,-5],[15,-4],[24,-7],[24,-6],[25,-5],[24,-5],[25,-5],[25,-4],[25,-3],[7,-1],[7,-1],[8,0],[7,1],[7,1],[7,1],[7,2],[7,2],[10,3],[9,2],[9,2],[10,1],[10,1],[9,0],[10,0],[7,0],[7,-1],[6,-1],[7,-2],[6,-2],[6,-3],[7,-3],[16,-10],[7,-5],[9,-5],[15,-11],[20,-9],[19,-8],[20,-8],[20,-8],[20,-6],[21,-7],[11,-2],[11,-2],[11,-2],[12,-1],[11,-1],[12,0],[5,0],[6,-1],[5,-1],[6,-1],[5,-2],[6,-2],[6,-4],[7,-3],[7,-5],[6,-4],[5,-6],[5,-4],[4,-6],[3,-5],[4,-6],[2,-6],[3,-6],[5,-10],[5,-10],[7,-10],[6,-10],[7,-9],[7,-10],[8,-9],[8,-9],[8,-9],[9,-9],[8,-4],[8,-5],[8,-4],[9,-3],[9,-3],[6,-4],[7,-4],[5,-5],[6,-4],[5,-6],[5,-5],[4,-6],[4,-6],[6,-8],[7,-7],[7,-7],[7,-7],[7,-7],[8,-6],[8,-6],[8,-5],[9,-6],[8,-4],[5,-3],[5,-1],[4,-2],[0,0],[10,-10],[4,-5],[32,-38],[6,-7],[14,-21],[0,0],[2,-3],[3,-3],[0,0],[5,-5],[0,0],[1,-1],[10,-7],[26,-16],[5,-3],[5,-5],[65,-52],[55,-45],[44,-37],[23,-18],[0,-1],[1,-1],[2,-2],[1,-2],[1,-2],[0,0],[2,-6],[2,-7],[3,-12],[1,-2],[0,0],[1,-3],[1,-1],[1,-1],[0,0],[2,-2],[28,-24],[28,-25],[61,-48],[12,-8],[9,-5],[21,-13],[6,-3],[3,-2],[3,-3],[3,-3],[12,-12],[9,-10],[22,-23],[23,-26],[24,-30],[29,-36],[9,-13],[8,-12],[13,-21],[8,-11],[7,-14],[13,-24],[3,-7],[5,-9],[16,-39],[3,-7],[9,-17],[10,-16],[3,-3],[9,-12],[14,-14],[11,-10],[4,-3],[8,-6],[27,-19],[18,-9],[15,-9],[44,-21],[9,-4],[11,-4],[30,-11],[18,-6],[14,-7],[8,-3],[8,-5],[14,-7],[18,-12],[0,0],[1,0],[16,-11],[12,-10],[2,-2],[5,-4],[12,-10],[3,-3],[13,-13],[15,-16],[14,-16],[7,-9],[5,-6],[27,-43],[1,0],[4,-6],[7,-5],[16,-12],[15,-11],[7,-6],[5,-6],[5,-6],[6,-8],[11,-16],[13,-20],[10,-15],[15,-29],[3,-7],[45,-91],[5,-10],[8,-15],[8,-13],[6,-10],[42,-65],[30,-46],[0,0],[0,0],[29,-40],[27,-36],[6,-6],[0,0],[7,-6],[25,-19],[1,-1],[10,-9],[8,-9],[2,-3],[2,-3],[2,-5],[25,-74],[7,-25],[5,-16],[2,-4],[5,-14],[2,-4],[1,-3],[4,-6],[1,-1],[0,0],[22,-10],[12,-5],[5,-5],[4,-6],[2,-9],[1,-3],[3,-19],[0,-17],[2,-9],[6,-5],[15,-5],[41,-16],[37,-13],[18,-8],[3,-2],[16,-12],[6,-9],[16,-31],[10,-9],[15,-23],[13,-23],[11,-12],[9,-9],[4,-4],[1,-5],[-2,-5],[-3,-6],[-12,-10],[-13,-10],[-12,-12],[-2,-4],[0,-3],[6,-5],[18,0],[26,-4],[4,-5],[3,-21],[9,-23],[11,-19],[10,-17],[2,-10],[4,-11],[5,-10],[13,-15],[14,-12],[9,-9],[6,-8],[7,-8],[8,-6],[9,0],[8,-2],[3,0],[13,-12],[24,-28],[11,-17],[9,-12],[11,-22],[2,-15],[0,-31],[-4,-14],[2,-12],[6,-15],[9,-13],[6,-13],[-4,-19],[-4,-20],[0,-13],[4,-6],[5,-5],[11,-9],[11,4],[5,6],[8,8],[11,6],[9,0],[9,-5],[6,-9],[5,-8],[9,-11],[11,-9],[15,-8],[17,-4],[5,0],[12,1],[13,0],[13,-4],[9,-8],[3,-10],[0,-5],[0,-6],[8,-7],[12,-8],[7,-10],[4,-11],[10,-9],[12,-6],[13,-7],[11,-13],[13,-14],[8,-16],[4,-6],[8,-12],[14,-14],[18,-7],[21,-3],[24,-2],[12,-4],[13,-6],[8,-6],[0,-7],[6,-15],[8,-9],[21,-13],[17,-5],[21,0],[12,0],[21,-6],[11,-5],[8,-4],[8,-7],[2,-6],[-2,-4],[3,-6],[7,-3],[6,-7],[1,-13],[4,-7],[11,-8],[27,-11],[26,-10],[12,-2],[5,0],[9,-1],[4,-3],[1,-1],[-2,-8],[2,-9],[7,-4],[5,0],[8,-2],[10,-9],[6,-8],[5,-9],[7,-3],[8,2],[10,-2],[8,-4],[10,-12],[10,-12],[11,-7],[8,-2],[12,3],[15,-1],[14,-6],[31,-22],[14,-9],[13,-6],[9,0],[6,2],[6,5],[4,0],[11,-5],[16,-14],[18,-25],[9,-15],[6,-5],[16,-11],[11,-11],[4,-7],[4,-12],[2,-8],[4,-5],[11,-7],[13,-7],[9,-9],[8,-12],[2,-7],[-3,-5],[-8,-5],[-10,-4],[-9,-6],[-1,-2],[-3,-7],[0,-14],[5,-15],[15,-22],[30,-35],[26,-26],[35,-32],[36,-30],[9,-6],[15,-2],[11,2],[22,6],[14,2],[14,-1],[11,-5],[4,-6],[-2,-10],[-11,-12],[-5,-5],[-6,-9],[-2,-10],[0,-4],[6,-20],[18,-59],[6,-40],[-2,-21],[-8,-23],[-9,-9],[-9,-6],[-3,-4],[-1,-7],[4,-4],[7,-16],[1,-22],[-4,-22],[-4,-15],[-2,-18],[1,-22],[7,-18],[-1,-14],[-6,-10],[-5,-5],[-6,1],[-8,2],[-5,0],[-3,-4],[1,-10],[3,-12],[2,-13],[-1,-16],[-4,-12],[2,-6],[4,-1],[6,4],[8,11],[6,13],[7,10],[13,5],[11,2],[14,-5],[11,-14],[6,-51],[6,-12],[10,-14],[13,-9],[19,-8],[16,0],[12,2],[14,5],[25,25],[11,17],[4,19],[4,7],[3,2],[8,-2],[6,-7],[6,-15],[4,-23],[2,-12],[4,-15],[3,-14],[0,-21],[-6,-47],[-8,-42],[-13,-41],[-8,-18],[-9,-16],[-16,-20],[-6,-14],[-1,-11],[-3,-6],[-15,-24],[-37,-39],[-24,-22],[-25,-13],[-21,-18],[-9,-11],[-10,-8],[-20,-11],[-84,-44],[-63,-35],[-76,-46],[-57,-34],[-103,-61],[-73,-46],[-104,-58],[-72,-40],[-88,-47],[-96,-48],[-95,-55],[-42,-25],[-109,-65],[-33,-18],[-6,-4],[-6,-4],[-12,-14],[-7,-10],[-11,-13],[-4,-7],[-11,-3],[-7,-9],[-3,-11],[0,-7],[-9,-4],[-5,2],[-4,2],[-4,5],[-7,3],[-15,-1],[-13,-4],[-12,-5],[-16,-11],[-44,-27],[-29,-17],[-21,-10],[-28,-15],[-25,-13],[-33,-18],[-34,-16],[-32,-19],[-14,-9],[-42,-25],[-36,-25],[-72,-53],[-69,-57],[-66,-60],[-62,-63],[-59,-67],[-55,-69],[-50,-72],[-46,-75],[-42,-77],[-37,-79],[-33,-81],[-20,-49],[43,-54],[-17,-3],[-20,16],[-15,-6],[-20,-20],[-3,-19],[-17,-6],[-21,16],[-15,-3],[-33,-10],[-46,-29],[-31,-24],[-29,-10],[-41,-7],[-17,-29],[-29,-17],[-52,-38],[-37,-19],[-24,-6],[-24,-9],[-26,-10],[-31,-21],[-18,-9],[-19,-14],[-29,-14],[-89,-75],[-27,36],[-27,5],[-31,0],[-47,52],[-19,24],[-44,15],[-5,-14],[-61,42],[-74,-26],[-64,-27],[-36,-7],[-52,-25],[-47,-7],[-54,5],[0,-24],[-26,0],[0,-3],[-4,-1],[2,-23],[84,13],[2,-14],[-80,-13],[3,-25],[-22,-1],[-3,18],[-26,1],[-1,14],[32,2],[-3,27],[-6,2],[-1,4],[-36,-1],[0,29],[-11,2],[-41,1],[-27,18],[-41,-43],[-50,-19],[-46,-11],[-55,-11],[-66,11],[0,-29],[-29,-29],[68,-83],[-4,-2],[22,-25],[20,15],[17,-18],[-43,-34],[-15,18],[15,15],[-24,24],[-3,-2],[-68,79],[-23,-23],[17,-33],[-45,-41],[-9,-7],[48,-92],[21,-39],[-18,-6],[-23,45],[-42,80],[0,0],[-16,-13],[-27,-6],[-13,10],[-46,4],[-66,2],[-116,-2],[-27,27],[-12,-11],[-142,25],[-12,-18],[15,-8],[-15,-25],[-18,11],[1,9],[-16,13],[-40,-64],[-30,14],[62,98],[-12,-5],[-20,9],[7,-18],[-143,-8],[-25,35],[-90,106],[2,19],[-32,5],[-67,-6],[-56,-5],[-7,-1],[-40,-3],[-55,-6],[-66,-36],[-16,4],[-71,-47],[-35,25],[-70,28],[-129,25],[-120,-14],[-101,-28],[-99,-64],[-23,-44],[-19,0],[-29,31],[-27,40],[-16,5],[-13,-4],[-2,-13],[11,-18],[24,-38],[0,-19],[-7,-5],[-170,-70],[-17,17],[-151,-45],[-70,-7],[-48,-4],[-31,16],[-18,23],[-15,23],[-48,-10],[-34,10],[-52,36],[-78,36],[-15,26],[3,30],[-38,15],[-113,150],[30,80],[-77,-3],[-32,46],[-33,63],[-38,53],[1,50],[-52,-7],[-89,90],[-42,43],[11,38],[-57,-1],[-33,34],[-51,47],[-47,46],[4,33],[-14,12],[-41,-24],[-63,70],[-63,67],[47,36],[-21,20],[-33,9],[-73,55],[-23,-12],[-63,78],[39,31],[-33,33],[-29,28],[-49,33],[-26,38],[-43,50],[-11,-8],[-5,3],[-20,-15],[115,-132],[-16,-12],[-136,159],[11,9],[18,-16],[22,16],[-9,6],[12,9],[-7,21],[-30,33],[-30,48],[-31,-14],[-22,-14],[-29,-23],[-28,-21],[-15,-11],[-18,-14],[-19,-14],[-20,-15],[-18,-14],[-18,-14],[-8,-6],[-29,-22],[-19,-16],[-11,-83],[-9,2],[11,88],[33,25],[139,108],[11,8],[10,9],[6,4],[11,9],[17,12],[13,28],[19,11],[2,12],[-47,63],[34,25],[-9,20],[-48,87],[-22,-18],[-44,-34],[-19,-14],[-7,-6],[-39,-29],[-7,-6],[-41,-31],[-6,-4],[-43,-33],[-6,-5],[-39,-30],[-92,-70],[45,-54],[0,-10],[-26,-21],[-101,119],[30,22],[46,-50],[65,51],[18,15],[90,70],[1,0],[42,34],[9,6],[76,61],[-3,5],[65,50],[-42,79],[29,24],[-9,21],[-13,10],[-12,-10],[-36,12],[-82,-62],[-84,-65],[-82,-62],[8,-12],[-6,-6],[-75,89],[9,7],[52,-63],[40,30],[7,5],[35,26],[4,3],[10,7],[46,34],[8,7],[25,18],[53,39],[-7,11],[6,5],[6,-6],[4,4],[9,-9],[6,4],[-4,4],[4,4],[-7,8],[15,17],[19,15],[11,8],[-19,16],[32,38],[-65,96],[-7,15],[-51,-42],[-80,156],[403,324],[99,78],[185,143],[15,12],[-15,21],[181,140],[186,145],[190,147],[192,150],[188,146],[192,148],[176,148],[185,156],[181,152],[1,1],[-74,84],[-79,89],[-37,-33],[-14,13],[-42,-35],[-8,6],[-42,-34],[-10,12],[-44,-31],[-5,5],[-46,-30],[-35,-32],[13,-12],[-84,-66],[9,-9],[-95,-72],[-6,6],[-32,-24],[8,-10],[-79,-66],[-4,5],[-167,-126],[-325,-247],[8,-12],[-96,-72],[-80,-60],[-122,-98],[-184,-149],[-191,-154],[-185,-149],[-320,-270],[7,-19],[-244,-194],[-126,110],[-3,-2],[-32,-25],[4,-3],[10,9],[17,-18],[-17,-15],[10,-9],[10,-3],[5,5],[87,-81],[-6,-6],[-69,66],[-13,3],[-44,-41],[-27,-26],[-15,-13],[-15,-15],[-14,-12],[-10,-9],[-33,-29],[-37,-33],[-2,-7],[34,-35],[-6,-6],[-64,63],[-9,8],[-6,7],[5,5],[34,-32],[30,27],[12,11],[18,17],[22,20],[17,15],[13,12],[11,10],[28,26],[38,35],[-3,12],[-46,41],[16,16],[7,-7],[31,26],[3,3],[-39,38],[-112,69],[-20,-17],[1,-1],[-69,-59],[-11,-8],[-14,-12],[-16,-14],[-13,-11],[-39,-33],[0,-10],[30,-30],[-10,-10],[-43,43],[84,73],[15,11],[98,83],[-21,13],[-15,-13],[-27,16],[-85,-69],[-163,-138],[-77,41],[10,14],[68,-41],[155,132],[21,18],[-4,10],[24,18],[-15,17],[10,7],[24,-20],[18,15],[-75,44],[19,17],[-24,16],[-19,8],[-91,25],[-13,-26],[-81,19],[-83,14],[-183,44],[-74,30],[-86,50],[-49,39],[-20,-41],[19,-16],[76,-52],[64,-24],[4,-18],[87,-9],[155,-44],[-8,-21],[-124,38],[-119,14],[-166,104],[-78,76],[-104,102],[-42,58],[-17,38],[-10,-4],[-85,88],[17,13],[98,-103],[31,26],[69,-92],[-26,-27],[67,-69],[37,33],[-50,54],[-78,109],[-41,94],[48,73],[-15,11],[-73,-22],[-9,13],[-69,-16],[9,-46],[-23,-3],[-24,231],[24,0],[12,-162],[63,15],[-42,156],[4,34],[-62,-2],[-1,-9],[-13,-2],[-14,231],[29,0],[-2,-202],[66,3],[27,225],[5,89],[1,92],[-2,37],[-2,10],[-13,0],[0,7],[-15,0],[-1,-10],[-61,2],[-2,-231],[-13,0],[4,251],[74,6],[-2,-8],[19,3],[-1,9],[16,-1],[6,34],[-144,-1],[-2,15],[148,5],[4,41],[0,1],[-171,-8],[0,16],[137,3],[0,13],[37,5],[46,72],[-34,28],[-65,-44],[4,16],[-28,-1],[-1,-14],[-20,-4],[2,230],[22,8],[-6,-205],[30,-3],[2,13],[36,24],[-21,18],[15,127],[0,2],[43,206],[-35,-8],[-68,-148],[-21,10],[62,135],[25,23],[3,184],[3,116],[3,84],[16,1],[-2,-93],[-4,-149],[-2,-143],[24,7],[9,57],[18,153],[6,52],[9,28],[12,48],[6,81],[-26,2],[-1,-3],[-12,1],[-3,-43],[-12,7],[1,8],[0,4],[2,25],[2,16],[3,34],[1,12],[0,6],[3,29],[0,8],[2,24],[1,9],[14,-11],[-12,-118],[37,-3],[-4,37],[13,69],[51,-52],[18,22],[-26,26],[10,6],[-3,3],[-36,33],[-3,-2],[-52,48],[6,6],[18,16],[7,6],[17,15],[7,7],[7,-7],[-45,-44],[30,-28],[7,-4],[21,-19],[-3,-3],[12,-11],[3,2],[14,-14],[40,72],[12,21],[52,84],[-3,1],[0,1],[-1,0],[0,0],[-54,31],[14,21],[2,-1],[1,2],[-8,5],[-53,-73],[-16,9],[21,31],[9,14],[11,16],[11,17],[7,10],[7,10],[19,-12],[-7,-9],[7,-5],[47,-30],[0,0],[1,0],[0,0],[5,-3],[17,68],[31,28],[-4,2],[-2,0],[-2,1],[-40,13],[2,6],[-41,13],[-11,3],[-3,-6],[-7,-19],[-7,2],[1,3],[2,6],[9,27],[8,24],[2,11],[6,28],[13,-1],[-9,-32],[-10,-32],[34,-9],[-2,-6],[14,-4],[2,5],[17,-5],[-2,-4],[34,-10],[4,-1],[3,-1],[3,0],[36,25],[74,167],[-16,3],[-5,0],[-6,1],[-29,5],[0,3],[-53,9],[-1,-4],[-56,13],[-22,-81],[-16,5],[9,23],[4,12],[26,101],[2,7],[12,48],[13,-2],[-25,-102],[50,-12],[60,-10],[35,-1],[-16,33],[-7,47],[-22,40],[-6,57],[-43,-5],[-5,-6],[-85,-8],[2,15],[81,6],[64,12],[13,35],[-45,68],[-2,46],[8,47],[-7,42],[-4,63],[-36,73],[-15,43],[-11,57],[-34,68],[-123,-94],[10,-26],[6,2],[2,-7],[11,-36],[3,-7],[11,-35],[15,-48],[7,-23],[2,-8],[10,-24],[7,-18],[3,-6],[15,-49],[-20,-6],[-34,89],[-1,9],[-16,48],[-11,33],[-3,8],[-25,72],[-37,-19],[-3,4],[-10,-7],[-94,-68],[-40,51],[89,64],[13,10],[-52,64],[-62,77],[-16,20],[14,11],[14,-17],[3,-3],[20,-26],[4,-5],[24,-31],[5,-6],[9,-10],[33,-42],[10,-13],[4,-5],[4,-5],[-4,-4],[10,-13],[18,-21],[160,128],[-36,43],[-64,61],[-46,44],[-97,82],[-60,37],[-32,13],[-20,7],[-86,-69],[-6,-4],[9,-10],[24,-30],[4,-5],[23,-30],[33,-40],[9,-11],[-16,-11],[-12,14],[-4,6],[-24,29],[-5,6],[-28,35],[-5,6],[-24,30],[-5,5],[-24,30],[17,13],[24,-29],[65,55],[-26,10],[-39,12],[-35,-35],[3,-4],[-7,-9],[-64,23],[-15,-14],[-21,-19],[-22,-18],[-5,-5],[-42,-34],[-53,-43],[-45,-33],[31,-43],[-5,-4],[-4,6],[-29,32],[-22,25],[-10,8],[5,4],[25,-19],[23,17],[25,19],[43,36],[6,4],[46,38],[7,6],[23,19],[15,13],[12,10],[-34,12],[-63,5],[-37,7],[2,4],[-3,1],[-7,1],[-40,6],[-5,1],[-43,7],[-6,1],[-20,3],[-32,-6],[-7,-1],[-50,-10],[-47,-9],[-18,-100],[-77,4],[-1,-54],[-1,-13],[-13,0],[3,64],[1,14],[78,-6],[5,40],[7,58],[51,12],[43,10],[58,11],[121,-21],[90,-12],[24,-8],[88,-33],[40,37],[-15,13],[-8,11],[-20,11],[-21,4],[-83,52],[-74,18],[-101,11],[-80,25],[-82,9],[-83,9],[-112,-17],[-17,-2],[-18,5],[-40,28],[-56,51],[-25,26],[-23,27],[-32,22],[-21,10],[-35,9],[-24,0],[-31,-4],[-34,3],[25,-56],[9,2],[16,-33],[-12,-5],[-9,21],[-98,-46],[-9,17],[87,45],[-24,56],[-49,-4],[-30,14],[-42,-14],[-78,-53],[-18,-30],[5,-68],[7,-36],[4,-18],[13,-66],[42,-174],[22,-75],[49,-96],[44,-56],[48,-62],[61,-70],[115,-236],[102,-212],[59,-155],[49,-74],[42,-124],[8,3],[44,16],[-47,121],[-7,20],[17,6],[14,4],[13,-33],[1,-2],[95,-241],[-9,-2],[-47,107],[-24,-9],[-40,-15],[-7,-2],[31,-83],[8,-20],[7,-20],[31,-25],[32,-39],[20,-56],[27,-138],[14,-29],[0,0],[8,-19],[13,-10],[-3,-45],[79,-5],[23,-23],[32,-37],[38,-43],[12,-14],[-38,-16],[-35,-18],[-37,-14],[-29,-14],[-22,-95],[241,97],[4,-77],[2,0],[4,-10],[-39,-8],[-2,15],[-56,2],[-2,20],[-6,-1],[-117,-49],[32,-75],[-35,-18],[-22,-12],[-9,-8],[-11,-31],[117,38],[-4,7],[27,12],[4,-5],[75,26],[1,18],[14,-2],[-18,-99],[-13,2],[13,68],[-95,-36],[2,-6],[-36,-210],[-13,-1],[37,213],[-109,-37],[-15,-14],[15,-49],[-44,-20],[8,-38],[-20,-14],[-19,-48],[39,1],[-4,34],[13,2],[21,-123],[-15,-2],[-12,75],[-1,6],[-43,-3],[-8,-35],[4,-72],[36,-25],[41,-24],[20,-252],[-7,-84],[-5,-70],[46,5],[14,-68],[115,-757],[-49,-11],[75,-158],[24,3],[25,-14],[53,-43],[23,-38],[58,-99],[56,-105],[12,-93],[38,21],[35,-55],[289,148],[6,15],[14,-27],[-289,-148],[-5,7],[-26,-15],[32,-56],[-72,-7],[9,-36],[55,4],[25,-27],[43,-61],[23,-38],[13,4],[-2,5],[395,127],[10,-21],[-394,-132],[-2,4],[-11,-5],[16,-29],[-7,-33],[2,-31],[4,-33],[15,-16],[29,-12],[17,-10],[347,-479],[-12,-37],[-112,-24],[-196,-40],[-318,-54],[-382,-61],[-10,-122],[9,-35],[21,-41],[9,-18],[16,-119],[16,-33],[44,-40],[84,12],[-8,72],[150,12],[6,-21],[153,23],[567,81],[1,-13],[-563,-82],[-167,-25],[-5,26],[-52,-5],[0,-11],[-28,-5],[2,7],[-39,-4],[3,-42],[300,20],[532,76],[33,19],[32,43],[170,15],[59,25],[65,6],[124,-9],[60,5],[61,-7],[74,-15],[47,-23],[41,-24],[39,-32],[45,-32],[29,-32],[40,-39],[26,-34],[18,-64],[20,-1],[11,-99],[-7,-68],[-7,-28],[-8,-31],[-4,-33],[-8,-25],[18,-2],[32,-2],[-3,-23],[-33,4],[-9,-3],[-24,-90],[7,-17],[136,-16],[-4,-32],[-148,15],[1,29],[-6,17],[-14,-30],[-51,-21],[74,-187],[88,5],[96,36],[73,102],[63,-4],[79,-15],[43,-8],[24,-18],[11,18],[11,-7],[20,26],[-121,169],[-33,-4],[-6,113],[49,-2],[3,-98],[106,-132],[37,-43],[-16,-18],[-8,4],[-19,-19],[7,-5],[-21,-27],[9,-30],[24,-22],[10,-20],[56,-41],[45,0],[18,-7],[86,-65],[69,-48],[61,-44],[45,-41],[17,-34],[0,-28],[57,-37],[118,-95],[46,51],[-19,14],[-164,115],[21,22],[12,14],[276,-182],[316,-207],[61,-40],[-22,-31],[-78,48],[-384,240],[-44,-59],[39,-26],[32,-25],[29,-22],[-13,-20],[102,-69],[129,-87],[70,-38],[58,-30],[64,-31],[33,-32],[28,-37],[28,-20],[8,-25],[15,-15],[9,-8],[14,-4],[9,-1],[3,9],[-1,10],[4,7],[13,7],[38,-5],[15,5],[18,9],[20,7],[26,3],[27,2],[36,-3],[34,-9],[16,-4],[38,-9],[40,-14],[64,-20],[28,-4],[26,-10],[11,-3],[7,2],[4,13],[2,11],[21,10],[15,0],[27,-5],[24,-1],[21,7],[24,2],[22,3],[28,-1],[19,-1],[11,1],[26,2],[18,-3],[13,-2],[13,5],[20,15],[10,6],[15,11],[17,7],[24,0],[22,8],[20,10],[19,-1],[25,2],[27,1],[9,-2],[7,4],[3,7],[-2,6],[1,7],[19,5],[9,1],[12,-2],[19,2],[18,1],[18,0],[20,4],[21,15],[17,9],[19,0],[51,-4],[37,-5],[18,-3],[4,-5],[9,-5],[14,-1],[20,-5],[26,-11],[30,-4],[15,3],[14,5],[20,-4],[55,-15],[41,-13],[31,-13],[30,-13],[11,-7],[12,-8],[16,-4],[13,0],[20,5],[33,-4],[14,0],[33,-4],[51,-6],[34,1],[30,-2],[16,9],[20,-1],[8,0],[16,5],[23,2],[31,1],[32,-5],[36,-1],[54,3],[28,4],[28,-6],[29,-7],[36,1],[41,-5],[30,-4],[34,-1],[44,4],[28,-7],[34,1],[24,0],[22,1],[26,0],[33,-4],[17,-8],[16,8],[13,4],[23,-2],[25,-6],[16,-10],[7,-18],[14,-14],[23,-9],[26,3],[28,19],[37,21],[30,12],[27,11],[27,8],[12,0],[27,-5],[29,-11],[19,3],[24,7],[20,-2],[26,-5],[19,-2],[12,4],[27,8],[20,-2],[18,-1],[22,-2],[23,-7],[19,-10],[14,-3],[7,10],[7,12],[15,9],[18,0],[18,5],[25,-6],[28,-7],[16,6],[21,12],[19,18],[17,22],[3,10],[9,4],[12,-1],[10,-2],[7,4],[3,13],[8,11],[21,11],[30,13],[27,5],[11,0],[8,1],[3,6],[-2,7],[1,3],[12,6],[22,13],[5,25],[12,3],[13,-3],[-1,-9],[0,-3],[21,9],[8,-1],[3,-3],[5,7],[12,5],[25,0],[10,-4],[27,12],[31,-2],[2,-6],[29,8],[7,4],[11,1],[21,10],[5,8],[9,-4],[40,17],[11,14],[5,9],[4,7],[12,14],[3,13],[14,9],[10,-11],[3,-4],[7,-2],[99,7],[3,14],[-39,23],[8,14],[19,-8],[-8,38],[8,2],[13,-15],[-8,28],[30,23],[2,17],[0,3],[37,17],[15,7],[24,12],[18,10],[25,7],[22,7],[24,11],[22,14],[24,12],[21,17],[14,3],[19,9],[59,22],[16,6],[5,-4],[5,-6],[-2,-9],[-3,-10],[-6,-18],[-10,-17],[-4,-7],[3,-8],[7,-2],[10,-2],[9,5],[19,16],[19,15],[2,8],[9,20],[-3,10],[-7,9],[6,7],[14,9],[19,4],[33,5],[16,-6],[23,3],[29,12],[6,7],[21,24],[11,12],[13,9],[13,3],[11,-4],[13,1],[6,3],[9,12],[4,8],[10,10],[8,1],[10,-2],[7,5],[5,10],[8,9],[9,4],[32,10],[31,7],[25,-2],[9,-6],[8,-9],[12,-7],[18,-10],[21,-6],[36,-5],[12,3],[7,5],[5,7],[2,6],[-9,2],[-11,0],[-4,4],[-2,4],[6,11],[8,19],[13,20],[6,4],[12,2],[7,-4],[5,-6],[9,-5],[9,1],[4,3],[7,4],[15,2],[28,4],[11,1],[11,5],[12,5],[12,1],[7,2],[1,6],[1,6],[-5,6],[-1,3],[2,3],[19,16],[4,2],[4,7],[-1,7],[-7,15],[1,12],[6,15],[4,6],[-1,4],[-2,7],[8,10],[13,11],[11,5],[10,1],[19,1],[16,0],[7,4],[7,5],[17,9],[16,6],[20,-2],[11,-5],[9,0],[9,0],[11,3],[24,8],[30,15],[35,11],[30,9],[41,15],[39,11],[27,7],[23,10],[26,13],[19,7],[14,-6],[9,-2],[7,1],[11,4],[32,17],[16,9],[19,6],[16,6],[15,8],[16,11],[20,12],[17,4],[17,-2],[17,-8],[18,-6],[38,-6],[10,1],[12,7],[5,9],[3,10],[17,32],[10,10],[9,6],[20,7],[35,3],[65,0],[19,0],[12,2],[9,7],[14,11],[16,-1],[20,-2],[47,0],[18,5],[10,4],[7,9],[7,6],[10,5],[18,-1],[8,-7],[12,-6],[22,-2],[26,0],[46,2],[45,-6],[17,-3],[12,2],[8,4],[6,7],[10,1],[16,-3],[13,-6],[11,-6],[13,-3],[6,0],[12,-2],[9,-6],[8,-4],[13,-5],[53,-23],[14,-3],[12,2],[8,6],[6,6],[5,6],[9,9],[9,2],[15,0],[23,-7],[68,-35],[16,-9],[12,-2],[7,2],[12,1],[8,-1],[13,-9],[16,-15],[35,-26],[15,-5],[18,-3],[15,3],[10,4],[12,1],[13,-6],[18,-17],[22,-15],[23,-10],[25,-7],[26,-3],[26,2],[25,6],[24,10],[3,3],[2,4],[1,4],[1,4],[-1,4],[0,4],[-2,3],[-2,4],[-3,3],[2,3],[2,3],[3,3],[3,2],[4,1],[3,1],[4,1],[4,0],[4,-1],[39,-4],[39,-10],[36,-14],[35,-20],[51,-17],[49,-22],[47,-25],[45,-29],[43,-32],[40,-35],[36,-38],[33,-33],[26,-35],[20,-20],[18,-21],[106,-98],[13,-142],[-12,-30],[-7,-31],[-1,-32],[5,-32],[10,-30],[15,-29],[21,-25],[6,-34],[2,-34],[-3,-34],[-6,-34],[-10,-118],[-1,-8],[-2,-18],[5,-17],[13,-16],[21,-11],[18,-5],[12,-5],[8,-11],[2,-23],[6,-25],[1,-27],[-5,-16],[-10,-4],[-17,2],[-41,3],[-15,-17],[-7,-18],[-36,-64],[-18,-45],[-6,-33],[0,-21],[0,-19],[-9,-19],[-5,-16],[4,-6],[11,-3],[9,-6],[4,-12],[6,-19],[0,-24],[-5,-17],[-12,-33],[-16,-44],[2,-13],[12,-18],[16,-8],[32,0],[11,-2],[10,-10],[0,-11],[-5,-9],[-14,0],[-20,9],[-24,6],[-27,0],[-14,-5],[-11,-10],[-5,-17],[-5,-17],[2,-59],[-5,-42],[4,-19],[7,-19],[9,-21],[10,-13],[7,-2],[13,3],[2,2],[10,7],[10,18],[8,9],[11,1],[13,-9],[11,-13],[26,-47],[20,-20],[17,-20],[9,-20],[5,-28],[-3,-21],[-9,-25],[-11,-17],[-13,-15],[-22,-10],[-47,-19],[-21,-18],[-10,-14],[-18,-20],[-17,-15],[-16,-17],[-29,-46],[-41,-40],[-28,-17],[-65,-28],[-50,-21],[-10,0],[-12,5],[-11,9],[-4,11],[-1,12],[9,18],[39,25],[11,14],[6,17],[-4,17],[-11,9],[-16,1],[-15,-10],[-3,-19],[-6,-12],[-14,-12],[-24,-6],[-33,-3],[-86,-14],[-60,-16],[-43,-20],[-30,-8],[-19,0],[-23,1],[-26,-3],[-22,-6],[-57,-22],[-27,-8],[-29,2],[-28,4],[-31,0],[-19,-2],[-21,-8],[-20,-6],[-28,-1],[-15,0],[-23,-8],[-17,-10],[-17,-15],[-14,-13],[-14,-4],[-11,-5],[-5,-9],[-5,-8],[-11,-14],[-6,-3],[-9,5],[-11,5],[-17,2],[-11,-7],[-3,-10],[9,-12],[2,-14],[-8,-10],[-12,-1],[-22,7],[-17,2],[-20,-8],[-19,-16],[-12,-9],[-12,-6],[-13,-1],[-56,12],[-20,3],[-20,9],[-16,12],[-6,10],[-2,13],[3,12],[4,9],[-7,4],[-20,3],[-15,0],[-10,2],[-6,10],[3,7],[11,13],[15,21],[6,18],[-4,15],[-13,19],[-1,16],[5,16],[6,21],[-6,15],[-16,8],[-15,6],[-18,7],[-10,9],[-10,12],[-2,3],[-5,1],[-6,-2],[-16,-16],[-11,-4],[-10,0],[-5,-1],[-9,-5],[-12,-7],[-22,-3],[-16,-1],[-29,-6],[-27,-6],[-16,-9],[-44,-18],[-26,-6],[-21,-2],[-15,-2],[-14,-6],[-18,-7],[-13,-11],[-11,-14],[-14,-10],[-25,-10],[-28,-7],[-28,-8],[-20,-3],[-12,-4],[-6,-3],[-1,-14],[-11,-4],[-11,-2],[-64,2],[-35,-1],[-35,-7],[-20,-5],[-21,-7],[-27,-17],[-12,-3],[-9,4],[-5,10],[1,14],[1,22],[-2,10],[-17,20],[-39,45],[-20,18],[-23,12],[-21,6],[-26,8],[-45,27],[-32,22],[-24,9],[-25,6],[-87,-8],[-40,-10],[-20,-18],[-17,-11],[-10,0],[-12,5],[-8,11],[-7,18],[-12,35],[-16,19],[-21,14],[-23,9],[-110,8],[-30,-3],[-17,-10],[-4,-7],[-4,-7],[8,-21],[133,-101],[128,-105],[19,-23],[17,-18],[10,-21],[-5,-19],[-13,-17],[-1,-11],[14,-15],[26,-11],[34,-10],[48,-6],[28,-1],[19,4],[47,41],[34,21],[12,-1],[12,-1],[9,-5],[16,4],[11,9],[4,0],[9,-4],[11,-9],[2,-9],[-1,-16],[5,-17],[5,-13],[9,-12],[9,-7],[23,-6],[30,-16],[11,-7],[10,-1],[9,4],[10,1],[9,-6],[10,-18],[3,-4],[8,-2],[3,0],[6,-1],[5,-5],[2,-9],[-5,-13],[-9,-17],[-9,-15],[0,-5],[3,-3],[8,-6],[18,-12],[8,-8],[2,-5],[1,-18],[4,-14],[2,-9],[8,-9],[7,-5],[10,-1],[10,-1],[13,1],[5,5],[2,3],[7,-1],[4,-3],[2,-4],[8,-7],[12,-5],[13,-6],[11,-3],[15,-5],[9,-7],[14,-3],[8,3],[7,9],[7,6],[25,6],[33,-3],[22,-6],[14,-5],[9,-9],[7,-8],[4,-2],[4,-1],[8,13],[7,11],[5,2],[8,-4],[5,-8],[1,-7],[4,-9],[14,-5],[13,-1],[22,0],[25,1],[24,5],[23,-2],[47,-5],[24,1],[26,5],[20,8],[24,13],[25,25],[23,25],[20,14],[20,8],[23,2],[26,-5],[26,-9],[47,-26],[20,-8],[20,-3],[43,-16],[86,-19],[21,1],[19,10],[11,17],[7,25],[-4,23],[-5,8],[-13,5],[-19,8],[-12,7],[-12,19],[-7,24],[-7,13],[-6,15],[4,4],[10,6],[24,4],[6,4],[8,5],[6,-1],[3,-12],[1,-15],[7,-10],[6,1],[9,13],[11,3],[8,-9],[9,-7],[16,-2],[13,7],[14,17],[24,34],[4,29],[1,15],[-9,23],[-3,17],[3,13],[6,9],[11,8],[9,-10],[5,-13],[5,-13],[11,-12],[16,-7],[16,-4],[20,1],[56,-8],[32,-3],[18,1],[21,3],[16,-2],[19,-1],[22,4],[10,7],[4,11],[4,13],[13,13],[18,12],[20,11],[53,50],[58,39],[47,18],[15,-3],[15,-3],[11,-3],[11,-2],[9,-1],[10,-1],[15,1],[23,5],[23,3],[20,2],[27,1],[21,2],[18,6],[18,9],[5,-2],[15,-12],[10,-14],[-1,-11],[-9,-14],[-8,-13],[-9,-24],[-5,-21],[-9,-21],[-6,-14],[-1,-8],[-26,-20],[-3,-11],[7,-10],[14,-7],[16,-5],[7,1],[12,4],[10,13],[6,21],[-4,17],[-6,16],[-3,14],[2,8],[5,6],[9,2],[14,2],[11,9],[2,12],[0,18],[2,26],[-2,14],[-4,27],[3,14],[11,8],[12,4],[15,-1],[9,-3],[7,-11],[7,-11],[14,-7],[10,-2],[18,-1],[19,-1],[19,6],[13,9],[37,37],[32,27],[11,9],[7,0],[6,-8],[-8,-9],[-1,-6],[-1,-6],[7,-4],[14,2],[15,9],[29,6],[15,-3],[20,-9],[47,-27],[13,-13],[11,-11],[7,-10],[-3,-5],[-9,0],[-54,0],[-26,-7],[-29,-10],[-24,-6],[-18,-5],[-9,-13],[-1,-6],[6,-7],[4,-1],[25,4],[26,2],[16,-2],[15,2],[14,6],[14,-1],[11,-4],[16,-1],[18,4],[60,9],[58,3],[29,1],[9,4],[3,5],[2,8],[2,14],[4,7],[5,3],[12,-1],[16,-3],[16,-10],[12,-10],[10,-7],[13,-5],[16,-7],[10,-5],[21,-15],[41,-33],[30,-21],[51,-35],[21,-22],[12,-18],[13,-27],[24,-65],[34,-76],[42,-94],[21,-51],[2,-13],[5,-26],[-2,-32],[-8,-37],[-32,-65],[-34,-74],[-34,-81],[-14,-34],[-5,-9],[-11,-10],[-11,-10],[-15,-10],[-18,-8],[-21,-4],[-90,-12],[-54,-2],[-83,1],[-101,7],[-112,4],[-107,-5],[-84,-2],[-115,-6],[-22,-1],[-85,-9],[-120,-20],[-104,-19],[-113,-29],[-60,-13],[-54,-9],[-29,1],[-1,0],[-37,9],[-85,20],[-76,16],[-45,7],[-76,7],[-70,7],[-33,-2],[-36,-9],[-83,-28],[-182,-91],[-54,-6],[-26,3],[-127,27],[-108,19],[-61,10],[-75,13],[-89,20],[-137,30],[-75,9],[-42,9],[-64,12],[-70,17],[-38,2],[-48,16],[-51,21],[-66,31],[-57,23],[-59,20],[-74,23],[-69,22],[-81,27],[-61,30],[-45,19],[-43,14],[-71,18],[-55,6],[-78,1],[-51,-3],[-38,3],[-34,8],[-43,12],[-51,21],[-154,63],[-59,18],[-47,17],[-14,5],[-65,28],[-53,27],[-110,44],[-72,27],[-79,28],[-80,31],[-93,36],[-71,26],[-78,27],[-58,18],[-81,20],[-87,18],[-81,14],[-58,13],[-61,15],[-60,17],[-68,24],[-79,33],[-94,30],[-82,36],[-136,50],[-74,26],[-66,26],[-66,22],[-102,31],[-85,24],[-72,18],[-87,25],[-103,25],[-89,20],[-77,16],[-102,26],[-81,24],[-93,21],[-75,16],[-57,7],[-36,7],[-42,8],[-60,9],[-63,10],[-69,12],[-48,5],[-61,5],[-54,4],[-49,1],[-36,-1],[-89,11],[-57,7],[-36,4],[-52,-3],[-65,0],[-71,-6],[-69,-7],[-69,-9],[-82,-8],[-77,-7],[-220,6],[-11,-12],[-3,-25],[-4,-9],[-11,-1],[-8,6],[-2,12],[-5,9],[-214,27],[-171,21],[-23,2],[-509,20],[-684,-41],[-748,-83],[-5,-35],[-17,1],[5,32],[-103,-13],[-444,-97],[-53,-15],[-51,-20],[-50,-24],[-46,-28],[-44,-33],[-40,-36],[-21,-32],[-16,-33],[-13,-35],[-2,-9],[0,-8],[1,-8],[3,-8],[4,-7],[5,-7],[6,-6],[7,-5],[8,-3],[45,-3],[4,0],[3,-1],[4,-1],[3,-2],[3,-3],[2,-3],[1,-3],[2,-3],[0,-4],[0,-3],[-1,-4],[-6,-12],[-7,-11],[6,-27],[-8,-4],[-17,0],[-17,0],[-13,4],[-52,18],[-4,2],[-25,-43],[-459,63],[-8,1],[-6,51],[-13,-1],[-17,7],[-15,9],[-14,11],[-5,8],[-4,9],[-3,9],[-1,10],[1,9],[2,9],[4,9],[5,8],[6,8],[4,1],[4,2],[3,2],[3,3],[2,3],[1,4],[1,3],[1,4],[-51,31],[-49,21],[-22,1],[31,-186],[-278,37],[3,34],[222,-28],[15,14],[-18,129],[-194,-70],[-15,-3],[-15,-5],[-14,-7],[-12,-9],[-11,-12],[-22,-15],[-24,-12],[-25,-10],[-28,-5],[-28,-1],[-29,2],[-27,6],[-27,10],[-8,4],[-8,2],[-9,2],[-8,0],[-9,-2],[-8,-2],[-37,-6],[-38,-1],[-37,3],[-37,7],[-35,12],[-91,38],[-56,12],[-61,22],[2,-73],[-139,2],[-307,10],[1,88],[-101,12],[-6,22],[-55,11],[-56,10],[-2,-31],[1,-81],[-447,59],[4,93],[0,20],[-102,8],[-155,16],[1,-15],[-21,-1],[3,-78],[26,1],[2,-104],[-94,2],[-1,100],[41,4],[-4,93],[0,0],[-214,28],[-12,1],[-13,-1],[-12,-3],[-11,-4],[-11,-6],[-9,-8],[-8,-9],[-6,-10],[-5,-11],[-1,-49],[-12,-2],[2,-94],[-11,1],[1,-39],[0,-7],[26,-1],[2,-18],[70,2],[0,21],[0,4],[19,0],[0,-5],[1,-43],[-89,-2],[0,4],[-69,-1],[-133,6],[1,22],[133,-5],[1,19],[30,-1],[-1,5],[-1,7],[-3,0],[-6,123],[-137,-12],[-6,45],[-17,15],[-33,1],[-214,-9],[-2,-127],[-5,0],[-1,-30],[0,-8],[35,-1],[0,-16],[17,0],[7,0],[41,-1],[50,-1],[8,0],[43,0],[9,-1],[10,0],[0,-14],[-264,4],[2,39],[2,44],[-360,9],[1,14],[358,-9],[1,18],[16,-1],[-2,-75],[-1,-9],[16,0],[0,8],[1,30],[-6,0],[-1,129],[-22,2],[-17,73],[-29,13],[-107,1],[-14,-6],[-3,-37],[-314,0],[-34,39],[-144,-2],[16,-173],[-91,0],[-10,126],[-46,47],[-137,-2],[46,-124],[-118,-10],[1,-4],[4,-13],[-2,-1],[10,-27],[16,-2],[-4,-28],[-98,3],[2,18],[32,-4],[39,-4],[3,16],[-9,26],[-6,1],[-6,19],[-371,2],[-3,128],[-325,-1],[-2,-124],[-17,3],[-1,121],[-257,-1],[-188,-2],[1,-35],[0,-6],[2,-40],[0,-7],[1,-42],[1,-8],[1,-26],[1,-21],[15,0],[-1,5],[43,0],[0,-5],[225,4],[1,-14],[-11,0],[-54,-1],[-7,0],[-26,-1],[-8,0],[-52,-1],[-8,0],[-60,-1],[-8,-1],[-47,-1],[-8,0],[-51,-1],[-12,0],[0,15],[56,1],[0,22],[0,21],[-1,9],[0,32],[0,9],[-25,-1],[-5,94],[-39,0],[2,-20],[-136,0],[10,-138],[2,-27],[98,3],[0,-12],[-34,-1],[-23,-1],[-10,0],[-43,-1],[-37,-1],[-18,0],[-13,0],[0,11],[69,2],[-2,27],[-7,102],[-3,36],[-138,-2],[-4,-19],[16,-84],[4,-2],[13,-17],[2,-10],[5,-26],[-29,5],[-3,2],[-32,-10],[-2,7],[31,11],[-2,12],[-22,104],[-10,26],[-23,3],[-10,27],[-30,0],[-80,3],[-30,145],[-34,-8],[-19,69],[-605,-72],[329,-312],[-80,-2],[-342,310],[-214,-13],[300,-282],[-77,-3],[-315,283],[-216,-15],[279,-259],[-83,-3],[-176,159],[-111,101],[-233,3],[267,-251],[-80,-1],[-290,258],[-238,13],[275,-261],[-91,1],[-282,269],[-247,10],[286,-274],[-82,-1],[-312,281],[-236,12],[287,-279],[-68,0],[-323,285],[-240,13],[301,-289],[-77,0],[-316,284],[-220,-9],[293,-265],[-86,-2],[-287,263],[-217,-10],[277,-263],[-119,-3],[-282,263],[-556,-31],[-753,-98],[-414,-57],[-577,-68],[-800,-94],[-631,-69],[38,-242],[8,-51],[73,-467],[271,30],[330,36],[243,26],[567,62],[579,64],[242,27],[200,-48],[849,-202],[636,-151],[601,-142],[605,-144],[553,-131],[666,-156],[199,-47],[356,7],[572,11],[548,11],[846,16],[579,11],[589,11],[580,11],[878,17],[581,11],[0,62],[-14,0],[0,-7],[-287,-4],[-517,-12],[-2,92],[18,1],[1,-64],[7,-8],[732,14],[48,1],[0,-8],[14,0],[0,10],[31,0],[0,-30],[62,0],[0,14],[163,2],[1,-39],[-163,-2],[-1,18],[-62,-1],[3,-40],[468,10],[0,105],[19,2],[5,-107],[34,1],[-3,106],[26,2],[2,-106],[39,-1],[17,39],[18,30],[32,25],[35,6],[38,-10],[17,-19],[17,-34],[13,-37],[33,-136],[266,-1102],[16,-16],[112,-434],[-8,-214],[85,-387],[31,-6],[359,-1469],[-1,-79],[-235,-356],[-38,-31],[-987,-55],[-153,-19],[-907,-26],[-33,-3],[-19,-9],[-6,-24],[5,-203],[-63,4],[-4,161],[-48,57],[-152,68],[-268,100],[-295,89],[-147,14],[-56,-32],[-26,-36],[-11,-39],[-18,-77],[-13,-149],[-7,-4],[-8,-3],[-7,-1],[-8,0],[-8,1],[-8,2],[-7,4],[0,0],[-23,85],[-1,3],[-2,4],[-2,3],[-3,2],[-4,2],[-3,2],[-4,1],[-4,0],[-4,0],[-4,-1],[-4,-2],[-474,-19],[-837,-33],[-2194,-89],[-6,7],[-5,7],[-4,9],[-2,8],[-1,9],[0,9],[2,8],[4,8],[4,8],[6,6],[7,6],[7,5],[9,3],[-5,12],[-6,11],[-7,10],[-10,9],[-11,7],[-12,5],[-12,4],[-13,1],[-88,22],[-91,26],[-142,34],[-109,34],[-112,22],[-104,18],[-111,13],[-71,9],[-71,4],[-71,0],[-71,-5],[-71,-9],[-70,-13],[-22,-11],[-22,-15],[-18,-17],[-16,-19],[49,-306],[-8,-19],[-1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-6,-3],[-6,-3],[-6,-1],[-4,0],[-3,0],[-4,1],[-3,2],[-3,2],[-9,15],[-22,142],[-11,29],[-30,23],[-109,20],[-109,14],[-110,8],[-111,4],[-56,1],[-56,-4],[-56,-7],[-55,-13],[-53,-16],[-52,-20],[-33,-24],[-30,-27],[-25,-31],[-21,-34],[-15,-36],[-10,-38],[-4,-39],[29,-7],[127,17],[20,-10],[7,-46],[-9,-19],[-450,-74],[-38,1],[-42,-2],[-13,-2],[-74,-8],[-102,-18],[-422,-57],[-569,-77],[-173,-23],[-262,-68],[-95,-31],[-234,-75],[-91,8],[-74,-2],[-77,-20],[-137,-10],[0,0],[-174,-22],[-146,-24],[-172,-29],[-94,1],[-23,0],[-154,-2],[-195,-18],[-102,-51],[-72,-45],[-115,-39],[-133,-8],[-119,28],[-104,29],[-102,3],[-75,2],[-76,2],[-133,0],[-23,-7],[-44,-12],[-53,-22],[-36,18],[-11,-23],[-13,-116],[-32,-10],[-14,22],[4,143],[-21,35],[-163,29],[-442,0],[-16,0],[-346,-34],[-318,-47],[-84,-45],[-15,-26],[45,-261],[-9,-27],[-22,-2],[-27,20],[-51,244],[-59,24],[-392,12],[-461,-32],[-304,-43],[-134,-29],[-144,-46],[-51,-34],[-6,-33],[21,-338],[-28,-28],[-24,17],[-29,303],[-14,14],[-183,37],[-271,14],[-239,-14],[-170,-20],[-123,-6],[-78,-12],[-59,2],[-743,-117],[-352,-36],[-237,-24],[-572,-60],[-343,-34],[-339,-34],[-581,-62],[-731,-48],[-116,-52],[-29,-39],[45,-126],[-19,-39],[-20,-7],[-14,17],[-51,141],[-57,6],[-104,-8],[-244,-8],[-127,-18],[-107,-22],[-177,-52],[-76,-28],[-57,-26],[-86,-24],[-154,-77],[-11,-26],[159,-376],[-21,-24],[-23,-2],[-171,391],[-122,29],[-127,10],[-154,-6],[-399,-63],[-144,-33],[-150,-64],[-13,-35],[-17,-68],[146,-355],[-8,-39],[12,-30],[-30,-15],[-23,17],[-146,398],[-38,79],[-55,36],[-142,0],[-409,-40],[-271,-79],[-132,-46],[-123,-72],[-10,-45],[80,-275],[13,-183],[-24,-33],[-25,13],[-21,26],[-11,49],[-4,85],[-11,67],[-14,117],[-24,112],[-12,29],[-176,11],[-170,-9],[-250,-29],[-271,-56],[-272,-88],[-114,-63],[40,-358],[0,-64],[-32,0],[-17,26],[-15,54],[-5,131],[-53,127],[-47,74],[-153,49],[-182,-2],[-386,-53],[-7,-1],[-87,-17],[-86,-21],[-85,-26],[-83,-30],[-81,-35],[-80,-38],[60,-373],[-19,-42],[-45,-16],[-233,22],[-18,23],[224,17],[10,57],[-4,40],[-21,121],[-8,113],[-8,21],[-12,20],[-15,17],[-17,16],[-29,15],[-30,12],[-42,15],[-44,9],[-79,18],[-79,13],[-80,7],[-81,2],[-81,-2],[-80,-8],[-80,-13],[-78,-19],[-221,-75],[-40,-22],[-151,-99],[-51,-36],[-8,-44],[34,-61],[51,-44],[36,-10],[123,-26],[5,2],[5,1],[6,0],[5,0],[6,-2],[5,-3],[4,-3],[4,-4],[3,-4],[2,-5],[2,-5],[0,-6],[-33,-31],[-87,4],[-106,18],[-127,147],[-17,110],[-12,89],[-60,22],[-137,8],[-200,0],[-245,-44],[-183,-54],[-184,-65],[-127,-44],[-123,9],[2,-33],[13,-38],[15,-29],[44,-24],[139,-7],[60,-3],[26,-10],[8,-16],[-17,-18],[-233,-10],[-49,30],[-42,54],[-32,135],[-19,30],[-49,7],[-146,-2],[-208,-19],[-156,-26],[-367,-78],[166,-957],[214,34],[10,-49],[-216,-40],[75,-426],[-56,-9],[-77,431],[-208,-33],[-12,51],[218,34],[-167,956],[-1221,-155],[-128,-13],[-319,-23],[-11,-54],[-25,2],[-23,40],[-195,-20],[-252,-24],[-157,-22],[-157,-22],[-162,-26],[-362,-69],[27,-153],[-35,-2],[-19,26],[-19,67],[-16,53],[-71,-5],[-57,-2],[-136,-24],[-131,-10],[-178,-30],[-181,-26],[-129,-25],[-72,-14],[-163,-38],[-153,-46],[19,-151],[15,-111],[-46,-8],[-22,133],[-22,139],[-204,8],[-229,-26],[-204,-34],[-195,-26],[-55,-7],[-144,-18],[-124,-26],[-149,-52],[15,-101],[-22,-30],[-21,12],[-8,51],[-16,47],[-65,31],[-87,2],[-203,8],[-30,2],[-214,12],[-239,-16],[-172,-22],[-76,2],[-81,-7],[-125,-31],[-8,-105],[10,-86],[-32,-35],[-38,59],[-8,100],[-19,72],[-138,25],[-155,30],[-146,0],[-252,-14],[-151,-2],[-122,-4],[-92,-3],[-29,-5],[-93,-6],[-77,-20],[-23,-34],[0,-63],[-9,-46],[-31,3],[-17,112],[-45,30],[-91,38],[-110,30],[-93,27],[-119,10],[-68,10],[-106,18],[-102,8],[-222,-14],[-146,0],[-240,-18],[-17,-16],[-10,-49],[-28,3],[-18,20],[2,30],[6,18],[-18,17],[-128,-4],[-127,-8],[-127,-13],[-126,-17],[-125,-22],[-91,-2],[-91,-7],[-90,-12],[-89,-16],[-193,-45],[-132,-46],[-83,-30],[-28,-43],[45,-429],[-63,-8],[-71,553],[-17,236],[-74,383],[-86,488],[-33,42],[-37,41],[-39,37],[-43,35],[-28,45],[-34,41],[-37,39],[-42,34],[-45,30],[-48,26],[-50,21],[-53,16],[-54,11],[-54,5],[-20,-8],[-20,-7],[-21,-4],[-30,-2],[-29,2],[-29,7],[-27,11],[-24,16],[-22,18],[-19,22],[-14,25],[-10,26],[-6,24],[-1,25],[-44,49],[-48,46],[-52,42],[-55,38],[-58,34],[-60,29],[-63,25],[-65,21],[-66,15],[-67,11],[-1144,388],[-1263,282],[-446,29],[-399,26],[-396,153],[-275,106],[-462,480],[-70,74],[-190,591],[-28,158],[-23,158],[-17,159],[-11,159],[-6,160],[-209,622],[-42,58],[-37,59],[-32,62],[-28,65],[-6,40],[0,41],[42,97],[39,99],[35,100],[31,101],[27,102],[248,512],[64,103],[69,101],[73,98],[77,94],[82,92],[85,88],[89,85],[93,81],[97,77],[99,74],[95,64],[97,60],[99,57],[102,19],[101,24],[99,29],[98,35],[95,39],[94,43],[90,49],[88,53],[68,45],[66,48],[63,50],[61,53],[14,11],[86,64],[90,61],[92,56],[96,51],[98,47],[100,42],[102,38],[105,32],[106,28],[603,96],[268,43],[750,-100],[530,-103],[642,-222],[457,-52],[214,17],[384,30],[250,-63],[64,-20],[65,-18],[75,-15],[76,-11],[77,-7],[77,-3],[77,2],[77,7],[76,11],[75,15],[75,19],[95,26],[111,29],[112,27],[58,20],[60,16],[61,11],[62,7],[62,3],[63,-2],[62,-6],[61,-11],[60,-15],[31,-28],[28,-31],[24,-34],[20,-36],[16,-38],[11,-39],[7,-41],[2,-41],[-13,-57],[-17,-57],[-19,-57],[-7,-23],[-3,-25],[1,-24],[5,-25],[9,-23],[13,-21],[17,-21],[21,-17],[23,-14],[25,-10],[27,-6],[3475,-978],[202,-56],[51,-9],[51,-5],[52,-1],[55,2],[54,8],[54,11],[52,16],[51,19],[49,24],[232,32],[208,40],[413,-163],[71,-16],[82,-106],[283,-170],[348,-15],[178,39],[98,61],[232,68],[-5,24],[-147,-47],[-8,18],[219,68],[38,13],[6,-19],[-12,-3],[-84,-29],[7,-19],[61,18],[60,17],[5,39],[426,523],[-35,38],[-38,35],[-40,32],[-44,29],[-45,26],[149,209],[381,506],[173,150],[-17,63],[-7,31],[-75,350],[-495,-377],[-62,-74],[-58,-76],[-54,-79],[-50,-82],[-46,-84],[-41,-86],[-37,-88],[-32,-89],[-72,-267],[-107,-133],[-162,-146],[-67,7],[-487,254],[-144,159],[-251,155],[-98,4],[-158,185],[-768,283],[-270,40],[-70,93],[38,141],[-30,79],[-59,14],[-18,92],[18,89],[81,92],[841,1820],[-8,44],[-3,46],[1,46],[7,45],[12,44],[16,43],[21,41],[-442,-208],[-1051,-587],[-33,-21],[-29,-24],[-25,-29],[-20,-32],[-25,-21],[-27,-17],[-29,-14],[-31,-10],[-14,-6],[-12,-8],[-11,-10],[-8,-11],[-7,-13],[-4,-14],[-18,-14],[-20,-12],[-22,-8],[-24,-5],[-89,-71],[-93,-66],[-96,-62],[-99,-59],[-101,-55],[-104,-50],[-105,-46],[-108,-42],[-33,-4],[-31,-9],[-30,-13],[-27,-18],[-23,-22],[-17,-23],[-19,-20],[-23,-17],[-25,-13],[-28,-10],[-28,-5],[-34,-3],[-33,-8],[-31,-13],[-28,-17],[-25,-22],[-21,-26],[-9,-21],[-12,-20],[-16,-18],[-19,-15],[-21,-12],[-22,-9],[-24,-5],[-25,-1],[-24,2],[-24,7],[-190,-49],[-99,-21],[-104,56],[-311,40],[-415,136],[-258,139],[-1466,357],[-80,80],[-67,284],[-12,388],[47,106],[70,60],[91,86],[73,43],[77,86],[73,26],[67,43],[62,53],[46,40],[73,83],[115,63],[105,56],[122,106],[115,60],[87,43],[123,20],[110,40],[-2,82],[-123,10],[-238,18],[-383,35],[-111,106],[-147,0],[4,50],[108,3],[-67,240],[43,134],[129,106],[237,37],[122,43],[86,5],[221,15],[39,0],[45,16],[1182,686],[1278,741],[-38,44],[-845,-461],[-38,73],[979,584],[-84,135],[-470,-280],[-221,-135],[-9,11],[-85,-46],[-5,10],[-38,-26],[-7,10],[266,157],[-13,26],[61,36],[-27,24],[-261,-156],[-4,10],[-1393,-809],[-111,-65],[-3,6],[-11,27],[1504,855],[0,10],[244,149],[173,111],[-15,24],[-276,408],[-2953,-1835],[7,-278],[-3,-23],[-35,-43],[-46,-27],[-48,-13],[-35,16],[-37,54],[5,114],[-28,193],[-12,77],[67,70],[1547,933],[-31,43],[-53,20],[-405,594],[-349,-201],[-141,230],[673,414],[-27,34],[-257,-145],[-18,32],[261,149],[-41,77],[-27,44],[-20,23],[-24,29],[-36,34],[-37,47],[-23,32],[-9,38],[10,26],[28,16],[28,-8],[21,-26],[37,-49],[38,-15],[26,6],[29,18],[29,33],[26,41],[369,476],[401,251],[4,43],[-1,44],[-6,43],[-11,42],[-15,41],[-19,40],[-24,37],[-518,-343],[-40,61],[448,275],[76,53],[-164,157],[-629,-328],[-374,-265],[-252,-43],[-178,27],[-40,15],[-38,20],[-35,24],[-31,28],[-26,32],[-23,35],[-17,37],[-12,39],[-7,40],[-1,41],[108,141],[239,192],[227,166],[170,103],[7,9],[5,9],[3,9],[2,11],[0,10],[-2,10],[-3,10],[-6,9],[-6,8],[-8,7],[-10,5],[-10,4],[-10,3],[-128,86],[-30,49],[-25,51],[-21,52],[-17,54],[-13,55],[-8,56],[177,161],[138,99],[363,173],[-96,50],[-1091,-610],[-466,-207],[-361,728],[-181,319],[55,64],[-99,119],[-116,173],[-69,144],[-74,142],[-78,140],[-84,137],[-87,135],[-92,132],[-96,129],[-101,127],[-104,123],[-109,120],[-1172,1125],[-1374,1077],[-458,351],[-454,349],[-246,151],[-99,71],[-100,69],[-146,99],[-149,97],[-150,94],[-162,96],[-163,94],[-165,90],[-131,70],[-133,67],[-119,63],[-189,100],[-390,161],[-14,6],[-570,207],[-521,191],[-322,84],[-323,80],[-217,43],[-218,37],[-219,32],[-220,27],[-220,21],[-249,-8],[-186,-35],[-19,-23],[-503,151],[1,27],[-120,125],[-62,47],[-198,165],[-221,134],[-88,50],[-91,46],[-94,40],[-95,36],[-98,31],[-99,26],[-100,20],[-102,16],[-102,10],[-2254,360],[-2578,398],[-460,124],[-516,328],[-81,51],[-260,215],[-223,193],[-40,24],[-168,70],[-356,331],[-549,579],[-118,132],[-303,358],[-51,81],[-47,84],[-41,86],[-26,75],[-32,73],[-36,70],[-41,69],[-46,66],[-51,62],[-54,60],[-58,56],[-62,52],[-66,49],[-28,19],[-30,17],[-31,15],[-46,12],[-45,17],[-43,22],[-39,25],[-37,30],[-33,34],[-152,142],[-25,40],[-20,37],[-60,159],[-55,161],[-49,162],[-43,164],[-38,165],[-34,108],[-38,107],[-44,106],[-49,103],[-54,101],[-58,99],[-63,96],[-67,93],[-72,90],[-76,88],[-80,83],[-741,851],[-118,153],[-177,229],[-146,260],[-236,425],[-255,540],[-91,242],[-58,218],[-156,1099],[-83,448],[-97,522],[-68,368],[-153,931],[-37,70],[-32,71],[-27,72],[-23,75],[-18,75],[-13,76],[-3,82],[-1,82],[3,129],[9,129],[15,128],[-12,147],[-45,482],[-48,282],[34,266],[-9,341],[-1,47],[-29,95],[-26,96],[-21,96],[-16,98],[-12,98],[-8,99],[-3,99],[1,85],[4,85],[7,85],[74,413],[46,253],[25,483],[47,566],[85,1023],[8,61],[70,547],[16,125],[116,543],[-8,72],[-2,72],[3,72],[9,71],[15,71],[20,70],[25,68],[30,66],[36,64],[40,61],[45,58],[54,152],[229,638],[84,231],[146,399],[387,1043],[533,1387],[169,431],[202,518],[235,601],[226,579],[175,414],[-1211,466],[46,116],[1216,-461],[73,171],[79,169],[84,167],[89,164],[71,124],[74,122],[77,120],[80,119],[-166,231],[-227,157],[-240,243],[-11,15],[-8,16],[-5,17],[-2,18],[0,18],[4,17],[7,17],[10,16],[12,13],[14,12],[1393,1667],[-54,38],[288,337],[762,-578],[110,121],[28,35],[192,-148],[47,53],[-146,111],[-44,30],[143,165],[26,27],[38,-34],[142,-106],[50,-3],[186,241],[668,827],[890,-671],[52,52],[-97,85],[181,219],[25,-18],[-167,-186],[3,-14],[72,-66],[290,-247],[47,57],[121,144],[25,-18],[-165,-199],[155,-108],[281,378],[445,533],[610,820],[-2166,1625],[-120,90],[217,245],[123,-91],[2152,-1596],[208,229],[192,-144],[143,169],[103,115],[36,44],[-1041,785],[26,33],[8,11],[13,17],[828,-646],[124,150],[203,-159],[130,167],[-609,546],[100,218],[-354,907],[430,630],[-224,169],[-129,-155],[-394,290],[111,128],[-35,28],[94,106],[53,-11],[100,122],[383,-287],[-111,-140],[8,-8],[-16,-16],[205,-158],[154,192],[22,-14],[17,20],[106,129],[11,-7],[20,23],[-782,545],[53,72],[767,-572],[220,125],[104,-75],[38,46],[331,-263],[21,22],[3,2],[105,126],[-1560,1197],[89,83],[1550,-1181],[63,11],[669,-494],[122,139],[39,-26],[22,13],[-18,21],[0,23],[-72,59],[20,22],[72,-55],[36,40],[36,-26],[46,119],[-181,125],[-615,502],[53,54],[612,-505],[174,-131],[52,70],[-13,10],[-1788,1376],[132,132],[37,-92],[125,-119],[144,-18],[98,-30],[32,-44],[24,-62],[552,-401],[56,0],[98,40],[55,35],[242,291],[28,110],[-1250,969],[88,105],[595,-497],[102,-9],[37,-22],[154,75],[213,247],[28,127],[56,62],[-418,343],[111,172],[465,-343],[158,4],[23,-22],[0,-92],[79,-58],[144,5],[135,-44],[250,0],[126,-128],[102,27],[37,-9],[-32,-62],[42,-44],[79,-13],[51,0],[28,-79],[41,-88],[51,-88],[28,-49],[65,13],[312,304],[-1324,951],[127,168],[1349,-983],[446,550],[-194,117],[29,50],[-1475,1153],[59,73],[1510,-1070],[218,223],[164,-111],[159,217],[-1681,1348],[123,139],[188,229],[1705,-1259],[258,323],[-1428,1131],[47,67],[-123,94],[111,112],[124,-89],[-12,-51],[1522,-1019],[388,507],[-1881,1421],[1187,1008],[952,-729],[212,167],[740,-550],[390,-311],[258,321],[195,291],[-1806,1406],[537,348],[311,0],[1498,-1172],[1013,-725],[17,19],[490,555],[200,226],[-1805,1419],[-56,188],[565,482],[537,80],[1562,-1177],[294,331],[94,-70],[775,-569],[61,64],[24,26],[-63,47],[-4,3],[-5,4],[0,0],[-10,7],[-72,55],[-72,54],[-118,85],[-13,10],[-18,13],[-6,4],[-4,3],[-114,85],[-106,79],[-2,4],[0,0],[-1,1],[-8,26],[-77,66],[-220,172],[-102,69],[-26,5],[-19,-11],[0,0],[0,0],[-112,80],[-100,72],[-17,12],[0,0],[2,1],[83,103],[100,138],[1,1],[2,4],[289,-190],[530,-369],[233,-159],[193,-154],[10,-7],[41,-33],[15,-13],[198,256],[-251,176],[-215,146],[-78,60],[-14,-17],[-48,37],[-55,42],[0,0],[-2,-3],[-1,-1],[0,0],[-1,-2],[-25,-32],[7,-26],[-9,-11],[38,-30],[-117,-142],[-313,234],[-74,54],[125,137],[58,-43],[51,54],[0,0],[1,1],[0,0],[2,2],[2,2],[-137,103],[0,0],[-3,-4],[-1,-1],[-1,0],[0,-1],[-27,-30],[8,-28],[-11,-10],[39,-28],[-120,-143],[-173,133],[-209,156],[125,137],[59,-46],[47,55],[1,2],[1,1],[4,5],[-182,139],[-5,2],[-1,0],[-1,0],[-1,1],[-238,170],[-262,197],[-436,327],[-144,109],[-35,27],[-3,18],[32,37],[22,4],[207,-153],[29,35],[-5,23],[8,14],[-41,30],[120,143],[372,-284],[-113,-142],[-57,43],[-51,-60],[156,-118],[58,54],[-65,48],[118,144],[377,-284],[-116,-138],[-56,40],[-52,-62],[97,-70],[34,39],[44,-31],[14,20],[55,-2],[32,38],[-14,50],[20,19],[-47,33],[41,46],[-84,58],[89,105],[5,43],[-18,12],[16,16],[-56,40],[17,6],[-26,20],[17,19],[112,2],[-5,-486],[0,-1],[4,-2],[1,0],[49,-37],[782,-584],[3,3],[18,15],[1,-1],[394,-292],[139,194],[-736,577],[167,245],[-594,466],[260,314],[2308,-1667],[118,134],[17,-13],[52,-41],[53,61],[157,177],[-27,15],[190,227],[124,149],[-29,18],[-13,9],[158,192],[83,96],[110,129],[-2101,1592],[424,256],[128,-6],[-8,-13],[264,-3],[256,194],[-160,117],[481,290],[438,-73],[270,347],[321,418],[-17,315],[67,94],[-50,27],[-15,-67],[9,-3],[-4,-29],[-13,-5],[-16,-110],[-53,-317],[-3,-18],[-6,1],[-31,7],[54,280],[45,284],[68,96],[195,271],[-96,63],[-63,41],[7,60],[-10,60],[15,103],[88,459],[24,120],[95,498],[-96,154],[-35,52],[-97,-145],[-238,-495],[-192,-497],[-5,-11],[-175,-474],[-243,-603],[-466,177],[-222,-452],[-496,169],[-421,-949],[-183,-66],[-312,127],[40,108],[-222,76],[-257,87],[-432,151],[-1,1],[-228,-19],[-35,-40],[-209,73],[-67,-86],[-18,6],[-157,-426],[18,-2],[-337,-884],[-38,16],[-22,-62],[4,-2],[6,-5],[6,-5],[4,-6],[4,-7],[2,-7],[1,-7],[-1,-8],[-1,-7],[-4,-7],[-4,-7],[-5,-5],[-7,-5],[-7,-3],[-7,-2],[-8,-2],[-8,1],[-8,1],[-7,3],[-7,4],[-6,4],[-5,6],[-4,7],[-3,7],[-1,7],[0,8],[1,7],[2,7],[4,7],[5,6],[6,5],[7,4],[7,3],[8,1],[8,1],[0,0],[9,-1],[7,20],[16,41],[-32,9],[90,243],[275,738],[31,77],[130,353],[451,1157],[350,900],[-425,154],[-365,-876],[-363,-896],[-117,-25],[-461,-1187],[-154,84],[440,1103],[-1714,-52],[-1044,-2650],[-2607,-399],[-715,214],[-335,325],[-275,449],[-426,3502],[-116,527],[-357,423],[283,-18],[850,-437],[509,-4316],[70,-307],[55,-83],[285,-52],[55,468],[2266,202],[869,2212],[321,32],[12,336],[-137,86],[-217,0],[22,401],[-414,57],[-49,255],[66,225],[-68,135],[-1510,-675],[-115,17],[4,62],[1541,655],[-11,35],[-16,33],[-20,31],[-23,29],[-28,26],[-31,24],[-35,19],[-37,15],[-38,11],[-40,6],[-40,1],[-40,-3],[-40,-8],[-38,-13],[-36,-18],[-33,-21],[-30,-25],[-578,320],[-28,-24],[-32,-18],[-35,-14],[-35,-9],[-36,-3],[-36,1],[-36,7],[-34,11],[-175,143],[-499,-535],[-74,53],[514,540],[153,166],[155,163],[-223,192],[-845,-894],[-55,52],[866,927],[36,-26],[776,864],[-240,204],[-364,-370],[-723,-736],[-745,579],[1079,1161],[-238,203],[-295,-312],[-785,-832],[-905,-967],[-392,240],[948,1047],[-13,15],[-285,323],[-28,-24],[-11,11],[-48,-50],[8,-7],[-40,-57],[-41,24],[33,56],[21,-8],[54,50],[-13,13],[34,29],[-194,191],[-13,12],[-11,14],[-8,16],[-5,17],[-2,17],[1,17],[82,235],[13,65],[-4,55],[-4,27],[17,27],[-5,12],[58,51],[-39,38],[94,103],[-195,161],[-29,-21],[-21,17],[-42,-2],[-71,-73],[54,-47],[35,35],[54,-45],[-131,-141],[-52,42],[32,40],[-58,46],[-145,-164],[-6,-5],[-8,-3],[-8,-3],[-8,-1],[-8,1],[-9,2],[-7,3],[-7,4],[-6,5],[-6,6],[-4,7],[-2,8],[-1,8],[0,8],[1,7],[292,310],[-4,14],[-8,14],[-9,13],[-11,11],[-12,10],[-35,130],[2,14],[4,14],[6,13],[9,11],[10,11],[13,8],[14,6],[14,4],[15,1],[234,7],[27,49],[22,51],[17,53],[12,53],[8,55],[2,55],[-2,55],[-8,54],[-12,54],[-39,5],[-3,42],[-700,-20],[-8,55],[-400,-3],[-113,378],[538,28],[-37,450],[-29,14],[-1,2],[-17,26],[25,38],[56,3],[3,1],[11,14],[15,20],[4,1],[374,24],[0,15],[12,369],[-114,-7],[-19,-21],[-1,0],[-2,0],[-12,11],[-8,8],[-180,-10],[-18,-23],[-5,1],[-19,18],[-279,-14],[-41,-44],[-77,65],[-1,2],[69,72],[21,-17],[56,-46],[1,0],[38,2],[53,1],[2,2],[1,1],[17,18],[3,0],[22,-18],[53,4],[36,2],[19,21],[1,0],[3,-1],[20,-17],[2,0],[2,0],[85,3],[2,2],[14,15],[5,5],[3,0],[19,-17],[3,0],[36,1],[52,2],[1,1],[19,20],[1,0],[3,0],[19,-16],[33,0],[65,2],[-7,82],[102,3],[-19,135],[-24,-5],[-38,18],[-121,184],[-133,-6],[-260,-10],[-140,-23],[-10,-1],[-11,1],[-10,3],[-9,4],[-9,6],[-7,6],[-6,8],[-5,9],[-3,9],[-2,10],[0,9],[2,10],[168,477],[132,87],[87,65],[-39,46],[784,584],[48,-46],[48,37],[62,-27],[385,286],[37,27],[983,739],[-74,101],[147,110],[133,100],[1269,955],[121,-118],[311,-391],[-8,-43],[-1220,-920],[307,-378],[-164,-164],[82,-71],[448,-389],[716,760],[777,825],[580,617],[-257,298],[-425,542],[-626,-461],[-93,98]],[[153249,146536],[112,78],[30,5],[29,-28],[37,-4],[37,7],[31,11],[107,42],[325,160],[359,-183],[346,-71],[133,387],[23,66]],[[155206,147640],[255,470]],[[155939,148660],[255,527]],[[156462,149814],[627,-223],[68,194],[553,-200],[162,372]],[[157085,150907],[94,292],[46,142]],[[157518,152027],[193,596]],[[158139,153314],[239,493],[261,521],[26,51],[4,8],[-69,168]],[[158631,154654],[111,71],[70,69],[115,-56],[35,99],[42,-13],[66,152],[-66,28]],[[159310,155702],[221,539]],[[159854,156917],[82,-3],[128,122],[-13,155],[3,86],[-42,28],[339,567]],[[161316,159489],[46,97],[12,24]],[[161526,159734],[85,107],[-121,104],[-85,65],[70,106]],[[161545,160243],[34,34],[-36,41],[-12,14],[0,16],[12,12],[46,47],[-48,62],[45,36],[41,32],[41,33],[438,138],[35,-12],[16,-55],[4,-15],[50,21],[4,1],[63,24],[-25,67],[73,21],[438,8],[68,-3],[111,50],[126,-3],[112,-1],[4,-226],[102,-151],[59,-88],[275,-63],[291,22],[144,246],[105,49],[147,327],[14,21],[36,52],[84,7],[370,-104],[91,-61],[91,-4],[81,-14],[50,-12],[181,-97],[179,-8],[65,-11],[8,409],[206,49],[426,32],[252,-12],[29,-10],[28,-14],[25,-17],[22,-21],[19,-24],[15,-26],[11,-28],[57,1],[63,69],[-4,215],[1048,150],[447,43],[361,35],[7,-51],[13,-86],[23,-4],[65,19],[110,-7],[-2,27],[157,34],[58,13],[-2,-15],[-2,-16],[179,-18],[1,26]],[[169250,161476],[870,-141],[10,416],[104,-41],[322,-3],[-10,-68],[420,-15],[2,20],[140,-3],[31,18],[4,99],[36,-8],[20,45],[82,1],[-5,-11],[80,-16],[-1,-5],[-81,16],[-113,-304],[76,-17],[97,-21],[61,282],[29,-4],[-67,-283],[84,-17],[33,-8],[61,283],[24,-6],[-59,-283],[7,-1],[25,105],[111,-22],[21,90],[-16,5],[5,24],[17,-3],[20,91],[-20,6],[6,25],[19,-3],[-7,80],[-5,1],[1,8],[-283,60],[2,4],[285,-59],[3,13],[27,-4],[-4,-27],[-15,2],[7,-80],[14,-4],[-4,-26],[-17,4],[-19,-93],[12,-4],[-3,-25],[-16,3],[-23,-89],[17,-3],[-103,-446],[38,-79],[56,-4],[98,-157],[75,-107],[-7,-33],[-2,-13],[96,-137],[412,-87],[11,40],[47,-8],[31,-4],[-186,-785],[94,-44],[41,39],[99,-142],[49,133],[138,337],[368,895],[172,-47],[-598,-1478],[177,-232],[181,-153],[117,-98],[387,672],[127,-70],[-383,-725],[1,-1],[-21,-28],[-16,-22],[68,-35],[51,-4],[1,-1],[136,-62],[-5,-6],[-6,-7],[68,-30],[60,118],[529,-247],[-658,-1198],[-116,-219],[-3,-26],[1,-26],[6,-26],[11,-24],[15,-22],[19,-19],[22,-16],[24,-12],[27,-8],[27,-3],[28,1],[26,6],[26,10],[23,14],[20,18],[110,226],[535,1018],[126,86],[141,-170],[21,-1],[57,-2],[135,-145],[-7,-19],[165,-188],[225,-254],[218,-164],[113,65],[-142,231],[-224,262],[-177,189],[-38,0],[-118,135],[-10,78],[-137,159],[353,105],[188,-195],[24,14],[790,-875],[267,-295],[99,-47],[122,94],[-15,92],[-1075,1186],[21,20],[-506,579],[303,243],[1864,-1914],[210,211],[-2076,2180],[105,119],[519,-403],[1602,-1244],[192,193],[-31,102],[-1542,1210],[-519,407],[96,97],[434,-356],[219,-38],[105,127],[-53,147],[-1477,1148],[-775,594],[164,194],[566,-493],[575,399],[-465,381],[-824,758],[243,264],[700,-685],[550,-486],[318,-284],[298,-267],[79,46],[57,754],[-32,91],[-1054,1454],[271,194],[1022,-1406],[80,43],[173,-330],[-141,-1146],[199,-30],[-8,-334],[1586,-1219],[65,69],[24,395],[-530,411],[-597,467],[37,698],[-35,848],[-204,412],[-140,289],[-57,1008],[206,659],[6,94],[-50,39],[-188,46],[-65,58],[52,49],[45,-4],[54,0],[103,-18],[33,125],[-65,18],[-47,40],[15,45],[59,42],[169,70],[20,52],[-271,151],[10,14],[60,-8],[31,-20],[66,-17],[146,-55],[19,64],[31,50],[-34,23],[35,124],[54,19],[30,81],[10,46],[120,423],[13,44],[32,16],[-31,17],[19,94],[-66,24],[11,36],[9,23],[6,17],[15,39],[19,37],[6,10],[9,35],[13,40],[35,-11],[6,-2],[3,8],[28,91],[82,-25],[30,-9],[18,16],[-2,22],[13,53],[-10,3],[-62,18],[43,118],[-213,93],[280,801],[237,662],[219,577],[180,474],[44,24],[30,54],[-12,62],[93,179],[-24,16],[-72,52],[310,555],[106,202]],[[179015,171086],[5,16],[9,-2],[6,-2],[7,15],[103,195],[58,-34],[11,-6],[30,36],[73,76],[-20,20],[-16,16],[-8,45],[166,195]],[[179451,171670],[95,109],[1,3],[44,12],[66,-26],[231,285],[-81,70],[-3,2],[-66,155],[-94,73],[100,227],[7,108],[147,193],[77,-42],[67,29],[212,-157],[61,-45],[51,57],[16,18],[-68,48],[-9,6],[51,49]],[[180385,172927],[163,271]],[[180604,173339],[271,464],[13,26],[63,-11],[14,17],[278,349],[129,281],[312,874],[12,29],[100,239]],[[181837,175693],[64,82],[6,7],[145,581],[-282,222],[132,133],[87,-71],[139,-92],[77,52],[154,68],[453,-116],[41,-52],[995,-390],[266,-100],[116,-6],[64,18],[61,171],[-6,299],[-201,101],[-47,23],[-46,157],[-1053,-63],[-99,485],[-482,-80],[-342,16],[-23,261],[22,353],[73,69],[50,466],[172,577],[56,279],[24,41],[10,193],[-40,6],[-6,341],[-43,152],[-34,0],[-14,87],[-82,488],[36,0],[5,0],[-11,70],[-81,549],[-176,466],[-68,29],[-52,34],[-131,557],[-88,418]],[[181653,182726],[-23,213],[20,110],[-29,140],[19,150],[25,107],[61,156],[59,199],[66,101],[46,87],[92,108],[115,222],[239,326],[415,571],[5,6],[27,38],[28,34],[79,92],[35,39],[10,18],[4,6],[18,24],[25,31],[32,33],[11,15],[27,43],[20,27],[53,65],[13,20],[27,44],[14,19],[8,9],[10,9],[12,8],[36,24],[10,8],[8,8],[17,19],[39,50],[12,14],[12,11],[58,51],[43,35],[20,18],[39,37],[71,67],[17,14],[33,23],[13,9],[38,30],[24,21],[62,59],[34,34],[6,4],[6,4],[23,11],[8,4],[21,15],[33,25],[23,26],[17,16],[78,74],[18,17],[16,15],[35,29],[39,31],[44,33],[53,40],[121,90],[41,30],[25,18],[55,42],[30,22],[51,35],[54,34],[80,51],[163,98],[38,23],[84,52],[7,5],[10,6],[8,1],[9,1],[77,12],[705,107],[3,0],[3,0],[10,1],[19,-4],[33,-6],[207,40],[170,14],[71,12],[27,4],[30,2],[32,1],[37,0],[36,-2],[65,-6],[28,-2],[70,-5],[31,-1],[24,0],[23,0],[22,-5],[58,-13],[34,-6],[97,-17],[48,-6],[98,-10],[41,-5],[91,-12],[83,-14],[192,-44],[38,-11],[46,-13],[43,-10],[38,-10],[63,-16],[106,-29],[122,-27],[6,-1],[20,-4],[25,-6],[44,-10],[10,-3],[8,-2],[10,-3],[7,-12],[3,-3],[11,-15],[3,-3],[4,-2],[5,-3],[5,-2],[10,-2],[5,-1],[5,1],[5,0],[4,2],[0,0],[0,0],[0,0],[1,0],[0,0],[0,0],[0,1],[0,0],[0,1],[0,1],[0,2],[-1,6],[0,1],[0,1],[0,0],[0,1],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1,0],[0,0],[0,0],[0,0],[13,-4],[28,-11],[59,-22],[108,-42],[556,-190],[84,-32],[28,-11],[48,-19],[104,-48],[106,-49],[51,-26],[197,-98],[101,-49],[54,-27],[86,-42],[257,-122],[143,-70],[18,-9],[110,-54],[175,-90],[10,28],[9,26],[341,-145],[211,-87],[12,-4],[12,-5],[16,-8],[25,-15],[29,-19],[8,-7],[2,-1],[17,-15],[11,-7],[12,-7],[36,-16],[31,-19],[13,-6],[11,-4],[27,-8],[12,-4],[37,-16],[52,-25],[21,15],[36,-14],[50,-112],[-136,-320],[-8,-20],[-142,-329],[-60,-152],[-123,-278],[8,-96],[18,-153],[44,-375],[13,-111],[290,31],[-19,110],[-67,547],[-13,-29],[-106,43],[114,261],[73,165],[114,-40],[7,17],[19,41],[58,130],[37,84],[47,28],[185,-78],[187,394],[24,-6],[7,-11],[-15,-41],[80,-27],[10,27],[25,10],[94,-32],[4,-17],[-12,-33],[88,-39],[12,35],[15,8],[22,-10],[0,-14],[-158,-405],[43,-319],[94,-39],[3,17],[4,19],[9,43],[10,30],[18,50],[24,53],[23,49],[15,34],[16,44],[31,74],[8,17],[9,14],[12,15],[30,31],[12,15],[24,31],[12,18],[22,34],[6,9],[11,17],[1,0],[0,1],[1,1],[1,0],[2,1],[2,1],[7,1],[2,0],[2,1],[1,0],[1,1],[0,1],[1,1],[0,0],[1,1],[0,0],[0,0],[0,1],[0,0],[-1,0],[0,1],[0,0],[0,1],[-1,0],[-1,1],[-2,1],[-9,5],[-2,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,2],[1,1],[1,3],[1,2],[4,3],[2,2],[2,2],[4,1],[3,1],[14,-1],[7,-1],[10,-2],[22,-7],[24,-9],[41,-20],[63,-35],[572,-280],[53,-26],[28,-18],[39,-24],[61,-36],[39,-22],[39,-21],[24,-12],[277,-148],[169,-148],[10,-11],[85,-78],[122,-105],[21,-24],[-34,-29],[4,-14],[14,-28],[43,-69],[54,-63],[38,36],[153,-276],[94,-172],[92,-280],[-98,-32],[13,-35],[60,-166],[60,16],[8,2],[7,-21],[61,-181],[40,22],[18,10],[50,-93],[33,-61],[14,-25],[-72,-32],[197,-620],[297,-707],[46,-111],[42,-67],[514,-525],[219,-193],[284,-313],[9,15],[492,-345],[109,-85],[116,-63],[56,-16],[175,-54],[295,-104],[276,-101],[13,-4],[211,-73],[163,-61],[51,-22],[75,-12],[342,-74],[16,-1],[-3,-27],[4,-4],[46,-7],[240,-37],[148,-20],[17,-3],[9,-7],[2,-10],[139,-32],[150,-23],[65,18],[176,-41],[136,-27],[12,2],[17,15],[9,11],[131,-17],[81,-11],[26,-15],[50,-24],[82,-32],[40,-17],[9,5],[59,-15],[227,-60],[249,-71],[51,-6],[246,-35],[253,-121],[51,-24],[107,-49],[5,3],[14,13],[5,10],[-2,17],[9,9],[20,1],[51,-41],[45,-37],[30,-24],[83,-63],[-16,-26],[247,-279],[233,-299],[97,-152],[110,-164],[18,-25],[47,-78],[61,-120],[10,-25],[8,-4],[16,-2],[11,-7],[7,-10],[5,-21],[3,-56],[33,-543],[6,-96],[367,-981],[984,-2769],[494,157],[1,-30],[66,-175],[-1,-6],[-21,-5],[42,-76],[42,-74],[46,-96],[9,-41],[0,-34],[0,-12],[-11,-162],[-10,-49],[-16,-90],[-31,-135],[-37,-204],[-8,-27],[-43,-95],[-27,-60],[-30,-36],[-42,-26],[-37,-17],[-59,0],[-663,-220],[-140,-11],[-1236,-390],[-8,0],[-7,1],[-11,3],[-2,1],[-2,1],[-1,1],[-2,2],[-2,4],[-6,12],[-3,4],[-1,1],[-1,1],[-5,3],[-6,3],[-6,1],[-7,2],[-13,1],[-38,1],[-11,1],[-9,3],[-19,7],[-19,9],[-19,10],[-19,11],[-4,4],[-4,4],[-16,19],[-5,4],[-2,2],[-3,1],[-3,2],[-4,1],[-8,1],[-9,0],[-9,-1],[-9,-3],[-9,-3],[-8,-5],[-7,-5],[-48,-51],[-9,-9],[-57,-50],[-12,-12],[-10,-11],[-9,-11],[-7,-11],[-2,-2],[-1,-3],[-1,-5],[0,-7],[0,-20],[-1,-6],[-1,-3],[-1,-2],[-6,-11],[-8,-10],[-10,-9],[-10,-8],[-227,-139],[-23,-24],[-21,-26],[-6,-8],[-11,-18],[-10,-18],[-8,-19],[-6,-19],[-1,-7],[-1,-8],[1,-7],[1,-8],[5,-15],[3,-7],[4,-7],[111,-295],[3,-4],[3,-4],[1,-5],[1,-5],[1,-3],[-1,-21],[-1,-7],[-1,-4],[-2,-17],[112,-299],[3,-26],[-1,-27],[-3,-24],[-6,-27],[-8,-29],[-10,-32],[-14,-36],[-11,-27],[-12,-24],[-13,-22],[-14,-20],[-6,-7],[-7,-7],[-8,-7],[-9,-5],[-9,-5],[-10,-5],[-10,-3],[-10,-3],[-449,-130],[-739,-231],[-12,3],[-13,2],[-1,0],[-15,0],[-15,0],[-47,-5],[-28,-4],[-28,-6],[-26,-9],[-25,-11],[-45,-24],[-51,-29],[-35,-20],[-23,-14],[-15,-10],[-15,-14],[-16,-15],[-26,-26],[-5,-6],[-5,-7],[-7,-15],[-3,-11],[-3,-15],[0,-6],[-1,-9],[1,-14],[3,-13],[9,-32],[11,-30],[15,-35],[10,-21],[2,-3],[2,-2],[6,-5],[2,-2],[238,48],[101,-263],[21,-5],[9,-26],[37,-106],[149,-384],[-131,-220],[-64,-30],[-22,-12],[-33,-32],[-202,-69],[-298,-102],[-61,-20],[-17,-5],[-11,-4],[-9,-5],[-4,-3],[-3,-3],[-6,-6],[-5,-7],[-3,-7],[-1,-3],[-1,-3],[0,-3],[-1,-12],[1,-12],[381,-1087],[-838,-275],[63,-197],[856,278],[147,-408],[95,-262],[152,-421],[146,-436],[61,-149],[85,-39],[2,-1],[2,-3],[1,0],[2,-2],[2,-3],[2,-3],[3,-6],[2,-8],[1,-16],[0,-32],[0,-12],[3,-13],[1,-5],[2,-5],[11,-20],[13,-20],[14,-19],[16,-20],[17,-18],[44,-41],[18,-20],[9,-13],[1,-3],[6,-12],[6,-16],[3,-16],[1,-7],[86,28],[-7,17],[-3,6],[-3,8],[-2,13],[0,6],[1,6],[2,10],[5,10],[6,9],[8,9],[38,36],[14,14],[1,1],[5,8],[4,9],[-78,227],[-189,539],[-196,537],[-100,295],[-240,659],[407,155],[18,7],[15,7],[12,9],[5,5],[4,5],[9,13],[3,7],[2,7],[1,6],[1,6],[-1,6],[-1,2],[0,3],[-6,13],[-7,11],[-7,8],[-4,4],[-4,3],[-5,3],[-9,2],[-5,0],[-5,-2],[-462,-139],[-131,340],[-8,22],[-4,16],[-4,15],[-1,13],[0,22],[4,26],[5,22],[8,19],[3,5],[4,6],[10,12],[13,12],[24,18],[660,210],[60,23],[15,4],[12,4],[5,3],[5,3],[3,3],[4,4],[6,9],[11,23],[5,9],[18,19],[3,4],[3,4],[1,2],[1,3],[0,14],[-216,569],[-111,335],[-63,190],[124,226],[580,190],[8,-19],[365,119],[26,27],[11,11],[505,156],[-287,803],[-2,18],[0,18],[2,16],[4,15],[7,16],[8,16],[10,17],[12,16],[28,34],[14,15],[14,14],[21,19],[21,17],[21,16],[21,15],[21,14],[54,31],[32,22],[71,49],[32,21],[11,7],[13,6],[13,5],[13,4],[15,4],[14,2],[14,2],[15,0],[1328,433],[7,-13],[492,140],[92,27],[14,3],[13,3],[7,2],[10,3],[15,4],[8,1],[17,4],[16,4],[9,3],[17,5],[14,4],[13,3],[14,3],[10,1],[12,2],[10,1],[10,1],[10,2],[12,0],[13,0],[11,-2],[1,-1],[10,-4],[10,-4],[9,-5],[11,-7],[8,-5],[9,-6],[9,-7],[11,-7],[6,-5],[13,-10],[13,-10],[11,-8],[13,-9],[12,-9],[11,-9],[12,-9],[13,-9],[10,-7],[10,-8],[9,-7],[7,-6],[8,-5],[10,-8],[9,-8],[6,-5],[9,-8],[10,-8],[9,-8],[10,-8],[10,-9],[12,-11],[11,-11],[11,-11],[11,-11],[10,-12],[8,-9],[8,-8],[7,-10],[7,-10],[7,-10],[9,-10],[6,-5],[17,-14],[6,-5],[13,-11],[13,-11],[12,-10],[11,-9],[5,-4],[7,-6],[8,-7],[8,-6],[13,-11],[12,-11],[12,-8],[14,-11],[8,-7],[9,-7],[12,-11],[8,-9],[8,-9],[8,-10],[8,-10],[8,-10],[6,-10],[4,-8],[6,-11],[9,-13],[5,-7],[5,-8],[5,-8],[9,-15],[7,-10],[6,-8],[8,-11],[6,-9],[8,-10],[7,-8],[6,-10],[5,-9],[4,-10],[2,-10],[5,-12],[5,-10],[4,-7],[5,-10],[3,-5],[8,-7],[41,-101],[34,-104],[40,-170],[20,0],[11,-2],[3,-6],[5,-13],[18,-48],[12,-36],[-127,-72],[-32,-16],[-14,-3],[-19,-6],[-12,-3],[-12,-16],[-17,-15],[-24,-20],[-87,-34],[13,-58],[-448,-139],[-174,-241],[-148,-194],[-32,-12],[20,-53],[40,-95],[14,-34],[3,-9],[-1,-12],[-2,-12],[2,-10],[20,-29],[25,-44],[18,-11],[28,-31],[37,-56],[18,-49],[9,-54],[18,-75],[32,-122],[8,-12],[2,-1],[4,1],[11,0],[15,-14],[12,-19],[6,-41],[0,-40],[1,-47],[0,-14],[172,-8]],[[259459,76199],[-63,-45],[6,-45],[40,-91],[146,-86],[142,-80],[157,-53],[70,80],[42,2],[28,1],[69,-45],[39,-24],[63,7],[47,73],[87,-59],[96,-83],[38,-187],[-47,5],[-8,-24],[-9,-28],[29,-72],[93,-64],[58,8],[333,-181],[8,-34],[8,-46],[-17,-31],[19,-37],[-6,-41],[54,-52],[72,0],[59,-13],[87,-37],[13,33],[75,0],[74,-38],[56,-50],[13,-64],[11,-49],[74,-88],[42,-47],[28,0],[11,27],[7,35],[48,14],[37,-2],[28,-64],[2,-125],[-22,-70],[-40,-95],[-19,-73],[24,-68],[2,-62],[205,-58],[50,-1],[33,-4],[24,-8],[28,-42],[-19,-27],[-21,-31],[6,-45],[13,-41],[-42,-27],[-43,-11],[-14,9],[-23,14],[-7,50],[-39,10],[-66,-6],[-50,-35],[-20,-52],[31,-47],[-5,-64],[-11,-85],[-41,-25],[-66,43],[18,58],[18,58],[-24,67],[-48,64],[-83,60],[-74,38],[-70,18],[-52,-6],[47,-66],[-6,-52],[-7,-47],[-50,-29],[-59,6],[-35,39],[-39,54],[26,62],[-8,38],[-70,-19],[-24,-50],[-66,-66],[52,-49],[22,-63],[20,-62],[50,-48],[43,-51],[-39,-44],[-64,-70],[-85,-43],[13,-36],[35,-20],[53,26],[21,56],[90,-4],[76,-11],[101,-23],[65,0],[40,35],[45,-31],[46,-25],[48,-16],[57,-7],[39,27],[35,35],[44,36],[30,22],[24,2],[11,-33],[26,-52],[59,0],[20,-5],[54,-14],[-2,-41],[-22,-64],[-4,-48],[4,-47],[44,-7],[6,-72],[20,-93],[10,-81],[-2,-52],[-13,-54],[-2,-58],[10,-58],[16,-47],[-3,-65],[-46,-66],[-57,-25],[-72,-31],[-65,-39],[-83,0],[-108,3],[-78,-11],[-89,-55],[-70,14],[-31,65],[-54,-29],[-59,-35],[-66,-65],[-76,-20],[-70,-4],[-72,14],[-100,13],[-72,58],[-81,19],[-90,-23],[-28,-58],[-15,-53],[-18,-67],[-44,-49],[22,-46],[65,6],[92,50],[77,31],[52,22],[57,-27],[37,-35],[76,-2],[79,12],[33,44],[35,60],[72,37],[50,-38],[68,-12],[65,2],[87,-7],[40,-14],[63,-31],[-3,-58],[-39,-64],[-70,-69],[-22,-76],[-22,-62],[-73,-31],[-58,1],[-96,2],[-57,1],[-34,29],[-66,0],[-107,-25],[-133,3],[-63,-39],[-72,12],[-90,31],[-50,44],[-52,19],[-64,-10],[-4,29],[-61,12],[-90,-22],[-69,-25],[-83,6],[-53,0],[-43,-10],[-42,-30],[-69,1],[-36,35],[-41,17],[-33,0],[-48,19],[-39,-2],[-35,43],[-52,40],[-35,19],[-42,10],[-39,-14],[-30,-9],[-24,36],[-48,22],[-55,17],[-33,31],[-21,29],[-70,-6],[-20,-29],[-72,-2],[-33,31],[-2,25],[0,42],[5,31],[17,37],[-21,10],[-40,32],[-2,33],[-22,31],[-37,41],[-19,17],[-68,60],[-67,52],[-88,29],[-187,141],[7,58],[-35,75],[-65,50],[-24,6],[-107,29],[-77,65],[-39,53],[-8,104],[-22,110],[-2,126],[9,45],[15,81],[-492,558],[-22,-68],[-81,-56],[-63,-62],[-68,-91],[-76,-18],[-20,56],[46,83],[88,59],[109,85],[83,70],[22,83],[-35,83],[-78,60],[-101,61],[-69,74],[-107,61],[-107,6],[-98,27],[-127,44],[-131,-46],[-74,-93],[-7,-64],[4,-68],[-6,-89],[-27,-77],[-81,-91],[-28,-54],[-39,-68],[-81,-2],[-66,58],[31,56],[44,62],[20,62],[90,3],[-168,41],[5,42],[-159,65],[-96,58],[-21,38],[-22,63],[-15,68],[-44,-15],[-37,36],[-41,47],[-20,52],[-26,54],[-63,-6],[-59,0],[-33,37],[-60,-8],[-15,23],[-47,52],[-23,14],[-20,13],[-46,25],[-21,25],[-35,18],[-31,7],[-40,16],[-28,11],[-25,2],[-36,2],[-40,13],[-35,7],[-25,3],[-59,4],[-35,-1],[-61,-2],[-58,-2],[-45,-3],[-48,-24],[-36,-20],[23,49],[25,43],[13,49],[-2,55],[14,49],[4,45],[14,51],[45,11],[20,49],[-6,49],[0,47],[18,70],[38,66],[52,41],[47,6],[9,45],[25,44],[41,26],[69,15],[54,-5],[81,-17],[47,53],[5,75],[70,58],[47,31],[54,5],[59,-15],[90,-66],[66,29],[14,33],[14,33],[36,66],[90,55],[55,-3],[48,-3],[94,19],[70,72],[135,100],[0,81],[45,75],[58,4],[62,4],[48,81],[33,56],[81,74],[115,72],[101,54],[71,54],[156,71],[112,40],[111,34],[121,36],[74,45],[131,36],[94,34],[67,0],[131,-7],[144,-36],[83,-43],[94,-71],[92,-38],[96,-41],[99,-28],[86,-30],[96,-56],[58,-76],[93,-111],[69,-91],[38,-69],[41,-28],[61,-77],[84,-64],[32,-29],[26,-23],[15,-53],[-51,-37]],[[276003,80147],[-19,-30],[-42,23],[-46,-2],[0,-36],[23,-28],[36,-40],[37,-29],[9,-36],[-49,-9],[-29,16],[-19,14],[-36,-2],[-21,-32],[-11,-36],[-2,-38],[2,-24],[9,-22],[-26,2],[-17,18],[-4,-26],[0,-40],[11,-36],[18,-40],[0,-44],[0,-66],[-46,-32],[-17,-46],[6,-56],[10,-48],[15,-56],[10,-48],[-25,-32],[-36,-20],[-17,-32],[4,-34],[-48,-46],[-61,-24],[-62,-38],[-61,-17],[-46,-28],[-26,-42],[-38,-22],[-50,2],[-46,18],[-39,1],[-25,1],[-59,-28],[-44,-36],[-19,-44],[-45,-58],[-21,-31],[-6,-46],[16,-42],[-42,-58],[-94,104],[-38,38],[-93,54],[-73,48],[-101,74],[-2,24],[8,24],[-8,26],[-13,30],[-15,32],[-12,28],[-67,101],[-84,100],[-49,78],[-73,92],[-152,160],[-49,38],[-11,71],[-79,145],[-59,116],[-107,155],[-69,79],[-11,95],[-86,47],[-28,69],[-83,115],[-59,76],[-59,96],[-65,76],[-52,102],[-136,82],[-58,60],[-63,142],[-41,141],[-41,135],[-35,99],[-73,67],[23,92],[-5,108],[-17,122],[-3,59],[0,73],[14,86],[18,59],[0,66],[31,75],[0,76],[-6,86],[-11,122],[-3,115],[11,99],[38,105],[18,155],[24,62],[60,36],[97,27],[66,3],[7,49],[14,69],[75,106],[551,-71],[117,-7],[79,-66],[111,-161],[146,-132],[170,-80],[204,-59],[222,-73],[174,-129],[201,-99],[151,-73],[81,-56],[128,-89],[118,-129],[97,-53],[83,-112],[-28,-96],[-4,-82],[7,-165],[104,-122],[28,-120],[-36,-84],[-47,-70],[-23,-66],[0,-74],[6,-38],[46,-62],[23,-50],[-19,-44],[-32,-48],[-27,-86],[2,-46],[-4,-58],[10,-72],[29,-62],[25,-76],[7,-44],[23,-72],[18,-42],[7,-86],[-19,-50],[-36,-36],[-32,-20],[-6,-34],[-9,-58],[27,-32]],[[281982,85542],[47,-4],[50,2],[43,0],[38,-24],[9,-11],[18,-34],[25,23],[31,2],[27,-8],[23,-19],[27,-43],[16,-26],[18,34],[54,-17],[56,-19],[32,-15],[67,-13],[64,-3],[36,-13],[36,11],[67,0],[43,0],[45,0],[50,2],[63,-3],[59,-2],[70,-11],[27,-23],[49,-5],[43,-4],[-9,-26],[-18,-30],[7,-32],[25,-2],[27,43],[58,18],[73,-23],[31,-28],[38,-36],[16,-35],[-10,-13],[-17,-17],[-15,-16],[-13,-21],[-4,-21],[-2,-29],[-6,-29],[-11,-35],[-17,-30],[-17,-29],[-24,-30],[-53,-33],[-1,-19],[-7,-20],[-25,-22],[-32,-30],[-26,-20],[-19,-25],[8,-30],[0,-28],[3,-41],[0,-24],[0,-27],[6,-24],[20,-35],[10,-22],[10,-28],[14,-25],[6,-32],[12,-35],[13,-12],[5,-16],[-10,-11],[-8,-11],[-19,8],[-30,14],[-27,18],[-34,26],[-23,26],[-28,15],[-33,28],[-22,16],[-39,14],[-27,-3],[-34,-10],[-31,-12],[-25,-15],[-34,-4],[-28,0],[-24,-17],[-38,-16],[-27,-27],[-9,-34],[-18,-27],[-26,-32],[-26,-17],[-25,-16],[-47,-6],[-43,-7],[-48,3],[-16,-23],[-7,-13],[-27,-26],[-17,-2],[-28,7],[-38,2],[-18,-2],[-25,-14],[-20,-3],[-31,11],[-39,17],[-25,22],[-11,20],[-15,23],[-19,26],[-6,11],[-4,-23],[-6,-26],[-18,-22],[-9,-24],[2,-18],[24,-10],[17,-9],[20,15],[23,-4],[26,-15],[23,-18],[18,-5],[22,-6],[19,-2],[17,6],[20,-2],[24,-6],[22,-10],[30,8],[33,-5],[24,5],[13,18],[14,22],[7,21],[12,11],[46,-7],[32,6],[28,9],[38,6],[23,11],[28,18],[18,14],[0,20],[9,23],[13,19],[15,24],[22,21],[28,22],[30,7],[42,5],[29,7],[15,11],[24,3],[21,0],[30,-9],[34,-14],[34,-20],[30,-20],[28,-12],[40,-27],[33,-21],[37,-20],[40,-14],[42,1],[28,-1],[31,-9],[34,-26],[26,-19],[20,-23],[24,-26],[7,-16],[18,-7],[9,-20],[9,-22],[0,-30],[-2,-23],[-11,-30],[-7,-31],[-3,-25],[-12,-23],[-4,-23],[-2,-24],[-16,-16],[-21,-26],[-29,-20],[-33,-8],[-58,2],[-26,3],[-31,2],[-17,14],[-3,20],[-18,4],[-7,-16],[-17,-14],[-22,-8],[-23,-6],[-23,-1],[-26,3],[-25,-3],[-16,-6],[-7,-11],[-17,-12],[-27,5],[-24,11],[-8,9],[-6,14],[15,18],[0,20],[-8,15],[-8,8],[-7,4],[0,22],[4,18],[8,12],[-15,6],[-12,-3],[-9,-14],[-13,5],[-7,17],[-20,-3],[-15,-14],[-1,-21],[10,-12],[15,-18],[15,-10],[-1,-23],[-20,-16],[-28,-6],[-24,-1],[-43,-9],[-33,-3],[-29,-8],[-26,-2],[-14,-10],[-8,18],[-8,22],[-12,11],[-10,-18],[-20,-14],[-33,-1],[-30,-20],[-12,-28],[4,-12],[-16,-1],[-21,-5],[-33,-20],[-32,-11],[-24,-2],[-8,-12],[-17,-5],[-16,13],[-19,2],[-12,-16],[-18,-17],[-23,-11],[-25,-6],[-34,0],[-32,-1],[-23,-10],[-28,-13],[-29,-2],[-23,1],[-22,13],[-3,21],[-18,38],[-13,23],[-20,17],[6,30],[-12,18],[-32,14],[-41,11],[-36,-1],[-25,-13],[-15,-15],[-11,-30],[-27,3],[-18,-11],[36,-12],[21,4],[22,15],[17,18],[27,11],[32,-6],[24,-15],[11,-21],[5,-30],[13,-27],[9,-39],[-8,-18],[18,-23],[45,-12],[50,4],[38,1],[33,2],[52,6],[62,0],[29,14],[26,10],[29,10],[39,16],[34,9],[23,7],[34,6],[32,4],[26,14],[28,8],[45,8],[37,8],[29,3],[32,3],[27,6],[22,5],[30,-4],[21,-2],[21,-13],[17,-6],[13,-14],[14,-8],[21,-5],[31,0],[32,0],[41,9],[39,-1],[39,2],[21,10],[20,12],[31,7],[25,5],[24,-6],[23,-14],[16,-8],[20,0],[30,0],[43,5],[30,10],[22,19],[10,23],[23,9],[9,18],[17,39],[7,21],[16,30],[16,54],[8,32],[16,35],[17,49],[-1,48],[-10,37],[-3,39],[-29,43],[-25,25],[-36,18],[-29,19],[-21,20],[-28,12],[-23,21],[-28,22],[-26,7],[-13,16],[-23,19],[-21,28],[2,24],[35,-4],[36,-16],[9,15],[-25,27],[-42,22],[-30,28],[-8,25],[-8,35],[-9,23],[-1,32],[1,23],[22,21],[18,21],[22,18],[20,17],[21,26],[20,16],[21,16],[21,20],[28,20],[5,23],[10,19],[15,20],[7,23],[27,29],[15,6],[22,6],[19,15],[30,9],[39,-5],[29,-23],[29,-20],[24,-25],[19,-29],[24,-24],[22,-23],[23,-16],[15,-11],[19,-42],[7,-13],[15,11],[22,1],[36,-17],[29,-13],[28,-10],[18,-19],[26,-17],[19,-12],[28,2],[30,-4],[36,-8],[11,-22],[28,-9],[20,4],[28,12],[24,6],[20,-3],[25,-20],[14,-12],[20,-11],[19,-19],[56,-39],[12,-9],[9,-16],[0,-16],[0,-11],[1,-20],[3,-16],[8,-22],[0,-18],[-12,-18],[-7,-36],[-1,-13],[-18,-9],[-12,-39],[-7,-28],[-5,-18],[-6,-22],[-4,-45],[3,-23],[-8,-32],[-2,-20],[-16,-41],[-11,-26],[-14,-7],[-26,1],[-20,12],[-19,21],[-12,16],[-18,-13],[-19,-49],[-1,-18],[21,-23],[15,-17],[12,-15],[14,-9],[17,-16],[1,-16],[8,-15],[24,-23],[18,-18],[20,-16],[22,-12],[23,-14],[24,-1],[3,-10],[-4,-18],[-11,-21],[-6,-18],[8,-8],[19,2],[19,0],[15,16],[10,13],[11,1],[20,-2],[12,-9],[14,-12],[8,-11],[7,-8],[16,-19],[-2,-19],[-10,-9],[-6,-12],[-2,-12],[-5,-9],[-8,-2],[-6,11],[-17,12],[-18,5],[-11,4],[-16,-6],[-11,-7],[-9,-1],[-8,10],[6,14],[0,13],[-17,7],[-13,1],[-14,1],[-14,0],[-11,-16],[-19,-7],[-22,-20],[-3,-17],[-5,-20],[-12,-15],[-9,-16],[-14,-10],[-23,-7],[-14,2],[-6,0],[-15,-10],[1,-8],[2,-16],[4,-8],[-24,-16],[17,0],[15,0],[19,-2],[15,-7],[6,-8],[-2,-7],[-7,-11],[-15,-9],[-23,0],[-11,0],[-26,-1],[-18,-3],[-13,-12],[-9,-12],[-12,-7],[-7,11],[1,22],[-3,7],[-2,6],[11,14],[14,14],[-4,14],[-19,5],[-13,-10],[-16,-24],[-19,-7],[-11,-14],[-1,-16],[-4,-10],[-17,-9],[-10,-10],[9,-12],[-2,-13],[-1,-13],[-1,-21],[-27,9],[-24,2],[-24,-1],[-4,-35],[-1,-13],[-1,-13],[-10,-30],[-31,-6],[-7,7],[-10,10],[-12,14],[-11,10],[-25,-1],[-14,-17],[2,-21],[6,-24],[2,-25],[-14,-26],[-33,-14],[-16,9],[-26,7],[-40,5],[-33,3],[-16,13],[2,22],[-22,8],[-21,0],[-51,-25],[-33,20],[-29,24],[-47,10],[-45,1],[-47,14],[-67,-39],[-26,-2],[-16,-12],[-28,4],[-36,2],[-33,12],[-23,-3],[-27,-15],[-33,-1],[-30,0],[-30,17],[-27,19],[-38,10],[-45,3],[-47,-2],[-36,-11],[-19,1],[-3,-11],[6,-16],[4,-9],[5,-14],[-6,-13],[-18,-7],[-22,1],[-13,8],[-20,9],[-8,30],[-3,9],[-31,31],[-24,22],[-27,21],[-41,-1],[-14,-10],[-18,-6],[-25,21],[-29,21],[-47,11],[-28,12],[-58,-1],[-36,12],[-47,0],[-21,-12],[-40,-7],[-32,0],[-27,-10],[-31,-5],[-22,-10],[-20,-6],[-11,-11],[-15,-20],[-38,14],[-38,-26],[-30,46],[-14,27],[-35,22],[-30,23],[-65,0],[-38,-10],[-16,-26],[-19,-31],[-2,-22],[-12,-24],[-29,2],[-15,26],[-3,25],[-2,34],[-18,6],[-12,-2],[-1,-17],[-5,-45],[0,-31],[-20,-11],[-43,1],[-35,12],[-34,9],[-3,26],[9,29],[2,31],[-31,13],[-38,7],[-15,-34],[-1,-31],[-29,-3],[-36,-17],[-18,26],[-17,-26],[-2,-22],[-20,-23],[-25,13],[-36,3],[-40,-10],[-54,-9],[-38,-10],[11,-26],[-7,-29],[-31,-3],[-42,-7],[-3,40],[-5,29],[-4,25],[-27,30],[-43,-29],[-26,-19],[-25,-24],[-45,-5],[-47,19],[-45,17],[-29,14],[-31,0],[0,26],[-12,36],[2,42],[-15,15],[-16,15],[-3,-16],[-6,-36],[-20,-56],[-40,-36],[-36,20],[-29,28],[-7,33],[-23,13],[-49,23],[-18,29],[-14,41],[-9,33],[-24,-11],[-11,-34],[-27,-3],[-50,10],[-60,12],[-56,4],[-45,3],[-13,26],[-1,33],[-20,5],[-13,-40],[-15,-51],[-43,-36],[-25,-24],[-2,-19],[-2,-32],[-54,-22],[-76,2],[-45,17],[-40,2],[-26,21],[-26,24],[10,47],[22,28],[18,42],[11,47],[12,39],[38,0],[11,25],[25,22],[27,-15],[16,23],[27,15],[20,-15],[-2,-36],[23,-2],[11,40],[-11,28],[-7,41],[-22,32],[-41,43],[-52,32],[-45,17],[-18,35],[-13,30],[-11,36],[-25,53],[-7,35],[36,34],[14,38],[14,22],[20,40],[-13,54],[-43,43],[-88,51],[-38,22],[4,43],[59,23],[36,30],[18,34],[16,13],[77,47],[83,8],[50,19],[20,30],[14,77],[-2,58],[0,45],[18,39],[34,21],[12,34],[24,43],[32,36],[45,19],[156,21],[59,20],[47,19],[52,17],[52,-5],[74,-6],[59,-7],[59,-2],[101,-22],[56,-19],[61,8],[57,22],[20,51],[43,47],[46,75],[52,55],[52,37],[67,34],[64,55],[65,45],[70,45],[52,36],[59,2],[54,-36],[-7,-43],[32,-26],[40,-23],[0,-56],[-48,-45],[-76,-11],[-77,-19],[-38,-23],[-1,-47],[-18,-45],[18,-54],[52,-23],[54,4],[68,-39],[15,-40],[12,-50],[-32,-6],[-34,34],[-18,35],[-47,19],[-56,6],[-54,28],[-28,-15],[3,-38],[27,-32],[45,-17],[9,-37],[15,19],[-6,45],[36,11],[25,-19],[11,-48],[27,-45],[45,-12],[36,44],[20,30],[70,9],[14,-35],[27,-12],[54,-3],[34,20],[-11,27],[-45,-10],[-21,30],[-29,21],[-45,20],[-25,25],[-45,45],[-31,28],[-36,20],[-48,28],[-18,21],[39,21],[79,4],[56,20],[36,42],[21,34],[25,48],[-9,34],[-16,40],[-4,41],[-14,41],[-10,25],[71,-15],[59,-4]],[[265343,86202],[240,-154],[308,74],[77,-202],[-135,-152],[253,-154],[51,-533],[-369,-187],[-253,154],[-1060,-451],[-28,322],[316,1306],[600,-23]],[[284249,87004],[113,-77],[103,-96],[58,-120],[79,-158],[49,-122],[-54,-75],[-97,1],[-86,-43],[-54,-49],[-29,-83],[65,-37],[63,39],[27,-32],[9,-60],[-1,-118],[-25,-98],[-110,-79],[-43,-83],[34,-45],[69,4],[48,36],[52,35],[67,63],[34,56],[3,81],[-18,113],[-20,47],[23,69],[42,-3],[64,75],[20,75],[34,47],[27,-60],[38,-101],[13,-72],[0,-67],[20,-57],[38,-54],[23,-57],[15,-80],[13,-53],[-2,-55],[-2,-37],[4,-40],[5,-47],[20,-45],[0,-52],[8,-38],[-18,-45],[25,-23],[27,-35],[4,-42],[-20,-32],[9,-35],[36,-32],[18,-36],[18,-64],[11,-68],[8,-152],[-7,-145],[4,-165],[-11,-141],[-95,-130],[-79,-119],[-93,-60],[-126,24],[-63,30],[5,79],[43,68],[90,96],[66,83],[61,130],[-16,97],[28,151],[-16,113],[-56,77],[-106,13],[-81,-70],[-79,-89],[-79,-43],[-90,-18],[-70,22],[-52,6],[-42,0],[-50,-1],[-61,21],[-57,21],[-47,31],[-46,48],[-34,33],[-54,35],[-50,41],[-36,46],[-26,33],[-29,23],[-20,21],[-32,3],[-28,-13],[-27,5],[-27,25],[-32,28],[-21,27],[-22,27],[-25,24],[-37,16],[-49,0],[-36,0],[-36,0],[-34,-16],[-27,13],[-31,2],[-23,13],[-35,10],[-34,-15],[-25,16],[-13,16],[-25,12],[-35,1],[-74,0],[-51,-1],[-50,-2],[-50,-3],[-29,-33],[-38,-13],[-34,28],[-117,27],[-132,14],[-59,24],[-63,20],[-73,47],[-74,22],[-44,18],[-36,12],[-71,11],[-36,-8],[-25,-7],[-54,22],[-22,6],[-40,18],[-29,18],[-24,4],[-36,-10],[-30,2],[-19,1],[-56,5],[-57,0],[-49,-5],[-46,-11],[-44,-18],[-33,-29],[-41,-34],[-21,-34],[-41,-36],[-77,-44],[-55,-36],[-49,-32],[-6,-34],[-10,-25],[-37,-23],[-24,-12],[-10,2],[8,17],[14,29],[19,31],[14,15],[-7,25],[-38,-3],[-27,-15],[-27,-21],[-19,-24],[-6,-32],[8,-33],[1,-25],[-23,-25],[-44,-20],[-52,-1],[-59,-4],[-39,8],[-36,13],[-21,-2],[-30,0],[-52,8],[-31,7],[-30,5],[-55,-11],[-69,-7],[-42,-11],[-37,-37],[-66,-12],[-87,0],[-64,0],[-59,-7],[-47,-25],[-54,-82],[-20,-71],[-17,-31],[-46,-22],[-32,-17],[-13,-28],[-39,-34],[-47,-38],[-31,-19],[-36,-17],[6,34],[-27,13],[-32,0],[-29,-2],[9,34],[32,53],[52,56],[13,72],[-6,62],[-9,45],[38,58],[64,79],[33,70],[25,51],[3,39],[58,29],[45,39],[43,44],[32,69],[41,70],[36,77],[68,81],[119,102],[68,43],[29,45],[57,36],[65,40],[259,55],[185,60],[83,106],[126,55],[50,45],[-52,52],[-85,47],[83,68],[109,79],[198,98],[259,18],[234,66],[234,12],[237,40],[151,49],[137,-17],[275,35],[218,43],[192,10],[243,2],[245,3],[261,-39]],[[260945,87178],[561,-661],[-89,204],[690,819],[617,-179],[454,-489],[257,-185],[213,-1371],[-830,-631],[-924,-473],[-1936,229]],[[266029,86601],[-332,-186],[-682,156],[-210,1270],[723,-347],[501,-893]],[[302809,91086],[27,-3],[31,5],[23,-9],[23,-8],[20,5],[28,-13],[23,-17],[27,1],[34,-7],[28,-20],[17,-24],[21,-26],[5,-26],[13,-19],[29,-15],[10,-16],[23,-13],[14,-20],[28,-13],[19,-14],[32,-4],[19,4],[30,-6],[16,-20],[28,-8],[34,-3],[29,-5],[38,-11],[38,-12],[6,-12],[5,-9],[8,7],[10,8],[25,0],[27,-9],[6,-12],[7,-11],[17,-3],[3,9],[3,8],[13,13],[24,-5],[9,-10],[19,-15],[29,-5],[6,-10],[22,-13],[9,-17],[16,-35],[6,-13],[19,-34],[14,-28],[12,-27],[10,-26],[3,-11],[2,-12],[1,-12],[0,-13],[-2,-14],[-2,-15],[-4,-15],[-4,-15],[-2,-4],[-2,-4],[-3,-3],[-4,-4],[-8,-5],[-20,-12],[-9,-7],[-3,-3],[-2,-3],[-2,-4],[-1,-3],[-7,-41],[-6,-42],[-3,-45],[-1,-12],[-1,-36],[-2,-77],[1,-23],[2,-21],[4,-23],[11,-50],[3,-21],[7,-53],[3,-34],[0,-38],[-2,-52],[-4,-42],[-1,-15],[1,-16],[3,-14],[1,-3],[1,-3],[2,-5],[4,-5],[3,-5],[31,-28],[31,-31],[3,-5],[3,-4],[2,-5],[2,-5],[0,-4],[1,-4],[-1,-4],[-1,-5],[-3,-8],[-2,-4],[-3,-4],[-8,-7],[-21,-18],[-8,-8],[-21,-23],[-3,-4],[-3,-4],[-2,-4],[-1,-5],[-2,-10],[1,-11],[6,-41],[1,-28],[1,-12],[2,-5],[2,-5],[3,-4],[2,-2],[1,-2],[9,-6],[10,-7],[35,-19],[63,-36],[46,-24],[45,-23],[45,-20],[44,-17],[26,-9],[29,-8],[31,-6],[63,-12],[102,-21],[30,-5],[28,-2],[60,-3],[97,-2],[74,-1],[32,-1],[5,-1],[4,-1],[10,-3],[10,-4],[30,-16],[10,-4],[10,-2],[4,-1],[5,1],[22,2],[5,0],[5,0],[32,-3],[32,-5],[31,-6],[31,-8],[23,-6],[9,-3],[14,-5],[6,-3],[19,-7],[28,-13],[54,-25],[49,-25],[31,-18],[86,-50],[28,-15],[28,-14],[30,-14],[31,-13],[32,-12],[35,-10],[40,-10],[57,-11],[3,-1],[357,377],[439,-376],[482,-416],[-329,-490],[-64,10],[-99,-143],[-22,-32],[-66,-101],[-377,-531],[143,-92],[4,6],[47,72],[30,63],[10,23],[88,105],[96,136],[161,232],[111,161],[61,89],[154,227],[208,310],[306,-49],[-152,-509],[9,-3],[10,-2],[14,-1],[15,2],[14,3],[13,6],[12,8],[10,10],[8,11],[6,13],[30,62],[5,10],[6,10],[8,8],[10,6],[11,5],[50,11],[51,6],[52,1],[52,-3],[5,-2],[21,-5],[16,-4],[23,-8],[13,-3],[19,-3],[22,0],[19,3],[24,-1],[12,-4],[20,-10],[12,-4],[21,-5],[21,-3],[18,-2],[21,-2],[23,-2],[18,-2],[23,-2],[23,-3],[18,-1],[21,-2],[18,-1],[21,1],[21,4],[17,3],[14,3],[2,0],[3,1],[21,6],[19,5],[20,2],[22,0],[23,-3],[21,-3],[21,-2],[15,0],[17,-1],[17,1],[19,1],[21,2],[15,-2],[23,-3],[19,-4],[18,-2],[22,-2],[18,-2],[23,-1],[17,-1],[24,-2],[21,-4],[18,-3],[19,-2],[20,0],[12,1],[23,4],[20,3],[14,-1],[6,-3],[3,-4],[6,0],[13,13],[13,3],[11,-6],[2,-1],[0,-1],[13,-14],[20,-3],[19,2],[19,3],[20,-7],[19,-9],[20,-2],[22,0],[22,1],[21,3],[17,0],[12,-1],[25,0],[13,-1],[20,-2],[16,-4],[20,-4],[19,-2],[16,-3],[23,-5],[19,-5],[17,-5],[15,-12],[11,-19],[6,-12],[12,-8],[16,15],[17,9],[15,5],[25,2],[17,-7],[17,6],[16,9],[14,1],[22,3],[17,3],[15,3],[20,2],[11,1],[5,1],[24,5],[18,5],[20,9],[12,3],[15,-2],[9,-10],[13,-14],[10,-6],[6,1],[4,5],[1,14],[1,15],[7,22],[3,6],[21,11],[20,10],[16,2],[19,-4],[14,-8],[15,-12],[12,-13],[11,-14],[12,-14],[12,-19],[9,-17],[12,-17],[7,-16],[6,-19],[9,-18],[12,-6],[14,0],[5,3],[2,14],[-2,4],[-2,3],[-8,9],[-5,6],[-116,183],[-39,7],[-2,0],[0,5],[1,3],[108,-15],[1,-7],[-1,-3],[-1,0],[-9,1],[-26,5],[29,-45],[91,-141],[38,2],[32,-5],[32,1],[32,5],[30,11],[16,10],[18,7],[18,3],[20,1],[19,-2],[18,-5],[17,-9],[15,-11],[12,-2],[12,0],[12,1],[11,3],[11,5],[10,6],[10,8],[32,27],[29,31],[25,33],[21,36],[16,38],[8,22],[1,5],[789,88],[2088,864],[599,119],[560,167],[138,231],[235,-241],[247,139],[182,-348],[41,-118],[677,322],[87,-192],[157,-416],[496,-837],[432,-945],[303,-550],[168,-357],[-133,-138],[-45,-50],[155,-163],[1197,-1343],[571,-709],[672,-431],[497,-708],[6,-246],[105,-182],[-23,-745],[-63,-2427],[-3,-87],[2,-87],[1,-27],[2,-39],[4,-94],[-1,-323],[-184,-216],[16,-30],[31,-14],[2,4],[9,-4],[35,77],[9,-3],[-12,-27],[-10,-21],[-12,-26],[-10,-24],[-4,-8],[-14,-30],[-16,-35],[-6,-15],[-12,-27],[-7,-15],[-3,-6],[-15,-34],[-4,-9],[-16,-33],[-2,-6],[-12,5],[102,223],[-9,3],[3,4],[-26,9],[-1,-19],[-3,-18],[-79,-172],[-2,-3],[-2,-4],[-3,-2],[-3,-3],[-4,-2],[-3,-1],[-4,0],[-4,0],[-4,1],[-4,1],[-4,2],[-3,3],[-2,3],[-2,3],[-1,4],[-31,38],[-35,35],[-39,30],[-43,27],[-45,21],[-47,17],[-49,12],[-50,7],[-51,1],[-50,-4],[-53,-19],[-51,-23],[-48,-28],[-45,-33],[-41,-36],[-37,-41],[-33,-43],[-28,-47],[-12,-29],[-8,-30],[-3,-31],[3,-32],[8,-30],[13,-29],[13,-30],[18,-28],[21,-25],[26,-22],[28,-19],[31,-14],[33,-10],[2,-4],[3,-3],[1,-4],[1,-4],[0,-4],[0,-4],[-66,-43],[-82,-71],[-20,-35],[-17,-21],[-13,-4],[-22,0],[-60,5],[-37,-18],[-51,-3],[0,42],[28,29],[-1,26],[10,8],[30,70],[1,55],[-48,227],[-14,19],[-17,16],[-19,13],[-22,11],[-23,6],[-24,3],[-5,-2],[-4,0],[-5,0],[-5,1],[-4,1],[-4,2],[-4,3],[-3,3],[-3,4],[-4,13],[-2,14],[1,14],[3,13],[5,13],[-1,6],[-3,5],[-4,5],[-4,5],[-5,3],[-6,3],[-26,-1],[-25,-6],[-23,-9],[-22,-13],[-3,-3],[-2,-3],[-4,-3],[-3,-2],[-4,-1],[-21,4],[-20,2],[-21,-2],[-20,-5],[-19,-8],[-3,-1],[-3,-1],[-2,-2],[-2,-2],[-2,-2],[-1,-3],[-1,-3],[-1,-2],[1,-3],[0,-3],[1,-2],[2,-3],[2,-2],[0,2],[2,2],[1,1],[2,2],[2,1],[2,0],[2,1],[2,0],[3,-1],[2,0],[2,-1],[1,0],[2,1],[1,0],[2,0],[2,-1],[1,0],[2,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[-6,-13],[-9,-13],[-10,-10],[-12,-10],[-23,-7],[-25,-4],[-25,-1],[-25,3],[-13,2],[-14,0],[-14,-2],[-13,-3],[0,-3],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-1],[-3,0],[-3,0],[-2,0],[-3,1],[-2,1],[-2,1],[-2,2],[-4,4],[-5,4],[-6,3],[-6,2],[-6,1],[-6,-1],[-5,4],[-5,4],[-3,5],[-3,6],[-2,5],[-1,6],[0,6],[1,6],[-12,17],[-15,15],[0,1],[0,2],[0,2],[-1,1],[-1,1],[-1,2],[-2,0],[-1,1],[-2,1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-12,-9],[-14,-7],[-15,-6],[-15,-3],[-16,0],[-2,0],[-1,1],[-2,0],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-7,-18],[-11,-16],[-12,-14],[-15,-12],[-17,-10],[-19,-7],[-19,-4],[-19,-2],[-12,-11],[-9,-12],[-6,-14],[-5,-14],[-1,-15],[1,-15],[3,-14],[5,-12],[6,-12],[9,-10],[10,-10],[12,-7],[13,-6],[14,-4],[6,3],[6,1],[6,1],[6,-1],[6,-1],[5,-2],[6,-3],[4,-4],[4,-4],[24,-13],[25,-10],[26,-6],[222,9],[131,5],[1,4],[1,3],[3,3],[2,3],[4,2],[3,2],[4,1],[24,-11],[26,-8],[27,-3],[27,1],[26,6],[26,9],[28,6],[28,3],[28,-1],[3,-1],[3,-1],[3,-2],[2,-3],[2,-3],[1,-3],[1,-3],[0,-3],[0,-3],[-1,-3],[-2,-3],[-2,-3],[-3,-2],[-19,-31],[-16,-32],[-12,-34],[-8,-35],[-5,-35],[-2,-32],[3,-31],[8,-31],[13,-29],[18,-26],[10,3],[12,0],[6,-8],[5,-31],[9,-4],[12,1],[10,0],[18,17],[70,-20],[7,-22],[42,-2],[22,10],[161,11],[8,13],[63,151],[145,78],[29,123],[-48,176],[90,89],[-11,76],[-4,-1],[-5,34],[-51,-31],[-5,-3],[-69,-42],[-5,-4],[-28,-24],[-6,-5],[-31,-27],[-14,-18],[-8,-10],[-2,-3],[-21,-25],[55,-93],[2,-3],[36,-61],[15,4],[33,9],[5,-13],[-30,-10],[-32,-9],[-4,7],[-13,24],[-3,4],[-16,28],[-3,6],[-14,25],[-3,4],[-16,29],[-3,5],[-9,17],[-8,14],[-8,14],[70,85],[61,49],[3,3],[4,3],[32,22],[31,17],[7,4],[17,10],[18,10],[5,3],[8,2],[25,2],[10,1],[5,0],[15,0],[6,0],[19,-4],[78,-30],[15,-6],[5,-2],[40,-19],[3,-2],[36,-17],[5,-3],[36,-19],[54,-30],[-12,-9],[-16,8],[-45,25],[-6,3],[-34,17],[-5,3],[-30,16],[-5,2],[-30,16],[-8,3],[-32,14],[-5,2],[-29,12],[-34,7],[-31,-1],[2,-39],[-7,1],[10,-63],[66,12],[140,-84],[-10,-15],[109,-16],[33,24],[24,-9],[292,258],[-17,-215],[-1,-706],[224,-917],[12,-43],[26,-94],[-44,-8],[-68,-5],[-56,-9],[-20,-7],[-46,-18],[-21,-9],[-17,-10],[-12,-14],[-8,-19],[1,-40],[-7,-13],[-10,-5],[-13,20],[-8,17],[0,19],[-8,10],[-20,6],[-56,23],[-13,7],[-44,25],[-14,6],[-4,-59],[-4,-27],[9,-1],[-5,-44],[-24,4],[3,43],[11,-1],[2,27],[3,62],[-30,10],[-37,11],[-67,22],[-43,8],[-22,0],[-38,-2],[-17,-6],[-37,-22],[-13,-9],[-7,-10],[2,-19],[4,-19],[-2,-14],[-8,-9],[-6,0],[-10,6],[-4,10],[-5,9],[-9,20],[-10,9],[-19,6],[-20,5],[-19,4],[-22,2],[-21,4],[-22,8],[-1,-32],[8,0],[0,-72],[-22,0],[0,71],[8,0],[0,36],[-8,3],[-20,9],[-13,1],[-21,3],[-12,3],[8,-66],[-171,-3],[3,105],[-21,-3],[-19,-6],[-18,-8],[-9,-10],[-7,-17],[-10,-38],[-12,-14],[-17,0],[-4,4],[5,38],[-6,12],[-25,23],[-17,10],[-39,17],[-34,11],[-22,7],[-17,3],[-17,4],[-54,16],[-75,17],[-15,-2],[-18,-9],[-10,-9],[-6,-19],[-20,-1],[-18,-6],[-15,-9],[-24,-30],[-5,-11],[1,-18],[-2,-21],[-8,-34],[-8,-9],[-22,-2],[-9,13],[1,10],[6,28],[10,33],[-4,11],[-27,19],[-17,12],[-39,20],[-37,15],[-23,7],[-16,6],[-18,13],[-49,29],[-21,11],[-15,7],[-33,12],[-58,0],[-22,-2],[-37,-3],[-19,-4],[-18,-7],[-12,-12],[-9,-18],[-2,-56],[-2,-16],[-9,-9],[-14,-1],[-12,6],[-9,11],[-5,13],[2,36],[-8,12],[-16,13],[-16,10],[-29,17],[-41,18],[-33,15],[-34,16],[-38,16],[-39,12],[-49,9],[-21,-1],[-38,-7],[-67,-21],[26,-107],[-143,5],[-88,6],[-9,36],[-13,11],[-8,3],[-19,8],[-22,5],[-24,5],[-37,0],[-22,-3],[-20,-7],[-16,-12],[-20,-9],[-20,-5],[-21,3],[-15,2],[-19,2],[-41,2],[-20,-1],[-19,-1],[-15,-2],[-17,-6],[-17,-8],[-15,-13],[-9,-17],[-1,-19],[10,-57],[-1,-19],[-7,-11],[-11,-5],[-12,10],[-8,18],[-11,19],[-36,10],[-249,11],[-98,0],[-231,-9],[-62,-4],[-62,-11],[-217,-49],[-48,-17],[-61,-22],[-90,-29],[-233,-63],[-71,-19],[-57,-12],[-56,-5],[-169,-19],[-54,-14],[-94,-10],[-29,-8],[-16,-5],[-65,-29],[-51,-27],[-23,-35],[-28,-41],[-40,-15],[-41,-7],[-40,0],[-6,-1],[-13,-2],[-21,-2],[-19,-2],[-39,-7],[-40,-6],[-47,-16],[-77,-76],[-37,-21],[-34,-22],[-60,-31],[-70,-35],[-39,-23],[-103,-112],[-32,-12],[-97,-15],[-129,-35],[-271,-108],[-145,-99],[-33,-38],[-58,-47],[-34,-22],[-74,-53],[-83,-47],[-48,-30],[-57,-44],[-112,-82],[-146,-80],[-92,-74],[-165,-154],[-64,-59],[-59,-72],[-57,-99],[-65,-115],[-75,-124],[-104,-149],[-25,-30],[-71,-82],[-47,-39],[-57,-32],[-71,-29],[-36,-18],[-39,-12],[-130,-20],[-97,-16],[-74,-16],[-141,-40],[-37,-7],[-23,-5],[-25,-5],[-21,-3],[-21,-4],[-34,-5],[-16,-3],[-40,-3],[-38,-7],[-36,-9],[-37,-14],[-14,-5],[-23,-7],[-59,-37],[-19,-10],[-50,-20],[-32,-17],[-14,-6],[-22,-9],[-24,-5],[-17,-2],[-21,-1],[-38,-6],[-42,-3],[-16,0],[-21,0],[-20,-1],[-22,-5],[-32,-10],[-27,-5],[-23,0],[-49,2],[-122,14],[-44,6],[-31,4],[-12,1],[-43,2],[-38,-1],[-23,-5],[-10,-4],[-14,-5],[-18,-3],[-22,-4],[-36,-4],[-21,-3],[-21,-3],[-17,-4],[-21,-4],[-58,-10],[-19,-3],[-17,-1],[-22,0],[-18,-1],[-79,-5],[-43,-1],[-31,-1],[-28,0],[-24,2],[-55,6],[-16,-2],[-24,-1],[-93,-1],[-32,2],[-19,3],[-22,2],[-17,0],[-35,-2],[-21,2],[-41,10],[-18,9],[-17,10],[-17,12],[-17,8],[-19,5],[-20,7],[-22,9],[-18,5],[-20,8],[-20,7],[-21,8],[-19,8],[-20,8],[-19,6],[-19,5],[-18,5],[-20,6],[-21,4],[-21,3],[-17,1],[-19,-1],[-18,1],[-35,8],[-43,12],[-58,20],[-18,7],[-34,12],[-20,9],[-17,7],[-32,13],[-20,7],[-19,6],[-15,6],[-12,3],[-12,1],[-39,7],[-21,5],[-37,13],[-34,11],[-20,8],[-19,6],[-27,7],[-40,11],[-33,9],[-36,13],[-34,10],[-40,13],[-24,5],[-40,2],[-19,2],[-16,3],[-17,6],[-44,3],[-16,1],[-18,-1],[-81,9],[-164,30],[-95,17],[-46,12],[-43,7],[-42,3],[-73,10],[-11,1],[-51,6],[-52,6],[-36,-12],[-58,8],[-58,17],[-78,20],[-44,12],[-15,4],[-44,11],[-16,3],[-64,16],[-32,5],[-76,4],[-59,-3],[-44,0],[-45,3],[-45,5],[-23,2],[-81,4],[-64,7],[-82,11],[-36,3],[-69,14],[-79,7],[-78,12],[-43,8],[-40,7],[-43,-3],[-98,-18],[-93,-14],[-359,-32],[-40,-2],[-47,-3],[-199,-7],[-118,-10],[-53,-11],[-29,-8],[-243,-79],[-39,-10],[-138,-25],[-208,-35],[-114,-22],[-221,-51],[-217,-51],[-112,-21],[-154,-25],[-61,-14],[-96,-22],[-232,-62],[-112,-40],[-60,-16],[-63,-10],[-139,-17],[-61,-9],[-185,-34],[-91,-8],[-98,-7],[-62,-15],[-8,-4],[-96,-42],[-88,-20],[-128,-22],[-63,-5],[-38,10],[-54,48],[-41,28],[-97,18],[-89,8],[-87,1],[-66,-5],[-18,-1],[-176,-23],[-189,-31],[-208,-32],[-104,-16],[-20,-4],[-23,-6],[-93,-35],[-22,-7],[-20,-5],[-205,-35],[-76,-15],[-15,-4],[-16,-5],[-47,-13],[-19,-4],[-16,-3],[-4,0],[-17,7],[-24,4],[-19,2],[-21,2],[-60,4],[-138,6],[-57,-1],[-65,-3],[-64,-7],[-31,-5],[-64,-11],[-186,-37],[-93,-16],[-25,-4],[-87,-13],[-30,-3],[-34,-1],[-134,2],[-30,-1],[-27,-2],[-18,-2],[-19,-3],[-88,-20],[-21,-4],[-19,-3],[-35,-2],[-204,-5],[-34,-2],[-42,-4],[-22,-6],[-23,-9],[-16,-6],[-21,-7],[-13,-2],[-23,-1],[-25,2],[-26,4],[-54,12],[-22,4],[-24,3],[-22,0],[-11,0],[-12,-3],[-25,-7],[-28,-12],[-59,-32],[-33,-15],[-21,-7],[-19,-3],[-7,-1],[-155,-7],[-68,-2],[-264,-3],[-50,-4],[-114,-13],[-76,-14],[-122,-26],[-40,-7],[-35,-5],[-5,0],[-3,2],[0,7],[6,12],[7,11],[37,49],[15,25],[1,3],[-1,2],[-1,2],[-2,0],[-4,0],[-54,-13],[-101,-26],[-164,-48],[-64,-24],[-9,-5],[-7,-7],[-22,-30],[-15,-17],[-23,-13],[-30,-11],[-23,-6],[-22,-2],[-33,3],[-69,19],[-30,5],[-63,2],[-59,1],[-57,-1],[-54,-2],[-40,-3],[-64,-8],[-28,-6],[-70,-17],[-90,-27],[-47,-14],[-50,-17],[-115,-41],[-30,-15],[-62,-40],[-15,-8],[-70,-21],[-97,-23],[-69,-18],[-30,-10],[-88,-35],[-80,-35],[-95,-42],[-35,-9],[-40,-6],[-20,-1],[-49,7],[-20,-2],[-19,-8],[-57,6],[-178,43],[-35,2],[-43,-2],[-99,-16],[-37,-7],[-46,-3],[-54,-1],[-38,-3],[-36,-7],[-34,-10],[-42,-11],[-14,-5],[-43,-19],[-20,-7],[-48,-18],[-57,-28],[-14,-9],[-65,-28],[-35,-14],[-36,-18],[-37,-17],[-40,-12],[-90,-39],[-40,-16],[-39,-8],[-78,-8],[-45,3],[-63,-2],[-76,-21],[-95,-30],[-32,-11],[-19,-8],[-24,-11],[-25,-9],[-35,-17],[-37,-13],[-41,-3],[-18,0],[-18,-2],[-39,-12],[-19,-6],[-94,-20],[-40,-12],[-72,-20],[-53,-24],[-80,-33],[-125,-59],[-120,-69],[-124,-43],[-68,-18],[-78,-24],[-78,-30],[-200,-70],[-92,-31],[-73,-20],[-59,-13],[-62,-14],[-41,-8],[-40,-5],[-50,-7],[-47,-7],[-23,-6],[-44,-8],[-82,-19],[-84,-4],[-74,-19],[-90,-23],[-152,-47],[-54,-19],[-122,-36],[-54,-11],[-41,-4],[-47,-9],[-46,-8],[-60,-11],[-85,-12],[-51,-9],[-101,-20],[-74,-12],[-107,-23],[-75,-21],[-113,-33],[-309,-135],[-149,-79],[-15,-9],[-17,-14],[-14,-14],[-24,-25],[-24,-30],[-9,-14],[-8,-18],[-112,-27],[-57,18],[-67,16],[-18,8],[-13,10],[-26,25],[-18,14],[-14,7],[-31,18],[-33,16],[-20,2],[-20,4],[-19,2],[-11,0],[-12,0],[-32,-2],[-22,-4],[-18,-5],[-36,-11],[-23,-3],[-14,-4],[-24,-5],[-30,-10],[-20,-4],[-26,-4],[-49,-6],[-35,-8],[-2,0],[-41,-8],[-83,-21],[-34,-7],[-94,-17],[-59,-14],[-64,-18],[-45,-16],[-38,-8],[-129,-37],[-24,-5],[-20,-6],[-50,-23],[-23,-7],[-15,-5],[-18,-9],[-16,-9],[-19,-3],[-85,4],[-9,8],[-18,9],[-13,4],[-22,2],[-22,-1],[-37,-1],[-39,-7],[-78,-18],[-34,-7],[-93,-23],[-64,-11],[-17,-4],[-59,-18],[-55,-21],[-76,-26],[-21,-9],[-31,-12],[-30,-16],[-48,-27],[-59,-15],[-82,-16],[-40,-6],[-77,-11],[-51,-8],[-38,-7],[-37,-6],[-38,-5],[-40,0],[-37,-1],[-37,-7],[-58,-21],[-14,-7],[-14,-10],[-38,-38],[-113,-40],[-17,-1],[-36,11],[-20,4],[-16,3],[-19,2],[-18,0],[-23,-3],[-15,-4],[-14,-6],[-35,-14],[-20,-2],[-35,-1],[-90,-12],[-35,-11],[-31,-8],[-37,-10],[-17,-6],[-94,-39],[-19,-9],[-13,-9],[-33,-31],[-18,-13],[-20,-11],[-18,-11],[-36,-14],[-21,-5],[-18,-3],[-17,-1],[-18,-2],[-101,-28],[-19,-3],[-21,-1],[-33,1],[-24,-2],[-29,-4],[-9,-1],[-65,1],[-30,-3],[-85,-15],[-19,-5],[-42,-16],[-32,-13],[-15,-9],[-30,-28],[-16,-16],[-23,-13],[-79,13],[-46,9],[-19,5],[-51,17],[-60,3],[-12,0],[-45,-2],[-46,0],[-23,-1],[-41,-7],[-21,-6],[-15,-4],[-39,-12],[-22,-8],[-1213,-334],[-73,-7],[-92,-12],[-125,-20],[-128,-23],[-90,-18],[-32,-8],[-33,-9],[-207,-65],[-43,-13],[-85,-27],[-106,-39],[-57,-35],[-45,-22],[-58,-26],[-29,-15],[-22,-13],[-28,-6],[-47,-18],[-152,-8],[-19,8],[-20,3],[-28,0],[-43,-3],[-58,-5],[-82,-9],[-79,-11],[-49,-8],[-43,-10],[-38,-10],[-35,-13],[-46,-20],[-121,-56],[-119,-52],[-74,-31],[-72,-24],[-130,-41],[-110,-42],[-121,-58],[-40,-11],[-53,-1],[-68,30],[-10,16],[-19,22],[-17,13],[-24,11],[-32,8],[-34,2],[-36,-2],[-184,-45],[-85,-18],[-64,-18],[-59,-24],[-90,-40],[-83,-41],[-48,-20],[-47,-17],[-66,-23],[-152,-51],[-33,-12],[-97,-41],[-136,-39],[-60,-4],[-88,16],[-9,7],[-31,8],[-27,-1],[-56,-7],[-85,-15],[-86,-15],[-59,-12],[-53,-12],[-48,-14],[-26,-9],[-28,-14],[-27,-16],[-98,-60],[-22,-11],[-163,-66],[-154,-66],[-22,-7],[-76,-24],[-152,-60],[-56,-8],[-226,15],[-33,3],[-97,13],[-28,0],[-55,-7],[-18,-1],[-56,-2],[-38,-2],[-34,-4],[-31,-6],[-35,-8],[-35,-10],[-34,-12],[-33,-14],[-32,-16],[-72,-37],[-33,-15],[-28,-12],[-66,-25],[-66,-4],[-1055,-74],[-522,-74],[-328,-46],[-314,-44],[-133,-16],[-66,-12],[-75,-35],[-212,-74],[-114,-45],[-51,-21],[-174,-76],[-108,-41],[-88,-22],[-102,-38],[-138,-71],[-96,-42],[-30,-14],[-281,-87],[-391,-126],[-16,-5],[-181,-81],[-112,-41],[-174,-59],[-182,-57],[-376,-110],[-107,-32],[-303,-111],[-53,-24],[-138,-75],[-68,-28],[-71,-23],[-149,-40],[-447,-145],[-72,-26],[-12,-4],[-521,-152],[-376,-70],[-119,-27],[-53,-16],[-39,-15],[-82,-41],[-140,-81],[-343,-146],[-6,-2],[-318,-134],[-155,-70],[-134,-43],[-105,-36],[-147,-59],[-86,-34],[-137,-92],[-131,-53],[-281,-78],[-372,-140],[-296,-98],[-104,-48],[-188,-118],[-237,-81],[-267,-74],[-240,-80],[-192,-65],[-60,-13],[-203,-87],[-102,-47],[-116,-46],[-65,-19],[-33,-5],[-37,-3],[-33,-1],[-105,5],[-77,-5],[-90,-15],[-93,-35],[-99,-41],[-111,-64],[-148,-55],[-102,-18],[-113,-9],[-132,-32],[-102,-41],[-110,-68],[-144,-54],[-100,-42],[-44,-19],[-265,-80],[-144,-64],[-71,-30],[-214,-91],[-165,-54],[-133,-51],[-135,-75],[-257,-157],[-30,-18],[-64,-31],[-253,-130],[-222,-119],[-209,-114],[-101,-36],[-50,-18],[-142,-68],[-56,-35],[-55,-32],[-389,-220],[-43,-24],[-340,-185],[-79,-69],[-139,-57],[-154,-42],[-107,-73],[-114,-49],[-166,-65],[-455,-189],[-508,-211],[-586,-243],[-425,-183],[-507,-219],[-554,-239],[-453,-213],[-467,-220],[-551,-224],[-42,-20],[-476,-223],[-480,-242],[-455,-198],[-77,-40],[-90,-31],[-41,-29],[-43,-11],[-57,-36],[-98,-62],[-87,-31],[-44,-24],[-76,-34],[-53,-23],[-72,-38],[-57,-24],[-103,-49],[-182,-74],[-87,-32],[-91,-33],[-110,-51],[-88,-31],[-153,-68],[-58,-21],[-53,-11],[-159,-82],[-89,-72],[-54,-35],[-45,-27],[-223,-113],[-335,-108],[-235,-76],[-124,-57],[-157,-71],[-146,-4],[-22,-4],[-74,-14],[-80,-44],[-85,-91],[-117,-57],[-183,-98],[-100,-17],[-34,-13],[-36,-25],[-40,-38],[-115,-49],[-167,-72],[-145,-47],[-65,-33],[-73,-24],[-95,-14],[-68,-53],[-139,-71],[-115,-36],[-106,-40],[-44,-21],[-155,-71],[-89,-80],[-44,-24],[-200,-70],[-49,-24],[-18,-8],[-85,-52],[-220,-134],[-158,-76],[-351,-161],[-83,-38],[-123,-44],[-48,-14],[-46,-14],[-68,-26],[-52,-23],[-54,-25],[-113,-57],[-112,-60],[-582,-321],[-537,-305],[-72,-48],[-73,-56],[-79,-65],[-100,-61],[-66,-8],[-108,14],[-22,10],[121,-240],[-2,-5],[-5,-6],[-6,-3],[-6,0],[-6,3],[-37,51],[-115,188],[-28,47],[-121,74],[-96,36],[-43,10],[-43,2],[-40,-6],[-107,-37],[-90,-34],[-94,-38],[-292,-124],[-62,-24],[-95,-32],[-46,-9],[-12,-2],[-67,-5],[-83,1],[-103,-6],[-76,-13],[-99,-28],[-24,-9],[-47,-20],[-45,-23],[-44,-26],[-42,-29],[-310,-194],[-52,-33],[-57,-24],[-48,-12],[49,-104],[147,-312],[-5,-5],[-149,314],[-50,106],[-34,-4],[-35,-1],[-31,1],[-43,1],[-14,-2],[-49,-12],[-41,-9],[-39,-14],[-31,-13],[-114,-51],[-34,-16],[-28,-14],[-30,-16],[-110,-63],[-22,-14],[-13,-7],[-26,-11],[-63,-25],[-18,-9],[-26,-15],[-30,-19],[-63,-39],[-15,-8],[-51,-23],[-34,-19],[-57,-29],[-23,-10],[-8,-2],[-11,-1],[-23,0],[-12,2],[-10,3],[-9,5],[-3,0],[-1,-6],[64,-137],[95,-204],[-12,-6],[-95,205],[-76,162],[-14,-1],[-45,-5],[-42,-8],[-152,-41],[-72,-26],[-47,-16],[-75,-27],[-146,-88],[-39,-23],[-82,-41],[-128,-57],[-89,-41],[-179,-98],[-47,-29],[-57,-31],[-83,-33],[65,-139],[163,-347],[-14,-6],[-160,348],[-66,142],[-3,-1],[-8,4],[-5,1],[-77,-19],[-76,-20],[-53,-22],[-70,-35],[-31,-11],[-49,-24],[-30,-15],[-45,-23],[-51,-29],[-97,-43],[-63,-34],[-105,-63],[-281,-145],[-113,-52],[-42,-19],[-39,-10],[-4,-33],[36,-79],[130,-280],[-13,-4],[-105,224],[-25,54],[-34,73],[-2,7],[-12,2],[-13,16],[-10,23],[-7,9],[-9,8],[-7,3],[-10,1],[-36,-1],[-32,-3],[-34,-4],[-26,-5],[-26,-5],[-31,-6],[-40,-5],[-49,-10],[-49,-18],[-22,-10],[-53,-24],[-17,-8],[-19,-9],[-26,-11],[-28,-11],[-28,-11],[-39,-14],[-49,-17],[-30,-12],[-29,-14],[-45,-21],[-39,-18],[13,-36],[-9,-3],[-14,37],[-17,-4],[-28,-10],[-32,-11],[-16,-6],[-27,-9],[-48,-18],[-26,-10],[-40,-13],[-36,-12],[-22,-8],[-31,-12],[-20,-10],[-25,-11],[-29,-17],[-7,-8],[-9,-16],[-2,-15],[12,-37],[3,-7],[-13,-3],[-12,25],[-32,6],[-23,-6],[-42,-11],[-36,-7],[-35,-3],[-31,-3],[-22,-4],[-25,-7],[-29,-10],[-30,-12],[-31,-12],[-14,-5],[-13,-6],[-13,-5],[-10,-5],[-20,-9],[-9,-4],[-19,-7],[25,-68],[-9,-3],[-25,67],[-11,-3],[-23,-9],[-12,-4],[-22,-9],[-11,-4],[-19,-8],[-22,-9],[-21,-9],[-17,-6],[-17,-8],[-19,-8],[-20,-8],[-18,-8],[-19,-9],[-18,-9],[-31,-15],[-15,-7],[-27,-14],[-14,-6],[-13,-6],[-26,-10],[-18,-7],[23,-61],[-10,-3],[-22,60],[-11,-4],[-18,-5],[-23,-5],[-16,-4],[-25,-8],[-17,-6],[-33,-12],[-11,-4],[-29,-14],[-9,-4],[-16,-10],[-6,-4],[-13,-8],[-7,-5],[-12,-9],[-14,-8],[-18,-11],[-9,-7],[-10,-6],[-10,-7],[-10,-7],[-8,-6],[-8,-6],[-8,-5],[-19,-13],[-9,-7],[-10,-6],[-12,-7],[-14,-7],[-5,-2],[11,-28],[-11,-2],[-9,26],[-9,-2],[-10,-4],[-13,-5],[-12,-6],[-27,-14],[-15,-7],[-17,-8],[-16,-8],[-9,-4],[-18,-7],[-9,-3],[-25,-11],[-9,-4],[-29,-14],[-10,-5],[-9,-5],[-9,-5],[-10,-6],[-11,-5],[-10,-6],[-9,-6],[-10,-5],[-10,-6],[-10,-5],[-10,-5],[-8,-4],[-20,-6],[-16,-5],[8,-16],[-11,-3],[-8,16],[-6,-2],[-15,-5],[-71,-29],[-59,-28],[-51,-23],[-63,-29],[-59,-30],[-49,-25],[-50,-24],[-30,-20],[-53,-30],[-53,-24],[-59,-29],[-74,-36],[-88,-42],[-71,-31],[-71,-37],[-45,-24],[-64,-34],[-103,-63],[-108,-62],[-100,-31],[-3,-1],[-10,-2],[-11,-3],[-11,-4],[-11,-5],[-13,-5],[-14,-5],[-15,-4],[-15,-4],[-15,-6],[-9,-5],[-8,-7],[-7,-8],[-9,-8],[-14,-9],[-9,-5],[-8,-5],[-9,-5],[-8,-4],[-8,-5],[-10,-4],[-9,-5],[-9,-4],[-9,-4],[-8,-4],[-9,-4],[-16,-7],[-6,-3],[-12,-5],[-13,-6],[-13,-7],[-15,-7],[-15,-8],[-15,-7],[-15,-7],[-13,-6],[-11,-6],[-14,-6],[-14,-7],[-14,-6],[-14,-6],[-7,-7],[-2,-4],[-2,-3],[-1,-9],[3,-8],[5,-11],[5,-12],[2,-9],[2,-23],[0,-1],[-3,-11],[-9,-8],[-16,-5],[-8,0],[-13,1],[-9,8],[-10,17],[-7,18],[-11,36],[-16,1],[-10,1],[-13,-1],[-16,-3],[-10,-2],[-9,-1],[-10,-1],[-10,-1],[-11,0],[-8,0],[-17,-1],[-18,-2],[-10,-2],[-10,-1],[-11,-2],[-10,-3],[-11,-2],[-12,-3],[-11,-2],[-11,-2],[-10,-1],[-10,-3],[-10,-2],[-9,-1],[-15,-3],[-16,-3],[-9,-2],[-11,-1],[-13,-1],[-11,-2],[-12,-1],[-10,-1],[-22,-4],[-11,-2],[-10,-2],[-11,-1],[-9,-1],[-10,0],[-11,-2],[-13,-2],[-10,-1],[-9,-2],[-12,-1],[-11,-3],[-10,-2],[-8,-3],[-10,-3],[-13,-5],[-14,-5],[-14,-6],[-13,-5],[-12,-5],[-14,-5],[-13,-4],[-12,-4],[-13,-6],[-14,-8],[-15,-9],[-8,-5],[-14,-9],[-12,-9],[-14,-9],[-14,-9],[-13,-8],[-14,-8],[-16,-9],[-8,-5],[-9,-5],[-10,-5],[-8,-5],[-8,-4],[-14,-8],[-15,-9],[-15,-9],[-8,-5],[-8,-6],[-9,-5],[-8,-5],[-7,-5],[-8,-5],[-9,-5],[-8,-5],[-8,-5],[-8,-5],[-9,-5],[-8,-4],[-8,-5],[-22,-12],[-14,-7],[-14,-7],[-16,-8],[-9,-4],[-9,-5],[-8,-4],[-7,-4],[-14,-7],[-14,-7],[-15,-7],[-16,-8],[-16,-6],[-17,-7],[-16,-4],[-11,-4],[-11,-2],[-9,-2],[-19,-7],[0,-1],[0,-1],[39,-93],[-2,-9],[-2,-7],[-9,-5],[-7,0],[-8,1],[-13,5],[-4,1],[-8,16],[0,2],[-9,25],[-13,36],[-8,2],[-13,3],[-8,2],[-11,0],[-10,0],[-12,-1],[-13,0],[-14,0],[-13,0],[-11,-2],[-8,-1],[-11,-1],[-12,0],[-10,-1],[-12,0],[-12,1],[-10,0],[-14,0],[-16,-1],[-14,0],[-17,1],[-13,1],[-12,2],[-14,2],[-12,1],[-13,1],[-18,2],[-12,1],[-14,1],[-15,-2],[-15,-3],[-7,-2],[-17,-2],[-4,-1],[-12,-2],[-13,-2],[-12,-4],[-9,-3],[-9,-2],[-9,-3],[-11,-4],[-13,-7],[-14,-7],[-13,-6],[-14,-7],[-13,-6],[-12,-5],[-10,-6],[-11,-6],[-5,-4],[-5,-3],[-10,-6],[-10,-6],[-11,-8],[-12,-7],[-13,-7],[-14,-8],[-13,-8],[-14,-8],[-14,-9],[-12,-8],[-11,-9],[-13,-9],[-14,-8],[-15,-9],[-8,-4],[-8,-4],[-14,-7],[-15,-9],[-15,-9],[-14,-10],[-9,-5],[-9,-5],[-9,-4],[-11,-6],[-12,-6],[-14,-6],[-12,-6],[-13,-6],[-15,-6],[-13,-5],[-14,-5],[-30,-12],[-16,-7],[-16,-6],[-16,-8],[-13,-5],[-10,-5],[-10,-4],[-9,-5],[-9,-5],[-10,-4],[-9,-5],[-10,-5],[-11,-5],[-11,-5],[-10,-5],[-9,-4],[-9,-4],[-8,-4],[-16,-6],[-13,-6],[-14,-5],[-13,-6],[-11,-4],[-12,-5],[-13,-6],[-12,-7],[-14,-8],[-9,-4],[-8,-4],[-9,-4],[-9,-4],[-10,-5],[-10,-6],[-10,-6],[-9,-6],[-9,-5],[-8,-5],[-7,-3],[-12,-6],[-10,-4],[-8,-9],[-8,-7],[-12,-6],[-14,-2],[-16,-8],[17,-36],[17,-36],[2,-4],[-1,-8],[-6,-15],[-13,-9],[-15,-1],[-9,5],[-6,14],[-8,18],[-15,43],[-4,12],[-16,0],[-11,0],[-11,-2],[-11,-2],[-14,-1],[-18,0],[-19,-2],[-12,-2],[-11,-3],[-10,-2],[-10,-2],[-11,-2],[-11,-3],[-11,-2],[-8,-2],[-16,-3],[-14,-2],[-11,0],[-10,-2],[-10,-3],[-10,-2],[-13,-3],[-15,-3],[-16,-4],[-12,-3],[-14,-3],[-17,-5],[-9,-2],[-17,-5],[-8,-3],[-15,-4],[-10,-2],[-9,-2],[-13,-3],[-11,-3],[-12,-4],[-12,-3],[-11,-2],[-11,-3],[-12,-4],[-10,-1],[-10,-3],[-10,-4],[-10,-3],[-11,-4],[-12,-4],[-13,-4],[-16,-6],[-8,-3],[-17,-6],[-7,-3],[-18,-6],[-9,-4],[-12,-5],[-13,-6],[-12,-7],[-14,-6],[-8,-4],[-17,-7],[-23,-12],[-12,-6],[-11,-5],[-10,-5],[-12,-5],[-11,-6],[-12,-6],[-13,-7],[-20,-9],[-13,-6],[-10,-5],[-11,-6],[-12,-6],[-12,-6],[-9,-6],[-10,-6],[-6,-3],[-15,-8],[-10,-5],[-13,-6],[-13,-6],[-10,-5],[-13,-7],[-12,-7],[-10,-6],[-6,-3],[-15,-8],[-8,-5],[-9,-5],[-9,-5],[-9,-5],[-12,-6],[-9,-5],[-11,-5],[-11,-5],[-10,-5],[-18,-8],[-12,-6],[-13,-7],[-12,-6],[-10,-6],[-8,-6],[-8,-5],[-9,-6],[-8,-6],[-4,-3],[-13,-9],[-7,-7],[-6,-7],[-3,-6],[-3,-6],[-1,-6],[0,-2],[26,-64],[1,-2],[2,-3],[-17,-19],[-19,4],[-3,8],[-4,12],[-8,21],[-22,62],[0,1],[-4,1],[-11,0],[-10,0],[-10,0],[-11,-1],[-11,-1],[-15,0],[-8,0],[-11,1],[-10,0],[-11,1],[-11,0],[-17,0],[-11,0],[-14,0],[-14,0],[-13,0],[-12,0],[-12,-1],[-11,0],[-10,0],[-13,-1],[-23,0],[-15,1],[-13,0],[-12,1],[-14,0],[-11,1],[-11,0],[-11,1],[-9,0],[-4,0],[-16,-1],[-13,-1],[-11,-1],[-9,-1],[-12,-2],[-11,-1],[-11,-3],[-11,-2],[-8,-2],[-13,-3],[-13,-5],[-11,-4],[-12,-5],[-8,-3],[-11,-6],[-8,-5],[-7,-4],[-8,-5],[-10,-6],[-7,-5],[-10,-5],[-15,-8],[-10,-5],[-9,-6],[-10,-6],[-11,-6],[-9,-5],[-11,-4],[-11,-3],[-8,-3],[-8,-4],[-15,-7],[-14,-6],[-11,-5],[-11,-5],[-10,-5],[-11,-6],[-8,-5],[-11,-6],[-7,-5],[-3,-2],[-14,-8],[-12,-7],[-12,-6],[-14,-7],[-14,-5],[-10,-4],[-8,-3],[-8,-4],[-10,-4],[-18,-10],[-10,-5],[-9,-5],[-8,-4],[-8,-4],[-9,-4],[-16,-8],[-14,-7],[-11,-6],[-15,-10],[-9,-7],[-8,-6],[-9,-5],[-10,-5],[-9,-4],[-10,-4],[-10,-4],[-11,-4],[-9,-3],[-16,-6],[-10,-4],[-8,-4],[-10,-4],[-9,-4],[-12,-4],[-11,-5],[-10,-4],[-10,-5],[-9,-4],[-12,-6],[-10,-4],[-10,-6],[-9,-6],[-7,-5],[-9,-6],[-12,-7],[-12,-7],[-9,-6],[-10,-5],[-16,-8],[-10,-5],[-11,-6],[-10,-4],[-9,-4],[-11,-3],[-10,-3],[-10,-2],[-13,-4],[0,0],[-7,-3],[-14,-6],[-10,-6],[-8,-5],[-11,-7],[-7,-6],[-8,-6],[-7,-6],[-8,-5],[-9,-7],[-9,-8],[-6,-3],[-13,-6],[-8,-2],[-11,-5],[-10,-6],[-7,-6],[-7,-6],[-7,-7],[-8,-8],[16,-73],[-29,-26],[-13,23],[-32,61],[-12,1],[-9,0],[-13,2],[-13,2],[-14,3],[-10,1],[-10,1],[-14,1],[-11,1],[-14,1],[-12,3],[-11,2],[-11,1],[-11,0],[-10,0],[-13,0],[-9,0],[-11,0],[-11,1],[-10,0],[-12,0],[-11,-1],[-11,0],[-9,0],[-12,1],[-4,1],[-4,1],[-5,2],[-5,2],[-2,2],[-8,2],[-12,-5],[-11,-6],[-8,-4],[-10,-5],[-9,-3],[-9,-4],[-9,-4],[-12,-4],[-18,-7],[-11,-4],[-9,-3],[-11,-4],[-11,-3],[-9,-3],[-9,-3],[-11,-5],[-8,-3],[-11,-4],[-18,-8],[-15,-7],[-13,-5],[-11,-5],[-8,-3],[-9,-4],[-8,-5],[-10,-5],[-11,-6],[-11,-5],[-9,-4],[-12,-4],[-13,-5],[-13,-4],[-10,-4],[-10,-5],[-7,-4],[-10,-6],[-10,-6],[-13,-8],[-12,-6],[-11,-6],[-10,-5],[-10,-4],[-9,-4],[-12,-6],[-9,-4],[-11,-7],[-10,-6],[-8,-4],[-9,-5],[-8,-4],[-8,-4],[-9,-5],[-11,-6],[-9,-4],[-10,-5],[-9,-5],[-12,-6],[-4,-2],[-15,-8],[-10,-6],[-10,-6],[-10,-6],[-8,-4],[-9,-4],[-11,-6],[-9,-4],[-10,-5],[-10,-4],[-13,-5],[-12,-5],[-9,-3],[-9,-3],[-9,-3],[-12,-4],[-8,-3],[-10,-4],[-8,-4],[-9,-5],[-6,-8],[-6,-5],[-12,-5],[-12,-4],[-10,-3],[-9,-4],[-8,-5],[-10,-7],[-8,-6],[-9,-5],[-9,-6],[-11,-7],[-10,-6],[-7,-4],[-9,-4],[-9,-6],[-8,-6],[-7,-6],[-9,-7],[-6,-5],[-7,-5],[-9,-5],[-5,-1],[-16,-1],[-10,-1],[-9,-1],[-11,-3],[-7,-4],[-8,-5],[-8,-7],[-7,-7],[-6,-6],[-9,-9],[-8,-7],[-7,-7],[-8,-6],[-7,-5],[-6,-4],[-9,-5],[-10,-8],[-8,-6],[-8,-10],[-17,-101],[-15,-35],[-16,-2],[-22,33],[-2,31],[-39,57],[-8,4],[-11,5],[-13,4],[-13,1],[-12,2],[-9,2],[-10,4],[-10,4],[-2,2],[-11,12],[-7,9],[-7,7],[-8,7],[-10,5],[-10,2],[-10,1],[-11,1],[-11,1],[-8,0],[-6,1],[-18,0],[-11,-2],[-11,-1],[-13,-1],[-9,-2],[-12,0],[-13,-1],[-10,-1],[-9,-2],[-12,-2],[-16,-3],[-10,-3],[-9,-3],[-10,-3],[-11,-2],[-11,-2],[-10,-2],[-11,-2],[-11,-2],[-11,-2],[-13,-2],[-9,-3],[-10,-4],[-11,-2],[-11,-2],[-11,-2],[-11,-3],[-9,-2],[-10,-2],[-10,-3],[-12,-3],[-16,-4],[-11,-3],[-10,-5],[-6,-5],[-9,-4],[-11,0],[-14,-2],[-8,-4],[-10,-5],[-10,-4],[-11,-5],[-9,-3],[-11,-3],[-9,-3],[-11,-4],[-9,-3],[-10,-3],[-10,-3],[-7,-3],[-13,-3],[-9,-3],[-10,-6],[-8,-8],[-9,-9],[-11,-7],[-8,-4],[-3,-3],[-3,-4],[-3,-2],[-4,-3],[-13,-7],[-11,-7],[-9,-4],[-10,-4],[-11,-4],[-9,-7],[-8,-8],[-7,-6],[-7,-6],[-10,-6],[-10,-6],[-7,-4],[-9,-4],[-12,-2],[-6,-1],[-12,-2],[-11,-4],[-9,-5],[-13,-8],[-7,-5],[-2,-1],[-10,-6],[-11,-5],[-8,-3],[-10,-5],[-9,-4],[-10,-6],[-9,-6],[-7,-4],[-10,-6],[-8,-5],[-9,-7],[-8,-5],[-10,-5],[-8,-5],[-11,-5],[-9,-5],[-8,-5],[-10,-6],[-6,-5],[-8,-5],[-11,-8],[-8,-5],[-10,-6],[-6,-4],[-8,-6],[-10,-7],[-10,-5],[-5,-2],[-17,-7],[-12,-5],[-12,-5],[-11,-4],[-11,-5],[-10,-5],[-10,-6],[-11,-6],[-8,-5],[-10,-5],[-9,-6],[-12,-5],[-10,-4],[-9,-4],[-8,-3],[-10,-4],[-9,-4],[-8,-4],[-10,-5],[-8,-5],[-15,-9],[-10,-5],[-10,-6],[-10,-6],[-9,-6],[-10,-5],[-11,-5],[-11,-5],[-12,-6],[-6,-3],[-16,-8],[-10,-7],[-7,-6],[-8,-5],[-10,-7],[-12,-8],[-11,-6],[-8,-4],[-11,-3],[-10,0],[-4,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,-3],[0,-3],[0,-1],[36,-101],[10,-35],[-5,-13],[0,0],[-17,-7],[-15,9],[-9,11],[-6,22],[-32,98],[0,0],[-1,1],[-1,0],[-15,3],[-12,5],[-8,5],[-9,6],[-10,6],[-9,6],[-7,6],[-6,6],[-3,7],[0,11],[1,8],[-3,6],[-6,8],[-8,7],[-7,5],[-9,6],[-11,7],[-8,5],[-8,4],[-15,5],[-12,2],[-9,0],[-11,1],[-12,0],[-11,-1],[-10,-1],[-9,0],[-12,-1],[-9,0],[-9,-1],[-5,0],[-17,-2],[-14,0],[-11,-1],[-10,-2],[-11,-2],[-13,-4],[-11,-3],[-11,-2],[-9,-2],[-10,-2],[-13,-3],[-12,-2],[-11,-3],[-10,-4],[-9,-2],[-11,-4],[-9,-2],[-8,-3],[-13,-3],[-10,-4],[-14,-2],[-5,-8],[-3,-4],[-8,-7],[-9,-7],[-8,-5],[-10,-8],[-6,-6],[-8,-8],[-10,-8],[-7,-4],[-10,-3],[-16,-5],[-10,-3],[-11,-4],[-12,-4],[-15,-5],[-14,-5],[-13,-4],[-13,-5],[-28,-10],[-12,-4],[-12,-5],[-12,-6],[-13,-5],[-14,-7],[-16,-11],[-19,-12],[-13,-8],[-9,-6],[-7,-6],[-7,-3],[-11,-3],[-11,-4],[-12,-5],[-15,-6],[-15,-6],[-16,-7],[-9,-4],[-8,-4],[-15,-7],[-16,-7],[-16,-7],[-16,-5],[-15,-3],[-11,-3],[-9,-4],[-9,-4],[-7,-4],[-9,-5],[-10,-8],[-11,-7],[-8,-4],[-9,-5],[-11,-6],[-10,-5],[-3,-2],[-10,-5],[-15,-8],[-9,-4],[-8,-3],[-18,-8],[-9,-4],[-9,-4],[-14,-7],[-8,-7],[-7,-10],[-2,-3],[-3,-7],[-5,-11],[-8,-8],[-8,-8],[-7,-8],[-7,-12],[0,-12],[3,-10],[2,-10],[1,-8],[3,-11],[1,-9],[1,-12],[2,-6],[-1,-24],[-9,-5],[-11,-1],[-13,2],[-5,4],[-2,6],[0,3],[-2,10],[-3,9],[-1,11],[-2,10],[-2,11],[-4,10],[-2,11],[-3,10],[-2,10],[-3,10],[-2,8],[-2,8],[-1,9],[-6,7],[0,1],[-6,5],[-7,7],[-10,10],[-10,10],[-10,12],[-8,9],[-3,3],[-8,10],[-6,10],[-7,7],[-6,8],[-9,9],[-7,8],[-9,6],[-16,8],[-9,3],[-8,3],[-9,3],[-17,6],[-17,6],[-9,3],[-10,3],[-12,3],[-12,3],[-13,3],[-13,3],[-11,2],[-13,2],[-12,2],[-11,2],[-10,2],[-10,1],[-11,2],[-10,2],[-9,1],[-11,1],[-9,1],[-17,1],[-14,3],[-6,2],[-31,8],[-11,2],[-13,1],[-14,-1],[-13,0],[-14,-1],[-13,-2],[-11,-1],[-9,0],[-11,-1],[-12,-2],[-15,-3],[-13,-3],[-12,-2],[-15,0],[-11,0],[-10,-2],[-16,-3],[-9,-2],[-8,-3],[-15,-5],[-16,-5],[-13,-5],[-2,-1],[-10,-4],[-15,-6],[-14,-6],[-14,-6],[-14,-6],[-14,-5],[-12,-5],[-11,-3],[-1,0],[-6,-1],[-3,-1],[-14,-3],[-16,-5],[-9,-4],[-9,-4],[-10,-4],[-12,-4],[-12,-5],[-6,-3],[-8,-3],[-14,-6],[-15,-7],[-15,-6],[-14,-6],[-14,-6],[-14,-6],[-13,-6],[-11,-5],[-13,-5],[-13,-6],[-13,-4],[-12,-6],[-14,-5],[-15,-6],[-13,-5],[-11,-5],[-11,-4],[-11,-4],[-10,-4],[-9,-4],[-6,-2],[-13,-7],[-9,-5],[10,-50],[9,-50],[-1,-4],[-3,-4],[-2,-3],[-4,-3],[-4,-2],[-4,-1],[-5,-1],[-4,0],[-5,1],[-4,1],[-4,2],[-3,3],[-3,3],[-14,22],[-10,23],[-53,7],[-55,2],[-53,-4],[-54,-9],[-52,-14],[-50,-20],[-48,-24],[5,-23],[1,-23],[-1,-23],[-2,-3],[-2,-3],[-2,-3],[-3,-1],[-4,-2],[-3,-1],[-4,0],[-3,0],[-4,1],[-3,2],[-3,2],[-15,21],[-12,23],[-6,25],[-58,4],[-59,-1],[-58,-6],[-57,-10],[-56,-16],[-54,-20],[-52,-24],[-1,-15],[1,-15],[3,-14],[-1,-7],[-3,-7],[-4,-6],[-5,-6],[-6,-4],[-7,-4],[-7,-2],[-5,2],[-5,2],[-5,4],[-3,3],[-3,5],[-3,5],[-1,5],[-1,5],[-9,37],[-6,37],[-3,37],[-27,21],[-23,13],[-76,27],[-78,24],[-79,19],[-80,15],[-35,5],[-49,5],[-136,8],[-135,4],[-136,-1],[-49,-2],[-141,-8],[-140,-14],[-140,-19],[-138,-24],[-138,-29],[-136,-34],[-135,-40],[-236,-74],[-234,-79],[-232,-83],[-231,-87],[-228,-92],[-227,-96],[-208,-72],[-205,-78],[-203,-82],[-201,-88],[-199,-92],[-196,-97],[-193,-102],[-190,-107],[-188,-111],[-1822,-865],[-2798,-1339],[-469,-268],[-491,-265],[-532,-213],[-505,-292],[-4297,-1904],[-819,-407],[-701,-411],[-1037,-518],[-1252,-566],[-938,-404],[-215,-73],[-213,-78],[-212,-82],[-209,-87],[-208,-91],[-205,-96],[-203,-100],[-200,-104],[-198,-108],[-195,-113],[-193,-117],[-189,-121],[-103,-73],[-106,-68],[-109,-65],[-111,-61],[-114,-56],[-116,-52],[-118,-48],[-120,-43],[-122,-39],[-123,-34],[-124,-30],[-126,-25],[-126,-20],[-53,-774],[-110,-21],[376,4767],[1,1167],[27,794],[-36,157],[-30,158],[-24,159],[-19,160],[-13,160],[-7,160],[-2,161],[4,161],[10,160],[15,160],[21,159],[27,159],[32,158],[38,156],[44,155],[49,154],[54,152],[60,150],[65,149],[70,146],[76,144],[80,141],[86,138],[90,136],[95,133],[100,130],[1126,852],[111,60],[115,56],[116,52],[119,47],[121,42],[122,37],[124,32],[125,28],[127,22],[127,17],[128,13],[128,7],[111,-8],[111,-3],[111,2],[111,7],[111,12],[110,16],[108,22],[108,26],[106,31],[105,36],[102,40],[101,45],[98,49],[96,54],[93,58],[90,62],[253,213],[1600,1349],[143,82],[141,87],[138,90],[135,94],[132,98],[129,101],[126,105],[116,102],[112,105],[455,390],[181,77],[112,37],[60,19],[85,27],[94,37],[123,17],[271,71],[277,61],[570,69],[314,-18],[437,6],[622,4],[440,107],[103,241],[-3,1],[6,14],[-27,-5],[-12,52],[88,21],[12,-52],[-29,-8],[-15,-30],[-4,0],[-97,-228],[95,23],[344,84],[326,81],[889,274],[270,124],[263,153],[188,117],[243,171],[263,199],[97,67],[206,144],[221,117],[174,86],[425,196],[386,37],[70,-14],[575,321],[27,-64],[171,15],[-12,42],[-12,39],[-3,13],[-10,283],[-8,194],[1,62],[-17,-2],[-101,-23],[-11,44],[119,26],[145,2],[1,-45],[-118,0],[0,-60],[7,-198],[11,-284],[2,-7],[11,-42],[10,-40],[229,92],[94,-36],[104,-8],[59,-4],[171,45],[0,-53],[147,-27],[142,7],[15,-9],[-7,-30],[89,-33],[17,15],[18,10],[11,0],[12,-10],[2,-18],[-9,-40],[-4,-33],[38,-24],[21,40],[12,27],[134,305],[-11,4],[9,19],[34,-14],[-9,-19],[-11,5],[-125,-285],[-11,-22],[-34,-70],[31,-28],[59,-199],[1,-25],[0,-25],[40,-73],[30,-32],[45,-21],[14,-13],[9,-22],[75,-69],[87,-59],[71,-38],[58,-15],[83,-13],[79,-10],[122,-13],[130,6],[82,18],[106,24],[75,26],[11,45],[48,61],[15,-2],[14,-3],[9,-3],[9,-4],[8,-6],[7,-7],[5,-8],[4,-8],[3,-9],[1,-10],[-1,-9],[-2,-9],[-3,-9],[-34,-36],[-29,-39],[-24,-42],[-19,-44],[-14,-46],[-9,-47],[-3,-48],[3,-48],[17,-42],[22,-40],[27,-38],[31,-34],[36,-30],[39,-26],[42,-21],[44,-16],[47,-11],[47,-6],[47,0],[50,-58],[54,-55],[58,-52],[61,-48],[64,-43],[67,-40],[70,-35],[72,-31],[74,-26],[76,-21],[77,-17],[78,-12],[131,1],[130,6],[130,10],[130,16],[129,20],[128,25],[126,30],[126,35],[124,39],[122,44],[120,49],[118,53],[115,58],[114,62],[110,66],[108,70],[16,11],[-6,20],[63,23],[100,-304],[34,-47],[38,-45],[43,-41],[47,-37],[50,-33],[53,-28],[56,-23],[58,-19],[59,-13],[60,-8],[61,-2],[61,3],[60,9],[59,13],[58,19],[116,24],[114,28],[114,34],[111,38],[109,43],[108,49],[104,52],[103,58],[99,61],[96,66],[2202,1525],[196,205],[93,159],[144,246],[60,140],[3,7],[-18,50],[-24,63],[-15,76],[-95,177],[-25,48],[-18,48],[-5,55],[-3,37],[56,3],[49,-4],[24,-20],[11,-10],[33,-17],[43,19],[51,41],[113,89],[119,105],[36,32],[123,88],[133,123],[12,6],[144,132],[104,83],[188,135],[127,101],[119,76],[75,48],[208,92],[121,56],[25,-22],[47,-21],[87,-4],[43,-11],[86,-5],[122,-13],[63,-12],[70,-14],[167,-31],[158,-54],[92,-31],[188,-64],[158,-29],[134,-9],[74,43],[49,-45],[16,-19],[25,-42],[54,-14],[188,-69],[22,-32],[95,-3],[20,-9],[184,-7],[124,7],[75,4],[80,29],[161,85],[1,9],[3,10],[2,16],[5,13],[9,3],[6,-1],[7,-6],[2,-12],[0,-19],[1,-14],[1,-9],[95,-25],[81,-13],[56,2],[65,15],[240,71],[370,169],[10,26],[194,67],[65,-19],[91,16],[175,11],[52,3],[128,31],[122,42],[65,9],[49,6],[32,-23],[89,-15],[52,-17],[21,3],[17,-7],[64,-18],[364,152],[3,-25],[-361,-149],[82,-140],[72,37],[-43,72],[19,9],[31,-53],[180,88],[24,-39],[-179,-90],[-6,5],[-87,-45],[12,-18],[160,-271],[182,84],[-9,20],[-3,-1],[-43,91],[-1,9],[19,8],[52,-107],[-9,-4],[5,-11],[99,40],[-5,9],[-7,0],[-40,95],[22,8],[41,-90],[-9,-4],[7,-15],[113,46],[-10,23],[-7,-2],[-127,271],[19,7],[127,-271],[-5,-4],[10,-22],[12,5],[-5,11],[119,48],[-71,143],[132,60],[-136,280],[-130,46],[2,8],[135,-48],[137,-282],[60,-113],[147,38],[11,2],[2,0],[12,1],[11,0],[13,-1],[14,-1],[13,-2],[10,-2],[2,0],[11,-2],[7,0],[4,-1],[9,-1],[10,-1],[13,-4],[9,-2],[9,-2],[10,-2],[11,-1],[11,0],[13,1],[9,1],[13,1],[11,-2],[10,-1],[10,-1],[12,2],[10,1],[10,2],[10,2],[11,4],[10,4],[12,5],[9,4],[10,7],[11,7],[10,6],[7,5],[9,6],[9,6],[5,3],[6,3],[12,8],[13,7],[13,7],[12,6],[11,6],[9,5],[9,5],[8,4],[11,6],[9,5],[7,4],[11,7],[9,5],[8,5],[12,7],[8,5],[8,4],[9,5],[11,3],[9,3],[11,3],[14,3],[7,4],[7,3],[6,3],[-12,22],[-16,25],[33,14],[32,14],[29,13],[30,12],[0,0],[9,-18],[9,-18],[11,3],[20,5],[11,3],[10,3],[13,4],[11,3],[10,3],[9,3],[4,1],[5,1],[11,4],[11,3],[12,3],[9,3],[13,3],[14,3],[11,2],[13,2],[14,2],[13,1],[13,1],[12,1],[14,1],[12,1],[14,2],[14,2],[12,2],[15,2],[15,1],[14,1],[13,1],[15,0],[13,0],[1,0],[15,0],[12,-4],[9,-1],[9,-1],[14,-2],[9,-1],[10,-1],[9,-2],[12,-2],[14,-3],[9,-2],[9,-2],[9,-2],[9,-2],[17,-4],[14,-3],[12,-1],[11,-1],[12,-2],[14,-2],[14,-2],[13,-2],[14,-1],[1,0],[11,-2],[16,-2],[15,-4],[12,-3],[10,-1],[11,-2],[10,-1],[9,0],[11,-1],[14,-3],[14,-2],[11,-2],[13,-3],[6,-1],[6,-1],[13,-2],[12,-2],[14,-2],[9,-1],[14,0],[10,0],[10,1],[12,1],[9,1],[11,0],[13,1],[4,-1],[8,0],[12,0],[12,1],[10,0],[13,-1],[11,-1],[11,-1],[12,-1],[8,-1],[12,0],[13,0],[1,0],[16,0],[14,-1],[16,-1],[15,-2],[14,-2],[14,-1],[14,-1],[12,-1],[7,-1],[21,0],[13,-1],[12,0],[8,-1],[11,0],[11,0],[11,0],[10,0],[7,0],[3,0],[12,0],[12,0],[11,0],[10,1],[10,1],[12,0],[12,1],[12,0],[11,0],[12,1],[15,0],[17,0],[16,1],[15,0],[16,-1],[17,0],[16,-1],[16,1],[17,2],[13,1],[8,-1],[12,0],[14,-1],[13,-1],[12,0],[12,0],[16,0],[11,1],[14,0],[10,0],[12,0],[9,0],[9,0],[10,0],[11,0],[1,0],[9,0],[10,0],[10,0],[13,0],[12,0],[11,0],[12,1],[13,1],[11,0],[12,-1],[10,-1],[9,0],[10,1],[11,1],[10,0],[10,1],[14,0],[11,0],[10,-1],[6,-2],[4,-4],[1,-9],[3,-5],[98,15],[132,26],[70,16],[135,36],[53,16],[49,15],[105,39],[20,7],[95,38],[33,12],[54,25],[151,70],[132,66],[145,75],[38,20],[78,44],[58,30],[140,81],[19,11],[61,36],[78,47],[266,161],[150,93],[51,31],[160,96],[258,160],[314,190],[470,288],[349,211],[3357,2051],[335,203],[679,418],[558,368],[716,479],[374,246],[1414,935],[468,309],[468,309],[465,304],[467,306],[462,302],[474,312],[465,306],[472,311],[460,302],[472,310],[536,224],[522,217],[559,234],[705,27],[431,17],[257,-56],[580,-128],[631,-139],[638,-146],[95,6],[557,30],[588,32],[538,29],[55,4],[589,37],[599,38],[606,38],[35,5],[21,80],[25,78],[30,77],[33,76],[38,73],[10,28],[12,26],[21,34],[24,31],[29,28],[32,24],[22,14],[24,13],[62,34],[-17,28],[16,9],[44,6],[44,7],[-9,50],[44,7],[8,-47],[104,18],[8,-38],[60,3],[0,11],[435,31],[615,38],[1,6],[405,38],[2857,960],[-1,29],[44,15],[495,160],[248,84],[194,66],[256,86],[6,-12],[4,-8],[428,143],[13,58],[23,103],[11,48],[55,232],[52,220],[9,31],[11,33],[14,34],[16,36],[10,19],[5,8],[23,37],[28,34],[33,31],[36,26],[39,22],[42,17],[718,272],[891,317],[182,64],[119,43],[-8,19],[3,1],[-26,66],[8,3],[27,-66],[2,0],[6,-19],[918,326],[34,8],[32,8],[30,1],[23,1],[31,2],[25,-2],[26,0],[27,-7],[19,-5],[47,-18],[47,-20],[42,-19],[47,-32],[65,-45],[290,-192],[331,-218],[185,119],[473,306],[226,146],[215,141],[210,138],[31,17],[39,30],[28,31],[37,50],[181,164],[42,25],[44,22],[45,20],[46,18],[47,16],[62,28],[60,32],[57,36],[55,39],[52,42],[7,3],[55,36],[308,196],[-31,97],[-77,135],[-30,53],[9,4],[10,-17],[47,24],[19,10],[-7,13],[2,2],[55,20],[33,-80],[92,49],[7,16],[26,20],[22,2],[30,-8],[49,-13],[54,-22],[53,-6],[25,5],[29,6],[31,28],[41,35],[21,19],[8,7],[25,-8],[22,3],[19,4],[18,7],[15,8],[14,16],[23,35],[26,28],[13,8],[13,-5],[10,-6],[10,1],[54,29],[62,28],[34,31],[22,20],[15,4],[30,4],[30,3],[13,4],[343,206],[13,8],[22,20],[15,17],[14,25],[21,38],[31,77],[24,46],[25,43],[21,29],[28,42],[27,35],[23,32],[0,0],[59,58],[30,17],[66,33],[27,10],[19,6],[24,4],[20,0],[19,-1],[22,-5],[19,-7],[16,-9],[18,-10],[22,-8],[25,-6],[24,-3],[24,0],[31,4],[22,3],[22,9],[72,29],[56,30],[31,17],[40,22],[42,23],[37,25],[31,22],[40,28],[30,21],[21,18],[14,15],[37,37],[23,29],[-206,502],[22,9],[198,-492],[26,43],[22,45],[17,47],[44,8],[45,4],[52,5],[54,12],[44,10],[74,28],[23,23],[25,14],[33,5],[31,-3],[33,-11],[32,-16],[33,-17],[26,0],[27,11],[34,14],[64,54],[19,17],[42,17],[67,39],[81,54],[81,71],[37,75],[0,135],[-13,101],[-21,46],[39,32],[-17,53],[10,43],[-8,137],[-19,181],[-9,78],[8,17],[21,25],[21,14],[8,1],[5,-38],[-4,-86],[8,-88],[19,-92],[4,-195],[19,-119],[23,-92],[22,-181],[96,9],[101,8],[39,43],[7,20],[27,82],[6,31],[-18,47],[55,17],[-3,6],[5,2],[-8,30],[-5,0],[-14,59],[-14,62],[-6,21],[-35,146],[-5,-1],[2,-10],[-89,-15],[-1,7],[-5,-2],[-5,-1],[-89,-15],[-78,-10],[-1,14],[5,1],[-8,138],[-6,97],[-4,81],[20,1],[-2,4],[190,112],[7,-13],[8,5],[12,-19],[-42,-23],[-2,2],[-41,-19],[-4,6],[-29,-13],[-5,3],[-91,-54],[1,-122],[49,11],[7,2],[40,9],[7,1],[59,13],[13,3],[45,9],[8,2],[51,11],[7,2],[95,21],[5,-15],[-25,-5],[-22,-5],[-7,-1],[-14,-4],[-319,-68],[10,-171],[73,7],[-2,15],[42,6],[-1,2],[123,21],[2,-12],[14,3],[-7,19],[15,4],[15,-67],[4,-14],[8,-31],[2,-7],[10,-40],[2,-5],[10,-38],[1,-7],[11,-40],[2,-6],[11,-64],[-2,0],[9,-32],[7,1],[1,-5],[127,42],[243,75],[12,-2],[11,-3],[12,-5],[11,-7],[33,2],[33,7],[31,11],[14,7],[26,15],[-86,622],[25,3],[9,0],[50,0],[77,-526],[29,4],[-20,187],[-24,2],[-3,47],[13,1],[1,-14],[26,1],[21,-197],[47,43],[79,216],[2,78],[-16,102],[-107,405],[52,32],[3,1],[13,3],[1,0],[11,2],[9,0],[2,0],[11,-2],[8,-2],[4,-2],[4,-2],[3,-2],[2,-3],[9,-12],[8,-15],[6,-15],[12,-35],[4,-8],[3,-8],[8,-14],[9,-11],[20,-23],[8,-9],[5,-3],[5,-3],[3,0],[2,-1],[3,0],[3,0],[7,1],[7,2],[32,16],[8,3],[8,1],[19,2],[15,0],[12,-1],[6,-1],[5,-2],[21,-8],[19,-8],[17,-9],[16,-9],[38,-25],[13,-9],[196,-129],[63,-46],[48,-32],[74,-51],[10,-6],[18,-8],[7,-3],[35,-14],[101,-37],[27,-12],[24,-11],[15,-8],[16,-11],[17,-11],[19,-14],[29,-23],[66,-51],[18,-12],[20,-13],[79,-44],[31,-19],[9,-7],[9,-8],[38,-38],[10,-8],[10,-6],[18,-9],[43,-16],[11,-5],[8,-6],[12,-8],[29,-23],[16,-11],[46,-24],[67,-41],[5,-3],[5,-5],[15,-16],[6,-6],[7,-4],[3,-2],[4,-2],[4,-1],[4,0],[10,0],[10,1],[12,3],[2,2],[8,0],[3,0],[6,1],[6,1],[18,0],[16,0],[15,0],[14,-3],[7,-2],[5,-2],[16,-9],[47,-29],[34,-19],[14,-6],[32,-12],[13,-7],[54,-30],[41,-25],[15,-8],[25,-11],[12,-4],[30,-8],[13,-5],[10,-5],[11,-7],[10,-9],[14,-13],[9,-9],[8,-11],[7,-11],[0,-1],[6,-11],[7,-20],[5,-21],[3,-21],[2,-22],[0,-16],[-1,-35],[0,-16],[7,-66],[-1,-39],[0,-12],[2,-29],[4,-46],[4,-63],[4,-41],[9,-49],[3,-12],[6,-12],[7,-11],[9,-9],[13,-37],[17,-47],[3,-9],[2,-11],[0,-12],[0,-13],[-3,-47],[-1,-50],[-1,-9],[-1,-6],[-2,-12],[-1,-9],[1,-20],[3,-35],[2,-28],[3,-16],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[4,-2],[3,-1],[2,0],[3,0],[1,0],[6,2],[2,-2],[3,0],[6,2],[2,0],[3,1],[2,2],[1,1],[2,2],[2,3],[2,4],[3,9],[2,10],[0,11],[-4,47],[0,39],[-1,13],[-6,39],[1,11],[3,24],[0,10],[-8,61],[-5,33],[-2,13],[-10,76],[-27,178],[-8,61],[-7,72],[-5,33],[-1,12],[0,8],[3,22],[-1,11],[-2,27],[0,12],[0,1],[0,1],[1,1],[0,1],[2,2],[2,2],[2,2],[3,1],[3,2],[4,1],[8,1],[9,1],[10,-1],[11,-2],[17,-3],[17,-6],[17,-7],[16,-8],[65,-36],[74,-44],[34,-19],[11,-5],[35,-18],[15,-6],[13,-5],[5,-3],[34,-16],[44,-22],[40,-23],[94,-59],[48,-30],[26,-15],[27,-13],[7,-3],[7,-2],[29,-6],[12,-4],[46,-23],[44,-18],[77,-36],[1,0],[1,-1],[3,0],[3,-1],[6,0],[3,2],[4,-2],[5,2],[6,2],[4,2],[5,3],[8,8],[5,6],[3,4],[6,10],[5,11],[14,41],[4,17],[3,16],[9,65],[9,53],[11,49],[3,18],[1,24],[1,33],[0,5],[0,24],[0,18],[0,1],[-1,1],[0,6],[-7,4],[-1,1],[-3,2],[-3,2],[-17,8],[-40,17],[-18,8],[-47,25],[-9,6],[-13,7],[-49,31],[-24,13],[-54,27],[-11,4],[-107,48],[-63,30],[-28,13],[-76,36],[-18,10],[-19,11],[-78,50],[-36,20],[-13,6],[-21,10],[-79,32],[-32,16],[-36,21],[-78,47],[-32,18],[-125,64],[-42,23],[-88,52],[-29,16],[-31,16],[-24,13],[-97,51],[-117,60],[-120,60],[-78,43],[-17,7],[-15,5],[-15,3],[-13,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-7,-8],[-2,-2],[-2,-2],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-29,3],[-30,5],[-29,4],[-8,3],[-3,1],[-3,2],[-15,11],[-20,16],[-32,27],[-28,24],[-53,44],[-35,33],[-26,20],[-46,29],[-5,3],[-7,3],[-27,11],[-10,5],[-6,3],[-4,4],[-4,3],[-4,4],[-21,37],[-30,47],[-7,13],[-14,32],[-9,15],[-33,45],[-1,0],[-14,20],[10,14],[17,3],[1,21],[13,18],[19,7],[8,9],[4,2],[11,8],[8,8],[4,4],[3,5],[19,35],[3,6],[15,25],[7,15],[1,4],[1,4],[2,10],[-1,30],[0,9],[2,8],[5,21],[0,6],[0,1],[0,5],[0,2],[-1,2],[0,2],[-1,1],[-3,4],[-3,4],[-7,6],[-22,14],[-5,4],[-2,2],[-2,3],[-3,4],[-3,5],[-10,24],[-3,6],[-3,3],[-2,2],[-1,1],[-2,1],[-3,1],[-2,1],[-18,3],[-3,1],[-3,1],[-2,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,3],[0,3],[0,3],[0,3],[1,2],[0,1],[1,1],[1,1],[0,0],[1,1],[1,0],[11,5],[5,1],[6,2],[3,1],[13,1],[3,1],[3,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,3],[1,3],[1,4],[0,9],[-1,10],[-5,21],[-1,9],[-2,13],[0,8],[1,3],[1,3],[1,2],[1,2],[1,1],[25,26],[36,33],[7,9],[7,10],[7,12],[9,16],[1,3],[1,4],[1,13],[1,5],[1,2],[1,2],[1,2],[1,2],[3,2],[3,2],[14,7],[2,1],[3,2],[42,36],[4,3],[5,2],[20,9],[5,2],[3,3],[7,6],[6,8],[6,8],[4,8],[4,10],[5,22],[2,6],[3,5],[20,32],[18,29],[1,3],[1,3],[1,7],[0,8],[-1,10],[-6,18],[-3,12],[-1,6],[1,5],[0,5],[1,4],[0,0],[4,7],[4,7],[6,6],[7,6],[9,6],[21,12],[5,3],[4,3],[11,11],[9,10],[8,11],[5,10],[17,38],[25,51],[17,40],[4,7],[6,8],[24,24],[8,11],[2,3],[1,3],[3,7],[3,27],[1,5],[1,4],[2,4],[1,2],[1,2],[2,1],[1,2],[2,1],[2,1],[8,3],[4,1],[18,5],[10,4],[31,15],[14,8],[21,13],[2,2],[2,1],[4,5],[9,18],[4,5],[4,5],[2,1],[2,2],[11,4],[13,4],[45,7],[22,3],[45,5],[8,0],[26,5],[37,9],[40,11],[42,13],[6,2],[14,4],[7,3],[22,7],[46,18],[18,6],[33,9],[29,5],[27,4],[14,1],[6,0],[6,-1],[6,-2],[5,-2],[21,-13],[38,-21],[15,-8],[30,-11],[12,-5],[6,-4],[6,-4],[24,-23],[6,-4],[5,-3],[37,-17],[38,-15],[61,-25],[46,-20],[5,-3],[6,-4],[20,-19],[5,-4],[4,-2],[1,-1],[1,0],[1,0],[1,0],[2,0],[3,1],[4,1],[11,5],[2,1],[2,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,0],[1,-1],[1,-1],[1,-1],[1,-2],[0,-2],[1,-4],[1,-9],[1,-5],[1,-1],[1,-2],[1,-1],[1,-1],[16,-10],[19,-10],[39,-17],[25,-10],[4,-1],[11,-2],[5,-2],[22,-9],[32,-16],[26,-13],[31,-17],[37,-23],[33,-24],[10,-9],[21,-21],[9,-8],[35,-26],[14,-12],[23,-21],[20,-18],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[-1,-3],[0,-3],[-1,-3],[-6,-13],[-1,-4],[0,-3],[-1,-15],[0,-8],[1,-4],[3,-2],[0,-4],[2,-1],[1,-1],[7,-5],[8,-4],[31,-14],[11,-6],[19,-10],[5,-4],[5,-3],[5,-6],[6,-7],[14,-24],[14,-31],[6,-11],[36,-52],[32,-46],[6,-9],[14,-27],[16,-24],[15,-21],[13,-16],[24,-26],[28,-26],[10,-11],[8,-11],[6,-12],[17,-44],[14,-33],[3,-10],[2,-10],[4,-71],[8,-113],[2,-33],[1,-51],[1,-37],[-1,-31],[-1,-6],[-1,-5],[-8,-28],[-1,-6],[-1,-5],[0,-1],[0,-14],[2,-41],[0,-7],[-2,-7],[-5,-16],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-3,-2],[-4,-2],[-9,-3],[-21,-4],[-4,-1],[-4,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,0],[-1,-2],[0,-1],[0,-2],[42,-122],[4,-75],[13,-35],[16,-26],[34,-40],[14,-16],[14,-13],[5,-4],[6,-3],[26,-12],[5,-4],[4,-3],[28,-30],[2,-1],[2,-2],[8,-4],[3,-2],[3,-2],[1,-1],[1,-1],[1,-2],[0,-2],[1,-2],[0,-2],[1,-4],[-1,-5],[-3,-10],[-8,-21],[-1,-2],[-1,-2],[-3,-5],[-15,-15],[-2,-3],[-2,-3],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[0,0],[1,0],[0,0],[1,-1],[1,0],[3,-1],[3,-1],[4,-1],[4,-1],[6,-1],[18,0],[20,1],[8,0],[3,1],[4,1],[2,2],[2,1],[1,1],[24,24],[13,14],[206,-138],[130,-115],[11,-15],[4,-5],[7,-6],[5,-2],[7,-1],[24,0],[4,2],[13,16],[4,3],[114,10],[201,19],[-33,426],[0,72],[71,0],[-73,454],[-9,56],[-71,-13],[-6,-2],[-45,-9],[-6,-2],[-48,-10],[-8,1],[-47,-10],[-8,-1],[-47,-10],[-8,-1],[-46,-9],[-7,-1],[-44,-10],[15,-67],[-11,-2],[-19,81],[5,1],[-14,62],[9,2],[14,-62],[55,11],[8,1],[60,10],[7,2],[52,10],[7,1],[47,9],[8,3],[49,9],[7,2],[90,19],[-34,235],[-99,-16],[-6,-1],[-35,-6],[-65,-9],[-25,-4],[-186,-28],[12,-77],[-14,-1],[-28,150],[19,3],[11,-63],[260,43],[-5,22],[66,11],[3,-23],[70,11],[-2,9],[-61,-10],[-3,16],[82,12],[-7,48],[157,15],[-6,71],[-265,-11],[-2,57],[-164,-15],[-35,20],[2,30],[-15,-9],[-41,56],[-26,-18],[-127,-88],[-24,-17],[33,-43],[-14,-10],[-43,55],[15,10],[1,-2],[1,0],[177,125],[-95,125],[-17,22],[-172,-106],[-43,66],[9,6],[36,-55],[36,23],[6,4],[38,23],[4,3],[38,23],[5,4],[38,22],[15,1],[10,-12],[90,1],[-2,50],[-112,-2],[-1,11],[113,3],[-3,44],[-113,-3],[0,11],[113,5],[-4,92],[-61,2],[-1,13],[-23,-1],[-1,-7],[-8,0],[-7,-1],[-10,-1],[-36,-4],[-39,-4],[-7,0],[-42,-4],[-7,-1],[-22,-2],[-19,-14],[-7,-5],[-45,-31],[-6,-4],[-44,-30],[-15,-11],[-22,-15],[-8,11],[143,100],[16,12],[209,21],[0,2],[-9,6],[-61,3],[-44,-13],[-26,-6],[-19,-2],[-9,-1],[-8,1],[-15,4],[-15,5],[-13,8],[-10,9],[-369,525],[-1,13],[-8,35],[-3,9],[-18,29],[-43,35],[-60,103],[-47,73],[-14,18],[-53,52],[-9,11],[-8,13],[-7,16],[-9,24],[-1,24],[-1,10],[0,4],[-10,33],[-13,25],[-4,8],[-52,121],[-1,3],[-53,8],[-37,15],[-4,0],[0,-2],[-48,5],[-4,-47],[-5,-12],[6,-63],[-22,-1],[-9,88],[-4,-1],[-1,10],[-35,-1],[-3,27],[-4,-1],[-1,17],[12,2],[-2,15],[4,63],[-25,2],[-3,0],[1,39],[18,-1],[11,0],[-1,13],[-5,0],[-22,-1],[-4,57],[27,1],[-8,119],[18,1],[1,-15],[1,-10],[2,-16],[1,-6],[1,-19],[1,-7],[1,-16],[1,-7],[1,-15],[0,-10],[1,-19],[1,-32],[0,-16],[-1,-37],[0,-20],[-1,-7],[-1,-20],[0,-7],[-2,-28],[11,0],[3,-18],[-4,0],[1,-8],[8,-1],[8,50],[22,-2],[-1,-6],[58,-4],[-1,-10],[23,-10],[2,5],[16,-4],[-5,-13],[14,-6],[34,-7],[-41,84],[-88,188],[-17,39],[17,21],[18,21],[21,18],[7,7],[25,24],[22,26],[54,86],[50,89],[9,16],[13,57],[0,8],[2,8],[2,8],[3,7],[5,7],[5,7],[7,6],[7,4],[8,3],[0,1],[14,4],[14,1],[14,0],[11,-1],[12,1],[11,1],[19,4],[11,3],[7,1],[5,2],[8,7],[5,1],[7,-4],[3,-3],[2,0],[4,4],[4,3],[2,3],[1,2],[8,5],[10,4],[7,3],[10,10],[2,6],[5,4],[2,1],[5,1],[10,5],[7,4],[3,2],[5,1],[3,-1],[3,0],[6,2],[4,1],[7,3],[10,4],[3,2],[5,4],[1,4],[0,2],[-1,2],[3,1],[6,-1],[5,0],[5,0],[5,3],[6,2],[8,2],[9,6],[8,7],[12,9],[8,4],[8,1],[8,0],[7,1],[6,3],[5,4],[6,4],[7,6],[34,20],[16,9],[14,8],[7,8],[2,9],[2,28],[5,13],[5,11],[6,5],[1,6],[-1,3],[4,8],[4,0],[5,-2],[4,-4],[3,-2],[3,0],[2,4],[-1,4],[-1,5],[-2,7],[-1,5],[0,5],[2,7],[5,3],[3,0],[13,-9],[5,-5],[3,-2],[4,0],[5,1],[6,2],[8,4],[36,15],[3,1],[9,5],[0,1],[3,6],[2,12],[0,12],[-1,7],[3,8],[1,1],[5,-3],[5,-5],[4,-5],[3,-1],[1,0],[2,4],[1,7],[0,6],[3,3],[6,-1],[4,0],[6,0],[7,2],[6,4],[8,12],[4,8],[0,9],[-2,7],[-2,8],[3,7],[3,9],[3,8],[5,8],[6,3],[4,0],[6,-3],[3,-1],[3,0],[2,2],[2,3],[1,8],[2,6],[9,6],[2,1],[5,4],[19,25],[4,5],[2,5],[-1,8],[0,8],[4,4],[6,2],[4,0],[6,-1],[4,0],[5,3],[3,3],[1,2],[-2,3],[-4,4],[-7,6],[-10,9],[-2,5],[2,4],[4,4],[5,4],[10,14],[4,5],[3,6],[0,6],[2,6],[4,5],[4,2],[9,1],[7,-1],[5,-2],[8,0],[7,3],[10,5],[8,5],[13,11],[13,13],[25,29],[7,11],[16,24],[21,30],[5,7],[6,8],[8,6],[9,6],[10,6],[9,7],[8,8],[10,13],[6,11],[4,8],[3,12],[3,7],[4,8],[9,13],[14,10],[22,12],[19,6],[17,9],[18,5],[21,7],[59,11],[21,9],[9,2],[17,0],[36,-4],[92,-1],[40,-3],[14,-2],[35,-8],[49,-9],[5,-1],[6,-2],[14,-6],[6,-3],[35,-8],[11,-4],[30,-10],[12,-3],[13,-2],[15,1],[15,1],[31,7],[76,20],[12,1],[36,3],[11,2],[9,4],[19,11],[49,31],[32,17],[14,9],[67,47],[68,48],[5,3],[7,5],[131,15],[46,7],[-2,23],[26,2],[12,13],[-8,86],[7,0],[-2,20],[-8,-1],[-4,42],[20,1],[4,-41],[-6,0],[2,-21],[8,0],[7,-78],[22,-17],[27,2],[2,-22],[131,10],[-2,18],[45,4],[-9,96],[22,2],[4,-43],[3,0],[7,-72],[296,23],[489,35],[6,0],[9,0],[-4,49],[-15,-1],[-4,38],[5,1],[0,36],[28,1],[3,-35],[6,0],[4,-39],[-14,-2],[3,-47],[218,4],[62,-1],[21,-20],[24,-18],[27,-13],[28,-10],[30,-6],[30,-2],[30,3],[44,7],[44,11],[42,15],[40,20],[-3,42],[179,16],[83,6],[0,-7],[568,44],[2,0],[100,8],[578,43],[35,1],[0,14],[46,4],[-2,22],[51,2],[1,-20],[92,8],[75,-22],[76,-16],[77,-11],[78,-6],[76,0],[77,5],[76,11],[75,16],[73,20],[72,26],[69,31],[67,36],[64,40],[61,44],[57,49],[19,9],[22,25],[21,25],[8,7],[8,8],[15,8],[12,17],[17,15],[5,5],[11,17],[8,2],[6,-1],[11,12],[6,2],[12,-1],[20,-1],[42,-6],[15,2],[13,12],[13,7],[14,1],[38,-7],[8,2],[28,5],[42,1],[11,-8],[12,-15],[13,-8],[6,1],[20,5],[5,-2],[14,-8],[7,-1],[10,6],[8,33],[4,5],[20,7],[23,0],[20,1],[6,3],[3,6],[4,18],[10,7],[7,-1],[17,-5],[13,2],[8,-8],[10,-13],[13,-1],[19,-6],[17,-12],[34,-26],[12,-7],[14,1],[28,30],[2,20],[10,1],[4,-5],[12,-3],[18,2],[11,6],[-1,12],[2,11],[21,4],[12,7],[7,11],[14,9],[9,17],[7,18],[13,17],[4,9],[4,10],[4,18],[6,13],[61,23],[11,10],[17,10],[20,7],[19,5],[15,5],[20,4],[13,3],[18,5],[16,2],[18,3],[45,10],[9,2],[21,9],[19,13],[23,19],[22,20],[13,12],[22,18],[21,16],[22,20],[77,73],[18,22],[27,26],[23,22],[20,21],[19,22],[20,24],[17,23],[11,17],[13,19],[10,16],[9,20],[10,17],[15,17],[14,13],[20,16],[19,10],[14,12],[12,18],[8,17],[4,10],[8,13],[9,9],[14,8],[17,8],[20,7],[16,4],[17,4],[16,3],[18,1],[17,1],[13,2],[18,7],[16,8],[15,11],[16,11],[17,14],[16,13],[12,11],[104,99],[55,47],[14,20],[11,16],[11,21],[20,26],[36,49],[32,31],[32,26],[30,21],[55,55],[76,81],[54,66],[40,37],[56,46],[106,87],[38,41],[33,38],[42,39],[24,21],[24,19],[39,36],[60,55],[49,56],[36,37],[32,26],[28,22],[33,29],[26,21],[29,28],[18,16],[25,22],[24,28],[17,19],[20,24],[18,18],[24,15],[38,30],[22,22],[29,30],[24,21],[22,10],[19,8],[14,1],[14,-5],[8,-3],[22,-8],[18,0],[31,6],[27,9],[30,14],[32,14],[27,13],[32,13],[23,10],[25,10],[17,6],[394,13],[84,-4],[93,-43],[30,-27],[1,-7],[-7,-9],[0,-12],[17,-7],[19,0],[21,-7],[33,-23],[2,-6],[-1,-15],[-7,-12],[-14,-17],[-26,-26],[-15,-19],[-12,-16],[-33,-20],[-30,-24],[-27,-26],[-25,-28],[-21,-31],[25,-31],[-76,-59],[-22,23],[-88,-63],[-84,-66],[-82,-69],[-79,-72],[-2,-3],[-8,-13],[-10,-17],[-10,-18],[-5,-14],[-8,-20],[-5,-14],[-6,-16],[-9,-22],[-4,-11],[-6,-16],[-7,-18],[-8,-20],[-9,-19],[-9,-21],[-6,-17],[-6,-12],[-10,-21],[-7,-14],[-9,-18],[-10,-21],[-5,-11],[-7,-19],[-8,-21],[-7,-20],[-8,-17],[-5,-10],[-8,-18],[-7,-23],[-8,-17],[-6,-12],[-8,-17],[-7,-16],[-4,-12],[-8,-22],[-5,-13],[-8,-20],[-6,-15],[-7,-18],[-7,-17],[-7,-19],[-6,-18],[-6,-17],[-8,-20],[-7,-13],[-9,-17],[-124,-224],[-25,-35],[-45,-45],[-43,-64],[-176,-163],[-90,-80],[-77,-46],[-84,-77],[-66,-43],[-73,-65],[-64,-42],[-27,-25],[-35,-19],[-18,-11],[-12,-12],[-8,-11],[-9,-18],[-4,-14],[-8,-17],[-13,-10],[-34,-2],[-22,-8],[-42,2],[-33,-12],[-11,-7],[-4,-22],[-4,-13],[-8,-12],[-11,-15],[-15,-15],[-15,-14],[-18,-13],[-13,-15],[-15,-13],[-31,-32],[-9,-10],[-5,-14],[-5,-5],[-12,-5],[-3,-11],[-18,-34],[-25,-52],[-9,-16],[-12,-20],[-11,-19],[-14,-19],[-19,-26],[-10,-18],[-11,-18],[-12,-16],[-12,-14],[-51,-22],[-24,-10],[-20,-10],[-22,-12],[-25,-20],[-12,-9],[-3,-5],[-14,-37],[-7,-16],[0,-36],[1,-22],[2,-22],[3,-12],[3,-20],[1,-14],[-2,-19],[-6,-42],[-9,-45],[-12,-33],[-7,-12],[-3,-16],[-3,-20],[-3,-16],[-5,-21],[-3,-15],[-4,-16],[-10,-37],[-144,-415],[0,-13],[-9,-34],[-11,-36],[-12,-33],[-14,-51],[-12,-34],[-21,-50],[-7,-26],[-6,-29],[-14,-51],[-11,-51],[-14,-27],[-8,-20],[-7,-19],[-4,-13],[-6,-15],[-4,-18],[-3,-18],[-6,-12],[-12,-5],[-7,-8],[-21,-32],[-19,-34],[-14,-36],[-10,-39],[-5,-38],[2,-52],[5,-29],[-1,-23],[-13,-33],[-3,-20],[1,-16],[13,-22],[3,-17],[1,-20],[-8,-15],[-13,-17],[-2,-13],[10,-37],[7,-29],[2,-16],[1,-36],[9,-91],[4,-16],[9,-11],[9,-14],[8,-21],[5,-11],[5,-24],[1,-36],[2,-34],[5,-48],[4,-23],[4,-17],[4,-20],[10,-32],[2,-37],[-1,-13],[1,-20],[3,-19],[2,-17],[1,-17],[-2,-38],[0,-23],[-11,-55],[-12,-38],[-15,-50],[-15,-49],[-8,-49],[-2,-36],[7,-38],[4,-20],[12,-36],[6,-22],[12,-38],[7,-34],[7,-34],[6,-34],[11,-41],[5,-17],[5,-17],[10,-29],[7,-17],[8,-16],[11,-17],[9,-12],[19,-23],[15,-17],[13,-10],[17,-10],[13,-12],[10,-15],[5,-14],[4,-9],[6,-18],[9,-20],[35,-12],[35,-8],[37,-4],[36,1],[0,7],[-1,7],[-6,42],[-3,0],[-12,104],[-71,-7],[-3,30],[-1,10],[-4,42],[-12,116],[-4,35],[0,8],[-1,10],[-2,12],[-34,342],[-1,6],[-22,220],[-5,43],[-56,-3],[-1,9],[131,12],[1,-9],[-55,-6],[5,-43],[1,-9],[4,-44],[1,-10],[5,-42],[6,-64],[3,-30],[2,-22],[3,-26],[3,-27],[1,-7],[4,-46],[2,-16],[9,-90],[1,-14],[15,-144],[1,-9],[4,-34],[1,-10],[0,-2],[6,-61],[3,-33],[1,-10],[8,-61],[70,6],[12,-103],[54,5],[1,-10],[-54,-6],[1,-11],[-6,0],[5,-31],[13,2],[1,-14],[1,-5],[1,-10],[51,2],[52,4],[37,7],[-5,38],[7,1],[-5,38],[-5,0],[-3,23],[-1,10],[-6,53],[-1,10],[-6,53],[-4,40],[-3,24],[-1,10],[-6,54],[-1,9],[-2,20],[-3,26],[-1,17],[-6,54],[-1,10],[-5,55],[-1,13],[-5,48],[-1,11],[-5,53],[-1,10],[-6,54],[-1,9],[-5,53],[-1,10],[-5,55],[-1,9],[-5,53],[-1,10],[-5,53],[-67,-4],[-1,9],[108,10],[1,0],[44,3],[1,-8],[-46,-5],[-19,-2],[5,-53],[53,-517],[3,-29],[1,-6],[16,-156],[5,-45],[8,-81],[3,-22],[-6,-1],[5,-37],[7,0],[4,-38],[30,5],[73,21],[25,1],[4,-5],[21,-67],[5,1],[-2,7],[-4,15],[-17,58],[8,3],[18,-61],[3,-13],[2,-7],[38,9],[-2,4],[-1,6],[-21,70],[8,3],[19,-71],[2,-6],[1,-4],[12,3],[10,5],[11,16],[9,10],[9,12],[6,12],[4,13],[2,14],[-9,-1],[-15,-1],[-1,1],[-8,74],[6,8],[-2,38],[-7,-1],[-4,43],[-1,10],[-6,64],[-3,29],[-4,46],[-1,10],[-2,15],[-4,49],[-1,10],[-6,63],[-2,18],[-5,57],[-1,9],[-6,65],[-1,9],[-3,31],[-4,43],[-6,65],[-22,231],[-6,64],[-77,-6],[-1,9],[186,15],[1,-8],[-89,-8],[6,-65],[1,-9],[3,-32],[5,-49],[5,-57],[4,-35],[3,-39],[1,-10],[7,-64],[0,-9],[7,-65],[1,-9],[6,-65],[1,-9],[6,-65],[1,-10],[6,-63],[1,-10],[5,-50],[2,-16],[0,-9],[6,-55],[2,-19],[11,-116],[-6,-1],[4,-38],[8,1],[7,-66],[0,-3],[0,-1],[133,105],[22,-31],[7,-8],[7,3],[4,10],[-4,11],[-6,19],[-8,15],[0,18],[25,52],[4,18],[-1,19],[2,12],[14,14],[14,4],[17,-9],[19,-2],[18,1],[21,-2],[19,2],[4,5],[-4,3],[-6,10],[0,18],[2,38],[2,12],[25,32],[8,36],[5,31],[5,37],[1,37],[-3,18],[-5,19],[-11,16],[-14,13],[-13,14],[-11,15],[-6,17],[-2,19],[4,18],[12,17],[15,17],[9,26],[1,12],[12,16],[9,16],[6,21],[-3,18],[-8,10],[-9,11],[11,19],[8,17],[1,13],[-7,20],[-9,9],[-11,17],[-8,20],[-4,19],[-2,17],[-1,20],[-1,22],[-3,13],[-7,18],[-5,16],[-8,34],[4,20],[1,20],[-4,19],[-11,18],[-10,17],[-11,19],[-4,18],[1,19],[3,22],[6,17],[7,38],[6,18],[2,15],[-5,18],[0,13],[5,21],[-2,18],[2,16],[3,19],[14,13],[2,5],[-3,6],[-12,15],[-9,17],[-4,13],[-4,16],[-3,18],[-3,20],[2,18],[5,23],[5,17],[3,20],[8,20],[4,19],[-3,18],[0,7],[0,8],[5,23],[9,17],[7,17],[10,18],[7,38],[0,18],[2,13],[4,9],[4,9],[14,14],[-8,11],[0,6],[10,16],[10,17],[0,6],[1,7],[-2,12],[-5,10],[-4,9],[-9,16],[-10,21],[-5,12],[-18,57],[-4,39],[0,53],[1,54],[5,36],[10,37],[17,35],[44,71],[56,55],[50,54],[23,35],[9,15],[8,16],[11,13],[10,10],[16,11],[5,11],[12,7],[12,12],[13,2],[18,-5],[21,0],[22,7],[14,8],[18,12],[11,10],[8,9],[8,9],[4,12],[7,11],[16,12],[24,18],[7,5],[31,14],[16,8],[33,15],[16,14],[26,11],[6,11],[4,18],[8,19],[10,13],[14,15],[28,23],[9,11],[13,18],[8,11],[13,12],[12,12],[9,11],[13,13],[10,6],[24,16],[7,16],[15,16],[11,5],[10,10],[14,23],[8,11],[11,13],[14,17],[20,3],[5,13],[11,16],[22,17],[20,19],[3,19],[6,12],[12,17],[18,12],[0,5],[7,12],[12,17],[14,11],[4,3],[12,5],[8,9],[16,11],[16,14],[11,5],[19,4],[13,5],[18,14],[16,10],[26,28],[25,28],[17,28],[15,16],[14,10],[12,5],[15,-3],[14,1],[4,7],[-1,14],[4,10],[16,16],[17,12],[18,10],[20,37],[5,11],[-5,9],[-4,9],[-6,8],[-5,7],[-15,15],[1,7],[15,11],[31,7],[10,17],[7,19],[8,17],[10,19],[12,18],[10,16],[7,17],[16,16],[15,10],[25,27],[40,33],[14,15],[15,14],[12,16],[12,9],[13,8],[15,8],[18,8],[19,9],[18,8],[3,11],[14,8],[12,4],[14,-2],[4,3],[36,17],[28,20],[33,21],[19,11],[26,23],[24,10],[31,11],[13,8],[20,8],[19,10],[14,16],[11,17],[17,23],[26,42],[20,29],[17,34],[19,50],[-168,76],[-15,-29],[-34,14],[24,49],[201,-91],[1,2],[16,35],[9,18],[9,16],[12,18],[10,16],[13,24],[16,28],[-212,93],[25,51],[36,-19],[-21,-30],[177,-80],[9,23],[11,17],[8,19],[4,19],[9,54],[2,23],[0,22],[0,25],[-1,11],[-6,34],[-2,19],[-2,19],[2,23],[4,19],[7,17],[7,20],[2,22],[2,14],[5,18],[11,18],[12,17],[23,30],[8,12],[20,28],[14,18],[15,15],[33,24],[20,10],[19,6],[20,7],[16,5],[13,5],[18,5],[38,13],[18,2],[17,-1],[18,1],[21,5],[13,4],[16,14],[17,9],[6,0],[5,-5],[7,0],[29,20],[11,7],[17,-4],[21,9],[24,8],[30,10],[13,5],[19,7],[18,8],[18,10],[17,8],[17,10],[33,24],[28,21],[32,21],[31,24],[37,25],[33,25],[42,35],[38,33],[32,27],[29,28],[30,27],[26,21],[14,12],[15,14],[26,31],[16,16],[57,74],[30,46],[24,33],[23,34],[9,18],[6,16],[16,52],[-1,24],[2,26],[2,14],[4,19],[8,35],[10,36],[14,39],[7,20],[14,38],[1,46],[4,17],[5,13],[9,39],[11,31],[22,47],[25,50],[13,33],[11,38],[23,67],[13,54],[9,37],[3,21],[-1,20],[-4,21],[3,35],[5,35],[-4,42],[-8,17],[-11,16],[-12,15],[-12,16],[-14,13],[-18,13],[-13,4],[-10,-5],[-21,1],[-15,12],[-14,10],[-11,9],[-40,37],[-6,5],[-10,16],[-2,13],[-3,5],[-6,18],[-3,19],[-6,18],[-10,19],[-19,25],[-11,13],[-11,13],[-7,13],[-6,17],[-7,18],[-5,14],[-1,11],[20,26],[0,6],[-13,16],[0,11],[-1,10],[-5,4],[-2,10],[-7,13],[-19,6],[-17,10],[-22,30],[-12,19],[-8,14],[-18,25],[-40,68],[-7,8],[-6,9],[1,12],[2,13],[-9,16],[-14,20],[-8,18],[-7,19],[-6,31],[5,12],[12,17],[-1,18],[9,11],[11,15],[16,9],[12,7],[16,26],[12,24],[-5,4],[-2,6],[16,13],[7,9],[12,19],[20,33],[9,18],[5,16],[9,16],[8,14],[4,8],[4,9],[2,21],[-3,17],[2,12],[23,30],[18,14],[19,11],[7,9],[3,21],[23,33],[16,15],[12,1],[17,10],[27,-3],[10,8],[3,11],[-7,12],[-9,8],[1,15],[10,11],[18,4],[13,-4],[13,-3],[9,8],[4,8],[5,8],[11,13],[11,16],[8,17],[4,19],[-12,13],[-1,13],[7,13],[28,24],[3,22],[10,18],[13,15],[27,23],[26,30],[21,22],[34,46],[28,30],[18,8],[8,15],[5,5],[26,12],[10,4],[14,13],[3,24],[4,14],[12,8],[17,5],[4,18],[1,14],[16,16],[19,0],[19,19],[-4,16],[17,9],[18,11],[-1,5],[3,17],[7,12],[17,8],[14,5],[17,1],[14,7],[15,13],[52,55],[29,26],[26,25],[22,26],[28,42],[54,79],[53,76],[31,50],[21,30],[44,62],[30,39],[16,20],[13,14],[24,31],[10,13],[24,32],[22,28],[12,13],[13,11],[23,33],[13,12],[12,20],[20,28],[25,29],[29,35],[32,42],[39,43],[21,29],[154,177],[22,32],[358,400],[101,106],[523,511],[81,62],[282,188],[76,40],[77,32],[173,48],[191,42],[181,34],[184,27],[69,7],[92,3],[62,-4],[64,-10],[77,-20],[84,-28],[54,-20],[65,-40],[73,-30],[57,-5],[77,7],[118,15],[71,10],[221,38],[13,1],[13,1],[26,-1],[27,-3],[54,-15],[26,-11],[47,-29],[59,-44],[79,-68],[74,-79],[42,-46],[52,-53],[74,-76],[74,-85],[89,-101],[30,-44],[12,-27],[19,-37],[26,-49],[0,-31],[-2,-8],[-20,-34],[-36,-39],[-29,-28],[-37,-32],[-59,-45],[-21,-13],[-20,-10],[-13,-3],[-15,1],[-15,3],[-17,4],[-17,5],[-16,2],[-12,0],[-12,-3],[-56,-23],[-16,-5],[-4,-1],[-4,-3],[-3,-5],[0,-4],[5,-11],[5,-10],[28,-77],[28,-64],[7,-12],[10,-12],[11,-12],[164,-155],[13,-12],[17,-18],[14,-16],[11,-16],[9,-15],[8,-15],[12,-26],[9,-29],[9,-33],[10,-51],[0,-15],[-3,-26],[-5,-14],[-10,-24],[-6,-11],[-12,-19],[-14,-16],[-17,-13],[-17,-11],[-18,-9],[-17,-5],[-16,-3],[-17,-3],[-13,-1],[-12,-2],[-30,1],[-14,1],[-9,0],[-9,1],[-11,5],[-6,5],[-4,6],[-2,5],[-1,6],[-1,12],[1,12],[5,48],[-8,42],[-13,39],[-25,50],[-15,25],[-8,13],[-12,17],[-14,12],[-16,15],[-7,12],[-2,16],[0,16],[0,12],[0,19],[-5,55],[-6,20],[-2,7],[-25,44],[-31,60],[-21,37],[-14,19],[-31,42],[-6,10],[-6,9],[-108,184],[-13,21],[-9,10],[-8,11],[-20,22],[-28,29],[-51,50],[-35,36],[-11,12],[-9,11],[-4,8],[-4,10],[-7,35],[-4,13],[-12,30],[-11,17],[-10,8],[-23,17],[-10,8],[-42,45],[-56,64],[-8,9],[-18,17],[-19,15],[-10,7],[-20,12],[-2,1],[-3,0],[-1,0],[-3,0],[-5,-2],[-4,-2],[-7,-5],[-2,-3],[-3,-3],[-2,-4],[-1,-3],[-1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[23,-31],[23,-26],[91,-96],[36,-45],[13,-16],[12,-19],[38,-68],[17,-26],[17,-24],[20,-25],[25,-27],[76,-80],[23,-27],[18,-25],[111,-175],[34,-52],[16,-20],[28,-31],[18,-22],[17,-25],[9,-19],[3,-12],[1,-20],[-3,-48],[0,-12],[2,-11],[12,-44],[5,-14],[6,-13],[11,-16],[29,-37],[12,-17],[28,-52],[9,-20],[6,-19],[4,-21],[2,-22],[0,-16],[-2,-15],[-4,-23],[0,-13],[1,-10],[5,-11],[6,-11],[10,-15],[8,-11],[7,-7],[26,-22],[9,-8],[19,-33],[27,-136],[-22,-146],[-27,-93],[-2,-25],[1,-28],[16,-113],[10,-54],[-12,-38],[-52,-78],[-17,-35],[-13,-45],[-5,-28],[-10,-51],[-10,-34],[-23,-76],[-8,-33],[-3,-21],[-1,-55],[-3,-24],[-6,-19],[-20,-47],[-7,-22],[-4,-16],[-3,-16],[-4,-28],[-2,-25],[1,-24],[2,-24],[9,-49],[9,-82],[2,-55],[-1,-25],[-5,-28],[-8,-30],[-6,-18],[-32,-89],[-124,-347],[-7,-25],[-5,-25],[-4,-34],[-1,-16],[5,-40],[7,-19],[12,-14],[10,-7],[13,-3],[17,-1],[19,2],[19,4],[59,15],[23,2],[35,0],[27,-3],[22,-6],[19,-8],[13,-10],[5,-9],[5,-14],[-1,-24],[-3,-14],[-10,-23],[-14,-24],[-25,-34],[-29,-31],[-37,-28],[-22,-10],[-34,-9],[-19,-2],[-20,-2],[-22,1],[-22,1],[-16,3],[-17,7],[-19,8],[-47,25],[-13,6],[-12,4],[-19,2],[-16,-3],[-10,-6],[-19,-18],[-23,-30],[-13,-19],[-13,-24],[-44,-84],[-21,-42],[-50,-116],[-19,-34],[-47,-75],[-47,-61],[-17,-26],[-8,-20],[-7,-23],[-3,-23],[-7,-59],[-7,-31],[-10,-31],[-24,-57],[-10,-24],[-7,-26],[-4,-23],[-2,-26],[-4,-72],[-14,-139],[5,-11],[11,-4],[15,0],[33,9],[25,11],[23,13],[17,13],[7,8],[12,20],[5,12],[5,23],[10,57],[8,24],[9,20],[19,18],[22,10],[19,4],[16,0],[9,0],[7,-1],[6,-2],[5,-3],[4,-3],[1,-1],[2,-4],[1,-6],[-3,-22],[-11,-44],[-8,-21],[-21,-39],[-26,-33],[-24,-24],[-30,-29],[-57,-56],[-21,-23],[-23,-27],[-24,-28],[-20,-22],[-5,-5],[-12,-10],[-13,-9],[-15,-7],[-16,-6],[-16,-5],[-17,-2],[-7,0],[-8,0],[-16,1],[-9,3],[-4,3],[-2,2],[-13,8],[-14,6],[-14,4],[-16,1],[-15,-1],[-15,-4],[-13,-6],[-12,-7],[-10,-9],[-9,-10],[-20,-21],[-25,-31],[-22,-34],[-18,-36],[-16,-41],[-10,-43],[5,-5],[5,-4],[5,-3],[7,-2],[6,-1],[6,0],[2,4],[1,4],[3,3],[3,3],[3,3],[4,2],[4,1],[4,1],[4,0],[4,-1],[5,-1],[3,-2],[4,-3],[3,-3],[2,-4],[2,-4],[1,-4],[0,-4],[0,-4],[-2,-4],[-5,-8],[-9,-9],[-11,-9],[-9,-7],[-9,-7],[-28,-21],[-19,-17],[-12,-12],[-10,-11],[-21,-23],[-15,-17],[-19,-24],[-17,-26],[-37,-61],[-18,-27],[-30,-41],[-22,-27],[-22,-23],[-21,-20],[-190,-149],[-19,-17],[-22,-26],[-14,-20],[-18,-26],[-6,-14],[-7,-13],[-10,-12],[-14,-14],[-17,-12],[-19,-8],[-20,-6],[-11,-10],[-9,-13],[-7,-13],[-5,-14],[-2,-29],[-8,-30],[-12,-28],[-8,-15],[-11,-14],[-23,-29],[-27,-27],[-30,-25],[-35,-29],[-36,-26],[-39,-25],[-7,-8],[-8,-7],[-9,-5],[-10,-4],[-10,-2],[-11,-1],[-10,0],[-11,3],[-10,3],[-117,32],[-2,-1],[-2,0],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-2],[0,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[2,0],[128,-51],[12,-5],[11,-7],[10,-8],[8,-10],[7,-11],[-2,-17],[-1,-19],[0,-60],[4,-34],[-1,-14],[-9,-24],[-19,-34],[-11,-15],[-12,-14],[-14,-12],[-15,-12],[-8,-4],[-9,-3],[-20,-3],[-23,1],[-28,5],[-12,4],[-13,5],[-51,23],[-23,9],[-129,38],[-94,24],[-75,16],[-75,15],[-16,1],[-34,4],[-36,7],[-37,10],[-39,12],[-33,12],[-19,7],[-43,17],[-38,15],[-62,26],[-92,35],[-22,6],[-21,7],[-19,4],[-21,2],[-21,-2],[-45,-9],[-21,-9],[-39,-23],[-53,-36],[-57,-54],[-44,-56],[-170,-224],[-17,-40],[-11,-39],[4,-46],[-14,-39],[-34,-44],[-37,-24],[-87,-43],[-57,-34],[-39,-35],[-29,-37],[-64,-71],[-35,-30],[-38,-35],[-27,-46],[-26,-61],[-13,-44],[-16,-24],[-14,-17],[-12,-12],[-16,-15],[-14,-5],[-1,0],[-36,-15],[-34,-18],[-31,-23],[-28,-25],[-25,-29],[-21,-31],[-18,-36],[-14,-38],[-6,-27],[-4,-27],[-1,-35],[-1,-35],[13,-104],[34,-116],[19,-47],[7,-26],[10,-25],[13,-24],[15,-23],[15,-17],[16,-16],[119,-129],[46,-71],[13,-19],[27,-20],[6,1],[14,6],[5,0],[15,-6],[6,-5],[12,-12],[11,-44],[-1,-103],[8,-20],[139,-119],[108,-86],[194,-124],[13,-10],[15,-7],[17,-5],[17,-2],[12,1],[12,1],[17,-1],[17,-3],[18,-6],[18,-9],[80,-31],[33,-16],[9,-9],[10,-18],[3,-11],[2,-13],[-4,-68],[-6,-53],[-7,-47],[0,-12],[2,-12],[3,-9],[5,-4],[6,-1],[27,-1],[7,-1],[6,-3],[8,-11],[8,2],[5,8],[2,10],[0,3],[3,41],[8,39],[14,38],[18,36],[23,34],[27,31],[6,5],[43,48],[11,9],[28,18],[15,14],[2,35],[4,10],[23,15],[55,29],[28,18],[64,40],[44,25],[34,18],[101,47],[54,28],[14,9],[13,11],[6,9],[6,10],[13,23],[1,9],[-1,9],[-2,9],[-4,8],[-2,2],[-1,1],[-1,2],[0,1],[-1,2],[0,2],[1,2],[0,2],[1,1],[1,2],[2,1],[139,138],[2,0],[3,1],[2,0],[3,-1],[3,-1],[3,-1],[2,-1],[9,-5],[8,-6],[16,7],[31,11],[12,6],[9,5],[9,7],[4,4],[15,17],[5,9],[7,23],[3,4],[3,4],[10,10],[13,8],[15,8],[20,9],[18,6],[40,10],[15,6],[17,7],[14,7],[12,7],[11,8],[13,11],[12,13],[11,13],[10,13],[4,7],[24,41],[12,18],[8,11],[8,10],[9,7],[9,6],[10,5],[36,16],[13,6],[48,25],[13,9],[17,13],[6,7],[45,64],[33,36],[34,36],[64,49],[29,29],[32,39],[12,20],[10,22],[9,35],[1,12],[1,2],[10,181],[23,62],[4,22],[4,59],[4,19],[60,155],[8,14],[22,33],[13,12],[40,29],[18,21],[10,16],[20,37],[24,70],[2,4],[7,18],[93,201],[101,253],[31,59],[30,54],[104,221],[1,15],[2,29],[20,43],[11,17],[14,16],[11,5],[26,6],[14,5],[1,1],[8,11],[0,3],[1,21],[3,7],[35,39],[18,21],[27,34],[16,23],[5,9],[1,8],[-3,15],[-3,13],[2,7],[9,11],[10,12],[13,11],[15,12],[18,13],[64,44],[37,37],[42,35],[49,32],[23,8],[28,0],[39,-6],[25,-1],[17,1],[16,6],[42,18],[15,7],[13,5],[13,3],[72,13],[86,20],[1,-9],[5,-22],[9,-24],[13,-23],[17,-21],[19,-18],[7,-17],[4,-17],[1,-10],[0,-10],[-3,-18],[-12,-28],[-7,-30],[-2,-31],[2,-30],[8,-30],[12,-29],[16,-26],[8,-10],[20,-32],[17,-34],[14,-35],[12,-39],[1,-5],[1,-3],[-1,-3],[0,-3],[-3,-7],[-10,-21],[-6,-17],[77,6],[-2,20],[10,1],[1,-14],[75,6],[1,-13],[-28,-2],[1,-12],[-48,-4],[1,-13],[-11,-1],[-2,22],[-78,-6],[-11,-81],[76,4],[1,-10],[-76,-4],[4,-35],[8,-33],[13,-33],[16,-30],[20,-29],[17,-21],[13,-23],[10,-24],[4,-13],[3,-18],[-1,-18],[-2,-15],[1,-10],[2,-10],[4,-9],[5,-9],[7,-7],[9,-7],[9,-5],[25,-15],[6,-4],[5,-5],[7,-7],[6,-8],[4,-10],[3,-9],[0,-11],[2,-10],[3,-10],[5,-9],[0,0],[6,-8],[8,-7],[13,-7],[8,-7],[7,-7],[29,-23],[30,-22],[2,-2],[5,-5],[5,-5],[3,-6],[3,-7],[1,-6],[0,-7],[-2,-7],[-2,-6],[-1,-13],[2,-13],[4,-13],[5,-11],[8,-11],[16,-15],[16,-20],[11,-18],[8,-20],[5,-20],[6,-32],[3,-31],[-2,-32],[-6,-32],[-10,-31],[-11,-24],[-14,-24],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,0],[1,-1],[0,0],[1,-1],[1,0],[1,-1],[2,-1],[4,0],[17,-2],[7,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[0,0],[0,-1],[1,-1],[0,0],[0,-1],[-3,-21],[-13,-47],[-4,-22],[0,-12],[0,-39],[-1,-13],[-3,-10],[-3,-7],[-8,-12],[-2,-6],[-6,-15],[-4,-19],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[3,-1],[4,-2],[17,-5],[3,-1],[3,-2],[3,-2],[2,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-13],[-2,-14],[-5,-15],[-8,-19],[-26,-54],[-13,-29],[-7,-20],[-4,-18],[0,-9],[0,-8],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[3,-1],[4,-1],[16,-4],[6,-2],[3,-1],[3,-2],[1,-1],[1,0],[0,-1],[1,-1],[2,-4],[1,-5],[2,-15],[2,-5],[1,-5],[2,-2],[1,-2],[10,-11],[11,-12],[28,-25],[30,-24],[33,-23],[7,-3],[7,-4],[33,-11],[7,-4],[6,-3],[14,-11],[5,-5],[8,-7],[13,-15],[13,-16],[18,-27],[11,-32],[9,-169],[1,-19],[5,-48],[0,-6],[-1,-7],[-8,-30],[-1,-6],[-1,-6],[0,-5],[1,-3],[1,-2],[1,-3],[1,-2],[2,-1],[22,-31],[26,-29],[29,-25],[32,-22],[29,-11],[31,-7],[32,-4],[31,0],[22,-1],[22,-5],[21,-8],[19,-10],[17,-13],[16,-16],[11,-15],[9,-18],[7,-18],[18,-29],[2,-2],[2,-2],[5,-4],[6,-4],[6,-2],[7,-2],[7,-2],[7,0],[7,1],[16,3],[35,11],[15,4],[45,7],[36,2],[12,2],[15,0],[17,-1],[16,-3],[36,-6],[17,-3],[15,-1],[14,1],[26,3],[12,1],[70,10],[70,8],[53,5],[26,1],[48,-2],[19,0],[18,1],[17,3],[27,7],[69,19],[51,11],[22,7],[18,7],[19,11],[19,12],[35,27],[46,33],[27,21],[66,58],[64,55],[4,3],[7,6],[8,4],[9,4],[9,4],[10,2],[10,1],[10,1],[22,1],[22,-1],[22,-5],[21,-8],[19,-10],[23,-24],[26,-21],[30,-16],[32,-11],[33,-6],[34,-1],[13,-7],[12,-8],[10,-10],[8,-11],[10,-9],[11,-7],[13,-5],[13,-4],[14,0],[13,1],[45,-5],[45,0],[45,6],[44,10],[94,5],[77,0],[17,1],[17,1],[7,2],[7,2],[15,6],[14,8],[35,23],[20,12],[34,22],[10,7],[21,13],[9,4],[10,3],[11,2],[11,1],[12,0],[11,-1],[12,-3],[11,-3],[28,-13],[23,-11],[32,-17],[23,-11],[40,-17],[49,-19],[48,-19],[48,-21],[34,-17],[74,-41],[34,-18],[51,-24],[34,-15],[32,-13],[29,-10],[14,-4],[37,-5],[16,-4],[21,-8],[44,-21],[20,-8],[32,-11],[12,-2],[10,-2],[9,1],[4,0],[3,1],[3,2],[3,2],[3,2],[2,3],[7,10],[6,11],[14,38],[19,56],[5,16],[13,32],[0,2],[1,1],[3,4],[13,11],[3,2],[2,3],[13,19],[7,12],[2,6],[1,5],[0,3],[0,3],[-1,2],[0,2],[-1,3],[-1,2],[-3,4],[-4,4],[-4,3],[-10,6],[-27,12],[-16,8],[-39,18],[-18,10],[-4,3],[-3,2],[-6,7],[-7,8],[-17,26],[-6,8],[-4,3],[-3,2],[-15,10],[-16,8],[-16,6],[-16,4],[-49,8],[-22,3],[-20,2],[-13,-1],[-29,-2],[-14,0],[-7,1],[-8,2],[-33,11],[-8,2],[-7,2],[-28,2],[-52,3],[-7,0],[-26,2],[-28,3],[-13,1],[8,36],[-24,19],[-30,-11],[-17,25],[-6,7],[-4,4],[-5,3],[-5,3],[-7,2],[-15,2],[-18,1],[-53,-4],[-20,-3],[-7,-1],[-11,0],[-3,0],[-3,0],[-3,2],[-4,1],[-19,14],[-4,2],[-4,2],[-62,23],[-106,41],[-17,5],[-37,9],[-17,6],[-10,5],[-11,7],[-40,29],[-18,11],[-64,30],[-27,13],[-25,16],[-22,16],[-13,12],[-28,27],[-37,32],[-60,48],[-4,3],[-7,5],[-13,6],[-14,5],[-15,3],[-15,1],[-14,-1],[-13,-2],[-6,-2],[-6,-3],[-13,-8],[-14,-11],[-13,-14],[-27,-30],[-12,-12],[-14,-12],[-13,-9],[-17,-10],[-12,-7],[-19,-9],[-18,-6],[-9,-1],[-8,-1],[-22,2],[-22,4],[-24,8],[-24,11],[-19,12],[-17,13],[-14,15],[-12,16],[-6,11],[-6,13],[-10,27],[-9,32],[-7,40],[-2,13],[0,14],[4,47],[0,16],[-1,16],[-3,14],[-3,10],[-6,11],[-7,11],[-22,32],[-6,11],[-5,10],[-5,20],[-3,21],[-2,22],[0,24],[3,22],[6,23],[7,22],[18,52],[7,25],[5,22],[1,21],[-1,74],[-6,80],[-6,81],[-5,49],[-3,17],[-10,36],[-3,16],[0,4],[0,4],[2,9],[12,33],[3,8],[1,7],[0,14],[-1,15],[-10,68],[-1,17],[0,14],[2,39],[4,36],[6,34],[6,33],[30,124],[73,311],[14,45],[28,63],[80,187],[-3,36],[-6,34],[-17,23],[-29,20],[-13,33],[3,26],[2,41],[21,44],[15,42],[23,17],[20,-6],[14,-33],[23,-31],[21,11],[10,22],[12,26],[23,56],[26,52],[36,56],[30,107],[33,59],[42,100],[7,51],[20,50],[6,42],[23,58],[-34,24],[-30,27],[-27,31],[-23,33],[-19,35],[2,18],[5,18],[8,17],[11,15],[14,13],[15,10],[18,8],[18,5],[1,0],[7,1],[30,0],[8,1],[3,1],[4,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,0],[0,1],[0,0],[0,1],[0,0],[0,1],[-1,1],[-1,2],[-2,2],[-3,3],[-20,16],[-5,5],[-2,3],[-1,2],[-17,40],[-16,44],[-15,49],[-18,62],[-8,31],[-8,33],[-16,82],[-19,109],[-21,76],[-16,78],[-11,79],[-6,79],[0,79],[5,79],[12,38],[6,40],[1,39],[-5,40],[-10,39],[-16,36],[-21,35],[-12,31],[-7,31],[-1,33],[5,32],[10,31],[16,29],[20,27],[29,29],[32,26],[34,24],[36,20],[38,17],[8,1],[7,2],[7,4],[6,4],[5,5],[4,6],[3,7],[2,7],[0,7],[-1,8],[9,23],[12,22],[15,20],[18,18],[11,9],[10,11],[8,13],[5,13],[3,14],[1,14],[-1,14],[-4,14],[-6,13],[-9,12],[-11,40],[-7,42],[-2,42],[3,41],[7,42],[12,40],[32,52],[27,54],[23,56],[17,58],[13,58],[7,60],[2,60],[-3,60],[-8,59],[-13,59],[-18,57],[-23,70],[-19,71],[-14,72],[-9,73],[-5,74],[1,73],[-2,27],[2,28],[7,26],[10,26],[14,24],[18,21],[44,56],[41,58],[7,11],[6,13],[4,13],[1,14],[0,13],[-4,13],[-5,13],[-7,12],[-12,33],[-8,35],[-3,35],[2,36],[7,35],[11,34],[16,32],[20,30],[24,27],[27,24],[12,15],[24,37],[19,39],[15,41],[6,23],[11,22],[14,19],[18,18],[20,14],[23,10],[24,7],[25,3],[17,10],[15,12],[13,14],[10,16],[8,17],[4,18],[2,19],[-2,19],[-5,18],[17,20],[14,22],[9,24],[6,26],[0,26],[81,210],[1,20],[4,19],[8,19],[10,17],[7,11],[10,18],[6,19],[4,20],[0,21],[-4,20],[-6,19],[-11,20],[-12,50],[-8,51],[-23,62],[-18,51],[-13,31],[-13,29],[-13,25],[-6,11],[-7,10],[-18,20],[-22,20],[-30,24],[-28,20],[-67,45],[-31,23],[-21,18],[-44,41],[-19,16],[-36,28],[-34,24],[-32,21],[-32,18],[-6,3],[-78,42],[-80,38],[-81,35],[-8,4],[-9,3],[-9,1],[-9,0],[-9,-1],[-9,-3],[-8,-4],[-8,-5],[-6,-6],[-5,-9],[-7,-8],[-8,-7],[-10,-6],[-10,-4],[-11,-2],[-11,-1],[-11,1],[-7,1],[-8,0],[-8,-2],[-8,-3],[-6,-4],[-9,-3],[-10,-3],[-9,-2],[-10,0],[-10,2],[-11,6],[-12,8],[-11,10],[-14,18],[-28,43],[-8,10],[-8,8],[-14,12],[-17,12],[-21,11],[-26,11],[-33,15],[-23,7],[-21,5],[-9,1],[-10,0],[-4,0],[-3,-1],[-9,-3],[-25,-13],[-9,-4],[-8,-2],[-4,0],[-4,0],[-26,3],[-19,4],[-18,7],[-8,4],[-6,4],[-25,21],[-43,42],[-18,16],[-64,55],[0,1],[-57,50],[-88,78],[-57,52],[-17,20],[0,0],[-9,16],[-8,19],[-8,23],[-3,13],[-5,31],[-5,15],[-5,12],[-15,30],[-3,8],[-2,8],[-9,60],[-9,64],[-3,17],[-5,15],[-12,25],[-27,48],[-36,70],[-4,6],[-4,6],[-12,11],[-15,9],[-16,8],[-1,1],[-12,4],[-12,3],[-14,2],[-14,1],[-49,1],[-104,-29],[-103,-35],[-101,-39],[-98,-44],[-41,-14],[-40,-19],[-38,-21],[-35,-26],[-32,-28],[-30,-32],[-25,-34],[-1,-21],[0,-9],[1,-9],[5,-19],[8,-21],[13,-26],[23,-40],[54,-90],[24,-42],[22,-46],[20,-41],[50,-120],[19,-36],[39,-66],[14,-27],[14,-27],[9,-24],[7,-22],[4,-21],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-3,-3],[-3,-2],[-4,-2],[-5,-2],[-5,-1],[-11,-2],[-6,1],[-4,0],[-5,2],[-3,1],[-2,1],[-1,1],[-1,1],[-1,2],[-18,31],[-41,75],[-201,352],[-12,23],[-11,21],[-40,82],[-17,33],[-18,33],[-18,29],[-17,23],[-45,56],[-19,27],[-23,34],[-14,27],[-8,22],[-6,24],[-5,28],[-5,43],[-2,19],[0,21],[1,69],[0,25],[-2,23],[-2,21],[-6,26],[-14,58],[-5,24],[-19,122],[-15,80],[-4,30],[-3,12],[-2,5],[-2,6],[-3,4],[-3,4],[-3,2],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-2],[-3,-3],[-3,-3],[-9,-17],[-14,-37],[-6,-12],[-21,-42],[-18,-37],[-7,-18],[-16,-46],[-8,-20],[0,-1],[-1,-1],[0,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,1],[-2,1],[-5,3],[-2,1],[-2,2],[-1,1],[0,1],[-1,1],[0,1],[0,0],[0,1],[0,1],[6,26],[8,29],[11,32],[17,45],[7,17],[22,42],[5,13],[4,11],[2,13],[2,15],[1,51],[1,20],[12,86],[13,76],[5,24],[4,22],[12,50],[15,55],[20,74],[27,91],[13,38],[13,36],[18,45],[38,83],[14,34],[25,63],[42,121],[17,48],[20,49],[20,43],[9,18],[9,14],[16,15],[18,13],[21,10],[21,6],[23,4],[22,-1],[23,-4],[21,-7],[20,-10],[18,-14],[9,-16],[13,-14],[15,-13],[16,-9],[19,-7],[19,-4],[20,0],[19,2],[19,6],[150,76],[153,70],[156,66],[157,61],[52,16],[53,12],[54,7],[55,2],[55,-4],[54,-8],[53,-14],[19,-2],[19,1],[19,3],[18,7],[16,9],[15,12],[16,8],[17,5],[18,2],[18,0],[17,-4],[17,-7],[15,-9],[16,1],[16,4],[15,5],[14,8],[23,12],[25,9],[26,5],[26,2],[26,-2],[155,13],[119,14],[57,0],[23,-1],[26,-2],[104,-12],[129,-10],[8,-1],[7,-1],[17,-6],[15,-6],[35,-17],[16,-7],[14,-4],[14,-2],[23,-1],[24,0],[25,2],[26,3],[27,4],[28,5],[30,6],[33,9],[48,13],[35,10],[31,10],[28,10],[178,74],[75,30],[29,10],[27,8],[10,3],[11,1],[11,0],[13,-1],[24,-5],[47,-13],[20,-5],[20,-2],[18,-1],[36,4],[82,15],[20,2],[18,1],[31,-1],[76,-6],[21,0],[19,1],[25,3],[9,2],[17,2],[56,12],[32,8],[70,21],[31,7],[33,6],[35,5],[37,3],[37,1],[26,-1],[26,-2],[25,-3],[25,-5],[59,-24],[20,-4]],[[291602,93959],[38,-6],[29,5],[17,2],[38,0],[43,0],[10,-19],[4,-32],[-34,-24],[-19,-23],[27,-21],[80,-17],[33,-32],[6,-46],[-26,-30],[-42,-47],[2,-37],[32,-27],[50,-17],[16,-59],[-3,-54],[-24,-34],[-1,-4],[-21,-53],[-33,-15],[-13,-64],[-3,-34],[-5,-47],[50,-81],[69,-52],[52,-51],[24,-94],[-4,-25],[-3,-22],[22,-27],[34,-21],[8,-5],[54,-49],[41,-33],[-1,-48],[-3,-78],[55,-98],[68,-12],[27,-9],[3,0],[0,-3],[10,-69],[56,-18],[13,-5],[54,-25],[69,-102],[35,-96],[7,-64],[25,-30],[78,11],[69,37],[5,2],[139,-10],[117,-32],[48,-17],[66,-42],[45,-51],[2,-8],[16,-64],[-22,-86],[14,-57],[51,-2],[50,23],[50,-12],[34,-21],[11,-36],[54,-45],[14,32],[-7,58],[23,27],[20,4],[58,-21],[47,-55],[36,-19],[54,-27],[12,-28],[21,-49],[16,-42],[86,-4],[35,-4],[10,-1],[32,-23],[8,-15],[-6,-20],[-6,-20],[18,-15],[12,2],[30,5],[47,-15],[80,-96],[40,-29],[-11,-120],[4,-57],[24,-51],[26,-64],[-22,-23],[-4,-6],[7,-41],[28,-70],[-88,-58],[-75,9],[-110,27],[2,-13],[16,-81],[50,-48],[24,-22],[49,-42],[24,-70],[-14,-28],[-52,-15],[-42,13],[-63,0],[-20,-34],[-2,-68],[-16,-47],[-36,-9],[11,-60],[-73,-55],[-138,-28],[-109,-75],[-122,-177],[-213,-179],[-46,11],[2,-17],[-140,-113],[-69,10],[-36,19],[-58,-36],[-22,-66],[-4,-39],[-24,-68],[-40,-49],[-84,0],[-42,-21],[-47,-56],[-32,-15],[-64,-15],[-42,-68],[-16,-38],[-100,-39],[-29,47],[-42,68],[-71,13],[-173,-77],[-91,-40],[-65,-29],[-72,79],[2,5],[4,22],[-37,24],[-54,-1],[-20,-21],[-8,-45],[-52,-2],[-73,0],[-22,-23],[-38,-37],[-12,-40],[20,-34],[-6,-55],[-3,-30],[-56,-88],[-29,-36],[-9,-53],[-139,-156],[-38,-8],[-18,-32],[-148,-130],[-272,-63],[-156,-179],[-220,84],[-13,5],[-159,-90],[-60,-17],[-10,-23],[12,-41],[-20,-51],[-1,-25],[-1,-28],[20,-43],[-38,-47],[-96,-46],[-99,-13],[-12,29],[-12,26],[-58,38],[-81,-32],[-46,-30],[4,-6],[20,-28],[10,-36],[-237,-52],[-32,38],[-20,-8],[-22,-41],[-6,-44],[-104,-24],[-35,78],[-40,-27],[-34,-75],[4,-44],[0,-56],[-38,-55],[-16,-43],[23,-51],[-2,-25],[-27,4],[-22,-2],[-16,-22],[-44,-48],[-24,3],[-10,1],[-56,-1],[-10,-51],[-8,-57],[-4,-23],[10,-52],[42,-46],[9,-26],[-93,-49],[-72,-17],[-64,-5],[-2,-1],[-55,14],[-36,-32],[-42,-27],[-26,-16],[-123,-21],[-66,-32],[-20,-26],[-8,-25],[-42,-20],[-28,-23],[10,-43],[52,-23],[0,-68],[-40,-43],[-60,-53],[-72,-34],[-4,-1],[-63,-8],[-46,-38],[-6,-36],[0,-5],[7,-80],[56,-41],[-102,-104],[-106,15],[-3,0],[-34,-24],[-50,-40],[-6,-35],[6,-57],[10,-40],[-32,-43],[2,-28],[8,-68],[-22,2],[-46,-14],[-2,34],[-36,18],[-87,4],[-94,-12],[-32,-49],[-1,-9],[-3,-40],[-48,34],[-3,6],[-52,80],[-22,33],[55,266],[0,1],[63,56],[76,7],[80,11],[26,50],[26,49],[-62,73],[-58,48],[-41,9],[-54,42],[-34,77],[42,63],[0,123],[-40,51],[-30,114],[-176,378],[-76,124],[13,50],[83,-19],[201,-76],[173,-77],[144,16],[170,-42],[117,63],[144,-19],[90,69],[57,48],[10,35],[37,6],[27,35],[36,-45],[17,-44],[30,69],[57,32],[74,60],[-60,159],[-99,348],[-60,219],[-83,149],[-30,143],[-60,176],[67,148],[90,147],[75,9],[45,42],[-22,93],[99,274],[125,156],[361,185],[245,122],[161,63],[164,-38],[116,-68],[63,51],[115,12],[134,76],[103,122],[187,152],[277,164],[228,147],[159,9],[101,56],[67,434],[150,659],[77,61],[18,152],[19,226],[-154,276],[-177,215],[12,321],[131,16],[-11,186],[-231,474],[-94,237],[-243,367],[-35,270],[78,231],[173,281],[143,73],[220,39],[33,111],[85,-74],[-28,-117],[-32,-127],[19,-145],[-10,-128],[-30,-46],[16,-71],[18,-42],[-11,-126],[4,-55],[10,-76],[-6,-85],[59,-109],[111,-74],[64,-57],[8,-70],[-5,-86],[-4,-13],[-18,-46],[0,-32],[16,-26]],[[302799,91592],[-957,-26],[-3545,868],[3247,3776],[789,-300],[459,-4246],[7,-72]],[[261354,97522],[59,-25],[105,-8],[43,31],[43,39],[51,38],[32,47],[18,87],[-10,72],[27,43],[-1,34],[-28,31],[-38,71],[-2,51],[-32,46],[-23,24],[12,23],[38,25],[61,39],[26,44],[-4,44],[-17,28],[5,27],[20,26],[9,19],[13,5],[11,13],[5,13],[5,7],[1,13],[4,11],[18,3],[19,-1],[23,2],[19,1],[23,-1],[10,-8],[3,-10],[13,-6],[5,12],[0,15],[-3,19],[-5,17],[-3,9],[2,8],[10,3],[14,12],[5,14],[-7,9],[-8,9],[-5,15],[-1,10],[-8,10],[-2,12],[2,9],[0,11],[-9,1],[-10,2],[-11,6],[-3,-5],[6,-12],[0,-13],[-4,-8],[-4,-8],[17,-10],[-5,-12],[-4,-17],[1,-16],[-8,-15],[-7,-14],[-13,-15],[-10,-9],[-10,-10],[-15,2],[-11,1],[-16,4],[-15,-1],[-7,-8],[-12,-5],[-8,-18],[-10,-10],[-16,5],[-10,-4],[0,-10],[-8,-13],[0,-10],[1,-8],[9,-3],[-3,-8],[-4,-9],[-11,-3],[-14,7],[-12,8],[-8,14],[-12,-5],[-19,5],[-12,9],[-7,14],[-5,16],[-11,8],[6,15],[-1,10],[-11,3],[-16,4],[5,-22],[-1,-16],[-13,-12],[-4,-12],[-1,-17],[-5,-14],[-12,-13],[-10,1],[-2,-10],[13,-9],[6,-13],[11,-7],[9,-9],[-8,-14],[-19,-7],[-20,-7],[-10,-16],[-14,-12],[-18,-9],[-14,2],[-8,12],[-16,5],[-15,2],[-20,3],[-13,7],[-17,7]],[[261393,98550],[80,30],[24,23],[0,21],[4,19],[20,5],[20,4],[36,16],[43,24],[1,21],[-1,25],[21,13],[20,-4],[17,-6],[73,-8],[60,12],[47,13],[67,17],[24,38],[15,10],[21,3],[20,17],[35,26],[25,24],[39,30],[19,17],[24,41],[11,37],[25,52],[24,39],[28,18],[27,6],[28,4],[32,-2],[25,-12],[16,-18],[20,-28],[16,-25],[25,-20],[28,-24],[21,-22],[14,-21],[5,-58],[-1,-27],[3,-36],[-26,-28],[-27,-13],[-26,-16],[0,-52],[-55,-123],[-31,-52],[-32,-39],[-35,-37],[-76,-89],[-46,-181],[-99,-378],[61,-66],[-51,-3],[-34,15],[-33,-4],[-9,-24],[10,-29],[-42,-15],[-49,-14],[-22,-21],[-3,-26],[-42,-52],[-36,-51],[-26,-34],[-27,-43],[-23,-39],[-35,-53],[-11,-52],[-14,-48],[-1,-32],[11,-75],[1,-37],[8,-45],[-6,-43],[-23,14],[-26,21],[-34,-10],[9,-28],[26,-39],[-1,-19],[29,4],[19,15],[11,16],[30,-28],[3,-42],[-10,-29],[-12,-37],[-2,-33],[-14,-39],[-22,-27],[-34,-24],[-43,-22],[-35,-21],[-45,-30],[-40,-24],[-45,-29],[-92,-54]],[[283520,101228],[-2,-305],[241,75],[1106,-769],[-2200,-1564],[1382,601],[1825,594],[253,-369],[-2764,-1614],[-879,-1455],[-254,-2005],[-1118,1073],[472,-1692],[-196,-1459],[-882,-1773],[-430,-315],[-1047,201],[260,670],[-60,1156],[-611,689],[58,698],[-1228,2775],[222,360],[-252,471],[436,1230],[876,846],[253,-242],[1517,986],[123,304],[1489,461],[-506,461],[1916,-89]],[[274082,102656],[-280,-1508],[582,822],[799,-2828],[-38,-1362],[-307,-647],[-154,-769],[239,-306],[-3,-470],[133,-229],[254,-1455],[529,-1097],[-408,-207],[-686,741],[-66,575],[-476,760],[-509,1909],[-490,777],[193,1002],[-618,809],[-586,466],[-411,771],[1832,-325],[3,161],[-1512,779],[-582,1511],[-60,1169],[579,579],[807,-161],[713,-299],[523,-1168]],[[261305,96270],[58,47],[10,27],[27,16],[25,6],[31,14],[24,15],[21,13],[31,17],[43,15],[44,14],[23,9],[28,-3],[38,26],[35,32],[23,41],[52,30],[30,28],[16,15],[19,23],[2,43],[22,29],[35,31],[16,29],[19,18],[17,21],[26,40],[20,7],[15,-5],[25,-6],[42,9],[32,-5],[19,-7],[29,-6],[50,22],[24,16],[21,17],[21,4],[22,-4],[42,22],[35,6],[41,7],[25,18],[27,21],[21,21],[17,11],[22,14],[13,20],[6,13],[14,15],[11,7],[-14,11],[-20,1],[-25,8],[-27,-6],[-33,-3],[-32,-21],[-28,-9],[-29,-25],[-34,-14],[-20,-4],[-12,-10],[-16,-16],[-23,-10],[-28,-4],[-23,-5],[-21,-12],[-28,-7],[-34,4],[-30,9],[-25,8],[-30,20],[-23,-12],[-24,-4],[-28,0],[0,-19],[-22,-14],[-21,-2],[-24,5],[-22,30],[-8,30],[2,29],[-13,28],[-12,33],[-35,23],[-31,32],[-10,19],[-3,30],[1,26],[3,25],[10,31],[10,25],[17,12],[24,8],[26,1],[7,12],[0,25],[6,27],[0,25],[-18,10],[-5,22],[12,18],[26,-3],[19,8],[1,19],[18,17],[9,27],[4,20],[16,22],[20,3],[5,-19],[1,-20],[23,-9],[23,-3],[3,18],[-12,22],[-13,20],[13,17],[35,16],[20,6],[25,-2],[23,10],[21,2],[16,-5],[37,-13],[54,-16],[48,-38],[49,-28],[37,-31],[52,-29],[43,-8],[38,-11],[24,-24],[45,-23],[34,-11],[38,-20],[32,-18],[28,10],[14,41],[30,58],[22,41],[52,31],[37,24],[11,36],[4,17],[5,17],[38,12],[70,-14],[49,-30],[88,-72],[53,-67],[23,-34],[25,-56],[-3,-36],[-1,-17],[33,-9],[52,38],[-23,53],[27,55],[55,31],[37,0],[15,60],[-9,77],[9,70],[-2,47],[29,56],[32,45],[24,9],[2,64],[-6,50],[-47,52],[-47,61],[17,47],[37,30],[32,-7],[20,-11],[14,37],[-7,72],[6,43],[33,30],[19,42],[17,-23],[4,-52],[-14,-56],[8,-55],[39,-51],[10,71],[-2,44],[26,39],[16,50],[30,13],[37,-21],[-11,38],[66,20],[41,15],[29,12],[29,34],[3,32],[0,33],[53,26],[14,46],[15,34],[24,59],[4,37],[38,37],[-2,53],[-44,-1],[-27,17],[-35,-24],[0,-43],[-51,-4],[-40,15],[-42,0],[-53,-19],[-36,-35],[-43,-19],[-21,-61],[-12,-22],[-20,-60],[-24,-39],[-36,-31],[-46,-26],[-20,6],[-21,6],[2,-21],[-11,-56],[-2,-45],[-11,-23],[-16,-8],[-13,-27],[0,-30],[6,-46],[-23,-24],[-17,-18],[-21,-27],[-21,-34],[-3,-30],[1,-46],[-15,-29],[-15,-21],[-14,7],[-4,-17],[1,-20],[-24,-27],[-5,-31],[10,-29],[0,-23],[-17,-18],[-19,-32],[-8,-34],[-16,-33],[4,-32],[24,-6],[22,4],[31,14],[38,1],[1,-35],[0,-27],[-17,-26],[-9,-20],[-13,-28],[-13,-25],[-39,8],[-31,0],[-29,22],[-27,36],[-44,32],[-40,24],[-31,13],[-33,23],[-13,19],[6,16],[23,5],[0,30],[-22,27],[-6,25],[-1,46],[29,16],[27,15],[36,15],[20,22],[27,20],[15,38],[15,28],[6,33],[-17,35],[-26,38],[-14,45],[-16,26],[3,23],[22,34],[6,31],[3,27],[-6,30],[-22,25],[-2,28],[7,25],[29,14],[45,18],[41,30],[-2,27],[-13,14],[-14,21],[2,27],[34,26],[17,31],[6,22],[-37,-24],[-43,-15],[-5,-38],[-5,-39],[20,-21],[12,-24],[-20,-13],[-38,6],[-29,-22],[-16,-35],[-10,-41],[-19,-36],[9,-30],[18,-23],[18,-17],[-18,-43],[-11,-27],[7,-48],[18,-25],[30,-56],[9,-31],[-9,-23],[-16,-33],[-31,-39],[-40,-12],[-37,0],[-45,0],[-31,-7],[-22,-34],[-17,-39],[-17,-45],[-18,-47],[-58,-29],[-50,-8],[-43,-1],[-49,-1],[-70,0],[-33,24],[-13,27],[-20,19],[-3,28],[-20,27],[-27,12],[-24,-1],[-24,17],[-7,30],[-23,42],[-22,15],[-30,4],[-17,-27],[7,-34],[19,-30],[21,13],[36,-37],[21,-26],[25,-9],[30,-21],[21,-28],[-24,-19],[-23,-27],[-45,36],[-47,32],[-37,27],[-30,32],[-19,12],[-22,14],[-20,27],[-23,51],[-9,42],[-5,57],[97,137],[38,45],[44,89],[15,43],[46,53],[68,65],[41,103],[28,75],[70,52],[80,64],[79,69],[39,54],[36,60],[57,71],[5,68],[36,65],[-9,41],[-4,21],[-34,43],[-107,20],[-57,26],[-65,47],[43,71],[64,86],[56,-15],[39,-2],[57,19],[57,37],[40,34],[7,43],[-6,58],[-37,17],[-36,0],[-29,18],[-12,36],[12,50],[25,39],[23,38],[36,32],[39,41],[34,20],[16,66],[7,50],[7,45],[2,120],[-16,80],[-18,86],[-36,84],[-6,63],[0,66],[-12,65],[-33,45],[-57,37],[-73,26],[-56,19],[-43,2],[-46,22],[-50,32],[-47,22],[-75,45],[-39,18],[-38,25],[-64,-14],[-75,-39],[-79,-13],[-50,-32],[-48,-28],[-52,20],[-25,64],[-4,84],[7,80],[41,2],[25,28],[0,34],[-27,41],[-39,15],[-52,-10],[-18,28],[-32,38],[-7,43],[12,58],[20,43],[10,59],[7,58],[18,51],[23,65],[16,49],[9,48],[45,25],[55,-24],[49,-25],[66,-3],[57,20],[45,36],[48,58],[14,32],[14,43],[38,35],[7,28],[9,41],[5,47],[-9,56],[-14,54],[-13,53],[-34,26],[-25,33],[-38,30],[-64,11],[54,-43],[5,-43],[32,-35],[4,-37],[14,-60],[43,-58],[-14,-56],[-18,-60],[-46,-13],[-57,-8],[-7,-35],[32,-49],[-48,-46],[-63,-10],[-55,32],[-18,60],[-20,20],[-16,-43],[-68,-2],[-54,13],[-59,2],[-53,2],[-52,-6],[9,-45],[-4,-39],[-30,-2],[-29,37],[-39,-15],[-23,-41],[-41,-75],[-27,-39],[-55,-47],[-27,17],[3,56],[9,60],[2,50],[9,36],[-14,44],[109,113],[0,62],[-7,80],[-6,55],[-6,185],[130,86],[14,7],[188,91],[104,185],[143,209],[46,289],[33,228],[-39,192],[115,531],[29,127],[35,127],[40,124],[45,123],[51,121],[56,119],[61,117],[16,71],[12,73],[7,72],[1,73],[-3,73],[-9,73],[-13,71],[-19,71],[-23,70],[-23,156],[-28,156],[-136,174],[-82,104],[-158,199],[17,262],[3,52],[-32,258],[-101,113],[-119,134],[-110,216],[20,166],[-110,412],[-168,462],[-116,395],[-193,818],[283,248],[31,31],[54,14],[369,36],[1757,-1429],[441,-355],[360,-566],[633,-53],[254,0],[89,-21],[91,-15],[92,-10],[92,-5],[93,2],[92,6],[92,13],[90,17],[89,23],[88,29],[85,33],[83,39],[80,43],[77,49],[74,52],[70,57],[183,1983],[-271,436],[235,463],[506,-745],[375,-2630],[75,-160],[70,-163],[64,-164],[60,-166],[54,-167],[50,-170],[44,-170],[38,-171],[34,-173],[28,-173],[23,-174],[17,-175],[12,-175],[7,-175],[1,-175],[-4,-176],[478,-1778],[161,-265],[138,-359],[228,-371],[86,-140],[54,-162],[54,-162],[109,-99],[158,-65],[938,-403],[-26,-485],[191,-397],[367,-445],[614,-601],[17,-223],[-344,-296],[-54,-47],[-758,171],[-597,-773],[15,-356],[686,-533],[-1,-240],[506,-104],[37,292],[235,102],[506,-395],[87,-582],[88,-477],[-594,-381],[-269,-124],[-220,-150],[-164,-274],[-1,-617],[-124,-385],[-79,-85],[11,-150],[95,-249],[53,-453],[216,-427],[31,-432],[367,-258],[-18,-51],[-12,-53],[-8,-53],[-1,-53],[3,-53],[9,-53],[14,-52],[19,-50],[24,-49],[29,-46],[122,-39],[57,10],[98,33],[97,37],[80,6],[92,-28],[103,54],[91,44],[103,37],[69,-16],[149,27],[80,103],[92,92],[143,-35],[80,-112],[-6,-71],[-27,-77],[-19,-58],[-155,-146],[-166,-98],[-115,28],[1,124],[6,98],[-115,6],[-194,-103],[-86,-103],[85,-87],[-6,-76],[109,-109],[120,-81],[76,-163],[49,-136],[-35,-49],[-13,-13],[-101,-106],[-126,6],[-29,65],[6,103],[-28,38],[-92,71],[-85,-11],[-69,-43],[-40,-136],[-63,-59],[-63,-6],[-105,-54],[70,-141],[11,-304],[45,-152],[57,-114],[-17,-103],[22,-109],[23,-108],[51,-109],[61,-207],[25,-256],[-2,-147],[120,-222],[86,89],[140,173],[119,73],[145,89],[68,95],[3,-249],[-439,-708],[112,-358],[67,-229],[91,-157],[11,-169],[-6,-130],[-40,-174],[-23,-168],[-84,-150],[23,-143],[-61,-249],[-89,-173],[-14,-33],[-70,-86],[-170,-185],[-78,-180],[19,-5],[7,-1],[110,-29],[3,12],[35,-6],[-42,-204],[-34,8],[36,180],[-113,25],[-12,-66],[-25,14],[-25,-4],[-29,-19],[-65,-61],[-30,-52],[-1,-39],[30,-4],[-6,-50],[17,-10],[15,0],[0,-30],[18,2],[1,-74],[-33,-2],[-27,-149],[-67,8],[-206,-401],[-598,-51],[55,-734],[30,-205],[-188,-890],[-101,-432],[-366,-683],[-71,-968],[-40,-535],[-311,-869],[-179,-565],[-281,-10],[-261,-496],[-41,-55],[-37,-58],[-33,-60],[-29,-62],[-25,-64],[-21,-65],[-17,-65],[-15,-46],[-10,-46],[-5,-47],[0,-48],[5,-47],[10,-46],[16,-45],[20,-44],[0,0],[5,-23],[1,-23],[-3,-24],[-7,-22],[-11,-21],[-15,-19],[-59,-50],[-12,-74],[-2,-119],[-25,-62],[-9,-59],[-25,-19],[-53,-14],[-82,-34],[-95,-139],[-73,-114],[-96,-69],[-194,46],[-350,81],[-253,35],[-229,-11],[-411,12],[-169,24],[-528,115],[-528,-91],[-152,-79],[-217,69],[-495,-34],[-580,-56],[-229,-34],[-254,1],[-229,11],[-145,-68],[-218,-57],[-471,-45],[-541,34],[-654,-9],[-398,150],[-471,104],[-521,170],[-118,289],[97,275],[43,75],[102,177],[37,183],[121,149],[205,103],[218,148],[97,195],[278,171],[109,46],[217,68],[146,57],[-151,96],[528,114],[174,-46],[112,-77],[76,-112],[122,-155],[81,-9],[82,48],[-5,96],[72,87],[76,48],[133,10],[122,48],[61,92],[87,72],[82,39],[81,-44],[51,-73],[35,-121],[72,-48],[112,0],[107,0],[106,-63],[153,-30],[163,29],[72,101],[61,87],[0,58],[133,97],[127,62],[128,97],[56,77],[21,68],[-46,72],[42,58],[15,-7],[17,-5],[17,-2],[18,0],[17,3],[16,6],[15,8],[14,10],[11,12],[10,14],[7,15],[4,16],[1,17],[49,60],[52,57],[56,54],[58,51],[62,47],[65,44],[11,36],[16,35],[19,32],[24,30],[27,27],[15,15],[18,12],[19,9],[21,6],[22,2],[21,-1],[22,-4],[20,-8],[18,-11],[-18,-40],[-13,-42],[-8,-43],[-4,-43],[1,-44],[6,-43],[11,-42],[16,-41],[20,-39],[24,-37],[19,-59],[23,-57],[28,-55],[32,-53],[37,-50],[40,-48],[44,-44],[48,-42],[51,-37],[53,-34],[33,-28],[35,-24],[39,-21],[40,-16],[42,-13],[43,-8],[43,-4],[55,11],[53,16],[52,21],[38,26],[34,30],[31,34],[27,36],[23,39],[17,42],[13,43],[96,183],[47,91],[-63,10],[-25,6],[-52,12],[-53,10],[-48,7],[-109,13],[-9,-30],[-47,-146],[-2,-6],[-1,-4],[-11,-34],[-2,-3],[-8,-25],[-7,-22],[-13,-37],[-8,-25],[-4,-14],[-2,-4],[-7,-22],[-6,-19],[-9,-35],[-3,1],[-1,-8],[-14,1],[2,4],[13,40],[1,3],[8,26],[11,34],[7,20],[1,4],[12,35],[1,3],[1,3],[12,39],[1,5],[11,34],[1,5],[11,33],[1,4],[10,34],[1,3],[11,35],[1,4],[11,34],[1,3],[11,35],[1,4],[24,76],[1,4],[10,31],[-27,6],[3,8],[31,-7],[12,-3],[41,-14],[-2,-8],[-45,15],[-22,-76],[-9,-33],[95,-12],[5,-1],[10,-1],[70,-11],[33,-6],[28,-7],[31,-6],[5,11],[-24,55],[-68,62],[20,107],[12,66],[32,-11],[27,6],[36,106],[136,325],[17,145],[92,-3],[275,-45],[4,54],[-4,1],[0,11],[-7,0],[3,16],[39,-3],[-1,-18],[-9,0],[-1,-11],[-8,-1],[-3,-50],[75,-35],[17,91],[-23,1],[1,14],[69,-5],[-5,-17],[-26,3],[-16,-91],[265,-29],[11,41],[123,-15],[44,-19],[80,-25],[11,-15],[9,-8],[9,-9],[104,-17],[24,8],[64,39],[51,41],[20,30],[61,18],[74,12],[0,24],[-4,20],[-70,9],[-88,11],[7,38],[-387,42],[1,35],[-88,8],[-5,-27],[-70,10],[-2,-21],[-333,41],[-4,14],[-96,9],[-6,-27],[-692,85],[18,190],[-28,159],[92,-9],[4,51],[98,31],[93,85],[40,80],[26,110],[57,73],[52,38],[63,66],[58,52],[27,69],[8,95],[-40,71],[-41,69],[-24,71],[28,185],[213,19],[115,37],[33,57],[31,127],[13,166],[16,82],[8,45],[-10,31],[14,215],[45,534],[25,176],[-9,256],[-20,35],[-55,82],[35,96],[18,100],[29,3],[34,4],[27,28],[48,81],[30,73],[8,41],[-14,95],[12,54],[42,71],[-10,45],[-72,79],[-58,40],[-54,38],[-77,50],[147,206],[191,270],[70,-38],[5,3],[77,37],[233,192],[38,76],[97,71],[158,71],[40,71],[-37,38],[55,80],[-12,24],[71,79],[114,200],[3,50],[-11,58],[28,45],[347,568],[165,268],[3,78],[28,154],[25,85],[-20,64],[-4,89],[-1,20],[108,212],[118,497],[-207,406],[-311,654],[-40,74],[54,28],[-1,62],[-43,51],[-45,77],[-71,20],[-44,22],[-38,-5],[-35,-18],[-45,-114],[-18,-86],[-39,-35],[-25,-43],[34,-67],[9,-34],[16,-56],[-73,-202],[-27,-29],[-37,-24],[-32,-43],[-13,-57],[-1,-105],[49,-155],[88,-102],[171,-100],[99,-80],[49,-76],[38,-160],[-24,-98],[-20,-112],[-47,-73],[-73,-186],[-29,-133],[-37,-163],[-179,-131],[-32,-130],[-81,-161],[-33,-107],[-144,-50],[-90,104],[5,8],[43,69],[-56,107],[-32,85],[81,130],[16,76],[-80,131],[-32,230],[-8,131],[-145,222],[-145,100],[-130,-46],[-121,77],[-97,7],[-187,463],[-94,168],[-49,61],[-64,69],[-183,135],[-91,326],[-40,161],[-40,146],[-89,146],[-48,61],[-41,-31],[16,-84],[-54,-76],[-83,46],[-57,15],[-40,100],[81,276],[-48,130],[-137,146],[-186,177],[-31,207],[-89,92],[-97,192],[-121,46],[-113,-22],[-97,-61],[-65,-62],[0,-84],[-97,-83],[-170,-32],[-64,-62],[-190,-208],[-70,-13],[-65,0],[-73,31],[-61,103],[-3,5],[-65,84],[-55,-33],[-34,-20],[-92,76],[109,138],[73,46],[162,46],[48,54],[-161,107],[-146,23],[-210,-22],[-234,8],[-340,108],[-202,123],[-193,100],[-283,123],[-277,99],[-232,56],[-348,0],[-137,-38],[-202,-45],[-267,-146],[-527,-166],[-438,-87]],[[244404,122662],[27,9],[29,4],[29,0],[28,-3],[28,-8],[26,-11],[164,-101],[93,-109],[29,-32],[4,-4],[4,-5],[20,-25],[33,-36],[227,-244],[23,-287],[166,-133],[48,-52],[0,-5],[-21,-170],[63,-59],[58,-236],[76,-63],[50,-50],[24,-80],[16,-254],[181,-145],[87,-97],[108,-136],[200,-295],[69,-98],[65,-90],[53,-53],[137,-85],[129,-110],[11,-133],[71,-145],[100,-141],[41,-82],[-20,-17],[-23,-14],[-25,-10],[-26,-6],[-22,-23],[-18,-26],[-14,-28],[-8,-30],[-3,-31],[2,-31],[1,-2],[1,-2],[1,-3],[0,-2],[-1,-2],[0,-3],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-3,-1]],[[263395,122603],[-31,-4],[-22,23],[1,45],[7,32],[26,50],[17,37],[40,45],[47,39],[40,24],[76,32],[48,-7],[22,-15],[-35,-76],[-60,-58],[-176,-167]],[[237044,223483],[27,-16],[4,7],[30,-17],[-22,-30],[-27,18],[8,13],[-28,15]],[[205341,168076],[232,-22],[-40,99],[-188,508],[-44,206],[15,33],[22,29],[55,61],[48,57],[51,54],[31,30],[59,43],[44,19],[24,11],[9,6],[7,6],[4,11],[0,0],[1,9],[454,142],[287,213],[1045,-234],[45,152],[1,1],[0,15],[-1,10],[-2,11],[-4,7],[-16,6],[-303,82],[-113,30],[-81,22],[-181,50],[-12,3],[-279,70],[-42,11],[-28,77],[-28,85],[-14,41],[-5,17],[4,2],[-39,101],[-43,116],[-22,51],[-48,113],[-49,114],[-73,171],[-163,175],[-113,127],[-115,132],[-25,25],[1,5],[14,9],[0,7],[-4,7],[-6,9],[-6,10],[-6,10],[-4,6],[-6,9],[-7,9],[-6,9],[-5,10],[-5,10],[-5,11],[-3,8],[-4,8],[-3,9],[-3,10],[-3,8],[-2,9],[-3,11],[-2,10],[-2,12],[-2,12],[-2,14],[-3,13],[-2,13],[-4,14],[-4,15],[-4,16],[-4,15],[-4,11],[-4,9],[-3,10],[-4,9],[-4,12],[-4,9],[-4,8],[-4,9],[-5,10],[-4,9],[-3,6],[-4,9],[-5,9],[-4,9],[-6,10],[-4,11],[-4,10],[-3,7],[-5,8],[-6,9],[-7,11],[-10,9],[-7,8],[-8,11],[-10,15],[-8,13],[-5,11],[-6,13],[-4,12],[-5,8],[-4,10],[-3,9],[-6,10],[-3,9],[-6,10],[-4,8],[-4,7],[-5,8],[-5,9],[-4,11],[-3,13],[-1,11],[-2,9],[-1,10],[0,9],[-2,11],[-1,8],[0,11],[-2,10],[-3,10],[-3,12],[-1,13],[-1,13],[-1,13],[0,14],[0,14],[-1,17],[0,13],[-1,6],[0,13],[0,12],[1,13],[0,15],[0,15],[-1,16],[-1,16],[1,14],[0,14],[1,13],[1,11],[1,9],[0,9],[0,11],[-1,11],[0,13],[0,12],[0,10],[0,10],[1,11],[0,9],[1,11],[1,11],[0,10],[1,11],[1,13],[1,13],[2,13],[0,12],[1,9],[0,12],[2,12],[2,10],[2,3],[11,7],[9,4],[11,6],[9,6],[8,6],[10,8],[8,9],[2,7],[-4,6],[-7,9],[-5,11],[-5,9],[-3,9],[-2,11],[1,8],[2,9],[3,13],[3,9],[3,10],[3,11],[2,7],[3,12],[2,9],[3,10],[1,9],[1,10],[1,13],[-2,12],[-3,11],[-4,12],[-3,10],[-3,9],[-4,8],[-5,7],[-5,8],[-6,12],[-4,9],[-4,10],[-4,8],[-5,11],[-4,11],[-4,9],[-4,12],[-3,10],[-4,10],[-4,10],[-4,11],[-6,15],[-2,4],[-3,9],[-3,10],[-3,11],[-3,11],[-4,12],[-3,13],[-3,11],[-3,9],[-2,8],[-4,9],[-3,9],[-4,10],[-3,10],[-2,10],[-3,10],[-4,11],[-3,13],[-2,8],[-3,9],[-4,9],[-4,10],[-5,11],[-7,11],[-8,11],[-6,8],[-8,10],[-8,11],[-6,8],[-5,6],[-7,8],[-6,7],[-7,10],[-5,8],[-5,9],[-3,9],[-4,12],[-1,11],[0,9],[2,7],[2,9],[1,9],[3,10],[3,10],[4,9],[-2,8],[-4,11],[-2,11],[4,6],[8,10],[6,7],[4,14],[3,16],[1,9],[2,9],[3,16],[1,13],[0,10],[-1,9],[-1,12],[-1,12],[-1,12],[-5,12],[-5,14],[-5,12],[-4,10],[-4,9],[-4,11],[-3,9],[-5,10],[-3,9],[-1,11],[1,12],[1,8],[-1,8],[-2,12],[-4,12],[-6,10],[-10,11],[-10,11],[-9,7],[-8,6],[-9,10],[-8,9],[-5,8],[-8,12],[-9,8],[-10,7],[-10,9],[-10,8],[-9,8],[-10,9],[-12,12],[-11,11],[-9,12],[-10,11],[-10,14],[-5,7],[-6,13],[-2,10],[-2,9],[0,9],[0,13],[-4,10],[-6,9],[-6,8],[-7,7],[-9,8],[-6,5],[-7,10],[-6,7],[-12,11],[-14,8],[-15,6],[-14,5],[-16,5],[-12,5],[-10,4],[-9,4],[-9,4],[-8,3],[-10,6],[-10,4],[-7,5],[-10,10],[-9,11],[-9,11],[-6,10],[-4,9],[-5,9],[-4,10],[-5,10],[-6,11],[-6,11],[-4,7],[-6,10],[-6,11],[-5,9],[-6,11],[-9,13],[-4,7],[-5,7],[-8,14],[-7,11],[-5,8],[-7,11],[-5,9],[-7,11],[-4,8],[-5,8],[-4,8],[0,2],[-3,10],[-3,10],[-2,12],[2,11],[3,13],[3,10],[1,1],[3,9],[4,8],[5,11],[5,10],[5,11],[5,13],[8,17],[3,7],[6,13],[5,12],[5,10],[5,12],[6,13],[7,14],[7,17],[3,8],[6,13],[8,18],[4,9],[3,7],[6,15],[6,13],[6,13],[4,11],[4,11],[4,11],[4,10],[5,14],[7,16],[3,7],[8,15],[6,17],[3,8],[5,15],[5,13],[6,14],[5,12],[8,15],[5,8],[6,8],[4,7],[8,13],[8,14],[4,8],[3,7],[6,11],[7,14],[4,9],[3,8],[3,10],[5,10],[3,8],[3,10],[3,9],[3,8],[3,8],[3,10],[4,12],[4,11],[3,8],[2,11],[5,18],[3,11],[3,11],[3,11],[3,12],[2,9],[3,12],[3,11],[4,11],[5,12],[6,14],[7,15],[6,12],[4,7],[5,10],[6,10],[6,10],[5,9],[3,9],[3,8],[6,8],[10,10],[11,6],[37,14],[53,10],[15,1],[15,0],[17,-1],[18,-1],[11,-1],[12,0],[11,1],[12,0],[13,1],[15,1],[15,2],[13,0],[14,2],[10,1],[7,1],[11,1],[19,3],[13,1],[11,0],[13,0],[12,0],[10,-1],[10,0],[12,-2],[12,-1],[11,0],[15,1],[17,3],[10,1],[11,1],[13,1],[12,1],[12,2],[11,1],[11,2],[10,1],[11,1],[11,1],[15,1],[14,1],[11,0],[11,-1],[10,0],[9,0],[10,0],[10,1],[11,0],[13,1],[16,2],[14,1],[14,1],[18,2],[14,1],[14,1],[15,2],[10,1],[12,1],[11,3],[19,1],[12,-1],[11,-1],[10,0],[9,1],[13,2],[15,3],[13,4],[23,0],[16,-3],[14,-2],[11,-2],[10,-3],[9,-2],[14,-4],[12,-3],[15,-2],[15,-2],[15,-2],[15,-1],[13,-2],[13,-2],[13,-3],[13,-3],[13,-4],[18,-3],[16,-3],[11,-2],[12,0],[12,0],[14,1],[14,0],[11,1],[11,0],[15,1],[15,2],[13,1],[16,1],[13,3],[8,3],[7,12],[6,11],[7,12],[10,10],[10,6],[12,5],[12,5],[9,3],[11,1],[12,-1],[15,-3],[17,-5],[10,-2],[11,-3],[10,-3],[11,-3],[10,-3],[9,-3],[9,-2],[18,-5],[12,-3],[15,-5],[13,-4],[12,-5],[12,-4],[11,-3],[11,-4],[9,-2],[8,-3],[8,-3],[14,-6],[14,-6],[11,-5],[13,-4],[13,-5],[14,-5],[16,-7],[15,-6],[15,-8],[11,-4],[11,-4],[5,-2],[8,-5],[16,-6],[10,-4],[10,-5],[10,-4],[15,-7],[15,-9],[8,-5],[14,-9],[13,-9],[13,-10],[13,-11],[12,-9],[12,-6],[16,-4],[10,-2],[11,-2],[5,-1],[4,-1],[10,-2],[9,-2],[18,-4],[9,-2],[17,-5],[9,-2],[8,-2],[15,-4],[13,-3],[14,-4],[24,-7],[10,-2],[10,-3],[9,-2],[9,-2],[16,-6],[12,-5],[10,-3],[13,-4],[15,-2],[14,-1],[11,0],[7,1],[5,4],[8,10],[6,9],[6,10],[6,9],[5,11],[3,9],[3,11],[2,10],[3,9],[2,9],[7,15],[4,7],[1,2],[5,8],[10,14],[10,13],[10,9],[6,1],[9,1],[11,-1],[8,-4],[3,0],[12,6],[14,7],[7,3],[10,5],[7,0],[19,39],[16,59],[-5,1],[-9,2],[-10,3],[-9,2],[-10,3],[-12,3],[-8,3],[-10,4],[-12,4],[-11,4],[-11,5],[-13,5],[-14,5],[-16,7],[-9,3],[-8,3],[-16,4],[-16,3],[-15,3],[-13,1],[-14,1],[-14,1],[-21,2],[-14,1],[-12,2],[-10,0],[-9,0],[-11,0],[-11,0],[-13,1],[-11,2],[-13,3],[-14,4],[-15,4],[-12,4],[-12,4],[-10,3],[-9,4],[-13,7],[-10,6],[-11,6],[-14,9],[-14,8],[-14,7],[-12,5],[-12,3],[-10,3],[-10,3],[-11,3],[-12,2],[-11,2],[-10,2],[-10,4],[-9,8],[-5,8],[-8,2],[-10,4],[-17,9],[-7,5],[-8,5],[-9,5],[-9,2],[-3,2],[-9,5],[-8,5],[-11,7],[-9,7],[-9,9],[-9,8],[-9,8],[-8,6],[-9,5],[-10,4],[-12,5],[-11,3],[-9,4],[-11,3],[-12,3],[-13,3],[-12,2],[-12,-1],[-12,-1],[-7,0],[-10,0],[-10,0],[-11,1],[-11,2],[-7,4],[-7,7],[-7,8],[-7,4],[-10,4],[-12,2],[-11,1],[-13,2],[-12,4],[-11,2],[-12,2],[-11,3],[-13,4],[-12,3],[-11,1],[-11,1],[-11,1],[-12,3],[-9,4],[-11,6],[-10,5],[-11,2],[-11,0],[-10,-4],[-10,-3],[-13,-2],[-11,0],[-12,0],[-15,1],[-14,2],[-13,1],[-13,3],[-11,2],[-10,2],[-10,4],[-10,2],[-9,2],[-12,5],[-5,2],[-4,3],[-9,5],[-8,4],[-11,5],[-10,5],[-11,4],[-9,3],[-11,3],[-11,1],[-12,0],[-10,0],[-13,0],[-12,2],[-25,4],[-12,1],[-11,1],[-11,2],[-12,1],[-9,-1],[-6,0],[-14,2],[-29,1],[-85,1],[-38,0],[-3,-9],[-27,-1],[-116,-2],[-11,1],[-24,3],[-90,10],[-25,2],[-32,13],[-8,-1],[-197,4],[-36,2],[-12,-2],[-18,-7],[-10,-4],[-57,12],[-45,13],[-77,24],[-47,16],[-59,22],[-22,12],[-133,79],[-52,38],[-49,30],[-44,30],[-1,1],[-19,15],[-70,51],[-12,10],[-58,51],[-80,68],[-8,8],[-93,93],[-317,297],[-18,16],[-203,189],[-10,13],[-30,41],[-189,256],[-100,136],[-31,42],[-60,84],[10,38],[-337,362],[-56,53],[-159,202],[-108,194],[-169,256],[11,29],[-45,29],[-27,-23],[-75,70],[-27,21],[-49,37],[-126,109],[-82,48],[-98,38],[-341,96],[-307,100],[-167,33],[-175,9],[-125,19],[-44,27],[-21,37],[-84,13],[-377,52],[-1293,187],[-249,41],[-840,277],[-25,13],[-127,63],[-142,62],[-51,22],[-22,11],[-479,345],[-325,205],[-165,85],[-441,438],[-159,170],[-60,63],[-39,97],[-23,41],[-98,233],[-25,56],[-6,36],[-21,82],[-22,61],[-5,26],[52,28],[-32,50],[-5,26],[-8,35],[-35,98],[-78,189],[-50,121],[-22,56],[-53,138],[-25,89],[-76,-24],[-15,32],[-27,59],[-40,95],[42,19],[49,22],[-27,80],[-11,34],[-15,50],[23,7],[-172,334],[-66,183],[-133,267],[-123,225],[-223,287],[-246,275],[-9,15],[8,4],[4,7],[-5,6],[-110,94],[-63,39],[-39,22],[-39,19],[-18,10],[-15,9],[-13,10],[-27,24],[-12,9],[-45,29],[-25,13],[-12,7],[-67,33],[-95,47],[-35,20],[-15,7],[-5,2],[-6,1],[-26,1],[-6,1],[-5,1],[-11,4],[-12,7],[-70,41],[-28,15],[-77,41],[-79,40],[-47,23],[-29,13],[-60,27],[-28,13],[-20,9],[-70,30],[-11,15],[-115,45],[-111,46],[-304,128],[-245,97],[-360,151],[-109,45],[-122,54],[-57,24],[-18,8],[-5,2],[-2,2],[-2,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,4],[-1,4],[-1,5],[0,7],[1,9],[5,9],[12,8],[4,3],[3,2],[4,1],[2,0],[1,1],[2,0],[1,-1],[2,0],[19,-5],[11,-10],[8,-5],[4,-2],[1,0],[1,-1],[1,0],[2,0],[2,0],[3,1],[5,2],[12,5],[32,23],[27,21],[8,8],[18,19],[9,9],[24,19],[35,25],[25,16],[20,12],[19,9],[18,8],[95,32],[87,31],[27,11],[27,11],[31,16],[33,19],[8,6],[15,14],[7,5],[6,4],[7,4],[34,13],[8,5],[6,5],[6,6],[45,75],[15,17],[12,6],[2,1],[3,0],[2,0],[2,0],[5,-1],[5,-2],[5,-3],[21,-12],[8,-5],[5,-2],[4,-1],[4,0],[4,-1],[19,2],[10,5],[10,4],[274,131],[893,407],[-139,35],[2,15],[151,108],[250,45],[428,130],[33,40],[36,48],[206,245],[148,186],[167,149],[91,170],[-123,64],[172,294],[222,428],[166,320],[339,653],[272,-63],[51,305],[-446,106],[-270,71],[-8,-12],[-163,49],[-80,-289],[307,-79],[-245,-508],[-22,-7],[-36,-72],[-407,-826],[-241,-469],[-251,-328],[-35,0],[-114,-132],[-123,-28],[-33,-49],[-45,-32],[-137,-93],[-20,-6],[-22,-7],[-21,-2],[-18,0],[-14,-2],[-23,-2],[-16,-9],[-12,-15],[-6,-13],[-15,-27],[-18,-16],[-13,-19],[-6,-21],[-11,-15],[-39,-29],[49,-38],[10,-8],[-7,-15],[-52,-35],[-69,-50],[-241,3],[-149,-66],[-23,2],[-23,-1],[-23,-3],[-21,-7],[-46,-14],[-44,-16],[-44,-19],[-18,-8],[-12,-13],[-10,-14],[-8,-15],[-228,-105],[-157,-56],[-130,-56],[-270,-111],[-35,-33],[-40,-35],[-76,-48],[-328,-66],[-706,-170],[-1973,853],[-35,16],[-205,79],[-394,143],[-13,16],[-335,116],[-170,38],[-12,-25],[-50,12],[-85,19],[-40,11],[-42,14],[-42,12],[-40,11],[-34,11],[-48,12],[-53,13],[-61,13],[-188,38],[-59,13],[-53,14],[-106,31],[-51,15],[-15,3],[-13,2],[-7,0],[-6,0],[-24,-4],[-10,-1],[-76,0],[-30,-1],[-72,-7],[-32,-2],[-80,-1],[-69,1],[-75,3],[-61,5],[-43,4],[-26,0],[-7,-1],[-9,-2],[-29,-10],[-11,-3],[-24,-4],[-16,-2],[-29,-2],[-23,-1],[-22,-2],[-89,-2],[-16,-1],[-38,-7],[-18,-2],[-29,-1],[-28,2],[-5,1],[-5,1],[-20,6],[-5,1],[-4,1],[-13,0],[-12,-1],[0,-1],[-14,-2],[-9,-2],[-6,-2],[-4,-1],[-4,-2],[-17,-11],[-4,-1],[-4,-1],[-6,-2],[-7,0],[-27,1],[-6,0],[-6,-1],[-109,-19],[-66,-8],[-85,-5],[-19,-2],[-41,-8],[-17,-2],[-76,-7],[-109,-9],[-11,-1],[-11,-3],[-36,-12],[-13,-4],[-50,-12],[-38,-7],[-16,-2],[-16,-1],[-19,0],[-21,1],[-3,1],[-2,0],[-6,2],[-16,8],[-5,2],[-5,2],[-2,0],[-2,0],[-25,0],[-25,-2],[-27,-5],[-27,-7],[-16,-5],[-34,-14],[-15,-4],[-19,-5],[-50,-10],[-31,-8],[-32,-10],[-33,-13],[-36,-14],[-4,-2],[-3,-3],[-4,-2],[-3,-4],[-6,-8],[-15,-26],[-3,-4],[-3,-3],[-3,-3],[-4,-2],[-22,-11],[-61,-24],[-15,-6],[-12,-7],[-24,-16],[-55,-40],[-15,-10],[-15,-7],[-17,-8],[-43,-13],[-11,-4],[-9,-5],[-72,-43],[-70,-38],[-62,-30],[-72,-42],[-61,-33],[-64,-33],[-17,-8],[-38,-17],[-17,-9],[-14,-8],[-37,-25],[-27,-15],[-67,-37],[-30,-17],[-13,-9],[-28,-24],[-7,-5],[-7,-4],[-75,-36],[-85,-46],[-65,-32],[-54,-31],[-37,-19],[-33,-13],[-11,-3],[-12,-2],[-36,-3],[-13,1],[-32,4],[-8,1],[-7,0],[-8,-1],[-8,-2],[-8,-3],[-8,-5],[-8,-6],[-7,-7],[-8,-8],[-6,-8],[-2,-3],[-2,-4],[-1,-4],[-1,-5],[-1,-30],[-1,-10],[-1,-5],[-2,-4],[-2,-3],[-3,-3],[-5,-4],[-5,-3],[-19,-9],[-7,-4],[-6,-4],[-2,-2],[-2,-3],[-27,-39],[-9,-12],[-273,-126],[-609,107],[-152,16],[-90,15],[-21,5],[-19,5],[0,0],[-1,0],[0,0],[0,1],[0,0],[0,0],[-1,0],[0,1],[0,1],[0,0],[0,2],[1,2],[2,7],[4,22],[16,57],[3,17],[1,16],[0,2],[-1,2],[0,2],[-1,2],[-2,4],[-4,3],[-4,4],[-4,3],[-20,12],[-51,33],[-54,32],[-29,14],[-16,11],[-16,12],[-15,12],[-14,13],[-12,14],[-11,14],[-10,14],[-8,15],[-17,38],[-11,21],[-7,183],[117,492],[138,258],[382,-1],[42,120],[37,109],[9,28]],[[182279,188369],[17,81],[-156,54],[-130,48],[-76,42],[-37,111],[13,88],[53,89],[93,27],[120,4],[149,-23],[63,331],[26,70],[-1,53],[-24,78],[-97,27],[-12,-28],[-44,11],[-2,9],[1,10],[1,9],[4,8],[4,8],[6,8],[144,-39],[-41,45],[-235,83],[225,502],[47,80],[11,26],[77,-22],[23,58],[179,435],[22,29],[26,27],[30,23],[33,19],[35,14],[38,10],[38,5],[38,0],[38,-6],[235,-41],[40,151],[-52,11],[37,127],[-4,23],[-470,112],[-7,-21],[-29,8],[-64,16],[14,61],[81,-19],[247,-58],[8,22],[114,-24],[-7,-25],[187,-47],[48,63],[119,153],[-26,9],[8,44],[-43,7],[-5,-19],[-151,36],[-10,-32],[-264,74],[18,58],[71,-16],[-9,-38],[139,-34],[6,20],[154,-36],[12,35],[96,-23],[43,0],[41,-11],[10,12],[34,32],[38,29],[41,23],[36,13],[38,9],[38,5],[22,30],[26,36],[-255,51],[-21,-52],[-118,29],[-4,1],[-4,1],[-4,2],[-3,3],[-4,3],[-3,3],[-3,3],[-2,4],[-2,3],[-1,4],[-1,4],[-1,5],[0,4],[0,4],[0,5],[1,4],[1,5],[2,4],[2,4],[3,4],[3,4],[3,4],[4,3],[4,3],[4,2],[5,2],[4,1],[5,1],[5,1],[5,0],[5,0],[306,-66],[-2,-9],[74,-15],[76,274],[-67,16],[-6,-12],[-552,147],[-2,56],[370,-84],[-13,-12],[281,-65],[80,-16],[9,39],[5,17],[11,46],[-106,23],[0,14],[-70,21],[-250,75],[-18,1],[-17,3],[-17,6],[-16,8],[-14,10],[-13,13],[-10,14],[-12,26],[-7,28],[-1,29],[3,28],[8,28],[14,25],[17,24],[20,29],[23,27],[27,23],[31,19],[32,15],[70,13],[102,-29],[132,-34],[58,0],[48,23],[11,28],[7,28],[2,29],[-3,29],[-8,29],[3,38],[-381,86],[215,370],[-15,76],[77,106],[60,75],[28,15],[11,32],[24,29],[7,36],[12,37],[943,1363],[1202,-616],[75,-17],[35,88],[-20,14],[35,63],[206,-99],[-44,-66],[-158,85],[-37,-89],[943,-215],[80,272],[-1071,263],[-953,504],[-36,-37],[-65,60],[142,172],[75,-54],[232,256],[-257,53],[-15,4],[-1,11],[50,58],[20,6],[16,-3],[289,-62],[81,-7],[71,261],[83,-16],[-8,-38],[60,-13],[-44,-193],[85,-33],[341,735],[-84,188],[207,330],[233,376],[-33,31],[119,133],[76,68],[23,-8],[415,547],[-23,22],[99,128],[119,128],[300,460],[56,41],[187,255],[96,125],[160,212],[216,434],[87,61],[24,40],[19,35],[23,34],[22,34],[45,65],[937,1459],[816,1280],[1157,1776],[98,121],[63,30],[603,1055],[10,17],[24,40],[727,1210],[1187,1632],[170,233],[526,472],[69,95],[319,258],[187,54],[104,78],[254,-155],[466,593],[388,151],[472,-15],[80,176],[-13,93],[188,171],[145,32],[266,-115],[309,241],[214,279],[124,296],[-280,90],[86,478],[42,1],[1,0],[21,82],[234,-72],[26,100],[-231,59],[-8,-22],[-51,14],[15,52],[57,-15],[-4,-19],[225,-56],[28,107],[-242,89],[11,94],[1,27],[-213,77],[-559,209],[-876,329],[-214,795],[-28,404],[126,770],[376,602],[11,20],[402,793],[180,203],[146,21],[214,252],[264,313],[210,102],[205,12],[312,19],[623,-133],[79,-17],[21,55],[12,32],[45,-10],[497,-109],[36,-8],[458,-330],[-15,-140],[118,-221],[158,-296],[463,-284],[523,189],[267,97],[130,152],[73,84],[740,633],[473,402],[308,111],[47,15],[59,20],[48,22],[469,230],[360,265],[649,884],[142,149],[203,95],[328,222],[696,706],[627,668],[541,565],[382,298],[177,138],[279,110],[305,51],[46,40],[-7,276],[216,493],[670,707],[207,-34],[46,41],[51,58],[-202,183],[834,1100],[1016,1172],[229,-152],[100,123],[73,49],[-80,92],[189,155],[97,-105],[228,121],[74,286],[517,418],[271,223],[1907,-440],[190,-149],[2453,-547],[70,61],[208,-44],[18,-61],[209,-73],[572,-136],[277,-105],[135,-121],[305,-347],[228,-195],[877,-745],[357,-332],[143,-72],[52,-26],[265,-428],[83,48],[-14,21],[30,16],[30,-46],[-28,-17],[-12,18],[-83,-49],[77,-114],[69,39],[-12,18],[42,25],[108,-166],[-43,-26],[-12,19],[-68,-39],[64,-103],[83,46],[-14,17],[30,18],[31,-49],[-29,-17],[-14,22],[-79,-48],[184,-286],[-621,-612],[34,-31],[12,12],[22,-20],[-7,-7],[5,-5],[-3,-4],[6,-5],[-22,-22],[-10,9],[-10,-10],[-24,22],[13,13],[-33,29],[-139,-117],[69,-70],[-1100,-1064],[-1485,-54],[-358,-448],[-16,-10],[-25,-12],[-38,-16],[-11,-5],[-10,-6],[-21,-16],[-19,-19],[-21,-23],[-42,-56],[-40,-55],[-34,-44],[-4,-7],[-3,-9],[-3,-9],[-72,-183],[-129,-318],[-42,-226],[-60,-170],[0,-186],[60,-49],[147,-79],[54,67],[45,66],[21,325],[70,325],[461,506],[46,-31],[303,124],[237,67],[-3,76],[539,4],[511,-135],[910,626],[45,-65],[37,26],[2,7],[4,7],[5,5],[6,5],[7,4],[8,3],[7,2],[8,0],[25,17],[2,6],[2,5],[4,5],[4,5],[5,3],[6,3],[6,1],[6,1],[6,0],[32,22],[3,6],[4,6],[6,5],[6,4],[6,3],[7,2],[8,1],[26,19],[5,7],[5,6],[7,6],[7,4],[9,3],[8,2],[32,22],[1,5],[2,4],[3,5],[3,3],[4,4],[4,2],[5,2],[5,1],[6,1],[5,-1],[30,21],[3,6],[3,6],[5,4],[5,5],[6,3],[6,2],[6,2],[7,0],[34,24],[1,5],[2,4],[3,4],[4,4],[4,2],[5,3],[5,1],[5,0],[5,0],[33,23],[5,9],[6,7],[8,6],[8,5],[10,3],[9,2],[111,73],[0,2],[0,2],[1,1],[1,2],[0,1],[1,2],[1,2],[1,1],[1,1],[1,2],[2,1],[0,1],[2,2],[1,1],[2,1],[0,2],[2,1],[2,0],[1,2],[2,1],[1,1],[1,0],[2,2],[2,0],[1,1],[2,1],[2,0],[2,1],[1,1],[2,0],[2,0],[2,0],[1,1],[2,0],[2,1],[2,0],[2,0],[1,0],[110,75],[0,2],[1,2],[1,1],[0,2],[2,1],[0,1],[1,2],[1,2],[2,1],[1,1],[1,2],[1,1],[2,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,1],[2,1],[2,1],[1,1],[2,0],[1,1],[3,1],[1,0],[2,1],[1,0],[3,0],[2,1],[1,0],[2,1],[2,0],[2,0],[2,0],[110,77],[0,2],[2,2],[1,2],[0,2],[2,1],[0,2],[2,1],[1,2],[1,1],[1,2],[2,2],[1,1],[1,1],[2,2],[2,1],[1,1],[2,2],[2,0],[1,2],[2,1],[2,1],[2,0],[2,2],[2,0],[1,1],[2,1],[2,0],[3,1],[2,0],[2,1],[2,0],[1,0],[2,0],[2,1],[2,0],[263,181],[1,2],[0,2],[1,2],[1,2],[1,1],[0,2],[2,1],[0,2],[2,1],[0,2],[2,2],[1,1],[2,1],[1,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,2],[1,0],[2,2],[2,0],[1,2],[2,0],[3,1],[1,0],[2,1],[2,1],[1,0],[3,0],[2,1],[2,1],[2,0],[1,0],[2,0],[2,0],[3,0],[102,70],[1,2],[0,2],[1,1],[1,2],[0,2],[2,2],[0,2],[1,1],[2,2],[1,1],[1,2],[1,1],[1,2],[2,1],[1,1],[2,2],[1,1],[1,1],[3,1],[1,1],[1,1],[2,1],[2,1],[2,1],[1,1],[2,1],[2,0],[2,1],[2,1],[2,0],[2,0],[2,1],[2,0],[2,1],[2,0],[2,0],[2,0],[2,0],[1,0],[3,0],[2,0],[2,-1],[2,0],[2,-1],[1,0],[2,0],[2,-1],[3,-1],[1,0],[2,-2],[1,0],[2,-1],[2,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[68,44],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[1,2],[0,2],[0,2],[1,2],[0,1],[0,2],[1,2],[0,2],[1,2],[0,2],[2,1],[0,1],[0,1],[1,2],[1,2],[1,2],[2,1],[0,2],[2,1],[1,2],[1,2],[2,1],[1,1],[2,2],[1,1],[1,1],[3,1],[1,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[1,1],[3,0],[2,1],[2,0],[2,1],[1,0],[2,0],[2,1],[2,0],[3,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,0],[2,0],[2,-1],[2,0],[2,-1],[2,0],[1,-1],[2,-1],[2,-1],[2,-1],[2,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-2],[2,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[1,-1],[0,-1],[1,-1],[1,-2],[0,-2],[0,-2],[1,-2],[1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[0,-1],[-2,-2],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,0],[-1,0],[-2,-1],[-3,-1],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,1],[-2,1],[-2,0],[-2,1],[-2,1],[-2,0],[-1,1],[-2,1],[-2,1],[-2,1],[-1,2],[-2,0],[-2,2],[-1,1],[-2,1],[-2,2],[-1,1],[-1,1],[-68,-44],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-2,-1],[0,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-3,0],[-1,-1],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-101,-68],[0,-2],[-1,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-267,-183],[0,-2],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-3,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-109,-73],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-2],[-2,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-2,0],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,0],[-113,-75],[0,-2],[-1,-1],[-1,-2],[0,-1],[0,-1],[-2,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[-3,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-97,-66],[6,-2],[5,-3],[4,-3],[4,-4],[3,-5],[3,-5],[1,-6],[1,-6],[-1,-5],[2,0],[3,0],[2,-1],[2,-1],[2,-1],[1,-2],[1,-1],[1,-2],[1,-2],[0,-3],[7,2],[6,0],[7,-2],[6,-2],[6,-3],[5,-4],[5,-4],[3,-6],[3,-6],[1,-6],[0,-6],[0,-6],[1,0],[2,0],[2,0],[2,0],[2,-1],[1,-1],[2,-1],[1,-1],[1,-2],[0,-1],[1,-2],[0,-2],[6,1],[6,0],[7,-1],[6,-2],[6,-3],[5,-4],[4,-5],[4,-5],[2,-6],[2,-6],[0,-6],[-1,-6],[15,-14],[7,1],[7,-1],[7,-2],[7,-2],[6,-4],[5,-5],[4,-5],[4,-6],[2,-6],[1,-7],[0,-7],[3,0],[3,-2],[2,-1],[2,-2],[2,-2],[2,-3],[4,-4],[6,1],[6,1],[6,0],[6,-2],[5,-2],[5,-3],[4,-4],[4,-4],[3,-5],[1,-6],[1,-5],[0,-6],[-1,-5],[3,-1],[3,-1],[2,-1],[3,-2],[2,-2],[1,-2],[2,-3],[1,-3],[0,-2],[0,-2],[0,-2],[7,1],[8,0],[7,-1],[7,-2],[7,-3],[6,-4],[55,-46],[404,-360],[-402,-413],[40,-46],[5,5],[44,45],[-6,5],[411,417],[15,-13],[-394,-400],[15,-13],[-19,-20],[-14,13],[-28,-28],[-3,3],[-15,-15],[-5,-6],[14,-17],[-19,-24],[7,-8],[37,-34],[6,9],[6,8],[8,7],[9,6],[4,8],[6,8],[6,7],[8,6],[8,4],[0,17],[4,17],[6,15],[9,14],[11,13],[14,11],[15,8],[17,5],[2,7],[3,6],[4,5],[5,5],[6,3],[7,3],[6,2],[4,16],[7,14],[9,14],[12,12],[13,10],[15,7],[17,5],[1,6],[3,7],[3,6],[5,5],[5,5],[6,3],[6,3],[7,2],[5,15],[8,15],[9,13],[12,12],[13,11],[15,8],[16,6],[1,6],[2,6],[3,5],[4,5],[5,4],[5,4],[6,2],[7,2],[4,15],[7,14],[9,13],[11,12],[13,10],[15,7],[16,5],[3,9],[5,8],[7,7],[7,6],[8,5],[9,4],[4,14],[6,13],[7,12],[10,11],[12,9],[12,7],[14,5],[15,3],[0,6],[2,6],[2,5],[4,6],[4,4],[5,4],[6,3],[6,2],[6,1],[4,14],[6,13],[9,12],[11,11],[12,8],[14,7],[15,4],[16,1],[15,0],[15,-4],[14,-6],[13,-7],[11,-10],[10,-12],[7,1],[7,0],[8,-1],[7,-2],[6,-3],[6,-4],[6,-5],[4,-5],[15,2],[14,0],[15,-3],[14,-4],[13,-7],[11,-9],[10,-10],[8,-11],[6,-13],[4,-14],[8,-2],[7,-3],[6,-5],[5,-5],[5,-7],[3,-6],[19,-7],[18,-8],[15,-12],[14,-14],[10,-16],[8,-18],[5,-1],[6,-2],[4,-2],[4,-4],[4,-4],[3,-4],[2,-5],[1,-5],[16,-4],[15,-7],[14,-9],[12,-11],[9,-13],[8,-14],[4,-15],[6,0],[5,-1],[5,-1],[5,-3],[5,-3],[4,-3],[3,-5],[3,-4],[1,-5],[1,-6],[0,-5],[12,1],[11,-1],[11,-3],[11,-5],[10,-6],[9,-7],[7,-9],[6,-9],[4,-11],[2,-10],[20,-16],[17,-18],[17,-6],[15,-7],[14,-9],[466,476],[7,53],[-321,292],[41,40],[374,-327],[304,-267],[-39,-40],[-107,89],[-156,134],[-62,-16],[-476,-473],[6,-14],[7,-2],[7,-4],[5,-4],[5,-6],[4,-5],[3,-7],[17,-4],[16,-6],[14,-9],[13,-11],[11,-13],[8,-15],[5,-15],[12,-5],[11,-6],[9,-9],[8,-9],[15,-4],[13,-7],[13,-9],[11,-10],[9,-12],[7,-13],[5,-13],[9,-3],[8,-5],[7,-5],[6,-7],[6,-7],[4,-8],[15,-4],[15,-6],[13,-8],[12,-10],[10,-12],[9,-13],[6,-14],[7,-2],[6,-3],[6,-5],[5,-5],[5,-6],[3,-6],[19,-6],[18,-10],[17,-12],[13,-15],[62,55],[11,-10],[31,29],[16,-17],[-100,-92],[7,-8],[6,-9],[3,-10],[2,-11],[12,0],[13,-2],[12,-4],[11,-6],[9,-7],[9,-9],[7,-9],[5,-11],[3,-12],[2,-11],[4,0],[4,0],[4,0],[5,-2],[3,-2],[4,-2],[2,-4],[3,-3],[1,-4],[1,-4],[0,-4],[-1,-4],[13,0],[12,-3],[12,-4],[11,-6],[10,-7],[8,-9],[7,-10],[4,-11],[3,-11],[1,-12],[0,-11],[-1,-10],[-4,-10],[-5,-9],[32,-28],[13,7],[13,4],[14,3],[14,0],[14,-2],[14,-5],[12,-6],[12,-8],[9,-11],[8,-11],[5,-13],[3,-13],[1,-13],[-2,-14],[-4,-13],[4,-2],[4,-3],[4,-4],[2,-4],[2,-5],[1,-5],[0,-5],[-1,-5],[-2,-4],[-2,-4],[6,-6],[11,-9],[9,-11],[7,-11],[5,-13],[2,-14],[1,-14],[-3,-13],[-4,-13],[-7,-12],[-9,-11],[-10,-9],[-12,-8],[-14,-6],[-3,-10],[-4,-9],[-7,-10],[-8,-9],[-10,-8],[-1,-13],[-3,-13],[-6,-13],[-7,-11],[-10,-11],[-11,-8],[-12,-7],[-14,-5],[-14,-2],[2,-4],[1,-4],[0,-5],[0,-4],[-2,-4],[-2,-4],[-2,-3],[-4,-3],[-3,-3],[-4,-1],[-5,-1],[-4,-1],[-5,1],[-4,1],[-2,-14],[-5,-14],[-7,-13],[-9,-11],[-11,-10],[-12,-8],[-14,-6],[-14,-4],[-1,-6],[-1,-7],[-3,-5],[-4,-6],[-4,-5],[-5,-4],[-6,-3],[-7,-2],[-6,-2],[-4,-15],[-7,-15],[-9,-13],[-11,-12],[-13,-10],[-14,-8],[-16,-6],[-4,-7],[-5,-6],[-5,-5],[-7,-4],[-6,-3],[-6,-3],[-6,-1],[-1,-8],[-1,-7],[-4,-14],[-7,-12],[-9,-12],[-11,-10],[-12,-8],[-14,-5],[-16,-6],[1,-3],[0,-3],[-1,-3],[-1,-3],[-3,-5],[-3,-5],[-4,-3],[-5,-4],[-3,-1],[-4,-2],[-4,0],[-3,-1],[-4,1],[-2,-18],[-1,-8],[-3,-8],[-5,-8],[-5,-7],[-6,-6],[-8,-5],[-8,-3],[-8,-3],[-11,-7],[13,-22],[11,-31],[-1,-21],[-29,-76],[2,-19],[39,-28],[12,10],[13,8],[15,7],[15,4],[16,1],[16,-1],[16,-3],[15,-6],[38,-7],[38,-4],[39,1],[39,4],[37,8],[100,35],[92,-74],[100,-305],[131,-140],[62,-272],[-612,-649],[-210,-244],[13,-31],[154,-123],[75,-88],[57,-99],[121,-214],[45,-71],[74,-24],[76,-66],[59,-74],[12,-32],[9,-227],[-49,-114],[-31,-224],[-85,-94],[-61,-98],[-27,-106],[10,-101],[-24,-161],[66,133],[5,86],[17,70],[101,172],[52,112],[53,329],[-6,226],[-53,131],[117,265],[99,129],[-10,78],[33,68],[73,55],[135,37],[104,55],[40,46],[24,67],[-4,118],[71,75],[110,39],[54,-52],[39,-414],[314,-1010],[28,-153],[0,-156],[-52,-198],[-4,-144],[-12,-44],[-5,-59],[-16,-87],[-108,-470],[-33,-105],[-27,-64],[-112,-42],[-77,-243],[63,-16],[70,75],[78,23],[62,-28],[89,-75],[52,-35],[42,-32],[1026,137],[74,83],[1159,157],[-1,11],[-5,33],[-6,-1],[-4,24],[26,3],[1,-5],[67,9],[0,5],[8,1],[-16,108],[-4,0],[-7,43],[24,3],[0,-2],[15,2],[-13,83],[27,3],[15,-102],[-27,-4],[-1,6],[-12,-2],[4,-27],[-4,0],[15,-107],[3,0],[4,-26],[-27,-4],[-1,5],[-69,-9],[1,-5],[-5,0],[5,-33],[1,-10],[910,123],[145,-62],[103,22],[-10,40],[-109,-13],[-275,149],[-67,92],[-82,252],[-28,113],[-11,115],[13,91],[38,86],[61,50],[45,18],[33,6],[58,28],[22,-6],[82,12],[-1,8],[-27,0],[-19,8],[-29,43],[-215,1315],[-41,199],[-67,303],[-37,185],[-26,119],[-14,81],[-36,54],[-53,30],[-25,35],[-7,41],[20,38],[84,7],[19,81],[-44,220],[24,225],[66,302],[27,148],[33,39],[61,40],[206,89],[371,85],[371,0],[7,47],[208,18],[16,-87],[42,-13],[41,3],[65,48],[200,58],[98,5],[25,22],[22,42],[35,27],[96,10],[116,1],[78,36],[104,43],[106,7],[160,-20],[56,-9],[75,1],[224,34],[123,12],[103,8],[73,-4],[106,12],[75,30],[16,3],[-2,63],[-8,0],[-2,54],[82,6],[0,-119],[16,-2],[56,-34],[33,79],[62,7],[44,-69],[129,-4],[136,-67],[-214,882],[-159,95],[278,420],[-18,12],[3,4],[-162,97],[-12,-17],[-10,5],[10,17],[-361,220],[28,36],[15,-8],[-17,-27],[154,-95],[22,32],[9,-8],[-15,-31],[176,-106],[40,64],[13,-8],[-39,-62],[159,-95],[6,6],[16,-11],[305,459],[1971,-1169],[193,135],[2228,3356],[909,-540],[338,488],[659,991],[-42,18],[86,138],[134,-75],[-93,-138],[-60,39],[-651,-994],[-317,-499],[-110,-162],[268,-1116],[441,72],[2,8],[3,9],[0,0],[1,1],[0,0],[0,1],[1,1],[0,0],[0,0],[0,0],[0,0],[0,1],[0,0],[0,0],[0,0],[1,2],[1,0],[0,2],[1,1],[1,0],[0,1],[0,0],[0,0],[0,0],[1,1],[0,0],[0,1],[0,0],[0,0],[0,0],[0,0],[1,0],[0,0],[0,1],[0,0],[0,0],[0,0],[0,0],[0,0],[1,1],[0,0],[0,0],[0,1],[0,0],[1,0],[0,0],[0,0],[0,1],[1,0],[0,1],[1,0],[0,0],[0,0],[0,1],[0,0],[1,0],[0,0],[0,1],[0,0],[0,0],[0,0],[1,1],[1,1],[1,0],[1,2],[1,0],[2,2],[0,0],[3,2],[1,1],[0,1],[1,0],[1,0],[0,0],[0,1],[0,0],[0,0],[1,0],[2,1],[2,2],[1,0],[12,5],[13,4],[13,1],[13,-1],[13,-4],[12,-5],[11,-7],[9,-9],[5,-6],[1,-1],[4,-8],[1,-2],[1,-1],[1,-3],[0,0],[1,-2],[0,0],[0,-1],[0,-1],[1,-2],[0,0],[1,-2],[0,0],[0,0],[0,-2],[0,0],[0,-1],[0,-1],[1,0],[0,0],[0,0],[0,-1],[0,0],[0,-1],[0,-1],[0,0],[0,-1],[0,0],[0,0],[0,-1],[0,0],[0,0],[0,-1],[0,0],[1,0],[0,0],[0,-1],[0,-1],[0,0],[0,-2],[0,0],[0,-1],[0,0],[0,0],[0,-1],[0,0],[0,-1],[0,-2],[0,-1],[0,0],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,0],[0,-1],[0,0],[0,-1],[0,0],[-1,-4],[0,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,0],[-1,-1],[0,0],[0,-1],[-1,0],[0,0],[0,-1],[0,-1],[-1,-1],[0,0],[-1,-1],[0,0],[0,-1],[0,0],[-1,-1],[0,-1],[0,0],[0,0],[0,0],[-1,-1],[0,0],[0,0],[-1,-1],[0,0],[0,-1],[0,0],[-1,-1],[0,0],[-1,-1],[0,0],[0,0],[0,0],[0,0],[-1,-1],[0,-1],[-1,0],[0,0],[0,0],[0,-1],[0,0],[-2,-1],[0,-1],[0,0],[-1,-1],[0,0],[0,0],[0,0],[-1,-1],[-1,-1],[0,0],[-1,-1],[0,0],[-2,-1],[0,-1],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,-1],[-1,0],[0,0],[0,0],[0,-1],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,-1],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,-1],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[0,-1],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,-1],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,-1],[-1,0],[0,0],[-1,0],[0,0],[0,0],[0,-1],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,-1],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,-1],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,-1],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,-1],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,-1],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,-1],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,-1],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,-1],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,-1],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,-1],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-2,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,1],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1,1],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,1],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,1],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,1],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[-1,1],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[-1,0],[0,1],[0,0],[0,0],[0,0],[0,0],[-1,0],[0,0],[0,0],[0,0],[-4,2],[-11,8],[-10,8],[-7,11],[-6,11],[0,1],[-435,-72],[-654,-991],[-609,-139],[-678,-1006],[106,-62],[128,-166],[616,-404],[613,-351],[23,-37],[1179,-760],[203,-91],[990,-580],[109,-40],[243,-179],[389,-302],[261,-180],[1581,-939],[1825,-1100],[58,32],[67,3],[50,-30],[16,-66],[-22,-41],[189,-114],[144,-67],[272,-179],[140,-80],[311,-156],[206,-96],[97,-61],[112,-62],[388,-202],[264,-153],[285,-188],[2,-62],[0,-60],[-4,-86],[-9,-42],[-11,-30],[-18,-14],[-40,-23],[-296,-488],[-473,-620],[-11,-10],[-12,-10],[-26,-16],[-14,-6],[-15,-4],[-14,-3],[-30,-3],[-31,3],[-16,3],[-15,4],[-15,5],[-14,6],[-289,172],[-36,17],[-15,5],[-14,5],[-14,3],[-13,2],[-10,-1],[-5,-1],[-16,-10],[-10,-10],[-8,-11],[-3,-6],[-2,-8],[-3,-14],[-3,-36],[-4,-16],[-3,-8],[-4,-6],[-5,-5],[-2,-2],[-14,-8],[-13,-5],[-14,-2],[-16,-1],[-16,1],[-18,3],[-67,14],[-9,4],[-37,21],[-8,3],[-7,3],[-12,2],[-7,0],[-6,-3],[-2,-1],[-127,-80],[-7,3],[-11,8],[-5,2],[-6,0],[-5,0],[-5,-1],[-5,-1],[-5,-2],[-5,-4],[-6,-13],[2,-12],[8,-13],[125,-90],[156,-132],[177,-150],[326,-228],[144,-98],[296,-146],[40,-90],[-1,-71],[-59,-78],[-42,-6],[-102,21],[-98,27],[-113,76],[-142,77],[-34,-36],[-36,-78],[-49,-84],[-45,-91],[-226,-376],[-185,-125],[-47,-18],[-90,-114],[-81,-92],[-66,-91],[-99,-170],[-111,-104],[-91,-59],[-281,-153],[-163,-37],[-119,3],[-97,-57],[-112,-12],[-105,14],[-135,31],[-88,9],[-48,-13],[-50,-49],[-46,8],[-37,56],[-11,35],[4,88],[-20,64],[-43,11],[-54,-49],[-14,-136],[-63,-70],[-74,-20],[-160,2],[-77,16],[-127,-19],[-20,-1],[-47,-1],[-60,-12],[16,-43],[-41,-28],[-104,66],[-104,4],[-54,-14],[-41,-86],[22,-72],[297,-299],[51,-70],[-6,-111],[95,-121],[152,-229],[143,-194],[187,-295],[497,-841],[258,-466],[165,-298],[161,-243],[48,-62],[119,0],[40,28],[48,3],[98,-90],[-44,-123],[5,-58],[38,-38],[81,121],[74,187],[17,-6],[-75,-192],[-75,-101],[29,-22],[80,99],[12,-10],[-94,-125],[139,-95],[48,71],[6,-4],[32,47],[5,7],[7,11],[-3,2],[35,49],[5,8],[44,64],[5,7],[46,67],[7,10],[44,64],[5,8],[47,67],[4,6],[45,66],[5,6],[39,57],[5,7],[34,50],[6,8],[36,52],[5,8],[33,48],[4,5],[34,51],[-7,7],[21,33],[-74,46],[-59,36],[-7,4],[-52,32],[-55,34],[-60,36],[-1,1],[-7,4],[-56,34],[-8,5],[-53,32],[-39,24],[-44,-64],[-9,5],[98,144],[8,-6],[-40,-60],[27,-18],[8,-4],[53,-33],[7,-5],[63,-39],[7,-4],[48,-30],[7,-4],[55,-34],[5,-4],[50,-30],[7,-5],[50,-31],[7,-4],[74,-47],[24,32],[7,-5],[465,668],[-82,51],[4,6],[179,-111],[-5,-7],[-74,46],[-32,-45],[-4,-6],[-33,-47],[-4,-5],[-34,-48],[-4,-5],[-29,-42],[-5,-6],[-29,-41],[-4,-6],[-30,-42],[-4,-7],[-31,-43],[-4,-5],[-29,-42],[-5,-7],[-31,-44],[-4,-6],[-29,-40],[-5,-7],[-30,-43],[-6,-8],[-29,-41],[-4,-6],[-30,-43],[-5,-6],[-15,-21],[7,-5],[-21,-33],[73,-45],[56,-34],[117,-71],[6,-4],[52,-32],[6,-3],[62,-38],[7,-4],[54,-33],[36,-22],[1,-1],[42,-25],[8,-5],[33,-20],[54,74],[10,-7],[-121,-165],[-10,6],[53,76],[-30,19],[-8,5],[-32,20],[-7,4],[-32,19],[-8,5],[-55,34],[-64,39],[-7,4],[-51,31],[-6,4],[-53,32],[-6,4],[-55,33],[-5,4],[-53,32],[-6,4],[-74,45],[-20,-32],[-9,6],[-36,-53],[-4,-7],[-33,-47],[-5,-8],[-36,-54],[-4,-6],[-35,-51],[-29,-43],[-14,-21],[-5,-7],[-44,-64],[-16,-24],[-38,-56],[-5,-8],[-22,-32],[221,-131],[7,-4],[74,-44],[10,-6],[89,-53],[43,-25],[55,-33],[13,-8],[100,-59],[16,-10],[99,-59],[12,-7],[90,-53],[38,-23],[63,-37],[12,-7],[27,-16],[-10,-16],[-93,55],[-8,5],[-58,34],[-10,6],[-55,33],[-8,4],[-54,32],[-9,6],[-54,31],[-8,6],[-55,32],[-9,5],[-57,34],[-7,4],[-58,34],[-8,5],[-57,34],[-8,5],[-57,34],[-9,5],[-56,33],[-8,5],[-224,132],[-48,-66],[-6,-8],[-50,-70],[-50,-70],[-5,2],[-41,-65],[6,-5],[-48,-70],[907,-562],[525,-220],[555,-180],[46,60],[6,-4],[43,58],[9,-6],[-42,-58],[5,-4],[-41,-55],[20,-6],[189,-200],[207,-169],[89,-9],[166,70],[178,16],[149,-19],[272,-93],[135,-67],[73,-14],[105,-37],[418,-224],[60,-85],[75,-38],[108,-94],[78,-35],[88,49],[68,1],[74,-4],[163,3],[162,23],[165,44],[78,31],[76,35],[74,39],[71,43],[144,109],[128,129],[101,140],[-6,8],[29,34],[-355,664],[-1203,-578],[-15,-37],[-82,-44],[-61,111],[1400,677],[400,-752],[15,8],[141,-24],[141,-105],[61,31],[233,199],[154,88],[777,612],[669,615],[245,225],[302,247],[43,-2],[242,190],[105,106],[211,126],[112,54],[-46,77],[33,21],[-45,89],[23,12],[49,-87],[32,17],[52,-81],[181,89],[46,35],[40,86],[13,98],[-14,126],[-28,79],[6,173],[35,78],[159,158],[72,42],[186,115],[121,54],[176,57],[472,179],[337,139],[38,-66],[184,5],[149,32],[141,-47],[75,-29],[75,149],[202,421],[-77,33],[-168,81],[-10,56],[-96,140],[-25,199],[3,64],[25,70],[82,71],[32,44],[7,33],[-57,72],[-57,-4],[-44,12],[-21,-53],[-51,27],[-43,-18],[-1,-48],[35,-38],[-11,-99],[-66,-155],[-65,-43],[-69,-29],[-28,-50],[-3,-65],[-23,-66],[-161,-19],[-182,-43],[11,-40],[5,0],[2,-11],[-15,-5],[-7,12],[4,2],[-14,39],[-83,-19],[9,-53],[-44,-5],[-4,42],[17,3],[1,8],[-92,-22],[1,-41],[4,0],[-3,-13],[-22,0],[0,10],[9,1],[-3,40],[-134,-32],[-173,-48],[13,-42],[18,5],[7,-20],[-32,-8],[-20,61],[-136,-37],[-12,-19],[12,-29],[31,4],[0,4],[26,8],[7,-18],[-26,-8],[-1,3],[-256,-75],[1,-2],[-25,-5],[-5,18],[23,7],[1,-4],[33,13],[-10,33],[-18,9],[-121,-33],[13,-51],[7,3],[5,-16],[-30,-8],[-3,14],[10,4],[-16,50],[-90,-25],[-172,19],[-254,-100],[-61,-56],[-82,-7],[-66,28],[-149,-143],[-81,2],[-116,-21],[-138,-8],[-263,53],[-228,106],[-402,268],[-60,24],[-70,55],[-37,62],[-199,77],[-91,-9],[-112,-17],[-102,4],[-67,18],[-67,17],[-95,82],[-192,221],[-70,52],[-34,59],[-38,125],[-42,81],[-32,93],[-32,109],[-74,197],[-43,85],[-57,96],[-28,32],[-46,51],[-6,12],[-9,17],[-30,59],[183,86],[22,25],[17,29],[12,31],[8,32],[2,33],[-4,32],[-8,32],[-14,30],[-18,28],[-23,25],[-27,21],[-29,17],[-32,13],[-87,-13],[-6,-2],[-6,0],[-7,1],[-6,1],[-6,3],[-6,3],[-4,4],[-4,5],[-3,6],[-2,6],[-2,6],[0,6],[-61,19],[-155,336],[108,253],[191,139],[13,16],[10,18],[6,20],[3,20],[0,21],[-82,651],[-2,9],[-8,18],[-7,22],[-15,24],[-16,33],[-47,64],[-49,53],[-49,53],[-139,63],[-129,95],[-96,109],[-51,85],[-21,35],[-76,190],[-3,9],[-22,48],[-20,29],[-11,13],[-68,27],[-5,21],[-1,5],[-161,8],[0,6],[-63,-6],[-4,-14],[17,4],[-5,-25],[-14,8],[-15,-123],[-25,6],[6,49],[-552,45],[-5,-57],[-20,6],[19,138],[18,-4],[-8,-69],[553,-47],[16,144],[23,-6],[0,-33],[62,-4],[2,8],[150,-10],[-7,29],[11,47],[48,97],[-105,-2],[-2,34],[125,5],[69,140],[97,114],[239,420],[129,352],[10,139],[-101,399],[-55,222],[-3,71],[2,71],[6,71],[11,70],[15,69],[19,69],[24,67],[19,46],[18,46],[12,34],[26,83],[21,84],[-40,92],[-70,82],[0,1],[48,939],[2,218],[10,90],[12,90],[14,87],[2,31],[1,76],[10,90],[1,29],[-1,26],[-3,25],[-4,22],[-4,10],[-5,10],[-7,10],[0,1],[-7,8],[-9,8],[-9,6],[-10,6],[-10,4],[-30,8],[-38,10],[-19,3],[-19,3],[-31,5],[-16,3],[-13,4],[-7,4],[-7,4],[-7,6],[-7,7],[-10,14],[-25,38],[-27,39],[-9,17],[-9,16],[-6,14],[-5,15],[-3,16],[-3,15],[0,7],[-97,2],[-2,-10],[-32,-1],[2,39],[128,-5],[2,15],[3,15],[0,2],[2,3],[1,2],[2,2],[6,4],[19,12],[2,2],[2,2],[2,2],[1,3],[7,17],[4,14],[3,12],[2,12],[0,10],[-2,9],[-1,4],[-2,4],[-2,4],[-3,3],[-6,6],[-6,5],[-16,9],[-20,7],[-25,6],[-17,2],[-51,6],[-5,1],[-27,5],[-12,4],[-9,4],[-8,5],[-3,2],[-2,3],[-2,3],[-2,3],[-1,3],[0,11],[-81,2],[1,21],[81,-3],[3,218],[2,14],[1,3],[2,4],[2,4],[2,3],[6,7],[8,6],[17,10],[43,21],[2,1],[3,1],[6,2],[26,4],[4,1],[1,0],[5,2],[2,1],[2,1],[2,1],[1,1],[1,2],[1,2],[-4,157],[-1,10],[-2,10],[-4,10],[-4,9],[-5,8],[-6,8],[-7,6],[-7,4],[-2,1],[-3,1],[-4,2],[-6,0],[-6,0],[-11,-1],[-28,-6],[-6,0],[-4,0],[-2,0],[-1,0],[9,-59],[-205,-41],[-13,3],[-2,17],[-21,-5],[10,-51],[-347,-83],[9,-18],[-192,-46],[13,-32],[-149,-42],[-3,9],[-176,-48],[-7,22],[176,44],[-4,21],[122,35],[-9,59],[-14,-2],[-18,78],[18,4],[7,-17],[57,10],[-2,25],[127,22],[6,-24],[358,84],[11,-32],[17,7],[-7,22],[53,16],[152,38],[-15,102],[-38,-4],[2,-8],[-69,-7],[-12,-2],[-1,11],[-1453,-106],[20,-240],[-22,0],[-20,278],[16,1],[3,-26],[1476,111],[95,8],[-14,96],[1,0],[1,1],[0,0],[1,0],[2,0],[2,0],[12,0],[5,0],[2,1],[2,0],[2,1],[0,1],[1,0],[15,18],[9,11],[11,10],[10,8],[10,6],[10,5],[10,4],[5,1],[7,1],[22,-1],[5,0],[6,0],[6,1],[3,1],[3,1],[3,2],[3,2],[2,3],[3,3],[2,3],[2,3],[2,5],[2,5],[2,11],[-1,12],[0,0],[-3,25],[-1,6],[0,7],[0,3],[1,5],[-112,5],[-4,34],[-356,-7],[0,8],[-36,-5],[-2,-20],[-24,2],[-2,18],[-19,-1],[-4,-112],[-16,0],[-1,56],[-706,-17],[-8,-54],[-34,-1],[12,129],[30,-3],[-1,-56],[706,15],[6,58],[34,2],[1,17],[32,1],[1,-17],[228,5],[161,0],[151,2],[2,5],[2,6],[0,5],[0,3],[0,3],[-2,6],[-3,7],[-11,18],[-8,13],[-24,31],[-6,9],[-5,9],[-2,7],[-2,6],[-1,15],[0,15],[3,34],[0,15],[-3,41],[-4,46],[-4,33],[-4,30],[-2,6],[-3,7],[-3,6],[-5,6],[-6,6],[-6,6],[-7,5],[-7,4],[-4,1],[-4,2],[-4,0],[-5,1],[-5,0],[-27,-1],[-6,0],[-5,0],[-5,2],[-2,1],[-2,1],[-2,1],[-2,1],[-1,2],[-2,1],[-4,7],[-3,6],[-1,3],[-4,13],[-2,10],[-1,8],[0,21],[0,0],[5,60],[1,21],[0,42],[-1,14],[-2,13],[-7,30],[-15,50],[-4,12],[-16,41],[-2,7],[-1,7],[-1,9],[-14,-2],[-637,-5],[2,30],[631,1],[19,1],[27,363],[2,3],[3,2],[3,2],[3,2],[8,4],[9,2],[20,4],[19,2],[51,3],[43,4],[23,2],[35,0],[24,-1],[56,-2],[45,0],[54,3],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[2,2],[1,2],[1,2],[1,2],[0,3],[1,5],[0,6],[-1,3],[-1,2],[-1,3],[-1,1],[-8,8],[-9,7],[-11,6],[-12,4],[-12,4],[-9,1],[-6,1],[-55,7],[-23,4],[-11,3],[-10,3],[-10,4],[-8,5],[-9,7],[-7,8],[-7,10],[-6,10],[-4,12],[-3,12],[-2,12],[1,12],[4,25],[7,23],[5,11],[5,10],[6,9],[7,8],[12,13],[12,10],[3,3],[16,10],[38,24],[17,12],[14,12],[11,13],[15,22],[11,20],[7,20],[2,9],[1,9],[-1,21],[-1,9],[-2,8],[-3,8],[-4,6],[-4,6],[-2,2],[-3,2],[-18,12],[-20,11],[-24,9],[-28,10],[-40,11],[-28,8],[-26,5],[-24,4],[-26,3],[-60,4],[-27,2],[-26,4],[-66,11],[-37,4],[-112,5],[-21,1],[-13,2],[-1,1],[-2,0],[-1,1],[-1,0],[-2,2],[-2,3],[-3,5],[-7,13],[-2,2],[-2,3],[-2,2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-3,0],[-3,-1],[-3,-2],[-5,-4],[-6,-5],[-3,-3],[-2,-3],[-9,-17],[-3,-3],[-3,-3],[-3,-3],[-3,-2],[-8,-4],[-9,-2],[-10,-2],[-24,-18],[-13,-5],[-13,-3],[-11,-1],[-11,-1],[-6,0],[-27,1],[-45,2],[-98,7],[-30,0],[-67,-1],[-61,0],[-62,2],[-5,0],[-5,1],[-5,2],[-5,2],[-9,5],[-4,3],[-4,4],[-4,5],[-4,5],[-283,-30],[-144,-12],[-59,-3],[-50,-1],[-40,-1],[-74,4],[-40,-1],[-23,-1],[-94,-7],[-41,-2],[-109,1],[-49,-1],[-74,-2],[-109,-4],[-45,-203],[-13,-7],[-14,-5],[-16,-5],[-17,-3],[-92,-17],[-109,-18],[-22,-3],[-23,-2],[-25,-1],[-29,0],[-94,6],[-62,1],[-52,-2],[-19,-2],[-43,-9],[-17,-2],[-16,0],[-36,2],[-16,0],[-75,-3],[-60,-5],[-22,-3],[-49,-8],[-21,-3],[-38,-3],[-30,-1],[-29,0],[-39,1],[-59,3],[-67,6],[-18,3],[-18,3],[-17,5],[-18,6],[-13,5],[-11,7],[-10,7],[-8,9],[-10,15],[-8,17],[-6,17],[-39,823],[-102,3],[-74,8],[1,27],[-52,2],[-36,89],[1,-86],[-32,-2],[-4,94],[-38,7],[-57,7],[-57,4],[-57,-1],[-56,-5],[-57,-8],[8,-128],[-147,-5],[3,-43],[12,-89],[19,0],[2,-31],[6,1],[4,-37],[-29,0],[-3,35],[-17,2],[-13,121],[-1,40],[-4,25],[-4,14],[-1,4],[-5,12],[-11,21],[-24,44],[-13,21],[-13,20],[-4,5],[-6,5],[-7,4],[-7,4],[-8,3],[-8,1],[-9,1],[-3,0],[-4,0],[0,-1],[-9,-1],[-35,-5],[-58,-7],[-30,-3],[-30,-2],[-63,-2],[-12,1],[-12,3],[-14,4],[-17,7],[-17,8],[-15,9],[-14,9],[-13,10],[-19,17],[-15,18],[-5,9],[-5,9],[-26,44],[-22,46],[-49,19],[-50,15],[-52,11],[-37,4],[-36,9],[-35,12],[-33,16],[-6,9],[-1,1],[-5,12],[-4,13],[-4,14],[-13,54],[-14,59],[-7,47],[-1,9],[-1,8],[0,12],[2,12],[13,47],[8,36],[2,5],[5,20],[2,5],[2,4],[5,9],[8,9],[9,8],[11,7],[12,7],[13,5],[14,5],[5,1],[5,0],[19,0],[7,0],[7,1],[2,1],[3,1],[12,6],[7,5],[3,2],[2,3],[2,3],[1,2],[15,50],[1,5],[3,11],[9,32],[2,8],[1,3],[0,3],[1,6],[-1,12],[-4,15],[-6,18],[-55,-5],[-1,4],[-3,7],[-38,104],[6,0],[3,0],[4,0],[3,0],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[0,0],[0,0],[0,1],[1,0],[0,1],[-1,3],[0,4],[-2,4],[-2,4],[-6,7],[-14,15],[-25,28],[-51,52],[-21,22],[-68,76],[-22,27],[-18,25],[-45,65],[-33,46],[-7,9],[-17,17],[-6,7],[-3,6],[-3,6],[-2,8],[0,8],[-288,-19],[-40,176],[-24,5],[2,-13],[7,0],[56,-244],[-28,-10],[-53,247],[10,0],[-3,23],[-67,18],[1,9],[-13,1],[-2,-7],[-179,47],[4,24],[67,-17],[-1,-9],[15,-3],[1,9],[201,-53],[-14,50],[61,-31],[31,59],[-18,0],[-18,3],[-17,6],[-16,8],[-14,10],[-12,13],[-10,14],[-8,15],[-5,17],[-3,17],[1,5],[1,7],[3,6],[3,6],[5,6],[5,6],[17,13],[4,2],[4,2],[13,5],[2,1],[5,3],[5,3],[2,2],[2,2],[3,4],[1,4],[-69,37],[13,23],[59,-36],[0,4],[-3,20],[-2,7],[-6,17],[-3,8],[-1,5],[0,4],[1,11],[2,12],[4,14],[3,8],[5,8],[6,7],[8,8],[9,7],[11,6],[26,14],[34,15],[32,13],[30,12],[28,10],[37,8],[0,0],[8,3],[7,3],[10,5],[8,7],[3,3],[3,4],[2,4],[2,4],[3,9],[3,10],[4,27],[1,23],[-1,11],[-2,11],[-6,20],[-8,21],[-10,23],[-14,25],[-7,10],[-17,22],[-6,10],[-6,12],[-4,11],[-1,9],[0,4],[0,4],[4,13],[5,12],[6,13],[8,14],[31,45],[26,35],[14,17],[38,41],[8,10],[16,24],[9,11],[3,2],[3,2],[14,8],[4,3],[2,2],[40,38],[35,33],[3,4],[4,5],[13,22],[18,24],[22,28],[8,8],[9,7],[9,6],[10,4],[13,3],[14,2],[14,0],[6,0],[9,-1],[14,-1],[12,-3],[11,-3],[10,-4],[15,-8],[36,-23],[36,-17],[47,-21],[13,-4],[15,-3],[51,-4],[17,-3],[17,-5],[7,-3],[7,-3],[12,-9],[24,-22],[12,-9],[43,-26],[10,-7],[8,-8],[34,-36],[5,-6],[26,-28],[3,-3],[4,-3],[9,-4],[9,-3],[22,-6],[9,-3],[18,-8],[45,-24],[13,-6],[12,-4],[1,0],[2,-1],[1,0],[2,0],[3,1],[3,1],[6,3],[12,7],[6,4],[3,1],[2,1],[3,1],[3,0],[12,0],[30,-3],[16,1],[19,3],[31,10],[32,9],[22,9],[9,5],[8,6],[4,4],[3,2],[6,6],[10,15],[9,18],[7,19],[14,49],[5,14],[6,11],[13,30],[3,4],[3,3],[3,3],[3,2],[1,1],[1,1],[3,0],[2,1],[3,0],[6,-1],[15,-4],[5,0],[2,0],[2,0],[17,4],[16,4],[12,7],[6,4],[5,4],[8,9],[8,12],[23,43],[9,16],[10,12],[27,28],[6,9],[5,8],[9,18],[5,20],[4,21],[0,22],[-4,70],[-4,62],[0,20],[1,18],[1,3],[0,2],[1,2],[1,2],[2,3],[2,1],[4,4],[5,3],[6,3],[26,10],[10,5],[4,2],[5,4],[6,7],[11,4],[11,5],[9,6],[9,8],[6,9],[5,10],[4,11],[1,11],[-1,11],[1,5],[3,5],[2,4],[4,4],[4,3],[5,3],[5,1],[6,1],[5,0],[6,-1],[5,-1],[4,-3],[52,-6],[53,-2],[52,4],[52,8],[13,2],[14,0],[13,-1],[12,-4],[12,-5],[14,-3],[14,-1],[13,2],[13,4],[12,5],[11,8],[12,12],[14,11],[15,9],[17,6],[0,0],[4,1],[59,5],[110,9],[21,3],[49,8],[21,3],[23,1],[21,-1],[15,-3],[17,-4],[68,-19],[19,-5],[17,-4],[8,-1],[9,1],[10,2],[11,4],[14,3],[7,2],[7,0],[8,0],[9,0],[39,-6],[10,-1],[8,1],[72,8],[94,11],[53,7],[134,20],[108,12],[55,9],[54,12],[28,7],[22,9],[19,10],[16,11],[55,50],[60,52],[14,14],[16,18],[35,48],[40,41],[13,17],[6,8],[0,101],[-12,1],[-18,2],[-51,4],[-58,4],[-37,1],[-23,0],[-54,-3],[-24,0],[-112,3],[-42,0],[-32,-2],[-15,-2],[-36,-8],[-17,-3],[-102,-9],[-95,-7],[-84,-3],[-54,0],[-53,0],[-17,1],[-19,4],[-20,6],[-30,10],[-22,9],[-21,10],[-21,12],[-20,13],[-19,15],[-19,19],[-20,21],[-21,27],[-23,32],[-12,19],[-5,10],[-3,9],[-2,9],[-1,9],[1,18],[3,29],[1,9],[1,6],[1,11],[1,69],[1,30],[8,88],[0,45],[1,17],[4,16],[10,33],[3,15],[12,60],[8,41],[8,33],[4,14],[12,28],[5,12],[13,53],[5,13],[14,27],[5,13],[8,34],[9,40],[11,56],[8,71],[11,60],[3,16],[0,2],[2,9],[1,24],[1,51],[3,74],[4,59],[3,30],[5,20],[6,20],[5,13],[4,6],[3,4],[4,4],[5,3],[3,2],[8,5],[6,4],[164,96],[56,31],[106,53],[41,22],[125,72],[48,26],[47,22],[42,19],[19,7],[44,14],[20,8],[66,29],[25,13],[21,12],[55,32],[105,64],[23,14],[17,11],[16,12],[6,5],[9,8],[14,13],[6,8],[6,9],[5,9],[4,11],[4,11],[3,12],[4,27],[0,25],[-4,25],[-7,26],[-10,26],[-16,33],[-17,32],[-18,31],[-18,29],[-27,41],[-14,22],[-16,23],[-16,20],[-43,52],[-50,59],[-54,62],[-17,19],[-16,16],[-95,86],[-44,40],[-23,23],[-67,71],[-59,64],[-32,32],[-16,19],[-6,10],[-5,9],[-1,2],[-5,12],[-1,7],[-2,9],[-1,18],[-1,32],[0,31],[2,13],[2,12],[25,113],[21,86],[5,14],[11,32],[4,13],[5,28],[5,43],[8,80],[4,57],[-1,36],[-3,48],[-9,99],[-20,91],[-17,109],[-10,96],[-8,93],[4,73],[9,21],[21,43],[62,69],[33,24],[9,3],[80,31],[106,29],[109,33],[86,40],[45,31],[39,26],[50,66],[30,52],[8,55],[1,105],[-21,97],[-1,34],[17,19],[24,-7],[7,-11],[15,-21],[15,-80],[26,-89],[39,-50],[57,-50],[50,-25],[71,-51],[85,-64],[44,-41],[21,-18],[50,-38],[84,-73],[56,-43],[95,-47],[90,-33],[107,-46],[92,-51],[107,-37],[105,-26],[85,-30],[102,-46],[99,-26],[99,-33],[103,-43],[66,-38],[69,-23],[87,-36],[90,-37],[72,-4],[53,-2],[46,-1],[48,24],[33,14],[18,19],[24,25],[8,26],[-6,69],[-13,49],[-13,10],[-38,105],[-34,93],[-38,170],[29,149],[43,54],[111,103],[4,29],[3,29],[-8,64],[-38,158],[-16,94],[-3,82],[19,74],[20,44],[64,100],[93,61],[99,53],[103,52],[90,44],[102,50],[65,24],[113,32],[111,27],[99,30],[106,27],[166,34],[54,10],[25,7],[76,20],[57,27],[43,30],[43,31],[34,17],[49,0],[79,-53],[51,-42],[42,-15],[56,-2],[113,14],[19,1],[33,0],[19,-13],[-2,-22],[-21,-70],[7,-36],[24,-30],[37,-33],[48,-92],[38,-76],[55,-82],[51,-35],[85,-57],[49,-47],[20,-49],[37,-72],[10,-10],[44,-30],[83,-79],[41,-35],[53,-23],[80,-9],[100,5],[90,-1],[107,-5],[50,5],[16,1],[41,4],[115,25],[71,26],[29,28],[30,28],[8,37],[-19,128],[-6,86],[8,97],[28,22],[45,-19],[34,-33],[19,-36],[23,-95],[42,-38],[68,-18],[24,-6],[21,12],[8,11],[-27,139],[-244,602],[49,15],[246,-598],[341,129],[-410,1017],[33,14],[434,-1010],[49,19],[34,1],[34,2],[45,-15],[42,-25],[34,-40],[59,-99],[21,-10],[41,4],[30,14],[31,13],[38,42],[40,100],[8,92],[-7,90],[-82,97],[4,25],[27,24],[63,38],[21,33],[10,23],[-9,26],[4,14],[434,453],[285,56],[-186,584],[24,9],[-9,23],[732,159],[15,-31],[489,384],[-6,26],[328,102],[18,-51],[-322,-106],[-495,-407],[-641,-128],[-21,-17],[178,-527],[579,113],[373,-205],[21,-24],[643,-1921],[37,-34],[46,-83],[33,-68],[56,-93],[12,-40],[-4,-40],[-34,-80],[163,-485],[143,-424],[15,-152],[41,-189],[1,-159],[5,-96],[-44,-63],[-69,-61],[-66,-38],[-53,-31],[-24,-17],[-71,-25],[-101,-6],[-49,-16],[-75,-13],[-18,-17],[-35,-30],[-3,-3],[-2,-3],[-2,-3],[-2,-3],[-3,-8],[-1,-9],[0,-17],[6,-35],[1,-13],[0,-14],[-1,-5],[-2,-6],[-6,-20],[-8,-17],[-8,-16],[-10,-14],[-4,-5],[-4,-4],[-19,-12],[-6,-5],[-6,-6],[-1,-3],[-2,-3],[-2,-5],[-1,-5],[0,-6],[1,-6],[4,-13],[0,0],[7,-15],[5,-7],[6,-7],[30,-31],[6,-8],[6,-8],[10,-18],[7,-16],[3,-15],[1,-6],[-1,-7],[0,-1],[0,-2],[-2,-2],[-1,-3],[-2,-2],[-5,-4],[-13,-9],[-4,-5],[-2,-2],[-1,-2],[-1,-2],[0,-2],[0,-1],[-1,-28],[3,-26],[6,-36],[6,-29],[4,-14],[11,-32],[5,-14],[1,-6],[0,-7],[-2,-24],[0,-9],[1,-8],[1,-4],[77,-3],[1,23],[218,7],[0,-18],[129,-3],[2,-28],[-126,-3],[3,-16],[-222,-8],[0,29],[-68,-1],[19,-25],[23,-34],[12,-22],[2,-7],[2,-7],[1,-8],[-1,-8],[-2,-16],[-11,-43],[-1,-13],[0,-12],[8,-61],[9,-76],[3,-28],[3,-43],[0,-7],[-1,-8],[-7,-31],[-2,-12],[0,-7],[1,-6],[2,-5],[3,-5],[3,-4],[3,-3],[14,-10],[5,-4],[32,-32],[5,-6],[5,-7],[8,-15],[6,-19],[8,-33],[2,-11],[1,-13],[-1,-14],[-4,-44],[0,-13],[2,-12],[1,-4],[1,-3],[2,-3],[3,-4],[19,-19],[6,-7],[2,-3],[2,-3],[1,-3],[1,-4],[1,-24],[-1,-25],[-3,-23],[-5,-23],[-24,-77],[-8,-27],[-2,-7],[-11,-43],[-7,-31],[-6,-35],[0,-4],[0,-2],[0,0],[0,-1],[0,0],[1,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,1],[1,0],[0,2],[7,20],[14,49],[38,110],[12,43],[13,56],[1,7],[1,7],[-1,15],[-4,16],[-9,34],[-4,14],[-2,16],[1,13],[1,4],[1,3],[2,4],[2,3],[3,3],[4,3],[9,5],[11,4],[12,2],[12,2],[6,-1],[6,0],[21,-4],[23,-8],[21,-9],[49,-23],[23,-9],[21,-6],[20,-4],[41,-3],[90,-5],[37,-3],[16,-3],[45,-9],[14,-1],[13,0],[21,3],[22,6],[21,7],[50,20],[26,8],[74,19],[71,16],[34,6],[34,3],[34,1],[33,-1],[13,-2],[14,-3],[13,-4],[11,-5],[11,-6],[8,-7],[7,-8],[3,-4],[2,-4],[9,-19],[8,-21],[6,-23],[7,-27],[1,-7],[1,-9],[-1,-37],[2,-10],[2,-8],[4,-11],[7,-10],[9,-10],[11,-9],[13,-9],[15,-9],[18,-8],[22,-9],[27,-10],[30,-8],[33,-7],[20,-4],[17,-3],[92,-12],[91,-10],[29,-3],[3,0],[128,-9],[101,-9],[53,-5],[25,-3],[25,-4],[21,-6],[27,-9],[10,-6],[8,-5],[20,-15],[6,-5],[5,-5],[10,-15],[9,-15],[10,-22],[9,-21],[6,-15],[1,-7],[1,-6],[-1,-52],[2,-48],[3,-26],[3,-10],[3,-9],[22,-41],[26,-46],[10,-14],[17,-18],[10,-10],[10,-8],[9,-6],[9,-5],[11,-4],[12,-4],[13,-3],[15,-2],[45,-4],[21,-3],[15,-4],[12,-5],[27,-12],[11,-5],[10,-3],[9,-1],[10,-1],[10,1],[10,2],[9,3],[13,7],[31,17],[28,13],[21,9],[5,1],[6,2],[13,1],[14,0],[19,-1],[12,-2],[28,-6],[13,-2],[22,-1],[32,1],[26,0],[12,0],[12,2],[6,2],[5,2],[6,3],[7,4],[22,16],[8,6],[22,13],[6,3],[7,2],[5,2],[6,0],[26,2],[41,5],[37,6],[20,5],[18,5],[18,6],[16,7],[48,24],[50,27],[25,12],[23,10],[10,3],[23,5],[8,3],[13,6],[13,7],[14,10],[13,12],[7,8],[11,17],[6,7],[47,50],[17,20],[11,15],[11,18],[11,22],[22,52],[17,38],[13,29],[10,25],[6,11],[7,13],[4,5],[6,5],[6,5],[7,5],[15,7],[18,6],[15,4],[15,2],[9,0],[11,0],[21,-3],[7,-1],[8,-3],[15,-8],[18,-13],[15,-14],[5,-6],[5,-7],[3,-7],[3,-7],[1,0],[1,1],[2,1],[1,2],[1,2],[1,3],[1,2],[0,2],[-1,3],[0,1],[0,1],[-7,11],[-9,11],[-10,8],[-5,4],[-6,3],[-49,23],[-13,6],[-45,21],[-5,2],[-7,2],[-19,4],[-50,6],[-21,6],[-18,9],[-13,7],[-5,4],[-4,4],[-11,12],[-11,13],[-11,15],[-9,14],[-6,13],[-5,14],[-4,15],[-1,13],[0,6],[1,16],[0,3],[1,19],[-2,15],[-5,19],[-9,27],[-12,33],[-4,10],[-18,55],[-15,39],[-6,18],[-9,40],[-11,52],[-3,16],[-5,40],[0,7],[0,9],[4,20],[6,24],[7,22],[18,46],[13,33],[10,22],[2,3],[23,44],[30,52],[7,11],[25,36],[12,22],[12,28],[12,30],[9,29],[7,29],[4,26],[3,61],[3,52],[3,28],[1,2],[3,16],[6,19],[14,40],[9,21],[2,4],[6,14],[12,20],[20,29],[19,25],[16,18],[50,47],[28,27],[14,16],[30,43],[33,45],[7,9],[9,9],[11,10],[14,11],[30,21],[23,15],[48,31],[49,30],[29,16],[23,11],[18,6],[51,15],[62,22],[47,14],[28,6],[30,5],[27,1],[27,-1],[21,-4],[18,-4],[27,-8],[24,-8],[58,-20],[2,-1],[52,-20],[24,-9],[21,-6],[9,-2],[11,0],[11,0],[14,1],[28,4],[21,5],[55,19],[66,23],[24,10],[31,18],[77,46],[51,31],[31,16],[85,39],[77,35],[16,9],[17,11],[17,13],[20,18],[60,57],[44,43],[39,41],[63,60],[57,53],[47,42],[13,12],[11,9],[11,7],[10,5],[12,4],[35,11],[26,10],[-148,100],[-416,282],[-16,17],[-2,18],[49,64],[10,2],[9,-6],[456,-313],[105,-73],[2,8],[3,8],[8,18],[6,10],[3,6],[13,18],[14,19],[5,6],[6,4],[12,7],[18,10],[40,19],[18,13],[8,7],[7,7],[15,19],[11,19],[20,44],[15,39],[20,60],[14,48],[16,53],[17,57],[8,28],[4,21],[6,55],[4,50],[1,24],[0,22],[-8,60],[-4,58],[-6,66],[-4,36],[-6,25],[-21,72],[-15,50],[-6,25],[-8,39],[-4,26],[-2,18],[0,15],[1,20],[7,54],[8,74],[4,56],[1,14],[-1,5],[-1,5],[-3,11],[-3,8],[-10,19],[-12,19],[-16,33],[-8,21],[-3,11],[-1,12],[0,12],[0,11],[4,27],[3,32],[-1,32],[2,29],[0,30],[-2,27],[-1,7],[-1,6],[-3,4],[-1,2],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-4,0],[-5,0],[-25,-1],[-7,0],[-3,1],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[0,0],[-1,0],[0,1],[0,2],[-1,1],[0,3],[0,2],[1,2],[1,3],[3,4],[9,11],[5,5],[12,10],[4,4],[1,2],[2,3],[1,3],[1,3],[1,7],[0,3],[-1,3],[-4,15],[-7,15],[-17,28],[-19,28],[-6,7],[-9,8],[-5,4],[-14,9],[-3,3],[-3,2],[-8,10],[-9,15],[-15,26],[-5,12],[-4,10],[-10,33],[-9,27],[-11,45],[-14,50],[-16,60],[-10,31],[-10,26],[-10,20],[-16,28],[-17,28],[-14,19],[-7,8],[-8,6],[-9,6],[-9,5],[-19,7],[-7,2],[-6,2],[-11,0],[-9,0],[-3,-1],[-2,0],[-12,-4],[-3,-1],[-3,0],[0,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,1],[-2,1],[-1,2],[-1,1],[0,0],[-3,5],[-2,5],[-2,5],[0,6],[-1,13],[2,15],[2,7],[5,19],[3,19],[-1,8],[-1,7],[-2,6],[-3,7],[-10,18],[-13,22],[-9,13],[-5,5],[-2,2],[-2,2],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,0],[-1,-1],[-2,0],[-1,-2],[-5,-5],[-1,-1],[-1,-1],[-9,-5],[-9,-3],[-1,0],[-1,0],[0,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,1],[-1,2],[-1,2],[-4,6],[-2,6],[-2,7],[-1,7],[0,5],[1,5],[2,12],[13,38],[5,22],[1,8],[0,7],[-1,5],[-1,5],[-4,11],[-15,34],[-12,29],[-1,2],[-1,2],[-3,3],[-3,3],[-2,2],[-2,1],[-6,3],[-4,1],[-4,1],[-2,0],[-2,0],[-15,-1],[-27,-1],[-5,0],[-6,1],[-12,3],[-12,5],[-15,7],[-12,8],[-12,10],[-4,3],[-8,5],[-15,10],[-28,20],[-5,7],[-5,10],[-5,11],[-8,21],[-2,7],[-5,16],[-5,12],[-7,16],[-4,9],[-3,8],[-4,7],[-5,10],[-6,6],[-8,9],[-3,8],[-3,12],[-2,8],[-1,3],[-3,8],[-3,9],[-2,9],[-2,9],[-1,11],[-1,10],[-1,13],[-2,11],[-2,11],[-1,13],[-2,9],[-6,8],[-7,6],[-11,7],[-10,7],[-15,12],[-8,6],[-7,6],[-3,2],[-4,3],[-4,4],[-7,7],[-6,6],[-7,6],[-6,10],[-4,11],[-2,8],[4,7],[3,1],[0,0],[5,3],[7,2],[11,-1],[12,-3],[10,-4],[10,-5],[13,-8],[15,-10],[13,-10],[6,-4],[12,-12],[7,-6],[5,-6],[4,-4],[4,-10],[1,-9],[-2,-10],[-2,-9],[-1,-5],[1,-6],[7,-14],[5,-7],[6,-6],[7,-7],[13,-10],[11,-7],[10,-8],[10,-5],[7,-5],[12,-6],[5,-4],[10,-5],[12,-2],[10,2],[12,2],[12,1],[12,0],[13,0],[24,-2],[8,0],[16,0],[17,-1],[15,-1],[11,0],[13,0],[13,1],[18,4],[11,3],[11,2],[9,1],[9,2],[9,2],[17,2],[9,2],[10,1],[9,2],[11,2],[26,6],[10,3],[10,2],[11,3],[9,3],[9,2],[8,2],[12,4],[12,3],[10,3],[11,5],[10,6],[13,10],[7,6],[13,12],[6,7],[5,6],[12,9],[13,8],[14,8],[17,5],[13,5],[16,4],[13,2],[14,1],[12,0],[15,-1],[12,0],[13,-1],[15,-2],[19,-1],[20,-1],[18,0],[19,1],[19,1],[18,0],[33,2],[19,1],[17,1],[15,1],[12,0],[11,0],[12,-1],[17,-1],[2,1],[8,0],[6,2],[11,3],[13,1],[13,1],[11,4],[11,4],[12,4],[10,3],[10,3],[11,7],[17,15],[12,11],[3,4],[6,5],[7,9],[8,10],[6,7],[6,6],[6,7],[4,9],[1,10],[-3,7],[-4,10],[0,9],[1,1],[2,4],[0,2],[2,1],[1,0],[4,3],[9,0],[9,-3],[4,-5],[5,-9],[6,-10],[5,-7],[2,-1],[4,1],[8,3],[10,4],[9,6],[9,7],[10,7],[10,6],[10,7],[12,10],[8,9],[11,11],[9,10],[10,14],[8,14],[8,17],[3,8],[3,8],[2,6],[0,2],[3,10],[0,9],[1,10],[-1,10],[-1,7],[-2,9],[-3,11],[-1,9],[-2,10],[-3,16],[-2,9],[-4,9],[-8,13],[-13,11],[-8,6],[-7,5],[-10,9],[-9,10],[-8,12],[-7,11],[-4,11],[-5,12],[-6,13],[-7,14],[-8,13],[-7,14],[-5,13],[-4,8],[-3,9],[-3,10],[-1,14],[1,12],[1,13],[3,10],[2,10],[3,9],[5,10],[7,7],[8,10],[13,15],[9,7],[11,9],[15,10],[3,2],[4,3],[14,8],[5,3],[32,15],[37,9],[12,4],[10,3],[9,4],[1,0],[10,3],[2,1],[11,3],[13,4],[10,3],[10,4],[12,3],[12,4],[14,1],[13,0],[14,-2],[12,-3],[12,-3],[11,-5],[23,-16],[22,-19],[21,-21],[20,-20],[12,-17],[25,-43],[6,-9],[13,-20],[12,-18],[5,-8],[9,-14],[8,-10],[10,-11],[9,-6],[9,-6],[11,-6],[11,-4],[11,-5],[12,-6],[11,-5],[10,-5],[5,-4],[3,-3],[11,-5],[13,-4],[15,-4],[15,-4],[13,-3],[14,-4],[13,-3],[18,-6],[11,-3],[10,-2],[10,-4],[14,-1],[12,0],[12,-1],[13,0],[14,1],[14,0],[14,0],[15,1],[15,1],[2,0],[13,1],[16,2],[13,2],[11,3],[11,2],[15,2],[10,2],[12,2],[10,3],[11,4],[1,2],[-4,10],[2,11],[4,4],[7,3],[8,0],[9,-9],[6,-7],[5,-9],[1,-11],[4,-6],[8,-5],[9,-5],[10,-8],[9,-11],[11,-9],[14,-8],[8,-3],[14,-5],[11,-2],[11,-2],[11,0],[12,1],[21,4],[12,3],[10,4],[16,6],[16,7],[15,9],[8,5],[14,8],[9,5],[12,7],[13,9],[9,7],[11,9],[10,9],[11,9],[10,8],[11,7],[10,8],[10,10],[10,8],[24,19],[12,10],[12,10],[9,9],[9,7],[9,7],[8,7],[7,5],[7,6],[10,8],[9,9],[9,9],[8,9],[9,10],[7,8],[7,7],[6,7],[6,6],[10,11],[11,11],[13,12],[7,7],[8,6],[7,7],[8,6],[7,8],[7,7],[16,14],[7,7],[8,8],[9,7],[3,2],[5,4],[7,6],[12,9],[11,8],[14,9],[13,11],[7,6],[7,6],[7,6],[7,7],[8,8],[8,8],[8,8],[8,9],[8,8],[7,7],[8,6],[7,6],[5,4],[8,5],[11,7],[8,5],[9,4],[7,4],[13,8],[11,8],[8,8],[6,10],[5,10],[3,8],[1,9],[-2,9],[-2,12],[-3,10],[-4,9],[-4,12],[1,2],[11,7],[13,5],[7,2],[9,3],[12,5],[1,1],[-49,103],[13,5],[46,-104],[9,3],[6,1],[5,-6],[0,-1],[6,-11],[4,-9],[3,-9],[4,-8],[3,-9],[4,-9],[1,-2],[7,3],[11,4],[10,4],[10,5],[13,5],[15,8],[9,5],[9,4],[8,5],[18,8],[8,5],[6,4],[10,7],[9,8],[11,10],[13,12],[10,13],[6,5],[9,8],[7,8],[6,11],[6,8],[7,11],[6,11],[2,8],[0,2],[-1,9],[-4,7],[-7,9],[0,12],[5,0],[3,1],[5,-4],[6,-8],[7,-9],[7,-6],[6,-2],[11,3],[-153,281],[23,9],[145,-281],[-2,12],[2,7],[4,3],[8,4],[9,-3],[9,-5],[8,-2],[9,1],[12,4],[16,6],[7,3],[14,10],[7,7],[6,6],[8,11],[5,8],[0,6],[4,9],[7,11],[13,12],[7,7],[7,6],[6,5],[11,7],[6,7],[4,9],[-1,8],[-4,10],[-5,11],[-8,12],[-1,5],[1,5],[5,7],[8,2],[4,-2],[8,-4],[-130,215],[21,10],[135,-243],[10,-7],[10,-4],[12,-3],[12,5],[15,9],[6,4],[14,8],[19,14],[13,10],[13,12],[12,12],[7,8],[6,7],[6,8],[8,9],[7,8],[7,7],[8,8],[8,6],[7,5],[8,6],[8,6],[8,6],[7,5],[14,9],[14,10],[15,12],[7,6],[8,8],[6,6],[5,6],[10,13],[8,10],[-147,280],[22,9],[138,-266],[10,13],[4,6],[11,13],[12,14],[6,6],[6,7],[6,6],[11,13],[-129,246],[18,8],[127,-235],[31,39],[29,40],[4,6],[41,61],[24,40],[24,42],[29,54],[14,26],[13,24],[44,73],[48,69],[13,18],[19,25],[45,55],[48,54],[50,52],[68,53],[65,57],[62,59],[60,61],[38,41],[36,43],[31,32],[35,29],[38,25],[40,21],[43,17],[44,13],[45,8],[10,2],[13,2],[6,1],[13,3],[11,3],[11,4],[12,3],[16,3],[15,3],[12,4],[11,3],[-60,292],[18,4],[59,-287],[7,4],[10,7],[11,7],[12,7],[9,5],[9,4],[9,5],[9,7],[12,7],[10,6],[14,6],[9,4],[10,5],[10,5],[9,5],[9,5],[11,8],[9,7],[9,10],[12,12],[7,5],[8,5],[10,6],[8,4],[13,5],[10,3],[12,4],[11,3],[7,6],[7,8],[7,6],[6,9],[2,7],[1,9],[0,9],[0,10],[0,10],[-3,8],[-2,12],[1,4],[2,2],[4,2],[8,-3],[4,1],[8,7],[7,4],[1,0],[11,2],[7,0],[8,-2],[4,-6],[3,-9],[2,-9],[3,-9],[6,-11],[6,-9],[9,-10],[12,-10],[13,-8],[11,-5],[10,-3],[12,-3],[11,-1],[10,-2],[11,-1],[11,-1],[12,-3],[10,-6],[8,-5],[10,-6],[10,-6],[10,-7],[10,-8],[16,-17],[9,-14],[5,-6],[10,-10],[9,-5],[9,-5],[11,-7],[11,-7],[11,-9],[11,-9],[14,-12],[7,-6],[7,-5],[7,-7],[7,-6],[5,-6],[11,-10],[9,-7],[7,-7],[7,-7],[9,-10],[11,-11],[10,-10],[10,-10],[9,-10],[16,-17],[12,-12],[7,-8],[7,-7],[8,-8],[7,-8],[8,-8],[9,-9],[8,-9],[10,-11],[9,-10],[9,-10],[8,-9],[8,-9],[7,-9],[7,-8],[7,-7],[6,-7],[7,-7],[8,-8],[10,-8],[9,-8],[8,-5],[10,-6],[11,-7],[11,-7],[22,-17],[11,-9],[9,-8],[9,-9],[7,-7],[7,-6],[6,-6],[8,-9],[7,-10],[10,-11],[10,-10],[7,-8],[7,-6],[2,-5],[9,-9],[10,-10],[13,-12],[14,-12],[12,-10],[13,-12],[6,-6],[7,-7],[6,-6],[13,-11],[8,-7],[8,-7],[16,-15],[9,-8],[8,-7],[9,-7],[9,-6],[8,-6],[7,-6],[8,-6],[15,-12],[8,-7],[8,-6],[8,-6],[9,-7],[8,-6],[8,-8],[8,-7],[11,-9],[9,-7],[9,-7],[8,-7],[9,-7],[8,-7],[10,-8],[9,-8],[10,-8],[9,-7],[17,-13],[8,-6],[7,-7],[8,-6],[8,-7],[8,-7],[6,-6],[11,-10],[11,-12],[14,-11],[7,-6],[7,-7],[9,-7],[7,-7],[7,-7],[8,-6],[7,-7],[7,-6],[7,-7],[7,-6],[9,-8],[9,-7],[11,-9],[13,-13],[9,-8],[8,-7],[9,-8],[14,-13],[13,-11],[11,-11],[12,-10],[12,-8],[9,-7],[9,-8],[10,-8],[9,-11],[13,-10],[11,-7],[15,-9],[14,-9],[9,-4],[8,-5],[8,-4],[8,-5],[7,-5],[14,-7],[11,-6],[9,-5],[8,-4],[15,-9],[5,-2],[10,-5],[10,-4],[13,-4],[14,-3],[14,-3],[16,-4],[18,-4],[10,-3],[11,-4],[12,-3],[10,-4],[10,-4],[9,-4],[10,-4],[10,-4],[11,-3],[9,-3],[10,-3],[9,-3],[10,-3],[9,-2],[8,-2],[17,-5],[10,-3],[9,-2],[10,-3],[5,-2],[4,-1],[12,-3],[8,-3],[10,-3],[17,-4],[13,-4],[8,-3],[11,-4],[11,-4],[8,-3],[12,-7],[9,-6],[7,-5],[8,-8],[5,-9],[5,-10],[6,-11],[5,-10],[6,-10],[7,-10],[10,-13],[12,-15],[7,-8],[9,-9],[12,-9],[10,-7],[8,-5],[8,-6],[7,-6],[4,-2],[4,-10],[5,-5],[8,-9],[7,-9],[6,-10],[7,-9],[6,-8],[6,-10],[8,-11],[7,-8],[8,-12],[7,-11],[7,-10],[8,-10],[8,-12],[6,-9],[5,-12],[4,-8],[5,-11],[4,-6],[7,-8],[8,-9],[10,-8],[8,-5],[9,-6],[9,-5],[8,-5],[10,-6],[9,-5],[10,-5],[10,-4],[11,-5],[11,-4],[11,-5],[12,-5],[10,-4],[9,-4],[11,-5],[10,-4],[8,-4],[9,-4],[10,-6],[12,-8],[11,-7],[6,-3],[11,-5],[11,-5],[11,-6],[8,-5],[8,-5],[8,-5],[9,-5],[9,-5],[10,-5],[10,-5],[8,-3],[8,-5],[10,-6],[10,-5],[11,-5],[12,-6],[11,-6],[11,-5],[9,-6],[9,-4],[10,-5],[10,-5],[11,-4],[11,-6],[7,-4],[10,-6],[9,-6],[13,-7],[10,-4],[11,-5],[10,-5],[13,-6],[13,-6],[15,-7],[14,-7],[16,-9],[9,-6],[8,-5],[9,-6],[8,-5],[9,-6],[10,-7],[10,-5],[10,-6],[8,-4],[8,-5],[11,-7],[10,-6],[6,-4],[9,-4],[10,-5],[12,-6],[13,-5],[14,-7],[11,-4],[11,-4],[10,-4],[12,-4],[9,-5],[8,-6],[3,-3],[5,-4],[8,-7],[5,-5],[4,-3],[8,-9],[9,-9],[8,-5],[10,-6],[10,-5],[13,-5],[11,-3],[11,-4],[18,-8],[6,-3],[11,-6],[11,-5],[9,-6],[10,-5],[10,-7],[10,-7],[9,-6],[4,-2],[6,-4],[9,-5],[9,-4],[9,-5],[10,-3],[10,-4],[12,-3],[12,-2],[11,-1],[13,-2],[10,-3],[12,-5],[9,-4],[9,-4],[15,-8],[14,-8],[15,-9],[9,-6],[8,-6],[7,-5],[15,-8],[14,-8],[11,-6],[7,-8],[9,-6],[11,-5],[9,-5],[11,-7],[11,-6],[10,-5],[9,-6],[8,-7],[10,-7],[8,-6],[8,-4],[12,-6],[7,-4],[12,-3],[14,-4],[9,-3],[9,-4],[9,-5],[8,-6],[6,-7],[8,-9],[4,-9],[3,-9],[2,-10],[1,-10],[0,-9],[0,-10],[-1,-11],[-1,-10],[-3,-11],[-3,-11],[-4,-13],[-3,-9],[-4,-9],[-6,-16],[-3,-8],[-2,-7],[-6,-17],[-3,-9],[-3,-10],[-4,-11],[-2,-8],[-2,-7],[-5,-14],[-8,-16],[-3,-9],[-6,-14],[-3,-8],[2,-4],[18,-31],[11,-18],[173,473],[43,-16],[-84,-251],[67,-25],[-72,-197],[77,12],[57,24],[17,70],[2,12],[54,-11],[66,199],[74,-23],[-68,-191],[64,-13],[3,1],[0,0],[2,2],[2,1],[3,3],[2,1],[23,-4],[6,29],[8,58],[3,6],[27,-4],[2,9],[5,10],[6,11],[5,9],[5,10],[2,7],[2,9],[2,9],[1,8],[1,8],[2,13],[2,7],[2,10],[2,13],[2,11],[3,12],[2,11],[3,11],[2,10],[2,12],[1,10],[1,10],[1,8],[1,10],[2,12],[1,8],[3,11],[3,19],[3,10],[1,9],[2,9],[3,10],[2,9],[3,9],[4,10],[3,9],[4,10],[4,9],[4,8],[3,12],[3,8],[2,6],[2,3],[4,12],[2,7],[5,12],[4,12],[3,10],[3,11],[3,8],[3,10],[3,12],[3,12],[2,9],[3,10],[3,10],[3,9],[4,9],[4,9],[3,9],[5,10],[12,12],[10,5],[11,4],[9,2],[9,3],[10,2],[12,4],[13,3],[12,5],[10,4],[11,4],[10,2],[13,0],[11,1],[14,1],[10,0],[8,-1],[9,-2],[9,-4],[11,-5],[8,-5],[10,-3],[12,-2],[13,1],[207,-57],[11,-62],[6,-63],[1,-63],[-2,-63],[-8,-63],[-11,-62],[-16,-61],[132,-67],[70,-22],[46,-7],[5,-1],[12,-2],[12,-3],[9,-2],[8,-2],[13,-3],[10,-2],[10,-2],[10,-2],[12,-3],[13,-2],[12,-2],[14,-2],[15,-3],[14,-2],[16,-2],[16,-2],[27,-4],[10,-1],[9,-2],[8,-1],[16,-3],[15,-3],[14,-3],[11,-2],[9,-1],[12,-2],[10,-2],[13,-2],[10,-1],[10,-1],[10,-1],[13,-2],[9,-1],[10,-2],[12,-2],[15,-2],[11,-2],[5,0],[9,-2],[5,-1],[14,-2],[13,-1],[9,-1],[11,0],[12,-3],[11,-1],[11,0],[11,-2],[12,-3],[9,-2],[12,-3],[11,-2],[12,-1],[12,-4],[11,-3],[14,-3],[11,-2],[11,-3],[12,-3],[11,-3],[7,-2],[13,-2],[10,-2],[10,-1],[13,-3],[12,-4],[12,-5],[10,-4],[10,-6],[11,-7],[11,-5],[9,-3],[9,-3],[10,-4],[10,-3],[11,-3],[10,-2],[10,-3],[11,-5],[8,-4],[9,-4],[9,-2],[12,-4],[7,-2],[12,-1],[8,1],[12,-3],[11,-3],[10,-3],[13,-3],[12,-2],[13,-2],[9,-2],[10,-4],[9,-3],[8,-2],[10,-3],[10,-3],[10,0],[10,-1],[11,-1],[10,-1],[13,-4],[11,-1],[16,-1],[5,-1],[12,-3],[14,-3],[11,-2],[11,-2],[12,-3],[14,-4],[16,-4],[14,-3],[12,-2],[9,-2],[14,-5],[11,-3],[10,-3],[7,-3],[10,-5],[11,-6],[10,-5],[10,-5],[11,-6],[12,-6],[6,-3],[10,-6],[11,-6],[7,-4],[9,-4],[1,-1],[10,-4],[13,-3],[8,-3],[10,-4],[11,-5],[8,-4],[9,-5],[10,-5],[11,-6],[9,-4],[12,-5],[10,-4],[9,-4],[12,-4],[10,-3],[11,-3],[8,-2],[6,0],[10,4],[7,0],[7,0],[10,-1],[10,-2],[8,-6],[10,-6],[10,-3],[13,-4],[9,-3],[11,-4],[8,-1],[12,-1],[8,-1],[12,2],[10,3],[11,1],[10,2],[14,-2],[11,-3],[8,-1],[12,-2],[10,-1],[9,-1],[10,0],[12,-3],[9,-4],[9,-3],[10,-4],[12,-6],[12,-3],[14,-3],[11,-1],[9,-2],[10,0],[9,0],[10,0],[9,-2],[10,-1],[15,-3],[7,14],[199,-34],[69,-11],[0,0],[127,-49],[4,-1],[11,-4],[12,-2],[10,0],[11,7],[217,-47],[383,-108],[4,-1],[35,-10],[21,129],[5,-1],[10,52],[-6,0],[25,151],[26,-4],[-27,-149],[-5,0],[-9,-51],[5,-2],[-25,-125],[40,2],[21,83],[36,2],[37,-1],[47,-4],[48,-7],[46,-12],[28,-9],[5,-2],[50,-20],[29,-17],[47,-31],[44,-35],[18,-17],[13,-14],[9,-9],[29,-34],[26,-37],[6,-9],[11,-2],[7,0],[5,45],[4,1],[5,21],[-5,0],[1,48],[30,-1],[-5,-50],[-9,0],[-3,-20],[3,0],[-9,-48],[21,-5],[17,-1],[13,0],[12,2],[0,0],[5,0],[8,2],[6,2],[6,2],[9,3],[10,4],[10,1],[11,1],[3,-1],[9,-1],[8,-2],[5,-2],[7,-3],[6,-4],[5,-4],[6,-4],[7,-3],[7,-2],[9,-2],[9,0],[9,1],[20,3],[20,5],[19,8],[34,6],[34,3],[34,-1],[34,-5],[14,151],[13,1],[-20,49],[16,8],[25,-54],[-21,-12],[-12,-149],[15,-13],[9,-6],[10,3],[10,2],[12,4],[12,3],[11,4],[13,8],[12,7],[10,5],[9,5],[11,5],[10,6],[9,4],[9,3],[16,2],[8,0],[2,14],[9,-1],[20,171],[-14,3],[5,28],[12,-1],[12,115],[23,-5],[-14,-110],[11,-1],[-1,-31],[-15,0],[-28,-183],[14,0],[13,1],[9,1],[12,1],[14,2],[8,1],[14,4],[7,2],[27,232],[18,0],[-27,-228],[5,1],[8,4],[9,4],[13,2],[8,3],[10,3],[9,2],[9,3],[10,4],[29,224],[17,0],[-27,-216],[10,5],[10,4],[11,5],[11,5],[11,5],[9,4],[8,4],[10,5],[17,146],[-5,0],[6,89],[26,-1],[-12,-88],[-5,0],[-13,-139],[5,3],[10,4],[9,5],[8,4],[8,4],[15,8],[13,6],[12,5],[11,5],[10,5],[10,6],[22,153],[-6,2],[3,60],[23,-1],[-6,-61],[-5,0],[-12,-142],[11,7],[6,3],[9,5],[9,4],[10,5],[7,5],[8,5],[8,4],[9,6],[8,7],[7,8],[6,10],[3,10],[1,11],[1,9],[1,9],[1,11],[1,13],[1,10],[1,11],[1,8],[2,9],[2,10],[5,12],[6,6],[7,8],[7,7],[9,6],[9,5],[6,2],[10,1],[11,-1],[11,0],[11,1],[13,0],[11,-1],[13,0],[12,-1],[10,0],[12,1],[11,0],[8,0],[11,1],[11,0],[11,0],[13,0],[35,-1],[17,-18],[6,-70],[7,-146],[5,-4],[9,-3],[9,-3],[9,-3],[10,-4],[13,-4],[9,-2],[7,-4],[9,-3],[13,-5],[10,-1],[8,2],[10,2],[11,-1],[10,-3],[11,-3],[11,-4],[12,-5],[8,-3],[12,-4],[4,1],[2,6],[3,11],[2,3],[6,-8],[5,-11],[4,-8],[3,-11],[2,-11],[7,-5],[12,-2],[9,-1],[10,-2],[10,-2],[11,-2],[12,-3],[13,-4],[10,-2],[8,-2],[13,-1],[9,-2],[14,0],[9,0],[11,-1],[13,-1],[12,0],[12,-1],[10,0],[12,0],[10,0],[13,0],[11,0],[11,1],[12,0],[11,1],[13,1],[10,0],[9,2],[12,1],[11,2],[9,1],[10,1],[13,3],[13,3],[14,2],[10,2],[12,3],[9,3],[9,2],[10,2],[11,2],[17,4],[5,1],[10,2],[11,3],[10,80],[-8,0],[6,44],[7,-1],[6,28],[15,-4],[-22,-143],[5,1],[9,3],[12,2],[7,2],[11,1],[10,0],[10,0],[13,1],[9,2],[12,2],[12,3],[10,2],[9,3],[9,2],[12,2],[10,3],[14,3],[11,3],[12,3],[7,2],[9,2],[10,4],[9,3],[10,4],[10,4],[10,4],[8,4],[10,4],[10,5],[8,4],[7,2],[7,6],[9,6],[10,7],[10,6],[9,4],[10,6],[9,5],[14,5],[17,4],[12,4],[10,3],[11,3],[3,2],[0,0],[8,8],[8,4],[9,2],[9,-8],[6,-9],[5,-10],[3,-9],[2,-10],[0,-10],[0,-9],[1,-12],[2,-9],[2,-8],[4,-11],[5,-7],[9,-8],[7,-6],[10,-6],[10,-6],[8,-5],[9,-4],[11,-2],[11,-2],[11,1],[12,1],[9,3],[9,2],[11,4],[10,2],[10,2],[9,1],[16,3],[8,2],[9,5],[2,8],[0,2],[2,12],[1,9],[2,11],[3,8],[4,1],[3,-2],[5,-6],[1,0],[0,-1],[0,-10],[3,-12],[1,-2],[4,-5],[9,-9],[8,-6],[7,-9],[5,-8],[7,-10],[5,-10],[6,-6],[8,-7],[8,-4],[10,-5],[12,-3],[10,-3],[10,-3],[12,-3],[9,-2],[15,57],[50,-11],[-22,-54],[17,1],[10,2],[3,1],[10,1],[13,4],[12,3],[7,1],[52,279],[23,-3],[-14,-79],[-9,3],[-3,-29],[38,-6],[-9,-42],[-34,1],[-6,-25],[7,-1],[-7,-39],[-10,-2],[-14,-59],[21,-5],[12,-1],[12,-2],[3,-3],[8,1],[14,-1],[11,-3],[9,-3],[9,-6],[8,-5],[12,-7],[12,-7],[11,-4],[10,-3],[16,-5],[12,-3],[11,-3],[10,-3],[9,-3],[9,-2],[12,-2],[12,-2],[12,-1],[13,-1],[10,0],[14,1],[10,0],[9,1],[9,4],[7,9],[4,12],[0,7],[-1,12],[-2,10],[-3,9],[-3,10],[-4,11],[-4,10],[-3,11],[2,9],[2,3],[3,3],[7,5],[11,2],[9,-1],[12,-4],[12,-6],[8,-5],[3,-3],[2,-3],[6,-10],[2,-9],[2,-10],[6,-9],[8,-8],[9,-8],[8,-7],[9,-6],[9,-5],[11,-5],[10,-6],[11,-6],[8,-4],[8,-6],[8,-6],[4,-8],[3,-11],[2,-11],[3,-9],[5,-8],[8,-8],[10,-6],[9,-5],[10,-4],[10,-4],[10,-3],[11,-5],[11,-3],[9,-2],[12,-3],[12,-3],[17,-4],[5,-1],[8,-2],[13,-1],[12,-2],[9,-1],[12,-2],[10,-1],[10,-2],[13,-2],[12,-2],[9,-2],[8,-1],[11,-3],[9,-2],[14,-4],[6,-2],[13,-5],[13,-4],[10,-3],[10,-3],[11,-4],[10,-4],[11,-3],[9,-3],[4,-2],[8,-3],[8,-5],[12,-5],[9,-6],[6,-4],[5,-3],[6,-3],[5,-3],[10,-4],[10,-5],[7,-6],[7,-5],[6,-8],[6,-9],[5,-7],[9,-9],[7,-9],[5,-8],[6,-6],[6,-8],[7,-8],[9,-10],[9,-8],[8,-8],[9,-8],[10,-10],[8,-7],[10,-8],[9,-8],[10,-7],[11,-6],[7,-4],[9,-5],[12,-5],[8,-5],[11,-7],[11,-6],[13,-8],[10,-6],[10,-5],[8,-4],[9,-5],[9,-4],[9,-4],[8,-4],[11,-4],[11,-3],[20,-6],[11,-3],[13,-3],[10,-2],[11,-3],[9,-2],[8,-2],[14,-4],[9,-3],[10,-3],[6,-2],[139,291],[-15,9],[17,35],[54,-20],[-20,-34],[-14,5],[-144,-292],[16,-4],[12,-4],[11,-4],[10,-3],[10,-3],[10,-3],[11,-3],[8,-2],[9,-4],[13,-4],[13,-5],[13,-4],[11,-4],[12,-4],[9,-3],[11,-4],[10,-2],[11,-3],[10,-3],[8,-2],[12,-3],[12,-1],[11,-3],[11,-1],[10,-2],[10,-2],[11,-1],[10,-1],[12,-1],[13,-1],[9,-1],[11,-3],[10,0],[11,2],[9,7],[9,3],[6,-4],[1,-7],[-3,-9],[-2,-9],[-2,-4],[-3,-6],[-3,-10],[-3,-10],[-1,-11],[0,-6],[0,-1],[4,-8],[8,-4],[12,-4],[9,-5],[10,-3],[9,-3],[9,-3],[10,-4],[10,-4],[9,-3],[9,-1],[11,-1],[10,-1],[9,-1],[14,-2],[11,-2],[13,0],[13,-3],[17,-4],[15,-5],[16,-5],[11,-4],[12,-6],[11,-4],[10,-5],[13,-5],[5,-3],[16,-8],[18,-10],[134,297],[-14,9],[18,37],[16,-6],[32,70],[16,-6],[-36,-70],[15,-9],[-15,-35],[-16,3],[-132,-299],[18,-8],[9,-5],[9,-4],[7,-4],[12,-6],[12,-6],[8,-4],[8,-5],[8,-4],[9,-4],[11,-5],[17,-6],[10,-3],[12,-4],[12,-3],[12,-3],[12,-4],[10,-4],[8,-2],[11,-3],[8,-2],[9,-2],[11,-4],[13,-5],[9,-4],[8,-3],[12,-4],[13,-5],[12,-4],[11,-3],[12,-4],[9,-2],[12,-3],[11,-1],[95,-17],[96,-12],[96,-7],[97,-2],[96,2],[33,3],[32,8],[30,12],[23,23],[25,19],[3,2],[3,1],[4,0],[3,0],[3,0],[3,-1],[3,-2],[3,-2],[2,-2],[2,-3],[1,-3],[1,-3],[-9,-31],[3,-22],[5,-22],[33,-18],[36,-15],[37,-10],[38,-5],[38,-1],[39,3],[7,9],[8,8],[10,6],[11,5],[11,3],[12,1],[80,-73],[4,0],[5,-1],[5,-1],[4,-2],[4,-3],[4,-3],[3,-4],[2,-4],[2,-4],[0,-5],[0,-2],[0,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-3,0],[-2,0],[-2,0],[-2,1],[-2,1],[-1,2],[-2,1],[-14,1],[-15,3],[-13,5],[-13,7],[-6,-5],[-4,-5],[-4,-7],[-2,-7],[-2,-7],[0,-7],[1,-7],[17,-44],[21,-42],[26,-39],[22,-38],[18,-40],[13,-42],[7,-43],[3,-43],[-2,-43],[2,-35],[-2,-35],[-9,-35],[-14,-32],[-20,-30],[-24,-27],[-28,-23],[-7,-8],[-8,-6],[-8,-7],[-8,-8],[-7,-7],[-6,-10],[-3,-11],[-1,-11],[0,-11],[-1,-12],[-2,-10],[0,-9],[-1,-9],[0,-9],[0,-11],[0,-11],[1,-11],[0,-9],[0,-9],[1,-10],[1,-14],[1,-11],[2,-10],[1,-9],[2,-9],[2,-9],[2,-10],[2,-11],[2,-10],[2,-12],[1,-9],[0,-10],[-1,-8],[-3,-11],[-2,-11],[-3,-11],[-3,-10],[-2,-7],[-4,-12],[-3,-13],[-2,-7],[-4,-17],[-4,-12],[-4,-10],[-4,-14],[-5,-13],[-5,-12],[-5,-14],[-3,-8],[-3,-8],[-3,-9],[-3,-10],[-4,-16],[-2,-12],[-1,-9],[-1,-9],[-3,-9],[-2,-11],[-3,-12],[-2,-12],[-4,-19],[-3,-14],[-4,-13],[-2,-14],[-3,-14],[-2,-15],[-2,-14],[-3,-14],[-2,-12],[-3,-13],[-3,-13],[-3,-11],[-2,-11],[-1,-14],[-1,-13],[1,-11],[2,-16],[2,-13],[2,-10],[3,-8],[3,-13],[3,-11],[3,-12],[4,-8],[5,-11],[4,-11],[4,-8],[4,-9],[2,-9],[2,-8],[1,-10],[2,-9],[-1,-11],[-3,-10],[-1,-3],[-4,-6],[-8,-9],[-9,-9],[-13,-9],[-8,-4],[-12,-5],[-10,-5],[-9,-5],[-8,-6],[-9,-5],[-9,-6],[-8,-7],[-7,-6],[-6,-7],[-4,-8],[-5,-9],[-3,-9],[-3,-10],[-3,-10],[-1,-10],[0,-11],[0,-11],[0,-10],[0,-11],[0,-9],[2,-10],[2,-10],[2,-11],[0,-12],[0,-4],[-2,-18],[-1,-9],[-1,-11],[-1,-9],[0,-9],[0,-11],[-1,-11],[-1,-11],[-1,-10],[0,-10],[-3,-12],[-2,-12],[-2,-13],[-2,-10],[-1,-12],[-1,-12],[0,-9],[0,-9],[0,-12],[0,-12],[-1,-22],[0,-9],[0,-9],[0,-11],[-2,-10],[-1,-11],[-3,-12],[-2,-11],[-1,-12],[0,-10],[-1,-10],[1,-10],[1,-9],[2,-10],[3,-16],[4,-16],[3,-14],[2,-13],[4,-18],[20,-26],[15,-28],[10,-31],[3,-31],[-2,-32],[25,-100],[29,-98],[35,-96],[27,-65],[30,-64],[124,-349],[20,-57],[25,-70],[66,-188],[84,-240],[6,-15],[3,-9],[3,-11],[4,-10],[4,-12],[5,-13],[4,-12],[5,-14],[4,-16],[5,-14],[4,-15],[5,-14],[4,-10],[4,-9],[5,-10],[6,-16],[6,-15],[6,-14],[4,-12],[3,-9],[4,-10],[4,-10],[5,-12],[6,-11],[5,-10],[1,-1],[6,-10],[5,-10],[5,-10],[5,-8],[3,-9],[3,-9],[3,-9],[5,-15],[5,-14],[5,-14],[2,-7],[3,-8],[7,-19],[4,-10],[7,-16],[4,-11],[4,-11],[3,-10],[3,-9],[2,-10],[3,-12],[1,-2],[2,-7],[4,-10],[3,-7],[4,-9],[4,-11],[4,-9],[4,-8],[7,-11],[8,-10],[3,2],[12,5],[11,4],[12,6],[3,1],[10,2],[161,324],[-14,43],[17,32],[87,-37],[-13,-30],[-44,-20],[-179,-362],[28,-7],[12,-4],[11,-2],[10,-1],[12,-1],[11,-1],[9,-2],[11,-2],[12,-3],[9,-2],[11,-1],[8,-1],[2,-1],[16,-4],[9,-3],[12,-4],[10,-4],[9,-4],[8,-5],[12,-7],[10,-6],[9,-5],[9,-3],[10,-4],[11,-4],[10,-5],[9,-4],[11,-6],[10,-3],[7,-3],[12,-7],[8,-4],[7,-4],[2,-1],[9,-5],[11,-5],[8,-3],[10,-4],[49,-14],[36,-10],[34,-5],[30,-3],[44,-2],[34,5],[28,10],[29,20],[16,9],[11,7],[20,13],[69,36],[70,69],[22,14],[30,17],[33,19],[29,24],[34,52],[24,37],[13,19],[16,21],[34,31],[42,40],[25,27],[77,77],[834,640],[244,43],[358,6],[296,-18],[296,-22],[223,16],[305,-31],[1128,25],[1141,231],[408,174],[402,316],[5,58],[-1167,250],[5,33],[35,24],[1281,-290],[326,-185],[28,32],[60,33],[107,113],[123,93],[96,148],[112,398],[76,615],[-2,153],[-44,49],[6,19],[-464,143],[1,-11],[4,-3],[-36,-104],[-28,9],[36,103],[11,-3],[-5,15],[-27,9],[11,33],[508,-159],[9,24],[52,-13],[14,243],[-56,299],[-133,269],[-193,169],[-131,93],[-174,59],[-58,77],[-420,-14],[-45,13],[-117,1],[-143,12],[-22,-2],[-19,-13],[-18,-17],[-28,-39],[-20,-28],[-26,-22],[-18,-1],[-1,22],[15,26],[5,6],[9,3],[5,36],[-2,8],[-3,7],[9,19],[12,14],[13,17],[27,16],[24,2],[15,2],[36,1],[115,-3],[310,-21],[225,12],[111,78],[61,270],[42,102],[72,78],[1018,445],[59,-25],[219,286],[-12,25],[22,41],[44,18],[48,-8],[8,-28],[345,-32],[16,7],[2,3],[9,6],[11,9],[10,5],[8,4],[12,5],[12,5],[8,4],[11,5],[12,6],[11,4],[13,4],[10,3],[9,3],[11,3],[10,3],[13,4],[10,3],[10,1],[7,2],[12,4],[10,2],[13,2],[13,1],[12,1],[464,-66],[403,-150],[429,-269],[207,-232],[493,-552],[55,-38],[53,-41],[50,-43],[47,-47],[174,-229],[40,-52],[36,-54],[31,-57],[27,-59],[22,-61],[8,-23],[13,-22],[15,-20],[19,-17],[11,-4],[11,-6],[10,-7],[8,-8],[6,-10],[5,-11],[3,-11],[0,-12],[-1,-11],[-3,-12],[-6,-10],[-7,-9],[4,-69],[7,-68],[23,-96],[28,-96],[33,-94],[37,-92],[42,-91],[4,-30],[1,-30],[-2,-30],[43,-137],[30,-89],[40,-66],[44,-65],[47,-62],[91,-136],[43,-62],[77,-76],[126,-113],[10,-16],[51,-61],[36,-41],[32,-44],[42,-47],[45,-45],[37,-31],[34,-33],[31,-36],[56,-381],[1,-77],[7,-76],[11,-76],[2,-68],[-2,-68],[-7,-67],[13,-61],[16,-59],[21,-58],[25,-57],[19,-38],[47,-51],[51,-48],[30,-13],[27,-18],[24,-21],[21,-24],[16,-27],[10,-33],[4,-33],[-2,-34],[-7,-33],[16,-26],[32,-54],[139,-192],[195,-254],[155,-182],[153,-242],[-119,-370],[-216,-169],[-44,-25],[-44,-27],[-41,-30],[-72,-52],[-74,-50],[-75,-48],[-102,-59],[-57,-24],[-58,-18],[-60,-13],[-61,-8],[-934,-367],[-109,-36],[-101,-14],[-86,-6],[-48,12],[-29,33],[2,33],[78,55],[39,26],[1,49],[-19,30],[-58,13],[-76,75],[-355,166],[-787,863],[-29,-20],[288,-360],[510,-639],[115,-87],[35,-84],[40,-33],[69,-6],[28,-32],[14,-44],[31,-71],[36,-38],[60,-14],[57,-8],[105,-273],[12,-293],[904,-1331],[325,-479],[300,-442],[618,-707],[495,-603],[314,-397],[134,-192],[39,-64],[275,-442],[150,-187],[40,-11],[71,12],[15,-36],[-60,-67],[19,-45],[644,261],[-28,65],[129,50],[-47,107],[31,12],[60,-129],[-19,-15],[42,-92],[71,25],[10,-22],[-68,-27],[4,-6],[-140,-57],[-29,58],[-636,-266],[52,-112],[176,-390],[118,-345],[-9,-234],[87,-262],[211,-553],[28,-72],[57,-115],[255,-403],[161,-254],[31,-79],[84,-211],[86,-309],[171,-357],[386,-620],[254,-354],[207,-240],[114,-153],[366,-364],[834,-877],[604,-636],[250,-288],[158,-198],[50,-115],[52,-101],[265,-300],[255,-288],[140,-67],[186,-140],[86,-92],[79,-117],[-19,-112],[10,-68],[-3,-140],[20,-88],[38,-81],[56,-148],[137,-122],[246,-95],[96,-99],[163,18],[52,105],[82,46],[28,-74],[99,-91],[95,-99],[63,-20],[167,-114],[155,-105],[1,-3],[0,-3],[0,-3],[0,-4],[-3,-8],[-4,-9],[-18,-28],[-7,-10],[-24,-30],[-6,-11],[-2,-5],[-2,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[2,-1],[2,-2],[3,-1],[6,-1],[7,-1],[4,-1],[23,-2],[20,-1],[10,-1],[27,0],[17,2],[18,5],[20,6],[21,9],[10,5],[9,8],[8,8],[9,9],[11,6],[76,42],[86,-40],[254,-36],[333,-210],[421,-432],[2,-3],[94,-139],[51,-32],[27,-1],[58,33],[19,-5],[18,-5],[32,-24],[-23,-146],[2,-37],[32,-29],[50,-45],[71,-79],[56,-72],[35,-64],[64,-42],[55,-68],[64,-90],[87,-72],[71,-38],[132,-68],[-28,-53],[31,-26],[92,-49],[77,-67],[66,-43],[43,-49],[44,-79],[47,-79],[26,-94],[32,-110],[39,-121],[44,-159],[23,-78],[112,-249],[60,-163],[66,-100],[69,-93],[69,-83],[64,-67],[11,-11],[8,-48],[-27,-28],[6,-31],[62,-61],[45,-17],[49,14],[59,47],[94,-49],[101,-128],[136,-65],[128,-71],[305,-71],[215,-40],[288,-176],[43,-28],[50,-35],[46,-39],[35,-49],[107,-206],[162,-158],[42,-45],[70,-74],[32,-79],[47,-66],[76,-74],[46,-37],[106,-74],[74,-70],[133,-65],[139,-73],[106,-81],[83,-89],[85,-127],[2,-30],[0,-35],[-4,-56],[-21,-79],[-10,-77],[11,-70],[13,-29],[-33,-33],[-36,-47],[20,-56],[-13,-63],[-6,-35],[0,0],[-7,-45],[8,-65],[25,-69],[25,-45],[10,-6],[29,-15],[12,-9],[3,-2],[2,-3],[2,-3],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-3],[-1,-3],[-10,-21],[-15,-31],[-3,-8],[-1,-6],[-1,-6],[0,-3],[1,-2],[2,-5],[2,-6],[10,-17],[14,-24],[12,-19],[6,-7],[1,-2],[1,-1],[7,-6],[8,-7],[4,-3],[4,-2],[7,-2],[2,0],[4,-2],[5,0],[5,0],[13,1],[5,1],[3,2],[16,8],[9,5],[35,20],[13,8],[19,14],[36,29],[5,4],[4,5],[19,24],[5,5],[7,4],[6,3],[6,2],[6,1],[3,0],[2,0],[3,-1],[2,0],[1,-2],[3,-1],[9,-9],[6,-7],[4,-4],[29,-38],[11,-14],[31,-34],[50,-56],[11,-14],[7,-7],[20,-27],[16,-18],[9,-8],[11,-8],[28,-17],[6,-2],[30,-14],[14,-8],[10,-7],[9,-8],[7,-8],[6,-9],[11,-22],[4,-8],[23,-33],[22,-27],[16,-17],[22,-20],[3,-3],[2,-1],[6,-4],[23,-13],[6,-4],[4,-2],[9,-7],[9,-7],[7,-5],[1,-1],[13,-10],[11,-11],[4,-6],[3,-6],[4,-9],[7,-14],[3,-8],[9,-18],[4,-9],[2,-5],[2,-5],[3,-23],[0,-3],[1,-5],[3,-5],[1,-2],[1,-1],[1,-1],[1,-2],[4,-2],[4,-1],[9,-2],[15,-2],[11,-2],[4,-1],[3,-1],[4,-1],[3,-2],[2,-2],[15,-13],[13,-13],[29,-32],[19,-24],[6,-6],[1,-3],[1,-3],[2,-5],[0,-2],[0,-2],[0,-4],[0,-4],[-7,-17],[-1,0],[-1,-4],[-1,-4],[0,-3],[0,-6],[0,-9],[0,-7],[0,-17],[2,-26],[2,-26],[-1,-9],[-2,-9],[-1,-2],[-3,-7],[-4,-8],[-21,-17],[0,-20],[0,-4],[1,-7],[19,-32],[2,-1],[17,-4],[1,0],[7,-2],[5,-2],[3,0],[26,9],[4,19],[8,37],[-6,47],[-1,2],[-5,31],[-1,5],[-3,27],[-2,32],[-1,21],[-2,36],[-2,12],[-3,12],[-5,12],[-7,11],[-9,11],[-5,6],[-1,1],[-6,5],[-4,4],[-8,7],[-28,22],[-7,5],[-3,3],[-14,14],[-22,26],[-21,26],[-8,14],[-18,37],[-7,9],[-3,4],[-4,4],[-27,22],[-2,1],[-25,17],[-9,7],[-9,6],[-4,3],[-33,22],[-7,5],[-19,14],[-10,12],[-9,9],[-2,3],[-15,18],[-9,13],[-20,32],[-9,14],[-8,10],[-11,10],[-11,11],[-13,11],[-2,1],[-3,2],[-3,1],[-4,1],[-24,2],[-9,2],[-3,1],[-3,2],[-3,1],[-2,2],[-35,37],[-33,35],[-15,14],[-29,30],[-10,12],[-9,14],[-18,30],[-10,16],[-10,16],[-23,33],[-16,21],[-17,17],[-17,13],[-2,2],[-3,1],[-7,3],[-8,1],[-7,1],[-9,-1],[-7,-2],[-7,-2],[-7,-3],[-29,-19],[-17,-15],[-32,-29],[-10,-8],[-7,-6],[-4,-1],[-4,-2],[-3,-1],[-4,0],[-3,0],[-2,0],[-2,1],[-3,0],[-5,3],[-5,4],[-8,8],[-18,23],[-26,30],[-9,12],[-7,11],[-2,6],[-2,6],[-4,28],[-2,6],[-2,2],[-1,3],[-2,3],[-2,2],[-2,2],[-3,2],[-6,3],[-4,1],[-2,1],[-2,0],[-16,7],[-35,26],[3,74],[4,79],[5,68],[14,66],[47,86],[59,68],[23,104],[-25,116],[-37,87],[-59,97],[-63,108],[-120,123],[-106,59],[-116,57],[-110,63],[-172,152],[-79,75],[-2,4],[-30,64],[-36,70],[-29,52],[-57,66],[-101,123],[-79,110],[-77,89],[-56,86],[2,9],[4,24],[19,26],[-3,36],[-17,55],[6,58],[7,77],[-7,84],[-17,66],[-72,121],[-62,68],[-67,37],[-86,33],[-91,45],[-95,17],[-70,33],[-96,1],[-45,-14],[-12,-49],[28,-60],[-2,-52],[6,-62],[28,-55],[40,-36],[30,-24],[-1,-22],[-184,48],[-118,44],[-85,32],[-150,29],[-92,50],[-83,89],[-86,61],[-67,62],[-42,110],[-130,107],[-84,80],[-78,81],[-75,90],[-59,82],[-59,102],[-55,145],[-16,69],[-21,94],[6,119],[-25,95],[-13,42],[-8,27],[-3,6],[0,0],[0,0],[-6,17],[-1,2],[0,1],[-28,69],[-82,119],[-92,98],[-58,78],[-54,60],[-22,22],[-18,21],[3,41],[-23,38],[-55,22],[-36,43],[-29,50],[-19,48],[-20,35],[-35,12],[-59,6],[-49,23],[-46,51],[-48,59],[-55,34],[-39,39],[-21,42],[-21,63],[-20,65],[-29,49],[-13,24],[-15,22],[-18,20],[-38,62],[-38,51],[-7,18],[-11,23],[-14,23],[-18,22],[-8,12],[-1,1],[-2,2],[-5,6],[-5,7],[-5,7],[-4,3],[0,0],[-2,2],[0,0],[-4,5],[-28,21],[-12,12],[-12,17],[-12,20],[-2,2],[-10,18],[-12,15],[-2,3],[-2,1],[-1,1],[-6,5],[-7,6],[-4,3],[-1,1],[-2,2],[-7,13],[-1,3],[-9,19],[-1,4],[0,2],[-1,3],[-1,20],[0,2],[-1,2],[0,2],[-1,2],[-14,28],[-1,2],[-17,29],[-19,27],[-14,16],[-7,8],[-2,2],[-3,2],[-5,5],[-6,4],[-1,1],[-1,1],[-2,2],[0,1],[-30,37],[-9,10],[-21,18],[-8,7],[-10,12],[-8,14],[-9,16],[-14,32],[-5,13],[-1,2],[-4,13],[-11,49],[0,1],[-5,17],[0,2],[-5,14],[-7,14],[-9,13],[-2,3],[-7,9],[-5,6],[0,0],[-15,15],[-13,10],[-3,3],[-5,4],[-5,2],[-25,13],[-4,3],[-2,1],[-5,5],[-2,1],[-14,15],[-14,18],[-11,18],[-1,1],[-9,19],[-36,80],[-19,41],[-27,60],[-18,40],[-3,6],[-3,7],[-29,58],[-13,25],[-15,26],[-17,26],[-18,25],[-9,11],[-11,11],[-4,5],[-44,42],[-9,9],[-1,2],[-9,11],[-24,37],[-8,14],[-2,6],[-3,8],[-14,38],[-6,17],[-11,26],[-10,22],[-7,17],[-8,27],[-6,31],[0,0],[-47,80],[-3,101],[50,141],[25,111],[16,19],[3,4],[4,5],[9,15],[7,17],[7,19],[5,21],[2,6],[3,17],[1,23],[2,22],[2,13],[1,5],[2,12],[2,5],[1,5],[9,30],[3,15],[0,0],[0,4],[0,2],[0,1],[-1,4],[-1,2],[-1,2],[-1,3],[-2,4],[-11,16],[0,1],[-4,7],[0,3],[-1,0],[0,2],[0,1],[0,1],[0,3],[0,3],[1,3],[1,1],[1,2],[2,4],[2,3],[1,1],[6,5],[22,17],[1,1],[2,2],[3,4],[0,0],[2,2],[1,4],[6,17],[4,19],[4,21],[5,12],[2,5],[2,6],[6,12],[8,13],[6,7],[3,4],[9,9],[6,4],[5,4],[10,5],[3,2],[10,3],[4,2],[2,0],[13,3],[6,1],[8,0],[5,-1],[20,-2],[4,0],[1,0],[4,0],[1,0],[0,0],[5,1],[1,0],[10,3],[2,0],[2,1],[8,3],[2,2],[10,6],[12,8],[1,1],[4,3],[4,4],[7,7],[6,7],[1,1],[5,7],[5,8],[2,8],[1,4],[0,3],[0,2],[1,2],[-1,1],[0,2],[0,3],[-1,2],[0,1],[-1,1],[-1,2],[-2,2],[-3,1],[-3,2],[-1,1],[-7,3],[-8,2],[-2,0],[-1,0],[-5,1],[-6,0],[-2,0],[0,0],[-4,-1],[-82,-6],[-41,-2],[-2,0],[-2,0],[-1,0],[-1,1],[-4,1],[-3,1],[-2,1],[-4,4],[-3,2],[-1,1],[-3,4],[-1,2],[-1,3],[0,0],[0,1],[-1,2],[0,0],[0,4],[1,8],[1,17],[1,14],[0,60],[0,3],[0,2],[-1,5],[-1,2],[-10,28],[0,3],[-1,3],[0,4],[0,2],[2,27],[5,31],[15,66],[6,22],[5,21],[1,6],[1,6],[1,11],[-1,9],[0,9],[-4,22],[-2,16],[-7,64],[-1,5],[0,14],[0,16],[3,41],[7,43],[1,16],[-1,18],[-1,18],[-1,5],[0,8],[-3,25],[-3,24],[-4,16],[-3,10],[-8,32],[-3,10],[-1,5],[-13,45],[-3,8],[-2,8],[-5,13],[-11,20],[-20,28],[-37,51],[-17,41],[-190,458],[-78,249],[-44,-12],[3,-9],[-70,-20],[-14,32],[82,24],[3,-9],[34,13],[-39,100],[-10,27],[-50,74],[-36,128],[-8,62],[45,54],[48,33],[104,12],[107,43],[-15,91],[-4,-1],[-1,4],[26,4],[-1,-4],[-3,0],[13,-90],[30,14],[96,47],[92,56],[202,132],[52,68],[61,55],[102,106],[36,34],[31,28],[30,28],[42,38],[54,50],[51,48],[43,48],[40,58],[33,72],[26,74],[13,75],[14,117],[-16,50],[-53,168],[-52,134],[-37,122],[-11,34],[-25,82],[-45,64],[-34,69],[-18,61],[-48,37],[-26,26],[-15,70],[-16,56],[-9,32],[-52,154],[-10,159],[-15,98],[-24,57],[-4,9],[-52,42],[20,64],[-57,117],[-55,100],[-37,62],[-39,42],[-16,18],[-5,9],[-50,91],[-30,14],[-27,18],[-30,16],[0,30],[-12,41],[-11,54],[-10,38],[-2,22],[-19,39],[-26,44],[-50,51],[-54,50],[-24,23],[-16,40],[-15,30],[6,35],[43,35],[25,9],[27,28],[30,47],[4,7],[18,45],[27,50],[10,16],[8,17],[5,18],[2,19],[-1,18],[-4,13],[-6,12],[-8,11],[-10,10],[-11,9],[-12,7],[-26,15],[2,14],[6,15],[8,13],[9,12],[12,10],[7,6],[5,8],[3,8],[3,9],[1,9],[0,9],[-2,8],[36,205],[-4,14],[-4,17],[21,81],[1,5],[-375,13],[-3,-40],[-58,0],[0,93],[60,-3],[-1,-36],[378,-14],[16,9],[47,19],[14,8],[15,10],[14,12],[24,22],[14,14],[13,15],[46,98],[-103,68],[129,102],[42,106],[45,111],[1,9],[7,77],[4,31],[5,29],[7,29],[9,31],[11,32],[67,198],[7,41],[-13,94],[1,183],[64,169],[58,123],[17,12],[233,351],[323,488],[6,326],[155,176],[179,203],[1024,858],[319,-317],[1996,-1494],[1151,-939],[673,-531],[417,-306],[1196,-878],[470,-315],[244,-235],[177,-139],[436,-151],[157,-238],[162,-101],[718,-601],[508,-357],[1852,-1391],[526,-441],[610,-503],[477,-376],[495,-362],[585,-446],[378,-298],[614,-464],[671,-535],[640,-478],[1262,-945],[531,-428],[372,-284],[494,-380],[345,-48],[103,-87],[35,-46],[25,-43],[51,-43],[257,-219],[2254,-1858],[1512,-1187],[164,-140],[133,-97],[85,-75],[119,-83],[543,-377],[986,-807],[193,-157],[1685,-1368],[1582,-1115],[1117,-838],[454,-334],[344,-281],[300,-269],[38,-34],[7,-52],[170,-1268],[108,-1432],[168,-1384],[5,-55],[71,-1554],[122,-1433],[180,-1675],[167,-1239],[8,-62],[-7,-67],[-185,-207],[-305,-408],[-408,-715],[-366,-824],[-136,-244],[-252,-490],[-389,-715],[-128,-274],[-262,-526],[-406,-737],[-244,-462],[-141,-271],[-387,-730],[-392,-741],[-384,-743],[-348,-707],[-562,-150],[-1153,-304],[-43,-11],[-39,-7],[-2193,-356],[-536,-85],[-564,-80],[-1491,-387],[-1300,-436],[-499,-161],[-374,-139],[-155,-51],[-330,-110],[-206,-64],[-28,-9],[-4,-1],[-117,-37],[-171,-54],[-476,-161],[-216,-73],[-55,-18],[-52,-18],[-114,-45],[-113,-45],[-364,-122],[-498,-220],[-528,-263],[-398,-195],[-118,-57],[-207,-72],[-203,-83],[-198,-93],[-194,-103],[-121,-73],[-65,-39],[-180,-122],[-173,-130],[16,-48],[397,-1244],[259,-876],[41,-137],[210,-952],[166,-753],[10,-47],[19,-85],[13,-61],[702,-3311],[5,-17],[106,-537],[126,-707],[8,-47],[4,-42],[41,-512],[3,-14],[-94,-370],[53,-1503],[41,-1348],[37,-1076],[35,-1038],[31,-704],[-34,-122],[28,-308],[52,-367],[68,-1642],[12,-558],[8,-368],[6,-690],[148,-4713],[3,-125],[0,-264],[35,-990],[17,-258],[7,-152],[103,-1173],[35,-411],[5,-67],[4,-67],[79,-1443],[-2,-54],[-38,-804],[-27,-450],[51,-787],[16,-192],[27,-340],[42,-536],[35,-511],[-131,-645],[-105,-519],[-114,-534],[-28,-127],[-33,-126],[-39,-124],[-44,-123],[-71,-193],[-106,-306],[-174,-502],[-91,-265],[-185,-514],[-58,-166],[-14,-40],[13,-178],[-160,-1909],[-56,-507],[-26,-540],[-46,-533],[-107,-530],[-42,-535],[12,-548],[-28,-545],[-4,-136],[34,-397],[47,-309],[18,-130],[158,-214],[-10,-288],[41,-62],[24,-424],[-40,-68],[13,-580],[-3,-82],[-318,-57],[111,-454],[66,-43],[71,-501],[210,-505],[238,-518],[246,-484],[227,-488],[144,-526],[113,-370],[63,-207],[164,-571],[59,-204],[11,-257],[29,-675],[321,-974],[-44,-575],[-27,-896],[-79,-266],[-787,-260],[-2347,-998],[-141,-45],[-965,-172],[-1183,-181],[-714,-93],[-991,-488],[-1431,-692],[-1481,-1012],[-1,-420],[-1,-200],[-5,-110],[-12,-292],[-11,-243],[-85,-1952],[-24,-400],[-241,-558],[389,-748],[-527,-293],[628,-946],[575,-1262],[479,-1078],[53,-120],[-246,-353],[-56,-81],[-28,128],[-105,-25],[-19,-10],[-282,-42],[-7,-1],[4,-16],[-67,-19],[8,-28],[10,3],[-4,20],[11,2],[48,8],[-1,10],[78,17],[2,-26],[53,9],[14,-3],[-1,-26],[-10,-2],[-1,8],[-187,-42],[-108,-25],[1,-4],[-38,-9],[-2,7],[-3,-1],[-6,19],[6,2],[-4,13],[41,11],[5,-19],[10,2],[-7,25],[65,17],[7,-22],[12,3],[-8,30],[-145,1],[-194,-38],[-194,-46],[1,-5],[7,-26],[-38,-9],[11,-35],[28,4],[2,-11],[113,24],[4,-11],[-166,-29],[0,8],[-37,-8],[-2,12],[41,10],[-8,32],[-31,-6],[-11,25],[-2,0],[-80,-17],[-50,-12],[-131,25],[-62,21],[-96,58],[-21,39],[-18,40],[-12,42],[-1,6],[0,6],[1,6],[2,6],[3,6],[4,5],[5,4],[5,3],[7,3],[7,1],[9,3],[8,5],[7,5],[6,7],[5,8],[32,98],[14,43],[-31,11],[15,47],[-24,8],[-4,1],[-73,-154],[-19,9],[92,200],[22,-11],[1,0],[-5,-10],[-12,-23],[3,-2],[24,-9],[10,42],[33,-6],[43,106],[45,108],[56,101],[85,128],[23,22],[88,114],[20,-8],[149,173],[21,26],[10,11],[123,179],[40,101],[28,70],[104,115],[-80,264],[-22,52],[-14,22],[-13,15],[-8,16],[-9,13],[-10,12],[-10,12],[-12,14],[-24,29],[-8,9],[-1,2],[-8,8],[-11,8],[-7,6],[-4,2],[-3,2],[-5,3],[-3,2],[-5,2],[-2,0],[-3,0],[-5,0],[-2,-1],[-2,0],[-7,-4],[-2,-2],[-2,0],[-1,0],[-2,0],[-12,0],[-6,2],[-5,1],[-14,5],[-15,8],[-45,31],[-16,10],[-71,37],[-96,47],[-8,4],[-29,3],[-54,7],[-54,8],[-53,11],[-54,10],[-64,16],[-66,16],[-68,19],[-69,22],[-9,2],[-21,-7],[-80,-20],[-81,-18],[-48,-9],[-49,-8],[-50,-7],[-52,-7],[-99,-68],[-145,-88],[-144,-69],[-41,82],[156,341],[78,168],[84,185],[1,2],[-25,40],[-52,37],[-12,5],[-42,21],[-20,-2],[-13,-11],[-27,-36],[-9,-3],[-111,-226],[-2,-5],[-1,-2],[3,-1],[5,-3],[31,-12],[5,-3],[1,-6],[-17,-48],[-32,-90],[-3,-5],[-3,0],[-10,-2],[-10,2],[-2,0],[-6,0],[-13,-43],[-8,-25],[-36,-117],[9,-3],[8,-6],[-1,-2],[-40,-124],[-26,-51],[-121,-230],[-28,-58],[-16,-3],[-14,-5],[-13,-7],[-5,-3],[-5,-4],[-8,-9],[-8,-10],[-21,-29],[-27,-42],[-22,-40],[-1,-2],[-1,-3],[-1,-6],[1,-6],[3,-18],[0,-5],[32,-14],[-7,-14],[-9,5],[-1,-6],[18,-7],[-22,-43],[-3,0],[-50,-119],[-27,10],[78,169],[-13,5],[-6,-15],[-10,-23],[-13,-22],[-14,-20],[-5,-5],[-6,-5],[-12,-8],[-16,-8],[-16,-5],[-25,-4],[-22,-2],[-21,0],[-18,3],[-7,2],[-9,3],[-16,9],[-1,0],[-10,6],[-11,5],[-6,2],[-6,1],[-5,1],[-1,0],[-4,-1],[-6,-1],[-6,-2],[-14,-5],[-19,-21],[-38,-27],[-14,-10],[-6,-3],[-8,-4],[-7,-4],[-26,-16],[-9,-4],[-8,-7],[-73,-47],[-64,-41],[-23,-18],[-39,-35],[-16,-13],[-66,-48],[-34,-28],[-35,-33],[-17,-18],[-16,-18],[-14,-19],[-12,-19],[0,-1],[-17,-19],[-13,-19],[-13,-18],[-14,-19],[-14,-18],[-14,-18],[-16,-17],[-17,-16],[-17,-3],[-44,15],[-42,18],[-40,23],[-38,26],[-35,29],[-42,51],[-38,53],[-13,14],[-10,16],[-7,17],[-4,19],[-1,18],[3,19],[6,17],[9,17],[73,107],[38,62],[67,67],[14,21],[4,25],[64,53],[89,58],[7,-3],[35,26],[-7,12],[70,56],[31,11],[12,-12],[153,101],[114,91],[27,20],[23,2],[114,91],[0,17],[21,18],[-3,12],[-2,7],[32,17],[16,27],[6,26],[-2,27],[-19,21],[-15,24],[-11,25],[-8,26],[-4,28],[0,1],[-1,8],[-2,7],[-2,7],[-4,6],[-5,6],[-6,5],[-7,4],[-19,32],[-32,-61],[-182,-129],[101,-140],[-96,-83],[-33,-9],[-187,-139],[-76,-49],[-9,1],[-9,-1],[-8,-1],[-8,-4],[-8,-4],[-7,-5],[-41,-28],[-39,-31],[-4,-5],[-15,-15],[-17,-13],[-19,-10],[-4,-5],[-4,-6],[-3,-6],[-2,-6],[-13,-23],[-17,-21],[-20,-19],[-19,-36],[-22,-35],[-27,-31],[-17,-18],[-34,-42],[-29,-44],[-34,-45],[-36,-42],[-6,-9],[-7,-9],[-8,-6],[-9,-6],[-11,-4],[-11,-2],[-11,-1],[-9,7],[-8,7],[-7,9],[-5,9],[-3,10],[-2,11],[0,11],[0,31],[5,31],[11,29],[15,27],[-7,2],[-16,3],[-19,3],[1,5],[-33,6],[-10,-72],[-13,2],[5,50],[-3,1],[15,70],[16,-5],[-11,-37],[34,-7],[1,6],[23,-5],[13,-2],[8,-1],[-4,157],[35,134],[-65,13],[4,16],[64,-9],[22,61],[17,91],[32,27],[12,14],[22,41],[-12,14],[-16,13],[-14,16],[-10,17],[-7,18],[-4,20],[0,20],[3,19],[7,19],[10,17],[17,44],[19,42],[21,42],[16,12],[17,11],[18,9],[19,6],[13,21],[10,23],[5,24],[2,24],[43,291],[0,46],[4,46],[9,46],[13,45],[18,43],[11,10],[8,12],[7,13],[4,14],[2,15],[-1,14],[-4,14],[-1,9],[-1,9],[2,8],[3,9],[4,7],[5,8],[7,6],[7,5],[7,5],[5,6],[5,6],[3,8],[2,7],[1,8],[-1,8],[-2,8],[-3,7],[-5,7],[-5,5],[-7,5],[-5,14],[-2,14],[0,14],[3,15],[7,28],[1,30],[-3,29],[-2,78],[2,78],[7,78],[11,77],[16,76],[21,75],[25,75],[29,72],[3,6],[2,5],[2,6],[0,6],[-1,6],[-1,6],[-3,6],[-4,5],[-26,21],[-23,26],[-18,28],[-13,31],[3,4],[2,4],[1,4],[0,5],[-1,4],[-1,5],[-2,4],[-3,4],[-3,3],[-10,16],[-7,18],[-4,18],[-2,18],[-1,22],[3,28],[8,26],[12,26],[16,22],[8,21],[4,20],[0,22],[-3,21],[-6,20],[-10,19],[-12,18],[-12,37],[-8,38],[-3,39],[0,38],[4,39],[4,3],[3,3],[3,3],[2,4],[2,5],[1,4],[-1,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[1,1],[1,0],[5,15],[3,14],[1,15],[-7,5],[-8,3],[-10,3],[4,34],[-16,59],[-36,43],[-47,42],[-22,40],[-20,104],[-40,126],[-22,59],[-18,59],[-9,54],[-13,54],[-8,20],[-11,19],[-15,17],[-17,14],[-19,11],[-6,3],[-5,3],[-4,5],[-3,5],[-2,5],[-2,6],[0,6],[0,6],[2,5],[2,6],[1,24],[-2,25],[-6,24],[-7,13],[-8,12],[-11,10],[-12,9],[-14,7],[-5,1],[-5,2],[-9,5],[-8,6],[-5,10],[-98,181],[-2,50],[-7,49],[-13,48],[-19,46],[-23,44],[-29,42],[-33,39],[-3,4],[-4,4],[-5,4],[-2,2],[-12,1],[-11,4],[-10,5],[-9,7],[-8,8],[-6,9],[-5,10],[-3,11],[-1,10],[1,7],[0,6],[-1,7],[-2,6],[-3,6],[-4,5],[-5,5],[-5,0],[-4,0],[-4,2],[-4,2],[-3,2],[-3,3],[-3,3],[-2,4],[-1,4],[-1,4],[1,4],[0,4],[-13,31],[-19,29],[-22,26],[-25,23],[-29,20],[-4,0],[-4,1],[-4,1],[-7,12],[-12,12],[-10,14],[-12,20],[-9,22],[-5,23],[-3,17],[-7,16],[-9,15],[-12,13],[-14,11],[-16,8],[-17,7],[-11,1],[-11,4],[-10,6],[-9,7],[-7,8],[-5,9],[-4,10],[0,17],[-3,18],[-6,17],[-9,15],[-11,14],[-14,13],[-15,10],[-17,7],[-9,5],[-9,6],[-7,6],[-7,8],[-5,8],[-5,9],[-13,7],[-15,9],[-16,7],[-32,17],[-17,13],[-14,16],[-10,21],[-39,30],[-15,3],[-122,115],[-11,35],[2,32],[-2,32],[48,167],[-1,98],[-55,135],[-14,-16],[-41,34],[12,21],[-29,-3],[-19,1],[-19,2],[-4,1],[-8,0],[-7,0],[-8,-2],[-7,-3],[-15,-5],[-13,-7],[-12,-9],[-11,-11],[-9,-12],[-7,-13],[-4,-14],[-27,-18],[-28,-18],[-43,-57],[-15,-9],[-15,-7],[-17,-4],[-17,-2],[-18,1],[-7,1],[-7,2],[-7,2],[-6,4],[-5,5],[-5,6],[-3,6],[-3,6],[-1,7],[-11,31],[-16,29],[-21,26],[-25,22],[-28,18],[-32,14],[-10,1],[-10,2],[-9,4],[-7,4],[-6,5],[-7,7],[-7,8],[-5,9],[-71,93],[-93,87],[-29,3],[-75,65],[-100,73],[-53,30],[-28,4],[-8,22],[-54,47],[-29,12],[-248,204],[-47,28],[-63,74],[-52,47],[-14,20],[-23,7],[-13,18],[-24,11],[-18,22],[-38,32],[-38,22],[-36,16],[-6,36],[-23,23],[-94,61],[-63,14],[-51,42],[-99,78],[-196,140],[-157,85],[-158,130],[-29,11],[-118,82],[-82,-132],[119,-70],[-13,-15],[-192,111],[11,14],[63,-34],[81,133],[-36,10],[-35,15],[-31,20],[-29,23],[-24,28],[-10,9],[-11,7],[-12,6],[-13,4],[-13,2],[-14,0],[-37,1],[-36,5],[-35,10],[-34,14],[-107,165],[-134,100],[-70,1],[-69,37],[-156,-95],[-77,-97],[-30,-88],[196,-287],[507,-382],[82,128],[-66,46],[18,23],[208,-118],[-21,-20],[-109,58],[-93,-131],[1977,-1510],[53,-85],[98,-121],[113,-86],[661,-553],[46,-56],[51,-53],[54,-49],[59,-46],[19,-19],[50,-115],[53,-114],[57,-113],[62,-110],[65,-109],[68,-106],[73,-104],[155,-191],[38,-103],[42,-102],[44,-101],[3,-6],[0,-1],[7,-46],[13,-44],[17,-43],[23,-41],[27,-39],[8,-22],[5,-24],[1,-24],[-3,-24],[-7,-24],[-10,-22],[-14,-20],[-17,-18],[-8,-1],[-7,-3],[-6,-4],[-6,-5],[-5,-5],[-4,-7],[-2,-7],[-2,-7],[0,-7],[1,-7],[3,-7],[3,-6],[5,-6],[5,-5],[7,-4],[13,-501],[5,-22],[9,-20],[13,-20],[4,-83],[-1,-84],[-6,-84],[-12,-83],[-18,-82],[6,-46],[1,-46],[-5,-45],[-11,-45],[-16,-43],[-6,-15],[-3,-16],[-1,-15],[2,-16],[9,-28],[4,-28],[-1,-29],[-6,-29],[-11,-27],[-15,-25],[-25,-112],[-7,-47],[8,-56],[-7,-27],[-21,-57],[-7,-24],[-3,-19],[-21,-32],[-17,-26],[10,-43],[0,-71],[-31,-141],[-3,-9],[-3,-10],[-17,-32],[-5,-13],[-4,-13],[-1,-7],[0,-6],[0,-3],[1,-4],[6,-14],[1,-4],[0,-2],[0,-2],[-2,-37],[-7,-75],[-3,-29],[-7,-32],[-9,-29],[-22,-71],[-9,-37],[-12,-58],[-7,-52],[-3,-26],[1,-63],[-2,-17],[-2,-15],[-12,-48],[-15,-52],[-20,-56],[-1,-9],[-1,-10],[-1,-39],[-1,-15],[-3,-14],[-4,-15],[-22,-65],[-8,-29],[-4,-29],[-6,-64],[-4,-27],[-5,-23],[-2,-4],[-10,-1],[-12,-2],[-12,-4],[-18,-10],[-35,-29],[-59,-69],[-22,-50],[-2,-136],[-7,-145],[-13,-144],[-15,-112],[15,-24],[2,-71],[-12,-152],[-29,-94],[-19,-44],[-17,-35],[-9,-11],[-48,-13],[-26,-10],[-17,-24],[-9,-47],[-16,-32],[-24,-26],[-98,-57],[-50,-35],[-43,-15],[-49,-16],[-40,-15],[-27,-21],[-18,-20],[-21,-16],[-49,-18],[-48,-2],[-87,-29],[-70,-20],[-65,-20],[-28,-12],[-14,-12],[-15,-18],[-64,-21],[-43,-11],[-83,5],[-86,-16],[-48,-10],[-66,-31],[-65,-31],[-35,-24],[-12,-16],[-7,-13],[-6,-13],[-23,-20],[-83,-63],[-81,-60],[-34,-18],[-48,-31],[-39,-11],[-9,0],[-26,-27],[-37,-26],[-54,-32],[-14,-25],[-10,-28],[-10,-29],[-16,-11],[-39,-7],[-125,-54],[-47,-11],[-67,-28],[-34,-25],[-30,-28],[-26,-26],[-15,-14],[-45,-15],[-44,-13],[-34,-35],[-29,-31],[-35,-16],[-56,-25],[-34,-9],[-62,5],[-126,4],[-68,-15],[-85,-24],[-131,-30],[-51,-15],[-10,-14],[-4,-14],[-8,-17],[-4,-5],[-16,-5],[-30,-5],[-48,-19],[-42,-21],[-12,-10],[0,-11],[8,-13],[-3,-7],[-18,-12],[-52,-27],[-49,-27],[-92,-50],[-6,-4],[-22,-12],[-19,-9],[-27,-12],[-33,-9],[-18,-9],[-23,-11],[-8,-5],[-19,-7],[-20,-2],[-21,2],[-35,-5],[-27,-7],[-18,-5],[-13,-9],[-6,-10],[-10,-17],[-11,-27],[-18,-21],[-34,-26],[-24,-16],[-17,-9],[-25,-9],[-44,-7],[-16,-3],[-29,-6],[-8,-3],[-7,-2],[-29,-5],[-18,-4],[-19,-7],[-13,-7],[-10,-9],[-15,-15],[-8,-8],[-14,-23],[-8,-7],[-10,-4],[-18,0],[-14,4],[-7,2],[-10,1],[-11,3],[-7,8],[-11,14],[-17,7],[-21,0],[-26,-4],[-24,-10],[-15,-8],[-19,-20],[-27,-22],[-10,-17],[0,-18],[-2,-20],[-15,-12],[-12,-10],[-12,-9],[-11,2],[-33,-7],[-13,-6],[-7,-7],[-7,-4],[-15,1],[-18,-6],[-7,6],[-10,-2],[-13,-12],[-18,-5],[-32,0],[-16,-6],[-21,-10],[-14,-3],[-10,-5],[-18,-8],[-16,-3],[-17,-2],[-10,-3],[-19,-2],[-13,1],[-22,-4],[-16,-6],[-17,-9],[-10,-8],[-5,-9],[-4,-9],[-7,-7],[-8,-2],[-11,6],[-4,3],[-4,1],[-17,-7],[-13,-8],[-25,-9],[-40,-12],[-33,-9],[-23,-10],[-13,-7],[-24,-7],[-22,-32],[-33,-21],[-42,-1],[-56,-5],[-15,-5],[-16,-13],[-8,-10],[-15,-10],[-20,-6],[-30,-8],[-8,2],[-6,4],[-4,-6],[-7,-6],[-5,-3],[-3,-5],[-5,-7],[-8,-1],[-15,-5],[-21,-8],[-31,-9],[-28,-9],[-26,-9],[-22,-17],[-19,-14],[-12,-14],[-6,-28],[-9,-21],[-19,-29],[-12,-18],[-15,-14],[-42,-23],[-13,-10],[-12,-8],[-16,-12],[-18,-11],[-19,-4],[-30,-4],[-30,3],[-25,-1],[-35,-6],[-24,-8],[-28,-9],[-28,-5],[-32,-1],[-28,-2],[-21,-6],[-29,-13],[-31,-17],[-36,-17],[-21,-12],[-16,-11],[-16,-27],[-15,-21],[-20,-30],[-18,-20],[-14,-5],[-34,-5],[-38,-4],[-35,-2],[-24,-1],[-43,-8],[-76,-16],[-23,-6],[-20,-16],[-19,-18],[-18,-15],[-18,-16],[-18,-10],[-17,-4],[-23,-3],[-21,-7],[-20,-11],[-13,-10],[-7,-12],[-6,-15],[-10,-20],[-17,-35],[-19,-37],[-14,-18],[-14,-13],[-20,-10],[-30,-9],[-17,-11],[-19,-9],[-17,-17],[-42,-32],[-73,-40],[-18,-8],[-22,-1],[-12,9],[-11,5],[-16,2],[-10,-3],[-20,-6],[-20,-9],[-30,-23],[-19,-12],[-11,-13],[-9,-9],[-24,-16],[-19,-16],[-13,-10],[-25,-14],[-13,-6],[-26,-19],[-17,-10],[-18,-13],[-27,-15],[-16,-15],[-11,-18],[-28,-20],[-16,-9],[-24,-4],[-27,2],[-41,7],[-12,4],[-12,-3],[-22,0],[-8,2],[-7,-1],[-6,-5],[-7,-12],[-14,-9],[-19,-13],[-20,-12],[-17,-9],[-18,-6],[-16,-8],[-19,-8],[-17,-12],[-19,-11],[-25,-9],[-21,-9],[-23,-1],[-25,2],[-15,3],[-15,6],[-19,-2],[-16,-9],[-21,-11],[-26,-10],[-30,2],[-36,-9],[-14,-7],[-18,-13],[-23,-6],[-28,4],[-30,-4],[-19,-6],[-19,-18],[-16,-21],[-13,-20],[-12,-9],[-23,-4],[-28,2],[-20,-1],[-29,-10],[-10,-5],[-23,-24],[-2,-18],[-13,-13],[-12,0],[-12,7],[-8,7],[-12,6],[-20,-3],[-28,-11],[-10,-7],[-8,-14],[-21,-38],[-12,-15],[-11,-11],[-29,-13],[-29,-27],[-29,-26],[-57,-23],[-41,-27],[-36,-24],[-31,-24],[-33,-29],[-34,-29],[-31,-21],[-26,-27],[-34,-29],[-41,-39],[-41,-40],[-12,-3],[-10,-5],[-2,-1],[-18,23],[-3,1],[-3,1],[-3,0],[-1,0],[-22,-4],[-7,-1],[-6,-2],[-6,-3],[-6,-3],[-6,-3],[-5,-4],[-29,-19],[-28,-15],[-8,-5],[-8,-4],[-8,-4],[-7,-2],[-7,-2],[-7,-1],[-7,-1],[-7,-1],[-7,0],[-6,1],[-7,1],[-11,0],[-11,0],[-11,1],[-21,0],[-4,0],[-7,-2],[-7,-3],[-7,-3],[-4,-1],[-4,-2],[-3,-3],[-1,-1],[-1,-2],[-1,-3],[0,-2],[0,-2],[10,-28],[1,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-1],[-2,-1],[-3,0],[-27,-8],[-33,-6],[-37,-14],[-9,-5],[-8,-5],[-9,-4],[-22,-8],[-34,-12],[-36,-14],[-36,-12],[-15,-5],[-14,-6],[-13,-6],[-14,-7],[-22,-10],[-22,-10],[-23,-9],[-22,-10],[-23,-8],[-9,-3],[-8,-4],[-8,-4],[-8,-4],[-7,-5],[-23,-18],[-3,-2],[-3,-1],[-3,-2],[-4,0],[-4,-1],[-3,1],[-6,0],[-6,0],[-6,0],[-6,-1],[-6,-1],[-2,-3],[-3,-3],[-2,-2],[-4,-3],[-3,-1],[-4,-1],[-3,-1],[-4,0],[-4,1],[-4,2],[-4,3],[-4,3],[-3,4],[-2,3],[-5,6],[-6,4],[-6,5],[-7,3],[-6,4],[-8,3],[-41,23],[-10,5],[-9,6],[-9,6],[-9,6],[-20,17],[-21,16],[-22,16],[-10,5],[-10,5],[-10,5],[-11,4],[-6,1],[-7,1],[-6,1],[-7,0],[-6,-1],[-7,-1],[-4,-3],[-5,-3],[-4,-3],[-4,-3],[-3,-4],[-3,-4],[-3,-5],[-2,-4],[-1,-4],[-1,-4],[-1,-4],[0,-4],[1,-4],[1,-3],[2,-4],[2,-3],[2,-4],[4,-4],[4,-5],[5,-4],[5,-3],[5,-4],[5,-3],[6,-2],[6,-3],[7,-2],[7,-4],[7,-4],[6,-4],[6,-5],[28,-20],[6,-5],[6,-5],[7,-5],[5,-4],[6,-4],[6,-3],[6,-3],[7,-2],[6,-3],[6,-3],[6,-4],[5,-5],[2,-2],[1,-2],[2,-2],[0,-3],[1,-3],[-1,-2],[0,-3],[-3,-4],[-3,-4],[-3,-3],[-4,-3],[-4,-3],[-4,-3],[-5,-2],[-12,-3],[-12,-5],[-11,-5],[-43,-19],[-17,-10],[-18,-9],[-17,-10],[-18,-8],[-18,-8],[-18,-8],[-15,-5],[-14,-6],[-14,-6],[-14,-7],[-14,-7],[-13,-7],[-14,-8],[-13,-8],[-24,-13],[-23,-14],[-24,-14],[-62,-45],[-41,-26],[-34,-29],[-34,-30],[-21,-17],[-30,-23],[-29,-22],[-22,-13],[-24,-14],[-28,-12],[-28,-11],[-20,-6],[-62,-26],[-29,-19],[-45,-31],[-128,-109],[-39,-46],[-21,-31],[-21,-34],[-87,-158],[-9,-13],[-8,-13],[-7,-14],[-8,-14],[-7,-13],[-6,-15],[-6,-14],[-5,-14],[-6,-15],[-4,-15],[-42,-119],[-3,-6],[-2,-6],[-2,-7],[-2,-7],[-1,-6],[0,-7],[0,-7],[1,-7],[-1,-4],[-1,-4],[-2,-4],[-2,-4],[-2,-4],[-3,-3],[-3,-3],[-4,-3],[-3,-3],[-13,-1],[-13,-3],[-12,-3],[-12,-3],[-12,-4],[-4,-7],[-3,-7],[-3,-7],[-2,-7],[-2,-7],[-1,-8],[-1,-7],[2,-17],[1,-17],[0,-17],[0,-17],[-1,-16],[1,-6],[-1,-6],[0,-6],[-1,-6],[-2,-6],[-2,-5],[-3,-6],[-3,-5],[-3,-5],[-4,-4],[-5,-5],[-4,-4],[-6,-9],[-5,-11],[-5,-10],[-4,-10],[-4,-11],[-3,-11],[-13,-46],[-13,-45],[-14,-45],[-28,-57],[-28,-56],[-29,-56],[-30,-56],[-30,-56],[-7,-20],[-8,-20],[-8,-20],[-8,-20],[-9,-20],[-10,-19],[-10,-19],[-10,-19],[-128,-204],[-22,-59],[-9,-78],[0,-13],[2,-29],[0,-13],[-3,-12],[-2,-5],[-3,-6],[-43,-65],[-51,-77],[-129,-204],[-8,-10],[-9,-11],[-40,-40],[-14,-17],[-7,-10],[-6,-10],[-3,-9],[-3,-10],[-2,-21],[-2,-37],[-1,-15],[-4,-46],[-3,-14],[-3,-12],[-9,-20],[-13,-21],[-12,-19],[-32,-43],[-15,-21],[-10,-16],[-26,-34],[-9,-13],[-30,-61],[-26,-53],[-8,-54],[-4,-59],[1,-9],[1,-9],[0,-9],[0,-9],[-9,-36],[-14,-33],[-18,-32],[-23,-29],[-8,-4],[-8,-4],[-7,-6],[-5,-7],[-5,-8],[-3,-8],[-2,-8],[0,-9],[1,-8],[2,-52],[2,-7],[1,-7],[-1,-7],[-1,-7],[-3,-7],[-4,-6],[-4,-5],[-6,-5],[-6,-10],[-5,-11],[-2,-11],[-1,-12],[1,-11],[3,-12],[4,-10],[5,-11],[2,-12],[0,-12],[-1,-12],[-4,-11],[-6,-10],[-8,-10],[-2,-2],[-1,-4],[-1,-3],[0,-3],[0,-4],[1,-3],[1,-3],[2,-3],[48,-79],[3,-9],[1,-10],[0,-9],[-2,-9],[-4,-9],[-5,-8],[63,-125],[17,-84],[-2,-37],[21,-45],[16,-46],[12,-47],[7,-49],[0,-1],[0,-13],[0,-12],[0,-13],[-2,-12],[-1,-12],[-4,-16],[-4,-16],[-5,-16],[-5,-15],[-6,-16],[-6,-15],[-7,-15],[-6,-31],[-5,-30],[-6,-31],[-4,-31],[-5,-31],[-2,-13],[-3,-13],[-3,-13],[-4,-13],[-5,-13],[-5,-12],[-5,-13],[-6,-12],[-6,-12],[-7,-12],[-7,-11],[-4,-9],[-5,-8],[-5,-8],[-6,-8],[-6,-8],[-6,-7],[-7,-8],[-7,-6],[-7,-7],[-8,-6],[-8,-6],[-9,-5],[-8,-5],[-142,-131],[-23,-18],[-22,-19],[-22,-19],[-22,-19],[-21,-20],[-21,-20],[-9,-9],[-8,-8],[-8,-9],[-8,-9],[-7,-10],[-7,-9],[-6,-10],[-6,-11],[-6,-10],[-5,-11],[-1,-2],[-1,-3],[-1,-2],[-2,-2],[-3,-1],[-2,-1],[-3,-1],[-3,0],[-2,0],[-3,1],[-2,1],[-3,2],[-1,2],[-5,52],[-1,6],[-2,5],[-2,6],[-2,5],[-3,5],[-3,5],[-3,-2],[-2,-3],[-2,-2],[-1,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[1,-3],[-2,-16],[-3,-15],[-3,-15],[-4,-15],[-4,-15],[-5,-15],[-6,-15],[-6,-14],[0,-8],[0,-7],[-1,-7],[-2,-8],[-2,-7],[-2,-7],[-3,-6],[-3,-7],[-4,-6],[-5,-6],[-11,-8],[-10,-8],[-11,-8],[-9,-9],[-10,-9],[-9,-9],[-3,-6],[-3,-5],[-3,-6],[-2,-6],[-1,-7],[-1,-6],[-1,-6],[0,-7],[1,-6],[1,-6],[2,-6],[-3,-27],[-9,-22],[-28,-22],[-3,-3],[-2,-4],[-2,-3],[-1,-4],[-1,-4],[0,-4],[0,-5],[0,-4],[1,-4],[2,-3],[-9,-17],[6,-14],[-1,-16],[2,-11],[-2,-17],[-8,-14],[-2,-27],[4,-22],[44,-194],[-7,-14],[-14,-15],[-18,-15],[-17,-5],[-15,-12],[-15,-7],[-18,-13],[-21,-11],[-12,-11],[-13,-11],[-12,-10],[-13,-9],[-26,-19],[-10,-12],[-6,-19],[0,-14],[3,-8],[7,-14],[-2,-14],[-7,-24],[-10,-17],[-13,-7],[-7,-11],[0,-11],[0,-24],[-5,-29],[-54,-139],[-45,-87],[-35,-55],[-28,-31],[-20,-28],[-11,-19],[-20,-16],[-27,-21],[-32,-27],[-51,-37],[-61,-28],[-108,-23],[-95,4],[-114,61],[-67,52],[-59,62],[-73,85],[-32,56],[-34,195],[-5,226],[95,307],[55,184],[40,64],[65,73],[42,88],[59,117],[44,73],[19,57],[8,44],[34,54],[36,51],[7,33],[-13,46],[11,50],[-27,62],[14,39],[23,41],[15,55],[21,65],[13,30],[-17,30],[-32,12],[-13,57],[16,62],[30,34],[11,62],[-25,36],[-40,28],[-27,-20],[-10,-13],[-21,-3],[-31,13],[-15,-6],[-6,-20],[10,-16],[2,-20],[-10,-20],[-29,-4],[-16,15],[-50,31],[-26,0],[-39,10],[-38,-13],[-12,3],[-11,6],[-61,54],[-30,34],[-32,58],[-45,79],[-37,-62],[61,-36],[-7,-14],[-63,38],[-3,-5],[-103,-162],[63,-37],[-6,-16],[-66,39],[-98,-160],[71,-42],[-26,-40],[-47,28],[-24,15],[-332,-530],[-224,-363],[-240,-380],[-102,-161],[-296,-473],[-276,-440],[-293,-469],[-53,-84],[-38,23],[14,23],[24,-15],[34,53],[69,110],[-33,20],[7,13],[34,-19],[108,169],[-34,19],[7,14],[33,-20],[107,170],[-32,17],[8,13],[31,-18],[108,170],[-33,17],[8,12],[32,-18],[106,171],[-34,17],[8,11],[33,-17],[108,170],[-34,17],[8,14],[34,-18],[106,168],[-32,19],[7,13],[33,-20],[106,169],[-34,19],[9,14],[33,-19],[92,146],[14,23],[-33,19],[6,14],[34,-20],[107,167],[-35,21],[8,14],[33,-20],[108,168],[-33,19],[7,13],[33,-19],[107,169],[-35,19],[11,14],[31,-19],[105,170],[-30,19],[7,11],[33,-18],[106,168],[-32,19],[8,13],[31,-18],[107,168],[-32,19],[8,13],[31,-19],[94,153],[-120,70],[26,40],[119,-71],[10,14],[92,145],[-93,50],[-18,11],[9,15],[10,-6],[97,-55],[109,166],[1,2],[-3,2],[-108,58],[7,16],[81,-47],[27,-16],[46,69],[-75,123],[-431,528],[-66,94],[-210,207],[-145,119],[-83,55],[-44,-29],[-29,24],[1,20],[-201,-123],[-14,15],[215,130],[-6,22],[-52,15],[-40,36],[12,22],[-22,17],[-15,56],[-242,348],[-1528,1441],[-1813,-259],[-1172,-1907],[-1755,-3045],[-42,-47],[-47,-42],[-50,-39],[-54,-34],[-56,-30],[-59,-24],[-50,-31],[-47,-34],[-44,-39],[-245,99],[-327,-112],[-375,-337],[-190,-220],[-90,-360],[93,-473],[177,-598],[11,-208],[226,-193],[5,-219],[5,-305],[106,-276],[89,-270],[118,-12],[53,-225],[-150,-721],[-84,-208],[-178,-163],[-232,-146],[-404,-168],[-315,-101],[-214,-45],[-149,-61],[-137,-34],[-107,-28],[-89,-84],[-285,-168],[-333,-152],[-107,-45],[-143,18],[-95,-113],[-48,-202],[-37,-310],[-113,-141],[-43,-495],[-1,-355],[71,-417],[-392,181],[-231,62],[-256,6],[-279,-33],[-184,-135],[-113,-180],[-43,-230],[136,-412],[255,-490],[-205,-43],[-107,22],[-3,1],[-5,4],[-38,35],[-38,31],[-35,3],[-61,6],[-37,38],[-8,22],[-6,16],[-8,34],[-58,43],[-73,-3],[-24,4],[-58,5],[-47,50],[0,32],[-30,45],[-24,6],[-24,21],[-59,54],[4,31],[38,9],[0,1],[25,29],[-3,55],[-32,40],[-50,11],[-53,70],[-57,14],[-19,5],[-38,-17],[-55,25],[-60,45],[-67,63],[-2,22],[48,25],[3,2],[-4,30],[-35,45],[2,29],[-20,52],[-76,71],[-1,1],[-50,66],[-32,42],[17,10],[13,9],[0,30],[-27,51],[-42,17],[-46,21],[-67,47],[-18,0],[-34,0],[-62,-1],[-36,28],[-47,10],[-114,7],[-63,1],[-82,45],[-149,95],[-131,28],[-83,52],[-108,75],[-153,61],[-59,0],[-18,13],[4,29],[0,6],[2,30],[-32,26],[-28,4],[-67,0],[-27,0],[-37,0],[-58,0],[-32,4],[-2,19],[5,27],[4,26],[-62,55],[-44,-19],[-113,-11],[-143,21],[-88,6],[-101,-9],[-73,6],[-9,1],[-7,3],[-73,30],[14,37],[-1,47],[-24,40],[-72,23],[-75,-21],[-66,-9],[-72,-19],[-34,19],[-55,78],[2,73],[0,110],[9,77],[-38,63],[-92,0],[-35,-19],[-3,-11],[-6,-29],[-35,-17],[-100,-41],[-60,4],[-12,-9],[-33,-25],[-64,-39],[0,-32],[-82,-81],[-38,-12],[-60,1],[-51,-21],[-30,41],[-24,19],[-34,0],[-24,-11],[-36,-14],[-19,1],[-8,6],[-20,38],[0,11],[0,17],[6,30],[-26,23],[-32,24],[-27,27],[-26,28],[-37,19],[39,21],[16,19],[20,22],[36,8],[37,2],[52,-16],[36,27],[42,19],[69,13],[25,41],[3,6],[-11,37],[14,46],[74,154],[0,23],[8,26],[8,9],[34,37],[-16,28],[-28,26],[-6,6],[-12,23],[0,36],[8,41],[5,15],[7,21],[26,26],[2,40],[2,53],[10,56],[36,68],[40,17],[56,6],[36,13],[22,39],[52,0],[37,8],[39,29],[7,5],[58,15],[36,34],[8,54],[-30,72],[-25,19],[-18,15],[-31,3],[-41,3],[-34,8],[-36,24],[-5,85],[-16,40],[30,30],[23,22],[51,48],[26,205],[-20,63],[18,20],[22,17],[-40,15],[-4,25],[2,17],[2,23],[3,1],[25,17],[2,27],[-11,37],[-14,46],[26,57],[10,13],[46,54],[-6,55],[-9,44],[-7,32],[66,107],[6,5],[72,52],[30,58],[16,64],[20,45],[11,4],[10,5],[9,6],[8,8],[0,19],[-3,20],[-5,18],[-7,15],[-9,15],[-10,13],[1,15],[4,16],[6,14],[8,13],[11,12],[23,-10],[20,-14],[18,-16],[5,-6],[12,-2],[13,0],[13,2],[12,4],[11,5],[10,7],[9,9],[7,10],[6,11],[3,12],[1,12],[-9,40],[-8,37],[30,12],[27,17],[25,21],[20,24],[16,27],[11,29],[6,3],[6,2],[7,1],[6,0],[7,-1],[6,-2],[6,-2],[5,-4],[5,-4],[4,-5],[2,-6],[2,-6],[1,-6],[0,-7],[-1,-6],[-2,-6],[16,-21],[20,-19],[23,-15],[24,-13],[27,-8],[27,-5],[24,-1],[24,2],[4,0],[20,24],[17,26],[12,27],[8,28],[4,29],[-1,29],[-11,-3],[-12,-1],[-11,1],[-11,2],[-10,5],[-10,5],[-8,8],[-7,8],[-6,9],[-4,11],[-2,10],[0,11],[2,37],[7,36],[12,36],[17,33],[22,30],[26,28],[-1,7],[-1,8],[1,7],[2,7],[3,7],[5,6],[5,6],[6,5],[29,10],[62,27],[60,31],[57,35],[55,38],[42,33],[40,4],[39,-1],[23,7],[21,11],[18,15],[16,17],[13,20],[9,21],[5,22],[1,23],[-3,23],[-7,22],[-11,20],[-11,-2],[-11,-1],[-11,2],[-11,2],[-10,5],[-9,5],[-9,7],[-7,9],[-5,9],[-5,10],[-2,11],[0,11],[7,37],[11,39],[16,37],[-7,5],[-5,5],[-5,5],[-4,7],[-3,8],[-1,8],[0,8],[2,9],[3,8],[4,7],[6,6],[7,5],[5,4],[6,2],[39,41],[41,38],[45,34],[11,21],[7,22],[-17,40],[-21,39],[-23,37],[-4,6],[-3,7],[-2,9],[-1,9],[1,9],[2,8],[4,8],[5,8],[5,-5],[8,-5],[8,-5],[9,-2],[9,-2],[10,0],[9,2],[15,18],[18,16],[19,14],[22,10],[23,8],[17,3],[16,0],[17,-2],[16,-4],[15,-7],[13,-9],[7,4],[7,6],[5,6],[4,8],[3,8],[1,8],[0,8],[-2,8],[-3,8],[-4,7],[-6,3],[-5,4],[-4,4],[-4,5],[-2,6],[-2,6],[-1,6],[1,6],[1,6],[14,22],[9,25],[5,26],[-1,26],[-3,19],[-5,19],[-8,43],[-12,42],[-12,29],[-15,27],[-14,21],[-15,20],[-31,7],[-8,30],[-10,50],[0,37],[20,6],[46,0],[25,-2],[22,-8],[21,-4],[17,-3],[32,3],[34,15],[28,21],[32,9],[27,2],[8,21],[28,4],[28,-10],[34,4],[12,38],[4,66],[-14,34],[6,32],[30,28],[-12,32],[16,23],[34,9],[4,27],[-35,32],[0,26],[40,57],[11,28],[8,30],[3,31],[-1,31],[-6,30],[-10,30],[-14,28],[-11,16],[-26,46],[36,52],[50,55],[18,36],[-18,34],[-21,40],[18,47],[81,77],[36,7],[0,0],[28,14],[-4,49],[208,269],[22,108],[-11,135],[53,177],[11,16],[-14,24],[-13,24],[-12,29],[-11,29],[3,6],[3,6],[5,8],[7,6],[8,5],[8,5],[30,-1],[29,5],[29,8],[26,13],[25,16],[21,20],[17,23],[10,47],[28,19],[26,22],[21,25],[18,27],[13,30],[9,31],[5,33],[-1,25],[-3,26],[-14,26],[-18,24],[-22,21],[-25,17],[-28,14],[-12,14],[-10,17],[-7,17],[-4,18],[42,29],[45,25],[48,20],[50,14],[32,64],[8,10],[10,8],[11,6],[13,5],[12,2],[13,1],[13,-1],[13,-3],[12,-5],[11,-7],[9,-8],[2,-11],[4,-9],[6,-9],[7,-8],[9,-7],[9,-5],[11,-4],[11,-2],[11,0],[13,0],[13,2],[12,3],[11,5],[10,7],[9,8],[7,10],[6,10],[4,32],[6,44],[9,43],[-6,22],[-10,21],[-13,19],[-16,17],[-19,14],[-21,11],[-23,7],[-16,7],[-14,9],[-13,11],[-11,13],[-8,14],[-5,16],[-3,16],[0,12],[2,15],[5,14],[-1,41],[5,41],[10,41],[15,38],[21,37],[24,34],[29,31],[33,27],[36,24],[39,18],[84,16],[84,10],[85,6],[85,1],[85,-4],[85,-9],[84,-14],[313,-149],[176,-75],[209,-72],[238,-6],[160,-37],[119,-28],[415,40],[98,93],[74,55],[109,48],[77,-4],[66,-11],[14,-1],[102,0],[47,8],[81,32],[113,102],[148,108],[39,80],[6,13],[45,94],[93,121],[97,70],[233,202],[125,97],[2074,2210],[876,1147],[385,992],[123,650],[-701,297],[-354,570],[-411,274],[-428,283],[-3,-1],[-144,-17],[-344,122],[-255,24],[-324,243],[-229,345],[-324,309],[-560,403],[-29,12],[-26,16],[-23,20],[-20,24],[-16,25],[-12,28],[-7,30],[-1,29],[2,30],[8,29],[-43,5],[-11,-33],[-17,-31],[-21,-28],[-25,-25],[-30,-22],[-32,-17],[-34,-12],[-117,-24],[-118,-19],[-119,-14],[-51,-11],[-49,-15],[-48,-18],[-46,-21],[-29,-15],[-28,-17],[-7,-1],[-6,-1],[-7,0],[-6,1],[-6,3],[-6,3],[-5,4],[-5,4],[-3,6],[-3,5],[-1,7],[-1,6],[15,41],[19,39],[23,37],[26,35],[7,5],[5,6],[5,7],[4,7],[3,9],[1,9],[-1,10],[-2,8],[-3,8],[-14,22],[-17,20],[-20,17],[-23,15],[-1717,-910],[0,0],[-1371,-727],[-1399,-742],[43,-73],[-93,-50],[-98,166],[95,50],[42,-72],[1386,735],[1343,713],[0,0],[1520,807],[238,125],[-167,-60],[-80,46],[-61,84],[0,100],[36,122],[13,129],[-321,491],[-83,67],[-58,46],[-153,193],[-401,92],[-133,43],[-87,13],[-50,7],[-79,-4],[-97,67],[-93,76],[-106,71],[-21,17],[-98,79],[-97,58],[-106,30],[-12,-3],[-89,-18],[-93,42],[-79,96],[-54,46],[-123,105],[-172,117],[-92,0],[-132,62],[-71,109],[-106,63],[-163,79],[-168,118],[-44,37],[-79,9],[-57,12],[-27,92],[-70,59],[-120,58],[-150,21],[-92,4],[-132,55],[-97,79],[-133,71],[-92,0],[-71,0],[-18,0],[-16,18],[-54,58],[-66,12],[-16,2],[-81,7],[-115,-46],[-93,37],[-308,235],[-261,129],[-169,177],[-11,12],[-821,481],[-745,393],[-1043,489],[-619,538],[-90,-25],[-174,26],[-83,38],[-126,56],[-173,39],[-476,311],[-728,490],[-334,158],[-520,227],[-57,17],[-397,120],[-240,158],[-204,225],[-346,243],[-464,155],[-315,55],[-134,46],[-253,174],[-138,55],[-503,259],[-583,318],[-39,44],[-41,40],[-45,39],[-48,34],[-50,32],[-52,28],[-59,27],[-61,22],[-63,18],[-64,13],[-65,8],[-65,4],[-65,-1],[-65,-7],[-72,9],[-72,11],[-71,15],[-69,18],[-68,20],[-67,23],[-76,31],[-75,35],[-73,39],[-70,42],[-68,45],[-75,57],[-71,61],[-67,65],[-62,68],[-58,72],[-54,75],[-48,79],[-80,139],[-84,137],[-89,135],[-91,132],[-96,130],[-99,128],[-103,125],[-107,122],[-93,67],[-89,72],[-86,75],[-82,79],[-78,83],[-73,86],[-70,89],[-64,93],[-60,95],[-55,98],[-52,71],[-46,74],[-43,77],[-37,79],[-32,81],[-28,83],[-22,84],[-17,85],[1,60],[-3,60],[-7,60],[-10,60],[-16,65],[-21,65],[-26,63],[-30,62],[-15,28],[-13,29],[-12,34],[-9,35],[-6,36],[5,72],[0,71],[-4,72],[-86,247],[-27,64],[-23,66],[-19,66],[-17,76],[-13,76],[-7,77],[-3,80],[2,79],[-8,89],[-13,89],[-18,88],[-23,87],[-28,86],[-32,84],[-58,120],[-53,122],[-48,125],[-43,126],[-38,127],[-32,126],[-10,40],[-165,873],[49,547],[341,1247],[239,1128],[23,54],[27,52],[31,50],[35,48],[39,45],[43,42],[269,256],[31,26],[32,25],[-19,36],[-17,-5],[-14,27],[11,8],[-10,11],[52,26],[21,-43],[-12,-5],[15,-37],[53,32],[55,28],[58,24],[991,506],[-26,50],[-17,-9],[-13,27],[12,6],[-8,20],[43,21],[25,-47],[-14,-7],[25,-47],[399,204],[47,23],[49,21],[50,17],[51,15],[46,-2],[45,-6],[45,-11],[43,-15],[41,-19],[431,-68],[3,34],[-26,0],[0,5],[-9,0],[1,22],[12,0],[1,25],[104,-9],[-6,-46],[-30,2],[-3,-42],[240,-47],[121,-37],[63,-22],[64,-18],[65,-15],[66,-11],[67,-8],[198,-13],[4,53],[-25,4],[-1,30],[9,-1],[0,14],[111,-7],[-9,-47],[-28,1],[-6,-50],[366,-37],[64,-15],[64,-18],[63,-20],[292,-61],[6,49],[-19,3],[2,29],[13,-1],[1,24],[66,-12],[-12,-50],[-16,0],[-7,-49],[332,-67],[128,-39],[76,-14],[7,-3],[103,-28],[205,-61],[99,-29],[292,-28],[12,2],[182,33],[189,2],[7,1],[36,-11],[223,20],[22,10],[24,-4],[37,22],[10,40],[79,52],[31,131],[-35,65],[-10,1],[-9,2],[-16,6],[-15,8],[-13,10],[-12,12],[-9,14],[-7,15],[-4,15],[-37,24],[-128,28],[-178,60],[-130,8],[-378,91],[-20,-6],[-15,8],[-742,190],[-26,-7],[-7,2],[-7,11],[-494,115],[-92,31],[-121,25],[-295,60],[-282,53],[-218,41],[-184,36],[-20,11],[-59,7],[-48,22],[-55,5],[-18,-8],[-11,-3],[-22,5],[-15,15],[-54,23],[-69,20],[-78,24],[-61,14],[-13,-5],[-23,0],[-3,6],[-10,6],[-90,17],[-61,9],[-39,7],[-56,-3],[-82,10],[-45,17],[-49,26],[-18,17],[-9,2],[-6,42],[-102,21],[-38,-65],[-7,1],[4,17],[-40,-7],[-38,-10],[-37,-15],[-30,-15],[-17,-7],[-34,-13],[-85,-33],[-85,-36],[-83,-38],[-97,-42],[-95,-47],[-92,-51],[-88,-57],[-22,-14],[-20,-17],[-19,-19],[-11,-13],[-4,-2],[-5,-2],[-4,0],[-5,0],[-4,1],[-5,1],[-3,3],[-19,4],[-19,1],[-19,-1],[-19,-4],[-18,-7],[-16,-9],[-132,-66],[-93,-47],[-92,-50],[-89,-54],[-87,-57],[-84,-60],[-17,-11],[-45,-29],[-47,-26],[-43,-20],[-84,-37],[-84,-36],[-53,-18],[-51,-22],[-48,-27],[-46,-32],[-42,-35],[-26,-23],[-30,-20],[-32,-17],[-34,-12],[-36,-7],[-35,-4],[-43,-7],[-42,-10],[-42,-13],[-29,-11],[-29,-13],[-61,-28],[-59,-33],[-56,-36],[-54,-40],[-51,-43],[-48,-46],[-45,-49],[-41,-51],[-319,-1139],[-15,-42],[-12,-43],[-7,-44],[-3,-44],[1,-44],[135,-25],[-1,-21],[-34,6],[-1,5],[-93,14],[0,-97],[-10,-50],[-14,-50],[-18,-49],[-21,-47],[-17,-23],[-14,-24],[-10,-27],[-7,-27],[98,-22],[2,9],[38,-5],[-11,-46],[-32,6],[4,14],[-101,19],[-12,-48],[-8,-48],[-4,-49],[0,-49],[0,-11],[-3,-12],[-4,-11],[-12,-52],[-18,-50],[-23,-48],[-28,-46],[-275,-1005],[-47,-181],[-7,-174],[47,-219],[190,-885],[4,-26],[7,-25],[13,-36],[18,-33],[13,-18],[15,-18],[17,-30],[12,-32],[7,-34],[3,-34],[-2,-34],[-7,-34],[3,-35],[7,-35],[11,-34],[15,-32],[19,-31],[22,-38],[18,-40],[12,-42],[8,-43],[4,-43],[-2,-44],[-7,-43],[10,-94],[14,-93],[19,-93],[24,-91],[29,-91],[26,-42],[23,-45],[18,-46],[13,-47],[10,-49],[4,-49],[0,-49],[5,-84],[10,-84],[14,-83],[18,-82],[24,-81],[27,-80],[32,-79],[13,-27],[9,-28],[5,-29],[1,-30],[-3,-30],[-4,-17],[-7,-20],[-8,-20],[-5,-29],[-1,-30],[5,-29],[9,-28],[13,-27],[18,-24],[29,-61],[23,-61],[18,-62],[13,-63],[9,-64],[3,-65],[-2,-64],[-5,-54],[-9,-53],[1,-32],[4,-31],[7,-31],[12,-30],[14,-28],[8,-15],[6,-17],[3,-16],[1,-17],[-2,-17],[7,-87],[13,-86],[18,-85],[24,-83],[29,-82],[78,14],[170,-820],[-15,-20],[-19,-17],[-21,-14],[-23,-10],[-24,-7],[-26,-2],[-25,1],[-25,5],[-120,227],[-15,30],[-16,28],[-34,52],[-27,36],[-30,34],[-32,32],[-45,46],[-40,49],[-37,52],[-22,37],[-21,37],[-14,27],[-8,30],[-3,30],[2,30],[8,30],[12,28],[1,14],[-2,14],[-4,14],[-7,13],[-9,12],[-11,10],[-13,8],[-39,41],[-44,37],[-47,33],[-50,29],[-33,26],[-43,33],[-38,34],[-34,37],[-32,39],[-29,42],[-25,43],[-8,7],[-10,5],[-10,4],[-11,2],[-12,0],[-11,-2],[-10,-3],[-10,-5],[-9,-7],[-7,-8],[-6,-9],[-4,-10],[-3,-10],[11,-26],[14,-25],[15,-26],[13,-29],[6,-10],[4,-10],[2,-12],[0,-11],[-2,-11],[-5,-11],[-6,-10],[-6,-6],[-6,-6],[-8,-5],[-8,-4],[-23,-13],[-26,-8],[-27,-5],[-27,0],[-26,3],[-35,18],[-31,22],[-28,27],[-23,29],[-19,32],[-14,35],[-9,36],[-67,215],[-77,-17],[-42,-180],[1,-21],[-2,-21],[-6,-21],[-9,-19],[-13,-18],[-15,-16],[-18,-13],[-19,-10],[-22,-7],[-22,-3],[-22,0],[-22,3],[-20,5],[-18,8],[-17,11],[-14,13],[-13,15],[-10,17],[-6,18],[-4,19],[-1,19],[-17,17],[-14,20],[-11,22],[-6,23],[-3,24],[-17,193],[-1,11],[-4,11],[-5,10],[-7,9],[-8,8],[-17,0],[-16,-1],[-16,-5],[-14,-7],[-13,-9],[-12,-11],[-9,-13],[14,-35],[18,-34],[21,-33],[0,-21],[4,-21],[5,-20],[12,-6],[11,-8],[9,-9],[7,-10],[6,-12],[3,-12],[1,-13],[0,-12],[-3,-12],[-5,-12],[-7,-11],[-9,-11],[-6,-12],[-5,-12],[-2,-14],[0,-13],[2,-13],[5,-13],[-1,-13],[-4,-13],[-6,-12],[-9,-11],[-10,-9],[-12,-8],[-12,-5],[-16,0],[-15,-3],[-14,-4],[-14,-7],[-12,-9],[-19,-46],[-14,-47],[-9,-49],[-4,-49],[1,-49],[7,-49],[11,-48],[17,-47],[19,-49],[16,-49],[12,-51],[7,-52],[-7,-21],[-3,-23],[1,-22],[4,-22],[7,-21],[15,-90],[-9,-17],[-13,-15],[-15,-13],[-18,-10],[-19,-7],[-23,5],[-22,8],[-20,11],[-19,15],[-15,16],[-3,33],[-5,32],[-10,31],[-13,30],[-29,33],[-26,36],[-22,37],[-19,40],[-33,21],[-36,18],[-38,13],[-39,9],[-39,25],[-41,22],[-44,18],[-44,15],[-46,10],[-47,7],[-11,4],[-18,4],[-19,2],[-18,-1],[-18,-3],[-18,-6],[-2,-5],[-3,-4],[-4,-4],[-5,-3],[-5,-2],[-5,-2],[-6,0],[-5,0],[-6,1],[-5,2],[-5,3],[-4,3],[-29,21],[-31,18],[-34,13],[-36,9],[-36,5],[-36,0],[-37,-4],[-35,-9],[-54,11],[-53,15],[-52,19],[-50,23],[-48,26],[-45,30],[-43,34],[-34,36],[-37,34],[-39,31],[-43,27],[-56,129],[-46,89],[-21,82],[-5,44],[-11,6],[-57,37],[-67,51],[-29,67],[-40,8],[-142,142],[-117,155],[-89,376],[-228,178],[-93,140],[-104,57],[-75,85],[-72,86],[-36,111],[-68,375],[-141,379],[20,375],[7,189],[-67,31],[-102,65],[0,0],[-19,33],[-13,79],[18,50],[249,275],[-12,15],[43,45],[437,449],[3,-2],[163,134],[14,21],[-8,4],[-13,-20],[-25,17],[16,26],[33,-19],[11,44],[19,36],[112,118],[345,319],[106,119],[82,122],[10,20],[6,46],[-15,11],[-19,0],[-24,-5],[-28,-15],[-21,-19],[-16,-27],[-84,-87],[-25,-20],[-41,-50],[14,-11],[-145,-170],[-114,36],[-106,-7],[-1,6],[-26,12],[-13,3],[-39,1],[-31,-7],[-67,-27],[-38,-38],[-46,-40],[-56,-76],[-12,-20],[-18,-55],[7,-129],[9,-1],[0,116],[3,42],[13,-2],[-3,-29],[-1,-314],[-8,0],[-5,175],[-7,2],[7,-166],[1,-26],[-8,-24],[-20,-42],[-233,-241],[-235,-242],[9,-10],[-65,-50],[-13,10],[-148,-143],[-152,78],[-27,-23],[-36,34],[-42,175],[76,129],[-32,20],[-67,33],[-23,-42],[-12,4],[31,54],[74,-38],[88,116],[29,-15],[158,178],[33,58],[35,48],[50,165],[19,122],[15,92],[30,99],[92,246],[35,21],[109,65],[24,4],[35,6],[51,21],[91,53],[81,59],[2,1],[40,27],[15,10],[0,1],[19,13],[41,18],[24,14],[20,9],[83,102],[-5,14],[-1,15],[10,20],[11,17],[13,10],[30,12],[36,-9],[24,-12],[27,-25],[28,-24],[54,-24],[33,-11],[31,-12],[2,10],[33,-5],[-1,-11],[13,3],[33,17],[64,44],[43,36],[30,41],[10,24],[4,21],[-7,16],[-7,16],[-1,15],[0,12],[-4,22],[-10,34],[-12,45],[-5,46],[15,26],[12,14],[17,18],[21,22],[29,30],[15,15],[12,18],[9,10],[9,8],[16,9],[18,10],[16,7],[14,9],[9,15],[4,16],[-2,28],[-10,25],[-20,100],[-40,121],[-34,93],[-29,75],[-18,17],[-31,25],[-40,20],[-40,4],[-19,-2],[-23,12],[-36,13],[-9,11],[-3,7],[-4,14],[-9,17],[-63,85],[-21,16],[-24,9],[-15,11],[-15,20],[-9,18],[-5,14],[-14,12],[-26,8],[-33,16],[-8,8],[-1,9],[-2,12],[-12,12],[-14,8],[-20,8],[-27,12],[-26,15],[-14,16],[-8,18],[0,18],[4,19],[6,7],[24,18],[15,5],[18,2],[21,0],[21,-3],[23,-7],[21,-8],[19,-1],[24,8],[26,8],[25,8],[15,3],[24,15],[26,27],[12,33],[5,44],[-9,41],[-36,66],[-13,31],[-19,45],[-19,42],[-37,53],[-6,10],[-31,55],[-26,41],[-8,20],[-9,47],[-10,42],[-2,6],[-2,16],[-4,19],[-15,80],[-8,37],[-3,17],[1,24],[-7,19],[-16,41],[-20,61],[-12,33],[-10,26],[-9,15],[-11,1],[-8,-4],[-6,-11],[-3,-10],[1,-14],[6,-17],[8,-12],[8,-9],[4,-12],[6,-20],[5,-19],[4,-26],[7,-34],[15,-68],[3,-41],[22,-126],[4,-23],[3,-26],[6,-26],[40,-44],[31,-44],[10,-14],[35,-53],[25,-63],[13,-43],[24,-62],[7,-33],[12,-35],[-7,-41],[-54,-27],[-48,3],[-46,13],[-35,4],[-35,-17],[-47,-31],[-15,-11],[-26,-6],[-27,-61],[-1,-62],[47,-26],[41,-44],[60,-64],[57,-24],[15,-6],[39,-16],[34,-70],[44,-77],[44,-61],[71,-37],[35,4],[53,-7],[92,-68],[74,-125],[25,-79],[-18,-83],[-49,-70],[-44,-48],[-64,-60],[-49,-69],[-44,-83],[2,-37],[20,-68],[0,-62],[-25,-32],[-51,6],[-60,27],[-60,15],[-70,14],[-6,2],[-67,4],[-51,0],[-58,-33],[-35,-48],[-53,-96],[-39,-55],[-71,-72],[-348,-157],[-24,-15],[-23,-17],[-42,-34],[-38,-38],[-33,-42],[-29,-44],[-24,-47],[-19,-50],[-14,-50],[-7,-52],[3,-62],[-28,-68],[-20,-38],[-7,-47],[4,-86],[-38,-38],[-45,-79],[-41,-100],[-62,-59],[-39,-2],[-56,14],[-36,-9],[-40,-11],[-33,15],[-36,148],[-151,607],[-167,670],[-8,35],[-84,536],[75,50],[431,-1092],[88,31],[-407,1276],[363,193],[564,119],[-14,67],[-89,32],[-418,-66],[-557,-105],[-334,-67],[200,-1051],[159,-667],[146,-613],[115,-609],[131,-687],[122,-543],[87,-389],[79,-351],[86,-397],[79,-365],[105,-483],[114,-754],[-361,-862],[-1570,96],[-86,2],[-85,8],[-86,11],[-84,16],[-83,21],[-83,24],[-80,29],[-79,33],[-76,37],[-38,29],[-34,32],[-30,36],[-27,37],[-23,41],[-18,42],[-14,43],[-10,45],[-4,45],[9,42],[4,43],[-1,43],[-6,42],[-11,42],[-16,40],[-20,39],[40,166],[-310,1307],[-195,1253],[-312,1319],[-314,1248],[-310,1299],[-135,1284],[-321,1319],[451,707],[-420,346],[-380,-208],[-144,-79],[-246,-137],[157,-736],[-38,-358],[225,-968],[284,-1278],[254,-1296],[64,-64],[242,-1212],[267,-1333],[242,-1242],[264,-1270],[551,-2891],[-209,-114],[-43,-24],[-48,-3],[-2042,-124],[-187,-16],[-54,-61],[-130,-36],[-174,-113],[-191,82],[-3161,-309],[-2174,-335],[-1441,1331],[-60,87],[-54,90],[-50,93],[-44,95],[-39,97],[-34,99],[-28,101],[-22,101],[-16,103],[-11,104],[-5,104],[2,104],[10,75],[16,74],[19,74],[25,72],[28,71],[33,69],[37,67],[41,65],[25,95],[22,95],[10,54],[13,54],[18,53],[23,51],[26,49],[30,47],[34,45],[3,8],[2,22],[12,35],[18,27],[15,17],[9,24],[18,16],[11,17],[14,18],[2,12],[-3,11],[12,9],[10,-3],[7,-7],[2,2],[4,2],[8,9],[8,9],[3,1],[3,1],[26,-19],[12,3],[25,18],[7,9],[6,7],[-7,19],[10,4],[21,2],[6,-14],[2,-23],[0,-15],[10,-15],[8,-7],[33,-9],[33,-3],[33,1],[33,6],[31,11],[29,15],[26,19],[24,23],[4,25],[0,12],[-11,32],[-10,42],[-1,43],[4,35],[10,41],[5,14],[9,2],[4,0],[2,2],[10,16],[20,5],[2,16],[11,21],[2,30],[1,13],[6,36],[2,42],[0,18],[13,0],[1,0],[0,2],[-2,15],[-9,8],[3,22],[45,-2],[4,-1],[13,-3],[13,-5],[31,2],[9,12],[10,40],[-3,33],[0,3],[-9,10],[7,12],[7,15],[1,42],[-7,44],[-4,42],[-8,39],[-1,43],[3,42],[10,42],[6,9],[14,7],[10,4],[7,4],[4,10],[14,-10],[17,-25],[27,-35],[19,-14],[12,1],[0,12],[-13,17],[-15,18],[-9,26],[0,41],[-5,26],[14,16],[15,10],[17,16],[20,7],[14,9],[29,4],[17,5],[14,14],[13,28],[14,24],[2,3],[10,18],[28,23],[31,20],[4,1],[5,2],[5,6],[11,12],[31,21],[34,27],[38,24],[41,19],[36,19],[25,-2],[2,10],[1,25],[45,-3],[25,4],[16,6],[16,3],[18,1],[14,-3],[9,-5],[17,1],[32,31],[45,31],[27,17],[21,38],[6,19],[6,18],[-7,31],[-14,14],[-8,9],[-19,25],[-9,29],[-11,10],[0,0],[-12,10],[-5,23],[-3,18],[-5,18],[-4,17],[-23,32],[-17,21],[-22,17],[-24,15],[-27,10],[-29,7],[-29,1],[-177,101],[-30,-6],[-31,0],[-31,4],[-29,10],[-76,-71],[-30,12],[-33,6],[-33,1],[-33,-3],[-32,-8],[-31,-12],[-28,-16],[-26,-20],[-8,-6],[-9,-5],[-9,-4],[-10,-1],[-11,-1],[-10,2],[-10,3],[-9,5],[-8,6],[-7,7],[-69,-25],[-68,-29],[-65,-34],[-63,-37],[-60,-41],[-58,-44],[-54,-48],[-170,-285],[-13,-10],[-14,-7],[-15,-5],[-15,-3],[-16,-1],[-16,2],[-15,4],[-14,7],[-13,8],[-28,-5],[-25,-9],[-24,-13],[-21,-16],[-18,-20],[-14,-23],[-6,-15],[-19,-26],[-23,-23],[-26,-20],[-29,-16],[-31,-12],[-33,-8],[-33,-2],[-33,1],[-33,7],[-31,10],[-113,24],[-114,20],[-114,14],[-115,9],[-115,5],[-14,-2],[-43,-8],[-43,-11],[-44,-3],[-45,2],[-44,6],[-43,10],[-42,14],[-56,37],[-60,34],[-61,30],[-63,26],[-65,22],[-67,19],[-53,15],[-76,28],[-74,31],[-71,37],[-65,38],[-61,42],[-59,45],[2,9],[-1,9],[-2,9],[-3,8],[-5,8],[-6,7],[-7,6],[-8,4],[-9,4],[-9,1],[-10,1],[-9,-1],[-19,-12],[-20,-8],[-21,-6],[-22,-3],[-22,0],[-22,4],[-21,7],[-28,8],[-27,12],[-26,15],[-23,18],[-21,20],[-39,31],[-35,34],[-32,37],[-28,40],[-24,42],[-19,44],[-15,46],[-10,47],[-5,47],[0,48],[4,48],[2,8],[3,41],[-3,40],[-8,40],[-13,39],[-19,37],[-24,34],[-28,31],[-32,27],[-2,54],[-7,53],[-12,53],[-18,51],[-23,49],[-28,47],[-32,45],[-37,41],[-41,37],[-45,33],[-28,10],[-30,5],[-31,1],[-30,-4],[-28,-9],[-27,-13],[-25,-18],[-21,-20],[0,-6],[-1,-5],[-1,-5],[-3,-5],[-3,-5],[-3,-4],[-6,-4],[-5,-3],[-7,-2],[-6,-1],[-7,0],[0,0],[-38,1],[-37,-3],[-37,-7],[-36,-12],[-34,-17],[-31,-20],[-28,-24],[-107,60],[-156,89],[-83,59],[-72,106],[-76,137],[-25,175],[-7,145],[-72,123],[-47,114],[1,13],[3,86],[-62,52],[-41,20],[-49,24],[-94,90],[-68,182],[-8,50],[-10,70],[0,89],[-7,48],[-58,28],[-84,63],[-48,44],[-36,31],[-28,33],[-27,35],[-124,166],[-477,429],[-69,96],[-137,62],[-120,86],[-60,24],[-7,15],[-3,16],[6,19],[4,16],[-7,23],[-15,25],[-8,19],[0,8],[5,7],[20,6],[35,-4],[42,-4],[38,-9],[54,-10],[45,-14],[16,-4],[18,7],[18,12],[14,6],[27,-6],[21,0],[27,7],[40,14],[30,-3],[16,-55],[7,-32],[8,-5],[5,0],[1,8],[4,33],[-9,85],[4,9],[8,13],[14,9],[53,12],[23,2],[9,8],[2,16],[-5,10],[-20,7],[-18,6],[-3,4],[0,11],[23,30],[19,23],[59,33],[28,14],[16,16],[22,27],[11,25],[12,19],[9,6],[21,-4],[6,-13],[4,-26],[15,-90],[5,-27],[7,-13],[12,-8],[8,-2],[16,11],[5,20],[-22,92],[4,19],[4,6],[5,0],[25,-2],[29,-2],[18,-1],[31,0],[22,2],[8,7],[-8,15],[-25,13],[-30,19],[-17,11],[-23,-2],[-5,0],[-10,-1],[-19,-6],[-9,1],[-4,5],[3,7],[12,15],[5,8],[10,13],[22,25],[19,27],[10,29],[4,10],[14,-6],[21,45],[44,38],[7,45],[5,40],[-10,19],[-72,164],[-8,27],[-1,12],[10,11],[27,13],[48,26],[43,29],[16,11],[24,38],[9,11],[20,33],[17,35],[13,36],[8,37],[4,38],[-2,51],[-6,51],[-10,51],[-15,49],[-19,48],[-27,27],[-30,24],[-32,20],[-35,17],[-36,13],[-44,1],[-43,5],[-43,10],[-19,-3],[-20,0],[-20,3],[-19,7],[-17,9],[-18,59],[-15,60],[25,16],[23,19],[21,21],[1,3],[2,3],[0,3],[0,4],[0,3],[-1,3],[-1,3],[-3,3],[-2,2],[-3,2],[-3,1],[-3,1],[-4,0],[-3,0],[-39,-14],[-37,-19],[-33,-24],[-7,-2],[-6,-3],[-6,-4],[-4,-5],[-4,-6],[-3,-6],[-1,-7],[0,-7],[1,-6],[2,-7],[17,-33],[13,-34],[8,-36],[-2,-6],[-2,-6],[-3,-6],[-3,-4],[-5,-5],[-5,-3],[-6,-3],[-6,-2],[-7,1],[-7,0],[-6,-2],[-7,-2],[-6,-3],[-5,-4],[-5,-5],[-3,-5],[-3,-6],[3,-1],[3,-2],[3,-2],[2,-3],[2,-2],[1,-3],[0,-4],[1,-3],[-1,-3],[-1,-3],[-6,-8],[-8,-6],[-9,-5],[-10,-4],[-10,-3],[-4,3],[-3,4],[-3,4],[-1,4],[-5,3],[-4,1],[-5,1],[-5,1],[-5,-1],[-4,-1],[-5,-3],[-4,-2],[-3,-4],[-41,-55],[-64,-23],[-63,-26],[-10,4],[-9,4],[-9,7],[-7,7],[-5,9],[-4,10],[-3,10],[0,10],[1,10],[3,30],[8,30],[12,29],[17,27],[20,24],[7,10],[5,11],[3,11],[0,11],[3,10],[4,10],[5,10],[8,8],[9,7],[36,11],[35,16],[32,20],[30,24],[26,28],[22,30],[17,32],[13,35],[8,36],[4,36],[-2,37],[-6,36],[-29,36],[-26,37],[-24,38],[-24,-4],[-22,-7],[-20,-11],[-18,-14],[-16,-17],[-12,-19],[-9,-21],[-4,-28],[-2,-30],[0,-29],[0,-15],[-3,-14],[-5,-14],[-7,-14],[-9,-12],[-11,-10],[-46,-31],[-48,-28],[-89,-81],[-27,-32],[-23,-36],[-19,-37],[-14,-40],[-9,-40],[-4,-41],[5,-20],[4,-21],[4,-25],[1,-25],[1,-34],[6,-35],[10,-33],[15,-32],[72,-50],[70,-51],[11,-10],[13,-8],[14,-7],[15,-3],[19,0],[54,4],[55,2],[40,4],[39,7],[39,11],[17,32],[22,29],[25,27],[28,23],[112,45],[18,11],[20,8],[21,5],[22,3],[22,-1],[91,-15],[37,-9],[6,1],[7,0],[6,0],[6,-2],[6,-3],[6,-4],[4,-4],[-4,-14],[-2,-14],[1,-1],[0,-1],[0,0],[0,-1],[0,0],[0,-1],[-1,-1],[0,0],[-1,0],[0,-1],[-1,0],[-1,2],[-2,1],[-2,2],[-2,1],[-2,0],[-2,0],[-3,0],[-2,0],[-2,-1],[-2,-2],[-2,-1],[-1,-2],[-1,-2],[-1,-2],[-11,-16],[-73,-63],[-9,-1],[-9,-2],[-9,-3],[-8,-5],[-7,-6],[-5,-8],[-5,-7],[-2,-9],[-2,-9],[3,-1],[2,-2],[1,-2],[2,-2],[1,-2],[0,-3],[0,-2],[0,-3],[-1,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-3,-1],[-82,-23],[-8,-8],[-6,-8],[-5,-10],[-3,-10],[-2,-10],[3,-5],[1,-6],[1,-5],[0,-5],[-17,-9],[-19,-7],[-19,-3],[-20,-2],[-20,2],[-10,-8],[-9,-9],[-7,-10],[-25,-9],[-23,3],[-24,-1],[-23,-3],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[28,-7],[27,-11],[25,-14],[24,-18],[1,-119],[11,-39],[17,-37],[22,-35],[9,-34],[-4,-26],[-16,-105],[-5,-17],[-15,-13],[-13,3],[-13,0],[-13,-1],[-12,-4],[-12,-5],[-35,-15],[-34,-16],[-14,-4],[-6,5],[6,34],[-9,0],[-21,-24],[-3,-13],[-1,-13],[2,-14],[1,-2],[0,-2],[1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-3,-1],[-2,1],[-12,-1],[-11,-2],[-10,-4],[-10,-6],[-55,-114],[-1,-4],[-2,-3],[-2,-3],[-2,-3],[-3,-2],[-4,-2],[-3,-1],[-4,0],[-4,0],[-3,0],[-240,71],[-135,-1],[-75,-2],[-9,39],[-6,41],[-2,40],[3,41],[6,40],[6,110],[0,111],[-5,110],[-11,111],[-16,109],[0,8],[-2,8],[-3,7],[-4,7],[-6,6],[-6,5],[-7,4],[-8,2],[-601,-320],[0,0]]],"objects":{"nyc":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]]],"type":"MultiPolygon","properties":{"OBJECTID":1,"BoroCode":5,"BoroName":"Staten Island"},"id":1},{"arcs":[[[4]],[[5,6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28,29,30,31]]],"type":"MultiPolygon","properties":{"OBJECTID":2,"BoroCode":2,"BoroName":"Bronx"},"id":2},{"arcs":[[[32,33]],[[34,35]],[[36,37]],[[38,39]],[[40]],[[41,42]],[[43]],[[44,45]],[[46,47]],[[48,49]],[[50,51]],[[52,53]],[[54]],[[55,56]],[[57,58]],[[59,60]],[[61,62]],[[63,64]],[[65,66]],[[67,68]],[[69,70]],[[71,72]],[[73,74]],[[75,76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[-31,82]],[[83,-29]]],"type":"MultiPolygon","properties":{"OBJECTID":3,"BoroCode":1,"BoroName":"Manhattan"},"id":3},{"arcs":[[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94,95]],[[96]],[[97]],[[98]],[[99,100]],[[101,102]],[[103]],[[104,105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114,115,116,117,-34,118,-35,119,-37,120,-39,121,-43,122,-46,123,-48,124,-49,125,-51,126,-54,127,-57,128,-59,129,-60,130,-63,131,-64,132,-66,133,-68,134,-70,135,-72,136,-74,137]]],"type":"MultiPolygon","properties":{"OBJECTID":4,"BoroCode":3,"BoroName":"Brooklyn"},"id":4},{"arcs":[[[138]],[[139]],[[140]],[[141]],[[142]],[[-96,143]],[[144]],[[145]],[[146]],[[147]],[[-102,148,-105,149]],[[150]],[[151]],[[-100,152]],[[-117,153]],[[154]],[[155,-6]],[[-115,156,-77,157]]],"type":"MultiPolygon","properties":{"OBJECTID":5,"BoroCode":4,"BoroName":"Queens"},"id":5}]}}} diff --git a/src/js/config/mapconfig/mapfiles/us-50/us-simple.json b/src/js/config/mapconfig/mapfiles/us-50/us-simple.json new file mode 100644 index 00000000..a0f69595 --- /dev/null +++ b/src/js/config/mapconfig/mapfiles/us-50/us-simple.json @@ -0,0 +1 @@ +{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":53073,"arcs":[[0,1,2]]},{"type":"Polygon","id":30105,"arcs":[[3,4,5,6,7,8]]},{"type":"Polygon","id":30029,"arcs":[[9,10,11,12,13,14,15,16,17,18]]},{"type":"Polygon","id":16021,"arcs":[[19,20,21,22]]},{"type":"Polygon","id":30071,"arcs":[[-8,23,24,25,26,27]]},{"type":"Polygon","id":38079,"arcs":[[28,29,30,31]]},{"type":"Polygon","id":30053,"arcs":[[-18,32,33,-20,34]]},{"type":"Polygon","id":38009,"arcs":[[-30,35,36,37,38]]},{"type":"Polygon","id":30035,"arcs":[[39,40,-10,41]]},{"type":"Polygon","id":30041,"arcs":[[42,43,44,45]]},{"type":"Polygon","id":30005,"arcs":[[-27,46,47,-46,48]]},{"type":"Polygon","id":30019,"arcs":[[49,50,-4,51]]},{"type":"Polygon","id":38067,"arcs":[[52,53,54,55]]},{"type":"Polygon","id":27069,"arcs":[[56,57,-53,58]]},{"type":"Polygon","id":38095,"arcs":[[59,60,61,-32,62,63]]},{"type":"Polygon","id":38019,"arcs":[[-55,64,65,-64,66]]},{"type":"Polygon","id":53047,"arcs":[[67,68,69,70,71,72,-1,73]]},{"type":"Polygon","id":53065,"arcs":[[74,75,76,77,78]]},{"type":"Polygon","id":53051,"arcs":[[-22,79,80,-75,81]]},{"type":"Polygon","id":53019,"arcs":[[-78,82,-68,83]]},{"type":"Polygon","id":30051,"arcs":[[84,85,86,-44,87]]},{"type":"Polygon","id":38023,"arcs":[[88,89,90,91]]},{"type":"Polygon","id":38013,"arcs":[[92,93,94,95,-89,96]]},{"type":"Polygon","id":30101,"arcs":[[97,-86,98,-40]]},{"type":"Polygon","id":38075,"arcs":[[99,100,-93,101,-38]]},{"type":"Polygon","id":27135,"arcs":[[102,103,-57,104,105]]},{"type":"Polygon","id":30091,"arcs":[[-91,106,107,-50,108]]},{"type":"Polygon","id":16017,"arcs":[[-34,109,110,111,112,-80,-21]]},{"type":"Polygon","id":38101,"arcs":[[-101,113,114,115,-94]]},{"type":"Polygon","id":27071,"arcs":[[116,117,118,119,120]]},{"type":"Polygon","id":53057,"arcs":[[-2,-73,121,122,123]]},{"type":"Polygon","id":38105,"arcs":[[-96,124,125,126,-107,-90]]},{"type":"Polygon","id":38049,"arcs":[[127,128,129,-114,-100,-37]]},{"type":"Polygon","id":27137,"arcs":[[130,131,132,133,134,135,-117,136]]},{"type":"Polygon","id":30085,"arcs":[[-108,-127,137,138,-5,-51]]},{"type":"Polygon","id":53007,"arcs":[[-72,139,140,141,142,-122]]},{"type":"Polygon","id":38061,"arcs":[[143,144,145,-125,-95,-116]]},{"type":"Polygon","id":27089,"arcs":[[146,147,148,149,150,-58,-104]]},{"type":"Polygon","id":38069,"arcs":[[-62,151,152,153,-128,-36,-29]]},{"type":"MultiPolygon","id":38071,"arcs":[[[154]],[[155,156,157,-60,-66]]]},{"type":"Polygon","id":38099,"arcs":[[-54,-151,158,159,-156,-65]]},{"type":"Polygon","id":27007,"arcs":[[-119,160,161,162,163,164,-147,-103,165]]},{"type":"Polygon","id":30073,"arcs":[[-99,-85,166,167,-11,-41]]},{"type":"MultiPolygon","id":53029,"arcs":[[[168,169]]]},{"type":"Polygon","id":53009,"arcs":[[170,171]]},{"type":"Polygon","id":38005,"arcs":[[-61,-158,172,173,174,-152],[154]]},{"type":"Polygon","id":30015,"arcs":[[-48,175,176,177,178,-167,-88,-43]]},{"type":"Polygon","id":53061,"arcs":[[-143,179,180,-169,181,-123]]},{"type":"Polygon","id":30089,"arcs":[[-17,182,183,184,185,-110,-33]]},{"type":"Polygon","id":27075,"arcs":[[186,187,-131,188]]},{"type":"Polygon","id":38063,"arcs":[[189,190,191,192,-173,-157,-160]]},{"type":"Polygon","id":38035,"arcs":[[-150,193,194,195,-190,-159]]},{"type":"Polygon","id":27119,"arcs":[[196,197,198,199,200,201,202,-194,-149]]},{"type":"Polygon","id":27113,"arcs":[[-165,203,-199,204,-197,-148]]},{"type":"Polygon","id":30083,"arcs":[[205,206,207,208,-138]]},{"type":"Polygon","id":53017,"arcs":[[209,210,-140,-71]]},{"type":"Polygon","id":38053,"arcs":[[-146,211,212,213,214,-206,-126]]},{"type":"Polygon","id":53031,"arcs":[[215,216,217,-171,218]]},{"type":"Polygon","id":30099,"arcs":[[-179,219,220,-12,-168]]},{"type":"Polygon","id":30055,"arcs":[[-209,221,222,223,-6,-139]]},{"type":"Polygon","id":16079,"arcs":[[-186,224,225,226,227,228,-111]]},{"type":"Polygon","id":30047,"arcs":[[229,-183,-16]]},{"type":"Polygon","id":53063,"arcs":[[-81,-113,230,231,232,233,-76]]},{"type":"Polygon","id":27029,"arcs":[[234,235,236,-200,-204,-164]]},{"type":"Polygon","id":16055,"arcs":[[-229,237,-231,-112]]},{"type":"Polygon","id":30033,"arcs":[[-224,238,239,240,241,-24,-7]]},{"type":"Polygon","id":27125,"arcs":[[-198,-205]]},{"type":"Polygon","id":53025,"arcs":[[-70,242,243,244,245,246,247,-210]]},{"type":"Polygon","id":53043,"arcs":[[-83,-77,-234,248,249,-243,-69]]},{"type":"Polygon","id":30049,"arcs":[[250,251,252,253,254,-13,-221]]},{"type":"MultiPolygon","id":53035,"arcs":[[[255,256,257,258,259]]]},{"type":"Polygon","id":27061,"arcs":[[-136,260,261,-161,-118]]},{"type":"Polygon","id":38055,"arcs":[[262,263,264,265,266,-144,-115,-130]]},{"type":"Polygon","id":38027,"arcs":[[-193,267,268,269,-174]]},{"type":"Polygon","id":38103,"arcs":[[-175,-270,270,271,272,273,-153]]},{"type":"Polygon","id":38083,"arcs":[[-154,-274,274,275,-263,-129]]},{"type":"Polygon","id":38025,"arcs":[[-267,276,277,278,-212,-145]]},{"type":"Polygon","id":30027,"arcs":[[-26,279,280,281,282,283,-176,-47]]},{"type":"Polygon","id":30021,"arcs":[[-208,284,285,-222]]},{"type":"MultiPolygon","id":53033,"arcs":[[[-142,286,287,288,-180]]]},{"type":"Polygon","id":30013,"arcs":[[289,290,-251,-220,-178]]},{"type":"Polygon","id":38091,"arcs":[[-196,291,292,293,294,-191]]},{"type":"Polygon","id":38039,"arcs":[[-295,295,296,297,-268,-192]]},{"type":"Polygon","id":38097,"arcs":[[298,299,-292,-195,-203]]},{"type":"Polygon","id":53045,"arcs":[[300,-258,301,302,303,304,-216]]},{"type":"Polygon","id":30063,"arcs":[[-15,305,306,307,308,309,310,-184,-230]]},{"type":"Polygon","id":30077,"arcs":[[-255,311,312,313,-306,-14]]},{"type":"Polygon","id":30069,"arcs":[[-242,314,315,-280,-25]]},{"type":"Polygon","id":53037,"arcs":[[-211,-248,316,-287,-141]]},{"type":"Polygon","id":38031,"arcs":[[-298,317,-271,-269]]},{"type":"Polygon","id":38057,"arcs":[[318,319,320,-277,-266]]},{"type":"Polygon","id":53027,"arcs":[[-305,321,322,323,324,-217]]},{"type":"Polygon","id":27087,"arcs":[[325,326,-201,-237]]},{"type":"Polygon","id":27107,"arcs":[[-202,-327,327,328,329,-299]]},{"type":"Polygon","id":30061,"arcs":[[-311,330,-225,-185]]},{"type":"Polygon","id":27021,"arcs":[[331,332,333,334,335,336,-162,-262]]},{"type":"Polygon","id":23003,"arcs":[[337,338,339,340,341]]},{"type":"Polygon","id":30045,"arcs":[[-284,342,343,-290,-177]]},{"type":"Polygon","id":16009,"arcs":[[-228,344,345,-232,-238]]},{"type":"Polygon","id":27057,"arcs":[[-337,346,347,-235,-163]]},{"type":"MultiPolygon","id":53053,"arcs":[[[-288,348,349,350,351]],[[-256,352]],[[-302,-257,353]]]},{"type":"Polygon","id":30109,"arcs":[[-215,354,355,356,-285,-207]]},{"type":"Polygon","id":38007,"arcs":[[-279,357,358,359,-213]]},{"type":"Polygon","id":38033,"arcs":[[-360,360,361,-355,-214]]},{"type":"Polygon","id":38043,"arcs":[[362,363,364,365,-275,-273]]},{"type":"Polygon","id":38093,"arcs":[[-297,366,367,368,-363,-272,-318]]},{"type":"Polygon","id":38015,"arcs":[[-366,369,370,371,-264,-276]]},{"type":"Polygon","id":38065,"arcs":[[-372,372,-319,-265]]},{"type":"Polygon","id":53001,"arcs":[[373,374,-244,-250]]},{"type":"Polygon","id":53075,"arcs":[[-233,-346,375,376,377,378,379,380,-374,-249]]},{"type":"Polygon","id":38003,"arcs":[[-294,381,382,383,-367,-296]]},{"type":"Polygon","id":38017,"arcs":[[-300,-330,384,385,386,-382,-293]]},{"type":"Polygon","id":53067,"arcs":[[-351,387,-322,-304,388]]},{"type":"Polygon","id":30079,"arcs":[[-357,389,390,-239,-223,-286]]},{"type":"Polygon","id":27005,"arcs":[[-348,391,392,393,-328,-326,-236]]},{"type":"Polygon","id":27027,"arcs":[[-394,394,395,-385,-329]]},{"type":"Polygon","id":16057,"arcs":[[-227,396,397,-376,-345]]},{"type":"Polygon","id":53077,"arcs":[[-247,398,399,400,401,-349,-317]]},{"type":"Polygon","id":30059,"arcs":[[-344,402,403,404,405,406,-252,-291]]},{"type":"Polygon","id":27001,"arcs":[[-135,407,408,409,410,411,-332,-261]]},{"type":"Polygon","id":26131,"arcs":[[412,413,414,415]]},{"type":"Polygon","id":38089,"arcs":[[-321,416,417,418,419,-358,-278]]},{"type":"Polygon","id":38059,"arcs":[[-371,420,421,422,-417,-320,-373]]},{"type":"Polygon","id":26013,"arcs":[[423,424,425,426]]},{"type":"Polygon","id":16035,"arcs":[[-331,-310,427,428,429,-397,-226]]},{"type":"Polygon","id":30017,"arcs":[[430,431,432,433,-240,-391]]},{"type":"Polygon","id":30087,"arcs":[[-434,434,435,436,437,438,-315,-241]]},{"type":"Polygon","id":30039,"arcs":[[439,440,-307,-314]]},{"type":"Polygon","id":27159,"arcs":[[-336,441,442,-392,-347]]},{"type":"Polygon","id":27035,"arcs":[[-412,443,444,-333]]},{"type":"Polygon","id":53049,"arcs":[[445,446,447,-324]]},{"type":"Polygon","id":53041,"arcs":[[-388,-350,-402,448,449,450,-446,-323]]},{"type":"Polygon","id":30007,"arcs":[[-407,451,452,-253]]},{"type":"Polygon","id":27017,"arcs":[[453,454,-408,-134]]},{"type":"Polygon","id":26053,"arcs":[[455,456,457,458,-414]]},{"type":"Polygon","id":30065,"arcs":[[-439,459,460,-281,-316]]},{"type":"Polygon","id":26095,"arcs":[[461,462,463,464,465]]},{"type":"Polygon","id":30037,"arcs":[[-461,466,467,468,469,-282]]},{"type":"Polygon","id":30107,"arcs":[[-283,-470,470,-403,-343]]},{"type":"Polygon","id":53021,"arcs":[[471,472,-245,-375,-381]]},{"type":"Polygon","id":53005,"arcs":[[473,474,475,476,-399,-246,-473]]},{"type":"Polygon","id":27111,"arcs":[[-443,477,478,479,480,-395,-393]]},{"type":"Polygon","id":38037,"arcs":[[481,482,483,-418,-423]]},{"type":"Polygon","id":53023,"arcs":[[484,485,486,-379]]},{"type":"Polygon","id":30025,"arcs":[[-362,487,488,489,490,-431,-390,-356]]},{"type":"Polygon","id":16049,"arcs":[[491,492,493,494,495,496,497,-428,-309]]},{"type":"Polygon","id":30081,"arcs":[[-441,498,499,500,-492,-308]]},{"type":"Polygon","id":38029,"arcs":[[-365,501,502,503,504,-421,-370]]},{"type":"Polygon","id":38047,"arcs":[[-369,505,506,-502,-364]]},{"type":"Polygon","id":16069,"arcs":[[-430,507,-497,508,509,-377,-398]]},{"type":"Polygon","id":38087,"arcs":[[510,511,512,-488,-361,-359,-420]]},{"type":"Polygon","id":38045,"arcs":[[513,514,515,-506,-368,-384]]},{"type":"Polygon","id":38041,"arcs":[[-484,516,-511,-419]]},{"type":"Polygon","id":27167,"arcs":[[-481,517,518,519,-396]]},{"type":"Polygon","id":38073,"arcs":[[-387,520,521,-514,-383]]},{"type":"Polygon","id":38077,"arcs":[[-520,522,523,524,-521,-386]]},{"type":"Polygon","id":53013,"arcs":[[525,526,-380,-487]]},{"type":"Polygon","id":53071,"arcs":[[-527,527,-474,-472]]},{"type":"Polygon","id":55051,"arcs":[[-458,528,529,530,531]]},{"type":"Polygon","id":23025,"arcs":[[532,533,534,535,536,537,-341]]},{"type":"Polygon","id":23021,"arcs":[[538,-533,-340]]},{"type":"Polygon","id":30043,"arcs":[[-453,539,540,541,542,-312,-254]]},{"type":"Polygon","id":26153,"arcs":[[-464,543,544,545,546]]},{"type":"Polygon","id":30111,"arcs":[[547,548,549,550,-467,-460,-438]]},{"type":"Polygon","id":30103,"arcs":[[551,-548,-437]]},{"type":"Polygon","id":16061,"arcs":[[-429,-498,-508]]},{"type":"Polygon","id":53003,"arcs":[[-510,552,-485,-378]]},{"type":"Polygon","id":38085,"arcs":[[-505,553,554,-482,-422]]},{"type":"Polygon","id":26071,"arcs":[[-425,555,556,557,558,559,-456,-413,560]]},{"type":"Polygon","id":27115,"arcs":[[561,562,563,564,-409,-455]]},{"type":"Polygon","id":23019,"arcs":[[565,566,567,-534,-539,-339]]},{"type":"Polygon","id":53059,"arcs":[[-401,568,569,570,571,572,-449]]},{"type":"Polygon","id":53015,"arcs":[[-573,573,574,575,576,-450]]},{"type":"Polygon","id":53069,"arcs":[[-451,-577,577,-447]]},{"type":"Polygon","id":27153,"arcs":[[-335,578,579,580,-478,-442]]},{"type":"Polygon","id":27097,"arcs":[[-445,581,582,583,-579,-334]]},{"type":"Polygon","id":55125,"arcs":[[584,585,-529,-457,-560,586]]},{"type":"Polygon","id":41007,"arcs":[[587,588,589]]},{"type":"Polygon","id":38001,"arcs":[[-483,-555,590,591,592,-512,-517]]},{"type":"Polygon","id":38081,"arcs":[[-525,593,594,595,-522]]},{"type":"Polygon","id":38051,"arcs":[[-516,596,597,598,-503,-507]]},{"type":"Polygon","id":38021,"arcs":[[-596,599,600,-597,-515]]},{"type":"Polygon","id":38011,"arcs":[[-593,601,-489,-513]]},{"type":"Polygon","id":30023,"arcs":[[-543,602,603,-499,-440,-313]]},{"type":"Polygon","id":26043,"arcs":[[604,605,606,-557,607]]},{"type":"Polygon","id":27095,"arcs":[[608,609,610,611,-582,-444,-411]]},{"type":"Polygon","id":30097,"arcs":[[-469,612,613,-404,-471]]},{"type":"Polygon","id":30031,"arcs":[[-406,614,615,616,617,618,-540,-452]]},{"type":"Polygon","id":30067,"arcs":[[-614,619,620,621,-615,-405]]},{"type":"Polygon","id":30093,"arcs":[[622,623,-603,-542]]},{"type":"Polygon","id":41009,"arcs":[[624,625,626,-588,627,-575]]},{"type":"Polygon","id":27065,"arcs":[[-565,628,-609,-410]]},{"type":"Polygon","id":55013,"arcs":[[629,630,631,632,-563,633]]},{"type":"Polygon","id":55113,"arcs":[[634,635,636,637,638]]},{"type":"Polygon","id":55129,"arcs":[[-638,639,-630,640]]},{"type":"Polygon","id":30011,"arcs":[[641,642,643,644,-432,-491]]},{"type":"Polygon","id":30095,"arcs":[[-551,645,-620,-613,-468]]},{"type":"Polygon","id":27051,"arcs":[[-480,646,647,648,-518]]},{"type":"Polygon","id":27041,"arcs":[[-581,649,650,-647,-479]]},{"type":"Polygon","id":55041,"arcs":[[651,652,653,654,655,-587,-559]]},{"type":"Polygon","id":53011,"arcs":[[-572,656,-625,-574]]},{"type":"Polygon","id":53039,"arcs":[[-477,657,658,659,660,661,-569,-400]]},{"type":"Polygon","id":30003,"arcs":[[-436,662,663,664,665,-549,-552]]},{"type":"Polygon","id":27155,"arcs":[[-649,666,667,668,-523,-519]]},{"type":"Polygon","id":55037,"arcs":[[-607,669,-652,-558]]},{"type":"Polygon","id":41059,"arcs":[[670,671,672,673,-475,-528]]},{"type":"Polygon","id":41063,"arcs":[[-486,-553,-509,-496,674,675,676,-671,-526]]},{"type":"Polygon","id":26109,"arcs":[[677,678,679,-605,680]]},{"type":"Polygon","id":55099,"arcs":[[-586,681,682,683,684,-636,685,-530]]},{"type":"Polygon","id":46105,"arcs":[[686,687,688,689,690,-592]]},{"type":"Polygon","id":46031,"arcs":[[691,692,693,694,-687,-591,-554]]},{"type":"Polygon","id":46063,"arcs":[[-691,695,-642,-490,-602]]},{"type":"Polygon","id":46021,"arcs":[[-599,696,697,-692,-504]]},{"type":"Polygon","id":30001,"arcs":[[-624,698,699,700,701,-500,-604]]},{"type":"Polygon","id":46089,"arcs":[[-601,702,703,-697,-598]]},{"type":"Polygon","id":46013,"arcs":[[-595,704,705,706,707,-703,-600]]},{"type":"Polygon","id":46109,"arcs":[[-669,708,709,710,711,-524]]},{"type":"Polygon","id":46091,"arcs":[[-712,712,-705,-594]]},{"type":"Polygon","id":41049,"arcs":[[-674,713,714,715,-658,-476]]},{"type":"Polygon","id":55085,"arcs":[[-656,716,717,-682,-585]]},{"type":"Polygon","id":41061,"arcs":[[718,719,-672,-677]]},{"type":"Polygon","id":30057,"arcs":[[-619,720,-699,-623,-541]]},{"type":"Polygon","id":27009,"arcs":[[-612,721,722,-583]]},{"type":"Polygon","id":41021,"arcs":[[723,724,725,-659,-716]]},{"type":"Polygon","id":30075,"arcs":[[-645,726,727,728,-663,-435,-433]]},{"type":"Polygon","id":26031,"arcs":[[729,730,731,732,733,734]]},{"type":"Polygon","id":41057,"arcs":[[735,736,737,738,739,-589]]},{"type":"Polygon","id":41067,"arcs":[[740,741,742,-736,-627]]},{"type":"Polygon","id":27145,"arcs":[[-723,743,744,745,746,747,-650,-580,-584]]},{"type":"Polygon","id":27149,"arcs":[[748,749,750,-667,-648]]},{"type":"Polygon","id":27121,"arcs":[[-748,751,752,-749,-651]]},{"type":"Polygon","id":41055,"arcs":[[753,-660,-726]]},{"type":"Polygon","id":27059,"arcs":[[754,755,756,-610,-629]]},{"type":"Polygon","id":27025,"arcs":[[-633,757,758,759,-755,-564]]},{"type":"Polygon","id":55095,"arcs":[[760,761,762,-758,-632]]},{"type":"Polygon","id":41051,"arcs":[[-657,-571,763,764,-741,-626]]},{"type":"Polygon","id":41027,"arcs":[[765,766,-764,-570,-662]]},{"type":"Polygon","id":41065,"arcs":[[-754,-725,767,768,769,770,-766,-661]]},{"type":"Polygon","id":16059,"arcs":[[-702,771,772,773,774,-493,-501]]},{"type":"Polygon","id":23029,"arcs":[[775,-566,-338,776]]},{"type":"Polygon","id":23007,"arcs":[[777,778,779,780,-537]]},{"type":"Polygon","id":26141,"arcs":[[781,782,-730,783]]},{"type":"Polygon","id":55005,"arcs":[[-640,784,785,786,-761,-631]]},{"type":"Polygon","id":55107,"arcs":[[-685,787,788,-785,-637]]},{"type":"Polygon","id":30009,"arcs":[[-666,789,790,-621,-646,-550]]},{"type":"Polygon","id":46129,"arcs":[[791,792,793,-693,-698]]},{"type":"Polygon","id":46045,"arcs":[[-708,794,795,-792,-704]]},{"type":"Polygon","id":46037,"arcs":[[-713,-711,796,797,798,799,-706]]},{"type":"Polygon","id":27011,"arcs":[[-668,-751,800,801,802,-709]]},{"type":"Polygon","id":27141,"arcs":[[-611,-757,803,804,-744,-722]]},{"type":"Polygon","id":55069,"arcs":[[805,806,807,-683,-718]]},{"type":"Polygon","id":46041,"arcs":[[-794,808,809,810,811,-694]]},{"type":"Polygon","id":46137,"arcs":[[-812,812,813,-688,-695]]},{"type":"Polygon","id":55067,"arcs":[[-655,814,815,816,817,-806,-717]]},{"type":"Polygon","id":41005,"arcs":[[-767,-771,818,819,-742,-765]]},{"type":"Polygon","id":41071,"arcs":[[-820,820,821,-737,-743]]},{"type":"Polygon","id":27171,"arcs":[[-805,822,823,824,825,-745]]},{"type":"Polygon","id":27003,"arcs":[[-760,826,827,828,-804,-756]]},{"type":"Polygon","id":27067,"arcs":[[829,830,831,832,-752,-747]]},{"type":"Polygon","id":27151,"arcs":[[-833,833,834,-801,-750,-753]]},{"type":"Polygon","id":55119,"arcs":[[-808,835,836,837,-788,-684]]},{"type":"Polygon","id":55083,"arcs":[[838,839,840,841,842,-815,-654]]},{"type":"Polygon","id":23017,"arcs":[[-780,843,844,845,846,847,848]]},{"type":"Polygon","id":46051,"arcs":[[-803,849,850,851,-797,-710]]},{"type":"Polygon","id":27093,"arcs":[[-826,852,853,-830,-746]]},{"type":"Polygon","id":33007,"arcs":[[854,855,856,857,-848]]},{"type":"Polygon","id":27163,"arcs":[[-763,858,859,860,861,-827,-759]]},{"type":"Polygon","id":55017,"arcs":[[-838,862,863,864,-786,-789]]},{"type":"Polygon","id":41047,"arcs":[[-819,-770,865,866,867,-821]]},{"type":"Polygon","id":16003,"arcs":[[868,869,870,871,-675,-495]]},{"type":"Polygon","id":27073,"arcs":[[-835,872,873,874,-850,-802]]},{"type":"MultiPolygon","id":23009,"arcs":[[[875,-567,-776]]]},{"type":"Polygon","id":46107,"arcs":[[-796,876,877,878,-809,-793]]},{"type":"Polygon","id":46049,"arcs":[[879,880,881,-877,-795]]},{"type":"Polygon","id":27053,"arcs":[[-829,882,883,884,885,-823]]},{"type":"Polygon","id":46115,"arcs":[[-800,886,887,888,-880,-707]]},{"type":"Polygon","id":16085,"arcs":[[-775,889,890,891,-869,-494]]},{"type":"Polygon","id":46019,"arcs":[[-690,892,893,894,-643,-696]]},{"type":"Polygon","id":55109,"arcs":[[895,896,-859,-762]]},{"type":"Polygon","id":55033,"arcs":[[-865,897,898,899,-896,-787]]},{"type":"Polygon","id":26009,"arcs":[[900,901,902,903,904]]},{"type":"Polygon","id":26137,"arcs":[[905,906,-901,907,-732]]},{"type":"Polygon","id":26119,"arcs":[[908,909,-906,-731,-783]]},{"type":"Polygon","id":46025,"arcs":[[910,911,912,913,-887,-799]]},{"type":"Polygon","id":46029,"arcs":[[-852,914,915,-911,-798]]},{"type":"Polygon","id":27023,"arcs":[[-832,916,917,-873,-834]]},{"type":"Polygon","id":27123,"arcs":[[-862,918,-883,-828]]},{"type":"Polygon","id":55073,"arcs":[[-807,-818,919,920,921,922,-836]]},{"type":"Polygon","id":55078,"arcs":[[-843,923,-816]]},{"type":"Polygon","id":41001,"arcs":[[-872,924,925,926,-719,-676]]},{"type":"Polygon","id":41053,"arcs":[[-868,927,928,929,-738,-822]]},{"type":"Polygon","id":41069,"arcs":[[-715,930,931,932,-768,-724]]},{"type":"Polygon","id":41041,"arcs":[[-930,933,934,935,-739]]},{"type":"Polygon","id":46093,"arcs":[[-814,936,937,-893,-689]]},{"type":"Polygon","id":55019,"arcs":[[-923,938,939,940,-863,-837]]},{"type":"Polygon","id":55115,"arcs":[[-924,-842,941,942,943,-920,-817]]},{"type":"Polygon","id":50011,"arcs":[[944,945,946,947,948]]},{"type":"Polygon","id":50009,"arcs":[[949,950,951,952,-857]]},{"type":"Polygon","id":50013,"arcs":[[953,954,955,-948]]},{"type":"Polygon","id":36019,"arcs":[[956,957,958,959,-955]]},{"type":"Polygon","id":50019,"arcs":[[-952,960,961,-945,962]]},{"type":"Polygon","id":56029,"arcs":[[963,964,965,966,967,-616,-622,-791]]},{"type":"Polygon","id":36089,"arcs":[[968,969,970,971,972,973]]},{"type":"Polygon","id":56003,"arcs":[[974,975,976,-964,-790,-665]]},{"type":"Polygon","id":56005,"arcs":[[977,978,979,980,981,-728]]},{"type":"Polygon","id":56033,"arcs":[[-729,-982,982,-975,-664]]},{"type":"Polygon","id":36033,"arcs":[[-959,983,984,-969,985]]},{"type":"Polygon","id":56011,"arcs":[[-644,-895,986,987,-978,-727]]},{"type":"Polygon","id":41023,"arcs":[[-720,-927,988,989,990,-931,-714,-673]]},{"type":"Polygon","id":27085,"arcs":[[-825,991,992,993,-853]]},{"type":"Polygon","id":27019,"arcs":[[-886,994,995,-992,-824]]},{"type":"Polygon","id":46039,"arcs":[[-875,996,997,998,999,-915,-851]]},{"type":"Polygon","id":27173,"arcs":[[1000,1001,1002,1003,-997,-874,-918]]},{"type":"Polygon","id":27037,"arcs":[[-861,1004,1005,1006,1007,-884,-919]]},{"type":"Polygon","id":46119,"arcs":[[1008,1009,1010,-810,-879]]},{"type":"Polygon","id":46069,"arcs":[[-882,1011,1012,1013,1014,-1009,-878]]},{"type":"Polygon","id":46059,"arcs":[[-889,1015,1016,1017,-1012,-881]]},{"type":"Polygon","id":27129,"arcs":[[-854,-994,1018,1019,1020,1021,-1001,-917,-831]]},{"type":"Polygon","id":16037,"arcs":[[1022,1023,1024,1025,-890,-774]]},{"type":"Polygon","id":55093,"arcs":[[-900,1026,1027,-1005,-860,-897]]},{"type":"Polygon","id":26001,"arcs":[[1028,1029,1030,1031]]},{"type":"Polygon","id":26079,"arcs":[[1032,1033,1034,-902]]},{"type":"Polygon","id":26039,"arcs":[[1035,1036,-1033,-907]]},{"type":"Polygon","id":55035,"arcs":[[-941,1037,1038,1039,1040,-898,-864]]},{"type":"Polygon","id":26135,"arcs":[[-1031,1041,-1036,-910]]},{"type":"Polygon","id":16087,"arcs":[[1042,1043,1044,-925,-871]]},{"type":"Polygon","id":41031,"arcs":[[-933,1045,1046,1047,-866,-769]]},{"type":"Polygon","id":27139,"arcs":[[-1008,1048,1049,1050,-995,-885]]},{"type":"Polygon","id":46057,"arcs":[[-1000,1051,1052,-912,-916]]},{"type":"Polygon","id":50015,"arcs":[[1053,1054,1055,-946,-962]]},{"type":"Polygon","id":41043,"arcs":[[-1048,1056,1057,1058,-928,-867]]},{"type":"Polygon","id":46117,"arcs":[[-1011,1059,1060,1061,1062,-811]]},{"type":"Polygon","id":26019,"arcs":[[1063,1064,1065,1066]]},{"type":"Polygon","id":50005,"arcs":[[1067,1068,1069,-1054,-961,-951]]},{"type":"Polygon","id":23027,"arcs":[[-568,1070,1071,1072,1073,-535]]},{"type":"Polygon","id":16043,"arcs":[[1074,1075,1076,1077,1078,-700,-721,-618]]},{"type":"Polygon","id":46055,"arcs":[[1079,1080,1081,-813,-1063]]},{"type":"Polygon","id":50007,"arcs":[[-1056,1082,1083,1084,-957,-954,-947]]},{"type":"Polygon","id":41003,"arcs":[[-1059,1085,-934,-929]]},{"type":"Polygon","id":23011,"arcs":[[1086,1087,1088,-778,-536,-1074]]},{"type":"Polygon","id":27143,"arcs":[[-996,-1051,1089,1090,-1019,-993]]},{"type":"Polygon","id":27049,"arcs":[[1091,1092,1093,1094,1095,-1006,-1028]]},{"type":"Polygon","id":27127,"arcs":[[1096,1097,1098,1099,-1002,-1022]]},{"type":"Polygon","id":55097,"arcs":[[1100,1101,1102,1103,-921]]},{"type":"Polygon","id":55141,"arcs":[[-1104,1104,1105,1106,-939,-922]]},{"type":"MultiPolygon","id":55009,"arcs":[[[-841,1107,1108,1109,1110,1111,-942]]]},{"type":"Polygon","id":55091,"arcs":[[-1041,1112,1113,-1092,-1027,-899]]},{"type":"Polygon","id":55135,"arcs":[[1114,1115,1116,-1101,-944]]},{"type":"Polygon","id":55061,"arcs":[[1117,1118,-1109,1119,1120]]},{"type":"Polygon","id":56039,"arcs":[[1121,1122,1123,1124,1125,-1075,-617,-968]]},{"type":"Polygon","id":46005,"arcs":[[-914,1126,1127,1128,-1016,-888]]},{"type":"Polygon","id":27081,"arcs":[[1129,1130,1131,-998,-1004]]},{"type":"Polygon","id":27083,"arcs":[[-1100,1132,-1130,-1003]]},{"type":"Polygon","id":46081,"arcs":[[-938,1133,1134,-987,-894]]},{"type":"Polygon","id":55011,"arcs":[[-1040,1135,1136,1137,-1113]]},{"type":"Polygon","id":55121,"arcs":[[1138,1139,1140,-1136,-1039]]},{"type":"Polygon","id":55053,"arcs":[[-940,-1107,1141,1142,1143,-1139,-1038]]},{"type":"Polygon","id":55087,"arcs":[[-943,-1112,1144,1145,-1115]]},{"type":"Polygon","id":16033,"arcs":[[-1079,1146,1147,-772,-701]]},{"type":"Polygon","id":56019,"arcs":[[-981,1148,1149,1150,-976,-983]]},{"type":"Polygon","id":41013,"arcs":[[-932,-991,1151,1152,-1046]]},{"type":"Polygon","id":46065,"arcs":[[-1015,1153,-1060,-1010]]},{"type":"Polygon","id":36031,"arcs":[[1154,1155,1156,-984,-958,-1085]]},{"type":"Polygon","id":27079,"arcs":[[1157,1158,1159,1160,-1090,-1050]]},{"type":"Polygon","id":27131,"arcs":[[-1007,-1096,1161,1162,-1158,-1049]]},{"type":"Polygon","id":46077,"arcs":[[-1053,1163,1164,1165,-1127,-913]]},{"type":"Polygon","id":46011,"arcs":[[-1132,1166,1167,-1164,-1052,-999]]},{"type":"Polygon","id":26101,"arcs":[[1168,1169,1170,1171,-1065]]},{"type":"Polygon","id":26165,"arcs":[[1172,1173,1174,-1169,1175]]},{"type":"Polygon","id":26143,"arcs":[[1176,1177,1178,1179,-1037]]},{"type":"Polygon","id":26113,"arcs":[[-1180,1180,1181,-1173,-1034]]},{"type":"Polygon","id":26069,"arcs":[[1182,1183,1184,-1030]]},{"type":"Polygon","id":26129,"arcs":[[-1185,1185,1186,-1177,-1042]]},{"type":"Polygon","id":16045,"arcs":[[-892,1187,1188,1189,1190,-1043,-870]]},{"type":"Polygon","id":46103,"arcs":[[-1082,1191,1192,1193,1194,-1134,-937]]},{"type":"Polygon","id":50023,"arcs":[[1195,1196,-1083,-1055,-1070]]},{"type":"Polygon","id":27015,"arcs":[[1197,1198,1199,1200,-1097,-1021]]},{"type":"Polygon","id":23001,"arcs":[[1201,1202,-844,-779,-1089]]},{"type":"Polygon","id":27103,"arcs":[[1203,-1198,-1020,-1091,-1161]]},{"type":"Polygon","id":27157,"arcs":[[-1114,-1138,1204,1205,-1093]]},{"type":"Polygon","id":41045,"arcs":[[-1045,1206,1207,1208,1209,1210,-989,-926]]},{"type":"Polygon","id":33009,"arcs":[[1211,1212,1213,1214,1215,1216,-1068,-950,-856]]},{"type":"Polygon","id":41017,"arcs":[[-1153,1217,1218,1219,1220,-1057,-1047]]},{"type":"Polygon","id":36045,"arcs":[[-973,1221,1222,1223]]},{"type":"Polygon","id":23013,"arcs":[[1224,1225,-1072]]},{"type":"Polygon","id":16015,"arcs":[[-1026,1226,1227,-1188,-891]]},{"type":"Polygon","id":23015,"arcs":[[-1073,-1226,1228,1229,1230,-1087]]},{"type":"Polygon","id":55071,"arcs":[[-1119,1231,1232,1233,-1110]]},{"type":"Polygon","id":50001,"arcs":[[-1197,1234,1235,1236,1237,-1155,-1084]]},{"type":"Polygon","id":41039,"arcs":[[-1221,1238,1239,1240,-935,-1086,-1058]]},{"type":"Polygon","id":33003,"arcs":[[-847,1241,1242,1243,-1212,-855]]},{"type":"Polygon","id":27013,"arcs":[[-1160,1244,1245,1246,1247,-1199,-1204]]},{"type":"Polygon","id":55057,"arcs":[[1248,1249,1250,1251,-1142,-1106]]},{"type":"Polygon","id":55001,"arcs":[[-1103,1252,1253,1254,-1249,-1105]]},{"type":"Polygon","id":55137,"arcs":[[-1117,1255,1256,1257,-1253,-1102]]},{"type":"Polygon","id":55139,"arcs":[[1258,1259,1260,-1256,-1116,-1146]]},{"type":"Polygon","id":55015,"arcs":[[-1111,-1234,1261,1262,-1259,-1145]]},{"type":"Polygon","id":16023,"arcs":[[-1148,1263,1264,1265,-1023,-773]]},{"type":"Polygon","id":50017,"arcs":[[-1217,1266,-1235,-1196,-1069]]},{"type":"Polygon","id":36049,"arcs":[[1267,1268,-1222,-972,1269]]},{"type":"Polygon","id":46085,"arcs":[[1270,1271,1272,1273,1274,-1061,-1154,-1014,1275]]},{"type":"Polygon","id":27117,"arcs":[[1276,1277,1278,-1131]]},{"type":"Polygon","id":27101,"arcs":[[-1099,1279,1280,-1277,-1133]]},{"type":"Polygon","id":46073,"arcs":[[-1129,1281,1282,1283,1284,-1017]]},{"type":"Polygon","id":27147,"arcs":[[1285,1286,1287,-1162]]},{"type":"Polygon","id":27039,"arcs":[[1288,1289,-1286,-1095]]},{"type":"Polygon","id":46101,"arcs":[[-1279,1290,1291,-1167]]},{"type":"Polygon","id":27161,"arcs":[[-1288,1292,1293,-1245,-1159,-1163]]},{"type":"Polygon","id":46017,"arcs":[[-1285,1294,-1276,-1013,-1018]]},{"type":"Polygon","id":46111,"arcs":[[1295,1296,1297,1298,-1282,-1128]]},{"type":"Polygon","id":27109,"arcs":[[-1206,1299,1300,1301,-1289,-1094]]},{"type":"Polygon","id":27033,"arcs":[[-1201,1302,1303,-1280,-1098]]},{"type":"Polygon","id":46079,"arcs":[[-1168,-1292,1304,1305,1306,-1165]]},{"type":"Polygon","id":46097,"arcs":[[-1307,1307,1308,-1296,-1166]]},{"type":"Polygon","id":27169,"arcs":[[-1137,-1141,1309,1310,1311,-1300,-1205]]},{"type":"Polygon","id":56045,"arcs":[[-1135,-1195,1312,1313,1314,-979,-988]]},{"type":"Polygon","id":26105,"arcs":[[1315,1316,1317,-1171]]},{"type":"Polygon","id":23005,"arcs":[[-1203,1318,1319,1320,1321,1322,-845]]},{"type":"Polygon","id":46075,"arcs":[[-1275,1323,1324,-1080,-1062]]},{"type":"Polygon","id":56043,"arcs":[[-1151,1325,1326,-965,-977]]},{"type":"MultiPolygon","id":23023,"arcs":[[[-1321,1327]],[[-1230,1328]],[[1329,-1319,-1202,-1088]]]},{"type":"Polygon","id":26085,"arcs":[[-1170,-1175,1330,1331,-1316]]},{"type":"Polygon","id":26133,"arcs":[[-1182,1332,1333,-1331,-1174]]},{"type":"Polygon","id":26035,"arcs":[[-1179,1334,1335,-1333,-1181]]},{"type":"Polygon","id":26051,"arcs":[[1336,1337,1338,-1335,-1178,-1187]]},{"type":"Polygon","id":55081,"arcs":[[-1252,1339,1340,-1143]]},{"type":"Polygon","id":16075,"arcs":[[-1191,1341,-1207,-1044]]},{"type":"Polygon","id":36041,"arcs":[[1342,1343,1344,1345,-970,-985,-1157]]},{"type":"Polygon","id":27165,"arcs":[[-1248,1346,-1303,-1200]]},{"type":"Polygon","id":16039,"arcs":[[-1025,1347,1348,1349,1350,1351,1352,-1227]]},{"type":"Polygon","id":36043,"arcs":[[-1346,1353,1354,1355,1356,-1270,-971]]},{"type":"Polygon","id":55063,"arcs":[[-1144,-1341,1357,1358,-1310,-1140]]},{"type":"Polygon","id":56017,"arcs":[[-1327,1359,-966]]},{"type":"Polygon","id":16051,"arcs":[[-1078,1360,1361,1362,-1264,-1147]]},{"type":"Polygon","id":41025,"arcs":[[-1211,1363,1364,-1218,-1152,-990]]},{"type":"Polygon","id":56013,"arcs":[[-1360,1365,1366,1367,1368,-1122,-967]]},{"type":"Polygon","id":26017,"arcs":[[1369,1370,1371,1372,-1338,1373]]},{"type":"Polygon","id":46071,"arcs":[[-1325,1374,1375,1376,-1192,-1081]]},{"type":"Polygon","id":16013,"arcs":[[-1266,1377,1378,1379,1380,1381,1382,-1348,-1024]]},{"type":"Polygon","id":16081,"arcs":[[-1126,1383,1384,-1076]]},{"type":"Polygon","id":55047,"arcs":[[-1261,1385,1386,1387,1388,-1257]]},{"type":"Polygon","id":55077,"arcs":[[-1389,1389,-1254,-1258]]},{"type":"Polygon","id":50027,"arcs":[[-1216,1390,1391,1392,1393,-1236,-1267]]},{"type":"Polygon","id":41019,"arcs":[[1394,1395,1396,1397,1398,1399,-1240]]},{"type":"Polygon","id":55039,"arcs":[[1400,1401,1402,-1386,-1260,-1263]]},{"type":"Polygon","id":46003,"arcs":[[-1299,1403,1404,1405,1406,-1283]]},{"type":"Polygon","id":46015,"arcs":[[-1407,1407,-1271,-1295,-1284]]},{"type":"Polygon","id":16065,"arcs":[[-1385,1408,-1361,-1077]]},{"type":"Polygon","id":55117,"arcs":[[1409,1410,1411,-1401,-1262,-1233]]},{"type":"Polygon","id":16027,"arcs":[[-1190,1412,1413,-1208,-1342]]},{"type":"Polygon","id":46095,"arcs":[[-1274,1414,1415,-1375,-1324]]},{"type":"Polygon","id":16025,"arcs":[[1416,1417,-1349,-1383]]},{"type":"Polygon","id":50021,"arcs":[[1418,1419,-1237,-1394]]},{"type":"Polygon","id":46033,"arcs":[[1420,1421,1422,-1313,-1194]]},{"type":"Polygon","id":27133,"arcs":[[1423,1424,1425,-1278]]},{"type":"Polygon","id":27105,"arcs":[[1426,1427,1428,-1424,-1281]]},{"type":"Polygon","id":27047,"arcs":[[1429,1430,1431,1432,-1293,-1287]]},{"type":"Polygon","id":27099,"arcs":[[-1302,1433,1434,1435,1436,-1430,-1290]]},{"type":"Polygon","id":27055,"arcs":[[-1359,1437,1438,1439,1440,-1311]]},{"type":"Polygon","id":46035,"arcs":[[1441,1442,1443,-1404,-1298]]},{"type":"Polygon","id":46061,"arcs":[[-1309,1444,1445,-1442,-1297]]},{"type":"Polygon","id":27045,"arcs":[[-1312,-1441,1446,1447,-1434,-1301]]},{"type":"Polygon","id":27063,"arcs":[[1448,1449,1450,1451,-1427,-1304]]},{"type":"Polygon","id":27043,"arcs":[[-1294,-1433,1452,1453,1454,-1246]]},{"type":"Polygon","id":46099,"arcs":[[1455,1456,1457,1458,-1305,-1291,-1426]]},{"type":"Polygon","id":27091,"arcs":[[-1247,-1455,1459,1460,-1449,-1347]]},{"type":"Polygon","id":46087,"arcs":[[-1306,-1459,1461,1462,-1445,-1308]]},{"type":"Polygon","id":26111,"arcs":[[-1373,1463,1464,1465,-1339]]},{"type":"Polygon","id":26127,"arcs":[[1466,1467,1468,-1317]]},{"type":"Polygon","id":26073,"arcs":[[-1466,1469,1470,1471,-1336]]},{"type":"Polygon","id":23031,"arcs":[[1472,1473,-1242,-846,-1323]]},{"type":"Polygon","id":26107,"arcs":[[-1472,1474,1475,-1334]]},{"type":"Polygon","id":26123,"arcs":[[-1476,1476,1477,1478,-1467,-1332]]},{"type":"Polygon","id":36115,"arcs":[[-1420,1479,1480,1481,1482,-1238]]},{"type":"Polygon","id":16001,"arcs":[[-1228,-1353,1483,-1413,-1189]]},{"type":"Polygon","id":36113,"arcs":[[1484,-1343,-1156,-1483]]},{"type":"Polygon","id":46123,"arcs":[[1485,1486,1487,-1415,-1273]]},{"type":"Polygon","id":33001,"arcs":[[1488,1489,-1213,-1244]]},{"type":"Polygon","id":26157,"arcs":[[1490,1491,1492,1493,1494,-1371,1495]]},{"type":"Polygon","id":55123,"arcs":[[1496,1497,1498,1499,-1438,-1358,-1340,-1251]]},{"type":"MultiPolygon","id":36075,"arcs":[[[-1269,1500,1501,1502,1503,1504,-1223]]]},{"type":"Polygon","id":46113,"arcs":[[1505,1506,1507,1508,-1421,-1193,-1377]]},{"type":"Polygon","id":26151,"arcs":[[1509,1510,-1492,1511,1512]]},{"type":"Polygon","id":16073,"arcs":[[-1484,-1352,1513,1514,-1209,-1414]]},{"type":"Polygon","id":55021,"arcs":[[1515,1516,1517,-1255,-1390,-1388]]},{"type":"Polygon","id":55111,"arcs":[[-1518,1518,1519,1520,-1497,-1250]]},{"type":"Polygon","id":55027,"arcs":[[1521,1522,1523,1524,-1516,-1387,-1403]]},{"type":"Polygon","id":16019,"arcs":[[-1409,-1384,-1125,1525,1526,1527,-1362]]},{"type":"Polygon","id":16011,"arcs":[[1528,1529,1530,-1378,-1265,-1363,-1528]]},{"type":"Polygon","id":41035,"arcs":[[1531,1532,1533,1534,-1395,-1239,-1220]]},{"type":"Polygon","id":41037,"arcs":[[1535,1536,-1532,-1219,-1365]]},{"type":"Polygon","id":36065,"arcs":[[1537,1538,-1501,-1268,-1357]]},{"type":"Polygon","id":33013,"arcs":[[-1490,1539,1540,1541,1542,-1214]]},{"type":"Polygon","id":41011,"arcs":[[1543,1544,-1399]]},{"type":"Polygon","id":33019,"arcs":[[-1543,1545,1546,1547,-1391,-1215]]},{"type":"Polygon","id":33017,"arcs":[[-1474,1548,1549,-1540,-1489,-1243]]},{"type":"Polygon","id":26145,"arcs":[[-1495,1550,1551,1552,-1464,-1372]]},{"type":"Polygon","id":55103,"arcs":[[1553,1554,1555,-1498,-1521]]},{"type":"Polygon","id":55089,"arcs":[[1556,1557,1558,-1411]]},{"type":"Polygon","id":55131,"arcs":[[-1412,-1559,1559,-1522,-1402]]},{"type":"Polygon","id":19189,"arcs":[[1560,1561,1562,-1453,-1432]]},{"type":"Polygon","id":19109,"arcs":[[1563,1564,1565,-1460,-1454,-1563,1566]]},{"type":"Polygon","id":19059,"arcs":[[1567,1568,-1451,1569]]},{"type":"Polygon","id":19063,"arcs":[[1570,-1570,-1450,-1461,-1566]]},{"type":"Polygon","id":19195,"arcs":[[1571,-1561,-1431,-1437,1572]]},{"type":"Polygon","id":19143,"arcs":[[1573,1574,-1428,-1452,-1569]]},{"type":"Polygon","id":56027,"arcs":[[-1423,1575,1576,1577,1578,1579,-1314]]},{"type":"Polygon","id":19131,"arcs":[[1580,1581,-1573,-1436,1582]]},{"type":"Polygon","id":19119,"arcs":[[1583,1584,-1456,-1425,-1429,-1575]]},{"type":"Polygon","id":19089,"arcs":[[1585,1586,-1583,-1435,-1448]]},{"type":"Polygon","id":19005,"arcs":[[-1500,1587,1588,1589,-1439]]},{"type":"Polygon","id":19191,"arcs":[[1590,1591,-1586,-1447,-1440,-1590]]},{"type":"Polygon","id":46083,"arcs":[[-1585,1592,1593,1594,1595,-1457]]},{"type":"Polygon","id":56009,"arcs":[[-1580,1596,1597,1598,-1149,-980,-1315]]},{"type":"Polygon","id":46023,"arcs":[[-1406,1599,1600,1601,1602,1603,1604,-1408]]},{"type":"Polygon","id":46125,"arcs":[[-1458,-1596,1605,1606,1607,-1462]]},{"type":"Polygon","id":46067,"arcs":[[-1463,-1608,1608,1609,-1601,1610,-1443,-1446]]},{"type":"Polygon","id":56025,"arcs":[[-1150,-1599,1611,-1366,-1326]]},{"type":"Polygon","id":46043,"arcs":[[-1444,-1611,-1600,-1405]]},{"type":"Polygon","id":46053,"arcs":[[-1605,1612,1613,-1486,-1272]]},{"type":"Polygon","id":46047,"arcs":[[-1509,1614,1615,-1576,-1422]]},{"type":"Polygon","id":26121,"arcs":[[-1479,1616,1617,1618,-1468]]},{"type":"Polygon","id":26117,"arcs":[[-1471,1619,1620,1621,-1477,-1475]]},{"type":"Polygon","id":56035,"arcs":[[1622,1623,-1123,-1369]]},{"type":"Polygon","id":26057,"arcs":[[-1465,-1553,1624,1625,-1620,-1470]]},{"type":"Polygon","id":55023,"arcs":[[-1556,1626,1627,-1588,-1499]]},{"type":"Polygon","id":36011,"arcs":[[1628,1629,1630,1631,1632,1633,-1504]]},{"type":"Polygon","id":36091,"arcs":[[-1482,1634,1635,1636,1637,1638,-1344,-1485]]},{"type":"Polygon","id":46007,"arcs":[[1639,1640,-1506,-1376]]},{"type":"Polygon","id":46121,"arcs":[[-1488,1641,-1640,-1416]]},{"type":"Polygon","id":36073,"arcs":[[1642,1643,1644,1645]]},{"type":"Polygon","id":36063,"arcs":[[-1645,1646,1647,1648]]},{"type":"Polygon","id":36055,"arcs":[[1649,1650,1651,1652,-1643,1653]]},{"type":"Polygon","id":36117,"arcs":[[1654,1655,-1650,1656,-1633]]},{"type":"Polygon","id":26087,"arcs":[[1657,1658,1659,1660,-1493,-1511]]},{"type":"Polygon","id":56023,"arcs":[[-1624,1661,1662,1663,1664,1665,-1526,-1124]]},{"type":"Polygon","id":50003,"arcs":[[-1393,1666,1667,1668,1669,-1480,-1419]]},{"type":"Polygon","id":55025,"arcs":[[-1525,1670,1671,1672,1673,-1519,-1517]]},{"type":"Polygon","id":26081,"arcs":[[1674,1675,1676,1677,-1617,-1478,-1622]]},{"type":"Polygon","id":36035,"arcs":[[-1639,1678,-1354,-1345]]},{"type":"Polygon","id":33015,"arcs":[[1679,1680,1681,-1541,-1550]]},{"type":"Polygon","id":36067,"arcs":[[1682,1683,-1629,-1503]]},{"type":"Polygon","id":50025,"arcs":[[-1548,1684,1685,-1667,-1392]]},{"type":"Polygon","id":19167,"arcs":[[1686,1687,1688,-1593,-1584]]},{"type":"Polygon","id":19141,"arcs":[[1689,1690,-1687,-1574]]},{"type":"Polygon","id":19033,"arcs":[[-1582,1691,1692,1693,-1572]]},{"type":"Polygon","id":19081,"arcs":[[-1694,1694,-1567,-1562]]},{"type":"Polygon","id":19147,"arcs":[[-1565,1695,1696,-1571]]},{"type":"Polygon","id":19041,"arcs":[[-1697,1697,-1690,-1568]]},{"type":"Polygon","id":26049,"arcs":[[-1661,1698,1699,1700,-1551,-1494]]},{"type":"Polygon","id":19037,"arcs":[[-1592,1701,1702,1703,-1587]]},{"type":"Polygon","id":19067,"arcs":[[-1704,1704,-1692,-1581]]},{"type":"Polygon","id":55049,"arcs":[[-1520,-1674,1705,1706,1707,-1554]]},{"type":"Polygon","id":55043,"arcs":[[-1708,1708,1709,1710,1711,-1627,-1555]]},{"type":"Polygon","id":33011,"arcs":[[-1682,1712,1713,1714,-1546,-1542]]},{"type":"Polygon","id":26139,"arcs":[[-1678,1715,1716,-1618]]},{"type":"Polygon","id":16063,"arcs":[[1717,1718,1719,-1417,-1382]]},{"type":"Polygon","id":16047,"arcs":[[-1720,1720,1721,-1350,-1418]]},{"type":"Polygon","id":55055,"arcs":[[1722,1723,1724,-1671,-1524]]},{"type":"Polygon","id":16067,"arcs":[[1725,1726,-1718,-1381]]},{"type":"Polygon","id":55133,"arcs":[[-1560,1727,1728,1729,-1723,-1523]]},{"type":"Polygon","id":55079,"arcs":[[1730,1731,-1728,-1558]]},{"type":"Polygon","id":36053,"arcs":[[-1539,1732,1733,1734,-1683,-1502]]},{"type":"Polygon","id":33005,"arcs":[[-1715,1735,1736,-1685,-1547]]},{"type":"Polygon","id":46135,"arcs":[[1737,1738,1739,1740,-1609,-1607]]},{"type":"Polygon","id":46009,"arcs":[[-1741,1741,-1602,-1610]]},{"type":"Polygon","id":26155,"arcs":[[-1701,1742,1743,1744,-1625,-1552]]},{"type":"Polygon","id":36037,"arcs":[[1745,1746,1747,-1647,-1644,-1653]]},{"type":"Polygon","id":26067,"arcs":[[1748,1749,1750,-1675,-1621]]},{"type":"Polygon","id":26037,"arcs":[[-1745,1751,1752,-1749,-1626]]},{"type":"Polygon","id":16077,"arcs":[[-1531,1753,1754,1755,-1379]]},{"type":"MultiPolygon","id":36029,"arcs":[[[1756,1757]],[[-1748,1758,1759,1760,1761,-1757,-1648]]]},{"type":"Polygon","id":46127,"arcs":[[-1689,1762,1763,1764,1765,1766,-1594]]},{"type":"Polygon","id":46027,"arcs":[[-1767,1767,1768,-1738,-1606,-1595]]},{"type":"Polygon","id":19065,"arcs":[[1769,1770,1771,-1702,-1591]]},{"type":"Polygon","id":19043,"arcs":[[-1628,-1712,1772,1773,-1770,-1589]]},{"type":"Polygon","id":36057,"arcs":[[-1638,1774,1775,1776,-1355,-1679]]},{"type":"Polygon","id":36069,"arcs":[[1777,1778,1779,1780,-1651,-1656]]},{"type":"Polygon","id":16005,"arcs":[[1781,1782,1783,-1754,-1530]]},{"type":"Polygon","id":16029,"arcs":[[-1527,-1666,1784,1785,-1782,-1529]]},{"type":"Polygon","id":36099,"arcs":[[1786,1787,1788,-1778,-1655,-1632]]},{"type":"Polygon","id":31165,"arcs":[[1789,1790,1791,-1577,-1616,1792]]},{"type":"Polygon","id":31161,"arcs":[[1793,1794,1795,1796,-1507,1797]]},{"type":"Polygon","id":31045,"arcs":[[1798,-1793,-1615,-1508,-1797]]},{"type":"Polygon","id":31015,"arcs":[[1799,1800,1801,-1613,-1604]]},{"type":"Polygon","id":31103,"arcs":[[-1802,1802,1803,1804,-1487,-1614]]},{"type":"Polygon","id":31031,"arcs":[[-1642,-1805,1805,1806,1807,1808,1809,-1798,-1641]]},{"type":"Polygon","id":41029,"arcs":[[-1535,1810,1811,-1396]]},{"type":"Polygon","id":36051,"arcs":[[-1781,1812,1813,1814,-1746,-1652]]},{"type":"Polygon","id":36083,"arcs":[[-1670,1815,1816,1817,-1635,-1481]]},{"type":"Polygon","id":36093,"arcs":[[1818,1819,-1775,-1637]]},{"type":"Polygon","id":41015,"arcs":[[-1398,1820,1821,1822,-1544]]},{"type":"Polygon","id":16083,"arcs":[[1823,1824,1825,-1514,-1351,-1722]]},{"type":"Polygon","id":19149,"arcs":[[1826,1827,-1763,-1688]]},{"type":"Polygon","id":19021,"arcs":[[1828,1829,1830,-1698]]},{"type":"Polygon","id":19035,"arcs":[[-1831,1831,1832,-1827,-1691]]},{"type":"Polygon","id":19151,"arcs":[[1833,1834,1835,-1829,-1696]]},{"type":"Polygon","id":19197,"arcs":[[1836,1837,1838,1839,-1695]]},{"type":"Polygon","id":19091,"arcs":[[-1840,1840,-1834,-1564]]},{"type":"Polygon","id":19069,"arcs":[[1841,1842,-1837,-1693]]},{"type":"Polygon","id":19023,"arcs":[[1843,1844,1845,-1842,-1705]]},{"type":"Polygon","id":19017,"arcs":[[-1772,1846,-1844,-1703]]},{"type":"Polygon","id":36077,"arcs":[[-1777,1847,1848,1849,-1733,-1538,-1356]]},{"type":"Polygon","id":31089,"arcs":[[1850,1851,1852,1853,1854,-1801]]},{"type":"Polygon","id":26099,"arcs":[[1855,1856,1857,-1659,1858]]},{"type":"Polygon","id":26125,"arcs":[[1859,1860,1861,-1699,-1660,-1858]]},{"type":"Polygon","id":25009,"arcs":[[1862,1863,1864,-1713,-1681]]},{"type":"Polygon","id":31107,"arcs":[[-1742,-1740,1865,1866,1867,-1851,-1800,-1603]]},{"type":"Polygon","id":31027,"arcs":[[-1769,1868,1869,1870,-1866,-1739]]},{"type":"Polygon","id":36121,"arcs":[[-1815,1871,1872,-1759,-1747]]},{"type":"Polygon","id":55045,"arcs":[[1873,1874,1875,1876,-1706,-1673]]},{"type":"Polygon","id":16053,"arcs":[[-1727,1877,-1824,-1721,-1719]]},{"type":"Polygon","id":55105,"arcs":[[-1725,1878,1879,1880,-1874,-1672]]},{"type":"Polygon","id":31017,"arcs":[[1881,1882,-1806,-1804]]},{"type":"Polygon","id":55127,"arcs":[[-1730,1883,1884,1885,1886,-1879,-1724]]},{"type":"Polygon","id":55101,"arcs":[[1887,1888,-1884,-1729,-1732]]},{"type":"Polygon","id":36095,"arcs":[[-1820,1889,1890,1891,-1848,-1776]]},{"type":"Polygon","id":36001,"arcs":[[-1818,1892,-1890,-1819,-1636]]},{"type":"Polygon","id":55065,"arcs":[[-1877,1893,1894,-1709,-1707]]},{"type":"Polygon","id":31149,"arcs":[[1895,-1882,-1803,-1855]]},{"type":"Polygon","id":36023,"arcs":[[1896,1897,-1630,-1684,-1735,1898,1899]]},{"type":"Polygon","id":41033,"arcs":[[-1397,-1812,1900,1901,-1821]]},{"type":"Polygon","id":26093,"arcs":[[-1862,1902,1903,1904,-1743,-1700]]},{"type":"Polygon","id":26065,"arcs":[[-1905,1905,1906,-1752,-1744]]},{"type":"Polygon","id":26045,"arcs":[[-1753,-1907,1907,1908,1909,-1750]]},{"type":"Polygon","id":26015,"arcs":[[-1910,1910,1911,1912,-1676,-1751]]},{"type":"Polygon","id":26005,"arcs":[[-1677,-1913,1913,1914,1915,-1716]]},{"type":"Polygon","id":36123,"arcs":[[1916,1917,-1779,-1789]]},{"type":"Polygon","id":31051,"arcs":[[-1766,1918,1919,1920,-1869,-1768]]},{"type":"Polygon","id":25003,"arcs":[[1921,1922,1923,1924,1925,-1816,-1669]]},{"type":"Polygon","id":36017,"arcs":[[-1850,1926,1927,-1899,-1734]]},{"type":"Polygon","id":25011,"arcs":[[1928,-1922,-1668,-1686,-1737,1929]]},{"type":"Polygon","id":25017,"arcs":[[1930,1931,1932,1933,1934,1935,1936,-1714,-1865]]},{"type":"Polygon","id":25027,"arcs":[[-1937,1937,1938,1939,1940,1941,-1930,-1736]]},{"type":"Polygon","id":16031,"arcs":[[-1756,1942,1943,1944,-1825,-1878,-1726,-1380]]},{"type":"Polygon","id":19061,"arcs":[[1945,1946,1947,1948,-1773,-1711]]},{"type":"Polygon","id":55059,"arcs":[[1949,1950,1951,-1885,-1889]]},{"type":"Polygon","id":19055,"arcs":[[-1949,1952,1953,1954,-1774]]},{"type":"Polygon","id":19187,"arcs":[[-1839,1955,1956,1957,1958,-1835,-1841]]},{"type":"Polygon","id":19019,"arcs":[[-1955,1959,1960,1961,-1771]]},{"type":"Polygon","id":19013,"arcs":[[-1962,1962,1963,1964,-1845,-1847]]},{"type":"Polygon","id":36109,"arcs":[[-1898,1965,1966,1967,-1787,-1631]]},{"type":"Polygon","id":56015,"arcs":[[-1792,1968,1969,1970,1971,-1578]]},{"type":"Polygon","id":56031,"arcs":[[-1972,1972,1973,-1597,-1579]]},{"type":"Polygon","id":16007,"arcs":[[-1665,1974,1975,-1785]]},{"type":"Polygon","id":36101,"arcs":[[-1780,-1918,1976,1977,1978,1979,1980,-1813]]},{"type":"Polygon","id":36013,"arcs":[[1981,1982,1983,1984,-1761]]},{"type":"Polygon","id":19193,"arcs":[[-1833,1985,1986,1987,1988,-1764,-1828]]},{"type":"Polygon","id":19161,"arcs":[[1989,1990,1991,1992,-1830]]},{"type":"Polygon","id":19093,"arcs":[[-1993,1993,-1986,-1832]]},{"type":"Polygon","id":19025,"arcs":[[-1959,1994,1995,-1990,-1836]]},{"type":"Polygon","id":19079,"arcs":[[1996,1997,1998,-1956,-1838]]},{"type":"Polygon","id":19083,"arcs":[[-1843,1999,2000,2001,-1997]]},{"type":"Polygon","id":19075,"arcs":[[-1965,2002,2003,-2000,-1846]]},{"type":"Polygon","id":25015,"arcs":[[-1942,2004,-1923,-1929]]},{"type":"Polygon","id":36097,"arcs":[[-1968,2005,-1977,-1917,-1788]]},{"type":"Polygon","id":36009,"arcs":[[-1873,2006,2007,2008,-1982,-1760]]},{"type":"Polygon","id":31043,"arcs":[[-1765,-1989,2009,-1919]]},{"type":"Polygon","id":36003,"arcs":[[-1814,-1981,2010,2011,-2007,-1872]]},{"type":"Polygon","id":36025,"arcs":[[-1892,2012,2013,2014,2015,2016,-1927,-1849]]},{"type":"Polygon","id":17085,"arcs":[[-1895,2017,2018,2019,-1946,-1710]]},{"type":"Polygon","id":36021,"arcs":[[2020,2021,2022,-1817,-1926]]},{"type":"Polygon","id":17177,"arcs":[[2023,-2018,-1894,-1876,2024,2025]]},{"type":"Polygon","id":17201,"arcs":[[2026,2027,-2025,-1875,-1881]]},{"type":"Polygon","id":16071,"arcs":[[-1784,2028,2029,2030,-1943,-1755]]},{"type":"Polygon","id":17111,"arcs":[[2031,2032,2033,2034,2035,-1886,-1952]]},{"type":"Polygon","id":17007,"arcs":[[-1887,-2036,2036,-2027,-1880]]},{"type":"Polygon","id":17097,"arcs":[[2037,-2032,-1951,2038]]},{"type":"Polygon","id":36039,"arcs":[[2039,-2013,-1891,-1893,-2023]]},{"type":"MultiPolygon","id":25025,"arcs":[[[2040,2041,-1935,-1934,-1933]],[[2042,-1931,-1864]]]},{"type":"Polygon","id":31139,"arcs":[[2043,2044,2045,-1867,-1871]]},{"type":"Polygon","id":31013,"arcs":[[2046,2047,-1790,-1799,-1796]]},{"type":"Polygon","id":31003,"arcs":[[-2046,2048,2049,2050,-1852,-1868]]},{"type":"Polygon","id":26161,"arcs":[[2051,2052,2053,-1903,-1861,2054]]},{"type":"Polygon","id":56007,"arcs":[[2055,2056,2057,2058,2059,-1367,-1612]]},{"type":"Polygon","id":56001,"arcs":[[-1974,2060,2061,2062,-2056,-1598]]},{"type":"Polygon","id":16041,"arcs":[[-1976,2063,-2029,-1783,-1786]]},{"type":"Polygon","id":26075,"arcs":[[-1904,-2054,2064,2065,2066,-1908,-1906]]},{"type":"Polygon","id":26025,"arcs":[[-2067,2067,2068,2069,-1911,-1909]]},{"type":"Polygon","id":26159,"arcs":[[2070,2071,2072,2073,-1915]]},{"type":"Polygon","id":26077,"arcs":[[-2070,2074,-2071,-1914,-1912]]},{"type":"Polygon","id":36007,"arcs":[[-2017,2075,2076,2077,-1900,-1928]]},{"type":"Polygon","id":36107,"arcs":[[-2078,2078,2079,-1966,-1897]]},{"type":"Polygon","id":19097,"arcs":[[-2020,2080,2081,2082,-1947]]},{"type":"Polygon","id":31179,"arcs":[[-1921,2083,2084,2085,-2044,-1870]]},{"type":"MultiPolygon","id":25021,"arcs":[[[2086,-2087,2087]],[[-2042,2088,2089,2090,2091,-1938,-1936]]]},{"type":"Polygon","id":25013,"arcs":[[-1941,2092,2093,2094,-1924,-2005]]},{"type":"Polygon","id":25023,"arcs":[[2086,2095,2096,2097,2098,-2090,2099]]},{"type":"Polygon","id":19011,"arcs":[[2100,2101,2102,-1963,-1961]]},{"type":"Polygon","id":19113,"arcs":[[-1954,2103,2104,2105,-2101,-1960]]},{"type":"Polygon","id":19171,"arcs":[[-2103,2106,2107,-2003,-1964]]},{"type":"Polygon","id":19105,"arcs":[[-1948,-2083,2108,2109,-2104,-1953]]},{"type":"Polygon","id":36015,"arcs":[[-1967,-2080,2110,2111,-1978,-2006]]},{"type":"Polygon","id":31173,"arcs":[[-1988,2112,2113,2114,-2084,-1920,-2010]]},{"type":"Polygon","id":56037,"arcs":[[-1368,-2060,2115,2116,2117,2118,-1662,-1623]]},{"type":"Polygon","id":42049,"arcs":[[2119,2120,2121,2122,-1984]]},{"type":"Polygon","id":26021,"arcs":[[2123,2124,2125,2126,-2073]]},{"type":"Polygon","id":19133,"arcs":[[2127,2128,2129,-2113,-1987]]},{"type":"Polygon","id":19127,"arcs":[[-2108,2130,2131,-2001,-2004]]},{"type":"Polygon","id":19027,"arcs":[[-1996,2132,2133,2134,2135,-1991]]},{"type":"Polygon","id":19047,"arcs":[[-1994,-1992,-2136,2136,2137,-2128]]},{"type":"Polygon","id":19015,"arcs":[[-1999,2138,2139,2140,2141,-1957]]},{"type":"Polygon","id":19073,"arcs":[[-2142,2142,2143,-2133,-1995,-1958]]},{"type":"Polygon","id":19169,"arcs":[[-2002,-2132,2144,2145,-2139,-1998]]},{"type":"Polygon","id":17141,"arcs":[[2146,2147,2148,2149,-2026,-2028]]},{"type":"Polygon","id":17015,"arcs":[[-2150,2150,2151,-2081,-2019,-2024]]},{"type":"Polygon","id":36111,"arcs":[[-2022,2152,2153,2154,-2014,-2040]]},{"type":"Polygon","id":17031,"arcs":[[-2038,2155,2156,2157,2158,2159,-2033]]},{"type":"Polygon","id":17037,"arcs":[[2160,2161,2162,2163,-2147,-2037,-2035]]},{"type":"Polygon","id":17089,"arcs":[[-2160,2164,2165,-2161,-2034]]},{"type":"Polygon","id":31075,"arcs":[[2166,2167,2168,-1794,-1810]]},{"type":"Polygon","id":25005,"arcs":[[2169,2170,2171,2172,2173,-2091,-2099]]},{"type":"Polygon","id":31091,"arcs":[[2174,2175,-2167,-1809]]},{"type":"Polygon","id":31039,"arcs":[[-2115,2176,2177,2178,2179,-2085]]},{"type":"Polygon","id":31119,"arcs":[[2180,2181,2182,-2049,-2045]]},{"type":"Polygon","id":31167,"arcs":[[-2180,2183,2184,-2181,-2086]]},{"type":"Polygon","id":31171,"arcs":[[2185,2186,2187,-2175,-1808]]},{"type":"Polygon","id":31183,"arcs":[[2188,2189,2190,-1853,-2051]]},{"type":"Polygon","id":31009,"arcs":[[-1807,-1883,2191,2192,-2186]]},{"type":"Polygon","id":31115,"arcs":[[2193,2194,-2192,-1896]]},{"type":"Polygon","id":31071,"arcs":[[-2191,2195,-2194,-1854]]},{"type":"Polygon","id":26091,"arcs":[[2196,2197,2198,2199,-2065,-2053]]},{"type":"Polygon","id":36027,"arcs":[[2200,2201,2202,2203,-2153,-2021]]},{"type":"Polygon","id":25001,"arcs":[[-2097,2204]]},{"type":"Polygon","id":26023,"arcs":[[2205,2206,2207,2208,-2069]]},{"type":"Polygon","id":26059,"arcs":[[-2200,2209,2210,-2206,-2068,-2066]]},{"type":"Polygon","id":26149,"arcs":[[-2209,2211,2212,2213,-2075]]},{"type":"Polygon","id":26027,"arcs":[[-2214,2214,2215,-2124,-2072]]},{"type":"Polygon","id":9005,"arcs":[[-2095,2216,2217,2218,-2201,-1925]]},{"type":"Polygon","id":31021,"arcs":[[2219,2220,2221,-2177,-2114,-2130]]},{"type":"Polygon","id":9003,"arcs":[[2222,2223,2224,2225,-2217,-2094]]},{"type":"Polygon","id":9013,"arcs":[[2226,2227,-2223,-2093]]},{"type":"Polygon","id":19045,"arcs":[[-2152,2228,2229,2230,2231,-2109,-2082]]},{"type":"Polygon","id":9015,"arcs":[[2232,2233,2234,-2227,-1940]]},{"type":"Polygon","id":44007,"arcs":[[-2174,2235,2236,2237,-2233,-1939,-2092]]},{"type":"Polygon","id":36105,"arcs":[[2238,2239,2240,-2015,-2155]]},{"type":"Polygon","id":6093,"arcs":[[-1534,2241,2242,2243,2244,2245,-1901,-1811]]},{"type":"Polygon","id":31069,"arcs":[[-2169,2246,2247,2248,2249,2250,-1795]]},{"type":"Polygon","id":31123,"arcs":[[-2251,2251,2252,2253,-2047]]},{"type":"Polygon","id":49005,"arcs":[[2254,2255,2256,-2030,-2064]]},{"type":"Polygon","id":31157,"arcs":[[-2254,2257,-1969,-1791,-2048]]},{"type":"Polygon","id":49033,"arcs":[[-1664,2258,2259,2260,2261,-2255,-1975]]},{"type":"Polygon","id":42015,"arcs":[[-2111,-2079,2262,2263,2264,2265,2266]]},{"type":"Polygon","id":42117,"arcs":[[-2112,-2267,2267,2268,-1979]]},{"type":"Polygon","id":49003,"arcs":[[2269,2270,2271,-1944,-2031,-2257]]},{"type":"Polygon","id":32013,"arcs":[[2272,2273,2274,-1364,-1210,2275]]},{"type":"Polygon","id":32007,"arcs":[[-1945,-2272,2276,2277,2278,2279,-2276,-1515,-1826]]},{"type":"Polygon","id":42083,"arcs":[[-2012,2280,2281,2282,2283,-2008]]},{"type":"Polygon","id":42105,"arcs":[[-1980,-2269,2284,2285,2286,-2281,-2011]]},{"type":"Polygon","id":6015,"arcs":[[-2246,2287,2288,-1822,-1902]]},{"type":"Polygon","id":42127,"arcs":[[-2016,-2241,2289,2290,2291,2292,-2076]]},{"type":"Polygon","id":42115,"arcs":[[2293,2294,-2263,-2077,-2293]]},{"type":"Polygon","id":42123,"arcs":[[-2284,2295,2296,2297,-2120,-1983,-2009]]},{"type":"Polygon","id":6049,"arcs":[[-1537,2298,2299,2300,-2242,-1533]]},{"type":"Polygon","id":32031,"arcs":[[2301,2302,2303,2304,2305,2306,2307,2308,2309,-2299,-1536,-2275]]},{"type":"Polygon","id":17043,"arcs":[[2310,-2165,-2159]]},{"type":"Polygon","id":39007,"arcs":[[2311,2312,2313,2314,2315,-2122]]},{"type":"Polygon","id":19031,"arcs":[[-2110,-2232,2316,2317,2318,-2105]]},{"type":"Polygon","id":17195,"arcs":[[-2149,2319,2320,2321,2322,-2229,-2151]]},{"type":"Polygon","id":31011,"arcs":[[-2183,2323,2324,2325,-2189,-2050]]},{"type":"Polygon","id":17103,"arcs":[[-2164,2326,2327,-2320,-2148]]},{"type":"Polygon","id":19085,"arcs":[[-2138,2328,2329,2330,-2220,-2129]]},{"type":"Polygon","id":19095,"arcs":[[2331,2332,2333,2334,-2102]]},{"type":"Polygon","id":19049,"arcs":[[2335,2336,2337,-2143,-2141]]},{"type":"Polygon","id":19165,"arcs":[[2338,2339,2340,-2329,-2137]]},{"type":"Polygon","id":19009,"arcs":[[2341,2342,-2339,-2135]]},{"type":"Polygon","id":19157,"arcs":[[-2335,2343,2344,2345,-2107]]},{"type":"Polygon","id":19153,"arcs":[[-2146,2346,2347,2348,-2336,-2140]]},{"type":"Polygon","id":19099,"arcs":[[-2131,-2346,2349,2350,-2347,-2145]]},{"type":"Polygon","id":19077,"arcs":[[-2338,2351,-2342,-2134,-2144]]},{"type":"Polygon","id":19103,"arcs":[[-2319,2352,2353,2354,-2332,-2106]]},{"type":"Polygon","id":39085,"arcs":[[2355,2356,2357,-2315]]},{"type":"Polygon","id":42039,"arcs":[[-2298,2358,2359,2360,-2312,-2121]]},{"type":"Polygon","id":17161,"arcs":[[2361,2362,2363,2364,-2230,-2323]]},{"type":"Polygon","id":44001,"arcs":[[2365,-2236,-2173]]},{"type":"Polygon","id":19163,"arcs":[[-2365,2366,-2317,-2231]]},{"type":"Polygon","id":44003,"arcs":[[2367,2368,2369,-2234,-2238]]},{"type":"Polygon","id":18039,"arcs":[[2370,2371,2372,2373,2374,-2215,-2213]]},{"type":"Polygon","id":18141,"arcs":[[2375,2376,2377,-2125,-2216,-2375]]},{"type":"Polygon","id":18091,"arcs":[[2378,2379,2380,-2126,-2378]]},{"type":"Polygon","id":18151,"arcs":[[2381,2382,-2207,-2211,2383]]},{"type":"Polygon","id":18087,"arcs":[[2384,-2371,-2212,-2208,-2383]]},{"type":"Polygon","id":31037,"arcs":[[-2179,2385,2386,2387,-2184]]},{"type":"Polygon","id":31141,"arcs":[[-2388,2388,2389,2390,2391,-2324,-2182,-2185]]},{"type":"Polygon","id":31053,"arcs":[[-2222,2392,2393,2394,-2386,-2178]]},{"type":"Polygon","id":31117,"arcs":[[-2188,2395,2396,2397,2398,-2176]]},{"type":"Polygon","id":31005,"arcs":[[-2399,2399,-2247,-2168]]},{"type":"Polygon","id":31077,"arcs":[[2400,2401,2402,-2190,-2326]]},{"type":"Polygon","id":31041,"arcs":[[2403,2404,2405,2406,2407,2408,-2193,-2195]]},{"type":"Polygon","id":31113,"arcs":[[-2409,2409,-2396,-2187]]},{"type":"Polygon","id":31175,"arcs":[[-2403,2410,-2404,-2196]]},{"type":"Polygon","id":39095,"arcs":[[2411,2412,2413,2414,-2198,2415,2416]]},{"type":"Polygon","id":17197,"arcs":[[-2158,2417,2418,2419,2420,-2311]]},{"type":"Polygon","id":39123,"arcs":[[2421,2422,2423,2424,-2412]]},{"type":"Polygon","id":17093,"arcs":[[-2421,2425,2426,-2162,-2166]]},{"type":"Polygon","id":39051,"arcs":[[2427,2428,-2199,-2415]]},{"type":"Polygon","id":39055,"arcs":[[2429,2430,2431,-2356,-2314]]},{"type":"Polygon","id":9011,"arcs":[[-2370,2432,2433,2434,-2224,-2228,-2235]]},{"type":"Polygon","id":18089,"arcs":[[2435,2436,2437,2438,-2418,-2157,2439]]},{"type":"Polygon","id":18127,"arcs":[[2440,-2436,2441,-2380]]},{"type":"Polygon","id":39171,"arcs":[[2442,2443,2444,-2384,-2210,-2429]]},{"type":"Polygon","id":31007,"arcs":[[-2253,2445,2446,2447,-1970,-2258]]},{"type":"Polygon","id":31177,"arcs":[[-2331,2448,2449,-2393,-2221]]},{"type":"MultiPolygon","id":44005,"arcs":[[[2450,-2171]]]},{"type":"Polygon","id":9001,"arcs":[[2451,2452,2453,2454,-2202,-2219]]},{"type":"Polygon","id":56021,"arcs":[[-1971,-2448,2455,2456,2457,-2061,-1973]]},{"type":"Polygon","id":44009,"arcs":[[-2433,-2369,2458]]},{"type":"Polygon","id":42131,"arcs":[[-2295,2459,2460,2461,-2264]]},{"type":"MultiPolygon","id":9007,"arcs":[[[2462,-2463,2463]],[[-2435,2464,2465,-2225]]]},{"type":"Polygon","id":9009,"arcs":[[-2466,-2463,2466,-2452,-2218,-2226]]},{"type":"Polygon","id":42069,"arcs":[[-2292,2467,2468,-2460,-2294]]},{"type":"Polygon","id":36071,"arcs":[[-2204,2469,2470,2471,2472,2473,-2239,-2154]]},{"type":"Polygon","id":17099,"arcs":[[-2427,2474,2475,2476,2477,2478,2479,-2327,-2163]]},{"type":"Polygon","id":39035,"arcs":[[-2432,2480,2481,2482,2483,-2357]]},{"type":"Polygon","id":42047,"arcs":[[2484,2485,2486,2487,-2283]]},{"type":"Polygon","id":42053,"arcs":[[-2488,2488,2489,2490,-2296]]},{"type":"Polygon","id":42121,"arcs":[[2491,2492,2493,-2359,-2297,-2491]]},{"type":"Polygon","id":39043,"arcs":[[2494,2495,2496,2497]]},{"type":"Polygon","id":39173,"arcs":[[-2425,2498,2499,2500,2501,-2413]]},{"type":"Polygon","id":42023,"arcs":[[-2287,2502,2503,-2485,-2282]]},{"type":"Polygon","id":42103,"arcs":[[-2474,2504,2505,-2290,-2240]]},{"type":"Polygon","id":19139,"arcs":[[-2318,-2367,-2364,2506,-2353]]},{"type":"Polygon","id":42081,"arcs":[[2507,2508,2509,2510,2511,2512,-2285,-2268,-2266]]},{"type":"Polygon","id":42113,"arcs":[[-2508,-2265,-2462,2513,2514]]},{"type":"Polygon","id":17011,"arcs":[[-2480,2515,2516,2517,2518,-2321,-2328]]},{"type":"Polygon","id":17073,"arcs":[[-2519,2519,2520,2521,-2362,-2322]]},{"type":"Polygon","id":56041,"arcs":[[-2119,2522,-2259,-1663]]},{"type":"Polygon","id":18033,"arcs":[[2523,2524,2525,-2382,-2445]]},{"type":"Polygon","id":18113,"arcs":[[-2526,2526,2527,2528,-2372,-2385]]},{"type":"Polygon","id":31125,"arcs":[[2529,-2401,-2325,-2392]]},{"type":"Polygon","id":36079,"arcs":[[-2470,-2203,-2455,2530]]},{"type":"Polygon","id":39093,"arcs":[[-2483,2531,2532,2533,-2495,2534]]},{"type":"Polygon","id":19183,"arcs":[[2535,2536,2537,2538,-2333,-2355]]},{"type":"Polygon","id":19181,"arcs":[[2539,2540,2541,2542,-2349]]},{"type":"Polygon","id":19107,"arcs":[[-2539,2543,2544,2545,-2344,-2334]]},{"type":"Polygon","id":19121,"arcs":[[2546,2547,2548,-2337,-2543]]},{"type":"Polygon","id":19123,"arcs":[[-2546,2549,2550,2551,-2350,-2345]]},{"type":"Polygon","id":19125,"arcs":[[-2552,2552,2553,-2540,-2348,-2351]]},{"type":"Polygon","id":19155,"arcs":[[-2341,2554,2555,2556,2557,2558,-2449,-2330]]},{"type":"Polygon","id":19029,"arcs":[[-2343,2559,2560,2561,-2555,-2340]]},{"type":"Polygon","id":19001,"arcs":[[-2352,-2549,2562,2563,-2560]]},{"type":"Polygon","id":39155,"arcs":[[-2361,2564,2565,2566,-2430,-2313]]},{"type":"MultiPolygon","id":39143,"arcs":[[[2567,-2497,2568,2569,-2499,-2424]]]},{"type":"Polygon","id":42085,"arcs":[[-2494,2570,2571,2572,-2565,-2360]]},{"type":"Polygon","id":39069,"arcs":[[-2414,-2502,2573,2574,-2443,-2428]]},{"type":"Polygon","id":18099,"arcs":[[-2374,2575,2576,2577,-2376]]},{"type":"Polygon","id":42035,"arcs":[[-2513,2578,2579,2580,-2503,-2286]]},{"type":"Polygon","id":6023,"arcs":[[-2245,2581,2582,2583,-2288]]},{"type":"Polygon","id":17063,"arcs":[[2584,2585,-2475,-2426,-2420]]},{"type":"Polygon","id":31023,"arcs":[[2586,2587,2588,-2389,-2387]]},{"type":"Polygon","id":31155,"arcs":[[2589,2590,2591,2592,-2587,-2395]]},{"type":"Polygon","id":18085,"arcs":[[-2529,2593,2594,2595,-2576,-2373]]},{"type":"Polygon","id":31033,"arcs":[[-2250,2596,2597,2598,2599,-2446,-2252]]},{"type":"Polygon","id":42031,"arcs":[[2600,2601,-2492,-2490]]},{"type":"Polygon","id":49057,"arcs":[[-2256,-2262,2602,2603,-2270]]},{"type":"Polygon","id":18149,"arcs":[[-2578,2604,2605,-2379,-2377]]},{"type":"Polygon","id":42079,"arcs":[[2606,2607,2608,2609,-2514,-2461,-2469]]},{"type":"Polygon","id":39039,"arcs":[[2610,2611,2612,-2524,-2444,-2575]]},{"type":"Polygon","id":19115,"arcs":[[-2507,2613,2614,2615,-2536,-2354]]},{"type":"Polygon","id":31101,"arcs":[[2616,2617,2618,-2248,-2400,-2398]]},{"type":"Polygon","id":31111,"arcs":[[-2410,-2408,2619,2620,2621,2622,-2617,-2397]]},{"type":"Polygon","id":31143,"arcs":[[2623,2624,2625,-2390,-2589]]},{"type":"Polygon","id":31105,"arcs":[[-2600,2626,2627,-2456,-2447]]},{"type":"Polygon","id":31121,"arcs":[[-2626,2628,2629,2630,-2530,-2391]]},{"type":"Polygon","id":31093,"arcs":[[-2631,2631,2632,-2402]]},{"type":"Polygon","id":31163,"arcs":[[-2633,2633,-2405,-2411]]},{"type":"Polygon","id":31055,"arcs":[[-2450,-2559,2634,-2590,-2394]]},{"type":"Polygon","id":49029,"arcs":[[2635,2636,2637,-2603,-2261]]},{"type":"Polygon","id":42065,"arcs":[[2638,2639,2640,-2601,-2489,-2487]]},{"type":"Polygon","id":6105,"arcs":[[2641,2642,2643,-2582,-2244]]},{"type":"Polygon","id":36119,"arcs":[[2644,2645,-2531,-2454,2646]]},{"type":"Polygon","id":34037,"arcs":[[2647,2648,2649,-2505,-2473]]},{"type":"Polygon","id":39153,"arcs":[[2650,2651,2652,2653,-2481]]},{"type":"Polygon","id":39133,"arcs":[[-2567,2654,2655,-2651,-2431]]},{"type":"Polygon","id":17131,"arcs":[[-2522,2656,2657,2658,-2614,-2363]]},{"type":"Polygon","id":17155,"arcs":[[-2479,2659,-2516]]},{"type":"Polygon","id":36087,"arcs":[[2660,2661,-2471,2662]]},{"type":"Polygon","id":42037,"arcs":[[2663,2664,2665,-2509,-2515,-2610]]},{"type":"Polygon","id":17091,"arcs":[[-2439,2666,2667,2668,2669,-2585,-2419]]},{"type":"Polygon","id":18183,"arcs":[[2670,2671,2672,-2594,-2528]]},{"type":"MultiPolygon","id":36103,"arcs":[[[2673,2674]]]},{"type":"Polygon","id":39077,"arcs":[[-2534,2675,2676,2677,2678,-2569,-2496]]},{"type":"Polygon","id":18073,"arcs":[[-2606,2679,2680,2681,2682,-2437,-2441]]},{"type":"Polygon","id":39103,"arcs":[[-2654,2683,2684,-2532,-2482]]},{"type":"Polygon","id":18003,"arcs":[[2685,2686,2687,2688,2689,-2671,-2527,-2525,-2613]]},{"type":"Polygon","id":39147,"arcs":[[-2679,2690,2691,2692,-2500,-2570]]},{"type":"Polygon","id":42033,"arcs":[[2693,2694,2695,-2639,-2486,-2504,-2581]]},{"type":"Polygon","id":49043,"arcs":[[-2523,-2118,2696,2697,2698,2699,-2636,-2260]]},{"type":"Polygon","id":42027,"arcs":[[2700,2701,2702,2703,-2694,-2580]]},{"type":"Polygon","id":42089,"arcs":[[2704,2705,2706,-2607,-2468,-2291,-2506]]},{"type":"Polygon","id":39125,"arcs":[[2707,2708,-2686,-2612]]},{"type":"Polygon","id":17175,"arcs":[[-2518,2709,2710,2711,-2520]]},{"type":"Polygon","id":31049,"arcs":[[-2619,2712,-2597,-2249]]},{"type":"Polygon","id":18111,"arcs":[[2713,2714,-2667,-2438,-2683]]},{"type":"Polygon","id":34031,"arcs":[[2715,2716,-2648,-2472,-2662,2717]]},{"type":"Polygon","id":31153,"arcs":[[-2558,2718,2719,-2591,-2635]]},{"type":"Polygon","id":6035,"arcs":[[-2310,2720,2721,2722,-2300]]},{"type":"Polygon","id":6089,"arcs":[[-2301,-2723,2723,2724,-2642,-2243]]},{"type":"Polygon","id":42097,"arcs":[[2725,-2665,2726,2727,2728,2729,2730,-2511]]},{"type":"Polygon","id":18049,"arcs":[[2731,2732,2733,2734,-2577,-2596]]},{"type":"Polygon","id":31081,"arcs":[[2735,2736,2737,-2629,-2625]]},{"type":"Polygon","id":18131,"arcs":[[-2735,2738,2739,-2680,-2605]]},{"type":"Polygon","id":42093,"arcs":[[-2666,-2726,-2510]]},{"type":"Polygon","id":42019,"arcs":[[2740,2741,2742,2743,-2571,-2493]]},{"type":"Polygon","id":42005,"arcs":[[-2641,2744,2745,2746,-2741,-2602]]},{"type":"Polygon","id":39063,"arcs":[[-2693,2747,2748,2749,2750,-2501]]},{"type":"Polygon","id":39137,"arcs":[[-2751,2751,2752,-2708,-2611,-2574]]},{"type":"Polygon","id":19101,"arcs":[[-2538,2753,2754,2755,-2544]]},{"type":"Polygon","id":19087,"arcs":[[-2616,2756,2757,2758,-2754,-2537]]},{"type":"Polygon","id":19179,"arcs":[[-2756,2759,2760,-2550,-2545]]},{"type":"Polygon","id":19039,"arcs":[[2761,2762,2763,-2547,-2542]]},{"type":"Polygon","id":19117,"arcs":[[-2554,2764,2765,-2762,-2541]]},{"type":"Polygon","id":19135,"arcs":[[-2761,2766,-2765,-2553,-2551]]},{"type":"Polygon","id":19129,"arcs":[[2767,2768,2769,-2719,-2557]]},{"type":"Polygon","id":19137,"arcs":[[-2562,2770,2771,-2768,-2556]]},{"type":"Polygon","id":19003,"arcs":[[-2564,2772,2773,-2771,-2561]]},{"type":"Polygon","id":19175,"arcs":[[-2548,-2764,2774,-2773,-2563]]},{"type":"Polygon","id":49011,"arcs":[[-2638,2775,2776,-2604]]},{"type":"Polygon","id":17095,"arcs":[[-2712,2777,2778,2779,-2657,-2521]]},{"type":"Polygon","id":42119,"arcs":[[2780,2781,-2701,-2579,-2512,-2731]]},{"type":"Polygon","id":17123,"arcs":[[-2660,-2478,2782,2783,-2710,-2517]]},{"type":"Polygon","id":34003,"arcs":[[2784,2785,-2718,-2661,2786]]},{"type":"Polygon","id":39099,"arcs":[[-2573,2787,2788,2789,-2655,-2566]]},{"type":"Polygon","id":42025,"arcs":[[-2707,2790,2791,2792,-2608]]},{"type":"Polygon","id":42073,"arcs":[[-2744,2793,2794,-2788,-2572]]},{"type":"Polygon","id":17105,"arcs":[[-2670,2795,2796,2797,-2476,-2586]]},{"type":"Polygon","id":34041,"arcs":[[2798,2799,2800,2801,-2705,-2650]]},{"type":"Polygon","id":34027,"arcs":[[2802,2803,2804,2805,-2799,-2649,-2717]]},{"type":"Polygon","id":49045,"arcs":[[2806,2807,2808,2809,-2277,-2271,-2777]]},{"type":"Polygon","id":19057,"arcs":[[2810,2811,-2757,-2615]]},{"type":"Polygon","id":17071,"arcs":[[2812,2813,2814,2815,-2811,-2659]]},{"type":"Polygon","id":17187,"arcs":[[-2780,2816,2817,-2813,-2658]]},{"type":"Polygon","id":39005,"arcs":[[-2685,2818,2819,2820,2821,-2676,-2533]]},{"type":"Polygon","id":31025,"arcs":[[-2770,2822,2823,2824,-2592,-2720]]},{"type":"Polygon","id":31185,"arcs":[[2825,2826,-2736,-2624]]},{"type":"Polygon","id":31079,"arcs":[[-2630,-2738,2827,2828,-2632]]},{"type":"Polygon","id":31047,"arcs":[[2829,2830,2831,2832,-2620,-2407]]},{"type":"Polygon","id":31019,"arcs":[[-2829,2833,2834,2835,-2830,-2406,-2634]]},{"type":"Polygon","id":31159,"arcs":[[2836,2837,-2826,-2588]]},{"type":"Polygon","id":31109,"arcs":[[-2825,2838,2839,2840,-2837,-2593]]},{"type":"Polygon","id":18169,"arcs":[[-2673,2841,2842,2843,-2732,-2595]]},{"type":"Polygon","id":17075,"arcs":[[-2715,2844,2845,2846,-2668]]},{"type":"Polygon","id":18069,"arcs":[[-2690,2847,2848,-2842,-2672]]},{"type":"MultiPolygon","id":8123,"arcs":[[[2849]],[[2850,2851,2852,2853,2854,-2457,-2628,2855]]]},{"type":"Polygon","id":31135,"arcs":[[-2623,2856,2857,2858,2859,-2618]]},{"type":"Polygon","id":8107,"arcs":[[2860,2861,2862,2863,2864,-2058,2865]]},{"type":"Polygon","id":8057,"arcs":[[2866,-2866,-2057,-2063,2867]]},{"type":"Polygon","id":8081,"arcs":[[-2865,2868,2869,2870,-2116,-2059]]},{"type":"Polygon","id":8075,"arcs":[[2871,2872,2873,-2856,-2627,-2599,2874,2875]]},{"type":"Polygon","id":8115,"arcs":[[2876,-2875,-2598,-2713,-2860]]},{"type":"Polygon","id":49009,"arcs":[[2877,-2697,-2117,-2871]]},{"type":"Polygon","id":32011,"arcs":[[2878,2879,2880,-2279]]},{"type":"Polygon","id":32015,"arcs":[[-2881,2881,2882,2883,-2273,-2280]]},{"type":"Polygon","id":8069,"arcs":[[2884,2885,-2868,-2062,-2458,-2855]]},{"type":"Polygon","id":18103,"arcs":[[-2844,2886,2887,2888,-2733]]},{"type":"Polygon","id":39033,"arcs":[[2889,2890,2891,2892,-2691,-2678]]},{"type":"Polygon","id":17053,"arcs":[[2893,2894,2895,-2796,-2669,-2847]]},{"type":"Polygon","id":39139,"arcs":[[-2822,2896,2897,-2890,-2677]]},{"type":"Polygon","id":39175,"arcs":[[-2893,2898,2899,-2748,-2692]]},{"type":"Polygon","id":39169,"arcs":[[-2653,2900,2901,-2819,-2684]]},{"type":"Polygon","id":39161,"arcs":[[-2753,2902,2903,2904,2905,-2687,-2709]]},{"type":"Polygon","id":39151,"arcs":[[-2790,2906,2907,2908,2909,-2901,-2652,-2656]]},{"type":"Polygon","id":17143,"arcs":[[-2784,2910,2911,2912,-2778,-2711]]},{"type":"Polygon","id":42095,"arcs":[[2913,2914,-2791,-2706,-2802]]},{"type":"Polygon","id":32027,"arcs":[[-2884,2915,-2302,-2274]]},{"type":"Polygon","id":42107,"arcs":[[-2793,2916,2917,2918,2919,-2727,-2664,-2609]]},{"type":"Polygon","id":39029,"arcs":[[-2795,2920,2921,2922,2923,-2907,-2789]]},{"type":"Polygon","id":17203,"arcs":[[2924,2925,-2911,-2783,-2477,-2798]]},{"type":"Polygon","id":18001,"arcs":[[2926,2927,2928,-2688,-2906]]},{"type":"Polygon","id":39003,"arcs":[[-2750,2929,2930,-2903,-2752]]},{"type":"Polygon","id":49035,"arcs":[[-2637,-2700,2931,2932,-2807,-2776]]},{"type":"Polygon","id":36005,"arcs":[[2933,2934,2935,-2645]]},{"type":"Polygon","id":18179,"arcs":[[-2929,2936,2937,2938,-2848,-2689]]},{"type":"MultiPolygon","id":36059,"arcs":[[[-2674,2939,2940,2941,2942,2943]]]},{"type":"Polygon","id":18181,"arcs":[[2944,2945,2946,2947,-2681,-2740]]},{"type":"Polygon","id":18017,"arcs":[[-2734,-2889,2948,2949,-2945,-2739]]},{"type":"Polygon","id":42063,"arcs":[[-2696,2950,2951,-2745,-2640]]},{"type":"Polygon","id":34013,"arcs":[[-2716,-2786,2952,2953,2954,-2803]]},{"type":"Polygon","id":19071,"arcs":[[2955,2956,2957,-2823,-2769]]},{"type":"Polygon","id":19145,"arcs":[[2958,2959,2960,-2956,-2772]]},{"type":"Polygon","id":19173,"arcs":[[2961,2962,2963,-2959,-2774]]},{"type":"Polygon","id":19177,"arcs":[[-2759,2964,2965,2966,2967,-2755]]},{"type":"Polygon","id":19051,"arcs":[[-2968,2968,2969,2970,-2760]]},{"type":"Polygon","id":19159,"arcs":[[2971,2972,2973,-2962,-2775]]},{"type":"Polygon","id":19053,"arcs":[[2974,2975,2976,-2972,-2763]]},{"type":"Polygon","id":19185,"arcs":[[2977,2978,2979,-2975,-2766]]},{"type":"Polygon","id":19007,"arcs":[[-2971,2980,2981,-2978,-2767]]},{"type":"Polygon","id":42109,"arcs":[[-2730,2982,2983,-2781]]},{"type":"Polygon","id":36061,"arcs":[[2984,-2935]]},{"type":"Polygon","id":49047,"arcs":[[-2870,2985,2986,2987,2988,2989,2990,-2878]]},{"type":"Polygon","id":42007,"arcs":[[-2743,2991,2992,2993,-2921,-2794]]},{"type":"Polygon","id":42087,"arcs":[[2994,-2702,-2782,-2984,2995]]},{"type":"Polygon","id":49013,"arcs":[[-2991,2996,2997,2998,-2698]]},{"type":"Polygon","id":39065,"arcs":[[-2900,2999,3000,3001,3002,-2930,-2749]]},{"type":"Polygon","id":34017,"arcs":[[3003,-2953,-2785]]},{"type":"Polygon","id":19111,"arcs":[[-2812,-2816,3004,3005,-2965,-2758]]},{"type":"MultiPolygon","id":36081,"arcs":[[[3006,-3007,3007]],[[-2943,3008,3009,3010,3011]]]},{"type":"Polygon","id":34019,"arcs":[[3012,3013,3014,-2800,-2806]]},{"type":"Polygon","id":42077,"arcs":[[3015,3016,3017,-2917,-2792,-2915]]},{"type":"Polygon","id":31131,"arcs":[[-2958,3018,3019,3020,-2839,-2824]]},{"type":"Polygon","id":34035,"arcs":[[3021,3022,3023,-3013,-2805]]},{"type":"Polygon","id":17113,"arcs":[[-2896,3024,3025,3026,3027,3028,-2925,-2797]]},{"type":"Polygon","id":8095,"arcs":[[-2859,3029,3030,-2876,-2877]]},{"type":"Polygon","id":17179,"arcs":[[-3029,3031,3032,3033,-2912,-2926]]},{"type":"Polygon","id":42061,"arcs":[[-2995,3034,3035,3036,3037,3038,-2703]]},{"type":"Polygon","id":42013,"arcs":[[3039,3040,-2704,-3039]]},{"type":"MultiPolygon","id":36047,"arcs":[[[3006,-3007,3007]],[[3041,-3010]]]},{"type":"Polygon","id":18007,"arcs":[[-2682,-2948,3042,3043,3044,-2845,-2714]]},{"type":"Polygon","id":34039,"arcs":[[3045,3046,-3022,-2804,-2955]]},{"type":"Polygon","id":18015,"arcs":[[-2950,3047,3048,3049,-2946]]},{"type":"Polygon","id":39019,"arcs":[[-2924,3050,3051,3052,-2908]]},{"type":"Polygon","id":39107,"arcs":[[3053,3054,3055,-2927,-2905]]},{"type":"Polygon","id":42021,"arcs":[[-3041,3056,3057,3058,-2951,-2695]]},{"type":"Polygon","id":17057,"arcs":[[-2913,-3034,3059,3060,3061,-2817,-2779]]},{"type":"Polygon","id":39117,"arcs":[[-2898,3062,3063,3064,-2891]]},{"type":"Polygon","id":39101,"arcs":[[-3065,3065,3066,-3000,-2899,-2892]]},{"type":"Polygon","id":31063,"arcs":[[-2833,3067,3068,3069,3070,-2621]]},{"type":"Polygon","id":31001,"arcs":[[3071,3072,3073,-2834,-2828]]},{"type":"Polygon","id":31073,"arcs":[[3074,3075,-3068,-2832]]},{"type":"Polygon","id":31085,"arcs":[[-3071,3076,3077,-2857,-2622]]},{"type":"Polygon","id":31029,"arcs":[[-3078,3078,3079,-3030,-2858]]},{"type":"Polygon","id":31059,"arcs":[[3080,3081,3082,-2827]]},{"type":"Polygon","id":31151,"arcs":[[-2838,-2841,3083,3084,-3081]]},{"type":"Polygon","id":31035,"arcs":[[-3083,3085,-3072,-2737]]},{"type":"Polygon","id":42067,"arcs":[[-2729,3086,3087,-3035,-2996,-2983]]},{"type":"Polygon","id":49051,"arcs":[[-2999,3088,-2932,-2699]]},{"type":"Polygon","id":31099,"arcs":[[3089,3090,-2835,-3074]]},{"type":"Polygon","id":39011,"arcs":[[-3003,3091,3092,-3054,-2904,-2931]]},{"type":"Polygon","id":31137,"arcs":[[-2836,-3091,3093,3094,-3075,-2831]]},{"type":"Polygon","id":42129,"arcs":[[-2952,-3059,3095,3096,3097,3098,-2746]]},{"type":"Polygon","id":42011,"arcs":[[3099,3100,3101,3102,-2918,-3018]]},{"type":"Polygon","id":42003,"arcs":[[-2747,-3099,3103,-2992,-2742]]},{"type":"Polygon","id":39075,"arcs":[[-2910,3104,3105,3106,-2820,-2902]]},{"type":"Polygon","id":39157,"arcs":[[-3053,3107,3108,3109,-3105,-2909]]},{"type":"Polygon","id":42043,"arcs":[[-2920,3110,3111,3112,3113,3114,-2728]]},{"type":"Polygon","id":18053,"arcs":[[-2939,3115,3116,3117,3118,3119,-2887,-2843,-2849]]},{"type":"Polygon","id":17067,"arcs":[[3120,3121,3122,3123,3124,-3005,-2815]]},{"type":"Polygon","id":54029,"arcs":[[3125,3126,3127,-2922,-2994]]},{"type":"Polygon","id":17109,"arcs":[[-3062,3128,-3121,-2814,-2818]]},{"type":"Polygon","id":42099,"arcs":[[3129,3130,-3087,-3115]]},{"type":"Polygon","id":29045,"arcs":[[-3125,3131,3132,3133,-2966,-3006]]},{"type":"Polygon","id":42017,"arcs":[[3134,3135,3136,3137,-3016,-2914,-2801,-3015]]},{"type":"Polygon","id":34023,"arcs":[[3138,3139,3140,3141,-3023,-3047]]},{"type":"Polygon","id":29199,"arcs":[[-3134,3142,3143,3144,-2969,-2967]]},{"type":"Polygon","id":39081,"arcs":[[-3128,3145,3146,3147,3148,-3051,-2923]]},{"type":"Polygon","id":29197,"arcs":[[3149,3150,-2981,-2970,-3145]]},{"type":"Polygon","id":29171,"arcs":[[-3151,3151,3152,3153,-2979,-2982]]},{"type":"Polygon","id":29005,"arcs":[[-2961,3154,3155,3156,-3019,-2957]]},{"type":"Polygon","id":29129,"arcs":[[-3154,3157,3158,3159,-2976,-2980]]},{"type":"Polygon","id":29147,"arcs":[[-2964,3160,3161,3162,3163,-3155,-2960]]},{"type":"Polygon","id":49049,"arcs":[[-2998,3164,3165,3166,-2808,-2933,-3089]]},{"type":"Polygon","id":29081,"arcs":[[-3160,3167,3168,3169,3170,-2973,-2977]]},{"type":"Polygon","id":39083,"arcs":[[3171,3172,3173,-3063,-2897,-2821,-3107]]},{"type":"Polygon","id":18075,"arcs":[[3174,3175,3176,3177,-2937,-2928,-3056]]},{"type":"Polygon","id":29227,"arcs":[[-3171,3178,-3161,-2963,-2974]]},{"type":"Polygon","id":18009,"arcs":[[-3178,3179,-3116,-2938]]},{"type":"Polygon","id":18067,"arcs":[[3180,3181,-3048,-2949,-2888,-3120]]},{"type":"Polygon","id":18157,"arcs":[[-3050,3182,3183,3184,3185,-3043,-2947]]},{"type":"Polygon","id":31127,"arcs":[[3186,3187,3188,-3020,-3157]]},{"type":"Polygon","id":42075,"arcs":[[-3111,-2919,-3103,3189]]},{"type":"Polygon","id":39091,"arcs":[[-3002,3190,3191,3192,-3092]]},{"type":"Polygon","id":8087,"arcs":[[-2874,3193,3194,-2851]]},{"type":"Polygon","id":31067,"arcs":[[3195,3196,3197,3198,3199,-3084,-2840]]},{"type":"Polygon","id":31097,"arcs":[[-3189,3200,-3196,-3021]]},{"type":"Polygon","id":39159,"arcs":[[3201,3202,3203,-3191,-3001,-3067,3204]]},{"type":"Polygon","id":17183,"arcs":[[-3045,3205,3206,3207,3208,-2894,-2846]]},{"type":"Polygon","id":8049,"arcs":[[3209,3210,3211,3212,3213,-2861,-2867,-2886]]},{"type":"Polygon","id":39149,"arcs":[[-3193,3214,3215,3216,-3093]]},{"type":"Polygon","id":42125,"arcs":[[-3104,-3098,3217,3218,3219,3220,3221,-3126,-2993]]},{"type":"Polygon","id":18171,"arcs":[[-3186,3222,3223,-3206,-3044]]},{"type":"Polygon","id":34025,"arcs":[[3224,3225,3226,-3141,3227,3228]]},{"type":"Polygon","id":39031,"arcs":[[-3110,3229,3230,3231,-3172,-3106]]},{"type":"Polygon","id":42091,"arcs":[[3232,3233,3234,-3100,-3017,-3138]]},{"type":"Polygon","id":6103,"arcs":[[3235,3236,3237,3238,-2643,-2725]]},{"type":"Polygon","id":6063,"arcs":[[-2722,3239,3240,3241,-3236,-2724]]},{"type":"Polygon","id":39041,"arcs":[[-3174,3242,3243,-3205,-3066,-3064]]},{"type":"Polygon","id":8125,"arcs":[[-3080,3244,3245,3246,3247,-2872,-3031]]},{"type":"Polygon","id":8121,"arcs":[[-3248,3248,3249,3250,3251,-3194,-2873]]},{"type":"Polygon","id":17125,"arcs":[[3252,3253,3254,3255,-3060,-3033]]},{"type":"Polygon","id":39067,"arcs":[[-3149,3256,3257,-3108,-3052]]},{"type":"Polygon","id":18023,"arcs":[[-3182,3258,3259,3260,3261,-3183,-3049]]},{"type":"Polygon","id":34021,"arcs":[[-3142,-3227,3262,-3135,-3014,-3024]]},{"type":"Polygon","id":18159,"arcs":[[-3119,3263,3264,-3259,-3181]]},{"type":"Polygon","id":54009,"arcs":[[-3222,3265,-3146,-3127]]},{"type":"Polygon","id":17019,"arcs":[[-3209,3266,3267,-3025,-2895]]},{"type":"Polygon","id":29211,"arcs":[[3268,3269,3270,-3158,-3153]]},{"type":"Polygon","id":29075,"arcs":[[-3170,3271,3272,3273,-3162,-3179]]},{"type":"Polygon","id":18095,"arcs":[[3274,3275,3276,3277,-3264,-3118]]},{"type":"Polygon","id":18035,"arcs":[[-3180,-3177,3278,3279,-3275,-3117]]},{"type":"Polygon","id":18045,"arcs":[[-3185,3280,3281,3282,-3223]]},{"type":"Polygon","id":39037,"arcs":[[-3217,3283,3284,3285,3286,-3175,-3055]]},{"type":"Polygon","id":31181,"arcs":[[3287,3288,3289,3290,-3073]]},{"type":"Polygon","id":31061,"arcs":[[-3291,3291,3292,3293,-3090]]},{"type":"Polygon","id":31129,"arcs":[[3294,3295,3296,-3288,-3086]]},{"type":"Polygon","id":31057,"arcs":[[3297,3298,3299,-3245,-3079]]},{"type":"Polygon","id":31065,"arcs":[[-3095,3300,3301,3302,-3069,-3076]]},{"type":"Polygon","id":31169,"arcs":[[3303,3304,-3295,-3082]]},{"type":"Polygon","id":31095,"arcs":[[-3085,-3200,3305,-3304]]},{"type":"Polygon","id":31145,"arcs":[[-3303,3306,3307,-3070]]},{"type":"Polygon","id":31087,"arcs":[[-3308,3308,-3298,-3077]]},{"type":"Polygon","id":31083,"arcs":[[-3294,3309,-3301,-3094]]},{"type":"Polygon","id":29001,"arcs":[[-3144,3310,3311,-3269,-3152,-3150]]},{"type":"Polygon","id":42041,"arcs":[[3312,3313,3314,-3130,-3114]]},{"type":"Polygon","id":17107,"arcs":[[3315,3316,3317,3318,-3253,-3032,-3028]]},{"type":"Polygon","id":42009,"arcs":[[-3038,3319,3320,3321,-3057,-3040]]},{"type":"Polygon","id":42071,"arcs":[[3322,3323,3324,-3112,-3190,-3102]]},{"type":"Polygon","id":18135,"arcs":[[-3287,3325,3326,-3279,-3176]]},{"type":"Polygon","id":29103,"arcs":[[-3133,3327,3328,3329,-3311,-3143]]},{"type":"Polygon","id":42055,"arcs":[[-3315,3330,3331,3332,3333,-3036,-3088,-3131]]},{"type":"Polygon","id":42111,"arcs":[[-3322,3334,3335,3336,-3096,-3058]]},{"type":"Polygon","id":17039,"arcs":[[3337,3338,-3316,-3027]]},{"type":"Polygon","id":17169,"arcs":[[-3061,-3256,3339,3340,3341,-3122,-3129]]},{"type":"Polygon","id":17147,"arcs":[[-3268,3342,3343,3344,-3338,-3026]]},{"type":"Polygon","id":39089,"arcs":[[-3232,3345,3346,3347,3348,-3243,-3173]]},{"type":"Polygon","id":39021,"arcs":[[-3204,3349,3350,3351,-3215,-3192]]},{"type":"Polygon","id":29079,"arcs":[[-3271,3352,3353,3354,-3168,-3159]]},{"type":"Polygon","id":8013,"arcs":[[-2854,3355,3356,3357,-3210,-2885]]},{"type":"Polygon","id":31133,"arcs":[[-3188,3358,3359,3360,-3197,-3201]]},{"type":"Polygon","id":31147,"arcs":[[3361,3362,3363,3364,-3359,-3187]]},{"type":"Polygon","id":29087,"arcs":[[-3164,3365,3366,-3362,-3156]]},{"type":"Polygon","id":29111,"arcs":[[-3124,3367,3368,3369,-3328,-3132]]},{"type":"MultiPolygon","id":42029,"arcs":[[[3370,3371,3372,-3323,-3101,-3235]]]},{"type":"Polygon","id":42133,"arcs":[[-3325,3373,3374,3375,3376,-3313,-3113]]},{"type":"Polygon","id":8103,"arcs":[[3377,-2986,-2869,-2864]]},{"type":"Polygon","id":39059,"arcs":[[3378,3379,-3230,-3109,-3258,3380]]},{"type":"Polygon","id":18057,"arcs":[[3381,3382,3383,-3260,-3265,-3278]]},{"type":"Polygon","id":18107,"arcs":[[-3262,3384,3385,3386,3387,-3281,-3184]]},{"type":"Polygon","id":17001,"arcs":[[-3342,3388,3389,3390,-3368,-3123]]},{"type":"Polygon","id":39109,"arcs":[[-3352,3391,3392,-3284,-3216]]},{"type":"Polygon","id":54069,"arcs":[[-3221,3393,3394,-3147,-3266]]},{"type":"Polygon","id":34005,"arcs":[[-3226,3395,3396,3397,3398,3399,-3136,-3263]]},{"type":"Polygon","id":18011,"arcs":[[-3384,3400,3401,-3385,-3261]]},{"type":"Polygon","id":39013,"arcs":[[-3148,-3395,3402,3403,3404,-3381,-3257]]},{"type":"Polygon","id":34029,"arcs":[[-3229,3405,-3396,-3225]]},{"type":"Polygon","id":39119,"arcs":[[-3380,3406,3407,3408,-3346,-3231]]},{"type":"Polygon","id":42057,"arcs":[[-3334,3409,-3320,-3037]]},{"type":"Polygon","id":17129,"arcs":[[-3319,3410,3411,-3254]]},{"type":"Polygon","id":6007,"arcs":[[3412,3413,3414,3415,-3237,-3242]]},{"type":"Polygon","id":18165,"arcs":[[-3283,3416,3417,3418,-3207,-3224]]},{"type":"Polygon","id":42051,"arcs":[[-3337,3419,3420,3421,3422,-3218,-3097]]},{"type":"Polygon","id":39049,"arcs":[[-3349,3423,3424,3425,-3202,-3244]]},{"type":"Polygon","id":42101,"arcs":[[-3400,3426,3427,-3233,-3137]]},{"type":"Polygon","id":29061,"arcs":[[-3169,-3355,3428,3429,3430,-3272]]},{"type":"Polygon","id":29003,"arcs":[[-3274,3431,3432,3433,-3366,-3163]]},{"type":"Polygon","id":32033,"arcs":[[-2810,3434,3435,3436,3437,-2879,-2278]]},{"type":"Polygon","id":17017,"arcs":[[-3255,-3412,3438,3439,3440,-3340]]},{"type":"Polygon","id":39097,"arcs":[[3441,3442,3443,3444,-3350,-3203,-3426]]},{"type":"Polygon","id":17009,"arcs":[[-3441,3445,3446,-3389,-3341]]},{"type":"Polygon","id":8045,"arcs":[[-2863,3447,3448,3449,3450,-2987,-3378]]},{"type":"Polygon","id":18065,"arcs":[[-3327,3451,3452,3453,3454,-3276,-3280]]},{"type":"Polygon","id":42001,"arcs":[[3455,3456,-3331,-3314,-3377]]},{"type":"Polygon","id":42045,"arcs":[[-3428,3457,3458,-3371,-3234]]},{"type":"Polygon","id":17115,"arcs":[[-3345,3459,3460,3461,3462,-3317,-3339]]},{"type":"Polygon","id":8014,"arcs":[[3463,3464,-3356,-2853],[2849]]},{"type":"Polygon","id":29121,"arcs":[[-3330,3465,3466,3467,3468,-3312]]},{"type":"Polygon","id":39023,"arcs":[[-3445,3469,3470,-3392,-3351]]},{"type":"Polygon","id":29115,"arcs":[[-3469,3471,3472,-3353,-3270]]},{"type":"Polygon","id":29063,"arcs":[[-3431,3473,3474,3475,-3432,-3273]]},{"type":"Polygon","id":54051,"arcs":[[3476,3477,-3403,-3394,-3220,3478]]},{"type":"Polygon","id":42059,"arcs":[[-3423,3479,3480,-3479,-3219]]},{"type":"Polygon","id":49023,"arcs":[[-3167,3481,3482,-3435,-2809]]},{"type":"Polygon","id":18177,"arcs":[[-3286,3483,3484,3485,-3452,-3326]]},{"type":"Polygon","id":20023,"arcs":[[3486,3487,3488,-3246,-3300]]},{"type":"Polygon","id":20153,"arcs":[[3489,3490,-3487,-3299,-3309]]},{"type":"Polygon","id":6045,"arcs":[[-2644,-3239,3491,3492,3493,3494,-2583]]},{"type":"Polygon","id":20089,"arcs":[[3495,3496,3497,3498,-3289,-3297]]},{"type":"Polygon","id":20183,"arcs":[[-3499,3499,3500,3501,-3292,-3290]]},{"type":"Polygon","id":20157,"arcs":[[3502,3503,-3496,-3296,-3305]]},{"type":"Polygon","id":20201,"arcs":[[-3199,3504,3505,3506,3507,-3503,-3306]]},{"type":"Polygon","id":20039,"arcs":[[3508,3509,-3490,-3307]]},{"type":"Polygon","id":32001,"arcs":[[-2883,3510,3511,3512,-2303,-2916]]},{"type":"Polygon","id":20137,"arcs":[[3513,3514,-3509,-3302]]},{"type":"Polygon","id":20147,"arcs":[[-3502,3515,-3514,-3310,-3293]]},{"type":"Polygon","id":20117,"arcs":[[-3361,3516,3517,3518,-3505,-3198]]},{"type":"Polygon","id":8001,"arcs":[[-3252,3519,3520,3521,-3464,-2852,-3195]]},{"type":"Polygon","id":20013,"arcs":[[3522,3523,3524,3525,-3364]]},{"type":"Polygon","id":20131,"arcs":[[-3365,-3526,3526,3527,-3517,-3360]]},{"type":"Polygon","id":20043,"arcs":[[-3367,-3434,3528,3529,-3523,-3363]]},{"type":"Polygon","id":34007,"arcs":[[3530,3531,3532,-3398]]},{"type":"Polygon","id":17167,"arcs":[[-3463,3533,3534,3535,3536,-3439,-3411,-3318]]},{"type":"Polygon","id":29117,"arcs":[[3537,3538,3539,-3429,-3354,-3473]]},{"type":"Polygon","id":29205,"arcs":[[-3370,3540,3541,-3466,-3329]]},{"type":"Polygon","id":18121,"arcs":[[-3388,3542,3543,3544,-3417,-3282]]},{"type":"Polygon","id":39121,"arcs":[[-3405,3545,3546,3547,-3407,-3379]]},{"type":"Polygon","id":29127,"arcs":[[-3391,3548,3549,3550,-3541,-3369]]},{"type":"Polygon","id":18059,"arcs":[[-3455,3551,3552,3553,-3382,-3277]]},{"type":"Polygon","id":39045,"arcs":[[-3348,3554,3555,3556,-3424]]},{"type":"Polygon","id":8047,"arcs":[[3557,3558,-3211,-3358]]},{"type":"Polygon","id":39127,"arcs":[[3559,3560,3561,-3555,-3347,-3409]]},{"type":"Polygon","id":18097,"arcs":[[-3554,3562,3563,3564,3565,-3401,-3383]]},{"type":"Polygon","id":8037,"arcs":[[3566,3567,3568,-3448,-2862,-3214]]},{"type":"Polygon","id":8117,"arcs":[[3569,3570,3571,-3567,-3213]]},{"type":"Polygon","id":18063,"arcs":[[-3566,3572,3573,-3386,-3402]]},{"type":"Polygon","id":39113,"arcs":[[-3471,3574,3575,3576,3577,-3393]]},{"type":"Polygon","id":39135,"arcs":[[-3578,3578,3579,-3484,-3285]]},{"type":"Polygon","id":8059,"arcs":[[-3522,3580,3581,3582,3583,3584,-3558,-3357,-3465]]},{"type":"Polygon","id":8031,"arcs":[[3585,-3581,-3521]]},{"type":"Polygon","id":34015,"arcs":[[3586,3587,3588,3589,-3532]]},{"type":"Polygon","id":17045,"arcs":[[3590,3591,3592,3593,-3208,-3419]]},{"type":"Polygon","id":17041,"arcs":[[-3594,3594,3595,-3343,-3267]]},{"type":"Polygon","id":17137,"arcs":[[-3537,3596,3597,3598,3599,-3446,-3440]]},{"type":"Polygon","id":39111,"arcs":[[-3478,3600,3601,3602,-3546,-3404]]},{"type":"Polygon","id":18133,"arcs":[[-3574,3603,3604,3605,-3543,-3387]]},{"type":"Polygon","id":8019,"arcs":[[-3585,3606,-3570,-3212,-3559]]},{"type":"Polygon","id":39057,"arcs":[[-3444,3607,3608,3609,-3575,-3470]]},{"type":"Polygon","id":17149,"arcs":[[-3600,3610,3611,3612,3613,3614,-3549,-3390,-3447]]},{"type":"MultiPolygon","id":10003,"arcs":[[[3615,-3616,3616]],[[3617,3618,3619,3620,-3372,-3459]]]},{"type":"Polygon","id":17021,"arcs":[[-3462,3621,3622,-3534]]},{"type":"Polygon","id":29021,"arcs":[[-3476,3623,3624,3625,-3529,-3433]]},{"type":"Polygon","id":49007,"arcs":[[-2997,-2990,3626,3627,-3165]]},{"type":"Polygon","id":49039,"arcs":[[-3628,3628,3629,3630,-3482,-3166]]},{"type":"Polygon","id":39129,"arcs":[[-3557,3631,3632,3633,-3442,-3425]]},{"type":"Polygon","id":6021,"arcs":[[-3416,3634,3635,-3492,-3238]]},{"type":"Polygon","id":17139,"arcs":[[-3596,3636,3637,-3460,-3344]]},{"type":"Polygon","id":18041,"arcs":[[3638,3639,3640,-3453,-3486]]},{"type":"Polygon","id":18139,"arcs":[[-3641,3641,3642,3643,-3552,-3454]]},{"type":"Polygon","id":17171,"arcs":[[3644,-3611,-3599]]},{"type":"Polygon","id":29025,"arcs":[[-3540,3645,3646,3647,-3474,-3430]]},{"type":"MultiPolygon","id":34033,"arcs":[[[3648,3649,3650,3615,3651,-3589]]]},{"type":"Polygon","id":6091,"arcs":[[-2721,-2309,3652,3653,-3240]]},{"type":"Polygon","id":39115,"arcs":[[-3548,3654,3655,-3560,-3408]]},{"type":"Polygon","id":29049,"arcs":[[-3648,3656,3657,3658,-3624,-3475]]},{"type":"Polygon","id":8005,"arcs":[[-3251,3659,3660,-3582,-3586,-3520]]},{"type":"Polygon","id":32019,"arcs":[[3661,3662,3663,3664,3665,-2304,-3513]]},{"type":"Polygon","id":34001,"arcs":[[3666,3667,3668,-3587,-3531,-3397]]},{"type":"Polygon","id":18161,"arcs":[[-3580,3669,3670,-3639,-3485]]},{"type":"Polygon","id":24043,"arcs":[[-3333,3671,3672,3673,3674,3675,3676,-3410]]},{"type":"Polygon","id":24001,"arcs":[[-3677,3677,3678,3679,3680,-3335,-3321]]},{"type":"Polygon","id":24023,"arcs":[[-3681,3681,3682,3683,-3420,-3336]]},{"type":"Polygon","id":24015,"arcs":[[-3621,3684,3685,3686,-3324,-3373]]},{"type":"Polygon","id":54061,"arcs":[[-3422,3687,3688,3689,3690,-3480]]},{"type":"Polygon","id":54077,"arcs":[[-3684,3691,3692,3693,3694,-3688,-3421]]},{"type":"Polygon","id":24025,"arcs":[[-3687,3695,3696,-3374]]},{"type":"Polygon","id":54103,"arcs":[[-3481,-3691,3697,3698,3699,3700,-3601,-3477]]},{"type":"Polygon","id":24005,"arcs":[[-3697,3701,3702,3703,3704,3705,-3375]]},{"type":"Polygon","id":24013,"arcs":[[-3706,3706,3707,-3456,-3376]]},{"type":"Polygon","id":24021,"arcs":[[-3708,3708,3709,-3672,-3332,-3457]]},{"type":"Polygon","id":39047,"arcs":[[-3634,3710,3711,3712,-3608,-3443]]},{"type":"Polygon","id":49015,"arcs":[[-2989,3713,3714,3715,-3629,-3627]]},{"type":"Polygon","id":29041,"arcs":[[-3468,3716,3717,3718,3719,-3538,-3472]]},{"type":"Polygon","id":18145,"arcs":[[-3644,3720,3721,3722,-3563,-3553]]},{"type":"Polygon","id":54065,"arcs":[[3723,3724,3725,-3678,-3676]]},{"type":"Polygon","id":29173,"arcs":[[-3615,3726,3727,3728,-3550]]},{"type":"Polygon","id":17029,"arcs":[[-3593,3729,3730,3731,-3637,-3595]]},{"type":"Polygon","id":29137,"arcs":[[-3551,-3729,3732,3733,-3542]]},{"type":"Polygon","id":39073,"arcs":[[3734,3735,3736,-3632,-3556,-3562]]},{"type":"Polygon","id":20029,"arcs":[[-3508,3737,3738,3739,-3497,-3504]]},{"type":"Polygon","id":20085,"arcs":[[3740,3741,3742,3743,-3527,-3525]]},{"type":"Polygon","id":20005,"arcs":[[-3626,3744,3745,3746,-3741,-3524,-3530]]},{"type":"Polygon","id":17173,"arcs":[[-3638,-3732,3747,3748,3749,3750,-3622,-3461]]},{"type":"Polygon","id":54057,"arcs":[[3751,3752,-3682,-3680]]},{"type":"Polygon","id":39167,"arcs":[[-3603,3753,3754,3755,3756,-3655,-3547]]},{"type":"Polygon","id":54049,"arcs":[[-3690,3757,3758,-3698]]},{"type":"Polygon","id":18081,"arcs":[[-3723,3759,3760,3761,-3564]]},{"type":"Polygon","id":6115,"arcs":[[-3654,3762,3763,3764,-3413,-3241]]},{"type":"Polygon","id":18109,"arcs":[[-3762,3765,3766,3767,-3604,-3573,-3565]]},{"type":"Polygon","id":32029,"arcs":[[-2305,-3666]]},{"type":"Polygon","id":54003,"arcs":[[-3675,3768,3769,-3724]]},{"type":"Polygon","id":29033,"arcs":[[-3720,3770,3771,3772,-3646,-3539]]},{"type":"Polygon","id":29175,"arcs":[[-3734,3773,3774,3775,-3717,-3467]]},{"type":"Polygon","id":18167,"arcs":[[3776,3777,3778,-3591,-3418,-3545]]},{"type":"Polygon","id":18021,"arcs":[[-3606,3779,3780,3781,-3777,-3544]]},{"type":"Polygon","id":54095,"arcs":[[3782,3783,3784,-3754,-3602,-3701]]},{"type":"Polygon","id":29163,"arcs":[[3785,3786,3787,-3727,-3614,3788]]},{"type":"Polygon","id":39017,"arcs":[[3789,3790,3791,-3670,-3579,-3577]]},{"type":"Polygon","id":39165,"arcs":[[-3610,3792,3793,3794,-3790,-3576]]},{"type":"Polygon","id":6033,"arcs":[[3795,3796,3797,3798,-3493,-3636]]},{"type":"Polygon","id":8063,"arcs":[[-3489,3799,3800,3801,3802,-3249,-3247]]},{"type":"Polygon","id":34011,"arcs":[[-3649,-3588,-3669,3803,3804]]},{"type":"Polygon","id":20163,"arcs":[[3805,3806,3807,-3516,-3501]]},{"type":"Polygon","id":39027,"arcs":[[3808,3809,-3793,-3609,-3713,3810]]},{"type":"Polygon","id":20181,"arcs":[[3811,3812,3813,-3800,-3488]]},{"type":"Polygon","id":20193,"arcs":[[3814,3815,3816,-3812,-3491]]},{"type":"Polygon","id":20141,"arcs":[[3817,3818,3819,-3806,-3500]]},{"type":"Polygon","id":20179,"arcs":[[3820,3821,-3815,-3510]]},{"type":"Polygon","id":20027,"arcs":[[3822,3823,3824,3825,-3738,-3507]]},{"type":"Polygon","id":20123,"arcs":[[-3740,3826,3827,-3818,-3498]]},{"type":"Polygon","id":20065,"arcs":[[-3808,3828,-3821,-3515]]},{"type":"Polygon","id":20161,"arcs":[[3829,3830,3831,-3823,-3506,-3519]]},{"type":"Polygon","id":8035,"arcs":[[3832,3833,3834,-3583,-3661]]},{"type":"Polygon","id":8039,"arcs":[[3835,3836,-3833,-3660]]},{"type":"Polygon","id":20149,"arcs":[[-3528,-3744,3837,3838,-3830,-3518]]},{"type":"Polygon","id":8073,"arcs":[[-3803,3839,3840,3841,3842,-3836,-3250]]},{"type":"Polygon","id":8093,"arcs":[[-3584,3843,3844,3845,3846,-3571,-3607]]},{"type":"Polygon","id":39009,"arcs":[[-3757,3847,3848,3849,-3735,-3561,-3656]]},{"type":"Polygon","id":49027,"arcs":[[-3631,3850,3851,3852,-3436,-3483]]},{"type":"Polygon","id":54027,"arcs":[[-3726,3853,3854,-3752,-3679]]},{"type":"Polygon","id":29165,"arcs":[[-3625,-3659,3855,3856,3857,-3745]]},{"type":"Polygon","id":18047,"arcs":[[-3671,-3792,3858,3859,3860,-3642,-3640]]},{"type":"Polygon","id":29177,"arcs":[[-3773,3861,3862,3863,-3657,-3647]]},{"type":"Polygon","id":17135,"arcs":[[-3623,-3751,3864,3865,3866,3867,-3535]]},{"type":"Polygon","id":17117,"arcs":[[-3868,3868,3869,3870,-3597,-3536]]},{"type":"Polygon","id":6057,"arcs":[[-2308,3871,-3763,-3653]]},{"type":"Polygon","id":17061,"arcs":[[-3598,-3871,3872,3873,-3612,-3645]]},{"type":"Polygon","id":39141,"arcs":[[-3737,3874,3875,3876,3877,-3711,-3633]]},{"type":"Polygon","id":54037,"arcs":[[3878,3879,-3769,-3674]]},{"type":"Polygon","id":49019,"arcs":[[-3451,3880,3881,-3714,-2988]]},{"type":"Polygon","id":17023,"arcs":[[-3779,3882,3883,3884,-3730,-3592]]},{"type":"Polygon","id":54073,"arcs":[[3885,3886,-3755,-3785]]},{"type":"Polygon","id":18119,"arcs":[[-3768,3887,3888,-3780,-3605]]},{"type":"Polygon","id":54033,"arcs":[[3889,3890,3891,3892,3893,-3699,-3759]]},{"type":"Polygon","id":51069,"arcs":[[3894,3895,3896,3897,-3854,-3725,-3770],[3898]]},{"type":"Polygon","id":29047,"arcs":[[-3658,-3864,3899,3900,-3856]]},{"type":"Polygon","id":18031,"arcs":[[-3861,3901,3902,3903,-3721,-3643]]},{"type":"Polygon","id":54091,"arcs":[[3904,-3890,-3758,-3689,-3695]]},{"type":"Polygon","id":54017,"arcs":[[-3894,3905,3906,3907,-3783,-3700]]},{"type":"Polygon","id":20087,"arcs":[[3908,3909,3910,-3742,-3747]]},{"type":"Polygon","id":20103,"arcs":[[-3858,3911,3912,3913,-3909,-3746]]},{"type":"Polygon","id":6011,"arcs":[[-3415,3914,3915,-3796,-3635]]},{"type":"Polygon","id":29195,"arcs":[[-3719,3916,3917,3918,3919,-3771]]},{"type":"Polygon","id":54107,"arcs":[[-3887,3920,3921,3922,3923,-3848,-3756]]},{"type":"Polygon","id":17013,"arcs":[[-3874,3924,3925,3926,-3789,-3613]]},{"type":"Polygon","id":39163,"arcs":[[-3850,3927,3928,3929,-3875,-3736]]},{"type":"Polygon","id":54085,"arcs":[[-3908,3930,3931,3932,-3921,-3886,-3784]]},{"type":"Polygon","id":24029,"arcs":[[-3620,3933,3934,3935,-3685]]},{"type":"Polygon","id":8065,"arcs":[[-3572,-3847,3936,3937,-3568]]},{"type":"Polygon","id":17035,"arcs":[[-3885,3938,3939,-3748,-3731]]},{"type":"Polygon","id":39071,"arcs":[[-3878,3940,3941,3942,-3811,-3712]]},{"type":"MultiPolygon","id":24510,"arcs":[[[3943,3944,-3703]]]},{"type":"Polygon","id":24027,"arcs":[[-3705,3945,3946,3947,-3707]]},{"type":"Polygon","id":8077,"arcs":[[3948,3949,3950,3951,-3881,-3450]]},{"type":"Polygon","id":8097,"arcs":[[-3938,3952,3953,-3949,-3449,-3569]]},{"type":"Polygon","id":10001,"arcs":[[3954,3955,3956,-3934,-3619,3957]]},{"type":"Polygon","id":18105,"arcs":[[3958,3959,3960,3961,-3888,-3767]]},{"type":"Polygon","id":18005,"arcs":[[-3904,3962,3963,3964,-3760,-3722]]},{"type":"Polygon","id":29007,"arcs":[[-3728,-3788,3965,3966,3967,-3774,-3733]]},{"type":"Polygon","id":24031,"arcs":[[3968,3969,3970,3971,-3709,-3948]]},{"type":"Polygon","id":18013,"arcs":[[-3965,3972,-3959,-3766,-3761]]},{"type":"Polygon","id":29089,"arcs":[[3973,-3917,-3718,-3776,3974]]},{"type":"Polygon","id":54023,"arcs":[[3975,3976,3977,3978,-3692,-3683,-3753]]},{"type":"Polygon","id":34009,"arcs":[[3979,-3804,-3668]]},{"type":"Polygon","id":51107,"arcs":[[-3972,3980,3981,3982,3983,-3879,-3673,-3710]]},{"type":"Polygon","id":6061,"arcs":[[-2307,3984,3985,3986,3987,3988,-3764,-3872]]},{"type":"Polygon","id":39061,"arcs":[[-3795,3989,3990,3991,3992,3993,-3791]]},{"type":"Polygon","id":18137,"arcs":[[3994,3995,3996,3997,3998,-3902,-3860]]},{"type":"Polygon","id":18029,"arcs":[[-3859,-3994,3999,4000,-3995]]},{"type":"Polygon","id":20143,"arcs":[[-3826,4001,4002,4003,-3827,-3739]]},{"type":"Polygon","id":6101,"arcs":[[-3765,-3989,4004,4005,-3915,-3414]]},{"type":"Polygon","id":54001,"arcs":[[4006,4007,4008,-3891,-3905,-3694]]},{"type":"Polygon","id":29107,"arcs":[[4009,4010,4011,-3862,-3772,-3920]]},{"type":"Polygon","id":54093,"arcs":[[4012,-4007,-3693,-3979]]},{"type":"Polygon","id":39025,"arcs":[[4013,4014,4015,-3990,-3794,-3810,4016]]},{"type":"Polygon","id":51043,"arcs":[[-3984,4017,4018,-3895,-3880]]},{"type":"Polygon","id":17083,"arcs":[[-3870,4019,4020,-3925,-3873]]},{"type":"MultiPolygon","id":24035,"arcs":[[[-3957,4021,4022,4023,-3935]]]},{"type":"Polygon","id":18153,"arcs":[[-3782,4024,4025,4026,-3883,-3778]]},{"type":"Polygon","id":8051,"arcs":[[-3954,4027,4028,4029,4030,4031,4032,-3950]]},{"type":"Polygon","id":39015,"arcs":[[4033,4034,4035,-4017,-3809,-3943]]},{"type":"Polygon","id":29019,"arcs":[[-3968,4036,4037,4038,4039,-3975,-3775]]},{"type":"Polygon","id":32510,"arcs":[[4040,-3985,-2306,-3665]]},{"type":"Polygon","id":54031,"arcs":[[-3898,4041,4042,4043,-3976,-3855]]},{"type":"Polygon","id":24003,"arcs":[[4044,4045,-3946,-3704,-3945,4046]]},{"type":"Polygon","id":29095,"arcs":[[-3863,-4012,4047,4048,4049,4050,-3900]]},{"type":"Polygon","id":29113,"arcs":[[-3927,4051,4052,4053,-3786]]},{"type":"Polygon","id":20061,"arcs":[[4054,4055,4056,-3824,-3832]]},{"type":"Polygon","id":8029,"arcs":[[-4033,4057,-3951]]},{"type":"Polygon","id":20105,"arcs":[[-4004,4058,4059,4060,-3819,-3828]]},{"type":"Polygon","id":20177,"arcs":[[-3911,4061,4062,4063,-3838,-3743]]},{"type":"Polygon","id":17051,"arcs":[[-3750,4064,4065,4066,4067,4068,-3865]]},{"type":"Polygon","id":17049,"arcs":[[-3940,4069,4070,-4065,-3749]]},{"type":"Polygon","id":20197,"arcs":[[-4064,4071,4072,4073,-4055,-3831,-3839]]},{"type":"Polygon","id":39079,"arcs":[[4074,4075,4076,4077,-3876,-3930]]},{"type":"Polygon","id":39105,"arcs":[[4078,4079,-3928,-3849,-3924,4080]]},{"type":"Polygon","id":51840,"arcs":[[3898]]},{"type":"Polygon","id":20209,"arcs":[[-3857,-3901,-4051,4081,-3912]]},{"type":"Polygon","id":39131,"arcs":[[4082,4083,-3941,-3877,-4078]]},{"type":"Polygon","id":18079,"arcs":[[4084,4085,4086,-3963,-3903,-3999]]},{"type":"Polygon","id":54105,"arcs":[[4087,4088,4089,-3922,-3933]]},{"type":"Polygon","id":17033,"arcs":[[-4027,4090,4091,4092,4093,-3884]]},{"type":"Polygon","id":17079,"arcs":[[-4094,4094,4095,-4070,-3939]]},{"type":"Polygon","id":18055,"arcs":[[-3889,-3962,4096,4097,4098,4099,-4025,-3781]]},{"type":"Polygon","id":54041,"arcs":[[4100,4101,4102,4103,-3906,-3893]]},{"type":"Polygon","id":32023,"arcs":[[-2880,-3438,4104,4105,4106,4107,4108,-3511,-2882]]},{"type":"Polygon","id":29139,"arcs":[[-3787,-4054,4109,4110,4111,-3966]]},{"type":"Polygon","id":21015,"arcs":[[4112,4113,4114,4115,4116,-4000,-3993]]},{"type":"Polygon","id":24011,"arcs":[[4117,4118,4119,4120,-4022,-3956]]},{"type":"Polygon","id":20109,"arcs":[[4121,4122,4123,4124,-3813,-3817]]},{"type":"Polygon","id":20199,"arcs":[[-4125,4125,4126,4127,-3801,-3814]]},{"type":"Polygon","id":20051,"arcs":[[4128,4129,4130,-3807]]},{"type":"Polygon","id":20063,"arcs":[[-3822,4131,4132,4133,4134,-4122,-3816]]},{"type":"Polygon","id":20041,"arcs":[[-4057,4135,4136,4137,-4002,-3825]]},{"type":"Polygon","id":20167,"arcs":[[-4061,4138,4139,-4129,-3820]]},{"type":"Polygon","id":20195,"arcs":[[-4131,4140,-4132,-3829]]},{"type":"Polygon","id":24033,"arcs":[[-4046,4141,4142,4143,4144,4145,-3969,-3947]]},{"type":"Polygon","id":8119,"arcs":[[4146,4147,-3844,-3835]]},{"type":"Polygon","id":8041,"arcs":[[-3837,-3843,4148,4149,-4147,-3834]]},{"type":"Polygon","id":21037,"arcs":[[-4016,4150,4151,-3991]]},{"type":"Polygon","id":54083,"arcs":[[-3978,4152,4153,4154,4155,-4008,-4013]]},{"type":"Polygon","id":32005,"arcs":[[-3664,4156,4157,4158,-3986,-4041]]},{"type":"Polygon","id":54097,"arcs":[[-4009,-4156,4159,-4101,-3892]]},{"type":"Polygon","id":54021,"arcs":[[-4104,4160,4161,-3931,-3907]]},{"type":"Polygon","id":51171,"arcs":[[4162,4163,4164,-4042,-3897]]},{"type":"Polygon","id":21117,"arcs":[[-4152,4165,4166,-4113,-3992]]},{"type":"Polygon","id":54035,"arcs":[[-4090,4167,4168,4169,4170,-4081,-3923]]},{"type":"Polygon","id":32021,"arcs":[[-4109,4171,4172,-3662,-3512]]},{"type":"Polygon","id":18071,"arcs":[[-4087,4173,4174,4175,-3960,-3973,-3964]]},{"type":"Polygon","id":20045,"arcs":[[-3914,4176,4177,4178,-4062,-3910]]},{"type":"Polygon","id":6017,"arcs":[[-4159,4179,4180,4181,-3987]]},{"type":"Polygon","id":29027,"arcs":[[-3967,-4112,4182,4183,-4037]]},{"type":"Polygon","id":29053,"arcs":[[-4040,4184,4185,4186,-3918,-3974]]},{"type":"MultiPolygon","id":51059,"arcs":[[[4187,4188,4189,4190,4191,4192,-3981,-3971],[4193]],[[4194]]]},{"type":"Polygon","id":8015,"arcs":[[-3846,4195,4196,-4028,-3953,-3937]]},{"type":"Polygon","id":20091,"arcs":[[-4050,4197,4198,-4177,-3913,-4082]]},{"type":"Polygon","id":39001,"arcs":[[4199,4200,-4034,-3942,-4084]]},{"type":"Polygon","id":49041,"arcs":[[-3716,4201,4202,4203,-3851,-3630]]},{"type":"Polygon","id":8017,"arcs":[[-4128,4204,4205,-3840,-3802]]},{"type":"Polygon","id":54013,"arcs":[[-4162,4206,4207,4208,-4088,-3932]]},{"type":"Polygon","id":51187,"arcs":[[4209,4210,4211,-4163,-3896,-4019]]},{"type":"Polygon","id":39053,"arcs":[[4212,4213,4214,-4075,-3929,-4080]]},{"type":"Polygon","id":18115,"arcs":[[4215,-3996,-4001,-4117]]},{"type":"Polygon","id":54053,"arcs":[[-4171,4216,4217,-4213,-4079]]},{"type":"Polygon","id":17005,"arcs":[[-4069,4218,4219,-3866]]},{"type":"Polygon","id":39145,"arcs":[[-4077,4220,4221,4222,-4200,-4083]]},{"type":"Polygon","id":51061,"arcs":[[4223,4224,4225,4226,-4210,-4018,-3983]]},{"type":"Polygon","id":17119,"arcs":[[-3869,-3867,-4220,4227,4228,4229,4230,4231,-4020]]},{"type":"Polygon","id":29219,"arcs":[[4232,4233,4234,-4110,-4053]]},{"type":"Polygon","id":11001,"arcs":[[4235,4236,-3970,-4146]]},{"type":"Polygon","id":18093,"arcs":[[-4176,4237,4238,4239,-4097,-3961]]},{"type":"Polygon","id":29183,"arcs":[[-4232,4240,4241,-4233,-4052,-3926,-4021]]},{"type":"Polygon","id":10005,"arcs":[[4242,4243,4244,4245,-4118,-3955]]},{"type":"Polygon","id":20169,"arcs":[[-4138,4246,4247,-4059,-4003]]},{"type":"Polygon","id":54071,"arcs":[[-4044,4248,4249,4250,4251,-4153,-3977]]},{"type":"Polygon","id":29159,"arcs":[[-4187,4252,4253,4254,4255,-4010,-3919]]},{"type":"Polygon","id":24041,"arcs":[[-4121,4256,4257,-4023]]},{"type":"Polygon","id":51153,"arcs":[[-4193,4258,4259,-4224,-3982],[4260,-4261,4261]]},{"type":"Polygon","id":54087,"arcs":[[-4209,4262,4263,-4168,-4089]]},{"type":"Polygon","id":29101,"arcs":[[-4256,4264,4265,-4048,-4011]]},{"type":"Polygon","id":51013,"arcs":[[4266,-4190,-4189,-4188,-4237,4267]]},{"type":"Polygon","id":6003,"arcs":[[4268,4269,4270,4271,-4180,-4158]]},{"type":"Polygon","id":18155,"arcs":[[-4116,4272,4273,4274,-3997,-4216]]},{"type":"Polygon","id":29135,"arcs":[[4275,4276,4277,-4185,-4039]]},{"type":"Polygon","id":6113,"arcs":[[-4006,4278,4279,4280,-3797,-3916]]},{"type":"Polygon","id":18077,"arcs":[[-4275,4281,4282,4283,4284,-4085,-3998]]},{"type":"Polygon","id":17025,"arcs":[[-4096,4285,4286,4287,-4066,-4071]]},{"type":"Polygon","id":18083,"arcs":[[4288,4289,4290,4291,4292,-4091,-4026,-4100]]},{"type":"Polygon","id":18101,"arcs":[[-4240,4293,4294,4295,-4098]]},{"type":"Polygon","id":18027,"arcs":[[4296,4297,-4289,-4099,-4296]]},{"type":"Polygon","id":54007,"arcs":[[-4103,4298,4299,4300,-4207,-4161]]},{"type":"Polygon","id":29189,"arcs":[[-4231,4301,4302,4303,4304,-4241]]},{"type":"Polygon","id":21191,"arcs":[[4305,4306,-4166,-4151,-4015,4307]]},{"type":"Polygon","id":20127,"arcs":[[-4074,4308,4309,4310,-4136,-4056]]},{"type":"Polygon","id":20053,"arcs":[[-4248,4311,4312,4313,-4139,-4060]]},{"type":"Polygon","id":20139,"arcs":[[-4179,4314,4315,4316,-4072,-4063]]},{"type":"Polygon","id":51600,"arcs":[[4193],[4194]]},{"type":"Polygon","id":6055,"arcs":[[4317,4318,4319,4320,-3798,-4281]]},{"type":"Polygon","id":51157,"arcs":[[4321,4322,4323,-4211,-4227]]},{"type":"Polygon","id":21077,"arcs":[[4324,4325,4326,-4273,-4115]]},{"type":"Polygon","id":6097,"arcs":[[-3799,-4321,4327,4328,4329,4330,-3494]]},{"type":"Polygon","id":17101,"arcs":[[4331,4332,-4092,-4293]]},{"type":"Polygon","id":51165,"arcs":[[-4165,4333,4334,4335,4336,-4249,-4043],[4337]]},{"type":"Polygon","id":17159,"arcs":[[-4093,-4333,4338,4339,4340,-4286,-4095]]},{"type":"Polygon","id":39087,"arcs":[[4341,4342,4343,4344,-4221,-4076,-4215]]},{"type":"Polygon","id":29037,"arcs":[[-4266,4345,4346,4347,-4198,-4049]]},{"type":"Polygon","id":51510,"arcs":[[4348,-4191,-4267]]},{"type":"Polygon","id":51139,"arcs":[[-4324,4349,4350,-4334,-4164,-4212]]},{"type":"Polygon","id":18143,"arcs":[[-4285,4351,4352,-4174,-4086]]},{"type":"Polygon","id":21023,"arcs":[[-4036,4353,4354,4355,-4308,-4014]]},{"type":"Polygon","id":17121,"arcs":[[-4288,4356,4357,4358,4359,-4067]]},{"type":"Polygon","id":21081,"arcs":[[-4167,-4307,4360,4361,4362,-4325,-4114]]},{"type":"Polygon","id":51685,"arcs":[[4260,-4261,4261]]},{"type":"Polygon","id":18175,"arcs":[[-4353,4363,4364,4365,4366,4367,-4238,-4175]]},{"type":"Polygon","id":29510,"arcs":[[-4302,-4230,4368]]},{"type":"Polygon","id":24009,"arcs":[[4369,-4142,-4045]]},{"type":"Polygon","id":21161,"arcs":[[4370,4371,4372,-4354,-4035]]},{"type":"Polygon","id":21041,"arcs":[[4373,4374,4375,-4282,-4274,-4327]]},{"type":"Polygon","id":21089,"arcs":[[-4345,4376,4377,4378,-4222]]},{"type":"Polygon","id":17027,"arcs":[[-4068,-4360,4379,4380,-4228,-4219]]},{"type":"Polygon","id":54075,"arcs":[[-4252,4381,4382,4383,4384,-4154]]},{"type":"Polygon","id":29051,"arcs":[[-4184,4385,4386,-4276,-4038]]},{"type":"Polygon","id":20111,"arcs":[[-4317,4387,4388,4389,-4309,-4073]]},{"type":"Polygon","id":20059,"arcs":[[4390,4391,4392,-4315,-4178]]},{"type":"Polygon","id":20121,"arcs":[[-4348,4393,4394,-4391,-4199]]},{"type":"Polygon","id":54101,"arcs":[[-4160,-4155,-4385,4395,4396,-4299,-4102]]},{"type":"Polygon","id":6067,"arcs":[[4397,4398,4399,4400,-4279,-4005,-3988,-4182]]},{"type":"Polygon","id":21223,"arcs":[[-4376,4401,4402,4403,-4283]]},{"type":"Polygon","id":21187,"arcs":[[-4363,4404,4405,4406,-4374,-4326]]},{"type":"Polygon","id":21135,"arcs":[[4407,4408,4409,-4371,-4201,-4223,-4379]]},{"type":"Polygon","id":29073,"arcs":[[-4235,4410,4411,4412,4413,4414,-4111]]},{"type":"Polygon","id":6051,"arcs":[[-3663,-4173,4415,4416,4417,4418,4419,-4269,-4157]]},{"type":"Polygon","id":29071,"arcs":[[-4242,-4305,4420,4421,4422,-4411,-4234]]},{"type":"Polygon","id":29151,"arcs":[[-4415,4423,4424,-4386,-4183]]},{"type":"Polygon","id":6005,"arcs":[[-4272,4425,4426,-4398,-4181]]},{"type":"Polygon","id":24019,"arcs":[[-4119,-4246,4427,4428]]},{"type":"Polygon","id":20171,"arcs":[[-4135,4429,4430,4431,-4123]]},{"type":"Polygon","id":20101,"arcs":[[4432,4433,-4430,-4134]]},{"type":"Polygon","id":20071,"arcs":[[4434,4435,4436,4437,-4205,-4127]]},{"type":"Polygon","id":20203,"arcs":[[-4432,4438,-4435,-4126,-4124]]},{"type":"Polygon","id":51047,"arcs":[[4439,4440,4441,4442,-4322,-4226]]},{"type":"Polygon","id":20135,"arcs":[[-4141,4443,4444,4445,-4433,-4133]]},{"type":"Polygon","id":29141,"arcs":[[-4278,4446,4447,4448,-4253,-4186]]},{"type":"Polygon","id":20009,"arcs":[[-4314,4449,4450,4451,4452,-4140]]},{"type":"Polygon","id":8043,"arcs":[[-4150,4453,4454,4455,-4196,-3845,-4148]]},{"type":"Polygon","id":20165,"arcs":[[-4453,4456,-4444,-4130]]},{"type":"Polygon","id":24017,"arcs":[[-4144,4457,4458,4459]]},{"type":"Polygon","id":18117,"arcs":[[-4368,4460,4461,-4294,-4239]]},{"type":"Polygon","id":54079,"arcs":[[4462,4463,-4217,-4170,4464]]},{"type":"Polygon","id":32017,"arcs":[[-3853,4465,4466,4467,4468,4469,-4105,-3437]]},{"type":"Polygon","id":8085,"arcs":[[-4032,4470,4471,4472,-3952,-4058]]},{"type":"Polygon","id":54015,"arcs":[[4473,4474,-4263,-4208,-4301]]},{"type":"Polygon","id":17163,"arcs":[[-4381,4475,4476,4477,-4369,-4229]]},{"type":"Polygon","id":51113,"arcs":[[-4443,4478,4479,-4350,-4323]]},{"type":"Polygon","id":54039,"arcs":[[-4264,-4475,4480,4481,4482,4483,-4465,-4169]]},{"type":"Polygon","id":8061,"arcs":[[-4438,4484,4485,4486,4487,-3841,-4206]]},{"type":"Polygon","id":20113,"arcs":[[4488,4489,4490,4491,-4312,-4247]]},{"type":"Polygon","id":20115,"arcs":[[-4311,4492,4493,4494,-4489,-4137]]},{"type":"Polygon","id":21201,"arcs":[[-4373,4495,4496,4497,-4355]]},{"type":"Polygon","id":17191,"arcs":[[-4341,4498,4499,4500,4501,-4357,-4287]]},{"type":"Polygon","id":18019,"arcs":[[-4404,4502,4503,4504,-4364,-4352,-4284]]},{"type":"Polygon","id":54011,"arcs":[[-4218,-4464,4505,4506,-4342,-4214]]},{"type":"Polygon","id":21103,"arcs":[[4507,4508,4509,-4402,-4375,-4407]]},{"type":"Polygon","id":51091,"arcs":[[4510,4511,-4382,-4251]]},{"type":"Polygon","id":51179,"arcs":[[4512,4513,4514,4515,4516,-4440,-4225,-4260]]},{"type":"Polygon","id":21097,"arcs":[[-4498,4517,4518,4519,-4361,-4306,-4356]]},{"type":"Polygon","id":49001,"arcs":[[-4204,4520,4521,4522,-4466,-3852]]},{"type":"Polygon","id":17047,"arcs":[[4523,4524,-4499,-4340]]},{"type":"Polygon","id":17185,"arcs":[[-4339,-4332,-4292,4525,-4524]]},{"type":"Polygon","id":29083,"arcs":[[-4255,4526,4527,4528,-4346,-4265]]},{"type":"Polygon","id":24045,"arcs":[[4529,4530,4531,-4428,-4245]]},{"type":"Polygon","id":54067,"arcs":[[-4397,4532,4533,-4474,-4300]]},{"type":"Polygon","id":18125,"arcs":[[4534,4535,4536,-4290,-4298]]},{"type":"MultiPolygon","id":6095,"arcs":[[[4537,-4319]],[[-4401,4538,-4318,-4280]]]},{"type":"Polygon","id":29015,"arcs":[[-4449,4539,4540,4541,-4527,-4254]]},{"type":"Polygon","id":18051,"arcs":[[4542,4543,4544,4545,-4526,-4291,-4537]]},{"type":"Polygon","id":18037,"arcs":[[-4462,4546,4547,4548,4549,-4535,-4297,-4295]]},{"type":"Polygon","id":21069,"arcs":[[4550,4551,4552,-4496,-4372,-4410]]},{"type":"Polygon","id":21185,"arcs":[[-4510,4553,4554,-4503,-4403]]},{"type":"Polygon","id":20017,"arcs":[[-4390,4555,4556,-4493,-4310]]},{"type":"Polygon","id":8101,"arcs":[[4557,4558,4559,4560,4561,-4454,-4149]]},{"type":"Polygon","id":8025,"arcs":[[-4488,4562,-4558,-3842]]},{"type":"Polygon","id":20159,"arcs":[[-4492,4563,4564,-4450,-4313]]},{"type":"Polygon","id":17133,"arcs":[[4565,4566,4567,-4303,-4478]]},{"type":"Polygon","id":17189,"arcs":[[-4359,4568,4569,4570,-4476,-4380]]},{"type":"Polygon","id":24037,"arcs":[[-4459,4571]]},{"type":"Polygon","id":6009,"arcs":[[4572,4573,4574,-4426,-4271]]},{"type":"Polygon","id":49031,"arcs":[[4575,4576,-4521,-4203]]},{"type":"Polygon","id":49055,"arcs":[[-3715,4577,4578,-4576,-4202]]},{"type":"Polygon","id":29099,"arcs":[[-4568,4579,4580,4581,-4421,-4304]]},{"type":"Polygon","id":21019,"arcs":[[4582,4583,-4377,-4344,4584]]},{"type":"Polygon","id":21043,"arcs":[[-4584,4585,4586,4587,-4408,-4378]]},{"type":"Polygon","id":49037,"arcs":[[-4473,4588,4589,4590,4591,4592,4593,4594,4595,-4578,-3882]]},{"type":"Polygon","id":21209,"arcs":[[4596,4597,4598,4599,-4405,-4362,-4520]]},{"type":"Polygon","id":51660,"arcs":[[4337]]},{"type":"Polygon","id":51079,"arcs":[[4600,4601,-4335,-4351,-4480]]},{"type":"Polygon","id":51015,"arcs":[[4602,4603,4604,4605,-4511,-4250,-4337],[4606],[4607]]},{"type":"Polygon","id":17081,"arcs":[[-4502,4608,4609,4610,-4569,-4358]]},{"type":"Polygon","id":29013,"arcs":[[-4529,4611,4612,4613,-4394,-4347]]},{"type":"Polygon","id":32009,"arcs":[[4614,-4416,-4172,-4108]]},{"type":"Polygon","id":21181,"arcs":[[-4553,4615,4616,-4518,-4497]]},{"type":"Polygon","id":8109,"arcs":[[-4456,4617,4618,4619,4620,4621,4622,-4029,-4197]]},{"type":"MultiPolygon","id":24047,"arcs":[[[4623,4624,4625,-4530,-4244,4626]]]},{"type":"Polygon","id":6109,"arcs":[[-4420,4627,4628,4629,-4573,-4270]]},{"type":"Polygon","id":20031,"arcs":[[-4393,4630,4631,4632,-4388,-4316]]},{"type":"Polygon","id":29131,"arcs":[[-4387,-4425,4633,4634,4635,-4447,-4277]]},{"type":"Polygon","id":18025,"arcs":[[4636,4637,4638,-4547,-4461,-4367]]},{"type":"Polygon","id":18061,"arcs":[[4639,4640,4641,4642,-4637,-4366]]},{"type":"Polygon","id":54099,"arcs":[[-4507,4643,4644,4645,4646,-4585,-4343]]},{"type":"Polygon","id":18043,"arcs":[[-4505,4647,-4640,-4365]]},{"type":"Polygon","id":51099,"arcs":[[4648,4649,4650,-4514,4651]]},{"type":"Polygon","id":21205,"arcs":[[-4588,4652,4653,4654,4655,-4551,-4409]]},{"type":"Polygon","id":51137,"arcs":[[4656,4657,4658,-4601,-4479,-4442]]},{"type":"Polygon","id":20003,"arcs":[[4659,4660,-4631,-4392]]},{"type":"Polygon","id":20107,"arcs":[[-4614,4661,4662,-4660,-4395]]},{"type":"Polygon","id":21111,"arcs":[[4663,4664,4665,-4642,-4641,-4648,-4504,-4555]]},{"type":"Polygon","id":51177,"arcs":[[-4517,-4516,-4515,4666,4667,4668,-4657,-4441]]},{"type":"Polygon","id":54043,"arcs":[[-4463,-4484,4669,4670,4671,-4644,-4506]]},{"type":"Polygon","id":21073,"arcs":[[-4406,-4600,4672,4673,4674,-4508]]},{"type":"Polygon","id":21017,"arcs":[[4675,4676,4677,-4597,-4519,-4617]]},{"type":"Polygon","id":21211,"arcs":[[4678,4679,-4664,-4554,-4509,-4675]]},{"type":"Polygon","id":20145,"arcs":[[-4452,4680,4681,4682,-4445,-4457]]},{"type":"Polygon","id":8091,"arcs":[[-4031,4683,4684,4685,-4471]]},{"type":"Polygon","id":6041,"arcs":[[-4329,4686,-4330]]},{"type":"Polygon","id":21011,"arcs":[[-4656,4687,4688,-4616,-4552]]},{"type":"Polygon","id":6077,"arcs":[[-4427,-4575,4689,4690,4691,4692,-4399]]},{"type":"Polygon","id":29125,"arcs":[[-4414,4693,4694,-4634,-4424]]},{"type":"MultiPolygon","id":24039,"arcs":[[[-4696,4695,4696]],[[-4531,-4626,4697]]]},{"type":"Polygon","id":51003,"arcs":[[-4659,4698,4699,4700,4701,-4603,-4336,-4602],[4702]]},{"type":"Polygon","id":51193,"arcs":[[4703,4704,4705,-4649,4706]]},{"type":"Polygon","id":29029,"arcs":[[-4636,4707,4708,4709,4710,-4540,-4448]]},{"type":"Polygon","id":21127,"arcs":[[-4647,4711,4712,4713,4714,-4586,-4583]]},{"type":"Polygon","id":51017,"arcs":[[-4512,-4606,4715,4716,4717,-4383]]},{"type":"Polygon","id":8099,"arcs":[[-4437,4718,4719,4720,4721,-4485]]},{"type":"Polygon","id":54025,"arcs":[[-4718,4722,4723,4724,4725,-4533,-4396,-4384]]},{"type":"Polygon","id":21063,"arcs":[[-4715,4726,-4653,-4587]]},{"type":"Polygon","id":8027,"arcs":[[-4562,4727,-4618,-4455]]},{"type":"Polygon","id":8011,"arcs":[[-4722,4728,4729,4730,-4486]]},{"type":"Polygon","id":8089,"arcs":[[-4731,4731,-4559,-4563,-4487]]},{"type":"Polygon","id":18123,"arcs":[[4732,4733,4734,4735,-4548,-4639]]},{"type":"Polygon","id":54019,"arcs":[[-4534,-4726,4736,4737,-4481]]},{"type":"Polygon","id":20093,"arcs":[[4738,4739,4740,-4439]]},{"type":"Polygon","id":20055,"arcs":[[-4434,4741,4742,4743,-4739,-4431]]},{"type":"Polygon","id":20075,"arcs":[[-4741,4744,-4719,-4436]]},{"type":"Polygon","id":17193,"arcs":[[-4546,4745,4746,4747,-4500,-4525]]},{"type":"Polygon","id":20185,"arcs":[[-4565,4748,4749,4750,-4681,-4451]]},{"type":"Polygon","id":20083,"arcs":[[-4683,4751,4752,4753,-4742,-4446]]},{"type":"Polygon","id":17065,"arcs":[[-4748,4754,4755,-4609,-4501]]},{"type":"Polygon","id":51033,"arcs":[[-4651,4756,4757,4758,4759,-4667]]},{"type":"Polygon","id":18173,"arcs":[[-4550,4760,4761,4762,4763,-4543,-4536]]},{"type":"Polygon","id":18129,"arcs":[[4764,4765,4766,4767,-4746,-4545]]},{"type":"Polygon","id":54005,"arcs":[[4768,4769,4770,-4670,-4483]]},{"type":"Polygon","id":17157,"arcs":[[-4477,-4571,4771,4772,4773,4774,-4566]]},{"type":"Polygon","id":29185,"arcs":[[-4542,4775,4776,4777,4778,-4612,-4528]]},{"type":"Polygon","id":17145,"arcs":[[-4570,-4611,4779,4780,-4772]]},{"type":"Polygon","id":29055,"arcs":[[-4423,4781,4782,4783,4784,-4412]]},{"type":"Polygon","id":21067,"arcs":[[4785,4786,4787,4788,-4598,-4678]]},{"type":"Polygon","id":29221,"arcs":[[-4582,4789,4790,-4782,-4422]]},{"type":"Polygon","id":18147,"arcs":[[-4736,4791,4792,-4761,-4549]]},{"type":"Polygon","id":21163,"arcs":[[4793,4794,-4733,-4638,-4643]]},{"type":"Polygon","id":51790,"arcs":[[4606]]},{"type":"Polygon","id":21239,"arcs":[[-4789,4795,4796,4797,-4673,-4599]]},{"type":"Polygon","id":21173,"arcs":[[4798,4799,4800,-4676,-4689]]},{"type":"Polygon","id":20079,"arcs":[[4801,4802,4803,-4490,-4495]]},{"type":"Polygon","id":20073,"arcs":[[-4389,-4633,4804,4805,4806,4807,-4556]]},{"type":"Polygon","id":20155,"arcs":[[-4491,-4804,4808,4809,4810,-4749,-4564]]},{"type":"Polygon","id":18163,"arcs":[[-4764,4811,-4765,-4544]]},{"type":"Polygon","id":29161,"arcs":[[-4785,4812,4813,4814,-4694,-4413]]},{"type":"Polygon","id":49017,"arcs":[[-4596,4815,4816,-4522,-4577,-4579]]},{"type":"Polygon","id":51057,"arcs":[[4817,4818,-4757,-4650,4819]]},{"type":"Polygon","id":8113,"arcs":[[-4686,4820,4821,-4589,-4472]]},{"type":"Polygon","id":51109,"arcs":[[-4669,4822,4823,4824,-4699,-4658]]},{"type":"Polygon","id":49021,"arcs":[[-4817,4825,4826,-4467,-4523]]},{"type":"Polygon","id":21215,"arcs":[[4827,4828,4829,-4665,-4680]]},{"type":"Polygon","id":8053,"arcs":[[-4623,4830,4831,4832,4833,-4684,-4030]]},{"type":"Polygon","id":21005,"arcs":[[-4798,4834,4835,4836,-4828,-4679,-4674]]},{"type":"Polygon","id":17055,"arcs":[[-4756,4837,4838,4839,-4780,-4610]]},{"type":"Polygon","id":51159,"arcs":[[4840,4841,4842,-4705]]},{"type":"Polygon","id":29186,"arcs":[[-4775,4843,4844,-4580,-4567]]},{"type":"Polygon","id":21029,"arcs":[[4845,4846,-4666,-4830]]},{"type":"Polygon","id":21175,"arcs":[[-4714,4847,4848,4849,4850,-4654,-4727]]},{"type":"Polygon","id":21049,"arcs":[[4851,4852,4853,-4786,-4677,-4801]]},{"type":"Polygon","id":6013,"arcs":[[-4692,4854,4855]]},{"type":"Polygon","id":51820,"arcs":[[4607]]},{"type":"Polygon","id":20015,"arcs":[[-4557,-4808,4856,4857,4858,-4802,-4494]]},{"type":"Polygon","id":20047,"arcs":[[-4751,4859,4860,4861,-4752,-4682]]},{"type":"Polygon","id":51163,"arcs":[[4862,4863,4864,4865,-4716,-4605,4866],[4867],[4868]]},{"type":"Polygon","id":29187,"arcs":[[-4845,4869,4870,4871,-4790,-4581]]},{"type":"Polygon","id":6099,"arcs":[[4872,4873,-4690,-4574,-4630]]},{"type":"Polygon","id":29085,"arcs":[[-4711,4874,4875,-4776,-4541]]},{"type":"Polygon","id":51540,"arcs":[[4702]]},{"type":"Polygon","id":29217,"arcs":[[-4779,4876,4877,4878,4879,-4662,-4613]]},{"type":"Polygon","id":21165,"arcs":[[-4655,-4851,4880,4881,-4799,-4688]]},{"type":"Polygon","id":51125,"arcs":[[4882,4883,4884,-4867,-4604,-4702]]},{"type":"Polygon","id":21027,"arcs":[[4885,4886,4887,4888,-4734,-4795]]},{"type":"Polygon","id":20207,"arcs":[[4889,4890,-4805,-4632]]},{"type":"Polygon","id":20001,"arcs":[[4891,4892,-4890,-4661]]},{"type":"Polygon","id":20011,"arcs":[[-4880,4893,4894,-4892,-4663]]},{"type":"MultiPolygon","id":51001,"arcs":[[[4895,4895,4895]],[[4895,4895,4895]],[[4896,4897,-4624,4898]]]},{"type":"Polygon","id":54045,"arcs":[[-4771,4899,4900,-4671]]},{"type":"Polygon","id":51133,"arcs":[[4901,-4841,-4704,4902]]},{"type":"Polygon","id":29169,"arcs":[[-4695,-4815,4903,4904,-4708,-4635]]},{"type":"Polygon","id":8055,"arcs":[[-4561,4905,4906,4907,-4619,-4728]]},{"type":"Polygon","id":51085,"arcs":[[-4760,4908,4909,4910,4911,-4823,-4668]]},{"type":"Polygon","id":51065,"arcs":[[4912,4913,-4700,-4825,4914]]},{"type":"Polygon","id":21093,"arcs":[[4915,4916,4917,4918,-4886,-4794,-4642,4641,-4847]]},{"type":"Polygon","id":21113,"arcs":[[4919,4920,4921,-4796,-4788]]},{"type":"Polygon","id":21115,"arcs":[[4922,4923,4924,-4848,-4713]]},{"type":"Polygon","id":20069,"arcs":[[-4754,4925,4926,4927,-4743]]},{"type":"Polygon","id":21091,"arcs":[[-4889,4928,4929,-4792,-4735]]},{"type":"Polygon","id":54081,"arcs":[[-4482,-4738,4930,4931,4932,-4769]]},{"type":"Polygon","id":21179,"arcs":[[-4837,4933,4934,4935,-4916,-4846,-4829]]},{"type":"Polygon","id":54059,"arcs":[[4936,4937,4938,4939,4940,-4645,-4672,-4901]]},{"type":"Polygon","id":21101,"arcs":[[-4763,4941,4942,4943,4944,-4766,-4812]]},{"type":"Polygon","id":51097,"arcs":[[-4819,4945,4946,4947,4948,-4758]]},{"type":"Polygon","id":8111,"arcs":[[-4834,4949,4950,-4821,-4685]]},{"type":"Polygon","id":21167,"arcs":[[-4922,4951,4952,4953,-4835,-4797]]},{"type":"Polygon","id":8079,"arcs":[[4954,4955,-4831,-4622]]},{"type":"Polygon","id":21159,"arcs":[[-4646,-4941,4956,4957,-4923,-4712]]},{"type":"Polygon","id":51005,"arcs":[[-4866,4958,4959,4960,-4723,-4717],[4961]]},{"type":"Polygon","id":17077,"arcs":[[-4840,4962,4963,4964,-4773,-4781]]},{"type":"Polygon","id":21197,"arcs":[[-4882,4965,4966,-4852,-4800]]},{"type":"Polygon","id":21059,"arcs":[[4967,4968,-4942,-4762,-4793,-4930]]},{"type":"Polygon","id":21151,"arcs":[[4969,4970,4971,4972,-4920,-4787,-4854]]},{"type":"Polygon","id":17059,"arcs":[[-4768,4973,4974,4975,-4747]]},{"type":"Polygon","id":21229,"arcs":[[-4954,4976,4977,-4934,-4836]]},{"type":"Polygon","id":20057,"arcs":[[-4862,4978,4979,4980,-4926,-4753]]},{"type":"Polygon","id":20173,"arcs":[[-4859,4981,4982,-4809,-4803]]},{"type":"Polygon","id":17165,"arcs":[[-4976,4983,4984,-4838,-4755]]},{"type":"Polygon","id":51101,"arcs":[[-4949,4985,4986,-4909,-4759]]},{"type":"Polygon","id":29059,"arcs":[[-4710,4987,4988,4989,4990,-4875]]},{"type":"Polygon","id":6001,"arcs":[[-4691,4991,4992,-4855]]},{"type":"Polygon","id":51075,"arcs":[[4993,4994,4995,-4915,-4824,-4912]]},{"type":"Polygon","id":29157,"arcs":[[-4965,4996,4997,4998,4999,-4870,-4844,-4774]]},{"type":"Polygon","id":29039,"arcs":[[5000,5001,5002,-4877,-4778]]},{"type":"Polygon","id":6043,"arcs":[[5003,5004,-4629]]},{"type":"Polygon","id":21225,"arcs":[[5005,5006,5007,-4974,-4767,-4945]]},{"type":"Polygon","id":29105,"arcs":[[-4905,5008,5009,5010,-4988,-4709]]},{"type":"Polygon","id":8033,"arcs":[[-4951,5011,-4590,-4822]]},{"type":"Polygon","id":21153,"arcs":[[-4925,5012,5013,5014,5015,-4849]]},{"type":"Polygon","id":54089,"arcs":[[5016,-4931,-4737,-4725,5017]]},{"type":"Polygon","id":17199,"arcs":[[-4985,5018,5019,-4963,-4839]]},{"type":"Polygon","id":21237,"arcs":[[-5016,5020,5021,-4966,-4881,-4850]]},{"type":"Polygon","id":21065,"arcs":[[-4967,5022,5023,-4970,-4853]]},{"type":"Polygon","id":51103,"arcs":[[-4842,-4902,5024]]},{"type":"Polygon","id":8105,"arcs":[[-4621,5025,5026,-4955]]},{"type":"Polygon","id":6075,"arcs":[[5027,5028]]},{"type":"Polygon","id":29167,"arcs":[[-4876,-4991,5029,5030,-5001,-4777]]},{"type":"Polygon","id":21079,"arcs":[[-4973,5031,5032,5033,-4952,-4921]]},{"type":"Polygon","id":20151,"arcs":[[-4811,5034,5035,5036,-4860,-4750]]},{"type":"Polygon","id":51580,"arcs":[[4961]]},{"type":"Polygon","id":51009,"arcs":[[5037,5038,5039,5040,-4863,-4885]]},{"type":"Polygon","id":8071,"arcs":[[-4730,5041,5042,5043,5044,-4906,-4560,-4732]]},{"type":"Polygon","id":51023,"arcs":[[5045,5046,5047,-4959,-4865]]},{"type":"Polygon","id":51678,"arcs":[[4867]]},{"type":"Polygon","id":29065,"arcs":[[-4784,5048,5049,5050,5051,-4813]]},{"type":"Polygon","id":54109,"arcs":[[5052,5053,-4937,-4900,-4770,-4933]]},{"type":"Polygon","id":51029,"arcs":[[5054,5055,5056,-4883,-4701,-4914]]},{"type":"Polygon","id":6039,"arcs":[[-4419,5057,5058,-5004,-4628]]},{"type":"Polygon","id":51119,"arcs":[[5059,-4946,-4818,5060,5061]]},{"type":"Polygon","id":51530,"arcs":[[4868]]},{"type":"Polygon","id":21071,"arcs":[[-4958,5062,5063,-5013,-4924]]},{"type":"Polygon","id":8003,"arcs":[[-4908,5064,5065,-5026,-4620]]},{"type":"Polygon","id":51049,"arcs":[[-4996,5066,5067,5068,-5055,-4913]]},{"type":"Polygon","id":21195,"arcs":[[5069,5070,5071,5072,5073,-5063,-4957,-4940]]},{"type":"Polygon","id":29093,"arcs":[[-4872,5074,5075,5076,-5049,-4783,-4791]]},{"type":"Polygon","id":20187,"arcs":[[5077,5078,5079,-4720,-4745]]},{"type":"Polygon","id":21183,"arcs":[[-4888,5080,5081,5082,5083,-4968,-4929]]},{"type":"Polygon","id":20067,"arcs":[[5084,5085,-5078,-4740]]},{"type":"Polygon","id":20081,"arcs":[[-4928,5086,5087,-5085,-4744]]},{"type":"Polygon","id":20097,"arcs":[[-5037,5088,5089,5090,-4979,-4861]]},{"type":"Polygon","id":20095,"arcs":[[-4983,5091,5092,5093,-5035,-4810]]},{"type":"Polygon","id":20205,"arcs":[[5094,5095,5096,-4806,-4891]]},{"type":"Polygon","id":20133,"arcs":[[-4895,5097,5098,-5095,-4893]]},{"type":"Polygon","id":21123,"arcs":[[5099,5100,5101,5102,-4917,-4936]]},{"type":"Polygon","id":21155,"arcs":[[-4978,5103,5104,5105,-5100,-4935]]},{"type":"Polygon","id":54063,"arcs":[[-4961,5106,5107,-5018,-4724]]},{"type":"Polygon","id":21129,"arcs":[[-5022,5108,5109,5110,-5023]]},{"type":"Polygon","id":21021,"arcs":[[-5034,5111,5112,-5104,-4977,-4953]]},{"type":"Polygon","id":51087,"arcs":[[5113,5114,5115,5116,5117,5118,-4994,-4911]]},{"type":"Polygon","id":6081,"arcs":[[5119,5120,5121,5122,-5028]]},{"type":"Polygon","id":21025,"arcs":[[-5015,5123,5124,5125,-5109,-5021]]},{"type":"Polygon","id":51145,"arcs":[[5126,5127,-5067,-4995]]},{"type":"Polygon","id":21149,"arcs":[[-5084,5128,5129,5130,-4943,-4969]]},{"type":"Polygon","id":20037,"arcs":[[-4879,5131,5132,5133,5134,-5098,-4894]]},{"type":"Polygon","id":51045,"arcs":[[5135,5136,5137,-5107,-4960,-5048]]},{"type":"Polygon","id":8023,"arcs":[[-5045,5138,5139,5140,-5065,-4907]]},{"type":"Polygon","id":29011,"arcs":[[-5003,5141,5142,-5132,-4878]]},{"type":"Polygon","id":21233,"arcs":[[5143,5144,5145,-5006,-4944,-5131]]},{"type":"Polygon","id":29123,"arcs":[[-5000,5146,5147,-5075,-4871]]},{"type":"Polygon","id":8009,"arcs":[[-5080,5148,5149,5150,-5042,-4729,-4721]]},{"type":"Polygon","id":8083,"arcs":[[5151,5152,-4591,-5012]]},{"type":"Polygon","id":8067,"arcs":[[-4833,5153,5154,-5152,-4950]]},{"type":"Polygon","id":6047,"arcs":[[-5059,5155,5156,5157,-4873,-5005]]},{"type":"Polygon","id":21137,"arcs":[[5158,5159,5160,-5112,-5033]]},{"type":"Polygon","id":51127,"arcs":[[5161,5162,5163,-5114,-4910,-4987]]},{"type":"Polygon","id":21085,"arcs":[[-4919,5164,5165,5166,-5081,-4887]]},{"type":"Polygon","id":51019,"arcs":[[5167,5168,5169,5170,5171,-5046,-4864,-5041],[5172]]},{"type":"Polygon","id":49053,"arcs":[[5173,5174,-4468,-4827]]},{"type":"Polygon","id":20049,"arcs":[[-5097,5175,5176,5177,-4857,-4807]]},{"type":"Polygon","id":29179,"arcs":[[5178,5179,5180,-5050,-5077]]},{"type":"Polygon","id":29031,"arcs":[[5181,5182,5183,5184,5185,-4998]]},{"type":"Polygon","id":29215,"arcs":[[-4814,-5052,5186,5187,5188,5189,-5009,-4904]]},{"type":"Polygon","id":17069,"arcs":[[-4975,-5008,5190,5191,5192]]},{"type":"Polygon","id":17151,"arcs":[[-5193,5193,5194,5195,-4984]]},{"type":"Polygon","id":51760,"arcs":[[5196,-5118]]},{"type":"Polygon","id":17087,"arcs":[[-5196,5197,5198,5199,-5019]]},{"type":"Polygon","id":17181,"arcs":[[-5020,-5200,5200,5201,-5182,-4997,-4964]]},{"type":"Polygon","id":51073,"arcs":[[-5062,5202,5203,-4947,-5060]]},{"type":"Polygon","id":29017,"arcs":[[-5186,5204,5205,-5147,-4999]]},{"type":"Polygon","id":54055,"arcs":[[-5017,5206,5207,5208,5209,-5053,-4932]]},{"type":"Polygon","id":6019,"arcs":[[5210,5211,5212,5213,5214,-5156,-5058,-4418]]},{"type":"Polygon","id":29057,"arcs":[[-5031,5215,5216,5217,-5142,-5002]]},{"type":"Polygon","id":21109,"arcs":[[-5111,5218,5219,5220,5221,-4971,-5024]]},{"type":"Polygon","id":21107,"arcs":[[5222,5223,5224,-5144,-5130]]},{"type":"Polygon","id":51041,"arcs":[[-5197,-5117,5225,5226,5227,5228,5229,5230,5231,5232,-5127,-5119]]},{"type":"Polygon","id":51011,"arcs":[[5233,5234,5235,-5038,-4884,-5057]]},{"type":"Polygon","id":51131,"arcs":[[5236,-4897]]},{"type":"Polygon","id":21045,"arcs":[[-5161,5237,5238,5239,5240,-5105,-5113]]},{"type":"Polygon","id":54047,"arcs":[[-5210,5241,5242,-4938,-5054]]},{"type":"Polygon","id":21055,"arcs":[[-5146,5243,5244,5245,-5191,-5007]]},{"type":"Polygon","id":49025,"arcs":[[-4816,-4595,5246,5247,-5174,-4826]]},{"type":"Polygon","id":21189,"arcs":[[-5126,5248,5249,-5219,-5110]]},{"type":"Polygon","id":21203,"arcs":[[-5222,5250,5251,-5159,-5032,-4972]]},{"type":"Polygon","id":51027,"arcs":[[-5243,5252,5253,5254,-5070,-4939]]},{"type":"Polygon","id":51115,"arcs":[[-5203,5255]]},{"type":"Polygon","id":21119,"arcs":[[-5014,-5064,-5074,5256,5257,-5124]]},{"type":"Polygon","id":51007,"arcs":[[-5233,5258,5259,5260,-5068,-5128]]},{"type":"Polygon","id":51036,"arcs":[[5261,5262,-5115,-5164]]},{"type":"Polygon","id":29225,"arcs":[[-5011,5263,5264,5265,5266,-4989]]},{"type":"Polygon","id":6085,"arcs":[[-4874,-5158,5267,5268,-5121,5269,-4992]]},{"type":"Polygon","id":21217,"arcs":[[-5106,-5241,5270,5271,-5101]]},{"type":"Polygon","id":29229,"arcs":[[-5190,5272,-5264,-5010]]},{"type":"Polygon","id":51071,"arcs":[[-5138,5273,5274,5275,-5207,-5108]]},{"type":"Polygon","id":20035,"arcs":[[-5178,5276,5277,5278,5279,-4858]]},{"type":"Polygon","id":20191,"arcs":[[-5280,5280,5281,5282,-5092,-4982]]},{"type":"Polygon","id":20119,"arcs":[[-4981,5283,5284,5285,-5087,-4927]]},{"type":"Polygon","id":20025,"arcs":[[-5091,5286,5287,5288,-5284,-4980]]},{"type":"Polygon","id":20007,"arcs":[[-5094,5289,5290,5291,5292,-5089,-5036]]},{"type":"Polygon","id":21087,"arcs":[[-5272,5293,5294,5295,-5102]]},{"type":"Polygon","id":51680,"arcs":[[-5040,5296,-5168]]},{"type":"Polygon","id":6027,"arcs":[[-4615,-4107,5297,5298,5299,5300,-5211,-4417]]},{"type":"Polygon","id":51095,"arcs":[[5301,5302,5303,5304,-5262,-5163,5305,5306,5307]]},{"type":"Polygon","id":21099,"arcs":[[-5103,-5296,5308,5309,5310,-5165,-4918]]},{"type":"Polygon","id":21193,"arcs":[[-5258,5311,5312,5313,5314,-5249,-5125]]},{"type":"Polygon","id":51031,"arcs":[[-5236,5315,5316,5317,-5169,-5297,-5039]]},{"type":"Polygon","id":29077,"arcs":[[-4990,-5267,5318,5319,-5216,-5030]]},{"type":"Polygon","id":21139,"arcs":[[-5246,5320,5321,5322,5323,-5194,-5192]]},{"type":"Polygon","id":29203,"arcs":[[-5181,5324,5325,5326,-5187,-5051]]},{"type":"Polygon","id":8007,"arcs":[[-4956,5327,5328,5329,-5154,-4832]]},{"type":"Polygon","id":51161,"arcs":[[-5172,5330,5331,5332,-5136,-5047],[5333,5334]]},{"type":"Polygon","id":21177,"arcs":[[5335,5336,5337,5338,-5223,-5129,-5083]]},{"type":"Polygon","id":51147,"arcs":[[-5069,-5261,5339,5340,5341,-5234,-5056]]},{"type":"Polygon","id":8021,"arcs":[[-5027,-5066,-5141,5342,5343,-5328]]},{"type":"Polygon","id":21031,"arcs":[[5344,5345,-5336,-5082,-5167,5346]]},{"type":"Polygon","id":20129,"arcs":[[5347,5348,-5149,-5079]]},{"type":"Polygon","id":20189,"arcs":[[5349,5350,-5348,-5086]]},{"type":"Polygon","id":20175,"arcs":[[-5286,5351,5352,-5350,-5088]]},{"type":"Polygon","id":20125,"arcs":[[-5096,5353,5354,5355,5356,-5176]]},{"type":"Polygon","id":20077,"arcs":[[5357,5358,-5290,-5093,-5283]]},{"type":"Polygon","id":20033,"arcs":[[5359,5360,-5287,-5090,-5293]]},{"type":"Polygon","id":20099,"arcs":[[-5135,5361,5362,5363,-5354,-5099]]},{"type":"Polygon","id":21033,"arcs":[[-5225,5364,5365,5366,-5244,-5145]]},{"type":"Polygon","id":51199,"arcs":[[5367,5368,5369,5370,-5303,5371,-5307]]},{"type":"Polygon","id":29097,"arcs":[[-5218,5372,5373,5374,-5133,-5143]]},{"type":"Polygon","id":51121,"arcs":[[5375,5376,5377,5378,-5274,-5137,-5333]]},{"type":"Polygon","id":51515,"arcs":[[5172]]},{"type":"Polygon","id":21051,"arcs":[[-5315,5379,5380,5381,5382,-5220,-5250]]},{"type":"Polygon","id":21199,"arcs":[[5383,5384,5385,-5238,-5160,-5252,5386]]},{"type":"Polygon","id":20021,"arcs":[[-5375,5387,5388,5389,-5362,-5134]]},{"type":"Polygon","id":21061,"arcs":[[-5311,5390,5391,-5347,-5166]]},{"type":"Polygon","id":51770,"arcs":[[-5334,-5335]]},{"type":"Polygon","id":17127,"arcs":[[-5324,5392,5393,-5198,-5195]]},{"type":"Polygon","id":51185,"arcs":[[-5209,5394,5395,5396,-5253,-5242]]},{"type":"Polygon","id":17003,"arcs":[[5397,5398,5399,5400,-5183,-5202]]},{"type":"Polygon","id":21125,"arcs":[[-5383,5401,5402,5403,-5387,-5251,-5221]]},{"type":"Polygon","id":17153,"arcs":[[-5199,-5394,5404,-5398,-5201]]},{"type":"Polygon","id":21131,"arcs":[[5405,5406,-5380,-5314]]},{"type":"Polygon","id":51670,"arcs":[[5407,-5227,5408]]},{"type":"Polygon","id":29223,"arcs":[[-5206,5409,5410,5411,-5179,-5076,-5148]]},{"type":"Polygon","id":51149,"arcs":[[5412,5413,5414,5415,5416,-5228,-5408]]},{"type":"Polygon","id":51830,"arcs":[[-5308,-5372,-5302]]},{"type":"Polygon","id":21001,"arcs":[[-5240,5417,5418,5419,-5294,-5271]]},{"type":"Polygon","id":51051,"arcs":[[5420,5421,-5071,-5255]]},{"type":"Polygon","id":20019,"arcs":[[-5357,5422,5423,-5277,-5177]]},{"type":"Polygon","id":51021,"arcs":[[5424,5425,5426,-5395,-5208,-5276]]},{"type":"Polygon","id":51570,"arcs":[[5229,-5230,5427]]},{"type":"Polygon","id":51135,"arcs":[[5428,5429,-5340,-5260,5430]]},{"type":"Polygon","id":29109,"arcs":[[-5320,5431,5432,5433,5434,-5373,-5217]]},{"type":"Polygon","id":6087,"arcs":[[5435,5436,5437,-5122,-5269]]},{"type":"Polygon","id":51053,"arcs":[[5438,-5416,5439,5440,5441,-5431,-5259,-5232]]},{"type":"Polygon","id":21133,"arcs":[[-5073,5442,5443,-5312,-5257]]},{"type":"Polygon","id":29201,"arcs":[[5444,5445,5446,-5184,-5401]]},{"type":"Polygon","id":51037,"arcs":[[5447,5448,5449,-5316,-5235,-5342]]},{"type":"Polygon","id":51155,"arcs":[[-5378,-5377,5450,5451,5452,-5425,-5275,-5379]]},{"type":"Polygon","id":51730,"arcs":[[-5439,-5231,-5230,-5229,-5417]]},{"type":"Polygon","id":51181,"arcs":[[5453,5454,5455,-5414,5456]]},{"type":"Polygon","id":51067,"arcs":[[5457,5458,5459,5460,-5331,-5171]]},{"type":"Polygon","id":21007,"arcs":[[5461,5462,-5399,-5405,5463]]},{"type":"Polygon","id":21145,"arcs":[[-5323,5464,5465,-5464,-5393]]},{"type":"Polygon","id":51700,"arcs":[[5466,5467,-5304,-5371]]},{"type":"Polygon","id":51195,"arcs":[[5468,5469,5470,5471,-5443,-5072,-5422],[5472]]},{"type":"Polygon","id":21227,"arcs":[[-5392,5473,5474,5475,5476,-5345]]},{"type":"Polygon","id":21207,"arcs":[[-5386,5477,5478,5479,-5418,-5239]]},{"type":"Polygon","id":21169,"arcs":[[-5420,5480,5481,5482,-5309,-5295]]},{"type":"Polygon","id":21143,"arcs":[[-5367,5483,5484,-5321,-5245]]},{"type":"Polygon","id":51735,"arcs":[[5485,-5369,5486]]},{"type":"Polygon","id":21009,"arcs":[[5487,5488,-5474,-5391,-5310,-5483]]},{"type":"Polygon","id":21047,"arcs":[[-5339,5489,5490,5491,5492,-5365,-5224]]},{"type":"Polygon","id":51093,"arcs":[[5493,5494,5495,-5454,5496]]},{"type":"Polygon","id":51167,"arcs":[[5497,5498,5499,-5469,-5421,-5254,-5397]]},{"type":"Polygon","id":51143,"arcs":[[5500,5501,5502,5503,5504,5505,-5458,-5170,-5318]]},{"type":"Polygon","id":51063,"arcs":[[-5461,5506,5507,-5451,-5376,-5332]]},{"type":"Polygon","id":29207,"arcs":[[-5185,-5447,5508,5509,5510,-5410,-5205]]},{"type":"Polygon","id":51111,"arcs":[[-5430,5511,5512,-5448,-5341]]},{"type":"Polygon","id":51650,"arcs":[[-5467,-5370,-5486,5513]]},{"type":"Polygon","id":51183,"arcs":[[5514,5515,5516,-5440,-5415,-5456]]},{"type":"Polygon","id":29035,"arcs":[[-5412,5517,5518,5519,-5325,-5180]]},{"type":"Polygon","id":29043,"arcs":[[-5266,5520,5521,5522,-5432,-5319]]},{"type":"Polygon","id":51197,"arcs":[[5523,5524,5525,-5426,-5453]]},{"type":"Polygon","id":21141,"arcs":[[5526,5527,5528,-5337,-5346,-5477]]},{"type":"Polygon","id":21219,"arcs":[[-5529,5529,5530,-5490,-5338]]},{"type":"Polygon","id":29067,"arcs":[[-5273,-5189,5531,5532,5533,-5521,-5265]]},{"type":"Polygon","id":21157,"arcs":[[-5485,5534,5535,5536,-5465,-5322]]},{"type":"Polygon","id":29133,"arcs":[[-5463,5537,5538,5539,5540,-5445,-5400]]},{"type":"Polygon","id":51083,"arcs":[[-5450,5541,5542,5543,5544,-5501,-5317]]},{"type":"Polygon","id":29091,"arcs":[[-5327,5545,5546,5547,-5532,-5188]]},{"type":"Polygon","id":29145,"arcs":[[-5435,5548,5549,5550,-5388,-5374]]},{"type":"Polygon","id":21121,"arcs":[[5551,5552,-5402,-5382]]},{"type":"Polygon","id":51025,"arcs":[[-5442,5553,5554,5555,5556,-5512,-5429]]},{"type":"Polygon","id":21095,"arcs":[[-5444,-5472,5557,5558,-5406,-5313]]},{"type":"Polygon","id":51173,"arcs":[[-5427,-5526,5559,5560,-5498,-5396]]},{"type":"Polygon","id":4017,"arcs":[[5561,5562,5563,5564,-4593]]},{"type":"Polygon","id":4005,"arcs":[[-5565,5565,5566,5567,-5247,-4594]]},{"type":"Polygon","id":21221,"arcs":[[5568,5569,-5535,-5484,-5366,-5493]]},{"type":"Polygon","id":40105,"arcs":[[-5364,5570,5571,5572,-5355]]},{"type":"Polygon","id":40113,"arcs":[[5573,5574,5575,5576,5577,-5278,-5424]]},{"type":"Polygon","id":40151,"arcs":[[-5292,5578,5579,5580,5581,-5360]]},{"type":"Polygon","id":40035,"arcs":[[-5390,5582,5583,5584,5585,-5571,-5363]]},{"type":"Polygon","id":40147,"arcs":[[-5573,5586,5587,-5574,-5423,-5356]]},{"type":"Polygon","id":40053,"arcs":[[5588,5589,5590,-5358,-5282]]},{"type":"Polygon","id":40003,"arcs":[[-5359,-5591,5591,5592,-5579,-5291]]},{"type":"Polygon","id":40071,"arcs":[[-5578,5593,-5589,-5281,-5279]]},{"type":"Polygon","id":40115,"arcs":[[-5551,5594,5595,-5583,-5389]]},{"type":"Polygon","id":40059,"arcs":[[-5361,-5582,5596,5597,5598,-5288]]},{"type":"Polygon","id":35039,"arcs":[[-5344,5599,5600,5601,5602,5603,5604,-5329]]},{"type":"Polygon","id":35045,"arcs":[[-5605,5605,5606,5607,-5153,-5155,-5330]]},{"type":"Polygon","id":4001,"arcs":[[-5608,5608,5609,5610,5611,5612,-5562,-4592]]},{"type":"Polygon","id":35059,"arcs":[[5613,5614,5615,5616,5617,5618,-5043,-5151]]},{"type":"Polygon","id":40025,"arcs":[[5619,5620,5621,-5614,-5150]]},{"type":"Polygon","id":40139,"arcs":[[5622,5623,5624,5625,-5620,-5349,-5351,-5353]]},{"type":"Polygon","id":40007,"arcs":[[-5289,-5599,5626,5627,5628,-5623,-5352,-5285]]},{"type":"Polygon","id":51175,"arcs":[[-5495,5629,5630,5631,5632,5633,-5515,-5455,-5496]]},{"type":"Polygon","id":21231,"arcs":[[5634,5635,5636,5637,-5478,-5385]]},{"type":"Polygon","id":35055,"arcs":[[5638,5639,-5600,-5343,-5140]]},{"type":"Polygon","id":35007,"arcs":[[-5619,5640,5641,-5639,-5139,-5044]]},{"type":"Polygon","id":29209,"arcs":[[5642,5643,5644,-5433,-5523]]},{"type":"Polygon","id":6069,"arcs":[[-5157,-5215,5645,-5436,-5268]]},{"type":"Polygon","id":21235,"arcs":[[-5553,5646,5647,5648,5649,-5403]]},{"type":"MultiPolygon","id":51710,"arcs":[[[5650,5651]]]},{"type":"Polygon","id":21147,"arcs":[[-5650,5652,-5635,-5384,-5404]]},{"type":"Polygon","id":51720,"arcs":[[5472]]},{"type":"Polygon","id":21013,"arcs":[[-5407,-5559,5653,5654,-5647,-5552,-5381]]},{"type":"Polygon","id":21039,"arcs":[[5655,5656,-5538,-5462]]},{"type":"Polygon","id":21083,"arcs":[[-5537,5657,5658,5659,5660,-5656,-5466]]},{"type":"Polygon","id":21057,"arcs":[[5661,5662,5663,-5481,-5419,-5480]]},{"type":"Polygon","id":21003,"arcs":[[-5489,5664,5665,5666,5667,-5475]]},{"type":"Polygon","id":29009,"arcs":[[-5645,5668,5669,5670,-5549,-5434]]},{"type":"MultiPolygon","id":51810,"arcs":[[[5671,5672,5673,5674,5675,-5651,5676]]]},{"type":"Polygon","id":51035,"arcs":[[5677,5678,5679,5680,5681,-5524,-5452,-5508]]},{"type":"Polygon","id":51191,"arcs":[[5682,5683,5684,-5499,-5561,5685,5686,5687,5688]]},{"type":"Polygon","id":29023,"arcs":[[-5511,5689,5690,5691,-5518,-5411]]},{"type":"MultiPolygon","id":51740,"arcs":[[[5692,5693,5694]],[[5695,5696,5697]]]},{"type":"Polygon","id":51800,"arcs":[[-5697,5698,5699,5700,5701,-5630,-5494,5702]]},{"type":"Polygon","id":6053,"arcs":[[-5646,-5214,5703,5704,5705,-5437]]},{"type":"Polygon","id":51081,"arcs":[[-5517,-5516,-5634,5706,-5554,-5441]]},{"type":"Polygon","id":51105,"arcs":[[5707,5708,5709,-5654,-5558,-5471]]},{"type":"Polygon","id":51117,"arcs":[[-5557,5710,5711,5712,-5542,-5449,-5513]]},{"type":"Polygon","id":21053,"arcs":[[-5638,5713,5714,-5662,-5479]]},{"type":"Polygon","id":29149,"arcs":[[-5520,5715,5716,5717,-5546,-5326]]},{"type":"Polygon","id":51169,"arcs":[[-5500,-5685,5718,5719,5720,-5708,-5470]]},{"type":"Polygon","id":21213,"arcs":[[5721,5722,-5527,-5476,-5668]]},{"type":"Polygon","id":51141,"arcs":[[5723,5724,5725,-5678,-5507,-5460]]},{"type":"Polygon","id":29143,"arcs":[[-5541,5726,5727,5728,5729,5730,5731,-5509,-5446]]},{"type":"Polygon","id":51550,"arcs":[[5732,-5694,-5693,5733,-5676,5734,5735,-5700,-5699,-5696]]},{"type":"Polygon","id":51089,"arcs":[[5736,5737,-5724,-5459,-5506],[5738]]},{"type":"Polygon","id":32003,"arcs":[[5739,5740,-5298,-4106,-4470]]},{"type":"Polygon","id":21171,"arcs":[[-5664,5741,5742,-5665,-5488,-5482]]},{"type":"Polygon","id":29181,"arcs":[[-5692,5743,5744,-5716,-5519]]},{"type":"Polygon","id":29213,"arcs":[[-5534,5745,5746,5747,-5643,-5522]]},{"type":"Polygon","id":40153,"arcs":[[5748,5749,5750,-5597,-5581]]},{"type":"Polygon","id":51077,"arcs":[[-5682,-5681,-5680,5751,5752,5753,-5686,-5560,-5525]]},{"type":"Polygon","id":29153,"arcs":[[-5548,5754,5755,-5746,-5533]]},{"type":"Polygon","id":21105,"arcs":[[-5661,5756,-5539,-5657]]},{"type":"Polygon","id":29119,"arcs":[[-5671,5757,5758,-5595,-5550]]},{"type":"Polygon","id":21035,"arcs":[[-5570,5759,5760,-5658,-5536]]},{"type":"Polygon","id":6107,"arcs":[[5761,5762,-5212,-5301]]},{"type":"Polygon","id":51690,"arcs":[[5738]]},{"type":"Polygon","id":47161,"arcs":[[-5492,5763,5764,5765,-5760,-5569]]},{"type":"Polygon","id":40041,"arcs":[[-5759,5766,5767,5768,5769,-5584,-5596]]},{"type":"Polygon","id":47147,"arcs":[[5770,5771,5772,-5530,-5528,-5723,5773]]},{"type":"Polygon","id":47165,"arcs":[[5774,5775,5776,5777,-5774,-5722,-5667]]},{"type":"MultiPolygon","id":21075,"arcs":[[[5728,-5729,5778]],[[5779,5780,-5727,-5540,-5757]]]},{"type":"Polygon","id":47125,"arcs":[[-5773,5781,5782,5783,-5764,-5491,-5531]]},{"type":"Polygon","id":51590,"arcs":[[5784,-5503]]},{"type":"Polygon","id":47111,"arcs":[[5785,5786,5787,-5775,-5666,-5743,5788]]},{"type":"MultiPolygon","id":51520,"arcs":[[[-5689,5789,-5683]]]},{"type":"Polygon","id":29069,"arcs":[[-5732,5790,5791,5792,5793,5794,-5690,-5510]]},{"type":"Polygon","id":47137,"arcs":[[5795,5796,5797,5798,-5714,-5637]]},{"type":"Polygon","id":47027,"arcs":[[5799,5800,-5789,-5742,-5663,-5715,-5799]]},{"type":"Polygon","id":47163,"arcs":[[5801,5802,5803,-5719,-5684,-5790,-5688,5804]]},{"type":"Polygon","id":47091,"arcs":[[-5754,5805,5806,5807,5808,-5805,-5687]]},{"type":"Polygon","id":47151,"arcs":[[5809,5810,5811,5812,-5796,-5636,-5653]]},{"type":"Polygon","id":47025,"arcs":[[5813,5814,5815,5816,-5648,-5655,-5710]]},{"type":"Polygon","id":40103,"arcs":[[5817,5818,5819,5820,-5594,-5577]]},{"type":"Polygon","id":47067,"arcs":[[-5721,5821,5822,-5814,-5709]]},{"type":"Polygon","id":40131,"arcs":[[5823,5824,5825,-5587,-5572,-5586]]},{"type":"Polygon","id":47013,"arcs":[[5826,5827,-5810,-5649,-5817]]},{"type":"Polygon","id":47073,"arcs":[[-5804,5828,5829,5830,5831,-5822,-5720]]},{"type":"Polygon","id":40047,"arcs":[[-5821,5832,5833,5834,-5592,-5590]]},{"type":"Polygon","id":40045,"arcs":[[-5751,5835,5836,5837,5838,-5627,-5598]]},{"type":"Polygon","id":37009,"arcs":[[5839,5840,5841,-5806,-5753]]},{"type":"Polygon","id":47049,"arcs":[[-5813,5842,5843,5844,5845,-5797]]},{"type":"Polygon","id":37005,"arcs":[[5846,5847,-5840,-5752]]},{"type":"Polygon","id":40117,"arcs":[[5848,5849,-5818,-5576]]},{"type":"Polygon","id":37171,"arcs":[[-5726,5850,5851,5852,5853,-5847,-5679]]},{"type":"Polygon","id":37073,"arcs":[[5854,5855,5856,5857,5858,5859,5860,-5631,-5702]]},{"type":"MultiPolygon","id":37053,"arcs":[[[5861,-5735,-5675,5862]],[[-5672,5863,5864]]]},{"type":"Polygon","id":37169,"arcs":[[-5738,5865,5866,-5851,-5725]]},{"type":"Polygon","id":37029,"arcs":[[-5701,-5736,-5862,5867,5868,-5855]]},{"type":"Polygon","id":37185,"arcs":[[5869,5870,5871,5872,-5711,-5556]]},{"type":"Polygon","id":37131,"arcs":[[5873,5874,-5870,-5555,-5707,-5633,5875]]},{"type":"Polygon","id":37091,"arcs":[[-5861,-5860,5876,5877,-5876,-5632]]},{"type":"Polygon","id":37145,"arcs":[[5878,5879,5880,5881,-5544]]},{"type":"Polygon","id":37181,"arcs":[[-5873,5882,5883,-5712]]},{"type":"Polygon","id":37077,"arcs":[[5884,5885,5886,-5879,-5543,-5713,-5884]]},{"type":"Polygon","id":37157,"arcs":[[-5505,5887,5888,5889,-5866,-5737]]},{"type":"Polygon","id":37033,"arcs":[[-5882,5890,5891,-5888,-5504,-5785,-5502,-5545]]},{"type":"Polygon","id":47133,"arcs":[[-5846,5892,5893,-5800,-5798]]},{"type":"Polygon","id":47087,"arcs":[[-5894,5894,5895,-5786,-5801]]},{"type":"Polygon","id":37083,"arcs":[[5896,5897,5898,5899,-5871,-5875]]},{"type":"Polygon","id":40097,"arcs":[[-5770,5900,5901,-5824,-5585]]},{"type":"Polygon","id":47019,"arcs":[[5902,5903,5904,5905,-5802,-5809]]},{"type":"Polygon","id":37139,"arcs":[[5906,5907,-5856,-5869]]},{"type":"Polygon","id":47131,"arcs":[[5908,5909,5910,5911,-5780]]},{"type":"Polygon","id":40093,"arcs":[[-5593,-5835,5912,5913,5914,-5749,-5580]]},{"type":"Polygon","id":47183,"arcs":[[5915,5916,5917,-5909,-5660]]},{"type":"Polygon","id":47095,"arcs":[[5918,5919,-5730,-5729,-5728,-5781,-5912]]},{"type":"Polygon","id":48421,"arcs":[[5920,5921,-5621,-5626,5922]]},{"type":"Polygon","id":47079,"arcs":[[-5766,5923,5924,-5916,-5659,-5761]]},{"type":"Polygon","id":48195,"arcs":[[5925,-5923,-5625,5926]]},{"type":"Polygon","id":48111,"arcs":[[-5622,-5922,5927,-5615]]},{"type":"Polygon","id":48357,"arcs":[[5928,5929,-5927,-5624,-5629]]},{"type":"Polygon","id":48295,"arcs":[[5930,-5929,-5628,-5839]]},{"type":"Polygon","id":5007,"arcs":[[-5670,5931,5932,5933,5934,-5767,-5758]]},{"type":"Polygon","id":5049,"arcs":[[5935,5936,5937,-5547,-5718]]},{"type":"Polygon","id":5015,"arcs":[[-5644,5938,5939,5940,-5932,-5669]]},{"type":"Polygon","id":5135,"arcs":[[5941,5942,5943,5944,-5936]]},{"type":"Polygon","id":5121,"arcs":[[5945,5946,-5942,-5717,-5745,5947]]},{"type":"Polygon","id":5009,"arcs":[[5948,5949,-5939,-5748]]},{"type":"Polygon","id":5089,"arcs":[[5950,5951,-5949,-5747,-5756]]},{"type":"Polygon","id":5005,"arcs":[[-5938,5952,5953,5954,-5951,-5755]]},{"type":"Polygon","id":5021,"arcs":[[-5691,-5795,5955,-5948,-5744]]},{"type":"Polygon","id":6031,"arcs":[[5956,-5704,-5213,-5763]]},{"type":"Polygon","id":47169,"arcs":[[-5788,5957,5958,-5776]]},{"type":"Polygon","id":47021,"arcs":[[5959,5960,5961,-5782,-5772],[5962]]},{"type":"Polygon","id":47179,"arcs":[[-5906,5963,5964,-5829,-5803]]},{"type":"Polygon","id":37193,"arcs":[[-5854,5965,5966,5967,5968,5969,-5841,-5848]]},{"type":"Polygon","id":47173,"arcs":[[5970,5971,5972,-5827,-5816]]},{"type":"Polygon","id":47159,"arcs":[[-5896,5973,5974,5975,-5958,-5787]]},{"type":"Polygon","id":29155,"arcs":[[-5920,5976,5977,-5791,-5731]]},{"type":"Polygon","id":40143,"arcs":[[-5826,5978,5979,5980,-5575,-5588]]},{"type":"Polygon","id":47057,"arcs":[[-5823,-5832,5981,5982,5983,-5971,-5815]]},{"type":"Polygon","id":47037,"arcs":[[-5778,5984,5985,5986,-5960,-5771]]},{"type":"Polygon","id":47059,"arcs":[[5987,5988,5989,5990,-5830,-5965]]},{"type":"Polygon","id":37189,"arcs":[[-5970,5991,5992,-5807,-5842]]},{"type":"Polygon","id":37143,"arcs":[[5993,5994,-5857,-5908]]},{"type":"Polygon","id":47129,"arcs":[[-5812,5995,5996,5997,-5843]]},{"type":"Polygon","id":47083,"arcs":[[-5784,5998,5999,6000,-5765]]},{"type":"Polygon","id":47005,"arcs":[[-6001,6001,6002,6003,6004,-5924]]},{"type":"Polygon","id":47189,"arcs":[[-5959,-5976,6005,6006,6007,-5985,-5777]]},{"type":"Polygon","id":37041,"arcs":[[6008,-5858,-5995]]},{"type":"Polygon","id":47063,"arcs":[[-5991,6009,6010,-5982,-5831]]},{"type":"MultiPolygon","id":47043,"arcs":[[[5962]],[[-5962,6011,6012,6013,-5999,-5783]]]},{"type":"Polygon","id":5087,"arcs":[[6014,6015,6016,6017,-5933,-5941]]},{"type":"Polygon","id":47141,"arcs":[[-5845,6018,6019,6020,-5974,-5895,-5893]]},{"type":"Polygon","id":47001,"arcs":[[-5973,6021,6022,-5996,-5811,-5828]]},{"type":"Polygon","id":37197,"arcs":[[6023,6024,6025,-5966,-5853]]},{"type":"Polygon","id":37011,"arcs":[[6026,6027,6028,6029,-5903,-5808,-5993]]},{"type":"Polygon","id":37069,"arcs":[[6030,6031,-5885,-5883,-5872]]},{"type":"Polygon","id":5055,"arcs":[[-5794,6032,6033,-5946,-5956]]},{"type":"Polygon","id":35033,"arcs":[[-5642,6034,6035,6036,-5601,-5640]]},{"type":"Polygon","id":37067,"arcs":[[6037,6038,6039,-6024,-5852,-5867]]},{"type":"Polygon","id":5065,"arcs":[[-5945,6040,6041,-5953,-5937]]},{"type":"Polygon","id":47171,"arcs":[[6042,6043,6044,-5988,-5964,-5905]]},{"type":"Polygon","id":5075,"arcs":[[-6034,6045,6046,6047,-5943,-5947]]},{"type":"Polygon","id":37081,"arcs":[[6048,6049,6050,-6038,-5890]]},{"type":"Polygon","id":37001,"arcs":[[6051,6052,6053,-6049,-5889,-5892]]},{"type":"Polygon","id":40119,"arcs":[[6054,6055,6056,-5819,-5850]]},{"type":"Polygon","id":47085,"arcs":[[-6014,6057,6058,-6002,-6000]]},{"type":"Polygon","id":37015,"arcs":[[6059,6060,6061,-5897,-5874,-5878]]},{"type":"Polygon","id":37135,"arcs":[[-5881,6062,6063,-6052,-5891]]},{"type":"Polygon","id":37063,"arcs":[[-5887,6064,6065,-6063,-5880]]},{"type":"Polygon","id":5143,"arcs":[[6066,6067,-5934,-6018]]},{"type":"MultiPolygon","id":37055,"arcs":[[[6068,6069]]]},{"type":"Polygon","id":47053,"arcs":[[6070,6071,6072,6073,-5910,-5918]]},{"type":"MultiPolygon","id":35043,"arcs":[[[6074,6075,6076,6077,6078,-5606,-5604]]]},{"type":"Polygon","id":35021,"arcs":[[-5618,6079,6080,-6035,-5641]]},{"type":"Polygon","id":47045,"arcs":[[6081,6082,6083,-5977,-5919,-5911,-6074]]},{"type":"Polygon","id":37127,"arcs":[[-5900,6084,6085,6086,-6031]]},{"type":"Polygon","id":47089,"arcs":[[-6011,6087,6088,6089,-5983]]},{"type":"Polygon","id":47093,"arcs":[[-6090,6090,6091,6092,6093,-6022,-5972,-5984]]},{"type":"Polygon","id":47029,"arcs":[[6094,6095,6096,-6088,-6010,-5990]]},{"type":"Polygon","id":47035,"arcs":[[-5998,6097,6098,6099,6100,6101,-6019,-5844]]},{"type":"Polygon","id":40073,"arcs":[[6102,6103,6104,-5913,-5834]]},{"type":"Polygon","id":40083,"arcs":[[-5820,-6057,6105,6106,-6103,-5833]]},{"type":"Polygon","id":40011,"arcs":[[-6105,6107,6108,6109,6110,-5914]]},{"type":"Polygon","id":40043,"arcs":[[6111,6112,-5836,-5750,-5915,-6111]]},{"type":"Polygon","id":40037,"arcs":[[-5981,6113,6114,6115,-6055,-5849]]},{"type":"Polygon","id":40145,"arcs":[[-5902,6116,6117,-5979,-5825]]},{"type":"Polygon","id":40021,"arcs":[[-5769,6118,6119,6120,-6117,-5901]]},{"type":"Polygon","id":40001,"arcs":[[-5935,-6068,6121,6122,-6119,-5768]]},{"type":"Polygon","id":37121,"arcs":[[-6030,6123,6124,-6043,-5904]]},{"type":"Polygon","id":37065,"arcs":[[6125,6126,6127,-6085,-5899]]},{"type":"Polygon","id":47017,"arcs":[[-6005,6128,6129,6130,-6071,-5917,-5925]]},{"type":"Polygon","id":47041,"arcs":[[6131,6132,6133,-6006,-5975,-6021]]},{"type":"Polygon","id":5137,"arcs":[[6134,6135,6136,6137,-5954,-6042]]},{"type":"Polygon","id":5101,"arcs":[[-5950,6138,6139,6140,-6015,-5940]]},{"type":"Polygon","id":37027,"arcs":[[-5969,6141,6142,6143,-6027,-5992]]},{"type":"Polygon","id":5129,"arcs":[[-5955,-6138,6144,6145,-6139,-5952]]},{"type":"Polygon","id":47149,"arcs":[[6146,6147,6148,6149,6150,-5986,-6008]]},{"type":"Polygon","id":37199,"arcs":[[6151,6152,6153,-6044,-6125]]},{"type":"MultiPolygon","id":47185,"arcs":[[[6100,-6101,6154]],[[-6102,6155,6156,-6132,-6020]]]},{"type":"Polygon","id":37183,"arcs":[[-6032,6157,6158,6159,-6065,-5886]]},{"type":"Polygon","id":37117,"arcs":[[6160,6161,6162,-6126,-5898,-6062]]},{"type":"Polygon","id":37115,"arcs":[[-6045,-6154,6163,6164,-6095,-5989]]},{"type":"Polygon","id":37059,"arcs":[[6165,6166,6167,-6025,-6040]]},{"type":"Polygon","id":48393,"arcs":[[6168,6169,6170,6171,-5930]]},{"type":"Polygon","id":48211,"arcs":[[-5931,-5838,6172,6173,-6169]]},{"type":"Polygon","id":48233,"arcs":[[-5926,-6172,6174,6175]]},{"type":"Polygon","id":48205,"arcs":[[6176,6177,6178,-5616,-5928]]},{"type":"Polygon","id":37097,"arcs":[[-6026,-6168,6179,6180,6181,6182,6183,6184,-5967]]},{"type":"Polygon","id":48341,"arcs":[[-6176,6185,6186,6187,-6177,-5921]]},{"type":"Polygon","id":47187,"arcs":[[-6151,6188,6189,6190,-6012,-5961,-5987]]},{"type":"Polygon","id":37003,"arcs":[[6191,-6142,-5968,-6185]]},{"type":"Polygon","id":47145,"arcs":[[6192,6193,6194,-6098,-5997,-6023,-6094,6195]]},{"type":"Polygon","id":47155,"arcs":[[-6097,6196,6197,6198,-6091,-6089]]},{"type":"Polygon","id":37057,"arcs":[[-6051,6199,6200,6201,-6166,-6039]]},{"type":"Polygon","id":40129,"arcs":[[-6113,6202,6203,6204,-6173,-5837]]},{"type":"Polygon","id":35031,"arcs":[[-6079,6205,-5609,-5607]]},{"type":"Polygon","id":35049,"arcs":[[-6037,6206,6207,6208,-6076,6209,6210,6211,-5602]]},{"type":"Polygon","id":5093,"arcs":[[6212,6213,6214,6215,6216,6217,-5792,-5978,-6084]]},{"type":"Polygon","id":37023,"arcs":[[-6144,6218,6219,6220,6221,-6028]]},{"type":"Polygon","id":47033,"arcs":[[6222,6223,6224,-6082,-6073]]},{"type":"Polygon","id":5031,"arcs":[[-6218,6225,6226,-6046,-6033,-5793]]},{"type":"Polygon","id":37177,"arcs":[[6227,6228,6229]]},{"type":"Polygon","id":47081,"arcs":[[-6191,6230,6231,6232,-6058,-6013]]},{"type":"Polygon","id":37187,"arcs":[[-6229,6233,6234,-6161,-6061,6235]]},{"type":"Polygon","id":35028,"arcs":[[-5603,-6212,-6211,-6210,-6075]]},{"type":"Polygon","id":47015,"arcs":[[6236,6237,-6147,-6007,-6134]]},{"type":"Polygon","id":37111,"arcs":[[6238,6239,-6152,-6124,-6029,-6222]]},{"type":"Polygon","id":47097,"arcs":[[-6225,6240,6241,-6213,-6083]]},{"type":"Polygon","id":40081,"arcs":[[-6116,6242,6243,6244,-6106,-6056]]},{"type":"Polygon","id":5063,"arcs":[[-6048,6245,6246,6247,-6135,-6041,-5944]]},{"type":"Polygon","id":37151,"arcs":[[-6054,6248,6249,6250,-6200,-6050]]},{"type":"MultiPolygon","id":47105,"arcs":[[[-6196,-6093,6251,6252,6253,-6193]]]},{"type":"Polygon","id":5067,"arcs":[[-6047,-6227,6254,6255,6256,6257,-6246]]},{"type":"Polygon","id":47009,"arcs":[[6258,6259,6260,-6252,-6092,-6199]]},{"type":"Polygon","id":37037,"arcs":[[-6066,-6160,6261,6262,6263,-6249,-6053,-6064]]},{"type":"Polygon","id":35047,"arcs":[[-6081,6264,6265,6266,-6207,-6036]]},{"type":"Polygon","id":37195,"arcs":[[6267,6268,6269,6270,-6086,-6128]]},{"type":"Polygon","id":37159,"arcs":[[-6202,6271,6272,-6180,-6167]]},{"type":"Polygon","id":40111,"arcs":[[-5980,6273,6274,6275,-6114]]},{"type":"Polygon","id":40101,"arcs":[[-6121,6276,6277,6278,-6274,-6118]]},{"type":"Polygon","id":47177,"arcs":[[-6157,6279,6280,6281,6282,-6237,-6133]]},{"type":"Polygon","id":47119,"arcs":[[6283,6284,6285,6286,-6231,-6190]]},{"type":"Polygon","id":47039,"arcs":[[6287,6288,6289,6290,-6129,-6004]]},{"type":"Polygon","id":47135,"arcs":[[-6233,6291,6292,-6288,-6003,-6059]]},{"type":"Polygon","id":37147,"arcs":[[-6163,6293,6294,6295,6296,6297,-6268,-6127]]},{"type":"Polygon","id":37035,"arcs":[[-6184,6298,-6219,-6143,-6192]]},{"type":"Polygon","id":37021,"arcs":[[-6240,6299,6300,6301,-6164,-6153]]},{"type":"Polygon","id":47143,"arcs":[[6302,6303,6304,-6099,-6195]]},{"type":"Polygon","id":47175,"arcs":[[-6101,6305,6306,-6280,-6156]]},{"type":"Polygon","id":47077,"arcs":[[-6291,6307,6308,6309,-6130]]},{"type":"Polygon","id":47075,"arcs":[[6310,6311,6312,6313,-6241,-6224]]},{"type":"Polygon","id":37101,"arcs":[[-6271,6314,6315,6316,-6158,-6087]]},{"type":"Polygon","id":40039,"arcs":[[-6110,6317,6318,6319,-6203,-6112]]},{"type":"Polygon","id":6071,"arcs":[[6320,6321,6322,6323,6324,6325,-5299,-5741]]},{"type":"Polygon","id":6079,"arcs":[[6326,6327,6328,-5705]]},{"type":"Polygon","id":6029,"arcs":[[-6326,6329,6330,-6327,-5957,-5762,-5300]]},{"type":"Polygon","id":47113,"arcs":[[-6131,-6310,6331,6332,-6311,-6223,-6072]]},{"type":"Polygon","id":5141,"arcs":[[-6137,6333,6334,6335,6336,-6145]]},{"type":"Polygon","id":37087,"arcs":[[-6302,6337,6338,6339,-6197,-6096,-6165]]},{"type":"Polygon","id":5047,"arcs":[[6340,6341,6342,-6017,6343]]},{"type":"Polygon","id":47007,"arcs":[[-6305,6344,6345,-6306,-6100]]},{"type":"Polygon","id":5071,"arcs":[[-6016,-6141,6346,6347,-6344]]},{"type":"Polygon","id":5033,"arcs":[[6348,6349,-6122,-6067,-6343]]},{"type":"Polygon","id":47121,"arcs":[[6350,6351,6352,-6303,-6194]]},{"type":"Polygon","id":35037,"arcs":[[-6179,6353,6354,6355,6356,6357,6358,-6265,-6080,-5617]]},{"type":"MultiPolygon","id":37013,"arcs":[[[6359,6360,6361,-6295]],[[-6235,6362,6363,-6294,-6162]]]},{"type":"Polygon","id":5115,"arcs":[[-6146,-6337,6364,6365,6366,-6347,-6140]]},{"type":"Polygon","id":40017,"arcs":[[6367,6368,6369,6370,-6108,-6104]]},{"type":"Polygon","id":40109,"arcs":[[-6245,6371,6372,-6368,-6107]]},{"type":"Polygon","id":5023,"arcs":[[-6248,6373,6374,-6334,-6136]]},{"type":"Polygon","id":47117,"arcs":[[6375,6376,6377,-6284,-6189,-6150]]},{"type":"Polygon","id":5111,"arcs":[[-6217,6378,6379,-6255,-6226]]},{"type":"MultiPolygon","id":37095,"arcs":[[[-6228,6380,-6069,6381,-6363,-6234]]]},{"type":"Polygon","id":47031,"arcs":[[-6238,-6283,6382,6383,6384,6385,-6148]]},{"type":"Polygon","id":47003,"arcs":[[-6386,6386,6387,-6376,-6149]]},{"type":"Polygon","id":37173,"arcs":[[6388,6389,6390,-6259,-6198,-6340]]},{"type":"Polygon","id":47123,"arcs":[[-6261,6391,6392,6393,6394,6395,6396,-6253]]},{"type":"Polygon","id":47101,"arcs":[[-6287,6397,6398,-6292,-6232]]},{"type":"Polygon","id":37079,"arcs":[[6399,6400,-6269,-6298]]},{"type":"MultiPolygon","id":47167,"arcs":[[[6401,6402,-6215]],[[-6314,6403,6404,-6214,-6242]]]},{"type":"Polygon","id":47107,"arcs":[[-6254,-6397,-6396,-6395,6405,6406,-6351]]},{"type":"Polygon","id":40135,"arcs":[[-6123,-6350,6407,6408,6409,-6277,-6120]]},{"type":"Polygon","id":40107,"arcs":[[-6276,6410,6411,6412,6413,-6243,-6115]]},{"type":"Polygon","id":37105,"arcs":[[6414,6415,-6263]]},{"type":"Polygon","id":48359,"arcs":[[-6188,6416,6417,-6354,-6178]]},{"type":"Polygon","id":48065,"arcs":[[-6171,6418,6419,6420,-6186,-6175]]},{"type":"Polygon","id":48179,"arcs":[[6421,6422,-6419,-6170]]},{"type":"Polygon","id":48483,"arcs":[[-6205,6423,6424,-6422,-6174]]},{"type":"Polygon","id":48375,"arcs":[[-6421,6425,-6417,-6187]]},{"type":"Polygon","id":37161,"arcs":[[6426,6427,6428,6429,6430,-6300,-6239,-6221]]},{"type":"Polygon","id":37191,"arcs":[[-6401,6431,6432,6433,-6315,-6270]]},{"type":"Polygon","id":47023,"arcs":[[6434,6435,6436,-6332,-6309]]},{"type":"Polygon","id":37085,"arcs":[[-6317,6437,6438,6439,-6415,-6262,-6159]]},{"type":"Polygon","id":37045,"arcs":[[6440,6441,6442,6443,-6427,-6220]]},{"type":"Polygon","id":37109,"arcs":[[-6183,6444,6445,-6441,-6299]]},{"type":"Polygon","id":47153,"arcs":[[6446,6447,6448,-6281,-6307,-6346]]},{"type":"Polygon","id":40091,"arcs":[[6449,6450,6451,-6411,-6275,-6279]]},{"type":"Polygon","id":40015,"arcs":[[-6371,6452,6453,6454,6455,-6318,-6109]]},{"type":"Polygon","id":5145,"arcs":[[-6258,6456,6457,6458,6459,-6374,-6247]]},{"type":"Polygon","id":47061,"arcs":[[6460,6461,-6383,-6282,-6449]]},{"type":"Polygon","id":4025,"arcs":[[6462,6463,6464,6465,-5567]]},{"type":"Polygon","id":37099,"arcs":[[-6339,6466,6467,6468,-6389]]},{"type":"Polygon","id":37119,"arcs":[[6469,6470,6471,6472,6473,-6445,-6182]]},{"type":"Polygon","id":37125,"arcs":[[-6416,-6440,6474,6475,6476,6477,-6250,-6264]]},{"type":"Polygon","id":37123,"arcs":[[-6478,6478,6479,-6201,-6251]]},{"type":"Polygon","id":37025,"arcs":[[6480,6481,-6470,-6181,-6273]]},{"type":"Polygon","id":40009,"arcs":[[-6320,6482,6483,6484,6485,-6424,-6204]]},{"type":"Polygon","id":37167,"arcs":[[-6480,6486,6487,-6481,-6272]]},{"type":"Polygon","id":37089,"arcs":[[-6431,6488,6489,6490,-6301]]},{"type":"Polygon","id":47181,"arcs":[[6491,6492,6493,-6289,-6293,-6399]]},{"type":"Polygon","id":40133,"arcs":[[6494,6495,6496,-6413]]},{"type":"Polygon","id":37075,"arcs":[[6497,6498,-6392,-6260,-6391]]},{"type":"Polygon","id":40149,"arcs":[[-6456,6499,-6483,-6319]]},{"type":"Polygon","id":40125,"arcs":[[-6414,-6497,6500,6501,6502,-6372,-6244]]},{"type":"Polygon","id":5029,"arcs":[[6503,6504,6505,-6365,-6336]]},{"type":"Polygon","id":47099,"arcs":[[-6286,6506,6507,-6492,-6398]]},{"type":"Polygon","id":40061,"arcs":[[6508,6509,6510,-6450,-6278,-6410]]},{"type":"Polygon","id":47065,"arcs":[[-6353,6511,6512,6513,6514,6515,-6447,-6345,-6304]]},{"type":"Polygon","id":47055,"arcs":[[-6378,6516,6517,6518,-6507,-6285]]},{"type":"Polygon","id":5131,"arcs":[[-6342,6519,6520,6521,-6408,-6349]]},{"type":"Polygon","id":5037,"arcs":[[6522,6523,6524,-6256,-6380]]},{"type":"Polygon","id":5147,"arcs":[[-6525,6525,6526,6527,-6457,-6257]]},{"type":"Polygon","id":5035,"arcs":[[-6216,-6403,6528,6529,6530,6531,6532,-6523,-6379]]},{"type":"Polygon","id":47069,"arcs":[[-6333,-6437,6533,6534,6535,6536,6537,-6312]]},{"type":"Polygon","id":37107,"arcs":[[6538,6539,6540,-6432,-6400,-6297]]},{"type":"Polygon","id":5083,"arcs":[[-6348,-6367,6541,6542,-6520,-6341]]},{"type":"Polygon","id":37175,"arcs":[[6543,6544,6545,-6467,-6338,-6491]]},{"type":"Polygon","id":47071,"arcs":[[-6494,6546,6547,6548,6549,-6435,-6308,-6290]]},{"type":"Polygon","id":37071,"arcs":[[-6474,6550,-6442,-6446]]},{"type":"MultiPolygon","id":37049,"arcs":[[[6551,6552,6553]],[[-6362,6554,6555,-6556,6556,6557,-6539,-6296]]]},{"type":"Polygon","id":47127,"arcs":[[6558,6559,-6387,-6385]]},{"type":"Polygon","id":47157,"arcs":[[6560,6561,6562,-6529,-6402,-6405]]},{"type":"Polygon","id":37149,"arcs":[[6563,6564,-6489,-6430]]},{"type":"Polygon","id":47047,"arcs":[[-6538,6565,6566,-6561,-6404,-6313]]},{"type":"Polygon","id":47109,"arcs":[[-6550,6567,-6534,-6436]]},{"type":"Polygon","id":40079,"arcs":[[6568,6569,6570,6571,6572,-6509,-6409,-6522]]},{"type":"Polygon","id":40051,"arcs":[[6573,6574,6575,6576,-6453,-6370]]},{"type":"Polygon","id":40027,"arcs":[[-6503,6577,-6369,-6373]]},{"type":"Polygon","id":47103,"arcs":[[-6560,6578,6579,6580,-6517,-6377,-6388]]},{"type":"Polygon","id":5045,"arcs":[[-6375,-6460,6581,6582,6583,-6504,-6335]]},{"type":"Polygon","id":47051,"arcs":[[-6462,6584,6585,-6579,-6559,-6384]]},{"type":"Polygon","id":47011,"arcs":[[6586,6587,6588,-6512,-6352,-6407]]},{"type":"Polygon","id":35006,"arcs":[[-6078,6589,6590,6591,6592,-5610,-6206]]},{"type":"Polygon","id":40087,"arcs":[[-6502,6593,6594,-6574,-6578]]},{"type":"Polygon","id":37113,"arcs":[[6595,6596,6597,-6498,-6390,-6469]]},{"type":"Polygon","id":37137,"arcs":[[-6556,-6555,-6361,6598]]},{"type":"Polygon","id":47115,"arcs":[[-6516,6599,6600,-6585,-6461,-6448]]},{"type":"Polygon","id":37163,"arcs":[[-6434,6601,6602,6603,6604,-6438,-6316]]},{"type":"Polygon","id":5149,"arcs":[[-6506,6605,6606,6607,6608,-6542,-6366]]},{"type":"Polygon","id":40121,"arcs":[[-6511,6609,6610,6611,6612,6613,-6451]]},{"type":"Polygon","id":37039,"arcs":[[-6598,6614,6615,6616,6617,-6393,-6499]]},{"type":"Polygon","id":40063,"arcs":[[-6452,-6614,6618,6619,-6495,-6412]]},{"type":"Polygon","id":47139,"arcs":[[-6618,6620,6621,-6587,-6406,-6394]]},{"type":"Polygon","id":37051,"arcs":[[-6605,6622,6623,6624,-6475,-6439]]},{"type":"Polygon","id":37103,"arcs":[[-6553,6625,6626,6627,-6540,-6558]]},{"type":"Polygon","id":35001,"arcs":[[-6209,6628,6629,-6590,-6077]]},{"type":"Polygon","id":35019,"arcs":[[-6359,6630,6631,6632,-6266]]},{"type":"Polygon","id":45045,"arcs":[[-6565,6633,6634,6635,6636,-6544,-6490]]},{"type":"Polygon","id":37007,"arcs":[[6637,6638,6639,-6487]]},{"type":"Polygon","id":37093,"arcs":[[-6625,6640,6641,-6476]]},{"type":"Polygon","id":37179,"arcs":[[-6640,6642,6643,-6471,-6482,-6488]]},{"type":"Polygon","id":45083,"arcs":[[6644,6645,-6634,-6564,-6429,6646]]},{"type":"Polygon","id":37061,"arcs":[[-6541,-6628,6647,6648,-6602,-6433]]},{"type":"Polygon","id":48117,"arcs":[[6649,6650,6651,6652,-6355,-6418]]},{"type":"Polygon","id":45021,"arcs":[[6653,-6647,-6428,-6444,6654]]},{"type":"Polygon","id":48129,"arcs":[[6655,6656,6657,6658,-6423]]},{"type":"Polygon","id":48087,"arcs":[[-6486,6659,6660,6661,-6656,-6425]]},{"type":"Polygon","id":48381,"arcs":[[6662,6663,6664,-6650,-6426]]},{"type":"Polygon","id":37153,"arcs":[[-6477,6665,6666,-6638,-6479]]},{"type":"Polygon","id":48011,"arcs":[[-6659,6667,6668,-6663,-6420]]},{"type":"Polygon","id":45091,"arcs":[[6669,6670,6671,-6655,-6443,-6551,-6473]]},{"type":"Polygon","id":37043,"arcs":[[-6597,6672,6673,6674,-6615]]},{"type":"Polygon","id":5123,"arcs":[[-6533,6675,6676,-6526,-6524]]},{"type":"Polygon","id":40075,"arcs":[[-6455,6677,6678,6679,6680,-6500]]},{"type":"Polygon","id":37031,"arcs":[[6681,-6626,-6552,6682]]},{"type":"Polygon","id":40055,"arcs":[[-6681,6683,6684,-6484]]},{"type":"MultiPolygon","id":6083,"arcs":[[[6685,6686,-6328]]]},{"type":"Polygon","id":5105,"arcs":[[6687,6688,6689,-6606,-6505,-6584]]},{"type":"Polygon","id":5127,"arcs":[[-6609,6690,6691,-6569,-6521,-6543]]},{"type":"Polygon","id":5117,"arcs":[[-6528,6692,6693,6694,-6458]]},{"type":"Polygon","id":45077,"arcs":[[-6637,6695,6696,-6545]]},{"type":"Polygon","id":5085,"arcs":[[-6695,6697,6698,-6582,-6459]]},{"type":"Polygon","id":45057,"arcs":[[-6644,6699,6700,6701,6702,-6670,-6472]]},{"type":"Polygon","id":40077,"arcs":[[-6573,6703,-6610,-6510]]},{"type":"Polygon","id":45073,"arcs":[[6704,6705,6706,6707,6708,6709,-6468,-6546,-6697]]},{"type":"Polygon","id":35057,"arcs":[[-6633,6710,6711,6712,-6629,-6208,-6267]]},{"type":"Polygon","id":37165,"arcs":[[6713,6714,-6666,-6642]]},{"type":"Polygon","id":40057,"arcs":[[-6685,6715,6716,6717,-6660,-6485]]},{"type":"Polygon","id":5119,"arcs":[[-6699,6718,6719,6720,-6688,-6583]]},{"type":"Polygon","id":1077,"arcs":[[6721,6722,6723,-6547,-6493,-6508,-6519,6724]]},{"type":"Polygon","id":5095,"arcs":[[-6677,6725,6726,6727,-6693,-6527]]},{"type":"Polygon","id":13241,"arcs":[[6728,6729,-6673,-6596,-6710]]},{"type":"Polygon","id":1083,"arcs":[[-6581,6730,6731,6732,-6725,-6518]]},{"type":"Polygon","id":28003,"arcs":[[6733,6734,-6535,-6568,-6549,6735]]},{"type":"Polygon","id":28141,"arcs":[[6736,6737,6738,-6736,-6548,-6724,6739]]},{"type":"Polygon","id":28139,"arcs":[[6740,6741,6742,-6536,-6735]]},{"type":"Polygon","id":28033,"arcs":[[6743,6744,-6530,-6563,6745]]},{"type":"Polygon","id":28009,"arcs":[[6746,6747,-6566,-6537,-6743]]},{"type":"Polygon","id":28093,"arcs":[[6748,6749,6750,-6746,-6562,-6567,-6748]]},{"type":"Polygon","id":13281,"arcs":[[-6730,6751,6752,6753,-6674]]},{"type":"Polygon","id":1089,"arcs":[[6754,6755,6756,-6731,-6580]]},{"type":"Polygon","id":1071,"arcs":[[6757,6758,-6755,-6586,-6601,6759]]},{"type":"Polygon","id":13213,"arcs":[[6760,6761,6762,-6588,-6622,6763]]},{"type":"Polygon","id":13111,"arcs":[[-6617,6764,6765,6766,6767,-6764,-6621]]},{"type":"Polygon","id":13313,"arcs":[[6768,6769,6770,-6589,-6763]]},{"type":"Polygon","id":13047,"arcs":[[6771,-6513,-6771]]},{"type":"Polygon","id":13291,"arcs":[[-6675,-6754,6772,6773,-6765,-6616]]},{"type":"Polygon","id":37133,"arcs":[[-6682,6774,6775,-6648,-6627]]},{"type":"Polygon","id":13083,"arcs":[[-6600,-6515,6776,6777,-6760]]},{"type":"Polygon","id":13295,"arcs":[[-6770,6778,6779,6780,-6777,-6514,-6772]]},{"type":"Polygon","id":40123,"arcs":[[-6496,-6620,6781,6782,6783,6784,-6594,-6501]]},{"type":"Polygon","id":35061,"arcs":[[-6630,-6713,6785,-6591]]},{"type":"Polygon","id":37155,"arcs":[[6786,6787,6788,6789,-6714,-6641,-6624]]},{"type":"Polygon","id":35009,"arcs":[[-6653,6790,6791,6792,-6356]]},{"type":"Polygon","id":45087,"arcs":[[-6672,6793,6794,6795,6796,-6645,-6654]]},{"type":"Polygon","id":5077,"arcs":[[-6532,6797,6798,-6726,-6676]]},{"type":"Polygon","id":1033,"arcs":[[6799,6800,-6740,-6723]]},{"type":"MultiPolygon","id":6111,"arcs":[[[6801,-6686,-6331,6802]]]},{"type":"Polygon","id":28143,"arcs":[[-6531,-6745,6803,6804,6805,6806,6807,-6798]]},{"type":"Polygon","id":1049,"arcs":[[-6781,6808,6809,6810,6811,-6758,-6778]]},{"type":"Polygon","id":37017,"arcs":[[6812,6813,-6787,-6623,-6604]]},{"type":"Polygon","id":40065,"arcs":[[6814,6815,6816,-6716,-6684,-6680]]},{"type":"Polygon","id":5125,"arcs":[[-6721,6817,6818,6819,-6689]]},{"type":"Polygon","id":40031,"arcs":[[-6454,-6577,6820,6821,6822,-6678]]},{"type":"Polygon","id":40049,"arcs":[[-6785,6823,6824,6825,-6575,-6595]]},{"type":"Polygon","id":13123,"arcs":[[6826,6827,6828,-6761,-6768]]},{"type":"Polygon","id":13137,"arcs":[[-6709,6829,6830,6831,6832,-6752,-6729]]},{"type":"MultiPolygon","id":6037,"arcs":[[[-6325,6833,6834,-6803,-6330]]]},{"type":"Polygon","id":45023,"arcs":[[-6703,6835,-6794,-6671]]},{"type":"Polygon","id":45007,"arcs":[[6836,6837,6838,-6705,-6696,-6636]]},{"type":"Polygon","id":45025,"arcs":[[6839,6840,-6700,-6643,-6639,6841]]},{"type":"Polygon","id":45069,"arcs":[[-6790,6842,6843,6844,-6842,-6667,-6715]]},{"type":"Polygon","id":1079,"arcs":[[-6733,6845,6846,6847,6848,-6800,-6722]]},{"type":"Polygon","id":13311,"arcs":[[6849,6850,-6773,-6753,-6833]]},{"type":"Polygon","id":45059,"arcs":[[-6797,6851,6852,6853,-6635,-6646]]},{"type":"Polygon","id":35011,"arcs":[[6854,6855,6856,-6631,-6358]]},{"type":"Polygon","id":28137,"arcs":[[-6751,6857,-6804,-6744]]},{"type":"Polygon","id":5051,"arcs":[[-6820,6858,6859,-6607,-6690]]},{"type":"Polygon","id":40029,"arcs":[[-6613,6860,6861,-6782,-6619]]},{"type":"Polygon","id":28117,"arcs":[[-6739,6862,6863,6864,-6741,-6734]]},{"type":"Polygon","id":48437,"arcs":[[-6669,6865,6866,6867,6868,-6664]]},{"type":"Polygon","id":48045,"arcs":[[-6658,6869,6870,6871,-6866,-6668]]},{"type":"Polygon","id":48069,"arcs":[[-6869,6872,6873,6874,-6651,-6665]]},{"type":"Polygon","id":48191,"arcs":[[-6662,6875,6876,6877,-6870,-6657]]},{"type":"Polygon","id":48075,"arcs":[[-6718,6878,6879,-6876,-6661]]},{"type":"Polygon","id":5097,"arcs":[[-6860,6880,6881,6882,6883,-6691,-6608]]},{"type":"Polygon","id":48369,"arcs":[[-6875,6884,6885,-6791,-6652]]},{"type":"Polygon","id":13187,"arcs":[[-6851,6886,6887,-6766,-6774]]},{"type":"MultiPolygon","id":37141,"arcs":[[[6888,-6889,6889]],[[-6776,6890,6891,6892,6893,-6813,-6603,-6649]]]},{"type":"Polygon","id":5113,"arcs":[[6894,6895,6896,-6570,-6692,-6884]]},{"type":"Polygon","id":1103,"arcs":[[-6757,6897,6898,-6846,-6732]]},{"type":"Polygon","id":13257,"arcs":[[6899,6900,-6830,-6708]]},{"type":"Polygon","id":40137,"arcs":[[-6826,6901,6902,6903,-6821,-6576]]},{"type":"Polygon","id":40005,"arcs":[[6904,6905,6906,6907,-6861,-6612]]},{"type":"Polygon","id":40127,"arcs":[[-6572,6908,6909,-6905,-6611,-6704]]},{"type":"Polygon","id":5107,"arcs":[[-6808,6910,6911,6912,-6727,-6799]]},{"type":"Polygon","id":40099,"arcs":[[-6784,6913,6914,-6824]]},{"type":"Polygon","id":40141,"arcs":[[-6823,6915,6916,6917,-6815,-6679]]},{"type":"Polygon","id":13129,"arcs":[[-6829,6918,6919,6920,-6779,-6769,-6762]]},{"type":"Polygon","id":45033,"arcs":[[6921,6922,6923,-6843,-6789]]},{"type":"Polygon","id":13085,"arcs":[[-6888,6924,6925,6926,6927,-6827,-6767]]},{"type":"Polygon","id":45055,"arcs":[[6928,6929,6930,6931,-6701,-6841]]},{"type":"Polygon","id":35041,"arcs":[[-6793,6932,6933,6934,6935,-6855,-6357]]},{"type":"Polygon","id":28145,"arcs":[[-6865,6936,6937,6938,-6749,-6747,-6742]]},{"type":"Polygon","id":1095,"arcs":[[-6812,6939,6940,6941,-6898,-6756,-6759]]},{"type":"Polygon","id":13055,"arcs":[[6942,6943,-6809,-6780]]},{"type":"Polygon","id":13115,"arcs":[[-6921,6944,6945,6946,-6943]]},{"type":"Polygon","id":35053,"arcs":[[-6712,6947,6948,6949,-6592,-6786]]},{"type":"Polygon","id":35003,"arcs":[[-6950,6950,6951,6952,-5611,-6593]]},{"type":"Polygon","id":1059,"arcs":[[-6849,6953,6954,6955,-6737,-6801]]},{"type":"Polygon","id":48197,"arcs":[[-6817,6956,6957,6958,-6879,-6717]]},{"type":"Polygon","id":45039,"arcs":[[-6702,-6932,6959,6960,-6795,-6836]]},{"type":"Polygon","id":5001,"arcs":[[-6728,-6913,6961,6962,6963,-6694]]},{"type":"Polygon","id":13227,"arcs":[[-6928,6964,-6919,-6828]]},{"type":"Polygon","id":28071,"arcs":[[-6939,6965,6966,6967,6968,-6750]]},{"type":"Polygon","id":28107,"arcs":[[-6969,6969,6970,6971,-6805,-6858]]},{"type":"Polygon","id":13119,"arcs":[[6972,6973,6974,-6900,-6707]]},{"type":"Polygon","id":45031,"arcs":[[-6845,6975,6976,-6840]]},{"type":"Polygon","id":45071,"arcs":[[-6961,6977,6978,6979,6980,-6852,-6796]]},{"type":"Polygon","id":1019,"arcs":[[-6947,6981,6982,6983,6984,-6810,-6944]]},{"type":"Polygon","id":28027,"arcs":[[6985,6986,6987,-6911,-6807,6988]]},{"type":"Polygon","id":28119,"arcs":[[-6972,6989,-6989,-6806]]},{"type":"Polygon","id":13139,"arcs":[[-6832,6990,6991,6992,6993,-6925,-6887,-6850]]},{"type":"Polygon","id":28081,"arcs":[[6994,6995,6996,6997,-6937,-6864]]},{"type":"Polygon","id":40019,"arcs":[[-6915,6998,6999,7000,7001,-6902,-6825]]},{"type":"Polygon","id":40069,"arcs":[[-6783,-6862,-6908,7002,7003,-6999,-6914]]},{"type":"Polygon","id":40033,"arcs":[[-6904,7004,7005,7006,-6916,-6822]]},{"type":"Polygon","id":40089,"arcs":[[-6897,7007,7008,7009,7010,7011,-6909,-6571]]},{"type":"Polygon","id":5059,"arcs":[[-6819,7012,7013,7014,-6881,-6859]]},{"type":"Polygon","id":4007,"arcs":[[-5564,7015,7016,7017,-6463,-5566]]},{"type":"Polygon","id":13147,"arcs":[[-6839,7018,7019,-6973,-6706]]},{"type":"Polygon","id":5053,"arcs":[[-6720,7020,7021,7022,-7013,-6818]]},{"type":"Polygon","id":5069,"arcs":[[-6698,-6964,7023,7024,-7021,-6719]]},{"type":"Polygon","id":13011,"arcs":[[7025,7026,-6991,-6831,-6901,-6975]]},{"type":"Polygon","id":37047,"arcs":[[-6894,7027,7028,-6788,-6814]]},{"type":"Polygon","id":45001,"arcs":[[7029,7030,7031,-6837,-6854]]},{"type":"Polygon","id":28057,"arcs":[[-6738,-6956,7032,7033,-6995,-6863]]},{"type":"Polygon","id":48487,"arcs":[[-6918,7034,7035,7036,-6957,-6816]]},{"type":"Polygon","id":13015,"arcs":[[7037,7038,7039,-6945,-6920,7040]]},{"type":"Polygon","id":13057,"arcs":[[-6927,7041,7042,7043,-7041,-6965]]},{"type":"Polygon","id":45047,"arcs":[[-6981,7044,7045,7046,-7030,-6853]]},{"type":"MultiPolygon","id":37129,"arcs":[[[7047]],[[-6889,7048,7049,-6892]]]},{"type":"Polygon","id":28115,"arcs":[[-6998,7050,7051,-6966,-6938]]},{"type":"Polygon","id":45061,"arcs":[[7052,7053,-6929,-6977]]},{"type":"MultiPolygon","id":37019,"arcs":[[[7054,-7055,7055]],[[7047]],[[-7050,7056,7057,7058,-7028,-6893]]]},{"type":"Polygon","id":5061,"arcs":[[7059,7060,7061,-6895]]},{"type":"Polygon","id":5109,"arcs":[[7062,7063,7064,-7060,-6883]]},{"type":"Polygon","id":35027,"arcs":[[-6857,7065,7066,7067,-6948,-6711,-6632]]},{"type":"Polygon","id":5019,"arcs":[[-7015,7068,7069,7070,-7063,-6882]]},{"type":"Polygon","id":13117,"arcs":[[-6994,7071,7072,-7042,-6926]]},{"type":"Polygon","id":1093,"arcs":[[7073,7074,7075,7076,7077,-7033,-6955]]},{"type":"Polygon","id":4012,"arcs":[[-6465,7078,7079,7080,7081,-6322,7082]]},{"type":"Polygon","id":48345,"arcs":[[7083,7084,7085,-6871,-6878]]},{"type":"Polygon","id":48101,"arcs":[[-6880,-6959,7086,7087,-7084,-6877]]},{"type":"Polygon","id":1043,"arcs":[[-6942,7088,7089,7090,-6847,-6899]]},{"type":"Polygon","id":48153,"arcs":[[-7086,7091,7092,-6867,-6872]]},{"type":"Polygon","id":48189,"arcs":[[-6873,-6868,-7093,7093,7094]]},{"type":"Polygon","id":48279,"arcs":[[-7095,7095,7096,-6885,-6874]]},{"type":"Polygon","id":45041,"arcs":[[7097,7098,7099,7100,-7053,-6976,-6844,-6924]]},{"type":"Polygon","id":48017,"arcs":[[-7097,7101,-6933,-6792,-6886]]},{"type":"Polygon","id":1133,"arcs":[[-6848,-7091,7102,-7074,-6954]]},{"type":"MultiPolygon","id":45051,"arcs":[[[-7058,7057,7103]],[[-7029,-7059,7104,7105,7106,7107,-6922]]]},{"type":"Polygon","id":45067,"arcs":[[-7108,7108,7109,-7098,-6923]]},{"type":"Polygon","id":13157,"arcs":[[7110,7111,7112,-6992,-7027]]},{"type":"Polygon","id":40067,"arcs":[[-7002,7113,7114,7115,-7005,-6903]]},{"type":"Polygon","id":13105,"arcs":[[-7032,7116,7117,7118,7119,7120,-7019,-6838]]},{"type":"Polygon","id":13195,"arcs":[[-7121,7121,7122,-7111,-7026,-6974,-7020]]},{"type":"Polygon","id":45079,"arcs":[[7123,7124,7125,-6978,-6960,-6931]]},{"type":"Polygon","id":1009,"arcs":[[-6941,7126,7127,7128,7129,-7089]]},{"type":"Polygon","id":48155,"arcs":[[-6958,-7037,7130,7131,-7087]]},{"type":"Polygon","id":48485,"arcs":[[-7007,7132,7133,-7035,-6917]]},{"type":"Polygon","id":1055,"arcs":[[-6985,7134,7135,-7127,-6940,-6811]]},{"type":"Polygon","id":45063,"arcs":[[7136,7137,7138,7139,-6979,-7126]]},{"type":"Polygon","id":28161,"arcs":[[7140,7141,7142,-6970,-6968]]},{"type":"Polygon","id":5133,"arcs":[[7143,-7008,-6896,-7062]]},{"type":"Polygon","id":45081,"arcs":[[-7140,7144,7145,-7045,-6980]]},{"type":"Polygon","id":13121,"arcs":[[-7073,7146,7147,7148,7149,7150,7151,7152,7153,-7043]]},{"type":"Polygon","id":40095,"arcs":[[7154,7155,7156,-7000,-7004]]},{"type":"Polygon","id":5079,"arcs":[[-6963,7157,7158,7159,-7024]]},{"type":"Polygon","id":45085,"arcs":[[-7101,7160,7161,-7124,-6930,-7054]]},{"type":"Polygon","id":13135,"arcs":[[7162,7163,7164,7165,-7147,-7072,-6993]]},{"type":"Polygon","id":28135,"arcs":[[-7143,7166,7167,7168,-6986,-6990,-6971]]},{"type":"Polygon","id":28013,"arcs":[[-7052,7169,7170,7171,-7141,-6967]]},{"type":"Polygon","id":40013,"arcs":[[7172,7173,7174,7175,-7155,-7003,-6907]]},{"type":"Polygon","id":40023,"arcs":[[-7012,7176,7177,-7173,-6906,-6910]]},{"type":"Polygon","id":5039,"arcs":[[-7023,7178,7179,7180,-7069,-7014]]},{"type":"Polygon","id":48077,"arcs":[[-7116,7181,7182,7183,-7133,-7006]]},{"type":"Polygon","id":13013,"arcs":[[7184,7185,-7163,-7113]]},{"type":"Polygon","id":28011,"arcs":[[7186,7187,7188,7189,-6988]]},{"type":"Polygon","id":5041,"arcs":[[-7190,7190,7191,-7158,-6962,-6912]]},{"type":"Polygon","id":13233,"arcs":[[-7040,7192,7193,7194,-6982,-6946]]},{"type":"Polygon","id":28095,"arcs":[[-7034,-7078,7195,7196,7197,7198,-6996]]},{"type":"Polygon","id":35005,"arcs":[[-6936,7199,7200,7201,-7066,-6856]]},{"type":"Polygon","id":13067,"arcs":[[-7154,7202,7203,-7038,-7044]]},{"type":"Polygon","id":6065,"arcs":[[7204,7205,7206,-6323,-7082]]},{"type":"Polygon","id":13223,"arcs":[[-7204,7207,7208,7209,-7193,-7039]]},{"type":"Polygon","id":45065,"arcs":[[-7047,7210,7211,7212,-7117,-7031]]},{"type":"Polygon","id":28017,"arcs":[[-6997,-7199,7213,7214,-7170,-7051]]},{"type":"Polygon","id":40085,"arcs":[[-7157,7215,7216,-7114,-7001]]},{"type":"Polygon","id":5025,"arcs":[[-7160,7217,7218,7219,-7179,-7022,-7025]]},{"type":"Polygon","id":1075,"arcs":[[7220,7221,7222,-7196,-7077]]},{"type":"Polygon","id":13221,"arcs":[[-7120,7223,7224,7225,7226,7227,-7122]]},{"type":"Polygon","id":4013,"arcs":[[-7018,7228,7229,7230,-7079,-6464]]},{"type":"Polygon","id":13059,"arcs":[[-7228,7231,-7112,-7123]]},{"type":"Polygon","id":5057,"arcs":[[7232,7233,7234,7235,-7061,-7065]]},{"type":"Polygon","id":1127,"arcs":[[-7090,-7130,7236,7237,7238,-7075,-7103]]},{"type":"Polygon","id":13317,"arcs":[[7239,7240,7241,7242,-7224,-7119]]},{"type":"Polygon","id":48337,"arcs":[[-7217,7243,7244,7245,-7182,-7115]]},{"type":"Polygon","id":1115,"arcs":[[7246,7247,7248,7249,-7128,-7136]]},{"type":"Polygon","id":28133,"arcs":[[-7169,7250,7251,7252,-7187,-6987]]},{"type":"Polygon","id":13181,"arcs":[[-7213,7253,7254,-7240,-7118]]},{"type":"Polygon","id":45037,"arcs":[[7255,7256,7257,-7211,-7046,-7146]]},{"type":"Polygon","id":13089,"arcs":[[-7166,7258,7259,-7148]]},{"type":"Polygon","id":1015,"arcs":[[7260,-7247,-7135,-6984,7261]]},{"type":"Polygon","id":13219,"arcs":[[-7227,7262,7263,7264,-7185,-7232]]},{"type":"Polygon","id":1029,"arcs":[[-7195,7265,7266,7267,7268,7269,-7262,-6983]]},{"type":"Polygon","id":48387,"arcs":[[-7011,7270,7271,7272,7273,7274,7275,-7177]]},{"type":"Polygon","id":5099,"arcs":[[-7071,7276,7277,7278,-7233,-7064]]},{"type":"Polygon","id":48181,"arcs":[[-7176,7279,7280,7281,7282,-7156]]},{"type":"Polygon","id":48097,"arcs":[[-7283,7283,7284,-7244,-7216]]},{"type":"Polygon","id":5081,"arcs":[[-7236,7285,7286,-7009,-7144]]},{"type":"Polygon","id":45027,"arcs":[[7287,7288,7289,7290,-7161,-7100]]},{"type":"Polygon","id":6059,"arcs":[[-6324,-7207,7291,7292,-6834]]},{"type":"Polygon","id":48277,"arcs":[[-7276,7293,7294,-7174,-7178]]},{"type":"Polygon","id":13297,"arcs":[[-7265,7295,7296,7297,-7164,-7186]]},{"type":"Polygon","id":1057,"arcs":[[-7239,7298,7299,-7221,-7076]]},{"type":"Polygon","id":13143,"arcs":[[7300,-7266,-7194,-7210]]},{"type":"Polygon","id":28043,"arcs":[[-7172,7301,7302,7303,7304,-7167,-7142]]},{"type":"Polygon","id":45089,"arcs":[[-7110,7305,7306,-7288,-7099]]},{"type":"Polygon","id":48147,"arcs":[[-7295,7307,7308,7309,-7280,-7175]]},{"type":"Polygon","id":45017,"arcs":[[-7162,-7291,7310,-7137,-7125]]},{"type":"Polygon","id":45003,"arcs":[[7311,7312,7313,7314,-7256,-7145,-7139]]},{"type":"Polygon","id":1073,"arcs":[[-7250,7315,7316,-7237,-7129]]},{"type":"Polygon","id":48269,"arcs":[[7317,7318,7319,-7088]]},{"type":"Polygon","id":48275,"arcs":[[7320,7321,-7318,-7132]]},{"type":"Polygon","id":48009,"arcs":[[-7184,7322,7323,7324,-7134]]},{"type":"Polygon","id":48125,"arcs":[[-7320,7325,7326,-7085]]},{"type":"Polygon","id":48107,"arcs":[[-7327,7327,7328,-7092]]},{"type":"Polygon","id":48023,"arcs":[[-7325,7329,-7321,-7131,-7036]]},{"type":"Polygon","id":48303,"arcs":[[-7329,7330,7331,-7094]]},{"type":"Polygon","id":48079,"arcs":[[7332,7333,7334,-6934,-7102]]},{"type":"Polygon","id":48219,"arcs":[[-7332,7335,-7333,-7096]]},{"type":"Polygon","id":5103,"arcs":[[-7181,7336,7337,7338,-7277,-7070]]},{"type":"Polygon","id":13211,"arcs":[[7339,7340,7341,7342,-7296,-7264]]},{"type":"Polygon","id":13045,"arcs":[[-7152,7343,7344,7345,-7267,-7301,-7209,7346]]},{"type":"Polygon","id":28083,"arcs":[[-7305,7347,7348,7349,-7251,-7168]]},{"type":"Polygon","id":28025,"arcs":[[-7198,7350,7351,7352,-7214]]},{"type":"Polygon","id":13097,"arcs":[[-7153,-7347,-7208,-7203]]},{"type":"Polygon","id":5013,"arcs":[[7353,7354,-7337,-7180,-7220]]},{"type":"Polygon","id":5043,"arcs":[[-7192,7355,7356,7357,-7218,-7159]]},{"type":"Polygon","id":13247,"arcs":[[7358,-7259,-7165,-7298,7359]]},{"type":"MultiPolygon","id":45043,"arcs":[[[7360,-7361,7361]],[[-7107,7362,7363,7364,-7306,-7109]]]},{"type":"Polygon","id":4011,"arcs":[[-6953,7365,7366,7367,7368,-5612]]},{"type":"Polygon","id":13133,"arcs":[[7369,7370,7371,-7340,-7263,-7226]]},{"type":"Polygon","id":28087,"arcs":[[-7223,7372,7373,7374,-7351,-7197]]},{"type":"Polygon","id":13217,"arcs":[[-7343,7375,7376,7377,-7360,-7297]]},{"type":"Polygon","id":28155,"arcs":[[-7353,7378,7379,7380,-7302,-7171,-7215]]},{"type":"Polygon","id":13265,"arcs":[[7381,7382,-7370,-7225,-7243]]},{"type":"Polygon","id":48037,"arcs":[[-7287,7383,7384,7385,-7271,-7010]]},{"type":"Polygon","id":45075,"arcs":[[-7290,7386,7387,7388,7389,-7312,-7138,-7311]]},{"type":"Polygon","id":5011,"arcs":[[-7358,7390,7391,-7354,-7219]]},{"type":"Polygon","id":13073,"arcs":[[-7212,-7258,7392,7393,-7254]]},{"type":"Polygon","id":1121,"arcs":[[-7261,-7270,7394,7395,7396,-7248]]},{"type":"Polygon","id":28097,"arcs":[[-7381,7397,7398,7399,-7303]]},{"type":"Polygon","id":28015,"arcs":[[-7400,7400,7401,-7348,-7304]]},{"type":"Polygon","id":13189,"arcs":[[-7255,-7394,7402,7403,-7241]]},{"type":"Polygon","id":4009,"arcs":[[-7369,7404,7405,7406,-7016,-5563,-5613]]},{"type":"Polygon","id":13063,"arcs":[[7407,7408,-7149]]},{"type":"Polygon","id":13151,"arcs":[[-7359,-7378,7409,7410,-7408,-7260]]},{"type":"Polygon","id":5091,"arcs":[[7411,7412,7413,-7384,-7286,-7235]]},{"type":"Polygon","id":13301,"arcs":[[7414,7415,7416,-7382,-7242,-7404]]},{"type":"Polygon","id":1125,"arcs":[[-7238,-7317,7417,7418,7419,7420,-7299]]},{"type":"Polygon","id":35025,"arcs":[[-7335,7421,7422,7423,7424,7425,7426,-7200,-6935]]},{"type":"Polygon","id":28105,"arcs":[[-7375,7427,7428,7429,-7379,-7352]]},{"type":"Polygon","id":5017,"arcs":[[-7189,7430,7431,7432,7433,7434,7435,-7356,-7191]]},{"type":"Polygon","id":13113,"arcs":[[7436,7437,-7150,-7409]]},{"type":"Polygon","id":1117,"arcs":[[-7397,7438,7439,7440,-7316,-7249]]},{"type":"Polygon","id":13245,"arcs":[[7441,7442,-7403,-7393,-7257,-7315]]},{"type":"Polygon","id":1107,"arcs":[[-7300,-7421,7443,7444,7445,-7373,-7222]]},{"type":"Polygon","id":28019,"arcs":[[-7430,7446,7447,-7398,-7380]]},{"type":"Polygon","id":28151,"arcs":[[-7253,7448,7449,7450,-7431,-7188]]},{"type":"Polygon","id":13159,"arcs":[[7451,7452,7453,7454,-7376,-7342]]},{"type":"Polygon","id":13077,"arcs":[[-7438,7455,7456,7457,7458,-7344,-7151]]},{"type":"Polygon","id":45015,"arcs":[[-7365,7459,7460,7461,7462,-7387,-7289,-7307]]},{"type":"Polygon","id":6073,"arcs":[[7463,7464,-7292,-7206]]},{"type":"Polygon","id":1111,"arcs":[[-7346,7465,7466,7467,7468,7469,-7268]]},{"type":"Polygon","id":1027,"arcs":[[-7470,7470,7471,-7395,-7269]]},{"type":"Polygon","id":48119,"arcs":[[-7275,7472,7473,-7308,-7294]]},{"type":"Polygon","id":45011,"arcs":[[7474,7475,7476,-7313,-7390]]},{"type":"Polygon","id":13237,"arcs":[[7477,7478,7479,-7452,-7341,-7372]]},{"type":"Polygon","id":35051,"arcs":[[-7068,7480,7481,7482,7483,-6951,-6949]]},{"type":"Polygon","id":5073,"arcs":[[-7279,7484,7485,-7412,-7234]]},{"type":"Polygon","id":13141,"arcs":[[-7417,7486,7487,7488,-7478,-7371,-7383]]},{"type":"Polygon","id":4027,"arcs":[[-7231,7489,7490,7491,-7080]]},{"type":"Polygon","id":4021,"arcs":[[-7017,-7407,7492,-7229]]},{"type":"Polygon","id":48237,"arcs":[[-7246,7493,7494,7495,7496,-7323,-7183]]},{"type":"Polygon","id":5027,"arcs":[[-7339,7497,7498,7499,-7485,-7278]]},{"type":"Polygon","id":13035,"arcs":[[-7455,7500,7501,7502,-7410,-7377]]},{"type":"Polygon","id":45009,"arcs":[[7503,7504,-7475,-7389]]},{"type":"Polygon","id":6025,"arcs":[[-7492,7505,-7464,-7205,-7081]]},{"type":"Polygon","id":48497,"arcs":[[-7285,7506,7507,7508,-7494,-7245]]},{"type":"Polygon","id":48121,"arcs":[[7509,7510,7511,-7507,-7284,-7282]]},{"type":"Polygon","id":13149,"arcs":[[-7459,7512,-7466,-7345]]},{"type":"Polygon","id":48231,"arcs":[[7513,7514,7515,7516,7517,-7309,-7474,7518]]},{"type":"Polygon","id":48085,"arcs":[[-7310,-7518,7519,7520,-7510,-7281]]},{"type":"Polygon","id":48263,"arcs":[[7521,7522,7523,7524,-7326]]},{"type":"Polygon","id":48433,"arcs":[[7525,7526,7527,-7522,-7319]]},{"type":"Polygon","id":48449,"arcs":[[7528,7529,7530,-7273]]},{"type":"Polygon","id":48169,"arcs":[[-7525,7531,7532,7533,-7328]]},{"type":"Polygon","id":48447,"arcs":[[7534,7535,7536,7537,-7330]]},{"type":"Polygon","id":48503,"arcs":[[-7497,7538,7539,-7535,-7324]]},{"type":"Polygon","id":48207,"arcs":[[-7538,7540,7541,-7526,-7322]]},{"type":"Polygon","id":5003,"arcs":[[-7436,7542,7543,-7391,-7357]]},{"type":"Polygon","id":48305,"arcs":[[-7534,7544,7545,7546,-7331]]},{"type":"Polygon","id":35035,"arcs":[[-7202,7547,7548,7549,7550,7551,-7481,-7067]]},{"type":"Polygon","id":48501,"arcs":[[7552,7553,-7422,-7334]]},{"type":"Polygon","id":48445,"arcs":[[-7547,7554,7555,-7553,-7336]]},{"type":"Polygon","id":48159,"arcs":[[-7531,7556,7557,7558,-7274]]},{"type":"Polygon","id":5139,"arcs":[[-7355,-7392,-7544,7559,7560,-7498,-7338]]},{"type":"Polygon","id":48223,"arcs":[[-7559,7561,7562,-7519,-7473]]},{"type":"Polygon","id":48343,"arcs":[[-7386,7563,7564,7565,7566,-7529,-7272]]},{"type":"Polygon","id":28051,"arcs":[[-7402,7567,7568,7569,-7349]]},{"type":"Polygon","id":13255,"arcs":[[-7503,7570,7571,7572,-7456,-7437,-7411]]},{"type":"Polygon","id":45035,"arcs":[[-7463,7573,7574,-7388]]},{"type":"Polygon","id":28053,"arcs":[[-7350,-7570,7575,7576,-7449,-7252]]},{"type":"Polygon","id":13125,"arcs":[[7577,7578,-7487,-7416]]},{"type":"Polygon","id":13163,"arcs":[[7579,7580,7581,7582,-7578,-7415,-7443]]},{"type":"Polygon","id":48067,"arcs":[[-7414,7583,7584,-7564,-7385]]},{"type":"Polygon","id":13033,"arcs":[[-7314,-7477,7585,7586,7587,7588,-7580,-7442]]},{"type":"Polygon","id":28103,"arcs":[[-7446,7589,7590,7591,-7428,-7374]]},{"type":"Polygon","id":28159,"arcs":[[-7592,7592,7593,7594,-7447,-7429]]},{"type":"Polygon","id":28007,"arcs":[[-7595,7595,7596,-7568,-7401,-7399,-7448]]},{"type":"Polygon","id":1007,"arcs":[[7597,7598,7599,-7418,-7441]]},{"type":"Polygon","id":13303,"arcs":[[-7579,-7583,7600,7601,7602,-7488]]},{"type":"Polygon","id":13199,"arcs":[[-7573,7603,7604,7605,7606,7607,-7457]]},{"type":"Polygon","id":13285,"arcs":[[-7608,7608,7609,-7467,-7513,-7458]]},{"type":"Polygon","id":35017,"arcs":[[-7484,7610,7611,-7366,-6952]]},{"type":"Polygon","id":13231,"arcs":[[7612,7613,-7604,-7572]]},{"type":"Polygon","id":13171,"arcs":[[7614,7615,-7613,-7571,-7502]]},{"type":"Polygon","id":13207,"arcs":[[-7454,7616,7617,7618,7619,-7615,-7501]]},{"type":"Polygon","id":13009,"arcs":[[-7489,-7603,7620,7621,-7479]]},{"type":"Polygon","id":13169,"arcs":[[-7622,7622,7623,7624,-7617,-7453,-7480]]},{"type":"MultiPolygon","id":45029,"arcs":[[[7625,-7626,7626]],[[-7575,7627,7628,7629,7630,-7504]]]},{"type":"Polygon","id":45005,"arcs":[[-7505,7631,7632,-7586,-7476]]},{"type":"Polygon","id":1063,"arcs":[[7633,7634,7635,-7444,-7420]]},{"type":"Polygon","id":1017,"arcs":[[-7610,7636,7637,7638,-7468]]},{"type":"Polygon","id":1123,"arcs":[[-7639,7639,7640,7641,7642,-7471,-7469]]},{"type":"Polygon","id":1037,"arcs":[[-7643,7643,7644,-7439,-7396,-7472]]},{"type":"Polygon","id":28125,"arcs":[[-7577,7645,7646,-7450]]},{"type":"Polygon","id":48063,"arcs":[[-7567,7647,7648,-7557,-7530]]},{"type":"Polygon","id":1021,"arcs":[[-7645,7649,7650,7651,7652,-7598,-7440]]},{"type":"Polygon","id":35013,"arcs":[[7653,7654,7655,-7482,-7552]]},{"type":"Polygon","id":13251,"arcs":[[7656,7657,7658,7659,-7587,-7633]]},{"type":"Polygon","id":45049,"arcs":[[7660,7661,7662,-7657,-7632,-7631]]},{"type":"Polygon","id":28163,"arcs":[[7663,7664,7665,7666,-7646,-7576,-7569]]},{"type":"Polygon","id":22017,"arcs":[[7667,7668,7669,7670,7671,-7584,-7413,7672]]},{"type":"Polygon","id":22015,"arcs":[[7673,7674,7675,-7673,-7486]]},{"type":"Polygon","id":22119,"arcs":[[7676,-7674,-7500,7677]]},{"type":"Polygon","id":22027,"arcs":[[7678,7679,-7678,-7499,-7561,7680]]},{"type":"Polygon","id":22111,"arcs":[[7681,7682,-7681,-7560,7683]]},{"type":"Polygon","id":48499,"arcs":[[7684,7685,7686,7687,-7562,-7558,-7649]]},{"type":"Polygon","id":28055,"arcs":[[-7647,-7667,7688,7689,-7432,-7451]]},{"type":"Polygon","id":13319,"arcs":[[-7602,7690,7691,7692,-7623,-7621]]},{"type":"Polygon","id":22067,"arcs":[[-7435,7693,7694,7695,-7684,-7543]]},{"type":"Polygon","id":1065,"arcs":[[-7600,7696,7697,-7634,-7419]]},{"type":"Polygon","id":22123,"arcs":[[7698,7699,-7694,-7434]]},{"type":"Polygon","id":48363,"arcs":[[7700,7701,7702,7703,7704,-7539,-7496]]},{"type":"Polygon","id":22035,"arcs":[[7705,7706,7707,-7699,-7433,-7690]]},{"type":"Polygon","id":48367,"arcs":[[7708,7709,7710,-7701,-7495,-7509]]},{"type":"Polygon","id":13293,"arcs":[[-7616,-7620,7711,7712,7713,-7605,-7614]]},{"type":"Polygon","id":1119,"arcs":[[7714,7715,7716,7717,-7590,-7445,-7636]]},{"type":"Polygon","id":48439,"arcs":[[-7508,-7512,7718,7719,7720,-7709]]},{"type":"Polygon","id":48113,"arcs":[[-7521,7721,7722,7723,-7719,-7511]]},{"type":"Polygon","id":48397,"arcs":[[-7517,7724,-7722,-7520]]},{"type":"Polygon","id":48379,"arcs":[[-7688,7725,-7514,-7563]]},{"type":"Polygon","id":48415,"arcs":[[7726,7727,7728,-7532,-7524]]},{"type":"Polygon","id":35015,"arcs":[[-7427,7729,7730,7731,-7548,-7201]]},{"type":"Polygon","id":48151,"arcs":[[-7528,7732,7733,-7727,-7523]]},{"type":"Polygon","id":48033,"arcs":[[-7729,7734,7735,-7545,-7533]]},{"type":"Polygon","id":48115,"arcs":[[-7736,7736,7737,-7555,-7546]]},{"type":"Polygon","id":48165,"arcs":[[-7556,-7738,7738,-7423,-7554]]},{"type":"Polygon","id":48253,"arcs":[[-7542,7739,7740,-7733,-7527]]},{"type":"Polygon","id":48417,"arcs":[[7741,7742,-7740,-7541,-7537]]},{"type":"Polygon","id":48429,"arcs":[[-7705,7743,-7742,-7536,-7540]]},{"type":"Polygon","id":13165,"arcs":[[-7660,7744,7745,-7588]]},{"type":"Polygon","id":13021,"arcs":[[7746,7747,7748,-7618,-7625]]},{"type":"Polygon","id":28099,"arcs":[[7749,7750,7751,-7594]]},{"type":"Polygon","id":28079,"arcs":[[-7752,7752,7753,-7596]]},{"type":"Polygon","id":28069,"arcs":[[-7718,7754,-7750,-7593,-7591]]},{"type":"Polygon","id":48459,"arcs":[[-7566,7755,7756,7757,7758,-7685,-7648]]},{"type":"Polygon","id":13289,"arcs":[[7759,7760,-7747,-7624,-7693]]},{"type":"Polygon","id":13263,"arcs":[[7761,7762,7763,7764,7765,-7606,-7714]]},{"type":"Polygon","id":48315,"arcs":[[-7672,7766,-7756,-7565,-7585]]},{"type":"Polygon","id":28089,"arcs":[[-7754,7767,7768,7769,-7664,-7597]]},{"type":"Polygon","id":1105,"arcs":[[-7653,7770,7771,-7697,-7599]]},{"type":"Polygon","id":13145,"arcs":[[-7766,7772,7773,-7637,-7609,-7607]]},{"type":"Polygon","id":13079,"arcs":[[-7749,7774,7775,-7712,-7619]]},{"type":"Polygon","id":48257,"arcs":[[7776,7777,7778,-7723,-7725,-7516]]},{"type":"Polygon","id":13107,"arcs":[[-7589,-7746,7779,7780,7781,7782,7783,-7581]]},{"type":"Polygon","id":48467,"arcs":[[-7726,-7687,7784,7785,-7777,-7515]]},{"type":"Polygon","id":13167,"arcs":[[-7784,7786,-7691,-7601,-7582]]},{"type":"Polygon","id":48203,"arcs":[[-7671,7787,7788,7789,-7757,-7767]]},{"type":"Polygon","id":35023,"arcs":[[7790,7791,7792,-7367,-7612]]},{"type":"Polygon","id":1051,"arcs":[[7793,7794,7795,-7650,-7644,-7642]]},{"type":"Polygon","id":22061,"arcs":[[7796,7797,7798,-7679,-7683]]},{"type":"Polygon","id":45053,"arcs":[[7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,-7662]]},{"type":"Polygon","id":13269,"arcs":[[-7776,7809,7810,7811,7812,-7762,-7713]]},{"type":"Polygon","id":1081,"arcs":[[-7774,7813,7814,7815,-7640,-7638]]},{"type":"Polygon","id":1047,"arcs":[[7816,7817,7818,7819,-7771,-7652]]},{"type":"Polygon","id":22073,"arcs":[[7820,7821,7822,-7797,-7682,-7696]]},{"type":"Polygon","id":13175,"arcs":[[7823,7824,7825,-7692,-7787,7826]]},{"type":"Polygon","id":1001,"arcs":[[-7796,7827,7828,-7817,-7651]]},{"type":"MultiPolygon","id":45013,"arcs":[[[-7806,7829]],[[7830,-7800,-7661,-7630]]]},{"type":"Polygon","id":13225,"arcs":[[7831,-7810,-7775,7832]]},{"type":"Polygon","id":13153,"arcs":[[-7761,7833,7834,7835,7836,-7833,-7748]]},{"type":"Polygon","id":48423,"arcs":[[-7759,7837,7838,7839,7840,-7785,-7686]]},{"type":"Polygon","id":22083,"arcs":[[-7708,7841,7842,7843,-7821,-7695,-7700]]},{"type":"Polygon","id":48183,"arcs":[[-7790,7844,-7838,-7758]]},{"type":"Polygon","id":13031,"arcs":[[7845,7846,7847,7848,-7780,-7745,-7659]]},{"type":"Polygon","id":28123,"arcs":[[-7753,7849,7850,7851,-7768]]},{"type":"Polygon","id":28149,"arcs":[[7852,7853,7854,7855,7856,-7706,-7689,-7666]]},{"type":"Polygon","id":13215,"arcs":[[-7765,7857,7858,-7814,-7773]]},{"type":"Polygon","id":35029,"arcs":[[-7656,7859,-7791,-7611,-7483]]},{"type":"Polygon","id":13103,"arcs":[[-7809,7860,7861,-7846,-7658,-7663]]},{"type":"Polygon","id":1087,"arcs":[[7862,7863,7864,-7794,-7641,-7816]]},{"type":"Polygon","id":28121,"arcs":[[-7852,7865,7866,7867,-7769]]},{"type":"Polygon","id":22013,"arcs":[[-7799,7868,7869,7870,7871,-7675,-7677,-7680]]},{"type":"Polygon","id":13023,"arcs":[[7872,7873,-7834,-7760,-7826]]},{"type":"Polygon","id":28075,"arcs":[[-7717,7874,7875,7876,-7755]]},{"type":"Polygon","id":28101,"arcs":[[-7877,7877,-7850,-7751]]},{"type":"Polygon","id":28049,"arcs":[[-7868,7878,7879,-7853,-7665,-7770]]},{"type":"MultiPolygon","id":22065,"arcs":[[[7854,-7855,7880]],[[7881,7882,-7842,-7707,-7857]]]},{"type":"Polygon","id":13197,"arcs":[[7883,7884,7885,7886,-7763,-7813]]},{"type":"Polygon","id":13043,"arcs":[[7887,7888,-7781,-7849]]},{"type":"Polygon","id":48221,"arcs":[[7889,7890,7891,-7702,-7711]]},{"type":"Polygon","id":48251,"arcs":[[7892,7893,7894,7895,-7890,-7710,-7721]]},{"type":"Polygon","id":48139,"arcs":[[-7724,-7779,7896,7897,7898,-7893,-7720]]},{"type":"Polygon","id":1091,"arcs":[[-7698,-7772,-7820,7899,7900,7901,-7715,-7635]]},{"type":"Polygon","id":13053,"arcs":[[-7887,7902,7903,-7858,-7764]]},{"type":"Polygon","id":48227,"arcs":[[7904,7905,7906,7907,-7735]]},{"type":"Polygon","id":48335,"arcs":[[7908,7909,7910,-7905,-7728]]},{"type":"Polygon","id":48353,"arcs":[[7911,7912,7913,-7909,-7734]]},{"type":"Polygon","id":48317,"arcs":[[-7908,7914,7915,7916,-7737]]},{"type":"Polygon","id":48003,"arcs":[[-7917,7917,7918,7919,-7424,-7739]]},{"type":"Polygon","id":13193,"arcs":[[-7832,-7837,7920,7921,7922,-7811]]},{"type":"Polygon","id":48441,"arcs":[[7923,7924,7925,-7912,-7741]]},{"type":"Polygon","id":48133,"arcs":[[-7704,7926,7927,7928,7929,-7744]]},{"type":"Polygon","id":48143,"arcs":[[-7703,-7892,7930,7931,7932,7933,-7927]]},{"type":"Polygon","id":48059,"arcs":[[-7930,7934,7935,-7924,-7743]]},{"type":"Polygon","id":4019,"arcs":[[-7406,7936,7937,7938,-7490,-7230,-7493]]},{"type":"Polygon","id":13283,"arcs":[[7939,7940,-7827,-7783]]},{"type":"Polygon","id":1113,"arcs":[[-7859,-7904,7941,7942,7943,-7863,-7815]]},{"type":"Polygon","id":1101,"arcs":[[-7865,7944,7945,7946,7947,-7828,-7795]]},{"type":"Polygon","id":22049,"arcs":[[-7823,7948,7949,-7869,-7798]]},{"type":"Polygon","id":13091,"arcs":[[7950,7951,7952,7953,-7873,-7825]]},{"type":"Polygon","id":13249,"arcs":[[-7923,7954,-7884,-7812]]},{"type":"Polygon","id":4003,"arcs":[[-7368,-7793,7955,7956,-7937,-7405]]},{"type":"Polygon","id":1085,"arcs":[[-7948,7957,7958,7959,-7818,-7829]]},{"type":"Polygon","id":48401,"arcs":[[7960,7961,7962,7963,-7839,-7845,-7789]]},{"type":"Polygon","id":22041,"arcs":[[-7883,7964,7965,7966,-7843]]},{"type":"Polygon","id":13235,"arcs":[[-7874,-7954,7967,7968,-7835]]},{"type":"Polygon","id":48365,"arcs":[[-7670,7969,7970,-7961,-7788]]},{"type":"Polygon","id":48213,"arcs":[[-7786,-7841,7971,7972,7973,7974,-7897,-7778]]},{"type":"Polygon","id":13209,"arcs":[[7975,7976,-7940,7977]]},{"type":"Polygon","id":13279,"arcs":[[-7782,7978,7979,-7978]]},{"type":"Polygon","id":22031,"arcs":[[7980,7981,7982,7983,-7970,-7669]]},{"type":"Polygon","id":48349,"arcs":[[7984,7985,7986,-7898,-7975]]},{"type":"Polygon","id":48425,"arcs":[[-7896,7987,-7931,-7891]]},{"type":"Polygon","id":13267,"arcs":[[7988,7989,7990,7991,7992,-7979,-7889]]},{"type":"Polygon","id":1023,"arcs":[[7993,7994,7995,7996,-7875,-7716,-7902]]},{"type":"Polygon","id":13309,"arcs":[[-7977,7997,7998,-7951,-7824,-7941]]},{"type":"Polygon","id":1011,"arcs":[[-7944,7999,8000,-7945,-7864]]},{"type":"Polygon","id":13093,"arcs":[[-7969,8001,8002,8003,-7921,-7836]]},{"type":"Polygon","id":13109,"arcs":[[-7848,8004,8005,-7989,-7888]]},{"type":"Polygon","id":22021,"arcs":[[-7844,-7967,8006,8007,8008,-7949,-7822]]},{"type":"Polygon","id":1131,"arcs":[[-7819,-7960,8009,8010,8011,-7900]]},{"type":"Polygon","id":48217,"arcs":[[-7987,8012,8013,8014,-7894,-7899]]},{"type":"Polygon","id":48093,"arcs":[[8015,8016,8017,-7928,-7934]]},{"type":"Polygon","id":22107,"arcs":[[-7856,-7855,8018,8019,8020,8021,8022,-7965,-7882]]},{"type":"Polygon","id":13029,"arcs":[[8023,8024,8025,8026,-8005,-7847,-7862]]},{"type":"Polygon","id":22081,"arcs":[[-7676,-7872,8027,-7981,-7668]]},{"type":"MultiPolygon","id":13051,"arcs":[[[8028,8029,-8024,-7861,-7808]]]},{"type":"Polygon","id":13307,"arcs":[[8030,8031,8032,8033,-7886]]},{"type":"Polygon","id":13259,"arcs":[[-8034,8034,8035,8036,-7942,-7903]]},{"type":"Polygon","id":13261,"arcs":[[-8004,8037,8038,8039,-8031,-7885,-7955,-7922]]},{"type":"Polygon","id":28023,"arcs":[[-7997,8040,8041,-7876]]},{"type":"Polygon","id":28021,"arcs":[[-7880,8042,8043,-8019,-7854]]},{"type":"Polygon","id":28061,"arcs":[[-8042,8044,8045,8046,-7878]]},{"type":"Polygon","id":28129,"arcs":[[-8047,8047,8048,8049,-7866,-7851]]},{"type":"Polygon","id":48035,"arcs":[[-7895,-8015,8050,8051,8052,-7932,-7988]]},{"type":"Polygon","id":13271,"arcs":[[8053,8054,8055,8056,-7952,-7999]]},{"type":"Polygon","id":22127,"arcs":[[-7950,-8009,8057,8058,8059,-7870]]},{"type":"Polygon","id":22069,"arcs":[[-8060,8060,8061,8062,8063,-7982,-8028,-7871]]},{"type":"Polygon","id":1005,"arcs":[[-8037,8064,8065,8066,8067,8068,-8000,-7943]]},{"type":"Polygon","id":48073,"arcs":[[-7964,8069,8070,8071,8072,-7972,-7840]]},{"type":"Polygon","id":13315,"arcs":[[-7953,-8057,8073,8074,8075,-8002,-7968]]},{"type":"MultiPolygon","id":13179,"arcs":[[[8076,8077,-7990,-8006,-8027,8078]]]},{"type":"Polygon","id":48431,"arcs":[[-7911,8079,8080,8081,8082,-7906]]},{"type":"Polygon","id":48173,"arcs":[[-8083,8083,8084,-7915,-7907]]},{"type":"Polygon","id":48329,"arcs":[[-8085,8085,8086,-7918,-7916]]},{"type":"Polygon","id":48135,"arcs":[[-8087,8087,8088,8089,-7919]]},{"type":"Polygon","id":48495,"arcs":[[-8090,8090,8091,-7425,-7920]]},{"type":"Polygon","id":48081,"arcs":[[-7914,8092,8093,-8080,-7910]]},{"type":"Polygon","id":48001,"arcs":[[8094,8095,8096,-7973,-8073]]},{"type":"Polygon","id":48083,"arcs":[[-7936,8097,8098,8099,8100,-7925]]},{"type":"Polygon","id":48399,"arcs":[[-8101,8101,8102,-8093,-7913,-7926]]},{"type":"Polygon","id":48049,"arcs":[[-8018,8103,8104,8105,-8098,-7935,-7929]]},{"type":"Polygon","id":1109,"arcs":[[-8069,8106,8107,8108,-7946,-8001]]},{"type":"Polygon","id":1041,"arcs":[[-8109,8109,8110,8111,-7958,-7947]]},{"type":"Polygon","id":28029,"arcs":[[8112,8113,8114,8115,-8043,-7879]]},{"type":"Polygon","id":28127,"arcs":[[-8050,8116,8117,8118,-8113,-7867]]},{"type":"Polygon","id":13081,"arcs":[[-8076,8119,8120,8121,-8038,-8003]]},{"type":"Polygon","id":48193,"arcs":[[8122,-8016,-7933,-8053,8123,8124]]},{"type":"Polygon","id":13183,"arcs":[[8125,8126,-7991,-8078]]},{"type":"Polygon","id":48161,"arcs":[[8127,8128,-7985,-7974,-8097]]},{"type":"Polygon","id":48109,"arcs":[[8129,8130,8131,-7549,-7732]]},{"type":"Polygon","id":48229,"arcs":[[8132,8133,8134,-7550,-8132]]},{"type":"Polygon","id":48141,"arcs":[[8135,-7654,-7551,-8135]]},{"type":"Polygon","id":48301,"arcs":[[8136,8137,-7730,-7426,-8092]]},{"type":"Polygon","id":48389,"arcs":[[8138,8139,8140,-8130,-7731,-8138]]},{"type":"Polygon","id":13239,"arcs":[[8141,8142,-8065,-8036]]},{"type":"Polygon","id":1025,"arcs":[[-8012,8143,8144,8145,-7994,-7901]]},{"type":"Polygon","id":48419,"arcs":[[8146,8147,8148,8149,-7962,-7971,-7984]]},{"type":"Polygon","id":22025,"arcs":[[-8023,8150,8151,8152,-8007,-7966]]},{"type":"Polygon","id":13161,"arcs":[[8153,8154,8155,-8054,-7998,-7976]]},{"type":"Polygon","id":13273,"arcs":[[8156,8157,8158,8159,-8032,-8040]]},{"type":"Polygon","id":13001,"arcs":[[-7993,8160,8161,8162,-8154,-7980]]},{"type":"Polygon","id":1013,"arcs":[[-8112,8163,8164,8165,-8010,-7959]]},{"type":"Polygon","id":13243,"arcs":[[-8033,-8160,8166,8167,-8142,-8035]]},{"type":"Polygon","id":22059,"arcs":[[-8153,8168,8169,8170,-8058,-8008]]},{"type":"Polygon","id":13177,"arcs":[[-8122,8171,8172,-8157,-8039]]},{"type":"Polygon","id":28153,"arcs":[[8173,8174,8175,-8045,-8041,-7996,8176]]},{"type":"Polygon","id":28063,"arcs":[[-8116,8177,8178,8179,-8020,-8044]]},{"type":"Polygon","id":48309,"arcs":[[8180,-8051,-8014,8181,8182,8183]]},{"type":"Polygon","id":13287,"arcs":[[8184,8185,8186,8187,-8120,-8075]]},{"type":"Polygon","id":13017,"arcs":[[-8056,8188,8189,-8185,-8074]]},{"type":"Polygon","id":13321,"arcs":[[-8121,-8188,8190,8191,8192,8193,-8172]]},{"type":"Polygon","id":48347,"arcs":[[-8150,8194,8195,-8070,-7963]]},{"type":"Polygon","id":22085,"arcs":[[-8064,8196,8197,8198,-8147,-7983]]},{"type":"Polygon","id":13305,"arcs":[[-7992,-8127,8199,8200,8201,8202,-8161]]},{"type":"Polygon","id":1099,"arcs":[[-8166,8203,8204,8205,-8144,-8011]]},{"type":"Polygon","id":28067,"arcs":[[8206,8207,8208,-8048,-8046,-8176]]},{"type":"Polygon","id":48293,"arcs":[[8209,-8182,-8013,-7986,-8129,8210,8211]]},{"type":"Polygon","id":13069,"arcs":[[8212,8213,8214,8215,8216,-8189,-8055,-8156]]},{"type":"Polygon","id":22043,"arcs":[[-8171,8217,-8061,-8059]]},{"type":"Polygon","id":28031,"arcs":[[-8209,8218,8219,8220,-8117,-8049]]},{"type":"Polygon","id":13061,"arcs":[[-8168,8221,8222,8223,-8066,-8143]]},{"type":"Polygon","id":1067,"arcs":[[-8224,8224,8225,8226,-8067]]},{"type":"Polygon","id":28065,"arcs":[[8227,8228,8229,-8118,-8221]]},{"type":"Polygon","id":13155,"arcs":[[-8217,8230,8231,-8186,-8190]]},{"type":"Polygon","id":22029,"arcs":[[-8022,8232,8233,8234,8235,8236,8237,-8151]]},{"type":"Polygon","id":28077,"arcs":[[8238,8239,8240,-8114,-8119,-8230]]},{"type":"Polygon","id":1035,"arcs":[[8241,8242,-8204,-8165]]},{"type":"Polygon","id":28001,"arcs":[[8243,8244,-8233,-8021,-8180]]},{"type":"Polygon","id":4023,"arcs":[[-7957,8245,-7938]]},{"type":"Polygon","id":48333,"arcs":[[8246,8247,-8104,-8017,-8123]]},{"type":"Polygon","id":28085,"arcs":[[8248,8249,8250,-8178,-8115,-8241]]},{"type":"Polygon","id":13005,"arcs":[[8251,8252,-8213,-8155,-8163]]},{"type":"Polygon","id":48099,"arcs":[[8253,-8124,-8052,-8181,8254]]},{"type":"Polygon","id":48451,"arcs":[[-8103,8255,8256,8257,8258,-8081,-8094]]},{"type":"Polygon","id":1129,"arcs":[[-8146,8259,8260,8261,-8177,-7995]]},{"type":"MultiPolygon","id":13191,"arcs":[[[8262,-8263,8263]],[[8264,8265,-8200,-8126,-8077]]]},{"type":"Polygon","id":48289,"arcs":[[8266,8267,8268,-8211,-8128,-8096]]},{"type":"Polygon","id":48461,"arcs":[[8269,8270,8271,-8086]]},{"type":"Polygon","id":48103,"arcs":[[-8272,8272,8273,8274,-8088]]},{"type":"Polygon","id":48405,"arcs":[[8275,8276,8277,-8195,-8149]]},{"type":"Polygon","id":48383,"arcs":[[-8082,-8259,8278,8279,-8270,-8084]]},{"type":"Polygon","id":48475,"arcs":[[-8137,-8091,-8089,-8275,8280,-8139]]},{"type":"Polygon","id":13095,"arcs":[[-8194,8281,8282,8283,-8158,-8173]]},{"type":"Polygon","id":13037,"arcs":[[-8159,-8284,8284,8285,-8222,-8167]]},{"type":"Polygon","id":1045,"arcs":[[-8227,8286,8287,8288,-8107,-8068]]},{"type":"Polygon","id":1031,"arcs":[[8289,8290,-8110,-8108,-8289]]},{"type":"Polygon","id":28037,"arcs":[[-8251,8291,8292,-8244,-8179]]},{"type":"Polygon","id":48403,"arcs":[[-8199,8293,8294,-8276,-8148]]},{"type":"Polygon","id":13277,"arcs":[[-8232,8295,8296,8297,-8191,-8187]]},{"type":"Polygon","id":48225,"arcs":[[8298,8299,8300,8301,-8267,-8095,-8072]]},{"type":"Polygon","id":48095,"arcs":[[-8100,8302,8303,-8256,-8102]]},{"type":"Polygon","id":13229,"arcs":[[-8203,8304,8305,-8252,-8162]]},{"type":"Polygon","id":1039,"arcs":[[-8291,8306,8307,8308,8309,-8242,-8164,-8111]]},{"type":"Polygon","id":48235,"arcs":[[8310,8311,-8279,-8258]]},{"type":"Polygon","id":48005,"arcs":[[-8278,8312,8313,8314,8315,-8299,-8071,-8196]]},{"type":"Polygon","id":13099,"arcs":[[-8286,8316,8317,8318,8319,-8225,-8223]]},{"type":"Polygon","id":48145,"arcs":[[8320,8321,-8183,-8210,8322]]},{"type":"Polygon","id":22079,"arcs":[[-8170,8323,8324,8325,8326,-8062,-8218]]},{"type":"Polygon","id":48307,"arcs":[[-8106,8327,8328,8329,-8303,-8099]]},{"type":"Polygon","id":48411,"arcs":[[-8248,8330,8331,8332,8333,-8328,-8105]]},{"type":"Polygon","id":13019,"arcs":[[-8216,8334,8335,8336,8337,-8296,-8231]]},{"type":"Polygon","id":13299,"arcs":[[-8306,8338,8339,8340,8341,8342,-8214,-8253]]},{"type":"Polygon","id":48281,"arcs":[[8343,8344,-8331,-8247,-8125,-8254]]},{"type":"MultiPolygon","id":13127,"arcs":[[[-8263,8345,8346,8347,-8201,-8266]]]},{"type":"Polygon","id":13007,"arcs":[[-8283,8348,8349,-8317,-8285]]},{"type":"Polygon","id":13205,"arcs":[[-8193,8350,8351,8352,8353,-8349,-8282]]},{"type":"Polygon","id":28041,"arcs":[[-8262,8354,8355,8356,-8174]]},{"type":"Polygon","id":28035,"arcs":[[8357,8358,8359,8360,-8219,-8208]]},{"type":"Polygon","id":28073,"arcs":[[-8220,-8361,8361,8362,-8228]]},{"type":"Polygon","id":28111,"arcs":[[-8175,-8357,8363,8364,-8358,-8207]]},{"type":"Polygon","id":28091,"arcs":[[-8363,8365,8366,8367,-8239,-8229]]},{"type":"Polygon","id":13003,"arcs":[[-8343,8368,8369,-8335,-8215]]},{"type":"Polygon","id":48455,"arcs":[[8370,8371,8372,-8300,-8316]]},{"type":"Polygon","id":48371,"arcs":[[-8274,8373,8374,8375,8376,-8140,-8281]]},{"type":"Polygon","id":13025,"arcs":[[-8348,8377,8378,-8339,-8305,-8202]]},{"type":"Polygon","id":28157,"arcs":[[-8293,8379,8380,8381,-8234,-8245]]},{"type":"Polygon","id":22115,"arcs":[[-8327,8382,8383,8384,-8197,-8063]]},{"type":"Polygon","id":48395,"arcs":[[8385,8386,8387,-8323,-8212,-8269]]},{"type":"Polygon","id":13075,"arcs":[[8388,8389,8390,-8297,-8338]]},{"type":"Polygon","id":28005,"arcs":[[-8250,8391,8392,8393,-8380,-8292]]},{"type":"Polygon","id":28113,"arcs":[[8394,8395,8396,-8392,-8249]]},{"type":"Polygon","id":28147,"arcs":[[-8368,8397,-8395,-8240]]},{"type":"Polygon","id":22009,"arcs":[[-8152,-8238,8398,8399,8400,8401,-8324,-8169]]},{"type":"Polygon","id":13071,"arcs":[[-8298,-8391,8402,8403,-8351,-8192]]},{"type":"Polygon","id":48027,"arcs":[[-8322,8404,8405,8406,-8344,-8255,-8184]]},{"type":"MultiPolygon","id":1003,"arcs":[[[-8206,8407,8408,8409,8410,8411,8412,-8260,-8145]]]},{"type":"Polygon","id":1069,"arcs":[[-8320,8413,8414,8415,-8287,-8226]]},{"type":"Polygon","id":1053,"arcs":[[-8310,8416,8417,8418,-8408,-8205,-8243]]},{"type":"Polygon","id":13201,"arcs":[[-8350,8419,8420,-8318]]},{"type":"Polygon","id":1061,"arcs":[[8421,8422,8423,-8307,-8290,-8288,-8416]]},{"type":"Polygon","id":48351,"arcs":[[8424,8425,8426,8427,-8294,-8198,-8385]]},{"type":"Polygon","id":13065,"arcs":[[-8342,8428,8429,8430,-8369]]},{"type":"Polygon","id":13173,"arcs":[[-8431,8431,8432,-8336,-8370]]},{"type":"MultiPolygon","id":1097,"arcs":[[[8433,8434,8435,-8355,-8261,-8413]]]},{"type":"MultiPolygon","id":13039,"arcs":[[[8436,8437,8438,-8378,-8347]]]},{"type":"Polygon","id":48241,"arcs":[[8439,8440,8441,-8313,-8277,-8295,-8428]]},{"type":"Polygon","id":48373,"arcs":[[8442,8443,8444,8445,-8371,-8315]]},{"type":"Polygon","id":48331,"arcs":[[8446,8447,8448,-8405,-8321,-8388]]},{"type":"Polygon","id":48243,"arcs":[[8449,-8133,-8131,-8141,-8377,8450]]},{"type":"Polygon","id":48313,"arcs":[[8451,8452,8453,-8268,-8302]]},{"type":"Polygon","id":48327,"arcs":[[-8330,8454,8455,8456,-8304]]},{"type":"Polygon","id":48413,"arcs":[[-8457,8457,8458,-8311,-8257]]},{"type":"Polygon","id":48105,"arcs":[[-8271,-8280,-8312,-8459,8459,8460,8461,-8374,-8273]]},{"type":"Polygon","id":13087,"arcs":[[-8354,8462,8463,8464,-8420]]},{"type":"Polygon","id":13131,"arcs":[[8465,8466,8467,-8463,-8353]]},{"type":"MultiPolygon","id":13027,"arcs":[[[8468,8469,8470,8471,-8403,-8390]]]},{"type":"Polygon","id":13275,"arcs":[[-8404,-8472,8472,8473,-8466,-8352]]},{"type":"Polygon","id":13253,"arcs":[[-8465,8474,-8414,-8319,-8421]]},{"type":"Polygon","id":13049,"arcs":[[8475,8476,-8340,-8379,-8439]]},{"type":"Polygon","id":48457,"arcs":[[-8442,8477,-8443,-8314]]},{"type":"Polygon","id":48471,"arcs":[[8478,8479,8480,-8452,-8301,-8373]]},{"type":"MultiPolygon","id":22125,"arcs":[[[8481,8482,-8235,-8382,8483]],[[8484,-8399,-8237]]]},{"type":"Polygon","id":48053,"arcs":[[-8407,8485,8486,8487,8488,-8332,-8345]]},{"type":"Polygon","id":13185,"arcs":[[-8337,-8433,8489,8490,8491,-8469,-8389]]},{"type":"Polygon","id":22077,"arcs":[[-8236,-8483,8492,8493,8494,8495,-8400,-8485]]},{"type":"Polygon","id":28109,"arcs":[[-8360,8496,8497,8498,8499,-8366,-8362]]},{"type":"Polygon","id":22117,"arcs":[[-8500,8500,8501,-8396,-8398,-8367]]},{"type":"Polygon","id":22039,"arcs":[[-8402,8502,8503,8504,8505,-8325]]},{"type":"Polygon","id":12063,"arcs":[[-8475,8506,8507,8508,8509,8510,-8422,-8415]]},{"type":"Polygon","id":22105,"arcs":[[-8502,8511,8512,8513,8514,-8397]]},{"type":"MultiPolygon","id":12033,"arcs":[[[8515,-8516,8516]],[[8517,-8409,-8419,8518]]]},{"type":"MultiPolygon","id":12113,"arcs":[[[8519,-8516,8520]],[[8521,8522,-8519,-8418]]]},{"type":"Polygon","id":28039,"arcs":[[-8436,8523,8524,-8364,-8356]]},{"type":"Polygon","id":22091,"arcs":[[-8515,8525,8526,8527,-8393]]},{"type":"MultiPolygon","id":12091,"arcs":[[[8528,-8529,8529]],[[-8309,8530,8531,-8522,-8417]]]},{"type":"Polygon","id":22037,"arcs":[[-8528,8532,-8484,-8381,-8394]]},{"type":"Polygon","id":12059,"arcs":[[-8511,8533,8534,-8423]]},{"type":"Polygon","id":12131,"arcs":[[-8424,-8535,8535,8536,8537,-8529,8538,-8531,-8308]]},{"type":"Polygon","id":48041,"arcs":[[8539,8540,8541,-8386,-8454]]},{"type":"Polygon","id":48319,"arcs":[[-8334,8542,8543,8544,-8455,-8329]]},{"type":"Polygon","id":48299,"arcs":[[-8489,8545,8546,-8543,-8333]]},{"type":"Polygon","id":28131,"arcs":[[-8525,8547,8548,-8497,-8359,-8365]]},{"type":"Polygon","id":48491,"arcs":[[8549,8550,8551,-8486,-8406,-8449]]},{"type":"Polygon","id":48407,"arcs":[[-8446,8552,8553,-8479,-8372]]},{"type":"Polygon","id":22003,"arcs":[[-8506,8554,8555,-8383,-8326]]},{"type":"Polygon","id":22011,"arcs":[[-8556,8556,8557,-8425,-8384]]},{"type":"Polygon","id":13101,"arcs":[[8558,8559,-8490,-8432,-8430]]},{"type":"Polygon","id":48185,"arcs":[[-8481,8560,8561,8562,-8540,-8453]]},{"type":"Polygon","id":22097,"arcs":[[-8496,8563,8564,8565,-8503,-8401]]},{"type":"Polygon","id":12133,"arcs":[[8566,-8536,-8534,-8510]]},{"type":"Polygon","id":12089,"arcs":[[-8438,8567,8568,8569,8570,-8476]]},{"type":"Polygon","id":28059,"arcs":[[-8435,8571,8572,-8548,-8524]]},{"type":"Polygon","id":48051,"arcs":[[-8542,8573,8574,-8447,-8387]]},{"type":"Polygon","id":22033,"arcs":[[8575,8576,8577,8578,-8533,-8527]]},{"type":"Polygon","id":22103,"arcs":[[-8499,8579,8580,8581,8582,-8512,-8501]]},{"type":"Polygon","id":12039,"arcs":[[-8468,8583,8584,-8507,-8464]]},{"type":"Polygon","id":48267,"arcs":[[8585,8586,8587,8588,-8456,-8545]]},{"type":"Polygon","id":48435,"arcs":[[-8589,8589,8590,-8460,-8458]]},{"type":"Polygon","id":12073,"arcs":[[-8474,8591,8592,8593,-8584,-8467]]},{"type":"Polygon","id":28047,"arcs":[[-8573,8594,8595,-8549]]},{"type":"Polygon","id":12065,"arcs":[[-8471,8596,8597,8598,8599,-8592,-8473]]},{"type":"Polygon","id":48043,"arcs":[[8600,-8451,-8376,8601,8602]]},{"type":"Polygon","id":22121,"arcs":[[8603,-8493,-8482,-8579]]},{"type":"Polygon","id":48443,"arcs":[[8604,8605,-8602,-8375,-8462]]},{"type":"Polygon","id":22063,"arcs":[[-8514,8606,8607,-8576,-8526]]},{"type":"Polygon","id":12079,"arcs":[[-8492,8608,8609,8610,8611,-8597,-8470]]},{"type":"Polygon","id":28045,"arcs":[[-8596,8612,-8580,-8498]]},{"type":"Polygon","id":12047,"arcs":[[-8560,8613,8614,-8609,-8491]]},{"type":"Polygon","id":48377,"arcs":[[-8601,8615,-8450]]},{"type":"Polygon","id":48339,"arcs":[[-8554,8616,8617,8618,-8561,-8480]]},{"type":"Polygon","id":48453,"arcs":[[8619,8620,8621,8622,-8487,-8552]]},{"type":"Polygon","id":12013,"arcs":[[8623,8624,8625,-8508]]},{"type":"Polygon","id":12077,"arcs":[[-8594,8626,8627,8628,-8624,-8585]]},{"type":"Polygon","id":12023,"arcs":[[-8429,8629,8630,8631,8632,8633,-8614,-8559]]},{"type":"MultiPolygon","id":12031,"arcs":[[[8634,8635]],[[8636,8637]],[[8638,8639,8640,8641,-8570]]]},{"type":"Polygon","id":12003,"arcs":[[-8571,-8642,8642,8643,8644,-8630,-8341,-8477]]},{"type":"MultiPolygon","id":12005,"arcs":[[[8645,8646]],[[-8626,8647,8648,-8537,-8567,-8509]]]},{"type":"Polygon","id":48287,"arcs":[[8649,8650,8651,-8550,-8448,-8575]]},{"type":"Polygon","id":48199,"arcs":[[-8441,8652,8653,8654,-8444,-8478]]},{"type":"Polygon","id":48171,"arcs":[[-8547,8655,8656,8657,-8586,-8544]]},{"type":"Polygon","id":48031,"arcs":[[-8488,-8623,8658,8659,8660,-8656,-8546]]},{"type":"MultiPolygon","id":22099,"arcs":[[[8661,8662,8663]],[[8664,8665,-8564,-8495,8666]]]},{"type":"Polygon","id":22047,"arcs":[[-8604,-8578,8667,8668,8669,-8667,-8494]]},{"type":"Polygon","id":48291,"arcs":[[-8655,8670,8671,8672,-8617,-8553,-8445]]},{"type":"Polygon","id":22019,"arcs":[[8673,8674,8675,-8426,-8558]]},{"type":"Polygon","id":22053,"arcs":[[-8505,8676,8677,8678,-8674,-8557,-8555]]},{"type":"Polygon","id":22001,"arcs":[[-8566,8679,8680,-8677,-8504]]},{"type":"Polygon","id":12121,"arcs":[[-8634,8681,8682,-8610,-8615]]},{"type":"Polygon","id":48021,"arcs":[[8683,8684,-8620,-8551,-8652]]},{"type":"Polygon","id":48477,"arcs":[[-8563,8685,8686,8687,-8650,-8574,-8541]]},{"type":"Polygon","id":22055,"arcs":[[-8666,8688,8689,-8680,-8565]]},{"type":"Polygon","id":48209,"arcs":[[8690,8691,-8659,-8622,8692]]},{"type":"Polygon","id":22005,"arcs":[[-8608,8693,8694,8695,-8668,-8577]]},{"type":"Polygon","id":12123,"arcs":[[8696,8697,8698,-8598,-8612]]},{"type":"Polygon","id":12129,"arcs":[[-8600,8699,8700,-8627,-8593]]},{"type":"Polygon","id":22095,"arcs":[[8701,8702,8703,-8694,-8607,-8513]]},{"type":"Polygon","id":48465,"arcs":[[-8591,8704,8705,8706,-8605,-8461]]},{"type":"Polygon","id":48137,"arcs":[[8707,8708,8709,8710,-8705,-8590,-8588]]},{"type":"Polygon","id":48265,"arcs":[[8711,8712,8713,-8708,-8587,-8658]]},{"type":"Polygon","id":12067,"arcs":[[-8683,8714,8715,-8697,-8611]]},{"type":"MultiPolygon","id":12109,"arcs":[[[8716,8716,8716]],[[8717,8718,8719,8720,-8635,8721]],[[-8637,8722]]]},{"type":"Polygon","id":48361,"arcs":[[-8676,8723,8724,-8653,-8440,-8427]]},{"type":"Polygon","id":48473,"arcs":[[8725,8726,8727,-8686,-8562,-8619]]},{"type":"Polygon","id":22089,"arcs":[[8728,-8702,8729]]},{"type":"MultiPolygon","id":22051,"arcs":[[[8730,-8731,8731]],[[8732,8733,8734,8735,-8730,-8583]]]},{"type":"Polygon","id":12045,"arcs":[[-8629,8736,8737,8738,-8646,8739,-8648,-8625]]},{"type":"Polygon","id":22071,"arcs":[[8740,8741,8742,-8733,-8582]]},{"type":"Polygon","id":12019,"arcs":[[8743,8744,8745,-8643,-8641]]},{"type":"Polygon","id":48245,"arcs":[[-8725,8746,8747,8748,-8671,-8654]]},{"type":"MultiPolygon","id":48201,"arcs":[[[-8673,8749,8750,8751,8752,8753,8754,-8726,-8618]]]},{"type":"MultiPolygon","id":22087,"arcs":[[[-8756,-8757,-8758,-8759]],[[-8759,8759,-8742,8760]]]},{"type":"Polygon","id":22093,"arcs":[[8761,8762,-8695,-8704]]},{"type":"Polygon","id":48149,"arcs":[[8763,8764,8765,8766,-8684,-8651,-8688]]},{"type":"Polygon","id":22113,"arcs":[[-8690,8767,8768,8769,-8678,-8681]]},{"type":"Polygon","id":12007,"arcs":[[-8746,8770,8771,-8644]]},{"type":"Polygon","id":12125,"arcs":[[-8772,8772,-8631,-8645]]},{"type":"Polygon","id":48259,"arcs":[[-8661,8773,8774,8775,-8712,-8657]]},{"type":"MultiPolygon","id":22045,"arcs":[[[-8670,8776,-8663,8777,8778,-8768,-8689,-8665]]]},{"type":"Polygon","id":48015,"arcs":[[-8728,8779,8780,8781,-8764,-8687]]},{"type":"Polygon","id":22007,"arcs":[[-8763,8782,8783,8784,-8664,-8777,-8669,-8696]]},{"type":"Polygon","id":48385,"arcs":[[-8714,8785,8786,-8709]]},{"type":"Polygon","id":48055,"arcs":[[-8685,8787,8788,-8693,-8621]]},{"type":"Polygon","id":22023,"arcs":[[-8679,-8770,8789,-8747,-8724,-8675]]},{"type":"Polygon","id":48091,"arcs":[[8790,8791,-8774,-8660,-8692]]},{"type":"MultiPolygon","id":12037,"arcs":[[[-8738,8792]],[[-8701,8793,-8737,-8628]]]},{"type":"Polygon","id":48089,"arcs":[[8794,8795,8796,-8765,-8782]]},{"type":"Polygon","id":22101,"arcs":[[-8785,8797,8798,-8778,-8662]]},{"type":"Polygon","id":12001,"arcs":[[-8771,8799,8800,8801,8802,-8632,-8773]]},{"type":"Polygon","id":12041,"arcs":[[-8803,8803,8804,-8715,-8682,-8633]]},{"type":"MultiPolygon","id":22057,"arcs":[[[8805,-8806,8806]],[[-8731,8807,8808,8809,8810,8811,8812,-8783,-8762,-8703,-8729,-8736,8813]]]},{"type":"Polygon","id":48019,"arcs":[[8814,-8786,-8713,-8776,8815,8816]]},{"type":"MultiPolygon","id":22075,"arcs":[[[-8734,-8743,-8760,8817]]]},{"type":"MultiPolygon","id":48071,"arcs":[[[-8749,8818,8819,8820,-8750,-8672]]]},{"type":"Polygon","id":48187,"arcs":[[8821,8822,8823,-8791,-8691,-8789]]},{"type":"MultiPolygon","id":12107,"arcs":[[[-8720,8824,8825,8826,8827]],[[8828,8829,8830,-8800,-8745]]]},{"type":"Polygon","id":48157,"arcs":[[8831,8832,-8780,-8727,-8755]]},{"type":"Polygon","id":48177,"arcs":[[8833,8834,8835,8836,-8822,-8788,-8767]]},{"type":"MultiPolygon","id":22109,"arcs":[[[8805,-8806,8806]],[[-8798,-8784,-8813,8837]]]},{"type":"Polygon","id":48029,"arcs":[[-8824,8838,8839,8840,-8816,-8775,-8792]]},{"type":"Polygon","id":48325,"arcs":[[8841,8842,8843,-8817,-8841]]},{"type":"MultiPolygon","id":12035,"arcs":[[[8844,8845,-8825,-8719]],[[8716,8716,8716]],[[8846,-8847,8716]]]},{"type":"Polygon","id":48481,"arcs":[[-8833,8847,8848,8849,-8795,-8781]]},{"type":"Polygon","id":48285,"arcs":[[8850,8851,8852,-8834,-8766,-8797]]},{"type":"Polygon","id":48463,"arcs":[[-8844,8853,8854,-8710,-8787,-8815]]},{"type":"Polygon","id":48271,"arcs":[[-8855,8855,8856,-8706,-8711]]},{"type":"MultiPolygon","id":48167,"arcs":[[[8857,-8753,8858]],[[8859,-8820]]]},{"type":"Polygon","id":48039,"arcs":[[-8858,8860,8861,-8848,-8832,-8754]]},{"type":"Polygon","id":12075,"arcs":[[-8802,8862,8863,8864,8865,-8804]]},{"type":"Polygon","id":12083,"arcs":[[8866,8867,8868,8869,-8863,-8801,-8831]]},{"type":"Polygon","id":48493,"arcs":[[-8837,8870,8871,-8839,-8823]]},{"type":"MultiPolygon","id":12127,"arcs":[[[8872,8873,8874,8875,8876,-8826,-8846,8877]]]},{"type":"Polygon","id":48123,"arcs":[[8878,8879,-8835,-8853,8880]]},{"type":"Polygon","id":12069,"arcs":[[-8876,8881,8882,8883,8884,-8868,8885]]},{"type":"Polygon","id":48239,"arcs":[[8886,8887,8888,8889,8890,8891,8892,-8851,-8796,-8850]]},{"type":"Polygon","id":48013,"arcs":[[8893,8894,-8842,-8840,-8872,8895,8896]]},{"type":"Polygon","id":48321,"arcs":[[8897,-8887,-8849,-8862,8898]]},{"type":"Polygon","id":48255,"arcs":[[8899,8900,-8896,-8871,-8836,-8880,8901]]},{"type":"MultiPolygon","id":48469,"arcs":[[[-8893,8902,8903,8904,8905,-8881,-8852]]]},{"type":"Polygon","id":48163,"arcs":[[-8895,8906,8907,-8843]]},{"type":"Polygon","id":48507,"arcs":[[-8908,8908,8909,-8854]]},{"type":"Polygon","id":48323,"arcs":[[-8910,8910,8911,8912,-8856]]},{"type":"MultiPolygon","id":12017,"arcs":[[[-8864,-8870,8913,8914,8915]]]},{"type":"Polygon","id":12119,"arcs":[[-8885,8916,8917,8918,-8914,-8869]]},{"type":"Polygon","id":48175,"arcs":[[-8906,8919,8920,-8902,-8879]]},{"type":"Polygon","id":12117,"arcs":[[8921,-8882,-8875]]},{"type":"MultiPolygon","id":12009,"arcs":[[[8922,8923,8924,8925,-8874]]]},{"type":"Polygon","id":48297,"arcs":[[8926,8927,8928,-8897,-8901,8929,8930]]},{"type":"Polygon","id":12095,"arcs":[[-8922,-8926,8931,-8883]]},{"type":"MultiPolygon","id":48057,"arcs":[[[8932,-8933,8933]],[[-8898,8934,-8888]],[[8935,-8904,8936]],[[-8890,8937]]]},{"type":"Polygon","id":48025,"arcs":[[-8921,8938,8939,-8930,-8900]]},{"type":"Polygon","id":12053,"arcs":[[-8919,8940,8941,-8915]]},{"type":"Polygon","id":48283,"arcs":[[8942,8943,8944,-8907]]},{"type":"Polygon","id":48311,"arcs":[[-8929,8945,-8943,-8894]]},{"type":"Polygon","id":48127,"arcs":[[-8945,8946,-8911,-8909]]},{"type":"Polygon","id":48391,"arcs":[[-8936,8947,8948,8949,8950,8951,-8939,-8920,-8905]]},{"type":"MultiPolygon","id":12101,"arcs":[[[-8918,8952,8953,8954,8955,-8941]]]},{"type":"Polygon","id":12105,"arcs":[[8956,8957,8958,8959,-8953,-8917,-8884]]},{"type":"Polygon","id":12097,"arcs":[[-8925,8960,8961,-8957,-8932]]},{"type":"MultiPolygon","id":48007,"arcs":[[[8950,-8963,-8964]],[[8964,8965]],[[-8949,8966,-8933,8967]]]},{"type":"Polygon","id":48479,"arcs":[[8968,8969,8970,8971,-8912,-8947,-8944]]},{"type":"Polygon","id":48409,"arcs":[[-8963,-8965,8972,8973,8974,8975,-8931,-8940,-8952]]},{"type":"MultiPolygon","id":12103,"arcs":[[[8976,8977,-8955]]]},{"type":"Polygon","id":12057,"arcs":[[-8960,8978,8979,-8977,-8954]]},{"type":"Polygon","id":48131,"arcs":[[8980,8981,8982,-8969,-8946,-8928]]},{"type":"Polygon","id":48249,"arcs":[[-8976,8983,8984,8985,-8981,-8927]]},{"type":"MultiPolygon","id":48355,"arcs":[[[8986,-8984,-8975,8987]]]},{"type":"MultiPolygon","id":12061,"arcs":[[[8988,8989,-8961,-8924,8990]],[[8991]]]},{"type":"Polygon","id":12055,"arcs":[[8992,8993,8994,8995,-8958]]},{"type":"Polygon","id":12049,"arcs":[[-8996,8996,8997,-8959]]},{"type":"MultiPolygon","id":12081,"arcs":[[[8998]],[[-8998,8999,9000,9001,-8979]]]},{"type":"Polygon","id":12093,"arcs":[[-8990,9002,9003,9004,-8993,-8962]]},{"type":"MultiPolygon","id":48273,"arcs":[[[9005,9006,9007,-8985,-8987]]]},{"type":"MultiPolygon","id":12111,"arcs":[[[8991]],[[9008,9009,9010,9011,-9003,-8989]]]},{"type":"MultiPolygon","id":12115,"arcs":[[[-9001,9012,9013,9014,9015,9016]],[[8998]]]},{"type":"Polygon","id":48247,"arcs":[[9017,9018,9019,-8970,-8983]]},{"type":"Polygon","id":12027,"arcs":[[-8995,9020,-9013,-9000,-8997]]},{"type":"Polygon","id":48505,"arcs":[[-9020,9021,9022,-8971]]},{"type":"MultiPolygon","id":48261,"arcs":[[[9023,9024,9025,-9007,9026]]]},{"type":"Polygon","id":48047,"arcs":[[-8986,-9008,-9026,9027,9028,-9018,-8982]]},{"type":"MultiPolygon","id":12085,"arcs":[[[9029,9030,-9004,-9012,9031]]]},{"type":"Polygon","id":12043,"arcs":[[9032,9033,-8994,-9005]]},{"type":"MultiPolygon","id":12015,"arcs":[[[9034]],[[-9016,9035]],[[-9034,9036,9037,-9014,-9021]]]},{"type":"MultiPolygon","id":12099,"arcs":[[[9038,9039,9040,-9031]]]},{"type":"Polygon","id":12051,"arcs":[[9041,9042,9043,-9033,-9041]]},{"type":"MultiPolygon","id":12071,"arcs":[[[-9044,9044,9045,-9037]],[[9034]]]},{"type":"Polygon","id":48427,"arcs":[[-9029,9046,9047,-9022,-9019]]},{"type":"Polygon","id":48215,"arcs":[[-9025,9048,9049,9050,-9047,-9028]]},{"type":"MultiPolygon","id":48489,"arcs":[[[9051]],[[9052,-9049,-9024,9053]]]},{"type":"MultiPolygon","id":12021,"arcs":[[[9054]],[[9055,9056,9057,9058,-9045,-9043]]]},{"type":"MultiPolygon","id":48061,"arcs":[[[-9050,-9053,9059]],[[9051]]]},{"type":"Polygon","id":12011,"arcs":[[9060,9061,-9056,-9042,-9040]]},{"type":"Polygon","id":12086,"arcs":[[9062,9063,9064,9065,-9057,-9062,9066]]},{"type":"MultiPolygon","id":12087,"arcs":[[[9054]],[[-9066,9067,-9058]]]},{"type":"Polygon","id":4015,"arcs":[[-5568,-6466,-7083,-6321,-5740,-4469,-5175,-5248]]},{"type":"Polygon","id":12029,"arcs":[[-8805,-8866,9068,-8698,-8716]]},{"type":"Polygon","id":27077,"arcs":[[-120,-166,-106,9069]]},{"type":"Polygon","id":27031,"arcs":[[-187,9070]]},{"type":"Polygon","id":55031,"arcs":[[9071,-641,-634,-562,-454,-133,9072]]},{"type":"Polygon","id":55007,"arcs":[[9073,-639,-9072,9074]]},{"type":"MultiPolygon","id":55003,"arcs":[[[-531,-686,-635,-9074,9075]]]},{"type":"MultiPolygon","id":26083,"arcs":[[[9076,9077]]]},{"type":"MultiPolygon","id":26061,"arcs":[[[-426,-561,-416,9078,9079]],[[9080,9081,-9077]]]},{"type":"Polygon","id":26103,"arcs":[[9082,9083,-681,-608,-556,-424,9084]]},{"type":"Polygon","id":26003,"arcs":[[-547,9085,-9083,9086,-465]]},{"type":"Polygon","id":26041,"arcs":[[-9086,-546,9087,-678,-9084]]},{"type":"Polygon","id":55075,"arcs":[[-680,9088,-839,-653,-670,-606]]},{"type":"Polygon","id":55029,"arcs":[[-1121,9089]]},{"type":"MultiPolygon","id":26033,"arcs":[[[9090,9091,-462,9092]]]},{"type":"MultiPolygon","id":26097,"arcs":[[[9093,-544,-463,-9092]]]},{"type":"Polygon","id":26047,"arcs":[[-734,9094,9095]]},{"type":"MultiPolygon","id":26029,"arcs":[[[-9095,-733,-908,-905,9096]]]},{"type":"MultiPolygon","id":26089,"arcs":[[[9097,-1067,9098]]]},{"type":"Polygon","id":26055,"arcs":[[-903,-1035,-1176,-1064,-9098,9099]]},{"type":"Polygon","id":26007,"arcs":[[9100,-1032,-909,-782]]},{"type":"Polygon","id":26011,"arcs":[[9101,-1374,-1337,-1186,-1184]]},{"type":"Polygon","id":26063,"arcs":[[-1512,-1491,9102]]},{"type":"Polygon","id":26147,"arcs":[[-1859,-1658,-1510,9103]]},{"type":"Polygon","id":26163,"arcs":[[9104,9105,-2055,-1860,-1857]]},{"type":"MultiPolygon","id":26115,"arcs":[[[9106,-2416,-2197,-2052,-9106]]]},{"type":"MultiPolygon","id":45019,"arcs":[[[9107,-7626,9108,-7628,-7574,-7462]],[[7360,-7361,7361]],[[-7460,-7364,9109,9110]]]},{"type":"Polygon","id":15005,"arcs":[[9111,-9112,9112]]},{"type":"Polygon","id":15001,"arcs":[[9113]]},{"type":"MultiPolygon","id":15007,"arcs":[[[9114]]]},{"type":"MultiPolygon","id":15009,"arcs":[[[-9112,9115]],[[9116]]]},{"type":"Polygon","id":15003,"arcs":[[9117]]},{"type":"MultiPolygon","id":2016,"arcs":[[[9118]],[[9119]],[[9120]],[[9121]],[[9122]]]},{"type":"MultiPolygon","id":2013,"arcs":[[[9123]],[[9124,9125,9126,9127]]]},{"type":"MultiPolygon","id":2130,"arcs":[[[9128]]]},{"type":"Polygon","id":2060,"arcs":[[9129,9130]]},{"type":"MultiPolygon","id":2070,"arcs":[[[9131,9132]],[[9133,9134,9135]]]},{"type":"MultiPolygon","id":2164,"arcs":[[[9136,9137,9138,-9127,9139,-9131,9140,-9135,9141]]]},{"type":"MultiPolygon","id":2150,"arcs":[[[9142]],[[9143]],[[9144,-9138,9145,9146]]]},{"type":"MultiPolygon","id":2110,"arcs":[[[9147,-9148,9148]],[[9149,-9150,9150]],[[9151,9152,9153,9154]],[[9155,9156,9157,9158,9159,9160,9161]],[[9162,9163]]]},{"type":"MultiPolygon","id":2280,"arcs":[[[9164,-9165,9165]],[[9166]],[[9167]],[[9168]],[[9169]],[[9170,9171,9172,9173]]]},{"type":"MultiPolygon","id":2232,"arcs":[[[9174,9175,9176]],[[-9174,9177,-9148,9178,-9157,9179]],[[-9152,-9150,9180]],[[9181,9182]],[[9183]],[[-9185,9152,9153]],[[9185,9186,9187,9188]],[[9189,9190,9191,9192]]]},{"type":"MultiPolygon","id":2100,"arcs":[[[9183]],[[-9162,-9163,9193,-9190,9194]],[[9195,-9188,9196,-9192]]]},{"type":"MultiPolygon","id":2220,"arcs":[[[-9165,9197]],[[-9175,-9182,9198]]]},{"type":"MultiPolygon","id":2270,"arcs":[[[9199]],[[9200]],[[9201,9202,9203,9204,9205]]]},{"type":"MultiPolygon","id":2050,"arcs":[[[9206]],[[9207]],[[9208,-9204,9209,9210,9211,-9142,-9134,9212,-9133,9213]]]},{"type":"Polygon","id":2170,"arcs":[[9214,9215,9216,9217,-9211,9218,9219,9220]]},{"type":"Polygon","id":2068,"arcs":[[9221,9222,-9220,9223]]},{"type":"Polygon","id":2020,"arcs":[[-9216,9224,9225,9226]]},{"type":"MultiPolygon","id":2261,"arcs":[[[9227,9228]],[[9229,-9230,9230]],[[9231,9232]],[[9233,-9225,-9215,9234,9235,9236,9237]]]},{"type":"MultiPolygon","id":2122,"arcs":[[[9229,-9230,9230]],[[-9226,-9234,9238,-9232,9239,-9228,9240]],[[-9146,-9137,-9212,-9218,9241]]]},{"type":"Polygon","id":2282,"arcs":[[-9237,9242,-9186,9243]]},{"type":"Polygon","id":2290,"arcs":[[9244,9245,9246,-9224,-9219,-9210,-9203,9247,9248,9249]]},{"type":"Polygon","id":2090,"arcs":[[9250,-9222,-9247]]},{"type":"Polygon","id":2240,"arcs":[[-9235,-9221,-9223,-9251,-9246,9251]]},{"type":"MultiPolygon","id":2185,"arcs":[[[-9250,9252,9253]]]},{"type":"Polygon","id":2188,"arcs":[[-9249,9254,9255,-9253]]},{"type":"MultiPolygon","id":2180,"arcs":[[[9256]],[[9257,-9255,-9248,-9202,9258]]]},{"type":"MultiPolygon","id":2201,"arcs":[[[9259]],[[9260]],[[-9172,9261]]]},{"type":"Polygon","id":72125,"arcs":[[9262,9263,9264,9265,9266,9267]]},{"type":"Polygon","id":72003,"arcs":[[9268,9269,9270,9271,9272]]},{"type":"Polygon","id":72097,"arcs":[[9273,9274,-9268,9275,9276,9277,9278]]},{"type":"Polygon","id":72065,"arcs":[[9279,9280,9281,9282,9283]]},{"type":"Polygon","id":72055,"arcs":[[9284,9285,9286,9287]]},{"type":"Polygon","id":72083,"arcs":[[9288,9289,-9274,9290,9291]]},{"type":"Polygon","id":72025,"arcs":[[9292,9293,9294,9295,9296,9297,9298]]},{"type":"Polygon","id":72045,"arcs":[[9299,9300,9301,9302,9303]]},{"type":"Polygon","id":72133,"arcs":[[9304,9305,9306,9307]]},{"type":"Polygon","id":72121,"arcs":[[-9288,9308,-9264,9309,9310]]},{"type":"Polygon","id":72027,"arcs":[[-9283,9311,9312,9313]]},{"type":"Polygon","id":72033,"arcs":[[9314,9315,9316,9317]]},{"type":"Polygon","id":72001,"arcs":[[9318,9319,9320,9321,9322,9323]]},{"type":"Polygon","id":72111,"arcs":[[9324,9325,9326,-9320]]},{"type":"Polygon","id":72047,"arcs":[[9327,9328,9329,9330,9331,9332]]},{"type":"Polygon","id":72091,"arcs":[[9333,9334,9335,9336,9337]]},{"type":"Polygon","id":72013,"arcs":[[9338,9339,9340,9341,-9280,9342]]},{"type":"Polygon","id":72145,"arcs":[[9343,9344,-9334,9345]]},{"type":"Polygon","id":72031,"arcs":[[9346,9347,9348,9349,9350]]},{"type":"Polygon","id":72061,"arcs":[[9351,9352,9353,-9315,9354]]},{"type":"Polygon","id":72129,"arcs":[[9355,9356,9357,9358,-9295,9359]]},{"type":"Polygon","id":72075,"arcs":[[9360,9361,-9308,9362,9363]]},{"type":"Polygon","id":72063,"arcs":[[-9348,9364,-9360,-9294,9365]]},{"type":"Polygon","id":72073,"arcs":[[9366,9367,9368,9369]]},{"type":"Polygon","id":72143,"arcs":[[9370,9371,-9332,9372,-9344,9373]]},{"type":"Polygon","id":72011,"arcs":[[9374,-9291,-9279,9375,9376,-9270,9377]]},{"type":"Polygon","id":72081,"arcs":[[-9282,9378,-9323,9379,-9289,9380,-9312]]},{"type":"Polygon","id":72015,"arcs":[[9381,9382,9383]]},{"type":"Polygon","id":72079,"arcs":[[-9309,-9287,9384,9385,-9265]]},{"type":"Polygon","id":72009,"arcs":[[9386,9387,9388,9389,9390]]},{"type":"Polygon","id":72099,"arcs":[[9391,9392,-9378,-9269,9393]]},{"type":"Polygon","id":72023,"arcs":[[9394,-9266,-9386,9395,-9277]]},{"type":"Polygon","id":72109,"arcs":[[9396,9397,9398,-9384,9399,-9359]]},{"type":"Polygon","id":72101,"arcs":[[-9373,-9331,9400,9401,-9345]]},{"type":"Polygon","id":72117,"arcs":[[-9377,9402,-9271]]},{"type":"Polygon","id":72005,"arcs":[[-9394,-9273,9403,9404]]},{"type":"Polygon","id":72059,"arcs":[[-9327,9405,9406,-9321]]},{"type":"Polygon","id":72021,"arcs":[[-9354,9407,-9300,9408,9409,9410,-9316]]},{"type":"Polygon","id":72141,"arcs":[[9411,-9369,9412,-9324,-9379,-9281,-9342]]},{"type":"Polygon","id":72041,"arcs":[[-9297,9413,-9391,-9302,9414]]},{"type":"Polygon","id":72123,"arcs":[[9415,9416,-9306,9417,-9388,9418]]},{"type":"Polygon","id":72131,"arcs":[[9419,-9381,-9292,-9375,-9393,9420]]},{"type":"Polygon","id":72035,"arcs":[[9421,-9419,-9387,-9414,-9296]]},{"type":"Polygon","id":72135,"arcs":[[-9410,9422,-9333,-9372,9423,9424]]},{"type":"Polygon","id":72115,"arcs":[[-9313,-9420,9425,9426]]},{"type":"Polygon","id":72054,"arcs":[[-9336,9427,-9340,9428]]},{"type":"Polygon","id":72105,"arcs":[[-9409,-9304,9429,-9328,-9423]]},{"type":"Polygon","id":72017,"arcs":[[-9337,-9429,-9339,9430]]},{"type":"Polygon","id":72127,"arcs":[[-9350,9431,-9299,9432,-9352,9433]]},{"type":"Polygon","id":72139,"arcs":[[-9349,-9366,-9293,-9432]]},{"type":"Polygon","id":72057,"arcs":[[-9400,-9383,9434,-9416,-9422]]},{"type":"Polygon","id":72153,"arcs":[[-9322,-9407,9435,-9285,-9311,9436]]},{"type":"Polygon","id":72043,"arcs":[[9437,9438,-9389,-9418,-9305,-9362,9439]]},{"type":"Polygon","id":72149,"arcs":[[-9440,-9361,9440]]},{"type":"Polygon","id":72039,"arcs":[[-9402,9441,-9370,-9412,-9341,-9428,-9335]]},{"type":"Polygon","id":72113,"arcs":[[-9364,9442,-9325,-9319,-9413,-9368]]},{"type":"Polygon","id":72107,"arcs":[[9443,-9438,-9441,-9367,-9442,-9401,-9330]]},{"type":"Polygon","id":72067,"arcs":[[-9267,-9395,-9276]]},{"type":"Polygon","id":72071,"arcs":[[-9426,-9421,-9392,-9405,9444]]},{"type":"Polygon","id":72007,"arcs":[[-9298,-9415,-9301,-9408,-9353,-9433]]},{"type":"Polygon","id":72019,"arcs":[[-9303,-9390,-9439,-9444,-9329,-9430]]},{"type":"Polygon","id":72093,"arcs":[[-9380,-9437,-9310,-9263,-9275,-9290]]},{"type":"Polygon","id":72151,"arcs":[[9445,9446,9447,-9397,-9358,9448]]},{"type":"Polygon","id":72137,"arcs":[[-9317,-9411,-9425,9449,9450]]},{"type":"Polygon","id":72089,"arcs":[[9451,9452,9453]]},{"type":"Polygon","id":72087,"arcs":[[9454,9455,-9351,9456]]},{"type":"Polygon","id":72095,"arcs":[[9457,-9398,-9448]]},{"type":"Polygon","id":72119,"arcs":[[-9453,9458,9459,9460,-9455,9461]]},{"type":"Polygon","id":72103,"arcs":[[9462,9463,9464,9465,-9460]]},{"type":"Polygon","id":72085,"arcs":[[-9466,9466,-9449,-9357,9467,9468]]},{"type":"Polygon","id":72029,"arcs":[[-9461,-9469,9469,-9347,-9456]]},{"type":"Polygon","id":72053,"arcs":[[9470,-9452,9471]]},{"type":"Polygon","id":72077,"arcs":[[-9468,-9356,-9365,-9470]]},{"type":"Polygon","id":72037,"arcs":[[9472,-9463,-9459,-9471]]},{"type":"Polygon","id":72069,"arcs":[[9473,-9446,-9467,-9465]]},{"type":"Polygon","id":72051,"arcs":[[-9450,-9424,-9371,9474]]}]},"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":53,"arcs":[[[83,78,81,-22,79,-113,230,231,-346,375,376,-510,552,485,525,527,474,475,657,658,659,660,661,569,570,656,-625,574,575,577,447,324,217,171,218,300,258,259,352,353,302,388,351,288,180,169,181,123,2,73]]]},{"type":"Polygon","id":30,"arcs":[[108,-91,106,-127,205,-215,354,-362,487,488,489,641,642,643,726,727,728,663,664,789,790,621,615,616,617,720,699,700,701,500,-492,308,309,330,-225,185,-110,33,-20,34,18,41,97,86,44,48,27,8,51]]},{"type":"Polygon","id":16,"arcs":[[-331,-310,-309,491,-501,-702,-701,-700,-721,-618,1074,-1126,-1125,1525,-1666,-1665,1974,2063,2029,2030,1943,1944,1825,1514,-1209,-1208,-1207,1044,-925,871,-675,495,508,509,-377,-376,345,-232,-231,112,-80,21,22,19,-34,109,-186,224]]},{"type":"Polygon","id":38,"arcs":[[30,62,66,55,52,-151,-150,193,-203,298,-330,384,-520,522,523,593,594,599,600,597,598,503,553,590,591,601,-489,-488,361,-355,214,-206,126,-107,90,91,96,101,38]]},{"type":"Polygon","id":27,"arcs":[[9069,120,136,188,9070,187,131,132,453,561,562,-633,757,-763,858,859,1004,-1028,1091,-1114,-1138,-1137,-1141,1309,-1359,1437,1438,1439,1446,1447,1434,1435,1436,1430,1431,1452,1453,1459,1460,1449,1450,1451,1427,1428,1424,1425,1278,1131,-998,-997,874,-850,802,-709,668,-523,519,-385,329,-299,202,-194,149,150,-53,58,104]]},{"type":"MultiPolygon","id":23,"arcs":[[[875,1070,1224,1228,1328,1230,1329,1319,1327,1321,1472,1473,-1242,846,847,848,780,537,341,776]]]},{"type":"MultiPolygon","id":26,"arcs":[[[456,457,458,414,9078,9079,426,9084,9086,465,9092,9090,9093,544,9087,678,679,605,606,557,558,559]],[[9100,1028,1182,9101,1369,1495,9102,1512,9103,1855,9104,9106,-2416,2197,2198,2209,2210,2206,2207,2211,2212,2214,2215,2124,2125,2126,2073,1915,1716,1618,1468,1317,1171,1065,9098,9099,903,9096,9095,734,783]],[[9077,9080,9081]]]},{"type":"MultiPolygon","id":55,"arcs":[[[-559,-558,-607,-606,-680,9088,839,1107,1119,9089,1117,1231,1409,1556,1730,1887,1949,1950,1951,1885,1886,1879,1880,1874,1875,1893,1894,1709,1710,1711,1627,-1588,1499,-1438,1358,-1310,1140,1136,1137,1113,-1092,1027,-1005,-860,-859,762,-758,632,-563,-562,-454,-133,9072,9074,9075,531,-458,-457,-560]]]},{"type":"Polygon","id":41,"arcs":[[624,-657,-571,-570,-662,-661,-660,-659,-658,-476,-475,-528,-526,-486,-553,-509,-496,674,-872,924,-1045,1206,1207,1208,1209,1363,1535,1536,1532,1533,1810,1900,1901,1821,1822,1544,1399,1240,935,739,589,627,-575]]},{"type":"Polygon","id":46,"arcs":[[-504,-599,-598,-601,-600,-595,-594,-524,-669,708,-803,849,-875,996,997,-1132,-1279,-1426,1455,-1585,1592,-1689,1762,1763,1764,1765,1767,1768,1738,1739,1741,1602,1603,1612,1613,1486,1641,1640,1506,1507,1614,1615,-1576,1422,-1313,1194,1134,-987,894,-643,-642,-490,-602,-592,-591,-554]]},{"type":"Polygon","id":33,"arcs":[[-1474,1548,1679,1680,1712,1713,1735,1736,-1685,1547,-1391,1215,1216,-1068,-950,856,857,-848,-847,1241]]},{"type":"Polygon","id":50,"arcs":[[952,-857,949,1067,-1217,-1216,1390,-1548,1684,1685,1667,1668,1669,-1480,1419,1237,-1155,1084,-957,954,955,948,962]]},{"type":"MultiPolygon","id":36,"arcs":[[[1154,-1238,-1420,1479,-1670,1815,-1926,2200,2201,-2455,-2454,2646,2933,2984,2935,2645,2662,2660,2661,2471,2472,2473,2239,2240,2015,2075,2076,2078,2110,2111,1978,1979,2010,2011,2007,2008,1982,1983,1984,1761,-1757,1648,1645,1653,1656,1633,1504,1223,973,985,959,-955,956,-1085]],[[1756,1757]],[[2941,3008,3041,3010,3011,2943,2674,2939,2940]],[[-3007,3006,9475]]]},{"type":"Polygon","id":56,"arcs":[[-664,-729,-728,-727,-644,-895,986,-1135,-1195,1312,-1423,1575,1576,-1792,1968,1969,-2448,2455,2456,2457,2061,2062,2056,2057,2058,2115,2116,2117,2522,-2259,1663,1664,1665,-1526,1124,1125,-1075,-617,-616,-622,-791,-790,-665]]},{"type":"Polygon","id":19,"arcs":[[-1436,-1435,-1448,-1447,-1440,-1439,-1500,1587,-1628,-1712,-1711,1945,-2020,2080,-2152,2228,2229,-2365,-2364,2613,2810,-2816,3004,3005,2965,2966,2968,2969,2980,2981,2978,2979,2975,2976,2972,2973,2962,2963,2959,2960,2956,2957,-2823,2769,-2719,2557,2558,-2449,2330,-2220,2129,-2113,1987,1988,-1764,-1763,1688,-1593,1584,-1456,-1425,-1429,-1428,-1452,-1451,-1450,-1461,-1460,-1454,-1453,-1432,-1431,-1437]]},{"type":"Polygon","id":31,"arcs":[[1791,-1577,-1616,-1615,-1508,-1507,-1641,-1642,-1487,-1614,-1613,-1604,-1603,-1742,-1740,-1739,-1769,-1768,-1766,-1765,-1989,-1988,2112,-2130,2219,-2331,2448,-2559,-2558,2718,-2770,2822,-2958,3018,-3157,3361,3362,3363,3364,3359,3360,3197,3198,3305,3304,3295,3296,3288,3289,3291,3292,3309,3301,3306,3308,3298,3299,-3245,3079,-3030,2858,2859,2712,2597,2598,2626,2627,-2456,2447,-1970,-1969]]},{"type":"MultiPolygon","id":25,"arcs":[[[1931,2040,2088,2099,2086,2095,2204,2097,2169,2170,2171,2172,2173,2091,1938,1939,2092,2093,2094,1924,1925,-1816,-1669,-1668,-1686,-1737,-1736,-1714,-1713,-1681,1862,2042]]]},{"type":"Polygon","id":17,"arcs":[[-1875,-1881,-1880,-1887,-1886,-1952,-1951,2038,2155,2156,2417,-2439,2666,-2715,2844,-3045,3205,3206,-3419,3590,-3779,3882,-4027,4090,-4293,-4292,4525,-4546,4745,-4768,4973,-5008,5190,5191,5193,-5324,5392,5404,5398,5399,5400,-5183,-5182,-4997,4964,4773,4774,4566,4567,-4303,-4369,4229,4230,4231,4020,3925,3926,-3789,3613,3614,-3549,3390,-3368,3123,3124,-3005,2815,-2811,-2614,2363,2364,-2230,-2229,2151,-2081,2019,-1946,-1710,-1895,-1894,-1876]]},{"type":"Polygon","id":42,"arcs":[[-2008,-2012,-2011,-1980,-1979,-2112,-2111,-2079,-2077,-2076,-2016,-2241,-2240,-2474,2504,2704,-2802,-2801,-3015,3134,3135,-3400,3426,3457,3458,3371,3372,3323,3373,3374,3375,3455,3456,3331,3332,3409,3320,3334,3335,3419,3420,3421,3479,3480,-3479,3219,3220,3221,-3126,2993,-2921,2794,-2788,2572,-2565,2360,-2312,2121,2122,-1984,-1983,-2009]]},{"type":"Polygon","id":9,"arcs":[[-2093,-1940,2232,2233,-2370,2432,2433,2464,-2463,2466,2452,2453,2454,-2202,-2201,-1925,-2095,-2094]]},{"type":"MultiPolygon","id":44,"arcs":[[[2365,2236,2367,2458,-2433,2369,-2234,-2233,-1939,-2092,-2174,-2173]],[[2450,-2171]]]},{"type":"MultiPolygon","id":6,"arcs":[[[-1537,2298,-2310,-2309,-2308,-2307,3984,3985,-4159,-4158,-4157,-3663,-4173,4415,-4615,-4107,5297,-5741,6320,6321,-7082,-7081,-7492,7505,7464,7292,6834,6801,6686,6328,5705,5437,5122,5028,5119,5269,4992,4855,4692,4399,4538,4537,4319,4327,4328,-4329,4686,4330,3494,2583,2288,-1822,-1902,-1901,-1811,-1534,-1533]]]},{"type":"Polygon","id":49,"arcs":[[-1664,2258,-2523,-2118,-2117,-2871,-2870,2985,2986,-3451,3880,-4473,4588,4589,4590,4591,4592,4593,5246,5247,5174,-4468,-4467,-4466,3852,-3436,-3435,2809,-2277,2271,-1944,-2031,-2030,-2064,-1975]]},{"type":"Polygon","id":32,"arcs":[[-1364,-1210,-1515,-1826,-1945,-2272,2276,-2810,3434,3435,-3853,4465,4466,4467,4468,5739,5740,-5298,4106,4614,-4416,4172,3662,4156,4157,4158,-3986,-3985,2306,2307,2308,2309,-2299,-1536]]},{"type":"Polygon","id":39,"arcs":[[-2573,2787,-2795,2920,2921,-3128,3145,3146,-3395,3402,-3478,3600,3601,3753,3754,3755,3847,-3924,4080,4078,4212,4213,4341,4342,4343,4344,4221,4222,4200,4034,4035,4013,4014,4015,3990,3991,3992,3993,3791,-3670,3579,-3484,3285,3286,-3175,3055,-2927,2905,-2687,-2686,2612,-2524,2444,-2384,-2210,-2199,-2198,2415,2416,2421,2422,2567,2497,2534,2483,2357,2315,-2122,2311,-2361,2564]]},{"type":"Polygon","id":18,"arcs":[[-2207,-2211,2383,-2445,2523,-2613,2685,2686,-2906,2926,-3056,3174,-3287,-3286,3483,-3580,3669,-3792,-3994,3999,-4117,-4116,4272,4273,4281,4282,-4404,4502,4503,4647,4640,4641,4642,4637,4732,4733,4734,4791,4792,4761,4762,4811,4765,4766,4767,-4746,4545,-4526,4291,4292,-4091,4026,-3883,3778,-3591,3418,-3207,-3206,3044,-2845,2714,-2667,2438,-2418,-2157,2439,2441,2380,-2126,-2125,-2216,-2215,-2213,-2212,-2208]]},{"type":"Polygon","id":34,"arcs":[[-2661,2786,3003,2953,3045,3138,3139,3227,3228,-3229,3405,3666,3979,3804,3649,3650,3615,3651,3589,3532,3398,3399,-3136,-3135,3014,2800,2801,-2705,-2505,-2473,-2472,-2662]]},{"type":"Polygon","id":8,"arcs":[[-2457,-2628,-2627,-2599,-2598,-2713,-2860,-2859,3029,-3080,3244,3245,-3489,3799,3800,-4128,4204,-4438,-4437,4718,4719,-5080,5148,5149,5150,5042,5043,5138,5139,5342,5343,5328,5329,5154,5152,-4591,-4590,-4589,4472,-3881,3450,-2987,-2986,2869,2870,-2116,-2059,-2058,-2057,-2063,-2062,-2458]]},{"type":"Polygon","id":54,"arcs":[[-3422,-3421,-3684,-3683,-3682,-3680,-3679,-3678,-3676,-3675,-3674,3878,3879,3769,3724,3853,-3898,4041,4042,4248,4249,4250,4381,4382,-4718,4722,-4961,5106,5107,5206,5207,5208,5241,5242,4938,4939,4940,4645,4646,-4585,-4343,-4342,-4214,-4213,-4079,-4081,3923,-3848,-3756,-3755,-3754,-3602,-3601,3477,-3403,3394,-3147,-3146,3127,-2922,-2994,3125,-3222,-3221,-3220,3478,-3481,-3480]]},{"type":"Polygon","id":29,"arcs":[[-3391,3548,-3615,-3614,3788,-3927,-3926,-4021,-4232,-4231,-4230,4368,4302,-4568,-4567,-4775,-4774,-4965,4996,5181,5182,-5401,-5400,-5463,5537,5538,5539,5726,5727,5728,5729,-5920,5976,5977,5791,5792,5793,5794,5690,5743,5744,5716,5717,5546,5754,5755,5746,5747,5643,5668,5669,5757,5758,-5595,5550,-5388,5374,-5133,-5132,4878,4879,-4662,4613,-4394,4347,-4198,4049,4050,3900,3856,3857,-3745,3625,-3529,3433,3366,-3362,3156,-3019,-2957,-2961,-2960,-2964,-2963,-2974,-2973,-2977,-2976,-2980,-2979,-2982,-2981,-2970,-2969,-2967,-2966,-3006,-3125,-3124,3367]]},{"type":"Polygon","id":20,"arcs":[[-3307,-3302,-3310,-3293,-3292,-3290,-3289,-3297,-3296,-3305,-3306,-3199,-3198,-3361,-3360,-3365,-3364,-3363,-3367,-3434,3528,-3626,3744,-3858,-3857,-3901,-4051,-4050,4197,-4348,4393,-4614,4661,-4880,-4879,5131,5132,-5375,5387,5388,5389,5362,5363,5354,5355,5422,5423,5277,5278,5280,5281,5357,5358,5290,5291,5359,5360,5287,5288,5284,5351,5352,5350,5348,-5149,5079,-4720,-4719,4436,4437,-4205,4127,-3801,-3800,3488,-3246,-3300,-3299,-3309]]},{"type":"MultiPolygon","id":10,"arcs":[[[3615,-3616,3616]],[[3955,3956,-3934,3619,3620,-3372,-3459,3617,3957,4242,4243,4244,4245,-4118]]]},{"type":"MultiPolygon","id":24,"arcs":[[[-3375,-3374,-3324,-3373,-3621,-3620,3933,-3957,-3956,4117,-4246,-4245,-4244,4626,4623,4624,4697,4531,4428,4119,4256,4257,4023,3935,3685,3695,3701,3943,4046,4369,4142,4457,4571,4459,4144,4145,3969,3970,3971,3709,3672,3673,3674,3675,3677,3678,3679,3681,3682,3683,-3420,-3336,-3335,-3321,-3410,-3333,-3332,-3457,-3456,-3376]],[[-4696,4695,4696]]]},{"type":"MultiPolygon","id":51,"arcs":[[[-3879,-3673,-3710,-3972,-3971,-4237,4267,4348,4191,4258,4512,4651,4706,4902,5024,4842,4705,4819,5060,5061,-5062,5255,5203,4947,4985,5161,5305,5367,5486,5513,5467,5304,5262,5115,5225,5408,5412,5456,5496,5702,5697,5732,5694,5733,5651,5676,5671,5672,5673,5674,5734,5735,5700,5701,5630,5631,5632,5706,5554,5555,5710,5711,5712,5542,5543,5544,5501,5784,5503,5504,5736,5737,5724,5725,5678,5751,5752,5753,5686,5687,5789,5683,5718,5719,5720,5708,5709,-5654,-5558,5471,-5443,-5072,-5071,-5070,-4939,-5243,-5242,-5209,-5208,-5207,-5108,-5107,4960,-4723,4717,-4383,-4382,-4251,-4250,-4249,-4043,-4042,3897,-3854,-3725,-3770,-3880]],[[4895,4895,4895]],[[4895,4895,4895]],[[4897,-4624,4898,5236]]]},{"type":"MultiPolygon","id":21,"arcs":[[[-3991,-4016,-4015,-4014,-4036,-4035,-4201,-4223,-4222,-4345,-4344,4584,-4647,-4646,-4941,-4940,5069,5070,5071,5442,-5472,5557,5653,5654,5647,5648,5652,5635,5636,5713,5714,5662,5741,5742,5665,5666,5721,5722,5527,5529,5530,5490,5491,5568,5759,5760,5658,5659,5779,5780,-5727,-5540,-5539,-5538,5462,-5399,-5405,-5393,5323,-5194,-5192,-5191,5007,-4974,-4767,-4766,-4812,-4763,-4762,-4793,-4792,-4735,-4734,-4733,-4638,-4643,-4642,-4641,-4648,-4504,-4503,4403,-4283,-4282,-4274,-4273,4115,4116,-4000,-3993,-3992]],[[5728,-5729,5778]]]},{"type":"Polygon","id":11,"arcs":[[4235,4236,-3970,-4146]]},{"type":"Polygon","id":4,"arcs":[[-5608,5608,5609,5610,-6953,7365,7366,-7793,7955,8245,7938,7490,7491,7080,7081,-6322,-6321,-5740,-4469,-5175,-5248,-5247,-4594,-4593,-4592]]},{"type":"Polygon","id":40,"arcs":[[-5390,-5389,-5551,5594,-5759,5766,-5935,-6068,6121,-6350,6407,-6522,6568,6569,-6897,7007,7008,7009,7010,7176,7177,7173,7174,7175,7155,7215,7216,7114,7115,7005,7006,6916,6917,6815,6816,6716,6717,-6660,6485,-6424,6204,-6173,5837,5838,5627,5628,5623,5624,5625,5620,5621,-5614,-5150,-5349,-5351,-5353,-5352,-5285,-5289,-5288,-5361,-5360,-5292,-5291,-5359,-5358,-5282,-5281,-5279,-5278,-5424,-5423,-5356,-5355,-5364,-5363]]},{"type":"Polygon","id":35,"arcs":[[-5139,-5044,-5043,-5151,5613,5614,5615,-6179,6353,6354,-6653,6790,6791,6932,6933,-7335,7421,7422,7423,7424,7425,7729,7730,7731,7548,7549,7550,7653,7654,7859,7791,7792,-7367,-7366,6952,-5611,-5610,-5609,5607,-5153,-5155,-5330,-5329,-5344,-5343,-5140]]},{"type":"Polygon","id":47,"arcs":[[-5530,-5528,-5723,-5722,-5667,-5666,-5743,-5742,-5663,-5715,-5714,-5637,-5636,-5653,-5649,-5648,-5655,-5710,-5709,-5721,-5720,-5719,-5684,-5790,-5688,-5687,-5754,5805,5806,5807,5902,5903,6042,6043,6044,5988,6094,6095,6196,6197,6258,6259,6391,6392,-6618,6620,6621,6587,6588,6512,6513,6514,6599,6600,6585,6579,6580,6517,6518,6507,6492,6546,6547,6548,6567,6534,6535,6536,6565,6566,6561,6562,-6529,6402,-6215,-6214,-6213,6083,-5977,5919,-5730,-5729,-5728,-5781,-5780,-5660,-5659,-5761,-5760,-5569,-5492,-5491,-5531]]},{"type":"MultiPolygon","id":37,"arcs":[[[-5679,-5726,-5725,-5738,-5737,-5505,-5504,-5785,-5502,-5545,-5544,-5543,-5713,-5712,-5711,-5556,-5555,-5707,-5633,-5632,-5631,-5702,-5701,-5736,-5735,-5675,5862,5867,5906,5993,6008,5858,5859,-5860,5876,6059,6235,6229,6380,6069,6381,6363,6359,6598,-6556,6556,6553,6682,6774,6890,-6889,7048,7056,7057,7058,7028,6788,6789,6714,6666,6638,6642,6643,6471,6472,6550,6442,6443,6427,6428,6563,6564,6489,6543,6544,6545,6467,6595,6672,6673,6674,6615,6616,6617,-6393,-6392,-6260,-6259,-6198,-6197,-6096,-6095,-5989,-6045,-6044,-6043,-5904,-5903,-5808,-5807,-5806,-5753,-5752]],[[5864,-5672,5863,9476]],[[7047]],[[7054,-7055,7055]]]},{"type":"MultiPolygon","id":48,"arcs":[[[-5622,-5621,-5626,-5625,-5624,-5629,-5628,-5839,-5838,6172,-6205,6423,-6486,6659,-6718,-6717,-6817,-6816,-6918,-6917,-7007,-7006,-7116,-7115,-7217,-7216,-7156,-7176,-7175,-7174,-7178,-7177,-7011,-7010,-7287,7383,-7414,7583,-7672,-7671,-7670,7969,-7984,8146,-8199,-8198,-8385,8424,8425,-8676,8723,8746,8747,8818,8859,8820,8750,8751,8858,8860,8898,8934,8888,8937,8890,8891,8902,8936,8947,8966,-8933,8967,8949,8963,8965,8972,8973,8987,9005,9026,9053,9059,9050,9047,9022,8971,8912,8856,8706,8605,8602,8615,8133,8135,-7654,-7551,-7550,-7549,-7732,-7731,-7730,-7426,-7425,-7424,-7423,-7422,7334,-6934,-6933,-6792,-6791,6652,-6355,-6354,6178,-5616,-5615]],[[9477,9478,9479]],[[9051]]]},{"type":"Polygon","id":5,"arcs":[[-5644,-5748,-5747,-5756,-5755,-5547,-5718,-5717,-5745,-5744,-5691,-5795,-5794,-5793,-5792,-5978,-6084,6212,6213,6214,-6403,6528,6529,6530,6797,-6808,6910,-7190,-7189,7430,7431,7432,7433,7434,7542,7559,7560,7498,7499,7485,7412,7413,-7384,7286,-7009,-7008,6896,-6570,-6569,6521,-6408,6349,-6122,6067,5934,-5767,-5758,-5670,-5669]]},{"type":"MultiPolygon","id":45,"arcs":[[[-6428,-6444,-6443,-6551,-6473,-6472,-6644,-6643,-6639,-6667,-6715,-6790,-6789,-7029,-7059,7104,7105,7362,9109,9110,7460,9107,-7626,9108,7628,7830,7800,7801,7802,7803,7804,7829,7806,7807,7808,7662,-7657,7632,-7586,7476,7313,7314,7256,7257,7211,7212,-7117,7031,6837,6838,6705,6706,6707,6708,6709,-6468,-6546,-6545,-6544,-6490,-6565,-6564,-6429]],[[-7058,7057,7103]],[[-7361,7360,9480]]]},{"type":"MultiPolygon","id":1,"arcs":[[[6723,-6547,-6493,-6508,-6519,-6518,-6581,-6580,-6586,-6601,6759,-6778,-6781,6808,-6944,-6947,6981,-7195,7265,7266,-7346,7465,7466,-7610,7636,-7774,7813,-7859,-7904,7941,-8037,8064,8065,-8224,8224,-8320,8413,8414,8421,8422,8423,8307,8308,8416,8417,8418,8408,8409,8410,8411,8433,8434,8435,-8355,8261,-8177,7995,7996,-7875,7716,7717,-7590,7445,-7373,7222,-7196,7077,-7033,6955,-6737,-6740]]]},{"type":"MultiPolygon","id":13,"arcs":[[[-6708,-6707,-6706,-6839,-6838,-7032,7116,-7213,-7212,-7258,-7257,-7315,-7314,-7477,7585,-7633,7656,-7663,-7809,-7808,8028,8029,8024,8025,8078,8264,-8263,8345,8436,8437,8475,8476,8340,8428,8558,8559,8490,8491,8469,8470,8472,8473,8466,8467,8463,8474,-8414,8319,-8225,8223,-8066,-8065,8036,-7942,7903,7858,-7814,7773,-7637,7609,-7467,-7466,7345,-7267,-7266,7194,-6982,6946,6943,-6809,6780,6777,-6760,-6600,-6515,-6514,-6513,-6589,-6588,-6622,-6621,-6617,-6616,-6675,-6674,-6673,-6596,-6710,-6709]]]},{"type":"Polygon","id":28,"arcs":[[-6535,-6568,-6549,-6548,-6724,6739,6736,-6956,7032,-7078,7195,-7223,7372,-7446,7589,-7718,-7717,7874,-7997,-7996,8176,-8262,8354,-8436,-8435,8571,8594,8612,-8580,8498,8499,8366,8397,8395,8396,8392,8393,8380,8381,-8234,-8233,-8021,-8020,-8019,7854,7855,7856,-7706,7689,-7432,-7431,7188,7189,-6911,6807,-6798,-6531,-6530,-6563,-6562,-6567,-6566,-6537,-6536]]},{"type":"MultiPolygon","id":22,"arcs":[[[7669,7670,7671,-7584,-7413,-7486,-7500,-7499,-7561,-7560,-7543,-7435,-7434,-7433,-7690,7705,-7857,-7856,-7855,8018,8019,8020,8232,8233,-8382,-8381,-8394,-8393,-8397,-8396,-8398,-8367,-8500,-8499,8579,8580,8740,8760,-8759,8817,8734,8813,-8731,8807,8808,8809,8810,8811,8837,8798,8778,8768,8789,-8747,-8724,8675,-8426,-8425,8384,8197,8198,-8147,7983,-7970]],[[-9482,8757,8756],[8755,-8756,9482]],[[-8806,8805,9483]]]},{"type":"MultiPolygon","id":12,"arcs":[[[-8468,-8467,-8474,-8473,-8471,-8470,-8492,-8491,-8560,-8559,-8429,-8341,-8477,-8476,-8438,8567,8568,8638,8639,8743,8828,8829,8866,8885,8876,8826,8827,8720,8635,8721,8717,8844,8877,9484,9485,8872,8922,8990,9008,9009,9010,9031,9029,9038,9060,9066,9062,9063,9064,9067,9058,9045,9037,9014,9035,9016,9001,8979,8977,8955,8941,8915,8864,9068,8698,8598,8699,8793,8792,8738,8646,8739,8648,8537,-8529,8538,8531,8522,8517,-8409,-8419,-8418,-8417,-8309,-8308,-8424,-8423,-8422,-8415,-8475,-8464]],[[8519,-8516,8520]],[[8991]],[[8998]],[[9034]],[[9054]]]},{"type":"MultiPolygon","id":15,"arcs":[[[-9112,9115]],[[9113]],[[9114]],[[9116]],[[9117]]]},{"type":"MultiPolygon","id":2,"arcs":[[[9118]],[[9119]],[[9120]],[[9121]],[[9122]],[[9123]],[[9125,9139,9129,9140,9135,9212,9131,9213,9208,9204,9205,9258,9257,9255,9253,9244,9251,9235,9242,9186,9196,9192,9194,9155,9179,9170,9261,9172,9177,-9148,9178,9157,9158,9159,9160,9163,9193,9190,9195,9188,9243,9237,9238,9232,9239,9228,9240,9226,9216,9241,9146,9144,9138,9127,9124]],[[9128]],[[9142]],[[9143]],[[9154,-9150,9180,9152,-9153,9184]],[[-9165,9197]],[[9166]],[[9167]],[[9168]],[[9169]],[[9198,9175,9176,9182]],[[9183]],[[9199]],[[9200]],[[9206]],[[9207]],[[-9230,9229,9486]],[[9256]],[[9259]],[[9260]]]},{"type":"MultiPolygon","id":72,"arcs":[[[9395,9277,9375,9402,9271,9403,9444,9426,9313,9283,9342,9430,9337,9345,9373,9474,9450,9317,9354,9433,9456,9461,9453,9471,9472,9463,9473,9446,9457,9398,9381,9434,9416,9306,9362,9442,9325,9405,9435,9285,9384]]]}]},"land":{"type":"MultiPolygon","arcs":[[[5673,5862,5867,5906,5993,6008,5858,5859,-5860,5876,6059,6235,6229,6380,6069,6381,6363,6359,6598,-6556,6556,6553,6682,6774,6890,-6889,7048,7056,7057,7104,7105,7362,9109,9110,7460,9107,-7626,9108,7628,7830,7800,7801,7802,7803,7804,7829,7806,8028,8029,8024,8025,8078,8264,-8263,8345,8436,8567,8568,8638,8639,8743,8828,8829,8866,8885,8876,8826,8827,8720,8635,8721,8717,8844,8877,9484,9485,8872,8922,8990,9008,9009,9010,9031,9029,9038,9060,9066,9062,9063,9064,9067,9058,9045,9037,9014,9035,9016,9001,8979,8977,8955,8941,8915,8864,9068,8698,8598,8699,8793,8792,8738,8646,8739,8648,8537,-8529,8538,8531,8522,8517,8409,8410,8411,8433,8571,8594,8612,8580,8740,8760,-8759,8817,8734,8813,-8731,8807,8808,8809,8810,8811,8837,8798,8778,8768,8789,8747,8818,8859,8820,8750,8751,8858,8860,8898,8934,8888,8937,8890,8891,8902,8936,8947,8966,-8933,8967,8949,8963,8965,8972,8973,8987,9005,9026,9053,9059,9050,9047,9022,8971,8912,8856,8706,8605,8602,8615,8133,8135,7654,7859,7791,7955,8245,7938,7490,7505,7464,7292,6834,6801,6686,6328,5705,5437,5122,5028,5119,5269,4992,4855,4692,4399,4538,4537,4319,4327,4328,-4329,4686,4330,3494,2583,2288,1822,1544,1399,1240,935,739,589,627,575,577,447,324,217,171,218,300,258,259,352,353,302,388,351,288,180,169,181,123,2,73,83,78,81,22,34,18,41,97,86,44,48,27,8,51,108,91,96,101,38,30,62,66,55,58,104,9069,120,136,188,9070,187,131,9072,9074,9075,531,458,414,9078,9079,426,9084,9086,465,9092,9090,9093,544,9087,678,9088,839,1107,1119,9089,1117,1231,1409,1556,1730,1887,1949,2038,2155,2439,2441,2380,2126,2073,1915,1716,1618,1468,1317,1171,1065,9098,9099,903,9096,9095,734,783,9100,1028,1182,9101,1369,1495,9102,1512,9103,1855,9104,9106,2416,2421,2422,2567,2497,2534,2483,2357,2315,2122,1984,1761,-1757,1648,1645,1653,1656,1633,1504,1223,973,985,959,955,948,962,952,857,848,780,537,341,776,875,1070,1224,1228,1328,1230,1329,1319,1327,1321,1472,1548,1679,1862,2042,1931,2040,2088,2099,2086,2095,2204,2097,2169,2450,2171,2365,2236,2367,2458,2433,2464,-2463,2466,2452,2646,2933,2984,2935,2645,2662,2786,3003,2953,3045,3138,3139,3227,3228,-3229,3405,3666,3979,3804,3649,3650,3615,3651,3589,3532,3398,3426,3457,3617,3957,4242,4626,4898,5236,4897,4624,4697,4531,4428,4119,4256,4257,4023,3935,3685,3695,3701,3943,4046,4369,4142,4457,4571,4459,4144,4235,4267,4348,4191,4258,4512,4651,4706,4902,5024,4842,4705,4819,5060,5061,-5062,5255,5203,4947,4985,5161,5305,5367,5486,5513,5467,5304,5262,5115,5225,5408,5412,5456,5496,5702,5697,5732,5694,5733,5651,5676,5863,9476,5864,5672]],[[9077,9080,9081]],[[1756,1757]],[[2941,3008,3041,3010,3011,2943,2674,2939,2940]],[[-3007,3006,9475]],[[4695,-4696,4895]],[[7047]],[[9477,9478,9479]],[[9051]],[[-7361,7360,9480]],[[-9482,-8759,-8756],[-8757,8756,9482]],[[-8806,8805,9483]],[[8519,-8516,8520]],[[8991]],[[8998]],[[9034]],[[9054]],[[-9112,9115]],[[9113]],[[9114]],[[9116]],[[9117]],[[9118]],[[9119]],[[9120]],[[9121]],[[9122]],[[9123]],[[9125,9139,9129,9140,9135,9212,9131,9213,9208,9204,9205,9258,9257,9255,9253,9244,9251,9235,9242,9186,9196,9192,9194,9155,9179,9170,9261,9172,9177,-9148,9178,9157,9158,9159,9160,9163,9193,9190,9195,9188,9243,9237,9238,9232,9239,9228,9240,9226,9216,9241,9146,9144,9138,9127,9124]],[[9128]],[[9142]],[[9143]],[[9154,-9150,9180,9152,-9153,9184]],[[-9165,9197]],[[9166]],[[9167]],[[9168]],[[9169]],[[9198,9175,9176,9182]],[[9183]],[[9199]],[[9200]],[[9206]],[[9207]],[[-9230,9229,9486]],[[9256]],[[9259]],[[9260]],[[9395,9277,9375,9402,9271,9403,9444,9426,9313,9283,9342,9430,9337,9345,9373,9474,9450,9317,9354,9433,9456,9461,9453,9471,9472,9463,9473,9446,9457,9398,9381,9434,9416,9306,9362,9442,9325,9405,9435,9285,9384]]]}},"arcs":[[[809,2918],[1,-32]],[[810,2886],[-24,-1]],[[786,2885],[-4,33],[27,0]],[[1014,2918],[4,-41]],[[1018,2877],[0,-52]],[[1018,2825],[-8,-5]],[[1010,2820],[-6,-25],[-8,1]],[[996,2796],[0,49],[3,27],[0,46]],[[999,2918],[15,0]],[[903,2918],[10,-65]],[[913,2853],[5,-16]],[[918,2837],[0,-17]],[[918,2820],[-2,-33]],[[916,2787],[-4,0]],[[912,2787],[-3,0]],[[909,2787],[0,28],[-12,6],[-1,-16]],[[896,2805],[-6,21]],[[890,2826],[4,92]],[[894,2918],[9,0]],[[876,2918],[0,-47]],[[876,2871],[-11,0],[-3,32]],[[862,2903],[0,15]],[[862,2918],[14,0]],[[996,2796],[-7,-23]],[[989,2773],[-5,13]],[[984,2786],[-9,14]],[[975,2800],[7,22],[0,44],[3,52]],[[985,2918],[14,0]],[[1106,2875],[-9,0]],[[1097,2875],[0,43]],[[1097,2918],[9,0]],[[1106,2918],[0,-43]],[[890,2826],[-7,-10],[-3,33],[-4,-5]],[[876,2844],[0,27]],[[876,2918],[18,0]],[[1097,2875],[-1,0]],[[1096,2875],[-11,0]],[[1085,2875],[-6,0],[0,43]],[[1079,2918],[18,0]],[[929,2917],[1,-48]],[[930,2869],[-6,-16],[-11,0]],[[903,2918],[26,-1]],[[966,2837],[-4,16],[-13,-8]],[[949,2845],[1,72]],[[950,2917],[17,1]],[[967,2918],[-1,-81]],[[975,2800],[-9,0]],[[966,2800],[0,37]],[[967,2918],[18,0]],[[1029,2918],[1,-41]],[[1030,2877],[-12,0]],[[1014,2918],[15,0]],[[1138,2918],[1,-43]],[[1139,2875],[-11,0]],[[1128,2875],[0,43]],[[1128,2918],[10,0]],[[1149,2918],[1,-43]],[[1150,2875],[-11,0]],[[1138,2918],[11,0]],[[1114,2875],[-3,-16]],[[1111,2859],[-5,0]],[[1106,2859],[0,16]],[[1106,2918],[7,0]],[[1113,2918],[1,-43]],[[1128,2875],[-5,0]],[[1123,2875],[-9,0]],[[1113,2918],[15,0]],[[837,2918],[0,-97]],[[837,2821],[-2,-2]],[[835,2819],[0,2]],[[835,2821],[-1,16],[-12,-16]],[[822,2821],[-10,33],[-1,20]],[[811,2874],[-1,12]],[[809,2918],[28,0]],[[856,2918],[0,-89]],[[856,2829],[-5,-21]],[[851,2808],[-7,7]],[[844,2815],[3,33],[-1,70]],[[846,2918],[10,0]],[[862,2903],[0,-74]],[[862,2829],[-6,0]],[[856,2918],[6,0]],[[844,2815],[-7,6]],[[837,2918],[9,0]],[[940,2837],[0,8]],[[940,2845],[2,0],[0,72]],[[942,2917],[8,0]],[[949,2845],[-9,-8]],[[1058,2918],[1,-35]],[[1059,2883],[-16,1]],[[1043,2884],[0,34]],[[1043,2918],[15,0]],[[1071,2918],[0,-18]],[[1071,2900],[-3,-25]],[[1068,2875],[-9,0]],[[1059,2875],[0,8]],[[1058,2918],[13,0]],[[929,2917],[13,0]],[[940,2845],[-10,24]],[[1085,2875],[0,-8]],[[1085,2867],[-11,0],[-3,33]],[[1071,2918],[8,0]],[[1164,2875],[-3,0]],[[1161,2875],[-11,0]],[[1149,2918],[16,0]],[[1165,2918],[3,-27],[-4,-16]],[[1043,2884],[0,-23]],[[1043,2861],[-8,0],[-5,16]],[[1029,2918],[14,0]],[[876,2844],[0,-22]],[[876,2822],[-4,-8]],[[872,2814],[-10,8]],[[862,2822],[0,7]],[[1085,2867],[1,-57]],[[1086,2810],[-13,0]],[[1073,2810],[-1,65],[-4,0]],[[1196,2883],[0,-69]],[[1196,2814],[-19,-4]],[[1177,2810],[0,49]],[[1177,2859],[0,31]],[[1177,2890],[9,-17],[10,10]],[[811,2874],[-4,-22]],[[807,2852],[-20,0]],[[787,2852],[-1,33]],[[1059,2875],[1,-39]],[[1060,2836],[-17,-12]],[[1043,2824],[0,37]],[[1096,2875],[1,-65]],[[1097,2810],[-6,0]],[[1091,2810],[-5,0]],[[1214,2843],[0,-117]],[[1214,2726],[-6,-26]],[[1208,2700],[-1,0]],[[1207,2700],[-11,10]],[[1196,2710],[0,24]],[[1196,2734],[0,80]],[[1196,2883],[18,-40]],[[1043,2824],[-6,12],[-10,-5]],[[1027,2831],[-9,-6]],[[822,2821],[-6,-41],[3,-24]],[[819,2756],[-14,31]],[[805,2787],[0,17]],[[805,2804],[2,48]],[[1073,2810],[-7,-8]],[[1066,2802],[-3,6]],[[1063,2808],[-3,28]],[[1161,2875],[0,-34]],[[1161,2841],[-13,0]],[[1148,2841],[-9,0]],[[1139,2841],[0,1]],[[1139,2842],[0,33]],[[1106,2859],[-4,0],[0,-49]],[[1102,2810],[-4,0]],[[1098,2810],[-1,0]],[[1117,2822],[0,0]],[[1123,2875],[0,-32]],[[1123,2843],[-3,-26]],[[1120,2817],[-6,7],[-3,35]],[[1139,2842],[-10,1]],[[1129,2843],[-6,0]],[[1177,2810],[0,-37]],[[1177,2773],[-3,-3]],[[1174,2770],[-7,0]],[[1167,2770],[-1,56],[-5,0]],[[1161,2826],[0,15]],[[1164,2875],[2,-16],[11,0]],[[940,2837],[0,-14]],[[940,2823],[-10,14],[-12,0]],[[787,2848],[0,-2]],[[787,2846],[0,2]],[[780,2831],[-1,-19],[-23,1]],[[756,2813],[0,48],[9,-21],[15,-9]],[[1120,2817],[0,-7]],[[1120,2810],[-11,0]],[[1109,2810],[-7,0]],[[966,2800],[-9,-30]],[[957,2770],[-6,0]],[[951,2770],[-11,26]],[[940,2796],[0,27]],[[805,2804],[-18,0]],[[787,2804],[0,42]],[[787,2848],[0,4]],[[896,2805],[6,-61]],[[902,2744],[-9,12]],[[893,2756],[-11,20]],[[882,2776],[-6,46]],[[1224,2842],[1,-67]],[[1225,2775],[-11,-49]],[[1214,2843],[3,-14],[7,13]],[[1129,2843],[0,-49]],[[1129,2794],[-2,0]],[[1127,2794],[-7,0]],[[1120,2794],[0,16]],[[1139,2841],[4,-47]],[[1143,2794],[-8,0]],[[1135,2794],[-6,0]],[[1148,2841],[0,-20]],[[1148,2821],[2,-19],[9,16]],[[1159,2818],[2,0]],[[1161,2818],[0,-40]],[[1161,2778],[-7,0]],[[1154,2778],[-11,0]],[[1143,2778],[0,16]],[[1161,2826],[0,-8]],[[1159,2818],[-11,3]],[[1043,2824],[0,-56]],[[1043,2768],[-5,-4]],[[1038,2764],[-3,25],[-9,16]],[[1026,2805],[1,26]],[[835,2821],[-8,-49],[-6,-20]],[[821,2752],[-2,4]],[[1063,2808],[-7,-14],[0,-32]],[[1056,2762],[-8,0]],[[1048,2762],[-5,0]],[[1043,2762],[0,6]],[[779,2788],[-7,-8]],[[772,2780],[-12,1]],[[760,2781],[-4,32]],[[780,2831],[4,-17],[-5,-26]],[[940,2796],[-9,-17]],[[931,2779],[-10,9],[-3,32]],[[1026,2805],[-2,-57]],[[1024,2748],[-9,0]],[[1015,2748],[-3,16],[-2,56]],[[882,2776],[9,-51]],[[891,2725],[-19,0]],[[872,2725],[0,8]],[[872,2733],[0,37]],[[872,2770],[0,44]],[[909,2787],[-4,0],[2,-39],[-5,-4]],[[862,2822],[0,-57]],[[862,2765],[0,-10]],[[862,2755],[-11,1]],[[851,2756],[0,52]],[[1167,2770],[0,-24]],[[1167,2746],[-6,-1]],[[1161,2745],[0,33]],[[872,2770],[-10,-5]],[[1015,2748],[0,-30]],[[1015,2718],[0,-1]],[[1015,2717],[-26,0]],[[989,2717],[0,56]],[[835,2819],[0,-63]],[[835,2756],[0,-33],[-6,-16]],[[829,2707],[-1,-6]],[[828,2701],[-6,-4]],[[822,2697],[-1,10]],[[821,2707],[0,45]],[[851,2756],[-2,0]],[[849,2756],[-14,0]],[[931,2779],[0,-30],[6,-26]],[[937,2723],[2,-14]],[[939,2709],[-4,-18]],[[935,2691],[-7,-14]],[[928,2677],[-3,39],[-4,0],[0,32],[-4,0],[-1,39]],[[785,2769],[-1,0]],[[784,2769],[-2,0]],[[782,2769],[-4,11]],[[778,2780],[7,36],[1,-37]],[[786,2779],[-1,-10]],[[1196,2734],[-10,0]],[[1186,2734],[0,23],[-9,16]],[[1091,2810],[-1,-48]],[[1090,2762],[-4,-16]],[[1086,2746],[-4,10]],[[1082,2756],[-3,28],[-10,1]],[[1069,2785],[-3,17]],[[1120,2794],[0,-8]],[[1120,2786],[-10,0]],[[1110,2786],[-1,24]],[[1110,2786],[0,-24]],[[1110,2762],[-3,0]],[[1107,2762],[-8,0]],[[1099,2762],[-1,48]],[[1099,2762],[-1,0]],[[1098,2762],[-8,0]],[[1069,2785],[0,-53]],[[1069,2732],[-12,-3]],[[1057,2729],[-1,33]],[[984,2786],[-6,-30],[1,-48]],[[979,2708],[-5,0]],[[974,2708],[-5,-5]],[[969,2703],[-5,0]],[[964,2703],[-1,46],[-6,21]],[[1038,2764],[1,-29],[-4,-17]],[[1035,2718],[-6,0],[-5,30]],[[805,2787],[-5,-23],[1,-25]],[[801,2739],[-14,22]],[[787,2761],[0,43]],[[951,2770],[0,-55]],[[951,2715],[-6,17],[-8,-9]],[[1135,2794],[0,-40]],[[1135,2754],[-4,0]],[[1131,2754],[-3,0]],[[1128,2754],[-1,40]],[[1128,2754],[-7,0]],[[1121,2754],[-1,8]],[[1120,2762],[0,24]],[[1143,2778],[1,-25]],[[1144,2753],[-9,1]],[[779,2788],[-1,-8]],[[782,2769],[0,-4]],[[782,2765],[-4,-25]],[[778,2740],[-2,-1]],[[776,2739],[-4,0],[0,41]],[[912,2787],[2,-71]],[[914,2716],[-7,-16]],[[907,2700],[-7,0]],[[900,2700],[-4,-3]],[[896,2697],[-1,10]],[[895,2707],[3,24],[-5,25]],[[928,2677],[-4,-14]],[[924,2663],[-6,0]],[[918,2663],[0,44],[-4,9]],[[989,2717],[1,-8]],[[990,2709],[-11,-1]],[[821,2707],[-8,0],[-12,32]],[[1120,2762],[-10,0]],[[1082,2756],[-7,-2],[0,-24]],[[1075,2730],[-5,0]],[[1070,2730],[-1,2]],[[776,2739],[1,-27]],[[777,2712],[-3,0]],[[774,2712],[-11,0]],[[763,2712],[-3,69]],[[1161,2745],[-7,0]],[[1154,2745],[0,33]],[[1154,2745],[-2,0]],[[1152,2745],[-9,0]],[[1143,2745],[1,8]],[[895,2707],[-4,18]],[[1186,2734],[0,-21]],[[1186,2713],[-8,0],[0,-49]],[[1178,2664],[-4,7]],[[1174,2671],[-1,1]],[[1173,2672],[-1,41]],[[1172,2713],[2,57]],[[1548,2608],[-3,-3]],[[1545,2605],[-6,-6],[0,75],[-5,1]],[[1534,2675],[0,16],[-13,1]],[[1521,2692],[-4,0]],[[1517,2692],[11,82],[5,-26],[9,16],[6,-26],[0,-130]],[[964,2703],[-8,1]],[[956,2704],[-5,11]],[[872,2733],[-10,10]],[[862,2743],[0,12]],[[1172,2713],[-5,0]],[[1167,2713],[0,33]],[[801,2739],[-1,-28]],[[800,2711],[-10,-2]],[[790,2709],[-7,31]],[[783,2740],[4,21]],[[785,2769],[-1,0]],[[784,2769],[-2,-4]],[[1043,2762],[0,-64]],[[1043,2698],[-8,4]],[[1035,2702],[0,16]],[[1057,2729],[-3,-32]],[[1054,2697],[-5,0]],[[1049,2697],[-1,65]],[[1049,2697],[-6,-8]],[[1043,2689],[0,9]],[[1107,2762],[0,-65]],[[1107,2697],[-6,0]],[[1101,2697],[-3,0]],[[1098,2697],[0,65]],[[1121,2754],[0,-57]],[[1121,2697],[-8,0]],[[1113,2697],[-6,0]],[[1098,2697],[-8,0]],[[1090,2697],[-4,33]],[[1086,2730],[0,16]],[[1086,2730],[-11,0]],[[849,2756],[-3,-49]],[[846,2707],[-17,0]],[[862,2743],[0,-54]],[[862,2689],[0,-11]],[[862,2678],[-3,3]],[[859,2681],[-3,22],[-5,-7]],[[851,2696],[-6,-3]],[[845,2693],[1,14]],[[1131,2754],[1,-57]],[[1132,2697],[-5,0]],[[1127,2697],[-6,0]],[[1143,2745],[1,-48]],[[1144,2697],[-7,0]],[[1137,2697],[-5,0]],[[790,2709],[-13,3]],[[778,2740],[5,0]],[[1035,2702],[-2,-7]],[[1033,2695],[-10,-4],[-2,25],[-6,2]],[[1167,2713],[0,-8]],[[1167,2705],[-14,0]],[[1153,2705],[-1,40]],[[1153,2705],[-2,-8]],[[1151,2697],[-7,0]],[[872,2725],[-2,-28]],[[870,2697],[-8,-8]],[[822,2697],[0,-55]],[[822,2642],[-23,0]],[[799,2642],[0,32]],[[799,2674],[1,37]],[[956,2704],[0,-45]],[[956,2659],[0,-4]],[[956,2655],[-7,1]],[[949,2656],[-4,0]],[[945,2656],[-6,53]],[[1196,2710],[0,-33]],[[1196,2677],[0,-24]],[[1196,2653],[-5,-1]],[[1191,2652],[-5,9]],[[1186,2661],[0,52]],[[1253,2677],[0,-8]],[[1253,2669],[-11,16],[-2,24]],[[1240,2709],[14,25]],[[1254,2734],[-1,-57]],[[1070,2730],[0,-25]],[[1070,2705],[0,-8]],[[1070,2697],[-11,0]],[[1059,2697],[-5,0]],[[1090,2697],[1,-19]],[[1091,2678],[-6,-13]],[[1085,2665],[-4,32],[-11,8]],[[1266,2723],[-1,-46]],[[1265,2677],[-8,0]],[[1257,2677],[3,49]],[[1260,2726],[6,-3]],[[896,2697],[-22,-24]],[[874,2673],[-3,9]],[[871,2682],[-1,15]],[[1033,2695],[-2,-44]],[[1031,2651],[-1,-33]],[[1030,2618],[-17,0]],[[1013,2618],[2,99]],[[1013,2618],[-1,-56]],[[1012,2562],[-7,0],[1,46],[-3,18]],[[1003,2626],[-4,57],[-7,0]],[[992,2683],[-1,1]],[[991,2684],[-1,25]],[[918,2663],[-7,-30]],[[911,2633],[-4,9],[0,58]],[[1173,2672],[-6,1]],[[1167,2673],[0,32]],[[1186,2661],[0,-8]],[[1186,2653],[-8,11]],[[774,2712],[0,-38]],[[774,2674],[-5,-9]],[[769,2665],[-5,-2],[-1,49]],[[799,2674],[-10,0]],[[789,2674],[-13,0]],[[776,2674],[-2,0]],[[945,2656],[-4,0],[-4,-33]],[[937,2623],[-2,68]],[[1207,2700],[0,-23]],[[1207,2677],[-11,0]],[[1253,2669],[0,-22]],[[1253,2647],[-13,18]],[[1240,2665],[-7,26]],[[1233,2691],[7,18]],[[991,2684],[-4,-21],[-10,-13]],[[977,2650],[-3,58]],[[1305,2709],[0,-48]],[[1305,2661],[-9,0]],[[1296,2661],[0,24]],[[1296,2685],[0,17]],[[1296,2702],[9,7]],[[977,2650],[-2,0]],[[975,2650],[-7,-8]],[[968,2642],[-3,17]],[[965,2659],[3,0],[1,44]],[[965,2659],[-9,0]],[[845,2693],[-11,-37]],[[834,2656],[-6,45]],[[834,2656],[1,-18]],[[835,2638],[-6,-7]],[[829,2631],[-7,-8]],[[822,2623],[0,19]],[[1167,2673],[0,-25]],[[1167,2648],[-9,0]],[[1158,2648],[-7,0]],[[1151,2648],[0,49]],[[1085,2665],[-4,-20],[-9,-2]],[[1072,2643],[0,14]],[[1072,2657],[-2,40]],[[859,2681],[-3,-43]],[[856,2638],[-2,0]],[[854,2638],[-3,58]],[[1043,2689],[0,-25]],[[1043,2664],[0,-31]],[[1043,2633],[0,-6]],[[1043,2627],[-12,24]],[[900,2700],[-4,-103]],[[896,2597],[-1,-34]],[[895,2563],[-18,0],[-3,-8]],[[874,2555],[-7,15]],[[867,2570],[3,32],[-5,23]],[[865,2625],[2,13]],[[867,2638],[7,35]],[[911,2633],[0,-1]],[[911,2632],[-6,-22]],[[905,2610],[-9,-13]],[[1101,2697],[0,-33]],[[1101,2664],[0,-31]],[[1101,2633],[-9,0]],[[1092,2633],[-1,45]],[[1113,2697],[0,-32]],[[1113,2665],[-12,-1]],[[871,2682],[-5,-14],[1,-30]],[[865,2625],[-1,13]],[[864,2638],[-2,40]],[[1059,2697],[0,-33]],[[1059,2664],[-1,0]],[[1058,2664],[-15,0]],[[1127,2697],[0,-33]],[[1127,2664],[-14,0]],[[1113,2664],[0,1]],[[1072,2657],[-13,7]],[[1151,2648],[0,-8]],[[1151,2640],[-4,0]],[[1147,2640],[-3,57]],[[1137,2697],[0,-33]],[[1137,2664],[-10,0]],[[1147,2640],[0,-8]],[[1147,2632],[-9,0]],[[1138,2632],[-1,32]],[[854,2638],[-5,0]],[[849,2638],[-4,55]],[[849,2638],[-14,0]],[[1240,2665],[-2,-29]],[[1238,2636],[-3,0]],[[1235,2636],[-4,25],[0,31]],[[1231,2692],[2,-1]],[[1521,2692],[-1,-78],[3,-68],[4,6]],[[1527,2552],[1,-33]],[[1528,2519],[-3,-3]],[[1525,2516],[-6,-7]],[[1519,2509],[-4,48],[-3,1],[-2,49]],[[1510,2607],[4,21],[-1,28],[4,36]],[[1534,2675],[1,-108],[-8,-15]],[[937,2623],[-2,-4]],[[935,2619],[-6,-4]],[[929,2615],[-5,40]],[[924,2655],[0,8]],[[1296,2661],[0,-26]],[[1296,2635],[-8,-19]],[[1288,2616],[-2,37]],[[1286,2653],[3,32],[7,0]],[[992,2683],[3,-41]],[[995,2642],[-8,-13],[0,-36],[-8,-5]],[[979,2588],[-3,14]],[[976,2602],[-1,48]],[[1003,2626],[-8,16]],[[864,2638],[-8,0]],[[1092,2633],[-20,0]],[[1072,2633],[0,10]],[[1265,2677],[0,-16]],[[1265,2661],[0,-30]],[[1265,2631],[-8,8]],[[1257,2639],[-3,6]],[[1254,2645],[-1,2]],[[1253,2677],[4,0]],[[1207,2677],[0,-24]],[[1207,2653],[-8,-40]],[[1199,2613],[-4,0]],[[1195,2613],[1,40]],[[1545,2605],[0,-36]],[[1545,2569],[-11,-53]],[[1534,2516],[-6,3]],[[799,2642],[0,-30]],[[799,2612],[-5,-7]],[[794,2605],[-5,-9]],[[789,2596],[0,47]],[[789,2643],[0,31]],[[789,2643],[-7,-19]],[[782,2624],[-6,30]],[[776,2654],[0,1]],[[776,2655],[0,19]],[[776,2655],[-7,10]],[[1174,2671],[0,-54]],[[1174,2617],[-7,0]],[[1167,2617],[0,31]],[[1186,2653],[0,-31]],[[1186,2622],[-7,-5]],[[1179,2617],[-5,0]],[[1252,2628],[-14,1]],[[1238,2629],[0,7]],[[1254,2645],[-2,-17]],[[774,2651],[0,-33]],[[774,2618],[-9,0]],[[765,2618],[1,37],[8,-4]],[[1072,2633],[-1,0]],[[1071,2633],[-13,0]],[[1058,2633],[0,31]],[[1138,2632],[-10,0]],[[1128,2632],[-1,0]],[[1127,2632],[0,32]],[[1113,2664],[0,-31]],[[1113,2633],[-10,0]],[[1103,2633],[-2,0]],[[1127,2632],[-10,0]],[[1117,2632],[-4,1]],[[1058,2633],[-15,0]],[[924,2655],[-7,-30]],[[917,2625],[-6,7]],[[1272,2637],[-3,-25]],[[1269,2612],[-3,6]],[[1266,2618],[-1,13]],[[1265,2661],[7,0],[0,-24]],[[1191,2652],[-1,-39]],[[1190,2613],[0,-16]],[[1190,2597],[-4,0]],[[1186,2597],[0,25]],[[968,2642],[-2,-40],[-5,-8],[-2,-33]],[[959,2561],[-2,0],[-1,94]],[[949,2656],[0,-56],[-4,-55]],[[945,2545],[0,-31]],[[945,2514],[0,-18]],[[945,2496],[-4,26]],[[941,2522],[0,83],[-6,14]],[[959,2561],[4,0]],[[963,2561],[0,-16]],[[963,2545],[-18,0]],[[929,2615],[-6,-12]],[[923,2603],[-6,22]],[[782,2624],[0,-11]],[[782,2613],[-2,-1]],[[780,2612],[-6,6]],[[774,2651],[2,3]],[[1195,2613],[-5,0]],[[1210,2653],[0,-48]],[[1210,2605],[-1,0]],[[1209,2605],[-10,0]],[[1199,2605],[0,8]],[[1207,2653],[3,0]],[[1226,2653],[3,-17]],[[1229,2636],[0,-32]],[[1229,2604],[-12,0]],[[1217,2604],[0,49]],[[1217,2653],[9,0]],[[1217,2604],[-7,1]],[[1210,2653],[7,0]],[[1043,2627],[0,-62]],[[1043,2565],[0,-20]],[[1043,2545],[-14,0]],[[1029,2545],[1,73]],[[976,2602],[-13,-41]],[[1158,2648],[1,-32]],[[1159,2616],[-7,0]],[[1152,2616],[-1,24]],[[1167,2617],[0,-1]],[[1167,2616],[-8,0]],[[1257,2639],[4,-27]],[[1261,2612],[0,-32]],[[1261,2580],[-4,0]],[[1257,2580],[-5,8]],[[1252,2588],[0,40]],[[789,2596],[-7,17]],[[822,2623],[-1,-2]],[[821,2621],[-10,-7]],[[811,2614],[-3,-9]],[[808,2605],[-7,5]],[[801,2610],[-2,2]],[[1012,2562],[0,-18]],[[1012,2544],[-23,1]],[[989,2545],[-5,0]],[[984,2545],[2,20],[-8,0],[1,23]],[[1152,2616],[0,-16]],[[1152,2600],[-9,0]],[[1143,2600],[4,32]],[[1266,2618],[-5,-6]],[[849,2638],[0,-13]],[[849,2625],[-2,-36],[-8,-12],[2,-32]],[[841,2545],[-9,0]],[[832,2545],[1,48],[-5,8],[1,30]],[[867,2570],[-2,-18]],[[865,2552],[-6,1]],[[859,2553],[-3,7],[-7,65]],[[1275,2637],[2,-41]],[[1277,2596],[-5,-42]],[[1272,2554],[-4,24],[1,34]],[[1272,2637],[3,0]],[[1238,2629],[0,-32]],[[1238,2597],[0,-16]],[[1238,2581],[-9,-1]],[[1229,2580],[0,24]],[[1229,2636],[6,0]],[[1071,2633],[1,-44]],[[1072,2589],[-1,-40]],[[1071,2549],[-13,0]],[[1058,2549],[0,16]],[[1058,2565],[0,68]],[[1092,2633],[1,-33]],[[1093,2600],[2,-11]],[[1095,2589],[-16,0]],[[1079,2589],[-7,0]],[[1058,2565],[-15,0]],[[1103,2633],[0,-33]],[[1103,2600],[-10,0]],[[923,2603],[3,-50],[5,-28],[8,-7]],[[939,2518],[-2,-15]],[[937,2503],[-9,2],[-7,-18]],[[921,2487],[-8,38],[-8,85]],[[1117,2632],[0,-32]],[[1117,2600],[-14,0]],[[1128,2632],[0,-32]],[[1128,2600],[0,-33]],[[1128,2567],[-11,1]],[[1117,2568],[0,32]],[[1143,2600],[6,-25]],[[1149,2575],[-11,-2]],[[1138,2573],[0,24]],[[1138,2597],[0,35]],[[1138,2597],[-10,3]],[[832,2545],[-7,-1]],[[825,2544],[-1,7]],[[824,2551],[-3,18],[0,52]],[[1252,2588],[-5,1]],[[1247,2589],[-9,8]],[[859,2553],[-14,-12]],[[845,2541],[-4,4]],[[941,2522],[-2,-4]],[[1186,2597],[-5,0]],[[1181,2597],[-2,20]],[[824,2551],[-10,0]],[[814,2551],[0,2]],[[814,2553],[-3,61]],[[1029,2545],[-1,0]],[[1028,2545],[-13,-1]],[[1015,2544],[-3,0]],[[1320,2603],[-1,-40]],[[1319,2563],[-2,1]],[[1317,2564],[-5,0]],[[1312,2564],[0,8]],[[1312,2572],[0,46]],[[1312,2618],[8,-15]],[[774,2618],[-2,-33]],[[772,2585],[-3,-33]],[[769,2552],[0,-3]],[[769,2549],[-4,0]],[[765,2549],[0,69]],[[780,2612],[2,-27]],[[782,2585],[-1,-10]],[[781,2575],[-9,10]],[[1181,2597],[1,-13]],[[1182,2584],[-3,-13]],[[1179,2571],[-7,4]],[[1172,2575],[-5,8]],[[1167,2583],[0,33]],[[1159,2616],[0,-33]],[[1159,2583],[-5,0]],[[1154,2583],[-2,17]],[[1167,2583],[-1,0]],[[1166,2583],[-7,0]],[[814,2553],[-8,12],[2,40]],[[1195,2613],[2,-30]],[[1197,2583],[-7,1]],[[1190,2584],[0,13]],[[1199,2605],[1,-32]],[[1200,2573],[-3,0]],[[1197,2573],[0,10]],[[1209,2605],[0,-40]],[[1209,2565],[-9,0]],[[1200,2565],[0,8]],[[794,2605],[1,-17]],[[795,2588],[-13,-3]],[[801,2610],[-1,-41],[-3,0]],[[797,2569],[-2,19]],[[814,2551],[1,-23]],[[815,2528],[-19,1]],[[796,2529],[0,6]],[[796,2535],[1,34]],[[921,2487],[-3,-13]],[[918,2474],[-4,0]],[[914,2474],[-13,57],[-5,-26],[-3,22]],[[893,2527],[2,36]],[[1546,2499],[-1,70]],[[1548,2608],[5,-9],[0,-28],[7,-44],[-3,-15],[-11,-13]],[[1519,2509],[-3,-12]],[[1516,2497],[-2,-2]],[[1514,2495],[-7,25],[-1,51]],[[1506,2571],[4,36]],[[1331,2564],[-7,0]],[[1324,2564],[-5,-1]],[[1320,2603],[11,-39]],[[1217,2604],[0,-32]],[[1217,2572],[-1,-8]],[[1216,2564],[-7,1]],[[1229,2580],[-3,-8]],[[1226,2572],[-9,0]],[[984,2545],[-5,0]],[[979,2545],[-16,0]],[[1103,2600],[0,-32]],[[1103,2568],[-7,0]],[[1096,2568],[-1,21]],[[1117,2568],[-12,0]],[[1105,2568],[-2,0]],[[1138,2573],[0,-14]],[[1138,2559],[-4,0]],[[1134,2559],[-6,0]],[[1128,2559],[0,8]],[[1154,2583],[0,-22]],[[1154,2561],[-5,9]],[[1149,2570],[0,5]],[[1190,2584],[0,-16]],[[1190,2568],[-8,16]],[[1247,2589],[0,-33]],[[1247,2556],[-9,0]],[[1238,2556],[0,25]],[[1096,2568],[-2,-33]],[[1094,2535],[-5,-11]],[[1089,2524],[-5,-3]],[[1084,2521],[0,23],[-6,0],[1,45]],[[1084,2521],[-13,-22]],[[1071,2499],[0,50]],[[1257,2580],[1,-24]],[[1258,2556],[-5,-8]],[[1253,2548],[-3,0]],[[1250,2548],[-3,8]],[[796,2535],[-9,-1],[-6,35]],[[781,2569],[0,6]],[[781,2569],[-3,-17]],[[778,2552],[-9,0]],[[1190,2568],[-4,-25]],[[1186,2543],[-3,0]],[[1183,2543],[-4,0]],[[1179,2543],[0,28]],[[1197,2573],[0,-16]],[[1197,2557],[-3,-9]],[[1194,2548],[-4,20]],[[1172,2575],[0,-40]],[[1172,2535],[-6,0]],[[1166,2535],[0,24]],[[1166,2559],[0,24]],[[1166,2559],[-11,0]],[[1155,2559],[-1,2]],[[1238,2556],[-4,-8]],[[1234,2548],[-8,0]],[[1226,2548],[0,24]],[[1261,2580],[4,-33],[5,-5]],[[1270,2542],[-3,-27]],[[1267,2515],[-4,0]],[[1263,2515],[-3,17]],[[1260,2532],[-2,24]],[[1514,2495],[-3,-40]],[[1511,2455],[-4,-21]],[[1507,2434],[-3,-2]],[[1504,2432],[-1,46]],[[1503,2478],[-1,95]],[[1502,2573],[4,-2]],[[1149,2570],[0,-27]],[[1149,2543],[-6,0]],[[1143,2543],[-5,16]],[[1179,2543],[-3,-8]],[[1176,2535],[-4,0]],[[1503,2478],[-5,-6]],[[1498,2472],[-5,18]],[[1493,2490],[3,9],[1,47]],[[1497,2546],[5,27]],[[1200,2565],[0,-33]],[[1200,2532],[0,-11]],[[1200,2521],[-3,14]],[[1197,2535],[0,22]],[[1226,2548],[0,-16]],[[1226,2532],[-10,0]],[[1216,2532],[0,32]],[[796,2529],[0,-13]],[[796,2516],[-19,6]],[[777,2522],[1,30]],[[874,2555],[0,-57]],[[874,2498],[-2,-5]],[[872,2493],[-4,37],[-4,0]],[[864,2530],[1,22]],[[1155,2559],[4,-20]],[[1159,2539],[-10,-12]],[[1149,2527],[0,16]],[[1546,2499],[-12,-9],[0,26]],[[1105,2568],[0,-33]],[[1105,2535],[-1,0]],[[1104,2535],[-10,0]],[[1117,2568],[0,-33]],[[1117,2535],[-8,0]],[[1109,2535],[-4,0]],[[1194,2548],[0,-13]],[[1194,2535],[-2,-10]],[[1192,2525],[-2,2]],[[1190,2527],[-4,16]],[[1128,2559],[0,-48]],[[1128,2511],[-11,0]],[[1117,2511],[0,24]],[[893,2527],[-7,-18],[0,-26]],[[886,2483],[-13,-17]],[[873,2466],[1,32]],[[1058,2549],[0,-41],[-8,0]],[[1050,2508],[-7,-3]],[[1043,2505],[0,40]],[[1209,2565],[0,-33]],[[1209,2532],[-9,0]],[[1216,2532],[0,-16]],[[1216,2516],[-7,0]],[[1209,2516],[0,16]],[[1310,2556],[1,-24]],[[1311,2532],[-7,-4]],[[1304,2528],[-2,4]],[[1302,2532],[1,32]],[[1303,2564],[7,-8]],[[1317,2564],[0,-33]],[[1317,2531],[-6,1]],[[1310,2556],[2,8]],[[1324,2564],[0,-32]],[[1324,2532],[-7,-1]],[[1134,2559],[0,-32]],[[1134,2527],[0,-25]],[[1134,2502],[-5,1]],[[1129,2503],[-1,8]],[[1143,2543],[0,-16]],[[1143,2527],[-9,0]],[[1166,2535],[-4,-13]],[[1162,2522],[-3,17]],[[1197,2535],[-3,0]],[[1250,2548],[0,-33]],[[1250,2515],[-9,1]],[[1241,2516],[-7,0]],[[1234,2516],[0,32]],[[1260,2532],[-7,16]],[[864,2530],[-5,-50]],[[859,2480],[-10,13],[-4,-17]],[[845,2476],[-3,0],[3,65]],[[777,2522],[0,-3]],[[777,2519],[-7,0]],[[770,2519],[-1,30]],[[825,2544],[0,-64]],[[825,2480],[-10,24]],[[815,2504],[0,24]],[[770,2519],[-2,-41]],[[768,2478],[-5,0]],[[763,2478],[2,71]],[[1071,2499],[-5,-34],[-15,0]],[[1051,2465],[-1,43]],[[1234,2516],[0,-25]],[[1234,2491],[-8,16]],[[1226,2507],[0,25]],[[1263,2515],[0,-9]],[[1263,2506],[-5,1]],[[1258,2507],[-8,8]],[[1482,2546],[0,-21]],[[1482,2525],[-5,-14]],[[1477,2511],[-4,8]],[[1473,2519],[0,27]],[[1473,2546],[9,0]],[[1493,2490],[-1,-6]],[[1492,2484],[-1,39]],[[1491,2523],[0,23]],[[1491,2546],[6,0]],[[1473,2519],[-2,-15]],[[1471,2504],[0,42]],[[1471,2546],[2,0]],[[1471,2504],[0,-1]],[[1471,2503],[-8,-11]],[[1463,2492],[-2,53]],[[1461,2545],[10,1]],[[1491,2523],[-7,-17]],[[1484,2506],[-2,19]],[[1482,2546],[9,0]],[[979,2545],[1,-77]],[[980,2468],[0,-9]],[[980,2459],[-10,-25]],[[970,2434],[-7,-1],[-4,20]],[[959,2453],[-4,53],[-10,8]],[[1452,2544],[2,-83]],[[1454,2461],[-4,-3]],[[1450,2458],[-5,3]],[[1445,2461],[-3,11]],[[1442,2472],[-6,17]],[[1436,2489],[12,54],[4,1]],[[989,2545],[8,-41]],[[997,2504],[3,-37]],[[1000,2467],[-20,1]],[[1028,2545],[1,-77]],[[1029,2468],[0,-63]],[[1029,2405],[-13,0]],[[1016,2405],[0,99]],[[1016,2504],[-1,40]],[[1016,2504],[-19,0]],[[1463,2492],[-5,-29]],[[1458,2463],[-4,-2]],[[1452,2544],[9,1]],[[1043,2505],[0,-36]],[[1043,2469],[-14,-1]],[[845,2476],[0,-20]],[[845,2456],[-20,-8]],[[825,2448],[0,32]],[[1183,2543],[0,-24]],[[1183,2519],[-7,0]],[[1176,2519],[0,16]],[[1190,2527],[-4,-16]],[[1186,2511],[-3,8]],[[1149,2527],[0,-16]],[[1149,2511],[0,-9]],[[1149,2502],[-6,0]],[[1143,2502],[0,25]],[[1162,2522],[2,-5]],[[1164,2517],[-3,-15]],[[1161,2502],[-7,9]],[[1154,2511],[-5,0]],[[1200,2521],[1,-3]],[[1201,2518],[-5,-22]],[[1196,2496],[-3,7]],[[1193,2503],[-1,22]],[[1104,2535],[0,-32]],[[1104,2503],[-12,0]],[[1092,2503],[-3,21]],[[1109,2535],[0,-65]],[[1109,2470],[-4,0]],[[1105,2470],[-1,2]],[[1104,2472],[0,31]],[[1117,2511],[0,-41]],[[1117,2470],[-3,0]],[[1114,2470],[-5,0]],[[1176,2519],[-2,-25]],[[1174,2494],[-2,0]],[[1172,2494],[-1,4]],[[1171,2498],[-7,19]],[[914,2474],[-1,-39],[-6,-23]],[[907,2412],[-7,28],[-9,6]],[[891,2446],[-1,1]],[[890,2447],[-4,36]],[[1209,2516],[-3,-14]],[[1206,2502],[-5,16]],[[1332,2532],[0,-33]],[[1332,2499],[-8,0]],[[1324,2499],[0,33]],[[1324,2532],[8,0]],[[1311,2532],[0,-33]],[[1311,2499],[-7,1]],[[1304,2500],[0,28]],[[1317,2531],[0,-32]],[[1317,2499],[-6,0]],[[1226,2507],[-3,0]],[[1223,2507],[-6,0]],[[1217,2507],[-1,0]],[[1216,2507],[0,9]],[[1324,2499],[-7,0]],[[872,2493],[-2,-27]],[[870,2466],[-6,0]],[[864,2466],[-5,14]],[[815,2504],[-10,-16]],[[805,2488],[-10,0]],[[795,2488],[1,28]],[[1193,2503],[-3,-1]],[[1190,2502],[-6,0]],[[1184,2502],[2,9]],[[1143,2502],[-4,0]],[[1139,2502],[-5,0]],[[1484,2506],[0,-7]],[[1484,2499],[-6,-5]],[[1478,2494],[-1,17]],[[795,2488],[1,-12]],[[796,2476],[-16,-6],[-4,8]],[[776,2478],[1,41]],[[1092,2503],[8,-33]],[[1100,2470],[-6,-2]],[[1094,2468],[-9,0]],[[1085,2468],[-1,53]],[[1297,2524],[0,-24]],[[1297,2500],[-6,0]],[[1291,2500],[2,24]],[[1293,2524],[4,0]],[[1492,2484],[-3,-18]],[[1489,2466],[-4,5]],[[1485,2471],[-1,28]],[[1534,2516],[-3,-41]],[[1531,2475],[-5,7]],[[1526,2482],[-2,2]],[[1524,2484],[1,32]],[[945,2496],[0,-46]],[[945,2450],[-5,-5]],[[940,2445],[-8,0]],[[932,2445],[-2,12]],[[930,2457],[7,46]],[[1085,2468],[0,-17]],[[1085,2451],[-14,0]],[[1071,2451],[0,48]],[[1478,2494],[-2,-27]],[[1476,2467],[-5,9]],[[1471,2476],[0,27]],[[776,2478],[-8,0]],[[1524,2484],[-3,-19]],[[1521,2465],[-4,-2]],[[1517,2463],[-1,34]],[[1184,2502],[0,-7]],[[1184,2495],[-10,-1]],[[1206,2502],[2,-8]],[[1208,2494],[-5,-24]],[[1203,2470],[-2,0]],[[1201,2470],[-5,0]],[[1196,2470],[0,26]],[[1171,2498],[-3,-28]],[[1168,2470],[-5,0]],[[1163,2470],[-2,0]],[[1161,2470],[0,32]],[[1250,2515],[0,-40]],[[1250,2475],[-6,0]],[[1244,2475],[-1,0]],[[1243,2475],[-2,41]],[[1243,2475],[-3,0]],[[1240,2475],[-6,0]],[[1234,2475],[0,16]],[[1267,2515],[3,-3]],[[1270,2512],[0,-30]],[[1270,2482],[-4,-8]],[[1266,2474],[-2,0]],[[1264,2474],[-1,32]],[[1216,2507],[-6,-17]],[[1210,2490],[-2,4]],[[1258,2507],[-2,-33]],[[1256,2474],[-2,0]],[[1254,2474],[-4,1]],[[1275,2515],[-2,-33]],[[1273,2482],[-3,0]],[[1270,2512],[0,3]],[[1270,2515],[5,0]],[[959,2453],[0,-51]],[[959,2402],[-7,-21]],[[952,2381],[-7,7]],[[945,2388],[0,17]],[[945,2405],[0,45]],[[1129,2503],[0,-33]],[[1129,2470],[-6,0]],[[1123,2470],[-6,0]],[[1154,2511],[0,-41]],[[1154,2470],[-5,0]],[[1149,2470],[0,32]],[[1161,2470],[-7,0]],[[1051,2465],[-8,0]],[[1043,2465],[0,4]],[[1217,2507],[0,-53]],[[1217,2454],[-4,16]],[[1213,2470],[-3,20]],[[1223,2507],[0,-48]],[[1223,2459],[-4,-9]],[[1219,2450],[-2,4]],[[1234,2475],[0,-9]],[[1234,2466],[-9,-8]],[[1225,2458],[-2,1]],[[1264,2474],[-3,1]],[[1261,2475],[-5,-1]],[[930,2457],[-8,-8]],[[922,2449],[-4,25]],[[1016,2405],[-1,0]],[[1015,2405],[-15,0]],[[1000,2405],[0,62]],[[825,2448],[-3,-24]],[[822,2424],[-12,16],[-5,48]],[[1104,2472],[-4,-2]],[[1471,2476],[-1,-42]],[[1470,2434],[-9,-6]],[[1461,2428],[-3,35]],[[1190,2502],[0,-32]],[[1190,2470],[-4,0]],[[1186,2470],[-3,4]],[[1183,2474],[1,21]],[[1196,2470],[-5,0]],[[1191,2470],[-1,0]],[[1139,2502],[0,-32]],[[1139,2470],[-3,0]],[[1136,2470],[-7,0]],[[1149,2470],[-6,0]],[[1143,2470],[-4,0]],[[1297,2500],[0,-33]],[[1297,2467],[-3,0]],[[1294,2467],[-5,1]],[[1289,2468],[2,32]],[[1304,2500],[0,-33]],[[1304,2467],[-3,0]],[[1301,2467],[-4,0]],[[1297,2500],[7,0]],[[1317,2499],[0,-32]],[[1317,2467],[-3,0]],[[1314,2467],[-3,0]],[[1311,2467],[0,32]],[[1311,2467],[-4,0]],[[1307,2467],[-3,0]],[[1332,2499],[-4,-32]],[[1328,2467],[-4,0]],[[1324,2467],[0,32]],[[1324,2467],[-4,0]],[[1320,2467],[-3,0]],[[873,2466],[-1,-32]],[[872,2434],[-3,0]],[[869,2434],[-3,0]],[[866,2434],[4,32]],[[1071,2451],[-1,-27]],[[1070,2424],[-10,-1]],[[1060,2423],[2,15],[-19,0]],[[1043,2438],[0,27]],[[1485,2471],[-6,-16]],[[1479,2455],[-3,12]],[[1172,2494],[6,-17]],[[1178,2477],[0,-15]],[[1178,2462],[-7,0]],[[1171,2462],[-3,8]],[[1517,2463],[0,-13]],[[1517,2450],[-6,5]],[[1183,2474],[-5,3]],[[1213,2470],[-3,-8]],[[1210,2462],[-7,8]],[[864,2466],[-1,-25]],[[863,2441],[-1,-19]],[[862,2422],[0,-157]],[[862,2265],[-16,0]],[[846,2265],[-1,26],[0,165]],[[1498,2472],[-2,-42]],[[1496,2430],[-3,-19]],[[1493,2411],[-2,-3]],[[1491,2408],[-6,7]],[[1485,2415],[2,16]],[[1487,2431],[2,35]],[[822,2424],[0,-9]],[[822,2415],[-20,1]],[[802,2416],[-9,0]],[[793,2416],[3,60]],[[1442,2472],[-6,-31],[1,-18]],[[1437,2423],[-6,-1]],[[1431,2422],[-3,40],[8,27]],[[1531,2475],[-4,-22]],[[1527,2453],[-1,29]],[[890,2447],[-2,13],[-11,-46]],[[877,2414],[-5,20]],[[1527,2453],[-6,-7]],[[1521,2446],[-1,8]],[[1520,2454],[1,11]],[[1273,2482],[-3,-40]],[[1270,2442],[-4,0]],[[1266,2442],[0,32]],[[1479,2455],[0,-7]],[[1479,2448],[-3,-12]],[[1476,2436],[-5,-7]],[[1471,2429],[-1,5]],[[793,2416],[-2,-16]],[[791,2400],[-14,9],[0,22],[-10,16],[-4,-8]],[[763,2439],[0,39]],[[1504,2432],[0,-23]],[[1504,2409],[-3,0]],[[1501,2409],[-5,21]],[[1186,2470],[0,-32]],[[1186,2438],[-6,0]],[[1180,2438],[-2,0]],[[1178,2438],[0,24]],[[1240,2475],[-2,-15],[4,-42]],[[1242,2418],[-8,0]],[[1234,2418],[0,9]],[[1234,2427],[0,39]],[[1244,2475],[0,-25]],[[1244,2450],[0,-31]],[[1244,2419],[-2,-1]],[[1254,2474],[0,-24]],[[1254,2450],[-4,0]],[[1250,2450],[-6,0]],[[1261,2475],[0,-29]],[[1261,2446],[-7,-4]],[[1254,2442],[0,8]],[[1266,2442],[-2,0]],[[1264,2442],[-3,4]],[[922,2449],[0,-32]],[[922,2417],[-4,-32]],[[918,2385],[-9,8],[-2,19]],[[1487,2431],[-8,17]],[[1446,2416],[-9,-14]],[[1437,2402],[0,21]],[[1445,2461],[1,-45]],[[1108,2446],[1,-41]],[[1109,2405],[-3,0]],[[1106,2405],[-1,23],[-9,-3]],[[1096,2425],[-1,0]],[[1095,2425],[-1,43]],[[1105,2470],[3,-24]],[[1154,2470],[0,-32]],[[1154,2438],[-5,0]],[[1149,2438],[0,32]],[[1163,2470],[0,-32]],[[1163,2438],[-9,0]],[[1123,2470],[0,-24]],[[1123,2446],[-7,0]],[[1116,2446],[-2,0]],[[1114,2446],[0,24]],[[1196,2470],[0,-32]],[[1196,2438],[-5,0]],[[1191,2438],[0,32]],[[1201,2470],[0,-32]],[[1201,2438],[-5,0]],[[1149,2438],[-6,0]],[[1143,2438],[0,32]],[[1191,2438],[-3,0]],[[1188,2438],[-2,0]],[[1114,2446],[-6,0]],[[1129,2470],[0,-32]],[[1129,2438],[-1,0]],[[1128,2438],[-5,0]],[[1123,2438],[0,8]],[[1210,2462],[0,-24]],[[1210,2438],[-5,-2]],[[1205,2436],[-4,2]],[[1171,2462],[0,-24]],[[1171,2438],[-8,0]],[[1143,2438],[-4,0]],[[1139,2438],[-3,0]],[[1136,2438],[0,32]],[[1136,2438],[-3,0]],[[1133,2438],[-4,0]],[[1219,2450],[2,-12]],[[1221,2438],[-6,0]],[[1215,2438],[-5,0]],[[1043,2438],[0,-32]],[[1043,2406],[-12,-1]],[[1031,2405],[-2,0]],[[1294,2467],[0,-32]],[[1294,2435],[-5,0]],[[1289,2435],[0,33]],[[1517,2450],[2,-6]],[[1519,2444],[0,3]],[[1519,2447],[0,-5]],[[1519,2442],[-6,-33]],[[1513,2409],[-6,25]],[[1095,2425],[-10,12]],[[1085,2437],[0,14]],[[1000,2405],[-6,0]],[[994,2405],[-2,22],[-10,16],[-2,16]],[[1519,2447],[0,-5]],[[1521,2446],[-1,8]],[[1521,2465],[-2,-21]],[[1301,2467],[0,-32]],[[1301,2435],[-7,0]],[[1307,2467],[0,-33]],[[1307,2434],[-6,1]],[[1314,2467],[0,-32]],[[1314,2435],[-7,-1]],[[1320,2467],[0,-15]],[[1320,2452],[0,-16]],[[1320,2436],[-6,-1]],[[1234,2427],[-8,-1]],[[1226,2426],[-1,32]],[[866,2434],[-3,7]],[[1461,2428],[-1,-35]],[[1460,2393],[0,-11]],[[1460,2382],[-8,3]],[[1452,2385],[-2,73]],[[1178,2438],[-7,0]],[[891,2446],[-1,-7]],[[890,2439],[-1,-62]],[[889,2377],[1,-27]],[[890,2350],[0,-13]],[[890,2337],[-13,16],[-4,16]],[[873,2369],[4,0],[0,45]],[[1452,2385],[-1,-22]],[[1451,2363],[0,-17]],[[1451,2346],[-6,1]],[[1445,2347],[1,69]],[[1226,2426],[-5,1]],[[1221,2427],[0,11]],[[994,2405],[-11,-3],[-11,14],[-2,18]],[[932,2445],[5,-28]],[[937,2417],[-12,0]],[[925,2417],[-3,0]],[[846,2265],[-16,0]],[[830,2265],[-1,70],[-8,0],[1,80]],[[994,2405],[1,-99]],[[995,2306],[0,-16]],[[995,2290],[-22,0]],[[973,2290],[0,40],[-7,30],[-3,42],[-4,0]],[[1324,2443],[3,-29]],[[1327,2414],[0,-11]],[[1327,2403],[-7,9]],[[1320,2412],[0,24]],[[1320,2452],[4,-9]],[[1085,2437],[-3,-42]],[[1082,2395],[-12,0]],[[1070,2395],[0,29]],[[918,2385],[0,-16]],[[918,2369],[-3,0],[0,-45]],[[915,2324],[-3,4]],[[912,2328],[0,49],[-4,0]],[[908,2377],[-9,0]],[[899,2377],[-4,55],[-5,7]],[[945,2405],[-5,12]],[[940,2417],[0,28]],[[1254,2442],[0,-24]],[[1254,2418],[-1,0]],[[1253,2418],[-4,1]],[[1249,2419],[1,31]],[[1249,2419],[-5,0]],[[1485,2415],[-1,-35]],[[1484,2380],[-6,2]],[[1478,2382],[0,5]],[[1478,2387],[1,47],[-3,2]],[[791,2400],[2,-17],[-4,-25]],[[789,2358],[-13,-27]],[[776,2331],[-7,8]],[[769,2339],[-2,0]],[[767,2339],[2,28],[-2,48],[-5,1]],[[762,2416],[1,23]],[[1264,2442],[0,-33]],[[1264,2409],[-3,0]],[[1261,2409],[-7,9]],[[1123,2438],[0,-33]],[[1123,2405],[-6,0]],[[1117,2405],[-1,0]],[[1116,2405],[0,41]],[[1116,2405],[-7,0]],[[940,2417],[-3,0]],[[1270,2442],[0,-33]],[[1270,2409],[-4,0]],[[1266,2409],[-2,0]],[[869,2434],[0,-48]],[[869,2386],[-7,36]],[[1096,2425],[0,-30]],[[1096,2395],[-14,0]],[[899,2377],[-3,0]],[[896,2377],[-7,0]],[[1478,2387],[-6,1]],[[1472,2388],[-1,41]],[[1060,2423],[-2,-20]],[[1058,2403],[-15,0]],[[1043,2403],[0,3]],[[1154,2438],[0,-33]],[[1154,2405],[-5,0]],[[1149,2405],[0,33]],[[1163,2438],[0,-33]],[[1163,2405],[-6,0]],[[1157,2405],[-3,0]],[[1196,2438],[0,-33]],[[1196,2405],[-6,0]],[[1190,2405],[-2,0]],[[1188,2405],[0,33]],[[1205,2436],[0,-31]],[[1205,2405],[-2,0]],[[1203,2405],[-6,0]],[[1197,2405],[-1,0]],[[1221,2427],[1,-22]],[[1222,2405],[-6,0]],[[1216,2405],[-1,0]],[[1215,2405],[0,33]],[[1128,2438],[0,-33]],[[1128,2405],[-2,0]],[[1126,2405],[-3,0]],[[1133,2438],[0,-33]],[[1133,2405],[-5,0]],[[1215,2405],[-5,0]],[[1210,2405],[-5,0]],[[1171,2438],[0,-33]],[[1171,2405],[-1,0]],[[1170,2405],[-6,0]],[[1164,2405],[-1,0]],[[1188,2405],[-5,0]],[[1183,2405],[-3,0]],[[1180,2405],[0,33]],[[1149,2405],[-2,0]],[[1147,2405],[-5,0]],[[1142,2405],[-3,0]],[[1139,2405],[0,33]],[[1180,2405],[-3,0]],[[1177,2405],[-6,0]],[[1139,2405],[-3,0]],[[1136,2405],[-3,0]],[[1320,2412],[-3,-10]],[[1317,2402],[-3,0]],[[1314,2402],[0,33]],[[1294,2435],[0,-33]],[[1294,2402],[-6,1]],[[1288,2403],[1,32]],[[1314,2402],[-3,0]],[[1311,2402],[-4,0]],[[1307,2402],[0,32]],[[1513,2409],[-5,-44],[-2,6]],[[1506,2371],[-2,38]],[[1307,2402],[-6,0]],[[1301,2402],[0,33]],[[1301,2402],[0,-16]],[[1301,2386],[-4,0]],[[1297,2386],[-3,16]],[[1472,2388],[0,-35]],[[1472,2353],[-5,0]],[[1467,2353],[0,34]],[[1467,2387],[3,47]],[[873,2369],[-4,17]],[[1467,2387],[-7,6]],[[1106,2405],[0,-47]],[[1106,2358],[-9,1]],[[1097,2359],[-1,36]],[[1501,2409],[-1,-24]],[[1500,2385],[-7,26]],[[1330,2426],[5,-4]],[[1335,2422],[0,-33]],[[1335,2389],[-5,-10]],[[1330,2379],[-3,0]],[[1327,2379],[0,24]],[[1327,2414],[3,12]],[[1234,2418],[0,-8]],[[1234,2410],[-5,-12]],[[1229,2398],[-7,0]],[[1222,2398],[0,7]],[[1437,2402],[-1,-29]],[[1436,2373],[-2,3]],[[1434,2376],[-7,4]],[[1427,2380],[-2,18]],[[1425,2398],[6,24]],[[1070,2395],[0,-36]],[[1070,2359],[-10,0]],[[1060,2359],[-2,0]],[[1058,2359],[0,44]],[[1343,2374],[-7,-1]],[[1336,2373],[-1,16]],[[1335,2422],[7,1]],[[1342,2423],[1,-49]],[[890,2337],[0,-72]],[[890,2265],[-28,0]],[[1253,2418],[0,-33]],[[1253,2385],[-10,1]],[[1243,2386],[-1,32]],[[1243,2386],[-2,-8]],[[1241,2378],[-5,-4]],[[1236,2374],[-2,36]],[[1261,2409],[0,-32]],[[1261,2377],[-2,0]],[[1259,2377],[-6,0]],[[1253,2377],[0,8]],[[945,2388],[0,-27]],[[945,2361],[-7,0]],[[938,2361],[0,24],[-13,13],[0,19]],[[938,2361],[-7,0]],[[931,2361],[-9,-7]],[[922,2354],[-4,15]],[[802,2416],[0,-81],[6,0],[0,-70]],[[808,2265],[-8,0]],[[800,2265],[-11,1]],[[789,2266],[0,92]],[[830,2265],[-9,0]],[[821,2265],[-13,0]],[[1445,2347],[-1,0]],[[1444,2347],[-8,26]],[[1500,2385],[0,-1]],[[1500,2384],[-2,-24]],[[1498,2360],[-8,16]],[[1490,2376],[1,32]],[[767,2339],[-9,15]],[[758,2354],[4,62]],[[1490,2376],[-1,-5]],[[1489,2371],[-6,3]],[[1483,2374],[1,6]],[[1506,2371],[-1,-5]],[[1505,2366],[-5,18]],[[1327,2379],[-4,-8]],[[1323,2371],[-6,0]],[[1317,2371],[0,31]],[[1236,2374],[-3,3]],[[1233,2377],[-4,-2]],[[1229,2375],[0,23]],[[1270,2409],[-2,-32]],[[1268,2377],[-2,0]],[[1266,2377],[0,32]],[[1266,2377],[-5,0]],[[1190,2405],[0,-23]],[[1190,2382],[-7,0]],[[1183,2382],[0,23]],[[1183,2350],[-6,0]],[[1177,2350],[0,32]],[[1177,2382],[0,23]],[[1183,2382],[0,-32]],[[1170,2382],[-6,0]],[[1164,2382],[0,23]],[[1170,2405],[0,-23]],[[1177,2382],[-7,0]],[[1197,2382],[-7,0]],[[1197,2405],[0,-23]],[[1164,2382],[-7,1]],[[1157,2383],[0,22]],[[1043,2403],[0,-44]],[[1043,2359],[0,-37]],[[1043,2322],[-9,0]],[[1034,2322],[-3,0]],[[1031,2322],[0,83]],[[1203,2378],[-6,0]],[[1197,2378],[0,4]],[[1203,2405],[0,-27]],[[1157,2383],[-10,0]],[[1147,2383],[0,22]],[[1210,2405],[0,-26]],[[1210,2379],[-7,-1]],[[1222,2398],[0,-32]],[[1222,2366],[-6,0]],[[1216,2366],[0,39]],[[1216,2366],[-6,0]],[[1210,2366],[0,13]],[[1147,2383],[2,-17]],[[1149,2366],[-5,0]],[[1144,2366],[-2,0]],[[1142,2366],[0,39]],[[1031,2322],[-5,-16]],[[1026,2306],[-11,0]],[[1015,2306],[0,99]],[[1117,2405],[9,-28]],[[1126,2377],[0,-3]],[[1126,2374],[-1,-30]],[[1125,2344],[-2,4]],[[1123,2348],[-3,11]],[[1120,2359],[-11,46]],[[1142,2366],[-3,0]],[[1139,2366],[-3,8]],[[1136,2374],[0,31]],[[1136,2374],[-4,0]],[[1132,2374],[-6,0]],[[1126,2377],[0,28]],[[1015,2306],[-20,0]],[[1120,2359],[-10,-1]],[[1110,2358],[-4,0]],[[1058,2359],[-7,0]],[[1051,2359],[-8,0]],[[1297,2386],[0,-8]],[[1297,2378],[-6,-8]],[[1291,2370],[-3,33]],[[1311,2402],[0,-32]],[[1311,2370],[-7,0]],[[1304,2370],[-3,16]],[[973,2290],[-14,1]],[[959,2291],[-7,0],[0,90]],[[1317,2371],[0,-1]],[[1317,2370],[-6,0]],[[1229,2375],[-6,-17]],[[1223,2358],[-1,8]],[[1427,2380],[3,-43]],[[1430,2337],[0,-13]],[[1430,2324],[-5,0]],[[1425,2324],[-1,37]],[[1424,2361],[0,29]],[[1424,2390],[1,8]],[[1467,2353],[-1,-15]],[[1466,2338],[-2,0]],[[1464,2338],[-4,17]],[[1460,2355],[0,2]],[[1460,2357],[0,25]],[[1082,2395],[0,-37]],[[1082,2358],[-12,1]],[[1097,2359],[-15,-1]],[[1406,2393],[0,-22]],[[1406,2371],[-6,0]],[[1400,2371],[0,22]],[[1400,2393],[6,0]],[[1400,2371],[0,-5]],[[1400,2366],[-6,-5]],[[1394,2361],[-3,22],[9,10]],[[1415,2384],[0,-22]],[[1415,2362],[-3,-9]],[[1412,2353],[-5,5]],[[1407,2358],[-1,13]],[[1406,2393],[9,-9]],[[1424,2361],[-4,-1]],[[1420,2360],[-5,2]],[[1415,2384],[9,6]],[[1336,2373],[1,-24]],[[1337,2349],[-2,-1]],[[1335,2348],[-5,0]],[[1330,2348],[0,31]],[[959,2291],[0,-65]],[[959,2226],[-14,0]],[[945,2226],[0,40]],[[945,2266],[0,47]],[[945,2313],[0,48]],[[1478,2382],[-1,-48]],[[1477,2334],[-2,1]],[[1475,2335],[-3,0]],[[1472,2335],[0,18]],[[1253,2377],[0,-33]],[[1253,2344],[-5,0]],[[1248,2344],[-7,1]],[[1241,2345],[0,33]],[[1304,2370],[0,-33]],[[1304,2337],[-3,0]],[[1301,2337],[-3,0]],[[1298,2337],[-1,41]],[[1460,2357],[-9,6]],[[1505,2366],[1,-19]],[[1506,2347],[-6,-12]],[[1500,2335],[-2,25]],[[1434,2376],[1,-37]],[[1435,2339],[-5,-2]],[[1483,2374],[0,-41]],[[1483,2333],[-6,1]],[[1157,2383],[0,-33]],[[1157,2350],[-9,0]],[[1148,2350],[1,16]],[[1164,2382],[0,-32]],[[1164,2350],[-7,0]],[[1197,2378],[0,-28]],[[1197,2350],[-7,0]],[[1190,2350],[0,32]],[[1190,2350],[-7,0]],[[1177,2350],[-7,0]],[[1170,2350],[0,32]],[[1170,2350],[-6,0]],[[1330,2348],[-3,-10]],[[1327,2338],[-4,0]],[[1323,2338],[0,33]],[[1210,2366],[0,-16]],[[1210,2350],[-7,0]],[[1203,2350],[0,28]],[[1203,2350],[-6,0]],[[1241,2345],[0,-4]],[[1241,2341],[-8,0]],[[1233,2341],[0,36]],[[1233,2341],[0,-28]],[[1233,2313],[-3,0]],[[1230,2313],[-4,15]],[[1226,2328],[-3,30]],[[1500,2335],[0,-1]],[[1500,2334],[-9,-2]],[[1491,2332],[-2,39]],[[1298,2337],[-6,0]],[[1292,2337],[-1,33]],[[908,2377],[0,-40],[-3,0]],[[905,2337],[-9,8]],[[896,2345],[0,32]],[[896,2345],[0,-19]],[[896,2326],[-6,24]],[[1259,2377],[0,-33]],[[1259,2344],[-3,0]],[[1256,2344],[-3,0]],[[912,2328],[-7,-13]],[[905,2315],[0,22]],[[1266,2377],[0,-33]],[[1266,2344],[-4,0]],[[1262,2344],[-3,0]],[[1268,2377],[1,-33]],[[1269,2344],[-3,0]],[[1444,2347],[0,-12]],[[1444,2335],[-9,-2]],[[1435,2333],[0,6]],[[1491,2332],[-5,1]],[[1486,2333],[-3,0]],[[1139,2366],[0,-26]],[[1139,2340],[-5,5]],[[1134,2345],[-2,0]],[[1132,2345],[0,29]],[[1132,2345],[-7,-1]],[[1323,2338],[-3,0]],[[1320,2338],[-3,0]],[[1317,2338],[0,32]],[[1407,2358],[0,-12]],[[1407,2346],[-7,0]],[[1400,2346],[0,20]],[[1311,2370],[0,-33]],[[1311,2337],[-4,0]],[[1307,2337],[-3,0]],[[1317,2338],[-3,-1]],[[1314,2337],[-3,0]],[[922,2354],[4,-42]],[[926,2312],[-8,-16]],[[918,2296],[-3,28]],[[1394,2361],[-1,-6]],[[1393,2355],[1,6]],[[1400,2346],[0,-31]],[[1400,2315],[-9,1]],[[1391,2316],[-1,3]],[[1390,2319],[3,36]],[[1148,2350],[0,-32]],[[1148,2318],[1,-7]],[[1149,2311],[-3,3]],[[1146,2314],[-2,17]],[[1144,2331],[0,35]],[[1144,2331],[-3,5]],[[1141,2336],[-2,4]],[[1216,2366],[0,-40]],[[1216,2326],[-6,-1]],[[1210,2325],[0,25]],[[1226,2328],[-3,-2]],[[1223,2326],[-7,0]],[[1460,2355],[-2,-15]],[[1458,2340],[-5,3]],[[1453,2343],[-2,3]],[[1420,2360],[0,-23]],[[1420,2337],[-5,-18]],[[1415,2319],[-2,0]],[[1413,2319],[-1,34]],[[931,2361],[3,-57]],[[934,2304],[-4,-12]],[[930,2292],[-4,20]],[[945,2313],[-7,8],[0,-17]],[[938,2304],[-4,0]],[[1425,2324],[-1,-8]],[[1424,2316],[-3,0]],[[1421,2316],[-1,21]],[[1051,2306],[1,-40]],[[1052,2266],[-9,0]],[[1043,2266],[0,56]],[[1051,2359],[0,-53]],[[1071,2274],[0,-8]],[[1071,2266],[-9,0]],[[1062,2266],[-1,40]],[[1061,2306],[-1,53]],[[1070,2359],[1,-85]],[[1061,2306],[-10,0]],[[1123,2348],[0,-12]],[[1123,2336],[-9,13],[-4,-9]],[[1110,2340],[0,18]],[[1110,2340],[-6,-6]],[[1104,2334],[-7,10]],[[1097,2344],[0,15]],[[1097,2344],[0,-70]],[[1097,2274],[-1,0]],[[1096,2274],[-8,0]],[[1088,2274],[-9,0]],[[1079,2274],[-8,0]],[[789,2266],[-13,0]],[[776,2266],[0,65]],[[1413,2319],[-3,-10]],[[1410,2309],[-5,5]],[[1405,2314],[2,32]],[[1472,2335],[-1,-22]],[[1471,2313],[-6,-4]],[[1465,2309],[1,29]],[[1464,2338],[-5,-4]],[[1459,2334],[-1,6]],[[769,2339],[-5,-40],[3,-34]],[[767,2265],[-5,0]],[[762,2265],[-2,10],[-2,79]],[[896,2326],[8,-11]],[[904,2315],[-4,-11],[0,-39]],[[900,2265],[-10,0]],[[1157,2350],[0,-32]],[[1157,2318],[-9,0]],[[1170,2350],[0,-32]],[[1170,2318],[-6,0]],[[1164,2318],[0,32]],[[1164,2318],[-5,0]],[[1159,2318],[-2,0]],[[1177,2350],[0,-24]],[[1177,2326],[0,-8]],[[1177,2318],[-7,0]],[[1190,2350],[0,-33]],[[1190,2317],[-7,1]],[[1183,2318],[0,8]],[[1183,2326],[0,24]],[[1183,2326],[-6,0]],[[1197,2350],[0,-33]],[[1197,2317],[-7,0]],[[1203,2350],[0,-25]],[[1203,2325],[0,-8]],[[1203,2317],[-6,0]],[[1210,2325],[-7,0]],[[1453,2343],[-1,-29]],[[1452,2314],[-10,-19]],[[1442,2295],[2,40]],[[1123,2336],[0,-30]],[[1123,2306],[0,-32]],[[1123,2274],[-6,0]],[[1117,2274],[-7,0]],[[1110,2274],[0,66]],[[1340,2329],[-2,-21]],[[1338,2308],[-3,-1]],[[1335,2307],[0,41]],[[1337,2349],[3,-20]],[[1335,2307],[-6,-1]],[[1329,2306],[-2,0]],[[1327,2306],[0,32]],[[1506,2347],[3,-22],[-5,-19]],[[1504,2306],[-1,1]],[[1503,2307],[-3,27]],[[1134,2345],[0,-39]],[[1134,2306],[-4,0]],[[1130,2306],[-7,0]],[[1141,2336],[0,-38]],[[1141,2298],[-5,0]],[[1136,2298],[-2,8]],[[1405,2314],[-3,0]],[[1402,2314],[-2,1]],[[1248,2344],[0,-32]],[[1248,2312],[-1,0]],[[1247,2312],[-6,1]],[[1241,2313],[0,28]],[[905,2315],[-1,0]],[[1256,2344],[0,-33]],[[1256,2311],[-2,1]],[[1254,2312],[-6,0]],[[1104,2334],[0,-60]],[[1104,2274],[-7,0]],[[1262,2344],[0,-22]],[[1262,2322],[0,-10]],[[1262,2312],[-5,-1]],[[1257,2311],[-1,0]],[[1269,2344],[0,-16]],[[1269,2328],[-7,-6]],[[1459,2334],[-1,-30]],[[1458,2304],[-2,-5]],[[1456,2299],[-4,15]],[[1465,2309],[-7,-5]],[[1241,2313],[-1,0]],[[1240,2313],[-7,0]],[[1110,2274],[-6,0]],[[1432,2304],[-2,-1]],[[1430,2303],[0,21]],[[1435,2333],[1,-29]],[[1436,2304],[-4,0]],[[776,2266],[-4,0]],[[772,2266],[-5,-1]],[[1327,2306],[-6,-1]],[[1321,2305],[-1,0]],[[1320,2305],[0,33]],[[1320,2305],[-6,0]],[[1314,2305],[0,32]],[[1314,2305],[-2,0]],[[1312,2305],[-5,0]],[[1307,2305],[0,32]],[[1307,2305],[-3,0]],[[1304,2305],[-3,0]],[[1301,2305],[0,32]],[[1301,2305],[-3,0]],[[1298,2305],[-7,0]],[[1291,2305],[1,32]],[[1421,2316],[-3,-5]],[[1418,2311],[-3,8]],[[1146,2314],[-1,-23]],[[1145,2291],[-1,-1]],[[1144,2290],[-3,8]],[[1475,2335],[1,-18]],[[1476,2317],[0,-22]],[[1476,2295],[-1,-26]],[[1475,2269],[-6,1]],[[1469,2270],[2,43]],[[1442,2295],[0,-11]],[[1442,2284],[-6,20]],[[1485,2298],[-9,19]],[[1486,2333],[-1,-35]],[[1503,2307],[0,-5]],[[1503,2302],[0,-2]],[[1503,2300],[-2,-4]],[[1501,2296],[0,-2]],[[1501,2294],[0,-2]],[[1501,2292],[-4,-12]],[[1497,2280],[-1,36],[-5,16]],[[1497,2280],[0,-13]],[[1497,2267],[-5,-1]],[[1492,2266],[-4,2]],[[1488,2268],[-1,20]],[[1487,2288],[-2,10]],[[918,2296],[0,-31]],[[918,2265],[-14,0]],[[904,2265],[-4,0]],[[1230,2313],[2,-12]],[[1232,2301],[-6,-8]],[[1226,2293],[-3,0]],[[1223,2293],[0,33]],[[1269,2328],[0,-17]],[[1269,2311],[-5,1]],[[1264,2312],[-2,0]],[[1223,2293],[-3,0]],[[1220,2293],[-3,0]],[[1217,2293],[-1,33]],[[1183,2318],[1,-33]],[[1184,2285],[-3,0]],[[1181,2285],[-4,0]],[[1177,2285],[0,33]],[[1217,2293],[-4,0]],[[1213,2293],[-3,0]],[[1210,2293],[0,32]],[[1210,2293],[-3,0]],[[1207,2293],[-4,0]],[[1203,2293],[0,24]],[[1430,2303],[-4,-11]],[[1426,2292],[-1,0]],[[1425,2292],[-1,24]],[[1043,2266],[0,-29]],[[1043,2237],[0,-12]],[[1043,2225],[-8,8]],[[1035,2233],[-1,89]],[[1035,2233],[-9,1]],[[1026,2234],[0,72]],[[945,2266],[-6,-1]],[[939,2265],[-1,39]],[[1418,2311],[2,-20]],[[1420,2291],[0,-26]],[[1420,2265],[-9,0]],[[1411,2265],[-1,0]],[[1410,2265],[0,44]],[[1391,2316],[0,-51]],[[1391,2265],[-7,0]],[[1384,2265],[-3,26]],[[1381,2291],[9,28]],[[1159,2318],[1,-33]],[[1160,2285],[-10,1]],[[1150,2286],[0,5]],[[1150,2291],[-1,20]],[[1170,2318],[1,-33]],[[1171,2285],[-3,0]],[[1168,2285],[-3,0]],[[1165,2285],[-1,33]],[[1165,2285],[-5,0]],[[1177,2285],[-3,0]],[[1174,2285],[-3,0]],[[1190,2317],[0,-32]],[[1190,2285],[-3,0]],[[1187,2285],[-3,0]],[[1197,2317],[0,-32]],[[1197,2285],[-3,0]],[[1194,2285],[-4,0]],[[1203,2293],[-3,-8]],[[1200,2285],[-3,0]],[[1487,2288],[-11,7]],[[1425,2292],[-5,-1]],[[1402,2314],[0,-49]],[[1402,2265],[-9,0]],[[1393,2265],[-2,0]],[[1150,2291],[-5,0]],[[1410,2265],[-7,0]],[[1403,2265],[-1,0]],[[1456,2299],[-1,-18]],[[1455,2281],[-4,-14]],[[1451,2267],[-5,-15]],[[1446,2252],[-3,13]],[[1443,2265],[-1,19]],[[1240,2313],[0,-29]],[[1240,2284],[-6,0]],[[1234,2284],[-2,17]],[[1469,2270],[-6,3]],[[1463,2273],[0,4]],[[1463,2277],[2,32]],[[1243,2284],[-3,0]],[[1247,2312],[0,-28]],[[1247,2284],[-4,0]],[[1254,2312],[0,-32]],[[1254,2280],[-7,4]],[[930,2292],[1,-27]],[[931,2265],[-1,0]],[[930,2265],[-12,0]],[[1264,2312],[0,-32]],[[1264,2280],[-1,0]],[[1263,2280],[-5,0]],[[1258,2280],[-1,0]],[[1257,2280],[0,31]],[[1257,2280],[-3,0]],[[1270,2280],[-6,0]],[[1269,2311],[1,-31]],[[1463,2277],[-8,4]],[[1503,2300],[0,-8]],[[1503,2292],[-2,0]],[[1504,2306],[-1,-4]],[[1136,2298],[0,-24]],[[1136,2274],[-6,0]],[[1130,2274],[0,32]],[[1062,2266],[-9,0]],[[1053,2266],[-1,0]],[[1130,2274],[0,-16]],[[1130,2258],[-7,0]],[[1123,2258],[0,16]],[[1329,2273],[-3,0]],[[1326,2273],[-5,-1]],[[1321,2272],[0,33]],[[1329,2306],[0,-33]],[[1015,2306],[0,-97],[-4,0],[0,-37]],[[1011,2172],[-7,1]],[[1004,2173],[-7,0]],[[997,2173],[-8,0]],[[989,2173],[0,61],[6,0],[0,56]],[[1026,2234],[0,-62]],[[1026,2172],[-13,0]],[[1013,2172],[-2,0]],[[939,2265],[-8,0]],[[1321,2272],[-4,0]],[[1317,2272],[-4,0]],[[1313,2272],[-1,33]],[[1313,2272],[-2,0]],[[1311,2272],[-7,0]],[[1304,2272],[0,33]],[[1298,2305],[0,-33]],[[1298,2272],[-7,0]],[[1291,2272],[-2,16]],[[1289,2288],[2,17]],[[1304,2272],[-6,0]],[[1443,2265],[-2,0]],[[1441,2265],[-9,0]],[[1432,2265],[0,39]],[[1432,2265],[-6,0]],[[1426,2265],[0,27]],[[1234,2284],[3,-15]],[[1237,2269],[-11,0]],[[1226,2269],[0,24]],[[1144,2290],[0,-16]],[[1144,2274],[-3,0]],[[1141,2274],[-5,0]],[[1506,2290],[1,-2]],[[1506,2290],[0,0]],[[1503,2292],[2,-3]],[[1505,2289],[-3,-15]],[[1502,2274],[-4,-10]],[[1498,2264],[-1,3]],[[1488,2268],[-5,1]],[[1483,2269],[-7,0]],[[1476,2269],[-1,0]],[[1507,2288],[3,-40]],[[1510,2248],[-1,-6]],[[1509,2242],[-3,-11]],[[1506,2231],[-4,43]],[[1505,2289],[1,1]],[[1213,2293],[0,-40]],[[1213,2253],[-6,0]],[[1207,2253],[0,40]],[[1220,2293],[0,-32]],[[1220,2261],[0,-9]],[[1220,2252],[-7,1]],[[1207,2253],[-7,0]],[[1200,2253],[0,32]],[[1226,2269],[0,-9]],[[1226,2260],[-6,1]],[[1426,2265],[-5,0]],[[1421,2265],[-1,0]],[[1150,2286],[1,-16]],[[1151,2270],[-4,-3]],[[1147,2267],[-3,7]],[[989,2173],[-16,-1]],[[973,2172],[-13,0]],[[960,2172],[-1,0]],[[959,2172],[0,54]],[[1384,2265],[0,-13]],[[1384,2252],[-13,-1]],[[1371,2251],[0,12]],[[1371,2263],[10,28]],[[1291,2272],[0,-29]],[[1291,2243],[-4,0]],[[1287,2243],[-4,0]],[[1283,2243],[6,45]],[[1160,2285],[0,-32]],[[1160,2253],[-7,0]],[[1153,2253],[-2,17]],[[1200,2253],[-6,0]],[[1194,2253],[0,32]],[[1174,2285],[0,-32]],[[1174,2253],[-1,0]],[[1173,2253],[-5,0]],[[1168,2253],[0,32]],[[1168,2253],[-7,0]],[[1161,2253],[-1,0]],[[1187,2285],[0,-32]],[[1187,2253],[-1,0]],[[1186,2253],[-5,0]],[[1181,2253],[0,32]],[[1181,2253],[-2,0]],[[1179,2253],[-5,0]],[[1194,2253],[-2,0]],[[1192,2253],[-5,0]],[[1254,2280],[0,-25]],[[1254,2255],[-10,1]],[[1244,2256],[-1,3]],[[1243,2259],[0,25]],[[1243,2259],[-6,0]],[[1237,2259],[0,10]],[[1463,2273],[-1,-46]],[[1462,2227],[-5,0]],[[1457,2227],[-6,40]],[[1270,2280],[3,-42]],[[1273,2238],[0,-22]],[[1273,2216],[-7,20]],[[1266,2236],[2,29],[-5,-1]],[[1263,2264],[0,16]],[[1258,2280],[0,-41]],[[1258,2239],[0,-8]],[[1258,2231],[-4,0]],[[1254,2231],[0,24]],[[1263,2264],[0,-24]],[[1263,2240],[-5,-1]],[[1079,2274],[1,-32]],[[1080,2242],[-8,0]],[[1072,2242],[-1,24]],[[1506,2231],[-4,-12]],[[1502,2219],[-1,16]],[[1501,2235],[-1,4]],[[1500,2239],[-1,6]],[[1499,2245],[-1,19]],[[1088,2274],[0,-33]],[[1088,2241],[-8,1]],[[1147,2267],[0,-26]],[[1147,2241],[-4,1]],[[1143,2242],[-2,0]],[[1141,2242],[0,32]],[[1136,2274],[0,-32]],[[1136,2242],[-6,0]],[[1130,2242],[0,16]],[[1141,2242],[-3,0]],[[1138,2242],[-2,0]],[[1096,2274],[0,-33]],[[1096,2241],[-7,0]],[[1089,2241],[-1,0]],[[1123,2258],[0,-17]],[[1123,2241],[-6,0]],[[1117,2241],[0,33]],[[1104,2274],[0,-33]],[[1104,2241],[-8,0]],[[1110,2274],[0,-33]],[[1110,2241],[-6,0]],[[1117,2241],[-7,0]],[[1326,2273],[0,-33]],[[1326,2240],[-2,-1]],[[1324,2239],[-7,-1]],[[1317,2238],[0,34]],[[1469,2270],[0,-36]],[[1469,2234],[-1,-13]],[[1468,2221],[-6,-8]],[[1462,2213],[0,14]],[[1510,2248],[7,-13],[-9,-13],[1,20]],[[1311,2272],[0,-29]],[[1311,2243],[-5,0]],[[1306,2243],[-2,0]],[[1304,2243],[0,29]],[[1317,2238],[-6,-1]],[[1311,2237],[0,6]],[[1304,2243],[-5,0]],[[1299,2243],[-1,0]],[[1298,2243],[0,29]],[[1298,2243],[-4,0]],[[1294,2243],[-3,0]],[[1476,2269],[0,-37]],[[1476,2232],[-5,-16]],[[1471,2216],[-2,18]],[[1153,2253],[0,-17]],[[1153,2236],[-4,0]],[[1149,2236],[-2,5]],[[1483,2269],[1,-41]],[[1484,2228],[-1,-1]],[[1483,2227],[-4,-1]],[[1479,2226],[-3,6]],[[1488,2268],[-2,-29]],[[1486,2239],[-2,-11]],[[1237,2259],[-2,-14]],[[1235,2245],[-1,-5]],[[1234,2240],[-8,4]],[[1226,2244],[0,16]],[[1492,2266],[1,-26]],[[1493,2240],[0,-8]],[[1493,2232],[-7,7]],[[1499,2245],[0,-2]],[[1499,2243],[-1,1]],[[1498,2244],[-5,-4]],[[1457,2227],[-6,-15]],[[1451,2212],[-4,16]],[[1447,2228],[-1,24]],[[800,2265],[0,-76]],[[800,2189],[-14,0]],[[786,2189],[-1,18],[-6,-24],[-6,6]],[[773,2189],[-3,19]],[[770,2208],[-1,42],[3,16]],[[1072,2242],[0,-33]],[[1072,2209],[-1,-16]],[[1071,2193],[-8,0]],[[1063,2193],[0,20]],[[1063,2213],[-1,53]],[[1063,2213],[-11,0]],[[1052,2213],[0,24]],[[1052,2237],[1,29]],[[939,2265],[0,-53]],[[939,2212],[-5,0]],[[934,2212],[-4,53]],[[1052,2237],[-9,0]],[[945,2226],[0,-30]],[[945,2196],[-3,-10]],[[942,2186],[-2,20]],[[940,2206],[-1,6]],[[1432,2265],[0,-32]],[[1432,2233],[-1,-10]],[[1431,2223],[-8,4]],[[1423,2227],[-1,1]],[[1422,2228],[-1,37]],[[1422,2228],[-10,-5]],[[1412,2223],[-1,42]],[[934,2212],[-9,-32]],[[925,2180],[-4,-8],[-17,0]],[[904,2172],[0,93]],[[862,2172],[0,-33],[-4,-11]],[[858,2128],[-5,31],[-15,0],[-8,10]],[[830,2169],[0,96]],[[862,2265],[0,-93]],[[904,2172],[0,-82]],[[904,2090],[-25,1]],[[879,2091],[-3,0],[-2,81],[-6,0]],[[868,2172],[-6,0]],[[1403,2265],[0,-35]],[[1403,2230],[-3,-2]],[[1400,2228],[-7,2]],[[1393,2230],[0,35]],[[1412,2223],[0,-6]],[[1412,2217],[-6,0]],[[1406,2217],[-3,13]],[[770,2208],[-6,8]],[[764,2216],[-2,49]],[[1447,2228],[-4,-33]],[[1443,2195],[-2,-1]],[[1441,2194],[0,38]],[[1441,2232],[0,33]],[[1441,2232],[-3,0]],[[1438,2232],[-6,1]],[[1393,2230],[-8,1]],[[1385,2231],[-1,-1]],[[1384,2230],[0,22]],[[821,2265],[0,-76]],[[821,2189],[-19,0]],[[802,2189],[-2,0]],[[830,2169],[1,-90]],[[831,2079],[1,-34]],[[832,2045],[-1,-1]],[[831,2044],[-6,-9],[0,-26]],[[825,2009],[-4,-8]],[[821,2001],[-1,14]],[[820,2015],[1,13]],[[821,2028],[0,25]],[[821,2053],[0,136]],[[1266,2236],[-3,4]],[[1371,2251],[0,-32]],[[1371,2219],[-7,0]],[[1364,2219],[0,20]],[[1364,2239],[0,13]],[[1364,2252],[7,11]],[[1226,2244],[0,-16]],[[1226,2228],[-6,0]],[[1220,2228],[0,24]],[[1244,2256],[0,-29]],[[1244,2227],[-3,0]],[[1241,2227],[-5,0]],[[1236,2227],[-1,18]],[[1130,2242],[0,-21]],[[1130,2221],[-7,-4]],[[1123,2217],[0,24]],[[1254,2231],[-4,-4]],[[1250,2227],[-6,0]],[[1161,2253],[1,-33]],[[1162,2220],[-7,0]],[[1155,2220],[-2,16]],[[1213,2253],[0,-33]],[[1213,2220],[-1,0]],[[1212,2220],[-5,0]],[[1207,2220],[0,33]],[[1186,2253],[0,-33]],[[1186,2220],[-6,-1]],[[1180,2219],[-1,34]],[[1168,2253],[1,-34]],[[1169,2219],[-2,0]],[[1167,2219],[-5,1]],[[1173,2253],[0,-34]],[[1173,2219],[-4,0]],[[1207,2220],[-2,0]],[[1205,2220],[-5,0]],[[1200,2220],[0,33]],[[1192,2253],[0,-33]],[[1192,2220],[0,-2]],[[1192,2218],[-6,2]],[[1200,2220],[-1,0]],[[1199,2220],[-7,0]],[[1180,2219],[-7,0]],[[1220,2228],[0,-16]],[[1220,2212],[-2,0]],[[1218,2212],[-5,8]],[[1364,2239],[-5,-14]],[[1359,2225],[-2,6]],[[1357,2231],[7,21]],[[1384,2230],[-6,-12]],[[1378,2218],[-7,0]],[[1371,2218],[0,1]],[[1236,2227],[-3,-24]],[[1233,2203],[-9,0]],[[1224,2203],[4,12]],[[1228,2215],[6,25]],[[1500,2239],[-1,4]],[[1228,2215],[-2,13]],[[1498,2244],[0,-11]],[[1498,2233],[-5,-5]],[[1493,2228],[0,4]],[[1299,2243],[0,-22]],[[1299,2221],[0,-8]],[[1299,2213],[-5,0]],[[1294,2213],[0,4]],[[1294,2217],[0,26]],[[1294,2217],[-6,-4]],[[1288,2213],[-1,0]],[[1287,2213],[0,30]],[[1287,2213],[-5,-19]],[[1282,2194],[0,45]],[[1282,2239],[1,4]],[[1311,2222],[-5,-1]],[[1306,2221],[0,22]],[[1311,2237],[0,-15]],[[1306,2221],[-7,0]],[[1143,2242],[0,-27]],[[1143,2215],[-5,-7]],[[1138,2208],[0,34]],[[1138,2208],[-2,1]],[[1136,2209],[-3,-6]],[[1133,2203],[-2,6]],[[1131,2209],[-1,12]],[[1149,2236],[2,-27]],[[1151,2209],[-2,0]],[[1149,2209],[-6,6]],[[1089,2241],[0,-32]],[[1089,2209],[-7,0]],[[1082,2209],[-2,0]],[[1080,2209],[0,33]],[[1080,2209],[-8,0]],[[1123,2217],[0,-8]],[[1123,2209],[-6,0]],[[1117,2209],[0,32]],[[1110,2241],[0,-32]],[[1110,2209],[0,-32]],[[1110,2177],[-3,0]],[[1107,2177],[-11,0]],[[1096,2177],[0,32]],[[1096,2209],[0,32]],[[1096,2209],[-7,0]],[[1117,2209],[-7,0]],[[1334,2230],[-3,0]],[[1331,2230],[-7,-19]],[[1324,2211],[0,7]],[[1324,2218],[0,21]],[[1326,2240],[4,1]],[[1330,2241],[4,-11]],[[1273,2216],[0,-16]],[[1273,2200],[-10,-9]],[[1263,2191],[0,24]],[[1263,2215],[0,25]],[[1334,2230],[2,-15]],[[1336,2215],[-1,0]],[[1335,2215],[-4,4]],[[1331,2219],[0,11]],[[1263,2215],[-5,0]],[[1258,2215],[0,16]],[[1324,2218],[-6,0]],[[1318,2218],[-1,20]],[[1364,2219],[0,-14]],[[1364,2205],[-5,0]],[[1359,2205],[0,20]],[[1493,2228],[-1,-25]],[[1492,2203],[-8,9]],[[1484,2212],[-1,15]],[[1277,2230],[1,-35]],[[1278,2195],[-1,-2]],[[1277,2193],[-4,-5]],[[1273,2188],[0,12]],[[1273,2238],[4,-8]],[[1282,2194],[-4,1]],[[1277,2230],[5,9]],[[1318,2218],[0,-6]],[[1318,2212],[-7,0]],[[1311,2212],[0,10]],[[1052,2213],[0,-4]],[[1052,2209],[-9,0]],[[1043,2209],[0,16]],[[1155,2220],[1,-11]],[[1156,2209],[-5,0]],[[1502,2219],[-1,16]],[[1471,2216],[3,-22]],[[1474,2194],[-7,-22]],[[1467,2172],[1,34]],[[1468,2206],[0,15]],[[1043,2209],[0,-37]],[[1043,2172],[-13,0]],[[1030,2172],[-4,0]],[[1498,2233],[-1,-26],[-5,-4]],[[1438,2232],[-2,-20]],[[1436,2212],[-6,-4]],[[1430,2208],[1,15]],[[1482,2196],[0,1]],[[1482,2196],[0,0]],[[1484,2212],[-2,-15]],[[1482,2197],[-3,29]],[[1482,2196],[-8,-2]],[[1441,2194],[-2,-7]],[[1439,2187],[-3,25]],[[1462,2213],[0,-11]],[[1462,2202],[-3,-16]],[[1459,2186],[-2,5]],[[1457,2191],[-5,14]],[[1452,2205],[-1,7]],[[1258,2215],[0,-33]],[[1258,2182],[-4,-16]],[[1254,2166],[-2,-1]],[[1252,2165],[-2,17]],[[1250,2182],[0,19]],[[1250,2201],[0,26]],[[1359,2205],[-4,-7]],[[1355,2198],[-3,0]],[[1352,2198],[-1,21]],[[1351,2219],[6,12]],[[1400,2228],[3,-34]],[[1403,2194],[-7,-3]],[[1396,2191],[-5,13]],[[1391,2204],[2,26]],[[1391,2204],[-2,-1]],[[1389,2203],[-4,5]],[[1385,2208],[0,23]],[[1385,2208],[-3,-20]],[[1382,2188],[-4,0]],[[1378,2188],[0,30]],[[1345,2212],[1,-13]],[[1346,2199],[-7,0]],[[1339,2199],[-1,13]],[[1338,2212],[7,0]],[[1331,2219],[-1,-23]],[[1330,2196],[0,-8]],[[1330,2188],[-6,0]],[[1324,2188],[0,23]],[[1406,2217],[-1,-24]],[[1405,2193],[-2,1]],[[1452,2205],[-4,-24]],[[1448,2181],[-5,14]],[[1224,2203],[-4,9]],[[1423,2227],[5,-29]],[[1428,2198],[-3,-11]],[[1425,2187],[-1,1]],[[1424,2188],[-3,-3]],[[1421,2185],[-3,-6]],[[1418,2179],[-6,38]],[[1430,2208],[0,-7]],[[1430,2201],[-2,-3]],[[1250,2201],[-4,-15]],[[1246,2186],[-2,0]],[[1244,2186],[-3,8]],[[1241,2194],[0,33]],[[1241,2194],[-2,-8]],[[1239,2186],[-6,0]],[[1233,2186],[0,17]],[[959,2172],[-14,0],[0,24]],[[1311,2212],[0,-14]],[[1311,2198],[-5,-1]],[[1306,2197],[0,24]],[[1306,2197],[-2,0]],[[1304,2197],[-5,3]],[[1299,2200],[0,13]],[[1131,2209],[-8,0]],[[1468,2206],[-6,-4]],[[1352,2198],[-4,-20]],[[1348,2178],[-2,0]],[[1346,2178],[0,21]],[[1345,2212],[6,7]],[[1218,2212],[0,-25]],[[1218,2187],[-3,1]],[[1215,2188],[-3,0]],[[1212,2188],[0,32]],[[1192,2218],[0,-31]],[[1192,2187],[-3,0]],[[1189,2187],[-3,0]],[[1186,2187],[0,33]],[[1212,2188],[-4,0]],[[1208,2188],[-3,-1]],[[1205,2187],[0,33]],[[1186,2187],[-3,0]],[[1183,2187],[-3,0]],[[1180,2187],[0,32]],[[1205,2187],[-3,0]],[[1202,2187],[-3,0]],[[1199,2187],[0,33]],[[1199,2187],[-3,0]],[[1196,2187],[-4,0]],[[1167,2219],[0,-32]],[[1167,2187],[-3,0]],[[1164,2187],[-7,0]],[[1157,2187],[-1,3]],[[1156,2190],[0,19]],[[1173,2219],[0,-32]],[[1173,2187],[-3,0]],[[1170,2187],[-3,0]],[[1180,2187],[-4,0]],[[1176,2187],[-3,0]],[[1371,2218],[0,-33]],[[1371,2185],[-7,0]],[[1364,2185],[0,20]],[[1335,2215],[3,-3]],[[1339,2199],[0,-3]],[[1339,2196],[-9,0]],[[1378,2188],[-1,-9]],[[1377,2179],[-6,5]],[[1371,2184],[0,1]],[[1324,2188],[-5,0]],[[1319,2188],[-1,24]],[[1294,2213],[-1,-25]],[[1293,2188],[-5,0]],[[1288,2188],[0,25]],[[1418,2179],[0,-3]],[[1418,2176],[-5,-7],[-7,17]],[[1406,2186],[-1,7]],[[773,2189],[-2,-42],[0,-68]],[[771,2079],[-6,0]],[[765,2079],[-6,41],[3,23],[2,73]],[[1263,2191],[0,-8]],[[1263,2183],[-5,-1]],[[1143,2215],[-1,-38]],[[1142,2177],[-6,0]],[[1136,2177],[0,32]],[[1149,2209],[2,-19]],[[1151,2190],[0,-13]],[[1151,2177],[-2,-3]],[[1149,2174],[-7,3]],[[1299,2200],[0,-23]],[[1299,2177],[-4,-1]],[[1295,2176],[-2,12]],[[1063,2193],[0,-20]],[[1063,2173],[-1,0]],[[1062,2173],[-10,0]],[[1052,2173],[0,36]],[[1389,2203],[0,-26]],[[1389,2177],[-7,11]],[[940,2206],[-6,-21]],[[934,2185],[-9,-5]],[[1288,2188],[-6,0]],[[1282,2188],[0,6]],[[1439,2187],[0,-3]],[[1439,2184],[-5,-20]],[[1434,2164],[-3,4]],[[1431,2168],[-1,33]],[[1319,2188],[-1,0]],[[1318,2188],[-7,8]],[[1311,2196],[0,2]],[[1224,2203],[2,-24]],[[1226,2179],[-6,0]],[[1220,2179],[-2,8]],[[1082,2209],[0,-36]],[[1082,2173],[-11,0]],[[1071,2173],[0,20]],[[1096,2177],[0,-33]],[[1096,2144],[-7,0]],[[1089,2144],[-7,0]],[[1082,2144],[0,29]],[[1136,2177],[-6,0]],[[1130,2177],[0,12]],[[1130,2189],[3,14]],[[1052,2173],[-2,0]],[[1050,2173],[-7,-1]],[[1130,2189],[-7,-29]],[[1123,2160],[0,17]],[[1123,2177],[0,32]],[[1123,2177],[-6,0]],[[1117,2177],[0,32]],[[1117,2177],[-7,0]],[[1156,2190],[-5,0]],[[942,2186],[-5,-32]],[[937,2154],[-1,5]],[[936,2159],[-2,26]],[[1396,2191],[-1,-27]],[[1395,2164],[-6,0]],[[1389,2164],[0,13]],[[786,2189],[-8,-83]],[[778,2106],[2,-29]],[[780,2077],[-9,2]],[[1465,2162],[-2,2]],[[1463,2164],[-1,38]],[[1467,2172],[-2,-10]],[[1457,2191],[-2,-11]],[[1455,2180],[-4,-16]],[[1451,2164],[-3,17]],[[1359,2205],[0,-34]],[[1359,2171],[-4,-7]],[[1355,2164],[0,7]],[[1355,2171],[0,27]],[[1364,2185],[-1,-14]],[[1363,2171],[-4,0]],[[1233,2186],[0,-8]],[[1233,2178],[-5,1]],[[1228,2179],[-2,0]],[[1250,2182],[-4,4]],[[1463,2172],[-4,13]],[[1459,2185],[0,1]],[[1462,2202],[1,-30]],[[1431,2168],[-2,-17]],[[1429,2151],[-2,10]],[[1427,2161],[-2,26]],[[1273,2188],[0,-15]],[[1273,2173],[-8,-1]],[[1265,2172],[-2,0]],[[1263,2172],[0,11]],[[1304,2197],[0,-24]],[[1304,2173],[-5,0]],[[1299,2173],[0,4]],[[1470,2140],[-1,19]],[[1469,2159],[12,12],[3,-12],[-14,-19]],[[1346,2178],[-2,-6]],[[1344,2172],[-4,0]],[[1340,2172],[-1,0]],[[1339,2172],[0,24]],[[1282,2188],[0,-24]],[[1282,2164],[-3,-16]],[[1279,2148],[-2,0]],[[1277,2148],[0,45]],[[1355,2171],[-7,1]],[[1348,2172],[0,6]],[[1311,2196],[0,-25]],[[1311,2171],[0,-6]],[[1311,2165],[-4,0]],[[1307,2165],[-3,0]],[[1304,2165],[0,8]],[[1339,2172],[-4,0]],[[1335,2172],[-5,0]],[[1330,2172],[0,16]],[[1406,2186],[-5,-39]],[[1401,2147],[-6,0]],[[1395,2147],[0,17]],[[960,2172],[0,-17]],[[960,2155],[-13,-13]],[[947,2142],[-9,-6]],[[938,2136],[-1,18]],[[1418,2176],[-3,-18]],[[1415,2158],[-5,-11]],[[1410,2147],[-6,1]],[[1404,2148],[-3,-1]],[[1448,2181],[-2,-12]],[[1446,2169],[-5,-14]],[[1441,2155],[-2,29]],[[1318,2188],[-1,-17]],[[1317,2171],[-6,0]],[[1244,2186],[0,-16]],[[1244,2170],[-5,0]],[[1239,2170],[0,16]],[[1071,2173],[-8,0]],[[1277,2148],[-4,0]],[[1273,2148],[0,25]],[[1460,2156],[-2,7]],[[1458,2163],[-3,17]],[[1459,2185],[1,-29]],[[1157,2187],[0,-10]],[[1157,2177],[-6,0]],[[821,2053],[-2,-1]],[[819,2052],[-1,35],[-16,34]],[[802,2121],[0,68]],[[802,2121],[-2,0]],[[800,2121],[-22,-15]],[[1424,2188],[3,-27]],[[1429,2151],[-5,-11]],[[1424,2140],[-3,-2]],[[1421,2138],[0,1]],[[1421,2139],[2,22]],[[1423,2161],[-2,24]],[[1295,2176],[0,-4]],[[1295,2172],[-3,-8]],[[1292,2164],[-4,0]],[[1288,2164],[0,24]],[[1130,2177],[0,-33]],[[1130,2144],[-7,0]],[[1123,2144],[0,16]],[[1288,2164],[-2,0]],[[1286,2164],[-4,0]],[[1382,2188],[0,-46]],[[1382,2142],[-6,0]],[[1376,2142],[0,17]],[[1376,2159],[1,20]],[[1389,2164],[-3,-35]],[[1386,2129],[-4,12]],[[1382,2141],[0,1]],[[1330,2172],[-1,-17]],[[1329,2155],[-5,1]],[[1324,2156],[0,9]],[[1324,2165],[0,23]],[[1324,2165],[-6,-6]],[[1318,2159],[-1,12]],[[1215,2188],[0,-25]],[[1215,2163],[-7,0]],[[1208,2163],[0,25]],[[1220,2179],[-1,-24]],[[1219,2155],[-4,0]],[[1215,2155],[0,8]],[[1208,2163],[-6,0]],[[1202,2163],[0,24]],[[1189,2187],[0,-24]],[[1189,2163],[-6,0]],[[1183,2163],[0,24]],[[1196,2187],[0,-24]],[[1196,2163],[-7,0]],[[1202,2163],[-6,0]],[[1164,2187],[0,-24]],[[1164,2163],[-6,0]],[[1158,2163],[-1,14]],[[1170,2187],[0,-24]],[[1170,2163],[-6,0]],[[1176,2187],[0,-24]],[[1176,2163],[-6,0]],[[1183,2163],[-7,0]],[[936,2159],[-8,-8]],[[928,2151],[-3,29]],[[1239,2170],[0,-24]],[[1239,2146],[-6,0]],[[1233,2146],[0,32]],[[1423,2161],[-8,-7]],[[1415,2154],[0,4]],[[1252,2165],[-6,0]],[[1246,2165],[-2,5]],[[1462,2154],[-2,-2]],[[1460,2152],[0,4]],[[1463,2172],[-1,-18]],[[1371,2184],[0,-21]],[[1371,2163],[-8,0]],[[1363,2163],[0,8]],[[1441,2155],[-2,-2]],[[1439,2153],[-2,-5]],[[1437,2148],[-3,16]],[[1376,2159],[-5,0]],[[1371,2159],[0,4]],[[1263,2172],[-3,-35]],[[1260,2137],[-6,12]],[[1254,2149],[0,17]],[[1451,2164],[-2,-11]],[[1449,2153],[-4,-19]],[[1445,2134],[0,2]],[[1445,2136],[1,33]],[[1458,2163],[-1,-15]],[[1457,2148],[-2,-6]],[[1455,2142],[-3,4]],[[1452,2146],[-3,7]],[[928,2151],[2,-28]],[[930,2123],[0,-43]],[[930,2080],[-3,-10],[-23,0]],[[904,2070],[0,20]],[[1226,2179],[-3,-35]],[[1223,2144],[-4,11]],[[1228,2179],[0,-41]],[[1228,2138],[-2,1]],[[1226,2139],[-4,0]],[[1222,2139],[1,5]],[[1233,2146],[0,-8]],[[1233,2138],[-5,0]],[[1348,2172],[1,-31]],[[1349,2141],[-2,-9]],[[1347,2132],[-1,-1]],[[1346,2131],[-2,41]],[[1158,2163],[-1,-11]],[[1157,2152],[-8,0]],[[1149,2152],[0,22]],[[1136,2177],[0,-33]],[[1136,2144],[-6,0]],[[1123,2144],[-6,0]],[[1117,2144],[0,33]],[[1107,2177],[1,-35]],[[1108,2142],[-4,1]],[[1104,2143],[-4,1]],[[1100,2144],[-4,0]],[[1117,2144],[0,-1]],[[1117,2143],[-6,-2]],[[1111,2141],[-3,1]],[[1142,2177],[0,-33]],[[1142,2144],[-6,0]],[[1149,2152],[0,-24]],[[1149,2128],[-7,0]],[[1142,2128],[0,16]],[[1299,2173],[1,-33]],[[1300,2140],[-4,0]],[[1296,2140],[-1,32]],[[1273,2148],[0,-23]],[[1273,2125],[-5,-1]],[[1268,2124],[-3,1],[0,47]],[[1304,2165],[-2,-25]],[[1302,2140],[-2,0]],[[1030,2082],[0,0]],[[1049,2128],[-7,0],[0,-49]],[[1042,2079],[-12,0]],[[1030,2079],[-1,0]],[[1029,2079],[0,25]],[[1029,2104],[1,68]],[[1050,2173],[-1,-45]],[[1082,2144],[-1,0]],[[1081,2144],[-10,0]],[[1071,2144],[0,5]],[[1071,2149],[0,24]],[[1007,2121],[0,-49]],[[1007,2072],[-6,0]],[[1001,2072],[0,16]],[[1001,2088],[-5,12]],[[996,2100],[1,73]],[[1004,2173],[3,-52]],[[1018,2124],[-2,-12],[-9,9]],[[1013,2172],[5,-48]],[[996,2100],[-23,0]],[[973,2100],[0,40]],[[973,2140],[0,32]],[[1062,2120],[-1,0]],[[1061,2120],[-10,0]],[[1051,2120],[-2,8]],[[1062,2173],[0,-24]],[[1062,2149],[0,-29]],[[1071,2149],[-9,0]],[[973,2140],[-2,19],[-11,-4]],[[879,2091],[-1,-90]],[[878,2001],[-10,0]],[[868,2001],[0,171]],[[868,2001],[-16,-6]],[[852,1995],[4,41],[-1,43]],[[855,2079],[3,49]],[[1029,2104],[-8,-1]],[[1021,2103],[-3,21]],[[1296,2140],[0,-8]],[[1296,2132],[-4,0]],[[1292,2132],[0,32]],[[1340,2172],[0,-27]],[[1340,2145],[-2,0]],[[1338,2145],[-3,0]],[[1335,2145],[0,27]],[[1268,2124],[0,-8]],[[1268,2116],[-8,0]],[[1260,2116],[0,21]],[[1346,2131],[-4,-1]],[[1342,2130],[-2,15]],[[1335,2145],[-5,-2]],[[1330,2143],[-1,12]],[[1355,2164],[0,-23]],[[1355,2141],[-6,0]],[[1318,2159],[-1,-16]],[[1317,2143],[-1,0]],[[1316,2143],[-5,4]],[[1311,2147],[0,18]],[[1363,2163],[0,-16]],[[1363,2147],[-3,-7]],[[1360,2140],[-5,-2]],[[1355,2138],[0,3]],[[1246,2165],[-1,-16]],[[1245,2149],[-4,-22]],[[1241,2127],[-2,19]],[[1445,2136],[-2,-7]],[[1443,2129],[-4,24]],[[855,2079],[-24,0]],[[1437,2148],[-2,-6]],[[1435,2142],[-7,-17]],[[1428,2125],[-2,6]],[[1426,2131],[-2,9]],[[1371,2159],[0,-20]],[[1371,2139],[-2,-6]],[[1369,2133],[-3,2]],[[1366,2135],[-3,12]],[[1254,2149],[-5,-14]],[[1249,2135],[-4,14]],[[1311,2147],[0,-15]],[[1311,2132],[-3,0]],[[1308,2132],[-1,33]],[[1324,2156],[0,-17]],[[1324,2139],[-7,4]],[[938,2136],[0,-3]],[[938,2133],[-8,-10]],[[1465,2162],[-2,-9]],[[1463,2153],[0,8]],[[1463,2161],[0,3]],[[1308,2132],[-2,0]],[[1306,2132],[-4,0]],[[1302,2132],[0,8]],[[1470,2140],[-5,-5]],[[1465,2135],[0,2]],[[1465,2137],[0,2]],[[1465,2139],[0,13]],[[1465,2152],[4,7]],[[1286,2164],[0,-16]],[[1286,2148],[-2,-16]],[[1284,2132],[-5,0]],[[1279,2132],[0,16]],[[1292,2132],[-3,-1]],[[1289,2131],[-3,17]],[[1395,2147],[-3,-31]],[[1392,2116],[-6,13]],[[1460,2152],[0,-4]],[[1460,2148],[0,-5]],[[1460,2143],[-3,5]],[[1164,2163],[0,-30]],[[1164,2133],[-6,1]],[[1158,2134],[-1,18]],[[1170,2163],[0,-30]],[[1170,2133],[-4,0]],[[1166,2133],[-2,0]],[[1176,2163],[0,-31]],[[1176,2132],[-2,0]],[[1174,2132],[-4,1]],[[1215,2155],[0,-20]],[[1215,2135],[-3,1]],[[1212,2136],[-4,-1]],[[1208,2135],[0,28]],[[1208,2135],[-2,0]],[[1206,2135],[-4,-1]],[[1202,2134],[0,29]],[[1183,2163],[0,-30]],[[1183,2133],[-3,-1]],[[1180,2132],[-4,0]],[[1189,2163],[0,-30]],[[1189,2133],[-3,0]],[[1186,2133],[-3,0]],[[1196,2163],[0,-29]],[[1196,2134],[-4,-1]],[[1192,2133],[-3,0]],[[1202,2134],[-1,0]],[[1201,2134],[-5,0]],[[1421,2139],[-5,5]],[[1416,2144],[-1,10]],[[1463,2153],[0,8]],[[973,2100],[0,-52]],[[973,2048],[0,-16]],[[973,2032],[-13,-3]],[[960,2029],[0,1]],[[960,2030],[0,31]],[[960,2061],[0,94]],[[1376,2142],[-3,-18]],[[1373,2124],[-2,0]],[[1371,2124],[0,15]],[[1409,2114],[1,33]],[[1416,2144],[-7,-30]],[[960,2061],[-12,1]],[[948,2062],[0,8]],[[948,2070],[-1,72]],[[1330,2143],[1,-17]],[[1331,2126],[-2,0]],[[1329,2126],[-5,3]],[[1324,2129],[0,10]],[[1462,2154],[-2,-6]],[[1222,2139],[-3,-25]],[[1219,2114],[-4,21]],[[1464,2136],[0,2]],[[1464,2136],[0,0]],[[1465,2139],[-1,1]],[[1464,2140],[-2,8]],[[1462,2148],[1,5]],[[1463,2153],[2,-1]],[[1452,2146],[-1,-27]],[[1451,2119],[-2,-8]],[[1449,2111],[-4,23]],[[1443,2129],[-2,-11]],[[1441,2118],[-1,3]],[[1440,2121],[-5,21]],[[1158,2134],[1,-6]],[[1159,2128],[-5,0]],[[1154,2128],[-5,0]],[[1455,2142],[0,-7]],[[1455,2135],[-2,-21]],[[1453,2114],[-2,5]],[[1260,2116],[0,-11]],[[1260,2105],[-1,0]],[[1259,2105],[-8,0]],[[1251,2105],[-2,4]],[[1249,2109],[0,26]],[[1071,2144],[0,-24]],[[1071,2120],[-9,0]],[[1249,2109],[-5,0]],[[1244,2109],[-4,11]],[[1240,2120],[1,7]],[[1409,2114],[1,-10]],[[1410,2104],[-2,-19]],[[1408,2085],[-4,10]],[[1404,2095],[-2,12]],[[1402,2107],[2,41]],[[1402,2107],[-5,3]],[[1397,2110],[4,37]],[[1464,2140],[-2,8]],[[1279,2132],[0,-8]],[[1279,2124],[-6,0]],[[1273,2124],[0,1]],[[1460,2143],[-1,-8]],[[1459,2135],[-4,0]],[[1289,2131],[0,-12]],[[1289,2119],[-4,0]],[[1285,2119],[-1,13]],[[1366,2135],[-1,-16]],[[1365,2119],[-5,1]],[[1360,2120],[0,20]],[[1316,2143],[0,-31]],[[1316,2112],[-5,0]],[[1311,2112],[0,20]],[[1397,2110],[0,-8]],[[1397,2102],[-6,4]],[[1391,2106],[1,10]],[[1240,2120],[-4,-24]],[[1236,2096],[-4,9]],[[1232,2105],[1,33]],[[1342,2130],[-2,-18]],[[1340,2112],[-4,8]],[[1336,2120],[2,25]],[[1336,2120],[-3,1]],[[1333,2121],[-2,5]],[[1100,2144],[-2,-32]],[[1098,2112],[-1,0]],[[1097,2112],[-8,0]],[[1089,2112],[0,32]],[[1123,2144],[0,-32]],[[1123,2112],[-6,0]],[[1117,2112],[0,31]],[[1104,2143],[0,-31]],[[1104,2112],[-6,0]],[[1089,2112],[-8,0]],[[1081,2112],[0,32]],[[1081,2112],[-10,0]],[[1071,2112],[0,8]],[[1136,2144],[0,-32]],[[1136,2112],[-6,0]],[[1130,2112],[0,32]],[[1142,2128],[0,-16]],[[1142,2112],[-6,0]],[[1130,2112],[-7,0]],[[1421,2138],[-10,-32]],[[1411,2106],[-1,-2]],[[948,2070],[-3,0],[-7,63]],[[1117,2112],[-6,0]],[[1111,2112],[0,29]],[[1324,2129],[-2,-5]],[[1322,2124],[-6,-12]],[[1111,2112],[-6,0]],[[1105,2112],[-1,0]],[[1391,2106],[-3,-23]],[[1388,2083],[-8,8]],[[1380,2091],[0,7]],[[1380,2098],[2,43]],[[1440,2121],[-2,-19]],[[1438,2102],[-2,-10]],[[1436,2092],[-4,17]],[[1432,2109],[-4,16]],[[1380,2098],[-7,26]],[[1355,2138],[-1,-17]],[[1354,2121],[-6,1]],[[1348,2122],[-1,10]],[[1360,2120],[0,-21]],[[1360,2099],[-4,1]],[[1356,2100],[-2,21]],[[1426,2131],[0,-34]],[[1426,2097],[-2,-6]],[[1424,2091],[-2,9]],[[1422,2100],[-1,10]],[[1421,2110],[0,28]],[[1302,2132],[0,-17]],[[1302,2115],[-2,0]],[[1300,2115],[-4,-1]],[[1296,2114],[0,3]],[[1296,2117],[0,15]],[[1226,2139],[0,-33]],[[1226,2106],[0,-9]],[[1226,2097],[-8,1]],[[1218,2098],[0,4]],[[1218,2102],[1,12]],[[1371,2124],[0,-8]],[[1371,2116],[-2,0]],[[1369,2116],[0,17]],[[1232,2105],[-6,1]],[[1421,2110],[-10,-12]],[[1411,2098],[0,8]],[[1218,2102],[-6,1]],[[1212,2103],[0,4]],[[1212,2107],[0,29]],[[1449,2111],[3,-18]],[[1452,2093],[-4,-9]],[[1448,2084],[0,8]],[[1448,2092],[-7,26]],[[1459,2135],[-1,-10]],[[1458,2125],[1,-4]],[[1459,2121],[-4,-18]],[[1455,2103],[-2,11]],[[1212,2107],[-6,0]],[[1206,2107],[0,4]],[[1206,2111],[0,24]],[[1369,2116],[0,-20]],[[1369,2096],[-1,-2]],[[1368,2094],[-2,0]],[[1366,2094],[-1,25]],[[1206,2111],[-5,0]],[[1201,2111],[0,23]],[[1201,2111],[-2,0]],[[1199,2111],[-7,4]],[[1192,2115],[0,18]],[[1166,2133],[1,-29]],[[1167,2104],[-6,0]],[[1161,2104],[-2,24]],[[1192,2115],[0,-11]],[[1192,2104],[-6,0]],[[1186,2104],[0,29]],[[1174,2132],[1,-17]],[[1175,2115],[0,-24]],[[1175,2091],[-7,0]],[[1168,2091],[-1,13]],[[948,2062],[-5,0]],[[943,2062],[-6,0]],[[937,2062],[-6,-3],[-1,21]],[[1186,2104],[0,-12]],[[1186,2092],[-6,0]],[[1180,2092],[0,23]],[[1180,2115],[0,17]],[[1348,2122],[0,-21]],[[1348,2101],[-8,4]],[[1340,2105],[0,7]],[[1311,2112],[0,-4]],[[1311,2108],[-6,0]],[[1305,2108],[0,7]],[[1305,2115],[1,17]],[[1180,2115],[-5,0]],[[1305,2115],[-3,0]],[[1296,2117],[-5,-3]],[[1291,2114],[-2,5]],[[1285,2119],[0,-20]],[[1285,2099],[-6,0]],[[1279,2099],[0,14]],[[1279,2113],[0,11]],[[1161,2104],[-6,0]],[[1155,2104],[-1,0]],[[1154,2104],[0,24]],[[1432,2109],[-6,-12]],[[1329,2126],[0,-25]],[[1329,2101],[-7,4]],[[1322,2105],[0,19]],[[1051,2120],[0,-41],[-3,0]],[[1048,2079],[-6,0]],[[1149,2128],[0,-24]],[[1149,2104],[0,-25]],[[1149,2079],[-5,0]],[[1144,2079],[-2,0]],[[1142,2079],[0,33]],[[1154,2104],[-5,0]],[[1334,2093],[-1,-4]],[[1333,2089],[-4,1]],[[1329,2090],[0,11]],[[1333,2121],[1,-28]],[[1273,2124],[0,-31]],[[1273,2093],[0,-25]],[[1273,2068],[-5,0]],[[1268,2068],[0,48]],[[1021,2103],[-1,-30]],[[1020,2073],[0,-8]],[[1020,2065],[-3,-14]],[[1017,2051],[-7,21]],[[1010,2072],[-3,0]],[[1322,2105],[0,-9]],[[1322,2096],[-6,2]],[[1316,2098],[0,14]],[[1380,2091],[-2,-13]],[[1378,2078],[-7,-2]],[[1371,2076],[0,5]],[[1371,2081],[0,13]],[[1371,2094],[0,22]],[[1279,2113],[-4,-22]],[[1275,2091],[-2,2]],[[1460,2091],[-6,-4]],[[1454,2087],[0,5]],[[1454,2092],[1,11]],[[1459,2121],[2,-32]],[[1461,2089],[-1,2]],[[1356,2100],[-2,-7]],[[1354,2093],[-6,2]],[[1348,2095],[0,6]],[[1448,2092],[-4,-15]],[[1444,2077],[-1,8]],[[1443,2085],[-5,17]],[[800,2121],[0,-28]],[[800,2093],[-8,-33]],[[792,2060],[-12,0]],[[780,2060],[0,17]],[[819,2052],[-12,-7]],[[807,2045],[-1,-3]],[[806,2042],[-6,51]],[[1340,2105],[0,-14]],[[1340,2091],[-6,2]],[[1071,2112],[0,-33]],[[1071,2079],[0,-39]],[[1071,2040],[-11,-1]],[[1060,2039],[1,81]],[[1060,2039],[-5,0]],[[1055,2039],[-7,0]],[[1048,2039],[0,16]],[[1048,2055],[0,24]],[[1244,2109],[0,-18]],[[1244,2091],[-5,-2]],[[1239,2089],[-5,2]],[[1234,2091],[2,5]],[[1366,2094],[-5,1]],[[1361,2095],[-1,4]],[[1291,2114],[0,-15]],[[1291,2099],[0,-3]],[[1291,2096],[-6,0]],[[1285,2096],[0,3]],[[1454,2092],[-2,1]],[[1296,2114],[0,-14]],[[1296,2100],[-5,-1]],[[1371,2094],[-2,2]],[[1268,2068],[-8,0]],[[1260,2068],[0,37]],[[1199,2111],[0,-28]],[[1199,2083],[-7,-1]],[[1192,2082],[0,22]],[[1180,2092],[0,-10]],[[1180,2082],[-5,1]],[[1175,2083],[0,8]],[[1300,2115],[0,-29]],[[1300,2086],[0,-12]],[[1300,2074],[-4,0]],[[1296,2074],[0,26]],[[1305,2108],[0,-22]],[[1305,2086],[-5,0]],[[1279,2099],[0,-24]],[[1279,2075],[-4,0]],[[1275,2075],[0,16]],[[1316,2098],[0,-26]],[[1316,2072],[-5,-1]],[[1311,2071],[0,9]],[[1311,2080],[0,28]],[[1123,2112],[0,-33]],[[1123,2079],[-3,0]],[[1120,2079],[-3,0]],[[1117,2079],[0,33]],[[1117,2079],[-5,0]],[[1112,2079],[-1,0]],[[1111,2079],[0,33]],[[1130,2112],[0,-33]],[[1130,2079],[-2,0]],[[1128,2079],[-5,0]],[[1081,2112],[0,-33]],[[1081,2079],[-1,0]],[[1080,2079],[-9,0]],[[1105,2112],[0,-33]],[[1105,2079],[-8,0]],[[1097,2079],[0,33]],[[1136,2112],[0,-33]],[[1136,2079],[-6,0]],[[1142,2079],[-6,0]],[[1097,2079],[-8,0]],[[1089,2079],[0,33]],[[1089,2079],[-8,0]],[[1111,2079],[-6,0]],[[1206,2107],[0,-24]],[[1206,2083],[-7,0]],[[1422,2100],[-4,-14]],[[1418,2086],[-5,-12]],[[1413,2074],[-2,24]],[[1251,2105],[0,-21]],[[1251,2084],[-1,-13]],[[1250,2071],[-5,6]],[[1245,2077],[-1,14]],[[1404,2095],[-3,-42]],[[1401,2053],[-6,0]],[[1395,2053],[2,49]],[[1436,2092],[-4,-39]],[[1432,2053],[-1,0]],[[1431,2053],[-7,38]],[[1311,2080],[-5,0]],[[1306,2080],[-1,6]],[[1212,2103],[0,-29]],[[1212,2074],[-5,1]],[[1207,2075],[-1,8]],[[1413,2074],[1,-21]],[[1414,2053],[-1,0]],[[1413,2053],[-8,0]],[[1405,2053],[3,32]],[[1395,2053],[-2,0]],[[1393,2053],[-6,0]],[[1387,2053],[1,30]],[[1259,2105],[-3,-21]],[[1256,2084],[-5,0]],[[1234,2091],[-2,-13]],[[1232,2078],[-6,11]],[[1226,2089],[0,8]],[[1260,2068],[0,-8]],[[1260,2060],[-4,0]],[[1256,2060],[0,24]],[[1348,2095],[-1,-24]],[[1347,2071],[-3,2]],[[1344,2073],[-5,1]],[[1339,2074],[1,17]],[[1329,2090],[0,-10]],[[1329,2080],[-7,3]],[[1322,2083],[0,13]],[[1192,2082],[0,-6]],[[1192,2076],[-6,-1]],[[1186,2075],[0,17]],[[1029,2079],[-1,-8]],[[1028,2071],[-4,0]],[[1024,2071],[-4,2]],[[1155,2104],[0,-25]],[[1155,2079],[-3,0]],[[1152,2079],[-3,0]],[[1161,2104],[4,-25]],[[1165,2079],[-1,0]],[[1164,2079],[-6,0]],[[1158,2079],[-3,0]],[[1168,2091],[1,-21]],[[1169,2070],[-4,9]],[[1218,2098],[1,-24]],[[1219,2074],[-6,0]],[[1213,2074],[-1,0]],[[1443,2085],[-3,-21]],[[1440,2064],[-3,-11]],[[1437,2053],[-5,0]],[[1431,2053],[-5,0]],[[1426,2053],[-3,0]],[[1423,2053],[-3,0]],[[1420,2053],[-2,33]],[[1001,2088],[-5,-25],[-7,-12],[-16,-3]],[[1361,2075],[-6,-10]],[[1355,2065],[-1,28]],[[1361,2095],[0,-20]],[[1296,2074],[-1,-2]],[[1295,2072],[-4,0]],[[1291,2072],[0,24]],[[1285,2096],[0,-24]],[[1285,2072],[0,-5]],[[1285,2067],[-5,0]],[[1280,2067],[-1,8]],[[1226,2089],[0,-24]],[[1226,2065],[-6,-8]],[[1220,2057],[-1,17]],[[1322,2083],[0,-15]],[[1322,2068],[-6,4]],[[1371,2081],[-3,1]],[[1368,2082],[0,12]],[[1454,2087],[2,-49]],[[1456,2038],[-4,16]],[[1452,2054],[-5,24]],[[1447,2078],[0,1]],[[1447,2079],[1,5]],[[1291,2072],[-1,0]],[[1290,2072],[-5,0]],[[1368,2082],[-1,-17]],[[1367,2065],[-6,2]],[[1361,2067],[0,8]],[[1461,2089],[0,-27],[-5,-24]],[[1355,2065],[-1,-9]],[[1354,2056],[-5,2]],[[1349,2058],[-2,13]],[[1405,2053],[-4,0]],[[1245,2077],[-6,-7]],[[1239,2070],[0,19]],[[806,2042],[-8,-28]],[[798,2014],[-4,0]],[[794,2014],[0,8]],[[794,2022],[-2,38]],[[1275,2075],[0,-32]],[[1275,2043],[-2,0]],[[1273,2043],[0,25]],[[1387,2053],[-2,0]],[[1385,2053],[-4,0]],[[1381,2053],[-2,0]],[[1379,2053],[-1,25]],[[1339,2074],[0,-14]],[[1339,2060],[-6,2]],[[1333,2062],[0,27]],[[1447,2079],[-2,-12]],[[1445,2067],[-1,10]],[[1186,2075],[0,-16]],[[1186,2059],[-6,1]],[[1180,2060],[0,22]],[[1175,2083],[0,-21]],[[1175,2062],[-4,0]],[[1171,2062],[-2,8]],[[904,2070],[0,-33]],[[904,2037],[0,-81]],[[904,1956],[-14,0]],[[890,1956],[-12,45]],[[1239,2070],[0,-3]],[[1239,2067],[-8,1]],[[1231,2068],[1,10]],[[1333,2062],[0,-11]],[[1333,2051],[-6,2]],[[1327,2053],[0,5]],[[1327,2058],[2,22]],[[1231,2068],[0,-4]],[[1231,2064],[-5,1]],[[1001,2072],[-1,-52]],[[1000,2020],[-4,0]],[[996,2020],[-23,0]],[[973,2020],[0,12]],[[1306,2080],[-1,-21]],[[1305,2059],[-1,0]],[[1304,2059],[-4,0]],[[1300,2059],[0,15]],[[1420,2053],[-3,0]],[[1417,2053],[-3,0]],[[1445,2067],[-3,-6]],[[1442,2061],[-2,3]],[[1256,2060],[-1,-13]],[[1255,2047],[-3,0]],[[1252,2047],[-2,15]],[[1250,2062],[0,9]],[[1030,2079],[-1,-8]],[[1029,2071],[-1,0]],[[1207,2075],[0,-33]],[[1207,2042],[-6,1]],[[1201,2043],[-2,8]],[[1199,2051],[0,32]],[[1327,2058],[-5,7]],[[1322,2065],[0,3]],[[1199,2051],[-6,1]],[[1193,2052],[-1,24]],[[1180,2060],[0,-4]],[[1180,2056],[-5,0]],[[1175,2056],[0,6]],[[1371,2053],[-4,0]],[[1367,2053],[0,12]],[[1371,2076],[0,-23]],[[1379,2053],[-7,0]],[[1372,2053],[-1,0]],[[937,2062],[-1,-40],[-4,-7]],[[932,2015],[-3,23],[-25,-1]],[[1311,2071],[0,-17]],[[1311,2054],[-3,-1]],[[1308,2053],[-3,6]],[[1080,2079],[0,-40]],[[1080,2039],[-9,0]],[[1071,2039],[0,1]],[[1089,2079],[0,-40]],[[1089,2039],[-9,0]],[[780,2060],[0,-20]],[[780,2040],[-3,-47],[4,-21]],[[781,1972],[-10,-8]],[[771,1964],[-4,55],[-2,60]],[[1128,2079],[0,-32]],[[1128,2047],[0,-8]],[[1128,2039],[-8,0]],[[1120,2039],[0,40]],[[1120,2039],[-7,0]],[[1113,2039],[-1,0]],[[1112,2039],[0,40]],[[1136,2079],[0,-32]],[[1136,2047],[-8,0]],[[1144,2079],[0,-40]],[[1144,2039],[-2,0]],[[1142,2039],[-6,0]],[[1136,2039],[0,8]],[[1097,2079],[0,-40]],[[1097,2039],[-8,0]],[[852,1995],[-2,-2]],[[850,1993],[-12,0]],[[838,1993],[-6,52]],[[1105,2079],[0,-40]],[[1105,2039],[-8,0]],[[1112,2039],[-7,0]],[[1152,2079],[0,-40]],[[1152,2039],[-5,0]],[[1147,2039],[-3,0]],[[1048,2055],[-17,0]],[[1031,2055],[-2,5]],[[1029,2060],[0,11]],[[1164,2079],[0,-32]],[[1164,2047],[-3,0]],[[1161,2047],[-3,0]],[[1158,2047],[0,32]],[[1158,2047],[-3,-8]],[[1155,2039],[-3,0]],[[1171,2062],[-3,-18]],[[1168,2044],[-4,3]],[[1452,2054],[-2,-11]],[[1450,2043],[-4,25]],[[1446,2068],[1,10]],[[1250,2062],[-5,-27]],[[1245,2035],[-2,0]],[[1243,2035],[-3,0]],[[1240,2035],[-1,32]],[[1193,2052],[0,-9]],[[1193,2043],[-7,0]],[[1186,2043],[0,16]],[[1213,2074],[0,-27]],[[1213,2047],[-6,-5]],[[1280,2067],[0,-25]],[[1280,2042],[-2,1]],[[1278,2043],[-3,0]],[[1361,2067],[-1,-25]],[[1360,2042],[-4,-1]],[[1356,2041],[-2,15]],[[1220,2057],[1,-7]],[[1221,2050],[-6,-3]],[[1215,2047],[-2,0]],[[1300,2059],[0,-8]],[[1300,2051],[-5,0]],[[1295,2051],[0,21]],[[1344,2073],[1,-26]],[[1345,2047],[-5,-9]],[[1340,2038],[-1,22]],[[1024,2071],[0,-15]],[[1024,2056],[-4,9]],[[1349,2058],[1,-21]],[[1350,2037],[-2,1]],[[1348,2038],[-3,9]],[[1295,2051],[0,-5]],[[1295,2046],[-4,-1]],[[1291,2045],[-1,0]],[[1290,2045],[0,27]],[[1010,2072],[3,-51]],[[1013,2021],[-3,-1]],[[1010,2020],[-10,0]],[[1017,2051],[1,-12]],[[1018,2039],[-4,-18]],[[1014,2021],[-1,0]],[[1290,2045],[-5,-3]],[[1285,2042],[0,25]],[[1322,2065],[-1,-25]],[[1321,2040],[-4,1]],[[1317,2041],[-1,0]],[[1316,2041],[0,31]],[[1316,2041],[-5,-2]],[[1311,2039],[0,15]],[[1029,2060],[0,-17]],[[1029,2043],[0,-4]],[[1029,2039],[-4,-41]],[[1025,1998],[-1,41]],[[1024,2039],[0,17]],[[1031,2055],[-2,-12]],[[1450,2043],[-2,-9]],[[1448,2034],[-1,5]],[[1447,2039],[-5,20]],[[1442,2059],[4,9]],[[1273,2043],[0,-13]],[[1273,2030],[-6,1]],[[1267,2031],[0,19]],[[1267,2050],[1,18]],[[1267,2050],[-7,-3]],[[1260,2047],[0,13]],[[1240,2035],[-3,0]],[[1237,2035],[-2,0]],[[1235,2035],[-5,25]],[[1230,2060],[1,4]],[[1367,2053],[-2,-10]],[[1365,2043],[-1,-7]],[[1364,2036],[-4,6]],[[1285,2042],[0,-12]],[[1285,2030],[-4,0]],[[1281,2030],[-1,12]],[[1024,2039],[-6,0]],[[1327,2053],[0,-16]],[[1327,2037],[-4,2]],[[1323,2039],[-2,1]],[[1230,2060],[1,-25]],[[1231,2035],[-1,-12]],[[1230,2023],[-4,0]],[[1226,2023],[-4,19]],[[1222,2042],[-1,8]],[[1440,2043],[0,2]],[[1440,2043],[0,0]],[[1442,2061],[-1,-41]],[[1441,2020],[-4,-6]],[[1437,2014],[0,7]],[[1437,2021],[0,32]],[[1252,2047],[-1,-28]],[[1251,2019],[-6,16]],[[1175,2056],[0,-21]],[[1175,2035],[-7,1]],[[1168,2036],[0,8]],[[960,2030],[-15,0],[-2,22]],[[943,2052],[0,10]],[[943,2052],[-1,-63]],[[942,1989],[-10,1]],[[932,1990],[0,25]],[[1340,2038],[0,-8]],[[1340,2030],[-7,4]],[[1333,2034],[0,17]],[[794,2022],[-12,0]],[[782,2022],[-2,18]],[[1260,2047],[0,-19]],[[1260,2028],[-5,19]],[[1308,2053],[0,-18]],[[1308,2035],[-4,0]],[[1304,2035],[0,24]],[[1304,2035],[0,-7]],[[1304,2028],[-4,0]],[[1300,2028],[0,23]],[[1235,2035],[-4,0]],[[1186,2043],[0,-8]],[[1186,2035],[-6,0]],[[1180,2035],[0,21]],[[1447,2039],[-5,-17]],[[1442,2022],[-2,10]],[[1440,2032],[0,11]],[[1440,2045],[2,14]],[[821,2028],[-10,7],[-5,-12]],[[806,2023],[1,22]],[[1356,2041],[-4,-13]],[[1352,2028],[-2,9]],[[1180,2035],[0,-7]],[[1180,2028],[-5,1]],[[1175,2029],[0,6]],[[1048,2039],[-14,0]],[[1034,2039],[-5,0]],[[838,1993],[-2,-61],[-4,0]],[[832,1932],[-2,11]],[[830,1943],[0,51],[-3,0]],[[827,1994],[-2,15]],[[825,2009],[6,35]],[[1456,2038],[-3,-25]],[[1453,2013],[-3,3]],[[1450,2016],[-2,18]],[[1311,2039],[0,-4]],[[1311,2035],[-3,0]],[[1413,2053],[-2,-37]],[[1411,2016],[-1,0]],[[1410,2016],[-2,16]],[[1408,2032],[-2,12]],[[1406,2044],[-5,1]],[[1401,2045],[0,8]],[[1401,2045],[-1,-11]],[[1400,2034],[-3,2]],[[1397,2036],[-6,-5]],[[1391,2031],[2,22]],[[1391,2031],[-3,-14]],[[1388,2017],[-3,-12]],[[1385,2005],[0,48]],[[1437,2021],[-1,0]],[[1436,2021],[-3,16]],[[1433,2037],[-2,16]],[[1381,2053],[-1,-26]],[[1380,2027],[-1,1]],[[1379,2028],[-6,17]],[[1373,2045],[-1,8]],[[1385,2005],[0,-1]],[[1385,2004],[-4,4]],[[1381,2008],[-1,6]],[[1380,2014],[0,13]],[[1433,2037],[-4,-14]],[[1429,2023],[-3,30]],[[1373,2045],[-2,-15]],[[1371,2030],[0,-4]],[[1371,2026],[-1,2]],[[1370,2028],[-5,15]],[[1429,2023],[-2,-15]],[[1427,2008],[-2,0]],[[1425,2008],[-1,-2]],[[1424,2006],[-2,13]],[[1422,2019],[1,34]],[[1422,2019],[-4,0]],[[1418,2019],[-1,34]],[[1418,2019],[-4,-12]],[[1414,2007],[-3,9]],[[1333,2034],[-2,-13]],[[1331,2021],[-3,0]],[[1328,2021],[-1,16]],[[960,2029],[-2,-56],[2,-34]],[[960,1939],[-18,1]],[[942,1940],[0,49]],[[1201,2043],[0,-27]],[[1201,2016],[-2,-9]],[[1199,2007],[-4,15]],[[1195,2022],[-2,21]],[[1300,2028],[-1,-9]],[[1299,2019],[-4,-1]],[[1295,2018],[0,28]],[[1406,2044],[-3,-22]],[[1403,2022],[-2,7]],[[1401,2029],[-1,5]],[[1222,2042],[-3,-26]],[[1219,2016],[-4,2]],[[1215,2018],[0,29]],[[1267,2031],[-1,-10]],[[1266,2021],[-6,0]],[[1260,2021],[0,7]],[[1215,2018],[-8,0]],[[1207,2018],[0,24]],[[1348,2038],[-2,-16]],[[1346,2022],[-6,-2]],[[1340,2020],[0,10]],[[1136,2039],[0,-24]],[[1136,2015],[-8,0]],[[1128,2015],[0,24]],[[1161,2047],[0,-22]],[[1161,2025],[0,-19]],[[1161,2006],[-6,0]],[[1155,2006],[0,33]],[[1168,2036],[2,-11]],[[1170,2025],[-3,0]],[[1167,2025],[-6,0]],[[1260,2021],[0,-15]],[[1260,2006],[-5,0]],[[1255,2006],[-4,0]],[[1251,2006],[0,13]],[[1397,2036],[-5,-28]],[[1392,2008],[-4,9]],[[1364,2036],[-1,-7]],[[1363,2029],[-4,-11]],[[1359,2018],[-5,-12]],[[1354,2006],[-2,22]],[[1379,2028],[-4,-5]],[[1375,2023],[-4,7]],[[1295,2018],[-2,0]],[[1293,2018],[-2,0]],[[1291,2018],[0,27]],[[806,2023],[-3,-34]],[[803,1989],[-2,-3]],[[801,1986],[-3,28]],[[1291,2018],[-2,0]],[[1289,2018],[-3,0]],[[1286,2018],[-1,12]],[[1408,2032],[-2,-21]],[[1406,2011],[-3,11]],[[1195,2022],[-5,-9]],[[1190,2013],[-4,-8]],[[1186,2005],[0,30]],[[1207,2018],[0,-9]],[[1207,2009],[-2,0]],[[1205,2009],[-4,7]],[[1278,2043],[-1,-33]],[[1277,2010],[-5,0]],[[1272,2010],[1,20]],[[1281,2030],[-1,-28]],[[1280,2002],[-3,0]],[[1277,2002],[0,8]],[[1370,2028],[-4,-15]],[[1366,2013],[-2,6]],[[1364,2019],[-1,10]],[[1229,2007],[-8,-8]],[[1221,1999],[-2,0]],[[1219,1999],[0,17]],[[1226,2023],[3,-16]],[[1317,2041],[0,-28]],[[1317,2013],[-6,1]],[[1311,2014],[0,21]],[[1323,2039],[-1,-29]],[[1322,2010],[-3,1]],[[1319,2011],[-2,2]],[[782,2022],[6,-43]],[[788,1979],[-1,-6]],[[787,1973],[-3,-18]],[[784,1955],[-3,17]],[[1071,2039],[0,-41]],[[1071,1998],[0,-8]],[[1071,1990],[-16,0]],[[1055,1990],[0,49]],[[1450,2016],[-1,-13]],[[1449,2003],[-7,19]],[[1113,2039],[0,-41]],[[1113,1998],[-8,0]],[[1105,1998],[0,41]],[[1324,2009],[-1,1]],[[1323,2010],[-1,0]],[[1328,2021],[-4,-12]],[[1080,2039],[0,-40]],[[1080,1999],[-1,0]],[[1079,1999],[-8,-1]],[[1089,2039],[0,-41]],[[1089,1998],[-1,0]],[[1088,1998],[-8,1]],[[1120,2039],[0,-32]],[[1120,2007],[0,-9]],[[1120,1998],[-7,0]],[[1097,2039],[0,-41]],[[1097,1998],[-8,0]],[[1142,2039],[0,-32]],[[1142,2007],[0,-9]],[[1142,1998],[-6,0]],[[1136,1998],[0,17]],[[1128,2015],[0,-9]],[[1128,2006],[-8,1]],[[1105,1998],[-8,0]],[[1147,2039],[-2,-15],[5,-22]],[[1150,2002],[-2,-12]],[[1148,1990],[-6,17]],[[1034,2039],[0,-41]],[[1034,1998],[-5,0]],[[1029,1998],[-4,0]],[[1048,2039],[0,-65],[-5,0]],[[1043,1974],[0,24],[-9,0]],[[1155,2006],[0,-8]],[[1155,1998],[-5,4]],[[1055,1990],[0,-40]],[[1055,1950],[-4,-9]],[[1051,1941],[-8,1]],[[1043,1942],[0,32]],[[1025,1998],[0,-40]],[[1025,1958],[-9,-1]],[[1016,1957],[-3,34]],[[1013,1991],[1,30]],[[1354,2006],[0,-3]],[[1354,2003],[-7,2]],[[1347,2005],[-1,17]],[[932,1990],[-7,-44]],[[925,1946],[-21,0]],[[904,1946],[0,10]],[[1401,2029],[-2,-35]],[[1399,1994],[-7,14]],[[1175,2029],[0,-28]],[[1175,2001],[-3,4]],[[1172,2005],[-2,20]],[[1311,2014],[-3,1]],[[1308,2015],[-4,-4]],[[1304,2011],[0,17]],[[1186,2005],[-4,-6]],[[1182,1999],[-2,6]],[[1180,2005],[0,23]],[[1251,2006],[-2,-17]],[[1249,1989],[-5,-3]],[[1244,1986],[-1,0]],[[1243,1986],[0,49]],[[1243,1986],[-6,0]],[[1237,1986],[0,24]],[[1237,2010],[0,25]],[[820,2015],[-10,-2],[-7,-24]],[[1237,2010],[-7,-13]],[[1230,1997],[0,26]],[[1340,2020],[0,-15]],[[1340,2005],[-1,-3]],[[1339,2002],[-8,2]],[[1331,2004],[0,17]],[[1410,2016],[-2,-18]],[[1408,1998],[-2,13]],[[973,2020],[0,-81]],[[973,1939],[-13,0]],[[1272,2010],[0,-9]],[[1272,2001],[-5,1]],[[1267,2002],[-1,19]],[[1364,2019],[-3,-8]],[[1361,2011],[-2,7]],[[1286,2018],[-1,-17]],[[1285,2001],[-5,1]],[[1375,2023],[1,-14]],[[1376,2009],[-1,-12]],[[1375,1997],[-1,-1]],[[1374,1996],[-4,6]],[[1370,2002],[1,24]],[[1406,2011],[-2,-22]],[[1404,1989],[-2,-2]],[[1402,1987],[-4,4]],[[1398,1991],[1,3]],[[1403,2004],[0,0]],[[1180,2005],[-5,-8]],[[1175,1997],[0,4]],[[1304,2011],[-2,-7]],[[1302,2004],[-3,-6]],[[1299,1998],[0,21]],[[1380,2014],[-4,-5]],[[1370,2002],[-2,-7]],[[1368,1995],[-1,1]],[[1367,1996],[-1,17]],[[1167,2025],[-1,-35]],[[1166,1990],[-4,1]],[[1162,1991],[-1,15]],[[1172,2005],[-2,-20]],[[1170,1985],[-2,-1]],[[1168,1984],[-2,6]],[[794,2014],[1,-35]],[[795,1979],[-7,0]],[[1199,2007],[-1,-15]],[[1198,1992],[-2,-13]],[[1196,1979],[-6,2]],[[1190,1981],[0,32]],[[1361,2011],[-1,-8]],[[1360,2003],[-4,-15]],[[1356,1988],[-2,7]],[[1354,1995],[0,8]],[[1230,1997],[2,-14]],[[1232,1983],[-3,-3]],[[1229,1980],[0,27]],[[1347,2005],[-1,-16]],[[1346,1989],[-2,0]],[[1344,1989],[-4,16]],[[1367,1996],[-3,-9]],[[1364,1987],[-2,2]],[[1362,1989],[-2,14]],[[1437,2014],[0,-5]],[[1437,2009],[-3,0]],[[1434,2009],[2,12]],[[1013,1991],[-5,0]],[[1008,1991],[2,29]],[[1267,2002],[-5,0]],[[1262,2002],[-2,4]],[[1331,2004],[0,-13]],[[1331,1991],[-4,-3]],[[1327,1988],[-3,21]],[[1427,2008],[-1,-3]],[[1426,2005],[-1,3]],[[1424,2006],[-2,-10]],[[1422,1996],[0,2]],[[1422,1998],[-4,21]],[[996,2020],[0,-10]],[[996,2010],[-1,-4]],[[995,2006],[-7,-14],[-5,-37]],[[983,1955],[0,-16],[-10,0]],[[1008,1991],[-1,-5]],[[1007,1986],[-11,24]],[[1443,1981],[-5,-11]],[[1438,1970],[-1,29]],[[1437,1999],[0,10]],[[1441,2020],[2,-39]],[[1289,2018],[1,-27]],[[1290,1991],[0,-6]],[[1290,1985],[-5,0]],[[1285,1985],[0,16]],[[1299,1998],[-2,-6]],[[1297,1992],[-4,-1]],[[1293,1991],[0,27]],[[1219,1999],[-3,-7]],[[1216,1992],[-7,0]],[[1209,1992],[-2,17]],[[1422,1998],[-2,-15]],[[1420,1983],[-2,-3]],[[1418,1980],[-3,11]],[[1415,1991],[-1,16]],[[1293,1991],[-3,0]],[[1203,1983],[-5,9]],[[1205,2009],[-2,-26]],[[1392,2008],[-2,-39]],[[1390,1969],[-3,13]],[[1387,1982],[0,1]],[[1387,1983],[-2,21]],[[1453,2013],[-4,-10]],[[1415,1991],[-2,-19]],[[1413,1972],[-2,9]],[[1411,1981],[-4,6]],[[1407,1987],[1,11]],[[821,2001],[0,-4]],[[821,1997],[0,-5]],[[821,1992],[-11,-5],[-5,-28]],[[805,1959],[-5,2]],[[800,1961],[1,25]],[[1319,2011],[-1,-23]],[[1318,1988],[-3,7]],[[1315,1995],[-1,-2]],[[1314,1993],[-3,3]],[[1311,1996],[0,18]],[[1308,2015],[-1,-34]],[[1307,1981],[0,-2]],[[1307,1979],[-1,-1]],[[1306,1978],[-4,0]],[[1302,1978],[0,26]],[[1311,1996],[-1,-7]],[[1310,1989],[-3,-8]],[[1136,1998],[0,-16]],[[1136,1982],[-8,0]],[[1128,1982],[0,24]],[[800,1961],[-2,0]],[[798,1961],[-3,18]],[[1381,2008],[0,-11]],[[1381,1997],[-4,-16]],[[1377,1981],[-2,16]],[[1190,1981],[0,-2]],[[1190,1979],[-9,-1]],[[1181,1978],[1,21]],[[1387,1983],[-6,14]],[[1322,1965],[-3,5]],[[1319,1970],[0,4]],[[1319,1974],[-1,14]],[[1323,2010],[-1,-45]],[[1407,1987],[-1,-3]],[[1406,1984],[-2,5]],[[1237,1986],[-2,-7]],[[1235,1979],[-3,4]],[[1437,1999],[-2,-21]],[[1435,1978],[-3,1]],[[1432,1979],[2,30]],[[1277,2002],[0,-25]],[[1277,1977],[-4,0]],[[1273,1977],[-1,24]],[[1007,1986],[5,-54]],[[1012,1932],[-10,1],[0,-26]],[[1002,1907],[-8,0]],[[994,1907],[-1,14]],[[993,1921],[2,34]],[[995,1955],[0,51]],[[1327,1988],[0,-36]],[[1327,1952],[-3,12]],[[1324,1964],[-2,1]],[[1209,1992],[-1,-39]],[[1208,1953],[-3,9]],[[1205,1962],[-1,17]],[[1204,1979],[-1,4]],[[827,1994],[-6,3]],[[1398,1991],[-4,-27]],[[1394,1964],[-3,0]],[[1391,1964],[-1,5]],[[1427,1959],[-3,4]],[[1424,1963],[-2,33]],[[1426,2005],[1,-46]],[[1181,1978],[0,-8]],[[1181,1970],[-6,2]],[[1175,1972],[0,18]],[[1175,1990],[0,7]],[[1229,1980],[-4,-6]],[[1225,1974],[-4,11]],[[1221,1985],[0,14]],[[1148,1990],[0,-16]],[[1148,1974],[-5,0]],[[1143,1974],[-1,24]],[[995,1955],[-12,0]],[[1128,1982],[0,-8]],[[1128,1974],[-8,0]],[[1120,1974],[0,24]],[[1162,1991],[0,-17]],[[1162,1974],[-6,0]],[[1156,1974],[-1,24]],[[1255,2006],[2,-28]],[[1257,1978],[0,-8]],[[1257,1970],[-6,-9]],[[1251,1961],[-2,1]],[[1249,1962],[0,27]],[[1262,2002],[0,-24]],[[1262,1978],[-5,0]],[[1156,1974],[0,-12]],[[1156,1962],[-6,0]],[[1150,1962],[-2,12]],[[1344,1989],[-2,-17]],[[1342,1972],[-1,0]],[[1341,1972],[-2,9]],[[1339,1981],[0,21]],[[1352,1975],[-3,8]],[[1349,1983],[-3,6]],[[1354,1995],[-2,-20]],[[1175,1990],[-5,-5]],[[1339,1981],[-6,7]],[[1333,1988],[-2,3]],[[1302,1978],[-3,-9]],[[1299,1969],[-2,-1]],[[1297,1968],[0,24]],[[1362,1989],[-2,-11]],[[1360,1978],[-3,0]],[[1357,1978],[-1,10]],[[1273,1977],[0,-5]],[[1273,1972],[-5,0]],[[1268,1972],[-1,0]],[[1267,1972],[0,30]],[[1267,1972],[-4,0]],[[1263,1972],[-1,6]],[[1285,1985],[0,-8]],[[1285,1977],[-3,0]],[[1282,1977],[-3,0]],[[1279,1977],[-2,0]],[[1374,1996],[-1,-35]],[[1373,1961],[-1,1]],[[1372,1962],[-2,15]],[[1370,1977],[-2,18]],[[890,1956],[0,-58],[-12,0],[0,-113]],[[878,1785],[0,-78]],[[878,1707],[-18,90]],[[860,1797],[0,96],[-7,44]],[[853,1937],[-7,41],[4,15]],[[1221,1985],[-2,-26]],[[1219,1959],[-3,-1]],[[1216,1958],[0,34]],[[1314,1993],[0,-25]],[[1314,1968],[-1,-3]],[[1313,1965],[-2,8]],[[1311,1973],[-1,4]],[[1310,1977],[0,12]],[[1438,1970],[0,-18]],[[1438,1952],[-3,4]],[[1435,1956],[0,11]],[[1435,1967],[0,11]],[[1088,1998],[0,-40]],[[1088,1958],[-4,0]],[[1084,1958],[-5,0]],[[1079,1958],[0,41]],[[1079,1958],[-1,0]],[[1078,1958],[-7,0]],[[1071,1958],[0,32]],[[1113,1998],[0,-40]],[[1113,1958],[-8,0]],[[1105,1958],[0,40]],[[1097,1998],[0,-40]],[[1097,1958],[-1,0]],[[1096,1958],[-6,0]],[[1090,1958],[-2,0]],[[1143,1974],[-1,-24]],[[1142,1950],[-6,0]],[[1136,1950],[0,32]],[[1120,1974],[0,-16]],[[1120,1958],[-7,0]],[[1105,1958],[-8,0]],[[1424,1963],[0,-8]],[[1424,1955],[0,-12]],[[1424,1943],[-5,14]],[[1419,1957],[1,11]],[[1420,1968],[0,15]],[[1029,1998],[1,-45]],[[1030,1953],[-5,5]],[[1043,1942],[-13,-1]],[[1030,1941],[0,12]],[[1319,1974],[-2,-6]],[[1317,1968],[-2,27]],[[1387,1982],[-4,-27]],[[1383,1955],[-8,-26]],[[1375,1929],[-1,29]],[[1374,1958],[3,23]],[[830,1943],[-4,16]],[[826,1959],[-4,21]],[[822,1980],[-1,12]],[[1374,1958],[-1,3]],[[1370,1977],[-6,-17]],[[1364,1960],[0,27]],[[1402,1987],[-1,-17]],[[1401,1970],[-4,-21]],[[1397,1949],[-3,15]],[[1317,1968],[-2,-1]],[[1315,1967],[-1,1]],[[1357,1978],[0,-28]],[[1357,1950],[-2,1]],[[1355,1951],[-2,5]],[[1353,1956],[-1,19]],[[853,1937],[-10,-54]],[[843,1883],[-11,49]],[[1297,1968],[-1,-7]],[[1296,1961],[-5,3]],[[1291,1964],[-1,21]],[[1168,1984],[0,-22]],[[1168,1962],[-6,0]],[[1162,1962],[0,12]],[[822,1980],[-2,-22]],[[820,1958],[-4,-14],[-10,-4]],[[806,1940],[-1,19]],[[1216,1958],[-4,-10]],[[1212,1948],[-4,5]],[[1204,1979],[-5,-22]],[[1199,1957],[-3,0]],[[1196,1957],[0,22]],[[1418,1980],[0,-4]],[[1418,1976],[0,-2]],[[1418,1974],[0,-3]],[[1418,1971],[1,-5]],[[1419,1966],[-2,-11]],[[1417,1955],[-4,17]],[[1416,1974],[0,0]],[[1416,1972],[0,0]],[[1016,1957],[0,-23]],[[1016,1934],[-4,-2]],[[1175,1972],[0,-10]],[[1175,1962],[-7,0]],[[1333,1988],[0,-38]],[[1333,1950],[-6,2]],[[942,1940],[-7,0]],[[935,1940],[-10,0]],[[925,1940],[0,6]],[[1071,1958],[0,-8]],[[1071,1950],[-16,0]],[[1364,1960],[0,-5]],[[1364,1955],[-1,-5]],[[1363,1950],[-3,28]],[[1406,1984],[-2,-11]],[[1404,1973],[-2,-9]],[[1402,1964],[-1,6]],[[1349,1983],[-2,-35]],[[1347,1948],[-1,-1]],[[1346,1947],[-4,25]],[[1310,1977],[-3,2]],[[1353,1956],[-3,-19]],[[1350,1937],[-3,11]],[[1249,1962],[-5,0]],[[1244,1962],[0,24]],[[1341,1972],[-2,-26]],[[1339,1946],[-3,14]],[[1336,1960],[-3,-10]],[[1411,1981],[2,-36]],[[1413,1945],[-2,-14]],[[1411,1931],[-4,27]],[[1407,1958],[-3,15]],[[1244,1962],[-1,-8]],[[1243,1954],[-7,0]],[[1236,1954],[0,11]],[[1236,1965],[1,3]],[[1237,1968],[-2,11]],[[1225,1974],[0,-30]],[[1225,1944],[-5,14]],[[1220,1958],[-1,1]],[[1420,1968],[-1,9]],[[1419,1977],[-1,3]],[[1291,1964],[-1,-7]],[[1290,1957],[-5,0]],[[1285,1957],[0,20]],[[1237,1968],[-8,-16]],[[1229,1952],[-4,-8]],[[1443,1981],[4,-14],[0,-32]],[[1447,1935],[-4,0]],[[1443,1935],[-5,10]],[[1438,1945],[0,7]],[[1136,1950],[-8,0]],[[1128,1950],[0,24]],[[1391,1964],[-2,-27]],[[1389,1937],[-1,-6]],[[1388,1931],[-5,17]],[[1383,1948],[0,7]],[[1196,1957],[0,-15]],[[1196,1942],[-6,-1]],[[1190,1941],[0,4]],[[1190,1945],[0,34]],[[1435,1967],[0,-11]],[[1435,1956],[-6,7],[3,16]],[[1417,1955],[-1,-15]],[[1416,1940],[-3,5]],[[1414,1965],[-1,1]],[[1414,1965],[0,0]],[[1363,1950],[-1,-8]],[[1362,1942],[-5,8]],[[1190,1945],[-8,1]],[[1182,1946],[-1,24]],[[1419,1971],[-1,0]],[[1419,1977],[0,-6]],[[826,1959],[0,-36]],[[826,1923],[-6,11]],[[820,1934],[0,6]],[[820,1940],[0,18]],[[1311,1973],[-3,-9]],[[1308,1964],[-2,-7]],[[1306,1957],[0,21]],[[1205,1962],[-1,-29]],[[1204,1933],[-2,0]],[[1202,1933],[-3,24]],[[798,1961],[0,-39]],[[798,1922],[-1,20],[-6,-1]],[[791,1941],[-4,32]],[[1306,1957],[-2,4]],[[1304,1961],[-2,-13]],[[1302,1948],[-1,1]],[[1301,1949],[-2,20]],[[1263,1972],[0,-23]],[[1263,1949],[-6,0]],[[1257,1949],[0,21]],[[1279,1977],[-2,-33]],[[1277,1944],[-3,-1]],[[1274,1943],[-4,-12]],[[1270,1931],[1,15]],[[1271,1946],[2,26]],[[1285,1957],[0,-15]],[[1285,1942],[-3,-2]],[[1282,1940],[0,37]],[[1282,1940],[-2,1]],[[1280,1941],[-3,3]],[[1372,1962],[-3,-20]],[[1369,1942],[-3,-2]],[[1366,1940],[-2,15]],[[1236,1965],[-1,-23]],[[1235,1942],[-1,-13]],[[1234,1929],[-5,7]],[[1229,1936],[0,16]],[[1320,1947],[-4,-4]],[[1316,1943],[-1,24]],[[1319,1970],[1,-23]],[[1150,1962],[0,-21]],[[1150,1941],[-6,1]],[[1144,1942],[-2,8]],[[1128,1950],[0,-8]],[[1128,1942],[-7,-1]],[[1121,1941],[-1,17]],[[1162,1962],[0,-29]],[[1162,1933],[-6,0]],[[1156,1933],[0,29]],[[791,1941],[-2,-34]],[[789,1907],[-2,0]],[[787,1907],[0,1]],[[787,1908],[-3,47]],[[1407,1958],[-4,-16]],[[1403,1942],[-2,9]],[[1401,1951],[1,13]],[[1313,1965],[-2,-5]],[[1311,1960],[-2,-5]],[[1309,1955],[-1,9]],[[787,1908],[-1,-5]],[[786,1903],[-1,5]],[[785,1908],[-6,12]],[[779,1920],[-8,44]],[[1271,1946],[-3,0]],[[1268,1946],[0,26]],[[1397,1949],[2,-17]],[[1399,1932],[-2,-13]],[[1397,1919],[-1,-7]],[[1396,1912],[-7,25]],[[1394,1936],[0,0]],[[1268,1946],[-1,0]],[[1267,1946],[-2,0]],[[1265,1946],[-2,3]],[[1346,1947],[-3,-16]],[[1343,1931],[-1,1]],[[1342,1932],[-1,8]],[[1341,1940],[-2,6]],[[1182,1946],[0,-11]],[[1182,1935],[-8,2]],[[1174,1937],[1,25]],[[1419,1971],[0,-5]],[[1401,1951],[-1,-14]],[[1400,1937],[-1,-5]],[[1301,1949],[-4,-4]],[[1297,1945],[-1,16]],[[1324,1964],[-1,-16]],[[1323,1948],[-3,-4]],[[1320,1944],[0,3]],[[1257,1949],[0,-12]],[[1257,1937],[-6,0]],[[1251,1937],[0,3]],[[1251,1940],[0,21]],[[1316,1943],[-1,-4]],[[1315,1939],[-1,-2]],[[1314,1937],[-3,23]],[[1297,1945],[-2,-13]],[[1295,1932],[-1,0]],[[1294,1932],[-3,0]],[[1291,1932],[-1,0]],[[1290,1932],[0,25]],[[1236,1954],[-1,-12]],[[1427,1959],[1,-36],[-4,32]],[[1327,1952],[0,-10]],[[1327,1942],[-4,-3]],[[1323,1939],[0,9]],[[1309,1955],[-2,-7]],[[1307,1948],[-1,-1]],[[1306,1947],[-2,14]],[[1341,1940],[-2,-12]],[[1339,1928],[-5,12]],[[1334,1940],[2,20]],[[1251,1940],[-8,-8]],[[1243,1932],[0,22]],[[1383,1948],[-2,-30]],[[1381,1918],[-2,-19]],[[1379,1899],[-6,15]],[[1373,1914],[2,15]],[[1212,1948],[-4,-24]],[[1208,1924],[-4,9]],[[1156,1933],[0,-24]],[[1156,1909],[-6,0]],[[1150,1909],[0,32]],[[1168,1962],[0,-33]],[[1168,1929],[-6,0]],[[1162,1929],[0,4]],[[1174,1937],[0,-8]],[[1174,1929],[-6,0]],[[1373,1914],[-1,4]],[[1372,1918],[-3,24]],[[806,1940],[0,-19]],[[806,1921],[-7,-18]],[[799,1903],[-1,7]],[[798,1910],[0,12]],[[1306,1947],[-2,-8]],[[1304,1939],[-2,3]],[[1302,1942],[0,6]],[[1314,1937],[-2,-11]],[[1312,1926],[-2,0]],[[1310,1926],[-3,22]],[[1334,1940],[-2,-17]],[[1332,1923],[-2,5]],[[1330,1928],[-3,14]],[[1220,1958],[0,-46]],[[1220,1912],[-3,-5]],[[1217,1907],[-1,0]],[[1216,1907],[0,13]],[[1216,1920],[0,38]],[[843,1883],[8,-40]],[[851,1843],[-13,0]],[[838,1843],[-4,11]],[[834,1854],[-3,15]],[[831,1869],[-5,54]],[[1229,1936],[-1,-24]],[[1228,1912],[-5,0]],[[1223,1912],[-3,0]],[[1216,1920],[-8,0]],[[1208,1920],[0,4]],[[820,1940],[-13,-26]],[[807,1914],[-1,7]],[[1438,1945],[-2,-13]],[[1436,1932],[-2,-16],[-5,21],[6,19]],[[1090,1958],[0,-41]],[[1090,1917],[-6,1]],[[1084,1918],[0,40]],[[1096,1958],[0,-41]],[[1096,1917],[-6,0]],[[1078,1958],[0,-41]],[[1078,1917],[-7,0]],[[1071,1917],[0,1]],[[1071,1918],[0,32]],[[1084,1918],[-6,-1]],[[1411,1931],[0,-4]],[[1411,1927],[-1,-1]],[[1410,1926],[-5,-4]],[[1405,1922],[-2,20]],[[1105,1958],[0,-33]],[[1105,1925],[0,-8]],[[1105,1917],[-9,0]],[[1202,1933],[-1,-19]],[[1201,1914],[-5,3]],[[1196,1917],[0,25]],[[1121,1941],[0,-24]],[[1121,1917],[-6,0]],[[1115,1917],[-2,8]],[[1113,1925],[0,33]],[[1030,1941],[-1,-24]],[[1029,1917],[-10,1]],[[1019,1918],[-3,16]],[[1113,1925],[-8,0]],[[1424,1943],[0,-4]],[[1424,1939],[-2,-10]],[[1422,1929],[-6,9],[3,19]],[[1290,1932],[-5,-2]],[[1285,1930],[0,12]],[[1351,1923],[-1,5]],[[1350,1928],[0,9]],[[1355,1951],[-4,-28]],[[904,1946],[0,-39]],[[904,1907],[0,-51]],[[904,1856],[0,-56]],[[904,1800],[0,-15]],[[904,1785],[-26,0]],[[993,1921],[-7,3],[2,-17]],[[988,1907],[-15,0]],[[973,1907],[0,32]],[[1366,1940],[-5,-23]],[[1361,1917],[1,25]],[[1243,1932],[0,-19]],[[1243,1913],[-3,0]],[[1240,1913],[-5,29]],[[1405,1922],[-3,-4]],[[1402,1918],[-2,19]],[[1361,1917],[-2,-27]],[[1359,1890],[-1,2]],[[1358,1892],[-5,20]],[[1353,1912],[-2,11]],[[1071,1918],[-10,0]],[[1061,1918],[-9,0]],[[1052,1918],[-1,0]],[[1051,1918],[0,23]],[[1136,1950],[0,-41]],[[1136,1909],[-5,0]],[[1131,1909],[-3,0]],[[1128,1909],[0,33]],[[1144,1942],[-1,-41]],[[1143,1901],[-4,0]],[[1139,1901],[-3,8]],[[1323,1939],[0,-5]],[[1323,1934],[-2,2]],[[1321,1936],[-1,8]],[[1265,1946],[0,-29]],[[1265,1917],[-4,0]],[[1261,1917],[-4,0]],[[1257,1917],[0,20]],[[1302,1942],[-2,-14]],[[1300,1928],[-3,-8]],[[1297,1920],[-2,12]],[[1350,1928],[-3,-14]],[[1347,1914],[-4,17]],[[1310,1926],[-2,-2]],[[1308,1924],[-3,2]],[[1305,1926],[-1,13]],[[1388,1931],[-3,-21]],[[1385,1910],[-4,8]],[[1416,1940],[-1,-16]],[[1415,1924],[0,-8]],[[1415,1916],[-1,3]],[[1414,1919],[-1,3]],[[1413,1922],[-2,5]],[[1321,1936],[-1,-8]],[[1320,1928],[-4,-9]],[[1316,1919],[-1,20]],[[925,1940],[1,-33]],[[926,1907],[-1,0]],[[925,1907],[-21,0]],[[1267,1946],[0,-29]],[[1267,1917],[-2,0]],[[1270,1931],[-3,-14]],[[1190,1941],[0,-29]],[[1190,1912],[-8,1]],[[1182,1913],[0,22]],[[1443,1935],[-4,-16]],[[1439,1919],[-2,-1]],[[1437,1918],[-1,14]],[[1372,1918],[-6,-15]],[[1366,1903],[-5,14]],[[1280,1941],[0,-26]],[[1280,1915],[-4,1]],[[1276,1916],[-2,27]],[[789,1907],[-2,0]],[[798,1910],[-9,-3]],[[1196,1917],[0,-18]],[[1196,1899],[-6,1]],[[1190,1900],[0,12]],[[1276,1916],[-2,-8]],[[1274,1908],[-3,1]],[[1271,1909],[-4,5]],[[1267,1914],[0,3]],[[1285,1930],[0,-13]],[[1285,1917],[-2,-5]],[[1283,1912],[-3,0]],[[1280,1912],[0,3]],[[1330,1928],[-3,-18]],[[1327,1910],[-2,11]],[[1325,1921],[-2,13]],[[1305,1926],[-3,-7]],[[1302,1919],[-2,9]],[[1150,1909],[-2,-8]],[[1148,1901],[-5,0]],[[1043,1942],[0,-35]],[[1043,1907],[0,-39]],[[1043,1868],[-4,8]],[[1039,1876],[-10,9]],[[1029,1885],[0,32]],[[1051,1918],[-8,-11]],[[1128,1909],[-7,0]],[[1121,1909],[0,8]],[[1240,1913],[-4,-12]],[[1236,1901],[-1,4]],[[1235,1905],[-1,24]],[[1251,1937],[0,-24]],[[1251,1913],[-7,0]],[[1244,1913],[-1,0]],[[1424,1939],[5,-33],[-7,23]],[[820,1934],[-9,-57]],[[811,1877],[-3,23]],[[808,1900],[-1,14]],[[935,1940],[-1,-33]],[[934,1907],[-8,0]],[[960,1939],[1,-32]],[[961,1907],[-27,0]],[[1235,1905],[-2,-8]],[[1233,1897],[-3,3]],[[1230,1900],[-2,12]],[[1342,1916],[-3,0]],[[1339,1916],[0,12]],[[1342,1932],[0,-16]],[[1339,1916],[-2,-7]],[[1337,1909],[-4,2]],[[1333,1911],[-1,12]],[[973,1907],[0,-25]],[[973,1882],[0,-37]],[[973,1845],[0,-45]],[[973,1800],[-13,0]],[[960,1800],[-10,0]],[[950,1800],[-10,0]],[[940,1800],[7,11],[4,39]],[[951,1850],[3,32],[7,25]],[[1316,1919],[1,-7]],[[1317,1912],[-3,-8]],[[1314,1904],[-2,7]],[[1312,1911],[0,15]],[[1402,1918],[-1,-8]],[[1401,1910],[-4,9]],[[1396,1912],[-2,-15]],[[1394,1897],[-4,-14]],[[1390,1883],[-5,18]],[[1385,1901],[0,9]],[[1392,1911],[0,0]],[[1393,1902],[0,0]],[[1257,1917],[0,-12]],[[1257,1905],[-6,0]],[[1251,1905],[0,8]],[[1182,1913],[0,-17]],[[1182,1896],[-8,2]],[[1174,1898],[0,31]],[[860,1797],[-9,46]],[[1325,1921],[-2,-10]],[[1323,1911],[-3,17]],[[1019,1918],[4,-35]],[[1023,1883],[0,-13]],[[1023,1870],[-8,-1]],[[1015,1869],[-9,9]],[[1006,1878],[-4,11]],[[1002,1889],[0,18]],[[1443,1894],[-4,-2]],[[1439,1892],[0,1]],[[1439,1893],[0,26]],[[1447,1935],[-4,-41]],[[831,1869],[-1,3]],[[830,1872],[-3,12],[-12,-25]],[[815,1859],[-4,18]],[[1162,1929],[0,-33]],[[1162,1896],[-6,1]],[[1156,1897],[0,12]],[[1208,1920],[0,-26]],[[1208,1894],[-3,1]],[[1205,1895],[-4,19]],[[1291,1932],[-1,-22]],[[1290,1910],[-2,-6]],[[1288,1904],[-3,13]],[[1294,1932],[2,-23]],[[1296,1909],[-1,-15]],[[1295,1894],[0,-1]],[[1295,1893],[-5,17]],[[1347,1914],[-1,-26]],[[1346,1888],[-2,-9]],[[1344,1879],[-1,9]],[[1343,1888],[-1,28]],[[1297,1920],[-1,-11]],[[1420,1918],[-1,-10]],[[1419,1908],[-1,-1]],[[1418,1907],[-3,9]],[[1415,1924],[5,-6]],[[1333,1911],[0,-8]],[[1333,1903],[-3,-7]],[[1330,1896],[-1,2]],[[1329,1898],[-2,12]],[[1410,1926],[-3,-22]],[[1407,1904],[-4,1]],[[1403,1905],[-2,5]],[[1168,1929],[0,-33]],[[1168,1896],[-6,0]],[[1174,1898],[0,-2]],[[1174,1896],[-6,0]],[[1302,1919],[1,-12]],[[1303,1907],[-1,-3]],[[1302,1904],[-7,-11]],[[1415,1916],[-4,-24]],[[1411,1892],[-1,2]],[[1410,1894],[-3,10]],[[1353,1912],[-2,-17]],[[1351,1895],[-3,-4]],[[1348,1891],[-2,-3]],[[1312,1911],[-2,-7]],[[1310,1904],[-2,1]],[[1308,1905],[0,19]],[[1323,1911],[-2,-7]],[[1321,1904],[-3,-5]],[[1318,1899],[-1,13]],[[1308,1905],[-1,-9]],[[1307,1896],[-4,11]],[[1115,1917],[-2,-24]],[[1113,1893],[-8,8]],[[1105,1901],[0,16]],[[994,1907],[0,-17]],[[994,1890],[-2,-6]],[[992,1884],[-4,23]],[[786,1903],[-1,-27],[-6,18],[0,26]],[[1329,1898],[-3,-5]],[[1326,1893],[-3,18]],[[808,1900],[0,-32],[-8,-23]],[[800,1845],[-1,31]],[[799,1876],[0,21]],[[799,1897],[0,6]],[[1216,1907],[-5,-13]],[[1211,1894],[-3,0]],[[1434,1889],[0,1]],[[1434,1890],[0,0]],[[1439,1893],[-4,-7],[2,32]],[[1403,1905],[-1,-12]],[[1402,1893],[-3,-19]],[[1399,1874],[-2,-6]],[[1397,1868],[-3,29]],[[1399,1899],[0,0]],[[1426,1894],[-1,-4]],[[1425,1890],[-4,10]],[[1421,1900],[-2,8]],[[1420,1918],[6,-24]],[[1205,1895],[0,-15]],[[1205,1880],[-6,3]],[[1199,1883],[-3,1]],[[1196,1884],[0,15]],[[1343,1888],[-1,-6]],[[1342,1882],[-6,8]],[[1336,1890],[0,4]],[[1336,1894],[1,15]],[[1385,1901],[-2,-20]],[[1383,1881],[-6,7]],[[1377,1888],[2,11]],[[1071,1917],[0,-48]],[[1071,1869],[0,-9]],[[1071,1860],[-10,0]],[[1061,1860],[0,58]],[[1377,1888],[-3,-24]],[[1374,1864],[-5,4]],[[1369,1868],[-2,13]],[[1367,1881],[-1,22]],[[1336,1894],[-3,9]],[[1029,1885],[-6,-2]],[[1061,1860],[-4,0]],[[1057,1860],[-5,0]],[[1052,1860],[0,58]],[[1052,1860],[-9,8]],[[1288,1904],[0,-7]],[[1288,1897],[-3,-19]],[[1285,1878],[-2,15]],[[1283,1893],[0,19]],[[1367,1881],[-2,-5]],[[1365,1876],[-6,14]],[[1084,1918],[0,-50]],[[1084,1868],[-6,0]],[[1078,1868],[0,49]],[[1096,1917],[0,-24]],[[1096,1893],[-6,0],[0,-25]],[[1090,1868],[-6,0]],[[1078,1868],[-7,1]],[[1267,1914],[-2,-31]],[[1265,1883],[-4,1]],[[1261,1884],[0,33]],[[1121,1909],[0,-32]],[[1121,1877],[-8,0]],[[1113,1877],[0,16]],[[1105,1901],[0,-16]],[[1105,1885],[-9,0]],[[1096,1885],[0,8]],[[1261,1884],[-4,0]],[[1257,1884],[0,21]],[[1418,1907],[1,-17]],[[1419,1890],[-2,-7]],[[1417,1883],[-2,-10]],[[1415,1873],[-4,19]],[[1280,1912],[-3,-30]],[[1277,1882],[-1,1]],[[1276,1883],[-2,4]],[[1274,1887],[0,21]],[[1271,1909],[0,-26]],[[1271,1883],[-3,1]],[[1268,1884],[-2,-10]],[[1266,1874],[-1,9]],[[1358,1892],[-1,-19]],[[1357,1873],[-1,0]],[[1356,1873],[-5,22]],[[1244,1913],[0,-24]],[[1244,1889],[-1,-14]],[[1243,1875],[-3,6]],[[1240,1881],[-4,20]],[[1190,1900],[-1,-23]],[[1189,1877],[-1,0]],[[1188,1877],[-6,7]],[[1182,1884],[0,12]],[[1251,1905],[-1,-17]],[[1250,1888],[-6,1]],[[1223,1912],[0,-43]],[[1223,1869],[0,-4]],[[1223,1865],[-6,8]],[[1217,1873],[0,34]],[[1318,1899],[0,-16]],[[1318,1883],[-2,-4]],[[1316,1879],[-3,14]],[[1313,1893],[1,11]],[[1230,1900],[0,-32]],[[1230,1868],[-7,1]],[[1283,1893],[-2,-7]],[[1281,1886],[-4,-4]],[[1295,1893],[-3,-19]],[[1292,1874],[-4,23]],[[1313,1893],[0,-13]],[[1313,1880],[-2,10]],[[1311,1890],[-1,14]],[[1326,1893],[0,-8]],[[1326,1885],[-3,1]],[[1323,1886],[-2,18]],[[1139,1901],[0,-16]],[[1139,1885],[-8,0]],[[1131,1885],[0,24]],[[1156,1897],[0,-29]],[[1156,1868],[0,-12]],[[1156,1856],[-8,0]],[[1148,1856],[0,45]],[[1131,1885],[-1,-17]],[[1130,1868],[-9,0]],[[1121,1868],[0,9]],[[1274,1887],[-3,-4]],[[1217,1873],[-3,-17]],[[1214,1856],[-4,0]],[[1210,1856],[1,38]],[[951,1850],[-28,0]],[[923,1850],[2,57]],[[1424,1871],[-1,-3]],[[1423,1868],[-4,22]],[[1419,1908],[5,-37]],[[992,1884],[-2,-12]],[[990,1872],[-6,11],[-11,-1]],[[1410,1894],[-1,-26]],[[1409,1868],[-4,16]],[[1405,1884],[-3,9]],[[923,1850],[-3,-4]],[[920,1846],[-16,10]],[[1307,1896],[-1,-6]],[[1306,1890],[-4,2]],[[1302,1892],[0,12]],[[1002,1889],[-2,-50]],[[1000,1839],[-5,0]],[[995,1839],[0,20]],[[995,1859],[-1,31]],[[1311,1890],[-3,-7]],[[1308,1883],[-2,0]],[[1306,1883],[0,7]],[[1257,1884],[0,-4]],[[1257,1880],[-6,0]],[[1251,1880],[-1,8]],[[1425,1890],[2,-12]],[[1427,1878],[-2,-3]],[[1425,1875],[-4,25]],[[1240,1881],[-3,-19]],[[1237,1862],[-4,35]],[[1302,1892],[-4,-17]],[[1298,1875],[-3,18]],[[1336,1890],[0,-10]],[[1336,1880],[-3,-14]],[[1333,1866],[-4,14]],[[1329,1880],[1,16]],[[1323,1886],[-1,-8]],[[1322,1878],[-1,1]],[[1321,1879],[-3,4]],[[799,1876],[-6,-9],[-5,16]],[[788,1883],[1,15],[10,-1]],[[1148,1856],[0,-12]],[[1148,1844],[-9,0]],[[1139,1844],[0,41]],[[1113,1877],[0,-9]],[[1113,1868],[-7,0]],[[1106,1868],[-1,17]],[[1390,1875],[-4,-18]],[[1386,1857],[-1,-8]],[[1385,1849],[-2,22]],[[1383,1871],[0,10]],[[1390,1883],[0,-8]],[[1386,1874],[0,0]],[[1387,1870],[0,0]],[[1237,1862],[0,-3]],[[1237,1859],[-6,1]],[[1231,1860],[-1,8]],[[815,1859],[-8,-22],[-3,-25]],[[804,1812],[-4,33]],[[1196,1884],[-2,-9]],[[1194,1875],[-5,2]],[[1182,1884],[0,-25]],[[1182,1859],[-8,2]],[[1174,1861],[0,1]],[[1174,1862],[0,34]],[[1329,1880],[-1,-3]],[[1328,1877],[-2,8]],[[1397,1868],[-2,-17]],[[1395,1851],[-1,-1]],[[1394,1850],[-4,25]],[[1292,1874],[-1,-19]],[[1291,1855],[-5,-3]],[[1286,1852],[0,9]],[[1286,1861],[-1,17]],[[1162,1896],[0,-28]],[[1162,1868],[-6,0]],[[1168,1896],[0,-28]],[[1168,1868],[-6,0]],[[1174,1862],[-6,1]],[[1168,1863],[0,5]],[[1434,1889],[0,0]],[[1437,1846],[-1,5]],[[1436,1851],[3,41]],[[1443,1894],[-6,-48]],[[1356,1873],[-3,-12]],[[1353,1861],[-5,30]],[[1429,1865],[-2,13]],[[1426,1894],[5,-12],[-2,-17]],[[1210,1856],[-3,0]],[[1207,1856],[-2,24]],[[1039,1876],[-6,-39],[-5,-10]],[[1028,1827],[-1,30],[-4,-3]],[[1023,1854],[0,16]],[[1415,1873],[3,-15]],[[1418,1858],[-1,-8]],[[1417,1850],[-6,16]],[[1411,1866],[-2,2]],[[1404,1869],[-1,-5]],[[1403,1864],[-4,10]],[[1405,1884],[-1,-15]],[[1298,1875],[1,-7]],[[1299,1868],[-3,-27]],[[1296,1841],[-2,1]],[[1294,1842],[-3,13]],[[1316,1879],[-1,-8]],[[1315,1871],[-3,5]],[[1312,1876],[1,4]],[[1342,1882],[-1,-15]],[[1341,1867],[-4,-1]],[[1337,1866],[-1,14]],[[1096,1885],[0,-41]],[[1096,1844],[-6,0]],[[1090,1844],[0,24]],[[1286,1861],[-3,7]],[[1283,1868],[-2,18]],[[1365,1876],[-2,-21]],[[1363,1855],[-2,-8]],[[1361,1847],[-4,26]],[[1306,1883],[-3,-15]],[[1303,1868],[-2,-17]],[[1301,1851],[-2,17]],[[1353,1861],[-1,-10]],[[1352,1851],[-1,-4]],[[1351,1847],[0,3]],[[1351,1850],[-5,19]],[[1346,1869],[-2,10]],[[1276,1883],[-1,-20]],[[1275,1863],[-1,-3]],[[1274,1860],[-4,-1]],[[1270,1859],[-2,25]],[[1423,1868],[2,-12]],[[1425,1856],[-1,-14]],[[1424,1842],[-1,13]],[[1423,1855],[-6,28]],[[995,1859],[-7,0]],[[988,1859],[2,13]],[[1312,1876],[0,-10]],[[1312,1866],[-4,-3]],[[1308,1863],[0,20]],[[1006,1878],[0,-41]],[[1006,1837],[-6,2]],[[1346,1869],[-4,-5]],[[1342,1864],[-1,3]],[[1383,1871],[-5,-11]],[[1378,1860],[-3,-2]],[[1375,1858],[-1,6]],[[1378,1875],[0,0]],[[1251,1880],[0,-24]],[[1251,1856],[-6,-3]],[[1245,1853],[-2,22]],[[1328,1877],[-2,-11]],[[1326,1866],[-4,12]],[[1283,1868],[-3,-16]],[[1280,1852],[-5,11]],[[1321,1879],[0,-27]],[[1321,1852],[-1,-4]],[[1320,1848],[-2,2]],[[1318,1850],[-3,21]],[[1266,1874],[-1,-21]],[[1265,1853],[-4,3]],[[1261,1856],[0,28]],[[1308,1863],[0,-4]],[[1308,1859],[-5,9]],[[1106,1868],[0,-25]],[[1106,1843],[-8,1]],[[1098,1844],[-2,0]],[[1139,1844],[-9,0]],[[1130,1844],[0,24]],[[1261,1856],[-4,0]],[[1257,1856],[0,24]],[[1423,1855],[-3,-1]],[[1420,1854],[-2,4]],[[1199,1883],[0,-38]],[[1199,1845],[-3,-7]],[[1196,1838],[-2,1]],[[1194,1839],[0,36]],[[800,1845],[-7,-2]],[[793,1843],[-5,40]],[[1411,1866],[0,-14]],[[1411,1852],[-6,9]],[[1405,1861],[-1,8]],[[1245,1853],[0,-1]],[[1245,1852],[-4,4]],[[1241,1856],[-4,-1]],[[1237,1855],[0,4]],[[1188,1877],[0,-24]],[[1188,1853],[-6,1]],[[1182,1854],[0,5]],[[830,1872],[-10,-55]],[[820,1817],[-5,42]],[[1270,1859],[-2,-15]],[[1268,1844],[-2,3]],[[1266,1847],[-1,6]],[[1207,1856],[0,-12]],[[1207,1844],[-6,1]],[[1201,1845],[-2,0]],[[988,1859],[-13,0],[-2,-14]],[[1337,1866],[0,-21]],[[1337,1845],[0,2]],[[1337,1847],[-4,15]],[[1333,1862],[0,4]],[[1366,1840],[-3,15]],[[1369,1868],[-3,-28]],[[1257,1856],[-5,-1]],[[1252,1855],[-1,1]],[[1333,1862],[-4,-3]],[[1329,1859],[-3,7]],[[1326,1866],[-2,-16]],[[1324,1850],[-3,2]],[[1429,1865],[-4,10]],[[1015,1869],[0,-32]],[[1015,1837],[-9,0]],[[787,1866],[-1,0]],[[786,1866],[1,0]],[[1194,1839],[-6,1]],[[1188,1840],[0,13]],[[1318,1850],[-2,-5]],[[1316,1845],[-3,14]],[[1313,1859],[-1,7]],[[1121,1868],[0,-24]],[[1121,1844],[-8,0]],[[1113,1844],[0,24]],[[1394,1850],[-2,-10]],[[1392,1840],[-1,-4]],[[1391,1836],[-2,7]],[[1389,1843],[-3,14]],[[1057,1860],[-1,-60]],[[1056,1800],[-12,-1]],[[1044,1799],[-16,0]],[[1028,1799],[0,28]],[[1385,1849],[-5,-20]],[[1380,1829],[-3,10]],[[1377,1839],[1,21]],[[1223,1865],[0,-10]],[[1223,1855],[-1,-17]],[[1222,1838],[-6,1]],[[1216,1839],[-2,17]],[[1361,1847],[-1,-8]],[[1360,1839],[-8,12]],[[1403,1864],[-3,-33]],[[1400,1831],[-2,6]],[[1398,1837],[-3,14]],[[834,1854],[-4,-35],[-7,-33],[-8,-6],[-2,24]],[[813,1804],[7,13]],[[1426,1853],[-1,3]],[[1424,1871],[4,-24]],[[1428,1847],[-2,6]],[[1342,1864],[-2,-38]],[[1340,1826],[-3,19]],[[1023,1854],[-4,-21]],[[1019,1833],[-4,4]],[[1405,1861],[-1,-19]],[[1404,1842],[-1,-8]],[[1403,1834],[-3,-3]],[[1351,1850],[-5,-22]],[[1346,1828],[-3,-9]],[[1343,1819],[-1,-1]],[[1342,1818],[-2,7]],[[1340,1825],[0,1]],[[1231,1860],[0,-31]],[[1231,1829],[-2,-4]],[[1229,1825],[-1,31],[-5,-1]],[[1078,1868],[0,-32]],[[1078,1836],[-7,0]],[[1071,1836],[0,24]],[[1286,1852],[0,-15]],[[1286,1837],[-4,-18]],[[1282,1819],[-3,19]],[[1279,1838],[1,14]],[[1084,1868],[0,-32]],[[1084,1836],[-6,0]],[[1090,1844],[0,-8]],[[1090,1836],[-6,0]],[[1113,1844],[0,-8]],[[1113,1836],[-7,-1]],[[1106,1835],[0,8]],[[1130,1844],[0,-8]],[[1130,1836],[-8,0]],[[1122,1836],[-1,8]],[[1162,1868],[0,-33]],[[1162,1835],[-6,1]],[[1156,1836],[0,20]],[[1168,1863],[0,-28]],[[1168,1835],[-6,0]],[[1301,1851],[1,-8]],[[1302,1843],[-2,0]],[[1300,1843],[-1,-4]],[[1299,1839],[-3,2]],[[1308,1859],[0,-8]],[[1308,1851],[-1,-13]],[[1307,1838],[-5,5]],[[1375,1858],[-3,-19]],[[1372,1839],[-6,1]],[[1329,1859],[-1,-12]],[[1328,1847],[-4,1]],[[1324,1848],[0,2]],[[1313,1859],[-2,-8]],[[1311,1851],[-3,0]],[[1417,1850],[1,-5]],[[1418,1845],[-1,-10]],[[1417,1835],[-1,1]],[[1416,1836],[-2,5]],[[1414,1841],[-2,11]],[[1412,1852],[-1,0]],[[787,1866],[4,-23]],[[791,1843],[0,-17]],[[791,1826],[-2,-16]],[[789,1810],[-3,56]],[[1337,1847],[-2,-10]],[[1335,1837],[-6,-6]],[[1329,1831],[-1,16]],[[1411,1852],[-3,-13]],[[1408,1839],[-4,3]],[[1279,1838],[-3,-2]],[[1276,1836],[-1,17]],[[1275,1853],[-1,7]],[[1174,1861],[0,-27]],[[1174,1834],[0,-3]],[[1174,1831],[-6,0]],[[1168,1831],[0,4]],[[1377,1839],[-2,-8]],[[1375,1831],[-3,-2]],[[1372,1829],[0,10]],[[1028,1799],[-1,0]],[[1027,1799],[-7,0]],[[1020,1799],[-1,34]],[[1182,1854],[0,-22]],[[1182,1832],[-8,2]],[[1275,1853],[-6,-21]],[[1269,1832],[0,3]],[[1269,1835],[-1,9]],[[1237,1855],[-1,-26]],[[1236,1829],[-5,0]],[[1071,1836],[0,-37]],[[1071,1799],[-13,1]],[[1058,1800],[-2,0]],[[988,1859],[-5,-59]],[[983,1800],[-10,0]],[[995,1839],[0,-39]],[[995,1800],[-12,0]],[[813,1804],[-5,-28]],[[808,1776],[-4,20]],[[804,1796],[0,16]],[[1316,1845],[-1,-15]],[[1315,1830],[-3,-8]],[[1312,1822],[-1,29]],[[1420,1854],[3,-12]],[[1423,1842],[-2,-7]],[[1421,1835],[-3,10]],[[1294,1842],[-2,-11]],[[1292,1831],[-4,-1]],[[1288,1830],[-2,7]],[[1389,1843],[0,-10]],[[1389,1833],[-3,-28]],[[1386,1805],[-2,-1]],[[1384,1804],[-4,17]],[[1380,1821],[0,8]],[[1385,1832],[0,0]],[[920,1846],[0,-46]],[[920,1800],[-16,0]],[[1156,1836],[0,-8]],[[1156,1828],[-8,0]],[[1148,1828],[0,16]],[[1229,1825],[-1,-21]],[[1228,1804],[-3,5]],[[1225,1809],[-3,29]],[[1245,1852],[1,-21]],[[1246,1831],[0,-8]],[[1246,1823],[-4,-12]],[[1242,1811],[-1,0]],[[1241,1811],[0,45]],[[1216,1839],[0,-35]],[[1216,1804],[-6,1]],[[1210,1805],[-3,0]],[[1207,1805],[0,39]],[[1266,1847],[-4,-10]],[[1262,1837],[-1,2]],[[1261,1839],[0,17]],[[1261,1839],[-1,-33]],[[1260,1806],[-3,25]],[[1257,1831],[0,25]],[[1414,1841],[-2,11]],[[1257,1831],[-3,-3]],[[1254,1828],[-2,2]],[[1252,1830],[0,25]],[[1252,1830],[-3,1]],[[1249,1831],[-3,0]],[[1428,1847],[0,-5]],[[1428,1842],[-4,0]],[[1241,1811],[-4,-7]],[[1237,1804],[-1,25]],[[1366,1840],[-2,-13]],[[1364,1827],[-3,-5]],[[1361,1822],[-2,9]],[[1359,1831],[1,8]],[[838,1843],[5,-67]],[[843,1776],[-8,0],[-9,-24]],[[826,1752],[-10,-54]],[[816,1698],[-5,33]],[[811,1731],[1,21],[-4,24]],[[1188,1840],[0,-14]],[[1188,1826],[-6,1]],[[1182,1827],[0,5]],[[1324,1848],[1,-16]],[[1325,1832],[-2,-9]],[[1323,1823],[-2,7]],[[1321,1830],[-1,18]],[[1276,1836],[0,-22]],[[1276,1814],[-5,0]],[[1271,1814],[-2,18]],[[1416,1836],[0,-8]],[[1416,1828],[-1,1]],[[1415,1829],[0,-6]],[[1415,1823],[-1,-1]],[[1414,1822],[0,-1]],[[1414,1821],[0,-1]],[[1414,1820],[-3,4]],[[1411,1824],[-3,15]],[[1398,1837],[-1,-14]],[[1397,1823],[-2,-4]],[[1395,1819],[-3,21]],[[1437,1846],[-1,5]],[[1312,1822],[-2,-11]],[[1310,1811],[-2,6]],[[1308,1817],[-2,12]],[[1306,1829],[1,9]],[[1359,1831],[-5,-9]],[[1354,1822],[-3,25]],[[1269,1835],[-4,-19]],[[1265,1816],[-1,-3]],[[1264,1813],[-2,24]],[[940,1800],[-15,0]],[[925,1800],[-5,0]],[[1329,1831],[0,-7]],[[1329,1824],[-4,8]],[[1321,1830],[-3,-16]],[[1318,1814],[-3,16]],[[1354,1822],[-2,-9]],[[1352,1813],[-4,-9]],[[1348,1804],[-2,24]],[[1428,1847],[0,-5]],[[1340,1825],[-4,-7]],[[1336,1818],[-1,19]],[[1411,1824],[-2,-6]],[[1409,1818],[-6,9]],[[1403,1827],[0,7]],[[1421,1835],[1,-1]],[[1422,1834],[-5,1]],[[1201,1845],[0,-39]],[[1201,1806],[-3,0]],[[1198,1806],[-2,2]],[[1196,1808],[0,30]],[[804,1796],[-5,-6]],[[799,1790],[-8,36]],[[791,1843],[2,0]],[[1306,1829],[-2,-11]],[[1304,1818],[-4,25]],[[1207,1805],[-6,1]],[[1372,1829],[-2,-6]],[[1370,1823],[-4,-10]],[[1366,1813],[-2,14]],[[1148,1828],[0,-28]],[[1148,1800],[-3,0]],[[1145,1800],[-6,0]],[[1139,1800],[0,44]],[[1139,1800],[-4,0]],[[1135,1800],[-5,0]],[[1130,1800],[0,36]],[[1098,1844],[0,-44]],[[1098,1800],[-7,0]],[[1091,1800],[-1,36]],[[1106,1835],[0,-35]],[[1106,1800],[-7,0]],[[1099,1800],[-1,0]],[[1122,1836],[0,-36]],[[1122,1800],[-2,0]],[[1120,1800],[-7,0]],[[1113,1800],[0,36]],[[1304,1818],[-3,-8]],[[1301,1810],[-2,7]],[[1299,1817],[0,22]],[[1391,1836],[-2,-3]],[[878,1707],[3,-18]],[[881,1689],[-27,-1]],[[854,1688],[-6,-1]],[[848,1687],[-1,48],[-4,41]],[[1424,1825],[0,-1]],[[1424,1824],[2,-4]],[[1426,1820],[-1,-5]],[[1425,1815],[-3,19]],[[1423,1842],[2,-8]],[[1425,1834],[-1,-6]],[[1424,1828],[0,-3]],[[1299,1817],[-1,-1]],[[1298,1816],[-4,-1]],[[1294,1815],[-2,16]],[[1336,1818],[-1,-18]],[[1335,1800],[-1,2]],[[1334,1802],[-5,20]],[[1329,1822],[0,2]],[[1395,1819],[-2,-17]],[[1393,1802],[-2,4]],[[1391,1806],[-5,-1]],[[1196,1808],[-8,1]],[[1188,1809],[0,17]],[[1264,1813],[-1,-15]],[[1263,1798],[-3,4]],[[1260,1802],[-1,5]],[[1259,1807],[1,-1]],[[1225,1809],[-3,-20]],[[1222,1789],[-6,0]],[[1216,1789],[0,15]],[[1006,1837],[3,-38]],[[1009,1799],[-13,1]],[[996,1800],[-1,0]],[[1380,1821],[-4,-10]],[[1376,1811],[0,-1]],[[1376,1810],[-1,21]],[[1378,1828],[0,-4]],[[1378,1824],[0,4]],[[1282,1819],[-1,-13]],[[1281,1806],[-1,-1]],[[1280,1805],[-3,1]],[[1277,1806],[-1,8]],[[1403,1827],[0,-16]],[[1403,1811],[-3,-4]],[[1400,1807],[-3,16]],[[1020,1799],[-4,0]],[[1016,1799],[-7,0]],[[1289,1816],[-4,-16]],[[1285,1800],[-4,6]],[[1288,1830],[1,-14]],[[1078,1836],[0,-37]],[[1078,1799],[-7,0]],[[1084,1836],[1,-36]],[[1085,1800],[-7,-1]],[[1091,1800],[-5,0]],[[1086,1800],[-1,0]],[[1162,1835],[0,-35]],[[1162,1800],[-4,0]],[[1158,1800],[-2,0]],[[1156,1800],[0,28]],[[1130,1800],[-4,0]],[[1126,1800],[-4,0]],[[1113,1800],[-6,0]],[[1107,1800],[-1,0]],[[1168,1831],[0,-31]],[[1168,1800],[-5,0]],[[1163,1800],[-1,0]],[[1271,1814],[-1,-14]],[[1270,1800],[-2,-4]],[[1268,1796],[-3,20]],[[1425,1834],[3,-21]],[[1428,1813],[0,-3]],[[1428,1810],[0,-1]],[[1428,1809],[-2,11]],[[1424,1824],[0,4]],[[1182,1827],[0,-23]],[[1182,1804],[-8,1]],[[1174,1805],[0,26]],[[1376,1810],[-5,-12]],[[1371,1798],[-1,10]],[[1370,1808],[1,6]],[[1371,1814],[-1,9]],[[1329,1822],[0,-28]],[[1329,1794],[-1,2]],[[1328,1796],[-4,9]],[[1324,1805],[-1,18]],[[1317,1796],[-3,-9]],[[1314,1787],[-3,12]],[[1311,1799],[-1,12]],[[1318,1814],[-1,-18]],[[1174,1805],[0,-5]],[[1174,1800],[-5,0]],[[1169,1800],[-1,0]],[[1294,1815],[-1,-10]],[[1293,1805],[-4,11]],[[1259,1807],[-5,14]],[[1254,1821],[0,7]],[[1361,1822],[-3,-21]],[[1358,1801],[-5,-5]],[[1353,1796],[-1,17]],[[1249,1831],[1,-25]],[[1250,1806],[1,-8]],[[1251,1798],[-3,3]],[[1248,1801],[-2,22]],[[1324,1805],[-3,-9]],[[1321,1796],[-3,-1]],[[1318,1795],[-1,1]],[[1254,1821],[-4,-15]],[[1334,1802],[-4,-12]],[[1330,1790],[-1,4]],[[1416,1827],[-1,2]],[[1416,1828],[0,-1]],[[1237,1804],[-2,-12]],[[1235,1792],[-6,1]],[[1229,1793],[-1,11]],[[1416,1827],[4,-6]],[[1420,1821],[-2,-11]],[[1418,1810],[-4,-11]],[[1414,1799],[0,17]],[[1414,1816],[1,7]],[[1308,1817],[-3,-24]],[[1305,1793],[-3,1]],[[1302,1794],[-1,16]],[[1348,1804],[-2,-7]],[[1346,1797],[-3,22]],[[1156,1800],[-1,0]],[[1155,1800],[-7,0]],[[1366,1813],[-1,-6]],[[1365,1807],[-6,-12]],[[1359,1795],[-1,6]],[[1414,1822],[0,0]],[[1408,1799],[-2,3]],[[1406,1802],[-3,9]],[[1409,1818],[-1,-19]],[[1188,1809],[0,-10]],[[1188,1799],[0,-6]],[[1188,1793],[-6,0]],[[1182,1793],[0,11]],[[799,1790],[-1,0]],[[798,1790],[-3,-4]],[[795,1786],[-6,24]],[[1414,1820],[0,-4]],[[1414,1799],[-3,-11]],[[1411,1788],[0,2]],[[1411,1790],[-3,9]],[[1342,1818],[-4,-21]],[[1338,1797],[-3,3]],[[1248,1801],[-3,-13]],[[1245,1788],[-2,-1]],[[1243,1787],[-1,24]],[[1400,1807],[-1,-17]],[[1399,1790],[-2,-18]],[[1397,1772],[-4,30]],[[1371,1798],[-2,-5]],[[1369,1793],[-1,-5]],[[1368,1788],[-3,19]],[[1425,1813],[-3,-14]],[[1422,1799],[-1,-4]],[[1421,1795],[-3,15]],[[1420,1821],[5,-8]],[[1384,1804],[-1,-18]],[[1383,1786],[-5,-5]],[[1378,1781],[-3,7]],[[1375,1788],[1,23]],[[1255,1795],[-4,-1]],[[1251,1794],[0,4]],[[1254,1821],[1,-26]],[[1260,1802],[0,-8]],[[1260,1794],[-5,1]],[[1428,1809],[1,-10]],[[1429,1799],[-4,16]],[[1346,1797],[-1,-9]],[[1345,1788],[-5,-7]],[[1340,1781],[-2,9]],[[1338,1790],[0,7]],[[1342,1796],[0,0]],[[1293,1805],[-1,-11]],[[1292,1794],[-3,-15]],[[1289,1779],[-3,10]],[[1286,1789],[-1,11]],[[1311,1799],[-3,-12]],[[1308,1787],[-3,-1]],[[1305,1786],[0,7]],[[1302,1794],[-2,-11]],[[1300,1783],[-2,2]],[[1298,1785],[0,31]],[[1268,1796],[-4,-9]],[[1264,1787],[-1,11]],[[1429,1810],[-1,0]],[[1428,1813],[1,-3]],[[1298,1785],[-3,-11]],[[1295,1774],[-3,20]],[[1277,1806],[-1,-40]],[[1276,1766],[-4,0]],[[1272,1766],[-1,0]],[[1271,1766],[-1,34]],[[1427,1791],[-6,-24]],[[1421,1767],[0,5]],[[1421,1772],[1,27]],[[1425,1813],[2,-22]],[[1353,1796],[0,-3]],[[1353,1793],[-7,-20]],[[1346,1773],[-1,15]],[[1391,1806],[-2,-49]],[[1389,1757],[-2,0]],[[1387,1757],[-1,0]],[[1386,1757],[-1,0]],[[1385,1757],[-3,0]],[[1382,1757],[1,29]],[[1375,1788],[-3,-15]],[[1372,1773],[-3,20]],[[1243,1787],[-4,-22]],[[1239,1765],[-2,0]],[[1237,1765],[-2,27]],[[1406,1802],[0,-23]],[[1406,1779],[-7,11]],[[1429,1810],[0,-11]],[[1421,1795],[-7,-23]],[[1414,1772],[-1,2]],[[1413,1774],[-2,14]],[[1229,1793],[1,-11]],[[1230,1782],[-7,1]],[[1223,1783],[-1,6]],[[1198,1806],[0,-24]],[[1198,1782],[-5,1]],[[1193,1783],[-5,16]],[[1368,1788],[-4,-6]],[[1364,1782],[-3,-4]],[[1361,1778],[-2,17]],[[1286,1789],[-2,-22]],[[1284,1767],[-4,-1]],[[1280,1766],[0,39]],[[1280,1766],[-1,0]],[[1279,1766],[-3,0]],[[1210,1805],[-1,-24]],[[1209,1781],[-9,1]],[[1200,1782],[-2,0]],[[1264,1787],[1,-11]],[[1265,1776],[-5,0]],[[1260,1776],[0,18]],[[1251,1794],[0,-14]],[[1251,1780],[-1,-13]],[[1250,1767],[-2,-2]],[[1248,1765],[-3,23]],[[1397,1772],[-1,-15]],[[1396,1757],[-1,0]],[[1395,1757],[-5,0]],[[1390,1757],[-1,0]],[[1216,1789],[-1,-36]],[[1215,1753],[-6,0]],[[1209,1753],[0,28]],[[1182,1793],[0,-17]],[[1182,1776],[-8,2]],[[1174,1778],[0,22]],[[1328,1796],[-4,-25]],[[1324,1771],[-3,25]],[[1411,1790],[-2,-33]],[[1409,1757],[-2,0]],[[1407,1757],[-2,0]],[[1405,1757],[1,22]],[[1338,1790],[-8,-21]],[[1330,1769],[0,21]],[[1361,1778],[-5,-12]],[[1356,1766],[-3,27]],[[960,1800],[0,-125],[2,0],[0,-175],[-1,-20]],[[961,1480],[-1,1]],[[960,1481],[0,39],[-10,0],[0,25]],[[950,1545],[0,255]],[[950,1545],[-12,19]],[[938,1564],[-3,48],[-8,-1],[-1,27],[-12,25]],[[914,1663],[-1,47],[10,35],[2,55]],[[1271,1766],[-5,4]],[[1266,1770],[-1,6]],[[1163,1800],[0,-38]],[[1163,1762],[-5,0]],[[1158,1762],[0,38]],[[1155,1800],[0,-54]],[[1155,1746],[-4,-24]],[[1151,1722],[-7,37],[-3,-5]],[[1141,1754],[-1,8]],[[1140,1762],[5,38]],[[1120,1800],[0,-50]],[[1120,1750],[-6,4]],[[1114,1754],[-5,29]],[[1109,1783],[-2,17]],[[1169,1800],[0,-31]],[[1169,1769],[0,-15]],[[1169,1754],[-4,0]],[[1165,1754],[-2,8]],[[1158,1762],[0,-16]],[[1158,1746],[-3,0]],[[1135,1800],[0,-38]],[[1135,1762],[-9,0]],[[1126,1762],[0,38]],[[1126,1762],[0,-12]],[[1126,1750],[-6,0]],[[1140,1762],[-5,0]],[[1174,1778],[0,-9]],[[1174,1769],[-5,0]],[[1109,1783],[-4,-21]],[[1105,1762],[-6,0]],[[1099,1762],[0,38]],[[1016,1799],[1,-49],[-2,-16],[7,-26]],[[1022,1708],[-2,-3]],[[1020,1705],[-8,-5]],[[1012,1700],[0,3]],[[1012,1703],[-9,3],[0,21],[-10,0]],[[993,1727],[0,55],[3,18]],[[993,1727],[0,-20]],[[993,1707],[-20,0]],[[973,1707],[0,93]],[[973,1707],[0,-97]],[[973,1610],[0,-36]],[[973,1574],[0,-74]],[[973,1500],[-6,-12]],[[967,1488],[-6,-8]],[[1058,1800],[0,-47]],[[1058,1753],[-1,-41]],[[1057,1712],[0,-30]],[[1057,1682],[-5,0]],[[1052,1682],[0,33],[-9,12]],[[1043,1727],[1,72]],[[1071,1799],[0,-46]],[[1071,1753],[-2,0]],[[1069,1753],[-11,0]],[[1086,1800],[0,-47]],[[1086,1753],[-2,0]],[[1084,1753],[-7,0]],[[1077,1753],[-6,0]],[[1099,1762],[0,-9]],[[1099,1753],[-7,0]],[[1092,1753],[-6,0]],[[1421,1767],[0,-9]],[[1421,1758],[0,-1]],[[1421,1757],[-3,0]],[[1418,1757],[-2,0]],[[1416,1757],[-2,15]],[[1314,1787],[-2,-24]],[[1312,1763],[-1,0]],[[1311,1763],[-2,1]],[[1309,1764],[-1,23]],[[1027,1799],[-3,-41],[1,-27]],[[1025,1731],[-3,-23]],[[1043,1727],[-5,0]],[[1038,1727],[-13,4]],[[1193,1783],[0,-30]],[[1193,1753],[-4,0]],[[1189,1753],[-1,40]],[[811,1731],[-5,6],[-8,53]],[[1324,1771],[-1,-10]],[[1323,1761],[-1,1]],[[1322,1762],[-3,0]],[[1319,1762],[-1,33]],[[1431,1792],[0,-8]],[[1431,1784],[0,8]],[[1319,1762],[-7,1]],[[1330,1769],[-3,-6]],[[1327,1763],[-4,-2]],[[1255,1795],[0,-16]],[[1255,1779],[-4,1]],[[1260,1776],[0,-23]],[[1260,1753],[-1,0]],[[1259,1753],[-4,0]],[[1255,1753],[0,26]],[[1305,1786],[-1,-21]],[[1304,1765],[-2,-1]],[[1302,1764],[-2,19]],[[1295,1774],[0,-9]],[[1295,1765],[-3,1]],[[1292,1766],[-3,1]],[[1289,1767],[0,12]],[[1189,1753],[-4,0]],[[1185,1753],[-3,0]],[[1182,1753],[0,23]],[[1436,1758],[-1,0]],[[1435,1758],[-1,0]],[[1434,1758],[-1,0]],[[1433,1758],[-1,0]],[[1432,1758],[-1,26]],[[1431,1792],[5,-34]],[[1372,1773],[-2,-14]],[[1370,1759],[-4,0]],[[1366,1759],[-1,8]],[[1365,1767],[0,2]],[[1365,1769],[-1,13]],[[1349,1767],[-2,-5]],[[1347,1762],[-1,0]],[[1346,1762],[0,11]],[[1356,1766],[-1,-2]],[[1355,1764],[-2,0]],[[1353,1764],[-5,-2]],[[1348,1762],[1,5]],[[1237,1765],[-1,-12]],[[1236,1753],[-5,0]],[[1231,1753],[-1,29]],[[1430,1784],[0,-1]],[[1430,1783],[-2,-1]],[[1428,1782],[2,2]],[[1429,1785],[-1,2]],[[1428,1787],[0,3]],[[1428,1790],[1,-5]],[[1428,1787],[0,-5]],[[1428,1782],[-1,-24]],[[1427,1758],[-1,0]],[[1426,1758],[-5,0]],[[1427,1791],[1,-1]],[[816,1698],[2,-11]],[[818,1687],[-16,0]],[[802,1687],[-8,48],[1,51]],[[1416,1757],[-7,0]],[[1340,1781],[-3,-19]],[[1337,1762],[-7,0]],[[1330,1762],[-3,1]],[[1405,1757],[-3,0]],[[1402,1757],[-2,0]],[[1400,1757],[-4,0]],[[1309,1764],[-4,1]],[[1305,1765],[-1,0]],[[1223,1783],[0,-30]],[[1223,1753],[-4,0]],[[1219,1753],[-4,0]],[[1346,1762],[-4,0]],[[1342,1762],[-3,0]],[[1339,1762],[-2,0]],[[1289,1767],[-2,-1]],[[1287,1766],[-3,1]],[[1378,1781],[-1,-24]],[[1377,1757],[-5,1]],[[1372,1758],[-2,1]],[[1248,1765],[-1,-12]],[[1247,1753],[-1,0]],[[1246,1753],[-1,0]],[[1245,1753],[0,-15]],[[1245,1738],[-6,5]],[[1239,1743],[0,22]],[[1429,1785],[-1,-3]],[[1430,1784],[1,0]],[[1432,1758],[-2,0]],[[1430,1758],[-3,0]],[[1382,1757],[-4,0]],[[1378,1757],[-1,0]],[[1380,1769],[0,0]],[[904,1785],[0,-60],[-2,-16],[-8,6],[2,-86],[-1,-15]],[[895,1614],[-14,75]],[[1302,1764],[-5,0]],[[1297,1764],[-2,1]],[[1231,1753],[-3,0]],[[1228,1753],[-5,0]],[[1200,1782],[0,-29]],[[1200,1753],[-1,0]],[[1199,1753],[-6,0]],[[1114,1754],[0,-32]],[[1114,1722],[-6,0]],[[1108,1722],[-3,0],[0,40]],[[1366,1759],[-7,1]],[[1359,1760],[-4,1]],[[1355,1761],[0,3]],[[1209,1753],[-5,0]],[[1204,1753],[-4,0]],[[1255,1753],[-5,14]],[[1182,1753],[-8,0]],[[1174,1753],[0,16]],[[1266,1770],[0,-17]],[[1266,1753],[-6,0]],[[848,1687],[-21,0]],[[827,1687],[-1,65]],[[1272,1766],[0,-25]],[[1272,1741],[-5,-1]],[[1267,1740],[-1,13]],[[1174,1753],[1,-31]],[[1175,1722],[-3,0]],[[1172,1722],[-3,0]],[[1169,1722],[0,32]],[[1284,1744],[-2,-2]],[[1282,1742],[-3,7]],[[1279,1749],[0,17]],[[1287,1766],[-3,-22]],[[1292,1766],[-1,-14]],[[1291,1752],[0,-13]],[[1291,1739],[-5,-10]],[[1286,1729],[-2,15]],[[1246,1753],[0,0]],[[1255,1753],[-7,0]],[[1248,1753],[-1,0]],[[1279,1749],[-2,-12]],[[1277,1737],[-4,1]],[[1273,1738],[-1,3]],[[1387,1757],[-1,0]],[[1297,1753],[0,-8]],[[1297,1745],[-2,1]],[[1295,1746],[-4,6]],[[1297,1764],[0,-11]],[[1348,1762],[-1,0]],[[1239,1743],[0,-37]],[[1239,1706],[-4,0]],[[1235,1706],[-1,0]],[[1234,1706],[2,19]],[[1236,1725],[0,28]],[[1311,1763],[1,-8]],[[1312,1755],[-5,-11]],[[1307,1744],[-3,12]],[[1304,1756],[1,9]],[[1304,1756],[-2,-12]],[[1302,1744],[-5,9]],[[1351,1754],[-5,-10]],[[1346,1744],[-5,3]],[[1341,1747],[1,15]],[[1353,1764],[-2,-10]],[[1355,1761],[-1,-18]],[[1354,1743],[-3,-10]],[[1351,1733],[0,-2]],[[1351,1731],[0,23]],[[1319,1762],[-2,-35]],[[1317,1727],[-1,-5]],[[1316,1722],[-3,19]],[[1313,1741],[-1,14]],[[1330,1762],[1,-17]],[[1331,1745],[-4,-6]],[[1327,1739],[-3,7]],[[1324,1746],[-2,16]],[[1141,1754],[1,-24]],[[1142,1730],[-6,-9]],[[1136,1721],[-1,1]],[[1135,1722],[0,40]],[[1339,1762],[-7,-19]],[[1332,1743],[-1,2]],[[1165,1754],[-2,-40]],[[1163,1714],[-5,8]],[[1158,1722],[0,24]],[[1324,1746],[-2,-14]],[[1322,1732],[-5,-5]],[[1341,1747],[-1,-2]],[[1340,1745],[-5,-16]],[[1335,1729],[-2,4]],[[1333,1733],[-1,10]],[[1135,1722],[-3,0]],[[1132,1722],[-6,0]],[[1126,1722],[0,28]],[[1108,1722],[0,-14]],[[1108,1708],[-3,-16],[-6,3]],[[1099,1695],[0,17]],[[1099,1712],[0,41]],[[1359,1760],[2,-19]],[[1361,1741],[-3,-12]],[[1358,1729],[-4,14]],[[1313,1741],[-3,-20]],[[1310,1721],[-3,-2]],[[1307,1719],[0,1]],[[1307,1720],[0,24]],[[1366,1759],[-1,-15]],[[1365,1744],[-4,-3]],[[1151,1722],[-5,-1]],[[1146,1721],[-4,9]],[[1372,1758],[0,-27]],[[1372,1731],[0,-2]],[[1372,1729],[-6,0]],[[1366,1729],[-1,15]],[[1426,1758],[1,-4]],[[1427,1754],[1,-12]],[[1428,1742],[-2,-3]],[[1426,1739],[-2,-4]],[[1424,1735],[-1,5]],[[1423,1740],[-2,4]],[[1421,1744],[0,13]],[[1434,1739],[-4,19]],[[1433,1758],[1,-19]],[[1436,1758],[1,-30]],[[1437,1728],[-2,30]],[[1378,1757],[0,-26]],[[1378,1731],[-6,0]],[[1434,1739],[-3,2]],[[1431,1741],[-4,13]],[[1407,1757],[0,-3]],[[1407,1754],[-1,-29]],[[1406,1725],[-4,6]],[[1402,1731],[0,26]],[[1417,1730],[-1,-8]],[[1416,1722],[-9,32]],[[1418,1757],[-1,-27]],[[1423,1740],[1,-11]],[[1424,1729],[-7,1]],[[1395,1757],[0,-28]],[[1395,1729],[-2,0]],[[1393,1729],[-3,0]],[[1390,1729],[0,28]],[[1402,1731],[-3,-8]],[[1399,1723],[1,34]],[[1399,1723],[-1,-14]],[[1398,1709],[-2,4]],[[1396,1713],[-1,16]],[[1385,1757],[0,-27]],[[1385,1730],[0,-1]],[[1385,1729],[-7,2]],[[1390,1729],[-1,0]],[[1389,1729],[-4,1]],[[1307,1720],[-5,15]],[[1302,1735],[0,9]],[[1302,1735],[-4,-6]],[[1298,1729],[-1,16]],[[1416,1722],[-1,-8]],[[1415,1714],[-1,-7]],[[1414,1707],[-4,14]],[[1410,1721],[-4,4]],[[1169,1722],[-3,-8]],[[1166,1714],[-3,0]],[[1351,1731],[-2,-15]],[[1349,1716],[-2,5]],[[1347,1721],[-1,9]],[[1346,1730],[0,14]],[[1431,1741],[-1,-14]],[[1430,1727],[-2,15]],[[1255,1753],[-2,-26]],[[1253,1727],[-2,-1]],[[1251,1726],[-5,0]],[[1246,1726],[2,27]],[[1126,1722],[-2,0]],[[1124,1722],[-6,0]],[[1118,1722],[-4,0]],[[1259,1753],[0,-32]],[[1259,1721],[-2,-9]],[[1257,1712],[-4,15]],[[1246,1726],[-2,-2]],[[1244,1724],[1,14]],[[1077,1712],[-8,0]],[[1069,1712],[0,41]],[[1077,1753],[0,-41]],[[1267,1740],[-3,-22]],[[1264,1718],[-5,3]],[[1084,1712],[-7,0]],[[1084,1753],[0,-41]],[[1069,1712],[-12,0]],[[1092,1753],[0,-41]],[[1092,1712],[-8,0]],[[1099,1712],[-7,0]],[[1185,1753],[1,-18]],[[1186,1735],[-1,-7]],[[1185,1728],[-10,-12]],[[1175,1716],[0,6]],[[1219,1753],[-4,-23]],[[1215,1730],[-6,1]],[[1209,1731],[0,22]],[[1193,1753],[0,-35]],[[1193,1718],[-3,0]],[[1190,1718],[-4,17]],[[1219,1753],[2,-22]],[[1221,1731],[-1,-35]],[[1220,1696],[-5,5]],[[1215,1701],[0,29]],[[1228,1731],[-1,-10]],[[1227,1721],[-6,10]],[[1228,1753],[0,-22]],[[1199,1753],[-1,-36]],[[1198,1717],[-5,1]],[[1204,1753],[1,-41]],[[1205,1712],[-7,5]],[[1209,1731],[-1,-12]],[[1208,1719],[-3,-15]],[[1205,1704],[0,8]],[[1236,1725],[-8,6]],[[827,1687],[-9,0]],[[1295,1746],[-2,-12]],[[1293,1734],[-2,5]],[[1282,1742],[-2,-31]],[[1280,1711],[-2,0]],[[1278,1711],[-1,26]],[[1279,1734],[0,0]],[[1346,1730],[-4,-14]],[[1342,1716],[-2,29]],[[1366,1729],[0,-17]],[[1366,1712],[-2,-1]],[[1364,1711],[-4,-5]],[[1360,1706],[-3,12]],[[1357,1718],[1,11]],[[1327,1739],[-1,-17]],[[1326,1722],[-3,2]],[[1323,1724],[-1,8]],[[1298,1729],[-1,-10]],[[1297,1719],[-3,-4]],[[1294,1715],[-1,19]],[[1244,1724],[-1,-17]],[[1243,1707],[-4,-1]],[[1158,1722],[0,-29]],[[1158,1693],[-3,0]],[[1155,1693],[-4,29]],[[1333,1733],[-3,-10]],[[1330,1723],[-3,-9]],[[1327,1714],[-1,8]],[[1286,1729],[1,-13]],[[1287,1716],[-1,-12]],[[1286,1704],[-6,7]],[[1342,1716],[0,-6]],[[1342,1710],[-4,-9]],[[1338,1701],[-4,22]],[[1334,1723],[1,6]],[[1357,1718],[-4,-1]],[[1353,1717],[-2,16]],[[1430,1727],[-3,-12]],[[1427,1715],[-1,24]],[[1316,1722],[2,-11]],[[1318,1711],[-5,-13]],[[1313,1698],[-3,23]],[[1273,1738],[0,-15]],[[1273,1723],[-6,6]],[[1267,1729],[0,11]],[[1267,1729],[0,-37]],[[1267,1692],[0,-3]],[[1267,1689],[-3,3]],[[1264,1692],[0,26]],[[1294,1715],[0,-12]],[[1294,1703],[-2,-1]],[[1292,1702],[-5,14]],[[1427,1715],[-3,20]],[[1334,1723],[-1,-9]],[[1333,1714],[-3,9]],[[1278,1711],[0,-8]],[[1278,1703],[-5,3]],[[1273,1706],[0,17]],[[1190,1718],[0,-33]],[[1190,1685],[-3,0]],[[1187,1685],[-3,-1]],[[1184,1684],[1,44]],[[1307,1719],[-2,-14]],[[1305,1705],[-6,3]],[[1299,1708],[-2,11]],[[1323,1724],[-4,-26]],[[1319,1698],[-1,13]],[[1372,1729],[-1,-18]],[[1371,1711],[-3,0]],[[1368,1711],[-2,1]],[[1353,1717],[0,-14]],[[1353,1703],[-2,0]],[[1351,1703],[0,-5]],[[1351,1698],[-2,18]],[[1406,1725],[-4,-35]],[[1402,1690],[-4,19]],[[1234,1706],[-7,-2]],[[1227,1704],[0,17]],[[1038,1727],[1,-41]],[[1039,1686],[-19,9]],[[1020,1695],[0,10]],[[1378,1731],[0,-23]],[[1378,1708],[-5,-4]],[[1373,1704],[-2,7]],[[1215,1701],[-2,-7]],[[1213,1694],[-5,25]],[[1347,1721],[-3,-8]],[[1344,1713],[-1,-9]],[[1343,1704],[-1,6]],[[1227,1704],[-3,-8]],[[1224,1696],[-2,0]],[[1222,1696],[-2,0]],[[1385,1729],[0,-32]],[[1385,1697],[-7,2]],[[1378,1699],[0,9]],[[1389,1729],[0,-34]],[[1389,1695],[-4,-3]],[[1385,1692],[0,5]],[[1146,1721],[0,-20]],[[1146,1701],[-7,0]],[[1139,1701],[-3,20]],[[1273,1706],[-2,-14]],[[1271,1692],[-4,0]],[[1424,1729],[0,-30]],[[1424,1699],[-1,-5]],[[1423,1694],[-8,20]],[[1393,1729],[-1,-35]],[[1392,1694],[-3,1]],[[1396,1713],[-3,-19]],[[1393,1694],[-1,0]],[[1184,1684],[-8,0]],[[1176,1684],[-1,32]],[[1435,1673],[-1,3]],[[1434,1676],[1,-3]],[[1257,1712],[0,-25]],[[1257,1687],[-3,1]],[[1254,1688],[-4,19]],[[1250,1707],[1,19]],[[1012,1703],[0,-19]],[[1012,1684],[0,-51]],[[1012,1633],[-13,1]],[[999,1634],[-2,8]],[[997,1642],[1,64],[-5,1]],[[1052,1682],[-3,-32]],[[1049,1650],[-5,38],[-5,-2]],[[1250,1707],[-2,-12]],[[1248,1695],[-4,3]],[[1244,1698],[-1,9]],[[1410,1721],[-2,-27]],[[1408,1694],[-5,-13]],[[1403,1681],[-1,9]],[[1333,1714],[-1,-17]],[[1332,1697],[-5,13]],[[1327,1710],[0,4]],[[1327,1710],[-2,-14]],[[1325,1696],[-5,-8]],[[1320,1688],[-1,9]],[[1319,1697],[0,1]],[[1338,1701],[-1,-14]],[[1337,1687],[-4,-7]],[[1333,1680],[-1,17]],[[1313,1698],[-1,-8]],[[1312,1690],[-2,-6]],[[1310,1684],[-5,1]],[[1305,1685],[0,2]],[[1305,1687],[0,18]],[[1132,1722],[0,-41]],[[1132,1681],[-8,0]],[[1124,1681],[0,41]],[[1139,1701],[0,-20]],[[1139,1681],[-7,0]],[[1124,1681],[-1,-16]],[[1123,1665],[-4,0]],[[1119,1665],[-1,24]],[[1118,1689],[0,33]],[[1118,1689],[-10,0]],[[1108,1689],[0,19]],[[1155,1693],[-3,-20]],[[1152,1673],[-6,0]],[[1146,1673],[0,28]],[[1166,1714],[-1,-25]],[[1165,1689],[-7,4]],[[1172,1722],[0,-49]],[[1172,1673],[-5,0]],[[1167,1673],[-2,16]],[[1176,1684],[0,-11]],[[1176,1673],[-4,0]],[[1351,1698],[-3,-8]],[[1348,1690],[-4,23]],[[1414,1707],[1,-17]],[[1415,1690],[-4,-13]],[[1411,1677],[-3,17]],[[1264,1692],[0,-3]],[[1264,1689],[-6,-2]],[[1258,1687],[-1,0]],[[1299,1708],[0,-17]],[[1299,1691],[-3,1]],[[1296,1692],[-2,11]],[[1213,1694],[0,-15]],[[1213,1679],[-5,1]],[[1208,1680],[-3,7]],[[1205,1687],[0,17]],[[1198,1717],[0,-36]],[[1198,1681],[-3,0]],[[1195,1681],[-5,4]],[[1360,1706],[0,-18]],[[1360,1688],[-1,-3]],[[1359,1685],[-6,18]],[[1205,1687],[-5,-6]],[[1200,1681],[-2,0]],[[1292,1702],[0,-23]],[[1292,1679],[-1,-7]],[[1291,1672],[-5,5]],[[1286,1677],[-1,3]],[[1285,1680],[1,24]],[[1348,1690],[-2,-11]],[[1346,1679],[-1,11]],[[1345,1690],[-2,14]],[[1305,1685],[0,0]],[[1305,1687],[-5,0]],[[1300,1687],[-1,4]],[[1402,1690],[-6,-28]],[[1396,1662],[-3,6]],[[1393,1668],[0,26]],[[1423,1694],[-1,-15]],[[1422,1679],[-4,3]],[[1418,1682],[-3,8]],[[1345,1690],[-7,-13]],[[1338,1677],[-1,10]],[[1373,1704],[-1,-21]],[[1372,1683],[-4,10]],[[1368,1693],[0,18]],[[1092,1712],[0,-41]],[[1092,1671],[-8,0]],[[1084,1671],[0,1]],[[1084,1672],[0,40]],[[1099,1695],[0,-24]],[[1099,1671],[-7,0]],[[1084,1672],[-7,0]],[[1077,1672],[0,40]],[[1069,1712],[0,-40]],[[1069,1672],[-12,-1]],[[1057,1671],[0,11]],[[1368,1693],[0,-32]],[[1368,1661],[-1,0]],[[1367,1661],[-2,-2]],[[1365,1659],[0,5]],[[1365,1664],[-2,22]],[[1363,1686],[1,25]],[[1077,1672],[0,-1]],[[1077,1671],[-8,0]],[[1069,1671],[0,1]],[[1285,1680],[-1,-1]],[[1284,1679],[-6,14]],[[1278,1693],[0,10]],[[1363,1686],[-3,2]],[[1315,1676],[-1,-3]],[[1314,1673],[-2,11]],[[1312,1684],[0,6]],[[1319,1697],[-4,-21]],[[1333,1680],[0,-2]],[[1333,1678],[-6,-12]],[[1327,1666],[-2,30]],[[1378,1699],[-1,-38]],[[1377,1661],[-1,-1]],[[1376,1660],[-4,23]],[[1108,1689],[0,-28]],[[1108,1661],[-9,-8]],[[1099,1653],[0,18]],[[997,1642],[-16,0],[0,-32],[-8,0]],[[1020,1695],[0,-78]],[[1020,1617],[-8,0]],[[1012,1617],[0,16]],[[1012,1684],[0,8]],[[1012,1692],[0,1]],[[1012,1693],[0,7]],[[1244,1698],[-5,-16],[1,-18]],[[1240,1664],[-2,-14]],[[1238,1650],[-1,4]],[[1237,1654],[-2,0]],[[1235,1654],[0,25]],[[1235,1679],[0,27]],[[1359,1685],[-2,-19]],[[1357,1666],[-2,1]],[[1355,1667],[-2,0]],[[1353,1667],[-2,36]],[[1254,1688],[-2,-10]],[[1252,1678],[-4,12]],[[1248,1690],[0,5]],[[1235,1679],[-11,0]],[[1224,1679],[0,17]],[[1432,1678],[-4,0]],[[1428,1678],[1,22]],[[1429,1700],[4,6],[-1,-28]],[[1278,1693],[-2,-18]],[[1276,1675],[-5,-5]],[[1271,1670],[0,22]],[[1428,1678],[-3,1]],[[1425,1679],[-3,0]],[[1424,1699],[5,1]],[[1296,1692],[-1,-17]],[[1295,1675],[-3,4]],[[1353,1667],[-5,-4]],[[1348,1663],[-2,16]],[[1248,1690],[-2,-22]],[[1246,1668],[-6,-4]],[[1146,1673],[0,-16]],[[1146,1657],[-7,0]],[[1139,1657],[0,24]],[[1222,1696],[-5,-33]],[[1217,1663],[-3,0]],[[1214,1663],[-1,16]],[[1385,1692],[-1,-31]],[[1384,1661],[-3,0]],[[1381,1661],[-4,0]],[[1320,1688],[0,-18]],[[1320,1670],[-5,2]],[[1315,1672],[-1,1]],[[1224,1679],[0,-24]],[[1224,1655],[0,-9]],[[1224,1646],[-4,8]],[[1220,1654],[-3,9]],[[1327,1666],[-4,-10]],[[1323,1656],[0,1]],[[1323,1657],[-3,13]],[[1393,1668],[0,-6]],[[1393,1662],[-6,0]],[[1387,1662],[-3,-1]],[[1049,1650],[-7,-23]],[[1042,1627],[-16,7],[0,-17]],[[1026,1617],[-6,0]],[[1411,1677],[-1,-3]],[[1410,1674],[-2,-7]],[[1408,1667],[-3,1]],[[1405,1668],[-2,13]],[[1376,1660],[-2,0]],[[1374,1660],[-6,1]],[[1158,1693],[1,-28]],[[1159,1665],[-4,-16]],[[1155,1649],[-3,24]],[[1167,1673],[1,-17]],[[1168,1656],[-4,-15]],[[1164,1641],[0,24],[-5,0]],[[1300,1687],[1,-24]],[[1301,1663],[-1,0]],[[1300,1663],[-4,-1]],[[1296,1662],[-1,13]],[[1284,1679],[-3,-27]],[[1281,1652],[-3,2]],[[1278,1654],[-2,1]],[[1276,1655],[0,20]],[[1267,1689],[0,-36]],[[1267,1653],[-1,-3]],[[1266,1650],[-3,3]],[[1263,1653],[1,36]],[[1271,1670],[0,-12]],[[1271,1658],[-4,-5]],[[1418,1682],[1,-17]],[[1419,1665],[-2,-13]],[[1417,1652],[-2,-7]],[[1415,1645],[-2,8]],[[1413,1653],[-3,21]],[[1365,1664],[-8,2]],[[1348,1663],[-1,-6]],[[1347,1657],[-7,-4]],[[1340,1653],[-2,24]],[[1312,1684],[-4,-32]],[[1308,1652],[-1,4]],[[1307,1656],[3,28]],[[1305,1685],[-2,-19]],[[1303,1666],[-2,-3]],[[1263,1653],[-1,-1]],[[1262,1652],[-4,16]],[[1258,1668],[0,19]],[[1252,1678],[0,-24]],[[1252,1654],[-2,-4]],[[1250,1650],[-4,1]],[[1246,1651],[0,17]],[[1405,1668],[-3,-28]],[[1402,1640],[-4,3]],[[1398,1643],[-2,19]],[[1119,1665],[0,-8]],[[1119,1657],[-11,0]],[[1108,1657],[0,4]],[[895,1614],[4,-52],[3,-13]],[[902,1549],[-4,-21]],[[898,1528],[-12,-4],[-31,-1],[-2,-15]],[[853,1508],[-2,7]],[[851,1515],[2,82]],[[853,1597],[1,91]],[[818,1687],[10,-83]],[[828,1604],[-9,20],[-7,-13]],[[812,1611],[0,16],[-10,60]],[[853,1597],[-17,-3]],[[836,1594],[-8,10]],[[1258,1668],[-3,-15]],[[1255,1653],[-3,1]],[[1208,1680],[-1,-33]],[[1207,1647],[-3,1]],[[1204,1648],[-5,9]],[[1199,1657],[1,24]],[[1340,1653],[-3,-12]],[[1337,1641],[-3,20]],[[1334,1661],[-1,17]],[[1187,1648],[-4,-15]],[[1183,1633],[-1,22]],[[1182,1655],[2,29]],[[1187,1685],[0,-37]],[[1307,1656],[-2,-10]],[[1305,1646],[-2,20]],[[1195,1681],[-2,-37]],[[1193,1644],[-6,4]],[[1182,1655],[-5,-5]],[[1177,1650],[-1,23]],[[1314,1673],[-4,-27]],[[1310,1646],[-1,-6]],[[1309,1640],[-1,12]],[[1057,1671],[0,-41]],[[1057,1630],[0,-21]],[[1057,1609],[-10,-32]],[[1047,1577],[-3,0]],[[1044,1577],[-2,16]],[[1042,1593],[0,34]],[[1419,1665],[6,-26]],[[1425,1639],[-4,-2]],[[1421,1637],[-4,15]],[[1425,1679],[2,-12]],[[1427,1667],[-1,-17],[-7,15]],[[1199,1657],[-1,-28]],[[1198,1629],[-5,14]],[[1193,1643],[0,1]],[[1132,1681],[0,-32]],[[1132,1649],[0,-4]],[[1132,1645],[-6,4]],[[1126,1649],[-3,16]],[[1139,1657],[0,-8]],[[1139,1649],[-7,0]],[[1214,1663],[-5,-16]],[[1209,1647],[-2,0]],[[1286,1677],[0,-30]],[[1286,1647],[-3,-9]],[[1283,1638],[-2,14]],[[1235,1654],[-3,1]],[[1232,1655],[-8,0]],[[1432,1678],[2,-2]],[[1435,1673],[-3,-28],[-5,22]],[[1296,1662],[0,-22]],[[1296,1640],[-5,4]],[[1291,1644],[0,8]],[[1291,1652],[0,20]],[[1291,1652],[-4,-6]],[[1287,1646],[-1,1]],[[1334,1661],[-2,-17]],[[1332,1644],[-5,-5]],[[1327,1639],[-4,17]],[[1323,1657],[-1,-16]],[[1322,1641],[-4,-8]],[[1318,1633],[-3,7]],[[1315,1640],[0,30]],[[1315,1670],[0,1]],[[1315,1671],[0,1]],[[1276,1655],[-3,-4]],[[1273,1651],[-2,7]],[[1413,1653],[-4,-5]],[[1409,1648],[-1,19]],[[1238,1650],[0,-1]],[[1238,1649],[-1,5]],[[1246,1651],[-2,-3]],[[1244,1648],[-6,2]],[[1315,1640],[-2,-4]],[[1313,1636],[-3,10]],[[1177,1650],[0,-1]],[[1177,1649],[-5,-5]],[[1172,1644],[-4,12]],[[1155,1649],[0,-9]],[[1155,1640],[-6,0]],[[1149,1640],[-3,11]],[[1146,1651],[0,6]],[[1393,1662],[-3,-20]],[[1390,1642],[-3,20]],[[1069,1671],[0,-41]],[[1069,1630],[-12,0]],[[1084,1671],[0,-41]],[[1084,1630],[-7,0]],[[1077,1630],[0,41]],[[1092,1671],[0,-41]],[[1092,1630],[-8,0]],[[1099,1653],[0,-23]],[[1099,1630],[-7,0]],[[1077,1630],[-8,0]],[[1355,1667],[-1,-37]],[[1354,1630],[-2,1]],[[1352,1631],[-1,0]],[[1351,1631],[-4,19]],[[1347,1650],[0,7]],[[1409,1648],[-1,-18]],[[1408,1630],[-4,1]],[[1404,1631],[-2,9]],[[1262,1652],[0,-3]],[[1262,1649],[-6,-13]],[[1256,1636],[-1,17]],[[1398,1643],[-1,-7]],[[1397,1636],[-6,-5]],[[1391,1631],[-1,11]],[[1357,1666],[1,-13]],[[1358,1653],[2,-24]],[[1360,1629],[-1,0]],[[1359,1629],[-5,1]],[[1365,1659],[0,-8]],[[1365,1651],[-7,2]],[[1305,1646],[-2,-19]],[[1303,1627],[-2,16]],[[1301,1643],[-1,20]],[[1164,1641],[-1,1]],[[1163,1642],[-8,-14]],[[1155,1628],[0,12]],[[1126,1649],[0,-49]],[[1126,1600],[-7,0]],[[1119,1600],[0,22]],[[1119,1622],[0,35]],[[1220,1654],[-2,-32]],[[1218,1622],[-4,-6]],[[1214,1616],[-5,4]],[[1209,1620],[0,27]],[[1301,1643],[-5,-9]],[[1296,1634],[0,6]],[[938,1564],[-2,-30],[3,-14]],[[939,1520],[-9,5],[-2,-16],[-14,11]],[[914,1520],[0,30]],[[914,1550],[0,113]],[[1337,1641],[-1,-25]],[[1336,1616],[-1,-3]],[[1335,1613],[-3,31]],[[1367,1661],[3,-28]],[[1370,1633],[-4,-20]],[[1366,1613],[0,7]],[[1366,1620],[-2,7]],[[1364,1627],[1,24]],[[1391,1631],[0,-1]],[[1391,1630],[-5,-13]],[[1386,1617],[-2,12]],[[1384,1629],[-3,32]],[[1384,1629],[-7,-2]],[[1377,1627],[-1,33]],[[1374,1660],[-3,-29]],[[1371,1631],[-1,2]],[[1108,1657],[0,-33]],[[1108,1624],[-7,-8]],[[1101,1616],[-2,0]],[[1099,1616],[0,14]],[[1377,1627],[-3,5]],[[1374,1632],[-3,-1]],[[1347,1650],[-2,-19]],[[1345,1631],[-3,-4]],[[1342,1627],[-2,26]],[[1273,1651],[-1,-37]],[[1272,1614],[-5,0]],[[1267,1614],[-1,36]],[[1149,1640],[-1,-35]],[[1148,1605],[-4,-1]],[[1144,1604],[2,47]],[[1327,1639],[0,-2]],[[1327,1637],[-5,4]],[[1119,1622],[-11,2]],[[1144,1604],[-2,6]],[[1142,1610],[-3,-3]],[[1139,1607],[0,42]],[[1204,1648],[-1,-24]],[[1203,1624],[-7,-3]],[[1196,1621],[2,8]],[[1278,1654],[-1,-41]],[[1277,1613],[-5,1]],[[1172,1644],[-2,-25]],[[1170,1619],[-6,0]],[[1164,1619],[-1,23]],[[1309,1640],[0,-28]],[[1309,1612],[-4,0]],[[1305,1612],[-2,0]],[[1303,1612],[-1,0]],[[1302,1612],[1,15]],[[1283,1638],[0,-25]],[[1283,1613],[-5,0]],[[1278,1613],[-1,0]],[[1183,1633],[-2,-10]],[[1181,1623],[-4,-16]],[[1177,1607],[0,42]],[[1232,1655],[0,-28]],[[1232,1627],[-8,0]],[[1224,1627],[0,19]],[[1224,1627],[-1,-13]],[[1223,1614],[-3,-9]],[[1220,1605],[-2,17]],[[1238,1649],[-4,-36]],[[1234,1613],[1,-13]],[[1235,1600],[-2,-2]],[[1233,1598],[0,6]],[[1233,1604],[-1,23]],[[1256,1636],[0,-23]],[[1256,1613],[-1,0]],[[1255,1613],[-3,0]],[[1252,1613],[-2,0]],[[1250,1613],[0,37]],[[1415,1645],[-2,-10]],[[1413,1635],[-3,-21]],[[1410,1614],[-2,16]],[[1193,1643],[-6,-28]],[[1187,1615],[-6,8]],[[1342,1627],[-2,-7]],[[1340,1620],[-2,-1]],[[1338,1619],[-2,-3]],[[1267,1614],[-3,-1]],[[1264,1613],[-2,0]],[[1262,1613],[-1,0]],[[1261,1613],[1,36]],[[1364,1627],[-4,2]],[[1424,1604],[-5,-9]],[[1419,1595],[-1,25]],[[1418,1620],[6,-16]],[[1421,1637],[-1,-11]],[[1420,1626],[1,-4]],[[1420,1626],[-2,-6]],[[1418,1620],[-5,15]],[[1291,1644],[-1,-19]],[[1290,1625],[-3,21]],[[1244,1648],[0,-35]],[[1244,1613],[-1,0]],[[1243,1613],[-9,0]],[[1351,1631],[-4,1]],[[1347,1632],[-2,-1]],[[1250,1613],[-2,0]],[[1248,1613],[-4,0]],[[1261,1613],[-5,0]],[[1177,1607],[0,-19]],[[1177,1588],[0,-20]],[[1177,1568],[-7,-1]],[[1170,1567],[-2,17]],[[1168,1584],[2,35]],[[1132,1645],[0,-45]],[[1132,1600],[0,-16]],[[1132,1584],[-6,0]],[[1126,1584],[0,16]],[[1139,1607],[-7,38]],[[1290,1625],[0,-12]],[[1290,1613],[-6,0]],[[1284,1613],[-1,0]],[[1209,1620],[0,-5]],[[1209,1615],[-6,-6]],[[1203,1609],[0,15]],[[1296,1634],[0,-22]],[[1296,1612],[-6,1]],[[1313,1636],[-1,-24]],[[1312,1612],[-1,0]],[[1311,1612],[-2,0]],[[999,1634],[2,-25]],[[1001,1609],[-2,-35]],[[999,1574],[-7,0]],[[992,1574],[-19,0]],[[1142,1610],[0,-10]],[[1142,1600],[-10,0]],[[1335,1613],[-5,0]],[[1330,1613],[-4,15]],[[1326,1628],[1,9]],[[1425,1639],[-4,-17]],[[1302,1612],[-2,0]],[[1300,1612],[-4,0]],[[1404,1631],[0,-43]],[[1404,1588],[-2,-16]],[[1402,1572],[-3,28]],[[1399,1600],[-2,36]],[[1196,1621],[-3,-29]],[[1193,1592],[-2,-2]],[[1191,1590],[-4,0]],[[1187,1590],[0,25]],[[1164,1619],[-2,-35]],[[1162,1584],[-2,-8]],[[1160,1576],[-6,8]],[[1154,1584],[0,8]],[[1154,1592],[1,36]],[[1326,1628],[-4,-16]],[[1322,1612],[-1,0]],[[1321,1612],[-3,0]],[[1318,1612],[0,21]],[[1154,1592],[-5,0]],[[1149,1592],[-1,13]],[[1318,1612],[-4,0]],[[1314,1612],[-2,0]],[[1399,1600],[-6,-2]],[[1393,1598],[-1,11]],[[1392,1609],[-1,21]],[[1419,1595],[-1,-2]],[[1418,1593],[-7,18]],[[1411,1611],[-1,3]],[[1012,1617],[-2,-16]],[[1010,1601],[-9,8]],[[1042,1593],[-11,-16],[0,-24]],[[1031,1553],[-6,0]],[[1025,1553],[1,64]],[[1347,1632],[1,-39]],[[1348,1593],[-2,-28]],[[1346,1565],[-3,32]],[[1343,1597],[-3,23]],[[1377,1627],[2,-32]],[[1379,1595],[-5,1]],[[1374,1596],[0,36]],[[1392,1609],[-5,-11]],[[1387,1598],[-1,19]],[[1374,1596],[-4,0]],[[1370,1596],[-4,17]],[[1354,1605],[-2,-29]],[[1352,1576],[-4,17]],[[1352,1631],[2,-26]],[[1411,1611],[-1,-24]],[[1410,1587],[-6,1]],[[1069,1630],[0,-40]],[[1069,1590],[-5,0]],[[1064,1590],[-7,0]],[[1057,1590],[0,19]],[[1358,1598],[-4,7]],[[1359,1629],[-1,-31]],[[1092,1630],[0,-40]],[[1092,1590],[-6,0]],[[1086,1590],[-2,0]],[[1084,1590],[0,40]],[[1099,1616],[0,-26]],[[1099,1590],[-5,0]],[[1094,1590],[-2,0]],[[1077,1630],[0,-40]],[[1077,1590],[-5,0]],[[1072,1590],[-3,0]],[[1386,1617],[-3,-22]],[[1383,1595],[-4,0]],[[1084,1590],[-5,0]],[[1079,1590],[-2,0]],[[1366,1620],[0,-23]],[[1366,1597],[-8,0]],[[1358,1597],[0,1]],[[1330,1613],[-1,0]],[[1329,1613],[-6,-1]],[[1323,1612],[-1,0]],[[1233,1604],[-10,-3]],[[1223,1601],[0,13]],[[1119,1600],[-3,-24]],[[1116,1576],[-4,4]],[[1112,1580],[-2,17]],[[1110,1597],[-2,27]],[[1418,1592],[0,1]],[[1424,1604],[6,6],[-3,-22],[-9,4]],[[1110,1597],[-6,-9]],[[1104,1588],[-3,28]],[[828,1604],[0,-49]],[[828,1555],[-14,7],[-2,49]],[[1203,1609],[-2,-9]],[[1201,1600],[-5,-8]],[[1196,1592],[-3,0]],[[1187,1590],[-3,-8]],[[1184,1582],[-7,6]],[[1220,1605],[0,-32]],[[1220,1573],[-5,-8]],[[1215,1565],[-1,51]],[[1343,1597],[-4,-19]],[[1339,1578],[-1,41]],[[1215,1565],[-5,1]],[[1210,1566],[-1,49]],[[1370,1596],[2,-18]],[[1372,1578],[-6,-15]],[[1366,1563],[0,8]],[[1366,1571],[0,26]],[[1168,1584],[-6,0]],[[1339,1578],[-3,-13]],[[1336,1565],[0,1]],[[1336,1566],[-1,4]],[[1335,1570],[-3,14]],[[1332,1584],[-1,3]],[[1331,1587],[4,26]],[[1025,1553],[-8,-9]],[[1017,1544],[-7,0],[0,17]],[[1010,1561],[0,40]],[[1387,1598],[-1,-19]],[[1386,1579],[-3,16]],[[1104,1588],[-2,-21]],[[1102,1567],[-3,5]],[[1099,1572],[0,18]],[[1210,1566],[-2,0]],[[1208,1566],[-1,0]],[[1207,1566],[-6,34]],[[1277,1591],[-2,4]],[[1275,1595],[-5,-7],[-5,15]],[[1265,1603],[-1,10]],[[1278,1613],[-1,-22]],[[1223,1601],[1,-21]],[[1224,1580],[0,-28]],[[1224,1552],[-4,21]],[[1331,1587],[-4,10]],[[1327,1597],[2,16]],[[1284,1613],[0,-41]],[[1284,1572],[-5,12]],[[1279,1584],[-2,7]],[[1262,1591],[-5,0]],[[1257,1591],[-2,22]],[[1262,1613],[0,-22]],[[1265,1574],[-1,-11]],[[1264,1563],[-2,0]],[[1262,1563],[0,28]],[[1265,1603],[0,-29]],[[1257,1591],[-1,-15]],[[1256,1576],[-5,0]],[[1251,1576],[1,37]],[[1243,1592],[-7,-4]],[[1236,1588],[-1,12]],[[1243,1613],[0,-21]],[[1251,1576],[-2,-1]],[[1249,1575],[-1,38]],[[1249,1575],[0,-9]],[[1249,1566],[-6,6]],[[1243,1572],[0,20]],[[1327,1597],[0,-2]],[[1327,1595],[-2,-1]],[[1325,1594],[-2,18]],[[1290,1613],[0,-37]],[[1290,1576],[-3,-5]],[[1287,1571],[-3,1]],[[1300,1600],[-6,-35]],[[1294,1565],[-4,11]],[[1300,1612],[0,-12]],[[1314,1600],[-1,-25]],[[1313,1575],[-3,4]],[[1310,1579],[1,33]],[[1314,1612],[0,-12]],[[1321,1612],[-1,-31]],[[1320,1581],[0,-5]],[[1320,1576],[0,2]],[[1320,1578],[-6,22]],[[1310,1579],[-2,-1]],[[1308,1578],[-2,14]],[[1306,1592],[3,20]],[[1306,1592],[-1,20]],[[1325,1594],[-1,-6]],[[1324,1588],[-4,-7]],[[1418,1592],[-5,-31]],[[1413,1561],[-3,26]],[[1303,1612],[-2,-34]],[[1301,1578],[-1,22]],[[1308,1578],[-1,-3]],[[1307,1575],[-6,0]],[[1301,1575],[0,3]],[[1149,1592],[-1,-25]],[[1148,1567],[-4,0]],[[1144,1567],[-2,13]],[[1142,1580],[0,20]],[[1010,1561],[-11,13]],[[1393,1598],[1,-33]],[[1394,1565],[-3,-17]],[[1391,1548],[-5,30]],[[1386,1578],[0,1]],[[1057,1590],[0,-41]],[[1057,1549],[0,-1]],[[1057,1548],[-10,0],[0,29]],[[1358,1597],[0,-23]],[[1358,1574],[0,-8]],[[1358,1566],[-3,4]],[[1355,1570],[-3,6]],[[1233,1598],[-2,-18]],[[1231,1580],[-7,0]],[[1275,1595],[-2,-22]],[[1273,1573],[-8,1]],[[835,1524],[-7,31]],[[836,1594],[4,-48],[-5,-22]],[[1236,1588],[0,-16]],[[1236,1572],[0,-4]],[[1236,1568],[-3,-8]],[[1233,1560],[-2,9]],[[1231,1569],[0,11]],[[1301,1575],[0,-6]],[[1301,1569],[-4,-30]],[[1297,1539],[-4,0]],[[1293,1539],[1,26]],[[1402,1572],[0,-15]],[[1402,1557],[-8,8]],[[1112,1580],[-2,-28]],[[1110,1552],[-3,5]],[[1107,1557],[-5,10]],[[1207,1566],[-5,-7]],[[1202,1559],[-2,8]],[[1200,1567],[-4,25]],[[1126,1584],[-1,-17]],[[1125,1567],[-7,-9]],[[1118,1558],[-2,18]],[[1142,1580],[-6,-13]],[[1136,1567],[-3,0]],[[1133,1567],[-1,17]],[[1320,1578],[-2,-5]],[[1318,1573],[-5,-2]],[[1313,1571],[0,4]],[[1332,1584],[-2,-19]],[[1330,1565],[-2,-5]],[[1328,1560],[-1,7]],[[1327,1567],[0,28]],[[851,1515],[-4,-18]],[[847,1497],[-4,-1],[-2,28],[-6,0]],[[1366,1571],[-8,3]],[[1346,1565],[-6,-25]],[[1340,1540],[-1,7]],[[1339,1547],[-3,18]],[[1381,1570],[-7,-16]],[[1374,1554],[-2,24]],[[1379,1595],[2,-25]],[[1386,1578],[-3,-30]],[[1383,1548],[0,1]],[[1383,1549],[-2,21]],[[1279,1584],[0,-35]],[[1279,1549],[0,-1]],[[1279,1548],[-6,1]],[[1273,1549],[0,24]],[[1327,1567],[-2,0]],[[1325,1567],[-1,21]],[[1355,1570],[-4,-31]],[[1351,1539],[-4,19]],[[1347,1558],[-1,7]],[[1044,1577],[0,-49]],[[1044,1528],[-3,-8],[-10,8]],[[1031,1528],[0,25]],[[1243,1572],[-7,0]],[[1200,1567],[-9,-10]],[[1191,1557],[0,33]],[[1154,1584],[-5,-25]],[[1149,1559],[-1,8]],[[1262,1563],[-3,1]],[[1259,1564],[-3,4]],[[1256,1568],[0,8]],[[1079,1590],[0,-41]],[[1079,1549],[-1,0]],[[1078,1549],[-6,0]],[[1072,1549],[0,41]],[[1086,1590],[0,-41]],[[1086,1549],[-1,0]],[[1085,1549],[-6,0]],[[1072,1549],[-2,0]],[[1070,1549],[-6,0]],[[1064,1549],[0,41]],[[1094,1590],[0,-41]],[[1094,1549],[-2,1]],[[1092,1550],[-6,-1]],[[1099,1572],[0,-23]],[[1099,1549],[-5,0]],[[1191,1557],[0,-5]],[[1191,1552],[-1,0]],[[1190,1552],[-6,1]],[[1184,1553],[0,29]],[[1064,1549],[-1,0]],[[1063,1549],[-6,0]],[[1325,1567],[-2,-8]],[[1323,1559],[-3,17]],[[1410,1547],[0,1]],[[1410,1547],[0,0]],[[1413,1561],[-3,-13]],[[1410,1548],[-4,3]],[[1406,1551],[-2,3]],[[1404,1554],[-2,3]],[[1184,1553],[-4,-15]],[[1180,1538],[-4,0]],[[1176,1538],[1,30]],[[1287,1571],[-1,-22]],[[1286,1549],[-7,0]],[[1335,1570],[-4,-7]],[[1331,1563],[-1,2]],[[1133,1567],[0,-20]],[[1133,1547],[-8,0]],[[1125,1547],[0,20]],[[1160,1576],[-2,-41]],[[1158,1535],[-3,0]],[[1155,1535],[-6,0]],[[1149,1535],[0,24]],[[1170,1567],[-3,-32]],[[1167,1535],[-9,0]],[[1231,1569],[-6,-38]],[[1225,1531],[-2,0]],[[1223,1531],[1,21]],[[1144,1567],[-2,-16]],[[1142,1551],[-6,16]],[[1118,1558],[1,-23]],[[1119,1535],[-5,5]],[[1114,1540],[-4,12]],[[1313,1571],[0,-12]],[[1313,1559],[-5,-2]],[[1308,1557],[-1,18]],[[1391,1548],[-1,-4]],[[1390,1544],[-6,-2]],[[1384,1542],[-1,6]],[[1323,1559],[0,-8]],[[1323,1551],[-4,0]],[[1319,1551],[0,5]],[[1319,1556],[-1,17]],[[1374,1554],[-3,-18]],[[1371,1536],[-1,-6]],[[1370,1530],[-3,15]],[[1367,1545],[-1,18]],[[1057,1548],[0,-44]],[[1057,1504],[0,-24]],[[1057,1480],[-7,0]],[[1050,1480],[-6,48]],[[1256,1568],[-1,-14]],[[1255,1554],[-6,2]],[[1249,1556],[0,10]],[[1293,1539],[-3,-10]],[[1290,1529],[-2,15]],[[1288,1544],[-2,5]],[[1307,1575],[-5,-28]],[[1302,1547],[-1,22]],[[1308,1557],[0,-28]],[[1308,1529],[-5,-1]],[[1303,1528],[-1,19]],[[1017,1544],[0,-40],[-6,-32]],[[1011,1472],[-19,0]],[[992,1472],[0,102]],[[992,1472],[-4,0],[0,-26]],[[988,1446],[-15,1]],[[973,1447],[0,53]],[[1273,1549],[-1,0]],[[1272,1549],[-8,1]],[[1264,1550],[0,13]],[[1107,1557],[0,-29]],[[1107,1528],[-8,13]],[[1099,1541],[0,8]],[[1367,1545],[-7,-2]],[[1360,1543],[-2,23]],[[1223,1531],[-4,-9]],[[1219,1522],[0,6]],[[1219,1528],[-4,37]],[[1319,1556],[-6,3]],[[1249,1556],[0,-21]],[[1249,1535],[-3,0]],[[1246,1535],[-3,3]],[[1243,1538],[0,34]],[[1243,1538],[-3,-2]],[[1240,1536],[-3,-1]],[[1237,1535],[-1,33]],[[1336,1566],[-1,-20]],[[1335,1546],[-4,-5]],[[1331,1541],[0,22]],[[1383,1549],[-6,-21]],[[1377,1528],[-3,26]],[[1360,1543],[-1,-4]],[[1359,1539],[-1,-12]],[[1358,1527],[-6,6]],[[1352,1533],[-1,6]],[[1303,1528],[0,-11]],[[1303,1517],[-2,-2]],[[1301,1515],[-3,2]],[[1298,1517],[-1,22]],[[1232,1527],[0,-8]],[[1232,1519],[-2,0]],[[1230,1519],[-5,12]],[[1233,1560],[-1,-33]],[[1237,1535],[-5,-8]],[[1328,1560],[0,-12]],[[1328,1548],[-3,-16]],[[1325,1532],[-3,4]],[[1322,1536],[1,15]],[[1259,1564],[0,-35]],[[1259,1529],[-2,-2]],[[1257,1527],[-2,0]],[[1255,1527],[0,27]],[[1142,1551],[0,-15]],[[1142,1536],[0,-9]],[[1142,1527],[-9,0]],[[1133,1527],[0,20]],[[1149,1535],[-2,-4]],[[1147,1531],[-5,5]],[[1125,1547],[0,-13]],[[1125,1534],[-4,-6]],[[1121,1528],[-2,7]],[[1176,1538],[0,-23]],[[1176,1515],[0,-28]],[[1176,1487],[-3,6]],[[1173,1493],[-6,21]],[[1167,1514],[0,21]],[[1202,1559],[-1,-25]],[[1201,1534],[-2,1]],[[1199,1535],[-8,17]],[[960,1481],[-6,-36]],[[954,1445],[-5,-19],[-4,45]],[[945,1471],[-6,49]],[[1339,1547],[-4,-6]],[[1335,1541],[0,5]],[[1208,1566],[0,-40]],[[1208,1526],[-2,0]],[[1206,1526],[-5,8]],[[1219,1528],[-7,-2]],[[1212,1526],[-4,0]],[[1331,1541],[0,-2]],[[1331,1539],[-3,9]],[[1404,1554],[-7,-39]],[[1397,1515],[-6,33]],[[1347,1558],[-1,-32]],[[1346,1526],[-4,-4]],[[1342,1522],[-2,18]],[[1264,1550],[0,-22]],[[1264,1528],[-5,1]],[[1114,1540],[0,-35]],[[1114,1505],[-7,0]],[[1107,1505],[0,23]],[[1313,1528],[-1,0]],[[1312,1528],[-2,0]],[[1310,1528],[-2,1]],[[1313,1559],[0,-31]],[[1319,1551],[0,-13]],[[1319,1538],[-2,-11]],[[1317,1527],[-4,1]],[[1352,1533],[-2,-16]],[[1350,1517],[0,-1]],[[1350,1516],[-4,10]],[[1407,1514],[0,0]],[[1410,1547],[-3,-9]],[[1407,1538],[-1,13]],[[1255,1527],[-4,0]],[[1251,1527],[-2,8]],[[1377,1528],[1,-3]],[[1378,1525],[-7,11]],[[1398,1507],[0,1]],[[1398,1507],[0,0]],[[1407,1538],[0,-20],[-9,-10]],[[1398,1508],[0,1]],[[1398,1509],[-1,6]],[[1184,1553],[1,-32]],[[1185,1521],[-1,-24]],[[1184,1497],[-4,41]],[[1190,1552],[2,-36]],[[1192,1516],[-1,0]],[[1191,1516],[-6,5]],[[1031,1528],[0,-88],[-6,-1]],[[1025,1439],[0,17],[-14,8]],[[1011,1464],[0,8]],[[1199,1535],[-1,-32]],[[1198,1503],[-3,-4]],[[1195,1499],[-3,17]],[[1322,1536],[-1,-11]],[[1321,1525],[-2,13]],[[1272,1549],[0,-29]],[[1272,1520],[0,-8]],[[1272,1512],[-5,1]],[[1267,1513],[-3,13]],[[1264,1526],[0,2]],[[914,1520],[0,-58]],[[914,1462],[-14,8],[0,-40],[-3,0]],[[897,1430],[-3,5],[2,33]],[[896,1468],[2,60]],[[902,1549],[12,1]],[[1092,1550],[0,-45]],[[1092,1505],[-7,0]],[[1085,1505],[0,44]],[[1099,1541],[0,-36]],[[1099,1505],[-7,0]],[[1288,1544],[-7,-37]],[[1281,1507],[-3,13]],[[1278,1520],[1,28]],[[1085,1505],[-7,-1]],[[1078,1504],[0,45]],[[1078,1504],[-8,0]],[[1070,1504],[0,45]],[[1070,1504],[-7,0]],[[1063,1504],[0,45]],[[1384,1542],[4,-40]],[[1388,1502],[-8,8]],[[1380,1510],[-1,5]],[[1379,1515],[-1,10]],[[1063,1504],[-6,0]],[[1278,1520],[-6,0]],[[1398,1509],[0,0]],[[1398,1509],[0,-2]],[[1398,1507],[-6,-27]],[[1392,1480],[-3,13]],[[1389,1493],[-2,24],[3,27]],[[1389,1493],[-1,7]],[[1388,1500],[0,2]],[[1331,1539],[0,-15]],[[1331,1524],[-2,-7]],[[1329,1517],[-4,15]],[[1133,1527],[0,-16]],[[1133,1511],[-5,-1]],[[1128,1510],[-3,24]],[[1342,1522],[0,-6]],[[1342,1516],[-1,3]],[[1341,1519],[-2,-1]],[[1339,1518],[-2,6]],[[1337,1524],[-2,17]],[[1337,1524],[-4,-4]],[[1333,1520],[-2,4]],[[1370,1530],[0,-34]],[[1370,1496],[-6,13]],[[1364,1509],[-5,30]],[[1290,1529],[0,-14]],[[1290,1515],[-3,-17]],[[1287,1498],[-6,5]],[[1281,1503],[0,4]],[[1107,1505],[0,-10]],[[1107,1495],[-8,10]],[[1121,1528],[0,-23]],[[1121,1505],[-7,0]],[[1298,1517],[-4,-11]],[[1294,1506],[-4,9]],[[1364,1509],[0,-16]],[[1364,1493],[-2,-5]],[[1362,1488],[-6,21]],[[1356,1509],[2,18]],[[1246,1535],[0,-27]],[[1246,1508],[-6,3]],[[1240,1511],[0,25]],[[1184,1497],[-8,18]],[[1356,1509],[-1,-6]],[[1355,1503],[-5,14]],[[1321,1525],[-2,-9]],[[1319,1516],[-1,-29]],[[1318,1487],[-2,-9]],[[1316,1478],[-2,-4]],[[1314,1474],[-3,1]],[[1311,1475],[0,6]],[[1311,1481],[3,15]],[[1314,1496],[3,31]],[[1147,1531],[0,-21]],[[1147,1510],[-5,6]],[[1142,1516],[0,11]],[[1219,1522],[-2,-22]],[[1217,1500],[-6,1]],[[1211,1501],[1,25]],[[1379,1515],[-8,-28]],[[1371,1487],[-1,9]],[[1325,1532],[0,-18]],[[1325,1514],[-2,-14]],[[1323,1500],[-1,-3]],[[1322,1497],[-3,19]],[[1240,1511],[-3,-17]],[[1237,1494],[-5,9]],[[1232,1503],[0,16]],[[1251,1527],[-1,-31]],[[1250,1496],[-4,-2]],[[1246,1494],[0,14]],[[1155,1535],[3,-27]],[[1158,1508],[-1,-3]],[[1157,1505],[-7,-10]],[[1150,1495],[-3,15]],[[1167,1514],[-2,-5]],[[1165,1509],[-7,-1]],[[1206,1526],[0,-25]],[[1206,1501],[-3,1]],[[1203,1502],[-5,1]],[[1128,1510],[0,-39]],[[1128,1471],[-7,0]],[[1121,1471],[0,34]],[[1329,1517],[-2,-5]],[[1327,1512],[-2,2]],[[1230,1519],[-2,-43]],[[1228,1476],[-6,0]],[[1222,1476],[0,3]],[[1222,1479],[3,52]],[[1222,1479],[-3,1]],[[1219,1480],[-2,20]],[[1310,1528],[-2,-17]],[[1308,1511],[-5,0]],[[1303,1511],[0,6]],[[1264,1526],[-1,-30]],[[1263,1496],[-4,-8]],[[1259,1488],[-2,15]],[[1257,1503],[0,24]],[[1050,1480],[-3,-16],[-1,-40]],[[1046,1424],[-14,0],[0,-42]],[[1032,1382],[-7,0],[0,57]],[[1314,1496],[-2,6]],[[1312,1502],[0,26]],[[896,1468],[-21,-1]],[[875,1467],[-16,0],[-4,7]],[[855,1474],[-2,34]],[[1312,1502],[-2,-2]],[[1310,1500],[-2,3]],[[1308,1503],[0,8]],[[1350,1516],[-1,-33]],[[1349,1483],[-2,9]],[[1347,1492],[-5,24]],[[1257,1503],[-5,-7]],[[1252,1496],[-2,0]],[[1142,1516],[-2,-22],[-6,18]],[[1134,1512],[-1,-1]],[[1211,1501],[0,-8]],[[1211,1493],[-5,0]],[[1206,1493],[0,8]],[[1267,1513],[0,-37]],[[1267,1476],[-4,1]],[[1263,1477],[0,19]],[[1339,1518],[-2,-23]],[[1337,1495],[-1,-3]],[[1336,1492],[-4,6]],[[1332,1498],[0,8]],[[1332,1506],[1,14]],[[945,1471],[-7,0],[0,-25],[-9,8],[0,-73]],[[929,1381],[-15,0]],[[914,1381],[0,81]],[[1332,1506],[-3,11]],[[1191,1516],[-1,-45]],[[1190,1471],[-3,1]],[[1187,1472],[-2,12]],[[1185,1484],[-1,13]],[[1281,1503],[-4,-28]],[[1277,1475],[-2,8]],[[1275,1483],[-3,29]],[[1341,1519],[3,-32]],[[1344,1487],[-3,-3]],[[1341,1484],[0,-1]],[[1341,1483],[-4,12]],[[1134,1512],[0,-44]],[[1134,1468],[-6,0]],[[1128,1468],[0,3]],[[1294,1506],[-2,-16]],[[1292,1490],[-3,-26]],[[1289,1464],[-2,14]],[[1287,1478],[0,20]],[[1232,1503],[0,-45]],[[1232,1458],[-3,-6]],[[1229,1452],[-1,24]],[[1347,1492],[-3,-4]],[[1344,1488],[0,-1]],[[1355,1503],[-5,-26]],[[1350,1477],[0,1]],[[1350,1478],[-1,5]],[[1322,1497],[-2,-10]],[[1320,1487],[-2,0]],[[1297,1479],[-5,11]],[[1301,1515],[-4,-36]],[[1332,1498],[-1,-6]],[[1331,1492],[-2,11]],[[1329,1503],[-2,9]],[[1303,1511],[1,-23]],[[1304,1488],[0,-16]],[[1304,1472],[-5,1]],[[1299,1473],[-2,1]],[[1297,1474],[0,5]],[[1173,1493],[0,-35]],[[1173,1458],[-1,3]],[[1172,1461],[-5,2]],[[1167,1463],[-2,-1]],[[1165,1462],[0,1]],[[1165,1463],[0,46]],[[1195,1499],[0,-30]],[[1195,1469],[-3,-1]],[[1192,1468],[-2,3]],[[1150,1495],[0,-31]],[[1150,1464],[-6,1]],[[1144,1465],[-2,1]],[[1142,1466],[0,50]],[[1142,1466],[-6,1]],[[1136,1467],[-2,1]],[[1185,1484],[-3,-5]],[[1182,1479],[-6,8]],[[1380,1510],[-3,-37]],[[1377,1473],[-2,-5]],[[1375,1468],[-4,11]],[[1371,1479],[0,8]],[[855,1474],[-1,-11]],[[854,1463],[-7,34]],[[1165,1463],[-8,7]],[[1157,1470],[0,35]],[[1329,1503],[-2,-20]],[[1327,1483],[-3,13]],[[1324,1496],[-1,4]],[[1275,1483],[-6,-7]],[[1269,1476],[-2,0]],[[1308,1503],[-4,-15]],[[1246,1494],[0,-4]],[[1246,1490],[-4,0]],[[1242,1490],[-5,0]],[[1237,1490],[0,4]],[[1388,1500],[-5,-44]],[[1383,1456],[-6,17]],[[1157,1470],[0,-5]],[[1157,1465],[-6,-5]],[[1151,1460],[-1,4]],[[1371,1479],[-7,14]],[[1362,1488],[-3,-15]],[[1359,1473],[-5,-27]],[[1354,1446],[-2,4]],[[1352,1450],[-2,27]],[[1287,1478],[-7,-28]],[[1280,1450],[-3,25]],[[1099,1505],[1,-41]],[[1100,1464],[-8,0]],[[1092,1464],[0,41]],[[1107,1495],[0,-31]],[[1107,1464],[-7,0]],[[1121,1471],[0,-7]],[[1121,1464],[-7,0]],[[1114,1464],[0,41]],[[1092,1464],[-7,0]],[[1085,1464],[0,41]],[[1085,1464],[-7,0]],[[1078,1464],[0,40]],[[1114,1464],[-7,0]],[[1078,1464],[-8,-1]],[[1070,1463],[0,41]],[[1063,1504],[0,-41]],[[1063,1463],[-6,0]],[[1057,1463],[0,17]],[[1070,1463],[-7,0]],[[1203,1502],[-3,-27],[3,-14]],[[1203,1461],[-6,1]],[[1197,1462],[-2,7]],[[1331,1492],[1,-20]],[[1332,1472],[-3,-4]],[[1329,1468],[-2,8]],[[1327,1476],[0,7]],[[1311,1475],[-3,-8]],[[1308,1467],[-4,0]],[[1304,1467],[0,5]],[[1310,1500],[1,-19]],[[1237,1490],[-1,-32]],[[1236,1458],[-2,-3]],[[1234,1455],[-2,3]],[[1259,1488],[-2,-14]],[[1257,1474],[-5,5]],[[1252,1479],[0,17]],[[1206,1493],[0,-38]],[[1206,1455],[-3,6]],[[1219,1480],[-1,-17]],[[1218,1463],[-7,1]],[[1211,1464],[0,29]],[[1322,1476],[-2,11]],[[1324,1496],[-2,-20]],[[1388,1439],[0,2]],[[1388,1439],[0,0]],[[1392,1480],[-3,-37],[-3,1]],[[1386,1444],[0,3]],[[1386,1447],[-3,9]],[[973,1447],[0,-41]],[[973,1406],[0,-32]],[[973,1374],[-1,0]],[[972,1374],[-5,60],[0,54]],[[1336,1492],[0,-21]],[[1336,1471],[-2,-11]],[[1334,1460],[-2,12]],[[1263,1477],[-1,-23]],[[1262,1454],[-5,0]],[[1257,1454],[0,20]],[[1327,1476],[-3,-15]],[[1324,1461],[-1,7]],[[1323,1468],[-1,8]],[[1252,1479],[-1,-2]],[[1251,1477],[-4,-7]],[[1247,1470],[-1,20]],[[1341,1483],[-3,-15]],[[1338,1468],[-2,3]],[[1182,1479],[0,-27]],[[1182,1452],[-8,0]],[[1174,1452],[-1,6]],[[1375,1468],[-2,-17]],[[1373,1451],[-6,-7]],[[1367,1444],[-6,24]],[[1361,1468],[-2,5]],[[1211,1464],[-2,-22]],[[1209,1442],[-3,13]],[[1350,1478],[-4,-18]],[[1346,1460],[-2,28]],[[1297,1474],[-5,-37]],[[1292,1437],[-4,0]],[[1288,1437],[1,27]],[[1247,1470],[-1,-16]],[[1246,1454],[-2,0]],[[1244,1454],[-2,36]],[[1244,1454],[-2,-7]],[[1242,1447],[-6,11]],[[1346,1460],[-1,-4]],[[1345,1456],[-4,28]],[[972,1374],[-18,0]],[[954,1374],[0,8]],[[954,1382],[0,63]],[[1318,1487],[-1,-27]],[[1317,1460],[-1,18]],[[1323,1468],[-2,-13]],[[1321,1455],[-4,5]],[[1187,1472],[-1,-43]],[[1186,1429],[-4,0]],[[1182,1429],[0,23]],[[1345,1456],[-1,-3]],[[1344,1453],[-4,-2]],[[1340,1451],[-2,17]],[[1280,1450],[-5,-23]],[[1275,1427],[-4,1]],[[1271,1428],[-2,13]],[[1269,1441],[0,35]],[[1057,1463],[0,-40]],[[1057,1423],[0,-40]],[[1057,1383],[0,-41]],[[1057,1342],[-4,-8]],[[1053,1334],[-6,0]],[[1047,1334],[-1,90]],[[1257,1454],[-2,0]],[[1255,1454],[-4,0]],[[1251,1454],[0,23]],[[1222,1476],[1,-48]],[[1223,1428],[0,-1]],[[1223,1427],[-2,1]],[[1221,1428],[-2,0]],[[1219,1428],[-1,0]],[[1218,1428],[0,35]],[[1317,1460],[-2,-9]],[[1315,1451],[-1,23]],[[1288,1437],[-1,-8]],[[1287,1429],[-5,3]],[[1282,1432],[-2,18]],[[1352,1450],[-5,2]],[[1347,1452],[-2,4]],[[1269,1441],[-5,-14]],[[1264,1427],[-2,-1]],[[1262,1426],[0,28]],[[1251,1454],[-3,-17]],[[1248,1437],[-2,17]],[[1229,1452],[0,-16]],[[1229,1436],[-3,-8]],[[1226,1428],[-3,0]],[[1329,1468],[0,-25]],[[1329,1443],[-4,-4]],[[1325,1439],[0,5]],[[1325,1444],[-1,17]],[[1315,1451],[0,-3]],[[1315,1448],[-5,-3]],[[1310,1445],[-1,3]],[[1309,1448],[-1,19]],[[1386,1447],[-5,-26]],[[1381,1421],[-2,-2]],[[1379,1419],[-3,10]],[[1376,1429],[-3,22]],[[875,1467],[0,-75]],[[875,1392],[-14,-8],[-3,54],[-4,25]],[[1304,1467],[1,-28]],[[1305,1439],[0,-2]],[[1305,1437],[-5,0]],[[1300,1437],[-1,0]],[[1299,1437],[0,36]],[[1299,1437],[-5,-1]],[[1294,1436],[-2,1]],[[1165,1462],[-8,-14]],[[1157,1448],[0,17]],[[1361,1468],[1,-30]],[[1362,1438],[-6,-2]],[[1356,1436],[-2,10]],[[1334,1460],[-1,-15]],[[1333,1445],[-3,-1]],[[1330,1444],[-1,-1]],[[1011,1464],[0,-32]],[[1011,1432],[-13,-25],[0,-17]],[[998,1390],[-5,0]],[[993,1390],[-3,56],[-2,0]],[[1192,1468],[-2,-39]],[[1190,1429],[-4,0]],[[1340,1451],[0,-2]],[[1340,1449],[-4,-14]],[[1336,1435],[-3,10]],[[914,1381],[0,-43]],[[914,1338],[-21,42],[1,21]],[[894,1401],[3,29]],[[954,1382],[-25,-1]],[[1128,1468],[0,-41]],[[1128,1427],[-2,0]],[[1126,1427],[-5,1]],[[1121,1428],[0,36]],[[1197,1462],[0,-33]],[[1197,1429],[-3,0]],[[1194,1429],[-4,0]],[[1325,1444],[-3,2]],[[1322,1446],[-1,0]],[[1321,1446],[0,9]],[[1367,1444],[-4,-14]],[[1363,1430],[-1,8]],[[894,1401],[-19,-9]],[[1136,1467],[0,-41]],[[1136,1426],[-2,1]],[[1134,1427],[-6,0]],[[1144,1465],[-1,-39]],[[1143,1426],[-2,0]],[[1141,1426],[-5,0]],[[1309,1448],[-4,-9]],[[1157,1425],[-1,-13]],[[1156,1412],[-2,0]],[[1154,1412],[-3,0]],[[1151,1412],[0,13]],[[1151,1425],[0,35]],[[1157,1448],[0,-23]],[[1151,1425],[-3,0]],[[1148,1425],[-5,1]],[[1092,1464],[0,-40]],[[1092,1424],[-2,0]],[[1090,1424],[-5,0]],[[1085,1424],[0,40]],[[1100,1464],[0,-41]],[[1100,1423],[-3,0]],[[1097,1423],[-5,1]],[[1172,1461],[0,-35]],[[1172,1426],[-5,4]],[[1167,1430],[0,33]],[[1085,1424],[-2,0]],[[1083,1424],[-5,-1]],[[1078,1423],[0,41]],[[1114,1464],[0,-41]],[[1114,1423],[-2,0]],[[1112,1423],[-5,0]],[[1107,1423],[0,41]],[[1121,1428],[-2,-5]],[[1119,1423],[-5,0]],[[1107,1423],[-2,0]],[[1105,1423],[-5,0]],[[1218,1428],[-8,0]],[[1210,1428],[-1,14]],[[1078,1423],[-2,1]],[[1076,1424],[-6,-1]],[[1070,1423],[0,40]],[[1032,1382],[0,-48]],[[1032,1334],[-1,0]],[[1031,1334],[-15,0]],[[1016,1334],[-6,0]],[[1010,1334],[1,98]],[[1063,1463],[0,-40]],[[1063,1423],[-6,0]],[[1070,1423],[-1,0]],[[1069,1423],[-6,0]],[[1167,1430],[0,-2]],[[1167,1428],[-2,-4]],[[1165,1424],[0,38]],[[1210,1428],[-9,0]],[[1201,1428],[-4,1]],[[1165,1424],[-5,-1]],[[1160,1423],[-3,2]],[[1174,1452],[0,-36]],[[1174,1416],[-1,0]],[[1173,1416],[0,2]],[[1173,1418],[-1,8]],[[1242,1447],[-3,-31]],[[1239,1416],[-5,12]],[[1234,1428],[0,27]],[[1321,1446],[-2,-1]],[[1319,1445],[-4,-1]],[[1315,1444],[0,4]],[[1376,1429],[-3,-15]],[[1373,1414],[0,18],[-6,12]],[[1234,1428],[-4,-8]],[[1230,1420],[-1,16]],[[1344,1453],[-3,-14]],[[1341,1439],[-1,10]],[[1347,1452],[-1,-40]],[[1346,1412],[-2,-7]],[[1344,1405],[-1,6]],[[1343,1411],[-2,28]],[[1182,1429],[0,-13]],[[1182,1416],[-8,0]],[[1356,1436],[1,-5]],[[1357,1431],[-3,-12]],[[1354,1419],[-6,-9]],[[1348,1410],[-2,2]],[[1262,1426],[0,-6]],[[1262,1420],[-7,0]],[[1255,1420],[0,34]],[[1255,1420],[-1,0]],[[1254,1420],[-6,1]],[[1248,1421],[0,16]],[[1248,1421],[-5,-5]],[[1243,1416],[-4,0]],[[1282,1432],[-2,-20]],[[1280,1412],[-5,3]],[[1275,1415],[0,12]],[[1343,1411],[-6,-6]],[[1337,1405],[-2,17]],[[1335,1422],[1,13]],[[1315,1444],[0,-20]],[[1315,1424],[0,-8]],[[1315,1416],[-2,-3]],[[1313,1413],[-3,2]],[[1310,1415],[0,30]],[[1310,1415],[-4,0]],[[1306,1415],[-1,22]],[[993,1390],[-8,-8],[0,-61]],[[985,1321],[-4,0],[-1,61],[-7,24]],[[1319,1445],[0,-19]],[[1319,1426],[-4,-2]],[[1322,1446],[-1,-25]],[[1321,1421],[-2,5]],[[1325,1439],[1,-16]],[[1326,1423],[-2,-10]],[[1324,1413],[-3,0]],[[1321,1413],[0,8]],[[1335,1422],[-4,-2]],[[1331,1420],[-1,24]],[[1331,1420],[0,-2]],[[1331,1418],[-2,-5]],[[1329,1413],[-3,10]],[[1373,1380],[2,3]],[[1373,1380],[0,0]],[[1373,1414],[-1,-24]],[[1372,1390],[-2,-3]],[[1370,1387],[-3,13]],[[1367,1400],[-4,30]],[[1363,1430],[-4,-27]],[[1359,1403],[-2,28]],[[1271,1428],[-2,-45]],[[1269,1383],[0,1]],[[1269,1384],[-3,5],[-2,38]],[[1306,1415],[1,-12]],[[1307,1403],[-7,-1]],[[1300,1402],[0,35]],[[1300,1402],[-1,-13]],[[1299,1389],[-3,-9]],[[1296,1380],[-2,24]],[[1294,1404],[0,32]],[[1294,1404],[-5,0]],[[1289,1404],[-2,25]],[[1230,1420],[-1,-24]],[[1229,1396],[-4,0],[1,32]],[[1173,1418],[-6,0]],[[1167,1418],[0,10]],[[1289,1404],[0,-4]],[[1289,1400],[-7,-4]],[[1282,1396],[-2,6]],[[1280,1402],[0,10]],[[1010,1334],[-2,-20]],[[1008,1314],[-10,0]],[[998,1314],[0,76]],[[1359,1403],[0,-14]],[[1359,1389],[-2,-9]],[[1357,1380],[-5,14]],[[1352,1394],[2,25]],[[1367,1400],[-1,-4]],[[1366,1396],[-6,-10]],[[1360,1386],[-1,3]],[[1239,1416],[-7,-29]],[[1232,1387],[-1,-6]],[[1231,1381],[-2,11]],[[1229,1392],[0,4]],[[1190,1356],[-2,0]],[[1188,1356],[-6,-4]],[[1182,1352],[0,18]],[[1182,1370],[0,28]],[[1182,1398],[0,18]],[[1186,1429],[0,-35],[4,-38]],[[1190,1429],[2,-57]],[[1192,1372],[-1,-16]],[[1191,1356],[-1,0]],[[1194,1388],[-2,-16]],[[1194,1429],[0,-41]],[[1201,1405],[-2,-17]],[[1199,1388],[-5,0]],[[1201,1428],[0,-23]],[[1210,1401],[-5,-13]],[[1205,1388],[-4,17]],[[1210,1428],[0,-27]],[[1167,1418],[0,-31]],[[1167,1387],[-6,11]],[[1161,1398],[-1,3]],[[1160,1401],[0,22]],[[1229,1392],[-5,-4]],[[1224,1388],[-1,39]],[[1337,1405],[0,-5]],[[1337,1400],[-4,-12]],[[1333,1388],[-2,30]],[[1219,1428],[-3,-32]],[[1216,1396],[-4,-15]],[[1212,1381],[-2,20]],[[1275,1415],[-2,-36]],[[1273,1379],[-4,4]],[[1221,1428],[-2,-40]],[[1219,1388],[-3,8]],[[1126,1427],[0,-41]],[[1126,1386],[0,-4]],[[1126,1382],[-5,0]],[[1121,1382],[-2,0]],[[1119,1382],[0,41]],[[1224,1388],[0,-2]],[[1224,1386],[-6,-2]],[[1218,1384],[1,4]],[[1134,1427],[0,-41]],[[1134,1386],[-1,0]],[[1133,1386],[-7,0]],[[1321,1413],[-1,-15]],[[1320,1398],[-2,6]],[[1318,1404],[-3,12]],[[1269,1384],[-1,-21]],[[1268,1363],[-7,0]],[[1261,1363],[0,25]],[[1261,1388],[1,32]],[[1141,1426],[0,-41]],[[1141,1385],[-1,0]],[[1140,1385],[-6,1]],[[1148,1425],[0,-15]],[[1148,1410],[0,-25]],[[1148,1385],[-7,0]],[[1151,1412],[-3,-2]],[[1160,1401],[-4,11]],[[1090,1424],[0,-41]],[[1090,1383],[-7,0]],[[1083,1383],[0,41]],[[1047,1334],[-3,0]],[[1044,1334],[-1,0]],[[1043,1334],[-11,0]],[[1097,1423],[0,-40]],[[1097,1383],[-7,0]],[[1083,1383],[-7,0]],[[1076,1383],[0,41]],[[1076,1383],[-7,0]],[[1069,1383],[0,40]],[[1069,1383],[-12,0]],[[1105,1423],[0,-41]],[[1105,1382],[-8,1]],[[1112,1423],[0,-41]],[[1112,1382],[-7,0]],[[1119,1382],[-7,0]],[[1352,1394],[-2,-4]],[[1350,1390],[-2,20]],[[1329,1413],[-1,-17]],[[1328,1396],[-1,2]],[[1327,1398],[-3,15]],[[1254,1420],[0,-32]],[[1254,1388],[-6,0]],[[1248,1388],[0,33]],[[1248,1388],[-5,5]],[[1243,1393],[0,23]],[[1261,1388],[-7,0]],[[1173,1416],[0,-8]],[[1173,1408],[0,-13]],[[1173,1395],[-4,-11]],[[1169,1384],[-2,3]],[[1333,1388],[-4,-12]],[[1329,1376],[-1,20]],[[1318,1404],[-2,-18]],[[1316,1386],[-2,-2]],[[1314,1384],[-1,-2]],[[1313,1382],[0,6]],[[1313,1388],[0,25]],[[1182,1398],[-9,10]],[[1243,1393],[-1,-4]],[[1242,1389],[-4,-18]],[[1238,1371],[-6,16]],[[1280,1402],[-6,-39]],[[1274,1363],[-1,16]],[[1313,1388],[-6,3]],[[1307,1391],[0,12]],[[1327,1398],[-5,-15]],[[1322,1383],[-2,15]],[[1154,1412],[0,-45]],[[1154,1367],[-5,0]],[[1149,1367],[-1,18]],[[1350,1390],[0,-6]],[[1350,1384],[-3,-20]],[[1347,1364],[-2,3]],[[1345,1367],[-4,15]],[[1341,1382],[3,23]],[[1161,1398],[2,-31]],[[1163,1367],[-9,0]],[[1341,1382],[-4,18]],[[1182,1370],[-6,1]],[[1176,1371],[-1,0]],[[1175,1371],[-2,24]],[[985,1321],[0,-7]],[[985,1314],[0,-42],[-12,0]],[[973,1272],[0,102]],[[1296,1380],[-2,-7]],[[1294,1373],[-5,-1]],[[1289,1372],[0,28]],[[1205,1388],[0,-8]],[[1205,1380],[-5,-4]],[[1200,1376],[-1,12]],[[1366,1396],[1,-9]],[[1367,1387],[0,-10]],[[1367,1377],[0,-4]],[[1367,1373],[0,-1]],[[1367,1372],[-1,-1]],[[1366,1371],[0,-2]],[[1366,1369],[-1,-23]],[[1365,1346],[-2,-1]],[[1363,1345],[-1,10]],[[1362,1355],[-2,31]],[[1322,1383],[0,-2]],[[1322,1381],[-3,-12]],[[1319,1369],[-2,4]],[[1317,1373],[-1,13]],[[1307,1391],[1,-10]],[[1308,1381],[-6,-9]],[[1302,1372],[-3,17]],[[1282,1396],[1,-30]],[[1283,1366],[-1,-28]],[[1282,1338],[-8,21]],[[1274,1359],[0,4]],[[1212,1381],[-2,-21]],[[1210,1360],[-3,0]],[[1207,1360],[-2,20]],[[1340,1363],[-2,-11]],[[1338,1352],[-4,21]],[[1334,1373],[-1,15]],[[1341,1382],[-1,-19]],[[1289,1372],[-1,-6]],[[1288,1366],[-5,0]],[[1366,1369],[-1,-23]],[[1370,1387],[-3,0]],[[1325,1378],[-3,3]],[[1327,1398],[-2,-20]],[[1329,1376],[0,-5]],[[1329,1371],[-1,-10]],[[1328,1361],[-3,0]],[[1325,1361],[0,17]],[[1169,1384],[0,-16]],[[1169,1368],[0,-21]],[[1169,1347],[-6,0]],[[1163,1347],[0,20]],[[1218,1384],[0,-12]],[[1218,1372],[-6,-24]],[[1212,1348],[-2,12]],[[1175,1371],[-6,-3]],[[1357,1380],[1,-24]],[[1358,1356],[-5,-8]],[[1353,1348],[-2,11]],[[1351,1359],[-1,25]],[[1248,1388],[0,-33]],[[1248,1355],[-5,0]],[[1243,1355],[-1,34]],[[1231,1381],[-2,-26]],[[1229,1355],[-5,-10]],[[1224,1345],[0,1]],[[1224,1346],[-1,8]],[[1223,1354],[1,32]],[[1313,1382],[-4,-13]],[[1309,1369],[-1,12]],[[998,1314],[-13,0]],[[1362,1355],[-3,-12]],[[1359,1343],[-1,13]],[[1302,1372],[0,-16]],[[1302,1356],[-6,3]],[[1296,1359],[-2,14]],[[1243,1355],[0,-17]],[[1243,1338],[-7,1]],[[1236,1339],[2,32]],[[1200,1376],[0,-28]],[[1200,1348],[-2,0]],[[1198,1348],[-4,0]],[[1194,1348],[-3,8]],[[1334,1373],[-2,-14]],[[1332,1359],[-3,12]],[[1261,1363],[0,-8]],[[1261,1355],[-7,0]],[[1254,1355],[0,33]],[[1254,1355],[-6,0]],[[1236,1339],[-7,-1]],[[1229,1338],[0,17]],[[1224,1345],[0,0]],[[1223,1354],[-5,-1]],[[1218,1353],[0,19]],[[1317,1373],[-1,-24]],[[1316,1349],[0,-3]],[[1316,1346],[-3,10]],[[1313,1356],[1,28]],[[1351,1359],[-1,1]],[[1350,1360],[-3,4]],[[1133,1386],[0,-22]],[[1133,1364],[-5,-8]],[[1128,1356],[-2,26]],[[1140,1385],[0,-26]],[[1140,1359],[-5,-9]],[[1135,1350],[-2,3]],[[1133,1353],[0,11]],[[1149,1367],[1,-2]],[[1150,1365],[-7,-24]],[[1143,1341],[-3,18]],[[1274,1359],[-3,-26]],[[1271,1333],[-5,0]],[[1266,1333],[2,30]],[[1313,1356],[-3,-1]],[[1310,1355],[-1,14]],[[1083,1383],[0,-41]],[[1083,1342],[-1,0]],[[1082,1342],[-6,0]],[[1076,1342],[0,41]],[[1090,1383],[0,-41]],[[1090,1342],[-2,0]],[[1088,1342],[-5,0]],[[1097,1383],[0,-41]],[[1097,1342],[-1,0]],[[1096,1342],[-6,0]],[[1076,1342],[-1,0]],[[1075,1342],[-6,0]],[[1069,1342],[0,41]],[[1069,1342],[-1,0]],[[1068,1342],[-8,0]],[[1060,1342],[-3,0]],[[1325,1361],[-3,-11]],[[1322,1350],[-2,5]],[[1320,1355],[-1,14]],[[1105,1382],[0,-40]],[[1105,1342],[-2,0]],[[1103,1342],[-6,0]],[[1121,1382],[-1,-24]],[[1120,1358],[-6,-17]],[[1114,1341],[-2,0]],[[1112,1341],[0,41]],[[1128,1356],[1,-14]],[[1129,1342],[-2,-6]],[[1127,1336],[-3,-10]],[[1124,1326],[-4,32]],[[1112,1341],[-1,0]],[[1111,1341],[-6,1]],[[954,1374],[0,-65]],[[954,1309],[-10,-1],[-3,-28]],[[941,1280],[-27,58]],[[1345,1367],[-4,-5]],[[1341,1362],[-1,1]],[[1310,1355],[-2,-15]],[[1308,1340],[-5,8]],[[1303,1348],[-1,8]],[[1296,1359],[-1,-20]],[[1295,1339],[-3,-8]],[[1292,1331],[-3,8]],[[1289,1339],[-1,27]],[[1207,1360],[0,-12]],[[1207,1348],[-7,0]],[[1338,1352],[-1,-5]],[[1337,1347],[-4,-22]],[[1333,1325],[-1,19]],[[1332,1344],[0,15]],[[1320,1355],[-4,-6]],[[973,1272],[-19,0]],[[954,1272],[0,37]],[[1289,1339],[-1,-8]],[[1288,1331],[-5,-1]],[[1283,1330],[-1,8]],[[1176,1371],[0,-39]],[[1176,1332],[1,-13]],[[1177,1319],[-7,1]],[[1170,1320],[-1,27]],[[1218,1353],[-1,-30]],[[1217,1323],[-5,8]],[[1212,1331],[0,17]],[[1332,1344],[-4,1]],[[1328,1345],[0,16]],[[1182,1352],[1,-20]],[[1183,1332],[-7,0]],[[1163,1347],[0,-5]],[[1163,1342],[-9,-8]],[[1154,1334],[0,1]],[[1154,1335],[-4,30]],[[1344,1331],[-1,-1]],[[1343,1330],[-2,32]],[[1345,1367],[-1,-36]],[[1347,1364],[0,-38]],[[1347,1326],[-3,5]],[[1188,1356],[4,-28]],[[1192,1328],[-1,-8]],[[1191,1320],[-6,-1]],[[1185,1319],[-2,13]],[[1154,1335],[-6,-20]],[[1148,1315],[-3,2]],[[1145,1317],[-2,24]],[[1133,1353],[-4,-11]],[[1350,1360],[4,-22]],[[1354,1338],[-1,-3]],[[1353,1335],[-2,-21]],[[1351,1314],[-1,4]],[[1350,1318],[-3,8]],[[1266,1333],[-1,-27]],[[1265,1306],[-5,0]],[[1260,1306],[0,18]],[[1260,1324],[1,31]],[[1343,1330],[-2,-4]],[[1341,1326],[-4,21]],[[1303,1348],[-4,-25]],[[1299,1323],[-4,16]],[[1328,1345],[0,-8]],[[1328,1337],[-5,0]],[[1323,1337],[-1,13]],[[1353,1348],[1,-6]],[[1354,1342],[0,-4]],[[1212,1331],[-1,-4]],[[1211,1327],[-4,0]],[[1207,1327],[0,21]],[[1283,1330],[-1,-12]],[[1282,1318],[-8,0]],[[1274,1318],[-3,15]],[[1145,1317],[-3,-10]],[[1142,1307],[-5,3]],[[1137,1310],[-2,40]],[[1124,1326],[-3,-22]],[[1121,1304],[-3,2]],[[1118,1306],[-4,35]],[[1224,1345],[-3,-23]],[[1221,1322],[-1,-11]],[[1220,1311],[0,-2]],[[1220,1309],[-3,2]],[[1217,1311],[0,12]],[[1359,1343],[2,-19]],[[1361,1324],[1,-4]],[[1362,1320],[-2,-4]],[[1360,1316],[-6,26]],[[1194,1348],[-2,-20]],[[1363,1345],[1,-15]],[[1364,1330],[-3,-6]],[[1316,1346],[0,-15]],[[1316,1331],[-2,-4]],[[1314,1327],[-1,0]],[[1313,1327],[0,29]],[[1313,1327],[-3,0]],[[1310,1327],[-2,6]],[[1308,1333],[0,7]],[[1323,1337],[0,-11]],[[1323,1326],[-5,-4]],[[1318,1322],[-2,9]],[[1260,1324],[-6,-6]],[[1254,1318],[0,37]],[[1229,1338],[0,-24]],[[1229,1314],[-8,8]],[[1254,1318],[-1,0]],[[1253,1318],[-5,-2]],[[1248,1316],[0,39]],[[1248,1316],[-1,-1]],[[1247,1315],[-3,-1]],[[1244,1314],[-1,24]],[[1137,1310],[-4,-14]],[[1133,1296],[-2,7]],[[1131,1303],[-4,33]],[[1341,1326],[-2,-10]],[[1339,1316],[-3,-2]],[[1336,1314],[-2,6]],[[1334,1320],[-1,5]],[[1207,1327],[-1,-12]],[[1206,1315],[-9,-8]],[[1197,1307],[1,41]],[[1197,1307],[4,-18]],[[1201,1289],[-4,-16]],[[1197,1273],[-3,2]],[[1194,1275],[-3,45]],[[1308,1333],[-2,-20]],[[1306,1313],[1,-1]],[[1307,1312],[-4,-14]],[[1303,1298],[-5,0]],[[1298,1298],[1,25]],[[1170,1320],[1,-30]],[[1171,1290],[-2,-10]],[[1169,1280],[-4,16]],[[1165,1296],[-2,46]],[[1334,1320],[-4,0]],[[1330,1320],[-2,0]],[[1328,1320],[0,17]],[[1359,1302],[-2,4]],[[1357,1306],[-4,29]],[[1360,1316],[-1,-14]],[[1088,1342],[0,-36]],[[1088,1306],[-6,-13]],[[1082,1293],[0,8]],[[1082,1301],[0,41]],[[1082,1301],[-7,0]],[[1075,1301],[0,41]],[[1075,1301],[-8,0]],[[1067,1301],[1,41]],[[1067,1301],[-6,0]],[[1061,1301],[-1,0]],[[1060,1301],[0,41]],[[1060,1301],[-7,0]],[[1053,1301],[0,33]],[[1096,1342],[0,-37]],[[1096,1305],[-8,1]],[[1165,1296],[-6,-8]],[[1159,1288],[-1,10]],[[1158,1298],[-4,36]],[[1111,1341],[-1,-57]],[[1110,1284],[-5,3]],[[1105,1287],[-2,8]],[[1103,1295],[0,47]],[[1103,1295],[-5,0]],[[1098,1295],[-2,10]],[[1118,1306],[-5,-20]],[[1113,1286],[-1,-2]],[[1112,1284],[-2,0]],[[1298,1298],[-1,0]],[[1297,1298],[-5,0]],[[1292,1298],[0,33]],[[1292,1298],[0,-16]],[[1292,1282],[-4,8]],[[1288,1290],[0,41]],[[1236,1339],[1,-28]],[[1237,1311],[-2,-3]],[[1235,1308],[-7,-2]],[[1228,1306],[1,8]],[[1244,1314],[-2,-1]],[[1242,1313],[-3,-1]],[[1239,1312],[-2,-1]],[[1328,1320],[-3,-4]],[[1325,1316],[-2,4]],[[1323,1320],[0,6]],[[1123,1280],[-2,24]],[[1131,1303],[-6,-19]],[[1125,1284],[-2,-4]],[[1357,1306],[-2,-15]],[[1355,1291],[-4,23]],[[1158,1298],[-6,-19]],[[1152,1279],[-4,36]],[[1043,1334],[-1,-83]],[[1042,1251],[-11,-42]],[[1031,1209],[0,125]],[[1031,1209],[-1,-3]],[[1030,1206],[-6,22],[-8,49]],[[1016,1277],[0,57]],[[1016,1277],[-8,37]],[[1053,1301],[-4,1]],[[1049,1302],[-5,32]],[[1049,1302],[2,-22],[6,-5]],[[1057,1275],[-8,-56]],[[1049,1219],[-7,32]],[[1310,1327],[-1,-14]],[[1309,1313],[-3,0]],[[1274,1318],[-4,-50]],[[1270,1268],[-3,-9]],[[1267,1259],[1,28],[-3,19]],[[1185,1319],[0,-24]],[[1185,1295],[-2,-1]],[[1183,1294],[-6,8]],[[1177,1302],[0,17]],[[1217,1311],[-4,-45]],[[1213,1266],[-2,5]],[[1211,1271],[0,56]],[[1344,1331],[-1,-24]],[[1343,1307],[-1,-4]],[[1342,1303],[-3,13]],[[1318,1322],[0,-23]],[[1318,1299],[-2,0]],[[1316,1299],[-1,0]],[[1315,1299],[-1,28]],[[1350,1318],[-2,-33]],[[1348,1285],[-1,5]],[[1347,1290],[-4,17]],[[1288,1290],[-3,0]],[[1285,1290],[-3,21]],[[1282,1311],[0,7]],[[1315,1299],[-4,0]],[[1311,1299],[-2,14]],[[1211,1271],[-1,1]],[[1210,1272],[-2,13]],[[1208,1285],[-2,30]],[[1323,1320],[-1,-19]],[[1322,1301],[-4,-2]],[[1260,1281],[-5,0]],[[1255,1281],[-2,0]],[[1253,1281],[0,37]],[[1260,1306],[0,-25]],[[1228,1306],[0,-8]],[[1228,1298],[-5,0]],[[1223,1298],[-3,13]],[[1135,1271],[-2,25]],[[1142,1307],[2,-18]],[[1144,1289],[-7,-22]],[[1137,1267],[-2,4]],[[1330,1320],[0,-9]],[[1330,1311],[-1,-15]],[[1329,1296],[-2,-2]],[[1327,1294],[-2,22]],[[1336,1314],[0,-11]],[[1336,1303],[-6,8]],[[1327,1294],[0,-22]],[[1327,1272],[-5,0]],[[1322,1272],[0,10]],[[1322,1282],[0,19]],[[1177,1302],[1,-40]],[[1178,1262],[-7,28]],[[1194,1275],[-5,-17]],[[1189,1258],[0,-1]],[[1189,1257],[-4,38]],[[1355,1291],[1,-8]],[[1356,1283],[-2,-11]],[[1354,1272],[-4,4]],[[1350,1276],[-2,9]],[[1282,1311],[-7,-46]],[[1275,1265],[-3,-1]],[[1272,1264],[-2,4]],[[1253,1281],[-2,0]],[[1251,1281],[-4,0]],[[1247,1281],[0,34]],[[1147,1261],[-3,28]],[[1152,1279],[-1,-5]],[[1151,1274],[-4,-13]],[[1342,1303],[0,-18]],[[1342,1285],[0,-10]],[[1342,1275],[-8,5]],[[1334,1280],[0,5]],[[1334,1285],[2,18]],[[1208,1285],[-7,4]],[[1247,1281],[-1,0]],[[1246,1281],[-1,0]],[[1245,1281],[-3,32]],[[1311,1299],[0,-12]],[[1311,1287],[-3,2]],[[1308,1289],[-1,23]],[[1308,1289],[-1,-19]],[[1307,1270],[-4,0]],[[1303,1270],[0,28]],[[1245,1281],[-1,0]],[[1244,1281],[-5,-4]],[[1239,1277],[0,35]],[[1334,1285],[-2,0]],[[1332,1285],[-3,11]],[[1220,1309],[-3,-50]],[[1217,1259],[-1,-18]],[[1216,1241],[0,-3]],[[1216,1238],[0,2]],[[1216,1240],[-1,5]],[[1215,1245],[-2,21]],[[1239,1277],[-1,-5]],[[1238,1272],[-3,1]],[[1235,1273],[0,35]],[[1285,1290],[0,-31]],[[1285,1259],[-10,6]],[[1223,1298],[0,-25]],[[1223,1273],[-6,-14]],[[954,1272],[-13,8]],[[1123,1280],[-4,-18]],[[1119,1262],[-6,24]],[[1235,1273],[-4,0]],[[1231,1273],[-1,0]],[[1230,1273],[-2,25]],[[1347,1290],[-3,-10]],[[1344,1280],[-2,5]],[[1129,1247],[-4,37]],[[1135,1271],[-6,-24]],[[1098,1295],[0,-46]],[[1098,1249],[-8,0]],[[1090,1249],[0,41],[-8,0]],[[1082,1290],[0,3]],[[1267,1259],[0,-3]],[[1267,1256],[-6,-5]],[[1261,1251],[-1,30]],[[1358,1271],[0,1]],[[1358,1271],[0,0]],[[1359,1302],[-1,-30]],[[1358,1272],[-2,11]],[[1159,1288],[-1,-38]],[[1158,1250],[-6,-12]],[[1152,1238],[-1,36]],[[1075,1301],[0,-53]],[[1075,1248],[-8,1]],[[1067,1249],[0,52]],[[1067,1249],[-1,0]],[[1066,1249],[-5,19]],[[1061,1268],[0,33]],[[1183,1294],[-1,-41]],[[1182,1253],[-1,-3]],[[1181,1250],[-3,12]],[[1082,1290],[0,-42]],[[1082,1248],[-7,0]],[[1061,1268],[-4,7]],[[1322,1282],[-2,0]],[[1320,1282],[-4,-1]],[[1316,1281],[0,18]],[[1316,1281],[-2,0]],[[1314,1281],[-3,6]],[[1303,1270],[-4,-11]],[[1299,1259],[-2,0]],[[1297,1259],[0,39]],[[1297,1259],[-5,0]],[[1292,1259],[0,23]],[[1230,1273],[-7,-2]],[[1223,1271],[0,2]],[[1189,1257],[-5,-1]],[[1184,1256],[-2,-3]],[[1332,1285],[-2,-12]],[[1330,1273],[-1,-2]],[[1329,1271],[-2,1]],[[1169,1280],[1,-3]],[[1170,1277],[-7,-31]],[[1163,1246],[-3,-12]],[[1160,1234],[-2,16]],[[1105,1287],[0,-38]],[[1105,1249],[-7,0]],[[1350,1276],[-4,-14]],[[1346,1262],[-2,18]],[[1292,1259],[0,-19]],[[1292,1240],[-3,0]],[[1289,1240],[-4,0]],[[1285,1240],[0,19]],[[1090,1249],[-4,-1]],[[1086,1248],[-4,0]],[[1181,1250],[-4,-6]],[[1177,1244],[-2,2]],[[1175,1246],[-4,8]],[[1171,1254],[-1,23]],[[1314,1281],[-1,-16]],[[1313,1265],[-3,-17]],[[1310,1248],[-2,0]],[[1308,1248],[-1,22]],[[1144,1251],[-4,-12]],[[1140,1239],[-3,28]],[[1147,1261],[-3,-10]],[[1210,1272],[-3,-34]],[[1207,1238],[-4,-7]],[[1203,1231],[-4,0]],[[1199,1231],[-2,42]],[[1112,1284],[0,-49]],[[1112,1235],[-5,0]],[[1107,1235],[-2,14]],[[1119,1262],[2,-18]],[[1121,1244],[0,-11]],[[1121,1233],[-7,0]],[[1114,1233],[-2,2]],[[1334,1280],[2,-22]],[[1336,1258],[-2,-15]],[[1334,1243],[-2,0]],[[1332,1243],[-2,30]],[[1346,1262],[2,-20]],[[1348,1242],[-4,-20],[3,-21]],[[1347,1201],[-3,1]],[[1344,1202],[-3,56]],[[1341,1258],[1,17]],[[1129,1247],[-1,-3]],[[1128,1244],[-7,0]],[[1358,1271],[-2,-23]],[[1356,1248],[-2,9]],[[1354,1257],[0,15]],[[1320,1282],[-5,-34]],[[1315,1248],[-2,17]],[[1322,1272],[0,-24]],[[1322,1248],[-1,0]],[[1321,1248],[-4,0]],[[1317,1248],[-2,0]],[[1261,1251],[0,-10]],[[1261,1241],[-6,0]],[[1255,1241],[0,40]],[[1251,1281],[0,-49]],[[1251,1232],[-3,0]],[[1248,1232],[0,10]],[[1248,1242],[-2,39]],[[1248,1242],[-4,-1]],[[1244,1241],[0,40]],[[1255,1241],[-1,-9]],[[1254,1232],[-3,0]],[[1244,1241],[-1,0]],[[1243,1241],[-2,0]],[[1241,1241],[-3,31]],[[1341,1258],[-4,0]],[[1337,1258],[-1,0]],[[1171,1254],[-5,-30]],[[1166,1224],[-1,4]],[[1165,1228],[-2,18]],[[1066,1249],[6,-9],[3,-32]],[[1075,1208],[-8,-5],[-3,-50]],[[1064,1153],[-13,57]],[[1051,1210],[-2,9]],[[1354,1257],[-3,-12]],[[1351,1245],[-3,-3]],[[1223,1271],[1,-30]],[[1224,1241],[-2,0]],[[1222,1241],[-6,0]],[[1199,1231],[-2,-2]],[[1197,1229],[-8,0]],[[1189,1229],[0,29]],[[1152,1238],[-5,-26]],[[1147,1212],[-1,4]],[[1146,1216],[-2,35]],[[1332,1243],[-2,1]],[[1330,1244],[-2,4]],[[1328,1248],[1,23]],[[1231,1273],[0,-32]],[[1231,1241],[-4,0]],[[1227,1241],[-3,0]],[[1235,1273],[0,-32]],[[1235,1241],[-1,0]],[[1234,1241],[-3,0]],[[1241,1241],[-6,0]],[[1215,1245],[-1,-2]],[[1214,1243],[-1,-16]],[[1213,1227],[-5,0]],[[1208,1227],[-1,11]],[[1328,1248],[-2,-4]],[[1326,1244],[-4,4]],[[1140,1239],[-3,-21]],[[1137,1218],[-7,14]],[[1130,1232],[-2,12]],[[1272,1264],[0,-23]],[[1272,1241],[3,-48]],[[1275,1193],[-2,-20],[-5,13],[-2,31]],[[1266,1217],[0,2]],[[1266,1219],[1,2]],[[1267,1221],[0,35]],[[1308,1248],[0,-7]],[[1308,1241],[-6,0]],[[1302,1241],[-3,18]],[[1285,1240],[-1,0]],[[1284,1240],[-6,1]],[[1278,1241],[-6,0]],[[1315,1248],[-3,-1]],[[1312,1247],[-2,1]],[[1302,1241],[0,-1]],[[1302,1240],[-8,0]],[[1294,1240],[-2,0]],[[1189,1229],[-2,-44]],[[1187,1185],[0,-15]],[[1187,1170],[-3,0]],[[1184,1170],[0,86]],[[1344,1202],[-2,1]],[[1342,1203],[-5,26]],[[1337,1229],[0,29]],[[1337,1229],[-1,-2]],[[1336,1227],[-2,16]],[[1267,1221],[-2,-38],[-4,1]],[[1261,1184],[0,32]],[[1261,1216],[0,25]],[[1356,1248],[0,-34]],[[1356,1214],[-4,11]],[[1352,1225],[-1,20]],[[1184,1170],[-3,0]],[[1181,1170],[1,27]],[[1182,1197],[-5,47]],[[1175,1246],[0,-49]],[[1175,1197],[-2,-4]],[[1173,1193],[-2,1]],[[1171,1194],[-5,30]],[[1146,1216],[-4,-16]],[[1142,1200],[-3,-10]],[[1139,1190],[-2,28]],[[1046,1186],[-16,20]],[[1051,1210],[-5,-24]],[[1160,1234],[-3,-6]],[[1157,1228],[-4,-4]],[[1153,1224],[-1,14]],[[1107,1235],[0,-21]],[[1107,1214],[-9,0]],[[1098,1214],[0,35]],[[1098,1214],[-12,-1]],[[1086,1213],[0,35]],[[1086,1213],[0,-39]],[[1086,1174],[-11,0]],[[1075,1174],[0,34]],[[1317,1248],[0,-36]],[[1317,1212],[-7,2]],[[1310,1214],[2,33]],[[1321,1248],[0,-37]],[[1321,1211],[-3,0]],[[1318,1211],[-1,1]],[[1330,1244],[1,-37]],[[1331,1207],[-3,1]],[[1328,1208],[-2,1]],[[1326,1209],[0,35]],[[1326,1209],[-4,1]],[[1322,1210],[-1,1]],[[1310,1214],[-2,27]],[[1352,1225],[-2,-44]],[[1350,1181],[-3,20]],[[1182,1197],[-7,0]],[[1165,1228],[-1,-33]],[[1164,1195],[-6,11]],[[1158,1206],[-1,22]],[[1221,1208],[-1,1]],[[1220,1209],[-4,29]],[[1222,1241],[-1,-33]],[[1216,1240],[-2,3]],[[1130,1232],[-3,-26]],[[1127,1206],[-1,-19]],[[1126,1187],[-4,6]],[[1122,1193],[-1,40]],[[1336,1227],[-2,-21]],[[1334,1206],[-2,1]],[[1332,1207],[-1,0]],[[1220,1209],[-2,-15]],[[1218,1194],[-3,0]],[[1215,1194],[-1,0]],[[1214,1194],[-1,33]],[[1248,1232],[0,-24]],[[1248,1208],[-5,-18]],[[1243,1190],[-2,20]],[[1241,1210],[2,31]],[[1241,1210],[-6,4]],[[1235,1214],[-1,27]],[[1208,1227],[0,-26],[-4,-9]],[[1204,1192],[-2,0]],[[1202,1192],[0,1]],[[1202,1193],[1,38]],[[1310,1214],[-1,-10]],[[1309,1204],[-6,-4]],[[1303,1200],[-1,0]],[[1302,1200],[-2,25]],[[1300,1225],[2,15]],[[1235,1214],[0,-45]],[[1235,1169],[-2,5]],[[1233,1174],[-2,34]],[[1231,1208],[0,33]],[[1282,1183],[0,-1]],[[1282,1183],[0,0]],[[1278,1198],[-3,-5]],[[1278,1241],[0,-43]],[[1283,1184],[-1,-2]],[[1282,1183],[1,1]],[[1284,1240],[-1,-55]],[[1283,1185],[-5,13]],[[1261,1216],[-7,0]],[[1254,1216],[0,16]],[[1231,1208],[-5,0]],[[1226,1208],[1,7]],[[1227,1215],[0,26]],[[1289,1185],[0,-2]],[[1289,1185],[0,0]],[[1289,1240],[0,-50]],[[1289,1190],[-6,-5]],[[1227,1215],[-6,-7]],[[1300,1225],[-3,-12]],[[1297,1213],[-3,27]],[[1297,1213],[-2,-29]],[[1295,1184],[0,-11]],[[1295,1173],[-6,10]],[[1289,1185],[0,5]],[[1153,1224],[0,-46]],[[1153,1178],[-2,5]],[[1151,1183],[-4,29]],[[1114,1233],[0,-39]],[[1114,1194],[-5,0]],[[1109,1194],[-2,20]],[[1122,1193],[-3,1]],[[1119,1194],[-5,0]],[[1254,1216],[0,-5]],[[1254,1211],[-6,-3]],[[1139,1190],[-2,-5]],[[1137,1185],[-1,2]],[[1136,1187],[-9,19]],[[1171,1194],[-4,-14]],[[1167,1180],[-3,15]],[[1202,1193],[-7,-6]],[[1195,1187],[2,42]],[[1195,1187],[0,-2]],[[1195,1185],[-8,0]],[[1342,1203],[-1,0]],[[1341,1203],[-7,3]],[[1158,1206],[0,-36]],[[1158,1170],[-4,-1]],[[1154,1169],[-1,9]],[[1214,1194],[-3,-12]],[[1211,1182],[-2,-7]],[[1209,1175],[-5,17]],[[1302,1200],[-7,-16]],[[1356,1214],[2,-18]],[[1358,1196],[-2,4]],[[1356,1200],[-6,-27]],[[1350,1173],[0,8]],[[1261,1184],[-7,3]],[[1254,1187],[0,24]],[[1151,1183],[-5,-8]],[[1146,1175],[-4,25]],[[1226,1208],[0,-28]],[[1226,1180],[-1,-2]],[[1225,1178],[-2,0]],[[1223,1178],[-2,30]],[[1243,1190],[2,-26]],[[1245,1164],[-1,-2]],[[1244,1162],[-7,3]],[[1237,1165],[-2,4]],[[1318,1211],[-5,-27]],[[1313,1184],[-4,20]],[[1109,1194],[0,-20]],[[1109,1174],[-6,1]],[[1103,1175],[-5,0]],[[1098,1175],[0,39]],[[1098,1175],[-8,-1]],[[1090,1174],[-4,0]],[[1322,1210],[-1,-37]],[[1321,1173],[-9,3]],[[1312,1176],[1,8]],[[1254,1187],[-6,-5]],[[1248,1182],[0,26]],[[1328,1208],[-3,-32]],[[1325,1176],[-2,-20]],[[1323,1156],[-2,1]],[[1321,1157],[0,16]],[[1047,1079],[-1,107]],[[1064,1153],[3,-17]],[[1067,1136],[-5,-12],[-3,-50],[-4,-22],[-8,27]],[[1223,1178],[-5,16]],[[1075,1174],[0,-47]],[[1075,1127],[-8,9]],[[1233,1174],[-3,-6]],[[1230,1168],[-4,12]],[[1332,1207],[2,-23]],[[1334,1184],[-1,-12]],[[1333,1172],[-2,0]],[[1331,1172],[-6,4]],[[1248,1182],[-3,-18]],[[1341,1203],[-2,-24]],[[1339,1179],[-5,5]],[[1047,1079],[-5,8],[-8,53],[-4,66]],[[1167,1180],[1,-17]],[[1168,1163],[-3,-12],[-7,5]],[[1158,1156],[0,14]],[[1136,1187],[-4,-33]],[[1132,1154],[-1,-4]],[[1131,1150],[-6,31]],[[1125,1181],[1,6]],[[1309,1204],[-2,-38]],[[1307,1166],[-4,0]],[[1303,1166],[0,34]],[[1312,1176],[3,-27]],[[1315,1149],[-7,-4]],[[1308,1145],[-1,21]],[[1344,1202],[0,-42]],[[1344,1160],[-1,-18]],[[1343,1142],[-2,-10]],[[1341,1132],[-2,9]],[[1339,1141],[0,38]],[[1358,1171],[-2,-12]],[[1356,1159],[2,12]],[[1359,1171],[-1,0]],[[1358,1171],[1,0]],[[1356,1200],[2,-4]],[[1358,1196],[-3,-31]],[[1355,1165],[-5,0]],[[1350,1165],[0,8]],[[1350,1165],[0,-4]],[[1350,1161],[-2,0]],[[1348,1161],[-4,-1]],[[1303,1150],[0,-9]],[[1303,1141],[0,9]],[[1303,1166],[0,-15]],[[1303,1151],[-8,22]],[[1146,1175],[-2,-12]],[[1144,1163],[-3,-11]],[[1141,1152],[-4,33]],[[1181,1170],[0,-7]],[[1181,1163],[-4,-5]],[[1177,1158],[-4,35]],[[1119,1194],[0,-33]],[[1119,1161],[-5,0]],[[1114,1161],[-5,13]],[[1125,1181],[-2,-30]],[[1123,1151],[-2,-9]],[[1121,1142],[-2,19]],[[1223,1120],[-5,24]],[[1218,1144],[3,1]],[[1221,1145],[2,-25]],[[1220,1153],[-8,1]],[[1212,1154],[-1,28]],[[1215,1194],[5,-41]],[[1225,1178],[-2,-25]],[[1223,1153],[-1,-3]],[[1222,1150],[-2,3]],[[1177,1158],[0,-21]],[[1177,1137],[-8,0]],[[1169,1137],[-1,26]],[[1195,1185],[2,-34]],[[1197,1151],[-10,1]],[[1187,1152],[0,18]],[[1202,1192],[0,-36]],[[1202,1156],[-1,-5]],[[1201,1151],[-4,0]],[[1209,1175],[-2,-14]],[[1207,1161],[-5,-5]],[[1339,1141],[-1,-4]],[[1338,1137],[-5,35]],[[1141,1152],[-4,-24]],[[1137,1128],[-5,26]],[[1154,1169],[-1,-15]],[[1153,1154],[-7,-2]],[[1146,1152],[-2,11]],[[1212,1154],[-1,-3]],[[1211,1151],[-4,10]],[[1129,1134],[-2,-9]],[[1127,1125],[-4,26]],[[1131,1150],[-2,-16]],[[1230,1168],[0,-5]],[[1230,1163],[-5,-9]],[[1225,1154],[-2,-1]],[[1331,1172],[1,-41]],[[1332,1131],[-1,-14]],[[1331,1117],[-8,39]],[[1321,1157],[-5,-12]],[[1316,1145],[-1,4]],[[1235,1169],[-4,-31]],[[1231,1138],[-1,-1]],[[1230,1137],[0,26]],[[1090,1174],[0,-61]],[[1090,1113],[-2,-36]],[[1088,1077],[-9,51],[-4,-1]],[[1103,1175],[0,-20]],[[1103,1155],[-3,0],[-1,-42]],[[1099,1113],[-1,0]],[[1098,1113],[-8,0]],[[1114,1161],[0,-34]],[[1114,1127],[-9,12]],[[1105,1139],[-2,16]],[[1338,1137],[-1,-6]],[[1337,1131],[-5,0]],[[1361,1117],[0,0]],[[1361,1117],[0,-1]],[[1361,1116],[-4,-4]],[[1357,1112],[0,13]],[[1357,1125],[-1,34]],[[1358,1171],[3,-54]],[[1359,1171],[-1,0]],[[1187,1152],[-2,-17]],[[1185,1135],[-4,28]],[[1158,1156],[0,-28]],[[1158,1128],[-3,-6]],[[1155,1122],[-2,32]],[[1236,1119],[-5,19]],[[1235,1169],[1,-50]],[[1238,1070],[0,4]],[[1238,1070],[0,0]],[[1237,1165],[2,-27]],[[1239,1138],[0,-41]],[[1239,1097],[-3,21]],[[1236,1118],[0,1]],[[1308,1145],[0,-18]],[[1308,1127],[-3,-8]],[[1305,1119],[-2,22]],[[1303,1150],[0,1]],[[1244,1162],[-3,-14]],[[1241,1148],[-1,-13]],[[1240,1135],[-1,3]],[[1355,1165],[1,-32]],[[1356,1133],[-6,-12]],[[1350,1121],[0,40]],[[1185,1135],[0,-16]],[[1185,1119],[-7,-12]],[[1178,1107],[-1,30]],[[1169,1137],[1,-19]],[[1170,1118],[-1,0]],[[1169,1118],[0,-12]],[[1169,1106],[-3,0]],[[1166,1106],[-3,3]],[[1163,1109],[-5,19]],[[1246,1113],[-1,3]],[[1246,1114],[0,-1]],[[1245,1115],[1,-1]],[[1245,1116],[0,-1]],[[1245,1116],[-5,19]],[[1241,1148],[4,-33]],[[1230,1137],[-4,2]],[[1226,1139],[-1,15]],[[1146,1152],[1,-8]],[[1147,1144],[-4,-31]],[[1143,1113],[-4,0]],[[1139,1113],[-2,15]],[[1211,1151],[0,-19]],[[1211,1132],[-4,-28],[-5,5]],[[1202,1109],[-1,42]],[[1350,1121],[-6,19]],[[1344,1140],[4,21]],[[1344,1140],[-1,2]],[[1121,1142],[-3,-18]],[[1118,1124],[-2,-2]],[[1116,1122],[-2,5]],[[1222,1150],[-1,-5]],[[1218,1144],[-5,-21]],[[1213,1123],[-2,9]],[[1155,1122],[-1,-11]],[[1154,1111],[-1,3]],[[1153,1114],[-6,30]],[[1226,1139],[-1,-18]],[[1225,1121],[-1,-8]],[[1224,1113],[-1,7]],[[1105,1139],[0,-26]],[[1105,1113],[-6,0]],[[1137,1128],[-5,-13]],[[1132,1115],[-3,19]],[[1202,1109],[-8,17],[-9,-7]],[[1127,1125],[-4,-15]],[[1123,1110],[-5,14]],[[1308,1127],[-3,-8]],[[1316,1145],[-8,-18]],[[1153,1114],[-7,-36]],[[1146,1078],[0,1]],[[1146,1079],[-3,34]],[[1224,1113],[-2,-4]],[[1222,1109],[-5,-6],[-4,20]],[[1350,1121],[-1,-23]],[[1349,1098],[-4,2]],[[1345,1100],[-4,7]],[[1341,1107],[0,25]],[[1341,1107],[-4,3]],[[1337,1110],[0,21]],[[1233,1073],[0,1]],[[1233,1073],[0,0]],[[1238,1070],[-5,5]],[[1233,1075],[0,1]],[[1233,1076],[0,1]],[[1233,1077],[0,1]],[[1233,1078],[0,1]],[[1233,1079],[-5,48],[-3,-6]],[[1236,1118],[2,-44]],[[1108,1113],[-3,0]],[[1116,1122],[0,-3]],[[1116,1119],[-8,-6]],[[1245,1116],[-3,-5],[7,-29],[-10,15]],[[1178,1107],[0,-1]],[[1178,1106],[-2,0]],[[1176,1106],[-6,12]],[[1132,1115],[-3,-25]],[[1129,1090],[-4,5]],[[1125,1095],[-2,15]],[[1357,1112],[1,-20]],[[1358,1092],[-2,-5]],[[1356,1087],[-1,8]],[[1355,1095],[2,30]],[[1356,1133],[-1,-38]],[[1355,1095],[0,-6]],[[1355,1089],[-6,9]],[[1163,1109],[-6,-30]],[[1157,1079],[-3,32]],[[1139,1113],[-1,-23]],[[1138,1090],[-5,-25]],[[1133,1065],[-2,10]],[[1131,1075],[-2,15]],[[1233,1079],[-4,-12],[-7,42]],[[1125,1095],[-3,-30]],[[1122,1065],[-6,13]],[[1116,1078],[0,41]],[[1116,1078],[0,-15]],[[1116,1063],[-8,0]],[[1108,1063],[0,50]],[[1361,1116],[2,-22]],[[1363,1094],[-5,-2]],[[1361,1117],[2,-23]],[[1157,1079],[0,-3]],[[1157,1076],[-6,-25]],[[1151,1051],[-5,27]],[[1146,1079],[-4,-19]],[[1142,1060],[0,4]],[[1142,1064],[-4,26]],[[1108,1063],[-10,0]],[[1098,1063],[0,50]],[[1098,1063],[-8,-1]],[[1090,1062],[-2,15]],[[1168,1073],[-2,33]],[[1169,1106],[-1,-33]],[[1178,1106],[-2,0]],[[1168,1073],[-6,-35]],[[1162,1038],[-5,38]],[[1345,1100],[-2,-41]],[[1343,1059],[-3,-5]],[[1340,1054],[-5,31]],[[1335,1085],[2,25]],[[1355,1089],[0,-9]],[[1355,1080],[0,-29],[-4,0]],[[1351,1051],[-5,0]],[[1346,1051],[-3,8]],[[1131,1075],[-6,-31]],[[1125,1044],[-3,21]],[[1367,1035],[-1,0]],[[1366,1035],[-2,-17]],[[1364,1018],[-5,25]],[[1359,1043],[-3,29]],[[1356,1072],[0,15]],[[1363,1094],[4,-59]],[[1137,1042],[-4,-5]],[[1133,1037],[0,28]],[[1142,1064],[-5,-22]],[[1359,1043],[-1,-9]],[[1358,1034],[-3,0],[0,-40]],[[1355,994],[-4,-1]],[[1351,993],[0,58]],[[1355,1080],[1,-8]],[[1151,1051],[0,-27]],[[1151,1024],[-1,0]],[[1150,1024],[-1,3]],[[1149,1027],[-2,0]],[[1147,1027],[-1,1]],[[1146,1028],[0,1]],[[1146,1029],[-4,31]],[[1123,1018],[-7,4]],[[1116,1022],[0,41]],[[1125,1044],[1,-9]],[[1126,1035],[-3,-17]],[[1151,1021],[0,3]],[[1162,1038],[-8,-22],[-3,5]],[[1130,1024],[-3,2]],[[1127,1026],[-1,9]],[[1133,1037],[-3,-13]],[[1146,1029],[0,-2]],[[1146,1027],[-3,-18]],[[1143,1009],[-4,4]],[[1139,1013],[-2,29]],[[1116,1022],[-8,-1]],[[1108,1021],[0,42]],[[1108,1021],[-10,1]],[[1098,1022],[0,41]],[[1098,1022],[0,-42]],[[1098,980],[-2,0]],[[1096,980],[-6,82]],[[1346,1051],[1,-27]],[[1347,1024],[-6,2]],[[1341,1026],[-1,28]],[[1351,993],[-2,-3]],[[1349,990],[1,16]],[[1350,1006],[-3,18]],[[1139,1013],[-3,-16]],[[1136,997],[-6,27]],[[1364,1018],[-6,16]],[[1366,1035],[5,-89]],[[1371,946],[-5,-1]],[[1366,945],[0,49]],[[1366,994],[-2,24]],[[1129,967],[-5,0]],[[1124,967],[-1,0]],[[1123,967],[0,51]],[[1127,1026],[3,-48]],[[1130,978],[-1,-11]],[[1366,994],[-11,0]],[[1144,982],[0,5]],[[1144,982],[0,0]],[[1151,1021],[-1,3]],[[1144,1003],[-1,6]],[[1146,1027],[4,-24],[-6,0]],[[1149,1027],[-2,0]],[[1136,997],[-2,-20]],[[1134,977],[-4,1]],[[1350,1006],[-9,-4]],[[1341,1002],[0,24]],[[1116,1022],[0,-55]],[[1116,967],[-8,-3],[0,16]],[[1108,980],[0,41]],[[1123,967],[-7,0]],[[1108,980],[-10,0]],[[1144,1003],[0,-12]],[[1144,991],[-3,-11]],[[1141,980],[-3,-13]],[[1138,967],[0,1]],[[1138,968],[-4,9]],[[1349,990],[0,-13]],[[1349,977],[-8,0]],[[1341,977],[-2,0]],[[1339,977],[2,25]],[[1355,994],[7,-66]],[[1362,928],[-6,0]],[[1356,928],[-6,0]],[[1350,928],[-1,49]],[[1366,945],[0,-17]],[[1366,928],[-4,0]],[[1139,959],[-1,9]],[[1138,967],[1,-8]],[[1139,952],[0,7]],[[1139,959],[0,-7]],[[1144,991],[0,-4]],[[1144,982],[-3,-2]],[[1116,967],[0,-66]],[[1116,901],[-2,-8]],[[1114,893],[-7,0]],[[1107,893],[-11,87]],[[1139,952],[0,-1]],[[1139,951],[-5,-5]],[[1134,946],[-4,15]],[[1130,961],[-1,6]],[[1341,977],[0,-14]],[[1341,963],[-2,14]],[[1350,928],[-7,0]],[[1343,928],[2,17],[-4,18]],[[1124,967],[0,-74]],[[1124,893],[-4,0]],[[1120,893],[-4,8]],[[1130,961],[-2,-34]],[[1128,927],[-2,-35]],[[1126,892],[-2,1]],[[1137,920],[-9,7]],[[1134,946],[3,-26]],[[1373,920],[-4,0]],[[1369,920],[-3,8]],[[1371,946],[2,-26]],[[1374,920],[0,0]],[[1362,928],[3,-40]],[[1365,888],[-9,-17]],[[1356,871],[0,29]],[[1356,900],[0,28]],[[1356,900],[-6,0]],[[1350,900],[0,28]],[[1341,904],[0,0]],[[1350,900],[-1,-12]],[[1349,888],[-7,16]],[[1342,904],[1,24]],[[1369,920],[0,-33]],[[1369,887],[-3,-23]],[[1366,864],[-1,24]],[[1137,920],[-7,-25]],[[1130,895],[-3,-7]],[[1127,888],[-1,4]],[[1373,920],[2,-27]],[[1375,893],[-1,-3]],[[1374,890],[0,-2]],[[1374,888],[-5,-1]],[[1349,888],[0,-17]],[[1349,871],[-2,-2]],[[1347,869],[0,-1]],[[1347,868],[-2,-5]],[[1345,863],[-3,41]],[[1120,893],[1,-45]],[[1121,848],[-7,0]],[[1114,848],[0,45]],[[1356,871],[-7,0]],[[1114,848],[-3,-20]],[[1111,828],[-4,65]],[[1135,831],[-7,1]],[[1128,832],[-1,16]],[[1127,848],[0,40]],[[1130,895],[5,-2],[-2,-27],[2,-35]],[[1127,848],[-4,0]],[[1123,848],[-2,0]],[[1377,865],[-1,0]],[[1376,865],[-10,-1]],[[1374,888],[3,-23]],[[1366,864],[-1,-17],[-9,0]],[[1356,847],[0,24]],[[1346,849],[0,0]],[[1347,868],[-2,-5]],[[1356,847],[-7,0]],[[1349,847],[-2,22]],[[1376,865],[1,-60]],[[1377,805],[-11,1]],[[1366,806],[0,58]],[[1366,806],[0,-7]],[[1366,799],[-6,0],[0,24],[-4,0]],[[1356,823],[0,24]],[[1356,823],[-4,-17]],[[1352,806],[-3,41]],[[1123,848],[-4,-49]],[[1119,799],[-8,29]],[[1128,832],[1,-25]],[[1129,807],[0,-25]],[[1129,782],[-10,17]],[[1138,813],[0,0]],[[1136,813],[-7,-6]],[[1135,831],[1,-18]],[[1358,757],[0,0]],[[1366,799],[0,-26]],[[1366,773],[0,-16]],[[1366,757],[-7,0]],[[1359,757],[-6,27],[-1,22]],[[1136,813],[2,-41],[-2,-12],[-7,22]],[[1377,805],[-1,-32]],[[1376,773],[-10,0]],[[1372,704],[-1,-2]],[[1371,702],[0,-1]],[[1371,701],[-5,-3]],[[1366,698],[0,59]],[[1376,773],[-4,-69]],[[1366,698],[-7,59]],[[1335,1085],[-4,32]],[[1165,2918],[2,35],[5,-8],[1,-48],[4,-7]],[[1224,2842],[21,-18],[-20,-49]],[[1217,2709],[0,-56]],[[1208,2700],[9,9]],[[1226,2693],[0,-40]],[[1217,2709],[10,19],[-1,-35]],[[1226,2693],[5,-1]],[[1263,2750],[-4,8]],[[1259,2758],[12,11],[-8,-19]],[[1254,2734],[4,9]],[[1258,2743],[2,-17]],[[1263,2750],[-5,-7]],[[1258,2743],[1,15]],[[1279,2684],[0,-31]],[[1279,2653],[-4,-16]],[[1266,2723],[13,-39]],[[1286,2653],[-7,0]],[[1279,2684],[7,-7],[10,25]],[[1288,2616],[-4,9],[-7,-29]],[[1272,2554],[-2,-12]],[[1270,2515],[11,58],[-6,-58]],[[1321,2636],[-2,1]],[[1319,2637],[-2,16],[-12,8]],[[1305,2709],[3,-25],[10,1],[3,-49]],[[1319,2637],[-6,6],[-1,-20],[-9,25],[-7,-13]],[[1312,2572],[-5,7]],[[1307,2579],[5,39]],[[1303,2564],[4,15]],[[1300,2524],[-3,0]],[[1293,2524],[7,38],[0,-38]],[[1300,2524],[2,8]],[[1331,2564],[1,-32]],[[1328,2467],[-4,-24]],[[1330,2426],[3,23],[7,2],[2,-28]],[[1343,2374],[0,-50],[-3,5]],[[1338,2308],[-4,-39]],[[1334,2269],[-5,4]],[[1334,2269],[-4,-28]],[[1379,1419],[-4,-36]],[[1373,1380],[-1,10]],[[1386,1444],[2,-5]],[[1388,1439],[-7,-18]],[[306,325],[-1,1]],[[306,325],[0,0]],[[321,241],[8,-23],[6,-47],[-9,-36],[-2,-19],[-4,10],[-2,65],[3,50]],[[271,424],[0,-34],[-5,10],[5,24]],[[306,325],[-1,1]],[[310,312],[6,-10],[2,-25],[-5,-5],[-3,40]],[[291,375],[5,-38],[-6,0],[-3,26],[4,12]],[[11,3190],[6,-10],[-5,-17],[-1,27]],[[66,3236],[1,-26],[-9,-12],[8,38]],[[4902,3290],[9,-14],[-8,-9],[-1,23]],[[136,3275],[12,65],[7,-2],[-10,-42],[-9,-21]],[[170,3385],[6,-30],[-19,-42],[-3,7],[12,28],[-3,23],[7,14]],[[211,3482],[6,-34],[-21,-26],[3,43],[12,17]],[[278,3652],[0,-1]],[[278,3651],[0,-7]],[[278,3644],[-12,-44],[-1,-41],[4,-23]],[[269,3536],[-1,18],[-26,-44],[-6,-22],[-20,-29],[2,33],[5,2],[15,66],[22,-5],[-5,15],[3,26],[20,56]],[[664,3565],[4,-51],[-4,-20],[-8,24],[3,42],[5,5]],[[301,3813],[4,26]],[[305,3839],[9,0],[0,-26],[-13,0]],[[248,3833],[-4,-8]],[[244,3825],[4,8]],[[249,3834],[3,40],[11,48],[5,56],[10,49],[41,0]],[[319,4027],[0,-115],[-10,-32],[-8,-8],[2,-36]],[[303,3836],[-14,-23],[-11,14],[-2,-30],[-4,30],[-8,1],[-6,26],[-9,-20]],[[355,4027],[-4,-105],[-10,-49],[-5,0],[1,-49],[5,-8]],[[342,3816],[-5,-32],[-9,-10],[0,-29],[-14,-33],[-6,-34],[6,0]],[[314,3678],[-12,-37],[-12,-15],[-9,-31],[7,1],[-4,-28],[-12,-10],[-3,-22]],[[278,3644],[17,72],[2,71],[4,26]],[[305,3839],[-2,-3]],[[319,4027],[36,0]],[[357,3756],[13,-17],[2,-19],[-7,-31],[-5,6],[-12,-54],[1,18],[-10,3],[-3,28],[6,33],[8,-7],[1,30],[6,10]],[[358,3766],[10,33],[7,-12],[-11,-31],[-6,10]],[[357,3836],[-9,-23],[-6,-42],[-31,-78],[3,-15]],[[342,3816],[14,20]],[[356,3836],[1,0]],[[632,3748],[-1,-3]],[[632,3748],[0,0]],[[623,3771],[-2,-3]],[[623,3771],[0,0]],[[621,3768],[-6,-3]],[[615,3765],[0,9]],[[615,3774],[1,3]],[[616,3777],[5,-9]],[[621,3846],[13,-50],[3,-26]],[[637,3770],[-5,-21]],[[632,3749],[-1,-8]],[[631,3741],[-2,-3]],[[629,3738],[-7,37]],[[622,3775],[-7,16],[-3,56]],[[612,3847],[9,-1]],[[609,3847],[3,0]],[[612,3847],[-3,0]],[[616,3585],[0,8]],[[616,3585],[0,0]],[[648,3601],[4,-35],[-9,24],[5,11]],[[641,3645],[5,-21],[-6,-7],[1,28]],[[627,3639],[-1,-62],[-4,-1],[-2,61],[7,2]],[[627,3672],[13,-16],[-3,-45],[-7,0],[-3,61]],[[648,3695],[0,-24],[8,-45],[10,-19]],[[666,3607],[-16,-61]],[[650,3546],[4,20],[-1,37],[-13,59],[-8,17]],[[632,3679],[12,24],[4,-8]],[[597,3741],[-4,-1]],[[593,3740],[-1,0]],[[592,3740],[5,1]],[[632,3679],[-1,66]],[[632,3748],[0,1]],[[637,3770],[11,-75]],[[623,3771],[4,-62],[-9,-44],[1,35],[-4,65]],[[599,3756],[-2,-15]],[[597,3741],[-5,22],[8,19],[12,-22],[-4,-25],[-9,21]],[[605,3786],[0,0]],[[615,3765],[1,12]],[[570,3831],[6,9]],[[576,3840],[15,33]],[[591,3873],[11,-14],[3,-56]],[[605,3803],[-10,10],[2,-21],[-8,-15],[-19,54]],[[611,3881],[-4,0]],[[607,3881],[-1,1]],[[606,3882],[-5,35]],[[601,3917],[4,7],[6,-43]],[[609,3847],[-2,34]],[[611,3881],[10,-35]],[[606,3882],[4,-104],[-5,25]],[[591,3873],[2,32],[8,12]],[[616,3585],[-10,61],[2,20],[-6,30],[5,17],[6,-25],[4,-59],[-1,-36]],[[599,3756],[15,-48],[-10,10],[-2,-21],[-9,43]],[[201,4224],[7,-40],[-12,20],[5,20]],[[206,4212],[-7,23],[15,-2],[-8,-21]],[[227,4247],[8,-24],[16,0]],[[251,4223],[-3,-75],[8,-24]],[[256,4124],[4,-9],[-23,-35],[-9,7],[-21,-17],[-2,-32],[-14,-10]],[[191,4028],[-14,67],[8,19],[-1,28],[16,56],[9,-24],[-3,38]],[[206,4212],[21,35]],[[177,3982],[7,-12],[1,-34],[-8,-17],[-16,30],[0,15],[16,18]],[[201,3987],[-3,-17],[-11,24],[11,25],[7,-14],[-4,-18]],[[201,3987],[13,31],[-23,10]],[[256,4124],[17,0],[11,16],[20,-8],[46,-1],[11,25]],[[361,4156],[0,-81]],[[361,4075],[-7,0],[1,-48]],[[249,3834],[-1,-1]],[[244,3825],[-5,6],[-4,39],[4,26],[-10,75],[0,-26],[-11,-18],[-12,0],[-8,38],[3,22]],[[451,4238],[1,-86],[-7,0],[0,-72],[-21,-5]],[[424,4075],[-11,5]],[[413,4080],[-10,-22],[-14,-5]],[[389,4053],[-5,22],[-23,0]],[[361,4156],[0,40]],[[361,4196],[15,7],[33,50],[21,0],[0,13],[15,1]],[[445,4267],[6,-29]],[[430,4347],[14,-8]],[[444,4339],[1,-72]],[[361,4196],[8,42],[-6,45],[8,0],[6,40],[7,-7],[8,33],[38,-2]],[[424,4075],[0,-53],[-4,-11]],[[420,4011],[-4,10]],[[416,4021],[-14,29],[11,30]],[[421,3935],[0,50]],[[421,3985],[8,12],[0,-35],[-8,-27]],[[421,4006],[0,1]],[[421,4006],[0,0]],[[421,3989],[0,15]],[[421,4004],[0,-15]],[[421,4010],[-1,1]],[[451,4238],[47,-5],[1,-47],[11,6],[4,-16],[2,-57],[12,1]],[[528,4120],[0,-141]],[[528,3979],[-11,12],[-19,0],[-10,-49]],[[488,3942],[-29,43],[5,19],[-19,25],[-13,-10],[2,42],[-13,-51]],[[421,4010],[0,-6]],[[421,3989],[0,-4]],[[421,3935],[-10,7],[-23,-73],[-10,-5],[-2,23],[10,17],[-10,17],[7,41],[0,47],[14,30],[19,-18]],[[389,4053],[-19,-63],[-3,-41],[-9,-41],[-4,5],[-9,-32],[-1,-30],[12,-15]],[[528,3979],[14,-20],[13,16],[-2,-24],[22,-79],[1,-32]],[[570,3831],[-3,22],[-23,47],[3,33],[-10,-19],[-31,37],[-18,-9]],[[528,4734],[0,-247]],[[528,4487],[-12,-37],[-31,-71]],[[485,4379],[2,35],[-24,-3],[-7,39],[-19,-22],[-16,0],[0,-57],[9,-24]],[[251,4223],[2,49],[14,24],[-4,89],[6,16],[0,56]],[[269,4457],[0,40],[8,16],[15,0],[0,33],[18,0],[15,-16],[1,24],[18,14],[1,42],[-9,8],[1,33],[-8,37]],[[329,4688],[73,0],[56,0],[0,45],[70,1]],[[485,4379],[-41,-40]],[[528,4487],[0,-367]],[[329,4688],[-26,19],[-68,1],[-35,1],[0,-19],[-12,0]],[[188,4690],[-16,32],[4,48],[32,9],[12,37],[1,33],[15,52],[9,-5],[23,52],[23,4],[19,47],[15,-17],[-9,-23],[8,-9],[7,27],[13,-31],[15,14],[12,-9],[5,-37],[28,8],[40,-35],[16,2],[9,-16],[27,12],[27,-45],[5,1],[0,-107]],[[269,4457],[-3,-8],[-55,0],[-7,32],[-2,74]],[[202,4555],[8,1],[2,-49],[23,1],[7,18],[-16,55],[5,8],[10,-47],[19,-5],[-1,20],[-22,11],[5,23],[-31,15],[-5,45],[-18,39]],[[100,4295],[10,-21],[10,12],[10,-31],[12,-5],[-12,-30],[-18,44],[-8,-14],[-6,17],[2,28]],[[187,4539],[15,16]],[[227,4247],[20,22],[5,25],[-9,68],[9,10],[-5,28],[-19,-36],[-4,-19],[-5,30],[-26,-19],[-17,13],[-6,49],[4,16],[-24,28],[37,77]],[[638,3499],[4,-51],[-6,38],[2,13]],[[631,3603],[16,-54],[1,-36],[5,-11],[1,-41],[-4,-9],[-4,35],[-10,16],[2,32],[-7,68]],[[666,3607],[14,-26],[-1,-50],[3,-28],[-10,-48],[-6,40],[3,48],[-5,25],[-7,-10],[-3,-35],[-4,23]],[[1559,46],[1,-3]],[[1560,43],[0,-8]],[[1560,35],[-2,0]],[[1558,35],[0,5]],[[1558,40],[0,4]],[[1558,44],[1,2]],[[1558,66],[0,-7]],[[1558,59],[-1,0]],[[1557,59],[-1,6]],[[1556,65],[1,3]],[[1557,68],[1,-2]],[[1558,53],[1,-6]],[[1559,47],[0,-1]],[[1558,44],[-1,0]],[[1557,44],[0,1]],[[1557,45],[0,10]],[[1557,55],[1,-2]],[[1563,75],[0,-15]],[[1563,60],[-1,0]],[[1562,60],[0,2]],[[1562,62],[0,13]],[[1562,75],[1,0]],[[1561,32],[0,-7]],[[1561,25],[-1,0]],[[1560,25],[0,8]],[[1560,33],[1,-1]],[[1561,53],[0,-6]],[[1561,47],[-2,0]],[[1558,53],[1,4]],[[1559,57],[2,-4]],[[1573,59],[0,-1]],[[1573,58],[0,-9]],[[1573,49],[0,-9]],[[1573,40],[-1,5]],[[1572,45],[0,4]],[[1572,49],[0,9]],[[1572,58],[1,1]],[[1570,55],[1,-1]],[[1571,54],[0,-3]],[[1571,51],[-1,-4]],[[1570,47],[0,6]],[[1570,53],[0,2]],[[1567,34],[2,-3]],[[1569,31],[0,-3]],[[1569,28],[-2,0]],[[1567,28],[0,6]],[[1560,33],[0,2]],[[1560,43],[0,1]],[[1560,44],[1,-12]],[[1562,62],[-1,2]],[[1561,64],[0,11]],[[1561,75],[1,0]],[[1572,71],[-1,-2]],[[1571,69],[0,1]],[[1571,70],[0,3]],[[1571,73],[1,-2]],[[1564,44],[0,-2]],[[1564,42],[-1,0]],[[1563,42],[-1,0]],[[1562,42],[0,4]],[[1562,46],[0,5]],[[1562,51],[2,-7]],[[1564,42],[0,-14]],[[1564,28],[-1,2]],[[1563,30],[0,12]],[[1569,60],[0,-7]],[[1569,53],[-1,-1]],[[1568,52],[0,5]],[[1568,57],[0,4]],[[1568,61],[1,3]],[[1569,64],[0,-4]],[[1567,75],[0,-11]],[[1567,64],[-1,-2]],[[1566,62],[0,5]],[[1566,67],[0,7]],[[1566,74],[1,1]],[[1565,75],[0,-9]],[[1565,66],[0,-5]],[[1565,61],[0,-1]],[[1565,60],[-2,0]],[[1563,75],[2,0]],[[1568,75],[0,-13]],[[1568,62],[-1,2]],[[1567,75],[1,0]],[[1574,67],[0,-12]],[[1574,55],[0,2]],[[1574,57],[-1,8]],[[1573,65],[0,7]],[[1573,72],[1,-5]],[[1572,70],[0,-13]],[[1572,57],[-1,-1]],[[1571,56],[0,13]],[[1572,71],[0,-1]],[[1574,51],[0,-8]],[[1574,43],[0,-2]],[[1574,41],[-1,-4]],[[1573,37],[0,3]],[[1573,49],[1,2]],[[1566,44],[1,-7]],[[1567,37],[0,-3]],[[1567,28],[-1,-1]],[[1566,27],[0,17]],[[1574,55],[0,-4]],[[1573,58],[1,-1]],[[1566,45],[0,-1]],[[1566,44],[-2,1]],[[1564,45],[1,13]],[[1565,58],[1,-13]],[[1569,74],[0,-8]],[[1569,66],[0,-2]],[[1568,61],[0,1]],[[1568,75],[1,-1]],[[1559,58],[0,-1]],[[1557,55],[-1,2]],[[1556,57],[1,2]],[[1558,59],[1,-1]],[[1562,60],[0,-9]],[[1562,46],[-1,1]],[[1561,53],[0,11]],[[1573,28],[-1,-1]],[[1572,27],[0,6]],[[1572,33],[1,-5]],[[1560,25],[-2,0]],[[1558,25],[0,10]],[[1570,43],[0,-4]],[[1570,39],[0,-2]],[[1570,37],[-1,7]],[[1569,44],[1,3]],[[1570,47],[0,-4]],[[1559,73],[0,-7]],[[1559,66],[0,-8]],[[1558,66],[1,7]],[[1557,44],[1,-4]],[[1558,25],[-1,20]],[[1573,37],[0,-2]],[[1573,35],[2,-7]],[[1575,28],[-2,0]],[[1572,33],[1,7]],[[1568,57],[-1,-3]],[[1567,54],[0,10]],[[1556,57],[0,8]],[[1557,68],[1,10]],[[1558,78],[1,-5]],[[1563,30],[-2,-4]],[[1561,26],[1,16]],[[1571,56],[0,-2]],[[1570,55],[0,4]],[[1570,59],[1,7]],[[1571,66],[0,4]],[[1565,60],[0,-2]],[[1564,45],[0,-1]],[[1572,45],[-2,-2]],[[1571,51],[1,-2]],[[1571,34],[-1,-8]],[[1570,26],[-1,2]],[[1569,31],[1,6]],[[1570,39],[1,-5]],[[1560,66],[1,-2]],[[1559,66],[1,0]],[[1573,40],[-2,-6]],[[1570,59],[-1,1]],[[1569,66],[1,1]],[[1570,67],[1,-1]],[[1560,66],[0,9]],[[1560,75],[1,0]],[[1566,62],[-1,-1]],[[1565,66],[1,1]],[[1570,53],[-1,0]],[[1565,75],[1,-1]],[[1573,65],[0,-6]],[[1572,58],[0,-1]],[[1572,70],[1,2]],[[1572,27],[-2,-1]],[[1561,26],[0,-1]],[[1560,44],[2,2]],[[1567,46],[1,0]],[[1568,46],[1,-2]],[[1567,37],[0,9]],[[1566,44],[1,2]],[[1567,54],[-1,-9]],[[1566,27],[-2,1]],[[1568,52],[0,-6]],[[1558,78],[2,-3]],[[1575,41],[1,-5]],[[1576,36],[-1,-5]],[[1575,31],[-2,4]],[[1574,41],[1,0]],[[1570,67],[0,6]],[[1570,73],[1,0]],[[1578,63],[-1,-6]],[[1577,57],[0,9]],[[1577,66],[1,-3]],[[1576,69],[-1,-4]],[[1575,65],[-1,2]],[[1573,72],[3,-3]],[[1575,31],[0,-3]],[[1577,57],[0,-1]],[[1577,56],[-1,-1]],[[1576,55],[-1,10]],[[1576,69],[1,-3]],[[1577,56],[1,-7]],[[1578,49],[-1,-3]],[[1577,46],[-1,2]],[[1576,48],[0,7]],[[1576,48],[-1,-7]],[[1574,43],[1,10]],[[1575,53],[1,2]],[[1575,53],[-1,2]],[[1578,56],[-1,1]],[[1578,63],[0,-7]],[[1578,56],[0,-7]],[[1577,46],[-1,-10]],[[1569,74],[1,-1]],[[1464,2138],[0,0]],[[1437,1728],[0,0]],[[1137,831],[0,5]],[[1137,836],[0,-5]],[[1137,831],[0,0]],[[1388,1441],[0,0]],[[1245,1115],[1,-2]],[[1246,1113],[0,0]],[[1233,1074],[0,0]],[[1367,1035],[1,0]],[[1368,1035],[-1,0]],[[421,4007],[0,0]]],"transform":{"scale":[0.07174208422821748,0.010734495800941825],"translate":[-178.8716846945846,17.680841450221845]}} \ No newline at end of file diff --git a/src/js/config/mapconfig/schemas/counties.js b/src/js/config/mapconfig/schemas/counties.js new file mode 100644 index 00000000..a4e4e4c0 --- /dev/null +++ b/src/js/config/mapconfig/schemas/counties.js @@ -0,0 +1,5 @@ + + +const counties = {}; + +module.exports = counties; diff --git a/src/js/config/mapconfig/schemas/nyc.js b/src/js/config/mapconfig/schemas/nyc.js new file mode 100644 index 00000000..f6a26c77 --- /dev/null +++ b/src/js/config/mapconfig/schemas/nyc.js @@ -0,0 +1,38 @@ +const boroughs = { + 1: ['Staten Island'], + 2: ['Queens'], + 4: ['Brooklyn'], + 3: ['Manhattan'], + 5: ['Bronx'], + 'Staten Island': 1, + 'Queens': 2, + 'Brooklyn': 4, + 'Manhattan':3, + 'Bronx':5 +} + +const nyc = { + name: 'NYC', + values: [boroughs], + proj: 'mercator', + translate: [46400, 28000], + precision: 1, + scale: [35700], + topojson: require('./../mapfiles/nyc/nyc.json'), + feature: 'nyc', + adjustLabels: function(adjusty=0,adjustx=0, label) { + return [adjusty,adjustx,label]; + }, + matchLogic: function(val) { + + if (boroughs[val]) { return boroughs[val]; } + else if (!isNaN(val)) { return +val; } + else { return val; } + }, + test: function(column_val, polygon_val) { + + return (this.matchLogic(polygon_val) == column_val); + } + } + +module.exports = nyc; diff --git a/src/js/config/mapconfig/schemas/us50.js b/src/js/config/mapconfig/schemas/us50.js new file mode 100644 index 00000000..b6fdd753 --- /dev/null +++ b/src/js/config/mapconfig/schemas/us50.js @@ -0,0 +1,72 @@ +import {clone, reduce, keys, isUndefined, isArray, toNumber} from 'lodash'; + +const convertPostaltoFIPS = require('us-abbreviations')('postal','fips'); +const convertPostaltoFull = require('us-abbreviations')('postal','full'); + +const us = { + name: 'states50', + proj: 'albersUsa', + translate: [320, 180], + precision: 1, + scale: 730, + topojson : require('./../mapfiles/us-50/us-simple.json'), + feature: 'states', + adjustLabels: function(adjusty=0,adjustx=0, label) { + + if (label == 'VT') { + adjusty = -25; + } + if (label == 'NH') { + adjustx = 25; + adjusty = -5; + } + if (label == 'MA') { + adjusty = -3; + adjustx = 26; + } + if (label == 'RI') { + adjustx = 16; + adjusty = 2; + } + if (label == 'CT') { + adjustx = 12; + adjusty = 12; + } + if (label == 'NJ') { + adjustx = 15; + } + if (label == 'DC') { + label = ''; + } + if (label == 'DE') { + adjustx = 31; + adjusty = -5; + } + if (label == 'MD') { + adjustx = 31; + adjusty = 10; + } + if (label == 'FL') { + adjustx = 9; + } + if (label == 'LA') { + adjustx = -4; + } + if (label == 'HI') { + adjustx = -12; + } + + return [adjusty,adjustx,label]; + }, + matchLogic(input) { + return convertPostaltoFIPS(input) || convertPostaltoFull(input) || input; + }, + test: function(column_val, polygon_val) { + // loop through object .. find the key val of the one you want.. + const column_val_converted = this.matchLogic(column_val); // + + return (toNumber(column_val_converted) === toNumber(polygon_val)); + } + } + +module.exports = us; diff --git a/src/js/config/mapconfig/states-list.js b/src/js/config/mapconfig/states-list.js new file mode 100644 index 00000000..aafde94b --- /dev/null +++ b/src/js/config/mapconfig/states-list.js @@ -0,0 +1,55 @@ +const states_list = [{ state: "AK" }, + {state: "AL" }, + {state: "AR" }, + {state: "AZ" }, + {state: "CA" }, + {state: "CO" }, + {state: "CT" }, + {state: "DE" }, + {state: "DC" }, + {state: "FL" }, + {state: "GA" }, + {state: "HI" }, + {state: "ID" }, + {state: "IL" }, + {state: "IN" }, + {state: "IA" }, + {state: "KS" }, + {state: "KY" }, + {state: "LA" }, + {state: "ME" }, + {state: "ME2" }, + {state: "MD" }, + {state: "MA" }, + {state: "MI" }, + {state: "MN" }, + {state: "MS" }, + {state: "MO" }, + {state: "MT" }, + {state: "NE" }, + {state: "NE2" }, + {state: "NV" }, + {state: "NH" }, + {state: "NJ" }, + {state: "NM" }, + {state: "NY" }, + {state: "NC" }, + {state: "ND" }, + {state: "OH" }, + {state: "OK" }, + {state: "OR" }, + {state: "PA" }, + {state: "RI" }, + {state: "SC" }, + {state: "SD" }, + {state: "TN" }, + {state: "TX" }, + {state: "UT" }, + {state: "VT" }, + {state: "VA" }, + {state: "WA" }, + {state: "WV" }, + {state: "WI" }, + {state: "WY" }]; + +module.exports = states_list; diff --git a/src/js/maps/MapConfig.js b/src/js/maps/MapConfig.js new file mode 100644 index 00000000..42a9d9ac --- /dev/null +++ b/src/js/maps/MapConfig.js @@ -0,0 +1,52 @@ +/** +* ### Chart config +* Set up a configuration object for a given chart type +* @name ChartConfig +* @class +* @property {object} settings +* @property {string} settings.displayName - How this type's name should be displayed in the interface +* @property {function} settings.parser - Func to parse input for this chart type +* @property {function} settings.calculateDimensions - Func to calculate dimensions of this chart type +* @property {object} settings.display - Static display config for this chart type, such as positioning and spacing +* @property {object} settings.defaultProps - Defaults for dynamic properties that will be used to draw the chart +*/ + +function MapConfig(settings) { + this.displayName = settings.displayName; + + /** + * Func that parses input and settings to return newly parsed `chartProps` + * @param {object} config - The parsed configuration for this chart type + * @param {object} _chartProps - Previous `chartProps` + * @param {function} callback - Function to pass new `chartProps` to upon parse completion + * @param {object} parseOpts - Additional parse options + * + * @return {Object} chartProps - Updated `chartProps` + * @memberof ChartConfig + * @instance + */ + this.parser = settings.parser; + + /** + * Func that returns an object of `{width: N, height: N}` that will determine + * dimensions of a chart + * @param {number} width - Width of container or area that will contain the chart + * @param {object} model - The `chartProps` and `metadata` of the current chart + * @param {object} chartConfig - Parsed chart configuration + * @param {boolean} enableResponsive - Should we make dimensions relative to + * container or use preset sizes + * @param {number} extraHeight - Additional height we need to account for, eg + * from wrapped text at the footer + * + * @return {Object} dimensions - Dimensions returned by calculation + * @return {number} dimensions.width + * @return {number} dimension.height + * @memberof ChartConfig + * @instance + */ + this.calculateDimensions = settings.calculateDimensions; + this.display = settings.display; + this.defaultProps = settings.defaultProps; +} + +module.exports = MapConfig; diff --git a/src/js/maps/editors.js b/src/js/maps/editors.js new file mode 100644 index 00000000..115de2d8 --- /dev/null +++ b/src/js/maps/editors.js @@ -0,0 +1,19 @@ +/** + * @name editors + */ + +// Editor components for chart types, as well as their mobile override editor interfaces +module.exports = { + map50: { + Editor: require("../components/map-50/Map50Editor.jsx"), + MobileOverrides: require("../components/map-50/Map50Mobile.jsx") + }, + mapcartogram: { + Editor: require("../components/map-cartogram/MapCartogramEditor.jsx"), + MobileOverrides: require("../components/map-cartogram/MapCartogramMobile.jsx") + }, + mapbubble: { + Editor: require("../components/map-bubble/MapBubbleEditor.jsx"), + MobileOverrides: require("../components/map-bubble/MapBubbleMobile.jsx") + } +}; diff --git a/src/js/maps/map-config.js b/src/js/maps/map-config.js new file mode 100644 index 00000000..c313d8cf --- /dev/null +++ b/src/js/maps/map-config.js @@ -0,0 +1,9 @@ +// Object containing chart types and their respective configs +const mapConfig = { + map50: require('./mb-50/mb-50-config'), + mapcartogram: require('./mb-cartogram/mb-cartogram-config'), + mapbubble: require('./mb-bubble/mb-bubble-config') + +} + +module.exports = mapConfig; diff --git a/src/js/maps/mb-50/50-parse.js b/src/js/maps/mb-50/50-parse.js new file mode 100644 index 00000000..3f88966c --- /dev/null +++ b/src/js/maps/mb-50/50-parse.js @@ -0,0 +1,258 @@ +import {clone, map, assign, each, filter, flatten, isEqual} from 'lodash'; + +const colorScales = require('./../../util/colorscales'); +const dataBySeries = require("./../../util/parse-data-by-series"); +const help = require("../../util/helper"); +const SessionStore = require("../../stores/SessionStore"); + +const parseDelimInput = require("./../../util/parse-delimited-input").parser; +const parseColumns = require("./../../util/parse-delimited-input")._parseColumnVals; +const parseMapType = require('./../../util/parse-map-type'); + +/** + * see [ChartConfig#parser](#chartconfig/parser) + * @see ChartConfig#parser + * @instance + * @memberof xy_config + */ + + +const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { + // Build chart settings from defaults or provided settings + + parseOpts = parseOpts || {}; + // clone so that we aren't modifying original + // this can probably be avoided by applying new settings differently + let chartProps = JSON.parse(JSON.stringify(_chartProps)); + + let bySeries = dataBySeries(chartProps.input.raw, chartProps, { + type: chartProps.input.type + }); + + const dataParsed = bySeries.data; + + let parsedInputEntries = dataParsed.entries; + const columnNames = dataParsed.columnNames; + + const scaleNames = []; + const scaleIndex = []; + + bySeries.series.forEach((d) => { + scaleIndex.push(d.name); + scaleNames.push(d.name); + }); + + const labels = chartProps._annotations.labels; + const _computed = {}; + + scaleIndex.forEach((name, i) => { + _computed[i] = { + data : [] + }; + }); + + const chartSettings = map(bySeries.series, (dataSeries, i) => { + let settings; + + if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; + else { + settings = clone(config.defaultProps.chartProps.chartSettings[0], true); + settings.colorIndex = i; + } + + if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); + else { + settings.label = settings.label || bySeries.series[i].name; + } + + const values = map(dataSeries.values, (d) => { + return +d[columnNames[2]]; + }); + + _computed[i].data = _computed[i].data.concat(values); + + return settings; + }); + + // not needed + labels.values = map(bySeries.series, (dataSeries, i) => { + + if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); + else { + return { + name: dataSeries.name + }; + } + }); + + const scale = {}; + const legends = {}; + const mobileScale = {}; + const maxPrecision = 1; + const factor = Math.pow(10, maxPrecision); + + // Calculate domain and tick values for any scales that exist + each(scaleNames, (name,j) => { + + let currScale; + const currLegend = {}; + + if (chartProps.scale) { + if (chartProps.scale[j]) currScale = chartProps.scale[j]; + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + } + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + + let domain = help.computeScaleDomain(currScale, _computed[j].data); + + assign(currScale, domain); + + if (_computed[j].data.length <= currScale.colors) currScale.colors = _computed[j].data.length; + + currScale.ticks = currScale.colors + 1; + const ticks = currScale.ticks; + + const totalcolors = currScale.colors; + + currScale.colorIndex = chartSettings[j].colorIndex; + + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); + + currScale.tickValues.forEach((v, i) => { + const tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currScale.precision) { + currScale.precision = tickPrecision; + } + currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; + + }); + + currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + + scale[j] = currScale; + chartSettings[j].scale = currScale; + + currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; + currLegend.type = currScale.type; + currLegend.label = chartSettings[j].label; + currLegend.prefix = currScale.prefix; + currLegend.suffix = currScale.suffix; + currLegend.shapes = help.constructLegendShapes(currScale.colors); + currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); + currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); + currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); + + //currLegend.spacings = help.constructLegendSpacings(); + //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); + + + legends[name] = currLegend; + chartSettings[j].legends = currLegend; + + /* + + this is not right + */ + /*if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale[name]; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: _computed.hasColumn + }); + assign(currMobile, domain); + + } + } + } else { + chartProps.mobile = {}; + } */ + + }); + + // this should all be included in one big loopa loop + + each(chartSettings, (z,g) => { + + map(bySeries.series, (dataSeries, i) => { + if (dataSeries.name === z.label) { + //chartSettings[g].scale = scale[z.label]; + if (bySeries.isNumeric) { + chartSettings[g].scale.isNumeric = bySeries.isNumeric; + + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || + clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ + } + } + }); + }); + + const firstColumn = columnNames[0]; + const allData = bySeries.series; + + let schema; + + if (priorData.length) { + + const test2 = parseMapType.first_column(priorData, firstColumn); + const test = parseMapType.first_column(allData, firstColumn); + + const test3 = help.isEqualTest(test2, test); + + if (!test3) schema = parseMapType.determine_map(firstColumn, allData); + else schema = priorSchema; + } + else { + + schema = parseMapType.determine_map(firstColumn, allData); + } + + + /* + + if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale.numericSettings; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: false + }); + assign(currMobile, domain); + + let ticks = currMobile.ticks; + currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); + each(currMobile.tickValues, function(v) { + let tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currMobile.precision) { + currMobile.precision = tickPrecision; + } + }); + } + chartProps.mobile.scale.numericSettings = currMobile; + } + } else { + chartProps.mobile = {}; + } */ + + let newChartProps = assign(chartProps, { + chartSettings: chartSettings, + data: bySeries.series, + entries: parsedInputEntries, + input: bySeries.input, + columns: columnNames, + scale: scale, + legend: legends, + schema: schema + }); + + if (callback) { + callback(newChartProps); + } else { + return newChartProps; + } +} + +module.exports = parse50; diff --git a/src/js/maps/mb-50/mb-50-config.js b/src/js/maps/mb-50/mb-50-config.js new file mode 100644 index 00000000..97bd481b --- /dev/null +++ b/src/js/maps/mb-50/mb-50-config.js @@ -0,0 +1,157 @@ +const MapConfig = require("../MapConfig"); +let now = new Date(); + +/** + * ### Configuration of an XY chart + * @name xy_config + */ + +/** +* display +* @static +* @memberof xy_config +* @property {Nem|number} labelRectSize - Size of the legend label rectangle +* @property {Nem|number} labelXMargin - Horiz distance btwn labels +* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text +* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels +* items with colors the appropriate indexed CSS class +* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart +* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart +* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker +* @property {Nem|number} columnPaddingCoefficient - Distance relative to +* width that column charts should be from edge of the chart +* @property {Nem|number} minPaddingOuter - Minimum distance between the +* outside of a chart and a graphical element +* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn +* @property {object} aspectRatio +* @property {number|fraction} aspectRatio.wide +* @property {number|fraction} aspectRatio.longSpot +* @property {number|fraction} aspectRatio.smallSpot +* @property {object} margin - Distances btwn outer chart elements and container +* @property {object} padding - Distances btwn inner chart elements and container +*/ + + + +let display = Object.freeze({ + labelRectSize: "0.6em", + labelXMargin: "0.6em", + labelTextMargin: "0.3em", + labelRowHeight: "1.2em", + afterTitle: "1.6em", + afterLegend: "1.6em", + blockerRectOffset: "0.3em", + columnPaddingCoefficient: 0.3, + minPaddingOuter: "1em", + bottomPaddingWithoutFooter: "3em", + aspectRatio: { + wide: (6 / 7), + longSpot: (4 / 3), + smallSpot: (3 / 4) + }, + margin: { + top: "1.2em", + right: "0.8em", + bottom: "1.2em", + left: "0.8em", + maptop: "3.5em", + mapleft: "", + subtitle: "2em", + legendleft: "2em", + legendsOneRow: "23em", + legendsTwoRow: "22.5em" + }, + padding: { + top: 0, + right: 0, + bottom: "4em", + left: 0 + } +}); + +/** +* @name xy_defaultProps +* @static +* @memberof xy_config +*/ +const defaultProps = Object.freeze({ + /** + * @name chartProps + * @property {object} scale - Default settings for date and primary scales + * @property {array} data + * @property {object} input + * @property {object[]} chartSettings - Default settings for a given series (column) of data + * @property {object} extraPadding - Additional padding. This is a dynamic + * value and is mostly changed within the component itself + * @property {object} _annotations - Additional informative graphical elements + * @property {object} _annotations.labels - If labels are dragged, their + * position settings are saved here + * @property {object[]} _annotations.labels.values - Array of settings for + * dragged labels + * @property {object} mobile - Mobile-specific override settings + * @static + * @memberof xy_defaultProps + */ + chartProps: { + + data: [], + input: {}, + stylings: { + stroke:'#666', + showLegendTicks: true, + showStateLabels: false, + legendPrecision: 1 + }, + chartSettings: [ + { + colorIndex: 0, + scale: { + ticks: 5, + colors: 4, + precision: 1, + prefix: "", + suffix: "", + type: "quantize" + } + }, + ], + extraPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0 + }, + _annotations: { + labels: { + hasDragged: false, + values: [] + } + }, + mobile: {} + }, + /** + * @name metadata + * @property {string} chartType + * @property {string} size + * @static + * @memberof xy_defaultProps + */ + metadata: { + chartType: 'map50', + title: "Title", + subtitle: "Subtitle", + source: "TK", + credit: "", + size: "auto" + } +}); + +const map_config = new MapConfig({ + displayName: "US Choropleth", + parser: require("./50-parse"), + calculateDimensions: require("./mb-50-dimensions"), + display: display, + defaultProps: defaultProps +}); + +module.exports = map_config; diff --git a/src/js/maps/mb-50/mb-50-dimensions.js b/src/js/maps/mb-50/mb-50-dimensions.js new file mode 100644 index 00000000..61cc8367 --- /dev/null +++ b/src/js/maps/mb-50/mb-50-dimensions.js @@ -0,0 +1,37 @@ +const chartSizes = require("../../config/map-sizes"); + +// TODO: jsDocify this if it works + +/** + * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) + * @see ChartConfig#calculateDimensions + * @instance + * @memberof xy_config + */ +function calculate_map_dimensions(width, opts) { + let height; + let aspectRatio = opts.displayConfig.aspectRatio; + let metadata = opts.model.metadata; + + if (metadata.size == "auto" || opts.enableResponsive) { + // use current width + } else { + width = chartSizes[metadata.size].width; + } + + switch (metadata.size) { + case "auto": + height = width * aspectRatio.wide; + break; + + default: + height = width * aspectRatio.wide; + } + + return { + width: width, + height: height + opts.extraHeight + }; +} + +module.exports = calculate_map_dimensions; diff --git a/src/js/maps/mb-bubble/Bubble-parse.js b/src/js/maps/mb-bubble/Bubble-parse.js new file mode 100644 index 00000000..62113a49 --- /dev/null +++ b/src/js/maps/mb-bubble/Bubble-parse.js @@ -0,0 +1,285 @@ +import {clone, map, assign, each, filter, flatten} from 'lodash'; + +const colorScales = require('./../../util/colorscales'); +const dataBySeries = require("./../../util/parse-data-by-series"); +const help = require("../../util/helper"); +//const help_50 = require("./50-parse-helpers"); +const SessionStore = require("../../stores/SessionStore"); + +const parseDelimInput = require("./../../util/parse-delimited-input").parser; +const parseColumns = require("./../../util/parse-delimited-input")._parseColumnVals; +const parseMapType = require('./../../util/parse-map-type'); + +/** + * see [ChartConfig#parser](#chartconfig/parser) + * @see ChartConfig#parser + * @instance + * @memberof xy_config + */ +let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { + // Build chart settings from defaults or provided settings + + parseOpts = parseOpts || {}; + // clone so that we aren't modifying original + // this can probably be avoided by applying new settings differently + let chartProps = JSON.parse(JSON.stringify(_chartProps)); + + let bySeries = dataBySeries(chartProps.input.raw, chartProps, { + type: chartProps.input.type + }); + + const dataParsed = bySeries.data; + + let parsedInputEntries = dataParsed.entries; + const columnNames = dataParsed.columnNames; + + const scaleNames = []; + const scaleIndex = []; + + bySeries.series.forEach((d) => { + scaleIndex.push(d.name); + scaleNames.push(d.name); + }); + + /*chartProps.chartSettings.forEach((d,i) => { + if (d.label && scaleIndex[i] !== d.label) scaleNames[i] = d.label; + });*/ + + const labels = chartProps._annotations.labels; + const allColumn = true; + // check if either scale contains columns, as we'll need to zero the axis + const _computed = {}; + + scaleIndex.forEach((name, i) => { + + _computed[i] = { + data : [] + }; + + }); + + const chartSettings = map(bySeries.series, (dataSeries, i) => { + let settings; + + if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; + else { + settings = clone(config.defaultProps.chartProps.chartSettings[0], true); + settings.colorIndex = i; + } + + if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); + else { + settings.label = settings.label || bySeries.series[i].name; + } + + const values = map(dataSeries.values, (d) => { + return +d[columnNames[2]]; + }); + + _computed[i].data = _computed[i].data.concat(values); + + return settings; + }); + + // not needed + labels.values = map(bySeries.series, (dataSeries, i) => { + + if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); + else { + return { + name: dataSeries.name + }; + } + }); + + const scale = {}; + const legends = {}; + const mobileScale = {}; + const maxPrecision = 1; + const factor = Math.pow(10, maxPrecision); + + // Calculate domain and tick values for any scales that exist + each(scaleNames, (name,j) => { + + let currScale; + const currLegend = {}; + + if (chartProps.scale) { + if (chartProps.scale[j]) currScale = chartProps.scale[j]; + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + } + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + + let domain = help.computeScaleDomain(currScale, _computed[j].data); + + assign(currScale, domain); + + const totalcolors = 1; + const ticks = 2; + + currScale.ticks = ticks; + + currScale.colorIndex = chartSettings[j].colorIndex; + + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); + + currScale.tickValues.forEach((v, i) => { + const tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currScale.precision) { + currScale.precision = tickPrecision; + } + currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; + + }); + + currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + + scale[j] = currScale; + chartSettings[j].scale = currScale; + + currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; + currLegend.type = currScale.type; + currLegend.label = chartSettings[j].label; + currLegend.prefix = currScale.prefix; + currLegend.suffix = currScale.suffix; + currLegend.shapes = help.constructLegendShapes(1); + currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); + currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); + currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); + + //currLegend.spacings = help.constructLegendSpacings(); + //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); + + + legends[name] = currLegend; + chartSettings[j].legends = currLegend; + + /* + + this is not right + */ + /*if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale[name]; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: _computed.hasColumn + }); + assign(currMobile, domain); + + } + } + } else { + chartProps.mobile = {}; + } */ + + }); + + // this should all be included in one big loopa loop + + each(chartSettings, (z,g) => { + + map(bySeries.series, (dataSeries, i) => { + if (dataSeries.name === z.label) { + //chartSettings[g].scale = scale[z.label]; + if (bySeries.isNumeric) { + chartSettings[g].scale.isNumeric = bySeries.isNumeric; + + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || + clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ + } + } + }); + }); + + let allData = []; + + each(bySeries.series, (item, j) => { + + const thisItem = map(item.values, (d) => { + d.index = item.index; + return d; }); + + allData.push(thisItem); + }); + + allData = flatten(allData); + + + + const firstColumn = columnNames[0]; + const allSeriesData = bySeries.series; + + let schema; + + if (priorData.length) { + + const test2 = parseMapType.first_column(priorData, firstColumn); + const test = parseMapType.first_column(allSeriesData, firstColumn); + + const test3 = help.isEqualTest(test2, test); + + if (!test3) schema = parseMapType.determine_map(firstColumn, allSeriesData); + else schema = priorSchema; + } + else { + + schema = parseMapType.determine_map(firstColumn, allSeriesData); + } + + + + + /* + + if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale.numericSettings; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: false + }); + assign(currMobile, domain); + + let ticks = currMobile.ticks; + currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); + each(currMobile.tickValues, function(v) { + let tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currMobile.precision) { + currMobile.precision = tickPrecision; + } + }); + } + chartProps.mobile.scale.numericSettings = currMobile; + } + } else { + chartProps.mobile = {}; + } */ + + + //console.log(bySeries.series,'series'); + + let newChartProps = assign(chartProps, { + chartSettings: chartSettings, + columns: columnNames, + entries: parsedInputEntries, + input: bySeries.input, + data: bySeries.series, + alldata: allData, + scale: scale, + schema: schema, + legend: legends + }); + + if (callback) { + callback(newChartProps); + } else { + return newChartProps; + } + +} + +module.exports = parse50; diff --git a/src/js/maps/mb-bubble/mb-Bubble-config.js b/src/js/maps/mb-bubble/mb-Bubble-config.js new file mode 100644 index 00000000..e680c7d6 --- /dev/null +++ b/src/js/maps/mb-bubble/mb-Bubble-config.js @@ -0,0 +1,160 @@ +const MapConfig = require("./../MapConfig"); +let now = new Date(); + +/** + * ### Configuration of an XY chart + * @name xy_config + */ + +/** +* display +* @static +* @memberof xy_config +* @property {Nem|number} labelRectSize - Size of the legend label rectangle +* @property {Nem|number} labelXMargin - Horiz distance btwn labels +* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text +* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels +* items with colors the appropriate indexed CSS class +* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart +* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart +* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker +* @property {Nem|number} columnPaddingCoefficient - Distance relative to +* width that column charts should be from edge of the chart +* @property {Nem|number} minPaddingOuter - Minimum distance between the +* outside of a chart and a graphical element +* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn +* @property {object} aspectRatio +* @property {number|fraction} aspectRatio.wide +* @property {number|fraction} aspectRatio.longSpot +* @property {number|fraction} aspectRatio.smallSpot +* @property {object} margin - Distances btwn outer chart elements and container +* @property {object} padding - Distances btwn inner chart elements and container +*/ + + + +let display = Object.freeze({ + labelRectSize: "0.6em", + labelXMargin: "0.6em", + labelTextMargin: "0.3em", + labelRowHeight: "1.2em", + afterTitle: "1.6em", + afterLegend: "1.6em", + blockerRectOffset: "0.3em", + columnPaddingCoefficient: 0.3, + minPaddingOuter: "1em", + bottomPaddingWithoutFooter: "3em", + aspectRatio: { + wide: (6 / 7), + longSpot: (4 / 3), + smallSpot: (3 / 4) + }, + margin: { + top: "1.2em", + right: "0.8em", + bottom: "1.2em", + left: "0.8em", + maptop: "2.5em", + mapleft: "", + subtitle: "2em", + legendleft: "2em", + legendsOneRow: "23em", + legendsTwoRow: "22.5em" + }, + padding: { + top: 0, + right: 0, + bottom: "2em", + left: 0 + } +}); + +/** +* @name xy_defaultProps +* @static +* @memberof xy_config +*/ +const defaultProps = Object.freeze({ + /** + * @name chartProps + * @property {object} scale - Default settings for date and primary scales + * @property {array} data + * @property {object} input + * @property {object[]} chartSettings - Default settings for a given series (column) of data + * @property {object} extraPadding - Additional padding. This is a dynamic + * value and is mostly changed within the component itself + * @property {object} _annotations - Additional informative graphical elements + * @property {object} _annotations.labels - If labels are dragged, their + * position settings are saved here + * @property {object[]} _annotations.labels.values - Array of settings for + * dragged labels + * @property {object} mobile - Mobile-specific override settings + * @static + * @memberof xy_defaultProps + */ + chartProps: { + + data: [], + input: {}, + stylings: { + stroke:'#fff', + radiusVal: 25, + legendMove: { + top:0, + left:0 + }, + legendText: 'Write what the legend shapes represent here' + }, + chartSettings: [ + { + colorIndex: 0, + scale: { + ticks: 5, + colors: 4, + precision: 1, + prefix: "", + suffix: "", + type: "quantize" + } + }, + ], + extraPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0 + }, + _annotations: { + labels: { + hasDragged: false, + values: [] + } + }, + mobile: {} + }, + /** + * @name metadata + * @property {string} chartType + * @property {string} size + * @static + * @memberof xy_defaultProps + */ + metadata: { + chartType: 'mapbubble', + title: "Title", + subtitle: "Subtitle", + source: "TK", + credit: "", + size: "auto" + } +}); + +const map_config = new MapConfig({ + displayName: "US Bubble", + parser: require("./Bubble-parse"), + calculateDimensions: require("./mb-bubble-dimensions"), + display: display, + defaultProps: defaultProps +}); + +module.exports = map_config; diff --git a/src/js/maps/mb-bubble/mb-bubble-dimensions.js b/src/js/maps/mb-bubble/mb-bubble-dimensions.js new file mode 100644 index 00000000..991c7f8c --- /dev/null +++ b/src/js/maps/mb-bubble/mb-bubble-dimensions.js @@ -0,0 +1,40 @@ +const chartSizes = require("../../config/map-sizes"); + +// TODO: jsDocify this if it works + +/** + * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) + * @see ChartConfig#calculateDimensions + * @instance + * @memberof xy_config + */ +function calculate_map_dimensions(width, opts) { + let height; + let aspectRatio = opts.displayConfig.aspectRatio; + let metadata = opts.model.metadata; + + if (metadata.size == "auto" || opts.enableResponsive) { + // use current width + } else { + width = chartSizes[metadata.size].width; + } + + + console.log(aspectRatio,'ratio'); + + switch (metadata.size) { + case "auto": + height = width * aspectRatio.wide; + break; + + default: + height = width * aspectRatio.wide; + } + + return { + width: width, + height: height + opts.extraHeight + }; +} + +module.exports = calculate_map_dimensions; diff --git a/src/js/maps/mb-cartogram/Cartogram-parse.js b/src/js/maps/mb-cartogram/Cartogram-parse.js new file mode 100644 index 00000000..24d11b4b --- /dev/null +++ b/src/js/maps/mb-cartogram/Cartogram-parse.js @@ -0,0 +1,281 @@ +import {clone, map, assign, each, filter, flatten} from 'lodash'; + +const colorScales = require('./../../util/colorscales'); +const dataBySeries = require("./../../util/parse-data-by-series"); +const help = require("../../util/helper"); +//const help_50 = require("./50-parse-helpers"); +const SessionStore = require("../../stores/SessionStore"); + +const parseColumns = require("./../../util/parse-delimited-input")._parseColumnVals; +const parseMapType = require('./../../util/parse-map-type'); + +const parseDelimInput = require("./../../util/parse-delimited-input").parser; + +/** + * see [ChartConfig#parser](#chartconfig/parser) + * @see ChartConfig#parser + * @instance + * @memberof xy_config + */ +let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { + // Build chart settings from defaults or provided settings + + parseOpts = parseOpts || {}; + // clone so that we aren't modifying original + // this can probably be avoided by applying new settings differently + let chartProps = JSON.parse(JSON.stringify(_chartProps)); + + let bySeries = dataBySeries(chartProps.input.raw, chartProps, { + type: chartProps.input.type + }); + + const dataParsed = bySeries.data; + + let parsedInputEntries = dataParsed.entries; + const columnNames = dataParsed.columnNames; + + const scaleNames = []; + const scaleIndex = []; + + bySeries.series.forEach((d) => { + scaleIndex.push(d.name); + scaleNames.push(d.name); + }); + + chartProps.chartSettings.forEach((d,i) => { + if (d.label && scaleIndex[i] !== d.label) scaleNames[i] = d.label; + }); + + const labels = chartProps._annotations.labels; + const allColumn = true; + // check if either scale contains columns, as we'll need to zero the axis + const _computed = {}; + + scaleIndex.forEach((name, i) => { + _computed[i] = { + data : [] + }; + }); + + const chartSettings = map(bySeries.series, (dataSeries, i) => { + let settings; + + if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; + else { + settings = clone(config.defaultProps.chartProps.chartSettings[0], true); + settings.colorIndex = i; + } + + if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); + else { + settings.label = settings.label || bySeries.series[i].name; + } + + const values = map(dataSeries.values, (d) => { + return +d[columnNames[2]]; + }); + + _computed[i].data = _computed[i].data.concat(values); + + return settings; + }); + + // not needed + labels.values = map(bySeries.series, (dataSeries, i) => { + + if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); + else { + return { + name: dataSeries.name + }; + } + }); + + const scale = {}; + const legends = {}; + const mobileScale = {}; + + const maxPrecision = 1; + const factor = Math.pow(10, maxPrecision); + + // Calculate domain and tick values for any scales that exist + each(scaleNames, (name,j) => { + + let currScale; + const currLegend = {}; + + if (chartProps.scale) { + if (chartProps.scale[j]) currScale = chartProps.scale[j]; + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + } + else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); + + let domain = help.computeScaleDomain(currScale, _computed[j].data); + + assign(currScale, domain); + + const totalcolors = 1; + const ticks = 2; + + currScale.ticks = ticks; + + currScale.colorIndex = chartSettings[j].colorIndex; + + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); + + currScale.tickValues.forEach((v, i) => { + const tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currScale.precision) { + currScale.precision = tickPrecision; + } + currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; + + }); + + currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); + + scale[j] = currScale; + chartSettings[j].scale = currScale; + + currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; + currLegend.type = currScale.type; + currLegend.label = chartSettings[j].label; + currLegend.prefix = currScale.prefix; + currLegend.suffix = currScale.suffix; + currLegend.shapes = help.constructLegendShapes(currScale.colors); + currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); + currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); + currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); + + //currLegend.spacings = help.constructLegendSpacings(); + //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); + + + legends[name] = currLegend; + chartSettings[j].legends = currLegend; + + /* + + this is not right + */ + /*if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale[name]; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: _computed.hasColumn + }); + assign(currMobile, domain); + + } + } + } else { + chartProps.mobile = {}; + } */ + + }); + + // this should all be included in one big loopa loop + + each(chartSettings, (z,g) => { + + map(bySeries.series, (dataSeries, i) => { + if (dataSeries.name === z.label) { + //chartSettings[g].scale = scale[z.label]; + if (bySeries.isNumeric) { + chartSettings[g].scale.isNumeric = bySeries.isNumeric; + + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || + clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ + } + } + }); + }); + + let allData = []; + + each(bySeries.series, (item, j) => { + + const thisItem = map(item.values, (d) => { + d.index = item.index; + return d; }); + + allData.push(thisItem); + }); + + allData = flatten(allData); + + + const firstColumn = columnNames[0]; + const allSeriesData = bySeries.series; + + let schema; + + if (priorData.length) { + + const test2 = parseMapType.first_column(priorData, firstColumn); + const test = parseMapType.first_column(allSeriesData, firstColumn); + + const test3 = help.isEqualTest(test2, test); + + if (!test3) schema = parseMapType.determine_map(firstColumn, allSeriesData); + else schema = priorSchema; + } + else { + + schema = parseMapType.determine_map(firstColumn, allSeriesData); + } + + /* + + if (chartProps.mobile) { + if (chartProps.mobile.scale) { + let currMobile = chartProps.mobile.scale.numericSettings; + if (currMobile) { + let domain = help.computeScaleDomain(currMobile, _computed.data, { + nice: true, + minZero: false + }); + assign(currMobile, domain); + + let ticks = currMobile.ticks; + currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); + each(currMobile.tickValues, function(v) { + let tickPrecision = help.precision(Math.round(v*factor)/factor); + if (tickPrecision > currMobile.precision) { + currMobile.precision = tickPrecision; + } + }); + } + chartProps.mobile.scale.numericSettings = currMobile; + } + } else { + chartProps.mobile = {}; + } */ + + + //console.log(bySeries.series,'series'); + + let newChartProps = assign(chartProps, { + chartSettings: chartSettings, + columns: columnNames, + entries: parsedInputEntries, + input: bySeries.input, + data: bySeries.series, + alldata: allData, + scale: scale, + schema: schema, + legend: legends + }); + + if (callback) { + callback(newChartProps); + } else { + return newChartProps; + } + +} + +module.exports = parse50; diff --git a/src/js/maps/mb-cartogram/mb-cartogram-config.js b/src/js/maps/mb-cartogram/mb-cartogram-config.js new file mode 100644 index 00000000..2ce9471e --- /dev/null +++ b/src/js/maps/mb-cartogram/mb-cartogram-config.js @@ -0,0 +1,165 @@ +const MapConfig = require("../MapConfig"); +let now = new Date(); + +/** + * ### Configuration of an XY chart + * @name xy_config + */ + +/** +* display +* @static +* @memberof xy_config +* @property {Nem|number} labelRectSize - Size of the legend label rectangle +* @property {Nem|number} labelXMargin - Horiz distance btwn labels +* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text +* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels +* items with colors the appropriate indexed CSS class +* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart +* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart +* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker +* @property {Nem|number} columnPaddingCoefficient - Distance relative to +* width that column charts should be from edge of the chart +* @property {Nem|number} minPaddingOuter - Minimum distance between the +* outside of a chart and a graphical element +* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn +* @property {object} aspectRatio +* @property {number|fraction} aspectRatio.wide +* @property {number|fraction} aspectRatio.longSpot +* @property {number|fraction} aspectRatio.smallSpot +* @property {object} margin - Distances btwn outer chart elements and container +* @property {object} padding - Distances btwn inner chart elements and container +*/ + + + +let display = Object.freeze({ + labelRectSize: "0.6em", + labelXMargin: "0.6em", + labelTextMargin: "0.3em", + labelRowHeight: "1.2em", + afterTitle: "1.6em", + afterLegend: "1.6em", + blockerRectOffset: "0.3em", + columnPaddingCoefficient: 0.3, + minPaddingOuter: "1em", + bottomPaddingWithoutFooter: "3em", + aspectRatio: { + wide: (6 / 7), + longSpot: (4 / 3), + smallSpot: (3 / 4) + }, + margin: { + top: "1.2em", + right: "0.8em", + bottom: "1.2em", + left: "0.8em", + maptop: "0.5em", + mapleft: "-9.5em", + subtitle: "2em", + legendleft: "2em", + legendsOneRow: "23em", + legendsTwoRow: "22.5em" + }, + padding: { + top: 0, + right: 0, + bottom: "4em", + left: 0 + } +}); + +/** +* @name xy_defaultProps +* @static +* @memberof xy_config +*/ +const defaultProps = Object.freeze({ + /** + * @name chartProps + * @property {object} scale - Default settings for date and primary scales + * @property {array} data + * @property {object} input + * @property {object[]} chartSettings - Default settings for a given series (column) of data + * @property {object} extraPadding - Additional padding. This is a dynamic + * value and is mostly changed within the component itself + * @property {object} _annotations - Additional informative graphical elements + * @property {object} _annotations.labels - If labels are dragged, their + * position settings are saved here + * @property {object[]} _annotations.labels.values - Array of settings for + * dragged labels + * @property {object} mobile - Mobile-specific override settings + * @static + * @memberof xy_defaultProps + */ + chartProps: { + + data: [], + input: {}, + stylings: { + corners: '2', + legendText: 'Write what the legend shapes represent here', + legendMove: { + top:0, + left:0 + }, + stroke:'#aaa', + type: "grid", + radiusVal: 35, + squareWidth: '42', + cellSize: 50, + showDC: false, + showLegendTicks: false, + showStateLabels: true, + showValuesLabels: false + }, + chartSettings: [ + { + colorIndex: 0, + scale: { + prefix: "", + suffix: "", + type: "quantize" + } + }, + ], + extraPadding: { + top: 0, + right: 0, + bottom: 0, + left: 0 + }, + _annotations: { + labels: { + hasDragged: false, + values: [] + } + }, + mobile: {} + }, + /** + * @name metadata + * @property {string} chartType + * @property {string} size + * @static + * @memberof xy_defaultProps + */ + metadata: { + chartType: 'mapCartogram', + title: "Title", + subtitle: "Subtitle", + source: "TK", + credit: "", + size: "auto" + } +}); + +const map_config = new MapConfig({ + displayName: "US Cartogram Map", + parser: require("./Cartogram-parse"), + calculateDimensions: require("./mb-cartogram-dimensions"), + display: display, + defaultProps: defaultProps +}); + +module.exports = map_config; diff --git a/src/js/maps/mb-cartogram/mb-cartogram-dimensions.js b/src/js/maps/mb-cartogram/mb-cartogram-dimensions.js new file mode 100644 index 00000000..61cc8367 --- /dev/null +++ b/src/js/maps/mb-cartogram/mb-cartogram-dimensions.js @@ -0,0 +1,37 @@ +const chartSizes = require("../../config/map-sizes"); + +// TODO: jsDocify this if it works + +/** + * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) + * @see ChartConfig#calculateDimensions + * @instance + * @memberof xy_config + */ +function calculate_map_dimensions(width, opts) { + let height; + let aspectRatio = opts.displayConfig.aspectRatio; + let metadata = opts.model.metadata; + + if (metadata.size == "auto" || opts.enableResponsive) { + // use current width + } else { + width = chartSizes[metadata.size].width; + } + + switch (metadata.size) { + case "auto": + height = width * aspectRatio.wide; + break; + + default: + height = width * aspectRatio.wide; + } + + return { + width: width, + height: height + opts.extraHeight + }; +} + +module.exports = calculate_map_dimensions; diff --git a/src/js/maps/mb-cartogram/mb-cartogram-helpers.js b/src/js/maps/mb-cartogram/mb-cartogram-helpers.js new file mode 100644 index 00000000..6f54af65 --- /dev/null +++ b/src/js/maps/mb-cartogram/mb-cartogram-helpers.js @@ -0,0 +1,275 @@ +import d3 from 'd3'; + +const colorScales = require('./../../util/colorscales'); + +const padding = 5; + +const _gravity = (k) => { + return function(d) { + d.x += (d.x0 - d.x) * k; + d.y += (d.y0 - d.y) * k; + }; +} + +const _collideDorling = (k, nodes) => { + const q = d3.geom.quadtree(nodes); + return function(node) { + let nr = node.r + padding, + nx1 = node.x - nr, + nx2 = node.x + nr, + ny1 = node.y - nr, + ny2 = node.y + nr; + q.visit(function(quad, x1, y1, x2, y2) { + if (quad.point && (quad.point !== node)) { + let x = node.x - quad.point.x, + y = node.y - quad.point.y, + l = x * x + y * y, + r = nr + quad.point.r; + if (l < r * r) { + l = ((l = Math.sqrt(l)) - r) / l * k; + node.x -= x *= l; + node.y -= y *= l; + quad.point.x += x; + quad.point.y += y; + } + } + return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; + }); + }; +} +const _collideDemers = (k, nodes) => { + const q = d3.geom.quadtree(nodes); + return function(node) { + let nr = node.r + padding, + nx1 = node.x - nr, + nx2 = node.x + nr, + ny1 = node.y - nr, + ny2 = node.y + nr; + q.visit(function(quad, x1, y1, x2, y2) { + if (quad.point && (quad.point !== node)) { + let x = node.x - quad.point.x, + y = node.y - quad.point.y, + lx = Math.abs(x), + ly = Math.abs(y), + r = nr + quad.point.r; + if (lx < r && ly < r) { + if (lx > ly) { + lx = (lx - r) * (x < 0 ? -k : k); + node.x -= lx; + quad.point.x += lx; + } else { + ly = (ly - r) * (y < 0 ? -k : k); + node.y -= ly; + quad.point.y += ly; + } + } + } + return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; + }); + }; +} + +const enter_demers = (selection, stylings, force, data) => { + + d3.selectAll('.carto-shapes').remove(); + + selection + .append('rect') + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .attr('rx',0) + .attr('ry',0) + .style('fill',function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('class','carto-rects carto-shapes') + .call(force.drag); + + selection.selectAll('.state-values').remove(); + + selection.append('text') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .attr('dy','0.3em') + .attr('class','state-name carto-shapes') + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + +const enter_grid = (selection, stylings, force, data) => { + + d3.selectAll('.carto-shapes').remove(); + + selection.attr('transform',(d,i) => { + return 'translate('+ d.xx + ',' + d.yy +')' + }); + + selection.append('rect') + .attr("width", stylings.squareWidth) + .attr("height", stylings.squareWidth) + .attr('rx',stylings.corners) + .attr('ry',stylings.corners) + .style('fill',function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('class','carto-rects carto-shapes'); + + let adjustment = 0; + + if (stylings.showValuesLabels) { + adjustment = -2; + + selection.append('text') + .attr("x", (stylings.squareWidth / 2)) + .attr("y", 12 + (stylings.squareWidth / 2)) + .attr('dy','0.3em') + .attr('class','state-values carto-shapes') + .text((d) => d.value); + } + + selection.append('text') + .attr("x", (stylings.squareWidth / 2)) + .attr("y", adjustment + (stylings.squareWidth / 2)) + .attr('dy','0.3em') + .attr('class','state-name carto-shapes') + .text((d) => d.shp); +} + +const enter_dorling = (selection, stylings, force, data) => { + + d3.selectAll('.carto-shapes').remove(); + + selection.append('rect') + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .attr('rx', function(d) { return +d.r; }) + .attr('ry', function(d) { return +d.r; }) + .style('fill',function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('class','carto-rects carto-shapes') + .call(force.drag); + + let adjustment = 0; + + selection.selectAll('.state-values').remove(); + + selection.append('text') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .attr('dy','0.3em') + .attr('class','state-name carto-shapes') + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + + +const update_node = (selection) => { + selection.attr("transform", (d) => "translate(" + d.x + "," + d.y + ")"); +}; + + +const update_demers = (e, selection, nodes) => { + + selection.each(_gravity(e.alpha * .1)) + .each(_collideDemers(.05, nodes)) + .attr("transform", function(d) { + return "translate(" + (d.x - d.r) + "," + (d.y - d.r) + ")"; + }); +} + +const update_dorling = (e, selection, nodes) => { + + selection.each(_gravity(e.alpha * .1)) + .each(_collideDorling(.05, nodes)) + .attr("transform", function(d) { + return "translate(" + (d.x - d.r) + "," + (d.y - d.r) + ")"; + }); +} + +const switch_grid = (selection, stylings) => { + + selection.attr('transform',(d,i) => { + return 'translate('+ d.xx + ',' + d.yy +')' + }); + + selection.selectAll('rect') + .attr("width", stylings.squareWidth) + .attr("height", stylings.squareWidth) + .style('fill', function(d) { return d.color; }) + .style('stroke',stylings.stroke) + .attr('rx',stylings.corners) + .attr('ry',stylings.corners); + + let adjustment = 0; + + if (stylings.showValuesLabels) { + adjustment = -2; + } + + selection.selectAll('text.state-name') + .style('font-size','1.2em') + .attr("x", (stylings.squareWidth / 2)) + .attr("y", adjustment + (stylings.squareWidth / 2)) + .text((d) => d.shp); +} + + +const switch_dorling = (selection, stylings) => { + + selection.selectAll('rect') + .style('stroke',stylings.stroke) + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .style('fill',function(d) { return d.color; }) + .attr('rx', function(d) { return +d.r; }) + .attr('ry', function(d) { return +d.r; }) + + selection.selectAll('text.state-name') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .attr('dy','0.3em') + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + +const switch_demers = (selection, stylings) => { + + selection.selectAll('rect') + .style('stroke',stylings.stroke) + .attr("height", function(d) { return +d.r * 2; }) + .attr("width", function(d) { return +d.r * 2; }) + .style('fill', function(d) { return d.color; }) + .attr('rx',0) + .attr('ry',0); + + selection.selectAll('text.state-name') + .attr("x", function(d) { return (+d.r); }) + .attr("y", function(d) { return (+d.r); }) + .style('font-size',function(d) { + return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); + }) + .text(function(d) { return (d.r > 0) ? d.shp : ''; }); +} + + +/** + * Helper functions! + * @name helper + */ +const cartogram_helpers = Object.freeze({ + enterDemers: enter_demers, + enterDorling: enter_dorling, + enterGrid: enter_grid, + switchGrid: switch_grid, + switchDemers: switch_demers, + switchDorling: switch_dorling, + updateDemers: update_demers, + updateDorling: update_dorling, + updateNode: update_node +}); + +module.exports = cartogram_helpers; diff --git a/src/js/maps/renderers.js b/src/js/maps/renderers.js new file mode 100644 index 00000000..273fe49b --- /dev/null +++ b/src/js/maps/renderers.js @@ -0,0 +1,10 @@ +/** + * @name renderers + */ + +// Chart renderer +module.exports = { + map50: require("../components/map-50/50map.jsx"), + mapcartogram: require("../components/map-cartogram/Cartogrammap.jsx"), + mapbubble: require("../components/map-bubble/Bubblemap.jsx") +}; diff --git a/src/js/stores/ChartPropertiesStore.js b/src/js/stores/ChartPropertiesStore.js index 468eb514..4bc07f99 100644 --- a/src/js/stores/ChartPropertiesStore.js +++ b/src/js/stores/ChartPropertiesStore.js @@ -15,7 +15,7 @@ var SessionStore = require("./SessionStore"); * settings. The `ChartProptiesStore` is resposible for parsing the input before * sending parsed data back to the app, so we require the configs here. */ -var chartConfig = require("../charts/chart-config"); +var chartConfig = require("../charts/charts/chart-config"); /* Singleton that houses chart props */ var _chartProps = {}; diff --git a/src/js/util/ChartbuilderLocalStorageAPI.js b/src/js/util/ChartbuilderLocalStorageAPI.js index 81351d12..77085847 100644 --- a/src/js/util/ChartbuilderLocalStorageAPI.js +++ b/src/js/util/ChartbuilderLocalStorageAPI.js @@ -1,8 +1,8 @@ // Get data from and save to local storage var ChartServerActions = require("../actions/ChartServerActions"); -var defaultInput = require("../config/default-input"); -var chartConfig = require("../charts/chart-config"); +var defaultInput = require("../config/chartconfig/default-input"); +var chartConfig = require("../charts/charts/chart-config"); //var testInput = require("../../../test/util/test-input"); module.exports = { diff --git a/src/js/util/MapbuilderLocalStorageAPI.js b/src/js/util/MapbuilderLocalStorageAPI.js new file mode 100644 index 00000000..4afede68 --- /dev/null +++ b/src/js/util/MapbuilderLocalStorageAPI.js @@ -0,0 +1,25 @@ +// Get data from and save to local storage + +const MapServerActions = require("../actions/ChartServerActions"); +const defaultInput = require("../config/mapconfig/default-input"); +const mapConfig = require("../charts/maps/map-config"); + +module.exports = { + defaultMap: function() { + let default_model = mapConfig.map50.defaultProps; + default_model.chartProps.input = { + raw: defaultInput + }; + + MapServerActions.receiveModel(default_model); + }, + + getMap: function() { + MapServerActions.receiveModel(JSON.parse(localStorage.getItem("model"))); + }, + + saveMap: function(model) { + localStorage.setItem("model", JSON.stringify(model)); + } +}; + diff --git a/src/js/util/colorscales.js b/src/js/util/colorscales.js new file mode 100644 index 00000000..2d4d205f --- /dev/null +++ b/src/js/util/colorscales.js @@ -0,0 +1,129 @@ + + const tealScale = { + 6: ['#1c7e77', '#2a9992', '#41b5af', '#74cdc7', '#afe3de', '#e4faf5'].reverse(), + 5: ['#1c7e77', '#2d9f99', '#58c1bc', '#a1ded8', '#e4faf5'].reverse(), + 4: ['#1c7e77', '#33aba5', '#8ad4cf', '#e4faf5'].reverse(), + 3: ['#1c7e77', '#58c1bc', '#e4faf5'].reverse(), + 2: ['#bfede9', '#1c7e77'], + 1: ['#34aea8'] + }; + + const orangeScale = { + 6: ['#f2d3a9', '#eaba82', '#e0a15c', '#d2893b', '#bf7328', '#ae5c17'], + 5: ['#f2d3a9', '#e8b379', '#da9549', '#c4792d', '#ae5c17'], + 4: ['#f2d3a9', '#e3a968', '#cb8134', '#ae5c17'], + 3: ['#f2d3a9', '#da9549', '#ae5c17'], + 2: ['#f3b76c', '#a55c1a'], + 1: ['#d08738'] + }; + + const partisanScaleD = { + 6: ['#295899', '#4771ad', '#668bbf', '#86a6d0', '#a7c1e0', '#c9dcef'].reverse(), + 5: ['#295899', '#4f78b2', '#7698c8', '#9ebadc', '#c9dcef'].reverse(), + 4: ['#295899', '#5c83b9', '#91aed5', '#c9dcef'].reverse(), + 3: ['#295899', '#7698c8', '#c9dcef'].reverse(), + 2: ['#c9dcef','#295899'], + 1: ['#4771ad'] + }; + const partisanScaleR = { + 6: ['#fee5d9', '#f9c0b1', '#ef9d8b', '#df7b69', '#cb5848', '#b4362b'], + 5: ['#fee5d9', '#f7b8a8', '#e78b79', '#d06151', '#b4362b'], + 4: ['#fee5d9', '#f3a997', '#d96f5e', '#b4362b'], + 3: ['#fee5d9', '#e78b79', '#b4362b'], + 2: ['#fee5d9', '#b4362b'], + 1: ['#cb5848'] + + }; + + const independentScale = { + 1: ['#31a354'], + 2: ['#e5f5e0', '#31a354'], + 3: ["#e5f5e0","#a1d99b","#31a354"], + 4: ["#edf8e9","#bae4b3","#74c476","#238b45"], + 5: ["#edf8e9","#bae4b3","#74c476","#31a354","#006d2c"], + 6: ["#edf8e9","#c7e9c0","#a1d99b","#74c476","#31a354","#006d2c"] + }; + + const strokeGreyScale = ["#aaa","#bbb","#cccccc","#ddd","#eee"].reverse(); + + const greyScale = { + 1: ['#a9aaaa'], + 2: ['#f7f7f7', '#636363'], + 3: ['#f7f7f7', '#a9aaaa', '#636363'], + 4: ["#f7f7f7","#cccccc","#969696","#636363"], + 5: ["#f7f7f7","#d9d9d9","#bdbdbd","#969696","#636363"], + 6: ["#f7f7f7","#d9d9d9","#bdbdbd","#969696","#737373","#525252"] + }; + + const lightGreyScale = { + 1: ['#cccccc'], + 2: ['#f7f7f7', '#969696'], + 3: ['#f7f7f7', '#a9aaaa', '#636363'], + 4: ["#f7f7f7","#cccccc","#969696","#636363"], + 5: ["#f7f7f7","#d9d9d9","#bdbdbd","#969696","#636363"], + 6: ["#f7f7f7","#d9d9d9","#bdbdbd","#969696","#737373","#525252"] + }; + + const likelyRScale = { 1: ['#b4362b'] }; + const leanRScale = {1: ['#df7b69'] }; + const tossupScale = {1: ['#e39e4f'] }; + const leanDScale = {1: ['#668bbf'] }; + const likelyDScale = {1: ['#295899'] }; + + /*const allcolors = [tealScale['5'],orangeScale['5'],partisanScaleR['5'], + partisanScaleD['5'],independentScale['5'],greyScale['5'],likelyRScale['1'], + leanRScale['1'],tossupScale['1'],leanDScale['1'],likelyDScale['1']];*/ + + const allscales = [tealScale['5'],orangeScale['5'],partisanScaleR['5'], + partisanScaleD['5'],independentScale['5'],greyScale['5']]; + + const allscaleskey = [tealScale,orangeScale,partisanScaleR,partisanScaleD,independentScale,greyScale] + + const hatchtypes = [ + {type:'lines',size:'3',stroke:'3'}, + {type:'lines',size:'6',stroke:'3'}, + {type:'lines',size:'10',stroke:'3'}, + {type:'lines',size:'15',stroke:'3'}, + {type:'lines',size:'20',stroke:'3'}, + {type:'hatch',size:'4', stroke:'3'}, + {type:'hatch',size:'7', stroke:'3'}, + {type:'hatch',size:'10', stroke:'3'}, + {type:'hatch',size:'15', stroke:'3'}, + {type:'hatch',size:'20', stroke:'3'}, + {type:'hexagons',size:'2', stroke:'3'}, + {type:'hexagons',size:'4', stroke:'3'}, + {type:'hexagons',size:'7', stroke:'3'}, + {type:'hexagons',size:'10', stroke:'3'}, + {type:'hexagons',size:'14', stroke:'3'}, + {type:'circles',size:'5', radius:'1'}, + {type:'circles',size:'5', radius:'2'}, + {type:'circles',size:'7', radius:'2'}, + {type:'circles',size:'10', radius:'3'}, + {type:'circles',size:'14', radius:'3'}, + {type : 'none'}]; + + const colors = { + 0:tealScale, + 1:orangeScale, + 2:greyScale, + 3:partisanScaleD, + 4:partisanScaleR, + 5:independentScale, + 6:lightGreyScale + } + +function scalesMap(keyval) { + return colors[keyval]; +} + +function scalesNum() { + return Object.keys(colors).length; +} + +const colorscales = Object.freeze({ + scalesMap:scalesMap, + scalesNum:scalesNum +}); + + +module.exports = colorscales; diff --git a/src/js/util/helper.js b/src/js/util/helper.js index 9ad6acb6..ca14da1d 100644 --- a/src/js/util/helper.js +++ b/src/js/util/helper.js @@ -273,7 +273,7 @@ function tz_offset_to_minutes(offset) { split_loc = offset.length - 2 offset = [offset.substring(0, split_loc), offset.substring(split_loc)] } - sign = offset[0].indexOf("-") > -1 ? -1 : 1 + const sign = offset[0].indexOf("-") > -1 ? -1 : 1 offset = offset.map(parseFloat) diff --git a/src/js/util/parse-delimited-input.js b/src/js/util/parse-delimited-input.js index d33c67ab..86c2ca56 100644 --- a/src/js/util/parse-delimited-input.js +++ b/src/js/util/parse-delimited-input.js @@ -96,6 +96,8 @@ function cast_data(input, columnNames, stripCharsRegex, opts) { var dsv = d3.dsv(opts.delimiter, "text/plain"); var all_index_types = []; var all_entry_values = []; + let hasDate; + let isNumeric; var tz_pattern = /([+-]\d\d:*\d\d)/gi; var found_timezones = input.match(tz_pattern); diff --git a/src/js/util/parse-map-type.js b/src/js/util/parse-map-type.js new file mode 100644 index 00000000..cb615f29 --- /dev/null +++ b/src/js/util/parse-map-type.js @@ -0,0 +1,70 @@ +import {clone, includes, keys, isUndefined, isArray, max, reduce} from 'lodash'; + +const mapSchema = require('./../config/mapconfig/map-schema.js'); + +//given some incoming data, we need to determine which type of map it is, based on the schema +// the map with the most matching features is the one that will be chosen + +const buildFirstColumn = (data, columnName) => { + + const names = []; + + if (!data) return; + + data.forEach(function(d, j) { + d.values.forEach(function(g, k) { + names.push(g[columnName]); + }); + }); + + return names; +} + +const testSchema = (mapSchema, firstColumn) => { + + const length = firstColumn.length; + const testLength = []; + + mapSchema.forEach(function(d) { + let thisLength = 0; + for (let key in d.topojson.objects[d.feature].geometries) { + firstColumn.forEach(function(g) { + if (d.test(g,key)) { + thisLength++; + } + }) + } + testLength.push(thisLength/d.topojson.objects[d.feature].geometries.length); + }); + + const objIndex = testLength.indexOf(max(testLength)); + const schema = mapSchema[objIndex]; + + return schema; +} + +const determineMap = (columnName, input) => { + + if (!input.length) return; + + const firstColumn = buildFirstColumn(input, columnName); + const schema = testSchema(mapSchema, firstColumn); + + const mapType = { + firstColumn : firstColumn, + schema : schema + }; + + return mapType; +} + +/** + * Helper functions! + * @name helper + */ +const map_type_helper = Object.freeze({ + first_column: buildFirstColumn, + determine_map: determineMap +}); + +module.exports = map_type_helper; diff --git a/src/js/util/validate-data-input.js b/src/js/util/validate-data-input.js index 1caaf607..d4cc6196 100644 --- a/src/js/util/validate-data-input.js +++ b/src/js/util/validate-data-input.js @@ -8,7 +8,7 @@ var some = require("lodash/some"); var unique = require("lodash/uniq"); var catchChartMistakes = require("./catch-chart-mistakes"); -types = { +const types = { "number": "numeric", "object": "date", "string": "ordinal" From cc7ace5b20651d46ae345dd2aff388872b9781c2 Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 00:16:05 -0500 Subject: [PATCH 002/152] update button layout --- src/js/charts/maps/mb-50/mb-50-config.js | 4 ++-- .../charts/maps/mb-bubble/mb-Bubble-config.js | 4 ++-- .../maps/mb-bubble/mb-bubble-dimensions.js | 3 --- .../maps/mb-cartogram/mb-cartogram-config.js | 4 ++-- src/js/components/ChartTypeSelector.jsx | 17 ++++++++++++++--- 5 files changed, 20 insertions(+), 12 deletions(-) diff --git a/src/js/charts/maps/mb-50/mb-50-config.js b/src/js/charts/maps/mb-50/mb-50-config.js index 97bd481b..22d49190 100644 --- a/src/js/charts/maps/mb-50/mb-50-config.js +++ b/src/js/charts/maps/mb-50/mb-50-config.js @@ -93,7 +93,7 @@ const defaultProps = Object.freeze({ * @memberof xy_defaultProps */ chartProps: { - + data: [], input: {}, stylings: { @@ -147,7 +147,7 @@ const defaultProps = Object.freeze({ }); const map_config = new MapConfig({ - displayName: "US Choropleth", + displayName: "Choropleth", parser: require("./50-parse"), calculateDimensions: require("./mb-50-dimensions"), display: display, diff --git a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js index e680c7d6..74bc2688 100644 --- a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js +++ b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js @@ -93,7 +93,7 @@ const defaultProps = Object.freeze({ * @memberof xy_defaultProps */ chartProps: { - + data: [], input: {}, stylings: { @@ -150,7 +150,7 @@ const defaultProps = Object.freeze({ }); const map_config = new MapConfig({ - displayName: "US Bubble", + displayName: "Bubble", parser: require("./Bubble-parse"), calculateDimensions: require("./mb-bubble-dimensions"), display: display, diff --git a/src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js b/src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js index e7a1742a..3f6c104a 100644 --- a/src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js +++ b/src/js/charts/maps/mb-bubble/mb-bubble-dimensions.js @@ -19,9 +19,6 @@ function calculate_map_dimensions(width, opts) { width = chartSizes[metadata.size].width; } - - console.log(aspectRatio,'ratio'); - switch (metadata.size) { case "auto": height = width * aspectRatio.wide; diff --git a/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js index 2ce9471e..a5871d1f 100644 --- a/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js +++ b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js @@ -93,7 +93,7 @@ const defaultProps = Object.freeze({ * @memberof xy_defaultProps */ chartProps: { - + data: [], input: {}, stylings: { @@ -155,7 +155,7 @@ const defaultProps = Object.freeze({ }); const map_config = new MapConfig({ - displayName: "US Cartogram Map", + displayName: "Cartogram", parser: require("./Cartogram-parse"), calculateDimensions: require("./mb-cartogram-dimensions"), display: display, diff --git a/src/js/components/ChartTypeSelector.jsx b/src/js/components/ChartTypeSelector.jsx index d1bab5c0..4fbbd3ce 100644 --- a/src/js/components/ChartTypeSelector.jsx +++ b/src/js/components/ChartTypeSelector.jsx @@ -7,6 +7,7 @@ var clone = require("lodash/clone"); var map = require("lodash/map"); var keys = require("lodash/keys"); var helper = require("../util/helper"); +var concat = require("lodash/concat"); // Flux actions var ChartServerActions = require("../actions/ChartServerActions"); @@ -27,8 +28,7 @@ var ChartTypeSelctor = React.createClass({ /* Generate values for each chart type that can be used to create buttons */ getInitialState: function() { - console.log(keys(chartConfig),'hm'); - //var typesConfig = + //var typesConfig = var chartTypeButtons = map(keys(chartConfig), function(chartTypeKey) { return { title: chartConfig[chartTypeKey].displayName, @@ -36,7 +36,16 @@ var ChartTypeSelctor = React.createClass({ value: chartTypeKey }; }); - return { chartConfig: chartTypeButtons }; + var mapTypeButtons = map(keys(mapConfig), function(mapTypeKey) { + return { + title: mapConfig[mapTypeKey].displayName, + content: mapConfig[mapTypeKey].displayName, + value: mapTypeKey + }; + }); + console.log(mapTypeButtons, chartTypeButtons, 'eh'); + var allTypeButtons = concat(chartTypeButtons,mapTypeButtons); + return { chartConfig: allTypeButtons }; }, /* @@ -78,6 +87,8 @@ var ChartTypeSelctor = React.createClass({ }, render: function() { + + console.log(this.props.metadata,'meta') return (

From 500a9720f9ab8abcd8f43649f225dc12789b0da1 Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 01:32:47 -0500 Subject: [PATCH 003/152] integrations --- package.json | 1 + src/js/charts/maps/mb-50/50-parse.js | 22 +- .../charts/maps/mb-bubble/mb-Bubble-config.js | 4 +- src/js/components/ChartTypeSelector.jsx | 5 +- src/js/components/Chartbuilder.jsx | 8 +- src/js/components/chart-grid/ChartGridXY.jsx | 13 +- src/js/components/map-50/50map.jsx | 4 +- src/js/components/map-50/Map50Editor.jsx | 8 +- src/js/components/map-50/Map50Mobile.jsx | 2 +- src/js/components/map-50/Map50Renderer.jsx | 10 +- src/js/components/mixins/MapEditorMixin.js | 2 +- src/js/stores/ChartPropertiesStore.js | 17 +- src/js/util/helper.js | 219 +++++++++++++++++- src/js/util/parse-data-by-series.js | 1 + src/js/util/parse-delimited-input.js | 6 +- 15 files changed, 266 insertions(+), 56 deletions(-) diff --git a/package.json b/package.json index 217141f5..ee16c152 100644 --- a/package.json +++ b/package.json @@ -65,6 +65,7 @@ "react-d3-core": "*", "react-d3-map-core": "*", "save-svg-as-png": "git://github.com/nsonnad/saveSvgAsPng.git#clean-svg-fonts", + "simple-statistics": "2.2", "sizeof": "^1.0.0", "sugar-date": "^1.5.1", "topojson": "^1.6.26", diff --git a/src/js/charts/maps/mb-50/50-parse.js b/src/js/charts/maps/mb-50/50-parse.js index e38bdac1..f49f1142 100644 --- a/src/js/charts/maps/mb-50/50-parse.js +++ b/src/js/charts/maps/mb-50/50-parse.js @@ -10,8 +10,8 @@ const parseColumns = require("./../../../util/parse-delimited-input")._parseColu const parseMapType = require('./../../../util/parse-map-type'); /** - * see [ChartConfig#parser](#chartconfig/parser) - * @see ChartConfig#parser + * see [MapConfig#parser](#mapconfig/parser) + * @see MapConfig#parser * @instance * @memberof xy_config */ @@ -31,7 +31,9 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior const dataParsed = bySeries.data; - let parsedInputEntries = dataParsed.entries; + console.log(bySeries,'hahahah'); + + let parsedInputEntries = dataParsed.entries; const columnNames = dataParsed.columnNames; const scaleNames = []; @@ -70,7 +72,7 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior }); _computed[i].data = _computed[i].data.concat(values); - + return settings; }); @@ -124,7 +126,7 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior currScale.precision = tickPrecision; } currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; - + }); currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); @@ -142,15 +144,15 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); - + //currLegend.spacings = help.constructLegendSpacings(); //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); - + legends[name] = currLegend; chartSettings[j].legends = currLegend; - /* + /* this is not right */ @@ -169,7 +171,7 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior } else { chartProps.mobile = {}; } */ - + }); // this should all be included in one big loopa loop @@ -181,7 +183,7 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior //chartSettings[g].scale = scale[z.label]; if (bySeries.isNumeric) { chartSettings[g].scale.isNumeric = bySeries.isNumeric; - + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ } diff --git a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js index 74bc2688..057f4206 100644 --- a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js +++ b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js @@ -141,9 +141,9 @@ const defaultProps = Object.freeze({ */ metadata: { chartType: 'mapbubble', - title: "Title", + title: "Bubble Map Title", subtitle: "Subtitle", - source: "TK", + source: "Source for map", credit: "", size: "auto" } diff --git a/src/js/components/ChartTypeSelector.jsx b/src/js/components/ChartTypeSelector.jsx index 4fbbd3ce..cff2da7f 100644 --- a/src/js/components/ChartTypeSelector.jsx +++ b/src/js/components/ChartTypeSelector.jsx @@ -43,7 +43,6 @@ var ChartTypeSelctor = React.createClass({ value: mapTypeKey }; }); - console.log(mapTypeButtons, chartTypeButtons, 'eh'); var allTypeButtons = concat(chartTypeButtons,mapTypeButtons); return { chartConfig: allTypeButtons }; }, @@ -62,7 +61,8 @@ var ChartTypeSelctor = React.createClass({ metadata.chartType = chartType; var prevProps = this.props.chartProps; - var newDefaultProps = chartConfig[chartType].defaultProps.chartProps; + var visualConfig = chartConfig[chartType] || mapConfig[chartType]; + var newDefaultProps = visualConfig.defaultProps.chartProps; var prevSettings = prevProps.chartSettings; var newDefaultSettings = newDefaultProps.chartSettings[0]; var prevKeys = keys(prevSettings[0]); @@ -88,7 +88,6 @@ var ChartTypeSelctor = React.createClass({ render: function() { - console.log(this.props.metadata,'meta') return (

diff --git a/src/js/components/Chartbuilder.jsx b/src/js/components/Chartbuilder.jsx index 3b239f61..d3c5e754 100644 --- a/src/js/components/Chartbuilder.jsx +++ b/src/js/components/Chartbuilder.jsx @@ -34,7 +34,8 @@ var svgWrapperClassName = { }; // Associates a given chart type with its Editor and Renderer components. -var chartEditors = require("../charts/charts/editors"); +const chartEditors = require("../charts/charts/editors"); +const mapEditors = require("../charts/maps/editors"); var numColors = require("../config/chartconfig/chart-style").numColors; /* API to localStorage that allows saving and retrieving charts */ @@ -157,10 +158,11 @@ var Chartbuilder = React.createClass({ */ render: function() { var chartType = this.state.metadata.chartType; - var Editor = chartEditors[chartType].Editor; + var VisualEditor = chartEditors[chartType] || mapEditors[chartType]; + var Editor = VisualEditor.Editor; // Check for mobile override settings and pass them in - var MobileComponent = chartEditors[chartType].MobileOverrides; + var MobileComponent = VisualEditor.MobileOverrides; var mobileOverrides; if (MobileComponent && this.props.showMobilePreview) { mobileOverrides = ( diff --git a/src/js/components/chart-grid/ChartGridXY.jsx b/src/js/components/chart-grid/ChartGridXY.jsx index 1d53c77c..2db510f3 100644 --- a/src/js/components/chart-grid/ChartGridXY.jsx +++ b/src/js/components/chart-grid/ChartGridXY.jsx @@ -77,7 +77,7 @@ var ChartGridXY = React.createClass({ }}); var displayConfig = this.props.displayConfig; - xyConfig = displayConfig.xy; + var xyConfig = displayConfig.xy; var hiddenSvg = []; @@ -216,8 +216,7 @@ function drawXYChartGrid(el, state) { var dateSettings = state.dateSettings; var numericSettings = state.numericSettings; - - xyConfig = displayConfig.xy; + var xyConfig = displayConfig.xy; var chart = cb_xy() .outerHeight(state.dimensions.height) @@ -276,8 +275,8 @@ function drawXYChartGrid(el, state) { text: numericSettings ? numericSettings.suffix : "", dy: state.grid.rows == 1 ? "1.2em" : 0 }] - }) - + }) + }) .using("xAxis", function(axis) { if(chartProps.scale.isNumeric) { @@ -331,8 +330,8 @@ function drawXYChartGrid(el, state) { text: "", dy: 0 }] - }) - + }) + }) chart.outerWidth(state.dimensions.width); chart.extraPadding(extraPadding); diff --git a/src/js/components/map-50/50map.jsx b/src/js/components/map-50/50map.jsx index cc536283..17f2d4f3 100644 --- a/src/js/components/map-50/50map.jsx +++ b/src/js/components/map-50/50map.jsx @@ -9,7 +9,7 @@ import PolygonCollection from './Map50Renderer.jsx'; const projectionFunc = require('react-d3-map-core').projection; const geoPath = require('react-d3-map-core').geoPath; -import ChartRendererMixin from "../mixins/MapRendererMixin.js"; +import ChartRendererMixin from "./../mixins/MapRendererMixin.js"; const polygonClass = 'polygon-test'; @@ -27,7 +27,7 @@ const MapRenderer = React.createClass({ const schema = chartProps.schema.schema; const featname = schema.feature; console.log(topojson,'topo') - const data = topojson.feature(schema.topojson, + const data = topojson.feature(schema.topojson, schema.topojson.objects[featname]); const projObj = { diff --git a/src/js/components/map-50/Map50Editor.jsx b/src/js/components/map-50/Map50Editor.jsx index 01936e2e..731a5392 100644 --- a/src/js/components/map-50/Map50Editor.jsx +++ b/src/js/components/map-50/Map50Editor.jsx @@ -17,7 +17,7 @@ const DataInput = require("../shared/DataInput.jsx"); import {ColorPicker, Dropdown, LabelledTangle, TextInput, Toggle} from 'chartbuilder-ui'; const colorScales = require('./../../util/colorscales'); -const MapEditorMixin = require("../mixins/MapEditorMixin.js"); +const MapEditorMixin = require("./../mixins/MapEditorMixin.js"); /** * ### Editor interface for a XY chart @@ -71,7 +71,7 @@ let MapEditor = React.createClass({ mapSettings.push( map(mapProps.chartSettings, bind(function(chartSetting, i) { const typeOption = this.getTypeOptions(chartSetting.scale.colors); - + return (
- +
); @@ -216,7 +216,7 @@ const Map50_mapSettings = React.createClass({ render: function() { const chartSetting = this.props.chartSettings[this.props.index]; const numColors = colorScales.scalesNum(); - + return (
- { + + if (colors === values.length) return values; + + return values; +} + + +const construct_legend_range = (colors, scaletype) => { + + let thislegendw; + + (colors < 2) ? thislegendw = (legendtotal / 3) + : thislegendw = (legendtotal + (colors * legendmargin)); + + const value = []; + + if (scaletype === 'quantize') return [0,thislegendw]; + else if (scaletype === 'cluster') { + + const thisrect = (colors < 2) ? legendrect * 2 : legendtotal / colors; + const space = thislegendw / colors; + + for (let i = 0; i < colors; i++) { + value.push((i * (space)) + (thisrect / 2)); + } + + return value; + } + else if (scaletype === 'threshold') { + + /*let thisrect = (colornumber < 2) ? legendrect * 2 : legendtotal / colors; + let space = width / (colors); + + for (let i = 0; i < colors; i++) { + value.push((i * space) + (thisrect / 2)); + }*/ + + return value; + } + else return [0,0]; +} + + +const construct_legend_ticks = (tickValues, colors, thescale) => { + + if (thescale === 'quantize') { + + if (colors === tickValues.length) return tickValues; + + const value = []; + const span = d3.max(tickValues) - d3.min(tickValues); + const space = span / colors; + + for (let i = 0; i < colors + 1; i++) { + value.push(d3.min(tickValues) + (i * space)); + } + + return value; + + } else { + + return tickValues; + + } +} + + +const construct_legend_transform = (i, legendspacings, thislegend) => { + + let skipx = 0; + let movey = i; + + let this_space_group = Math.floor(i / 4.1); + let group_space_index; + + if (this_space_group > 0) group_space_index = this_space_group - 1; + else group_space_index = 0; + + if (i > 1) skipx = legendspacings[group_space_index]; + if (!this_space_group) skipx = 0; + + movey = i - (this_space_group * 2); + + return [skipx,(movey * -120)]; +} + + +const construct_legend_shapes = (colors) => { + + return (colors > 1) ? legendtotal / colors : legendtotal * 0.75; +} + + +const construct_legend_spacings = () => { + const maxl = 0; + + const legendspacings = []; + let maxspace = 0; + let i = 0; + + while (i < (scales.length)) { + + if (!(i % 2) && !!i) { + legendspacings.push({ + max: maxspace + }); + maxspace = 0; + } + + let numcolors = scales[i].values.colors.length; + let totalcolorw; + + if (numcolors < 2) { + numcolors = 2; + totalcolorw = (legendrect * 2) + groupmargin + legendmargin; + } else { + totalcolorw = legendtotal + (legendmargin * 5) + groupmargin; + } + + let test = d3.select('#hidden-div').html(keyConversion(scales[i].key)); + let testw = (2 * document.getElementById('hidden-div').offsetWidth); + + if (testw > wrapmax) testw = wrapmax; + + testw = testw + groupmargin; + + if (i > 1) { + + totalcolorw = totalcolorw + legendspacings[legendspacings.length - 1].max; + testw = testw + legendspacings[legendspacings.length - 1].max; + } + + if (testw > totalcolorw && testw > maxspace) { maxspace = testw; } + else if (totalcolorw > testw && totalcolorw > maxspace) { maxspace = totalcolorw; } + + i++; + } +} + + +const return_D3_scale = (colorIndex, number_colors, domain, type, allvalues, tickValues) => { + + const colors = colorScales.scalesMap(colorIndex)[number_colors]; + + // adjust scale so it returns a color for single value entries + const domainMax = d3.min(domain); + const domainMin = d3.max(domain); + + if (domainMax === domainMin && type === 'quantize') { + domain[0] = domainMin - 1; + domain[domain.length - 1] = domainMax + 1; + } + + switch(type) { + case('quantize'): + return d3.scale.quantize() + .domain(domain) + .range(colors); + break; + case('cluster'): + + const computeddomain = _compute_domain(type, (number_colors - 1), allvalues); + + return d3.scale.quantile() + .domain(computeddomain) + .range(colors); + break; + case('threshold'): + + //console.log(tickValues,'ticks'); + + const tickValuesThreshold = clone(tickValues); + + tickValuesThreshold[0] = tickValuesThreshold[0] + 1; + tickValuesThreshold[tickValuesThreshold.length - 1] = tickValuesThreshold[tickValuesThreshold.length - 1] - 1; + + return d3.scale.threshold() + .domain(tickValuesThreshold) + .range(colors); + break; + case (undefined): + return d3.scale[type]().domain(domain).range(colors); + break; + } +} + /** * Helper functions! * @name helper @@ -289,10 +487,17 @@ var helper = { roundToPrecision: round_to_precision, combineMarginPadding: combine_margin_pading, computeScaleDomain: compute_scale_domain, + constructLegendDomain: construct_legend_domain, + constructLegendRange: construct_legend_range, + constructLegendTicks: construct_legend_ticks, + constructLegendTransform: construct_legend_transform, + constructLegendShapes: construct_legend_shapes, + constructLegendSpacings: construct_legend_spacings, precision: precision, transformCoords: transform_coords, mergeOrApply: merge_or_apply, suggestTickNum: suggest_tick_num, + returnD3Scale: return_D3_scale, TZOffsetToMinutes: tz_offset_to_minutes }; diff --git a/src/js/util/parse-data-by-series.js b/src/js/util/parse-data-by-series.js index 6b82a5be..426ee7c3 100644 --- a/src/js/util/parse-data-by-series.js +++ b/src/js/util/parse-data-by-series.js @@ -49,6 +49,7 @@ function dataBySeries(input, opts) { return { series: series, + data: parsedInput, input: { raw: input, type: opts.type }, hasDate: parsedInput.hasDate && (!opts.type || opts.type == "date"), isNumeric: parsedInput.isNumeric && (!opts.type || opts.type == "numeric") diff --git a/src/js/util/parse-delimited-input.js b/src/js/util/parse-delimited-input.js index 86c2ca56..e4d1dbc0 100644 --- a/src/js/util/parse-delimited-input.js +++ b/src/js/util/parse-delimited-input.js @@ -93,9 +93,9 @@ function parseDelimInput(input, opts) { } function cast_data(input, columnNames, stripCharsRegex, opts) { - var dsv = d3.dsv(opts.delimiter, "text/plain"); - var all_index_types = []; - var all_entry_values = []; + const dsv = d3.dsv(opts.delimiter, "text/plain"); + const all_index_types = []; + const all_entry_values = []; let hasDate; let isNumeric; From 04674f27ace05d942664e423718011ee13dba5bb Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 14:07:17 -0500 Subject: [PATCH 004/152] more integration --- src/js/charts/charts/cb-xy/draw-xy.js | 9 +++-- src/js/charts/maps/mb-50/50-parse.js | 2 ++ src/js/charts/maps/mb-50/mb-50-config.js | 14 ++++---- .../charts/maps/mb-bubble/mb-Bubble-config.js | 32 ++++++++--------- .../maps/mb-cartogram/mb-cartogram-config.js | 36 +++++++++---------- src/js/components/ChartTypeSelector.jsx | 5 ++- src/js/components/RendererWrapper.jsx | 22 +++++++----- src/js/components/chart-xy/XYRenderer.jsx | 3 ++ src/js/components/map-50/50map.jsx | 31 ++++++++++++---- src/js/components/map-50/Map50Renderer.jsx | 19 +++++----- .../map-bubble/MapBubbleRenderer.jsx | 9 +++-- .../map-cartogram/MapCartogramRenderer.jsx | 31 ++++++++-------- src/js/stores/ChartPropertiesStore.js | 12 +++++-- 13 files changed, 131 insertions(+), 94 deletions(-) diff --git a/src/js/charts/charts/cb-xy/draw-xy.js b/src/js/charts/charts/cb-xy/draw-xy.js index 35678a66..2a2512c6 100644 --- a/src/js/charts/charts/cb-xy/draw-xy.js +++ b/src/js/charts/charts/cb-xy/draw-xy.js @@ -5,7 +5,6 @@ if (process.env.NODE_ENV !== "test") { var filter = require("lodash/filter"); var each = require("lodash/each"); -var chartStyle = require("../../../config/chartconfig/chart-style"); var cb_mixins = require("../cb-d4-mixins.js"); var help = require("../../../util/helper.js"); @@ -94,7 +93,7 @@ var using = { line.x(function(d) { if (this.x.$scale == "time" || this.x.$scale == "linear") { return this.x(d[this.x.$key]); - } + } else { return this.x(d[this.x.$key]) + this.x.rangeBand() / 2; } @@ -351,12 +350,12 @@ var cb_xy = d4.chart("cb-xy", function() { var coords = help.transformCoords(axisNode.attr("transform")); coords[1] = coords[1] + xy_config.xAxisShift; axisNode.attr("transform","translate(" + coords + ")"); - - - + + + }); }) diff --git a/src/js/charts/maps/mb-50/50-parse.js b/src/js/charts/maps/mb-50/50-parse.js index f49f1142..04e4f993 100644 --- a/src/js/charts/maps/mb-50/50-parse.js +++ b/src/js/charts/maps/mb-50/50-parse.js @@ -20,6 +20,8 @@ const parseMapType = require('./../../../util/parse-map-type'); const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { // Build chart settings from defaults or provided settings + console.log("o rly?"); + parseOpts = parseOpts || {}; // clone so that we aren't modifying original // this can probably be avoided by applying new settings differently diff --git a/src/js/charts/maps/mb-50/mb-50-config.js b/src/js/charts/maps/mb-50/mb-50-config.js index 22d49190..59df2792 100644 --- a/src/js/charts/maps/mb-50/mb-50-config.js +++ b/src/js/charts/maps/mb-50/mb-50-config.js @@ -96,12 +96,12 @@ const defaultProps = Object.freeze({ data: [], input: {}, - stylings: { - stroke:'#666', - showLegendTicks: true, - showStateLabels: false, - legendPrecision: 1 - }, + stylings: { + stroke:'#666', + showLegendTicks: true, + showStateLabels: false, + legendPrecision: 1 + }, chartSettings: [ { colorIndex: 0, @@ -112,7 +112,7 @@ const defaultProps = Object.freeze({ prefix: "", suffix: "", type: "quantize" - } + } }, ], extraPadding: { diff --git a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js index 057f4206..938bcc24 100644 --- a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js +++ b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js @@ -96,26 +96,26 @@ const defaultProps = Object.freeze({ data: [], input: {}, - stylings: { - stroke:'#fff', - radiusVal: 25, - legendMove: { - top:0, - left:0 - }, - legendText: 'Write what the legend shapes represent here' - }, + stylings: { + stroke:'#fff', + radiusVal: 25, + legendMove: { + top:0, + left:0 + }, + legendText: 'Write what the legend shapes represent here' + }, chartSettings: [ { colorIndex: 0, scale: { - ticks: 5, - colors: 4, - precision: 1, - prefix: "", - suffix: "", - type: "quantize" - } + ticks: 5, + colors: 4, + precision: 1, + prefix: "", + suffix: "", + type: "quantize" + } }, ], extraPadding: { diff --git a/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js index a5871d1f..06d4267c 100644 --- a/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js +++ b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js @@ -96,23 +96,23 @@ const defaultProps = Object.freeze({ data: [], input: {}, - stylings: { - corners: '2', - legendText: 'Write what the legend shapes represent here', - legendMove: { - top:0, - left:0 - }, - stroke:'#aaa', - type: "grid", - radiusVal: 35, - squareWidth: '42', - cellSize: 50, - showDC: false, - showLegendTicks: false, - showStateLabels: true, - showValuesLabels: false - }, + stylings: { + corners: '2', + legendText: 'Write what the legend shapes represent here', + legendMove: { + top:0, + left:0 + }, + stroke:'#aaa', + type: "grid", + radiusVal: 35, + squareWidth: '42', + cellSize: 50, + showDC: false, + showLegendTicks: false, + showStateLabels: true, + showValuesLabels: false + }, chartSettings: [ { colorIndex: 0, @@ -120,7 +120,7 @@ const defaultProps = Object.freeze({ prefix: "", suffix: "", type: "quantize" - } + } }, ], extraPadding: { diff --git a/src/js/components/ChartTypeSelector.jsx b/src/js/components/ChartTypeSelector.jsx index cff2da7f..45ab59a7 100644 --- a/src/js/components/ChartTypeSelector.jsx +++ b/src/js/components/ChartTypeSelector.jsx @@ -43,7 +43,7 @@ var ChartTypeSelctor = React.createClass({ value: mapTypeKey }; }); - var allTypeButtons = concat(chartTypeButtons,mapTypeButtons); + var allTypeButtons = concat(chartTypeButtons, mapTypeButtons); return { chartConfig: allTypeButtons }; }, @@ -63,6 +63,7 @@ var ChartTypeSelctor = React.createClass({ var prevProps = this.props.chartProps; var visualConfig = chartConfig[chartType] || mapConfig[chartType]; var newDefaultProps = visualConfig.defaultProps.chartProps; + const stylings = newDefaultProps.stylings; var prevSettings = prevProps.chartSettings; var newDefaultSettings = newDefaultProps.chartSettings[0]; var prevKeys = keys(prevSettings[0]); @@ -79,6 +80,8 @@ var ChartTypeSelctor = React.createClass({ return helper.mergeOrApply(newDefaultSettings, prevSettings[i]); }); + newProps.stylings = stylings; + /* Dispatch the new model to the flux stores */ ChartServerActions.receiveModel({ chartProps: newProps, diff --git a/src/js/components/RendererWrapper.jsx b/src/js/components/RendererWrapper.jsx index c3daf948..66b93ac6 100644 --- a/src/js/components/RendererWrapper.jsx +++ b/src/js/components/RendererWrapper.jsx @@ -79,10 +79,13 @@ var RendererWrapper = React.createClass({ }, componentWillReceiveProps: function(nextProps) { - var newType = nextProps.model.metadata.chartType; - var prevType = this.props.model.metadata.chartType; + console.log(nextProps,'lol'); + const newType = nextProps.model.metadata.chartType; + const prevType = this.props.model.metadata.chartType; if (newType !== prevType) { - var chartConfig = convertConfig(chartConfigs[newType], null, this.state.emSize, this.state.domNodeWidth); + console.log('update'); + const chartConfig = convertConfig(chartConfigs[newType] || mapConfigs[newType], null, this.state.emSize, this.state.domNodeWidth); + this.setState({ chartConfig: chartConfig }); } }, @@ -120,7 +123,7 @@ var RendererWrapper = React.createClass({ domNodeWidth: domNodeWidth, emSize: bp.em_size, svgSizeClass: bp.class_name, - chartConfig: convertConfig(chartConfigs[chartType], null, bp.em_size, domNodeWidth), + chartConfig: convertConfig(chartConfigs[chartType] || mapConfigs[newtype], null, bp.em_size, domNodeWidth), styleConfig: convertConfig(chartStyle, null, bp.em_size, domNodeWidth) }; }, @@ -185,10 +188,11 @@ var RendererWrapper = React.createClass({ }, render: function() { - var chartType = this.props.model.metadata.chartType; - var width = this.props.width || this.state.domNodeWidth; - var displayConfig = this.state.chartConfig.display; - var svgClassName = this.props.svgClassName || ''; + const chartType = this.props.model.metadata.chartType; + const width = this.props.width || this.state.domNodeWidth; + console.log(this.state,'hm'); + let displayConfig = this.state.chartConfig.display; + const svgClassName = this.props.svgClassName || ''; if (!width) { return
; @@ -227,7 +231,7 @@ var RendererWrapper = React.createClass({ console.error(e.name, e.message); } - var Renderer = chartRenderers[chartType]; + var Renderer = chartRenderers[chartType] || mapRenderers[chartType]; var chartProps; var metadata; diff --git a/src/js/components/chart-xy/XYRenderer.jsx b/src/js/components/chart-xy/XYRenderer.jsx index 65b35d83..788b8ce2 100644 --- a/src/js/components/chart-xy/XYRenderer.jsx +++ b/src/js/components/chart-xy/XYRenderer.jsx @@ -112,6 +112,9 @@ var XYRenderer = React.createClass({ }, render: function() { + + console.log(this.props,'props xy'); + var _chartProps = this.props.chartProps; var displayConfig = this.props.displayConfig; var axis = d3.svg.axis(); diff --git a/src/js/components/map-50/50map.jsx b/src/js/components/map-50/50map.jsx index 17f2d4f3..63371659 100644 --- a/src/js/components/map-50/50map.jsx +++ b/src/js/components/map-50/50map.jsx @@ -16,17 +16,35 @@ const polygonClass = 'polygon-test'; const MapRenderer = React.createClass({ propTypes: { - chartProps: React.PropTypes.object.isRequired, - stylings: React.PropTypes.object.isRequired - }, + displayConfig: React.PropTypes.shape({ + margin: React.PropTypes.object.isRequired, + padding: React.PropTypes.object.isRequired, + labelRectSize: React.PropTypes.number.isRequired, + afterLegend: React.PropTypes.number.isRequired + }).isRequired, + chartProps: React.PropTypes.shape({ + chartSettings: React.PropTypes.array.isRequired, + data: React.PropTypes.array.isRequired, + scale: React.PropTypes.object.isRequired, + _annotations: React.PropTypes.object, + date: React.PropTypes.object, + mobile: React.PropTypes.object + }).isRequired, + metadata: React.PropTypes.object, + showMetadata: React.PropTypes.bool, + editable: React.PropTypes.bool, + useMobileSettings: React.PropTypes.bool + }, render: function() { const chartProps = this.props.chartProps; - const stylings = this.props.stylings; + const stylings = chartProps.stylings; + + const displayConfig = this.props.displayConfig; const schema = chartProps.schema.schema; const featname = schema.feature; - console.log(topojson,'topo') + const data = topojson.feature(schema.topojson, schema.topojson.objects[featname]); @@ -51,8 +69,7 @@ const MapRenderer = React.createClass({ geoPath= {geo} schema={schema} proj={proj} - stylings={stylings} - translate={this.props.translate} + displayConfig={displayConfig} polygonClass={polygonClass} /> ); diff --git a/src/js/components/map-50/Map50Renderer.jsx b/src/js/components/map-50/Map50Renderer.jsx index fde5243c..f9423a2a 100644 --- a/src/js/components/map-50/Map50Renderer.jsx +++ b/src/js/components/map-50/Map50Renderer.jsx @@ -12,24 +12,27 @@ const PolygonCollection = React.createClass({ geoPath: React.PropTypes.func, polygonClass: React.PropTypes.string, onClick: React.PropTypes.func, - chartProps: React.PropTypes.object.isRequired, - stylings: React.PropTypes.object.isRequired + chartProps: React.PropTypes.object.isRequired }, render: function() { + console.log(this.props,'props'); + + const chartProps = this.props.chartProps; + const mapSchema = this.props.schema; const geoPath = this.props.geoPath; const projection = this.props.proj; - const currSettings = this.props.chartProps.scale; + const currSettings = chartProps.scale; - const alldata = this.props.chartProps.data; - const columnNames = this.props.chartProps.columns; + const alldata = chartProps.data; + const columnNames = chartProps.columns; - const showLabels = this.props.stylings.showStateLabels; + const showLabels = chartProps.stylings.showStateLabels; const adjustLabels = mapSchema.adjustLabels; - const translation = `translate(0,${this.props.translate.maptop})`; + const translation = `translate(0,${this.props.displayConfig.margin.maptop})`; if (this.props.onClick) onClick = this.props.onClick; @@ -45,7 +48,7 @@ const PolygonCollection = React.createClass({ }); const styles = {}; - styles.stroke = this.props.stylings.stroke; + styles.stroke = chartProps.stylings.stroke; styles.fill = (thisvalue.length) ? currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]) : '#777'; if (showLabels) { diff --git a/src/js/components/map-bubble/MapBubbleRenderer.jsx b/src/js/components/map-bubble/MapBubbleRenderer.jsx index c32d4151..73e5a3c8 100644 --- a/src/js/components/map-bubble/MapBubbleRenderer.jsx +++ b/src/js/components/map-bubble/MapBubbleRenderer.jsx @@ -15,8 +15,7 @@ const PolygonCollection = React.createClass({ geoPath: React.PropTypes.func, polygonClass: React.PropTypes.string, onClick: React.PropTypes.func, - chartProps: React.PropTypes.object.isRequired, - stylings: React.PropTypes.object.isRequired + chartProps: React.PropTypes.object.isRequired }, render: function() { @@ -79,7 +78,7 @@ const PolygonCollection = React.createClass({ if (thisvalue.length) { styles2.stroke = currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]); styles2.fill = currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]); - } + } else { styles2.stroke = '#777'; styles2.fill = '#777' @@ -95,7 +94,7 @@ const PolygonCollection = React.createClass({ } circleReturn.push( - ) - + return ( { + force.on("tick", (e, i) => { if (i > 200) force.stop(); - return (stylings.type === 'dorling') ? + return (stylings.type === 'dorling') ? helperCarto.updateDorling (e, d3Node, this.props.nodes) : - helperCarto.updateDemers (e, d3Node, this.props.nodes); + helperCarto.updateDemers (e, d3Node, this.props.nodes); }) .resume(); @@ -78,7 +77,7 @@ const PolygonCollection = React.createClass({ force.nodes(this.props.nodes); force.start(); - } + } }, componentDidUpdate: function(nextProps, nextState) { @@ -103,30 +102,30 @@ const PolygonCollection = React.createClass({ if (stylings.type !== 'grid') { - (stylings.type === 'dorling') ? + (stylings.type === 'dorling') ? helperCarto.switchDorling (d3Node, stylings) : - helperCarto.switchDemers (d3Node, stylings); + helperCarto.switchDemers (d3Node, stylings); - if (stylings.type !== nextProps.stylings.type + if (stylings.type !== nextProps.stylings.type || stylings.showDC !== nextProps.stylings.showDC) { - force.on("tick", (e, i) => { + force.on("tick", (e, i) => { if (i > 200) force.stop(); - return (stylings.type === 'dorling') ? + return (stylings.type === 'dorling') ? helperCarto.updateDorling (e, d3Node, this.props.nodes) : - helperCarto.updateDemers (e, d3Node, this.props.nodes); + helperCarto.updateDemers (e, d3Node, this.props.nodes); }) .resume(); force.nodes(this.props.nodes); force.start(); - } + } else force.stop(); - } + } else { force.stop(); - helperCarto.switchGrid(d3Node, stylings) + helperCarto.switchGrid(d3Node, stylings) } }, render: function() { diff --git a/src/js/stores/ChartPropertiesStore.js b/src/js/stores/ChartPropertiesStore.js index 56f219e3..279012fd 100644 --- a/src/js/stores/ChartPropertiesStore.js +++ b/src/js/stores/ChartPropertiesStore.js @@ -79,6 +79,7 @@ function registeredCallback(payload) { var action = payload.action; var parser; var config; + var thisModel; switch(action.eventName) { /* @@ -87,10 +88,13 @@ function registeredCallback(payload) { */ case "receive-model": Dispatcher.waitFor([SessionStore.dispatchToken]); - chartType = action.model.metadata.chartType; + thisModel = action.model; + chartType = thisModel.metadata.chartType; config = chartConfig[chartType] || mapConfig[chartType]; parser = config.parser; - _chartProps = parser(config, action.model.chartProps); + _chartProps = parser(config, thisModel.chartProps); + console.log('receive', thisModel); + console.log(_chartProps,'uh'); break; /* @@ -103,6 +107,7 @@ function registeredCallback(payload) { _chartProps = newProps; ChartPropertiesStore.emitChange(); }); + console.log('update all'); break; /* @@ -112,6 +117,7 @@ function registeredCallback(payload) { case "update-chart-prop": _chartProps[action.key] = action.newProp; ChartPropertiesStore.emitChange(); + console.log('update one'); break; /* @@ -126,6 +132,7 @@ function registeredCallback(payload) { _chartProps = newProps; ChartPropertiesStore.emitChange(); }); + console.log('update and reparse'); break; case "update-data-input": @@ -140,6 +147,7 @@ function registeredCallback(payload) { ChartPropertiesStore.emitChange(); }, parseOpts); }); + console.log('update data'); break; default: From 6c7aa7b7bbdcbb0c041ca79c78443fe9664cb113 Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 14:12:09 -0500 Subject: [PATCH 005/152] integration --- src/js/components/map-50/Map50Editor.jsx | 2 +- src/js/components/shared/Map_ScaleSettings.jsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/js/components/map-50/Map50Editor.jsx b/src/js/components/map-50/Map50Editor.jsx index 731a5392..0cc4ca92 100644 --- a/src/js/components/map-50/Map50Editor.jsx +++ b/src/js/components/map-50/Map50Editor.jsx @@ -85,7 +85,7 @@ let MapEditor = React.createClass({ - + {prefixSuffix}
- + Date: Mon, 26 Dec 2016 14:31:41 -0500 Subject: [PATCH 006/152] integrations --- src/js/components/ChartTypeSelector.jsx | 2 +- src/js/components/map-50/Map50Renderer.jsx | 4 +++- src/js/components/shared/DataInput.jsx | 11 ++++++++--- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/js/components/ChartTypeSelector.jsx b/src/js/components/ChartTypeSelector.jsx index 45ab59a7..190e21c7 100644 --- a/src/js/components/ChartTypeSelector.jsx +++ b/src/js/components/ChartTypeSelector.jsx @@ -95,7 +95,7 @@ var ChartTypeSelctor = React.createClass({

1 - Select chart type + Select visual type

{ - let polygonType = (polygonData.type) ? polygonData.type+'_' : ''; + const polygonType = (polygonData.type) ? polygonData.type+'_' : ''; let thisvalue; alldata.forEach(function(d, j) { @@ -47,6 +47,8 @@ const PolygonCollection = React.createClass({ } }); + console.log(thisvalue,'value'); + const styles = {}; styles.stroke = chartProps.stylings.stroke; styles.fill = (thisvalue.length) ? currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]) : '#777'; diff --git a/src/js/components/shared/DataInput.jsx b/src/js/components/shared/DataInput.jsx index 86788d7d..2bf61c08 100644 --- a/src/js/components/shared/DataInput.jsx +++ b/src/js/components/shared/DataInput.jsx @@ -42,19 +42,24 @@ var DataInput = React.createClass({ }, _handleReparseUpdate: function(k, v) { - if (k == "input") { + + let input; + + if (k === "input") { input = update(this.props.chartProps.input, { $merge: { raw: v, type: undefined }}); ChartViewActions.updateInput(k, input); - } else if (k == "type") { + } + else if (k == "type") { input = update(this.props.chartProps.input, { $set: { raw: v.raw, type: v.type }}); ChartViewActions.updateAndReparse("input", input); - } else { + } + else { return; } }, From a9bec1c535a9ef5039d4423754304ff30f2ffc0e Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 17:10:42 -0500 Subject: [PATCH 007/152] basic data render in place --- src/js/charts/maps/mb-50/50-parse.js | 17 +- src/js/components/map-50/50map.jsx | 7 +- src/js/components/map-50/Map50Renderer.jsx | 12 +- src/js/config/chartconfig/default-input.js | 76 +++++ src/js/config/mapconfig/schemas/us50.js | 2 + src/js/maps/MapConfig.js | 52 ---- src/js/maps/editors.js | 19 -- src/js/maps/map-config.js | 9 - src/js/maps/mb-50/50-parse.js | 258 ---------------- src/js/maps/mb-50/mb-50-config.js | 157 ---------- src/js/maps/mb-50/mb-50-dimensions.js | 37 --- src/js/maps/mb-bubble/Bubble-parse.js | 285 ------------------ src/js/maps/mb-bubble/mb-Bubble-config.js | 160 ---------- src/js/maps/mb-bubble/mb-bubble-dimensions.js | 40 --- src/js/maps/mb-cartogram/Cartogram-parse.js | 281 ----------------- .../maps/mb-cartogram/mb-cartogram-config.js | 165 ---------- .../mb-cartogram/mb-cartogram-dimensions.js | 37 --- .../maps/mb-cartogram/mb-cartogram-helpers.js | 275 ----------------- src/js/maps/renderers.js | 10 - src/js/util/parse-data-by-series.js | 9 +- src/js/util/parse-delimited-input.js | 39 +-- src/js/util/parse-map-data-by-series.js | 95 ++++++ src/js/util/validate-data-input.js | 17 +- 23 files changed, 234 insertions(+), 1825 deletions(-) delete mode 100644 src/js/maps/MapConfig.js delete mode 100644 src/js/maps/editors.js delete mode 100644 src/js/maps/map-config.js delete mode 100644 src/js/maps/mb-50/50-parse.js delete mode 100644 src/js/maps/mb-50/mb-50-config.js delete mode 100644 src/js/maps/mb-50/mb-50-dimensions.js delete mode 100644 src/js/maps/mb-bubble/Bubble-parse.js delete mode 100644 src/js/maps/mb-bubble/mb-Bubble-config.js delete mode 100644 src/js/maps/mb-bubble/mb-bubble-dimensions.js delete mode 100644 src/js/maps/mb-cartogram/Cartogram-parse.js delete mode 100644 src/js/maps/mb-cartogram/mb-cartogram-config.js delete mode 100644 src/js/maps/mb-cartogram/mb-cartogram-dimensions.js delete mode 100644 src/js/maps/mb-cartogram/mb-cartogram-helpers.js delete mode 100644 src/js/maps/renderers.js create mode 100644 src/js/util/parse-map-data-by-series.js diff --git a/src/js/charts/maps/mb-50/50-parse.js b/src/js/charts/maps/mb-50/50-parse.js index 04e4f993..377dc8b5 100644 --- a/src/js/charts/maps/mb-50/50-parse.js +++ b/src/js/charts/maps/mb-50/50-parse.js @@ -1,7 +1,7 @@ import {clone, map, assign, each, filter, flatten, isEqual} from 'lodash'; const colorScales = require('./../../../util/colorscales'); -const dataBySeries = require("./../../../util/parse-data-by-series"); +const dataBySeries = require("./../../../util/parse-map-data-by-series"); const help = require("./../../../util/helper"); const SessionStore = require("../../../stores/SessionStore"); @@ -20,8 +20,6 @@ const parseMapType = require('./../../../util/parse-map-type'); const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { // Build chart settings from defaults or provided settings - console.log("o rly?"); - parseOpts = parseOpts || {}; // clone so that we aren't modifying original // this can probably be avoided by applying new settings differently @@ -31,9 +29,9 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior type: chartProps.input.type }); - const dataParsed = bySeries.data; + console.log(bySeries.series,'ughhed') - console.log(bySeries,'hahahah'); + const dataParsed = bySeries.data; let parsedInputEntries = dataParsed.entries; const columnNames = dataParsed.columnNames; @@ -55,6 +53,8 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior }; }); + console.log(JSON.stringify(bySeries.series),'ugh') + const chartSettings = map(bySeries.series, (dataSeries, i) => { let settings; @@ -79,7 +79,7 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior }); // not needed - labels.values = map(bySeries.series, (dataSeries, i) => { + /*labels.values = map(bySeries.series, (dataSeries, i) => { if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); else { @@ -87,7 +87,7 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior name: dataSeries.name }; } - }); + });*/ const scale = {}; const legends = {}; @@ -241,6 +241,9 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior chartProps.mobile = {}; } */ + + console.log(JSON.stringify(bySeries.series),'ugh2') + let newChartProps = assign(chartProps, { chartSettings: chartSettings, data: bySeries.series, diff --git a/src/js/components/map-50/50map.jsx b/src/js/components/map-50/50map.jsx index 63371659..124491a5 100644 --- a/src/js/components/map-50/50map.jsx +++ b/src/js/components/map-50/50map.jsx @@ -1,16 +1,15 @@ import React from 'react'; import update from 'react-addons-update'; -// Map - import d3 from 'd3'; const topojson = require('topojson'); + import PolygonCollection from './Map50Renderer.jsx'; +import ChartRendererMixin from "./../mixins/MapRendererMixin.js"; const projectionFunc = require('react-d3-map-core').projection; const geoPath = require('react-d3-map-core').geoPath; -import ChartRendererMixin from "./../mixins/MapRendererMixin.js"; - +// move into config? const polygonClass = 'polygon-test'; const MapRenderer = React.createClass({ diff --git a/src/js/components/map-50/Map50Renderer.jsx b/src/js/components/map-50/Map50Renderer.jsx index 9f17a6fa..c8cbe350 100644 --- a/src/js/components/map-50/Map50Renderer.jsx +++ b/src/js/components/map-50/Map50Renderer.jsx @@ -19,12 +19,9 @@ const PolygonCollection = React.createClass({ console.log(this.props,'props'); const chartProps = this.props.chartProps; - const mapSchema = this.props.schema; - const geoPath = this.props.geoPath; const projection = this.props.proj; - const currSettings = chartProps.scale; const alldata = chartProps.data; @@ -34,20 +31,27 @@ const PolygonCollection = React.createClass({ const adjustLabels = mapSchema.adjustLabels; const translation = `translate(0,${this.props.displayConfig.margin.maptop})`; + console.log(columnNames,'names'); + + console.log(currSettings,'data'); + if (this.props.onClick) onClick = this.props.onClick; const polygonCollection = this.props.data.map((polygonData, i) => { const polygonType = (polygonData.type) ? polygonData.type+'_' : ''; + let thisvalue; + console.log(polygonData, 'data') + alldata.forEach(function(d, j) { if (thisvalue === undefined || !thisvalue.length) { thisvalue = Object.assign(filter(d.values, function(o) { return mapSchema.test(o[columnNames[0]], polygonData.id); }), {index:d.index}); } }); - console.log(thisvalue,'value'); + console.log(JSON.stringify(thisvalue),'value'); const styles = {}; styles.stroke = chartProps.stylings.stroke; diff --git a/src/js/config/chartconfig/default-input.js b/src/js/config/chartconfig/default-input.js index 42035ea3..9137610c 100644 --- a/src/js/config/chartconfig/default-input.js +++ b/src/js/config/chartconfig/default-input.js @@ -4,6 +4,8 @@ * @memberof config * @static */ + + /* var default_input = [ "date Juice Travel", "2000-01-01 106.3 49.843099", @@ -161,6 +163,80 @@ var numeric = [ "8 0.694160979 0.681558882", "16 0.209978847 0.306421625", "32 0.066388111 0.946670922" +].join("\n");*/ + +/** + * Tabular data that is loaded in when Mapbuilder loads initially + * @name default_input + * @memberof config + * @static + */ + +const default_input2 = [ + "states group values", + "Brooklyn Athletes 2", + "Manhattan Athletes 1", + "Staten Island Athletes 6", + "Queens Athletes 10", + "Bronx Athletes 20" ].join("\n"); + + +const default_input = [ + "states group values", + "AK Athletes 2", + "AL Athletes 1", + "AR Athletes 6", + "AZ Athletes 10", + "CA Athletes 20", + "CO Athletes 18", + "CT Athletes 8", + "DC Athletes 3", + "DE Athletes 2", + "FL Athletes 39", + "GA Athletes 14", + "HI Athletes 4", + "ID Athletes 2", + "IL Athletes 17", + "IN Athletes 13", + "IA Athletes 3", + "KS Athletes 3", + "KY Athletes 2", + "LA Athletes 3", + "ME Athletes 1", + "MD Athletes 11", + "MA Athletes 13", + "MI Athletes 10", + "MN Athletes 11", + "MS Athletes 4", + "MO Athletes 11", + "MT Athletes 0", + "NE Athletes 4", + "NV Athletes 4", + "NH Athletes 4", + "NJ Athletes 39", + "NM Athletes 2", + "NY Athletes 30", + "NC Athletes 4", + "ND Athletes 0", + "OH Athletes 13", + "OK Athletes 1", + "OR Athletes 14", + "PA Athletes 31", + "RI Athletes 4", + "SC Athletes 22", + "SD Athletes 1", + "TN Athletes 2", + "TX Athletes 33", + "UT Athletes 4", + "VT Athletes 1", + "VA Athletes 14", + "WA Athletes 16", + "WV Athletes 0", + "WI Athletes 5", + "WY Athletes 0", ].join("\n"); module.exports = default_input; + + +module.exports = default_input; diff --git a/src/js/config/mapconfig/schemas/us50.js b/src/js/config/mapconfig/schemas/us50.js index b6fdd753..511385dc 100644 --- a/src/js/config/mapconfig/schemas/us50.js +++ b/src/js/config/mapconfig/schemas/us50.js @@ -65,6 +65,8 @@ const us = { // loop through object .. find the key val of the one you want.. const column_val_converted = this.matchLogic(column_val); // + //console.log(column_val_converted,polygon_val, column_val); + return (toNumber(column_val_converted) === toNumber(polygon_val)); } } diff --git a/src/js/maps/MapConfig.js b/src/js/maps/MapConfig.js deleted file mode 100644 index 42a9d9ac..00000000 --- a/src/js/maps/MapConfig.js +++ /dev/null @@ -1,52 +0,0 @@ -/** -* ### Chart config -* Set up a configuration object for a given chart type -* @name ChartConfig -* @class -* @property {object} settings -* @property {string} settings.displayName - How this type's name should be displayed in the interface -* @property {function} settings.parser - Func to parse input for this chart type -* @property {function} settings.calculateDimensions - Func to calculate dimensions of this chart type -* @property {object} settings.display - Static display config for this chart type, such as positioning and spacing -* @property {object} settings.defaultProps - Defaults for dynamic properties that will be used to draw the chart -*/ - -function MapConfig(settings) { - this.displayName = settings.displayName; - - /** - * Func that parses input and settings to return newly parsed `chartProps` - * @param {object} config - The parsed configuration for this chart type - * @param {object} _chartProps - Previous `chartProps` - * @param {function} callback - Function to pass new `chartProps` to upon parse completion - * @param {object} parseOpts - Additional parse options - * - * @return {Object} chartProps - Updated `chartProps` - * @memberof ChartConfig - * @instance - */ - this.parser = settings.parser; - - /** - * Func that returns an object of `{width: N, height: N}` that will determine - * dimensions of a chart - * @param {number} width - Width of container or area that will contain the chart - * @param {object} model - The `chartProps` and `metadata` of the current chart - * @param {object} chartConfig - Parsed chart configuration - * @param {boolean} enableResponsive - Should we make dimensions relative to - * container or use preset sizes - * @param {number} extraHeight - Additional height we need to account for, eg - * from wrapped text at the footer - * - * @return {Object} dimensions - Dimensions returned by calculation - * @return {number} dimensions.width - * @return {number} dimension.height - * @memberof ChartConfig - * @instance - */ - this.calculateDimensions = settings.calculateDimensions; - this.display = settings.display; - this.defaultProps = settings.defaultProps; -} - -module.exports = MapConfig; diff --git a/src/js/maps/editors.js b/src/js/maps/editors.js deleted file mode 100644 index 115de2d8..00000000 --- a/src/js/maps/editors.js +++ /dev/null @@ -1,19 +0,0 @@ -/** - * @name editors - */ - -// Editor components for chart types, as well as their mobile override editor interfaces -module.exports = { - map50: { - Editor: require("../components/map-50/Map50Editor.jsx"), - MobileOverrides: require("../components/map-50/Map50Mobile.jsx") - }, - mapcartogram: { - Editor: require("../components/map-cartogram/MapCartogramEditor.jsx"), - MobileOverrides: require("../components/map-cartogram/MapCartogramMobile.jsx") - }, - mapbubble: { - Editor: require("../components/map-bubble/MapBubbleEditor.jsx"), - MobileOverrides: require("../components/map-bubble/MapBubbleMobile.jsx") - } -}; diff --git a/src/js/maps/map-config.js b/src/js/maps/map-config.js deleted file mode 100644 index c313d8cf..00000000 --- a/src/js/maps/map-config.js +++ /dev/null @@ -1,9 +0,0 @@ -// Object containing chart types and their respective configs -const mapConfig = { - map50: require('./mb-50/mb-50-config'), - mapcartogram: require('./mb-cartogram/mb-cartogram-config'), - mapbubble: require('./mb-bubble/mb-bubble-config') - -} - -module.exports = mapConfig; diff --git a/src/js/maps/mb-50/50-parse.js b/src/js/maps/mb-50/50-parse.js deleted file mode 100644 index 3f88966c..00000000 --- a/src/js/maps/mb-50/50-parse.js +++ /dev/null @@ -1,258 +0,0 @@ -import {clone, map, assign, each, filter, flatten, isEqual} from 'lodash'; - -const colorScales = require('./../../util/colorscales'); -const dataBySeries = require("./../../util/parse-data-by-series"); -const help = require("../../util/helper"); -const SessionStore = require("../../stores/SessionStore"); - -const parseDelimInput = require("./../../util/parse-delimited-input").parser; -const parseColumns = require("./../../util/parse-delimited-input")._parseColumnVals; -const parseMapType = require('./../../util/parse-map-type'); - -/** - * see [ChartConfig#parser](#chartconfig/parser) - * @see ChartConfig#parser - * @instance - * @memberof xy_config - */ - - -const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { - // Build chart settings from defaults or provided settings - - parseOpts = parseOpts || {}; - // clone so that we aren't modifying original - // this can probably be avoided by applying new settings differently - let chartProps = JSON.parse(JSON.stringify(_chartProps)); - - let bySeries = dataBySeries(chartProps.input.raw, chartProps, { - type: chartProps.input.type - }); - - const dataParsed = bySeries.data; - - let parsedInputEntries = dataParsed.entries; - const columnNames = dataParsed.columnNames; - - const scaleNames = []; - const scaleIndex = []; - - bySeries.series.forEach((d) => { - scaleIndex.push(d.name); - scaleNames.push(d.name); - }); - - const labels = chartProps._annotations.labels; - const _computed = {}; - - scaleIndex.forEach((name, i) => { - _computed[i] = { - data : [] - }; - }); - - const chartSettings = map(bySeries.series, (dataSeries, i) => { - let settings; - - if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; - else { - settings = clone(config.defaultProps.chartProps.chartSettings[0], true); - settings.colorIndex = i; - } - - if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); - else { - settings.label = settings.label || bySeries.series[i].name; - } - - const values = map(dataSeries.values, (d) => { - return +d[columnNames[2]]; - }); - - _computed[i].data = _computed[i].data.concat(values); - - return settings; - }); - - // not needed - labels.values = map(bySeries.series, (dataSeries, i) => { - - if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); - else { - return { - name: dataSeries.name - }; - } - }); - - const scale = {}; - const legends = {}; - const mobileScale = {}; - const maxPrecision = 1; - const factor = Math.pow(10, maxPrecision); - - // Calculate domain and tick values for any scales that exist - each(scaleNames, (name,j) => { - - let currScale; - const currLegend = {}; - - if (chartProps.scale) { - if (chartProps.scale[j]) currScale = chartProps.scale[j]; - else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); - } - else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); - - let domain = help.computeScaleDomain(currScale, _computed[j].data); - - assign(currScale, domain); - - if (_computed[j].data.length <= currScale.colors) currScale.colors = _computed[j].data.length; - - currScale.ticks = currScale.colors + 1; - const ticks = currScale.ticks; - - const totalcolors = currScale.colors; - - currScale.colorIndex = chartSettings[j].colorIndex; - - currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); - - currScale.tickValues.forEach((v, i) => { - const tickPrecision = help.precision(Math.round(v*factor)/factor); - if (tickPrecision > currScale.precision) { - currScale.precision = tickPrecision; - } - currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; - - }); - - currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); - currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); - - scale[j] = currScale; - chartSettings[j].scale = currScale; - - currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; - currLegend.type = currScale.type; - currLegend.label = chartSettings[j].label; - currLegend.prefix = currScale.prefix; - currLegend.suffix = currScale.suffix; - currLegend.shapes = help.constructLegendShapes(currScale.colors); - currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); - currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); - currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); - - //currLegend.spacings = help.constructLegendSpacings(); - //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); - - - legends[name] = currLegend; - chartSettings[j].legends = currLegend; - - /* - - this is not right - */ - /*if (chartProps.mobile) { - if (chartProps.mobile.scale) { - let currMobile = chartProps.mobile.scale[name]; - if (currMobile) { - let domain = help.computeScaleDomain(currMobile, _computed.data, { - nice: true, - minZero: _computed.hasColumn - }); - assign(currMobile, domain); - - } - } - } else { - chartProps.mobile = {}; - } */ - - }); - - // this should all be included in one big loopa loop - - each(chartSettings, (z,g) => { - - map(bySeries.series, (dataSeries, i) => { - if (dataSeries.name === z.label) { - //chartSettings[g].scale = scale[z.label]; - if (bySeries.isNumeric) { - chartSettings[g].scale.isNumeric = bySeries.isNumeric; - - /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || - clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ - } - } - }); - }); - - const firstColumn = columnNames[0]; - const allData = bySeries.series; - - let schema; - - if (priorData.length) { - - const test2 = parseMapType.first_column(priorData, firstColumn); - const test = parseMapType.first_column(allData, firstColumn); - - const test3 = help.isEqualTest(test2, test); - - if (!test3) schema = parseMapType.determine_map(firstColumn, allData); - else schema = priorSchema; - } - else { - - schema = parseMapType.determine_map(firstColumn, allData); - } - - - /* - - if (chartProps.mobile) { - if (chartProps.mobile.scale) { - let currMobile = chartProps.mobile.scale.numericSettings; - if (currMobile) { - let domain = help.computeScaleDomain(currMobile, _computed.data, { - nice: true, - minZero: false - }); - assign(currMobile, domain); - - let ticks = currMobile.ticks; - currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); - each(currMobile.tickValues, function(v) { - let tickPrecision = help.precision(Math.round(v*factor)/factor); - if (tickPrecision > currMobile.precision) { - currMobile.precision = tickPrecision; - } - }); - } - chartProps.mobile.scale.numericSettings = currMobile; - } - } else { - chartProps.mobile = {}; - } */ - - let newChartProps = assign(chartProps, { - chartSettings: chartSettings, - data: bySeries.series, - entries: parsedInputEntries, - input: bySeries.input, - columns: columnNames, - scale: scale, - legend: legends, - schema: schema - }); - - if (callback) { - callback(newChartProps); - } else { - return newChartProps; - } -} - -module.exports = parse50; diff --git a/src/js/maps/mb-50/mb-50-config.js b/src/js/maps/mb-50/mb-50-config.js deleted file mode 100644 index 97bd481b..00000000 --- a/src/js/maps/mb-50/mb-50-config.js +++ /dev/null @@ -1,157 +0,0 @@ -const MapConfig = require("../MapConfig"); -let now = new Date(); - -/** - * ### Configuration of an XY chart - * @name xy_config - */ - -/** -* display -* @static -* @memberof xy_config -* @property {Nem|number} labelRectSize - Size of the legend label rectangle -* @property {Nem|number} labelXMargin - Horiz distance btwn labels -* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text -* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels -* items with colors the appropriate indexed CSS class -* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart -* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart -* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker -* @property {Nem|number} columnPaddingCoefficient - Distance relative to -* width that column charts should be from edge of the chart -* @property {Nem|number} minPaddingOuter - Minimum distance between the -* outside of a chart and a graphical element -* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn -* @property {object} aspectRatio -* @property {number|fraction} aspectRatio.wide -* @property {number|fraction} aspectRatio.longSpot -* @property {number|fraction} aspectRatio.smallSpot -* @property {object} margin - Distances btwn outer chart elements and container -* @property {object} padding - Distances btwn inner chart elements and container -*/ - - - -let display = Object.freeze({ - labelRectSize: "0.6em", - labelXMargin: "0.6em", - labelTextMargin: "0.3em", - labelRowHeight: "1.2em", - afterTitle: "1.6em", - afterLegend: "1.6em", - blockerRectOffset: "0.3em", - columnPaddingCoefficient: 0.3, - minPaddingOuter: "1em", - bottomPaddingWithoutFooter: "3em", - aspectRatio: { - wide: (6 / 7), - longSpot: (4 / 3), - smallSpot: (3 / 4) - }, - margin: { - top: "1.2em", - right: "0.8em", - bottom: "1.2em", - left: "0.8em", - maptop: "3.5em", - mapleft: "", - subtitle: "2em", - legendleft: "2em", - legendsOneRow: "23em", - legendsTwoRow: "22.5em" - }, - padding: { - top: 0, - right: 0, - bottom: "4em", - left: 0 - } -}); - -/** -* @name xy_defaultProps -* @static -* @memberof xy_config -*/ -const defaultProps = Object.freeze({ - /** - * @name chartProps - * @property {object} scale - Default settings for date and primary scales - * @property {array} data - * @property {object} input - * @property {object[]} chartSettings - Default settings for a given series (column) of data - * @property {object} extraPadding - Additional padding. This is a dynamic - * value and is mostly changed within the component itself - * @property {object} _annotations - Additional informative graphical elements - * @property {object} _annotations.labels - If labels are dragged, their - * position settings are saved here - * @property {object[]} _annotations.labels.values - Array of settings for - * dragged labels - * @property {object} mobile - Mobile-specific override settings - * @static - * @memberof xy_defaultProps - */ - chartProps: { - - data: [], - input: {}, - stylings: { - stroke:'#666', - showLegendTicks: true, - showStateLabels: false, - legendPrecision: 1 - }, - chartSettings: [ - { - colorIndex: 0, - scale: { - ticks: 5, - colors: 4, - precision: 1, - prefix: "", - suffix: "", - type: "quantize" - } - }, - ], - extraPadding: { - top: 0, - right: 0, - bottom: 0, - left: 0 - }, - _annotations: { - labels: { - hasDragged: false, - values: [] - } - }, - mobile: {} - }, - /** - * @name metadata - * @property {string} chartType - * @property {string} size - * @static - * @memberof xy_defaultProps - */ - metadata: { - chartType: 'map50', - title: "Title", - subtitle: "Subtitle", - source: "TK", - credit: "", - size: "auto" - } -}); - -const map_config = new MapConfig({ - displayName: "US Choropleth", - parser: require("./50-parse"), - calculateDimensions: require("./mb-50-dimensions"), - display: display, - defaultProps: defaultProps -}); - -module.exports = map_config; diff --git a/src/js/maps/mb-50/mb-50-dimensions.js b/src/js/maps/mb-50/mb-50-dimensions.js deleted file mode 100644 index 61cc8367..00000000 --- a/src/js/maps/mb-50/mb-50-dimensions.js +++ /dev/null @@ -1,37 +0,0 @@ -const chartSizes = require("../../config/map-sizes"); - -// TODO: jsDocify this if it works - -/** - * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) - * @see ChartConfig#calculateDimensions - * @instance - * @memberof xy_config - */ -function calculate_map_dimensions(width, opts) { - let height; - let aspectRatio = opts.displayConfig.aspectRatio; - let metadata = opts.model.metadata; - - if (metadata.size == "auto" || opts.enableResponsive) { - // use current width - } else { - width = chartSizes[metadata.size].width; - } - - switch (metadata.size) { - case "auto": - height = width * aspectRatio.wide; - break; - - default: - height = width * aspectRatio.wide; - } - - return { - width: width, - height: height + opts.extraHeight - }; -} - -module.exports = calculate_map_dimensions; diff --git a/src/js/maps/mb-bubble/Bubble-parse.js b/src/js/maps/mb-bubble/Bubble-parse.js deleted file mode 100644 index 62113a49..00000000 --- a/src/js/maps/mb-bubble/Bubble-parse.js +++ /dev/null @@ -1,285 +0,0 @@ -import {clone, map, assign, each, filter, flatten} from 'lodash'; - -const colorScales = require('./../../util/colorscales'); -const dataBySeries = require("./../../util/parse-data-by-series"); -const help = require("../../util/helper"); -//const help_50 = require("./50-parse-helpers"); -const SessionStore = require("../../stores/SessionStore"); - -const parseDelimInput = require("./../../util/parse-delimited-input").parser; -const parseColumns = require("./../../util/parse-delimited-input")._parseColumnVals; -const parseMapType = require('./../../util/parse-map-type'); - -/** - * see [ChartConfig#parser](#chartconfig/parser) - * @see ChartConfig#parser - * @instance - * @memberof xy_config - */ -let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { - // Build chart settings from defaults or provided settings - - parseOpts = parseOpts || {}; - // clone so that we aren't modifying original - // this can probably be avoided by applying new settings differently - let chartProps = JSON.parse(JSON.stringify(_chartProps)); - - let bySeries = dataBySeries(chartProps.input.raw, chartProps, { - type: chartProps.input.type - }); - - const dataParsed = bySeries.data; - - let parsedInputEntries = dataParsed.entries; - const columnNames = dataParsed.columnNames; - - const scaleNames = []; - const scaleIndex = []; - - bySeries.series.forEach((d) => { - scaleIndex.push(d.name); - scaleNames.push(d.name); - }); - - /*chartProps.chartSettings.forEach((d,i) => { - if (d.label && scaleIndex[i] !== d.label) scaleNames[i] = d.label; - });*/ - - const labels = chartProps._annotations.labels; - const allColumn = true; - // check if either scale contains columns, as we'll need to zero the axis - const _computed = {}; - - scaleIndex.forEach((name, i) => { - - _computed[i] = { - data : [] - }; - - }); - - const chartSettings = map(bySeries.series, (dataSeries, i) => { - let settings; - - if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; - else { - settings = clone(config.defaultProps.chartProps.chartSettings[0], true); - settings.colorIndex = i; - } - - if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); - else { - settings.label = settings.label || bySeries.series[i].name; - } - - const values = map(dataSeries.values, (d) => { - return +d[columnNames[2]]; - }); - - _computed[i].data = _computed[i].data.concat(values); - - return settings; - }); - - // not needed - labels.values = map(bySeries.series, (dataSeries, i) => { - - if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); - else { - return { - name: dataSeries.name - }; - } - }); - - const scale = {}; - const legends = {}; - const mobileScale = {}; - const maxPrecision = 1; - const factor = Math.pow(10, maxPrecision); - - // Calculate domain and tick values for any scales that exist - each(scaleNames, (name,j) => { - - let currScale; - const currLegend = {}; - - if (chartProps.scale) { - if (chartProps.scale[j]) currScale = chartProps.scale[j]; - else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); - } - else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); - - let domain = help.computeScaleDomain(currScale, _computed[j].data); - - assign(currScale, domain); - - const totalcolors = 1; - const ticks = 2; - - currScale.ticks = ticks; - - currScale.colorIndex = chartSettings[j].colorIndex; - - currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); - - currScale.tickValues.forEach((v, i) => { - const tickPrecision = help.precision(Math.round(v*factor)/factor); - if (tickPrecision > currScale.precision) { - currScale.precision = tickPrecision; - } - currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; - - }); - - currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); - currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); - - scale[j] = currScale; - chartSettings[j].scale = currScale; - - currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; - currLegend.type = currScale.type; - currLegend.label = chartSettings[j].label; - currLegend.prefix = currScale.prefix; - currLegend.suffix = currScale.suffix; - currLegend.shapes = help.constructLegendShapes(1); - currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); - currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); - currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); - - //currLegend.spacings = help.constructLegendSpacings(); - //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); - - - legends[name] = currLegend; - chartSettings[j].legends = currLegend; - - /* - - this is not right - */ - /*if (chartProps.mobile) { - if (chartProps.mobile.scale) { - let currMobile = chartProps.mobile.scale[name]; - if (currMobile) { - let domain = help.computeScaleDomain(currMobile, _computed.data, { - nice: true, - minZero: _computed.hasColumn - }); - assign(currMobile, domain); - - } - } - } else { - chartProps.mobile = {}; - } */ - - }); - - // this should all be included in one big loopa loop - - each(chartSettings, (z,g) => { - - map(bySeries.series, (dataSeries, i) => { - if (dataSeries.name === z.label) { - //chartSettings[g].scale = scale[z.label]; - if (bySeries.isNumeric) { - chartSettings[g].scale.isNumeric = bySeries.isNumeric; - - /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || - clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ - } - } - }); - }); - - let allData = []; - - each(bySeries.series, (item, j) => { - - const thisItem = map(item.values, (d) => { - d.index = item.index; - return d; }); - - allData.push(thisItem); - }); - - allData = flatten(allData); - - - - const firstColumn = columnNames[0]; - const allSeriesData = bySeries.series; - - let schema; - - if (priorData.length) { - - const test2 = parseMapType.first_column(priorData, firstColumn); - const test = parseMapType.first_column(allSeriesData, firstColumn); - - const test3 = help.isEqualTest(test2, test); - - if (!test3) schema = parseMapType.determine_map(firstColumn, allSeriesData); - else schema = priorSchema; - } - else { - - schema = parseMapType.determine_map(firstColumn, allSeriesData); - } - - - - - /* - - if (chartProps.mobile) { - if (chartProps.mobile.scale) { - let currMobile = chartProps.mobile.scale.numericSettings; - if (currMobile) { - let domain = help.computeScaleDomain(currMobile, _computed.data, { - nice: true, - minZero: false - }); - assign(currMobile, domain); - - let ticks = currMobile.ticks; - currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); - each(currMobile.tickValues, function(v) { - let tickPrecision = help.precision(Math.round(v*factor)/factor); - if (tickPrecision > currMobile.precision) { - currMobile.precision = tickPrecision; - } - }); - } - chartProps.mobile.scale.numericSettings = currMobile; - } - } else { - chartProps.mobile = {}; - } */ - - - //console.log(bySeries.series,'series'); - - let newChartProps = assign(chartProps, { - chartSettings: chartSettings, - columns: columnNames, - entries: parsedInputEntries, - input: bySeries.input, - data: bySeries.series, - alldata: allData, - scale: scale, - schema: schema, - legend: legends - }); - - if (callback) { - callback(newChartProps); - } else { - return newChartProps; - } - -} - -module.exports = parse50; diff --git a/src/js/maps/mb-bubble/mb-Bubble-config.js b/src/js/maps/mb-bubble/mb-Bubble-config.js deleted file mode 100644 index e680c7d6..00000000 --- a/src/js/maps/mb-bubble/mb-Bubble-config.js +++ /dev/null @@ -1,160 +0,0 @@ -const MapConfig = require("./../MapConfig"); -let now = new Date(); - -/** - * ### Configuration of an XY chart - * @name xy_config - */ - -/** -* display -* @static -* @memberof xy_config -* @property {Nem|number} labelRectSize - Size of the legend label rectangle -* @property {Nem|number} labelXMargin - Horiz distance btwn labels -* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text -* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels -* items with colors the appropriate indexed CSS class -* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart -* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart -* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker -* @property {Nem|number} columnPaddingCoefficient - Distance relative to -* width that column charts should be from edge of the chart -* @property {Nem|number} minPaddingOuter - Minimum distance between the -* outside of a chart and a graphical element -* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn -* @property {object} aspectRatio -* @property {number|fraction} aspectRatio.wide -* @property {number|fraction} aspectRatio.longSpot -* @property {number|fraction} aspectRatio.smallSpot -* @property {object} margin - Distances btwn outer chart elements and container -* @property {object} padding - Distances btwn inner chart elements and container -*/ - - - -let display = Object.freeze({ - labelRectSize: "0.6em", - labelXMargin: "0.6em", - labelTextMargin: "0.3em", - labelRowHeight: "1.2em", - afterTitle: "1.6em", - afterLegend: "1.6em", - blockerRectOffset: "0.3em", - columnPaddingCoefficient: 0.3, - minPaddingOuter: "1em", - bottomPaddingWithoutFooter: "3em", - aspectRatio: { - wide: (6 / 7), - longSpot: (4 / 3), - smallSpot: (3 / 4) - }, - margin: { - top: "1.2em", - right: "0.8em", - bottom: "1.2em", - left: "0.8em", - maptop: "2.5em", - mapleft: "", - subtitle: "2em", - legendleft: "2em", - legendsOneRow: "23em", - legendsTwoRow: "22.5em" - }, - padding: { - top: 0, - right: 0, - bottom: "2em", - left: 0 - } -}); - -/** -* @name xy_defaultProps -* @static -* @memberof xy_config -*/ -const defaultProps = Object.freeze({ - /** - * @name chartProps - * @property {object} scale - Default settings for date and primary scales - * @property {array} data - * @property {object} input - * @property {object[]} chartSettings - Default settings for a given series (column) of data - * @property {object} extraPadding - Additional padding. This is a dynamic - * value and is mostly changed within the component itself - * @property {object} _annotations - Additional informative graphical elements - * @property {object} _annotations.labels - If labels are dragged, their - * position settings are saved here - * @property {object[]} _annotations.labels.values - Array of settings for - * dragged labels - * @property {object} mobile - Mobile-specific override settings - * @static - * @memberof xy_defaultProps - */ - chartProps: { - - data: [], - input: {}, - stylings: { - stroke:'#fff', - radiusVal: 25, - legendMove: { - top:0, - left:0 - }, - legendText: 'Write what the legend shapes represent here' - }, - chartSettings: [ - { - colorIndex: 0, - scale: { - ticks: 5, - colors: 4, - precision: 1, - prefix: "", - suffix: "", - type: "quantize" - } - }, - ], - extraPadding: { - top: 0, - right: 0, - bottom: 0, - left: 0 - }, - _annotations: { - labels: { - hasDragged: false, - values: [] - } - }, - mobile: {} - }, - /** - * @name metadata - * @property {string} chartType - * @property {string} size - * @static - * @memberof xy_defaultProps - */ - metadata: { - chartType: 'mapbubble', - title: "Title", - subtitle: "Subtitle", - source: "TK", - credit: "", - size: "auto" - } -}); - -const map_config = new MapConfig({ - displayName: "US Bubble", - parser: require("./Bubble-parse"), - calculateDimensions: require("./mb-bubble-dimensions"), - display: display, - defaultProps: defaultProps -}); - -module.exports = map_config; diff --git a/src/js/maps/mb-bubble/mb-bubble-dimensions.js b/src/js/maps/mb-bubble/mb-bubble-dimensions.js deleted file mode 100644 index 991c7f8c..00000000 --- a/src/js/maps/mb-bubble/mb-bubble-dimensions.js +++ /dev/null @@ -1,40 +0,0 @@ -const chartSizes = require("../../config/map-sizes"); - -// TODO: jsDocify this if it works - -/** - * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) - * @see ChartConfig#calculateDimensions - * @instance - * @memberof xy_config - */ -function calculate_map_dimensions(width, opts) { - let height; - let aspectRatio = opts.displayConfig.aspectRatio; - let metadata = opts.model.metadata; - - if (metadata.size == "auto" || opts.enableResponsive) { - // use current width - } else { - width = chartSizes[metadata.size].width; - } - - - console.log(aspectRatio,'ratio'); - - switch (metadata.size) { - case "auto": - height = width * aspectRatio.wide; - break; - - default: - height = width * aspectRatio.wide; - } - - return { - width: width, - height: height + opts.extraHeight - }; -} - -module.exports = calculate_map_dimensions; diff --git a/src/js/maps/mb-cartogram/Cartogram-parse.js b/src/js/maps/mb-cartogram/Cartogram-parse.js deleted file mode 100644 index 24d11b4b..00000000 --- a/src/js/maps/mb-cartogram/Cartogram-parse.js +++ /dev/null @@ -1,281 +0,0 @@ -import {clone, map, assign, each, filter, flatten} from 'lodash'; - -const colorScales = require('./../../util/colorscales'); -const dataBySeries = require("./../../util/parse-data-by-series"); -const help = require("../../util/helper"); -//const help_50 = require("./50-parse-helpers"); -const SessionStore = require("../../stores/SessionStore"); - -const parseColumns = require("./../../util/parse-delimited-input")._parseColumnVals; -const parseMapType = require('./../../util/parse-map-type'); - -const parseDelimInput = require("./../../util/parse-delimited-input").parser; - -/** - * see [ChartConfig#parser](#chartconfig/parser) - * @see ChartConfig#parser - * @instance - * @memberof xy_config - */ -let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSchema = []) => { - // Build chart settings from defaults or provided settings - - parseOpts = parseOpts || {}; - // clone so that we aren't modifying original - // this can probably be avoided by applying new settings differently - let chartProps = JSON.parse(JSON.stringify(_chartProps)); - - let bySeries = dataBySeries(chartProps.input.raw, chartProps, { - type: chartProps.input.type - }); - - const dataParsed = bySeries.data; - - let parsedInputEntries = dataParsed.entries; - const columnNames = dataParsed.columnNames; - - const scaleNames = []; - const scaleIndex = []; - - bySeries.series.forEach((d) => { - scaleIndex.push(d.name); - scaleNames.push(d.name); - }); - - chartProps.chartSettings.forEach((d,i) => { - if (d.label && scaleIndex[i] !== d.label) scaleNames[i] = d.label; - }); - - const labels = chartProps._annotations.labels; - const allColumn = true; - // check if either scale contains columns, as we'll need to zero the axis - const _computed = {}; - - scaleIndex.forEach((name, i) => { - _computed[i] = { - data : [] - }; - }); - - const chartSettings = map(bySeries.series, (dataSeries, i) => { - let settings; - - if (chartProps.chartSettings[i]) settings = chartProps.chartSettings[i]; - else { - settings = clone(config.defaultProps.chartProps.chartSettings[0], true); - settings.colorIndex = i; - } - - if (parseOpts.columnsChanged) settings.label = clone(bySeries.series[i].name); - else { - settings.label = settings.label || bySeries.series[i].name; - } - - const values = map(dataSeries.values, (d) => { - return +d[columnNames[2]]; - }); - - _computed[i].data = _computed[i].data.concat(values); - - return settings; - }); - - // not needed - labels.values = map(bySeries.series, (dataSeries, i) => { - - if (labels.values[i]) return assign({}, { name: chartSettings[i].label}, labels.values[i]); - else { - return { - name: dataSeries.name - }; - } - }); - - const scale = {}; - const legends = {}; - const mobileScale = {}; - - const maxPrecision = 1; - const factor = Math.pow(10, maxPrecision); - - // Calculate domain and tick values for any scales that exist - each(scaleNames, (name,j) => { - - let currScale; - const currLegend = {}; - - if (chartProps.scale) { - if (chartProps.scale[j]) currScale = chartProps.scale[j]; - else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); - } - else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); - - let domain = help.computeScaleDomain(currScale, _computed[j].data); - - assign(currScale, domain); - - const totalcolors = 1; - const ticks = 2; - - currScale.ticks = ticks; - - currScale.colorIndex = chartSettings[j].colorIndex; - - currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); - - currScale.tickValues.forEach((v, i) => { - const tickPrecision = help.precision(Math.round(v*factor)/factor); - if (tickPrecision > currScale.precision) { - currScale.precision = tickPrecision; - } - currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; - - }); - - currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); - currLegend.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); - - scale[j] = currScale; - chartSettings[j].scale = currScale; - - currLegend.colorValues = colorScales.scalesMap(currScale.colorIndex)[totalcolors]; - currLegend.type = currScale.type; - currLegend.label = chartSettings[j].label; - currLegend.prefix = currScale.prefix; - currLegend.suffix = currScale.suffix; - currLegend.shapes = help.constructLegendShapes(currScale.colors); - currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); - currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); - currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); - - //currLegend.spacings = help.constructLegendSpacings(); - //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); - - - legends[name] = currLegend; - chartSettings[j].legends = currLegend; - - /* - - this is not right - */ - /*if (chartProps.mobile) { - if (chartProps.mobile.scale) { - let currMobile = chartProps.mobile.scale[name]; - if (currMobile) { - let domain = help.computeScaleDomain(currMobile, _computed.data, { - nice: true, - minZero: _computed.hasColumn - }); - assign(currMobile, domain); - - } - } - } else { - chartProps.mobile = {}; - } */ - - }); - - // this should all be included in one big loopa loop - - each(chartSettings, (z,g) => { - - map(bySeries.series, (dataSeries, i) => { - if (dataSeries.name === z.label) { - //chartSettings[g].scale = scale[z.label]; - if (bySeries.isNumeric) { - chartSettings[g].scale.isNumeric = bySeries.isNumeric; - - /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || - clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ - } - } - }); - }); - - let allData = []; - - each(bySeries.series, (item, j) => { - - const thisItem = map(item.values, (d) => { - d.index = item.index; - return d; }); - - allData.push(thisItem); - }); - - allData = flatten(allData); - - - const firstColumn = columnNames[0]; - const allSeriesData = bySeries.series; - - let schema; - - if (priorData.length) { - - const test2 = parseMapType.first_column(priorData, firstColumn); - const test = parseMapType.first_column(allSeriesData, firstColumn); - - const test3 = help.isEqualTest(test2, test); - - if (!test3) schema = parseMapType.determine_map(firstColumn, allSeriesData); - else schema = priorSchema; - } - else { - - schema = parseMapType.determine_map(firstColumn, allSeriesData); - } - - /* - - if (chartProps.mobile) { - if (chartProps.mobile.scale) { - let currMobile = chartProps.mobile.scale.numericSettings; - if (currMobile) { - let domain = help.computeScaleDomain(currMobile, _computed.data, { - nice: true, - minZero: false - }); - assign(currMobile, domain); - - let ticks = currMobile.ticks; - currMobile.tickValues = help.exactTicks(currMobile.domain, ticks); - each(currMobile.tickValues, function(v) { - let tickPrecision = help.precision(Math.round(v*factor)/factor); - if (tickPrecision > currMobile.precision) { - currMobile.precision = tickPrecision; - } - }); - } - chartProps.mobile.scale.numericSettings = currMobile; - } - } else { - chartProps.mobile = {}; - } */ - - - //console.log(bySeries.series,'series'); - - let newChartProps = assign(chartProps, { - chartSettings: chartSettings, - columns: columnNames, - entries: parsedInputEntries, - input: bySeries.input, - data: bySeries.series, - alldata: allData, - scale: scale, - schema: schema, - legend: legends - }); - - if (callback) { - callback(newChartProps); - } else { - return newChartProps; - } - -} - -module.exports = parse50; diff --git a/src/js/maps/mb-cartogram/mb-cartogram-config.js b/src/js/maps/mb-cartogram/mb-cartogram-config.js deleted file mode 100644 index 2ce9471e..00000000 --- a/src/js/maps/mb-cartogram/mb-cartogram-config.js +++ /dev/null @@ -1,165 +0,0 @@ -const MapConfig = require("../MapConfig"); -let now = new Date(); - -/** - * ### Configuration of an XY chart - * @name xy_config - */ - -/** -* display -* @static -* @memberof xy_config -* @property {Nem|number} labelRectSize - Size of the legend label rectangle -* @property {Nem|number} labelXMargin - Horiz distance btwn labels -* @property {Nem|number} labelTextMargin - Horiz distance btwn label rect and text -* @property {Nem|number} labelRowHeight - Vert distance btwn rows of labels -* items with colors the appropriate indexed CSS class -* @property {Nem|number} afterTitle - Distance btwn top of title and top of legend or chart -* @property {Nem|number} afterLegend - Distance btwn top of legend and top of chart -* @property {Nem|number} blockerRectOffset - Distance btwn text of axis and its background blocker -* @property {Nem|number} columnPaddingCoefficient - Distance relative to -* width that column charts should be from edge of the chart -* @property {Nem|number} minPaddingOuter - Minimum distance between the -* outside of a chart and a graphical element -* @property {Nem|number} bottomPaddingWithoutFooter - Bottom padding if footer is not drawn -* @property {object} aspectRatio -* @property {number|fraction} aspectRatio.wide -* @property {number|fraction} aspectRatio.longSpot -* @property {number|fraction} aspectRatio.smallSpot -* @property {object} margin - Distances btwn outer chart elements and container -* @property {object} padding - Distances btwn inner chart elements and container -*/ - - - -let display = Object.freeze({ - labelRectSize: "0.6em", - labelXMargin: "0.6em", - labelTextMargin: "0.3em", - labelRowHeight: "1.2em", - afterTitle: "1.6em", - afterLegend: "1.6em", - blockerRectOffset: "0.3em", - columnPaddingCoefficient: 0.3, - minPaddingOuter: "1em", - bottomPaddingWithoutFooter: "3em", - aspectRatio: { - wide: (6 / 7), - longSpot: (4 / 3), - smallSpot: (3 / 4) - }, - margin: { - top: "1.2em", - right: "0.8em", - bottom: "1.2em", - left: "0.8em", - maptop: "0.5em", - mapleft: "-9.5em", - subtitle: "2em", - legendleft: "2em", - legendsOneRow: "23em", - legendsTwoRow: "22.5em" - }, - padding: { - top: 0, - right: 0, - bottom: "4em", - left: 0 - } -}); - -/** -* @name xy_defaultProps -* @static -* @memberof xy_config -*/ -const defaultProps = Object.freeze({ - /** - * @name chartProps - * @property {object} scale - Default settings for date and primary scales - * @property {array} data - * @property {object} input - * @property {object[]} chartSettings - Default settings for a given series (column) of data - * @property {object} extraPadding - Additional padding. This is a dynamic - * value and is mostly changed within the component itself - * @property {object} _annotations - Additional informative graphical elements - * @property {object} _annotations.labels - If labels are dragged, their - * position settings are saved here - * @property {object[]} _annotations.labels.values - Array of settings for - * dragged labels - * @property {object} mobile - Mobile-specific override settings - * @static - * @memberof xy_defaultProps - */ - chartProps: { - - data: [], - input: {}, - stylings: { - corners: '2', - legendText: 'Write what the legend shapes represent here', - legendMove: { - top:0, - left:0 - }, - stroke:'#aaa', - type: "grid", - radiusVal: 35, - squareWidth: '42', - cellSize: 50, - showDC: false, - showLegendTicks: false, - showStateLabels: true, - showValuesLabels: false - }, - chartSettings: [ - { - colorIndex: 0, - scale: { - prefix: "", - suffix: "", - type: "quantize" - } - }, - ], - extraPadding: { - top: 0, - right: 0, - bottom: 0, - left: 0 - }, - _annotations: { - labels: { - hasDragged: false, - values: [] - } - }, - mobile: {} - }, - /** - * @name metadata - * @property {string} chartType - * @property {string} size - * @static - * @memberof xy_defaultProps - */ - metadata: { - chartType: 'mapCartogram', - title: "Title", - subtitle: "Subtitle", - source: "TK", - credit: "", - size: "auto" - } -}); - -const map_config = new MapConfig({ - displayName: "US Cartogram Map", - parser: require("./Cartogram-parse"), - calculateDimensions: require("./mb-cartogram-dimensions"), - display: display, - defaultProps: defaultProps -}); - -module.exports = map_config; diff --git a/src/js/maps/mb-cartogram/mb-cartogram-dimensions.js b/src/js/maps/mb-cartogram/mb-cartogram-dimensions.js deleted file mode 100644 index 61cc8367..00000000 --- a/src/js/maps/mb-cartogram/mb-cartogram-dimensions.js +++ /dev/null @@ -1,37 +0,0 @@ -const chartSizes = require("../../config/map-sizes"); - -// TODO: jsDocify this if it works - -/** - * see [ChartConfig#calculateDimensions](#chartconfig/calculatedimensions) - * @see ChartConfig#calculateDimensions - * @instance - * @memberof xy_config - */ -function calculate_map_dimensions(width, opts) { - let height; - let aspectRatio = opts.displayConfig.aspectRatio; - let metadata = opts.model.metadata; - - if (metadata.size == "auto" || opts.enableResponsive) { - // use current width - } else { - width = chartSizes[metadata.size].width; - } - - switch (metadata.size) { - case "auto": - height = width * aspectRatio.wide; - break; - - default: - height = width * aspectRatio.wide; - } - - return { - width: width, - height: height + opts.extraHeight - }; -} - -module.exports = calculate_map_dimensions; diff --git a/src/js/maps/mb-cartogram/mb-cartogram-helpers.js b/src/js/maps/mb-cartogram/mb-cartogram-helpers.js deleted file mode 100644 index 6f54af65..00000000 --- a/src/js/maps/mb-cartogram/mb-cartogram-helpers.js +++ /dev/null @@ -1,275 +0,0 @@ -import d3 from 'd3'; - -const colorScales = require('./../../util/colorscales'); - -const padding = 5; - -const _gravity = (k) => { - return function(d) { - d.x += (d.x0 - d.x) * k; - d.y += (d.y0 - d.y) * k; - }; -} - -const _collideDorling = (k, nodes) => { - const q = d3.geom.quadtree(nodes); - return function(node) { - let nr = node.r + padding, - nx1 = node.x - nr, - nx2 = node.x + nr, - ny1 = node.y - nr, - ny2 = node.y + nr; - q.visit(function(quad, x1, y1, x2, y2) { - if (quad.point && (quad.point !== node)) { - let x = node.x - quad.point.x, - y = node.y - quad.point.y, - l = x * x + y * y, - r = nr + quad.point.r; - if (l < r * r) { - l = ((l = Math.sqrt(l)) - r) / l * k; - node.x -= x *= l; - node.y -= y *= l; - quad.point.x += x; - quad.point.y += y; - } - } - return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; - }); - }; -} -const _collideDemers = (k, nodes) => { - const q = d3.geom.quadtree(nodes); - return function(node) { - let nr = node.r + padding, - nx1 = node.x - nr, - nx2 = node.x + nr, - ny1 = node.y - nr, - ny2 = node.y + nr; - q.visit(function(quad, x1, y1, x2, y2) { - if (quad.point && (quad.point !== node)) { - let x = node.x - quad.point.x, - y = node.y - quad.point.y, - lx = Math.abs(x), - ly = Math.abs(y), - r = nr + quad.point.r; - if (lx < r && ly < r) { - if (lx > ly) { - lx = (lx - r) * (x < 0 ? -k : k); - node.x -= lx; - quad.point.x += lx; - } else { - ly = (ly - r) * (y < 0 ? -k : k); - node.y -= ly; - quad.point.y += ly; - } - } - } - return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; - }); - }; -} - -const enter_demers = (selection, stylings, force, data) => { - - d3.selectAll('.carto-shapes').remove(); - - selection - .append('rect') - .attr("height", function(d) { return +d.r * 2; }) - .attr("width", function(d) { return +d.r * 2; }) - .attr('rx',0) - .attr('ry',0) - .style('fill',function(d) { return d.color; }) - .style('stroke',stylings.stroke) - .attr('class','carto-rects carto-shapes') - .call(force.drag); - - selection.selectAll('.state-values').remove(); - - selection.append('text') - .attr("x", function(d) { return (+d.r); }) - .attr("y", function(d) { return (+d.r); }) - .attr('dy','0.3em') - .attr('class','state-name carto-shapes') - .style('font-size',function(d) { - return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); - }) - .text(function(d) { return (d.r > 0) ? d.shp : ''; }); -} - -const enter_grid = (selection, stylings, force, data) => { - - d3.selectAll('.carto-shapes').remove(); - - selection.attr('transform',(d,i) => { - return 'translate('+ d.xx + ',' + d.yy +')' - }); - - selection.append('rect') - .attr("width", stylings.squareWidth) - .attr("height", stylings.squareWidth) - .attr('rx',stylings.corners) - .attr('ry',stylings.corners) - .style('fill',function(d) { return d.color; }) - .style('stroke',stylings.stroke) - .attr('class','carto-rects carto-shapes'); - - let adjustment = 0; - - if (stylings.showValuesLabels) { - adjustment = -2; - - selection.append('text') - .attr("x", (stylings.squareWidth / 2)) - .attr("y", 12 + (stylings.squareWidth / 2)) - .attr('dy','0.3em') - .attr('class','state-values carto-shapes') - .text((d) => d.value); - } - - selection.append('text') - .attr("x", (stylings.squareWidth / 2)) - .attr("y", adjustment + (stylings.squareWidth / 2)) - .attr('dy','0.3em') - .attr('class','state-name carto-shapes') - .text((d) => d.shp); -} - -const enter_dorling = (selection, stylings, force, data) => { - - d3.selectAll('.carto-shapes').remove(); - - selection.append('rect') - .attr("height", function(d) { return +d.r * 2; }) - .attr("width", function(d) { return +d.r * 2; }) - .attr('rx', function(d) { return +d.r; }) - .attr('ry', function(d) { return +d.r; }) - .style('fill',function(d) { return d.color; }) - .style('stroke',stylings.stroke) - .attr('class','carto-rects carto-shapes') - .call(force.drag); - - let adjustment = 0; - - selection.selectAll('.state-values').remove(); - - selection.append('text') - .attr("x", function(d) { return (+d.r); }) - .attr("y", function(d) { return (+d.r); }) - .attr('dy','0.3em') - .attr('class','state-name carto-shapes') - .style('font-size',function(d) { - return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); - }) - .text(function(d) { return (d.r > 0) ? d.shp : ''; }); -} - - -const update_node = (selection) => { - selection.attr("transform", (d) => "translate(" + d.x + "," + d.y + ")"); -}; - - -const update_demers = (e, selection, nodes) => { - - selection.each(_gravity(e.alpha * .1)) - .each(_collideDemers(.05, nodes)) - .attr("transform", function(d) { - return "translate(" + (d.x - d.r) + "," + (d.y - d.r) + ")"; - }); -} - -const update_dorling = (e, selection, nodes) => { - - selection.each(_gravity(e.alpha * .1)) - .each(_collideDorling(.05, nodes)) - .attr("transform", function(d) { - return "translate(" + (d.x - d.r) + "," + (d.y - d.r) + ")"; - }); -} - -const switch_grid = (selection, stylings) => { - - selection.attr('transform',(d,i) => { - return 'translate('+ d.xx + ',' + d.yy +')' - }); - - selection.selectAll('rect') - .attr("width", stylings.squareWidth) - .attr("height", stylings.squareWidth) - .style('fill', function(d) { return d.color; }) - .style('stroke',stylings.stroke) - .attr('rx',stylings.corners) - .attr('ry',stylings.corners); - - let adjustment = 0; - - if (stylings.showValuesLabels) { - adjustment = -2; - } - - selection.selectAll('text.state-name') - .style('font-size','1.2em') - .attr("x", (stylings.squareWidth / 2)) - .attr("y", adjustment + (stylings.squareWidth / 2)) - .text((d) => d.shp); -} - - -const switch_dorling = (selection, stylings) => { - - selection.selectAll('rect') - .style('stroke',stylings.stroke) - .attr("height", function(d) { return +d.r * 2; }) - .attr("width", function(d) { return +d.r * 2; }) - .style('fill',function(d) { return d.color; }) - .attr('rx', function(d) { return +d.r; }) - .attr('ry', function(d) { return +d.r; }) - - selection.selectAll('text.state-name') - .attr("x", function(d) { return (+d.r); }) - .attr("y", function(d) { return (+d.r); }) - .attr('dy','0.3em') - .style('font-size',function(d) { - return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); - }) - .text(function(d) { return (d.r > 0) ? d.shp : ''; }); -} - -const switch_demers = (selection, stylings) => { - - selection.selectAll('rect') - .style('stroke',stylings.stroke) - .attr("height", function(d) { return +d.r * 2; }) - .attr("width", function(d) { return +d.r * 2; }) - .style('fill', function(d) { return d.color; }) - .attr('rx',0) - .attr('ry',0); - - selection.selectAll('text.state-name') - .attr("x", function(d) { return (+d.r); }) - .attr("y", function(d) { return (+d.r); }) - .style('font-size',function(d) { - return ((+d.r - 2) < 10) ? 10 : (+d.r - 2); - }) - .text(function(d) { return (d.r > 0) ? d.shp : ''; }); -} - - -/** - * Helper functions! - * @name helper - */ -const cartogram_helpers = Object.freeze({ - enterDemers: enter_demers, - enterDorling: enter_dorling, - enterGrid: enter_grid, - switchGrid: switch_grid, - switchDemers: switch_demers, - switchDorling: switch_dorling, - updateDemers: update_demers, - updateDorling: update_dorling, - updateNode: update_node -}); - -module.exports = cartogram_helpers; diff --git a/src/js/maps/renderers.js b/src/js/maps/renderers.js deleted file mode 100644 index 273fe49b..00000000 --- a/src/js/maps/renderers.js +++ /dev/null @@ -1,10 +0,0 @@ -/** - * @name renderers - */ - -// Chart renderer -module.exports = { - map50: require("../components/map-50/50map.jsx"), - mapcartogram: require("../components/map-cartogram/Cartogrammap.jsx"), - mapbubble: require("../components/map-bubble/Bubblemap.jsx") -}; diff --git a/src/js/util/parse-data-by-series.js b/src/js/util/parse-data-by-series.js index 426ee7c3..86e526ee 100644 --- a/src/js/util/parse-data-by-series.js +++ b/src/js/util/parse-data-by-series.js @@ -5,6 +5,9 @@ // { entry: , value: } // ``` + +import {clone} from 'lodash'; + var datePattern = /date|time|year/i; var parseDelimInput = require("./parse-delimited-input").parser; @@ -19,8 +22,9 @@ function dataBySeries(input, opts) { type: opts.type }); - var columnNames = parsedInput.columnNames; - var keyColumn = columnNames.shift(); + const columnNames = parsedInput.columnNames; + const allColumns = clone(columnNames); + const keyColumn = columnNames.shift(); if (columnNames.length === 0) { series = [{ @@ -50,6 +54,7 @@ function dataBySeries(input, opts) { return { series: series, data: parsedInput, + allColumns: allColumns, input: { raw: input, type: opts.type }, hasDate: parsedInput.hasDate && (!opts.type || opts.type == "date"), isNumeric: parsedInput.isNumeric && (!opts.type || opts.type == "numeric") diff --git a/src/js/util/parse-delimited-input.js b/src/js/util/parse-delimited-input.js index e4d1dbc0..bdbc98ad 100644 --- a/src/js/util/parse-delimited-input.js +++ b/src/js/util/parse-delimited-input.js @@ -33,11 +33,11 @@ var newLineRegex = /\r\n|\r|\n/; var parseErrors = []; function parseDelimInput(input, opts) { - var hasDate = null; - var isNumeric = null; + let hasDate = null; + let isNumeric = null; opts = opts || {}; - var _defaultOpts = defaults(opts, { + const _defaultOpts = defaults(opts, { delimiter: parseUtils.detectDelimiter(input), type: opts.type, inputTZ: "Z" @@ -50,23 +50,25 @@ function parseDelimInput(input, opts) { parseErrors = []; // create regex of special characters we want to strip out as well as our // computed locale-specific thousands separator. - var _stripCharsStr = stripChars.concat([separators.thousands]).reduce(function(a, b) { + const _stripCharsStr = stripChars.concat([separators.thousands]).reduce(function(a, b) { return a.concat(parseUtils.escapeRegExp(b)); }, []).join("|"); var stripCharsRegex = new RegExp(_stripCharsStr, "g"); var columnNames = input.split(newLineRegex)[0].split(_defaultOpts.delimiter); + var dsv = d3.dsv(_defaultOpts.delimiter, "text/plain"); var all_index_types = []; - var casted_data = cast_data(input, columnNames, stripCharsRegex, _defaultOpts); - var data = casted_data.data; + const casted_data = cast_data(input, columnNames, stripCharsRegex, _defaultOpts); + let data = casted_data.data; all_index_types = casted_data.indexes; - var all_entry_values = casted_data.entries; - var index_types = unique(all_index_types); + + const all_entry_values = casted_data.entries; + const index_types = unique(all_index_types); if(index_types.length !== 1 && !_defaultOpts.type) { - //there is possilby more than one type of data, an error will be thrown in validate-data-input + //there is possibly more than one type of data, an error will be thrown in validate-data-input } else { hasDate = _defaultOpts.type ? _defaultOpts.type == "date" : index_types[0] === "date"; isNumeric = _defaultOpts.type ? _defaultOpts.type == "numeric" : index_types[0] === "number"; @@ -93,22 +95,25 @@ function parseDelimInput(input, opts) { } function cast_data(input, columnNames, stripCharsRegex, opts) { + const dsv = d3.dsv(opts.delimiter, "text/plain"); const all_index_types = []; const all_entry_values = []; + let hasDate; let isNumeric; - var tz_pattern = /([+-]\d\d:*\d\d)/gi; - var found_timezones = input.match(tz_pattern); + const tz_pattern = /([+-]\d\d:*\d\d)/gi; + const found_timezones = input.match(tz_pattern); + + const data = dsv.parse(input, function(d,ii) { + + const curOffset = Date.create().getTimezoneOffset(); + const offset = opts.inputTZ !== null ? -help.TZOffsetToMinutes(opts.inputTZ) : curOffset; - var data = dsv.parse(input, function(d,ii) { - var curOffset = Date.create().getTimezoneOffset(); - var offset = opts.inputTZ !== null ? -help.TZOffsetToMinutes(opts.inputTZ) : curOffset; each(columnNames, function(column, i) { if (i === 0) { //first column - var parsed = parseKeyColumn(d[column], opts.type); if(parsed.type == "date") { @@ -137,8 +142,8 @@ function cast_data(input, columnNames, stripCharsRegex, opts) { } else { - hasDate = opts.type ? opts.type == "date" : index_types[0] === "date"; - isNumeric = opts.type ? opts.type == "numeric" : index_types[0] === "number"; + hasDate = opts.type ? opts.type === "date" : index_types[0] === "date"; + isNumeric = opts.type ? opts.type === "numeric" : index_types[0] === "number"; } return { diff --git a/src/js/util/parse-map-data-by-series.js b/src/js/util/parse-map-data-by-series.js new file mode 100644 index 00000000..f81338b1 --- /dev/null +++ b/src/js/util/parse-map-data-by-series.js @@ -0,0 +1,95 @@ +// Separate a flat array of `{ column: value }` objects into a multi-array, one +// for each column. Each object contains a `values` array, with each entry +// looking like: +// ``` +// { entry: , value: } +// ``` +import {each, map, remove, clone, difference} from 'lodash'; + +const parseDelimInput = require("./parse-delimited-input").parser; + +// Parse data by series. Options: +function dataBySeries(input, chartProps, opts) { + + opts = opts || {}; + + const parsedInput = parseDelimInput(input, { + type: opts.type + }); + + const columnNames = parsedInput.columnNames; + const columnNamesSaved = clone(columnNames); + const keyColumn = columnNames.shift(); + + let uniques = []; + map(parsedInput.data, function (z) { + if (uniques.indexOf(z.group) < 0) uniques.push(z.group); + }); + + const priorUniques = []; + each(chartProps.chartSettings, function (z) { + if (z.label !== undefined) priorUniques.push(z.label); + }); + + const uniquesDifference = difference(uniques, priorUniques); + const uniquesLess = difference(priorUniques, uniques); + + let uniquesParsed = clone(uniques); + + // order the groups so that any new groups are put last. remove any outdated groups. + if (uniquesLess.length) { + uniquesParsed = remove(uniques, function(n) { + return n !== uniquesLess[0]; + }); + } + + else if (priorUniques.length <= uniques.length && priorUniques.length) { + each(uniquesDifference, function(z) { + priorUniques.push(z); + }); + uniquesParsed = priorUniques; + } + + const series = []; + + if (columnNames.length === 0) { + series.push({ + name: keyColumn, + values: parsedInput.data.map(function(d) { + return { + name: keyColumn, + value: d[keyColumn] + }; + }) + }); + + } else { + + map(uniquesParsed, function(q,i) { + series.push({ + name: q, + index: i, + values: parsedInput.data.filter(function(d) { + if (q === d.group) { + return { + name: q, + entry: d[keyColumn], + value: d[columnNames[2]] + }; + } + }) + }); + }); + } + + parsedInput.columnNames = columnNamesSaved; + + return { + series: series, + data: parsedInput, + input: { raw: input, type: opts.type }, + isNumeric: parsedInput.isNumeric && (!opts.type || opts.type === "numeric") + }; +} + +module.exports = dataBySeries; diff --git a/src/js/util/validate-data-input.js b/src/js/util/validate-data-input.js index d4cc6196..ed5ddbf9 100644 --- a/src/js/util/validate-data-input.js +++ b/src/js/util/validate-data-input.js @@ -17,12 +17,17 @@ const types = { var MAX_BYTES = 400000; // Max 400k for chartProps function validateDataInput(chartProps) { - var input = chartProps.input.raw; - var series = chartProps.data; - var hasDate = chartProps.scale.hasDate; - var isNumeric = chartProps.scale.isNumeric; - var type = chartProps.input.type; - var scale = chartProps.scale; + const input = chartProps.input.raw; + const series = chartProps.data; + const hasDate = chartProps.scale.hasDate; + const isNumeric = chartProps.scale.isNumeric; + const type = chartProps.input.type; + const scale = chartProps.scale; + + /* switch statement for visual type + abstract out the control flow + + */ var inputErrors = []; From 09b4cf7123d2aed83fe736391cfe08008fb31529 Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 17:20:06 -0500 Subject: [PATCH 008/152] initial cartogram fix --- src/js/components/map-50/Map50Renderer.jsx | 8 ------- .../components/map-cartogram/Cartogrammap.jsx | 21 +++++++++---------- .../map-cartogram/MapCartogramRenderer.jsx | 4 ++-- 3 files changed, 12 insertions(+), 21 deletions(-) diff --git a/src/js/components/map-50/Map50Renderer.jsx b/src/js/components/map-50/Map50Renderer.jsx index c8cbe350..aaa2f01d 100644 --- a/src/js/components/map-50/Map50Renderer.jsx +++ b/src/js/components/map-50/Map50Renderer.jsx @@ -31,10 +31,6 @@ const PolygonCollection = React.createClass({ const adjustLabels = mapSchema.adjustLabels; const translation = `translate(0,${this.props.displayConfig.margin.maptop})`; - console.log(columnNames,'names'); - - console.log(currSettings,'data'); - if (this.props.onClick) onClick = this.props.onClick; const polygonCollection = this.props.data.map((polygonData, i) => { @@ -43,16 +39,12 @@ const PolygonCollection = React.createClass({ let thisvalue; - console.log(polygonData, 'data') - alldata.forEach(function(d, j) { if (thisvalue === undefined || !thisvalue.length) { thisvalue = Object.assign(filter(d.values, function(o) { return mapSchema.test(o[columnNames[0]], polygonData.id); }), {index:d.index}); } }); - console.log(JSON.stringify(thisvalue),'value'); - const styles = {}; styles.stroke = chartProps.stylings.stroke; styles.fill = (thisvalue.length) ? currSettings[thisvalue.index].d3scale(thisvalue[0][columnNames[2]]) : '#777'; diff --git a/src/js/components/map-cartogram/Cartogrammap.jsx b/src/js/components/map-cartogram/Cartogrammap.jsx index 9340d327..58885891 100644 --- a/src/js/components/map-cartogram/Cartogrammap.jsx +++ b/src/js/components/map-cartogram/Cartogrammap.jsx @@ -55,23 +55,23 @@ class MapRenderer extends React.Component{ render () { const chartProps = this.props.chartProps; - const stylings = this.props.stylings; + const stylings = chartProps.stylings; const schema = chartProps.schema.schema; const grid = this.state.grid; const centroids = this.state.centroids; - const columnNames = this.props.chartProps.columns; + const columnNames = chartProps.columns; const cellSize = stylings.cellSize; const projection = d3.geo[schema.proj]() .translate(schema.translate) - .scale(schema.scale); + .scale(schema.scale); radius.range([0, stylings.radiusVal]); const scales = {}; let fillVal; - const dataById = d3.map(chartProps.alldata, function(d) { + const dataById = d3.map(chartProps.alldata, function(d) { return schema.matchLogic(d[columnNames[0]]); }); radius.domain([0, d3.max(chartProps.alldata, function(d){ return +d[columnNames[2]]} )]); @@ -82,7 +82,7 @@ class MapRenderer extends React.Component{ if (schema.name === 'states50') { - if (showDC) return (dataById.has(schema.matchLogic(d.id)) && schema.test(d.id, d.id)); + if (showDC) return (dataById.has(schema.matchLogic(d.id)) && schema.test(d.id, d.id)); //dc id = 11 else return (dataById.has(schema.matchLogic(d.id)) && schema.test(d.id, d.id) && d.id != 11); } @@ -96,17 +96,17 @@ class MapRenderer extends React.Component{ const cell = grid[shpData[columnNames[0]].replace(/\s/g, '')]; const point = projection(d.geometry.coordinates); - if (chartProps.chartSettings[shpData.index].scale.domain[0] === + if (chartProps.chartSettings[shpData.index].scale.domain[0] === chartProps.chartSettings[shpData.index].scale.domain[1]) { fillVal = colorScales(chartProps.scale[shpData.index].colorIndex)[1]; - } + } else fillVal = chartProps.scale[shpData.index].d3scale(shpData[columnNames[2]]); - + return { id: +d.id, x: 160 + point[0], y: 60 + point[1], x0: 160 + point[0], y0: 60 + point[1], - xx: 237 + cell[0] * cellSize, yy: cell[1] * cellSize - (cellSize / 2), + xx: 237 + cell[0] * cellSize, yy: cell[1] * cellSize - (cellSize / 2), r: radius(shpData[columnNames[2]]), r0: radius(shpData[columnNames[2]]), value: shpData[columnNames[2]], @@ -128,8 +128,7 @@ class MapRenderer extends React.Component{ }; MapRenderer.propTypes = { - chartProps: React.PropTypes.object.isRequired, - stylings: React.PropTypes.object.isRequired + chartProps: React.PropTypes.object.isRequired } module.exports = MapRenderer; diff --git a/src/js/components/map-cartogram/MapCartogramRenderer.jsx b/src/js/components/map-cartogram/MapCartogramRenderer.jsx index e8e2e47e..bebe71ef 100644 --- a/src/js/components/map-cartogram/MapCartogramRenderer.jsx +++ b/src/js/components/map-cartogram/MapCartogramRenderer.jsx @@ -46,7 +46,7 @@ const PolygonCollection = React.createClass({ }, componentDidMount: function() { - const stylings = this.props.stylings; + const stylings = this.props.chartProps.stylings; d3Nodes = d3.select(ReactDOM.findDOMNode(this.refs.graph)); @@ -81,7 +81,7 @@ const PolygonCollection = React.createClass({ }, componentDidUpdate: function(nextProps, nextState) { - const stylings = this.props.stylings; + const stylings = this.props.chartProps.stylings; d3Nodes = d3.select(ReactDOM.findDOMNode(this.refs.graph)); From 017bfc9c1cc0e21fec545d527b84ebee9911970b Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 17:46:46 -0500 Subject: [PATCH 009/152] bubble rendering --- src/htdocs/index.html | 9 +++ src/js/charts/maps/mb-50/50-parse.js | 2 - src/js/charts/maps/mb-bubble/Bubble-parse.js | 26 ++++---- .../maps/mb-cartogram/Cartogram-parse.js | 26 ++++---- src/js/components/RendererWrapper.jsx | 6 +- src/js/components/map-50/Map50Renderer.jsx | 2 - src/js/components/map-bubble/Bubblemap.jsx | 9 +-- .../map-bubble/MapBubbleRenderer.jsx | 9 +-- .../components/map-cartogram/Cartogrammap.jsx | 59 +++++++++++-------- .../map-cartogram/MapCartogramEditor.jsx | 14 ++--- .../map-cartogram/MapCartogramRenderer.jsx | 2 +- .../shared/Cartogram_ScaleSettings.jsx | 6 +- 12 files changed, 93 insertions(+), 77 deletions(-) diff --git a/src/htdocs/index.html b/src/htdocs/index.html index c73ae05f..5e5fcc7f 100644 --- a/src/htdocs/index.html +++ b/src/htdocs/index.html @@ -14,6 +14,15 @@

Chartbuilder 2.6.7

+ diff --git a/src/js/charts/maps/mb-50/50-parse.js b/src/js/charts/maps/mb-50/50-parse.js index 377dc8b5..c57d6bdb 100644 --- a/src/js/charts/maps/mb-50/50-parse.js +++ b/src/js/charts/maps/mb-50/50-parse.js @@ -29,8 +29,6 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior type: chartProps.input.type }); - console.log(bySeries.series,'ughhed') - const dataParsed = bySeries.data; let parsedInputEntries = dataParsed.entries; diff --git a/src/js/charts/maps/mb-bubble/Bubble-parse.js b/src/js/charts/maps/mb-bubble/Bubble-parse.js index c6314dd7..eccea780 100644 --- a/src/js/charts/maps/mb-bubble/Bubble-parse.js +++ b/src/js/charts/maps/mb-bubble/Bubble-parse.js @@ -1,7 +1,7 @@ import {clone, map, assign, each, filter, flatten} from 'lodash'; const colorScales = require('./../../../util/colorscales'); -const dataBySeries = require("./../../../util/parse-data-by-series"); +const dataBySeries = require("./../../../util/parse-map-data-by-series"); const help = require("../../../util/helper"); //const help_50 = require("./50-parse-helpers"); const SessionStore = require("../../../stores/SessionStore"); @@ -30,8 +30,8 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc const dataParsed = bySeries.data; - let parsedInputEntries = dataParsed.entries; - const columnNames = dataParsed.columnNames; + let parsedInputEntries = dataParsed.entries; + const columnNames = dataParsed.columnNames; const scaleNames = []; const scaleIndex = []; @@ -77,7 +77,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc }); _computed[i].data = _computed[i].data.concat(values); - + return settings; }); @@ -120,7 +120,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc currScale.ticks = ticks; currScale.colorIndex = chartSettings[j].colorIndex; - + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); currScale.tickValues.forEach((v, i) => { @@ -129,7 +129,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc currScale.precision = tickPrecision; } currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; - + }); currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); @@ -147,15 +147,15 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); - + //currLegend.spacings = help.constructLegendSpacings(); //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); - + legends[name] = currLegend; chartSettings[j].legends = currLegend; - /* + /* this is not right */ @@ -174,7 +174,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc } else { chartProps.mobile = {}; } */ - + }); // this should all be included in one big loopa loop @@ -186,7 +186,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc //chartSettings[g].scale = scale[z.label]; if (bySeries.isNumeric) { chartSettings[g].scale.isNumeric = bySeries.isNumeric; - + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ } @@ -198,7 +198,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc each(bySeries.series, (item, j) => { - const thisItem = map(item.values, (d) => { + const thisItem = map(item.values, (d) => { d.index = item.index; return d; }); @@ -259,7 +259,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc chartProps.mobile = {}; } */ - + //console.log(bySeries.series,'series'); let newChartProps = assign(chartProps, { diff --git a/src/js/charts/maps/mb-cartogram/Cartogram-parse.js b/src/js/charts/maps/mb-cartogram/Cartogram-parse.js index 7ff95d19..f4aff4d0 100644 --- a/src/js/charts/maps/mb-cartogram/Cartogram-parse.js +++ b/src/js/charts/maps/mb-cartogram/Cartogram-parse.js @@ -1,7 +1,7 @@ import {clone, map, assign, each, filter, flatten} from 'lodash'; const colorScales = require('./../../../util/colorscales'); -const dataBySeries = require("./../../../util/parse-data-by-series"); +const dataBySeries = require("./../../../util/parse-map-data-by-series"); const help = require("../../../util/helper"); //const help_50 = require("./50-parse-helpers"); const SessionStore = require("../../../stores/SessionStore"); @@ -31,7 +31,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc const dataParsed = bySeries.data; - let parsedInputEntries = dataParsed.entries; + let parsedInputEntries = dataParsed.entries; const columnNames = dataParsed.columnNames; const scaleNames = []; @@ -76,7 +76,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc }); _computed[i].data = _computed[i].data.concat(values); - + return settings; }); @@ -109,7 +109,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); } else currScale = clone(config.defaultProps.chartProps.chartSettings[0].scale, true); - + let domain = help.computeScaleDomain(currScale, _computed[j].data); assign(currScale, domain); @@ -120,7 +120,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc currScale.ticks = ticks; currScale.colorIndex = chartSettings[j].colorIndex; - + currScale.tickValues = help.exactTicks(currScale.domain, ticks, _computed[j].data, currScale.type, currScale.tickValues); currScale.tickValues.forEach((v, i) => { @@ -129,7 +129,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc currScale.precision = tickPrecision; } currScale.tickValues[i] = currScale.precision ? Math.round(v * (10 * currScale.precision)) / (10 * currScale.precision) : v; - + }); currScale.d3scale = help.returnD3Scale(currScale.colorIndex, totalcolors, currScale.domain, currScale.type, _computed[j].data, currScale.tickValues); @@ -147,15 +147,15 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc currLegend.range = help.constructLegendRange(currScale.ticks, currScale.type); currLegend.domain = help.constructLegendDomain(currScale.tickValues, currScale.ticks); currLegend.tickValues = help.constructLegendTicks(currScale.tickValues, currScale.ticks, currScale.type); - + //currLegend.spacings = help.constructLegendSpacings(); //currLegend.transforms = help.constructLegendTransform(j, legends,currLegend, scaleNames); - + legends[name] = currLegend; chartSettings[j].legends = currLegend; - /* + /* this is not right */ @@ -174,7 +174,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc } else { chartProps.mobile = {}; } */ - + }); // this should all be included in one big loopa loop @@ -186,7 +186,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc //chartSettings[g].scale = scale[z.label]; if (bySeries.isNumeric) { chartSettings[g].scale.isNumeric = bySeries.isNumeric; - + /*chartSettings[g].scale.numericSettings = clone(chartSettings[g].scale) || clone(config.defaultProps.chartProps.chartSettings[0].scale);*/ } @@ -198,7 +198,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc each(bySeries.series, (item, j) => { - const thisItem = map(item.values, (d) => { + const thisItem = map(item.values, (d) => { d.index = item.index; return d; }); @@ -255,7 +255,7 @@ let parse50 = (config, _chartProps, callback, parseOpts, priorData = [], priorSc chartProps.mobile = {}; } */ - + //console.log(bySeries.series,'series'); let newChartProps = assign(chartProps, { diff --git a/src/js/components/RendererWrapper.jsx b/src/js/components/RendererWrapper.jsx index 66b93ac6..4e45c9e9 100644 --- a/src/js/components/RendererWrapper.jsx +++ b/src/js/components/RendererWrapper.jsx @@ -79,11 +79,11 @@ var RendererWrapper = React.createClass({ }, componentWillReceiveProps: function(nextProps) { - console.log(nextProps,'lol'); + const newType = nextProps.model.metadata.chartType; const prevType = this.props.model.metadata.chartType; if (newType !== prevType) { - console.log('update'); + const chartConfig = convertConfig(chartConfigs[newType] || mapConfigs[newType], null, this.state.emSize, this.state.domNodeWidth); this.setState({ chartConfig: chartConfig }); @@ -190,7 +190,7 @@ var RendererWrapper = React.createClass({ render: function() { const chartType = this.props.model.metadata.chartType; const width = this.props.width || this.state.domNodeWidth; - console.log(this.state,'hm'); + let displayConfig = this.state.chartConfig.display; const svgClassName = this.props.svgClassName || ''; diff --git a/src/js/components/map-50/Map50Renderer.jsx b/src/js/components/map-50/Map50Renderer.jsx index aaa2f01d..70d8b2b0 100644 --- a/src/js/components/map-50/Map50Renderer.jsx +++ b/src/js/components/map-50/Map50Renderer.jsx @@ -16,8 +16,6 @@ const PolygonCollection = React.createClass({ }, render: function() { - console.log(this.props,'props'); - const chartProps = this.props.chartProps; const mapSchema = this.props.schema; const geoPath = this.props.geoPath; diff --git a/src/js/components/map-bubble/Bubblemap.jsx b/src/js/components/map-bubble/Bubblemap.jsx index db52fcaa..34a10bcd 100644 --- a/src/js/components/map-bubble/Bubblemap.jsx +++ b/src/js/components/map-bubble/Bubblemap.jsx @@ -15,13 +15,13 @@ const polygonClass = 'polygon-test'; let MapRenderer = React.createClass({ propTypes: { - chartProps: React.PropTypes.object.isRequired, - stylings: React.PropTypes.object.isRequired + chartProps: React.PropTypes.object.isRequired }, render: function() { - let chartProps = this.props.chartProps; - let stylings = this.props.stylings; + const chartProps = this.props.chartProps; + const stylings = chartProps.stylings; + const displayConfig = this.props.displayConfig; const schema = chartProps.schema.schema; const data = topojson.feature(schema.topojson, schema.topojson.objects[schema.feature]); @@ -44,6 +44,7 @@ let MapRenderer = React.createClass({ { + const grid = {}; - const center = centroid(polygonData); - const id = polygonData.id < 10 ? '0' + polygonData.id.toString() : polygonData.id; + d3.select("#grid." + cartogramType) + .text().split("\n") + .forEach(function(line, i) { + let re = /\w+/g, m; + while (m = re.exec(line)) { + grid[m[0]] = [m.index / 3, i] + } + }); - centroidsConst.push({"type":"Feature","id":id, - "geometry":{"type":"Point","coordinates": center.geometry.coordinates}, - "properties":{"name":id} }); - }); + const centroidsConst = []; + const data = topojson.feature(schema.topojson, schema.topojson.objects[schema.feature]); + + data.features.map((polygonData, i) => { - this.state = { - grid: grid, - nodes: [], - centroids: centroidsConst - } + const center = centroid(polygonData); + const id = polygonData.id < 10 ? '0' + polygonData.id.toString() : polygonData.id; + + centroidsConst.push({"type":"Feature","id":id, + "geometry":{"type":"Point","coordinates": center.geometry.coordinates}, + "properties":{"name":id} }); + }); + + this.state = { + grid: grid, + nodes: [], + centroids: centroidsConst + } + } } render () { @@ -59,6 +64,8 @@ class MapRenderer extends React.Component{ const schema = chartProps.schema.schema; const grid = this.state.grid; + const displayConfig = this.props.displayConfig; + const centroids = this.state.centroids; const columnNames = chartProps.columns; const cellSize = stylings.cellSize; @@ -119,7 +126,7 @@ class MapRenderer extends React.Component{ diff --git a/src/js/components/map-cartogram/MapCartogramEditor.jsx b/src/js/components/map-cartogram/MapCartogramEditor.jsx index 9a4b53fb..0d4e711e 100644 --- a/src/js/components/map-cartogram/MapCartogramEditor.jsx +++ b/src/js/components/map-cartogram/MapCartogramEditor.jsx @@ -41,7 +41,7 @@ let MapEditor = React.createClass({ }), numSteps: PropTypes.number }, - + mixins: [MapEditorMixin], getDefaultProps: function() { @@ -55,7 +55,7 @@ let MapEditor = React.createClass({ const mapSettings = []; mapSettings.push(map(mapProps.chartSettings, bind(function(chartSetting, i) { - + return (
- + ); }, this)) ); - + let axisErrors = this.props.errors.messages.filter(function(e) { return e.location === "axis"; }); @@ -152,7 +152,7 @@ const MapCartogram_mapSettings = React.createClass({ const chartSetting = this.props.chartSettings[this.props.index]; const numColors = colorScales.scalesNum(); - + return (
Date: Mon, 26 Dec 2016 23:18:25 -0500 Subject: [PATCH 010/152] mixin issues --- src/js/charts/charts/cb-d4-mixins.js | 4 ++-- src/js/charts/charts/cb-xy/xy-config.js | 2 +- src/js/charts/maps/mb-50/50-parse.js | 5 ----- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/js/charts/charts/cb-d4-mixins.js b/src/js/charts/charts/cb-d4-mixins.js index 30efe088..a4cdaed1 100644 --- a/src/js/charts/charts/cb-d4-mixins.js +++ b/src/js/charts/charts/cb-d4-mixins.js @@ -102,7 +102,7 @@ const mixins = { return d.values; }.bind(this)); - genter = text_group.enter().append("g") + const genter = text_group.enter().append("g") .attr("class", "text-group concealer-label") .attr("data-index", function(d,i) {return i; }); @@ -125,7 +125,7 @@ const mixins = { text .text(function(d,i){ - index = parseFloat(this.parentNode.getAttribute("data-index")); + const index = parseFloat(this.parentNode.getAttribute("data-index")); return format_func(text_func(d,index),index); }) .attr('text-anchor', d4.functor(scope.accessors.textAnchor).bind(this)) diff --git a/src/js/charts/charts/cb-xy/xy-config.js b/src/js/charts/charts/cb-xy/xy-config.js index 956efa1d..55ef04ca 100644 --- a/src/js/charts/charts/cb-xy/xy-config.js +++ b/src/js/charts/charts/cb-xy/xy-config.js @@ -137,7 +137,7 @@ var defaultProps = { */ metadata: { chartType: 'xy', - title: "", + title: "Chartbuilder Title Default", source: "", credit: "Made with Chartbuilder", size: "auto" diff --git a/src/js/charts/maps/mb-50/50-parse.js b/src/js/charts/maps/mb-50/50-parse.js index c57d6bdb..bd7ed10a 100644 --- a/src/js/charts/maps/mb-50/50-parse.js +++ b/src/js/charts/maps/mb-50/50-parse.js @@ -51,8 +51,6 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior }; }); - console.log(JSON.stringify(bySeries.series),'ugh') - const chartSettings = map(bySeries.series, (dataSeries, i) => { let settings; @@ -239,9 +237,6 @@ const parse50 = (config, _chartProps, callback, parseOpts, priorData = [], prior chartProps.mobile = {}; } */ - - console.log(JSON.stringify(bySeries.series),'ugh2') - let newChartProps = assign(chartProps, { chartSettings: chartSettings, data: bySeries.series, From 44d14d38696fcce224cb0179c5e8619c38a6d3bc Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Mon, 26 Dec 2016 23:28:52 -0500 Subject: [PATCH 011/152] fix legends --- src/js/charts/charts/cb-d4-mixins.js | 26 ++++---- src/js/components/Chartbuilder.jsx | 18 ++++-- src/js/components/RendererWrapper.jsx | 93 ++++++++++++++++----------- 3 files changed, 81 insertions(+), 56 deletions(-) diff --git a/src/js/charts/charts/cb-d4-mixins.js b/src/js/charts/charts/cb-d4-mixins.js index a4cdaed1..1e0be471 100644 --- a/src/js/charts/charts/cb-d4-mixins.js +++ b/src/js/charts/charts/cb-d4-mixins.js @@ -82,12 +82,12 @@ const mixins = { }, render: function(scope, data, selection) { - var afterBar = 6; - var afterLabel = 6; + const afterBar = 6; + const afterLabel = 6; - var group = d4.appendOnce(selection, 'g.' + name); + const group = d4.appendOnce(selection, 'g.' + name); - var labelGroups = group.selectAll('g') + const labelGroups = group.selectAll('g') .data(data, d4.functor(scope.accessors.key).bind(this)); labelGroups.enter().append('g') @@ -97,7 +97,7 @@ const mixins = { labelGroups.exit().remove(); - var text_group = labelGroups.selectAll('g.text-group') + const text_group = labelGroups.selectAll('g.text-group') .data(function(d) { return d.values; }.bind(this)); @@ -109,14 +109,14 @@ const mixins = { genter.append('rect'); genter.append('text'); - var text = text_group.selectAll("text"); - var rect = text_group.selectAll("rect"); + const text = text_group.selectAll("text"); + const rect = text_group.selectAll("rect"); - var x_func = d4.functor(scope.accessors.x).bind(this); - var y_func = d4.functor(scope.accessors.y).bind(this); - var dy_func = d4.functor(scope.accessors.dy).bind(this); - var text_func = d4.functor(scope.accessors.text).bind(this); - var format_func = d4.functor(scope.accessors.format).bind(this); + const x_func = d4.functor(scope.accessors.x).bind(this); + const y_func = d4.functor(scope.accessors.y).bind(this); + const dy_func = d4.functor(scope.accessors.dy).bind(this); + const text_func = d4.functor(scope.accessors.text).bind(this); + const format_func = d4.functor(scope.accessors.format).bind(this); text_group .attr('transform', function(d,i){ @@ -132,7 +132,7 @@ const mixins = { .attr('dy', d4.functor(scope.accessors.dy).bind(this)); text_group.each(function(){ - var client_rect = this.getElementsByTagName("text")[0].getBoundingClientRect(); + const client_rect = this.getElementsByTagName("text")[0].getBoundingClientRect(); d3.select(this.getElementsByTagName("rect")[0]) .attr("width",client_rect.width + afterBar + afterLabel) .attr("height",client_rect.height) diff --git a/src/js/components/Chartbuilder.jsx b/src/js/components/Chartbuilder.jsx index d3c5e754..619e16f5 100644 --- a/src/js/components/Chartbuilder.jsx +++ b/src/js/components/Chartbuilder.jsx @@ -157,13 +157,15 @@ var Chartbuilder = React.createClass({ * is being used as a module or without the editor. */ render: function() { - var chartType = this.state.metadata.chartType; - var VisualEditor = chartEditors[chartType] || mapEditors[chartType]; - var Editor = VisualEditor.Editor; + const chartType = this.state.metadata.chartType; + const VisualEditor = chartEditors[chartType] || mapEditors[chartType]; + const showLegendBool = chartEditors[chartType] ? false : true; + const Editor = VisualEditor.Editor; // Check for mobile override settings and pass them in - var MobileComponent = VisualEditor.MobileOverrides; - var mobileOverrides; + const MobileComponent = VisualEditor.MobileOverrides; + let mobileOverrides; + if (MobileComponent && this.props.showMobilePreview) { mobileOverrides = ( @@ -208,6 +211,7 @@ var Chartbuilder = React.createClass({ model={this.state} enableResponsive={false} width={640} + showLegenddata={showLegendBool} showMetadata={true} className={svgWrapperClassName.desktop} svgClassName={this.props.renderedSVGClassName} diff --git a/src/js/components/RendererWrapper.jsx b/src/js/components/RendererWrapper.jsx index 4e45c9e9..4a1e8632 100644 --- a/src/js/components/RendererWrapper.jsx +++ b/src/js/components/RendererWrapper.jsx @@ -5,46 +5,46 @@ * container. */ -var React = require("react"); -var ReactDOM = require("react-dom"); -var PropTypes = React.PropTypes; - -var assign = require("lodash/assign"); -var clone = require("lodash/clone"); -var isDate = require("lodash/isDate"); -var isEqual = require("lodash/isEqual"); -var throttle = require("lodash/throttle"); -var reduce = require("lodash/reduce"); -var keys = require("lodash/keys"); -var update = require("react-addons-update"); - -var SvgText = require("./svg/SvgText.jsx"); - -var ChartViewActions = require("../actions/ChartViewActions"); -var convertConfig = require("../util/parse-config-values"); -var SessionStore = require("../stores/SessionStore"); -var breakpoints = require("../config/chartconfig/chart-breakpoints"); -var ChartFooter = require("./svg/ChartFooter.jsx"); - +const React = require("react"); +const ReactDOM = require("react-dom"); +const PropTypes = React.PropTypes; + +const assign = require("lodash/assign"); +const clone = require("lodash/clone"); +const isDate = require("lodash/isDate"); +const isEqual = require("lodash/isEqual"); +const throttle = require("lodash/throttle"); +const reduce = require("lodash/reduce"); +const keys = require("lodash/keys"); +const update = require("react-addons-update"); + +const SvgText = require("./svg/SvgText.jsx"); + +const ChartViewActions = require("../actions/ChartViewActions"); +const convertConfig = require("../util/parse-config-values"); +const SessionStore = require("../stores/SessionStore"); +const breakpoints = require("../config/chartconfig/chart-breakpoints"); +const ChartFooter = require("./svg/ChartFooter.jsx"); +const LegendSpace = require("./svg/MapLegendSpace.jsx"); /* * `chartConfig` is an object that sets default properties for chart types, and * also associates a given chart type with its Editor and Renderer components. * Used here to identify the Renderer. */ -var chartConfigs = require("../charts/charts/chart-config"); -var chartStyle = require("../config/chartconfig/chart-style"); -var chartRenderers = require("../charts/charts/renderers"); +const chartConfigs = require("../charts/charts/chart-config"); +const chartStyle = require("../config/chartconfig/chart-style"); +const chartRenderers = require("../charts/charts/renderers"); -var mapConfigs = require("../charts/maps/map-config"); -var mapStyle = require("../config/mapconfig/map-style"); -var mapRenderers = require("../charts/maps/renderers"); +const mapConfigs = require("../charts/maps/map-config"); +const mapStyle = require("../config/mapconfig/map-style"); +const mapRenderers = require("../charts/maps/renderers"); /** * ### RendererWrapper * Wrapper component that determines which type of chart to render, wrapping it * in Svg and telling it to draw. */ -var RendererWrapper = React.createClass({ +const RendererWrapper = React.createClass({ propTypes: { model: PropTypes.shape({ @@ -54,6 +54,7 @@ var RendererWrapper = React.createClass({ width: PropTypes.number, enableResponsive: PropTypes.bool, showMetadata: PropTypes.bool, + showLegenddata: PropTypes.bool, className: PropTypes.string, svgClassName: PropTypes.string }, @@ -218,7 +219,7 @@ var RendererWrapper = React.createClass({ }}); } - var dimensions = this._calculateDimensions(width, displayConfig); + const dimensions = this._calculateDimensions(width, displayConfig); try { if (isNaN(dimensions.width)) { @@ -231,9 +232,9 @@ var RendererWrapper = React.createClass({ console.error(e.name, e.message); } - var Renderer = chartRenderers[chartType] || mapRenderers[chartType]; - var chartProps; - var metadata; + const Renderer = chartRenderers[chartType] || mapRenderers[chartType]; + let chartProps; + let metadata; // If rendered chart is not editable and has a date, we presume data is // being passed in and we need to use the data with processed dates @@ -252,17 +253,36 @@ var RendererWrapper = React.createClass({ metadata = this.props.model.metadata; } - var margin = this.state.chartConfig.display.margin; - var metadataSvg = []; - var title; + const margin = this.state.chartConfig.display.margin; + const metadataSvg = []; + const legends = []; + let title; - var translate = { + const translate = { top: margin.top, right: dimensions.width - margin.right, bottom: dimensions.height - margin.bottom, left: margin.left }; + if (this.props.showLegenddata) { + + console.log('here now..'); + + legends.push( + + ) + + } + if (this.props.showMetadata) { if (metadata.title && metadata.title !== "") { title = ( @@ -319,6 +339,7 @@ var RendererWrapper = React.createClass({ editable={this.props.editable} enableResponsive={this.props.enableResponsive} /> + {legends} {metadataSvg}
From 2d221141a82488b7147ab767a843d00dba25965a Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Tue, 27 Dec 2016 00:31:11 -0500 Subject: [PATCH 012/152] subtitle just to maps --- .../charts/cb-chart-grid/chart-grid-config.js | 2 + src/js/charts/charts/cb-xy/xy-config.js | 2 + src/js/charts/maps/mb-50/mb-50-config.js | 3 +- .../charts/maps/mb-bubble/mb-Bubble-config.js | 3 +- .../maps/mb-cartogram/mb-cartogram-config.js | 3 +- src/js/components/ChartMetadata.jsx | 38 +++++----- src/js/components/ChartTypeSelector.jsx | 23 +++--- src/js/components/RendererWrapper.jsx | 26 +++++-- src/js/components/svg/MapLegendSpace.jsx | 34 ++++----- src/styl/chart-renderer.styl | 72 +++++++++++++++++++ 10 files changed, 158 insertions(+), 48 deletions(-) diff --git a/src/js/charts/charts/cb-chart-grid/chart-grid-config.js b/src/js/charts/charts/cb-chart-grid/chart-grid-config.js index 411255b3..1ab80f43 100644 --- a/src/js/charts/charts/cb-chart-grid/chart-grid-config.js +++ b/src/js/charts/charts/cb-chart-grid/chart-grid-config.js @@ -119,7 +119,9 @@ var defaultProps = { id: null, chartType: "chartgrid", title: "", + subtitle: "", source: "", + visualType: "chart", credit: "Made with Chartbuilder", size: "auto" } diff --git a/src/js/charts/charts/cb-xy/xy-config.js b/src/js/charts/charts/cb-xy/xy-config.js index 55ef04ca..c4507452 100644 --- a/src/js/charts/charts/cb-xy/xy-config.js +++ b/src/js/charts/charts/cb-xy/xy-config.js @@ -138,7 +138,9 @@ var defaultProps = { metadata: { chartType: 'xy', title: "Chartbuilder Title Default", + subtitle: "", source: "", + visualType: "chart", credit: "Made with Chartbuilder", size: "auto" } diff --git a/src/js/charts/maps/mb-50/mb-50-config.js b/src/js/charts/maps/mb-50/mb-50-config.js index 59df2792..c9c94bac 100644 --- a/src/js/charts/maps/mb-50/mb-50-config.js +++ b/src/js/charts/maps/mb-50/mb-50-config.js @@ -57,7 +57,7 @@ let display = Object.freeze({ maptop: "3.5em", mapleft: "", subtitle: "2em", - legendleft: "2em", + legendleft: "0.8em", legendsOneRow: "23em", legendsTwoRow: "22.5em" }, @@ -140,6 +140,7 @@ const defaultProps = Object.freeze({ chartType: 'map50', title: "Title", subtitle: "Subtitle", + visualType: "map", source: "TK", credit: "", size: "auto" diff --git a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js index 938bcc24..c796f308 100644 --- a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js +++ b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js @@ -57,7 +57,7 @@ let display = Object.freeze({ maptop: "2.5em", mapleft: "", subtitle: "2em", - legendleft: "2em", + legendleft: "0.8em", legendsOneRow: "23em", legendsTwoRow: "22.5em" }, @@ -144,6 +144,7 @@ const defaultProps = Object.freeze({ title: "Bubble Map Title", subtitle: "Subtitle", source: "Source for map", + visualType: "map", credit: "", size: "auto" } diff --git a/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js index 06d4267c..5caf9d11 100644 --- a/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js +++ b/src/js/charts/maps/mb-cartogram/mb-cartogram-config.js @@ -57,7 +57,7 @@ let display = Object.freeze({ maptop: "0.5em", mapleft: "-9.5em", subtitle: "2em", - legendleft: "2em", + legendleft: "0.8em", legendsOneRow: "23em", legendsTwoRow: "22.5em" }, @@ -149,6 +149,7 @@ const defaultProps = Object.freeze({ title: "Title", subtitle: "Subtitle", source: "TK", + visualType: "map", credit: "", size: "auto" } diff --git a/src/js/components/ChartMetadata.jsx b/src/js/components/ChartMetadata.jsx index 918c55ca..9b26f096 100644 --- a/src/js/components/ChartMetadata.jsx +++ b/src/js/components/ChartMetadata.jsx @@ -1,22 +1,19 @@ // Component that handles global metadata, ie data that is universal regardless // of chart type. Eg title, source, credit, size. +import React, {Component, PropTypes} from 'react'; +import PureRenderMixin from 'react-addons-pure-render-mixin'; -var React = require("react"); -var PropTypes = React.PropTypes; -var PureRenderMixin = require("react-addons-pure-render-mixin"); -var clone = require("lodash/clone"); +// Chartbuilder UI components +import chartbuilderUI, {ButtonGroup, TextInput} from "chartbuilder-ui"; -// Flux stores -var ChartMetadataStore = require("../stores/ChartMetadataStore"); -var ChartViewActions = require("../actions/ChartViewActions"); +import {clone} from 'lodash'; -// Chartbuilder UI components -var chartbuilderUI = require("chartbuilder-ui"); -var ButtonGroup = chartbuilderUI.ButtonGroup; -var TextInput = chartbuilderUI.TextInput; +// Flux stores +const ChartMetadataStore = require("../stores/ChartMetadataStore"); +const ChartViewActions = require("../actions/ChartViewActions"); // Give chart sizes friendly names -var chart_sizes = [ +const chart_sizes = [ { title: "Auto", content: "Auto", @@ -39,9 +36,16 @@ var chart_sizes = [ } ]; -var text_input_values = [ +const text_input_values = [ + { name: "title", content: "Title", isRequired: true }, + { name: "credit", content: "Credit" }, + { name: "source", content: "Source" } +]; + +const text_input_values_sub = [ { name: "title", content: "Title", isRequired: true }, { name: "credit", content: "Credit" }, + { name: "subtitle", content: "Subtitle" }, { name: "source", content: "Source" } ]; @@ -81,7 +85,7 @@ var ChartMetadata = React.createClass({ }, render: function() { - var metadata = this.props.metadata; + const metadata = this.props.metadata; if (this.props.additionalComponents.length > 0) { this.props.additionalComponents.forEach(function(c, i) { @@ -90,7 +94,9 @@ var ChartMetadata = React.createClass({ }, this); } // Create text input field for each metadata textInput - var textInputs = text_input_values.map(function(textInput) { + const _text_input_values = (metadata.visualType === 'map') ? text_input_values_sub : text_input_values; + + const textInputs = _text_input_values.map(function(textInput) { return
); diff --git a/src/js/components/RendererWrapper.jsx b/src/js/components/RendererWrapper.jsx index 4a1e8632..7f602af5 100644 --- a/src/js/components/RendererWrapper.jsx +++ b/src/js/components/RendererWrapper.jsx @@ -244,7 +244,7 @@ const RendererWrapper = React.createClass({ chartProps = this.props.model.chartProps; } - var isSmall = (this.state.svgSizeClass === "small"); + const isSmall = (this.state.svgSizeClass === "small"); // override metadats with mobile-specific settings if defined if (this.props.enableResponsive && this.props.model.chartProps.mobile && isSmall) { @@ -254,9 +254,9 @@ const RendererWrapper = React.createClass({ } const margin = this.state.chartConfig.display.margin; + const stylings = chartProps.stylings; const metadataSvg = []; const legends = []; - let title; const translate = { top: margin.top, @@ -267,7 +267,9 @@ const RendererWrapper = React.createClass({ if (this.props.showLegenddata) { - console.log('here now..'); + translate.legendleft = margin.legendleft; + translate.legendsOneRow = margin.legendsOneRow; + translate.legendsTwoRow = margin.legendsTwoRow; legends.push( + ); + metadataSvg.push(subtitle); + } + metadataSvg.push( { + g.attr('transform', (d) => { if (d.x === undefined) d.x = 0; if (d.y === undefined) d.y = 0; return 'translate('+ d.x +','+ d.y +')'; @@ -69,22 +69,24 @@ const LegendSpace = React.createClass({ const chartProps = this.props.chartProps; const metadata = this.props.metadata; + console.log(translate,'ehh'); + const legends = chartProps.legend; const legendsArray = Object.keys(legends).map((k) => legends[k]); const showTicks = stylings.showLegendTicks; const legendsXMargin = translate.legendleft; - + let translateLegends; let legendheightAdjusted; let testTwoRow = false; let yOffset = 0; - + if (legendsArray.length < 4) { legendheightAdjusted = legendHeight * 1.2; translateLegends = translate.legendsOneRow; - } + } else { testTwoRow = true; legendheightAdjusted = legendHeight; @@ -93,7 +95,7 @@ const LegendSpace = React.createClass({ let demersdorlingRender = false; - if (stylings.type === 'dorling' || stylings.type === 'demers' + if (stylings.type === 'dorling' || stylings.type === 'demers' || metadata.chartType === 'mapbubble') { const radius = d3.scale.sqrt().range([0, stylings.radiusVal]); @@ -131,9 +133,9 @@ const LegendSpace = React.createClass({ else middle = after; const legendText1 = s.substr(0, middle); - const legendText2 = s.substr(middle + 1); + const legendText2 = s.substr(middle + 1); - demersdorlingRender = ( @@ -160,7 +162,7 @@ const LegendSpace = React.createClass({ /> {legendText1} - + {legendText2} - + ); } @@ -200,7 +202,7 @@ const LegendSpace = React.createClass({ } const xOffetBlock = (j === 0) ? 0 : (legendData.shapes * j) + (legendMargin * j); - return ({thisTick}); - } + } else return false; }); diff --git a/src/styl/chart-renderer.styl b/src/styl/chart-renderer.styl index 6ebcb091..96886653 100644 --- a/src/styl/chart-renderer.styl +++ b/src/styl/chart-renderer.styl @@ -144,6 +144,10 @@ svg fill $color-body-text font-family $font-sans font-size $em_size + &.svg-text-subtitle + fill $color-body-text + font-family $font-sans + font-size $em_size * 1 .svg-source-pipe stroke $color-chart-meta @@ -184,6 +188,8 @@ svg font-size $em_size*0.6 &.svg-text-title font-size $em_size + &.svg-text-subtitle + font-size $em_size * 1 .small .em-size @@ -208,6 +214,8 @@ svg font-size $em_size*0.6 &.svg-text-title font-size $em_size_small + &.svg-text-subtitle + font-size $em_size_small .svg-label-text font-size $em_size_small @@ -231,9 +239,73 @@ svg font-size $em_size*0.6 &.svg-text-title font-size $em_size + &.svg-text-subtitle + font-size $em_size * 1 .svg-label-text font-size $em_size .cb-credit-logo fill $color-chart-meta + + +.polygon-test + fill #ccc + stroke #000 + stroke-width 0.65px; + +.state-labels-show + fill #000 + font-family $font-sans + font-size 0.8em + text-anchor middle + +.state-name + fill #000 + font-family $font-sans + +.legend-label + fill #000 + font-family $font-sans + font-size 1.2em + text-anchor start + +.demersdorlingLegend + rect + fill none + stroke #000 + stroke-width 1px + text + fill #000 + font-size 0.8em + font-family $font-sans + text-anchor middle + +.legendsGroup + cursor move + pointer-events all + +.legend-text + fill #000 + font-family $font-sans + font-size 0.9em + text-anchor middle +.extra-legend + .extra-legend-text + fill #000 + font-family $font-sans + font-size 1.1em + text-anchor end +.cartogram-map-render + .node + text + text-anchor middle + &.state-name + fill #000 + font-size 1.2em + &.state-values + font-size 1em + fill #000 + rect + &.carto-rects + stroke-width 2px From e4d77a15cb3841ac92e10641044571ecb1cba3a4 Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Tue, 27 Dec 2016 00:53:03 -0500 Subject: [PATCH 013/152] fix bubble editor --- .../charts/maps/mb-bubble/mb-Bubble-config.js | 1 + src/js/components/ChartTypeSelector.jsx | 2 +- src/js/components/chart-xy/XYRenderer.jsx | 2 - .../components/map-bubble/MapBubbleEditor.jsx | 38 ++++++++++++------- src/js/components/svg/MapLegendSpace.jsx | 2 - 5 files changed, 27 insertions(+), 18 deletions(-) diff --git a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js index c796f308..e9a4c0cf 100644 --- a/src/js/charts/maps/mb-bubble/mb-Bubble-config.js +++ b/src/js/charts/maps/mb-bubble/mb-Bubble-config.js @@ -103,6 +103,7 @@ const defaultProps = Object.freeze({ top:0, left:0 }, + showLegendTicks: true, legendText: 'Write what the legend shapes represent here' }, chartSettings: [ diff --git a/src/js/components/ChartTypeSelector.jsx b/src/js/components/ChartTypeSelector.jsx index 48b398ad..118feb88 100644 --- a/src/js/components/ChartTypeSelector.jsx +++ b/src/js/components/ChartTypeSelector.jsx @@ -106,7 +106,7 @@ var ChartTypeSelctor = React.createClass({ buttons={this.state.chartConfig} onClick={this._handleChartTypeChange} className="chart-type-select" - value={this.props.metadata} + value={this.props.metadata.chartType} />
); diff --git a/src/js/components/chart-xy/XYRenderer.jsx b/src/js/components/chart-xy/XYRenderer.jsx index 788b8ce2..e94bedaf 100644 --- a/src/js/components/chart-xy/XYRenderer.jsx +++ b/src/js/components/chart-xy/XYRenderer.jsx @@ -113,8 +113,6 @@ var XYRenderer = React.createClass({ render: function() { - console.log(this.props,'props xy'); - var _chartProps = this.props.chartProps; var displayConfig = this.props.displayConfig; var axis = d3.svg.axis(); diff --git a/src/js/components/map-bubble/MapBubbleEditor.jsx b/src/js/components/map-bubble/MapBubbleEditor.jsx index beb97abc..388c3b7c 100644 --- a/src/js/components/map-bubble/MapBubbleEditor.jsx +++ b/src/js/components/map-bubble/MapBubbleEditor.jsx @@ -9,9 +9,9 @@ import {clone, each, keys, map, bind} from 'lodash'; /* Chartbuilder UI components */ import {ColorPicker, LabelledTangle, TextInput, Toggle} from 'chartbuilder-ui'; -const NumericScaleSettings = require("../shared/NumericScaleSettings.jsx"); - +//const NumericScaleSettings = require("../shared/NumericScaleSettings.jsx"); const Map_ScaleSettings = require("../shared/Cartogram_ScaleSettings.jsx"); + const cx = require("classnames"); const DataInput = require("../shared/DataInput.jsx"); const colorScales = require('./../../util/colorscales'); @@ -24,7 +24,7 @@ const MapEditorMixin = require("../mixins/MapEditorMixin.js"); * @instance * @memberof editors */ -let MapEditor = React.createClass({ +const MapEditor = React.createClass({ propTypes: { errors: PropTypes.object, @@ -48,15 +48,27 @@ let MapEditor = React.createClass({ }, render: function() { - let mapProps = this.props.chartProps; + + const mapProps = this.props.chartProps; /* Create a settings component for each data series (column) */ const mapSettings = []; + /* + */ + mapSettings.push( map(mapProps.chartSettings, bind(function(chartSetting, i) { - + console.log(i,'i'); return (
- - -
); }, this)) ); + console.log(mapSettings,'eek'); + //let chartProps = this.props.chartProps; //let scaleSettings = []; - let axisErrors = this.props.errors.messages.filter(function(e) { + const axisErrors = this.props.errors.messages.filter(function(e) { return e.location === "axis"; }); - let inputErrors = this.props.errors.messages.filter(function(e) { + const inputErrors = this.props.errors.messages.filter(function(e) { return e.location === "input"; }); @@ -115,7 +127,7 @@ let MapEditor = React.createClass({ {mapSettings}
- +

); @@ -145,7 +157,7 @@ const MapCartogram_mapSettings = React.createClass({ _handleSettingsUpdate: function(ix, k, v) { /* Clone the array of objects so that we dont mutate existing state */ - let chartSettings = map(this.props.chartSettings, clone); + const chartSettings = map(this.props.chartSettings, clone); /* We need the index (ix) of the settings object to know which to update */ chartSettings[ix][k] = v; /* `axis` and `colorIndex` require reparsing the input and splitting it up */ @@ -156,7 +168,7 @@ const MapCartogram_mapSettings = React.createClass({ const chartSetting = this.props.chartSettings[this.props.index]; const numColors = colorScales.scalesNum(); - + return (
legends[k]); From c36733a4698876f39824250052300c54d11cc835 Mon Sep 17 00:00:00 2001 From: Sam Petulla Date: Tue, 27 Dec 2016 12:19:41 -0500 Subject: [PATCH 014/152] merge editors --- src/js/components/Chartbuilder.jsx | 32 +-- src/js/components/MapStyles.jsx | 231 ++++++++++++++++++ src/js/components/map-50/Map50Editor.jsx | 83 ++++++- .../components/map-bubble/MapBubbleEditor.jsx | 95 ++++++- .../map-cartogram/MapCartogramEditor.jsx | 152 +++++++++++- .../shared/Cartogram_ScaleSettings.jsx | 7 +- .../components/shared/Map_ScaleSettings.jsx | 2 +- src/js/config/chartconfig/default-input.js | 2 +- 8 files changed, 561 insertions(+), 43 deletions(-) create mode 100644 src/js/components/MapStyles.jsx diff --git a/src/js/components/Chartbuilder.jsx b/src/js/components/Chartbuilder.jsx index 619e16f5..23af3e72 100644 --- a/src/js/components/Chartbuilder.jsx +++ b/src/js/components/Chartbuilder.jsx @@ -5,28 +5,26 @@ */ /* Node modules */ -var React = require("react"); -var update = require("react-addons-update"); -var PropTypes = React.PropTypes; +import React, {Component, PropTypes} from 'react'; /* Flux stores */ -var ChartPropertiesStore = require("../stores/ChartPropertiesStore"); -var ChartMetadataStore = require("../stores/ChartMetadataStore"); -var SessionStore = require("../stores/SessionStore"); -var ErrorStore = require("../stores/ErrorStore"); +const ChartPropertiesStore = require("../stores/ChartPropertiesStore"); +const ChartMetadataStore = require("../stores/ChartMetadataStore"); +const SessionStore = require("../stores/SessionStore"); +const ErrorStore = require("../stores/ErrorStore"); /* * Global React components that are used irrespective of chart type * More info within each component's definition. */ -var Canvas = require("./Canvas.jsx"); -var ChartExport = require("./ChartExport.jsx"); -var ChartMetadata = require("./ChartMetadata.jsx"); -var ChartTypeSelector = require("./ChartTypeSelector.jsx"); -var RendererWrapper = require("./RendererWrapper.jsx"); -var LocalStorageTimer = require("./LocalStorageTimer.jsx"); +import Canvas from './Canvas.jsx'; +import ChartMetadata from './ChartMetadata.jsx'; +import ChartTypeSelector from "./ChartTypeSelector.jsx"; +import RendererWrapper from "./RendererWrapper.jsx"; +import LocalStorageTimer from './LocalStorageTimer.jsx'; +import ChartExport from './ChartExport.jsx'; -var AlertGroup = require("chartbuilder-ui").AlertGroup; +import {AlertGroup} from 'chartbuilder-ui'; var svgWrapperClassName = { desktop: "renderer-svg-desktop", @@ -36,10 +34,10 @@ var svgWrapperClassName = { // Associates a given chart type with its Editor and Renderer components. const chartEditors = require("../charts/charts/editors"); const mapEditors = require("../charts/maps/editors"); -var numColors = require("../config/chartconfig/chart-style").numColors; +const numColors = require("../config/chartconfig/chart-style").numColors; /* API to localStorage that allows saving and retrieving charts */ -var ChartbuilderLocalStorageAPI = require("../util/ChartbuilderLocalStorageAPI"); +const ChartbuilderLocalStorageAPI = require("../util/ChartbuilderLocalStorageAPI"); /** * Function to query Flux stores for all data. Runs whenever the stores are @@ -157,6 +155,7 @@ var Chartbuilder = React.createClass({ * is being used as a module or without the editor. */ render: function() { + const chartType = this.state.metadata.chartType; const VisualEditor = chartEditors[chartType] || mapEditors[chartType]; const showLegendBool = chartEditors[chartType] ? false : true; @@ -231,6 +230,7 @@ var Chartbuilder = React.createClass({ errors={this.state.errors} session={this.state.session} chartProps={this.state.chartProps} + stepNumber={String(editorSteps)} numColors={numColors} /> Style corners

); + cornersTangle.push( + );*/ + +const map_strokes = [ + { + title: "", + content: "Darker Grey", + value: "#333" + }, + { + title: "", + content: "Dark Grey", + value: "#666" + }, + { + title: "", + content: "Grey", + value: "#aaa" + }, + { + title: "", + content: "Lightest Grey", + value: "#eee" + }, + { + title: "", + content: "White", + value: "#fff" + } +]; + +const map_type = [ + { + title: "", + content: "Grid", + value: "grid" + }, + { + title: "", + content: "Demers", + value: "demers" + }, + { + title: "", + content: "Dorling", + value: "dorling" + } +]; + +/** + * + */ +const MapStyles = React.createClass({ + + propTypes: { + stepNumber: PropTypes.string + }, + _handleStylingsUpdate: function(k, v) { + MapViewActions.updateStylings(k, v); + }, + render: function() { + + let cartogramOption = false; + //let cornersTangle = false; + let shapeSize = false; + let valuesOption = false; + let dcOption = false; + let stateNames = false; + let legendTextOption = false; + let legendTicks = false; + + console.log(this.props,'props'); + + const stylings = this.props.chartProps.stylings; + + if (this.props.metadata.chartType !== 'mapbubble') { + legendTicks = (
+
); + + } else { + legendTextOption = (

Extra legend text

+